From 090ddb1ed05bfd249e56fbfcbf8609561e14a122 Mon Sep 17 00:00:00 2001 From: Jay Varner Date: Fri, 22 Mar 2024 13:38:31 -0400 Subject: [PATCH] Add taper to voyage binds to represent the voyage's mortality rate. --- .../SampleVoyages.client.tsx | 88 - .../voyageScrollytell/VoyageScrollytell.tsx | 145 +- .../brooks/voyages/AllVoyages1756.client.tsx | 106 - .../voyages/ResistanceVoyages.client.tsx | 142 - .../voyages/ResistanceVoyages1756.client.tsx | 103 - app/components/brooks/voyages/Voyage.ts | 129 + app/components/brooks/voyages/VoyageYear.ts | 171 - .../brooks/voyages/Voyages.client.tsx | 145 - .../brooks/voyages/VoyagesCompare.tsx | 42 - ...yages.client.tsx => VoyagesVis.client.tsx} | 95 +- app/components/brooks/voyages/utils.ts | 51 +- app/data/brooks/voyages.json | 559234 +++++++-------- app/data/figures/brooks.json | 4 +- app/routes/chapters.brooks.tsx | 4 +- app/types/voyage.ts | 24 +- public/images/brooks/autobiography.jpg | Bin 932765 -> 0 bytes public/images/brooks/autobiography.webp | Bin 856166 -> 0 bytes 17 files changed, 279947 insertions(+), 280536 deletions(-) delete mode 100644 app/components/brooks/voyageScrollytell/SampleVoyages.client.tsx delete mode 100644 app/components/brooks/voyages/AllVoyages1756.client.tsx delete mode 100644 app/components/brooks/voyages/ResistanceVoyages.client.tsx delete mode 100644 app/components/brooks/voyages/ResistanceVoyages1756.client.tsx create mode 100644 app/components/brooks/voyages/Voyage.ts delete mode 100644 app/components/brooks/voyages/VoyageYear.ts delete mode 100644 app/components/brooks/voyages/Voyages.client.tsx delete mode 100644 app/components/brooks/voyages/VoyagesCompare.tsx rename app/components/brooks/voyages/{AllVoyages.client.tsx => VoyagesVis.client.tsx} (62%) delete mode 100644 public/images/brooks/autobiography.jpg delete mode 100644 public/images/brooks/autobiography.webp diff --git a/app/components/brooks/voyageScrollytell/SampleVoyages.client.tsx b/app/components/brooks/voyageScrollytell/SampleVoyages.client.tsx deleted file mode 100644 index 1e1e39cb..00000000 --- a/app/components/brooks/voyageScrollytell/SampleVoyages.client.tsx +++ /dev/null @@ -1,88 +0,0 @@ -import { useEffect, useState, useRef } from "react"; -import { useResizeObserver } from "~/hooks"; -import p5 from "p5"; -import VoyageYear from "../voyages/VoyageYear"; -import voyageData from "~/data/brooks/voyages.json"; -import type { TVoyage } from "~/types/voyage"; - -const INITIAL_YEAR_RANGE = [1586, 1588]; -// const INITIAL_YEAR_RANGE = [1714, 1716]; - -function SampleVoyages() { - const { windowSize } = useResizeObserver(); - const p5Ref = useRef(); - const voyages = useRef>([]); - const filteredVoyages = useRef>([]); - const [width, setWidth] = useState(window.outerWidth * 0.5); - const [height, setHeight] = useState(window.outerHeight); - - useEffect(() => { - if (windowSize.width && windowSize.height) { - setWidth(windowSize.width * 0.5); - setHeight(windowSize.height); - } - }, [windowSize]); - - useEffect(() => { - const initP5 = (p5: p5) => { - voyages.current = []; - filteredVoyages.current = []; - let lerpAmount = 0; - let nonResistanceStrokeWidth = 0; - - p5.setup = () => { - p5.createCanvas(width, height).parent("sample-voyages"); - - const currentVoyages = (voyageData as TVoyage[]).filter( - (obj) => - obj.year >= INITIAL_YEAR_RANGE[0] && - obj.year <= INITIAL_YEAR_RANGE[1] - ); - - currentVoyages.forEach((voyage: TVoyage) => { - if (voyage.year === 1587) { - voyages.current.push( - new VoyageYear( - p5, - voyage, - INITIAL_YEAR_RANGE[0], - INITIAL_YEAR_RANGE[1], - height, - width, - nonResistanceStrokeWidth, - lerpAmount, - true - ) - ); - } - }); - }; - - //The main visualization - p5.draw = () => { - // if (lerpAmount < 1 && showAllRef.current) { - // lerpAmount += 0.01; - // nonResistanceStrokeWidth += 0.005; - // } - - voyages.current.forEach((voyage) => voyage.show()); - - p5.noLoop(); - }; - }; - - if (width && height) { - p5Ref.current = new p5(initP5); - } - - const p5Copy = p5Ref.current; - - return () => { - p5Copy?.remove(); - }; - }, [width, height]); - - return
; -} - -export default SampleVoyages; diff --git a/app/components/brooks/voyageScrollytell/VoyageScrollytell.tsx b/app/components/brooks/voyageScrollytell/VoyageScrollytell.tsx index dfb395dc..47f29bfd 100644 --- a/app/components/brooks/voyageScrollytell/VoyageScrollytell.tsx +++ b/app/components/brooks/voyageScrollytell/VoyageScrollytell.tsx @@ -10,11 +10,7 @@ import ScrollytellWrapper from "~/components/ScrollytellWrapper"; import figures from "~/data/figures/brooks.json"; import FiskColors from "./FiskColors"; import VoyageExample from "../voyages/VoyageExample"; -import SampleVoyages from "./SampleVoyages.client"; -import AllVoyages from "../voyages/AllVoyages.client"; -import ResistanceVoyages from "../voyages/ResistanceVoyages.client"; -import ResistanceVoyages1756 from "../voyages/ResistanceVoyages1756.client"; -import AllVoyages1756 from "../voyages/AllVoyages1756.client"; +import VoyagesVis from "../voyages/VoyagesVis.client"; const minScrollProgress = 16; const BACKGROUND = [224, 220, 242]; @@ -222,7 +218,22 @@ const VoyageScrollytell = () => { {/* 6 */} - {() => } + + {() => ( + + )} + {/* 7 */}
@@ -240,7 +251,10 @@ const VoyageScrollytell = () => { {/* 12 */}
{/* 13 */} - + {/* 14 */}
{ > {() => ( - )} @@ -280,57 +296,78 @@ const VoyageScrollytell = () => { }`} > - {() => } + {() => ( + + )} + +
+
+ + {() => ( + + )}
-
-
- -
- - {() => } - -
-
- - {() => ( - - )} - -
+
+ + {() => ( + + )} + +
-
= 15 && slideIndex < 17 ? 100 : 0 - }`} - > - - {() => ( - - )} - +
= 15 && slideIndex < 17 ? 100 : 0 + }`} + > + + {() => ( + + )} + +
+
-
(); - const backgroundRef = useRef(background); - const idRef = useRef(id); - const allEqualRef = useRef(allEqual); - const voyages = useRef>([]); - const filteredVoyages = useRef>([]); - const [width, setWidth] = useState(window.outerWidth * 0.75); - const [height, setHeight] = useState(window.outerHeight * 0.45); - - useEffect(() => { - if (windowSize.width && windowSize.height) { - setWidth(windowSize.width - 100); - setHeight(windowSize.height * 0.45); - } - }, [windowSize]); - - useEffect(() => { - const initP5 = (p5: p5) => { - voyages.current = []; - filteredVoyages.current = []; - let lerpAmount = 0; - let nonResistanceStrokeWidth = 0; - - p5.setup = () => { - p5.createCanvas(width, height).parent(idRef.current); - - const currentVoyages: TVoyage[] = (voyageData as TVoyage[]).filter( - (obj) => - obj.year >= INITIAL_YEAR_RANGE[0] && - obj.year <= INITIAL_YEAR_RANGE[1] - ); - - currentVoyages.forEach((voyage: TVoyage) => { - voyages.current.push( - new VoyageYear( - p5, - voyage, - INITIAL_YEAR_RANGE[0], - INITIAL_YEAR_RANGE[1], - height, - width, - nonResistanceStrokeWidth, - lerpAmount, - allEqualRef.current - ) - ); - }); - }; - - //The main visualization - p5.draw = () => { - // p5.background(250, 241, 233); - p5.background(backgroundRef.current); - - voyages.current.forEach((voyage) => voyage.show()); - - p5.noLoop(); - }; - }; - - if (width && height) { - p5Ref.current = new p5(initP5); - } - - const p5Copy = p5Ref.current; - - return () => { - p5Copy?.remove(); - }; - }, [width, height]); - - return ( -
-
-
- {width && ( - - )} -
-
- ); -} - -export default AllVoyages1756; diff --git a/app/components/brooks/voyages/ResistanceVoyages.client.tsx b/app/components/brooks/voyages/ResistanceVoyages.client.tsx deleted file mode 100644 index 365f1223..00000000 --- a/app/components/brooks/voyages/ResistanceVoyages.client.tsx +++ /dev/null @@ -1,142 +0,0 @@ -import { useEffect, useState, useRef, useMemo } from "react"; -import { useResizeObserver } from "~/hooks"; -import p5 from "p5"; -import VoyageYear from "./VoyageYear"; -import Axis from "./Axis"; -import voyageData from "~/data/brooks/voyages.json"; -import type { TVoyage } from "~/types/voyage"; - -const INITIAL_YEAR_RANGE = [1565, 1575]; - -interface Props { - startYear?: number; - endYear?: number; - background?: number[]; - showSlider?: boolean; - showAxis?: boolean; -} - -function ResistanceVoyages({ - startYear = INITIAL_YEAR_RANGE[0], - endYear = INITIAL_YEAR_RANGE[1], - background = [250, 241, 233], - showAxis = true, - showSlider = true, -}: Props) { - const { windowSize } = useResizeObserver(); - const p5Ref = useRef(); - const yearRangeRef = useRef([startYear, endYear]); - const backgroundRef = useRef(background); - const voyages = useRef>([]); - const filteredVoyages = useRef>([]); - const [width, setWidth] = useState(0); - const [height, setHeight] = useState(0); - - useEffect(() => { - if (windowSize.width && windowSize.height) { - setWidth(windowSize.width - 100); - setHeight(windowSize.height * 0.45); - } - }, [windowSize]); - - useMemo(() => { - if (!p5Ref.current) return; - filteredVoyages.current = voyages.current.filter( - (obj) => obj.year >= startYear && obj.year <= endYear - ); - filteredVoyages.current.forEach((filteredVoyage) => { - filteredVoyage.updateMinMax(startYear, endYear); - }); - p5Ref.current.redraw(); - }, [startYear, endYear]); - - useEffect(() => { - const initP5 = (p5: p5) => { - voyages.current = []; // The array containing all the voyages - filteredVoyages.current = []; - let lerpAmount = 0; // Transition parameter - let nonResistanceStrokeWidth = 0; //the stroke width of non-resistance voyages curves - - p5.setup = () => { - p5.createCanvas(width, height).parent("resistanceVoyageContainer"); - - (voyageData as TVoyage[]) - .filter((voyage) => voyage.resistanceReported) - .forEach((voyage: TVoyage) => { - voyages.current.push( - new VoyageYear( - p5, - voyage, - yearRangeRef.current[0], - yearRangeRef.current[1], - height, - width, - nonResistanceStrokeWidth, - lerpAmount - ) - ); - }); - - //filter the voyages out based on the values on the slider. - filteredVoyages.current = voyages.current.filter( - (obj) => - obj.year >= yearRangeRef.current[0] && - obj.year <= yearRangeRef.current[1] - ); - }; - - //The main visualization - p5.draw = () => { - p5.background(backgroundRef.current); - // p5.background(28, 24, 23); - - for (const index in filteredVoyages.current) { - if (filteredVoyages.current[index].resistanceReported) { - filteredVoyages.current[index].updateTransition( - lerpAmount, - nonResistanceStrokeWidth, - filteredVoyages.current[index].year - ); - filteredVoyages.current[index].show(); - } - } - - p5.noLoop(); - }; - }; - - if (width && height) { - p5Ref.current = new p5(initP5); - } - - const p5Copy = p5Ref.current; - - return () => { - p5Copy?.remove(); - }; - }, [width, height]); - - return ( -
-
-
- {width && ( -
- -
- )} -
-
- ); -} - -export default ResistanceVoyages; diff --git a/app/components/brooks/voyages/ResistanceVoyages1756.client.tsx b/app/components/brooks/voyages/ResistanceVoyages1756.client.tsx deleted file mode 100644 index b577bdcf..00000000 --- a/app/components/brooks/voyages/ResistanceVoyages1756.client.tsx +++ /dev/null @@ -1,103 +0,0 @@ -import { useEffect, useState, useRef } from "react"; -import { useResizeObserver } from "~/hooks"; -import p5 from "p5"; -import VoyageYear from "./VoyageYear"; -import Axis from "./Axis"; -import voyageData from "~/data/brooks/voyages.json"; -import type { TVoyage } from "~/types/voyage"; - -const INITIAL_YEAR_RANGE = [1756, 1766]; - -function ResistanceVoyages1756({ - background = [250, 241, 233], -}: { - background: number[]; -}) { - const { windowSize } = useResizeObserver(); - const p5Ref = useRef(); - const backgroundRef = useRef(background); - const voyages = useRef>([]); - const filteredVoyages = useRef>([]); - const showAllRef = useRef(false); - const [width, setWidth] = useState(window.outerWidth * 0.75); - const [height, setHeight] = useState(window.outerHeight * 0.45); - - useEffect(() => { - if (windowSize.width && windowSize.height) { - setWidth(windowSize.width - 100); - setHeight(windowSize.height * 0.45); - } - }, [windowSize]); - - useEffect(() => { - const initP5 = (p5: p5) => { - voyages.current = []; - filteredVoyages.current = []; - let lerpAmount = 0; - let nonResistanceStrokeWidth = 0; - - p5.setup = () => { - p5.createCanvas(width, height).parent("resistanceVoyageContainer1756"); - - const currentVoyages = (voyageData as TVoyage[]).filter( - (obj) => - obj.year >= INITIAL_YEAR_RANGE[0] && - obj.year <= INITIAL_YEAR_RANGE[1] && - obj.resistanceReported - ); - - currentVoyages.forEach((voyage: TVoyage) => { - voyages.current.push( - new VoyageYear( - p5, - voyage, - INITIAL_YEAR_RANGE[0], - INITIAL_YEAR_RANGE[1], - height, - width, - nonResistanceStrokeWidth, - lerpAmount - ) - ); - }); - }; - - //The main visualization - p5.draw = () => { - // p5.background(250, 241, 233); - p5.background(backgroundRef.current); - // if (lerpAmount < 1 && showAllRef.current) { - // lerpAmount += 0.01; - // nonResistanceStrokeWidth += 0.005; - // } - - voyages.current.forEach((voyage) => voyage.show()); - - p5.noLoop(); - }; - }; - - if (width && height) { - p5Ref.current = new p5(initP5); - } - - const p5Copy = p5Ref.current; - - return () => { - p5Copy?.remove(); - }; - }, [width, height]); - - return ( -
-
-
- {width && ( - - )} -
-
- ); -} - -export default ResistanceVoyages1756; diff --git a/app/components/brooks/voyages/Voyage.ts b/app/components/brooks/voyages/Voyage.ts new file mode 100644 index 00000000..2d502364 --- /dev/null +++ b/app/components/brooks/voyages/Voyage.ts @@ -0,0 +1,129 @@ +import type p5 from "p5"; +import type { TVoyage, TPoint } from "~/types/voyage"; + +class Voyage { + p5: p5; + shapeSeed: number; + minEmbark: number; + maxEmbark: number; + id: number; + totalPeople: number; + year: number; + duration: number; + resistanceReported: boolean; + rgb: Array; + minYear: number; + maxYear: number; + height: number; + width: number; + points: TPoint; + offsets: TPoint; + fullColor: boolean; + + constructor( + p5: p5, + voyage: TVoyage, + minYear: number, + maxYear: number, + height: number, + width: number, + fullColor: boolean = false + ) { + this.p5 = p5; + ({ + id: this.id, + totalPeople: this.totalPeople, + year: this.year, + resistanceReported: this.resistanceReported, + duration: this.duration, + rgb: this.rgb, + points: this.points, + offsets: this.offsets, + } = voyage); + + this.minYear = minYear; + this.maxYear = maxYear; + this.height = height; + this.width = width; + this.fullColor = fullColor; + + this.shapeSeed = Math.floor(Math.random() * 293 + 1565); + this.minEmbark = 1; + this.maxEmbark = 1545; + } + + updateP5Instance(p5: p5) { + this.p5 = p5; + } + + updateMinMax(minYear: number, maxYear: number) { + this.minYear = minYear; + this.maxYear = maxYear; + } + + show() { + this.p5.randomSeed(this.shapeSeed); + const voyageHeight = this.p5.map( + this.totalPeople, + this.minEmbark, + this.maxEmbark, + 0, + this.height + ); + const rat = voyageHeight / this.height; + const yStart = -this.height / 2; + this.p5.push(); + this.p5.translate( + this.p5.map(this.year, this.minYear, this.maxYear, 40, this.width), + this.height / 2 + ); + + // Add color + if (this.resistanceReported || this.fullColor) { + this.p5.strokeWeight(0.5); + // this.p5.colorMode(this.p5.RGB); + this.p5.fill(`rgba(${[...this.rgb, 0.6]})`); + } else { + this.p5.strokeWeight(0); + this.p5.strokeWeight(0.5); + this.p5.stroke([0, 0, 0]); + this.p5.fill([250, 241, 233]); + } + + this.p5.beginShape(); + this.p5.curveVertex(this.points.c6, yStart - 300 * rat); + this.p5.curveVertex(this.points.c5, yStart - 300 * rat); + this.p5.curveVertex(this.points.c1, yStart + (this.height / 5) * 1); + this.p5.curveVertex(this.points.c2, yStart + (this.height / 5) * 2); + this.p5.curveVertex(this.points.c3, yStart + (this.height / 5) * 3); + this.p5.curveVertex(this.points.c4, yStart + (this.height / 5) * 4); + this.p5.curveVertex(this.points.c7, this.height / 2 + 500 * rat); + + this.p5.curveVertex( + this.points.c7 + this.offsets.c7, + this.height / 2 + 500 * rat + ); + this.p5.curveVertex( + this.points.c4 + this.offsets.c6, + yStart + (this.height / 5) * 4 + ); + this.p5.curveVertex( + this.points.c3 + this.offsets.c5, + yStart + (this.height / 5) * 3 + ); + this.p5.curveVertex( + this.points.c2 + this.offsets.c4, + yStart + (this.height / 5) * 2 + ); + this.p5.curveVertex( + this.points.c1 + this.offsets.c3, + yStart + (this.height / 5) * 1 + ); + this.p5.curveVertex(this.points.c5 + this.offsets.c2, yStart - 300 * rat); + this.p5.curveVertex(this.points.c6 + this.offsets.c1, yStart - 300 * rat); + this.p5.endShape(this.p5.CLOSE); + this.p5.pop(); + } +} + +export default Voyage; diff --git a/app/components/brooks/voyages/VoyageYear.ts b/app/components/brooks/voyages/VoyageYear.ts deleted file mode 100644 index 341f2c6e..00000000 --- a/app/components/brooks/voyages/VoyageYear.ts +++ /dev/null @@ -1,171 +0,0 @@ -import type p5 from "p5"; -import type { TVoyage } from "~/types/voyage"; - -type Seed = { - c1: number; - c2: number; - c3: number; - c4: number; - c5: number; - c6: number; - c7: number; -}; - -class VoyageYear { - p5: p5; - distanceLeft: number; - distanceRight: number; - shapeSeed: number; - minEmbark: number; - maxEmbark: number; - minDuration: number; - maxDuration: number; - id: number; - totalPeople: number; - year: number; - duration: number; - mortalityRate: number; - resistanceReported: boolean; - lerpAmount: number; - rgb: Array; - minYear: number; - maxYear: number; - height: number; - width: number; - nonResistanceStrokeWidth: number; - curveSeeds: Seed; - vertexSeeds: Seed; - allEqual: boolean; - - constructor( - p5: p5, - voyage: TVoyage, - minYear: number, - maxYear: number, - height: number, - width: number, - nonResistanceStrokeWidth: number, - lerpAmount: number, - allEqual: boolean = false - ) { - this.p5 = p5; - ({ - id: this.id, - totalPeople: this.totalPeople, - mortalityRate: this.mortalityRate, - year: this.year, - resistanceReported: this.resistanceReported, - duration: this.duration, - rgb: this.rgb, - curveSeeds: this.curveSeeds, - vertexSeeds: this.vertexSeeds, - } = voyage); - - this.minYear = minYear; - this.maxYear = maxYear; - this.height = height; - this.width = width; - this.nonResistanceStrokeWidth = nonResistanceStrokeWidth; - this.lerpAmount = lerpAmount; - this.allEqual = allEqual; - - this.distanceLeft = 10; - this.distanceRight = 10; - this.shapeSeed = Math.floor(Math.random() * 293 + 1565); - this.minEmbark = 1; - this.maxEmbark = 1545; - this.minDuration = 86400; - this.maxDuration = 273369600; - } - - updateP5Instance(p5: p5) { - this.p5 = p5; - } - - updateTransition( - lerpAmount: number, - nonResistanceStrokeWidth: number, - shapeSeed: number - ) { - this.lerpAmount = lerpAmount; - this.nonResistanceStrokeWidth = nonResistanceStrokeWidth; - this.shapeSeed = shapeSeed; - } - - updateMinMax(minYear: number, maxYear: number) { - this.minYear = minYear; - this.maxYear = maxYear; - } - - show() { - this.p5.randomSeed(this.shapeSeed); - const voyageHeight = this.p5.map( - this.totalPeople, - this.minEmbark, - this.maxEmbark, - 0, - this.height - ); - const rat = voyageHeight / this.height; - const yStart = -this.height / 2; - this.p5.push(); - this.p5.translate( - this.p5.map(this.year, this.minYear, this.maxYear, 40, this.width), - this.height / 2 - ); - - // Add color - if (this.resistanceReported || this.allEqual) { - this.p5.strokeWeight(0.5); - // this.p5.colorMode(this.p5.RGB); - this.p5.fill(`rgba(${[...this.rgb, 0.6]})`); - } else { - this.p5.strokeWeight(this.nonResistanceStrokeWidth); - this.p5.strokeWeight(0.5); - this.p5.stroke([0, 0, 0]); - this.p5.fill([250, 241, 233]); - } - - this.p5.beginShape(); - this.p5.curveVertex(this.curveSeeds.c6, yStart - 300 * rat); - this.p5.curveVertex(this.curveSeeds.c5, yStart - 300 * rat); - this.p5.curveVertex(this.curveSeeds.c1, yStart + (this.height / 5) * 1); - this.p5.curveVertex(this.curveSeeds.c2, yStart + (this.height / 5) * 2); - this.p5.curveVertex(this.curveSeeds.c3, yStart + (this.height / 5) * 3); - this.p5.curveVertex(this.curveSeeds.c4, yStart + (this.height / 5) * 4); - this.p5.curveVertex(this.curveSeeds.c7, this.height / 2 + 500 * rat); - - this.p5.curveVertex( - this.curveSeeds.c7 + this.vertexSeeds.c7, - this.height / 2 + 500 * rat - ); - this.p5.curveVertex( - this.curveSeeds.c4 + this.vertexSeeds.c4, - yStart + (this.height / 5) * 4 - ); - this.p5.curveVertex( - this.curveSeeds.c3 + this.vertexSeeds.c3, - yStart + (this.height / 5) * 3 - ); - this.p5.curveVertex( - this.curveSeeds.c2 + this.vertexSeeds.c2, - yStart + (this.height / 5) * 2 - ); - this.p5.curveVertex( - this.curveSeeds.c1 + this.vertexSeeds.c1, - yStart + (this.height / 5) * 1 - ); - this.p5.curveVertex( - this.curveSeeds.c5 + this.vertexSeeds.c5, - yStart - 300 * rat - ); - this.p5.curveVertex( - this.curveSeeds.c6 + this.vertexSeeds.c6, - yStart - 300 * rat - ); - this.p5.endShape(this.p5.CLOSE); - this.p5.pop(); - } -} - -export default VoyageYear; diff --git a/app/components/brooks/voyages/Voyages.client.tsx b/app/components/brooks/voyages/Voyages.client.tsx deleted file mode 100644 index 4eaee249..00000000 --- a/app/components/brooks/voyages/Voyages.client.tsx +++ /dev/null @@ -1,145 +0,0 @@ -import { useEffect, useState, useRef, useMemo } from "react"; -import { useResizeObserver } from "~/hooks"; -import p5 from "p5"; -import VoyageYear from "./VoyageYear"; -import Axis from "./Axis"; -import voyageData from "~/data/brooks/voyages.json"; -import type { TVoyage } from "~/types/voyage"; - -const INITIAL_YEAR_RANGE = [1565, 1575]; - -function Voyages({ yearRange }: { yearRange: Array }) { - const { windowSize } = useResizeObserver(); - const p5Ref = useRef(); - const voyages = useRef>([]); - const filteredVoyages = useRef>([]); - const showAllRef = useRef(true); - const [width, setWidth] = useState(0); - const [height, setHeight] = useState(0); - - useEffect(() => { - if (windowSize.width && windowSize.height) { - setWidth(windowSize.width - 100); - setHeight(windowSize.height * 0.45); - } - }, [windowSize]); - - useMemo(() => { - if (!p5Ref.current) return; - filteredVoyages.current = voyages.current.filter( - (obj) => obj.year >= yearRange[0] && obj.year <= yearRange[1] - ); - filteredVoyages.current.forEach((filteredVoyage) => { - filteredVoyage.updateMinMax(yearRange[0], yearRange[1]); - }); - p5Ref.current.redraw(); - }, [yearRange]); - - // const toggleFunction = () => { - // setShowAllState(showAll => !showAll); - // showAllRef.current = !showAllRef.current; - // p5Ref.current?.redraw(); - // } - - useEffect(() => { - const initP5 = (p5: p5) => { - voyages.current = []; // The array containing all the voyages - filteredVoyages.current = []; - let lerpAmount = 0; // Transition parameter - let nonResistanceStrokeWidth = 0; //the stroke width of non-resistance voyages curves - - p5.setup = () => { - p5.createCanvas(width, height).parent("voyageContainer"); - - (voyageData as TVoyage[]).forEach((voyage: TVoyage) => { - voyages.current.push( - new VoyageYear( - p5, - voyage, - INITIAL_YEAR_RANGE[0], - INITIAL_YEAR_RANGE[1], - height, - width, - nonResistanceStrokeWidth, - lerpAmount - ) - ); - }); - - //filter the voyages out based on the values on the slider. - filteredVoyages.current = voyages.current.filter( - (obj) => - obj.year >= INITIAL_YEAR_RANGE[0] && - obj.year <= INITIAL_YEAR_RANGE[1] - ); - }; - - //The main visualization - p5.draw = () => { - p5.background(250, 241, 233); - // p5.background(28, 24, 23); - if (lerpAmount < 1 && showAllRef.current) { - lerpAmount += 0.01; - nonResistanceStrokeWidth += 0.005; - } - - for (const index in filteredVoyages.current) { - if ( - showAllRef.current || - filteredVoyages.current[index].resistanceReported - ) { - filteredVoyages.current[index].updateTransition( - lerpAmount, - nonResistanceStrokeWidth, - filteredVoyages.current[index].year - ); - filteredVoyages.current[index].show(); - } - } - - if (!showAllRef.current || lerpAmount >= 1) { - p5.noLoop(); - } else { - p5.loop(); - } - }; - }; - - if (width && height) { - p5Ref.current = new p5(initP5); - } - - const p5Copy = p5Ref.current; - - return () => { - p5Copy?.remove(); - }; - }, [width, height]); - - return ( -
-
-
- {/* - Show non-resistance voyages - */} -
-
- {width && ( - - )} -
-
- ); -} - -export default Voyages; diff --git a/app/components/brooks/voyages/VoyagesCompare.tsx b/app/components/brooks/voyages/VoyagesCompare.tsx deleted file mode 100644 index c3e0cb69..00000000 --- a/app/components/brooks/voyages/VoyagesCompare.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import { useEffect, useState } from "react"; -import { useResizeObserver } from "~/hooks"; -import { ClientOnly } from "remix-utils"; -import Slider from "./Slider"; -import ResistanceVoyages from "./ResistanceVoyages.client"; -import Voyages from "./Voyages.client"; - -const INITIAL_YEAR_RANGE = [1565, 1575]; - -function VoyagesCompare() { - const { windowSize } = useResizeObserver(); - const [yearRange, setYearRange] = useState(INITIAL_YEAR_RANGE); - const [width, setWidth] = useState(0); - - useEffect(() => { - if (windowSize.width && windowSize.height) { - setWidth(windowSize.width - 100); - } - }, [windowSize]); - - return ( -
-
-
- -
-
- - {() => } - - {() => } -
-
-
- ); -} - -export default VoyagesCompare; diff --git a/app/components/brooks/voyages/AllVoyages.client.tsx b/app/components/brooks/voyages/VoyagesVis.client.tsx similarity index 62% rename from app/components/brooks/voyages/AllVoyages.client.tsx rename to app/components/brooks/voyages/VoyagesVis.client.tsx index d53b0cdc..2f2e058d 100644 --- a/app/components/brooks/voyages/AllVoyages.client.tsx +++ b/app/components/brooks/voyages/VoyagesVis.client.tsx @@ -1,7 +1,7 @@ import { useEffect, useState, useRef, useMemo } from "react"; import { useResizeObserver } from "~/hooks"; import p5 from "p5"; -import VoyageYear from "./VoyageYear"; +import Voyage from "./Voyage"; import Axis from "./Axis"; import Slider from "./Slider"; import voyageData from "~/data/brooks/voyages.json"; @@ -16,14 +16,24 @@ interface Props { showSlider?: boolean; showAxis?: boolean; id?: string; + allVoyages?: boolean; + fullColor?: boolean; + widthAdjust?: number; + heightAdjust?: number; + isSample?: boolean; } -function AllVoyages({ +function VoyagesVis({ startYear = INITIAL_YEAR_RANGE[0], endYear = INITIAL_YEAR_RANGE[1], background = [250, 241, 233], showAxis = true, showSlider = true, + allVoyages = true, + fullColor = true, + isSample = false, + widthAdjust = 0.9, + heightAdjust = 0.45, id = "allVoyageContainer", }: Props) { const { windowSize } = useResizeObserver(); @@ -31,18 +41,48 @@ function AllVoyages({ const yearRangeRef = useRef([startYear, endYear]); const backgroundRef = useRef(background); const idRef = useRef(id); - const voyages = useRef>([]); - const filteredVoyages = useRef>([]); + const allVoyagesRef = useRef(allVoyages); + const fullColorRef = useRef(fullColor); + const isSampleRef = useRef(isSample); + const voyages = useRef>([]); + const filteredVoyages = useRef>([]); const [yearRange, setYearRange] = useState([startYear, endYear]); const [width, setWidth] = useState(0); const [height, setHeight] = useState(0); + // We make a bunch of refs so we can use properties in the initial setup. + // We don't want the initial setup to run each time one of these is updated, + // but we do need to keep them current. + useEffect(() => { + yearRangeRef.current = [startYear, endYear]; + }, [startYear, endYear]); + + useEffect(() => { + backgroundRef.current = background; + }, [background]); + + useEffect(() => { + idRef.current = id; + }, [id]); + + useEffect(() => { + allVoyagesRef.current = allVoyages; + }, [allVoyages]); + + useEffect(() => { + fullColorRef.current = fullColor; + }, [fullColor]); + + useEffect(() => { + isSampleRef.current = isSample; + }, [isSample]); + useEffect(() => { if (windowSize.width && windowSize.height) { - setWidth(windowSize.width - 100); - setHeight(windowSize.height * 0.45); + setWidth(windowSize.width * widthAdjust); + setHeight(windowSize.height * heightAdjust); } - }, [windowSize]); + }, [windowSize, widthAdjust, heightAdjust]); useMemo(() => { if (!p5Ref.current) return; @@ -63,34 +103,42 @@ function AllVoyages({ const initP5 = (p5: p5) => { voyages.current = []; // The array containing all the voyages filteredVoyages.current = []; - let lerpAmount = 0; // Transition parameter - let nonResistanceStrokeWidth = 0; //the stroke width of non-resistance voyages curves p5.setup = () => { p5.createCanvas(width, height).parent(idRef.current); (voyageData as TVoyage[]).forEach((voyage: TVoyage) => { voyages.current.push( - new VoyageYear( + new Voyage( p5, voyage, yearRangeRef.current[0], yearRangeRef.current[1], height, width, - nonResistanceStrokeWidth, - lerpAmount, - true + fullColorRef.current ) ); }); //filter the voyages out based on the values on the slider. - filteredVoyages.current = voyages.current.filter( - (obj) => - obj.year >= yearRangeRef.current[0] && - obj.year <= yearRangeRef.current[1] - ); + if (isSampleRef.current) { + filteredVoyages.current = voyages.current.filter( + (obj) => obj.year === yearRangeRef.current[0] + 1 + ); + } else { + filteredVoyages.current = voyages.current.filter( + (obj) => + obj.year >= yearRangeRef.current[0] && + obj.year <= yearRangeRef.current[1] + ); + + if (!allVoyagesRef.current) { + filteredVoyages.current = filteredVoyages.current.filter( + (obj) => obj.resistanceReported + ); + } + } }; //The main visualization @@ -98,11 +146,6 @@ function AllVoyages({ p5.background(backgroundRef.current); for (const index in filteredVoyages.current) { - // filteredVoyages.current[index].updateTransition( - // lerpAmount, - // nonResistanceStrokeWidth, - // filteredVoyages.current[index].year - // ); filteredVoyages.current[index].show(); } @@ -121,6 +164,10 @@ function AllVoyages({ }; }, [width, height]); + if (isSample) { + return
; + } + return (
@@ -153,4 +200,4 @@ function AllVoyages({ ); } -export default AllVoyages; +export default VoyagesVis; diff --git a/app/components/brooks/voyages/utils.ts b/app/components/brooks/voyages/utils.ts index 2d347390..13dc8455 100644 --- a/app/components/brooks/voyages/utils.ts +++ b/app/components/brooks/voyages/utils.ts @@ -18,47 +18,50 @@ export const randomColor = (fullColor: boolean) => { return [0, 0, 0]; }; -const minEmbark = 1; const maxEmbark = 1545; const minDuration = 86400; const maxDuration = 273369600; const maxWidth = 50; -const maxOverlap = 30; -const distanceLeft = 100; -const distanceRight = 100; +const maxOverlap = 300; +const distanceLeft = 12; +const distanceRight = 12; -const curveSeed = (duration: number, p5: p5) => { +const calcPoints = (duration: number, p5: p5) => { return p5.random( -distanceLeft - p5.map(duration, minDuration, maxDuration, 0, maxOverlap), distanceRight + p5.map(duration, minDuration, maxDuration, 0, maxOverlap) ); }; -const vertexSeed = (totalPeople: number, mortalityRate: number, p5: p5) => { - return p5.random( - p5.map( - totalPeople * (1 - mortalityRate), - minEmbark, - maxEmbark, - 0, - maxWidth - ), - p5.map(totalPeople, minEmbark, maxEmbark, 0, maxWidth) - ); +const calcOffsets = ( + totalPeople: number, + survivors: number, + deathsPerLeg: number, + p5: p5, + index: number +) => { + const currentTotalPeople = totalPeople - deathsPerLeg * index; + const voyageWidth = p5.map(totalPeople, 0, maxEmbark, 0, maxWidth); + return p5.map(currentTotalPeople, survivors, totalPeople, 0, voyageWidth); }; -export const generateSeeds = (voyage: TVoyage, p5: p5) => { - const curveSeeds = {}; - const vertexSeeds = {}; +export const generatePoints = (voyage: TVoyage, p5: p5) => { + const points = {}; + const offsets = {}; + const deaths = voyage.totalPeople * voyage.mortalityRate; + const survivors = voyage.totalPeople - deaths; + const deathsPerLeg = deaths / 7; for (const index in Array.from({ length: 7 })) { // @ts-ignore - curveSeeds[`c${parseInt(index) + 1}`] = curveSeed(voyage.duration, p5); + points[`c${parseInt(index) + 1}`] = calcPoints(voyage.duration, p5); // @ts-ignore - vertexSeeds[`c${parseInt(index) + 1}`] = vertexSeed( + offsets[`c${parseInt(index) + 1}`] = calcOffsets( voyage.totalPeople, - voyage.mortalityRate, - p5 + survivors, + deathsPerLeg, + p5, + parseInt(index) ); } - return { curveSeeds, vertexSeeds }; + return { points, offsets }; }; diff --git a/app/data/brooks/voyages.json b/app/data/brooks/voyages.json index c4a5a940..d770c75d 100644 --- a/app/data/brooks/voyages.json +++ b/app/data/brooks/voyages.json @@ -6,23 +6,23 @@ "year": 1565, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -6.262858226853378, - "c2": -4.502167682390425, - "c3": -5.302275655462253, - "c4": -16.767944640520998, - "c5": 8.351551345548415, - "c6": -10.054517454999667, - "c7": 1.4440785347613456 + "points": { + "c1": 20.799160098102192, + "c2": 9.650972147698589, + "c3": -14.940484697725106, + "c4": -24.783168860691386, + "c5": -25.039739831382377, + "c6": -13.44863118007463, + "c7": -12.99409355298998 }, - "vertexSeeds": { - "c1": 1.769587384294274, - "c2": 1.843054306809365, - "c3": 1.8783053116234416, - "c4": 1.897415245852053, - "c5": 1.8953492423019889, - "c6": 1.824307386453219, - "c7": 1.9007737465149919 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022193, + "c3": 2.3116042533518235, + "c4": 1.84928340268146, + "c5": 1.3869625520110964, + "c6": 0.9246417013407329, + "c7": 0.46232085067036355 }, "rgb": [86, 146, 138] }, @@ -33,23 +33,23 @@ "year": 1565, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 4.195249057044272, - "c2": -19.594619907737524, - "c3": 6.639373272004448, - "c4": -14.634364672451092, - "c5": 10.387205066315111, - "c6": 2.7376472825315687, - "c7": 23.759591916180177 + "points": { + "c1": -16.074852344490907, + "c2": 15.25968055090064, + "c3": -1.1464529192942408, + "c4": 23.967706407852425, + "c5": 12.401482487740893, + "c6": 12.3312145925143, + "c7": -12.981857056713821 }, - "vertexSeeds": { - "c1": 1.816078144222393, - "c2": 1.8906415764644466, - "c3": 1.7689919939598349, - "c4": 1.8849649028004447, - "c5": 1.8977597725825768, - "c6": 1.7969061407083016, - "c7": 1.9128096983138165 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022193, + "c3": 2.3116042533518235, + "c4": 1.84928340268146, + "c5": 1.3869625520110964, + "c6": 0.9246417013407329, + "c7": 0.46232085067036355 }, "rgb": [58, 15, 49] }, @@ -60,23 +60,23 @@ "year": 1565, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -3.5668396692421425, - "c2": 13.53120198134937, - "c3": 6.53228026531103, - "c4": -19.28930128680829, - "c5": 16.426557812764493, - "c6": -23.92720451910218, - "c7": 7.3778789256079875 + "points": { + "c1": -6.226111062153318, + "c2": 23.88442082609359, + "c3": -26.98320456928178, + "c4": -19.99516544341222, + "c5": -11.001149751850825, + "c6": -19.83481354190925, + "c7": -22.69242630129671 }, - "vertexSeeds": { - "c1": 1.8618092576137406, - "c2": 1.8813511174251885, - "c3": 1.8478249446542208, - "c4": 1.8767537357155313, - "c5": 1.885261630597577, - "c6": 1.846849434635919, - "c7": 1.8072787921583846 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022191, + "c3": 2.311604253351826, + "c4": 1.8492834026814606, + "c5": 1.3869625520110955, + "c6": 0.9246417013407303, + "c7": 0.46232085067036516 }, "rgb": [58, 15, 49] }, @@ -87,23 +87,23 @@ "year": 1565, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 7.5992209915553275, - "c2": -1.3496628580621568, - "c3": 5.5072058482212505, - "c4": 15.099266835892664, - "c5": -13.792031358182696, - "c6": 18.84367873103553, - "c7": -10.542499734873058 + "points": { + "c1": -3.0609023597290417, + "c2": -8.31455254889692, + "c3": 2.1378421217674166, + "c4": 13.648168491032841, + "c5": -10.6075093100937, + "c6": 18.958903949843858, + "c7": -23.723195916899346 }, - "vertexSeeds": { - "c1": 1.9049523230639276, - "c2": 1.8123937557935166, - "c3": 1.8846643161147147, - "c4": 1.8268451891357913, - "c5": 1.9091380810615988, - "c6": 1.7954557736033272, - "c7": 1.8886254858404212 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022191, + "c3": 2.311604253351826, + "c4": 1.8492834026814606, + "c5": 1.3869625520110955, + "c6": 0.9246417013407303, + "c7": 0.46232085067036516 }, "rgb": [58, 15, 49] }, @@ -114,23 +114,23 @@ "year": 1566, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -31.738231978602556, - "c2": 5.524556337556788, - "c3": 16.975444727361456, - "c4": -26.477349679672578, - "c5": -26.68723259508132, - "c6": 10.967400263051012, - "c7": 9.280604578376767 + "points": { + "c1": -16.295235685516104, + "c2": 43.88559531390474, + "c3": -41.29856525314882, + "c4": -19.81230322473619, + "c5": 34.15437363347569, + "c6": 30.55577120713759, + "c7": 26.979377509841775 }, - "vertexSeeds": { - "c1": 5.972888078333554, - "c2": 6.542619307489497, - "c3": 5.974464620325747, - "c4": 5.594958720877222, - "c5": 6.481195527643376, - "c6": 6.300766512615088, - "c7": 6.303915871826284 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -141,23 +141,23 @@ "year": 1565, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -32.88171716868452, - "c2": -30.59772061814118, - "c3": -18.760849774432906, - "c4": 19.772923543482086, - "c5": -15.382606446686367, - "c6": -27.568623177072705, - "c7": 34.507566075136424 + "points": { + "c1": -4.378642762539364, + "c2": -3.94425140195564, + "c3": 36.74665444721737, + "c4": 31.369208710077274, + "c5": 19.74578908618222, + "c6": 31.64395201555321, + "c7": -10.760555348176204 }, - "vertexSeeds": { - "c1": 6.615803382945843, - "c2": 6.590716813643588, - "c3": 5.7886872027724605, - "c4": 5.571819054758294, - "c5": 5.860087682160722, - "c6": 5.671929692095682, - "c7": 5.805742503973572 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -168,23 +168,23 @@ "year": 1565, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 36.59371627907146, - "c2": 10.674960951285598, - "c3": -12.647620930634403, - "c4": 27.370170451438398, - "c5": 10.866037388574263, - "c6": -4.499140789781784, - "c7": -19.015924223913075 + "points": { + "c1": -19.258830019878566, + "c2": -3.7852567937944883, + "c3": 18.4318147618703, + "c4": 35.300133581757706, + "c5": -2.805501014560491, + "c6": -3.8866553968331914, + "c7": 9.360454708099027 }, - "vertexSeeds": { - "c1": 6.419329545425982, - "c2": 5.733622286615871, - "c3": 6.196437970086243, - "c4": 5.756097796936786, - "c5": 6.342517035618501, - "c6": 6.048009164150035, - "c7": 6.800716718182583 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [238, 201, 159] }, @@ -195,23 +195,23 @@ "year": 1565, "resistanceReported": true, "duration": 9676800, - "curveSeeds": { - "c1": -16.976941055204524, - "c2": 5.086796076014654, - "c3": -19.489930685936514, - "c4": -7.793631776456763, - "c5": 17.19555046279249, - "c6": -16.342661623416163, - "c7": 2.6712344533306975 + "points": { + "c1": 16.93728384475986, + "c2": 18.688598307636354, + "c3": -15.531503598237972, + "c4": -15.356650262954984, + "c5": -7.741574135126493, + "c6": -18.613544035611177, + "c7": -12.021767413657734 }, - "vertexSeeds": { - "c1": 6.211681020586597, - "c2": 6.578406603171815, - "c3": 5.893279650748238, - "c4": 6.507978104104316, - "c5": 6.115126658371698, - "c6": 6.200460183345586, - "c7": 5.856380762398112 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.246417013407301, + "c4": 7.3971336107258425, + "c5": 5.547850208044384, + "c6": 3.6985668053629177, + "c7": 1.8492834026814589 }, "rgb": [58, 15, 49] }, @@ -222,23 +222,23 @@ "year": 1567, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 26.437671430902583, - "c2": -16.93693067943648, - "c3": -27.09100029698906, - "c4": 26.19004880979125, - "c5": 0.9162655322331013, - "c6": 14.43283281498686, - "c7": -5.273050869595046 + "points": { + "c1": 23.600914449440502, + "c2": 7.011294157262391, + "c3": -24.06647747130304, + "c4": 20.350912763900844, + "c5": 0.02012276220660425, + "c6": 9.264527211059814, + "c7": -4.153511842152671 }, - "vertexSeeds": { - "c1": 6.8441376684944855, - "c2": 6.691763895623314, - "c3": 6.125909411460084, - "c4": 6.514302293897028, - "c5": 6.867448513502575, - "c6": 5.816034910973338, - "c7": 5.837962681199696 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -249,23 +249,23 @@ "year": 1568, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": 4.833219022795806, - "c2": -14.332130967305625, - "c3": 8.721281875731986, - "c4": 2.052296422384689, - "c5": -15.290036086968588, - "c6": -8.156115144717957, - "c7": 12.988910586345845 + "points": { + "c1": -18.274928958012065, + "c2": 10.556390201207659, + "c3": -13.538892175208085, + "c4": -3.266147645890495, + "c5": 16.672587774484512, + "c6": 5.908092817777597, + "c7": 16.581239089236405 }, - "vertexSeeds": { - "c1": 1.0389274664713437, - "c2": 1.0796100551499488, - "c3": 1.4655819982254539, - "c4": 1.3925802324945997, - "c5": 1.2986904388468126, - "c6": 1.263395575489182, - "c7": 1.0820258375836216 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.163661581137309, + "c3": 1.8030513176144245, + "c4": 1.4424410540915396, + "c5": 1.0818307905686548, + "c6": 0.7212205270457702, + "c7": 0.3606102635228848 }, "rgb": [238, 201, 159] }, @@ -276,23 +276,23 @@ "year": 1568, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": 17.84943930459223, - "c2": 18.272900973730913, - "c3": 18.492094364944144, - "c4": 11.18183840194163, - "c5": 0.3295381245585496, - "c6": 17.88591408498597, - "c7": -8.954040446612222 + "points": { + "c1": -7.796615368769221, + "c2": -20.331380353197243, + "c3": -13.716005278053808, + "c4": -16.51765277047414, + "c5": 16.353223472482746, + "c6": -19.82572048304125, + "c7": -17.071415499038004 }, - "vertexSeeds": { - "c1": 1.1473010720358439, - "c2": 1.3653747687025775, - "c3": 1.4810992926766007, - "c4": 1.053778046456114, - "c5": 1.2380113552519578, - "c6": 1.1757442288405764, - "c7": 1.1810974320083665 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.163661581137309, + "c3": 1.8030513176144245, + "c4": 1.4424410540915396, + "c5": 1.0818307905686548, + "c6": 0.7212205270457702, + "c7": 0.3606102635228848 }, "rgb": [238, 201, 159] }, @@ -303,23 +303,23 @@ "year": 1568, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": 1.6628755897464096, - "c2": 3.4450425254816395, - "c3": 12.743844056387204, - "c4": 17.185540542307436, - "c5": 11.222718015062284, - "c6": -16.27766877107395, - "c7": -4.0976323391077045 + "points": { + "c1": 6.302468284031775, + "c2": 9.07219819944206, + "c3": 2.3274120560189964, + "c4": -8.419630746347517, + "c5": -11.020167828726219, + "c6": -8.704067668091787, + "c7": 18.855332966038674 }, - "vertexSeeds": { - "c1": 1.2376542231044416, - "c2": 1.173847347533631, - "c3": 1.4765115601935441, - "c4": 1.3241565113844689, - "c5": 1.2986402546423328, - "c6": 1.2255313183098926, - "c7": 1.3009592647100592 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.163661581137309, + "c3": 1.8030513176144245, + "c4": 1.4424410540915396, + "c5": 1.0818307905686548, + "c6": 0.7212205270457702, + "c7": 0.3606102635228848 }, "rgb": [77, 76, 132] }, @@ -330,23 +330,23 @@ "year": 1568, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": -16.976006111220354, - "c2": -18.05111876370823, - "c3": -11.383392713592038, - "c4": -0.13356984006492567, - "c5": -16.680207242286286, - "c6": 15.464282034328228, - "c7": -0.7255613451909433 + "points": { + "c1": -10.113057647979698, + "c2": -8.325711650309763, + "c3": 17.054586506862073, + "c4": 9.998984991337633, + "c5": 16.00524913165924, + "c6": -13.121066321889408, + "c7": -6.781871942628722 }, - "vertexSeeds": { - "c1": 1.0781267941765915, - "c2": 1.3508241369468919, - "c3": 1.0924353921391905, - "c4": 1.0901648350316107, - "c5": 1.0779806794648694, - "c6": 1.2764497286116616, - "c7": 1.4875914803238415 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.163661581137309, + "c3": 1.8030513176144245, + "c4": 1.4424410540915396, + "c5": 1.0818307905686548, + "c6": 0.7212205270457702, + "c7": 0.3606102635228848 }, "rgb": [77, 76, 132] }, @@ -357,23 +357,23 @@ "year": 1568, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": -10.948912067121707, - "c2": -9.789775390699175, - "c3": 12.51854921242785, - "c4": -10.546073103464618, - "c5": 0.031419014381963706, - "c6": -6.700616160254693, - "c7": -11.382218680199594 + "points": { + "c1": 18.751138678543455, + "c2": 4.0050380875689235, + "c3": -13.443135209101936, + "c4": -2.152209241704554, + "c5": -9.498023242618746, + "c6": -3.9734063374329374, + "c7": -17.58085044860721 }, - "vertexSeeds": { - "c1": 5.668885036470426, - "c2": 5.669360952844533, - "c3": 6.878139734511589, - "c4": 6.455435542065592, - "c5": 6.175425576732017, - "c6": 5.885284346047019, - "c7": 6.57369973173058 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [222, 0, 59] }, @@ -384,23 +384,23 @@ "year": 1569, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -3.0738199430543283, - "c2": -14.599014105089378, - "c3": -5.811821756889255, - "c4": 10.580908872432893, - "c5": -5.567706688993702, - "c6": 22.975744312517378, - "c7": 9.36399917681792 + "points": { + "c1": -13.507059414735574, + "c2": -18.075505177606452, + "c3": 22.51952454256211, + "c4": -15.091825333316685, + "c5": 11.844154940783106, + "c6": -22.691084620804663, + "c7": -23.661675774512037 }, - "vertexSeeds": { - "c1": 7.426029681938243, - "c2": 7.887413509341507, - "c3": 6.8484080572167825, - "c4": 6.864564561864683, - "c5": 6.435607837952139, - "c6": 6.4562526462869965, - "c7": 7.2352777334951215 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.48404993065187, + "c3": 9.570041608876558, + "c4": 7.656033287101245, + "c5": 5.74202496532594, + "c6": 3.828016643550627, + "c7": 1.9140083217753134 }, "rgb": [86, 146, 138] }, @@ -411,23 +411,23 @@ "year": 1569, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -25.806382299078003, - "c2": -12.407069953651494, - "c3": 5.231881540676181, - "c4": 21.88746412410126, - "c5": -28.3310135591319, - "c6": 5.206598767890053, - "c7": 11.364745159999142 + "points": { + "c1": -11.61312923069865, + "c2": 3.7023812189004452, + "c3": -1.4191765449429141, + "c4": -18.717555625450757, + "c5": -20.82635092341816, + "c6": 15.858249967248437, + "c7": -19.972475846050735 }, - "vertexSeeds": { - "c1": 6.246756770401483, - "c2": 6.316229763705105, - "c3": 5.8272916034307265, - "c4": 6.716271833097048, - "c5": 6.241037314579559, - "c6": 6.438483366384072, - "c7": 5.8642267922711095 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [77, 76, 132] }, @@ -438,23 +438,23 @@ "year": 1569, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 6.5918726733240085, - "c2": 13.343356216606114, - "c3": -24.65509364358445, - "c4": 9.347229772612497, - "c5": -7.228035800115464, - "c6": 23.318971587904723, - "c7": -13.407183214437055 + "points": { + "c1": -22.971907960643733, + "c2": -12.529843235994115, + "c3": -10.462676987016454, + "c4": 30.236612017530287, + "c5": -24.03876328567677, + "c6": -24.297631214196937, + "c7": -15.625961665470513 }, - "vertexSeeds": { - "c1": 8.720811680936876, - "c2": 9.473336946660071, - "c3": 9.184024991241618, - "c4": 9.105563870995566, - "c5": 9.84099755235478, - "c6": 9.766388093686638, - "c7": 8.943065435349656 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.14701803051318, + "c3": 11.789181692094312, + "c4": 9.431345353675452, + "c5": 7.07350901525659, + "c6": 4.715672676837721, + "c7": 2.3578363384188603 }, "rgb": [238, 201, 159] }, @@ -465,23 +465,23 @@ "year": 1569, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 19.301186275712325, - "c2": -30.398308667414337, - "c3": 19.668430637105935, - "c4": 27.199747458745883, - "c5": -20.86260527369779, - "c6": -7.425658969598416, - "c7": 3.4320920878249126 + "points": { + "c1": -25.368819961541792, + "c2": -2.04127902230616, + "c3": -3.1584588395115034, + "c4": 6.0083135977069375, + "c5": 32.97552530295529, + "c6": -27.05152435283047, + "c7": -8.578663026224838 }, - "vertexSeeds": { - "c1": 9.702036346965501, - "c2": 8.567787798896983, - "c3": 9.622555274390972, - "c4": 9.408552129494044, - "c5": 9.337790467465627, - "c6": 9.519519036492397, - "c7": 8.86062631730095 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.67406380027739, + "c3": 12.22838650023116, + "c4": 9.782709200184927, + "c5": 7.337031900138695, + "c6": 4.8913546000924635, + "c7": 2.4456773000462317 }, "rgb": [238, 201, 159] }, @@ -492,23 +492,23 @@ "year": 1570, "resistanceReported": false, "duration": 2419200, - "curveSeeds": { - "c1": -11.427120317188416, - "c2": -9.329650094020918, - "c3": 11.772739166223833, - "c4": 12.0434827938154, - "c5": 4.974317254855123, - "c6": 0.2547950514132964, - "c7": 6.873948864273057 + "points": { + "c1": -10.884437642133811, + "c2": -10.654083631469431, + "c3": 1.8193630285548927, + "c4": -10.420725220400254, + "c5": -1.0934751128215439, + "c6": -4.765020586787836, + "c7": 6.5442176584573275 }, - "vertexSeeds": { - "c1": 10.331500376009297, - "c2": 9.846444773097465, - "c3": 9.445571623070371, - "c4": 10.59771993399833, - "c5": 10.078686112134228, - "c6": 9.798006614404311, - "c7": 9.544630077185907 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.97780859916782, + "c3": 13.314840499306518, + "c4": 10.651872399445214, + "c5": 7.98890429958391, + "c6": 5.325936199722607, + "c7": 2.6629680998613035 }, "rgb": [222, 0, 59] }, @@ -519,23 +519,23 @@ "year": 1571, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 7.798681572744961, - "c2": -24.108397478606395, - "c3": -19.239392034927114, - "c4": -33.61007679504626, - "c5": -31.714776869323316, - "c6": -16.801220497407762, - "c7": 24.470756485676667 + "points": { + "c1": -28.666528758318293, + "c2": -32.921054439789586, + "c3": 5.024804397512938, + "c4": -34.761923347460794, + "c5": 31.86261396423344, + "c6": -11.392267355136077, + "c7": -6.406864899514638 }, - "vertexSeeds": { - "c1": 9.585772120856424, - "c2": 9.95033448346295, - "c3": 9.638769648384944, - "c4": 9.324724983682762, - "c5": 10.253978690197597, - "c6": 10.179423980780234, - "c7": 9.409538430511633 + "offsets": { + "c1": 18.6084142394822, + "c2": 15.950069348127597, + "c3": 13.291724456772995, + "c4": 10.63337956541841, + "c5": 7.9750346740637985, + "c6": 5.316689782709205, + "c7": 2.6583448913546026 }, "rgb": [77, 76, 132] }, @@ -546,23 +546,23 @@ "year": 1573, "resistanceReported": false, "duration": 52617600, - "curveSeeds": { - "c1": -12.970499589366817, - "c2": -52.57190475616105, - "c3": 39.79373979402854, - "c4": 40.0785010786786, - "c5": -44.71469368163706, - "c6": 31.550069928544147, - "c7": 48.681379550085765 + "points": { + "c1": 67.61275363426603, + "c2": 9.301212795245306, + "c3": -37.646275499377516, + "c4": -55.645221061580806, + "c5": 50.138518219013534, + "c6": 58.748138819176575, + "c7": -64.15737951700808 }, - "vertexSeeds": { - "c1": 4.446778888059901, - "c2": 5.086815506686276, - "c3": 5.033058136151949, - "c4": 4.4540839221505655, - "c5": 4.908684803644088, - "c6": 4.220991263079226, - "c7": 5.003454944230885 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578364, + "c3": 6.079519186315304, + "c4": 4.86361534905224, + "c5": 3.647711511789179, + "c6": 2.43180767452612, + "c7": 1.21590383726306 }, "rgb": [238, 201, 159] }, @@ -573,23 +573,23 @@ "year": 1572, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 25.69639803091026, - "c2": -36.09459135293344, - "c3": -2.2896667315655037, - "c4": -3.1960174432321438, - "c5": -28.79673449714617, - "c6": -3.1379571596053495, - "c7": 8.862501961303686 + "points": { + "c1": -7.214527532121721, + "c2": 32.70846397920293, + "c3": -20.681133565775824, + "c4": 29.013621461208132, + "c5": -23.32995708288424, + "c6": -10.366531723186952, + "c7": 20.980520785079754 }, - "vertexSeeds": { - "c1": 6.888819702037897, - "c2": 7.466257253436298, - "c3": 6.745537507271244, - "c4": 6.657090242477219, - "c5": 6.46701813699719, - "c6": 7.029296864227618, - "c7": 7.278028480854614 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927875, + "c3": 9.153952843273236, + "c4": 7.3231622746185865, + "c5": 5.492371705963937, + "c6": 3.661581137309298, + "c7": 1.830790568654649 }, "rgb": [238, 201, 159] }, @@ -600,23 +600,23 @@ "year": 1573, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 12.998906811816632, - "c2": -38.20892006189686, - "c3": 42.83798886082769, - "c4": 44.13189789650866, - "c5": 33.69694776877127, - "c6": 39.749537527603266, - "c7": -23.966341490710676 + "points": { + "c1": 20.466372021008453, + "c2": 42.9306579637756, + "c3": 42.48279609217454, + "c4": -30.421591469703753, + "c5": -29.4541355636658, + "c6": -26.697396044707695, + "c7": 44.21686900852822 }, - "vertexSeeds": { - "c1": 6.594112908481278, - "c2": 6.264882320769118, - "c3": 6.755552070006095, - "c4": 6.943538312461634, - "c5": 6.780533152802499, - "c6": 6.8013527322064125, - "c7": 6.473202601916438 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761438, + "c3": 8.483587609801203, + "c4": 6.786870087840959, + "c5": 5.090152565880723, + "c6": 3.3934350439204795, + "c7": 1.6967175219602444 }, "rgb": [238, 201, 159] }, @@ -627,23 +627,23 @@ "year": 1572, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 8.219372502418427, - "c2": 14.075018095091647, - "c3": -15.25949775537225, - "c4": -11.421636858244643, - "c5": 23.51411618753401, - "c6": -11.977240661216822, - "c7": -15.830148967966487 + "points": { + "c1": 9.661557339282975, + "c2": -11.311919185397045, + "c3": 4.241471722918693, + "c4": 4.168457429295078, + "c5": -28.68265613323189, + "c6": 7.103779772663412, + "c7": -16.202097601044716 }, - "vertexSeeds": { - "c1": 6.281001794091827, - "c2": 5.925914405179633, - "c3": 5.736426413869291, - "c4": 6.722622993735746, - "c5": 6.807799727459076, - "c6": 6.75333262610228, - "c7": 6.560745007740437 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [222, 0, 59] }, @@ -654,23 +654,23 @@ "year": 1575, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": 17.555046758871775, - "c2": 11.977740900825829, - "c3": -46.76861641246738, - "c4": 4.207684564345136, - "c5": -26.84422306332246, - "c6": 37.6067252035728, - "c7": -3.2012241278584526 + "points": { + "c1": 10.507038253970116, + "c2": 17.354336197106726, + "c3": 26.283340120995, + "c4": -23.194655063616636, + "c5": 26.033557873861376, + "c6": -44.223010104472294, + "c7": -7.21243368826228 }, - "vertexSeeds": { - "c1": 6.663101016632608, - "c2": 6.704778990745448, - "c3": 6.809961337090469, - "c4": 6.590483838203059, - "c5": 5.88455995627928, - "c6": 6.141342503626469, - "c7": 6.931810084049949 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.01386962552011, + "c3": 8.34489135460009, + "c4": 6.675913083680079, + "c5": 5.00693481276006, + "c6": 3.3379565418400396, + "c7": 1.6689782709200198 }, "rgb": [238, 201, 159] }, @@ -681,23 +681,23 @@ "year": 1574, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 8.64250794879381, - "c2": 24.73209878608726, - "c3": 27.92147984760481, - "c4": 16.530255609683234, - "c5": -0.6985507075657296, - "c6": 18.75399144097349, - "c7": 25.38151379187617 + "points": { + "c1": -3.684181066354956, + "c2": -30.947174074832553, + "c3": -11.84425933132039, + "c4": 23.72283551961167, + "c5": 4.142961235412969, + "c6": -30.132145698521942, + "c7": -24.997694880299125 }, - "vertexSeeds": { - "c1": 8.74962263009251, - "c2": 7.410777422614729, - "c3": 9.048733167552038, - "c4": 8.222014499156572, - "c5": 8.960128251184244, - "c6": 8.415057963848854, - "c7": 8.655589661383422 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904296, + "c3": 10.864539990753586, + "c4": 8.691631992602867, + "c5": 6.518723994452148, + "c6": 4.345815996301439, + "c7": 2.1729079981507193 }, "rgb": [238, 201, 159] }, @@ -708,23 +708,23 @@ "year": 1575, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 39.30258087061857, - "c2": -19.7011471390727, - "c3": -13.855641522505984, - "c4": -28.2081725862308, - "c5": -42.29393255080507, - "c6": -40.40466987455362, - "c7": -48.34476584615108 + "points": { + "c1": -20.818624837710214, + "c2": 28.159778327357827, + "c3": -22.584489648156023, + "c4": 48.772659420181284, + "c5": -18.145985962433294, + "c6": -34.80751392143773, + "c7": -11.981113273811907 }, - "vertexSeeds": { - "c1": 5.696807407917186, - "c2": 5.344763263248794, - "c3": 5.543664374335604, - "c4": 6.11933975396546, - "c5": 6.487550901507844, - "c6": 6.4284787079673, - "c7": 5.426964680548039 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836334, + "c3": 7.951918631530285, + "c4": 6.361534905224226, + "c5": 4.771151178918167, + "c6": 3.1807674526121086, + "c7": 1.590383726306059 }, "rgb": [222, 0, 59] }, @@ -735,23 +735,23 @@ "year": 1575, "resistanceReported": false, "duration": 61689600, - "curveSeeds": { - "c1": -38.75590604578507, - "c2": 4.28106928183054, - "c3": -60.84057086636665, - "c4": -74.16799680754846, - "c5": -29.816622373757525, - "c6": 38.35657208210549, - "c7": -11.352262726122902 + "points": { + "c1": -30.533923024991914, + "c2": -10.628510984597057, + "c3": 1.352980809669063, + "c4": -2.434395249614326, + "c5": 31.000642613073296, + "c6": -35.14615786725459, + "c7": -40.12258678450584 }, - "vertexSeeds": { - "c1": 5.275772352307293, - "c2": 5.4210550291222495, - "c3": 5.385203038267419, - "c4": 5.127727942522562, - "c5": 5.182937657389787, - "c6": 5.229359685774142, - "c7": 5.532577285814511 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622746, + "c3": 7.027276930189547, + "c4": 5.621821544151644, + "c5": 4.216366158113733, + "c6": 2.81091077207582, + "c7": 1.4054553860379078 }, "rgb": [77, 76, 132] }, @@ -762,23 +762,23 @@ "year": 1575, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 1.9439518268275862, - "c2": -34.984429059383736, - "c3": 35.71391155443624, - "c4": 18.463745828639638, - "c5": -25.92391952105214, - "c6": -8.375693956101824, - "c7": 20.949347367994235 + "points": { + "c1": -13.337553065558652, + "c2": -9.247692756247925, + "c3": 30.505065217489644, + "c4": -21.818887149568532, + "c5": -31.30936431199841, + "c6": -8.214997032116944, + "c7": -13.274663982050985 }, - "vertexSeeds": { - "c1": 2.613307875720979, - "c2": 8.869787055533568, - "c3": 3.6167584112773126, - "c4": 5.5926204716125625, - "c5": 9.093766128314199, - "c6": 8.031478805978109, - "c7": 3.4398920852215458 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133145, + "c3": 13.869625520110956, + "c4": 11.095700416088764, + "c5": 8.321775312066574, + "c6": 5.547850208044383, + "c7": 2.7739251040221906 }, "rgb": [238, 201, 159] }, @@ -789,23 +789,23 @@ "year": 1578, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -18.348584972952597, - "c2": 7.660852215196581, - "c3": -6.639463983714707, - "c4": -18.257185828024383, - "c5": 7.695622847944463, - "c6": 12.562260838721262, - "c7": 16.831635069782646 + "points": { + "c1": -21.450292038750103, + "c2": 22.061013084325058, + "c3": 12.724691739610481, + "c4": 18.355805276138316, + "c5": -18.7187250853773, + "c6": -16.738912330782245, + "c7": -20.527866378234958 }, - "vertexSeeds": { - "c1": 4.5528442788455346, - "c2": 5.2108833976637525, - "c3": 4.4268943419199696, - "c4": 4.552553492577999, - "c5": 5.036794296237254, - "c6": 5.478151052486328, - "c7": 5.423139084241692 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423022, + "c3": 6.564956079519183, + "c4": 5.251964863615352, + "c5": 3.938973647711513, + "c6": 2.625982431807674, + "c7": 1.3129912159038346 }, "rgb": [58, 15, 49] }, @@ -816,23 +816,23 @@ "year": 1579, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -0.358351487030955, - "c2": -0.5152199370885313, - "c3": -7.486808287284198, - "c4": -7.095676849267903, - "c5": -26.951856901628915, - "c6": 10.185590900936369, - "c7": -14.917923892207813 + "points": { + "c1": -24.897725185707607, + "c2": 20.692167335202555, + "c3": 2.9193682207668843, + "c4": 25.767554831836925, + "c5": 26.391922404390094, + "c6": 21.85232033237009, + "c7": -19.742127650071453 }, - "vertexSeeds": { - "c1": 6.211849442012235, - "c2": 5.710483132264727, - "c3": 6.433073680456956, - "c4": 5.720013417361773, - "c5": 6.622663336988035, - "c6": 6.25719235360896, - "c7": 6.496525314520476 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [238, 201, 159] }, @@ -843,23 +843,23 @@ "year": 1583, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -15.949279280298484, - "c2": 16.49190338810729, - "c3": 10.12542243164598, - "c4": -20.113606860811142, - "c5": -33.4612714650195, - "c6": 12.961543497449973, - "c7": -0.35190275176303487 + "points": { + "c1": 14.95417503506544, + "c2": -5.443202466949558, + "c3": -2.6536877855469783, + "c4": 37.10141059010624, + "c5": -3.569358710258328, + "c6": 12.949105160654476, + "c7": -28.044664401114765 }, - "vertexSeeds": { - "c1": 6.086607422589537, - "c2": 6.855220940970116, - "c3": 5.9708467355203, - "c4": 6.8789241181766005, - "c5": 5.968986449717605, - "c6": 5.998936241264544, - "c7": 6.578381728747812 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [222, 0, 59] }, @@ -870,23 +870,23 @@ "year": 1585, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": -6.650642997989138, - "c2": -39.61919700282563, - "c3": -39.8094432831419, - "c4": -9.201760690539402, - "c5": -1.9297623788537095, - "c6": -35.65112246738414, - "c7": 32.42160785421093 + "points": { + "c1": -47.80802382421861, + "c2": 20.38761170038711, + "c3": -7.721964818180581, + "c4": 11.08479392552809, + "c5": 5.729457611325223, + "c6": 0.553597362768727, + "c7": -22.27931619571213 }, - "vertexSeeds": { - "c1": 6.484111561319383, - "c2": 6.049036846086389, - "c3": 6.305159441555493, - "c4": 6.420623422981377, - "c5": 6.78582633079242, - "c6": 5.8088628030070115, - "c7": 5.702163446730749 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [86, 146, 138] }, @@ -897,23 +897,23 @@ "year": 1585, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 25.64862298282477, - "c2": -18.67668805103854, - "c3": -31.502061833617635, - "c4": 1.7338335047547204, - "c5": 48.671384620465496, - "c6": -0.14618314886972428, - "c7": 45.858652948421245 + "points": { + "c1": 5.848727215051063, + "c2": -44.834009513491814, + "c3": -45.12988721428886, + "c4": 41.40863798188423, + "c5": -26.369924845366086, + "c6": 5.485315656992462, + "c7": 17.241279716677248 }, - "vertexSeeds": { - "c1": 6.601329136560011, - "c2": 5.674370233617296, - "c3": 6.169369795396969, - "c4": 6.378714196094431, - "c5": 5.781465829713218, - "c6": 6.8049338420096, - "c7": 6.020324706986051 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [222, 0, 59] }, @@ -924,23 +924,23 @@ "year": 1585, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": 8.399726611422466, - "c2": -19.673183649982327, - "c3": -44.85854566959444, - "c4": 11.907030929314786, - "c5": -41.356082859494286, - "c6": 41.147762813157556, - "c7": 7.354141417124694 + "points": { + "c1": -41.20272962725158, + "c2": -17.715594340340495, + "c3": 20.890039473243363, + "c4": 26.559789192410378, + "c5": -32.14363777620724, + "c6": -24.67498793495783, + "c7": 4.255576016034517 }, - "vertexSeeds": { - "c1": 5.834439893949366, - "c2": 6.647628376343867, - "c3": 6.089591903531189, - "c4": 6.2463939428403386, - "c5": 6.4508466270151885, - "c6": 6.377982635987763, - "c7": 5.8840842971274325 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -951,23 +951,23 @@ "year": 1585, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -24.714642888641322, - "c2": 24.471585310481295, - "c3": 13.393212085931623, - "c4": 7.511867716806634, - "c5": -5.8231689804115305, - "c6": -15.62313023613078, - "c7": 1.0925871716895372 + "points": { + "c1": -7.934548595745699, + "c2": -19.30776448780514, + "c3": -23.660123413134166, + "c4": 6.566535739220207, + "c5": 17.632324886700687, + "c6": 18.58034476374943, + "c7": 25.861549656499776 }, - "vertexSeeds": { - "c1": 6.392742410449501, - "c2": 6.917342225850717, - "c3": 6.744288017961351, - "c4": 6.837630071231829, - "c5": 5.627112584577968, - "c6": 6.34041066097587, - "c7": 5.817106444290692 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [58, 15, 49] }, @@ -978,23 +978,23 @@ "year": 1585, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 19.31121763838867, - "c2": 31.941412931040176, - "c3": 1.978607006071904, - "c4": -30.38926307735746, - "c5": 28.230587357011125, - "c6": -21.496803950111826, - "c7": 26.910176979784083 + "points": { + "c1": -5.768109299124056, + "c2": 3.259752809511454, + "c3": -24.64884710989145, + "c4": -18.036639033540855, + "c5": 0.35209193547304807, + "c6": 16.52091159117981, + "c7": -32.797602095517966 }, - "vertexSeeds": { - "c1": 6.537477152406184, - "c2": 5.773823064257084, - "c3": 6.37770091503321, - "c4": 5.943331305048927, - "c5": 6.942061345452115, - "c6": 5.845962046944985, - "c7": 6.647596800753917 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [58, 15, 49] }, @@ -1005,23 +1005,23 @@ "year": 1587, "resistanceReported": false, "duration": 63072000, - "curveSeeds": { - "c1": -9.57055127752848, - "c2": 33.63265851832823, - "c3": -46.772781446375454, - "c4": 4.411641407401646, - "c5": 10.995728109354559, - "c6": -62.087463044409674, - "c7": -10.021233776697201 + "points": { + "c1": 42.695198370699316, + "c2": 27.21446104654764, + "c3": -41.97130897148106, + "c4": 79.09809754258575, + "c5": 43.18408097569012, + "c6": -52.29895149107213, + "c7": 39.77989804941832 }, - "vertexSeeds": { - "c1": 5.944506735063417, - "c2": 6.6473266137704385, - "c3": 6.467660061414328, - "c4": 6.526453414525749, - "c5": 5.630248827085175, - "c6": 5.924216360102356, - "c7": 6.235485610105017 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [86, 146, 138] }, @@ -1032,23 +1032,23 @@ "year": 1586, "resistanceReported": false, "duration": 44409600, - "curveSeeds": { - "c1": -5.620877745981083, - "c2": 21.296636073450152, - "c3": -38.197207777006426, - "c4": -55.3138199142611, - "c5": -16.794419166521784, - "c6": 15.84020304694247, - "c7": 2.439228816960295 + "points": { + "c1": 50.375267819891825, + "c2": 39.255728059925495, + "c3": 2.8050979692753444, + "c4": -56.36322018927531, + "c5": -50.431054823015856, + "c6": 1.7996247338253824, + "c7": -5.339758756085573 }, - "vertexSeeds": { - "c1": 6.680218387204766, - "c2": 6.837075702767679, - "c3": 6.809676666457068, - "c4": 6.257610976400034, - "c5": 6.307327685067, - "c6": 6.2460713472500675, - "c7": 6.281304397856497 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [222, 0, 59] }, @@ -1059,23 +1059,23 @@ "year": 1586, "resistanceReported": false, "duration": 44236800, - "curveSeeds": { - "c1": -27.610849844497615, - "c2": -33.55726634496334, - "c3": 8.32887055527761, - "c4": 48.1048362062622, - "c5": -0.38928914729068964, - "c6": -1.646385682521661, - "c7": -24.443680790383972 + "points": { + "c1": 16.094443963960067, + "c2": 3.9545337700185357, + "c3": 5.420298038428719, + "c4": 22.144507908748942, + "c5": -19.131643329919626, + "c6": 49.028164584358386, + "c7": -51.98100150377935 }, - "vertexSeeds": { - "c1": 6.178832032986007, - "c2": 6.8960887768395445, - "c3": 6.750276984197622, - "c4": 6.824725947629948, - "c5": 5.858739003721397, - "c6": 6.198526067896096, - "c7": 6.016712728264438 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -1086,23 +1086,23 @@ "year": 1586, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -32.30326789769062, - "c2": -18.710856702467773, - "c3": 49.75906935694536, - "c4": 26.728413780358665, - "c5": 41.29708775974906, - "c6": 18.435920251622846, - "c7": 46.4079731876983 + "points": { + "c1": -16.688541917633096, + "c2": -21.438581741541505, + "c3": -12.720303824422132, + "c4": 9.208900522327696, + "c5": 11.390484278113604, + "c6": -36.55852812191679, + "c7": 50.23363628893142 }, - "vertexSeeds": { - "c1": 5.774416914599349, - "c2": 6.650401854351826, - "c3": 5.95526310840827, - "c4": 5.797202840587389, - "c5": 5.936445424335867, - "c6": 6.768744256797781, - "c7": 5.688072381866325 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [222, 0, 59] }, @@ -1113,23 +1113,23 @@ "year": 1587, "resistanceReported": false, "duration": 49334400, - "curveSeeds": { - "c1": 57.38809391868928, - "c2": 51.078458816869855, - "c3": -56.19102913171196, - "c4": 48.515348637640514, - "c5": 45.57412268797759, - "c6": -14.418151402569222, - "c7": 4.339769015908175 + "points": { + "c1": 1.478290001649441, + "c2": -51.309017454921786, + "c3": -54.28341487115179, + "c4": 37.36250809429161, + "c5": -2.810990721369052, + "c6": 58.695424494194214, + "c7": -61.327849178175896 }, - "vertexSeeds": { - "c1": 11.48324541788162, - "c2": 11.45146220417865, - "c3": 9.801242771998158, - "c4": 10.670845403792889, - "c5": 9.812235838536763, - "c6": 11.03848317719044, - "c7": 9.353775212535345 + "offsets": { + "c1": 19.320388349514563, + "c2": 16.56033287101248, + "c3": 13.800277392510395, + "c4": 11.040221914008331, + "c5": 8.28016643550625, + "c6": 5.5201109570041655, + "c7": 2.7600554785020828 }, "rgb": [238, 201, 159] }, @@ -1140,23 +1140,23 @@ "year": 1588, "resistanceReported": false, "duration": 63331200, - "curveSeeds": { - "c1": -22.47567852138087, - "c2": -6.390781912758115, - "c3": 59.91961680176762, - "c4": 78.84558448304166, - "c5": -7.248774102449929, - "c6": 0.4652842788614464, - "c7": 72.5553881885016 + "points": { + "c1": 22.503432267732393, + "c2": -16.640254203834274, + "c3": 22.50375475978612, + "c4": 41.02291006453264, + "c5": -48.19365634272597, + "c6": 53.81963617444349, + "c7": 70.1920481358501 }, - "vertexSeeds": { - "c1": 8.220627588919417, - "c2": 8.08940394447989, - "c3": 8.01405258640357, - "c4": 8.980920227063434, - "c5": 7.934501297222874, - "c6": 9.565562945974953, - "c7": 7.877238536885483 + "offsets": { + "c1": 16.116504854368934, + "c2": 13.814147018030512, + "c3": 11.5117891816921, + "c4": 9.209431345353678, + "c5": 6.907073509015256, + "c6": 4.604715672676844, + "c7": 2.302357836338422 }, "rgb": [86, 146, 138] }, @@ -1167,23 +1167,23 @@ "year": 1587, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -23.32322628085378, - "c2": -18.07759623582174, - "c3": -0.11061175989009087, - "c4": -18.90190196207576, - "c5": -17.42513085259726, - "c6": -9.050276752892195, - "c7": -1.7025782318246527 + "points": { + "c1": -25.745093560081482, + "c2": 25.300652327201135, + "c3": 9.03779830533248, + "c4": -1.5699925902639436, + "c5": -8.179138425219186, + "c6": 27.920129390645286, + "c7": 29.248197610704622 }, - "vertexSeeds": { - "c1": 5.427857149039096, - "c2": 5.601259569145495, - "c3": 5.819404634115115, - "c4": 5.687532156907371, - "c5": 5.453735367094458, - "c6": 5.882350429173619, - "c7": 5.357343781868542 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192786, + "c3": 7.582061950993984, + "c4": 6.065649560795193, + "c5": 4.549237170596393, + "c6": 3.032824780397592, + "c7": 1.5164123901988005 }, "rgb": [222, 0, 59] }, @@ -1194,23 +1194,23 @@ "year": 1587, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": -48.76284240000508, - "c2": -49.18352093611713, - "c3": 1.3700473927743175, - "c4": 42.432235313603655, - "c5": 19.155524178133078, - "c6": -2.143659617558086, - "c7": 7.062400766555747 + "points": { + "c1": -52.45649257957525, + "c2": 37.36499256056574, + "c3": -46.72604405189563, + "c4": 20.867303430122888, + "c5": 16.742046682497374, + "c6": 37.486463914484375, + "c7": -50.02113904251039 }, - "vertexSeeds": { - "c1": 5.806895834060223, - "c2": 5.687914636402397, - "c3": 6.768047695025169, - "c4": 6.872291177088443, - "c5": 6.176582326140224, - "c6": 6.450890053202652, - "c7": 6.253407905138167 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [58, 15, 49] }, @@ -1221,23 +1221,23 @@ "year": 1587, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": 37.40234506561231, - "c2": -24.19815462487067, - "c3": 13.302342003168278, - "c4": -20.274689844131665, - "c5": -38.84128150959278, - "c6": -51.32039601735155, - "c7": -29.76467742235351 + "points": { + "c1": 36.1751605218754, + "c2": 22.574528354733644, + "c3": -36.85774071478174, + "c4": 37.64383302150762, + "c5": -41.4542786394025, + "c6": 3.5305498310167067, + "c7": -25.490853845842665 }, - "vertexSeeds": { - "c1": 10.884101931101235, - "c2": 11.743394694055477, - "c3": 11.509793952251098, - "c4": 12.18378078894482, - "c5": 12.875204911074208, - "c6": 12.794997824768538, - "c7": 10.67305009654488 + "offsets": { + "c1": 22.62135922330097, + "c2": 19.389736477115118, + "c3": 16.158113730929266, + "c4": 12.926490984743412, + "c5": 9.694868238557559, + "c6": 6.463245492371706, + "c7": 3.231622746185853 }, "rgb": [77, 76, 132] }, @@ -1248,23 +1248,23 @@ "year": 1587, "resistanceReported": true, "duration": 31881600, - "curveSeeds": { - "c1": 12.298929760817998, - "c2": 36.64268418589199, - "c3": 26.634918967064344, - "c4": -22.301857432210507, - "c5": 9.188913978931417, - "c6": 27.80738660548888, - "c7": 13.712689294460056 + "points": { + "c1": -7.654092695466915, + "c2": 45.1390812723831, + "c3": 4.013857536898321, + "c4": -30.213145577117167, + "c5": -21.471636335169343, + "c6": 1.7110726648286558, + "c7": 9.564608801056288 }, - "vertexSeeds": { - "c1": 6.155295146849491, - "c2": 5.993081399787938, - "c3": 5.5679604330709545, - "c4": 6.75971066632774, - "c5": 6.508598011606279, - "c6": 5.832960313967466, - "c7": 5.618160623159616 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -1275,23 +1275,23 @@ "year": 1588, "resistanceReported": false, "duration": 51235200, - "curveSeeds": { - "c1": -29.47745199879396, - "c2": 57.9541280806348, - "c3": -28.672664657128607, - "c4": -3.532643219991506, - "c5": -35.593888468040284, - "c6": 28.008916923211956, - "c7": 53.019814835348356 + "points": { + "c1": 36.27399786109119, + "c2": -43.772977273059595, + "c3": -43.32853601934616, + "c4": -7.300241539126134, + "c5": -43.027974876137506, + "c6": -34.59732220760831, + "c7": 30.48158031073642 }, - "vertexSeeds": { - "c1": 8.046983068211809, - "c2": 7.08058930132692, - "c3": 7.484506381292503, - "c4": 7.444016576496315, - "c5": 7.851199033948077, - "c6": 8.256876246627028, - "c7": 8.280853931295635 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140078, + "c3": 10.425335182616736, + "c4": 8.340268146093386, + "c5": 6.255201109570044, + "c6": 4.170134073046693, + "c7": 2.0850670365233417 }, "rgb": [58, 15, 49] }, @@ -1302,23 +1302,23 @@ "year": 1587, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 7.781635320197708, - "c2": 24.838965806546874, - "c3": 15.934781645104472, - "c4": -16.5492184061232, - "c5": -8.726101070572238, - "c6": -3.701790950567215, - "c7": 28.034602781564352 + "points": { + "c1": -24.08271037103262, + "c2": -24.99737230601513, + "c3": -12.96782562896265, + "c4": 4.941433071170884, + "c5": 26.651986101836684, + "c6": -14.259205634717354, + "c7": -28.228052769675482 }, - "vertexSeeds": { - "c1": 7.529605317770751, - "c2": 6.810475696646641, - "c3": 7.2252758096636, - "c4": 7.752342037968573, - "c5": 6.987132292481073, - "c6": 7.1895337348254, - "c7": 6.980498905883261 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [222, 0, 59] }, @@ -1329,23 +1329,23 @@ "year": 1588, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -19.157749856221315, - "c2": -2.695766541885469, - "c3": -3.602160353620608, - "c4": -24.05920706782747, - "c5": -6.5377914277558205, - "c6": -6.66912382371947, - "c7": 10.17583391589094 + "points": { + "c1": -13.722698556607527, + "c2": -27.284241361965353, + "c3": 2.7691242021903655, + "c4": 26.338816426046463, + "c5": 19.47280100228575, + "c6": 9.58622789771804, + "c7": 12.861957708091886 }, - "vertexSeeds": { - "c1": 6.911243094309894, - "c2": 7.019853050393788, - "c3": 6.763626831993496, - "c4": 7.451874363114945, - "c5": 7.314933027500025, - "c6": 6.480067210517136, - "c7": 6.912507535699026 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766987, + "c3": 9.061488673139156, + "c4": 7.249190938511331, + "c5": 5.436893203883498, + "c6": 3.6245954692556657, + "c7": 1.8122977346278328 }, "rgb": [222, 0, 59] }, @@ -1356,23 +1356,23 @@ "year": 1588, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -39.68390857582295, - "c2": 21.222575775829533, - "c3": 23.04075141585711, - "c4": 30.83009830752801, - "c5": -17.202814326168838, - "c6": -9.093009436633992, - "c7": 0.07982028120539297 + "points": { + "c1": -39.213770619043, + "c2": 4.7135181800195625, + "c3": 23.064067509676555, + "c4": 7.892050453444114, + "c5": 7.8791084657054, + "c6": -24.95609554337759, + "c7": -43.60113317421986 }, - "vertexSeeds": { - "c1": 4.8130142939449865, - "c2": 5.03913832586842, - "c3": 5.436798794073546, - "c4": 4.760516397181635, - "c5": 5.116631794529487, - "c6": 4.799445320379687, - "c7": 5.275655091261091 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [238, 201, 159] }, @@ -1383,23 +1383,23 @@ "year": 1589, "resistanceReported": false, "duration": 45792000, - "curveSeeds": { - "c1": 37.441212564951265, - "c2": -51.47696912419573, - "c3": 23.519116942374545, - "c4": 37.090787755579775, - "c5": 53.70820905054796, - "c6": 13.655636093759902, - "c7": 26.092008399576905 + "points": { + "c1": -21.68057461099942, + "c2": -59.647417635217494, + "c3": -46.51015981526006, + "c4": 0.5833847895449153, + "c5": 37.586747276982784, + "c6": -19.041691060382433, + "c7": -5.88384257731132 }, - "vertexSeeds": { - "c1": 4.537520959161611, - "c2": 4.998172226189378, - "c3": 4.502162282041813, - "c4": 4.539802378525559, - "c5": 4.981446309753792, - "c6": 5.35983825944592, - "c7": 5.398344559924238 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583912, + "c3": 6.6574202496532635, + "c4": 5.325936199722603, + "c5": 3.9944521497919543, + "c6": 2.6629680998613043, + "c7": 1.3314840499306544 }, "rgb": [238, 201, 159] }, @@ -1410,23 +1410,23 @@ "year": 1589, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": -32.07248134163965, - "c2": 40.60873205463561, - "c3": -50.815521571418394, - "c4": -43.298731042002075, - "c5": 19.290886924224594, - "c6": 22.104238212705695, - "c7": -5.131031122128157 + "points": { + "c1": -6.001575401339892, + "c2": 38.474783836696744, + "c3": 27.517637314440478, + "c4": 27.76331145281523, + "c5": 17.0477487718788, + "c6": -24.592348774928528, + "c7": -23.373679284963448 }, - "vertexSeeds": { - "c1": 6.95444147045308, - "c2": 7.462778935480799, - "c3": 6.812124994888343, - "c4": 6.791295799488209, - "c5": 7.071941067372578, - "c6": 6.489032426201399, - "c7": 7.312817465487438 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847436, + "c3": 9.107720758206199, + "c4": 7.286176606564952, + "c5": 5.464632454923714, + "c6": 3.643088303282476, + "c7": 1.821544151641238 }, "rgb": [77, 76, 132] }, @@ -1437,23 +1437,23 @@ "year": 1589, "resistanceReported": false, "duration": 46915200, - "curveSeeds": { - "c1": -39.28497141765963, - "c2": 54.25039295015616, - "c3": 19.035598264781065, - "c4": -52.69859022170703, - "c5": -53.94256124885247, - "c6": -12.547554208317322, - "c7": -37.74248267241842 + "points": { + "c1": 14.968225410300029, + "c2": 29.628003653729415, + "c3": -24.50714303761996, + "c4": 28.054885875753293, + "c5": -58.71430594824355, + "c6": 19.033388952814626, + "c7": -19.801502214981923 }, - "vertexSeeds": { - "c1": 8.77492819993081, - "c2": 9.809666150730616, - "c3": 8.136718477976121, - "c4": 9.337686817118687, - "c5": 8.10451870499872, - "c6": 9.594063135617086, - "c7": 9.262065168681893 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352286, + "c3": 11.696717521960236, + "c4": 9.357374017568194, + "c5": 7.018030513176143, + "c6": 4.678687008784093, + "c7": 2.3393435043920507 }, "rgb": [222, 0, 59] }, @@ -1464,23 +1464,23 @@ "year": 1589, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": -22.45643348553185, - "c2": -24.925546396058902, - "c3": 38.44675390293456, - "c4": -32.75525430562233, - "c5": 28.746582393351943, - "c6": 5.944157704372238, - "c7": 26.41732981906837 + "points": { + "c1": -3.935953236637559, + "c2": -10.38444528937923, + "c3": -50.32802405598098, + "c4": -49.465663256150684, + "c5": 30.54168980127568, + "c6": -31.4158931580328, + "c7": -49.02872453707812 }, - "vertexSeeds": { - "c1": 9.273363564009326, - "c2": 9.69845046109417, - "c3": 7.882173712578617, - "c4": 8.666311466228546, - "c5": 8.261314544105565, - "c6": 9.455958490112259, - "c7": 8.676863129576814 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392513, + "c3": 11.719833564493754, + "c4": 9.375866851595006, + "c5": 7.0319001386962565, + "c6": 4.687933425797498, + "c7": 2.343966712898749 }, "rgb": [86, 146, 138] }, @@ -1491,23 +1491,23 @@ "year": 1589, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 1.422335308501637, - "c2": -31.643830273155032, - "c3": 11.119331350627803, - "c4": -41.401564923129776, - "c5": 21.688387340537105, - "c6": 39.48688153433331, - "c7": 22.955137418206917 + "points": { + "c1": -39.824992029609916, + "c2": 0.8955433018913723, + "c3": -21.781819251523302, + "c4": 32.623056405631445, + "c5": 43.41461694574433, + "c6": 15.742285742058115, + "c7": 41.7687533318104 }, - "vertexSeeds": { - "c1": 7.072087130398513, - "c2": 6.955784694187656, - "c3": 6.950549006774397, - "c4": 6.449349799495417, - "c5": 6.7724993655094154, - "c6": 6.919222715449111, - "c7": 6.907566243405347 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531207, + "c3": 9.500693481276006, + "c4": 7.600554785020805, + "c5": 5.7004160887656035, + "c6": 3.8002773925104023, + "c7": 1.9001386962552012 }, "rgb": [222, 0, 59] }, @@ -1518,23 +1518,23 @@ "year": 1588, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": -5.835283199577457, - "c2": 16.846340496464528, - "c3": -5.036226139883931, - "c4": -10.688565065901203, - "c5": 4.958085103903716, - "c6": -10.137079495413873, - "c7": -17.086298485213003 + "points": { + "c1": 21.796452208351894, + "c2": 15.638725854576734, + "c3": -21.462440792002926, + "c4": -20.21296484715703, + "c5": -17.784513587850057, + "c6": 13.621760443459351, + "c7": 11.087216044429752 }, - "vertexSeeds": { - "c1": 5.895110596185285, - "c2": 5.887395508460766, - "c3": 5.558453385717708, - "c4": 6.638591736418254, - "c5": 6.871364268667843, - "c6": 6.4425571592809225, - "c7": 6.55999693940611 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -1545,23 +1545,23 @@ "year": 1589, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 18.53498466615546, - "c2": 6.958558823750863, - "c3": -12.176117077590353, - "c4": -14.5292599654703, - "c5": -9.16881537169888, - "c6": -12.950715296359517, - "c7": -16.201440733032676 + "points": { + "c1": -24.457316081892568, + "c2": -3.2737054854244185, + "c3": 6.55734838269975, + "c4": 1.4067617889464294, + "c5": -18.406229010901626, + "c6": 10.464810473797407, + "c7": -10.592376980376713 }, - "vertexSeeds": { - "c1": 2.0022081860799035, - "c2": 2.196912881663124, - "c3": 2.280487206865061, - "c4": 2.33038223305399, - "c5": 2.2724336886819767, - "c6": 2.249474015634264, - "c7": 2.5594969392062557 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692557, + "c4": 2.588996763754045, + "c5": 1.941747572815534, + "c6": 1.2944983818770226, + "c7": 0.6472491909385113 }, "rgb": [238, 201, 159] }, @@ -1572,23 +1572,23 @@ "year": 1590, "resistanceReported": false, "duration": 45360000, - "curveSeeds": { - "c1": -36.13258460737381, - "c2": -50.94063554902055, - "c3": -58.68784728937769, - "c4": 26.431374272867252, - "c5": -19.98029955050597, - "c6": 44.2930090134926, - "c7": -30.03946332802216 + "points": { + "c1": 8.508999640096356, + "c2": 48.761569378473546, + "c3": -23.310595189850105, + "c4": 6.589706527628799, + "c5": -11.280190445731598, + "c6": 47.705791247612716, + "c7": -17.63836641931063 }, - "vertexSeeds": { - "c1": 4.0458616421467415, - "c2": 4.712344887849783, - "c3": 4.9396824799636265, - "c4": 4.205927181701835, - "c5": 4.455890026108287, - "c6": 4.718442587101584, - "c7": 4.911245550105146 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457701, + "c3": 6.010171058714747, + "c4": 4.8081368469718, + "c5": 3.6061026352288477, + "c6": 2.4040684234859, + "c7": 1.2020342117429523 }, "rgb": [238, 201, 159] }, @@ -1599,23 +1599,23 @@ "year": 1590, "resistanceReported": false, "duration": 49075200, - "curveSeeds": { - "c1": 57.78010088195703, - "c2": -2.1398098425350582, - "c3": -55.78232974377866, - "c4": -19.59074343708275, - "c5": 54.05956865838444, - "c6": 6.579083392987009, - "c7": 60.31836653740171 + "points": { + "c1": -64.67913436202564, + "c2": -3.0016321704440756, + "c3": 48.548320944909975, + "c4": 43.752858231957546, + "c5": -42.00960586682818, + "c6": -17.455286677250086, + "c7": -65.45956739098183 }, - "vertexSeeds": { - "c1": 6.107275474298992, - "c2": 5.587002275157828, - "c3": 5.899534547026927, - "c4": 5.851580223051948, - "c5": 5.412809610372115, - "c6": 6.185232022111403, - "c7": 5.812944006611165 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876565, + "c3": 7.9750346740638, + "c4": 6.380027739251043, + "c5": 4.785020804438278, + "c6": 3.1900138696255214, + "c7": 1.5950069348127565 }, "rgb": [238, 201, 159] }, @@ -1626,23 +1626,23 @@ "year": 1590, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -45.651390128541145, - "c2": 11.328910889999676, - "c3": 12.866970201009039, - "c4": 22.22146641598451, - "c5": 29.577004125223013, - "c6": 44.87297873040262, - "c7": 50.724545757470594 + "points": { + "c1": -49.08898594552983, + "c2": 23.97935411459777, + "c3": -41.80573603348756, + "c4": 18.137577712790574, + "c5": -19.866744162997833, + "c6": -27.98865838132261, + "c7": -52.58086886648609 }, - "vertexSeeds": { - "c1": 5.442685226786356, - "c2": 5.021847600503258, - "c3": 4.708222695862251, - "c4": 4.6622231534428495, - "c5": 4.6494205826723265, - "c6": 5.384294112203214, - "c7": 4.913809218504788 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704577, + "c3": 6.726768377253814, + "c4": 5.381414701803049, + "c5": 4.036061026352286, + "c6": 2.6907073509015222, + "c7": 1.3453536754507636 }, "rgb": [222, 0, 59] }, @@ -1653,23 +1653,23 @@ "year": 1590, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": 41.62283184046509, - "c2": 6.3754512213570536, - "c3": 16.256364952410685, - "c4": -29.86894106395931, - "c5": 26.41286371823977, - "c6": 25.782956770971317, - "c7": -24.26929146655197 + "points": { + "c1": 26.871856494289652, + "c2": -7.866369733579482, + "c3": -48.68117313069588, + "c4": 16.36905111094861, + "c5": -18.80728026184338, + "c6": 57.218898251275796, + "c7": -13.16325676167213 }, - "vertexSeeds": { - "c1": 3.963921993897344, - "c2": 4.0772058288710245, - "c3": 3.9314205292044444, - "c4": 4.018367802166132, - "c5": 4.318678304071345, - "c6": 3.75342133235929, - "c7": 3.709753553454972 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251039, + "c3": 5.316689782709202, + "c4": 4.25335182616736, + "c5": 3.190013869625522, + "c6": 2.12667591308368, + "c7": 1.0633379565418377 }, "rgb": [86, 146, 138] }, @@ -1680,23 +1680,23 @@ "year": 1591, "resistanceReported": false, "duration": 70070400, - "curveSeeds": { - "c1": 57.165281681319115, - "c2": 50.615545564634445, - "c3": 11.76295741968626, - "c4": -80.75863173315015, - "c5": -59.60606807304692, - "c6": -6.648226602625172, - "c7": 15.799530862499395 + "points": { + "c1": -65.73900400754263, + "c2": -27.23947562892797, + "c3": -34.564661468110174, + "c4": 69.80958058013375, + "c5": -42.14453413938102, + "c6": -75.9232146539261, + "c7": 28.814660169771273 }, - "vertexSeeds": { - "c1": 6.192766037346615, - "c2": 5.9938407934851625, - "c3": 6.632280336698601, - "c4": 5.632308756707346, - "c5": 6.872229802463597, - "c6": 6.162715629064535, - "c7": 6.716315612583637 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318997, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567729993, + "c7": 1.6458622283865043 }, "rgb": [238, 201, 159] }, @@ -1707,23 +1707,23 @@ "year": 1590, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": 7.971727090930237, - "c2": -17.46393835211482, - "c3": 8.670971678385062, - "c4": -11.339406569793985, - "c5": 12.83142105363667, - "c6": 5.8848802731349465, - "c7": -17.06858569363442 + "points": { + "c1": -5.005892559755701, + "c2": -3.388087920331312, + "c3": 15.253956381475138, + "c4": -11.346642579123877, + "c5": -0.6046630917873195, + "c6": 17.443423934382924, + "c7": -8.494612720380555 }, - "vertexSeeds": { - "c1": 6.3499473637592425, - "c2": 6.220236358398605, - "c3": 5.476294105123832, - "c4": 5.843769648389342, - "c5": 6.416427839391877, - "c6": 5.644884496354897, - "c7": 5.493325437692854 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [58, 15, 49] }, @@ -1734,23 +1734,23 @@ "year": 1591, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -36.98629540587672, - "c2": -1.6745307537720322, - "c3": -22.453948266796687, - "c4": 6.063395008316519, - "c5": -5.939142398038626, - "c6": 4.382852253912972, - "c7": -14.738608341459916 + "points": { + "c1": -30.78709722969126, + "c2": 30.95557335432028, + "c3": 8.280808957090535, + "c4": -26.892381672852245, + "c5": 29.765578904344608, + "c6": 19.560719019366196, + "c7": 6.426620488097555 }, - "vertexSeeds": { - "c1": 7.324244023764993, - "c2": 7.294776397152834, - "c3": 7.883053869841157, - "c4": 7.897979783598214, - "c5": 7.869691930963753, - "c6": 8.114855250289784, - "c7": 8.797291327829026 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662964, + "c3": 10.725843735552475, + "c4": 8.580674988441976, + "c5": 6.4355062413314865, + "c6": 4.290337494220988, + "c7": 2.1451687471104894 }, "rgb": [86, 146, 138] }, @@ -1761,23 +1761,23 @@ "year": 1593, "resistanceReported": false, "duration": 83808000, - "curveSeeds": { - "c1": 73.8348675567117, - "c2": 95.96022278600206, - "c3": 10.021156512035219, - "c4": -10.278924466817443, - "c5": 93.53825864025744, - "c6": -51.22234668362157, - "c7": 18.58734956690121 + "points": { + "c1": 84.68418543033629, + "c2": -40.91513516679461, + "c3": -96.85244958352327, + "c4": 38.90703443683044, + "c5": -28.0938483409315, + "c6": -16.41420084950049, + "c7": 28.418738275930806 }, - "vertexSeeds": { - "c1": 5.826140422089245, - "c2": 6.327136679498276, - "c3": 6.369177042872841, - "c4": 6.323932030887461, - "c5": 5.196971925585879, - "c6": 5.1862110851552625, - "c7": 5.704801050528412 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [222, 0, 59] }, @@ -1788,23 +1788,23 @@ "year": 1593, "resistanceReported": false, "duration": 69897600, - "curveSeeds": { - "c1": -64.20762689404091, - "c2": -38.62324118559515, - "c3": 26.371650642225475, - "c4": 23.77755847391022, - "c5": -34.363240910344864, - "c6": -60.28374608166375, - "c7": 29.169128863851128 + "points": { + "c1": 14.509373161694924, + "c2": 32.055386853403604, + "c3": -19.4349135685261, + "c4": -45.67192787224492, + "c5": 40.01777780767239, + "c6": 9.897002930397036, + "c7": 16.562626706354365 }, - "vertexSeeds": { - "c1": 5.890241875231172, - "c2": 6.522726098548583, - "c3": 6.588000782736343, - "c4": 6.89469602257887, - "c5": 7.2114023124737185, - "c6": 5.984231735328897, - "c7": 6.3175834760568215 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736938, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.513638465094777, + "c7": 1.7568192325473933 }, "rgb": [77, 76, 132] }, @@ -1815,23 +1815,23 @@ "year": 1593, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": 17.14470559713895, - "c2": 31.33396244996416, - "c3": 37.646414098562644, - "c4": -15.726739159101868, - "c5": 78.38139906372282, - "c6": -34.85988148198601, - "c7": -19.394484576202103 + "points": { + "c1": 12.898051149193563, + "c2": -48.142092697599665, + "c3": -46.84747996431886, + "c4": 67.04534573438494, + "c5": -10.566561297127848, + "c6": 76.17030252152512, + "c7": 54.092887474465414 }, - "vertexSeeds": { - "c1": 7.524288113815587, - "c2": 8.20162052158278, - "c3": 7.433372462888142, - "c4": 7.372044684803165, - "c5": 7.551093374015526, - "c6": 8.77920347345842, - "c7": 7.221680382254054 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662964, + "c3": 10.725843735552475, + "c4": 8.580674988441976, + "c5": 6.4355062413314865, + "c6": 4.290337494220988, + "c7": 2.1451687471104894 }, "rgb": [238, 201, 159] }, @@ -1842,23 +1842,23 @@ "year": 1594, "resistanceReported": false, "duration": 124761600, - "curveSeeds": { - "c1": 140.72238181138727, - "c2": 82.56725338293586, - "c3": 61.198506265410856, - "c4": -92.4481055863705, - "c5": 90.92767181171371, - "c6": -127.768074959365, - "c7": -52.719750589906596 + "points": { + "c1": 79.55835384860924, + "c2": -22.35947069186689, + "c3": -112.82585943588127, + "c4": -62.41704274409409, + "c5": -73.97142942763219, + "c6": -105.71965834020173, + "c7": 64.13534814735294 }, - "vertexSeeds": { - "c1": 6.101296986092102, - "c2": 6.13399991350798, - "c3": 6.079335449229035, - "c4": 5.731470134794058, - "c5": 5.212416867049289, - "c6": 5.475070364406493, - "c7": 5.522138812706592 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.4664817383263955, + "c4": 5.973185390661114, + "c5": 4.479889042995833, + "c6": 2.9865926953305526, + "c7": 1.4932963476652716 }, "rgb": [58, 15, 49] }, @@ -1869,23 +1869,23 @@ "year": 1595, "resistanceReported": false, "duration": 129859200, - "curveSeeds": { - "c1": 64.32645169331212, - "c2": 55.953272452107456, - "c3": 17.23293341558835, - "c4": -149.62444583659394, - "c5": 8.674525516363389, - "c6": 54.76218169858109, - "c7": -37.10382199791955 + "points": { + "c1": -46.71230097108466, + "c2": 83.58930773149206, + "c3": 135.18759745499187, + "c4": 20.251815737506575, + "c5": -52.39806221541576, + "c6": -102.1182613120705, + "c7": -153.9480473592734 }, - "vertexSeeds": { - "c1": 7.384843270509137, - "c2": 7.268896438662166, - "c3": 6.676018566901252, - "c4": 7.139309552680065, - "c5": 7.330572263290975, - "c6": 7.430253060340429, - "c7": 7.496529677807223 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [238, 201, 159] }, @@ -1896,23 +1896,23 @@ "year": 1593, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": -47.36159492013088, - "c2": 29.465840072209353, - "c3": 45.45201110498939, - "c4": -8.710090426721884, - "c5": 15.463118245368413, - "c6": -36.28176303730028, - "c7": 36.90836268503946 + "points": { + "c1": 13.253663821460172, + "c2": -30.82171962928292, + "c3": -36.32699246017372, + "c4": -54.849721791932595, + "c5": -26.37014021489612, + "c6": 51.35322111052985, + "c7": -55.20503229146034 }, - "vertexSeeds": { - "c1": 5.6743222146702195, - "c2": 5.334659962750265, - "c3": 6.5332846789765995, - "c4": 6.494850961434449, - "c5": 5.531943118459807, - "c6": 6.354600442053126, - "c7": 6.081132965492745 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635226, + "c3": 7.836338418862688, + "c4": 6.269070735090148, + "c5": 4.701803051317609, + "c6": 3.13453536754507, + "c7": 1.5672676837725301 }, "rgb": [58, 15, 49] }, @@ -1923,23 +1923,23 @@ "year": 1593, "resistanceReported": false, "duration": 51062400, - "curveSeeds": { - "c1": 7.926224414623178, - "c2": 12.649806379931633, - "c3": 62.08465012248378, - "c4": -27.020891551645605, - "c5": -18.90559910323053, - "c6": -5.08865501436248, - "c7": 35.01115586571629 + "points": { + "c1": 60.08784436004156, + "c2": 3.707597491064462, + "c3": -1.5473372323807695, + "c4": -23.389825508694358, + "c5": -30.90397887542474, + "c6": -67.10023049785607, + "c7": 37.85683254227145 }, - "vertexSeeds": { - "c1": 5.716561013111157, - "c2": 6.340024094862469, - "c3": 5.7154216788124454, - "c4": 5.857802002614107, - "c5": 5.900681780270168, - "c6": 6.51322001974173, - "c7": 6.411470543785836 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957002, + "c3": 8.021266759130832, + "c4": 6.417013407304671, + "c5": 4.812760055478501, + "c6": 3.208506703652331, + "c7": 1.6042533518261701 }, "rgb": [77, 76, 132] }, @@ -1950,23 +1950,23 @@ "year": 1593, "resistanceReported": false, "duration": 44841600, - "curveSeeds": { - "c1": -38.86951182334307, - "c2": -25.413367900932407, - "c3": -12.227665309706971, - "c4": 30.979212617285953, - "c5": 27.535623566490514, - "c6": -8.001009030971858, - "c7": 35.40556613068527 + "points": { + "c1": 41.46350367066398, + "c2": -4.903596060224778, + "c3": 41.24315815565217, + "c4": -6.35910353307532, + "c5": -36.07977697992922, + "c6": -40.66712545682883, + "c7": -32.122965989695096 }, - "vertexSeeds": { - "c1": 0.7818733072662456, - "c2": 0.9235032150500723, - "c3": 0.9194029335242764, - "c4": 0.8867595600441678, - "c5": 0.8962025604063554, - "c6": 0.7800626139639117, - "c7": 0.807535010221921 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.3869625520110953, + "c3": 1.1558021266759135, + "c4": 0.9246417013407305, + "c5": 0.6934812760055477, + "c6": 0.4623208506703647, + "c7": 0.23116042533518294 }, "rgb": [77, 76, 132] }, @@ -1977,23 +1977,23 @@ "year": 1594, "resistanceReported": false, "duration": 69984000, - "curveSeeds": { - "c1": 10.311378823755916, - "c2": -0.13263990043297724, - "c3": 57.78534654916707, - "c4": 80.98986486695323, - "c5": 44.45145489541086, - "c6": 4.9914799388946705, - "c7": 22.512203422696473 + "points": { + "c1": -6.93054499223507, + "c2": -79.12750695871219, + "c3": -10.534396369015482, + "c4": 70.78842933194902, + "c5": -59.72091589570595, + "c6": -86.72657287031718, + "c7": -67.45574224840544 }, - "vertexSeeds": { - "c1": 5.780433288201246, - "c2": 5.361708493460525, - "c3": 5.931519210421532, - "c4": 6.159115094759366, - "c5": 6.297663651635146, - "c6": 6.21795209433774, - "c7": 5.118363907182694 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [58, 15, 49] }, @@ -2004,23 +2004,23 @@ "year": 1594, "resistanceReported": false, "duration": 71366400, - "curveSeeds": { - "c1": 32.1166064782723, - "c2": -33.33684073205355, - "c3": -64.63463057767117, - "c4": 46.66965044581643, - "c5": 30.275757695762465, - "c6": -68.47661904163829, - "c7": -69.68831267650738 + "points": { + "c1": -66.8120244226688, + "c2": -61.123856574566865, + "c3": -88.20154986006233, + "c4": -51.98470098045148, + "c5": 46.061998638597956, + "c6": -84.02490167645472, + "c7": -60.160554076373124 }, - "vertexSeeds": { - "c1": 0.8859073223682663, - "c2": 0.8764187763386931, - "c3": 0.8703090249255724, - "c4": 0.8526868845842951, - "c5": 0.9439341448188532, - "c6": 0.7963432687143669, - "c7": 0.9219981457795683 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.3869625520110953, + "c3": 1.1558021266759135, + "c4": 0.9246417013407305, + "c5": 0.6934812760055477, + "c6": 0.4623208506703647, + "c7": 0.23116042533518294 }, "rgb": [238, 201, 159] }, @@ -2031,23 +2031,23 @@ "year": 1593, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": 17.103319891796758, - "c2": -50.76956965112687, - "c3": -43.96302840908186, - "c4": 41.41519131982308, - "c5": 15.428022635018849, - "c6": 38.042831202382246, - "c7": 15.980263367263404 + "points": { + "c1": -47.611401780970915, + "c2": -19.1662654166554, + "c3": 13.804862818891536, + "c4": 51.00275935114256, + "c5": -2.311572823203008, + "c6": -13.85607250441415, + "c7": -54.479290648005794 }, - "vertexSeeds": { - "c1": 5.896439443712553, - "c2": 6.391548975685264, - "c3": 6.208206349830632, - "c4": 5.785978644836775, - "c5": 5.872946721274402, - "c6": 6.612787894058306, - "c7": 6.604873333862043 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -2058,23 +2058,23 @@ "year": 1593, "resistanceReported": false, "duration": 47433600, - "curveSeeds": { - "c1": -48.360631256706014, - "c2": 19.55596144689474, - "c3": 24.45395535835833, - "c4": -33.09627047423427, - "c5": -32.350860646273716, - "c6": -34.36106910875225, - "c7": -30.37438463840326 + "points": { + "c1": -1.849788636616914, + "c2": 18.447068145089204, + "c3": -38.84972909146411, + "c4": -56.74883426577164, + "c5": 56.89667304901353, + "c6": -24.147368705649427, + "c7": -48.46024447566998 }, - "vertexSeeds": { - "c1": 5.255265510689753, - "c2": 5.5988043585391685, - "c3": 5.942481681742443, - "c4": 5.216871724534042, - "c5": 5.944535566189964, - "c6": 4.815195586264903, - "c7": 5.790375238855851 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.16597318539066, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.866389274156266, + "c7": 1.4331946370781283 }, "rgb": [58, 15, 49] }, @@ -2085,23 +2085,23 @@ "year": 1593, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": 9.464455811712881, - "c2": 43.39892274242895, - "c3": -45.466162610512974, - "c4": -22.755220551422568, - "c5": -35.4830933879666, - "c6": 10.163438913651888, - "c7": -10.32329714196021 + "points": { + "c1": -1.5078535190897, + "c2": 38.102769462976994, + "c3": 37.2813616457278, + "c4": -22.262194879637384, + "c5": -10.375455322559901, + "c6": 26.0823017637028, + "c7": -28.095139468724234 }, - "vertexSeeds": { - "c1": 6.967059500976219, - "c2": 6.7277148365444575, - "c3": 6.1514027445198, - "c4": 6.613907424236405, - "c5": 6.156485858297416, - "c6": 5.679052416508336, - "c7": 6.163883751882874 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [222, 0, 59] }, @@ -2112,23 +2112,23 @@ "year": 1593, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": -49.4349137511926, - "c2": -56.467353601354496, - "c3": 19.378451899795884, - "c4": -52.18749658466435, - "c5": -0.12486011629226113, - "c6": -39.20158443711202, - "c7": 28.01401235042993 + "points": { + "c1": -58.39667533207097, + "c2": -26.08011816920267, + "c3": -41.80075029390367, + "c4": -10.178555769821266, + "c5": -56.28772162156422, + "c6": -34.48929050392033, + "c7": -36.24411120076397 }, - "vertexSeeds": { - "c1": 6.778491777601596, - "c2": 6.246156407748643, - "c3": 6.038241999594145, - "c4": 5.674774343657134, - "c5": 6.207902930796855, - "c6": 6.146888164372596, - "c7": 6.035780065776316 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519183, + "c5": 4.923717059639392, + "c6": 3.2824780397595914, + "c7": 1.6412390198798004 }, "rgb": [77, 76, 132] }, @@ -2139,23 +2139,23 @@ "year": 1593, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": 1.0070884966508515, - "c2": -44.10372613600252, - "c3": -48.28763768090656, - "c4": 29.918077333064453, - "c5": 49.490334048291494, - "c6": -29.082039819586203, - "c7": -12.782652617648267 + "points": { + "c1": -10.176620255118173, + "c2": -38.20793286347727, + "c3": -55.38935976491511, + "c4": -52.048621295699704, + "c5": -41.23531800599373, + "c6": 56.996720561776264, + "c7": 38.28011316438867 }, - "vertexSeeds": { - "c1": 5.7923573563184805, - "c2": 5.697681307577639, - "c3": 5.986331003904046, - "c4": 6.4521980043518194, - "c5": 6.2396609314831375, - "c6": 6.137377875164195, - "c7": 6.473808162073372 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [222, 0, 59] }, @@ -2166,23 +2166,23 @@ "year": 1594, "resistanceReported": false, "duration": 43459200, - "curveSeeds": { - "c1": -4.193915325334025, - "c2": -51.18522051648808, - "c3": -1.3595494074971484, - "c4": 0.06892660795903538, - "c5": -4.645403248340791, - "c6": 18.8789497770653, - "c7": -14.483385258923477 + "points": { + "c1": 59.52306050056359, + "c2": 4.326526774173182, + "c3": -4.91710678185251, + "c4": -1.328610316868108, + "c5": 1.6734432682522424, + "c6": 10.468667359703574, + "c7": 10.00504542092078 }, - "vertexSeeds": { - "c1": 0.06547351804958473, - "c2": 0.07696136438474134, - "c3": 0.058348093142081885, - "c4": 0.05969535939653338, - "c5": 0.07124175229120994, - "c6": 0.06882457581576772, - "c7": 0.06926896895749005 + "offsets": { + "c1": 0.16181229773462785, + "c2": 0.13869625520110954, + "c3": 0.11558021266759134, + "c4": 0.09246417013407301, + "c5": 0.06934812760055484, + "c6": 0.04623208506703651, + "c7": 0.023116042533518327 }, "rgb": [77, 76, 132] }, @@ -2193,23 +2193,23 @@ "year": 1594, "resistanceReported": false, "duration": 43891200, - "curveSeeds": { - "c1": 25.114712093316086, - "c2": -29.93874462978902, - "c3": 43.35415345656753, - "c4": 9.875800328247578, - "c5": -4.9049258451009194, - "c6": 20.540394424943727, - "c7": -43.90998472072609 + "points": { + "c1": -27.89267252167769, + "c2": 13.51116672083819, + "c3": 47.328312432726094, + "c4": 17.108454458741278, + "c5": 36.41564850696466, + "c6": -38.54120203745975, + "c7": 19.540686440294877 }, - "vertexSeeds": { - "c1": 4.684514547667591, - "c2": 4.153956010982207, - "c3": 4.00336039751816, - "c4": 4.9039115169335625, - "c5": 4.052856939478991, - "c6": 4.2353595794153, - "c7": 4.873228724308854 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.07350901525659, + "c3": 5.894590846047156, + "c4": 4.715672676837726, + "c5": 3.536754507628295, + "c6": 2.3578363384188603, + "c7": 1.1789181692094302 }, "rgb": [86, 146, 138] }, @@ -2220,23 +2220,23 @@ "year": 1594, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 7.987308103222627, - "c2": 23.260920872604256, - "c3": -3.1206490434061074, - "c4": 18.682998430203146, - "c5": -1.151085932212986, - "c6": 21.198784858682583, - "c7": 24.11349050120864 + "points": { + "c1": -20.028412557112325, + "c2": 4.8945656370484905, + "c3": -27.5861451626516, + "c4": -14.45762421916135, + "c5": 15.828903752504598, + "c6": 13.877430175735416, + "c7": -25.11927195186634 }, - "vertexSeeds": { - "c1": 0.6257877965072182, - "c2": 0.616663325423321, - "c3": 0.6264727722130025, - "c4": 0.6057453673134263, - "c5": 0.6203091607647806, - "c6": 0.6688378952175901, - "c7": 0.5901334729089353 + "offsets": { + "c1": 1.2297734627831716, + "c2": 1.0540915395284325, + "c3": 0.8784096162736937, + "c4": 0.7027276930189559, + "c5": 0.5270457697642168, + "c6": 0.35136384650947794, + "c7": 0.17568192325473897 }, "rgb": [86, 146, 138] }, @@ -2247,23 +2247,23 @@ "year": 1595, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -28.842852896420585, - "c2": -25.553294872598688, - "c3": -25.503184222002016, - "c4": -4.038048269121809, - "c5": -30.087478249028234, - "c6": -1.8274698164263228, - "c7": 44.04194455142236 + "points": { + "c1": 44.857940797681806, + "c2": -39.93037352066857, + "c3": -8.533086073199016, + "c4": -23.000847930567822, + "c5": -24.051874734342878, + "c6": 3.0667304524581525, + "c7": 18.06137496298645 }, - "vertexSeeds": { - "c1": 4.8292670229983194, - "c2": 5.617251466060259, - "c3": 5.530846094971949, - "c4": 5.204571860932541, - "c5": 4.720116378692982, - "c6": 4.907558095970499, - "c7": 4.6890108079205906 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905692, + "c3": 6.842348589921405, + "c4": 5.47387887193712, + "c5": 4.105409153952843, + "c6": 2.736939435968562, + "c7": 1.368469717984281 }, "rgb": [222, 0, 59] }, @@ -2274,23 +2274,23 @@ "year": 1595, "resistanceReported": false, "duration": 45619200, - "curveSeeds": { - "c1": 18.02504152338942, - "c2": 45.67807243540193, - "c3": 36.15323375534909, - "c4": 59.11788635735125, - "c5": 4.753834918895066, - "c6": 54.4797829754785, - "c7": -57.955968522795295 + "points": { + "c1": 42.71718984857371, + "c2": -35.655466484047494, + "c3": -21.8834338806954, + "c4": 53.73532878303968, + "c5": 57.59679044704964, + "c6": 48.337337969955996, + "c7": 37.70503916919125 }, - "vertexSeeds": { - "c1": 5.275273082620377, - "c2": 5.917248825713523, - "c3": 5.854156951423557, - "c4": 5.915430730918008, - "c5": 5.566830677654495, - "c6": 5.691739980529561, - "c7": 5.755457208904223 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [77, 76, 132] }, @@ -2301,23 +2301,23 @@ "year": 1595, "resistanceReported": false, "duration": 48816000, - "curveSeeds": { - "c1": -56.90409499969127, - "c2": -30.046477705089615, - "c3": -44.441478724648555, - "c4": 59.808975937840295, - "c5": 58.08227958311857, - "c6": -9.89979953906711, - "c7": 3.147880440964265 + "points": { + "c1": 38.97960941654118, + "c2": -43.39171785384007, + "c3": 1.700621794673765, + "c4": 25.791163241206277, + "c5": 8.756798585839434, + "c6": -49.79992877711333, + "c7": 60.92231932618827 }, - "vertexSeeds": { - "c1": 5.021830529447123, - "c2": 5.3002934891259645, - "c3": 5.9476876823475315, - "c4": 5.400578199660407, - "c5": 4.990417770980892, - "c6": 5.9827786325652905, - "c7": 5.835459396532356 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [222, 0, 59] }, @@ -2328,23 +2328,23 @@ "year": 1595, "resistanceReported": false, "duration": 49507200, - "curveSeeds": { - "c1": -19.863686391342654, - "c2": -60.91313349860915, - "c3": -34.70209646312246, - "c4": 31.75189688845721, - "c5": 39.80017363187969, - "c6": -55.61396657183261, - "c7": 57.46298642511705 + "points": { + "c1": -56.682996695901466, + "c2": -45.79888765627716, + "c3": -20.667504220261108, + "c4": 31.598880154771464, + "c5": 44.28308570294995, + "c6": 63.45332098625585, + "c7": -0.2829921844363099 }, - "vertexSeeds": { - "c1": 5.529425364726274, - "c2": 5.7913239756177814, - "c3": 5.705173643409463, - "c4": 5.9728450760451555, - "c5": 5.9531449837067685, - "c6": 6.113586859876812, - "c7": 5.6806452147368685 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [222, 0, 59] }, @@ -2355,23 +2355,23 @@ "year": 1595, "resistanceReported": false, "duration": 56246400, - "curveSeeds": { - "c1": 27.73218643126299, - "c2": -12.426762953538514, - "c3": -53.85962122262082, - "c4": 39.66565787908006, - "c5": 10.749167356367238, - "c6": -32.12274753732752, - "c7": -32.14480994903901 + "points": { + "c1": 48.910622523672785, + "c2": -21.023044836800246, + "c3": -12.440543203334805, + "c4": 3.580604320296544, + "c5": -18.5236000705926, + "c6": 37.39013051146701, + "c7": -32.218475991560204 }, - "vertexSeeds": { - "c1": 4.686008548561616, - "c2": 4.650099258997878, - "c3": 4.560619495263187, - "c4": 5.1612004610498134, - "c5": 5.108260025958393, - "c6": 5.067736089551211, - "c7": 5.3016668693201 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [86, 146, 138] }, @@ -2382,23 +2382,23 @@ "year": 1595, "resistanceReported": false, "duration": 59097600, - "curveSeeds": { - "c1": -67.83519901143688, - "c2": -14.06431395706312, - "c3": 55.97473008818429, - "c4": -47.5783149096855, - "c5": 43.18051971372971, - "c6": 9.281466969232113, - "c7": -6.709889855484803 + "points": { + "c1": 65.80309200018146, + "c2": 40.56705079497151, + "c3": 30.30992959301055, + "c4": 43.4318164223738, + "c5": 10.107990870894739, + "c6": -59.10062986477378, + "c7": -59.27334014911581 }, - "vertexSeeds": { - "c1": 10.030755991034264, - "c2": 9.76552419205758, - "c3": 11.967625796921642, - "c4": 10.321525690230695, - "c5": 11.393034819647559, - "c6": 10.36011665092604, - "c7": 10.051275085762663 + "offsets": { + "c1": 20.097087378640776, + "c2": 17.226074895977803, + "c3": 14.35506241331483, + "c4": 11.484049930651873, + "c5": 8.613037447988901, + "c6": 5.742024965325927, + "c7": 2.8710124826629735 }, "rgb": [86, 146, 138] }, @@ -2409,23 +2409,23 @@ "year": 1596, "resistanceReported": false, "duration": 72662400, - "curveSeeds": { - "c1": 33.34984604993201, - "c2": -71.35483528618364, - "c3": 71.80385706850844, - "c4": -64.01918727833474, - "c5": -39.50641768406188, - "c6": -48.63000756866203, - "c7": -2.449915665011602 + "points": { + "c1": 49.931282544358325, + "c2": -45.68163672132699, + "c3": -21.717311007519655, + "c4": 52.60941972133578, + "c5": -18.166436980086687, + "c6": -27.7549086848028, + "c7": -8.106471023031247 }, - "vertexSeeds": { - "c1": 6.182104822874064, - "c2": 6.165161046715839, - "c3": 6.470141277431573, - "c4": 5.650616563698617, - "c5": 5.43543318156672, - "c6": 5.60267682939418, - "c7": 6.513004744943336 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [58, 15, 49] }, @@ -2436,23 +2436,23 @@ "year": 1596, "resistanceReported": false, "duration": 68774400, - "curveSeeds": { - "c1": 33.771292642021294, - "c2": 63.00238594308456, - "c3": 13.816930024061605, - "c4": -53.360311544819524, - "c5": -8.778475630629544, - "c6": -57.038447862092504, - "c7": -10.8776965499478 + "points": { + "c1": 83.24384001621968, + "c2": -1.266641388740183, + "c3": 33.89948769513941, + "c4": 32.00522781873208, + "c5": -53.15002331902609, + "c6": -82.83809482658161, + "c7": -27.943804587650945 }, - "vertexSeeds": { - "c1": 3.7274373787575823, - "c2": 5.372853017122636, - "c3": 4.589199755714512, - "c4": 3.8613914384161965, - "c5": 4.7423218644999094, - "c6": 3.923555140273729, - "c7": 4.67877792516975 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596394, + "c3": 3.791030975496995, + "c4": 3.0328247803975956, + "c5": 2.2746185852981973, + "c6": 1.5164123901987978, + "c7": 0.7582061950993984 }, "rgb": [222, 0, 59] }, @@ -2463,23 +2463,23 @@ "year": 1595, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 22.02101820518456, - "c2": -5.328179396211262, - "c3": -27.873035881990937, - "c4": 6.1547004007803, - "c5": -29.258828995794886, - "c6": 24.439843443337494, - "c7": 3.4430950623242182 + "points": { + "c1": 30.157255336746587, + "c2": 30.740688559883864, + "c3": 14.154566835825094, + "c4": -42.761101932402894, + "c5": -41.9356672162438, + "c6": -9.681355742491668, + "c7": -25.72596820221755 }, - "vertexSeeds": { - "c1": 4.463274715554518, - "c2": 4.440015621020191, - "c3": 4.443726278063172, - "c4": 4.621009994488877, - "c5": 4.937707044228444, - "c6": 5.00952487132991, - "c7": 4.943152626279293 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221913, + "c3": 6.449375866851592, + "c4": 5.159500693481277, + "c5": 3.8696255201109566, + "c6": 2.579750346740636, + "c7": 1.2898751733703204 }, "rgb": [222, 0, 59] }, @@ -2490,23 +2490,23 @@ "year": 1595, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 14.307485452037064, - "c2": -31.128487727283513, - "c3": 11.563737554284401, - "c4": 29.896663415594162, - "c5": -11.919878805859206, - "c6": -16.665290992433714, - "c7": -41.25837608542508 + "points": { + "c1": -37.17005868950207, + "c2": -43.095788521925115, + "c3": 32.584757647856236, + "c4": 42.25049126760109, + "c5": -23.11516121255383, + "c6": 16.43312820848586, + "c7": 39.065020025549245 }, - "vertexSeeds": { - "c1": 6.011116600393215, - "c2": 5.651315823993078, - "c3": 6.770904765129881, - "c4": 5.713685630255213, - "c5": 6.029735555773009, - "c6": 6.706091931912639, - "c7": 5.579568873993021 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519183, + "c5": 4.923717059639392, + "c6": 3.2824780397595914, + "c7": 1.6412390198798004 }, "rgb": [58, 15, 49] }, @@ -2517,23 +2517,23 @@ "year": 1595, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 33.92953711412968, - "c2": -0.13559698152716493, - "c3": 37.91397578476013, - "c4": 19.287014424777098, - "c5": -24.58690355870127, - "c6": -1.4209999858582236, - "c7": -2.793070181766055 + "points": { + "c1": -38.999484787225455, + "c2": 3.357495703162563, + "c3": -34.10451561195336, + "c4": 10.41255933339361, + "c5": 43.70467013541495, + "c6": 40.07851300584178, + "c7": 33.16238350736028 }, - "vertexSeeds": { - "c1": 4.757322761189813, - "c2": 4.512611260792628, - "c3": 4.039477476504947, - "c4": 4.914433816717533, - "c5": 4.029174749370005, - "c6": 4.012790219444181, - "c7": 4.916336332632168 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.10124826629681, + "c3": 5.917706888580673, + "c4": 4.734165510864539, + "c5": 3.550624133148405, + "c6": 2.3670827554322673, + "c7": 1.1835413777161337 }, "rgb": [77, 76, 132] }, @@ -2544,23 +2544,23 @@ "year": 1596, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": 47.27513501446861, - "c2": -18.35528937960664, - "c3": 22.97271739448656, - "c4": 11.861050601740708, - "c5": -33.458250731573244, - "c6": 15.601328304149668, - "c7": -5.918730325662146 + "points": { + "c1": -18.205807972665795, + "c2": 55.58630755815829, + "c3": -10.23770354113455, + "c4": -56.85406746798832, + "c5": -52.29143827870009, + "c6": 50.75378533857312, + "c7": 56.38021249836614 }, - "vertexSeeds": { - "c1": 5.169712260542868, - "c2": 4.8341531084448635, - "c3": 4.827443240118673, - "c4": 5.386906483446718, - "c5": 5.472751287750148, - "c6": 5.21630829965401, - "c7": 4.936144078088871 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905692, + "c3": 6.842348589921405, + "c4": 5.47387887193712, + "c5": 4.105409153952843, + "c6": 2.736939435968562, + "c7": 1.368469717984281 }, "rgb": [86, 146, 138] }, @@ -2571,23 +2571,23 @@ "year": 1597, "resistanceReported": false, "duration": 64454400, - "curveSeeds": { - "c1": -79.98975724883438, - "c2": 25.785458933830725, - "c3": 76.23734696533722, - "c4": 40.55785795184582, - "c5": -11.600147882462451, - "c6": 62.297622961799476, - "c7": -80.14838210916616 + "points": { + "c1": 64.5914837006097, + "c2": 15.732666232889287, + "c3": -52.61098528418592, + "c4": -37.78701747898634, + "c5": -7.381735018583726, + "c6": -6.385065891814094, + "c7": 40.097414087101356 }, - "vertexSeeds": { - "c1": 6.3582766144607685, - "c2": 6.12703340750656, - "c3": 6.732043542178107, - "c4": 6.260876824865091, - "c5": 6.226347701549188, - "c6": 5.733113851365321, - "c7": 6.510999987676584 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519183, + "c5": 4.923717059639392, + "c6": 3.2824780397595914, + "c7": 1.6412390198798004 }, "rgb": [238, 201, 159] }, @@ -2598,23 +2598,23 @@ "year": 1596, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": -47.33092648588658, - "c2": -26.38653556309983, - "c3": 49.40643953525749, - "c4": -10.89214405680898, - "c5": 42.26155817803783, - "c6": 37.196170534032774, - "c7": -42.450021510312766 + "points": { + "c1": -11.716740037697633, + "c2": -18.481029016313443, + "c3": 29.35367190384767, + "c4": 48.024018809855335, + "c5": -43.05478699264546, + "c6": -25.020522776173273, + "c7": -46.94407079699525 }, - "vertexSeeds": { - "c1": 5.9684103495056995, - "c2": 6.567333833504104, - "c3": 6.9491064467823405, - "c4": 5.874854263754308, - "c5": 6.207642520180516, - "c6": 5.8135660641887545, - "c7": 6.220162484587647 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [77, 76, 132] }, @@ -2625,23 +2625,23 @@ "year": 1596, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 40.21160717282135, - "c2": 2.013757795039062, - "c3": -1.3900883369530277, - "c4": -35.9455696728156, - "c5": 30.517584429360205, - "c6": 34.45958457324436, - "c7": 34.63353831760478 + "points": { + "c1": -36.89411149365177, + "c2": -43.84231198524841, + "c3": -30.812721852019244, + "c4": 32.71285845711936, + "c5": -5.756783344816121, + "c6": 29.847462588440585, + "c7": -38.88871575267028 }, - "vertexSeeds": { - "c1": 7.142973806367663, - "c2": 7.390430668642031, - "c3": 7.079773972909231, - "c4": 6.591585251867706, - "c5": 7.203565796034213, - "c6": 7.847500553150317, - "c7": 7.722171667163651 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [238, 201, 159] }, @@ -2652,23 +2652,23 @@ "year": 1596, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 44.437005665857264, - "c2": -3.82093422485967, - "c3": 45.95436229169922, - "c4": -46.03713583675534, - "c5": -9.453972564357308, - "c6": 8.213206312318782, - "c7": 47.66880348583681 + "points": { + "c1": -31.894068498502136, + "c2": -40.931053095608, + "c3": 12.253003802784526, + "c4": 45.965058111873226, + "c5": -29.371730333336192, + "c6": 42.201124392587154, + "c7": -2.200544193781454 }, - "vertexSeeds": { - "c1": 5.476872231338576, - "c2": 6.001371013712952, - "c3": 5.982200915937727, - "c4": 6.351848173666889, - "c5": 6.514637966726021, - "c6": 6.192724930707556, - "c7": 6.193708608498863 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [77, 76, 132] }, @@ -2679,23 +2679,23 @@ "year": 1596, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 25.995134963883793, - "c2": 8.53924998267837, - "c3": 9.286071437640409, - "c4": -39.945028847076664, - "c5": -1.7678867101048112, - "c6": -41.97417253486496, - "c7": 2.889388001792213 + "points": { + "c1": -15.643438100559877, + "c2": 22.096535283484037, + "c3": 19.711634445850628, + "c4": 30.536448716160855, + "c5": -41.418696940512945, + "c6": 43.324570471468114, + "c7": -2.013951074769622 }, - "vertexSeeds": { - "c1": 7.944119047958865, - "c2": 7.205380007258251, - "c3": 7.345496128831474, - "c4": 6.844980945818226, - "c5": 7.081232704090716, - "c6": 6.498267906078821, - "c7": 7.078149093123268 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772537, + "c3": 9.639389736477119, + "c4": 7.711511789181693, + "c5": 5.783633841886268, + "c6": 3.855755894590851, + "c7": 1.9278779472954255 }, "rgb": [222, 0, 59] }, @@ -2706,23 +2706,23 @@ "year": 1596, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 18.537056075984694, - "c2": 7.011846137497656, - "c3": 28.25439616260161, - "c4": -25.785996965955476, - "c5": 20.174470944898523, - "c6": 17.512685380251547, - "c7": 4.887940651803881 + "points": { + "c1": 0.7993598467132799, + "c2": -3.635993408895704, + "c3": -13.695209192347448, + "c4": -20.856247113234687, + "c5": -13.876763283025287, + "c6": -1.8058498495556705, + "c7": -25.963149093461364 }, - "vertexSeeds": { - "c1": 5.942628339966689, - "c2": 5.950737735693577, - "c3": 6.434174864463324, - "c4": 5.752886002726399, - "c5": 5.601865137131209, - "c6": 6.424096440712342, - "c7": 6.426544299094171 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [58, 15, 49] }, @@ -2733,23 +2733,23 @@ "year": 1596, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": -35.60686916331437, - "c2": 36.47672918969947, - "c3": -35.829108108788205, - "c4": -28.84265628077362, - "c5": -36.170513362962595, - "c6": -18.889307020336542, - "c7": 35.97908734305875 + "points": { + "c1": 18.582391000773697, + "c2": 30.12927257152171, + "c3": -30.458420399646865, + "c4": 46.14193039060213, + "c5": 20.906561677992258, + "c6": 49.43508273238591, + "c7": 40.275795132929545 }, - "vertexSeeds": { - "c1": 7.854881109212675, - "c2": 7.05519998907858, - "c3": 6.89934487838388, - "c4": 7.6021587202750585, - "c5": 6.639467641584359, - "c6": 7.476683616320023, - "c7": 7.647246186405134 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852986, + "c3": 9.68562182154415, + "c4": 7.748497457235323, + "c5": 5.811373092926488, + "c6": 3.8742487286176615, + "c7": 1.9371243643088354 }, "rgb": [86, 146, 138] }, @@ -2760,23 +2760,23 @@ "year": 1596, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -19.153201110603767, - "c2": 30.142189204859896, - "c3": -35.85812278722848, - "c4": 8.700216333370314, - "c5": 12.407124090551605, - "c6": -21.403903703466636, - "c7": 12.372941685266575 + "points": { + "c1": 26.356085695111098, + "c2": -34.824901909160744, + "c3": 22.06883902062578, + "c4": -35.98971549972573, + "c5": -44.39008948307794, + "c6": 45.48557370601947, + "c7": 27.155258228407753 }, - "vertexSeeds": { - "c1": 8.769680917048056, - "c2": 9.459258182802293, - "c3": 8.017170239066695, - "c4": 7.797861549859923, - "c5": 7.715893517758501, - "c6": 8.869039426161303, - "c7": 9.519206632785135 + "offsets": { + "c1": 16.116504854368934, + "c2": 13.814147018030512, + "c3": 11.5117891816921, + "c4": 9.209431345353678, + "c5": 6.907073509015256, + "c6": 4.604715672676844, + "c7": 2.302357836338422 }, "rgb": [77, 76, 132] }, @@ -2787,23 +2787,23 @@ "year": 1597, "resistanceReported": false, "duration": 59875200, - "curveSeeds": { - "c1": -5.122324165265539, - "c2": 47.66563564872894, - "c3": -33.273527260311596, - "c4": -25.50264702788128, - "c5": -43.9349822353326, - "c6": 57.713880843237575, - "c7": -11.279367450374522 + "points": { + "c1": -64.76929063215293, + "c2": 2.8447651959022267, + "c3": -65.99604570802495, + "c4": -44.11954323435036, + "c5": 5.062989343787663, + "c6": -71.85218324475872, + "c7": -56.281887079617846 }, - "vertexSeeds": { - "c1": 7.883519553421523, - "c2": 7.022676070062069, - "c3": 7.95910163314425, - "c4": 7.235619272334805, - "c5": 6.894311977108566, - "c6": 6.92642623057751, - "c7": 8.307125386629187 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295425, + "c3": 9.939898289412856, + "c4": 7.951918631530277, + "c5": 5.963938973647707, + "c6": 3.9759593157651385, + "c7": 1.9879796578825693 }, "rgb": [86, 146, 138] }, @@ -2814,23 +2814,23 @@ "year": 1600, "resistanceReported": false, "duration": 156211200, - "curveSeeds": { - "c1": 37.13935078786915, - "c2": 124.77325610396895, - "c3": 46.892467112051804, - "c4": -57.60447400470824, - "c5": -130.76386873234262, - "c6": -74.8089972666764, - "c7": 14.24496407224845 + "points": { + "c1": -26.41647012194801, + "c2": 43.46901029453275, + "c3": 175.47496376195437, + "c4": -141.05665114849532, + "c5": 60.76745402368897, + "c6": -75.82418620986408, + "c7": -44.43089894275096 }, - "vertexSeeds": { - "c1": 7.864699577387144, - "c2": 7.514847424461775, - "c3": 6.886243731883515, - "c4": 6.9303712939735265, - "c5": 7.2809325699351835, - "c6": 7.308245670347206, - "c7": 6.431048767053301 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [222, 0, 59] }, @@ -2841,23 +2841,23 @@ "year": 1597, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 1.798008607201922, - "c2": -5.74576699753942, - "c3": -30.689099781367588, - "c4": -36.79652660213523, - "c5": -6.009006520784389, - "c6": 40.98460143634701, - "c7": -45.53373724938631 + "points": { + "c1": -8.954521472365848, + "c2": 9.152208735363487, + "c3": -26.022623785413284, + "c4": 15.042358969053673, + "c5": -0.8505280488605607, + "c6": 39.689361432784246, + "c7": 21.438142746133757 }, - "vertexSeeds": { - "c1": 6.400637278524082, - "c2": 7.24764159895166, - "c3": 7.222646360100943, - "c4": 6.278830392927395, - "c5": 7.0761869249980895, - "c6": 6.904349501073975, - "c7": 7.546296102097411 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766987, + "c3": 9.061488673139156, + "c4": 7.249190938511331, + "c5": 5.436893203883498, + "c6": 3.6245954692556657, + "c7": 1.8122977346278328 }, "rgb": [238, 201, 159] }, @@ -2868,23 +2868,23 @@ "year": 1596, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": -2.053480867920296, - "c2": 19.391800329594076, - "c3": -7.532094540583124, - "c4": -5.244407513463454, - "c5": 2.9272325864044078, - "c6": -3.390200240616739, - "c7": 18.567873428456565 + "points": { + "c1": -9.260816902935135, + "c2": -4.5033225970928825, + "c3": 11.401235231184536, + "c4": -6.230344843807053, + "c5": -16.85746695581895, + "c6": 9.832590426082145, + "c7": 19.964840118147244 }, - "vertexSeeds": { - "c1": 9.181428104887095, - "c2": 9.187657896979367, - "c3": 8.065000566815096, - "c4": 8.67415404951379, - "c5": 8.187109925967526, - "c6": 8.722605432784867, - "c7": 8.734197598996236 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.14701803051318, + "c3": 11.789181692094312, + "c4": 9.431345353675452, + "c5": 7.07350901525659, + "c6": 4.715672676837721, + "c7": 2.3578363384188603 }, "rgb": [77, 76, 132] }, @@ -2895,23 +2895,23 @@ "year": 1597, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -45.35212421086166, - "c2": 22.011468587960294, - "c3": 44.19233269371779, - "c4": 0.8073334100875158, - "c5": 17.540858046603375, - "c6": 44.03564355670336, - "c7": -30.059891604751318 + "points": { + "c1": 14.512246385778056, + "c2": 49.999012088957244, + "c3": 41.924431456988884, + "c4": 21.059248309747332, + "c5": 16.290711778779396, + "c6": -5.844303954290865, + "c7": -43.11758305381658 }, - "vertexSeeds": { - "c1": 7.71758818934875, - "c2": 8.702745395942289, - "c3": 8.768647538757062, - "c4": 8.355520793674788, - "c5": 7.08987936164882, - "c6": 8.404359212289702, - "c7": 8.834288040355668 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.649098474341194, + "c3": 10.540915395284332, + "c4": 8.43273231622746, + "c5": 6.324549237170597, + "c6": 4.216366158113734, + "c7": 2.1081830790568628 }, "rgb": [238, 201, 159] }, @@ -2922,23 +2922,23 @@ "year": 1596, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 30.047337901159295, - "c2": -3.749509307341903, - "c3": -13.152454750439706, - "c4": -28.958108595885804, - "c5": 14.402588364687873, - "c6": 30.34252261371617, - "c7": -31.336603525027794 + "points": { + "c1": -7.942702777477308, + "c2": -17.281771115922815, + "c3": -21.87074527542578, + "c4": 36.79885746668927, + "c5": -38.90759614011235, + "c6": -15.491802634061518, + "c7": -24.42806994981747 }, - "vertexSeeds": { - "c1": 6.2454519136603, - "c2": 5.90354321153542, - "c3": 5.990059247798931, - "c4": 5.681057851846888, - "c5": 5.344797329674877, - "c6": 5.704144198253206, - "c7": 5.575037437451401 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [86, 146, 138] }, @@ -2949,23 +2949,23 @@ "year": 1597, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 32.913258828406015, - "c2": 29.07800366251172, - "c3": -11.12230299827208, - "c4": -24.036003023942374, - "c5": -11.854872225036601, - "c6": -13.806473323532462, - "c7": 6.542550011905746 + "points": { + "c1": 0.005908902323682241, + "c2": -41.52576533938302, + "c3": 13.914879945889595, + "c4": -34.65676494452758, + "c5": -21.025002145438986, + "c6": -2.2633568426578776, + "c7": 36.55884180912703 }, - "vertexSeeds": { - "c1": 7.0281620888704435, - "c2": 7.538384470266316, - "c3": 8.187557290764534, - "c4": 8.299105097870076, - "c5": 7.416255608952228, - "c6": 7.9721832159695145, - "c7": 7.291731551063157 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697644, + "c3": 10.17105871474803, + "c4": 8.136846971798425, + "c5": 6.102635228848822, + "c6": 4.068423485899218, + "c7": 2.0342117429496045 }, "rgb": [77, 76, 132] }, @@ -2976,23 +2976,23 @@ "year": 1597, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": -33.69619319711829, - "c2": 7.549828701854402, - "c3": 17.316316221426362, - "c4": 25.54887292585444, - "c5": -15.548614716058722, - "c6": -4.863631788252874, - "c7": -40.77553560832674 + "points": { + "c1": -15.540564459372092, + "c2": -28.07337541315085, + "c3": -30.375282445716664, + "c4": -22.056066499903633, + "c5": 39.60459025314772, + "c6": -37.61096605901087, + "c7": -36.271752710311276 }, - "vertexSeeds": { - "c1": 7.237940312229931, - "c2": 8.720532159682644, - "c3": 7.363660885985749, - "c4": 7.94717341780979, - "c5": 7.516272972864447, - "c6": 8.460991745123449, - "c7": 7.756928056853875 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421638, + "c3": 10.587147480351359, + "c4": 8.469717984281088, + "c5": 6.352288488210819, + "c6": 4.23485899214054, + "c7": 2.11742949607027 }, "rgb": [222, 0, 59] }, @@ -3003,23 +3003,23 @@ "year": 1597, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -8.786553072256048, - "c2": 15.13185052667751, - "c3": -38.914013285944144, - "c4": 29.09625924989645, - "c5": -41.08632585973462, - "c6": -27.254989621233875, - "c7": 48.8742865934223 + "points": { + "c1": -28.754769998257004, + "c2": -43.53589247514234, + "c3": 50.96451142749369, + "c4": 4.75357337718318, + "c5": 46.01565690694679, + "c6": 20.701067015309945, + "c7": 43.45460833165562 }, - "vertexSeeds": { - "c1": 8.366335182719935, - "c2": 9.237951987461308, - "c3": 9.10439698514233, - "c4": 7.876125975588283, - "c5": 7.9091429344173765, - "c6": 8.300531223628118, - "c7": 7.716692416651781 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346745, + "c3": 11.118816458622282, + "c4": 8.89505316689783, + "c5": 6.671289875173377, + "c6": 4.447526583448915, + "c7": 2.223763291724462 }, "rgb": [77, 76, 132] }, @@ -3030,23 +3030,23 @@ "year": 1597, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": 18.503345318355805, - "c2": 42.96026170762604, - "c3": 43.773452105339125, - "c4": -48.02572495744564, - "c5": 8.770417184008927, - "c6": 9.816796300547061, - "c7": -32.704639040116604 + "points": { + "c1": -41.263907093551424, + "c2": -46.93583599006805, + "c3": 21.98497568923947, + "c4": 9.422782952939563, + "c5": 41.20193339395322, + "c6": 49.15024246085073, + "c7": -12.03251427019984 }, - "vertexSeeds": { - "c1": 6.4357486542267885, - "c2": 6.343972102065167, - "c3": 5.994208745044782, - "c4": 6.7308266240178405, - "c5": 6.327621028119241, - "c6": 6.739212934264659, - "c7": 7.354083159388834 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871017, + "c4": 7.101248266296811, + "c5": 5.325936199722606, + "c6": 3.55062413314841, + "c7": 1.775312066574205 }, "rgb": [77, 76, 132] }, @@ -3057,23 +3057,23 @@ "year": 1597, "resistanceReported": false, "duration": 44841600, - "curveSeeds": { - "c1": 40.66481000139042, - "c2": 25.169962262824967, - "c3": 14.036768450570307, - "c4": 20.430535894689925, - "c5": -40.04752653716654, - "c6": 57.12230147361444, - "c7": -58.55497449429481 + "points": { + "c1": 59.362678908317235, + "c2": -29.6304119484403, + "c3": -18.720589230271315, + "c4": -37.55247984808945, + "c5": 56.720113036790025, + "c6": 31.397281174022368, + "c7": -59.59218431252336 }, - "vertexSeeds": { - "c1": 8.391736754311149, - "c2": 10.05505236868995, - "c3": 9.780542543404172, - "c4": 9.109196683645175, - "c5": 9.108387368460525, - "c6": 8.81103245651162, - "c7": 9.861005773930126 + "offsets": { + "c1": 17.216828478964402, + "c2": 14.757281553398066, + "c3": 12.29773462783171, + "c4": 9.838187702265374, + "c5": 7.378640776699028, + "c6": 4.919093851132682, + "c7": 2.459546925566346 }, "rgb": [238, 201, 159] }, @@ -3084,23 +3084,23 @@ "year": 1599, "resistanceReported": false, "duration": 94867200, - "curveSeeds": { - "c1": 33.914410676409915, - "c2": -51.804325590046986, - "c3": 16.19051883944644, - "c4": -80.67505228484396, - "c5": 87.53792772142228, - "c6": -74.91148494689408, - "c7": 4.624169749195644 + "points": { + "c1": 44.48096621606808, + "c2": 22.574571269047254, + "c3": -106.65097084076996, + "c4": 111.9207997125709, + "c5": 61.91248541406625, + "c6": 108.49914413469921, + "c7": 21.004735331756706 }, - "vertexSeeds": { - "c1": 6.304987359084959, - "c2": 5.992878572397043, - "c3": 6.605341846380357, - "c4": 5.9145502145121975, - "c5": 6.155461142094292, - "c6": 5.69335539042149, - "c7": 6.6236766729607695 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [58, 15, 49] }, @@ -3111,23 +3111,23 @@ "year": 1598, "resistanceReported": false, "duration": 74304000, - "curveSeeds": { - "c1": -12.60806566974415, - "c2": -86.86381953220577, - "c3": -53.16373118871431, - "c4": -25.65372648457678, - "c5": 59.824595001557654, - "c6": -74.52679503717802, - "c7": 85.79280505414694 + "points": { + "c1": -7.179568347240107, + "c2": 5.894802215220338, + "c3": 11.35884286783319, + "c4": -25.16632911446021, + "c5": 31.0992422601081, + "c6": 70.02551844782509, + "c7": 47.357673447530615 }, - "vertexSeeds": { - "c1": 7.14129133440127, - "c2": 6.203494529944928, - "c3": 6.490959378267919, - "c4": 6.8507853955753815, - "c5": 6.413973733383498, - "c6": 6.878424629252851, - "c7": 6.15765960802418 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [86, 146, 138] }, @@ -3138,23 +3138,23 @@ "year": 1597, "resistanceReported": false, "duration": 47606400, - "curveSeeds": { - "c1": 15.042267777354006, - "c2": -27.39726020917402, - "c3": 45.35640774163752, - "c4": 50.2467372600215, - "c5": 49.18244426786311, - "c6": 6.619667899798948, - "c7": 53.701039653410454 + "points": { + "c1": -44.13748368058534, + "c2": -46.67037693718049, + "c3": 21.188367165620292, + "c4": -61.49289333745999, + "c5": 57.30888714826892, + "c6": -39.79222417658528, + "c7": 46.03644753632567 }, - "vertexSeeds": { - "c1": 5.956554316199628, - "c2": 6.300803741222372, - "c3": 6.038302337873446, - "c4": 5.801713156427238, - "c5": 5.912819954792565, - "c6": 5.938343744290959, - "c7": 5.52101402526549 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [86, 146, 138] }, @@ -3165,23 +3165,23 @@ "year": 1597, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -4.718905279470892, - "c2": -27.970325229965994, - "c3": 18.270738104313978, - "c4": -11.943329646984076, - "c5": 3.645886013127125, - "c6": -18.26449069880971, - "c7": -5.049077704818988 + "points": { + "c1": -12.549615087035008, + "c2": -1.933166468100076, + "c3": 3.1995714681375063, + "c4": -23.4179031621917, + "c5": -32.49202139302633, + "c6": 28.871169252235077, + "c7": 9.250585790507841 }, - "vertexSeeds": { - "c1": 6.9975491590097585, - "c2": 6.9449782015873085, - "c3": 6.969032158448183, - "c4": 6.793758270687868, - "c5": 6.4503285874753695, - "c6": 6.681421076292087, - "c7": 6.083253301906491 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [86, 146, 138] }, @@ -3192,23 +3192,23 @@ "year": 1597, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 0.7549711809006752, - "c2": -14.041212855323707, - "c3": 28.22392422268772, - "c4": -7.6124340702958335, - "c5": -10.603933402396162, - "c6": -29.429172643815647, - "c7": 2.2062085019453903 + "points": { + "c1": 10.742626055066033, + "c2": -14.640514503703155, + "c3": -27.748138212534545, + "c4": -15.276878389877048, + "c5": -22.533681099166408, + "c6": 3.5552043508193876, + "c7": -33.08270485568401 }, - "vertexSeeds": { - "c1": 7.354508389164515, - "c2": 6.6300114483717625, - "c3": 6.28215193524774, - "c4": 6.2407126448018415, - "c5": 6.945476817864286, - "c6": 7.141791289027921, - "c7": 7.016711898718913 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871017, + "c4": 7.101248266296811, + "c5": 5.325936199722606, + "c6": 3.55062413314841, + "c7": 1.775312066574205 }, "rgb": [86, 146, 138] }, @@ -3219,23 +3219,23 @@ "year": 1597, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 7.3149643529944655, - "c2": 7.163254464591148, - "c3": -6.188713369533211, - "c4": -20.827518690569136, - "c5": -15.11786264972734, - "c6": 11.402195064438175, - "c7": 28.507505697930384 + "points": { + "c1": 16.519598259877398, + "c2": -18.251677280620246, + "c3": -23.866358383686507, + "c4": 0.044428280858255675, + "c5": -13.452470933025026, + "c6": 28.825159668045686, + "c7": 27.46965518104679 }, - "vertexSeeds": { - "c1": 7.430598045955037, - "c2": 6.622580748366516, - "c3": 6.400158891288339, - "c4": 7.768992090874792, - "c5": 6.676013327176521, - "c6": 7.152611787871163, - "c7": 7.965484441686412 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571427, + "c3": 9.523809523809518, + "c4": 7.61904761904762, + "c5": 5.7142857142857135, + "c6": 3.8095238095238058, + "c7": 1.9047619047618984 }, "rgb": [222, 0, 59] }, @@ -3246,23 +3246,23 @@ "year": 1598, "resistanceReported": false, "duration": 47347200, - "curveSeeds": { - "c1": -15.378270231719618, - "c2": 49.89558224670523, - "c3": 26.345642290082665, - "c4": 43.375665606980704, - "c5": -51.47654810325673, - "c6": -12.750015741781752, - "c7": -41.496411447924785 + "points": { + "c1": 61.75481858906649, + "c2": 62.7495804806737, + "c3": 55.30886493775455, + "c4": 27.99890276699439, + "c5": -35.2765571149701, + "c6": 60.21458537540157, + "c7": -34.45777521064163 }, - "vertexSeeds": { - "c1": 5.727714111848819, - "c2": 5.644953565329758, - "c3": 5.941526079109743, - "c4": 6.856903775284522, - "c5": 6.081020015365122, - "c6": 6.803752610615433, - "c7": 6.700745458046034 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [222, 0, 59] }, @@ -3273,23 +3273,23 @@ "year": 1598, "resistanceReported": false, "duration": 45360000, - "curveSeeds": { - "c1": 21.64756284666624, - "c2": 21.17471665871917, - "c3": -40.213111540134, - "c4": -28.821430012635062, - "c5": 12.981540399231385, - "c6": -32.4012833356751, - "c7": -26.416905116656174 + "points": { + "c1": -3.6397914927292234, + "c2": -49.96459172182775, + "c3": -55.57411188549394, + "c4": -28.397621866601874, + "c5": -12.842038955421557, + "c6": -17.90905641623251, + "c7": 27.087119300759817 }, - "vertexSeeds": { - "c1": 9.31032394504143, - "c2": 9.149754931430655, - "c3": 8.503555738663934, - "c4": 8.92836406884942, - "c5": 7.826594394531314, - "c6": 8.543631744731494, - "c7": 7.761791359252499 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346745, + "c3": 11.118816458622282, + "c4": 8.89505316689783, + "c5": 6.671289875173377, + "c6": 4.447526583448915, + "c7": 2.223763291724462 }, "rgb": [58, 15, 49] }, @@ -3300,23 +3300,23 @@ "year": 1598, "resistanceReported": false, "duration": 62899200, - "curveSeeds": { - "c1": -40.69621447972184, - "c2": -31.437803122337577, - "c3": -60.18722533495458, - "c4": 41.19444329374328, - "c5": 73.25375667235244, - "c6": -69.12583698059677, - "c7": -12.312721463513213 + "points": { + "c1": -15.234355353300302, + "c2": 16.757878317984677, + "c3": 64.30343915165693, + "c4": -43.22751090425014, + "c5": -28.538921817845797, + "c6": -29.62734028303624, + "c7": -57.46737188967626 }, - "vertexSeeds": { - "c1": 6.982696424185916, - "c2": 7.034704687339813, - "c3": 7.636679009926909, - "c4": 8.481091707886893, - "c5": 7.3117001010863145, - "c6": 7.038835739046638, - "c7": 7.913463467626266 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657418, + "c3": 10.147942672214521, + "c4": 8.118354137771615, + "c5": 6.088765603328709, + "c6": 4.059177068885803, + "c7": 2.0295885344429063 }, "rgb": [77, 76, 132] }, @@ -3327,23 +3327,23 @@ "year": 1597, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -1.00877882221058, - "c2": -16.783013227634257, - "c3": 19.388638747762737, - "c4": 4.070009456575818, - "c5": 19.938679424999524, - "c6": 12.235829082268818, - "c7": 1.6131686722714846 + "points": { + "c1": -4.133163403499385, + "c2": -5.541397210732637, + "c3": -7.627811511666131, + "c4": 17.66422609858098, + "c5": -7.263195452149873, + "c6": 15.151143112894001, + "c7": -6.399498953596371 }, - "vertexSeeds": { - "c1": 6.902431150036623, - "c2": 6.241209639053067, - "c3": 6.730846347729926, - "c4": 7.171834808906572, - "c5": 6.622762082445075, - "c6": 5.97902370801185, - "c7": 6.233639931782215 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [238, 201, 159] }, @@ -3354,23 +3354,23 @@ "year": 1597, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 4.489203207504318, - "c2": -8.015451637834918, - "c3": -8.351674760612429, - "c4": 11.952827434878614, - "c5": 19.473144944674075, - "c6": 11.360050071309324, - "c7": -13.629981857881226 + "points": { + "c1": 21.187972636253264, + "c2": -21.867850989668085, + "c3": 15.53784608915808, + "c4": 2.2872245471088704, + "c5": 23.249313260604765, + "c6": -3.501384500925976, + "c7": 22.56928592307461 }, - "vertexSeeds": { - "c1": 6.74519542031916, - "c2": 5.751312376479745, - "c3": 5.899421099636714, - "c4": 5.6433810580206645, - "c5": 6.436972566567965, - "c6": 6.086666276414422, - "c7": 6.156294109565805 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318997, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567729993, + "c7": 1.6458622283865043 }, "rgb": [86, 146, 138] }, @@ -3381,23 +3381,23 @@ "year": 1597, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -18.78103826635328, - "c2": 14.57768909203256, - "c3": 4.254190407798667, - "c4": -9.485349279209492, - "c5": -5.614946841333779, - "c6": -7.787957476890444, - "c7": -6.598002434445675 + "points": { + "c1": 22.35072195046266, + "c2": -8.986907013350315, + "c3": 14.954451314071452, + "c4": 18.997283917887213, + "c5": 5.261264061966397, + "c6": 3.445392573920202, + "c7": 18.50197415902539 }, - "vertexSeeds": { - "c1": 6.546037968029596, - "c2": 6.618190784357409, - "c3": 6.906685399442449, - "c4": 6.11080787400212, - "c5": 6.943689967702549, - "c6": 7.113475784990918, - "c7": 6.692150764891751 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [58, 15, 49] }, @@ -3408,23 +3408,23 @@ "year": 1597, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -26.253369910954095, - "c2": -23.655663645378432, - "c3": -22.343938534529766, - "c4": 7.076564298449377, - "c5": 21.024890233816294, - "c6": -19.267621167480165, - "c7": -13.52796654435911 + "points": { + "c1": 17.96772115574163, + "c2": -9.841438195398467, + "c3": -26.590320870162977, + "c4": -13.001520764375943, + "c5": 24.485533660198236, + "c6": -2.7338898904712856, + "c7": -15.783614029330936 }, - "vertexSeeds": { - "c1": 8.234764110772888, - "c2": 9.30159351238022, - "c3": 9.295710117023464, - "c4": 8.906047768625543, - "c5": 8.22856144444796, - "c6": 8.310385325447351, - "c7": 9.287724298098722 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547851, + "c3": 11.23439667128987, + "c4": 8.987517337031898, + "c5": 6.740638002773926, + "c6": 4.493758668515953, + "c7": 2.2468793342579723 }, "rgb": [238, 201, 159] }, @@ -3435,23 +3435,23 @@ "year": 1598, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": -40.85917923178165, - "c2": 21.254454063361678, - "c3": -9.399075085340776, - "c4": 14.592409001841148, - "c5": 14.208305615030838, - "c6": 14.873319342355373, - "c7": 55.41367280212988 + "points": { + "c1": 15.39848141420336, + "c2": 31.722058436586323, + "c3": -17.401426707320347, + "c4": -14.019900815858982, + "c5": 30.94935952613612, + "c6": 23.879242189638504, + "c7": -55.87455577294593 }, - "vertexSeeds": { - "c1": 7.598735608581558, - "c2": 7.09971790000516, - "c3": 6.496059563382541, - "c4": 6.567486990247791, - "c5": 6.4939219233511345, - "c6": 7.860781630110271, - "c7": 7.1505465992026 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [58, 15, 49] }, @@ -3462,23 +3462,23 @@ "year": 1598, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": -4.341839242445026, - "c2": 33.6993810669431, - "c3": -11.507144612317823, - "c4": 36.671021445788476, - "c5": -1.9199273466871674, - "c6": 46.443836158961226, - "c7": 19.39709469725367 + "points": { + "c1": -0.7348699743459406, + "c2": 57.66620315002371, + "c3": -23.48038652081157, + "c4": 8.279299480217226, + "c5": 25.951800596156467, + "c6": 44.108355039010014, + "c7": 31.266828372175347 }, - "vertexSeeds": { - "c1": 5.9560646932268675, - "c2": 6.920467401024215, - "c3": 5.803308801558945, - "c4": 6.034430788737846, - "c5": 6.366788169896726, - "c6": 7.1258767624848565, - "c7": 6.692912773337321 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [77, 76, 132] }, @@ -3489,23 +3489,23 @@ "year": 1598, "resistanceReported": false, "duration": 43286400, - "curveSeeds": { - "c1": 29.69963891750853, - "c2": 16.642418420731126, - "c3": 8.269852242264598, - "c4": -8.488681558263934, - "c5": 45.687739725805365, - "c6": 54.121160985204675, - "c7": -43.783404107746136 + "points": { + "c1": 13.514312751518027, + "c2": 57.14536053083008, + "c3": 31.518656903041737, + "c4": 29.103528204842213, + "c5": 43.93125434741254, + "c6": 5.333529346119015, + "c7": 4.471258438778506 }, - "vertexSeeds": { - "c1": 6.326495536656997, - "c2": 6.395745062348823, - "c3": 5.387447075264664, - "c4": 5.7036421621204845, - "c5": 5.413207605106324, - "c6": 5.32829803355311, - "c7": 5.360075158847325 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [58, 15, 49] }, @@ -3516,23 +3516,23 @@ "year": 1597, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 20.299916359799454, - "c2": -8.259055921661732, - "c3": 6.126924531707171, - "c4": -12.493600080339046, - "c5": -6.693560570669396, - "c6": -0.3205984857664177, - "c7": 1.1177839704018027 + "points": { + "c1": -15.991410476661459, + "c2": -20.093641420974, + "c3": -15.362005199331131, + "c4": -13.59076846157822, + "c5": 16.68914193713581, + "c6": 21.99697828256224, + "c7": -17.875595417104517 }, - "vertexSeeds": { - "c1": 6.664134893787649, - "c2": 5.888365916089797, - "c3": 5.80471473686334, - "c4": 6.736687458219017, - "c5": 6.522026459145074, - "c6": 6.341004137032712, - "c7": 6.3013133405824115 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519183, + "c5": 4.923717059639392, + "c6": 3.2824780397595914, + "c7": 1.6412390198798004 }, "rgb": [58, 15, 49] }, @@ -3543,23 +3543,23 @@ "year": 1598, "resistanceReported": false, "duration": 51494400, - "curveSeeds": { - "c1": -60.30879275289575, - "c2": -3.450559682734607, - "c3": -31.915865700760364, - "c4": 61.42320744634833, - "c5": 49.2225124477708, - "c6": -42.73942648543971, - "c7": -54.532277739391404 + "points": { + "c1": -30.806363788300132, + "c2": 65.91744016422334, + "c3": 25.63672098019819, + "c4": 5.310164457517573, + "c5": -12.401059890235672, + "c6": -9.683858049769796, + "c7": -12.86668123499259 }, - "vertexSeeds": { - "c1": 8.41228037332719, - "c2": 7.084713899107963, - "c3": 8.09082177311765, - "c4": 8.251856155115295, - "c5": 7.7086130977899305, - "c6": 8.086202697220196, - "c7": 7.093013957098281 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657418, + "c3": 10.147942672214521, + "c4": 8.118354137771615, + "c5": 6.088765603328709, + "c6": 4.059177068885803, + "c7": 2.0295885344429063 }, "rgb": [86, 146, 138] }, @@ -3570,23 +3570,23 @@ "year": 1598, "resistanceReported": false, "duration": 43632000, - "curveSeeds": { - "c1": 43.73738957003223, - "c2": -6.985330396711561, - "c3": -24.589197081749056, - "c4": 32.1309934585943, - "c5": 13.3353372798205, - "c6": -4.693130554462066, - "c7": 16.736564732410848 + "points": { + "c1": -3.711412125254533, + "c2": -30.45975203625947, + "c3": 35.99363065783083, + "c4": -35.99808914773143, + "c5": 35.12249994532636, + "c6": 44.469283234112005, + "c7": -47.10648307862762 }, - "vertexSeeds": { - "c1": 7.951250048409216, - "c2": 7.772677764294624, - "c3": 8.321835602643057, - "c4": 8.320575502346518, - "c5": 8.127180084699573, - "c6": 7.794431437252263, - "c7": 6.981808165313636 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295425, + "c3": 9.939898289412856, + "c4": 7.951918631530277, + "c5": 5.963938973647707, + "c6": 3.9759593157651385, + "c7": 1.9879796578825693 }, "rgb": [77, 76, 132] }, @@ -3597,23 +3597,23 @@ "year": 1598, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -7.865625470975473, - "c2": -4.216276913768461, - "c3": -33.111425269261346, - "c4": 29.557576601199145, - "c5": 26.309993491828436, - "c6": 31.87556681661829, - "c7": 37.066083937491655 + "points": { + "c1": -30.337067954157924, + "c2": 14.162877677913144, + "c3": 14.513138688290276, + "c4": -0.3353261140802388, + "c5": 11.291542899218769, + "c6": 8.987024571706307, + "c7": -33.105936274825275 }, - "vertexSeeds": { - "c1": 8.351339865253243, - "c2": 7.988023896908913, - "c3": 8.438275599946378, - "c4": 8.94025948444776, - "c5": 7.6969696193366905, - "c6": 8.70549873495157, - "c7": 8.415399557411414 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708737, + "c3": 11.326860841423947, + "c4": 9.061488673139158, + "c5": 6.796116504854369, + "c6": 4.530744336569579, + "c7": 2.2653721682847894 }, "rgb": [58, 15, 49] }, @@ -3624,23 +3624,23 @@ "year": 1598, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -7.435823031460693, - "c2": -21.78933695617375, - "c3": -0.9019170247691832, - "c4": -42.59193479240109, - "c5": -4.9136155922718885, - "c6": -29.81401814860775, - "c7": 26.829531017602122 + "points": { + "c1": 24.55855285880952, + "c2": 12.149732462891919, + "c3": 16.05977858632609, + "c4": 19.09239015395822, + "c5": 19.57661302254735, + "c6": 24.483239999416185, + "c7": 15.842020751687322 }, - "vertexSeeds": { - "c1": 6.571192395345332, - "c2": 6.997168604716732, - "c3": 6.159605484238427, - "c4": 6.663498821136782, - "c5": 6.6555454402890435, - "c6": 6.537044510938331, - "c7": 6.693119364992723 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [238, 201, 159] }, @@ -3651,23 +3651,23 @@ "year": 1599, "resistanceReported": false, "duration": 50371200, - "curveSeeds": { - "c1": -58.10564344273165, - "c2": -16.590900152306894, - "c3": -30.779366404630565, - "c4": 9.705294797233478, - "c5": -55.40346509938152, - "c6": -35.380758521923994, - "c7": 9.922463574955444 + "points": { + "c1": -20.336268292127798, + "c2": 33.22958993084852, + "c3": 43.62204702139441, + "c4": -32.612029661049846, + "c5": -16.297919730104397, + "c6": 34.10931345727232, + "c7": 21.86069436818657 }, - "vertexSeeds": { - "c1": 5.663956186193335, - "c2": 6.174468487152414, - "c3": 6.226697717856704, - "c4": 5.788355678891454, - "c5": 6.010372603526128, - "c6": 6.529776162239246, - "c7": 5.767425460343684 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957002, + "c3": 8.021266759130832, + "c4": 6.417013407304671, + "c5": 4.812760055478501, + "c6": 3.208506703652331, + "c7": 1.6042533518261701 }, "rgb": [86, 146, 138] }, @@ -3678,23 +3678,23 @@ "year": 1599, "resistanceReported": false, "duration": 63331200, - "curveSeeds": { - "c1": -72.36415471776901, - "c2": -17.634898176189886, - "c3": 54.9634278834737, - "c4": 15.004076122485046, - "c5": 19.797702096261716, - "c6": 53.50073237064764, - "c7": 70.48757028301027 + "points": { + "c1": -74.81999591566269, + "c2": -35.338629463730925, + "c3": -66.48711308110231, + "c4": -64.2885493970309, + "c5": 44.99273551243748, + "c6": -3.190077839869005, + "c7": 26.814836079938658 }, - "vertexSeeds": { - "c1": 5.246065974137302, - "c2": 5.537595111018973, - "c3": 5.121406950067383, - "c4": 4.949213978635729, - "c5": 5.523618445942355, - "c6": 5.278903868034565, - "c7": 5.25236250745278 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830787, + "c3": 7.374017568192327, + "c4": 5.89921405455386, + "c5": 4.4244105409153915, + "c6": 2.949607027276932, + "c7": 1.4748035136384638 }, "rgb": [86, 146, 138] }, @@ -3705,23 +3705,23 @@ "year": 1598, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 37.80804214809089, - "c2": 19.099900525059226, - "c3": -21.3279464921303, - "c4": 1.6602677234342877, - "c5": 22.412328174961743, - "c6": -39.59120310672865, - "c7": -20.79898988194721 + "points": { + "c1": 18.057460223017195, + "c2": 29.012947953548164, + "c3": 41.37989572924771, + "c4": -23.74634987577965, + "c5": 35.76818324117252, + "c6": 30.041404245330142, + "c7": 31.822883379709708 }, - "vertexSeeds": { - "c1": 6.918630576532943, - "c2": 6.8774309292944595, - "c3": 6.2756002700829745, - "c4": 7.12641123384124, - "c5": 6.404917845795223, - "c6": 6.82365071576148, - "c7": 6.824512904841534 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871017, + "c4": 7.101248266296811, + "c5": 5.325936199722606, + "c6": 3.55062413314841, + "c7": 1.775312066574205 }, "rgb": [77, 76, 132] }, @@ -3732,23 +3732,23 @@ "year": 1598, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": 50.77079486264111, - "c2": 5.698812764158966, - "c3": -24.379428692999387, - "c4": 9.35822123982333, - "c5": -4.3812012766386985, - "c6": 51.34009755089342, - "c7": -35.01963836051557 + "points": { + "c1": 0.886230383219214, + "c2": -24.907347998654114, + "c3": 9.909773861962478, + "c4": -34.10297395808233, + "c5": 18.493588733945415, + "c6": 40.11138020607413, + "c7": 6.2723470576106735 }, - "vertexSeeds": { - "c1": 6.552789120196405, - "c2": 7.181964913230134, - "c3": 6.630465157529045, - "c4": 6.699601657304972, - "c5": 6.573309070680642, - "c6": 7.100721660882514, - "c7": 6.217392998348197 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [58, 15, 49] }, @@ -3759,23 +3759,23 @@ "year": 1598, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 0.9738956979207352, - "c2": 9.025186990533868, - "c3": -19.27431598272018, - "c4": -13.599039061675033, - "c5": 8.031554438926484, - "c6": -17.112076199803266, - "c7": 10.543249339665095 + "points": { + "c1": 20.04127728282171, + "c2": 2.8832649256490335, + "c3": 22.26686842225427, + "c4": -13.3447844534523, + "c5": -12.124613122525053, + "c6": -5.534698323889494, + "c7": -11.671767132403165 }, - "vertexSeeds": { - "c1": 6.027719591230701, - "c2": 6.049949027407606, - "c3": 4.971537386536597, - "c4": 5.783310102312094, - "c5": 5.838383105760483, - "c6": 5.37908430012189, - "c7": 6.164939829482536 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830787, + "c3": 7.374017568192327, + "c4": 5.89921405455386, + "c5": 4.4244105409153915, + "c6": 2.949607027276932, + "c7": 1.4748035136384638 }, "rgb": [86, 146, 138] }, @@ -3786,23 +3786,23 @@ "year": 1598, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 11.796752753275427, - "c2": -23.9678323879837, - "c3": 28.041724272339643, - "c4": -16.91989544291122, - "c5": -18.161185672848088, - "c6": -3.3004384021583206, - "c7": -30.033027738412198 + "points": { + "c1": -31.733913108958568, + "c2": 3.7164623513355792, + "c3": -22.08847493057354, + "c4": 16.115315278195965, + "c5": 17.199264544820693, + "c6": 19.192687560164963, + "c7": 4.578338237056904 }, - "vertexSeeds": { - "c1": 6.820377406071707, - "c2": 6.852359594682559, - "c3": 7.249050652514226, - "c4": 6.874441830437571, - "c5": 8.001707337440541, - "c6": 8.231084007966226, - "c7": 7.111251267449041 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295425, + "c3": 9.939898289412856, + "c4": 7.951918631530277, + "c5": 5.963938973647707, + "c6": 3.9759593157651385, + "c7": 1.9879796578825693 }, "rgb": [58, 15, 49] }, @@ -3813,23 +3813,23 @@ "year": 1598, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": -39.95213971523105, - "c2": 4.479772343378372, - "c3": 4.630480487192045, - "c4": -42.161457645744164, - "c5": -0.21650809100041357, - "c6": -14.967844187177967, - "c7": 28.89949264750492 + "points": { + "c1": -43.48547102024189, + "c2": -35.548408969083034, + "c3": -4.952562685751175, + "c4": 17.746377688315313, + "c5": -34.833485846762635, + "c6": 29.092299077188166, + "c7": -41.51784219223731 }, - "vertexSeeds": { - "c1": 4.538190603402672, - "c2": 5.014388692809001, - "c3": 4.885786412609183, - "c4": 5.036620823159419, - "c5": 4.49408432716348, - "c6": 5.150697130191711, - "c7": 4.935481191562091 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221913, + "c3": 6.449375866851592, + "c4": 5.159500693481277, + "c5": 3.8696255201109566, + "c6": 2.579750346740636, + "c7": 1.2898751733703204 }, "rgb": [58, 15, 49] }, @@ -3840,23 +3840,23 @@ "year": 1600, "resistanceReported": false, "duration": 92534400, - "curveSeeds": { - "c1": -18.97048954010073, - "c2": -16.457325603835955, - "c3": -107.57668372473779, - "c4": -50.71712793335865, - "c5": -36.58993105305787, - "c6": 97.67359879527726, - "c7": 87.9924193621786 + "points": { + "c1": 26.585474704567872, + "c2": 103.85644344942258, + "c3": 36.279687011057206, + "c4": 1.795861108724793, + "c5": 97.36291849377056, + "c6": -96.68632006244218, + "c7": 93.92415197441619 }, - "vertexSeeds": { - "c1": 7.564618860315878, - "c2": 7.281999277291399, - "c3": 6.75360458807915, - "c4": 6.613993739820754, - "c5": 7.3466955253873545, - "c6": 7.496837943601424, - "c7": 7.074474456765017 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [86, 146, 138] }, @@ -3867,23 +3867,23 @@ "year": 1598, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 18.637089697996373, - "c2": 12.950673362369052, - "c3": 7.054636380956893, - "c4": -11.627545010888092, - "c5": -0.5336917304584574, - "c6": -15.049566629418663, - "c7": 20.96602529553624 + "points": { + "c1": -18.03629014751168, + "c2": 32.56515008831818, + "c3": 25.65395307181543, + "c4": -14.448209581429428, + "c5": 10.503483995440753, + "c6": 25.525958758076307, + "c7": -3.2251271296074577 }, - "vertexSeeds": { - "c1": 6.9939511813331805, - "c2": 5.841271270947714, - "c3": 6.617468161494986, - "c4": 5.894030415767278, - "c5": 6.543595411277017, - "c6": 6.437673950638474, - "c7": 7.05792196437498 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -3894,23 +3894,23 @@ "year": 1599, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": 21.83186797258074, - "c2": -36.53948308443805, - "c3": -25.47608615317283, - "c4": 1.3080657206533246, - "c5": -38.4905388542191, - "c6": 12.674436051021374, - "c7": 8.114396680753487 + "points": { + "c1": 54.43575760592513, + "c2": -37.74479552778986, + "c3": -36.003080917854135, + "c4": -46.47930697278968, + "c5": -22.465422721055425, + "c6": -59.70702844480757, + "c7": -10.290610132589606 }, - "vertexSeeds": { - "c1": 5.811875645308698, - "c2": 5.918801247013141, - "c3": 6.926897619046033, - "c4": 6.059451371135064, - "c5": 6.224237851675552, - "c6": 6.18052100760148, - "c7": 5.958267526359176 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -3921,23 +3921,23 @@ "year": 1600, "resistanceReported": false, "duration": 84067200, - "curveSeeds": { - "c1": 43.52580637402329, - "c2": 33.04959291808035, - "c3": 11.111488344556747, - "c4": 85.08707374941707, - "c5": -73.67238475339893, - "c6": -84.20358611963101, - "c7": -98.93279882364838 + "points": { + "c1": -1.8815473753368366, + "c2": -14.121706838347805, + "c3": -80.94195983272326, + "c4": 48.224863860536374, + "c5": 88.09045571433364, + "c6": -3.535275980478758, + "c7": 11.810361547375692 }, - "vertexSeeds": { - "c1": 7.117814736564352, - "c2": 6.5348238187311125, - "c3": 6.2339629372955265, - "c4": 5.876288634506798, - "c5": 6.93960995183399, - "c6": 6.0061678041712225, - "c7": 6.176127894275546 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [222, 0, 59] }, @@ -3948,23 +3948,23 @@ "year": 1599, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": -37.82011563816317, - "c2": -31.812926893838913, - "c3": -45.54178694105865, - "c4": 35.50072879339331, - "c5": 15.71317108077271, - "c6": -50.31059392590841, - "c7": 21.612060617818358 + "points": { + "c1": -6.5682801708158465, + "c2": 12.971701738478515, + "c3": 54.19346193903037, + "c4": -49.8944922962508, + "c5": -46.85510956341733, + "c6": 26.001018702262996, + "c7": 20.97190441528467 }, - "vertexSeeds": { - "c1": 7.0648406378356, - "c2": 7.2600582448863005, - "c3": 6.870609977786603, - "c4": 6.961168356283025, - "c5": 7.396330249935838, - "c6": 6.997243070559313, - "c7": 7.931146121541395 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [238, 201, 159] }, @@ -3975,23 +3975,23 @@ "year": 1599, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": 28.81551861162115, - "c2": -5.691197151437805, - "c3": 4.129964779115291, - "c4": 30.916117895449553, - "c5": -41.685319193354744, - "c6": -48.24440550507852, - "c7": -32.64344578620652 + "points": { + "c1": -41.91094669236834, + "c2": -59.76982439739635, + "c3": -34.75483542143007, + "c4": 0.29629461957545544, + "c5": -27.331180924421147, + "c6": 40.10919685226303, + "c7": -42.130273917028084 }, - "vertexSeeds": { - "c1": 7.002496935591457, - "c2": 7.378591780116834, - "c3": 7.287917951991175, - "c4": 6.38472379551351, - "c5": 6.656399243122611, - "c6": 6.102051809295198, - "c7": 7.134458972025046 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766987, + "c3": 9.061488673139156, + "c4": 7.249190938511331, + "c5": 5.436893203883498, + "c6": 3.6245954692556657, + "c7": 1.8122977346278328 }, "rgb": [238, 201, 159] }, @@ -4002,23 +4002,23 @@ "year": 1599, "resistanceReported": false, "duration": 43891200, - "curveSeeds": { - "c1": 18.549213557848162, - "c2": 40.98025475330539, - "c3": -37.045652628633974, - "c4": 39.10759573991129, - "c5": 2.447554982171198, - "c6": -29.810987337627843, - "c7": -42.46086084570652 + "points": { + "c1": 3.2080140469539415, + "c2": -56.58692267261435, + "c3": -35.430351070219494, + "c4": 22.443809863902644, + "c5": -37.7603615185436, + "c6": 2.73073534199969, + "c7": 6.816847310229704 }, - "vertexSeeds": { - "c1": 7.235831009711604, - "c2": 6.403937071998814, - "c3": 6.335672788319126, - "c4": 6.716081053407099, - "c5": 6.103531443228956, - "c6": 6.422492449529169, - "c7": 6.2849564959517 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [222, 0, 59] }, @@ -4029,23 +4029,23 @@ "year": 1599, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": -47.93179423262972, - "c2": 26.328956605843764, - "c3": 28.481158815987676, - "c4": 16.738603987100866, - "c5": 45.22117950473912, - "c6": 30.40592199937415, - "c7": 14.71942614975216 + "points": { + "c1": 52.14196085242167, + "c2": 15.449788289040235, + "c3": -39.37268660658355, + "c4": -5.047004605877412, + "c5": -24.713360063769517, + "c6": -25.47506874416638, + "c7": -28.654982890852548 }, - "vertexSeeds": { - "c1": 7.396209951636157, - "c2": 8.126397897771549, - "c3": 8.402249474333448, - "c4": 7.792317622899867, - "c5": 7.510898654190146, - "c6": 7.664398038380921, - "c7": 7.89937619924166 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421638, + "c3": 10.587147480351359, + "c4": 8.469717984281088, + "c5": 6.352288488210819, + "c6": 4.23485899214054, + "c7": 2.11742949607027 }, "rgb": [86, 146, 138] }, @@ -4056,23 +4056,23 @@ "year": 1599, "resistanceReported": false, "duration": 47952000, - "curveSeeds": { - "c1": -8.39094015438203, - "c2": -41.53506884923405, - "c3": -12.299573708277912, - "c4": 20.161233560740165, - "c5": -39.659608120765085, - "c6": 29.266878721969498, - "c7": -62.483009968546796 + "points": { + "c1": -42.66210986092059, + "c2": -29.622547344739445, + "c3": -4.982056831023094, + "c4": 36.92598827627236, + "c5": 6.353767481645093, + "c6": -55.997910218112835, + "c7": -1.559096659307471 }, - "vertexSeeds": { - "c1": 6.760641268955594, - "c2": 6.4482108714362525, - "c3": 7.106436989163597, - "c4": 7.29257503779265, - "c5": 7.4450959431334764, - "c6": 6.660641391563393, - "c7": 7.341888836803604 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571427, + "c3": 9.523809523809518, + "c4": 7.61904761904762, + "c5": 5.7142857142857135, + "c6": 3.8095238095238058, + "c7": 1.9047619047618984 }, "rgb": [238, 201, 159] }, @@ -4083,23 +4083,23 @@ "year": 1599, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": -2.867770156275803, - "c2": -45.27513931135677, - "c3": -23.396157080435543, - "c4": 33.961854669539534, - "c5": -24.449844591829848, - "c6": -29.837675103714272, - "c7": -48.115397701207065 + "points": { + "c1": 10.197702856187504, + "c2": 49.28438738000099, + "c3": 3.296714847165994, + "c4": 41.94400646430991, + "c5": 37.406693330799015, + "c6": 7.562607138593265, + "c7": -50.11928271961949 }, - "vertexSeeds": { - "c1": 8.341761741561493, - "c2": 7.87213655685159, - "c3": 7.868045815676043, - "c4": 7.309266309640576, - "c5": 7.945891430557626, - "c6": 7.77996291894841, - "c7": 8.362259023659787 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657418, + "c3": 10.147942672214521, + "c4": 8.118354137771615, + "c5": 6.088765603328709, + "c6": 4.059177068885803, + "c7": 2.0295885344429063 }, "rgb": [238, 201, 159] }, @@ -4110,23 +4110,23 @@ "year": 1600, "resistanceReported": false, "duration": 61084800, - "curveSeeds": { - "c1": -52.500681234948395, - "c2": -50.15179771542269, - "c3": -3.1860936799138244, - "c4": 60.67514306702378, - "c5": 22.340816264175004, - "c6": -11.531366461196072, - "c7": 43.22012286974582 + "points": { + "c1": -65.80986713096004, + "c2": 22.652478776746307, + "c3": 46.57116627506724, + "c4": 15.670284670828863, + "c5": 20.203384192198598, + "c6": -75.44663522382483, + "c7": 29.492522413411265 }, - "vertexSeeds": { - "c1": 6.775073207452387, - "c2": 6.272795388341045, - "c3": 6.656224841385671, - "c4": 7.041574143654377, - "c5": 6.550961928094915, - "c6": 6.601915736290775, - "c7": 6.046929221829323 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [58, 15, 49] }, @@ -4137,23 +4137,23 @@ "year": 1599, "resistanceReported": false, "duration": 45532800, - "curveSeeds": { - "c1": -59.015926261570144, - "c2": -46.91852981030266, - "c3": 19.41280377986366, - "c4": -50.778619810948896, - "c5": -31.151560825389677, - "c6": 44.2116103485019, - "c7": 41.98328974829834 + "points": { + "c1": 34.13955005728899, + "c2": -61.02527826214779, + "c3": -31.982638898106423, + "c4": -8.156623361655626, + "c5": -20.44099375532044, + "c6": -15.609498334447856, + "c7": 50.533560608965864 }, - "vertexSeeds": { - "c1": 5.102976317273714, - "c2": 4.271674525340182, - "c3": 4.2382017231053055, - "c4": 4.899478784939201, - "c5": 4.309560370435181, - "c6": 5.174980896134539, - "c7": 4.708478716859565 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285715, + "c3": 4.761904761904763, + "c4": 3.809523809523811, + "c5": 2.8571428571428585, + "c6": 1.9047619047619089, + "c7": 0.9523809523809544 }, "rgb": [86, 146, 138] }, @@ -4164,23 +4164,23 @@ "year": 1600, "resistanceReported": false, "duration": 67392000, - "curveSeeds": { - "c1": 8.288271716021967, - "c2": -32.301895835274, - "c3": 67.82273577853017, - "c4": 26.48185334516434, - "c5": 67.64042713868888, - "c6": 57.4053103987559, - "c7": 1.6537835030489134 + "points": { + "c1": -52.976352194890666, + "c2": -35.499282371365695, + "c3": -28.920750269658278, + "c4": -49.205799902893325, + "c5": 79.99926681469456, + "c6": -38.21215335027339, + "c7": -24.55047263577594 }, - "vertexSeeds": { - "c1": 5.967148474593794, - "c2": 6.571175483366918, - "c3": 7.056429856355267, - "c4": 6.691642393917048, - "c5": 6.03988673538251, - "c6": 6.718446836023153, - "c7": 6.4113010176382526 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [77, 76, 132] }, @@ -4191,23 +4191,23 @@ "year": 1599, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 14.37282804845674, - "c2": -31.4448514255006, - "c3": 16.96454775118238, - "c4": 22.22928449322088, - "c5": 36.98610246058136, - "c6": -18.09580262807382, - "c7": 19.72125680451517 + "points": { + "c1": -18.27306122599267, + "c2": 27.206852210130272, + "c3": 2.453239896559225, + "c4": 7.00906344740401, + "c5": 35.716060789266045, + "c6": -38.26150174612171, + "c7": -37.3603331788116 }, - "vertexSeeds": { - "c1": 6.525972032401297, - "c2": 5.799476299511347, - "c3": 6.141081517283798, - "c4": 6.282724034635705, - "c5": 7.057089948579643, - "c6": 5.814739041437905, - "c7": 7.124501162705476 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [238, 201, 159] }, @@ -4218,23 +4218,23 @@ "year": 1599, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": 37.90642514610304, - "c2": -25.795155689222025, - "c3": 5.167301895590171, - "c4": 24.102503385543024, - "c5": -6.190063646524685, - "c6": -21.61969533525354, - "c7": 46.93050836279519 + "points": { + "c1": 56.666379293052096, + "c2": -9.578337633055988, + "c3": 43.06390923350984, + "c4": 46.25181282145717, + "c5": 27.90890980152492, + "c6": -15.44839155818162, + "c7": 20.349537259400215 }, - "vertexSeeds": { - "c1": 6.909233350253503, - "c2": 7.110929521452352, - "c3": 6.883570070741566, - "c4": 6.235878766098495, - "c5": 6.422955610275583, - "c6": 6.157568189445809, - "c7": 6.9716195014361295 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871017, + "c4": 7.101248266296811, + "c5": 5.325936199722606, + "c6": 3.55062413314841, + "c7": 1.775312066574205 }, "rgb": [77, 76, 132] }, @@ -4245,23 +4245,23 @@ "year": 1599, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 32.9533851356038, - "c2": -29.394830074214205, - "c3": 5.50581182133709, - "c4": 2.0456287496343606, - "c5": -10.50618044364569, - "c6": -17.815296424124675, - "c7": -36.43306778014449 + "points": { + "c1": -20.591813852135573, + "c2": -39.43729182913152, + "c3": -27.156343270093586, + "c4": -31.46937362763593, + "c5": 26.251702418983847, + "c6": 1.497412233000837, + "c7": 41.96609005390277 }, - "vertexSeeds": { - "c1": 6.095627530905691, - "c2": 7.009658826393865, - "c3": 7.371906125278816, - "c4": 6.337375775194743, - "c5": 6.971077536908831, - "c6": 6.816273132268591, - "c7": 6.784318259670092 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871017, + "c4": 7.101248266296811, + "c5": 5.325936199722606, + "c6": 3.55062413314841, + "c7": 1.775312066574205 }, "rgb": [58, 15, 49] }, @@ -4272,23 +4272,23 @@ "year": 1599, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 21.446359967842113, - "c2": -2.007514967900441, - "c3": -7.321472111384743, - "c4": 32.154230111550916, - "c5": 14.572295044802402, - "c6": -22.126455750799412, - "c7": -22.054409903617934 + "points": { + "c1": 7.4130816458235245, + "c2": 47.696960679066734, + "c3": -6.8903898816477, + "c4": 10.38363834345806, + "c5": -0.9381954608381449, + "c6": 11.811721849376568, + "c7": -40.402143568692985 }, - "vertexSeeds": { - "c1": 6.787616909195738, - "c2": 6.661913739615137, - "c3": 5.9490830572986235, - "c4": 6.328959424164865, - "c5": 5.790219133823619, - "c6": 5.656342637051551, - "c7": 6.726097775240205 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [238, 201, 159] }, @@ -4299,23 +4299,23 @@ "year": 1599, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 29.48491417252839, - "c2": -37.56875631495091, - "c3": 32.73935687675086, - "c4": 15.526633862498407, - "c5": 23.51965396014046, - "c6": -18.74740870056851, - "c7": -3.9601652513232537 + "points": { + "c1": -33.1881848734119, + "c2": -26.305884385714034, + "c3": -12.424326897911179, + "c4": 20.01072544808075, + "c5": 33.00545592567397, + "c6": -35.55194534096089, + "c7": 1.9880440663752665 }, - "vertexSeeds": { - "c1": 6.363995417882247, - "c2": 5.7819082174585965, - "c3": 5.414700932495493, - "c4": 5.613520194841455, - "c5": 5.948179597952294, - "c6": 6.49019469170854, - "c7": 6.207444113373707 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [222, 0, 59] }, @@ -4326,23 +4326,23 @@ "year": 1599, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 6.2089561712277614, - "c2": 20.91560410896951, - "c3": -11.922772101774322, - "c4": 15.196906881292591, - "c5": 3.1819605952895245, - "c6": 12.355015780251975, - "c7": 26.926117871256515 + "points": { + "c1": 14.082874015868981, + "c2": -2.7869942610694416, + "c3": -25.406687460765077, + "c4": -7.968940525760448, + "c5": 13.72893427116113, + "c6": 10.025664149354185, + "c7": -10.567248865205606 }, - "vertexSeeds": { - "c1": 5.9911446270755775, - "c2": 6.144469091699235, - "c3": 6.300041278797329, - "c4": 5.687377896877524, - "c5": 6.151695920330626, - "c6": 6.251763179429516, - "c7": 5.633685731173444 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [58, 15, 49] }, @@ -4353,23 +4353,23 @@ "year": 1600, "resistanceReported": false, "duration": 46137600, - "curveSeeds": { - "c1": 0.2838931865481058, - "c2": -13.345927033144513, - "c3": 8.277402606991991, - "c4": 24.7026346153905, - "c5": 48.75595259293342, - "c6": 5.548536326455654, - "c7": -50.20440152445808 + "points": { + "c1": 6.568436490940066, + "c2": -29.886962769458833, + "c3": -12.703796971763161, + "c4": 38.64719988890058, + "c5": 42.728386848530626, + "c6": -8.046498954895583, + "c7": 57.813949638074426 }, - "vertexSeeds": { - "c1": 7.214333241711074, - "c2": 6.915369730368889, - "c3": 7.2130331949410715, - "c4": 7.4149805902162145, - "c5": 7.320631018691936, - "c6": 7.809155070252508, - "c7": 7.602627867077779 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [222, 0, 59] }, @@ -4380,23 +4380,23 @@ "year": 1600, "resistanceReported": false, "duration": 61344000, - "curveSeeds": { - "c1": 36.26076709169118, - "c2": 58.54045528260065, - "c3": 35.88949450751117, - "c4": -71.84136496397181, - "c5": 8.245272785123959, - "c6": 3.6448250582513566, - "c7": 16.377687957477036 + "points": { + "c1": -60.133642222436585, + "c2": -14.21160173215901, + "c3": 22.726142431369837, + "c4": -12.439090079753413, + "c5": 49.85651105751447, + "c6": -47.18455819870027, + "c7": -5.080207090523501 }, - "vertexSeeds": { - "c1": 5.61708947631443, - "c2": 5.895596230237559, - "c3": 6.094269363498054, - "c4": 6.182018866879726, - "c5": 6.5991202691134, - "c6": 6.458475076634424, - "c7": 6.7360784105840885 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [77, 76, 132] }, @@ -4407,23 +4407,23 @@ "year": 1600, "resistanceReported": false, "duration": 59875200, - "curveSeeds": { - "c1": -2.3075421787102925, - "c2": 35.19526937392659, - "c3": 42.67494535148958, - "c4": -10.88884794900035, - "c5": -0.0056468330681980206, - "c6": 45.58768161289299, - "c7": 33.853776433123315 + "points": { + "c1": 37.60603778009056, + "c2": 58.57996657698624, + "c3": -16.540942843131752, + "c4": -58.00658933597734, + "c5": -37.30504522880125, + "c6": 16.146678601060472, + "c7": 43.62643936418712 }, - "vertexSeeds": { - "c1": 6.293912692368318, - "c2": 6.391257721570346, - "c3": 6.214776836412954, - "c4": 7.555423387676943, - "c5": 6.1430786863361915, - "c6": 6.763025607228777, - "c7": 6.211477801486416 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [222, 0, 59] }, @@ -4434,23 +4434,23 @@ "year": 1600, "resistanceReported": false, "duration": 50198400, - "curveSeeds": { - "c1": 57.10820116320001, - "c2": 30.791342824467876, - "c3": -29.729990244520565, - "c4": 34.74393118444641, - "c5": -38.58249982041757, - "c6": 35.901738264342725, - "c7": -57.681963529000804 + "points": { + "c1": -26.97133271312118, + "c2": 49.476969201469046, + "c3": 27.800469405825055, + "c4": 11.137920814216983, + "c5": -62.19169643076918, + "c6": 48.83939795897179, + "c7": -0.5544441629461403 }, - "vertexSeeds": { - "c1": 7.268280574383305, - "c2": 7.880438714285413, - "c3": 7.266233614359278, - "c4": 7.2059625618889, - "c5": 6.547942124633141, - "c6": 7.1926137637709475, - "c7": 6.922900426883301 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [222, 0, 59] }, @@ -4461,23 +4461,23 @@ "year": 1599, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -15.91647619984306, - "c2": -22.65213715341563, - "c3": -9.086084587275991, - "c4": 13.948079530226515, - "c5": -12.146028783058274, - "c6": -10.54258376640976, - "c7": -6.461869155661695 + "points": { + "c1": 35.197709027391134, + "c2": -12.799846048812324, + "c3": -3.0974888488044954, + "c4": 14.958732034580486, + "c5": 13.506079386453195, + "c6": 27.99755391351612, + "c7": -24.844162541213684 }, - "vertexSeeds": { - "c1": 7.864737541897821, - "c2": 7.126647017363563, - "c3": 7.846344248211558, - "c4": 7.313604629588994, - "c5": 7.976412404655302, - "c6": 7.452158852871331, - "c7": 8.327530987815187 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295425, + "c3": 9.939898289412856, + "c4": 7.951918631530277, + "c5": 5.963938973647707, + "c6": 3.9759593157651385, + "c7": 1.9879796578825693 }, "rgb": [222, 0, 59] }, @@ -4488,23 +4488,23 @@ "year": 1600, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 40.44047782286581, - "c2": 42.85997562114397, - "c3": 21.504654571157594, - "c4": 13.052763570546276, - "c5": -46.7511447252765, - "c6": -19.834634692217453, - "c7": 18.30559173965309 + "points": { + "c1": 49.103481714167195, + "c2": -46.653022777708806, + "c3": -5.252561335507103, + "c4": 36.08752934668413, + "c5": 30.61434819449216, + "c6": 19.02971591770622, + "c7": -14.549626982914404 }, - "vertexSeeds": { - "c1": 6.144913524825302, - "c2": 5.552531908429962, - "c3": 5.730789595716393, - "c4": 6.605208200379991, - "c5": 6.420626972810011, - "c6": 5.431661724246108, - "c7": 6.33127193962649 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [86, 146, 138] }, @@ -4515,23 +4515,23 @@ "year": 1601, "resistanceReported": false, "duration": 70416000, - "curveSeeds": { - "c1": -83.69135821747935, - "c2": 44.36990106911449, - "c3": -64.16088079657837, - "c4": 32.75785883021882, - "c5": 75.03405103269887, - "c6": 12.22941850383505, - "c7": 57.61447006483934 + "points": { + "c1": -52.342522034910125, + "c2": -13.00660547023412, + "c3": -32.27866609061025, + "c4": 8.669493688195033, + "c5": 65.30133187968562, + "c6": 47.97065407649984, + "c7": 13.526314562291049 }, - "vertexSeeds": { - "c1": 6.252662022504965, - "c2": 6.3051346450310595, - "c3": 6.864870886979396, - "c4": 5.774559660897081, - "c5": 6.01523325634224, - "c6": 6.028764786849171, - "c7": 7.105702283028357 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [77, 76, 132] }, @@ -4542,23 +4542,23 @@ "year": 1600, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": 32.42077340101585, - "c2": 34.49955589807544, - "c3": -46.14490947963569, - "c4": 46.06769032552195, - "c5": 6.014037945227557, - "c6": -6.598109177097022, - "c7": -19.131603310598287 + "points": { + "c1": 18.002125653169927, + "c2": -34.4026889989748, + "c3": -13.869713461421512, + "c4": 35.85516085762835, + "c5": -27.52099561968361, + "c6": -44.37090329911669, + "c7": -50.43886831934036 }, - "vertexSeeds": { - "c1": 6.189565240393517, - "c2": 6.540492026735474, - "c3": 5.906406905163735, - "c4": 6.022766958890578, - "c5": 6.264947357492074, - "c6": 6.42505735705678, - "c7": 5.805865883485113 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318997, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567729993, + "c7": 1.6458622283865043 }, "rgb": [86, 146, 138] }, @@ -4569,23 +4569,23 @@ "year": 1599, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -18.329188259668683, - "c2": -16.848841302838352, - "c3": -9.975650941150324, - "c4": 13.855292007676177, - "c5": -17.465768153207378, - "c6": -7.6323502955443985, - "c7": -15.189162358327913 + "points": { + "c1": -28.530592237948582, + "c2": -3.665185075437673, + "c3": 17.832652019665233, + "c4": 0.3655072620235771, + "c5": 3.6598467465315068, + "c6": -2.103078250003989, + "c7": 2.2991539883669745 }, - "vertexSeeds": { - "c1": 5.280034270561471, - "c2": 5.479757709457977, - "c3": 5.98522448890531, - "c4": 5.827039951862771, - "c5": 5.481588636180755, - "c6": 5.499037008059684, - "c7": 5.6126563695865315 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [238, 201, 159] }, @@ -4596,23 +4596,23 @@ "year": 1600, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -20.100923195013443, - "c2": -25.209122286586798, - "c3": 3.903323973798088, - "c4": -6.758922721446744, - "c5": 16.036054834015985, - "c6": 36.69116885666605, - "c7": 39.574318881296165 + "points": { + "c1": -43.17878047108147, + "c2": 28.61690097051256, + "c3": -31.80172520140281, + "c4": -39.30825399730589, + "c5": 30.50783279959252, + "c6": -42.903157849217486, + "c7": -39.83885908834032 }, - "vertexSeeds": { - "c1": 6.7394395601963515, - "c2": 5.99736956216021, - "c3": 6.529260387426364, - "c4": 5.860245426231781, - "c5": 6.397155700536705, - "c6": 6.2925205660645, - "c7": 6.490457174660282 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [86, 146, 138] }, @@ -4623,23 +4623,23 @@ "year": 1600, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": -17.422657700786104, - "c2": -34.8256222924347, - "c3": -7.0788313649865415, - "c4": 14.460572081521335, - "c5": 49.464006574638816, - "c6": -30.73503524359463, - "c7": 46.2751449409313 + "points": { + "c1": 36.95386963905777, + "c2": 19.578656394020783, + "c3": 25.504032420461883, + "c4": -32.77993922075456, + "c5": 38.697082997266136, + "c6": -10.177415446835013, + "c7": 0.7509961422812879 }, - "vertexSeeds": { - "c1": 6.714917842272138, - "c2": 7.0920719928223805, - "c3": 6.22314187660345, - "c4": 6.972416624780813, - "c5": 5.9685081238408, - "c6": 6.99719896168771, - "c7": 6.243275190239903 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871017, + "c4": 7.101248266296811, + "c5": 5.325936199722606, + "c6": 3.55062413314841, + "c7": 1.775312066574205 }, "rgb": [222, 0, 59] }, @@ -4650,23 +4650,23 @@ "year": 1601, "resistanceReported": false, "duration": 66700800, - "curveSeeds": { - "c1": 33.980342192385635, - "c2": 9.311226569749067, - "c3": -0.2479497247970528, - "c4": -70.69416338705773, - "c5": 45.06896164771902, - "c6": -76.45097966793745, - "c7": 11.744331502565615 + "points": { + "c1": 31.311603106322153, + "c2": -60.705771468806965, + "c3": 38.04505978529893, + "c4": 80.21540440422248, + "c5": -58.12782820306728, + "c6": -32.556367289090545, + "c7": -35.11736198867025 }, - "vertexSeeds": { - "c1": 5.825000274314458, - "c2": 5.2621539584534185, - "c3": 5.250395738389436, - "c4": 5.101848710550057, - "c5": 5.8218357479753315, - "c6": 5.304869088426073, - "c7": 5.669524655169789 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [238, 201, 159] }, @@ -4677,23 +4677,23 @@ "year": 1600, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": -10.226425498474384, - "c2": 31.553734930047014, - "c3": -21.207761488121257, - "c4": 42.709197630524955, - "c5": -3.057962477986699, - "c6": 10.527943991463694, - "c7": 40.038652257388264 + "points": { + "c1": -5.9982385593876515, + "c2": -18.46251429690095, + "c3": 2.1621217914568547, + "c4": -24.01373783998297, + "c5": -20.668964148433417, + "c6": -46.945167172861204, + "c7": -47.75876548630427 }, - "vertexSeeds": { - "c1": 4.961442570500601, - "c2": 5.325299059367125, - "c3": 5.053382631804369, - "c4": 6.095042004134099, - "c5": 6.166191769180552, - "c6": 5.03991390570915, - "c7": 5.77883457579988 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830787, + "c3": 7.374017568192327, + "c4": 5.89921405455386, + "c5": 4.4244105409153915, + "c6": 2.949607027276932, + "c7": 1.4748035136384638 }, "rgb": [86, 146, 138] }, @@ -4704,23 +4704,23 @@ "year": 1600, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 30.925754268864722, - "c2": 25.4337556739643, - "c3": -6.338075059221467, - "c4": 28.457180036190238, - "c5": 22.14871063964334, - "c6": 3.803410232422472, - "c7": 10.068298107184049 + "points": { + "c1": 35.769640931905386, + "c2": 22.70701944042768, + "c3": 1.0425617931997024, + "c4": -29.252093184543394, + "c5": -26.01937423154316, + "c6": -30.352291791255517, + "c7": 19.191288417140022 }, - "vertexSeeds": { - "c1": 6.105274415387924, - "c2": 5.465439597459488, - "c3": 6.077830922005044, - "c4": 5.43458630431727, - "c5": 5.155124658530717, - "c6": 5.538445638357101, - "c7": 4.980053582213908 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830787, + "c3": 7.374017568192327, + "c4": 5.89921405455386, + "c5": 4.4244105409153915, + "c6": 2.949607027276932, + "c7": 1.4748035136384638 }, "rgb": [58, 15, 49] }, @@ -4731,23 +4731,23 @@ "year": 1600, "resistanceReported": false, "duration": 46742400, - "curveSeeds": { - "c1": -12.784737223398565, - "c2": -11.643249604013121, - "c3": 40.624210458073286, - "c4": 6.497050812980767, - "c5": 34.67499458124835, - "c6": -60.56586432673079, - "c7": -59.83830924226384 + "points": { + "c1": 46.23322299653528, + "c2": 32.534262133666466, + "c3": -28.309206733162156, + "c4": 22.300457247939583, + "c5": 36.176866067486976, + "c6": -33.52215500099517, + "c7": -25.33861734870593 }, - "vertexSeeds": { - "c1": 6.931891713533614, - "c2": 6.318734710165662, - "c3": 6.007785233082497, - "c4": 7.209044993091156, - "c5": 6.15732049986229, - "c6": 5.97781938008476, - "c7": 6.549724503290533 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [86, 146, 138] }, @@ -4758,23 +4758,23 @@ "year": 1600, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 30.452946327180612, - "c2": -27.394881247569046, - "c3": 19.732353360066554, - "c4": -21.931627003309227, - "c5": 18.998160640046038, - "c6": 5.452247163518841, - "c7": 47.04229791994882 + "points": { + "c1": -35.69861862998454, + "c2": 33.08016423836807, + "c3": -46.32187148217686, + "c4": 45.49226565775467, + "c5": 28.392116463914334, + "c6": -24.499344191890835, + "c7": -16.49108858952176 }, - "vertexSeeds": { - "c1": 6.586097855353609, - "c2": 6.542125081903922, - "c3": 6.801431408172134, - "c4": 6.622761887028108, - "c5": 6.459993960665211, - "c6": 7.05001216316611, - "c7": 6.698833189697206 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [238, 201, 159] }, @@ -4785,23 +4785,23 @@ "year": 1600, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 49.232395230745446, - "c2": -14.913140709521585, - "c3": 48.19546466118879, - "c4": 50.6947801505059, - "c5": 45.86508393045256, - "c6": -46.10520377450707, - "c7": 0.732645690252518 + "points": { + "c1": -12.861237687123229, + "c2": -9.420413814179135, + "c3": 5.849745600540565, + "c4": 30.852104693168563, + "c5": -11.09935523768769, + "c6": 42.181033651241044, + "c7": 13.353000119183712 }, - "vertexSeeds": { - "c1": 6.2357806758396395, - "c2": 5.762061959198351, - "c3": 5.9876806131039375, - "c4": 5.389599204914032, - "c5": 5.789282601658653, - "c6": 5.99041828301333, - "c7": 5.5376967642987625 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957002, + "c3": 8.021266759130832, + "c4": 6.417013407304671, + "c5": 4.812760055478501, + "c6": 3.208506703652331, + "c7": 1.6042533518261701 }, "rgb": [86, 146, 138] }, @@ -4812,23 +4812,23 @@ "year": 1601, "resistanceReported": false, "duration": 42336000, - "curveSeeds": { - "c1": -25.87778383864603, - "c2": -33.008144528988424, - "c3": -45.50755059685897, - "c4": -8.676889716399565, - "c5": -36.71125260028988, - "c6": 50.75246291759346, - "c7": 36.71023631133663 + "points": { + "c1": 50.461713248803136, + "c2": 8.945253723995165, + "c3": 21.956684307498676, + "c4": -10.616330238162938, + "c5": -45.13151604952752, + "c6": -6.8329316190621725, + "c7": -28.988893152799044 }, - "vertexSeeds": { - "c1": 5.452702336046048, - "c2": 4.893213840766483, - "c3": 5.8448944310125945, - "c4": 5.844508800510322, - "c5": 5.812510675532314, - "c6": 4.84143714617613, - "c7": 5.684215110200013 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [222, 0, 59] }, @@ -4839,23 +4839,23 @@ "year": 1600, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -12.598164314476406, - "c2": -23.530559141781325, - "c3": -35.556398132742224, - "c4": -37.87985874559972, - "c5": -3.9216196102413576, - "c6": -18.098157519236814, - "c7": -41.475895879594106 + "points": { + "c1": -21.282330254480044, + "c2": 1.759351461915628, + "c3": 40.606278509907874, + "c4": 6.329669175808412, + "c5": -32.603373336177725, + "c6": 27.340936854206568, + "c7": -37.00277939994283 }, - "vertexSeeds": { - "c1": 5.232162476156807, - "c2": 5.526162211867598, - "c3": 6.062048963579278, - "c4": 5.726426210353012, - "c5": 5.349914122622759, - "c6": 5.178523117055159, - "c7": 6.15305382307917 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192789, + "c3": 7.582061950993992, + "c4": 6.065649560795197, + "c5": 4.549237170596399, + "c6": 3.0328247803976027, + "c7": 1.5164123901988058 }, "rgb": [86, 146, 138] }, @@ -4866,23 +4866,23 @@ "year": 1600, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 46.99476478973872, - "c2": -44.19746766550425, - "c3": 8.928842399120136, - "c4": -47.941048336941975, - "c5": 4.367143409640036, - "c6": -0.7792351129304933, - "c7": 39.77945909572981 + "points": { + "c1": -48.64749027658921, + "c2": 4.244584881452099, + "c3": 25.38768829678788, + "c4": -48.72530180413002, + "c5": 47.16671790191432, + "c6": -10.116440170614823, + "c7": -43.77697410428261 }, - "vertexSeeds": { - "c1": 5.612894237033045, - "c2": 5.577072774902224, - "c3": 6.854616657797182, - "c4": 6.252208458019765, - "c5": 6.366444980894814, - "c6": 6.4425070366057735, - "c7": 5.5860739997717594 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318997, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567729993, + "c7": 1.6458622283865043 }, "rgb": [86, 146, 138] }, @@ -4893,23 +4893,23 @@ "year": 1601, "resistanceReported": false, "duration": 43977600, - "curveSeeds": { - "c1": 8.098946921449702, - "c2": -52.95390610828016, - "c3": -50.18033563711748, - "c4": -38.89012645728287, - "c5": 20.883941975600372, - "c6": -28.37469386622975, - "c7": 51.41661800729225 + "points": { + "c1": 13.790628017533784, + "c2": 48.749357523924594, + "c3": 29.594504135297917, + "c4": -13.952150594258555, + "c5": 24.322489966402365, + "c6": 26.95106894791676, + "c7": 13.334486741184186 }, - "vertexSeeds": { - "c1": 5.558912162154404, - "c2": 5.773413630068174, - "c3": 6.5788484958775175, - "c4": 5.82226626719228, - "c5": 6.390370202169155, - "c6": 5.843678376932544, - "c7": 6.197112086536071 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318997, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567729993, + "c7": 1.6458622283865043 }, "rgb": [86, 146, 138] }, @@ -4920,23 +4920,23 @@ "year": 1601, "resistanceReported": false, "duration": 45964800, - "curveSeeds": { - "c1": 13.37301401190544, - "c2": 17.57748666583427, - "c3": 48.258419273161635, - "c4": 12.724751345745233, - "c5": -6.575004222979025, - "c6": -0.847972435446394, - "c7": 37.2337673651985 + "points": { + "c1": -19.2416456413737, + "c2": -42.16624857109859, + "c3": 17.5467423774776, + "c4": -46.13399190445517, + "c5": 21.445496832713133, + "c6": -2.366938698724738, + "c7": 40.08337441037506 }, - "vertexSeeds": { - "c1": 6.164861541993405, - "c2": 6.325131145849891, - "c3": 6.610334154823528, - "c4": 6.807673197891617, - "c5": 6.582608622472193, - "c6": 6.163757172870665, - "c7": 6.036647907255808 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359224, + "c3": 8.252427184466015, + "c4": 6.6019417475728135, + "c5": 4.951456310679612, + "c6": 3.3009708737864023, + "c7": 1.6504854368932012 }, "rgb": [58, 15, 49] }, @@ -4947,23 +4947,23 @@ "year": 1600, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -3.0096678995222774, - "c2": 9.584797117435606, - "c3": -20.03168467797567, - "c4": -21.742270340006314, - "c5": -4.512775994625191, - "c6": -9.740705439710032, - "c7": 9.154360050170162 + "points": { + "c1": 22.629040361116388, + "c2": -9.829359601004132, + "c3": 2.023719532976685, + "c4": -13.717263720866962, + "c5": -11.539463850612762, + "c6": 14.256747977478582, + "c7": -1.2444768166753732 }, - "vertexSeeds": { - "c1": 8.525032696077036, - "c2": 8.298632352125406, - "c3": 7.540691851816787, - "c4": 7.309806117614304, - "c5": 8.270051499153958, - "c6": 8.918214309101844, - "c7": 8.951529512148566 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662964, + "c3": 10.725843735552475, + "c4": 8.580674988441976, + "c5": 6.4355062413314865, + "c6": 4.290337494220988, + "c7": 2.1451687471104894 }, "rgb": [77, 76, 132] }, @@ -4974,23 +4974,23 @@ "year": 1601, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": 27.879701547898364, - "c2": -29.139832677499065, - "c3": 18.524097031319258, - "c4": 48.947072737299436, - "c5": -21.292958827821586, - "c6": 18.40901457711631, - "c7": 53.22723703528035 + "points": { + "c1": 2.443365185130851, + "c2": 19.495598886393623, + "c3": -24.764581871178855, + "c4": -7.4354505643428865, + "c5": 2.812921242218998, + "c6": 11.641471564407396, + "c7": 55.14829460226291 }, - "vertexSeeds": { - "c1": 5.377328690730447, - "c2": 6.179398484301961, - "c3": 6.1772855232508705, - "c4": 6.379631203662188, - "c5": 5.479998953623527, - "c6": 5.285229289629864, - "c7": 5.516500570232174 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [58, 15, 49] }, @@ -5001,23 +5001,23 @@ "year": 1601, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": 49.85150301857328, - "c2": -21.110432463594933, - "c3": -14.489059452784552, - "c4": -23.726033174124638, - "c5": 0.5053509993405001, - "c6": 23.348803481583687, - "c7": 41.06500486244431 + "points": { + "c1": -4.1117453401235124, + "c2": 53.223717731433865, + "c3": -2.3171149804509525, + "c4": 27.490503831911738, + "c5": -35.87275753849658, + "c6": -16.208160973004965, + "c7": 27.820696047444585 }, - "vertexSeeds": { - "c1": 6.283559224012176, - "c2": 5.9680279753044045, - "c3": 6.79140960226213, - "c4": 5.830969903789144, - "c5": 6.816583766989475, - "c6": 6.0983522902066145, - "c7": 5.5691232038999265 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318997, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567729993, + "c7": 1.6458622283865043 }, "rgb": [86, 146, 138] }, @@ -5028,23 +5028,23 @@ "year": 1600, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -1.9143485378638232, - "c2": 7.869608891106559, - "c3": -14.190206488883177, - "c4": 29.135373591979857, - "c5": -35.65234625136071, - "c6": 31.841013097102902, - "c7": -31.71152257896285 + "points": { + "c1": 14.451304788955404, + "c2": -19.911259590349694, + "c3": -32.76562905435991, + "c4": -40.06050563449472, + "c5": -20.77160669980851, + "c6": 19.742324153331147, + "c7": 32.57800140920004 }, - "vertexSeeds": { - "c1": 6.146344866131196, - "c2": 7.0771708037306285, - "c3": 6.704728917311033, - "c4": 7.356043853194952, - "c5": 6.995436792405446, - "c6": 7.020378278901649, - "c7": 6.412462357614428 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871017, + "c4": 7.101248266296811, + "c5": 5.325936199722606, + "c6": 3.55062413314841, + "c7": 1.775312066574205 }, "rgb": [58, 15, 49] }, @@ -5055,23 +5055,23 @@ "year": 1601, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": 40.16223655556523, - "c2": -26.29700923501391, - "c3": -15.916091028156032, - "c4": 45.237102522206754, - "c5": 9.5786391216742, - "c6": -36.56513121422661, - "c7": 8.528326623446063 + "points": { + "c1": 2.0115290176701706, + "c2": -48.254333632024554, + "c3": 8.712923878411779, + "c4": -8.53868699174258, + "c5": -28.34268977158979, + "c6": 19.209151545746735, + "c7": -40.18226517621224 }, - "vertexSeeds": { - "c1": 5.561524663043656, - "c2": 6.346718142766809, - "c3": 5.8148688648786795, - "c4": 6.514342321428721, - "c5": 5.589838678804629, - "c6": 6.169177171888467, - "c7": 5.962563844532217 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [238, 201, 159] }, @@ -5082,23 +5082,23 @@ "year": 1600, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 21.45024617727474, - "c2": 13.60478887628322, - "c3": 6.19006813059438, - "c4": -0.3510484977951336, - "c5": 22.504382932334135, - "c6": -9.334683804103708, - "c7": -20.204062723998796 + "points": { + "c1": 13.103082219064905, + "c2": -25.404147166445192, + "c3": 11.534351297158278, + "c4": -1.881595764899842, + "c5": -27.805416777714264, + "c6": -15.916799996188892, + "c7": -24.913975935200618 }, - "vertexSeeds": { - "c1": 5.274808377347735, - "c2": 5.787399353473789, - "c3": 4.990523744360826, - "c4": 5.500117111946113, - "c5": 5.022368735185031, - "c6": 4.733998175780539, - "c7": 4.9839079170361265 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622746, + "c3": 7.027276930189547, + "c4": 5.621821544151644, + "c5": 4.216366158113733, + "c6": 2.81091077207582, + "c7": 1.4054553860379078 }, "rgb": [222, 0, 59] }, @@ -5109,23 +5109,23 @@ "year": 1601, "resistanceReported": false, "duration": 50716800, - "curveSeeds": { - "c1": -62.16045088619547, - "c2": 56.28219599456425, - "c3": 55.04738340449076, - "c4": 14.605341029823975, - "c5": 0.5850807888495382, - "c6": -3.097453935501143, - "c7": 35.88748971101363 + "points": { + "c1": -30.028694941369544, + "c2": -26.703292981765053, + "c3": 0.7906584795493217, + "c4": -39.56506602663676, + "c5": -29.097331313753763, + "c6": 19.76425889261901, + "c7": -57.42207450907383 }, - "vertexSeeds": { - "c1": 5.591027573750635, - "c2": 5.687173853199621, - "c3": 5.57105247618057, - "c4": 5.946778143316111, - "c5": 5.670747578355, - "c6": 6.658806277464537, - "c7": 6.539509607926591 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [222, 0, 59] }, @@ -5136,23 +5136,23 @@ "year": 1600, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -9.04775199480962, - "c2": -7.550583390598934, - "c3": 12.309831106344927, - "c4": 6.6721952188953, - "c5": 26.01119472018539, - "c6": -26.82098816540596, - "c7": -10.906243270071446 + "points": { + "c1": 27.448034985141188, + "c2": 23.122971641473757, + "c3": -27.806776217449933, + "c4": -17.744975231216085, + "c5": 26.189803872692092, + "c6": -6.516654392264595, + "c7": 24.239882436996215 }, - "vertexSeeds": { - "c1": 5.884457735322617, - "c2": 5.877660747273537, - "c3": 5.815134409330746, - "c4": 5.6406035904019625, - "c5": 5.953449349833964, - "c6": 5.664470607341616, - "c7": 6.329070091871726 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996764, + "c4": 6.343042071197411, + "c5": 4.757281553398058, + "c6": 3.1715210355987056, + "c7": 1.5857605177993528 }, "rgb": [77, 76, 132] }, @@ -5163,23 +5163,23 @@ "year": 1601, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": -45.34267907020727, - "c2": 39.327963163112685, - "c3": 34.986638606984656, - "c4": 34.895356887983766, - "c5": -1.0136377500208482, - "c6": -29.636440418384595, - "c7": 22.537941056986412 + "points": { + "c1": 34.206106176468296, + "c2": -52.216614304012346, + "c3": 23.271117414052213, + "c4": -29.43438380563048, + "c5": 31.06057674463851, + "c6": 38.85486118178946, + "c7": -26.644828512353286 }, - "vertexSeeds": { - "c1": 5.4640387971295805, - "c2": 6.384045236091898, - "c3": 6.29842240750957, - "c4": 5.6333250435741435, - "c5": 6.420743477523445, - "c6": 6.703262572067709, - "c7": 5.523862678697644 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957002, + "c3": 8.021266759130832, + "c4": 6.417013407304671, + "c5": 4.812760055478501, + "c6": 3.208506703652331, + "c7": 1.6042533518261701 }, "rgb": [58, 15, 49] }, @@ -5190,23 +5190,23 @@ "year": 1601, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": 46.983157081355685, - "c2": 11.316868912741612, - "c3": 44.30477997819803, - "c4": -29.000121015375825, - "c5": -49.46409210978511, - "c6": 31.80256527402844, - "c7": -43.42064199148149 + "points": { + "c1": -23.73136435823862, + "c2": 45.77485284127859, + "c3": -21.406932735125082, + "c4": -53.08999278512843, + "c5": -15.136847252604802, + "c6": -10.866490090678916, + "c7": -7.1188507656312865 }, - "vertexSeeds": { - "c1": 5.589044719194085, - "c2": 5.9737231833966415, - "c3": 6.27953618569809, - "c4": 5.431053980864653, - "c5": 6.485404808531375, - "c6": 5.298147014253884, - "c7": 5.488474658557179 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [77, 76, 132] }, @@ -5217,23 +5217,23 @@ "year": 1601, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 26.99100720884691, - "c2": 14.079498917183145, - "c3": 11.677864069951127, - "c4": -14.908525136755667, - "c5": -12.02689199036061, - "c6": -4.9339340411371495, - "c7": 2.0757510778335018 + "points": { + "c1": -37.636990636408484, + "c2": 46.54377510390614, + "c3": 40.82190818894972, + "c4": -44.38787209774588, + "c5": -46.275140725752834, + "c6": 8.715602790088816, + "c7": 8.837895056196736 }, - "vertexSeeds": { - "c1": 5.676502560928278, - "c2": 6.323431573411123, - "c3": 5.6206807893378254, - "c4": 6.334389048632536, - "c5": 6.275310214650356, - "c6": 6.004887935861481, - "c7": 6.097316525374361 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [238, 201, 159] }, @@ -5244,23 +5244,23 @@ "year": 1601, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -9.878960996948162, - "c2": -17.50006731705194, - "c3": -18.115977137911848, - "c4": 23.35309334247941, - "c5": -25.008526117150716, - "c6": -20.739504977073366, - "c7": 19.041715767842184 + "points": { + "c1": 14.571571972815192, + "c2": 0.39246179310349305, + "c3": 23.088646741165135, + "c4": 13.578984922719123, + "c5": 12.033324879102501, + "c6": -21.893202168967136, + "c7": -13.949370005926149 }, - "vertexSeeds": { - "c1": 4.715812390656037, - "c2": 5.0742200482958415, - "c3": 5.495994784430705, - "c4": 5.100061362709454, - "c5": 5.0253799551348095, - "c6": 5.3596250692807, - "c7": 4.697686122029797 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704577, + "c3": 6.726768377253814, + "c4": 5.381414701803049, + "c5": 4.036061026352286, + "c6": 2.6907073509015222, + "c7": 1.3453536754507636 }, "rgb": [58, 15, 49] }, @@ -5271,23 +5271,23 @@ "year": 1601, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 21.908597089817924, - "c2": -14.188753329011806, - "c3": -13.375752768650965, - "c4": 9.092151668718117, - "c5": -20.82577546081681, - "c6": -18.280941394512837, - "c7": 15.024922910693782 + "points": { + "c1": 18.002745505580137, + "c2": 3.166288527866353, + "c3": 23.542726377927572, + "c4": 2.5290109165314867, + "c5": -1.536801189839796, + "c6": -16.574520509356105, + "c7": -20.449052991962084 }, - "vertexSeeds": { - "c1": 5.897723559664401, - "c2": 5.741333238416475, - "c3": 5.300046374505368, - "c4": 6.023779565169442, - "c5": 6.502020787683348, - "c6": 5.959322566038894, - "c7": 6.506583561258384 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [86, 146, 138] }, @@ -5298,23 +5298,23 @@ "year": 1601, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 14.000108966581756, - "c2": -25.421960305969296, - "c3": 23.13080975306754, - "c4": 16.55103489217693, - "c5": -29.35687624855949, - "c6": 27.810695653570818, - "c7": 38.40153368399473 + "points": { + "c1": -35.882098637036925, + "c2": -29.665215903338108, + "c3": -21.103853743594694, + "c4": -40.048971267743035, + "c5": 28.7970821426361, + "c6": 34.55541242746558, + "c7": -5.956108982792955 }, - "vertexSeeds": { - "c1": 6.957409911666264, - "c2": 7.554288004040641, - "c3": 6.451720517551325, - "c4": 7.601975857801223, - "c5": 7.692912669193944, - "c6": 6.892547840334623, - "c7": 7.15813224279686 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [58, 15, 49] }, @@ -5325,23 +5325,23 @@ "year": 1602, "resistanceReported": false, "duration": 51840000, - "curveSeeds": { - "c1": 61.205220598280945, - "c2": -45.08205992177474, - "c3": -40.491762417864386, - "c4": 19.1563468611336, - "c5": 62.92035630097793, - "c6": 45.47295549284337, - "c7": 20.827793673709266 + "points": { + "c1": 67.65479615164894, + "c2": -24.945093416298363, + "c3": 2.3235167999076225, + "c4": 32.49138941898845, + "c5": -36.607862837413606, + "c6": 47.41714951261201, + "c7": 54.47362287349027 }, - "vertexSeeds": { - "c1": 6.254322749404695, - "c2": 5.981042020693898, - "c3": 6.891235828640003, - "c4": 6.213709247341766, - "c5": 5.645516471497922, - "c6": 5.991734486207306, - "c7": 5.75597592600134 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318997, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567729993, + "c7": 1.6458622283865043 }, "rgb": [58, 15, 49] }, @@ -5352,23 +5352,23 @@ "year": 1602, "resistanceReported": false, "duration": 55296000, - "curveSeeds": { - "c1": 65.65956445328356, - "c2": 47.17286171651139, - "c3": -60.639387211741195, - "c4": -25.73381068129931, - "c5": 34.29082470908773, - "c6": 60.32913946701851, - "c7": 64.52200096354818 + "points": { + "c1": -39.66188666025559, + "c2": 38.27343066077661, + "c3": -32.93350446955359, + "c4": 13.497869009305134, + "c5": -26.574986312254175, + "c6": 72.06675055719961, + "c7": -68.71633901269382 }, - "vertexSeeds": { - "c1": 6.303319857515387, - "c2": 5.966986051674174, - "c3": 6.718751024187893, - "c4": 6.932179288833593, - "c5": 7.307838844016766, - "c6": 7.306100132087234, - "c7": 6.949221988377336 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736938, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.513638465094777, + "c7": 1.7568192325473933 }, "rgb": [77, 76, 132] }, @@ -5379,23 +5379,23 @@ "year": 1601, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 12.150901839328512, - "c2": 24.587955353776273, - "c3": 13.842432325834608, - "c4": 10.69207294717095, - "c5": 7.327348363493172, - "c6": 20.995917041882336, - "c7": 13.53609478509344 + "points": { + "c1": -21.85098283637459, + "c2": -14.373994769911263, + "c3": 30.5870355545388, + "c4": -18.7426329313263, + "c5": 20.077325311051517, + "c6": -2.888055723809515, + "c7": 4.777259751799498 }, - "vertexSeeds": { - "c1": 5.615189007327967, - "c2": 5.520732034099137, - "c3": 6.205104274994159, - "c4": 6.239094381862829, - "c5": 6.290920087279172, - "c6": 5.6992873757505675, - "c7": 5.859863686371776 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318997, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567729993, + "c7": 1.6458622283865043 }, "rgb": [77, 76, 132] }, @@ -5406,23 +5406,23 @@ "year": 1601, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": -39.17433173038696, - "c2": 39.65813564583277, - "c3": -23.173788396711043, - "c4": 38.62471026325302, - "c5": -31.296959186778185, - "c6": 13.093835447551314, - "c7": -44.911709334454606 + "points": { + "c1": 28.053108283191847, + "c2": -11.478638307935363, + "c3": 19.0806295620862, + "c4": -47.2680825491545, + "c5": 3.959736987832109, + "c6": -25.506839883153397, + "c7": -0.9654057560993721 }, - "vertexSeeds": { - "c1": 6.325337914144127, - "c2": 6.36678819225186, - "c3": 6.899759693281819, - "c4": 6.400208280217615, - "c5": 6.24369706571091, - "c6": 6.486043056087877, - "c7": 6.36606725556171 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485436, + "c3": 8.899676375404532, + "c4": 7.119741100323624, + "c5": 5.339805825242718, + "c6": 3.559870550161812, + "c7": 1.779935275080906 }, "rgb": [77, 76, 132] }, @@ -5433,23 +5433,23 @@ "year": 1602, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": 1.8092536689917935, - "c2": -23.30357304962255, - "c3": 3.411778745027526, - "c4": 21.779541020765016, - "c5": 29.00385923872198, - "c6": 5.304190666840491, - "c7": 23.904057166231574 + "points": { + "c1": -18.060491656062524, + "c2": 29.0235643566431, + "c3": 51.56067450033829, + "c4": -38.057590132482915, + "c5": 59.777334397277436, + "c6": 35.488704247951254, + "c7": -26.14186579170437 }, - "vertexSeeds": { - "c1": 7.183142524237047, - "c2": 7.108286733435108, - "c3": 6.54187025674035, - "c4": 6.9695812844349465, - "c5": 6.739026435149657, - "c6": 7.3787570541592, - "c7": 7.152655475118897 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [222, 0, 59] }, @@ -5460,23 +5460,23 @@ "year": 1602, "resistanceReported": false, "duration": 46396800, - "curveSeeds": { - "c1": 17.460668746230752, - "c2": 36.76461759150078, - "c3": -0.1293676210768453, - "c4": -11.810762566583087, - "c5": 55.252843481673395, - "c6": 34.314830907737445, - "c7": -47.023507691616715 + "points": { + "c1": -55.68204773406967, + "c2": -30.061525158352275, + "c3": 62.17871768395324, + "c4": 60.18271420220917, + "c5": -41.056752424238596, + "c6": -3.959534527624406, + "c7": 53.80171423479986 }, - "vertexSeeds": { - "c1": 5.273063951602904, - "c2": 4.844260040079654, - "c3": 4.717523592600365, - "c4": 5.714016313204995, - "c5": 5.0172965049563905, - "c6": 5.707426722191192, - "c7": 5.480915089432443 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622746, + "c3": 7.027276930189547, + "c4": 5.621821544151644, + "c5": 4.216366158113733, + "c6": 2.81091077207582, + "c7": 1.4054553860379078 }, "rgb": [77, 76, 132] }, @@ -5487,23 +5487,23 @@ "year": 1602, "resistanceReported": false, "duration": 45273600, - "curveSeeds": { - "c1": 38.958994945273176, - "c2": -46.006109670385634, - "c3": 8.513225376027819, - "c4": 57.359959879928326, - "c5": 24.40193463026027, - "c6": 18.316958740891252, - "c7": 17.20616160087711 + "points": { + "c1": 59.47334691198084, + "c2": 44.85673379750622, + "c3": 20.257046510048554, + "c4": -9.509495930210782, + "c5": -21.684486332102637, + "c6": 53.43632457193324, + "c7": 25.179573019055894 }, - "vertexSeeds": { - "c1": 7.386683527537047, - "c2": 7.844933928383162, - "c3": 7.833512285782323, - "c4": 8.423177957724475, - "c5": 6.940905295268281, - "c6": 6.8381097475864765, - "c7": 7.432319692286424 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657418, + "c3": 10.147942672214521, + "c4": 8.118354137771615, + "c5": 6.088765603328709, + "c6": 4.059177068885803, + "c7": 2.0295885344429063 }, "rgb": [238, 201, 159] }, @@ -5514,23 +5514,23 @@ "year": 1605, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": -47.12512767299888, - "c2": 31.533743023820634, - "c3": 49.32021954270947, - "c4": -55.03696055821749, - "c5": 31.019256022665402, - "c6": -30.71324619395959, - "c7": 45.2436769698932 + "points": { + "c1": -8.972944066616876, + "c2": -42.14241621649216, + "c3": 20.695108320985312, + "c4": 29.511470052058954, + "c5": 15.940901037386041, + "c6": 44.86754991414223, + "c7": -4.2843543366203605 }, - "vertexSeeds": { - "c1": 6.279470152519496, - "c2": 5.90475706476277, - "c3": 5.212615048708912, - "c4": 5.487755574038592, - "c5": 5.864923987849208, - "c6": 6.2802889386029195, - "c7": 5.627798441374466 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [77, 76, 132] }, @@ -5541,23 +5541,23 @@ "year": 1605, "resistanceReported": false, "duration": 51580800, - "curveSeeds": { - "c1": -4.001566059396353, - "c2": -17.61352988225176, - "c3": -50.43978075238977, - "c4": 46.289892573396116, - "c5": 16.662518672329938, - "c6": -25.75468032820659, - "c7": 19.87962559896262 + "points": { + "c1": 49.5115741464343, + "c2": 26.499903430958724, + "c3": 19.91119663420288, + "c4": -16.520138205154268, + "c5": -24.64013906799652, + "c6": 6.933415459388115, + "c7": -27.981132367300084 }, - "vertexSeeds": { - "c1": 5.912947971774607, - "c2": 6.287722138808169, - "c3": 6.504388766710813, - "c4": 5.327453611027664, - "c5": 5.7970273544367545, - "c6": 5.273620823292512, - "c7": 6.3566912818248005 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159501, + "c3": 7.8132223763291755, + "c4": 6.250577901063343, + "c5": 4.687933425797509, + "c6": 3.1252889505316666, + "c7": 1.5626444752658424 }, "rgb": [77, 76, 132] }, @@ -5568,23 +5568,23 @@ "year": 1605, "resistanceReported": false, "duration": 51840000, - "curveSeeds": { - "c1": 13.421640180874363, - "c2": 27.244510374011824, - "c3": 32.74457124026313, - "c4": 4.995832867683717, - "c5": 52.93118217349543, - "c6": 39.17395637441025, - "c7": 2.1010475123041488 + "points": { + "c1": 51.87248519490508, + "c2": -25.03747092187507, + "c3": 19.217478426592635, + "c4": 14.832021694417449, + "c5": -14.06644016405756, + "c6": -0.4050968993474271, + "c7": 3.5939159026963665 }, - "vertexSeeds": { - "c1": 5.621056790306115, - "c2": 4.780294282061302, - "c3": 5.322612920647252, - "c4": 4.654068178320773, - "c5": 4.871373020075881, - "c6": 4.978672231701058, - "c7": 5.10799270045398 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905692, + "c3": 6.842348589921405, + "c4": 5.47387887193712, + "c5": 4.105409153952843, + "c6": 2.736939435968562, + "c7": 1.368469717984281 }, "rgb": [222, 0, 59] }, @@ -5595,23 +5595,23 @@ "year": 1605, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -21.458830230173355, - "c2": 0.9063381983121168, - "c3": 7.549071282419071, - "c4": -12.889638059485085, - "c5": 5.507934325140891, - "c6": -14.317703304543237, - "c7": 3.727740445431799 + "points": { + "c1": -23.196822385092517, + "c2": -23.651588907964733, + "c3": -15.198245174908612, + "c4": 3.3260390192093823, + "c5": 14.10447777545302, + "c6": -15.000466951088773, + "c7": -4.971080672673249 }, - "vertexSeeds": { - "c1": 7.307730739629918, - "c2": 7.595181613993141, - "c3": 7.259667130112708, - "c4": 7.351253860660588, - "c5": 6.843541711236735, - "c6": 6.1263929096941565, - "c7": 6.7802346851272475 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887658, + "c3": 9.130836800739717, + "c4": 7.304669440591766, + "c5": 5.478502080443825, + "c6": 3.652334720295883, + "c7": 1.8261673601479416 }, "rgb": [86, 146, 138] }, @@ -5622,23 +5622,23 @@ "year": 1606, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 34.558204148307944, - "c2": 5.855467834387312, - "c3": -48.742999738969054, - "c4": -24.49014758492243, - "c5": 46.52955818680936, - "c6": 7.558009790939629, - "c7": 47.681056086740476 + "points": { + "c1": 49.51330490089462, + "c2": 20.800789356361342, + "c3": 17.917611029088256, + "c4": -0.18799122504518806, + "c5": 53.29511363861831, + "c6": 45.43759320611529, + "c7": 35.4491945662672 }, - "vertexSeeds": { - "c1": 6.188535091342137, - "c2": 5.930193506541935, - "c3": 6.352351515829224, - "c4": 5.537526948664827, - "c5": 5.633966019070089, - "c6": 5.557101956565836, - "c7": 6.353938360789005 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474344, + "c3": 7.7438742487286145, + "c4": 6.195099398982893, + "c5": 4.646324549237172, + "c6": 3.0975496994914513, + "c7": 1.548774849745721 }, "rgb": [58, 15, 49] }, @@ -5649,23 +5649,23 @@ "year": 1605, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -29.915711640777893, - "c2": 11.576065730406036, - "c3": 8.996524953708061, - "c4": 0.5224591355941612, - "c5": 25.344490617716318, - "c6": 1.9037590174753518, - "c7": 20.583291278312096 + "points": { + "c1": -32.977756195482264, + "c2": -9.27261644184917, + "c3": 13.423295613600281, + "c4": -3.3250707561283583, + "c5": 2.3062844796493422, + "c6": 14.807063149813658, + "c7": -18.936702936736477 }, - "vertexSeeds": { - "c1": 7.716091146017821, - "c2": 6.290020879929002, - "c3": 7.086620867547234, - "c4": 7.359932937547104, - "c5": 7.229306158768232, - "c6": 7.546902544018455, - "c7": 6.881801157025572 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169215, + "c3": 9.29264909847434, + "c4": 7.434119278779476, + "c5": 5.575589459084603, + "c6": 3.717059639389738, + "c7": 1.8585298196948643 }, "rgb": [86, 146, 138] }, @@ -5676,23 +5676,23 @@ "year": 1608, "resistanceReported": false, "duration": 94608000, - "curveSeeds": { - "c1": 71.16599524970803, - "c2": -16.4883283492307, - "c3": 97.82403262370494, - "c4": -21.829678717348017, - "c5": 52.531409859890715, - "c6": 80.5337411425783, - "c7": 7.603452003314885 + "points": { + "c1": 51.662475236130746, + "c2": 59.70325354559941, + "c3": -54.99867168474741, + "c4": -107.62151627660477, + "c5": -76.55234521150439, + "c6": 66.2662401939213, + "c7": -83.5042456439474 }, - "vertexSeeds": { - "c1": 4.864657843473008, - "c2": 3.484253480544314, - "c3": 5.237127177248066, - "c4": 4.459915196947717, - "c5": 4.42758285641093, - "c6": 4.769147798013128, - "c7": 4.844414610431609 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055477, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.7739251040221906, + "c7": 1.386962552011096 }, "rgb": [222, 0, 59] }, @@ -5703,23 +5703,23 @@ "year": 1609, "resistanceReported": false, "duration": 106358400, - "curveSeeds": { - "c1": 95.11732407472718, - "c2": 58.876428841188044, - "c3": 8.319873659049847, - "c4": -107.6760631942692, - "c5": 18.72157846273342, - "c6": 9.098757936919469, - "c7": -63.02806942961103 + "points": { + "c1": -76.68213216996345, + "c2": 107.11699163390958, + "c3": -85.64743437927729, + "c4": -28.767000951491582, + "c5": 95.69501216396515, + "c6": -121.9618352191823, + "c7": -43.2960372857853 }, - "vertexSeeds": { - "c1": 6.3647851452437285, - "c2": 6.227616097123806, - "c3": 6.215135274752219, - "c4": 5.792970474652418, - "c5": 5.564930485627087, - "c6": 5.532813627003327, - "c7": 6.4268709243773525 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [77, 76, 132] }, @@ -5730,23 +5730,23 @@ "year": 1609, "resistanceReported": false, "duration": 51753600, - "curveSeeds": { - "c1": 54.1324455087737, - "c2": -14.981187548396854, - "c3": 26.36883972519628, - "c4": -49.179977966747614, - "c5": -29.501465732314323, - "c6": 61.3768943848943, - "c7": 18.278712364989218 + "points": { + "c1": -68.59421831216488, + "c2": 46.04990900157705, + "c3": -65.63399111474355, + "c4": -35.639754625497446, + "c5": -4.865353817184555, + "c6": 45.76826166724008, + "c7": -10.963825646351353 }, - "vertexSeeds": { - "c1": 6.262670476055453, - "c2": 6.583323937258468, - "c3": 5.882712776516073, - "c4": 6.089359810662214, - "c5": 5.729426993783599, - "c6": 6.902813209832113, - "c7": 5.7392809869916075 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [58, 15, 49] }, @@ -5757,23 +5757,23 @@ "year": 1609, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 28.084217778098036, - "c2": 11.327097245461836, - "c3": 5.370459189332607, - "c4": -35.09951466893125, - "c5": -4.037975765477917, - "c6": 6.835163615315281, - "c7": -27.57396945828131 + "points": { + "c1": 4.019721264386753, + "c2": 33.724867721568316, + "c3": -17.52234965392414, + "c4": -3.203454707585557, + "c5": 16.00787075776035, + "c6": 24.048499102330965, + "c7": -1.8069948579976867 }, - "vertexSeeds": { - "c1": 6.858233523259119, - "c2": 6.23569381156263, - "c3": 6.0815646593283015, - "c4": 6.509647844578275, - "c5": 6.811848891918347, - "c6": 6.227981983643869, - "c7": 5.853924972714167 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [238, 201, 159] }, @@ -5784,23 +5784,23 @@ "year": 1610, "resistanceReported": false, "duration": 70243200, - "curveSeeds": { - "c1": 36.21616126611076, - "c2": 62.609282686793335, - "c3": 24.443041583606814, - "c4": -21.963779422345837, - "c5": 38.44128165475067, - "c6": -53.19257262192447, - "c7": 67.0502325792564 + "points": { + "c1": 60.318649949959365, + "c2": 56.33090778104179, + "c3": -88.11177551601689, + "c4": -13.621529717880563, + "c5": 0.909422880111066, + "c6": -48.578331672499495, + "c7": 78.9968024567822 }, - "vertexSeeds": { - "c1": 7.180689583887139, - "c2": 6.466521580357927, - "c3": 6.118822620929402, - "c4": 7.094050961029359, - "c5": 6.410554287466139, - "c6": 6.435106021521092, - "c7": 6.476503258259151 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736938, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.513638465094777, + "c7": 1.7568192325473933 }, "rgb": [222, 0, 59] }, @@ -5811,23 +5811,23 @@ "year": 1610, "resistanceReported": false, "duration": 47174400, - "curveSeeds": { - "c1": 45.17897061420614, - "c2": -9.425639357367288, - "c3": -16.124066486766765, - "c4": -30.29548351281202, - "c5": 20.64878658372738, - "c6": 25.09218435908685, - "c7": -42.437978261653456 + "points": { + "c1": -29.781166194835322, + "c2": -23.006133805956402, + "c3": -59.56364850967617, + "c4": 45.5422102066532, + "c5": 4.502772599579025, + "c6": -28.876184037868576, + "c7": -24.00456141908775 }, - "vertexSeeds": { - "c1": 4.621025825129758, - "c2": 4.367409668737036, - "c3": 4.472211484059835, - "c4": 4.213572912616553, - "c5": 4.579170483798492, - "c6": 4.094082196252049, - "c7": 4.763875019596233 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975033, + "c3": 5.73277854831253, + "c4": 4.586222838650023, + "c5": 3.439667128987519, + "c6": 2.2931114193250113, + "c7": 1.1465557096625034 }, "rgb": [86, 146, 138] }, @@ -5838,23 +5838,23 @@ "year": 1609, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 12.546305322199103, - "c2": -9.625822802114218, - "c3": -1.872063737119241, - "c4": -4.009098559266693, - "c5": -15.45563412244893, - "c6": -32.93071385732048, - "c7": 29.1910207340999 + "points": { + "c1": -24.277245051108924, + "c2": -20.8183771357114, + "c3": 34.293920772353275, + "c4": -32.39108885359518, + "c5": 16.839145124661982, + "c6": -24.405885324505938, + "c7": -25.997091548690236 }, - "vertexSeeds": { - "c1": 6.3236495109244615, - "c2": 6.226562759084681, - "c3": 7.41895703335731, - "c4": 7.334639191196368, - "c5": 7.308363501191779, - "c6": 7.138350323937861, - "c7": 7.220320337615373 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [222, 0, 59] }, @@ -5865,23 +5865,23 @@ "year": 1611, "resistanceReported": false, "duration": 63072000, - "curveSeeds": { - "c1": 22.692979016860818, - "c2": 9.57464544697018, - "c3": -13.059113822537654, - "c4": -63.64036709394043, - "c5": -46.567798939834354, - "c6": -37.729211004837644, - "c7": -41.94559612364409 + "points": { + "c1": -13.797741816800396, + "c2": 38.721357828066374, + "c3": 56.18112631595403, + "c4": 9.73452491951204, + "c5": 71.78924138172698, + "c6": -16.31796645320611, + "c7": 3.0021990478602874 }, - "vertexSeeds": { - "c1": 5.678651462526908, - "c2": 5.779248620337989, - "c3": 6.249230387239086, - "c4": 6.174575950733842, - "c5": 5.44250042164336, - "c6": 6.542427611061035, - "c7": 5.435816187888476 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635226, + "c3": 7.836338418862688, + "c4": 6.269070735090148, + "c5": 4.701803051317609, + "c6": 3.13453536754507, + "c7": 1.5672676837725301 }, "rgb": [86, 146, 138] }, @@ -5892,23 +5892,23 @@ "year": 1611, "resistanceReported": false, "duration": 82080000, - "curveSeeds": { - "c1": 89.49723537140336, - "c2": 58.91626588194684, - "c3": 52.201190611719554, - "c4": 98.92884452002515, - "c5": 57.29834741072115, - "c6": -51.46373922153235, - "c7": -66.20033908515381 + "points": { + "c1": -69.97787333375516, + "c2": -101.43485407867415, + "c3": 23.96909814008778, + "c4": 24.240745946558093, + "c5": -21.670327388630255, + "c6": -46.128421289279814, + "c7": 6.695770079874464 }, - "vertexSeeds": { - "c1": 6.753446299878081, - "c2": 6.283862710104217, - "c3": 6.726075364914094, - "c4": 6.782556551623785, - "c5": 6.767088627883878, - "c6": 6.7641668142715545, - "c7": 6.9657033883110655 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736938, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.513638465094777, + "c7": 1.7568192325473933 }, "rgb": [58, 15, 49] }, @@ -5919,23 +5919,23 @@ "year": 1609, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 5.307906886362272, - "c2": -2.994579685667027, - "c3": -19.482912717147236, - "c4": 16.934278809797295, - "c5": 11.198946228984628, - "c6": -9.93123462355473, - "c7": -20.182535860507013 + "points": { + "c1": -11.243923487313246, + "c2": -16.137517606553175, + "c3": -15.237849576339345, + "c4": -1.1296484387303707, + "c5": 18.974115988657832, + "c6": -27.172650959937258, + "c7": 26.11704576558731 }, - "vertexSeeds": { - "c1": 7.089246729896655, - "c2": 8.089249386723692, - "c3": 7.7700546217376685, - "c4": 7.459526590823668, - "c5": 6.719569939624048, - "c6": 6.997099268518793, - "c7": 7.064643693635068 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295425, + "c3": 9.939898289412856, + "c4": 7.951918631530277, + "c5": 5.963938973647707, + "c6": 3.9759593157651385, + "c7": 1.9879796578825693 }, "rgb": [222, 0, 59] }, @@ -5946,23 +5946,23 @@ "year": 1609, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 16.49699052480838, - "c2": -11.49134752568536, - "c3": -19.698625378017027, - "c4": 17.206400198868426, - "c5": -24.04195317568118, - "c6": -14.721639226972796, - "c7": 18.267334522021937 + "points": { + "c1": -8.751398843688769, + "c2": -4.419951571646667, + "c3": 31.404585829866573, + "c4": -30.81716735750162, + "c5": -17.02677673781664, + "c6": -13.43786965209707, + "c7": -2.118308406490179 }, - "vertexSeeds": { - "c1": 6.098653713747474, - "c2": 6.857555430368694, - "c3": 6.531901343397102, - "c4": 5.7288719943047655, - "c5": 5.9605435507728375, - "c6": 6.200957648758158, - "c7": 5.748171857384021 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [222, 0, 59] }, @@ -5973,23 +5973,23 @@ "year": 1610, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 32.84035458301699, - "c2": 27.932523600880415, - "c3": -0.7797820244032962, - "c4": -15.220900092314068, - "c5": -27.62405439224768, - "c6": -3.0370414865535764, - "c7": 5.910086601379966 + "points": { + "c1": -36.731003960595196, + "c2": -5.954776555586129, + "c3": -0.5700156642981611, + "c4": 5.882063681107553, + "c5": 23.170307929438792, + "c6": 0.20772007846825602, + "c7": -3.5913497354090893 }, - "vertexSeeds": { - "c1": 6.459719851891898, - "c2": 5.897978695980668, - "c3": 5.567661828395808, - "c4": 6.79212486416148, - "c5": 5.737490379503543, - "c6": 5.678292398532492, - "c7": 6.269729805280142 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -6000,23 +6000,23 @@ "year": 1613, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": -21.537662909622625, - "c2": -2.1668946993405456, - "c3": 20.89482343951704, - "c4": 11.89080502328271, - "c5": 9.527445673209527, - "c6": 39.89248911314051, - "c7": -60.76296692922561 + "points": { + "c1": 46.089226535811974, + "c2": 22.11066905672955, + "c3": -61.281088400251406, + "c4": -11.205724550668691, + "c5": -22.935942615215062, + "c6": 12.687107349836197, + "c7": -70.73200113382842 }, - "vertexSeeds": { - "c1": 6.369931504785724, - "c2": 6.650141569390635, - "c3": 6.426690907458229, - "c4": 6.388885609481715, - "c5": 6.76450767167098, - "c6": 6.554239065512679, - "c7": 6.117006715496151 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -6027,23 +6027,23 @@ "year": 1613, "resistanceReported": false, "duration": 85795200, - "curveSeeds": { - "c1": -14.867789588069769, - "c2": -8.01873537151613, - "c3": 10.670136217548958, - "c4": 45.103426795343594, - "c5": 92.94788883691008, - "c6": 10.193739072852878, - "c7": 5.164632870671923 + "points": { + "c1": 12.584687682392342, + "c2": -0.3841887897356031, + "c3": -58.75883599907611, + "c4": 77.08716474770783, + "c5": -51.580659837525026, + "c6": 7.230351704111641, + "c7": -20.862017689750118 }, - "vertexSeeds": { - "c1": 6.237675100180062, - "c2": 6.506240291489945, - "c3": 5.4060580122717665, - "c4": 5.4866406808749595, - "c5": 5.866597963098678, - "c6": 6.381371496786885, - "c7": 5.968546415548969 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996764, + "c4": 6.343042071197411, + "c5": 4.757281553398058, + "c6": 3.1715210355987056, + "c7": 1.5857605177993528 }, "rgb": [86, 146, 138] }, @@ -6054,23 +6054,23 @@ "year": 1613, "resistanceReported": false, "duration": 1296000, - "curveSeeds": { - "c1": -4.486500303578803, - "c2": -10.873650859628125, - "c3": 11.008483667632518, - "c4": -6.206225870448888, - "c5": 6.658191227386499, - "c6": 9.078054819639142, - "c7": -5.382170284505594 + "points": { + "c1": -10.991315797822576, + "c2": 3.9180941339986965, + "c3": -1.2836367870652179, + "c4": -6.461758998925276, + "c5": 5.010256658628851, + "c6": 7.801514171332851, + "c7": -2.7040644783006034 }, - "vertexSeeds": { - "c1": 5.83541752277673, - "c2": 5.493152295095605, - "c3": 5.81052721990791, - "c4": 5.674631063155043, - "c5": 5.591397826785157, - "c6": 6.214585645049981, - "c7": 6.283310245902392 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876565, + "c3": 7.9750346740638, + "c4": 6.380027739251043, + "c5": 4.785020804438278, + "c6": 3.1900138696255214, + "c7": 1.5950069348127565 }, "rgb": [238, 201, 159] }, @@ -6081,23 +6081,23 @@ "year": 1615, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 27.348113580730327, - "c2": -28.992468063447923, - "c3": 2.7693161373708364, - "c4": 29.879863550665675, - "c5": 43.84856572499699, - "c6": 25.024153726438, - "c7": -39.639807657826346 + "points": { + "c1": -42.17949470944845, + "c2": 18.520620595315847, + "c3": -13.631320691420797, + "c4": -35.98563587095083, + "c5": 40.882097611185415, + "c6": 14.560318898184946, + "c7": -0.23152642606778073 }, - "vertexSeeds": { - "c1": 6.661824231351248, - "c2": 5.800679023660444, - "c3": 6.605456372180402, - "c4": 6.133200352621836, - "c5": 6.496260414561895, - "c6": 6.126761498331959, - "c7": 5.6931935884205105 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [58, 15, 49] }, @@ -6108,23 +6108,23 @@ "year": 1615, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -10.673674213002592, - "c2": 40.87753678577834, - "c3": -38.92493829329884, - "c4": 23.97614277103461, - "c5": 5.084285715341558, - "c6": 26.945263007310253, - "c7": 33.173755417236585 + "points": { + "c1": -31.405761250262252, + "c2": 15.964071599032096, + "c3": 43.15526919377101, + "c4": 35.483523758777984, + "c5": -22.753938507270863, + "c6": -7.12024247861136, + "c7": 7.604227536575529 }, - "vertexSeeds": { - "c1": 6.126746941674283, - "c2": 6.47610024863035, - "c3": 6.990034446801287, - "c4": 6.708350214763259, - "c5": 5.968439217367238, - "c6": 6.063129100788192, - "c7": 5.943218256720893 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [238, 201, 159] }, @@ -6135,23 +6135,23 @@ "year": 1616, "resistanceReported": false, "duration": 52358400, - "curveSeeds": { - "c1": 60.33403694339815, - "c2": -0.3506115057495549, - "c3": 35.47650823871243, - "c4": 58.297460523425684, - "c5": -13.241829086862928, - "c6": 33.72485744605521, - "c7": 20.871571541664878 + "points": { + "c1": -48.47430689233366, + "c2": 40.822511187254634, + "c3": 4.117595162136894, + "c4": 30.274729029901152, + "c5": -52.6218778288988, + "c6": 29.590586813768297, + "c7": -23.117364354116887 }, - "vertexSeeds": { - "c1": 7.259994061048028, - "c2": 6.947103165494762, - "c3": 7.221924608394765, - "c4": 7.419849830126379, - "c5": 7.219366783413726, - "c6": 7.086123933192887, - "c7": 7.00787378300916 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [58, 15, 49] }, @@ -6162,23 +6162,23 @@ "year": 1617, "resistanceReported": false, "duration": 55209600, - "curveSeeds": { - "c1": 4.158851325363472, - "c2": -0.4771026033689907, - "c3": -10.377220810484332, - "c4": 40.84897112056332, - "c5": -27.038282669039894, - "c6": -17.604105334461906, - "c7": 24.53305318659214 + "points": { + "c1": -0.6975385831145644, + "c2": -49.60200826663105, + "c3": 22.4402845228977, + "c4": -40.496673630720444, + "c5": -45.88784157814902, + "c6": -59.68494811728634, + "c7": -44.10406863686248 }, - "vertexSeeds": { - "c1": 6.225585633654369, - "c2": 6.904005721219608, - "c3": 7.378546559047613, - "c4": 6.6981432714148665, - "c5": 6.993590990806325, - "c6": 7.302094001189124, - "c7": 6.544201060837675 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [238, 201, 159] }, @@ -6189,23 +6189,23 @@ "year": 1617, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": 16.34371188497265, - "c2": 43.02908620372109, - "c3": 7.603163208068764, - "c4": -25.498947092777456, - "c5": 33.729963162819615, - "c6": 44.07000017396469, - "c7": -35.621908626112116 + "points": { + "c1": 54.34850309174536, + "c2": 29.54667088295524, + "c3": -53.433019365772445, + "c4": -57.833324202597765, + "c5": 14.811740664533957, + "c6": -2.1745641906373834, + "c7": -13.714736225626844 }, - "vertexSeeds": { - "c1": 6.54859873606683, - "c2": 7.064953927525208, - "c3": 7.473999344710829, - "c4": 7.214059386582207, - "c5": 6.640843926608462, - "c6": 7.845829102753411, - "c7": 7.38323193991893 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [86, 146, 138] }, @@ -6216,23 +6216,23 @@ "year": 1617, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": -0.6826129104199126, - "c2": -33.98947938751094, - "c3": -34.44096792809068, - "c4": -37.226313998268104, - "c5": 26.559051784767703, - "c6": -16.984679683173283, - "c7": -1.2587896603725781 + "points": { + "c1": 17.119810392969782, + "c2": -9.546976353088404, + "c3": 28.267641304467077, + "c4": -2.6303263348553827, + "c5": -47.513539748407155, + "c6": 31.985363792544774, + "c7": -18.131763749866828 }, - "vertexSeeds": { - "c1": 7.117847122531753, - "c2": 6.436314225086851, - "c3": 6.8089914874863435, - "c4": 6.67241483670424, - "c5": 6.017935115308474, - "c6": 7.167985560848678, - "c7": 6.881835929007072 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [238, 201, 159] }, @@ -6243,23 +6243,23 @@ "year": 1617, "resistanceReported": false, "duration": 51753600, - "curveSeeds": { - "c1": 47.80611155880398, - "c2": 44.34585512261067, - "c3": -53.02788569134114, - "c4": 49.218316697974174, - "c5": -18.944245360074866, - "c6": 38.91124856053315, - "c7": 65.60537115423831 + "points": { + "c1": 66.95117511340281, + "c2": 61.16629074370839, + "c3": 15.528425882624077, + "c4": 56.721129076415494, + "c5": -64.15749551764802, + "c6": -3.2970338482091677, + "c7": 33.341900778525044 }, - "vertexSeeds": { - "c1": 6.456791844203405, - "c2": 7.0418561617027615, - "c3": 5.770111261889649, - "c4": 5.8650023582100035, - "c5": 6.0314252952615295, - "c6": 7.1317846698182095, - "c7": 6.47017292785317 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [222, 0, 59] }, @@ -6270,23 +6270,23 @@ "year": 1617, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": -38.62756842131451, - "c2": -6.978376840465444, - "c3": -47.1201027023249, - "c4": -16.73680676432481, - "c5": -42.39385557808893, - "c6": 3.4340911369369778, - "c7": 47.431392918495845 + "points": { + "c1": -31.920905707724984, + "c2": -44.42108903490752, + "c3": 24.600650819445818, + "c4": -13.613176206228474, + "c5": 9.081055668186153, + "c6": 14.6884658194043, + "c7": 27.216890730211787 }, - "vertexSeeds": { - "c1": 6.5672981817001315, - "c2": 7.01462126207427, - "c3": 7.736673040266514, - "c4": 6.944603309107071, - "c5": 6.63851585311896, - "c6": 6.838072088588321, - "c7": 7.925670835183817 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [77, 76, 132] }, @@ -6297,23 +6297,23 @@ "year": 1617, "resistanceReported": false, "duration": 47347200, - "curveSeeds": { - "c1": -31.061504226169486, - "c2": -44.08196822148301, - "c3": 26.84359849496846, - "c4": 13.949627690127443, - "c5": -6.948059858282285, - "c6": -57.01783544340742, - "c7": -58.669183638266055 + "points": { + "c1": 54.008663188718316, + "c2": -42.116516154033036, + "c3": 50.41113732770084, + "c4": -40.627448201969315, + "c5": 48.4286514114345, + "c6": -31.584405463346123, + "c7": -17.972521996854375 }, - "vertexSeeds": { - "c1": 7.250067812484189, - "c2": 7.577723506301906, - "c3": 7.546186515295577, - "c4": 6.730047947405022, - "c5": 7.747469842833603, - "c6": 7.723108966269249, - "c7": 7.050998506407947 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [222, 0, 59] }, @@ -6324,23 +6324,23 @@ "year": 1617, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": -29.988330825995746, - "c2": -15.329329082105353, - "c3": 54.144231465657256, - "c4": -18.2974409292486, - "c5": 4.9453498837918275, - "c6": -45.47787896310747, - "c7": 15.607689789294511 + "points": { + "c1": -30.345868147178074, + "c2": -20.5066354200928, + "c3": -48.26832751959021, + "c4": -39.048300655372174, + "c5": 42.52746926404326, + "c6": -52.02949909023701, + "c7": 54.76142720637648 }, - "vertexSeeds": { - "c1": 5.660440752735131, - "c2": 5.437130584061126, - "c3": 5.72596708461255, - "c4": 5.84929446251106, - "c5": 6.36369072301907, - "c6": 6.072406187501734, - "c7": 6.56583123548835 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [58, 15, 49] }, @@ -6351,23 +6351,23 @@ "year": 1617, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 25.773372588091732, - "c2": 23.19536892889026, - "c3": 36.56725701207685, - "c4": -45.578268503135554, - "c5": -20.87198190695286, - "c6": 15.239228611953862, - "c7": -44.39351081436127 + "points": { + "c1": 0.23116008564824142, + "c2": -2.8651985101002424, + "c3": 23.91243040607901, + "c4": 7.692893770044265, + "c5": -38.784579027503824, + "c6": 36.91248456222442, + "c7": 2.1375261899925917 }, - "vertexSeeds": { - "c1": 7.723713952667339, - "c2": 7.571937269784185, - "c3": 7.572698401621891, - "c4": 7.895438683009556, - "c5": 7.401530060053427, - "c6": 6.869339629423988, - "c7": 7.504371854924775 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [58, 15, 49] }, @@ -6378,23 +6378,23 @@ "year": 1616, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -9.849346146205633, - "c2": 7.550556629157654, - "c3": 28.161987363263215, - "c4": 26.20081271882539, - "c5": -22.74818158320943, - "c6": -26.716755234347406, - "c7": 2.928724747373707 + "points": { + "c1": 6.487061407174494, + "c2": 13.253830986653966, + "c3": -28.98586529691481, + "c4": 10.158903792353627, + "c5": 0.0392387909727816, + "c6": 16.962778573044424, + "c7": -17.027440392052544 }, - "vertexSeeds": { - "c1": 5.6478679214387135, - "c2": 5.589778131357567, - "c3": 6.689662452180808, - "c4": 5.717202411174234, - "c5": 6.546754465144446, - "c6": 6.06900235079259, - "c7": 6.319326040708007 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117887, + "c3": 8.11373092926491, + "c4": 6.490984743411925, + "c5": 4.868238557558948, + "c6": 3.2454923717059625, + "c7": 1.6227461858529768 }, "rgb": [222, 0, 59] }, @@ -6405,23 +6405,23 @@ "year": 1618, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": 51.12943572700047, - "c2": 30.63169108279112, - "c3": 3.5144635500773234, - "c4": -72.34855119059586, - "c5": -46.14969654743493, - "c6": -59.57163306428725, - "c7": 29.821289140101342 + "points": { + "c1": 71.03570216396537, + "c2": 3.3203880625425484, + "c3": 26.691834946918405, + "c4": -63.64029341804909, + "c5": 63.409971473131634, + "c6": -7.159519163710456, + "c7": 46.11001734719575 }, - "vertexSeeds": { - "c1": 6.22068617885107, - "c2": 6.116623358826635, - "c3": 5.454976808717062, - "c4": 5.630267279080528, - "c5": 5.926774191090184, - "c6": 6.566973502934838, - "c7": 6.004222522127365 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635226, + "c3": 7.836338418862688, + "c4": 6.269070735090148, + "c5": 4.701803051317609, + "c6": 3.13453536754507, + "c7": 1.5672676837725301 }, "rgb": [238, 201, 159] }, @@ -6432,23 +6432,23 @@ "year": 1618, "resistanceReported": false, "duration": 70934400, - "curveSeeds": { - "c1": 41.27200143078548, - "c2": -12.219109730620119, - "c3": -9.966017388382426, - "c4": -48.65578929178816, - "c5": -12.214070409270704, - "c6": -40.09017509726481, - "c7": 60.323042747063454 + "points": { + "c1": -62.56320406209278, + "c2": -24.81056329389415, + "c3": 3.3224557418969027, + "c4": 38.31072235567956, + "c5": -79.68705220590192, + "c6": 60.3369349052127, + "c7": -65.93837862130687 }, - "vertexSeeds": { - "c1": 5.883969283243234, - "c2": 6.1614040939079775, - "c3": 6.085152481180307, - "c4": 6.8303314567263, - "c5": 6.6964986874828485, - "c6": 6.564645613962305, - "c7": 6.892212406458965 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [222, 0, 59] }, @@ -6459,23 +6459,23 @@ "year": 1618, "resistanceReported": false, "duration": 81043200, - "curveSeeds": { - "c1": -36.876608715667835, - "c2": 63.01508443091407, - "c3": 35.55694456374138, - "c4": 94.94456292314379, - "c5": 70.14380358055283, - "c6": 32.269377775012, - "c7": 53.47633318802207 + "points": { + "c1": -88.28027184211945, + "c2": -34.5953897123853, + "c3": -1.0617522441250173, + "c4": 85.88573938441226, + "c5": -37.89012067047607, + "c6": 5.151932445011383, + "c7": -70.33206457745283 }, - "vertexSeeds": { - "c1": 6.259036205766207, - "c2": 7.643952838343147, - "c3": 6.611707530967952, - "c4": 6.851627124300781, - "c5": 6.8695725281649676, - "c6": 6.697864657208226, - "c7": 7.66638068579786 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [86, 146, 138] }, @@ -6486,23 +6486,23 @@ "year": 1619, "resistanceReported": false, "duration": 104544000, - "curveSeeds": { - "c1": 11.073304239854863, - "c2": 83.25398442303286, - "c3": 26.432197726669344, - "c4": 23.386308363530034, - "c5": -81.87937767779735, - "c6": -89.553272813837, - "c7": -106.96373929228854 + "points": { + "c1": -106.37236486174137, + "c2": 63.030762126099106, + "c3": 69.96930376898767, + "c4": -41.68800934401625, + "c5": 41.06960819631409, + "c6": 87.80567585781695, + "c7": -88.55583884870038 }, - "vertexSeeds": { - "c1": 6.080955078487035, - "c2": 6.730464197903856, - "c3": 6.247979631265741, - "c4": 5.820888490522767, - "c5": 6.012101343759188, - "c6": 6.962470607567165, - "c7": 7.099429398618331 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801665, + "c3": 8.506703652334723, + "c4": 6.805362921867771, + "c5": 5.104022191400828, + "c6": 3.4026814609338856, + "c7": 1.7013407304669428 }, "rgb": [238, 201, 159] }, @@ -6513,23 +6513,23 @@ "year": 1616, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": 15.742205611850952, - "c2": 15.27723497280924, - "c3": -12.893083043917612, - "c4": 12.7335688366645, - "c5": -7.299383787202466, - "c6": 14.554316275921376, - "c7": -10.511717104366785 + "points": { + "c1": -2.458336565388997, + "c2": 16.301292392854666, + "c3": 15.88152703234552, + "c4": 0.8708174342839143, + "c5": 4.476138363175124, + "c6": 1.7134847107529865, + "c7": 1.0006147720882161 }, - "vertexSeeds": { - "c1": 6.078551084277331, - "c2": 6.810631891777587, - "c3": 6.867764570836089, - "c4": 6.251434485584601, - "c5": 6.796814018227965, - "c6": 6.212821755705607, - "c7": 6.584561625322908 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [238, 201, 159] }, @@ -6540,23 +6540,23 @@ "year": 1617, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -10.007878309065013, - "c2": -41.51030999365574, - "c3": 15.58368759547772, - "c4": -31.411240187379015, - "c5": -0.32027886158928, - "c6": -24.92394054078664, - "c7": 12.8150412514875 + "points": { + "c1": -36.233786265178225, + "c2": -37.15323369044271, + "c3": 9.16220569906691, + "c4": -27.80975301753602, + "c5": -6.233695875832588, + "c6": -22.268009614255956, + "c7": 1.8109487797290669 }, - "vertexSeeds": { - "c1": 7.226432937297586, - "c2": 6.977187669127806, - "c3": 7.41380951512333, - "c4": 8.296821074593396, - "c5": 6.77760231274312, - "c6": 6.7726549365549, - "c7": 7.229864013669829 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295425, + "c3": 9.939898289412856, + "c4": 7.951918631530277, + "c5": 5.963938973647707, + "c6": 3.9759593157651385, + "c7": 1.9879796578825693 }, "rgb": [238, 201, 159] }, @@ -6567,23 +6567,23 @@ "year": 1616, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 2.216650471384227, - "c2": -14.086978262348103, - "c3": 0.26257352809831147, - "c4": -12.504347473590478, - "c5": -17.722911360649405, - "c6": -16.180521361013945, - "c7": -22.095880312272126 + "points": { + "c1": -20.029905946553885, + "c2": 10.028274459999828, + "c3": 13.802708512375652, + "c4": -12.374794043037035, + "c5": -8.969523267458442, + "c6": -6.123383542759669, + "c7": -1.222434679402678 }, - "vertexSeeds": { - "c1": 7.675293934374778, - "c2": 6.417369815217167, - "c3": 6.891090119146913, - "c4": 7.015005612022203, - "c5": 7.947018474025598, - "c6": 7.915066715128179, - "c7": 6.77665837480343 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [58, 15, 49] }, @@ -6594,23 +6594,23 @@ "year": 1616, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -33.908003860701854, - "c2": 1.166288762371444, - "c3": 26.12355311037306, - "c4": -29.511369138636695, - "c5": 3.3600133240404872, - "c6": 17.523817983780923, - "c7": 7.038388667422424 + "points": { + "c1": 1.3192618960697473, + "c2": -13.105244250641007, + "c3": -17.485298750827567, + "c4": -31.62175610211037, + "c5": -31.726905349189554, + "c6": -33.032174502009205, + "c7": -4.470470537103207 }, - "vertexSeeds": { - "c1": 7.066396819635493, - "c2": 7.081567136189053, - "c3": 6.5153466168702145, - "c4": 7.960582775985465, - "c5": 7.951721428526862, - "c6": 6.459921062398139, - "c7": 7.8028490195732 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [238, 201, 159] }, @@ -6621,23 +6621,23 @@ "year": 1617, "resistanceReported": false, "duration": 51235200, - "curveSeeds": { - "c1": -19.38789700732231, - "c2": -7.4125944277192275, - "c3": -48.006094497880426, - "c4": -59.64588465581643, - "c5": 29.127168474111272, - "c6": -29.423690053257765, - "c7": -50.332917299596325 + "points": { + "c1": -46.65164963886582, + "c2": -16.73911996706854, + "c3": 59.97124037659299, + "c4": -46.115634544351565, + "c5": 0.5784521639096027, + "c6": -17.12468885296517, + "c7": -19.402395309700715 }, - "vertexSeeds": { - "c1": 6.759638747099598, - "c2": 5.758442523065232, - "c3": 6.43563158121122, - "c4": 6.669359410200663, - "c5": 6.63144115751231, - "c6": 6.049722841486455, - "c7": 6.69022748639065 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680996, + "c3": 8.43735552473417, + "c4": 6.749884419787334, + "c5": 5.062413314840498, + "c6": 3.374942209893662, + "c7": 1.6874711049468356 }, "rgb": [77, 76, 132] }, @@ -6648,23 +6648,23 @@ "year": 1618, "resistanceReported": false, "duration": 65145600, - "curveSeeds": { - "c1": 35.54495860990272, - "c2": -38.54076260146049, - "c3": 17.341870262809152, - "c4": 13.441622519603584, - "c5": 26.34811470371106, - "c6": 21.623542138874853, - "c7": 73.15840274614304 + "points": { + "c1": -71.99400443820079, + "c2": 82.21235066013558, + "c3": -73.52032433414156, + "c4": -52.105931363048825, + "c5": 39.87844145810763, + "c6": -38.24499106025481, + "c7": -29.72697227571112 }, - "vertexSeeds": { - "c1": 7.294798710126263, - "c2": 6.989787891118008, - "c3": 6.162306071528041, - "c4": 7.248421525998481, - "c5": 6.656117866970814, - "c6": 7.273001943526277, - "c7": 6.49147247599512 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736938, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.513638465094777, + "c7": 1.7568192325473933 }, "rgb": [222, 0, 59] }, @@ -6675,23 +6675,23 @@ "year": 1617, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": -1.5036678903147163, - "c2": 39.86165974955202, - "c3": -13.489980323995603, - "c4": -44.89988906231634, - "c5": 9.272914411270655, - "c6": -22.747579899537726, - "c7": -17.719296993649614 + "points": { + "c1": -41.60499142876849, + "c2": 4.067797235710422, + "c3": -3.5470893164163826, + "c4": -11.283408763095963, + "c5": -5.058957350694655, + "c6": -50.47662199279645, + "c7": 44.379254465176444 }, - "vertexSeeds": { - "c1": 6.52902543956743, - "c2": 6.183526612886455, - "c3": 6.2280482487289435, - "c4": 6.806018647851898, - "c5": 6.515679969974385, - "c6": 6.792956864402568, - "c7": 6.05345649978771 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736938, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.513638465094777, + "c7": 1.7568192325473933 }, "rgb": [238, 201, 159] }, @@ -6702,23 +6702,23 @@ "year": 1617, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -44.76737179920859, - "c2": -9.458254936929727, - "c3": 41.00184744862335, - "c4": -29.124653305807094, - "c5": 21.809385989124266, - "c6": -24.98541419804114, - "c7": -14.020858243983252 + "points": { + "c1": -35.16027484503047, + "c2": 17.936220386576807, + "c3": 35.41496751271876, + "c4": -31.08642518562238, + "c5": 29.668701090735354, + "c6": -2.1102965981342834, + "c7": 31.255433002726804 }, - "vertexSeeds": { - "c1": 6.921766601694084, - "c2": 7.17487211298347, - "c3": 7.743347222064058, - "c4": 7.599315454222678, - "c5": 7.120952347125884, - "c6": 6.817879574424757, - "c7": 7.758666688537117 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295425, + "c3": 9.939898289412856, + "c4": 7.951918631530277, + "c5": 5.963938973647707, + "c6": 3.9759593157651385, + "c7": 1.9879796578825693 }, "rgb": [77, 76, 132] }, @@ -6729,23 +6729,23 @@ "year": 1618, "resistanceReported": false, "duration": 65145600, - "curveSeeds": { - "c1": 47.33952116713037, - "c2": -40.03225100915424, - "c3": 37.343996560494574, - "c4": 70.00881897538933, - "c5": 77.8016725148142, - "c6": 31.54669050521761, - "c7": 65.51458027670576 + "points": { + "c1": 39.7825818674919, + "c2": -19.597257092418815, + "c3": -1.549879352803302, + "c4": 11.065803112642257, + "c5": -55.57152874030163, + "c6": -78.11139142155407, + "c7": 16.979512867083898 }, - "vertexSeeds": { - "c1": 6.251083940604717, - "c2": 6.443123139090891, - "c3": 6.3434593623341815, - "c4": 7.087707979232973, - "c5": 5.898152170983538, - "c6": 7.0692736728006835, - "c7": 5.996040040452077 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736938, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.513638465094777, + "c7": 1.7568192325473933 }, "rgb": [77, 76, 132] }, @@ -6756,23 +6756,23 @@ "year": 1617, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": 5.658970025117, - "c2": 23.41226729466463, - "c3": 27.565947718626518, - "c4": 36.85217235706661, - "c5": -8.359168090695476, - "c6": -0.915671944007542, - "c7": -21.129610099635528 + "points": { + "c1": -26.628923541881733, + "c2": 36.62193831879773, + "c3": 2.623899191584364, + "c4": 43.22183696038795, + "c5": 44.71607661937331, + "c6": 50.27515640030491, + "c7": -32.63961879040573 }, - "vertexSeeds": { - "c1": 7.243567481962682, - "c2": 7.049141633438507, - "c3": 6.829724738540862, - "c4": 6.942177225001929, - "c5": 6.509367186421681, - "c6": 7.771752669604949, - "c7": 6.534776024149867 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [222, 0, 59] }, @@ -6783,23 +6783,23 @@ "year": 1617, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 22.99618695625815, - "c2": 11.658481836826603, - "c3": 21.50152240511084, - "c4": -15.680239930073764, - "c5": -0.1695244941053673, - "c6": 9.560648020364788, - "c7": -42.63473992012591 + "points": { + "c1": 28.762102679769775, + "c2": -32.702269889661764, + "c3": 32.47760577329503, + "c4": -5.039150459210049, + "c5": 38.27842992301458, + "c6": -19.985568572236843, + "c7": 38.568779788745665 }, - "vertexSeeds": { - "c1": 6.632425154520548, - "c2": 6.659545341195231, - "c3": 7.040187779921981, - "c4": 6.895321880269538, - "c5": 6.593996897524198, - "c6": 6.430573311624824, - "c7": 6.200848799006561 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962556, + "c3": 8.599167822468791, + "c4": 6.879334257975037, + "c5": 5.159500693481274, + "c6": 3.4396671289875185, + "c7": 1.719833564493764 }, "rgb": [238, 201, 159] }, @@ -6810,23 +6810,23 @@ "year": 1617, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": -4.382297096014462, - "c2": 0.014417273755526594, - "c3": 44.339733177555004, - "c4": -23.715085148556877, - "c5": 3.9503509572717306, - "c6": -26.388350448650346, - "c7": -51.04342284310955 + "points": { + "c1": -52.981155966988155, + "c2": -28.661970649969682, + "c3": 10.720988732679047, + "c4": -0.48931402569960625, + "c5": 41.69532691450851, + "c6": -5.587787956138058, + "c7": 21.190802130268494 }, - "vertexSeeds": { - "c1": 5.603763448148634, - "c2": 5.587112836542435, - "c3": 5.624364203718892, - "c4": 5.4881742097768536, - "c5": 6.288130341931411, - "c6": 6.61147898435012, - "c7": 6.455096187131715 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [77, 76, 132] }, @@ -6837,23 +6837,23 @@ "year": 1618, "resistanceReported": false, "duration": 45792000, - "curveSeeds": { - "c1": -46.1325771335566, - "c2": 3.6381685267512367, - "c3": 41.265609751667576, - "c4": 6.019245893662635, - "c5": -50.3306260869682, - "c6": -13.48186159621207, - "c7": -25.42365769456648 + "points": { + "c1": -37.529664363638474, + "c2": -35.34794719550931, + "c3": -55.08872507265813, + "c4": -40.478119911508756, + "c5": -50.24332035008039, + "c6": 4.065716364296016, + "c7": -4.730314485245479 }, - "vertexSeeds": { - "c1": 5.670874295732179, - "c2": 5.508500528655593, - "c3": 5.122597861537859, - "c4": 5.782566951191764, - "c5": 5.256466284991354, - "c6": 5.8000064806212, - "c7": 6.252493606897882 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [58, 15, 49] }, @@ -6864,23 +6864,23 @@ "year": 1618, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": -45.7428962540317, - "c2": -5.897242409820997, - "c3": 10.372410908811169, - "c4": 44.61602581215432, - "c5": 23.664919373920767, - "c6": 4.922698696081426, - "c7": 41.869111296646224 + "points": { + "c1": -14.746075878389547, + "c2": -27.83018102923354, + "c3": 43.314074933818205, + "c4": 46.5501613359577, + "c5": -26.364220287683583, + "c6": 11.626507370620374, + "c7": 24.859751087539735 }, - "vertexSeeds": { - "c1": 6.413994969777924, - "c2": 5.987098786650013, - "c3": 8.956553097431161, - "c4": 7.49051815699912, - "c5": 7.074919519977741, - "c6": 8.015399843720667, - "c7": 7.389536742722141 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.34257975034674, + "c3": 11.118816458622282, + "c4": 8.895053166897828, + "c5": 6.67128987517337, + "c6": 4.447526583448912, + "c7": 2.223763291724458 }, "rgb": [238, 201, 159] }, @@ -6891,23 +6891,23 @@ "year": 1618, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": -22.304259022529816, - "c2": 21.5065631668064, - "c3": 49.38233723535929, - "c4": 34.74342991587433, - "c5": -40.77719959825681, - "c6": 37.18582445698914, - "c7": -1.4553925051245216 + "points": { + "c1": -33.585402647596126, + "c2": 27.525986376057475, + "c3": 37.62797481926296, + "c4": 17.223608368185538, + "c5": -16.078575210557574, + "c6": -41.47694840338227, + "c7": -51.106326769816754 }, - "vertexSeeds": { - "c1": 5.840777760986224, - "c2": 6.0845512976653335, - "c3": 5.745951037421393, - "c4": 6.085597297308522, - "c5": 5.228073013004797, - "c6": 6.088306127711932, - "c7": 5.633799826110617 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [222, 0, 59] }, @@ -6918,23 +6918,23 @@ "year": 1618, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 36.66712802916055, - "c2": 0.1447963838796511, - "c3": 6.561268839133689, - "c4": 6.488303485468229, - "c5": 30.460112533051586, - "c6": -16.446852488862294, - "c7": 15.758416262299306 + "points": { + "c1": -16.091350901249353, + "c2": 27.508423499049755, + "c3": 31.971888428278803, + "c4": -16.53724423313903, + "c5": 44.003615293687815, + "c6": -11.28441591129365, + "c7": -41.214984930502354 }, - "vertexSeeds": { - "c1": 6.5620001410556705, - "c2": 6.971064061930623, - "c3": 7.1103354748007, - "c4": 6.484518402391137, - "c5": 7.8723675858451765, - "c6": 7.1379516469233675, - "c7": 6.522639715127971 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [222, 0, 59] }, @@ -6945,23 +6945,23 @@ "year": 1620, "resistanceReported": false, "duration": 102988800, - "curveSeeds": { - "c1": 22.159800269589013, - "c2": -41.51584015608414, - "c3": -111.10203497081464, - "c4": 58.07363911465278, - "c5": 107.61087953957478, - "c6": -64.9549191269723, - "c7": -13.305835706167429 + "points": { + "c1": -80.88690233696968, + "c2": 22.234550085307845, + "c3": 104.75382403137435, + "c4": 118.07965190660754, + "c5": 47.844269890769894, + "c6": 118.5407090575036, + "c7": 78.07012931233554 }, - "vertexSeeds": { - "c1": 7.33161097182665, - "c2": 6.855847793607687, - "c3": 6.939090821445517, - "c4": 7.582445920067451, - "c5": 8.241989517342283, - "c6": 6.965853092229462, - "c7": 6.738243877749732 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174754, + "c3": 9.870550161812291, + "c4": 7.896440129449839, + "c5": 5.922330097087377, + "c6": 3.948220064724915, + "c7": 1.974110032362462 }, "rgb": [222, 0, 59] }, @@ -6972,23 +6972,23 @@ "year": 1619, "resistanceReported": false, "duration": 63331200, - "curveSeeds": { - "c1": 9.86076851072076, - "c2": -72.25286982207753, - "c3": 26.368997976256423, - "c4": -24.39927640619102, - "c5": -44.61204668881059, - "c6": 78.98343127325747, - "c7": 60.18282946760597 + "points": { + "c1": -19.01062410481893, + "c2": 77.88701853441755, + "c3": 27.422143602744526, + "c4": -37.437706014995804, + "c5": -13.714156334640379, + "c6": 64.50825762264598, + "c7": 71.99170480881843 }, - "vertexSeeds": { - "c1": 6.69127856881035, - "c2": 5.415992064774525, - "c3": 5.606796618133772, - "c4": 5.772184053427526, - "c5": 5.783174794663825, - "c6": 5.7658577751739655, - "c7": 5.7953140140873165 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037449, + "c3": 8.067498844197877, + "c4": 6.453999075358293, + "c5": 4.84049930651872, + "c6": 3.2269995376791467, + "c7": 1.6134997688395734 }, "rgb": [77, 76, 132] }, @@ -6999,23 +6999,23 @@ "year": 1619, "resistanceReported": false, "duration": 61257600, - "curveSeeds": { - "c1": -50.46815535510113, - "c2": -56.00819673076618, - "c3": -23.50758951369152, - "c4": 8.722593545615894, - "c5": -37.24653382499457, - "c6": -16.35957953295042, - "c7": -60.530790021624576 + "points": { + "c1": -58.072764052312564, + "c2": -14.164288816580182, + "c3": -29.447445185464822, + "c4": -46.37203937260015, + "c5": 26.61474831133009, + "c6": 77.20509182851774, + "c7": 40.3630545840073 }, - "vertexSeeds": { - "c1": 8.15712396170809, - "c2": 8.379944405275014, - "c3": 8.48986000951392, - "c4": 7.266285798995221, - "c5": 7.65249127625311, - "c6": 7.1843774508693965, - "c7": 6.973723818546141 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.399445214979192, + "c3": 10.332871012482665, + "c4": 8.266296809986128, + "c5": 6.1997226074896, + "c6": 4.133148404993064, + "c7": 2.0665742024965272 }, "rgb": [77, 76, 132] }, @@ -7026,23 +7026,23 @@ "year": 1619, "resistanceReported": false, "duration": 53740800, - "curveSeeds": { - "c1": -50.757333350503075, - "c2": 17.08114043122896, - "c3": -58.94948144016076, - "c4": 65.01856547735625, - "c5": 0.7769869899918973, - "c6": -66.69942495384117, - "c7": -3.5805085356627018 + "points": { + "c1": -56.4027144538939, + "c2": -46.532447278979, + "c3": -20.857706461653144, + "c4": -59.98879300263677, + "c5": -62.547239340413675, + "c6": 67.67849969510524, + "c7": 66.99920519689417 }, - "vertexSeeds": { - "c1": 6.4738165607877685, - "c2": 7.9614382325998605, - "c3": 7.724867721442454, - "c4": 6.603633446930954, - "c5": 7.258726622119945, - "c6": 6.509313910273288, - "c7": 7.643595694352753 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [86, 146, 138] }, @@ -7053,23 +7053,23 @@ "year": 1619, "resistanceReported": false, "duration": 57715200, - "curveSeeds": { - "c1": 48.486979973064166, - "c2": -25.315525967587313, - "c3": -4.873523124730042, - "c4": 57.097618586772796, - "c5": 10.800578368216136, - "c6": 10.152630199331952, - "c7": 35.44245354711781 + "points": { + "c1": 33.21062646586138, + "c2": 59.02012131023773, + "c3": -71.24601910479583, + "c4": -72.17111378144624, + "c5": 71.68588714050796, + "c6": 1.3523967552081757, + "c7": -29.943022950119413 }, - "vertexSeeds": { - "c1": 6.664858528957549, - "c2": 7.080383365789445, - "c3": 6.762452084468062, - "c4": 7.5587270299050875, - "c5": 7.295787233711238, - "c6": 6.67466188135465, - "c7": 7.77694179789486 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [222, 0, 59] }, @@ -7080,23 +7080,23 @@ "year": 1619, "resistanceReported": false, "duration": 50803200, - "curveSeeds": { - "c1": 16.438953188719026, - "c2": -35.54964969307617, - "c3": -34.119574182894, - "c4": 54.10113716604212, - "c5": -27.64200643976828, - "c6": -10.896157291676786, - "c7": -19.054114829599264 + "points": { + "c1": 29.513596628325985, + "c2": -21.358982226172785, + "c3": 42.65403695843828, + "c4": -30.287369742470524, + "c5": 6.827355213228401, + "c6": 63.88987525372221, + "c7": -23.47322433501234 }, - "vertexSeeds": { - "c1": 6.163583066314464, - "c2": 6.230924788229446, - "c3": 5.854874856704221, - "c4": 5.440932184859084, - "c5": 6.62825320770849, - "c6": 5.899554034911046, - "c7": 5.982981223035833 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -7107,23 +7107,23 @@ "year": 1619, "resistanceReported": false, "duration": 49507200, - "curveSeeds": { - "c1": 38.55361759418351, - "c2": 10.56827971724708, - "c3": 30.311233046685004, - "c4": 47.480472528526704, - "c5": -19.89187011406416, - "c6": 49.008232996490165, - "c7": 3.2644234817965696 + "points": { + "c1": -8.329497676720457, + "c2": 47.61768412243539, + "c3": 54.81550991604182, + "c4": 50.15999639311845, + "c5": -22.898548379766027, + "c6": 30.634331090109725, + "c7": -37.26683824744022 }, - "vertexSeeds": { - "c1": 6.5544242263796475, - "c2": 6.736268862886645, - "c3": 7.342798733225355, - "c4": 7.623997595821938, - "c5": 7.903661934563022, - "c6": 7.202727871204635, - "c7": 7.463914033508623 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [77, 76, 132] }, @@ -7134,23 +7134,23 @@ "year": 1618, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 31.16606703641896, - "c2": -25.923056995254967, - "c3": -42.62990877877292, - "c4": -6.3344379935380815, - "c5": -0.2714391110105083, - "c6": 15.497166082898005, - "c7": -20.26088181025162 + "points": { + "c1": -6.256240470623609, + "c2": 27.3423019066391, + "c3": -9.482021053251486, + "c4": 6.242622807511111, + "c5": 44.52198441753195, + "c6": 27.22292606534908, + "c7": -44.60159934456452 }, - "vertexSeeds": { - "c1": 7.520136019335292, - "c2": 8.336813086924293, - "c3": 7.475047235122641, - "c4": 8.807216081027985, - "c5": 8.820540352374238, - "c6": 8.443371290288965, - "c7": 7.476640617221404 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346745, + "c3": 11.118816458622282, + "c4": 8.89505316689783, + "c5": 6.671289875173377, + "c6": 4.447526583448915, + "c7": 2.223763291724462 }, "rgb": [86, 146, 138] }, @@ -7161,23 +7161,23 @@ "year": 1621, "resistanceReported": false, "duration": 121737600, - "curveSeeds": { - "c1": -43.2041010531978, - "c2": -78.69464041830697, - "c3": -110.40559859287671, - "c4": -114.35281795480054, - "c5": -0.07784255212902735, - "c6": -136.58999553574404, - "c7": -113.37309456425639 + "points": { + "c1": 124.17691281462527, + "c2": 57.51457485573411, + "c3": -40.53251718106792, + "c4": -90.15682720996311, + "c5": -57.085098611596905, + "c6": -104.9804815499795, + "c7": 117.03373794270135 }, - "vertexSeeds": { - "c1": 9.300188813840835, - "c2": 8.612118746655183, - "c3": 8.462550098293809, - "c4": 8.115051040717864, - "c5": 7.7046154525731865, - "c6": 9.18902648022544, - "c7": 8.769896895509326 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.398058252427184, + "c3": 11.165048543689318, + "c4": 8.932038834951461, + "c5": 6.699029126213596, + "c6": 4.466019417475731, + "c7": 2.2330097087378653 }, "rgb": [238, 201, 159] }, @@ -7188,23 +7188,23 @@ "year": 1619, "resistanceReported": false, "duration": 58320000, - "curveSeeds": { - "c1": 30.55729106047356, - "c2": -8.120047841110733, - "c3": -72.52893703715023, - "c4": 49.31527895680762, - "c5": -51.87135189860528, - "c6": 35.90552004395286, - "c7": 61.183626316140035 + "points": { + "c1": 9.299492680210875, + "c2": 48.69072864007029, + "c3": -49.551701938438285, + "c4": -45.05303271149194, + "c5": -15.322015722686501, + "c6": -31.555970245543982, + "c7": -62.291470151967516 }, - "vertexSeeds": { - "c1": 7.332803656369628, - "c2": 6.340861362313307, - "c3": 7.363213089316799, - "c4": 7.465379498009208, - "c5": 7.320620999151169, - "c6": 7.433306906669618, - "c7": 6.567762111798352 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686543, + "c3": 9.015256588072123, + "c4": 7.212205270457694, + "c5": 5.409153952843275, + "c6": 3.606102635228847, + "c7": 1.803051317614419 }, "rgb": [222, 0, 59] }, @@ -7215,23 +7215,23 @@ "year": 1619, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": -39.93344078745973, - "c2": 51.836991159779956, - "c3": -4.669399091536967, - "c4": -29.61647462713916, - "c5": 39.41062326710339, - "c6": -48.186838256033944, - "c7": -12.254054166657788 + "points": { + "c1": 3.414405837484729, + "c2": -17.603657929734794, + "c3": -48.886526064468676, + "c4": -26.127168868649672, + "c5": -18.240263753304184, + "c6": 20.787864866671853, + "c7": -12.96923124908917 }, - "vertexSeeds": { - "c1": 4.526693464326308, - "c2": 3.916047464593616, - "c3": 3.2099819949127504, - "c4": 4.700449271351411, - "c5": 3.457264707614715, - "c6": 6.693699884549522, - "c7": 6.491129302189336 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [238, 201, 159] }, @@ -7242,23 +7242,23 @@ "year": 1619, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": 0.24000590134045297, - "c2": -1.7654766469920702, - "c3": 2.8341184610599086, - "c4": 31.407652111020568, - "c5": 26.030070613711374, - "c6": 42.27448448570736, - "c7": -1.1992512169277134 + "points": { + "c1": -0.8740161342118355, + "c2": -5.928245440524357, + "c3": -19.47362566215373, + "c4": 30.293968457702604, + "c5": -54.152057821493244, + "c6": -14.914522278941902, + "c7": -39.784156283656486 }, - "vertexSeeds": { - "c1": 5.910837109213887, - "c2": 5.570016731574144, - "c3": 6.745998250135567, - "c4": 6.849568833871764, - "c5": 6.548667438968674, - "c6": 6.300544660088664, - "c7": 6.0453085814937175 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359219, + "c3": 8.25242718446602, + "c4": 6.601941747572813, + "c5": 4.951456310679614, + "c6": 3.3009708737864063, + "c7": 1.6504854368932076 }, "rgb": [86, 146, 138] }, @@ -7269,23 +7269,23 @@ "year": 1620, "resistanceReported": false, "duration": 85881600, - "curveSeeds": { - "c1": -73.14254114889613, - "c2": -59.81606095352883, - "c3": -73.9054094203939, - "c4": 10.03173328927869, - "c5": 101.89220844922599, - "c6": -75.76424058174933, - "c7": -89.18203750935513 + "points": { + "c1": -91.05524158198541, + "c2": -97.09488610479984, + "c3": 61.98756209640658, + "c4": 86.97435029262272, + "c5": -39.21075564573536, + "c6": 42.14658138344282, + "c7": 10.210941130579627 }, - "vertexSeeds": { - "c1": 7.586238869981184, - "c2": 7.057453361539006, - "c3": 8.52826347049426, - "c4": 7.410366861769081, - "c5": 8.507751326911558, - "c6": 7.789148974696708, - "c7": 7.893054338283258 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.288488210818306, + "c3": 10.240406842348586, + "c4": 8.192325473878878, + "c5": 6.144244105409157, + "c6": 4.096162736939439, + "c7": 2.0480813684697194 }, "rgb": [58, 15, 49] }, @@ -7296,23 +7296,23 @@ "year": 1620, "resistanceReported": false, "duration": 76982400, - "curveSeeds": { - "c1": 35.64184184993819, - "c2": -82.9558638719754, - "c3": -33.490920684915395, - "c4": -88.00802785624667, - "c5": 44.8292861707627, - "c6": 59.16227640587941, - "c7": 93.08437742336291 + "points": { + "c1": -88.68557382260413, + "c2": -23.69806820467207, + "c3": 66.02981028521633, + "c4": -24.439244759756235, + "c5": -18.635036945611574, + "c6": 70.05514340028064, + "c7": -32.6354784282461 }, - "vertexSeeds": { - "c1": 11.349336713680126, - "c2": 12.341615028412324, - "c3": 10.194330395964114, - "c4": 10.948388454515348, - "c5": 12.098896839415442, - "c6": 11.18290714790408, - "c7": 11.74068022844314 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.75312066574202, + "c3": 14.794267221451692, + "c4": 11.835413777161346, + "c5": 8.87656033287102, + "c6": 5.917706888580673, + "c7": 2.958853444290346 }, "rgb": [238, 201, 159] }, @@ -7323,23 +7323,23 @@ "year": 1620, "resistanceReported": false, "duration": 76982400, - "curveSeeds": { - "c1": 60.72656537938492, - "c2": 39.2508000256734, - "c3": -92.08153787257532, - "c4": 53.43496210951015, - "c5": -91.79079064651873, - "c6": 41.924863449497636, - "c7": -25.13869805760882 + "points": { + "c1": -93.43960486511446, + "c2": 10.940793897771883, + "c3": 10.587841542035221, + "c4": 50.83996926839926, + "c5": 96.13271805671293, + "c6": 4.8625706447594865, + "c7": -69.00277969381052 }, - "vertexSeeds": { - "c1": 3.786331227504434, - "c2": 3.1912901982232547, - "c3": 3.183745763893979, - "c4": 3.7506842749884806, - "c5": 3.4649663349257995, - "c6": 3.273791444686128, - "c7": 3.4910619456327376 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883494, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941749, + "c6": 1.8122977346278328, + "c7": 0.9061488673139164 }, "rgb": [238, 201, 159] }, @@ -7350,23 +7350,23 @@ "year": 1620, "resistanceReported": false, "duration": 78364800, - "curveSeeds": { - "c1": -39.88589445915483, - "c2": -10.76332554201538, - "c3": 49.60706691384202, - "c4": 40.03373066576221, - "c5": 8.926455429492549, - "c6": -27.729587884206623, - "c7": -53.67947641749642 + "points": { + "c1": -31.631416984226874, + "c2": 91.31768997533423, + "c3": 25.649965503152785, + "c4": -48.019031787111935, + "c5": 22.422898488211473, + "c6": -21.65012462650847, + "c7": 32.00118640749257 }, - "vertexSeeds": { - "c1": 9.067634488112677, - "c2": 10.069615868906594, - "c3": 10.167395727196636, - "c4": 11.218827368002732, - "c5": 9.733288247827707, - "c6": 10.07604359325918, - "c7": 10.695098660240749 + "offsets": { + "c1": 18.899676375404532, + "c2": 16.199722607489594, + "c3": 13.499768839574674, + "c4": 10.799815071659737, + "c5": 8.099861303744797, + "c6": 5.399907535829868, + "c7": 2.699953767914938 }, "rgb": [58, 15, 49] }, @@ -7377,23 +7377,23 @@ "year": 1621, "resistanceReported": false, "duration": 108691200, - "curveSeeds": { - "c1": -127.56976613334346, - "c2": -38.27122261008702, - "c3": -92.54599149362055, - "c4": 122.7899425927001, - "c5": 108.98673634337266, - "c6": 4.089603026632602, - "c7": -98.09207305527342 + "points": { + "c1": -108.10574216427057, + "c2": 62.71416782388593, + "c3": -128.95864467748393, + "c4": -41.11473789869498, + "c5": -8.87468908592318, + "c6": 90.60640513943221, + "c7": -125.85008513390164 }, - "vertexSeeds": { - "c1": 7.748181702125927, - "c2": 7.303214183236489, - "c3": 6.471783692504818, - "c4": 6.896602943272858, - "c5": 6.957695162232333, - "c6": 7.163647305736337, - "c7": 7.223746562157071 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [222, 0, 59] }, @@ -7404,23 +7404,23 @@ "year": 1621, "resistanceReported": false, "duration": 110160000, - "curveSeeds": { - "c1": 90.38114305849078, - "c2": -126.41429926880937, - "c3": 28.667969539399223, - "c4": -76.9126379144049, - "c5": 105.63830697443322, - "c6": 67.19984384320583, - "c7": -43.660343411750276 + "points": { + "c1": -40.277668402460336, + "c2": 99.29546619634738, + "c3": -85.66822305575576, + "c4": -82.69865938830105, + "c5": -66.14875004893617, + "c6": 78.52637310431595, + "c7": 84.13924764508482 }, - "vertexSeeds": { - "c1": 3.549377817782173, - "c2": 3.480617903772802, - "c3": 3.6287841034162143, - "c4": 3.4264652212055506, - "c5": 3.5636367809797163, - "c6": 3.7636924237786937, - "c7": 3.7383999418838214 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808599, + "c3": 5.062413314840498, + "c4": 4.049930651872398, + "c5": 3.0374479889043013, + "c6": 2.0249653259362015, + "c7": 1.0124826629681007 }, "rgb": [77, 76, 132] }, @@ -7431,23 +7431,23 @@ "year": 1618, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 23.875209447062964, - "c2": -29.117882678697377, - "c3": 37.832354994351114, - "c4": -13.836116062020803, - "c5": -20.34892119863817, - "c6": -28.423080107622717, - "c7": -7.847240455160993 + "points": { + "c1": -6.640231504213006, + "c2": 43.23962857716382, + "c3": -21.43698605235157, + "c4": 43.31841451580835, + "c5": -9.380962942131234, + "c6": 30.5040196460778, + "c7": -31.19994241685138 }, - "vertexSeeds": { - "c1": 6.708219955617954, - "c2": 6.813663559149024, - "c3": 6.001999183483563, - "c4": 5.892342689378828, - "c5": 5.690004918114796, - "c6": 6.286622612100064, - "c7": 6.583120684877834 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519183, + "c5": 4.923717059639392, + "c6": 3.2824780397595914, + "c7": 1.6412390198798004 }, "rgb": [77, 76, 132] }, @@ -7458,23 +7458,23 @@ "year": 1620, "resistanceReported": false, "duration": 63849600, - "curveSeeds": { - "c1": 48.52229058561433, - "c2": -39.076623741072574, - "c3": -72.79785345876677, - "c4": -18.914769260334737, - "c5": -56.587971453897055, - "c6": 62.26205147329132, - "c7": 8.849963126138519 + "points": { + "c1": 77.28227730318521, + "c2": -5.010047344337238, + "c3": -45.55797083140931, + "c4": -67.0653396046754, + "c5": -14.354012054541343, + "c6": -0.9671758130218251, + "c7": -29.859381806359984 }, - "vertexSeeds": { - "c1": 2.812904544409049, - "c2": 2.888547374320805, - "c3": 2.613685692159957, - "c4": 2.5530152137475213, - "c5": 2.6014288704250217, - "c6": 2.785932779711203, - "c7": 2.916821157866345 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395287, + "c3": 3.6754507628294033, + "c4": 2.9403606102635247, + "c5": 2.205270457697641, + "c6": 1.4701803051317623, + "c7": 0.7350901525658788 }, "rgb": [58, 15, 49] }, @@ -7485,23 +7485,23 @@ "year": 1619, "resistanceReported": false, "duration": 45705600, - "curveSeeds": { - "c1": 44.747112813230316, - "c2": -54.53985682569899, - "c3": 16.843808004724522, - "c4": -51.31763563667572, - "c5": 45.21164765623719, - "c6": -54.15729943190268, - "c7": 2.02396694215264 + "points": { + "c1": 58.503132950178426, + "c2": 35.659338433764376, + "c3": -24.035642091965286, + "c4": 20.33339574804164, + "c5": -42.041516566082336, + "c6": 17.754933658450895, + "c7": 5.545799533269545 }, - "vertexSeeds": { - "c1": 8.218066865013075, - "c2": 8.35542197055016, - "c3": 8.335103409012362, - "c4": 7.1013588656687725, - "c5": 7.646934306054288, - "c6": 8.221987305872698, - "c7": 7.27306941491279 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [86, 146, 138] }, @@ -7512,23 +7512,23 @@ "year": 1619, "resistanceReported": false, "duration": 54172800, - "curveSeeds": { - "c1": 14.078512456046056, - "c2": 48.824686063341744, - "c3": -66.99382755190096, - "c4": -56.913847570501915, - "c5": -65.28863401036436, - "c6": -2.1701308190315984, - "c7": 56.083162905239675 + "points": { + "c1": 23.420773353284588, + "c2": 25.040987297706906, + "c3": 53.10959368638794, + "c4": 41.581345880477855, + "c5": 55.43519193732254, + "c6": -37.34181213464157, + "c7": -19.71516508284145 }, - "vertexSeeds": { - "c1": 8.731908137454516, - "c2": 8.296827352287824, - "c3": 9.038783480272249, - "c4": 8.147680425454935, - "c5": 7.715453223756672, - "c6": 7.366032509139057, - "c7": 7.284128888617617 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.00970873786408, + "c3": 10.84142394822007, + "c4": 8.673139158576051, + "c5": 6.50485436893204, + "c6": 4.33656957928803, + "c7": 2.1682847896440105 }, "rgb": [86, 146, 138] }, @@ -7539,23 +7539,23 @@ "year": 1619, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": -52.57177487533357, - "c2": -12.482138597605115, - "c3": -0.7102923735749371, - "c4": 37.43680591366284, - "c5": -21.973163604091077, - "c6": -40.04771999836837, - "c7": -18.684892608243338 + "points": { + "c1": 12.61775069830027, + "c2": 55.36906771418609, + "c3": -45.594320455236364, + "c4": -14.734792691813006, + "c5": -4.444122411482184, + "c6": 4.813428680351194, + "c7": 33.554256862189035 }, - "vertexSeeds": { - "c1": 7.49562356757791, - "c2": 6.96564148028552, - "c3": 6.720241433024097, - "c4": 7.418722805940883, - "c5": 6.168946743620101, - "c6": 7.004355050066001, - "c7": 7.460447374540534 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887658, + "c3": 9.130836800739717, + "c4": 7.304669440591766, + "c5": 5.478502080443825, + "c6": 3.652334720295883, + "c7": 1.8261673601479416 }, "rgb": [86, 146, 138] }, @@ -7566,23 +7566,23 @@ "year": 1619, "resistanceReported": false, "duration": 47779200, - "curveSeeds": { - "c1": 53.57368784323765, - "c2": -55.579636069172345, - "c3": -4.8332666060061555, - "c4": -39.140875747131076, - "c5": -12.205017032587541, - "c6": 38.00314178743932, - "c7": 45.09579601707631 + "points": { + "c1": -0.08973085860974095, + "c2": -49.37982880940425, + "c3": 62.59272087601279, + "c4": -7.769762263367369, + "c5": 12.895288177458767, + "c6": 27.135024022055234, + "c7": -7.275765591460079 }, - "vertexSeeds": { - "c1": 6.980749451232234, - "c2": 7.896248453802526, - "c3": 7.658654108867001, - "c4": 7.280746834976289, - "c5": 6.875791961124636, - "c6": 6.4511429318276265, - "c7": 7.937983389266082 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [222, 0, 59] }, @@ -7593,23 +7593,23 @@ "year": 1619, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 23.987360756755614, - "c2": 0.31552930512307853, - "c3": 1.986066282053521, - "c4": 13.729300151458212, - "c5": 35.56901566298318, - "c6": -18.982977756257053, - "c7": -45.16445540240035 + "points": { + "c1": 3.6691429134691163, + "c2": -29.052992936937482, + "c3": -42.68649408342032, + "c4": -30.533044848278262, + "c5": 19.324649651868164, + "c6": 16.541551184135393, + "c7": 4.55845868481952 }, - "vertexSeeds": { - "c1": 2.62289429048622, - "c2": 2.794400641025969, - "c3": 2.8039237003379958, - "c4": 2.774002974977371, - "c5": 2.560354580828812, - "c6": 2.8445968606480196, - "c7": 2.5362403331659107 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234399, + "c3": 3.58298659269533, + "c4": 2.866389274156266, + "c5": 2.1497919556171974, + "c6": 1.433194637078133, + "c7": 0.7165973185390642 }, "rgb": [238, 201, 159] }, @@ -7620,23 +7620,23 @@ "year": 1620, "resistanceReported": false, "duration": 54950400, - "curveSeeds": { - "c1": -18.555304580623165, - "c2": -44.71373825185803, - "c3": -33.46264524185163, - "c4": -41.41672702054504, - "c5": 60.44584622351468, - "c6": 27.607880353667994, - "c7": 39.243276676290236 + "points": { + "c1": 53.734166204268945, + "c2": -3.207161202037696, + "c3": -0.5684309427653886, + "c4": -20.717007067874405, + "c5": -32.25318295149248, + "c6": -62.77700155555767, + "c7": -14.125468043433195 }, - "vertexSeeds": { - "c1": 8.24727531868763, - "c2": 8.300017442273624, - "c3": 8.321433593620224, - "c4": 7.85318519077543, - "c5": 8.556518485015006, - "c6": 7.482772729112931, - "c7": 7.7178775925823 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.649098474341194, + "c3": 10.540915395284332, + "c4": 8.43273231622746, + "c5": 6.324549237170597, + "c6": 4.216366158113734, + "c7": 2.1081830790568628 }, "rgb": [58, 15, 49] }, @@ -7647,23 +7647,23 @@ "year": 1619, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 19.80245048081205, - "c2": -1.4635147474365695, - "c3": -5.685092230674588, - "c4": 23.06854942879383, - "c5": -26.858415113457905, - "c6": 30.68343705513295, - "c7": -7.812743232696139 + "points": { + "c1": 34.92950363302095, + "c2": -12.747676127887345, + "c3": -11.134253021767826, + "c4": 9.886142406212706, + "c5": 29.258652852088694, + "c6": -33.82788565656362, + "c7": -8.96934565635512 }, - "vertexSeeds": { - "c1": 6.29060089386363, - "c2": 5.997657418428228, - "c3": 6.262984586177318, - "c4": 5.736242473786792, - "c5": 6.797670682242588, - "c6": 6.2786812521401885, - "c7": 6.953736445386456 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [222, 0, 59] }, @@ -7674,23 +7674,23 @@ "year": 1620, "resistanceReported": false, "duration": 48297600, - "curveSeeds": { - "c1": -29.39457109391818, - "c2": -31.98600661144031, - "c3": 60.02072550212552, - "c4": 30.9051891179439, - "c5": 33.73914940326227, - "c6": 42.69050231383965, - "c7": 6.819855038613319 + "points": { + "c1": 53.385013582671874, + "c2": 21.51298162141289, + "c3": -42.13694012732691, + "c4": 19.443895479918496, + "c5": -57.46706672913783, + "c6": 1.658226609265455, + "c7": 37.61758428336293 }, - "vertexSeeds": { - "c1": 6.8400523024217454, - "c2": 6.86632413404368, - "c3": 6.891255117968008, - "c4": 6.567486145401306, - "c5": 7.317793975498529, - "c6": 6.989490665765023, - "c7": 7.482193302848474 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [238, 201, 159] }, @@ -7701,23 +7701,23 @@ "year": 1619, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 10.423669787518868, - "c2": 13.701266954998978, - "c3": -9.566565072831615, - "c4": 14.984960201709562, - "c5": 27.53736501744065, - "c6": 2.567968636658982, - "c7": -27.719239714552895 + "points": { + "c1": 11.560702633275923, + "c2": -33.444627516411785, + "c3": -32.427665914375936, + "c4": 9.968396301558428, + "c5": -1.6768050061675766, + "c6": 29.841049420535526, + "c7": -1.9411188870305232 }, - "vertexSeeds": { - "c1": 5.671250563056205, - "c2": 5.958567304049163, - "c3": 6.123684906888737, - "c4": 5.9232993708131145, - "c5": 5.981883742961251, - "c6": 5.694934160364459, - "c7": 6.4901055702861985 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [77, 76, 132] }, @@ -7728,23 +7728,23 @@ "year": 1620, "resistanceReported": false, "duration": 47865600, - "curveSeeds": { - "c1": -2.7473596735217214, - "c2": 36.05311597989432, - "c3": 12.402631551059322, - "c4": 53.44833087891744, - "c5": -55.940764941091714, - "c6": 55.179066791949005, - "c7": -5.804849496018228 + "points": { + "c1": 52.194321430426015, + "c2": -31.423341002084882, + "c3": 4.159075397601782, + "c4": 40.773218924272356, + "c5": -2.561654143099581, + "c6": 49.13476110101145, + "c7": -54.891221959211336 }, - "vertexSeeds": { - "c1": 6.352987854378393, - "c2": 7.0754013656382755, - "c3": 7.664348212838554, - "c4": 6.783354708889969, - "c5": 6.320092374113868, - "c6": 6.677448707893637, - "c7": 6.500785417506859 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [222, 0, 59] }, @@ -7755,23 +7755,23 @@ "year": 1621, "resistanceReported": false, "duration": 72921600, - "curveSeeds": { - "c1": -80.51902312824203, - "c2": -30.354271482884485, - "c3": -82.7006425717119, - "c4": -51.34467364241806, - "c5": 29.48993021581356, - "c6": -36.34064608202709, - "c7": 23.597434628790467 + "points": { + "c1": 6.493089220043672, + "c2": 42.20650379286046, + "c3": 4.536239222746119, + "c4": 31.008813749796644, + "c5": 23.482564582233195, + "c6": -75.79865671193701, + "c7": -7.929154930080912 }, - "vertexSeeds": { - "c1": 6.1777544443595165, - "c2": 6.385615365097085, - "c3": 5.661244145657781, - "c4": 6.835265525306164, - "c5": 6.87264443192012, - "c6": 6.895530967614183, - "c7": 6.2931901017287535 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [238, 201, 159] }, @@ -7782,23 +7782,23 @@ "year": 1621, "resistanceReported": false, "duration": 78278400, - "curveSeeds": { - "c1": -19.019951338943287, - "c2": -84.60286593136856, - "c3": 12.158734151427112, - "c4": -6.506088540424116, - "c5": -26.94953632306232, - "c6": -68.15927465610197, - "c7": -79.99831868491427 + "points": { + "c1": -38.571375223789154, + "c2": -49.268662252765324, + "c3": 10.612922200430091, + "c4": 7.518830337753926, + "c5": -45.30412317645302, + "c6": -96.38160496979593, + "c7": -71.10526078496406 }, - "vertexSeeds": { - "c1": 7.388759921058577, - "c2": 6.96418896087559, - "c3": 7.376714740564732, - "c4": 7.188336818029662, - "c5": 7.982255586676334, - "c6": 6.787502521351857, - "c7": 7.133467659471351 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.45631067961165, + "c3": 9.546925566343045, + "c4": 7.637540453074437, + "c5": 5.72815533980583, + "c6": 3.818770226537214, + "c7": 1.909385113268616 }, "rgb": [222, 0, 59] }, @@ -7809,23 +7809,23 @@ "year": 1621, "resistanceReported": false, "duration": 80265600, - "curveSeeds": { - "c1": -49.97027964133083, - "c2": -28.849444545325085, - "c3": 92.13320369694247, - "c4": 88.05140814933515, - "c5": 30.282229978396742, - "c6": 36.56681043227729, - "c7": -6.131796981525866 + "points": { + "c1": -72.61219309930985, + "c2": 87.75259732942638, + "c3": 73.74380990318213, + "c4": -6.647396211383295, + "c5": 30.792681674992366, + "c6": -50.355957409990744, + "c7": -22.886656426451836 }, - "vertexSeeds": { - "c1": 7.183670419175127, - "c2": 7.206109059042536, - "c3": 7.409267688604472, - "c4": 6.406720868026302, - "c5": 6.807572651209263, - "c6": 6.378802380721985, - "c7": 6.859803289148494 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [77, 76, 132] }, @@ -7836,23 +7836,23 @@ "year": 1621, "resistanceReported": false, "duration": 82771200, - "curveSeeds": { - "c1": -69.96162087828326, - "c2": 24.704312462688208, - "c3": 50.863631780199555, - "c4": 94.72100677906384, - "c5": -28.021121856955062, - "c6": 93.79730871190806, - "c7": -80.91660341953269 + "points": { + "c1": -81.1373497736192, + "c2": 94.86869927373276, + "c3": -77.61807786030415, + "c4": -21.597544892547788, + "c5": 68.06146060883385, + "c6": -59.37767696916987, + "c7": -49.08657406701355 }, - "vertexSeeds": { - "c1": 8.750348050101776, - "c2": 9.267975365175294, - "c3": 8.961770420433568, - "c4": 7.680419770390809, - "c5": 9.013192672030412, - "c6": 7.81171533913894, - "c7": 7.5800318452134725 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346745, + "c3": 11.118816458622282, + "c4": 8.89505316689783, + "c5": 6.671289875173377, + "c6": 4.447526583448915, + "c7": 2.223763291724462 }, "rgb": [238, 201, 159] }, @@ -7863,23 +7863,23 @@ "year": 1622, "resistanceReported": false, "duration": 94694400, - "curveSeeds": { - "c1": 63.10603082590417, - "c2": -103.37377189727415, - "c3": -25.022377799739758, - "c4": 57.306406978201025, - "c5": 62.185232891628075, - "c6": -68.47564999741392, - "c7": -28.278229305102116 + "points": { + "c1": -39.1637863718052, + "c2": -70.77142390927499, + "c3": -28.400139781111577, + "c4": 32.83945923473205, + "c5": 24.734232681082503, + "c6": -31.418051989435, + "c7": -66.79542335794235 }, - "vertexSeeds": { - "c1": 4.436953691442548, - "c2": 4.515195480019876, - "c3": 4.866368407219178, - "c4": 4.328510904370485, - "c5": 4.280511526841794, - "c6": 4.752946696875963, - "c7": 3.9911848583923977 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.10124826629681, + "c3": 5.917706888580673, + "c4": 4.734165510864539, + "c5": 3.550624133148405, + "c6": 2.3670827554322673, + "c7": 1.1835413777161337 }, "rgb": [77, 76, 132] }, @@ -7890,23 +7890,23 @@ "year": 1622, "resistanceReported": false, "duration": 94694400, - "curveSeeds": { - "c1": 86.77887747956753, - "c2": 0.42337376089015777, - "c3": 92.61007832697247, - "c4": -75.83244489466854, - "c5": -34.52142911630871, - "c6": -28.228702395086287, - "c7": 78.30997769939775 + "points": { + "c1": -6.214465529659208, + "c2": -97.95697220441839, + "c3": -38.10938171705047, + "c4": -8.693205035223855, + "c5": -13.381676122096806, + "c6": -86.2812847668719, + "c7": 93.46271285090727 }, - "vertexSeeds": { - "c1": 7.065252597274995, - "c2": 7.287133780753605, - "c3": 6.809571031118304, - "c4": 7.9933252856057955, - "c5": 7.738886963501966, - "c6": 7.310592363827517, - "c7": 7.364820984422904 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [86, 146, 138] }, @@ -7917,23 +7917,23 @@ "year": 1620, "resistanceReported": false, "duration": 53308800, - "curveSeeds": { - "c1": 44.08278824694358, - "c2": -58.73334294327595, - "c3": -66.35291445054217, - "c4": -54.97637982872393, - "c5": -11.598152272578396, - "c6": 21.771969764789304, - "c7": -62.01727744425887 + "points": { + "c1": -42.25205537253963, + "c2": 13.836593178528389, + "c3": -43.24191848366013, + "c4": 65.10996680916475, + "c5": 28.986767027591654, + "c6": -47.37797239679638, + "c7": 30.269257144345815 }, - "vertexSeeds": { - "c1": 10.101318531400034, - "c2": 10.063214333546961, - "c3": 11.055593295015699, - "c4": 10.31819800132767, - "c5": 9.94150740498064, - "c6": 10.617732799680498, - "c7": 9.337417812069651 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.088765603328714, + "c3": 13.407304669440597, + "c4": 10.725843735552463, + "c5": 8.044382801664348, + "c6": 5.362921867776231, + "c7": 2.6814609338881157 }, "rgb": [58, 15, 49] }, @@ -7944,23 +7944,23 @@ "year": 1622, "resistanceReported": false, "duration": 113184000, - "curveSeeds": { - "c1": -125.98311767504896, - "c2": -132.66434603530004, - "c3": 16.133667305259507, - "c4": -4.0547881414644, - "c5": -106.08650450127556, - "c6": -83.05088889976327, - "c7": 20.51662449971417 + "points": { + "c1": 54.742705672952894, + "c2": 15.28896431004, + "c3": -61.870090407921765, + "c4": 5.150157884382708, + "c5": 40.51018319753251, + "c6": 101.57882840683112, + "c7": 44.686753120320816 }, - "vertexSeeds": { - "c1": 7.829510057180372, - "c2": 7.380591064768053, - "c3": 7.982878938496105, - "c4": 8.568421589687539, - "c5": 8.185173691622659, - "c6": 7.4851691201985275, - "c7": 8.76860729356122 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.649098474341194, + "c3": 10.540915395284332, + "c4": 8.43273231622746, + "c5": 6.324549237170597, + "c6": 4.216366158113734, + "c7": 2.1081830790568628 }, "rgb": [238, 201, 159] }, @@ -7971,23 +7971,23 @@ "year": 1621, "resistanceReported": false, "duration": 84585600, - "curveSeeds": { - "c1": 10.03806821039359, - "c2": 50.895337273679985, - "c3": -39.630833864694154, - "c4": -97.15906712749127, - "c5": -27.617194212079923, - "c6": 86.69419495244944, - "c7": 74.53138329609061 + "points": { + "c1": 39.60755213626018, + "c2": -12.607101057454116, + "c3": -66.86684703189343, + "c4": -1.4783531284594034, + "c5": 51.21340376035943, + "c6": -49.91295367008793, + "c7": 103.98378611043503 }, - "vertexSeeds": { - "c1": 6.42718069125901, - "c2": 6.157159656288829, - "c3": 6.039368791283587, - "c4": 6.5286235362102, - "c5": 6.47050967669613, - "c6": 5.890333834334688, - "c7": 6.8630965467685785 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [238, 201, 159] }, @@ -7998,23 +7998,23 @@ "year": 1620, "resistanceReported": false, "duration": 57110400, - "curveSeeds": { - "c1": -12.392620216168332, - "c2": -34.33046539960591, - "c3": 20.591216420167697, - "c4": 6.933088097718482, - "c5": -28.04692308745244, - "c6": -46.39570070501779, - "c7": -20.644081579643768 + "points": { + "c1": -35.768661036963536, + "c2": -37.8272670109587, + "c3": -2.576797519576701, + "c4": 16.103099609131647, + "c5": -44.51925657597645, + "c6": 5.388814596089944, + "c7": -41.88727511553035 }, - "vertexSeeds": { - "c1": 7.958469090947732, - "c2": 6.828272208732908, - "c3": 7.683293158927467, - "c4": 7.947126703853327, - "c5": 7.456950865033642, - "c6": 7.823205582624166, - "c7": 8.117342400556165 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933422, + "c3": 9.731853906611182, + "c4": 7.785483125288952, + "c5": 5.839112343966711, + "c6": 3.892741562644471, + "c7": 1.946370781322231 }, "rgb": [86, 146, 138] }, @@ -8025,23 +8025,23 @@ "year": 1620, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -28.607482891332268, - "c2": -24.808150038861907, - "c3": -6.004305207664196, - "c4": 31.925680498935726, - "c5": 16.774934447203258, - "c6": 7.018419044195632, - "c7": -32.790026528703976 + "points": { + "c1": 34.926131298126144, + "c2": -10.911489051975416, + "c3": 36.133147053661936, + "c4": -11.461280015626528, + "c5": 24.070540877462868, + "c6": 16.161309829668888, + "c7": -22.877055778497187 }, - "vertexSeeds": { - "c1": 7.544776804990856, - "c2": 7.751968059309774, - "c3": 8.203513129126787, - "c4": 7.933879171849084, - "c5": 7.175749876447982, - "c6": 8.757917883905087, - "c7": 8.317303536340297 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.649098474341194, + "c3": 10.540915395284332, + "c4": 8.43273231622746, + "c5": 6.324549237170597, + "c6": 4.216366158113734, + "c7": 2.1081830790568628 }, "rgb": [58, 15, 49] }, @@ -8052,23 +8052,23 @@ "year": 1623, "resistanceReported": false, "duration": 130809600, - "curveSeeds": { - "c1": 115.9706124005719, - "c2": -111.20393389214867, - "c3": -16.06640938174843, - "c4": 143.94814007299868, - "c5": -45.17057295256569, - "c6": -92.58215170768077, - "c7": 17.768858745597555 + "points": { + "c1": 108.4113650632591, + "c2": -81.35283653558572, + "c3": 122.54965626265806, + "c4": -115.88204999609857, + "c5": 12.958619767272978, + "c6": 70.55013100258489, + "c7": -139.38294337723443 }, - "vertexSeeds": { - "c1": 6.482425161436004, - "c2": 6.274369674210405, - "c3": 6.425380395795189, - "c4": 6.962606300838152, - "c5": 6.4151629213645505, - "c6": 6.1416203230218915, - "c7": 6.422124101978778 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203888, + "c3": 8.7378640776699, + "c4": 6.9902912621359246, + "c5": 5.242718446601948, + "c6": 3.4951456310679623, + "c7": 1.7475728155339858 }, "rgb": [77, 76, 132] }, @@ -8079,23 +8079,23 @@ "year": 1620, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 10.86277454201587, - "c2": 26.652391067197108, - "c3": -37.370217051796395, - "c4": 44.2895610169417, - "c5": -46.08285771957977, - "c6": 5.413910904601607, - "c7": -16.908125033682516 + "points": { + "c1": -28.010516501460664, + "c2": -3.950987354691989, + "c3": -34.90309739691906, + "c4": 39.557147019512435, + "c5": -31.10156283148458, + "c6": -16.62721890568053, + "c7": -54.765157530891734 }, - "vertexSeeds": { - "c1": 7.976397854149689, - "c2": 7.183694655629301, - "c3": 8.283083021512851, - "c4": 6.827527826469376, - "c5": 6.870742454492222, - "c6": 8.083372109898562, - "c7": 7.4985316646304305 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295425, + "c3": 9.939898289412856, + "c4": 7.951918631530277, + "c5": 5.963938973647707, + "c6": 3.9759593157651385, + "c7": 1.9879796578825693 }, "rgb": [58, 15, 49] }, @@ -8106,23 +8106,23 @@ "year": 1623, "resistanceReported": false, "duration": 127526400, - "curveSeeds": { - "c1": 76.1663355392898, - "c2": -4.484933848404751, - "c3": -113.16524844256345, - "c4": -103.55459811108399, - "c5": 132.22276407976415, - "c6": -104.45332995761638, - "c7": 63.10263304696707 + "points": { + "c1": 148.735759792407, + "c2": 147.43437203115298, + "c3": -1.3852611451563064, + "c4": -127.1963228392523, + "c5": -142.1498925765118, + "c6": 15.310015732524505, + "c7": 0.15177987344443977 }, - "vertexSeeds": { - "c1": 6.934473212445387, - "c2": 6.905078238739665, - "c3": 7.009046003802492, - "c4": 6.112796686398555, - "c5": 6.090900668358965, - "c6": 6.967221083347971, - "c7": 6.702106865546233 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962556, + "c3": 8.599167822468791, + "c4": 6.879334257975037, + "c5": 5.159500693481274, + "c6": 3.4396671289875185, + "c7": 1.719833564493764 }, "rgb": [222, 0, 59] }, @@ -8133,23 +8133,23 @@ "year": 1621, "resistanceReported": false, "duration": 57542400, - "curveSeeds": { - "c1": 9.169285073008567, - "c2": 70.00189980338928, - "c3": -64.21792630807397, - "c4": -24.180932117480026, - "c5": -1.64978805409676, - "c6": -20.033722661315792, - "c7": 38.60570372291593 + "points": { + "c1": 48.687272185311, + "c2": 24.485099694091616, + "c3": 7.856178982587068, + "c4": 35.86900240428278, + "c5": 21.593236861495953, + "c6": -71.70871675771279, + "c7": -20.29468630079569 }, - "vertexSeeds": { - "c1": 5.979319711657804, - "c2": 6.505718384697893, - "c3": 6.327596331283318, - "c4": 6.341200462822034, - "c5": 5.980606759979004, - "c6": 5.898818289040093, - "c7": 7.072164904901948 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -8160,23 +8160,23 @@ "year": 1619, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": 4.539603343861909, - "c2": -5.464409890854176, - "c3": 3.519668062288055, - "c4": -0.8906706677782275, - "c5": -10.211967478769473, - "c6": 1.0869543851381458, - "c7": -10.297311240646389 + "points": { + "c1": -15.470657812406735, + "c2": 4.060880637368118, + "c3": -19.1417203475199, + "c4": -11.31755051870237, + "c5": 19.447073061502724, + "c6": -6.072482734576161, + "c7": -14.017512568087982 }, - "vertexSeeds": { - "c1": 4.0859838212558, - "c2": 4.900367969082889, - "c3": 4.188925964428034, - "c4": 4.408612991412736, - "c5": 3.9698972469920255, - "c6": 4.526948819615191, - "c7": 4.890915516888935 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216365, + "c3": 5.871474803513638, + "c4": 4.69717984281091, + "c5": 3.5228848821081824, + "c6": 2.348589921405455, + "c7": 1.1742949607027275 }, "rgb": [222, 0, 59] }, @@ -8187,23 +8187,23 @@ "year": 1621, "resistanceReported": false, "duration": 62208000, - "curveSeeds": { - "c1": 25.910751079626138, - "c2": 29.48167892606368, - "c3": -50.41025481106069, - "c4": -23.30590707148731, - "c5": -3.9489579468193483, - "c6": -47.74701878143463, - "c7": -62.644215950861074 + "points": { + "c1": -67.045007301601, + "c2": -31.714295674953057, + "c3": -2.1730082873810943, + "c4": -58.57067442566156, + "c5": -51.87785670026375, + "c6": 10.79429582778721, + "c7": -64.81884500706464 }, - "vertexSeeds": { - "c1": 13.130027941251168, - "c2": 12.284568749982254, - "c3": 12.856457724912884, - "c4": 11.491639815126518, - "c5": 11.03288198089121, - "c6": 11.517364029978651, - "c7": 11.096098977089317 + "offsets": { + "c1": 22.84789644012945, + "c2": 19.58391123439668, + "c3": 16.31992602866389, + "c4": 13.055940822931118, + "c5": 9.79195561719833, + "c6": 6.527970411465559, + "c7": 3.2639852057327707 }, "rgb": [58, 15, 49] }, @@ -8214,23 +8214,23 @@ "year": 1620, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -2.4402611585572345, - "c2": 9.312142146335539, - "c3": 12.794501701241188, - "c4": 35.55851614011474, - "c5": -25.567512389918754, - "c6": -19.06100834446104, - "c7": -17.90898562498825 + "points": { + "c1": 26.903147096638996, + "c2": 4.592882218563993, + "c3": 21.977715368925345, + "c4": -4.6212732566604515, + "c5": 24.956303312132484, + "c6": -32.51207209943024, + "c7": -0.010102671742522773 }, - "vertexSeeds": { - "c1": 7.965679860788477, - "c2": 7.757998712628192, - "c3": 9.088756958777685, - "c4": 8.674001418768484, - "c5": 8.500206648459601, - "c6": 8.19050180370625, - "c7": 8.451991250467117 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346745, + "c3": 11.118816458622282, + "c4": 8.89505316689783, + "c5": 6.671289875173377, + "c6": 4.447526583448915, + "c7": 2.223763291724462 }, "rgb": [222, 0, 59] }, @@ -8241,23 +8241,23 @@ "year": 1621, "resistanceReported": false, "duration": 58233600, - "curveSeeds": { - "c1": -44.117247405877315, - "c2": -69.75953890762547, - "c3": -23.901105294891657, - "c4": -32.94460459752289, - "c5": 29.776223366976495, - "c6": -59.98299176252728, - "c7": 17.662058607795203 + "points": { + "c1": -38.853838925367434, + "c2": -24.540441800515374, + "c3": -0.7072224962808349, + "c4": -18.525660267216587, + "c5": 27.345810769162, + "c6": 69.39425707449719, + "c7": -58.388386370583476 }, - "vertexSeeds": { - "c1": 5.120525736603779, - "c2": 6.312145355301736, - "c3": 6.1012603714731375, - "c4": 5.75205230132537, - "c5": 5.207912707481218, - "c6": 5.369937368561856, - "c7": 6.158184057133447 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [77, 76, 132] }, @@ -8268,23 +8268,23 @@ "year": 1620, "resistanceReported": false, "duration": 45878400, - "curveSeeds": { - "c1": 17.91805019055328, - "c2": -23.60893852139464, - "c3": 18.608932917694652, - "c4": -13.857577339578924, - "c5": -40.37034254879167, - "c6": 28.127248833981803, - "c7": 20.367806452061522 + "points": { + "c1": -54.1498654655417, + "c2": -42.63169460549435, + "c3": -30.518115498164683, + "c4": 7.465454614508708, + "c5": 34.93539385737305, + "c6": -9.457775412930502, + "c7": 10.717198853951935 }, - "vertexSeeds": { - "c1": 10.977164622586953, - "c2": 10.984537503386989, - "c3": 9.925446858273606, - "c4": 9.837647453906111, - "c5": 9.76590594535489, - "c6": 10.434866684573326, - "c7": 9.036616186654177 + "offsets": { + "c1": 18.705501618122977, + "c2": 16.033287101248263, + "c3": 13.361072584373549, + "c4": 10.688858067498836, + "c5": 8.016643550624131, + "c6": 5.344429033749418, + "c7": 2.6722145168747047 }, "rgb": [238, 201, 159] }, @@ -8295,23 +8295,23 @@ "year": 1621, "resistanceReported": false, "duration": 64454400, - "curveSeeds": { - "c1": 30.496885398478298, - "c2": -17.856533737894623, - "c3": -78.80926321508588, - "c4": -67.8695284851682, - "c5": 30.769690968481072, - "c6": -70.59132983682028, - "c7": -45.13509013264028 + "points": { + "c1": -40.42560353761593, + "c2": 81.42247852920488, + "c3": -56.83955176539398, + "c4": 6.580422216510456, + "c5": -63.29687039515346, + "c6": -36.459312179027876, + "c7": -40.4131371400804 }, - "vertexSeeds": { - "c1": 7.190504829763955, - "c2": 8.21808027650768, - "c3": 7.4237275424544675, - "c4": 8.075586697613872, - "c5": 8.018655942555752, - "c6": 7.608096524214768, - "c7": 7.270957324614801 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536753, + "c3": 10.078594544613962, + "c4": 8.062875635691169, + "c5": 6.047156726768376, + "c6": 4.0314378178455845, + "c7": 2.0157189089227923 }, "rgb": [238, 201, 159] }, @@ -8322,23 +8322,23 @@ "year": 1620, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 46.11693648643187, - "c2": 47.00279030084279, - "c3": 10.640393895299312, - "c4": -8.48111549105267, - "c5": -14.99285886007155, - "c6": -28.110577972960552, - "c7": -16.290421986749507 + "points": { + "c1": 43.33923772416459, + "c2": -15.6897695747479, + "c3": 13.850258763271015, + "c4": -48.05442014631819, + "c5": -28.90037658538021, + "c6": -46.63370120180765, + "c7": 24.23397429965442 }, - "vertexSeeds": { - "c1": 7.49585254036128, - "c2": 6.923087243867962, - "c3": 7.516830942169201, - "c4": 6.45215105259858, - "c5": 7.718106311801492, - "c6": 6.749755589157699, - "c7": 7.798774554653017 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.45631067961165, + "c3": 9.546925566343045, + "c4": 7.637540453074437, + "c5": 5.72815533980583, + "c6": 3.818770226537214, + "c7": 1.909385113268616 }, "rgb": [238, 201, 159] }, @@ -8349,23 +8349,23 @@ "year": 1621, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 48.2063990591999, - "c2": 41.42179239518196, - "c3": 41.47867906895386, - "c4": 34.59822736739475, - "c5": -20.500281638531014, - "c6": -29.21922338939965, - "c7": -30.117831190669378 + "points": { + "c1": -44.054047176001674, + "c2": -52.679183334243966, + "c3": 9.756659432925353, + "c4": 27.224768417724896, + "c5": -39.41273261421985, + "c6": -0.16001579341680383, + "c7": -48.24672407045267 }, - "vertexSeeds": { - "c1": 5.9683109212870304, - "c2": 5.860800816639512, - "c3": 6.85260443104691, - "c4": 6.234446708592197, - "c5": 5.7456639086462555, - "c6": 5.891312475557116, - "c7": 6.620774901035558 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -8376,23 +8376,23 @@ "year": 1622, "resistanceReported": false, "duration": 88560000, - "curveSeeds": { - "c1": 64.09434352422542, - "c2": -12.402967166278714, - "c3": 23.855410810908324, - "c4": -81.33498369493925, - "c5": 101.37098690081083, - "c6": -77.41220740056043, - "c7": 8.443798198515395 + "points": { + "c1": 77.47389607287187, + "c2": 78.3639697037172, + "c3": -89.4482905630951, + "c4": 49.94950612557588, + "c5": -2.4431262141642947, + "c6": -32.424462566942495, + "c7": 81.50313301845085 }, - "vertexSeeds": { - "c1": 7.257691937106207, - "c2": 7.53560340031456, - "c3": 6.2756362162418045, - "c4": 6.717760317282396, - "c5": 6.711496903693796, - "c6": 6.979954331196769, - "c7": 7.34068865651103 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [58, 15, 49] }, @@ -8403,23 +8403,23 @@ "year": 1622, "resistanceReported": false, "duration": 70502400, - "curveSeeds": { - "c1": 32.240320933391885, - "c2": 82.3755683433301, - "c3": 11.711421927325901, - "c4": 65.23407543930078, - "c5": 75.2108241012899, - "c6": -37.570542715007825, - "c7": 39.115907648660695 + "points": { + "c1": 8.21257421826813, + "c2": 20.733541959122746, + "c3": -11.167091483599833, + "c4": -48.658126942902165, + "c5": -35.447454469057604, + "c6": -16.647625421063523, + "c7": 24.655210506411336 }, - "vertexSeeds": { - "c1": 9.382002302202729, - "c2": 8.764197883808539, - "c3": 8.981804464517811, - "c4": 9.014550827752489, - "c5": 8.201340095578002, - "c6": 8.839715541326065, - "c7": 8.680048259145039 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231625, + "c3": 11.627369394359688, + "c4": 9.301895515487752, + "c5": 6.976421636615808, + "c6": 4.650947757743872, + "c7": 2.325473878871936 }, "rgb": [222, 0, 59] }, @@ -8430,23 +8430,23 @@ "year": 1622, "resistanceReported": false, "duration": 78537600, - "curveSeeds": { - "c1": 70.19582674702143, - "c2": -2.0999967299242, - "c3": 55.06732981488251, - "c4": 8.183497930326524, - "c5": 50.38773090188148, - "c6": 50.3119224664441, - "c7": -11.155378829643283 + "points": { + "c1": 86.91946859137177, + "c2": 80.53257639917082, + "c3": -12.83769594396685, + "c4": 26.24306791894952, + "c5": -42.081530749290295, + "c6": 79.89193683181354, + "c7": -53.16869969537492 }, - "vertexSeeds": { - "c1": 8.978617556598103, - "c2": 8.537899048187082, - "c3": 9.94685451187361, - "c4": 8.33359174345951, - "c5": 9.869919917239844, - "c6": 10.095067776629177, - "c7": 9.778741220928744 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.646324549237178, + "c3": 12.205270457697639, + "c4": 9.76421636615811, + "c5": 7.32316227461858, + "c6": 4.882108183079059, + "c7": 2.4410540915395207 }, "rgb": [86, 146, 138] }, @@ -8457,23 +8457,23 @@ "year": 1623, "resistanceReported": false, "duration": 110332800, - "curveSeeds": { - "c1": 79.62720270339142, - "c2": 93.48991312134243, - "c3": -67.82229523863637, - "c4": 58.9338263108462, - "c5": 108.55596709229141, - "c6": -90.35593416643233, - "c7": -112.5052711645086 + "points": { + "c1": -80.17333038712073, + "c2": -52.75886330170361, + "c3": 57.117660881350645, + "c4": -26.54707000203173, + "c5": 120.38382860893762, + "c6": -96.07585637298095, + "c7": -37.158626093757945 }, - "vertexSeeds": { - "c1": 6.701699872327802, - "c2": 6.229612921914489, - "c3": 6.683361123250775, - "c4": 7.412350929390472, - "c5": 6.855708154006735, - "c6": 6.75114400896039, - "c7": 6.725947412419441 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.762829403606105, + "c3": 8.969024503005082, + "c4": 7.175219602404067, + "c5": 5.3814147018030525, + "c6": 3.587609801202029, + "c7": 1.7938049006010146 }, "rgb": [58, 15, 49] }, @@ -8484,23 +8484,23 @@ "year": 1624, "resistanceReported": false, "duration": 134524800, - "curveSeeds": { - "c1": -104.35699285138512, - "c2": 46.40884985514995, - "c3": 32.263979822409084, - "c4": -56.47466082961225, - "c5": -90.23872469994649, - "c6": 70.57542007630667, - "c7": -70.5606304160405 + "points": { + "c1": 40.52281114227563, + "c2": -6.446608618430872, + "c3": -129.93875089464785, + "c4": 32.62914014980862, + "c5": -47.829221858101775, + "c6": 100.30977669846354, + "c7": -103.9229369733224 }, - "vertexSeeds": { - "c1": 6.067769460376167, - "c2": 5.545215376105509, - "c3": 5.9512271119227655, - "c4": 5.955005654222407, - "c5": 5.909784420708884, - "c6": 5.38541152738989, - "c7": 5.707230283671781 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996764, + "c4": 6.343042071197411, + "c5": 4.757281553398058, + "c6": 3.1715210355987056, + "c7": 1.5857605177993528 }, "rgb": [222, 0, 59] }, @@ -8511,23 +8511,23 @@ "year": 1622, "resistanceReported": false, "duration": 57542400, - "curveSeeds": { - "c1": 72.86256733322995, - "c2": 7.803462225354195, - "c3": 29.956739805286105, - "c4": 5.687953666811822, - "c5": 71.59121953395623, - "c6": -30.52492215311105, - "c7": 20.879481358842654 + "points": { + "c1": -5.6492528081682, + "c2": -26.549221757246713, + "c3": -7.472065055694969, + "c4": 32.59192773801061, + "c5": -34.25164652675707, + "c6": -69.95200503145477, + "c7": -26.1881162199537 }, - "vertexSeeds": { - "c1": 3.273368974677234, - "c2": 3.3660700499194283, - "c3": 3.5528733097629352, - "c4": 3.1152928609000936, - "c5": 3.101839390549205, - "c6": 3.2602790864384437, - "c7": 3.753241580596838 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.9361997226074905, + "c3": 4.946833102172906, + "c4": 3.9574664817383263, + "c5": 2.9680998613037453, + "c6": 1.9787332408691611, + "c7": 0.9893666204345806 }, "rgb": [86, 146, 138] }, @@ -8538,23 +8538,23 @@ "year": 1621, "resistanceReported": false, "duration": 45532800, - "curveSeeds": { - "c1": 42.111349446323295, - "c2": 25.175388486225394, - "c3": -41.19402549791517, - "c4": 52.74657209927944, - "c5": -48.35945723134107, - "c6": 21.51846811670348, - "c7": -12.320535618227645 + "points": { + "c1": -36.701882151768025, + "c2": -12.814899298083006, + "c3": 33.3492195483525, + "c4": -42.468277946533114, + "c5": -40.743584364500336, + "c6": -18.666188991864317, + "c7": 28.306668796111232 }, - "vertexSeeds": { - "c1": 5.230531372234293, - "c2": 5.384793698877498, - "c3": 6.127768450619609, - "c4": 5.223546419246597, - "c5": 5.051361387230526, - "c6": 5.078598048347413, - "c7": 5.409904324703732 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.4664817383263955, + "c4": 5.973185390661114, + "c5": 4.479889042995833, + "c6": 2.9865926953305526, + "c7": 1.4932963476652716 }, "rgb": [86, 146, 138] }, @@ -8565,23 +8565,23 @@ "year": 1621, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -23.58712409235395, - "c2": -43.09781803433515, - "c3": -23.15717924365042, - "c4": 32.56984571209208, - "c5": 29.57491303558613, - "c6": 4.726738178548736, - "c7": 37.644973319207814 + "points": { + "c1": -28.437101383544537, + "c2": 7.380991289403852, + "c3": -44.06845957179484, + "c4": -23.957743791576554, + "c5": -3.626141616543883, + "c6": 13.127246007608093, + "c7": -3.672074388569449 }, - "vertexSeeds": { - "c1": 7.115074195143554, - "c2": 6.332192940373113, - "c3": 6.660439705910918, - "c4": 6.0221058812830774, - "c5": 6.936380346941232, - "c6": 5.8553242453055905, - "c7": 6.701492999438841 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042997, + "c3": 8.645399907535833, + "c4": 6.916319926028668, + "c5": 5.187239944521504, + "c6": 3.4581599630143387, + "c7": 1.729079981507174 }, "rgb": [222, 0, 59] }, @@ -8592,23 +8592,23 @@ "year": 1620, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 14.711205805009556, - "c2": 19.965598601260112, - "c3": 20.57837644919801, - "c4": 16.759200308801383, - "c5": -12.29539241541008, - "c6": 1.8023514271244743, - "c7": -15.189702630758902 + "points": { + "c1": 19.10839150308241, + "c2": 15.800609584932424, + "c3": -19.29268514514662, + "c4": 18.452034615003072, + "c5": -18.25114994653855, + "c6": 21.041269296972324, + "c7": 5.702691919760063 }, - "vertexSeeds": { - "c1": 6.506247275420874, - "c2": 7.035136708775033, - "c3": 7.956919570856361, - "c4": 6.68922976792493, - "c5": 7.0290238286087465, - "c6": 6.841044798446658, - "c7": 6.73357442895884 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [77, 76, 132] }, @@ -8619,23 +8619,23 @@ "year": 1621, "resistanceReported": false, "duration": 47952000, - "curveSeeds": { - "c1": -31.279100333766408, - "c2": -26.455543847142557, - "c3": 12.723460330578227, - "c4": -61.584295872578394, - "c5": -35.87605886340101, - "c6": 30.15276958995313, - "c7": 25.65633452241891 + "points": { + "c1": -12.251871292037073, + "c2": -8.077822873425028, + "c3": 54.10535578023182, + "c4": -4.051206816438494, + "c5": 1.7124608612094363, + "c6": -12.67178729519916, + "c7": 20.244753412357653 }, - "vertexSeeds": { - "c1": 5.495659016048662, - "c2": 5.3255105968975425, - "c3": 5.304108267742992, - "c4": 5.543796227173008, - "c5": 6.033931178771856, - "c6": 5.91491118605014, - "c7": 6.098562687152517 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112347, + "c3": 7.535829865926952, + "c4": 6.028663892741566, + "c5": 4.521497919556169, + "c6": 3.014331946370783, + "c7": 1.5071659731853866 }, "rgb": [222, 0, 59] }, @@ -8646,23 +8646,23 @@ "year": 1624, "resistanceReported": false, "duration": 123292800, - "curveSeeds": { - "c1": 33.75151688402585, - "c2": 134.1483432168909, - "c3": -10.543876710463962, - "c4": 43.90307625604541, - "c5": -21.43677775610307, - "c6": 28.319130678374393, - "c7": 109.1104863470942 + "points": { + "c1": -128.2639779682827, + "c2": -110.66228210262919, + "c3": 64.58033112884772, + "c4": -14.670639472770915, + "c5": 63.452531087024425, + "c6": -41.20359925454591, + "c7": -135.38246485044098 }, - "vertexSeeds": { - "c1": 7.212158371977516, - "c2": 6.389155763359832, - "c3": 5.978631348542165, - "c4": 5.91800766184206, - "c5": 6.55484925645096, - "c6": 6.951988125460619, - "c7": 7.053759312176102 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244108, + "c3": 8.760980120203417, + "c4": 7.008784096162735, + "c5": 5.256588072122054, + "c6": 3.5043920480813724, + "c7": 1.7521960240406818 }, "rgb": [238, 201, 159] }, @@ -8673,23 +8673,23 @@ "year": 1621, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": 39.19229834007041, - "c2": 45.2401189814031, - "c3": -27.954610152818013, - "c4": 35.35316142262779, - "c5": 44.962431887059196, - "c6": -43.96039478697631, - "c7": -5.832825231343975 + "points": { + "c1": -28.299146904944752, + "c2": 48.749978522681175, + "c3": 19.490117678889504, + "c4": -32.30526159853216, + "c5": 30.08563202151555, + "c6": -31.338178999130534, + "c7": 7.887323257373353 }, - "vertexSeeds": { - "c1": 4.269083705326226, - "c2": 4.44704895394762, - "c3": 4.213656836795905, - "c4": 4.5204514985804005, - "c5": 4.02615844856576, - "c6": 4.526023656113397, - "c7": 4.659768384125562 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.10124826629681, + "c3": 5.917706888580673, + "c4": 4.734165510864539, + "c5": 3.550624133148405, + "c6": 2.3670827554322673, + "c7": 1.1835413777161337 }, "rgb": [86, 146, 138] }, @@ -8700,23 +8700,23 @@ "year": 1622, "resistanceReported": false, "duration": 55036800, - "curveSeeds": { - "c1": -4.404023130167488, - "c2": -28.9300545328433, - "c3": 52.800488034206566, - "c4": -1.3660947210418897, - "c5": -37.875304986038486, - "c6": -52.724029825381564, - "c7": 61.546519306890715 + "points": { + "c1": -50.481470060922945, + "c2": -37.15477475799346, + "c3": -2.9542576789739314, + "c4": -57.790277091161826, + "c5": 32.75815386561894, + "c6": 16.695371121310174, + "c7": 66.6489175874212 }, - "vertexSeeds": { - "c1": 3.7966633419778506, - "c2": 3.6687505475959723, - "c3": 3.467035135939356, - "c4": 3.764294859650964, - "c5": 3.26737366771437, - "c6": 3.728369481813355, - "c7": 3.20276450642303 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703654, + "c4": 3.698566805362922, + "c5": 2.7739251040221906, + "c6": 1.8492834026814589, + "c7": 0.9246417013407318 }, "rgb": [238, 201, 159] }, @@ -8727,23 +8727,23 @@ "year": 1621, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 10.274614432450264, - "c2": -23.986820813548675, - "c3": 5.966399658894794, - "c4": 25.249256128863927, - "c5": 23.99378260959481, - "c6": -16.5405271884618, - "c7": 0.4357433303050726 + "points": { + "c1": -32.16279588354156, + "c2": 15.055183115754346, + "c3": 0.6842950383380284, + "c4": 19.635389677333016, + "c5": -21.683833720450128, + "c6": 22.204482495257757, + "c7": -17.85443658942854 }, - "vertexSeeds": { - "c1": 5.114457774060385, - "c2": 4.514148655993476, - "c3": 4.715654631688281, - "c4": 4.5484044245788855, - "c5": 5.228822702954979, - "c6": 5.017411568702581, - "c7": 5.327764002181513 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101246, + "c3": 6.380027739251044, + "c4": 5.1040221914008335, + "c5": 3.828016643550623, + "c6": 2.5520110957004167, + "c7": 1.2760055478502106 }, "rgb": [77, 76, 132] }, @@ -8754,23 +8754,23 @@ "year": 1622, "resistanceReported": false, "duration": 45187200, - "curveSeeds": { - "c1": -5.772113458378733, - "c2": 41.60366121993645, - "c3": 49.100603437033136, - "c4": -30.87422115888023, - "c5": 58.83718140296789, - "c6": -41.52587581902566, - "c7": 53.88562787765317 + "points": { + "c1": -10.670400332972967, + "c2": -17.235431448053582, + "c3": 41.353017943183694, + "c4": 46.083199296278785, + "c5": -27.25878171915253, + "c6": -29.250032568402354, + "c7": -28.922656962999994 }, - "vertexSeeds": { - "c1": 4.214270406713936, - "c2": 4.683614730456827, - "c3": 4.604500688233308, - "c4": 4.8739943220370705, - "c5": 4.212276508391291, - "c6": 4.596606880878546, - "c7": 4.731458381841749 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658809, + "c3": 6.125751271382341, + "c4": 4.9006010171058705, + "c5": 3.6754507628294046, + "c6": 2.4503005085529352, + "c7": 1.2251502542764652 }, "rgb": [58, 15, 49] }, @@ -8781,23 +8781,23 @@ "year": 1623, "resistanceReported": false, "duration": 96768000, - "curveSeeds": { - "c1": -89.11480247661535, - "c2": -48.25411885332794, - "c3": 6.803967395178702, - "c4": -95.96098061694764, - "c5": 28.781253473230436, - "c6": 6.229662149959026, - "c7": 29.22220909883677 + "points": { + "c1": -62.53193097235521, + "c2": 82.65504887219197, + "c3": 114.96824321852083, + "c4": -49.67715067658115, + "c5": -78.964955840715, + "c6": -2.1718717264021024, + "c7": -17.35927753046289 }, - "vertexSeeds": { - "c1": 6.827474006946197, - "c2": 6.1500430160703345, - "c3": 6.447749912176319, - "c4": 5.613810976754922, - "c5": 5.7382663468129405, - "c6": 6.810206089708202, - "c7": 5.749532930667407 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238559, + "c3": 8.183079056865468, + "c4": 6.546463245492366, + "c5": 4.909847434119275, + "c6": 3.273231622746183, + "c7": 1.6366158113730915 }, "rgb": [77, 76, 132] }, @@ -8808,23 +8808,23 @@ "year": 1623, "resistanceReported": false, "duration": 82598400, - "curveSeeds": { - "c1": 66.59330618517896, - "c2": 5.191772180728094, - "c3": -53.63270379671435, - "c4": -88.61752041058386, - "c5": -22.495105001292714, - "c6": 86.09401119656087, - "c7": -54.03404653130422 + "points": { + "c1": -83.19269652899874, + "c2": 0.07769946642042669, + "c3": 86.34766043703857, + "c4": 28.04549494900573, + "c5": -56.55170372482397, + "c6": 73.30048070492995, + "c7": 5.968871724455127 }, - "vertexSeeds": { - "c1": 5.695094151685989, - "c2": 6.5212789147305985, - "c3": 5.762059905375282, - "c4": 5.920571304814228, - "c5": 5.627072773750327, - "c6": 5.716344654671317, - "c7": 6.383933581388076 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447989, + "c3": 8.321775312066578, + "c4": 6.657420249653254, + "c5": 4.9930651872399405, + "c6": 3.328710124826627, + "c7": 1.6643550624133134 }, "rgb": [77, 76, 132] }, @@ -8835,23 +8835,23 @@ "year": 1623, "resistanceReported": false, "duration": 90892800, - "curveSeeds": { - "c1": -5.8791496963058165, - "c2": -9.73410815024529, - "c3": 9.737894307273649, - "c4": 62.72789661600291, - "c5": -78.15881342795127, - "c6": -106.17307096124945, - "c7": -25.618391984923193 + "points": { + "c1": 93.65251773392376, + "c2": -108.87636749531435, + "c3": -72.79154294007297, + "c4": 45.35620009943514, + "c5": 104.23041763767384, + "c6": -41.674037891648865, + "c7": -92.51841393851252 }, - "vertexSeeds": { - "c1": 6.825043974808851, - "c2": 6.1424931399008695, - "c3": 7.502142179117765, - "c4": 6.835906855854421, - "c5": 6.268709153460804, - "c6": 6.961773906672354, - "c7": 7.319037283695396 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847436, + "c3": 9.107720758206199, + "c4": 7.286176606564952, + "c5": 5.464632454923714, + "c6": 3.643088303282476, + "c7": 1.821544151641238 }, "rgb": [238, 201, 159] }, @@ -8862,23 +8862,23 @@ "year": 1623, "resistanceReported": false, "duration": 92016000, - "curveSeeds": { - "c1": 8.445511634309142, - "c2": 99.18932914003837, - "c3": -70.84179150315356, - "c4": -93.07817664008229, - "c5": -83.02920575109977, - "c6": -91.75196876881877, - "c7": -33.4788737974817 + "points": { + "c1": 107.80634010654178, + "c2": -71.26382343208319, + "c3": -94.21049768142794, + "c4": -68.64028452196561, + "c5": 10.316488985593722, + "c6": 52.770076001470315, + "c7": -107.8539120369095 }, - "vertexSeeds": { - "c1": 5.608275279098405, - "c2": 5.661351031406078, - "c3": 5.9282582015458285, - "c4": 6.468302021586395, - "c5": 5.271029693346137, - "c6": 6.119780790681003, - "c7": 6.360011416891218 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635226, + "c3": 7.836338418862688, + "c4": 6.269070735090148, + "c5": 4.701803051317609, + "c6": 3.13453536754507, + "c7": 1.5672676837725301 }, "rgb": [86, 146, 138] }, @@ -8889,23 +8889,23 @@ "year": 1623, "resistanceReported": false, "duration": 100828800, - "curveSeeds": { - "c1": -110.667900414683, - "c2": -59.63185706287633, - "c3": -74.82764818342602, - "c4": -9.509396333197287, - "c5": 64.38846615193982, - "c6": -87.43883535300105, - "c7": -53.928091057700115 + "points": { + "c1": -73.95883584287523, + "c2": 69.18986952855197, + "c3": -99.1535846631277, + "c4": -65.03334562794109, + "c5": -115.17436229593946, + "c6": -109.9402643814832, + "c7": 28.193075379161527 }, - "vertexSeeds": { - "c1": 6.27325420153285, - "c2": 6.0370853300849765, - "c3": 6.064230044641216, - "c4": 6.472199392041311, - "c5": 7.273761871192314, - "c6": 7.045340778686918, - "c7": 5.9338916639205666 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736938, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.513638465094777, + "c7": 1.7568192325473933 }, "rgb": [222, 0, 59] }, @@ -8916,23 +8916,23 @@ "year": 1621, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -27.005850874340464, - "c2": 0.13209473718010756, - "c3": 26.851951799036797, - "c4": -23.4079466707758, - "c5": 23.961620380214512, - "c6": -11.37647523712619, - "c7": 7.586071514872188 + "points": { + "c1": -13.251126306111779, + "c2": 15.578768573506814, + "c3": -29.513597760570786, + "c4": -3.757231758539156, + "c5": -9.442217841434815, + "c6": -14.808714708859332, + "c7": 16.314742063687 }, - "vertexSeeds": { - "c1": 4.679678666270201, - "c2": 5.323513236328098, - "c3": 5.229191773711067, - "c4": 4.812057291205631, - "c5": 5.396062185811372, - "c6": 5.353955621424329, - "c7": 5.282489964687554 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390659, + "c4": 5.732778548312533, + "c5": 4.2995839112344, + "c6": 2.8663892741562664, + "c7": 1.4331946370781332 }, "rgb": [77, 76, 132] }, @@ -8943,23 +8943,23 @@ "year": 1622, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 26.942462532316142, - "c2": 1.8687114926750326, - "c3": -15.201726500505469, - "c4": 4.423022326268168, - "c5": 9.45894775425679, - "c6": 13.847631687657142, - "c7": -39.37173192419979 + "points": { + "c1": 0.05359244923047868, + "c2": 18.310287617224603, + "c3": 22.10743532450664, + "c4": 7.6343740384028465, + "c5": -41.607010627705456, + "c6": 27.670539104574203, + "c7": 23.304157025647754 }, - "vertexSeeds": { - "c1": 3.2283411251699508, - "c2": 3.4907714025148375, - "c3": 3.2588082330696104, - "c4": 3.6550932049228013, - "c5": 3.5363632718074367, - "c6": 3.469710688261622, - "c7": 2.996013230845355 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803052, + "c3": 4.484512251502543, + "c4": 3.587609801202034, + "c5": 2.690707350901526, + "c6": 1.793804900601017, + "c7": 0.8969024503005085 }, "rgb": [222, 0, 59] }, @@ -8970,23 +8970,23 @@ "year": 1623, "resistanceReported": false, "duration": 63331200, - "curveSeeds": { - "c1": 16.750871201644856, - "c2": 17.989363607019214, - "c3": 73.33746838172361, - "c4": -28.78240400549751, - "c5": -76.41436882360375, - "c6": -54.289038125588476, - "c7": 35.19978909540811 + "points": { + "c1": -47.303613755007596, + "c2": -65.05551715224631, + "c3": -31.20514231362693, + "c4": -44.890594686638536, + "c5": 14.466316384830748, + "c6": -3.985189518699414, + "c7": -44.024300204839776 }, - "vertexSeeds": { - "c1": 7.4612496507168835, - "c2": 6.104122190732216, - "c3": 7.247283361498667, - "c4": 6.366565088748386, - "c5": 7.321394188911399, - "c6": 6.659500790557436, - "c7": 6.415338707863031 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525658, + "c3": 8.922792417938046, + "c4": 7.138233934350435, + "c5": 5.353675450762824, + "c6": 3.5691169671752134, + "c7": 1.7845584835876018 }, "rgb": [222, 0, 59] }, @@ -8997,23 +8997,23 @@ "year": 1621, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 13.706442398551516, - "c2": 5.79243403228228, - "c3": -25.468394592295713, - "c4": 11.945851262560574, - "c5": 2.567198604408933, - "c6": 6.158134771973515, - "c7": -16.549855226893825 + "points": { + "c1": 10.449851207057506, + "c2": -12.299992550121388, + "c3": 24.327195827354203, + "c4": 12.623144178244857, + "c5": 8.81725326319139, + "c6": -9.533508179510122, + "c7": 12.532302198084828 }, - "vertexSeeds": { - "c1": 7.271561222667643, - "c2": 6.431468084582884, - "c3": 6.868133629614746, - "c4": 7.372273401500374, - "c5": 6.412047395343513, - "c6": 6.5712094114692245, - "c7": 6.655473137189258 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [238, 201, 159] }, @@ -9024,23 +9024,23 @@ "year": 1622, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": -9.014224845141165, - "c2": -35.48607088631335, - "c3": -3.6075012870872882, - "c4": 51.791206486807226, - "c5": 28.161945509100804, - "c6": -40.11516356775516, - "c7": -27.09628335226867 + "points": { + "c1": 27.352689048446166, + "c2": 0.35229810255383853, + "c3": 42.51794395703733, + "c4": 12.679673891352152, + "c5": -3.7290971164353337, + "c6": -10.246965395147619, + "c7": -3.5079228362107244 }, - "vertexSeeds": { - "c1": 4.709245691209815, - "c2": 4.555018231528498, - "c3": 4.651681560642758, - "c4": 4.571210718610404, - "c5": 4.978586467757659, - "c6": 4.87072358707089, - "c7": 4.792667318386488 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377254, + "c3": 5.963938973647712, + "c4": 4.771151178918166, + "c5": 3.578363384188625, + "c6": 2.385575589459083, + "c7": 1.1927877947295416 }, "rgb": [222, 0, 59] }, @@ -9051,23 +9051,23 @@ "year": 1622, "resistanceReported": false, "duration": 54345600, - "curveSeeds": { - "c1": -10.053813062386538, - "c2": 11.807480084049743, - "c3": 25.07084522955236, - "c4": -55.33340042096443, - "c5": 42.852921184424474, - "c6": 18.25592262240292, - "c7": 54.92153272395447 + "points": { + "c1": 43.82775469317875, + "c2": 34.66297965033368, + "c3": 27.19486263133767, + "c4": 24.778036604706188, + "c5": 29.170651914144557, + "c6": 56.361307740183506, + "c7": 2.039841348027764 }, - "vertexSeeds": { - "c1": 6.73212518558388, - "c2": 6.168603236367685, - "c3": 6.1551021180121825, - "c4": 6.41170192281097, - "c5": 6.9270458160359825, - "c6": 6.541848034719951, - "c7": 6.26697822663017 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645398, + "c5": 5.506241331484051, + "c6": 3.670827554322704, + "c7": 1.8354137771613475 }, "rgb": [86, 146, 138] }, @@ -9078,23 +9078,23 @@ "year": 1624, "resistanceReported": false, "duration": 85795200, - "curveSeeds": { - "c1": -62.50755765930483, - "c2": -48.864553395353646, - "c3": 93.41646696292811, - "c4": 52.07286778335494, - "c5": 103.66789212574686, - "c6": 72.4742154393828, - "c7": -46.493902614060005 + "points": { + "c1": -87.79359400325572, + "c2": 41.2914953465838, + "c3": -10.762743744798385, + "c4": 100.30467972939725, + "c5": -71.22368369073106, + "c6": -75.30063024634096, + "c7": -93.77843950559601 }, - "vertexSeeds": { - "c1": 5.827148127347927, - "c2": 5.269202402080378, - "c3": 6.126737600632987, - "c4": 5.3237978608926175, - "c5": 5.270411436565348, - "c6": 5.313067523899768, - "c7": 5.170822863424058 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [77, 76, 132] }, @@ -9105,23 +9105,23 @@ "year": 1624, "resistanceReported": false, "duration": 95385600, - "curveSeeds": { - "c1": 68.68456932862401, - "c2": 113.16066324266203, - "c3": 25.384118381596977, - "c4": -56.84108498679191, - "c5": 29.152745270227967, - "c6": 4.199418801343185, - "c7": -40.63678526027692 + "points": { + "c1": 15.507020402947006, + "c2": -96.98919678078171, + "c3": -103.67682539222692, + "c4": -37.16717454670207, + "c5": 38.09637051708253, + "c6": -8.248611633933336, + "c7": -31.928537158386405 }, - "vertexSeeds": { - "c1": 8.258985543576749, - "c2": 9.510368302981021, - "c3": 10.049000556543056, - "c4": 10.112110066763805, - "c5": 10.21544209566321, - "c6": 9.279145893581356, - "c7": 8.18321154380875 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.646324549237178, + "c3": 12.205270457697639, + "c4": 9.76421636615811, + "c5": 7.32316227461858, + "c6": 4.882108183079059, + "c7": 2.4410540915395207 }, "rgb": [77, 76, 132] }, @@ -9132,23 +9132,23 @@ "year": 1624, "resistanceReported": false, "duration": 95040000, - "curveSeeds": { - "c1": -81.41132773845695, - "c2": 2.591682907173876, - "c3": 89.280434007687, - "c4": 62.078198542901674, - "c5": -66.5502104217017, - "c6": 76.84540822753164, - "c7": 3.2455184843303186 + "points": { + "c1": -7.821986390271405, + "c2": -53.2665731976497, + "c3": 96.7939977088233, + "c4": 99.60443357381487, + "c5": -69.84754330718133, + "c6": 54.71834658669974, + "c7": -18.428053241246644 }, - "vertexSeeds": { - "c1": 5.703856282711379, - "c2": 6.272349836518251, - "c3": 6.54751360802443, - "c4": 6.6961705097335695, - "c5": 6.264686189590563, - "c6": 6.746464124129236, - "c7": 6.71967049488631 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640778, + "c3": 8.414239482200642, + "c4": 6.731391585760516, + "c5": 5.048543689320389, + "c6": 3.3656957928802624, + "c7": 1.6828478964401268 }, "rgb": [222, 0, 59] }, @@ -9159,23 +9159,23 @@ "year": 1622, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 0.5652773542054419, - "c2": 17.04491069227536, - "c3": -18.194232758458583, - "c4": -23.906938742122875, - "c5": -24.501590125569347, - "c6": -8.195155299572999, - "c7": -20.382911506092718 + "points": { + "c1": -13.34026395910177, + "c2": 25.066452633768023, + "c3": 12.622701912240593, + "c4": 25.52009946488384, + "c5": -7.815778803323184, + "c6": -15.5029924480849, + "c7": -10.058672783038851 }, - "vertexSeeds": { - "c1": 6.269646487758069, - "c2": 6.47678623828283, - "c3": 6.388412447363176, - "c4": 5.555966358007749, - "c5": 5.419405401829628, - "c6": 5.687725754021184, - "c7": 5.985119906778797 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [238, 201, 159] }, @@ -9186,23 +9186,23 @@ "year": 1623, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": 22.047393921644442, - "c2": -22.54872689778793, - "c3": 49.06997426373319, - "c4": -25.456479355428435, - "c5": -40.45694241981208, - "c6": -34.54257320640618, - "c7": -49.35997995731301 + "points": { + "c1": -29.494317911957474, + "c2": -58.03273979120963, + "c3": -46.112573711122835, + "c4": 12.373371460140078, + "c5": -51.99980480097828, + "c6": -41.97027574182733, + "c7": -16.648793892365987 }, - "vertexSeeds": { - "c1": 6.6111613364734625, - "c2": 6.215407141245903, - "c3": 6.095903090479182, - "c4": 6.381387217528781, - "c5": 5.9795937206813194, - "c6": 6.3339119359255305, - "c7": 6.632136201931193 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801665, + "c3": 8.506703652334723, + "c4": 6.805362921867771, + "c5": 5.104022191400828, + "c6": 3.4026814609338856, + "c7": 1.7013407304669428 }, "rgb": [86, 146, 138] }, @@ -9213,23 +9213,23 @@ "year": 1623, "resistanceReported": false, "duration": 57283200, - "curveSeeds": { - "c1": -23.234947353826236, - "c2": 56.06821976160835, - "c3": 17.55382572433021, - "c4": 55.83584427360232, - "c5": 64.21280248495147, - "c6": -29.807757986375485, - "c7": -16.76202587957858 + "points": { + "c1": -17.759213554824406, + "c2": 31.195825598867785, + "c3": 32.5343339534021, + "c4": -60.13145379125367, + "c5": -18.96651424950315, + "c6": 56.438317621983416, + "c7": -63.63813501382922 }, - "vertexSeeds": { - "c1": 4.7496641047071195, - "c2": 4.946671130454609, - "c3": 5.5537385352250785, - "c4": 5.647235572554618, - "c5": 4.960846121501287, - "c6": 5.002209347863401, - "c7": 5.615599344995558 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622746, + "c3": 7.027276930189547, + "c4": 5.621821544151644, + "c5": 4.216366158113733, + "c6": 2.81091077207582, + "c7": 1.4054553860379078 }, "rgb": [58, 15, 49] }, @@ -9240,23 +9240,23 @@ "year": 1624, "resistanceReported": false, "duration": 83462400, - "curveSeeds": { - "c1": -16.725098408600076, - "c2": -44.5958433887563, - "c3": 72.94413511880849, - "c4": 57.816647712258586, - "c5": 5.612715727246098, - "c6": -10.153147614309745, - "c7": 76.18073706995771 + "points": { + "c1": 78.48083339529931, + "c2": 39.35157224564638, + "c3": 77.24903003028486, + "c4": -66.62665739419889, + "c5": -87.7803910848235, + "c6": 59.57403109221163, + "c7": 23.826850273496177 }, - "vertexSeeds": { - "c1": 6.246910404093257, - "c2": 6.700543215338856, - "c3": 7.0095135842401906, - "c4": 6.449608202301092, - "c5": 5.9812889465464005, - "c6": 7.131645631566773, - "c7": 5.776485742399872 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [58, 15, 49] }, @@ -9267,23 +9267,23 @@ "year": 1623, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 26.76395928752656, - "c2": -2.6120583246125832, - "c3": -22.056712408162014, - "c4": 39.22626128703929, - "c5": 42.59260394914743, - "c6": -41.376464492769536, - "c7": -8.027484742352833 + "points": { + "c1": 26.95385562257691, + "c2": 3.89174977105462, + "c3": 28.446210437706682, + "c4": 34.93435885917293, + "c5": -34.918660437865114, + "c6": -14.95798264357655, + "c7": 28.355421854300033 }, - "vertexSeeds": { - "c1": 6.97744638473935, - "c2": 6.759913574613966, - "c3": 7.250050790084752, - "c4": 7.213243249026121, - "c5": 6.36025232726602, - "c6": 6.000145052636889, - "c7": 6.598724471348501 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871017, + "c4": 7.101248266296811, + "c5": 5.325936199722606, + "c6": 3.55062413314841, + "c7": 1.775312066574205 }, "rgb": [222, 0, 59] }, @@ -9294,23 +9294,23 @@ "year": 1622, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -20.109984768600874, - "c2": 6.510030815321095, - "c3": 22.02842103381432, - "c4": -1.4483895276080112, - "c5": 8.807983461846042, - "c6": -12.125458916587059, - "c7": -21.728730407542226 + "points": { + "c1": -15.962722979324992, + "c2": -8.632350638615886, + "c3": -5.754031397669809, + "c4": -4.5840569034390555, + "c5": 8.951910111391307, + "c6": -21.191959621281562, + "c7": 25.31942680247041 }, - "vertexSeeds": { - "c1": 7.8907384713489, - "c2": 7.280800345407678, - "c3": 6.793899654904663, - "c4": 6.563596462818153, - "c5": 7.335866974093682, - "c6": 7.930009815020247, - "c7": 7.414857767530503 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [77, 76, 132] }, @@ -9321,23 +9321,23 @@ "year": 1624, "resistanceReported": false, "duration": 64627200, - "curveSeeds": { - "c1": -49.11264736576908, - "c2": -1.6422021454666265, - "c3": -68.95979931396081, - "c4": -27.801381106312853, - "c5": -48.392750709419936, - "c6": 13.288449379591398, - "c7": 11.735462958634571 + "points": { + "c1": 62.91990412635961, + "c2": 8.849141176178975, + "c3": -74.6580550457476, + "c4": 53.096999857541206, + "c5": 1.7166887697174218, + "c6": -58.096491019547386, + "c7": -79.49777397674555 }, - "vertexSeeds": { - "c1": 6.015717481862044, - "c2": 6.778976729159475, - "c3": 7.009299983046457, - "c4": 7.45444660918533, - "c5": 7.43663263316294, - "c6": 6.710371244856292, - "c7": 6.615073672853954 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565883, + "c3": 8.945908460471564, + "c4": 7.156726768377252, + "c5": 5.3675450762829415, + "c6": 3.578363384188622, + "c7": 1.789181692094311 }, "rgb": [58, 15, 49] }, @@ -9348,23 +9348,23 @@ "year": 1626, "resistanceReported": false, "duration": 123033600, - "curveSeeds": { - "c1": 134.5782175959742, - "c2": -81.81089799055056, - "c3": -117.31503006542589, - "c4": -105.28814370441285, - "c5": -15.19485926076132, - "c6": 123.38904415714057, - "c7": 56.641661601754635 + "points": { + "c1": 114.49110357081486, + "c2": -24.31400719431163, + "c3": 46.45780566547086, + "c4": -66.3411184918778, + "c5": 61.86017791395446, + "c6": 71.64530427208456, + "c7": -101.0773390258203 }, - "vertexSeeds": { - "c1": 0.4640405574301568, - "c2": 0.40779669213996744, - "c3": 0.48262673045940824, - "c4": 0.4393361808424041, - "c5": 0.4210633875975063, - "c6": 0.43898631329690324, - "c7": 0.45439520051237975 + "offsets": { + "c1": 0.8414239482200648, + "c2": 0.7212205270457701, + "c3": 0.6010171058714748, + "c4": 0.48081368469718005, + "c5": 0.3606102635228848, + "c6": 0.24040684234859003, + "c7": 0.12020342117429532 }, "rgb": [222, 0, 59] }, @@ -9375,23 +9375,23 @@ "year": 1625, "resistanceReported": false, "duration": 94953600, - "curveSeeds": { - "c1": -101.09881897414253, - "c2": 74.38433192922454, - "c3": -27.44581574034318, - "c4": 29.256351099225384, - "c5": -85.06460148114112, - "c6": 66.66905087612744, - "c7": 63.221833655163294 + "points": { + "c1": -95.4095075602955, + "c2": -106.60528937945092, + "c3": -64.05347551101605, + "c4": 77.0286089653321, + "c5": -84.37649375909201, + "c6": -77.71148645550004, + "c7": 111.80427920540691 }, - "vertexSeeds": { - "c1": 6.062323432420515, - "c2": 5.746328172693497, - "c3": 5.669051002195026, - "c4": 6.472739288358173, - "c5": 6.322690092373196, - "c6": 5.5286375031917085, - "c7": 5.87443584266851 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876565, + "c3": 7.9750346740638, + "c4": 6.380027739251043, + "c5": 4.785020804438278, + "c6": 3.1900138696255214, + "c7": 1.5950069348127565 }, "rgb": [222, 0, 59] }, @@ -9402,23 +9402,23 @@ "year": 1624, "resistanceReported": false, "duration": 55900800, - "curveSeeds": { - "c1": 53.01474916332502, - "c2": -57.3367706389214, - "c3": -70.64763688543381, - "c4": -36.56948682755708, - "c5": -0.6938089652424395, - "c6": -16.466368976390896, - "c7": -28.57502347750522 + "points": { + "c1": 61.65432716236995, + "c2": -65.26626643145886, + "c3": 3.238735685422455, + "c4": -65.26730321949867, + "c5": -21.37482399611843, + "c6": 56.62797177003358, + "c7": 69.41908848214922 }, - "vertexSeeds": { - "c1": 7.155290910493474, - "c2": 6.546135273984432, - "c3": 6.848214854593156, - "c4": 5.954255567025389, - "c5": 6.129877483870951, - "c6": 6.5328474574362145, - "c7": 6.403357531223755 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [77, 76, 132] }, @@ -9429,23 +9429,23 @@ "year": 1629, "resistanceReported": false, "duration": 212025600, - "curveSeeds": { - "c1": 196.07299235445655, - "c2": 33.2987549354568, - "c3": -172.0278469879973, - "c4": -169.36982891139166, - "c5": -31.371919376750242, - "c6": 17.599693820527676, - "c7": 190.07941735149254 + "points": { + "c1": 131.65877748405606, + "c2": -209.90322848176834, + "c3": 35.081986105271056, + "c4": 242.14324655545468, + "c5": 122.84156320832417, + "c6": -203.28849067575493, + "c7": 32.78169449936982 }, - "vertexSeeds": { - "c1": 6.7075435646019965, - "c2": 6.925445132563896, - "c3": 7.101482642963664, - "c4": 6.995991670221752, - "c5": 7.051994483661361, - "c6": 6.17145697362985, - "c7": 6.367737464816737 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [77, 76, 132] }, @@ -9456,23 +9456,23 @@ "year": 1625, "resistanceReported": false, "duration": 63849600, - "curveSeeds": { - "c1": 5.697847232065655, - "c2": -15.441702392118444, - "c3": -44.24548111508654, - "c4": 72.74326205442402, - "c5": 28.92956626783156, - "c6": -41.21225768057083, - "c7": -42.354251223059535 + "points": { + "c1": 27.77970896010686, + "c2": 10.86757164470994, + "c3": -40.596685717959694, + "c4": 27.559135589725074, + "c5": 73.76074344278318, + "c6": 4.724991652176982, + "c7": 65.72451116514647 }, - "vertexSeeds": { - "c1": 6.10500593596146, - "c2": 6.364815876625162, - "c3": 6.85416906158875, - "c4": 5.98480155903293, - "c5": 6.685264828021189, - "c6": 6.034399029044093, - "c7": 6.326048175244493 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680996, + "c3": 8.43735552473417, + "c4": 6.749884419787334, + "c5": 5.062413314840498, + "c6": 3.374942209893662, + "c7": 1.6874711049468356 }, "rgb": [238, 201, 159] }, @@ -9483,23 +9483,23 @@ "year": 1625, "resistanceReported": false, "duration": 79920000, - "curveSeeds": { - "c1": 81.16250711634291, - "c2": -4.96398417986353, - "c3": 81.20580862104225, - "c4": 42.963406859963555, - "c5": 34.823392309815006, - "c6": 31.645389216716467, - "c7": -23.569811223119416 + "points": { + "c1": -6.2446338158730015, + "c2": -70.35441154373787, + "c3": 45.29549197470166, + "c4": -36.432853199960306, + "c5": -81.90828287900217, + "c6": -74.0377015618303, + "c7": -25.263837359906148 }, - "vertexSeeds": { - "c1": 5.508264341168891, - "c2": 6.103719995539986, - "c3": 6.066365672905798, - "c4": 5.939640693136565, - "c5": 6.214216265177836, - "c6": 5.2689548600536975, - "c7": 6.198199931040865 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353671, + "c3": 7.674526121128064, + "c4": 6.139620896902447, + "c5": 4.60471567267684, + "c6": 3.0698104484512236, + "c7": 1.5349052242256163 }, "rgb": [58, 15, 49] }, @@ -9510,23 +9510,23 @@ "year": 1628, "resistanceReported": false, "duration": 184377600, - "curveSeeds": { - "c1": -68.19080898927402, - "c2": -72.90955885728837, - "c3": 124.81282182447356, - "c4": -151.0376572480486, - "c5": -205.92468622156238, - "c6": -82.37186665667645, - "c7": 110.3962530906962 + "points": { + "c1": -23.60032504800668, + "c2": 21.468789693209118, + "c3": 82.79991199812233, + "c4": 214.0608789333289, + "c5": -99.37695007591925, + "c6": -103.6766992835907, + "c7": 206.63806560829224 }, - "vertexSeeds": { - "c1": 6.806576403494836, - "c2": 6.770178693273298, - "c3": 5.85722816633901, - "c4": 6.8778599302554335, - "c5": 5.8072292436352075, - "c6": 5.558014984285334, - "c7": 6.879688096078999 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359224, + "c3": 8.252427184466015, + "c4": 6.6019417475728135, + "c5": 4.951456310679612, + "c6": 3.3009708737864023, + "c7": 1.6504854368932012 }, "rgb": [238, 201, 159] }, @@ -9537,23 +9537,23 @@ "year": 1624, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": 20.612995811805902, - "c2": 5.9174126844311985, - "c3": -10.37337627216445, - "c4": 21.771527370378763, - "c5": -28.18575308072967, - "c6": 27.933831965882007, - "c7": 45.14685888163575 + "points": { + "c1": 34.799572897560466, + "c2": -34.55853680522685, + "c3": -27.521220448001007, + "c4": 24.817316218301414, + "c5": 21.079300377366437, + "c6": -3.3946639392776774, + "c7": -3.7079429490073252 }, - "vertexSeeds": { - "c1": 6.509491643897165, - "c2": 6.54969027953395, - "c3": 6.089511201156082, - "c4": 6.582341313593549, - "c5": 6.344658346676205, - "c6": 5.70043242423894, - "c7": 6.90597070019449 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640778, + "c3": 8.414239482200642, + "c4": 6.731391585760516, + "c5": 5.048543689320389, + "c6": 3.3656957928802624, + "c7": 1.6828478964401268 }, "rgb": [222, 0, 59] }, @@ -9564,23 +9564,23 @@ "year": 1624, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": -28.61457886648071, - "c2": 13.752928662341773, - "c3": 17.30220909028354, - "c4": -19.20154176024802, - "c5": -14.049067726104319, - "c6": 31.316980889912443, - "c7": 49.55212104202464 + "points": { + "c1": -29.131910744920447, + "c2": 37.48911134281096, + "c3": -24.078349043213258, + "c4": -49.671694056611244, + "c5": -3.4215931196556753, + "c6": -19.84304980515312, + "c7": 48.1169857122097 }, - "vertexSeeds": { - "c1": 3.98661711767399, - "c2": 4.102634033326547, - "c3": 3.819702096838906, - "c4": 4.103002470058535, - "c5": 4.044610888651218, - "c6": 3.2283620162389424, - "c7": 4.071598219443377 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492372, + "c3": 5.4553860379103085, + "c4": 4.364308830328247, + "c5": 3.273231622746186, + "c6": 2.1821544151641223, + "c7": 1.0910772075820612 }, "rgb": [58, 15, 49] }, @@ -9591,23 +9591,23 @@ "year": 1625, "resistanceReported": false, "duration": 56073600, - "curveSeeds": { - "c1": -19.45368110110754, - "c2": -17.365914094050872, - "c3": 1.8620458597746108, - "c4": -58.38175174417538, - "c5": -50.974309244007884, - "c6": -32.63537343695741, - "c7": -46.68615345190662 + "points": { + "c1": -6.76814918826814, + "c2": -49.71898545989961, + "c3": 29.26418274010264, + "c4": 64.85514744277583, + "c5": -15.54266192927544, + "c6": 30.59844916727124, + "c7": 60.78194699290427 }, - "vertexSeeds": { - "c1": 6.238204918129268, - "c2": 5.87579869468823, - "c3": 6.2517754915255015, - "c4": 6.064130290196701, - "c5": 5.245052946498859, - "c6": 6.12576787135591, - "c7": 6.241638824504031 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353671, + "c3": 7.674526121128064, + "c4": 6.139620896902447, + "c5": 4.60471567267684, + "c6": 3.0698104484512236, + "c7": 1.5349052242256163 }, "rgb": [86, 146, 138] }, @@ -9618,23 +9618,23 @@ "year": 1625, "resistanceReported": false, "duration": 44409600, - "curveSeeds": { - "c1": 45.75590021811093, - "c2": 30.021476575275294, - "c3": 12.34978469224145, - "c4": 23.749185530947393, - "c5": 23.99490766090242, - "c6": 54.70740519848645, - "c7": -39.651965935254246 + "points": { + "c1": -6.900654838820749, + "c2": 7.049832066265402, + "c3": -4.503377253129472, + "c4": 27.916441415439756, + "c5": 54.85975796047931, + "c6": 52.0250156926928, + "c7": -1.551116516532396 }, - "vertexSeeds": { - "c1": 6.5281265074234245, - "c2": 6.382820076618542, - "c3": 6.591019320494347, - "c4": 5.907442229213983, - "c5": 5.511349108010202, - "c6": 5.73379937927673, - "c7": 6.574830722055263 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [58, 15, 49] }, @@ -9645,23 +9645,23 @@ "year": 1627, "resistanceReported": false, "duration": 115603200, - "curveSeeds": { - "c1": 44.319294134790425, - "c2": -133.13650067421392, - "c3": 41.58559343419171, - "c4": -7.796308751826217, - "c5": -106.7879825771106, - "c6": 13.766246545597625, - "c7": -66.41879069839824 + "points": { + "c1": -78.95236576416691, + "c2": 113.04009013822579, + "c3": 65.9800851516101, + "c4": -56.26076445149644, + "c5": -54.32234297039726, + "c6": 73.90162227344686, + "c7": -31.52568963352951 }, - "vertexSeeds": { - "c1": 6.754225182651652, - "c2": 6.63239711680289, - "c3": 6.552604567734914, - "c4": 6.888528274343823, - "c5": 6.84080494305835, - "c6": 7.009068584062539, - "c7": 6.904341815665076 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [58, 15, 49] }, @@ -9672,23 +9672,23 @@ "year": 1626, "resistanceReported": false, "duration": 62985600, - "curveSeeds": { - "c1": -51.79837868989946, - "c2": -70.74036651516472, - "c3": -56.04226974024742, - "c4": 62.70947742660627, - "c5": 25.548138997789636, - "c6": -77.67220606703741, - "c7": 70.87620972802057 + "points": { + "c1": -23.883786434510903, + "c2": -78.09098742848465, + "c3": 7.1548860575947515, + "c4": 76.45759578601141, + "c5": -32.59189063393818, + "c6": 72.84780008971032, + "c7": 20.01290031816069 }, - "vertexSeeds": { - "c1": 5.910832283997898, - "c2": 6.372098403116307, - "c3": 6.407070150261287, - "c4": 6.514714405815756, - "c5": 6.8976756832906, - "c6": 7.026439613488557, - "c7": 6.698156679848581 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841885, + "c3": 8.529819694868237, + "c4": 6.82385575589459, + "c5": 5.117891816920943, + "c6": 3.411927877947295, + "c7": 1.7059639389736474 }, "rgb": [238, 201, 159] }, @@ -9699,23 +9699,23 @@ "year": 1626, "resistanceReported": false, "duration": 64800000, - "curveSeeds": { - "c1": -13.19791469864019, - "c2": -48.47654919716428, - "c3": -40.76251394462235, - "c4": -22.508221058470625, - "c5": -54.006519830844894, - "c6": -70.49050120021172, - "c7": 65.48239859058594 + "points": { + "c1": 49.82902311852763, + "c2": 66.08287468092311, + "c3": -70.33449811655575, + "c4": -12.223432626880196, + "c5": -64.46389996747827, + "c6": 8.691400648474072, + "c7": -56.90774750413597 }, - "vertexSeeds": { - "c1": 6.305162713950297, - "c2": 5.747918923706346, - "c3": 6.104712142501656, - "c4": 5.821721139640088, - "c5": 5.798120756549008, - "c6": 5.280427222586119, - "c7": 5.280147822634242 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [58, 15, 49] }, @@ -9726,23 +9726,23 @@ "year": 1626, "resistanceReported": false, "duration": 84067200, - "curveSeeds": { - "c1": 53.96382536458029, - "c2": 6.871621658423692, - "c3": -75.74048953218012, - "c4": -64.59889819561332, - "c5": 30.626599620727887, - "c6": -88.57728767644967, - "c7": -21.781278452739883 + "points": { + "c1": 93.5269829047503, + "c2": -45.66401221839509, + "c3": 102.6437646483169, + "c4": -77.0699704854129, + "c5": -32.686499561297424, + "c6": 29.512566169729666, + "c7": -14.070060580744524 }, - "vertexSeeds": { - "c1": 6.825193567970353, - "c2": 7.4141255334104486, - "c3": 7.546346967266561, - "c4": 6.5793198556601755, - "c5": 7.680832630321032, - "c6": 6.948636066072954, - "c7": 7.79166926059019 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [58, 15, 49] }, @@ -9753,23 +9753,23 @@ "year": 1626, "resistanceReported": false, "duration": 68515200, - "curveSeeds": { - "c1": -27.605381833307987, - "c2": 61.682364413920055, - "c3": 51.6664321839138, - "c4": 84.11886185312011, - "c5": 41.55955467559474, - "c6": 71.09666093387636, - "c7": 17.250820140570212 + "points": { + "c1": -60.040913442780905, + "c2": -12.73788509460637, + "c3": 57.88088566973613, + "c4": -5.914497465922636, + "c5": -7.555630046776571, + "c6": 56.860633668689275, + "c7": -17.312161513799253 }, - "vertexSeeds": { - "c1": 6.182447162969135, - "c2": 6.787998795982073, - "c3": 6.523901058239887, - "c4": 6.2192287463915985, - "c5": 6.4578535696440715, - "c6": 5.921205444634415, - "c7": 6.553782150452651 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -9780,23 +9780,23 @@ "year": 1627, "resistanceReported": false, "duration": 99964800, - "curveSeeds": { - "c1": -32.992358243030964, - "c2": 66.40048567175015, - "c3": 20.082266565255736, - "c4": -17.993311235433723, - "c5": 110.45653791226971, - "c6": -6.707070520094334, - "c7": -2.8460316756639656 + "points": { + "c1": 115.79950333015896, + "c2": -67.37361525597976, + "c3": 14.249130569276133, + "c4": -36.45253585369265, + "c5": 63.031057517332954, + "c6": 54.727962863637316, + "c7": 50.78424734823474 }, - "vertexSeeds": { - "c1": 5.75551146135952, - "c2": 7.00869092565396, - "c3": 5.81603193899692, - "c4": 6.099189128417004, - "c5": 6.607028978706918, - "c6": 6.5240172121591975, - "c7": 6.167869323642112 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841885, + "c3": 8.529819694868237, + "c4": 6.82385575589459, + "c5": 5.117891816920943, + "c6": 3.411927877947295, + "c7": 1.7059639389736474 }, "rgb": [238, 201, 159] }, @@ -9807,23 +9807,23 @@ "year": 1627, "resistanceReported": false, "duration": 75945600, - "curveSeeds": { - "c1": 79.04640405757078, - "c2": 13.715172451933512, - "c3": -0.21284536665037024, - "c4": -5.248003138858692, - "c5": 8.414624487305204, - "c6": 75.54579760358757, - "c7": -65.54770114126143 + "points": { + "c1": 94.91319787199564, + "c2": 72.07471437114006, + "c3": -21.602692755892832, + "c4": -41.186738732647704, + "c5": 37.13799700606393, + "c6": 1.6553062309094457, + "c7": 92.97531743375106 }, - "vertexSeeds": { - "c1": 6.298247704022028, - "c2": 6.10137692999059, - "c3": 6.5993883952438654, - "c4": 5.966138165998852, - "c5": 6.637725473972113, - "c6": 6.709459092892972, - "c7": 6.811639863887015 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.576051779935272, + "c4": 6.860841423948216, + "c5": 5.14563106796116, + "c6": 3.430420711974104, + "c7": 1.7152103559870473 }, "rgb": [238, 201, 159] }, @@ -9834,23 +9834,23 @@ "year": 1625, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": 15.342165428764385, - "c2": -7.312348683533864, - "c3": 12.944081051772873, - "c4": 10.260677680707293, - "c5": 16.35022622841218, - "c6": 14.193497272069688, - "c7": -7.736474559326506 + "points": { + "c1": 17.461384601815194, + "c2": 17.113031313544706, + "c3": 0.9485228193545083, + "c4": 2.8609027923966153, + "c5": 15.383844531339076, + "c6": 4.326011355280826, + "c7": 5.304938916538958 }, - "vertexSeeds": { - "c1": 5.908640248930347, - "c2": 5.416672502128134, - "c3": 6.2530058516886795, - "c4": 5.479963523498607, - "c5": 6.035718058374003, - "c6": 5.63984064192994, - "c7": 5.973664339323164 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474344, + "c3": 7.7438742487286145, + "c4": 6.195099398982893, + "c5": 4.646324549237172, + "c6": 3.0975496994914513, + "c7": 1.548774849745721 }, "rgb": [86, 146, 138] }, @@ -9861,23 +9861,23 @@ "year": 1626, "resistanceReported": false, "duration": 43286400, - "curveSeeds": { - "c1": 51.998483748738174, - "c2": 6.717595721132035, - "c3": -44.54737247474962, - "c4": -56.78735986712472, - "c5": -42.77441719463572, - "c6": 42.28663132822826, - "c7": -13.30237321510991 + "points": { + "c1": 21.777394891946976, + "c2": 24.074333203450557, + "c3": 56.98819931454684, + "c4": 36.30429523466497, + "c5": -1.9456782576347607, + "c6": 43.079762579337334, + "c7": -12.946890452911553 }, - "vertexSeeds": { - "c1": 6.224121624335569, - "c2": 6.544095500477554, - "c3": 6.878945887648598, - "c4": 6.538957127523316, - "c5": 6.120516098264258, - "c6": 6.238653093285032, - "c7": 7.064263477655895 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364768, + "c3": 8.830328247803978, + "c4": 7.064262598243178, + "c5": 5.2981969486823886, + "c6": 3.532131299121589, + "c7": 1.76606564956079 }, "rgb": [222, 0, 59] }, @@ -9888,23 +9888,23 @@ "year": 1626, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -42.30952508396809, - "c2": 38.20990943170012, - "c3": -3.251936514782386, - "c4": -24.872626265819964, - "c5": -48.25560381311903, - "c6": 34.7449823267936, - "c7": 18.361186618043398 + "points": { + "c1": 39.35502882615042, + "c2": -29.635732385655068, + "c3": 24.87655535591508, + "c4": -45.69668193675628, + "c5": -39.784447275760044, + "c6": -51.97348374275554, + "c7": 3.9536461705938137 }, - "vertexSeeds": { - "c1": 5.7231260305216685, - "c2": 5.62031734836013, - "c3": 5.406461537241145, - "c4": 5.551353598128376, - "c5": 5.515169683406131, - "c6": 5.089237326913564, - "c7": 5.195724647937318 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192786, + "c3": 7.582061950993984, + "c4": 6.065649560795193, + "c5": 4.549237170596393, + "c6": 3.032824780397592, + "c7": 1.5164123901988005 }, "rgb": [238, 201, 159] }, @@ -9915,23 +9915,23 @@ "year": 1627, "resistanceReported": false, "duration": 59443200, - "curveSeeds": { - "c1": 11.689895878330262, - "c2": 62.20289204590475, - "c3": 26.755828112330548, - "c4": 51.03176237312546, - "c5": -41.51975817276055, - "c6": 25.302549706211096, - "c7": -12.77044636244495 + "points": { + "c1": 45.02175641143715, + "c2": 16.680274411038013, + "c3": -52.63060863356035, + "c4": 43.44851092272167, + "c5": -60.71609273569252, + "c6": 44.03414901651567, + "c7": -18.289658296441736 }, - "vertexSeeds": { - "c1": 5.828054241354765, - "c2": 5.587271380420114, - "c3": 5.306434976770943, - "c4": 5.5681109352543805, - "c5": 5.2012831111797695, - "c6": 5.299757148431851, - "c7": 5.987028179487792 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [77, 76, 132] }, @@ -9942,23 +9942,23 @@ "year": 1629, "resistanceReported": false, "duration": 136857600, - "curveSeeds": { - "c1": -46.93238657351486, - "c2": -121.34261664575686, - "c3": 52.891453299728, - "c4": 86.96200110837131, - "c5": 37.358817598781116, - "c6": 29.078140460984173, - "c7": -94.4629930846307 + "points": { + "c1": 129.7267002265015, + "c2": 39.58000700490547, + "c3": -136.98461527999788, + "c4": 13.755812818734228, + "c5": -121.60605603320016, + "c6": 30.116042889193153, + "c7": 113.54329663372832 }, - "vertexSeeds": { - "c1": 5.708858771164785, - "c2": 6.76270126142856, - "c3": 6.290851566020489, - "c4": 5.603777288170926, - "c5": 5.530188513299313, - "c6": 6.202741663700952, - "c7": 6.036180332284741 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [222, 0, 59] }, @@ -9969,23 +9969,23 @@ "year": 1630, "resistanceReported": false, "duration": 162172800, - "curveSeeds": { - "c1": -95.29414668895969, - "c2": -93.09355311223891, - "c3": 142.53767741714455, - "c4": 91.63856565096768, - "c5": -62.42736820682171, - "c6": -18.57758051745344, - "c7": 128.57583278872403 + "points": { + "c1": 119.76934134020905, + "c2": 120.96749619292484, + "c3": -98.4521220000726, + "c4": -145.822827543423, + "c5": 34.20244800638238, + "c6": 67.08247240592283, + "c7": -89.10348924216854 }, - "vertexSeeds": { - "c1": 6.226825218806027, - "c2": 6.3279177253570165, - "c3": 5.485955592290565, - "c4": 6.315195151332403, - "c5": 5.568955079945785, - "c6": 5.231352492192416, - "c7": 6.036432677557378 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273228, + "c3": 7.628294036061029, + "c4": 6.102635228848821, + "c5": 4.576976421636614, + "c6": 3.0513176144244065, + "c7": 1.5256588072122077 }, "rgb": [238, 201, 159] }, @@ -9996,23 +9996,23 @@ "year": 1627, "resistanceReported": false, "duration": 54000000, - "curveSeeds": { - "c1": 40.90903330480192, - "c2": 25.06688434282451, - "c3": -68.95231239496916, - "c4": 55.9675958992527, - "c5": 25.67798013730247, - "c6": -61.56627730788223, - "c7": 54.124463691829035 + "points": { + "c1": -8.577883047368793, + "c2": -11.978751454140252, + "c3": 5.397168672139472, + "c4": -66.76181034965133, + "c5": 43.93492459923374, + "c6": -42.31066445413309, + "c7": 20.392393726572934 }, - "vertexSeeds": { - "c1": 6.05577616021894, - "c2": 6.559159789816434, - "c3": 6.582509962266069, - "c4": 6.88186226443316, - "c5": 6.872702976529901, - "c6": 6.98421732668797, - "c7": 6.411665221718739 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404994, + "c3": 8.853444290337498, + "c4": 7.082755432269989, + "c5": 5.312066574202492, + "c6": 3.5413777161349946, + "c7": 1.7706888580674973 }, "rgb": [58, 15, 49] }, @@ -10023,23 +10023,23 @@ "year": 1628, "resistanceReported": false, "duration": 78883200, - "curveSeeds": { - "c1": -90.04161823068372, - "c2": -74.7003832239407, - "c3": 26.767988626028043, - "c4": 54.10472172051297, - "c5": 43.872061082738554, - "c6": 35.23178058151029, - "c7": 7.051400527213829 + "points": { + "c1": -97.06927538429213, + "c2": -26.69354374064305, + "c3": -27.972110632106975, + "c4": -94.4276099712759, + "c5": 72.94040948969791, + "c6": -44.14568858041324, + "c7": 48.74824731748856 }, - "vertexSeeds": { - "c1": 5.528222527712006, - "c2": 5.396147146118333, - "c3": 5.786079259682794, - "c4": 4.731085945325, - "c5": 4.9434575188323, - "c6": 4.776128133047975, - "c7": 4.792748888583842 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187236, + "c3": 7.0041608876560355, + "c4": 5.603328710124827, + "c5": 4.202496532593625, + "c6": 2.801664355062415, + "c7": 1.4008321775312051 }, "rgb": [77, 76, 132] }, @@ -10050,23 +10050,23 @@ "year": 1627, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 22.49673526545599, - "c2": 23.528845958451804, - "c3": 48.29793656946348, - "c4": -45.71258898702259, - "c5": 4.806635120320465, - "c6": -18.919362242671657, - "c7": 10.617030361226838 + "points": { + "c1": -28.555206370030916, + "c2": -17.455285453874374, + "c3": -4.133974815593916, + "c4": -26.76906191007639, + "c5": 13.003588900560125, + "c6": -36.43732835096826, + "c7": -33.09244135118486 }, - "vertexSeeds": { - "c1": 6.792910593977926, - "c2": 7.112397117381666, - "c3": 6.519831534260935, - "c4": 6.445613371240851, - "c5": 7.645901384635266, - "c6": 7.208096565195694, - "c7": 6.818059869063471 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343038, + "c4": 7.637540453074439, + "c5": 5.728155339805829, + "c6": 3.8187702265372194, + "c7": 1.9093851132686097 }, "rgb": [222, 0, 59] }, @@ -10077,23 +10077,23 @@ "year": 1627, "resistanceReported": false, "duration": 40089600, - "curveSeeds": { - "c1": -0.47657891942498765, - "c2": -34.254769565516284, - "c3": 17.240780619303074, - "c4": 30.808043964776566, - "c5": -49.3061394372854, - "c6": -23.461130358080645, - "c7": 48.70113690733047 + "points": { + "c1": 42.04245548100675, + "c2": -40.33279524383799, + "c3": 45.17197793967136, + "c4": -8.332267280784329, + "c5": 14.650276229635473, + "c6": 54.37144544190382, + "c7": 23.898917664047865 }, - "vertexSeeds": { - "c1": 5.548602337068667, - "c2": 5.039848547655343, - "c3": 5.540770868262734, - "c4": 5.516478591157257, - "c5": 5.561013638633895, - "c6": 5.033054902992993, - "c7": 4.890590769116073 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [238, 201, 159] }, @@ -10104,23 +10104,23 @@ "year": 1631, "resistanceReported": false, "duration": 161913600, - "curveSeeds": { - "c1": -49.175544459441824, - "c2": 107.2876577697129, - "c3": -48.83330930705486, - "c4": 8.31299468592644, - "c5": 137.2192645934445, - "c6": -100.53420402068613, - "c7": 73.97880308165145 + "points": { + "c1": -178.4261390116221, + "c2": 88.65010017163655, + "c3": 96.12341856075597, + "c4": -62.776460916244005, + "c5": -31.39533349266722, + "c6": 94.02681888299861, + "c7": -56.90009461361464 }, - "vertexSeeds": { - "c1": 7.066542498523877, - "c2": 6.491087930437181, - "c3": 6.006737605995046, - "c4": 6.3138786915303395, - "c5": 7.1315561779464804, - "c6": 7.0470239426646915, - "c7": 6.013773480210972 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [222, 0, 59] }, @@ -10131,23 +10131,23 @@ "year": 1632, "resistanceReported": false, "duration": 195264000, - "curveSeeds": { - "c1": 84.20627152681027, - "c2": -30.48683897364279, - "c3": -92.64131059925367, - "c4": -43.65244559688114, - "c5": -192.08372651585375, - "c6": 98.26182648756372, - "c7": 131.62734562704668 + "points": { + "c1": -99.76354896493804, + "c2": -171.64444604230226, + "c3": 73.46529487070814, + "c4": -12.026721968189605, + "c5": 193.75489334026798, + "c6": -198.99812158279317, + "c7": 92.53276101552655 }, - "vertexSeeds": { - "c1": 5.576903155923871, - "c2": 5.658445248913397, - "c3": 5.75557741656063, - "c4": 6.575503699534782, - "c5": 6.601056821978323, - "c6": 5.969287226259774, - "c7": 6.529956968880897 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238559, + "c3": 8.183079056865468, + "c4": 6.546463245492366, + "c5": 4.909847434119275, + "c6": 3.273231622746183, + "c7": 1.6366158113730915 }, "rgb": [77, 76, 132] }, @@ -10158,23 +10158,23 @@ "year": 1630, "resistanceReported": false, "duration": 121478400, - "curveSeeds": { - "c1": -75.14596340889719, - "c2": -115.94044693193538, - "c3": -128.4107934608862, - "c4": -90.86276948920197, - "c5": 41.04357236575839, - "c6": 118.68182217260969, - "c7": -132.52088656933296 + "points": { + "c1": -130.2678424725211, + "c2": 29.84833156456341, + "c3": 28.366716197486795, + "c4": -57.093180732497615, + "c5": 122.409308384956, + "c6": -72.41302001025763, + "c7": -138.09672637470567 }, - "vertexSeeds": { - "c1": 6.300639947250238, - "c2": 5.467746822284467, - "c3": 5.451840987034666, - "c4": 5.588444646815517, - "c5": 5.589044755656527, - "c6": 5.732542721253683, - "c7": 6.2190072652949535 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [222, 0, 59] }, @@ -10185,23 +10185,23 @@ "year": 1632, "resistanceReported": false, "duration": 165801600, - "curveSeeds": { - "c1": -88.22840735128955, - "c2": -52.51925849198986, - "c3": -112.98565316417877, - "c4": -64.83755945632672, - "c5": -25.7417233538676, - "c6": 23.707569907589487, - "c7": 112.90994215562054 + "points": { + "c1": 57.317341394062936, + "c2": 38.68068826271042, + "c3": 21.77487677124205, + "c4": -188.23999332487816, + "c5": 50.97987364955705, + "c6": -12.749909469321636, + "c7": 151.39574297854702 }, - "vertexSeeds": { - "c1": 5.83435317581865, - "c2": 6.537379219455166, - "c3": 6.866006128786676, - "c4": 7.071374878982739, - "c5": 5.785120685238979, - "c6": 6.997820563945638, - "c7": 6.916145798019134 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [238, 201, 159] }, @@ -10212,23 +10212,23 @@ "year": 1628, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 39.95636331037476, - "c2": 37.80535505913152, - "c3": 35.95215510556192, - "c4": -42.6663478708326, - "c5": 41.90661038015494, - "c6": -37.97544358234852, - "c7": 25.495368516109387 + "points": { + "c1": 5.87779432938116, + "c2": -42.03400361704277, + "c3": -47.08000055385538, + "c4": -25.82576392336026, + "c5": 31.08161588542658, + "c6": -27.648915156267588, + "c7": 30.521511667573783 }, - "vertexSeeds": { - "c1": 6.497186733843583, - "c2": 6.195703557891122, - "c3": 5.308353804150329, - "c4": 5.318140871119524, - "c5": 6.598387278164077, - "c6": 5.709618147577234, - "c7": 5.546821329806127 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715668, + "c3": 7.8825705039297285, + "c4": 6.306056403143779, + "c5": 4.72954230235784, + "c6": 3.1530282015718893, + "c7": 1.5765141007859493 }, "rgb": [222, 0, 59] }, @@ -10239,23 +10239,23 @@ "year": 1630, "resistanceReported": false, "duration": 93139200, - "curveSeeds": { - "c1": -7.743170964061505, - "c2": 14.489143882022432, - "c3": 41.78708006933721, - "c4": 34.07353447810348, - "c5": 85.32255354930314, - "c6": -43.300690812123605, - "c7": -110.93317927477962 + "points": { + "c1": 100.80876973407757, + "c2": 17.45896654243097, + "c3": 59.907665844953584, + "c4": 0.06476773226948751, + "c5": -44.144378763350744, + "c6": -104.30113804133926, + "c7": -88.4985819017206 }, - "vertexSeeds": { - "c1": 6.341251753654072, - "c2": 6.954248310207099, - "c3": 5.981468931732699, - "c4": 6.721170185231308, - "c5": 7.029002843554725, - "c6": 6.742074664453334, - "c7": 5.828681803320112 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962556, + "c3": 8.599167822468791, + "c4": 6.879334257975037, + "c5": 5.159500693481274, + "c6": 3.4396671289875185, + "c7": 1.719833564493764 }, "rgb": [77, 76, 132] }, @@ -10266,23 +10266,23 @@ "year": 1629, "resistanceReported": false, "duration": 70848000, - "curveSeeds": { - "c1": 68.54865357262435, - "c2": 45.76611019227269, - "c3": 3.3722696181684597, - "c4": -67.14457738074525, - "c5": 43.12854462614436, - "c6": 30.62342466310332, - "c7": -47.432921734780244 + "points": { + "c1": -23.93786105839183, + "c2": -71.7919610411864, + "c3": -5.385694019187824, + "c4": -13.777150199027417, + "c5": 14.04853271225737, + "c6": -70.0799439931493, + "c7": 75.819551263345 }, - "vertexSeeds": { - "c1": 6.163251521624183, - "c2": 7.059609326959682, - "c3": 6.761742627858334, - "c4": 5.889327092626472, - "c5": 6.935879887250959, - "c6": 6.481366600317077, - "c7": 5.989037646493723 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [222, 0, 59] }, @@ -10293,23 +10293,23 @@ "year": 1633, "resistanceReported": false, "duration": 197164800, - "curveSeeds": { - "c1": 28.722682356435314, - "c2": -43.789385643828524, - "c3": -120.39740001251668, - "c4": 93.92748781058722, - "c5": 200.39435256382117, - "c6": 14.016023772650641, - "c7": 45.67406232519218 + "points": { + "c1": 59.92817625847189, + "c2": 221.17003915123868, + "c3": 62.25974487705733, + "c4": -52.4923397680316, + "c5": 1.8317065344775472, + "c6": -170.4817337629559, + "c7": 191.12365224405406 }, - "vertexSeeds": { - "c1": 6.093273204226931, - "c2": 5.863108478676143, - "c3": 5.717689032487078, - "c4": 6.088563873119714, - "c5": 6.329579628028583, - "c6": 5.819292122980025, - "c7": 5.669511706998819 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [238, 201, 159] }, @@ -10320,23 +10320,23 @@ "year": 1628, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": -23.053950886490863, - "c2": -18.40224538022713, - "c3": -41.11225769212865, - "c4": -21.78247407264039, - "c5": 30.529812572933437, - "c6": -42.76711745423928, - "c7": -14.749031691978267 + "points": { + "c1": 46.85477368216799, + "c2": 54.17002313644814, + "c3": 49.9671279020461, + "c4": -50.86721155009904, + "c5": 30.782074907858743, + "c6": -29.982578933158983, + "c7": 9.89492943670713 }, - "vertexSeeds": { - "c1": 5.788352077097544, - "c2": 6.930599748610742, - "c3": 5.861131695022465, - "c4": 6.000430009549278, - "c5": 6.512484212178928, - "c6": 6.0504551764315835, - "c7": 5.947931472671925 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447989, + "c3": 8.321775312066578, + "c4": 6.657420249653254, + "c5": 4.9930651872399405, + "c6": 3.328710124826627, + "c7": 1.6643550624133134 }, "rgb": [77, 76, 132] }, @@ -10347,23 +10347,23 @@ "year": 1630, "resistanceReported": false, "duration": 101347200, - "curveSeeds": { - "c1": 26.602609311009957, - "c2": -109.04241462322426, - "c3": 84.62292207484455, - "c4": 45.42238377154271, - "c5": -96.50395328280541, - "c6": 74.97630368376113, - "c7": -1.9847973972598396 + "points": { + "c1": 47.484353119394456, + "c2": -21.907570664861325, + "c3": -32.98047808106216, + "c4": -99.0172052427801, + "c5": 99.2540575504855, + "c6": -94.66223448371261, + "c7": 24.97806793047488 }, - "vertexSeeds": { - "c1": 5.395043220451332, - "c2": 5.241541343384715, - "c3": 6.107283323829304, - "c4": 5.460403965798758, - "c5": 5.599694417536437, - "c6": 5.2768778116345745, - "c7": 5.154369427739382 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [77, 76, 132] }, @@ -10374,23 +10374,23 @@ "year": 1629, "resistanceReported": false, "duration": 57196800, - "curveSeeds": { - "c1": -20.845534338971348, - "c2": -66.39268795468064, - "c3": 49.394170024473325, - "c4": -34.004197902927125, - "c5": -58.09344576550761, - "c6": 20.774282083516496, - "c7": 20.041265477999787 + "points": { + "c1": -55.58256417315506, + "c2": -57.53148326741561, + "c3": 44.54878664951248, + "c4": -49.427154744019774, + "c5": 29.03608003075226, + "c6": -35.960302624264344, + "c7": -34.236313971787624 }, - "vertexSeeds": { - "c1": 5.275124537758002, - "c2": 6.267730381052322, - "c3": 5.351526431109001, - "c4": 6.143449348695709, - "c5": 5.226281294400138, - "c6": 5.782038838144484, - "c7": 5.572370538277662 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [77, 76, 132] }, @@ -10401,23 +10401,23 @@ "year": 1633, "resistanceReported": false, "duration": 170121600, - "curveSeeds": { - "c1": -33.236216030363664, - "c2": 147.79100347496276, - "c3": 194.12228120316755, - "c4": -141.9773188967986, - "c5": -173.93850288768675, - "c6": 85.57279397280959, - "c7": 140.85895328794257 + "points": { + "c1": 99.77518573064006, + "c2": -100.61818974690495, + "c3": 44.628193566225065, + "c4": -60.52451416083349, + "c5": -22.072309349808023, + "c6": -60.49967353397764, + "c7": 14.70928873271481 }, - "vertexSeeds": { - "c1": 5.481716560481391, - "c2": 5.929515411848655, - "c3": 6.431380500211693, - "c4": 6.123048193615013, - "c5": 5.386262240462348, - "c6": 6.295651299335559, - "c7": 5.666682966400922 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554783, + "c3": 7.790106333795651, + "c4": 6.232085067036529, + "c5": 4.674063800277396, + "c6": 3.1160425335182644, + "c7": 1.5580212667591322 }, "rgb": [238, 201, 159] }, @@ -10428,23 +10428,23 @@ "year": 1628, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 12.422584723999051, - "c2": 19.40324874109354, - "c3": -8.787584766903356, - "c4": -3.7469108642321984, - "c5": 7.714786464560543, - "c6": -20.386651219037972, - "c7": 16.62180274951644 + "points": { + "c1": 22.745960967451758, + "c2": 16.39006793247834, + "c3": 18.664035758564225, + "c4": 13.726270624090965, + "c5": -3.748877496977901, + "c6": 20.57078664305883, + "c7": 9.931001191541753 }, - "vertexSeeds": { - "c1": 6.033344127950484, - "c2": 6.290843392005806, - "c3": 6.3743872887324, - "c4": 5.33919973198734, - "c5": 5.628334318110143, - "c6": 5.9915517033898675, - "c7": 5.889027605659435 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434115, + "c3": 7.720758206195101, + "c4": 6.176606564956077, + "c5": 4.632454923717053, + "c6": 3.0883032824780385, + "c7": 1.5441516412390146 }, "rgb": [58, 15, 49] }, @@ -10455,23 +10455,23 @@ "year": 1633, "resistanceReported": false, "duration": 175392000, - "curveSeeds": { - "c1": 166.4922920727919, - "c2": -126.28985093959788, - "c3": 77.08320975057987, - "c4": -65.58350004156935, - "c5": -124.46896944175616, - "c6": 74.20303723877694, - "c7": 194.7698843415064 + "points": { + "c1": -102.13995866101116, + "c2": -192.47384538823448, + "c3": -114.06768912614186, + "c4": -61.95197930286295, + "c5": 65.68089343513586, + "c6": 183.85962121846225, + "c7": 115.19020016867776 }, - "vertexSeeds": { - "c1": 5.176543486002572, - "c2": 4.742838978668005, - "c3": 5.107380712645031, - "c4": 5.023139805362358, - "c5": 5.145509160522972, - "c6": 5.1373792835653305, - "c7": 5.307803818723997 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905692, + "c3": 6.842348589921405, + "c4": 5.47387887193712, + "c5": 4.105409153952843, + "c6": 2.736939435968562, + "c7": 1.368469717984281 }, "rgb": [86, 146, 138] }, @@ -10482,23 +10482,23 @@ "year": 1631, "resistanceReported": false, "duration": 95040000, - "curveSeeds": { - "c1": 113.67317350366625, - "c2": 5.022863883546805, - "c3": -113.93543068404745, - "c4": 99.80416781200839, - "c5": -37.75125788688416, - "c6": 106.29411892020741, - "c7": 106.87776215632121 + "points": { + "c1": 113.62402891137134, + "c2": 49.40864624847467, + "c3": 19.755524117678334, + "c4": 32.73303988662067, + "c5": 37.18232618457142, + "c6": -6.613208809416207, + "c7": 74.41599916374591 }, - "vertexSeeds": { - "c1": 5.092988023429004, - "c2": 5.4383911913529674, - "c3": 5.62593311652724, - "c4": 5.862124640244625, - "c5": 6.030337103037335, - "c6": 5.606520688971624, - "c7": 5.754846961303369 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [86, 146, 138] }, @@ -10509,23 +10509,23 @@ "year": 1636, "resistanceReported": false, "duration": 273369600, - "curveSeeds": { - "c1": -276.54820216101916, - "c2": 184.65380097008028, - "c3": -48.265461786505796, - "c4": -118.12398683695676, - "c5": 28.61332526834184, - "c6": 258.5462560398511, - "c7": 260.5728144044534 + "points": { + "c1": 142.0340207121477, + "c2": -183.54940966165825, + "c3": 45.86499841458061, + "c4": -205.20884974891393, + "c5": 50.79884333710481, + "c6": -9.67280441868354, + "c7": -45.177619243705465 }, - "vertexSeeds": { - "c1": 6.683080421019251, - "c2": 6.530469745144756, - "c3": 6.0994867546055405, - "c4": 6.4644317361279455, - "c5": 6.888700303179866, - "c6": 6.5658806440692254, - "c7": 5.873844994182448 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318997, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567729993, + "c7": 1.6458622283865043 }, "rgb": [77, 76, 132] }, @@ -10536,23 +10536,23 @@ "year": 1630, "resistanceReported": false, "duration": 57542400, - "curveSeeds": { - "c1": 67.37234451306898, - "c2": -70.77984471707835, - "c3": 70.95725679114182, - "c4": -40.37301192203243, - "c5": -69.85221951421964, - "c6": -71.50566029653915, - "c7": 48.70248248589829 + "points": { + "c1": -29.03753847364601, + "c2": 51.77813583820105, + "c3": -50.89137422900298, + "c4": 13.28428599173273, + "c5": -58.057306230259215, + "c6": 40.511374555764746, + "c7": -1.9998936421012559 }, - "vertexSeeds": { - "c1": 6.099794734671911, - "c2": 6.63806598854786, - "c3": 6.2177168800030636, - "c4": 5.54083260939982, - "c5": 5.621464671242381, - "c6": 6.523559719385322, - "c7": 6.438510047782246 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238555, + "c3": 8.18307905686546, + "c4": 6.546463245492372, + "c5": 4.9098474341192775, + "c6": 3.2732316227461817, + "c7": 1.6366158113730958 }, "rgb": [222, 0, 59] }, @@ -10563,23 +10563,23 @@ "year": 1630, "resistanceReported": false, "duration": 60134400, - "curveSeeds": { - "c1": -73.50518008140217, - "c2": -13.789220051675116, - "c3": -62.09709328122475, - "c4": -33.24712590981122, - "c5": 13.267726156219439, - "c6": -44.53906900445351, - "c7": -17.47904699483918 + "points": { + "c1": 8.391704489745365, + "c2": -62.278007938846976, + "c3": 69.85810762683998, + "c4": 6.887257765960754, + "c5": 21.607382240613276, + "c6": -52.37624684134788, + "c7": 60.91890694649139 }, - "vertexSeeds": { - "c1": 6.310550822790792, - "c2": 6.157669545127618, - "c3": 7.005970001048865, - "c4": 6.344950815819017, - "c5": 6.760830075234645, - "c6": 6.219875300746189, - "c7": 6.256516786236743 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [77, 76, 132] }, @@ -10590,23 +10590,23 @@ "year": 1629, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 8.382788739282173, - "c2": 4.459982422304336, - "c3": 25.479222452455875, - "c4": -12.499567277531986, - "c5": 20.45874197330186, - "c6": 14.429001364264192, - "c7": -3.408577782853385 + "points": { + "c1": 7.913486497384216, + "c2": 13.810438650141517, + "c3": -10.116852539844551, + "c4": 4.3895910138422884, + "c5": 21.029595351894155, + "c6": 27.43537845262492, + "c7": -1.1358158317790483 }, - "vertexSeeds": { - "c1": 0.7856574876697899, - "c2": 0.8059444819737915, - "c3": 0.8946037482201004, - "c4": 0.9176410669002784, - "c5": 0.92412484143062, - "c6": 0.8328715434628295, - "c7": 0.7894722236311029 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.3869625520110953, + "c3": 1.1558021266759135, + "c4": 0.9246417013407305, + "c5": 0.6934812760055477, + "c6": 0.4623208506703647, + "c7": 0.23116042533518294 }, "rgb": [58, 15, 49] }, @@ -10617,23 +10617,23 @@ "year": 1632, "resistanceReported": false, "duration": 69638400, - "curveSeeds": { - "c1": 4.238568289823391, - "c2": 52.39994005686411, - "c3": -15.982299209406449, - "c4": -7.9977943276028185, - "c5": 23.31112750146663, - "c6": 22.480938647651968, - "c7": -40.134914936208176 + "points": { + "c1": 35.91989506807447, + "c2": 53.90726532878175, + "c3": 71.83012603846338, + "c4": 73.26364376267544, + "c5": -59.87627707231391, + "c6": -72.05287628678794, + "c7": 62.818526255788484 }, - "vertexSeeds": { - "c1": 6.187151675639524, - "c2": 5.432890959344258, - "c3": 5.807814423182403, - "c4": 5.547884919128061, - "c5": 6.547883624084212, - "c6": 5.711358173584588, - "c7": 6.33130667017991 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [77, 76, 132] }, @@ -10644,23 +10644,23 @@ "year": 1630, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 19.527818476336407, - "c2": -9.022180427247207, - "c3": 0.3689820764313225, - "c4": -39.917478067461516, - "c5": -20.22380890770708, - "c6": -39.13101375618368, - "c7": 5.376047431378858 + "points": { + "c1": -39.2803844306805, + "c2": 1.5939209759806872, + "c3": -0.8032844911626995, + "c4": 22.74751937391013, + "c5": -38.21795704875873, + "c6": 25.585399683880787, + "c7": -27.463505823067642 }, - "vertexSeeds": { - "c1": 6.780603258009433, - "c2": 6.032209285962303, - "c3": 5.560093426999895, - "c4": 6.672462943495587, - "c5": 6.7504735780255904, - "c6": 5.675668770191843, - "c7": 5.663024899148065 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318997, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567729993, + "c7": 1.6458622283865043 }, "rgb": [58, 15, 49] }, @@ -10671,23 +10671,23 @@ "year": 1631, "resistanceReported": false, "duration": 61084800, - "curveSeeds": { - "c1": 15.464875010553499, - "c2": 37.38317326026349, - "c3": -54.457919469527084, - "c4": 44.45738546095505, - "c5": 41.08734822900384, - "c6": 67.75548274229772, - "c7": -54.608986630152415 + "points": { + "c1": -71.59449518630478, + "c2": 15.78403741111508, + "c3": -37.91258052858632, + "c4": -10.54423015009121, + "c5": 63.93080396555422, + "c6": -73.09285965840782, + "c7": 21.9507023269895 }, - "vertexSeeds": { - "c1": 6.093734300942346, - "c2": 6.19953082784545, - "c3": 6.129722644852032, - "c4": 6.160839858838331, - "c5": 5.99120833576868, - "c6": 5.68182648253397, - "c7": 5.250977062180968 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635226, + "c3": 7.836338418862688, + "c4": 6.269070735090148, + "c5": 4.701803051317609, + "c6": 3.13453536754507, + "c7": 1.5672676837725301 }, "rgb": [86, 146, 138] }, @@ -10698,23 +10698,23 @@ "year": 1631, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": -13.029883823292934, - "c2": -5.597060843852127, - "c3": 40.51583006865326, - "c4": -13.543316289786965, - "c5": -33.49068117109759, - "c6": 29.638959698637663, - "c7": 51.23214909429579 + "points": { + "c1": 37.93480569296641, + "c2": 22.349123855849925, + "c3": -24.254584191034116, + "c4": 51.03170623136607, + "c5": 51.31831131970905, + "c6": -2.288856041548023, + "c7": 31.435635476598932 }, - "vertexSeeds": { - "c1": 7.031971484081019, - "c2": 6.801350801961497, - "c3": 6.703339449624241, - "c4": 5.924001158481989, - "c5": 6.282625621945167, - "c6": 5.960694605480607, - "c7": 6.887338890314528 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [58, 15, 49] }, @@ -10725,23 +10725,23 @@ "year": 1632, "resistanceReported": false, "duration": 85622400, - "curveSeeds": { - "c1": 43.08494547094752, - "c2": -93.03684216403576, - "c3": 48.80446214181369, - "c4": 46.49330387402752, - "c5": -30.020678070288128, - "c6": 103.48885565812263, - "c7": 39.290169223721634 + "points": { + "c1": -59.081817336824386, + "c2": -65.7044065608481, + "c3": -87.5679748902061, + "c4": 2.4486524783944787, + "c5": 21.29429756967994, + "c6": 6.018530722502334, + "c7": -24.177944994032615 }, - "vertexSeeds": { - "c1": 6.669824747845141, - "c2": 5.998982387290454, - "c3": 6.7860495806558045, - "c4": 7.041534083751774, - "c5": 6.1896972742067025, - "c6": 6.6695064776559105, - "c7": 6.155295228151838 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801665, + "c3": 8.506703652334723, + "c4": 6.805362921867771, + "c5": 5.104022191400828, + "c6": 3.4026814609338856, + "c7": 1.7013407304669428 }, "rgb": [238, 201, 159] }, @@ -10752,23 +10752,23 @@ "year": 1632, "resistanceReported": false, "duration": 86918400, - "curveSeeds": { - "c1": -57.32328543702824, - "c2": 25.53847150591389, - "c3": -14.41461384974707, - "c4": -86.65584421782751, - "c5": -82.8307056769586, - "c6": 82.3023390033176, - "c7": -78.114547701475 + "points": { + "c1": 52.898184178397486, + "c2": -6.061345183265317, + "c3": 4.09300175661383, + "c4": 94.88821118111022, + "c5": -47.01677928896881, + "c6": -56.757393463002245, + "c7": -18.232277137941068 }, - "vertexSeeds": { - "c1": 7.063571894696356, - "c2": 6.558556783402297, - "c3": 6.710769010328031, - "c4": 6.880037892692638, - "c5": 5.995235337748416, - "c6": 7.148695922981009, - "c7": 6.483728694893607 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [77, 76, 132] }, @@ -10779,23 +10779,23 @@ "year": 1631, "resistanceReported": false, "duration": 43718400, - "curveSeeds": { - "c1": 30.1396604313259, - "c2": 53.820280543562, - "c3": -53.06560547477261, - "c4": -22.716511996733843, - "c5": -51.98503905805745, - "c6": -17.744840918017744, - "c7": -35.293816125814345 + "points": { + "c1": 36.26176037187154, + "c2": 30.859712028320764, + "c3": 36.180038430010946, + "c4": -28.32730412617159, + "c5": -21.9290190758877, + "c6": -8.248692426569448, + "c7": 11.176807658360282 }, - "vertexSeeds": { - "c1": 6.394138740490847, - "c2": 7.179378867594121, - "c3": 7.129763268473456, - "c4": 6.0298849193660375, - "c5": 6.6788209849867854, - "c6": 5.876879067852329, - "c7": 5.80789988427021 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [238, 201, 159] }, @@ -10806,23 +10806,23 @@ "year": 1634, "resistanceReported": false, "duration": 127094400, - "curveSeeds": { - "c1": -133.98465971599998, - "c2": 111.3582746416391, - "c3": 95.66189746312156, - "c4": 97.41221356253467, - "c5": 62.949107089158076, - "c6": -100.98801992243813, - "c7": -1.0662781721277668 + "points": { + "c1": 98.24211971550642, + "c2": -55.94504461155283, + "c3": -30.408653325835786, + "c4": -0.7306307417871096, + "c5": -71.58144484195387, + "c6": -61.752949275218015, + "c7": 32.92883717291352 }, - "vertexSeeds": { - "c1": 5.824967717331371, - "c2": 6.981719337673355, - "c3": 6.931874536554797, - "c4": 6.916934612942725, - "c5": 5.796754266187863, - "c6": 6.372159534287152, - "c7": 6.527005785598873 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733701, + "c5": 5.0346740638002805, + "c6": 3.3564493758668505, + "c7": 1.6782246879334297 }, "rgb": [222, 0, 59] }, @@ -10833,23 +10833,23 @@ "year": 1631, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": -7.592849895317897, - "c2": -16.576056008528496, - "c3": -28.371138927673854, - "c4": -30.136502735054027, - "c5": 26.500726065774835, - "c6": -22.832729503063504, - "c7": -44.49211742050854 + "points": { + "c1": -1.551256704132257, + "c2": 8.530171291064462, + "c3": 16.956726732302265, + "c4": -41.951433308928436, + "c5": -22.919662772237466, + "c6": 11.913530442474524, + "c7": 31.461540722622537 }, - "vertexSeeds": { - "c1": 6.793365397895473, - "c2": 6.334307854753421, - "c3": 6.667138270197776, - "c4": 5.754457328704132, - "c5": 6.643178986026144, - "c6": 5.735087852303412, - "c7": 6.432249815149406 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761438, + "c3": 8.483587609801203, + "c4": 6.786870087840959, + "c5": 5.090152565880723, + "c6": 3.3934350439204795, + "c7": 1.6967175219602444 }, "rgb": [77, 76, 132] }, @@ -10860,23 +10860,23 @@ "year": 1633, "resistanceReported": false, "duration": 97372800, - "curveSeeds": { - "c1": 85.50005923857374, - "c2": -97.93267629921709, - "c3": -92.2510779853598, - "c4": 75.83081480726808, - "c5": -29.028227743605825, - "c6": 109.43639434335002, - "c7": -91.64934737118213 + "points": { + "c1": 69.95941028826921, + "c2": 92.88591479539507, + "c3": -102.54585460065107, + "c4": 65.06771015058276, + "c5": -114.68395645087168, + "c6": -54.4264678139815, + "c7": -94.06664702914694 }, - "vertexSeeds": { - "c1": 5.998798376351062, - "c2": 5.628157027016396, - "c3": 6.084088387283488, - "c4": 6.331745373983988, - "c5": 5.931816468883496, - "c6": 6.179558252050535, - "c7": 5.143164086176421 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [58, 15, 49] }, @@ -10887,23 +10887,23 @@ "year": 1631, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": -24.608165994294165, - "c2": -50.79596832155119, - "c3": -12.26663021966607, - "c4": 0.9484552357545084, - "c5": 47.464275494283555, - "c6": -16.53195831220662, - "c7": 13.019288362818799 + "points": { + "c1": -11.516224321897084, + "c2": -49.39577763932863, + "c3": 11.03198831863179, + "c4": 37.43099811297509, + "c5": 49.206294998913435, + "c6": 13.455645065971439, + "c7": 37.95294009207869 }, - "vertexSeeds": { - "c1": 6.7866361329456195, - "c2": 6.344434364817053, - "c3": 6.2592630317917015, - "c4": 6.141197751023788, - "c5": 5.801681090233247, - "c6": 6.618930552761161, - "c7": 6.8848775755715215 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882109, + "c3": 8.552935737401752, + "c4": 6.842348589921404, + "c5": 5.1317614424410545, + "c6": 3.4211742949607062, + "c7": 1.7105871474803485 }, "rgb": [222, 0, 59] }, @@ -10914,23 +10914,23 @@ "year": 1633, "resistanceReported": false, "duration": 80524800, - "curveSeeds": { - "c1": 31.01717256386236, - "c2": -31.567653550791505, - "c3": -53.936548864251556, - "c4": -92.10739478743315, - "c5": -20.359597455791715, - "c6": 20.296394573899875, - "c7": -76.89212167088894 + "points": { + "c1": -63.97382764302098, + "c2": 10.548587162493519, + "c3": -22.074537667051402, + "c4": 7.852096767514638, + "c5": -66.48445406944796, + "c6": 23.163146850753364, + "c7": 11.386354561440328 }, - "vertexSeeds": { - "c1": 5.3344626525882335, - "c2": 5.3268770660838305, - "c3": 5.564572503899957, - "c4": 5.946830262542723, - "c5": 5.194290589453502, - "c6": 4.99833766702956, - "c7": 5.669059736266495 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [86, 146, 138] }, @@ -10941,23 +10941,23 @@ "year": 1633, "resistanceReported": false, "duration": 76118400, - "curveSeeds": { - "c1": -70.33034121551646, - "c2": -84.33860069134579, - "c3": 45.42867737302002, - "c4": -32.58744232560684, - "c5": -92.13516883069794, - "c6": -33.38629179713123, - "c7": 82.31686872454502 + "points": { + "c1": 78.22325512088197, + "c2": -67.48606134853496, + "c3": 35.674452139446586, + "c4": 4.457764780334202, + "c5": 72.43424615333088, + "c6": -82.48465845974624, + "c7": 58.8695719885029 }, - "vertexSeeds": { - "c1": 6.255124392701943, - "c2": 5.977566127638234, - "c3": 5.4916034402677205, - "c4": 5.837710674779339, - "c5": 5.443359554361477, - "c6": 5.886947607016052, - "c7": 5.698187157538944 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [86, 146, 138] }, @@ -10968,23 +10968,23 @@ "year": 1633, "resistanceReported": false, "duration": 91670400, - "curveSeeds": { - "c1": -88.40147823408954, - "c2": -85.35575934076451, - "c3": -28.412411290504096, - "c4": -80.30034898740243, - "c5": -21.409267575770812, - "c6": 106.56727883493302, - "c7": -79.39188490603033 + "points": { + "c1": -65.21708408404939, + "c2": -1.043032164943284, + "c3": -41.25484063674604, + "c4": 11.04769057696015, + "c5": -111.80785207380049, + "c6": 4.686199992326891, + "c7": -25.25483660046872 }, - "vertexSeeds": { - "c1": 6.345015787848982, - "c2": 6.2113412132026875, - "c3": 5.681800413218569, - "c4": 6.122055886332179, - "c5": 6.530057053621, - "c6": 6.6461206812216975, - "c7": 5.602860612858653 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [238, 201, 159] }, @@ -10995,23 +10995,23 @@ "year": 1632, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": -9.522180379433955, - "c2": -9.827092207609923, - "c3": -50.76415744326078, - "c4": -33.874920219038344, - "c5": -4.716428771960224, - "c6": -28.4446600432312, - "c7": 52.61082153882349 + "points": { + "c1": 54.97951130956771, + "c2": -7.831132870268149, + "c3": 42.472177773769374, + "c4": 22.528879610337853, + "c5": -22.69555018485702, + "c6": 33.31825823490824, + "c7": -10.476645561370162 }, - "vertexSeeds": { - "c1": 6.077417345524356, - "c2": 6.486883271046634, - "c3": 5.9684272564229, - "c4": 6.112369328337699, - "c5": 6.147653313225255, - "c6": 5.87605650688252, - "c7": 6.7002484996704466 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [238, 201, 159] }, @@ -11022,23 +11022,23 @@ "year": 1633, "resistanceReported": false, "duration": 77155200, - "curveSeeds": { - "c1": 79.77104800383485, - "c2": 75.63154281964658, - "c3": -21.833007817170625, - "c4": -57.07299059078872, - "c5": 35.63303259344313, - "c6": 56.441536642443324, - "c7": 4.9278801122597855 + "points": { + "c1": 40.678929060610685, + "c2": -45.61445308312317, + "c3": 61.49745688655848, + "c4": 22.304999791037986, + "c5": -4.22542343512292, + "c6": 2.243395339521868, + "c7": -1.6739540248673848 }, - "vertexSeeds": { - "c1": 6.60271642718573, - "c2": 6.484221519357365, - "c3": 7.177052114412325, - "c4": 7.033812818498598, - "c5": 6.898951225823573, - "c6": 7.1170795890598395, - "c7": 7.001694880819994 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [222, 0, 59] }, @@ -11049,23 +11049,23 @@ "year": 1633, "resistanceReported": false, "duration": 69897600, - "curveSeeds": { - "c1": 55.615777490704886, - "c2": -43.08069844566973, - "c3": -2.1711381619268195, - "c4": -28.69487160214321, - "c5": 50.67532670253743, - "c6": -24.18286327397427, - "c7": -21.13784347943171 + "points": { + "c1": 24.041882602747208, + "c2": 78.65630865278015, + "c3": 87.58143875123105, + "c4": -71.19849869879882, + "c5": 68.34603699693588, + "c6": -69.84570654117911, + "c7": 51.74264155564518 }, - "vertexSeeds": { - "c1": 6.134678405648595, - "c2": 6.244193948833644, - "c3": 5.988634458569946, - "c4": 5.935712892056962, - "c5": 6.534533196118479, - "c6": 6.798459675160505, - "c7": 5.732135514759111 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519183, + "c5": 4.923717059639392, + "c6": 3.2824780397595914, + "c7": 1.6412390198798004 }, "rgb": [222, 0, 59] }, @@ -11076,23 +11076,23 @@ "year": 1632, "resistanceReported": false, "duration": 44323200, - "curveSeeds": { - "c1": 21.4870939505644, - "c2": -21.692958626075566, - "c3": 41.421701282780845, - "c4": 52.42313829479764, - "c5": 20.988815379993568, - "c6": -48.369162274018706, - "c7": -3.2675787058981456 + "points": { + "c1": 0.7152708329016164, + "c2": -16.255352486243297, + "c3": -11.962674054112718, + "c4": 13.248196828762161, + "c5": 3.9509748072608772, + "c6": 0.09702391142382538, + "c7": 57.74590386330428 }, - "vertexSeeds": { - "c1": 5.930127878450054, - "c2": 6.022765501921803, - "c3": 5.609070200273607, - "c4": 6.344420739532389, - "c5": 6.305417908878019, - "c6": 6.185929666296301, - "c7": 6.7720773201286475 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238555, + "c3": 8.18307905686546, + "c4": 6.546463245492372, + "c5": 4.9098474341192775, + "c6": 3.2732316227461817, + "c7": 1.6366158113730958 }, "rgb": [86, 146, 138] }, @@ -11103,23 +11103,23 @@ "year": 1635, "resistanceReported": false, "duration": 142041600, - "curveSeeds": { - "c1": 106.25999829523607, - "c2": -3.580852216992241, - "c3": 57.99383726923128, - "c4": -36.7508436198944, - "c5": -132.97998828114234, - "c6": -100.76893501739364, - "c7": 65.49008686963543 + "points": { + "c1": -51.03993477845505, + "c2": -27.80496474297692, + "c3": 76.56488840197417, + "c4": 109.50302126209255, + "c5": -6.905423086308019, + "c6": 76.04432057771149, + "c7": 37.356972447090925 }, - "vertexSeeds": { - "c1": 5.69597829950116, - "c2": 6.205247889100837, - "c3": 5.591111832462225, - "c4": 6.340971458666727, - "c5": 6.217797609457022, - "c6": 6.589638813434357, - "c7": 6.236938970314897 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238555, + "c3": 8.18307905686546, + "c4": 6.546463245492372, + "c5": 4.9098474341192775, + "c6": 3.2732316227461817, + "c7": 1.6366158113730958 }, "rgb": [86, 146, 138] }, @@ -11130,23 +11130,23 @@ "year": 1632, "resistanceReported": false, "duration": 47779200, - "curveSeeds": { - "c1": 51.31515864693286, - "c2": 42.378207559168004, - "c3": -41.91797443517494, - "c4": 38.64203213969512, - "c5": -31.006033946160425, - "c6": -20.870882710121997, - "c7": -56.89585276467782 + "points": { + "c1": -52.01857041131308, + "c2": 55.8689869036598, + "c3": -2.691013601775026, + "c4": 34.83828014760924, + "c5": 56.774241099423776, + "c6": 32.092331752962934, + "c7": -44.732686979203294 }, - "vertexSeeds": { - "c1": 6.076971049953205, - "c2": 5.656684775940191, - "c3": 5.577788152884122, - "c4": 5.886549180385369, - "c5": 5.763705932095195, - "c6": 5.494759454734653, - "c7": 5.689068248949831 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [238, 201, 159] }, @@ -11157,23 +11157,23 @@ "year": 1634, "resistanceReported": false, "duration": 87177600, - "curveSeeds": { - "c1": 64.19360885116417, - "c2": -15.935444147900597, - "c3": -3.510714516548518, - "c4": 93.51665444938142, - "c5": 38.824260114736475, - "c6": -98.23518746885566, - "c7": -27.728734822174573 + "points": { + "c1": 89.02357204400262, + "c2": 0.663170263997614, + "c3": -79.28559869226005, + "c4": -6.208341384619857, + "c5": 70.24020911863555, + "c6": -67.3206787660665, + "c7": -102.15503056161323 }, - "vertexSeeds": { - "c1": 9.177126919978226, - "c2": 9.500414889890575, - "c3": 7.955759269183924, - "c4": 8.658699606352023, - "c5": 8.1285996326024, - "c6": 8.499627841257265, - "c7": 8.373363168242442 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.558021266759132, + "c4": 9.246417013407298, + "c5": 6.934812760055474, + "c6": 4.623208506703649, + "c7": 2.3116042533518244 }, "rgb": [222, 0, 59] }, @@ -11184,23 +11184,23 @@ "year": 1636, "resistanceReported": false, "duration": 127180800, - "curveSeeds": { - "c1": 28.928283327914215, - "c2": 130.24237052863538, - "c3": 97.72033103221548, - "c4": -20.757337033449005, - "c5": -98.12521529391827, - "c6": 65.69270539713028, - "c7": 111.54662098133707 + "points": { + "c1": -7.207661353315245, + "c2": -136.74829995199315, + "c3": 77.4104453750906, + "c4": 62.40741455583722, + "c5": 98.73990139507416, + "c6": 51.97776289512663, + "c7": 47.06194096634445 }, - "vertexSeeds": { - "c1": 6.699274371765797, - "c2": 5.582454781961341, - "c3": 6.746269429410523, - "c4": 5.762239458721369, - "c5": 6.564515861160077, - "c6": 6.490622622415592, - "c7": 6.021121941283258 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519183, + "c5": 4.923717059639392, + "c6": 3.2824780397595914, + "c7": 1.6412390198798004 }, "rgb": [238, 201, 159] }, @@ -11211,23 +11211,23 @@ "year": 1633, "resistanceReported": false, "duration": 41644800, - "curveSeeds": { - "c1": -52.565061617037415, - "c2": -44.67700285781691, - "c3": 41.55069722975087, - "c4": 3.503318348947481, - "c5": -51.054568921348945, - "c6": -32.900450438224425, - "c7": 22.33606094022207 + "points": { + "c1": -7.522570597292109, + "c2": 45.724397300365496, + "c3": 8.78716299475579, + "c4": -19.957241338848462, + "c5": 48.849660587852526, + "c6": 17.718733826207796, + "c7": -54.56831990706623 }, - "vertexSeeds": { - "c1": 5.871179405220813, - "c2": 5.9809753718738135, - "c3": 6.359917620576557, - "c4": 5.3437506749078505, - "c5": 5.9374221044561075, - "c6": 6.0927001619269845, - "c7": 5.221435479558852 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987054978 }, "rgb": [86, 146, 138] }, @@ -11238,23 +11238,23 @@ "year": 1635, "resistanceReported": false, "duration": 101606400, - "curveSeeds": { - "c1": -48.91152196678131, - "c2": -102.02261281102578, - "c3": -97.12165596292273, - "c4": 30.92769713991059, - "c5": 8.710159498973113, - "c6": -2.1159423078090356, - "c7": 29.45418485744416 + "points": { + "c1": 96.74667998942859, + "c2": -7.5517310246619616, + "c3": 63.59318323398524, + "c4": -44.642617871445054, + "c5": 3.249038321096293, + "c6": -106.09497377123122, + "c7": -85.696651070486 }, - "vertexSeeds": { - "c1": 5.794269613918839, - "c2": 6.61488372974943, - "c3": 6.156964876350147, - "c4": 6.395429593235184, - "c5": 6.355632024625392, - "c6": 6.235735413358261, - "c7": 5.630718650174932 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -11265,23 +11265,23 @@ "year": 1634, "resistanceReported": false, "duration": 69811200, - "curveSeeds": { - "c1": 55.945829031291694, - "c2": -76.60145731709288, - "c3": 56.249578374636386, - "c4": -46.20762122502262, - "c5": -79.81288706916277, - "c6": -84.93408473012285, - "c7": -18.825002466650957 + "points": { + "c1": -23.39352330030519, + "c2": 76.06827139805903, + "c3": 42.299600797705025, + "c4": 72.51883157871298, + "c5": 84.11239837304664, + "c6": 10.638886428814544, + "c7": -50.34184661176551 }, - "vertexSeeds": { - "c1": 6.692222130271929, - "c2": 6.250670021646772, - "c3": 6.343375234250001, - "c4": 5.908239017260575, - "c5": 6.377970977427118, - "c6": 6.2644569135407835, - "c7": 6.391221698807113 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [77, 76, 132] }, @@ -11292,23 +11292,23 @@ "year": 1633, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 35.3158238258591, - "c2": 30.505257159624875, - "c3": 1.853272109600013, - "c4": 32.623271170122436, - "c5": -9.946974814464951, - "c6": 22.450291575370102, - "c7": -24.16562706694085 + "points": { + "c1": -23.389166176981885, + "c2": -7.55919476007837, + "c3": -20.873058191902597, + "c4": -35.97072429236679, + "c5": -28.74175337516465, + "c6": -22.618461064118843, + "c7": -11.440615283649585 }, - "vertexSeeds": { - "c1": 6.614370582366453, - "c2": 5.789073282925717, - "c3": 6.460994512477075, - "c4": 5.915592233759557, - "c5": 6.405333911262208, - "c6": 5.925317623636174, - "c7": 5.504819007472072 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [58, 15, 49] }, @@ -11319,23 +11319,23 @@ "year": 1634, "resistanceReported": false, "duration": 52012800, - "curveSeeds": { - "c1": -55.30087804584889, - "c2": -59.72015874488269, - "c3": 34.152310459734565, - "c4": 45.918784423604464, - "c5": -59.5298683443711, - "c6": -7.532822291590392, - "c7": -37.06521927225168 + "points": { + "c1": 67.50236653000815, + "c2": 7.09458681346355, + "c3": 14.428444813045246, + "c4": -17.353594771901427, + "c5": -3.9284394526150663, + "c6": 22.230558457465307, + "c7": -32.42598315158841 }, - "vertexSeeds": { - "c1": 5.956640020914005, - "c2": 5.7709794224641575, - "c3": 6.529537564410428, - "c4": 6.613577901346638, - "c5": 6.802073362371921, - "c6": 6.90898297971941, - "c7": 7.175067483354243 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962547, + "c3": 8.599167822468795, + "c4": 6.879334257975032, + "c5": 5.159500693481278, + "c6": 3.439667128987516, + "c7": 1.7198335644937626 }, "rgb": [222, 0, 59] }, @@ -11346,23 +11346,23 @@ "year": 1636, "resistanceReported": false, "duration": 106790400, - "curveSeeds": { - "c1": -108.16164747041397, - "c2": 23.54530333345504, - "c3": 101.90562581264415, - "c4": -23.72235004357745, - "c5": 87.03144000824007, - "c6": 38.34119667691412, - "c7": -27.480733567815363 + "points": { + "c1": -115.21701220704975, + "c2": 107.7035261215947, + "c3": 109.29356711412362, + "c4": 2.3852805383513953, + "c5": 62.67789854204662, + "c6": 61.4817622085624, + "c7": 22.69557641075832 }, - "vertexSeeds": { - "c1": 7.04622668029884, - "c2": 6.359896344750042, - "c3": 7.3280832793836534, - "c4": 6.956131616989957, - "c5": 6.344476502175289, - "c6": 7.165131304734143, - "c7": 6.2762717986726955 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525658, + "c3": 8.922792417938046, + "c4": 7.138233934350435, + "c5": 5.353675450762824, + "c6": 3.5691169671752134, + "c7": 1.784558483587602 }, "rgb": [86, 146, 138] }, @@ -11373,23 +11373,23 @@ "year": 1633, "resistanceReported": false, "duration": 6566400, - "curveSeeds": { - "c1": -15.159862421133637, - "c2": 10.271011426085185, - "c3": -14.842882444078295, - "c4": -13.550049259869523, - "c5": 4.687348766694818, - "c6": 15.19427173507691, - "c7": 5.891448165597669 + "points": { + "c1": -17.334016255507716, + "c2": -11.907568364125144, + "c3": 4.160838692920052, + "c4": -3.3290361539815887, + "c5": -8.435115285253852, + "c6": 12.332016636918357, + "c7": -9.544232570229834 }, - "vertexSeeds": { - "c1": 6.686632451028674, - "c2": 5.787194106675556, - "c3": 6.817182001250043, - "c4": 6.753213080478178, - "c5": 5.6715991600387685, - "c6": 6.428892356767263, - "c7": 5.587997856945087 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [58, 15, 49] }, @@ -11400,23 +11400,23 @@ "year": 1634, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 0.5916641116424088, - "c2": 9.01236145083859, - "c3": 43.66799818869652, - "c4": -16.52483841067618, - "c5": -7.631144215177294, - "c6": 19.334709907611334, - "c7": 26.887219847357407 + "points": { + "c1": 8.75618299690359, + "c2": -42.741068037118964, + "c3": -13.592186819280293, + "c4": -28.68617343239176, + "c5": -10.174702168810526, + "c6": 46.73584894433605, + "c7": 7.287987792866147 }, - "vertexSeeds": { - "c1": 6.304626111757881, - "c2": 6.566302984524658, - "c3": 5.566366251814493, - "c4": 5.553248398859215, - "c5": 6.306271135112999, - "c6": 6.083499938222097, - "c7": 5.750453542893133 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [238, 201, 159] }, @@ -11427,23 +11427,23 @@ "year": 1633, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 21.69870304798642, - "c2": 2.045886777470489, - "c3": -25.320687188815956, - "c4": 27.039559410508687, - "c5": -22.486136033262216, - "c6": -13.774765525911954, - "c7": 27.553260306379187 + "points": { + "c1": 10.546831997484311, + "c2": 0.6804252957151604, + "c3": -1.6408362439319433, + "c4": -14.476970579569526, + "c5": -27.709346309275094, + "c6": 19.12750590123749, + "c7": 2.8954328798207314 }, - "vertexSeeds": { - "c1": 6.013902324195007, - "c2": 6.594504132520948, - "c3": 5.998610953455204, - "c4": 6.20523327079209, - "c5": 5.781032509013366, - "c6": 6.508676000774379, - "c7": 6.444582341166007 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996764, + "c4": 6.343042071197411, + "c5": 4.757281553398058, + "c6": 3.1715210355987056, + "c7": 1.5857605177993528 }, "rgb": [86, 146, 138] }, @@ -11454,23 +11454,23 @@ "year": 1636, "resistanceReported": false, "duration": 86054400, - "curveSeeds": { - "c1": 100.33575576441841, - "c2": 70.17463262464089, - "c3": 0.6856796363895938, - "c4": 12.962764608673552, - "c5": 22.504802342676726, - "c6": 48.920139907718365, - "c7": -83.73754563792366 + "points": { + "c1": -52.16497231056311, + "c2": 85.32430309523066, + "c3": -35.118315150254745, + "c4": -82.96991801663765, + "c5": 61.440754614446675, + "c6": -59.23820272334099, + "c7": -60.519883725349594 }, - "vertexSeeds": { - "c1": 5.413398171001092, - "c2": 5.466753744680529, - "c3": 6.585380356595751, - "c4": 6.641169796380741, - "c5": 6.195811000775609, - "c6": 6.346892097946421, - "c7": 6.294838519995068 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996764, + "c4": 6.343042071197411, + "c5": 4.757281553398058, + "c6": 3.1715210355987056, + "c7": 1.5857605177993528 }, "rgb": [58, 15, 49] }, @@ -11481,23 +11481,23 @@ "year": 1635, "resistanceReported": false, "duration": 57801600, - "curveSeeds": { - "c1": -53.77400420151021, - "c2": 31.777480086758686, - "c3": -65.84845234876116, - "c4": -8.23191403904059, - "c5": 3.8123929804579006, - "c6": -34.10548075079165, - "c7": -19.960215037247224 + "points": { + "c1": 18.674300529423817, + "c2": 33.790635863433764, + "c3": -62.12303220643233, + "c4": 61.85487039152558, + "c5": -47.186252834703254, + "c6": 5.530839690858045, + "c7": -41.14211533585694 }, - "vertexSeeds": { - "c1": 6.91803170513017, - "c2": 5.922534124457183, - "c3": 6.566468575870811, - "c4": 6.947610961676145, - "c5": 6.365510088128224, - "c6": 6.294007371946903, - "c7": 7.060248707260133 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203888, + "c3": 8.7378640776699, + "c4": 6.9902912621359246, + "c5": 5.242718446601948, + "c6": 3.4951456310679623, + "c7": 1.7475728155339858 }, "rgb": [86, 146, 138] }, @@ -11508,23 +11508,23 @@ "year": 1634, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -18.09541260537658, - "c2": 19.504653925118355, - "c3": -16.58535883458044, - "c4": -6.093395007504249, - "c5": -32.51855362826709, - "c6": -19.758905810304434, - "c7": -19.905006548215482 + "points": { + "c1": 22.07445335376704, + "c2": 8.082265993871275, + "c3": 27.102360057930937, + "c4": -29.331549014636135, + "c5": -30.33321797915784, + "c6": 1.434991756343571, + "c7": 18.328185882597275 }, - "vertexSeeds": { - "c1": 5.85517270460065, - "c2": 6.221772708647683, - "c3": 5.584455477323271, - "c4": 6.508961442855337, - "c5": 5.906769862062551, - "c6": 5.619984956741575, - "c7": 5.840851315381936 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519183, + "c5": 4.923717059639392, + "c6": 3.2824780397595914, + "c7": 1.6412390198798004 }, "rgb": [222, 0, 59] }, @@ -11535,23 +11535,23 @@ "year": 1634, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": 15.216292825502993, - "c2": 10.788255965300014, - "c3": -6.6510937776819485, - "c4": -5.675480517088365, - "c5": -11.18627477433104, - "c6": 11.368935940101693, - "c7": 14.846585565290454 + "points": { + "c1": -14.58328863956983, + "c2": 6.549289065338662, + "c3": -16.590177810340627, + "c4": -11.802544617208, + "c5": -11.094207531837704, + "c6": -9.313534598145036, + "c7": -17.344645056621715 }, - "vertexSeeds": { - "c1": 5.383705721900413, - "c2": 5.588317337658781, - "c3": 5.474266026044322, - "c4": 6.428966224561024, - "c5": 5.743664978272344, - "c6": 5.465374262397132, - "c7": 6.291117770832297 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474344, + "c3": 7.7438742487286145, + "c4": 6.195099398982893, + "c5": 4.646324549237172, + "c6": 3.0975496994914513, + "c7": 1.548774849745721 }, "rgb": [77, 76, 132] }, @@ -11562,23 +11562,23 @@ "year": 1634, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -17.663731274282572, - "c2": 32.968374581871615, - "c3": -18.855797521275697, - "c4": -8.767031221948987, - "c5": 31.40276827426652, - "c6": -21.749620178363813, - "c7": 31.27263777550533 + "points": { + "c1": 15.369592474424323, + "c2": 18.373172182107943, + "c3": 4.397499330839153, + "c4": 9.174143927022179, + "c5": -20.72206807341227, + "c6": -1.5002144044825059, + "c7": 5.93457887779396 }, - "vertexSeeds": { - "c1": 6.288925078674956, - "c2": 6.234799002338767, - "c3": 6.587071692591298, - "c4": 5.685269867704376, - "c5": 6.312847955956821, - "c6": 6.9002954704875545, - "c7": 6.760150115490941 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [222, 0, 59] }, @@ -11589,23 +11589,23 @@ "year": 1637, "resistanceReported": false, "duration": 84758400, - "curveSeeds": { - "c1": 32.585096368377535, - "c2": -100.6024982398093, - "c3": 29.191817397833674, - "c4": -93.3840607538175, - "c5": -51.80027112224395, - "c6": -77.14887188152701, - "c7": -48.18826412514523 + "points": { + "c1": -104.12632332491738, + "c2": 75.54186922610218, + "c3": -1.3863510641574237, + "c4": 94.00805889106094, + "c5": 92.06190471921501, + "c6": -24.49922244300997, + "c7": -36.13680416892356 }, - "vertexSeeds": { - "c1": 6.712318808648225, - "c2": 6.464348239881358, - "c3": 7.655980656688176, - "c4": 7.508558356945009, - "c5": 7.421588006775979, - "c6": 7.343053922504236, - "c7": 7.193461074166053 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.0124826629681, + "c3": 9.177068885806753, + "c4": 7.341655108645395, + "c5": 5.506241331484046, + "c6": 3.6708275543226976, + "c7": 1.8354137771613488 }, "rgb": [238, 201, 159] }, @@ -11616,23 +11616,23 @@ "year": 1635, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": -40.88500925620716, - "c2": -20.958983183023587, - "c3": 15.867830175144938, - "c4": 30.603776723383056, - "c5": -8.224431008101291, - "c6": 26.334533648037073, - "c7": 36.21204083992789 + "points": { + "c1": 31.830247796168983, + "c2": -19.3787243873001, + "c3": 31.387867828001852, + "c4": 18.152574965313228, + "c5": 20.84082911879704, + "c6": -31.103473881399722, + "c7": 0.8161242674177203 }, - "vertexSeeds": { - "c1": 8.19221459964646, - "c2": 8.225924499643586, - "c3": 7.6571306574669435, - "c4": 7.559206684543754, - "c5": 7.1119632099556265, - "c6": 7.32821133898166, - "c7": 7.383717771157248 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617198, + "c3": 10.124826629680996, + "c4": 8.099861303744795, + "c5": 6.074895977808603, + "c6": 4.049930651872403, + "c7": 2.0249653259362015 }, "rgb": [77, 76, 132] }, @@ -11643,23 +11643,23 @@ "year": 1634, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -28.71604189113839, - "c2": -6.267453199929925, - "c3": -22.027189348376506, - "c4": -0.7119698055350625, - "c5": -11.101177244737304, - "c6": 0.03210720351427909, - "c7": 9.175799924519168 + "points": { + "c1": -13.461953673001329, + "c2": -27.071547626572475, + "c3": -12.943734695125436, + "c4": -24.552920401760993, + "c5": -9.815899572771627, + "c6": 7.0406464954820365, + "c7": -18.737992764191862 }, - "vertexSeeds": { - "c1": 7.976042830254991, - "c2": 9.062243864868954, - "c3": 8.375143636667131, - "c4": 9.633366529551578, - "c5": 8.84622021901022, - "c6": 9.181726267074541, - "c7": 9.117794440609654 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.558021266759132, + "c4": 9.246417013407298, + "c5": 6.934812760055474, + "c6": 4.623208506703649, + "c7": 2.3116042533518244 }, "rgb": [86, 146, 138] }, @@ -11670,23 +11670,23 @@ "year": 1636, "resistanceReported": false, "duration": 55468800, - "curveSeeds": { - "c1": 15.461269934925923, - "c2": -68.7862907032534, - "c3": 11.202034193653773, - "c4": 19.86549831932838, - "c5": 55.13932974744294, - "c6": -34.867841072435915, - "c7": 62.88053418156427 + "points": { + "c1": -0.8279811476784857, + "c2": -27.423955883375392, + "c3": -16.592744830350064, + "c4": -34.80151882912982, + "c5": -33.01481431335091, + "c6": -61.55236026583529, + "c7": -21.271135399415826 }, - "vertexSeeds": { - "c1": 5.642030838081448, - "c2": 6.549418969412821, - "c3": 5.393915414183249, - "c4": 6.290552704710566, - "c5": 6.25597641063919, - "c6": 6.340834755170779, - "c7": 5.428838371161356 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [58, 15, 49] }, @@ -11697,23 +11697,23 @@ "year": 1635, "resistanceReported": false, "duration": 44323200, - "curveSeeds": { - "c1": 53.18283537231909, - "c2": 36.8872189301123, - "c3": 51.43148178950993, - "c4": -48.5141183801225, - "c5": -39.48893594089991, - "c6": -36.78453381882925, - "c7": 24.73826869562997 + "points": { + "c1": 17.626670522111652, + "c2": 3.8978119233763096, + "c3": -43.14829246506775, + "c4": 41.74822342569446, + "c5": -32.9444099829051, + "c6": 19.183047606812906, + "c7": 17.342465726442413 }, - "vertexSeeds": { - "c1": 6.47588595086683, - "c2": 5.73758589460918, - "c3": 6.132276014176672, - "c4": 5.740026669722686, - "c5": 5.822375482135172, - "c6": 6.335281318434072, - "c7": 6.462613267559168 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [58, 15, 49] }, @@ -11724,23 +11724,23 @@ "year": 1637, "resistanceReported": false, "duration": 76291200, - "curveSeeds": { - "c1": 64.80090761697411, - "c2": -6.302898287607874, - "c3": 22.038404005377245, - "c4": -56.89462837881536, - "c5": -9.446903730893993, - "c6": 29.065992088725963, - "c7": 82.13385046377252 + "points": { + "c1": 59.82457614007802, + "c2": -91.84511138566167, + "c3": -70.81809323435553, + "c4": -18.03081769722513, + "c5": 18.90750138104802, + "c6": -32.83257177358821, + "c7": 44.65746472034334 }, - "vertexSeeds": { - "c1": 3.517228419234638, - "c2": 3.58827315676638, - "c3": 3.6318311456466996, - "c4": 3.468731374087739, - "c5": 3.4357278371401287, - "c6": 3.4767977562384074, - "c7": 3.5661496026552184 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561715, + "c3": 4.3458159963014396, + "c4": 3.4766527970411483, + "c5": 2.6074895977808574, + "c6": 1.7383263985205815, + "c7": 0.8691631992602907 }, "rgb": [238, 201, 159] }, @@ -11751,23 +11751,23 @@ "year": 1637, "resistanceReported": false, "duration": 76291200, - "curveSeeds": { - "c1": -77.48984960399036, - "c2": 4.525805874551537, - "c3": -58.23312515532605, - "c4": 24.00715257639378, - "c5": -64.43487847173644, - "c6": -60.714750848088016, - "c7": 84.27904168863051 + "points": { + "c1": 29.25462879345639, + "c2": -17.614805266562556, + "c3": -11.377193672095004, + "c4": -86.96150030967132, + "c5": 19.887857584019912, + "c6": -66.8836981228816, + "c7": 4.3460972255734305 }, - "vertexSeeds": { - "c1": 3.5609945276529116, - "c2": 3.4651209288440183, - "c3": 3.5764326673741214, - "c4": 3.4909466222424754, - "c5": 3.6221848555164966, - "c6": 3.6113166077902754, - "c7": 3.5130455360300945 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.2149791955617255, + "c3": 4.345815996301425, + "c4": 3.4766527970411434, + "c5": 2.6074895977808628, + "c6": 1.7383263985205815, + "c7": 0.8691631992602812 }, "rgb": [222, 0, 59] }, @@ -11778,23 +11778,23 @@ "year": 1636, "resistanceReported": false, "duration": 50976000, - "curveSeeds": { - "c1": -52.525928047226586, - "c2": -16.09517189979686, - "c3": -33.536085588101905, - "c4": 41.29140951348262, - "c5": -11.441102059593916, - "c6": -40.658452560358604, - "c7": -16.039051986603027 + "points": { + "c1": 40.907445129965524, + "c2": -0.8818322969466124, + "c3": 29.05469177997172, + "c4": -64.24258857538992, + "c5": 44.47331368448657, + "c6": 31.731437764003104, + "c7": 32.46107423909578 }, - "vertexSeeds": { - "c1": 6.060989262341218, - "c2": 6.70017725997606, - "c3": 6.196925483242357, - "c4": 5.760777618543971, - "c5": 6.69880705619323, - "c6": 7.070139861799146, - "c7": 6.9636334825038135 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [58, 15, 49] }, @@ -11805,23 +11805,23 @@ "year": 1638, "resistanceReported": false, "duration": 109296000, - "curveSeeds": { - "c1": -92.28751736858655, - "c2": 12.954817461320545, - "c3": -78.2629981767106, - "c4": 101.9048734959679, - "c5": -126.55401691614358, - "c6": -61.24889243302377, - "c7": -124.83782793990189 + "points": { + "c1": -31.04055518036978, + "c2": -4.386643844004581, + "c3": 18.236944471798495, + "c4": 78.91008443090911, + "c5": -94.76280485708051, + "c6": 118.40203818086874, + "c7": -81.0686898287995 }, - "vertexSeeds": { - "c1": 7.00130471607712, - "c2": 6.161302755661954, - "c3": 6.089726775567038, - "c4": 5.714257970464474, - "c5": 6.521762100204889, - "c6": 5.865579281737712, - "c7": 6.596544711913406 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [86, 146, 138] }, @@ -11832,23 +11832,23 @@ "year": 1636, "resistanceReported": false, "duration": 46137600, - "curveSeeds": { - "c1": 7.720545907934387, - "c2": -0.9287079330106423, - "c3": -25.14361473138888, - "c4": -32.11019554656471, - "c5": 38.50829595782192, - "c6": -34.55181072112738, - "c7": -8.717241228827675 + "points": { + "c1": -44.90668481184187, + "c2": 45.316919368550565, + "c3": -20.07961134246326, + "c4": -18.049444889850925, + "c5": -43.519244175351915, + "c6": 24.862882036416657, + "c7": 53.13803867204232 }, - "vertexSeeds": { - "c1": 6.654307007795927, - "c2": 6.47531681571942, - "c3": 6.203839248100892, - "c4": 6.750604953257402, - "c5": 6.30906113100573, - "c6": 5.961609993923067, - "c7": 6.954882697962854 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761438, + "c3": 8.483587609801203, + "c4": 6.786870087840959, + "c5": 5.090152565880723, + "c6": 3.3934350439204795, + "c7": 1.6967175219602444 }, "rgb": [86, 146, 138] }, @@ -11859,23 +11859,23 @@ "year": 1636, "resistanceReported": false, "duration": 45187200, - "curveSeeds": { - "c1": -29.929011650952038, - "c2": 47.60355283528808, - "c3": 57.47165833397097, - "c4": -23.064874539124474, - "c5": -6.819387170787465, - "c6": -47.914173533342996, - "c7": 54.35772080563017 + "points": { + "c1": 25.2062602404144, + "c2": 13.843536034664574, + "c3": 33.24424145679715, + "c4": -56.672901491826835, + "c5": 55.1894436692697, + "c6": -43.083475944767414, + "c7": 53.4540469250144 }, - "vertexSeeds": { - "c1": 6.707239809545959, - "c2": 6.625483473056886, - "c3": 6.788701275459198, - "c4": 6.031197887851697, - "c5": 5.9490323232617905, - "c6": 6.324709125144767, - "c7": 6.367179183913457 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.04160887656033, + "c3": 8.368007397133608, + "c4": 6.694405917706892, + "c5": 5.02080443828017, + "c6": 3.347202958853446, + "c7": 1.673601479426723 }, "rgb": [77, 76, 132] }, @@ -11886,23 +11886,23 @@ "year": 1637, "resistanceReported": false, "duration": 52185600, - "curveSeeds": { - "c1": 51.5486026572875, - "c2": 7.873606222279847, - "c3": 8.22818074783713, - "c4": 21.971723875372106, - "c5": -47.99152356394322, - "c6": -35.90535744097531, - "c7": -49.77689517974099 + "points": { + "c1": -10.281375004271084, + "c2": -49.67875017736915, + "c3": -58.032456534020554, + "c4": -23.995510283475696, + "c5": 7.124463827010089, + "c6": -19.178116608668688, + "c7": 34.61387257187879 }, - "vertexSeeds": { - "c1": 5.371283563697453, - "c2": 5.530106889556922, - "c3": 6.4152364591797255, - "c4": 6.170261857763059, - "c5": 6.008718223477991, - "c6": 6.647892989022878, - "c7": 5.728257371004676 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958398, + "c6": 3.1992602866389284, + "c7": 1.5996301433194688 }, "rgb": [238, 201, 159] }, @@ -11913,23 +11913,23 @@ "year": 1636, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -8.746340995676295, - "c2": 23.847649530237458, - "c3": -21.88820853313679, - "c4": -23.288075731666684, - "c5": -6.84885571189254, - "c6": -29.25305113634294, - "c7": 20.656103179104317 + "points": { + "c1": -12.034181758886259, + "c2": 7.822028831330961, + "c3": 27.992504678250164, + "c4": 0.6537032143339161, + "c5": -0.30982350223017363, + "c6": 11.637295516660593, + "c7": 26.367250544139516 }, - "vertexSeeds": { - "c1": 5.810401768978708, - "c2": 5.662490826609506, - "c3": 5.941259417731583, - "c4": 6.355130463432492, - "c5": 5.840911361794295, - "c6": 6.2247508416390245, - "c7": 5.787466877386474 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [238, 201, 159] }, @@ -11940,23 +11940,23 @@ "year": 1638, "resistanceReported": false, "duration": 82080000, - "curveSeeds": { - "c1": 33.855082892678254, - "c2": 19.984803516431555, - "c3": -26.06232754736304, - "c4": -49.488146858405855, - "c5": 79.01614403719161, - "c6": 32.63308656906041, - "c7": 84.4605587576636 + "points": { + "c1": -58.12663597413045, + "c2": 33.151827541756475, + "c3": -68.81831758656216, + "c4": 14.14874240898044, + "c5": -43.29351693023036, + "c6": 88.71726033618084, + "c7": -66.58869814896111 }, - "vertexSeeds": { - "c1": 6.996726888826368, - "c2": 6.912535536664589, - "c3": 6.073216053428939, - "c4": 5.97913967448935, - "c5": 5.716684663752886, - "c6": 5.667040480531507, - "c7": 5.672649512449698 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [238, 201, 159] }, @@ -11967,23 +11967,23 @@ "year": 1636, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -43.685723832557905, - "c2": -20.036938448805202, - "c3": 16.80843292186306, - "c4": 38.993807338244736, - "c5": 31.978020887688388, - "c6": 28.74813690499964, - "c7": -18.513148388900216 + "points": { + "c1": 32.225207642875986, + "c2": 16.656829630802605, + "c3": 0.6537873601182866, + "c4": 10.398120713867208, + "c5": 30.789273240800995, + "c6": 25.20725077352806, + "c7": 48.7979917093116 }, - "vertexSeeds": { - "c1": 6.527369813820214, - "c2": 6.5857617103187, - "c3": 6.07822968373545, - "c4": 6.707441621486744, - "c5": 5.95011041540909, - "c6": 6.539849415459173, - "c7": 6.8623028445537635 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [238, 201, 159] }, @@ -11994,23 +11994,23 @@ "year": 1636, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -35.47406202496589, - "c2": -10.343080278840901, - "c3": 23.11499902480349, - "c4": 10.343140848602914, - "c5": 0.156885510191195, - "c6": 6.122182254637103, - "c7": 32.38119807723328 + "points": { + "c1": 37.191807350070306, + "c2": 23.84991686088928, + "c3": 7.595114976387443, + "c4": -35.24921839874139, + "c5": -10.690446710715769, + "c6": 22.449843534720067, + "c7": -1.0680478600826717 }, - "vertexSeeds": { - "c1": 6.693680571902979, - "c2": 6.353156041094363, - "c3": 5.861986356438973, - "c4": 6.1536215383530575, - "c5": 6.312306665792812, - "c6": 6.419299042366627, - "c7": 6.097230621888145 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -12021,23 +12021,23 @@ "year": 1638, "resistanceReported": false, "duration": 87177600, - "curveSeeds": { - "c1": -100.84810358659514, - "c2": 71.88142910269589, - "c3": -70.67261413813443, - "c4": 23.616573749018087, - "c5": -38.926885677703694, - "c6": -55.44651733160993, - "c7": 48.67020077222723 + "points": { + "c1": 75.93378500609153, + "c2": 5.937601710420381, + "c3": 48.36698304557622, + "c4": 69.05002588750985, + "c5": 86.94575611041152, + "c6": -25.0600816182548, + "c7": -6.023492569189031 }, - "vertexSeeds": { - "c1": 5.782514577569027, - "c2": 5.853724405781975, - "c3": 6.746489495499057, - "c4": 6.561759929927621, - "c5": 6.8731679262532515, - "c6": 6.9540628980674155, - "c7": 6.185366914746572 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [58, 15, 49] }, @@ -12048,23 +12048,23 @@ "year": 1638, "resistanceReported": false, "duration": 79833600, - "curveSeeds": { - "c1": -81.15890663453207, - "c2": 85.90684697844709, - "c3": 53.80646844049407, - "c4": -68.38824876519637, - "c5": 63.97218618286068, - "c6": 41.058854072612334, - "c7": -85.0199169043643 + "points": { + "c1": 43.333051670543185, + "c2": 81.05058676725842, + "c3": 69.5455962468455, + "c4": 8.542264504156108, + "c5": 90.86152354125805, + "c6": 18.182262621454, + "c7": -88.4290538695459 }, - "vertexSeeds": { - "c1": 6.397072587698197, - "c2": 6.707527688109129, - "c3": 6.755522867552199, - "c4": 6.24211099418933, - "c5": 6.520867504471875, - "c6": 6.339669548568372, - "c7": 6.1546652475277375 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [77, 76, 132] }, @@ -12075,23 +12075,23 @@ "year": 1637, "resistanceReported": false, "duration": 62035200, - "curveSeeds": { - "c1": 56.04423781933171, - "c2": 2.910106969994388, - "c3": 47.840445199351024, - "c4": 9.030965390080311, - "c5": 55.599378109580144, - "c6": -35.10542165602249, - "c7": -68.39317412480763 + "points": { + "c1": -48.110875896338484, + "c2": 27.703536900768924, + "c3": 61.94382917663968, + "c4": 55.472333746844456, + "c5": 54.74112292473599, + "c6": 10.223074150494384, + "c7": -44.57726044720593 }, - "vertexSeeds": { - "c1": 6.16764376704787, - "c2": 5.467587452189007, - "c3": 6.403014702046081, - "c4": 6.454518137942912, - "c5": 6.294624090739227, - "c6": 6.190614333307682, - "c7": 5.680978453050814 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117887, + "c3": 8.11373092926491, + "c4": 6.490984743411925, + "c5": 4.868238557558948, + "c6": 3.2454923717059625, + "c7": 1.6227461858529768 }, "rgb": [238, 201, 159] }, @@ -12102,23 +12102,23 @@ "year": 1637, "resistanceReported": false, "duration": 57110400, - "curveSeeds": { - "c1": -31.665658961375065, - "c2": 52.364976323563084, - "c3": -8.589285036874202, - "c4": -56.30868628319434, - "c5": -23.3943623529809, - "c6": -39.877124294773544, - "c7": 37.236930515954256 + "points": { + "c1": 68.36131404822646, + "c2": -12.033335761600867, + "c3": -42.38207169431515, + "c4": -18.57645379156783, + "c5": 41.451134528850716, + "c6": -35.49075159724444, + "c7": 35.115029823179 }, - "vertexSeeds": { - "c1": 6.926238644685775, - "c2": 7.020470947313552, - "c3": 6.8905443268879845, - "c4": 6.6281518810009095, - "c5": 6.072838457053589, - "c6": 6.832614479402151, - "c7": 6.790823572105728 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -12129,23 +12129,23 @@ "year": 1638, "resistanceReported": false, "duration": 61516800, - "curveSeeds": { - "c1": 34.59411745963018, - "c2": 36.705212154101815, - "c3": 15.626212390398393, - "c4": 51.11742555766496, - "c5": -71.25598147827003, - "c6": 69.8131708501116, - "c7": 24.926361895977237 + "points": { + "c1": -40.74810230254694, + "c2": -77.86320109227768, + "c3": 2.0352952196552394, + "c4": 6.107472490109203, + "c5": -42.745311075918806, + "c6": 71.93937269464341, + "c7": 73.1052391135833 }, - "vertexSeeds": { - "c1": 7.134870223713167, - "c2": 7.121321756312795, - "c3": 5.853604838349201, - "c4": 6.309758482931321, - "c5": 6.72621696529318, - "c6": 6.5560176312364575, - "c7": 6.3791498440401675 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -12156,23 +12156,23 @@ "year": 1637, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 14.312303339501462, - "c2": 51.72403505422944, - "c3": -1.9155139774367242, - "c4": -20.480648950874052, - "c5": 4.291731536400761, - "c6": -41.67921581115394, - "c7": -24.53352425555183 + "points": { + "c1": 36.266155801396245, + "c2": -51.14917760487434, + "c3": 4.969347464933058, + "c4": 25.034476054644053, + "c5": 18.174371491907188, + "c6": 0.15829928138155935, + "c7": 23.699287222830954 }, - "vertexSeeds": { - "c1": 6.268776364065571, - "c2": 6.534263095815657, - "c3": 6.839563573468874, - "c4": 5.644275908493474, - "c5": 6.31842101452174, - "c6": 6.566143861162928, - "c7": 6.780583167663282 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447989, + "c3": 8.321775312066578, + "c4": 6.657420249653254, + "c5": 4.9930651872399405, + "c6": 3.328710124826627, + "c7": 1.6643550624133134 }, "rgb": [86, 146, 138] }, @@ -12183,23 +12183,23 @@ "year": 1638, "resistanceReported": false, "duration": 53395200, - "curveSeeds": { - "c1": -65.0781587513279, - "c2": 18.65287907317135, - "c3": 33.34306546254267, - "c4": -0.37225423918583544, - "c5": 44.27815231043171, - "c6": 45.94598820402375, - "c7": -39.16935413663559 + "points": { + "c1": -43.04413654847325, + "c2": -34.28185487897494, + "c3": -30.025315338375826, + "c4": -10.346185655804348, + "c5": 59.12695888524635, + "c6": 24.65980513097304, + "c7": -45.258025109803064 }, - "vertexSeeds": { - "c1": 5.693518626603362, - "c2": 6.176077667455445, - "c3": 6.072154168159938, - "c4": 7.0164207312707045, - "c5": 5.641738798192012, - "c6": 6.143971379811403, - "c7": 5.821449820183581 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640778, + "c3": 8.41423948220065, + "c4": 6.731391585760521, + "c5": 5.048543689320384, + "c6": 3.3656957928802558, + "c7": 1.6828478964401279 }, "rgb": [86, 146, 138] }, @@ -12210,23 +12210,23 @@ "year": 1639, "resistanceReported": false, "duration": 92880000, - "curveSeeds": { - "c1": 9.724920603486694, - "c2": -108.03674742367517, - "c3": -104.98008417449626, - "c4": -38.6982122340664, - "c5": 29.6722441551983, - "c6": -3.944939322879918, - "c7": -21.493847159845316 + "points": { + "c1": 92.68308175204898, + "c2": 35.15161563415485, + "c3": -50.34822297055296, + "c4": 1.5512246031989037, + "c5": 42.01829047090281, + "c6": 90.23231562896295, + "c7": 17.765227243705468 }, - "vertexSeeds": { - "c1": 6.151086007913022, - "c2": 6.515901757376085, - "c3": 6.566503165035207, - "c4": 6.267184764908005, - "c5": 5.965397280285363, - "c6": 6.894617649027971, - "c7": 5.759611061421372 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -12237,23 +12237,23 @@ "year": 1638, "resistanceReported": false, "duration": 57369600, - "curveSeeds": { - "c1": -55.678331647360125, - "c2": 10.22448191606729, - "c3": -50.468980729105695, - "c4": -6.298395477534967, - "c5": -40.158199635330064, - "c6": 31.078424426011395, - "c7": -14.100289386656137 + "points": { + "c1": -62.58765789248526, + "c2": -23.83318389902076, + "c3": 21.19817766535502, + "c4": 46.5011687345889, + "c5": -19.186916530712047, + "c6": -19.079105829735575, + "c7": 52.7178496074463 }, - "vertexSeeds": { - "c1": 6.20174571844973, - "c2": 5.860827308487734, - "c3": 5.682971199609296, - "c4": 5.696999662379492, - "c5": 6.790701331503066, - "c6": 5.919570284306991, - "c7": 6.042846988027196 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [238, 201, 159] }, @@ -12264,23 +12264,23 @@ "year": 1639, "resistanceReported": false, "duration": 84844800, - "curveSeeds": { - "c1": -52.18627380092663, - "c2": -55.32345472755913, - "c3": -86.10831206162649, - "c4": -63.46643414543861, - "c5": -9.209750781459618, - "c6": 45.78068461331088, - "c7": 21.53903894628499 + "points": { + "c1": 30.1436714597088, + "c2": 84.62239157793653, + "c3": 28.702687405824378, + "c4": -57.46001593224195, + "c5": -7.519235913116333, + "c6": -24.474885571468548, + "c7": 75.82711583552165 }, - "vertexSeeds": { - "c1": 7.030628881072102, - "c2": 6.944804136376596, - "c3": 6.917186017953799, - "c4": 6.161748917542306, - "c5": 6.29100734703646, - "c6": 5.850258922839101, - "c7": 6.726052933113376 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -12291,23 +12291,23 @@ "year": 1639, "resistanceReported": false, "duration": 80611200, - "curveSeeds": { - "c1": -90.91018491902602, - "c2": -26.881365909064996, - "c3": -31.91302009098557, - "c4": -31.94874093734464, - "c5": 37.66436839792674, - "c6": 88.5895129484472, - "c7": 53.253860250365236 + "points": { + "c1": -20.439102379957077, + "c2": 94.72845942010862, + "c3": 9.637036133134828, + "c4": 22.0623158010675, + "c5": 70.61195016619446, + "c6": 41.7704676986677, + "c7": 81.77103533887832 }, - "vertexSeeds": { - "c1": 6.965717771385037, - "c2": 6.927444642863902, - "c3": 6.289603491084648, - "c4": 6.191253387213786, - "c5": 7.398392377218967, - "c6": 7.1788175651553505, - "c7": 6.046655639746605 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565883, + "c3": 8.945908460471564, + "c4": 7.156726768377252, + "c5": 5.3675450762829415, + "c6": 3.578363384188622, + "c7": 1.789181692094311 }, "rgb": [222, 0, 59] }, @@ -12318,23 +12318,23 @@ "year": 1639, "resistanceReported": false, "duration": 77932800, - "curveSeeds": { - "c1": 14.400983207464037, - "c2": 87.018955845425, - "c3": 82.35495497652478, - "c4": 69.358317404886, - "c5": -64.28600081096741, - "c6": 91.22668923156108, - "c7": -64.19767721418958 + "points": { + "c1": 65.46158459994642, + "c2": 50.51898656877144, + "c3": -8.67543801174837, + "c4": 10.261532438036767, + "c5": -36.33502078416669, + "c6": -13.180031753030548, + "c7": 18.163316198604264 }, - "vertexSeeds": { - "c1": 6.709077653586547, - "c2": 5.661031265404689, - "c3": 6.922297794428095, - "c4": 6.3495688427847385, - "c5": 6.066025936563509, - "c6": 6.031197048415579, - "c7": 6.629205549741258 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [222, 0, 59] }, @@ -12345,23 +12345,23 @@ "year": 1638, "resistanceReported": false, "duration": 54345600, - "curveSeeds": { - "c1": -54.45738578205035, - "c2": 39.25416573255994, - "c3": -51.75426688619207, - "c4": -52.51556411207228, - "c5": -68.14277412901853, - "c6": -59.29574106113637, - "c7": -4.871703626658515 + "points": { + "c1": -32.24397688763417, + "c2": -67.06846560031329, + "c3": -8.33530058443332, + "c4": 31.07169843492663, + "c5": -45.581498133710525, + "c6": 23.804284132073732, + "c7": 66.903980639043 }, - "vertexSeeds": { - "c1": 1.345425474268513, - "c2": 1.3661476852866747, - "c3": 1.3735496212247003, - "c4": 1.3506935308605097, - "c5": 1.3775422956415857, - "c6": 1.347564747367476, - "c7": 1.3444779841496928 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959705, + "c3": 1.6643550624133172, + "c4": 1.331484049930647, + "c5": 0.9986130374479936, + "c6": 0.6657420249653235, + "c7": 0.3328710124826535 }, "rgb": [86, 146, 138] }, @@ -12372,23 +12372,23 @@ "year": 1639, "resistanceReported": false, "duration": 71452800, - "curveSeeds": { - "c1": 34.801721026445904, - "c2": 4.212231924058486, - "c3": -1.0245886199113414, - "c4": 78.69246118081337, - "c5": 18.87053358332834, - "c6": 25.880423869091032, - "c7": -38.064639641585224 + "points": { + "c1": 5.440927764318971, + "c2": 84.59862145975053, + "c3": -0.048656496079303224, + "c4": 66.60670185412006, + "c5": -62.9257494991398, + "c6": -81.02652895369579, + "c7": -5.793113979106593 }, - "vertexSeeds": { - "c1": 5.870687892440898, - "c2": 6.748534917115234, - "c3": 5.905068103520198, - "c4": 5.812026831756094, - "c5": 6.549616577835185, - "c6": 7.019684455434588, - "c7": 5.616655470544591 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [58, 15, 49] }, @@ -12399,23 +12399,23 @@ "year": 1641, "resistanceReported": false, "duration": 142300800, - "curveSeeds": { - "c1": 7.359916978863424, - "c2": -4.297955002310033, - "c3": -39.088490323152556, - "c4": 85.82302787179549, - "c5": 36.78395756880519, - "c6": -114.58082305142194, - "c7": 76.22855520299788 + "points": { + "c1": 115.89749548853104, + "c2": 18.873633341161366, + "c3": -136.27408520414076, + "c4": 167.86586909727322, + "c5": -158.65841789581964, + "c6": -145.79506500766215, + "c7": -26.627535097886323 }, - "vertexSeeds": { - "c1": 6.082833318071485, - "c2": 5.2988138413479, - "c3": 5.512472387765, - "c4": 5.466556924389038, - "c5": 5.491326755814575, - "c6": 5.750779224397936, - "c7": 6.4718358982443815 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.13684697179843, + "c4": 6.509477577438744, + "c5": 4.882108183079059, + "c6": 3.254738788719374, + "c7": 1.6273693943596885 }, "rgb": [238, 201, 159] }, @@ -12426,23 +12426,23 @@ "year": 1640, "resistanceReported": false, "duration": 104630400, - "curveSeeds": { - "c1": -75.58590568119547, - "c2": -71.21404129531291, - "c3": -107.17376862040715, - "c4": 79.0270849181734, - "c5": -74.0391607269168, - "c6": 120.46799090490079, - "c7": -20.076501329549473 + "points": { + "c1": 46.48134541976329, + "c2": 31.99864207082105, + "c3": -26.904807301854547, + "c4": 116.62540787165544, + "c5": -28.361237800188277, + "c6": -0.8794618312110885, + "c7": 121.78915031016241 }, - "vertexSeeds": { - "c1": 6.017629082770825, - "c2": 6.354095657164054, - "c3": 5.843498333997374, - "c4": 5.953164909008484, - "c5": 5.913481900093684, - "c6": 6.978258579297908, - "c7": 6.6544310036342535 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [58, 15, 49] }, @@ -12453,23 +12453,23 @@ "year": 1639, "resistanceReported": false, "duration": 69465600, - "curveSeeds": { - "c1": 12.746037187529367, - "c2": -37.92856199977936, - "c3": -69.67124915524215, - "c4": 42.40510264319289, - "c5": 64.19983845727901, - "c6": 18.15843806596112, - "c7": 45.07645396936874 + "points": { + "c1": -86.10162593712106, + "c2": -3.1540121837661417, + "c3": -86.15572523746964, + "c4": 77.33551118523755, + "c5": 36.16349051232886, + "c6": 63.03420931788628, + "c7": -72.87075318209449 }, - "vertexSeeds": { - "c1": 5.759212891607288, - "c2": 5.965739904108877, - "c3": 6.515107410037152, - "c4": 5.813610976558652, - "c5": 5.936822259291299, - "c6": 6.278168540707702, - "c7": 6.338740276841055 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626443, + "c5": 4.979195561719835, + "c6": 3.319463707813226, + "c7": 1.6597318539066086 }, "rgb": [77, 76, 132] }, @@ -12480,23 +12480,23 @@ "year": 1639, "resistanceReported": false, "duration": 66787200, - "curveSeeds": { - "c1": -32.29220510526974, - "c2": -58.269630318238434, - "c3": -57.59189079658767, - "c4": -53.76377781369854, - "c5": 13.753125238684177, - "c6": -62.216104636388536, - "c7": -22.679564514693205 + "points": { + "c1": -39.58054125710104, + "c2": 37.52739929549014, + "c3": 67.15802440059122, + "c4": 37.72628276148173, + "c5": 60.49982958372041, + "c6": 3.4467333271630025, + "c7": 37.62972989753867 }, - "vertexSeeds": { - "c1": 6.9105866531464475, - "c2": 6.048302646849205, - "c3": 6.559798964467555, - "c4": 6.912358565374184, - "c5": 6.277209182997198, - "c6": 6.373878495109985, - "c7": 6.888706726402775 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [86, 146, 138] }, @@ -12507,23 +12507,23 @@ "year": 1638, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 10.903849852436942, - "c2": 33.25194341427525, - "c3": 12.708595210500853, - "c4": -38.01204702689127, - "c5": 22.232006964285368, - "c6": -20.344823963372438, - "c7": -44.92151802121489 + "points": { + "c1": 7.101569412081503, + "c2": -25.592657734287226, + "c3": 8.75452561387062, + "c4": 19.302516453317118, + "c5": 32.55136227775272, + "c6": -17.59924633115777, + "c7": -36.37582485514587 }, - "vertexSeeds": { - "c1": 5.684688009667667, - "c2": 5.539442054851975, - "c3": 5.585478279542975, - "c4": 5.812290524706692, - "c5": 6.863391478103133, - "c6": 5.80417867513568, - "c7": 6.246676388965156 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519183, + "c5": 4.923717059639392, + "c6": 3.2824780397595914, + "c7": 1.6412390198798004 }, "rgb": [58, 15, 49] }, @@ -12534,23 +12534,23 @@ "year": 1639, "resistanceReported": false, "duration": 47174400, - "curveSeeds": { - "c1": -55.27346147923721, - "c2": 2.8891203118836657, - "c3": -4.776959483694839, - "c4": -43.361464539293976, - "c5": 14.590434223877871, - "c6": -61.49318201048091, - "c7": 15.50027183254958 + "points": { + "c1": -50.19894473017621, + "c2": -30.40767878479013, + "c3": 36.57561722652408, + "c4": 62.516513142834874, + "c5": 9.913559846852316, + "c6": 56.92947782688717, + "c7": -38.5151208618162 }, - "vertexSeeds": { - "c1": 5.4973112147749985, - "c2": 6.497735525112367, - "c3": 5.472474545019337, - "c4": 5.8442401063344525, - "c5": 5.728689809853922, - "c6": 5.891275928006763, - "c7": 5.886398963635076 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675448, + "c3": 7.859454461396207, + "c4": 6.287563569116973, + "c5": 4.7156726768377295, + "c6": 3.1437817845584863, + "c7": 1.5718908922792432 }, "rgb": [238, 201, 159] }, @@ -12561,23 +12561,23 @@ "year": 1639, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -6.347408390515227, - "c2": 20.325694527481673, - "c3": -15.456381888118422, - "c4": 27.5113421819389, - "c5": -9.032670126879317, - "c6": 14.055481629212586, - "c7": -30.585739605913744 + "points": { + "c1": -18.11212140023314, + "c2": -35.61020192824497, + "c3": 8.380741459583575, + "c4": -26.424238443921194, + "c5": 22.620021938624404, + "c6": -26.33198548532261, + "c7": -6.699686679009545 }, - "vertexSeeds": { - "c1": 2.0205528635028207, - "c2": 1.9321927198463553, - "c3": 1.9689453239831374, - "c4": 1.9117777150761235, - "c5": 1.941324081230341, - "c6": 1.978006199494105, - "c7": 2.013944725948874 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233006, + "c3": 2.4271844660194173, + "c4": 1.9417475728155338, + "c5": 1.4563106796116503, + "c6": 0.9708737864077669, + "c7": 0.48543689320388345 }, "rgb": [77, 76, 132] }, @@ -12588,23 +12588,23 @@ "year": 1639, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 9.961447776908948, - "c2": -16.317535941202145, - "c3": 13.514301063820085, - "c4": -21.771927438417094, - "c5": -16.343216819607864, - "c6": 0.7459417194505065, - "c7": -7.029635478929816 + "points": { + "c1": -11.701792664796313, + "c2": -0.5854475217605746, + "c3": -17.9465528921422, + "c4": -8.20064819343661, + "c5": 5.162428572968846, + "c6": -9.25102235500924, + "c7": 2.8583331294154917 }, - "vertexSeeds": { - "c1": 2.6565348433898017, - "c2": 2.651164581680634, - "c3": 2.749994753701052, - "c4": 2.740792914391712, - "c5": 2.6341823347509252, - "c6": 2.7236415033001506, - "c7": 2.74873505268339 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751733, + "c3": 3.305594082293111, + "c4": 2.6444752658344886, + "c5": 1.9833564493758664, + "c6": 1.3222376329172443, + "c7": 0.6611188164586221 }, "rgb": [86, 146, 138] }, @@ -12615,23 +12615,23 @@ "year": 1641, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -35.205313795242084, - "c2": 1.4944187156268356, - "c3": -17.264219314059023, - "c4": -2.0540249419041885, - "c5": 22.28046202991596, - "c6": 10.270220212484958, - "c7": -23.716858725593703 + "points": { + "c1": -24.54240610320472, + "c2": 31.575561502713136, + "c3": 34.84481971207355, + "c4": 7.3958137848694605, + "c5": -9.307820827579185, + "c6": 14.913545337196652, + "c7": -32.38805128513414 }, - "vertexSeeds": { - "c1": 5.286001673505979, - "c2": 5.439746961377765, - "c3": 5.073062095512083, - "c4": 5.633492524325138, - "c5": 5.294532289944964, - "c6": 5.511740924532153, - "c7": 5.259441403242375 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267682, + "c3": 7.050392972723066, + "c4": 5.64031437817845, + "c5": 4.230235783633836, + "c6": 2.8201571890892305, + "c7": 1.4100785945446153 }, "rgb": [58, 15, 49] }, @@ -12642,23 +12642,23 @@ "year": 1642, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -22.183351729010653, - "c2": -0.45010151849736246, - "c3": -1.1376424130193925, - "c4": -20.06190792863974, - "c5": -4.933462745989679, - "c6": 4.357991152950085, - "c7": -35.89720545598158 + "points": { + "c1": 18.68405322736686, + "c2": 27.001382825024933, + "c3": 1.657782043332702, + "c4": -40.4854321231166, + "c5": -33.70549924395838, + "c6": 36.41521089629444, + "c7": 39.52689566528419 }, - "vertexSeeds": { - "c1": 6.251445773330068, - "c2": 6.434103536325612, - "c3": 5.5793106495109575, - "c4": 6.660722189296472, - "c5": 6.145507671953116, - "c6": 6.231731279990859, - "c7": 6.430845457469186 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520108, + "c3": 8.344891354600097, + "c4": 6.675913083680075, + "c5": 5.006934812760054, + "c6": 3.337956541840033, + "c7": 1.6689782709200212 }, "rgb": [238, 201, 159] }, @@ -12669,23 +12669,23 @@ "year": 1641, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -21.793813543371872, - "c2": -3.3871240781565852, - "c3": -1.3497194495799825, - "c4": -5.09472527546756, - "c5": 22.744019510046765, - "c6": -8.213414851654939, - "c7": -4.327135838933998 + "points": { + "c1": -16.878874288363036, + "c2": -7.196314105043484, + "c3": 2.2522571603215873, + "c4": 1.481589266269392, + "c5": 14.81338875998296, + "c6": 19.259392909684554, + "c7": -16.845517861488254 }, - "vertexSeeds": { - "c1": 1.5866217574519694, - "c2": 1.46840581969255, - "c3": 1.567123675282703, - "c4": 1.5868385624321748, - "c5": 1.642161529233912, - "c6": 1.6205147487503602, - "c7": 1.7090289050079734 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797497, + "c3": 2.057327785483127, + "c4": 1.645862228386501, + "c5": 1.2343966712898748, + "c6": 0.822931114193252, + "c7": 0.411465557096626 }, "rgb": [222, 0, 59] }, @@ -12696,23 +12696,23 @@ "year": 1642, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -14.18751060005675, - "c2": -0.7007382633621972, - "c3": 2.189156293726846, - "c4": 10.558767226158643, - "c5": 6.824482987861877, - "c6": -12.052994052706385, - "c7": -14.224063906537648 + "points": { + "c1": -4.351938315030644, + "c2": 32.75571702633291, + "c3": 12.32329353545758, + "c4": -9.502018033280581, + "c5": 28.101489462215874, + "c6": -14.375678722777263, + "c7": -30.298028833804278 }, - "vertexSeeds": { - "c1": 1.490304060095762, - "c2": 1.4921651738992263, - "c3": 1.4806108893827623, - "c4": 1.4801700355351497, - "c5": 1.4864700020133166, - "c6": 1.495066750015292, - "c7": 1.4784320372013438 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.1636615811373194, + "c3": 1.803051317614409, + "c4": 1.4424410540915342, + "c5": 1.0818307905686597, + "c6": 0.7212205270457851, + "c7": 0.3606102635228746 }, "rgb": [238, 201, 159] }, @@ -12723,23 +12723,23 @@ "year": 1642, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 23.02273631527271, - "c2": -5.633523284383493, - "c3": -9.819047243831875, - "c4": 18.633355320011205, - "c5": 12.813966131874636, - "c6": -32.24941691311924, - "c7": 20.185820616747506 + "points": { + "c1": 35.26092646018098, + "c2": 3.739711426276436, + "c3": 2.4025003552383595, + "c4": -6.14360330266674, + "c5": -21.647460888682467, + "c6": -42.553244467222875, + "c7": 44.48355102350702 }, - "vertexSeeds": { - "c1": 2.757997788518847, - "c2": 2.737062367191796, - "c3": 2.64239727790735, - "c4": 2.6103660289848736, - "c5": 2.749284923959099, - "c6": 2.6189344880454266, - "c7": 2.594262612906645 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919565, + "c3": 3.3287101248266318, + "c4": 2.6629680998612986, + "c5": 1.9972260748959743, + "c6": 1.3314840499306493, + "c7": 0.6657420249653246 }, "rgb": [222, 0, 59] }, @@ -12750,23 +12750,23 @@ "year": 1642, "resistanceReported": false, "duration": 47174400, - "curveSeeds": { - "c1": 23.633411922431357, - "c2": -27.394090936376962, - "c3": -26.872132379705484, - "c4": -7.687667680678302, - "c5": -7.69103905392307, - "c6": -29.246160797804905, - "c7": -14.049866857021975 + "points": { + "c1": 60.99611667762557, + "c2": -44.521475482861746, + "c3": -1.265845614013294, + "c4": -25.61623603143707, + "c5": 43.13729293119025, + "c6": -53.404833699748124, + "c7": 59.704388632180205 }, - "vertexSeeds": { - "c1": 2.1177374647633807, - "c2": 2.1413723714351662, - "c3": 2.3031858214606498, - "c4": 2.2858402919492304, - "c5": 2.3489948001102796, - "c6": 2.1625535293575, - "c7": 2.0708392240263462 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070742, + "c3": 2.820157189089229, + "c4": 2.256125751271384, + "c5": 1.692094313453539, + "c6": 1.1280628756356939, + "c7": 0.5640314378178488 }, "rgb": [58, 15, 49] }, @@ -12777,23 +12777,23 @@ "year": 1642, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 1.0783795120986355, - "c2": 23.59135717320426, - "c3": -22.06348464388961, - "c4": 22.546670515122983, - "c5": 7.659741658231539, - "c6": 23.575266133482067, - "c7": -27.869095020775536 + "points": { + "c1": -19.83098762213389, + "c2": 24.22906402229173, + "c3": 29.00174107803621, + "c4": -4.198297913372855, + "c5": 9.098121696559133, + "c6": -5.228054050039756, + "c7": 8.427394819153974 }, - "vertexSeeds": { - "c1": 0.476091941269303, - "c2": 0.46661200031735767, - "c3": 0.4768972562819247, - "c4": 0.4752870529306665, - "c5": 0.4763958926853764, - "c6": 0.4820903770655647, - "c7": 0.47672486465698594 + "offsets": { + "c1": 0.8414239482200648, + "c2": 0.7212205270457703, + "c3": 0.6010171058714757, + "c4": 0.4808136846971782, + "c5": 0.36061026352288367, + "c6": 0.2404068423485891, + "c7": 0.12020342117429456 }, "rgb": [86, 146, 138] }, @@ -12804,23 +12804,23 @@ "year": 1642, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 6.338441411927477, - "c2": 7.348156360581314, - "c3": -18.253079760604916, - "c4": -0.9232742902890863, - "c5": 10.76621446235636, - "c6": -4.963427950285343, - "c7": 26.329647434561565 + "points": { + "c1": 24.386055025346437, + "c2": -12.330972661466372, + "c3": -16.059560781623304, + "c4": -21.38179248102785, + "c5": 21.482342069568496, + "c6": 36.83855199876626, + "c7": 23.004431405738934 }, - "vertexSeeds": { - "c1": 1.183532415571169, - "c2": 1.2676887093414475, - "c3": 1.292391422265297, - "c4": 1.4496694490377173, - "c5": 1.1315010478286962, - "c6": 1.4056188854187164, - "c7": 1.358984855911688 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.1359223300970878, + "c3": 1.7799352750809052, + "c4": 1.4239482200647244, + "c5": 1.0679611650485439, + "c6": 0.7119741100323632, + "c7": 0.35598705501618066 }, "rgb": [222, 0, 59] }, @@ -12831,23 +12831,23 @@ "year": 1642, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 21.09614971021408, - "c2": -32.68248031243798, - "c3": -32.137247256091676, - "c4": -35.25343775200152, - "c5": -11.39536665832837, - "c6": -19.155079837339457, - "c7": 28.932612915602462 + "points": { + "c1": 3.6542471853237544, + "c2": 30.46596376051518, + "c3": 38.54146607551944, + "c4": -28.9651000399248, + "c5": -32.05370958847058, + "c6": 28.42588263259377, + "c7": 14.37627166951453 }, - "vertexSeeds": { - "c1": 1.2780767843266243, - "c2": 1.455079598464564, - "c3": 1.4159627268382389, - "c4": 1.3938430318095525, - "c5": 1.3099430906479912, - "c6": 1.407123704860181, - "c7": 1.290902253193284 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.1359223300970878, + "c3": 1.7799352750809052, + "c4": 1.4239482200647244, + "c5": 1.0679611650485439, + "c6": 0.7119741100323632, + "c7": 0.35598705501618066 }, "rgb": [58, 15, 49] }, @@ -12858,23 +12858,23 @@ "year": 1642, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 26.905426567273167, - "c2": -25.16106297350323, - "c3": -4.900104856657727, - "c4": -7.79536672179907, - "c5": 22.233973549501712, - "c6": 18.933541128212553, - "c7": 31.204024663834346 + "points": { + "c1": 29.95159777795348, + "c2": -2.981711104775002, + "c3": 36.09769384844522, + "c4": 11.958086910103845, + "c5": 30.990920165965136, + "c6": 33.0524963785203, + "c7": 30.791956817265344 }, - "vertexSeeds": { - "c1": 1.4402385295810425, - "c2": 1.4478174531515102, - "c3": 1.151191829989911, - "c4": 1.3601143446576698, - "c5": 1.174851948746841, - "c6": 1.179503997593923, - "c7": 1.3541832240462908 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.1359223300970873, + "c3": 1.779935275080906, + "c4": 1.4239482200647249, + "c5": 1.0679611650485437, + "c6": 0.7119741100323624, + "c7": 0.3559870550161812 }, "rgb": [238, 201, 159] }, @@ -12885,23 +12885,23 @@ "year": 1642, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -22.329596139679087, - "c2": 11.939997256170273, - "c3": 31.430976580242955, - "c4": -9.119170782587656, - "c5": 24.41109731948876, - "c6": 18.971816413747213, - "c7": 18.924366389916358 + "points": { + "c1": -33.329904609798774, + "c2": -1.4397226662946494, + "c3": 36.35843682762166, + "c4": -32.629706512300345, + "c5": 12.743015362361646, + "c6": -7.1036724715427795, + "c7": -39.98873975312057 }, - "vertexSeeds": { - "c1": 1.0373292564416239, - "c2": 0.9657018652626916, - "c3": 1.1009752853994308, - "c4": 1.0365688034797849, - "c5": 1.087987532706519, - "c6": 1.0486105114828, - "c7": 0.9879494720632847 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144245, + "c3": 1.5025427646786869, + "c4": 1.2020342117429494, + "c5": 0.9015256588072117, + "c6": 0.6010171058714742, + "c7": 0.30050855293573664 }, "rgb": [222, 0, 59] }, @@ -12912,23 +12912,23 @@ "year": 1644, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 16.363470737062187, - "c2": 3.2929384667006545, - "c3": 14.001939412921573, - "c4": 11.926739347413992, - "c5": -32.46962309106185, - "c6": 31.582482820155647, - "c7": 29.532220642814394 + "points": { + "c1": -0.6857225534702778, + "c2": 26.780731203291722, + "c3": 17.680568903048844, + "c4": -43.3578645155114, + "c5": 16.494072084505383, + "c6": -9.133964977331843, + "c7": 28.54088365878671 }, - "vertexSeeds": { - "c1": 5.522791044841471, - "c2": 4.8156891903356085, - "c3": 5.569847396297602, - "c4": 5.741049030808224, - "c5": 5.59329006912585, - "c6": 5.581494082983605, - "c7": 4.894389113368668 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055476, + "c4": 5.547850208044386, + "c5": 4.1608876560332835, + "c6": 2.773925104022193, + "c7": 1.3869625520110909 }, "rgb": [86, 146, 138] }, @@ -12939,23 +12939,23 @@ "year": 1645, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 43.051807409554584, - "c2": 28.605135130606342, - "c3": 10.492071664212645, - "c4": 32.96379788471954, - "c5": 41.68074592337078, - "c6": -32.59966537531195, - "c7": -2.0129640001579574 + "points": { + "c1": 32.16664443668216, + "c2": 14.811746067622245, + "c3": 34.74735062770827, + "c4": 17.66402735659851, + "c5": -25.752584437857536, + "c6": 18.297636973650114, + "c7": 35.31379601561896 }, - "vertexSeeds": { - "c1": 9.666680648965523, - "c2": 9.335320658918159, - "c3": 9.395539884449931, - "c4": 9.482967165419824, - "c5": 9.437569652816887, - "c6": 9.55112560367638, - "c7": 9.474724479618654 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.925104022191402, + "c3": 11.60425335182617, + "c4": 9.283402681460935, + "c5": 6.962552011095701, + "c6": 4.641701340730467, + "c7": 2.3208506703652336 }, "rgb": [58, 15, 49] }, @@ -12966,23 +12966,23 @@ "year": 1645, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -6.09922960135442, - "c2": 3.929177502005647, - "c3": -7.992989507296095, - "c4": -3.2439774463578814, - "c5": -2.723196600501719, - "c6": 1.2730230472298842, - "c7": 8.493435944292955 + "points": { + "c1": 12.816648095699954, + "c2": 13.625724360838689, + "c3": 5.024795417823221, + "c4": 20.803004927392863, + "c5": -13.020451984590334, + "c6": -1.722380827631465, + "c7": 14.695107939391143 }, - "vertexSeeds": { - "c1": 1.7986311443838123, - "c2": 1.577848671887992, - "c3": 1.8090147406794224, - "c4": 1.7186355905930455, - "c5": 1.709710548624947, - "c6": 1.8624399823564923, - "c7": 1.6131178946657037 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.311604253351827, + "c4": 1.849283402681461, + "c5": 1.3869625520110953, + "c6": 0.9246417013407294, + "c7": 0.4623208506703659 }, "rgb": [222, 0, 59] }, @@ -12993,23 +12993,23 @@ "year": 1645, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": 11.223612112864405, - "c2": -14.854735355518615, - "c3": 6.307810869167174, - "c4": -12.483439711328725, - "c5": -11.141671054106485, - "c6": 5.6981366817731, - "c7": 0.7640313981736178 + "points": { + "c1": 15.814405619229742, + "c2": -11.065968424485629, + "c3": -6.947182407194351, + "c4": 12.621490768514597, + "c5": -12.989092655391458, + "c6": 17.201031455280802, + "c7": -9.053018206748579 }, - "vertexSeeds": { - "c1": 2.4371238477534973, - "c2": 2.5013473608308567, - "c3": 2.6974611074693997, - "c4": 2.7008415540599757, - "c5": 2.862655306251821, - "c6": 2.820940415764318, - "c7": 2.507852839678672 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [222, 0, 59] }, @@ -13020,23 +13020,23 @@ "year": 1645, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 2.426638999758161, - "c2": -30.691128523069786, - "c3": 33.89487008300101, - "c4": 25.897770793625355, - "c5": 8.455814652797102, - "c6": 21.72926033065552, - "c7": 16.89502457921234 + "points": { + "c1": 37.93198555806421, + "c2": 4.477092258872823, + "c3": 3.678519787926831, + "c4": 27.65157763286028, + "c5": -10.281579509008907, + "c6": 16.68800394632315, + "c7": 27.828873163871165 }, - "vertexSeeds": { - "c1": 3.5074044530285144, - "c2": 4.19939554280672, - "c3": 3.560961253686716, - "c4": 4.928943086138591, - "c5": 3.967749731842173, - "c6": 5.2738225509905075, - "c7": 4.419835036152251 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.93481276005548, + "c4": 5.547850208044382, + "c5": 4.160887656033288, + "c6": 2.7739251040221933, + "c7": 1.3869625520110966 }, "rgb": [222, 0, 59] }, @@ -13047,23 +13047,23 @@ "year": 1646, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -5.467899528063747, - "c2": 8.780072059766447, - "c3": -34.28433402059671, - "c4": -23.079895127605198, - "c5": -25.406498863781895, - "c6": -30.577829548176684, - "c7": 32.79378108548512 + "points": { + "c1": -29.68406253468058, + "c2": -34.822946451367024, + "c3": 21.561162746401422, + "c4": 23.494945024348638, + "c5": -1.6948040237025026, + "c6": -44.828208873061946, + "c7": -45.80753362433462 }, - "vertexSeeds": { - "c1": 4.5330358486564855, - "c2": 4.327903392127819, - "c3": 4.287813769742949, - "c4": 3.5449473490200947, - "c5": 4.279610380389908, - "c6": 3.6194768079659836, - "c7": 3.94044938993014 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [222, 0, 59] }, @@ -13074,23 +13074,23 @@ "year": 1646, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 20.038772463045056, - "c2": -25.33005856306775, - "c3": -24.864433281142688, - "c4": -18.807421950963416, - "c5": -19.587942719840434, - "c6": -8.974523639400882, - "c7": 13.34665024218424 + "points": { + "c1": 20.96650753948294, + "c2": 12.490900714474769, + "c3": -6.186196693613489, + "c4": 1.5393596237227598, + "c5": -12.092301475313416, + "c6": 12.111653549473438, + "c7": -27.29126493858934 }, - "vertexSeeds": { - "c1": 5.154878012046197, - "c2": 5.134267020340301, - "c3": 4.897133163240081, - "c4": 5.037249098449842, - "c5": 5.042083330283094, - "c6": 5.262320843652845, - "c7": 5.381062900182008 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.8502080443828, + "c3": 6.541840036985666, + "c4": 5.233472029588531, + "c5": 3.925104022191396, + "c6": 2.6167360147942613, + "c7": 1.3083680073971267 }, "rgb": [222, 0, 59] }, @@ -13101,23 +13101,23 @@ "year": 1646, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -4.874731773811099, - "c2": 24.689772065861014, - "c3": -2.637849541225691, - "c4": 10.127290048272705, - "c5": 34.190914201791024, - "c6": -18.531287720140966, - "c7": 10.32939647050081 + "points": { + "c1": -34.28138261299827, + "c2": -18.1019869733336, + "c3": 6.854106847337526, + "c4": 32.38756192440716, + "c5": 33.42894863138114, + "c6": -3.880528954789142, + "c7": 37.227855842175266 }, - "vertexSeeds": { - "c1": 4.87908894501113, - "c2": 4.880955257105412, - "c3": 4.916588887828056, - "c4": 4.760290977898234, - "c5": 5.256412589003831, - "c6": 5.376944505297244, - "c7": 5.46686837138715 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382795, + "c3": 6.541840036985668, + "c4": 5.233472029588541, + "c5": 3.9251040221914004, + "c6": 2.616736014794267, + "c7": 1.3083680073971335 }, "rgb": [222, 0, 59] }, @@ -13128,23 +13128,23 @@ "year": 1646, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 16.869196224108123, - "c2": 9.558507164708956, - "c3": 11.854305077825522, - "c4": 25.61231867830604, - "c5": -22.969120074784023, - "c6": 29.428636340463257, - "c7": 8.004013308081703 + "points": { + "c1": -21.910572452483457, + "c2": 32.78002577086202, + "c3": 16.75663047386987, + "c4": -3.7870934802423832, + "c5": -18.981872200630818, + "c6": -23.787701640283885, + "c7": 3.717029054496038 }, - "vertexSeeds": { - "c1": 5.0844801516673535, - "c2": 5.221010018090032, - "c3": 5.448720325503146, - "c4": 4.946670792440059, - "c5": 4.798240006978886, - "c6": 5.203065652120872, - "c7": 4.78344335327389 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382795, + "c3": 6.541840036985668, + "c4": 5.233472029588541, + "c5": 3.9251040221914004, + "c6": 2.616736014794267, + "c7": 1.3083680073971335 }, "rgb": [238, 201, 159] }, @@ -13155,23 +13155,23 @@ "year": 1647, "resistanceReported": true, "duration": 21427200, - "curveSeeds": { - "c1": 6.367198460003543, - "c2": 24.228636887037197, - "c3": -11.551310571430893, - "c4": 27.740171844399796, - "c5": -18.10905230477422, - "c6": 17.160740551769067, - "c7": -16.472730401177405 + "points": { + "c1": 22.607711016693997, + "c2": 24.597781652301784, + "c3": 28.342901765938628, + "c4": -24.40418622446837, + "c5": 22.16328179863484, + "c6": 4.741091486757071, + "c7": -31.960483390810126 }, - "vertexSeeds": { - "c1": 3.112608586854472, - "c2": 3.5186206274141885, - "c3": 3.423050044390981, - "c4": 3.4556580680094733, - "c5": 3.6855605182745017, - "c6": 3.8131241811141736, - "c7": 4.444175148202464 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653257, + "c3": 5.547850208044382, + "c4": 4.438280166435504, + "c5": 3.32871012482663, + "c6": 2.219140083217752, + "c7": 1.109570041608875 }, "rgb": [238, 201, 159] }, @@ -13182,23 +13182,23 @@ "year": 1648, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -2.6960042175167374, - "c2": -36.33139971018947, - "c3": -29.71539601910568, - "c4": -25.16203081789657, - "c5": -30.458681098319545, - "c6": 29.24491457235233, - "c7": 17.030549806596767 + "points": { + "c1": 18.47454114248295, + "c2": 36.4620973141642, + "c3": -36.26402199924277, + "c4": -39.29404271515659, + "c5": -16.959779851733565, + "c6": -9.48492569947949, + "c7": 10.867918448270359 }, - "vertexSeeds": { - "c1": 1.6505410364992583, - "c2": 1.8944352721162225, - "c3": 1.6044704323298067, - "c4": 1.906805727648183, - "c5": 1.8892114546514605, - "c6": 1.8284878951485228, - "c7": 1.6490148287668362 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.311604253351827, + "c4": 1.849283402681461, + "c5": 1.3869625520110953, + "c6": 0.9246417013407294, + "c7": 0.4623208506703659 }, "rgb": [222, 0, 59] }, @@ -13209,23 +13209,23 @@ "year": 1648, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 33.47259953530922, - "c2": -28.03189973667454, - "c3": -10.43799989915938, - "c4": -6.8906117847903445, - "c5": 24.61479804235882, - "c6": -28.571741348267047, - "c7": 14.38062653892377 + "points": { + "c1": 33.16180196993739, + "c2": 31.154819522824432, + "c3": -8.936529487840062, + "c4": 33.03664592295271, + "c5": 36.01169368245029, + "c6": 25.20103418550122, + "c7": 24.408613777243865 }, - "vertexSeeds": { - "c1": 4.367071369382941, - "c2": 4.445442210064117, - "c3": 4.684034623848897, - "c4": 3.399386654963228, - "c5": 4.431358316082178, - "c6": 3.57290282770476, - "c7": 4.411515339796351 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [58, 15, 49] }, @@ -13236,23 +13236,23 @@ "year": 1648, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -26.919763249533247, - "c2": 17.277198258893705, - "c3": -9.29451801617089, - "c4": 27.798921030222445, - "c5": -28.686135110596265, - "c6": -36.701839036509654, - "c7": 8.056322376695519 + "points": { + "c1": 31.246411262312222, + "c2": -27.45213137593229, + "c3": -23.651368667453685, + "c4": 35.7777925409375, + "c5": -21.774210857881833, + "c6": 35.21339379582476, + "c7": -30.567382831409272 }, - "vertexSeeds": { - "c1": 6.463884467868939, - "c2": 6.282169676073131, - "c3": 6.143951513490513, - "c4": 6.276149655044113, - "c5": 6.068171797196411, - "c6": 5.986135654171276, - "c7": 6.000317230191536 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077667, + "c3": 8.090614886731398, + "c4": 6.472491909385116, + "c5": 4.854368932038834, + "c6": 3.2362459546925644, + "c7": 1.6181229773462822 }, "rgb": [86, 146, 138] }, @@ -13263,23 +13263,23 @@ "year": 1651, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -4.816921197050309, - "c2": 24.2630187662592, - "c3": -31.378591601895895, - "c4": 29.572131164166905, - "c5": -21.13307113252837, - "c6": -22.936551626663196, - "c7": -15.047273542779923 + "points": { + "c1": -3.7833783431826333, + "c2": -37.86036278219675, + "c3": -28.068122438244814, + "c4": 8.550614839527206, + "c5": 6.770946259568653, + "c6": -10.618454487434118, + "c7": 6.747444965639588 }, - "vertexSeeds": { - "c1": 3.441723354577125, - "c2": 3.0580340732791096, - "c3": 3.324147237784837, - "c4": 3.198866976062617, - "c5": 3.282591490147489, - "c6": 3.3752855423341575, - "c7": 3.138382110783655 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280164, + "c3": 4.184003698566808, + "c4": 3.3472029588534453, + "c5": 2.510402219140082, + "c6": 1.6736014794267193, + "c7": 0.8368007397133629 }, "rgb": [77, 76, 132] }, @@ -13290,23 +13290,23 @@ "year": 1652, "resistanceReported": false, "duration": 47347200, - "curveSeeds": { - "c1": -31.353422196805287, - "c2": 3.325576896739193, - "c3": -26.54667300297848, - "c4": 56.15472178316389, - "c5": 12.4563865466544, - "c6": 37.04167667535185, - "c7": 52.38321940775488 + "points": { + "c1": 31.239805414397523, + "c2": 47.208857404274085, + "c3": -59.31736145167402, + "c4": 49.803047553624495, + "c5": -59.84623148277886, + "c6": 42.98099574531095, + "c7": 37.461783879278244 }, - "vertexSeeds": { - "c1": 5.825100854572262, - "c2": 5.569112784516305, - "c3": 5.940276537097046, - "c4": 6.08845695629999, - "c5": 5.640837081369661, - "c6": 5.781239547857539, - "c7": 6.5849571124739175 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916785, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958389, + "c6": 3.1992602866389284, + "c7": 1.599630143319468 }, "rgb": [86, 146, 138] }, @@ -13317,23 +13317,23 @@ "year": 1652, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -15.999830679680208, - "c2": 7.420942186725512, - "c3": -38.163645802240644, - "c4": -42.50624731632357, - "c5": 1.5728570508511481, - "c6": 42.19090623329441, - "c7": 24.474136350056327 + "points": { + "c1": -41.41058487237366, + "c2": -44.01761128616704, + "c3": 45.70858483045801, + "c4": 3.360640141219797, + "c5": 24.939744963486334, + "c6": -25.208840762622028, + "c7": -24.036898932035694 }, - "vertexSeeds": { - "c1": 5.997583902354765, - "c2": 6.24841092686655, - "c3": 5.905572351090219, - "c4": 5.9344056153938425, - "c5": 6.538145888997119, - "c6": 6.25046996504245, - "c7": 6.5445707323665046 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [58, 15, 49] }, @@ -13344,23 +13344,23 @@ "year": 1653, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -33.486049542614204, - "c2": -11.197085345061268, - "c3": 31.945716488839373, - "c4": -41.95080267544918, - "c5": 6.995358875580372, - "c6": 29.483357399045225, - "c7": 12.803044393689312 + "points": { + "c1": 24.139925030423036, + "c2": 24.298055894601525, + "c3": 29.11527938929276, + "c4": 12.671773869843356, + "c5": 33.76803198632911, + "c6": 35.688134079804065, + "c7": 37.35732317161946 }, - "vertexSeeds": { - "c1": 5.944228575179481, - "c2": 5.7000359830659075, - "c3": 6.06540360084669, - "c4": 6.078024647815069, - "c5": 6.413337284978953, - "c6": 6.2897379414970995, - "c7": 5.868035549543036 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675452, + "c3": 7.859454461396211, + "c4": 6.287563569116962, + "c5": 4.7156726768377215, + "c6": 3.143781784558481, + "c7": 1.5718908922792405 }, "rgb": [222, 0, 59] }, @@ -13371,23 +13371,23 @@ "year": 1653, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 3.71738957081039, - "c2": 10.090932486005492, - "c3": -21.846448140436262, - "c4": 5.389154337472057, - "c5": -17.49729175359612, - "c6": -0.21422901927771676, - "c7": -41.571408995366625 + "points": { + "c1": 10.445623318245282, + "c2": -15.711350068451146, + "c3": -8.936829525250232, + "c4": 33.410839380923385, + "c5": -14.57687023007886, + "c6": 5.531513622766333, + "c7": 34.76454727402068 }, - "vertexSeeds": { - "c1": 7.3432969731920394, - "c2": 7.139573784181267, - "c3": 7.0910018700974575, - "c4": 7.194539192293494, - "c5": 7.091502909964909, - "c6": 7.111838428508794, - "c7": 7.2654805319859745 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284328, + "c3": 8.78409616273694, + "c4": 7.027276930189552, + "c5": 5.270457697642164, + "c6": 3.513638465094776, + "c7": 1.756819232547388 }, "rgb": [77, 76, 132] }, @@ -13398,23 +13398,23 @@ "year": 1654, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 22.623171829968747, - "c2": -0.9820363499797864, - "c3": 32.719185093450136, - "c4": 17.33208189414428, - "c5": -21.617853639673108, - "c6": 8.291632207637058, - "c7": -29.525981017580584 + "points": { + "c1": -36.457479441985946, + "c2": 9.893911825824212, + "c3": 29.27302634722436, + "c4": -25.084592394953482, + "c5": -32.463878170359365, + "c6": -29.637328888917185, + "c7": 34.56577361452452 }, - "vertexSeeds": { - "c1": 2.7023227634882097, - "c2": 5.894367455321254, - "c3": 6.297099882467865, - "c4": 6.8980873271016385, - "c5": 1.4100694346894542, - "c6": 6.913456690277993, - "c7": 2.6477718834145567 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203884, + "c3": 8.737864077669903, + "c4": 6.990291262135922, + "c5": 5.242718446601942, + "c6": 3.495145631067962, + "c7": 1.74757281553398 }, "rgb": [86, 146, 138] }, @@ -13425,23 +13425,23 @@ "year": 1655, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -16.267008974912425, - "c2": 1.2925183024371663, - "c3": 26.604620953370777, - "c4": 1.450799657422948, - "c5": -10.379300392502138, - "c6": 7.642190492656134, - "c7": -10.893249280383284 + "points": { + "c1": -22.995042162025495, + "c2": 6.211798783299706, + "c3": -26.39357538520199, + "c4": -10.677185939953851, + "c5": -14.392400807893306, + "c6": 19.197251350924404, + "c7": -16.866362144953698 }, - "vertexSeeds": { - "c1": 5.668294172044282, - "c2": 5.92522131761238, - "c3": 5.903385061127512, - "c4": 6.011316346578442, - "c5": 5.813848417587516, - "c6": 5.990973640034766, - "c7": 6.248717429954043 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192786, + "c3": 7.582061950993985, + "c4": 6.0656495607952, + "c5": 4.5492371705964, + "c6": 3.0328247803976, + "c7": 1.5164123901988 }, "rgb": [222, 0, 59] }, @@ -13452,23 +13452,23 @@ "year": 1657, "resistanceReported": false, "duration": 103680000, - "curveSeeds": { - "c1": 49.832064521693326, - "c2": -33.56397612813737, - "c3": -42.430248708252336, - "c4": 63.69616404460629, - "c5": -43.69695502931255, - "c6": 60.11023313758747, - "c7": -20.808261690901546 + "points": { + "c1": 85.3615909015914, + "c2": -18.38286228674332, + "c3": -26.122419986040228, + "c4": 12.600863975008536, + "c5": -63.58982393601843, + "c6": 123.45618511364398, + "c7": 36.43324334488673 }, - "vertexSeeds": { - "c1": 7.098428157415736, - "c2": 10.759416879131631, - "c3": 6.377057230929662, - "c4": 11.007470700293645, - "c5": 4.980453357689395, - "c6": 10.704987428140571, - "c7": 10.820175250984327 + "offsets": { + "c1": 22.006472491909385, + "c2": 18.862690707350897, + "c3": 15.718908922792417, + "c4": 12.575127138233933, + "c5": 9.431345353675448, + "c6": 6.2875635691169665, + "c7": 3.14378178455848 }, "rgb": [238, 201, 159] }, @@ -13479,23 +13479,23 @@ "year": 1655, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 9.683062306923201, - "c2": -10.405777535009623, - "c3": 18.13424945276135, - "c4": 27.02601022928771, - "c5": 13.166247038884688, - "c6": 7.319947003072183, - "c7": -6.89841757855983 + "points": { + "c1": -30.486866280185208, + "c2": -1.0294234500507464, + "c3": 18.531461982040188, + "c4": -22.590948468853586, + "c5": -7.481862311262649, + "c6": 6.716905981329081, + "c7": -15.750223511431761 }, - "vertexSeeds": { - "c1": 4.84351366544405, - "c2": 4.849195253693013, - "c3": 4.8889233185307805, - "c4": 4.840546558451721, - "c5": 4.862402718245394, - "c6": 4.875825333129062, - "c7": 4.870497281144578 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.0180305131761775, + "c3": 5.848358760980109, + "c4": 4.678687008784118, + "c5": 3.50901525658805, + "c6": 2.339343504392059, + "c7": 1.1696717521960682 }, "rgb": [58, 15, 49] }, @@ -13506,23 +13506,23 @@ "year": 1655, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -23.30521396007392, - "c2": 24.917047053067456, - "c3": 12.317711688340566, - "c4": 32.472140818243, - "c5": -36.146964392852865, - "c6": -25.859541097705495, - "c7": -26.111900571081435 + "points": { + "c1": 26.257260613155204, + "c2": -16.167806182999154, + "c3": 15.463663299536186, + "c4": 16.406493165979363, + "c5": -31.066355799622553, + "c6": 3.6165889804857585, + "c7": -3.5346254357706144 }, - "vertexSeeds": { - "c1": 7.934805264962119, - "c2": 8.176440565375799, - "c3": 8.3990163667705, - "c4": 8.548013917043082, - "c5": 7.700401237034322, - "c6": 7.893468425394607, - "c7": 8.737817830471842 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [238, 201, 159] }, @@ -13533,23 +13533,23 @@ "year": 1658, "resistanceReported": false, "duration": 92361600, - "curveSeeds": { - "c1": 16.52098548208963, - "c2": -44.65653242502913, - "c3": -58.1450209103918, - "c4": -107.59550909442915, - "c5": -59.1681045510857, - "c6": 29.82622802501494, - "c7": -80.92930113792893 + "points": { + "c1": -43.068843584302996, + "c2": -7.515608516379572, + "c3": 82.29718414487597, + "c4": -71.37090227531499, + "c5": -89.95733999972595, + "c6": 104.48639903932546, + "c7": 38.63184577311607 }, - "vertexSeeds": { - "c1": 2.5107052540285073, - "c2": 2.4916851555515787, - "c3": 2.668860004130408, - "c4": 2.427800327237031, - "c5": 2.5749229897149366, - "c6": 2.650313966669699, - "c7": 2.4531160450234757 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692557, + "c4": 2.588996763754045, + "c5": 1.941747572815534, + "c6": 1.2944983818770226, + "c7": 0.6472491909385113 }, "rgb": [222, 0, 59] }, @@ -13560,23 +13560,23 @@ "year": 1656, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": 4.817218025112801, - "c2": -18.646213667678943, - "c3": 4.693460178073053, - "c4": -20.977246307848787, - "c5": 12.702546807721479, - "c6": 0.5077873033364249, - "c7": 19.09619564779854 + "points": { + "c1": 10.01176648585962, + "c2": -7.443142096087239, + "c3": 7.191166579225463, + "c4": 19.01318205737395, + "c5": 0.9010613287595639, + "c6": 3.267720587942641, + "c7": 9.758006952401953 }, - "vertexSeeds": { - "c1": 3.9444310384590677, - "c2": 4.132908927787551, - "c3": 4.600754969780336, - "c4": 4.106919979567218, - "c5": 4.3918560396870365, - "c6": 4.030349668174619, - "c7": 4.399575651822928 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613036, + "c3": 5.524734165510862, + "c4": 4.419787332408692, + "c5": 3.314840499306518, + "c6": 2.209893666204344, + "c7": 1.1049468331021743 }, "rgb": [77, 76, 132] }, @@ -13587,23 +13587,23 @@ "year": 1657, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 28.595530668193902, - "c2": -14.667790696259082, - "c3": 14.098836157729927, - "c4": -1.4989933155999609, - "c5": 2.431791263412059, - "c6": -10.574563458551594, - "c7": 26.966137364416348 + "points": { + "c1": 13.068118892967632, + "c2": -31.79799791685572, + "c3": -23.681665316020748, + "c4": -12.20868932276612, + "c5": 26.75998313744919, + "c6": -1.213506668125106, + "c7": -28.010947402309775 }, - "vertexSeeds": { - "c1": 6.02100252397812, - "c2": 6.540036566793335, - "c3": 5.553830982145069, - "c4": 5.500110231651739, - "c5": 5.570828100580756, - "c6": 5.612591997651849, - "c7": 5.836390860892682 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110956998, + "c3": 8.021266759130835, + "c4": 6.4170134073046725, + "c5": 4.812760055478499, + "c6": 3.2085067036523265, + "c7": 1.6042533518261632 }, "rgb": [222, 0, 59] }, @@ -13614,23 +13614,23 @@ "year": 1657, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 20.989408391700984, - "c2": -20.94464445916342, - "c3": -8.803451815513217, - "c4": 8.662849610456437, - "c5": 6.09302307873779, - "c6": -6.434016744253842, - "c7": 17.11344975047274 + "points": { + "c1": -1.0493723313598338, + "c2": -16.65076853840683, + "c3": -1.154487552166188, + "c4": 21.30374324162615, + "c5": -12.714173041057833, + "c6": 7.581152651651031, + "c7": 19.552209439357277 }, - "vertexSeeds": { - "c1": 3.9019634342317615, - "c2": 4.886179874457904, - "c3": 4.82123222194584, - "c4": 4.556621632266029, - "c5": 4.455767180130793, - "c6": 4.6083873599712115, - "c7": 4.130779154383698 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.310679611650487, + "c4": 5.048543689320387, + "c5": 3.7864077669902905, + "c6": 2.5242718446601935, + "c7": 1.2621359223300967 }, "rgb": [238, 201, 159] }, @@ -13641,23 +13641,23 @@ "year": 1657, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": -2.119760189006673, - "c2": -16.70110821397298, - "c3": 15.294695516350174, - "c4": -18.611815773670653, - "c5": -1.7475256100688945, - "c6": 15.789312889485807, - "c7": -5.475342804794041 + "points": { + "c1": -21.15937709401539, + "c2": 7.825134554048482, + "c3": 14.184911775217294, + "c4": -1.9339430235171484, + "c5": 8.218083467034955, + "c6": 21.23280084702145, + "c7": 9.810977325286203 }, - "vertexSeeds": { - "c1": 11.657778642492193, - "c2": 11.572183218471814, - "c3": 12.332317764188058, - "c4": 12.530307692333894, - "c5": 7.846098112884894, - "c6": 7.29826845167406, - "c7": 13.34067387999441 + "offsets": { + "c1": 22.556634304207122, + "c2": 19.334257975034674, + "c3": 16.11188164586223, + "c4": 12.889505316689783, + "c5": 9.667128987517337, + "c6": 6.444752658344893, + "c7": 3.2223763291724463 }, "rgb": [86, 146, 138] }, @@ -13668,23 +13668,23 @@ "year": 1657, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -7.983465388132956, - "c2": 18.81727060223094, - "c3": 23.42214610827569, - "c4": 24.832542765639154, - "c5": 34.47586697396407, - "c6": 18.384964686857437, - "c7": 39.05000752968355 + "points": { + "c1": 8.439174715236852, + "c2": -19.79730849059223, + "c3": 17.13800841765032, + "c4": -27.10300079093869, + "c5": 44.48229702755385, + "c6": 12.315940819884247, + "c7": -21.516113703723292 }, - "vertexSeeds": { - "c1": 4.617863637702749, - "c2": 4.712916525230534, - "c3": 5.018319292763258, - "c4": 5.103905370019426, - "c5": 4.2340001733329, - "c6": 4.748227326199659, - "c7": 4.3374831499855855 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773925, + "c3": 6.171983356449373, + "c4": 4.937586685159502, + "c5": 3.703190013869625, + "c6": 2.4687933425797484, + "c7": 1.2343966712898722 }, "rgb": [222, 0, 59] }, @@ -13695,23 +13695,23 @@ "year": 1658, "resistanceReported": true, "duration": 34214400, - "curveSeeds": { - "c1": -20.779918263313903, - "c2": 11.852117577330482, - "c3": 25.355736513747168, - "c4": -41.70819351159019, - "c5": 0.14553227450772255, - "c6": 43.2826311352547, - "c7": -4.830609854215901 + "points": { + "c1": 3.7445668283654783, + "c2": 19.910265924841106, + "c3": -12.488705964400076, + "c4": 47.75236181186478, + "c5": 23.857666148426226, + "c6": 41.80527362835624, + "c7": -34.66972520694365 }, - "vertexSeeds": { - "c1": 4.741854721098988, - "c2": 4.198920096097832, - "c3": 4.60171558527811, - "c4": 4.450213204299103, - "c5": 4.106948346419168, - "c6": 4.683199942973865, - "c7": 4.821989204377603 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417474, + "c3": 5.987055016181227, + "c4": 4.789644012944985, + "c5": 3.592233009708737, + "c6": 2.39482200647249, + "c7": 1.1974110032362473 }, "rgb": [86, 146, 138] }, @@ -13722,23 +13722,23 @@ "year": 1658, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": 51.10165555427981, - "c2": -17.394419518162856, - "c3": -16.563577445669807, - "c4": 23.66392184717457, - "c5": -39.500376290803544, - "c6": -18.09499266619099, - "c7": 46.06691449782384 + "points": { + "c1": -42.23320712360183, + "c2": 7.159157273267091, + "c3": -32.50703315465126, + "c4": 41.801684836174935, + "c5": -42.11348796435938, + "c6": -4.0481132208418416, + "c7": -45.8530544239992 }, - "vertexSeeds": { - "c1": 5.866548022615697, - "c2": 5.919344402522238, - "c3": 6.298360855129538, - "c4": 6.469166467090272, - "c5": 6.581946719676989, - "c6": 6.356955238902989, - "c7": 6.251362020342917 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916776, + "c3": 7.99815071659732, + "c4": 6.3985205732778505, + "c5": 4.798890429958395, + "c6": 3.1992602866389253, + "c7": 1.5996301433194695 }, "rgb": [238, 201, 159] }, @@ -13749,23 +13749,23 @@ "year": 1658, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -31.92518012282393, - "c2": -26.576192533180386, - "c3": 19.444063025680883, - "c4": 2.0221475393469674, - "c5": 19.24133974856956, - "c6": 11.903884942479777, - "c7": 22.53341002834935 + "points": { + "c1": -29.004545310371753, + "c2": -3.7597781469527973, + "c3": -37.09428869338291, + "c4": -41.64800397155947, + "c5": -6.820706967879772, + "c6": 6.323180700233436, + "c7": -41.44503208519948 }, - "vertexSeeds": { - "c1": 7.917869444824402, - "c2": 8.31881271328844, - "c3": 8.28195493848498, - "c4": 6.389391678133336, - "c5": 5.95207159692655, - "c6": 8.627122305563903, - "c7": 7.0831639880979065 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099861, + "c3": 10.402219140083215, + "c4": 8.321775312066572, + "c5": 6.2413314840499305, + "c6": 4.160887656033289, + "c7": 2.080443828016642 }, "rgb": [222, 0, 59] }, @@ -13776,23 +13776,23 @@ "year": 1658, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -29.071688011702324, - "c2": -27.92170318879136, - "c3": -12.827839078499007, - "c4": 29.670603765317907, - "c5": -10.107383686807623, - "c6": 3.293693708717427, - "c7": 35.82209054767033 + "points": { + "c1": 0.7097311025930892, + "c2": -27.380518835064912, + "c3": -31.942810103890135, + "c4": 22.580526814919864, + "c5": -37.353046039386086, + "c6": 34.63323150210108, + "c7": -40.12009956659257 }, - "vertexSeeds": { - "c1": 4.075429131432578, - "c2": 4.400301062895609, - "c3": 5.265428902363103, - "c4": 4.475463085395602, - "c5": 4.299269108278249, - "c6": 3.797349026512572, - "c7": 4.639997255396667 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.310679611650487, + "c4": 5.048543689320387, + "c5": 3.7864077669902905, + "c6": 2.5242718446601935, + "c7": 1.2621359223300967 }, "rgb": [58, 15, 49] }, @@ -13803,23 +13803,23 @@ "year": 1657, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -5.804967250914736, - "c2": -2.1851741633946205, - "c3": -15.80778823957403, - "c4": 38.17650829317812, - "c5": 11.615504386886073, - "c6": 6.310413276707806, - "c7": 29.189902954955997 + "points": { + "c1": -25.524440668674156, + "c2": -9.193934945519139, + "c3": 38.38454105964591, + "c4": 13.71183263947664, + "c5": -3.779752685032321, + "c6": -10.460452447239298, + "c7": -23.019910224058282 }, - "vertexSeeds": { - "c1": 4.527487797478463, - "c2": 3.700353571811543, - "c3": 3.600265256860491, - "c4": 4.618253506243063, - "c5": 3.591560853064033, - "c6": 3.9442519615043925, - "c7": 4.504342841263094 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [86, 146, 138] }, @@ -13830,23 +13830,23 @@ "year": 1658, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -14.6668484522875, - "c2": 34.559584867634356, - "c3": -14.3747302229641, - "c4": -10.66527585937753, - "c5": -13.157000155811417, - "c6": 6.317645525183458, - "c7": -17.335388197140645 + "points": { + "c1": -32.83502425290425, + "c2": 22.189470098909034, + "c3": 21.790047831841463, + "c4": -22.449517791323743, + "c5": 38.07354030478358, + "c6": 28.282715815539305, + "c7": -20.947374397233805 }, - "vertexSeeds": { - "c1": 6.119066709619862, - "c2": 6.472685847451079, - "c3": 6.256378419036992, - "c4": 6.314979338412248, - "c5": 6.310002157618925, - "c6": 6.228846821504467, - "c7": 6.059598746917538 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554786, + "c3": 7.7901063337956575, + "c4": 6.232085067036521, + "c5": 4.674063800277393, + "c6": 3.116042533518265, + "c7": 1.5580212667591284 }, "rgb": [86, 146, 138] }, @@ -13857,23 +13857,23 @@ "year": 1658, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 23.36692011998209, - "c2": 18.920360921301004, - "c3": 29.067770944613095, - "c4": -5.414986468519892, - "c5": 35.07542145074904, - "c6": 37.8938325628507, - "c7": 32.41209144403671 + "points": { + "c1": 14.385061548608789, + "c2": -10.1173406798735, + "c3": 5.543262166667887, + "c4": -6.845802081421965, + "c5": -25.105950862987715, + "c6": -40.23103515291164, + "c7": 44.297734445526864 }, - "vertexSeeds": { - "c1": 4.965096113833598, - "c2": 4.7613944096082745, - "c3": 4.942715882447475, - "c4": 4.545344850998392, - "c5": 4.667242791016135, - "c6": 4.869231785532007, - "c7": 4.904294219074189 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538146, + "c3": 6.056403143781786, + "c4": 4.845122515025426, + "c5": 3.633841886269073, + "c6": 2.422561257512713, + "c7": 1.211280628756353 }, "rgb": [86, 146, 138] }, @@ -13884,23 +13884,23 @@ "year": 1658, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 34.944027583266276, - "c2": -3.296141457920612, - "c3": 34.399661173237504, - "c4": -5.947591868500002, - "c5": -25.265739652572908, - "c6": 20.74749492148637, - "c7": 18.508075914679786 + "points": { + "c1": 13.293227164414134, + "c2": 36.95126051657972, + "c3": 1.7317449866817753, + "c4": -14.23554806698592, + "c5": 28.506743250864474, + "c6": 31.639097939129712, + "c7": 11.10463524104145 }, - "vertexSeeds": { - "c1": 6.082636606474638, - "c2": 5.7086995399868945, - "c3": 6.4488177323574005, - "c4": 6.1498272005021635, - "c5": 5.809946818497612, - "c6": 6.074674053178706, - "c7": 6.411898017463632 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [86, 146, 138] }, @@ -13911,23 +13911,23 @@ "year": 1658, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -9.375523581431878, - "c2": -8.023205749340226, - "c3": -11.952106367190588, - "c4": -5.10674789766631, - "c5": -5.964719284275191, - "c6": 14.803829251050985, - "c7": 21.016980429360892 + "points": { + "c1": -23.602927305318186, + "c2": -9.707215404189242, + "c3": -22.958494764305684, + "c4": 21.200661141400502, + "c5": -8.021092926304892, + "c6": -6.532057162224344, + "c7": 17.63090667181308 }, - "vertexSeeds": { - "c1": 6.189185463869066, - "c2": 6.160800592758639, - "c3": 6.881839002929331, - "c4": 5.8063453981234385, - "c5": 6.5861415015613805, - "c6": 6.737596046089594, - "c7": 6.874332037779583 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560334, + "c3": 8.368007397133608, + "c4": 6.694405917706888, + "c5": 5.020804438280167, + "c6": 3.347202958853446, + "c7": 1.6736014794267202 }, "rgb": [238, 201, 159] }, @@ -13938,23 +13938,23 @@ "year": 1659, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": 30.077121880880824, - "c2": -49.86094485139235, - "c3": -32.51443149214391, - "c4": 8.917848775605862, - "c5": -18.376677371904954, - "c6": 25.496350937348325, - "c7": -12.851856243447969 + "points": { + "c1": -51.004715949626906, + "c2": 14.175770394691298, + "c3": 50.09623797257241, + "c4": 11.274783978683217, + "c5": 4.339064294741597, + "c6": 46.190091817313004, + "c7": 14.244071197710497 }, - "vertexSeeds": { - "c1": 4.734534237713109, - "c2": 4.760121010305541, - "c3": 4.551642353583329, - "c4": 4.870841597096041, - "c5": 4.125045309942592, - "c6": 4.24114460729818, - "c7": 4.214953095993662 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417474, + "c3": 5.987055016181227, + "c4": 4.789644012944985, + "c5": 3.592233009708737, + "c6": 2.39482200647249, + "c7": 1.1974110032362473 }, "rgb": [238, 201, 159] }, @@ -13965,23 +13965,23 @@ "year": 1659, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": 2.5837880998759744, - "c2": 43.27029601493129, - "c3": -1.7372517684527153, - "c4": -22.44605588506835, - "c5": -32.48241263119617, - "c6": -23.821392512857958, - "c7": -22.552764062630455 + "points": { + "c1": -1.6783507810965546, + "c2": -11.960473304272753, + "c3": -1.8022729713502557, + "c4": 9.1177735213572, + "c5": 7.39829622390279, + "c6": -10.120849321040893, + "c7": -11.529561630384045 }, - "vertexSeeds": { - "c1": 6.310315162268152, - "c2": 5.931244831546508, - "c3": 6.150741707017676, - "c4": 6.72496146581806, - "c5": 6.4958908102834965, - "c6": 7.687282881730319, - "c7": 5.754629104503246 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407303, + "c4": 7.397133610725845, + "c5": 5.54785020804438, + "c6": 3.6985668053629226, + "c7": 1.8492834026814613 }, "rgb": [58, 15, 49] }, @@ -13992,23 +13992,23 @@ "year": 1659, "resistanceReported": false, "duration": 57801600, - "curveSeeds": { - "c1": 17.866402381261523, - "c2": -43.63185197123937, - "c3": -20.964386378216567, - "c4": 55.016547424348616, - "c5": 34.75181522018826, - "c6": -1.9372564203700904, - "c7": -24.655074937759544 + "points": { + "c1": 57.605052476496425, + "c2": 63.054542904092486, + "c3": 37.24423945321753, + "c4": 13.125168988486408, + "c5": -0.63630053911983, + "c6": 19.99271301835354, + "c7": 52.512641591517735 }, - "vertexSeeds": { - "c1": 3.2490763619149385, - "c2": 2.390354982557291, - "c3": 2.9759647259118776, - "c4": 1.8410282653773848, - "c5": 1.891964142168394, - "c6": 2.6756237628124917, - "c7": 3.02560189691024 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843272, + "c3": 4.507628294036061, + "c4": 3.6061026352288486, + "c5": 2.704576976421637, + "c6": 1.8030513176144243, + "c7": 0.9015256588072121 }, "rgb": [238, 201, 159] }, @@ -14019,23 +14019,23 @@ "year": 1658, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 26.481324218429137, - "c2": 5.8140623151673125, - "c3": 29.09066200658568, - "c4": -29.442371303211942, - "c5": -27.992693826913445, - "c6": 10.577608049110822, - "c7": 29.103805156679485 + "points": { + "c1": -24.336062998708062, + "c2": 15.987522717316217, + "c3": -26.29757025194648, + "c4": -3.3262275736016065, + "c5": -3.946611557691945, + "c6": -18.041106662125173, + "c7": -0.6489973108154921 }, - "vertexSeeds": { - "c1": 24.069346523246107, - "c2": 24.452215574995797, - "c3": 26.299461089357887, - "c4": 24.39951154839843, - "c5": 24.268142341392238, - "c6": 24.409785523429335, - "c7": 24.110623901098975 + "offsets": { + "c1": 44.530744336569576, + "c2": 38.16920943134536, + "c3": 31.80767452612114, + "c4": 25.446139620896925, + "c5": 19.084604715672707, + "c6": 12.723069810448434, + "c7": 6.361534905224217 }, "rgb": [58, 15, 49] }, @@ -14046,23 +14046,23 @@ "year": 1658, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 31.375903408197246, - "c2": 0.8209651203458748, - "c3": -21.475851030261495, - "c4": -10.452074908064795, - "c5": -17.45628812001465, - "c6": 21.75905180373831, - "c7": -0.8445367970857944 + "points": { + "c1": 16.079155725628112, + "c2": -0.6371758261152465, + "c3": 30.634933205165225, + "c4": -27.411857668093262, + "c5": 27.187742395666902, + "c6": 33.0778936275555, + "c7": -34.00547384550261 }, - "vertexSeeds": { - "c1": 5.064647443477492, - "c2": 4.438437011469981, - "c3": 4.527689166181875, - "c4": 5.059888887310469, - "c5": 4.966900018576523, - "c6": 5.0254998521715875, - "c7": 5.073301080698993 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940358, + "c3": 6.287563569116963, + "c4": 5.030050855293573, + "c5": 3.7725381414701817, + "c6": 2.5150254276467865, + "c7": 1.2575127138233957 }, "rgb": [77, 76, 132] }, @@ -14073,23 +14073,23 @@ "year": 1659, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": -9.799527517921845, - "c2": -23.360323442518656, - "c3": 14.920728772266429, - "c4": -48.063821465488104, - "c5": -26.319109524602247, - "c6": 4.1558698416982764, - "c7": 12.083007700909107 + "points": { + "c1": 19.03935238893797, + "c2": 53.247270442079625, + "c3": -43.86441718621667, + "c4": 41.196595976118644, + "c5": -22.714500616974576, + "c6": -43.610254487717064, + "c7": -12.348392996528993 }, - "vertexSeeds": { - "c1": 10.667625843322455, - "c2": 11.673972072483782, - "c3": 10.559364067665312, - "c4": 10.74826102681649, - "c5": 11.349485895637144, - "c6": 9.80706173705455, - "c7": 10.85413371711575 + "offsets": { + "c1": 20.29126213592233, + "c2": 17.392510402219134, + "c3": 14.493758668515957, + "c4": 11.595006934812762, + "c5": 8.696255201109567, + "c6": 5.797503467406372, + "c7": 2.8987517337031954 }, "rgb": [77, 76, 132] }, @@ -14100,23 +14100,23 @@ "year": 1659, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 6.968624952507213, - "c2": 11.110569724094908, - "c3": -45.71004538485623, - "c4": -2.1666382976339165, - "c5": -15.099822061218639, - "c6": 3.1355923099567704, - "c7": -5.188736692948659 + "points": { + "c1": 24.595224699507753, + "c2": -8.506107444420884, + "c3": -28.663290426086743, + "c4": -28.892128957293664, + "c5": 19.857686862988217, + "c6": 40.886908255768404, + "c7": 32.602687618252446 }, - "vertexSeeds": { - "c1": 6.892119148199983, - "c2": 7.195849210604714, - "c3": 7.058989169018701, - "c4": 7.032532220659858, - "c5": 7.341449671795585, - "c6": 7.387996783798851, - "c7": 6.945300769892926 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.2464170134073, + "c4": 7.397133610725842, + "c5": 5.547850208044384, + "c6": 3.6985668053629257, + "c7": 1.8492834026814582 }, "rgb": [86, 146, 138] }, @@ -14127,23 +14127,23 @@ "year": 1659, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -5.5390310332044095, - "c2": 24.997651691899513, - "c3": 10.367217466063401, - "c4": -29.306088789605205, - "c5": 0.7721307302812477, - "c6": 15.264066952689511, - "c7": -28.331307116958264 + "points": { + "c1": -0.1729185121667598, + "c2": -31.241257714887052, + "c3": -18.96437214855554, + "c4": -21.291855189825295, + "c5": -20.096096768018185, + "c6": -15.156603326544442, + "c7": -23.244147605591415 }, - "vertexSeeds": { - "c1": 5.622579456925033, - "c2": 5.089862071464612, - "c3": 6.028630112375228, - "c4": 5.017543468072158, - "c5": 6.165524012546399, - "c6": 6.272273004128964, - "c7": 5.157602399441952 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072118, + "c3": 7.5127138233934385, + "c4": 6.010171058714748, + "c5": 4.507628294036059, + "c6": 3.005085529357379, + "c7": 1.5025427646786895 }, "rgb": [238, 201, 159] }, @@ -14154,23 +14154,23 @@ "year": 1659, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 6.623158085440046, - "c2": -13.710459160135699, - "c3": 1.1251450405364594, - "c4": -5.6426566849657185, - "c5": -4.007608879469654, - "c6": 5.328051977821232, - "c7": 6.062727770858437 + "points": { + "c1": 16.438899883192732, + "c2": -22.333725484909742, + "c3": -0.27312971444214185, + "c4": 12.884704128465692, + "c5": 30.568249124930077, + "c6": -13.176538494265639, + "c7": 32.93240675219934 }, - "vertexSeeds": { - "c1": 4.183492348002901, - "c2": 5.8933880234650395, - "c3": 4.962354405130085, - "c4": 7.857133503011333, - "c5": 6.284721678355746, - "c6": 5.6923904549295745, - "c7": 6.678482282987716 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973646, + "c3": 9.754969949144705, + "c4": 7.803975959315767, + "c5": 5.852981969486822, + "c6": 3.9019879796578825, + "c7": 1.9509939898289428 }, "rgb": [58, 15, 49] }, @@ -14181,23 +14181,23 @@ "year": 1659, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 11.73614008812141, - "c2": -11.382004928030437, - "c3": -17.7932248402067, - "c4": -25.40244577331287, - "c5": 28.705160270512806, - "c6": 3.573398698516762, - "c7": -29.713739315215133 + "points": { + "c1": 9.19594175362704, + "c2": -4.419403611368516, + "c3": 28.336954412773878, + "c4": 15.400179909092863, + "c5": 37.57848761869219, + "c6": -7.411155406809975, + "c7": 18.315057313932797 }, - "vertexSeeds": { - "c1": 6.170413369272728, - "c2": 7.37132576298917, - "c3": 7.3152186961545205, - "c4": 6.176696481024924, - "c5": 7.565201852417497, - "c6": 7.37244669055193, - "c7": 6.8364357413781764 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008319, + "c3": 9.20018492834027, + "c4": 7.360147942672211, + "c5": 5.520110957004164, + "c6": 3.6800739713361055, + "c7": 1.8400369856680485 }, "rgb": [58, 15, 49] }, @@ -14208,23 +14208,23 @@ "year": 1659, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": 32.44005941177014, - "c2": -34.16206486872531, - "c3": 12.279789979872596, - "c4": 2.7144163915357, - "c5": 36.50529123903289, - "c6": 41.00817548661022, - "c7": 29.354540377097827 + "points": { + "c1": -0.07810281734918334, + "c2": -41.93914761373081, + "c3": 44.904448238977274, + "c4": 11.516657414974382, + "c5": -22.156653219258523, + "c6": -13.413843674734622, + "c7": 32.23458120568737 }, - "vertexSeeds": { - "c1": 6.337039707064346, - "c2": 6.157119031481947, - "c3": 6.233080057270116, - "c4": 6.009579941481341, - "c5": 6.1852218762351825, - "c6": 5.941171782445376, - "c7": 6.314869081168601 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192786, + "c3": 7.582061950993985, + "c4": 6.0656495607952, + "c5": 4.5492371705964, + "c6": 3.0328247803976, + "c7": 1.5164123901988 }, "rgb": [58, 15, 49] }, @@ -14235,23 +14235,23 @@ "year": 1659, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 29.431646735801827, - "c2": -9.220351002392288, - "c3": 15.319130545457107, - "c4": -26.168683046949422, - "c5": 27.60746409977247, - "c6": 6.973778679113963, - "c7": -15.643243103565169 + "points": { + "c1": 19.196893290563565, + "c2": 16.987694756076884, + "c3": -19.465937928097738, + "c4": 12.422170164239738, + "c5": 25.847697329173357, + "c6": 19.36116663133518, + "c7": -2.1340372351669075 }, - "vertexSeeds": { - "c1": 6.416797713120112, - "c2": 6.705893449133126, - "c3": 6.692263920882666, - "c4": 7.3135800379979505, - "c5": 6.867948913861062, - "c6": 7.298837620272303, - "c7": 6.492385158651842 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.67961165048543, + "c3": 8.899676375404532, + "c4": 7.119741100323622, + "c5": 5.339805825242722, + "c6": 3.559870550161811, + "c7": 1.7799352750808988 }, "rgb": [86, 146, 138] }, @@ -14262,23 +14262,23 @@ "year": 1660, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -17.543539698616858, - "c2": -23.24076194544547, - "c3": -0.4633679668861106, - "c4": 11.090278147953406, - "c5": -7.028101247823862, - "c6": 4.626212795554331, - "c7": -30.41658791362793 + "points": { + "c1": -41.35989589550217, + "c2": 31.116829291090525, + "c3": 4.190886606669629, + "c4": -14.750223592074793, + "c5": 23.46767984880968, + "c6": 4.526604036413893, + "c7": -30.789162290453625 }, - "vertexSeeds": { - "c1": 6.566551067895762, - "c2": 6.516283113526355, - "c3": 6.6424495778889545, - "c4": 6.874868405460962, - "c5": 6.6507246151286505, - "c6": 6.474245459654106, - "c7": 6.152541584435723 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761449, + "c3": 8.4835876098012, + "c4": 6.786870087840965, + "c5": 5.090152565880718, + "c6": 3.3934350439204826, + "c7": 1.696717521960248 }, "rgb": [238, 201, 159] }, @@ -14289,23 +14289,23 @@ "year": 1660, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 12.68661835184588, - "c2": 15.587011610698106, - "c3": 14.850888513374834, - "c4": 8.859511789898178, - "c5": 16.50691297074856, - "c6": -6.907499124883367, - "c7": 0.016213158439331465 + "points": { + "c1": 21.794311661929413, + "c2": -24.039416168083253, + "c3": -18.904338457856042, + "c4": 22.026667422291062, + "c5": 7.17797825289901, + "c6": 22.20594283203198, + "c7": -13.774410457625093 }, - "vertexSeeds": { - "c1": 8.359687411391176, - "c2": 8.144767866654457, - "c3": 9.175797159906915, - "c4": 8.946136777672223, - "c5": 9.071173183636166, - "c6": 7.990685352296922, - "c7": 8.996475974465946 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.25936199722607, + "c3": 11.049468331021721, + "c4": 8.839574664817384, + "c5": 6.629680998613035, + "c6": 4.419787332408686, + "c7": 2.2098936662043362 }, "rgb": [77, 76, 132] }, @@ -14316,23 +14316,23 @@ "year": 1659, "resistanceReported": false, "duration": 8380800, - "curveSeeds": { - "c1": -8.99986683353169, - "c2": -2.430183025138483, - "c3": -1.745617978780576, - "c4": -3.9647711162874373, - "c5": -11.825779610432274, - "c6": -17.313224435142402, - "c7": 10.94256878741163 + "points": { + "c1": -16.957939311804843, + "c2": -17.162476101467664, + "c3": -2.451766160216163, + "c4": 17.048023490595156, + "c5": 13.142379756062965, + "c6": 19.850722816671713, + "c7": -16.38188831688654 }, - "vertexSeeds": { - "c1": 6.627038828236353, - "c2": 9.014788692088793, - "c3": 6.498616573885266, - "c4": 9.49351486480479, - "c5": 10.07117806299764, - "c6": 8.239770535444064, - "c7": 8.624183310569464 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403606, + "c3": 12.875635691169672, + "c4": 10.300508552935739, + "c5": 7.725381414701801, + "c6": 5.150254276467869, + "c7": 2.5751271382339365 }, "rgb": [238, 201, 159] }, @@ -14343,23 +14343,23 @@ "year": 1660, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 1.7864530737962383, - "c2": 11.39083152409188, - "c3": 37.71982721349005, - "c4": -10.669352100665108, - "c5": -16.330543262257628, - "c6": 23.80146042823317, - "c7": -38.09810460114416 + "points": { + "c1": -18.118586315537705, + "c2": 8.85361073278591, + "c3": -13.362942131097576, + "c4": -3.0166339322678155, + "c5": 7.1859090006352275, + "c6": 39.28793106423859, + "c7": 37.194724185009136 }, - "vertexSeeds": { - "c1": 3.374152935347772, - "c2": 3.6737664800618557, - "c3": 4.111282141710697, - "c4": 4.160925349498207, - "c5": 3.746510120485023, - "c6": 3.932810021519191, - "c7": 3.420877570861237 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768377, + "c3": 5.039297272306982, + "c4": 4.031437817845586, + "c5": 3.023578363384186, + "c6": 2.015718908922791, + "c7": 1.0078594544613955 }, "rgb": [238, 201, 159] }, @@ -14370,23 +14370,23 @@ "year": 1660, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -29.617637755040963, - "c2": 11.928438678055699, - "c3": 23.395097535287825, - "c4": -30.844433828241602, - "c5": -13.51423535213442, - "c6": -16.45318296068131, - "c7": 8.544006609988251 + "points": { + "c1": -31.348655152010835, + "c2": -24.9419492034751, + "c3": 17.462342829415, + "c4": 7.199249077551208, + "c5": -22.482980975976737, + "c6": 3.1625761595436757, + "c7": 11.2523495531373 }, - "vertexSeeds": { - "c1": 4.900867486303668, - "c2": 4.0826261637858385, - "c3": 4.252095770983021, - "c4": 4.527196327492879, - "c5": 4.445919107313663, - "c6": 4.6721187471256185, - "c7": 4.4301450674752365 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417474, + "c3": 5.987055016181227, + "c4": 4.789644012944985, + "c5": 3.592233009708737, + "c6": 2.39482200647249, + "c7": 1.1974110032362473 }, "rgb": [58, 15, 49] }, @@ -14397,23 +14397,23 @@ "year": 1660, "resistanceReported": false, "duration": 3974400, - "curveSeeds": { - "c1": -13.033120270268647, - "c2": 7.174502528947414, - "c3": 5.003540262329199, - "c4": 2.8337609339745526, - "c5": 12.190319310252608, - "c6": 11.00493413387542, - "c7": 2.9681775899915444 + "points": { + "c1": -1.5607437639785289, + "c2": -4.007027538320116, + "c3": 3.3298299188389926, + "c4": -16.09861216187585, + "c5": -5.193442150018514, + "c6": -1.49667643143572, + "c7": -7.812945507619258 }, - "vertexSeeds": { - "c1": 5.96261107458268, - "c2": 6.140901372403081, - "c3": 6.1796788449691675, - "c4": 6.1114508018604985, - "c5": 5.729001733371798, - "c6": 6.189607700194051, - "c7": 5.983222263271105 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [86, 146, 138] }, @@ -14424,23 +14424,23 @@ "year": 1661, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -0.0007579391110184019, - "c2": 30.150188868665524, - "c3": -8.444757163584725, - "c4": -18.311773824705874, - "c5": 5.981860555418578, - "c6": 7.645039851182247, - "c7": -5.532175852671529 + "points": { + "c1": 12.251023346271474, + "c2": 19.569199178486556, + "c3": 28.82955748104888, + "c4": 25.41294240731233, + "c5": -9.077063601964824, + "c6": 6.839160069024878, + "c7": -44.30050437058905 }, - "vertexSeeds": { - "c1": 4.7813535570714105, - "c2": 4.271482796333214, - "c3": 4.143581053135133, - "c4": 4.743363003471577, - "c5": 4.02151500586429, - "c6": 4.120118923115227, - "c7": 4.2736916816300665 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417474, + "c3": 5.987055016181227, + "c4": 4.789644012944985, + "c5": 3.592233009708737, + "c6": 2.39482200647249, + "c7": 1.1974110032362473 }, "rgb": [77, 76, 132] }, @@ -14451,23 +14451,23 @@ "year": 1660, "resistanceReported": false, "duration": 2678400, - "curveSeeds": { - "c1": -11.864668310546625, - "c2": 3.9840415516629246, - "c3": -1.1511178271111628, - "c4": -11.262082212644094, - "c5": 12.155251705063575, - "c6": 4.477869600358472, - "c7": -7.900146509083389 + "points": { + "c1": -11.762972251508012, + "c2": 1.0732144020515495, + "c3": -8.185061802936183, + "c4": 7.084265378228858, + "c5": 5.2982739185996, + "c6": 5.345300699304362, + "c7": 1.2013161632511586 }, - "vertexSeeds": { - "c1": 6.238667885385534, - "c2": 5.756389556219269, - "c3": 6.250073281238615, - "c4": 5.655212104814794, - "c5": 5.8273802425145815, - "c6": 6.5327936823397526, - "c7": 6.049340654090952 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [58, 15, 49] }, @@ -14478,23 +14478,23 @@ "year": 1661, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 13.322172267007907, - "c2": 29.07379267755121, - "c3": -9.639534890448111, - "c4": 1.4058811559527626, - "c5": 47.098439235289504, - "c6": -8.517559617862211, - "c7": -27.73862705865955 + "points": { + "c1": 2.2146691348619214, + "c2": -3.678948876046647, + "c3": 46.113552177364795, + "c4": -33.384928427552424, + "c5": 41.02347411488664, + "c6": -13.113119931660115, + "c7": -43.72428343683385 }, - "vertexSeeds": { - "c1": 5.362991601339931, - "c2": 5.875582137976416, - "c3": 5.349782236829664, - "c4": 5.5659319248363435, - "c5": 6.191799196196072, - "c6": 6.418415077092013, - "c7": 6.192521421361893 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916785, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958389, + "c6": 3.1992602866389284, + "c7": 1.599630143319468 }, "rgb": [86, 146, 138] }, @@ -14505,23 +14505,23 @@ "year": 1660, "resistanceReported": false, "duration": 1382400, - "curveSeeds": { - "c1": -4.977824971424917, - "c2": -10.184283291150765, - "c3": 1.1241088012322482, - "c4": -2.7722961942364357, - "c5": 0.5681643713101465, - "c6": 2.4969957723007052, - "c7": -10.086090180105138 + "points": { + "c1": -3.8432155986542433, + "c2": -2.8963744793555133, + "c3": -10.85545334589509, + "c4": -4.804420886109211, + "c5": 11.303656416433252, + "c6": -2.476443640371974, + "c7": -5.621704194782523 }, - "vertexSeeds": { - "c1": 6.260693023250789, - "c2": 6.375352665128611, - "c3": 6.325187667590578, - "c4": 6.178288798614095, - "c5": 5.985516054097238, - "c6": 6.470179509792888, - "c7": 6.374575690374528 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [58, 15, 49] }, @@ -14532,23 +14532,23 @@ "year": 1661, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -15.892330341050574, - "c2": 13.573558838636274, - "c3": -4.697112333863387, - "c4": -40.158699210981226, - "c5": 45.96453591304845, - "c6": -14.032051959854485, - "c7": 16.558312220364613 + "points": { + "c1": -45.55835895434155, + "c2": -4.824467805649157, + "c3": -46.511452239422795, + "c4": 39.3144236434394, + "c5": 48.69490846045932, + "c6": -16.908693131469985, + "c7": -35.390978285042316 }, - "vertexSeeds": { - "c1": 5.129551695294629, - "c2": 5.0008467211558, - "c3": 5.105757551211594, - "c4": 4.408944026587173, - "c5": 4.768455858259897, - "c6": 3.8212919829740817, - "c7": 3.9874749483725824 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.310679611650487, + "c4": 5.048543689320387, + "c5": 3.7864077669902905, + "c6": 2.5242718446601935, + "c7": 1.2621359223300967 }, "rgb": [222, 0, 59] }, @@ -14559,23 +14559,23 @@ "year": 1661, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 28.642746972280243, - "c2": 29.109868242783953, - "c3": -7.382248368829757, - "c4": 0.3680958127550866, - "c5": 23.841287965766803, - "c6": 34.77783056297111, - "c7": 42.011217506323995 + "points": { + "c1": 34.71357987821566, + "c2": -0.7572922300531602, + "c3": 12.421788239188324, + "c4": 28.31223250442421, + "c5": -12.463021390714793, + "c6": -29.0674167334384, + "c7": -18.056033820903554 }, - "vertexSeeds": { - "c1": 6.259833818750605, - "c2": 6.3390840797732935, - "c3": 6.441658328522588, - "c4": 6.256391536905588, - "c5": 6.057526583864092, - "c6": 6.0367276236012914, - "c7": 6.087954803120352 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [222, 0, 59] }, @@ -14586,23 +14586,23 @@ "year": 1661, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 2.1703429964226153, - "c2": -27.40399394703933, - "c3": -18.156472060712247, - "c4": 4.134746494334234, - "c5": 0.02715016239609369, - "c6": -13.004728513576493, - "c7": 9.74940610561936 + "points": { + "c1": 16.85393820459014, + "c2": 19.866660533652645, + "c3": 28.840308456655574, + "c4": -28.86930136471492, + "c5": 1.5202977053900426, + "c6": 14.783347810947067, + "c7": -9.324388375865155 }, - "vertexSeeds": { - "c1": 5.617346253730468, - "c2": 5.333567456222471, - "c3": 5.072125165249962, - "c4": 5.350666436617622, - "c5": 5.055795230169184, - "c6": 5.137042873144779, - "c7": 5.404563350324731 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744799, + "c3": 6.749884419787333, + "c4": 5.399907535829866, + "c5": 4.049930651872399, + "c6": 2.699953767914933, + "c7": 1.3499768839574664 }, "rgb": [58, 15, 49] }, @@ -14613,23 +14613,23 @@ "year": 1661, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 23.401320801728957, - "c2": 14.517282748034873, - "c3": -12.950542960244764, - "c4": -12.450328768329019, - "c5": 12.961109040260986, - "c6": -0.8143473730343267, - "c7": -2.415760093709526 + "points": { + "c1": -12.145410417290277, + "c2": -20.60557228312297, + "c3": -6.227550473880402, + "c4": -22.717961350195985, + "c5": 9.700975954754142, + "c6": -9.400873578345966, + "c7": 0.07251107206252883 }, - "vertexSeeds": { - "c1": 4.652140756632706, - "c2": 4.335497132334666, - "c3": 4.777581843095513, - "c4": 4.809014775800546, - "c5": 4.136415023210289, - "c6": 4.263516799649096, - "c7": 4.5157515830356045 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417474, + "c3": 5.987055016181227, + "c4": 4.789644012944985, + "c5": 3.592233009708737, + "c6": 2.39482200647249, + "c7": 1.1974110032362473 }, "rgb": [86, 146, 138] }, @@ -14640,23 +14640,23 @@ "year": 1661, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": -12.30514115518936, - "c2": -15.316084727026357, - "c3": 8.19503155918947, - "c4": 7.832996264715685, - "c5": 14.627546848402648, - "c6": 3.1829417634537975, - "c7": 1.0605207639771876 + "points": { + "c1": 9.155550163525149, + "c2": 18.637282030865915, + "c3": 6.744112487215588, + "c4": -13.242171930761316, + "c5": 14.419053199482459, + "c6": -7.293221658339359, + "c7": -6.48550049527527 }, - "vertexSeeds": { - "c1": 5.889649379430429, - "c2": 6.469578370348061, - "c3": 5.913303639668523, - "c4": 6.100246170568023, - "c5": 5.059050734539104, - "c6": 5.154572091188781, - "c7": 6.43329673125729 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916785, + "c3": 7.998150716597317, + "c4": 6.398520573277857, + "c5": 4.798890429958389, + "c6": 3.1992602866389284, + "c7": 1.599630143319468 }, "rgb": [222, 0, 59] }, @@ -14667,23 +14667,23 @@ "year": 1661, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": -29.016364137518647, - "c2": -38.854000053621114, - "c3": -7.641857687232289, - "c4": -25.005277410403675, - "c5": 8.273517369838522, - "c6": -20.36230120213351, - "c7": 34.66337135993051 + "points": { + "c1": -45.22203680009813, + "c2": 12.089375661609232, + "c3": -6.839534200056846, + "c4": -11.482247946934727, + "c5": -10.889282514005103, + "c6": -42.74230317552166, + "c7": 7.037792666607849 }, - "vertexSeeds": { - "c1": 3.9205196919844933, - "c2": 3.6335427850551123, - "c3": 3.674332297162461, - "c4": 3.6900904654401874, - "c5": 3.55474731415777, - "c6": 3.9451573058074283, - "c7": 4.0065621420338235 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406381, + "c3": 4.831252889505318, + "c4": 3.8650023116042562, + "c5": 2.898751733703194, + "c6": 1.9325011558021248, + "c7": 0.9662505779010624 }, "rgb": [77, 76, 132] }, @@ -14694,23 +14694,23 @@ "year": 1661, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": -3.7574827895948957, - "c2": 9.57965476368582, - "c3": -8.037753490845844, - "c4": 7.443935451989066, - "c5": -17.32669183234235, - "c6": 1.0529149503746567, - "c7": -3.5584204628607914 + "points": { + "c1": -7.450081009426087, + "c2": 9.408232684860891, + "c3": 13.52276439096179, + "c4": 3.693035004458288, + "c5": 13.407105859740497, + "c6": 14.50751238212014, + "c7": 22.35226888066485 }, - "vertexSeeds": { - "c1": 5.697843825139151, - "c2": 6.53552906544993, - "c3": 5.903254664529852, - "c4": 5.798921495292843, - "c5": 6.401953358443813, - "c6": 5.896018796014852, - "c7": 6.054746634058499 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [58, 15, 49] }, @@ -14721,23 +14721,23 @@ "year": 1662, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 31.162194517397822, - "c2": -4.2745202615224756, - "c3": 24.82429579057208, - "c4": 3.6845634395250713, - "c5": 14.916385426686425, - "c6": 9.524259668319104, - "c7": -14.266695360424112 + "points": { + "c1": 22.086498373484055, + "c2": -19.572857182176925, + "c3": 21.303273308209512, + "c4": 30.70327824749552, + "c5": -21.862084380371712, + "c6": 29.677834451071973, + "c7": 7.842557354298876 }, - "vertexSeeds": { - "c1": 6.691043595516785, - "c2": 5.430453283169405, - "c3": 6.374931653589461, - "c4": 6.435682270531492, - "c5": 5.893201274148274, - "c6": 5.848092951786367, - "c7": 6.197212504376598 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117893, + "c3": 8.113730929264905, + "c4": 6.490984743411926, + "c5": 4.868238557558946, + "c6": 3.2454923717059585, + "c7": 1.6227461858529793 }, "rgb": [222, 0, 59] }, @@ -14748,23 +14748,23 @@ "year": 1663, "resistanceReported": false, "duration": 53308800, - "curveSeeds": { - "c1": -24.371448102420217, - "c2": 51.19971309038651, - "c3": 48.08943214626265, - "c4": 52.82246883871058, - "c5": -23.106525262720773, - "c6": 41.717069932460404, - "c7": -64.61427700965206 + "points": { + "c1": -40.04861916084335, + "c2": 17.49154729358216, + "c3": -2.769974438018707, + "c4": 14.546446870136862, + "c5": -70.21591478872871, + "c6": 58.59171162292361, + "c7": -11.619582580847975 }, - "vertexSeeds": { - "c1": 1.7525831157475535, - "c2": 1.680117206771281, - "c3": 1.9103288390376991, - "c4": 1.7475212527881374, - "c5": 1.7068007769006088, - "c6": 1.7407720779767484, - "c7": 1.6561175307301406 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.801664355062414, + "c3": 2.334720295885345, + "c4": 1.8677762367082769, + "c5": 1.4008321775312056, + "c6": 0.933888118354137, + "c7": 0.4669440591770685 }, "rgb": [77, 76, 132] }, @@ -14775,23 +14775,23 @@ "year": 1663, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 38.20318209798553, - "c2": 40.24890153225218, - "c3": -21.334218377223316, - "c4": 38.72651545542635, - "c5": -7.296789264819054, - "c6": 8.80812109989784, - "c7": -28.85207475954546 + "points": { + "c1": -37.83915575787805, + "c2": 12.358510349944282, + "c3": -14.426139558406206, + "c4": -38.684343686618774, + "c5": 18.344864525098515, + "c6": 39.368255172016205, + "c7": 36.95528491903893 }, - "vertexSeeds": { - "c1": 8.356585836284717, - "c2": 7.705864178155044, - "c3": 8.554961365062255, - "c4": 8.535668529423116, - "c5": 8.03938262689757, - "c6": 8.33291715982699, - "c7": 8.48444990476557 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [222, 0, 59] }, @@ -14802,23 +14802,23 @@ "year": 1662, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -4.1403104988154205, - "c2": 26.16194410182156, - "c3": 31.441534881108822, - "c4": 4.435354583038219, - "c5": 25.202688327891146, - "c6": -5.092846412401034, - "c7": 6.73986156416786 + "points": { + "c1": 21.401291620988907, + "c2": -5.634362657399979, + "c3": 33.31470768450525, + "c4": -5.319181763934456, + "c5": -23.927809439481035, + "c6": 4.104721912238574, + "c7": 8.519907543572067 }, - "vertexSeeds": { - "c1": 5.405891128483332, - "c2": 4.99955253361032, - "c3": 5.781133410039949, - "c4": 5.3014829265983625, - "c5": 5.7063457076577695, - "c6": 4.814344752934007, - "c7": 5.7804323624590905 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750346, + "c3": 7.3277854831252895, + "c4": 5.862228386500231, + "c5": 4.396671289875173, + "c6": 2.9311141932501155, + "c7": 1.4655570966250577 }, "rgb": [77, 76, 132] }, @@ -14829,23 +14829,23 @@ "year": 1663, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 16.15430222938189, - "c2": -23.297087405623326, - "c3": 3.5604587102905114, - "c4": 29.839566580982016, - "c5": -15.416900409579906, - "c6": -30.04679129709473, - "c7": -8.110581383481836 + "points": { + "c1": 25.2388848225649, + "c2": 1.449656843420243, + "c3": -18.854443762912638, + "c4": -1.0826660785833155, + "c5": 36.47158100100632, + "c6": -21.821655924936927, + "c7": -0.8259639813379778 }, - "vertexSeeds": { - "c1": 5.391943259522737, - "c2": 5.562000069945961, - "c3": 5.412781334807192, - "c4": 5.527014234286893, - "c5": 5.755447203730031, - "c6": 5.241024196551204, - "c7": 5.656704325956775 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055483, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022186, + "c7": 1.386962552011093 }, "rgb": [222, 0, 59] }, @@ -14856,23 +14856,23 @@ "year": 1663, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": -43.97600832143769, - "c2": -20.48299102392283, - "c3": -22.80417365235437, - "c4": 30.144586381620556, - "c5": 17.96667461549275, - "c6": 34.65893770155148, - "c7": -26.290371847931496 + "points": { + "c1": 35.94405039026309, + "c2": -1.9096467621743685, + "c3": -35.003911863583085, + "c4": 39.340608098140734, + "c5": -34.06347592873699, + "c6": -9.328393290792086, + "c7": 12.747667542103343 }, - "vertexSeeds": { - "c1": 2.7034825392427475, - "c2": 3.041627324982237, - "c3": 2.601335904325349, - "c4": 2.869689059993949, - "c5": 2.9480371582306715, - "c6": 2.730196895997037, - "c7": 2.7759623068994803 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596394, + "c3": 3.791030975496995, + "c4": 3.0328247803975956, + "c5": 2.274618585298197, + "c6": 1.5164123901987978, + "c7": 0.7582061950993989 }, "rgb": [77, 76, 132] }, @@ -14883,23 +14883,23 @@ "year": 1663, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -2.2420506027284475, - "c2": -37.541749443310145, - "c3": -29.798587399682688, - "c4": 11.361020474024528, - "c5": -17.253481023352517, - "c6": 36.56880300248681, - "c7": -28.55326479388922 + "points": { + "c1": 29.515722259198874, + "c2": 28.238509337728125, + "c3": 19.859796549059077, + "c4": -17.74723068572894, + "c5": -36.17870869193037, + "c6": 39.03034263980661, + "c7": -40.23275995603416 }, - "vertexSeeds": { - "c1": 3.837142385234935, - "c2": 4.2459822828601155, - "c3": 3.5423370419980706, - "c4": 4.132035736632405, - "c5": 3.9511271956669143, - "c6": 3.479376622881425, - "c7": 3.7620804284091656 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009709, + "c3": 5.17799352750809, + "c4": 4.142394822006472, + "c5": 3.1067961165048543, + "c6": 2.071197411003236, + "c7": 1.035598705501618 }, "rgb": [222, 0, 59] }, @@ -14910,23 +14910,23 @@ "year": 1663, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -4.580095515613472, - "c2": 29.24120878545469, - "c3": 37.89768053628063, - "c4": 16.04741431630947, - "c5": 26.52988113966245, - "c6": 4.472544717542142, - "c7": -18.2068550364586 + "points": { + "c1": -28.080505130092103, + "c2": -13.002192807368885, + "c3": 37.835594834229994, + "c4": 8.897979164375748, + "c5": 22.694701200644722, + "c6": -37.084717083622635, + "c7": 27.290901468251064 }, - "vertexSeeds": { - "c1": 6.285037521059221, - "c2": 5.6887772440777535, - "c3": 5.946618908503094, - "c4": 5.759498885861207, - "c5": 6.534619839315861, - "c6": 6.11235848232495, - "c7": 6.2295968058779785 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [86, 146, 138] }, @@ -14937,23 +14937,23 @@ "year": 1663, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -9.549545998218203, - "c2": 32.517169753447234, - "c3": 0.9480928834705225, - "c4": -13.821219125678923, - "c5": -27.0316945851843, - "c6": 37.62643532247422, - "c7": 2.3719663283719044 + "points": { + "c1": -29.14762165340515, + "c2": 31.390557800608335, + "c3": -30.213849732709114, + "c4": 0.6491882691382713, + "c5": -32.03701671703899, + "c6": -24.19526139696062, + "c7": -25.36578856728918 }, - "vertexSeeds": { - "c1": 5.236018864069775, - "c2": 3.9640627538324456, - "c3": 5.133677799984079, - "c4": 3.823216573589494, - "c5": 4.41510717748681, - "c6": 3.7153741030038825, - "c7": 4.63173540160421 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.310679611650487, + "c4": 5.048543689320387, + "c5": 3.7864077669902905, + "c6": 2.5242718446601935, + "c7": 1.2621359223300967 }, "rgb": [86, 146, 138] }, @@ -14964,23 +14964,23 @@ "year": 1663, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": 1.4175253641751446, - "c2": -8.041066710852775, - "c3": -6.694971011669624, - "c4": -4.507387733220318, - "c5": 12.740085372175251, - "c6": 6.181964929960703, - "c7": 6.13223149502879 + "points": { + "c1": -11.185211335526347, + "c2": 10.381782016327573, + "c3": 2.7029881748910647, + "c4": 3.1205366883839396, + "c5": -14.59053441134602, + "c6": 4.749451226696689, + "c7": 9.04067521596383 }, - "vertexSeeds": { - "c1": 6.309743010041898, - "c2": 6.327604888706733, - "c3": 6.400577647912677, - "c4": 6.1687211114723315, - "c5": 6.012377547947145, - "c6": 6.1972219731268146, - "c7": 6.238725600232488 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -14991,23 +14991,23 @@ "year": 1664, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": -23.506236224862313, - "c2": 50.23185238483963, - "c3": 55.31286379724939, - "c4": 5.363628352425955, - "c5": -28.795780251399655, - "c6": -43.74127357191966, - "c7": 44.45507833197088 + "points": { + "c1": -51.98277121652332, + "c2": -20.631718459529232, + "c3": 14.033768033275123, + "c4": -5.017252918918345, + "c5": -38.42838480502738, + "c6": 15.661533113362083, + "c7": -56.58070441880021 }, - "vertexSeeds": { - "c1": 6.651210633680046, - "c2": 6.20375147300515, - "c3": 7.210319699975916, - "c4": 7.04554351814226, - "c5": 6.716131626305974, - "c6": 7.065796036094794, - "c7": 6.720956640606912 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002773, + "c3": 8.622283865002307, + "c4": 6.897827092001844, + "c5": 5.173370319001379, + "c6": 3.4489135460009153, + "c7": 1.7244567730004512 }, "rgb": [77, 76, 132] }, @@ -15018,23 +15018,23 @@ "year": 1663, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 32.75413012620403, - "c2": 4.945015612287499, - "c3": 15.199180911672983, - "c4": 20.591656787124407, - "c5": 25.579501594364295, - "c6": -29.839973997041202, - "c7": 31.226495283624672 + "points": { + "c1": -12.441408051851468, + "c2": 7.699686726298438, + "c3": 25.689469020339452, + "c4": 8.01625137273303, + "c5": -18.70018901852902, + "c6": -11.32934727007208, + "c7": 28.615015511226147 }, - "vertexSeeds": { - "c1": 3.3410434289518887, - "c2": 6.9770131148981696, - "c3": 5.840059181678873, - "c4": 6.237553592447114, - "c5": 4.909567754450916, - "c6": 4.745743854667708, - "c7": 3.0842167908982314 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002773, + "c3": 8.622283865002313, + "c4": 6.897827092001849, + "c5": 5.173370319001386, + "c6": 3.4489135460009246, + "c7": 1.7244567730004623 }, "rgb": [222, 0, 59] }, @@ -15045,23 +15045,23 @@ "year": 1664, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -32.76502203352058, - "c2": -8.654566839712963, - "c3": 39.742453414763126, - "c4": 32.63803856271921, - "c5": 12.843085242846506, - "c6": -11.427092381169416, - "c7": 12.433033407266073 + "points": { + "c1": 31.960226905396546, + "c2": 14.837630733450155, + "c3": -19.232768970933222, + "c4": 46.46784054637114, + "c5": 3.5022606344927283, + "c6": -46.25993739954331, + "c7": -32.42107294517597 }, - "vertexSeeds": { - "c1": 7.931968726439188, - "c2": 8.359955020275873, - "c3": 8.917626771669527, - "c4": 7.802449532591047, - "c5": 7.394609841614357, - "c6": 8.193015229201169, - "c7": 7.315165054598502 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226078, + "c3": 11.049468331021732, + "c4": 8.839574664817382, + "c5": 6.629680998613039, + "c6": 4.419787332408695, + "c7": 2.2098936662043434 }, "rgb": [238, 201, 159] }, @@ -15072,23 +15072,23 @@ "year": 1663, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -29.348128397743192, - "c2": -3.692743910639777, - "c3": 26.657980581323294, - "c4": -25.871306271498458, - "c5": -9.80500061746855, - "c6": -28.243047672582694, - "c7": -32.72459369522292 + "points": { + "c1": 3.390636044352263, + "c2": -19.895199562474733, + "c3": -5.068505917728221, + "c4": -0.19022007177856182, + "c5": 19.87783044895493, + "c6": -2.036819531902516, + "c7": -31.000957421133283 }, - "vertexSeeds": { - "c1": 2.843232554429627, - "c2": 2.8822564020927257, - "c3": 2.4572705436502957, - "c4": 2.8928590889223917, - "c5": 3.0724873849602843, - "c6": 3.063242391652248, - "c7": 2.727233758640034 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033286, + "c4": 3.3287101248266295, + "c5": 2.496532593619973, + "c6": 1.664355062413316, + "c7": 0.8321775312066566 }, "rgb": [77, 76, 132] }, @@ -15099,23 +15099,23 @@ "year": 1664, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 14.332901595238951, - "c2": -19.567070131227485, - "c3": -33.351040824506235, - "c4": 34.45812362756901, - "c5": -18.553663338688928, - "c6": 29.3864494271144, - "c7": 8.737965646310407 + "points": { + "c1": -4.675669080135464, + "c2": 28.774041177170034, + "c3": -44.355461864810664, + "c4": -46.16046649182853, + "c5": 11.978196020818125, + "c6": -23.58226329154805, + "c7": 40.20611189994568 }, - "vertexSeeds": { - "c1": 3.6628400623127892, - "c2": 3.059446819014229, - "c3": 3.0522848440357473, - "c4": 4.01250808305861, - "c5": 3.7919398136466613, - "c6": 3.446279599637073, - "c7": 3.2137257577036147 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969486, + "c3": 5.1548774849745715, + "c4": 4.1239019879796555, + "c5": 3.092926490984743, + "c6": 2.0619509939898277, + "c7": 1.0309754969949125 }, "rgb": [238, 201, 159] }, @@ -15126,23 +15126,23 @@ "year": 1664, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": -33.76949668632541, - "c2": 46.94651549055723, - "c3": -6.384436641730709, - "c4": -28.475894062549177, - "c5": -45.68805077124926, - "c6": 3.8546288855128807, - "c7": 23.300067265718724 + "points": { + "c1": 35.89661201988861, + "c2": 39.13936030312371, + "c3": 46.40752731412228, + "c4": 19.511537900188188, + "c5": -1.4483343511598008, + "c6": 33.30093653686711, + "c7": 6.447021140967564 }, - "vertexSeeds": { - "c1": 5.572215984063101, - "c2": 5.484545800421979, - "c3": 5.480030398607135, - "c4": 5.502938856988637, - "c5": 5.757884205648061, - "c6": 5.727295421858418, - "c7": 5.531076496454564 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147029, + "c3": 6.9810448451225104, + "c4": 5.58483587609802, + "c5": 4.188626907073501, + "c6": 2.79241793804901, + "c7": 1.396208969024519 }, "rgb": [86, 146, 138] }, @@ -15153,23 +15153,23 @@ "year": 1664, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": -18.132958580109282, - "c2": -10.217568837305983, - "c3": -39.60850547195991, - "c4": 29.877486773329025, - "c5": 34.916749829044974, - "c6": -45.1164117095554, - "c7": -47.09325498382484 + "points": { + "c1": 3.8361864881136825, + "c2": 26.728583016812763, + "c3": -37.108203268234476, + "c4": -24.896544500550707, + "c5": 48.328730964954374, + "c6": -18.65397494421198, + "c7": -21.1526195090827 }, - "vertexSeeds": { - "c1": 5.42262692310073, - "c2": 5.7520061572341925, - "c3": 5.6474281273406115, - "c4": 6.512546212238387, - "c5": 5.897359926758461, - "c6": 6.240371767867098, - "c7": 6.031333671162746 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916783, + "c3": 7.998150716597321, + "c4": 6.3985205732778585, + "c5": 4.798890429958396, + "c6": 3.1992602866389332, + "c7": 1.599630143319471 }, "rgb": [86, 146, 138] }, @@ -15180,23 +15180,23 @@ "year": 1663, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -25.66901077325341, - "c2": -32.04097529493811, - "c3": 2.667076258405473, - "c4": 19.989081516597068, - "c5": 19.52093089900775, - "c6": 8.816911877545763, - "c7": 22.392202308921412 + "points": { + "c1": -28.26711028968358, + "c2": -33.37324633033699, + "c3": -16.90666730502348, + "c4": -36.075489320356695, + "c5": -7.89424303692401, + "c6": 18.2191166580457, + "c7": 11.952092778185943 }, - "vertexSeeds": { - "c1": 4.5263085507528915, - "c2": 4.844051024389278, - "c3": 4.092211835904483, - "c4": 4.802919044943557, - "c5": 4.898773995647243, - "c6": 4.325896383221411, - "c7": 4.839785719145072 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181228, + "c4": 4.789644012944984, + "c5": 3.5922330097087345, + "c6": 2.39482200647249, + "c7": 1.197411003236245 }, "rgb": [222, 0, 59] }, @@ -15207,23 +15207,23 @@ "year": 1663, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 7.3946594314735705, - "c2": -21.254645692821192, - "c3": 34.291680368797216, - "c4": 28.67603109890061, - "c5": -32.364919211527486, - "c6": -8.630642947201519, - "c7": 15.902704196330006 + "points": { + "c1": 13.015894806051953, + "c2": -15.890422828902594, + "c3": 7.1291239968598745, + "c4": 33.054335646352826, + "c5": 5.359168540075579, + "c6": -11.412878423844074, + "c7": 34.35085164877526 }, - "vertexSeeds": { - "c1": 3.1221249735343277, - "c2": 3.740591645865472, - "c3": 4.18854125551829, - "c4": 3.7765793048338088, - "c5": 4.161938946434823, - "c6": 4.233705312634868, - "c7": 4.188616506502123 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210819, + "c3": 5.293573740175681, + "c4": 4.234858992140546, + "c5": 3.176144244105408, + "c6": 2.117429496070273, + "c7": 1.0587147480351382 }, "rgb": [77, 76, 132] }, @@ -15234,23 +15234,23 @@ "year": 1663, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 2.2082909911270363, - "c2": -29.211600615005132, - "c3": 34.35517268238229, - "c4": 10.140585553744778, - "c5": 7.368426439123006, - "c6": 35.49414818139097, - "c7": 3.1514437073848143 + "points": { + "c1": -13.589476247267065, + "c2": 22.189906533590396, + "c3": 27.306246241907928, + "c4": -2.296764624985542, + "c5": -9.372742807378849, + "c6": 14.68303919684886, + "c7": 20.717471988713022 }, - "vertexSeeds": { - "c1": 0.1467333548094692, - "c2": 0.1441468377810568, - "c3": 0.13650386570972922, - "c4": 0.14162916706734802, - "c5": 0.1373815583661574, - "c6": 0.1373887547480275, - "c7": 0.15443009481083964 + "offsets": { + "c1": 0.2912621359223301, + "c2": 0.24965325936199728, + "c3": 0.20804438280166448, + "c4": 0.16643550624133116, + "c5": 0.12482662968099839, + "c6": 0.08321775312066558, + "c7": 0.04160887656033279 }, "rgb": [77, 76, 132] }, @@ -15261,23 +15261,23 @@ "year": 1663, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -4.3494695440946956, - "c2": 5.452161136976187, - "c3": -2.018227541272587, - "c4": -16.595873821060128, - "c5": -18.22371154292123, - "c6": 4.7869757330582665, - "c7": -18.360036002499 + "points": { + "c1": 12.912077051033869, + "c2": -23.019067197508214, + "c3": 3.395050047278101, + "c4": 0.03300902995378863, + "c5": -8.56321718526732, + "c6": 20.23605815539461, + "c7": 23.90674287903957 }, - "vertexSeeds": { - "c1": 3.7642988824472567, - "c2": 3.7691019831288477, - "c3": 4.011075243842219, - "c4": 4.917221679281138, - "c5": 4.017251365783369, - "c6": 3.7702605470856967, - "c7": 4.0079255716536055 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.310679611650487, + "c4": 5.048543689320387, + "c5": 3.7864077669902905, + "c6": 2.5242718446601935, + "c7": 1.2621359223300967 }, "rgb": [58, 15, 49] }, @@ -15288,23 +15288,23 @@ "year": 1664, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -0.0954890495162104, - "c2": -12.847261184071417, - "c3": 20.693908227343442, - "c4": -7.089347707397199, - "c5": 11.98394616328001, - "c6": 9.537116640684125, - "c7": 20.71437179505989 + "points": { + "c1": -31.172855731159977, + "c2": 30.787599788585567, + "c3": 23.20274530045623, + "c4": 20.05820848663192, + "c5": -35.823340624130374, + "c6": -0.29210318921947476, + "c7": 32.7274414676627 }, - "vertexSeeds": { - "c1": 3.563477120736852, - "c2": 4.4996011461226075, - "c3": 3.8739284895561736, - "c4": 3.8528560059572317, - "c5": 4.36928271061735, - "c6": 4.2770321929405455, - "c7": 4.5965008069642215 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [86, 146, 138] }, @@ -15315,23 +15315,23 @@ "year": 1663, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 11.1018857117405, - "c2": 1.364402305073586, - "c3": 14.958876620717497, - "c4": -1.2146975815782532, - "c5": 5.859711000311634, - "c6": -1.1469883206969271, - "c7": 8.682498712794263 + "points": { + "c1": -21.342081658150914, + "c2": -13.55482339225206, + "c3": 14.136811082434079, + "c4": -20.41090285287406, + "c5": 0.17255316952844524, + "c6": 1.13127161747121, + "c7": -18.515393707309784 }, - "vertexSeeds": { - "c1": 9.344607172567812, - "c2": 8.379418924253985, - "c3": 8.676154216260368, - "c4": 8.227453166259174, - "c5": 8.19586149915164, - "c6": 8.121362851891258, - "c7": 9.841950800278095 + "offsets": { + "c1": 17.184466019417478, + "c2": 14.729542302357846, + "c3": 12.274618585298203, + "c4": 9.81969486823856, + "c5": 7.364771151178918, + "c6": 4.909847434119277, + "c7": 2.454923717059642 }, "rgb": [77, 76, 132] }, @@ -15342,23 +15342,23 @@ "year": 1663, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 18.879467954345944, - "c2": -8.875783126362666, - "c3": -16.87379348883762, - "c4": 25.909213615191174, - "c5": 8.413405773706945, - "c6": -8.272365222337843, - "c7": 25.225827349958163 + "points": { + "c1": 17.34598797329605, + "c2": -3.1258112714855244, + "c3": 10.421460075097404, + "c4": -5.286085507015773, + "c5": 15.693386794378743, + "c6": -16.89438486811487, + "c7": -22.77910017653763 }, - "vertexSeeds": { - "c1": 6.50614441981061, - "c2": 6.408629315761052, - "c3": 6.529641330617082, - "c4": 6.235806556237553, - "c5": 6.011554003565012, - "c6": 6.476128906379139, - "c7": 5.730982129433762 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -15369,23 +15369,23 @@ "year": 1663, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -0.16303548765474218, - "c2": 23.04579746178573, - "c3": -22.09374528609305, - "c4": 27.646950955485366, - "c5": -5.921022092770848, - "c6": 20.13479602316547, - "c7": 13.418649190389509 + "points": { + "c1": 2.020854232657271, + "c2": -29.217789459350314, + "c3": -6.127701785964586, + "c4": 0.4786420780002274, + "c5": -20.241477738035496, + "c6": -21.14312630748835, + "c7": 3.628540392503517 }, - "vertexSeeds": { - "c1": 6.061761570246169, - "c2": 5.791478099213319, - "c3": 6.113294543928466, - "c4": 6.244354563821194, - "c5": 6.0717371890050105, - "c6": 6.236434472755262, - "c7": 6.476349578781036 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -15396,23 +15396,23 @@ "year": 1664, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 6.979467040638397, - "c2": 9.346924668035982, - "c3": -23.6581653351776, - "c4": -14.722245116311601, - "c5": 14.011662665662818, - "c6": 30.063703650144085, - "c7": -4.277565570730296 + "points": { + "c1": -31.63837270985046, + "c2": 10.894751763575663, + "c3": -30.563655071509626, + "c4": 3.726528016865778, + "c5": -26.74700894815368, + "c6": 31.797701188878534, + "c7": 13.31789325075816 }, - "vertexSeeds": { - "c1": 4.665609569602942, - "c2": 4.086787925234093, - "c3": 3.2630469793144172, - "c4": 4.026518897998232, - "c5": 3.5140387919865637, - "c6": 3.4809402000571072, - "c7": 3.8633773668556093 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733705, + "c3": 5.594082293111418, + "c4": 4.475265834489136, + "c5": 3.3564493758668505, + "c6": 2.237632917244568, + "c7": 1.1188164586222855 }, "rgb": [77, 76, 132] }, @@ -15423,23 +15423,23 @@ "year": 1664, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -25.457120907039453, - "c2": 10.250076278742707, - "c3": 8.912897577416128, - "c4": -24.557481378065614, - "c5": 4.300951664117395, - "c6": 9.860904843252957, - "c7": -29.607623955195123 + "points": { + "c1": 19.77579983418211, + "c2": 23.78264204264424, + "c3": -21.241514227275232, + "c4": 10.855128349955663, + "c5": 2.506794510368046, + "c6": 26.73378038899724, + "c7": -9.272263993133482 }, - "vertexSeeds": { - "c1": 4.319294270242624, - "c2": 3.332274468642069, - "c3": 4.414891285497602, - "c4": 4.187316939159134, - "c5": 4.483380391014094, - "c6": 3.8851321895962783, - "c7": 3.4533633333960476 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [238, 201, 159] }, @@ -15450,23 +15450,23 @@ "year": 1664, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 19.359120635912465, - "c2": -9.031043266194732, - "c3": 18.634715507005712, - "c4": 10.444706851452086, - "c5": 11.922161156798676, - "c6": -12.09207497161444, - "c7": 8.618103548403159 + "points": { + "c1": -9.057857425767477, + "c2": 22.297709457623334, + "c3": 16.71827328287847, + "c4": -17.949044868586917, + "c5": -22.302864116353227, + "c6": 6.248684366348229, + "c7": 13.976173494197411 }, - "vertexSeeds": { - "c1": 3.3337332461591593, - "c2": 3.654669155744867, - "c3": 3.49493080862098, - "c4": 3.173071527088328, - "c5": 3.57590295631134, - "c6": 3.9007412295395643, - "c7": 3.904776542871819 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406381, + "c3": 4.8312528895053175, + "c4": 3.865002311604252, + "c5": 2.8987517337031887, + "c6": 1.932501155802126, + "c7": 0.966250577901063 }, "rgb": [86, 146, 138] }, @@ -15477,23 +15477,23 @@ "year": 1664, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 18.93159673654175, - "c2": -30.21069628186341, - "c3": 8.007752958774653, - "c4": 2.7456912234457747, - "c5": 14.54823995930878, - "c6": -31.619853647011038, - "c7": 5.687535764061252 + "points": { + "c1": 14.769542887301185, + "c2": -3.1480818436861497, + "c3": 14.702236482650115, + "c4": 24.572778269320857, + "c5": -26.277228802154205, + "c6": -9.608917423414411, + "c7": -11.689397221844139 }, - "vertexSeeds": { - "c1": 4.861329351997869, - "c2": 5.49301376044522, - "c3": 4.883857023979482, - "c4": 5.662741556738115, - "c5": 4.650119554981231, - "c6": 5.476176110938109, - "c7": 4.922416015978931 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.7961165048543695, + "c4": 5.436893203883493, + "c5": 4.077669902912623, + "c6": 2.7184466019417464, + "c7": 1.3592233009708732 }, "rgb": [77, 76, 132] }, @@ -15504,23 +15504,23 @@ "year": 1664, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -3.1267547058437266, - "c2": 25.700989916673556, - "c3": 0.7863615036301397, - "c4": -15.808423274449202, - "c5": -2.9099946945980797, - "c6": -25.937722121766875, - "c7": 16.957239992288244 + "points": { + "c1": -1.1919092106347513, + "c2": -29.247778076440717, + "c3": -11.672438433774659, + "c4": -1.5910306305145703, + "c5": 7.220877191668251, + "c6": -8.938965506660178, + "c7": 11.80160718270784 }, - "vertexSeeds": { - "c1": 5.343177988118691, - "c2": 3.9323787108068173, - "c3": 4.197352678949002, - "c4": 4.167779352084094, - "c5": 4.3760672055534044, - "c6": 4.230097988630082, - "c7": 5.102674002985087 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385114, + "c4": 5.17799352750809, + "c5": 3.883495145631068, + "c6": 2.588996763754045, + "c7": 1.2944983818770226 }, "rgb": [58, 15, 49] }, @@ -15531,23 +15531,23 @@ "year": 1664, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -13.918600816194871, - "c2": -34.20032935437134, - "c3": 9.815879667383115, - "c4": -19.180604440898534, - "c5": 5.475859021153596, - "c6": -14.961033293736573, - "c7": -21.454662758183343 + "points": { + "c1": -33.44429074409859, + "c2": -3.763025294481075, + "c3": -29.687254476445833, + "c4": -16.578063587863994, + "c5": 28.727662304330394, + "c6": -8.296293164809619, + "c7": 17.75674250739783 }, - "vertexSeeds": { - "c1": 8.342806249459898, - "c2": 8.129235828193847, - "c3": 9.016389647894691, - "c4": 8.79671800932621, - "c5": 8.13449310397008, - "c6": 7.964581536727233, - "c7": 8.519399348876561 + "offsets": { + "c1": 15.242718446601941, + "c2": 13.06518723994452, + "c3": 10.887656033287097, + "c4": 8.710124826629675, + "c5": 6.532593619972253, + "c6": 4.355062413314831, + "c7": 2.177531206657409 }, "rgb": [238, 201, 159] }, @@ -15558,23 +15558,23 @@ "year": 1664, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 26.622129411160703, - "c2": -9.943518534817198, - "c3": -13.997294137683191, - "c4": 19.815813960274138, - "c5": -15.638818162520161, - "c6": 1.4161468392190528, - "c7": 26.71885493393918 + "points": { + "c1": -11.414396175227328, + "c2": 8.371727717384989, + "c3": 20.746826072268252, + "c4": 2.408928056661871, + "c5": 10.227338134821654, + "c6": 28.933274538948577, + "c7": 16.252469917289165 }, - "vertexSeeds": { - "c1": 3.7270656325005076, - "c2": 4.130245821779999, - "c3": 3.9955628502435, - "c4": 4.871875637879712, - "c5": 3.4881557263892993, - "c6": 4.162651105433871, - "c7": 3.5134174509078817 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.1012482662968095, + "c3": 5.917706888580676, + "c4": 4.734165510864537, + "c5": 3.5506241331484065, + "c6": 2.3670827554322686, + "c7": 1.1835413777161343 }, "rgb": [77, 76, 132] }, @@ -15585,23 +15585,23 @@ "year": 1664, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -2.9726849176689853, - "c2": 15.116007151737499, - "c3": 19.26224067589378, - "c4": -20.74529978336791, - "c5": -20.520001923173613, - "c6": -16.000476284559774, - "c7": 17.970550463735336 + "points": { + "c1": -4.761932881857078, + "c2": -37.44141543139745, + "c3": 35.516049526349235, + "c4": -27.530390075602757, + "c5": 35.361833472931224, + "c6": 5.427171160968292, + "c7": -36.16280609986207 }, - "vertexSeeds": { - "c1": 8.801974827104967, - "c2": 8.130667933700305, - "c3": 8.69955983216492, - "c4": 8.35099541930021, - "c5": 8.13304402719639, - "c6": 8.37890303131888, - "c7": 7.593364196846357 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [86, 146, 138] }, @@ -15612,23 +15612,23 @@ "year": 1664, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -21.853429149357165, - "c2": 13.199450154580536, - "c3": -1.0781672005395286, - "c4": -20.641427075769805, - "c5": 0.44800978328997587, - "c6": -12.7961097552628, - "c7": -12.779632315679942 + "points": { + "c1": -18.060953140796997, + "c2": 1.5052669023231182, + "c3": -15.676493613019066, + "c4": 8.939262803215204, + "c5": 11.40838005110307, + "c6": 13.161639978145597, + "c7": 21.18952534205491 }, - "vertexSeeds": { - "c1": 4.2379181938082, - "c2": 5.20885560277455, - "c3": 4.052729971693747, - "c4": 4.860445715313649, - "c5": 3.904989945649031, - "c6": 5.345498118967204, - "c7": 4.460617403356689 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181695, + "c3": 6.426259824318076, + "c4": 5.141007859454463, + "c5": 3.8557558945908474, + "c6": 2.5705039297272316, + "c7": 1.2852519648636158 }, "rgb": [58, 15, 49] }, @@ -15639,23 +15639,23 @@ "year": 1664, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -7.515690063408783, - "c2": -18.547913216580945, - "c3": -16.42699122762066, - "c4": 5.934767806698716, - "c5": 12.499204611593086, - "c6": -11.73183646500559, - "c7": 11.111017956803721 + "points": { + "c1": -15.42797557242079, + "c2": 23.17866238042332, + "c3": -20.267028039288892, + "c4": -24.20738371826743, + "c5": 25.44989670644619, + "c6": 11.678683248729264, + "c7": 13.00414328769191 }, - "vertexSeeds": { - "c1": 5.8490225893113506, - "c2": 6.072851431606157, - "c3": 6.221345591306886, - "c4": 5.6602047444374834, - "c5": 6.050607805498505, - "c6": 5.81585573380065, - "c7": 5.633756033946735 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192786, + "c3": 7.582061950993985, + "c4": 6.0656495607952, + "c5": 4.5492371705964, + "c6": 3.0328247803976, + "c7": 1.5164123901988 }, "rgb": [238, 201, 159] }, @@ -15666,23 +15666,23 @@ "year": 1664, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -6.945207963628459, - "c2": 19.36214871309795, - "c3": 16.005861573281763, - "c4": 15.5681232081837, - "c5": -12.632372723965595, - "c6": -15.01968353921981, - "c7": -16.316378372772405 + "points": { + "c1": 1.0740622020586272, + "c2": 1.5848590313121704, + "c3": -11.580779267116071, + "c4": 16.763531812729653, + "c5": 18.37840298207729, + "c6": -20.769699671978877, + "c7": -21.51540903975247 }, - "vertexSeeds": { - "c1": 3.9678037089119695, - "c2": 5.149340933353852, - "c3": 3.668686910406316, - "c4": 3.9392802255214843, - "c5": 3.7029406210030475, - "c6": 4.326950709582258, - "c7": 4.547954631489427 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739251, + "c3": 6.171983356449377, + "c4": 4.937586685159501, + "c5": 3.7031900138696257, + "c6": 2.4687933425797506, + "c7": 1.2343966712898753 }, "rgb": [77, 76, 132] }, @@ -15693,23 +15693,23 @@ "year": 1664, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": -3.529638147992504, - "c2": 20.183587558759648, - "c3": -13.271011843461363, - "c4": 22.3964086679402, - "c5": -20.75804888838733, - "c6": -19.40708103711606, - "c7": 9.94828096520287 + "points": { + "c1": -15.281966213198478, + "c2": -11.05330923683732, + "c3": 4.281139405410137, + "c4": -1.1804922861284908, + "c5": 18.21945542148312, + "c6": -13.230812383448642, + "c7": 8.460801102691974 }, - "vertexSeeds": { - "c1": 5.898139594661884, - "c2": 4.648531418749516, - "c3": 5.226119089704676, - "c4": 5.373549193828685, - "c5": 4.9230973494881995, - "c6": 6.052007510667223, - "c7": 4.376550632091635 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911232, + "c3": 7.42024965325936, + "c4": 5.936199722607491, + "c5": 4.452149791955618, + "c6": 2.9680998613037444, + "c7": 1.4840499306518706 }, "rgb": [222, 0, 59] }, @@ -15720,23 +15720,23 @@ "year": 1664, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -0.6001879769755831, - "c2": 43.98481528374283, - "c3": 17.050044854229434, - "c4": 4.662915960568931, - "c5": -24.713802651590058, - "c6": -26.577268496964756, - "c7": 38.50008168592112 + "points": { + "c1": 47.06950461418607, + "c2": -25.961630384709526, + "c3": 36.48277502899401, + "c4": -28.05112996676539, + "c5": -11.867703359923311, + "c6": 19.283977288012352, + "c7": -43.87220531543131 }, - "vertexSeeds": { - "c1": 6.364270344774137, - "c2": 6.504823718200007, - "c3": 6.299924691830451, - "c4": 6.618499213860688, - "c5": 6.535068797752324, - "c6": 6.416722543529496, - "c7": 6.45871336868539 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876574, + "c3": 7.975034674063797, + "c4": 6.380027739251051, + "c5": 4.785020804438272, + "c6": 3.1900138696255254, + "c7": 1.5950069348127784 }, "rgb": [222, 0, 59] }, @@ -15747,23 +15747,23 @@ "year": 1664, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": -2.42047104440028, - "c2": 1.2877075272963125, - "c3": -17.183472867112542, - "c4": 13.54153384740578, - "c5": -12.913270598431492, - "c6": -19.88171734274927, - "c7": 6.6928008727856145 + "points": { + "c1": 9.15338204309484, + "c2": 3.7557784862731864, + "c3": 9.082256954801284, + "c4": -14.320935201320662, + "c5": 12.184695981554754, + "c6": 20.051778308341227, + "c7": 18.323320889972386 }, - "vertexSeeds": { - "c1": 6.392487046632125, - "c2": 6.392487046632125, - "c3": 6.392487046632125, - "c4": 6.392487046632125, - "c5": 6.392487046632125, - "c6": 6.392487046632125, - "c7": 6.392487046632125 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -15774,23 +15774,23 @@ "year": 1664, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": -19.079048588541035, - "c2": 11.937751009893354, - "c3": -18.738154702609574, - "c4": -2.9181081879633375, - "c5": -12.31190050433895, - "c6": -3.807087050901025, - "c7": -17.294144987775727 + "points": { + "c1": 1.5325113840241826, + "c2": 9.431405842691078, + "c3": -11.221925669318336, + "c4": -19.25519401628613, + "c5": -11.003058472719024, + "c6": -0.6546952268056501, + "c7": 20.696583557400544 }, - "vertexSeeds": { - "c1": 4.05197315607353, - "c2": 3.938257106750071, - "c3": 3.8426256967211048, - "c4": 4.048356728370136, - "c5": 3.604867018449559, - "c6": 3.6629957118094167, - "c7": 4.149305604235505 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.9639389736477115, + "c3": 4.969949144706426, + "c4": 3.9759593157651407, + "c5": 2.9819694868238558, + "c6": 1.9879796578825704, + "c7": 0.9939898289412852 }, "rgb": [86, 146, 138] }, @@ -15801,23 +15801,23 @@ "year": 1664, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": 6.477839274719155, - "c2": 15.224870592927715, - "c3": -18.663585964343078, - "c4": -1.2579463580651655, - "c5": 8.064411852348101, - "c6": -0.36054648446635085, - "c7": 12.657047997549007 + "points": { + "c1": -2.0968831474030907, + "c2": -2.4231375787158846, + "c3": -21.76262666685112, + "c4": 5.359439747665402, + "c5": 8.480068028689036, + "c6": 12.120950586481982, + "c7": 7.700017947343429 }, - "vertexSeeds": { - "c1": 3.5640018258328037, - "c2": 4.592986595983751, - "c3": 4.113856369758581, - "c4": 4.406484751699292, - "c5": 4.39941717735287, - "c6": 3.364174569266053, - "c7": 4.003688530530921 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [238, 201, 159] }, @@ -15828,23 +15828,23 @@ "year": 1664, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -27.785834187296253, - "c2": -28.12656078594778, - "c3": -18.831188104228662, - "c4": -3.693472491430313, - "c5": 30.800724591260554, - "c6": -4.851441657402294, - "c7": -29.065731525706788 + "points": { + "c1": 5.118732275403474, + "c2": 5.174978000554219, + "c3": 15.622627776215552, + "c4": 21.711369072092516, + "c5": -6.408557653893315, + "c6": 2.1644975089185436, + "c7": 21.670802484725776 }, - "vertexSeeds": { - "c1": 6.524469967090794, - "c2": 6.046961639801552, - "c3": 6.214850853168814, - "c4": 6.473361278471158, - "c5": 5.853911433912045, - "c6": 5.914753573717775, - "c7": 6.046941008029064 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [58, 15, 49] }, @@ -15855,23 +15855,23 @@ "year": 1664, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -9.012989754834893, - "c2": -8.512720163110462, - "c3": 8.64022001825548, - "c4": -4.287776872599162, - "c5": -10.74664753118434, - "c6": 5.747874033839906, - "c7": 10.200057747950101 + "points": { + "c1": -12.992680951446596, + "c2": 1.9554565858892161, + "c3": 14.750500306223536, + "c4": -15.522904575609314, + "c5": -13.647702706375554, + "c6": 12.94291789084344, + "c7": 10.549439072766205 }, - "vertexSeeds": { - "c1": 6.645742213023286, - "c2": 6.327818587251038, - "c3": 6.988774620520731, - "c4": 6.6135650196523175, - "c5": 7.331460087812166, - "c6": 5.520113227420808, - "c7": 5.65372617303257 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008322, + "c3": 9.200184928340267, + "c4": 7.360147942672211, + "c5": 5.520110957004164, + "c6": 3.6800739713361095, + "c7": 1.8400369856680547 }, "rgb": [86, 146, 138] }, @@ -15882,23 +15882,23 @@ "year": 1665, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": 42.30286561108163, - "c2": 25.05576514250825, - "c3": 29.216269520441443, - "c4": -24.344861395253318, - "c5": -24.45698027601029, - "c6": -13.805193102471264, - "c7": 15.120063145793694 + "points": { + "c1": -36.80151228900448, + "c2": 3.998158286573343, + "c3": -28.719788753351246, + "c4": 15.139937386379842, + "c5": 45.4781772972306, + "c6": -45.74552870564943, + "c7": -1.8041676605455876 }, - "vertexSeeds": { - "c1": 5.348940829074426, - "c2": 4.664085608660487, - "c3": 5.314302593317981, - "c4": 5.214985661641412, - "c5": 4.8720314865339756, - "c6": 4.311363014239154, - "c7": 4.911994587454298 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503469, + "c3": 6.611188164586227, + "c4": 5.288950531668976, + "c5": 3.9667128987517346, + "c6": 2.644475265834492, + "c7": 1.322237632917246 }, "rgb": [77, 76, 132] }, @@ -15909,23 +15909,23 @@ "year": 1664, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": 12.354628012174313, - "c2": -1.4493662837180565, - "c3": -2.230824725773086, - "c4": 3.0657646999669907, - "c5": 13.091093833592229, - "c6": 1.8170072651513323, - "c7": 15.105213005192716 + "points": { + "c1": -14.731746193638969, + "c2": 9.36238045942521, + "c3": -7.685900775535725, + "c4": 3.8142460738888033, + "c5": 4.348961046201197, + "c6": -2.365165327349711, + "c7": -1.7876601885042547 }, - "vertexSeeds": { - "c1": 6.389127945630385, - "c2": 5.692290392849878, - "c3": 5.735638791619743, - "c4": 6.142416556056045, - "c5": 5.655031179156771, - "c6": 6.284022125936352, - "c7": 6.097502202391492 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [86, 146, 138] }, @@ -15936,23 +15936,23 @@ "year": 1664, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": 1.5395896940881926, - "c2": -0.026271148587476034, - "c3": 17.56129616153482, - "c4": -6.912906128147073, - "c5": 16.34761761693064, - "c6": 6.587530074784311, - "c7": -0.03976407083674971 + "points": { + "c1": 9.067677383841112, + "c2": -14.13575589128014, + "c3": 4.653405246707994, + "c4": 17.314845512168574, + "c5": 18.065557313049254, + "c6": -2.4762425390510145, + "c7": 7.545409249575201 }, - "vertexSeeds": { - "c1": 2.97415656578084, - "c2": 3.0038781163242456, - "c3": 3.382718330554064, - "c4": 2.778012690104853, - "c5": 3.304297170394014, - "c6": 2.7182045420172987, - "c7": 3.2832017868425187 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.2533518261673615, + "c4": 3.4026814609338873, + "c5": 2.552011095700417, + "c6": 1.7013407304669437, + "c7": 0.8506703652334734 }, "rgb": [86, 146, 138] }, @@ -15963,23 +15963,23 @@ "year": 1664, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -14.172144373185382, - "c2": -8.775519512740093, - "c3": -7.1665566308660935, - "c4": -6.375763337829504, - "c5": -12.504095873363447, - "c6": 7.848357443417068, - "c7": 14.269419609993097 + "points": { + "c1": 4.504187641387588, + "c2": 13.72396847364583, + "c3": -0.031192523888428525, + "c4": 7.690450114020891, + "c5": -17.34793876803015, + "c6": 12.724429465190592, + "c7": -1.0147234916932462 }, - "vertexSeeds": { - "c1": 3.2686855257708953, - "c2": 3.314471063804496, - "c3": 3.2329696023068544, - "c4": 3.6910602781546005, - "c5": 3.1834031591983174, - "c6": 2.9946246202286586, - "c7": 3.3963744047271 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205273, + "c3": 4.715672676837725, + "c4": 3.7725381414701817, + "c5": 2.8294036061026344, + "c6": 1.8862690707350909, + "c7": 0.9431345353675434 }, "rgb": [86, 146, 138] }, @@ -15990,23 +15990,23 @@ "year": 1664, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -4.555374929725257, - "c2": -1.4679990994051373, - "c3": -24.80584955117941, - "c4": -27.522706501036428, - "c5": -28.26995305759994, - "c6": -4.121154735326179, - "c7": -12.94456931201513 + "points": { + "c1": 16.000467825258312, + "c2": 11.38010241759006, + "c3": 22.37084558386851, + "c4": -28.81550208795222, + "c5": -15.745716143604579, + "c6": -31.93680226557072, + "c7": -25.523336014607338 }, - "vertexSeeds": { - "c1": 7.191489647388948, - "c2": 8.16044978366872, - "c3": 7.167611603508275, - "c4": 7.754782063146037, - "c5": 7.206481328634498, - "c6": 7.733434707556466, - "c7": 7.557111633979659 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933422, + "c3": 9.731853906611192, + "c4": 7.785483125288952, + "c5": 5.839112343966711, + "c6": 3.892741562644481, + "c7": 1.9463707813222404 }, "rgb": [86, 146, 138] }, @@ -16017,23 +16017,23 @@ "year": 1664, "resistanceReported": false, "duration": 1728000, - "curveSeeds": { - "c1": 5.595144348750598, - "c2": -9.264965076733583, - "c3": -4.227601271028246, - "c4": 5.59720791774394, - "c5": 6.9816555081008005, - "c6": -2.795386147754506, - "c7": 5.6964326238814 + "points": { + "c1": -9.937977589087156, + "c2": -5.850904105269262, + "c3": 10.372613898466081, + "c4": 1.9835729168639187, + "c5": 9.457968156236525, + "c6": 5.213414497046532, + "c7": -3.947073695269589 }, - "vertexSeeds": { - "c1": 7.316521298887359, - "c2": 6.250521649055322, - "c3": 6.886042299311197, - "c4": 6.284915239174268, - "c5": 5.986908519710559, - "c6": 6.76369595750697, - "c7": 7.740502808932046 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407305, + "c4": 7.397133610725838, + "c5": 5.5478502080443794, + "c6": 3.698566805362919, + "c7": 1.8492834026814595 }, "rgb": [58, 15, 49] }, @@ -16044,23 +16044,23 @@ "year": 1664, "resistanceReported": false, "duration": 86400, - "curveSeeds": { - "c1": -0.02000012664076678, - "c2": 2.880089397864701, - "c3": 4.156845643529996, - "c4": -9.077498669264777, - "c5": 5.172296732752017, - "c6": -6.517179259729491, - "c7": 2.394548505766142 + "points": { + "c1": -6.176508745376591, + "c2": 4.339211381843651, + "c3": -10.696559097298948, + "c4": -2.081360462429437, + "c5": -3.0178349477241433, + "c6": 5.759174951466981, + "c7": 2.4823106920962754 }, - "vertexSeeds": { - "c1": 7.496197993344519, - "c2": 7.716446381844795, - "c3": 7.430834608754429, - "c4": 7.411080702283445, - "c5": 6.744025405401722, - "c6": 7.582325581904394, - "c7": 7.062146593156036 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249655, + "c3": 9.338881183541375, + "c4": 7.471104946833102, + "c5": 5.603328710124828, + "c6": 3.7355524734165546, + "c7": 1.8677762367082733 }, "rgb": [222, 0, 59] }, @@ -16071,23 +16071,23 @@ "year": 1665, "resistanceReported": false, "duration": 44755200, - "curveSeeds": { - "c1": -41.337459214746346, - "c2": 1.9732676347374252, - "c3": 52.38368559813271, - "c4": -3.021412851026895, - "c5": 39.4321811135163, - "c6": 51.45607183127321, - "c7": 3.7716463463600434 + "points": { + "c1": 23.598436909197808, + "c2": 48.72303700223032, + "c3": 34.67064887022938, + "c4": -19.9785621297683, + "c5": -16.363304561601872, + "c6": -39.6423748577061, + "c7": 21.288164312904563 }, - "vertexSeeds": { - "c1": 6.255013562594097, - "c2": 5.605099011526588, - "c3": 6.214635927371059, - "c4": 5.963450907485748, - "c5": 4.640242593613117, - "c6": 6.1561788106542235, - "c7": 5.025503874642319 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.45908460471567, + "c3": 7.8825705039297285, + "c4": 6.3060564031437805, + "c5": 4.729542302357838, + "c6": 3.1530282015718902, + "c7": 1.5765141007859451 }, "rgb": [86, 146, 138] }, @@ -16098,23 +16098,23 @@ "year": 1665, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -5.758075736569083, - "c2": -19.991446119864964, - "c3": -2.6476134620442693, - "c4": -20.569012765871808, - "c5": -29.66172639224073, - "c6": -38.619751708912794, - "c7": -0.721295237360728 + "points": { + "c1": -25.008034852892596, + "c2": 20.077819892688836, + "c3": 16.624696374936768, + "c4": 7.356024864698966, + "c5": 35.30715411806958, + "c6": 37.71703908417346, + "c7": -7.663520044446834 }, - "vertexSeeds": { - "c1": 7.639443332872193, - "c2": 7.9296015442860766, - "c3": 6.793055945565505, - "c4": 9.145484914190256, - "c5": 6.401589193560788, - "c6": 8.658895869400265, - "c7": 8.265156103302383 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.14840499306519, + "c3": 10.957004160887655, + "c4": 8.765603328710126, + "c5": 6.574202496532592, + "c6": 4.382801664355063, + "c7": 2.1914008321775347 }, "rgb": [58, 15, 49] }, @@ -16125,23 +16125,23 @@ "year": 1666, "resistanceReported": false, "duration": 48816000, - "curveSeeds": { - "c1": 42.86414448884582, - "c2": 3.2708750492394287, - "c3": -10.225072733602211, - "c4": -36.95377634406468, - "c5": 49.547222081402076, - "c6": -26.70853978510258, - "c7": 8.692747177510988 + "points": { + "c1": 0.8693140830672803, + "c2": 43.55981684151948, + "c3": -39.20654741170698, + "c4": 26.472521825272892, + "c5": -63.85363693989917, + "c6": -0.9042914566407205, + "c7": -6.00376145109923 }, - "vertexSeeds": { - "c1": 11.01525014091074, - "c2": 10.89176272354838, - "c3": 9.027103936661087, - "c4": 10.103263355329123, - "c5": 9.105741845734034, - "c6": 8.610880843256929, - "c7": 9.788728420133786 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.977808599167817, + "c3": 13.314840499306522, + "c4": 10.651872399445214, + "c5": 7.988904299583911, + "c6": 5.32593619972261, + "c7": 2.6629680998613017 }, "rgb": [58, 15, 49] }, @@ -16152,23 +16152,23 @@ "year": 1665, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -13.949214323895063, - "c2": 5.129700526670522, - "c3": -16.975729681394235, - "c4": 5.651421882442325, - "c5": -20.198129512325853, - "c6": 22.366573193092666, - "c7": -23.38306888543863 + "points": { + "c1": 19.462930823604243, + "c2": 29.28829200218696, + "c3": 1.6229394529317922, + "c4": -11.734679090709228, + "c5": 10.064251575376279, + "c6": 10.627808746211674, + "c7": -19.305085053155157 }, - "vertexSeeds": { - "c1": 4.756915910783529, - "c2": 4.770087998053467, - "c3": 4.73175304979287, - "c4": 4.930551236659921, - "c5": 4.757650382134015, - "c6": 4.9548754263491235, - "c7": 4.908398514069356 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417463, + "c3": 5.987055016181235, + "c4": 4.789644012944991, + "c5": 3.592233009708747, + "c6": 2.3948220064724874, + "c7": 1.1974110032362437 }, "rgb": [86, 146, 138] }, @@ -16179,23 +16179,23 @@ "year": 1665, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 27.957289989277243, - "c2": -32.47787694146609, - "c3": -7.504921557610309, - "c4": -1.6148609058694845, - "c5": 9.674248754418315, - "c6": -22.075802992638977, - "c7": 7.369777159791816 + "points": { + "c1": -35.15057678007969, + "c2": -13.785954151367271, + "c3": -5.491870581410282, + "c4": 10.031989776538552, + "c5": -31.878319016221027, + "c6": -31.658939079301845, + "c7": 35.05377466755914 }, - "vertexSeeds": { - "c1": 4.06771805884975, - "c2": 3.9602191701929423, - "c3": 3.575543042198998, - "c4": 4.462723251318765, - "c5": 3.5954081772146997, - "c6": 4.239720987858651, - "c7": 4.217942618581781 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572816, + "c3": 5.501618122977348, + "c4": 4.401294498381879, + "c5": 3.3009708737864094, + "c6": 2.2006472491909377, + "c7": 1.1003236245954688 }, "rgb": [238, 201, 159] }, @@ -16206,23 +16206,23 @@ "year": 1665, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -12.19835035722012, - "c2": -20.14362483075943, - "c3": -12.111957440638562, - "c4": 12.172720114536052, - "c5": 12.04867806337565, - "c6": -18.789960785899282, - "c7": 6.956932902441256 + "points": { + "c1": -14.080541421885048, + "c2": -27.914932351171604, + "c3": 19.286409308661998, + "c4": 12.188472069178783, + "c5": -23.278663378640033, + "c6": -10.522132278874157, + "c7": 3.081350754409275 }, - "vertexSeeds": { - "c1": 3.160318623426858, - "c2": 3.2129970709318942, - "c3": 3.2135525770511046, - "c4": 3.060022921109513, - "c5": 3.2450446924268643, - "c6": 2.993991177796066, - "c7": 3.2599444907193003 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.022191400832173, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328679, + "c7": 0.8044382801664307 }, "rgb": [77, 76, 132] }, @@ -16233,23 +16233,23 @@ "year": 1665, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 15.339903650686516, - "c2": 25.16003633322078, - "c3": -4.618130644490854, - "c4": -14.829491926822856, - "c5": 10.603396637384378, - "c6": 1.8894278690684203, - "c7": 19.929954361633783 + "points": { + "c1": -11.238547950872938, + "c2": 15.786374008886881, + "c3": 21.60446795404836, + "c4": 8.297515541441605, + "c5": 22.484018942673394, + "c6": -13.53860150169836, + "c7": -13.519689845749983 }, - "vertexSeeds": { - "c1": 4.106583933524038, - "c2": 5.057021603564598, - "c3": 3.9258860120973735, - "c4": 4.435167658029002, - "c5": 3.755548269968497, - "c6": 3.6164588501598383, - "c7": 3.9173080435446432 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877947, + "c3": 6.195099398982893, + "c4": 4.956079519186314, + "c5": 3.717059639389736, + "c6": 2.478039759593159, + "c7": 1.239019879796578 }, "rgb": [238, 201, 159] }, @@ -16260,23 +16260,23 @@ "year": 1665, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 4.605764298189882, - "c2": -4.534307338943634, - "c3": -6.773228759798545, - "c4": -11.952808019799077, - "c5": -9.447518284919678, - "c6": 15.562261177447425, - "c7": 21.31734273164009 + "points": { + "c1": -24.214039521213845, + "c2": 20.72828600267922, + "c3": 18.304924298316763, + "c4": -5.397088039720007, + "c5": -12.543967021900237, + "c6": 11.133670328235503, + "c7": 18.91949336982165 }, - "vertexSeeds": { - "c1": 4.489174435577059, - "c2": 5.176251826518584, - "c3": 5.221279388914431, - "c4": 4.528287154063708, - "c5": 5.381394079798678, - "c6": 4.93666546508891, - "c7": 4.319706690244007 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181693, + "c3": 6.426259824318078, + "c4": 5.141007859454463, + "c5": 3.8557558945908483, + "c6": 2.5705039297272334, + "c7": 1.2852519648636147 }, "rgb": [238, 201, 159] }, @@ -16287,23 +16287,23 @@ "year": 1665, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -17.02607257394989, - "c2": 19.650968180099667, - "c3": 12.514516866222621, - "c4": 12.238541498251209, - "c5": -11.274890342751064, - "c6": 13.86232831679309, - "c7": -7.519058043508895 + "points": { + "c1": 11.363288689818887, + "c2": 17.12555249715998, + "c3": 19.25105595726452, + "c4": 1.2449494006715618, + "c5": -24.462967319637585, + "c6": 4.822750865805496, + "c7": -14.529075000196512 }, - "vertexSeeds": { - "c1": 4.595427380746308, - "c2": 4.370244460673709, - "c3": 4.057735335778192, - "c4": 4.5338747803113, - "c5": 4.524723320679458, - "c6": 4.773386003622733, - "c7": 4.314265607868723 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [58, 15, 49] }, @@ -16314,23 +16314,23 @@ "year": 1665, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 7.826307182296002, - "c2": -13.099115429486979, - "c3": -3.236228228156026, - "c4": -22.513622746084895, - "c5": -19.28340246712438, - "c6": -7.743435277812592, - "c7": 23.006221588617915 + "points": { + "c1": -5.973928559153784, + "c2": -18.591199970036325, + "c3": 8.243774652493432, + "c4": -14.841928706507074, + "c5": 7.63887152360461, + "c6": -23.691528498846264, + "c7": 7.133089500740407 }, - "vertexSeeds": { - "c1": 10.090447533597988, - "c2": 10.801642360847804, - "c3": 11.895329299580911, - "c4": 11.840076472770889, - "c5": 9.169074149328155, - "c6": 12.226251342792441, - "c7": 11.213156359675576 + "offsets": { + "c1": 21.553398058252426, + "c2": 18.474341192787794, + "c3": 15.395284327323163, + "c4": 12.316227461858528, + "c5": 9.237170596393897, + "c6": 6.158113730929264, + "c7": 3.079056865464632 }, "rgb": [77, 76, 132] }, @@ -16341,23 +16341,23 @@ "year": 1665, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": 17.079252418560078, - "c2": 13.96702789851263, - "c3": -15.820537191206492, - "c4": 12.684284768947439, - "c5": -22.590930205194176, - "c6": 4.3242324356883195, - "c7": -5.220198965527185 + "points": { + "c1": 24.28481155545794, + "c2": -21.080726389172234, + "c3": 6.38381731581104, + "c4": 2.2062716185782314, + "c5": -17.900420776470426, + "c6": 2.612454581706867, + "c7": -16.244554994943883 }, - "vertexSeeds": { - "c1": 4.970269821583744, - "c2": 5.489379701930605, - "c3": 5.142981450149735, - "c4": 5.7605352820804985, - "c5": 4.881656088685251, - "c6": 4.735454896713134, - "c7": 5.150000028764138 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.888580674988442, + "c4": 5.510864539990758, + "c5": 4.133148404993065, + "c6": 2.7554322699953766, + "c7": 1.3777161349976883 }, "rgb": [58, 15, 49] }, @@ -16368,23 +16368,23 @@ "year": 1665, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 10.806859569014243, - "c2": 0.7966856858630145, - "c3": -16.676070790923987, - "c4": -2.154363171624748, - "c5": 8.122007399560658, - "c6": -18.033869560235374, - "c7": -15.911616218043324 + "points": { + "c1": 22.14026644762029, + "c2": 2.4111021056956616, + "c3": 23.643793814149653, + "c4": -19.94898340726821, + "c5": -2.8953072822064136, + "c6": 9.67796159784048, + "c7": -18.436677152520474 }, - "vertexSeeds": { - "c1": 2.5754795756586546, - "c2": 2.743362162650698, - "c3": 2.2090852132105536, - "c4": 2.3333158106340495, - "c5": 2.459319951563064, - "c6": 2.3366472706918535, - "c7": 2.7549151894502826 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.9667128987517315, + "c3": 3.3055940822931116, + "c4": 2.6444752658344877, + "c5": 1.9833564493758677, + "c6": 1.3222376329172438, + "c7": 0.6611188164586219 }, "rgb": [222, 0, 59] }, @@ -16395,23 +16395,23 @@ "year": 1665, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 16.43852369039464, - "c2": -13.79373422994115, - "c3": 17.259096854070066, - "c4": -7.336233622395191, - "c5": -4.346861398638552, - "c6": 14.452521502281606, - "c7": -20.142030288208936 + "points": { + "c1": -9.214535826190534, + "c2": 11.502867447065448, + "c3": 13.43301705233285, + "c4": 18.94146425372014, + "c5": 20.469404543664304, + "c6": 21.141310499359392, + "c7": -19.028956383451945 }, - "vertexSeeds": { - "c1": 2.372626881752062, - "c2": 2.3482615792876516, - "c3": 2.413896466879989, - "c4": 1.996679872273267, - "c5": 2.278946824109367, - "c6": 2.5216101988262087, - "c7": 1.903586102354471 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269071, + "c3": 3.028201571890892, + "c4": 2.4225612575127133, + "c5": 1.8169209431345348, + "c6": 1.211280628756356, + "c7": 0.6056403143781788 }, "rgb": [222, 0, 59] }, @@ -16422,23 +16422,23 @@ "year": 1665, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 2.3437703335841107, - "c2": -2.751899959535983, - "c3": -11.399037047184922, - "c4": -4.619783413643695, - "c5": -16.40608201255497, - "c6": 9.67936608380522, - "c7": 1.0071075111550627 + "points": { + "c1": -4.524568968396732, + "c2": 3.996479191140839, + "c3": -20.09820814203041, + "c4": -4.172457533869935, + "c5": 12.576889684274832, + "c6": 7.338520234388, + "c7": -23.023795449912523 }, - "vertexSeeds": { - "c1": 4.335247662381697, - "c2": 5.433201328910147, - "c3": 4.611651169093149, - "c4": 5.621524525058012, - "c5": 4.6431173622145785, - "c6": 5.697040268419152, - "c7": 4.78144009925806 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055476, + "c4": 5.547850208044386, + "c5": 4.160887656033289, + "c6": 2.773925104022193, + "c7": 1.3869625520110964 }, "rgb": [86, 146, 138] }, @@ -16449,23 +16449,23 @@ "year": 1665, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": 14.36322491381361, - "c2": -18.708958403891394, - "c3": 8.327571174608323, - "c4": 17.97156870428269, - "c5": 6.479137630567916, - "c6": 13.916481329568342, - "c7": 20.33031475051098 + "points": { + "c1": -7.59736650715152, + "c2": 6.61775691476873, + "c3": 8.633484103262788, + "c4": 7.811420542254346, + "c5": -11.448924988481194, + "c6": 16.163015025466954, + "c7": -17.764614611907575 }, - "vertexSeeds": { - "c1": 10.750265253306507, - "c2": 9.844692270379346, - "c3": 10.497746816663188, - "c4": 10.467593768576434, - "c5": 10.294793773449923, - "c6": 10.870804377697256, - "c7": 10.494060309718163 + "offsets": { + "c1": 18.673139158576053, + "c2": 16.005547850208053, + "c3": 13.337956541840029, + "c4": 10.670365233472031, + "c5": 8.002773925104034, + "c6": 5.3351826167360095, + "c7": 2.6675913083680114 }, "rgb": [86, 146, 138] }, @@ -16476,23 +16476,23 @@ "year": 1665, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 24.61823654880625, - "c2": 30.561642164500242, - "c3": -8.985264807773916, - "c4": 7.337725474755459, - "c5": -40.9767099198654, - "c6": 3.95498110554162, - "c7": -3.251659161047442 + "points": { + "c1": 12.795865655811923, + "c2": -37.490872797771246, + "c3": -1.9103378920423495, + "c4": 46.48461585051663, + "c5": 28.937989755439332, + "c6": 48.259164922692946, + "c7": 3.1409738610928812 }, - "vertexSeeds": { - "c1": 8.815445134603213, - "c2": 8.765367224754616, - "c3": 8.655923216960074, - "c4": 7.857997587441849, - "c5": 8.82088376199129, - "c6": 7.658328689659103, - "c7": 8.296108910939582 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [222, 0, 59] }, @@ -16503,23 +16503,23 @@ "year": 1665, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": 14.177222259093902, - "c2": 14.970970811496365, - "c3": 14.73546780651575, - "c4": -15.390528511586844, - "c5": 5.641555617871948, - "c6": -12.134055629757722, - "c7": -16.794721071454155 + "points": { + "c1": -8.357609010819255, + "c2": -10.810118377155753, + "c3": 19.025902590869876, + "c4": 21.068804791394435, + "c5": -3.0717205228985343, + "c6": -7.628089104070787, + "c7": -2.8970001369788996 }, - "vertexSeeds": { - "c1": 5.069940533591353, - "c2": 5.708692365638928, - "c3": 5.522782344000862, - "c4": 4.99068881009355, - "c5": 5.644533682020278, - "c6": 5.339065365963616, - "c7": 5.061097526562068 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055479, + "c4": 5.54785020804438, + "c5": 4.16088765603329, + "c6": 2.77392510402219, + "c7": 1.386962552011095 }, "rgb": [77, 76, 132] }, @@ -16530,23 +16530,23 @@ "year": 1665, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -13.69616426000881, - "c2": 16.318310647714245, - "c3": 28.699903482563453, - "c4": 16.75926160506368, - "c5": -26.770883898560204, - "c6": -9.69391979349805, - "c7": 15.713875709782922 + "points": { + "c1": 15.09509946730114, + "c2": -15.404932903997352, + "c3": -3.7782141724100065, + "c4": -22.288476210500036, + "c5": -25.264602694915904, + "c6": -21.100262358655208, + "c7": -16.834391375408487 }, - "vertexSeeds": { - "c1": 8.537382361102738, - "c2": 7.822410634115801, - "c3": 8.71244565711495, - "c4": 7.608218988400175, - "c5": 7.7436924185089335, - "c6": 8.476879329646536, - "c7": 7.898105836962301 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [222, 0, 59] }, @@ -16557,23 +16557,23 @@ "year": 1665, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 1.574112692091525, - "c2": -29.13469354430726, - "c3": 18.655732374617287, - "c4": 16.906685853210988, - "c5": 22.868629277722242, - "c6": -16.425623296504824, - "c7": -9.522810729027352 + "points": { + "c1": 11.515003056642662, + "c2": 20.796947593162848, + "c3": 31.24482204995374, + "c4": 23.944631618371986, + "c5": 25.805785762372494, + "c6": 3.290108234653509, + "c7": -26.764605210972235 }, - "vertexSeeds": { - "c1": 5.785332802212277, - "c2": 6.002516802466392, - "c3": 5.9650447082670155, - "c4": 6.227972100522524, - "c5": 6.255116289800464, - "c6": 6.2178995186281485, - "c7": 6.45162067863267 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [86, 146, 138] }, @@ -16584,23 +16584,23 @@ "year": 1665, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -15.688230278012028, - "c2": 1.3626227598488008, - "c3": 7.188020701264211, - "c4": -4.08891464757845, - "c5": -9.455139671542236, - "c6": -2.8506091820755675, - "c7": 7.342129719189675 + "points": { + "c1": 17.401373907335916, + "c2": -12.569675515621837, + "c3": 17.79182317538484, + "c4": 20.2389184150215, + "c5": -6.873731638190263, + "c6": 15.091896194723958, + "c7": -0.7022657763561888 }, - "vertexSeeds": { - "c1": 6.1075547443836555, - "c2": 7.663268955354953, - "c3": 7.194690823813943, - "c4": 5.99963645127022, - "c5": 5.960181944535707, - "c6": 7.379755938476112, - "c7": 6.714389192765851 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249655, + "c3": 9.338881183541375, + "c4": 7.471104946833102, + "c5": 5.603328710124828, + "c6": 3.7355524734165546, + "c7": 1.8677762367082733 }, "rgb": [86, 146, 138] }, @@ -16611,23 +16611,23 @@ "year": 1666, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": 14.620119675303904, - "c2": 11.131741892911222, - "c3": -44.61411165650123, - "c4": 18.584959989238534, - "c5": -10.97286865795698, - "c6": 26.758981373829705, - "c7": -33.62335760707584 + "points": { + "c1": -50.59221693856465, + "c2": -46.4252058671065, + "c3": -33.782739251593426, + "c4": -50.65019679630987, + "c5": -47.522418684291196, + "c6": 31.95558328807831, + "c7": -32.12175895001926 }, - "vertexSeeds": { - "c1": 3.196597526207257, - "c2": 3.052707444703588, - "c3": 3.772933914818923, - "c4": 3.016239100899946, - "c5": 3.677323207044169, - "c6": 4.0514611526180975, - "c7": 4.029541191457151 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.9639389736477115, + "c3": 4.969949144706426, + "c4": 3.9759593157651407, + "c5": 2.9819694868238558, + "c6": 1.9879796578825704, + "c7": 0.9939898289412852 }, "rgb": [77, 76, 132] }, @@ -16638,23 +16638,23 @@ "year": 1665, "resistanceReported": false, "duration": 2246400, - "curveSeeds": { - "c1": 10.186590828240053, - "c2": 5.335589197113446, - "c3": -1.008509792994321, - "c4": 11.644247284385784, - "c5": 7.380574558703746, - "c6": 0.8740676399563014, - "c7": 6.5744578303719905 + "points": { + "c1": -10.74114135572416, + "c2": -8.624597341615573, + "c3": 11.762615396525618, + "c4": -8.067855908367957, + "c5": 10.77239274964699, + "c6": 1.213499240723026, + "c7": 14.179293133894124 }, - "vertexSeeds": { - "c1": 2.096564864220968, - "c2": 1.9115865309901956, - "c3": 2.0171242699104983, - "c4": 1.9342679401859435, - "c5": 2.2813478865971617, - "c6": 2.1236533717893677, - "c7": 2.14723349007598 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.9819694868238558, + "c4": 2.3855755894590844, + "c5": 1.7891816920943133, + "c6": 1.1927877947295422, + "c7": 0.5963938973647711 }, "rgb": [238, 201, 159] }, @@ -16665,23 +16665,23 @@ "year": 1666, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 2.0593837941512305, - "c2": 1.409949113980538, - "c3": 1.3976388276619858, - "c4": -35.91102472554191, - "c5": -2.3808851483067386, - "c6": 15.356750396258498, - "c7": -35.422785244340254 + "points": { + "c1": -7.370855295559849, + "c2": -1.2053332892166182, + "c3": -37.2673308664871, + "c4": 12.673014843286573, + "c5": 33.64552311050326, + "c6": 16.778216405489744, + "c7": 26.67919573936726 }, - "vertexSeeds": { - "c1": 3.833941381682516, - "c2": 4.1006026319335955, - "c3": 4.0890324631755846, - "c4": 3.3254873549387343, - "c5": 4.217211327917176, - "c6": 3.8235276391520867, - "c7": 4.267183999701978 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.2413314840499305, + "c3": 5.201109570041609, + "c4": 4.160887656033285, + "c5": 3.1206657420249635, + "c6": 2.0804438280166426, + "c7": 1.0402219140083213 }, "rgb": [238, 201, 159] }, @@ -16692,23 +16692,23 @@ "year": 1666, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 18.572801807655736, - "c2": -16.460601338434547, - "c3": 21.85939117406629, - "c4": -28.416486535978713, - "c5": 17.621161257003855, - "c6": -33.10280061833214, - "c7": 40.62951918464415 + "points": { + "c1": -11.303884683983277, + "c2": -15.966087515610166, + "c3": -41.687105795189545, + "c4": -10.062003485250095, + "c5": 36.04526209704581, + "c6": -16.531595639751878, + "c7": 0.7543959162763301 }, - "vertexSeeds": { - "c1": 2.687476536087768, - "c2": 3.0378113455415914, - "c3": 2.654171798070224, - "c4": 2.2798095479557996, - "c5": 2.9879105938036132, - "c6": 2.411087192065562, - "c7": 2.436344206785304 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837725, + "c3": 3.9297272306981044, + "c4": 3.1437817845584832, + "c5": 2.3578363384188625, + "c6": 1.5718908922792416, + "c7": 0.7859454461396208 }, "rgb": [222, 0, 59] }, @@ -16719,23 +16719,23 @@ "year": 1666, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 44.210031889517495, - "c2": 32.44358430769233, - "c3": 25.01025791298592, - "c4": 18.96052174444359, - "c5": -8.629719233073637, - "c6": -15.15549569355014, - "c7": -28.19854863825124 + "points": { + "c1": -40.29612395080171, + "c2": 22.1555715783677, + "c3": 29.43893991972594, + "c4": 43.76891559983035, + "c5": -43.31221846695785, + "c6": -20.520274250078337, + "c7": -37.14466985554705 }, - "vertexSeeds": { - "c1": 3.8275115894972287, - "c2": 5.14904472781953, - "c3": 3.992188439689058, - "c4": 4.68224068970142, - "c5": 4.245663809562631, - "c6": 4.915610576920157, - "c7": 5.095010955850985 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061025, + "c3": 6.35691169671752, + "c4": 5.085529357374018, + "c5": 3.8141470180305124, + "c6": 2.542764678687009, + "c7": 1.271382339343506 }, "rgb": [58, 15, 49] }, @@ -16746,23 +16746,23 @@ "year": 1667, "resistanceReported": false, "duration": 63072000, - "curveSeeds": { - "c1": 10.449276715252353, - "c2": -3.501834584594363, - "c3": -43.17599105507249, - "c4": -38.92316859672056, - "c5": 25.362314303787926, - "c6": 18.55331401619958, - "c7": 51.06926074241187 + "points": { + "c1": -22.201343680408556, + "c2": 39.91496808950643, + "c3": -35.416415509417305, + "c4": -2.278122424665611, + "c5": -76.3313486999305, + "c6": 59.48192218977539, + "c7": -70.0174439862173 }, - "vertexSeeds": { - "c1": 7.011222694400491, - "c2": 6.542591132814097, - "c3": 6.770051661523237, - "c4": 6.866895937127719, - "c5": 7.726154870212212, - "c6": 6.25343900945559, - "c7": 7.06497505674378 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249655, + "c3": 9.338881183541375, + "c4": 7.471104946833102, + "c5": 5.603328710124828, + "c6": 3.7355524734165546, + "c7": 1.8677762367082733 }, "rgb": [238, 201, 159] }, @@ -16773,23 +16773,23 @@ "year": 1665, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -26.04581289369851, - "c2": 30.309950364830456, - "c3": 13.893268136574832, - "c4": -27.189194822830846, - "c5": -2.6248031968473526, - "c6": 16.680509973488135, - "c7": 22.721604509795263 + "points": { + "c1": -0.1937444745657686, + "c2": 3.7841385670763614, + "c3": -31.200099864990985, + "c4": -28.716616909969833, + "c5": 30.269953638234583, + "c6": 19.788687834663747, + "c7": 31.708265895414385 }, - "vertexSeeds": { - "c1": 5.969110233946872, - "c2": 6.247402210238922, - "c3": 5.8436825580678, - "c4": 5.895502220101064, - "c5": 6.149775437229632, - "c6": 5.704247366476539, - "c7": 5.751643973189189 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -16800,23 +16800,23 @@ "year": 1666, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 16.07800098184227, - "c2": -21.09428135063579, - "c3": -12.864607109459019, - "c4": 26.64118832109602, - "c5": -19.81535536834423, - "c6": -10.995743131646623, - "c7": 20.655683269898145 + "points": { + "c1": 28.18741725176012, + "c2": -24.319881857539738, + "c3": 4.133516489106345, + "c4": -17.615380893783744, + "c5": -8.662462326148685, + "c6": -16.815195127235903, + "c7": -22.75281779919681 }, - "vertexSeeds": { - "c1": 5.965817733381907, - "c2": 5.910345078782366, - "c3": 5.905413284686986, - "c4": 5.657978373701253, - "c5": 5.639332717375023, - "c6": 5.853003488530965, - "c7": 6.093121598025456 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [222, 0, 59] }, @@ -16827,23 +16827,23 @@ "year": 1666, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 20.421329644333046, - "c2": -8.254001734980879, - "c3": 11.51493796251047, - "c4": 20.78632369269558, - "c5": 1.236770285030513, - "c6": 8.938155837660123, - "c7": -22.459063752054142 + "points": { + "c1": -18.021595135528198, + "c2": -2.562368217463213, + "c3": 24.791228649234757, + "c4": -14.199774257805775, + "c5": -17.343468146912166, + "c6": 20.533107760163016, + "c7": -22.93892392973987 }, - "vertexSeeds": { - "c1": 5.03528417258524, - "c2": 5.188682593936278, - "c3": 4.865332520094768, - "c4": 5.626455021921536, - "c5": 4.7423308027819004, - "c6": 5.4301282332600485, - "c7": 5.757359941062501 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158115, + "c3": 8.136846971798429, + "c4": 6.509477577438741, + "c5": 4.88210818307906, + "c6": 3.2547387887193735, + "c7": 1.6273693943596867 }, "rgb": [86, 146, 138] }, @@ -16854,23 +16854,23 @@ "year": 1666, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": 11.15985738998841, - "c2": 5.751287534147593, - "c3": -13.119231408809306, - "c4": 9.069860154056872, - "c5": -2.422078346052338, - "c6": 0.7194213644522343, - "c7": -8.600058132853338 + "points": { + "c1": 16.938572371696694, + "c2": 20.339848199331406, + "c3": -10.129191583164747, + "c4": -13.16613681190251, + "c5": -4.627728499827882, + "c6": 16.900475215133, + "c7": -15.129637739532303 }, - "vertexSeeds": { - "c1": 5.194537840687972, - "c2": 5.625132354882585, - "c3": 4.927965042446764, - "c4": 5.569618671240899, - "c5": 5.238473082796244, - "c6": 4.52202929704111, - "c7": 4.53098969676311 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785019, + "c3": 6.773000462320847, + "c4": 5.418400369856679, + "c5": 4.063800277392511, + "c6": 2.7092001849283394, + "c7": 1.3546000924641683 }, "rgb": [58, 15, 49] }, @@ -16881,23 +16881,23 @@ "year": 1666, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": 5.526934707088049, - "c2": -6.3757641274081305, - "c3": -1.9821937471892745, - "c4": 14.242975707484096, - "c5": -12.216153265352975, - "c6": -8.601281414022719, - "c7": 5.153066154655818 + "points": { + "c1": -6.0487721536581684, + "c2": -11.259711881021484, + "c3": -0.9522941582998179, + "c4": -11.439591025031822, + "c5": 17.636591454673717, + "c6": 0.7958434851812051, + "c7": 4.728795997486369 }, - "vertexSeeds": { - "c1": 3.795758753062061, - "c2": 3.7651608552077427, - "c3": 4.020692497917869, - "c4": 3.3378447952247035, - "c5": 3.46113305177409, - "c6": 2.9160613199879037, - "c7": 3.8419552051876167 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446603, + "c3": 4.854368932038834, + "c4": 3.8834951456310685, + "c5": 2.9126213592233, + "c6": 1.9417475728155342, + "c7": 0.9708737864077686 }, "rgb": [222, 0, 59] }, @@ -16908,23 +16908,23 @@ "year": 1667, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -34.47997003160773, - "c2": 31.873737190956696, - "c3": -13.339514918451023, - "c4": 30.808410639208027, - "c5": -28.433599200769923, - "c6": 27.859887800447616, - "c7": 19.341500236280062 + "points": { + "c1": 30.819941795163977, + "c2": 15.768280270855577, + "c3": -16.506696868920226, + "c4": -5.942126567969076, + "c5": -11.719361040824523, + "c6": 38.748817994952425, + "c7": 25.375016667570456 }, - "vertexSeeds": { - "c1": 9.009679833551399, - "c2": 9.203331766572678, - "c3": 8.38612023394381, - "c4": 9.010361448176356, - "c5": 8.745384797598367, - "c6": 8.852291983900153, - "c7": 8.473201392706786 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.536754507628292, + "c3": 11.28062875635691, + "c4": 9.024503005085524, + "c5": 6.76837725381414, + "c6": 4.512251502542756, + "c7": 2.256125751271371 }, "rgb": [58, 15, 49] }, @@ -16935,23 +16935,23 @@ "year": 1667, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 29.594355840146427, - "c2": -31.14217787672819, - "c3": 17.471733671677818, - "c4": -2.1453894545552146, - "c5": -18.080897318507542, - "c6": -22.69190960622089, - "c7": -10.2949998406156 + "points": { + "c1": 23.060713854378392, + "c2": 21.86989172800164, + "c3": 17.71942568276547, + "c4": -30.12293959378177, + "c5": -18.840323265840418, + "c6": -7.490942249186972, + "c7": 27.95619383267863 }, - "vertexSeeds": { - "c1": 8.235687290204094, - "c2": 8.026699286164861, - "c3": 8.208636450201293, - "c4": 8.464216976188506, - "c5": 8.242142200275746, - "c6": 8.17496723735872, - "c7": 8.217686931344657 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [86, 146, 138] }, @@ -16962,23 +16962,23 @@ "year": 1667, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 27.90939213898492, - "c2": -5.5954262689907885, - "c3": -6.520327546623523, - "c4": 15.938598105305182, - "c5": -20.49494726745702, - "c6": -19.397148614098022, - "c7": -4.065918953897064 + "points": { + "c1": -24.08212158910534, + "c2": -31.766336720851545, + "c3": -4.42737666583222, + "c4": 5.5758901616283865, + "c5": -0.4695671375457593, + "c6": -5.990257435295778, + "c7": 34.338369117047336 }, - "vertexSeeds": { - "c1": 6.303743249483846, - "c2": 6.336956828272798, - "c3": 6.338199032448611, - "c4": 5.868456977850485, - "c5": 6.445249827119473, - "c6": 5.8724796574549165, - "c7": 6.16636886727059 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -16989,23 +16989,23 @@ "year": 1667, "resistanceReported": false, "duration": 2678400, - "curveSeeds": { - "c1": 4.54152377635698, - "c2": 2.3981237273121785, - "c3": 6.54049294385119, - "c4": 0.035871527376512446, - "c5": -11.159717074686537, - "c6": 10.714698787923533, - "c7": -2.1357817041497054 + "points": { + "c1": -3.2234754181664798, + "c2": -3.750790057213054, + "c3": 4.357582858946531, + "c4": -1.2791441103315346, + "c5": -13.454684799150016, + "c6": -8.401408533055651, + "c7": 0.5945718896819479 }, - "vertexSeeds": { - "c1": 6.363769802019427, - "c2": 6.07495111206435, - "c3": 6.1412311121218375, - "c4": 6.074991793054595, - "c5": 5.881888920518758, - "c6": 6.334364672639937, - "c7": 6.275415053838191 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [58, 15, 49] }, @@ -17016,23 +17016,23 @@ "year": 1668, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 8.772117687680506, - "c2": -11.20215784141466, - "c3": -20.68910279113916, - "c4": -42.06310945680728, - "c5": 47.365579297759695, - "c6": 17.077961726391862, - "c7": -4.727237353981714 + "points": { + "c1": 11.132405319588571, + "c2": -37.863602304452975, + "c3": -2.667021191579039, + "c4": -14.778070143223431, + "c5": 42.31971288001448, + "c6": -20.745419183110165, + "c7": 33.24150884125224 }, - "vertexSeeds": { - "c1": 3.8177203162130287, - "c2": 3.9969121567043833, - "c3": 4.028975428201906, - "c4": 3.3030102890308926, - "c5": 3.6620889803323236, - "c6": 3.7055079957559287, - "c7": 3.459573674217176 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567265, + "c3": 4.92371705963939, + "c4": 3.9389736477115105, + "c5": 2.954230235783635, + "c6": 1.9694868238557552, + "c7": 0.9847434119278797 }, "rgb": [222, 0, 59] }, @@ -17043,23 +17043,23 @@ "year": 1668, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 1.0439815378999526, - "c2": 43.30664143319822, - "c3": 26.94087662600859, - "c4": 40.28101655540874, - "c5": 7.2604045002631565, - "c6": 0.5932986379253506, - "c7": -30.92235785212726 + "points": { + "c1": 12.302219370219092, + "c2": 40.17955311008302, + "c3": 37.42164864807526, + "c4": -24.056521917360094, + "c5": 34.246898283842015, + "c6": 21.127744979516507, + "c7": 40.22049498920519 }, - "vertexSeeds": { - "c1": 4.4398022740796055, - "c2": 4.827098588472833, - "c3": 4.6872655822456295, - "c4": 4.606930614154233, - "c5": 4.830391116763418, - "c6": 4.557931427125271, - "c7": 4.502849264116339 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385114, + "c4": 5.17799352750809, + "c5": 3.883495145631068, + "c6": 2.588996763754045, + "c7": 1.2944983818770226 }, "rgb": [77, 76, 132] }, @@ -17070,23 +17070,23 @@ "year": 1668, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 9.660504441110177, - "c2": -22.30409633675925, - "c3": 13.930735404469921, - "c4": 15.557081173413906, - "c5": -24.133678915043397, - "c6": 1.2206786883162835, - "c7": -45.70760634990167 + "points": { + "c1": 15.570021886014842, + "c2": -17.57005892015013, + "c3": 37.187542218908746, + "c4": -21.365342054372064, + "c5": -20.509432166740773, + "c6": -13.329042273389973, + "c7": -42.69112490300017 }, - "vertexSeeds": { - "c1": 4.813840139171932, - "c2": 4.2554413322528655, - "c3": 4.67747320783077, - "c4": 4.565985361164897, - "c5": 4.2203664778415755, - "c6": 4.671312936811214, - "c7": 4.539099196432705 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417474, + "c3": 5.987055016181227, + "c4": 4.789644012944985, + "c5": 3.592233009708737, + "c6": 2.39482200647249, + "c7": 1.1974110032362473 }, "rgb": [222, 0, 59] }, @@ -17097,23 +17097,23 @@ "year": 1668, "resistanceReported": false, "duration": 52876800, - "curveSeeds": { - "c1": -46.87639335243611, - "c2": 6.256012342736113, - "c3": -21.446384645014653, - "c4": 29.186787161931036, - "c5": -14.298882676485668, - "c6": 51.77547409149243, - "c7": 0.5198857257632454 + "points": { + "c1": -2.2693238107916187, + "c2": 25.380615492980667, + "c3": -11.064569146377202, + "c4": 16.959351204356594, + "c5": 23.309299448201614, + "c6": 39.25344989381428, + "c7": 51.70716240345554 }, - "vertexSeeds": { - "c1": 0.35792961491880654, - "c2": 0.3295032775989697, - "c3": 0.310536280658725, - "c4": 0.3145675556210419, - "c5": 0.3468169058329801, - "c6": 0.33582983453425674, - "c7": 0.30512043950514983 + "offsets": { + "c1": 0.6796116504854369, + "c2": 0.5825242718446602, + "c3": 0.4854368932038838, + "c4": 0.38834951456310685, + "c5": 0.2912621359223301, + "c6": 0.1941747572815537, + "c7": 0.09708737864077685 }, "rgb": [238, 201, 159] }, @@ -17124,23 +17124,23 @@ "year": 1669, "resistanceReported": false, "duration": 89424000, - "curveSeeds": { - "c1": -75.76772759034908, - "c2": -41.12262128777702, - "c3": 93.84826727546228, - "c4": 59.29903186165795, - "c5": -9.543626179334694, - "c6": 32.54160595903117, - "c7": 105.45450389041854 + "points": { + "c1": -52.22022402169008, + "c2": -60.20850928098184, + "c3": 106.55793602341167, + "c4": 21.58691002853824, + "c5": 41.32801605961221, + "c6": 81.90952973005791, + "c7": -94.31601221423016 }, - "vertexSeeds": { - "c1": 5.768189399525272, - "c2": 6.049703617267843, - "c3": 6.278168866614988, - "c4": 5.964371864642807, - "c5": 5.65259736981346, - "c6": 5.3389219901681955, - "c7": 5.490714442710445 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273228, + "c3": 7.628294036061029, + "c4": 6.102635228848821, + "c5": 4.576976421636614, + "c6": 3.0513176144244065, + "c7": 1.5256588072122077 }, "rgb": [77, 76, 132] }, @@ -17151,23 +17151,23 @@ "year": 1668, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 48.69148547340542, - "c2": -11.10738231563883, - "c3": 4.441375911150466, - "c4": 8.522714858405024, - "c5": -51.93766107806382, - "c6": 21.184163921783437, - "c7": 1.5403468236806788 + "points": { + "c1": 12.320282765680645, + "c2": 48.34480842993345, + "c3": 20.67272495498385, + "c4": -41.34987557509186, + "c5": 24.346305098114627, + "c6": 47.996027947161565, + "c7": -45.764809359859576 }, - "vertexSeeds": { - "c1": 3.6330495719652687, - "c2": 3.7170553520622946, - "c3": 3.8071282959520705, - "c4": 3.964235584428615, - "c5": 3.700818409968773, - "c6": 3.860724981597534, - "c7": 4.14046421556768 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687937, + "c3": 4.993065187239944, + "c4": 3.994452149791958, + "c5": 2.9958391123439654, + "c6": 1.997226074895979, + "c7": 0.9986130374479928 }, "rgb": [58, 15, 49] }, @@ -17178,23 +17178,23 @@ "year": 1668, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 33.90431830349745, - "c2": 8.441774754115606, - "c3": -1.2116955044379836, - "c4": -22.920842604613107, - "c5": -18.784226361456206, - "c6": -15.490046050562615, - "c7": 17.315828972277743 + "points": { + "c1": -11.710820908173062, + "c2": -25.092003710353623, + "c3": 1.211994916012351, + "c4": -15.878118065913373, + "c5": -31.504966005804384, + "c6": -27.249762921132195, + "c7": 34.761322331969794 }, - "vertexSeeds": { - "c1": 4.84079827204239, - "c2": 4.207337219554509, - "c3": 4.898374012634491, - "c4": 3.9881121983212418, - "c5": 4.4040423306962735, - "c6": 4.28451921236152, - "c7": 3.9163628211426693 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.310679611650487, + "c4": 5.048543689320387, + "c5": 3.7864077669902905, + "c6": 2.5242718446601935, + "c7": 1.2621359223300967 }, "rgb": [58, 15, 49] }, @@ -17205,23 +17205,23 @@ "year": 1667, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 24.433043085918865, - "c2": 19.034624363803697, - "c3": 10.943044254653518, - "c4": -26.638889172512002, - "c5": 25.947719721376483, - "c6": -5.212139539099468, - "c7": 16.64341565317166 + "points": { + "c1": -24.319569686970276, + "c2": 24.314434339938504, + "c3": 5.493095887619926, + "c4": -1.4505338306698476, + "c5": 9.333936390796556, + "c6": -8.161338712350474, + "c7": 16.61866438573502 }, - "vertexSeeds": { - "c1": 5.9369767743075785, - "c2": 6.394012819308816, - "c3": 6.318698931676833, - "c4": 6.176124528703324, - "c5": 6.267989960217389, - "c6": 6.332941710534023, - "c7": 5.944860134616137 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [86, 146, 138] }, @@ -17232,23 +17232,23 @@ "year": 1668, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -11.862973326206593, - "c2": 16.685321148773212, - "c3": 21.848419899672592, - "c4": 15.722218835931102, - "c5": -37.773332889689485, - "c6": -34.8687591748512, - "c7": -5.581956255775324 + "points": { + "c1": -15.175028600692745, + "c2": 22.800451293882915, + "c3": -0.8937796469087687, + "c4": 1.753770044135777, + "c5": 35.496332956893504, + "c6": 25.508469955529144, + "c7": -1.5107009184331375 }, - "vertexSeeds": { - "c1": 4.104314517413533, - "c2": 4.068996134347711, - "c3": 4.094317804313927, - "c4": 3.841408379722717, - "c5": 3.663792471595724, - "c6": 3.7023965191726935, - "c7": 3.8935267708611105 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728154, + "c3": 5.016181229773463, + "c4": 4.01294498381877, + "c5": 3.009708737864077, + "c6": 2.006472491909385, + "c7": 1.0032362459546924 }, "rgb": [222, 0, 59] }, @@ -17259,23 +17259,23 @@ "year": 1668, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -14.485315748251633, - "c2": -23.393868888667047, - "c3": -9.73112240078252, - "c4": -13.124221764349628, - "c5": 21.42902715547406, - "c6": 0.8073772375153823, - "c7": 16.40798473517259 + "points": { + "c1": -0.07516337103109194, + "c2": -17.10569351187827, + "c3": -3.6608213743218663, + "c4": 23.546125311337654, + "c5": 9.467891399072073, + "c6": -8.404229275518368, + "c7": 21.21735705190637 }, - "vertexSeeds": { - "c1": 6.12782312866975, - "c2": 5.807969983422876, - "c3": 5.817811031257159, - "c4": 6.122955157672646, - "c5": 6.166247373139026, - "c6": 6.452824386823316, - "c7": 5.982978648082424 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -17286,23 +17286,23 @@ "year": 1668, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 1.2492663511180169, - "c2": 19.620763487569455, - "c3": -13.99605553330941, - "c4": -18.751266693513223, - "c5": -9.964512527832461, - "c6": -2.731588046944001, - "c7": -20.554288701653306 + "points": { + "c1": -18.734663980609923, + "c2": -4.0573936176317105, + "c3": -13.782954246770707, + "c4": -5.475055752024762, + "c5": 4.655299698594931, + "c6": -20.929722195385832, + "c7": 10.780659817284693 }, - "vertexSeeds": { - "c1": 4.800750026776217, - "c2": 4.393377513606568, - "c3": 4.4484935635184915, - "c4": 4.759718434729795, - "c5": 4.723753331067755, - "c6": 4.3238019729437385, - "c7": 4.62647738097892 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -17313,23 +17313,23 @@ "year": 1668, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -4.726625346650463, - "c2": 14.510229068143481, - "c3": -4.345819184286846, - "c4": 10.694699473388148, - "c5": -9.84894558502464, - "c6": 18.001879156981914, - "c7": -9.534606621566951 + "points": { + "c1": 14.93981231209154, + "c2": -13.13648284051454, + "c3": 15.764169762679217, + "c4": 4.902387646303687, + "c5": -13.313087903519618, + "c6": -9.220538929502391, + "c7": 4.686080575697957 }, - "vertexSeeds": { - "c1": 5.802693249292807, - "c2": 5.977426390117602, - "c3": 5.284219506464428, - "c4": 6.041305966771512, - "c5": 5.548304963344347, - "c6": 6.158356100932797, - "c7": 5.344500250357823 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273228, + "c3": 7.628294036061029, + "c4": 6.102635228848821, + "c5": 4.576976421636614, + "c6": 3.0513176144244065, + "c7": 1.5256588072122077 }, "rgb": [77, 76, 132] }, @@ -17340,23 +17340,23 @@ "year": 1669, "resistanceReported": false, "duration": 55296000, - "curveSeeds": { - "c1": 58.400700766523926, - "c2": -34.66702433047737, - "c3": 22.503371201447038, - "c4": -26.00094756330312, - "c5": 10.828948222913183, - "c6": 55.616507119557056, - "c7": 62.09422945548468 + "points": { + "c1": 69.25735231738696, + "c2": 31.488822113060664, + "c3": -40.273574583165875, + "c4": -17.282802459013908, + "c5": -65.19661358780992, + "c6": 25.0332681995893, + "c7": -20.805596775276754 }, - "vertexSeeds": { - "c1": 3.6564738677799316, - "c2": 2.7884364215614004, - "c3": 2.878600469193019, - "c4": 3.3857131524847848, - "c5": 3.3707264272243296, - "c6": 3.3912578486303784, - "c7": 3.0133802866390593 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803052, + "c3": 4.484512251502543, + "c4": 3.5876098012020328, + "c5": 2.690707350901524, + "c6": 1.793804900601015, + "c7": 0.8969024503005091 }, "rgb": [77, 76, 132] }, @@ -17367,23 +17367,23 @@ "year": 1668, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -18.442271628627235, - "c2": 16.691679547866293, - "c3": 4.163250396452238, - "c4": -15.454383525111231, - "c5": -16.768087872958098, - "c6": -8.538315944872519, - "c7": -12.201249850894625 + "points": { + "c1": 18.77089121454803, + "c2": 4.959771871918019, + "c3": 7.924526079084785, + "c4": -9.661942158784026, + "c5": -11.206101993522793, + "c6": -13.26577862735062, + "c7": 8.433520073046886 }, - "vertexSeeds": { - "c1": 5.968352794914071, - "c2": 5.899531166728705, - "c3": 6.127965402617903, - "c4": 5.571824831895338, - "c5": 5.668230306295525, - "c6": 5.819031385598332, - "c7": 6.254925149240318 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192786, + "c3": 7.582061950993985, + "c4": 6.0656495607952, + "c5": 4.5492371705964, + "c6": 3.0328247803976, + "c7": 1.5164123901988 }, "rgb": [58, 15, 49] }, @@ -17394,23 +17394,23 @@ "year": 1668, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 28.135800296377965, - "c2": -41.61271296983526, - "c3": 36.863418622825435, - "c4": -26.62103497971791, - "c5": -11.402944497421515, - "c6": -2.8390610275723063, - "c7": -9.740654808834165 + "points": { + "c1": -3.366710546753957, + "c2": 35.632483108182825, + "c3": -11.548801633011358, + "c4": -1.2739709233572896, + "c5": 40.4834120545498, + "c6": 5.4675563565457, + "c7": 44.05757324169031 }, - "vertexSeeds": { - "c1": 6.191907387115536, - "c2": 5.646283285298346, - "c3": 5.833006198436279, - "c4": 6.4300831419563025, - "c5": 6.510321045067195, - "c6": 6.4763534462692025, - "c7": 6.54222039277616 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [222, 0, 59] }, @@ -17421,23 +17421,23 @@ "year": 1668, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -30.256948981239823, - "c2": -21.48400418605099, - "c3": 10.996063151925732, - "c4": -16.086078341619547, - "c5": -22.538243246791332, - "c6": -18.916008498422496, - "c7": 27.596943670955262 + "points": { + "c1": 1.163714645697418, + "c2": 20.972883446522765, + "c3": -29.48432203808543, + "c4": -31.164962525711484, + "c5": 25.835377200655635, + "c6": 27.686630171517017, + "c7": -10.856724350444448 }, - "vertexSeeds": { - "c1": 2.534599888870801, - "c2": 2.6012636514246448, - "c3": 2.732101711364562, - "c4": 2.435478035165087, - "c5": 2.6032856940053364, - "c6": 2.743837287133087, - "c7": 2.70932251161825 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751733, + "c3": 3.305594082293111, + "c4": 2.6444752658344886, + "c5": 1.9833564493758664, + "c6": 1.3222376329172443, + "c7": 0.6611188164586221 }, "rgb": [238, 201, 159] }, @@ -17448,23 +17448,23 @@ "year": 1668, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 31.854100111196658, - "c2": -3.3088308012509273, - "c3": -6.7823979770352345, - "c4": 27.454019177795637, - "c5": 25.655811235205036, - "c6": -35.32172422866699, - "c7": -14.72808888666302 + "points": { + "c1": 9.363054109286061, + "c2": -4.064466106861111, + "c3": 20.22338683883848, + "c4": 1.264980274552812, + "c5": -19.558422738862586, + "c6": 1.5431964332561634, + "c7": 4.525561800004354 }, - "vertexSeeds": { - "c1": 4.104710737105947, - "c2": 4.548737785008309, - "c3": 4.602944108951638, - "c4": 4.690293436927175, - "c5": 4.094239508809405, - "c6": 4.428515507780393, - "c7": 4.374340931957441 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814146, + "c3": 5.640314378178455, + "c4": 4.512251502542762, + "c5": 3.38418862690707, + "c6": 2.256125751271378, + "c7": 1.1280628756356854 }, "rgb": [222, 0, 59] }, @@ -17475,23 +17475,23 @@ "year": 1668, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": -24.376791820027286, - "c2": 21.56612474186234, - "c3": 24.517835690309056, - "c4": 43.959747663334284, - "c5": -8.33047275585757, - "c6": -34.26271287656877, - "c7": 28.55714954973294 + "points": { + "c1": -35.822685582446994, + "c2": 19.760041397587514, + "c3": -29.85017135480637, + "c4": -1.9711311340267486, + "c5": -19.712425697637133, + "c6": -7.036521827778543, + "c7": 31.921686604847736 }, - "vertexSeeds": { - "c1": 3.1127198932143836, - "c2": 3.3554416025842686, - "c3": 3.0212288268848004, - "c4": 3.003419824774943, - "c5": 3.0601132490092606, - "c6": 2.9803894623038176, - "c7": 3.2351256201619463 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.90984743411928, + "c3": 4.091539528432737, + "c4": 3.2732316227461853, + "c5": 2.45492371705964, + "c6": 1.6366158113730958, + "c7": 0.8183079056865447 }, "rgb": [222, 0, 59] }, @@ -17502,23 +17502,23 @@ "year": 1668, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -6.853974216129316, - "c2": 20.44569922353542, - "c3": 23.765806409654886, - "c4": -39.29540149742189, - "c5": 11.982091024848799, - "c6": -2.4936057450124878, - "c7": -24.340679050713682 + "points": { + "c1": -31.02683145092898, + "c2": 15.260288367712917, + "c3": 40.68791880133102, + "c4": 24.27674881332308, + "c5": 14.650004157283604, + "c6": -44.84377042547854, + "c7": -33.492197037936165 }, - "vertexSeeds": { - "c1": 6.3623460044310445, - "c2": 5.723191790448458, - "c3": 5.983807929083734, - "c4": 5.91126424117907, - "c5": 5.959438286099783, - "c6": 5.9072956420212845, - "c7": 6.497240648703222 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [58, 15, 49] }, @@ -17529,23 +17529,23 @@ "year": 1668, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -26.357615068404897, - "c2": 8.547553667565971, - "c3": 5.051096151383, - "c4": -23.323959910861525, - "c5": 13.443075072209666, - "c6": 13.235157862519571, - "c7": -5.16655339510184 + "points": { + "c1": -14.955027314540843, + "c2": -11.628969728835546, + "c3": 2.893532435605401, + "c4": 14.55914074417155, + "c5": -7.019884755426521, + "c6": -19.700271204636927, + "c7": -10.874942235714858 }, - "vertexSeeds": { - "c1": 2.446090081627715, - "c2": 2.4266852966218786, - "c3": 2.2152158605343044, - "c4": 2.257861457322284, - "c5": 2.2246593587190637, - "c6": 2.1896684048802175, - "c7": 2.4104779938608027 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690705, + "c3": 3.0282015718908912, + "c4": 2.4225612575127142, + "c5": 1.8169209431345352, + "c6": 1.211280628756356, + "c7": 0.6056403143781792 }, "rgb": [58, 15, 49] }, @@ -17556,23 +17556,23 @@ "year": 1669, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 40.267487547740615, - "c2": 35.931064998637765, - "c3": 18.484138466294915, - "c4": 17.7120133196539, - "c5": 37.73662457669289, - "c6": 40.84641967828968, - "c7": 18.559073029740055 + "points": { + "c1": 30.112150829306472, + "c2": 6.499330859297416, + "c3": 40.93199728331557, + "c4": -33.38051733781769, + "c5": -23.677674164833356, + "c6": -28.123164295719377, + "c7": -25.87032947313249 }, - "vertexSeeds": { - "c1": 4.260619184948325, - "c2": 4.260371239033343, - "c3": 4.018768104257148, - "c4": 4.187520682772174, - "c5": 4.340789452958073, - "c6": 4.031882634347919, - "c7": 4.410873931093445 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251039, + "c3": 5.316689782709204, + "c4": 4.253351826167362, + "c5": 3.1900138696255196, + "c6": 2.126675913083677, + "c7": 1.0633379565418422 }, "rgb": [86, 146, 138] }, @@ -17583,23 +17583,23 @@ "year": 1669, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -7.775788599510875, - "c2": -0.3950805021964001, - "c3": -35.829845098909736, - "c4": 20.59291265242831, - "c5": -28.70716315905556, - "c6": -37.842500669192766, - "c7": -20.086286911582835 + "points": { + "c1": -6.10095607073788, + "c2": 26.489474738976895, + "c3": -0.9401114472880892, + "c4": -3.550875530539834, + "c5": -36.937407609653995, + "c6": -35.12093790939939, + "c7": -4.5213921730792705 }, - "vertexSeeds": { - "c1": 10.535947235843329, - "c2": 9.753347813631798, - "c3": 10.153504166570684, - "c4": 9.64733999885051, - "c5": 10.10498049325212, - "c6": 9.990413025960407, - "c7": 10.419662371005955 + "offsets": { + "c1": 17.734627831715212, + "c2": 15.201109570041604, + "c3": 12.66759130836802, + "c4": 10.134073046694411, + "c5": 7.600554785020814, + "c6": 5.0670365233472054, + "c7": 2.533518261673609 }, "rgb": [222, 0, 59] }, @@ -17610,23 +17610,23 @@ "year": 1668, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 8.252008754431422, - "c2": -16.413422579671977, - "c3": -8.778520751668083, - "c4": -27.0851644429733, - "c5": 8.675437331876488, - "c6": 24.185902785113562, - "c7": -28.346190200124532 + "points": { + "c1": 9.585032365138204, + "c2": 7.222250388865746, + "c3": 9.458069552876559, + "c4": -6.242256035022827, + "c5": 19.563292641954902, + "c6": -3.343078453174556, + "c7": 16.85226330015074 }, - "vertexSeeds": { - "c1": 4.663426690213145, - "c2": 4.754699358155508, - "c3": 4.479438789091031, - "c4": 4.541847429680456, - "c5": 5.120581037813367, - "c6": 4.633213906734233, - "c7": 4.712102932738902 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.4618585298196916, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.243643088303281 }, "rgb": [86, 146, 138] }, @@ -17637,23 +17637,23 @@ "year": 1669, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -30.75176682114937, - "c2": 15.450707043690585, - "c3": -20.489378831134427, - "c4": 33.78782385893899, - "c5": 6.2059258314540955, - "c6": -21.31984865487712, - "c7": 15.429815527692178 + "points": { + "c1": 20.212148168299514, + "c2": -21.606210091271553, + "c3": 5.2867381012511885, + "c4": 35.035847540762745, + "c5": 13.58148081427715, + "c6": -25.877505797454383, + "c7": 7.548871497056453 }, - "vertexSeeds": { - "c1": 8.464945990356721, - "c2": 8.204384225005228, - "c3": 8.528052258832286, - "c4": 8.68805618225092, - "c5": 8.376624623156367, - "c6": 8.124004550267943, - "c7": 8.165973012489715 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [77, 76, 132] }, @@ -17664,23 +17664,23 @@ "year": 1669, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -19.671583245316544, - "c2": 30.876819669893436, - "c3": -4.429383448650956, - "c4": 22.29147928478759, - "c5": -16.6832450067073, - "c6": 15.913843897261827, - "c7": 1.0610129812592675 + "points": { + "c1": -29.786017333057465, + "c2": 8.467273307947146, + "c3": 23.77386560966108, + "c4": 5.7752567124547625, + "c5": -0.1243068460910095, + "c6": -34.37694894836826, + "c7": -27.443759029050675 }, - "vertexSeeds": { - "c1": 4.445161621520556, - "c2": 3.476439286754069, - "c3": 4.135918952194077, - "c4": 3.9295764437577523, - "c5": 4.648345806068427, - "c6": 4.249018075344765, - "c7": 4.5710434993775415 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [238, 201, 159] }, @@ -17691,23 +17691,23 @@ "year": 1669, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 16.945777584456778, - "c2": 14.609632844853941, - "c3": -2.2539404234608256, - "c4": -10.201978785508079, - "c5": 1.6278434232232044, - "c6": 30.728406198286464, - "c7": -15.80132210677121 + "points": { + "c1": -27.91513458570822, + "c2": -13.525504265348367, + "c3": 30.870360411261686, + "c4": -3.5325587288301534, + "c5": -31.880408932195355, + "c6": 23.100753653973165, + "c7": -36.56422382493846 }, - "vertexSeeds": { - "c1": 2.7917943205081337, - "c2": 2.574187271204737, - "c3": 2.798336747709688, - "c4": 2.772325875235174, - "c5": 2.5866955337792583, - "c6": 2.504803324328171, - "c7": 2.762716155189067 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912621, + "c3": 3.398058252427185, + "c4": 2.718446601941749, + "c5": 2.0388349514563124, + "c6": 1.359223300970876, + "c7": 0.6796116504854396 }, "rgb": [86, 146, 138] }, @@ -17718,23 +17718,23 @@ "year": 1669, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -11.606654981538842, - "c2": -27.22364423607642, - "c3": 26.16749860676075, - "c4": -10.361688969563446, - "c5": 13.535528314283415, - "c6": -12.587918411831565, - "c7": -16.391206953399 + "points": { + "c1": -27.067571468268948, + "c2": -9.284308763739883, + "c3": -2.213272326078581, + "c4": 13.798402539789837, + "c5": 8.125641361359154, + "c6": 1.228052363100197, + "c7": 7.296943961697668 }, - "vertexSeeds": { - "c1": 2.328990475642489, - "c2": 2.418230187859307, - "c3": 2.4315699727229654, - "c4": 2.1870269588314613, - "c5": 2.3529384935613793, - "c6": 2.2579186474721693, - "c7": 2.282535457080746 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269069, + "c3": 3.028201571890892, + "c4": 2.422561257512715, + "c5": 1.8169209431345346, + "c6": 1.2112806287563576, + "c7": 0.6056403143781771 }, "rgb": [222, 0, 59] }, @@ -17745,23 +17745,23 @@ "year": 1669, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 21.987707988544155, - "c2": -27.340386581117453, - "c3": 4.554948943935855, - "c4": -18.79074376557219, - "c5": -24.117551168951543, - "c6": -22.88853153719013, - "c7": 13.601053075744456 + "points": { + "c1": 19.47519206860139, + "c2": 6.14377480714008, + "c3": -11.851448776354534, + "c4": -13.573285838198801, + "c5": 27.633194415251882, + "c6": -7.786851091603893, + "c7": -15.774413477933662 }, - "vertexSeeds": { - "c1": 9.39743267340763, - "c2": 9.175156722021256, - "c3": 9.177453628563988, - "c4": 9.988641842629233, - "c5": 9.738784548088178, - "c6": 9.330311365719927, - "c7": 9.512415498461694 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081828, + "c3": 12.690707350901523, + "c4": 10.152565880721214, + "c5": 7.614424410540921, + "c6": 5.076282940360614, + "c7": 2.538141470180307 }, "rgb": [86, 146, 138] }, @@ -17772,23 +17772,23 @@ "year": 1669, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 25.525769555617835, - "c2": 17.66621217618919, - "c3": -20.689293837072455, - "c4": -21.69848089476212, - "c5": -24.86977871349677, - "c6": -22.71877034633609, - "c7": 12.594077715594175 + "points": { + "c1": -25.762426561095303, + "c2": -16.797896375354593, + "c3": -6.4787393114572005, + "c4": -28.78822122566774, + "c5": -5.886204973052628, + "c6": -18.017622909652466, + "c7": -25.240485178774605 }, - "vertexSeeds": { - "c1": 8.14542355315533, - "c2": 6.84310425917088, - "c3": 5.825696136278783, - "c4": 6.537644470285772, - "c5": 7.1911369733733395, - "c6": 5.975251769730195, - "c7": 7.287625866909998 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973646, + "c3": 9.754969949144702, + "c4": 7.8039759593157605, + "c5": 5.852981969486823, + "c6": 3.9019879796578802, + "c7": 1.9509939898289375 }, "rgb": [238, 201, 159] }, @@ -17799,23 +17799,23 @@ "year": 1669, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 44.57703280681909, - "c2": -44.972436145777046, - "c3": -15.721976147310816, - "c4": 40.73212787031966, - "c5": 13.483971257941164, - "c6": -3.7212267024043086, - "c7": 7.885922541769318 + "points": { + "c1": -38.22198877503419, + "c2": 28.25822838451353, + "c3": 22.46665873305011, + "c4": 2.259666276352874, + "c5": 18.287499398718325, + "c6": 33.881129617137574, + "c7": 19.13270040182867 }, - "vertexSeeds": { - "c1": 0.493761538616618, - "c2": 0.5500435338712816, - "c3": 0.5536472805362707, - "c4": 0.506464844688802, - "c5": 0.5085243506894701, - "c6": 0.5181512165238259, - "c7": 0.511291062210112 + "offsets": { + "c1": 0.9708737864077669, + "c2": 0.8321775312066575, + "c3": 0.693481276005548, + "c4": 0.5547850208044386, + "c5": 0.4160887656033283, + "c6": 0.2773925104022189, + "c7": 0.13869625520110945 }, "rgb": [58, 15, 49] }, @@ -17826,23 +17826,23 @@ "year": 1669, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 17.004282726878714, - "c2": 11.164437861169787, - "c3": 3.311341427927111, - "c4": -6.138689734624862, - "c5": 33.34843840178448, - "c6": -8.507321579535734, - "c7": 5.682582477052861 + "points": { + "c1": -36.0702975743756, + "c2": 22.096800234156063, + "c3": -3.5977475252383755, + "c4": -7.604239767076169, + "c5": -16.69775415794726, + "c6": 34.35160732389757, + "c7": -31.80592551033413 }, - "vertexSeeds": { - "c1": 5.4476270072138755, - "c2": 5.117485538322043, - "c3": 6.11992811602401, - "c4": 6.395464295975577, - "c5": 5.755214848050669, - "c6": 5.847969361651538, - "c7": 5.9121440068788305 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554786, + "c3": 7.7901063337956575, + "c4": 6.232085067036521, + "c5": 4.674063800277393, + "c6": 3.116042533518265, + "c7": 1.5580212667591284 }, "rgb": [58, 15, 49] }, @@ -17853,23 +17853,23 @@ "year": 1669, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -18.84285001588886, - "c2": -8.322976379347388, - "c3": -5.555110861224506, - "c4": 5.599258728186761, - "c5": 15.158675794096247, - "c6": 1.2435249630323817, - "c7": -25.920472322374483 + "points": { + "c1": 20.91807571539197, + "c2": -14.293795417217932, + "c3": -3.5325646793132535, + "c4": -9.205350412802165, + "c5": -1.740090154351904, + "c6": -7.320812111024377, + "c7": -13.183275902204544 }, - "vertexSeeds": { - "c1": 7.697680618542894, - "c2": 8.19817771256805, - "c3": 7.612564112939693, - "c4": 8.177169446344271, - "c5": 8.33930092803899, - "c6": 8.716526385388931, - "c7": 8.038516290367768 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [77, 76, 132] }, @@ -17880,23 +17880,23 @@ "year": 1669, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -27.894419659855895, - "c2": -12.768447584845838, - "c3": 28.360451162111048, - "c4": 4.603452654455751, - "c5": 10.712806300820048, - "c6": -6.986562425496448, - "c7": 0.5299939598754051 + "points": { + "c1": 12.318763612230278, + "c2": -3.1693956329549025, + "c3": -26.56840383900769, + "c4": -14.980373578952513, + "c5": 27.721062471266592, + "c6": -8.075662128430704, + "c7": 3.851147833044884 }, - "vertexSeeds": { - "c1": 9.383462466560916, - "c2": 9.8993816164052, - "c3": 8.924652447017966, - "c4": 9.588332122212543, - "c5": 9.870952128357217, - "c6": 9.417162025446244, - "c7": 9.661457735734544 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915398, + "c3": 12.0203421174295, + "c4": 9.616273693943588, + "c5": 7.212205270457692, + "c6": 4.808136846971794, + "c7": 2.404068423485897 }, "rgb": [58, 15, 49] }, @@ -17907,23 +17907,23 @@ "year": 1670, "resistanceReported": false, "duration": 61257600, - "curveSeeds": { - "c1": 71.61439808551572, - "c2": 19.807189840698612, - "c3": -13.5481415317116, - "c4": 50.94328220159139, - "c5": 24.519394384094596, - "c6": 55.458273391681274, - "c7": 41.53157301064405 + "points": { + "c1": -16.341041213436647, + "c2": -2.6405094058331144, + "c3": -15.153798908702264, + "c4": 14.79448481481468, + "c5": 68.97293369022191, + "c6": -76.80542171427834, + "c7": 32.284300627404164 }, - "vertexSeeds": { - "c1": 5.628305479421433, - "c2": 6.192922777081479, - "c3": 5.349882985272091, - "c4": 6.171924956226058, - "c5": 5.668705907382196, - "c6": 5.923723411544076, - "c7": 6.111798750485642 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554786, + "c3": 7.7901063337956575, + "c4": 6.232085067036521, + "c5": 4.674063800277393, + "c6": 3.116042533518265, + "c7": 1.5580212667591284 }, "rgb": [77, 76, 132] }, @@ -17934,23 +17934,23 @@ "year": 1669, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 42.890769228326505, - "c2": 12.079138669082013, - "c3": 36.349753991835755, - "c4": 14.639532149558207, - "c5": 30.28389908839074, - "c6": 43.25912245582032, - "c7": -1.7613650157550254 + "points": { + "c1": -37.83452134219699, + "c2": -24.6483805130153, + "c3": 2.0159902626186508, + "c4": -47.80668718845149, + "c5": 38.249468317512864, + "c6": -24.802841862183787, + "c7": -2.6298556517411953 }, - "vertexSeeds": { - "c1": 4.874880959430604, - "c2": 5.124969789734725, - "c3": 5.08835919705452, - "c4": 5.236181156714788, - "c5": 4.63509257763988, - "c6": 4.934959737371075, - "c7": 5.203338824675718 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.310679611650487, + "c4": 5.048543689320387, + "c5": 3.7864077669902905, + "c6": 2.5242718446601935, + "c7": 1.2621359223300967 }, "rgb": [238, 201, 159] }, @@ -17961,23 +17961,23 @@ "year": 1669, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": 9.850105218792848, - "c2": 42.127740564013806, - "c3": -5.499448793625746, - "c4": 14.972109922984913, - "c5": 22.764670530410342, - "c6": 15.801212477670013, - "c7": 46.70793307044059 + "points": { + "c1": 25.36987607203062, + "c2": 8.70617910855843, + "c3": -16.613810831521135, + "c4": 9.12832286794331, + "c5": 7.619242905892172, + "c6": 12.088129519754517, + "c7": 26.68475059991158 }, - "vertexSeeds": { - "c1": 8.573696493289125, - "c2": 8.664019480853424, - "c3": 8.384357270405937, - "c4": 8.537185412248746, - "c5": 8.115505216288247, - "c6": 8.61203462958622, - "c7": 8.674783957304282 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [222, 0, 59] }, @@ -17988,23 +17988,23 @@ "year": 1669, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -8.801562857152462, - "c2": -29.855705697831397, - "c3": -28.689731157351375, - "c4": -0.8912281337584069, - "c5": -26.272637187442893, - "c6": -17.47468525545585, - "c7": -24.879863841630012 + "points": { + "c1": 14.831364492098544, + "c2": -23.931813439177688, + "c3": -12.483560916826892, + "c4": -16.79212765216307, + "c5": 14.806472926383321, + "c6": 26.78132086690065, + "c7": -20.18044316208006 }, - "vertexSeeds": { - "c1": 4.351324961082593, - "c2": 4.685898091824742, - "c3": 4.669710488211182, - "c4": 4.86587088556514, - "c5": 4.370879782357926, - "c6": 5.138324298112057, - "c7": 4.27703966493652 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.310679611650487, + "c4": 5.048543689320387, + "c5": 3.7864077669902905, + "c6": 2.5242718446601935, + "c7": 1.2621359223300967 }, "rgb": [86, 146, 138] }, @@ -18015,23 +18015,23 @@ "year": 1669, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 31.913276807154844, - "c2": 3.2294896498573635, - "c3": 20.867276960072374, - "c4": 2.5906204636667454, - "c5": 21.762429887852065, - "c6": -6.178680504186843, - "c7": 45.28186850350825 + "points": { + "c1": 16.53403638039886, + "c2": 24.104598386837708, + "c3": -2.7591376740237905, + "c4": 6.674747011258731, + "c5": -43.51839404248813, + "c6": -4.640331454930958, + "c7": 28.59649373468865 }, - "vertexSeeds": { - "c1": 8.496293156037083, - "c2": 7.726195342206942, - "c3": 7.804412923519285, - "c4": 8.276141233367133, - "c5": 7.797793434948071, - "c6": 7.653963307876319, - "c7": 8.788891707020762 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [86, 146, 138] }, @@ -18042,23 +18042,23 @@ "year": 1669, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 12.08502510631046, - "c2": 4.203581170066386, - "c3": -34.094172698753226, - "c4": 40.57124153526184, - "c5": -22.210888238574228, - "c6": 37.215566537906206, - "c7": 0.35472181015363446 + "points": { + "c1": -0.9978160805932177, + "c2": 5.964569329614264, + "c3": -12.465198345912171, + "c4": -37.90309326461062, + "c5": -29.18356086530477, + "c6": 37.882809803983484, + "c7": -7.7009342437582475 }, - "vertexSeeds": { - "c1": 8.7490474040372, - "c2": 9.67643383858282, - "c3": 8.77258618363085, - "c4": 9.206905833130739, - "c5": 8.876593232687087, - "c6": 9.977011335023668, - "c7": 9.472437683471544 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076294, + "c3": 12.112806287563567, + "c4": 9.69024503005085, + "c5": 7.267683772538136, + "c6": 4.845122515025419, + "c7": 2.422561257512703 }, "rgb": [86, 146, 138] }, @@ -18069,23 +18069,23 @@ "year": 1670, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": -1.56282424778518, - "c2": -54.845697764643674, - "c3": -28.519876405530173, - "c4": -17.32637783790191, - "c5": 32.6397206409847, - "c6": -7.106078001899583, - "c7": 10.576775944105727 + "points": { + "c1": 53.81520396740559, + "c2": 22.630035680018402, + "c3": -55.08750132918152, + "c4": 34.817144769734675, + "c5": -53.23379919116174, + "c6": 6.735489058824534, + "c7": 41.46627851044291 }, - "vertexSeeds": { - "c1": 5.85711434643738, - "c2": 6.227033745964379, - "c3": 5.895988812524149, - "c4": 5.730038432141311, - "c5": 5.637141626581301, - "c6": 6.3558301234393015, - "c7": 6.5247672287534355 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [58, 15, 49] }, @@ -18096,23 +18096,23 @@ "year": 1669, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -32.367296006310326, - "c2": -32.51352777447322, - "c3": -33.63522861597536, - "c4": 33.350372367529296, - "c5": -33.8342191036506, - "c6": -32.672978160314955, - "c7": -2.2167963636504737 + "points": { + "c1": 31.953083343644714, + "c2": 43.58414180171997, + "c3": 6.090256014093924, + "c4": 38.85118401500403, + "c5": -27.21348026909587, + "c6": -21.959373358427303, + "c7": -0.3265260512758701 }, - "vertexSeeds": { - "c1": 5.8900664589579526, - "c2": 6.320646905753658, - "c3": 6.092906842291751, - "c4": 6.468159070300264, - "c5": 6.13132091226913, - "c6": 6.148829964766629, - "c7": 6.461903596660814 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [222, 0, 59] }, @@ -18123,23 +18123,23 @@ "year": 1670, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 17.35569482798492, - "c2": -1.170197030675709, - "c3": 26.08452362212286, - "c4": 1.538876712197272, - "c5": -33.45849433350993, - "c6": -46.99839137621753, - "c7": -15.023858649270544 + "points": { + "c1": 39.204705246784016, + "c2": 50.55790238322105, + "c3": 18.00771170447763, + "c4": 6.555273335409176, + "c5": -49.822138812500135, + "c6": -12.70269444530603, + "c7": 18.45058627341595 }, - "vertexSeeds": { - "c1": 1.939061083340774, - "c2": 1.980806037629628, - "c3": 1.9966923479126009, - "c4": 1.8827228095430648, - "c5": 1.8484325593341222, - "c6": 2.0042653948620313, - "c7": 1.990445812537898 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.5427646786870075, + "c4": 2.034211742949606, + "c5": 1.5256588072122033, + "c6": 1.0171058714748045, + "c7": 0.5085529357374022 }, "rgb": [58, 15, 49] }, @@ -18150,23 +18150,23 @@ "year": 1669, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 31.456734707357036, - "c2": -28.372382838853504, - "c3": 25.027964989110735, - "c4": -23.15854960118403, - "c5": -31.900855638455283, - "c6": 19.525034501174346, - "c7": 8.820270495915373 + "points": { + "c1": 16.133600080095697, + "c2": 8.458734883068715, + "c3": -21.52529784216609, + "c4": -18.925261767355593, + "c5": 19.920675332480748, + "c6": 11.49030548747546, + "c7": -15.537625064080245 }, - "vertexSeeds": { - "c1": 7.742702272955478, - "c2": 5.833651780047261, - "c3": 7.837271991682841, - "c4": 7.666500139321392, - "c5": 7.8177934412108545, - "c6": 6.685373115535101, - "c7": 5.99606983137438 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [77, 76, 132] }, @@ -18177,23 +18177,23 @@ "year": 1670, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -1.3309660214057146, - "c2": -9.30183032833615, - "c3": 0.27828104493329775, - "c4": 6.741985737974563, - "c5": -1.92560552821978, - "c6": -0.31419886227507376, - "c7": 16.42090158413893 + "points": { + "c1": 12.846581462471669, + "c2": -13.548912609814028, + "c3": -0.8466046163280048, + "c4": 1.2980055696585673, + "c5": 3.7854364346194913, + "c6": -14.749896203203676, + "c7": 5.555376991363559 }, - "vertexSeeds": { - "c1": 8.165650773253505, - "c2": 7.677041515695745, - "c3": 8.354304557931313, - "c4": 8.546359151119304, - "c5": 7.981937395344097, - "c6": 7.774422314729193, - "c7": 8.021481191598237 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [238, 201, 159] }, @@ -18204,23 +18204,23 @@ "year": 1670, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 13.082676501402268, - "c2": -3.154369276770421, - "c3": -16.59804967126179, - "c4": 13.09853147804749, - "c5": 2.8920230035844767, - "c6": 7.359759805042472, - "c7": 4.971450214240914 + "points": { + "c1": -11.242227986334731, + "c2": 13.434894030034052, + "c3": 9.911009679791405, + "c4": 19.786810346253198, + "c5": 8.348997680098236, + "c6": -20.65616237211584, + "c7": -14.809247754541381 }, - "vertexSeeds": { - "c1": 4.088409510968462, - "c2": 4.490623577931377, - "c3": 3.5859659788223386, - "c4": 3.4525160607061887, - "c5": 4.157403507381404, - "c6": 4.167579632954055, - "c7": 4.209864986093503 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015258, + "c3": 5.755894590846049, + "c4": 4.604715672676837, + "c5": 3.4535367545076276, + "c6": 2.3023578363384183, + "c7": 1.1511789181692091 }, "rgb": [86, 146, 138] }, @@ -18231,23 +18231,23 @@ "year": 1670, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -4.359764581689477, - "c2": 14.907279828178467, - "c3": -18.594002446940895, - "c4": 5.626960018615506, - "c5": -13.393341084484966, - "c6": -16.08228469570543, - "c7": 6.21253101227941 + "points": { + "c1": 13.131595813445962, + "c2": -17.501650694428456, + "c3": 10.453496326238934, + "c4": -4.72719380697791, + "c5": -9.442614312794479, + "c6": -4.677338671694269, + "c7": -20.19292603735686 }, - "vertexSeeds": { - "c1": 6.534656280323803, - "c2": 6.184370693690283, - "c3": 6.227459042041847, - "c4": 6.307095970699259, - "c5": 6.2548753071750145, - "c6": 5.77952787398024, - "c7": 6.095754163312391 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -18258,23 +18258,23 @@ "year": 1670, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": -29.08854854116781, - "c2": 40.498148706481054, - "c3": -22.21886300424162, - "c4": -0.9477826227804442, - "c5": 33.5301503912605, - "c6": -28.152405859091264, - "c7": -24.008004347101277 + "points": { + "c1": -8.492532045543939, + "c2": 16.439607105620986, + "c3": -47.78153662170895, + "c4": -40.86074466249534, + "c5": 46.28794953416544, + "c6": 31.997577102125042, + "c7": -48.5220614301604 }, - "vertexSeeds": { - "c1": 6.0447580821899045, - "c2": 5.896876339452563, - "c3": 6.5354994816718985, - "c4": 6.431579088545567, - "c5": 6.538125059327038, - "c6": 6.053705708121731, - "c7": 6.313340126357961 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [58, 15, 49] }, @@ -18285,23 +18285,23 @@ "year": 1670, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 33.838035150140755, - "c2": 2.041988752161828, - "c3": 14.061062861112283, - "c4": 31.823325692053032, - "c5": -27.60893748083349, - "c6": -7.292964761498567, - "c7": 7.1512234660271545 + "points": { + "c1": 4.180418327971161, + "c2": -30.19938419806668, + "c3": -26.202288573845983, + "c4": -11.160625373945983, + "c5": -23.253106838794736, + "c6": 6.373122410705449, + "c7": -2.1473684970533284 }, - "vertexSeeds": { - "c1": 7.754596252760839, - "c2": 5.686881803524962, - "c3": 6.184528237174894, - "c4": 5.620304954159234, - "c5": 7.395288386759225, - "c6": 5.959581084911545, - "c7": 7.197463865576724 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.42857142857143, + "c3": 9.523809523809526, + "c4": 7.619047619047622, + "c5": 5.714285714285718, + "c6": 3.809523809523808, + "c7": 1.904761904761904 }, "rgb": [77, 76, 132] }, @@ -18312,23 +18312,23 @@ "year": 1670, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 2.8867627289279127, - "c2": 0.7541021465545015, - "c3": 39.15528156925653, - "c4": 17.037142981253538, - "c5": -10.202075536747664, - "c6": -30.699467832035538, - "c7": 15.918880914411183 + "points": { + "c1": -0.4526967718589958, + "c2": 14.835670581266498, + "c3": -40.67839952950502, + "c4": 41.813462688760055, + "c5": -1.0342764820058008, + "c6": 40.668118931608575, + "c7": -1.9639090517567155 }, - "vertexSeeds": { - "c1": 10.451254346829948, - "c2": 9.123643958978326, - "c3": 9.921019704738665, - "c4": 8.636153000966495, - "c5": 9.667792904880862, - "c6": 9.74837151357464, - "c7": 10.69100507195588 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644945, + "c3": 13.01433194637078, + "c4": 10.411465557096621, + "c5": 7.808599167822464, + "c6": 5.205732778548306, + "c7": 2.602866389274149 }, "rgb": [77, 76, 132] }, @@ -18339,23 +18339,23 @@ "year": 1670, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 2.340068669613135, - "c2": 6.2516471395560025, - "c3": 24.39433326721718, - "c4": 1.9113940080001974, - "c5": -27.7332791649881, - "c6": -21.475575145729827, - "c7": 22.793772177805753 + "points": { + "c1": 19.307646138701223, + "c2": -15.715932480709935, + "c3": -29.58634687730949, + "c4": 19.20126815475819, + "c5": 21.039791563391866, + "c6": -10.442872502649688, + "c7": -0.33958992520875597 }, - "vertexSeeds": { - "c1": 7.340096173467689, - "c2": 7.365164705203975, - "c3": 8.28703625212912, - "c4": 7.791270055874849, - "c5": 7.59419292533079, - "c6": 8.19963606466318, - "c7": 6.760274567195029 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456314, + "c3": 10.032362459546924, + "c4": 8.025889967637543, + "c5": 6.0194174757281615, + "c6": 4.012944983818771, + "c7": 2.0064724919093897 }, "rgb": [222, 0, 59] }, @@ -18366,23 +18366,23 @@ "year": 1671, "resistanceReported": false, "duration": 45446400, - "curveSeeds": { - "c1": 54.51740680645103, - "c2": 11.834333260177466, - "c3": -35.23477836115147, - "c4": -0.503828014346702, - "c5": 1.0749653249078932, - "c6": -29.93775446185091, - "c7": -16.834739270578723 + "points": { + "c1": -14.810297883689088, + "c2": 33.530762602534175, + "c3": 33.442726899018645, + "c4": -1.3923455948210588, + "c5": -58.18214372491078, + "c6": -52.27740061543752, + "c7": -43.61891891886143 }, - "vertexSeeds": { - "c1": 8.13159780843282, - "c2": 8.466351062562563, - "c3": 8.579144212365472, - "c4": 7.994046212841492, - "c5": 8.13195785643766, - "c6": 8.058835795731467, - "c7": 8.530616043699883 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [86, 146, 138] }, @@ -18393,23 +18393,23 @@ "year": 1671, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 13.03393140834224, - "c2": 37.03782044878435, - "c3": -13.03099902443492, - "c4": 7.128201835986538, - "c5": 38.891070053939366, - "c6": -2.389554015627553, - "c7": -25.713600331691495 + "points": { + "c1": -36.630291416529424, + "c2": -25.81122386753927, + "c3": 21.00560526104303, + "c4": -22.02887341673204, + "c5": 10.7177728482392, + "c6": -24.234722947378625, + "c7": 16.157625408174177 }, - "vertexSeeds": { - "c1": 4.086272105464702, - "c2": 3.22800172364919, - "c3": 3.1776778742388574, - "c4": 3.255737742213465, - "c5": 3.1378458008970376, - "c6": 3.514619410953094, - "c7": 3.1001335916565447 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.35228848821082, + "c3": 5.293573740175682, + "c4": 4.234858992140544, + "c5": 3.17614424410541, + "c6": 2.1174294960702755, + "c7": 1.0587147480351378 }, "rgb": [58, 15, 49] }, @@ -18420,23 +18420,23 @@ "year": 1671, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -4.771209598873938, - "c2": -25.277498224386054, - "c3": 4.861195384547173, - "c4": 6.270698929648397, - "c5": -9.013120340935288, - "c6": 8.369409142606322, - "c7": 32.14625383840881 + "points": { + "c1": 21.918146175693884, + "c2": 8.073954977013791, + "c3": -28.185234575621244, + "c4": 27.483429991983968, + "c5": -9.576456699516608, + "c6": -3.53106573553287, + "c7": -18.647655157063113 }, - "vertexSeeds": { - "c1": 3.2012538258702232, - "c2": 4.064633755313786, - "c3": 3.8649885470011935, - "c4": 3.1559883237479665, - "c5": 4.094168879553473, - "c6": 3.6544294991750514, - "c7": 4.065027747866847 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130374, + "c3": 5.247341655108645, + "c4": 4.197873324086916, + "c5": 3.148404993065187, + "c6": 2.098936662043458, + "c7": 1.049468331021729 }, "rgb": [77, 76, 132] }, @@ -18447,23 +18447,23 @@ "year": 1671, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -16.9494106838628, - "c2": 12.142804370872817, - "c3": 29.535926881751116, - "c4": -23.946513894340775, - "c5": 21.613139456649826, - "c6": 21.432262380332915, - "c7": -7.642782258976268 + "points": { + "c1": -0.7795388957637428, + "c2": 27.805920003135846, + "c3": -28.64264841631674, + "c4": 2.149253985409075, + "c5": 37.311928941286176, + "c6": -26.532103242125174, + "c7": -31.790499760399996 }, - "vertexSeeds": { - "c1": 1.3142859179130149, - "c2": 1.283096370920716, - "c3": 1.2226916315078913, - "c4": 1.2825807447615716, - "c5": 1.267254274709455, - "c6": 1.057950502122133, - "c7": 1.0554764454705874 + "offsets": { + "c1": 2.2977346278317152, + "c2": 1.969486823855756, + "c3": 1.6412390198797966, + "c4": 1.3129912159038373, + "c5": 0.984743411927878, + "c6": 0.6564956079519186, + "c7": 0.3282478039759593 }, "rgb": [77, 76, 132] }, @@ -18474,23 +18474,23 @@ "year": 1671, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -9.020145493054645, - "c2": 20.147128315456563, - "c3": -24.200034143393765, - "c4": -15.033979870086384, - "c5": -21.168460976896867, - "c6": -17.314556648299774, - "c7": 35.67027800123108 + "points": { + "c1": -32.67730516137186, + "c2": 9.903640825288399, + "c3": 11.956358702473352, + "c4": -16.435872707430903, + "c5": 27.360643133659565, + "c6": -36.059118177826655, + "c7": 35.16789045990768 }, - "vertexSeeds": { - "c1": 1.3682017760700995, - "c2": 1.3718922104769833, - "c3": 1.1105401643350128, - "c4": 1.106701975229413, - "c5": 1.020266511160013, - "c6": 1.243504907609702, - "c7": 1.0062956947795254 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.997226074895978, + "c3": 1.6643550624133157, + "c4": 1.3314840499306515, + "c5": 0.998613037447989, + "c6": 0.6657420249653266, + "c7": 0.3328710124826633 }, "rgb": [77, 76, 132] }, @@ -18501,23 +18501,23 @@ "year": 1671, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 20.072897997852632, - "c2": -3.302082365309868, - "c3": -24.729648238111896, - "c4": 9.443291842684655, - "c5": 28.13544586880138, - "c6": 4.297255319461502, - "c7": -3.0635648619007902 + "points": { + "c1": 30.953749796695284, + "c2": -3.7748277678184508, + "c3": 14.734682561850676, + "c4": 13.175779255128326, + "c5": 20.17442342187264, + "c6": -30.560197722694024, + "c7": 10.221724332013743 }, - "vertexSeeds": { - "c1": 5.955426153126246, - "c2": 6.437330818330324, - "c3": 5.931787348086943, - "c4": 5.993459865370911, - "c5": 6.395442585254797, - "c6": 6.3954279441241155, - "c7": 6.270273489363159 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [238, 201, 159] }, @@ -18528,23 +18528,23 @@ "year": 1671, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -12.567169959228114, - "c2": 3.395708893478016, - "c3": 26.410814219635984, - "c4": 14.438495841516225, - "c5": -25.930969634894435, - "c6": 7.161848235008758, - "c7": 16.481198345954812 + "points": { + "c1": 2.8347483510505462, + "c2": -23.726804456468127, + "c3": -22.446559443378995, + "c4": -9.028678898555555, + "c5": 12.524577270678886, + "c6": 0.20191429950445894, + "c7": -3.28878061623211 }, - "vertexSeeds": { - "c1": 6.2502785541715635, - "c2": 6.094065133375988, - "c3": 6.288359392668914, - "c4": 5.779286730589731, - "c5": 6.0351712339078105, - "c6": 6.161783713458607, - "c7": 6.326978742829387 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -18555,23 +18555,23 @@ "year": 1671, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -3.9810877613178945, - "c2": -13.26730384332388, - "c3": 9.860734328624819, - "c4": -16.924417747156753, - "c5": 10.322855103910225, - "c6": 9.444946827403303, - "c7": -13.527795116413433 + "points": { + "c1": 11.100520324931278, + "c2": -9.989236607059645, + "c3": -10.77852789956263, + "c4": -18.517706985125187, + "c5": 26.821423989272528, + "c6": -5.447856374702152, + "c7": -10.065792973867918 }, - "vertexSeeds": { - "c1": 8.656808410640263, - "c2": 8.599780232294234, - "c3": 8.514125132043002, - "c4": 8.195452333532325, - "c5": 7.919680487885089, - "c6": 8.569716165795002, - "c7": 8.225581370531964 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [77, 76, 132] }, @@ -18582,23 +18582,23 @@ "year": 1671, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 9.30147379834326, - "c2": -11.34837922596433, - "c3": 29.548631139490972, - "c4": 1.5455499011139153, - "c5": 5.611918560403133, - "c6": 34.588950305694574, - "c7": -26.481015285074307 + "points": { + "c1": 13.589009740181261, + "c2": 29.515248188495427, + "c3": 30.826102757208183, + "c4": -2.7342562218379314, + "c5": -1.5611613827994972, + "c6": -9.28378251808536, + "c7": -33.66237464457729 }, - "vertexSeeds": { - "c1": 8.359410142005357, - "c2": 7.592202547892431, - "c3": 8.457188594933486, - "c4": 8.423139014001496, - "c5": 7.663740203809083, - "c6": 8.681865360533624, - "c7": 8.103067707481546 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [86, 146, 138] }, @@ -18609,23 +18609,23 @@ "year": 1671, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": -42.02482921044052, - "c2": -11.268919996314224, - "c3": 20.546615123937784, - "c4": -52.70802292105483, - "c5": -6.36806263298967, - "c6": -48.27197862090671, - "c7": 40.80603155719555 + "points": { + "c1": -4.451750966625752, + "c2": 28.74486899498244, + "c3": 35.03658381236738, + "c4": -54.75699764019966, + "c5": -40.10275537052723, + "c6": 34.68501539043854, + "c7": 9.378602530528141 }, - "vertexSeeds": { - "c1": 5.712779670485429, - "c2": 5.586493939020666, - "c3": 5.224843825249684, - "c4": 5.660119430241346, - "c5": 5.992867288774031, - "c6": 5.609111564435793, - "c7": 6.1720398064654285 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554786, + "c3": 7.7901063337956575, + "c4": 6.232085067036521, + "c5": 4.674063800277393, + "c6": 3.116042533518265, + "c7": 1.5580212667591284 }, "rgb": [77, 76, 132] }, @@ -18636,23 +18636,23 @@ "year": 1671, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -32.65310867256781, - "c2": -10.70273939419857, - "c3": -39.32546898260078, - "c4": 38.13989062688775, - "c5": 29.921947353867296, - "c6": 36.45088976114671, - "c7": 31.452343242306 + "points": { + "c1": 27.630456810181343, + "c2": -4.2140780703264085, + "c3": 3.656191753901396, + "c4": -30.360893554939757, + "c5": -32.40776854907426, + "c6": -33.212508500170316, + "c7": -23.03821524007374 }, - "vertexSeeds": { - "c1": 4.47213459120806, - "c2": 4.176846024262066, - "c3": 4.296251744274947, - "c4": 4.688662107965027, - "c5": 5.171099696596257, - "c6": 4.478018828756732, - "c7": 4.1964747138100105 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.310679611650487, + "c4": 5.048543689320387, + "c5": 3.7864077669902905, + "c6": 2.5242718446601935, + "c7": 1.2621359223300967 }, "rgb": [222, 0, 59] }, @@ -18663,23 +18663,23 @@ "year": 1671, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -25.580816600944424, - "c2": 38.642163643943476, - "c3": 12.748641327205782, - "c4": 11.98482932257096, - "c5": -3.0429672234890646, - "c6": -9.1347730755496, - "c7": 33.00352655851684 + "points": { + "c1": 9.44181743137851, + "c2": 35.577670437629266, + "c3": -26.28787291599956, + "c4": -40.5657894086136, + "c5": -4.769381899709252, + "c6": 0.4791233223029252, + "c7": 26.395359945160052 }, - "vertexSeeds": { - "c1": 5.500200671173465, - "c2": 6.244057583180145, - "c3": 5.753745735847035, - "c4": 5.071486510459145, - "c5": 6.122874321072039, - "c6": 5.794629413366699, - "c7": 6.034643580630716 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554786, + "c3": 7.7901063337956575, + "c4": 6.232085067036521, + "c5": 4.674063800277393, + "c6": 3.116042533518265, + "c7": 1.5580212667591284 }, "rgb": [77, 76, 132] }, @@ -18690,23 +18690,23 @@ "year": 1671, "resistanceReported": false, "duration": 6912000, - "curveSeeds": { - "c1": 14.171055976107649, - "c2": 7.066735378946181, - "c3": 9.519521782701492, - "c4": 5.531346401967333, - "c5": -14.215495692386195, - "c6": 5.4463582653749825, - "c7": 16.288493373664892 + "points": { + "c1": 6.756598870646709, + "c2": 7.793946448637943, + "c3": -6.52695609442854, + "c4": -15.765925287082963, + "c5": 4.086353723344967, + "c6": -13.503154557643239, + "c7": -18.72421546072053 }, - "vertexSeeds": { - "c1": 6.4915727546421955, - "c2": 6.201494014800757, - "c3": 5.9722975280049475, - "c4": 5.918032970806086, - "c5": 6.200593709947029, - "c6": 5.893885112255656, - "c7": 5.654037063949193 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [86, 146, 138] }, @@ -18717,23 +18717,23 @@ "year": 1671, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -43.63313747171989, - "c2": -19.835479550802877, - "c3": 38.840386592808265, - "c4": 11.768659964892812, - "c5": 28.535171217842922, - "c6": 34.86294891616851, - "c7": -38.06200954248997 + "points": { + "c1": 46.482945972612065, + "c2": 3.929768329115795, + "c3": -2.8630349035374607, + "c4": -7.033819378378695, + "c5": 28.58682276114292, + "c6": -28.592647968595188, + "c7": -42.54879454973419 }, - "vertexSeeds": { - "c1": 7.686144362186162, - "c2": 7.88375319400442, - "c3": 8.463312596899998, - "c4": 8.614437275273445, - "c5": 8.499695358504086, - "c6": 7.690283300703807, - "c7": 8.584553970143057 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [58, 15, 49] }, @@ -18744,23 +18744,23 @@ "year": 1671, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -22.656791539841073, - "c2": 6.13174786579847, - "c3": 24.983006747482573, - "c4": 2.28209689513999, - "c5": -14.738789923804305, - "c6": 11.120500335185529, - "c7": -26.829414481348216 + "points": { + "c1": -17.550788646622745, + "c2": 31.16653307969929, + "c3": 20.072741130676025, + "c4": 10.963315969937067, + "c5": 9.016123883302026, + "c6": 15.847467161259328, + "c7": 28.089926748953285 }, - "vertexSeeds": { - "c1": 4.842646461120462, - "c2": 4.722266096575779, - "c3": 4.238078827205288, - "c4": 4.333123843814687, - "c5": 3.802890874727006, - "c6": 5.254064301377525, - "c7": 4.1181570395798826 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.310679611650487, + "c4": 5.048543689320387, + "c5": 3.7864077669902905, + "c6": 2.5242718446601935, + "c7": 1.2621359223300967 }, "rgb": [238, 201, 159] }, @@ -18771,23 +18771,23 @@ "year": 1672, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": 34.3980675984443, - "c2": 5.8389711406362395, - "c3": 14.282489332449316, - "c4": -35.127048269363925, - "c5": -8.443534392508795, - "c6": 22.42037828999915, - "c7": -44.68537541624394 + "points": { + "c1": 50.59599094569228, + "c2": -10.465682830476332, + "c3": 48.31151425188479, + "c4": -31.623496487940603, + "c5": 30.20903239295835, + "c6": 28.53363815831746, + "c7": -20.359205299786986 }, - "vertexSeeds": { - "c1": 8.53343889797786, - "c2": 7.390514516590195, - "c3": 7.646626963867766, - "c4": 8.535810727674342, - "c5": 8.741485870844066, - "c6": 7.704708647613886, - "c7": 7.0130994958764274 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461858, + "c3": 10.610263522884878, + "c4": 8.488210818307907, + "c5": 6.366158113730929, + "c6": 4.24410540915395, + "c7": 2.122052704576979 }, "rgb": [238, 201, 159] }, @@ -18798,23 +18798,23 @@ "year": 1672, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -41.10098325922372, - "c2": 36.91467585352797, - "c3": 22.07593464602502, - "c4": -19.255642530962284, - "c5": 7.703902708899129, - "c6": 38.46129102508709, - "c7": -27.195646944075417 + "points": { + "c1": 0.6667568940243385, + "c2": 17.568912891362004, + "c3": -21.396807357265907, + "c4": -14.088156588067598, + "c5": -20.251813284658642, + "c6": -19.56651280732667, + "c7": -12.152632392766023 }, - "vertexSeeds": { - "c1": 5.107291339787366, - "c2": 4.134184014038503, - "c3": 5.285070923463604, - "c4": 5.200428757486601, - "c5": 4.441780511988209, - "c6": 4.12663028949373, - "c7": 5.095138105106693 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061025, + "c3": 6.356911696717519, + "c4": 5.085529357374014, + "c5": 3.8141470180305124, + "c6": 2.542764678687007, + "c7": 1.2713823393435015 }, "rgb": [238, 201, 159] }, @@ -18825,23 +18825,23 @@ "year": 1673, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": -27.848414535804913, - "c2": -78.9163628713267, - "c3": -23.936132799766632, - "c4": 55.470777253818284, - "c5": -46.1423480900778, - "c6": -66.4796970916736, - "c7": 39.55035354402973 + "points": { + "c1": 15.682426385182524, + "c2": 3.0072477556072954, + "c3": -37.08908676627837, + "c4": 10.999296083296073, + "c5": 2.4945549478986635, + "c6": -22.93745106781258, + "c7": -52.296265324703384 }, - "vertexSeeds": { - "c1": 4.404724996557789, - "c2": 4.182444139058662, - "c3": 8.76643508774044, - "c4": 3.6421915934172864, - "c5": 8.394528111853646, - "c6": 7.580253271967274, - "c7": 9.334895357949181 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055478, + "c6": 4.6232085067036515, + "c7": 2.3116042533518244 }, "rgb": [58, 15, 49] }, @@ -18852,23 +18852,23 @@ "year": 1672, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 25.831176435678486, - "c2": -22.61863781137035, - "c3": -38.85622524040215, - "c4": -35.87694808461758, - "c5": 11.803995119326615, - "c6": 35.556772795074366, - "c7": 35.446001169375194 + "points": { + "c1": 43.866152471800405, + "c2": 34.50550168449173, + "c3": -11.856989957456449, + "c4": -41.80898359333367, + "c5": -14.109427394456631, + "c6": 10.824317234044173, + "c7": -44.564690662238206 }, - "vertexSeeds": { - "c1": 7.598617636186913, - "c2": 8.150613159148095, - "c3": 7.838712543882926, - "c4": 7.578370571372077, - "c5": 7.778531866994307, - "c6": 8.20302133065998, - "c7": 8.410172488731154 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [58, 15, 49] }, @@ -18879,23 +18879,23 @@ "year": 1672, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -13.339014524562433, - "c2": 34.75462550749943, - "c3": 17.53036735866283, - "c4": -1.7702820412339264, - "c5": -36.58862567500081, - "c6": 2.9868814398991077, - "c7": -11.922374907901759 + "points": { + "c1": -34.134069625250056, + "c2": -18.429626781800316, + "c3": -22.32508110859614, + "c4": -8.59160523701918, + "c5": 27.763733750555964, + "c6": 23.48686002577187, + "c7": 0.8967423812811575 }, - "vertexSeeds": { - "c1": 9.497437007383565, - "c2": 9.343901753941593, - "c3": 9.44604068178362, - "c4": 8.445830905002873, - "c5": 8.980577052705279, - "c6": 8.885238830633915, - "c7": 8.304966765969835 + "offsets": { + "c1": 16.116504854368934, + "c2": 13.814147018030514, + "c3": 11.511789181692096, + "c4": 9.209431345353677, + "c5": 6.907073509015257, + "c6": 4.604715672676838, + "c7": 2.302357836338419 }, "rgb": [222, 0, 59] }, @@ -18906,23 +18906,23 @@ "year": 1672, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 36.9797483785171, - "c2": 27.582811034106925, - "c3": 1.2049152547392552, - "c4": 0.18389905044718802, - "c5": -41.86889205317922, - "c6": -19.01588984618383, - "c7": -32.22509149265355 + "points": { + "c1": -35.24635908425159, + "c2": 27.835777674356976, + "c3": -2.2542039368925373, + "c4": -27.90803678303181, + "c5": 30.154348143638472, + "c6": 33.515980324733135, + "c7": -2.0497761572707915 }, - "vertexSeeds": { - "c1": 13.931208596336084, - "c2": 13.753019162232428, - "c3": 13.8638057345967, - "c4": 14.48393527406792, - "c5": 14.569538361839559, - "c6": 14.120186836187054, - "c7": 13.74378321449951 + "offsets": { + "c1": 25.88996763754045, + "c2": 22.191400832177536, + "c3": 18.492834026814595, + "c4": 14.794267221451683, + "c5": 11.095700416088768, + "c6": 7.397133610725854, + "c7": 3.698566805362914 }, "rgb": [86, 146, 138] }, @@ -18933,23 +18933,23 @@ "year": 1672, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 13.721656928505126, - "c2": -20.237684735903084, - "c3": -1.235537258094574, - "c4": 34.95939819590111, - "c5": 10.571650305879679, - "c6": 5.513573688489544, - "c7": -5.636005592015813 + "points": { + "c1": -35.230104010940785, + "c2": 0.6037038676051836, + "c3": 29.62149704616089, + "c4": -35.759888028593465, + "c5": 33.06994676172065, + "c6": -6.074338148737638, + "c7": 28.19094885470019 }, - "vertexSeeds": { - "c1": 7.587323045770965, - "c2": 7.932433409850547, - "c3": 8.023910591453475, - "c4": 7.169698698771892, - "c5": 7.502987753548235, - "c6": 7.933085795122569, - "c7": 7.742968389106354 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255205, + "c3": 9.916782246879333, + "c4": 7.933425797503471, + "c5": 5.950069348127596, + "c6": 3.9667128987517355, + "c7": 1.983356449375861 }, "rgb": [86, 146, 138] }, @@ -18960,23 +18960,23 @@ "year": 1672, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 37.625561749303564, - "c2": -14.38110059374339, - "c3": -15.934132975852485, - "c4": 6.123425718862364, - "c5": -7.599543291127283, - "c6": 34.71426827318036, - "c7": -11.673696265660205 + "points": { + "c1": -31.98446840451088, + "c2": -35.97478928006832, + "c3": -3.8105608845138477, + "c4": -6.03141570185835, + "c5": 31.340298792551458, + "c6": 18.170198858114723, + "c7": -26.52644268195596 }, - "vertexSeeds": { - "c1": 7.99594764216789, - "c2": 7.864794686250798, - "c3": 8.219143009236333, - "c4": 8.10776871838171, - "c5": 8.254603526213687, - "c6": 8.632513883461485, - "c7": 7.588083827647811 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [58, 15, 49] }, @@ -18987,23 +18987,23 @@ "year": 1673, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": 28.833140223003838, - "c2": 33.49435394088138, - "c3": -46.80114132286103, - "c4": 28.357247447185216, - "c5": 10.023784935283189, - "c6": 4.6986112785252345, - "c7": 47.77994544078662 + "points": { + "c1": 1.0346274883397157, + "c2": 34.00934674024725, + "c3": 28.550733433163074, + "c4": -49.686497237714, + "c5": -34.769557157332926, + "c6": 14.970736308170032, + "c7": 30.281741476618848 }, - "vertexSeeds": { - "c1": 7.924148020422302, - "c2": 8.044187143215874, - "c3": 8.06988082518905, - "c4": 8.80993995852791, - "c5": 8.439695451518553, - "c6": 7.984414489428191, - "c7": 8.121815109258856 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [86, 146, 138] }, @@ -19014,23 +19014,23 @@ "year": 1672, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": -16.131007357871113, - "c2": 0.9186549619830977, - "c3": 15.113347640851877, - "c4": -8.615411714815565, - "c5": -1.1348240776508973, - "c6": -1.1269266291400122, - "c7": 11.533423856150769 + "points": { + "c1": -1.1471220106076068, + "c2": 12.963842732501377, + "c3": -8.955556491205213, + "c4": -16.05681560542882, + "c5": -18.65120690432803, + "c6": -12.502565131980857, + "c7": -0.5113407696349199 }, - "vertexSeeds": { - "c1": 8.600584995918943, - "c2": 8.436442643793406, - "c3": 8.198967505760535, - "c4": 8.127673406599785, - "c5": 8.82456245493218, - "c6": 8.572215043661215, - "c7": 8.724891913978968 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904301, + "c3": 10.864539990753586, + "c4": 8.691631992602872, + "c5": 6.518723994452144, + "c6": 4.345815996301429, + "c7": 2.1729079981507144 }, "rgb": [222, 0, 59] }, @@ -19041,23 +19041,23 @@ "year": 1674, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": -43.59645773633637, - "c2": 49.29447674945861, - "c3": -41.03645510473032, - "c4": 47.43853617700573, - "c5": -50.72297996278382, - "c6": -5.806508569787326, - "c7": 41.782114950657004 + "points": { + "c1": 0.2133792144419644, + "c2": 24.775045142918813, + "c3": 15.419228014438374, + "c4": 9.75236592891632, + "c5": -33.775179161643344, + "c6": -24.42964951955862, + "c7": -19.859838275937655 }, - "vertexSeeds": { - "c1": 3.9827476200550835, - "c2": 4.064448757268002, - "c3": 4.079120387747292, - "c4": 4.1091518894760375, - "c5": 4.034116753034114, - "c6": 3.9659833426320166, - "c7": 3.9945180915584313 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.9639389736477035, + "c3": 4.969949144706429, + "c4": 3.9759593157651363, + "c5": 2.981969486823861, + "c6": 1.9879796578825681, + "c7": 0.993989828941293 }, "rgb": [58, 15, 49] }, @@ -19068,23 +19068,23 @@ "year": 1674, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 36.97500934578302, - "c2": 28.66640081265747, - "c3": 37.644649460510365, - "c4": -16.080850849924293, - "c5": 15.79189582539918, - "c6": 37.54533443105899, - "c7": 22.515871580204603 + "points": { + "c1": -35.92292942219512, + "c2": 40.41402175791181, + "c3": -6.732601249141965, + "c4": -41.51300792875272, + "c5": 19.531665164160643, + "c6": -14.6909479112606, + "c7": -16.443045654505198 }, - "vertexSeeds": { - "c1": 8.40530029549074, - "c2": 8.40168734012175, - "c3": 8.035080794306234, - "c4": 8.19196247885209, - "c5": 7.9614196643825474, - "c6": 8.441313992164096, - "c7": 7.913457948259891 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657417, + "c3": 10.147942672214526, + "c4": 8.118354137771616, + "c5": 6.088765603328708, + "c6": 4.059177068885817, + "c7": 2.0295885344429085 }, "rgb": [86, 146, 138] }, @@ -19095,23 +19095,23 @@ "year": 1673, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 23.40036405576503, - "c2": 4.80842907724368, - "c3": -30.315900014066578, - "c4": -17.853750950848355, - "c5": -14.475068031909377, - "c6": -9.142848441611381, - "c7": 31.64274346030546 + "points": { + "c1": 17.226358841340577, + "c2": 0.22834146498323804, + "c3": 14.05130623998302, + "c4": 35.3900410916929, + "c5": 6.754729900306586, + "c6": -4.04497357422435, + "c7": 34.27511946342299 }, - "vertexSeeds": { - "c1": 8.08853033586863, - "c2": 7.749610010528625, - "c3": 7.753583212502126, - "c4": 9.088650625795584, - "c5": 8.754936596659228, - "c6": 8.478224627749825, - "c7": 8.1938345573283 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065183, + "c3": 10.957004160887655, + "c4": 8.765603328710126, + "c5": 6.574202496532592, + "c6": 4.382801664355057, + "c7": 2.1914008321775285 }, "rgb": [77, 76, 132] }, @@ -19122,23 +19122,23 @@ "year": 1673, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -1.6425865691706711, - "c2": 20.678839485797994, - "c3": 1.4383121474881335, - "c4": -23.326967572712743, - "c5": -13.25110892574979, - "c6": 22.855400215367737, - "c7": -12.811047847239916 + "points": { + "c1": 10.045283973243329, + "c2": -30.962917580310304, + "c3": 7.483922591926756, + "c4": 24.793549478336523, + "c5": 4.957056786971343, + "c6": 29.07330864754148, + "c7": 17.711915646012088 }, - "vertexSeeds": { - "c1": 8.540526872700402, - "c2": 8.454269939837504, - "c3": 8.484209968708791, - "c4": 9.439986760914863, - "c5": 9.039768618947093, - "c6": 8.168932095284694, - "c7": 9.092749823470449 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588064, + "c3": 11.257512713823395, + "c4": 9.00601017105871, + "c5": 6.754507628294026, + "c6": 4.503005085529355, + "c7": 2.251502542764671 }, "rgb": [86, 146, 138] }, @@ -19149,23 +19149,23 @@ "year": 1673, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 21.328860950607023, - "c2": -4.696051165873222, - "c3": -28.561508440827577, - "c4": 24.236356293205873, - "c5": 7.229895599768938, - "c6": -17.50338388097525, - "c7": -27.332383015042456 + "points": { + "c1": 34.14460180971366, + "c2": -35.07453704066724, + "c3": -2.5404663786613497, + "c4": -38.91901254705462, + "c5": 1.331293412705925, + "c6": -19.204690177674618, + "c7": 19.788297957928435 }, - "vertexSeeds": { - "c1": 13.778301086681637, - "c2": 11.915994980664841, - "c3": 11.929192044972028, - "c4": 15.72344221698976, - "c5": 12.223681304000603, - "c6": 14.238693633840768, - "c7": 12.799886079033314 + "offsets": { + "c1": 26.537216828478964, + "c2": 22.746185852981974, + "c3": 18.95515487748497, + "c4": 15.16412390198798, + "c5": 11.373092926490987, + "c6": 7.582061950993995, + "c7": 3.791030975496991 }, "rgb": [77, 76, 132] }, @@ -19176,23 +19176,23 @@ "year": 1674, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": -28.015257353893478, - "c2": 45.392277158856096, - "c3": -30.95128767834193, - "c4": 34.71952630082354, - "c5": -17.59586454275665, - "c6": -28.96971696685427, - "c7": -29.060171186075728 + "points": { + "c1": 37.01036416465458, + "c2": -3.8632977872151244, + "c3": 39.94938920927763, + "c4": 17.730983961465576, + "c5": 47.48626638126533, + "c6": 17.110385905445433, + "c7": -20.630046411446884 }, - "vertexSeeds": { - "c1": 5.842658928602033, - "c2": 6.712271987318283, - "c3": 6.765335741283123, - "c4": 6.901218314017262, - "c5": 7.026124170572883, - "c6": 5.740119932240187, - "c7": 6.015322846166856 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163659, + "c3": 8.714748035136386, + "c4": 6.971798428109109, + "c5": 5.228848821081829, + "c6": 3.4858992140545575, + "c7": 1.7429496070272787 }, "rgb": [222, 0, 59] }, @@ -19203,23 +19203,23 @@ "year": 1674, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 1.5892007498191063, - "c2": 13.453919298519217, - "c3": -17.52491773522879, - "c4": 29.997027184803045, - "c5": 26.878863569317204, - "c6": 4.43960569397759, - "c7": 13.058918017222915 + "points": { + "c1": -7.322931462997332, + "c2": 31.400047532418924, + "c3": 22.880972261970605, + "c4": 35.01879990467195, + "c5": -35.580142098669555, + "c6": 29.674361056106733, + "c7": 32.60825376320486 }, - "vertexSeeds": { - "c1": 8.65823827526042, - "c2": 8.073940889952585, - "c3": 7.9834845149474845, - "c4": 8.935948544457128, - "c5": 7.767288979262811, - "c6": 7.882330005414273, - "c7": 8.661306659394507 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [222, 0, 59] }, @@ -19230,23 +19230,23 @@ "year": 1674, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 6.889969755812807, - "c2": -30.088371470891204, - "c3": -1.3244569166298206, - "c4": 17.315536209796157, - "c5": -18.271752158216295, - "c6": -34.69279194769756, - "c7": 22.789575955589733 + "points": { + "c1": 16.474869514689274, + "c2": 5.208233835627134, + "c3": 16.07310040719385, + "c4": -13.326109236133284, + "c5": 5.723439979178963, + "c6": -37.12511091294047, + "c7": -5.201091141668513 }, - "vertexSeeds": { - "c1": 10.714096535680785, - "c2": 11.819063757229046, - "c3": 10.78240570529784, - "c4": 12.008516961725599, - "c5": 11.272738059525265, - "c6": 11.28567443788178, - "c7": 12.382466312806443 + "offsets": { + "c1": 22.362459546925567, + "c2": 19.167822468793336, + "c3": 15.973185390661127, + "c4": 12.778548312528898, + "c5": 9.583911234396668, + "c6": 6.38927415626444, + "c7": 3.194637078132229 }, "rgb": [222, 0, 59] }, @@ -19257,23 +19257,23 @@ "year": 1674, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -23.17725120169946, - "c2": -28.750098302180284, - "c3": -9.090604203001067, - "c4": -7.481299937938836, - "c5": -24.698658907423813, - "c6": 34.19589110770204, - "c7": 15.570224300079389 + "points": { + "c1": -29.094044285096327, + "c2": -23.28295360455713, + "c3": -27.50662414822414, + "c4": -2.0865810813414356, + "c5": 18.808202327470582, + "c6": -26.125937598268244, + "c7": 36.48342558900272 }, - "vertexSeeds": { - "c1": 11.707491094922577, - "c2": 12.681240851496426, - "c3": 10.740609683469646, - "c4": 11.605276236229319, - "c5": 11.467652455512562, - "c6": 12.160263837331101, - "c7": 11.84596104505662 + "offsets": { + "c1": 21.22977346278317, + "c2": 18.19694868238558, + "c3": 15.164123901987994, + "c4": 12.13129912159038, + "c5": 9.09847434119279, + "c6": 6.065649560795202, + "c7": 3.0328247803975894 }, "rgb": [86, 146, 138] }, @@ -19284,23 +19284,23 @@ "year": 1674, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -26.00013255842724, - "c2": 5.277951495000295, - "c3": 15.739939883636922, - "c4": 21.146647650628843, - "c5": -0.7058790075003429, - "c6": -22.67136823811779, - "c7": -17.515045896124725 + "points": { + "c1": 12.13925024094057, + "c2": 8.081783427767235, + "c3": 6.289856807447407, + "c4": -8.404928389757234, + "c5": 8.164757516046585, + "c6": 1.1075424057925431, + "c7": 31.630151610085605 }, - "vertexSeeds": { - "c1": 9.655175827982951, - "c2": 9.478331645471131, - "c3": 9.85758854684844, - "c4": 9.780153356923693, - "c5": 9.782040821168179, - "c6": 9.708254974795782, - "c7": 9.96868311338238 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754514, + "c3": 11.927877947295434, + "c4": 9.542302357836336, + "c5": 7.156726768377257, + "c6": 4.771151178918178, + "c7": 2.3855755894590787 }, "rgb": [86, 146, 138] }, @@ -19311,23 +19311,23 @@ "year": 1674, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 15.563107534227129, - "c2": -23.155900670324367, - "c3": 28.92718373457327, - "c4": -28.505676777581506, - "c5": -2.8853724053906156, - "c6": -19.28873987102741, - "c7": -29.23673584288424 + "points": { + "c1": -18.379708272595856, + "c2": -12.6261327677046, + "c3": 27.379471844526023, + "c4": -29.94639326507511, + "c5": -34.711317782687686, + "c6": -6.168218450750171, + "c7": -6.858229701310048 }, - "vertexSeeds": { - "c1": 7.799085578865076, - "c2": 8.285350554355242, - "c3": 8.811077703508628, - "c4": 8.637375068238446, - "c5": 7.5655249063189505, - "c6": 7.565123420077958, - "c7": 8.391159794175683 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300978, + "c3": 10.517799352750812, + "c4": 8.414239482200644, + "c5": 6.310679611650489, + "c6": 4.2071197411003345, + "c7": 2.1035598705501672 }, "rgb": [222, 0, 59] }, @@ -19338,23 +19338,23 @@ "year": 1675, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -36.541557031839396, - "c2": 25.910235607918025, - "c3": 29.785084447186364, - "c4": 38.85768839618807, - "c5": 27.883006406328718, - "c6": 38.85053228444629, - "c7": 3.6403867745450142 + "points": { + "c1": 44.49753354268533, + "c2": -23.095476986227354, + "c3": -0.4896912583705557, + "c4": 33.279052379009, + "c5": -7.469232726599252, + "c6": -25.058495766776858, + "c7": -14.380432879712657 }, - "vertexSeeds": { - "c1": 8.530618662866218, - "c2": 8.178748334877945, - "c3": 7.7985159155417865, - "c4": 7.638124016532544, - "c5": 8.845272639122726, - "c6": 8.262165314179283, - "c7": 8.514093990254151 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [222, 0, 59] }, @@ -19365,23 +19365,23 @@ "year": 1675, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 12.473789360144828, - "c2": -17.25916229750867, - "c3": -32.01103508874963, - "c4": 7.953756220114101, - "c5": -37.01304648944173, - "c6": 30.29945308935565, - "c7": 18.701612263216674 + "points": { + "c1": 38.404579692610454, + "c2": -29.317023006624474, + "c3": 4.157708608525958, + "c4": 4.292221629276611, + "c5": -23.977053146005247, + "c6": -37.07124949005298, + "c7": 26.068059250859136 }, - "vertexSeeds": { - "c1": 4.602409239637395, - "c2": 4.3833931987961705, - "c3": 5.4903928239577535, - "c4": 4.415617945572738, - "c5": 5.586444978276969, - "c6": 4.047474081477915, - "c7": 5.086578351412868 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106798, + "c3": 6.957928802589, + "c4": 5.566343042071196, + "c5": 4.174757281553399, + "c6": 2.783171521035601, + "c7": 1.3915857605178006 }, "rgb": [222, 0, 59] }, @@ -19392,23 +19392,23 @@ "year": 1674, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -29.0817852184668, - "c2": 4.977552502919934, - "c3": 31.0828431214006, - "c4": 5.570036433128074, - "c5": -11.590637340048104, - "c6": 21.37307365881348, - "c7": 16.13893533886334 + "points": { + "c1": -34.39986350510992, + "c2": 26.315395268842103, + "c3": 11.076527670662117, + "c4": -16.833185564503403, + "c5": 5.871830350493767, + "c6": 19.424985750596036, + "c7": 26.752900433733103 }, - "vertexSeeds": { - "c1": 4.405235911998723, - "c2": 4.295654200823235, - "c3": 5.585416653003383, - "c4": 4.852968102690741, - "c5": 5.357430155709464, - "c6": 4.651855117650716, - "c7": 4.844359647130797 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704575, + "c3": 6.726768377253816, + "c4": 5.381414701803053, + "c5": 4.03606102635229, + "c6": 2.6907073509015276, + "c7": 1.3453536754507653 }, "rgb": [86, 146, 138] }, @@ -19419,23 +19419,23 @@ "year": 1675, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 27.473397592886677, - "c2": -26.414247489136734, - "c3": 38.69877060618787, - "c4": -5.206155005243389, - "c5": 34.325471545685694, - "c6": -41.62247590129814, - "c7": 34.262401612046126 + "points": { + "c1": 41.455921536674275, + "c2": 3.91716941936199, + "c3": 10.976514786150801, + "c4": 31.825775712011882, + "c5": -8.782687471474624, + "c6": 4.056221734751048, + "c7": -9.039546462767568 }, - "vertexSeeds": { - "c1": 6.4515295885901685, - "c2": 6.274666319697105, - "c3": 6.295876282256715, - "c4": 6.0212613113232445, - "c5": 6.361447407443565, - "c6": 6.6304555383570705, - "c7": 7.449241685536995 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471571, + "c4": 7.156726768377258, + "c5": 5.367545076282937, + "c6": 3.578363384188624, + "c7": 1.789181692094312 }, "rgb": [77, 76, 132] }, @@ -19446,23 +19446,23 @@ "year": 1675, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 26.52581645932154, - "c2": -29.79310043108185, - "c3": -24.3973297595293, - "c4": 6.831487953661913, - "c5": 18.221187706333794, - "c6": 8.740287327145673, - "c7": -30.64665691646621 + "points": { + "c1": 16.81815602696544, + "c2": -5.206759630100823, + "c3": -5.68649342475948, + "c4": -0.7691577941292564, + "c5": -11.389508374869571, + "c6": 27.941879555409315, + "c7": -18.69142491941512 }, - "vertexSeeds": { - "c1": 1.9877728797147527, - "c2": 1.800441617709351, - "c3": 1.9561400730536618, - "c4": 1.474256397127095, - "c5": 1.7448890784464715, - "c6": 1.878559934150146, - "c7": 1.9107665303874541 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.88488210818308, + "c3": 2.4040684234858993, + "c4": 1.9232547387887198, + "c5": 1.4424410540915393, + "c6": 0.9616273693943599, + "c7": 0.4808136846971807 }, "rgb": [77, 76, 132] }, @@ -19473,23 +19473,23 @@ "year": 1675, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -28.619706396710786, - "c2": -5.84275092649608, - "c3": -11.967204830611461, - "c4": -11.761120106718032, - "c5": -20.504277012632855, - "c6": 27.283712193464922, - "c7": 0.9913722848733855 + "points": { + "c1": -24.781751120534476, + "c2": 19.534030771947535, + "c3": 7.740606079271622, + "c4": -6.433234360996291, + "c5": -20.897055915853485, + "c6": -28.332166302725888, + "c7": -26.32595772041058 }, - "vertexSeeds": { - "c1": 2.7382059512706682, - "c2": 2.8273533666658364, - "c3": 2.4281579860837774, - "c4": 2.176722019804804, - "c5": 2.5221274689610294, - "c6": 2.6561232641411037, - "c7": 2.2180755425808023 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.3550624133148395, + "c3": 3.629218677762365, + "c4": 2.903374942209894, + "c5": 2.1775312066574197, + "c6": 1.4516874711049457, + "c7": 0.7258437355524728 }, "rgb": [77, 76, 132] }, @@ -19500,23 +19500,23 @@ "year": 1675, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -0.8160600528447901, - "c2": 28.037804685145034, - "c3": -11.140721359596142, - "c4": 11.06971232046996, - "c5": 19.223093349478603, - "c6": -30.96848203941947, - "c7": 0.2649812726747527 + "points": { + "c1": 25.992597631392456, + "c2": -27.477935599973705, + "c3": 10.869965044279304, + "c4": 5.49378282383713, + "c5": 13.635919485080002, + "c6": 7.193846894321361, + "c7": 27.18113607580927 }, - "vertexSeeds": { - "c1": 6.586698563038235, - "c2": 7.627400224454348, - "c3": 6.2570375630390265, - "c4": 7.051758008654709, - "c5": 7.4253764619671525, - "c6": 6.408396301762499, - "c7": 6.680119026332366 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410543, + "c3": 9.431345353675455, + "c4": 7.545076282940365, + "c5": 5.658807212205276, + "c6": 3.772538141470187, + "c7": 1.8862690707350975 }, "rgb": [222, 0, 59] }, @@ -19527,23 +19527,23 @@ "year": 1675, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 7.385419137450739, - "c2": -17.252887830114048, - "c3": -21.36337720960264, - "c4": -13.932251725631847, - "c5": -25.965063924462193, - "c6": -11.084707668032962, - "c7": -25.217742298130414 + "points": { + "c1": -24.14920089845606, + "c2": 7.88835697923664, + "c3": 12.168756016030173, + "c4": 33.06763030061741, + "c5": -19.272388163780327, + "c6": 29.423099819175903, + "c7": 25.422749809359985 }, - "vertexSeeds": { - "c1": 11.198429857142015, - "c2": 10.969890593179077, - "c3": 10.772668126778871, - "c4": 11.25617144136739, - "c5": 11.249256831585354, - "c6": 11.484982355464334, - "c7": 11.037935684578741 + "offsets": { + "c1": 19.54692556634304, + "c2": 16.754507628294053, + "c3": 13.962089690245024, + "c4": 11.169671752196036, + "c5": 8.377253814147007, + "c6": 5.584835876098018, + "c7": 2.7924179380489886 }, "rgb": [77, 76, 132] }, @@ -19554,23 +19554,23 @@ "year": 1675, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 14.09923114547663, - "c2": 4.15371087342141, - "c3": 33.95632716054697, - "c4": -12.934401710714202, - "c5": 36.07716153496593, - "c6": -22.851746506627457, - "c7": 30.91641015314371 + "points": { + "c1": 29.386986584689502, + "c2": -27.532053882122547, + "c3": 2.509634452333067, + "c4": 22.748974615762982, + "c5": -31.994460334872098, + "c6": 9.6971510948635, + "c7": -15.480282217581777 }, - "vertexSeeds": { - "c1": 8.94970283439038, - "c2": 8.444462803299537, - "c3": 8.790207632373559, - "c4": 7.307378339256737, - "c5": 7.123939735832978, - "c6": 7.713782079111221, - "c7": 8.742597789030867 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582526, + "c3": 10.67961165048544, + "c4": 8.543689320388346, + "c5": 6.407766990291258, + "c6": 4.271844660194173, + "c7": 2.1359223300970864 }, "rgb": [86, 146, 138] }, @@ -19581,23 +19581,23 @@ "year": 1675, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 17.013793673462253, - "c2": 26.375637456867864, - "c3": 7.1404956623596405, - "c4": -19.152233967464557, - "c5": 7.563866124098894, - "c6": 10.579203497611033, - "c7": -19.639954648449372 + "points": { + "c1": 19.03924992396101, + "c2": -39.124752720968445, + "c3": 22.33178813863198, + "c4": -24.514587451032426, + "c5": 41.497406871450025, + "c6": -27.01298008934102, + "c7": -19.238459662598572 }, - "vertexSeeds": { - "c1": 2.7506844975685887, - "c2": 2.7528516734315756, - "c3": 2.132076456492736, - "c4": 2.4679536215789, - "c5": 2.0963497456571374, - "c6": 2.5013476124897527, - "c7": 2.6001989928337244 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073508, + "c3": 3.490522422561258, + "c4": 2.792417938049005, + "c5": 2.0943134535367554, + "c6": 1.3962089690245025, + "c7": 0.6981044845122513 }, "rgb": [77, 76, 132] }, @@ -19608,23 +19608,23 @@ "year": 1675, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -8.167480058930101, - "c2": -19.29305651003723, - "c3": -1.3906758860164423, - "c4": 2.2709138932700803, - "c5": 20.713195391032322, - "c6": -16.935174197642716, - "c7": 9.639753489356735 + "points": { + "c1": 7.042971346891495, + "c2": 18.085022865996642, + "c3": -6.193639509797343, + "c4": -3.725862488158249, + "c5": -21.482953837770705, + "c6": -21.508774466587486, + "c7": 9.016056750118999 }, - "vertexSeeds": { - "c1": 8.709331506493458, - "c2": 8.852546288364183, - "c3": 8.71081285423012, - "c4": 9.021662268319186, - "c5": 8.28041261995684, - "c6": 9.157268451357846, - "c7": 9.084013863097828 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.34257975034674, + "c3": 11.118816458622284, + "c4": 8.895053166897826, + "c5": 6.67128987517337, + "c6": 4.447526583448913, + "c7": 2.2237632917244565 }, "rgb": [58, 15, 49] }, @@ -19635,23 +19635,23 @@ "year": 1675, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 8.568041586010672, - "c2": 2.0892539398845074, - "c3": 1.4222082975238592, - "c4": -1.2470558765023085, - "c5": 25.81267814696473, - "c6": -24.40873089942042, - "c7": -11.679986991234276 + "points": { + "c1": 22.72513667136615, + "c2": -4.061244298348907, + "c3": -20.39828237502595, + "c4": 13.193187973201667, + "c5": -8.091900358592191, + "c6": -28.946593143553322, + "c7": -8.792753286543185 }, - "vertexSeeds": { - "c1": 9.628821617508596, - "c2": 9.417911389837876, - "c3": 9.680755023815014, - "c4": 9.541942618019862, - "c5": 9.472038928825427, - "c6": 10.0391647571821, - "c7": 9.915880287165605 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [222, 0, 59] }, @@ -19662,23 +19662,23 @@ "year": 1675, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 43.73673569073776, - "c2": -20.309677616229063, - "c3": -14.026661020243516, - "c4": -5.553566231850823, - "c5": 41.607349339503585, - "c6": -1.2600467314095667, - "c7": 0.9437194507227957 + "points": { + "c1": 7.77448642029141, + "c2": -15.417271108893985, + "c3": 0.9998565078451378, + "c4": 10.269578289166773, + "c5": -44.14389206585227, + "c6": -38.04719788062462, + "c7": -0.5690931279410592 }, - "vertexSeeds": { - "c1": 7.289077578303242, - "c2": 7.550462557289563, - "c3": 7.3472975827633045, - "c4": 6.448792655616012, - "c5": 6.479651064005168, - "c6": 7.590278989428165, - "c7": 6.549819033530772 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927875, + "c3": 9.153952843273236, + "c4": 7.3231622746185865, + "c5": 5.492371705963937, + "c6": 3.661581137309298, + "c7": 1.830790568654649 }, "rgb": [77, 76, 132] }, @@ -19689,23 +19689,23 @@ "year": 1675, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -11.193433180824545, - "c2": 26.661732104151902, - "c3": -31.41212374862394, - "c4": -2.96737482208664, - "c5": -16.611569688923158, - "c6": -16.267765726892968, - "c7": -22.051981997810287 + "points": { + "c1": 16.406797693543474, + "c2": -4.001643746912137, + "c3": 37.285850306053085, + "c4": -32.82397456515407, + "c5": -16.13296330258247, + "c6": -25.546212179256045, + "c7": -17.120691369826616 }, - "vertexSeeds": { - "c1": 9.149544391384538, - "c2": 8.927380418154197, - "c3": 9.9648605329739, - "c4": 9.636482548786676, - "c5": 9.33851351192276, - "c6": 8.795525152034898, - "c7": 9.639423023611432 + "offsets": { + "c1": 16.86084142394822, + "c2": 14.452149791955621, + "c3": 12.043458159963013, + "c4": 9.634766527970415, + "c5": 7.226074895977806, + "c6": 4.817383263985207, + "c7": 2.408691631992599 }, "rgb": [86, 146, 138] }, @@ -19716,23 +19716,23 @@ "year": 1675, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 33.53424360252821, - "c2": -10.323523498553783, - "c3": 1.590954452861304, - "c4": 3.3124930295608763, - "c5": 8.52044690143346, - "c6": -29.043481790276964, - "c7": -33.59341948107627 + "points": { + "c1": 0.4836894245700023, + "c2": -4.320503223840227, + "c3": -32.92485494099061, + "c4": 31.82984656567166, + "c5": -18.92763340169981, + "c6": -25.767618497151226, + "c7": -7.997882398084734 }, - "vertexSeeds": { - "c1": 6.0394267543165885, - "c2": 4.760674575077393, - "c3": 5.456850847772541, - "c4": 6.301276696281475, - "c5": 4.584837344841741, - "c6": 4.945266927351863, - "c7": 5.751103204773695 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393897, + "c3": 7.697642163661581, + "c4": 6.158113730929264, + "c5": 4.618585298196948, + "c6": 3.079056865464632, + "c7": 1.539528432732316 }, "rgb": [222, 0, 59] }, @@ -19743,23 +19743,23 @@ "year": 1675, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -11.665333206446054, - "c2": -25.84025198104233, - "c3": -32.68238063677122, - "c4": 3.934725207836671, - "c5": 0.7355551718356352, - "c6": 8.645982304549186, - "c7": 0.1886415750235244 + "points": { + "c1": 1.6885122374448542, + "c2": 1.9459654941267601, + "c3": -21.742498312689552, + "c4": 6.843506693275742, + "c5": 32.886659052339304, + "c6": -0.816383513433621, + "c7": -25.155878064587423 }, - "vertexSeeds": { - "c1": 10.212826138113249, - "c2": 10.257190225982516, - "c3": 9.329619518738964, - "c4": 9.266795515311221, - "c5": 9.854568636921764, - "c6": 10.444212568588028, - "c7": 10.494059695994572 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644936, + "c3": 13.014331946370776, + "c4": 10.411465557096617, + "c5": 7.808599167822468, + "c6": 5.205732778548309, + "c7": 2.602866389274149 }, "rgb": [77, 76, 132] }, @@ -19770,23 +19770,23 @@ "year": 1676, "resistanceReported": false, "duration": 40003200, - "curveSeeds": { - "c1": 22.068475561163737, - "c2": -1.313707930816939, - "c3": -52.560918888402156, - "c4": -47.367032369972385, - "c5": -13.380335975881636, - "c6": -12.175335856440356, - "c7": 37.74225295502016 + "points": { + "c1": -10.868222215489503, + "c2": -23.76185412803165, + "c3": 18.440141221307172, + "c4": -14.490213751311003, + "c5": -28.354413045503748, + "c6": 43.931411823922986, + "c7": -36.24693925812781 }, - "vertexSeeds": { - "c1": 2.278720388934853, - "c2": 2.1633849008836616, - "c3": 2.24109505216124, - "c4": 2.523304240726901, - "c5": 2.0308628760594196, - "c6": 2.550807924012776, - "c7": 1.8943633155345443 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349515, + "c3": 3.0744336569579294, + "c4": 2.4595469255663427, + "c5": 1.8446601941747567, + "c6": 1.2297734627831713, + "c7": 0.6148867313915857 }, "rgb": [58, 15, 49] }, @@ -19797,23 +19797,23 @@ "year": 1676, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 27.748073011313124, - "c2": 22.072887874376875, - "c3": 31.434033247541194, - "c4": -2.25943216350111, - "c5": 10.57701043532552, - "c6": 22.367876986234194, - "c7": -27.72792245126242 + "points": { + "c1": 22.297995703190992, + "c2": -1.8288330502177104, + "c3": -36.01604076541469, + "c4": 12.667091495219331, + "c5": 17.92051919950417, + "c6": 23.442583811153042, + "c7": -8.157824068284619 }, - "vertexSeeds": { - "c1": 8.913612910278047, - "c2": 7.722973318609619, - "c3": 8.957771663963566, - "c4": 8.294140932008029, - "c5": 8.175367073781292, - "c6": 8.264851195714021, - "c7": 7.9738989421257 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [58, 15, 49] }, @@ -19824,23 +19824,23 @@ "year": 1676, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -25.752858917265684, - "c2": 38.33184688363032, - "c3": -24.93427519646848, - "c4": 19.861044260210136, - "c5": -40.62867056814705, - "c6": -39.061549804973914, - "c7": -34.94684953805494 + "points": { + "c1": -13.880655372966977, + "c2": -43.94474335245781, + "c3": 9.656870923502773, + "c4": 5.26154484377372, + "c5": 7.385700566765109, + "c6": -15.742966119632523, + "c7": 37.74590746197012 }, - "vertexSeeds": { - "c1": 7.812264285028242, - "c2": 8.116748041474418, - "c3": 7.913419372286493, - "c4": 8.61345571816034, - "c5": 8.282145467271507, - "c6": 7.732939084838077, - "c7": 8.667834318232195 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099858, + "c3": 10.402219140083213, + "c4": 8.32177531206658, + "c5": 6.241331484049936, + "c6": 4.16088765603329, + "c7": 2.080443828016645 }, "rgb": [58, 15, 49] }, @@ -19851,23 +19851,23 @@ "year": 1676, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 41.88237721259908, - "c2": 15.353504353893072, - "c3": 16.253366225711538, - "c4": -23.855970596022825, - "c5": -30.48429092116787, - "c6": 30.663091653228875, - "c7": -4.981246615548692 + "points": { + "c1": 32.395233021023685, + "c2": 28.286095944776733, + "c3": 17.196221467367444, + "c4": -31.752511786247197, + "c5": 27.05050336763827, + "c6": -14.37236108679528, + "c7": -11.120538209547213 }, - "vertexSeeds": { - "c1": 9.590839155058624, - "c2": 10.035010666105329, - "c3": 9.604510756434234, - "c4": 9.805954570264113, - "c5": 9.605871193223741, - "c6": 9.347476201321022, - "c7": 9.258912729240615 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [77, 76, 132] }, @@ -19878,23 +19878,23 @@ "year": 1675, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 19.09002222664256, - "c2": -14.810462917733599, - "c3": 2.7374365319914418, - "c4": 2.338364229843833, - "c5": -8.751119529192206, - "c6": -17.22226867926857, - "c7": -13.22791884175923 + "points": { + "c1": 12.921089828023185, + "c2": -15.13620410442402, + "c3": -14.188720344323393, + "c4": 22.586588804313877, + "c5": -20.26938487595406, + "c6": -13.909549540664539, + "c7": 9.18303101773624 }, - "vertexSeeds": { - "c1": 8.730702351526983, - "c2": 8.325534902273324, - "c3": 8.67913514674837, - "c4": 8.70388530492237, - "c5": 8.44995841261802, - "c6": 7.890797603480647, - "c7": 8.73604485187239 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.98196948682386, + "c3": 10.81830790568654, + "c4": 8.654646324549235, + "c5": 6.49098474341193, + "c6": 4.327323162274625, + "c7": 2.1636615811373052 }, "rgb": [58, 15, 49] }, @@ -19905,23 +19905,23 @@ "year": 1676, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -16.552199616028275, - "c2": -48.72358950318298, - "c3": -47.03950285865359, - "c4": -3.926788645868335, - "c5": -8.250769145450136, - "c6": 17.240652034737188, - "c7": -35.481564342022196 + "points": { + "c1": -29.15885732707055, + "c2": 27.301134475133047, + "c3": 48.66634334990801, + "c4": -20.720755616924425, + "c5": -25.139766317672432, + "c6": 11.91080115192387, + "c7": 40.02188450598144 }, - "vertexSeeds": { - "c1": 7.673149643941989, - "c2": 8.318270876063654, - "c3": 8.122263593395475, - "c4": 7.958979029567595, - "c5": 8.002642651333039, - "c6": 7.950799896049103, - "c7": 8.05855811323766 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295418, + "c3": 9.939898289412854, + "c4": 7.951918631530279, + "c5": 5.963938973647715, + "c6": 3.9759593157651394, + "c7": 1.9879796578825628 }, "rgb": [58, 15, 49] }, @@ -19932,23 +19932,23 @@ "year": 1676, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 44.99695226982112, - "c2": -40.26188163369471, - "c3": 8.90141577611901, - "c4": -35.78244198023869, - "c5": 16.45407401913389, - "c6": 22.561402521083068, - "c7": 38.47125036151138 + "points": { + "c1": 28.125590012726278, + "c2": -30.667460443097298, + "c3": -21.800483665685295, + "c4": -18.805805422561395, + "c5": -2.0448757215654396, + "c6": -18.598050232446038, + "c7": 46.389978979050184 }, - "vertexSeeds": { - "c1": 1.7850370360973882, - "c2": 1.7572881940994332, - "c3": 1.8958354813566112, - "c4": 1.799141265589856, - "c5": 1.87964157543431, - "c6": 1.9038100310776929, - "c7": 1.7519540833603817 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.8571428571428585, + "c3": 2.380952380952381, + "c4": 1.9047619047619055, + "c5": 1.4285714285714277, + "c6": 0.9523809523809528, + "c7": 0.476190476190475 }, "rgb": [58, 15, 49] }, @@ -19959,23 +19959,23 @@ "year": 1676, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -21.012350915332043, - "c2": -35.69696117521834, - "c3": 12.712552273809216, - "c4": -22.830365124800544, - "c5": 0.6011947883105435, - "c6": 10.906619595420949, - "c7": -4.517121389933447 + "points": { + "c1": 11.36285509072404, + "c2": 29.267331468322, + "c3": 4.246635696077895, + "c4": -35.87930326735806, + "c5": 37.781547887345766, + "c6": -6.528098744717518, + "c7": 11.606184685837995 }, - "vertexSeeds": { - "c1": 3.1651419709494126, - "c2": 4.377528474860616, - "c3": 3.9804912039923623, - "c4": 4.490466592543061, - "c5": 3.550647335583079, - "c6": 3.632884989949477, - "c7": 4.537971274340467 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452149, + "c3": 5.4322699953767914, + "c4": 4.3458159963014324, + "c5": 3.2593619972260743, + "c6": 2.1729079981507162, + "c7": 1.0864539990753581 }, "rgb": [58, 15, 49] }, @@ -19986,23 +19986,23 @@ "year": 1676, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -16.25694785456699, - "c2": 26.05473179343239, - "c3": -5.396572535329575, - "c4": -15.662848643146916, - "c5": -9.116886972237424, - "c6": -18.485331112231677, - "c7": -22.710304075011585 + "points": { + "c1": 34.165610903617036, + "c2": -14.311134535526303, + "c3": -32.25563198081541, + "c4": -21.270050696661688, + "c5": 24.604026796855763, + "c6": 21.106335998875274, + "c7": 21.610018414149238 }, - "vertexSeeds": { - "c1": 9.902082646244578, - "c2": 10.01430771404646, - "c3": 10.085593350545269, - "c4": 9.963679118028407, - "c5": 9.9320308560948, - "c6": 9.399773035815373, - "c7": 9.502614058827522 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [77, 76, 132] }, @@ -20013,23 +20013,23 @@ "year": 1676, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -32.692075725487335, - "c2": -13.542891069885528, - "c3": -15.598679407452664, - "c4": 1.371963783239167, - "c5": 19.620262813803265, - "c6": 32.77520697646859, - "c7": 3.5957218226002894 + "points": { + "c1": -26.966704142019573, + "c2": 22.969193924951696, + "c3": -0.9591291992460143, + "c4": 26.47385099673717, + "c5": -5.055158485793783, + "c6": 17.548337947786834, + "c7": 32.27757283486002 }, - "vertexSeeds": { - "c1": 3.1869095098067435, - "c2": 3.8922304333981637, - "c3": 4.186888894144598, - "c4": 3.7365937229102655, - "c5": 3.778168416223084, - "c6": 4.004943323554081, - "c7": 4.3701525884039345 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331482, + "c3": 5.362921867776236, + "c4": 4.2903374942209895, + "c5": 3.217753120665741, + "c6": 2.145168747110492, + "c7": 1.072584373555246 }, "rgb": [222, 0, 59] }, @@ -20040,23 +20040,23 @@ "year": 1676, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -44.846598513097824, - "c2": 23.305540983432067, - "c3": -17.607716081939245, - "c4": 38.45931172502766, - "c5": 15.23416485511519, - "c6": 17.092061398882542, - "c7": 32.82519583313332 + "points": { + "c1": -22.94937692021085, + "c2": -24.793647132935828, + "c3": 47.66024457240387, + "c4": 26.78861611431749, + "c5": -5.31660749501696, + "c6": -12.333356869152446, + "c7": 22.57712147251179 }, - "vertexSeeds": { - "c1": 5.812172207591354, - "c2": 4.958353127363262, - "c3": 5.036984434107401, - "c4": 5.570059624596073, - "c5": 5.842992897413124, - "c6": 5.060797318222546, - "c7": 6.034897536733631 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669904, + "c3": 7.281553398058254, + "c4": 5.825242718446603, + "c5": 4.368932038834953, + "c6": 2.9126213592233032, + "c7": 1.45631067961165 }, "rgb": [238, 201, 159] }, @@ -20067,23 +20067,23 @@ "year": 1676, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 9.846637321266783, - "c2": 22.91357738596023, - "c3": -16.24424567869067, - "c4": 27.321758611069733, - "c5": -20.00460870827497, - "c6": 21.380759839771507, - "c7": 17.589668323552154 + "points": { + "c1": -12.24847468311716, + "c2": 0.6207449724325116, + "c3": -10.79687808159062, + "c4": 25.46101115712775, + "c5": -11.955558602854147, + "c6": 1.4998888418004057, + "c7": 30.939230396708673 }, - "vertexSeeds": { - "c1": 8.353856425873941, - "c2": 8.65807517397685, - "c3": 7.833872116680861, - "c4": 7.666564086855752, - "c5": 8.68739389649307, - "c6": 8.189793954815594, - "c7": 8.861580657509444 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [86, 146, 138] }, @@ -20094,23 +20094,23 @@ "year": 1676, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -8.344377309021937, - "c2": -2.1059943166218957, - "c3": -13.032492481388761, - "c4": -24.66621206019584, - "c5": -21.107032567321767, - "c6": -26.82643622824039, - "c7": 6.2083646896239415 + "points": { + "c1": 25.122610905229195, + "c2": -26.107088332169056, + "c3": 26.545808203693376, + "c4": 36.671658407929485, + "c5": 12.204638634245484, + "c6": 24.762187216195002, + "c7": 17.840196857307156 }, - "vertexSeeds": { - "c1": 5.747413430570822, - "c2": 5.600140936195129, - "c3": 5.821991601469903, - "c4": 5.830165703476121, - "c5": 5.8479261606788295, - "c6": 5.600205390741707, - "c7": 5.674523037479979 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147023, + "c3": 6.981044845122525, + "c4": 5.584835876098027, + "c5": 4.1886269070735285, + "c6": 2.792417938048996, + "c7": 1.396208969024498 }, "rgb": [86, 146, 138] }, @@ -20121,23 +20121,23 @@ "year": 1676, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": -27.42026988924508, - "c2": -6.6704807227844185, - "c3": -11.124548858122097, - "c4": 2.557316991916302, - "c5": -14.821393895648704, - "c6": 35.31205004423706, - "c7": 38.273798743563454 + "points": { + "c1": -3.7640905751686873, + "c2": -5.502806465685069, + "c3": -1.3265664820872871, + "c4": 28.42718012702732, + "c5": -26.870437210318453, + "c6": -26.718140174868644, + "c7": 26.26155510224823 }, - "vertexSeeds": { - "c1": 4.689111885952741, - "c2": 4.705870889570015, - "c3": 6.624579383520678, - "c4": 6.026626345792545, - "c5": 5.432715698047354, - "c6": 6.3394978625643885, - "c7": 5.533834527046745 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996762, + "c4": 6.3430420711974085, + "c5": 4.7572815533980615, + "c6": 3.1715210355987073, + "c7": 1.5857605177993537 }, "rgb": [238, 201, 159] }, @@ -20148,23 +20148,23 @@ "year": 1676, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 12.635446902474023, - "c2": -34.2739691232972, - "c3": 30.43639664641242, - "c4": 14.334927932708737, - "c5": 5.837482384202332, - "c6": 17.789777127652087, - "c7": -24.43753059629092 + "points": { + "c1": -17.70253337914249, + "c2": -32.50894321482158, + "c3": 36.31714752014891, + "c4": 6.456142060976326, + "c5": 29.242258840250273, + "c6": -33.49989636042439, + "c7": -25.984005339702662 }, - "vertexSeeds": { - "c1": 3.6709850449217156, - "c2": 4.809609368350135, - "c3": 4.677370045287642, - "c4": 4.100003980059288, - "c5": 3.6105828212358415, - "c6": 3.587732662726107, - "c7": 4.292931475701366 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [58, 15, 49] }, @@ -20175,23 +20175,23 @@ "year": 1676, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -12.057159612624176, - "c2": -38.00470581450238, - "c3": -14.101016866338188, - "c4": 1.733899877407012, - "c5": 1.1761356319037475, - "c6": 14.352142371726764, - "c7": 29.46942000581079 + "points": { + "c1": -38.7649464481702, + "c2": 0.261026679261505, + "c3": 37.369544584164444, + "c4": -4.832126421413335, + "c5": 21.64381176482876, + "c6": 2.0435388308032145, + "c7": 29.562100348615004 }, - "vertexSeeds": { - "c1": 4.592321625965419, - "c2": 3.9369142429469366, - "c3": 4.599771190471456, - "c4": 4.3197172820794405, - "c5": 4.489802362398686, - "c6": 4.723187313692073, - "c7": 4.413910174425473 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.93481276005548, + "c3": 5.779010633379564, + "c4": 4.623208506703653, + "c5": 3.4674063800277377, + "c6": 2.3116042533518266, + "c7": 1.1558021266759155 }, "rgb": [86, 146, 138] }, @@ -20202,23 +20202,23 @@ "year": 1676, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -27.35490188079867, - "c2": -27.79800237473512, - "c3": -25.54038954096353, - "c4": -1.8389009176705997, - "c5": 39.00882084635988, - "c6": 4.756933817633602, - "c7": 3.9457809806428727 + "points": { + "c1": 37.83205476131788, + "c2": -10.463132271403108, + "c3": 1.4919418272956264, + "c4": 16.615653671844953, + "c5": -3.7019341062439466, + "c6": 7.01861364117017, + "c7": -10.792279239971684 }, - "vertexSeeds": { - "c1": 4.258292432414599, - "c2": 4.904337053498796, - "c3": 4.741247014810737, - "c4": 4.466087450077499, - "c5": 4.6937901761777345, - "c6": 4.498274428600438, - "c7": 4.879351295231777 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.1012482662968095, + "c3": 5.9177068885806765, + "c4": 4.7341655108645355, + "c5": 3.5506241331484016, + "c6": 2.3670827554322678, + "c7": 1.1835413777161339 }, "rgb": [222, 0, 59] }, @@ -20229,23 +20229,23 @@ "year": 1676, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -5.642830548647307, - "c2": 22.633943695111956, - "c3": -15.778114519965202, - "c4": 12.973721713603044, - "c5": 19.39773369574294, - "c6": -6.347063630719084, - "c7": 23.057375784443447 + "points": { + "c1": -12.499954945986063, + "c2": 19.207908290099493, + "c3": -4.129244784505968, + "c4": 8.828389267011222, + "c5": 2.2219857064809823, + "c6": 13.292346246726733, + "c7": -12.713865113178576 }, - "vertexSeeds": { - "c1": 9.643321076861161, - "c2": 9.604613036118915, - "c3": 9.686570481340816, - "c4": 9.640780309713753, - "c5": 9.694661370353181, - "c6": 9.584880346419668, - "c7": 9.602385572246956 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520111022, + "c3": 11.55802126675911, + "c4": 9.24641701340735, + "c5": 6.934812760055435, + "c6": 4.623208506703675, + "c7": 2.3116042533517605 }, "rgb": [77, 76, 132] }, @@ -20256,23 +20256,23 @@ "year": 1676, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 7.701543839507345, - "c2": -17.815922492083626, - "c3": -25.154099837310227, - "c4": 5.775536289842556, - "c5": -11.308574674105884, - "c6": -1.490716852543045, - "c7": 25.693438735144746 + "points": { + "c1": -10.989747486118095, + "c2": 6.198662995987291, + "c3": -20.30516021435374, + "c4": -13.080080198745616, + "c5": -24.350499692749693, + "c6": -19.460141390561745, + "c7": -25.627537902115122 }, - "vertexSeeds": { - "c1": 2.501636215487877, - "c2": 2.3924816899587413, - "c3": 2.5145728994552727, - "c4": 2.759240608170097, - "c5": 2.1081595784666156, - "c6": 2.1462268580466044, - "c7": 2.381535458407032 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919543, + "c3": 3.3287101248266304, + "c4": 2.6629680998613035, + "c5": 1.9972260748959778, + "c6": 1.3314840499306524, + "c7": 0.6657420249653254 }, "rgb": [222, 0, 59] }, @@ -20283,23 +20283,23 @@ "year": 1676, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -20.67825360781968, - "c2": 35.09132732160239, - "c3": 17.185041258671156, - "c4": -29.56597442484336, - "c5": -29.43782071435662, - "c6": -9.218202952715114, - "c7": -2.7855586520747337 + "points": { + "c1": 40.112252610124, + "c2": -33.00140443942816, + "c3": -15.228483059203576, + "c4": -6.901371822773903, + "c5": -6.401640916293324, + "c6": -9.49398274428178, + "c7": 8.011737078327776 }, - "vertexSeeds": { - "c1": 4.031409940155124, - "c2": 3.785590852928156, - "c3": 3.613764337368405, - "c4": 3.5507598081076, - "c5": 3.5433089070041506, - "c6": 4.000787243609284, - "c7": 4.857245369421527 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.1012482662968095, + "c3": 5.917706888580676, + "c4": 4.734165510864537, + "c5": 3.5506241331484065, + "c6": 2.3670827554322686, + "c7": 1.1835413777161343 }, "rgb": [238, 201, 159] }, @@ -20310,23 +20310,23 @@ "year": 1676, "resistanceReported": false, "duration": 2764800, - "curveSeeds": { - "c1": -7.016285033627289, - "c2": 8.222759090284523, - "c3": 2.0630499775597517, - "c4": 12.689746402743665, - "c5": 9.491577460352428, - "c6": -9.805752295046048, - "c7": 5.193313549392091 + "points": { + "c1": -9.263349606261123, + "c2": 10.188019592651873, + "c3": -12.156582643657096, + "c4": -7.2725747509270455, + "c5": -2.149283188539325, + "c6": -0.19203514113480047, + "c7": 12.127320163253145 }, - "vertexSeeds": { - "c1": 6.593932940581905, - "c2": 6.469419048340875, - "c3": 6.4138135862053804, - "c4": 6.636428825704096, - "c5": 6.337525339356575, - "c6": 6.332005187612291, - "c7": 6.533852234858494 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.51456310679612, + "c3": 7.92880258899677, + "c4": 6.343042071197418, + "c5": 4.757281553398069, + "c6": 3.171521035598718, + "c7": 1.5857605177993674 }, "rgb": [238, 201, 159] }, @@ -20337,23 +20337,23 @@ "year": 1676, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -27.401651663270716, - "c2": -23.315372737877095, - "c3": 15.564521529985853, - "c4": 22.609537118793583, - "c5": 29.7375700903155, - "c6": 11.79254628204879, - "c7": -35.71553029621657 + "points": { + "c1": -16.93901588037304, + "c2": -4.955564173838042, + "c3": -18.855358121793035, + "c4": 3.675064532988088, + "c5": 1.947103374843266, + "c6": 5.582607915764278, + "c7": -13.533433207931136 }, - "vertexSeeds": { - "c1": 11.148159561851543, - "c2": 11.494354193572354, - "c3": 11.573772950598702, - "c4": 11.385423260679971, - "c5": 11.461370273903714, - "c6": 11.235141126692465, - "c7": 11.37043285693744 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133184, + "c3": 13.869625520110944, + "c4": 11.09570041608879, + "c5": 8.32177531206655, + "c6": 5.547850208044395, + "c7": 2.7739251040222395 }, "rgb": [238, 201, 159] }, @@ -20364,23 +20364,23 @@ "year": 1677, "resistanceReported": false, "duration": 41212800, - "curveSeeds": { - "c1": -16.440313635675857, - "c2": 26.886328465375975, - "c3": -48.31858847744191, - "c4": -35.77483171479167, - "c5": 32.07771902580071, - "c6": 12.558479664628258, - "c7": -29.860016038347034 + "points": { + "c1": -8.948544101200511, + "c2": -10.63651749660098, + "c3": 40.258485383473904, + "c4": 53.022837639540775, + "c5": -34.59815339418846, + "c6": -8.57022259032739, + "c7": 24.763190018066886 }, - "vertexSeeds": { - "c1": 8.111480609257548, - "c2": 8.128138913636478, - "c3": 8.60941693757473, - "c4": 8.536153644204271, - "c5": 8.701633437959961, - "c6": 8.170174584126649, - "c7": 9.175859901387668 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065181, + "c3": 10.957004160887658, + "c4": 8.765603328710121, + "c5": 6.574202496532599, + "c6": 4.3828016643550605, + "c7": 2.191400832177538 }, "rgb": [238, 201, 159] }, @@ -20391,23 +20391,23 @@ "year": 1677, "resistanceReported": false, "duration": 45964800, - "curveSeeds": { - "c1": -31.716816137920304, - "c2": -47.58569386030513, - "c3": 11.991933822674184, - "c4": -30.35984848903976, - "c5": 0.9578050652117582, - "c6": -20.230092224319932, - "c7": -15.487078889447169 + "points": { + "c1": 58.93265289469039, + "c2": -3.5963063577587775, + "c3": 39.846818842037734, + "c4": 8.325353940866549, + "c5": -18.72792265038116, + "c6": 1.4410576419479213, + "c7": 36.620796862321214 }, - "vertexSeeds": { - "c1": 2.557520699960516, - "c2": 2.7005779324092822, - "c3": 2.59745318819739, - "c4": 2.8753915656384574, - "c5": 2.379851467345262, - "c6": 2.877174813970885, - "c7": 2.364190449009421 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.467406380027737, + "c4": 2.7739251040221906, + "c5": 2.080443828016644, + "c6": 1.3869625520110977, + "c7": 0.6934812760055465 }, "rgb": [86, 146, 138] }, @@ -20418,23 +20418,23 @@ "year": 1677, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -35.93834699644871, - "c2": -30.834601833968243, - "c3": 9.815535668768163, - "c4": -35.38743839856481, - "c5": -32.98083391516174, - "c6": -9.083896054023661, - "c7": -38.84116613522521 + "points": { + "c1": 30.32244033532855, + "c2": 12.080660794885631, + "c3": -23.98034935066795, + "c4": 24.58317021450344, + "c5": -29.68042423200482, + "c6": -27.83136952236195, + "c7": -1.5826047628047348 }, - "vertexSeeds": { - "c1": 10.094134913117063, - "c2": 9.600982508858639, - "c3": 8.8792719332763, - "c4": 9.875326733706983, - "c5": 9.662563451362585, - "c6": 9.983054792649348, - "c7": 8.724948436213069 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076294, + "c3": 12.112806287563567, + "c4": 9.69024503005085, + "c5": 7.267683772538136, + "c6": 4.845122515025419, + "c7": 2.422561257512703 }, "rgb": [86, 146, 138] }, @@ -20445,23 +20445,23 @@ "year": 1677, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 29.47088696800897, - "c2": 36.561132459782584, - "c3": 35.633011296700104, - "c4": -39.98385092830816, - "c5": 21.42628874151255, - "c6": 3.709134831229292, - "c7": -31.57068723943481 + "points": { + "c1": -29.783203905769746, + "c2": -19.71485427558566, + "c3": 22.9179275392936, + "c4": -41.380662684968485, + "c5": 28.96417620051433, + "c6": -21.16340099254937, + "c7": 3.3652079694026753 }, - "vertexSeeds": { - "c1": 2.921140458913422, - "c2": 3.3652314932371077, - "c3": 2.9723498065923053, - "c4": 3.0696800321151123, - "c5": 3.2673119791267706, - "c6": 3.2770124122880775, - "c7": 3.3413758689008994 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280165, + "c3": 4.184003698566804, + "c4": 3.347202958853446, + "c5": 2.510402219140085, + "c6": 1.673601479426723, + "c7": 0.8368007397133616 }, "rgb": [238, 201, 159] }, @@ -20472,23 +20472,23 @@ "year": 1676, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 0.23724057676871269, - "c2": 24.121002342424894, - "c3": -15.51542033585466, - "c4": -27.398131630356772, - "c5": 29.557384814262825, - "c6": -27.88718138645233, - "c7": -25.12464973914811 + "points": { + "c1": 19.27373462367064, + "c2": -28.617690169815045, + "c3": 33.37147521816016, + "c4": 2.0465525717229625, + "c5": -0.4692811614880412, + "c6": 5.845866416505807, + "c7": 25.514439026225155 }, - "vertexSeeds": { - "c1": 7.722260081477681, - "c2": 6.587969493074841, - "c3": 6.284632728132914, - "c4": 7.198161861165936, - "c5": 7.667162819185958, - "c6": 6.511576767394877, - "c7": 6.297305808849086 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.246417013407303, + "c4": 7.397133610725845, + "c5": 5.54785020804438, + "c6": 3.6985668053629226, + "c7": 1.8492834026814664 }, "rgb": [58, 15, 49] }, @@ -20499,23 +20499,23 @@ "year": 1676, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -25.217175865067713, - "c2": 26.445207021103684, - "c3": 15.118398578632501, - "c4": -17.1775672226427, - "c5": 7.525474941584285, - "c6": 5.490002916944007, - "c7": 24.52861576735603 + "points": { + "c1": 21.106929082687202, + "c2": 13.439604188258883, + "c3": 8.857451020643019, + "c4": -14.046580464693815, + "c5": 32.09418301396463, + "c6": 13.558839632009175, + "c7": 21.08577382283459 }, - "vertexSeeds": { - "c1": 7.256915999605542, - "c2": 7.453395700401849, - "c3": 6.990354452937475, - "c4": 6.123601563896317, - "c5": 6.771223559014964, - "c6": 6.577571246751991, - "c7": 6.6748470388802295 + "offsets": { + "c1": 12.653721682847896, + "c2": 10.84604715672677, + "c3": 9.038372630605647, + "c4": 7.23069810448451, + "c5": 5.423023578363385, + "c6": 3.61534905224226, + "c7": 1.8076745261211256 }, "rgb": [238, 201, 159] }, @@ -20526,23 +20526,23 @@ "year": 1677, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -16.054583321109973, - "c2": 24.76575135327137, - "c3": -29.73375383346692, - "c4": -27.44409117021608, - "c5": -35.42872824320442, - "c6": -0.48934955568547167, - "c7": -23.294667459594915 + "points": { + "c1": -27.5058823805128, + "c2": 22.738907567829784, + "c3": -9.21720026870975, + "c4": 28.471061111581164, + "c5": 16.27799608130921, + "c6": -15.386788350107008, + "c7": 4.738281376227519 }, - "vertexSeeds": { - "c1": 8.94054397707494, - "c2": 8.906733833321072, - "c3": 8.348291978802896, - "c4": 7.763204153410687, - "c5": 7.93599794812085, - "c6": 7.67267036914146, - "c7": 7.798751166652221 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [238, 201, 159] }, @@ -20553,23 +20553,23 @@ "year": 1677, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -9.560492807478063, - "c2": -16.565236702445397, - "c3": 22.582067858729552, - "c4": -19.62759850212304, - "c5": -5.655413549513334, - "c6": 28.65791141465403, - "c7": 29.304819903252238 + "points": { + "c1": 23.97256046772938, + "c2": 7.5010868954550745, + "c3": -15.203299203919364, + "c4": 23.180751746525857, + "c5": 32.661579753413875, + "c6": 6.497089607133979, + "c7": -14.95671978166386 }, - "vertexSeeds": { - "c1": 8.352600360648985, - "c2": 7.621722353655242, - "c3": 9.136353667292877, - "c4": 7.985584180434903, - "c5": 7.590234591276801, - "c6": 7.869525036063942, - "c7": 9.01423467307703 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105409, + "c3": 10.980120203421171, + "c4": 8.784096162736937, + "c5": 6.588072122052709, + "c6": 4.392048081368472, + "c7": 2.196024040684236 }, "rgb": [238, 201, 159] }, @@ -20580,23 +20580,23 @@ "year": 1677, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 1.1434425913260853, - "c2": -12.98718746181467, - "c3": 11.939539245085136, - "c4": -27.030682693921108, - "c5": 17.83062926945712, - "c6": 31.109138630969795, - "c7": -11.673163612339554 + "points": { + "c1": -2.1489634663966584, + "c2": -20.918568356161703, + "c3": 16.123414709873316, + "c4": 17.555067695849317, + "c5": 1.6110740078489627, + "c6": -8.425210685805745, + "c7": 2.7161042189168256 }, - "vertexSeeds": { - "c1": 7.353269631808745, - "c2": 7.085496880515002, - "c3": 5.837075374481611, - "c4": 6.710388374203724, - "c5": 3.7465568517290184, - "c6": 5.219692635395216, - "c7": 7.2542982384874595 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490985, + "c3": 9.477577438742488, + "c4": 7.58206195099399, + "c5": 5.686546463245493, + "c6": 3.791030975496995, + "c7": 1.8955154877484954 }, "rgb": [86, 146, 138] }, @@ -20607,23 +20607,23 @@ "year": 1677, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 9.602423165655154, - "c2": -10.094352089263904, - "c3": 11.812829935976694, - "c4": 3.096035431109847, - "c5": 10.582137358225026, - "c6": 2.263285371328763, - "c7": -34.79570352882511 + "points": { + "c1": -25.613559833197485, + "c2": 29.329652857741124, + "c3": 10.940868319060932, + "c4": -23.392490766904206, + "c5": -28.35409221080128, + "c6": 25.410273579462753, + "c7": 7.560822838750184 }, - "vertexSeeds": { - "c1": 9.199311287147726, - "c2": 9.68365004540717, - "c3": 9.82889533083571, - "c4": 8.166005787618522, - "c5": 9.263074269863596, - "c6": 9.23856271889611, - "c7": 8.595870717161413 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593617, + "c3": 11.83541377716135, + "c4": 9.468331021729078, + "c5": 7.101248266296809, + "c6": 4.734165510864539, + "c7": 2.3670827554322695 }, "rgb": [238, 201, 159] }, @@ -20634,23 +20634,23 @@ "year": 1677, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 32.07650239859858, - "c2": -33.49478477186532, - "c3": 16.340402972995015, - "c4": 10.427971581635433, - "c5": -22.884274638749417, - "c6": -10.901584601194099, - "c7": 8.722665907941831 + "points": { + "c1": -22.553635708835557, + "c2": 8.4214591998117, + "c3": 9.676978579272394, + "c4": -21.22280098574795, + "c5": 36.22778466511967, + "c6": 19.090768283463, + "c7": -10.225486907491849 }, - "vertexSeeds": { - "c1": 6.53701504192115, - "c2": 6.056939611383081, - "c3": 4.857148490849494, - "c4": 4.7126414255200855, - "c5": 5.128427016759437, - "c6": 6.544380820942018, - "c7": 5.0535697066181395 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675448, + "c3": 7.8594544613962105, + "c4": 6.287563569116966, + "c5": 4.715672676837727, + "c6": 3.143781784558483, + "c7": 1.5718908922792445 }, "rgb": [238, 201, 159] }, @@ -20661,23 +20661,23 @@ "year": 1677, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 18.27542595005906, - "c2": -3.528794276942378, - "c3": -20.5186924087504, - "c4": -6.529823253666894, - "c5": 21.716067556997274, - "c6": -26.75184295540649, - "c7": 28.21197972095304 + "points": { + "c1": -3.658953258176595, + "c2": 2.1873560890338695, + "c3": -26.78637456742117, + "c4": 23.655933837616594, + "c5": 15.107143988830607, + "c6": 22.254467832835154, + "c7": 21.36722903589102 }, - "vertexSeeds": { - "c1": 8.076105049032197, - "c2": 7.406777610338857, - "c3": 7.704953156768377, - "c4": 7.556744879542191, - "c5": 7.869214192513374, - "c6": 8.170151966656903, - "c7": 7.948045242095157 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576975, + "c3": 10.101710587147476, + "c4": 8.081368469717992, + "c5": 6.061026352288494, + "c6": 4.040684234858996, + "c7": 2.020342117429498 }, "rgb": [86, 146, 138] }, @@ -20688,23 +20688,23 @@ "year": 1677, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 22.08570076276363, - "c2": 7.19069967778325, - "c3": 18.17653577054699, - "c4": 19.699143748663737, - "c5": -16.004680359390917, - "c6": -21.059000869565992, - "c7": 3.2510252281113026 + "points": { + "c1": -3.344916690988054, + "c2": 28.196735314960314, + "c3": 9.293008080742325, + "c4": -22.426496966232932, + "c5": 15.477991077551792, + "c6": 19.84950646839573, + "c7": -19.747718431054523 }, - "vertexSeeds": { - "c1": 2.5724727516885157, - "c2": 3.117034556833707, - "c3": 2.3463565343102712, - "c4": 2.6177202518609572, - "c5": 2.9782133604569228, - "c6": 3.1418698276965187, - "c7": 2.687899681088808 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958392, + "c3": 3.9990753582986587, + "c4": 3.1992602866389284, + "c5": 2.399445214979195, + "c6": 1.5996301433194642, + "c7": 0.7998150716597321 }, "rgb": [58, 15, 49] }, @@ -20715,23 +20715,23 @@ "year": 1677, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 6.340460437298731, - "c2": 17.9553172467378, - "c3": -19.52241612027124, - "c4": -5.370267612596365, - "c5": -3.0290166968353383, - "c6": -20.774671649691573, - "c7": -11.40138787574482 + "points": { + "c1": -9.020626135313268, + "c2": 4.270815267801964, + "c3": 26.262960400968936, + "c4": -13.7023375921267, + "c5": -8.568875830501497, + "c6": -7.1163941275544325, + "c7": -13.95767399478228 }, - "vertexSeeds": { - "c1": 3.5585369021870745, - "c2": 4.116378603013203, - "c3": 3.9763236056183686, - "c4": 3.834980345007541, - "c5": 3.7664813781385273, - "c6": 3.898900387212807, - "c7": 3.810071560657918 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808599, + "c3": 5.062413314840499, + "c4": 4.0499306518723985, + "c5": 3.0374479889042982, + "c6": 2.0249653259362006, + "c7": 1.0124826629681003 }, "rgb": [77, 76, 132] }, @@ -20742,23 +20742,23 @@ "year": 1677, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -31.560893460878432, - "c2": 19.68493861150835, - "c3": -32.64189817959229, - "c4": 16.33843331678164, - "c5": -5.086172538282245, - "c6": -24.57417824821202, - "c7": -12.903692028039533 + "points": { + "c1": -21.148348669162406, + "c2": -33.45355219476813, + "c3": -7.239109897963992, + "c4": 34.419222644243476, + "c5": 15.195324498438715, + "c6": 23.880540881835408, + "c7": 0.25422108222951323 }, - "vertexSeeds": { - "c1": 3.264887544724852, - "c2": 3.674712112270651, - "c3": 3.7011803029363697, - "c4": 3.527174781704205, - "c5": 3.684698182460975, - "c6": 3.046650125403423, - "c7": 3.6734049111033835 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803052, + "c3": 4.484512251502543, + "c4": 3.587609801202034, + "c5": 2.690707350901526, + "c6": 1.793804900601017, + "c7": 0.8969024503005085 }, "rgb": [77, 76, 132] }, @@ -20769,23 +20769,23 @@ "year": 1678, "resistanceReported": false, "duration": 49852800, - "curveSeeds": { - "c1": -12.735065862098473, - "c2": -57.772369805681514, - "c3": 27.313670958764206, - "c4": -53.95397592929663, - "c5": 58.9336757496643, - "c6": 38.57612380610726, - "c7": 63.528378104233894 + "points": { + "c1": -37.560629209352356, + "c2": 22.7100573557653, + "c3": 53.87626682640345, + "c4": 54.78778960044869, + "c5": -4.2183584679841175, + "c6": 21.975457263991217, + "c7": -16.155696564576196 }, - "vertexSeeds": { - "c1": 0.8603622300077429, - "c2": 0.9257513224013434, - "c3": 0.9705437729150194, - "c4": 0.8998271562756982, - "c5": 0.9654509574556043, - "c6": 0.8812416309638205, - "c7": 0.8952648690006969 + "offsets": { + "c1": 1.715210355987055, + "c2": 1.4701803051317621, + "c3": 1.2251502542764678, + "c4": 0.9801202034211749, + "c5": 0.7350901525658803, + "c6": 0.49006010171058745, + "c7": 0.24503005085529295 }, "rgb": [238, 201, 159] }, @@ -20796,23 +20796,23 @@ "year": 1677, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": 29.965053974589758, - "c2": 18.611729044244505, - "c3": 7.4919948420584745, - "c4": -12.44102337857214, - "c5": -30.796352795978713, - "c6": -22.629129592898853, - "c7": 15.385670960659155 + "points": { + "c1": -10.915406417036444, + "c2": -21.241691329219393, + "c3": 33.628680714446595, + "c4": 40.8773013406991, + "c5": 4.335817155791197, + "c6": 42.47236195388435, + "c7": -45.56242811023772 }, - "vertexSeeds": { - "c1": 11.435144980796196, - "c2": 9.957014983532712, - "c3": 11.392594227664695, - "c4": 11.68708946692234, - "c5": 10.328792394574945, - "c6": 10.109610232305004, - "c7": 11.488378478674834 + "offsets": { + "c1": 19.77346278317152, + "c2": 16.948682385575598, + "c3": 14.123901987979657, + "c4": 11.299121590383717, + "c5": 8.474341192787794, + "c6": 5.649560795191872, + "c7": 2.8247803975959314 }, "rgb": [86, 146, 138] }, @@ -20823,23 +20823,23 @@ "year": 1678, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -7.824245796272251, - "c2": -19.097577078922342, - "c3": -11.107461686066792, - "c4": 40.63204353873198, - "c5": 46.71130210454568, - "c6": -28.42478956478564, - "c7": 1.7786261845317384 + "points": { + "c1": -20.168152696501437, + "c2": 41.69266336456553, + "c3": -22.098701204205128, + "c4": 21.63019057519581, + "c5": -54.9385786806173, + "c6": 26.6975415855957, + "c7": 53.88727044520647 }, - "vertexSeeds": { - "c1": 7.7073940366168445, - "c2": 6.278785077689054, - "c3": 7.589274929620106, - "c4": 7.623790415268205, - "c5": 6.527787892627359, - "c6": 6.746873745620393, - "c7": 7.920307958424112 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812757, + "c3": 9.662505779010635, + "c4": 7.730004623208505, + "c5": 5.797503467406382, + "c6": 3.8650023116042527, + "c7": 1.9325011558021226 }, "rgb": [238, 201, 159] }, @@ -20850,23 +20850,23 @@ "year": 1678, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -7.0846736640430095, - "c2": 12.940068074106648, - "c3": -32.042214648052074, - "c4": -11.008238047220651, - "c5": 7.745604783914338, - "c6": 7.219787742292972, - "c7": -17.86648894916505 + "points": { + "c1": -34.91296893338671, + "c2": -10.608111658748385, + "c3": 25.23900258845707, + "c4": 18.724340053876332, + "c5": -21.078418911809184, + "c6": -23.713615561689195, + "c7": 9.531197284560427 }, - "vertexSeeds": { - "c1": 8.74267621999672, - "c2": 7.8701759234313435, - "c3": 8.69359726509525, - "c4": 8.95317987811609, - "c5": 7.888011737729361, - "c6": 8.188126563397427, - "c7": 8.031285088732115 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [58, 15, 49] }, @@ -20877,23 +20877,23 @@ "year": 1677, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 7.823456377563161, - "c2": 13.65062735179363, - "c3": 27.17029773691626, - "c4": -39.56461413857514, - "c5": 23.929328839214598, - "c6": 24.791108757203183, - "c7": -2.1103009086306557 + "points": { + "c1": -18.40541917893889, + "c2": 45.167637426513615, + "c3": 4.682527204168977, + "c4": -44.457298991787916, + "c5": 2.632783305753833, + "c6": 27.764595262848495, + "c7": -10.653076060530474 }, - "vertexSeeds": { - "c1": 7.19394914224368, - "c2": 7.683743172717657, - "c3": 6.576703112489115, - "c4": 6.761538066091238, - "c5": 6.257714179642516, - "c6": 5.455361014187067, - "c7": 5.525518574386562 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169213, + "c3": 9.292649098474339, + "c4": 7.434119278779473, + "c5": 5.575589459084607, + "c6": 3.7170596393897397, + "c7": 1.8585298196948665 }, "rgb": [222, 0, 59] }, @@ -20904,23 +20904,23 @@ "year": 1678, "resistanceReported": true, "duration": 32832000, - "curveSeeds": { - "c1": -33.49452959063912, - "c2": -6.634379392318415, - "c3": -17.515953213490565, - "c4": -30.03792673452097, - "c5": 1.423734015229627, - "c6": 9.407684751381751, - "c7": 14.828339443724502 + "points": { + "c1": -9.258259397676795, + "c2": 38.098633328168994, + "c3": -25.401356998205806, + "c4": -21.47566872025967, + "c5": -46.49295135927539, + "c6": -20.240497989235834, + "c7": -20.67440115898611 }, - "vertexSeeds": { - "c1": 7.549342867967769, - "c2": 7.683980705790167, - "c3": 6.9336668115096005, - "c4": 7.178032938363542, - "c5": 7.650519762912493, - "c6": 7.904902783280721, - "c7": 7.015758002464296 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.31761442441054, + "c3": 9.431345353675447, + "c4": 7.545076282940355, + "c5": 5.658807212205278, + "c6": 3.772538141470185, + "c7": 1.8862690707350924 }, "rgb": [222, 0, 59] }, @@ -20931,23 +20931,23 @@ "year": 1678, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -25.126002271909428, - "c2": -24.54372889619783, - "c3": -17.078825583656787, - "c4": -13.432522047410394, - "c5": 18.849591868459477, - "c6": 33.49502332296926, - "c7": 28.81981597402384 + "points": { + "c1": 30.03218229195521, + "c2": -38.92414999574202, + "c3": 8.59271760336513, + "c4": -43.84903326792856, + "c5": 15.896865493756337, + "c6": 43.31969752462834, + "c7": -17.981308081527505 }, - "vertexSeeds": { - "c1": 4.206145376557425, - "c2": 3.3555333437221235, - "c3": 3.9101902408673084, - "c4": 3.5422791521253694, - "c5": 3.869023980320107, - "c6": 3.32692563821112, - "c7": 3.584989890138422 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808599, + "c3": 5.062413314840499, + "c4": 4.0499306518723985, + "c5": 3.0374479889042982, + "c6": 2.0249653259362006, + "c7": 1.0124826629681003 }, "rgb": [86, 146, 138] }, @@ -20958,23 +20958,23 @@ "year": 1677, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -1.7819388591780267, - "c2": 14.72285883020325, - "c3": 20.86788818356557, - "c4": -4.929536993649602, - "c5": -19.82308119066731, - "c6": 15.152098022150817, - "c7": -14.774797044459838 + "points": { + "c1": -26.51955995091533, + "c2": 12.30689949537102, + "c3": 18.485603461965404, + "c4": -21.543479693910832, + "c5": 13.04499452474667, + "c6": 16.605599422555024, + "c7": 21.201555640184175 }, - "vertexSeeds": { - "c1": 3.7916667285843584, - "c2": 4.122269094955099, - "c3": 3.553496894702768, - "c4": 3.841033149278448, - "c5": 3.6754650929484787, - "c6": 4.023896017088796, - "c7": 3.3046663726166394 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441053, + "c4": 4.105409153952843, + "c5": 3.079056865464631, + "c6": 2.0527045769764216, + "c7": 1.0263522884882126 }, "rgb": [238, 201, 159] }, @@ -20985,23 +20985,23 @@ "year": 1678, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": -36.126167416773896, - "c2": -2.5196098023306135, - "c3": -35.09420137113389, - "c4": 25.769048916264083, - "c5": 41.64319842210642, - "c6": 38.83955843819176, - "c7": -14.286021298833539 + "points": { + "c1": 7.038214331177798, + "c2": 3.8467578225965084, + "c3": -19.37155363330713, + "c4": -27.048837378314285, + "c5": -40.18241845007956, + "c6": -6.61865149297406, + "c7": 33.3718963164999 }, - "vertexSeeds": { - "c1": 7.653316552630099, - "c2": 8.211240772552147, - "c3": 7.599727341968003, - "c4": 8.019162337452796, - "c5": 7.88302742174978, - "c6": 9.065997302908773, - "c7": 9.248558073428018 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.786407766990289, + "c3": 11.488673139158571, + "c4": 9.190938511326863, + "c5": 6.893203883495144, + "c6": 4.595469255663427, + "c7": 2.2977346278317095 }, "rgb": [238, 201, 159] }, @@ -21012,23 +21012,23 @@ "year": 1678, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 26.41308194541017, - "c2": 6.071160095635214, - "c3": 20.93538367219309, - "c4": -17.582091473924905, - "c5": -22.95602249205585, - "c6": -2.953443011745044, - "c7": 10.01873644242636 + "points": { + "c1": 7.089099822489203, + "c2": 9.465691582494422, + "c3": 7.1215868288417, + "c4": -29.59212795123815, + "c5": -2.4454918593468165, + "c6": 32.00211721440415, + "c7": -26.36956608914028 }, - "vertexSeeds": { - "c1": 8.242510803843293, - "c2": 8.839319688046148, - "c3": 8.541706005861982, - "c4": 8.650396114668904, - "c5": 8.727655269576156, - "c6": 9.026131751289226, - "c7": 7.770144903197765 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [86, 146, 138] }, @@ -21039,23 +21039,23 @@ "year": 1678, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 4.335344305261543, - "c2": -8.326142296505434, - "c3": -6.344048050522218, - "c4": -12.185216187133324, - "c5": -7.114983825728153, - "c6": -9.499325048646682, - "c7": 13.396620402646057 + "points": { + "c1": 26.297016224966008, + "c2": 12.117640653732273, + "c3": 4.308289933117372, + "c4": 6.005885358520949, + "c5": -16.114426543194863, + "c6": -33.08290152573915, + "c7": 31.57448344199942 }, - "vertexSeeds": { - "c1": 4.208076750108292, - "c2": 3.850956182216999, - "c3": 3.879053678410955, - "c4": 3.9781540753441362, - "c5": 3.8908212198880356, - "c6": 4.3025031715077215, - "c7": 4.568968086940201 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [238, 201, 159] }, @@ -21066,23 +21066,23 @@ "year": 1678, "resistanceReported": false, "duration": 44409600, - "curveSeeds": { - "c1": 31.268298988671795, - "c2": -18.41266865963967, - "c3": -20.919751414722327, - "c4": -40.6152541587698, - "c5": 44.474079246366436, - "c6": -23.47955304601365, - "c7": 42.65453405769261 + "points": { + "c1": -2.072378616939048, + "c2": -44.18087482150885, + "c3": -0.8390886231819721, + "c4": 29.75158385888026, + "c5": 32.226471418794354, + "c6": -50.18597664168915, + "c7": 27.813925303905783 }, - "vertexSeeds": { - "c1": 3.74147024813751, - "c2": 3.8522224559470595, - "c3": 3.436320980489102, - "c4": 4.040220199409145, - "c5": 3.6766667714713286, - "c6": 3.449013736314788, - "c7": 3.9514800254012856 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406381, + "c3": 4.831252889505319, + "c4": 3.8650023116042527, + "c5": 2.8987517337031905, + "c6": 1.9325011558021286, + "c7": 0.9662505779010622 }, "rgb": [238, 201, 159] }, @@ -21093,23 +21093,23 @@ "year": 1678, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 14.08322433701455, - "c2": 7.558972058473927, - "c3": 5.778967802957197, - "c4": -19.922117444698713, - "c5": 17.569213172192143, - "c6": -10.174290980492373, - "c7": -20.550554670011802 + "points": { + "c1": 34.53211116732882, + "c2": 12.321574752532506, + "c3": -22.512539437988224, + "c4": -23.526015870956797, + "c5": -16.51618677512214, + "c6": 21.211857997367453, + "c7": -0.7653508241113443 }, - "vertexSeeds": { - "c1": 12.979506612102671, - "c2": 13.151810750039367, - "c3": 13.859087200555583, - "c4": 13.777100135707734, - "c5": 13.120892770143797, - "c6": 11.363011901835701, - "c7": 14.466402675616294 + "offsets": { + "c1": 24.789644012944983, + "c2": 21.24826629680999, + "c3": 17.70688858067498, + "c4": 14.165510864539987, + "c5": 10.624133148404995, + "c6": 7.082755432269987, + "c7": 3.5413777161349933 }, "rgb": [222, 0, 59] }, @@ -21120,23 +21120,23 @@ "year": 1678, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 41.855485629874096, - "c2": -23.983296019693256, - "c3": -12.476172056691123, - "c4": 23.109113102010497, - "c5": 1.9839455471988785, - "c6": -7.3653507016665145, - "c7": 6.9839049157912 + "points": { + "c1": 23.200765521129213, + "c2": 16.645981223746986, + "c3": 24.178099544968518, + "c4": -0.7432867283440885, + "c5": 14.68761343389314, + "c6": 29.058813955045707, + "c7": 37.39381097460452 }, - "vertexSeeds": { - "c1": 4.95286039509438, - "c2": 4.798475996865204, - "c3": 5.055198854940793, - "c4": 5.105376046402434, - "c5": 5.331768122560484, - "c6": 5.328175224734653, - "c7": 5.401474418691135 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382795, + "c3": 6.541840036985668, + "c4": 5.233472029588541, + "c5": 3.9251040221914004, + "c6": 2.616736014794267, + "c7": 1.3083680073971335 }, "rgb": [222, 0, 59] }, @@ -21147,23 +21147,23 @@ "year": 1679, "resistanceReported": false, "duration": 45705600, - "curveSeeds": { - "c1": 2.5154643674851087, - "c2": -7.038424089151377, - "c3": -25.325107112741875, - "c4": 55.62024543180746, - "c5": 56.534335563542314, - "c6": -29.290114108682246, - "c7": -39.77927341925691 + "points": { + "c1": -48.71898746437182, + "c2": -53.66294535772466, + "c3": 15.014051503451867, + "c4": -36.292066596973484, + "c5": -51.97490906707835, + "c6": 32.324715327093784, + "c7": -50.63059698085456 }, - "vertexSeeds": { - "c1": 3.7330623674481505, - "c2": 3.740900247587404, - "c3": 3.9619556581403566, - "c4": 3.582716870402648, - "c5": 3.974865070165219, - "c6": 3.6777228721301944, - "c7": 3.682686811797894 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325937, + "c3": 4.7850208044382825, + "c4": 3.8280166435506273, + "c5": 2.8710124826629646, + "c6": 1.9140083217753097, + "c7": 0.9570041608876548 }, "rgb": [58, 15, 49] }, @@ -21174,23 +21174,23 @@ "year": 1678, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -35.196137868904344, - "c2": 41.38251781632765, - "c3": -10.750149455715775, - "c4": 2.776742866228332, - "c5": -23.596244361834962, - "c6": -30.32004322397036, - "c7": 4.652737078962737 + "points": { + "c1": -30.175205646308566, + "c2": 11.883224934717362, + "c3": -15.969001400980655, + "c4": -4.993963494496278, + "c5": 1.1011539205339176, + "c6": 2.4295345500822805, + "c7": -33.62856676683619 }, - "vertexSeeds": { - "c1": 2.0993665811598565, - "c2": 2.304303462381432, - "c3": 2.3582582722774466, - "c4": 2.3578572859724063, - "c5": 2.0487595207900373, - "c6": 2.320578445108378, - "c7": 2.027646617312979 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.4674063800277386, + "c3": 2.889505316689782, + "c4": 2.3116042533518266, + "c5": 1.7337031900138686, + "c6": 1.1558021266759133, + "c7": 0.5779010633379567 }, "rgb": [238, 201, 159] }, @@ -21201,23 +21201,23 @@ "year": 1678, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 33.369992346528136, - "c2": -24.866738160142756, - "c3": 28.933333648514775, - "c4": -21.986036431711884, - "c5": 11.410389754526634, - "c6": 28.412037199778844, - "c7": 31.315935499240737 + "points": { + "c1": 21.114285743072138, + "c2": 16.41020884830961, + "c3": -33.573271314828716, + "c4": 15.82942598333041, + "c5": -27.558602938874984, + "c6": 5.407041333304626, + "c7": 13.241586495209901 }, - "vertexSeeds": { - "c1": 4.267542899913556, - "c2": 4.1743481586739986, - "c3": 4.229798308450787, - "c4": 3.8115983823155064, - "c5": 3.7092652042634056, - "c6": 3.787402755061152, - "c7": 4.301013601424087 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572816, + "c3": 5.501618122977348, + "c4": 4.4012944983818745, + "c5": 3.300970873786406, + "c6": 2.2006472491909372, + "c7": 1.1003236245954686 }, "rgb": [77, 76, 132] }, @@ -21228,23 +21228,23 @@ "year": 1678, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 9.013768607519651, - "c2": -7.7888379910396495, - "c3": 23.512382024199546, - "c4": -8.707050511259673, - "c5": -10.191329454695122, - "c6": 18.886777765718193, - "c7": 23.887079697495388 + "points": { + "c1": -2.2731175134398782, + "c2": -29.005893818691767, + "c3": -22.53564087615888, + "c4": 1.252413988261587, + "c5": 27.52960279758215, + "c6": -20.343442131206317, + "c7": 1.1320817506514658 }, - "vertexSeeds": { - "c1": 3.5516300858140593, - "c2": 2.6916824342408234, - "c3": 3.6479731895413012, - "c4": 2.9807453887712647, - "c5": 2.984366848236334, - "c6": 3.038350034361296, - "c7": 3.440054259064404 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004161, + "c3": 4.6000924641701335, + "c4": 3.6800739713361055, + "c5": 2.760055478502082, + "c6": 1.8400369856680547, + "c7": 0.9200184928340274 }, "rgb": [222, 0, 59] }, @@ -21255,23 +21255,23 @@ "year": 1678, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -9.28050274551503, - "c2": 2.0048906827585498, - "c3": -10.239146367786745, - "c4": 17.743601279957197, - "c5": 17.808897156510675, - "c6": 6.424346454253261, - "c7": -35.530960487768105 + "points": { + "c1": 7.526619014238982, + "c2": 10.600576624381851, + "c3": 38.09192656058811, + "c4": -0.7757680457547451, + "c5": 2.9290932392223823, + "c6": -31.157665893753634, + "c7": -38.23618561512281 }, - "vertexSeeds": { - "c1": 8.429188999271041, - "c2": 8.61385069338424, - "c3": 7.967902927098841, - "c4": 8.26605425751209, - "c5": 7.509656070934, - "c6": 7.730723005244885, - "c7": 7.9522464608725105 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.39944521497919, + "c3": 10.332871012482665, + "c4": 8.266296809986127, + "c5": 6.199722607489601, + "c6": 4.133148404993063, + "c7": 2.066574202496525 }, "rgb": [58, 15, 49] }, @@ -21282,23 +21282,23 @@ "year": 1679, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 15.858784169906997, - "c2": -17.12965709272553, - "c3": -32.684103312047384, - "c4": -15.100821107517241, - "c5": -10.524061156532028, - "c6": 41.967940050197605, - "c7": 29.13813372288451 + "points": { + "c1": 9.064257703019805, + "c2": -28.418288934762305, + "c3": -6.340944232295172, + "c4": 30.26907852445897, + "c5": -16.899960650264767, + "c6": -2.5890773727313743, + "c7": 34.32927122418129 }, - "vertexSeeds": { - "c1": 7.079447010065746, - "c2": 6.705583635913558, - "c3": 6.729324160237963, - "c4": 6.775517485451423, - "c5": 7.23623377542338, - "c6": 6.8885089019701775, - "c7": 7.0084326582387755 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008317, + "c3": 9.20018492834027, + "c4": 7.360147942672211, + "c5": 5.520110957004165, + "c6": 3.6800739713361055, + "c7": 1.8400369856680467 }, "rgb": [238, 201, 159] }, @@ -21309,23 +21309,23 @@ "year": 1679, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": 33.931455119454874, - "c2": -20.015481130955337, - "c3": 42.76861411668485, - "c4": 33.30424283983063, - "c5": 42.88986196880685, - "c6": 25.224111579581383, - "c7": -14.543372816571697 + "points": { + "c1": -35.61419378763749, + "c2": 3.577131970305558, + "c3": 3.0263901022465802, + "c4": 48.868741349722065, + "c5": -51.714796568962974, + "c6": 44.761277285839036, + "c7": -41.111838638906534 }, - "vertexSeeds": { - "c1": 2.026116621035133, - "c2": 1.858349035723566, - "c3": 2.2598341764846044, - "c4": 2.207414465541498, - "c5": 2.297521434730405, - "c6": 2.168714930570075, - "c7": 2.2056860540739844 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826628, + "c3": 2.7739251040221915, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.109570041608876, + "c7": 0.5547850208044371 }, "rgb": [238, 201, 159] }, @@ -21336,23 +21336,23 @@ "year": 1678, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -20.729668212539224, - "c2": -7.4566276750788525, - "c3": -15.279138534287478, - "c4": 12.272241911291093, - "c5": 2.1006877959209866, - "c6": -8.401676633581534, - "c7": 10.767699733096645 + "points": { + "c1": -17.649830488697344, + "c2": -10.711479603961042, + "c3": -13.7220993895228, + "c4": -9.508346318260788, + "c5": 2.2231178699738834, + "c6": 13.245927040549393, + "c7": 9.145988955155278 }, - "vertexSeeds": { - "c1": 6.580584634418932, - "c2": 5.888518954425055, - "c3": 6.187617976054536, - "c4": 5.713327506340906, - "c5": 5.918868664026242, - "c6": 6.462327655051798, - "c7": 5.258765646859672 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997229, + "c3": 8.044382801664353, + "c4": 6.435506241331486, + "c5": 4.82662968099861, + "c6": 3.217753120665743, + "c7": 1.6088765603328754 }, "rgb": [222, 0, 59] }, @@ -21363,23 +21363,23 @@ "year": 1679, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -39.82486556631696, - "c2": -22.989277438527868, - "c3": -35.214400143033075, - "c4": 42.04600997123022, - "c5": 4.836777720959461, - "c6": -31.040717269297918, - "c7": 37.7052827806929 + "points": { + "c1": 43.58717314458167, + "c2": 42.857558617265056, + "c3": -18.771636505001894, + "c4": 27.13470202519342, + "c5": 6.182385214683485, + "c6": -51.97722278991245, + "c7": 17.609838526621473 }, - "vertexSeeds": { - "c1": 8.651380114692802, - "c2": 6.71491188512858, - "c3": 6.387454011592829, - "c4": 5.8746797031328715, - "c5": 8.838371696104902, - "c6": 8.8949031272434, - "c7": 8.10799500729628 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312066, + "c3": 11.673601479426722, + "c4": 9.338881183541378, + "c5": 7.004160887656031, + "c6": 4.669440591770689, + "c7": 2.334720295885347 }, "rgb": [222, 0, 59] }, @@ -21390,23 +21390,23 @@ "year": 1679, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 23.648467509568512, - "c2": -39.91400368594621, - "c3": -37.14098120138014, - "c4": 31.99794692606742, - "c5": 26.52302218592971, - "c6": 4.607158947958425, - "c7": -31.89518573003662 + "points": { + "c1": -45.50550137036703, + "c2": 21.720051480391398, + "c3": -29.81411310698736, + "c4": -20.86290589518656, + "c5": -24.135098322189474, + "c6": -44.81987313889986, + "c7": 39.85670265749585 }, - "vertexSeeds": { - "c1": 4.377936263038035, - "c2": 4.231917178787536, - "c3": 4.238661340793044, - "c4": 4.401096031039647, - "c5": 4.280919498199373, - "c6": 4.2732402675147405, - "c7": 4.272532041303678 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251036, + "c3": 5.316689782709191, + "c4": 4.253351826167363, + "c5": 3.190013869625518, + "c6": 2.1266759130836728, + "c7": 1.0633379565418275 }, "rgb": [222, 0, 59] }, @@ -21417,23 +21417,23 @@ "year": 1679, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": -24.218320672437436, - "c2": -37.7096140333394, - "c3": 55.845719903190954, - "c4": 53.17856907359912, - "c5": 0.45021323005725833, - "c6": 14.17487558837901, - "c7": -3.101173238845327 + "points": { + "c1": -1.929232617152664, + "c2": -5.721526797746357, + "c3": -21.385931492886805, + "c4": 1.9887008828236858, + "c5": 45.192933944933785, + "c6": -41.535514190657466, + "c7": -32.70157930425408 }, - "vertexSeeds": { - "c1": 3.621434617378756, - "c2": 4.219249651005697, - "c3": 4.764682077311856, - "c4": 5.17632442319834, - "c5": 3.950496357289052, - "c6": 5.234876002359233, - "c7": 4.2415891321889205 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785019, + "c3": 6.7730004623208515, + "c4": 5.41840036985668, + "c5": 4.06380027739251, + "c6": 2.7092001849283407, + "c7": 1.3546000924641695 }, "rgb": [222, 0, 59] }, @@ -21444,23 +21444,23 @@ "year": 1679, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -24.74060696082272, - "c2": -30.336038477681953, - "c3": -39.225266967809276, - "c4": -13.910798632213965, - "c5": 5.126341596900623, - "c6": 33.077002802260836, - "c7": 18.142130391381563 + "points": { + "c1": 1.4373581292628899, + "c2": -1.8223515528176861, + "c3": 9.134056495003897, + "c4": -36.624847634722215, + "c5": 0.9796879938684668, + "c6": 44.37541445414287, + "c7": 12.431626575613087 }, - "vertexSeeds": { - "c1": 5.161924597147478, - "c2": 5.72646064818383, - "c3": 5.39641067333765, - "c4": 5.498683829625669, - "c5": 5.917625620534837, - "c6": 5.321196044871757, - "c7": 4.807179085640717 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [222, 0, 59] }, @@ -21471,23 +21471,23 @@ "year": 1679, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 10.24708585605584, - "c2": 20.01137263186112, - "c3": 42.62202282855438, - "c4": -10.151191206833694, - "c5": 4.552284846055045, - "c6": 32.67921385650057, - "c7": -1.6317433452766537 + "points": { + "c1": 9.64466635048857, + "c2": -43.67748867096596, + "c3": -46.104127450134605, + "c4": -14.204894607983483, + "c5": -16.28135262882862, + "c6": 39.42478031941873, + "c7": 34.5960160298505 }, - "vertexSeeds": { - "c1": 2.461799879302595, - "c2": 2.733563924929942, - "c3": 2.678111955791215, - "c4": 2.4719171460367138, - "c5": 2.646665078422236, - "c6": 2.72457331672201, - "c7": 2.461724660949586 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [238, 201, 159] }, @@ -21498,23 +21498,23 @@ "year": 1678, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -17.27339844803331, - "c2": 14.467803330807683, - "c3": -19.79419820645863, - "c4": 32.82284095399735, - "c5": -23.277931288114736, - "c6": 5.1982334199102525, - "c7": -34.542901835153415 + "points": { + "c1": -2.9862585020627677, + "c2": 0.33808118939244736, + "c3": -32.236443888514096, + "c4": -17.446640583267783, + "c5": -14.251537547879977, + "c6": -25.42650857600622, + "c7": -8.267890662095724 }, - "vertexSeeds": { - "c1": 5.202734416834167, - "c2": 4.731306544419082, - "c3": 4.892676855871118, - "c4": 5.145309665525527, - "c5": 5.55391529954491, - "c6": 4.800650745929369, - "c7": 5.288648625491177 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055482, + "c4": 5.547850208044383, + "c5": 4.160887656033285, + "c6": 2.7739251040221915, + "c7": 1.386962552011098 }, "rgb": [222, 0, 59] }, @@ -21525,23 +21525,23 @@ "year": 1679, "resistanceReported": false, "duration": 41040000, - "curveSeeds": { - "c1": -35.048676866656365, - "c2": 30.50292459937682, - "c3": -17.49249920257366, - "c4": 52.014045223485546, - "c5": -16.866009927830255, - "c6": -22.562643133872434, - "c7": -50.709781208820054 + "points": { + "c1": -24.74523542954256, + "c2": -47.136242828157805, + "c3": 2.589738688903253, + "c4": 36.981391376185734, + "c5": 13.186589190102815, + "c6": 15.419145140186494, + "c7": -6.001903469704018 }, - "vertexSeeds": { - "c1": 9.455009942014089, - "c2": 8.371518106834749, - "c3": 9.68268847521217, - "c4": 8.341678936642346, - "c5": 9.386765104035439, - "c6": 9.45782969087418, - "c7": 9.068222455226332 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011095, + "c3": 11.558021266759132, + "c4": 9.2464170134073, + "c5": 6.934812760055481, + "c6": 4.62320850670365, + "c7": 2.311604253351819 }, "rgb": [238, 201, 159] }, @@ -21552,23 +21552,23 @@ "year": 1678, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 10.30862107894611, - "c2": 23.48644922838691, - "c3": -21.095493604881774, - "c4": -5.27137940069527, - "c5": -21.286016080263174, - "c6": 28.224165071168308, - "c7": -5.4467326066553525 + "points": { + "c1": -8.68478038034339, + "c2": -6.184477917438027, + "c3": -14.517882414291176, + "c4": -4.3345003496153325, + "c5": -30.888919363421287, + "c6": 7.667088061506938, + "c7": -16.990933101819728 }, - "vertexSeeds": { - "c1": 7.9974871643795975, - "c2": 7.667087095627373, - "c3": 6.557034422616681, - "c4": 6.556595495444234, - "c5": 8.067004900952343, - "c6": 8.014451187926507, - "c7": 7.862808418747123 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.56726768377254, + "c3": 9.63938973647712, + "c4": 7.7115117891816904, + "c5": 5.78363384188627, + "c6": 3.8557558945908497, + "c7": 1.9278779472954206 }, "rgb": [77, 76, 132] }, @@ -21579,23 +21579,23 @@ "year": 1679, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -33.64554813547859, - "c2": 25.102001355940267, - "c3": 29.242462848957693, - "c4": 32.757337096973735, - "c5": -37.891341482671926, - "c6": 20.33045124837271, - "c7": 35.01992985813059 + "points": { + "c1": -29.013709491726303, + "c2": 35.714870913136686, + "c3": 32.59999437989482, + "c4": -31.24242588227217, + "c5": -16.08773359913635, + "c6": 7.01903508830425, + "c7": -29.26437975717104 }, - "vertexSeeds": { - "c1": 5.6958223556201215, - "c2": 5.022402987109769, - "c3": 5.56835227222128, - "c4": 4.836060327299735, - "c5": 5.081055596725344, - "c6": 4.898123545719221, - "c7": 5.231318299686274 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509017, + "c3": 7.189089227924181, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.87563569116967, + "c7": 1.437817845584835 }, "rgb": [77, 76, 132] }, @@ -21606,23 +21606,23 @@ "year": 1679, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -16.090132159807318, - "c2": 9.263132185219956, - "c3": 18.666590634931143, - "c4": 7.987112747996367, - "c5": 18.723173680858974, - "c6": 18.0887895421258, - "c7": 13.955417658317916 + "points": { + "c1": -20.966838483529447, + "c2": 13.612919275479758, + "c3": -5.906378988657657, + "c4": 6.906271292653241, + "c5": -27.427057491012864, + "c6": -15.79626296948448, + "c7": 13.226339553702285 }, - "vertexSeeds": { - "c1": 4.126608687999707, - "c2": 3.8122043773779843, - "c3": 3.8840269310086097, - "c4": 3.9071244362863493, - "c5": 4.183193002614285, - "c6": 4.017380294560373, - "c7": 3.8083118121768442 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728154, + "c3": 5.016181229773459, + "c4": 4.012944983818776, + "c5": 3.0097087378640817, + "c6": 2.006472491909388, + "c7": 1.003236245954694 }, "rgb": [86, 146, 138] }, @@ -21633,23 +21633,23 @@ "year": 1679, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -23.830787558702294, - "c2": -10.509523906919483, - "c3": 15.644238607321448, - "c4": -25.567130781442074, - "c5": 33.66435210867294, - "c6": 2.5804244146982285, - "c7": 11.445173557007429 + "points": { + "c1": -21.73239215957533, + "c2": -45.31454038440647, + "c3": 39.31087629765046, + "c4": -38.654731763893345, + "c5": 40.06533333914597, + "c6": -26.322677989704477, + "c7": -12.119631192234102 }, - "vertexSeeds": { - "c1": 3.9823840861445854, - "c2": 3.958351303280015, - "c3": 4.29650021662198, - "c4": 3.43696415273839, - "c5": 3.760333880666696, - "c6": 4.308713906438704, - "c7": 4.045625305635855 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969486, + "c3": 5.154877484974574, + "c4": 4.123901987979659, + "c5": 3.092926490984743, + "c6": 2.0619509939898317, + "c7": 1.0309754969949159 }, "rgb": [238, 201, 159] }, @@ -21660,23 +21660,23 @@ "year": 1679, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 24.5892005947224, - "c2": 8.033435736333495, - "c3": 16.029177451057897, - "c4": -15.964731919701855, - "c5": -28.791987446179313, - "c6": 16.618747572765628, - "c7": -12.81921152297641 + "points": { + "c1": 7.793853573262666, + "c2": 1.9935015797599505, + "c3": 10.268533321582758, + "c4": -11.279896866049565, + "c5": 34.96578798827168, + "c6": 15.079705102716346, + "c7": 18.275993733033452 }, - "vertexSeeds": { - "c1": 4.1695855353828595, - "c2": 4.45824576219767, - "c3": 4.901558135123262, - "c4": 3.9486776328136104, - "c5": 4.354871123552807, - "c6": 3.9678757590379607, - "c7": 5.059518028425773 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181695, + "c3": 6.426259824318076, + "c4": 5.141007859454463, + "c5": 3.8557558945908474, + "c6": 2.5705039297272316, + "c7": 1.2852519648636158 }, "rgb": [86, 146, 138] }, @@ -21687,23 +21687,23 @@ "year": 1679, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -24.135484785196866, - "c2": -12.179248892838043, - "c3": 23.988544325579575, - "c4": -25.383725568567993, - "c5": 11.772705653005097, - "c6": 33.07000135008043, - "c7": -4.894482626892575 + "points": { + "c1": 12.87512637392669, + "c2": -8.18192959630558, + "c3": 3.200893040132037, + "c4": -25.823187201646025, + "c5": 12.210648472296668, + "c6": 33.07285308446417, + "c7": -21.316988230384382 }, - "vertexSeeds": { - "c1": 3.122342646215673, - "c2": 3.0988665604886108, - "c3": 3.108825164370932, - "c4": 3.2777046181388845, - "c5": 3.145898614207694, - "c6": 3.1661599103916567, - "c7": 3.4359257111402393 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.96532593619972, + "c3": 4.137771613499773, + "c4": 3.310217290799816, + "c5": 2.48266296809986, + "c6": 1.6551086453999124, + "c7": 0.8275543226999562 }, "rgb": [238, 201, 159] }, @@ -21714,23 +21714,23 @@ "year": 1679, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 3.8345988830482938, - "c2": -14.787984062157788, - "c3": -22.124383160443077, - "c4": 8.169899739353394, - "c5": 20.464634404539535, - "c6": 10.740276087025311, - "c7": -6.287993657563199 + "points": { + "c1": 21.717341779898792, + "c2": 20.683850592330845, + "c3": 6.9792682354225555, + "c4": -21.983412689663666, + "c5": 7.069828054792811, + "c6": -4.066216671811102, + "c7": -7.580227961261794 }, - "vertexSeeds": { - "c1": 7.266130187119575, - "c2": 7.164624458329509, - "c3": 7.104660506380418, - "c4": 7.233705751710549, - "c5": 7.159484105296072, - "c6": 7.238121046944011, - "c7": 7.274202166167038 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284328, + "c3": 8.78409616273694, + "c4": 7.027276930189552, + "c5": 5.270457697642164, + "c6": 3.513638465094776, + "c7": 1.756819232547388 }, "rgb": [58, 15, 49] }, @@ -21741,23 +21741,23 @@ "year": 1679, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 37.653575603732065, - "c2": -13.719987869142546, - "c3": -38.66244619898719, - "c4": -28.107468152181674, - "c5": 8.982963765290052, - "c6": 8.733397922535495, - "c7": -28.91906424484541 + "points": { + "c1": -18.15483648844027, + "c2": 16.258024044146403, + "c3": 24.288736054616706, + "c4": -11.96143265475088, + "c5": 4.652737828414516, + "c6": 5.5292313577764745, + "c7": -0.3248264431420651 }, - "vertexSeeds": { - "c1": 5.292900735399243, - "c2": 3.965190193230116, - "c3": 4.652175358266451, - "c4": 5.1937420013723425, - "c5": 4.511571113943602, - "c6": 4.038662717248722, - "c7": 5.316996591020393 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871012, + "c3": 7.397133610725845, + "c4": 5.917706888580674, + "c5": 4.438280166435509, + "c6": 2.958853444290337, + "c7": 1.4794267221451685 }, "rgb": [238, 201, 159] }, @@ -21768,23 +21768,23 @@ "year": 1679, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 18.1559226506861, - "c2": -12.516693115980825, - "c3": 15.143032612710016, - "c4": -26.76520341518004, - "c5": 7.97534330293395, - "c6": -35.378931040016056, - "c7": -22.371693351265147 + "points": { + "c1": 22.96733201012109, + "c2": 26.765994639379358, + "c3": 4.485079592901435, + "c4": -8.1909965412721, + "c5": 33.94653573106055, + "c6": -37.15160831075733, + "c7": -16.168651401231138 }, - "vertexSeeds": { - "c1": 4.972724489498382, - "c2": 5.118729457454491, - "c3": 4.898494749980652, - "c4": 5.054927455235326, - "c5": 5.023961395868193, - "c6": 4.7668873367948645, - "c7": 5.016430096126087 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859914, + "c3": 6.241331484049924, + "c4": 4.993065187239936, + "c5": 3.744798890429957, + "c6": 2.496532593619968, + "c7": 1.248266296809989 }, "rgb": [77, 76, 132] }, @@ -21795,23 +21795,23 @@ "year": 1680, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -41.13029442656885, - "c2": -37.45689519514172, - "c3": -22.243406654716388, - "c4": 0.6006918822813674, - "c5": 0.22483447919572086, - "c6": -26.43344298838904, - "c7": -48.903556136304914 + "points": { + "c1": 45.87345756327633, + "c2": -1.754723326836789, + "c3": -31.067323031175366, + "c4": 26.574414637915766, + "c5": 27.12004463549235, + "c6": 36.77094923341606, + "c7": 46.46870644541852 }, - "vertexSeeds": { - "c1": 10.288817215687033, - "c2": 9.83151360616474, - "c3": 10.669001717854663, - "c4": 10.742069797946819, - "c5": 9.97558463799716, - "c6": 10.701472403920526, - "c7": 10.405609771034515 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725385, + "c3": 13.060564031437828, + "c4": 10.448451225150267, + "c5": 7.836338418862679, + "c6": 5.224225612575133, + "c7": 2.6121128062875596 }, "rgb": [77, 76, 132] }, @@ -21822,23 +21822,23 @@ "year": 1679, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -22.52548616890144, - "c2": 11.078547588793349, - "c3": 29.292876975522482, - "c4": 27.08551205543342, - "c5": -31.053722440661005, - "c6": -30.136400493462165, - "c7": 31.576536479068174 + "points": { + "c1": -15.331936686367765, + "c2": -39.60067480461373, + "c3": -11.84858439386625, + "c4": -25.601109680124075, + "c5": 5.866923810703675, + "c6": -26.244636860926065, + "c7": -29.416020637736302 }, - "vertexSeeds": { - "c1": 5.41784667813091, - "c2": 5.8997444849307, - "c3": 5.374505444525991, - "c4": 4.642840440144731, - "c5": 6.17734793483074, - "c6": 6.01717576962415, - "c7": 5.255377027414662 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112345, + "c3": 7.535829865926951, + "c4": 6.028663892741563, + "c5": 4.521497919556174, + "c6": 3.01433194637078, + "c7": 1.5071659731853915 }, "rgb": [77, 76, 132] }, @@ -21849,23 +21849,23 @@ "year": 1679, "resistanceReported": false, "duration": 2678400, - "curveSeeds": { - "c1": -1.679549589561466, - "c2": -11.69461585918067, - "c3": 10.500728652339399, - "c4": 2.9494548002930845, - "c5": -5.240450243659528, - "c6": -2.413466547529369, - "c7": 2.6816541103398297 + "points": { + "c1": -5.649064904844645, + "c2": -3.210290909418939, + "c3": 2.120146493878531, + "c4": -14.710732237606594, + "c5": -7.959270048092788, + "c6": -13.767044393269002, + "c7": 2.0269922175555717 }, - "vertexSeeds": { - "c1": 2.394775659108569, - "c2": 2.58477109570153, - "c3": 1.9850661429103014, - "c4": 2.2028295674388954, - "c5": 2.286956757118373, - "c6": 2.7411247366426723, - "c7": 2.55585428509624 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.0776699029126195, + "c3": 3.3980582524271847, + "c4": 2.718446601941747, + "c5": 2.0388349514563116, + "c6": 1.3592233009708734, + "c7": 0.6796116504854367 }, "rgb": [77, 76, 132] }, @@ -21876,23 +21876,23 @@ "year": 1680, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": -21.798807991599066, - "c2": -18.678380090769636, - "c3": -29.379979860937443, - "c4": -35.63391229723247, - "c5": -5.9887038819584575, - "c6": -7.223249359911051, - "c7": -31.34481010436109 + "points": { + "c1": 37.19162807316028, + "c2": 11.546563895103823, + "c3": -37.68221366999805, + "c4": -19.12888027596015, + "c5": 4.383273731675956, + "c6": -6.631610322248591, + "c7": -27.8027378701678 }, - "vertexSeeds": { - "c1": 12.642995196108698, - "c2": 13.736715639745581, - "c3": 10.25750951721815, - "c4": 12.850363698009255, - "c5": 10.276916456847385, - "c6": 12.880217297452688, - "c7": 10.357115399785275 + "offsets": { + "c1": 22.9126213592233, + "c2": 19.63938973647712, + "c3": 16.366158113730936, + "c4": 13.092926490984743, + "c5": 9.81969486823856, + "c6": 6.546463245492377, + "c7": 3.2732316227461884 }, "rgb": [238, 201, 159] }, @@ -21903,23 +21903,23 @@ "year": 1680, "resistanceReported": false, "duration": 42336000, - "curveSeeds": { - "c1": -24.88082203347974, - "c2": 25.223768989660115, - "c3": -21.682626084363307, - "c4": 10.018871305811075, - "c5": 31.931885559857747, - "c6": -30.992414833756374, - "c7": 16.238504427876634 + "points": { + "c1": 27.36541936214293, + "c2": -13.859714952410279, + "c3": 54.4732698516066, + "c4": 2.4261177310191613, + "c5": -51.352605672542, + "c6": 38.837901058707615, + "c7": -36.31209338298312 }, - "vertexSeeds": { - "c1": 8.754292490397045, - "c2": 8.300654091955252, - "c3": 8.349814730908545, - "c4": 8.694093018070834, - "c5": 8.480915329285258, - "c6": 9.322659832848247, - "c7": 8.196158675208764 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.398058252427186, + "c3": 11.165048543689325, + "c4": 8.932038834951461, + "c5": 6.699029126213599, + "c6": 4.466019417475724, + "c7": 2.233009708737874 }, "rgb": [77, 76, 132] }, @@ -21930,23 +21930,23 @@ "year": 1679, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -16.629222575156756, - "c2": 3.82105435791793, - "c3": -9.153364789037465, - "c4": 15.725037889244248, - "c5": 33.444832835029274, - "c6": 17.90132456387426, - "c7": -9.54105286333873 + "points": { + "c1": -1.447952901652961, + "c2": -32.382838562876316, + "c3": 32.54673697643126, + "c4": 23.64550288099646, + "c5": 13.117112805077973, + "c6": 32.665066006998714, + "c7": -27.929769232320364 }, - "vertexSeeds": { - "c1": 7.044901809502016, - "c2": 6.418020561401221, - "c3": 6.428316518157283, - "c4": 6.67144924979322, - "c5": 6.754797635670422, - "c6": 6.822643488950504, - "c7": 6.963549957821558 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640772, + "c3": 8.41423948220064, + "c4": 6.731391585760509, + "c5": 5.048543689320376, + "c6": 3.3656957928802647, + "c7": 1.6828478964401323 }, "rgb": [222, 0, 59] }, @@ -21957,23 +21957,23 @@ "year": 1680, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 31.34242082804353, - "c2": 19.434147845722137, - "c3": -8.280937652485036, - "c4": 39.373223316407376, - "c5": -1.9259899125283084, - "c6": 24.781342623617135, - "c7": -27.00207986704327 + "points": { + "c1": 16.142980812314363, + "c2": 14.739510028973413, + "c3": -17.36365058622317, + "c4": 39.272962784113375, + "c5": 33.56983653484447, + "c6": 24.35863677970285, + "c7": -1.5243857744569596 }, - "vertexSeeds": { - "c1": 4.688637494255587, - "c2": 4.259576009414898, - "c3": 4.60712382055622, - "c4": 4.8978064202449385, - "c5": 4.674198017528774, - "c6": 5.101968292930636, - "c7": 5.3092913710355 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.6837725381414685, + "c3": 6.403143781784555, + "c4": 5.122515025427643, + "c5": 3.8418862690707343, + "c6": 2.5612575127138215, + "c7": 1.2806287563569085 }, "rgb": [58, 15, 49] }, @@ -21984,23 +21984,23 @@ "year": 1680, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -9.789227222172222, - "c2": -26.59931148172383, - "c3": 16.118015826364072, - "c4": 16.336187396468326, - "c5": -7.075236185845249, - "c6": 8.301365935533518, - "c7": -35.790255456738045 + "points": { + "c1": -21.0831367524781, + "c2": -18.474501978788723, + "c3": -26.796267470348077, + "c4": -31.010595087869717, + "c5": -17.715326729751546, + "c6": -19.669454221229902, + "c7": 8.670724692310266 }, - "vertexSeeds": { - "c1": 6.115617173966829, - "c2": 6.80328594162215, - "c3": 7.305848670779403, - "c4": 7.657485421802388, - "c5": 7.650490656283797, - "c6": 7.20595484168775, - "c7": 7.766747781235493 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128988, + "c3": 9.269533055940824, + "c4": 7.415626444752658, + "c5": 5.561719833564494, + "c6": 3.707813222376329, + "c7": 1.8539066111881646 }, "rgb": [238, 201, 159] }, @@ -22011,23 +22011,23 @@ "year": 1680, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 45.22959516846923, - "c2": -1.5579878202331159, - "c3": -8.317911692378331, - "c4": 32.52593930594131, - "c5": -21.83959180710684, - "c6": 12.140537579797922, - "c7": -45.015802789465745 + "points": { + "c1": 28.59945688363753, + "c2": -30.957035144056384, + "c3": 0.7025791031714448, + "c4": -24.623529171286087, + "c5": -45.36191688732365, + "c6": 13.014278691159042, + "c7": 8.964722995720223 }, - "vertexSeeds": { - "c1": 9.958096861006181, - "c2": 9.796415158868587, - "c3": 9.790547707023258, - "c4": 9.652695293157842, - "c5": 11.568157603855825, - "c6": 11.334422720635978, - "c7": 11.490207667503391 + "offsets": { + "c1": 20.129449838187703, + "c2": 17.253814147018026, + "c3": 14.378178455848367, + "c4": 11.502542764678688, + "c5": 8.626907073509013, + "c6": 5.751271382339337, + "c7": 2.875635691169676 }, "rgb": [86, 146, 138] }, @@ -22038,23 +22038,23 @@ "year": 1680, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -19.26863531983457, - "c2": 7.989252855416943, - "c3": -27.343748944693317, - "c4": -9.495374678376319, - "c5": -14.46804724048297, - "c6": 9.306619434555131, - "c7": 6.630048110142496 + "points": { + "c1": -11.66010334796908, + "c2": 6.322809845046876, + "c3": -21.087240850717794, + "c4": -15.259213923040448, + "c5": -14.834437385921273, + "c6": -17.771110884644457, + "c7": -27.347525843107125 }, - "vertexSeeds": { - "c1": 9.782509401990733, - "c2": 9.674731198338716, - "c3": 9.771711796124007, - "c4": 9.939919104655605, - "c5": 9.696192223014068, - "c6": 9.85162491415585, - "c7": 9.940801922277286 + "offsets": { + "c1": 16.601941747572816, + "c2": 14.230235783633828, + "c3": 11.858529819694873, + "c4": 9.486823855755885, + "c5": 7.115117891816931, + "c6": 4.7434119278779425, + "c7": 2.3717059639389553 }, "rgb": [86, 146, 138] }, @@ -22065,23 +22065,23 @@ "year": 1680, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 12.241468082578237, - "c2": 10.064542971133434, - "c3": -11.952502880869325, - "c4": -29.526039476571963, - "c5": 17.465702515481183, - "c6": -1.4885706480216356, - "c7": 1.6128595426415444 + "points": { + "c1": -12.143924939181051, + "c2": -27.946359289517112, + "c3": -31.70046252699145, + "c4": 20.662387138271498, + "c5": -4.399778688437891, + "c6": -21.59023288843806, + "c7": -34.01401779710258 }, - "vertexSeeds": { - "c1": 8.117891008298361, - "c2": 8.322226513844988, - "c3": 8.312311321308211, - "c4": 7.920830455551486, - "c5": 7.849488555153687, - "c6": 7.919559988208807, - "c7": 8.334298031895726 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.011095700416094, + "c3": 10.009246417013397, + "c4": 8.007397133610722, + "c5": 6.005547850208047, + "c6": 4.0036985668053715, + "c7": 2.0018492834026755 }, "rgb": [86, 146, 138] }, @@ -22092,23 +22092,23 @@ "year": 1680, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -34.89933984647741, - "c2": 28.539248631229526, - "c3": -34.16387377615176, - "c4": -5.959493433912556, - "c5": -7.544586111487799, - "c6": 31.632682672528958, - "c7": -9.588029853597487 + "points": { + "c1": -1.9327382911294038, + "c2": -4.763891426291934, + "c3": -2.2375349145461314, + "c4": 33.27334744675025, + "c5": -25.43878559515263, + "c6": -30.320899195476407, + "c7": -14.627150845386598 }, - "vertexSeeds": { - "c1": 5.993169030740583, - "c2": 6.200710581950344, - "c3": 5.797297315399458, - "c4": 5.989815550052332, - "c5": 6.061762440582159, - "c6": 6.111480310039972, - "c7": 6.2041399235858785 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273236, + "c3": 7.628294036061018, + "c4": 6.1026352288488175, + "c5": 4.576976421636618, + "c6": 3.0513176144243994, + "c7": 1.5256588072121997 }, "rgb": [238, 201, 159] }, @@ -22119,23 +22119,23 @@ "year": 1680, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 7.565909466126108, - "c2": -3.647032172257717, - "c3": 29.402636378174485, - "c4": -30.254203010678097, - "c5": -15.696553109786215, - "c6": -0.951090683500702, - "c7": 27.39479840508438 + "points": { + "c1": 12.77183448450451, + "c2": 31.732356273335874, + "c3": 0.4116205560770396, + "c4": 37.93991524058952, + "c5": -20.07897294686793, + "c6": 38.010991749219265, + "c7": 14.68862535849128 }, - "vertexSeeds": { - "c1": 3.959222624894325, - "c2": 3.6058936512009754, - "c3": 3.458106645822572, - "c4": 3.6607065062749147, - "c5": 3.2303419272378116, - "c6": 3.0991798357547813, - "c7": 3.2644531101371603 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325938, + "c3": 4.78502080443828, + "c4": 3.828016643550623, + "c5": 2.871012482662969, + "c6": 1.9140083217753145, + "c7": 0.9570041608876573 }, "rgb": [86, 146, 138] }, @@ -22146,23 +22146,23 @@ "year": 1680, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -13.945461995909014, - "c2": -17.488086703789694, - "c3": -35.86552942204008, - "c4": -25.584910725277293, - "c5": 41.94173790803484, - "c6": 0.7988249855470002, - "c7": 25.802961890419596 + "points": { + "c1": 26.04463072513218, + "c2": -31.513005200730017, + "c3": -36.64369258098592, + "c4": 5.784764892788957, + "c5": 26.359795872463508, + "c6": 3.459551200478927, + "c7": 8.191846477251602 }, - "vertexSeeds": { - "c1": 8.249014995082872, - "c2": 9.474462650281767, - "c3": 10.270992195746015, - "c4": 10.375945483174455, - "c5": 10.116364808274852, - "c6": 8.046402169027617, - "c7": 9.694385579682713 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524272, + "c3": 12.944983818770224, + "c4": 10.355987055016177, + "c5": 7.766990291262136, + "c6": 5.177993527508089, + "c7": 2.5889967637540408 }, "rgb": [77, 76, 132] }, @@ -22173,23 +22173,23 @@ "year": 1680, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 24.473241883062194, - "c2": 5.892913680082934, - "c3": 1.821456604183929, - "c4": 19.257499310263896, - "c5": -27.54500544513056, - "c6": 12.598974727623279, - "c7": 30.760810480039332 + "points": { + "c1": -13.120978114383206, + "c2": -25.185711869794407, + "c3": 4.332907089502612, + "c4": -20.47865411197867, + "c5": 26.825320397445317, + "c6": -33.462949978333576, + "c7": 19.75150091027629 }, - "vertexSeeds": { - "c1": 2.760039904646321, - "c2": 3.274084520590244, - "c3": 2.813833924418359, - "c4": 3.2127429205724947, - "c5": 2.916718385895819, - "c6": 3.1901067020863048, - "c7": 2.8499308978447906 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837728, + "c3": 3.929727230698104, + "c4": 3.143781784558485, + "c5": 2.357836338418861, + "c6": 1.5718908922792425, + "c7": 0.7859454461396186 }, "rgb": [58, 15, 49] }, @@ -22200,23 +22200,23 @@ "year": 1680, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -3.839825478543162, - "c2": 2.627405427766817, - "c3": -23.034464830575942, - "c4": 20.824145071383292, - "c5": 22.152161214716102, - "c6": 31.798421716937753, - "c7": -32.86309082336315 + "points": { + "c1": 29.181883662895345, + "c2": -0.4900551173472323, + "c3": 3.728313029753224, + "c4": -32.78927767408131, + "c5": 14.24685096770743, + "c6": -20.498002037598724, + "c7": 3.260765460024416 }, - "vertexSeeds": { - "c1": 9.292367762502623, - "c2": 9.92933352397459, - "c3": 10.031490991211632, - "c4": 9.504330946754974, - "c5": 9.44231563781554, - "c6": 10.053447819654563, - "c7": 9.786826348125135 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915382, + "c3": 12.020342117429493, + "c4": 9.616273693943604, + "c5": 7.212205270457691, + "c6": 4.808136846971802, + "c7": 2.4040684234859127 }, "rgb": [86, 146, 138] }, @@ -22227,23 +22227,23 @@ "year": 1680, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -28.11109080910356, - "c2": 26.217386048843636, - "c3": 20.100460823747525, - "c4": 25.4294127871188, - "c5": -11.525521450204977, - "c6": -16.663910057071224, - "c7": -22.489765561646983 + "points": { + "c1": 35.29792993051963, + "c2": 17.278770526885495, + "c3": -36.75797175150937, + "c4": 34.26720458663915, + "c5": 18.049644063622644, + "c6": -4.5063968898807545, + "c7": -26.967034288792423 }, - "vertexSeeds": { - "c1": 10.447355523274144, - "c2": 10.678611907096272, - "c3": 9.794281348066255, - "c4": 9.67887095637056, - "c5": 9.36132461870497, - "c6": 10.247724167720904, - "c7": 10.123003384537258 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.28432732316227, + "c3": 12.736939435968555, + "c4": 10.189551548774837, + "c5": 7.642163661581135, + "c6": 5.0947757743874185, + "c7": 2.5473878871937163 }, "rgb": [238, 201, 159] }, @@ -22254,23 +22254,23 @@ "year": 1680, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -6.140084969805315, - "c2": -29.13531854250826, - "c3": -42.89023400009316, - "c4": 31.820683058049646, - "c5": -31.986051535740934, - "c6": 30.733100920234868, - "c7": -36.050436796958024 + "points": { + "c1": -36.824363115700635, + "c2": -24.63275542088392, + "c3": 45.914816588571874, + "c4": 33.28577977237416, + "c5": 2.2680895378510897, + "c6": -4.986850957475568, + "c7": -0.3314335548228371 }, - "vertexSeeds": { - "c1": 7.843222935745748, - "c2": 6.60746617266485, - "c3": 6.311792634118664, - "c4": 6.441586833028425, - "c5": 7.353605732624073, - "c6": 7.66819630804989, - "c7": 6.388842385695519 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490985, + "c3": 9.477577438742484, + "c4": 7.582061950993986, + "c5": 5.686546463245488, + "c6": 3.7910309754969975, + "c7": 1.8955154877484899 }, "rgb": [58, 15, 49] }, @@ -22281,23 +22281,23 @@ "year": 1680, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 10.556350279552966, - "c2": -14.262278304393497, - "c3": 17.508258625980545, - "c4": 14.361674520680644, - "c5": -29.240432068412172, - "c6": 11.923382579830502, - "c7": 8.104746048752041 + "points": { + "c1": -19.048484532545082, + "c2": -6.7018890089488075, + "c3": 8.800378151458645, + "c4": -21.803366559147456, + "c5": 16.084220727301002, + "c6": -19.21501598501333, + "c7": -18.561622402696816 }, - "vertexSeeds": { - "c1": 0.6459603487892063, - "c2": 0.6472852361020598, - "c3": 0.6232921509051041, - "c4": 0.6236318699207499, - "c5": 0.6761356484737179, - "c6": 0.6630229362754332, - "c7": 0.6566956638063683 + "offsets": { + "c1": 1.1650485436893203, + "c2": 0.998613037447988, + "c3": 0.8321775312066586, + "c4": 0.6657420249653262, + "c5": 0.499306518723994, + "c6": 0.33287101248266454, + "c7": 0.16643550624133227 }, "rgb": [58, 15, 49] }, @@ -22308,23 +22308,23 @@ "year": 1680, "resistanceReported": false, "duration": 3715200, - "curveSeeds": { - "c1": -3.394908256844994, - "c2": 12.480098046299867, - "c3": -3.649118556053356, - "c4": -6.655778977875376, - "c5": -9.053248074061749, - "c6": -10.25624977856041, - "c7": -3.7756972885665796 + "points": { + "c1": 1.317619600962848, + "c2": -12.671742598083402, + "c3": -12.25997837089541, + "c4": 0.7178838628182138, + "c5": -7.40568668788997, + "c6": -7.80984389698016, + "c7": 9.0221296418816 }, - "vertexSeeds": { - "c1": 9.63804451686918, - "c2": 9.91055601691174, - "c3": 9.783648253252185, - "c4": 10.124669141442883, - "c5": 10.10441812138986, - "c6": 9.938363575525628, - "c7": 9.463305905116739 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [86, 146, 138] }, @@ -22335,23 +22335,23 @@ "year": 1681, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": -43.03180677719771, - "c2": 4.666726419731724, - "c3": -20.10275277237678, - "c4": 30.114072668963196, - "c5": 0.6177070448221613, - "c6": 2.5339409556240824, - "c7": 43.280708187070964 + "points": { + "c1": -43.01808113499716, + "c2": -46.47694817513779, + "c3": -38.48227196614684, + "c4": -27.836661498766148, + "c5": 28.113970339730933, + "c6": 39.93110918112591, + "c7": -41.131939674076136 }, - "vertexSeeds": { - "c1": 7.067482666965223, - "c2": 4.353280704192991, - "c3": 3.4024974291730143, - "c4": 3.5655498996719537, - "c5": 7.081028599094872, - "c6": 3.34852910773584, - "c7": 6.201516225501862 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407303, + "c4": 7.3971336107258425, + "c5": 5.54785020804438, + "c6": 3.698566805362921, + "c7": 1.8492834026814613 }, "rgb": [238, 201, 159] }, @@ -22362,23 +22362,23 @@ "year": 1682, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": 26.98779644460791, - "c2": 76.75713626431207, - "c3": -33.584395498283754, - "c4": 73.38438096458245, - "c5": -36.415111400552675, - "c6": 1.7444182705224307, - "c7": 48.080493676620776 + "points": { + "c1": 12.1521502492336, + "c2": -21.080027719232326, + "c3": -15.603363493664546, + "c4": -58.57112866419392, + "c5": 74.92712874203852, + "c6": 36.270252746904546, + "c7": -78.08083156941552 }, - "vertexSeeds": { - "c1": 9.88201643628608, - "c2": 9.261963300499882, - "c3": 9.592380863313407, - "c4": 9.801533391438483, - "c5": 9.854967399517479, - "c6": 9.766183773690127, - "c7": 10.07865573282419 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [77, 76, 132] }, @@ -22389,23 +22389,23 @@ "year": 1681, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -34.0136106835006, - "c2": 30.527235512408623, - "c3": -10.010888776612255, - "c4": -7.189102200728421, - "c5": -31.627961156170425, - "c6": -4.2044673163037345, - "c7": -33.04862127239217 + "points": { + "c1": 26.5249299042744, + "c2": -0.18926950115159968, + "c3": 0.23015745499968432, + "c4": -33.39871695189453, + "c5": 35.96585824777347, + "c6": 22.096314187552366, + "c7": -1.1180183794861662 }, - "vertexSeeds": { - "c1": 9.578142732515953, - "c2": 8.797993975106118, - "c3": 9.636393937861733, - "c4": 9.974214268997846, - "c5": 9.821883398220741, - "c6": 9.273343874135909, - "c7": 9.053962793914547 + "offsets": { + "c1": 16.86084142394822, + "c2": 14.45214979195562, + "c3": 12.04345815996301, + "c4": 9.63476652797041, + "c5": 7.22607489597781, + "c6": 4.817383263985211, + "c7": 2.4086916319925993 }, "rgb": [77, 76, 132] }, @@ -22416,23 +22416,23 @@ "year": 1681, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 14.851803783251775, - "c2": -15.879652386327624, - "c3": 9.05361728720682, - "c4": 13.555815794602943, - "c5": -1.3163623132957696, - "c6": -32.25253594502612, - "c7": -23.240755437270717 + "points": { + "c1": -4.031115012181033, + "c2": 38.647652644385104, + "c3": -6.583959034806526, + "c4": 19.474318075308595, + "c5": 21.887256058400645, + "c6": 35.48458832406689, + "c7": -29.98374310131189 }, - "vertexSeeds": { - "c1": 2.6352456565505165, - "c2": 2.4765487121673204, - "c3": 2.4583724139610306, - "c4": 2.197863045997264, - "c5": 2.0512076921025275, - "c6": 2.532797196088596, - "c7": 2.3895549582962934 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.374942209893667, + "c4": 2.6999537679149324, + "c5": 2.0249653259361993, + "c6": 1.3499768839574662, + "c7": 0.6749884419787331 }, "rgb": [222, 0, 59] }, @@ -22443,23 +22443,23 @@ "year": 1681, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": -43.739721802417236, - "c2": 31.406841959032867, - "c3": -37.41661258566165, - "c4": 10.024587346048556, - "c5": 29.801934456055996, - "c6": 17.018246300727107, - "c7": 28.87565837389277 + "points": { + "c1": 12.763699724975027, + "c2": -10.594960653579271, + "c3": -10.904994251845828, + "c4": 24.74857609231271, + "c5": 34.219102518056864, + "c6": -29.819329643543238, + "c7": -37.55234763042775 }, - "vertexSeeds": { - "c1": 8.700294644073775, - "c2": 9.44969643597079, - "c3": 8.596895296406526, - "c4": 9.226640805176775, - "c5": 8.522985595738767, - "c6": 8.210704079570666, - "c7": 8.351907902811938 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789185, + "c3": 11.37309292649099, + "c4": 9.098474341192786, + "c5": 6.823855755894592, + "c6": 4.549237170596399, + "c7": 2.2746185852981937 }, "rgb": [58, 15, 49] }, @@ -22470,23 +22470,23 @@ "year": 1681, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": 10.130797468173142, - "c2": 40.74545796726186, - "c3": -29.62760436114502, - "c4": 12.909102375297131, - "c5": 9.579761128538003, - "c6": -49.75309213985569, - "c7": -25.406592598088267 + "points": { + "c1": 23.371440326561462, + "c2": -20.135177835919322, + "c3": 43.65336624730697, + "c4": 2.7224010155479945, + "c5": 37.64145478632212, + "c6": -51.63668543809864, + "c7": -13.834195331561801 }, - "vertexSeeds": { - "c1": 7.278792063185843, - "c2": 6.877870738052051, - "c3": 8.298429280801226, - "c4": 8.499100172875213, - "c5": 7.574558052216761, - "c6": 6.760556584513567, - "c7": 7.436115135806399 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.558021266759129, + "c4": 9.246417013407303, + "c5": 6.934812760055478, + "c6": 4.623208506703649, + "c7": 2.3116042533518244 }, "rgb": [58, 15, 49] }, @@ -22497,23 +22497,23 @@ "year": 1681, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 4.478958347723804, - "c2": -23.270654671021198, - "c3": -10.760557931654883, - "c4": 23.47863145282743, - "c5": -4.327558715082954, - "c6": 29.605956611867057, - "c7": -6.178853690675911 + "points": { + "c1": -14.632458852506304, + "c2": 28.273771153775158, + "c3": 12.891515586105108, + "c4": 33.10492555565382, + "c5": -15.270298277761277, + "c6": 29.66191582153712, + "c7": 37.000835070806005 }, - "vertexSeeds": { - "c1": 8.930672530646785, - "c2": 7.6641403957848, - "c3": 8.767049926311218, - "c4": 8.23730971047738, - "c5": 8.070838277934865, - "c6": 8.463082268890247, - "c7": 7.745468133117667 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [222, 0, 59] }, @@ -22524,23 +22524,23 @@ "year": 1680, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 28.678494877960716, - "c2": 14.528820441960285, - "c3": -28.18859661817058, - "c4": 13.572857754314505, - "c5": 14.63064478855896, - "c6": -20.856749442886233, - "c7": -13.997392550254853 + "points": { + "c1": 3.7505033919496285, + "c2": 14.820293169025568, + "c3": -13.190609953686906, + "c4": -21.4600711793029, + "c5": 2.7054505268734204, + "c6": 28.441543651631882, + "c7": -21.994958081428177 }, - "vertexSeeds": { - "c1": 9.365284974093264, - "c2": 9.365284974093264, - "c3": 9.365284974093264, - "c4": 9.365284974093264, - "c5": 9.365284974093264, - "c6": 9.365284974093264, - "c7": 9.365284974093264 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -22551,23 +22551,23 @@ "year": 1681, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": 26.251197949501325, - "c2": 13.735105006002804, - "c3": 39.01210816848367, - "c4": 40.13682385159414, - "c5": 7.915490825549867, - "c6": -5.7416945982535665, - "c7": -6.293821342538784 + "points": { + "c1": 44.72153583902132, + "c2": -9.828327716627236, + "c3": 41.877799974960034, + "c4": 44.156227038397, + "c5": 10.662817999976738, + "c6": -20.66793410854125, + "c7": 36.32331427375211 }, - "vertexSeeds": { - "c1": 1.9269065421039322, - "c2": 1.8828161187804584, - "c3": 3.2040058134412615, - "c4": 2.626690282555658, - "c5": 3.7975418227336695, - "c6": 1.7049238779259448, - "c7": 3.6230178536797295 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105872, + "c4": 3.920480813684697, + "c5": 2.9403606102635234, + "c6": 1.9602404068423493, + "c7": 0.9801202034211747 }, "rgb": [222, 0, 59] }, @@ -22578,23 +22578,23 @@ "year": 1681, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 6.068502852105695, - "c2": 3.1996020978763653, - "c3": -1.4950368228875703, - "c4": 2.002544498225447, - "c5": -32.69899643367612, - "c6": 27.76531547574983, - "c7": -6.711058806560857 + "points": { + "c1": -26.203607706979675, + "c2": 38.158105218651045, + "c3": 1.907594515136715, + "c4": -30.31724797125106, + "c5": 10.751203912346462, + "c6": -32.48899670797134, + "c7": 20.350710506988477 }, - "vertexSeeds": { - "c1": 3.563824939413676, - "c2": 3.5092541288301478, - "c3": 4.210045382520638, - "c4": 3.4762744830820904, - "c5": 4.187347667711459, - "c6": 4.175757579029252, - "c7": 4.146313466471115 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.2968099861303735, + "c3": 5.247341655108645, + "c4": 4.197873324086915, + "c5": 3.1484049930651885, + "c6": 2.0989366620434575, + "c7": 1.0494683310217272 }, "rgb": [77, 76, 132] }, @@ -22605,23 +22605,23 @@ "year": 1681, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": 11.26211828318182, - "c2": 45.18925722190721, - "c3": -47.932298913220926, - "c4": 27.55906669287876, - "c5": 31.200174955570148, - "c6": -12.604481873013953, - "c7": -4.121438635723933 + "points": { + "c1": -42.38181413376681, + "c2": -11.692066724199748, + "c3": 40.78612008077049, + "c4": -23.447567685673604, + "c5": -44.458998186742654, + "c6": 52.57554298459256, + "c7": -24.23340117115502 }, - "vertexSeeds": { - "c1": 5.644600439267524, - "c2": 5.757430020020567, - "c3": 6.574108169143258, - "c4": 6.497024503819552, - "c5": 6.413559576471162, - "c6": 7.569248826889215, - "c7": 6.823586602242356 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169213, + "c3": 9.292649098474339, + "c4": 7.434119278779473, + "c5": 5.575589459084607, + "c6": 3.7170596393897397, + "c7": 1.8585298196948665 }, "rgb": [86, 146, 138] }, @@ -22632,23 +22632,23 @@ "year": 1681, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -22.817715363613317, - "c2": -34.24420389141356, - "c3": 22.741724492229174, - "c4": 1.1269131320710244, - "c5": 2.141938444132748, - "c6": -24.65846680746522, - "c7": 9.489364069332034 + "points": { + "c1": 29.957036676826036, + "c2": 38.177011829816294, + "c3": -35.922041176655114, + "c4": 14.702851001890558, + "c5": 10.821202078822523, + "c6": 15.92438952359771, + "c7": 7.248963488940575 }, - "vertexSeeds": { - "c1": 1.5198256985073577, - "c2": 1.4900191147695254, - "c3": 1.5550184905147741, - "c4": 1.5606880702572667, - "c5": 1.5662367099026335, - "c6": 1.5471469431043172, - "c7": 1.5204576895954478 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820183, + "c4": 1.5349052242256134, + "c5": 1.1511789181692085, + "c6": 0.7674526121128099, + "c7": 0.38372630605640495 }, "rgb": [238, 201, 159] }, @@ -22659,23 +22659,23 @@ "year": 1681, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 4.074775802330436, - "c2": 12.286493127627253, - "c3": 47.66191540399018, - "c4": 6.587546400085444, - "c5": -38.30610946754484, - "c6": -4.238313693458402, - "c7": 50.08205651458903 + "points": { + "c1": 19.934211173697307, + "c2": -34.41622197838796, + "c3": -31.217939958740875, + "c4": 6.359390265652927, + "c5": -0.49142778558768896, + "c6": 42.46724574089903, + "c7": -36.72432081908303 }, - "vertexSeeds": { - "c1": 3.032344721381456, - "c2": 3.3418330224689394, - "c3": 3.0524491046000555, - "c4": 2.7056120681806406, - "c5": 3.2277610004956445, - "c6": 4.452901226528299, - "c7": 4.358506426554264 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.51872399445215, + "c3": 5.432269995376792, + "c4": 4.3458159963014324, + "c5": 3.259361997226075, + "c6": 2.172907998150717, + "c7": 1.086453999075358 }, "rgb": [238, 201, 159] }, @@ -22686,23 +22686,23 @@ "year": 1681, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 27.64302355234257, - "c2": -26.89624667727517, - "c3": 39.627283710191634, - "c4": -19.338156372280363, - "c5": -19.759941455210075, - "c6": 34.04993700828814, - "c7": -20.491097214118206 + "points": { + "c1": -17.008137049757053, + "c2": -0.9154387464729723, + "c3": 39.58774561785199, + "c4": 22.585948122612052, + "c5": -18.68132355956136, + "c6": -11.220739820389134, + "c7": 25.029653672686607 }, - "vertexSeeds": { - "c1": 8.594027856977016, - "c2": 8.895881109626872, - "c3": 8.926214591063356, - "c4": 8.047800528489681, - "c5": 7.907360280288898, - "c6": 8.002318031234223, - "c7": 7.991204400946715 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.00970873786408, + "c3": 10.841423948220068, + "c4": 8.673139158576058, + "c5": 6.5048543689320475, + "c6": 4.336569579288036, + "c7": 2.168284789644025 }, "rgb": [86, 146, 138] }, @@ -22713,23 +22713,23 @@ "year": 1680, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": 8.848018950227118, - "c2": -1.145740372935851, - "c3": 6.157904614469789, - "c4": 0.051354380414380785, - "c5": 1.221961481623854, - "c6": 2.965623955598449, - "c7": 3.8202359373301213 + "points": { + "c1": 15.742654904931406, + "c2": -11.671015076638346, + "c3": -7.262157703892971, + "c4": -14.138627749299683, + "c5": -1.0608076636566217, + "c6": -15.268828631116435, + "c7": 20.720967602869763 }, - "vertexSeeds": { - "c1": 10.307690741955799, - "c2": 4.750075206866411, - "c3": 8.40760176662966, - "c4": 5.181237596315175, - "c5": 6.768293920979218, - "c6": 11.551770767395844, - "c7": 7.960484721492707 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133148, + "c3": 13.869625520110956, + "c4": 11.095700416088764, + "c5": 8.321775312066574, + "c6": 5.547850208044382, + "c7": 2.7739251040221893 }, "rgb": [58, 15, 49] }, @@ -22740,23 +22740,23 @@ "year": 1681, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": 10.554326126873129, - "c2": -0.7284666530925428, - "c3": 8.72516555325749, - "c4": 4.810212799952243, - "c5": 6.6561549139334275, - "c6": 10.299843069798634, - "c7": 4.094946394704824 + "points": { + "c1": 17.158972879270998, + "c2": -10.398092448178424, + "c3": -7.358658967936329, + "c4": -16.120811854297298, + "c5": 12.062177841849731, + "c6": -18.566272071746994, + "c7": 19.546487728165005 }, - "vertexSeeds": { - "c1": 8.811650581015353, - "c2": 8.995875248189389, - "c3": 8.394938011085504, - "c4": 8.29160996443201, - "c5": 8.953723590667105, - "c6": 8.83415127737326, - "c7": 8.141390222528836 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [58, 15, 49] }, @@ -22767,23 +22767,23 @@ "year": 1681, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": -8.28937299002041, - "c2": -1.7212329189851676, - "c3": -8.23769961196682, - "c4": 10.113348259054295, - "c5": -0.1079515924256782, - "c6": 8.531373799149577, - "c7": 14.719337083479179 + "points": { + "c1": -8.524838142104528, + "c2": 3.0935284116144928, + "c3": -17.01830043081144, + "c4": 3.7995977427860765, + "c5": -7.887100977961801, + "c6": -6.580673577286255, + "c7": 12.176213200934214 }, - "vertexSeeds": { - "c1": 12.51735505942761, - "c2": 12.261702190589684, - "c3": 12.632870341100826, - "c4": 12.666613347685155, - "c5": 12.823836859226677, - "c6": 12.455057325608607, - "c7": 13.344309409659282 + "offsets": { + "c1": 22.39482200647249, + "c2": 19.195561719833552, + "c3": 15.996301433194654, + "c4": 12.797041146555717, + "c5": 9.597780859916776, + "c6": 6.398520573277878, + "c7": 3.199260286638939 }, "rgb": [58, 15, 49] }, @@ -22794,23 +22794,23 @@ "year": 1681, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 33.07627612760914, - "c2": -42.48144102065614, - "c3": -42.203778106078786, - "c4": -34.00889995969062, - "c5": -0.19270325680344058, - "c6": -14.289187456332265, - "c7": -12.430134936158133 + "points": { + "c1": 44.1378299049718, + "c2": 48.375799480666565, + "c3": 29.747748605418472, + "c4": 10.400348059012053, + "c5": -46.2653585710571, + "c6": -10.518225836799054, + "c7": -47.236000660535524 }, - "vertexSeeds": { - "c1": 9.028253773158239, - "c2": 8.96276604892111, - "c3": 8.859853519235028, - "c4": 8.594085330899459, - "c5": 9.03580113718261, - "c6": 8.70254831293684, - "c7": 8.889346675788515 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266294, + "c3": 11.072584373555246, + "c4": 8.858067498844196, + "c5": 6.643550624133147, + "c6": 4.429033749422098, + "c7": 2.214516874711049 }, "rgb": [222, 0, 59] }, @@ -22821,23 +22821,23 @@ "year": 1681, "resistanceReported": false, "duration": 2160000, - "curveSeeds": { - "c1": -6.268760536624435, - "c2": 11.668185891963274, - "c3": -4.509500758737089, - "c4": -0.5175500858602771, - "c5": 10.775974528838868, - "c6": 2.276319931421142, - "c7": 12.274995801607497 + "points": { + "c1": 12.629351950005935, + "c2": -3.4925587940036973, + "c3": -0.5231414914344548, + "c4": 9.82270246379351, + "c5": -3.5139980736219414, + "c6": 7.311279211213032, + "c7": -12.26270246238904 }, - "vertexSeeds": { - "c1": 9.004470381443772, - "c2": 9.449312811245342, - "c3": 9.349020803997128, - "c4": 9.092329888638567, - "c5": 8.812306009944487, - "c6": 8.942817512717093, - "c7": 8.934604302534089 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110963, + "c3": 11.558021266759127, + "c4": 9.246417013407308, + "c5": 6.934812760055472, + "c6": 4.623208506703654, + "c7": 2.3116042533518373 }, "rgb": [222, 0, 59] }, @@ -22848,23 +22848,23 @@ "year": 1681, "resistanceReported": false, "duration": 2160000, - "curveSeeds": { - "c1": -8.543520150053597, - "c2": 5.095104485121011, - "c3": 5.174694266610425, - "c4": 2.498060591236749, - "c5": -3.3191444680565976, - "c6": 0.22654599163670142, - "c7": -6.4377112325754196 + "points": { + "c1": 6.683713036928237, + "c2": 0.6646564902637735, + "c3": 8.427595225364952, + "c4": 10.423853339343607, + "c5": 2.534371987815584, + "c6": 8.800517687172595, + "c7": -5.173470108604436 }, - "vertexSeeds": { - "c1": 8.602028006916328, - "c2": 7.905848444448737, - "c3": 8.980025777854207, - "c4": 8.146297121262009, - "c5": 7.9366556865442455, - "c6": 8.004733917732098, - "c7": 7.901408375842379 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [86, 146, 138] }, @@ -22875,23 +22875,23 @@ "year": 1681, "resistanceReported": true, "duration": 31017600, - "curveSeeds": { - "c1": -18.547904531115943, - "c2": -16.643514964244165, - "c3": 16.445476128604298, - "c4": 15.636511819831519, - "c5": -21.221711436985217, - "c6": -4.777422637764381, - "c7": 30.396975102747795 + "points": { + "c1": 1.211625942402513, + "c2": 15.408750024851209, + "c3": -26.906345560373666, + "c4": -12.588567480465215, + "c5": 13.983559146036775, + "c6": 7.43162514250205, + "c7": 26.14405076073613 }, - "vertexSeeds": { - "c1": 7.352635341983355, - "c2": 6.3577696620036575, - "c3": 7.218666016876561, - "c4": 7.353962024606394, - "c5": 7.292683999644965, - "c6": 7.1281171889206565, - "c7": 7.652029962110631 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410547, + "c3": 9.43134535367545, + "c4": 7.5450762829403635, + "c5": 5.658807212205269, + "c6": 3.7725381414701817, + "c7": 1.8862690707350869 }, "rgb": [58, 15, 49] }, @@ -22902,23 +22902,23 @@ "year": 1682, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 11.24312065518555, - "c2": -27.114352140579957, - "c3": -28.71868217212745, - "c4": 0.9174207009220439, - "c5": 44.1282631522295, - "c6": -21.264228331267997, - "c7": 40.86143939729994 + "points": { + "c1": 9.667674014864083, + "c2": 25.79250343946989, + "c3": 29.515840420166363, + "c4": 18.99978529089841, + "c5": -10.173009936459174, + "c6": -25.52678053611324, + "c7": -15.626979407170197 }, - "vertexSeeds": { - "c1": 9.846331346882373, - "c2": 9.24930301326004, - "c3": 9.824038511429952, - "c4": 10.157808960818643, - "c5": 9.517400676596148, - "c6": 9.354874533142494, - "c7": 9.78881474745485 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [77, 76, 132] }, @@ -22929,23 +22929,23 @@ "year": 1682, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": -24.931021352754307, - "c2": 11.556895963716002, - "c3": 48.76839107071107, - "c4": 27.033224046518335, - "c5": -24.04740886759585, - "c6": -28.16743273915167, - "c7": 46.839399915469976 + "points": { + "c1": -48.55820282634918, + "c2": -25.13631012714496, + "c3": 3.479718178512222, + "c4": -23.120617819235004, + "c5": -17.892576390316165, + "c6": -44.060069062216826, + "c7": 46.91013432332455 }, - "vertexSeeds": { - "c1": 5.1398691411480755, - "c2": 5.793122980436957, - "c3": 4.95623778862943, - "c4": 5.395231503029956, - "c5": 5.263417885702655, - "c6": 5.1800090035086095, - "c7": 5.241762931683008 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.37725381414702, + "c3": 6.981044845122518, + "c4": 5.584835876098017, + "c5": 4.188626907073516, + "c6": 2.7924179380490024, + "c7": 1.3962089690245012 }, "rgb": [58, 15, 49] }, @@ -22956,23 +22956,23 @@ "year": 1683, "resistanceReported": false, "duration": 70156800, - "curveSeeds": { - "c1": 51.01179813777594, - "c2": -80.74788902421236, - "c3": -12.911408134851584, - "c4": 7.107598495201671, - "c5": 57.98921789525892, - "c6": 81.28913128498698, - "c7": 65.06303398018193 + "points": { + "c1": -4.715452951190272, + "c2": -66.43282087218203, + "c3": -62.45161481791829, + "c4": -49.21514929957516, + "c5": 75.33212033889083, + "c6": -13.408686940429078, + "c7": 51.291351693866346 }, - "vertexSeeds": { - "c1": 8.124747774364456, - "c2": 8.726524740916814, - "c3": 9.281511547017095, - "c4": 8.48855824251552, - "c5": 8.909813144450176, - "c6": 9.315165084181313, - "c7": 8.589451842860088 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.53675450762829, + "c3": 11.280628756356919, + "c4": 9.024503005085531, + "c5": 6.768377253814145, + "c6": 4.512251502542773, + "c7": 2.2561257512713864 }, "rgb": [238, 201, 159] }, @@ -22983,23 +22983,23 @@ "year": 1682, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -24.489755324782774, - "c2": 28.679799655657696, - "c3": 33.89725896723622, - "c4": -36.6750768227559, - "c5": -11.791608807163641, - "c6": -29.1946478188382, - "c7": 30.651437462970442 + "points": { + "c1": -7.031689894864805, + "c2": -33.18173787804148, + "c3": -5.630609071079071, + "c4": -4.547085628191859, + "c5": 2.1599602119857693, + "c6": 4.980523627220457, + "c7": 39.77644071978552 }, - "vertexSeeds": { - "c1": 2.8926233936585386, - "c2": 2.3568253929095477, - "c3": 2.464456254290432, - "c4": 3.0127735351990577, - "c5": 2.796057338549506, - "c6": 2.3678143335036195, - "c7": 2.3370992967645643 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.5492371705963945, + "c3": 3.791030975496994, + "c4": 3.0328247803975956, + "c5": 2.2746185852981973, + "c6": 1.5164123901987994, + "c7": 0.758206195099398 }, "rgb": [58, 15, 49] }, @@ -23010,23 +23010,23 @@ "year": 1681, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 22.71061921131045, - "c2": 26.343795779646193, - "c3": -14.64332610066719, - "c4": -0.09532964995266724, - "c5": -3.0978673144170052, - "c6": 17.66493934068872, - "c7": -21.145789208063306 + "points": { + "c1": -9.96461997180852, + "c2": -13.141466725678708, + "c3": 7.019316979700946, + "c4": 3.878591913680772, + "c5": 1.8496775550522173, + "c6": -19.285620005917693, + "c7": -14.466948258757409 }, - "vertexSeeds": { - "c1": 3.6594168692868503, - "c2": 3.957370075254242, - "c3": 3.7108363195585894, - "c4": 3.656450413845635, - "c5": 3.7151613257272484, - "c6": 3.8629963532503027, - "c7": 3.584064864977589 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170595, + "c3": 5.270457697642162, + "c4": 4.216366158113729, + "c5": 3.1622746185852995, + "c6": 2.1081830790568663, + "c7": 1.0540915395284332 }, "rgb": [58, 15, 49] }, @@ -23037,23 +23037,23 @@ "year": 1682, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -10.720693259292759, - "c2": 8.353731183164584, - "c3": -10.443733423859769, - "c4": 18.319058873455624, - "c5": 42.886981241661104, - "c6": 7.840929678081899, - "c7": -33.56417644706504 + "points": { + "c1": 32.62459387217214, + "c2": -33.60025205697887, + "c3": 23.62025020723982, + "c4": 18.81090372572295, + "c5": -5.280330013547214, + "c6": 35.5388081607902, + "c7": 30.948904130342086 }, - "vertexSeeds": { - "c1": 7.383160193855332, - "c2": 7.82815385435805, - "c3": 7.944564946763035, - "c4": 7.548720585267701, - "c5": 7.226829770483492, - "c6": 8.675456737004133, - "c7": 8.973342722490672 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105409, + "c3": 10.980120203421171, + "c4": 8.784096162736937, + "c5": 6.588072122052709, + "c6": 4.392048081368472, + "c7": 2.196024040684236 }, "rgb": [222, 0, 59] }, @@ -23064,23 +23064,23 @@ "year": 1682, "resistanceReported": true, "duration": 25401600, - "curveSeeds": { - "c1": -1.4906458494652668, - "c2": -26.60671617902115, - "c3": 16.80287500036181, - "c4": 2.2927658868455083, - "c5": 19.253430320953726, - "c6": 13.664129706358295, - "c7": -35.30595283402181 + "points": { + "c1": 38.95579217801891, + "c2": -19.99508175401999, + "c3": 8.929628016460903, + "c4": -24.902818989846917, + "c5": -10.839590480008805, + "c6": 18.873289268798388, + "c7": 24.765041203902285 }, - "vertexSeeds": { - "c1": 4.162197071170832, - "c2": 3.607634610407006, - "c3": 3.904222576027899, - "c4": 3.735210105797594, - "c5": 4.122485907596632, - "c6": 4.2131081974268305, - "c7": 4.097169252682771 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768375, + "c3": 5.039297272306982, + "c4": 4.031437817845583, + "c5": 3.0235783633841895, + "c6": 2.0157189089227914, + "c7": 1.0078594544613932 }, "rgb": [77, 76, 132] }, @@ -23091,23 +23091,23 @@ "year": 1682, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": -2.593586807927778, - "c2": -7.121926617631054, - "c3": -18.76641934843894, - "c4": -17.905416464407217, - "c5": -45.150495536440175, - "c6": 10.477289722202705, - "c7": -17.912798972467893 + "points": { + "c1": 36.31578643071353, + "c2": -14.860571021097861, + "c3": -29.961123840562582, + "c4": 24.717261868790345, + "c5": -44.824577001612035, + "c6": 14.393935684572227, + "c7": -11.202474125580338 }, - "vertexSeeds": { - "c1": 13.05400340228335, - "c2": 11.741281115789041, - "c3": 11.852547355607488, - "c4": 12.022651364577584, - "c5": 11.769696725062621, - "c6": 12.707721036240732, - "c7": 11.140680928316987 + "offsets": { + "c1": 22.20064724919094, + "c2": 19.02912621359224, + "c3": 15.857605177993536, + "c4": 12.68608414239482, + "c5": 9.51456310679612, + "c6": 6.343042071197418, + "c7": 3.171521035598701 }, "rgb": [222, 0, 59] }, @@ -23118,23 +23118,23 @@ "year": 1682, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 29.625138355709375, - "c2": -3.389236877647683, - "c3": -37.59234277294027, - "c4": -6.1108468726452685, - "c5": 28.775762734622766, - "c6": 7.695821377947986, - "c7": -27.205418425671773 + "points": { + "c1": 18.79468522441484, + "c2": -33.75353316421156, + "c3": -41.71393925100122, + "c4": -18.63666327740321, + "c5": -23.803395991285505, + "c6": 4.686329304711471, + "c7": -36.696737394657774 }, - "vertexSeeds": { - "c1": 7.079201980028617, - "c2": 6.5999275375038655, - "c3": 6.585458603327, - "c4": 7.131756314679242, - "c5": 7.448424612207302, - "c6": 5.931065686126654, - "c7": 6.632283036657588 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887653, + "c3": 9.130836800739715, + "c4": 7.30466944059177, + "c5": 5.47850208044383, + "c6": 3.652334720295885, + "c7": 1.826167360147946 }, "rgb": [238, 201, 159] }, @@ -23145,23 +23145,23 @@ "year": 1682, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 21.047529067809833, - "c2": -13.782692507070323, - "c3": -4.914376437383549, - "c4": 8.442556971913717, - "c5": -18.789295440774232, - "c6": 24.09688924769629, - "c7": 25.84486980860102 + "points": { + "c1": -1.8729920493947887, + "c2": 29.18034318844156, + "c3": -8.73045761128515, + "c4": -10.413980062345722, + "c5": 7.948502607983272, + "c6": 25.578488244787756, + "c7": -3.5794807453972304 }, - "vertexSeeds": { - "c1": 2.5993056922347737, - "c2": 2.438098667511908, - "c3": 2.678787242830751, - "c4": 2.595181702374371, - "c5": 2.447856882172495, - "c6": 2.6905205176468487, - "c7": 2.445048924560779 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.3749422098936646, + "c4": 2.699953767914935, + "c5": 2.0249653259362006, + "c6": 1.3499768839574662, + "c7": 0.6749884419787318 }, "rgb": [77, 76, 132] }, @@ -23172,23 +23172,23 @@ "year": 1682, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -0.03224728492588014, - "c2": 28.014013455661555, - "c3": 9.831427404939348, - "c4": 34.119130415979555, - "c5": -2.325412587307298, - "c6": 6.085498933744468, - "c7": 18.967331959912414 + "points": { + "c1": -32.13449782031807, + "c2": 12.859802379309379, + "c3": -4.849560084870127, + "c4": -4.520041500694305, + "c5": -32.57029878616228, + "c6": 36.17556022499859, + "c7": -5.477206987988339 }, - "vertexSeeds": { - "c1": 9.953372235775205, - "c2": 11.339422826804217, - "c3": 10.623117679327342, - "c4": 12.210084480000537, - "c5": 10.232088002099468, - "c6": 12.879422424153244, - "c7": 12.908457881189335 + "offsets": { + "c1": 21.74757281553398, + "c2": 18.640776699029125, + "c3": 15.533980582524281, + "c4": 12.427184466019419, + "c5": 9.320388349514563, + "c6": 6.213592233009702, + "c7": 3.106796116504859 }, "rgb": [86, 146, 138] }, @@ -23199,23 +23199,23 @@ "year": 1682, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 34.65164846204452, - "c2": -19.601220798762302, - "c3": -10.266087075575399, - "c4": 30.528901443002653, - "c5": -0.45992348900217905, - "c6": -6.418284909657569, - "c7": 5.854010648554045 + "points": { + "c1": -18.21859451319217, + "c2": -12.252679335732513, + "c3": -3.6043955724437566, + "c4": -6.387421885312044, + "c5": -8.217179786655251, + "c6": -28.882451062457058, + "c7": -9.24329198848362 }, - "vertexSeeds": { - "c1": 8.933834938958316, - "c2": 7.119637355218653, - "c3": 8.493835702072007, - "c4": 8.163604654524008, - "c5": 7.650553482256743, - "c6": 6.967527771983052, - "c7": 7.163826546297856 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783635, + "c3": 10.79519186315303, + "c4": 8.636153490522425, + "c5": 6.477115117891822, + "c6": 4.318076745261217, + "c7": 2.159038372630605 }, "rgb": [58, 15, 49] }, @@ -23226,23 +23226,23 @@ "year": 1683, "resistanceReported": false, "duration": 43113600, - "curveSeeds": { - "c1": 32.07379768871172, - "c2": -22.0785107507402, - "c3": -45.80998901285052, - "c4": -37.62416700457887, - "c5": -43.12836826269036, - "c6": 43.30081808141816, - "c7": 4.433028742052002 + "points": { + "c1": 9.872154894128883, + "c2": -27.458247036043257, + "c3": 4.288257542756767, + "c4": 39.00090150994731, + "c5": 14.732964502333033, + "c6": 53.06210386397659, + "c7": -46.47130421414269 }, - "vertexSeeds": { - "c1": 9.850124065796074, - "c2": 8.277462631123399, - "c3": 8.23074328459754, - "c4": 8.308026780741022, - "c5": 9.955937181071135, - "c6": 9.384285301521164, - "c7": 10.50643293194763 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122055, + "c3": 12.713823393435048, + "c4": 10.171058714748042, + "c5": 7.628294036061027, + "c6": 5.085529357374021, + "c7": 2.5427646786870137 }, "rgb": [238, 201, 159] }, @@ -23253,23 +23253,23 @@ "year": 1682, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -24.719370463655267, - "c2": 7.2841405262851495, - "c3": -28.94739689352233, - "c4": -28.076186125495635, - "c5": 23.0680402426922, - "c6": -12.054694683698767, - "c7": 6.751373993893097 + "points": { + "c1": 6.247022091626235, + "c2": -20.868632424127696, + "c3": 13.489447164878548, + "c4": 9.000397985372011, + "c5": -6.895090578016358, + "c6": -16.308784255955107, + "c7": -5.466438925795167 }, - "vertexSeeds": { - "c1": 5.852101598850462, - "c2": 5.935867730468907, - "c3": 4.672065298473844, - "c4": 5.667466309011521, - "c5": 5.35145750291846, - "c6": 5.87877464071364, - "c7": 5.1427024588567 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [77, 76, 132] }, @@ -23280,23 +23280,23 @@ "year": 1682, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 2.9611834638958783, - "c2": -4.774289256870858, - "c3": 39.05487174137272, - "c4": -33.189196440345114, - "c5": -0.4203942983482918, - "c6": 1.187741900126234, - "c7": -8.17502406931834 + "points": { + "c1": -35.03689311707937, + "c2": 23.583896986774192, + "c3": 46.72316632530227, + "c4": -0.22978269352928749, + "c5": 14.66186483997648, + "c6": -0.8483265845855783, + "c7": 7.809843309190626 }, - "vertexSeeds": { - "c1": 9.623528088227442, - "c2": 9.595329701595565, - "c3": 8.991045219643112, - "c4": 10.486043969571336, - "c5": 9.300331563788655, - "c6": 8.558362614711987, - "c7": 9.228100082225788 + "offsets": { + "c1": 18.7378640776699, + "c2": 16.06102635228848, + "c3": 13.384188626907074, + "c4": 10.707350901525652, + "c5": 8.03051317614424, + "c6": 5.353675450762826, + "c7": 2.676837725381413 }, "rgb": [86, 146, 138] }, @@ -23307,23 +23307,23 @@ "year": 1683, "resistanceReported": false, "duration": 39052800, - "curveSeeds": { - "c1": 30.815577824969267, - "c2": -31.978053452432903, - "c3": 26.738543724655287, - "c4": 40.73038746446528, - "c5": 13.6458015571596, - "c6": 22.65919026509711, - "c7": -40.189353449602045 + "points": { + "c1": -3.9500876440586126, + "c2": 46.783868461483195, + "c3": -26.980285333803547, + "c4": 49.060369542488644, + "c5": 28.14013440346102, + "c6": 13.066640350337195, + "c7": -12.074466031913573 }, - "vertexSeeds": { - "c1": 5.30266305527393, - "c2": 4.918924592646483, - "c3": 5.071987948269657, - "c4": 5.262495401583252, - "c5": 5.127377848816264, - "c6": 5.00267137877515, - "c7": 4.873476085375948 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221915, + "c3": 6.4493758668515975, + "c4": 5.159500693481279, + "c5": 3.869625520110961, + "c6": 2.579750346740643, + "c7": 1.289875173370325 }, "rgb": [86, 146, 138] }, @@ -23334,23 +23334,23 @@ "year": 1682, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -43.1815340076968, - "c2": 12.900283751278899, - "c3": 9.628898726300484, - "c4": 18.018570596530772, - "c5": -0.860376327179182, - "c6": -33.4993085053802, - "c7": 28.233021942677887 + "points": { + "c1": 29.84335544523463, + "c2": 34.31273102542033, + "c3": -35.48133807799192, + "c4": 15.501984323540867, + "c5": -15.111915480931515, + "c6": -1.244011730201528, + "c7": 35.372680948874084 }, - "vertexSeeds": { - "c1": 2.5051210913984185, - "c2": 2.8208560535284275, - "c3": 2.7419428548354148, - "c4": 4.119891602840391, - "c5": 2.4545251483948993, - "c6": 4.0634310783135925, - "c7": 4.564177640945208 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176144, + "c3": 5.848358760980121, + "c4": 4.678687008784096, + "c5": 3.509015256588072, + "c6": 2.339343504392048, + "c7": 1.169671752196024 }, "rgb": [86, 146, 138] }, @@ -23361,23 +23361,23 @@ "year": 1682, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 18.61791543788979, - "c2": 21.416717028169263, - "c3": 17.82685394185007, - "c4": -3.539761623475915, - "c5": -14.077487731327043, - "c6": 27.94446472316925, - "c7": -4.400012100672246 + "points": { + "c1": 27.2328032287341, + "c2": -17.172349334996596, + "c3": -15.014206777406997, + "c4": 29.793210688068868, + "c5": -13.23208566498181, + "c6": -18.175437771041672, + "c7": -0.20314233754560718 }, - "vertexSeeds": { - "c1": 4.998905077097374, - "c2": 4.937250186987461, - "c3": 5.618555818430963, - "c4": 5.103453068964177, - "c5": 4.8074888668333005, - "c6": 4.929783097185112, - "c7": 5.18813940039982 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [77, 76, 132] }, @@ -23388,23 +23388,23 @@ "year": 1682, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": 12.350421344446396, - "c2": 3.4328514828061607, - "c3": 12.641964755263672, - "c4": -5.030314105508975, - "c5": 2.274542151957551, - "c6": 7.890635090727198, - "c7": 14.698648839917734 + "points": { + "c1": 2.5162326156601793, + "c2": -3.9169598351696084, + "c3": 14.175980883160417, + "c4": 9.80123248593835, + "c5": 4.194759215260412, + "c6": 18.788331169680294, + "c7": -9.247666114572093 }, - "vertexSeeds": { - "c1": 5.529048057681406, - "c2": 5.344952835995527, - "c3": 6.065633057187586, - "c4": 5.04460479623886, - "c5": 5.73298284729652, - "c6": 5.9157528233523875, - "c7": 6.060189853219285 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [222, 0, 59] }, @@ -23415,23 +23415,23 @@ "year": 1682, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 22.47552764445048, - "c2": 7.767359025262415, - "c3": 22.464550725800024, - "c4": -10.829125666249439, - "c5": 29.26664741359886, - "c6": 26.478305102289013, - "c7": 1.428918959975917 + "points": { + "c1": 41.62227344281166, + "c2": -9.784115098837077, + "c3": 5.723361369065998, + "c4": 27.191244013951945, + "c5": 37.72445376858467, + "c6": -26.741390754736994, + "c7": -24.2516738423188 }, - "vertexSeeds": { - "c1": 0.4950537368316871, - "c2": 0.5935479436562142, - "c3": 0.6432736029050387, - "c4": 0.5226276605600353, - "c5": 0.5751546902203135, - "c6": 0.532869589598232, - "c7": 0.6013314528120007 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.9708737864077671, + "c3": 0.8090614886731393, + "c4": 0.6472491909385116, + "c5": 0.4854368932038838, + "c6": 0.3236245954692559, + "c7": 0.1618122977346278 }, "rgb": [238, 201, 159] }, @@ -23442,23 +23442,23 @@ "year": 1682, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 32.18114095408191, - "c2": -2.4670890071075036, - "c3": 3.0798108218004643, - "c4": 41.956217481373415, - "c5": -12.366361518703116, - "c6": 43.08646773638003, - "c7": -26.915422759993913 + "points": { + "c1": 32.136740646015056, + "c2": 9.275087095048796, + "c3": 1.2528761981752226, + "c4": 33.46173855284566, + "c5": 31.246721382691746, + "c6": -44.66985795809678, + "c7": -44.85016923872011 }, - "vertexSeeds": { - "c1": 2.4142554561677874, - "c2": 2.8778397716235533, - "c3": 2.1505128127141755, - "c4": 2.3814195353859793, - "c5": 2.2785099177222117, - "c6": 3.008050581612065, - "c7": 1.5485293608348072 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435507, + "c3": 3.6985668053629217, + "c4": 2.958853444290338, + "c5": 2.2191400832177535, + "c6": 1.4794267221451685, + "c7": 0.7397133610725847 }, "rgb": [77, 76, 132] }, @@ -23469,23 +23469,23 @@ "year": 1682, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -18.0915534242965, - "c2": 28.460983639031447, - "c3": -32.23676595663933, - "c4": 6.907860343163669, - "c5": -28.83140179247558, - "c6": 6.17095659314451, - "c7": 26.73988843798481 + "points": { + "c1": 20.928733596017757, + "c2": -45.208786702290055, + "c3": 21.483340047083836, + "c4": -17.500598973201928, + "c5": 36.22610495630938, + "c6": 33.34350777975761, + "c7": 27.055788124537294 }, - "vertexSeeds": { - "c1": 7.9745464486973345, - "c2": 7.822901421081158, - "c3": 8.02340700051167, - "c4": 7.705470438477027, - "c5": 7.509643394212524, - "c6": 9.511305006295611, - "c7": 7.531304328619627 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.091539528432733, + "c3": 11.74294960702728, + "c4": 9.394359685621827, + "c5": 7.045769764216367, + "c6": 4.697179842810914, + "c7": 2.3485899214054604 }, "rgb": [77, 76, 132] }, @@ -23496,23 +23496,23 @@ "year": 1683, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": -28.233872477768784, - "c2": -13.553719595861274, - "c3": -6.406758954221061, - "c4": 7.00238331737274, - "c5": 17.80509810688961, - "c6": 13.689076206188886, - "c7": 37.82265955630594 + "points": { + "c1": 52.134171832180265, + "c2": -48.554516646156344, + "c3": 44.00590241177145, + "c4": 31.482435385009914, + "c5": -6.55964794126097, + "c6": 37.353858765605985, + "c7": 20.58533078631536 }, - "vertexSeeds": { - "c1": 6.842792409947597, - "c2": 6.933386119246385, - "c3": 6.047677049280373, - "c4": 6.7011912949359935, - "c5": 5.720683542081985, - "c6": 5.6963500936815645, - "c7": 5.561877833540231 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560328, + "c3": 8.368007397133612, + "c4": 6.694405917706886, + "c5": 5.020804438280169, + "c6": 3.347202958853443, + "c7": 1.6736014794267178 }, "rgb": [77, 76, 132] }, @@ -23523,23 +23523,23 @@ "year": 1683, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 23.883708098788645, - "c2": -24.830556515742074, - "c3": -20.321673268771665, - "c4": -3.381417549461517, - "c5": 18.228970901063434, - "c6": 0.8525585801806557, - "c7": -7.569426262720469 + "points": { + "c1": 38.054687931922246, + "c2": 38.75844479384858, + "c3": 20.213655203231937, + "c4": 10.8845588966349, + "c5": 6.797145906152963, + "c6": 30.923894885216853, + "c7": 25.32074549595289 }, - "vertexSeeds": { - "c1": 8.282804921137819, - "c2": 7.835976747755641, - "c3": 7.9356955847973625, - "c4": 8.495281907157736, - "c5": 7.855417599923797, - "c6": 8.957290157578964, - "c7": 8.743718621662108 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [238, 201, 159] }, @@ -23550,23 +23550,23 @@ "year": 1683, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 36.28658919624807, - "c2": 1.6719390900696425, - "c3": -25.852501825843067, - "c4": 23.173768952854388, - "c5": 36.64412606524829, - "c6": 7.184728934844941, - "c7": 27.584743402067474 + "points": { + "c1": -41.36172986423853, + "c2": -3.7596968384040323, + "c3": 40.292399911880935, + "c4": -16.86517276249507, + "c5": 22.664110862059715, + "c6": 44.84971480113583, + "c7": 28.730435367305077 }, - "vertexSeeds": { - "c1": 8.99150898406399, - "c2": 8.829283530790747, - "c3": 8.514189366000313, - "c4": 8.145157044218877, - "c5": 8.26035365833422, - "c6": 9.945549750207533, - "c7": 8.188309107424212 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.64355062413315, + "c3": 13.869625520110949, + "c4": 11.095700416088762, + "c5": 8.321775312066576, + "c6": 5.547850208044381, + "c7": 2.773925104022188 }, "rgb": [86, 146, 138] }, @@ -23577,23 +23577,23 @@ "year": 1683, "resistanceReported": false, "duration": 52531200, - "curveSeeds": { - "c1": -31.04438752629587, - "c2": -59.617169456827696, - "c3": -9.238476315560064, - "c4": -3.1330029783144653, - "c5": 16.455576574554428, - "c6": -60.86634232549716, - "c7": 16.91998562754557 + "points": { + "c1": -29.995561047991693, + "c2": -64.85735616937724, + "c3": 21.7580114460916, + "c4": -30.717213909466338, + "c5": -29.355903387935363, + "c6": -5.926363890644865, + "c7": 56.610371581920774 }, - "vertexSeeds": { - "c1": 2.4383686645640097, - "c2": 2.648120835716049, - "c3": 2.593819379311902, - "c4": 2.4536258617305666, - "c5": 2.9616455139507885, - "c6": 2.5534301405109807, - "c7": 2.870433057963839 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.2718446601941755, + "c3": 3.559870550161814, + "c4": 2.847896440129448, + "c5": 2.1359223300970864, + "c6": 1.423948220064725, + "c7": 0.7119741100323638 }, "rgb": [77, 76, 132] }, @@ -23604,23 +23604,23 @@ "year": 1682, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -21.9227767764823, - "c2": -28.781221047586026, - "c3": 24.547233169536135, - "c4": -13.058511266642249, - "c5": 27.134027819186628, - "c6": -11.548918793274186, - "c7": -6.122778615524581 + "points": { + "c1": -21.69921071437641, + "c2": -26.61587624726661, + "c3": 11.917590454482678, + "c4": -14.117786506054841, + "c5": -33.79090194875273, + "c6": 16.677229304936283, + "c7": 2.2564354573285215 }, - "vertexSeeds": { - "c1": 3.7414896896278313, - "c2": 3.359056545007857, - "c3": 3.6035196562208847, - "c4": 3.7844507780667764, - "c5": 3.264653375420894, - "c6": 3.2431205264617913, - "c7": 3.6423872417651855 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325938, + "c3": 4.785020804438279, + "c4": 3.828016643550625, + "c5": 2.871012482662967, + "c6": 1.9140083217753125, + "c7": 0.9570041608876582 }, "rgb": [86, 146, 138] }, @@ -23631,23 +23631,23 @@ "year": 1682, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -3.358199023436356, - "c2": -38.23691129893821, - "c3": -9.00045161530458, - "c4": 27.076747316880812, - "c5": 7.137299045376309, - "c6": 35.77437174697414, - "c7": 10.35515187573369 + "points": { + "c1": -22.035740798684817, + "c2": 11.917621843064715, + "c3": -20.079232142202457, + "c4": -8.966350501869528, + "c5": 15.439296567620623, + "c6": 5.330489081453095, + "c7": 36.61267669747828 }, - "vertexSeeds": { - "c1": 6.335944562441742, - "c2": 6.1959952463945625, - "c3": 6.5181747763973075, - "c4": 6.275703401691689, - "c5": 5.989603430920038, - "c6": 6.573784516902802, - "c7": 6.220956362105829 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398975, + "c4": 6.564956079519188, + "c5": 4.923717059639387, + "c6": 3.282478039759587, + "c7": 1.6412390198797864 }, "rgb": [238, 201, 159] }, @@ -23658,23 +23658,23 @@ "year": 1683, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -24.306263720524232, - "c2": -12.904645525829334, - "c3": -33.066026992810905, - "c4": 21.680351095238315, - "c5": -3.480898688282295, - "c6": -32.675449811783885, - "c7": -5.782209614979557 + "points": { + "c1": -21.03549483118361, + "c2": 34.635469110796315, + "c3": 10.085729151868819, + "c4": 9.300187720888836, + "c5": 3.3083859981366217, + "c6": -39.96623254796047, + "c7": -10.35721660170502 }, - "vertexSeeds": { - "c1": 2.7436048508183957, - "c2": 2.421752511092559, - "c3": 2.927438709037852, - "c4": 2.682748213087679, - "c5": 2.4521409144827357, - "c6": 2.4237976825702745, - "c7": 2.5172848533794183 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194175, + "c3": 3.559870550161812, + "c4": 2.8478964401294498, + "c5": 2.1359223300970873, + "c6": 1.4239482200647249, + "c7": 0.7119741100323624 }, "rgb": [77, 76, 132] }, @@ -23685,23 +23685,23 @@ "year": 1682, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": 9.643897075476012, - "c2": -0.3163796306384903, - "c3": 15.324462102998414, - "c4": 10.051545356267663, - "c5": 0.23362957712456733, - "c6": -14.646976817671513, - "c7": -9.926066158474283 + "points": { + "c1": -7.761335620935286, + "c2": 3.1168767536738358, + "c3": -20.000426224760897, + "c4": -12.953185449174981, + "c5": -12.911956221004106, + "c6": 5.360682055340266, + "c7": 7.731812278764249 }, - "vertexSeeds": { - "c1": 1.821367489504079, - "c2": 1.823840390174411, - "c3": 1.743622578730035, - "c4": 1.8234613554439993, - "c5": 1.7966918935649472, - "c6": 1.9024520792821675, - "c7": 1.917819735945071 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.3116042533518244, + "c4": 1.8492834026814589, + "c5": 1.3869625520110975, + "c6": 0.9246417013407318, + "c7": 0.4623208506703659 }, "rgb": [86, 146, 138] }, @@ -23712,23 +23712,23 @@ "year": 1683, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -2.527537067269421, - "c2": 29.9772364052655, - "c3": -3.9375730068096466, - "c4": 10.660592999951703, - "c5": -20.97926175463892, - "c6": 18.905586680315352, - "c7": -13.786040718676539 + "points": { + "c1": 28.48578012931584, + "c2": 16.656876846048085, + "c3": 33.658314655169164, + "c4": -28.93741242642737, + "c5": 1.0732907961983855, + "c6": -19.986051112949806, + "c7": 8.342987994750516 }, - "vertexSeeds": { - "c1": 4.657285522019034, - "c2": 4.934292422161825, - "c3": 4.599298799208777, - "c4": 4.485047240116614, - "c5": 4.397666254818646, - "c6": 4.887676802747774, - "c7": 4.907234049385406 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377251, + "c3": 5.963938973647712, + "c4": 4.771151178918167, + "c5": 3.578363384188629, + "c6": 2.3855755894590835, + "c7": 1.1927877947295455 }, "rgb": [86, 146, 138] }, @@ -23739,23 +23739,23 @@ "year": 1683, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 18.915565730362143, - "c2": -25.976497273357786, - "c3": 1.1662200078754772, - "c4": -11.300386946893216, - "c5": 13.438277604255756, - "c6": -29.893888234299485, - "c7": -27.606065530166525 + "points": { + "c1": 26.077963070804252, + "c2": -30.677201345001095, + "c3": 15.986669786749204, + "c4": 4.938026481820174, + "c5": 5.555772987694304, + "c6": -14.420613916904454, + "c7": 1.8334061442417138 }, - "vertexSeeds": { - "c1": 4.221962889306181, - "c2": 4.536726120584863, - "c3": 4.758950426920731, - "c4": 4.275610084144567, - "c5": 4.431461659553498, - "c6": 4.753870653628752, - "c7": 3.4254174656287892 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [58, 15, 49] }, @@ -23766,23 +23766,23 @@ "year": 1683, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -38.60684382417717, - "c2": -18.7253849704704, - "c3": 2.3598318521341994, - "c4": 39.645107916073904, - "c5": 8.903202677969013, - "c6": -37.41645816213657, - "c7": 35.70295436997299 + "points": { + "c1": -3.291316401606238, + "c2": -0.33825500358182836, + "c3": -6.977386431456743, + "c4": -12.045931555379653, + "c5": -14.451550093465087, + "c6": -35.79840179527055, + "c7": 19.82477705577552 }, - "vertexSeeds": { - "c1": 6.55934963458861, - "c2": 5.789916853564226, - "c3": 6.125813069366336, - "c4": 4.576288927865203, - "c5": 5.874880421979374, - "c6": 5.31949220979248, - "c7": 4.808259626298158 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203882, + "c3": 8.737864077669903, + "c4": 6.990291262135922, + "c5": 5.242718446601941, + "c6": 3.495145631067961, + "c7": 1.7475728155339805 }, "rgb": [238, 201, 159] }, @@ -23793,23 +23793,23 @@ "year": 1683, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -16.992913566708275, - "c2": 6.145995662525753, - "c3": 2.8268427839099033, - "c4": 19.5916917462409, - "c5": -12.74256324272935, - "c6": 3.0889386102330505, - "c7": -26.83469224931238 + "points": { + "c1": 1.5750848663414843, + "c2": -18.77105056855402, + "c3": -2.3328265895352054, + "c4": -26.3802725229468, + "c5": -20.51196962697679, + "c6": 25.8561638088561, + "c7": -8.338694484623506 }, - "vertexSeeds": { - "c1": 6.1183704161116035, - "c2": 5.405125416934837, - "c3": 5.14208532415878, - "c4": 6.383675203428797, - "c5": 5.420077416512262, - "c6": 5.1309371193363775, - "c7": 5.571560892021122 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434122, + "c3": 7.720758206195098, + "c4": 6.1766065649560815, + "c5": 4.632454923717058, + "c6": 3.0883032824780408, + "c7": 1.5441516412390244 }, "rgb": [86, 146, 138] }, @@ -23820,23 +23820,23 @@ "year": 1683, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 5.905320651009198, - "c2": -1.4824044970796706, - "c3": -2.9983488506894886, - "c4": -19.24065073555546, - "c5": -8.844860174514302, - "c6": 20.42181766601469, - "c7": 4.262725430211933 + "points": { + "c1": 3.2194967824394816, + "c2": 14.77358164656362, + "c3": -21.051481917532442, + "c4": -19.76699548858895, + "c5": 13.61212706457404, + "c6": 9.486105100804238, + "c7": -23.57078935289505 }, - "vertexSeeds": { - "c1": 8.819366508135648, - "c2": 9.83999272624307, - "c3": 8.558037748158666, - "c4": 8.809877255286832, - "c5": 10.048721654765803, - "c6": 10.059452412735927, - "c7": 9.294399551465542 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915396, + "c3": 12.020342117429493, + "c4": 9.616273693943594, + "c5": 7.212205270457691, + "c6": 4.80813684697179, + "c7": 2.404068423485889 }, "rgb": [222, 0, 59] }, @@ -23847,23 +23847,23 @@ "year": 1683, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 10.132063770608688, - "c2": -11.01462308525186, - "c3": 17.63768578541338, - "c4": -22.467952426711598, - "c5": -3.430709228788885, - "c6": -21.470814997917138, - "c7": 25.71752170531188 + "points": { + "c1": -1.4566214642278084, + "c2": 0.6189770108033343, + "c3": -29.865457159369413, + "c4": 28.579193903137742, + "c5": 27.40332354686575, + "c6": -21.865567921442505, + "c7": -5.919263028800266 }, - "vertexSeeds": { - "c1": 3.7997849944392543, - "c2": 3.382191705642747, - "c3": 4.447904873260297, - "c4": 3.980036445381694, - "c5": 4.197758731856878, - "c6": 3.4794792456361128, - "c7": 3.21822365530695 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291261, + "c3": 5.33980582524272, + "c4": 4.2718446601941755, + "c5": 3.2038834951456305, + "c6": 2.135922330097086, + "c7": 1.0679611650485445 }, "rgb": [86, 146, 138] }, @@ -23874,23 +23874,23 @@ "year": 1683, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 1.6286729149290835, - "c2": -13.07880394153877, - "c3": -10.580917963824458, - "c4": 16.82518213674112, - "c5": 15.19697310490799, - "c6": -1.949913097101998, - "c7": -14.999009295698432 + "points": { + "c1": 31.746411852656983, + "c2": -0.5116550601287031, + "c3": 34.24149511127009, + "c4": -12.617751640292045, + "c5": 33.13651220804052, + "c6": -13.818860680928818, + "c7": 10.396215381583758 }, - "vertexSeeds": { - "c1": 2.0044971985820843, - "c2": 3.149502419062289, - "c3": 2.0539811436333135, - "c4": 2.332504059921755, - "c5": 2.481858271706381, - "c6": 2.7585324901691495, - "c7": 2.6710108751006345 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.5492371705963945, + "c3": 3.791030975496994, + "c4": 3.0328247803975956, + "c5": 2.2746185852981973, + "c6": 1.5164123901987978, + "c7": 0.7582061950993982 }, "rgb": [222, 0, 59] }, @@ -23901,23 +23901,23 @@ "year": 1683, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 21.19999379676026, - "c2": -0.5422174549582124, - "c3": -16.30336163762227, - "c4": 4.768606064825718, - "c5": -12.514257348292775, - "c6": -14.140772664619407, - "c7": -1.52471673613908 + "points": { + "c1": -1.3028998232496036, + "c2": 2.4874036103959014, + "c3": 3.56721369809296, + "c4": 18.25483178908496, + "c5": -12.515931685235074, + "c6": -24.395540644945633, + "c7": -1.564911870896239 }, - "vertexSeeds": { - "c1": 3.7194227910609317, - "c2": 3.7603024455426635, - "c3": 3.8129734311508514, - "c4": 3.770186923188502, - "c5": 3.7945493932689174, - "c6": 3.8395822560364907, - "c7": 3.850696324328622 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044388, + "c3": 4.6232085067036435, + "c4": 3.6985668053629186, + "c5": 2.773925104022194, + "c6": 1.8492834026814697, + "c7": 0.9246417013407245 }, "rgb": [238, 201, 159] }, @@ -23928,23 +23928,23 @@ "year": 1683, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": -27.553483744377722, - "c2": 10.109454082147678, - "c3": 27.11228573727343, - "c4": -6.345773284759517, - "c5": 37.739818931942146, - "c6": 41.12854200687024, - "c7": 46.1119182967626 + "points": { + "c1": -5.967606965532525, + "c2": -6.019098030264708, + "c3": -13.299675156376317, + "c4": 0.5924217682104711, + "c5": 17.73633066069204, + "c6": -45.839309562029754, + "c7": 27.74055744220474 }, - "vertexSeeds": { - "c1": 3.0247841416726122, - "c2": 3.1028140446556973, - "c3": 3.1047168364438615, - "c4": 3.003004354963114, - "c5": 3.0416541428997967, - "c6": 3.0896687710832293, - "c7": 3.172671910104848 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837728, + "c3": 3.9297272306981035, + "c4": 3.143781784558485, + "c5": 2.3578363384188608, + "c6": 1.5718908922792425, + "c7": 0.7859454461396179 }, "rgb": [58, 15, 49] }, @@ -23955,23 +23955,23 @@ "year": 1683, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 16.815530660653845, - "c2": -13.874176768957714, - "c3": 5.754727243329331, - "c4": 9.477297740505424, - "c5": 7.394775755657047, - "c6": -4.152955962837243, - "c7": -23.650405747393734 + "points": { + "c1": -15.246797984969067, + "c2": -17.93169014417251, + "c3": 16.844344823185857, + "c4": 6.324842273469457, + "c5": -21.553943574507066, + "c6": 17.026681178915005, + "c7": 29.343688901865768 }, - "vertexSeeds": { - "c1": 3.279313913281967, - "c2": 3.268246726658751, - "c3": 3.280451684159386, - "c4": 3.2977508788590217, - "c5": 3.2956825936692424, - "c6": 3.2686474675033845, - "c7": 3.288972183717242 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.74341192787797, + "c3": 3.952843273231589, + "c4": 3.162274618585287, + "c5": 2.371705963938985, + "c6": 1.5811373092926828, + "c7": 0.7905686546463021 }, "rgb": [222, 0, 59] }, @@ -23982,23 +23982,23 @@ "year": 1683, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -19.35355250206781, - "c2": 33.32994354294033, - "c3": -5.817070338457011, - "c4": -16.545443357868663, - "c5": 6.72032285662862, - "c6": 2.645097568228735, - "c7": -23.117589256783006 + "points": { + "c1": 2.3901043823208568, + "c2": -9.847664938413, + "c3": -18.740936075387605, + "c4": -0.016037631843566658, + "c5": 9.520959876507334, + "c6": -18.480502654757867, + "c7": -18.73328889459068 }, - "vertexSeeds": { - "c1": 7.564742061160605, - "c2": 7.395069681437247, - "c3": 5.9722746244258, - "c4": 7.416162346883954, - "c5": 7.36639499279865, - "c6": 6.011351814258632, - "c7": 6.111394136837207 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927882, + "c3": 9.15395284327323, + "c4": 7.323162274618587, + "c5": 5.4923717059639365, + "c6": 3.6615811373092937, + "c7": 1.8307905686546508 }, "rgb": [86, 146, 138] }, @@ -24009,23 +24009,23 @@ "year": 1683, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -33.287242626992715, - "c2": -7.482518616667953, - "c3": 10.00242639114709, - "c4": -33.993083633065325, - "c5": 18.29737187055059, - "c6": -22.813941027071543, - "c7": -35.67560392628064 + "points": { + "c1": -16.482789434959102, + "c2": -28.84938329396833, + "c3": 15.22225339199165, + "c4": -0.6093651374103857, + "c5": 0.6823338304512205, + "c6": 5.77424486293701, + "c7": -8.758362658277683 }, - "vertexSeeds": { - "c1": 8.719581959586336, - "c2": 5.6030781687945055, - "c3": 4.959390400217756, - "c4": 7.14304812019948, - "c5": 8.613846135016104, - "c6": 4.9239819014883155, - "c7": 5.495370747837343 + "offsets": { + "c1": 17.184466019417478, + "c2": 14.729542302357837, + "c3": 12.274618585298198, + "c4": 9.81969486823856, + "c5": 7.364771151178917, + "c6": 4.90984743411928, + "c7": 2.45492371705964 }, "rgb": [222, 0, 59] }, @@ -24036,23 +24036,23 @@ "year": 1683, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": -6.039866620210972, - "c2": -12.14800250985821, - "c3": -11.088064705854519, - "c4": -12.360487764129601, - "c5": -3.872706370391274, - "c6": -3.349442868914089, - "c7": 5.364424789710164 + "points": { + "c1": -14.464585623558769, + "c2": 2.8519967171266494, + "c3": 21.76123340455193, + "c4": 19.99723354013517, + "c5": 1.9615055837777682, + "c6": 5.812168287700924, + "c7": 14.271145971838195 }, - "vertexSeeds": { - "c1": 5.459766887832571, - "c2": 5.042532658875777, - "c3": 5.3077350994516586, - "c4": 5.367293279282787, - "c5": 4.902885273731451, - "c6": 4.939009514908103, - "c7": 4.895877183873441 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342579, + "c3": 6.51872399445215, + "c4": 5.214979195561719, + "c5": 3.9112343966712895, + "c6": 2.6074895977808596, + "c7": 1.3037447988904298 }, "rgb": [222, 0, 59] }, @@ -24063,23 +24063,23 @@ "year": 1684, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": -32.03764331556238, - "c2": 50.59794296474731, - "c3": 28.12258633013888, - "c4": 35.891198138079666, - "c5": -54.36338708178005, - "c6": -43.35941929861646, - "c7": -6.808230392461674 + "points": { + "c1": 19.58146938359767, + "c2": -40.80367950844598, + "c3": 34.2690825721917, + "c4": 41.90849844386309, + "c5": -48.91137544221746, + "c6": -11.41947900690893, + "c7": -25.956203968671737 }, - "vertexSeeds": { - "c1": 6.324045658755882, - "c2": 5.6927114965657655, - "c3": 3.7044119483548235, - "c4": 2.8889431470214038, - "c5": 6.217902523397138, - "c6": 5.145887357793178, - "c7": 3.3218981250293433 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273231, + "c3": 7.628294036061026, + "c4": 6.102635228848821, + "c5": 4.576976421636616, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [86, 146, 138] }, @@ -24090,23 +24090,23 @@ "year": 1683, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -2.3649455663759404, - "c2": -29.905017209208502, - "c3": -16.656310154764363, - "c4": -29.867510185795496, - "c5": 28.121388049098808, - "c6": 27.68917657997868, - "c7": -2.403116815089117 + "points": { + "c1": 16.380223604065385, + "c2": -23.903339670781584, + "c3": -13.326800196815782, + "c4": 24.16135366894362, + "c5": -11.868186819424714, + "c6": -15.92302973767319, + "c7": 2.358295122988764 }, - "vertexSeeds": { - "c1": 2.8718613048369814, - "c2": 2.7622851526864367, - "c3": 2.3822314321002205, - "c4": 2.547074648215182, - "c5": 3.0140340396359053, - "c6": 2.729099380781248, - "c7": 3.0664996904067365 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998614, + "c3": 4.022191400832176, + "c4": 3.217753120665742, + "c5": 2.4133148404993077, + "c6": 1.60887656033287, + "c7": 0.8044382801664358 }, "rgb": [86, 146, 138] }, @@ -24117,23 +24117,23 @@ "year": 1683, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -22.39834615035632, - "c2": -14.266359776756042, - "c3": 8.107433575178902, - "c4": 6.82482751939888, - "c5": -20.97538169668218, - "c6": 10.492894402339793, - "c7": -10.388197083470677 + "points": { + "c1": 12.775472788953977, + "c2": 15.033895547531877, + "c3": 19.335125616700957, + "c4": 11.487561212532412, + "c5": -18.933816225698433, + "c6": -19.418083922105552, + "c7": -26.734744566514895 }, - "vertexSeeds": { - "c1": 2.2646173953350264, - "c2": 2.2661025337183873, - "c3": 2.2694050212964076, - "c4": 2.2433474816658423, - "c5": 2.2378195588659855, - "c6": 2.2477270167899768, - "c7": 2.2433808375639392 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746174, + "c3": 2.7276930189551587, + "c4": 2.182154415164116, + "c5": 1.6366158113731006, + "c6": 1.091077207582058, + "c7": 0.5455386037910155 }, "rgb": [238, 201, 159] }, @@ -24144,23 +24144,23 @@ "year": 1683, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -35.630310335901186, - "c2": -24.00750287699507, - "c3": -31.869699785644876, - "c4": -26.12138528861125, - "c5": 12.81886648359309, - "c6": -40.89673745408179, - "c7": 6.575652490246711 + "points": { + "c1": -37.23030939536862, + "c2": -15.927544037496084, + "c3": 16.729032265768197, + "c4": 41.506199187347335, + "c5": -39.91795766360593, + "c6": 10.063920030120855, + "c7": 27.96316019682004 }, - "vertexSeeds": { - "c1": 5.5217386906225085, - "c2": 4.2299252252883806, - "c3": 4.639153101770274, - "c4": 4.238930070730386, - "c5": 4.700644698451018, - "c6": 4.872223447726272, - "c7": 4.790760413284412 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669904, + "c3": 7.28155339805825, + "c4": 5.825242718446603, + "c5": 4.368932038834951, + "c6": 2.9126213592232997, + "c7": 1.4563106796116512 }, "rgb": [222, 0, 59] }, @@ -24171,23 +24171,23 @@ "year": 1683, "resistanceReported": false, "duration": 6048000, - "curveSeeds": { - "c1": -0.6153891690419897, - "c2": -3.804239368480557, - "c3": 12.88775264136946, - "c4": 11.715504835174432, - "c5": 4.003888009131035, - "c6": 4.662264884311945, - "c7": -15.821838290751046 + "points": { + "c1": 1.3587825101560291, + "c2": 8.120817114562126, + "c3": 18.090689160123084, + "c4": -14.539811273275511, + "c5": 5.214872061983236, + "c6": 11.441579409211379, + "c7": 8.423268835738504 }, - "vertexSeeds": { - "c1": 4.665060211834008, - "c2": 5.18733246721782, - "c3": 4.8680792642913815, - "c4": 5.925327908254376, - "c5": 5.379643928727503, - "c6": 4.90469541986986, - "c7": 4.676802468297288 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [77, 76, 132] }, @@ -24198,23 +24198,23 @@ "year": 1683, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 35.9003706969667, - "c2": -21.591063321278092, - "c3": 3.8514388635515857, - "c4": -28.406717922652028, - "c5": -0.35474850135224045, - "c6": -4.375846176271054, - "c7": 29.13236704149832 + "points": { + "c1": 31.9993669286685, + "c2": 6.281035070000222, + "c3": -31.766453556509134, + "c4": -39.92700848850555, + "c5": 17.676334992543147, + "c6": 2.9371442858697066, + "c7": 40.5328583952024 }, - "vertexSeeds": { - "c1": 5.779453995927581, - "c2": 5.426711228524784, - "c3": 6.721528075045212, - "c4": 4.663359890868998, - "c5": 6.847341272687623, - "c6": 7.784715137163547, - "c7": 8.507480146217176 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019419, + "c3": 10.355987055016183, + "c4": 8.284789644012944, + "c5": 6.2135922330097095, + "c6": 4.142394822006474, + "c7": 2.071197411003237 }, "rgb": [222, 0, 59] }, @@ -24225,23 +24225,23 @@ "year": 1683, "resistanceReported": false, "duration": 3456000, - "curveSeeds": { - "c1": 2.755919860222953, - "c2": 8.430362147213547, - "c3": 1.1673138123474498, - "c4": 11.6963241495544, - "c5": -7.005719893353528, - "c6": -11.082540650895458, - "c7": -5.493475781299981 + "points": { + "c1": -4.489020691472728, + "c2": -9.494059709770866, + "c3": -8.389622196411551, + "c4": -0.36529408259709584, + "c5": 2.217847345946211, + "c6": -4.076794264938549, + "c7": 4.362568066816404 }, - "vertexSeeds": { - "c1": 8.712461357449564, - "c2": 8.313446185666775, - "c3": 7.806842167092783, - "c4": 8.84832868833666, - "c5": 7.7265714592149415, - "c6": 8.209030975511492, - "c7": 8.481452285165071 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [222, 0, 59] }, @@ -24252,23 +24252,23 @@ "year": 1683, "resistanceReported": false, "duration": 3369600, - "curveSeeds": { - "c1": 2.229237134827944, - "c2": -8.473079640438701, - "c3": 2.5125521435772864, - "c4": 4.656046146520209, - "c5": 1.9416058138346717, - "c6": 12.917834236762845, - "c7": 3.3684396296375834 + "points": { + "c1": -9.826658206281344, + "c2": -11.248635178678267, + "c3": 12.587316920609213, + "c4": -7.302623706528218, + "c5": 6.262385790886617, + "c6": 2.461974755917927, + "c7": 10.662718552485051 }, - "vertexSeeds": { - "c1": 8.425612399526592, - "c2": 7.777778088114004, - "c3": 8.356492555712833, - "c4": 8.17624429112912, - "c5": 8.431921989840355, - "c6": 8.732578583292954, - "c7": 8.076442976876073 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [238, 201, 159] }, @@ -24279,23 +24279,23 @@ "year": 1684, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -3.7087101316386253, - "c2": -3.1620794373534977, - "c3": -23.188718623573315, - "c4": -8.45339665247613, - "c5": -13.60563253144494, - "c6": -43.21702510755623, - "c7": -25.1598360059469 + "points": { + "c1": 25.8566624883521, + "c2": 45.813757092274486, + "c3": -40.85086268435243, + "c4": -3.218393691395754, + "c5": 23.858807498873162, + "c6": 33.96389250848782, + "c7": -44.9617332740557 }, - "vertexSeeds": { - "c1": 3.3161544170162145, - "c2": 3.590191995935029, - "c3": 3.860396322299067, - "c4": 3.715498062739377, - "c5": 3.68506264548367, - "c6": 3.4674280965321325, - "c7": 3.4527394098666804 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703649, + "c4": 3.698566805362921, + "c5": 2.773925104022192, + "c6": 1.8492834026814635, + "c7": 0.9246417013407288 }, "rgb": [238, 201, 159] }, @@ -24306,23 +24306,23 @@ "year": 1684, "resistanceReported": false, "duration": 52358400, - "curveSeeds": { - "c1": -50.32278306310787, - "c2": -21.05553569244293, - "c3": 4.227389442176332, - "c4": 51.9993633099574, - "c5": 11.04561166444654, - "c6": -15.624089269015634, - "c7": -2.9057477453931995 + "points": { + "c1": 52.888300997955426, + "c2": -28.10069714978409, + "c3": -25.784499263679912, + "c4": -14.529801765911735, + "c5": 61.59409956105691, + "c6": -30.84812802642054, + "c7": -33.719372556587935 }, - "vertexSeeds": { - "c1": 8.376917816040581, - "c2": 8.311209213130454, - "c3": 8.462287056967082, - "c4": 8.375677995340322, - "c5": 8.438011913528852, - "c6": 8.382335930149264, - "c7": 8.37700298997089 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576955, + "c3": 10.101710587147515, + "c4": 8.081368469717997, + "c5": 6.0610263522884775, + "c6": 4.040684234858958, + "c7": 2.0203421174295193 }, "rgb": [58, 15, 49] }, @@ -24333,23 +24333,23 @@ "year": 1683, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -15.035837757937038, - "c2": -5.815497448449548, - "c3": -31.269315947959235, - "c4": -25.59340887894288, - "c5": -0.14134526521367263, - "c6": 8.1455080436928, - "c7": 0.4304308112357518 + "points": { + "c1": -21.805583358717826, + "c2": 29.751672834670686, + "c3": 6.946309640564358, + "c4": -17.373858685018387, + "c5": -2.9211110333294243, + "c6": 26.925753101171438, + "c7": 13.189134127457194 }, - "vertexSeeds": { - "c1": 4.829193143589991, - "c2": 5.909541442126771, - "c3": 4.8632083057721, - "c4": 5.532036107873354, - "c5": 5.035540932537858, - "c6": 5.6838815720096525, - "c7": 5.014097994282775 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750346, + "c3": 7.3277854831252895, + "c4": 5.862228386500231, + "c5": 4.396671289875173, + "c6": 2.9311141932501155, + "c7": 1.4655570966250577 }, "rgb": [222, 0, 59] }, @@ -24360,23 +24360,23 @@ "year": 1683, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 15.302590728211385, - "c2": 31.570116049985103, - "c3": -26.702818602282782, - "c4": -18.75351577622253, - "c5": -11.853249388247175, - "c6": -17.63008094509633, - "c7": 7.050320805885939 + "points": { + "c1": -17.00893541622308, + "c2": -20.007956336197285, + "c3": 28.107735862170372, + "c4": 5.270371872675341, + "c5": -18.227223690895947, + "c6": 21.196405768953035, + "c7": 34.62653049760597 }, - "vertexSeeds": { - "c1": 3.6550172919166712, - "c2": 3.9259209699371596, - "c3": 4.621350368357501, - "c4": 5.013326440314419, - "c5": 4.000699276114865, - "c6": 4.817195111967944, - "c7": 4.676606829574485 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457699, + "c3": 6.010171058714749, + "c4": 4.808136846971798, + "c5": 3.6061026352288477, + "c6": 2.404068423485899, + "c7": 1.2020342117429494 }, "rgb": [238, 201, 159] }, @@ -24387,23 +24387,23 @@ "year": 1684, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -5.294979844183651, - "c2": 39.34222038661879, - "c3": 13.934498776290887, - "c4": 17.576987808483402, - "c5": -39.214382013107006, - "c6": 25.416236666181135, - "c7": -10.977475804525696 + "points": { + "c1": 6.35281672205047, + "c2": -23.14026425403782, + "c3": 25.39357887517194, + "c4": 39.422411373187344, + "c5": 38.09402934517159, + "c6": 39.63858196010402, + "c7": -42.119459935488614 }, - "vertexSeeds": { - "c1": 11.600607039620254, - "c2": 11.325100872686019, - "c3": 11.812653260109226, - "c4": 11.60067689185718, - "c5": 11.34083330659384, - "c6": 11.482712613549525, - "c7": 11.290442383158544 + "offsets": { + "c1": 19.741100323624593, + "c2": 16.920943134535335, + "c3": 14.10078594544615, + "c4": 11.28062875635689, + "c5": 8.460471567267705, + "c6": 5.640314378178445, + "c7": 2.820157189089185 }, "rgb": [86, 146, 138] }, @@ -24414,23 +24414,23 @@ "year": 1684, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -8.967765428556781, - "c2": 32.37197956458142, - "c3": 16.249099190346783, - "c4": -18.2634803644727, - "c5": 9.419067289301005, - "c6": -11.637973497103019, - "c7": 27.24811631763407 + "points": { + "c1": 40.26540964660764, + "c2": -3.8030670021123996, + "c3": -36.06005766828703, + "c4": 17.449207509043937, + "c5": 5.991853664174798, + "c6": 10.123457798368428, + "c7": 34.94924405938124 }, - "vertexSeeds": { - "c1": 5.920667444428826, - "c2": 5.599085150680763, - "c3": 6.130099985452041, - "c4": 6.455602082821661, - "c5": 6.163119846617305, - "c6": 6.050338741823211, - "c7": 5.301056737879879 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996767, + "c4": 6.343042071197412, + "c5": 4.757281553398058, + "c6": 3.171521035598709, + "c7": 1.5857605177993546 }, "rgb": [86, 146, 138] }, @@ -24441,23 +24441,23 @@ "year": 1683, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 8.301926915784044, - "c2": -10.208030996980666, - "c3": -9.698728300660985, - "c4": -18.913694415528525, - "c5": -14.667999335449245, - "c6": -18.461127172948093, - "c7": -17.797646302051568 + "points": { + "c1": -17.038520725053203, + "c2": 4.422897469968998, + "c3": 3.3664240421842706, + "c4": 12.977363525303197, + "c5": 12.944567565246686, + "c6": -6.030647667320103, + "c7": -16.81645187264153 }, - "vertexSeeds": { - "c1": 3.6588491806971595, - "c2": 3.776427876178924, - "c3": 4.014455938703989, - "c4": 3.764553491875516, - "c5": 3.6586311390166926, - "c6": 3.8852200867370286, - "c7": 3.8274164907241355 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366156, + "c3": 4.808136846971804, + "c4": 3.8465094775774404, + "c5": 2.884882108183078, + "c6": 1.9232547387887255, + "c7": 0.9616273693943628 }, "rgb": [86, 146, 138] }, @@ -24468,23 +24468,23 @@ "year": 1684, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 12.01875282791515, - "c2": -34.21663613499226, - "c3": 6.42432961367453, - "c4": 11.908493654091266, - "c5": 29.96030017043067, - "c6": -12.233093315314527, - "c7": 27.964713446264128 + "points": { + "c1": -26.40905560082857, + "c2": -31.51295292232584, + "c3": -12.425712296725802, + "c4": -4.893338544350485, + "c5": -8.955570274689258, + "c6": 13.572477376921675, + "c7": 31.43126327694985 }, - "vertexSeeds": { - "c1": 3.5913559621682043, - "c2": 3.6422236252798106, - "c3": 3.801144275651212, - "c4": 3.5984671131439296, - "c5": 3.8299189833416136, - "c6": 3.7046468863919553, - "c7": 3.7446341581201636 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703649, + "c4": 3.6985668053629177, + "c5": 2.773925104022195, + "c6": 1.8492834026814635, + "c7": 0.9246417013407318 }, "rgb": [86, 146, 138] }, @@ -24495,23 +24495,23 @@ "year": 1683, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -7.580834776289958, - "c2": -13.540249305388567, - "c3": -34.29306415156549, - "c4": -9.256760392579945, - "c5": -12.241197062044662, - "c6": 28.663002346744413, - "c7": 23.921635531553598 + "points": { + "c1": 14.08648924828411, + "c2": 22.47128091717122, + "c3": -11.346885198672432, + "c4": -2.511890158526896, + "c5": -37.0786972482107, + "c6": -24.808492457261774, + "c7": -9.52836973143334 }, - "vertexSeeds": { - "c1": 3.8142932993036616, - "c2": 4.099575655179861, - "c3": 4.130522368995361, - "c4": 4.175280808653803, - "c5": 3.74059822263395, - "c6": 4.202773269511547, - "c7": 4.163396403800496 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374018, + "c4": 4.068423485899213, + "c5": 3.05131761442441, + "c6": 2.0342117429496067, + "c7": 1.0171058714748034 }, "rgb": [58, 15, 49] }, @@ -24522,23 +24522,23 @@ "year": 1684, "resistanceReported": true, "duration": 22377600, - "curveSeeds": { - "c1": -26.281931611323746, - "c2": -18.976036132824575, - "c3": -33.988470561910674, - "c4": 2.3775128551953273, - "c5": 31.267850698805617, - "c6": 10.271921913650992, - "c7": -5.83111252975004 + "points": { + "c1": 14.66652060164138, + "c2": 32.284530622928514, + "c3": 35.332935882079724, + "c4": 3.689773236249529, + "c5": -20.898470749109293, + "c6": -34.09162706914242, + "c7": -8.73382523306498 }, - "vertexSeeds": { - "c1": 9.437776554906634, - "c2": 9.902725512201412, - "c3": 9.712785551254687, - "c4": 9.841190000700843, - "c5": 9.470574391361078, - "c6": 9.50202380661692, - "c7": 9.510989722526556 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [86, 146, 138] }, @@ -24549,23 +24549,23 @@ "year": 1684, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 10.089854861355292, - "c2": 34.611816548574936, - "c3": 23.252638087992622, - "c4": -11.25714129878256, - "c5": -3.797418765958785, - "c6": 23.956574026289083, - "c7": -24.100655069523683 + "points": { + "c1": 31.48091491254648, + "c2": 2.1528688510996687, + "c3": 2.050208905267894, + "c4": -21.594341752951628, + "c5": -30.813689589903614, + "c6": -21.367210622371267, + "c7": -24.078452020971305 }, - "vertexSeeds": { - "c1": 5.674733980069114, - "c2": 5.852991512753133, - "c3": 5.083404829420005, - "c4": 5.946576968044918, - "c5": 5.698395365077501, - "c6": 5.18126445472363, - "c7": 6.1743545481845725 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.87656033287101, + "c3": 7.397133610725846, + "c4": 5.917706888580673, + "c5": 4.43828016643551, + "c6": 2.9588534442903365, + "c7": 1.479426722145173 }, "rgb": [58, 15, 49] }, @@ -24576,23 +24576,23 @@ "year": 1684, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 23.08757280591479, - "c2": 22.61271039850432, - "c3": 30.741256360368766, - "c4": -17.50206888579276, - "c5": -26.811135347604207, - "c6": 30.26726074895744, - "c7": 25.59923993627369 + "points": { + "c1": -19.038166027930057, + "c2": -29.687403023787155, + "c3": 43.48103636154703, + "c4": -43.22698045253312, + "c5": -7.427923040561481, + "c6": -21.579214702328187, + "c7": -21.701813994819204 }, - "vertexSeeds": { - "c1": 6.3025522530604405, - "c2": 7.415112548411372, - "c3": 6.301261388081419, - "c4": 6.700822593366555, - "c5": 6.53269345270017, - "c6": 5.929038108629566, - "c7": 6.5377911185866475 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968099, + "c3": 9.177068885806746, + "c4": 7.3416551086454005, + "c5": 5.506241331484049, + "c6": 3.6708275543226963, + "c7": 1.8354137771613441 }, "rgb": [222, 0, 59] }, @@ -24603,23 +24603,23 @@ "year": 1684, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 23.739633137418984, - "c2": 29.991246485072935, - "c3": 7.345478363284194, - "c4": -33.116704643821045, - "c5": -9.85827352905574, - "c6": -6.84844272735144, - "c7": -26.50615840240287 + "points": { + "c1": -17.82304816190997, + "c2": -17.035800668227537, + "c3": 19.0179339670552, + "c4": -6.761714568640617, + "c5": 15.566719068899005, + "c6": 29.682041525366117, + "c7": -9.347725681272607 }, - "vertexSeeds": { - "c1": 9.366847922831052, - "c2": 10.059418969715903, - "c3": 9.357183060436352, - "c4": 9.650065274824728, - "c5": 9.715922470880773, - "c6": 10.00766617662708, - "c7": 8.790796102199568 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317604, + "c3": 12.251502542764683, + "c4": 9.801202034211737, + "c5": 7.350901525658802, + "c6": 4.900601017105869, + "c7": 2.4503005085529344 }, "rgb": [238, 201, 159] }, @@ -24630,23 +24630,23 @@ "year": 1684, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -2.212960258365264, - "c2": -36.9646008624629, - "c3": -24.68836284657746, - "c4": -33.767102570790385, - "c5": 4.433995813553686, - "c6": -11.725358431455994, - "c7": -8.098381959088819 + "points": { + "c1": -37.63605595175961, + "c2": 27.329941912524383, + "c3": -44.89883507115961, + "c4": -44.73845504832941, + "c5": -22.677159165380523, + "c6": 43.7301467479062, + "c7": -30.558668719063466 }, - "vertexSeeds": { - "c1": 9.331646603814585, - "c2": 9.592802332052804, - "c3": 9.238468840671834, - "c4": 10.188911057959416, - "c5": 10.254898360895972, - "c6": 9.115035285783552, - "c7": 9.656522430781832 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.6740638002774, + "c3": 12.228386500231162, + "c4": 9.782709200184923, + "c5": 7.3370319001387, + "c6": 4.891354600092476, + "c7": 2.445677300046238 }, "rgb": [222, 0, 59] }, @@ -24657,23 +24657,23 @@ "year": 1684, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 5.672411977099792, - "c2": -11.813148430067034, - "c3": -0.2752817987811227, - "c4": 3.581260768999897, - "c5": -39.740522896909155, - "c6": 18.843913099258167, - "c7": 9.400603080419593 + "points": { + "c1": -32.544127757469155, + "c2": 37.70564891052677, + "c3": 33.18318084784679, + "c4": -41.167443486879144, + "c5": 23.662069772127104, + "c6": 30.277088181600583, + "c7": 42.49730509938518 }, - "vertexSeeds": { - "c1": 12.258399291264219, - "c2": 12.45095617977011, - "c3": 11.028420507522295, - "c4": 10.22512126237508, - "c5": 11.626311509008115, - "c6": 11.855606467923575, - "c7": 10.594515581402975 + "offsets": { + "c1": 21.067961165048544, + "c2": 18.05825242718446, + "c3": 15.048543689320391, + "c4": 12.038834951456305, + "c5": 9.029126213592237, + "c6": 6.019417475728153, + "c7": 3.009708737864069 }, "rgb": [222, 0, 59] }, @@ -24684,23 +24684,23 @@ "year": 1684, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -18.947759380252585, - "c2": 33.35121640961484, - "c3": 27.855170339321816, - "c4": 15.560284450775896, - "c5": -21.51765305905669, - "c6": -9.563967269812686, - "c7": -6.4378281890237155 + "points": { + "c1": -6.257666940751626, + "c2": -5.5242830760795485, + "c3": -3.1231720170239683, + "c4": 23.23784926210468, + "c5": -26.075714601319532, + "c6": -29.345638959384964, + "c7": 17.682238666685024 }, - "vertexSeeds": { - "c1": 2.698809257654769, - "c2": 2.762736719642476, - "c3": 2.857531028309045, - "c4": 2.7739620057989876, - "c5": 2.8291724011654766, - "c6": 2.8912423174976505, - "c7": 2.7157253627047395 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153955, + "c3": 3.5367545076282907, + "c4": 2.8294036061026344, + "c5": 2.1220527045769777, + "c6": 1.414701803051313, + "c7": 0.7073509015256565 }, "rgb": [238, 201, 159] }, @@ -24711,23 +24711,23 @@ "year": 1684, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -5.180033888419445, - "c2": 45.89238585208109, - "c3": 31.770727065670442, - "c4": 15.684818596194695, - "c5": 43.001698396641174, - "c6": -33.03216363350463, - "c7": 21.0438168136198 + "points": { + "c1": -33.05290737966282, + "c2": 15.600985101620665, + "c3": -39.26149365853014, + "c4": 20.042695581511055, + "c5": 22.708042461388388, + "c6": 9.787201571942, + "c7": 2.6778704214957614 }, - "vertexSeeds": { - "c1": 5.057329706159155, - "c2": 4.236169262924079, - "c3": 5.232762516124252, - "c4": 4.380488245177409, - "c5": 4.842697465893621, - "c6": 4.856912941357763, - "c7": 5.1184824926605135 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342581, + "c3": 6.518723994452151, + "c4": 5.214979195561724, + "c5": 3.9112343966712904, + "c6": 2.607489597780862, + "c7": 1.3037447988904327 }, "rgb": [58, 15, 49] }, @@ -24738,23 +24738,23 @@ "year": 1684, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 9.747710141315949, - "c2": -0.4646178097578968, - "c3": -0.6847811914456017, - "c4": 10.528395021826405, - "c5": 3.513336272122256, - "c6": 17.87421002167575, - "c7": -15.523713038265262 + "points": { + "c1": -14.273324283537333, + "c2": -7.354069781714831, + "c3": 19.063311449092282, + "c4": -22.13583642314481, + "c5": -5.045917375705695, + "c6": -23.673386410794212, + "c7": -10.822756266006628 }, - "vertexSeeds": { - "c1": 5.777937650133868, - "c2": 4.9523479622776945, - "c3": 5.46803159228857, - "c4": 4.857299461821676, - "c5": 5.6598967242949065, - "c6": 5.308554968785723, - "c7": 5.642681627165423 + "offsets": { + "c1": 10, + "c2": 8.57142857142857, + "c3": 7.14285714285714, + "c4": 5.71428571428572, + "c5": 4.28571428571429, + "c6": 2.85714285714286, + "c7": 1.42857142857143 }, "rgb": [238, 201, 159] }, @@ -24765,23 +24765,23 @@ "year": 1684, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -12.593541290156868, - "c2": -19.45719555917518, - "c3": 14.55638105994985, - "c4": -24.776895957982628, - "c5": 34.54904350398307, - "c6": -11.307509476887201, - "c7": -7.683705637990677 + "points": { + "c1": -31.070880039219098, + "c2": -34.45683780952442, + "c3": 34.68264474657906, + "c4": 34.26163383421101, + "c5": -40.89214898388264, + "c6": 14.36926885491767, + "c7": 27.80709311808863 }, - "vertexSeeds": { - "c1": 5.782491016680472, - "c2": 4.755124967263201, - "c3": 5.899746567212402, - "c4": 4.437086331476166, - "c5": 5.734921710790136, - "c6": 6.01057997213289, - "c7": 4.314133006667108 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509017, + "c3": 7.189089227924181, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.87563569116967, + "c7": 1.437817845584835 }, "rgb": [77, 76, 132] }, @@ -24792,23 +24792,23 @@ "year": 1683, "resistanceReported": false, "duration": 9244800, - "curveSeeds": { - "c1": -2.635288508882148, - "c2": -12.133324944388377, - "c3": -9.627758378938964, - "c4": -1.77976283417701, - "c5": 17.856226370286663, - "c6": -18.94002894952093, - "c7": -15.057163941201528 + "points": { + "c1": -10.905233868493449, + "c2": 7.638679277556744, + "c3": -14.976590791147027, + "c4": 9.523190120545763, + "c5": -15.953142529299928, + "c6": 15.029860006583903, + "c7": 13.763706910538971 }, - "vertexSeeds": { - "c1": 3.7335806913643306, - "c2": 3.6476332011237336, - "c3": 3.5760561438591147, - "c4": 3.733814969014855, - "c5": 3.5023826199545383, - "c6": 3.7103329605559137, - "c7": 3.509762023606486 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883497, + "c3": 4.530744336569584, + "c4": 3.6245954692556612, + "c5": 2.7184466019417486, + "c6": 1.8122977346278353, + "c7": 0.9061488673139132 }, "rgb": [77, 76, 132] }, @@ -24819,23 +24819,23 @@ "year": 1684, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -15.42695403010344, - "c2": -10.579160491265863, - "c3": -11.198105479695329, - "c4": -9.348446357936819, - "c5": 29.127305876385474, - "c6": 5.36155341727623, - "c7": 27.442496958691574 + "points": { + "c1": -1.2666823128272924, + "c2": 17.320119647872463, + "c3": -20.18029701377768, + "c4": 23.921943130194915, + "c5": -10.972981025006376, + "c6": -26.641337883579986, + "c7": 13.471009020082978 }, - "vertexSeeds": { - "c1": 9.599405497006657, - "c2": 9.609638116548295, - "c3": 9.5626993427654, - "c4": 9.539043152471155, - "c5": 9.657502933541645, - "c6": 9.656206178841101, - "c7": 9.58605379223471 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110972, + "c3": 11.558021266759159, + "c4": 9.24641701340735, + "c5": 6.934812760055435, + "c6": 4.623208506703623, + "c7": 2.3116042533518115 }, "rgb": [77, 76, 132] }, @@ -24846,23 +24846,23 @@ "year": 1684, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -24.242209033457716, - "c2": -3.2646324741575725, - "c3": 28.4287719793842, - "c4": -33.278929260719934, - "c5": -36.055194475660436, - "c6": 10.463369200543674, - "c7": -17.26345886331483 + "points": { + "c1": 22.548104797250602, + "c2": 17.011564327157764, + "c3": 8.704970151653441, + "c4": -19.3522663617653, + "c5": -8.518836700206275, + "c6": 17.364674085940948, + "c7": 27.416080572775336 }, - "vertexSeeds": { - "c1": 4.580116529142523, - "c2": 3.8901646835779347, - "c3": 4.527767236130521, - "c4": 3.896871072002555, - "c5": 4.6932329251915395, - "c6": 4.138287215573564, - "c7": 4.14946736008809 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.7961165048543695, + "c3": 5.6634304207119746, + "c4": 4.530744336569581, + "c5": 3.3980582524271874, + "c6": 2.265372168284788, + "c7": 1.132686084142399 }, "rgb": [58, 15, 49] }, @@ -24873,23 +24873,23 @@ "year": 1684, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -34.47305781447033, - "c2": -26.698424881598186, - "c3": -26.99482308138316, - "c4": -4.062299545179108, - "c5": 27.81524329961968, - "c6": -26.742678653126944, - "c7": -40.371799222219984 + "points": { + "c1": -29.844328069699515, + "c2": 17.20115812935002, + "c3": -33.81254131137776, + "c4": -8.449383261947723, + "c5": -14.293988869140438, + "c6": -36.90901549029428, + "c7": -9.036164128650903 }, - "vertexSeeds": { - "c1": 5.167207669548146, - "c2": 4.9786103695426736, - "c3": 5.060396808365201, - "c4": 5.128706433115576, - "c5": 5.197483179831167, - "c6": 5.20479676782328, - "c7": 4.831999168215079 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859922, + "c3": 6.241331484049927, + "c4": 4.993065187239945, + "c5": 3.744798890429957, + "c6": 2.496532593619969, + "c7": 1.248266296809988 }, "rgb": [238, 201, 159] }, @@ -24900,23 +24900,23 @@ "year": 1684, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 18.84947590455846, - "c2": 0.464362357626257, - "c3": -13.423421824540831, - "c4": -0.2639765436425492, - "c5": 1.1350755958795347, - "c6": 3.0567827133965366, - "c7": -14.58599172195801 + "points": { + "c1": -8.992004099322344, + "c2": 32.876934252032285, + "c3": 36.76587696637577, + "c4": -27.4230084832909, + "c5": -19.42453183724103, + "c6": -14.247469406216052, + "c7": -14.685506669326315 }, - "vertexSeeds": { - "c1": 6.213224126621251, - "c2": 5.223240080578595, - "c3": 6.306346777866697, - "c4": 6.375819989387832, - "c5": 6.478462212821265, - "c6": 5.135317617125521, - "c7": 6.596539847720366 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.486823855755894, + "c3": 7.905686546463244, + "c4": 6.324549237170602, + "c5": 4.7434119278779505, + "c6": 3.162274618585301, + "c7": 1.5811373092926504 }, "rgb": [86, 146, 138] }, @@ -24927,23 +24927,23 @@ "year": 1684, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 15.972978223282283, - "c2": 40.10493962000531, - "c3": 19.09758289272095, - "c4": -5.2632178460144345, - "c5": -15.713201906722144, - "c6": -3.628621005973507, - "c7": -21.93380036985863 + "points": { + "c1": -16.45088262201912, + "c2": -34.921397077543695, + "c3": 1.3412357947643372, + "c4": -22.839461441620447, + "c5": -6.349907540567003, + "c6": -39.36289351356135, + "c7": -26.254679804103823 }, - "vertexSeeds": { - "c1": 4.358275695092294, - "c2": 3.5471952063444454, - "c3": 6.106252372547088, - "c4": 3.933967295712691, - "c5": 7.463539921115972, - "c6": 4.872188326990775, - "c7": 2.7717726590422913 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490985, + "c3": 9.477577438742488, + "c4": 7.58206195099399, + "c5": 5.6865464632454925, + "c6": 3.791030975496995, + "c7": 1.8955154877484959 }, "rgb": [58, 15, 49] }, @@ -24954,23 +24954,23 @@ "year": 1684, "resistanceReported": false, "duration": 6048000, - "curveSeeds": { - "c1": -5.934806421152562, - "c2": 0.9059517437462041, - "c3": -14.044213107624046, - "c4": -11.807486370122557, - "c5": -0.7615845036221813, - "c6": -16.438702921186426, - "c7": 7.645298217379231 + "points": { + "c1": -18.516472003731806, + "c2": 11.316718303232655, + "c3": -6.59260013875849, + "c4": -9.858038239947554, + "c5": 10.889828606102881, + "c6": -0.1235516984272742, + "c7": -3.2215748294583193 }, - "vertexSeeds": { - "c1": 6.831392990557211, - "c2": 6.615484594525026, - "c3": 7.141842484640858, - "c4": 6.066488549447488, - "c5": 6.145436958593052, - "c6": 7.220629781849511, - "c7": 5.877282630142091 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284324, + "c3": 8.784096162736942, + "c4": 7.02727693018955, + "c5": 5.270457697642167, + "c6": 3.513638465094775, + "c7": 1.7568192325473913 }, "rgb": [58, 15, 49] }, @@ -24981,23 +24981,23 @@ "year": 1684, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -10.3235879608951, - "c2": -23.85561788158974, - "c3": -17.314236035320683, - "c4": 17.775610488184682, - "c5": 36.33667544831695, - "c6": -33.4533226421652, - "c7": -26.553810840699185 + "points": { + "c1": -2.153426899227753, + "c2": 38.84281173081841, + "c3": 15.090584389004732, + "c4": 37.51222083761378, + "c5": 21.74506738759471, + "c6": -34.06790024039046, + "c7": -4.905867516611934 }, - "vertexSeeds": { - "c1": 3.0470850557024374, - "c2": 2.9353382221117794, - "c3": 3.2305041037285362, - "c4": 3.2312607512645117, - "c5": 2.924469682702033, - "c6": 2.896823184057633, - "c7": 2.85492048643014 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199723, + "c3": 4.137771613499767, + "c4": 3.310217290799814, + "c5": 2.4826629680998615, + "c6": 1.655108645399909, + "c7": 0.8275543226999525 }, "rgb": [58, 15, 49] }, @@ -25008,23 +25008,23 @@ "year": 1684, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 1.1261893352607757, - "c2": 42.1377531774462, - "c3": 23.34282453732233, - "c4": -1.4817655695717349, - "c5": -31.909178847260655, - "c6": 43.507981249635094, - "c7": -12.422468556930212 + "points": { + "c1": 24.029769405932882, + "c2": 40.66284235090856, + "c3": -5.479300075339609, + "c4": -35.176945323167885, + "c5": 43.7985445000525, + "c6": -32.20676068836903, + "c7": 14.930405932324888 }, - "vertexSeeds": { - "c1": 3.993629313576706, - "c2": 3.4018532451798036, - "c3": 3.8325242783503803, - "c4": 3.4080427926679864, - "c5": 3.5761996968416305, - "c6": 3.407829303662279, - "c7": 3.649659030709664 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105874, + "c4": 3.920480813684697, + "c5": 2.9403606102635234, + "c6": 1.9602404068423505, + "c7": 0.9801202034211771 }, "rgb": [86, 146, 138] }, @@ -25035,23 +25035,23 @@ "year": 1685, "resistanceReported": false, "duration": 40435200, - "curveSeeds": { - "c1": 11.382408789713047, - "c2": -15.291884817324338, - "c3": -14.127897632500527, - "c4": -34.193463000647725, - "c5": 12.60846008247183, - "c6": -38.56412120695489, - "c7": 46.879753215363515 + "points": { + "c1": 7.521448862113374, + "c2": -27.32351577438415, + "c3": 30.576637494457948, + "c4": -13.554872625007249, + "c5": -46.82716888695752, + "c6": -54.35073409562367, + "c7": -24.539142457560533 }, - "vertexSeeds": { - "c1": 8.841834940332461, - "c2": 8.39926806359873, - "c3": 8.51539818217809, - "c4": 9.0925080800955, - "c5": 9.103668305087083, - "c6": 8.497527276792848, - "c7": 9.004071317535457 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065181, + "c3": 10.957004160887658, + "c4": 8.765603328710121, + "c5": 6.574202496532599, + "c6": 4.3828016643550605, + "c7": 2.191400832177538 }, "rgb": [77, 76, 132] }, @@ -25062,23 +25062,23 @@ "year": 1685, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -27.867035939541374, - "c2": 32.725867757584254, - "c3": -32.9522799519274, - "c4": -40.05839218843898, - "c5": -7.032059628742523, - "c6": -2.0638571372232164, - "c7": -26.217131060877264 + "points": { + "c1": -7.017082661533664, + "c2": 7.972082429194991, + "c3": 35.712471300128556, + "c4": -14.342936556789972, + "c5": 31.839874459334382, + "c6": -3.707278500400996, + "c7": 35.999046920963906 }, - "vertexSeeds": { - "c1": 8.560832105496553, - "c2": 8.524993789416278, - "c3": 8.299649792163812, - "c4": 8.20752983424836, - "c5": 9.051104933722684, - "c6": 8.308471840115791, - "c7": 8.228802040565807 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [238, 201, 159] }, @@ -25089,23 +25089,23 @@ "year": 1684, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 20.87129319630933, - "c2": -18.510795330370165, - "c3": 24.348260000636024, - "c4": 19.13497207813235, - "c5": 10.685153582731537, - "c6": -4.597109925739986, - "c7": 31.33739714208965 + "points": { + "c1": 21.784577087542914, + "c2": -16.855339731833496, + "c3": -23.259159362007885, + "c4": 28.209975806431437, + "c5": -12.581489622363712, + "c6": -18.033304939635915, + "c7": 10.145205576274371 }, - "vertexSeeds": { - "c1": 3.4603781417594415, - "c2": 3.256764575985291, - "c3": 3.4737856081339062, - "c4": 3.437278443797653, - "c5": 3.328109282516424, - "c6": 3.261063797672096, - "c7": 3.1491316639863944 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.0208044382801615, + "c3": 4.184003698566807, + "c4": 3.3472029588534413, + "c5": 2.5104022191400857, + "c6": 1.6736014794267207, + "c7": 0.8368007397133558 }, "rgb": [77, 76, 132] }, @@ -25116,23 +25116,23 @@ "year": 1685, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 35.389286367417164, - "c2": -27.1316257754421, - "c3": 23.96111241849524, - "c4": 39.964697340839614, - "c5": -13.033503755414571, - "c6": -30.527068943256452, - "c7": 19.760653593793656 + "points": { + "c1": -42.31428797780986, + "c2": -6.9232325305789, + "c3": -51.0951799195645, + "c4": -38.33842876634257, + "c5": 18.80154146457503, + "c6": -53.55502391501136, + "c7": -53.39904989632264 }, - "vertexSeeds": { - "c1": 2.4206544281074676, - "c2": 2.215726781924604, - "c3": 2.648191002307446, - "c4": 2.219543634937784, - "c5": 2.435098817321244, - "c6": 2.328319403799838, - "c7": 2.6155834967859986 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.374942209893668, + "c4": 2.6999537679149337, + "c5": 2.0249653259361993, + "c6": 1.3499768839574668, + "c7": 0.6749884419787344 }, "rgb": [58, 15, 49] }, @@ -25143,23 +25143,23 @@ "year": 1684, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -27.14116958019473, - "c2": -1.1658796003509764, - "c3": 7.519453330816319, - "c4": -22.133278656652994, - "c5": -6.5617098150609365, - "c6": 18.5020263075695, - "c7": 10.883650136347562 + "points": { + "c1": -0.11662350924804699, + "c2": 26.743309298418133, + "c3": -5.454464425879042, + "c4": 22.895013595404393, + "c5": 7.233297755534359, + "c6": -0.8905437800914839, + "c7": 15.353579024308338 }, - "vertexSeeds": { - "c1": 4.096956148258458, - "c2": 3.7828960897405066, - "c3": 3.9716931561788638, - "c4": 3.7839200614763273, - "c5": 3.7669896000291714, - "c6": 4.003072637706772, - "c7": 4.03707593302785 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.96393897364771, + "c3": 4.96994914470643, + "c4": 3.9759593157651425, + "c5": 2.981969486823855, + "c6": 1.9879796578825673, + "c7": 0.9939898289412875 }, "rgb": [238, 201, 159] }, @@ -25170,23 +25170,23 @@ "year": 1685, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": 2.9242613819262786, - "c2": 22.042034545603826, - "c3": -35.68709144887137, - "c4": 35.43995931899059, - "c5": 1.4828827242099152, - "c6": 25.735629725052263, - "c7": -5.327560177967875 + "points": { + "c1": -12.741789525476925, + "c2": 57.985883540700726, + "c3": 51.910117615968744, + "c4": 31.49079208015013, + "c5": -39.656776259988746, + "c6": 45.822746598574284, + "c7": -49.945077381863925 }, - "vertexSeeds": { - "c1": 1.9920043694376308, - "c2": 1.7024366067779038, - "c3": 1.8284928891603318, - "c4": 2.0344407818634243, - "c5": 1.858428139125842, - "c6": 1.8855333747111958, - "c7": 1.8758327293061312 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.051317614424411, + "c3": 2.5427646786870075, + "c4": 2.0342117429496063, + "c5": 1.5256588072122055, + "c6": 1.0171058714748045, + "c7": 0.5085529357374011 }, "rgb": [86, 146, 138] }, @@ -25197,23 +25197,23 @@ "year": 1685, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -15.939284741457591, - "c2": -9.53121761830429, - "c3": -16.770236940614662, - "c4": 15.700748554379835, - "c5": -13.724666766253865, - "c6": -32.568614913200655, - "c7": -7.60859011670906 + "points": { + "c1": -40.305166419248216, + "c2": 36.26619975282074, + "c3": -10.602808469792755, + "c4": -2.8346426319031863, + "c5": -22.742066867148253, + "c6": 22.904218455259354, + "c7": -15.854060622572941 }, - "vertexSeeds": { - "c1": 10.217288512370128, - "c2": 10.596759823563524, - "c3": 10.015410855779496, - "c4": 10.368119375289666, - "c5": 10.521170405646528, - "c6": 10.456936433702518, - "c7": 10.49468563357522 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524268, + "c3": 12.944983818770218, + "c4": 10.355987055016167, + "c5": 7.766990291262152, + "c6": 5.177993527508101, + "c7": 2.5889967637540505 }, "rgb": [86, 146, 138] }, @@ -25224,23 +25224,23 @@ "year": 1685, "resistanceReported": false, "duration": 52444800, - "curveSeeds": { - "c1": -35.51862936477616, - "c2": -44.796787185640376, - "c3": 55.24464769923772, - "c4": 64.25000056169395, - "c5": 58.79483663501148, - "c6": 49.81905344934533, - "c7": 45.382075250497465 + "points": { + "c1": -65.05750954119469, + "c2": 26.735212295929358, + "c3": -50.63854972824512, + "c4": 28.021237600814416, + "c5": -12.62714885252202, + "c6": -48.87444373962914, + "c7": -66.40203332851283 }, - "vertexSeeds": { - "c1": 4.166512413742746, - "c2": 4.629735563470225, - "c3": 3.4450200732822207, - "c4": 4.8201689051099, - "c5": 4.351688742804742, - "c6": 3.560444387689224, - "c7": 4.623012199244821 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216364, + "c3": 5.871474803513639, + "c4": 4.697179842810911, + "c5": 3.522884882108182, + "c6": 2.3485899214054533, + "c7": 1.1742949607027284 }, "rgb": [238, 201, 159] }, @@ -25251,23 +25251,23 @@ "year": 1684, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 23.324799916288356, - "c2": -4.128964875448876, - "c3": -23.6421083073108, - "c4": 7.168088534910339, - "c5": -10.418112287562407, - "c6": 18.17312867436928, - "c7": 20.469090495282586 + "points": { + "c1": -9.908985132761007, + "c2": 22.92433793296172, + "c3": 9.750301328809797, + "c4": 9.18340348505977, + "c5": -10.361633493897276, + "c6": 7.124573426942817, + "c7": 11.063487166451552 }, - "vertexSeeds": { - "c1": 2.364572058079656, - "c2": 2.220528095273964, - "c3": 2.189310647277379, - "c4": 2.479666430291127, - "c5": 2.3503557826117487, - "c6": 2.2522228734146683, - "c7": 2.132096209599797 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228849, + "c3": 3.0050855293573733, + "c4": 2.4040684234858984, + "c5": 1.8030513176144227, + "c6": 1.2020342117429474, + "c7": 0.6010171058714723 }, "rgb": [238, 201, 159] }, @@ -25278,23 +25278,23 @@ "year": 1685, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -32.47382565959187, - "c2": -3.11601038365621, - "c3": 21.725818248760234, - "c4": 24.844355103023716, - "c5": -33.69287140158485, - "c6": 5.981198382835132, - "c7": 26.390596067610055 + "points": { + "c1": -32.931526245757894, + "c2": 7.1269927821739145, + "c3": -1.6444343503934746, + "c4": -22.183093430154816, + "c5": 4.5559419465377715, + "c6": -18.290710583414548, + "c7": 12.042038593725962 }, - "vertexSeeds": { - "c1": 6.65199163055507, - "c2": 6.679112029213835, - "c3": 6.973216561087607, - "c4": 6.775003876958325, - "c5": 6.722634329965228, - "c6": 6.868285432757655, - "c7": 7.1025609515946195 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123442, + "c3": 8.69163199260286, + "c4": 6.953305594082291, + "c5": 5.214979195561721, + "c6": 3.4766527970411523, + "c7": 1.7383263985205695 }, "rgb": [77, 76, 132] }, @@ -25305,23 +25305,23 @@ "year": 1684, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -31.003375450144706, - "c2": -22.65966349703744, - "c3": 32.530901136485355, - "c4": -2.640708276183041, - "c5": -14.068476236671174, - "c6": -9.405005596100072, - "c7": 28.636477142544088 + "points": { + "c1": 22.10680059824376, + "c2": 20.517467266753634, + "c3": 17.617793317490246, + "c4": -11.414477021262911, + "c5": 18.043466142351527, + "c6": -24.84940598311082, + "c7": 16.203566125849854 }, - "vertexSeeds": { - "c1": 3.110725991957934, - "c2": 3.0473445779613835, - "c3": 3.274090969728587, - "c4": 3.078157072637826, - "c5": 2.9542944065007073, - "c6": 3.1118802269766315, - "c7": 2.955174774701674 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719375, + "c5": 2.4410540915395256, + "c6": 1.6273693943596839, + "c7": 0.8136846971798419 }, "rgb": [222, 0, 59] }, @@ -25332,23 +25332,23 @@ "year": 1685, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 31.093550646935682, - "c2": 35.22677122658192, - "c3": 11.402677639816943, - "c4": 32.53060684217046, - "c5": -11.837644331252008, - "c6": 27.583695223147643, - "c7": -20.933849883302543 + "points": { + "c1": -34.23799458508824, + "c2": -25.954772458091576, + "c3": -17.748093935707544, + "c4": -17.701923090872615, + "c5": -25.19295687703908, + "c6": 28.689525012174457, + "c7": 36.301756894197624 }, - "vertexSeeds": { - "c1": 6.357253773283704, - "c2": 7.159288847540045, - "c3": 6.455190944965985, - "c4": 6.7646541107252025, - "c5": 5.880139581741288, - "c6": 5.61316212459558, - "c7": 5.783984129009853 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002773, + "c3": 8.622283865002313, + "c4": 6.897827092001849, + "c5": 5.173370319001386, + "c6": 3.4489135460009246, + "c7": 1.7244567730004623 }, "rgb": [238, 201, 159] }, @@ -25359,23 +25359,23 @@ "year": 1685, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -20.996353239243557, - "c2": -7.1909105494452135, - "c3": -25.96516475149573, - "c4": -14.924888466912524, - "c5": -40.87196577063049, - "c6": 13.544452857143575, - "c7": -10.475147816421238 + "points": { + "c1": 0.22539130614555347, + "c2": -10.402721058742017, + "c3": 29.1112044301821, + "c4": 23.65946014315881, + "c5": 41.16476062329086, + "c6": 24.60212430726574, + "c7": -30.65222410194398 }, - "vertexSeeds": { - "c1": 4.851747642437673, - "c2": 5.712601866157781, - "c3": 5.434157492181176, - "c4": 5.737850921636886, - "c5": 4.8101008426844505, - "c6": 5.781054154012497, - "c7": 4.929800738707359 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390663, + "c4": 5.732778548312527, + "c5": 4.299583911234399, + "c6": 2.8663892741562633, + "c7": 1.4331946370781359 }, "rgb": [222, 0, 59] }, @@ -25386,23 +25386,23 @@ "year": 1685, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -28.89012038325904, - "c2": -30.933031994332485, - "c3": 9.115036133642619, - "c4": 21.586012508489105, - "c5": -5.887567132517162, - "c6": -9.907840336197673, - "c7": 29.313707438102455 + "points": { + "c1": 33.4381443929813, + "c2": -3.6829270149054665, + "c3": -15.44450946206792, + "c4": 2.2681256500863327, + "c5": 25.151370004686996, + "c6": 33.52556596176923, + "c7": -5.647077322796125 }, - "vertexSeeds": { - "c1": 6.928539954121569, - "c2": 6.699107738504136, - "c3": 6.601111881958832, - "c4": 6.85431980614146, - "c5": 6.331740648211702, - "c6": 6.689825187699208, - "c7": 6.530684687157441 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560332, + "c3": 8.36800739713361, + "c4": 6.694405917706888, + "c5": 5.020804438280166, + "c6": 3.347202958853444, + "c7": 1.673601479426722 }, "rgb": [238, 201, 159] }, @@ -25413,23 +25413,23 @@ "year": 1685, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -3.0344589299059237, - "c2": -34.29236600641167, - "c3": -20.206277243451463, - "c4": -6.2722525605331505, - "c5": -18.385020279674805, - "c6": 0.6548671384324152, - "c7": 14.661243782297475 + "points": { + "c1": 34.55390783587297, + "c2": -17.899671793567904, + "c3": -5.638177538218308, + "c4": 36.671169463717966, + "c5": -29.436128626168525, + "c6": 36.14110931537329, + "c7": 33.148330813013736 }, - "vertexSeeds": { - "c1": 6.39322790182877, - "c2": 6.762009479579809, - "c3": 6.839507978118713, - "c4": 6.920303670234767, - "c5": 6.982445883264372, - "c6": 6.550220388214928, - "c7": 6.9514068182150135 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244104, + "c3": 8.760980120203417, + "c4": 7.0087840961627315, + "c5": 5.256588072122045, + "c6": 3.5043920480813724, + "c7": 1.7521960240406862 }, "rgb": [77, 76, 132] }, @@ -25440,23 +25440,23 @@ "year": 1685, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -17.36545497963944, - "c2": 20.161765036466647, - "c3": 3.9476360444341267, - "c4": 8.840150011110381, - "c5": 24.91965164848169, - "c6": 5.590480458871866, - "c7": 24.495418268132447 + "points": { + "c1": 30.569966596217, + "c2": -16.046082676109975, + "c3": 20.595619008722245, + "c4": -23.32442122612118, + "c5": -2.1342845126462464, + "c6": 20.323343124853047, + "c7": -7.331106836624709 }, - "vertexSeeds": { - "c1": 1.7607714203491827, - "c2": 1.950440805705656, - "c3": 2.1422136857334984, - "c4": 1.982725258404489, - "c5": 2.0239730813192742, - "c6": 2.1357641824946403, - "c7": 1.912278360065956 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.19001386962552, + "c3": 2.6583448913546004, + "c4": 2.12667591308368, + "c5": 1.5950069348127607, + "c6": 1.06333795654184, + "c7": 0.5316689782709192 }, "rgb": [58, 15, 49] }, @@ -25467,23 +25467,23 @@ "year": 1685, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -16.420738227238616, - "c2": 22.12946239617346, - "c3": -1.916174593509858, - "c4": 4.288800901927253, - "c5": 5.389205096102266, - "c6": 8.241599430232966, - "c7": 5.819126681391069 + "points": { + "c1": -29.802304917391034, + "c2": -21.664952889442006, + "c3": -6.08533159904092, + "c4": -20.027603956901395, + "c5": -14.599862396269526, + "c6": 17.629213025270637, + "c7": 0.8345372039867129 }, - "vertexSeeds": { - "c1": 9.31347715715097, - "c2": 9.627696000230252, - "c3": 9.555138503408036, - "c4": 9.551609770782358, - "c5": 9.596325712071895, - "c6": 9.41735226286665, - "c7": 9.522729127036618 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110976, + "c3": 11.558021266759123, + "c4": 9.246417013407317, + "c5": 6.934812760055465, + "c6": 4.623208506703659, + "c7": 2.311604253351806 }, "rgb": [58, 15, 49] }, @@ -25494,23 +25494,23 @@ "year": 1685, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -33.60875149361432, - "c2": -37.092871506601305, - "c3": 2.1330275227551354, - "c4": 12.428192052596138, - "c5": -35.21246854098984, - "c6": 12.3218975663967, - "c7": -9.961720296870233 + "points": { + "c1": 24.395956076169227, + "c2": -40.429525152584624, + "c3": -26.45138085545073, + "c4": 10.766543179820651, + "c5": 21.10346942405078, + "c6": 29.644226271354896, + "c7": -6.130426236289388 }, - "vertexSeeds": { - "c1": 3.238371474045609, - "c2": 3.7969504761745325, - "c3": 3.853697635736565, - "c4": 4.048156221222578, - "c5": 3.70525873997029, - "c6": 3.339067703755129, - "c7": 4.0075063302370975 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105874, + "c4": 3.920480813684697, + "c5": 2.9403606102635234, + "c6": 1.9602404068423505, + "c7": 0.9801202034211771 }, "rgb": [222, 0, 59] }, @@ -25521,23 +25521,23 @@ "year": 1685, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": 22.08541750683547, - "c2": 36.355253886334694, - "c3": 6.525970443189436, - "c4": -6.0090887022077695, - "c5": -10.926432009472492, - "c6": 43.3942661478431, - "c7": -30.836619591662977 + "points": { + "c1": -28.67670961376084, + "c2": 12.440559836801206, + "c3": 6.91748202228554, + "c4": 33.9131344126765, + "c5": 9.135311032619505, + "c6": -4.796108099794203, + "c7": -35.32661661191934 }, - "vertexSeeds": { - "c1": 5.8206953125794225, - "c2": 7.2348628178530765, - "c3": 5.423115271295509, - "c4": 7.168833945580028, - "c5": 6.873317296582326, - "c6": 5.941296320219742, - "c7": 5.477229563952719 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445217, + "c3": 8.87656033287101, + "c4": 7.101248266296811, + "c5": 5.325936199722606, + "c6": 3.5506241331484056, + "c7": 1.775312066574206 }, "rgb": [77, 76, 132] }, @@ -25548,23 +25548,23 @@ "year": 1685, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": -29.668326086739008, - "c2": -26.94370741352878, - "c3": 24.772859981701238, - "c4": -6.233725748099822, - "c5": 33.045762174794625, - "c6": 5.970454795567846, - "c7": 33.43774086563375 + "points": { + "c1": 23.405721793462796, + "c2": -4.633713301505708, + "c3": -26.261206697611946, + "c4": 20.508988537843372, + "c5": -19.430781413883025, + "c6": 40.769518074988675, + "c7": -13.631117706238406 }, - "vertexSeeds": { - "c1": 16.658652176405372, - "c2": 15.799189887220106, - "c3": 15.234588881039, - "c4": 16.281140162300712, - "c5": 14.598332435828498, - "c6": 16.195072582996815, - "c7": 16.225233614319635 + "offsets": { + "c1": 29.320388349514566, + "c2": 25.131761442441057, + "c3": 20.943134535367555, + "c4": 16.754507628294046, + "c5": 12.56588072122052, + "c6": 8.377253814147014, + "c7": 4.188626907073507 }, "rgb": [58, 15, 49] }, @@ -25575,23 +25575,23 @@ "year": 1685, "resistanceReported": false, "duration": 37843200, - "curveSeeds": { - "c1": 44.41573349098139, - "c2": 26.32021031302812, - "c3": -15.014273760786807, - "c4": -6.976549165483014, - "c5": -2.608345560322988, - "c6": -12.779477957906998, - "c7": 14.329591402298924 + "points": { + "c1": -10.683689172318807, + "c2": -6.472603122512126, + "c3": 48.26263729539823, + "c4": -37.71522838113508, + "c5": 46.26397923420165, + "c6": -6.319024950607414, + "c7": -50.902100219665975 }, - "vertexSeeds": { - "c1": 5.001125498995132, - "c2": 4.270533066062551, - "c3": 4.494467955940244, - "c4": 3.975802782803364, - "c5": 5.152191729500714, - "c6": 4.814777024069859, - "c7": 5.1004746758645485 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877947, + "c3": 6.195099398982893, + "c4": 4.956079519186315, + "c5": 3.717059639389735, + "c6": 2.478039759593154, + "c7": 1.239019879796577 }, "rgb": [222, 0, 59] }, @@ -25602,23 +25602,23 @@ "year": 1685, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -17.293458288672333, - "c2": 24.766571997176413, - "c3": 32.36689902216588, - "c4": -27.058949126906832, - "c5": 19.332362533344643, - "c6": 18.004452194553465, - "c7": -4.7701418931729265 + "points": { + "c1": -19.471369443890836, + "c2": -32.185644319855506, + "c3": -6.230723640745666, + "c4": 32.00916834743488, + "c5": -23.821883938488686, + "c6": -29.8477574258215, + "c7": -12.788414689375745 }, - "vertexSeeds": { - "c1": 4.232821512852283, - "c2": 4.382107139967967, - "c3": 4.317628017230177, - "c4": 4.709120481685954, - "c5": 4.973201105119275, - "c6": 4.564436186858044, - "c7": 4.390412776093716 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457695, + "c3": 6.010171058714749, + "c4": 4.808136846971798, + "c5": 3.606102635228845, + "c6": 2.404068423485899, + "c7": 1.2020342117429468 }, "rgb": [222, 0, 59] }, @@ -25629,23 +25629,23 @@ "year": 1685, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -25.733952013114525, - "c2": -10.452061665572568, - "c3": -14.254746250564176, - "c4": 18.723919869920447, - "c5": 1.3318946862205898, - "c6": -25.360678909470007, - "c7": 22.86479845033094 + "points": { + "c1": 22.349921513307013, + "c2": -27.810536153718147, + "c3": 2.262262540685253, + "c4": -9.634777273005618, + "c5": -6.192978944805567, + "c6": -16.7028757987615, + "c7": -3.3567058614961987 }, - "vertexSeeds": { - "c1": 3.8383483713237996, - "c2": 3.549579764058221, - "c3": 3.5223065945004564, - "c4": 3.846712774271008, - "c5": 3.7349616404483763, - "c6": 3.6652374481696537, - "c7": 3.701708622447671 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703649, + "c4": 3.6985668053629177, + "c5": 2.773925104022195, + "c6": 1.8492834026814635, + "c7": 0.9246417013407318 }, "rgb": [222, 0, 59] }, @@ -25656,23 +25656,23 @@ "year": 1685, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 28.39089324517228, - "c2": 20.11607263967811, - "c3": -30.525500994517213, - "c4": 22.067322669091027, - "c5": 15.67394026642819, - "c6": -32.15959878772528, - "c7": -34.00062659096403 + "points": { + "c1": -2.5648563473733716, + "c2": -3.1019909149978844, + "c3": -16.372849789828205, + "c4": 25.511501819571052, + "c5": 16.962256663482037, + "c6": -13.732317844110845, + "c7": 3.8170942402141392 }, - "vertexSeeds": { - "c1": 6.219408058582782, - "c2": 6.820850771963656, - "c3": 6.065339667079834, - "c4": 6.9415711497406365, - "c5": 6.895213648016413, - "c6": 6.255726791285773, - "c7": 6.735324039329514 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479888, + "c3": 8.321775312066572, + "c4": 6.657420249653256, + "c5": 4.9930651872399405, + "c6": 3.328710124826624, + "c7": 1.6643550624133083 }, "rgb": [238, 201, 159] }, @@ -25683,23 +25683,23 @@ "year": 1685, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 28.504200907458994, - "c2": -7.437240419748335, - "c3": -25.406910785332784, - "c4": -27.03936366318856, - "c5": 13.945208222950612, - "c6": -34.327465820607856, - "c7": -6.3263912352190985 + "points": { + "c1": 31.544098621366913, + "c2": 9.216246463935107, + "c3": 15.023725908783938, + "c4": 13.272351563698003, + "c5": 5.443024922045012, + "c6": -38.05309912768221, + "c7": 4.408132084626722 }, - "vertexSeeds": { - "c1": 3.937444395432435, - "c2": 4.477682876424321, - "c3": 4.8371645650026815, - "c4": 4.59393252470983, - "c5": 4.555225360448743, - "c6": 4.402492904617517, - "c7": 3.633439270308796 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377255, + "c3": 5.963938973647711, + "c4": 4.77115117891817, + "c5": 3.578363384188626, + "c6": 2.385575589459085, + "c7": 1.192787794729544 }, "rgb": [238, 201, 159] }, @@ -25710,23 +25710,23 @@ "year": 1685, "resistanceReported": false, "duration": 1641600, - "curveSeeds": { - "c1": 1.006586531880055, - "c2": -1.6845648104533755, - "c3": 6.99337470347087, - "c4": -1.4854171276745607, - "c5": -9.162713933884534, - "c6": 2.9140762085524585, - "c7": 3.836386499523819 + "points": { + "c1": -10.459748660686497, + "c2": 6.276120263823113, + "c3": -7.724017043210897, + "c4": -1.607225732961684, + "c5": 4.357778957309296, + "c6": 10.812448148358389, + "c7": -5.067130975841584 }, - "vertexSeeds": { - "c1": 9.496659625470718, - "c2": 9.860661495114165, - "c3": 9.363748876410899, - "c4": 9.985599778945472, - "c5": 9.747215605820179, - "c6": 10.076096334838809, - "c7": 9.468325623647898 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [86, 146, 138] }, @@ -25737,23 +25737,23 @@ "year": 1685, "resistanceReported": false, "duration": 1209600, - "curveSeeds": { - "c1": 8.338501673601643, - "c2": -9.257375697298254, - "c3": 7.686558678320049, - "c4": 4.523580588206048, - "c5": 10.53892626602777, - "c6": -4.166141495417049, - "c7": 4.3431066621022385 + "points": { + "c1": -8.832402838084466, + "c2": 3.7748834246375527, + "c3": -8.052462107452449, + "c4": -1.9688366140239921, + "c5": -4.255412499154085, + "c6": -10.741980199280249, + "c7": -11.136492655101168 }, - "vertexSeeds": { - "c1": 7.808552189068815, - "c2": 8.526085354828094, - "c3": 8.421241582336533, - "c4": 8.27068092813268, - "c5": 7.776522096814705, - "c6": 9.054293322709935, - "c7": 8.522595124253037 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [86, 146, 138] }, @@ -25764,23 +25764,23 @@ "year": 1686, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -4.398061775227497, - "c2": -15.036726995886216, - "c3": -26.772172206618716, - "c4": 14.81061565950504, - "c5": 40.580816031287924, - "c6": 27.055681549644405, - "c7": -25.872982081340627 + "points": { + "c1": 35.45555090351252, + "c2": -2.9145908500693665, + "c3": -27.450844854634582, + "c4": -38.09843535991489, + "c5": -4.553678736894703, + "c6": -3.500385425397191, + "c7": 2.753418897627732 }, - "vertexSeeds": { - "c1": 5.872930992446984, - "c2": 6.336554009917557, - "c3": 6.3043609951322805, - "c4": 6.15599755670284, - "c5": 6.136885925213113, - "c6": 6.012802593174109, - "c7": 6.187872886347192 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [86, 146, 138] }, @@ -25791,23 +25791,23 @@ "year": 1685, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 15.870161137050111, - "c2": -22.40760375532166, - "c3": -4.562566662075646, - "c4": -11.028835689643962, - "c5": 10.872160547746184, - "c6": 2.4354424301585027, - "c7": -17.10949377451738 + "points": { + "c1": -36.87544634956882, + "c2": 8.57465768349693, + "c3": 7.278422913817721, + "c4": -3.941793956586359, + "c5": -0.5017752641062003, + "c6": -16.017676454682753, + "c7": -18.037828222890333 }, - "vertexSeeds": { - "c1": 9.386045250312716, - "c2": 7.8530299726234105, - "c3": 9.271031938473396, - "c4": 8.10432639942494, - "c5": 8.52104842679699, - "c6": 9.592237165081269, - "c7": 8.528609832508039 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.558021266759129, + "c4": 9.246417013407301, + "c5": 6.934812760055474, + "c6": 4.623208506703654, + "c7": 2.311604253351827 }, "rgb": [238, 201, 159] }, @@ -25818,23 +25818,23 @@ "year": 1686, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": -37.835636258410915, - "c2": -31.883991309231867, - "c3": -19.370016489057853, - "c4": -24.057833478882127, - "c5": 42.13480249613227, - "c6": -25.935287758739072, - "c7": 40.54918162519509 + "points": { + "c1": -26.810227323956255, + "c2": 16.629946871349375, + "c3": -4.589493184301155, + "c4": 27.131582543115755, + "c5": 22.347346381427826, + "c6": 49.25125874789464, + "c7": 35.748932407598986 }, - "vertexSeeds": { - "c1": 12.576714240664, - "c2": 12.283814296647913, - "c3": 11.122628960710038, - "c4": 6.537422728067671, - "c5": 12.496124723584831, - "c6": 9.836316120074896, - "c7": 10.946629731432816 + "offsets": { + "c1": 21.067961165048544, + "c2": 18.058252427184467, + "c3": 15.048543689320386, + "c4": 12.03883495145631, + "c5": 9.029126213592232, + "c6": 6.019417475728153, + "c7": 3.009708737864078 }, "rgb": [238, 201, 159] }, @@ -25845,23 +25845,23 @@ "year": 1685, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -14.147052121302423, - "c2": -27.52490689723996, - "c3": -26.60862268411718, - "c4": 4.73992029000442, - "c5": 10.909941992963653, - "c6": 25.35618221288017, - "c7": 25.880313386689636 + "points": { + "c1": -0.5623872345050458, + "c2": 25.167314523315945, + "c3": 27.629190277741607, + "c4": 4.565820768961451, + "c5": -8.417652438554427, + "c6": 7.079868819775001, + "c7": 10.575620268884144 }, - "vertexSeeds": { - "c1": 4.696019514465262, - "c2": 4.563860503188968, - "c3": 4.395271355501459, - "c4": 4.3979883931494825, - "c5": 4.751124000029759, - "c6": 4.610855374934312, - "c7": 4.591875080795391 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015257, + "c3": 5.755894590846048, + "c4": 4.604715672676838, + "c5": 3.4535367545076285, + "c6": 2.302357836338419, + "c7": 1.1511789181692096 }, "rgb": [58, 15, 49] }, @@ -25872,23 +25872,23 @@ "year": 1686, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 15.046209977530644, - "c2": -34.22977336257009, - "c3": -32.97281765789462, - "c4": -29.666495330710323, - "c5": -21.799376314082288, - "c6": -4.152567499153875, - "c7": -3.4017165625507744 + "points": { + "c1": -14.209390443002388, + "c2": -35.73335564459055, + "c3": 7.24016429488298, + "c4": -32.47834671508077, + "c5": 2.8668581294459727, + "c6": -8.741759643751251, + "c7": -41.55289642497594 }, - "vertexSeeds": { - "c1": 2.9017829952201284, - "c2": 3.218442164926149, - "c3": 3.060425643900258, - "c4": 2.8472295727055217, - "c5": 2.9319930828723266, - "c6": 2.9684050658433336, - "c7": 2.9092199190045553 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837724, + "c3": 3.929727230698101, + "c4": 3.1437817845584846, + "c5": 2.357836338418862, + "c6": 1.5718908922792392, + "c7": 0.7859454461396164 }, "rgb": [238, 201, 159] }, @@ -25899,23 +25899,23 @@ "year": 1686, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 17.104486734376273, - "c2": -13.687485406162846, - "c3": 13.569642046138014, - "c4": 36.272022736560814, - "c5": -26.002757128257663, - "c6": 27.060670580714856, - "c7": 21.836875300336153 + "points": { + "c1": -10.567100262671858, + "c2": 13.394382428160554, + "c3": 7.882697495839032, + "c4": 39.32125650296511, + "c5": 1.9684273712884348, + "c6": 33.52914363044907, + "c7": 32.042524766394905 }, - "vertexSeeds": { - "c1": 2.4460365883466166, - "c2": 4.034647198012354, - "c3": 2.923670780077294, - "c4": 3.938646566596171, - "c5": 4.701386758918251, - "c6": 2.8480044052971234, - "c7": 2.339263488012907 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739251, + "c3": 6.171983356449376, + "c4": 4.937586685159501, + "c5": 3.703190013869625, + "c6": 2.4687933425797493, + "c7": 1.2343966712898755 }, "rgb": [86, 146, 138] }, @@ -25926,23 +25926,23 @@ "year": 1686, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": -51.219064191201234, - "c2": -13.661254780275435, - "c3": 54.73343114545028, - "c4": 0.8450239156723072, - "c5": 45.7762449096563, - "c6": -7.615913575226074, - "c7": -24.739619927684156 + "points": { + "c1": 2.432417934337572, + "c2": 37.332096865469055, + "c3": 22.5421670726176, + "c4": 41.79325669316418, + "c5": -37.616765952033475, + "c6": -49.447291933837256, + "c7": -5.534858139316398 }, - "vertexSeeds": { - "c1": 2.6913460765142085, - "c2": 2.3102507327462027, - "c3": 2.3615468347217274, - "c4": 2.4207313046552668, - "c5": 2.611317861990945, - "c6": 2.2683379921371873, - "c7": 2.429047005373192 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692556, + "c4": 2.5889967637540443, + "c5": 1.9417475728155353, + "c6": 1.2944983818770235, + "c7": 0.6472491909385117 }, "rgb": [86, 146, 138] }, @@ -25953,23 +25953,23 @@ "year": 1686, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 3.720700018423898, - "c2": -36.3337595955055, - "c3": -37.62567919656516, - "c4": -33.410223380999334, - "c5": -13.3240385136451, - "c6": -0.6283327406146739, - "c7": 30.71989803389844 + "points": { + "c1": -0.14643395690465866, + "c2": 42.827329050552486, + "c3": -38.98299179594016, + "c4": -0.06564677155491694, + "c5": 8.118792085427039, + "c6": -27.05467482424797, + "c7": -39.00821509229766 }, - "vertexSeeds": { - "c1": 3.422372124812962, - "c2": 3.657170802740695, - "c3": 3.3794577860159682, - "c4": 3.3277708807431226, - "c5": 3.5205964947531005, - "c6": 3.668420809050289, - "c7": 3.1123263612292176 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084606, + "c3": 4.646324549237172, + "c4": 3.7170596393897344, + "c5": 2.787794729542301, + "c6": 1.8585298196948672, + "c7": 0.9292649098474336 }, "rgb": [77, 76, 132] }, @@ -25980,23 +25980,23 @@ "year": 1686, "resistanceReported": true, "duration": 28598400, - "curveSeeds": { - "c1": 3.7554591023306543, - "c2": 2.7588253906094167, - "c3": -36.96432971117597, - "c4": -23.55304476495601, - "c5": -20.228893007494076, - "c6": -37.216209976361036, - "c7": 18.90019490828888 + "points": { + "c1": 41.60075060452532, + "c2": -7.5133325882257935, + "c3": -38.56072353007991, + "c4": 24.346152649863313, + "c5": -27.669305532962383, + "c6": -17.836504469020284, + "c7": 9.026423895328904 }, - "vertexSeeds": { - "c1": 2.0903427166942543, - "c2": 1.8498660407016083, - "c3": 1.726236174321415, - "c4": 1.8804308291226286, - "c5": 2.12497385195642, - "c6": 2.3125895185719125, - "c7": 2.003611068459734 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555709, + "c4": 2.237632917244568, + "c5": 1.6782246879334253, + "c6": 1.118816458622284, + "c7": 0.5594082293111428 }, "rgb": [77, 76, 132] }, @@ -26007,23 +26007,23 @@ "year": 1686, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 23.390848645541787, - "c2": 28.042488304152457, - "c3": 13.04943307262345, - "c4": 33.43419611951188, - "c5": -12.828013711476704, - "c6": -12.089077370187848, - "c7": 11.06956763297952 + "points": { + "c1": 2.271717539695665, + "c2": -16.85954834859503, + "c3": 36.51333674212613, + "c4": 25.408147254918042, + "c5": 3.824191386354478, + "c6": 28.41976968309642, + "c7": 29.142542788732058 }, - "vertexSeeds": { - "c1": 2.3442350631054305, - "c2": 3.1831874678299688, - "c3": 2.8077247883012184, - "c4": 3.074539990920421, - "c5": 2.8747815031741815, - "c6": 2.4190935335877017, - "c7": 2.604440703608517 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676836, + "c3": 3.837263060564032, + "c4": 3.069810448451224, + "c5": 2.3023578363384196, + "c6": 1.534905224225612, + "c7": 0.767452612112806 }, "rgb": [238, 201, 159] }, @@ -26034,23 +26034,23 @@ "year": 1686, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 4.331377164875228, - "c2": -26.403873654482652, - "c3": 13.520177670413894, - "c4": -21.40111920791579, - "c5": -29.37725918452388, - "c6": 22.185171997037536, - "c7": -11.533862373094806 + "points": { + "c1": 27.046991876523656, + "c2": -6.1089961164834605, + "c3": -3.560681592539403, + "c4": -31.049700968516902, + "c5": -19.262361234479542, + "c6": 18.929705707593754, + "c7": 25.14062967741817 }, - "vertexSeeds": { - "c1": 4.921599439656461, - "c2": 6.0151511520169825, - "c3": 5.437921306701993, - "c4": 5.761248638028147, - "c5": 5.90472509291641, - "c6": 4.963079265291611, - "c7": 5.8885381443679155 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [77, 76, 132] }, @@ -26061,23 +26061,23 @@ "year": 1686, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 4.784496553980141, - "c2": -26.543378692230696, - "c3": 0.8297823884285904, - "c4": -15.29347267958332, - "c5": -28.20644477803438, - "c6": -32.56849897638614, - "c7": 33.59685981618659 + "points": { + "c1": -18.486331961237994, + "c2": 21.38895500458245, + "c3": 1.1123845978634819, + "c4": -22.83250676419237, + "c5": -14.641610076744957, + "c6": 26.52510681285701, + "c7": -21.09707523131505 }, - "vertexSeeds": { - "c1": 5.44096998275975, - "c2": 5.610274720977158, - "c3": 5.836181882535951, - "c4": 5.666574638257207, - "c5": 6.0550106168805815, - "c6": 6.138747565807285, - "c7": 5.388728195646101 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192319, + "c4": 5.899214054553858, + "c5": 4.424410540915397, + "c6": 2.949607027276922, + "c7": 1.474803513638461 }, "rgb": [58, 15, 49] }, @@ -26088,23 +26088,23 @@ "year": 1686, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -14.427307786168484, - "c2": -5.3164789944320106, - "c3": -35.84068418201733, - "c4": -23.492735506800543, - "c5": 4.923188149189954, - "c6": 21.168465527343436, - "c7": 31.14294375723 + "points": { + "c1": 16.60971208951915, + "c2": -30.416985386254716, + "c3": 30.71943251702143, + "c4": -3.1610412395765906, + "c5": 21.761778424206824, + "c6": 15.462370188219083, + "c7": -38.245002642487734 }, - "vertexSeeds": { - "c1": 2.9356893661409216, - "c2": 2.8936003028545527, - "c3": 2.842060258382696, - "c4": 2.9064581921652652, - "c5": 2.947119869973578, - "c6": 2.826107369474108, - "c7": 2.824435568880212 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282942, + "c4": 2.8294036061026353, + "c5": 2.1220527045769764, + "c6": 1.4147018030513177, + "c7": 0.7073509015256588 }, "rgb": [222, 0, 59] }, @@ -26115,23 +26115,23 @@ "year": 1686, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -18.623053144635996, - "c2": 13.914774460492715, - "c3": 0.9597583142889548, - "c4": -3.538095117019779, - "c5": -22.398408468048608, - "c6": 9.956194923620728, - "c7": 29.766596707435504 + "points": { + "c1": 6.466069665086472, + "c2": 23.84858478231105, + "c3": -13.460347194436686, + "c4": -18.612405365745254, + "c5": -16.77951446133857, + "c6": -8.839177566383249, + "c7": 1.826572557442411 }, - "vertexSeeds": { - "c1": 6.272746541411882, - "c2": 7.035633428550182, - "c3": 6.8188391660849215, - "c4": 6.719604200424865, - "c5": 6.933386434332572, - "c6": 7.0309824203314895, - "c7": 6.3576528809679305 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.15256588072122, + "c3": 8.460471567267684, + "c4": 6.768377253814147, + "c5": 5.07628294036061, + "c6": 3.3841886269070733, + "c7": 1.6920943134535367 }, "rgb": [238, 201, 159] }, @@ -26142,23 +26142,23 @@ "year": 1686, "resistanceReported": true, "duration": 22982400, - "curveSeeds": { - "c1": -2.2829520217301393, - "c2": 34.163960486915556, - "c3": -27.55441582072791, - "c4": -7.491935808610467, - "c5": -16.41339319228248, - "c6": -20.38893593269075, - "c7": -4.098536355584617 + "points": { + "c1": -20.36821068976646, + "c2": 33.059660065344275, + "c3": 22.757210327792095, + "c4": 12.978871112847813, + "c5": 17.799900232994823, + "c6": 7.592803697681823, + "c7": -37.03257580130401 }, - "vertexSeeds": { - "c1": 7.431743363497187, - "c2": 5.44499878587888, - "c3": 6.189180918459828, - "c4": 6.8483673019444495, - "c5": 6.309827543951605, - "c6": 6.489608727233339, - "c7": 5.961050346015032 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.3971336107258425, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [77, 76, 132] }, @@ -26169,23 +26169,23 @@ "year": 1686, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 21.540313910910037, - "c2": -31.027726603309464, - "c3": 19.351187821179572, - "c4": 0.42988343340692836, - "c5": 3.721141572418368, - "c6": -2.9725112197666093, - "c7": 6.500681779893696 + "points": { + "c1": 34.962787652569595, + "c2": 26.765715355840292, + "c3": -23.61208756227619, + "c4": -33.262345791340856, + "c5": -8.686621496869076, + "c6": -10.391871516748758, + "c7": 36.80586833208857 }, - "vertexSeeds": { - "c1": 7.622619439213317, - "c2": 8.759376476941208, - "c3": 8.682782509673908, - "c4": 9.252046318609132, - "c5": 9.109491699742922, - "c6": 8.330240477393948, - "c7": 8.124471159451625 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.64771151178918, + "c3": 11.37309292649098, + "c4": 9.098474341192789, + "c5": 6.82385575589459, + "c6": 4.549237170596391, + "c7": 2.274618585298199 }, "rgb": [222, 0, 59] }, @@ -26196,23 +26196,23 @@ "year": 1686, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -18.360314818082536, - "c2": -13.002019217943229, - "c3": -5.012253276562529, - "c4": -6.550254582730343, - "c5": -19.132228143477285, - "c6": 0.5584094523000687, - "c7": -26.011726009842718 + "points": { + "c1": 13.897067240508129, + "c2": -5.965968761080809, + "c3": 25.33804626522685, + "c4": 14.105898152182533, + "c5": -4.720223862232764, + "c6": 11.01503431781834, + "c7": 5.7006184056079405 }, - "vertexSeeds": { - "c1": 4.108143122885421, - "c2": 3.7804518501242974, - "c3": 3.90211553179938, - "c4": 3.356496982579205, - "c5": 3.5889583414546125, - "c6": 3.7325183054192093, - "c7": 3.3227675445387455 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768378, + "c3": 5.039297272306979, + "c4": 4.0314378178455845, + "c5": 3.023578363384189, + "c6": 2.015718908922794, + "c7": 1.007859454461395 }, "rgb": [58, 15, 49] }, @@ -26223,23 +26223,23 @@ "year": 1686, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 10.390601327398436, - "c2": -3.8501073005466324, - "c3": -20.477061462065894, - "c4": -18.983593348183923, - "c5": 34.79110657727489, - "c6": -25.531320367247105, - "c7": 34.34064063106378 + "points": { + "c1": 22.43736658179065, + "c2": 14.555133252903815, + "c3": -35.24819425109432, + "c4": 35.41799467150672, + "c5": -26.98437957915901, + "c6": -20.68048980358905, + "c7": 26.201716454954436 }, - "vertexSeeds": { - "c1": 4.591791944043916, - "c2": 4.257310649151326, - "c3": 4.456199821659276, - "c4": 4.607771726858129, - "c5": 4.282203207638999, - "c6": 4.789270874195854, - "c7": 4.273968841574276 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181693, + "c3": 6.426259824318078, + "c4": 5.141007859454463, + "c5": 3.8557558945908483, + "c6": 2.5705039297272334, + "c7": 1.2852519648636147 }, "rgb": [86, 146, 138] }, @@ -26250,23 +26250,23 @@ "year": 1686, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 5.382380306495346, - "c2": 13.179396877236702, - "c3": -17.489737759467896, - "c4": -14.619101878962109, - "c5": 8.02249146139717, - "c6": -21.716770249316426, - "c7": -5.927635313134665 + "points": { + "c1": -31.778459527731954, + "c2": -31.979279298122663, + "c3": 16.70604993966832, + "c4": 6.388829276561779, + "c5": 19.403044845856755, + "c6": 27.946772982715814, + "c7": 11.441480466894255 }, - "vertexSeeds": { - "c1": 4.522438429547467, - "c2": 5.009677244281763, - "c3": 4.818206511948388, - "c4": 5.0626855825344075, - "c5": 4.926531141063342, - "c6": 4.7203508481492005, - "c7": 4.32409764558417 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739255, + "c3": 6.171983356449376, + "c4": 4.937586685159499, + "c5": 3.703190013869624, + "c6": 2.468793342579752, + "c7": 1.234396671289876 }, "rgb": [238, 201, 159] }, @@ -26277,23 +26277,23 @@ "year": 1686, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -38.30921431145353, - "c2": -37.37019173038058, - "c3": 35.29327268246456, - "c4": 7.310962477874369, - "c5": -3.608185399684274, - "c6": -32.62931483353013, - "c7": 25.033576501615755 + "points": { + "c1": -12.820045661936884, + "c2": 6.569758611077745, + "c3": -34.72348729386783, + "c4": 14.93224261844346, + "c5": 23.772945656826366, + "c6": -9.744192776416178, + "c7": 28.29671468431414 }, - "vertexSeeds": { - "c1": 13.43035908840516, - "c2": 12.539517322898357, - "c3": 12.78071027134769, - "c4": 13.725918019844801, - "c5": 11.665960401546876, - "c6": 12.453652247652824, - "c7": 13.928571881756877 + "offsets": { + "c1": 23.754045307443366, + "c2": 20.360610263522883, + "c3": 16.9671752196024, + "c4": 13.573740175681918, + "c5": 10.180305131761449, + "c6": 6.786870087840967, + "c7": 3.3934350439204835 }, "rgb": [86, 146, 138] }, @@ -26304,23 +26304,23 @@ "year": 1686, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -32.19440870413186, - "c2": -40.2972217197992, - "c3": -9.065973293740143, - "c4": 41.39641232913773, - "c5": -27.403193372305125, - "c6": 45.420894251322366, - "c7": -2.324193109085229 + "points": { + "c1": 34.20487923497099, + "c2": 3.5880521430641608, + "c3": -19.204111312361583, + "c4": 25.505647051032696, + "c5": 38.39887279960104, + "c6": -12.114860037357403, + "c7": 19.734130393305264 }, - "vertexSeeds": { - "c1": 2.715702615270253, - "c2": 2.1792441695366414, - "c3": 2.667547428450059, - "c4": 2.5059118457119687, - "c5": 2.191309594911805, - "c6": 2.0500282865649346, - "c7": 2.1487603130706594 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.467406380027739, + "c4": 2.773925104022191, + "c5": 2.080443828016643, + "c6": 1.3869625520110955, + "c7": 0.6934812760055478 }, "rgb": [58, 15, 49] }, @@ -26331,23 +26331,23 @@ "year": 1686, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 21.244758295970158, - "c2": 40.518092272693536, - "c3": 0.4130476401174832, - "c4": -19.91042100259824, - "c5": 14.055347579172249, - "c6": 40.086574801238385, - "c7": 34.2548670026471 + "points": { + "c1": -35.63914764277964, + "c2": -25.527684764735803, + "c3": -9.209865979907605, + "c4": 42.691867413211995, + "c5": -41.37015054550314, + "c6": -37.42908244267539, + "c7": -3.498022870014836 }, - "vertexSeeds": { - "c1": 7.755330629433487, - "c2": 7.618344114080497, - "c3": 7.276746545385264, - "c4": 7.358831530535792, - "c5": 7.4927763753314, - "c6": 8.148045562772863, - "c7": 7.511603997482828 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134537, + "c3": 9.847434119278782, + "c4": 7.877947295423029, + "c5": 5.908460471567276, + "c6": 3.938973647711521, + "c7": 1.9694868238557675 }, "rgb": [77, 76, 132] }, @@ -26358,23 +26358,23 @@ "year": 1686, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -29.673147263197173, - "c2": 30.910593606146122, - "c3": -20.008683800238348, - "c4": 28.304745106970614, - "c5": -31.809467360633725, - "c6": -22.078859706724458, - "c7": 8.621656520244812 + "points": { + "c1": 21.359505871979202, + "c2": -2.190392964688492, + "c3": -10.946816830023408, + "c4": -15.42753568201999, + "c5": 12.451431348446796, + "c6": 26.56265158753176, + "c7": 7.290764411934418 }, - "vertexSeeds": { - "c1": 9.378377812488987, - "c2": 10.810945172779105, - "c3": 10.767353312766145, - "c4": 11.083542171726549, - "c5": 11.95079979464675, - "c6": 11.172778203141146, - "c7": 10.925909974650722 + "offsets": { + "c1": 20.19417475728155, + "c2": 17.309292649098467, + "c3": 14.424410540915396, + "c4": 11.53952843273231, + "c5": 8.65464632454924, + "c6": 5.769764216366155, + "c7": 2.8848821081830773 }, "rgb": [77, 76, 132] }, @@ -26385,23 +26385,23 @@ "year": 1686, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": -14.242291102949189, - "c2": 7.774834021505637, - "c3": -10.58709262598388, - "c4": 20.153901402454288, - "c5": -15.769520716897363, - "c6": 10.65404757535827, - "c7": -1.0720364092384962 + "points": { + "c1": 4.2893543889527095, + "c2": 23.379793289331822, + "c3": 9.053695245154074, + "c4": 7.00392046447752, + "c5": -11.443654663998862, + "c6": -10.385489439068374, + "c7": -6.430152193288791 }, - "vertexSeeds": { - "c1": 9.735765934361421, - "c2": 9.566722717288062, - "c3": 9.451787124420521, - "c4": 9.81985508451298, - "c5": 9.6273755766442, - "c6": 9.847734822325123, - "c7": 9.589050936529093 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.091539528432719, + "c3": 11.742949607027292, + "c4": 9.394359685621826, + "c5": 7.0457697642163595, + "c6": 4.697179842810893, + "c7": 2.348589921405466 }, "rgb": [222, 0, 59] }, @@ -26412,23 +26412,23 @@ "year": 1686, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": -5.511678382730496, - "c2": -17.851894892279855, - "c3": -4.520421299823928, - "c4": 4.713682123661908, - "c5": -18.019363290049213, - "c6": 10.530231238015709, - "c7": -5.460914773903069 + "points": { + "c1": 1.3437725194171684, + "c2": -18.56866449861962, + "c3": 11.408766909495121, + "c4": -6.504331075183078, + "c5": -2.1132572564580627, + "c6": 21.381496189137685, + "c7": 10.63367334940434 }, - "vertexSeeds": { - "c1": 9.009863834270343, - "c2": 9.160809864153439, - "c3": 8.532532781787369, - "c4": 9.120844481830401, - "c5": 8.540626256142115, - "c6": 8.627956821576365, - "c7": 9.044889106838227 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.84188626907073, + "c3": 11.534905224225614, + "c4": 9.227924179380485, + "c5": 6.920943134535371, + "c6": 4.613962089690243, + "c7": 2.3069810448451156 }, "rgb": [58, 15, 49] }, @@ -26439,23 +26439,23 @@ "year": 1686, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": 7.503000316565192, - "c2": -7.315211801017705, - "c3": -2.836631249764487, - "c4": -8.388723820931492, - "c5": -5.388917712851509, - "c6": 1.116964452991585, - "c7": 14.559542495229373 + "points": { + "c1": 8.262520771456778, + "c2": 19.030150863673228, + "c3": 19.71013935399086, + "c4": 18.6198244264858, + "c5": -19.978602951177354, + "c6": 13.296412347223963, + "c7": -20.825381453752485 }, - "vertexSeeds": { - "c1": 3.8436779942048207, - "c2": 3.659925924769806, - "c3": 3.666554796510864, - "c4": 3.7674014556419064, - "c5": 3.851822453695269, - "c6": 3.633685749363067, - "c7": 3.633657398716198 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.54785020804438, + "c3": 4.623208506703648, + "c4": 3.6985668053629155, + "c5": 2.7739251040221973, + "c6": 1.849283402681465, + "c7": 0.9246417013407325 }, "rgb": [222, 0, 59] }, @@ -26466,23 +26466,23 @@ "year": 1686, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -8.93501844693117, - "c2": -4.5462034893053485, - "c3": 19.018339370339845, - "c4": 22.049435990394294, - "c5": 10.92515217201968, - "c6": -20.902031505983032, - "c7": -5.653360741993506 + "points": { + "c1": -21.668165540197673, + "c2": 19.343944657728535, + "c3": -11.344474385779247, + "c4": 12.746781790714401, + "c5": -23.809972043072122, + "c6": -7.065190578988972, + "c7": 7.778666362809304 }, - "vertexSeeds": { - "c1": 9.953699582183472, - "c2": 10.470023358925427, - "c3": 8.900176028904372, - "c4": 10.419230920069749, - "c5": 11.076331704638893, - "c6": 9.767449373867795, - "c7": 9.723972262946189 + "offsets": { + "c1": 18.83495145631068, + "c2": 16.14424410540915, + "c3": 13.453536754507624, + "c4": 10.762829403606096, + "c5": 8.072122052704575, + "c6": 5.381414701803048, + "c7": 2.6907073509015205 }, "rgb": [238, 201, 159] }, @@ -26493,23 +26493,23 @@ "year": 1686, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -31.589914322934938, - "c2": -9.413596595543108, - "c3": 5.905017075610829, - "c4": 23.818083157580162, - "c5": -1.1585989794036422, - "c6": 7.91667979568237, - "c7": 21.18303000642384 + "points": { + "c1": -2.4570600640284965, + "c2": -21.9513365124576, + "c3": -3.1837576611134253, + "c4": 30.132395383930884, + "c5": -37.330991351843224, + "c6": -10.933793497669328, + "c7": -16.560931780000644 }, - "vertexSeeds": { - "c1": 7.895804746711049, - "c2": 7.753881265012071, - "c3": 6.9395492815330115, - "c4": 7.500443669820433, - "c5": 8.256065766605234, - "c6": 7.747593722763707, - "c7": 8.78918049676206 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381414, + "c3": 10.564031437817846, + "c4": 8.451225150254272, + "c5": 6.338418862690704, + "c6": 4.225612575127136, + "c7": 2.112806287563568 }, "rgb": [77, 76, 132] }, @@ -26520,23 +26520,23 @@ "year": 1686, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -25.74222532722926, - "c2": -33.76886703169808, - "c3": 30.29491051014351, - "c4": 13.483565994745852, - "c5": -5.994852890614094, - "c6": 19.083196809256172, - "c7": 27.552431023131874 + "points": { + "c1": 27.55343458631485, + "c2": -32.911538268490894, + "c3": 14.655134186285636, + "c4": 29.20055955051241, + "c5": 22.0150709211377, + "c6": 35.117869697949956, + "c7": 1.6917210428082043 }, - "vertexSeeds": { - "c1": 8.303612079870703, - "c2": 9.175348718780487, - "c3": 9.766812785529615, - "c4": 8.342741154795611, - "c5": 10.097009183765039, - "c6": 8.248433193049625, - "c7": 9.14312339921321 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518728, + "c3": 12.367082755432271, + "c4": 9.893666204345816, + "c5": 7.4202496532593605, + "c6": 4.946833102172905, + "c7": 2.473416551086456 }, "rgb": [77, 76, 132] }, @@ -26547,23 +26547,23 @@ "year": 1686, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -5.7089336322450634, - "c2": 0.11511438373364058, - "c3": 11.640047310273964, - "c4": 9.683746877106024, - "c5": 10.494170082977789, - "c6": -7.241331798063342, - "c7": -14.949405150729081 + "points": { + "c1": 22.821316777693887, + "c2": 19.139508043347888, + "c3": 32.07296316393513, + "c4": 20.153798039918627, + "c5": -0.17592571447050176, + "c6": -10.149196970280176, + "c7": -23.657647096506537 }, - "vertexSeeds": { - "c1": 3.357352140673113, - "c2": 2.8604295525524908, - "c3": 3.213628437339978, - "c4": 3.1227491719558733, - "c5": 3.0836009124988624, - "c6": 2.5391179618051027, - "c7": 2.474925086270583 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033286, + "c4": 3.3287101248266295, + "c5": 2.496532593619973, + "c6": 1.664355062413316, + "c7": 0.8321775312066566 }, "rgb": [77, 76, 132] }, @@ -26574,23 +26574,23 @@ "year": 1686, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 35.69198458524778, - "c2": -20.449464087722873, - "c3": 9.836031459510991, - "c4": 42.24488814085393, - "c5": -25.358333184799505, - "c6": -5.245159586224474, - "c7": -11.614064379114893 + "points": { + "c1": -49.20563304811603, + "c2": -28.517669006213183, + "c3": -42.16940669419961, + "c4": 7.561398090900688, + "c5": 40.39453036922046, + "c6": -6.968067408306418, + "c7": -28.704503160689963 }, - "vertexSeeds": { - "c1": 9.658032560096798, - "c2": 9.893853476792085, - "c3": 9.989529489184536, - "c4": 9.464719141172043, - "c5": 9.82143365558434, - "c6": 9.395303229168645, - "c7": 10.238717208418684 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.646324549237178, + "c3": 12.205270457697644, + "c4": 9.76421636615811, + "c5": 7.323162274618589, + "c6": 4.882108183079055, + "c7": 2.4410540915395345 }, "rgb": [77, 76, 132] }, @@ -26601,23 +26601,23 @@ "year": 1686, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -26.8491861616981, - "c2": 22.94852048090388, - "c3": 13.378402952804834, - "c4": -18.358092872266646, - "c5": -19.614041472805866, - "c6": -14.262057650855352, - "c7": 14.990270893446684 + "points": { + "c1": -15.861786944411891, + "c2": 7.759439119026844, + "c3": -16.009238232220227, + "c4": -2.717259873558497, + "c5": -26.305398769784894, + "c6": -16.946623564199008, + "c7": 30.168589073268336 }, - "vertexSeeds": { - "c1": 3.34222266124504, - "c2": 3.3308858676477517, - "c3": 3.2262451834093886, - "c4": 3.745041666985289, - "c5": 3.4625567307933935, - "c6": 3.7012398833800435, - "c7": 3.231814716916877 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843271, + "c3": 4.507628294036062, + "c4": 3.606102635228847, + "c5": 2.7045769764216376, + "c6": 1.8030513176144236, + "c7": 0.9015256588072142 }, "rgb": [238, 201, 159] }, @@ -26628,23 +26628,23 @@ "year": 1686, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -4.121743140519456, - "c2": -11.936179227203924, - "c3": 22.33389678978291, - "c4": 1.8529575748834581, - "c5": -16.43345097719304, - "c6": -13.02242322545538, - "c7": -13.555116122895743 + "points": { + "c1": 3.728746848777039, + "c2": -17.068941720029557, + "c3": -18.396486883265563, + "c4": 0.44764786141239554, + "c5": -2.5529882102122983, + "c6": -25.50073241849891, + "c7": -26.872869146068187 }, - "vertexSeeds": { - "c1": 3.7910423783201725, - "c2": 3.845286135911083, - "c3": 3.7039013649665593, - "c4": 3.791964990478017, - "c5": 3.626013469702486, - "c6": 3.629664923846311, - "c7": 3.826455535966175 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.54785020804438, + "c3": 4.623208506703648, + "c4": 3.6985668053629155, + "c5": 2.7739251040221973, + "c6": 1.849283402681465, + "c7": 0.9246417013407325 }, "rgb": [222, 0, 59] }, @@ -26655,23 +26655,23 @@ "year": 1687, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": 33.07871820560161, - "c2": 27.872932373908277, - "c3": 3.905154781816563, - "c4": -3.212393918295419, - "c5": 4.356364572716252, - "c6": -42.40956294604335, - "c7": -37.68423528021685 + "points": { + "c1": 10.453609042525201, + "c2": -32.06583945238728, + "c3": 40.776614395158454, + "c4": 1.859459085443433, + "c5": -25.755892303887368, + "c6": 34.60391606768926, + "c7": -0.014761252562855987 }, - "vertexSeeds": { - "c1": 1.2890088905665407, - "c2": 1.5433892111149905, - "c3": 1.378866898030141, - "c4": 1.6124233132335537, - "c5": 1.370612937815812, - "c6": 1.383522839844429, - "c7": 1.387212031859924 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.3300970873786406, + "c3": 1.9417475728155351, + "c4": 1.5533980582524274, + "c5": 1.1650485436893203, + "c6": 0.7766990291262148, + "c7": 0.3883495145631074 }, "rgb": [222, 0, 59] }, @@ -26682,23 +26682,23 @@ "year": 1686, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -16.391223158162468, - "c2": 11.186559347487815, - "c3": -38.51174205975782, - "c4": -8.253155427721307, - "c5": 18.62373196699079, - "c6": 1.1635163577854755, - "c7": 9.664840440073412 + "points": { + "c1": -2.464354452652479, + "c2": -25.77696284188897, + "c3": 18.32207638019402, + "c4": 6.21044189165724, + "c5": 29.648398938135102, + "c6": 40.21091877228298, + "c7": 18.02381772081943 }, - "vertexSeeds": { - "c1": 6.425128159559686, - "c2": 6.849251172889604, - "c3": 6.474907085000998, - "c4": 7.012787424109654, - "c5": 6.818355113376923, - "c6": 6.4265021551587, - "c7": 6.958172872217441 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841883, + "c3": 8.529819694868234, + "c4": 6.823855755894584, + "c5": 5.117891816920935, + "c6": 3.411927877947299, + "c7": 1.7059639389736494 }, "rgb": [77, 76, 132] }, @@ -26709,23 +26709,23 @@ "year": 1687, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": -17.940264825570544, - "c2": -18.735532542743147, - "c3": -8.000490813858825, - "c4": 27.228855604596966, - "c5": 18.970409667229227, - "c6": -17.2548099395214, - "c7": 42.341751332917674 + "points": { + "c1": -18.765841089851357, + "c2": 4.876280724217153, + "c3": 48.43586006285425, + "c4": -26.652546360411687, + "c5": -34.82400581069475, + "c6": -0.6214651846675849, + "c7": -1.984182375767574 }, - "vertexSeeds": { - "c1": 10.127494090565243, - "c2": 9.535881028644608, - "c3": 9.40816250430845, - "c4": 9.722663813541851, - "c5": 9.894337391404111, - "c6": 9.913043763560136, - "c7": 9.707629949641642 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [58, 15, 49] }, @@ -26736,23 +26736,23 @@ "year": 1686, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 39.11194045016002, - "c2": 25.390333231806423, - "c3": -33.56858637497914, - "c4": -37.656202605249156, - "c5": 0.9647060852037228, - "c6": -25.55443911005578, - "c7": -13.245004912602852 + "points": { + "c1": -39.488446582420885, + "c2": 17.219039716167295, + "c3": 40.901529149660576, + "c4": 10.717003262569847, + "c5": -34.4964010232279, + "c6": 10.231543451255256, + "c7": -29.748049544396146 }, - "vertexSeeds": { - "c1": 7.441638531794141, - "c2": 6.029694061692453, - "c3": 7.235189960940189, - "c4": 6.070094796032675, - "c5": 6.321320658092193, - "c6": 7.6394321086295465, - "c7": 7.174562169330873 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249655, + "c3": 9.338881183541375, + "c4": 7.471104946833102, + "c5": 5.603328710124828, + "c6": 3.7355524734165546, + "c7": 1.8677762367082733 }, "rgb": [238, 201, 159] }, @@ -26763,23 +26763,23 @@ "year": 1687, "resistanceReported": false, "duration": 46483200, - "curveSeeds": { - "c1": -32.09305349876379, - "c2": 25.773187986508013, - "c3": -10.501203593433416, - "c4": 10.02085515122996, - "c5": -15.103919379367916, - "c6": -10.874360414224547, - "c7": -42.191846506099694 + "points": { + "c1": 61.83111148946663, + "c2": 38.80075829431363, + "c3": 45.61534333249882, + "c4": -45.92504065622574, + "c5": -4.115150397708128, + "c6": 23.364959242161824, + "c7": 41.94076757434245 }, - "vertexSeeds": { - "c1": 10.24464474256646, - "c2": 8.771808548327597, - "c3": 8.221949258464864, - "c4": 9.24378019553925, - "c5": 8.294863367335683, - "c6": 9.632576037516104, - "c7": 9.593728116081044 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.00693481276006, + "c3": 12.505779010633377, + "c4": 10.004623208506704, + "c5": 7.503467406380021, + "c6": 5.002311604253348, + "c7": 2.501155802126674 }, "rgb": [77, 76, 132] }, @@ -26790,23 +26790,23 @@ "year": 1687, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 32.037473952056985, - "c2": 23.135316445159333, - "c3": -7.451905632259127, - "c4": 28.787316512257405, - "c5": 43.2027209050333, - "c6": 42.09790875306062, - "c7": -27.798124472503247 + "points": { + "c1": -45.02761390453606, + "c2": 19.898172930319703, + "c3": 33.0719217466076, + "c4": -29.175069577422043, + "c5": 44.33887288370579, + "c6": 8.911711984913524, + "c7": -33.179253712287604 }, - "vertexSeeds": { - "c1": 9.442556011255965, - "c2": 10.066957669692648, - "c3": 9.02478167217479, - "c4": 8.810385044721931, - "c5": 9.356742676068821, - "c6": 9.541661562423387, - "c7": 9.668994991516998 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679617, + "c3": 12.459546925566354, + "c4": 9.967637540453078, + "c5": 7.4757281553398025, + "c6": 4.983818770226539, + "c7": 2.491909385113275 }, "rgb": [222, 0, 59] }, @@ -26817,23 +26817,23 @@ "year": 1687, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 1.738874887908338, - "c2": -29.489612518263186, - "c3": 15.061491511154045, - "c4": 11.842183707058489, - "c5": -6.249564271936784, - "c6": 24.188298891743173, - "c7": -27.242011631180446 + "points": { + "c1": -23.966719139958325, + "c2": 29.062423725258867, + "c3": -40.27980511264771, + "c4": -8.506956283617683, + "c5": 26.88508921495844, + "c6": 45.64147024168524, + "c7": -16.956699159250604 }, - "vertexSeeds": { - "c1": 8.364093023466435, - "c2": 8.475366249665068, - "c3": 7.849792905425019, - "c4": 8.671644819075961, - "c5": 8.326230912639293, - "c6": 8.81439679190682, - "c7": 8.704915877196221 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [222, 0, 59] }, @@ -26844,23 +26844,23 @@ "year": 1687, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 37.8079201274208, - "c2": 14.781294229901114, - "c3": 13.472015354090281, - "c4": 0.2420580188308037, - "c5": 23.372292115438952, - "c6": 11.940320334452167, - "c7": -23.578397828530612 + "points": { + "c1": 36.66473120291272, + "c2": -41.06196168169243, + "c3": -14.545033775225136, + "c4": 15.162334998087239, + "c5": 39.20756316299985, + "c6": -11.535807105141181, + "c7": 22.851704921036315 }, - "vertexSeeds": { - "c1": 6.7563993025926745, - "c2": 7.404514180074251, - "c3": 7.078099705401703, - "c4": 6.210220306537862, - "c5": 6.981280394161679, - "c6": 7.408667044588977, - "c7": 7.747326821378976 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [238, 201, 159] }, @@ -26871,23 +26871,23 @@ "year": 1687, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -11.799760100962146, - "c2": 32.382617257226094, - "c3": -24.420208470837068, - "c4": 41.7668771943003, - "c5": -15.643037901386386, - "c6": 14.713833914491481, - "c7": -9.004329895282638 + "points": { + "c1": 47.4035117007488, + "c2": -16.734238191829455, + "c3": -26.35751053867194, + "c4": -20.981051945253498, + "c5": -41.93892947374719, + "c6": 36.28837297530823, + "c7": 51.880776155689055 }, - "vertexSeeds": { - "c1": 1.5528580266113439, - "c2": 1.6324222625751315, - "c3": 1.7902185483894093, - "c4": 1.6015983432140988, - "c5": 1.6599847231593825, - "c6": 1.8153849269637448, - "c7": 1.744630459727071 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.635228848821082, + "c3": 2.196024040684235, + "c4": 1.756819232547388, + "c5": 1.317614424410541, + "c6": 0.878409616273694, + "c7": 0.439204808136847 }, "rgb": [222, 0, 59] }, @@ -26898,23 +26898,23 @@ "year": 1687, "resistanceReported": false, "duration": 44841600, - "curveSeeds": { - "c1": -46.321836345842726, - "c2": 38.054566453458264, - "c3": 57.1352249756397, - "c4": 8.054521676230024, - "c5": 6.141716992253691, - "c6": 32.1620755538475, - "c7": -17.046048097248672 + "points": { + "c1": 40.791005594511816, + "c2": 34.8024542797139, + "c3": -15.411289860605983, + "c4": 25.663843117771066, + "c5": 13.558452454262138, + "c6": -60.58418032309717, + "c7": 56.70401968529471 }, - "vertexSeeds": { - "c1": 4.710489945805101, - "c2": 5.200473502210832, - "c3": 5.526930773303599, - "c4": 5.258802534198608, - "c5": 5.4944505697509864, - "c6": 5.751957255192067, - "c7": 5.391398190103348 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [222, 0, 59] }, @@ -26925,23 +26925,23 @@ "year": 1687, "resistanceReported": false, "duration": 50371200, - "curveSeeds": { - "c1": 56.806694842691044, - "c2": 21.570659485322025, - "c3": 24.151600228420946, - "c4": 37.4849488754175, - "c5": 50.310390803224635, - "c6": -39.43391386266123, - "c7": 15.711393760192621 + "points": { + "c1": -57.417414976523006, + "c2": -6.714536653766011, + "c3": -17.323557469163816, + "c4": 43.02523542069774, + "c5": -35.79557792572187, + "c6": 49.528435745589775, + "c7": -45.66588978337853 }, - "vertexSeeds": { - "c1": 2.6674436520541445, - "c2": 3.055921114276206, - "c3": 2.919454214531265, - "c4": 2.8881776894238516, - "c5": 3.243605091268657, - "c6": 3.2050499735670224, - "c7": 3.1791701881060233 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.7988904299583925, + "c3": 3.9990753582986587, + "c4": 3.1992602866389284, + "c5": 2.3994452149791945, + "c6": 1.5996301433194642, + "c7": 0.799815071659734 }, "rgb": [238, 201, 159] }, @@ -26952,23 +26952,23 @@ "year": 1686, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 16.07637022926061, - "c2": 11.384927409091787, - "c3": -1.7366385383752956, - "c4": -8.751374459282642, - "c5": 0.23334356119616118, - "c6": 7.965284861231083, - "c7": 14.894007335701637 + "points": { + "c1": 20.270717000540913, + "c2": 11.155715680316192, + "c3": -3.3102450738884635, + "c4": -0.059899720896492425, + "c5": -20.460654180218363, + "c6": 11.379990977232893, + "c7": 6.60831248336482 }, - "vertexSeeds": { - "c1": 1.4715097793388798, - "c2": 1.4202023245001014, - "c3": 1.5855060022137173, - "c4": 1.4261678245118852, - "c5": 1.4195988375843387, - "c6": 1.5215336261114112, - "c7": 1.419725136207686 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820163, + "c4": 1.5349052242256112, + "c5": 1.1511789181692107, + "c6": 0.7674526121128056, + "c7": 0.38372630605640495 }, "rgb": [58, 15, 49] }, @@ -26979,23 +26979,23 @@ "year": 1686, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 37.18658435521806, - "c2": 7.107402624664715, - "c3": 37.096763851900064, - "c4": -13.004002195444595, - "c5": 28.581310794580858, - "c6": 5.948059106096835, - "c7": -37.2666645938806 + "points": { + "c1": -38.01438657081675, + "c2": 34.97339565821798, + "c3": 13.355755581957382, + "c4": 3.6260510735730733, + "c5": -0.7070220541052308, + "c6": 4.657557362756869, + "c7": 41.13570724727525 }, - "vertexSeeds": { - "c1": 11.315526504781753, - "c2": 10.916320796041234, - "c3": 11.361198646595401, - "c4": 11.32798883908061, - "c5": 11.316653377722444, - "c6": 10.970953482438729, - "c7": 10.753111965819794 + "offsets": { + "c1": 18.96440129449838, + "c2": 16.25520110957005, + "c3": 13.546000924641719, + "c4": 10.83680073971339, + "c5": 8.12760055478499, + "c6": 5.418400369856661, + "c7": 2.7092001849283305 }, "rgb": [222, 0, 59] }, @@ -27006,23 +27006,23 @@ "year": 1686, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -0.8786872665275283, - "c2": -28.82045756287738, - "c3": -19.27967128164923, - "c4": -6.362939190666218, - "c5": -23.424795591606188, - "c6": -3.016041443888472, - "c7": 21.888791243426724 + "points": { + "c1": -32.716493249444405, + "c2": 33.045196497993345, + "c3": 19.18380564332714, + "c4": 1.2007472410729392, + "c5": 7.848077616055463, + "c6": -10.715556411141797, + "c7": 27.425850217430764 }, - "vertexSeeds": { - "c1": 7.33998763688001, - "c2": 8.966977991291994, - "c3": 8.647435008652947, - "c4": 8.073244082353877, - "c5": 7.461170848004107, - "c6": 6.117685614506014, - "c7": 6.1152690203519615 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.45353675450763, + "c3": 11.21128062875636, + "c4": 8.969024503005087, + "c5": 6.726768377253817, + "c6": 4.484512251502546, + "c7": 2.242256125751271 }, "rgb": [58, 15, 49] }, @@ -27033,23 +27033,23 @@ "year": 1686, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -18.25148039576314, - "c2": -18.403965756081178, - "c3": 7.365812478436787, - "c4": -29.10941152788519, - "c5": 27.678601362820487, - "c6": -2.707554952938157, - "c7": -28.369254310811197 + "points": { + "c1": -13.652858732409577, + "c2": 27.068729432355312, + "c3": 13.388955671904043, + "c4": -2.9013432509325128, + "c5": 14.323876397864737, + "c6": -29.043893718188308, + "c7": 0.3792665887180249 }, - "vertexSeeds": { - "c1": 9.302732857453448, - "c2": 9.603300690959202, - "c3": 9.466563842563223, - "c4": 9.581059032357555, - "c5": 9.63402408862268, - "c6": 9.80237186479413, - "c7": 9.329865962882476 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.09153952843272, + "c3": 11.74294960702728, + "c4": 9.394359685621813, + "c5": 7.045769764216371, + "c6": 4.697179842810907, + "c7": 2.3485899214054426 }, "rgb": [77, 76, 132] }, @@ -27060,23 +27060,23 @@ "year": 1686, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 33.34688221591527, - "c2": 14.872832289715014, - "c3": 27.286316419940746, - "c4": 4.250773932180351, - "c5": -3.9805282142907643, - "c6": 31.823195213239146, - "c7": 15.141454378609062 + "points": { + "c1": -15.363541905123231, + "c2": 12.057770886460801, + "c3": 5.896479607175252, + "c4": 25.541017923958563, + "c5": -4.875318909342965, + "c6": 36.69263304952496, + "c7": -14.479773703283726 }, - "vertexSeeds": { - "c1": 9.521746362374666, - "c2": 8.942849818740969, - "c3": 8.010078932320313, - "c4": 8.400829429089942, - "c5": 9.67170829876384, - "c6": 7.745705974580324, - "c7": 7.719368821820822 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110953, + "c3": 11.558021266759134, + "c4": 9.246417013407305, + "c5": 6.934812760055476, + "c6": 4.623208506703657, + "c7": 2.3116042533518284 }, "rgb": [77, 76, 132] }, @@ -27087,23 +27087,23 @@ "year": 1686, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -11.370296134221887, - "c2": -23.43974958452647, - "c3": -6.58515773275818, - "c4": 2.2006997819009086, - "c5": -15.165405055343207, - "c6": 0.9175655990517662, - "c7": -3.6067898640352922 + "points": { + "c1": -10.67730481779676, + "c2": 11.976684225545299, + "c3": -19.321208161983996, + "c4": 4.878175698911324, + "c5": -1.9970032761135172, + "c6": 3.3739189337743305, + "c7": 1.958760930616787 }, - "vertexSeeds": { - "c1": 1.8429967137916476, - "c2": 1.873558918545992, - "c3": 1.9038348071401425, - "c4": 1.804367765707197, - "c5": 1.7589185716747493, - "c6": 2.016079073851768, - "c7": 1.9670902135566652 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.427184466019417, + "c4": 1.941747572815535, + "c5": 1.4563106796116496, + "c6": 0.9708737864077674, + "c7": 0.4854368932038821 }, "rgb": [77, 76, 132] }, @@ -27114,23 +27114,23 @@ "year": 1686, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 6.442032582483439, - "c2": 5.640717816510932, - "c3": 12.491153771407863, - "c4": -19.010565166026314, - "c5": -1.1277199740345694, - "c6": 23.13960948275061, - "c7": -28.80433837419665 + "points": { + "c1": 17.692528327434356, + "c2": 29.770290329098227, + "c3": 30.52868909173763, + "c4": 5.453054507264117, + "c5": 14.921801099648757, + "c6": 12.357725912833875, + "c7": -7.873701025039242 }, - "vertexSeeds": { - "c1": 3.775621821259199, - "c2": 3.8386229621294836, - "c3": 4.159431383996816, - "c4": 3.860808831792632, - "c5": 3.8105451907574746, - "c6": 3.8993373409165955, - "c7": 3.9164019189937807 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728156, + "c3": 5.016181229773465, + "c4": 4.012944983818774, + "c5": 3.009708737864082, + "c6": 2.0064724919093826, + "c7": 1.0032362459546913 }, "rgb": [86, 146, 138] }, @@ -27141,23 +27141,23 @@ "year": 1686, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 13.070100067209331, - "c2": 11.860616699613686, - "c3": 31.936088821265052, - "c4": 6.324530282357607, - "c5": 20.53974928308265, - "c6": 6.764386653025554, - "c7": -20.35662103545306 + "points": { + "c1": 1.1857247887465334, + "c2": -10.412077762686756, + "c3": -28.703846552431344, + "c4": 0.6018812375166007, + "c5": 17.53735306153463, + "c6": -19.29743723631005, + "c7": 16.645746275106667 }, - "vertexSeeds": { - "c1": 5.916947218870174, - "c2": 6.381153386086877, - "c3": 6.367685077509372, - "c4": 5.82353232956475, - "c5": 6.503559626962189, - "c6": 6.501813471026832, - "c7": 5.983125089567547 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876561, + "c3": 7.9750346740637985, + "c4": 6.3800277392510445, + "c5": 4.785020804438283, + "c6": 3.1900138696255222, + "c7": 1.5950069348127611 }, "rgb": [58, 15, 49] }, @@ -27168,23 +27168,23 @@ "year": 1687, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 35.321261151754555, - "c2": -23.680007750710633, - "c3": 33.85987396284234, - "c4": -0.3733774464838788, - "c5": 17.800328627871394, - "c6": -2.9417865924733775, - "c7": -41.94138866032144 + "points": { + "c1": 23.67834287579265, + "c2": -29.482726421657, + "c3": 10.578328252884994, + "c4": 20.123069581190535, + "c5": -36.289929893895916, + "c6": 22.37125563106163, + "c7": 7.98433705480582 }, - "vertexSeeds": { - "c1": 8.262699782991138, - "c2": 9.432487355461632, - "c3": 9.244492608221048, - "c4": 8.412720274083124, - "c5": 9.403812519073572, - "c6": 9.184705387059198, - "c7": 8.825307858743416 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668515, + "c3": 11.303744798890431, + "c4": 9.042995839112344, + "c5": 6.782246879334258, + "c6": 4.521497919556172, + "c7": 2.260748959778086 }, "rgb": [77, 76, 132] }, @@ -27195,23 +27195,23 @@ "year": 1688, "resistanceReported": false, "duration": 60393600, - "curveSeeds": { - "c1": -24.689478628390788, - "c2": -64.03779146705428, - "c3": -32.023185384260934, - "c4": 75.68624325650661, - "c5": 57.36244107418979, - "c6": -67.63044880601026, - "c7": -34.54501141748536 + "points": { + "c1": -27.888532797782197, + "c2": 58.64956098983312, + "c3": 54.14436846325968, + "c4": -29.02139188627772, + "c5": 33.363273885330116, + "c6": 55.93781365782472, + "c7": 37.850362930563605 }, - "vertexSeeds": { - "c1": 7.8531506479855, - "c2": 8.337030625574018, - "c3": 9.037699092857192, - "c4": 7.764280237508755, - "c5": 7.925141334527011, - "c6": 8.088772272321775, - "c7": 8.13015714900769 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [222, 0, 59] }, @@ -27222,23 +27222,23 @@ "year": 1686, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 16.255544536783034, - "c2": -25.186793379504795, - "c3": 27.044144668921973, - "c4": 12.567269952986095, - "c5": 1.65887184232378, - "c6": 21.838746839439885, - "c7": -15.574205838137047 + "points": { + "c1": 16.915451972759236, + "c2": -29.792345060300306, + "c3": 21.276384517360725, + "c4": -7.026774755062881, + "c5": 20.440410469586787, + "c6": 22.600273845160125, + "c7": -18.582504232570827 }, - "vertexSeeds": { - "c1": 1.3963965550943394, - "c2": 1.3249160791556942, - "c3": 1.3564083119723993, - "c4": 1.342653258528313, - "c5": 1.4630570706985966, - "c6": 1.314559469894866, - "c7": 1.3984762148730525 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097086, + "c3": 1.7799352750809079, + "c4": 1.4239482200647253, + "c5": 1.067961165048543, + "c6": 0.7119741100323648, + "c7": 0.3559870550161824 }, "rgb": [222, 0, 59] }, @@ -27249,23 +27249,23 @@ "year": 1686, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -18.068504323914475, - "c2": 8.44781991681021, - "c3": -3.8349910845357478, - "c4": -19.485466767936757, - "c5": 15.462615003472628, - "c6": -2.26756767217098, - "c7": -17.05477386843599 + "points": { + "c1": -19.601359569048245, + "c2": -3.4823787697777213, + "c3": 7.714005214778048, + "c4": 8.769878420300557, + "c5": -3.467740962517798, + "c6": 19.651286784052736, + "c7": 5.937790250483822 }, - "vertexSeeds": { - "c1": 2.0327861614867935, - "c2": 2.1828996569724266, - "c3": 2.2035667724142947, - "c4": 2.1171080287007387, - "c5": 1.9906468075645483, - "c6": 2.1331129241677433, - "c7": 2.0838572924547782 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.2454923717059656, + "c3": 2.7045769764216363, + "c4": 2.1636615811373106, + "c5": 1.6227461858529808, + "c6": 1.0818307905686553, + "c7": 0.5409153952843295 }, "rgb": [238, 201, 159] }, @@ -27276,23 +27276,23 @@ "year": 1687, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 25.818639574565275, - "c2": -15.77148062964222, - "c3": -34.6909663052908, - "c4": 26.029499647892045, - "c5": 44.265494996712924, - "c6": -32.250975064077565, - "c7": 1.091120129477595 + "points": { + "c1": -15.612120195031835, + "c2": 4.520024240824917, + "c3": 35.51870362713009, + "c4": 13.136318085553334, + "c5": 19.22634883717948, + "c6": 36.75588022284274, + "c7": 21.57407318650727 }, - "vertexSeeds": { - "c1": 9.393528549057596, - "c2": 9.848450274082937, - "c3": 8.878138567475549, - "c4": 10.016238561067375, - "c5": 9.557975211840986, - "c6": 9.32350098487458, - "c7": 10.033547620707452 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679617, + "c3": 12.459546925566354, + "c4": 9.967637540453078, + "c5": 7.4757281553398025, + "c6": 4.983818770226539, + "c7": 2.491909385113275 }, "rgb": [238, 201, 159] }, @@ -27303,23 +27303,23 @@ "year": 1687, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -8.868206621073124, - "c2": -35.74298206938776, - "c3": -5.191590245953687, - "c4": 20.278410186243867, - "c5": 34.11994117522219, - "c6": -19.385413314331576, - "c7": -34.90666372044873 + "points": { + "c1": 37.85499242685753, + "c2": -23.92115229087571, + "c3": -34.79752851868, + "c4": 19.29642909055231, + "c5": 24.694769160183462, + "c6": 12.941076848062302, + "c7": -32.325649969235364 }, - "vertexSeeds": { - "c1": 6.694956593377638, - "c2": 6.8792893318640935, - "c3": 7.309412458717147, - "c4": 7.285932879535576, - "c5": 6.574062919008193, - "c6": 7.382527864565652, - "c7": 6.888519463302359 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.7628294036061, + "c3": 8.969024503005087, + "c4": 7.175219602404067, + "c5": 5.381414701803054, + "c6": 3.5876098012020337, + "c7": 1.793804900601013 }, "rgb": [58, 15, 49] }, @@ -27330,23 +27330,23 @@ "year": 1687, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 24.83493809100524, - "c2": -12.14699262713965, - "c3": 0.07634470360748224, - "c4": 6.166052064916904, - "c5": 17.620474778935623, - "c6": 1.8087483449465438, - "c7": -19.372563447765582 + "points": { + "c1": -22.03038352037233, + "c2": -15.833260451916459, + "c3": 35.96423522111874, + "c4": -42.2781869423262, + "c5": -25.110972707069255, + "c6": 7.683572722739349, + "c7": 9.167454030268921 }, - "vertexSeeds": { - "c1": 5.875644190811462, - "c2": 6.206434510232369, - "c3": 5.791760819189425, - "c4": 6.444240164976646, - "c5": 6.432759054785714, - "c6": 6.0665599580449046, - "c7": 6.883594157780507 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066578, + "c4": 6.657420249653254, + "c5": 4.9930651872399405, + "c6": 3.328710124826627, + "c7": 1.6643550624133134 }, "rgb": [86, 146, 138] }, @@ -27357,23 +27357,23 @@ "year": 1687, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 35.07570957631573, - "c2": -0.5680601234596878, - "c3": 20.48681199395761, - "c4": 16.672600528619853, - "c5": -13.299480656749047, - "c6": -14.137055720844131, - "c7": -21.43780249431566 + "points": { + "c1": 6.450138930615708, + "c2": 21.29147249314626, + "c3": -36.64776415327758, + "c4": -22.777210881431635, + "c5": 29.20759294671967, + "c6": 4.440434073276684, + "c7": 10.85489906022778 }, - "vertexSeeds": { - "c1": 5.868273147438539, - "c2": 6.141466516339194, - "c3": 6.187468673195245, - "c4": 5.8406431776502385, - "c5": 6.004005704475158, - "c6": 5.8030462216319965, - "c7": 5.675270656765901 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031894, + "c3": 7.48959778085992, + "c4": 5.99167822468793, + "c5": 4.493758668515954, + "c6": 2.995839112343965, + "c7": 1.4979195561719896 }, "rgb": [222, 0, 59] }, @@ -27384,23 +27384,23 @@ "year": 1687, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -0.5811888424935816, - "c2": -0.4702960735304913, - "c3": -29.602063014380164, - "c4": 14.04914697229848, - "c5": 19.363451676914785, - "c6": 11.19183225953956, - "c7": -19.826974042300236 + "points": { + "c1": -19.188783830508388, + "c2": -22.23387288955404, + "c3": -6.120398975778556, + "c4": -28.817925221463845, + "c5": 23.504566243730423, + "c6": -37.12159458860061, + "c7": 3.2486994379042287 }, - "vertexSeeds": { - "c1": 6.470808579379283, - "c2": 5.772273662865777, - "c3": 6.020210746276364, - "c4": 6.872954858036917, - "c5": 5.488916814104678, - "c6": 6.046814680296373, - "c7": 5.722777965890186 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334723, + "c4": 6.805362921867775, + "c5": 5.104022191400835, + "c6": 3.4026814609338873, + "c7": 1.7013407304669397 }, "rgb": [77, 76, 132] }, @@ -27411,23 +27411,23 @@ "year": 1687, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 14.816049275747005, - "c2": 28.56821441822907, - "c3": -24.033848800438065, - "c4": -19.88876578396784, - "c5": 13.618314095856242, - "c6": -17.63834745888883, - "c7": -7.721107105488784 + "points": { + "c1": -20.413549330429962, + "c2": 24.277940283931734, + "c3": -8.11404991668934, + "c4": -12.224177890807603, + "c5": 0.2696493460186318, + "c6": -11.893045644318455, + "c7": -4.362405172741973 }, - "vertexSeeds": { - "c1": 2.9705235376501813, - "c2": 2.5665882932951307, - "c3": 2.462706247968877, - "c4": 2.492766648203499, - "c5": 2.3320745444998114, - "c6": 2.55764675801638, - "c7": 2.833699683659459 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194173, + "c3": 3.5598705501618126, + "c4": 2.847896440129449, + "c5": 2.135922330097088, + "c6": 1.4239482200647244, + "c7": 0.7119741100323622 }, "rgb": [238, 201, 159] }, @@ -27438,23 +27438,23 @@ "year": 1687, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -7.118591774306665, - "c2": 12.498241464786943, - "c3": 42.55315675650602, - "c4": -30.51519654515715, - "c5": -6.722440522666766, - "c6": 21.475161441337058, - "c7": -41.29412069960135 + "points": { + "c1": -37.990260319484236, + "c2": -42.113048830101015, + "c3": 43.85006930023179, + "c4": -9.19819467798039, + "c5": 21.596413714128012, + "c6": 0.39855436592826976, + "c7": -0.8298940153209671 }, - "vertexSeeds": { - "c1": 8.362791807769574, - "c2": 8.000470477954067, - "c3": 8.183597651295342, - "c4": 8.399025072858555, - "c5": 8.64969875180414, - "c6": 8.210326793428433, - "c7": 9.039257789868067 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024961, + "c3": 10.93388811835414, + "c4": 8.747110494683307, + "c5": 6.560332871012488, + "c6": 4.3735552473416535, + "c7": 2.18677762367082 }, "rgb": [77, 76, 132] }, @@ -27465,23 +27465,23 @@ "year": 1686, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 6.470435835553818, - "c2": -4.324230594218886, - "c3": 8.147994237633817, - "c4": 4.59542921934386, - "c5": 12.93593162453221, - "c6": 19.04778291671544, - "c7": 6.605693814566045 + "points": { + "c1": -13.425962665491332, + "c2": -11.111407497087578, + "c3": -0.30422023585692415, + "c4": -2.815828206363946, + "c5": -15.692762506923895, + "c6": -14.002607436285707, + "c7": -14.930183757555893 }, - "vertexSeeds": { - "c1": 2.4818796194600643, - "c2": 2.3137235679800208, - "c3": 2.663780935105345, - "c4": 2.394967667718859, - "c5": 2.2623795522598606, - "c6": 2.561826579583484, - "c7": 2.7343902699585234 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.467406380027738, + "c4": 2.773925104022191, + "c5": 2.080443828016644, + "c6": 1.3869625520110955, + "c7": 0.6934812760055471 }, "rgb": [77, 76, 132] }, @@ -27492,23 +27492,23 @@ "year": 1687, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 5.099093842740665, - "c2": -24.66112426042923, - "c3": -32.09537073272778, - "c4": 29.583125040086564, - "c5": -27.720088359431443, - "c6": -21.250826314922303, - "c7": 33.63540254581317 + "points": { + "c1": -38.49296499518229, + "c2": 43.145492936291255, + "c3": -1.7295030544466385, + "c4": 42.58399489253866, + "c5": -3.9059797761940658, + "c6": 16.399520759513507, + "c7": 27.09857754239048 }, - "vertexSeeds": { - "c1": 10.069479782918027, - "c2": 9.855454863306779, - "c3": 9.751734390911087, - "c4": 10.062525607605005, - "c5": 9.26765796620812, - "c6": 8.410570988466171, - "c7": 8.67933087658675 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116504, + "c3": 12.135922330097088, + "c4": 9.70873786407767, + "c5": 7.281553398058252, + "c6": 4.854368932038835, + "c7": 2.4271844660194173 }, "rgb": [77, 76, 132] }, @@ -27519,23 +27519,23 @@ "year": 1687, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 34.539907101141274, - "c2": 8.730632723444046, - "c3": 42.08487467456802, - "c4": -28.497968296780282, - "c5": 17.701402696981148, - "c6": -19.26270508755587, - "c7": 37.25985511520006 + "points": { + "c1": -26.68391062270994, + "c2": 44.45377033780094, + "c3": 13.64145660036074, + "c4": -14.888971111529912, + "c5": -44.72010319117316, + "c6": 1.9859761802987492, + "c7": 39.23776078613658 }, - "vertexSeeds": { - "c1": 5.292870372792794, - "c2": 4.751712146032028, - "c3": 4.703080786791092, - "c4": 5.405746565773474, - "c5": 5.171966253387121, - "c6": 4.976334177282092, - "c7": 5.289104576346407 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302363, + "c3": 6.495607951918631, + "c4": 5.19648636153491, + "c5": 3.8973647711511816, + "c6": 2.598243180767455, + "c7": 1.2991215903837274 }, "rgb": [77, 76, 132] }, @@ -27546,23 +27546,23 @@ "year": 1687, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -21.770564151861727, - "c2": -1.926855404591116, - "c3": -16.0889624858539, - "c4": -28.426509452321774, - "c5": 15.042572695067754, - "c6": -27.30128560896061, - "c7": -10.321258326593238 + "points": { + "c1": -15.669609817117855, + "c2": -23.30668841079452, + "c3": -8.694310905835085, + "c4": -12.864042221115582, + "c5": 14.96108380426572, + "c6": -4.0063962598392955, + "c7": 34.25455071030811 }, - "vertexSeeds": { - "c1": 5.183201314257674, - "c2": 4.9581684531436325, - "c3": 5.037662369003776, - "c4": 4.77190789732357, - "c5": 4.710677372723805, - "c6": 4.887516903733783, - "c7": 4.9376145356700185 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302355, + "c3": 6.495607951918625, + "c4": 5.196486361534908, + "c5": 3.8973647711511776, + "c6": 2.5982431807674478, + "c7": 1.2991215903837239 }, "rgb": [238, 201, 159] }, @@ -27573,23 +27573,23 @@ "year": 1687, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -4.16445039146619, - "c2": 15.065312807507397, - "c3": -36.06136539451798, - "c4": 14.009097905576816, - "c5": -23.207522763057824, - "c6": 16.680974779291695, - "c7": 10.084219877858978 + "points": { + "c1": -31.47355192691196, + "c2": -27.137186675255283, + "c3": 19.7565675247904, + "c4": -14.483407112317963, + "c5": -22.454772184555054, + "c6": -10.032591253962355, + "c7": 2.341333121088539 }, - "vertexSeeds": { - "c1": 10.233025076216851, - "c2": 9.871464898927984, - "c3": 9.882143902173212, - "c4": 10.635728401869349, - "c5": 10.365404855357177, - "c6": 10.29101695907531, - "c7": 10.022212341748244 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122051, + "c3": 12.713823393435042, + "c4": 10.171058714748034, + "c5": 7.628294036061026, + "c6": 5.085529357374017, + "c7": 2.5427646786870084 }, "rgb": [58, 15, 49] }, @@ -27600,23 +27600,23 @@ "year": 1687, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -15.622973461974741, - "c2": 1.5789487576065255, - "c3": 6.295027798619813, - "c4": -19.064328201342356, - "c5": -1.5119250657500238, - "c6": 19.863327247219686, - "c7": -21.421524342573875 + "points": { + "c1": 1.9359702011281748, + "c2": -16.94647477681032, + "c3": 17.41582542673799, + "c4": -26.137895721417387, + "c5": -21.506990873963638, + "c6": 24.681693525971973, + "c7": 4.601275904901218 }, - "vertexSeeds": { - "c1": 10.046129893214918, - "c2": 8.861666659891558, - "c3": 9.58348281695177, - "c4": 9.51939841966353, - "c5": 9.315600611163593, - "c6": 9.186624128253264, - "c7": 9.548051437068372 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116513, + "c3": 12.13592233009709, + "c4": 9.708737864077667, + "c5": 7.281553398058256, + "c6": 4.854368932038834, + "c7": 2.4271844660194106 }, "rgb": [222, 0, 59] }, @@ -27627,23 +27627,23 @@ "year": 1687, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -24.195529685322498, - "c2": -26.628670059694656, - "c3": 8.396323313588294, - "c4": -15.261975701304825, - "c5": 19.932328402643538, - "c6": -16.07779182172084, - "c7": 16.80537671855532 + "points": { + "c1": -5.8127998878793115, + "c2": 21.485657234113916, + "c3": 7.173889012056556, + "c4": -3.862558029466175, + "c5": 17.269666716048818, + "c6": 2.9059323139672983, + "c7": 15.40364061134224 }, - "vertexSeeds": { - "c1": 6.715059887271671, - "c2": 6.746293864415362, - "c3": 6.869702983927368, - "c4": 6.9519714742717476, - "c5": 6.8073807659514065, - "c6": 6.948127470579409, - "c7": 6.741405149514475 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447987, + "c3": 8.321775312066581, + "c4": 6.6574202496532475, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624132895 }, "rgb": [86, 146, 138] }, @@ -27654,23 +27654,23 @@ "year": 1686, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -15.242134031313473, - "c2": 10.82754485586566, - "c3": 14.576890226838902, - "c4": -12.430571398371551, - "c5": -9.97718939810791, - "c6": 19.838863595884614, - "c7": 15.754961337396868 + "points": { + "c1": 0.8692951080618059, + "c2": 19.183982284959537, + "c3": 0.7087298353272402, + "c4": 17.143063559265993, + "c5": -2.782436611559845, + "c6": 22.06623889733981, + "c7": -17.249455516059324 }, - "vertexSeeds": { - "c1": 4.82702283140006, - "c2": 4.187272132857914, - "c3": 4.406304826734511, - "c4": 3.8908079617141715, - "c5": 4.310492270992211, - "c6": 4.588357174582198, - "c7": 3.870902048711181 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [77, 76, 132] }, @@ -27681,23 +27681,23 @@ "year": 1687, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 13.406146832210332, - "c2": -4.820756238173718, - "c3": -23.072386389745798, - "c4": -15.666481851513963, - "c5": -13.086223260265989, - "c6": 20.386813271903016, - "c7": -4.615805884327074 + "points": { + "c1": 14.61944425046282, + "c2": -25.93824675443933, + "c3": -8.994504971571452, + "c4": 12.230218834995071, + "c5": 5.789734269940368, + "c6": -2.895864095039915, + "c7": 13.17111614090134 }, - "vertexSeeds": { - "c1": 9.663863639719063, - "c2": 9.935606606469419, - "c3": 9.84739254761893, - "c4": 9.900000325096931, - "c5": 10.118596853226437, - "c6": 9.429466738320688, - "c7": 10.011471364295344 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [238, 201, 159] }, @@ -27708,23 +27708,23 @@ "year": 1687, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 20.310124801398594, - "c2": 2.1405517580750626, - "c3": 14.395921673919034, - "c4": -12.511027334782344, - "c5": 16.679647700016154, - "c6": 22.815670682340723, - "c7": 9.357569677019676 + "points": { + "c1": -4.333313079355555, + "c2": 1.5422292868443783, + "c3": -5.037441010210049, + "c4": -18.424599910716605, + "c5": 5.3153245517167065, + "c6": 16.71789373485086, + "c7": 20.701363980000586 }, - "vertexSeeds": { - "c1": 4.683102869870932, - "c2": 4.420434696935438, - "c3": 4.43338666449792, - "c4": 4.4533967501331295, - "c5": 4.734898162096824, - "c6": 4.572205318655304, - "c7": 4.51569027473989 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377257, + "c3": 5.963938973647711, + "c4": 4.7711511789181715, + "c5": 3.578363384188625, + "c6": 2.3855755894590858, + "c7": 1.1927877947295389 }, "rgb": [86, 146, 138] }, @@ -27735,23 +27735,23 @@ "year": 1687, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -36.0800135913054, - "c2": 35.78868539779725, - "c3": 9.10645318335375, - "c4": -24.176637249273448, - "c5": 28.139466910192965, - "c6": 36.67557044182816, - "c7": -29.869958184827798 + "points": { + "c1": 7.772305802832449, + "c2": -16.536697189922215, + "c3": -10.916635323045128, + "c4": -9.45895700689426, + "c5": 30.52890288136207, + "c6": 1.8167239571589135, + "c7": -10.66360363296993 }, - "vertexSeeds": { - "c1": 2.19712793912009, - "c2": 1.9976289573624284, - "c3": 2.200808847067341, - "c4": 2.308691827429895, - "c5": 2.2349454810158575, - "c6": 2.0371730543212028, - "c7": 2.1750571198977346 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310685, + "c3": 3.236245954692558, + "c4": 2.588996763754045, + "c5": 1.9417475728155342, + "c6": 1.2944983818770217, + "c7": 0.6472491909385109 }, "rgb": [222, 0, 59] }, @@ -27762,23 +27762,23 @@ "year": 1687, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 18.92679309393383, - "c2": 17.678531821426766, - "c3": -4.871413176495267, - "c4": 0.4676999747584816, - "c5": -28.692992661372738, - "c6": -33.13519812425886, - "c7": 35.49487292123825 + "points": { + "c1": 10.505675702820334, + "c2": 20.03478636788588, + "c3": 5.3461587364654335, + "c4": 9.433244608878944, + "c5": 1.9214607769580994, + "c6": -44.92656515436584, + "c7": 9.986577462304552 }, - "vertexSeeds": { - "c1": 9.884094083344998, - "c2": 9.347381133934967, - "c3": 9.70674961494769, - "c4": 9.657456631012847, - "c5": 9.27491530817082, - "c6": 9.276939152142797, - "c7": 8.837888144668574 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076284, + "c3": 12.11280628756357, + "c4": 9.690245030050855, + "c5": 7.267683772538142, + "c6": 4.845122515025428, + "c7": 2.422561257512714 }, "rgb": [222, 0, 59] }, @@ -27789,23 +27789,23 @@ "year": 1687, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 11.843266005802569, - "c2": 6.90659045769813, - "c3": -26.812106651070863, - "c4": -15.687571668670763, - "c5": 19.388479533338696, - "c6": 18.999068112069267, - "c7": 30.23651945008588 + "points": { + "c1": 30.97459554991694, + "c2": 9.003633025679783, + "c3": -9.923386556662248, + "c4": 5.794109143854278, + "c5": 35.0243581905538, + "c6": -15.415099907725551, + "c7": -35.30856161163012 }, - "vertexSeeds": { - "c1": 6.15610684387453, - "c2": 5.201101474907727, - "c3": 5.306319982663867, - "c4": 6.248120177789364, - "c5": 5.1659410283837, - "c6": 6.031599035183849, - "c7": 5.389420105346942 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393893, + "c3": 7.697642163661581, + "c4": 6.158113730929268, + "c5": 4.618585298196948, + "c6": 3.0790568654646284, + "c7": 1.539528432732316 }, "rgb": [86, 146, 138] }, @@ -27816,23 +27816,23 @@ "year": 1687, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 8.21878364039799, - "c2": -18.519106416319122, - "c3": -2.1814985814020282, - "c4": 17.91025115756639, - "c5": 28.349862953510094, - "c6": -7.780669216283066, - "c7": -14.649713746129866 + "points": { + "c1": -25.0235853527334, + "c2": 9.854094682973479, + "c3": -1.9004713713265673, + "c4": -4.245950081885304, + "c5": 8.957136975950196, + "c6": 24.242148511436024, + "c7": 23.747353265893206 }, - "vertexSeeds": { - "c1": 3.708090890317874, - "c2": 3.602403784795311, - "c3": 3.493317147447666, - "c4": 3.4973324100913454, - "c5": 3.590404030725532, - "c6": 3.650070515375935, - "c7": 3.6163527839286598 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.43689320388349, + "c3": 4.5307443365695805, + "c4": 3.62459546925566, + "c5": 2.7184466019417504, + "c6": 1.81229773462783, + "c7": 0.9061488673139101 }, "rgb": [86, 146, 138] }, @@ -27843,23 +27843,23 @@ "year": 1687, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 31.498431040851727, - "c2": -11.314476315373781, - "c3": 30.0538197486634, - "c4": -15.066234168039095, - "c5": 28.32996493886224, - "c6": 22.21401797199539, - "c7": -13.4700886229076 + "points": { + "c1": -26.771918499364073, + "c2": 21.697082691616608, + "c3": -20.61938133808221, + "c4": -11.940315370914607, + "c5": -18.892163852067, + "c6": -19.09093315374448, + "c7": 2.567347246107545 }, - "vertexSeeds": { - "c1": 3.170267369766939, - "c2": 3.2932513346745087, - "c3": 3.363620556590661, - "c4": 3.206368523215146, - "c5": 3.2650569149619972, - "c6": 3.200403894481665, - "c7": 3.1752159842056336 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038828, + "c3": 4.045307443365698, + "c4": 3.236245954692553, + "c5": 2.4271844660194217, + "c6": 1.6181229773462764, + "c7": 0.8090614886731309 }, "rgb": [222, 0, 59] }, @@ -27870,23 +27870,23 @@ "year": 1687, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -13.818603445072437, - "c2": -21.566651276555916, - "c3": 28.257826950768724, - "c4": -24.876875991932472, - "c5": -0.7926518378431666, - "c6": -24.37963850540507, - "c7": -18.841533811187936 + "points": { + "c1": -11.174496718104283, + "c2": -10.705557654564007, + "c3": -31.270986469629, + "c4": 12.955898473634228, + "c5": -27.599034720626854, + "c6": -18.877286896071087, + "c7": 35.41231470409523 }, - "vertexSeeds": { - "c1": 6.922418626997536, - "c2": 7.464269081842684, - "c3": 7.984215118115976, - "c4": 8.16628373989954, - "c5": 8.637048624339116, - "c6": 8.946881715966224, - "c7": 7.661913307970035 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582526, + "c3": 10.67961165048544, + "c4": 8.543689320388346, + "c5": 6.407766990291258, + "c6": 4.271844660194173, + "c7": 2.1359223300970864 }, "rgb": [77, 76, 132] }, @@ -27897,23 +27897,23 @@ "year": 1687, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": 13.810134339581715, - "c2": -9.246998816514019, - "c3": -5.525018587582702, - "c4": 15.338667605918307, - "c5": -4.190696368361904, - "c6": -13.287244938014407, - "c7": 4.740324087257505 + "points": { + "c1": -4.873314855158116, + "c2": -12.461526256655887, + "c3": -11.960651741489412, + "c4": -9.610063652690203, + "c5": -14.323844211599543, + "c6": 3.863289960114777, + "c7": 12.37569179676192 }, - "vertexSeeds": { - "c1": 1.701258259422302, - "c2": 1.8725564604781353, - "c3": 1.587086614979148, - "c4": 1.6858108560669687, - "c5": 1.7685392258252144, - "c6": 1.7363310212033727, - "c7": 1.6508997837951178 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.311604253351827, + "c4": 1.849283402681461, + "c5": 1.3869625520110953, + "c6": 0.9246417013407294, + "c7": 0.4623208506703659 }, "rgb": [238, 201, 159] }, @@ -27924,23 +27924,23 @@ "year": 1687, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 26.880447434801503, - "c2": 26.17972875558032, - "c3": 12.467965628430875, - "c4": -32.21668076663472, - "c5": -31.756724192044082, - "c6": -6.774025445178523, - "c7": 4.330927681465695 + "points": { + "c1": -13.296739890146448, + "c2": -4.775406857068937, + "c3": 48.47869884187791, + "c4": -29.36766223399677, + "c5": -2.7314353882365197, + "c6": -42.96163793805502, + "c7": 22.40454476322484 }, - "vertexSeeds": { - "c1": 3.0753342554741216, - "c2": 2.7067895827294026, - "c3": 3.007563628108602, - "c4": 3.710443963555648, - "c5": 3.1062424963820523, - "c6": 2.7235088845078317, - "c7": 3.004672016113288 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923717, + "c3": 4.553860379103098, + "c4": 3.64308830328248, + "c5": 2.73231622746186, + "c6": 1.82154415164124, + "c7": 0.91077207582062 }, "rgb": [238, 201, 159] }, @@ -27951,23 +27951,23 @@ "year": 1687, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 1.78099789323743, - "c2": 6.98816428106235, - "c3": -13.625420655549199, - "c4": 3.313344063359086, - "c5": 9.385158697452592, - "c6": -12.889768615950667, - "c7": -4.978273922316355 + "points": { + "c1": 25.95558510207051, + "c2": 3.4056829003006683, + "c3": 20.713155136702685, + "c4": -1.6096173636094164, + "c5": 14.547781555125223, + "c6": -4.77059021907818, + "c7": -14.025384762667631 }, - "vertexSeeds": { - "c1": 4.797652903085947, - "c2": 4.607300487004299, - "c3": 4.368178525732644, - "c4": 4.4379627620740125, - "c5": 4.525495295761971, - "c6": 4.650089610579566, - "c7": 4.477406506236276 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055479, + "c3": 5.779010633379567, + "c4": 4.623208506703647, + "c5": 3.4674063800277355, + "c6": 2.3116042533518235, + "c7": 1.1558021266759118 }, "rgb": [222, 0, 59] }, @@ -27978,23 +27978,23 @@ "year": 1688, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -19.334149723741312, - "c2": -12.794303280992779, - "c3": 9.170431504805535, - "c4": -11.137642674102537, - "c5": -38.131693358336705, - "c6": 20.390290920902146, - "c7": -41.5252669952294 + "points": { + "c1": 1.484389594323524, + "c2": 37.39324692132527, + "c3": 38.46144938636452, + "c4": 15.33959662562021, + "c5": 11.070177450357846, + "c6": 12.261069469781084, + "c7": -16.734099892043393 }, - "vertexSeeds": { - "c1": 10.478842981230542, - "c2": 10.282608343703782, - "c3": 10.384778992441682, - "c4": 10.551946967691688, - "c5": 10.37650843463198, - "c6": 9.981276835616638, - "c7": 10.598918638859741 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122051, + "c3": 12.713823393435042, + "c4": 10.171058714748034, + "c5": 7.628294036061026, + "c6": 5.085529357374017, + "c7": 2.5427646786870084 }, "rgb": [77, 76, 132] }, @@ -28005,23 +28005,23 @@ "year": 1688, "resistanceReported": false, "duration": 52272000, - "curveSeeds": { - "c1": 57.75357327984496, - "c2": 2.96501525164048, - "c3": 26.669731626204793, - "c4": 2.094079145367317, - "c5": 45.34826474957474, - "c6": -20.320102831906745, - "c7": 19.604463605899824 + "points": { + "c1": 54.496360350334356, + "c2": 56.21147581730871, + "c3": 3.9356729774274726, + "c4": 51.08273810078266, + "c5": 2.560769088398729, + "c6": -38.49194667446643, + "c7": -56.74257502766849 }, - "vertexSeeds": { - "c1": 3.381341109020948, - "c2": 3.318172714862819, - "c3": 3.1614983729415806, - "c4": 3.347343878675072, - "c5": 3.1510093162542927, - "c6": 3.2623031962608176, - "c7": 3.304921355511988 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.90984743411928, + "c3": 4.091539528432736, + "c4": 3.2732316227461906, + "c5": 2.4549237170596347, + "c6": 1.63661581137309, + "c7": 0.818307905686545 }, "rgb": [238, 201, 159] }, @@ -28032,23 +28032,23 @@ "year": 1688, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -27.47936837606809, - "c2": 22.330612256078908, - "c3": -43.51559667136069, - "c4": 38.44050593078214, - "c5": -16.898881728579486, - "c6": -0.5117482228410637, - "c7": 16.971110364997735 + "points": { + "c1": -16.011831154126426, + "c2": -42.73283530203403, + "c3": -6.710087169673237, + "c4": -44.884295173672605, + "c5": 19.888933224915732, + "c6": 27.984881704616924, + "c7": -16.229739174797178 }, - "vertexSeeds": { - "c1": 3.162463905222963, - "c2": 3.2823001274449943, - "c3": 3.0184477983532565, - "c4": 3.009739786824404, - "c5": 3.2688167475043537, - "c6": 2.9940244727001404, - "c7": 3.0498880436835587 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958392, + "c3": 3.9990753582986613, + "c4": 3.1992602866389297, + "c5": 2.399445214979199, + "c6": 1.599630143319462, + "c7": 0.799815071659731 }, "rgb": [238, 201, 159] }, @@ -28059,23 +28059,23 @@ "year": 1688, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 4.006841497396849, - "c2": -11.720594536795332, - "c3": -5.006021513035762, - "c4": -17.566444011733275, - "c5": 7.527562755169548, - "c6": -6.73403040751635, - "c7": 1.009039065293436 + "points": { + "c1": 38.68118531391414, + "c2": -34.319227312016004, + "c3": -31.47355436495242, + "c4": 5.532131322198417, + "c5": -13.244045419954169, + "c6": -8.841420440538677, + "c7": 39.135582993657806 }, - "vertexSeeds": { - "c1": 7.0767046672864895, - "c2": 6.969195928140958, - "c3": 5.9699023819440145, - "c4": 5.86927452159976, - "c5": 6.744581960889633, - "c6": 6.405036375771184, - "c7": 7.035228737620854 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [86, 146, 138] }, @@ -28086,23 +28086,23 @@ "year": 1688, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -43.54392077749475, - "c2": -3.527154142920395, - "c3": -30.48707606106378, - "c4": -12.516525062973784, - "c5": -35.11459065184292, - "c6": -14.112601881073687, - "c7": 38.628594404572965 + "points": { + "c1": 43.27940378444514, + "c2": 26.091894685947977, + "c3": 1.9950009506552107, + "c4": -3.2317855239167415, + "c5": 7.050114857285195, + "c6": 24.500741816044098, + "c7": 24.41295149566359 }, - "vertexSeeds": { - "c1": 4.346177273370474, - "c2": 4.488811373530256, - "c3": 4.562311328032964, - "c4": 3.8384850716559793, - "c5": 4.266991360600334, - "c6": 4.192951792541766, - "c7": 4.247198518679612 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [86, 146, 138] }, @@ -28113,23 +28113,23 @@ "year": 1688, "resistanceReported": false, "duration": 45878400, - "curveSeeds": { - "c1": -24.53599228105869, - "c2": -16.77834557552304, - "c3": 1.093374108892725, - "c4": 26.16887917539956, - "c5": -40.10192348382841, - "c6": -43.4296310970397, - "c7": 30.621449621740673 + "points": { + "c1": -16.70932315073079, + "c2": -48.12734234904126, + "c3": 58.315692399538015, + "c4": 25.758760383192786, + "c5": 18.318283190487428, + "c6": 54.13228031097737, + "c7": 13.649133929379154 }, - "vertexSeeds": { - "c1": 5.753205042296069, - "c2": 5.669324518036126, - "c3": 5.618254241955274, - "c4": 5.841273749404492, - "c5": 5.708025501483885, - "c6": 5.847552247840825, - "c7": 5.744888055052938 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187245, + "c3": 7.0041608876560435, + "c4": 5.603328710124842, + "c5": 4.202496532593605, + "c6": 2.801664355062403, + "c7": 1.4008321775312016 }, "rgb": [77, 76, 132] }, @@ -28140,23 +28140,23 @@ "year": 1689, "resistanceReported": false, "duration": 73526400, - "curveSeeds": { - "c1": -56.214416373426914, - "c2": -30.45537011595242, - "c3": 28.86422079706098, - "c4": -58.22237546243473, - "c5": 0.010608680471491994, - "c6": -24.38676413797839, - "c7": -45.36896894810619 + "points": { + "c1": -0.6629038410917758, + "c2": 56.02059907779544, + "c3": 18.529108424293696, + "c4": 37.701639162568696, + "c5": -14.563303323908528, + "c6": -6.791071888934837, + "c7": 75.81613250913735 }, - "vertexSeeds": { - "c1": 3.477979274611399, - "c2": 3.477979274611399, - "c3": 3.477979274611399, - "c4": 3.477979274611399, - "c5": 3.477979274611399, - "c6": 3.477979274611399, - "c7": 3.477979274611399 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -28167,23 +28167,23 @@ "year": 1687, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -24.80703915792892, - "c2": -30.38257643253084, - "c3": -12.259823597584216, - "c4": 22.31897931651033, - "c5": -33.52808319551982, - "c6": -31.130532979447864, - "c7": -15.105530850597741 + "points": { + "c1": -12.257174853666978, + "c2": -7.205598712410275, + "c3": -4.188355971549896, + "c4": 34.8221227991792, + "c5": 14.48006990865482, + "c6": 22.14213643302911, + "c7": -32.953652259821304 }, - "vertexSeeds": { - "c1": 6.719922593164295, - "c2": 6.973565440624361, - "c3": 7.725323011328178, - "c4": 8.192826731609085, - "c5": 6.401685019786765, - "c6": 7.943307895923885, - "c7": 6.4528931583898474 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.91678224687933, + "c4": 7.933425797503471, + "c5": 5.950069348127603, + "c6": 3.9667128987517355, + "c7": 1.9833564493758677 }, "rgb": [238, 201, 159] }, @@ -28194,23 +28194,23 @@ "year": 1687, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -14.95555348840541, - "c2": 2.1920914087971077, - "c3": 1.3129060069465375, - "c4": 18.931054040894402, - "c5": 5.13803734613105, - "c6": -22.69853533547453, - "c7": 16.76959595296205 + "points": { + "c1": -12.835877716931925, + "c2": 12.18200626608975, + "c3": -21.08905210915826, + "c4": 23.21861738916386, + "c5": -2.1312795199148162, + "c6": -0.27084291036088715, + "c7": 14.328239935170416 }, - "vertexSeeds": { - "c1": 1.9493213486420573, - "c2": 1.9577160979692068, - "c3": 1.9379694269788217, - "c4": 1.7638425939442017, - "c5": 1.8165242474122372, - "c6": 1.9262803796381056, - "c7": 1.7789839963997307 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.8294036061026353, + "c3": 2.357836338418863, + "c4": 1.8862690707350902, + "c5": 1.4147018030513177, + "c6": 0.9431345353675451, + "c7": 0.47156726768377255 }, "rgb": [86, 146, 138] }, @@ -28221,23 +28221,23 @@ "year": 1687, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -8.300185903091187, - "c2": 19.51937126330739, - "c3": -8.8574220953343, - "c4": -28.88056033492752, - "c5": -7.300871800390727, - "c6": -15.097245083458777, - "c7": -1.6616704554087605 + "points": { + "c1": -8.908978466956842, + "c2": 15.920787552934698, + "c3": 17.03470341814341, + "c4": 14.445467633513914, + "c5": -26.79225059330542, + "c6": 29.877779548655482, + "c7": 11.014108646066077 }, - "vertexSeeds": { - "c1": 7.088177296978574, - "c2": 8.186952937742983, - "c3": 7.027203394956319, - "c4": 7.722499027946274, - "c5": 7.722676224924284, - "c6": 7.466629776702594, - "c7": 7.820862615118628 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662966, + "c3": 10.725843735552472, + "c4": 8.580674988441983, + "c5": 6.4355062413314865, + "c6": 4.290337494220991, + "c7": 2.1451687471104957 }, "rgb": [77, 76, 132] }, @@ -28248,23 +28248,23 @@ "year": 1687, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 16.866419968920226, - "c2": -29.081561367793388, - "c3": 22.09728688292661, - "c4": 6.773921881909622, - "c5": 11.506510612643758, - "c6": 14.808290484191346, - "c7": -12.97739549134224 + "points": { + "c1": -31.200860803169665, + "c2": -29.528850744428347, + "c3": -2.7058668919760933, + "c4": -26.492877764231274, + "c5": 24.11217119559754, + "c6": -27.82048552190472, + "c7": -15.137343306504082 }, - "vertexSeeds": { - "c1": 7.196604574982959, - "c2": 7.156846158887887, - "c3": 7.197272952729319, - "c4": 7.232103282456366, - "c5": 7.190710678207254, - "c6": 7.153404352501651, - "c7": 7.169079564701529 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083268, + "c3": 8.668515950069333, + "c4": 6.934812760055512, + "c5": 5.201109570041576, + "c6": 3.467406380027756, + "c7": 1.7337031900138204 }, "rgb": [238, 201, 159] }, @@ -28275,23 +28275,23 @@ "year": 1688, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -38.23364993827979, - "c2": -7.132157973534412, - "c3": -31.040504453399187, - "c4": -10.053874070590073, - "c5": 14.524907480563535, - "c6": 0.5105335633137713, - "c7": 27.262673664228515 + "points": { + "c1": -3.5184552141954626, + "c2": 25.687962500216486, + "c3": -3.230078526290292, + "c4": -16.885503616950352, + "c5": 30.361943483112327, + "c6": 9.77865412563645, + "c7": 33.726301134506954 }, - "vertexSeeds": { - "c1": 9.026048408052665, - "c2": 9.079064252211007, - "c3": 9.072263136226908, - "c4": 9.072888974408786, - "c5": 9.067050893117456, - "c6": 9.095107743455372, - "c7": 9.020422124497253 + "offsets": { + "c1": 15.242718446601941, + "c2": 13.065187239944521, + "c3": 10.8876560332871, + "c4": 8.71012482662968, + "c5": 6.5325936199722605, + "c6": 4.35506241331484, + "c7": 2.17753120665742 }, "rgb": [58, 15, 49] }, @@ -28302,23 +28302,23 @@ "year": 1688, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 20.213809393460004, - "c2": -23.89827093018738, - "c3": 0.5056379654882548, - "c4": -24.7343004025349, - "c5": -26.672324161407527, - "c6": 21.276242356462262, - "c7": 5.717924776861885 + "points": { + "c1": -21.31420450441022, + "c2": 2.017920996533036, + "c3": 5.697496611254955, + "c4": -29.824718176827957, + "c5": 31.54164684576044, + "c6": -25.877119355470214, + "c7": -19.132231109580854 }, - "vertexSeeds": { - "c1": 1.2895784049051897, - "c2": 1.2004416954897024, - "c3": 1.373912506243258, - "c4": 1.4975691763852401, - "c5": 1.41325638413805, - "c6": 1.4264887982418186, - "c7": 1.2508128020651041 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177535, + "c3": 1.8492834026814617, + "c4": 1.4794267221451678, + "c5": 1.1095700416088758, + "c6": 0.7397133610725839, + "c7": 0.36985668053629195 }, "rgb": [86, 146, 138] }, @@ -28329,23 +28329,23 @@ "year": 1688, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -26.512556310352142, - "c2": 29.25482710690622, - "c3": 26.020534812280218, - "c4": -17.819555799190855, - "c5": 0.00813265153480458, - "c6": -25.60874639856324, - "c7": 18.61134021769896 + "points": { + "c1": -29.74117584519861, + "c2": 8.016297437365843, + "c3": -21.539742140556605, + "c4": 16.903197208021865, + "c5": -28.84021950888876, + "c6": 1.7648770120776476, + "c7": 3.6841490764589366 }, - "vertexSeeds": { - "c1": 4.259881135326181, - "c2": 5.581079998364708, - "c3": 5.391546706287812, - "c4": 5.203722075093687, - "c5": 5.208562186465183, - "c6": 5.388800170070517, - "c7": 4.659029505744311 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785019, + "c3": 6.773000462320847, + "c4": 5.418400369856679, + "c5": 4.063800277392511, + "c6": 2.7092001849283394, + "c7": 1.3546000924641683 }, "rgb": [86, 146, 138] }, @@ -28356,23 +28356,23 @@ "year": 1688, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 35.441563893145364, - "c2": 9.533558366459722, - "c3": -22.84155268273034, - "c4": 39.981928380434134, - "c5": -38.19736314483372, - "c6": -15.883570788025526, - "c7": -17.140153248866174 + "points": { + "c1": -0.2922393386734967, + "c2": 2.442826779731682, + "c3": 32.46676203403177, + "c4": -10.484915358161253, + "c5": 20.937376188281753, + "c6": -36.30666499006559, + "c7": -34.264086956675236 }, - "vertexSeeds": { - "c1": 8.164445234657487, - "c2": 8.170040823972247, - "c3": 8.257344507912027, - "c4": 8.295835129705344, - "c5": 8.219561414956717, - "c6": 8.331908892689782, - "c7": 8.205704761255484 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295402, + "c3": 9.939898289412888, + "c4": 7.951918631530294, + "c5": 5.963938973647701, + "c6": 3.975959315765107, + "c7": 1.9879796578825932 }, "rgb": [86, 146, 138] }, @@ -28383,23 +28383,23 @@ "year": 1688, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -4.010988935155595, - "c2": -14.669501872815776, - "c3": 34.063987400491705, - "c4": 22.691429768672954, - "c5": 25.85585650783805, - "c6": 26.71205364794354, - "c7": 4.926078217614354 + "points": { + "c1": 10.994222742941922, + "c2": -6.341689127559363, + "c3": 33.41857923419082, + "c4": 3.7367277654206177, + "c5": -24.03299875180958, + "c6": 23.18485838546014, + "c7": -25.195280886332675 }, - "vertexSeeds": { - "c1": 8.155399255374146, - "c2": 9.640175468906119, - "c3": 8.381432552646409, - "c4": 8.749677129770475, - "c5": 9.33445591899783, - "c6": 9.14038248319315, - "c7": 9.268008164806146 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110953, + "c3": 11.558021266759136, + "c4": 9.246417013407305, + "c5": 6.934812760055476, + "c6": 4.623208506703647, + "c7": 2.3116042533518293 }, "rgb": [58, 15, 49] }, @@ -28410,23 +28410,23 @@ "year": 1688, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -17.59736847559392, - "c2": 28.40250486108961, - "c3": 17.669907178687417, - "c4": -25.193383291107878, - "c5": -21.448784587563132, - "c6": 21.598535637485902, - "c7": 31.27190996589632 + "points": { + "c1": 8.276989921414298, + "c2": -28.987738606360416, + "c3": 7.3249211938449434, + "c4": -5.9455801501344006, + "c5": 16.076386684159758, + "c6": -1.681546083921603, + "c7": -32.000455358663416 }, - "vertexSeeds": { - "c1": 8.613472060273528, - "c2": 10.756116526711532, - "c3": 9.817797809430393, - "c4": 9.705423639050144, - "c5": 9.167375445905325, - "c6": 10.854325632716101, - "c7": 9.893886487628926 + "offsets": { + "c1": 18.6084142394822, + "c2": 15.950069348127608, + "c3": 13.291724456772998, + "c4": 10.633379565418403, + "c5": 7.975034674063796, + "c6": 5.316689782709202, + "c7": 2.658344891354601 }, "rgb": [77, 76, 132] }, @@ -28437,23 +28437,23 @@ "year": 1688, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -4.14905461499999, - "c2": 3.4243545657486543, - "c3": 2.819422326720243, - "c4": -9.575563324225737, - "c5": 21.443755621880197, - "c6": -9.73984439096127, - "c7": 2.467201082731716 + "points": { + "c1": 0.39078769337611874, + "c2": -13.820727509723703, + "c3": 5.730309270667394, + "c4": 5.406314426936067, + "c5": -15.271589053607514, + "c6": 3.6826821469759032, + "c7": 16.635947317284508 }, - "vertexSeeds": { - "c1": 4.806671121828378, - "c2": 4.837239650081719, - "c3": 4.746636215593733, - "c4": 4.610068323749081, - "c5": 4.612562783908094, - "c6": 4.802790474000722, - "c7": 4.818097282198588 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055472, + "c3": 5.779010633379573, + "c4": 4.623208506703654, + "c5": 3.467406380027736, + "c6": 2.3116042533518177, + "c7": 1.1558021266759186 }, "rgb": [86, 146, 138] }, @@ -28464,23 +28464,23 @@ "year": 1688, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -23.20604396329823, - "c2": 8.1706698165016, - "c3": -30.310572968073785, - "c4": -28.428561824039445, - "c5": 1.1114750996747205, - "c6": -26.596809933701156, - "c7": -32.17619194678242 + "points": { + "c1": -38.445151004020616, + "c2": -33.8579064841158, + "c3": 35.80634812500898, + "c4": -28.52724315436801, + "c5": -18.451107924914385, + "c6": -31.55099765976017, + "c7": -39.3681049894818 }, - "vertexSeeds": { - "c1": 8.529765388032093, - "c2": 7.030229170638495, - "c3": 8.00906946140836, - "c4": 8.458683326402678, - "c5": 7.3868849066631785, - "c6": 7.961363221473522, - "c7": 8.574614472491092 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783635, + "c3": 10.79519186315303, + "c4": 8.636153490522425, + "c5": 6.477115117891822, + "c6": 4.318076745261217, + "c7": 2.159038372630605 }, "rgb": [77, 76, 132] }, @@ -28491,23 +28491,23 @@ "year": 1688, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 11.457021664532249, - "c2": 11.869809107514435, - "c3": 17.983231728630592, - "c4": -37.960240056157524, - "c5": -30.510561652462776, - "c6": 34.10100142885088, - "c7": -20.54398715332257 + "points": { + "c1": -11.541172695057032, + "c2": 37.69105811266017, + "c3": 25.775986672467326, + "c4": -0.8176365770031779, + "c5": -23.358822667488255, + "c6": -30.905495833877524, + "c7": -39.389542889323366 }, - "vertexSeeds": { - "c1": 4.365406386412849, - "c2": 4.706894630139979, - "c3": 3.826309086780601, - "c4": 4.844134035202894, - "c5": 4.202186230434202, - "c6": 3.6088871759605867, - "c7": 4.309655678867996 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [238, 201, 159] }, @@ -28518,23 +28518,23 @@ "year": 1688, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -17.777164950934182, - "c2": 38.315136244263556, - "c3": 40.22780381211271, - "c4": -9.175974909300429, - "c5": 32.63450823542165, - "c6": 13.245743136645217, - "c7": 17.997932404816048 + "points": { + "c1": -22.155960877652916, + "c2": -36.35892515686457, + "c3": 39.1541189141378, + "c4": 31.853677795238283, + "c5": -30.47642588899871, + "c6": 1.4916241313282868, + "c7": -32.07166830066262 }, - "vertexSeeds": { - "c1": 11.921095540713713, - "c2": 11.643765378721042, - "c3": 12.72343593901561, - "c4": 11.63629736456627, - "c5": 13.110201966451571, - "c6": 11.77928162337083, - "c7": 13.068042617373491 + "offsets": { + "c1": 21.97411003236246, + "c2": 18.83495145631069, + "c3": 15.695792880258896, + "c4": 12.55663430420713, + "c5": 9.417475728155333, + "c6": 6.278317152103565, + "c7": 3.1391585760517957 }, "rgb": [238, 201, 159] }, @@ -28545,23 +28545,23 @@ "year": 1688, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": 9.909754414423578, - "c2": 4.054278243860853, - "c3": 3.8576741654424964, - "c4": 12.319866652129242, - "c5": -16.700284754441714, - "c6": 17.182838223095438, - "c7": 10.384461281997933 + "points": { + "c1": 20.050494725564427, + "c2": 9.501176547705736, + "c3": 12.711510156428758, + "c4": -2.0985704399846234, + "c5": -1.4420750200026085, + "c6": -11.988951296612457, + "c7": 12.493351460259788 }, - "vertexSeeds": { - "c1": 5.174566276963022, - "c2": 5.53315079982648, - "c3": 5.610890976780766, - "c4": 5.113655814997731, - "c5": 5.346728508254497, - "c6": 5.397701796275298, - "c7": 4.746761503250741 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [222, 0, 59] }, @@ -28572,23 +28572,23 @@ "year": 1688, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": 8.084686488409332, - "c2": 12.721785782373875, - "c3": -11.134273351294711, - "c4": -16.97681548930955, - "c5": -16.91008724616646, - "c6": -9.802293022415414, - "c7": -4.632039335801746 + "points": { + "c1": 9.412092373600075, + "c2": -11.681219182760302, + "c3": 6.763393656290159, + "c4": 4.386259328236807, + "c5": -15.147694166417164, + "c6": -4.47167331958285, + "c7": 10.855240609429185 }, - "vertexSeeds": { - "c1": 8.946078080486073, - "c2": 8.826159487622299, - "c3": 8.266081623802593, - "c4": 8.255171190642582, - "c5": 8.714136019188663, - "c6": 9.03949794649502, - "c7": 8.829082628914605 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065181, + "c3": 10.957004160887658, + "c4": 8.765603328710121, + "c5": 6.574202496532599, + "c6": 4.3828016643550605, + "c7": 2.191400832177538 }, "rgb": [77, 76, 132] }, @@ -28599,23 +28599,23 @@ "year": 1688, "resistanceReported": false, "duration": 7171200, - "curveSeeds": { - "c1": -7.246786443541865, - "c2": 8.985242869048673, - "c3": -5.239761162939997, - "c4": 16.504103259282118, - "c5": -1.2545365152353583, - "c6": 6.1892035614378464, - "c7": -3.2364494031921254 + "points": { + "c1": -0.4731018703221572, + "c2": -13.872155821250814, + "c3": 13.54039493286907, + "c4": 18.17688670605161, + "c5": -18.65325915320177, + "c6": 10.839282170449078, + "c7": -6.11341017110659 }, - "vertexSeeds": { - "c1": 8.787700917332373, - "c2": 8.124906466164596, - "c3": 9.109621203777694, - "c4": 8.860753046743397, - "c5": 8.884342308863669, - "c6": 8.196107244955696, - "c7": 8.204528866881754 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065181, + "c3": 10.957004160887658, + "c4": 8.765603328710121, + "c5": 6.574202496532599, + "c6": 4.3828016643550605, + "c7": 2.191400832177538 }, "rgb": [86, 146, 138] }, @@ -28626,23 +28626,23 @@ "year": 1688, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 47.348328095866364, - "c2": 38.1178601698973, - "c3": 2.8397251516979907, - "c4": -15.428876302026552, - "c5": 48.10980275198057, - "c6": -31.817577634095898, - "c7": -0.03195824963242444 + "points": { + "c1": 49.66597881721903, + "c2": 14.423669028232993, + "c3": -43.845694778467106, + "c4": -9.053503119411417, + "c5": 5.702252800141601, + "c6": -5.164439066571781, + "c7": -30.762107963023674 }, - "vertexSeeds": { - "c1": 6.95235011475177, - "c2": 6.687307233159513, - "c3": 6.467541983312397, - "c4": 6.5835002723914355, - "c5": 7.1430736894485625, - "c6": 6.899111990263011, - "c7": 6.461637298013603 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736933, + "c4": 7.02727693018955, + "c5": 5.270457697642166, + "c6": 3.5136384650947674, + "c7": 1.7568192325473837 }, "rgb": [58, 15, 49] }, @@ -28653,23 +28653,23 @@ "year": 1689, "resistanceReported": false, "duration": 48124800, - "curveSeeds": { - "c1": -9.753316607824836, - "c2": 0.8540765649932069, - "c3": -18.261402224163866, - "c4": -37.69600460265404, - "c5": 57.60238037239607, - "c6": 9.041783811177098, - "c7": 17.638908671670976 + "points": { + "c1": 39.36230590371086, + "c2": -43.36898466150206, + "c3": 27.493115123162426, + "c4": 60.46604110827788, + "c5": 49.87991801729865, + "c6": -32.94054129471232, + "c7": 53.225979777678006 }, - "vertexSeeds": { - "c1": 3.015347996843097, - "c2": 3.2264157038695624, - "c3": 2.8903810040023257, - "c4": 3.0973808918721053, - "c5": 3.506602514577302, - "c6": 3.4822464368573516, - "c7": 2.8960833977737486 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561719, + "c3": 4.345815996301432, + "c4": 3.4766527970411447, + "c5": 2.6074895977808614, + "c6": 1.7383263985205744, + "c7": 0.8691631992602872 }, "rgb": [77, 76, 132] }, @@ -28680,23 +28680,23 @@ "year": 1688, "resistanceReported": false, "duration": 3974400, - "curveSeeds": { - "c1": -8.391188130333132, - "c2": -5.200442253861466, - "c3": -0.2144818642689561, - "c4": -7.41387674028429, - "c5": -13.38942599630181, - "c6": -12.457913492688487, - "c7": -10.410300262771525 + "points": { + "c1": -8.399430886992205, + "c2": -8.042968893428448, + "c3": 3.246530232803078, + "c4": -0.5974093202141582, + "c5": -1.6481657751796117, + "c6": -7.607759218834698, + "c7": 12.337783918993551 }, - "vertexSeeds": { - "c1": 9.1151167014282, - "c2": 8.02631005434918, - "c3": 8.568826340702769, - "c4": 8.051718084354384, - "c5": 8.801833463428238, - "c6": 9.14859853949334, - "c7": 8.936957676633128 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.370319001386958, + "c3": 11.141932501155805, + "c4": 8.913546000924638, + "c5": 6.6851595006934845, + "c6": 4.456773000462319, + "c7": 2.228386500231154 }, "rgb": [58, 15, 49] }, @@ -28707,23 +28707,23 @@ "year": 1689, "resistanceReported": false, "duration": 55900800, - "curveSeeds": { - "c1": 61.55146200962517, - "c2": 53.284871696146965, - "c3": -66.89730605008978, - "c4": 9.748701369943348, - "c5": 11.940450747792639, - "c6": 25.551749886163307, - "c7": -51.324596547615215 + "points": { + "c1": -41.80171051692889, + "c2": 46.195748440444135, + "c3": 61.89207491412921, + "c4": -47.32177454299769, + "c5": 3.399502188952212, + "c6": 7.129566323203463, + "c7": 27.71540305245786 }, - "vertexSeeds": { - "c1": 1.941005554934421, - "c2": 1.6269325082917274, - "c3": 1.6852844258814488, - "c4": 1.6388525225203654, - "c5": 2.022498818822621, - "c6": 1.856631935336535, - "c7": 1.6963109233815927 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037444, + "c3": 2.473416551086453, + "c4": 1.9787332408691622, + "c5": 1.4840499306518713, + "c6": 0.9893666204345802, + "c7": 0.4946833102172891 }, "rgb": [86, 146, 138] }, @@ -28734,23 +28734,23 @@ "year": 1688, "resistanceReported": false, "duration": 2851200, - "curveSeeds": { - "c1": 5.07876542108694, - "c2": -3.4990496546822794, - "c3": -10.111689955825938, - "c4": -12.502146804422967, - "c5": 8.306972314858553, - "c6": -3.7546037597667414, - "c7": -4.605321918740671 + "points": { + "c1": -7.141173753203477, + "c2": 7.643739249321657, + "c3": 13.725186577467644, + "c4": 9.240854173623953, + "c5": 0.06635082176888929, + "c6": -14.836276954709481, + "c7": 6.805525693719213 }, - "vertexSeeds": { - "c1": 8.336074577321392, - "c2": 8.503967166137688, - "c3": 8.910177029037268, - "c4": 8.513444880808047, - "c5": 8.257281569336417, - "c6": 8.185996995897215, - "c7": 9.279400309034601 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.34257975034674, + "c3": 11.118816458622284, + "c4": 8.895053166897826, + "c5": 6.67128987517337, + "c6": 4.447526583448913, + "c7": 2.2237632917244565 }, "rgb": [222, 0, 59] }, @@ -28761,23 +28761,23 @@ "year": 1689, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": -3.8802099492211397, - "c2": 46.38167211206551, - "c3": -49.86773659354179, - "c4": -44.986381011399544, - "c5": 21.950618391359235, - "c6": 44.28502995547954, - "c7": 32.63142104549632 + "points": { + "c1": 3.2618913002830467, + "c2": -32.20699596032128, + "c3": -16.976570160860874, + "c4": -48.69991217521414, + "c5": -3.8312235453420342, + "c6": 37.92980498208646, + "c7": -29.16975948742122 }, - "vertexSeeds": { - "c1": 5.017812007135031, - "c2": 4.800909441550101, - "c3": 5.190463418042794, - "c4": 4.85074243038735, - "c5": 5.196894468548944, - "c6": 5.306966147807285, - "c7": 5.573204407605822 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.6805362921867735, + "c4": 5.344429033749423, + "c5": 4.008321775312065, + "c6": 2.672214516874708, + "c7": 1.336107258437354 }, "rgb": [58, 15, 49] }, @@ -28788,23 +28788,23 @@ "year": 1689, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 44.97874222330455, - "c2": 42.07750688445728, - "c3": -44.43831074095978, - "c4": -43.41113568825019, - "c5": 3.567496674128897, - "c6": 5.9395652226738065, - "c7": 3.3608285709079766 + "points": { + "c1": -38.88072809542557, + "c2": -0.6757018431282731, + "c3": -51.30789199539578, + "c4": 31.25584768199026, + "c5": -26.798700092920743, + "c6": 4.520063501435786, + "c7": -50.88209946443909 }, - "vertexSeeds": { - "c1": 9.69559585492228, - "c2": 9.69559585492228, - "c3": 9.69559585492228, - "c4": 9.69559585492228, - "c5": 9.69559585492228, - "c6": 9.69559585492228, - "c7": 9.69559585492228 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -28815,23 +28815,23 @@ "year": 1689, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": -39.911462901651575, - "c2": 9.388984261595525, - "c3": -34.248585235494886, - "c4": -39.186616072056346, - "c5": 39.75239222901258, - "c6": 26.000132491605974, - "c7": -30.98419546228278 + "points": { + "c1": -2.2960509567246348, + "c2": -10.421420216309834, + "c3": 39.30822663248973, + "c4": -27.486054700618777, + "c5": 21.889634320500427, + "c6": -40.7680619555495, + "c7": -41.61761583873775 }, - "vertexSeeds": { - "c1": 11.437435603140594, - "c2": 12.408352575365067, - "c3": 11.321577265825349, - "c4": 11.229346755730885, - "c5": 11.961463991530511, - "c6": 12.077985786482888, - "c7": 11.774918822697058 + "offsets": { + "c1": 21.262135922330096, + "c2": 18.22468793342579, + "c3": 15.187239944521489, + "c4": 12.149791955617186, + "c5": 9.112343966712883, + "c6": 6.074895977808579, + "c7": 3.0374479889042756 }, "rgb": [86, 146, 138] }, @@ -28842,23 +28842,23 @@ "year": 1689, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 27.694648304979104, - "c2": -11.568491138128188, - "c3": -38.697663339409104, - "c4": -25.84224338166717, - "c5": -46.94980562849243, - "c6": 15.814963246944608, - "c7": -48.018918722511316 + "points": { + "c1": -8.239894834367895, + "c2": 18.970489157679587, + "c3": -44.9874132964337, + "c4": 26.9279671023075, + "c5": -15.42287902129646, + "c6": 46.60587166376893, + "c7": -14.416753873037706 }, - "vertexSeeds": { - "c1": 10.272755625440858, - "c2": 9.820016333837179, - "c3": 10.115641610464934, - "c4": 9.887190659448848, - "c5": 10.02941059321365, - "c6": 10.110819863683025, - "c7": 10.33108534473066 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679628, + "c3": 12.45954692556632, + "c4": 9.967637540453067, + "c5": 7.475728155339814, + "c6": 4.983818770226561, + "c7": 2.4919093851132805 }, "rgb": [58, 15, 49] }, @@ -28869,23 +28869,23 @@ "year": 1689, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -38.683966173985546, - "c2": 0.45419619585180016, - "c3": -5.617196534389919, - "c4": 40.21134864958734, - "c5": -26.865418019078945, - "c6": 36.61802397507173, - "c7": 20.509170579776004 + "points": { + "c1": 16.411642679260765, + "c2": -2.160859111248257, + "c3": -13.42746680294611, + "c4": 31.1594826677322, + "c5": -41.97531672939566, + "c6": -33.62507516403529, + "c7": -33.230460969877996 }, - "vertexSeeds": { - "c1": 4.959793778919621, - "c2": 4.797346339555761, - "c3": 4.298330651968049, - "c4": 4.7878265984293185, - "c5": 4.071832217775515, - "c6": 4.195409380267187, - "c7": 4.509590896402837 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538143, + "c3": 6.056403143781786, + "c4": 4.84512251502543, + "c5": 3.633841886269073, + "c6": 2.422561257512713, + "c7": 1.2112806287563564 }, "rgb": [77, 76, 132] }, @@ -28896,23 +28896,23 @@ "year": 1689, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -19.46064597404989, - "c2": -35.923445199457696, - "c3": 36.19143366322996, - "c4": -0.4068930265752968, - "c5": 11.17421087089894, - "c6": 1.4331528136933684, - "c7": 21.368142385894124 + "points": { + "c1": 23.50566046283089, + "c2": -26.050362308075446, + "c3": 5.040869404865752, + "c4": 11.93437235795269, + "c5": 42.40730279181787, + "c6": -14.405220271670526, + "c7": -30.17162643184312 }, - "vertexSeeds": { - "c1": 9.03175907067129, - "c2": 8.622124752392095, - "c3": 8.180946449070946, - "c4": 8.404724730194438, - "c5": 8.133926048352293, - "c6": 8.899287181801311, - "c7": 8.254029396057755 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.34257975034674, + "c3": 11.118816458622284, + "c4": 8.895053166897826, + "c5": 6.67128987517337, + "c6": 4.447526583448913, + "c7": 2.2237632917244565 }, "rgb": [77, 76, 132] }, @@ -28923,23 +28923,23 @@ "year": 1689, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 23.150370282596512, - "c2": 34.897161898644626, - "c3": -34.22393783278764, - "c4": -2.1591532007841963, - "c5": -12.732639731484372, - "c6": 35.02758872520553, - "c7": 34.63561829890864 + "points": { + "c1": -32.41048937299189, + "c2": -4.370857561951098, + "c3": -27.62662657122107, + "c4": 37.4766250554419, + "c5": -42.016476366375684, + "c6": 31.958273066934183, + "c7": -31.25696211900069 }, - "vertexSeeds": { - "c1": 5.762134294122017, - "c2": 6.199535694978947, - "c3": 5.822836975563668, - "c4": 6.10266404610882, - "c5": 6.337460568413649, - "c6": 5.912421036976175, - "c7": 5.709539841096857 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061022, + "c4": 6.102635228848814, + "c5": 4.576976421636621, + "c6": 3.051317614424414, + "c7": 1.525658807212207 }, "rgb": [238, 201, 159] }, @@ -28950,23 +28950,23 @@ "year": 1689, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 19.35339732895308, - "c2": 23.89971129296643, - "c3": -12.014219470878377, - "c4": -16.37621741396261, - "c5": -31.524377643819367, - "c6": -30.998424561703644, - "c7": 41.22911065196055 + "points": { + "c1": 36.76973882213723, + "c2": 17.565978693512285, + "c3": -31.047256411552425, + "c4": 22.773382806224774, + "c5": -0.6360188747907856, + "c6": -27.287527908835923, + "c7": 7.829374952134636 }, - "vertexSeeds": { - "c1": 4.430440299400374, - "c2": 5.118432124849239, - "c3": 4.288009181822023, - "c4": 4.978685967924829, - "c5": 4.537467905687041, - "c6": 4.416133790241982, - "c7": 4.723349595499273 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859919, + "c3": 6.2413314840499305, + "c4": 4.993065187239943, + "c5": 3.7447988904299594, + "c6": 2.4965325936199716, + "c7": 1.2482662968099838 }, "rgb": [77, 76, 132] }, @@ -28977,23 +28977,23 @@ "year": 1689, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -3.1894515705846516, - "c2": -34.577833045359505, - "c3": 47.20524088358189, - "c4": 25.347527627587432, - "c5": 48.17253394562359, - "c6": -10.710985555560782, - "c7": -49.13512798973842 + "points": { + "c1": -29.731292938861287, + "c2": 21.435693522015704, + "c3": -1.001229540078576, + "c4": 12.014165354136736, + "c5": 8.001722332219536, + "c6": 21.85651065843772, + "c7": 43.08182383250422 }, - "vertexSeeds": { - "c1": 10.452480807614673, - "c2": 9.85446528161637, - "c3": 9.435399716042811, - "c4": 10.397060773811507, - "c5": 10.407125434493391, - "c6": 9.239616537657776, - "c7": 10.604822922701622 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.589459084604721, + "c3": 12.991215903837269, + "c4": 10.39297272306981, + "c5": 7.794729542302351, + "c6": 5.196486361534902, + "c7": 2.598243180767451 }, "rgb": [86, 146, 138] }, @@ -29004,23 +29004,23 @@ "year": 1689, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": -44.5113550921321, - "c2": 42.567732894934885, - "c3": 40.48417194215512, - "c4": 5.486652779341945, - "c5": 44.60784204943642, - "c6": -0.36747594121265337, - "c7": 0.8232589247355833 + "points": { + "c1": 22.789700806247062, + "c2": -50.44724552574926, + "c3": 9.118235318147441, + "c4": 3.0674570025264245, + "c5": 11.093469029168872, + "c6": -4.7411737555894575, + "c7": 2.7725668824187935 }, - "vertexSeeds": { - "c1": 6.4170741690832065, - "c2": 7.399884082357452, - "c3": 6.354740198152923, - "c4": 7.930122030075884, - "c5": 7.7721888270913215, - "c6": 7.023053871815056, - "c7": 5.779367411098015 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410076, + "c4": 7.674526121128064, + "c5": 5.755894590846048, + "c6": 3.837263060564032, + "c7": 1.918631530282016 }, "rgb": [58, 15, 49] }, @@ -29031,23 +29031,23 @@ "year": 1689, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -18.23849410875141, - "c2": 4.344436910947863, - "c3": 33.20378424120459, - "c4": 25.677762859593344, - "c5": -32.64972513731213, - "c6": 11.368966474589051, - "c7": 13.691668387727603 + "points": { + "c1": -13.069571053134407, + "c2": 10.889522976390836, + "c3": -13.139392053298064, + "c4": 37.454275669230654, + "c5": -0.523089993312972, + "c6": 4.374937263168384, + "c7": 33.240947347194066 }, - "vertexSeeds": { - "c1": 5.249849413665945, - "c2": 4.629365644862203, - "c3": 4.349469565508959, - "c4": 5.4220976497318665, - "c5": 5.501488548186119, - "c6": 4.699189912676106, - "c7": 3.9720305061582417 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704575, + "c3": 6.726768377253816, + "c4": 5.381414701803053, + "c5": 4.03606102635229, + "c6": 2.6907073509015276, + "c7": 1.3453536754507653 }, "rgb": [238, 201, 159] }, @@ -29058,23 +29058,23 @@ "year": 1689, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 7.117066594801379, - "c2": 21.269893135511424, - "c3": -7.823250924647581, - "c4": 33.85830691172839, - "c5": -17.875608624636246, - "c6": -32.5760560955424, - "c7": 38.858738716353386 + "points": { + "c1": -35.955316942603, + "c2": 2.123343647743134, + "c3": -40.61035659494555, + "c4": 13.826850966786076, + "c5": -26.738569939337207, + "c6": 37.552654835820775, + "c7": 1.874679030652672 }, - "vertexSeeds": { - "c1": 7.133751581394689, - "c2": 6.463017380461948, - "c3": 6.7569998392456885, - "c4": 6.880276674386262, - "c5": 6.927184581000018, - "c6": 7.081482783327735, - "c7": 6.740136141392269 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324545, + "c3": 8.80721220527046, + "c4": 7.045769764216362, + "c5": 5.2843273231622785, + "c6": 3.522884882108181, + "c7": 1.7614424410540837 }, "rgb": [86, 146, 138] }, @@ -29085,23 +29085,23 @@ "year": 1689, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -27.58550888032386, - "c2": -21.091274168677202, - "c3": 13.790234490667089, - "c4": -24.27776201280266, - "c5": -24.93332186029778, - "c6": 13.621424453569702, - "c7": -22.989253686271358 + "points": { + "c1": 33.54435194370082, + "c2": 23.69798754508343, + "c3": 20.218931127488673, + "c4": 31.67832595052522, + "c5": 4.730615544436652, + "c6": -25.534347577484073, + "c7": -25.306439740676083 }, - "vertexSeeds": { - "c1": 3.4291821976954684, - "c2": 4.308350157939579, - "c3": 3.142158812289152, - "c4": 3.104799473384543, - "c5": 4.227141012114222, - "c6": 4.049816374854478, - "c7": 3.252292946669079 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.224225612575127, + "c4": 4.179380490060103, + "c5": 3.1345353675450753, + "c6": 2.0896902450300514, + "c7": 1.0448451225150273 }, "rgb": [238, 201, 159] }, @@ -29112,23 +29112,23 @@ "year": 1689, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 30.481542917793753, - "c2": -15.076692483273249, - "c3": -22.902916688680644, - "c4": -4.56895371214879, - "c5": -13.27319280580468, - "c6": 19.154323693851225, - "c7": 1.0793874145339188 + "points": { + "c1": 26.601898209705197, + "c2": -5.980257765709396, + "c3": 3.040361169881024, + "c4": -11.512673304498264, + "c5": 6.016815160626919, + "c6": 18.807863302030427, + "c7": 20.668235258475555 }, - "vertexSeeds": { - "c1": 6.29706653136398, - "c2": 7.0307522758931595, - "c3": 6.430695166103097, - "c4": 6.547394741856246, - "c5": 6.2706599937907015, - "c6": 6.439869628926445, - "c7": 6.517768000500962 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.31900138696255, + "c3": 8.59916782246879, + "c4": 6.879334257975029, + "c5": 5.159500693481268, + "c6": 3.439667128987521, + "c7": 1.7198335644937606 }, "rgb": [238, 201, 159] }, @@ -29139,23 +29139,23 @@ "year": 1689, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 9.491475113438458, - "c2": 8.252741687351001, - "c3": 26.8751622406464, - "c4": 15.206449625981545, - "c5": -10.47632047159222, - "c6": 22.88385332891728, - "c7": 17.85758778017718 + "points": { + "c1": -6.102105211416429, + "c2": -17.093110646996614, + "c3": 12.202721977825409, + "c4": -6.990295901966874, + "c5": -10.941106901923177, + "c6": 20.589328833105004, + "c7": 8.97287176621531 }, - "vertexSeeds": { - "c1": 3.7855352522608414, - "c2": 3.40902767298019, - "c3": 3.811500366210938, - "c4": 3.6921024187025915, - "c5": 3.75296324489024, - "c6": 3.4654143087889664, - "c7": 3.66560105380521 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366156, + "c3": 4.8081368469717995, + "c4": 3.8465094775774373, + "c5": 2.8848821081830813, + "c6": 1.9232547387887187, + "c7": 0.9616273693943623 }, "rgb": [238, 201, 159] }, @@ -29166,23 +29166,23 @@ "year": 1689, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 9.352802863222635, - "c2": 13.639900374083616, - "c3": -20.31347781030994, - "c4": -24.749166922880157, - "c5": -15.794848140394443, - "c6": -14.60212681290502, - "c7": -19.188773336490698 + "points": { + "c1": -5.202437781830071, + "c2": 32.26654683266479, + "c3": -21.416938857063123, + "c4": 21.017299528073558, + "c5": 35.26671653735964, + "c6": 34.41564268534418, + "c7": 0.31461063040026005 }, - "vertexSeeds": { - "c1": 8.75806703629043, - "c2": 8.79112607148306, - "c3": 8.37795025556618, - "c4": 8.8125081471869, - "c5": 8.608280321545028, - "c6": 8.329195031659859, - "c7": 8.658256012446587 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662966, + "c3": 10.725843735552466, + "c4": 8.580674988441992, + "c5": 6.435506241331493, + "c6": 4.290337494220996, + "c7": 2.145168747110498 }, "rgb": [222, 0, 59] }, @@ -29193,23 +29193,23 @@ "year": 1689, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -13.807750954156354, - "c2": 17.18034685275734, - "c3": -19.937843286926192, - "c4": 33.95937734748063, - "c5": -35.26672938836915, - "c6": -13.381456822489824, - "c7": 11.867355499876147 + "points": { + "c1": -22.694156730851226, + "c2": 18.142286338902977, + "c3": 28.430349888125342, + "c4": -10.805603705202024, + "c5": 9.849518478349793, + "c6": -34.75392071774435, + "c7": 32.31307363311738 }, - "vertexSeeds": { - "c1": 3.946374332583182, - "c2": 3.742813232486301, - "c3": 4.548026881566297, - "c4": 4.307757874217512, - "c5": 3.998398417563853, - "c6": 4.2108496361682555, - "c7": 4.27447624703176 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [77, 76, 132] }, @@ -29220,23 +29220,23 @@ "year": 1689, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 8.09671757533173, - "c2": -39.31428284301511, - "c3": -28.82180118705162, - "c4": 5.576548792685458, - "c5": 14.604703787362396, - "c6": 9.88351747705316, - "c7": -0.401035865545488 + "points": { + "c1": -30.960604963542607, + "c2": 11.795416186282665, + "c3": 41.69588768958763, + "c4": -0.12080861477114269, + "c5": 15.624641242120902, + "c6": -11.821587313337382, + "c7": -5.547548348334232 }, - "vertexSeeds": { - "c1": 11.817645230785633, - "c2": 10.726224778157379, - "c3": 10.298550482589674, - "c4": 11.494591299144421, - "c5": 9.839186048929207, - "c6": 12.3404624926984, - "c7": 10.144254480517555 + "offsets": { + "c1": 21.423948220064727, + "c2": 18.363384188626913, + "c3": 15.3028201571891, + "c4": 12.24225612575127, + "c5": 9.181692094313457, + "c6": 6.121128062875643, + "c7": 3.060564031437814 }, "rgb": [77, 76, 132] }, @@ -29247,23 +29247,23 @@ "year": 1689, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": -6.733866133738772, - "c2": -6.828145925065925, - "c3": 38.75855122676199, - "c4": -47.21317433678831, - "c5": -7.587106270748457, - "c6": 32.68958603340449, - "c7": 42.69042062026862 + "points": { + "c1": -29.570472356007087, + "c2": 24.161518467689213, + "c3": 19.27863347828768, + "c4": 31.056890224558764, + "c5": 26.641492039873633, + "c6": -25.736269459744804, + "c7": 28.51041053931852 }, - "vertexSeeds": { - "c1": 5.47297395902709, - "c2": 5.51065480864262, - "c3": 6.168231767330861, - "c4": 5.8661743677498634, - "c5": 5.515509888330778, - "c6": 5.548181089016396, - "c7": 6.001554544191165 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991683, + "c3": 7.4664817383263955, + "c4": 5.973185390661122, + "c5": 4.4798890429958345, + "c6": 2.986592695330561, + "c7": 1.4932963476652736 }, "rgb": [238, 201, 159] }, @@ -29274,23 +29274,23 @@ "year": 1689, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -19.16503008614982, - "c2": 15.07868197671845, - "c3": -25.248598859680055, - "c4": 22.106747583251035, - "c5": 31.25969617670225, - "c6": -13.911715690648546, - "c7": -24.335496364536944 + "points": { + "c1": -24.866354478326855, + "c2": -14.403332454040893, + "c3": -29.707250965022368, + "c4": -20.712847134412584, + "c5": -18.164003326947526, + "c6": -0.2956276554647772, + "c7": 16.676336892942814 }, - "vertexSeeds": { - "c1": 3.507711355157763, - "c2": 4.0907712829373635, - "c3": 3.8886316365388454, - "c4": 3.572959440908672, - "c5": 4.684567829142221, - "c6": 4.3494445405368065, - "c7": 4.491025932635601 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730469, + "c5": 3.481276005547852, + "c6": 2.320850670365236, + "c7": 1.1604253351826164 }, "rgb": [58, 15, 49] }, @@ -29301,23 +29301,23 @@ "year": 1689, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -22.25455650392267, - "c2": -10.54716938150343, - "c3": -24.021371157118907, - "c4": 6.218754154441616, - "c5": 22.008389575536636, - "c6": 17.248029009559556, - "c7": 22.966151943843084 + "points": { + "c1": 24.110207852457304, + "c2": 2.5675025171433283, + "c3": 26.421082199832473, + "c4": 14.780378417716722, + "c5": -27.653144187431064, + "c6": 28.504794650760157, + "c7": 10.905084574453344 }, - "vertexSeeds": { - "c1": 5.235889048589842, - "c2": 5.065306109232656, - "c3": 5.158285271497343, - "c4": 5.3763781165229, - "c5": 4.869478487602664, - "c6": 5.298653944110625, - "c7": 4.774180120926473 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342587, + "c3": 6.51872399445215, + "c4": 5.214979195561712, + "c5": 3.9112343966712895, + "c6": 2.607489597780867, + "c7": 1.3037447988904298 }, "rgb": [238, 201, 159] }, @@ -29328,23 +29328,23 @@ "year": 1689, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -26.40016102060193, - "c2": 6.384916943113453, - "c3": 17.04706339551513, - "c4": -28.073717757894872, - "c5": 9.699174830286964, - "c6": -11.73517082142435, - "c7": 21.59487497670238 + "points": { + "c1": -19.491803284677314, + "c2": -18.933173680699284, + "c3": -19.75372583359914, + "c4": -10.695373578694209, + "c5": 14.766701043587105, + "c6": 2.270849130919345, + "c7": 20.356856716752013 }, - "vertexSeeds": { - "c1": 4.915700185552668, - "c2": 5.318448964183552, - "c3": 5.5954743275937044, - "c4": 4.90660215832898, - "c5": 5.759269717793634, - "c6": 5.651103684314245, - "c7": 5.378675354287017 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055482, + "c4": 5.547850208044387, + "c5": 4.160887656033293, + "c6": 2.773925104022188, + "c7": 1.386962552011094 }, "rgb": [77, 76, 132] }, @@ -29355,23 +29355,23 @@ "year": 1689, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 2.983337440196557, - "c2": 21.16703344574102, - "c3": -2.5824243713041284, - "c4": -29.16639173885856, - "c5": 30.967208736032624, - "c6": 20.931144255154607, - "c7": 11.356888149270809 + "points": { + "c1": -27.4250894279912, + "c2": -13.700281255233815, + "c3": 23.483267580403833, + "c4": 21.459025063798556, + "c5": 20.801820782012364, + "c6": -13.906897408569144, + "c7": -30.981647902560404 }, - "vertexSeeds": { - "c1": 9.68488552908475, - "c2": 9.55297869937807, - "c3": 9.416750919154003, - "c4": 9.307638015712815, - "c5": 9.427982075494151, - "c6": 9.566962928459317, - "c7": 9.637720899111407 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011095, + "c3": 11.55802126675912, + "c4": 9.246417013407289, + "c5": 6.934812760055493, + "c6": 4.623208506703662, + "c7": 2.311604253351831 }, "rgb": [222, 0, 59] }, @@ -29382,23 +29382,23 @@ "year": 1690, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -1.30401284008191, - "c2": -33.218208097550495, - "c3": 15.555679379803706, - "c4": -20.22791127685524, - "c5": -16.22648588388396, - "c6": 2.0623789515653286, - "c7": 25.08130751509546 + "points": { + "c1": -27.341566648093067, + "c2": 6.474410875398114, + "c3": 23.644530178249724, + "c4": -16.657598887579464, + "c5": -6.667111248948508, + "c6": -17.771716906801807, + "c7": -0.787796372896274 }, - "vertexSeeds": { - "c1": 7.132060409097523, - "c2": 7.376566010906836, - "c3": 7.605244586333654, - "c4": 7.254377937875245, - "c5": 7.5039435355163775, - "c6": 7.4760000932834085, - "c7": 7.48807486727907 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088773, + "c3": 9.246417013407301, + "c4": 7.397133610725849, + "c5": 5.547850208044377, + "c6": 3.6985668053629244, + "c7": 1.849283402681471 }, "rgb": [77, 76, 132] }, @@ -29409,23 +29409,23 @@ "year": 1690, "resistanceReported": false, "duration": 6393600, - "curveSeeds": { - "c1": 12.881341453014045, - "c2": -6.85027722816641, - "c3": 9.464158250405504, - "c4": -0.2892495696652233, - "c5": 11.474144362543441, - "c6": -11.462023643185407, - "c7": 0.42742824408661306 + "points": { + "c1": -9.412089744290146, + "c2": 8.682133229402243, + "c3": -1.4932230362358432, + "c4": 7.658034332146354, + "c5": 6.508593089258021, + "c6": -9.762635819453484, + "c7": 6.243204445225388 }, - "vertexSeeds": { - "c1": 7.299707119298086, - "c2": 7.02475134060593, - "c3": 7.027530266770773, - "c4": 7.069173387467505, - "c5": 6.884881049369965, - "c6": 6.862889854101078, - "c7": 6.586218199276967 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324545, + "c3": 8.80721220527046, + "c4": 7.045769764216362, + "c5": 5.2843273231622785, + "c6": 3.522884882108181, + "c7": 1.7614424410540837 }, "rgb": [86, 146, 138] }, @@ -29436,23 +29436,23 @@ "year": 1691, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 15.685123457799975, - "c2": 45.829495307948505, - "c3": 40.985769219248496, - "c4": 27.263678081908026, - "c5": 10.669091382573, - "c6": 45.75864477731653, - "c7": -2.7833729498475677 + "points": { + "c1": 20.50610889284627, + "c2": 7.655325383945076, + "c3": -43.03948456711571, + "c4": 42.07060988765397, + "c5": -48.81968159696555, + "c6": -31.091809121064674, + "c7": -12.128407161332007 }, - "vertexSeeds": { - "c1": 2.283872808812907, - "c2": 2.264432799431367, - "c3": 1.9020713010815156, - "c4": 1.8649968113406281, - "c5": 1.845302550469006, - "c6": 1.8287936312774158, - "c7": 1.9507089177569088 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266286, + "c3": 2.773925104022192, + "c4": 2.219140083217753, + "c5": 1.6643550624133143, + "c6": 1.1095700416088776, + "c7": 0.5547850208044388 }, "rgb": [86, 146, 138] }, @@ -29463,23 +29463,23 @@ "year": 1690, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 29.239911212053997, - "c2": -4.700236333340655, - "c3": 34.98984092190716, - "c4": 28.759637369723265, - "c5": 9.877189560775228, - "c6": 2.1353972993471544, - "c7": -41.04928153002963 + "points": { + "c1": -26.286869785586692, + "c2": -46.82873301590156, + "c3": -41.16124513473744, + "c4": 0.4266220349175285, + "c5": -7.922828610951818, + "c6": 33.61439837828567, + "c7": -25.639666358222232 }, - "vertexSeeds": { - "c1": 9.239890338958599, - "c2": 10.597820233517345, - "c3": 8.435466010468708, - "c4": 8.88002412301004, - "c5": 9.814813094390404, - "c6": 10.562153172893417, - "c7": 8.754224551081915 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.39528432732317, + "c3": 12.829403606102645, + "c4": 10.263522884882107, + "c5": 7.697642163661585, + "c6": 5.131761442441062, + "c7": 2.565880721220531 }, "rgb": [222, 0, 59] }, @@ -29490,23 +29490,23 @@ "year": 1690, "resistanceReported": false, "duration": 1296000, - "curveSeeds": { - "c1": -10.594291225252988, - "c2": -9.053412767853384, - "c3": -10.923690846548439, - "c4": -5.806508066935236, - "c5": -6.603435484957696, - "c6": -5.736557927637483, - "c7": -1.1230412936302319 + "points": { + "c1": -3.199966680882122, + "c2": 0.6389823431202757, + "c3": 3.632295794572503, + "c4": -6.372675382737058, + "c5": 8.652604560319958, + "c6": -13.28848411156779, + "c7": 2.7953584251392876 }, - "vertexSeeds": { - "c1": 8.762625697257176, - "c2": 8.961403508556764, - "c3": 8.391998457475884, - "c4": 7.956944074028455, - "c5": 7.856089216012416, - "c6": 8.766225922122748, - "c7": 8.573150230484634 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [222, 0, 59] }, @@ -29517,23 +29517,23 @@ "year": 1691, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -15.08266842047049, - "c2": 11.186688162423955, - "c3": -12.510371100304909, - "c4": -30.607666859739126, - "c5": -38.76342291494885, - "c6": 20.11012473703866, - "c7": 37.22342453146318 + "points": { + "c1": -39.7401556792782, + "c2": 47.929806366097154, + "c3": 18.44421285454878, + "c4": -29.28349709697581, + "c5": -42.92882515468666, + "c6": -50.251919854819455, + "c7": -11.590597927870398 }, - "vertexSeeds": { - "c1": 10.67661010157841, - "c2": 10.928399192773796, - "c3": 9.30074327843304, - "c4": 8.595669815787195, - "c5": 10.41972997020318, - "c6": 11.075224103688765, - "c7": 10.829950838402896 + "offsets": { + "c1": 18.51132686084142, + "c2": 15.866851595006926, + "c3": 13.222376329172445, + "c4": 10.577901063337963, + "c5": 7.933425797503466, + "c6": 5.288950531668977, + "c7": 2.6444752658344886 }, "rgb": [222, 0, 59] }, @@ -29544,23 +29544,23 @@ "year": 1690, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -17.35965381637442, - "c2": -4.505555537090494, - "c3": -11.664771555066608, - "c4": -5.1721995865584915, - "c5": 21.85879237670489, - "c6": 7.549061969692971, - "c7": -27.68613825542904 + "points": { + "c1": 31.889667709636186, + "c2": 40.926997663295396, + "c3": -5.826063508153119, + "c4": 5.892165588814684, + "c5": -32.80559116410428, + "c6": -39.008139735892755, + "c7": 6.132726405242046 }, - "vertexSeeds": { - "c1": 3.762707598337891, - "c2": 3.7985918841661763, - "c3": 3.0837300798042335, - "c4": 3.4653630894280396, - "c5": 3.5448909279535745, - "c6": 3.151766295717557, - "c7": 3.122983370942959 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [222, 0, 59] }, @@ -29571,23 +29571,23 @@ "year": 1690, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 7.846244029691903, - "c2": -31.461304872644867, - "c3": -2.3011698550447797, - "c4": 17.64898399952238, - "c5": -18.652880529550917, - "c6": 31.117682081164233, - "c7": -13.79491235946707 + "points": { + "c1": 9.639750463227102, + "c2": -9.39173076629207, + "c3": -4.447805491622901, + "c4": 3.091513024898724, + "c5": 7.637807692446138, + "c6": -20.353824772970256, + "c7": 2.7157375504014922 }, - "vertexSeeds": { - "c1": 12.134020331424239, - "c2": 12.356665431910285, - "c3": 12.642875868291048, - "c4": 10.283714514310176, - "c5": 12.415018277391082, - "c6": 10.665162600326806, - "c7": 11.907124633449868 + "offsets": { + "c1": 21.197411003236247, + "c2": 18.16920943134536, + "c3": 15.14100785945446, + "c4": 12.112806287563574, + "c5": 9.084604715672674, + "c6": 6.056403143781787, + "c7": 3.028201571890886 }, "rgb": [86, 146, 138] }, @@ -29598,23 +29598,23 @@ "year": 1691, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -9.892612490038825, - "c2": 24.669207715032226, - "c3": -22.98941824867361, - "c4": -26.57449424467132, - "c5": 29.015445786104532, - "c6": 23.60332396761618, - "c7": -19.5563603627615 + "points": { + "c1": 3.841804342700648, + "c2": 4.557302872274711, + "c3": 15.954439554010769, + "c4": -29.439013323199383, + "c5": 9.655061046334879, + "c6": -18.176383643055786, + "c7": -21.191203229892967 }, - "vertexSeeds": { - "c1": 3.46657144571553, - "c2": 3.9369919228498182, - "c3": 3.4895505594569043, - "c4": 3.292464094803076, - "c5": 3.893337489072897, - "c6": 3.349724217344701, - "c7": 3.7849751599037558 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466, + "c3": 4.8543689320388355, + "c4": 3.8834951456310667, + "c5": 2.9126213592233023, + "c6": 1.9417475728155333, + "c7": 0.9708737864077642 }, "rgb": [86, 146, 138] }, @@ -29625,23 +29625,23 @@ "year": 1691, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -26.01103786955301, - "c2": 35.692744330303086, - "c3": 31.205031005042514, - "c4": -22.971851223121995, - "c5": -32.52147672803616, - "c6": -27.569479757435158, - "c7": -27.075271002745257 + "points": { + "c1": 39.61189195308036, + "c2": -16.759996530934416, + "c3": 36.232808257418355, + "c4": 13.875118440770947, + "c5": 38.53172997103405, + "c6": -40.10811614194238, + "c7": 0.6953020129032694 }, - "vertexSeeds": { - "c1": 9.227130119530218, - "c2": 9.561635465175993, - "c3": 9.311474158124561, - "c4": 9.340662799939585, - "c5": 9.171728942668343, - "c6": 9.235298781523092, - "c7": 9.447829942396215 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.84188626907074, + "c3": 11.534905224225621, + "c4": 9.227924179380505, + "c5": 6.920943134535385, + "c6": 4.6139620896902365, + "c7": 2.3069810448451182 }, "rgb": [58, 15, 49] }, @@ -29652,23 +29652,23 @@ "year": 1691, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": 0.362563492061188, - "c2": -18.33271702304811, - "c3": -14.86347159613343, - "c4": 12.166048908577565, - "c5": -10.06821771980625, - "c6": -21.820811446057412, - "c7": 3.6942256394708934 + "points": { + "c1": -17.876267323746653, + "c2": -4.691249248825017, + "c3": -12.518136272472756, + "c4": -13.615242399835243, + "c5": 1.5326363514618997, + "c6": 5.625690775248849, + "c7": 12.782731245697917 }, - "vertexSeeds": { - "c1": 4.492780356738718, - "c2": 4.834691230621726, - "c3": 4.154385511505701, - "c4": 4.870629718218421, - "c5": 4.118831972008499, - "c6": 4.528794002910897, - "c7": 5.019185099195464 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497917, + "c3": 6.033287101248267, + "c4": 4.826629680998613, + "c5": 3.6199722607489586, + "c6": 2.413314840499309, + "c7": 1.2066574202496545 }, "rgb": [86, 146, 138] }, @@ -29679,23 +29679,23 @@ "year": 1691, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": 22.42076967068212, - "c2": -5.232092100325875, - "c3": 10.862394232553157, - "c4": 8.019012128733987, - "c5": 7.17987592562346, - "c6": -18.74186481067284, - "c7": -8.217981117272288 + "points": { + "c1": -0.8336592345552134, + "c2": -24.49632258065175, + "c3": -15.599910613877398, + "c4": -3.1791832816641232, + "c5": 5.244519135434299, + "c6": -22.309949715690017, + "c7": 13.35638625794325 }, - "vertexSeeds": { - "c1": 5.835704379686329, - "c2": 6.041156658441619, - "c3": 6.190518808080189, - "c4": 6.019231525882078, - "c5": 6.356413906043745, - "c6": 5.863230665137335, - "c7": 5.973318780037774 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635221, + "c3": 7.8363384188626934, + "c4": 6.269070735090148, + "c5": 4.7018030513176035, + "c6": 3.134535367545074, + "c7": 1.5672676837725292 }, "rgb": [238, 201, 159] }, @@ -29706,23 +29706,23 @@ "year": 1691, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -19.395381958837397, - "c2": -0.42581263838604144, - "c3": 1.378650761128263, - "c4": 13.660578843672859, - "c5": 13.262693253321892, - "c6": 20.964549278263462, - "c7": -17.79441280244287 + "points": { + "c1": -34.309932619627794, + "c2": 2.050962533156138, + "c3": 11.308899894591029, + "c4": -5.546140384891508, + "c5": -32.43882992775582, + "c6": 35.382980050207095, + "c7": 15.133902077279764 }, - "vertexSeeds": { - "c1": 9.730341766139304, - "c2": 9.858263889387047, - "c3": 9.863940801103336, - "c4": 9.556628711060204, - "c5": 9.503736703716287, - "c6": 9.45646852215291, - "c7": 9.544359158671046 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.20249653259363, + "c3": 11.835413777161333, + "c4": 9.468331021729073, + "c5": 7.101248266296815, + "c6": 4.734165510864556, + "c7": 2.367082755432259 }, "rgb": [222, 0, 59] }, @@ -29733,23 +29733,23 @@ "year": 1691, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 8.224087398058344, - "c2": -19.3922564110728, - "c3": -30.781357835967558, - "c4": -19.848160097989933, - "c5": 4.5390533363445655, - "c6": 13.863420950079643, - "c7": 8.502244555169945 + "points": { + "c1": 37.090476606435914, + "c2": 24.07579728199103, + "c3": -29.48039093750299, + "c4": 5.736487748761569, + "c5": -35.55984917459679, + "c6": 31.955466040160715, + "c7": -30.13136199824642 }, - "vertexSeeds": { - "c1": 11.473703975502103, - "c2": 10.352882030389758, - "c3": 11.094362655347183, - "c4": 10.42390051441813, - "c5": 11.306540289177388, - "c6": 11.079551475253385, - "c7": 10.519834363317823 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133134, + "c3": 13.86962552011096, + "c4": 11.095700416088757, + "c5": 8.321775312066581, + "c6": 5.547850208044379, + "c7": 2.7739251040221755 }, "rgb": [77, 76, 132] }, @@ -29760,23 +29760,23 @@ "year": 1692, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": -43.26833858080437, - "c2": -18.631955602086737, - "c3": -39.86520236186958, - "c4": 21.176209569019328, - "c5": 36.2435176652938, - "c6": -23.129436354697365, - "c7": 1.2414188602167826 + "points": { + "c1": -35.937498675869044, + "c2": -42.41662756286652, + "c3": -35.15742646040576, + "c4": -46.20499271801032, + "c5": 49.50957475041968, + "c6": -16.6855712076799, + "c7": 23.582513675983485 }, - "vertexSeeds": { - "c1": 8.791911602673501, - "c2": 8.395711610602671, - "c3": 8.049209871682136, - "c4": 8.655263864660403, - "c5": 8.542191667415944, - "c6": 8.352593692794258, - "c7": 8.21572416782281 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [222, 0, 59] }, @@ -29787,23 +29787,23 @@ "year": 1691, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -40.78803128270388, - "c2": 11.215948419721677, - "c3": -4.923605508794928, - "c4": 45.87792058800588, - "c5": -9.610001382384574, - "c6": -0.6850461188322186, - "c7": 35.59405627556845 + "points": { + "c1": 21.253789940297395, + "c2": 31.8110804043757, + "c3": 38.423864553142224, + "c4": 5.804950730474403, + "c5": 3.8886772399644016, + "c6": 24.106071745039756, + "c7": -43.078610670624876 }, - "vertexSeeds": { - "c1": 9.29823254805244, - "c2": 8.987842469575115, - "c3": 8.552162844463949, - "c4": 9.107255473783946, - "c5": 8.583460652170794, - "c6": 9.10547634849878, - "c7": 8.905305830446293 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.758668515950077, + "c3": 11.465557096625057, + "c4": 9.172445677300052, + "c5": 6.879334257975032, + "c6": 4.586222838650026, + "c7": 2.2931114193250197 }, "rgb": [86, 146, 138] }, @@ -29814,23 +29814,23 @@ "year": 1691, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 26.865245177329758, - "c2": 15.679886534059815, - "c3": 30.31082008447309, - "c4": 5.397390918742115, - "c5": 10.910386553341905, - "c6": -14.504021644125135, - "c7": 7.568850544683709 + "points": { + "c1": 24.143168471868584, + "c2": -11.988141385630907, + "c3": -15.902497625520457, + "c4": 2.91648286833108, + "c5": 6.8007330724010515, + "c6": -3.572847380649172, + "c7": 22.514575040927056 }, - "vertexSeeds": { - "c1": 3.2814944870942337, - "c2": 2.9572427871226283, - "c3": 3.1793228562503226, - "c4": 3.2333995039967447, - "c5": 3.0313417449496494, - "c6": 3.175980629082657, - "c7": 3.066987281109679 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.022191400832173, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328679, + "c7": 0.8044382801664307 }, "rgb": [77, 76, 132] }, @@ -29841,23 +29841,23 @@ "year": 1692, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -31.562636846178737, - "c2": -10.355998087312578, - "c3": 15.311865134758222, - "c4": -21.03010700775878, - "c5": -2.4924561863274235, - "c6": -11.82258205781821, - "c7": -32.95060460138603 + "points": { + "c1": -4.3329941100178715, + "c2": -17.659150669648415, + "c3": -21.182837795544856, + "c4": 44.737049506912754, + "c5": -39.63009108901044, + "c6": -45.111779892364375, + "c7": -42.84739878295128 }, - "vertexSeeds": { - "c1": 10.92766966449532, - "c2": 9.261128611877293, - "c3": 9.540725560058716, - "c4": 10.528674720269311, - "c5": 9.385649743597805, - "c6": 10.028830309886178, - "c7": 10.894929362471263 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846053, + "c3": 13.129912159038366, + "c4": 10.503929727230696, + "c5": 7.877947295423026, + "c6": 5.251964863615348, + "c7": 2.625982431807669 }, "rgb": [222, 0, 59] }, @@ -29868,23 +29868,23 @@ "year": 1692, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -24.22592120294916, - "c2": -17.548471849198666, - "c3": -40.77696816634269, - "c4": -14.689537793124689, - "c5": 29.984627300430574, - "c6": 14.976092184343464, - "c7": 42.35270659412758 + "points": { + "c1": -29.502883260554217, + "c2": -33.98151372881911, + "c3": 7.639392031700034, + "c4": -37.82398811630895, + "c5": -45.46782289275699, + "c6": -11.239452439091686, + "c7": -29.951403232242825 }, - "vertexSeeds": { - "c1": 6.3686437675280665, - "c2": 6.734173527838163, - "c3": 6.185705828846345, - "c4": 5.959996430024974, - "c5": 6.6026488473699105, - "c6": 6.567014420385499, - "c7": 6.039429972014771 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002775, + "c3": 8.622283865002315, + "c4": 6.897827092001853, + "c5": 5.173370319001383, + "c6": 3.448913546000922, + "c7": 1.724456773000461 }, "rgb": [86, 146, 138] }, @@ -29895,23 +29895,23 @@ "year": 1692, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 14.543676278988976, - "c2": 4.019720122150538, - "c3": 3.0347038336204832, - "c4": -38.35434879241716, - "c5": 20.876637064280757, - "c6": 36.24272782663127, - "c7": -27.91239619214562 + "points": { + "c1": 20.654708529985427, + "c2": -37.87979121603114, + "c3": 41.62081409158681, + "c4": -39.189171943420874, + "c5": -5.889446998701317, + "c6": 2.2310356442361012, + "c7": -23.09915183023938 }, - "vertexSeeds": { - "c1": 10.33197511697244, - "c2": 11.714726636674248, - "c3": 11.245413425922248, - "c4": 11.479595418104498, - "c5": 11.331498303967194, - "c6": 11.188908527974053, - "c7": 11.35887549598888 + "offsets": { + "c1": 20.19417475728155, + "c2": 17.309292649098467, + "c3": 14.4244105409154, + "c4": 11.539528432732315, + "c5": 8.654646324549228, + "c6": 5.769764216366162, + "c7": 2.8848821081830764 }, "rgb": [86, 146, 138] }, @@ -29922,23 +29922,23 @@ "year": 1693, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": 0.5497522834756552, - "c2": -55.32598852031114, - "c3": -54.12297653218471, - "c4": -72.18720042504366, - "c5": -72.68410948490532, - "c6": 18.738078104208682, - "c7": -30.790185618921498 + "points": { + "c1": 23.79252652125909, + "c2": -26.579869040656583, + "c3": -42.75526427937137, + "c4": -50.46405953198028, + "c5": -25.053534893846063, + "c6": -45.04697412486788, + "c7": -34.85570918493402 }, - "vertexSeeds": { - "c1": 6.769303836721222, - "c2": 6.673598987556572, - "c3": 6.725808293309055, - "c4": 6.724496385448514, - "c5": 7.332452055652174, - "c6": 6.783015065673228, - "c7": 6.91607339368256 + "offsets": { + "c1": 12.653721682847896, + "c2": 10.84604715672677, + "c3": 9.038372630605643, + "c4": 7.230698104484517, + "c5": 5.4230235783633916, + "c6": 3.615349052242265, + "c7": 1.807674526121139 }, "rgb": [77, 76, 132] }, @@ -29949,23 +29949,23 @@ "year": 1691, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -24.889397993412715, - "c2": 21.85556578735457, - "c3": -0.12085771768593645, - "c4": -11.201465485379568, - "c5": -17.02117918374939, - "c6": 2.0288988278995106, - "c7": -0.31746367780555573 + "points": { + "c1": 11.561011863819296, + "c2": 20.173470884784138, + "c3": -8.790384599883385, + "c4": 28.74015210746517, + "c5": 8.250281894749477, + "c6": -22.894790519879603, + "c7": 6.792844929445167 }, - "vertexSeeds": { - "c1": 14.950071825923056, - "c2": 14.98146286392456, - "c3": 15.033238545107826, - "c4": 15.087029151435598, - "c5": 14.892122268410168, - "c6": 15.057658172416977, - "c7": 14.982132356954354 + "offsets": { + "c1": 25.275080906148865, + "c2": 21.664355062413367, + "c3": 18.05362921867787, + "c4": 14.442903374942183, + "c5": 10.832177531206684, + "c6": 7.221451687471187, + "c7": 3.610725843735689 }, "rgb": [77, 76, 132] }, @@ -29976,23 +29976,23 @@ "year": 1691, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 13.129212334521107, - "c2": 18.833954605891407, - "c3": 11.332928882017868, - "c4": 18.359663417181835, - "c5": -0.6689365775278588, - "c6": -25.891975973192284, - "c7": 21.889613528089534 + "points": { + "c1": -7.549527256335743, + "c2": 26.706466981345528, + "c3": 18.091101015850747, + "c4": -28.70657378496049, + "c5": 3.0582370871255904, + "c6": 10.124451033533312, + "c7": 25.22158364387286 }, - "vertexSeeds": { - "c1": 8.729329166959728, - "c2": 8.865281225371612, - "c3": 8.778099382316075, - "c4": 8.896708251895943, - "c5": 8.911728130626658, - "c6": 8.699320822841289, - "c7": 8.732269969111922 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502059, + "c3": 10.63337956541841, + "c4": 8.506703652334705, + "c5": 6.380027739251057, + "c6": 4.253351826167353, + "c7": 2.1266759130837047 }, "rgb": [238, 201, 159] }, @@ -30003,23 +30003,23 @@ "year": 1691, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -18.229332827229474, - "c2": -31.366586942773438, - "c3": 31.128019522057073, - "c4": -3.2074333008171507, - "c5": 34.090441667651746, - "c6": -26.959683562323868, - "c7": 15.18942559571208 + "points": { + "c1": 31.73591595263585, + "c2": -11.917626286660415, + "c3": -12.70936111725852, + "c4": 17.558224710799834, + "c5": 41.45055753946785, + "c6": -35.75848231589562, + "c7": -5.643473395601305 }, - "vertexSeeds": { - "c1": 9.91618082805258, - "c2": 11.264695940172668, - "c3": 10.35999806183718, - "c4": 8.955223326903768, - "c5": 10.744328891787017, - "c6": 9.867634699256659, - "c7": 9.397412607327778 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.588072122052697, + "c3": 13.823393435043924, + "c4": 11.058714748035133, + "c5": 8.294036061026357, + "c6": 5.529357374017566, + "c7": 2.764678687008783 }, "rgb": [58, 15, 49] }, @@ -30030,23 +30030,23 @@ "year": 1691, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 23.55430360048146, - "c2": 11.858219404759339, - "c3": -8.352557046987222, - "c4": -22.386226620922773, - "c5": 3.296296440534377, - "c6": 33.22252866494745, - "c7": -28.053795956776362 + "points": { + "c1": 13.79272904760986, + "c2": 7.994632669741122, + "c3": -31.514473823746407, + "c4": 16.077573117978737, + "c5": 17.383348064473424, + "c6": -42.11775284111105, + "c7": 20.040274639833775 }, - "vertexSeeds": { - "c1": 12.185755751776234, - "c2": 12.003710952441402, - "c3": 11.427959523535591, - "c4": 11.322644726103176, - "c5": 11.747300733374239, - "c6": 12.00364615159889, - "c7": 11.891571030150777 + "offsets": { + "c1": 20.550161812297734, + "c2": 17.614424410540902, + "c3": 14.67868700878407, + "c4": 11.742949607027283, + "c5": 8.807212205270451, + "c6": 5.87147480351362, + "c7": 2.9357374017568314 }, "rgb": [222, 0, 59] }, @@ -30057,23 +30057,23 @@ "year": 1691, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 17.757173159153993, - "c2": 36.289633890721234, - "c3": -7.228952635812636, - "c4": 19.824306896332303, - "c5": -27.801875955039208, - "c6": 6.956567484396196, - "c7": 7.363231949792379 + "points": { + "c1": -22.61651523690928, + "c2": -14.652687174606555, + "c3": -8.663017062383137, + "c4": -11.690599590895385, + "c5": -21.75477577408551, + "c6": -5.548827338508765, + "c7": 18.392969770253316 }, - "vertexSeeds": { - "c1": 2.0446400713300927, - "c2": 2.200550053811236, - "c3": 2.2677612299400023, - "c4": 2.251612524005876, - "c5": 2.14480312737341, - "c6": 2.2424661784016062, - "c7": 2.2590583059788694 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461853, + "c3": 2.727693018955154, + "c4": 2.1821544151641263, + "c5": 1.6366158113730944, + "c6": 1.0910772075820632, + "c7": 0.5455386037910316 }, "rgb": [58, 15, 49] }, @@ -30084,23 +30084,23 @@ "year": 1692, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": -33.74255149073774, - "c2": -22.76992409206647, - "c3": 37.52241626302319, - "c4": -41.18550578618521, - "c5": -39.58990169524355, - "c6": 16.364935266812978, - "c7": 43.6262716505627 + "points": { + "c1": 50.98859757673674, + "c2": 30.792612319726274, + "c3": -33.6356229318978, + "c4": 13.175272444678015, + "c5": 32.087573663853206, + "c6": 7.644335480711774, + "c7": 20.033854620579376 }, - "vertexSeeds": { - "c1": 11.542707163019745, - "c2": 9.847079228912104, - "c3": 9.93483824291942, - "c4": 10.417269015501144, - "c5": 10.61670529079044, - "c6": 10.366776244492065, - "c7": 9.931819463949566 + "offsets": { + "c1": 20.19417475728155, + "c2": 17.309292649098467, + "c3": 14.4244105409154, + "c4": 11.539528432732315, + "c5": 8.654646324549228, + "c6": 5.769764216366162, + "c7": 2.8848821081830764 }, "rgb": [58, 15, 49] }, @@ -30111,23 +30111,23 @@ "year": 1692, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 5.837838785712865, - "c2": 19.719798464532065, - "c3": -22.989636387250556, - "c4": 20.898731375724747, - "c5": -24.97905251699505, - "c6": 11.82186139963856, - "c7": 30.474772406017284 + "points": { + "c1": 28.529954021856383, + "c2": 23.519977424673527, + "c3": 15.469913613127524, + "c4": -4.826359602558128, + "c5": -17.35446647107438, + "c6": -22.021650835484095, + "c7": -2.1997772283628017 }, - "vertexSeeds": { - "c1": 9.090102957786716, - "c2": 8.335105538590652, - "c3": 8.409446228720228, - "c4": 9.293772380134362, - "c5": 8.585212569682529, - "c6": 8.987011549226596, - "c7": 8.611402016366103 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.78640776699029, + "c3": 11.488673139158577, + "c4": 9.190938511326861, + "c5": 6.893203883495145, + "c6": 4.5954692556634305, + "c7": 2.2977346278317152 }, "rgb": [58, 15, 49] }, @@ -30138,23 +30138,23 @@ "year": 1692, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": 6.9352605905187374, - "c2": 21.623810749792405, - "c3": -8.685260940020717, - "c4": -12.17799082493639, - "c5": 15.04248381360501, - "c6": 19.105370352381982, - "c7": 11.427595669470307 + "points": { + "c1": 6.155903779150048, + "c2": 16.241800523058103, + "c3": -1.3234224692131136, + "c4": 17.229093727189294, + "c5": -12.977839614137995, + "c6": -6.417068813016776, + "c7": 10.094422502501352 }, - "vertexSeeds": { - "c1": 10.146385069290108, - "c2": 11.290257027424426, - "c3": 10.712968972882624, - "c4": 11.206599576126095, - "c5": 11.550502413563976, - "c6": 10.923688125936959, - "c7": 11.617100043357217 + "offsets": { + "c1": 19.611650485436893, + "c2": 16.809986130374487, + "c3": 14.008321775312057, + "c4": 11.20665742024965, + "c5": 8.404993065187243, + "c6": 5.6033287101248135, + "c7": 2.8016643550624067 }, "rgb": [86, 146, 138] }, @@ -30165,23 +30165,23 @@ "year": 1692, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -41.72846144971546, - "c2": 4.23756744533712, - "c3": -4.779657323493822, - "c4": 9.2898683104318, - "c5": 37.397454279634616, - "c6": -40.68197625331599, - "c7": -22.082837892529394 + "points": { + "c1": 37.80907724019474, + "c2": -13.432001987267846, + "c3": -26.48559688303598, + "c4": 37.04769398254119, + "c5": -9.878537137484052, + "c6": -5.952228699841477, + "c7": -23.564723181055587 }, - "vertexSeeds": { - "c1": 9.788583922524312, - "c2": 9.959260618383993, - "c3": 9.636861830375942, - "c4": 9.54844556426905, - "c5": 10.170796687919449, - "c6": 9.967803285884722, - "c7": 9.569593893475757 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [58, 15, 49] }, @@ -30192,23 +30192,23 @@ "year": 1692, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 7.513588798662802, - "c2": -37.33835025316287, - "c3": -15.922231478615544, - "c4": -38.161866651164466, - "c5": 13.563222335356791, - "c6": 36.85416920745021, - "c7": -18.497123675302188 + "points": { + "c1": -30.236385403209095, + "c2": -8.814463652891547, + "c3": 32.1916661904949, + "c4": 36.797093205398696, + "c5": 3.6757247293815567, + "c6": -17.554760482084497, + "c7": 42.07531122737069 }, - "vertexSeeds": { - "c1": 8.145001852785697, - "c2": 8.013612029804879, - "c3": 8.52176223376055, - "c4": 8.395679872390536, - "c5": 7.941102702213841, - "c6": 8.23166268240751, - "c7": 8.175023058364248 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.78779472954231, + "c3": 10.656495607951918, + "c4": 8.525196486361539, + "c5": 6.3938973647711475, + "c6": 4.262598243180769, + "c7": 2.1312991215903914 }, "rgb": [238, 201, 159] }, @@ -30219,23 +30219,23 @@ "year": 1693, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 33.02300651398823, - "c2": 26.49527339108611, - "c3": -32.61450811375377, - "c4": -30.724197662916, - "c5": 25.34723182243993, - "c6": -45.69187100257824, - "c7": -7.519431025741959 + "points": { + "c1": 47.75718337295098, + "c2": 28.378400922503452, + "c3": -43.85209397190566, + "c4": 0.09400705157373324, + "c5": -38.044567320001036, + "c6": 50.041458697958255, + "c7": -5.40029345195174 }, - "vertexSeeds": { - "c1": 7.815368927516398, - "c2": 8.874813569880908, - "c3": 7.868647930728346, - "c4": 8.731173501023411, - "c5": 8.077290708418369, - "c6": 8.830611992272987, - "c7": 8.486735549354979 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [238, 201, 159] }, @@ -30246,23 +30246,23 @@ "year": 1692, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 16.769361312879475, - "c2": -30.24967882534569, - "c3": 10.117500255957943, - "c4": -40.55085312074492, - "c5": -16.61048099778529, - "c6": 13.934942879907652, - "c7": 40.707797848727196 + "points": { + "c1": -0.6415724326553018, + "c2": 30.116881478584276, + "c3": 2.6338433467686784, + "c4": -31.89393540551645, + "c5": 13.279128328838105, + "c6": -28.140541494294595, + "c7": -37.22094171923575 }, - "vertexSeeds": { - "c1": 14.082566571227636, - "c2": 12.932441191707499, - "c3": 14.379863533133864, - "c4": 15.599568873640436, - "c5": 13.959332309507115, - "c6": 12.640296906934825, - "c7": 15.006182761710013 + "offsets": { + "c1": 27.669902912621357, + "c2": 23.717059639389728, + "c3": 19.764216366158117, + "c4": 15.811373092926486, + "c5": 11.858529819694871, + "c6": 7.905686546463243, + "c7": 3.952843273231629 }, "rgb": [222, 0, 59] }, @@ -30273,23 +30273,23 @@ "year": 1692, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -33.89672132815633, - "c2": -29.80307093360723, - "c3": 33.075263761840546, - "c4": -34.62330741061986, - "c5": -5.816159084922187, - "c6": -9.103642577138139, - "c7": -12.701084167491281 + "points": { + "c1": -30.54259222674864, + "c2": -11.858415522052884, + "c3": 12.792242763707478, + "c4": 25.1324019874331, + "c5": 6.801532034562996, + "c6": 31.22388976735469, + "c7": -15.135048968373688 }, - "vertexSeeds": { - "c1": 7.336115393861024, - "c2": 6.442076702952563, - "c3": 6.750661808936131, - "c4": 7.354153427568966, - "c5": 7.725526754537299, - "c6": 6.031149446687716, - "c7": 7.713272961201601 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.246417013407301, + "c4": 7.3971336107258425, + "c5": 5.547850208044384, + "c6": 3.6985668053629173, + "c7": 1.8492834026814586 }, "rgb": [238, 201, 159] }, @@ -30300,23 +30300,23 @@ "year": 1692, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 9.869105557751602, - "c2": -37.63800117669372, - "c3": 13.495824145055508, - "c4": 22.263724854521136, - "c5": 29.496536298631185, - "c6": 7.044956077859602, - "c7": -4.559495888291181 + "points": { + "c1": -18.990063296672023, + "c2": 29.522578705192444, + "c3": 39.87231448233254, + "c4": 39.226044468591084, + "c5": -10.00731867718001, + "c6": -36.03100868602747, + "c7": -16.505163071001654 }, - "vertexSeeds": { - "c1": 11.328492165066555, - "c2": 11.937291443421445, - "c3": 12.250738064298957, - "c4": 12.029461209402712, - "c5": 11.576270474328396, - "c6": 12.042006623719674, - "c7": 11.63267696386811 + "offsets": { + "c1": 20.550161812297734, + "c2": 17.614424410540895, + "c3": 14.678687008784102, + "c4": 11.742949607027265, + "c5": 8.80721220527047, + "c6": 5.871474803513633, + "c7": 2.9357374017567928 }, "rgb": [58, 15, 49] }, @@ -30327,23 +30327,23 @@ "year": 1692, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -2.0187977434649724, - "c2": 17.019186918626936, - "c3": -9.343884665642506, - "c4": -20.725784753918056, - "c5": -22.36433913142294, - "c6": 0.35519084109811416, - "c7": -2.7726262937504558 + "points": { + "c1": -36.93211394988862, + "c2": 11.35674946330986, + "c3": 8.880995451586273, + "c4": -22.563501220529687, + "c5": 6.7004535678750585, + "c6": -7.403800622918176, + "c7": -4.060604276208132 }, - "vertexSeeds": { - "c1": 3.388281808716134, - "c2": 3.4525879170910203, - "c3": 3.8016487803272576, - "c4": 3.780384808317239, - "c5": 3.5748229763178707, - "c6": 3.766032154343283, - "c7": 3.5824794637141424 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044385, + "c3": 4.6232085067036515, + "c4": 3.6985668053629235, + "c5": 2.7739251040221897, + "c6": 1.8492834026814617, + "c7": 0.9246417013407279 }, "rgb": [238, 201, 159] }, @@ -30354,23 +30354,23 @@ "year": 1693, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 32.61661973949023, - "c2": -35.97299451769661, - "c3": 43.30995380179334, - "c4": -20.48399575518205, - "c5": 14.460295899192268, - "c6": 3.924045681606877, - "c7": -25.851577794371913 + "points": { + "c1": -31.290572188038762, + "c2": 12.778968800875141, + "c3": -27.365458925797725, + "c4": 41.18200014791377, + "c5": 28.71732160647609, + "c6": -46.22036262952038, + "c7": 36.891623478240206 }, - "vertexSeeds": { - "c1": 10.712841111551844, - "c2": 12.974620972934408, - "c3": 12.024825078909815, - "c4": 11.412511472110673, - "c5": 11.61240719788377, - "c6": 12.026817648899685, - "c7": 13.305888292456427 + "offsets": { + "c1": 22.233009708737864, + "c2": 19.056865464632452, + "c3": 15.880721220527041, + "c4": 12.704576976421649, + "c5": 9.528432732316235, + "c6": 6.352288488210824, + "c7": 3.176144244105412 }, "rgb": [58, 15, 49] }, @@ -30381,23 +30381,23 @@ "year": 1693, "resistanceReported": false, "duration": 46569600, - "curveSeeds": { - "c1": -10.167908565703996, - "c2": -40.81759103428126, - "c3": -26.332885466203173, - "c4": 1.0405043303968498, - "c5": 14.679824549369691, - "c6": -49.09592119787727, - "c7": 29.12787447908817 + "points": { + "c1": -50.05920401257998, + "c2": 41.67239344573988, + "c3": 26.564145258951292, + "c4": 61.01649085256435, + "c5": 32.63470975026838, + "c6": 53.575474960264465, + "c7": -41.164466711348204 }, - "vertexSeeds": { - "c1": 1.8213024482489806, - "c2": 2.027856871269831, - "c3": 1.8113919872547963, - "c4": 2.008267192627892, - "c5": 1.9055127179365872, - "c6": 1.7761711840799308, - "c7": 1.9317395874940513 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.079056865464632, + "c3": 2.565880721220526, + "c4": 2.0527045769764207, + "c5": 1.539528432732315, + "c6": 1.0263522884882113, + "c7": 0.5131761442441036 }, "rgb": [86, 146, 138] }, @@ -30408,23 +30408,23 @@ "year": 1693, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 27.31752934021354, - "c2": 27.382335221951237, - "c3": 34.071065231109074, - "c4": -8.839593463156941, - "c5": -22.663862185587753, - "c6": -0.4230831153534851, - "c7": -2.2192696579796944 + "points": { + "c1": -29.911542422919574, + "c2": -9.594018998333038, + "c3": -31.241050542424514, + "c4": 24.262403265523474, + "c5": -38.11669777901121, + "c6": 37.492236419908906, + "c7": 35.20672944490862 }, - "vertexSeeds": { - "c1": 11.139874746051621, - "c2": 10.52335464670283, - "c3": 9.708706709776033, - "c4": 9.789986582981518, - "c5": 12.411080163631706, - "c6": 11.39535202762834, - "c7": 10.339920206276162 + "offsets": { + "c1": 20.74433656957929, + "c2": 17.78085991678225, + "c3": 14.8173832639852, + "c4": 11.853906611188162, + "c5": 8.890429958391126, + "c6": 5.926953305594089, + "c7": 2.9634766527970373 }, "rgb": [238, 201, 159] }, @@ -30435,23 +30435,23 @@ "year": 1693, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -1.6761812781750436, - "c2": -34.348962810835566, - "c3": 32.76121627566518, - "c4": 27.464071246047567, - "c5": -5.099356583460107, - "c6": -30.938038390266694, - "c7": -19.402532781038687 + "points": { + "c1": 28.769221606842194, + "c2": -22.062538227761003, + "c3": 6.092105057990885, + "c4": -21.77671173675543, + "c5": -10.190637997253237, + "c6": 35.14461138764361, + "c7": -11.97692810879277 }, - "vertexSeeds": { - "c1": 8.699337536072207, - "c2": 8.625628289145903, - "c3": 8.903054647115884, - "c4": 8.651325607775197, - "c5": 8.891192549768931, - "c6": 8.349989023155787, - "c7": 8.580665209483877 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065181, + "c3": 10.957004160887658, + "c4": 8.765603328710121, + "c5": 6.574202496532599, + "c6": 4.3828016643550605, + "c7": 2.191400832177538 }, "rgb": [238, 201, 159] }, @@ -30462,23 +30462,23 @@ "year": 1693, "resistanceReported": true, "duration": 30499200, - "curveSeeds": { - "c1": 18.427102200800135, - "c2": 14.454907193083592, - "c3": -31.62004602964471, - "c4": 7.568203833923185, - "c5": -28.09443327354063, - "c6": -36.19880774821116, - "c7": 0.12019479166850999 + "points": { + "c1": 35.746860795350656, + "c2": -37.91560501222823, + "c3": 22.9812289571247, + "c4": 38.72655001403028, + "c5": -14.775300082671478, + "c6": -34.411285138198366, + "c7": 37.516088424732416 }, - "vertexSeeds": { - "c1": 14.262215893926319, - "c2": 14.237716571052019, - "c3": 14.271230645624879, - "c4": 14.15598052859316, - "c5": 14.214364366033143, - "c6": 14.293880673356183, - "c7": 14.210814844666038 + "offsets": { + "c1": 23.883495145631066, + "c2": 20.471567267683643, + "c3": 17.059639389736518, + "c4": 13.647711511789096, + "c5": 10.23578363384197, + "c6": 6.823855755894548, + "c7": 3.4119278779474245 }, "rgb": [58, 15, 49] }, @@ -30489,23 +30489,23 @@ "year": 1693, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 2.3737852991399855, - "c2": 2.6713414408645555, - "c3": 18.774990563035054, - "c4": 0.2298233440441635, - "c5": -15.705158947275144, - "c6": -20.961354522856393, - "c7": 2.6213498489994045 + "points": { + "c1": 21.54042110440738, + "c2": 25.439681426884782, + "c3": -8.352814734370277, + "c4": 9.796076683591366, + "c5": -20.930825407519265, + "c6": -19.212689829093268, + "c7": 19.82561290002448 }, - "vertexSeeds": { - "c1": 9.989310313620425, - "c2": 9.47452879298442, - "c3": 9.60023579134816, - "c4": 10.084833490808062, - "c5": 10.009588536778747, - "c6": 9.085333545512581, - "c7": 9.27702526918339 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.56310679611652, + "c3": 12.135922330097088, + "c4": 9.70873786407767, + "c5": 7.281553398058252, + "c6": 4.854368932038835, + "c7": 2.4271844660194173 }, "rgb": [58, 15, 49] }, @@ -30516,23 +30516,23 @@ "year": 1693, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -31.151076066226604, - "c2": 8.634829326647598, - "c3": 14.360387171045446, - "c4": 20.850425414592223, - "c5": -17.309678231996077, - "c6": 21.07719853210765, - "c7": 1.1588242120815693 + "points": { + "c1": 32.37701359217642, + "c2": 19.124033377336424, + "c3": 24.443455645263377, + "c4": 21.559996106003545, + "c5": -17.281051052590477, + "c6": 22.7453367923358, + "c7": -10.70422905397152 }, - "vertexSeeds": { - "c1": 14.018272803210696, - "c2": 13.367111458149235, - "c3": 14.097975202287007, - "c4": 14.038672614565057, - "c5": 13.400834475664006, - "c6": 13.500037489527083, - "c7": 13.548253570703759 + "offsets": { + "c1": 23.656957928802587, + "c2": 20.277392510402212, + "c3": 16.897827092001837, + "c4": 13.518261673601462, + "c5": 10.138696255201086, + "c6": 6.75913083680075, + "c7": 3.379565418400375 }, "rgb": [222, 0, 59] }, @@ -30543,23 +30543,23 @@ "year": 1693, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 1.616137979769988, - "c2": 9.359771172713934, - "c3": -28.363148269292385, - "c4": -7.2296982746670295, - "c5": -1.9460024208807027, - "c6": 28.13146258966198, - "c7": 28.92741482708192 + "points": { + "c1": -10.568378904998553, + "c2": 36.490917146818475, + "c3": -14.076217817126512, + "c4": -18.155717649810313, + "c5": 5.6281764027371395, + "c6": 28.860579718138453, + "c7": 36.13117792509949 }, - "vertexSeeds": { - "c1": 6.312118822495824, - "c2": 6.373766857839547, - "c3": 6.29638554808496, - "c4": 6.32713115906289, - "c5": 7.345975484770131, - "c6": 6.865316123406451, - "c7": 6.476968784526791 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343042, + "c4": 7.637540453074433, + "c5": 5.7281553398058245, + "c6": 3.8187702265372163, + "c7": 1.9093851132686082 }, "rgb": [86, 146, 138] }, @@ -30570,23 +30570,23 @@ "year": 1693, "resistanceReported": true, "duration": 22377600, - "curveSeeds": { - "c1": -11.458615587381974, - "c2": -28.51274498539496, - "c3": -20.125460454072538, - "c4": -29.70420534288219, - "c5": 4.805111293618701, - "c6": 18.40222553259904, - "c7": -0.03906888184033619 + "points": { + "c1": -1.9139299257669222, + "c2": -20.002397459893228, + "c3": 1.8411696134823217, + "c4": -12.725565919080513, + "c5": 31.72988880589145, + "c6": -3.96620059188799, + "c7": -1.7770712456946782 }, - "vertexSeeds": { - "c1": 7.793883958192665, - "c2": 7.774944121914782, - "c3": 7.801430943992964, - "c4": 7.912048958752363, - "c5": 7.833294071833803, - "c6": 7.821897598635405, - "c7": 7.998868928844314 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933442, + "c3": 9.731853906611182, + "c4": 7.785483125288962, + "c5": 5.839112343966701, + "c6": 3.892741562644481, + "c7": 1.9463707813222209 }, "rgb": [238, 201, 159] }, @@ -30597,23 +30597,23 @@ "year": 1693, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -34.76552299902442, - "c2": -29.805883671489603, - "c3": 14.662623146933527, - "c4": -11.610979886547721, - "c5": 36.40914244731217, - "c6": 28.71470539341488, - "c7": -38.514251598516545 + "points": { + "c1": 25.05060750179542, + "c2": 8.805405547171922, + "c3": -22.989829754322383, + "c4": 35.03780967045176, + "c5": -25.629698170801237, + "c6": -35.268025035596885, + "c7": -3.2940440927432206 }, - "vertexSeeds": { - "c1": 8.072973553444383, - "c2": 8.831829218402955, - "c3": 10.16511669745732, - "c4": 11.389853306811109, - "c5": 7.591594603535498, - "c6": 8.032882116988038, - "c7": 6.798505790472184 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.588072122052708, + "c3": 13.823393435043922, + "c4": 11.058714748035138, + "c5": 8.294036061026352, + "c6": 5.529357374017569, + "c7": 2.7646786870087863 }, "rgb": [77, 76, 132] }, @@ -30624,23 +30624,23 @@ "year": 1693, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 29.447539568675325, - "c2": -18.852720870477885, - "c3": 10.630610529779169, - "c4": -43.19814457884834, - "c5": 28.641549893637844, - "c6": -30.84506759363788, - "c7": 41.2511607558571 + "points": { + "c1": -24.610655033040636, + "c2": 2.980877789250137, + "c3": 38.87502142586898, + "c4": 17.722836403512233, + "c5": 5.266749029530892, + "c6": 18.369425750186167, + "c7": -5.994114065838652 }, - "vertexSeeds": { - "c1": 6.506394476872085, - "c2": 4.632850872394775, - "c3": 4.514517835021229, - "c4": 6.483797876063814, - "c5": 6.947810560345597, - "c6": 4.231897470341115, - "c7": 3.927790709677384 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042998, + "c3": 8.645399907535829, + "c4": 6.916319926028665, + "c5": 5.187239944521497, + "c6": 3.4581599630143325, + "c7": 1.7290799815071662 }, "rgb": [77, 76, 132] }, @@ -30651,23 +30651,23 @@ "year": 1693, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 37.92515956152831, - "c2": -37.6810047893957, - "c3": 46.647174082760806, - "c4": 33.34587266225855, - "c5": 35.3325253675608, - "c6": -21.81811382827633, - "c7": -45.058453267707726 + "points": { + "c1": -26.601374126861113, + "c2": 6.990852386313513, + "c3": -33.28769186169084, + "c4": -3.9865115981870716, + "c5": -0.07121446095327855, + "c6": 23.64852387702617, + "c7": -40.50079168109461 }, - "vertexSeeds": { - "c1": 6.133363912639517, - "c2": 5.67976141068017, - "c3": 5.647854241762625, - "c4": 5.649682052400384, - "c5": 7.036460017926245, - "c6": 6.259367534893151, - "c7": 6.894188013366163 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629681001, + "c3": 8.437355524734162, + "c4": 6.749884419787331, + "c5": 5.062413314840501, + "c6": 3.37494220989367, + "c7": 1.6874711049468303 }, "rgb": [238, 201, 159] }, @@ -30678,23 +30678,23 @@ "year": 1693, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 27.858624298769122, - "c2": -7.518976715123777, - "c3": 24.68647569071483, - "c4": -5.911323823427409, - "c5": 23.929660850477703, - "c6": -27.942713529313508, - "c7": -4.859250602565439 + "points": { + "c1": -30.949491133857506, + "c2": -11.528460534546003, + "c3": -7.185886685008946, + "c4": 31.015658239104248, + "c5": -24.608514551695325, + "c6": -10.848806934312258, + "c7": -13.957869244228664 }, - "vertexSeeds": { - "c1": 5.981775259102509, - "c2": 7.953944034698545, - "c3": 7.357994067821547, - "c4": 5.843538151747957, - "c5": 5.765707595983254, - "c6": 8.065724184661985, - "c7": 7.143290637310374 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099861, + "c3": 10.402219140083218, + "c4": 8.321775312066576, + "c5": 6.241331484049933, + "c6": 4.16088765603329, + "c7": 2.080443828016643 }, "rgb": [77, 76, 132] }, @@ -30705,23 +30705,23 @@ "year": 1694, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -10.547028041581648, - "c2": 11.697993641257717, - "c3": -18.578375937013604, - "c4": -12.778569403547923, - "c5": 36.264656079242386, - "c6": -8.783840217138831, - "c7": -29.74414259460466 + "points": { + "c1": -30.211755014772834, + "c2": -21.806162434609316, + "c3": 18.197689573385333, + "c4": -1.4822596746318908, + "c5": 43.86566883265456, + "c6": 46.03384822195464, + "c7": 26.9497803116695 }, - "vertexSeeds": { - "c1": 10.816595274339996, - "c2": 9.195997484557163, - "c3": 10.728987714561336, - "c4": 10.047132448883117, - "c5": 8.753797136266734, - "c6": 9.538762820542143, - "c7": 9.96382660022443 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.589459084604716, + "c3": 12.991215903837265, + "c4": 10.39297272306981, + "c5": 7.794729542302358, + "c6": 5.196486361534905, + "c7": 2.5982431807674526 }, "rgb": [86, 146, 138] }, @@ -30732,23 +30732,23 @@ "year": 1694, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 38.247029987401, - "c2": -19.301728694504156, - "c3": 8.67071466260834, - "c4": 39.8164310642072, - "c5": -35.18300493222195, - "c6": 53.874956685447124, - "c7": -55.429036988775586 + "points": { + "c1": 47.58395814605728, + "c2": 44.6373429232054, + "c3": -5.876935721941209, + "c4": 49.808723373101294, + "c5": -27.47015009171555, + "c6": -13.345642341021751, + "c7": -2.0012446548787395 }, - "vertexSeeds": { - "c1": 14.110899100181786, - "c2": 13.706914717629095, - "c3": 14.137585662821712, - "c4": 13.795182903528309, - "c5": 13.808095014197786, - "c6": 13.967714433819587, - "c7": 13.784577093010826 + "offsets": { + "c1": 23.59223300970874, + "c2": 20.22191400832176, + "c3": 16.851595006934783, + "c4": 13.481276005547803, + "c5": 10.110957004160825, + "c6": 6.740638002773958, + "c7": 3.370319001386979 }, "rgb": [238, 201, 159] }, @@ -30759,23 +30759,23 @@ "year": 1694, "resistanceReported": false, "duration": 60393600, - "curveSeeds": { - "c1": -46.52259958172072, - "c2": 41.232109362918195, - "c3": -54.7084634464579, - "c4": -4.229910408345063, - "c5": 3.320236593426614, - "c6": 44.12746535297828, - "c7": -1.8227214398793734 + "points": { + "c1": -30.754214717121435, + "c2": -49.918431127373836, + "c3": 8.344792099010903, + "c4": 1.0199981334656343, + "c5": -6.6145247175334845, + "c6": -24.208877008880215, + "c7": -21.77480849819875 }, - "vertexSeeds": { - "c1": 0.561951600411943, - "c2": 0.6320404546399938, - "c3": 0.6170908304663649, - "c4": 0.6043315281772855, - "c5": 0.6017974298564469, - "c6": 0.5127220628787653, - "c7": 0.5833028576176003 + "offsets": { + "c1": 1.1003236245954693, + "c2": 0.9431345353675448, + "c3": 0.7859454461396215, + "c4": 0.628756356911697, + "c5": 0.47156726768377294, + "c6": 0.3143781784558485, + "c7": 0.15718908922792452 }, "rgb": [222, 0, 59] }, @@ -30786,23 +30786,23 @@ "year": 1694, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -32.85051113162504, - "c2": -12.757840483201658, - "c3": -26.32334496717928, - "c4": 22.049296198536823, - "c5": -26.09584776345875, - "c6": 16.554900976353274, - "c7": -40.6317626197162 + "points": { + "c1": -32.845899763051094, + "c2": 32.990416902929, + "c3": 18.686121004419682, + "c4": -22.664171898262627, + "c5": 33.91458629776511, + "c6": 37.02571236098491, + "c7": -5.483169777309406 }, - "vertexSeeds": { - "c1": 10.405937569772801, - "c2": 11.422902663842319, - "c3": 10.776252407205597, - "c4": 9.619467779460264, - "c5": 10.688510165857311, - "c6": 10.898273887395083, - "c7": 10.500059442148036 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.64355062413314, + "c3": 13.869625520110958, + "c4": 11.09570041608876, + "c5": 8.32177531206658, + "c6": 5.54785020804438, + "c7": 2.77392510402219 }, "rgb": [77, 76, 132] }, @@ -30813,23 +30813,23 @@ "year": 1694, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -8.353617008891604, - "c2": -31.636776322533116, - "c3": 7.609524283111966, - "c4": -30.173856262423833, - "c5": -31.11694307147112, - "c6": -1.3568188893663304, - "c7": 19.29166491546701 + "points": { + "c1": 12.079014832113337, + "c2": 20.62083583309488, + "c3": 4.8568501990838655, + "c4": 3.2106179830784356, + "c5": 3.8679177753224607, + "c6": -17.406770396552922, + "c7": 15.700495742387766 }, - "vertexSeeds": { - "c1": 11.439525338312299, - "c2": 11.374314137553089, - "c3": 11.62408477004297, - "c4": 11.140097954323846, - "c5": 11.464794415735911, - "c6": 11.24338262695659, - "c7": 11.127377988882815 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133123, + "c3": 13.86962552011099, + "c4": 11.095700416088777, + "c5": 8.321775312066562, + "c6": 5.5478502080443475, + "c7": 2.7739251040222146 }, "rgb": [58, 15, 49] }, @@ -30840,23 +30840,23 @@ "year": 1694, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -16.211321478615137, - "c2": -33.14237742963283, - "c3": -28.86039522690562, - "c4": -28.86562316305764, - "c5": -11.60365487597005, - "c6": 4.334729347675065, - "c7": -24.76501445981267 + "points": { + "c1": -13.657659886952157, + "c2": 26.311092091023262, + "c3": -28.262410014829403, + "c4": -27.548229324312075, + "c5": -2.8504278183658016, + "c6": 25.64730259180427, + "c7": -23.991785328260193 }, - "vertexSeeds": { - "c1": 9.601243536091209, - "c2": 9.332951479558238, - "c3": 9.853112207516874, - "c4": 10.099098701993958, - "c5": 10.039793542680384, - "c6": 9.762439744097113, - "c7": 9.633784373683135 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [77, 76, 132] }, @@ -30867,23 +30867,23 @@ "year": 1694, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -33.83591711929149, - "c2": 7.895458871320422, - "c3": -12.540011969189457, - "c4": 26.305693225774213, - "c5": 31.800507225899032, - "c6": -10.037876614572422, - "c7": 32.59681636846319 + "points": { + "c1": -11.07384248761543, + "c2": -12.578647868498194, + "c3": -34.39871162287806, + "c4": 15.809769420870673, + "c5": -13.319112966636986, + "c6": -4.868311251818447, + "c7": 18.48213234757698 }, - "vertexSeeds": { - "c1": 9.385801088905229, - "c2": 9.357065533982702, - "c3": 9.46136562624272, - "c4": 10.136488225018407, - "c5": 9.643465109742493, - "c6": 9.692223748361213, - "c7": 9.622367142039995 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [77, 76, 132] }, @@ -30894,23 +30894,23 @@ "year": 1694, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -28.619789675669185, - "c2": -31.061920790694582, - "c3": 30.824746378281006, - "c4": 11.081304881954779, - "c5": 7.253242170490438, - "c6": -25.27206856412421, - "c7": 15.472630318668031 + "points": { + "c1": -10.541235280428342, + "c2": 23.683588062406642, + "c3": -32.24945046316226, + "c4": -21.489361246033567, + "c5": 28.6709040520296, + "c6": -7.955298778940968, + "c7": -16.442716694341183 }, - "vertexSeeds": { - "c1": 10.658020178522529, - "c2": 9.973400346258043, - "c3": 10.32922035479379, - "c4": 9.403750030976704, - "c5": 9.389518225655758, - "c6": 10.299741858878205, - "c7": 10.532719393909511 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644938, + "c3": 13.014331946370781, + "c4": 10.411465557096625, + "c5": 7.808599167822469, + "c6": 5.205732778548312, + "c7": 2.602866389274156 }, "rgb": [238, 201, 159] }, @@ -30921,23 +30921,23 @@ "year": 1694, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -10.161969825040941, - "c2": -5.948382505144739, - "c3": -15.080566932061267, - "c4": 15.142697578091962, - "c5": 14.568094603726955, - "c6": -19.563031614064446, - "c7": 21.21861685283463 + "points": { + "c1": -24.090349673564138, + "c2": 27.180870731180583, + "c3": -6.635207277787064, + "c4": -13.822709064207206, + "c5": 27.81823226849633, + "c6": -32.179117880352315, + "c7": 25.25550261627481 }, - "vertexSeeds": { - "c1": 5.039027135282223, - "c2": 6.047468429827192, - "c3": 5.208224058986415, - "c4": 5.204216321583778, - "c5": 5.712666130473295, - "c6": 5.605394531310062, - "c7": 5.8544548255163384 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192789, + "c3": 7.582061950993992, + "c4": 6.065649560795195, + "c5": 4.549237170596391, + "c6": 3.032824780397594, + "c7": 1.516412390198797 }, "rgb": [77, 76, 132] }, @@ -30948,23 +30948,23 @@ "year": 1694, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 8.373188805453964, - "c2": -19.332458079844216, - "c3": -17.533738015650222, - "c4": -15.235768508561945, - "c5": 21.691965433795865, - "c6": 23.585786712886744, - "c7": -14.34331533788227 + "points": { + "c1": 24.77915675053722, + "c2": -21.447786476843447, + "c3": 1.6894350732781689, + "c4": 2.8148011047736894, + "c5": -17.061071104862684, + "c6": 1.4329172027322734, + "c7": -6.131973814107198 }, - "vertexSeeds": { - "c1": 9.777983665189929, - "c2": 10.052778298283041, - "c3": 9.532427761783293, - "c4": 9.708950640310869, - "c5": 9.370845803607219, - "c6": 9.793035977765534, - "c7": 9.592676322152172 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [58, 15, 49] }, @@ -30975,23 +30975,23 @@ "year": 1694, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": -35.438720996791325, - "c2": 19.57517453868993, - "c3": 11.43660392182985, - "c4": -41.57546623697161, - "c5": -22.970395010572396, - "c6": 13.576705505992216, - "c7": 27.376596246642187 + "points": { + "c1": -31.728524110412003, + "c2": 23.421262146901462, + "c3": -12.31371187652104, + "c4": -2.153879537473564, + "c5": 40.030630609944545, + "c6": -32.28379496788459, + "c7": 24.516062931609163 }, - "vertexSeeds": { - "c1": 5.8316168150748116, - "c2": 5.797815812713004, - "c3": 10.92845053319806, - "c4": 6.550093194534945, - "c5": 6.027217292890514, - "c6": 10.648790207559685, - "c7": 10.710303122834379 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.030513176144243, + "c3": 15.02542764678687, + "c4": 12.020342117429497, + "c5": 9.015256588072122, + "c6": 6.010171058714748, + "c7": 3.0050855293573764 }, "rgb": [238, 201, 159] }, @@ -31002,23 +31002,23 @@ "year": 1694, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -26.577387595061722, - "c2": 2.4706660374117106, - "c3": 27.98279496944579, - "c4": 38.40193601331654, - "c5": 44.84048172331747, - "c6": -21.24192679244319, - "c7": 42.1755094642953 + "points": { + "c1": -38.807481667502394, + "c2": 18.177609452536927, + "c3": -43.80857396284322, + "c4": 37.286062591486555, + "c5": 5.338592948253272, + "c6": 32.84049661363919, + "c7": 18.403859852963436 }, - "vertexSeeds": { - "c1": 13.536700466588757, - "c2": 9.058312141126505, - "c3": 9.621556380462904, - "c4": 8.876235177133642, - "c5": 9.659533963544193, - "c6": 10.780069442374298, - "c7": 10.63251416490468 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155342, + "c3": 16.18122977346279, + "c4": 12.944983818770233, + "c5": 9.708737864077674, + "c6": 6.472491909385116, + "c7": 3.236245954692556 }, "rgb": [86, 146, 138] }, @@ -31029,23 +31029,23 @@ "year": 1694, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -36.328426335265284, - "c2": -32.52475327625291, - "c3": -31.492844543764576, - "c4": 12.922312451267764, - "c5": 5.746506633428446, - "c6": 0.0008234422697057653, - "c7": 34.89220726397167 + "points": { + "c1": 32.781016151033384, + "c2": -19.30639161183639, + "c3": -21.910323151449802, + "c4": 8.296989257898325, + "c5": 33.42596786268844, + "c6": -3.8887221285545195, + "c7": 38.565996817203114 }, - "vertexSeeds": { - "c1": 9.579102848982835, - "c2": 9.375290614327334, - "c3": 10.481469858422148, - "c4": 10.404071733881958, - "c5": 9.612718092907901, - "c6": 9.760942541800993, - "c7": 10.28677806677965 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.034674063800292, + "c3": 12.528895053166899, + "c4": 10.023116042533518, + "c5": 7.517337031900138, + "c6": 5.011558021266759, + "c7": 2.5057790106333795 }, "rgb": [238, 201, 159] }, @@ -31056,23 +31056,23 @@ "year": 1694, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": -2.972804818028676, - "c2": -0.6062062887888775, - "c3": 5.416929145029229, - "c4": 15.135131274356642, - "c5": 11.512134651335796, - "c6": -14.091206763875345, - "c7": 3.922145077854122 + "points": { + "c1": -16.807854773552357, + "c2": 2.7245702311595714, + "c3": 16.475933987969192, + "c4": -0.44853742336699653, + "c5": -3.978595679954376, + "c6": -17.22359839058592, + "c7": -10.091001138204103 }, - "vertexSeeds": { - "c1": 5.8544891052189625, - "c2": 5.319662159426989, - "c3": 5.846311672619232, - "c4": 5.753279141209623, - "c5": 5.647160015907494, - "c6": 5.750396394341319, - "c7": 5.963011155904589 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061028, + "c4": 6.102635228848816, + "c5": 4.576976421636611, + "c6": 3.051317614424408, + "c7": 1.525658807212204 }, "rgb": [58, 15, 49] }, @@ -31083,23 +31083,23 @@ "year": 1694, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": 7.24716917941873, - "c2": 4.877679969178423, - "c3": 14.17326372129168, - "c4": 10.128825515421585, - "c5": 6.879091660525191, - "c6": 3.2307090823738562, - "c7": 8.298914928897574 + "points": { + "c1": -14.082322343698493, + "c2": -7.519324972272322, + "c3": 7.012910393692259, + "c4": -14.849522298240625, + "c5": -14.424799208458056, + "c6": -10.400755821120939, + "c7": 10.996383841306006 }, - "vertexSeeds": { - "c1": 5.925694265632843, - "c2": 6.136166534938269, - "c3": 6.050540873544783, - "c4": 6.073002404850532, - "c5": 5.977282231382439, - "c6": 5.9185739279341405, - "c7": 6.175021134558463 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.90429958391124, + "c3": 7.420249653259372, + "c4": 5.936199722607506, + "c5": 4.452149791955601, + "c6": 2.968099861303734, + "c7": 1.484049930651867 }, "rgb": [77, 76, 132] }, @@ -31110,23 +31110,23 @@ "year": 1694, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": 0.1038783838292936, - "c2": -11.376237540151804, - "c3": -12.208276137420398, - "c4": 5.701576965553684, - "c5": 3.757906848791425, - "c6": 4.073450578167684, - "c7": 3.7214271782214965 + "points": { + "c1": -14.984033844656826, + "c2": 12.014618952172754, + "c3": 11.360037659748443, + "c4": 12.404123316514589, + "c5": -11.435108452394818, + "c6": 6.521137469867792, + "c7": 11.131440675703693 }, - "vertexSeeds": { - "c1": 8.016423340782973, - "c2": 8.551244497247382, - "c3": 8.239178598793568, - "c4": 8.02723422160328, - "c5": 8.70589226432621, - "c6": 8.445555582008257, - "c7": 8.325387903106607 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [58, 15, 49] }, @@ -31137,23 +31137,23 @@ "year": 1694, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -1.9124665870415107, - "c2": 6.988909771554873, - "c3": -22.808770610659494, - "c4": 5.813728917928415, - "c5": -2.3653745166274334, - "c6": 18.999125109114964, - "c7": -3.789367960071889 + "points": { + "c1": -2.539437792842847, + "c2": -23.84765910129948, + "c3": 17.785727730140373, + "c4": -12.060038181721552, + "c5": -1.9488350791057591, + "c6": -2.8661704989239887, + "c7": -26.609321202401343 }, - "vertexSeeds": { - "c1": 7.5584988538027815, - "c2": 7.488565649252289, - "c3": 7.6652837980436415, - "c4": 7.451089555391034, - "c5": 7.696139228892171, - "c6": 7.529814714234815, - "c7": 7.7132601615250405 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088752, + "c3": 9.246417013407322, + "c4": 7.39713361072585, + "c5": 5.547850208044376, + "c6": 3.6985668053629026, + "c7": 1.8492834026814733 }, "rgb": [238, 201, 159] }, @@ -31164,23 +31164,23 @@ "year": 1695, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -25.488943316957197, - "c2": -34.869619349264454, - "c3": -9.138566012075067, - "c4": -12.443288107957343, - "c5": 34.26544720632748, - "c6": 43.5173717415702, - "c7": 30.50166292576617 + "points": { + "c1": -34.33810098676405, + "c2": 34.56439560364018, + "c3": 27.18343156404326, + "c4": 36.03943229632412, + "c5": -27.853265742811548, + "c6": 44.88950364170773, + "c7": -16.16561004224613 }, - "vertexSeeds": { - "c1": 6.317658186022859, - "c2": 6.553545593520326, - "c3": 6.349724691846733, - "c4": 5.727397503245379, - "c5": 4.489771433547832, - "c6": 4.8955196711064115, - "c7": 5.498700723035566 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731391, + "c4": 6.472491909385112, + "c5": 4.854368932038834, + "c6": 3.2362459546925546, + "c7": 1.6181229773462786 }, "rgb": [86, 146, 138] }, @@ -31191,23 +31191,23 @@ "year": 1695, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -0.5554727529671766, - "c2": 18.131326845731294, - "c3": 38.341517054570616, - "c4": -11.29108390658412, - "c5": -25.97113764745902, - "c6": 4.775768814105213, - "c7": 41.9592123526174 + "points": { + "c1": 46.15423128232112, + "c2": -0.40738132524448645, + "c3": -43.852483265061956, + "c4": -34.047807663092655, + "c5": -15.716376516182049, + "c6": -39.7759126833339, + "c7": -22.934539098481707 }, - "vertexSeeds": { - "c1": 11.265904337544521, - "c2": 10.644130722960883, - "c3": 10.32914176955823, - "c4": 10.597339910552833, - "c5": 11.125074478431188, - "c6": 11.226279352397619, - "c7": 10.116513440153199 + "offsets": { + "c1": 20.97087378640777, + "c2": 17.975034674063796, + "c3": 14.979195561719841, + "c4": 11.983356449375869, + "c5": 8.987517337031898, + "c6": 5.991678224687925, + "c7": 2.995839112343972 }, "rgb": [222, 0, 59] }, @@ -31218,23 +31218,23 @@ "year": 1694, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 7.156081579935268, - "c2": -6.040326062396613, - "c3": -14.580483569844692, - "c4": 6.70854959005873, - "c5": -8.087645742461017, - "c6": 0.6364091592133967, - "c7": -16.669370887946254 + "points": { + "c1": -24.217615483664424, + "c2": -19.02228596421786, + "c3": -13.07158334681733, + "c4": -18.470903108072882, + "c5": 7.656207814946669, + "c6": -2.5471927593261903, + "c7": 7.488275224028662 }, - "vertexSeeds": { - "c1": 9.330442554675344, - "c2": 9.210996933803006, - "c3": 8.860510431526196, - "c4": 9.023312903336224, - "c5": 9.034190363808175, - "c6": 8.95506300172832, - "c7": 9.023600733697815 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467415, + "c3": 11.188164586222854, + "c4": 8.950531668978266, + "c5": 6.712898751733707, + "c6": 4.475265834489147, + "c7": 2.2376329172445875 }, "rgb": [86, 146, 138] }, @@ -31245,23 +31245,23 @@ "year": 1695, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -31.537993960443032, - "c2": -30.12485641743707, - "c3": 30.452916055592198, - "c4": -7.149903272400358, - "c5": -13.295552845683403, - "c6": -25.00913222268133, - "c7": -8.873835523710124 + "points": { + "c1": -0.22323971419607602, + "c2": 0.8770209138545155, + "c3": 22.321854285105935, + "c4": 24.653361130258283, + "c5": -29.285964674954634, + "c6": -22.494829980486962, + "c7": -36.77452153942602 }, - "vertexSeeds": { - "c1": 11.644574094023618, - "c2": 11.706843602352155, - "c3": 11.85443840362496, - "c4": 11.944993687965866, - "c5": 11.966771611712582, - "c6": 11.734126427643194, - "c7": 11.774990882433045 + "offsets": { + "c1": 20, + "c2": 17.142857142857174, + "c3": 14.285714285714242, + "c4": 11.428571428571415, + "c5": 8.571428571428587, + "c6": 5.714285714285758, + "c7": 2.8571428571428275 }, "rgb": [58, 15, 49] }, @@ -31272,23 +31272,23 @@ "year": 1695, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 9.396272247731048, - "c2": -5.65653698326707, - "c3": -0.05666759895569129, - "c4": 2.186015370122533, - "c5": -20.830621023767698, - "c6": 21.053787521088836, - "c7": -21.134891988254502 + "points": { + "c1": 15.415277185393307, + "c2": -25.028704386656322, + "c3": 12.270268522336274, + "c4": -19.206491031174444, + "c5": -27.412710867290762, + "c6": 10.146509717708746, + "c7": 11.115830262546432 }, - "vertexSeeds": { - "c1": 7.7107858056636625, - "c2": 8.775719076500991, - "c3": 8.493612661889806, - "c4": 7.998045539989639, - "c5": 8.749494809141815, - "c6": 8.416699064917063, - "c7": 8.586070351345167 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [238, 201, 159] }, @@ -31299,23 +31299,23 @@ "year": 1695, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 5.285987746667693, - "c2": -18.944537282332316, - "c3": -21.662931630920347, - "c4": -19.98125089073661, - "c5": 35.20548095574574, - "c6": 3.4897418890324445, - "c7": 5.213343130630598 + "points": { + "c1": 11.960893835973046, + "c2": 17.80288459987998, + "c3": -28.44209683212305, + "c4": 12.968405515029495, + "c5": -0.6070919406548114, + "c6": -5.188250465506989, + "c7": 10.594834233415334 }, - "vertexSeeds": { - "c1": 3.8017435938949156, - "c2": 3.811318595880154, - "c3": 3.837339859415729, - "c4": 3.8276910009426572, - "c5": 3.8461360446171433, - "c6": 3.789347290632015, - "c7": 3.8534310421067883 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044363, + "c3": 4.623208506703659, + "c4": 3.6985668053629084, + "c5": 2.7739251040222044, + "c6": 1.8492834026814542, + "c7": 0.9246417013407501 }, "rgb": [222, 0, 59] }, @@ -31326,23 +31326,23 @@ "year": 1695, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 38.31111819638371, - "c2": 32.04357046589444, - "c3": -1.8719742057592867, - "c4": -42.93880282634072, - "c5": -29.975083266957007, - "c6": -17.01895378788664, - "c7": 29.133173613485333 + "points": { + "c1": 43.63470774303179, + "c2": 16.589372912621222, + "c3": -19.034472548920817, + "c4": -29.615878127266484, + "c5": 48.46811150407162, + "c6": 42.20187119155829, + "c7": 45.01506091228274 }, - "vertexSeeds": { - "c1": 3.42759819888297, - "c2": 3.1329093776917745, - "c3": 3.4333422687039494, - "c4": 3.128640011705163, - "c5": 3.261450648463675, - "c6": 3.3553390126824487, - "c7": 3.5253274269551365 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561719, + "c3": 4.345815996301433, + "c4": 3.476652797041146, + "c5": 2.6074895977808596, + "c6": 1.738326398520573, + "c7": 0.8691631992602865 }, "rgb": [58, 15, 49] }, @@ -31353,23 +31353,23 @@ "year": 1695, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 18.381703639183165, - "c2": 4.422380373046586, - "c3": -13.642548874339045, - "c4": 10.026664299327429, - "c5": -10.718894286099125, - "c6": -13.164451283613403, - "c7": -4.250876864779112 + "points": { + "c1": -27.71765635620807, + "c2": -18.381778696862785, + "c3": -24.33265568066509, + "c4": -16.213360924748148, + "c5": -34.3524244821025, + "c6": 32.41148514361426, + "c7": -20.00582540987595 }, - "vertexSeeds": { - "c1": 9.079766399022406, - "c2": 9.409680936598425, - "c3": 9.046754977230353, - "c4": 9.593964105322428, - "c5": 8.994782516616878, - "c6": 8.536646523930932, - "c7": 9.473309211959927 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.00832177531206, + "c3": 11.673601479426724, + "c4": 9.338881183541373, + "c5": 7.0041608876560355, + "c6": 4.6694405917706865, + "c7": 2.3347202958853375 }, "rgb": [86, 146, 138] }, @@ -31380,23 +31380,23 @@ "year": 1695, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 40.94495584700445, - "c2": -1.0906884431623567, - "c3": -44.65485385159582, - "c4": -11.1309453666438, - "c5": -17.817282771669806, - "c6": 39.43864460271483, - "c7": -38.53533434216127 + "points": { + "c1": -32.53137969895529, + "c2": 4.337298676281037, + "c3": -39.73800101192296, + "c4": -36.6848228195978, + "c5": 25.502696967725882, + "c6": 36.59563489294209, + "c7": -8.093964923443266 }, - "vertexSeeds": { - "c1": 4.32541211121441, - "c2": 4.160493725090361, - "c3": 4.132522506121641, - "c4": 4.33998141038585, - "c5": 4.46513148958275, - "c6": 4.1894876708800295, - "c7": 4.1272706573196185 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.76837725381415, + "c3": 5.640314378178456, + "c4": 4.5122515025427665, + "c5": 3.3841886269070716, + "c6": 2.2561257512713833, + "c7": 1.128062875635695 }, "rgb": [77, 76, 132] }, @@ -31407,23 +31407,23 @@ "year": 1695, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 3.1361640325062083, - "c2": -14.205939091898543, - "c3": 11.463883484990923, - "c4": -29.277180982674096, - "c5": -9.956729030030505, - "c6": -16.4622081227683, - "c7": 30.231487842698392 + "points": { + "c1": 32.24886841345521, + "c2": -31.550726767785466, + "c3": 1.5289730974431635, + "c4": -22.774474520499638, + "c5": -14.993932923248693, + "c6": 19.54792276174573, + "c7": 26.14067638184163 }, - "vertexSeeds": { - "c1": 11.2337999673887, - "c2": 11.030270493883446, - "c3": 10.518156509170833, - "c4": 10.78431707577139, - "c5": 10.683229145643338, - "c6": 11.402307224484037, - "c7": 11.218275440857076 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.58807212205272, + "c3": 13.823393435043904, + "c4": 11.058714748035133, + "c5": 8.29403606102636, + "c6": 5.529357374017547, + "c7": 2.7646786870087734 }, "rgb": [58, 15, 49] }, @@ -31434,23 +31434,23 @@ "year": 1695, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 19.173138123559852, - "c2": -23.114579701511474, - "c3": 15.061845615703, - "c4": -10.4954909222039, - "c5": -12.015978535455535, - "c6": 29.76041402834857, - "c7": 9.395235018561536 + "points": { + "c1": -0.05195562608614068, + "c2": 9.75262576925251, + "c3": 30.19800582367632, + "c4": 12.614000244549644, + "c5": -19.02457301368109, + "c6": 9.238424873271832, + "c7": -32.12402016144872 }, - "vertexSeeds": { - "c1": 10.0668347847734, - "c2": 10.001951065243809, - "c3": 10.512810188377543, - "c4": 10.879726969468779, - "c5": 10.253991520010665, - "c6": 10.357961020596246, - "c7": 11.317779035333476 + "offsets": { + "c1": 18.96440129449838, + "c2": 16.25520110957005, + "c3": 13.54600092464169, + "c4": 10.836800739713357, + "c5": 8.127600554785024, + "c6": 5.41840036985669, + "c7": 2.709200184928345 }, "rgb": [86, 146, 138] }, @@ -31461,23 +31461,23 @@ "year": 1695, "resistanceReported": false, "duration": 4838400, - "curveSeeds": { - "c1": -0.02218564583219873, - "c2": 12.377604370586642, - "c3": -14.922264565396008, - "c4": 4.042891936055344, - "c5": -14.875841617945419, - "c6": -13.495609516407269, - "c7": 5.245241329532327 + "points": { + "c1": 4.847631904626276, + "c2": 2.2362374164020835, + "c3": 8.456225056326485, + "c4": 8.799260571670661, + "c5": -9.456733840012145, + "c6": -5.501038573000386, + "c7": 15.680046415020481 }, - "vertexSeeds": { - "c1": 6.345738145038494, - "c2": 6.513404592548207, - "c3": 6.293072143192099, - "c4": 6.8152669232050425, - "c5": 6.263089798607266, - "c6": 6.297177092190671, - "c7": 6.2560083772388495 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479893, + "c3": 8.321775312066574, + "c4": 6.657420249653263, + "c5": 4.993065187239941, + "c6": 3.3287101248266313, + "c7": 1.6643550624133217 }, "rgb": [238, 201, 159] }, @@ -31488,23 +31488,23 @@ "year": 1695, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -32.85559076811012, - "c2": 30.994568340910455, - "c3": 40.83757171031993, - "c4": 15.71248458374204, - "c5": 13.196301087496622, - "c6": -31.711341829401967, - "c7": -25.016315036133342 + "points": { + "c1": -39.25861208601541, + "c2": -1.0963832367534678, + "c3": -42.1955700803376, + "c4": 40.46495757493923, + "c5": -6.247679547661612, + "c6": 24.611933898947136, + "c7": -1.5212126050740125 }, - "vertexSeeds": { - "c1": 8.163782571193504, - "c2": 8.193435856992652, - "c3": 8.118050771519517, - "c4": 8.735195837477683, - "c5": 8.484754930108519, - "c6": 8.427512760267744, - "c7": 8.39419539982214 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.98196948682386, + "c3": 10.81830790568654, + "c4": 8.654646324549235, + "c5": 6.49098474341193, + "c6": 4.327323162274625, + "c7": 2.1636615811373052 }, "rgb": [77, 76, 132] }, @@ -31515,23 +31515,23 @@ "year": 1695, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -12.701328527830018, - "c2": 7.830862976888348, - "c3": 28.574427477648825, - "c4": 7.70528846256844, - "c5": -14.547989981577288, - "c6": 21.156592449747365, - "c7": -33.496879283669756 + "points": { + "c1": 2.5695548151087024, + "c2": -34.28747192258943, + "c3": 33.58696841220812, + "c4": 15.74236009672807, + "c5": 33.34361868259536, + "c6": -40.40278827233341, + "c7": 3.3151743443496002 }, - "vertexSeeds": { - "c1": 2.530934383725258, - "c2": 2.5548252455984706, - "c3": 2.526019632298708, - "c4": 2.543358377224128, - "c5": 2.551771962169128, - "c6": 2.5451694791038015, - "c7": 2.5292389415505165 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349532, + "c3": 3.0744336569579027, + "c4": 2.4595469255663343, + "c5": 1.844660194174766, + "c6": 1.2297734627831978, + "c7": 0.6148867313915684 }, "rgb": [86, 146, 138] }, @@ -31542,23 +31542,23 @@ "year": 1695, "resistanceReported": false, "duration": 777600, - "curveSeeds": { - "c1": 3.1877378378512784, - "c2": -10.33826141410604, - "c3": 9.821797556507864, - "c4": -6.438500705086791, - "c5": 4.422167506357974, - "c6": 2.9398491131750326, - "c7": -9.25464209316649 + "points": { + "c1": 9.766464079532131, + "c2": 9.912856393327871, + "c3": 1.2860408908119627, + "c4": 4.6310739574299795, + "c5": 0.23923438774549055, + "c6": 6.526454559666526, + "c7": 8.941355522144924 }, - "vertexSeeds": { - "c1": 6.269081639514289, - "c2": 7.003925149925972, - "c3": 6.751676625352828, - "c4": 7.262600631172663, - "c5": 6.253904932843775, - "c6": 7.179187352612429, - "c7": 7.256782234113521 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.246417013407301, + "c4": 7.3971336107258425, + "c5": 5.547850208044384, + "c6": 3.6985668053629173, + "c7": 1.8492834026814586 }, "rgb": [222, 0, 59] }, @@ -31569,23 +31569,23 @@ "year": 1697, "resistanceReported": false, "duration": 70848000, - "curveSeeds": { - "c1": 28.983415320906033, - "c2": -41.00413651139189, - "c3": 6.044453607991031, - "c4": -67.28182610299407, - "c5": -69.65711509891364, - "c6": -20.64231547316892, - "c7": 20.771448179291355 + "points": { + "c1": -42.5706994638244, + "c2": -66.7824309465359, + "c3": -57.02397307033952, + "c4": 19.19502021336396, + "c5": 4.824082282733642, + "c6": -8.583724576959298, + "c7": 24.29129766308948 }, - "vertexSeeds": { - "c1": 2.2206763244844785, - "c2": 2.259694163715234, - "c3": 2.2268587921565643, - "c4": 2.058562326757856, - "c5": 2.3415594973702047, - "c6": 2.3242779937579017, - "c7": 2.1304975362254575 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779472952, + "c3": 2.8432732316227463, + "c4": 2.274618585298197, + "c5": 1.7059639389736476, + "c6": 1.1373092926490984, + "c7": 0.5686546463245492 }, "rgb": [77, 76, 132] }, @@ -31596,23 +31596,23 @@ "year": 1696, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -41.06561100125873, - "c2": 13.301938409495094, - "c3": -25.20409359713425, - "c4": -15.538514002377266, - "c5": 22.681221862443415, - "c6": 27.65779513222065, - "c7": -10.342054332008367 + "points": { + "c1": 41.08918593427892, + "c2": -38.9613148275771, + "c3": 13.9133755927216, + "c4": -16.95783619680971, + "c5": -24.850513337456135, + "c6": 28.40822776254783, + "c7": 19.712496152569884 }, - "vertexSeeds": { - "c1": 4.007258991277073, - "c2": 3.9300862059308694, - "c3": 4.149146910041555, - "c4": 4.1745140084874315, - "c5": 4.3778273934998655, - "c6": 3.9207414257073268, - "c7": 4.070213678632657 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [58, 15, 49] }, @@ -31623,23 +31623,23 @@ "year": 1695, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -20.891159544739256, - "c2": 19.222647956549196, - "c3": 22.08338616078526, - "c4": -12.727263506404068, - "c5": -17.557074238909696, - "c6": -5.468514845268835, - "c7": 25.037382761557765 + "points": { + "c1": -14.37181116702573, + "c2": 26.23556875592672, + "c3": 11.593560021677568, + "c4": 30.591458547647065, + "c5": -38.42883098649824, + "c6": 37.542244323747525, + "c7": -18.191931798047072 }, - "vertexSeeds": { - "c1": 13.24400619374873, - "c2": 13.952028972155789, - "c3": 13.387703320249816, - "c4": 13.027010503095896, - "c5": 14.169671199719055, - "c6": 13.230499082394271, - "c7": 13.201276247357074 + "offsets": { + "c1": 23.754045307443366, + "c2": 20.36061026352288, + "c3": 16.967175219602392, + "c4": 13.573740175681907, + "c5": 10.180305131761461, + "c6": 6.786870087840973, + "c7": 3.3934350439204866 }, "rgb": [222, 0, 59] }, @@ -31650,23 +31650,23 @@ "year": 1696, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 2.752024501790249, - "c2": -30.93033466938646, - "c3": 19.460787186950324, - "c4": 9.485971756202712, - "c5": 15.832840557898859, - "c6": -28.39941738925048, - "c7": 6.958370941881949 + "points": { + "c1": 15.394043785528964, + "c2": -14.898777419732973, + "c3": -32.19987477317949, + "c4": 13.963137704846822, + "c5": -9.65960167305057, + "c6": 27.01144158391319, + "c7": -9.454629953062234 }, - "vertexSeeds": { - "c1": 10.685460005616651, - "c2": 10.409317134382736, - "c3": 10.840675835648625, - "c4": 10.883221253079602, - "c5": 11.497368840945342, - "c6": 11.308271124277233, - "c7": 11.1709137060355 + "offsets": { + "c1": 19.223300970873787, + "c2": 16.47711511789182, + "c3": 13.730929264909857, + "c4": 10.98474341192789, + "c5": 8.238557558945924, + "c6": 5.492371705963931, + "c7": 2.7461858529819656 }, "rgb": [86, 146, 138] }, @@ -31677,23 +31677,23 @@ "year": 1696, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 42.06791234386342, - "c2": 24.670054139257864, - "c3": 9.192272513291982, - "c4": 14.00338876454542, - "c5": -25.87416866336667, - "c6": 6.7713088879437535, - "c7": -4.64232691241881 + "points": { + "c1": 0.19328662967787125, + "c2": -31.236037733488764, + "c3": 38.05124088145494, + "c4": -20.20394000946815, + "c5": -17.139724293411348, + "c6": -39.87406945759733, + "c7": -24.907844217836626 }, - "vertexSeeds": { - "c1": 6.406186906404459, - "c2": 6.339903473099761, - "c3": 6.391321276550366, - "c4": 6.453230310687785, - "c5": 6.368769157800792, - "c6": 6.4461337127562235, - "c7": 6.4609590792783615 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514573, + "c3": 7.766990291262156, + "c4": 6.213592233009739, + "c5": 4.660194174757253, + "c6": 3.1067961165048352, + "c7": 1.5533980582524176 }, "rgb": [86, 146, 138] }, @@ -31704,23 +31704,23 @@ "year": 1696, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 4.521659351026692, - "c2": -22.909396295956103, - "c3": -37.72984350252452, - "c4": -16.48702301914403, - "c5": 11.790979203928202, - "c6": 39.234635342566804, - "c7": -37.20254715355399 + "points": { + "c1": 15.283491327771877, + "c2": 30.458641034563968, + "c3": -14.878695787849576, + "c4": 37.67687992763827, + "c5": 22.28140076516496, + "c6": -34.60389648913444, + "c7": 33.26078162755705 }, - "vertexSeeds": { - "c1": 2.2357638172643366, - "c2": 2.1784944549280074, - "c3": 2.303874809077412, - "c4": 2.191683365220098, - "c5": 2.218959635383081, - "c6": 2.251504112083127, - "c7": 2.241249010940503 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826629, + "c3": 2.773925104022191, + "c4": 2.2191400832177526, + "c5": 1.6643550624133145, + "c6": 1.1095700416088763, + "c7": 0.5547850208044381 }, "rgb": [222, 0, 59] }, @@ -31731,23 +31731,23 @@ "year": 1696, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 39.43063620938488, - "c2": 21.94937107045029, - "c3": 18.030689404972087, - "c4": -19.45761389073217, - "c5": 28.716308483101436, - "c6": -21.853544905266443, - "c7": 12.945741753371244 + "points": { + "c1": 34.07437140817273, + "c2": -7.152321364429248, + "c3": -22.161401273320248, + "c4": -18.993966354604627, + "c5": 31.794178781583476, + "c6": 24.398652157016436, + "c7": -8.94973527718708 }, - "vertexSeeds": { - "c1": 2.4744143843469644, - "c2": 2.4336545904129907, - "c3": 2.429974743975884, - "c4": 2.4195758840318895, - "c5": 2.4178249929112337, - "c6": 2.420031542307032, - "c7": 2.4786485649417105 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188614, + "c3": 2.9819694868238598, + "c4": 2.385575589459091, + "c5": 1.789181692094307, + "c6": 1.192787794729538, + "c7": 0.596393897364769 }, "rgb": [86, 146, 138] }, @@ -31758,23 +31758,23 @@ "year": 1696, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 17.46097722828879, - "c2": -1.9145951707890418, - "c3": 15.123750476253512, - "c4": 12.905502730768, - "c5": 16.48212074640179, - "c6": -8.804136477044121, - "c7": 14.414792081553372 + "points": { + "c1": -28.85613981867935, + "c2": -33.833304748037605, + "c3": 25.117271324554196, + "c4": 21.229821911964166, + "c5": 30.371963622211908, + "c6": 6.645411752679557, + "c7": -1.1419817154848744 }, - "vertexSeeds": { - "c1": 4.299515843193319, - "c2": 3.5583696943301892, - "c3": 3.5367066191796477, - "c4": 3.8965224420591786, - "c5": 4.343393345067243, - "c6": 3.8410998852762255, - "c7": 3.988018170435738 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.2011095700416075, + "c4": 4.160887656033288, + "c5": 3.1206657420249635, + "c6": 2.080443828016644, + "c7": 1.0402219140083242 }, "rgb": [77, 76, 132] }, @@ -31785,23 +31785,23 @@ "year": 1697, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": -0.6243610047115311, - "c2": 42.47644565353162, - "c3": 45.78668266046865, - "c4": -3.559720698712404, - "c5": 4.673115614375959, - "c6": 11.463791198545351, - "c7": -7.836939032999837 + "points": { + "c1": -11.7337562530685, + "c2": -44.158428849089695, + "c3": -37.722551533362356, + "c4": 42.18008801565487, + "c5": -46.27051778525792, + "c6": 27.35613195516813, + "c7": -41.00318628135375 }, - "vertexSeeds": { - "c1": 10.70586090130877, - "c2": 10.82598530638521, - "c3": 10.314596212317202, - "c4": 10.464870185931858, - "c5": 10.454579278020383, - "c6": 10.159444429542921, - "c7": 10.403697032975789 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.589459084604728, + "c3": 12.991215903837247, + "c4": 10.392972723069805, + "c5": 7.794729542302364, + "c6": 5.196486361534924, + "c7": 2.598243180767441 }, "rgb": [238, 201, 159] }, @@ -31812,23 +31812,23 @@ "year": 1696, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -10.510780048954175, - "c2": -17.625153344264852, - "c3": -13.34512875289495, - "c4": 21.93161821472856, - "c5": 31.6470757450505, - "c6": -19.92020378945162, - "c7": 17.47551309243002 + "points": { + "c1": -15.824244394415082, + "c2": 11.630569543482181, + "c3": -17.031252666585335, + "c4": 14.912951326337229, + "c5": -15.170600236367157, + "c6": 33.451081828325556, + "c7": -4.631043721660443 }, - "vertexSeeds": { - "c1": 10.099503624800233, - "c2": 10.226376494263022, - "c3": 11.30538346817657, - "c4": 11.333741299902833, - "c5": 9.961076469702197, - "c6": 11.222862401174769, - "c7": 10.840687012768866 + "offsets": { + "c1": 19.57928802588997, + "c2": 16.782246879334256, + "c3": 13.98520573277854, + "c4": 11.188164586222848, + "c5": 8.391123439667133, + "c6": 5.594082293111418, + "c7": 2.7970411465557037 }, "rgb": [77, 76, 132] }, @@ -31839,23 +31839,23 @@ "year": 1696, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -36.02896799186268, - "c2": 25.36083914316253, - "c3": 38.64611179377548, - "c4": 23.1974346582953, - "c5": -11.96161098541847, - "c6": -38.17570114380264, - "c7": -14.593475167263819 + "points": { + "c1": -34.57120466699455, + "c2": 14.894533038751739, + "c3": 0.4491111817469857, + "c4": 37.68386839083771, + "c5": 27.886745180720332, + "c6": 14.601469373663406, + "c7": 11.253275723836516 }, - "vertexSeeds": { - "c1": 9.685951812200452, - "c2": 10.211164870633741, - "c3": 9.740046401960083, - "c4": 10.752696504185446, - "c5": 10.610141908993388, - "c6": 9.54493861649959, - "c7": 9.781720664062416 + "offsets": { + "c1": 18.6084142394822, + "c2": 15.950069348127597, + "c3": 13.291724456772995, + "c4": 10.63337956541839, + "c5": 7.97503467406381, + "c6": 5.316689782709207, + "c7": 2.6583448913546035 }, "rgb": [222, 0, 59] }, @@ -31866,23 +31866,23 @@ "year": 1696, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -18.610480337928053, - "c2": -14.888918519925344, - "c3": -13.478122064295931, - "c4": -13.921582455182683, - "c5": -11.923732559350356, - "c6": -6.144739445961541, - "c7": -40.45552561853736 + "points": { + "c1": -18.758669479284247, + "c2": 44.11200254481485, + "c3": -1.4362123898099952, + "c4": -9.865754860950126, + "c5": 13.19357804511057, + "c6": -16.7069802099284, + "c7": 1.627941516966665 }, - "vertexSeeds": { - "c1": 6.407300268615962, - "c2": 7.75411198685026, - "c3": 7.297514157126738, - "c4": 6.888915404949493, - "c5": 7.2451713869403465, - "c6": 7.585537853456305, - "c7": 6.932492427940529 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343042, + "c4": 7.637540453074433, + "c5": 5.7281553398058245, + "c6": 3.8187702265372163, + "c7": 1.9093851132686082 }, "rgb": [222, 0, 59] }, @@ -31893,23 +31893,23 @@ "year": 1697, "resistanceReported": false, "duration": 61862400, - "curveSeeds": { - "c1": -10.321419657117673, - "c2": -23.741368124420767, - "c3": 50.66405475246803, - "c4": -22.929846607367672, - "c5": -35.539419443476476, - "c6": -62.602951162617664, - "c7": -36.16330177540727 + "points": { + "c1": 14.110369731808447, + "c2": 2.754897490683817, + "c3": 27.550380228966418, + "c4": -65.88773247499438, + "c5": -28.843267518351652, + "c6": -44.32306109450755, + "c7": 47.06591369556817 }, - "vertexSeeds": { - "c1": 2.563618970800951, - "c2": 2.9699579718971223, - "c3": 2.4878108584551315, - "c4": 2.8031403265992436, - "c5": 2.395843608866674, - "c6": 2.5001027546513517, - "c7": 2.5939467971269288 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234399, + "c3": 3.58298659269533, + "c4": 2.866389274156266, + "c5": 2.1497919556171974, + "c6": 1.433194637078133, + "c7": 0.7165973185390642 }, "rgb": [77, 76, 132] }, @@ -31920,23 +31920,23 @@ "year": 1697, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 10.5241855042432, - "c2": -23.50720794170398, - "c3": -34.21006517665596, - "c4": -3.3496705400517257, - "c5": -29.12454994128406, - "c6": 31.73775263424264, - "c7": 34.1484800135557 + "points": { + "c1": -13.864936235712186, + "c2": 38.24096255155412, + "c3": 23.410877460702665, + "c4": -43.363471270693815, + "c5": 4.2060153083641865, + "c6": -35.94448560289807, + "c7": -23.341730868620672 }, - "vertexSeeds": { - "c1": 2.7126054530907524, - "c2": 2.6194284211608174, - "c3": 2.7077162568332667, - "c4": 2.590882526260334, - "c5": 2.1628077729279864, - "c6": 2.0279752775113953, - "c7": 1.979481522526699 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.0221914008321775, + "c3": 3.3518261673601493, + "c4": 2.6814609338881183, + "c5": 2.0110957004160888, + "c6": 1.3407304669440583, + "c7": 0.6703652334720291 }, "rgb": [77, 76, 132] }, @@ -31947,23 +31947,23 @@ "year": 1697, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 29.79971021925322, - "c2": -26.441050734255768, - "c3": -7.474605809887663, - "c4": 35.56559534047502, - "c5": 13.652228266002687, - "c6": 4.256528277621165, - "c7": 0.18246439346831522 + "points": { + "c1": 8.450348482749249, + "c2": -19.73382437918902, + "c3": -11.350538585526444, + "c4": 32.41135322589424, + "c5": 14.991012406615262, + "c6": 28.319510395474204, + "c7": 34.319133480418294 }, - "vertexSeeds": { - "c1": 7.461658080437296, - "c2": 7.288654676561089, - "c3": 7.427245790751185, - "c4": 7.245313052634636, - "c5": 7.248300443013205, - "c6": 7.004322000111806, - "c7": 7.363580870115359 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.762829403606098, + "c3": 8.969024503005096, + "c4": 7.175219602404073, + "c5": 5.381414701803049, + "c6": 3.5876098012020474, + "c7": 1.7938049006010237 }, "rgb": [238, 201, 159] }, @@ -31974,23 +31974,23 @@ "year": 1697, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 27.69669876983913, - "c2": 26.924324772120592, - "c3": -9.932090551041632, - "c4": 22.822475681266667, - "c5": 0.04746624106130071, - "c6": -33.785800331559756, - "c7": 21.7529101098713 + "points": { + "c1": -18.781453614071555, + "c2": 5.05859888726048, + "c3": -28.755624330122615, + "c4": -12.77537081757784, + "c5": -0.22673576255682804, + "c6": 0.1474992363400034, + "c7": -34.168211575317095 }, - "vertexSeeds": { - "c1": 18.213982704830762, - "c2": 17.08124261445733, - "c3": 18.105362982810306, - "c4": 17.836229842466814, - "c5": 16.916169045077496, - "c6": 18.257924624242044, - "c7": 18.18773196513273 + "offsets": { + "c1": 30.80906148867314, + "c2": 26.40776699029125, + "c3": 22.0064724919094, + "c4": 17.605177993527516, + "c5": 13.203883495145625, + "c6": 8.802588996763738, + "c7": 4.401294498381887 }, "rgb": [222, 0, 59] }, @@ -32001,23 +32001,23 @@ "year": 1697, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": -35.20117075188544, - "c2": 37.8004990129673, - "c3": -12.339333929519825, - "c4": -16.578591953367948, - "c5": -39.5460865316614, - "c6": 25.87630088150899, - "c7": 27.099308319736615 + "points": { + "c1": -22.17825419691421, + "c2": -34.628707628035095, + "c3": -4.702873309268114, + "c4": -21.742285779728824, + "c5": 31.950863482927367, + "c6": 47.68814789696314, + "c7": -18.1472546319551 }, - "vertexSeeds": { - "c1": 10.838788249022032, - "c2": 12.952675434788883, - "c3": 11.494264300106261, - "c4": 13.317231485865442, - "c5": 12.72659782877104, - "c6": 12.596414206980068, - "c7": 12.307988208635225 + "offsets": { + "c1": 22.233009708737864, + "c2": 19.056865464632452, + "c3": 15.880721220527041, + "c4": 12.704576976421649, + "c5": 9.528432732316235, + "c6": 6.352288488210824, + "c7": 3.176144244105412 }, "rgb": [58, 15, 49] }, @@ -32028,23 +32028,23 @@ "year": 1697, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 11.713163544617132, - "c2": -9.414725989541385, - "c3": -7.350798341428103, - "c4": 17.21821078776437, - "c5": -6.467442511632562, - "c6": 0.6156813088802977, - "c7": -39.15541928396081 + "points": { + "c1": 8.907562682828441, + "c2": 4.089032827237062, + "c3": -22.890240460582557, + "c4": -42.63303307287249, + "c5": 15.861198483168494, + "c6": -4.938525148607376, + "c7": 34.05564867949618 }, - "vertexSeeds": { - "c1": 4.4309316213560015, - "c2": 4.6915536792396875, - "c3": 4.456061238878508, - "c4": 4.463079262515008, - "c5": 4.780206528843225, - "c6": 4.701189607169634, - "c7": 4.578462965815957 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975034, + "c3": 5.732778548312526, + "c4": 4.586222838650019, + "c5": 3.4396671289875114, + "c6": 2.2931114193250153, + "c7": 1.1465557096625076 }, "rgb": [58, 15, 49] }, @@ -32055,23 +32055,23 @@ "year": 1697, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -16.462698540533626, - "c2": 39.581097136400196, - "c3": 18.451915825275073, - "c4": 40.64710579649056, - "c5": -36.41444806380365, - "c6": 20.69412052147998, - "c7": -10.607331707912643 + "points": { + "c1": -11.673385643139476, + "c2": 31.161661442922316, + "c3": 44.422134858690974, + "c4": -43.57562933903019, + "c5": 28.27463627215611, + "c6": -39.62884408537392, + "c7": -25.77519645008901 }, - "vertexSeeds": { - "c1": 9.784320647487888, - "c2": 9.006332311351485, - "c3": 9.630667023139658, - "c4": 10.149157613594104, - "c5": 9.96100711365596, - "c6": 10.245513049449343, - "c7": 10.229854644201568 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.67406380027738, + "c3": 12.228386500231164, + "c4": 9.782709200184922, + "c5": 7.33703190013869, + "c6": 4.891354600092461, + "c7": 2.4456773000462304 }, "rgb": [86, 146, 138] }, @@ -32082,23 +32082,23 @@ "year": 1697, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -20.408741575557826, - "c2": -39.805828009502434, - "c3": -33.72632996721546, - "c4": 15.988450121580932, - "c5": -38.14910383544912, - "c6": 7.564819609353442, - "c7": -37.27990711375761 + "points": { + "c1": -32.06864394338714, + "c2": 5.26484697861838, + "c3": -15.520456284046496, + "c4": -37.35237356392877, + "c5": 3.755504388912726, + "c6": 22.435846014359832, + "c7": -10.14609783776681 }, - "vertexSeeds": { - "c1": 6.982130641789654, - "c2": 6.643593407622053, - "c3": 6.641683648244376, - "c4": 5.7624625546036805, - "c5": 6.705278471888866, - "c6": 5.977738847709022, - "c7": 7.010276002021183 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.04160887656033, + "c3": 8.368007397133608, + "c4": 6.694405917706892, + "c5": 5.02080443828017, + "c6": 3.347202958853446, + "c7": 1.673601479426723 }, "rgb": [222, 0, 59] }, @@ -32109,23 +32109,23 @@ "year": 1697, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 4.188176682502924, - "c2": 17.73632237854102, - "c3": -16.82040350755709, - "c4": 15.90440512858838, - "c5": -16.478475267441652, - "c6": -0.04031562732842531, - "c7": -7.695497915794032 + "points": { + "c1": -18.931323039839956, + "c2": -22.1327131505281, + "c3": -8.59791146723953, + "c4": 13.598369408987644, + "c5": 25.184382681241388, + "c6": 10.55440777908867, + "c7": 0.9083060379014682 }, - "vertexSeeds": { - "c1": 5.783230101892125, - "c2": 4.946669891142058, - "c3": 5.945239096055814, - "c4": 5.570804158512795, - "c5": 5.93989550271286, - "c6": 5.065700148780883, - "c7": 5.1116331652612965 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710121, + "c3": 7.3046694405917725, + "c4": 5.843735552473414, + "c5": 4.382801664355065, + "c6": 2.921867776236707, + "c7": 1.4609338881183578 }, "rgb": [86, 146, 138] }, @@ -32136,23 +32136,23 @@ "year": 1698, "resistanceReported": false, "duration": 47692800, - "curveSeeds": { - "c1": 42.521970041834074, - "c2": -5.576382779819653, - "c3": 2.218848268153927, - "c4": 25.571514784258888, - "c5": -5.893356200119435, - "c6": -57.9258704987268, - "c7": 5.209537873404578 + "points": { + "c1": -37.01205597134724, + "c2": 35.423684473163135, + "c3": 16.60943855656238, + "c4": 50.289774361891006, + "c5": -40.416298039079926, + "c6": 14.264636416298671, + "c7": -34.35822851056235 }, - "vertexSeeds": { - "c1": 2.353391728060521, - "c2": 2.4592109038060124, - "c3": 2.241041435128851, - "c4": 2.739232757240923, - "c5": 2.3694022487782957, - "c6": 2.5014493401839344, - "c7": 2.7374289436526413 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.3749422098936654, + "c4": 2.699953767914935, + "c5": 2.0249653259362015, + "c6": 1.3499768839574675, + "c7": 0.6749884419787338 }, "rgb": [58, 15, 49] }, @@ -32163,23 +32163,23 @@ "year": 1698, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 5.536554356016431, - "c2": 24.52099417039507, - "c3": -9.564928817566994, - "c4": 19.233946958287348, - "c5": 10.383587726049797, - "c6": -5.052640577884951, - "c7": 44.576109426941585 + "points": { + "c1": -27.562282215636042, + "c2": 35.06306493841737, + "c3": 41.82687820235368, + "c4": -29.010558584763416, + "c5": 16.139508778987334, + "c6": -10.3685092466011, + "c7": 12.47571969355458 }, - "vertexSeeds": { - "c1": 6.890833357360531, - "c2": 6.9127558786512795, - "c3": 6.718201980432489, - "c4": 6.712262778095991, - "c5": 6.9571978374275645, - "c6": 6.969933504795609, - "c7": 6.842469805039438 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447987, + "c3": 8.321775312066581, + "c4": 6.6574202496532475, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624132895 }, "rgb": [238, 201, 159] }, @@ -32190,23 +32190,23 @@ "year": 1697, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 23.525185784600332, - "c2": -16.257201995238688, - "c3": -32.3000789376998, - "c4": -0.9369602327016509, - "c5": -15.596280348683386, - "c6": 29.21987798820964, - "c7": 25.97988262634781 + "points": { + "c1": 13.04354408453122, + "c2": 36.34113310484535, + "c3": -3.1694416445619424, + "c4": -27.12290837946789, + "c5": -22.667929807598675, + "c6": -36.76933546034319, + "c7": 37.5670976988529 }, - "vertexSeeds": { - "c1": 11.071704047164161, - "c2": 11.252859435705142, - "c3": 10.808408140784243, - "c4": 11.225735752965477, - "c5": 10.749865645030834, - "c6": 9.674078555638458, - "c7": 9.152017392501838 + "offsets": { + "c1": 18.996763754045308, + "c2": 16.28294036061027, + "c3": 13.569116967175228, + "c4": 10.85529357374017, + "c5": 8.141470180305129, + "c6": 5.427646786870089, + "c7": 2.713823393435049 }, "rgb": [238, 201, 159] }, @@ -32217,23 +32217,23 @@ "year": 1698, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": 14.407070082902727, - "c2": 14.267432722266825, - "c3": 38.451283431792824, - "c4": -42.13425717585073, - "c5": 31.558893975422073, - "c6": -18.55354807966708, - "c7": -44.978408843839794 + "points": { + "c1": 15.920429576306312, + "c2": -0.7271545950762288, + "c3": 29.42619660819613, + "c4": -31.424568525962247, + "c5": -36.73614851977179, + "c6": 14.175159686570574, + "c7": -44.0069281156089 }, - "vertexSeeds": { - "c1": 1.8747201565581497, - "c2": 1.941389723901175, - "c3": 2.0389535339252016, - "c4": 1.8985540009096846, - "c5": 1.9645306997740533, - "c6": 1.9794588202710255, - "c7": 2.0049049367452785 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635225, + "c3": 2.4503005085529344, + "c4": 1.9602404068423516, + "c5": 1.4701803051317635, + "c6": 0.9801202034211758, + "c7": 0.4900601017105879 }, "rgb": [86, 146, 138] }, @@ -32244,23 +32244,23 @@ "year": 1698, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": 12.198980942156716, - "c2": -39.193853778494734, - "c3": -19.053452205670418, - "c4": -51.541165181417334, - "c5": -15.222084387354236, - "c6": -22.88553358161735, - "c7": -45.5953829429077 + "points": { + "c1": 5.424122038090083, + "c2": -18.990829344756996, + "c3": 31.134896596908796, + "c4": -54.87837119017815, + "c5": 45.33726307465928, + "c6": 19.033191862313295, + "c7": -6.447997051552733 }, - "vertexSeeds": { - "c1": 1.442492705048629, - "c2": 1.3599045271892656, - "c3": 1.3763112503293882, - "c4": 1.4465596422986948, - "c5": 1.5484323410872305, - "c6": 1.592391515330808, - "c7": 1.5315848280858388 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.30235783633842, + "c3": 1.9186315302820152, + "c4": 1.5349052242256134, + "c5": 1.1511789181692085, + "c6": 0.7674526121128067, + "c7": 0.38372630605640484 }, "rgb": [238, 201, 159] }, @@ -32271,23 +32271,23 @@ "year": 1698, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": 1.7083424584609546, - "c2": 55.90276872907576, - "c3": 30.23986831598937, - "c4": 40.862917399368186, - "c5": -19.994244257136558, - "c6": -18.583120401650284, - "c7": 10.497362299937208 + "points": { + "c1": -27.990672744046048, + "c2": 24.90260622795644, + "c3": 54.48521144261524, + "c4": 37.942076823753624, + "c5": -18.861443978278537, + "c6": -30.951441795267126, + "c7": 40.75855553527755 }, - "vertexSeeds": { - "c1": 4.606803271354412, - "c2": 4.568671043067882, - "c3": 4.114534390100147, - "c4": 4.649683293748062, - "c5": 4.033554528458715, - "c6": 4.660049889713433, - "c7": 4.412106237697789 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [222, 0, 59] }, @@ -32298,23 +32298,23 @@ "year": 1698, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 19.629750814651416, - "c2": -26.24898737279231, - "c3": -3.744481680026304, - "c4": -3.049723717295876, - "c5": 12.057448063494832, - "c6": 0.5821524592800955, - "c7": -44.94870484908125 + "points": { + "c1": -44.45205540416836, + "c2": -18.999797540883655, + "c3": -32.04216126125152, + "c4": 1.7784462279552642, + "c5": -42.21276953681684, + "c6": -31.933142984395378, + "c7": -43.602157030631055 }, - "vertexSeeds": { - "c1": 12.814111186826814, - "c2": 11.715680360278206, - "c3": 11.705674780773414, - "c4": 11.051897743736694, - "c5": 10.724003189913791, - "c6": 10.620215165218848, - "c7": 11.294079035734466 + "offsets": { + "c1": 21.941747572815533, + "c2": 18.80721220527046, + "c3": 15.672676837725387, + "c4": 12.538141470180312, + "c5": 9.403606102635221, + "c6": 6.269070735090148, + "c7": 3.134535367545074 }, "rgb": [238, 201, 159] }, @@ -32325,23 +32325,23 @@ "year": 1697, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 12.091777839655244, - "c2": -31.599719682072923, - "c3": 0.05268834922272703, - "c4": 20.13221143379638, - "c5": -21.344631333319278, - "c6": 0.5630850868769102, - "c7": 1.936783830380719 + "points": { + "c1": 14.785923069093108, + "c2": 4.401407445940919, + "c3": -15.475105023665346, + "c4": -27.768565302783934, + "c5": -15.293191647303903, + "c6": -37.70359004191969, + "c7": -16.578580332377665 }, - "vertexSeeds": { - "c1": 9.020020579293913, - "c2": 9.05858566505203, - "c3": 9.76513443086888, - "c4": 10.395754204326336, - "c5": 10.926576459484592, - "c6": 11.841170789546418, - "c7": 8.769537767471894 + "offsets": { + "c1": 19.93527508090615, + "c2": 17.087378640776702, + "c3": 14.239482200647254, + "c4": 11.391585760517794, + "c5": 8.543689320388347, + "c6": 5.6957928802589, + "c7": 2.8478964401294533 }, "rgb": [86, 146, 138] }, @@ -32352,23 +32352,23 @@ "year": 1698, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 23.206335670234587, - "c2": 11.748038453879445, - "c3": -32.35995574796111, - "c4": -30.64012569144982, - "c5": 5.486593911614385, - "c6": -11.061110962990288, - "c7": 4.9498612307806695 + "points": { + "c1": 29.367235163316423, + "c2": -29.8897223997909, + "c3": -21.256223073933807, + "c4": 15.7566510454307, + "c5": 5.361688736323401, + "c6": 17.076807049962838, + "c7": 6.256809903093753 }, - "vertexSeeds": { - "c1": 7.937366242471296, - "c2": 8.336196820863215, - "c3": 8.372432049251461, - "c4": 8.117180063246169, - "c5": 7.651118985424136, - "c6": 8.120018055215162, - "c7": 8.372821287387604 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [58, 15, 49] }, @@ -32379,23 +32379,23 @@ "year": 1698, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 13.05006997780886, - "c2": 9.465124025453406, - "c3": 28.45916680773439, - "c4": -32.5790158591179, - "c5": -13.542162692267915, - "c6": 18.87492933550198, - "c7": 11.284198181146039 + "points": { + "c1": -28.94251629309174, + "c2": 28.86146826959107, + "c3": -9.144872699048243, + "c4": 0.8980765706845588, + "c5": 18.040945549647134, + "c6": -26.82318050230848, + "c7": 17.19966341107456 }, - "vertexSeeds": { - "c1": 10.095815990478139, - "c2": 10.001072724692262, - "c3": 9.727431897150934, - "c4": 10.076469163877816, - "c5": 10.021235033460714, - "c6": 10.3114600214647, - "c7": 10.148637141956751 + "offsets": { + "c1": 17.281553398058254, + "c2": 14.81276005547852, + "c3": 12.343966712898784, + "c4": 9.875173370318993, + "c5": 7.40638002773926, + "c6": 4.937586685159525, + "c7": 2.4687933425797626 }, "rgb": [222, 0, 59] }, @@ -32406,23 +32406,23 @@ "year": 1698, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -23.808214805872655, - "c2": 22.332227710291043, - "c3": -2.8991060683866223, - "c4": 11.940594471178038, - "c5": 10.83953177854442, - "c6": -28.814884311868358, - "c7": -29.742420963764726 + "points": { + "c1": -25.3442608866278, + "c2": -22.37380814198647, + "c3": -7.783519915948094, + "c4": 28.423347310788735, + "c5": -14.21170997736094, + "c6": 23.10710376576794, + "c7": 2.0876087778362873 }, - "vertexSeeds": { - "c1": 9.327042232931927, - "c2": 10.033431800828826, - "c3": 9.61189189074514, - "c4": 9.331736923135105, - "c5": 9.27694355395808, - "c6": 9.368442346487058, - "c7": 9.662065147079524 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [238, 201, 159] }, @@ -32433,23 +32433,23 @@ "year": 1698, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -28.132047158854583, - "c2": 4.345017395848664, - "c3": 15.499935235706182, - "c4": 32.383550481998654, - "c5": -16.95156312954075, - "c6": 18.761777862853513, - "c7": 36.30058123504017 + "points": { + "c1": -18.53633984726983, + "c2": -17.614225935278007, + "c3": 6.950507833796905, + "c4": 26.652056487670777, + "c5": 1.17575096808487, + "c6": 11.862507625310272, + "c7": -13.853729535957527 }, - "vertexSeeds": { - "c1": 2.180210896402703, - "c2": 2.318354109927054, - "c3": 2.3365065026308964, - "c4": 2.388083080981818, - "c5": 2.1980947998735725, - "c6": 2.2828693623218954, - "c7": 2.280209751616564 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679605, + "c3": 2.9126213592232997, + "c4": 2.330097087378639, + "c5": 1.7475728155339822, + "c6": 1.1650485436893216, + "c7": 0.5825242718446608 }, "rgb": [86, 146, 138] }, @@ -32460,23 +32460,23 @@ "year": 1698, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 0.41439075913666557, - "c2": 16.13663681788369, - "c3": 22.360386505598804, - "c4": 11.937729690754416, - "c5": -1.476334989196097, - "c6": 14.614974196786932, - "c7": 9.091656623641583 + "points": { + "c1": -8.458741097367628, + "c2": 12.331194236962936, + "c3": -25.36604286083388, + "c4": -17.666234635276222, + "c5": -36.38339650414399, + "c6": -32.6875819235665, + "c7": -29.46146562063599 }, - "vertexSeeds": { - "c1": 8.966481284511667, - "c2": 8.462375403555287, - "c3": 8.099209939709297, - "c4": 8.312935984639795, - "c5": 8.311175742481648, - "c6": 8.642350632198752, - "c7": 8.213395847081944 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.98196948682386, + "c3": 10.81830790568654, + "c4": 8.654646324549235, + "c5": 6.49098474341193, + "c6": 4.327323162274625, + "c7": 2.1636615811373052 }, "rgb": [222, 0, 59] }, @@ -32487,23 +32487,23 @@ "year": 1698, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 16.162560360567845, - "c2": -10.866328016793652, - "c3": -35.311532336797086, - "c4": -1.0852135413168185, - "c5": -21.099574313436797, - "c6": -15.06819410842673, - "c7": -27.336747373928638 + "points": { + "c1": 28.718798192580323, + "c2": 26.83753860571008, + "c3": -15.446443515887633, + "c4": -18.69775688584747, + "c5": -4.754884423804228, + "c6": -34.1282498765965, + "c7": 15.32238858428844 }, - "vertexSeeds": { - "c1": 5.1460221232091605, - "c2": 4.731832099170951, - "c3": 5.438715379682686, - "c4": 4.299330741392427, - "c5": 4.390450561955599, - "c6": 5.089792874866843, - "c7": 4.7877931743723225 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.79334257975035, + "c3": 7.327785483125289, + "c4": 5.862228386500234, + "c5": 4.396671289875171, + "c6": 2.931114193250117, + "c7": 1.4655570966250584 }, "rgb": [77, 76, 132] }, @@ -32514,23 +32514,23 @@ "year": 1698, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 31.56997930513083, - "c2": -20.659175719395705, - "c3": -28.787208505021454, - "c4": -6.9395666532974545, - "c5": 7.7254263762470785, - "c6": 27.132546168407288, - "c7": 38.404006433217944 + "points": { + "c1": -15.995732153983123, + "c2": 11.521687012002097, + "c3": 6.154182072359838, + "c4": -15.710869226331742, + "c5": -37.92878651959191, + "c6": -22.002993517058243, + "c7": 21.06438232229192 }, - "vertexSeeds": { - "c1": 4.476017857364953, - "c2": 3.1304795193229715, - "c3": 4.019760273079416, - "c4": 6.295974720099663, - "c5": 6.408811638689935, - "c6": 6.308506357907351, - "c7": 2.7038746988384466 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916782, + "c3": 7.99815071659732, + "c4": 6.398520573277854, + "c5": 4.798890429958392, + "c6": 3.199260286638928, + "c7": 1.5996301433194633 }, "rgb": [238, 201, 159] }, @@ -32541,23 +32541,23 @@ "year": 1698, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -13.000585160415334, - "c2": -32.12482611721232, - "c3": 36.698070699073625, - "c4": 21.866628109764818, - "c5": 26.530378535884054, - "c6": 10.389643246346445, - "c7": 26.520809590304225 + "points": { + "c1": -1.7924146759893418, + "c2": -5.664755231171021, + "c3": -14.830675908561208, + "c4": -2.7525050765955896, + "c5": -9.368047618362283, + "c6": 30.048012893430396, + "c7": 0.5138008827310685 }, - "vertexSeeds": { - "c1": 10.658351309967854, - "c2": 10.410201147936677, - "c3": 10.733367379566335, - "c4": 11.011517617206568, - "c5": 10.978191745526196, - "c6": 10.326784063564359, - "c7": 10.716484944287613 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.811373092926477, + "c3": 13.176144244105432, + "c4": 10.540915395284335, + "c5": 7.905686546463238, + "c6": 5.270457697642193, + "c7": 2.6352288488210966 }, "rgb": [77, 76, 132] }, @@ -32568,23 +32568,23 @@ "year": 1698, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 41.26836223085889, - "c2": 40.57171266751117, - "c3": 22.26509356315703, - "c4": -26.745605909971644, - "c5": -7.708539396998965, - "c6": -35.348404242783054, - "c7": -22.392023472480354 + "points": { + "c1": -23.65728373164222, + "c2": -28.493761499663265, + "c3": 38.31023146569755, + "c4": 20.155662397115883, + "c5": -26.487679059307126, + "c6": 18.448681087656958, + "c7": -33.427237357351245 }, - "vertexSeeds": { - "c1": 6.125036255291991, - "c2": 6.3614022302649715, - "c3": 6.245813355653787, - "c4": 6.258808248699053, - "c5": 6.070374592654332, - "c6": 6.155291285114507, - "c7": 6.151399711452947 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327322, + "c3": 7.628294036061041, + "c4": 6.102635228848826, + "c5": 4.57697642163661, + "c6": 3.051317614424431, + "c7": 1.5256588072122155 }, "rgb": [222, 0, 59] }, @@ -32595,23 +32595,23 @@ "year": 1698, "resistanceReported": false, "duration": 1382400, - "curveSeeds": { - "c1": -8.545110194898477, - "c2": 6.829460917692838, - "c3": -9.07762959534837, - "c4": -7.868474442341521, - "c5": 8.346689262558137, - "c6": -10.213629264080009, - "c7": 7.50655567097823 + "points": { + "c1": -3.8437589118946818, + "c2": -1.0572855289329297, + "c3": 0.9902116922173185, + "c4": -4.433479930226614, + "c5": 7.811007026483065, + "c6": -1.9378524283089327, + "c7": -6.233800554457912 }, - "vertexSeeds": { - "c1": 10.054419773935965, - "c2": 10.146949627555745, - "c3": 9.512411939163796, - "c4": 9.4952778955307, - "c5": 9.707791737678008, - "c6": 9.880694651101031, - "c7": 9.75944047613105 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.868238557558932, + "c3": 12.390198797965805, + "c4": 9.912159038372636, + "c5": 7.434119278779487, + "c6": 4.956079519186318, + "c7": 2.478039759593169 }, "rgb": [58, 15, 49] }, @@ -32622,23 +32622,23 @@ "year": 1698, "resistanceReported": false, "duration": 1296000, - "curveSeeds": { - "c1": -1.3873037892193558, - "c2": -6.434937250160931, - "c3": -10.252929571192666, - "c4": -6.880269949499451, - "c5": -8.423217316164846, - "c6": 3.566180612039039, - "c7": 6.132940610111241 + "points": { + "c1": 9.25220012694399, + "c2": 10.945859977783137, + "c3": -5.06809864365807, + "c4": -6.582646936747092, + "c5": -5.875157694788012, + "c6": -2.072396374789049, + "c7": -6.2077033937156525 }, - "vertexSeeds": { - "c1": 11.408800408555507, - "c2": 11.258189615930332, - "c3": 10.690274304091188, - "c4": 10.934176658761961, - "c5": 11.50845040797223, - "c6": 10.89415009337434, - "c7": 11.527485571882274 + "offsets": { + "c1": 19.449838187702266, + "c2": 16.671289875173365, + "c3": 13.892741562644483, + "c4": 11.11419325011558, + "c5": 8.335644937586697, + "c6": 5.5570966250577944, + "c7": 2.7785483125288923 }, "rgb": [86, 146, 138] }, @@ -32649,23 +32649,23 @@ "year": 1699, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 32.929654957519325, - "c2": -37.358552085874685, - "c3": 43.54767928936861, - "c4": -33.95933350430164, - "c5": -2.083424865802236, - "c6": -19.774756219179896, - "c7": -27.658655873942664 + "points": { + "c1": -19.547504022908672, + "c2": 7.501178213309508, + "c3": -46.50765920806073, + "c4": 37.582609329469584, + "c5": 43.674207452190565, + "c6": 22.217960430228025, + "c7": -46.703017292323736 }, - "vertexSeeds": { - "c1": 6.975594649618702, - "c2": 6.654077898214517, - "c3": 6.3768147378711, - "c4": 6.103690679841759, - "c5": 6.9459304171873635, - "c6": 7.090697790944807, - "c7": 6.912962135272563 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962556, + "c3": 8.599167822468791, + "c4": 6.879334257975039, + "c5": 5.159500693481272, + "c6": 3.4396671289875194, + "c7": 1.7198335644937535 }, "rgb": [86, 146, 138] }, @@ -32676,23 +32676,23 @@ "year": 1699, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -16.89003137348936, - "c2": -26.185269651485907, - "c3": 28.271785695541283, - "c4": 27.404115039249618, - "c5": 18.79836361482613, - "c6": -30.092296235324692, - "c7": 36.77782617591221 + "points": { + "c1": -10.92181758994893, + "c2": 21.81744114827292, + "c3": -40.323947954809675, + "c4": -15.895829612633328, + "c5": -22.81037508493698, + "c6": -37.37857225094339, + "c7": -42.27184297995948 }, - "vertexSeeds": { - "c1": 7.5227821008104625, - "c2": 7.547437076654571, - "c3": 7.115127976436454, - "c4": 7.532070040319604, - "c5": 6.815777009563605, - "c6": 7.8825683263407855, - "c7": 7.556935585670697 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490983, + "c3": 9.477577438742484, + "c4": 7.582061950993997, + "c5": 5.686546463245497, + "c6": 3.7910309754969984, + "c7": 1.8955154877484992 }, "rgb": [238, 201, 159] }, @@ -32703,23 +32703,23 @@ "year": 1699, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 27.536979615284807, - "c2": -41.391598630900475, - "c3": -43.72600634640893, - "c4": 34.634300846011, - "c5": 14.279553869197088, - "c6": -0.7106770422119268, - "c7": 15.340553790333502 + "points": { + "c1": 24.378490338446056, + "c2": -46.139653128035256, + "c3": 23.300538707936852, + "c4": -38.82427210698366, + "c5": 5.945216602555334, + "c6": 27.16965619963898, + "c7": -35.50779019968252 }, - "vertexSeeds": { - "c1": 12.24917374311388, - "c2": 11.280372212624899, - "c3": 11.919640091573658, - "c4": 11.372084573894341, - "c5": 12.327512644892156, - "c6": 12.134072726404927, - "c7": 11.019351227565037 + "offsets": { + "c1": 20.64724919093851, + "c2": 17.69764216366158, + "c3": 14.748035136384651, + "c4": 11.79842810910772, + "c5": 8.84882108183079, + "c6": 5.89921405455386, + "c7": 2.94960702727693 }, "rgb": [222, 0, 59] }, @@ -32730,23 +32730,23 @@ "year": 1699, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -42.918836922208946, - "c2": -46.23035060377362, - "c3": 23.55114513265903, - "c4": 12.056738122722031, - "c5": -4.7980123936898025, - "c6": -30.28229706224715, - "c7": -7.305118049838541 + "points": { + "c1": -19.585456930604465, + "c2": -34.23978718961585, + "c3": 10.875407144283272, + "c4": -44.945010616819765, + "c5": -50.94273011833137, + "c6": 11.268150520881854, + "c7": -6.301942822123266 }, - "vertexSeeds": { - "c1": 4.471510254654908, - "c2": 4.259595346282523, - "c3": 4.5913007703317845, - "c4": 4.546770991047745, - "c5": 4.427290426160331, - "c6": 3.983333286424483, - "c7": 4.587224677188267 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [58, 15, 49] }, @@ -32757,23 +32757,23 @@ "year": 1699, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 40.0189713588625, - "c2": -8.554238510581293, - "c3": -15.279523516968812, - "c4": -15.239114412991803, - "c5": -14.114658326863605, - "c6": -10.410013091867498, - "c7": -23.66239008678537 + "points": { + "c1": 7.530077001060889, + "c2": -39.91814032578924, + "c3": 17.78895594258917, + "c4": 41.80359135410055, + "c5": -17.105582637176845, + "c6": 45.68166854390405, + "c7": -42.49302926793622 }, - "vertexSeeds": { - "c1": 12.75058243775283, - "c2": 13.59281327294006, - "c3": 14.769635951152733, - "c4": 12.994340330041775, - "c5": 14.187058672297255, - "c6": 14.141782330539115, - "c7": 14.865176502151904 + "offsets": { + "c1": 25.016181229773466, + "c2": 21.442441054091546, + "c3": 17.86870087840963, + "c4": 14.29496070272769, + "c5": 10.721220527045773, + "c6": 7.147480351363855, + "c7": 3.5737401756819187 }, "rgb": [58, 15, 49] }, @@ -32784,23 +32784,23 @@ "year": 1699, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 43.52278843966339, - "c2": 7.3071155374818275, - "c3": 43.20418595045855, - "c4": -42.70831929440891, - "c5": -10.633783295446221, - "c6": -38.40024563625564, - "c7": 27.995080671216186 + "points": { + "c1": 12.17740773190986, + "c2": -0.7716836683325141, + "c3": -5.9551111569189175, + "c4": -2.2155685092230826, + "c5": 10.92721709664849, + "c6": -32.114194635323074, + "c7": 15.62276385904972 }, - "vertexSeeds": { - "c1": 9.068971886871237, - "c2": 10.632527611515954, - "c3": 11.126720017676938, - "c4": 9.726014565721622, - "c5": 10.926422017994913, - "c6": 10.572036497452835, - "c7": 9.983291016463252 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.97780859916782, + "c3": 13.314840499306518, + "c4": 10.651872399445214, + "c5": 7.98890429958391, + "c6": 5.325936199722607, + "c7": 2.6629680998613035 }, "rgb": [238, 201, 159] }, @@ -32811,23 +32811,23 @@ "year": 1699, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -27.479134455890176, - "c2": 31.15511036092255, - "c3": 6.622917057942146, - "c4": -2.17929562854561, - "c5": 26.72709874112968, - "c6": -33.94154477314926, - "c7": 10.432599355459914 + "points": { + "c1": 28.675796773402524, + "c2": 8.389292943499392, + "c3": -15.149797742187861, + "c4": 30.311004103795526, + "c5": 36.86314588527229, + "c6": 0.4882879218664229, + "c7": -34.922084779680674 }, - "vertexSeeds": { - "c1": 8.505633014696027, - "c2": 9.15877758409038, - "c3": 7.778505974022695, - "c4": 8.568788767820903, - "c5": 8.585380708034466, - "c6": 8.75390485669652, - "c7": 8.492189409095953 + "offsets": { + "c1": 15.987055016181229, + "c2": 13.703190013869627, + "c3": 11.419325011558026, + "c4": 9.135460009246415, + "c5": 6.851595006934813, + "c6": 4.567730004623212, + "c7": 2.283865002311611 }, "rgb": [222, 0, 59] }, @@ -32838,23 +32838,23 @@ "year": 1699, "resistanceReported": false, "duration": 47174400, - "curveSeeds": { - "c1": 40.83690855954378, - "c2": 27.039602996323346, - "c3": -35.54415692945335, - "c4": -47.759628097919304, - "c5": 29.541723653750743, - "c6": -17.813735524584878, - "c7": -61.1177772181822 + "points": { + "c1": 44.018717624498926, + "c2": 47.33004098331397, + "c3": 48.23061339851535, + "c4": 46.67301943656506, + "c5": -29.275504060967222, + "c6": -50.82861623367105, + "c7": 8.341041283682166 }, - "vertexSeeds": { - "c1": 9.118483222360409, - "c2": 7.829022583717091, - "c3": 8.013161292074686, - "c4": 7.567516830784037, - "c5": 9.591958683372528, - "c6": 7.975747370632931, - "c7": 6.985497850852325 + "offsets": { + "c1": 16.86084142394822, + "c2": 14.452149791955618, + "c3": 12.043458159963013, + "c4": 9.634766527970411, + "c5": 7.226074895977804, + "c6": 4.817383263985202, + "c7": 2.408691631992601 }, "rgb": [238, 201, 159] }, @@ -32865,23 +32865,23 @@ "year": 1699, "resistanceReported": false, "duration": 51753600, - "curveSeeds": { - "c1": -28.738371918414657, - "c2": 0.2530294865787539, - "c3": -3.010796105262571, - "c4": 3.458498294947958, - "c5": -66.28056410692527, - "c6": 10.749602678634005, - "c7": -59.45500602916837 + "points": { + "c1": -47.205894436605796, + "c2": -62.49907537011317, + "c3": 28.09160282110078, + "c4": -17.9928006511771, + "c5": 17.90577321859375, + "c6": 43.97820197796409, + "c7": 56.10850256608293 }, - "vertexSeeds": { - "c1": 5.372427245475194, - "c2": 5.821552153792037, - "c3": 5.82826693640303, - "c4": 5.529512680964561, - "c5": 5.404352837048282, - "c6": 5.811219635359377, - "c7": 5.543144052784123 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106787, + "c3": 6.957928802588999, + "c4": 5.566343042071192, + "c5": 4.174757281553403, + "c6": 2.783171521035596, + "c7": 1.3915857605178077 }, "rgb": [86, 146, 138] }, @@ -32892,23 +32892,23 @@ "year": 1698, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 27.336946595938016, - "c2": 19.797299662930158, - "c3": 7.185413386035584, - "c4": 6.08162388100299, - "c5": 8.313943831959278, - "c6": -31.080168090490886, - "c7": 34.83957826415373 + "points": { + "c1": -27.294770722110254, + "c2": 0.436608300606494, + "c3": 28.485981113263605, + "c4": 33.076500617978496, + "c5": -42.6839687336075, + "c6": -43.220905802046495, + "c7": -39.894786681301724 }, - "vertexSeeds": { - "c1": 2.582813852214503, - "c2": 2.600539952325001, - "c3": 2.657677801600167, - "c4": 2.632744376938525, - "c5": 2.7095015571476906, - "c6": 2.704783930634751, - "c7": 3.1256803184265074 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.6047156726768375, + "c3": 3.837263060564031, + "c4": 3.069810448451225, + "c5": 2.3023578363384187, + "c6": 1.5349052242256125, + "c7": 0.7674526121128062 }, "rgb": [77, 76, 132] }, @@ -32919,23 +32919,23 @@ "year": 1698, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 6.549402736715166, - "c2": -16.075354375621988, - "c3": 11.357999301398976, - "c4": 1.8298086169115138, - "c5": 8.72205141026123, - "c6": -19.74579259589222, - "c7": -4.019517226061232 + "points": { + "c1": -24.976511499710682, + "c2": -20.932995309625024, + "c3": 30.600781708040245, + "c4": -2.629237283843146, + "c5": -30.24300881464693, + "c6": -4.451271183111295, + "c7": -29.856698547582383 }, - "vertexSeeds": { - "c1": 2.2704294819325446, - "c2": 2.193252434838938, - "c3": 2.1070682965236918, - "c4": 2.2603840850681785, - "c5": 2.257511349470919, - "c6": 1.9874869893509108, - "c7": 2.159984265476375 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668528, + "c3": 2.797041146555709, + "c4": 2.2376329172445684, + "c5": 1.678224687933425, + "c6": 1.1188164586222842, + "c7": 0.5594082293111432 }, "rgb": [222, 0, 59] }, @@ -32946,23 +32946,23 @@ "year": 1698, "resistanceReported": false, "duration": 6134400, - "curveSeeds": { - "c1": 11.406023002558161, - "c2": 15.34855589842557, - "c3": 15.42800000322356, - "c4": 8.093788631096725, - "c5": -15.757352890049782, - "c6": 14.182757784213734, - "c7": 2.667348077214452 + "points": { + "c1": -1.3027074991806664, + "c2": -5.309360379925172, + "c3": -1.964049821983636, + "c4": 2.111815614747222, + "c5": 0.36298382260911666, + "c6": -14.53854262427261, + "c7": 15.18672580860656 }, - "vertexSeeds": { - "c1": 7.689132837566281, - "c2": 7.33240202954482, - "c3": 7.544147298982212, - "c4": 7.937108306556846, - "c5": 8.283680508029729, - "c6": 8.236563873396953, - "c7": 7.593540816650152 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335641, + "c3": 9.963014331946376, + "c4": 7.970411465557098, + "c5": 5.977808599167821, + "c6": 3.9852057327785437, + "c7": 1.9926028663892776 }, "rgb": [222, 0, 59] }, @@ -32973,23 +32973,23 @@ "year": 1698, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -17.440080951915903, - "c2": -19.54110953300698, - "c3": -22.558380701941957, - "c4": 11.602668145141486, - "c5": -2.7736189807630964, - "c6": -3.774937081172787, - "c7": -24.836350382158564 + "points": { + "c1": -29.996392114272947, + "c2": -31.808201841717313, + "c3": -32.81613606805048, + "c4": -29.095570038807885, + "c5": -1.7127389733863367, + "c6": -23.79650259359098, + "c7": -25.362711735470057 }, - "vertexSeeds": { - "c1": 13.97510691706847, - "c2": 13.14447333738255, - "c3": 13.159566812891404, - "c4": 12.252486227936645, - "c5": 12.935291040733114, - "c6": 13.559386839683608, - "c7": 13.134683789765942 + "offsets": { + "c1": 23.721682847896442, + "c2": 20.332871012482673, + "c3": 16.944059177068887, + "c4": 13.555247341655116, + "c5": 10.166435506241326, + "c6": 6.777623670827558, + "c7": 3.3888118354137666 }, "rgb": [238, 201, 159] }, @@ -33000,23 +33000,23 @@ "year": 1699, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 7.016126877770326, - "c2": 7.6427962226329385, - "c3": 21.660615672966983, - "c4": -19.07396916831604, - "c5": 21.649577580081967, - "c6": 3.064916302866301, - "c7": 28.71995581981367 + "points": { + "c1": -7.936354790015237, + "c2": 12.544887897302935, + "c3": 7.421801691030787, + "c4": 28.137612423499867, + "c5": -19.342976956440907, + "c6": 11.57626370377772, + "c7": 9.363986989776592 }, - "vertexSeeds": { - "c1": 10.035674628376054, - "c2": 10.40985337575253, - "c3": 10.025692854461816, - "c4": 10.8594991334266, - "c5": 9.983635202240261, - "c6": 9.991619767447547, - "c7": 10.058277152440898 + "offsets": { + "c1": 18.54368932038835, + "c2": 15.894590846047143, + "c3": 13.245492371705968, + "c4": 10.596393897364763, + "c5": 7.947295423023586, + "c6": 5.2981969486823814, + "c7": 2.6490984743411907 }, "rgb": [86, 146, 138] }, @@ -33027,23 +33027,23 @@ "year": 1698, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 12.201017838803274, - "c2": -7.735872368729545, - "c3": 13.504750098984715, - "c4": 25.566309046031158, - "c5": 7.959096538421143, - "c6": -23.828532080235547, - "c7": 4.474503333245664 + "points": { + "c1": 12.056898629100509, + "c2": 28.666510655579266, + "c3": 13.361768772622234, + "c4": 24.55485158589071, + "c5": -16.385976925288237, + "c6": 29.49441316405275, + "c7": 27.180954422293432 }, - "vertexSeeds": { - "c1": 4.814750607996405, - "c2": 3.92954881278098, - "c3": 4.459802539715927, - "c4": 4.1970631887909775, - "c5": 4.23702055316706, - "c6": 4.657462865664717, - "c7": 4.6210840234989075 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [77, 76, 132] }, @@ -33054,23 +33054,23 @@ "year": 1699, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": -21.41841833899829, - "c2": 19.19410164031548, - "c3": 21.284757447775092, - "c4": -25.423437478510643, - "c5": -21.873899214937303, - "c6": -5.832934385810773, - "c7": 40.146860286391046 + "points": { + "c1": 13.439123665490328, + "c2": -39.60448817428783, + "c3": -16.66694182512895, + "c4": 18.278835861491345, + "c5": -32.948001175411896, + "c6": -39.2498181814403, + "c7": 37.821049211378224 }, - "vertexSeeds": { - "c1": 2.322510100986076, - "c2": 2.207766854053993, - "c3": 2.2811637016506583, - "c4": 2.0979100336677923, - "c5": 2.2296278749071075, - "c6": 2.1900391951142764, - "c7": 2.170276693944385 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [77, 76, 132] }, @@ -33081,23 +33081,23 @@ "year": 1700, "resistanceReported": false, "duration": 49334400, - "curveSeeds": { - "c1": 19.34277120514237, - "c2": 54.8604703703747, - "c3": 59.52136844906261, - "c4": -27.890666997781935, - "c5": -62.54042444302941, - "c6": -56.16956709228531, - "c7": -56.534627989600295 + "points": { + "c1": 13.703156580628232, + "c2": 1.179135423238833, + "c3": -36.01519187225423, + "c4": -19.392710177118587, + "c5": 1.1317067657711135, + "c6": 5.049946660918295, + "c7": 15.249629672391436 }, - "vertexSeeds": { - "c1": 2.0334745410916857, - "c2": 2.1293134436188117, - "c3": 1.9640492540092414, - "c4": 1.9399314840039907, - "c5": 2.1986985134093215, - "c6": 2.0335666109767643, - "c7": 2.0330921791425824 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.190013869625521, + "c3": 2.6583448913546013, + "c4": 2.1266759130836785, + "c5": 1.595006934812759, + "c6": 1.0633379565418393, + "c7": 0.5316689782709196 }, "rgb": [222, 0, 59] }, @@ -33108,23 +33108,23 @@ "year": 1699, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 2.8544532773565763, - "c2": 33.90300844720437, - "c3": -26.118196144002265, - "c4": -28.491877311304115, - "c5": -14.312100966495581, - "c6": 4.081647092751098, - "c7": 29.90882762006605 + "points": { + "c1": -1.23758672290068, + "c2": -40.422842521506766, + "c3": -13.763658978793003, + "c4": 39.72857865331072, + "c5": -36.288894000507895, + "c6": -4.978203466386425, + "c7": 3.9390843380377305 }, - "vertexSeeds": { - "c1": 3.2253170445687416, - "c2": 3.215472752463448, - "c3": 2.7316453760415627, - "c4": 2.667067932404955, - "c5": 2.774966723161631, - "c6": 3.002622626227536, - "c7": 3.048794840653164 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717061, + "c3": 3.860379103097549, + "c4": 3.0883032824780408, + "c5": 2.316227461858529, + "c6": 1.5441516412390204, + "c7": 0.7720758206195122 }, "rgb": [77, 76, 132] }, @@ -33135,23 +33135,23 @@ "year": 1699, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -0.4516833874263497, - "c2": 26.832893541670295, - "c3": 22.112953196610732, - "c4": 16.502254985330488, - "c5": -27.08852407466393, - "c6": -32.67361230323964, - "c7": -2.3210766307572896 + "points": { + "c1": -4.151497792484619, + "c2": -18.47879142313908, + "c3": -22.971329922658587, + "c4": 21.419313956019764, + "c5": 0.6764614003234328, + "c6": -0.14383344012625798, + "c7": 5.3796546993998575 }, - "vertexSeeds": { - "c1": 10.76262127306982, - "c2": 10.520739344023239, - "c3": 10.641862187092622, - "c4": 10.841482399072426, - "c5": 10.951445866172499, - "c6": 10.596042983642498, - "c7": 11.105838037075555 + "offsets": { + "c1": 20.355987055016183, + "c2": 17.447988904299578, + "c3": 14.539990753582996, + "c4": 11.631992602866394, + "c5": 8.723994452149789, + "c6": 5.815996301433208, + "c7": 2.907998150716604 }, "rgb": [222, 0, 59] }, @@ -33162,23 +33162,23 @@ "year": 1699, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -35.26196331577255, - "c2": -25.306490627288852, - "c3": -3.9934722881709384, - "c4": 14.724346097596396, - "c5": 2.796888477084039, - "c6": 26.088709571775667, - "c7": -15.84719815918993 + "points": { + "c1": 34.48169822216963, + "c2": -3.233449557629612, + "c3": 14.896732202510897, + "c4": 13.98913711766285, + "c5": -9.250154864437842, + "c6": 8.9251657483466, + "c7": 21.027965475085054 }, - "vertexSeeds": { - "c1": 8.770001514157965, - "c2": 8.232721317258655, - "c3": 8.610676617473073, - "c4": 7.7775245519658975, - "c5": 8.511272114537153, - "c6": 8.28742369447873, - "c7": 9.412667034132008 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070736, + "c3": 11.534905224225614, + "c4": 9.227924179380494, + "c5": 6.9209431345353725, + "c6": 4.6139620896902525, + "c7": 2.3069810448451307 }, "rgb": [77, 76, 132] }, @@ -33189,23 +33189,23 @@ "year": 1699, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 32.47021309045182, - "c2": 5.397975195341758, - "c3": 31.16190039959072, - "c4": -33.94785817220069, - "c5": 5.6217540966706, - "c6": -25.668473844653505, - "c7": -23.248548024161153 + "points": { + "c1": 30.065597248868045, + "c2": -27.48944030965123, + "c3": 16.736647624778833, + "c4": -33.22293568784564, + "c5": -29.48197749956114, + "c6": 6.53568447884566, + "c7": 9.26175874331966 }, - "vertexSeeds": { - "c1": 2.141561098254131, - "c2": 2.2502143320880275, - "c3": 2.2210281866086254, - "c4": 2.0939187039973577, - "c5": 1.9878350492004389, - "c6": 2.2101191860153246, - "c7": 2.318240324980286 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027739, + "c3": 2.889505316689783, + "c4": 2.3116042533518244, + "c5": 1.7337031900138684, + "c6": 1.1558021266759122, + "c7": 0.5779010633379561 }, "rgb": [238, 201, 159] }, @@ -33216,23 +33216,23 @@ "year": 1699, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 23.496885182636312, - "c2": 18.94251764993048, - "c3": 30.049736700045884, - "c4": 29.705175274011168, - "c5": 21.458271121468, - "c6": 6.144400302266007, - "c7": 0.7045154258986841 + "points": { + "c1": 27.830080093183255, + "c2": -15.771654809382373, + "c3": -3.520143791502857, + "c4": 10.34283062729888, + "c5": -25.99152596071754, + "c6": -13.690611122034198, + "c7": -3.7935439338324386 }, - "vertexSeeds": { - "c1": 3.163682150742436, - "c2": 3.3028164312488664, - "c3": 2.872567902687207, - "c4": 2.9636470882257964, - "c5": 2.8948251122484217, - "c6": 3.3407435699348547, - "c7": 2.9065060414860175 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280165, + "c3": 4.184003698566804, + "c4": 3.347202958853446, + "c5": 2.510402219140085, + "c6": 1.673601479426723, + "c7": 0.8368007397133616 }, "rgb": [222, 0, 59] }, @@ -33243,23 +33243,23 @@ "year": 1699, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -27.672983933946192, - "c2": 0.08121563855769409, - "c3": -21.31213040343065, - "c4": -7.661820150098649, - "c5": -28.752877776622167, - "c6": -22.473280454230096, - "c7": 20.300893809309876 + "points": { + "c1": -10.805229528052497, + "c2": -11.569300583520327, + "c3": 15.577322097982034, + "c4": 9.347132740180285, + "c5": 29.221134695882753, + "c6": -33.51187986225745, + "c7": -8.015062632786396 }, - "vertexSeeds": { - "c1": 8.315835787615354, - "c2": 8.497824081070931, - "c3": 8.185650358171566, - "c4": 8.851475494698782, - "c5": 8.656331394762432, - "c6": 7.770792893834564, - "c7": 8.34576334307924 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070736, + "c3": 11.534905224225614, + "c4": 9.227924179380494, + "c5": 6.9209431345353725, + "c6": 4.6139620896902525, + "c7": 2.3069810448451307 }, "rgb": [58, 15, 49] }, @@ -33270,23 +33270,23 @@ "year": 1699, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 1.704370868935193, - "c2": 13.126068178599944, - "c3": 1.6251529550334425, - "c4": 24.605220606615234, - "c5": -30.62122732843224, - "c6": 6.201301850901146, - "c7": 1.9467067437877077 + "points": { + "c1": 29.44742322302912, + "c2": -18.88219585219208, + "c3": 23.325957769438077, + "c4": -32.70460033301127, + "c5": -30.56511157732323, + "c6": 18.22980862108097, + "c7": 19.548596240967292 }, - "vertexSeeds": { - "c1": 2.850600136150599, - "c2": 2.8426300392074433, - "c3": 2.794194775456315, - "c4": 2.5366272874831632, - "c5": 2.6001171471452245, - "c6": 2.623571673516215, - "c7": 2.7638332247024966 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [238, 201, 159] }, @@ -33297,23 +33297,23 @@ "year": 1699, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": 32.39353357398803, - "c2": -5.358863483103946, - "c3": -48.614000951338376, - "c4": 2.6567164396712855, - "c5": 44.01832717813527, - "c6": -17.65698007703471, - "c7": 1.521901985219131 + "points": { + "c1": -19.665544245820385, + "c2": 9.509483859052892, + "c3": -36.05570165267788, + "c4": -30.017426171162366, + "c5": 34.86809600416692, + "c6": -28.94100513448227, + "c7": -8.739002792315802 }, - "vertexSeeds": { - "c1": 8.52204917092732, - "c2": 8.856040270261055, - "c3": 9.391065739624466, - "c4": 9.564807469128423, - "c5": 9.899306533614354, - "c6": 10.323041638875388, - "c7": 9.46536518235677 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.006934812760054, + "c3": 12.505779010633384, + "c4": 10.004623208506706, + "c5": 7.503467406380027, + "c6": 5.002311604253358, + "c7": 2.501155802126679 }, "rgb": [238, 201, 159] }, @@ -33324,23 +33324,23 @@ "year": 1699, "resistanceReported": true, "duration": 5961600, - "curveSeeds": { - "c1": 2.0520177140946245, - "c2": 5.684154385689062, - "c3": -6.258242549234264, - "c4": 8.685490796617213, - "c5": 8.334294600804814, - "c6": -8.169126190733433, - "c7": 13.760986182236348 + "points": { + "c1": 4.336627446674729, + "c2": 12.1713579589251, + "c3": -4.36240882927096, + "c4": 16.097182726395626, + "c5": -8.622206725856582, + "c6": -7.011289059695962, + "c7": -3.7355943562455796 }, - "vertexSeeds": { - "c1": 10.374049049159854, - "c2": 10.294219173408592, - "c3": 11.839119422231377, - "c4": 10.276874670868283, - "c5": 11.152923829153982, - "c6": 10.716057150267266, - "c7": 10.962858249642727 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.198335644937583, + "c3": 14.331946370781317, + "c4": 11.465557096625048, + "c5": 8.599167822468779, + "c6": 5.7327785483125355, + "c7": 2.8663892741562678 }, "rgb": [238, 201, 159] }, @@ -33351,23 +33351,23 @@ "year": 1699, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": -4.28611020189199, - "c2": -8.834407766510942, - "c3": 9.494802213320945, - "c4": 6.206035328920052, - "c5": 4.14751113044273, - "c6": 12.97428507176225, - "c7": 11.80653027076119 + "points": { + "c1": -2.742361260917459, + "c2": 17.002390913036095, + "c3": 12.205960254048126, + "c4": -8.438031229290193, + "c5": -0.9433472469952413, + "c6": 10.630181832159224, + "c7": -11.998425764306164 }, - "vertexSeeds": { - "c1": 3.106774042130315, - "c2": 3.3560395361022994, - "c3": 3.28138001533559, - "c4": 3.3585782933046713, - "c5": 3.4117446539465517, - "c6": 3.1768509990651315, - "c7": 3.3656482511826775 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199722, + "c3": 4.137771613499769, + "c4": 3.3102172907998146, + "c5": 2.482662968099861, + "c6": 1.6551086453999073, + "c7": 0.8275543226999537 }, "rgb": [77, 76, 132] }, @@ -33378,23 +33378,23 @@ "year": 1699, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -10.968469962378922, - "c2": -21.078876668136818, - "c3": -27.643481688799955, - "c4": -20.77225762255234, - "c5": -17.93388959088127, - "c6": -20.55834216622356, - "c7": 27.993625071208825 + "points": { + "c1": -9.90204561276505, + "c2": 24.745847496399186, + "c3": 28.1549013004051, + "c4": -27.581275429119653, + "c5": -13.842216738744455, + "c6": 15.476599297442306, + "c7": 25.3759870939748 }, - "vertexSeeds": { - "c1": 4.4996008931529365, - "c2": 4.158597229201636, - "c3": 4.333191622520376, - "c4": 4.874312982376627, - "c5": 4.366239875040718, - "c6": 4.208952015072526, - "c7": 5.070625486851204 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658809, + "c3": 6.125751271382341, + "c4": 4.9006010171058705, + "c5": 3.6754507628294046, + "c6": 2.4503005085529352, + "c7": 1.2251502542764652 }, "rgb": [86, 146, 138] }, @@ -33405,23 +33405,23 @@ "year": 1699, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 27.809295497273823, - "c2": -39.10100548713826, - "c3": -30.157944857082846, - "c4": -25.97626122190386, - "c5": 33.59637595825012, - "c6": 7.935677282180762, - "c7": -28.7279503815411 + "points": { + "c1": 18.42912978304784, + "c2": 27.183356036661863, + "c3": 12.649091214932774, + "c4": 23.01083983296438, + "c5": -46.79943962633678, + "c6": 6.117870194673763, + "c7": 13.305886446381102 }, - "vertexSeeds": { - "c1": 4.352020456105148, - "c2": 4.501983206471096, - "c3": 4.768652421030104, - "c4": 4.639507780867721, - "c5": 4.2945672092885, - "c6": 4.46140521206402, - "c7": 4.478483634506452 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934808, + "c3": 5.709662505779011, + "c4": 4.567730004623206, + "c5": 3.4257975034674084, + "c6": 2.283865002311603, + "c7": 1.1419325011558057 }, "rgb": [77, 76, 132] }, @@ -33432,23 +33432,23 @@ "year": 1699, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -40.454079532916666, - "c2": -21.534237609567995, - "c3": 41.65819988299025, - "c4": 20.908646819012745, - "c5": 7.172214311105847, - "c6": -17.585445391398252, - "c7": -41.86135995864917 + "points": { + "c1": 32.564392270982175, + "c2": -14.727072837502572, + "c3": -22.888280675015015, + "c4": -1.299487742476991, + "c5": -16.1448860872263, + "c6": 12.650635817894766, + "c7": -12.503786819087004 }, - "vertexSeeds": { - "c1": 4.567050505102158, - "c2": 5.413387967357292, - "c3": 5.188809986416361, - "c4": 4.729827720659568, - "c5": 5.314538614412225, - "c6": 4.804056590670026, - "c7": 4.578138745583768 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704575, + "c3": 6.726768377253812, + "c4": 5.381414701803048, + "c5": 4.036061026352288, + "c6": 2.690707350901524, + "c7": 1.3453536754507602 }, "rgb": [222, 0, 59] }, @@ -33459,23 +33459,23 @@ "year": 1699, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -13.672269237407637, - "c2": 18.273765777013047, - "c3": -22.191336997671765, - "c4": 22.232836070202403, - "c5": 7.787660287083757, - "c6": 20.83380419422005, - "c7": 22.095877179663134 + "points": { + "c1": 2.3609244745324744, + "c2": 12.697960584475233, + "c3": -21.18795167679575, + "c4": 25.696815849272326, + "c5": 10.547255213369723, + "c6": 5.043767614337771, + "c7": -11.254866110701029 }, - "vertexSeeds": { - "c1": 2.1953044179526096, - "c2": 2.064049136903851, - "c3": 2.1374750811303973, - "c4": 2.197676896582988, - "c5": 2.143123751405106, - "c6": 2.288250279174547, - "c7": 2.0918863637182294 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.3009708737864085, + "c3": 2.7508090614886744, + "c4": 2.2006472491909363, + "c5": 1.6504854368932023, + "c6": 1.1003236245954682, + "c7": 0.5501618122977341 }, "rgb": [77, 76, 132] }, @@ -33486,23 +33486,23 @@ "year": 1699, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -22.713957813239613, - "c2": -17.3916816490612, - "c3": -13.213479576894905, - "c4": 5.782412062717633, - "c5": 30.886267483209636, - "c6": -9.868179386653114, - "c7": -24.497980715205383 + "points": { + "c1": 24.296582691917777, + "c2": 24.660049394008084, + "c3": 21.3252843264776, + "c4": -18.419688116006984, + "c5": 2.79345765842627, + "c6": 17.7806617693903, + "c7": 11.975222155520463 }, - "vertexSeeds": { - "c1": 8.59907687471238, - "c2": 8.31777425812501, - "c3": 2.3143229911194023, - "c4": 9.327462125797487, - "c5": 7.3479152967242, - "c6": 6.032315281833627, - "c7": 5.9657513381211 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.370319001386962, + "c3": 11.141932501155802, + "c4": 8.913546000924644, + "c5": 6.68515950069348, + "c6": 4.456773000462322, + "c7": 2.228386500231161 }, "rgb": [222, 0, 59] }, @@ -33513,23 +33513,23 @@ "year": 1699, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -28.691254486266736, - "c2": 16.249366732267564, - "c3": -25.079566327789763, - "c4": -0.6021038542578374, - "c5": 5.704766369661808, - "c6": 14.783137742312821, - "c7": 10.28042100790493 + "points": { + "c1": -21.2835752783868, + "c2": 30.84763766101821, + "c3": -23.169366775869154, + "c4": 1.896227300965137, + "c5": -11.682504710331187, + "c6": 6.81977668350364, + "c7": -6.977354181441012 }, - "vertexSeeds": { - "c1": 2.759614593854202, - "c2": 2.6324136213196936, - "c3": 2.6694038591469256, - "c4": 2.7632010029622167, - "c5": 2.5767547683996077, - "c6": 2.558536122195395, - "c7": 2.741108683785595 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -33540,23 +33540,23 @@ "year": 1699, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 18.953462284990017, - "c2": -19.39868726067168, - "c3": -5.900817513608455, - "c4": 0.855491199440344, - "c5": 2.2790357307881948, - "c6": -25.76479907187318, - "c7": 9.966949559037992 + "points": { + "c1": 11.551985652102204, + "c2": -35.88307271050463, + "c3": -24.259226531304726, + "c4": -19.599390131522924, + "c5": 26.301729084110207, + "c6": 26.97272322789648, + "c7": -35.095031008203264 }, - "vertexSeeds": { - "c1": 3.9345276799531526, - "c2": 4.156988173997831, - "c3": 4.299763071051416, - "c4": 4.158756783639488, - "c5": 4.395239091676578, - "c6": 4.145320621099348, - "c7": 4.690427381052158 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [58, 15, 49] }, @@ -33567,23 +33567,23 @@ "year": 1699, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -13.57128739839029, - "c2": -13.712596598619694, - "c3": -32.63644024551413, - "c4": 26.575262424744793, - "c5": 6.513569383791548, - "c6": 31.32383034007762, - "c7": -3.968947548128021 + "points": { + "c1": -35.37541116986047, + "c2": -26.185683299678495, + "c3": 18.84795381970099, + "c4": 1.8739805281001338, + "c5": -6.4661442532107, + "c6": 14.547899580550514, + "c7": 31.3278671749175 }, - "vertexSeeds": { - "c1": 9.587978622443144, - "c2": 9.11796636965331, - "c3": 8.140209162566094, - "c4": 9.211956304280495, - "c5": 9.658131425842305, - "c6": 8.910895592990448, - "c7": 7.812433733611255 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070736, + "c3": 11.534905224225614, + "c4": 9.227924179380494, + "c5": 6.9209431345353725, + "c6": 4.6139620896902525, + "c7": 2.3069810448451307 }, "rgb": [58, 15, 49] }, @@ -33594,23 +33594,23 @@ "year": 1699, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 34.63142571313817, - "c2": -35.81066874724385, - "c3": 33.36594390805105, - "c4": -3.625456757942395, - "c5": -22.203862261261186, - "c6": -29.77053838322561, - "c7": 35.05311254650978 + "points": { + "c1": -16.865993527039638, + "c2": -30.60015945305551, + "c3": -31.91770600465618, + "c4": -25.166809377826212, + "c5": -35.714152028063765, + "c6": 30.293407216655467, + "c7": 11.889056090549147 }, - "vertexSeeds": { - "c1": 3.8800295629821533, - "c2": 4.66051481661831, - "c3": 4.043836280865873, - "c4": 4.557283327854178, - "c5": 4.4114777490518255, - "c6": 3.8984455054223353, - "c7": 4.41311553679458 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [58, 15, 49] }, @@ -33621,23 +33621,23 @@ "year": 1700, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 19.056237599792723, - "c2": -22.800201090675316, - "c3": -28.49589913531389, - "c4": 2.753986268079373, - "c5": 5.049138297387579, - "c6": -20.90449567969221, - "c7": 17.303790650715 + "points": { + "c1": 27.022880238786712, + "c2": 26.610013523798074, + "c3": -36.548855114509095, + "c4": -25.67751573863644, + "c5": 37.85259244605383, + "c6": -23.792480082055626, + "c7": 49.90865549321484 }, - "vertexSeeds": { - "c1": 5.895759282090104, - "c2": 6.006853043141991, - "c3": 5.440629298831735, - "c4": 4.967077935068784, - "c5": 4.902823665746584, - "c6": 5.7831373981558425, - "c7": 5.951420629320972 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911232, + "c3": 7.42024965325936, + "c4": 5.936199722607486, + "c5": 4.4521497919556206, + "c6": 2.968099861303747, + "c7": 1.4840499306518735 }, "rgb": [222, 0, 59] }, @@ -33648,23 +33648,23 @@ "year": 1700, "resistanceReported": false, "duration": 44236800, - "curveSeeds": { - "c1": -0.600541933165978, - "c2": -53.830944256180054, - "c3": -8.141523108126513, - "c4": -36.477889479864146, - "c5": 54.85809944119726, - "c6": -38.589776906417825, - "c7": -37.79612802916331 + "points": { + "c1": 4.224169159945909, + "c2": 29.96977277466268, + "c3": 16.285866422682822, + "c4": 37.38768976103041, + "c5": 57.055610717304994, + "c6": -19.004895600600143, + "c7": -8.701292939939954 }, - "vertexSeeds": { - "c1": 9.26420012632201, - "c2": 9.6544689571732, - "c3": 10.180780060598897, - "c4": 9.571653608956007, - "c5": 9.076992417498001, - "c6": 9.384869202445325, - "c7": 10.162363581710913 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.646324549237175, + "c3": 12.205270457697651, + "c4": 9.764216366158111, + "c5": 7.323162274618587, + "c6": 4.882108183079063, + "c7": 2.441054091539524 }, "rgb": [77, 76, 132] }, @@ -33675,23 +33675,23 @@ "year": 1699, "resistanceReported": true, "duration": 30153600, - "curveSeeds": { - "c1": 40.31267209384833, - "c2": -15.11777225714803, - "c3": 18.602705164933397, - "c4": 13.805241101570076, - "c5": 4.562449945523937, - "c6": 7.26852516491337, - "c7": 26.95625423595431 + "points": { + "c1": -23.707550802380286, + "c2": 3.0493700844977383, + "c3": -28.7146466948062, + "c4": -1.2750266391042686, + "c5": 44.984295092781544, + "c6": -8.947496608938977, + "c7": 1.537047901731924 }, - "vertexSeeds": { - "c1": 6.974858760599567, - "c2": 10.199323395020269, - "c3": 7.947996719499761, - "c4": 11.31018309211567, - "c5": 10.167603739971458, - "c6": 6.8098725049757824, - "c7": 8.465125436676729 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133145, + "c3": 13.869625520110956, + "c4": 11.095700416088764, + "c5": 8.321775312066574, + "c6": 5.547850208044382, + "c7": 2.7739251040221893 }, "rgb": [238, 201, 159] }, @@ -33702,23 +33702,23 @@ "year": 1699, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 44.7045783051357, - "c2": -29.37057305303028, - "c3": 26.484323114977414, - "c4": -13.97182008546833, - "c5": 23.527723868114393, - "c6": -43.84506273656344, - "c7": 25.17170500343181 + "points": { + "c1": 10.281095687056755, + "c2": 33.29352482241657, + "c3": 23.94011895561178, + "c4": -33.36423781784446, + "c5": 0.14916960968677984, + "c6": -39.008544339360675, + "c7": -5.431197289666635 }, - "vertexSeeds": { - "c1": 4.404244083207505, - "c2": 4.226997872566646, - "c3": 4.593755366383171, - "c4": 4.464376080199423, - "c5": 3.9005438598544098, - "c6": 4.75927025389129, - "c7": 4.595113951013831 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [77, 76, 132] }, @@ -33729,23 +33729,23 @@ "year": 1699, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 34.20055486117658, - "c2": -20.931318257606442, - "c3": -41.294621503032374, - "c4": 0.7707601517459892, - "c5": -37.1016394681365, - "c6": 18.55430415381057, - "c7": -12.721028509463842 + "points": { + "c1": -6.312829977962842, + "c2": 18.591536505181345, + "c3": -8.475400198306687, + "c4": -14.285025218430874, + "c5": -35.635630363180724, + "c6": 40.3023467474087, + "c7": -15.37942136495559 }, - "vertexSeeds": { - "c1": 7.196335146065286, - "c2": 7.391331587494295, - "c3": 6.552840703184016, - "c4": 7.517794623058045, - "c5": 7.90711177185627, - "c6": 7.062895021938368, - "c7": 7.910138536185588 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571425, + "c3": 9.523809523809526, + "c4": 7.619047619047618, + "c5": 5.714285714285717, + "c6": 3.809523809523809, + "c7": 1.9047619047618995 }, "rgb": [86, 146, 138] }, @@ -33756,23 +33756,23 @@ "year": 1700, "resistanceReported": false, "duration": 54864000, - "curveSeeds": { - "c1": -33.823432969983685, - "c2": 28.460262487576117, - "c3": 44.812439849214655, - "c4": -64.45062877299193, - "c5": -5.337937442331864, - "c6": -56.241206607636016, - "c7": -54.291173965354005 + "points": { + "c1": -53.76896890873473, + "c2": -40.5337114021916, + "c3": -2.8864886997005073, + "c4": 67.55240525688251, + "c5": -50.943317727586255, + "c6": -49.59803214089151, + "c7": -33.054142284203614 }, - "vertexSeeds": { - "c1": 1.8373411179566472, - "c2": 1.6798105179826566, - "c3": 1.8921472887142627, - "c4": 1.4112101168005196, - "c5": 1.7015767045713879, - "c6": 1.5817929885636397, - "c7": 1.5424663249589257 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.0790568654646324, + "c3": 2.5658807212205272, + "c4": 2.052704576976422, + "c5": 1.5395284327323169, + "c6": 1.0263522884882117, + "c7": 0.5131761442441064 }, "rgb": [58, 15, 49] }, @@ -33783,23 +33783,23 @@ "year": 1700, "resistanceReported": false, "duration": 56332800, - "curveSeeds": { - "c1": 15.722163449363975, - "c2": -43.57198900221544, - "c3": -51.107010956312784, - "c4": 33.73690805262585, - "c5": 14.939414506232964, - "c6": 22.60612522028447, - "c7": 22.175052898637645 + "points": { + "c1": 13.945878889404696, + "c2": 63.36831178560024, + "c3": -22.267738803294442, + "c4": 21.930094182189762, + "c5": 39.9892529128051, + "c6": -70.4764784964644, + "c7": -60.84684677679327 }, - "vertexSeeds": { - "c1": 3.633419689119171, - "c2": 3.633419689119171, - "c3": 3.633419689119171, - "c4": 3.633419689119171, - "c5": 3.633419689119171, - "c6": 3.633419689119171, - "c7": 3.633419689119171 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -33810,23 +33810,23 @@ "year": 1699, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -23.833116682113925, - "c2": 22.352260746983234, - "c3": 29.805812610735984, - "c4": -16.754993178262726, - "c5": 16.85492491635494, - "c6": -19.838878707933947, - "c7": 23.85334325546488 + "points": { + "c1": 4.141732045212542, + "c2": 9.230008506064841, + "c3": -23.995151399795894, + "c4": 24.770443651444474, + "c5": -17.134315752559612, + "c6": 24.46858943306482, + "c7": -22.3089167954283 }, - "vertexSeeds": { - "c1": 6.513785701205346, - "c2": 6.0833166322022185, - "c3": 6.470649409185062, - "c4": 6.068318061250245, - "c5": 6.166470718357976, - "c6": 6.341156102204457, - "c7": 6.485369473807453 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715667, + "c3": 7.882570503929735, + "c4": 6.306056403143784, + "c5": 4.729542302357833, + "c6": 3.1530282015718836, + "c7": 1.5765141007859502 }, "rgb": [238, 201, 159] }, @@ -33837,23 +33837,23 @@ "year": 1699, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 15.056746506858573, - "c2": 36.602900929429865, - "c3": -33.097241195032616, - "c4": 28.822193863765563, - "c5": -15.050081445385814, - "c6": -28.963590369048525, - "c7": 5.917494377188312 + "points": { + "c1": -24.988146629760347, + "c2": 21.259066177953358, + "c3": 38.40778922581974, + "c4": -16.284542377386387, + "c5": -28.895920485100465, + "c6": 15.202547132583724, + "c7": 0.8868536535986067 }, - "vertexSeeds": { - "c1": 1.7411804633429693, - "c2": 1.6662427962485105, - "c3": 1.6706745511434096, - "c4": 1.5723047026792007, - "c5": 1.7424960073869387, - "c6": 1.6340755342805093, - "c7": 1.686725487300231 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.5242718446601953, + "c3": 2.103559870550164, + "c4": 1.682847896440129, + "c5": 1.2621359223300976, + "c6": 0.8414239482200663, + "c7": 0.42071197411003125 }, "rgb": [222, 0, 59] }, @@ -33864,23 +33864,23 @@ "year": 1700, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 5.763108663609486, - "c2": -25.420616406442463, - "c3": 2.549630339321503, - "c4": -21.740731396065705, - "c5": 1.5038415055518541, - "c6": -5.336907629248699, - "c7": -19.27595328289841 + "points": { + "c1": 0.6608467821971757, + "c2": 20.7576117340609, + "c3": 25.28153481782887, + "c4": -6.510753423766367, + "c5": -31.433649077264054, + "c6": -29.20635094471226, + "c7": 30.11848075649307 }, - "vertexSeeds": { - "c1": 4.094193862836275, - "c2": 4.049996232524283, - "c3": 4.294905128604001, - "c4": 4.248029477481176, - "c5": 4.004990214497909, - "c6": 4.210937600012884, - "c7": 4.2525095044453876 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.21359223300971, + "c3": 5.177993527508087, + "c4": 4.142394822006471, + "c5": 3.106796116504855, + "c6": 2.0711974110032396, + "c7": 1.0355987055016156 }, "rgb": [86, 146, 138] }, @@ -33891,23 +33891,23 @@ "year": 1699, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 4.109408006652323, - "c2": -15.509069514203889, - "c3": -10.193035732443704, - "c4": 18.846425469281982, - "c5": -19.55748831242377, - "c6": 5.690299504467809, - "c7": -24.686395533060114 + "points": { + "c1": -22.35268177163364, + "c2": 6.490521149147213, + "c3": 26.087614351067046, + "c4": 28.26107999179522, + "c5": 18.175220263485087, + "c6": 5.820846957472995, + "c7": 8.89608953170319 }, - "vertexSeeds": { - "c1": 3.759122479302609, - "c2": 4.324678667982425, - "c3": 4.395169317834263, - "c4": 4.290235274490262, - "c5": 4.301861671206231, - "c6": 4.556926461302603, - "c7": 4.247094784245801 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -33918,23 +33918,23 @@ "year": 1699, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -33.858261974708434, - "c2": 27.187321169444637, - "c3": 4.732913468826212, - "c4": -18.117854198593257, - "c5": 11.335016684730498, - "c6": 21.41241824460363, - "c7": 32.233242171615046 + "points": { + "c1": 22.751962970029275, + "c2": 10.548342079232064, + "c3": 20.583763485217233, + "c4": -35.91462659407919, + "c5": -30.55744551377694, + "c6": -4.062459700960986, + "c7": 9.811138112029816 }, - "vertexSeeds": { - "c1": 6.6375593563134405, - "c2": 6.514008555377862, - "c3": 8.206466004672325, - "c4": 8.517817293660439, - "c5": 8.451592446271736, - "c6": 8.521606718721493, - "c7": 6.334954686389027 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099858, + "c3": 10.40221914008322, + "c4": 8.321775312066574, + "c5": 6.241331484049929, + "c6": 4.160887656033291, + "c7": 2.0804438280166453 }, "rgb": [77, 76, 132] }, @@ -33945,23 +33945,23 @@ "year": 1699, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -14.648440090020372, - "c2": -29.624765345490466, - "c3": -27.752639171706168, - "c4": 15.795534020568894, - "c5": -23.07854967450009, - "c6": -30.479479509583676, - "c7": 11.841351212965407 + "points": { + "c1": 19.238010526342386, + "c2": -0.6288679632867016, + "c3": 35.9350717065515, + "c4": -34.379806033659186, + "c5": -9.673319480715286, + "c6": 30.624159101573056, + "c7": 11.700859665122152 }, - "vertexSeeds": { - "c1": 4.58193063680612, - "c2": 8.67403893762406, - "c3": 7.16030291372696, - "c4": 9.562795265165716, - "c5": 8.001273486619064, - "c6": 6.095429976150671, - "c7": 4.562192079102633 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.558021266759129, + "c4": 9.246417013407305, + "c5": 6.934812760055476, + "c6": 4.623208506703652, + "c7": 2.311604253351826 }, "rgb": [86, 146, 138] }, @@ -33972,23 +33972,23 @@ "year": 1699, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -33.81588766838499, - "c2": 6.415036567258603, - "c3": 17.183088801750927, - "c4": -34.985268286433346, - "c5": 34.574311241415955, - "c6": -2.0978773778839397, - "c7": 2.1160435147173686 + "points": { + "c1": -17.93806637225088, + "c2": -28.464963077053962, + "c3": 8.663985279876236, + "c4": -5.373674919229522, + "c5": 23.50069705336051, + "c6": 3.3378197814149075, + "c7": 13.682409457470456 }, - "vertexSeeds": { - "c1": 8.453865507301536, - "c2": 8.875603016696394, - "c3": 8.698948508882326, - "c4": 9.24762199762749, - "c5": 8.086239197982131, - "c6": 9.148644047107018, - "c7": 7.888750409716222 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547851, + "c3": 11.23439667128987, + "c4": 8.987517337031898, + "c5": 6.740638002773926, + "c6": 4.493758668515953, + "c7": 2.2468793342579723 }, "rgb": [222, 0, 59] }, @@ -33999,23 +33999,23 @@ "year": 1699, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -21.494757013455718, - "c2": 1.8515480603563716, - "c3": 3.919037946539788, - "c4": 20.2979364534108, - "c5": 7.3192053532146915, - "c6": 3.637882487806536, - "c7": 5.970146283254806 + "points": { + "c1": -32.3124114325804, + "c2": -14.99899465552037, + "c3": 10.940443804142873, + "c4": 9.639257101014358, + "c5": 6.783201407479531, + "c6": -1.254563898376503, + "c7": -32.464360223986354 }, - "vertexSeeds": { - "c1": 4.335933665207352, - "c2": 4.5043945429089085, - "c3": 3.9331565920747873, - "c4": 4.578229665567321, - "c5": 4.0507760164332565, - "c6": 4.254008003856625, - "c7": 4.43511769496803 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [58, 15, 49] }, @@ -34026,23 +34026,23 @@ "year": 1699, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -5.375119784059589, - "c2": 10.745926285183284, - "c3": -20.725802566175872, - "c4": 18.71581068908684, - "c5": -5.3576894163540025, - "c6": 3.619626560677567, - "c7": 10.375326887286437 + "points": { + "c1": -1.999268554541331, + "c2": 10.228701237936352, + "c3": -8.04910205119176, + "c4": -17.837686989697772, + "c5": 17.97011725659053, + "c6": -9.3836065956403, + "c7": 3.543341970453632 }, - "vertexSeeds": { - "c1": 3.7740240968132865, - "c2": 3.8651765566444425, - "c3": 4.310922128226133, - "c4": 4.065926701602378, - "c5": 4.2691212886616725, - "c6": 4.525619439511064, - "c7": 3.880526282812804 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -34053,23 +34053,23 @@ "year": 1699, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 8.082840826903233, - "c2": -11.873888354770507, - "c3": 0.06718552622283624, - "c4": -9.285803599016731, - "c5": -10.639804806194924, - "c6": 1.323379274675819, - "c7": 17.54867379975285 + "points": { + "c1": 14.657511719600347, + "c2": -7.01121778053729, + "c3": 24.195184389627716, + "c4": -15.220901485129097, + "c5": 11.103968190764999, + "c6": 1.430477243958041, + "c7": -30.114059664037104 }, - "vertexSeeds": { - "c1": 0.8808065319733366, - "c2": 0.8045003954351225, - "c3": 0.8783249445342515, - "c4": 0.7768912409690252, - "c5": 0.7557078889271971, - "c6": 0.7855652815586291, - "c7": 0.8119870042910153 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.386962552011096, + "c3": 1.1558021266759124, + "c4": 0.9246417013407302, + "c5": 0.693481276005548, + "c6": 0.4623208506703656, + "c7": 0.23116042533518233 }, "rgb": [222, 0, 59] }, @@ -34080,23 +34080,23 @@ "year": 1699, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 28.21927576521243, - "c2": 11.862286992332237, - "c3": 0.6795986179426237, - "c4": 3.2430438423372863, - "c5": -2.9828771475180105, - "c6": -17.527628389580435, - "c7": -14.22331683713356 + "points": { + "c1": -15.042483894802238, + "c2": 26.255753597367395, + "c3": 7.076787449206996, + "c4": -4.52529682341013, + "c5": 19.560745016265322, + "c6": 7.419609020571123, + "c7": 18.03089559115636 }, - "vertexSeeds": { - "c1": 2.046456636385445, - "c2": 1.846151826747771, - "c3": 1.899666039869832, - "c4": 1.8883871509095846, - "c5": 1.8923602488229014, - "c6": 1.9154405620454267, - "c7": 2.031141285050965 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037444, + "c3": 2.473416551086454, + "c4": 1.9787332408691631, + "c5": 1.4840499306518722, + "c6": 0.9893666204345816, + "c7": 0.4946833102172908 }, "rgb": [222, 0, 59] }, @@ -34107,23 +34107,23 @@ "year": 1700, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -26.696214915515206, - "c2": 31.55395224130109, - "c3": -3.417923503249167, - "c4": 18.524370251420457, - "c5": 25.576008115980933, - "c6": 13.080529544815718, - "c7": -1.2244623183063439 + "points": { + "c1": 23.145180442410897, + "c2": -18.891982122180714, + "c3": -3.9057268098794964, + "c4": -35.23455229069941, + "c5": 6.444001247680383, + "c6": -13.026008258757901, + "c7": -18.568245684419946 }, - "vertexSeeds": { - "c1": 2.74207379751914, - "c2": 2.6518400413298004, - "c3": 2.828609187080369, - "c4": 2.776123578054517, - "c5": 2.861526329421399, - "c6": 2.696890327779506, - "c7": 2.6594585350259927 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073511, + "c3": 3.4905224225612597, + "c4": 2.7924179380490095, + "c5": 2.0943134535367594, + "c6": 1.3962089690245092, + "c7": 0.6981044845122503 }, "rgb": [58, 15, 49] }, @@ -34134,23 +34134,23 @@ "year": 1699, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -17.866458777220778, - "c2": 16.3697382532264, - "c3": -21.278764583669414, - "c4": -26.15362071500002, - "c5": -6.613392578753825, - "c6": 18.866972533098618, - "c7": -23.963317871526993 + "points": { + "c1": 25.548496214293742, + "c2": -19.035346599014886, + "c3": 18.87606840461914, + "c4": 20.958462759558394, + "c5": -13.860107401850499, + "c6": 3.223178717002348, + "c7": -19.89046795849317 }, - "vertexSeeds": { - "c1": 2.4248588793015062, - "c2": 2.2732279901250423, - "c3": 2.1870844577491377, - "c4": 2.0628118776052973, - "c5": 2.177809123180281, - "c6": 2.5154208001051597, - "c7": 2.3057807368857244 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897357, + "c3": 3.097549699491447, + "c4": 2.478039759593157, + "c5": 1.8585298196948679, + "c6": 1.2390198797965786, + "c7": 0.6195099398982893 }, "rgb": [222, 0, 59] }, @@ -34161,23 +34161,23 @@ "year": 1699, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 26.128794269295266, - "c2": 25.718769439712045, - "c3": 12.05512162395414, - "c4": 26.50592624498299, - "c5": 2.5719007407693475, - "c6": 16.961602302890487, - "c7": 28.85282138522467 + "points": { + "c1": 23.362932164572115, + "c2": -13.866037972609522, + "c3": 3.201075917632828, + "c4": 23.35384939682575, + "c5": -22.683917641768915, + "c6": -10.780992785098654, + "c7": 13.223958526277634 }, - "vertexSeeds": { - "c1": 10.403291295481177, - "c2": 10.433985274204929, - "c3": 10.33940694491204, - "c4": 10.442436390514196, - "c5": 10.466818624896336, - "c6": 10.528948936085742, - "c7": 10.435111927456973 + "offsets": { + "c1": 17.734627831715212, + "c2": 15.201109570041593, + "c3": 12.667591308367975, + "c4": 10.134073046694356, + "c5": 7.600554785020856, + "c6": 5.067036523347237, + "c7": 2.5335182616736187 }, "rgb": [222, 0, 59] }, @@ -34188,23 +34188,23 @@ "year": 1700, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -34.91242639150577, - "c2": 12.06871396614224, - "c3": 23.151954517529205, - "c4": -25.92324245027035, - "c5": -19.7259739300572, - "c6": -12.01325527009324, - "c7": 8.748105191061626 + "points": { + "c1": 20.30092581984352, + "c2": -19.489654171215566, + "c3": 37.21426309339153, + "c4": -4.185303288665487, + "c5": -39.189164637835084, + "c6": 5.034786075312084, + "c7": -8.191454292105917 }, - "vertexSeeds": { - "c1": 4.530726368363667, - "c2": 3.8515700604543133, - "c3": 4.141802560915161, - "c4": 4.66110178420872, - "c5": 4.466348245452312, - "c6": 4.124983252380986, - "c7": 4.361126748822523 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [238, 201, 159] }, @@ -34215,23 +34215,23 @@ "year": 1699, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -7.169761425922644, - "c2": -9.554833848200918, - "c3": 5.872986905102344, - "c4": -5.829338228075457, - "c5": 1.768039864778288, - "c6": -21.886230116365716, - "c7": 25.635864203712657 + "points": { + "c1": -30.03517107787304, + "c2": -7.558617789425465, + "c3": 17.507294426113006, + "c4": 32.12497345669031, + "c5": 24.73816921922316, + "c6": -25.58998468254011, + "c7": 7.48155334543236 }, - "vertexSeeds": { - "c1": 3.5534678615550583, - "c2": 3.36300307954766, - "c3": 3.72909186828179, - "c4": 3.5541225076407876, - "c5": 3.730171030808518, - "c6": 3.6319997100192483, - "c7": 3.576349401099756 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [222, 0, 59] }, @@ -34242,23 +34242,23 @@ "year": 1700, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 19.62947547518582, - "c2": 23.775199236361033, - "c3": -2.2571444273423396, - "c4": -11.924814060515505, - "c5": -29.718500077962954, - "c6": 30.881470978042955, - "c7": 18.01110220742759 + "points": { + "c1": -19.537778524627097, + "c2": -9.03140347478865, + "c3": -34.24427131286678, + "c4": 13.820570381882817, + "c5": -0.7268892260360289, + "c6": -15.85380965520963, + "c7": 34.09567345978276 }, - "vertexSeeds": { - "c1": 10.048942867612565, - "c2": 10.421264585562717, - "c3": 10.075330331365475, - "c4": 10.43905630003417, - "c5": 10.021442249645007, - "c6": 9.827185656061838, - "c7": 10.427258907465134 + "offsets": { + "c1": 17.864077669902912, + "c2": 15.3120665742025, + "c3": 12.76005547850209, + "c4": 10.20804438280168, + "c5": 7.656033287101267, + "c6": 5.10402219140084, + "c7": 2.5520110957004283 }, "rgb": [238, 201, 159] }, @@ -34269,23 +34269,23 @@ "year": 1700, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -37.50041817794542, - "c2": -0.2655187272673416, - "c3": -10.540135842360055, - "c4": -19.14817990722885, - "c5": 28.855797782401126, - "c6": -29.741366426588442, - "c7": 10.409375111353548 + "points": { + "c1": -12.376240936027244, + "c2": 0.7467612415340596, + "c3": -34.314242467424755, + "c4": -18.28609917291699, + "c5": 5.586675967405441, + "c6": -37.52236058375556, + "c7": 38.28601946379693 }, - "vertexSeeds": { - "c1": 4.240575171890237, - "c2": 4.074744589778316, - "c3": 4.4668465953562935, - "c4": 3.927444175450395, - "c5": 3.76176915915848, - "c6": 3.896850996139062, - "c7": 4.245380580514187 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -34296,23 +34296,23 @@ "year": 1700, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 9.41558776901487, - "c2": 34.477040125869394, - "c3": 22.049893845624794, - "c4": -35.894369733199426, - "c5": -20.31362467907704, - "c6": 29.540516421692388, - "c7": -31.864239121672817 + "points": { + "c1": -13.58189663131537, + "c2": -25.330297132495687, + "c3": 30.974522335130217, + "c4": -42.529012956479484, + "c5": 5.705344359285519, + "c6": -1.4082296181164509, + "c7": 24.849774891990933 }, - "vertexSeeds": { - "c1": 9.546173362254068, - "c2": 9.830032718400687, - "c3": 9.0586943933653, - "c4": 9.208506236550287, - "c5": 9.213390940304873, - "c6": 9.739491380504349, - "c7": 9.496435415384822 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116493, + "c3": 12.135922330097088, + "c4": 9.70873786407767, + "c5": 7.281553398058252, + "c6": 4.854368932038835, + "c7": 2.4271844660194173 }, "rgb": [77, 76, 132] }, @@ -34323,23 +34323,23 @@ "year": 1700, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 0.10922547475764333, - "c2": 23.67426901986022, - "c3": 17.247843797817225, - "c4": -33.286393967708726, - "c5": 4.694042607960554, - "c6": -12.735037729476133, - "c7": 9.087414381701592 + "points": { + "c1": 16.61102808110428, + "c2": 16.06143717647464, + "c3": 7.244636594186474, + "c4": 17.82137913664606, + "c5": -25.001688723609462, + "c6": -12.980377565657747, + "c7": -13.15520626274272 }, - "vertexSeeds": { - "c1": 3.4408114343490563, - "c2": 2.8698559868733207, - "c3": 2.978323474823913, - "c4": 2.965663530457685, - "c5": 3.082125515581618, - "c6": 2.9142722948521746, - "c7": 3.217169630489918 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320389, + "c3": 4.207119741100321, + "c4": 3.365695792880258, + "c5": 2.5242718446601944, + "c6": 1.6828478964401312, + "c7": 0.8414239482200634 }, "rgb": [222, 0, 59] }, @@ -34350,23 +34350,23 @@ "year": 1700, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 32.34182816214435, - "c2": 30.242141329985003, - "c3": 3.593406552769615, - "c4": 1.9423056443457938, - "c5": -13.701697907384151, - "c6": 24.905080656111764, - "c7": -10.160713699084322 + "points": { + "c1": 18.25762916438827, + "c2": 23.362225599781553, + "c3": 31.4260866549195, + "c4": 38.542927861014434, + "c5": -36.247857727606515, + "c6": 18.485652462077724, + "c7": -30.044120218019494 }, - "vertexSeeds": { - "c1": 2.990793139548131, - "c2": 3.1992468337553697, - "c3": 3.0235081717431522, - "c4": 3.1485668844255583, - "c5": 3.179473562389224, - "c6": 2.9360604073156678, - "c7": 3.027007592137214 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -34377,23 +34377,23 @@ "year": 1700, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -11.947474981076976, - "c2": 10.919341979337197, - "c3": 30.496175255397034, - "c4": 5.684627541624266, - "c5": -27.127186924769227, - "c6": 34.68709235846437, - "c7": 30.071926152177994 + "points": { + "c1": 27.03404937268327, + "c2": 0.29670784640531167, + "c3": 31.48482336663554, + "c4": -35.063857955255095, + "c5": 14.172183387109165, + "c6": 30.861724583905755, + "c7": -17.236505341180358 }, - "vertexSeeds": { - "c1": 8.029385234373478, - "c2": 6.570760466197519, - "c3": 7.041445894114152, - "c4": 7.602071174552219, - "c5": 6.431099579130082, - "c6": 8.317874496488205, - "c7": 6.883394497498959 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335643, + "c3": 9.963014331946374, + "c4": 7.970411465557098, + "c5": 5.977808599167828, + "c6": 3.985205732778552, + "c7": 1.992602866389276 }, "rgb": [58, 15, 49] }, @@ -34404,23 +34404,23 @@ "year": 1700, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 10.203194972804845, - "c2": 22.296283038617112, - "c3": -3.535630553006996, - "c4": -19.341084984654614, - "c5": 34.00740061435728, - "c6": 2.783451926136216, - "c7": -30.56818808122855 + "points": { + "c1": -5.784502750044279, + "c2": 17.587015537897514, + "c3": -6.299916970128422, + "c4": 30.074443932997795, + "c5": -34.702478892420636, + "c6": -27.503236470600122, + "c7": -16.197401407133125 }, - "vertexSeeds": { - "c1": 8.101894589716785, - "c2": 8.764206881859442, - "c3": 7.767977873676389, - "c4": 8.012177444882763, - "c5": 8.827643788666322, - "c6": 8.578226446704992, - "c7": 8.908505740099711 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789186, + "c3": 11.373092926490983, + "c4": 9.09847434119279, + "c5": 6.823855755894588, + "c6": 4.549237170596395, + "c7": 2.274618585298202 }, "rgb": [238, 201, 159] }, @@ -34431,23 +34431,23 @@ "year": 1700, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -30.314052633446188, - "c2": -23.35722171113091, - "c3": -34.26061502802821, - "c4": 10.101218614705026, - "c5": -35.03555038801647, - "c6": -17.622198970232006, - "c7": 2.6871380592282677 + "points": { + "c1": 21.167491872128487, + "c2": -38.170161980574186, + "c3": -28.41785564723271, + "c4": -34.28131405425562, + "c5": 32.10503143720026, + "c6": -0.9016394193616506, + "c7": -31.966048897753264 }, - "vertexSeeds": { - "c1": 9.37776722003071, - "c2": 10.564889504040368, - "c3": 9.04808724654167, - "c4": 8.920911459993144, - "c5": 10.823194911350777, - "c6": 10.39985273821064, - "c7": 10.606826124806094 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.589459084604716, + "c3": 12.991215903837265, + "c4": 10.39297272306981, + "c5": 7.794729542302358, + "c6": 5.196486361534905, + "c7": 2.5982431807674526 }, "rgb": [77, 76, 132] }, @@ -34458,23 +34458,23 @@ "year": 1700, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 20.00544289650437, - "c2": -25.90114185242256, - "c3": 19.97948749663758, - "c4": 9.916954101276879, - "c5": 15.985358487552631, - "c6": -19.321510492662792, - "c7": 1.9176160403091984 + "points": { + "c1": 4.145027001655478, + "c2": -21.269895556534347, + "c3": -15.910517622736968, + "c4": 12.005662899851117, + "c5": 14.184276406648351, + "c6": 29.969446122436885, + "c7": -16.384046067939185 }, - "vertexSeeds": { - "c1": 3.0261360147075904, - "c2": 2.700324937997792, - "c3": 2.7343257975899182, - "c4": 2.6584700465803843, - "c5": 2.553731444023079, - "c6": 2.770562226375075, - "c7": 2.612770238008248 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435505, + "c3": 3.698566805362923, + "c4": 2.9588534442903365, + "c5": 2.219140083217755, + "c6": 1.4794267221451682, + "c7": 0.7397133610725865 }, "rgb": [86, 146, 138] }, @@ -34485,23 +34485,23 @@ "year": 1700, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 13.47882281831992, - "c2": -33.732710170066916, - "c3": -3.5401674582534994, - "c4": 23.10823359007623, - "c5": 6.021233356338115, - "c6": 0.5421900786768745, - "c7": 31.463109832737622 + "points": { + "c1": -31.59989091605081, + "c2": -36.90369348639755, + "c3": 35.012302384559895, + "c4": 2.317548780058182, + "c5": -6.215117722849989, + "c6": -15.845007148185271, + "c7": 38.5499285880559 }, - "vertexSeeds": { - "c1": 6.637120288085197, - "c2": 6.835009106221243, - "c3": 6.87850999550762, - "c4": 6.892203015801211, - "c5": 5.837649861877797, - "c6": 6.053845566886129, - "c7": 7.189806108730068 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123437, + "c3": 8.691631992602863, + "c4": 6.9533055940822885, + "c5": 5.214979195561715, + "c6": 3.4766527970411487, + "c7": 1.7383263985205653 }, "rgb": [222, 0, 59] }, @@ -34512,23 +34512,23 @@ "year": 1700, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -11.877734502310016, - "c2": -18.259250647443878, - "c3": 24.681333849836683, - "c4": 18.933740155362145, - "c5": -3.989591013845569, - "c6": -12.423218642812568, - "c7": -0.39922430010752663 + "points": { + "c1": -23.191413486663507, + "c2": 13.005868831568534, + "c3": -16.27638824966761, + "c4": 4.545222029007867, + "c5": 17.299620623807115, + "c6": -9.313976586263568, + "c7": 0.3860861053582241 }, - "vertexSeeds": { - "c1": 3.780081131542941, - "c2": 4.201059957972336, - "c3": 3.7075319438714627, - "c4": 3.5230463756147286, - "c5": 4.333035786064281, - "c6": 3.7559364800523425, - "c7": 3.7308661566351007 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.2690707350901524, + "c3": 5.224225612575126, + "c4": 4.1793804900601, + "c5": 3.1345353675450784, + "c6": 2.0896902450300527, + "c7": 1.0448451225150264 }, "rgb": [58, 15, 49] }, @@ -34539,23 +34539,23 @@ "year": 1700, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 11.858164369016485, - "c2": 16.68676768405048, - "c3": -31.273311496911298, - "c4": 15.570533494892253, - "c5": -28.82800781079927, - "c6": 20.601822804399028, - "c7": -23.563749482298554 + "points": { + "c1": -26.82683082009607, + "c2": -19.620259768875673, + "c3": 19.546318113387414, + "c4": 1.029506448761218, + "c5": 29.901209697428456, + "c6": 27.946692632974845, + "c7": 40.909441150208394 }, - "vertexSeeds": { - "c1": 2.816846219819655, - "c2": 2.708246954688383, - "c3": 2.8099855835171392, - "c4": 2.635939105684962, - "c5": 2.651059888135266, - "c6": 2.78489957773282, - "c7": 2.6014396959367314 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [58, 15, 49] }, @@ -34566,23 +34566,23 @@ "year": 1700, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 9.467389626399079, - "c2": -2.4376299853570167, - "c3": 5.348959814962573, - "c4": -8.97187369269411, - "c5": -11.047363013899872, - "c6": -3.21960091089025, - "c7": 5.728147121344374 + "points": { + "c1": 7.057067236368891, + "c2": -30.823259055952008, + "c3": -25.89559969314147, + "c4": 9.84217159408605, + "c5": -26.165345998804693, + "c6": -4.346594603560625, + "c7": -13.52148145960312 }, - "vertexSeeds": { - "c1": 2.156464856242617, - "c2": 2.263610696141556, - "c3": 2.14529759430523, - "c4": 2.1397305554974664, - "c5": 2.236165265662491, - "c6": 2.186038260550756, - "c7": 2.1225865918646174 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [238, 201, 159] }, @@ -34593,23 +34593,23 @@ "year": 1700, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 1.6021814829538101, - "c2": 1.039595598799405, - "c3": 18.991887925735146, - "c4": 4.579148813754468, - "c5": -21.90627089206767, - "c6": 15.874391237059879, - "c7": -12.088753192241516 + "points": { + "c1": -16.59165953336121, + "c2": 23.382350414938916, + "c3": 23.804455584778037, + "c4": -6.28352498926969, + "c5": -15.546381087916183, + "c6": 13.63717677983929, + "c7": 14.33339249891041 }, - "vertexSeeds": { - "c1": 2.6522090955914672, - "c2": 2.4853049664155646, - "c3": 2.9044196991811235, - "c4": 2.7436263403377805, - "c5": 3.0820121600327433, - "c6": 3.0608646219568487, - "c7": 3.0054884378135305 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435505, + "c3": 3.698566805362923, + "c4": 2.9588534442903365, + "c5": 2.219140083217755, + "c6": 1.4794267221451682, + "c7": 0.7397133610725865 }, "rgb": [238, 201, 159] }, @@ -34620,23 +34620,23 @@ "year": 1700, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -37.50490725426661, - "c2": 44.946630505095015, - "c3": 26.827465159391153, - "c4": 17.126282335485044, - "c5": -40.591439022246526, - "c6": 2.58133262862151, - "c7": 36.00212000628319 + "points": { + "c1": -7.81219017575917, + "c2": 39.64922066170635, + "c3": 9.569123615714943, + "c4": -0.24079357102316834, + "c5": 14.99977885688191, + "c6": 3.267736833291117, + "c7": 15.62568854946204 }, - "vertexSeeds": { - "c1": 9.635055077420018, - "c2": 8.054557520240198, - "c3": 9.144783914679975, - "c4": 7.767833841161286, - "c5": 9.568943543339305, - "c6": 7.344720641513074, - "c7": 7.981961665680092 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231624, + "c3": 11.627369394359684, + "c4": 9.301895515487754, + "c5": 6.976421636615815, + "c6": 4.650947757743877, + "c7": 2.3254738788719385 }, "rgb": [238, 201, 159] }, @@ -34647,23 +34647,23 @@ "year": 1700, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 36.041611060275855, - "c2": 11.66357782949813, - "c3": -28.32034392783051, - "c4": -25.876613568090736, - "c5": -20.6067258914629, - "c6": -24.02877524842524, - "c7": 36.93948207841274 + "points": { + "c1": 21.80773761848812, + "c2": -43.01028393560539, + "c3": 24.298664927093796, + "c4": -30.0674352928716, + "c5": -1.6424612232173175, + "c6": -4.69146807357955, + "c7": 31.01604673234901 }, - "vertexSeeds": { - "c1": 7.011417155265625, - "c2": 6.908655982919987, - "c3": 7.4428701588458335, - "c4": 6.401496970425412, - "c5": 6.350741859941262, - "c6": 6.842929968833333, - "c7": 6.8023758475401115 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [58, 15, 49] }, @@ -34674,23 +34674,23 @@ "year": 1700, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 8.2213821168313, - "c2": 10.266247607375298, - "c3": -12.716357533640146, - "c4": -21.54996780607926, - "c5": 7.539191434435516, - "c6": 31.73113606011171, - "c7": -9.18377330889589 + "points": { + "c1": 13.782808109167313, + "c2": 25.306309878218187, + "c3": 1.9856595985284144, + "c4": -29.536243015805564, + "c5": -7.037606628206543, + "c6": -27.72235617463725, + "c7": 12.11741934766114 }, - "vertexSeeds": { - "c1": 4.448249218244947, - "c2": 5.11919962581862, - "c3": 3.7543874402109374, - "c4": 4.69702770165549, - "c5": 4.056707995728773, - "c6": 4.5780538698879765, - "c7": 4.083701544354223 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020804, + "c3": 6.333795654184003, + "c4": 5.067036523347205, + "c5": 3.800277392510402, + "c6": 2.5335182616736023, + "c7": 1.2667591308368025 }, "rgb": [222, 0, 59] }, @@ -34701,23 +34701,23 @@ "year": 1700, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -23.654753060459825, - "c2": -21.759796874029057, - "c3": -27.717692826588994, - "c4": 5.974668866901659, - "c5": 0.7709136237356375, - "c6": -17.81781263216783, - "c7": -18.03361706924509 + "points": { + "c1": 10.032727585830855, + "c2": -3.969381525598884, + "c3": -3.319836374305325, + "c4": 10.222496695700855, + "c5": -6.056619468421015, + "c6": 22.737661855785817, + "c7": -7.717054679252193 }, - "vertexSeeds": { - "c1": 3.071998875832211, - "c2": 3.3152747065934722, - "c3": 2.9424173482886204, - "c4": 3.1173927408082265, - "c5": 3.201071992307676, - "c6": 2.8337082163384864, - "c7": 3.12231359314267 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388355, + "c3": 4.045307443365696, + "c4": 3.236245954692557, + "c5": 2.4271844660194177, + "c6": 1.6181229773462784, + "c7": 0.8090614886731392 }, "rgb": [238, 201, 159] }, @@ -34728,23 +34728,23 @@ "year": 1700, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 31.181689617720984, - "c2": 20.78506198400852, - "c3": -27.10632189308955, - "c4": -2.5357587028739914, - "c5": 37.327451171177465, - "c6": 28.624035855127026, - "c7": -33.8228287389582 + "points": { + "c1": -32.15873933004282, + "c2": -9.080221417970993, + "c3": 36.460865652133116, + "c4": 24.754844495470003, + "c5": -24.494786157712543, + "c6": 12.765647876911224, + "c7": -2.8332888511386827 }, - "vertexSeeds": { - "c1": 8.282189390977377, - "c2": 7.969269254929899, - "c3": 8.289011752861713, - "c4": 8.266096408788592, - "c5": 8.915807906074154, - "c6": 8.707056220419162, - "c7": 7.550035564391518 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065187, + "c3": 10.957004160887653, + "c4": 8.765603328710121, + "c5": 6.574202496532588, + "c6": 4.382801664355056, + "c7": 2.1914008321775236 }, "rgb": [58, 15, 49] }, @@ -34755,23 +34755,23 @@ "year": 1700, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": -11.321323253706419, - "c2": -2.768564668616172, - "c3": -13.877374772852264, - "c4": 2.5605512904920964, - "c5": 3.994753796753031, - "c6": 17.369542876987804, - "c7": 2.314046933517119 + "points": { + "c1": 1.6929027199818982, + "c2": 20.154421858633793, + "c3": -7.3777553318078635, + "c4": -21.84590701904867, + "c5": -16.67576302619448, + "c6": -21.219657487248416, + "c7": -21.742081979165416 }, - "vertexSeeds": { - "c1": 0.5159020030616687, - "c2": 0.5115576922874079, - "c3": 0.5086719664485528, - "c4": 0.5277023561223267, - "c5": 0.5492694387158249, - "c6": 0.5796002106921669, - "c7": 0.5602659825895798 + "offsets": { + "c1": 1.0032362459546926, + "c2": 0.8599167822468792, + "c3": 0.7165973185390663, + "c4": 0.5732778548312528, + "c5": 0.42995839112343986, + "c6": 0.2866389274156264, + "c7": 0.1433194637078129 }, "rgb": [77, 76, 132] }, @@ -34782,23 +34782,23 @@ "year": 1700, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -23.90216633283935, - "c2": 21.737038005017567, - "c3": -11.589967871535066, - "c4": 15.004152281214651, - "c5": 5.547001629983065, - "c6": 21.757055035662184, - "c7": -11.823404229022746 + "points": { + "c1": 29.13578116379569, + "c2": -23.679777730773985, + "c3": -25.65755005966839, + "c4": 8.199874000728386, + "c5": 22.013826715876093, + "c6": 2.0360887446136786, + "c7": -0.5391669984446565 }, - "vertexSeeds": { - "c1": 2.6498959242343334, - "c2": 2.3056300921136454, - "c3": 2.4990760405308596, - "c4": 2.5221428531650725, - "c5": 2.5981327566771464, - "c6": 2.411886589127249, - "c7": 2.2520438731321115 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.91123439667129, + "c3": 3.2593619972260752, + "c4": 2.6074895977808605, + "c5": 1.9556171983356463, + "c6": 1.3037447988904316, + "c7": 0.6518723994452147 }, "rgb": [58, 15, 49] }, @@ -34809,23 +34809,23 @@ "year": 1700, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 23.643658104538602, - "c2": 34.87767468229889, - "c3": -7.357506829216074, - "c4": -34.77279257542397, - "c5": 23.162661643589992, - "c6": -28.475479701951013, - "c7": 28.41009599235383 + "points": { + "c1": 36.1455154619439, + "c2": 18.635284698249563, + "c3": -19.420366629612726, + "c4": -15.328568984885873, + "c5": 26.11131881120658, + "c6": -20.082464739483513, + "c7": -10.227404013588838 }, - "vertexSeeds": { - "c1": 3.8603670985310723, - "c2": 4.127049910473689, - "c3": 4.696462582603101, - "c4": 4.461167713252699, - "c5": 4.056214736033275, - "c6": 4.364639450398354, - "c7": 3.9597340156417626 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [77, 76, 132] }, @@ -34836,23 +34836,23 @@ "year": 1700, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 11.653913145332886, - "c2": -7.5712064174852, - "c3": -12.32034888801693, - "c4": 1.143599438544662, - "c5": -23.073343782581006, - "c6": -9.096586135580708, - "c7": 4.031142987101653 + "points": { + "c1": -0.06256320920446967, + "c2": -11.904322053066096, + "c3": 36.00571965228123, + "c4": 16.646043210428743, + "c5": 36.54926704339198, + "c6": -5.311432560005947, + "c7": 19.499150644753314 }, - "vertexSeeds": { - "c1": 7.5693008297126685, - "c2": 6.9641473628900865, - "c3": 7.4403246204311095, - "c4": 7.095481389954552, - "c5": 7.722280190955435, - "c6": 8.06657948124557, - "c7": 7.855366082778485 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054093, + "c3": 9.801202034211746, + "c4": 7.840961627369399, + "c5": 5.880721220527041, + "c6": 3.9204808136846947, + "c7": 1.9602404068423473 }, "rgb": [77, 76, 132] }, @@ -34863,23 +34863,23 @@ "year": 1700, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -23.546223540044778, - "c2": 29.802263318576074, - "c3": 3.51096337164455, - "c4": 27.446373791732142, - "c5": 14.028474079100981, - "c6": -14.620025291761248, - "c7": -18.638306228141897 + "points": { + "c1": 1.8300257462075251, + "c2": -17.776292431483714, + "c3": -21.65365885895432, + "c4": -12.279132591174637, + "c5": -16.585520891481966, + "c6": -27.45689175507797, + "c7": -26.905634921675425 }, - "vertexSeeds": { - "c1": 8.943539258959046, - "c2": 9.083654570291035, - "c3": 7.509662181916906, - "c4": 7.500416122454709, - "c5": 7.826164744619641, - "c6": 11.7426684106278, - "c7": 9.63165718371832 + "offsets": { + "c1": 19.611650485436893, + "c2": 16.80998613037448, + "c3": 14.008321775312067, + "c4": 11.206657420249655, + "c5": 8.404993065187243, + "c6": 5.6033287101248295, + "c7": 2.8016643550624125 }, "rgb": [77, 76, 132] }, @@ -34890,23 +34890,23 @@ "year": 1700, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 27.06992574519046, - "c2": 16.261768005379665, - "c3": 20.96688410201937, - "c4": -1.0991247259981947, - "c5": 13.245958355000546, - "c6": 29.277169059996396, - "c7": -12.143315556730883 + "points": { + "c1": -29.603341879153643, + "c2": -4.4165390590049896, + "c3": -8.445171599712406, + "c4": -13.426317368410814, + "c5": -33.1399483109571, + "c6": 18.975473793808845, + "c7": 14.117985529977545 }, - "vertexSeeds": { - "c1": 2.9070727418461284, - "c2": 2.3804487558114915, - "c3": 2.7741464207113444, - "c4": 2.6429668012153393, - "c5": 2.505465250994781, - "c6": 2.8968106430954403, - "c7": 2.7043627746405616 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.5136384650947767, + "c4": 2.8109107720758195, + "c5": 2.1081830790568667, + "c6": 1.4054553860379098, + "c7": 0.7027276930189549 }, "rgb": [238, 201, 159] }, @@ -34917,23 +34917,23 @@ "year": 1700, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 27.33614523241088, - "c2": 1.828272257335648, - "c3": -18.874605247362545, - "c4": -18.861080715452385, - "c5": 15.843635423339151, - "c6": -15.902643137730163, - "c7": -3.962110803069791 + "points": { + "c1": -33.21228927439479, + "c2": -13.835890816997157, + "c3": -22.098362381114516, + "c4": 22.454366055468576, + "c5": 41.48742229183575, + "c6": -31.732927624706956, + "c7": 33.18016938500792 }, - "vertexSeeds": { - "c1": 5.776013291355746, - "c2": 6.334541769625166, - "c3": 6.026912122789927, - "c4": 6.301129751959261, - "c5": 6.356638543133214, - "c6": 6.577842262828823, - "c7": 6.867066507983633 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083222, + "c3": 8.668515950069347, + "c4": 6.934812760055482, + "c5": 5.201109570041607, + "c6": 3.467406380027741, + "c7": 1.733703190013874 }, "rgb": [77, 76, 132] }, @@ -34944,23 +34944,23 @@ "year": 1700, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 17.830608062894648, - "c2": -20.298884182168795, - "c3": 27.578800762984166, - "c4": 17.133724596821914, - "c5": 31.12454427049719, - "c6": 5.509032801479968, - "c7": 6.506453942697696 + "points": { + "c1": -28.773685326290522, + "c2": 6.478477287716849, + "c3": -23.05432525839815, + "c4": 37.0025517401508, + "c5": -36.732053749453925, + "c6": 22.380943308500598, + "c7": -0.16479623789771836 }, - "vertexSeeds": { - "c1": 3.36520536992682, - "c2": 2.895244587477095, - "c3": 3.006963423989165, - "c4": 3.3057344451395925, - "c5": 3.507039001931907, - "c6": 2.9703689423868522, - "c7": 3.6745421768737034 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682386, + "c3": 4.415164123901987, + "c4": 3.532131299121589, + "c5": 2.6490984743411947, + "c6": 1.7660656495607967, + "c7": 0.8830328247803984 }, "rgb": [77, 76, 132] }, @@ -34971,23 +34971,23 @@ "year": 1700, "resistanceReported": false, "duration": 6393600, - "curveSeeds": { - "c1": -16.38485662571877, - "c2": 4.251322147649219, - "c3": -2.0000779884921442, - "c4": 4.890675835695461, - "c5": 13.699829902594157, - "c6": 13.213704888476052, - "c7": 13.355405281556859 + "points": { + "c1": -2.3839685042105145, + "c2": 0.8283224715971365, + "c3": -12.199074470470155, + "c4": -3.1740990443040538, + "c5": -12.515645760032989, + "c6": -13.481601455943943, + "c7": 2.47799356792763 }, - "vertexSeeds": { - "c1": 4.296054201311173, - "c2": 3.985206991491865, - "c3": 4.0621428274387075, - "c4": 4.383709145214604, - "c5": 4.182218465599924, - "c6": 4.066208394745603, - "c7": 4.328821082542762 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [58, 15, 49] }, @@ -34998,23 +34998,23 @@ "year": 1700, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -8.866575893092353, - "c2": 8.563364194144317, - "c3": -4.85600761395899, - "c4": 4.326760822332485, - "c5": -19.840669926358775, - "c6": 7.0937877237779965, - "c7": 28.277392746074394 + "points": { + "c1": -4.1425473279283445, + "c2": -31.53897758717879, + "c3": 21.304036420410092, + "c4": -26.638960170452485, + "c5": -5.044236257538024, + "c6": 18.06612147332958, + "c7": -18.333989694882185 }, - "vertexSeeds": { - "c1": 4.681969877601716, - "c2": 3.9098059405318546, - "c3": 4.643504790040319, - "c4": 4.212056098098007, - "c5": 4.316146744570814, - "c6": 3.874478137166681, - "c7": 3.9613208708252596 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [77, 76, 132] }, @@ -35025,23 +35025,23 @@ "year": 1701, "resistanceReported": false, "duration": 45705600, - "curveSeeds": { - "c1": -2.061431067799411, - "c2": -53.03942709742786, - "c3": 33.41945377993072, - "c4": -58.06128289223759, - "c5": 7.9235748019101635, - "c6": -56.22754671018284, - "c7": 51.08241018361004 + "points": { + "c1": 51.279824729616706, + "c2": 41.125869030330506, + "c3": 37.15464520727981, + "c4": 47.94201363797892, + "c5": 26.979329512671413, + "c6": -22.48039630439979, + "c7": -19.53052841435874 }, - "vertexSeeds": { - "c1": 2.1052274234334325, - "c2": 2.1107667041618794, - "c3": 2.1223615289779914, - "c4": 2.051971128252188, - "c5": 2.0521456957960598, - "c6": 2.135936169855957, - "c7": 2.089821198221723 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.19001386962552, + "c3": 2.6583448913545986, + "c4": 2.1266759130836834, + "c5": 1.5950069348127625, + "c6": 1.0633379565418417, + "c7": 0.5316689782709209 }, "rgb": [58, 15, 49] }, @@ -35052,23 +35052,23 @@ "year": 1700, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 10.466942569812304, - "c2": 28.404223344218252, - "c3": 2.1514493537470543, - "c4": -8.395963908678784, - "c5": -33.03408537842181, - "c6": -34.79947307500968, - "c7": 31.824890634338743 + "points": { + "c1": -11.52087554328277, + "c2": -21.07395743297221, + "c3": -7.270749831062545, + "c4": -12.019484605108008, + "c5": 4.708093073655647, + "c6": -34.09270312644126, + "c7": -30.63199614397635 }, - "vertexSeeds": { - "c1": 2.495063930975312, - "c2": 2.280800024028733, - "c3": 2.174015534065691, - "c4": 2.2554899038556893, - "c5": 2.199515444321105, - "c6": 2.0655588480860128, - "c7": 2.0809470990724233 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092915, + "c3": 3.05131761442441, + "c4": 2.441054091539529, + "c5": 1.8307905686546457, + "c6": 1.2205270457697646, + "c7": 0.6102635228848811 }, "rgb": [238, 201, 159] }, @@ -35079,23 +35079,23 @@ "year": 1700, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 20.001940201284853, - "c2": -23.954296524107285, - "c3": -9.834505727302762, - "c4": -0.6225930612920081, - "c5": -7.022342642241256, - "c6": 34.2785342751422, - "c7": 37.995103483128894 + "points": { + "c1": 22.221361954147092, + "c2": -14.280061468705135, + "c3": 37.25907543090036, + "c4": -42.57244559833923, + "c5": 19.40345954098708, + "c6": 3.5290739145983068, + "c7": 3.16518668483409 }, - "vertexSeeds": { - "c1": 2.046240266743847, - "c2": 2.4030395325671527, - "c3": 2.1188881970642113, - "c4": 2.0122056735120792, - "c5": 2.1751516510029716, - "c6": 1.982570403045795, - "c7": 2.3458406835169003 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.661581137309292, + "c3": 3.0513176144244114, + "c4": 2.4410540915395287, + "c5": 1.830790568654646, + "c6": 1.2205270457697635, + "c7": 0.6102635228848826 }, "rgb": [77, 76, 132] }, @@ -35106,23 +35106,23 @@ "year": 1700, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 4.756416515201813, - "c2": -17.108997005214583, - "c3": -15.871479490571225, - "c4": -0.6398262229533245, - "c5": 20.48833763328343, - "c6": 12.692067955746737, - "c7": -9.615712541595006 + "points": { + "c1": -13.842447219025988, + "c2": -23.351248339218266, + "c3": -11.355488919521424, + "c4": -6.806127364092763, + "c5": -20.44302412821693, + "c6": 33.29600536896156, + "c7": 16.99725526622879 }, - "vertexSeeds": { - "c1": 5.497567410331521, - "c2": 4.819724864795813, - "c3": 4.568270541884065, - "c4": 4.643773706647702, - "c5": 5.35980623851125, - "c6": 5.312754898703399, - "c7": 5.210289189783696 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.93342579750347, + "c3": 6.611188164586219, + "c4": 5.288950531668978, + "c5": 3.9667128987517324, + "c6": 2.6444752658344868, + "c7": 1.3222376329172456 }, "rgb": [86, 146, 138] }, @@ -35133,23 +35133,23 @@ "year": 1700, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 15.157650345832423, - "c2": -24.30909333275784, - "c3": 19.716627032832868, - "c4": -26.28636328758285, - "c5": 19.03220105241475, - "c6": 19.290359267161527, - "c7": -33.70796591203426 + "points": { + "c1": -21.79009034970527, + "c2": -30.863739057004178, + "c3": -11.436403102384237, + "c4": 4.851862061879054, + "c5": -12.27600900200748, + "c6": -32.72560099079019, + "c7": -11.459814059106908 }, - "vertexSeeds": { - "c1": 3.8896691114730606, - "c2": 3.584248290319803, - "c3": 3.6993946318360544, - "c4": 3.9069754762455533, - "c5": 3.5032532318271943, - "c6": 3.580252559384689, - "c7": 3.811273768701997 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.6865464632454925, + "c3": 4.738788719371242, + "c4": 3.7910309754969975, + "c5": 2.843273231622748, + "c6": 1.8955154877484988, + "c7": 0.9477577438742494 }, "rgb": [222, 0, 59] }, @@ -35160,23 +35160,23 @@ "year": 1700, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 22.32906223387228, - "c2": -35.58499361326381, - "c3": -13.135746058407292, - "c4": -32.6303959034429, - "c5": 24.156480529230166, - "c6": 22.281036389789925, - "c7": -15.864491683750032 + "points": { + "c1": 40.701397684383934, + "c2": 36.26004116393577, + "c3": -41.40679330121798, + "c4": -3.7725100417840096, + "c5": -40.225118152797876, + "c6": 16.413445005506205, + "c7": -40.757178432197904 }, - "vertexSeeds": { - "c1": 3.2193655976696363, - "c2": 3.3382687829978805, - "c3": 2.962990357039781, - "c4": 2.710868573880156, - "c5": 3.0843699478861657, - "c6": 2.8867498005385173, - "c7": 2.6776773876250917 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998614, + "c3": 4.022191400832175, + "c4": 3.2177531206657406, + "c5": 2.413314840499307, + "c6": 1.6088765603328725, + "c7": 0.8044382801664343 }, "rgb": [86, 146, 138] }, @@ -35187,23 +35187,23 @@ "year": 1700, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -19.79363913415406, - "c2": -33.72195461731109, - "c3": -13.562904289349717, - "c4": -1.4830275792805878, - "c5": -7.834151078706224, - "c6": -22.260185949881, - "c7": -16.580679262504855 + "points": { + "c1": 22.78984402978987, + "c2": 34.15082373816226, + "c3": -14.928558197309204, + "c4": 32.23882379328792, + "c5": -12.87869547295075, + "c6": -3.1716110767562213, + "c7": 28.844421246220094 }, - "vertexSeeds": { - "c1": 2.372689510921492, - "c2": 2.2958797923677503, - "c3": 2.25503188244641, - "c4": 2.301434181811392, - "c5": 2.467649570871859, - "c6": 2.239294020405266, - "c7": 2.4356678068944486 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692557, + "c4": 2.588996763754045, + "c5": 1.941747572815534, + "c6": 1.2944983818770226, + "c7": 0.6472491909385113 }, "rgb": [238, 201, 159] }, @@ -35214,23 +35214,23 @@ "year": 1700, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -21.411016492004897, - "c2": 11.850336906904204, - "c3": 3.2621981644498135, - "c4": 2.289036026086933, - "c5": 32.575216226235426, - "c6": 7.568177159216518, - "c7": -2.562882191646068 + "points": { + "c1": 19.82745723462942, + "c2": 32.95686749282338, + "c3": 8.740005516571898, + "c4": 12.049463043231114, + "c5": 5.228258319122354, + "c6": 23.608929265118206, + "c7": -33.42177890227712 }, - "vertexSeeds": { - "c1": 5.636372677848122, - "c2": 5.370026043123531, - "c3": 5.723757727689946, - "c4": 6.027838438178608, - "c5": 5.192199931901487, - "c6": 5.2286417779889245, - "c7": 5.410688621237504 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [86, 146, 138] }, @@ -35241,23 +35241,23 @@ "year": 1700, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -10.145213526756454, - "c2": 26.76510711113155, - "c3": -31.169183442052343, - "c4": -14.44315065351088, - "c5": -0.25182099240425515, - "c6": 20.588199427624453, - "c7": 31.507796943830797 + "points": { + "c1": -24.216381542487124, + "c2": -14.082659568755496, + "c3": 5.935378901333777, + "c4": -35.92337607660799, + "c5": -0.5645818403822958, + "c6": -36.17274820188154, + "c7": 2.9115137109549494 }, - "vertexSeeds": { - "c1": 5.758602581500897, - "c2": 5.438481984883785, - "c3": 6.1240578354996265, - "c4": 5.296330301935557, - "c5": 5.726559802208698, - "c6": 5.646552869009447, - "c7": 5.892482071958114 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790575, + "c3": 7.350901525658806, + "c4": 5.880721220527049, + "c5": 4.410540915395294, + "c6": 2.9403606102635247, + "c7": 1.4701803051317686 }, "rgb": [238, 201, 159] }, @@ -35268,23 +35268,23 @@ "year": 1700, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -4.22714023753284, - "c2": 26.862607493696316, - "c3": -20.42324898752513, - "c4": -4.135302549066566, - "c5": -19.70846291116913, - "c6": -33.81597031845053, - "c7": -32.57664463498837 + "points": { + "c1": -18.90783998259547, + "c2": 33.87553385241665, + "c3": 6.211218568325208, + "c4": 17.021976420871404, + "c5": 31.599761473145506, + "c6": -13.452982426947695, + "c7": 18.136370331477245 }, - "vertexSeeds": { - "c1": 2.720605672128875, - "c2": 2.9851115621434863, - "c3": 2.689911158382702, - "c4": 2.9770471624180463, - "c5": 2.94707912835313, - "c6": 2.605732563953466, - "c7": 2.8052802827947243 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299603, + "c4": 2.995839112343967, + "c5": 2.2468793342579745, + "c6": 1.4979195561719814, + "c7": 0.748959778085993 }, "rgb": [58, 15, 49] }, @@ -35295,23 +35295,23 @@ "year": 1700, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 17.911879311463387, - "c2": 2.3659244153772647, - "c3": 27.81269654326374, - "c4": 14.068956945604114, - "c5": -10.5550326754637, - "c6": 15.099133661021149, - "c7": 33.55658275438972 + "points": { + "c1": -31.93101640828433, + "c2": 5.16120786136144, + "c3": -31.60001530620146, + "c4": -30.753417515169854, + "c5": 19.9716623816741, + "c6": -4.296590281644917, + "c7": -37.569794408955154 }, - "vertexSeeds": { - "c1": 2.9547705859928386, - "c2": 2.8990769633907187, - "c3": 3.0228052990472856, - "c4": 3.244757875204999, - "c5": 3.102145119052374, - "c6": 3.0398941984961523, - "c7": 2.9797593348397537 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797502, + "c3": 3.9066111881645895, + "c4": 3.12528895053167, + "c5": 2.343966712898751, + "c6": 1.5626444752658313, + "c7": 0.7813222376329195 }, "rgb": [58, 15, 49] }, @@ -35322,23 +35322,23 @@ "year": 1701, "resistanceReported": false, "duration": 51321600, - "curveSeeds": { - "c1": -10.785417739224606, - "c2": -64.54861871974073, - "c3": 53.831813564171725, - "c4": -61.52574989038354, - "c5": 47.127286298147965, - "c6": 1.9941640357493924, - "c7": -14.442020945548371 + "points": { + "c1": -51.004361878555045, + "c2": 12.744005430428672, + "c3": 21.89481996021533, + "c4": -43.47138097155063, + "c5": 29.547040137047063, + "c6": -16.48163678321162, + "c7": -50.27821093403914 }, - "vertexSeeds": { - "c1": 12.823176268296411, - "c2": 12.472921723803942, - "c3": 12.637821962683478, - "c4": 12.951951286386846, - "c5": 12.821739947705554, - "c6": 12.766360978998964, - "c7": 12.559659288504491 + "offsets": { + "c1": 21.81229773462783, + "c2": 18.69625520110958, + "c3": 15.58021266759133, + "c4": 12.464170134073001, + "c5": 9.34812760055475, + "c6": 6.2320850670365004, + "c7": 3.1160425335182502 }, "rgb": [222, 0, 59] }, @@ -35349,23 +35349,23 @@ "year": 1700, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 1.7807766251844726, - "c2": -22.047668288614567, - "c3": -13.662094334154006, - "c4": -7.884920426858436, - "c5": 19.51315471034671, - "c6": -11.490075040912767, - "c7": -19.30383384023383 + "points": { + "c1": 3.4199117346810723, + "c2": -6.4749517280809314, + "c3": 24.50134185016519, + "c4": -15.665521568080576, + "c5": 2.1795716443439375, + "c6": 20.451469642129943, + "c7": -13.526223024946091 }, - "vertexSeeds": { - "c1": 2.4735699916170995, - "c2": 2.351150956088707, - "c3": 2.4951534816516943, - "c4": 2.2788769915588363, - "c5": 2.5193483102800247, - "c6": 2.2828074938058993, - "c7": 2.5105735859596896 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.661581137309292, + "c3": 3.051317614424409, + "c4": 2.4410540915395265, + "c5": 1.8307905686546437, + "c6": 1.220527045769761, + "c7": 0.6102635228848784 }, "rgb": [58, 15, 49] }, @@ -35376,23 +35376,23 @@ "year": 1700, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -1.5077047656614333, - "c2": -15.881623358297675, - "c3": 21.662317538730857, - "c4": 24.415680054612675, - "c5": 1.4789242182886824, - "c6": 4.470216789890227, - "c7": 8.335099978961228 + "points": { + "c1": 27.116815931060703, + "c2": 29.29912916136043, + "c3": -25.271506170721555, + "c4": -28.01734580178129, + "c5": -28.821259669607077, + "c6": 23.923505158298926, + "c7": -13.299608692792177 }, - "vertexSeeds": { - "c1": 1.0659251503201503, - "c2": 1.0480381710479032, - "c3": 1.0944618720351758, - "c4": 1.182387541765168, - "c5": 1.1065832908428697, - "c6": 1.0905347967294423, - "c7": 1.0719829059177146 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144252, + "c3": 1.5025427646786869, + "c4": 1.20203421174295, + "c5": 0.9015256588072119, + "c6": 0.601017105871475, + "c7": 0.3005085529357381 }, "rgb": [238, 201, 159] }, @@ -35403,23 +35403,23 @@ "year": 1700, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -18.774448861790507, - "c2": 23.86201401905706, - "c3": -8.733999269675387, - "c4": -21.119886606030306, - "c5": 18.89499147209236, - "c6": 7.5305010612839745, - "c7": 29.11643716968752 + "points": { + "c1": 17.25568908621134, + "c2": -24.326369129052946, + "c3": -29.05398449731474, + "c4": -21.912136366685452, + "c5": -26.052391878194225, + "c6": -27.926364146726677, + "c7": -7.284173317339906 }, - "vertexSeeds": { - "c1": 2.928287228711188, - "c2": 3.2154871563409824, - "c3": 2.8997777735992827, - "c4": 3.1497106827131836, - "c5": 3.5980202566036588, - "c6": 3.415133379582116, - "c7": 2.9574228112843213 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [58, 15, 49] }, @@ -35430,23 +35430,23 @@ "year": 1700, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -4.803638576945289, - "c2": 18.14746157878853, - "c3": -10.09643561173333, - "c4": -33.52661787012917, - "c5": 27.769578191362257, - "c6": -34.888930261060885, - "c7": 1.392346295731123 + "points": { + "c1": -24.58504599511678, + "c2": 7.53601804615446, + "c3": -32.073759256458615, + "c4": 6.275735387267304, + "c5": 21.488220996619177, + "c6": -20.924684258889453, + "c7": -35.00800249056816 }, - "vertexSeeds": { - "c1": 4.666171129986799, - "c2": 4.31352099271414, - "c3": 4.6943533531231925, - "c4": 4.2769878246736885, - "c5": 5.005627766510094, - "c6": 5.093145673427308, - "c7": 4.334191135674916 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061029, + "c3": 6.35691169671752, + "c4": 5.0855293573740195, + "c5": 3.8141470180305146, + "c6": 2.5427646786870097, + "c7": 1.2713823393435049 }, "rgb": [238, 201, 159] }, @@ -35457,23 +35457,23 @@ "year": 1700, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 33.796780489908855, - "c2": -22.3921722637736, - "c3": 21.316898447742062, - "c4": -33.57940183848682, - "c5": -17.36169104661286, - "c6": 31.228420314530354, - "c7": -26.83966365945375 + "points": { + "c1": -35.26775248904272, + "c2": -21.051617727831268, + "c3": 10.473816092782876, + "c4": -24.056340689788485, + "c5": 15.137799389409949, + "c6": -37.38793273985891, + "c7": -37.687442871294294 }, - "vertexSeeds": { - "c1": 1.4729581594835583, - "c2": 1.4961555903531396, - "c3": 1.3831512537386577, - "c4": 1.425566306507709, - "c5": 1.4572763806047073, - "c6": 1.4556707815007164, - "c7": 1.5024712845385266 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.274618585298196, + "c3": 1.8955154877484954, + "c4": 1.5164123901987985, + "c5": 1.137309292649098, + "c6": 0.7582061950993974, + "c7": 0.37910309754970056 }, "rgb": [77, 76, 132] }, @@ -35484,23 +35484,23 @@ "year": 1700, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -30.658377130907866, - "c2": -14.484363951131357, - "c3": -26.00958529833276, - "c4": 12.274979068382187, - "c5": -33.5249792595212, - "c6": 36.42621116180487, - "c7": 23.438397765325767 + "points": { + "c1": 3.589730643809517, + "c2": 7.142058141014886, + "c3": -10.527488501954679, + "c4": -23.70900722216986, + "c5": -12.427512810786261, + "c6": 9.51162123042009, + "c7": 24.544765023847418 }, - "vertexSeeds": { - "c1": 3.987869151565018, - "c2": 3.6343712059542237, - "c3": 3.808998976591507, - "c4": 3.743557638227222, - "c5": 3.587016791850023, - "c6": 3.2650924276210156, - "c7": 3.425406569828204 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.76976421636616, + "c3": 4.808136846971801, + "c4": 3.846509477577438, + "c5": 2.88488210818308, + "c6": 1.9232547387887218, + "c7": 0.9616273693943584 }, "rgb": [58, 15, 49] }, @@ -35511,23 +35511,23 @@ "year": 1700, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 11.322661713035714, - "c2": 4.845272699365246, - "c3": -21.937393571595514, - "c4": 26.448394451719672, - "c5": 7.991253654164872, - "c6": -0.2597417801973805, - "c7": -28.01621599519735 + "points": { + "c1": 10.407433741200109, + "c2": -23.533430642894253, + "c3": -19.907422058124123, + "c4": 20.336147442822323, + "c5": -11.472180856169064, + "c6": -11.267175733776732, + "c7": 31.881098920384268 }, - "vertexSeeds": { - "c1": 2.319786004088253, - "c2": 2.127151740618717, - "c3": 2.1221706347948954, - "c4": 2.2970098187356243, - "c5": 2.328181701148666, - "c6": 2.2873044965979115, - "c7": 2.2175356793916174 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070747, + "c3": 2.8201571890892265, + "c4": 2.256125751271382, + "c5": 1.6920943134535373, + "c6": 1.128062875635689, + "c7": 0.5640314378178445 }, "rgb": [86, 146, 138] }, @@ -35538,23 +35538,23 @@ "year": 1700, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 1.272129539693843, - "c2": -20.785845049933872, - "c3": -23.50305790612176, - "c4": -13.240272658227155, - "c5": -34.99537671205016, - "c6": 30.1178149980895, - "c7": -11.600145438489488 + "points": { + "c1": 14.48349673543165, + "c2": -7.239135350841465, + "c3": -20.303882435792012, + "c4": 34.10679043185513, + "c5": 33.34529201617137, + "c6": -28.861901036070638, + "c7": 29.190015683460416 }, - "vertexSeeds": { - "c1": 11.002566822039407, - "c2": 11.027634834246566, - "c3": 10.989135573774407, - "c4": 11.046861956394647, - "c5": 11.019384781093379, - "c6": 11.064357805517208, - "c7": 11.00032072597657 + "offsets": { + "c1": 18.478964401294498, + "c2": 15.839112343966613, + "c3": 13.199260286639078, + "c4": 10.559408229311192, + "c5": 7.919556171983307, + "c6": 5.279704114655421, + "c7": 2.6398520573278854 }, "rgb": [77, 76, 132] }, @@ -35565,23 +35565,23 @@ "year": 1700, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -1.5538543081439897, - "c2": -10.678343418932094, - "c3": 33.50204518218554, - "c4": -12.117258142059868, - "c5": -7.208978885082267, - "c6": 20.009113466469366, - "c7": -30.20697211348904 + "points": { + "c1": -24.641149990720617, + "c2": 32.85116998332242, + "c3": 11.22639327750636, + "c4": 3.28519162835903, + "c5": -5.552349186772368, + "c6": 12.511578606017132, + "c7": 32.013894009481405 }, - "vertexSeeds": { - "c1": 8.552529388303894, - "c2": 8.147698175032257, - "c3": 7.722168766693229, - "c4": 8.910113420765917, - "c5": 8.562045194728807, - "c6": 7.728672493115055, - "c7": 7.979332676864758 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.81553398058253, + "c3": 10.679611650485436, + "c4": 8.543689320388353, + "c5": 6.407766990291259, + "c6": 4.271844660194176, + "c7": 2.1359223300970926 }, "rgb": [222, 0, 59] }, @@ -35592,23 +35592,23 @@ "year": 1700, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -17.105354485236283, - "c2": 9.786753929158927, - "c3": -4.351126394884769, - "c4": -1.4033101842657274, - "c5": -14.191970930087525, - "c6": 12.914400158568682, - "c7": -7.700574698024582 + "points": { + "c1": -4.516366013312208, + "c2": -32.345326497442144, + "c3": -21.71041848745901, + "c4": -21.699015100886893, + "c5": -17.324263623783114, + "c6": 33.44184099578612, + "c7": 2.2980825014399855 }, - "vertexSeeds": { - "c1": 1.9617856705365382, - "c2": 2.3992376682279355, - "c3": 2.287241850120474, - "c4": 2.3360965982759025, - "c5": 2.0232668807068355, - "c6": 2.306109149321108, - "c7": 2.1153330367628187 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.522884882108183, + "c3": 2.9357374017568194, + "c4": 2.348589921405456, + "c5": 1.7614424410540925, + "c6": 1.174294960702729, + "c7": 0.5871474803513635 }, "rgb": [58, 15, 49] }, @@ -35619,23 +35619,23 @@ "year": 1701, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 30.08819412597272, - "c2": -2.692035792047662, - "c3": -4.888319791762044, - "c4": 17.295258356983112, - "c5": -15.737701984100543, - "c6": -22.009546005427424, - "c7": 47.47063476107077 + "points": { + "c1": 48.540541594760555, + "c2": 23.219045752030482, + "c3": 45.32595735836925, + "c4": 11.886720502409496, + "c5": 17.409314153565504, + "c6": -3.726888047946332, + "c7": 19.324418599435404 }, - "vertexSeeds": { - "c1": 1.498840540639364, - "c2": 1.4606595684048347, - "c3": 1.4451615550144692, - "c4": 1.5207525140578482, - "c5": 1.5052780024578163, - "c6": 1.420638471823755, - "c7": 1.630837210609806 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.357836338418861, + "c3": 1.9648636153490526, + "c4": 1.5718908922792407, + "c5": 1.1789181692094322, + "c6": 0.7859454461396204, + "c7": 0.39297272306981174 }, "rgb": [58, 15, 49] }, @@ -35646,23 +35646,23 @@ "year": 1700, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -6.259628323504259, - "c2": 22.771095964889305, - "c3": -39.52576931792179, - "c4": 34.61643487365354, - "c5": 34.18586483162449, - "c6": -14.864059713619756, - "c7": 3.124860246300429 + "points": { + "c1": 37.10634552552221, + "c2": -16.91618327789694, + "c3": -38.72544072438065, + "c4": -9.333392680602806, + "c5": 27.56273416969737, + "c6": 30.770311882385094, + "c7": -10.660762725771178 }, - "vertexSeeds": { - "c1": 11.622204819320478, - "c2": 9.339489280199734, - "c3": 9.374217105245757, - "c4": 10.324513766062267, - "c5": 11.239801744001428, - "c6": 10.709605013295342, - "c7": 9.841653589130475 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133145, + "c3": 13.869625520110956, + "c4": 11.095700416088764, + "c5": 8.321775312066572, + "c6": 5.547850208044382, + "c7": 2.773925104022191 }, "rgb": [58, 15, 49] }, @@ -35673,23 +35673,23 @@ "year": 1700, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -5.307470126157423, - "c2": 15.298603388385018, - "c3": -23.518804183215586, - "c4": 29.520214618498287, - "c5": 17.95547206507564, - "c6": 16.851632553208397, - "c7": 28.230218863212926 + "points": { + "c1": -17.739921912117847, + "c2": -16.63308900207882, + "c3": 33.73615739709756, + "c4": 11.907918685881775, + "c5": -10.173321908576877, + "c6": -19.178043071319653, + "c7": -21.74729449777726 }, - "vertexSeeds": { - "c1": 3.8575982123562507, - "c2": 3.8734701742694435, - "c3": 4.23351830589654, - "c4": 3.9114384012390335, - "c5": 3.9348154996072204, - "c6": 4.578848113826112, - "c7": 4.16495827961102 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [58, 15, 49] }, @@ -35700,23 +35700,23 @@ "year": 1700, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 5.213983445990941, - "c2": 41.13493604566959, - "c3": 32.42021966093908, - "c4": -0.10770649294902057, - "c5": 11.000005109730829, - "c6": -14.8323358525226, - "c7": 15.20690120569413 + "points": { + "c1": -4.6343266124046, + "c2": 5.914792726572188, + "c3": 32.72055409101016, + "c4": -24.61210091670577, + "c5": -3.1790894592697256, + "c6": 42.9806193237672, + "c7": 24.02820851054419 }, - "vertexSeeds": { - "c1": 1.25787434179392, - "c2": 1.256102687919595, - "c3": 1.4316929337514903, - "c4": 1.4925002245435492, - "c5": 1.2154833036954678, - "c6": 1.4743963140595286, - "c7": 1.3887817596094165 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.191400832177532, + "c3": 1.8261673601479422, + "c4": 1.4609338881183545, + "c5": 1.0957004160887642, + "c6": 0.7304669440591767, + "c7": 0.3652334720295889 }, "rgb": [86, 146, 138] }, @@ -35727,23 +35727,23 @@ "year": 1701, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -0.7141785180624325, - "c2": -34.88947652405194, - "c3": 15.923628916018153, - "c4": 37.70975478070976, - "c5": 37.06199623589326, - "c6": 7.3639255796422916, - "c7": -39.165148611484014 + "points": { + "c1": 3.0008854035395274, + "c2": 33.96644420281375, + "c3": -13.63126333212417, + "c4": 19.850524378645503, + "c5": 9.413759077826818, + "c6": -40.66246077756452, + "c7": 21.6222863743497 }, - "vertexSeeds": { - "c1": 9.777723231729402, - "c2": 9.53067784780927, - "c3": 9.393188931989405, - "c4": 10.11188114620802, - "c5": 9.655917667035808, - "c6": 10.114448565026803, - "c7": 9.632303370790034 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [58, 15, 49] }, @@ -35754,23 +35754,23 @@ "year": 1701, "resistanceReported": false, "duration": 49852800, - "curveSeeds": { - "c1": 30.634563643753467, - "c2": -55.414601054663315, - "c3": 60.203748879665966, - "c4": -41.92450837586107, - "c5": -52.23633587409578, - "c6": 54.88449568814953, - "c7": 4.951985531331005 + "points": { + "c1": -28.547594291341177, + "c2": 0.8891153059791463, + "c3": -17.92402710613682, + "c4": 26.977542337854544, + "c5": -45.067220993166956, + "c6": -41.34689009258502, + "c7": -45.14210213360766 }, - "vertexSeeds": { - "c1": 1.117371377080593, - "c2": 0.9964364485905568, - "c3": 1.1429757800968579, - "c4": 1.1412511777226564, - "c5": 1.1398113633396076, - "c6": 1.0105299295479324, - "c7": 1.0428589583131678 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.664355062413315, + "c3": 1.386962552011096, + "c4": 1.1095700416088772, + "c5": 0.8321775312066566, + "c6": 0.5547850208044378, + "c7": 0.2773925104022189 }, "rgb": [222, 0, 59] }, @@ -35781,23 +35781,23 @@ "year": 1701, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": 44.146742073233895, - "c2": -9.120299201848972, - "c3": -34.235966608952225, - "c4": -11.806795415366054, - "c5": -18.416784261199844, - "c6": 40.97063832453941, - "c7": 8.149051620478872 + "points": { + "c1": -46.76270166831091, + "c2": 30.004236165307077, + "c3": -36.76621003998406, + "c4": 17.109503487555088, + "c5": 36.38979068463344, + "c6": -33.324268428385025, + "c7": -56.39439263810504 }, - "vertexSeeds": { - "c1": 4.32933303834159, - "c2": 3.8854242240028483, - "c3": 3.840695147194645, - "c4": 3.8115127358491767, - "c5": 3.985066388143303, - "c6": 3.892011029823492, - "c7": 4.204564910209377 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [77, 76, 132] }, @@ -35808,23 +35808,23 @@ "year": 1701, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -32.07371300765159, - "c2": 39.2741078886075, - "c3": -17.304379366178406, - "c4": 42.5834613465841, - "c5": 22.030900779219593, - "c6": -7.249016523932319, - "c7": 5.725340802321185 + "points": { + "c1": 18.212191078734804, + "c2": 1.1346654341369913, + "c3": -36.78747970879928, + "c4": -22.744298248952287, + "c5": -37.44258580995009, + "c6": -36.27761313218755, + "c7": -9.369136769545335 }, - "vertexSeeds": { - "c1": 8.641231002084275, - "c2": 9.624900212458593, - "c3": 9.436028554272642, - "c4": 8.468929504810417, - "c5": 9.632664337033173, - "c6": 8.531923979866717, - "c7": 8.683708557329897 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156727, + "c3": 12.159038372630608, + "c4": 9.727230698104487, + "c5": 7.295423023578358, + "c6": 4.863615349052239, + "c7": 2.4318076745261195 }, "rgb": [222, 0, 59] }, @@ -35835,23 +35835,23 @@ "year": 1701, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -4.107725113419022, - "c2": -36.60767263424233, - "c3": -22.60605963829624, - "c4": -4.418643023407654, - "c5": -25.687951239733327, - "c6": 12.140686117869095, - "c7": -1.6463313896236969 + "points": { + "c1": -1.5614356055537897, + "c2": -31.022751254287414, + "c3": -21.248177932612194, + "c4": 42.6045886392387, + "c5": 13.382432878014527, + "c6": -21.78117942359617, + "c7": 1.7013195418739215 }, - "vertexSeeds": { - "c1": 3.1371533105386398, - "c2": 3.131289587783225, - "c3": 2.9846963832824636, - "c4": 3.390084738034836, - "c5": 2.9900492891726187, - "c6": 3.422718930184833, - "c7": 3.472758170274654 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320389, + "c3": 4.207119741100325, + "c4": 3.365695792880261, + "c5": 2.5242718446601917, + "c6": 1.6828478964401277, + "c7": 0.8414239482200638 }, "rgb": [77, 76, 132] }, @@ -35862,23 +35862,23 @@ "year": 1703, "resistanceReported": false, "duration": 94608000, - "curveSeeds": { - "c1": 43.288103628643796, - "c2": -77.8433879881614, - "c3": 77.22685411147879, - "c4": 95.2746778513405, - "c5": 15.072125735993694, - "c6": 87.48821116332195, - "c7": -9.876743750219262 + "points": { + "c1": 82.69348816791594, + "c2": 72.50876771097205, + "c3": 32.62712408111892, + "c4": -104.71881194029376, + "c5": -99.60581825418511, + "c6": -27.285854272303766, + "c7": 80.68266712123386 }, - "vertexSeeds": { - "c1": 5.285717398419226, - "c2": 6.083319987639577, - "c3": 5.464303406868722, - "c4": 6.046216678844454, - "c5": 6.240988436230146, - "c6": 4.898058976093879, - "c7": 6.35918540128373 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233007, + "c3": 7.605177993527511, + "c4": 6.084142394822006, + "c5": 4.563106796116502, + "c6": 3.042071197411005, + "c7": 1.5210355987055006 }, "rgb": [58, 15, 49] }, @@ -35889,23 +35889,23 @@ "year": 1700, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -11.242465355909477, - "c2": 15.585568443532722, - "c3": 27.158681584613902, - "c4": 22.20294049959044, - "c5": -21.40009887038048, - "c6": -28.850804993528413, - "c7": -14.785999000596195 + "points": { + "c1": 15.632576790392378, + "c2": -6.906493931175902, + "c3": -14.175110786508839, + "c4": 16.66953127827675, + "c5": 30.3777508381646, + "c6": 20.809008233279087, + "c7": 1.6553396160792104 }, - "vertexSeeds": { - "c1": 3.9559173709611115, - "c2": 3.5067667025099483, - "c3": 3.9970537723708564, - "c4": 3.8718644987329918, - "c5": 4.19220444422218, - "c6": 3.645779556443862, - "c7": 3.5363715158482547 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.0471567267683755, + "c3": 5.039297272306978, + "c4": 4.0314378178455845, + "c5": 3.0235783633841877, + "c6": 2.0157189089227905, + "c7": 1.0078594544613972 }, "rgb": [58, 15, 49] }, @@ -35916,23 +35916,23 @@ "year": 1700, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 28.811301017874584, - "c2": 12.548207279183437, - "c3": -27.95530729392451, - "c4": 22.40465317158327, - "c5": 17.00465870792506, - "c6": -22.131379854362375, - "c7": 1.0212169222238856 + "points": { + "c1": 2.16158621781873, + "c2": -21.69654475142947, + "c3": -11.499323949973487, + "c4": 8.754092636565858, + "c5": 29.056955615979334, + "c6": 18.56366096333079, + "c7": -38.96161529383398 }, - "vertexSeeds": { - "c1": 1.4494287823563863, - "c2": 1.6815976035603022, - "c3": 1.6507152706298487, - "c4": 1.6269467222363674, - "c5": 1.671260207718761, - "c6": 1.4533993407632297, - "c7": 1.7336837820306286 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.5242718446601944, + "c3": 2.1035598705501606, + "c4": 1.682847896440129, + "c5": 1.2621359223300972, + "c6": 0.8414239482200656, + "c7": 0.4207119741100317 }, "rgb": [77, 76, 132] }, @@ -35943,23 +35943,23 @@ "year": 1700, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 10.580908876881928, - "c2": 19.191157948412595, - "c3": -35.58074419234886, - "c4": 35.26160014214312, - "c5": -2.644272251482363, - "c6": -15.98757369166939, - "c7": -31.885568687218427 + "points": { + "c1": -14.360964979903425, + "c2": 0.2814264881711708, + "c3": -23.557010299794815, + "c4": -3.387841486552155, + "c5": -21.93941716312263, + "c6": 6.210858185827327, + "c7": 18.806919949660383 }, - "vertexSeeds": { - "c1": 4.655037684102685, - "c2": 5.300692610101771, - "c3": 5.517727259293377, - "c4": 4.594105302057018, - "c5": 4.702206835859096, - "c6": 5.048925813294506, - "c7": 4.71525555090685 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.7961165048543695, + "c4": 5.436893203883493, + "c5": 4.077669902912623, + "c6": 2.7184466019417464, + "c7": 1.3592233009708732 }, "rgb": [86, 146, 138] }, @@ -35970,23 +35970,23 @@ "year": 1700, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -13.959710435666938, - "c2": 23.244764801478375, - "c3": -23.435655239670226, - "c4": -16.24008453012057, - "c5": 18.373687719842813, - "c6": -8.63707050892016, - "c7": 10.250572279995588 + "points": { + "c1": -6.195765905970909, + "c2": 26.182625730807807, + "c3": -22.690572414713916, + "c4": 1.6513781003861965, + "c5": 25.050559511944087, + "c6": 21.08374205269294, + "c7": -5.423510530535275 }, - "vertexSeeds": { - "c1": 4.327501132194101, - "c2": 4.016515858528085, - "c3": 4.6133526515056715, - "c4": 3.8688996755140463, - "c5": 4.363307080394448, - "c6": 4.1015888000889085, - "c7": 4.351653344349453 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [77, 76, 132] }, @@ -35997,23 +35997,23 @@ "year": 1700, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -26.872786348287512, - "c2": -7.136960167806709, - "c3": -15.227308811042771, - "c4": -27.785961068162273, - "c5": -31.288580741370694, - "c6": -3.639408748813583, - "c7": -4.838062888022893 + "points": { + "c1": -2.7651878177901636, + "c2": -0.3612548562918221, + "c3": -8.127754504801853, + "c4": 15.664613257554599, + "c5": -13.585457061144687, + "c6": -3.6292390319683747, + "c7": -3.4364413786487162 }, - "vertexSeeds": { - "c1": 4.097083608761254, - "c2": 4.2293637995597315, - "c3": 4.306016689128032, - "c4": 4.699612141123948, - "c5": 4.170963023938304, - "c6": 4.149995205394344, - "c7": 3.8662852155601715 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [238, 201, 159] }, @@ -36024,23 +36024,23 @@ "year": 1701, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -5.571675850644411, - "c2": 32.62957208360377, - "c3": 37.46238126201333, - "c4": 19.234451791875586, - "c5": 15.330667769045782, - "c6": -15.106025521248807, - "c7": 14.165818008806504 + "points": { + "c1": 5.0605791442430075, + "c2": 20.979405380928227, + "c3": -35.15915528621521, + "c4": -9.65689201129522, + "c5": -1.5212065180192624, + "c6": -23.826092612358153, + "c7": -25.015057129139006 }, - "vertexSeeds": { - "c1": 10.44929215306807, - "c2": 10.954303402956368, - "c3": 10.209476848363911, - "c4": 10.37682791068091, - "c5": 9.642323676353891, - "c6": 9.898861468585357, - "c7": 10.475440400368495 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.700416088765607, + "c3": 13.083680073971344, + "c4": 10.46694405917708, + "c5": 7.850208044382788, + "c6": 5.233472029588526, + "c7": 2.616736014794263 }, "rgb": [238, 201, 159] }, @@ -36051,23 +36051,23 @@ "year": 1700, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -10.001987286844127, - "c2": -0.6626114999267187, - "c3": 11.361677823611146, - "c4": 10.45972373884792, - "c5": 30.669242453139773, - "c6": 27.762232461546233, - "c7": -2.6957151708199376 + "points": { + "c1": -13.268815286500061, + "c2": -1.3255211393846764, + "c3": 13.774853208993044, + "c4": -21.141817315989073, + "c5": 17.561709544631952, + "c6": 5.133128736181035, + "c7": 23.12045334410017 }, - "vertexSeeds": { - "c1": 6.2673530016496395, - "c2": 7.762642075647978, - "c3": 7.243476642527236, - "c4": 7.746880515838701, - "c5": 8.53881555658857, - "c6": 5.840121055256321, - "c7": 7.181657514143019 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421636, + "c3": 10.587147480351362, + "c4": 8.46971798428109, + "c5": 6.352288488210816, + "c6": 4.234858992140544, + "c7": 2.1174294960702733 }, "rgb": [86, 146, 138] }, @@ -36078,23 +36078,23 @@ "year": 1700, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -20.92479258297434, - "c2": 5.976696444544814, - "c3": -18.718341565747707, - "c4": 35.46164460069035, - "c5": 21.482882200323914, - "c6": 7.977614665166747, - "c7": -15.91727165947431 + "points": { + "c1": 18.16527538064762, + "c2": 0.6965076944176403, + "c3": 27.125586894907087, + "c4": -26.33103783010516, + "c5": 8.232663201337587, + "c6": -17.82798195600795, + "c7": -12.960505296416905 }, - "vertexSeeds": { - "c1": 8.69096993690409, - "c2": 7.6911711073012, - "c3": 8.17572454504907, - "c4": 8.202300257817267, - "c5": 7.841641115407456, - "c6": 8.48292695767721, - "c7": 8.380860906820502 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099856, + "c3": 10.402219140083211, + "c4": 8.321775312066574, + "c5": 6.241331484049928, + "c6": 4.160887656033282, + "c7": 2.080443828016647 }, "rgb": [58, 15, 49] }, @@ -36105,23 +36105,23 @@ "year": 1700, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 21.18413984305844, - "c2": -18.188263183929617, - "c3": 26.18046835937428, - "c4": -16.749979321844588, - "c5": -20.927496684753436, - "c6": 23.85855796825571, - "c7": -28.45854558777746 + "points": { + "c1": -2.2893949869136314, + "c2": -24.009043970453273, + "c3": -29.137882186962234, + "c4": -21.664352655430648, + "c5": 5.638191710671535, + "c6": 21.81349215771388, + "c7": -11.55679761153231 }, - "vertexSeeds": { - "c1": 2.0975732061390415, - "c2": 1.9973109433360567, - "c3": 2.094133196652158, - "c4": 2.008485325932393, - "c5": 2.125346777563783, - "c6": 2.1189062179309337, - "c7": 1.9254085108133356 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504855, + "c3": 2.5889967637540434, + "c4": 2.0711974110032356, + "c5": 1.5533980582524276, + "c6": 1.0355987055016198, + "c7": 0.5177993527508078 }, "rgb": [222, 0, 59] }, @@ -36132,23 +36132,23 @@ "year": 1700, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 4.135347998298776, - "c2": 1.2426269679684516, - "c3": 3.945239162581281, - "c4": -15.61644531779032, - "c5": -4.257527579680993, - "c6": -10.29799507589319, - "c7": 1.0237774817054337 + "points": { + "c1": -20.646944506488303, + "c2": -6.265490537060906, + "c3": -4.9201951384861395, + "c4": 5.822881771761676, + "c5": 23.406625477985916, + "c6": -23.57597718415225, + "c7": 18.209324975578593 }, - "vertexSeeds": { - "c1": 1.849779472775256, - "c2": 2.306836446777881, - "c3": 2.260563000283706, - "c4": 2.4068095172331043, - "c5": 2.177117201110025, - "c6": 2.482044506807061, - "c7": 2.4037653242566765 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092932, + "c3": 3.05131761442441, + "c4": 2.4410540915395287, + "c5": 1.830790568654646, + "c6": 1.2205270457697643, + "c7": 0.6102635228848831 }, "rgb": [238, 201, 159] }, @@ -36159,23 +36159,23 @@ "year": 1701, "resistanceReported": false, "duration": 50371200, - "curveSeeds": { - "c1": 11.811011692436338, - "c2": -19.491626708059414, - "c3": 61.50487449729903, - "c4": -17.89236275945177, - "c5": -35.77925936682914, - "c6": -2.2799161648486574, - "c7": 9.775049514194222 + "points": { + "c1": 50.84497262202342, + "c2": -21.115727361024717, + "c3": -66.7611701641024, + "c4": 31.95350207501272, + "c5": -33.98132410948016, + "c6": -16.694719237054066, + "c7": 65.99926995053224 }, - "vertexSeeds": { - "c1": 1.3064957209871637, - "c2": 1.2756650170175625, - "c3": 1.1941323806444113, - "c4": 1.3462228156682714, - "c5": 1.4065628799624086, - "c6": 1.2530618752631775, - "c7": 1.1414052397068717 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.052704576976423, + "c3": 1.7105871474803513, + "c4": 1.36846971798428, + "c5": 1.0263522884882108, + "c6": 0.6842348589921405, + "c7": 0.34211742949607027 }, "rgb": [77, 76, 132] }, @@ -36186,23 +36186,23 @@ "year": 1701, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 14.541417202151976, - "c2": 3.708037551005475, - "c3": -6.239193843540505, - "c4": -38.10451389849287, - "c5": -14.563511823275089, - "c6": 21.577733976699555, - "c7": 18.401541103895177 + "points": { + "c1": 8.370080208794207, + "c2": 40.496441662845356, + "c3": -25.289260823761126, + "c4": 29.495895883360305, + "c5": -41.194795710531004, + "c6": 16.103214067679474, + "c7": 36.723251591209504 }, - "vertexSeeds": { - "c1": 2.6571608866158174, - "c2": 2.9383158288650755, - "c3": 2.9087332175802683, - "c4": 2.716571015442633, - "c5": 2.9165765669485078, - "c6": 2.7014449812373824, - "c7": 2.872355802947101 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153957, + "c3": 3.5367545076282934, + "c4": 2.829403606102638, + "c5": 2.122052704576974, + "c6": 1.414701803051319, + "c7": 0.7073509015256639 }, "rgb": [58, 15, 49] }, @@ -36213,23 +36213,23 @@ "year": 1701, "resistanceReported": true, "duration": 30067200, - "curveSeeds": { - "c1": 24.322422904529866, - "c2": 2.073018423373803, - "c3": -32.792573634116685, - "c4": -35.63641215167413, - "c5": -19.789472959478786, - "c6": 11.395937711433362, - "c7": 30.67327512440942 + "points": { + "c1": -39.975649667999136, + "c2": 39.92747471760679, + "c3": 5.2476219425392685, + "c4": -41.50112664025589, + "c5": -30.07522100530119, + "c6": -3.2631145817239755, + "c7": 26.307853670941135 }, - "vertexSeeds": { - "c1": 8.052249446090052, - "c2": 7.681735284501986, - "c3": 8.026846914083778, - "c4": 7.271664022616645, - "c5": 7.7756584848448425, - "c6": 7.811095313272213, - "c7": 7.969852272817823 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.56726768377254, + "c3": 9.63938973647712, + "c4": 7.711511789181699, + "c5": 5.783633841886279, + "c6": 3.8557558945908412, + "c7": 1.9278779472954206 }, "rgb": [77, 76, 132] }, @@ -36240,23 +36240,23 @@ "year": 1700, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -10.058507174480347, - "c2": -3.3288913070342865, - "c3": 6.908751907486103, - "c4": 30.33132660101759, - "c5": 10.730242680773461, - "c6": 0.8986202058240558, - "c7": -5.937079079816176 + "points": { + "c1": 0.23019484683836566, + "c2": 23.118036686321126, + "c3": 32.36546128694114, + "c4": 27.981700659070384, + "c5": 30.557310318375052, + "c6": 4.388674222377382, + "c7": 6.538621260450164 }, - "vertexSeeds": { - "c1": 2.820150745575458, - "c2": 2.5108046040600542, - "c3": 2.56661179852076, - "c4": 2.946586263452227, - "c5": 2.837710737329126, - "c6": 2.8636162279416593, - "c7": 3.108250014489622 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299603, + "c4": 2.995839112343967, + "c5": 2.2468793342579745, + "c6": 1.4979195561719814, + "c7": 0.748959778085993 }, "rgb": [58, 15, 49] }, @@ -36267,23 +36267,23 @@ "year": 1701, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 18.89051715028222, - "c2": 1.1054382225635777, - "c3": 7.8071225105542155, - "c4": -2.6867976253681363, - "c5": 37.60466460981073, - "c6": -36.710548968348036, - "c7": 31.81757214456922 + "points": { + "c1": 31.845377111194928, + "c2": -2.429585887770507, + "c3": 5.785653805274016, + "c4": 19.52958252388622, + "c5": -26.17536948788544, + "c6": 17.173534136849256, + "c7": 38.65748037516631 }, - "vertexSeeds": { - "c1": 14.114647886948047, - "c2": 13.84817327000662, - "c3": 14.767275494511637, - "c4": 13.959024679870002, - "c5": 13.511764837303065, - "c6": 13.513090402442813, - "c7": 14.433392372840537 + "offsets": { + "c1": 24.660194174757283, + "c2": 21.137309292649103, + "c3": 17.614424410540924, + "c4": 14.091539528432719, + "c5": 10.56865464632454, + "c6": 7.0457697642163595, + "c7": 3.5228848821081797 }, "rgb": [77, 76, 132] }, @@ -36294,23 +36294,23 @@ "year": 1701, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -30.27021259884536, - "c2": 12.537987816092127, - "c3": 37.782547483630744, - "c4": 3.2795416892936373, - "c5": -5.555851225107894, - "c6": 18.469223561999954, - "c7": -4.324894865867357 + "points": { + "c1": -14.080958431221063, + "c2": -35.10940521236139, + "c3": 1.2019937739766178, + "c4": 16.57130705820105, + "c5": -36.373731549294504, + "c6": 13.914732319593746, + "c7": 26.17622299054849 }, - "vertexSeeds": { - "c1": 13.02414993540425, - "c2": 13.07219385016396, - "c3": 13.363349647652127, - "c4": 13.386266489317215, - "c5": 13.35065066191093, - "c6": 13.339347526202246, - "c7": 13.24886335252598 + "offsets": { + "c1": 22.330097087378643, + "c2": 19.14008321775318, + "c3": 15.950069348127583, + "c4": 12.760055478502121, + "c5": 9.570041608876524, + "c6": 6.3800277392510605, + "c7": 3.190013869625463 }, "rgb": [222, 0, 59] }, @@ -36321,23 +36321,23 @@ "year": 1701, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -26.414623437122764, - "c2": 7.422619337876725, - "c3": -20.99953727808605, - "c4": 7.276207350996785, - "c5": -16.613101663874247, - "c6": 14.612722390473934, - "c7": 35.3946812774669 + "points": { + "c1": 42.2732580044613, + "c2": -35.048105827723035, + "c3": 23.316380562577763, + "c4": -43.38466260645463, + "c5": 3.4908644972756946, + "c6": -8.339195491339034, + "c7": 14.670582490075944 }, - "vertexSeeds": { - "c1": 2.3194431802588644, - "c2": 2.492118102244833, - "c3": 2.3126849816307304, - "c4": 2.3222712299114416, - "c5": 2.4913512353307534, - "c6": 2.350024900117795, - "c7": 2.3118917073138334 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288477, + "c3": 3.005085529357376, + "c4": 2.4040684234859, + "c5": 1.8030513176144238, + "c6": 1.2020342117429477, + "c7": 0.6010171058714762 }, "rgb": [58, 15, 49] }, @@ -36348,23 +36348,23 @@ "year": 1701, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -14.58063026868383, - "c2": -30.60995860445714, - "c3": -10.666609669355097, - "c4": -17.154603020514493, - "c5": -11.695041608022919, - "c6": 3.719471153532176, - "c7": 26.525500884035893 + "points": { + "c1": -17.132516876085962, + "c2": 23.266643653780584, + "c3": 30.06992685732955, + "c4": -6.387302555784807, + "c5": 12.039399203780363, + "c6": 29.306940875890092, + "c7": -27.468671505658257 }, - "vertexSeeds": { - "c1": 2.850217714583202, - "c2": 2.680143142106804, - "c3": 2.9401429998861475, - "c4": 2.978167724637654, - "c5": 2.6735626166276867, - "c6": 2.765872167011223, - "c7": 2.91129695247109 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.32732316227462, + "c3": 3.606102635228845, + "c4": 2.8848821081830773, + "c5": 2.16366158113731, + "c6": 1.4424410540915427, + "c7": 0.7212205270457674 }, "rgb": [222, 0, 59] }, @@ -36375,23 +36375,23 @@ "year": 1701, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -9.02416668839598, - "c2": -18.51700605100628, - "c3": -15.800282404713592, - "c4": -30.433379885676345, - "c5": 30.08932152050067, - "c6": 32.50172934359343, - "c7": -27.783571914634564 + "points": { + "c1": -34.98440669035259, + "c2": -30.026578915507102, + "c3": -31.372649094516568, + "c4": -39.490082911454756, + "c5": 37.96560892456936, + "c6": 38.58086671792996, + "c7": -6.576331570955432 }, - "vertexSeeds": { - "c1": 9.769568303467242, - "c2": 9.231474719758259, - "c3": 9.270866104003503, - "c4": 9.680515726127012, - "c5": 9.57594541550099, - "c6": 9.597022221293875, - "c7": 8.815226060394723 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312067, + "c3": 11.673601479426726, + "c4": 9.338881183541384, + "c5": 7.00416088765604, + "c6": 4.669440591770698, + "c7": 2.334720295885356 }, "rgb": [222, 0, 59] }, @@ -36402,23 +36402,23 @@ "year": 1701, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -23.372432128313335, - "c2": 5.206821078999766, - "c3": 13.426212369448734, - "c4": 23.23898014030693, - "c5": 14.411444288470157, - "c6": -42.20846781373657, - "c7": 2.902677745237014 + "points": { + "c1": 8.71221635804448, + "c2": 32.09782075867992, + "c3": -29.80603532215618, + "c4": -9.695753227403166, + "c5": 35.859170121939776, + "c6": -12.469081370970528, + "c7": -9.686584475751097 }, - "vertexSeeds": { - "c1": 4.25139265609889, - "c2": 3.934935856701439, - "c3": 3.4888812444201065, - "c4": 4.058069184403941, - "c5": 3.7225493041652626, - "c6": 4.232048415180767, - "c7": 4.250148247526766 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.2011095700416075, + "c4": 4.160887656033288, + "c5": 3.1206657420249635, + "c6": 2.080443828016644, + "c7": 1.0402219140083242 }, "rgb": [222, 0, 59] }, @@ -36429,23 +36429,23 @@ "year": 1701, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -17.359229588838737, - "c2": -29.922558340374593, - "c3": 0.0937369899538183, - "c4": -31.122418269794913, - "c5": 5.575926370756683, - "c6": 30.709789894620336, - "c7": -5.21478415879875 + "points": { + "c1": -11.571348060129154, + "c2": 19.403663546218787, + "c3": -27.416982650196594, + "c4": -19.53393611594603, + "c5": -23.136033723390362, + "c6": 11.068977485876154, + "c7": -28.857431311959374 }, - "vertexSeeds": { - "c1": 4.175494795299453, - "c2": 4.341406382574652, - "c3": 4.73565190880486, - "c4": 4.434439519878502, - "c5": 4.021367552524376, - "c6": 4.004906739985091, - "c7": 4.295624715101344 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [238, 201, 159] }, @@ -36456,23 +36456,23 @@ "year": 1701, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 17.320468692927562, - "c2": -8.637202700362941, - "c3": 13.02496678141911, - "c4": 34.548525581428606, - "c5": -10.316212359226245, - "c6": -40.97525021276551, - "c7": -9.800229498841322 + "points": { + "c1": -12.553677539134615, + "c2": -5.995238422875289, + "c3": 16.937342129234978, + "c4": 17.695692420498993, + "c5": 38.48871792839982, + "c6": 5.257446545474373, + "c7": -29.30163907807018 }, - "vertexSeeds": { - "c1": 1.8546312889105914, - "c2": 1.7864715020430912, - "c3": 1.6315469998408185, - "c4": 1.8324929075128873, - "c5": 1.7791917646911266, - "c6": 1.6009240093994799, - "c7": 1.7316452738674053 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.357836338418864, + "c4": 1.8862690707350906, + "c5": 1.4147018030513174, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [58, 15, 49] }, @@ -36483,23 +36483,23 @@ "year": 1701, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -33.26738883542647, - "c2": 13.01793730506214, - "c3": 23.928691587162348, - "c4": -36.54124125860626, - "c5": -40.45657501294634, - "c6": 35.60613119596003, - "c7": 20.153323649629783 + "points": { + "c1": 38.13128584268998, + "c2": 9.625665983821342, + "c3": -23.790048770008493, + "c4": -20.33982170604276, + "c5": 26.546650814596646, + "c6": 3.8481290353725512, + "c7": -16.462665420695796 }, - "vertexSeeds": { - "c1": 2.6273308393922647, - "c2": 2.6855797457949264, - "c3": 2.414529086161884, - "c4": 2.476049567032514, - "c5": 2.493808523461235, - "c6": 2.931263603286347, - "c7": 2.70156216859841 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.5136384650947767, + "c4": 2.8109107720758195, + "c5": 2.1081830790568667, + "c6": 1.4054553860379098, + "c7": 0.7027276930189549 }, "rgb": [58, 15, 49] }, @@ -36510,23 +36510,23 @@ "year": 1701, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 31.657916278384107, - "c2": 5.576900534689749, - "c3": -13.240539220646014, - "c4": -18.839612457077713, - "c5": 14.607976522441362, - "c6": -15.44410105258762, - "c7": -19.93685586105058 + "points": { + "c1": 9.04744264484053, + "c2": -16.62477933128618, + "c3": -17.495506053632568, + "c4": 9.385803781707963, + "c5": -20.050217312043458, + "c6": -33.417088963546476, + "c7": -7.210321339653579 }, - "vertexSeeds": { - "c1": 8.962498560325967, - "c2": 8.80866473495825, - "c3": 8.849553335932898, - "c4": 10.784231493898435, - "c5": 9.004010154605023, - "c6": 10.640433430718891, - "c7": 8.75170733613385 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.589459084604716, + "c3": 12.991215903837265, + "c4": 10.39297272306981, + "c5": 7.794729542302358, + "c6": 5.196486361534905, + "c7": 2.5982431807674526 }, "rgb": [58, 15, 49] }, @@ -36537,23 +36537,23 @@ "year": 1701, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -38.298941636473415, - "c2": 37.85807872388922, - "c3": -24.319993223171444, - "c4": 13.04329637795891, - "c5": 39.00285469934808, - "c6": 27.506481340827307, - "c7": 27.309851182681456 + "points": { + "c1": 21.6801377163033, + "c2": 7.772602976545116, + "c3": -21.63534536889686, + "c4": 22.17964196028001, + "c5": 22.61511624708153, + "c6": -11.19800752480435, + "c7": -28.01465522378445 }, - "vertexSeeds": { - "c1": 2.8501088618316235, - "c2": 2.837490403328765, - "c3": 2.648843268500783, - "c4": 2.641025760609623, - "c5": 2.7898769734440116, - "c6": 2.6871657722333144, - "c7": 2.453205647681876 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314842, + "c3": 3.6292186777623665, + "c4": 2.903374942209895, + "c5": 2.177531206657419, + "c6": 1.4516874711049474, + "c7": 0.725843735552476 }, "rgb": [77, 76, 132] }, @@ -36564,23 +36564,23 @@ "year": 1701, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 6.544155180651217, - "c2": 7.408199470175717, - "c3": 38.66335832298806, - "c4": 16.539322412513663, - "c5": 0.8625571966593597, - "c6": 13.587680397216943, - "c7": 7.9340389053910485 + "points": { + "c1": -33.465876437630264, + "c2": -36.38726383506139, + "c3": 16.208887127417825, + "c4": 35.73401702749439, + "c5": 31.284240918538657, + "c6": 37.721820484370355, + "c7": 35.51359525918858 }, - "vertexSeeds": { - "c1": 5.353849879133939, - "c2": 5.7216295582199095, - "c3": 6.461322548352074, - "c4": 6.354019297054213, - "c5": 5.333579231062533, - "c6": 5.327455704811314, - "c7": 5.792219814190933 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554788, + "c3": 7.79010633379565, + "c4": 6.232085067036521, + "c5": 4.674063800277394, + "c6": 3.1160425335182564, + "c7": 1.5580212667591282 }, "rgb": [77, 76, 132] }, @@ -36591,23 +36591,23 @@ "year": 1701, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 23.444328224558163, - "c2": 10.690328375852488, - "c3": -12.18179192121083, - "c4": -9.064573567326669, - "c5": -25.508099598332528, - "c6": 22.296645330277748, - "c7": -28.042007969895494 + "points": { + "c1": 34.84163052135605, + "c2": -10.4199259486439, + "c3": -28.3597137145986, + "c4": -7.447627647433798, + "c5": -0.46177162761900803, + "c6": -25.73161214850471, + "c7": 9.119700300563409 }, - "vertexSeeds": { - "c1": 1.706183948801401, - "c2": 2.0060755836849795, - "c3": 1.6925513249941173, - "c4": 2.0922655009588436, - "c5": 1.8053120586721134, - "c6": 2.0532744773682143, - "c7": 1.7429692704675122 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841886, + "c3": 2.519648636153491, + "c4": 2.015718908922793, + "c5": 1.511789181692093, + "c6": 1.0078594544613955, + "c7": 0.5039297272306977 }, "rgb": [77, 76, 132] }, @@ -36618,23 +36618,23 @@ "year": 1701, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -2.4261049123039484, - "c2": -29.324862927858884, - "c3": 22.454676814990087, - "c4": -27.24029432439807, - "c5": 9.782259527525575, - "c6": 33.21665722990378, - "c7": -11.27461661682479 + "points": { + "c1": 2.224733126758096, + "c2": -36.944015101766816, + "c3": 13.814393778923112, + "c4": -25.895831988018628, + "c5": 8.478368407683782, + "c6": -26.406749489484557, + "c7": 31.974279518398397 }, - "vertexSeeds": { - "c1": 3.5976754266931934, - "c2": 3.9516420381732424, - "c3": 3.79518145466281, - "c4": 3.6640828971682966, - "c5": 3.5272226600257905, - "c6": 3.679703462684048, - "c7": 3.4495265228105927 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486824, + "c3": 4.877484974572355, + "c4": 3.901987979657881, + "c5": 2.926490984743412, + "c6": 1.9509939898289432, + "c7": 0.9754969949144738 }, "rgb": [77, 76, 132] }, @@ -36645,23 +36645,23 @@ "year": 1701, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -7.200917262548003, - "c2": -17.647594002508782, - "c3": 3.6089131838162487, - "c4": -7.766798923434841, - "c5": 11.832607529912075, - "c6": -10.52729650650258, - "c7": 21.58814664229952 + "points": { + "c1": -24.586793427992532, + "c2": -7.987755671242926, + "c3": 6.715157902501062, + "c4": 0.5816464957717926, + "c5": -3.9188718959276656, + "c6": 3.8454790718480467, + "c7": 18.20499969729824 }, - "vertexSeeds": { - "c1": 5.3109157728488565, - "c2": 6.006643520991638, - "c3": 5.739633773770383, - "c4": 5.803223106667243, - "c5": 6.029209986073596, - "c6": 5.602496310595343, - "c7": 5.882612121936323 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589464, + "c3": 7.235321312991216, + "c4": 5.788257050392977, + "c5": 4.341192787794728, + "c6": 2.8941285251964883, + "c7": 1.4470642625982486 }, "rgb": [86, 146, 138] }, @@ -36672,23 +36672,23 @@ "year": 1701, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 9.508251315896427, - "c2": -2.806815849745547, - "c3": 25.511413276321914, - "c4": -14.94518577367238, - "c5": -23.00982909458157, - "c6": -10.554137515909296, - "c7": 21.78311459602421 + "points": { + "c1": 31.705847342525956, + "c2": -29.227424232550597, + "c3": 9.737286526062647, + "c4": 11.865662708244606, + "c5": -2.0649095216825835, + "c6": -15.232184339109246, + "c7": -23.171936503547347 }, - "vertexSeeds": { - "c1": 4.9540133006674, - "c2": 4.973035167091973, - "c3": 5.049818181640644, - "c4": 5.464316526160578, - "c5": 5.090984420353064, - "c6": 4.63002987658798, - "c7": 5.271487109893322 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [86, 146, 138] }, @@ -36699,23 +36699,23 @@ "year": 1701, "resistanceReported": false, "duration": 45705600, - "curveSeeds": { - "c1": 52.85135135610062, - "c2": 5.242104267541052, - "c3": 12.692014352575043, - "c4": 30.146745921441948, - "c5": 15.529276942960294, - "c6": 6.920820447982635, - "c7": 9.672736536859219 + "points": { + "c1": 49.04792296032805, + "c2": -61.95932016060922, + "c3": -34.7801863914009, + "c4": -37.38103573409549, + "c5": -26.875444800780535, + "c6": -42.72663716707517, + "c7": -10.31612504575304 }, - "vertexSeeds": { - "c1": 4.191905772700611, - "c2": 4.079277967241586, - "c3": 4.053924852394977, - "c4": 4.077704253319302, - "c5": 3.689765773051858, - "c6": 4.452587115586803, - "c7": 3.6792641252068186 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291265, + "c3": 5.339805825242718, + "c4": 4.271844660194176, + "c5": 3.2038834951456296, + "c6": 2.135922330097088, + "c7": 1.0679611650485463 }, "rgb": [86, 146, 138] }, @@ -36726,23 +36726,23 @@ "year": 1701, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 5.768105153356537, - "c2": -0.9744828956810139, - "c3": -31.921301780077737, - "c4": 32.73371411186254, - "c5": 28.86133860587543, - "c6": -27.353392678272144, - "c7": 29.158054919157394 + "points": { + "c1": 16.945488207575764, + "c2": 1.9936432063575609, + "c3": 16.887407921287227, + "c4": -9.563034002634204, + "c5": -24.795566051649864, + "c6": -16.92858523131719, + "c7": 32.86563721648666 }, - "vertexSeeds": { - "c1": 6.28264784905064, - "c2": 6.443800745823053, - "c3": 6.633177580637839, - "c4": 6.329074242608145, - "c5": 6.885967220496394, - "c6": 6.2212915050053175, - "c7": 6.598707900371867 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319006, + "c3": 8.229311141932497, + "c4": 6.5834489135459995, + "c5": 4.937586685159503, + "c6": 3.2917244567730064, + "c7": 1.6458622283864968 }, "rgb": [77, 76, 132] }, @@ -36753,23 +36753,23 @@ "year": 1701, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -26.496776157401165, - "c2": -14.300215264755355, - "c3": 12.821588962334651, - "c4": -30.446780551281243, - "c5": 12.669154896293001, - "c6": 34.162712995271775, - "c7": 22.52096568366644 + "points": { + "c1": 25.60193232952654, + "c2": 18.77988181053862, + "c3": -11.175968672904567, + "c4": 14.407467774039802, + "c5": -20.985574481364267, + "c6": -30.544565516272243, + "c7": 22.85202139238342 }, - "vertexSeeds": { - "c1": 7.292321251654328, - "c2": 6.922645410817241, - "c3": 6.997496890635787, - "c4": 7.264415060951999, - "c5": 7.320702567105326, - "c6": 7.0990375494412765, - "c7": 6.949195280634721 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -36780,23 +36780,23 @@ "year": 1701, "resistanceReported": false, "duration": 43459200, - "curveSeeds": { - "c1": -23.38493426845639, - "c2": 14.045414500330594, - "c3": 42.23191678526487, - "c4": -43.11038382777045, - "c5": -38.08295466624915, - "c6": 46.769126975989764, - "c7": -33.439108086827815 + "points": { + "c1": -21.528402101229638, + "c2": -48.752947684197615, + "c3": 50.58676487929651, + "c4": 17.274150292330987, + "c5": 15.605298938646982, + "c6": 45.156079679068256, + "c7": -8.502055030860497 }, - "vertexSeeds": { - "c1": 2.542416497540952, - "c2": 2.6685818270505286, - "c3": 2.6545977313762443, - "c4": 2.703910349245905, - "c5": 2.3315116611552655, - "c6": 2.2169388450778382, - "c7": 2.2990937320510296 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115105, + "c3": 3.2824780397595914, + "c4": 2.6259824318076763, + "c5": 1.9694868238557566, + "c6": 1.312991215903837, + "c7": 0.6564956079519173 }, "rgb": [77, 76, 132] }, @@ -36807,23 +36807,23 @@ "year": 1701, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 5.754442418639904, - "c2": -5.702093139962972, - "c3": 25.575560243036463, - "c4": 15.589026963806958, - "c5": 0.8042580805967035, - "c6": -25.402683362794477, - "c7": -20.765940103241057 + "points": { + "c1": -26.63107166740903, + "c2": -25.703113894580888, + "c3": 9.041675837593786, + "c4": 32.97904329794076, + "c5": 28.94384594055208, + "c6": 9.898429318512328, + "c7": -13.87416263113106 }, - "vertexSeeds": { - "c1": 2.235170014162664, - "c2": 2.164866192257113, - "c3": 2.2655574145952824, - "c4": 2.2178910918926453, - "c5": 2.161881842424042, - "c6": 2.257880496561471, - "c7": 2.0921362683520544 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668514, + "c3": 2.7970411465557095, + "c4": 2.2376329172445675, + "c5": 1.6782246879334257, + "c6": 1.1188164586222837, + "c7": 0.5594082293111419 }, "rgb": [238, 201, 159] }, @@ -36834,23 +36834,23 @@ "year": 1701, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -10.57648921080418, - "c2": -7.546301311606918, - "c3": -32.5056810695993, - "c4": -11.469231655562645, - "c5": 3.679818756683737, - "c6": 1.6053174610864787, - "c7": -0.7281646352829583 + "points": { + "c1": -41.043849676772155, + "c2": -15.637114905379725, + "c3": 2.442587718370035, + "c4": 12.005909611368828, + "c5": 27.03692987038299, + "c6": -31.592482776862774, + "c7": 7.022769085083603 }, - "vertexSeeds": { - "c1": 3.9117092207430306, - "c2": 3.6464245526770873, - "c3": 3.9325318163386247, - "c4": 3.6387106239327043, - "c5": 3.5917429995333765, - "c6": 3.6831251659602127, - "c7": 3.7860008197107984 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406379, + "c3": 4.831252889505315, + "c4": 3.865002311604257, + "c5": 2.898751733703193, + "c6": 1.9325011558021286, + "c7": 0.9662505779010643 }, "rgb": [58, 15, 49] }, @@ -36861,23 +36861,23 @@ "year": 1701, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 9.299066778232728, - "c2": 5.518397237794446, - "c3": -21.85607506107202, - "c4": -3.435767871992887, - "c5": 37.70712457984941, - "c6": 28.834992538747095, - "c7": 36.93888664565619 + "points": { + "c1": 19.1608282277882, + "c2": -3.264162095864478, + "c3": -26.46445802575431, + "c4": -2.509419129712761, + "c5": -36.70939654378249, + "c6": -25.419019849985418, + "c7": -43.05882827998879 }, - "vertexSeeds": { - "c1": 10.164881904363817, - "c2": 10.390932453833903, - "c3": 9.592746085505262, - "c4": 11.426397871741074, - "c5": 8.975910622154155, - "c6": 12.418408122099649, - "c7": 12.8451194963578 + "offsets": { + "c1": 21.488673139158575, + "c2": 18.418862690707357, + "c3": 15.349052242256123, + "c4": 12.279241793804903, + "c5": 9.209431345353671, + "c6": 6.139620896902452, + "c7": 3.069810448451226 }, "rgb": [222, 0, 59] }, @@ -36888,23 +36888,23 @@ "year": 1701, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": -12.298157426846913, - "c2": -9.62339876827832, - "c3": 32.440427076168575, - "c4": -32.149717455709194, - "c5": -43.23148527359926, - "c6": -7.959983811210741, - "c7": 6.057490017758063 + "points": { + "c1": -41.471576119630704, + "c2": -45.30959555991092, + "c3": 13.132921276514793, + "c4": 11.750527668357414, + "c5": 37.06842405633631, + "c6": 38.80769699894303, + "c7": -35.49134444956285 }, - "vertexSeeds": { - "c1": 1.1116136331742068, - "c2": 1.1232082778485961, - "c3": 1.1222981239028043, - "c4": 1.1995911706886977, - "c5": 1.1212978671533465, - "c6": 1.1660852039805918, - "c7": 1.1782075475650122 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742035, + "c3": 1.4794267221451682, + "c4": 1.1835413777161354, + "c5": 0.8876560332871004, + "c6": 0.5917706888580677, + "c7": 0.29588534442903514 }, "rgb": [222, 0, 59] }, @@ -36915,23 +36915,23 @@ "year": 1701, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": -18.464106994205785, - "c2": 19.300765464364382, - "c3": 2.6474749906140715, - "c4": -36.80633769875422, - "c5": -33.047234420724905, - "c6": -14.496053528112043, - "c7": 23.94637888861265 + "points": { + "c1": 1.5590821077618244, + "c2": 29.808979154800817, + "c3": -34.07318584864359, + "c4": 40.3315645940452, + "c5": -38.846978836972546, + "c6": -37.63632038302958, + "c7": 35.19177228414389 }, - "vertexSeeds": { - "c1": 5.71231236097867, - "c2": 5.338237165357857, - "c3": 5.7178894670755165, - "c4": 5.335861727423205, - "c5": 5.6192615610548176, - "c6": 5.390985753392668, - "c7": 5.672536364642473 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905695, + "c3": 6.842348589921403, + "c4": 5.4738788719371305, + "c5": 4.105409153952838, + "c6": 2.7369394359685653, + "c7": 1.3684697179842926 }, "rgb": [86, 146, 138] }, @@ -36942,23 +36942,23 @@ "year": 1701, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 4.6673965133945, - "c2": 27.73359930342422, - "c3": -0.8899067484458705, - "c4": -25.91137999169437, - "c5": 27.5137485772766, - "c6": 25.51684951409797, - "c7": -0.4238984288301957 + "points": { + "c1": 18.824322062319567, + "c2": -19.666444075760936, + "c3": 13.677163442536312, + "c4": 12.227522653163938, + "c5": 19.31622522726439, + "c6": 22.771381441038194, + "c7": -3.817920500879797 }, - "vertexSeeds": { - "c1": 2.8343548211192893, - "c2": 2.6714007645512314, - "c3": 3.1973566666028552, - "c4": 2.6327069098179314, - "c5": 2.715338137255603, - "c6": 2.753803913721376, - "c7": 2.83972231906854 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [77, 76, 132] }, @@ -36969,23 +36969,23 @@ "year": 1701, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -19.484773948597528, - "c2": -24.95600405243838, - "c3": -9.866185819122599, - "c4": 5.8682543619970815, - "c5": -20.718096672116626, - "c6": -7.179186388336255, - "c7": -12.963063183810098 + "points": { + "c1": 20.225817291778178, + "c2": 29.70489434603605, + "c3": 25.994162487351055, + "c4": 29.66014391375856, + "c5": 15.36230982617704, + "c6": 17.389511771441263, + "c7": -10.22360236558021 }, - "vertexSeeds": { - "c1": 3.1789292478213125, - "c2": 3.0654665702253197, - "c3": 3.054045714567998, - "c4": 3.3803809932062534, - "c5": 3.2246839415608415, - "c6": 2.9721843542916515, - "c7": 3.167803698152206 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079056, + "c3": 4.068423485899217, + "c4": 3.254738788719372, + "c5": 2.441054091539528, + "c6": 1.6273693943596885, + "c7": 0.8136846971798443 }, "rgb": [58, 15, 49] }, @@ -36996,23 +36996,23 @@ "year": 1701, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -34.67958586746542, - "c2": -7.882264131839467, - "c3": 26.035307793509595, - "c4": -27.383618049102786, - "c5": -2.525719189825388, - "c6": -7.427696669698456, - "c7": 9.237161209619167 + "points": { + "c1": -10.121520600251152, + "c2": -34.86680711697736, + "c3": 16.78542386607255, + "c4": 25.701852411952515, + "c5": -29.368630984864456, + "c6": -9.2703163958688, + "c7": -30.424615441157897 }, - "vertexSeeds": { - "c1": 7.99863264563397, - "c2": 8.57052731267789, - "c3": 9.137783112576923, - "c4": 9.255494295526463, - "c5": 9.608855076083364, - "c6": 8.701999103148959, - "c7": 9.472798347106476 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070736, + "c3": 11.534905224225614, + "c4": 9.227924179380494, + "c5": 6.9209431345353725, + "c6": 4.6139620896902525, + "c7": 2.3069810448451307 }, "rgb": [222, 0, 59] }, @@ -37023,23 +37023,23 @@ "year": 1701, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -48.2820383035881, - "c2": -27.55063510581348, - "c3": -19.62539955600402, - "c4": 17.482128965902973, - "c5": 38.67571083464178, - "c6": -20.760104431787244, - "c7": 13.905915889503248 + "points": { + "c1": 30.593245649740624, + "c2": 31.47787683491363, + "c3": 38.411168300558316, + "c4": 14.943870510304905, + "c5": -17.033432381516455, + "c6": -3.9730105466656696, + "c7": -41.25785490974696 }, - "vertexSeeds": { - "c1": 3.558585155065141, - "c2": 3.4556974064478925, - "c3": 2.993128041779804, - "c4": 3.4054275907844023, - "c5": 3.5431567021702515, - "c6": 3.175426012018325, - "c7": 3.499000899015642 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [58, 15, 49] }, @@ -37050,23 +37050,23 @@ "year": 1701, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -8.089287877128179, - "c2": 21.41136038942924, - "c3": -26.3001752616356, - "c4": 24.571214981159258, - "c5": 25.183202607355284, - "c6": -0.6927454495707863, - "c7": -21.9633600502021 + "points": { + "c1": 4.32209654666508, + "c2": 1.5547197997000666, + "c3": 22.386665558686403, + "c4": -26.446299914414634, + "c5": 8.242289663201646, + "c6": 22.452213637834326, + "c7": 16.608236031318143 }, - "vertexSeeds": { - "c1": 5.207140103611699, - "c2": 4.872460478311568, - "c3": 4.917907162427958, - "c4": 4.8478287002645475, - "c5": 4.9742011673247895, - "c6": 5.099975665957037, - "c7": 5.087550926250171 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020798, + "c3": 6.333795654184013, + "c4": 5.067036523347206, + "c5": 3.800277392510399, + "c6": 2.533518261673614, + "c7": 1.266759130836807 }, "rgb": [238, 201, 159] }, @@ -37077,23 +37077,23 @@ "year": 1701, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -23.358504140778, - "c2": 23.613059388674827, - "c3": -17.85638629372842, - "c4": -15.477652770177423, - "c5": -28.541904207966546, - "c6": 3.3006007981154895, - "c7": 1.1783987592314915 + "points": { + "c1": -27.54431485822691, + "c2": -29.853043560170498, + "c3": 17.63320904158123, + "c4": 12.534608955899522, + "c5": -24.466398289422756, + "c6": -26.4172612625405, + "c7": 5.200956019553281 }, - "vertexSeeds": { - "c1": 2.6306285349535248, - "c2": 2.692915726544916, - "c3": 2.621428273459561, - "c4": 2.9203103666158556, - "c5": 2.8625793141794955, - "c6": 2.786605462413715, - "c7": 2.884660083869548 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113727, + "c3": 3.513638465094777, + "c4": 2.810910772075818, + "c5": 2.108183079056868, + "c6": 1.405455386037909, + "c7": 0.7027276930189587 }, "rgb": [58, 15, 49] }, @@ -37104,23 +37104,23 @@ "year": 1701, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -21.549168605502693, - "c2": -18.204594121612605, - "c3": 0.07346959559387756, - "c4": -12.88176698277153, - "c5": -6.548310033643691, - "c6": -19.727760795872044, - "c7": 23.764633081550777 + "points": { + "c1": 30.336299502145778, + "c2": -1.798538584047101, + "c3": -28.445977223529834, + "c4": -5.958323652834768, + "c5": -33.46343604877342, + "c6": 10.489874101386931, + "c7": 15.071582591385685 }, - "vertexSeeds": { - "c1": 1.4650294239878463, - "c2": 1.5479174397135773, - "c3": 1.5067082225371526, - "c4": 1.4312908648432272, - "c5": 1.5700095716126694, - "c6": 1.451685341601155, - "c7": 1.396097347230448 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.3300970873786406, + "c3": 1.9417475728155331, + "c4": 1.553398058252426, + "c5": 1.1650485436893188, + "c6": 0.7766990291262115, + "c7": 0.3883495145631043 }, "rgb": [86, 146, 138] }, @@ -37131,23 +37131,23 @@ "year": 1701, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -12.606657311803453, - "c2": -5.548894975001076, - "c3": -12.416691884950794, - "c4": -37.43098108036787, - "c5": 13.241187654770947, - "c6": 30.107778808841672, - "c7": -9.53217188110569 + "points": { + "c1": 36.267814185981365, + "c2": -29.75341191851052, + "c3": -34.45424107129827, + "c4": 7.172638894300519, + "c5": -26.34266729270723, + "c6": -3.172868060315267, + "c7": 11.91588571867176 }, - "vertexSeeds": { - "c1": 8.580193865803047, - "c2": 8.623422962765998, - "c3": 8.73060895546461, - "c4": 9.540730125601975, - "c5": 8.905136793332668, - "c6": 9.05071179637012, - "c7": 8.71596655453377 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070732, + "c3": 11.534905224225609, + "c4": 9.227924179380484, + "c5": 6.92094313453536, + "c6": 4.613962089690249, + "c7": 2.306981044845111 }, "rgb": [222, 0, 59] }, @@ -37158,23 +37158,23 @@ "year": 1701, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -41.463134395051604, - "c2": 42.18363677308089, - "c3": -6.9458513199893375, - "c4": -39.92665819674045, - "c5": -32.93570203855885, - "c6": 28.96070377411924, - "c7": -36.59563880880861 + "points": { + "c1": -27.06782166083309, + "c2": 3.8625416139475064, + "c3": -9.658923991300675, + "c4": -30.89059484467493, + "c5": -12.602830702621944, + "c6": 39.2460129230881, + "c7": -16.15546631306285 }, - "vertexSeeds": { - "c1": 5.155882625894242, - "c2": 5.118211797527041, - "c3": 4.670205754198324, - "c4": 5.395877741885474, - "c5": 4.743412965031949, - "c6": 5.524417689974849, - "c7": 5.489539743458478 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.93342579750347, + "c3": 6.611188164586219, + "c4": 5.288950531668978, + "c5": 3.9667128987517324, + "c6": 2.6444752658344868, + "c7": 1.3222376329172456 }, "rgb": [58, 15, 49] }, @@ -37185,23 +37185,23 @@ "year": 1701, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 24.989698168675034, - "c2": 30.164771340262078, - "c3": -10.513667328737931, - "c4": -7.155457381604936, - "c5": 19.874788782520213, - "c6": 13.524995619206862, - "c7": -32.61331988593961 + "points": { + "c1": 5.755905220792272, + "c2": -18.7609860412387, + "c3": 28.809727527054562, + "c4": -27.46054194543848, + "c5": -9.342126537775002, + "c6": 34.501688534404536, + "c7": -18.384475497612605 }, - "vertexSeeds": { - "c1": 2.742915935630864, - "c2": 2.885291543849664, - "c3": 3.412620253937493, - "c4": 2.8617754953272456, - "c5": 3.1125257338902, - "c6": 3.2327014848163396, - "c7": 3.341436607926437 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.9098474341192775, + "c3": 4.09153952843273, + "c4": 3.273231622746186, + "c5": 2.4549237170596387, + "c6": 1.6366158113730909, + "c7": 0.8183079056865479 }, "rgb": [222, 0, 59] }, @@ -37212,23 +37212,23 @@ "year": 1701, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 22.433734343951784, - "c2": 10.257711930014452, - "c3": -0.17481738846033323, - "c4": -5.800139874710361, - "c5": -23.146528408861126, - "c6": 36.52209325483, - "c7": -6.017994028868166 + "points": { + "c1": -4.209962724920366, + "c2": -39.012907113121855, + "c3": 28.37483890997484, + "c4": 35.32929278471866, + "c5": 24.539291625786547, + "c6": 19.642287998657963, + "c7": 39.430864751098255 }, - "vertexSeeds": { - "c1": 6.3853433001778095, - "c2": 7.272465026301377, - "c3": 6.352098392651262, - "c4": 6.416434316461629, - "c5": 7.698763010332927, - "c6": 7.304736515361222, - "c7": 7.342227887008118 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [86, 146, 138] }, @@ -37239,23 +37239,23 @@ "year": 1701, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 31.824148708590023, - "c2": -31.22751607727358, - "c3": 38.26529760551845, - "c4": 2.567058035114016, - "c5": -9.467921408253467, - "c6": -14.812670074587704, - "c7": 25.926931978376267 + "points": { + "c1": -8.779567855164025, + "c2": 31.591208524436375, + "c3": 14.130366916777646, + "c4": -40.58413850599963, + "c5": 43.52014819514262, + "c6": 42.7518170410306, + "c7": -35.99151965257864 }, - "vertexSeeds": { - "c1": 3.7163360248221378, - "c2": 4.387752704464838, - "c3": 4.021178174512395, - "c4": 3.6782561318755276, - "c5": 4.361233352232306, - "c6": 3.7924284750220187, - "c7": 3.6392394575086353 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251039, + "c3": 5.316689782709202, + "c4": 4.25335182616736, + "c5": 3.190013869625522, + "c6": 2.12667591308368, + "c7": 1.0633379565418377 }, "rgb": [238, 201, 159] }, @@ -37266,23 +37266,23 @@ "year": 1701, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 22.55421529160781, - "c2": -11.12181462143785, - "c3": -11.78379614012298, - "c4": -10.720140977472678, - "c5": 25.23216842040984, - "c6": 23.42984492432803, - "c7": 19.823046467471805 + "points": { + "c1": -21.6988483729737, + "c2": 0.8369806876697652, + "c3": -27.91724954731174, + "c4": -16.45134642549894, + "c5": -29.439166712568117, + "c6": -34.28970093636501, + "c7": 12.01534504708966 }, - "vertexSeeds": { - "c1": 1.2264348593835699, - "c2": 1.2266753522687022, - "c3": 1.3184180544575739, - "c4": 1.283530221473927, - "c5": 1.2308573056145635, - "c6": 1.2058462318745908, - "c7": 1.3553034608854946 + "offsets": { + "c1": 2.2977346278317152, + "c2": 1.9694868238557566, + "c3": 1.6412390198797977, + "c4": 1.312991215903839, + "c5": 0.9847434119278763, + "c6": 0.6564956079519174, + "c7": 0.3282478039759587 }, "rgb": [58, 15, 49] }, @@ -37293,23 +37293,23 @@ "year": 1701, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 14.782117490115262, - "c2": -15.754391209448851, - "c3": -11.418374525479564, - "c4": -14.132628426764601, - "c5": -5.080600251376364, - "c6": -14.40345394723423, - "c7": -27.819103839195876 + "points": { + "c1": -33.444093746029054, + "c2": 22.77094454511368, + "c3": 3.9950331182400447, + "c4": -29.005225383574214, + "c5": -21.844584613465948, + "c6": 17.451439946142337, + "c7": -23.75826830426047 }, - "vertexSeeds": { - "c1": 1.1117298919499259, - "c2": 1.0999181904186257, - "c3": 1.1327571449587306, - "c4": 1.1650723336939333, - "c5": 1.2097267780499206, - "c6": 1.1269961876688541, - "c7": 1.1165634890098626 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742022, + "c3": 1.4794267221451687, + "c4": 1.1835413777161348, + "c5": 0.8876560332871011, + "c6": 0.5917706888580674, + "c7": 0.2958853444290337 }, "rgb": [222, 0, 59] }, @@ -37320,23 +37320,23 @@ "year": 1701, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -19.67738548910505, - "c2": 5.969242406957758, - "c3": 8.684973209795611, - "c4": -1.334351146516056, - "c5": -26.895440115278365, - "c6": -7.100136407327874, - "c7": 13.397767101856058 + "points": { + "c1": 9.110037524379383, + "c2": 25.112855597501078, + "c3": 21.852983425599735, + "c4": 12.070219765065506, + "c5": -0.6009537451974083, + "c6": 1.2217255531380964, + "c7": -27.464425515704452 }, - "vertexSeeds": { - "c1": 3.4366724725673614, - "c2": 3.4368934709458103, - "c3": 3.6997746388329293, - "c4": 3.666381251423598, - "c5": 3.6061878243835475, - "c6": 3.4762684939101893, - "c7": 3.513233160018022 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [222, 0, 59] }, @@ -37347,23 +37347,23 @@ "year": 1701, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 11.599958596989225, - "c2": -26.56488775049832, - "c3": 18.324625506279226, - "c4": 29.60186755166577, - "c5": 8.058612312846122, - "c6": 39.52934395189761, - "c7": 39.29791251363334 + "points": { + "c1": -17.55449525738413, + "c2": -42.207520615681105, + "c3": -13.422908822225963, + "c4": -7.496286723797901, + "c5": -28.420230644183185, + "c6": -39.002652849408456, + "c7": 37.554489968691676 }, - "vertexSeeds": { - "c1": 4.868611650857804, - "c2": 4.635606569323062, - "c3": 4.8981809211580805, - "c4": 4.6775733198427725, - "c5": 4.713859690535824, - "c6": 5.227979543195638, - "c7": 5.4138210303587835 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [222, 0, 59] }, @@ -37374,23 +37374,23 @@ "year": 1701, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -33.11947946335908, - "c2": 4.818318943623964, - "c3": 30.222405727938636, - "c4": -28.06309737677865, - "c5": 9.359750193428354, - "c6": 2.340895542606553, - "c7": -19.17064644748476 + "points": { + "c1": -35.84440082050969, + "c2": 16.59817225328881, + "c3": -25.11718812150259, + "c4": -28.156273560701464, + "c5": 12.345970515580213, + "c6": 19.740019620353102, + "c7": 29.14309245435365 }, - "vertexSeeds": { - "c1": 2.5577602094706764, - "c2": 2.443342115278226, - "c3": 2.8146149598122285, - "c4": 2.89803294974522, - "c5": 2.438325120154575, - "c6": 2.5835080664462415, - "c7": 2.6908151396284543 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.2718446601941755, + "c3": 3.559870550161814, + "c4": 2.847896440129448, + "c5": 2.1359223300970864, + "c6": 1.423948220064725, + "c7": 0.7119741100323638 }, "rgb": [238, 201, 159] }, @@ -37401,23 +37401,23 @@ "year": 1701, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 23.33743583599488, - "c2": 15.145609328550123, - "c3": 8.082877148422227, - "c4": 28.525308951748272, - "c5": 10.59649290857314, - "c6": 16.65521906768695, - "c7": -3.6918254533664197 + "points": { + "c1": -21.407712835689132, + "c2": -8.173987437802918, + "c3": 13.94711494033185, + "c4": 1.946728459242017, + "c5": 2.0769403883169772, + "c6": -6.666668971754895, + "c7": 23.574470685041646 }, - "vertexSeeds": { - "c1": 2.7307071763870785, - "c2": 2.699983210849919, - "c3": 2.7354506130886715, - "c4": 2.4239479211147987, - "c5": 2.32829141643549, - "c6": 2.342505852933867, - "c7": 2.4503942300735737 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.374942209893665, + "c4": 2.6999537679149315, + "c5": 2.024965325936197, + "c6": 1.3499768839574657, + "c7": 0.6749884419787339 }, "rgb": [222, 0, 59] }, @@ -37428,23 +37428,23 @@ "year": 1701, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 7.36927025460578, - "c2": -8.53634523002697, - "c3": -17.88760012084706, - "c4": 9.48722966386309, - "c5": -26.466723103027334, - "c6": -16.405762918957706, - "c7": 20.59097256864613 + "points": { + "c1": -3.8274882193100694, + "c2": -30.359950441116826, + "c3": -29.16956138160932, + "c4": -14.201590563010821, + "c5": -21.995758548493782, + "c6": 6.053141493893314, + "c7": -18.955560751462386 }, - "vertexSeeds": { - "c1": 3.842960336918556, - "c2": 3.8603568961727235, - "c3": 3.816775302894287, - "c4": 3.853385096953345, - "c5": 3.8404030548290145, - "c6": 3.849189365474647, - "c7": 3.828727271788894 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044363, + "c3": 4.623208506703659, + "c4": 3.6985668053629084, + "c5": 2.7739251040222044, + "c6": 1.8492834026814542, + "c7": 0.9246417013407501 }, "rgb": [238, 201, 159] }, @@ -37455,23 +37455,23 @@ "year": 1701, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 26.419632752877042, - "c2": -5.982803481357617, - "c3": -0.583132784908905, - "c4": -25.353536987130397, - "c5": -13.17431775136966, - "c6": 0.6573010878177854, - "c7": 16.33666095762809 + "points": { + "c1": -21.326544925524033, + "c2": -30.88866568477471, + "c3": 32.06804529830413, + "c4": 37.501276278741145, + "c5": 13.804571388335816, + "c6": 16.189511254051922, + "c7": 0.397012196262331 }, - "vertexSeeds": { - "c1": 2.0269147942857226, - "c2": 1.9317464230632453, - "c3": 1.8736884144548456, - "c4": 2.025545471602907, - "c5": 1.7841738443366457, - "c6": 1.820191433517893, - "c7": 1.9053447928509293 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.9958391123439685, + "c3": 2.496532593619972, + "c4": 1.997226074895979, + "c5": 1.4979195561719827, + "c6": 0.9986130374479895, + "c7": 0.4993065187239963 }, "rgb": [238, 201, 159] }, @@ -37482,23 +37482,23 @@ "year": 1701, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -26.61197736080249, - "c2": -36.61883013377441, - "c3": 2.3207995044391225, - "c4": -17.888502113930464, - "c5": 32.29974262505487, - "c6": -31.80476101249506, - "c7": -12.96605853316774 + "points": { + "c1": 19.50466458811284, + "c2": -22.548350392501053, + "c3": 37.07970063941665, + "c4": -4.700334372582283, + "c5": 10.263153704836284, + "c6": 40.750836818223114, + "c7": 27.9212851392522 }, - "vertexSeeds": { - "c1": 1.7444098289014398, - "c2": 1.4181924871504419, - "c3": 1.6331451489722983, - "c4": 1.4934393820114669, - "c5": 1.6913486483446127, - "c6": 1.528003561152546, - "c7": 1.719022666676333 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.5242718446601944, + "c3": 2.1035598705501606, + "c4": 1.682847896440129, + "c5": 1.2621359223300972, + "c6": 0.8414239482200656, + "c7": 0.4207119741100317 }, "rgb": [222, 0, 59] }, @@ -37509,23 +37509,23 @@ "year": 1701, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 0.22373102710729853, - "c2": -6.616962509457245, - "c3": -13.809335172625037, - "c4": -2.308975031546481, - "c5": 8.92866419415012, - "c6": 9.803669076267735, - "c7": -14.585090514527723 + "points": { + "c1": 1.0227329451817653, + "c2": -24.816702497052624, + "c3": -6.970721526870133, + "c4": 14.150891211106813, + "c5": 20.352973028623577, + "c6": 7.774609417912995, + "c7": -26.503527937368833 }, - "vertexSeeds": { - "c1": 0.8117498520603931, - "c2": 0.8028693408954457, - "c3": 0.7886826806255142, - "c4": 0.9028831342500057, - "c5": 0.8752785334047342, - "c6": 0.7963492761604639, - "c7": 0.9024517667809372 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.3869625520110953, + "c3": 1.1558021266759135, + "c4": 0.9246417013407305, + "c5": 0.6934812760055477, + "c6": 0.4623208506703647, + "c7": 0.23116042533518294 }, "rgb": [77, 76, 132] }, @@ -37536,23 +37536,23 @@ "year": 1701, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 25.561872330067892, - "c2": -27.33047364908279, - "c3": 37.214829015803204, - "c4": -21.48508787159748, - "c5": -12.255691202807288, - "c6": -31.43806242419157, - "c7": 19.10195268408276 + "points": { + "c1": 36.84650623042954, + "c2": 17.856614479232675, + "c3": -9.15099782685671, + "c4": -15.374298631913856, + "c5": -21.854576411495405, + "c6": 22.94550783398966, + "c7": 17.108826741766592 }, - "vertexSeeds": { - "c1": 6.749043653656378, - "c2": 6.935268595169943, - "c3": 7.136912946514099, - "c4": 6.663595704171081, - "c5": 7.235041806588542, - "c6": 7.363405623581708, - "c7": 7.124685861815154 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732316, + "c3": 9.616273693943603, + "c4": 7.693018955154879, + "c5": 5.769764216366158, + "c6": 3.8465094775774444, + "c7": 1.9232547387887222 }, "rgb": [86, 146, 138] }, @@ -37563,23 +37563,23 @@ "year": 1701, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -11.618098304504862, - "c2": 34.2216720250871, - "c3": 28.229079771842535, - "c4": -15.031165418579192, - "c5": -10.274204867691665, - "c6": 31.424600227834688, - "c7": -26.592536749566197 + "points": { + "c1": 14.916240733065983, + "c2": -38.07363912193282, + "c3": 23.27320457938815, + "c4": 40.407217177076376, + "c5": 10.081502618710232, + "c6": -22.545302975889737, + "c7": -41.365403571165636 }, - "vertexSeeds": { - "c1": 1.5240229018475815, - "c2": 1.455085419152546, - "c3": 1.366182605518881, - "c4": 1.239701989313614, - "c5": 1.3542422386310022, - "c6": 1.5039506170747186, - "c7": 1.3259930389491907 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177526, + "c3": 1.8492834026814615, + "c4": 1.4794267221451682, + "c5": 1.1095700416088774, + "c6": 0.7397133610725841, + "c7": 0.3698566805362932 }, "rgb": [58, 15, 49] }, @@ -37590,23 +37590,23 @@ "year": 1701, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 31.02129497326394, - "c2": 17.18027069621745, - "c3": 9.712684381454928, - "c4": -14.559568571957676, - "c5": -10.0110880416414, - "c6": 34.281567238084186, - "c7": 36.38376266690825 + "points": { + "c1": 42.0088322674685, + "c2": -4.348747436019252, + "c3": 43.16176361591939, + "c4": -21.285387146832726, + "c5": -32.323395454286306, + "c6": -20.31214521701086, + "c7": -10.322598657023 }, - "vertexSeeds": { - "c1": 5.958719510605251, - "c2": 4.728216004004693, - "c3": 4.4181407354692475, - "c4": 6.280443887501954, - "c5": 5.955606223435494, - "c6": 6.391650850904412, - "c7": 5.329920205725543 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731391, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462773 }, "rgb": [238, 201, 159] }, @@ -37617,23 +37617,23 @@ "year": 1701, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -4.761421945878418, - "c2": -0.47484450118889043, - "c3": -12.60237384056201, - "c4": 30.996287859101265, - "c5": -36.08932508135189, - "c6": -8.577185281426836, - "c7": -31.021718959560673 + "points": { + "c1": -44.38158110399868, + "c2": -31.322007537590807, + "c3": -21.041350620258818, + "c4": 19.321201742920103, + "c5": -13.265039225680049, + "c6": 27.5778180062134, + "c7": 18.1243235544624 }, - "vertexSeeds": { - "c1": 4.858265511748286, - "c2": 4.485950644206821, - "c3": 4.944806887461659, - "c4": 4.627332320698527, - "c5": 5.27589442856841, - "c6": 4.848570530194964, - "c7": 4.268182153583038 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061029, + "c3": 6.35691169671752, + "c4": 5.0855293573740195, + "c5": 3.8141470180305146, + "c6": 2.5427646786870097, + "c7": 1.2713823393435049 }, "rgb": [86, 146, 138] }, @@ -37644,23 +37644,23 @@ "year": 1701, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 11.84377189188601, - "c2": 9.49426499084446, - "c3": -18.210048831517916, - "c4": -22.41050204065747, - "c5": 25.476707636681393, - "c6": -7.290703799078035, - "c7": 8.938194355175984 + "points": { + "c1": -7.7490986086402955, + "c2": 19.7510943972887, + "c3": -10.770160856119197, + "c4": -27.186205030644285, + "c5": -20.79071928694579, + "c6": -2.659645256444154, + "c7": -0.9065431391366907 }, - "vertexSeeds": { - "c1": 3.196131148723414, - "c2": 3.158749271358042, - "c3": 3.0462103203873157, - "c4": 3.5520869727405087, - "c5": 3.5573170809595647, - "c6": 3.229264947687402, - "c7": 3.181758841814696 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642166, + "c3": 4.392048081368469, + "c4": 3.513638465094777, + "c5": 2.6352288488210807, + "c6": 1.7568192325473886, + "c7": 0.8784096162736966 }, "rgb": [86, 146, 138] }, @@ -37671,23 +37671,23 @@ "year": 1701, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 4.093054135872528, - "c2": -17.32188436223868, - "c3": -28.18098596839587, - "c4": -3.8647063033818583, - "c5": 15.648654329079278, - "c6": -8.199829652560588, - "c7": 20.85423450820246 + "points": { + "c1": 23.468539577841774, + "c2": 11.799861798502484, + "c3": -6.318826685493299, + "c4": 24.63325449115191, + "c5": 33.77607872937482, + "c6": 5.613223746209705, + "c7": -10.280362547559921 }, - "vertexSeeds": { - "c1": 2.9079022206862235, - "c2": 2.8196219539788765, - "c3": 2.9233335722655163, - "c4": 2.814847831918531, - "c5": 2.8727583613982564, - "c6": 2.9737210223782764, - "c7": 2.8737511359948384 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.4382801664355105, + "c3": 3.6985668053629213, + "c4": 2.9588534442903405, + "c5": 2.219140083217751, + "c6": 1.4794267221451702, + "c7": 0.7397133610725894 }, "rgb": [77, 76, 132] }, @@ -37698,23 +37698,23 @@ "year": 1701, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 9.047997847050752, - "c2": -17.93685606941206, - "c3": -11.221791568225147, - "c4": -37.35452278019958, - "c5": 36.77777253212547, - "c6": 17.818592050315672, - "c7": 33.02084305027235 + "points": { + "c1": -12.154432957294013, + "c2": 28.148178769332716, + "c3": 24.49984547372452, + "c4": -6.23964113719196, + "c5": 6.628230519693027, + "c6": 36.94658430252548, + "c7": -20.088091118226796 }, - "vertexSeeds": { - "c1": 5.074818741022216, - "c2": 5.279776604731575, - "c3": 5.210161020428725, - "c4": 5.833568056022299, - "c5": 5.435344731658344, - "c6": 4.919346069655474, - "c7": 5.1905539223483705 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [58, 15, 49] }, @@ -37725,23 +37725,23 @@ "year": 1701, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 21.060385101123323, - "c2": 0.01371030319928579, - "c3": -19.939175707248012, - "c4": 18.26140738937338, - "c5": 15.984264414671387, - "c6": -22.014396967348535, - "c7": 13.290487865333361 + "points": { + "c1": 11.966478639640876, + "c2": 6.637661530481431, + "c3": 17.994271060020424, + "c4": -26.247284105806163, + "c5": 6.7324201250659215, + "c6": -17.079000944455295, + "c7": 17.10625616573764 }, - "vertexSeeds": { - "c1": 3.7940205409141363, - "c2": 3.857197321590372, - "c3": 4.0230206209012636, - "c4": 3.927085694359921, - "c5": 4.019102878724476, - "c6": 3.9715490822178205, - "c7": 3.855198383005484 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527043, + "c3": 4.900601017105866, + "c4": 3.9204808136846987, + "c5": 2.9403606102635216, + "c6": 1.9602404068423442, + "c7": 0.9801202034211773 }, "rgb": [77, 76, 132] }, @@ -37752,23 +37752,23 @@ "year": 1701, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 7.919351293437103, - "c2": -24.770282101568984, - "c3": 20.840675555949076, - "c4": -14.196875593764766, - "c5": 13.181186594300591, - "c6": 24.81760914921837, - "c7": 23.815760783026256 + "points": { + "c1": -11.574198602993466, + "c2": -21.291151290305788, + "c3": 37.72832433027711, + "c4": 7.039478575821789, + "c5": 34.87778514140761, + "c6": 21.375435437982603, + "c7": -19.330786654002953 }, - "vertexSeeds": { - "c1": 5.110772432558703, - "c2": 4.91381196569858, - "c3": 5.838929267907828, - "c4": 5.078724472835046, - "c5": 5.151962153015415, - "c6": 5.371926695507601, - "c7": 5.91250279764135 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.16597318539066, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.866389274156266, + "c7": 1.4331946370781283 }, "rgb": [77, 76, 132] }, @@ -37779,23 +37779,23 @@ "year": 1701, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -33.10571720922353, - "c2": 33.521658534504105, - "c3": -25.60770725457313, - "c4": -34.789784720323304, - "c5": 7.4225008475968295, - "c6": -5.374364146104988, - "c7": 39.647136956164594 + "points": { + "c1": 11.481664430317537, + "c2": 5.297198203240562, + "c3": -37.473878226833726, + "c4": -8.110991096360806, + "c5": 21.931381799567575, + "c6": 38.610606476345005, + "c7": 8.850497823702291 }, - "vertexSeeds": { - "c1": 4.1240967751511795, - "c2": 4.5583876861007315, - "c3": 4.070959347021986, - "c4": 3.850408046350295, - "c5": 4.389733354258265, - "c6": 3.908647690897383, - "c7": 3.7551393897609655 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -37806,23 +37806,23 @@ "year": 1701, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -3.2721762900289164, - "c2": -8.156770263366734, - "c3": -6.3827660334771394, - "c4": -15.835644545470881, - "c5": 12.54246711401803, - "c6": -3.9396701565673524, - "c7": -25.27517918697214 + "points": { + "c1": -25.6404204512433, + "c2": -11.114544360588472, + "c3": 29.64342860976965, + "c4": 0.11352306233269616, + "c5": -25.084147542799588, + "c6": -11.520459145996004, + "c7": 23.420904112639448 }, - "vertexSeeds": { - "c1": 1.2472707415506161, - "c2": 1.365420237830132, - "c3": 1.2414416939601054, - "c4": 1.234304123348043, - "c5": 1.2954448169584278, - "c6": 1.3434129096692895, - "c7": 1.297699303657814 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.052704576976423, + "c3": 1.710587147480351, + "c4": 1.368469717984282, + "c5": 1.02635228848821, + "c6": 0.684234858992141, + "c7": 0.34211742949607205 }, "rgb": [222, 0, 59] }, @@ -37833,23 +37833,23 @@ "year": 1701, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": -17.608833928236496, - "c2": 18.974487879094518, - "c3": 0.613190858112894, - "c4": 3.4448492542453764, - "c5": -22.28317241045687, - "c6": -41.50762994640086, - "c7": 23.284528907107706 + "points": { + "c1": 1.07617622703048, + "c2": 32.51217366799437, + "c3": 36.626343601298395, + "c4": -15.570176198026807, + "c5": 11.457144763143283, + "c6": -8.657036057494473, + "c7": 17.842740662131114 }, - "vertexSeeds": { - "c1": 0.11565952160369167, - "c2": 0.10807077055274658, - "c3": 0.10188227859344108, - "c4": 0.1047653914705739, - "c5": 0.11060615923115452, - "c6": 0.11411836274210668, - "c7": 0.11556219624702722 + "offsets": { + "c1": 0.22653721682847897, + "c2": 0.19417475728155334, + "c3": 0.1618122977346279, + "c4": 0.12944983818770228, + "c5": 0.09708737864077667, + "c6": 0.06472491909385104, + "c7": 0.03236245954692562 }, "rgb": [238, 201, 159] }, @@ -37860,23 +37860,23 @@ "year": 1701, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 29.597297264962236, - "c2": 19.006075966025925, - "c3": -21.276221740377, - "c4": 24.553089162843634, - "c5": -28.052047376091494, - "c6": -37.6984104980529, - "c7": -19.53077402394588 + "points": { + "c1": 27.257569221953872, + "c2": -20.151902837480336, + "c3": 29.770084778257413, + "c4": 35.801511597275436, + "c5": -42.966127604927635, + "c6": 17.35695231594537, + "c7": 35.00461749956828 }, - "vertexSeeds": { - "c1": 1.722010712336758, - "c2": 1.8057605849088356, - "c3": 1.6745540714046903, - "c4": 1.688992346821453, - "c5": 1.643968589023858, - "c6": 1.7051344054406683, - "c7": 1.7578981739891286 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808614, + "c3": 2.172907998150716, + "c4": 1.7383263985205744, + "c5": 1.3037447988904287, + "c6": 0.8691631992602872, + "c7": 0.4345815996301416 }, "rgb": [77, 76, 132] }, @@ -37887,23 +37887,23 @@ "year": 1701, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -0.7685267190025371, - "c2": -2.2831567456068385, - "c3": 16.909071065920998, - "c4": 2.831630944453046, - "c5": -25.91800732578877, - "c6": -1.5208259949498455, - "c7": -34.23300936393267 + "points": { + "c1": 16.441372062442305, + "c2": 4.87312740029455, + "c3": -29.49686227594636, + "c4": -2.4738120207353944, + "c5": -5.2663862299548185, + "c6": 17.67119057861668, + "c7": -11.321391464427883 }, - "vertexSeeds": { - "c1": 1.2113740362702323, - "c2": 1.2594624712355078, - "c3": 1.106972928328579, - "c4": 1.2226091672540964, - "c5": 1.3664002064983773, - "c6": 1.4002220420605518, - "c7": 1.272475723849896 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166435, + "c3": 1.73370319001387, + "c4": 1.3869625520110944, + "c5": 1.0402219140083209, + "c6": 0.6934812760055472, + "c7": 0.3467406380027736 }, "rgb": [58, 15, 49] }, @@ -37914,23 +37914,23 @@ "year": 1701, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -15.400138373836043, - "c2": -13.40017930252504, - "c3": 2.7214764014104595, - "c4": -17.462445260973162, - "c5": 15.033653477458362, - "c6": -8.300175795895186, - "c7": -28.94174051621044 + "points": { + "c1": -8.774998324600663, + "c2": 24.964106875918233, + "c3": 27.806288733057848, + "c4": 16.9093514553903, + "c5": -24.07357325856112, + "c6": -29.08786685313963, + "c7": 2.746777949641057 }, - "vertexSeeds": { - "c1": 1.7196607583777113, - "c2": 1.4773799616952952, - "c3": 1.4897648209312377, - "c4": 1.7812663383297895, - "c5": 1.7925675362020053, - "c6": 1.4994548305694821, - "c7": 1.4946473658154666 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.662968099861303, + "c3": 2.2191400832177517, + "c4": 1.7753120665742028, + "c5": 1.3314840499306515, + "c6": 0.8876560332871003, + "c7": 0.44382801664355126 }, "rgb": [238, 201, 159] }, @@ -37941,23 +37941,23 @@ "year": 1701, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -7.960053267891766, - "c2": 13.098784982093811, - "c3": -30.30980486008278, - "c4": -17.467129427709338, - "c5": -0.6618032898458672, - "c6": 22.20019278108348, - "c7": -28.244053790854707 + "points": { + "c1": 29.967853987520485, + "c2": -31.15054596345352, + "c3": -27.877143066661027, + "c4": -19.645054340567118, + "c5": 31.189220289396587, + "c6": 0.8573379050226748, + "c7": 32.854671039138594 }, - "vertexSeeds": { - "c1": 3.345054602636217, - "c2": 3.3293602564003875, - "c3": 3.7184808502837843, - "c4": 3.1761054620821216, - "c5": 3.5172240572500133, - "c6": 3.471447556281705, - "c7": 3.3428169378358445 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703654, + "c4": 3.698566805362922, + "c5": 2.7739251040221906, + "c6": 1.8492834026814589, + "c7": 0.9246417013407318 }, "rgb": [86, 146, 138] }, @@ -37968,23 +37968,23 @@ "year": 1701, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 28.78648024228749, - "c2": -9.874253389548738, - "c3": 18.259189520439328, - "c4": 17.13710815945594, - "c5": 2.8628593888315876, - "c6": 19.1103660114539, - "c7": 19.723468628972967 + "points": { + "c1": 13.106792012623806, + "c2": -21.20919222210964, + "c3": -27.475630620003272, + "c4": -27.637462763843835, + "c5": 30.40071514795582, + "c6": -5.841464136202934, + "c7": -0.013172727231030024 }, - "vertexSeeds": { - "c1": 3.5474609398201653, - "c2": 3.529341804603199, - "c3": 3.134212726667801, - "c4": 3.3638567212153068, - "c5": 3.6434290705446273, - "c6": 2.9849675774292375, - "c7": 3.340455154527949 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435503, + "c4": 3.5506241331484056, + "c5": 2.662968099861303, + "c6": 1.7753120665742006, + "c7": 0.8876560332871025 }, "rgb": [238, 201, 159] }, @@ -37995,23 +37995,23 @@ "year": 1701, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -29.34139466254808, - "c2": 20.333969649097142, - "c3": -12.777284779407765, - "c4": -27.400781530351107, - "c5": 29.60801188986232, - "c6": -23.20719397989356, - "c7": -11.361686862404458 + "points": { + "c1": 23.361986700227447, + "c2": 26.769927542878655, + "c3": -15.335689886458589, + "c4": 4.743704655474183, + "c5": 11.673710959016162, + "c6": -25.7688659990719, + "c7": 0.93389384866245 }, - "vertexSeeds": { - "c1": 2.0748764412853804, - "c2": 2.11734901299897, - "c3": 1.7639293316832154, - "c4": 1.747935340050543, - "c5": 1.8670516016903467, - "c6": 2.079817560923297, - "c7": 1.9721816755497814 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.5889967637540447, + "c4": 2.071197411003235, + "c5": 1.553398058252428, + "c6": 1.035598705501619, + "c7": 0.5177993527508095 }, "rgb": [222, 0, 59] }, @@ -38022,23 +38022,23 @@ "year": 1701, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -41.46664411620368, - "c2": -41.28065181349564, - "c3": -43.27917191465381, - "c4": -35.35211604046382, - "c5": -7.730027745255008, - "c6": -31.889464313810834, - "c7": 0.308626845718905 + "points": { + "c1": -17.193188169083193, + "c2": 20.50491193225519, + "c3": -43.38280584800721, + "c4": -3.2208919968400025, + "c5": -45.93759168246843, + "c6": 4.165289847240544, + "c7": 7.7675619345323526 }, - "vertexSeeds": { - "c1": 8.04799656752061, - "c2": 7.487612080762295, - "c3": 7.993936429552757, - "c4": 7.547836487897945, - "c5": 7.919768452747995, - "c6": 8.023378609097309, - "c7": 7.668870768825978 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893213, + "c3": 9.708737864077667, + "c4": 7.766990291262142, + "c5": 5.825242718446595, + "c6": 3.883495145631071, + "c7": 1.941747572815524 }, "rgb": [77, 76, 132] }, @@ -38049,23 +38049,23 @@ "year": 1701, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -5.485565324059937, - "c2": -8.34449460656949, - "c3": 29.579639313469674, - "c4": -3.7711168620814064, - "c5": 5.479490793128033, - "c6": 23.441549147725812, - "c7": 23.900992927136773 + "points": { + "c1": -10.817186504702509, + "c2": -21.06526657500919, + "c3": 19.50118639989688, + "c4": -28.713437872736858, + "c5": 25.798034221807605, + "c6": 5.4575840893076375, + "c7": -19.4229447537856 }, - "vertexSeeds": { - "c1": 3.3903862934953737, - "c2": 3.2374234929464856, - "c3": 2.9641054267058062, - "c4": 3.320588233329407, - "c5": 3.4174081546884163, - "c6": 3.2424125609344108, - "c7": 3.306361796917526 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119278, + "c3": 4.0915395284327305, + "c4": 3.273231622746183, + "c5": 2.454923717059636, + "c6": 1.6366158113730949, + "c7": 0.8183079056865413 }, "rgb": [238, 201, 159] }, @@ -38076,23 +38076,23 @@ "year": 1701, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -29.520708300740065, - "c2": 33.01125360528064, - "c3": 8.733049069523773, - "c4": -19.398954044069797, - "c5": -19.70251685745347, - "c6": -12.246587025095131, - "c7": 28.724333402353224 + "points": { + "c1": 25.45092989635546, + "c2": 9.937986550411253, + "c3": 34.35132783451728, + "c4": -19.2051020145242, + "c5": -11.593540798766732, + "c6": 10.879745087822158, + "c7": 6.7036254084351725 }, - "vertexSeeds": { - "c1": 1.2505338004839393, - "c2": 1.147054192677967, - "c3": 1.2369350781065462, - "c4": 1.2985435909715217, - "c5": 1.2386195911632327, - "c6": 1.2384055195567742, - "c7": 1.2799267544845527 + "offsets": { + "c1": 2.2977346278317152, + "c2": 1.969486823855757, + "c3": 1.641239019879796, + "c4": 1.3129912159038375, + "c5": 0.9847434119278792, + "c6": 0.656495607951918, + "c7": 0.32824780397595976 }, "rgb": [86, 146, 138] }, @@ -38103,23 +38103,23 @@ "year": 1701, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -8.630640733599044, - "c2": -18.559151413120322, - "c3": -12.979083164210191, - "c4": -2.5409160113065035, - "c5": 10.132600874606354, - "c6": -13.476912587124662, - "c7": 16.99401816635566 + "points": { + "c1": -8.870456367921598, + "c2": -19.33114799654588, + "c3": -32.91654733757164, + "c4": -26.68191588805875, + "c5": -16.67915270728179, + "c6": 31.408244666732287, + "c7": 28.919620999695965 }, - "vertexSeeds": { - "c1": 4.508236310480726, - "c2": 5.132208460093769, - "c3": 4.670964592610848, - "c4": 4.4384266963564825, - "c5": 4.720552255684444, - "c6": 4.608048677365892, - "c7": 4.758468384751263 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940363, + "c3": 6.28756356911697, + "c4": 5.030050855293573, + "c5": 3.7725381414701813, + "c6": 2.515025427646784, + "c7": 1.257512713823392 }, "rgb": [58, 15, 49] }, @@ -38130,23 +38130,23 @@ "year": 1701, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 1.987659106051467, - "c2": -4.622865216484502, - "c3": -34.43717003697642, - "c4": 22.67283776105947, - "c5": -12.409806117173762, - "c6": -17.63257522749538, - "c7": -12.184828763167854 + "points": { + "c1": -23.966151441150576, + "c2": 25.438073514808572, + "c3": 33.6032625032573, + "c4": 18.40884335758524, + "c5": 10.14936650016562, + "c6": -11.623982675838366, + "c7": 23.090769509452414 }, - "vertexSeeds": { - "c1": 4.008559418404457, - "c2": 3.9600773369965094, - "c3": 4.314153209183642, - "c4": 4.447415678740114, - "c5": 4.373766694845879, - "c6": 4.0918949226743795, - "c7": 4.148710385457216 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -38157,23 +38157,23 @@ "year": 1701, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 10.284094562302101, - "c2": -22.298871468718268, - "c3": -24.494399038719774, - "c4": -40.73272538740749, - "c5": 34.39727062315757, - "c6": 8.350623213670112, - "c7": 7.165377521713957 + "points": { + "c1": -18.1527414732685, + "c2": 8.086295415643647, + "c3": -29.839444104532163, + "c4": 37.66992318331853, + "c5": 43.44976551091926, + "c6": -8.809970200960393, + "c7": -28.127955397693082 }, - "vertexSeeds": { - "c1": 5.544751648473857, - "c2": 5.06564286449324, - "c3": 4.782411109404678, - "c4": 5.334450625767471, - "c5": 5.724497399410882, - "c6": 5.242029227377069, - "c7": 5.034688669535599 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055474, + "c4": 5.547850208044381, + "c5": 4.160887656033288, + "c6": 2.7739251040221955, + "c7": 1.386962552011093 }, "rgb": [58, 15, 49] }, @@ -38184,23 +38184,23 @@ "year": 1701, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -34.79267671432061, - "c2": 34.79617457724086, - "c3": 24.762541081812593, - "c4": 30.81844704832568, - "c5": 10.839886688759606, - "c6": -7.802785146853097, - "c7": 1.5727967432885137 + "points": { + "c1": 36.78274018967561, + "c2": -23.478640342310914, + "c3": 25.385576570415395, + "c4": -7.35097235763827, + "c5": 2.38041701371678, + "c6": 39.357633506000155, + "c7": 21.70139655421083 }, - "vertexSeeds": { - "c1": 1.968318815237855, - "c2": 1.8791148820585366, - "c3": 1.6942857061787344, - "c4": 1.8424891299552812, - "c5": 1.8294914474762212, - "c6": 2.0873695471161593, - "c7": 1.9218935611947576 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841886, + "c3": 2.519648636153491, + "c4": 2.015718908922793, + "c5": 1.511789181692093, + "c6": 1.0078594544613955, + "c7": 0.5039297272306977 }, "rgb": [86, 146, 138] }, @@ -38211,23 +38211,23 @@ "year": 1701, "resistanceReported": true, "duration": 33868800, - "curveSeeds": { - "c1": -18.77312093248318, - "c2": -45.477100630169836, - "c3": -7.956996536928848, - "c4": 23.592227836998518, - "c5": -25.257089535161228, - "c6": -44.669715495517394, - "c7": 21.141578744598803 + "points": { + "c1": 41.91433799677179, + "c2": 17.76002775444367, + "c3": 1.8193652037017358, + "c4": 9.880332835178045, + "c5": 22.886703231288593, + "c6": 42.381523340459054, + "c7": -22.12036112087195 }, - "vertexSeeds": { - "c1": 0.9208893890243498, - "c2": 1.0630882837359255, - "c3": 1.0954682822830346, - "c4": 0.9449927956871613, - "c5": 1.020448006742169, - "c6": 1.0731181709635174, - "c7": 1.0466352743237364 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.6366158113730935, + "c3": 1.3638465094775771, + "c4": 1.0910772075820623, + "c5": 0.8183079056865472, + "c6": 0.5455386037910311, + "c7": 0.2727693018955161 }, "rgb": [58, 15, 49] }, @@ -38238,23 +38238,23 @@ "year": 1701, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 16.94148701298851, - "c2": -9.186975575961778, - "c3": -28.588153224541024, - "c4": 28.645727941132847, - "c5": -34.54754141158376, - "c6": -2.9863619809468673, - "c7": 6.715491667987784 + "points": { + "c1": 1.026906463386787, + "c2": 1.187849123664023, + "c3": -5.381498057925391, + "c4": -10.677744641136943, + "c5": -15.376511123639968, + "c6": 18.126050439825207, + "c7": -36.59296966799129 }, - "vertexSeeds": { - "c1": 11.078906013664024, - "c2": 12.268254765485826, - "c3": 11.1128695285983, - "c4": 11.675443380820765, - "c5": 12.092132890311671, - "c6": 10.356749179417273, - "c7": 12.494835412965623 + "offsets": { + "c1": 21.197411003236247, + "c2": 18.16920943134536, + "c3": 15.14100785945446, + "c4": 12.112806287563574, + "c5": 9.084604715672674, + "c6": 6.056403143781787, + "c7": 3.028201571890886 }, "rgb": [222, 0, 59] }, @@ -38265,23 +38265,23 @@ "year": 1701, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 28.985301388136207, - "c2": -10.514673196913826, - "c3": -9.712014173502581, - "c4": -0.6303116750673468, - "c5": -36.31956329608972, - "c6": 9.66619131888384, - "c7": -34.13727007298183 + "points": { + "c1": -3.5449130463323897, + "c2": 5.485566792587726, + "c3": -24.181466476701797, + "c4": -22.28222077277963, + "c5": -22.641287150454993, + "c6": -1.2997055688116461, + "c7": 32.426812575954315 }, - "vertexSeeds": { - "c1": 2.560106746359173, - "c2": 2.577723123857055, - "c3": 3.04031212574383, - "c4": 3.117855514672793, - "c5": 2.6248738974921006, - "c6": 2.623720365348851, - "c7": 2.6717090806312216 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299603, + "c4": 2.995839112343967, + "c5": 2.2468793342579745, + "c6": 1.4979195561719814, + "c7": 0.748959778085993 }, "rgb": [222, 0, 59] }, @@ -38292,23 +38292,23 @@ "year": 1701, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 9.017049218351644, - "c2": -16.63767882019889, - "c3": -18.3050472385522, - "c4": -10.579447439593391, - "c5": -8.042180589092201, - "c6": 19.003434220651123, - "c7": 7.387411436640001 + "points": { + "c1": 23.46126092177233, + "c2": -1.7636584443530197, + "c3": -17.675386615624994, + "c4": -31.619957965191563, + "c5": 19.72788755234444, + "c6": -6.018026269893046, + "c7": -23.34744457327771 }, - "vertexSeeds": { - "c1": 3.166333081923507, - "c2": 2.8039247913232277, - "c3": 2.969908237541283, - "c4": 2.902168395292444, - "c5": 3.1074090770354013, - "c6": 2.924791521724942, - "c7": 2.664419086208496 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797505, + "c3": 3.9066111881645877, + "c4": 3.1252889505316714, + "c5": 2.3439667128987547, + "c6": 1.5626444752658333, + "c7": 0.7813222376329212 }, "rgb": [222, 0, 59] }, @@ -38319,23 +38319,23 @@ "year": 1701, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 12.9931873145824, - "c2": -11.984507677593541, - "c3": 24.407706523455033, - "c4": -4.125438335048475, - "c5": -15.251018907410609, - "c6": -23.404073783387815, - "c7": -19.86374437917543 + "points": { + "c1": -26.93341657935532, + "c2": -15.628002342753572, + "c3": -21.944425048508926, + "c4": 18.9315122780335, + "c5": 6.981789445261477, + "c6": 10.061800497678107, + "c7": -22.134022777299624 }, - "vertexSeeds": { - "c1": 1.8889358062118837, - "c2": 1.6571159427280502, - "c3": 1.9195674397953908, - "c4": 1.8988284048702635, - "c5": 1.5734980287858613, - "c6": 1.6490765962304066, - "c7": 1.5931797639106977 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.311604253351827, + "c4": 1.849283402681461, + "c5": 1.3869625520110953, + "c6": 0.9246417013407294, + "c7": 0.4623208506703659 }, "rgb": [58, 15, 49] }, @@ -38346,23 +38346,23 @@ "year": 1701, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 23.523292224823102, - "c2": 36.18386980216794, - "c3": -9.142396599490041, - "c4": 3.5998102523449376, - "c5": -0.688577130482507, - "c6": 37.60045707542785, - "c7": -24.169466800503773 + "points": { + "c1": 1.4140370078193527, + "c2": 8.030367600619122, + "c3": -37.741131863841765, + "c4": -43.468952409302176, + "c5": 23.221884129563115, + "c6": 23.938853802898926, + "c7": 16.786785267039512 }, - "vertexSeeds": { - "c1": 8.46763575286908, - "c2": 8.213098151838986, - "c3": 8.884131518161912, - "c4": 8.885041361281148, - "c5": 7.390354079681859, - "c6": 8.72412657532157, - "c7": 8.93877308045805 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.95423023578363, + "c3": 10.79519186315303, + "c4": 8.636153490522421, + "c5": 6.47711511789182, + "c6": 4.3180767452612105, + "c7": 2.1590383726306004 }, "rgb": [222, 0, 59] }, @@ -38373,23 +38373,23 @@ "year": 1701, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 19.635670973858616, - "c2": 17.38309290478589, - "c3": -24.0362770659547, - "c4": -11.592997646966968, - "c5": -5.952520746717948, - "c6": -11.381787286322574, - "c7": -26.8434483865675 + "points": { + "c1": -1.633164564437756, + "c2": 22.243555706863432, + "c3": -8.78204602548388, + "c4": -21.663391225583123, + "c5": -3.421112181831532, + "c6": 28.782797129991465, + "c7": 0.4265739230905865 }, - "vertexSeeds": { - "c1": 8.402247845698367, - "c2": 9.631243378718795, - "c3": 9.452801512576327, - "c4": 9.058961862634447, - "c5": 8.563064784630324, - "c6": 9.063903840133289, - "c7": 8.877459884836835 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070736, + "c3": 11.534905224225614, + "c4": 9.227924179380494, + "c5": 6.9209431345353725, + "c6": 4.6139620896902525, + "c7": 2.3069810448451307 }, "rgb": [86, 146, 138] }, @@ -38400,23 +38400,23 @@ "year": 1701, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 35.6420800035547, - "c2": 14.13096696425886, - "c3": 15.590049785125466, - "c4": -31.649225075451323, - "c5": 7.707167301554804, - "c6": 24.59994127575309, - "c7": 30.22638537387345 + "points": { + "c1": -31.83707270615455, + "c2": -10.314242354795017, + "c3": -14.633210086782206, + "c4": 24.842918780451754, + "c5": 1.125197781902358, + "c6": 34.36284333522615, + "c7": 4.518148720041204 }, - "vertexSeeds": { - "c1": 3.3318825534138954, - "c2": 3.101851747446673, - "c3": 3.2834700439653752, - "c4": 3.3814783765413727, - "c5": 3.1028349272301488, - "c6": 3.110237711439626, - "c7": 3.3296422415660003 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [58, 15, 49] }, @@ -38427,23 +38427,23 @@ "year": 1701, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 11.298761661686079, - "c2": 29.99289212056715, - "c3": -6.210907411968535, - "c4": -15.161514790622707, - "c5": 3.7526872644687117, - "c6": 19.056842813715534, - "c7": 1.646832818349246 + "points": { + "c1": 30.40265955706124, + "c2": -17.168134291430412, + "c3": -31.946124545168338, + "c4": 35.830113025669675, + "c5": -36.21724399581127, + "c6": 34.054815722695565, + "c7": -1.4108053299133232 }, - "vertexSeeds": { - "c1": 5.359304669129195, - "c2": 5.3625864880450385, - "c3": 6.322881719608097, - "c4": 5.938355562402275, - "c5": 5.34265258404797, - "c6": 5.7372861754613895, - "c7": 5.810510786267995 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152567, + "c3": 7.5589459084604735, + "c4": 6.047156726768372, + "c5": 4.535367545076279, + "c6": 3.023578363384186, + "c7": 1.511789181692093 }, "rgb": [86, 146, 138] }, @@ -38454,23 +38454,23 @@ "year": 1701, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 15.86253031264716, - "c2": -12.636110423338781, - "c3": 13.340828964298545, - "c4": -10.944818352822992, - "c5": 26.19693076729323, - "c6": -13.68459218673554, - "c7": -27.101163585655325 + "points": { + "c1": -13.069588846295321, + "c2": 33.227436039937906, + "c3": 3.795328607878943, + "c4": 35.56636239442823, + "c5": -3.350196844773798, + "c6": -33.557379365026, + "c7": -10.924846411180553 }, - "vertexSeeds": { - "c1": 4.62040744974876, - "c2": 4.156536043983245, - "c3": 4.574704556301711, - "c4": 4.031953251191076, - "c5": 4.726471672830275, - "c6": 4.391999112399967, - "c7": 4.435248875392336 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.07350901525659, + "c3": 5.894590846047156, + "c4": 4.715672676837726, + "c5": 3.536754507628295, + "c6": 2.3578363384188603, + "c7": 1.1789181692094302 }, "rgb": [77, 76, 132] }, @@ -38481,23 +38481,23 @@ "year": 1701, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -25.151695856511182, - "c2": -32.702720829665914, - "c3": 6.229404109324285, - "c4": -11.238963847355464, - "c5": -27.119682577914375, - "c6": 9.514860807076325, - "c7": 19.210163610672822 + "points": { + "c1": -12.888997577148924, + "c2": 37.10295898746564, + "c3": 2.1954693529511857, + "c4": 37.747273151878005, + "c5": -1.662301792690485, + "c6": -33.55891445780117, + "c7": 33.575805264452455 }, - "vertexSeeds": { - "c1": 5.181205497592656, - "c2": 5.180904728150548, - "c3": 4.525850234359791, - "c4": 4.690144277356535, - "c5": 4.7813007623484, - "c6": 4.817156667459967, - "c7": 4.526830529507993 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141471, + "c3": 6.403143781784562, + "c4": 5.122515025427647, + "c5": 3.8418862690707356, + "c6": 2.5612575127138206, + "c7": 1.2806287563569103 }, "rgb": [238, 201, 159] }, @@ -38508,23 +38508,23 @@ "year": 1701, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -25.292353523285325, - "c2": 38.5458290082387, - "c3": 8.784370174088409, - "c4": 31.250335312803216, - "c5": 3.616867030105844, - "c6": 24.26597258846307, - "c7": -14.994187135021154 + "points": { + "c1": 33.04665737070613, + "c2": 19.39647776094499, + "c3": -34.67069511353688, + "c4": -25.140123868126697, + "c5": 13.29061623903214, + "c6": 11.832661453823661, + "c7": 13.821676399569654 }, - "vertexSeeds": { - "c1": 1.02592993421094, - "c2": 0.9801973385296796, - "c3": 0.9777928678593887, - "c4": 1.0077547872393537, - "c5": 0.9383104330431126, - "c6": 0.8919002753211002, - "c7": 0.9467111682027859 + "offsets": { + "c1": 1.8446601941747571, + "c2": 1.5811373092926495, + "c3": 1.3176144244105406, + "c4": 1.054091539528433, + "c5": 0.7905686546463241, + "c6": 0.5270457697642165, + "c7": 0.26352288488210884 }, "rgb": [58, 15, 49] }, @@ -38535,23 +38535,23 @@ "year": 1701, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -25.234423391603766, - "c2": -5.85958297106194, - "c3": -29.178671456314916, - "c4": 15.06963267856272, - "c5": 14.845013972819139, - "c6": -34.140315870371865, - "c7": 20.087917238407215 + "points": { + "c1": -40.82652121615574, + "c2": 20.97144674543486, + "c3": 34.19058383691686, + "c4": 23.08214184433473, + "c5": 27.104948770654786, + "c6": 23.94639009715692, + "c7": -34.4150295584766 }, - "vertexSeeds": { - "c1": 5.084624413536222, - "c2": 6.327166731177623, - "c3": 6.055879221885637, - "c4": 6.2133724003075335, - "c5": 5.687574351096835, - "c6": 5.253260899158346, - "c7": 5.755089350321297 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152567, + "c3": 7.5589459084604735, + "c4": 6.047156726768372, + "c5": 4.535367545076279, + "c6": 3.023578363384186, + "c7": 1.511789181692093 }, "rgb": [86, 146, 138] }, @@ -38562,23 +38562,23 @@ "year": 1701, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 6.290862034529113, - "c2": 7.924158170423098, - "c3": -10.181919007823339, - "c4": 24.65645648326801, - "c5": -9.974491141319575, - "c6": -28.259130849246766, - "c7": -25.117159659489204 + "points": { + "c1": -1.5596932991456, + "c2": -8.21699208405883, + "c3": 6.623911311959127, + "c4": -30.808218839131378, + "c5": 10.000689091342672, + "c6": 6.1052042100388135, + "c7": 11.853499769098818 }, - "vertexSeeds": { - "c1": 1.416522647247789, - "c2": 1.663231302690348, - "c3": 1.7013015691326474, - "c4": 1.4700510591982052, - "c5": 1.6469678789035183, - "c6": 1.4431206026029206, - "c7": 1.6107118077182343 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.5242718446601944, + "c3": 2.1035598705501606, + "c4": 1.682847896440129, + "c5": 1.2621359223300972, + "c6": 0.8414239482200656, + "c7": 0.4207119741100317 }, "rgb": [86, 146, 138] }, @@ -38589,23 +38589,23 @@ "year": 1701, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 15.66910152445297, - "c2": 30.944409107274687, - "c3": 8.362278868451313, - "c4": 13.738587923796054, - "c5": 11.80715914710963, - "c6": -21.970964351455027, - "c7": 16.37585678753979 + "points": { + "c1": 5.925106196939581, + "c2": -32.57968647915741, + "c3": 29.22606128644174, + "c4": 24.589644224660738, + "c5": 28.476196747688086, + "c6": 0.25975431174958885, + "c7": 25.82587863942988 }, - "vertexSeeds": { - "c1": 0.7979610769752402, - "c2": 0.8188434825911143, - "c3": 0.8331907940969318, - "c4": 0.9025236147549275, - "c5": 0.8976172951280237, - "c6": 0.9196243208214933, - "c7": 0.823785689923925 + "offsets": { + "c1": 1.5857605177993526, + "c2": 1.359223300970873, + "c3": 1.1326860841423945, + "c4": 0.9061488673139161, + "c5": 0.6796116504854365, + "c6": 0.4530744336569569, + "c7": 0.22653721682847844 }, "rgb": [238, 201, 159] }, @@ -38616,23 +38616,23 @@ "year": 1701, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 9.38752881198586, - "c2": 9.714318179707412, - "c3": -10.560864988251765, - "c4": 9.278018954157233, - "c5": -22.93355401374998, - "c6": -4.457058045456339, - "c7": -14.840915683455536 + "points": { + "c1": 12.005641968656768, + "c2": -19.34647214537683, + "c3": 11.029433932585157, + "c4": -6.235146510543409, + "c5": 6.46509904893864, + "c6": -22.277126271073776, + "c7": -30.252341939944206 }, - "vertexSeeds": { - "c1": 2.456431783374685, - "c2": 2.373409534909543, - "c3": 2.4421700674995677, - "c4": 2.4263474947384807, - "c5": 2.0608085778050524, - "c6": 2.455958524528929, - "c7": 2.1462885405238916 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269072, + "c3": 3.0282015718908917, + "c4": 2.422561257512714, + "c5": 1.816920943134536, + "c6": 1.2112806287563582, + "c7": 0.6056403143781779 }, "rgb": [77, 76, 132] }, @@ -38643,23 +38643,23 @@ "year": 1701, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -3.185522590720872, - "c2": -24.51805535543656, - "c3": 17.819905593030285, - "c4": -12.378792796600852, - "c5": 4.910070863932212, - "c6": 32.752287589513244, - "c7": -24.093762234855138 + "points": { + "c1": -29.823874117148794, + "c2": 24.840158515803772, + "c3": -8.6048502062756, + "c4": -12.523200289680219, + "c5": -3.487828421768562, + "c6": 13.344513815210199, + "c7": -33.24650161960373 }, - "vertexSeeds": { - "c1": 1.4609746547244458, - "c2": 1.5089461194818548, - "c3": 1.508819111690179, - "c4": 1.3606838180263687, - "c5": 1.3154303149164677, - "c6": 1.2489496610448034, - "c7": 1.2773600736928266 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.191400832177532, + "c3": 1.8261673601479422, + "c4": 1.4609338881183545, + "c5": 1.0957004160887642, + "c6": 0.7304669440591767, + "c7": 0.3652334720295889 }, "rgb": [58, 15, 49] }, @@ -38670,23 +38670,23 @@ "year": 1701, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -6.280754185702033, - "c2": -2.962967987697194, - "c3": -23.05493325545789, - "c4": -18.381227906491176, - "c5": 14.398915481711203, - "c6": 15.384632066121501, - "c7": -4.768057905770494 + "points": { + "c1": -20.87200314221746, + "c2": -14.852116547371153, + "c3": -10.268752138211969, + "c4": 10.16684233607722, + "c5": 11.486829880187226, + "c6": 8.203947120805946, + "c7": 7.090820519137427 }, - "vertexSeeds": { - "c1": 1.7014833035849024, - "c2": 1.8274931436200834, - "c3": 1.7224785445647364, - "c4": 1.7680563760508716, - "c5": 1.7368689325372426, - "c6": 1.71986385640898, - "c7": 1.8002227881158457 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.718446601941749, + "c3": 2.265372168284789, + "c4": 1.8122977346278328, + "c5": 1.3592233009708725, + "c6": 0.9061488673139164, + "c7": 0.4530744336569561 }, "rgb": [86, 146, 138] }, @@ -38697,23 +38697,23 @@ "year": 1701, "resistanceReported": false, "duration": 1468800, - "curveSeeds": { - "c1": 0.7230826217211899, - "c2": 8.657066418565542, - "c3": 0.6129914964043177, - "c4": 10.862699417410319, - "c5": 0.9793624903131732, - "c6": -5.336836542538291, - "c7": -6.802894840965218 + "points": { + "c1": 1.563871796799452, + "c2": -13.022942250909882, + "c3": 10.426888570575745, + "c4": 1.91261823575336, + "c5": 11.126060522227757, + "c6": 1.5396960488294038, + "c7": -8.954086475308454 }, - "vertexSeeds": { - "c1": 2.357510537604195, - "c2": 2.3983294515362843, - "c3": 2.309297124782889, - "c4": 2.279844763534205, - "c5": 2.277572821765659, - "c6": 2.373542681277789, - "c7": 2.428622185409639 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.522884882108182, + "c3": 2.935737401756817, + "c4": 2.3485899214054524, + "c5": 1.7614424410540879, + "c6": 1.1742949607027293, + "c7": 0.5871474803513587 }, "rgb": [86, 146, 138] }, @@ -38724,23 +38724,23 @@ "year": 1701, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -15.11352038478552, - "c2": -23.85445297495601, - "c3": 10.025116265589993, - "c4": 24.670195604094637, - "c5": 19.26253722277435, - "c6": -25.87780746888484, - "c7": 3.7470711800495735 + "points": { + "c1": 23.81794903384776, + "c2": -10.450696580335137, + "c3": 33.536807793711496, + "c4": 10.349152545969432, + "c5": 8.704830581026286, + "c6": -38.220614370574395, + "c7": 9.099995123551267 }, - "vertexSeeds": { - "c1": 9.503988966764554, - "c2": 9.607958294676637, - "c3": 9.137032092700366, - "c4": 9.48198430337869, - "c5": 9.54677883906823, - "c6": 9.304984432343115, - "c7": 9.579559653693575 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.75866851595007, + "c3": 11.465557096625059, + "c4": 9.172445677300047, + "c5": 6.879334257975035, + "c6": 4.5862228386500234, + "c7": 2.2931114193250117 }, "rgb": [86, 146, 138] }, @@ -38751,23 +38751,23 @@ "year": 1701, "resistanceReported": false, "duration": 1382400, - "curveSeeds": { - "c1": -8.758130580655372, - "c2": 4.79085910700536, - "c3": -0.7241889735049067, - "c4": -10.343919114404791, - "c5": 6.403184090996199, - "c6": 3.530857479443098, - "c7": -6.41282737360539 + "points": { + "c1": -3.155168999599356, + "c2": 7.73175843034468, + "c3": 11.679482846215617, + "c4": 3.073744262592168, + "c5": -9.01422155240976, + "c6": 9.674339989433491, + "c7": -0.471918832546919 }, - "vertexSeeds": { - "c1": 9.42268314214945, - "c2": 8.961725867868054, - "c3": 9.537202783256054, - "c4": 9.204102741612868, - "c5": 9.32927371121679, - "c6": 9.128900391796684, - "c7": 9.483306625335326 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110949, + "c3": 11.558021266759132, + "c4": 9.2464170134073, + "c5": 6.934812760055482, + "c6": 4.62320850670365, + "c7": 2.3116042533518315 }, "rgb": [58, 15, 49] }, @@ -38778,23 +38778,23 @@ "year": 1701, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -20.485202689866803, - "c2": 11.229919695763918, - "c3": 21.05236029342378, - "c4": 1.2134281360573773, - "c5": -15.189349074651636, - "c6": 2.998589839900891, - "c7": -13.375579074126504 + "points": { + "c1": -15.329518744799397, + "c2": 13.399498798842643, + "c3": 26.503919038717058, + "c4": -17.789141839333674, + "c5": -23.4870183401621, + "c6": -10.074302650530022, + "c7": 27.319675778195958 }, - "vertexSeeds": { - "c1": 6.546885354252475, - "c2": 6.59375196462149, - "c3": 7.487890214140001, - "c4": 7.147220211574477, - "c5": 6.292889410594924, - "c6": 6.963002494161025, - "c7": 7.410138715758068 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887658, + "c3": 9.130836800739717, + "c4": 7.304669440591766, + "c5": 5.478502080443825, + "c6": 3.652334720295883, + "c7": 1.8261673601479416 }, "rgb": [58, 15, 49] }, @@ -38805,23 +38805,23 @@ "year": 1701, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -32.99027249195541, - "c2": -12.470843696910404, - "c3": -29.767725636249963, - "c4": -10.955020073073701, - "c5": 23.909948178976478, - "c6": 11.527737655019173, - "c7": 27.215321374968056 + "points": { + "c1": 35.41814933451654, + "c2": 23.421513499130974, + "c3": 28.924866329414655, + "c4": 2.2158660359764113, + "c5": 6.090588177970687, + "c6": 25.665868553731244, + "c7": 3.3032226512828586 }, - "vertexSeeds": { - "c1": 1.7271133187098273, - "c2": 1.5845388460712668, - "c3": 1.570062820425594, - "c4": 1.7172612942210128, - "c5": 1.54708057996879, - "c6": 1.547600000066212, - "c7": 1.5398555074939335 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [58, 15, 49] }, @@ -38832,23 +38832,23 @@ "year": 1702, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 5.092084723003509, - "c2": 44.058561416521705, - "c3": 15.46820639174841, - "c4": 19.505004311809977, - "c5": 15.362539655580818, - "c6": 20.654680325545492, - "c7": -32.757700318087515 + "points": { + "c1": -2.0456278231704843, + "c2": 25.43986719975843, + "c3": -20.55447545454812, + "c4": 10.147280805753958, + "c5": 45.68791395183295, + "c6": -0.8641111706985569, + "c7": 4.204235719496602 }, - "vertexSeeds": { - "c1": 7.184833735898634, - "c2": 7.14438289571432, - "c3": 7.2291287416314844, - "c4": 7.32846448086737, - "c5": 7.426928099208873, - "c6": 6.743095573101343, - "c7": 6.910926212152068 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471568, + "c4": 7.156726768377254, + "c5": 5.367545076282941, + "c6": 3.578363384188627, + "c7": 1.7891816920943135 }, "rgb": [58, 15, 49] }, @@ -38859,23 +38859,23 @@ "year": 1701, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 28.8000188595769, - "c2": 34.42827748947442, - "c3": -2.596566856241509, - "c4": -1.0469222644733165, - "c5": -7.775546831634834, - "c6": -29.404921733216597, - "c7": -15.938739823526724 + "points": { + "c1": -5.542404585535209, + "c2": 10.45757474580892, + "c3": 42.5320336332418, + "c4": 23.777970510112333, + "c5": 14.797992459265537, + "c6": 40.48385848862697, + "c7": 18.201757924827447 }, - "vertexSeeds": { - "c1": 0.9395514370339866, - "c2": 0.9918499818238906, - "c3": 0.8936084178071727, - "c4": 1.0735275099258097, - "c5": 0.9139830219238623, - "c6": 0.9904603425877916, - "c7": 1.0391372152972678 + "offsets": { + "c1": 1.8446601941747571, + "c2": 1.5811373092926495, + "c3": 1.3176144244105406, + "c4": 1.054091539528433, + "c5": 0.7905686546463241, + "c6": 0.5270457697642165, + "c7": 0.26352288488210884 }, "rgb": [238, 201, 159] }, @@ -38886,23 +38886,23 @@ "year": 1701, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -24.83594308780495, - "c2": -24.154551517025098, - "c3": -16.55814273541082, - "c4": -3.552142588243129, - "c5": 2.0804771585808446, - "c6": -7.1983537515654135, - "c7": -27.440715426729057 + "points": { + "c1": -27.894612475358365, + "c2": 2.4657552544750274, + "c3": 3.3502517464695316, + "c4": 2.9230422789119572, + "c5": 2.962006869525055, + "c6": -13.490402922422653, + "c7": -22.912861691359986 }, - "vertexSeeds": { - "c1": 4.555705628611222, - "c2": 4.142608291949255, - "c3": 4.393064155703376, - "c4": 3.9082586476349284, - "c5": 4.322453119114703, - "c6": 3.9269120277830676, - "c7": 4.276333583856898 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -38913,23 +38913,23 @@ "year": 1701, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 6.523948309500948, - "c2": -6.251074005099898, - "c3": -5.322839207803277, - "c4": 1.2069143239357736, - "c5": 1.2840634943303932, - "c6": 4.259918498634239, - "c7": 28.68522268246085 + "points": { + "c1": -27.48306330929873, + "c2": -16.416877503204585, + "c3": -30.43654609187029, + "c4": 16.21970043042564, + "c5": -5.0527000596247476, + "c6": 5.831090404086595, + "c7": -23.46205453281837 }, - "vertexSeeds": { - "c1": 8.887236413791666, - "c2": 8.153418860849058, - "c3": 9.091559853057639, - "c4": 8.316221415120264, - "c5": 8.043315925032156, - "c6": 9.61492172460491, - "c7": 8.259793055802612 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.558021266759132, + "c4": 9.246417013407298, + "c5": 6.934812760055474, + "c6": 4.623208506703649, + "c7": 2.3116042533518244 }, "rgb": [86, 146, 138] }, @@ -38940,23 +38940,23 @@ "year": 1702, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 47.83272915761189, - "c2": -2.597940156311104, - "c3": 48.23723109728072, - "c4": 30.06551337470784, - "c5": 18.237514248977398, - "c6": -14.781567329005476, - "c7": 43.0230496375658 + "points": { + "c1": -46.16046133822377, + "c2": 33.936130743542044, + "c3": 56.83358717815384, + "c4": 21.838280355578796, + "c5": -0.10831772107108151, + "c6": 13.409330360277714, + "c7": -16.13673728850233 }, - "vertexSeeds": { - "c1": 6.779625766209519, - "c2": 6.363806983152844, - "c3": 6.931271328902015, - "c4": 6.481524702514076, - "c5": 6.9050237051527725, - "c6": 6.43181576701048, - "c7": 6.027667934207933 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.3564493758668497, + "c7": 1.6782246879334186 }, "rgb": [238, 201, 159] }, @@ -38967,23 +38967,23 @@ "year": 1702, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -25.49833770608326, - "c2": -42.03296952045286, - "c3": -2.088639290131809, - "c4": -33.868015036886305, - "c5": 13.57464364356558, - "c6": -36.29870331119049, - "c7": -11.155345802096953 + "points": { + "c1": -31.583130484581275, + "c2": -8.226587756072732, + "c3": -0.4936680767404056, + "c4": -25.334297064256827, + "c5": 25.829883428017965, + "c6": -24.77718317583233, + "c7": 45.945293608371415 }, - "vertexSeeds": { - "c1": 6.035854984710404, - "c2": 6.515289708538424, - "c3": 6.140863432073167, - "c4": 6.650563694421403, - "c5": 6.949638814144073, - "c6": 6.949887677684816, - "c7": 6.6542081830536635 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.3564493758668497, + "c7": 1.6782246879334186 }, "rgb": [77, 76, 132] }, @@ -38994,23 +38994,23 @@ "year": 1702, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -17.534277253357033, - "c2": -19.85927430830096, - "c3": 24.976967001764677, - "c4": -32.09184471404118, - "c5": 41.085894818786656, - "c6": -43.39345127095039, - "c7": 27.65483187391645 + "points": { + "c1": 43.16651757158779, + "c2": -22.12881345336153, + "c3": -45.87656932302558, + "c4": -11.667272434295121, + "c5": -19.217864871526483, + "c6": 42.48253075109851, + "c7": -17.894796295378022 }, - "vertexSeeds": { - "c1": 4.228943522851428, - "c2": 4.236615533631653, - "c3": 4.524917743190561, - "c4": 4.5968654102774575, - "c5": 4.62467037329186, - "c6": 4.396870772034971, - "c7": 4.472879356095467 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.9625520110957, + "c3": 5.802126675913088, + "c4": 4.641701340730468, + "c5": 3.48127600554785, + "c6": 2.3208506703652314, + "c7": 1.1604253351826186 }, "rgb": [238, 201, 159] }, @@ -39021,23 +39021,23 @@ "year": 1702, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 7.948617167287281, - "c2": 12.391857346934394, - "c3": 15.470837852149756, - "c4": 12.37251323853399, - "c5": 1.0169923562204701, - "c6": 30.5633618410329, - "c7": 15.45581044143858 + "points": { + "c1": 7.8752893358687, + "c2": -12.32408424535069, + "c3": -9.048068970753782, + "c4": -12.909521450131571, + "c5": 11.638296434460742, + "c6": 20.911319614545747, + "c7": 43.51823508764532 }, - "vertexSeeds": { - "c1": 3.8524991019970543, - "c2": 3.6492058413533828, - "c3": 3.723374762076907, - "c4": 3.5321989928091266, - "c5": 3.4378992763843192, - "c6": 3.8262019473161013, - "c7": 3.721776687921495 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044385, + "c3": 4.6232085067036515, + "c4": 3.6985668053629235, + "c5": 2.7739251040221897, + "c6": 1.8492834026814617, + "c7": 0.9246417013407279 }, "rgb": [238, 201, 159] }, @@ -39048,23 +39048,23 @@ "year": 1702, "resistanceReported": false, "duration": 47174400, - "curveSeeds": { - "c1": -33.75166956969731, - "c2": -28.236253759458336, - "c3": -6.719024124840324, - "c4": 17.459315764694345, - "c5": 24.709384281207257, - "c6": 6.339116284266247, - "c7": -27.899046306479306 + "points": { + "c1": 0.14630861466522305, + "c2": 37.8564339176666, + "c3": 14.923986659050662, + "c4": 12.534060168874099, + "c5": -2.754986345429323, + "c6": 5.187991356194736, + "c7": -21.979109185072133 }, - "vertexSeeds": { - "c1": 6.02080076468993, - "c2": 6.066869350285105, - "c3": 6.248869141205839, - "c4": 6.4741914439569985, - "c5": 6.531394503823347, - "c6": 6.051380865410169, - "c7": 5.98595505946145 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077667, + "c3": 8.090614886731398, + "c4": 6.472491909385116, + "c5": 4.854368932038834, + "c6": 3.2362459546925644, + "c7": 1.6181229773462822 }, "rgb": [86, 146, 138] }, @@ -39075,23 +39075,23 @@ "year": 1702, "resistanceReported": false, "duration": 60393600, - "curveSeeds": { - "c1": -45.69496824310605, - "c2": 25.115307837671693, - "c3": 47.730802908354605, - "c4": -15.226715480083044, - "c5": 20.53977412437493, - "c6": 44.192795336080934, - "c7": 70.37126206598579 + "points": { + "c1": -5.654247018733898, + "c2": -48.98699524628422, + "c3": 17.5050453780116, + "c4": -7.491958467184972, + "c5": 19.62463901978532, + "c6": 66.20658905984159, + "c7": -32.690499850057044 }, - "vertexSeeds": { - "c1": 1.8425100820944467, - "c2": 1.7857925674050028, - "c3": 1.8891933004774315, - "c4": 1.7016757292064324, - "c5": 1.905946203649092, - "c6": 1.8616757985668817, - "c7": 1.9150225750885759 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.8294036061026344, + "c3": 2.3578363384188643, + "c4": 1.8862690707350909, + "c5": 1.4147018030513172, + "c6": 0.9431345353675471, + "c7": 0.47156726768377355 }, "rgb": [238, 201, 159] }, @@ -39102,23 +39102,23 @@ "year": 1701, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 25.613798791427783, - "c2": -16.796698028714683, - "c3": -7.49215816275483, - "c4": -34.85918749678682, - "c5": -34.28862785838853, - "c6": -28.123849320734514, - "c7": -31.77619598552011 + "points": { + "c1": 26.784862214927585, + "c2": -16.285613422243557, + "c3": 37.97446007878972, + "c4": 10.544515668601875, + "c5": 13.13507997599303, + "c6": 6.287300586496215, + "c7": 25.36883229006449 }, - "vertexSeeds": { - "c1": 2.96244142743988, - "c2": 2.958381058004902, - "c3": 3.083581554746009, - "c4": 2.5770866682647413, - "c5": 2.822544500584285, - "c6": 2.824844562989697, - "c7": 2.7835139558258133 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.6047156726768375, + "c3": 3.837263060564031, + "c4": 3.069810448451225, + "c5": 2.3023578363384187, + "c6": 1.5349052242256125, + "c7": 0.7674526121128062 }, "rgb": [86, 146, 138] }, @@ -39129,23 +39129,23 @@ "year": 1701, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 0.5077444536744551, - "c2": 28.54778594925392, - "c3": -27.98485640597033, - "c4": 15.395657853512844, - "c5": 4.645898250640947, - "c6": 12.323459203416483, - "c7": -25.77951976320852 + "points": { + "c1": -31.16004240119573, + "c2": 1.322735415270202, + "c3": -17.480244635756094, + "c4": -12.491870563257528, + "c5": -2.3987795782453105, + "c6": 18.702378454468978, + "c7": 13.891134918240581 }, - "vertexSeeds": { - "c1": 5.312689771044706, - "c2": 5.795344688831099, - "c3": 5.303004906967957, - "c4": 4.807421428011132, - "c5": 4.96877953734118, - "c6": 4.932949998559192, - "c7": 5.0384178586161 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.16597318539066, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.866389274156266, + "c7": 1.4331946370781283 }, "rgb": [222, 0, 59] }, @@ -39156,23 +39156,23 @@ "year": 1701, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 21.502731151673245, - "c2": -11.045594102246056, - "c3": 14.974374485418345, - "c4": -21.211278929928973, - "c5": -24.901604827433893, - "c6": 9.626463644342856, - "c7": 3.409916707026234 + "points": { + "c1": -26.25415668329102, + "c2": 21.505748730649984, + "c3": -9.84746102034659, + "c4": 9.702651502980594, + "c5": -28.51323678544697, + "c6": 23.7040088496814, + "c7": 6.1181188652712635 }, - "vertexSeeds": { - "c1": 1.659104411601107, - "c2": 1.6448437836956644, - "c3": 1.7366619469062943, - "c4": 1.439962269081398, - "c5": 1.5350864165392282, - "c6": 1.7197478372980772, - "c7": 1.486624302066604 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.5242718446601944, + "c3": 2.1035598705501606, + "c4": 1.682847896440129, + "c5": 1.2621359223300972, + "c6": 0.8414239482200656, + "c7": 0.4207119741100317 }, "rgb": [58, 15, 49] }, @@ -39183,23 +39183,23 @@ "year": 1702, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 21.91767825737523, - "c2": 6.348483779849552, - "c3": -47.250177000173366, - "c4": 32.01339298870151, - "c5": 31.528912417563163, - "c6": 28.00841957276971, - "c7": 9.816451904491004 + "points": { + "c1": 23.998347516796812, + "c2": -33.51856040961772, + "c3": -33.21841734857152, + "c4": -15.484587023211645, + "c5": 26.032275657703508, + "c6": 3.963803976021005, + "c7": -41.02294785423085 }, - "vertexSeeds": { - "c1": 6.9712420336587995, - "c2": 6.0524846696012995, - "c3": 6.768885151476745, - "c4": 6.643978644247749, - "c5": 6.415703945733257, - "c6": 6.7777122917249395, - "c7": 6.30343093331746 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.3564493758668497, + "c7": 1.6782246879334186 }, "rgb": [238, 201, 159] }, @@ -39210,23 +39210,23 @@ "year": 1702, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 19.228542682429584, - "c2": -29.224100156261667, - "c3": -2.6385719640635514, - "c4": 0.25837642822042284, - "c5": -14.070809944922665, - "c6": 41.89376135781826, - "c7": 39.4957190770635 + "points": { + "c1": -3.1041259349412655, + "c2": -26.64734774146463, + "c3": -43.14266731194907, + "c4": 4.257886543954818, + "c5": 5.001145560260127, + "c6": -10.061697947540985, + "c7": -17.14874782581888 }, - "vertexSeeds": { - "c1": 7.4407730689402305, - "c2": 7.816989919057288, - "c3": 7.233795636750478, - "c4": 7.202840476603761, - "c5": 7.958409054204955, - "c6": 7.274283974586352, - "c7": 7.10227014351919 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059637, + "c3": 10.379103097549695, + "c4": 8.303282478039762, + "c5": 6.227461858529819, + "c6": 4.151641239019876, + "c7": 2.0758206195099427 }, "rgb": [238, 201, 159] }, @@ -39237,23 +39237,23 @@ "year": 1701, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 33.70372454640831, - "c2": -0.7396199840063389, - "c3": -10.357555126602808, - "c4": -13.517370396979583, - "c5": 13.15559093794807, - "c6": -11.199413331256402, - "c7": 32.554883504268034 + "points": { + "c1": 15.431338977811905, + "c2": -6.276054571163822, + "c3": 21.47938190315456, + "c4": -26.548682411830914, + "c5": -28.097868056867668, + "c6": 28.39848762678018, + "c7": 7.4426821058361625 }, - "vertexSeeds": { - "c1": 4.049813658984658, - "c2": 4.111975125619071, - "c3": 4.024291732868379, - "c4": 4.1262406470346376, - "c5": 3.9692131591685773, - "c6": 4.172889022411715, - "c7": 4.291912554281372 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009708, + "c3": 5.177993527508088, + "c4": 4.142394822006469, + "c5": 3.1067961165048485, + "c6": 2.071197411003239, + "c7": 1.0355987055016196 }, "rgb": [222, 0, 59] }, @@ -39264,23 +39264,23 @@ "year": 1701, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": -2.2470699497343674, - "c2": -22.02700074907597, - "c3": -21.23947758893247, - "c4": -4.055199031163102, - "c5": 3.4506154205497985, - "c6": 1.7346782098544047, - "c7": -1.5609677013585994 + "points": { + "c1": -13.167935935362113, + "c2": -21.34002008260051, + "c3": 7.880953709947846, + "c4": 4.5752998050927225, + "c5": 9.545944574727656, + "c6": -11.889260892791993, + "c7": -0.2148157416045322 }, - "vertexSeeds": { - "c1": 7.354858032975537, - "c2": 7.137256600601032, - "c3": 7.797067065350864, - "c4": 7.319401436716848, - "c5": 7.018589735465639, - "c6": 6.947063354110523, - "c7": 7.529438372670807 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651869, + "c3": 9.570041608876565, + "c4": 7.656033287101249, + "c5": 5.7420249653259345, + "c6": 3.8280166435506184, + "c7": 1.9140083217753157 }, "rgb": [222, 0, 59] }, @@ -39291,23 +39291,23 @@ "year": 1701, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 23.490177231939768, - "c2": 22.987837948248824, - "c3": -15.833836578992287, - "c4": 25.881956658280288, - "c5": 28.804138900813456, - "c6": 14.550717774250913, - "c7": 33.16345613810109 + "points": { + "c1": -27.287368228985727, + "c2": -0.8213263083113063, + "c3": 5.644665788863783, + "c4": 28.191165693712158, + "c5": 27.124230517254155, + "c6": 12.471867814611649, + "c7": -2.9785116520760937 }, - "vertexSeeds": { - "c1": 2.8684184051511457, - "c2": 3.126740134747654, - "c3": 2.842408960562227, - "c4": 2.808795445292008, - "c5": 3.1007838251850086, - "c6": 2.717794840036098, - "c7": 3.0576341625302534 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797505, + "c3": 3.9066111881645877, + "c4": 3.1252889505316714, + "c5": 2.3439667128987547, + "c6": 1.5626444752658333, + "c7": 0.7813222376329212 }, "rgb": [222, 0, 59] }, @@ -39318,23 +39318,23 @@ "year": 1702, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -12.174233245090246, - "c2": 6.924064684239319, - "c3": 3.277913471029983, - "c4": -32.1298827370979, - "c5": -8.476872743364915, - "c6": -41.50168734411458, - "c7": -33.57049220244404 + "points": { + "c1": 9.003219041913347, + "c2": -27.85118638083446, + "c3": 41.494773196921855, + "c4": 34.039948052691216, + "c5": 32.55294730383777, + "c6": 22.103261353616674, + "c7": 14.951000177647451 }, - "vertexSeeds": { - "c1": 5.094980790510052, - "c2": 5.01849586566274, - "c3": 4.78738167246195, - "c4": 4.54981901522305, - "c5": 5.257488878727693, - "c6": 5.170717217279927, - "c7": 4.595837303760837 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061026, + "c3": 6.356911696717521, + "c4": 5.085529357374017, + "c5": 3.814147018030513, + "c6": 2.5427646786870084, + "c7": 1.2713823393435042 }, "rgb": [86, 146, 138] }, @@ -39345,23 +39345,23 @@ "year": 1701, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -27.021206703416322, - "c2": -12.898859725885377, - "c3": 18.69507079780911, - "c4": -3.4634260904216845, - "c5": 1.3867532645969476, - "c6": 21.49629519753863, - "c7": -17.2566138846963 + "points": { + "c1": -26.147217587962476, + "c2": 25.27448599805738, + "c3": -24.73724180175742, + "c4": -33.68370197413007, + "c5": 7.758663287639635, + "c6": -5.754725853941203, + "c7": -27.82612958969284 }, - "vertexSeeds": { - "c1": 3.792987224505122, - "c2": 3.791734416141536, - "c3": 3.8549273391262835, - "c4": 3.7887214801107, - "c5": 3.555171537169724, - "c6": 3.681482015043381, - "c7": 3.675772325977115 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703649, + "c4": 3.6985668053629177, + "c5": 2.773925104022195, + "c6": 1.8492834026814635, + "c7": 0.9246417013407318 }, "rgb": [222, 0, 59] }, @@ -39372,23 +39372,23 @@ "year": 1701, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -10.836476745615542, - "c2": 3.350138906439014, - "c3": -32.00749172761071, - "c4": 21.37421950319714, - "c5": -35.18220148016937, - "c6": 6.191580094239015, - "c7": -25.120440916965592 + "points": { + "c1": -27.532010687953175, + "c2": 27.548653806816688, + "c3": -38.37683403667286, + "c4": 35.21551042510555, + "c5": 25.616286204607917, + "c6": -33.42101774207959, + "c7": -24.420270063066514 }, - "vertexSeeds": { - "c1": 1.4805623994792763, - "c2": 1.5460366370714866, - "c3": 1.5585359782127868, - "c4": 1.4643397223524568, - "c5": 1.4506926738804857, - "c6": 1.4771588126854065, - "c7": 1.4647141826881405 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.330097087378643, + "c3": 1.9417475728155336, + "c4": 1.5533980582524283, + "c5": 1.1650485436893192, + "c6": 0.7766990291262141, + "c7": 0.38834951456310496 }, "rgb": [238, 201, 159] }, @@ -39399,23 +39399,23 @@ "year": 1701, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -18.42429859802602, - "c2": 15.810821968390925, - "c3": -0.25393092540801376, - "c4": 9.54919414795971, - "c5": -26.87735948376803, - "c6": -16.094101436954592, - "c7": 28.426198588148253 + "points": { + "c1": -1.1149853798177887, + "c2": 32.29446171604026, + "c3": -17.67697127931183, + "c4": -4.997918262506346, + "c5": 6.358420148805109, + "c6": 30.174850944003737, + "c7": -30.958121026715467 }, - "vertexSeeds": { - "c1": 5.317579695428034, - "c2": 5.5828018720450805, - "c3": 4.899220460120995, - "c4": 5.535774646302025, - "c5": 4.797214029995461, - "c6": 5.762761223477, - "c7": 5.298697964340951 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055474, + "c4": 5.547850208044381, + "c5": 4.160887656033288, + "c6": 2.7739251040221955, + "c7": 1.386962552011093 }, "rgb": [77, 76, 132] }, @@ -39426,23 +39426,23 @@ "year": 1702, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 29.616045405898063, - "c2": -38.15370295385902, - "c3": -41.803117491521355, - "c4": -18.968207793319692, - "c5": -24.72709075077441, - "c6": -41.81723608244158, - "c7": 25.63516785288742 + "points": { + "c1": 26.953291919098447, + "c2": 1.7904096942194627, + "c3": -40.9369796974932, + "c4": -14.709164097295623, + "c5": -21.57167514551321, + "c6": 33.70674856583908, + "c7": 43.63011060697205 }, - "vertexSeeds": { - "c1": 0.3565170273355106, - "c2": 0.3050678771367122, - "c3": 0.35235534241474004, - "c4": 0.35098813784325894, - "c5": 0.3364390066527166, - "c6": 0.2948197647340272, - "c7": 0.31645505974105137 + "offsets": { + "c1": 0.6472491909385114, + "c2": 0.5547850208044381, + "c3": 0.4623208506703654, + "c4": 0.36985668053629206, + "c5": 0.27739251040221935, + "c6": 0.18492834026814603, + "c7": 0.0924641701340733 }, "rgb": [222, 0, 59] }, @@ -39453,23 +39453,23 @@ "year": 1701, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 19.261820751668115, - "c2": -24.472729393864682, - "c3": 14.869990861482865, - "c4": -1.8590716181526403, - "c5": 27.456102607150196, - "c6": -25.16398277846197, - "c7": 21.580973083563105 + "points": { + "c1": 19.293654219054, + "c2": 11.857849634937725, + "c3": 15.585600154869052, + "c4": -12.709864022581453, + "c5": 25.946674688972795, + "c6": 29.375962538939465, + "c7": -28.19383096307557 }, - "vertexSeeds": { - "c1": 1.557744899992899, - "c2": 1.4444508372162466, - "c3": 1.6474586209199453, - "c4": 1.5756539849282285, - "c5": 1.530514069202756, - "c6": 1.3232601873533842, - "c7": 1.5884736710435012 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590835, + "c3": 1.9879796578825712, + "c4": 1.5903837263060565, + "c5": 1.1927877947295418, + "c6": 0.7951918631530271, + "c7": 0.39759593157651474 }, "rgb": [77, 76, 132] }, @@ -39480,23 +39480,23 @@ "year": 1701, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -29.488274197027707, - "c2": -33.20860933135614, - "c3": 12.61538638370073, - "c4": 2.0711416342348627, - "c5": 3.0571491569186264, - "c6": -24.02483539863526, - "c7": -31.54215790922628 + "points": { + "c1": 27.287694359986432, + "c2": -9.6326599851906, + "c3": -1.8605615389821466, + "c4": -31.125393326532148, + "c5": 28.05959069152445, + "c6": 32.53225793906283, + "c7": -4.001099411645946 }, - "vertexSeeds": { - "c1": 3.704859798330094, - "c2": 4.002559537755796, - "c3": 4.232596669724523, - "c4": 4.547474645344463, - "c5": 3.9763876738702013, - "c6": 3.8839059647493244, - "c7": 4.073148068500806 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -39507,23 +39507,23 @@ "year": 1702, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 33.4434690870487, - "c2": -27.707561164905954, - "c3": 10.882213994567891, - "c4": -5.408356211987012, - "c5": 40.554247793049285, - "c6": -34.72492302770851, - "c7": -5.06413671948588 + "points": { + "c1": -37.239158191128205, + "c2": -1.2518072861894822, + "c3": 13.634213051565283, + "c4": -24.938131853624892, + "c5": 33.025376292833954, + "c6": 9.05215796822862, + "c7": -2.773129680927788 }, - "vertexSeeds": { - "c1": 2.197309295139595, - "c2": 2.1823171731018585, - "c3": 2.161913970805163, - "c4": 2.089493449372667, - "c5": 2.1393852894711407, - "c6": 2.231295021157349, - "c7": 2.1969390408330733 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [222, 0, 59] }, @@ -39534,23 +39534,23 @@ "year": 1701, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 26.415261760497536, - "c2": -12.82914332591125, - "c3": 10.788313867197651, - "c4": 30.382120794434748, - "c5": 31.20039824860249, - "c6": -22.494602014493204, - "c7": -24.53056038244714 + "points": { + "c1": -0.4732910057350068, + "c2": -21.99206608473869, + "c3": 7.963364852195461, + "c4": -13.240380344345446, + "c5": -32.434788914501986, + "c6": 3.5570617852500277, + "c7": 38.18037680615638 }, - "vertexSeeds": { - "c1": 3.8325274961197873, - "c2": 4.203985636870701, - "c3": 3.7488085687569077, - "c4": 4.26471939884645, - "c5": 4.268823325606061, - "c6": 4.181165864414208, - "c7": 4.22192438949109 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.108645399907539, + "c4": 4.08691631992603, + "c5": 3.0651872399445206, + "c6": 2.0434581599630115, + "c7": 1.021729079981509 }, "rgb": [86, 146, 138] }, @@ -39561,23 +39561,23 @@ "year": 1702, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -32.72174410035051, - "c2": -13.692742063176219, - "c3": 23.543328506254873, - "c4": -23.668405235263045, - "c5": 9.974152533864853, - "c6": 34.5652851308276, - "c7": 15.785764374488053 + "points": { + "c1": -8.98647114325125, + "c2": 1.6365059917181526, + "c3": -24.884231774424233, + "c4": 16.13971927197965, + "c5": -33.007604471875894, + "c6": -19.68899227715157, + "c7": 24.75039321942848 }, - "vertexSeeds": { - "c1": 8.642993915983276, - "c2": 8.087003803927422, - "c3": 8.183256734810207, - "c4": 8.108068932387885, - "c5": 8.521147923773057, - "c6": 8.615962283909349, - "c7": 9.048101010184942 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024974, + "c3": 10.933888118354137, + "c4": 8.747110494683316, + "c5": 6.56033287101248, + "c6": 4.373555247341658, + "c7": 2.1867776236708223 }, "rgb": [86, 146, 138] }, @@ -39588,23 +39588,23 @@ "year": 1701, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 7.651949654480418, - "c2": 17.234757237627583, - "c3": -32.32870024683811, - "c4": -30.301722324772623, - "c5": 8.560756803441116, - "c6": -29.816571632137823, - "c7": -8.97490394456009 + "points": { + "c1": -8.031392080113118, + "c2": -12.46436749939662, + "c3": -2.7784096591643106, + "c4": 30.278867974330026, + "c5": -24.238059833384582, + "c6": -16.079652463644038, + "c7": -28.49853094839086 }, - "vertexSeeds": { - "c1": 1.9645169134326652, - "c2": 1.984336952241213, - "c3": 2.2004526464023155, - "c4": 2.229084211111759, - "c5": 2.206962600576885, - "c6": 2.2334069061570587, - "c7": 2.2035458831776413 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.384188626907074, + "c3": 2.8201571890892287, + "c4": 2.2561257512713837, + "c5": 1.6920943134535382, + "c6": 1.128062875635693, + "c7": 0.5640314378178477 }, "rgb": [222, 0, 59] }, @@ -39615,23 +39615,23 @@ "year": 1701, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -21.112409797609175, - "c2": -5.3748112449244125, - "c3": 26.20569379255624, - "c4": 20.17133309842933, - "c5": 15.19287049116462, - "c6": 3.1508864993258783, - "c7": -28.750373242908736 + "points": { + "c1": -27.775117696979002, + "c2": 9.039110294846047, + "c3": 12.51610343014297, + "c4": -32.57606787571882, + "c5": 15.178455176079474, + "c6": -20.509169592621937, + "c7": -29.52024030616976 }, - "vertexSeeds": { - "c1": 2.6867554573133634, - "c2": 2.739268639598527, - "c3": 2.4765378664244033, - "c4": 2.5066851377808828, - "c5": 2.734470928271697, - "c6": 2.4864505893570734, - "c7": 2.667245466528434 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751736, + "c3": 3.3055940822931085, + "c4": 2.644475265834489, + "c5": 1.9833564493758702, + "c6": 1.3222376329172425, + "c7": 0.6611188164586234 }, "rgb": [86, 146, 138] }, @@ -39642,23 +39642,23 @@ "year": 1702, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 5.756635043904325, - "c2": 30.940912651618667, - "c3": -3.9716224149266353, - "c4": 44.94399149246485, - "c5": 44.48451132660019, - "c6": -27.171688372093726, - "c7": 27.820287626465863 + "points": { + "c1": 34.77014941732656, + "c2": 9.426623808901745, + "c3": -27.15091516619142, + "c4": 3.854398800278517, + "c5": -47.19823204553287, + "c6": -28.141659610787638, + "c7": 17.562379777210474 }, - "vertexSeeds": { - "c1": 0.9595542402039648, - "c2": 1.0457390569071, - "c3": 1.0661674643765295, - "c4": 1.004364745685781, - "c5": 1.1077071038769017, - "c6": 0.9836221560275873, - "c7": 1.0152807819349723 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.692094313453537, + "c3": 1.4100785945446144, + "c4": 1.1280628756356919, + "c5": 0.8460471567267691, + "c6": 0.5640314378178465, + "c7": 0.28201571890892385 }, "rgb": [77, 76, 132] }, @@ -39669,23 +39669,23 @@ "year": 1702, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -35.44708022918598, - "c2": 7.704184711712742, - "c3": -30.363999366435184, - "c4": -24.573054403099153, - "c5": -28.52250016534585, - "c6": 26.506546868281355, - "c7": 37.39228471188114 + "points": { + "c1": -17.348507946745165, + "c2": -16.70468131128539, + "c3": 2.5947471649571554, + "c4": 21.116540440926308, + "c5": -26.178727249058756, + "c6": -36.44431299391006, + "c7": 28.577382194291665 }, - "vertexSeeds": { - "c1": 4.355400960773684, - "c2": 4.467830130762876, - "c3": 4.327354277683481, - "c4": 4.409890964619811, - "c5": 4.489074967378337, - "c6": 4.400451323849761, - "c7": 4.359773708263858 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572815, + "c3": 5.501618122977347, + "c4": 4.401294498381877, + "c5": 3.3009708737864076, + "c6": 2.2006472491909386, + "c7": 1.1003236245954693 }, "rgb": [238, 201, 159] }, @@ -39696,23 +39696,23 @@ "year": 1701, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 17.99096165740893, - "c2": -2.444881656631054, - "c3": 23.587524082756175, - "c4": -6.871345310170174, - "c5": -9.725653792615478, - "c6": 17.036174971903215, - "c7": 2.4224433512800445 + "points": { + "c1": 3.7218870751945587, + "c2": -27.84082980884337, + "c3": -28.37062997313484, + "c4": -21.846025792096867, + "c5": 6.531432012071647, + "c6": -15.225067317237237, + "c7": -28.663164436498413 }, - "vertexSeeds": { - "c1": 1.8560361350955512, - "c2": 1.760575009833417, - "c3": 1.9235731187338612, - "c4": 1.922728750890901, - "c5": 1.8929647891197359, - "c6": 1.9393388223421402, - "c7": 1.7940833637422111 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.3347202958853472, + "c4": 1.867776236708275, + "c5": 1.4008321775312074, + "c6": 0.9338881183541395, + "c7": 0.46694405917707194 }, "rgb": [58, 15, 49] }, @@ -39723,23 +39723,23 @@ "year": 1701, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -20.18152008905077, - "c2": 7.891090382637685, - "c3": -14.964335596910598, - "c4": -25.96050971867704, - "c5": 3.3577108289777797, - "c6": 28.684230552466254, - "c7": -26.027901316904796 + "points": { + "c1": 9.522135137666673, + "c2": -20.623085878622454, + "c3": -2.3759229592757265, + "c4": 6.700966476559529, + "c5": 12.413164290412702, + "c6": -12.65028425629881, + "c7": -27.826086915774724 }, - "vertexSeeds": { - "c1": 5.772532638059035, - "c2": 6.130273905130697, - "c3": 6.116656950617199, - "c4": 6.226067121023908, - "c5": 5.175072156144416, - "c6": 5.027822068430422, - "c7": 5.3207829994510245 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991681, + "c3": 7.466481738326396, + "c4": 5.973185390661121, + "c5": 4.479889042995836, + "c6": 2.9865926953305606, + "c7": 1.4932963476652756 }, "rgb": [86, 146, 138] }, @@ -39750,23 +39750,23 @@ "year": 1701, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 25.853384200857562, - "c2": 14.011730519221935, - "c3": 4.7138928181698105, - "c4": 17.20085307772785, - "c5": -1.8334969937246584, - "c6": 15.640360427556367, - "c7": 5.347328882653763 + "points": { + "c1": 11.886557974214462, + "c2": -15.907229679162274, + "c3": -29.6552520341443, + "c4": -11.492313622609824, + "c5": -7.184816543292854, + "c6": 28.914341134671595, + "c7": -1.4822495941705327 }, - "vertexSeeds": { - "c1": 2.022540210391929, - "c2": 1.982788584506568, - "c3": 2.013752190520736, - "c4": 2.2116445314082673, - "c5": 2.084556017582523, - "c6": 2.1043996557578732, - "c7": 2.1926696323226103 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027739, + "c3": 2.889505316689783, + "c4": 2.3116042533518244, + "c5": 1.7337031900138684, + "c6": 1.1558021266759122, + "c7": 0.5779010633379561 }, "rgb": [86, 146, 138] }, @@ -39777,23 +39777,23 @@ "year": 1701, "resistanceReported": true, "duration": 19180800, - "curveSeeds": { - "c1": 4.712270684188329, - "c2": -9.950321103207113, - "c3": -3.1792136546256877, - "c4": 28.90652485271301, - "c5": 15.303559598202295, - "c6": 10.09910839021109, - "c7": -9.604931419165592 + "points": { + "c1": 25.94446406496533, + "c2": -10.175752184618215, + "c3": -31.527371260845637, + "c4": 4.108750673044796, + "c5": -18.159693397818067, + "c6": 10.08453704096685, + "c7": 22.075376797297096 }, - "vertexSeeds": { - "c1": 6.865646068115673, - "c2": 6.310901480906313, - "c3": 6.455721888869172, - "c4": 6.649407646286873, - "c5": 6.463825487876719, - "c6": 6.314891708700323, - "c7": 6.832036510402423 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680992, + "c3": 8.437355524734167, + "c4": 6.749884419787328, + "c5": 5.062413314840503, + "c6": 3.374942209893664, + "c7": 1.6874711049468254 }, "rgb": [222, 0, 59] }, @@ -39804,23 +39804,23 @@ "year": 1702, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -32.97352417273173, - "c2": -16.65002826423587, - "c3": -30.180203311843965, - "c4": 10.611991310671236, - "c5": -23.24791532028675, - "c6": 12.767274910118218, - "c7": -24.817314967201014 + "points": { + "c1": 13.592174946754426, + "c2": 7.0127706561290495, + "c3": 9.853796628101435, + "c4": 22.94673826065582, + "c5": -30.027809454234827, + "c6": -19.40112845363823, + "c7": -5.672331300697415 }, - "vertexSeeds": { - "c1": 5.247391896464211, - "c2": 5.325105139211809, - "c3": 5.344750529262354, - "c4": 5.253888312423238, - "c5": 4.630107048974379, - "c6": 5.454626811401286, - "c7": 4.61874571128909 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787331, + "c4": 5.39990753582987, + "c5": 4.049930651872403, + "c6": 2.699953767914935, + "c7": 1.3499768839574675 }, "rgb": [238, 201, 159] }, @@ -39831,23 +39831,23 @@ "year": 1702, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 12.288496061155573, - "c2": -8.119884356722178, - "c3": 18.477256847512525, - "c4": -8.247616491469977, - "c5": 6.531035812026079, - "c6": -25.60322543107679, - "c7": 23.805362236035958 + "points": { + "c1": -1.8934269450643448, + "c2": -10.748648129100832, + "c3": 5.126467976750568, + "c4": 8.92791719650966, + "c5": 18.17038418925833, + "c6": -8.159892936011278, + "c7": -24.111349582887772 }, - "vertexSeeds": { - "c1": 3.0072140730097168, - "c2": 2.6704831636882513, - "c3": 3.3406824677920017, - "c4": 2.2913505678120973, - "c5": 2.779141623827734, - "c6": 2.275100502573695, - "c7": 2.3122812694978827 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.8821081830790565, + "c3": 4.068423485899215, + "c4": 3.2547387887193713, + "c5": 2.44105409153953, + "c6": 1.6273693943596863, + "c7": 0.8136846971798426 }, "rgb": [238, 201, 159] }, @@ -39858,23 +39858,23 @@ "year": 1702, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 30.69992608222462, - "c2": -16.861361252123046, - "c3": -20.71853969150617, - "c4": -17.980932761306068, - "c5": 1.7133047535149402, - "c6": -26.285723341300475, - "c7": -12.203096652608437 + "points": { + "c1": 33.46044456138017, + "c2": 36.136182097968415, + "c3": 14.827909251698387, + "c4": 11.434268228847259, + "c5": -23.056621799392918, + "c6": -13.0933883740835, + "c7": 5.0509028290473665 }, - "vertexSeeds": { - "c1": 5.230707343494743, - "c2": 4.783122183633289, - "c3": 4.705260239765023, - "c4": 5.25571436812229, - "c5": 5.18682634109019, - "c6": 5.001960896986897, - "c7": 4.614507854694732 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -39885,23 +39885,23 @@ "year": 1702, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 29.72255108219062, - "c2": 17.50510333529882, - "c3": -11.173559487704676, - "c4": 30.454168565156678, - "c5": -15.05882888077399, - "c6": 29.104467852190922, - "c7": 3.3469504534000833 + "points": { + "c1": -12.636702242735254, + "c2": 34.1174031918748, + "c3": 28.65571496693638, + "c4": 18.81026871682854, + "c5": -12.956290227391378, + "c6": -15.068084046734473, + "c7": -28.445612579807616 }, - "vertexSeeds": { - "c1": 4.570482837048275, - "c2": 4.6002947899169575, - "c3": 4.718430223680654, - "c4": 5.179152999192644, - "c5": 5.220294109223105, - "c6": 4.64518262096885, - "c7": 4.9045228130929965 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -39912,23 +39912,23 @@ "year": 1702, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 22.05014354994498, - "c2": 15.965991071728556, - "c3": -11.603815971143476, - "c4": 21.46959384059196, - "c5": 16.154493429898704, - "c6": 19.460475355473793, - "c7": -27.292626289731466 + "points": { + "c1": -32.25710587517614, + "c2": 24.711052479786154, + "c3": -4.5943494415213415, + "c4": 9.436946171517867, + "c5": 31.360353073719807, + "c6": 0.007165928330437055, + "c7": 25.245271354103437 }, - "vertexSeeds": { - "c1": 9.503886210237411, - "c2": 9.134732448015132, - "c3": 9.074611199117253, - "c4": 8.29774252788629, - "c5": 9.36560092800187, - "c6": 8.32552955794863, - "c7": 10.266111155311624 + "offsets": { + "c1": 17.184466019417478, + "c2": 14.729542302357842, + "c3": 12.274618585298201, + "c4": 9.819694868238557, + "c5": 7.364771151178921, + "c6": 4.909847434119288, + "c7": 2.454923717059644 }, "rgb": [58, 15, 49] }, @@ -39939,23 +39939,23 @@ "year": 1702, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 29.999022216339014, - "c2": 32.9942934702554, - "c3": -7.231893981907646, - "c4": -33.38032822015674, - "c5": 21.003829162039594, - "c6": 10.715615650000004, - "c7": 12.135316373659414 + "points": { + "c1": 14.145031144817871, + "c2": 4.463877019066693, + "c3": 41.27061685345106, + "c4": -5.675171984161707, + "c5": -31.57846645652414, + "c6": 30.907706124779907, + "c7": 26.8551555648245 }, - "vertexSeeds": { - "c1": 11.209223441338313, - "c2": 10.79810978761364, - "c3": 10.972778099194715, - "c4": 10.040611433456826, - "c5": 9.910898530270403, - "c6": 9.463489306675632, - "c7": 11.347662544528848 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.64355062413314, + "c3": 13.869625520110958, + "c4": 11.09570041608876, + "c5": 8.32177531206658, + "c6": 5.54785020804438, + "c7": 2.77392510402219 }, "rgb": [86, 146, 138] }, @@ -39966,23 +39966,23 @@ "year": 1701, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 22.635886446542102, - "c2": -0.4054351600028845, - "c3": -4.152795202499352, - "c4": 6.391780833809413, - "c5": -8.159407520586452, - "c6": 21.140430640554285, - "c7": -26.04622752065663 + "points": { + "c1": -19.668777966850538, + "c2": 5.9579772299928635, + "c3": 0.222784002905545, + "c4": 26.422749433418787, + "c5": 23.214830127642003, + "c6": 9.917485157138607, + "c7": 4.115717756794005 }, - "vertexSeeds": { - "c1": 3.9520768976839027, - "c2": 4.036797430865911, - "c3": 3.317746125663735, - "c4": 3.4809742271976627, - "c5": 3.4920810913193825, - "c6": 3.6550090708381124, - "c7": 3.669219982403422 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105873, + "c4": 3.9204808136846996, + "c5": 2.9403606102635207, + "c6": 1.9602404068423473, + "c7": 0.9801202034211737 }, "rgb": [58, 15, 49] }, @@ -39993,23 +39993,23 @@ "year": 1702, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 6.818201828713725, - "c2": 17.51389716301714, - "c3": 31.89608193009397, - "c4": -21.728439943396232, - "c5": -11.656619026051526, - "c6": -17.168590651470588, - "c7": 19.49365375635648 + "points": { + "c1": -23.08565745691847, + "c2": -11.95778528122423, + "c3": 9.507241678539138, + "c4": -13.92974195474618, + "c5": 19.84090687373591, + "c6": 0.08661879435961595, + "c7": -28.30240503067947 }, - "vertexSeeds": { - "c1": 5.084069331580102, - "c2": 3.9238160771992514, - "c3": 4.411748380545371, - "c4": 4.450788999630393, - "c5": 5.554735812061735, - "c6": 3.7739130097602893, - "c7": 4.474238951631783 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624133, + "c3": 6.680536292186775, + "c4": 5.344429033749423, + "c5": 4.008321775312069, + "c6": 2.6722145168747122, + "c7": 1.3361072584373561 }, "rgb": [86, 146, 138] }, @@ -40020,23 +40020,23 @@ "year": 1702, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -1.2692975535592126, - "c2": -25.227793151488754, - "c3": 2.5627751991840384, - "c4": -15.852109198442793, - "c5": -28.310103338091515, - "c6": -14.710789819467543, - "c7": 27.723446320189723 + "points": { + "c1": 27.36166291522239, + "c2": -18.472731088548883, + "c3": 25.281833468022846, + "c4": 9.644122911562974, + "c5": 5.398882731499185, + "c6": -31.23337667119243, + "c7": 33.903898866931065 }, - "vertexSeeds": { - "c1": 9.880253601812294, - "c2": 10.40902703631381, - "c3": 9.392704092460017, - "c4": 9.638256345721107, - "c5": 9.629091211782553, - "c6": 10.492214920622901, - "c7": 10.588825236759014 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081828, + "c3": 12.690707350901517, + "c4": 10.15256588072121, + "c5": 7.614424410540914, + "c6": 5.076282940360605, + "c7": 2.538141470180296 }, "rgb": [238, 201, 159] }, @@ -40047,23 +40047,23 @@ "year": 1702, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -15.351414780559658, - "c2": 23.94391891059307, - "c3": -4.470222228476626, - "c4": 8.264945280413848, - "c5": 20.363724572607104, - "c6": 16.381404591959708, - "c7": -7.9617133930238175 + "points": { + "c1": 33.52322649953665, + "c2": -9.672276432107104, + "c3": 0.6433237617198557, + "c4": -7.915738356119945, + "c5": -19.104330876423926, + "c6": -16.545928992619835, + "c7": -10.628512650156914 }, - "vertexSeeds": { - "c1": 6.607890316948092, - "c2": 7.224657549956199, - "c3": 6.845493805281805, - "c4": 6.813368102700858, - "c5": 6.2011135293955215, - "c6": 6.886491963253064, - "c7": 7.354241926371746 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [77, 76, 132] }, @@ -40074,23 +40074,23 @@ "year": 1702, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -22.02434204529493, - "c2": -21.15109935918852, - "c3": 5.747679063323954, - "c4": -17.142550222135164, - "c5": -11.142870892566595, - "c6": -31.296732370742383, - "c7": 17.15685959027874 + "points": { + "c1": 9.32502853675112, + "c2": -20.90875098721179, + "c3": 8.302659242530844, + "c4": -30.46614787833402, + "c5": -23.899647272967343, + "c6": -16.639345374077987, + "c7": -21.236294298607486 }, - "vertexSeeds": { - "c1": 6.325392746872215, - "c2": 5.425323312550068, - "c3": 5.54176171400093, - "c4": 6.036195320607441, - "c5": 6.153267876874656, - "c6": 5.844458493719833, - "c7": 6.013753172808012 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [238, 201, 159] }, @@ -40101,23 +40101,23 @@ "year": 1702, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -26.853154266590575, - "c2": 9.058503815825706, - "c3": -21.257779431901128, - "c4": -14.789487206199176, - "c5": 19.280400235141972, - "c6": -16.127213852297935, - "c7": -3.9787331688388896 + "points": { + "c1": -25.220007562031025, + "c2": 14.873824209798993, + "c3": 15.761131905061301, + "c4": -1.0654715250240407, + "c5": 12.494585032974658, + "c6": 15.744248136409023, + "c7": 3.506184651505162 }, - "vertexSeeds": { - "c1": 2.8781425821667814, - "c2": 2.9271255908284877, - "c3": 2.9695915039763183, - "c4": 2.8335490614700105, - "c5": 3.0234014811482295, - "c6": 2.720966679393187, - "c7": 2.6890115786041395 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314842, + "c3": 3.6292186777623714, + "c4": 2.9033749422098922, + "c5": 2.177531206657421, + "c6": 1.4516874711049501, + "c7": 0.7258437355524711 }, "rgb": [86, 146, 138] }, @@ -40128,23 +40128,23 @@ "year": 1702, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 28.705581760507116, - "c2": 10.342107139501344, - "c3": -14.176308971719532, - "c4": 32.903432047032915, - "c5": -29.234337037756013, - "c6": -28.774681250604473, - "c7": 22.759508669368067 + "points": { + "c1": 1.3068052776683103, + "c2": -22.876157041995512, + "c3": 25.445238940828176, + "c4": 11.179791376553084, + "c5": -1.846802558477357, + "c6": 3.0896188166034335, + "c7": -9.91765938463034 }, - "vertexSeeds": { - "c1": 1.1777302645176955, - "c2": 1.091183033440174, - "c3": 1.0938118766866478, - "c4": 1.1633708955077788, - "c5": 1.216396904641206, - "c6": 1.190655181689158, - "c7": 1.1898130712116275 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742022, + "c3": 1.4794267221451687, + "c4": 1.1835413777161348, + "c5": 0.8876560332871011, + "c6": 0.5917706888580674, + "c7": 0.2958853444290337 }, "rgb": [222, 0, 59] }, @@ -40155,23 +40155,23 @@ "year": 1702, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -22.46233635793125, - "c2": 15.606097463462952, - "c3": -22.13456288990116, - "c4": 6.780014842225228, - "c5": -22.110067667834855, - "c6": 11.47631061243279, - "c7": 5.242812783176646 + "points": { + "c1": -6.136611872071494, + "c2": -1.6699118631571466, + "c3": 8.395169821088281, + "c4": -31.733971640025004, + "c5": 18.258109654777556, + "c6": 18.999705800053036, + "c7": 27.208896997384187 }, - "vertexSeeds": { - "c1": 4.065123662307097, - "c2": 4.403551780493213, - "c3": 4.217537643036135, - "c4": 4.260946677299076, - "c5": 3.8237648646677216, - "c6": 4.012200095557567, - "c7": 4.2002074243643825 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [238, 201, 159] }, @@ -40182,23 +40182,23 @@ "year": 1702, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": -5.7305854694968446, - "c2": 43.80641184814026, - "c3": -55.55841557157705, - "c4": 20.70241271463631, - "c5": -36.920972830649305, - "c6": -7.239624978376568, - "c7": -37.34985164105044 + "points": { + "c1": 4.78504202044482, + "c2": 59.52745696559904, + "c3": 17.030562837701737, + "c4": -53.33644165825451, + "c5": 56.36558937066374, + "c6": 38.050075715143024, + "c7": 53.66136881868245 }, - "vertexSeeds": { - "c1": 6.910500391874567, - "c2": 7.0806946093207435, - "c3": 7.496726248263348, - "c4": 6.566776945701515, - "c5": 6.388077647036907, - "c6": 5.939887594860865, - "c7": 6.602539626659093 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807214, + "c3": 9.084604715672675, + "c4": 7.267683772538144, + "c5": 5.450762829403611, + "c6": 3.633841886269072, + "c7": 1.8169209431345397 }, "rgb": [222, 0, 59] }, @@ -40209,23 +40209,23 @@ "year": 1701, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -10.940099154126818, - "c2": 7.411814622412489, - "c3": 16.997024789113436, - "c4": -14.092939441636123, - "c5": 11.94132663935984, - "c6": 14.52639850180854, - "c7": -20.61768497543298 + "points": { + "c1": 20.017984450286367, + "c2": -16.28317780332361, + "c3": 4.220231878134477, + "c4": 3.1930745899151702, + "c5": 3.3304977300473944, + "c6": -2.8352048083973216, + "c7": -4.68717357910629 }, - "vertexSeeds": { - "c1": 5.709906884636324, - "c2": 5.6273775644130675, - "c3": 6.0649815045491025, - "c4": 5.062535478427903, - "c5": 5.4478557045643035, - "c6": 6.003954092333292, - "c7": 6.263105719125936 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072123, + "c3": 7.512713823393437, + "c4": 6.010171058714743, + "c5": 4.507628294036057, + "c6": 3.0050855293573715, + "c7": 1.5025427646786857 }, "rgb": [238, 201, 159] }, @@ -40236,23 +40236,23 @@ "year": 1702, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 20.972685406482483, - "c2": 15.983384936529177, - "c3": -3.680339462757864, - "c4": -22.417310864239845, - "c5": -33.48431974986244, - "c6": 25.93883178150655, - "c7": -24.229596931005634 + "points": { + "c1": 27.76768846435526, + "c2": -9.277126030377389, + "c3": -27.71650729653352, + "c4": 14.617013632774977, + "c5": -10.016015254433817, + "c6": 6.052623923112876, + "c7": -30.249848582061762 }, - "vertexSeeds": { - "c1": 3.9124824009448353, - "c2": 4.3880366133890485, - "c3": 4.11706246107378, - "c4": 4.023295021042681, - "c5": 4.337107592184221, - "c6": 3.857187326819356, - "c7": 3.752906929034351 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -40263,23 +40263,23 @@ "year": 1702, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 3.8392388702703464, - "c2": 11.698981399171696, - "c3": 31.668245470847506, - "c4": -12.446152906282624, - "c5": -14.846780496733917, - "c6": -7.347723010443513, - "c7": -4.698602113731404 + "points": { + "c1": 18.777526326336343, + "c2": -23.510375170491045, + "c3": -6.464853034024237, + "c4": -27.294266633834063, + "c5": -15.51451563662824, + "c6": -33.10173812832155, + "c7": 31.416011205063214 }, - "vertexSeeds": { - "c1": 6.393381437945844, - "c2": 6.137936652318071, - "c3": 6.675554047968173, - "c4": 6.161187816068488, - "c5": 5.359090398845982, - "c6": 6.649084499495725, - "c7": 5.893226700713346 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876565, + "c3": 7.9750346740638, + "c4": 6.380027739251043, + "c5": 4.785020804438278, + "c6": 3.1900138696255214, + "c7": 1.5950069348127565 }, "rgb": [222, 0, 59] }, @@ -40290,23 +40290,23 @@ "year": 1702, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -16.110690239385423, - "c2": -13.386882270320253, - "c3": -36.63953149475351, - "c4": 8.242766021841376, - "c5": 37.24536834454704, - "c6": -12.794024855691497, - "c7": 9.043410937009185 + "points": { + "c1": -0.525645660489694, + "c2": -13.464290178867621, + "c3": 37.33448188098337, + "c4": -22.374743310145927, + "c5": -15.746148033856848, + "c6": 33.46545579971809, + "c7": -19.094983202868658 }, - "vertexSeeds": { - "c1": 1.90414478797335, - "c2": 1.8058267334664693, - "c3": 1.649082914871731, - "c4": 1.661295461197293, - "c5": 2.013304921459121, - "c6": 1.7538773786275856, - "c7": 1.8839757021539332 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635234, + "c3": 2.4503005085529366, + "c4": 1.9602404068423498, + "c5": 1.4701803051317603, + "c6": 0.9801202034211737, + "c7": 0.49006010171058684 }, "rgb": [222, 0, 59] }, @@ -40317,23 +40317,23 @@ "year": 1702, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": 35.14599617472765, - "c2": 39.8215412567173, - "c3": -2.846143364655383, - "c4": -40.8271557961251, - "c5": 36.19281233465022, - "c6": -31.564027657645276, - "c7": 46.146450970849436 + "points": { + "c1": -0.9586301189909605, + "c2": 32.92550024197008, + "c3": 3.2893065055307957, + "c4": -37.97252802876176, + "c5": 41.873404939014385, + "c6": -5.626771370243823, + "c7": 1.7630146843848422 }, - "vertexSeeds": { - "c1": 2.7484621673903646, - "c2": 3.094240641703877, - "c3": 2.869919933885398, - "c4": 3.015498745661577, - "c5": 2.703355267065108, - "c6": 3.1423753056303463, - "c7": 2.82343149741381 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596393, + "c3": 3.791030975496993, + "c4": 3.0328247803975934, + "c5": 2.274618585298199, + "c6": 1.5164123901987996, + "c7": 0.7582061950993998 }, "rgb": [222, 0, 59] }, @@ -40344,23 +40344,23 @@ "year": 1702, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": 52.76825998132858, - "c2": 41.34667983901696, - "c3": 17.18890415219191, - "c4": -5.873663687288257, - "c5": -14.592231191334065, - "c6": -40.40848957944936, - "c7": -45.11123986425175 + "points": { + "c1": -32.67482547390128, + "c2": 16.93631128657809, + "c3": -35.5704698865909, + "c4": 2.3371185664934444, + "c5": 31.047493268588013, + "c6": 12.462396205537686, + "c7": 4.468517285799187 }, - "vertexSeeds": { - "c1": 3.0824603827264143, - "c2": 3.195224195361194, - "c3": 2.9137392372760407, - "c4": 3.1568550302903033, - "c5": 3.7672964123057255, - "c6": 3.5479546473441683, - "c7": 3.6608487793551294 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923717, + "c3": 4.553860379103098, + "c4": 3.643088303282478, + "c5": 2.7323162274618586, + "c6": 1.821544151641239, + "c7": 0.9107720758206195 }, "rgb": [77, 76, 132] }, @@ -40371,23 +40371,23 @@ "year": 1702, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 0.1933656510315842, - "c2": -26.343954241962496, - "c3": 40.205285910558864, - "c4": -9.301084513408568, - "c5": -12.385105297874603, - "c6": -9.478379325121736, - "c7": 29.330783774787214 + "points": { + "c1": -14.680146880089097, + "c2": -29.52953878665951, + "c3": -31.826507283314726, + "c4": 37.06274914892612, + "c5": 18.63245049546085, + "c6": 28.53692781220743, + "c7": 41.24693676224509 }, - "vertexSeeds": { - "c1": 7.915778944901785, - "c2": 8.289181020456025, - "c3": 7.896214272519643, - "c4": 8.188015210030821, - "c5": 7.953215357274687, - "c6": 8.003479096348915, - "c7": 7.861572226139783 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [238, 201, 159] }, @@ -40398,23 +40398,23 @@ "year": 1702, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -18.932048665489333, - "c2": -8.297407622899783, - "c3": 20.543980926599367, - "c4": -3.9640651287322193, - "c5": 12.968137240875748, - "c6": -24.761476733900512, - "c7": -9.81213537902078 + "points": { + "c1": -9.428425625413055, + "c2": -19.580853066392926, + "c3": -9.034355462994167, + "c4": 21.644305184076778, + "c5": -32.55610075681702, + "c6": -22.536012867604533, + "c7": -21.628190193316513 }, - "vertexSeeds": { - "c1": 1.8470684965962836, - "c2": 2.190957303960491, - "c3": 1.8053211553775559, - "c4": 2.175292608070459, - "c5": 2.0975937392917308, - "c6": 2.1822305153227295, - "c7": 2.190615559548516 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.1900138696255196, + "c3": 2.658344891354601, + "c4": 2.12667591308368, + "c5": 1.595006934812761, + "c6": 1.06333795654184, + "c7": 0.5316689782709189 }, "rgb": [58, 15, 49] }, @@ -40425,23 +40425,23 @@ "year": 1702, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -27.763912733289786, - "c2": -18.85488443649259, - "c3": 19.506707886710252, - "c4": -19.76363582080843, - "c5": -0.09630947093684483, - "c6": 31.041903400766017, - "c7": -29.93823090062236 + "points": { + "c1": -12.061493735954041, + "c2": -26.217322221200206, + "c3": -8.133507297285895, + "c4": 0.35520213758899644, + "c5": 1.588827352474354, + "c6": 8.812071629642425, + "c7": -18.257204610286752 }, - "vertexSeeds": { - "c1": 4.712322259379784, - "c2": 3.877906355651453, - "c3": 3.8877195596859715, - "c4": 3.831208601099598, - "c5": 4.511216599103644, - "c6": 4.023247841007383, - "c7": 4.213191340468796 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [58, 15, 49] }, @@ -40452,23 +40452,23 @@ "year": 1702, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 1.2644041601754346, - "c2": 13.464387794276742, - "c3": 19.994240549787595, - "c4": -25.29288507211859, - "c5": 24.46906881277805, - "c6": -14.767182003943745, - "c7": 19.021672686777844 + "points": { + "c1": -17.872851025432773, + "c2": -9.996723830621054, + "c3": -29.087416488441963, + "c4": 14.238658856531718, + "c5": -1.1738203410394306, + "c6": 8.216886079178725, + "c7": 17.391406798188473 }, - "vertexSeeds": { - "c1": 10.588077139775624, - "c2": 10.610924051544195, - "c3": 10.362760253661243, - "c4": 10.020412770830955, - "c5": 9.381244056377604, - "c6": 8.71112227009179, - "c7": 9.656716060832087 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [86, 146, 138] }, @@ -40479,23 +40479,23 @@ "year": 1702, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 24.57667425231392, - "c2": -24.065359951946736, - "c3": 9.359630742405493, - "c4": 5.238190550058313, - "c5": 15.1682905730311, - "c6": -14.307205700522704, - "c7": -2.319554690758416 + "points": { + "c1": 33.68654352341631, + "c2": -28.368880417026453, + "c3": 27.90628009718568, + "c4": -34.160639730429004, + "c5": -37.34164682707715, + "c6": -26.28184190919951, + "c7": 8.954854401261791 }, - "vertexSeeds": { - "c1": 4.188743650307773, - "c2": 3.944650505329916, - "c3": 3.569627417650601, - "c4": 4.21845713713864, - "c5": 3.8897065949751557, - "c6": 3.7172323110902097, - "c7": 4.087257621486815 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251039, + "c3": 5.316689782709202, + "c4": 4.25335182616736, + "c5": 3.190013869625522, + "c6": 2.12667591308368, + "c7": 1.0633379565418377 }, "rgb": [222, 0, 59] }, @@ -40506,23 +40506,23 @@ "year": 1702, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 28.662921084295718, - "c2": 11.152516708417558, - "c3": 31.623925614988252, - "c4": -13.72599502944625, - "c5": -4.208354956262962, - "c6": -28.795454580187034, - "c7": 5.3021236490574495 + "points": { + "c1": -31.47613980171421, + "c2": -26.11875355655639, + "c3": -27.192020535169554, + "c4": 1.5202899721427556, + "c5": -18.87201634508775, + "c6": -33.95137854190325, + "c7": 8.505983880672076 }, - "vertexSeeds": { - "c1": 4.208422715801277, - "c2": 4.0301556946439625, - "c3": 4.971421842322735, - "c4": 4.454384593167497, - "c5": 4.185010354403108, - "c6": 4.44248402888579, - "c7": 4.763947933046026 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377253, + "c3": 5.9639389736477115, + "c4": 4.771151178918169, + "c5": 3.5783633841886267, + "c6": 2.3855755894590844, + "c7": 1.1927877947295422 }, "rgb": [222, 0, 59] }, @@ -40533,23 +40533,23 @@ "year": 1702, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 29.128834107879438, - "c2": -5.217099656672122, - "c3": -17.12335825544187, - "c4": 2.6698894216079445, - "c5": -15.587068832053644, - "c6": 6.024513706516952, - "c7": -7.3931050808367935 + "points": { + "c1": -29.405342518194452, + "c2": 18.759483198952438, + "c3": 7.455171622096252, + "c4": 23.1663188955525, + "c5": 31.211569342946042, + "c6": 24.569869176035276, + "c7": 23.139932636327977 }, - "vertexSeeds": { - "c1": 2.721195030701723, - "c2": 2.8310508282301114, - "c3": 2.669606981383174, - "c4": 2.855789906518004, - "c5": 2.8197273199929613, - "c6": 2.722221024211958, - "c7": 2.7620153359702004 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.4442903374942246, + "c4": 2.755432269995378, + "c5": 2.0665742024965317, + "c6": 1.377716134997685, + "c7": 0.6888580674988465 }, "rgb": [222, 0, 59] }, @@ -40560,23 +40560,23 @@ "year": 1702, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -21.67632216250739, - "c2": 7.531340637147736, - "c3": -6.529973896961238, - "c4": -15.373079229029994, - "c5": -1.492365692083709, - "c6": -6.9764531259413545, - "c7": -21.368489319808216 + "points": { + "c1": 25.41272905096578, + "c2": 28.562376985616567, + "c3": 3.994258985753625, + "c4": 6.874884707885251, + "c5": 11.44101307149107, + "c6": 27.39351359660475, + "c7": -18.408218317409787 }, - "vertexSeeds": { - "c1": 1.4501458617885548, - "c2": 1.4846782380107697, - "c3": 1.449427499765845, - "c4": 1.6014837058295128, - "c5": 1.5968560818964268, - "c6": 1.3663426424037874, - "c7": 1.481743321129674 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.357836338418862, + "c3": 1.9648636153490517, + "c4": 1.5718908922792432, + "c5": 1.1789181692094324, + "c6": 0.7859454461396216, + "c7": 0.3929727230698108 }, "rgb": [238, 201, 159] }, @@ -40587,23 +40587,23 @@ "year": 1702, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 25.835194186903248, - "c2": 24.320053276041268, - "c3": 7.147345788553846, - "c4": 0.5657293631141265, - "c5": 8.955756484125292, - "c6": 16.352261371525575, - "c7": 5.284051827412615 + "points": { + "c1": 4.164564950091627, + "c2": -22.325352939100632, + "c3": 18.747087280458725, + "c4": -9.439816272399863, + "c5": -21.96724926131335, + "c6": -4.33472756683927, + "c7": 6.8370877934462335 }, - "vertexSeeds": { - "c1": 2.9582448982617833, - "c2": 2.794234855601125, - "c3": 3.3200746542825246, - "c4": 3.035463379963453, - "c5": 3.355885138885537, - "c6": 3.147387255059029, - "c7": 2.866594680684181 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199722, + "c3": 4.137771613499769, + "c4": 3.3102172907998146, + "c5": 2.482662968099861, + "c6": 1.6551086453999073, + "c7": 0.8275543226999537 }, "rgb": [222, 0, 59] }, @@ -40614,23 +40614,23 @@ "year": 1702, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 10.289707544153071, - "c2": 5.721590884291498, - "c3": -23.879060955665008, - "c4": -4.091142483613027, - "c5": 16.935484990350734, - "c6": -21.66379605191285, - "c7": 23.945815913513908 + "points": { + "c1": -7.586097694618825, + "c2": 13.25814472618077, + "c3": -18.066833400291898, + "c4": -10.116295207934733, + "c5": 10.03259637521995, + "c6": 13.149123867389154, + "c7": 15.587133345654141 }, - "vertexSeeds": { - "c1": 2.2512824302756678, - "c2": 2.740210214459689, - "c3": 2.452078197403476, - "c4": 2.763096958484727, - "c5": 2.4678917689478115, - "c6": 2.2406568930092874, - "c7": 2.559539933161404 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832178, + "c3": 3.3518261673601493, + "c4": 2.6814609338881157, + "c5": 2.011095700416087, + "c6": 1.3407304669440578, + "c7": 0.6703652334720289 }, "rgb": [238, 201, 159] }, @@ -40641,23 +40641,23 @@ "year": 1702, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -18.63928834907358, - "c2": -8.25489452956732, - "c3": 15.708434882050891, - "c4": 21.797739260971607, - "c5": -8.815681737213012, - "c6": 10.710181112595489, - "c7": 4.6783734792724765 + "points": { + "c1": -15.244679795395866, + "c2": 5.086334723785544, + "c3": -9.403695149365557, + "c4": 9.802254195733443, + "c5": 27.67298261537653, + "c6": -4.684749103529274, + "c7": 6.0571071779767856 }, - "vertexSeeds": { - "c1": 2.708487644828558, - "c2": 2.7257453757553036, - "c3": 3.3747242306021854, - "c4": 2.9408958929903366, - "c5": 3.137795887591384, - "c6": 2.9488530863672917, - "c7": 2.94571370968741 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388355, + "c3": 4.045307443365696, + "c4": 3.236245954692557, + "c5": 2.4271844660194177, + "c6": 1.6181229773462784, + "c7": 0.8090614886731392 }, "rgb": [58, 15, 49] }, @@ -40668,23 +40668,23 @@ "year": 1702, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -32.04955147026677, - "c2": -36.99118106081053, - "c3": -5.391114255747887, - "c4": 38.323420531097874, - "c5": 38.07816769884024, - "c6": -25.380575985825562, - "c7": 21.977369676939396 + "points": { + "c1": 26.769724949656926, + "c2": -34.00377320394323, + "c3": -16.774477316463333, + "c4": 15.43446039202658, + "c5": 17.71638710552577, + "c6": 38.6525909464274, + "c7": -17.60102471574304 }, - "vertexSeeds": { - "c1": 3.459340481120797, - "c2": 3.5153587711174206, - "c3": 3.421592979709544, - "c4": 3.2178437634378696, - "c5": 3.425324310147233, - "c6": 3.25523056751712, - "c7": 3.7004784020632444 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762831, + "c3": 4.461396208969026, + "c4": 3.5691169671752223, + "c5": 2.6768377253814184, + "c6": 1.784558483587608, + "c7": 0.892279241793804 }, "rgb": [222, 0, 59] }, @@ -40695,23 +40695,23 @@ "year": 1702, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -25.10095246261, - "c2": -11.552411718957519, - "c3": 5.005505429049542, - "c4": 13.649013808527798, - "c5": -22.58151630297138, - "c6": 8.059227405940092, - "c7": -4.255498248281487 + "points": { + "c1": -16.268798659947933, + "c2": -16.663646493283867, + "c3": -17.90607687288471, + "c4": 23.481310947763262, + "c5": 0.2681980637514165, + "c6": -19.47491118579483, + "c7": 21.336024974039738 }, - "vertexSeeds": { - "c1": 2.978309647093628, - "c2": 2.9828861904867834, - "c3": 3.2503047523048196, - "c4": 2.937410621424246, - "c5": 3.220350149078307, - "c6": 3.1254617222846686, - "c7": 2.7527800717769666 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388355, + "c3": 4.045307443365696, + "c4": 3.236245954692557, + "c5": 2.4271844660194177, + "c6": 1.6181229773462784, + "c7": 0.8090614886731392 }, "rgb": [222, 0, 59] }, @@ -40722,23 +40722,23 @@ "year": 1702, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -2.9506757369622676, - "c2": -6.132640338461901, - "c3": -21.349997654812924, - "c4": 18.69589811377852, - "c5": 21.609380229754656, - "c6": 12.355749967617058, - "c7": -29.919766713274974 + "points": { + "c1": 10.245343567388254, + "c2": -12.49107440178031, + "c3": -28.12893327398574, + "c4": -4.397538278686724, + "c5": 31.874642394322763, + "c6": 20.031635469357035, + "c7": 11.21071119337914 }, - "vertexSeeds": { - "c1": 2.5685615318376063, - "c2": 2.5140109316398807, - "c3": 2.3305847130954276, - "c4": 2.365147158284656, - "c5": 2.674763498374742, - "c6": 2.6123752738851285, - "c7": 2.5042661683548055 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.8557558945908488, + "c3": 3.2131299121590375, + "c4": 2.5705039297272325, + "c5": 1.9278779472954213, + "c6": 1.2852519648636163, + "c7": 0.6426259824318048 }, "rgb": [77, 76, 132] }, @@ -40749,23 +40749,23 @@ "year": 1702, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -13.007435984978887, - "c2": 3.6713986618558323, - "c3": -3.9076001900192594, - "c4": 13.958176111648825, - "c5": 3.706651097731836, - "c6": 12.937226985953558, - "c7": -2.178189897619287 + "points": { + "c1": 13.496599430548372, + "c2": 22.046221021838875, + "c3": 19.243818372691926, + "c4": 3.2777272293841158, + "c5": -5.801543961923834, + "c6": 2.3428264162678936, + "c7": 14.543862613125505 }, - "vertexSeeds": { - "c1": 8.118341136161213, - "c2": 8.125755489381465, - "c3": 8.791688586680436, - "c4": 8.40470639281843, - "c5": 8.57697074508441, - "c6": 7.758750013792399, - "c7": 7.8030776197633065 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502084, + "c3": 10.633379565418405, + "c4": 8.506703652334714, + "c5": 6.380027739251036, + "c6": 4.253351826167357, + "c7": 2.1266759130836785 }, "rgb": [58, 15, 49] }, @@ -40776,23 +40776,23 @@ "year": 1702, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 26.252901507672796, - "c2": -25.414958662667473, - "c3": 20.067580827470294, - "c4": 23.382133989719428, - "c5": 31.152483217768697, - "c6": -35.2963262646608, - "c7": -9.595461455546392 + "points": { + "c1": -38.076140106531795, + "c2": -4.574160602830766, + "c3": -9.870190354979904, + "c4": 0.2821275973464026, + "c5": 10.299723748062014, + "c6": -3.3913928428377673, + "c7": 40.96966835085177 }, - "vertexSeeds": { - "c1": 8.397212460923623, - "c2": 7.765754925528115, - "c3": 8.50924272416406, - "c4": 8.333674764718115, - "c5": 8.624583665192695, - "c6": 8.333308344404534, - "c7": 8.356414057139697 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140087, + "c3": 10.42533518261673, + "c4": 8.340268146093386, + "c5": 6.255201109570043, + "c6": 4.170134073046699, + "c7": 2.0850670365233435 }, "rgb": [86, 146, 138] }, @@ -40803,23 +40803,23 @@ "year": 1702, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -24.83875427138134, - "c2": -26.87718018703634, - "c3": -22.3375581204751, - "c4": -14.230844854941587, - "c5": 0.3446443417991958, - "c6": -10.819798980340341, - "c7": -1.0031450808831224 + "points": { + "c1": 0.23440702622743004, + "c2": 9.061814146095742, + "c3": -28.84661992481151, + "c4": -6.025241691733765, + "c5": -0.9777376340941828, + "c6": 31.273419046664984, + "c7": 22.960893364459622 }, - "vertexSeeds": { - "c1": 2.061019139007571, - "c2": 2.301485521734655, - "c3": 2.0172502221653343, - "c4": 1.9259878996279676, - "c5": 1.974763291613462, - "c6": 2.141782005861192, - "c7": 2.1479897508835752 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027739, + "c3": 2.889505316689783, + "c4": 2.3116042533518244, + "c5": 1.7337031900138684, + "c6": 1.1558021266759122, + "c7": 0.5779010633379561 }, "rgb": [238, 201, 159] }, @@ -40830,23 +40830,23 @@ "year": 1702, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -7.452924739272856, - "c2": 2.787239325970866, - "c3": -19.327045603946225, - "c4": -13.635538690823456, - "c5": -19.317588069892683, - "c6": 22.231839466155797, - "c7": 5.965338234147865 + "points": { + "c1": 22.804263265910713, + "c2": -5.910360166609983, + "c3": -5.508442098026684, + "c4": 22.051569517530083, + "c5": 11.317039763540002, + "c6": -24.541408332977657, + "c7": -7.237147526478903 }, - "vertexSeeds": { - "c1": 3.593305240664648, - "c2": 3.638509220534301, - "c3": 3.5433864001812743, - "c4": 3.422096382702949, - "c5": 3.0967078692653365, - "c6": 3.535387494240624, - "c7": 3.1198030994615293 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883494, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941749, + "c6": 1.8122977346278328, + "c7": 0.9061488673139164 }, "rgb": [58, 15, 49] }, @@ -40857,23 +40857,23 @@ "year": 1702, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -22.630053991323898, - "c2": 15.16586782252985, - "c3": -25.05539386743274, - "c4": -12.126448422324454, - "c5": -4.7882891979909274, - "c6": -13.53023119043079, - "c7": -23.715013213039562 + "points": { + "c1": -14.501414769328221, + "c2": 31.257692240476658, + "c3": -9.95512069109865, + "c4": -22.602717567548332, + "c5": -31.48031741287626, + "c6": 13.301635597557215, + "c7": 18.571234544676784 }, - "vertexSeeds": { - "c1": 7.257399409860659, - "c2": 6.801051947078301, - "c3": 7.387515677763224, - "c4": 6.806043509538396, - "c5": 6.80607869266668, - "c6": 7.14421689052325, - "c7": 7.069717003572926 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -40884,23 +40884,23 @@ "year": 1702, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -19.289793432739305, - "c2": -22.71599548456325, - "c3": 4.232838733787943, - "c4": 26.017586833023394, - "c5": -26.752160645942357, - "c6": 16.92301797445832, - "c7": 15.075472389773608 + "points": { + "c1": -11.47956936963893, + "c2": -26.346345047213383, + "c3": -15.306560493020225, + "c4": -29.075678189044666, + "c5": -16.29089767527755, + "c6": -5.167268459101582, + "c7": 25.42031973795968 }, - "vertexSeeds": { - "c1": 2.9348413467153907, - "c2": 2.834611463333749, - "c3": 2.655517176941, - "c4": 2.857440890917512, - "c5": 2.876499364067567, - "c6": 2.6648075218532465, - "c7": 2.969352490840342 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194176, + "c3": 3.5598705501618144, + "c4": 2.8478964401294533, + "c5": 2.135922330097092, + "c6": 1.4239482200647227, + "c7": 0.7119741100323613 }, "rgb": [238, 201, 159] }, @@ -40911,23 +40911,23 @@ "year": 1703, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": 3.8614988875693896, - "c2": 14.42860411789664, - "c3": -4.534462504296371, - "c4": 13.006789991939243, - "c5": 5.8816271349674665, - "c6": 37.96697157929866, - "c7": 10.991966761159432 + "points": { + "c1": 40.47086751917304, + "c2": -1.8722165026825337, + "c3": 37.12801180053465, + "c4": 2.7012499152112213, + "c5": -49.775273949598635, + "c6": 7.730111483335847, + "c7": -1.9341970910351733 }, - "vertexSeeds": { - "c1": 4.1295591489649714, - "c2": 4.3900150852482405, - "c3": 4.065039404618732, - "c4": 4.229659994131464, - "c5": 4.386194364500587, - "c6": 4.383958775902546, - "c7": 4.243022637173257 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.3245492371705945, + "c3": 5.27045769764216, + "c4": 4.216366158113737, + "c5": 3.162274618585302, + "c6": 2.1081830790568685, + "c7": 1.0540915395284343 }, "rgb": [238, 201, 159] }, @@ -40938,23 +40938,23 @@ "year": 1702, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": 22.094638896833352, - "c2": -31.522225915591058, - "c3": 39.788826950550906, - "c4": 15.329813123974489, - "c5": 27.85417653247928, - "c6": 37.093942191275694, - "c7": 43.59436379707676 + "points": { + "c1": 9.988232700811075, + "c2": -37.17455859862085, + "c3": 24.982508545865066, + "c4": 39.09289561152816, + "c5": -33.951218041429286, + "c6": 37.923857676612506, + "c7": -39.40717354664162 }, - "vertexSeeds": { - "c1": 4.1956221037040144, - "c2": 4.245745227132417, - "c3": 4.489324824448697, - "c4": 4.508164033314503, - "c5": 4.513979088466097, - "c6": 4.609721209921495, - "c7": 4.254541003089317 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.07350901525659, + "c3": 5.894590846047156, + "c4": 4.715672676837726, + "c5": 3.536754507628295, + "c6": 2.3578363384188603, + "c7": 1.1789181692094302 }, "rgb": [77, 76, 132] }, @@ -40965,23 +40965,23 @@ "year": 1702, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 33.94904319158183, - "c2": -39.84390632466099, - "c3": 13.435574534794789, - "c4": -25.00714030098536, - "c5": -27.43773793741569, - "c6": 43.69135799948989, - "c7": 9.681788404711327 + "points": { + "c1": -1.1667889002979877, + "c2": -45.734029760883956, + "c3": 22.334027726341255, + "c4": 6.5280619208377, + "c5": -5.1079144179488125, + "c6": 36.01121240953615, + "c7": 23.199345683459818 }, - "vertexSeeds": { - "c1": 6.087116723627261, - "c2": 6.175875409285987, - "c3": 6.152489189966542, - "c4": 6.263299487673424, - "c5": 5.89852681105599, - "c6": 5.821746940243681, - "c7": 6.24269891819592 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [222, 0, 59] }, @@ -40992,23 +40992,23 @@ "year": 1702, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 19.762617148617277, - "c2": 12.232787120484357, - "c3": 0.009333705634091416, - "c4": -3.3336565315479483, - "c5": 7.390452975263035, - "c6": -8.548495391617237, - "c7": -6.612261829283934 + "points": { + "c1": 11.555211042788091, + "c2": -17.718104032649443, + "c3": 16.717081938993875, + "c4": 18.052106499380276, + "c5": 17.744739849131665, + "c6": -20.417544997274426, + "c7": -21.733904062462447 }, - "vertexSeeds": { - "c1": 7.378730237588216, - "c2": 7.47646117537356, - "c3": 7.472700617747627, - "c4": 7.444765313954245, - "c5": 7.402704302745183, - "c6": 7.168323263500994, - "c7": 7.303282462238828 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -41019,23 +41019,23 @@ "year": 1702, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 22.994115258720047, - "c2": 18.479483082018785, - "c3": -12.853071629023002, - "c4": -7.609247055218177, - "c5": 2.9533600248780196, - "c6": 18.372700903377325, - "c7": 23.31884987094546 + "points": { + "c1": -26.949780475390412, + "c2": -23.51443947315059, + "c3": 19.51752222520339, + "c4": -16.148970195222333, + "c5": -14.800945836271614, + "c6": 8.24563967622424, + "c7": -0.7189185939947222 }, - "vertexSeeds": { - "c1": 0.16641006772787909, - "c2": 0.19257428882102273, - "c3": 0.18843863787044998, - "c4": 0.19160047296469418, - "c5": 0.18328626307440338, - "c6": 0.17374921091600004, - "c7": 0.19285092186316447 + "offsets": { + "c1": 0.3559870550161813, + "c2": 0.305131761442441, + "c3": 0.25427646786870106, + "c4": 0.20342117429496076, + "c5": 0.1525658807212205, + "c6": 0.10171058714748021, + "c7": 0.050855293573740266 }, "rgb": [86, 146, 138] }, @@ -41046,23 +41046,23 @@ "year": 1702, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 2.4009720067502727, - "c2": -28.06206275161192, - "c3": -2.720568705344551, - "c4": 22.269218726827617, - "c5": -8.21628855350199, - "c6": 5.199136775202774, - "c7": -32.101358305304174 + "points": { + "c1": -1.5409865844613861, + "c2": 18.12973909033581, + "c3": -5.317435358385993, + "c4": -13.89328529984698, + "c5": -31.823837606927867, + "c6": 7.799642317020968, + "c7": 30.626539549133824 }, - "vertexSeeds": { - "c1": 3.2188692409836483, - "c2": 3.324325013511387, - "c3": 3.1458865571128936, - "c4": 3.1866168281711618, - "c5": 3.0077365917892482, - "c6": 3.296431285739825, - "c7": 3.1720504455062013 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199722, + "c3": 4.137771613499769, + "c4": 3.3102172907998146, + "c5": 2.482662968099861, + "c6": 1.6551086453999073, + "c7": 0.8275543226999537 }, "rgb": [238, 201, 159] }, @@ -41073,23 +41073,23 @@ "year": 1702, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 25.566732360405865, - "c2": -28.109863098945013, - "c3": 18.069541164520082, - "c4": -14.059848723903944, - "c5": 6.951929975931343, - "c6": -29.788709196145355, - "c7": 5.87144766657736 + "points": { + "c1": -13.600932407828143, + "c2": 24.11280659594607, + "c3": 11.082549376681072, + "c4": -22.228518973801528, + "c5": -5.2147589863871175, + "c6": 7.1676907031075245, + "c7": 30.155672137921655 }, - "vertexSeeds": { - "c1": 5.572003709581741, - "c2": 4.758875217787271, - "c3": 5.460157972164588, - "c4": 5.085956825344672, - "c5": 4.625922857643752, - "c6": 4.910463987328408, - "c7": 4.687235241671593 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387891, + "c4": 5.455386037910311, + "c5": 4.0915395284327305, + "c6": 2.7276930189551556, + "c7": 1.36384650947758 }, "rgb": [77, 76, 132] }, @@ -41100,23 +41100,23 @@ "year": 1702, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -25.928614792021563, - "c2": 24.966246328448477, - "c3": 32.22833147738771, - "c4": -24.675026182249926, - "c5": 1.8475981758656275, - "c6": 20.006086667746892, - "c7": 4.502148520238002 + "points": { + "c1": 19.334721725505368, + "c2": 10.132291253889328, + "c3": 38.362006176176806, + "c4": -9.640641612627803, + "c5": 18.40279133358043, + "c6": 4.1125994751879205, + "c7": -14.459452062295448 }, - "vertexSeeds": { - "c1": 1.2849235465228661, - "c2": 1.1573991245932485, - "c3": 1.4061852880736625, - "c4": 1.2343837569962957, - "c5": 1.2963988454483282, - "c6": 1.4094469023135596, - "c7": 1.3604804905155943 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.080443828016644, + "c3": 1.7337031900138684, + "c4": 1.3869625520110953, + "c5": 1.040221914008322, + "c6": 0.6934812760055489, + "c7": 0.34674063800277327 }, "rgb": [222, 0, 59] }, @@ -41127,23 +41127,23 @@ "year": 1702, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 0.8977765045744022, - "c2": -18.70757137432867, - "c3": -20.857629501692962, - "c4": -10.425516701128036, - "c5": -36.35547335161438, - "c6": -25.542294101756, - "c7": 39.853249049476815 + "points": { + "c1": 5.0412587988930895, + "c2": -34.54162580844697, + "c3": 2.7609424129837095, + "c4": 30.685913335167115, + "c5": 6.082765910258601, + "c6": 14.161652403231514, + "c7": -40.52902262265848 }, - "vertexSeeds": { - "c1": 0.5177275176265479, - "c2": 0.517727154981779, - "c3": 0.5237401464947484, - "c4": 0.47489040949449934, - "c5": 0.4751992789117461, - "c6": 0.4683776086813186, - "c7": 0.46637199832921467 + "offsets": { + "c1": 0.9061488673139159, + "c2": 0.7766990291262138, + "c3": 0.6472491909385109, + "c4": 0.5177993527508089, + "c5": 0.3883495145631069, + "c6": 0.25889967637540495, + "c7": 0.12944983818770195 }, "rgb": [222, 0, 59] }, @@ -41154,23 +41154,23 @@ "year": 1702, "resistanceReported": false, "duration": 6220800, - "curveSeeds": { - "c1": 6.060826759794118, - "c2": -7.998297532541482, - "c3": -11.321084674973235, - "c4": -4.204489486665384, - "c5": -3.69248476406813, - "c6": 15.767434173845395, - "c7": -8.099965155782279 + "points": { + "c1": -6.897094318495778, + "c2": -11.977373146023435, + "c3": -14.734109823561331, + "c4": 12.29395760585064, + "c5": -13.183290800952495, + "c6": -13.080274544882123, + "c7": 5.195796475476758 }, - "vertexSeeds": { - "c1": 4.009468394569051, - "c2": 4.318808091321318, - "c3": 3.775824455012949, - "c4": 3.9030808712800336, - "c5": 3.84529089769439, - "c6": 4.25223933370593, - "c7": 4.57180574977879 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -41181,23 +41181,23 @@ "year": 1702, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 31.893396303078475, - "c2": 38.08627953104677, - "c3": -19.878821962423167, - "c4": -25.023963637361444, - "c5": 15.781241796248878, - "c6": 13.021524516305185, - "c7": 40.50002914270699 + "points": { + "c1": 2.4606812130721565, + "c2": 21.492104085621747, + "c3": 7.476655791985522, + "c4": 40.56816211107862, + "c5": 0.20912003230810683, + "c6": 19.32843222547603, + "c7": -31.73253186189728 }, - "vertexSeeds": { - "c1": 2.3103889653322676, - "c2": 1.9580721566342583, - "c3": 2.2663298496563513, - "c4": 2.319746345321472, - "c5": 2.3009148391936223, - "c6": 2.0535607761017607, - "c7": 2.0621698720868884 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027739, + "c3": 2.889505316689783, + "c4": 2.3116042533518244, + "c5": 1.7337031900138684, + "c6": 1.1558021266759122, + "c7": 0.5779010633379561 }, "rgb": [238, 201, 159] }, @@ -41208,23 +41208,23 @@ "year": 1702, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 30.949645442890812, - "c2": 7.17354358519858, - "c3": 8.792641470360948, - "c4": 27.503697962072877, - "c5": 26.285565637938646, - "c6": -10.381568348498952, - "c7": 28.043825426966237 + "points": { + "c1": 34.45362317053352, + "c2": 34.676853238440486, + "c3": -23.92524512603689, + "c4": -4.579890105274529, + "c5": 17.007799680737087, + "c6": 18.926613855797086, + "c7": 14.084716532086098 }, - "vertexSeeds": { - "c1": 2.14311838448098, - "c2": 1.7717394010272642, - "c3": 2.088842701512158, - "c4": 1.9710571133426185, - "c5": 1.8411565963368999, - "c6": 1.9050661548532233, - "c7": 1.929906359020665 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.5889967637540447, + "c4": 2.071197411003235, + "c5": 1.553398058252428, + "c6": 1.035598705501619, + "c7": 0.5177993527508095 }, "rgb": [58, 15, 49] }, @@ -41235,23 +41235,23 @@ "year": 1702, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 25.26796083836021, - "c2": -0.13178834457574595, - "c3": 23.439569519240692, - "c4": 12.701260551696024, - "c5": -2.1216298399933464, - "c6": -13.929853470512725, - "c7": 26.163927561878715 + "points": { + "c1": -12.782347992344747, + "c2": -13.379610319976116, + "c3": 32.35830963972435, + "c4": 16.025608985831973, + "c5": 27.428508370520007, + "c6": 24.111344608457543, + "c7": -7.055071847812499 }, - "vertexSeeds": { - "c1": 4.645241000613304, - "c2": 4.236382849282736, - "c3": 4.4828525621182935, - "c4": 4.371225112065332, - "c5": 4.329719599450599, - "c6": 4.519493997860694, - "c7": 4.096353769933034 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934812, + "c3": 5.709662505779012, + "c4": 4.567730004623204, + "c5": 3.425797503467403, + "c6": 2.283865002311602, + "c7": 1.141932501155801 }, "rgb": [238, 201, 159] }, @@ -41262,23 +41262,23 @@ "year": 1702, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 2.5748445345646154, - "c2": -3.724982169230998, - "c3": 14.173909941457719, - "c4": 26.306741322080658, - "c5": 13.426525886662947, - "c6": -0.7438626948562437, - "c7": -24.53577930015929 + "points": { + "c1": 30.22680214090934, + "c2": -15.549559413858349, + "c3": -10.44594592824851, + "c4": -5.379516467305464, + "c5": -15.851620185445851, + "c6": 23.01557928069469, + "c7": -18.262165681774604 }, - "vertexSeeds": { - "c1": 4.317858146505783, - "c2": 4.697643323234697, - "c3": 4.671608761813026, - "c4": 4.221906409752931, - "c5": 4.3938357182507835, - "c6": 4.416528155802308, - "c7": 4.390349301432954 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216364, + "c3": 5.871474803513636, + "c4": 4.697179842810907, + "c5": 3.5228848821081793, + "c6": 2.348589921405457, + "c7": 1.1742949607027222 }, "rgb": [222, 0, 59] }, @@ -41289,23 +41289,23 @@ "year": 1702, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 2.744392487428282, - "c2": 12.356451036221905, - "c3": 11.768766907993019, - "c4": 9.017314719745599, - "c5": -19.566172401146897, - "c6": -16.71247085569737, - "c7": -23.853327194580036 + "points": { + "c1": -15.099909836417655, + "c2": 23.199906372613434, + "c3": 12.695945246309904, + "c4": 25.723350732062443, + "c5": 17.636857476798767, + "c6": -17.20635449684645, + "c7": 23.196084124137116 }, - "vertexSeeds": { - "c1": 3.4869447498815083, - "c2": 3.107014502504033, - "c3": 3.6425503830725994, - "c4": 3.449818570103291, - "c5": 3.046904456694127, - "c6": 3.6427678443848865, - "c7": 3.2336284454892894 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601944, + "c3": 4.36893203883495, + "c4": 3.4951456310679623, + "c5": 2.621359223300974, + "c6": 1.7475728155339811, + "c7": 0.8737864077669929 }, "rgb": [58, 15, 49] }, @@ -41316,23 +41316,23 @@ "year": 1702, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -17.67188716897728, - "c2": -23.050046116188664, - "c3": -23.40839293117284, - "c4": -24.17773579781364, - "c5": -23.958742509982244, - "c6": -17.224928445577113, - "c7": 12.387021590774992 + "points": { + "c1": 25.97244981306472, + "c2": -5.305640550676806, + "c3": -1.6893279519639037, + "c4": -29.014874492100013, + "c5": 16.826826806585416, + "c6": -14.912435678775212, + "c7": 23.046047154427193 }, - "vertexSeeds": { - "c1": 4.714660096993374, - "c2": 4.27330060131637, - "c3": 4.620855408271983, - "c4": 3.869449287402325, - "c5": 4.202302501952713, - "c6": 4.066896438269695, - "c7": 4.599015003816149 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [86, 146, 138] }, @@ -41343,23 +41343,23 @@ "year": 1702, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 2.456767360356224, - "c2": -11.027207693076793, - "c3": 19.429076181065113, - "c4": -22.955998671708983, - "c5": -30.077517866089288, - "c6": 28.830131127810667, - "c7": -23.766923451006996 + "points": { + "c1": -10.88644890183717, + "c2": 25.447252221031604, + "c3": 5.550968572341645, + "c4": -12.93591885129874, + "c5": 6.710331320917625, + "c6": 12.491602360306395, + "c7": -5.2599953661497665 }, - "vertexSeeds": { - "c1": 3.7880547572060794, - "c2": 4.178861975435929, - "c3": 3.958354772466491, - "c4": 4.170168267253272, - "c5": 3.625147345775981, - "c6": 4.353993489800313, - "c7": 4.315716577714628 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572817, + "c3": 5.501618122977346, + "c4": 4.401294498381879, + "c5": 3.3009708737864067, + "c6": 2.2006472491909395, + "c7": 1.1003236245954715 }, "rgb": [86, 146, 138] }, @@ -41370,23 +41370,23 @@ "year": 1702, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 32.399053391282294, - "c2": -18.690780774110408, - "c3": 7.956204782477172, - "c4": -5.169042443448134, - "c5": 17.02655290281637, - "c6": 14.299618140487496, - "c7": -19.563141112537018 + "points": { + "c1": -6.106779637543902, + "c2": -31.09356330883348, + "c3": -31.048095074582896, + "c4": -27.81561804581308, + "c5": -7.0343870189119535, + "c6": -4.585453328883336, + "c7": 2.8210574401991195 }, - "vertexSeeds": { - "c1": 2.7936942120425257, - "c2": 2.830690832565244, - "c3": 2.5490283762865835, - "c4": 2.753805412752952, - "c5": 2.994274205677021, - "c6": 2.9922350786674063, - "c7": 2.8103044127600874 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274617, + "c3": 3.60610263522885, + "c4": 2.8848821081830787, + "c5": 2.163661581137307, + "c6": 1.4424410540915404, + "c7": 0.7212205270457691 }, "rgb": [86, 146, 138] }, @@ -41397,23 +41397,23 @@ "year": 1702, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 29.78151007028913, - "c2": 24.645799705102107, - "c3": -33.7056392226161, - "c4": -20.40170042581018, - "c5": 18.844441550584683, - "c6": -31.94797496255223, - "c7": 4.740595266782812 + "points": { + "c1": 4.3187372299071, + "c2": -38.586120009229695, + "c3": -12.82827614464798, + "c4": 35.07351781287957, + "c5": 27.651501156913923, + "c6": 10.619265717997393, + "c7": -21.072125228093185 }, - "vertexSeeds": { - "c1": 5.550531093084022, - "c2": 5.605090167720988, - "c3": 5.754699753114121, - "c4": 5.94107141844497, - "c5": 5.855086077573679, - "c6": 5.222804695581686, - "c7": 5.547648728895572 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353671, + "c3": 7.674526121128056, + "c4": 6.139620896902451, + "c5": 4.604715672676836, + "c6": 3.0698104484512205, + "c7": 1.5349052242256154 }, "rgb": [86, 146, 138] }, @@ -41424,23 +41424,23 @@ "year": 1702, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -4.214438819654042, - "c2": 1.6572116854635652, - "c3": 2.3998678361474077, - "c4": 30.038112227235786, - "c5": 23.161481972106188, - "c6": 15.405524436308895, - "c7": -25.294180456255766 + "points": { + "c1": 23.613478171543825, + "c2": -20.230031685402366, + "c3": -10.283305546889679, + "c4": 35.29017707673111, + "c5": -33.863390942031884, + "c6": 14.597783804505319, + "c7": -14.35448149313526 }, - "vertexSeeds": { - "c1": 3.69094435237128, - "c2": 3.6244166321958096, - "c3": 3.742696646069718, - "c4": 3.6749649323242854, - "c5": 3.8825338447461633, - "c6": 3.8638059586900475, - "c7": 3.6314997481997904 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304204, + "c4": 3.7540453074433624, + "c5": 2.8155339805825275, + "c6": 1.8770226537216852, + "c7": 0.9385113268608426 }, "rgb": [86, 146, 138] }, @@ -41451,23 +41451,23 @@ "year": 1702, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 20.245738430387505, - "c2": 20.92217247992162, - "c3": -9.62525760736931, - "c4": 19.269472697868373, - "c5": 6.402164369661158, - "c6": -10.88549101059429, - "c7": -17.542745678085158 + "points": { + "c1": -5.306985728092656, + "c2": 32.097829148020324, + "c3": 29.174558010280478, + "c4": 28.024620187117563, + "c5": 26.345985973899175, + "c6": 8.827713519046277, + "c7": 23.781002023838937 }, - "vertexSeeds": { - "c1": 1.6394695237390686, - "c2": 1.852558641099023, - "c3": 1.6988165771159425, - "c4": 1.7377155378584113, - "c5": 1.6940714963593146, - "c6": 1.7789343929540915, - "c7": 1.6963190682067708 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.6907073509015267, + "c3": 2.24225612575127, + "c4": 1.7938049006010168, + "c5": 1.3453536754507633, + "c6": 0.896902450300507, + "c7": 0.4484512251502535 }, "rgb": [86, 146, 138] }, @@ -41478,23 +41478,23 @@ "year": 1702, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -33.88090004855098, - "c2": 12.310503768598373, - "c3": -0.3994187767154358, - "c4": -11.862428386203927, - "c5": -30.436411581860487, - "c6": -24.103420122546396, - "c7": -12.76511919889959 + "points": { + "c1": -28.7715931446821, + "c2": 18.143230316034533, + "c3": 32.29308277545657, + "c4": -29.49041761611474, + "c5": -31.213064372681025, + "c6": -9.629360368797215, + "c7": -1.8901461589853668 }, - "vertexSeeds": { - "c1": 2.4310777140512276, - "c2": 2.627218832848251, - "c3": 2.2794864125948084, - "c4": 2.6536010633221663, - "c5": 2.1630497775501274, - "c6": 2.3773191394643827, - "c7": 2.8461534693428723 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952843, + "c3": 3.4211742949607027, + "c4": 2.736939435968562, + "c5": 2.0527045769764216, + "c6": 1.368469717984281, + "c7": 0.6842348589921405 }, "rgb": [77, 76, 132] }, @@ -41505,23 +41505,23 @@ "year": 1703, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": -13.602736077120198, - "c2": -52.98199856283864, - "c3": -44.40385161945183, - "c4": 58.732037527277114, - "c5": -32.497675919743926, - "c6": -47.275082517567355, - "c7": -37.93209052085321 + "points": { + "c1": -54.71237149165485, + "c2": -13.515877187317834, + "c3": 9.912629026158243, + "c4": 34.33861476273181, + "c5": 43.92417685293695, + "c6": 46.318824993004526, + "c7": -10.16822005241449 }, - "vertexSeeds": { - "c1": 2.2571815298959894, - "c2": 2.1790677174298376, - "c3": 2.371931368018691, - "c4": 2.3372301021130824, - "c5": 2.2112974250174107, - "c6": 2.154055716169054, - "c7": 2.332894129307531 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.495145631067962, + "c3": 2.9126213592232997, + "c4": 2.33009708737864, + "c5": 1.747572815533981, + "c6": 1.1650485436893216, + "c7": 0.5825242718446593 }, "rgb": [77, 76, 132] }, @@ -41532,23 +41532,23 @@ "year": 1702, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -42.4357927762715, - "c2": 42.57633082839671, - "c3": 29.994440900813935, - "c4": 6.299257222308519, - "c5": 11.37403034957817, - "c6": -38.74223205426442, - "c7": -0.25936119405028535 + "points": { + "c1": -16.89556221701356, + "c2": 1.5531560735472993, + "c3": -40.21530656928064, + "c4": 25.83907912181308, + "c5": -5.566605268766786, + "c6": -11.196828982152617, + "c7": -25.67029737291007 }, - "vertexSeeds": { - "c1": 3.990598152105337, - "c2": 4.578810828370379, - "c3": 4.4276532942797395, - "c4": 3.9888473323315417, - "c5": 4.002932121612265, - "c6": 4.240569261930826, - "c7": 4.248184668495828 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -41559,23 +41559,23 @@ "year": 1702, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -19.82556059089445, - "c2": 28.102686699229658, - "c3": 11.340864978807964, - "c4": 25.119114629667514, - "c5": 15.427396926059657, - "c6": -22.99825910003246, - "c7": -11.522148057475349 + "points": { + "c1": -5.220901189369563, + "c2": 8.201584630059585, + "c3": -3.7429491204072747, + "c4": -28.92043893062549, + "c5": -6.372698946837289, + "c6": -27.698501393355077, + "c7": -18.648824153035935 }, - "vertexSeeds": { - "c1": 2.6987233824358494, - "c2": 2.680585226802173, - "c3": 2.7351908721526605, - "c4": 2.7273257959083934, - "c5": 2.6321037961469207, - "c6": 2.674707000219305, - "c7": 2.712927244098569 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791958, + "c3": 3.3287101248266344, + "c4": 2.662968099861294, + "c5": 1.9972260748959705, + "c6": 1.331484049930647, + "c7": 0.6657420249653235 }, "rgb": [238, 201, 159] }, @@ -41586,23 +41586,23 @@ "year": 1702, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 7.4752571246029405, - "c2": 13.354423147226989, - "c3": -0.1529988434387306, - "c4": 5.699565612000946, - "c5": 2.6299160877995647, - "c6": 9.908197153489418, - "c7": 17.363724231534988 + "points": { + "c1": -7.56698688059701, + "c2": 33.29360820492336, + "c3": 25.217752623549735, + "c4": 37.095119712041196, + "c5": -12.387176059927093, + "c6": 2.75830488046617, + "c7": 28.863918332842815 }, - "vertexSeeds": { - "c1": 12.341569699446678, - "c2": 11.755323873472854, - "c3": 11.029886679135169, - "c4": 11.255158579517026, - "c5": 11.766931228699672, - "c6": 11.419854757761879, - "c7": 11.499945496071371 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.03051317614425, + "c3": 15.025427646786857, + "c4": 12.020342117429491, + "c5": 9.015256588072125, + "c6": 6.01017105871476, + "c7": 3.0050855293573653 }, "rgb": [86, 146, 138] }, @@ -41613,23 +41613,23 @@ "year": 1702, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 22.359877321172533, - "c2": 26.181933333947498, - "c3": -14.451972448393246, - "c4": 5.875213044572334, - "c5": -21.165047490678397, - "c6": -15.249159956393983, - "c7": -3.791055240515778 + "points": { + "c1": 27.825245222338374, + "c2": 19.37534969125886, + "c3": 5.988818430795845, + "c4": 11.491899706268121, + "c5": 14.180175123078307, + "c6": 0.1322233983418748, + "c7": 12.677308905575835 }, - "vertexSeeds": { - "c1": 1.8171577962216765, - "c2": 1.6117757432554474, - "c3": 1.6161103703725892, - "c4": 1.521915141171531, - "c5": 1.7994329342419721, - "c6": 1.6318127637264095, - "c7": 1.705700294557514 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.690707350901525, + "c3": 2.242256125751272, + "c4": 1.7938049006010164, + "c5": 1.3453536754507636, + "c6": 0.8969024503005082, + "c7": 0.448451225150253 }, "rgb": [86, 146, 138] }, @@ -41640,23 +41640,23 @@ "year": 1702, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 11.021990153683795, - "c2": -40.29042883172897, - "c3": -4.5703105756949824, - "c4": -38.24750545587112, - "c5": -7.343751144795455, - "c6": -20.005837325829198, - "c7": -20.909070710997305 + "points": { + "c1": -8.820841343810358, + "c2": 13.94661597187762, + "c3": 32.062305288006606, + "c4": -34.60122309529513, + "c5": 32.687830569598894, + "c6": -26.933358606825408, + "c7": -4.514263866292374 }, - "vertexSeeds": { - "c1": 6.353881100438444, - "c2": 6.502082955771008, - "c3": 6.482097847071705, - "c4": 6.408286460967876, - "c5": 7.721981983157262, - "c6": 6.333054076707281, - "c7": 7.736883410953251 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [238, 201, 159] }, @@ -41667,23 +41667,23 @@ "year": 1702, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -3.8886053929215265, - "c2": -14.92900831849462, - "c3": -28.55331248638276, - "c4": 12.949607016469521, - "c5": -20.857190559733105, - "c6": -25.566901869666154, - "c7": 14.78329362926172 + "points": { + "c1": -2.945058729192347, + "c2": 31.53104917354493, + "c3": 3.488660098760164, + "c4": 33.810544447369196, + "c5": 8.470789483542653, + "c6": -0.9345287521850807, + "c7": -2.023128615945783 }, - "vertexSeeds": { - "c1": 3.3360915102250077, - "c2": 3.187587334710297, - "c3": 3.676629789428707, - "c4": 3.0202251821883714, - "c5": 3.7336402554317374, - "c6": 3.5639499374356616, - "c7": 3.135665600396623 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803052, + "c3": 4.484512251502543, + "c4": 3.587609801202034, + "c5": 2.690707350901526, + "c6": 1.793804900601017, + "c7": 0.8969024503005085 }, "rgb": [238, 201, 159] }, @@ -41694,23 +41694,23 @@ "year": 1703, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": -41.69017205792169, - "c2": 2.675020830569437, - "c3": -11.437336824990624, - "c4": 32.3297591716552, - "c5": -46.97602243506435, - "c6": 12.577792398528402, - "c7": -13.78323985615873 + "points": { + "c1": 39.48261665538645, + "c2": -42.90666283453254, + "c3": -6.383346472411205, + "c4": -8.824836332753321, + "c5": -24.14940083629887, + "c6": 32.10421865001386, + "c7": -32.2633369882509 }, - "vertexSeeds": { - "c1": 3.0613618064727017, - "c2": 2.4955843359229464, - "c3": 2.926364987882326, - "c4": 2.6303072989691016, - "c5": 2.6524323544862565, - "c6": 2.544516159386579, - "c7": 2.9700342212161948 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515948, + "c3": 3.7447988904299585, + "c4": 2.995839112343969, + "c5": 2.246879334257975, + "c6": 1.4979195561719816, + "c7": 0.7489597780859917 }, "rgb": [238, 201, 159] }, @@ -41721,23 +41721,23 @@ "year": 1702, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 17.031611621632877, - "c2": 10.52189498452347, - "c3": 2.2227070050093722, - "c4": 17.258621940192043, - "c5": 12.156797817881923, - "c6": -0.4176564148383797, - "c7": 0.0931515593668486 + "points": { + "c1": -13.082935135537616, + "c2": 2.6860081929668347, + "c3": -11.012748473420977, + "c4": -4.833221206158473, + "c5": 3.6631009076227627, + "c6": 5.37435651161384, + "c7": -23.04981754398394 }, - "vertexSeeds": { - "c1": 0.8928020455784049, - "c2": 0.9427662890958515, - "c3": 0.9689684860152772, - "c4": 0.894921896824508, - "c5": 0.9519736186267607, - "c6": 0.9706223132216307, - "c7": 0.859630484937627 + "offsets": { + "c1": 1.6828478964401297, + "c2": 1.4424410540915402, + "c3": 1.2020342117429497, + "c4": 0.9616273693943601, + "c5": 0.7212205270457696, + "c6": 0.48081368469718005, + "c7": 0.24040684234859064 }, "rgb": [222, 0, 59] }, @@ -41748,23 +41748,23 @@ "year": 1702, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -0.5116158693170867, - "c2": -16.60719688176309, - "c3": 15.709254792418019, - "c4": 15.131588311178543, - "c5": -19.487124800800515, - "c6": 0.8628778325842781, - "c7": -19.224826746478335 + "points": { + "c1": 16.94401076273898, + "c2": 10.975052829314425, + "c3": 20.739431593369336, + "c4": -1.707285422049445, + "c5": 15.70934317380689, + "c6": 29.111137179232063, + "c7": -1.4826921228512369 }, - "vertexSeeds": { - "c1": 1.2358830736419473, - "c2": 1.2363850298150816, - "c3": 1.1879507178698374, - "c4": 1.2916329322358437, - "c5": 1.2959024084042408, - "c6": 1.1802975288124662, - "c7": 1.19077760692957 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350902, + "c3": 1.5718908922792418, + "c4": 1.2575127138233935, + "c5": 0.9431345353675451, + "c6": 0.6287563569116967, + "c7": 0.31437817845584837 }, "rgb": [77, 76, 132] }, @@ -41775,23 +41775,23 @@ "year": 1702, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 30.034972576968062, - "c2": 2.789280249314185, - "c3": 2.0494031150091807, - "c4": -16.436703588280132, - "c5": -4.560759079058222, - "c6": -1.7185977258244698, - "c7": -20.897739154355484 + "points": { + "c1": -9.22937173079854, + "c2": -11.121150488506771, + "c3": 1.1076404935844835, + "c4": 7.91878442190724, + "c5": 10.073430330877407, + "c6": 9.18741667245699, + "c7": -9.390094206992615 }, - "vertexSeeds": { - "c1": 1.850878344714227, - "c2": 1.8812649443963654, - "c3": 1.6735144399433524, - "c4": 1.6482607346216156, - "c5": 1.8909032680282984, - "c6": 1.7516731005581496, - "c7": 1.5924654535073852 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022192, + "c3": 2.3116042533518257, + "c4": 1.8492834026814613, + "c5": 1.386962552011095, + "c6": 0.9246417013407306, + "c7": 0.4623208506703666 }, "rgb": [222, 0, 59] }, @@ -41802,23 +41802,23 @@ "year": 1702, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -20.41673076085972, - "c2": 19.04044988338903, - "c3": 15.812228093343592, - "c4": -20.094378229049845, - "c5": 6.979463468485733, - "c6": 6.1762243502142695, - "c7": 10.347495241770964 + "points": { + "c1": -4.545785564421347, + "c2": 4.714370559731165, + "c3": 25.710006301824812, + "c4": 19.544100117286725, + "c5": -10.837109800624457, + "c6": 14.269227004345943, + "c7": 18.596072071168223 }, - "vertexSeeds": { - "c1": 1.5397092211631995, - "c2": 1.5330855288519913, - "c3": 1.4455275861014585, - "c4": 1.4176705181941096, - "c5": 1.5597838774038082, - "c6": 1.6188777359167255, - "c7": 1.6053038572877205 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590835, + "c3": 1.9879796578825712, + "c4": 1.5903837263060565, + "c5": 1.1927877947295418, + "c6": 0.7951918631530271, + "c7": 0.39759593157651474 }, "rgb": [86, 146, 138] }, @@ -41829,23 +41829,23 @@ "year": 1703, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -18.615099874184196, - "c2": -2.18093876124734, - "c3": 21.238843177566622, - "c4": -33.5207871328974, - "c5": 2.0713944619711384, - "c6": 10.190819018065312, - "c7": -40.656700014358165 + "points": { + "c1": 33.9934690034855, + "c2": 30.832714634239608, + "c3": 18.946867561663836, + "c4": -6.397114850413544, + "c5": 24.652100571793667, + "c6": -43.603344887208344, + "c7": -14.168529297472581 }, - "vertexSeeds": { - "c1": 9.893878738673536, - "c2": 9.956611838937949, - "c3": 10.45464969961177, - "c4": 10.3628384589269, - "c5": 9.905473430024923, - "c6": 10.192158053266997, - "c7": 9.786972290749443 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.034674063800297, + "c3": 12.52889505316689, + "c4": 10.023116042533534, + "c5": 7.517337031900125, + "c6": 5.011558021266767, + "c7": 2.5057790106333835 }, "rgb": [86, 146, 138] }, @@ -41856,23 +41856,23 @@ "year": 1703, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -21.586677953052487, - "c2": 13.701144532675357, - "c3": -17.553254437070333, - "c4": 0.5646964727246555, - "c5": 36.2557818437686, - "c6": -15.460614941232805, - "c7": -28.584550644808825 + "points": { + "c1": -38.975558038970554, + "c2": -20.84633781405515, + "c3": 33.78187211133718, + "c4": -32.032387176829715, + "c5": 38.44698861589977, + "c6": 40.85200071091812, + "c7": 11.85631707931568 }, - "vertexSeeds": { - "c1": 2.120817743708429, - "c2": 2.194130291840982, - "c3": 2.0714376454399033, - "c4": 2.1158526209636603, - "c5": 2.0872661882587034, - "c6": 2.20202403009006, - "c7": 2.0609298031400862 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705962, + "c3": 2.704576976421637, + "c4": 2.163661581137308, + "c5": 1.6227461858529832, + "c6": 1.081830790568654, + "c7": 0.540915395284325 }, "rgb": [58, 15, 49] }, @@ -41883,23 +41883,23 @@ "year": 1702, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 24.241317780403108, - "c2": 26.689861078121083, - "c3": -0.32893565304136274, - "c4": 3.7710886432851893, - "c5": 19.221540396216305, - "c6": 0.631547200974552, - "c7": 28.35898236599914 + "points": { + "c1": -36.056766207156265, + "c2": 4.391669336072852, + "c3": -21.1001308940193, + "c4": -26.413451228190794, + "c5": -28.667246125199597, + "c6": 35.549121962621896, + "c7": 10.980903034834078 }, - "vertexSeeds": { - "c1": 6.263504334345852, - "c2": 6.579917051160358, - "c3": 5.807746357130613, - "c4": 5.48018757710727, - "c5": 6.565991899320979, - "c6": 6.448521144961717, - "c7": 5.809026805763461 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [222, 0, 59] }, @@ -41910,23 +41910,23 @@ "year": 1703, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": -11.01402286059028, - "c2": -47.31203968017652, - "c3": 3.5436108432683824, - "c4": -3.610887467761316, - "c5": 47.66432111946203, - "c6": -20.21959517540669, - "c7": 17.916232432834846 + "points": { + "c1": 54.14095601135671, + "c2": 12.478007473556744, + "c3": 34.57622091796985, + "c4": -28.17547909910658, + "c5": -3.3493843463916804, + "c6": -4.884056557985616, + "c7": 9.988636816647741 }, - "vertexSeeds": { - "c1": 4.417560427339038, - "c2": 3.869919924238458, - "c3": 4.475082747055417, - "c4": 4.559430457462709, - "c5": 3.6853365541151066, - "c6": 3.828354189145579, - "c7": 3.7414133058581025 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -41937,23 +41937,23 @@ "year": 1702, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -20.73733495671749, - "c2": 4.7717230000902155, - "c3": -21.716056276146, - "c4": 25.44974469285142, - "c5": -10.870695097416295, - "c6": -5.325463821231693, - "c7": 3.0163230052336196 + "points": { + "c1": 11.852819346308593, + "c2": 9.898480369234427, + "c3": 22.879289500487893, + "c4": -11.972784484861041, + "c5": -27.97412061971027, + "c6": -28.29327517185058, + "c7": 12.049107318748355 }, - "vertexSeeds": { - "c1": 8.306721103863804, - "c2": 8.15628230106064, - "c3": 7.667150900336438, - "c4": 7.523387035489055, - "c5": 7.940870556521031, - "c6": 7.975787020389484, - "c7": 7.8751704264525 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657429, + "c3": 10.147942672214514, + "c4": 8.118354137771618, + "c5": 6.0887656033287065, + "c6": 4.059177068885809, + "c7": 2.029588534442897 }, "rgb": [222, 0, 59] }, @@ -41964,23 +41964,23 @@ "year": 1702, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 9.320891590701734, - "c2": 28.632253775042486, - "c3": 2.5100363643818184, - "c4": -11.30879662125853, - "c5": 25.15392526814597, - "c6": 14.027599599759014, - "c7": 17.440775226788304 + "points": { + "c1": -28.629519873062883, + "c2": -11.266053155596076, + "c3": 18.409380948619216, + "c4": -2.458625404069881, + "c5": 11.598342261454889, + "c6": -19.604446627823464, + "c7": -15.726010212097943 }, - "vertexSeeds": { - "c1": 3.7465708367723, - "c2": 3.7251860839858595, - "c3": 3.7290986616301174, - "c4": 4.250670700674394, - "c5": 4.2860522186553816, - "c6": 4.049711659179552, - "c7": 3.9817553295131547 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -41991,23 +41991,23 @@ "year": 1702, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 2.395548728920737, - "c2": -4.5869360427698425, - "c3": 23.19811041036791, - "c4": -10.580447723830549, - "c5": -13.831726088498772, - "c6": 23.84474595697459, - "c7": 1.5353973593898331 + "points": { + "c1": -6.774545373948911, + "c2": -29.307302625130973, + "c3": 16.077436460088222, + "c4": -5.673100759764207, + "c5": 24.407732155134326, + "c6": 16.70873763164284, + "c7": -22.79399265456817 }, - "vertexSeeds": { - "c1": 2.8768146133587615, - "c2": 2.8122106682623382, - "c3": 2.99950134913745, - "c4": 2.4881123049840834, - "c5": 2.8824696661263447, - "c6": 2.4750270107570804, - "c7": 2.9950036633655865 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314842, + "c3": 3.6292186777623665, + "c4": 2.903374942209895, + "c5": 2.177531206657419, + "c6": 1.4516874711049474, + "c7": 0.725843735552476 }, "rgb": [86, 146, 138] }, @@ -42018,23 +42018,23 @@ "year": 1703, "resistanceReported": false, "duration": 42336000, - "curveSeeds": { - "c1": 22.206130269293737, - "c2": -21.13618637746363, - "c3": 2.9610187487155315, - "c4": -20.508559745561435, - "c5": -50.20711175590519, - "c6": -21.49304788241765, - "c7": 25.20000112102848 + "points": { + "c1": 50.259609806157286, + "c2": 39.93263770977663, + "c3": -11.65130927391668, + "c4": 46.53991356473388, + "c5": 33.77203962002619, + "c6": 30.22653368238629, + "c7": -8.019218643971925 }, - "vertexSeeds": { - "c1": 6.884162538395591, - "c2": 6.273141123658304, - "c3": 6.965807607622017, - "c4": 6.988330229793491, - "c5": 6.225752766206474, - "c6": 6.51981798895549, - "c7": 6.811630919749188 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [222, 0, 59] }, @@ -42045,23 +42045,23 @@ "year": 1702, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 5.116350070749135, - "c2": 22.59344193759241, - "c3": -12.852364214367395, - "c4": 8.618514434913507, - "c5": -5.424634262733871, - "c6": 0.8193393885405449, - "c7": 21.79577348049437 + "points": { + "c1": -28.665637449096756, + "c2": -30.8378264952863, + "c3": 24.184656614580945, + "c4": 23.444818186616416, + "c5": -25.33523612560259, + "c6": 24.09175513981858, + "c7": -4.64450033854752 }, - "vertexSeeds": { - "c1": 3.7522672369379775, - "c2": 3.64082873609188, - "c3": 3.542289949578886, - "c4": 3.5997928525282363, - "c5": 3.4567029881802203, - "c6": 3.4101543574765687, - "c7": 3.896898438449744 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366161, + "c3": 4.808136846971797, + "c4": 3.846509477577438, + "c5": 2.8848821081830804, + "c6": 1.9232547387887164, + "c7": 0.9616273693943582 }, "rgb": [58, 15, 49] }, @@ -42072,23 +42072,23 @@ "year": 1703, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 16.26385170691297, - "c2": -20.73816375636532, - "c3": 25.769358929095805, - "c4": 0.46631679986494845, - "c5": -18.596450095756985, - "c6": -24.908721193942228, - "c7": 14.440708059872247 + "points": { + "c1": -15.92824085905191, + "c2": 20.1723951542811, + "c3": 10.092814001697857, + "c4": -24.376293752437434, + "c5": -23.23505764135664, + "c6": 17.894929312621624, + "c7": 0.6736732133431254 }, - "vertexSeeds": { - "c1": 1.9416370155613496, - "c2": 2.0446578245141533, - "c3": 1.9997455856307425, - "c4": 2.073398508245874, - "c5": 1.9189498977784685, - "c6": 1.9440017920561852, - "c7": 2.2707418591590356 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668528, + "c3": 2.797041146555709, + "c4": 2.2376329172445684, + "c5": 1.678224687933425, + "c6": 1.1188164586222842, + "c7": 0.5594082293111432 }, "rgb": [86, 146, 138] }, @@ -42099,23 +42099,23 @@ "year": 1703, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -29.385610480182265, - "c2": 7.2542280087878765, - "c3": 10.674641532942111, - "c4": 12.241663711283813, - "c5": -10.868194874136048, - "c6": 30.36288823998595, - "c7": -21.971106514560613 + "points": { + "c1": -27.277068320444968, + "c2": -32.012687896054295, + "c3": -15.234902446184325, + "c4": 1.3272833993151494, + "c5": -22.01349869374073, + "c6": 0.5191370409526286, + "c7": -31.709953741119058 }, - "vertexSeeds": { - "c1": 6.313206856231187, - "c2": 6.1200148364041445, - "c3": 6.418201096798153, - "c4": 7.093830154746076, - "c5": 6.3945941330448575, - "c6": 6.864979150836758, - "c7": 5.775654120810964 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801669, + "c3": 8.50670365233472, + "c4": 6.805362921867779, + "c5": 5.10402219140083, + "c6": 3.4026814609338896, + "c7": 1.7013407304669401 }, "rgb": [222, 0, 59] }, @@ -42126,23 +42126,23 @@ "year": 1703, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 37.59850494099105, - "c2": -31.7281059307317, - "c3": -13.452583748415766, - "c4": -2.0797794192948516, - "c5": 6.921531304348726, - "c6": -2.4552114906129177, - "c7": -10.329375395407748 + "points": { + "c1": -18.928299952337237, + "c2": 26.222460555017904, + "c3": -27.084827507620545, + "c4": 24.969424764806874, + "c5": -29.891595070308796, + "c6": -33.44387265679712, + "c7": 27.752800615401995 }, - "vertexSeeds": { - "c1": 7.926958534009209, - "c2": 7.497978978810746, - "c3": 7.863233440909472, - "c4": 8.164114259782716, - "c5": 8.186761124882967, - "c6": 7.214414566451922, - "c7": 8.275809823986261 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335649, + "c3": 9.963014331946374, + "c4": 7.970411465557103, + "c5": 5.97780859916783, + "c6": 3.985205732778545, + "c7": 1.9926028663892843 }, "rgb": [238, 201, 159] }, @@ -42153,23 +42153,23 @@ "year": 1703, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -0.7923192469349871, - "c2": 7.348863624353154, - "c3": 11.552706194048017, - "c4": 25.91889421105316, - "c5": 29.577267827751637, - "c6": 1.2974081689608532, - "c7": 10.80440511867194 + "points": { + "c1": 11.535441292516971, + "c2": -3.2943833225607086, + "c3": -25.381180232352122, + "c4": 32.298886425672876, + "c5": 31.326101160788767, + "c6": -31.162988009196095, + "c7": -19.23630092292865 }, - "vertexSeeds": { - "c1": 8.761065999140591, - "c2": 5.056001841810953, - "c3": 6.185008894364552, - "c4": 3.99035630962901, - "c5": 4.994636429993003, - "c6": 7.692648030904339, - "c7": 2.1559798271189807 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055478, + "c6": 4.6232085067036515, + "c7": 2.3116042533518244 }, "rgb": [222, 0, 59] }, @@ -42180,23 +42180,23 @@ "year": 1703, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 2.968644715635307, - "c2": 4.836136259053923, - "c3": 4.641097470993408, - "c4": -23.865154999323575, - "c5": -27.09356040313249, - "c6": -13.652044150468393, - "c7": -0.8069304706937253 + "points": { + "c1": 19.92157806041991, + "c2": 22.722662466289385, + "c3": -10.188505611881194, + "c4": 30.178051909876714, + "c5": 0.9414869482786088, + "c6": 9.64740175541349, + "c7": 4.929987889026997 }, - "vertexSeeds": { - "c1": 11.453749605262605, - "c2": 11.692409739718293, - "c3": 10.066539178712496, - "c4": 10.380457490562613, - "c5": 10.814070431301715, - "c6": 10.664771692558627, - "c7": 11.021665082599093 + "offsets": { + "c1": 20.19417475728155, + "c2": 17.309292649098474, + "c3": 14.4244105409154, + "c4": 11.539528432732322, + "c5": 8.654646324549246, + "c6": 5.769764216366153, + "c7": 2.884882108183085 }, "rgb": [77, 76, 132] }, @@ -42207,23 +42207,23 @@ "year": 1703, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 8.581976494483825, - "c2": -26.688330578379986, - "c3": 9.504934848963515, - "c4": 24.707806007936682, - "c5": -30.012015710854804, - "c6": 1.6248314005699243, - "c7": 16.545905444663056 + "points": { + "c1": -31.5378327693968, + "c2": 28.069253111238353, + "c3": 4.603796771474066, + "c4": 2.9039012011504894, + "c5": -25.317226764468707, + "c6": 0.5439138785267659, + "c7": -3.088023311280349 }, - "vertexSeeds": { - "c1": 5.971867841622874, - "c2": 5.798433759661174, - "c3": 5.452299794127259, - "c4": 5.799415328106645, - "c5": 5.994263851059777, - "c6": 6.265502613393572, - "c7": 5.829789332586282 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.01525658807212, + "c3": 7.512713823393431, + "c4": 6.010171058714755, + "c5": 4.507628294036066, + "c6": 3.0050855293573777, + "c7": 1.5025427646786889 }, "rgb": [238, 201, 159] }, @@ -42234,23 +42234,23 @@ "year": 1703, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -15.384888239467259, - "c2": -0.9071572794328517, - "c3": 19.887935368375132, - "c4": -2.654075122251257, - "c5": -24.975748318349883, - "c6": -19.69288137315997, - "c7": -18.33697560786033 + "points": { + "c1": 18.228455590619916, + "c2": 6.721052366536213, + "c3": -9.140508504896662, + "c4": -27.29772838280745, + "c5": -14.571040318791873, + "c6": -26.61282050830947, + "c7": -7.160141869069449 }, - "vertexSeeds": { - "c1": 2.868705362913863, - "c2": 3.2139222560474408, - "c3": 3.1544963335946052, - "c4": 2.936223567271608, - "c5": 3.080780827043852, - "c6": 2.937908355895895, - "c7": 3.211417657887339 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717057, + "c3": 3.8603791030975505, + "c4": 3.0883032824780376, + "c5": 2.3162274618585252, + "c6": 1.5441516412390188, + "c7": 0.7720758206195062 }, "rgb": [58, 15, 49] }, @@ -42261,23 +42261,23 @@ "year": 1703, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -23.395645757736705, - "c2": 25.06674473425857, - "c3": 8.378442470070873, - "c4": -13.345939305959693, - "c5": 13.101176429778533, - "c6": 11.629828619515933, - "c7": 11.302960688637718 + "points": { + "c1": 36.78928148316752, + "c2": 35.71635341397019, + "c3": -2.7624750988265063, + "c4": 27.97366448579735, + "c5": 36.454633820489114, + "c6": -18.202339812941204, + "c7": -20.712465984290468 }, - "vertexSeeds": { - "c1": 7.128948043001928, - "c2": 7.067773130847193, - "c3": 7.157040555531055, - "c4": 6.888930522986355, - "c5": 6.8540692009411295, - "c6": 6.971209506329639, - "c7": 7.401328390863641 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -42288,23 +42288,23 @@ "year": 1703, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -31.060689380684046, - "c2": -16.206234892616514, - "c3": -21.52197770100681, - "c4": -6.376781418230717, - "c5": 20.901618543303876, - "c6": 35.515661081173874, - "c7": -5.249022474894474 + "points": { + "c1": -22.336688583141118, + "c2": -4.719188651660112, + "c3": 6.911000963312937, + "c4": 27.64489758707947, + "c5": -31.007201389375435, + "c6": -30.217939805191328, + "c7": 14.387170193315598 }, - "vertexSeeds": { - "c1": 2.083671126618544, - "c2": 2.131143434903751, - "c3": 1.7974762795494548, - "c4": 2.0300720652913844, - "c5": 1.86851551010396, - "c6": 1.9425046024991763, - "c7": 1.8670803344519151 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.162274618585299, + "c3": 2.635228848821081, + "c4": 2.108183079056866, + "c5": 1.5811373092926482, + "c6": 1.054091539528433, + "c7": 0.5270457697642177 }, "rgb": [222, 0, 59] }, @@ -42315,23 +42315,23 @@ "year": 1703, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 17.896135412199538, - "c2": -1.9581988509195334, - "c3": -13.086161799593299, - "c4": -3.253890097481708, - "c5": 3.8247321134910415, - "c6": -5.075477240797596, - "c7": 13.615239781747224 + "points": { + "c1": -15.85683645240634, + "c2": 10.539470779945216, + "c3": 23.789270178003047, + "c4": -26.249576824270658, + "c5": 0.3220325209305557, + "c6": 16.591811129405226, + "c7": 20.496114107859686 }, - "vertexSeeds": { - "c1": 3.0907582669401426, - "c2": 2.8504835164103066, - "c3": 2.935466078926309, - "c4": 3.0266274254501084, - "c5": 2.937087160365246, - "c6": 2.977188555863906, - "c7": 3.070670254569126 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515948, + "c3": 3.7447988904299545, + "c4": 2.995839112343968, + "c5": 2.246879334257974, + "c6": 1.4979195561719805, + "c7": 0.7489597780859937 }, "rgb": [58, 15, 49] }, @@ -42342,23 +42342,23 @@ "year": 1703, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": -1.88617453357039, - "c2": 15.94342349120415, - "c3": 25.851985851237764, - "c4": -9.68375692285246, - "c5": 9.548701100480159, - "c6": 23.207446082057807, - "c7": -38.43070421994429 + "points": { + "c1": 25.470657762069045, + "c2": -46.62965653006965, + "c3": -23.635316045150557, + "c4": -42.375382425100746, + "c5": -31.031232380851037, + "c6": -6.922836676947284, + "c7": 5.042585887732791 }, - "vertexSeeds": { - "c1": 3.160507818544404, - "c2": 3.1053819130863825, - "c3": 3.3169995715880365, - "c4": 3.3241337147244603, - "c5": 3.3562174671322618, - "c6": 3.1669361958487054, - "c7": 3.35002746218469 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719375, + "c5": 2.4410540915395327, + "c6": 1.6273693943596839, + "c7": 0.8136846971798419 }, "rgb": [222, 0, 59] }, @@ -42369,23 +42369,23 @@ "year": 1703, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -9.905231994570958, - "c2": -17.897367091531773, - "c3": -20.158514660424885, - "c4": 13.015508352011476, - "c5": -9.587254175158439, - "c6": -19.24470063971807, - "c7": -21.38231871652001 + "points": { + "c1": -19.886156857287226, + "c2": -11.474935611375805, + "c3": -5.686118601982759, + "c4": -25.932009883373663, + "c5": -11.428290609858376, + "c6": 21.495676490738948, + "c7": 9.570456140364701 }, - "vertexSeeds": { - "c1": 5.181470754783294, - "c2": 5.798537339573252, - "c3": 5.691620046466945, - "c4": 5.385376159086705, - "c5": 5.7786285392541465, - "c6": 5.756385629591073, - "c7": 5.408687181794251 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605178032 }, "rgb": [58, 15, 49] }, @@ -42396,23 +42396,23 @@ "year": 1703, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -10.120583229239031, - "c2": 5.522677550582124, - "c3": 8.951208969538492, - "c4": 1.5259738810563732, - "c5": 0.2611900704493344, - "c6": -23.531192292087827, - "c7": 26.91966009836255 + "points": { + "c1": 10.235645613222786, + "c2": -27.27487974599094, + "c3": 13.321287657493642, + "c4": -22.20258417922704, + "c5": -28.14804725022763, + "c6": 16.13524908230965, + "c7": -16.95703931608501 }, - "vertexSeeds": { - "c1": 6.435057121301094, - "c2": 6.546901506217212, - "c3": 6.171267884793179, - "c4": 6.550535502839458, - "c5": 6.293338616742417, - "c6": 6.037754873241537, - "c7": 6.743273505795944 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798436, + "c4": 6.509477577438745, + "c5": 4.882108183079056, + "c6": 3.254738788719381, + "c7": 1.6273693943596905 }, "rgb": [86, 146, 138] }, @@ -42423,23 +42423,23 @@ "year": 1703, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 0.17229344657367562, - "c2": -28.444034090563818, - "c3": 14.407950115414685, - "c4": -20.667852928081036, - "c5": -27.94167496318912, - "c6": -17.73336460943808, - "c7": 37.58657725804064 + "points": { + "c1": -11.940955111661257, + "c2": 43.02974649480263, + "c3": 24.79666589690131, + "c4": 39.74842545324575, + "c5": 14.375335609542411, + "c6": 31.44406705348205, + "c7": -13.540304711858933 }, - "vertexSeeds": { - "c1": 5.5663167189749485, - "c2": 4.906534796179424, - "c3": 5.413993283037781, - "c4": 4.917185613290825, - "c5": 4.984073740116163, - "c6": 5.126631682588577, - "c7": 5.231651683283182 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106801, + "c3": 6.957928802588994, + "c4": 5.5663430420712, + "c5": 4.174757281553394, + "c6": 2.7831715210356, + "c7": 1.3915857605177944 }, "rgb": [86, 146, 138] }, @@ -42450,23 +42450,23 @@ "year": 1703, "resistanceReported": true, "duration": 22464000, - "curveSeeds": { - "c1": 16.85296334667857, - "c2": 11.067948579449322, - "c3": -30.69886776365294, - "c4": 25.45832865536088, - "c5": 34.37771409830711, - "c6": 30.635634856637978, - "c7": 7.3782190481424195 + "points": { + "c1": -11.100470926822464, + "c2": -11.534157241770117, + "c3": 33.7858106909391, + "c4": 5.7335880564088555, + "c5": 8.38881467701541, + "c6": -12.257337209632986, + "c7": 0.6215063189889278 }, - "vertexSeeds": { - "c1": 5.002871717270172, - "c2": 4.967635436864342, - "c3": 4.648468610460704, - "c4": 4.589824171246351, - "c5": 4.931831298805253, - "c6": 4.362490018307402, - "c7": 4.80323588877559 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497917, + "c3": 6.033287101248268, + "c4": 4.826629680998613, + "c5": 3.6199722607489586, + "c6": 2.4133148404993037, + "c7": 1.206657420249655 }, "rgb": [238, 201, 159] }, @@ -42477,23 +42477,23 @@ "year": 1704, "resistanceReported": false, "duration": 49593600, - "curveSeeds": { - "c1": -9.28842702668922, - "c2": 63.23223380918756, - "c3": 31.25065500762142, - "c4": 61.53249647391915, - "c5": -45.21673742691743, - "c6": 50.67204968378432, - "c7": 25.263203532572604 + "points": { + "c1": -32.018830880222716, + "c2": -13.855433569323594, + "c3": 25.92658863727395, + "c4": -23.406052976063457, + "c5": -21.23891454557922, + "c6": -13.840184122925521, + "c7": 28.38109561718194 }, - "vertexSeeds": { - "c1": 2.636237090590649, - "c2": 2.9198271498639996, - "c3": 2.6570160192319507, - "c4": 2.9965536177924785, - "c5": 3.195338784640993, - "c6": 2.883355702329944, - "c7": 3.1308041760667114 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837725, + "c3": 3.9297272306981035, + "c4": 3.1437817845584823, + "c5": 2.3578363384188643, + "c6": 1.571890892279243, + "c7": 0.7859454461396215 }, "rgb": [222, 0, 59] }, @@ -42504,23 +42504,23 @@ "year": 1703, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -9.26602091804931, - "c2": 14.25945543763423, - "c3": -15.130769707513565, - "c4": 10.60924976902853, - "c5": 10.712829377014593, - "c6": 7.57814527228313, - "c7": 12.500112179221773 + "points": { + "c1": 23.393388418955276, + "c2": -1.8418905045162148, + "c3": 17.484112907248942, + "c4": -0.09702485044654097, + "c5": 19.665956962476784, + "c6": -20.47035292596766, + "c7": -15.010340645692818 }, - "vertexSeeds": { - "c1": 5.495417214255372, - "c2": 5.640065229406887, - "c3": 5.72669189562837, - "c4": 5.099895756798803, - "c5": 5.94758042082552, - "c6": 6.110762131700877, - "c7": 5.473656232847682 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [58, 15, 49] }, @@ -42531,23 +42531,23 @@ "year": 1703, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 31.434484110857518, - "c2": -19.55364582185854, - "c3": -12.959796181202702, - "c4": 40.89175696086169, - "c5": 26.4208245931272, - "c6": 0.9957166829091477, - "c7": -30.208315850438247 + "points": { + "c1": -23.891147727535692, + "c2": -9.672319616455724, + "c3": 10.875944971090888, + "c4": 20.56391795581481, + "c5": -18.869809890323868, + "c6": -7.407053560034136, + "c7": -31.199868080029283 }, - "vertexSeeds": { - "c1": 3.571612125856508, - "c2": 3.1384127582319707, - "c3": 3.305398901105554, - "c4": 3.1402680465648727, - "c5": 3.5609421372613865, - "c6": 3.5524765303673425, - "c7": 3.2457249448310797 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481275, + "c3": 4.299583911234395, + "c4": 3.4396671289875145, + "c5": 2.579750346740634, + "c6": 1.7198335644937606, + "c7": 0.8599167822468803 }, "rgb": [77, 76, 132] }, @@ -42558,23 +42558,23 @@ "year": 1703, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -3.9133492373641445, - "c2": -20.40481215429284, - "c3": 3.202710856591448, - "c4": 17.98950979800305, - "c5": -7.926558078483012, - "c6": 23.231387519927864, - "c7": 16.943334185443597 + "points": { + "c1": 13.667583949220301, + "c2": -14.775143074270664, + "c3": 22.65685398204601, + "c4": -1.085742602256584, + "c5": -26.17667814272891, + "c6": -16.544339703237014, + "c7": -23.34565214245002 }, - "vertexSeeds": { - "c1": 2.73867393046627, - "c2": 2.7429748245365224, - "c3": 2.7205566263550414, - "c4": 2.7250316643938053, - "c5": 2.723552383217266, - "c6": 2.751509488804939, - "c7": 2.756891275083308 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751752, + "c3": 3.305594082293105, + "c4": 2.6444752658345014, + "c5": 1.9833564493758542, + "c6": 1.3222376329172507, + "c7": 0.6611188164586034 }, "rgb": [222, 0, 59] }, @@ -42585,23 +42585,23 @@ "year": 1703, "resistanceReported": true, "duration": 19699200, - "curveSeeds": { - "c1": -6.4950772017431575, - "c2": -30.854471995169902, - "c3": 0.940762194505762, - "c4": -7.435798530807094, - "c5": 17.034325136994664, - "c6": -17.550966635123757, - "c7": 19.529803712518405 + "points": { + "c1": -7.022296222505222, + "c2": 1.2100682650150674, + "c3": 5.47781972146786, + "c4": 19.75844336886587, + "c5": 6.5913852631259715, + "c6": -21.354470862990713, + "c7": -7.019087291368876 }, - "vertexSeeds": { - "c1": 3.1088082901554404, - "c2": 3.1088082901554404, - "c3": 3.1088082901554404, - "c4": 3.1088082901554404, - "c5": 3.1088082901554404, - "c6": 3.1088082901554404, - "c7": 3.1088082901554404 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -42612,23 +42612,23 @@ "year": 1703, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 27.94274659062002, - "c2": -21.46832226022947, - "c3": 34.246425224397456, - "c4": -34.9232840169288, - "c5": -33.188411887664515, - "c6": -39.00025577009629, - "c7": -25.127906703308607 + "points": { + "c1": -42.14903543674275, + "c2": 29.29645081817729, + "c3": -34.81520973725993, + "c4": 3.4995834058062982, + "c5": -4.532100789390732, + "c6": -14.565511337805585, + "c7": -32.99737848506244 }, - "vertexSeeds": { - "c1": 3.6184548361684703, - "c2": 3.613557269250648, - "c3": 3.525542048038034, - "c4": 3.7963914521905853, - "c5": 3.8310442983296986, - "c6": 3.531569935648778, - "c7": 3.8204851131031896 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004157, + "c3": 4.600092464170135, + "c4": 3.680073971336104, + "c5": 2.7600554785020837, + "c6": 1.840036985668052, + "c7": 0.920018492834021 }, "rgb": [222, 0, 59] }, @@ -42639,23 +42639,23 @@ "year": 1703, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 25.042857598745663, - "c2": -17.33174434534541, - "c3": 23.252955022561558, - "c4": -7.62459274848257, - "c5": 0.7353401792662382, - "c6": -20.540437667714603, - "c7": -2.6485281839577084 + "points": { + "c1": -19.021314105600567, + "c2": 18.55937040154997, + "c3": 38.18006368227954, + "c4": -14.351690246278945, + "c5": -2.5373697925471888, + "c6": 32.38075646690682, + "c7": -27.53614541739273 }, - "vertexSeeds": { - "c1": 5.520907905707582, - "c2": 5.27425367122277, - "c3": 5.438899714268012, - "c4": 4.997495745345072, - "c5": 5.551248598789208, - "c6": 5.230658837645233, - "c7": 5.394779435809792 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.888580674988445, + "c4": 5.510864539990753, + "c5": 4.133148404993062, + "c6": 2.755432269995379, + "c7": 1.377716134997687 }, "rgb": [238, 201, 159] }, @@ -42666,23 +42666,23 @@ "year": 1703, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 1.0484518530931624, - "c2": 17.757220637213464, - "c3": 31.955503727612722, - "c4": 15.451500220733749, - "c5": -12.117927466411803, - "c6": -22.34719994615719, - "c7": 23.981379006146526 + "points": { + "c1": -7.698136442248625, + "c2": -34.45328397581383, + "c3": 32.982962492346644, + "c4": 3.9611435606460432, + "c5": -8.826122651844386, + "c6": -2.9512199383754236, + "c7": -10.825285622888178 }, - "vertexSeeds": { - "c1": 3.4964505711229235, - "c2": 3.670388134311522, - "c3": 3.8499770126196706, - "c4": 3.987704525353644, - "c5": 3.947722209664374, - "c6": 3.5795683398661335, - "c7": 3.319491530656666 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486824, + "c3": 4.877484974572355, + "c4": 3.901987979657881, + "c5": 2.926490984743412, + "c6": 1.9509939898289432, + "c7": 0.9754969949144738 }, "rgb": [222, 0, 59] }, @@ -42693,23 +42693,23 @@ "year": 1703, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 20.59251697409337, - "c2": 18.797387854463672, - "c3": -2.4644961493378688, - "c4": 9.060608126410003, - "c5": 12.992165816650946, - "c6": 32.06724231590269, - "c7": -21.826695607347858 + "points": { + "c1": 23.80660020533402, + "c2": 5.70465144519558, + "c3": 37.23535069991152, + "c4": -8.39642805526426, + "c5": -35.939166298263686, + "c6": -22.87191215598972, + "c7": -4.198284140949049 }, - "vertexSeeds": { - "c1": 4.974632200767231, - "c2": 5.163892448673913, - "c3": 5.201750523976305, - "c4": 5.698381120766764, - "c5": 4.840343274147063, - "c6": 5.715386392906452, - "c7": 5.879317189331917 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [58, 15, 49] }, @@ -42720,23 +42720,23 @@ "year": 1703, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -14.637211688883419, - "c2": 22.338416742077747, - "c3": 29.18091655079383, - "c4": -12.438818129118914, - "c5": -8.033384238429349, - "c6": 3.3929974540727343, - "c7": -28.216012208705628 + "points": { + "c1": -16.99430715532038, + "c2": 17.402035367994515, + "c3": -20.732291859188457, + "c4": -28.536205999326867, + "c5": 16.216811701139974, + "c6": 35.03236117765809, + "c7": 14.299731646614525 }, - "vertexSeeds": { - "c1": 1.2803959122904005, - "c2": 1.3510410517809166, - "c3": 1.3299742413266806, - "c4": 1.2723343950636437, - "c5": 1.3396336261317199, - "c6": 1.3214336278779266, - "c7": 1.31774098483066 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959783, + "c3": 1.6643550624133159, + "c4": 1.3314840499306493, + "c5": 0.9986130374479871, + "c6": 0.6657420249653246, + "c7": 0.3328710124826623 }, "rgb": [77, 76, 132] }, @@ -42747,23 +42747,23 @@ "year": 1704, "resistanceReported": false, "duration": 40435200, - "curveSeeds": { - "c1": -13.156007197066472, - "c2": 36.29946512162926, - "c3": 0.7630452543173192, - "c4": -27.289274972771587, - "c5": 14.820725537613093, - "c6": 54.24376792342796, - "c7": -11.247907984194711 + "points": { + "c1": 43.8816108600082, + "c2": 52.47983373262523, + "c3": -11.02254947999375, + "c4": 35.86787647747381, + "c5": 25.277284127977403, + "c6": -41.132840605941595, + "c7": 11.869421638175986 }, - "vertexSeeds": { - "c1": 2.0830408153804445, - "c2": 1.5720163893366843, - "c3": 1.3493480988535862, - "c4": 1.5472249208000983, - "c5": 1.5745786675010585, - "c6": 1.8454282411552954, - "c7": 1.6744912130989085 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048548, + "c3": 2.5889967637540456, + "c4": 2.071197411003237, + "c5": 1.5533980582524272, + "c6": 1.0355987055016183, + "c7": 0.5177993527508093 }, "rgb": [86, 146, 138] }, @@ -42774,23 +42774,23 @@ "year": 1703, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 8.160188984398687, - "c2": 24.969820060361947, - "c3": -29.249976600873552, - "c4": 8.440972539211003, - "c5": 10.811347701439033, - "c6": -15.521261772330618, - "c7": -2.1168955114894885 + "points": { + "c1": -0.11564193186602978, + "c2": 26.76982249990695, + "c3": 1.1237597068168625, + "c4": 7.7956338264256, + "c5": -9.15574776814827, + "c6": -30.684521072552005, + "c7": -32.21564365288823 }, - "vertexSeeds": { - "c1": 1.941940640031969, - "c2": 1.7415356759061522, - "c3": 1.5660189654690653, - "c4": 1.8087973173897633, - "c5": 1.7352846799153263, - "c6": 1.826364640120787, - "c7": 1.8942142585106163 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102636, + "c3": 2.3578363384188616, + "c4": 1.8862690707350898, + "c5": 1.414701803051318, + "c6": 0.943134535367544, + "c7": 0.471567267683772 }, "rgb": [58, 15, 49] }, @@ -42801,23 +42801,23 @@ "year": 1703, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 31.67253598302301, - "c2": 27.433945487813915, - "c3": 9.158591680627175, - "c4": 5.59056094578542, - "c5": -15.817674631196908, - "c6": 16.715802089832877, - "c7": 9.459735229146396 + "points": { + "c1": -26.45351879657579, + "c2": 39.35309843172031, + "c3": 17.27800113793539, + "c4": -7.71898590574051, + "c5": -0.8140206004869484, + "c6": 10.461478691830742, + "c7": 4.924144181808941 }, - "vertexSeeds": { - "c1": 9.752715842315094, - "c2": 9.832391319797987, - "c3": 9.133850234195275, - "c4": 9.719188784392156, - "c5": 10.953941466846905, - "c6": 10.781268000025017, - "c7": 9.651077475972263 + "offsets": { + "c1": 18.478964401294498, + "c2": 15.839112343966711, + "c3": 13.199260286638927, + "c4": 10.55940822931114, + "c5": 7.919556171983356, + "c6": 5.27970411465557, + "c7": 2.639852057327785 }, "rgb": [86, 146, 138] }, @@ -42828,23 +42828,23 @@ "year": 1703, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 27.805223382438513, - "c2": -24.8263365917127, - "c3": 19.40474696878983, - "c4": -15.437608821544657, - "c5": -21.99807057092253, - "c6": 22.68198280416255, - "c7": 14.509691641929258 + "points": { + "c1": -12.026708857513096, + "c2": -14.305215353335548, + "c3": 4.656870515536518, + "c4": 21.539594405982967, + "c5": 13.12504858058228, + "c6": -12.407179634404613, + "c7": 5.902862633110885 }, - "vertexSeeds": { - "c1": 2.6227858322109934, - "c2": 2.6645127135532425, - "c3": 2.771381435815725, - "c4": 2.710685553196652, - "c5": 2.7689277615346644, - "c6": 2.5074168214958577, - "c7": 2.6968144033420978 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919565, + "c3": 3.3287101248266318, + "c4": 2.6629680998612986, + "c5": 1.9972260748959743, + "c6": 1.3314840499306493, + "c7": 0.6657420249653246 }, "rgb": [238, 201, 159] }, @@ -42855,23 +42855,23 @@ "year": 1703, "resistanceReported": true, "duration": 24883200, - "curveSeeds": { - "c1": 25.46839263715262, - "c2": -2.0459091555499, - "c3": 3.6267971619062322, - "c4": 6.837068115305108, - "c5": 31.27942950097281, - "c6": 26.19928939331386, - "c7": 30.783619567728522 + "points": { + "c1": 15.649369222063925, + "c2": 38.21648438595484, + "c3": 12.752162993343916, + "c4": -29.60531492688331, + "c5": -17.86811315770912, + "c6": -37.45526545722578, + "c7": 24.876767968797253 }, - "vertexSeeds": { - "c1": 9.253492039014132, - "c2": 8.524873422112487, - "c3": 7.685217036584001, - "c4": 9.160446861454982, - "c5": 8.513618775109835, - "c6": 9.732392029629942, - "c7": 9.29942801537706 + "offsets": { + "c1": 16.601941747572816, + "c2": 14.230235783633841, + "c3": 11.85852981969487, + "c4": 9.486823855755894, + "c5": 7.1151178918169204, + "c6": 4.743411927877947, + "c7": 2.3717059639389735 }, "rgb": [58, 15, 49] }, @@ -42882,23 +42882,23 @@ "year": 1703, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -3.787925995666434, - "c2": -2.078566784686693, - "c3": -28.91849401832555, - "c4": -14.117551134064133, - "c5": 28.68328370299205, - "c6": -25.14169008157522, - "c7": -31.1641203765561 + "points": { + "c1": -30.301566632515293, + "c2": -34.402814577757034, + "c3": 0.5730649431846118, + "c4": -4.841184420546362, + "c5": 5.116498992984802, + "c6": 4.347564915449517, + "c7": 23.22357484801808 }, - "vertexSeeds": { - "c1": 4.261705610865103, - "c2": 3.8944682405295783, - "c3": 3.6772041742618584, - "c4": 4.298717173887427, - "c5": 4.212339936318471, - "c6": 4.53692534346085, - "c7": 4.484889406331319 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055476, + "c3": 5.779010633379565, + "c4": 4.623208506703651, + "c5": 3.46740638002774, + "c6": 2.3116042533518253, + "c7": 1.1558021266759109 }, "rgb": [222, 0, 59] }, @@ -42909,23 +42909,23 @@ "year": 1704, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 37.99592694490507, - "c2": -22.664616301041956, - "c3": -6.509131002892325, - "c4": 12.341581062235036, - "c5": 30.969350138043332, - "c6": -14.465864123542229, - "c7": -32.171592760448306 + "points": { + "c1": 7.62037070612962, + "c2": 18.418022042721127, + "c3": -16.33355761781772, + "c4": 37.27457947452937, + "c5": 23.975355617192896, + "c6": 6.31377267862203, + "c7": -14.456687849430054 }, - "vertexSeeds": { - "c1": 11.226194408027233, - "c2": 11.33911834119163, - "c3": 10.881908796506002, - "c4": 12.63129865465555, - "c5": 11.037955494656101, - "c6": 12.335469605511463, - "c7": 12.659839968838488 + "offsets": { + "c1": 21.262135922330096, + "c2": 18.224687933425788, + "c3": 15.187239944521483, + "c4": 12.149791955617202, + "c5": 9.112343966712894, + "c6": 6.074895977808588, + "c7": 3.0374479889042814 }, "rgb": [222, 0, 59] }, @@ -42936,23 +42936,23 @@ "year": 1703, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 13.49401567051541, - "c2": -19.057284394104233, - "c3": -4.8922984594174, - "c4": 28.139530063899485, - "c5": -0.24373954535384712, - "c6": -27.17418003809486, - "c7": 2.6302229755319786 + "points": { + "c1": -7.194888092917985, + "c2": 16.480355550337897, + "c3": -3.753561027974996, + "c4": 35.3806792998888, + "c5": 9.563168158734932, + "c6": 17.76108506442816, + "c7": -5.690797521488474 }, - "vertexSeeds": { - "c1": 3.010926652899839, - "c2": 3.3247205710503276, - "c3": 3.179854259810078, - "c4": 3.5314887433604056, - "c5": 2.935524771750058, - "c6": 3.160287257928753, - "c7": 3.192388404571007 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [238, 201, 159] }, @@ -42963,23 +42963,23 @@ "year": 1703, "resistanceReported": false, "duration": 3888000, - "curveSeeds": { - "c1": -4.44613755420087, - "c2": 0.6485957890152925, - "c3": 12.550108057885302, - "c4": -1.1179432830657756, - "c5": 5.035695889312459, - "c6": 4.600872391918566, - "c7": 6.19376185217026 + "points": { + "c1": 6.531937407134219, + "c2": 10.321546793206863, + "c3": -12.729911282956653, + "c4": 12.521262979071551, + "c5": 11.808102967684047, + "c6": 12.251881699812877, + "c7": -4.053545662220394 }, - "vertexSeeds": { - "c1": 1.9478777295526672, - "c2": 2.0842603822626713, - "c3": 2.0643592620410636, - "c4": 2.0246136795142986, - "c5": 2.068434030364937, - "c6": 1.877333109209781, - "c7": 1.9001984398344889 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.02357836338419, + "c3": 2.5196486361534896, + "c4": 2.015718908922793, + "c5": 1.511789181692093, + "c6": 1.0078594544613966, + "c7": 0.5039297272307005 }, "rgb": [77, 76, 132] }, @@ -42990,23 +42990,23 @@ "year": 1703, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -2.1062853420599197, - "c2": 28.085797732520348, - "c3": 17.04809891681277, - "c4": 21.568864035989954, - "c5": -13.70648575192138, - "c6": 7.4101678119723005, - "c7": 19.32270614442968 + "points": { + "c1": 18.14215811738297, + "c2": 13.441563447900556, + "c3": -12.527411353410784, + "c4": 30.114917932219953, + "c5": 9.27159046986305, + "c6": 0.448741115018894, + "c7": 4.728947375691284 }, - "vertexSeeds": { - "c1": 2.3712285509834885, - "c2": 2.459616156228933, - "c3": 2.396394435176059, - "c4": 2.6010971916859282, - "c5": 2.3748625956686906, - "c6": 2.7192491057565227, - "c7": 2.662706384409315 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115105, + "c3": 3.2824780397595914, + "c4": 2.6259824318076763, + "c5": 1.9694868238557566, + "c6": 1.312991215903837, + "c7": 0.6564956079519173 }, "rgb": [58, 15, 49] }, @@ -43017,23 +43017,23 @@ "year": 1704, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 19.972828002331447, - "c2": 23.929002958657442, - "c3": 13.585800950079197, - "c4": 6.424962266624007, - "c5": 13.579331491408034, - "c6": -8.310663006768554, - "c7": 12.783974681652886 + "points": { + "c1": -19.934153982964933, + "c2": 6.106360676633749, + "c3": -11.19204916285016, + "c4": 32.4350051083162, + "c5": 38.17631668145507, + "c6": 29.781947043154297, + "c7": -5.987440376981617 }, - "vertexSeeds": { - "c1": 4.5527898418547865, - "c2": 3.913205011731431, - "c3": 4.592690428128331, - "c4": 4.596683100150451, - "c5": 4.565065846493474, - "c6": 4.165385137043637, - "c7": 3.9921616429767837 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [58, 15, 49] }, @@ -43044,23 +43044,23 @@ "year": 1704, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 25.318803995087187, - "c2": -26.70951614211696, - "c3": -10.537032278069244, - "c4": 25.914420207484397, - "c5": 6.165679420639066, - "c6": -5.045185103616699, - "c7": 12.650623578943744 + "points": { + "c1": 27.563018380389792, + "c2": 33.924651029832816, + "c3": 2.106966201750801, + "c4": 6.901832907248867, + "c5": 3.924134959046924, + "c6": 6.508661687838611, + "c7": 12.707721625015196 }, - "vertexSeeds": { - "c1": 6.6854628347354526, - "c2": 7.723436477024515, - "c3": 6.950936797728791, - "c4": 7.442025687171425, - "c5": 6.585500003761791, - "c6": 8.149499075459895, - "c7": 7.645111331562603 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300974, + "c3": 10.517799352750808, + "c4": 8.41423948220065, + "c5": 6.3106796116504835, + "c6": 4.207119741100325, + "c7": 2.1035598705501655 }, "rgb": [77, 76, 132] }, @@ -43071,23 +43071,23 @@ "year": 1704, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 36.07556392529789, - "c2": 34.33589022422958, - "c3": -9.107551110748709, - "c4": 36.41775401923619, - "c5": -38.03533710142631, - "c6": -29.42059727422734, - "c7": 9.409740304636998 + "points": { + "c1": -43.61176617143415, + "c2": 15.707870893975205, + "c3": -30.304061906602634, + "c4": 7.681861446941468, + "c5": 2.864524497790498, + "c6": -39.99376397570936, + "c7": -28.02061425972474 }, - "vertexSeeds": { - "c1": 7.670822667044581, - "c2": 7.403347493378871, - "c3": 7.3309348426621295, - "c4": 7.6172306314038485, - "c5": 7.520322172798444, - "c6": 7.716202047544016, - "c7": 7.5323449982175505 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.09570041608875, + "c3": 9.246417013407308, + "c4": 7.3971336107258345, + "c5": 5.547850208044392, + "c6": 3.6985668053629173, + "c7": 1.849283402681475 }, "rgb": [238, 201, 159] }, @@ -43098,23 +43098,23 @@ "year": 1704, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -7.454575615947331, - "c2": -18.55434076365479, - "c3": -0.2611084375323216, - "c4": 27.295555467534804, - "c5": 23.920884659572295, - "c6": 16.229363540533534, - "c7": 15.137396722759185 + "points": { + "c1": -8.91578551347823, + "c2": -23.907070953674612, + "c3": -5.4812527088883805, + "c4": -28.475893924302245, + "c5": 4.719278348438422, + "c6": 28.46187947206971, + "c7": 23.439753218496563 }, - "vertexSeeds": { - "c1": 9.589802622382539, - "c2": 9.562116075555062, - "c3": 9.75183509292417, - "c4": 9.913020916271753, - "c5": 9.68034249000556, - "c6": 9.573951945933874, - "c7": 9.434895119917215 + "offsets": { + "c1": 16.601941747572816, + "c2": 14.230235783633859, + "c3": 11.858529819694864, + "c4": 9.486823855755906, + "c5": 7.115117891816912, + "c6": 4.743411927877953, + "c7": 2.371705963938994 }, "rgb": [86, 146, 138] }, @@ -43125,23 +43125,23 @@ "year": 1704, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 2.162767177894416, - "c2": -23.43399606136954, - "c3": 47.03084442663659, - "c4": 27.605377163480327, - "c5": -47.748375730430226, - "c6": 17.176550672222618, - "c7": -41.10433102506409 + "points": { + "c1": 33.97411060194425, + "c2": -11.615332271627238, + "c3": 5.307796619252223, + "c4": 48.12969565487266, + "c5": 45.231267390981074, + "c6": -27.974781133603695, + "c7": -39.979934262791545 }, - "vertexSeeds": { - "c1": 9.142089102018295, - "c2": 9.083872164810883, - "c3": 9.765635877184897, - "c4": 9.571237249825703, - "c5": 9.479698832735632, - "c6": 9.791273341236815, - "c7": 9.602823067028234 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513177, + "c3": 11.789181692094315, + "c4": 9.431345353675452, + "c5": 7.0735090152565885, + "c6": 4.715672676837726, + "c7": 2.357836338418863 }, "rgb": [58, 15, 49] }, @@ -43152,23 +43152,23 @@ "year": 1704, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 32.41614522533412, - "c2": 6.77336269987984, - "c3": 32.6390698633483, - "c4": 13.425405123773658, - "c5": 36.430821671272426, - "c6": 26.786314609740522, - "c7": 8.55139177838032 + "points": { + "c1": -28.43467048133401, + "c2": 7.874504813296866, + "c3": -26.343411922653047, + "c4": 34.755478802832755, + "c5": -20.339491992745316, + "c6": 21.770377165249798, + "c7": 8.075556105092794 }, - "vertexSeeds": { - "c1": 5.649850813522741, - "c2": 5.635787467165197, - "c3": 5.788190275829736, - "c4": 6.392763405564778, - "c5": 5.792542247321255, - "c6": 6.0541322818285055, - "c7": 6.030702045318881 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.20943134535368, + "c3": 7.674526121128061, + "c4": 6.1396208969024535, + "c5": 4.604715672676834, + "c6": 3.0698104484512267, + "c7": 1.5349052242256203 }, "rgb": [58, 15, 49] }, @@ -43179,23 +43179,23 @@ "year": 1704, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 31.828120858532273, - "c2": -30.45387868618181, - "c3": -31.950861305555843, - "c4": 26.65158154881111, - "c5": 11.929426791063129, - "c6": 27.89484552775877, - "c7": 30.09169960928888 + "points": { + "c1": -9.992435173445813, + "c2": 5.458871389195394, + "c3": 34.35245469967555, + "c4": -3.9620498337466152, + "c5": 13.477404651834675, + "c6": 6.540411345835885, + "c7": 24.562473218275727 }, - "vertexSeeds": { - "c1": 5.391643923717658, - "c2": 5.635165308626358, - "c3": 5.322072497149286, - "c4": 5.532092477439896, - "c5": 5.69090024533372, - "c6": 5.731782304663902, - "c7": 5.650868192882191 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066583, + "c3": 6.9348127600554745, + "c4": 5.547850208044388, + "c5": 4.160887656033281, + "c6": 2.773925104022194, + "c7": 1.3869625520110869 }, "rgb": [58, 15, 49] }, @@ -43206,23 +43206,23 @@ "year": 1704, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 21.558608104047018, - "c2": 21.560192957385944, - "c3": -7.536496459648134, - "c4": -26.7084560136625, - "c5": -15.766906452977569, - "c6": -17.724110014282882, - "c7": -17.846754335588308 + "points": { + "c1": -15.424100674740028, + "c2": 37.686791113857666, + "c3": 2.247361866531122, + "c4": 5.122136615138714, + "c5": 3.420587549591211, + "c6": 13.036612414915652, + "c7": 22.998092382045414 }, - "vertexSeeds": { - "c1": 4.090249339861867, - "c2": 4.448737544358955, - "c3": 3.625024594987564, - "c4": 3.7263148974772933, - "c5": 4.095370011601453, - "c6": 3.634669050699652, - "c7": 3.541979377781827 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.54646324549237, + "c3": 5.45538603791031, + "c4": 4.3643088303282465, + "c5": 3.273231622746187, + "c6": 2.1821544151641232, + "c7": 1.0910772075820598 }, "rgb": [238, 201, 159] }, @@ -43233,23 +43233,23 @@ "year": 1703, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": 13.690502328534272, - "c2": -10.52557421231285, - "c3": -17.072589103636066, - "c4": -11.199158695478479, - "c5": -14.334460593384549, - "c6": -7.191925258207604, - "c7": 0.3376738465341411 + "points": { + "c1": -9.314499516961423, + "c2": 10.804496177989584, + "c3": -9.702986307821961, + "c4": -12.915477469839685, + "c5": 22.322855206778705, + "c6": 14.1344775550699, + "c7": -17.296387688852516 }, - "vertexSeeds": { - "c1": 4.892325343843647, - "c2": 5.09433117644501, - "c3": 4.593298954745164, - "c4": 5.109730885119431, - "c5": 4.760048788781416, - "c6": 4.673828983430922, - "c7": 4.713664462377517 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -43260,23 +43260,23 @@ "year": 1704, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -24.570134513735468, - "c2": 5.294666793360314, - "c3": 25.925973693970256, - "c4": 1.1172637849389915, - "c5": 23.885797644002643, - "c6": -19.752649030234487, - "c7": -29.95619207606532 + "points": { + "c1": 27.785179592149582, + "c2": 27.556360415311758, + "c3": -8.295680709728153, + "c4": -2.185764343586083, + "c5": -22.49065503584623, + "c6": 16.085775251210947, + "c7": 17.308319117433278 }, - "vertexSeeds": { - "c1": 2.785713147708007, - "c2": 2.996258019012736, - "c3": 3.047874600647731, - "c4": 3.0624349871772325, - "c5": 3.008024247550039, - "c6": 2.8861062079380866, - "c7": 2.8086047881886933 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.4382801664355105, + "c3": 3.6985668053629213, + "c4": 2.9588534442903405, + "c5": 2.219140083217751, + "c6": 1.4794267221451702, + "c7": 0.7397133610725894 }, "rgb": [238, 201, 159] }, @@ -43287,23 +43287,23 @@ "year": 1704, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 15.587456905402682, - "c2": 11.772436579298635, - "c3": -17.947164960937734, - "c4": 22.2562148327452, - "c5": 2.3964502924086872, - "c6": -33.98937635451942, - "c7": -1.1311329303742639 + "points": { + "c1": 6.761241148989271, + "c2": -11.854740570752824, + "c3": -30.891071889653816, + "c4": 33.317060194504705, + "c5": 2.917423478982222, + "c6": -6.034413347207099, + "c7": -25.565261843325203 }, - "vertexSeeds": { - "c1": 3.1376255581133887, - "c2": 3.13542975763714, - "c3": 3.2729432363491804, - "c4": 3.2954243895467137, - "c5": 3.092882633214745, - "c6": 3.32220045636089, - "c7": 3.3589903581400504 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [77, 76, 132] }, @@ -43314,23 +43314,23 @@ "year": 1704, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 28.239461732770067, - "c2": 16.561333933499526, - "c3": -30.48637444799995, - "c4": -12.629978898014649, - "c5": 13.489174339016579, - "c6": 5.486190924786982, - "c7": 21.58648327617945 + "points": { + "c1": -29.6619668087563, + "c2": -22.108458837448126, + "c3": 13.697855074410533, + "c4": 14.325250568996815, + "c5": 8.73870655386252, + "c6": 7.350419101660066, + "c7": 19.53919289147241 }, - "vertexSeeds": { - "c1": 4.021638404820713, - "c2": 4.395391880071323, - "c3": 3.7138670774221088, - "c4": 4.127351167732075, - "c5": 4.269010284070682, - "c6": 3.775388365053786, - "c7": 4.003675158430803 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251039, + "c3": 5.316689782709202, + "c4": 4.25335182616736, + "c5": 3.190013869625522, + "c6": 2.12667591308368, + "c7": 1.0633379565418377 }, "rgb": [222, 0, 59] }, @@ -43341,23 +43341,23 @@ "year": 1704, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -31.645843501966304, - "c2": -39.669160666203936, - "c3": -20.88065557852852, - "c4": 40.328678231671326, - "c5": -5.805828356798621, - "c6": 19.271547955419123, - "c7": 36.730814491611405 + "points": { + "c1": 31.18940301970789, + "c2": -25.62448525628375, + "c3": -10.701287333920426, + "c4": 11.479793574380764, + "c5": -25.076097359233014, + "c6": 28.238023538790024, + "c7": -23.533558455357177 }, - "vertexSeeds": { - "c1": 6.557265400758925, - "c2": 6.794879199391301, - "c3": 6.8746993104878324, - "c4": 6.6760899161743, - "c5": 6.863293564879563, - "c6": 6.6103197771963735, - "c7": 6.6449169183835 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364775, + "c3": 8.83032824780397, + "c4": 7.06426259824318, + "c5": 5.298196948682388, + "c6": 3.532131299121595, + "c7": 1.7660656495607923 }, "rgb": [58, 15, 49] }, @@ -43368,23 +43368,23 @@ "year": 1704, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 17.481012965803636, - "c2": 5.775919104680462, - "c3": -27.714188672455307, - "c4": 3.9377796227533466, - "c5": 5.911138764139771, - "c6": 16.670405745593555, - "c7": 12.455368489127139 + "points": { + "c1": -31.877353622848183, + "c2": -15.276914818417136, + "c3": 34.40608064652727, + "c4": 5.157062940482774, + "c5": 35.04173826866962, + "c6": -25.33381224591134, + "c7": 10.182524095897968 }, - "vertexSeeds": { - "c1": 3.8468946596407796, - "c2": 3.8069840433768665, - "c3": 3.505214739659947, - "c4": 3.796239520043369, - "c5": 3.654355042411968, - "c6": 3.764903343029799, - "c7": 3.58271099648068 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.52011095700416, + "c3": 4.600092464170132, + "c4": 3.680073971336104, + "c5": 2.7600554785020837, + "c6": 1.8400369856680556, + "c7": 0.9200184928340278 }, "rgb": [58, 15, 49] }, @@ -43395,23 +43395,23 @@ "year": 1704, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 32.737255554916615, - "c2": -16.897218622780223, - "c3": -34.341924490915645, - "c4": -4.500746661752721, - "c5": -10.208023788824224, - "c6": 27.96847573093595, - "c7": -28.005434996087228 + "points": { + "c1": -30.29630206109712, + "c2": 33.375046056420686, + "c3": -8.213339528571257, + "c4": -31.36046741264385, + "c5": -36.28341959248117, + "c6": -15.713236976522708, + "c7": -30.915840450929306 }, - "vertexSeeds": { - "c1": 5.922777837599506, - "c2": 5.497427463903288, - "c3": 5.166002111816733, - "c4": 5.561441404182437, - "c5": 5.348087331340206, - "c6": 5.224543090295247, - "c7": 5.85196354585589 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072123, + "c3": 7.512713823393437, + "c4": 6.010171058714743, + "c5": 4.507628294036057, + "c6": 3.0050855293573715, + "c7": 1.5025427646786857 }, "rgb": [86, 146, 138] }, @@ -43422,23 +43422,23 @@ "year": 1704, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -28.31860310722582, - "c2": 16.073967660108856, - "c3": 14.845963044289796, - "c4": -8.624875171363922, - "c5": 33.91973000689757, - "c6": -34.606534104413065, - "c7": 19.41703922292544 + "points": { + "c1": -27.872939963270184, + "c2": 14.522604190583692, + "c3": -5.551250948554834, + "c4": -17.919306497758026, + "c5": -19.165893743427787, + "c6": 15.408082576114289, + "c7": 5.759201838141443 }, - "vertexSeeds": { - "c1": 3.2813108827608466, - "c2": 3.3210095436542844, - "c3": 2.8435509814679305, - "c4": 2.7897551424679863, - "c5": 3.0508163316116725, - "c6": 3.0134736095711436, - "c7": 3.057204030252269 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388355, + "c3": 4.045307443365696, + "c4": 3.236245954692557, + "c5": 2.4271844660194177, + "c6": 1.6181229773462784, + "c7": 0.8090614886731392 }, "rgb": [238, 201, 159] }, @@ -43449,23 +43449,23 @@ "year": 1704, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 15.178792116210634, - "c2": -10.256686442973296, - "c3": -15.798053370190107, - "c4": 1.7768567382768126, - "c5": -13.953181562758003, - "c6": -20.533228985452517, - "c7": -18.395117708007 + "points": { + "c1": -15.280803736311956, + "c2": -1.2163902513415579, + "c3": -23.054445975113314, + "c4": -21.968701225210534, + "c5": 22.170010128419758, + "c6": 8.772759765571937, + "c7": 22.720392996814244 }, - "vertexSeeds": { - "c1": 6.08026111372256, - "c2": 4.9105301623084365, - "c3": 5.916672473114805, - "c4": 4.731151536560589, - "c5": 5.3526512765743846, - "c6": 5.353301219491678, - "c7": 5.737889636096573 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [222, 0, 59] }, @@ -43476,23 +43476,23 @@ "year": 1704, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 12.406822360347675, - "c2": -28.681020108184455, - "c3": 39.553407315786686, - "c4": 40.652618350525756, - "c5": 13.00975151452463, - "c6": 5.593700374796178, - "c7": -33.20169394424926 + "points": { + "c1": -25.36954630483666, + "c2": -32.971522146758176, + "c3": -7.675203763593736, + "c4": -7.637957027813179, + "c5": 41.5714839588577, + "c6": -19.412593429409284, + "c7": -29.031463378651413 }, - "vertexSeeds": { - "c1": 11.544902639960531, - "c2": 11.855058368874845, - "c3": 11.405036817370458, - "c4": 11.825580502030382, - "c5": 11.832095325634027, - "c6": 12.07728881553776, - "c7": 12.075796607342767 + "offsets": { + "c1": 20.19417475728155, + "c2": 17.30929264909847, + "c3": 14.424410540915394, + "c4": 11.539528432732315, + "c5": 8.654646324549235, + "c6": 5.769764216366157, + "c7": 2.8848821081830787 }, "rgb": [77, 76, 132] }, @@ -43503,23 +43503,23 @@ "year": 1704, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -8.845945408593803, - "c2": 8.411950642611735, - "c3": -11.179859365165164, - "c4": -4.175919832112967, - "c5": 6.357837786460124, - "c6": 19.716016004923816, - "c7": 23.731295087596052 + "points": { + "c1": 9.563126615441512, + "c2": 23.8694639264624, + "c3": 8.809755926421126, + "c4": -17.82200016909426, + "c5": 4.006369242183524, + "c6": -17.485735670476604, + "c7": 19.604012195560244 }, - "vertexSeeds": { - "c1": 2.3901556209121666, - "c2": 2.1311333357322955, - "c3": 2.2243479062890334, - "c4": 2.363931077334345, - "c5": 2.2458141658490223, - "c6": 2.2781491445588986, - "c7": 2.356967074262935 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.495145631067961, + "c3": 2.912621359223301, + "c4": 2.3300970873786406, + "c5": 1.7475728155339805, + "c6": 1.1650485436893203, + "c7": 0.5825242718446602 }, "rgb": [238, 201, 159] }, @@ -43530,23 +43530,23 @@ "year": 1704, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -0.7807033530516634, - "c2": 23.079053126232132, - "c3": 5.056566887959953, - "c4": 24.821458832634967, - "c5": -26.13446571322649, - "c6": -22.433860326353948, - "c7": 30.39773077815677 + "points": { + "c1": 21.81945026535771, + "c2": 8.380933667012677, + "c3": -9.173646573706609, + "c4": -9.921903526502728, + "c5": -26.236473346414307, + "c6": 25.554206511388003, + "c7": 29.016401597979282 }, - "vertexSeeds": { - "c1": 5.79390438708806, - "c2": 5.754388434499044, - "c3": 5.688814635262422, - "c4": 5.672206160174622, - "c5": 5.757079258657516, - "c6": 5.5943143634553385, - "c7": 5.5930268765223135 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066567, + "c3": 6.934812760055465, + "c4": 5.547850208044363, + "c5": 4.160887656033307, + "c6": 2.7739251040222044, + "c7": 1.3869625520111022 }, "rgb": [86, 146, 138] }, @@ -43557,23 +43557,23 @@ "year": 1704, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -13.550953661566101, - "c2": 19.68411973543857, - "c3": -27.60031816353739, - "c4": 23.057945265228334, - "c5": -30.56128944545539, - "c6": 18.605584922647203, - "c7": -19.131523189304104 + "points": { + "c1": -4.894993145286676, + "c2": 23.75554126521952, + "c3": 2.8555359771932274, + "c4": 24.359367009795157, + "c5": -23.121032621130315, + "c6": 10.343143468252592, + "c7": -14.684486842419687 }, - "vertexSeeds": { - "c1": 3.629217435889667, - "c2": 3.19686497785349, - "c3": 3.2518126343854896, - "c4": 3.406991467366413, - "c5": 3.722431912166454, - "c6": 3.8656456838731454, - "c7": 3.8519055334645667 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.6232085067036515, + "c4": 3.6985668053629226, + "c5": 2.77392510402219, + "c6": 1.8492834026814613, + "c7": 0.9246417013407332 }, "rgb": [58, 15, 49] }, @@ -43584,23 +43584,23 @@ "year": 1704, "resistanceReported": false, "duration": 43459200, - "curveSeeds": { - "c1": -32.81926374080861, - "c2": -42.17799287698051, - "c3": -51.29409978177695, - "c4": -29.076328333380502, - "c5": 52.021474950512115, - "c6": -16.998860781701104, - "c7": 16.619123695191362 + "points": { + "c1": 24.961183518198283, + "c2": 12.521521782215828, + "c3": -22.58111941106702, + "c4": -33.37504851790659, + "c5": 12.007386638746652, + "c6": 15.172049933982692, + "c7": -53.17415974726305 }, - "vertexSeeds": { - "c1": 4.807007628120761, - "c2": 4.662545115204247, - "c3": 4.827441517312899, - "c4": 4.3835935612548225, - "c5": 4.6940108159237655, - "c6": 4.522322766148738, - "c7": 4.366468313041256 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135922, + "c3": 5.825242718446602, + "c4": 4.660194174757281, + "c5": 3.495145631067961, + "c6": 2.3300970873786406, + "c7": 1.1650485436893203 }, "rgb": [222, 0, 59] }, @@ -43611,23 +43611,23 @@ "year": 1704, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -3.5502784595795305, - "c2": 13.263777570990136, - "c3": 12.793285600083607, - "c4": 3.195492138322045, - "c5": -4.9490904716558255, - "c6": -11.234223392426859, - "c7": 5.250695171967287 + "points": { + "c1": 1.6044925295623287, + "c2": -27.30565638101321, + "c3": 17.402754851792032, + "c4": 21.99645274644213, + "c5": 22.820371664298555, + "c6": -1.2175324729971209, + "c7": -11.368758836052574 }, - "vertexSeeds": { - "c1": 3.572884722434959, - "c2": 3.3906145999631003, - "c3": 3.9249725968208873, - "c4": 3.426029469384198, - "c5": 3.3579155183924527, - "c6": 3.5762925150234737, - "c7": 3.935502612709006 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325937, + "c3": 4.785020804438278, + "c4": 3.828016643550623, + "c5": 2.8710124826629686, + "c6": 1.914008321775314, + "c7": 0.9570041608876546 }, "rgb": [58, 15, 49] }, @@ -43638,23 +43638,23 @@ "year": 1704, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 23.971547262539147, - "c2": 32.75891763146305, - "c3": -25.191572469093735, - "c4": -3.7705941023099854, - "c5": -39.554704280426975, - "c6": -25.78353304769098, - "c7": -38.3488482218884 + "points": { + "c1": 4.142652570325907, + "c2": -2.942322779255612, + "c3": -31.709484627241203, + "c4": 30.568528044729263, + "c5": 34.72405808173458, + "c6": 36.30635703386885, + "c7": 17.644784896682467 }, - "vertexSeeds": { - "c1": 9.376399271900809, - "c2": 9.392381130832856, - "c3": 9.46698106740193, - "c4": 9.392987324928335, - "c5": 9.49370203503177, - "c6": 9.392682306873395, - "c7": 9.48809179608615 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.59223300970869, + "c3": 11.326860841423963, + "c4": 9.061488673139126, + "c5": 6.7961165048544006, + "c6": 4.530744336569563, + "c7": 2.265372168284838 }, "rgb": [77, 76, 132] }, @@ -43665,23 +43665,23 @@ "year": 1704, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 17.86065902500477, - "c2": 0.5023434979320598, - "c3": -0.26839690252632664, - "c4": -14.924658141443839, - "c5": -36.231162557308934, - "c6": -16.89188528856764, - "c7": 5.3205500835019635 + "points": { + "c1": -27.13990068491387, + "c2": -0.8594592920879904, + "c3": -10.943085596081133, + "c4": 13.291021515456947, + "c5": 5.537765250234436, + "c6": -17.526737010346267, + "c7": -24.571297852308923 }, - "vertexSeeds": { - "c1": 6.607897628806152, - "c2": 6.923552927866093, - "c3": 6.640236535327844, - "c4": 6.898013593857074, - "c5": 6.6337499113706775, - "c6": 7.140136085989396, - "c7": 6.385720738107663 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882114, + "c3": 8.552935737401754, + "c4": 6.842348589921409, + "c5": 5.13176144244105, + "c6": 3.4211742949607045, + "c7": 1.7105871474803456 }, "rgb": [86, 146, 138] }, @@ -43692,23 +43692,23 @@ "year": 1704, "resistanceReported": true, "duration": 29894400, - "curveSeeds": { - "c1": -16.943035003596663, - "c2": 23.736109613713417, - "c3": 9.482020348507938, - "c4": -0.3095738143471607, - "c5": 17.80813376756278, - "c6": -15.904765493608885, - "c7": 21.737363319957673 + "points": { + "c1": -33.74076706746002, + "c2": 28.51395908713385, + "c3": -40.34374819660912, + "c4": -32.956390910545196, + "c5": -42.0450863500979, + "c6": 10.103931965761433, + "c7": -3.5949533171168824 }, - "vertexSeeds": { - "c1": 4.838881493643835, - "c2": 4.608615909778524, - "c3": 4.475666390247374, - "c4": 4.856734970391576, - "c5": 5.054052241909145, - "c6": 5.035642829201768, - "c7": 4.871912032490158 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739257, + "c3": 6.171983356449372, + "c4": 4.937586685159502, + "c5": 3.7031900138696248, + "c6": 2.4687933425797475, + "c7": 1.234396671289877 }, "rgb": [86, 146, 138] }, @@ -43719,23 +43719,23 @@ "year": 1704, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -2.687441967123881, - "c2": -26.00045398366583, - "c3": -21.5396907255535, - "c4": 25.158067116371427, - "c5": 2.4766049268798156, - "c6": 19.71946564282247, - "c7": 29.260162829333176 + "points": { + "c1": -11.233589294912555, + "c2": -11.830526452946259, + "c3": 4.117527303885538, + "c4": 21.02335350873112, + "c5": 10.283653156548773, + "c6": 22.245674977444388, + "c7": -1.0547534820445037 }, - "vertexSeeds": { - "c1": 8.678245342973904, - "c2": 7.717872651599814, - "c3": 7.7492591734495235, - "c4": 7.447836725202233, - "c5": 7.290925778265413, - "c6": 7.17901824956244, - "c7": 7.459151307813864 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809986, + "c3": 10.402219140083217, + "c4": 8.321775312066572, + "c5": 6.24133148404993, + "c6": 4.160887656033286, + "c7": 2.080443828016643 }, "rgb": [58, 15, 49] }, @@ -43746,23 +43746,23 @@ "year": 1704, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -7.455677710001368, - "c2": 0.526985813637495, - "c3": -32.90999504672675, - "c4": -9.724404763499422, - "c5": 31.98121568762513, - "c6": 36.55592818877428, - "c7": 4.707864667469423 + "points": { + "c1": 34.87990000105906, + "c2": 15.995976512793384, + "c3": 18.324799889143073, + "c4": 20.460216979715263, + "c5": 17.333431890961947, + "c6": -16.36491759019199, + "c7": -4.164806467714179 }, - "vertexSeeds": { - "c1": 5.677151228845377, - "c2": 5.490672973421015, - "c3": 5.494782676012604, - "c4": 5.598575401214422, - "c5": 5.55248774462513, - "c6": 5.668261697450038, - "c7": 5.455580745452397 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267685, + "c3": 7.050392972723075, + "c4": 5.640314378178464, + "c5": 4.230235783633834, + "c6": 2.8201571890892225, + "c7": 1.4100785945446113 }, "rgb": [238, 201, 159] }, @@ -43773,23 +43773,23 @@ "year": 1704, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": -9.674526851394724, - "c2": 24.095917332709178, - "c3": -0.5988459969795557, - "c4": 43.269075323554404, - "c5": -26.37065010860746, - "c6": -40.31418382059975, - "c7": 14.521634078835476 + "points": { + "c1": -36.558688018356975, + "c2": -43.59032856441388, + "c3": -9.167578950392958, + "c4": 33.368042596783184, + "c5": -12.69798990800436, + "c6": -30.00480422626945, + "c7": 26.886063927680993 }, - "vertexSeeds": { - "c1": 3.2973959775365222, - "c2": 3.0691694445158872, - "c3": 3.1075038508827912, - "c4": 3.2238136573067955, - "c5": 3.1597650467361187, - "c6": 3.257658521424401, - "c7": 3.1905696380603095 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877946, + "c3": 3.952843273231619, + "c4": 3.1622746185852932, + "c5": 2.371705963938979, + "c6": 1.5811373092926528, + "c7": 0.7905686546463264 }, "rgb": [238, 201, 159] }, @@ -43800,23 +43800,23 @@ "year": 1704, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -19.929793676291634, - "c2": -42.519126415948946, - "c3": -10.555326643613007, - "c4": -1.6736351435748062, - "c5": -33.6983161194243, - "c6": -1.350918870535864, - "c7": 31.313371487971835 + "points": { + "c1": 46.098291729894214, + "c2": -20.815992745461692, + "c3": -8.169170987783396, + "c4": -4.944438044125555, + "c5": 16.251179660822757, + "c6": 30.54175189108325, + "c7": 29.14870295095629 }, - "vertexSeeds": { - "c1": 5.782672131300991, - "c2": 5.231974066020922, - "c3": 5.072655689961723, - "c4": 5.672131391421932, - "c5": 5.089246151234552, - "c6": 5.310687770995236, - "c7": 6.091008213500481 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152567, + "c3": 7.5589459084604735, + "c4": 6.047156726768372, + "c5": 4.535367545076279, + "c6": 3.023578363384186, + "c7": 1.511789181692093 }, "rgb": [238, 201, 159] }, @@ -43827,23 +43827,23 @@ "year": 1704, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -1.5695988771565723, - "c2": -34.911008051791406, - "c3": 24.936613643072995, - "c4": -34.4217964220394, - "c5": 8.723817403104448, - "c6": 11.214356514341326, - "c7": 24.72497785211916 + "points": { + "c1": -27.368746914704623, + "c2": 11.170829884038987, + "c3": 36.74607817697917, + "c4": -17.817847170482658, + "c5": -20.786284733229362, + "c6": -38.425969761621005, + "c7": 3.028873364785923 }, - "vertexSeeds": { - "c1": 1.9141075374673338, - "c2": 1.639408936346768, - "c3": 1.8764713100903845, - "c4": 1.6023799019124603, - "c5": 1.6674019606705988, - "c6": 1.7820191422415934, - "c7": 1.7915703979449102 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022192, + "c3": 2.3116042533518257, + "c4": 1.8492834026814613, + "c5": 1.386962552011095, + "c6": 0.9246417013407306, + "c7": 0.4623208506703666 }, "rgb": [238, 201, 159] }, @@ -43854,23 +43854,23 @@ "year": 1704, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 0.45649301582536594, - "c2": -23.073606835362654, - "c3": -0.8302772159665253, - "c4": -3.3576195771414703, - "c5": -11.146356199482106, - "c6": 7.760547368226611, - "c7": -9.958672521863065 + "points": { + "c1": -16.402290589987462, + "c2": -23.16696918173762, + "c3": -11.631034062386792, + "c4": -11.596717865548875, + "c5": 4.323055973192311, + "c6": 35.291606143758045, + "c7": -12.735735694120056 }, - "vertexSeeds": { - "c1": 8.899842187417338, - "c2": 10.349649887473483, - "c3": 8.898364517667748, - "c4": 8.802643999936933, - "c5": 10.1000782054185, - "c6": 9.936863179537077, - "c7": 10.794839638170366 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.589459084604716, + "c3": 12.991215903837265, + "c4": 10.39297272306981, + "c5": 7.794729542302358, + "c6": 5.196486361534905, + "c7": 2.5982431807674526 }, "rgb": [86, 146, 138] }, @@ -43881,23 +43881,23 @@ "year": 1704, "resistanceReported": false, "duration": 5529600, - "curveSeeds": { - "c1": 9.552337569389785, - "c2": 3.453897100213858, - "c3": -2.988858398107247, - "c4": -3.5291227680742914, - "c5": -10.249722464830533, - "c6": 1.0792657725603974, - "c7": -7.306889925203121 + "points": { + "c1": -15.625969020045948, + "c2": -8.463992688635216, + "c3": -6.022506571115871, + "c4": -13.510895764498352, + "c5": -13.658552466172495, + "c6": 0.4276248393632649, + "c7": -8.990212895564317 }, - "vertexSeeds": { - "c1": 5.455267242019665, - "c2": 5.703048320271382, - "c3": 5.679794938122416, - "c4": 6.052750608520244, - "c5": 5.067488563764742, - "c6": 5.572465860656864, - "c7": 5.64617523644386 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [58, 15, 49] }, @@ -43908,23 +43908,23 @@ "year": 1704, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -29.03846547428585, - "c2": -1.9425389723936206, - "c3": -32.73447355647601, - "c4": -14.261102198611827, - "c5": -10.129496250146026, - "c6": -20.905271510698405, - "c7": 4.037358874102672 + "points": { + "c1": 9.266722373870948, + "c2": -7.1870422022010025, + "c3": 14.02067175184343, + "c4": -16.557765878729278, + "c5": 34.17592981130524, + "c6": -11.792759796901564, + "c7": 15.983003465092438 }, - "vertexSeeds": { - "c1": 4.63937571210448, - "c2": 5.283209410042213, - "c3": 5.4944008167371186, - "c4": 5.4372316788773825, - "c5": 5.618751834080859, - "c6": 5.223294679480857, - "c7": 4.96452185983237 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187238, + "c3": 7.00416088765603, + "c4": 5.6033287101248295, + "c5": 4.202496532593621, + "c6": 2.8016643550624125, + "c7": 1.4008321775312045 }, "rgb": [77, 76, 132] }, @@ -43935,23 +43935,23 @@ "year": 1704, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -2.735870927595691, - "c2": -33.96467708442898, - "c3": 9.601124146618325, - "c4": 18.592694804183886, - "c5": -34.231655193951234, - "c6": 13.040251215970578, - "c7": 15.61832926168617 + "points": { + "c1": 16.277466930314525, + "c2": 12.678557003518193, + "c3": -24.36352853638796, + "c4": 23.20562762491152, + "c5": -17.971448857211623, + "c6": 13.092639233360963, + "c7": 34.172863990921705 }, - "vertexSeeds": { - "c1": 2.1395904045691085, - "c2": 2.3634821915229325, - "c3": 2.143966080519838, - "c4": 2.189407235139041, - "c5": 2.1872863330658827, - "c6": 2.1558700552403858, - "c7": 2.1823329918272973 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [58, 15, 49] }, @@ -43962,23 +43962,23 @@ "year": 1704, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -18.594761186420357, - "c2": 35.10523497686647, - "c3": 9.246620179029975, - "c4": -21.845344814947477, - "c5": 26.74409885227631, - "c6": 32.45689373509114, - "c7": 1.1671911554135974 + "points": { + "c1": 1.1553875344685025, + "c2": 18.478596819536115, + "c3": -8.368448482321217, + "c4": -35.615087120874, + "c5": -19.476625010712628, + "c6": -32.671113610207485, + "c7": 33.29087473063012 }, - "vertexSeeds": { - "c1": 3.8224923455847435, - "c2": 2.937934772825507, - "c3": 3.88329563702059, - "c4": 3.7787135422188083, - "c5": 3.792895196347623, - "c6": 3.0067730936137114, - "c7": 3.076007743792048 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.467406380027739, + "c4": 2.7739251040221906, + "c5": 2.080443828016644, + "c6": 1.3869625520110953, + "c7": 0.6934812760055464 }, "rgb": [86, 146, 138] }, @@ -43989,23 +43989,23 @@ "year": 1704, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -39.63769729085314, - "c2": -23.18972570241653, - "c3": 43.068684455875015, - "c4": 24.677255469647903, - "c5": -19.312198647550048, - "c6": 15.091663535092998, - "c7": -13.883895820743653 + "points": { + "c1": 23.215534480275466, + "c2": -43.39047264983807, + "c3": 21.002852457266826, + "c4": -5.317664495457052, + "c5": -27.455452790542857, + "c6": -3.5305610905953557, + "c7": -6.460562678449037 }, - "vertexSeeds": { - "c1": 2.7612907611273165, - "c2": 2.867355689531496, - "c3": 3.0201598594650707, - "c4": 2.4819474739463803, - "c5": 2.9338500456406633, - "c6": 2.575944722730812, - "c7": 2.740149573192538 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314842, + "c3": 3.6292186777623665, + "c4": 2.903374942209895, + "c5": 2.177531206657419, + "c6": 1.4516874711049474, + "c7": 0.725843735552476 }, "rgb": [222, 0, 59] }, @@ -44016,23 +44016,23 @@ "year": 1704, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -25.19869223017203, - "c2": -1.7371046767784435, - "c3": 24.74046996462942, - "c4": -16.326412845701206, - "c5": -5.35780710889259, - "c6": -1.6076951115091695, - "c7": -2.1679714965089154 + "points": { + "c1": -24.827302193592985, + "c2": -12.181772039671024, + "c3": 13.191092681891334, + "c4": -20.28754071146507, + "c5": -2.004728024767335, + "c6": 9.134727539954177, + "c7": 19.478009341575884 }, - "vertexSeeds": { - "c1": 5.039557767600463, - "c2": 4.9485377102998935, - "c3": 4.7918503374801595, - "c4": 4.544775115786313, - "c5": 4.267825349642119, - "c6": 4.483041168759719, - "c7": 4.038632159502588 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618584, + "c3": 6.102635228848821, + "c4": 4.882108183079056, + "c5": 3.6615811373092937, + "c6": 2.441054091539528, + "c7": 1.220527045769762 }, "rgb": [222, 0, 59] }, @@ -44043,23 +44043,23 @@ "year": 1704, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -26.25226564065641, - "c2": -1.7985903575555255, - "c3": 40.211469079193904, - "c4": -30.046655411172225, - "c5": -21.079569680849993, - "c6": -36.106426669095114, - "c7": 37.788130206543386 + "points": { + "c1": 40.97518493166626, + "c2": 28.831660062516207, + "c3": 34.50713353895047, + "c4": 4.113121268961876, + "c5": -12.104789162597932, + "c6": 15.090537893530296, + "c7": 17.63157071262274 }, - "vertexSeeds": { - "c1": 6.491679704893952, - "c2": 7.005265737141405, - "c3": 5.964804909908072, - "c4": 6.403379831415979, - "c5": 7.188661477169884, - "c6": 6.366903933787526, - "c7": 6.338347976273399 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284324, + "c3": 8.784096162736942, + "c4": 7.02727693018955, + "c5": 5.270457697642167, + "c6": 3.513638465094775, + "c7": 1.7568192325473913 }, "rgb": [86, 146, 138] }, @@ -44070,23 +44070,23 @@ "year": 1704, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 23.30474189484169, - "c2": -11.844502253974518, - "c3": -24.19282686339195, - "c4": -11.365525321002046, - "c5": -31.83198076049968, - "c6": 11.290783083927757, - "c7": 16.67893493486814 + "points": { + "c1": 15.974964574889633, + "c2": -3.065274706249376, + "c3": 0.6096997848757795, + "c4": 27.338096458201342, + "c5": 25.761894383315223, + "c6": -4.383285807543039, + "c7": -16.33201674612373 }, - "vertexSeeds": { - "c1": 5.209103869018129, - "c2": 5.773572243155009, - "c3": 4.93405161685134, - "c4": 5.736754601307093, - "c5": 5.0849053926049494, - "c6": 5.172275253868732, - "c7": 5.2065803722958295 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.9348127600554745, + "c4": 5.547850208044388, + "c5": 4.1608876560332915, + "c6": 2.773925104022194, + "c7": 1.386962552011097 }, "rgb": [58, 15, 49] }, @@ -44097,23 +44097,23 @@ "year": 1704, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 28.897129182868674, - "c2": 17.412322897293933, - "c3": 8.834930278424174, - "c4": 12.858230659698819, - "c5": 12.323647727795333, - "c6": 22.74248813007484, - "c7": 30.369469960789324 + "points": { + "c1": -0.16339366984093573, + "c2": 23.763658354756316, + "c3": 29.983156264011328, + "c4": -30.65644834366715, + "c5": -14.74138923935567, + "c6": 1.2265076228594225, + "c7": 23.052558670847304 }, - "vertexSeeds": { - "c1": 5.63824642264682, - "c2": 5.571473111071961, - "c3": 5.801349108486452, - "c4": 5.758843979239163, - "c5": 5.105570938256485, - "c6": 5.498150900248653, - "c7": 5.5466717391893425 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055476, + "c4": 5.5478502080443866, + "c5": 4.1608876560332835, + "c6": 2.7739251040221933, + "c7": 1.3869625520111029 }, "rgb": [58, 15, 49] }, @@ -44124,23 +44124,23 @@ "year": 1704, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -24.53998954908618, - "c2": -32.695754363166756, - "c3": 33.60908819973387, - "c4": 24.529011760606494, - "c5": 2.9849896317451723, - "c6": -13.13219171438277, - "c7": -0.5959263318503645 + "points": { + "c1": -3.8530206051074174, + "c2": 5.086227625045552, + "c3": -26.772692893517327, + "c4": 1.255019227256419, + "c5": -35.61077531545994, + "c6": -39.1859203852703, + "c7": 31.177398227083152 }, - "vertexSeeds": { - "c1": 5.622461176516125, - "c2": 4.900516804465006, - "c3": 4.914860254682702, - "c4": 4.692625571514941, - "c5": 5.16826501304425, - "c6": 4.818676649217746, - "c7": 4.905298042852814 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785019, + "c3": 6.77300046232085, + "c4": 5.41840036985668, + "c5": 4.0638002773925095, + "c6": 2.70920018492834, + "c7": 1.35460009246417 }, "rgb": [77, 76, 132] }, @@ -44151,23 +44151,23 @@ "year": 1705, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 43.51770603861259, - "c2": -37.1178630250714, - "c3": -1.0200057068659447, - "c4": 21.731438326217614, - "c5": 11.18622940407193, - "c6": 6.570541416920996, - "c7": 0.6874178287414949 + "points": { + "c1": -4.9194312819798895, + "c2": -22.846953113964375, + "c3": -30.28056718099569, + "c4": -15.634584852565123, + "c5": -44.07951939460835, + "c6": -7.255658074120163, + "c7": 5.490109336214353 }, - "vertexSeeds": { - "c1": 12.079161623687126, - "c2": 12.063235104936613, - "c3": 12.010700326009813, - "c4": 12.249146562017444, - "c5": 12.246464053108875, - "c6": 12.172732739973958, - "c7": 12.288422067528584 + "offsets": { + "c1": 20.550161812297734, + "c2": 17.61442441054088, + "c3": 14.678687008784147, + "c4": 11.742949607027294, + "c5": 8.80721220527044, + "c6": 5.871474803513588, + "c7": 2.9357374017568527 }, "rgb": [222, 0, 59] }, @@ -44178,23 +44178,23 @@ "year": 1704, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -18.638079193659106, - "c2": 28.552145110730493, - "c3": 31.595821049846208, - "c4": 0.3187194391888539, - "c5": 5.1828166265664635, - "c6": -4.345274266849991, - "c7": 28.408897411406812 + "points": { + "c1": -21.40239238666594, + "c2": 8.720267050269108, + "c3": 5.507471615107548, + "c4": 21.182131384347038, + "c5": -8.21528287589048, + "c6": 6.6950052662757145, + "c7": 6.028981882302688 }, - "vertexSeeds": { - "c1": 6.912231793957279, - "c2": 5.9480057604932135, - "c3": 5.68745783328828, - "c4": 6.868165305769045, - "c5": 4.718209896607533, - "c6": 6.3473002708960395, - "c7": 3.870573277542215 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128986, + "c3": 9.269533055940824, + "c4": 7.415626444752658, + "c5": 5.561719833564496, + "c6": 3.707813222376329, + "c7": 1.8539066111881628 }, "rgb": [77, 76, 132] }, @@ -44205,23 +44205,23 @@ "year": 1704, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 5.337611558779265, - "c2": 33.407948161326175, - "c3": 29.74337210806773, - "c4": 3.7188351933862265, - "c5": -24.814890838983622, - "c6": -21.48127959878009, - "c7": 17.337647279163953 + "points": { + "c1": -27.00869015705844, + "c2": 8.028713658761198, + "c3": -5.588328228367548, + "c4": -33.116314310796376, + "c5": -7.811276338682479, + "c6": 31.7392296075746, + "c7": -28.074704289122216 }, - "vertexSeeds": { - "c1": 5.057414665620079, - "c2": 6.092062480500641, - "c3": 6.872194288398925, - "c4": 5.857263855358655, - "c5": 6.605321777194215, - "c6": 6.69748920000877, - "c7": 6.3316216047402145 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721223, + "c3": 8.460471567267684, + "c4": 6.768377253814148, + "c5": 5.076282940360607, + "c6": 3.384188626907073, + "c7": 1.6920943134535373 }, "rgb": [77, 76, 132] }, @@ -44232,23 +44232,23 @@ "year": 1704, "resistanceReported": true, "duration": 23155200, - "curveSeeds": { - "c1": -20.084431575666812, - "c2": -21.42436218646867, - "c3": 3.2613817176991873, - "c4": -19.06848470902688, - "c5": 12.24053428342183, - "c6": 23.96861224468858, - "c7": 5.375436241717942 + "points": { + "c1": -13.821547752240399, + "c2": -5.706050409443709, + "c3": 29.54638221169718, + "c4": -22.07011060230468, + "c5": -10.531024157257121, + "c6": 34.943079801588496, + "c7": 16.82758891022604 }, - "vertexSeeds": { - "c1": 5.116683073532627, - "c2": 4.910201769841325, - "c3": 5.509612691509566, - "c4": 4.647839574571016, - "c5": 5.1616132294228265, - "c6": 5.25895483284941, - "c7": 4.660027022472829 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147016, + "c3": 6.981044845122513, + "c4": 5.584835876098008, + "c5": 4.1886269070735045, + "c6": 2.792417938049004, + "c7": 1.3962089690245 }, "rgb": [58, 15, 49] }, @@ -44259,23 +44259,23 @@ "year": 1704, "resistanceReported": true, "duration": 17712000, - "curveSeeds": { - "c1": 22.724345156951447, - "c2": -10.353499144894968, - "c3": -4.9922663919712775, - "c4": -1.8658015590500732, - "c5": 20.96979705323375, - "c6": -21.645592067925687, - "c7": -4.611973268008221 + "points": { + "c1": -15.711588843837886, + "c2": -13.213879586379477, + "c3": 26.771130931778995, + "c4": 6.75584671196545, + "c5": 30.62602884051827, + "c6": 12.399207834315593, + "c7": 10.135926109951388 }, - "vertexSeeds": { - "c1": 1.634041268506371, - "c2": 1.760246976705779, - "c3": 1.6324043273672197, - "c4": 1.9133728443900964, - "c5": 1.8267397022108725, - "c6": 1.6556522037435468, - "c7": 1.814454604405614 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022192, + "c3": 2.3116042533518257, + "c4": 1.8492834026814613, + "c5": 1.386962552011095, + "c6": 0.9246417013407306, + "c7": 0.4623208506703666 }, "rgb": [222, 0, 59] }, @@ -44286,23 +44286,23 @@ "year": 1704, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -22.027267191232077, - "c2": -22.61757578234733, - "c3": -7.956867773146108, - "c4": 2.8653892060546227, - "c5": -1.311097957740678, - "c6": -6.674392684014386, - "c7": -6.960098210413957 + "points": { + "c1": 17.66737950861919, + "c2": 20.722923591408403, + "c3": 21.582740787997743, + "c4": 10.658162716393676, + "c5": 14.268288707173035, + "c6": -18.82111678628898, + "c7": -23.75335366802945 }, - "vertexSeeds": { - "c1": 4.505315116340146, - "c2": 4.590402950909492, - "c3": 4.641616327410678, - "c4": 4.710773878784669, - "c5": 5.001905856323866, - "c6": 5.096795001037201, - "c7": 4.489123154727639 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658807, + "c3": 6.12575127138234, + "c4": 4.900601017105871, + "c5": 3.6754507628294033, + "c6": 2.4503005085529357, + "c7": 1.2251502542764678 }, "rgb": [77, 76, 132] }, @@ -44313,23 +44313,23 @@ "year": 1705, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -27.2190754905507, - "c2": -10.795833746124885, - "c3": -13.584701541112754, - "c4": -27.579148120267746, - "c5": 9.683084633144361, - "c6": -24.972614508213198, - "c7": 8.653268468664372 + "points": { + "c1": -36.22024862294536, + "c2": 34.91921392588284, + "c3": -6.996132222611088, + "c4": -6.903429339482408, + "c5": 19.32919727997082, + "c6": 4.115295424721303, + "c7": 18.866403320831203 }, - "vertexSeeds": { - "c1": 11.430592574913913, - "c2": 10.850967212717174, - "c3": 10.783620317119915, - "c4": 11.237659318068781, - "c5": 10.794296515179461, - "c6": 10.706845132483226, - "c7": 11.5945024284117 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133134, + "c3": 13.86962552011096, + "c4": 11.095700416088755, + "c5": 8.321775312066585, + "c6": 5.547850208044378, + "c7": 2.773925104022206 }, "rgb": [222, 0, 59] }, @@ -44340,23 +44340,23 @@ "year": 1705, "resistanceReported": true, "duration": 22204800, - "curveSeeds": { - "c1": 30.26993604606895, - "c2": -15.153759913699904, - "c3": 25.406872579643846, - "c4": 21.008580413736254, - "c5": -28.90037480289413, - "c6": -19.601592086842636, - "c7": -16.96651031504222 + "points": { + "c1": 34.08026094793932, + "c2": 28.687579062463172, + "c3": 3.121531991617424, + "c4": 4.076105686645263, + "c5": -25.045609484756966, + "c6": 12.938330042701523, + "c7": -20.190746657424846 }, - "vertexSeeds": { - "c1": 5.184959140896974, - "c2": 9.837785482598361, - "c3": 4.691383625674589, - "c4": 12.49845913005546, - "c5": 1.4243382819360741, - "c6": 1.6947131121703907, - "c7": 2.84749141593431 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155342, + "c3": 16.181229773462785, + "c4": 12.944983818770227, + "c5": 9.708737864077671, + "c6": 6.472491909385114, + "c7": 3.236245954692557 }, "rgb": [238, 201, 159] }, @@ -44367,23 +44367,23 @@ "year": 1705, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 9.547803247599475, - "c2": 30.274596657524256, - "c3": 33.77741533753665, - "c4": 18.046579458284057, - "c5": 21.82195418544932, - "c6": -21.837637200857277, - "c7": -15.945915965140493 + "points": { + "c1": -31.49292773230833, + "c2": 4.1315140165095485, + "c3": -32.731004444991385, + "c4": -0.549422431877403, + "c5": -32.688836378444904, + "c6": 1.0905055061881015, + "c7": 6.128165401032206 }, - "vertexSeeds": { - "c1": 9.33409138682291, - "c2": 9.676640368577374, - "c3": 9.12954656437952, - "c4": 10.066889763250009, - "c5": 9.237875637656824, - "c6": 10.428977315417983, - "c7": 8.989956073640085 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403608, + "c3": 12.875635691169675, + "c4": 10.300508552935737, + "c5": 7.725381414701804, + "c6": 5.150254276467863, + "c7": 2.5751271382339316 }, "rgb": [58, 15, 49] }, @@ -44394,23 +44394,23 @@ "year": 1705, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -6.294053528454903, - "c2": -36.352104093098426, - "c3": -33.5692548572763, - "c4": -3.622034866307885, - "c5": -26.660203856977944, - "c6": -26.288652949650405, - "c7": 38.38577096028739 + "points": { + "c1": 2.445961368868822, + "c2": -43.06087174482932, + "c3": 4.03047277889187, + "c4": -0.9222490337511644, + "c5": 4.017487139433868, + "c6": -14.358746009993215, + "c7": -11.2812314464651 }, - "vertexSeeds": { - "c1": 11.249781080093328, - "c2": 12.529243800812871, - "c3": 12.346342639032901, - "c4": 12.188088716656246, - "c5": 11.688099986419969, - "c6": 12.33793116882288, - "c7": 12.782951904534176 + "offsets": { + "c1": 21.58576051779935, + "c2": 18.50208044382801, + "c3": 15.41840036985669, + "c4": 12.334720295885347, + "c5": 9.251040221914005, + "c6": 6.167360147942662, + "c7": 3.083680073971342 }, "rgb": [86, 146, 138] }, @@ -44421,23 +44421,23 @@ "year": 1706, "resistanceReported": false, "duration": 77587200, - "curveSeeds": { - "c1": -85.79919331350119, - "c2": -25.141192317448542, - "c3": 21.322823188718743, - "c4": 86.55908116293, - "c5": 47.619148164905795, - "c6": -89.397134541958, - "c7": -28.096353460779582 + "points": { + "c1": 83.3130168183861, + "c2": 44.125078433479786, + "c3": -12.027864166488811, + "c4": -36.107937954783104, + "c5": 62.016564688861706, + "c6": 89.17203863469521, + "c7": -58.16589553206655 }, - "vertexSeeds": { - "c1": 3.5731885525693783, - "c2": 3.4580713234448934, - "c3": 3.512507352528535, - "c4": 3.5034571524065603, - "c5": 3.6200773110182762, - "c6": 3.567166992113584, - "c7": 3.4433439391051075 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642162, + "c3": 4.392048081368466, + "c4": 3.51363846509477, + "c5": 2.6352288488210744, + "c6": 1.756819232547392, + "c7": 0.878409616273696 }, "rgb": [86, 146, 138] }, @@ -44448,23 +44448,23 @@ "year": 1705, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": -46.38711965811242, - "c2": -31.315406904860872, - "c3": 30.307423528866117, - "c4": -18.692312475293306, - "c5": 4.795200293536034, - "c6": 55.234843356598525, - "c7": -24.609299728126636 + "points": { + "c1": -54.47337463700017, + "c2": 47.08068491988592, + "c3": 1.1724248297062516, + "c4": -9.005483350130483, + "c5": -45.10545940222892, + "c6": 15.523474285694498, + "c7": -26.946371097160963 }, - "vertexSeeds": { - "c1": 8.518109637143047, - "c2": 8.452456695323972, - "c3": 8.014994328726507, - "c4": 8.062665036651739, - "c5": 8.177374896345139, - "c6": 8.614613000219414, - "c7": 8.190819362640992 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024972, + "c3": 10.933888118354137, + "c4": 8.747110494683314, + "c5": 6.56033287101248, + "c6": 4.373555247341657, + "c7": 2.1867776236708227 }, "rgb": [58, 15, 49] }, @@ -44475,23 +44475,23 @@ "year": 1705, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 14.814597878510305, - "c2": 4.848106546419068, - "c3": -18.695954304157173, - "c4": 16.844463401652312, - "c5": -24.440891400437557, - "c6": -11.172236852918907, - "c7": -17.040985632266825 + "points": { + "c1": -4.4083427987726935, + "c2": -26.116412014827127, + "c3": 30.932226142778987, + "c4": 31.21008488087145, + "c5": -25.260796827145775, + "c6": 13.1127988310215, + "c7": 19.66988265781196 }, - "vertexSeeds": { - "c1": 3.297430612413808, - "c2": 3.3555346990894095, - "c3": 2.7773974706086486, - "c4": 3.3468791599204524, - "c5": 3.3759555076143046, - "c6": 2.763305258498989, - "c7": 2.745086076771662 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388355, + "c3": 4.045307443365696, + "c4": 3.236245954692557, + "c5": 2.4271844660194177, + "c6": 1.6181229773462784, + "c7": 0.8090614886731392 }, "rgb": [238, 201, 159] }, @@ -44502,23 +44502,23 @@ "year": 1705, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -5.497297947091123, - "c2": 16.55057542227989, - "c3": 19.09111550905832, - "c4": -25.167757151644306, - "c5": 7.375695894552443, - "c6": 25.157080531332106, - "c7": -16.65983860742294 + "points": { + "c1": -21.282317699002153, + "c2": -5.84976512744829, + "c3": 28.40628058783622, + "c4": 2.103500646766385, + "c5": 17.705634455541286, + "c6": 7.978731467359594, + "c7": 1.1941582909541495 }, - "vertexSeeds": { - "c1": 4.193799304810048, - "c2": 3.7170690687368273, - "c3": 4.5266911226767235, - "c4": 4.278232917901657, - "c5": 3.7737734018686173, - "c6": 4.028784349383166, - "c7": 3.7454262491175148 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -44529,23 +44529,23 @@ "year": 1705, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -24.23589443128221, - "c2": 9.64132041548065, - "c3": 8.456288236600088, - "c4": 17.71024510618789, - "c5": -16.589781605521473, - "c6": -11.609906495795478, - "c7": 13.330415644710897 + "points": { + "c1": -1.1469110367179276, + "c2": 7.743151948146874, + "c3": 23.219252127961894, + "c4": 28.137240648781614, + "c5": -24.107582036133508, + "c6": -9.96529104426433, + "c7": 25.346916938395964 }, - "vertexSeeds": { - "c1": 5.963482398416865, - "c2": 5.977470161786187, - "c3": 5.6465513328969985, - "c4": 5.656119072684859, - "c5": 5.226623647194068, - "c6": 6.00691481354418, - "c7": 5.661752148523389 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509015, + "c3": 7.18908922792418, + "c4": 5.751271382339343, + "c5": 4.3134535367545075, + "c6": 2.8756356911696717, + "c7": 1.4378178455848358 }, "rgb": [86, 146, 138] }, @@ -44556,23 +44556,23 @@ "year": 1705, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 13.03895011493563, - "c2": -39.78596562190935, - "c3": 12.960740909672772, - "c4": 22.362543197379296, - "c5": 30.28125335487246, - "c6": -21.143508746064317, - "c7": -1.2969780270431883 + "points": { + "c1": -11.741035587956027, + "c2": 16.73228347372863, + "c3": 30.320465812039146, + "c4": -12.398529922787539, + "c5": 18.022358156756525, + "c6": -4.498163124572464, + "c7": 32.61094797972177 }, - "vertexSeeds": { - "c1": 5.657109152720532, - "c2": 5.7048586705450655, - "c3": 6.724657629874789, - "c4": 6.59729722564934, - "c5": 5.962593881913893, - "c6": 6.182497262112189, - "c7": 6.449204342201901 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520115, + "c3": 8.344891354600088, + "c4": 6.675913083680072, + "c5": 5.006934812760058, + "c6": 3.3379565418400414, + "c7": 1.6689782709200158 }, "rgb": [86, 146, 138] }, @@ -44583,23 +44583,23 @@ "year": 1705, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -27.793106872737198, - "c2": 0.9861248124724611, - "c3": -25.54206296888367, - "c4": -23.340590796014645, - "c5": -24.04462700540772, - "c6": -13.64873118939214, - "c7": -10.506175687124124 + "points": { + "c1": 16.797111072002835, + "c2": -15.800607095740375, + "c3": -25.924648064983174, + "c4": -13.842146069970518, + "c5": -5.871242023119557, + "c6": 2.589629033538408, + "c7": -31.126558048786272 }, - "vertexSeeds": { - "c1": 11.6834772504847, - "c2": 10.816041463091503, - "c3": 11.777027873520622, - "c4": 10.913871938379208, - "c5": 11.083868696561284, - "c6": 11.37477244401269, - "c7": 11.381784373117313 + "offsets": { + "c1": 19.902912621359224, + "c2": 17.05963938973646, + "c3": 14.216366158113736, + "c4": 11.373092926490974, + "c5": 8.52981969486825, + "c6": 5.686546463245487, + "c7": 2.843273231622724 }, "rgb": [58, 15, 49] }, @@ -44610,23 +44610,23 @@ "year": 1705, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -27.802130836606416, - "c2": 36.75296787046562, - "c3": -31.367549592525286, - "c4": 22.40998601296647, - "c5": 13.756277296741622, - "c6": 37.27418477066809, - "c7": 11.687618545184193 + "points": { + "c1": 36.949356253921984, + "c2": -42.75630810666486, + "c3": -37.83660545650443, + "c4": 9.349980811846365, + "c5": 22.305098003297026, + "c6": 39.473690136079604, + "c7": 2.1307751775355754 }, - "vertexSeeds": { - "c1": 9.00872418109701, - "c2": 7.382827424969431, - "c3": 8.207944792454878, - "c4": 10.306420539676829, - "c5": 6.292879480508814, - "c6": 6.081832996554509, - "c7": 9.816498838827151 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122055, + "c3": 12.713823393435042, + "c4": 10.171058714748034, + "c5": 7.628294036061026, + "c6": 5.085529357374017, + "c7": 2.5427646786870084 }, "rgb": [77, 76, 132] }, @@ -44637,23 +44637,23 @@ "year": 1705, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -13.284758796495566, - "c2": -5.249963073772754, - "c3": 28.459999876944625, - "c4": -23.358069524394235, - "c5": 4.350873085428933, - "c6": 24.38944514568175, - "c7": -14.587049826548478 + "points": { + "c1": 27.5480839448859, + "c2": -30.93720825719738, + "c3": 17.14478124215152, + "c4": -30.840984723521803, + "c5": 14.652598151815472, + "c6": 25.37610165981209, + "c7": 3.6061365526092537 }, - "vertexSeeds": { - "c1": 3.4637992969211986, - "c2": 3.4652756589430083, - "c3": 3.441127080135354, - "c4": 3.455987438974809, - "c5": 3.437518140462826, - "c6": 3.457661429570128, - "c7": 3.4324531605662374 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239927, + "c3": 4.160887656033293, + "c4": 3.328710124826618, + "c5": 2.496532593619984, + "c6": 1.664355062413309, + "c7": 0.8321775312066751 }, "rgb": [238, 201, 159] }, @@ -44664,23 +44664,23 @@ "year": 1705, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 14.879034810034149, - "c2": 15.46791464099536, - "c3": -21.977730361427515, - "c4": -13.033833364663867, - "c5": 5.260417574102121, - "c6": 21.764761870770023, - "c7": 9.126946942784471 + "points": { + "c1": 27.875978517957165, + "c2": 42.24318893136747, + "c3": -4.833176152001329, + "c4": 37.40302862506692, + "c5": -36.1336044585961, + "c6": 25.157700172422977, + "c7": -22.777757304162495 }, - "vertexSeeds": { - "c1": 5.348883278453435, - "c2": 5.609256937609612, - "c3": 5.506280231339355, - "c4": 5.1477087246430315, - "c5": 5.4437709801309975, - "c6": 5.772498186632361, - "c7": 5.496856057936362 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055483, + "c4": 5.547850208044384, + "c5": 4.160887656033285, + "c6": 2.773925104022199, + "c7": 1.3869625520110995 }, "rgb": [222, 0, 59] }, @@ -44691,23 +44691,23 @@ "year": 1705, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 29.33701127437628, - "c2": -29.79445772306301, - "c3": -26.87824218241693, - "c4": -30.910293974458128, - "c5": 37.65086231465051, - "c6": -11.197979988426592, - "c7": 18.56003021832157 + "points": { + "c1": -14.344303098568844, + "c2": 0.8141013765705338, + "c3": 20.67976329081751, + "c4": -40.458925003514125, + "c5": 37.87622922059249, + "c6": 16.933728856342675, + "c7": -40.79920182600891 }, - "vertexSeeds": { - "c1": 3.531188165971974, - "c2": 3.220465616354437, - "c3": 3.307567531885833, - "c4": 3.2390473483779965, - "c5": 3.2856244884875925, - "c6": 3.3781008658451754, - "c7": 3.2156167128842856 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561723, + "c3": 4.345815996301432, + "c4": 3.4766527970411487, + "c5": 2.6074895977808574, + "c6": 1.7383263985205744, + "c7": 0.8691631992602832 }, "rgb": [77, 76, 132] }, @@ -44718,23 +44718,23 @@ "year": 1705, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 27.931309576862915, - "c2": 16.504632943621665, - "c3": -17.188935637591353, - "c4": 38.884452940096935, - "c5": 7.613936851260199, - "c6": -6.84174287683868, - "c7": -13.24345086547719 + "points": { + "c1": 32.7004877645233, + "c2": -13.16125606187995, + "c3": -23.795140117985277, + "c4": 2.9672199947146822, + "c5": -38.59520695955263, + "c6": 2.3575533123889514, + "c7": 20.647848373399768 }, - "vertexSeeds": { - "c1": 9.875015821882707, - "c2": 8.908802835646691, - "c3": 8.888056721329576, - "c4": 9.592788458866151, - "c5": 9.814738914553079, - "c6": 8.16616551089241, - "c7": 9.99664786675665 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076287, + "c3": 12.112806287563567, + "c4": 9.690245030050855, + "c5": 7.267683772538144, + "c6": 4.845122515025433, + "c7": 2.4225612575127116 }, "rgb": [77, 76, 132] }, @@ -44745,23 +44745,23 @@ "year": 1705, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 5.267130627871943, - "c2": -14.48816398196779, - "c3": 22.852674782777704, - "c4": 12.377505997985885, - "c5": -20.183512377064712, - "c6": 10.88959968432372, - "c7": 7.9416869873958404 + "points": { + "c1": 0.9366515039717456, + "c2": 34.92901074504829, + "c3": 20.738591540007242, + "c4": 25.866671676352247, + "c5": 26.62324939206036, + "c6": 13.993819236106745, + "c7": 18.959291650940038 }, - "vertexSeeds": { - "c1": 5.30052525742148, - "c2": 4.500190257723418, - "c3": 4.743210237204507, - "c4": 5.247632144180853, - "c5": 5.480276071039291, - "c6": 5.538326587509727, - "c7": 5.314155060711153 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [86, 146, 138] }, @@ -44772,23 +44772,23 @@ "year": 1705, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -12.607368735250983, - "c2": -0.3121266381086336, - "c3": -0.9858008080721952, - "c4": -18.72656698581489, - "c5": -21.025471755694603, - "c6": 9.453880902667546, - "c7": -0.9223278140455022 + "points": { + "c1": -2.3861174203248012, + "c2": 6.269851438900819, + "c3": 14.645477607503327, + "c4": -10.832741302578743, + "c5": 24.56652699905391, + "c6": 22.775990777420585, + "c7": -18.66647461858802 }, - "vertexSeeds": { - "c1": 3.4980924433202274, - "c2": 3.507689823691128, - "c3": 3.47906646284465, - "c4": 3.6395208109090134, - "c5": 3.588720231030677, - "c6": 3.5993711577691174, - "c7": 3.4292809347408366 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.6310679611650505, + "c3": 4.692556634304206, + "c4": 3.7540453074433673, + "c5": 2.815533980582522, + "c6": 1.8770226537216836, + "c7": 0.9385113268608452 }, "rgb": [77, 76, 132] }, @@ -44799,23 +44799,23 @@ "year": 1705, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 0.5191050091870082, - "c2": -16.361096101174994, - "c3": -27.06770028922507, - "c4": -23.74672716674967, - "c5": -20.942491410129765, - "c6": 8.571435818848734, - "c7": -25.621891791618165 + "points": { + "c1": 9.124510672500996, + "c2": -8.724402140871142, + "c3": 13.314022902370588, + "c4": -11.140485783061425, + "c5": 10.93626292644067, + "c6": -9.867222061759783, + "c7": 5.650397708247915 }, - "vertexSeeds": { - "c1": 6.355759743208619, - "c2": 7.059525660140734, - "c3": 6.2254890993008125, - "c4": 6.262014145357181, - "c5": 6.465775672344747, - "c6": 6.104911205146307, - "c7": 7.2450663418963055 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736938, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.513638465094777, + "c7": 1.7568192325473933 }, "rgb": [77, 76, 132] }, @@ -44826,23 +44826,23 @@ "year": 1704, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 9.776493188289038, - "c2": -12.492169299878071, - "c3": 27.305955573133666, - "c4": -18.799934431701026, - "c5": 6.5934552755292515, - "c6": -24.434125986359454, - "c7": 13.309166377728232 + "points": { + "c1": 21.366134518299752, + "c2": 21.465962450557782, + "c3": 25.418362556338167, + "c4": 1.9130594369620546, + "c5": 22.14285938579053, + "c6": 4.676047649425328, + "c7": 18.929526200109727 }, - "vertexSeeds": { - "c1": 9.134624119375063, - "c2": 9.16809892275232, - "c3": 8.886981659788024, - "c4": 8.348686223603957, - "c5": 9.721328262949127, - "c6": 8.398702232567306, - "c7": 9.724142613656742 + "offsets": { + "c1": 16.73139158576052, + "c2": 14.341192787794727, + "c3": 11.950993989828945, + "c4": 9.560795191863152, + "c5": 7.170596393897368, + "c6": 4.780397595931576, + "c7": 2.390198797965784 }, "rgb": [77, 76, 132] }, @@ -44853,23 +44853,23 @@ "year": 1705, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 23.64964345848356, - "c2": 28.421141550721714, - "c3": 2.633169582802836, - "c4": -33.2099324816488, - "c5": 1.5394517873269749, - "c6": -17.17954895607061, - "c7": -18.15942099380858 + "points": { + "c1": 36.522449361402195, + "c2": 14.597051452214544, + "c3": -7.663422441196019, + "c4": 14.40911197267728, + "c5": 19.349068663905904, + "c6": -0.8175315289889014, + "c7": 24.951080695224604 }, - "vertexSeeds": { - "c1": 5.335925386091973, - "c2": 4.973187476775127, - "c3": 5.58407412332768, - "c4": 4.839453099253027, - "c5": 5.673757319516872, - "c6": 5.025599229071751, - "c7": 5.54083613401816 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055474, + "c4": 5.547850208044381, + "c5": 4.160887656033288, + "c6": 2.7739251040221955, + "c7": 1.386962552011093 }, "rgb": [222, 0, 59] }, @@ -44880,23 +44880,23 @@ "year": 1705, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -24.71706573951181, - "c2": 30.292544741755506, - "c3": -17.580716191020322, - "c4": 3.0007912573942193, - "c5": -18.329726283453862, - "c6": -20.12273725822736, - "c7": -13.050563584064157 + "points": { + "c1": 19.113457957512736, + "c2": 19.464713059286908, + "c3": 1.7851566866386932, + "c4": -15.36503538553755, + "c5": 29.39220543297037, + "c6": 11.576067455795616, + "c7": -22.162118781829793 }, - "vertexSeeds": { - "c1": 4.811535574957422, - "c2": 5.321989561007819, - "c3": 5.216522684827743, - "c4": 4.733910019347879, - "c5": 5.8295767305911355, - "c6": 5.193177558962541, - "c7": 4.699610836472813 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189551, + "c4": 5.62182154415164, + "c5": 4.216366158113729, + "c6": 2.8109107720758177, + "c7": 1.405455386037911 }, "rgb": [86, 146, 138] }, @@ -44907,23 +44907,23 @@ "year": 1705, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -25.352964647556124, - "c2": -15.068364064258173, - "c3": 33.19644992597544, - "c4": 27.705911931294338, - "c5": -1.265649342787917, - "c6": 11.147622605135815, - "c7": -38.49367229952565 + "points": { + "c1": 11.592502657081766, + "c2": 39.24267047038519, + "c3": 35.571612085984285, + "c4": -20.18540282597922, + "c5": 36.9594295157475, + "c6": 4.677816058454987, + "c7": 1.102939763694053 }, - "vertexSeeds": { - "c1": 1.795990634834123, - "c2": 2.120700697491042, - "c3": 1.7918231095430528, - "c4": 1.9336374750952765, - "c5": 1.7873464860116568, - "c6": 1.879040064805208, - "c7": 2.0628020496805717 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.5889967637540447, + "c4": 2.071197411003235, + "c5": 1.553398058252428, + "c6": 1.035598705501619, + "c7": 0.5177993527508095 }, "rgb": [222, 0, 59] }, @@ -44934,23 +44934,23 @@ "year": 1705, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": -23.156313151054, - "c2": 47.66062947131651, - "c3": -50.70864008551984, - "c4": 2.608374633368591, - "c5": 18.61391291607957, - "c6": -16.49179304130918, - "c7": -23.978029729427906 + "points": { + "c1": 47.13316638435431, + "c2": -24.20889374854343, + "c3": -21.449695648556514, + "c4": 51.78184236522175, + "c5": 48.362156350000305, + "c6": 46.25713257177412, + "c7": -16.78061421273518 }, - "vertexSeeds": { - "c1": 7.88717085480659, - "c2": 8.704870783307276, - "c3": 8.183014022674481, - "c4": 7.686373083163993, - "c5": 7.725126610532482, - "c6": 8.241731827640193, - "c7": 7.748355377857627 + "offsets": { + "c1": 14.627831715210357, + "c2": 12.538141470180305, + "c3": 10.448451225150256, + "c4": 8.358760980120204, + "c5": 6.2690707350901524, + "c6": 4.179380490060102, + "c7": 2.089690245030051 }, "rgb": [238, 201, 159] }, @@ -44961,23 +44961,23 @@ "year": 1705, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 12.407747111153725, - "c2": 13.09841424862185, - "c3": -24.487146663770563, - "c4": 10.857959729687998, - "c5": 10.663531446321521, - "c6": 14.8133530717123, - "c7": 42.03616332118806 + "points": { + "c1": -22.45011402255727, + "c2": 30.79294485390222, + "c3": -22.240069209079994, + "c4": -11.977272733801563, + "c5": -45.13419266139248, + "c6": -8.823877050520203, + "c7": -26.2485713056915 }, - "vertexSeeds": { - "c1": 13.024374849261095, - "c2": 13.351450988159417, - "c3": 12.973042765551806, - "c4": 14.577566007866864, - "c5": 13.910211380630479, - "c6": 13.72023170983336, - "c7": 13.974787982819553 + "offsets": { + "c1": 24.951456310679614, + "c2": 21.38696255201111, + "c3": 17.822468793342576, + "c4": 14.257975034674073, + "c5": 10.693481276005567, + "c6": 7.128987517337037, + "c7": 3.564493758668532 }, "rgb": [222, 0, 59] }, @@ -44988,23 +44988,23 @@ "year": 1705, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -3.6205934222344176, - "c2": 8.691734504589956, - "c3": -6.182541428022763, - "c4": -6.071904933613169, - "c5": 25.85048506727645, - "c6": 19.185745916660036, - "c7": -21.30853020366265 + "points": { + "c1": -0.4031657891139204, + "c2": 6.655365125393878, + "c3": 30.088832191545187, + "c4": 12.923119337569148, + "c5": 18.44433924705929, + "c6": 14.345097992785426, + "c7": 18.702714080404725 }, - "vertexSeeds": { - "c1": 4.594172035246044, - "c2": 4.450410548973283, - "c3": 3.981680469404749, - "c4": 3.933358945750233, - "c5": 3.835068718450915, - "c6": 4.413588423910129, - "c7": 3.837346870568186 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [58, 15, 49] }, @@ -45015,23 +45015,23 @@ "year": 1705, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 21.534092649867283, - "c2": 28.736189003483624, - "c3": 15.976445819079125, - "c4": 24.547435905836878, - "c5": -12.456048654281531, - "c6": 30.17097389606174, - "c7": -11.19305342055761 + "points": { + "c1": 11.00089290181841, + "c2": 16.95089118036112, + "c3": -14.936002720056123, + "c4": 18.608416985877234, + "c5": -19.420084472379425, + "c6": -3.4707831376957046, + "c7": 17.19696294458334 }, - "vertexSeeds": { - "c1": 4.618394553457254, - "c2": 4.32227013506597, - "c3": 4.3211692262557095, - "c4": 4.764909313905621, - "c5": 5.245425578795724, - "c6": 4.420183718564525, - "c7": 4.618153351818946 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061029, + "c3": 6.35691169671752, + "c4": 5.0855293573740195, + "c5": 3.8141470180305146, + "c6": 2.5427646786870097, + "c7": 1.2713823393435049 }, "rgb": [58, 15, 49] }, @@ -45042,23 +45042,23 @@ "year": 1705, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 25.80184417323651, - "c2": 5.444247554887944, - "c3": -6.3084691346616, - "c4": -15.884310031043697, - "c5": 31.35933719964528, - "c6": 27.27272538646055, - "c7": -19.75659996207574 + "points": { + "c1": 30.651409878662307, + "c2": 19.22279778990849, + "c3": 29.77286687964019, + "c4": 5.629130887737944, + "c5": -18.965324914612655, + "c6": 1.6063567176509963, + "c7": 29.19041436834864 }, - "vertexSeeds": { - "c1": 6.62783522705194, - "c2": 7.5326620501362855, - "c3": 7.434483088581268, - "c4": 7.510728726270648, - "c5": 7.5888896744648955, - "c6": 5.60686821211214, - "c7": 8.907738596845586 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644936, + "c3": 13.014331946370781, + "c4": 10.411465557096626, + "c5": 7.808599167822468, + "c6": 5.205732778548313, + "c7": 2.602866389274159 }, "rgb": [77, 76, 132] }, @@ -45069,23 +45069,23 @@ "year": 1705, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 22.815600576683856, - "c2": -16.151865235162848, - "c3": -36.29967157829391, - "c4": 17.959307042892668, - "c5": -46.61624473047764, - "c6": 43.407561980040946, - "c7": -28.831485444783777 + "points": { + "c1": 27.42082170563969, + "c2": -2.9093805568388547, + "c3": 0.4765956388633654, + "c4": 28.811085631333846, + "c5": 42.79810171718251, + "c6": -12.545705671997432, + "c7": 46.40283275580631 }, - "vertexSeeds": { - "c1": 8.819277568518435, - "c2": 9.872038405087334, - "c3": 8.487019075112963, - "c4": 9.739496130679038, - "c5": 9.558396555549319, - "c6": 8.736393332650941, - "c7": 9.57688640185495 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122055, + "c3": 12.71382339343504, + "c4": 10.171058714748035, + "c5": 7.628294036061023, + "c6": 5.085529357374018, + "c7": 2.5427646786870124 }, "rgb": [222, 0, 59] }, @@ -45096,23 +45096,23 @@ "year": 1705, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -22.397337320014103, - "c2": 19.598144365201556, - "c3": -24.772694712021128, - "c4": -11.330926624928797, - "c5": -8.677047405884661, - "c6": -23.047729709093854, - "c7": 6.9708150250493475 + "points": { + "c1": -1.2850206461482365, + "c2": 12.451166089518324, + "c3": -26.677221800545492, + "c4": -3.430106184630702, + "c5": 5.451050031546465, + "c6": -6.171084673988386, + "c7": -6.328257278101564 }, - "vertexSeeds": { - "c1": 3.890354824003295, - "c2": 3.954000211127957, - "c3": 4.028186745123803, - "c4": 3.92918340045573, - "c5": 3.957318103187945, - "c6": 3.8188409143339226, - "c7": 3.908759139293911 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406376, + "c3": 4.831252889505324, + "c4": 3.8650023116042553, + "c5": 2.898751733703188, + "c6": 1.932501155802136, + "c7": 0.966250577901068 }, "rgb": [222, 0, 59] }, @@ -45123,23 +45123,23 @@ "year": 1705, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -3.2413244969951904, - "c2": 30.64423298823158, - "c3": 1.0433779074716654, - "c4": -20.235303062865654, - "c5": 30.178775420968975, - "c6": -36.138360365170016, - "c7": 21.131463949527614 + "points": { + "c1": 4.358138320169132, + "c2": 15.063152993014427, + "c3": 29.889670144964654, + "c4": 30.9835449211635, + "c5": -7.639345210978853, + "c6": -13.361884912496816, + "c7": -34.88420760144266 }, - "vertexSeeds": { - "c1": 2.2616584312026817, - "c2": 2.3777590299454125, - "c3": 2.51677804407902, - "c4": 2.5507362622084218, - "c5": 2.461794748523238, - "c6": 2.3641550137699294, - "c7": 2.523335708625586 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.7725381414701804, + "c3": 3.1437817845584832, + "c4": 2.5150254276467856, + "c5": 1.8862690707350889, + "c6": 1.257512713823392, + "c7": 0.6287563569116947 }, "rgb": [86, 146, 138] }, @@ -45150,23 +45150,23 @@ "year": 1705, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 8.882009918821126, - "c2": 25.20004868320047, - "c3": 7.88521941334578, - "c4": 19.93398909406978, - "c5": -8.803910550834011, - "c6": -23.59189433311103, - "c7": 7.058603623916241 + "points": { + "c1": 12.762909502022055, + "c2": -21.051329574837297, + "c3": -25.993538616729722, + "c4": 9.413934999665074, + "c5": -7.244534362761833, + "c6": 8.3599707499896, + "c7": 4.534019713187263 }, - "vertexSeeds": { - "c1": 2.5747223527199394, - "c2": 2.601070896726955, - "c3": 3.0981823906574046, - "c4": 2.6153621754246017, - "c5": 2.942197242987037, - "c6": 2.72901703774568, - "c7": 2.9526504239517974 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299603, + "c4": 2.995839112343967, + "c5": 2.2468793342579745, + "c6": 1.4979195561719814, + "c7": 0.748959778085993 }, "rgb": [238, 201, 159] }, @@ -45177,23 +45177,23 @@ "year": 1705, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -32.224685030482, - "c2": 4.93309917629152, - "c3": 15.797193314154192, - "c4": -5.692016736004469, - "c5": 29.239154181085105, - "c6": -3.5614411251633484, - "c7": -35.55481316984294 + "points": { + "c1": 25.198288199512184, + "c2": -6.194101111807626, + "c3": -31.455942605614613, + "c4": -44.65539182993794, + "c5": -27.89277501617866, + "c6": 16.481402927215747, + "c7": 29.886663426884745 }, - "vertexSeeds": { - "c1": 4.337509868024834, - "c2": 4.502357113780163, - "c3": 5.031184160052843, - "c4": 5.079590879352934, - "c5": 4.656071737329603, - "c6": 5.313518709172022, - "c7": 4.70027897282681 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664359, + "c3": 6.703652334720293, + "c4": 5.362921867776235, + "c5": 4.022191400832179, + "c6": 2.6814609338881175, + "c7": 1.340730466944057 }, "rgb": [238, 201, 159] }, @@ -45204,23 +45204,23 @@ "year": 1705, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 16.1697213945598, - "c2": 3.31393225954929, - "c3": -22.72761777483675, - "c4": 27.278979457086173, - "c5": 29.336808101712087, - "c6": -29.85599429127053, - "c7": 29.297045111798916 + "points": { + "c1": -1.9864941779699237, + "c2": -19.930717690759444, + "c3": 25.847371918954472, + "c4": -26.29970687168551, + "c5": -5.41858252870739, + "c6": -3.5612406310475713, + "c7": 2.967863552127028 }, - "vertexSeeds": { - "c1": 3.454175499878042, - "c2": 3.3234860024373556, - "c3": 2.96727936149831, - "c4": 2.9388390017172354, - "c5": 3.244845475907349, - "c6": 2.933411810494269, - "c7": 2.958883162073627 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [58, 15, 49] }, @@ -45231,23 +45231,23 @@ "year": 1705, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -24.4370239845888, - "c2": 13.142863686885121, - "c3": -20.839140587519843, - "c4": 29.42750657171301, - "c5": -19.30684379551888, - "c6": -0.7219512213374699, - "c7": 3.0639751253370378 + "points": { + "c1": 1.0709457176152526, + "c2": 8.604426140204879, + "c3": -23.391581526790937, + "c4": -10.891046109797212, + "c5": 25.652885355637515, + "c6": -11.928456493867834, + "c7": 22.013729816886986 }, - "vertexSeeds": { - "c1": 4.128583121576292, - "c2": 3.6450807566404664, - "c3": 3.8314981653923827, - "c4": 4.07157027445135, - "c5": 3.5216896462807243, - "c6": 3.6949198296056154, - "c7": 4.017855843090089 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647714, + "c3": 4.969949144706426, + "c4": 3.9759593157651425, + "c5": 2.981969486823854, + "c6": 1.9879796578825712, + "c7": 0.9939898289412828 }, "rgb": [77, 76, 132] }, @@ -45258,23 +45258,23 @@ "year": 1705, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -12.571394406883872, - "c2": -12.188784911550172, - "c3": 24.930774095932236, - "c4": 23.01503426967672, - "c5": 20.21565904692269, - "c6": 21.47894193307441, - "c7": 33.44935907869208 + "points": { + "c1": -6.901664145183908, + "c2": 24.933614930063342, + "c3": 3.59317006740725, + "c4": -13.865253100821132, + "c5": 3.324121410356348, + "c6": -24.03338464721582, + "c7": -8.409493961602553 }, - "vertexSeeds": { - "c1": 2.5900291929007917, - "c2": 2.370042431088186, - "c3": 2.6620889866788073, - "c4": 2.6725985525851734, - "c5": 2.473950079898226, - "c6": 2.387736254579825, - "c7": 2.488609337606939 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.8557558945908488, + "c3": 3.2131299121590375, + "c4": 2.5705039297272325, + "c5": 1.9278779472954213, + "c6": 1.2852519648636163, + "c7": 0.6426259824318048 }, "rgb": [86, 146, 138] }, @@ -45285,23 +45285,23 @@ "year": 1705, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 11.541559212295759, - "c2": -40.32449364078186, - "c3": -31.27427541026533, - "c4": 4.907901617813501, - "c5": -6.954444064558423, - "c6": -30.788729660259257, - "c7": 17.322443765192475 + "points": { + "c1": -43.419994861389355, + "c2": -40.55577401126666, + "c3": 6.572650365094823, + "c4": 21.25425830957772, + "c5": 16.9207753250773, + "c6": -19.41291504464372, + "c7": 4.328979181359749 }, - "vertexSeeds": { - "c1": 3.9675907231627643, - "c2": 4.075991376182158, - "c3": 3.9062963700922655, - "c4": 3.6133355856697933, - "c5": 3.8360165886363284, - "c6": 4.5501008193406465, - "c7": 4.0141292973734695 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532594, + "c3": 5.478502080443829, + "c4": 4.382801664355064, + "c5": 3.2871012482662993, + "c6": 2.1914008321775342, + "c7": 1.095700416088769 }, "rgb": [58, 15, 49] }, @@ -45312,23 +45312,23 @@ "year": 1705, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 21.965969339932748, - "c2": 0.334036090402428, - "c3": 27.13523875183384, - "c4": -3.492343594668675, - "c5": -28.525926076550892, - "c6": 9.687382140624159, - "c7": -28.3009139956428 + "points": { + "c1": -24.77129455325681, + "c2": -9.770185208431744, + "c3": -13.272065438359451, + "c4": -0.5590986716701991, + "c5": 30.575276803994242, + "c6": 36.63185471396625, + "c7": 10.2973984541919 }, - "vertexSeeds": { - "c1": 4.2358204165470275, - "c2": 4.293927173179578, - "c3": 4.696402264992985, - "c4": 4.593480678418297, - "c5": 4.1604918290067605, - "c6": 4.163048152042336, - "c7": 4.146294344879733 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975038, + "c3": 5.732778548312527, + "c4": 4.586222838650023, + "c5": 3.439667128987519, + "c6": 2.293111419325008, + "c7": 1.146555709662504 }, "rgb": [86, 146, 138] }, @@ -45339,23 +45339,23 @@ "year": 1705, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 25.358199905384136, - "c2": -24.74559756920739, - "c3": -18.56708233454564, - "c4": -17.198476737553957, - "c5": 17.165909336580686, - "c6": 1.0925551440393235, - "c7": 24.14206070990294 + "points": { + "c1": -13.423702420584235, + "c2": -28.515099917108735, + "c3": -27.13225064965781, + "c4": 11.265848698975294, + "c5": 6.174631306396801, + "c6": 19.200198606870625, + "c7": 22.536110806786926 }, - "vertexSeeds": { - "c1": 4.080515006304843, - "c2": 4.088278544439509, - "c3": 4.677878106005884, - "c4": 4.195368146649367, - "c5": 4.770413458050435, - "c6": 3.9852518061912385, - "c7": 4.30047319257669 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [222, 0, 59] }, @@ -45366,23 +45366,23 @@ "year": 1705, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 22.71132268404392, - "c2": 11.02856299402859, - "c3": -25.375575695953376, - "c4": -17.193721565952345, - "c5": -24.64382264044641, - "c6": -8.549232648696357, - "c7": 8.996593963135084 + "points": { + "c1": -22.698867632672126, + "c2": -0.8777730764575296, + "c3": -33.20821769638472, + "c4": -22.18783154341854, + "c5": -27.523589881957776, + "c6": 20.312508693005007, + "c7": -10.539301926300372 }, - "vertexSeeds": { - "c1": 3.179851727610206, - "c2": 3.287855677873141, - "c3": 3.2737525708429, - "c4": 2.8685067116204492, - "c5": 3.4086372418621593, - "c6": 3.436303379768193, - "c7": 3.542554333915679 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.1317614424410545, + "c3": 4.276467868700876, + "c4": 3.421174294960702, + "c5": 2.5658807212205272, + "c6": 1.7105871474803531, + "c7": 0.8552935737401742 }, "rgb": [58, 15, 49] }, @@ -45393,23 +45393,23 @@ "year": 1705, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -14.078546069277595, - "c2": -3.6455132930573875, - "c3": 3.3641834614650925, - "c4": 6.42429551382919, - "c5": 23.00208139956192, - "c6": 27.15322182219275, - "c7": 16.158931029629972 + "points": { + "c1": 6.20154725313348, + "c2": -18.912109507837457, + "c3": 30.85280483284399, + "c4": 28.743227023429956, + "c5": -9.357703404362464, + "c6": 27.561233019698644, + "c7": 22.60162219257192 }, - "vertexSeeds": { - "c1": 2.0969885735773524, - "c2": 2.0346255942022253, - "c3": 2.122790494827666, - "c4": 1.7545584872770044, - "c5": 1.801919740547688, - "c6": 1.7732135065414396, - "c7": 1.8157376484408527 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.5889967637540447, + "c4": 2.071197411003235, + "c5": 1.553398058252428, + "c6": 1.035598705501619, + "c7": 0.5177993527508095 }, "rgb": [58, 15, 49] }, @@ -45420,23 +45420,23 @@ "year": 1705, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 34.892524060708034, - "c2": 34.819286797536044, - "c3": 2.6481852229519447, - "c4": 39.14057491592502, - "c5": -12.640663388537376, - "c6": -4.700559121110466, - "c7": 20.26766376845159 + "points": { + "c1": -5.361421087628138, + "c2": 6.73905089192813, + "c3": -9.880057358911998, + "c4": -0.9993890673923431, + "c5": -0.5809526433741681, + "c6": 33.23763517853218, + "c7": 22.82354577294263 }, - "vertexSeeds": { - "c1": 5.552048786953218, - "c2": 5.358647622679496, - "c3": 5.986571464597832, - "c4": 6.02743450028988, - "c5": 5.216293131480866, - "c6": 5.129003197633654, - "c7": 6.079557731769341 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [238, 201, 159] }, @@ -45447,23 +45447,23 @@ "year": 1705, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 5.55772724460018, - "c2": 12.79534071809379, - "c3": 21.05730594352366, - "c4": 21.0900981491854, - "c5": 11.970877760237876, - "c6": 2.5291329035136485, - "c7": -7.5078262828045155 + "points": { + "c1": 3.1381107002195634, + "c2": 28.697177618076232, + "c3": -0.7674862925470975, + "c4": 21.976725560549994, + "c5": 19.632840720156807, + "c6": -0.7500986423359919, + "c7": -5.498957724144461 }, - "vertexSeeds": { - "c1": 2.8078638583429485, - "c2": 2.761065989235283, - "c3": 3.0600350592564918, - "c4": 2.9991290349588686, - "c5": 2.967576150587399, - "c6": 2.8308547183701758, - "c7": 2.948695284089034 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435503, + "c3": 3.6985668053629235, + "c4": 2.9588534442903356, + "c5": 2.2191400832177557, + "c6": 1.4794267221451678, + "c7": 0.7397133610725798 }, "rgb": [238, 201, 159] }, @@ -45474,23 +45474,23 @@ "year": 1705, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -22.191882358547907, - "c2": 16.535082567896417, - "c3": -1.795498224460328, - "c4": 28.944857462250354, - "c5": -1.7662706286062395, - "c6": -2.860873008419521, - "c7": 4.178779366610833 + "points": { + "c1": -30.286485436873885, + "c2": 11.271622593223071, + "c3": 6.341494253095554, + "c4": 29.602222739905713, + "c5": -17.145512839341027, + "c6": 1.252317850180944, + "c7": -8.406395265585832 }, - "vertexSeeds": { - "c1": 6.134717301493191, - "c2": 5.7828937664143, - "c3": 6.4688144469534805, - "c4": 7.010571686506667, - "c5": 5.871639221925453, - "c6": 6.347330635027361, - "c7": 5.730202605998322 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.04160887656033, + "c3": 8.368007397133608, + "c4": 6.694405917706892, + "c5": 5.02080443828017, + "c6": 3.347202958853446, + "c7": 1.673601479426723 }, "rgb": [58, 15, 49] }, @@ -45501,23 +45501,23 @@ "year": 1705, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -11.985575912157625, - "c2": -22.815345382633936, - "c3": -15.039895067926267, - "c4": -7.844158181449689, - "c5": 7.780776069385354, - "c6": -27.44915895207789, - "c7": 20.89598265900056 + "points": { + "c1": 25.694602203353206, + "c2": 27.3329183756087, + "c3": -17.806452743359017, + "c4": 26.20555608634752, + "c5": -8.844850272352343, + "c6": -26.92538280550196, + "c7": 24.100321593316416 }, - "vertexSeeds": { - "c1": 2.599091071627166, - "c2": 2.1070918174226927, - "c3": 2.195484881819757, - "c4": 2.2704179196807783, - "c5": 1.75449775304478, - "c6": 1.7284850132524598, - "c7": 2.1264064075682887 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.2362459546925564, + "c4": 2.588996763754046, + "c5": 1.941747572815534, + "c6": 1.2944983818770222, + "c7": 0.6472491909385117 }, "rgb": [86, 146, 138] }, @@ -45528,23 +45528,23 @@ "year": 1705, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 41.70676349147152, - "c2": -1.9875899771645607, - "c3": -38.820768781646485, - "c4": -3.936963791583352, - "c5": 16.69512009449305, - "c6": 27.212815332751347, - "c7": 20.566921806290047 + "points": { + "c1": -20.890113137015106, + "c2": -6.085218202577096, + "c3": 20.557473659671643, + "c4": -21.32335452729652, + "c5": 7.413008494698481, + "c6": 38.46231900300896, + "c7": -40.49119255179282 }, - "vertexSeeds": { - "c1": 11.010889866213219, - "c2": 10.494682820859873, - "c3": 10.607469973792877, - "c4": 11.038301761950954, - "c5": 11.047139587743553, - "c6": 10.577452896768746, - "c7": 11.168885272721388 + "offsets": { + "c1": 19.093851132686083, + "c2": 16.36615811373091, + "c3": 13.63846509477578, + "c4": 10.910772075820608, + "c5": 8.183079056865477, + "c6": 5.455386037910304, + "c7": 2.7276930189551303 }, "rgb": [86, 146, 138] }, @@ -45555,23 +45555,23 @@ "year": 1705, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -5.277222542732424, - "c2": 21.088979309621337, - "c3": 7.090298302700383, - "c4": 22.021467624162455, - "c5": 3.187509388882056, - "c6": -2.1598528527005385, - "c7": 3.3417497969342307 + "points": { + "c1": -23.64945392720151, + "c2": 15.184999691060284, + "c3": -1.4427522670470658, + "c4": 27.860250570210944, + "c5": 32.69627874135908, + "c6": -9.788484064913987, + "c7": 8.709167149052163 }, - "vertexSeeds": { - "c1": 6.5803113669508315, - "c2": 6.594795175797682, - "c3": 6.264840947957906, - "c4": 7.372396811819269, - "c5": 6.971497662209799, - "c6": 7.09716034040604, - "c7": 7.3592992880109005 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.0124826629681, + "c3": 9.177068885806753, + "c4": 7.341655108645395, + "c5": 5.506241331484046, + "c6": 3.6708275543226976, + "c7": 1.8354137771613488 }, "rgb": [222, 0, 59] }, @@ -45582,23 +45582,23 @@ "year": 1705, "resistanceReported": true, "duration": 22032000, - "curveSeeds": { - "c1": 11.031066674164109, - "c2": 7.4234361171143775, - "c3": -17.426718288837584, - "c4": 19.24711255680802, - "c5": -20.42571919770584, - "c6": -16.834527233900054, - "c7": -26.41537188085274 + "points": { + "c1": 4.0933773049486035, + "c2": 10.00412809558216, + "c3": -30.687646219043017, + "c4": 5.907249841379013, + "c5": 28.342927238438776, + "c6": 10.596618617405483, + "c7": -24.447115970411602 }, - "vertexSeeds": { - "c1": 4.398713892498251, - "c2": 4.534528772439194, - "c3": 4.558627178818886, - "c4": 4.629378320905845, - "c5": 4.572415584271844, - "c6": 4.143368803168945, - "c7": 4.551307769605764 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693481, + "c3": 5.570966250577902, + "c4": 4.456773000462321, + "c5": 3.3425797503467405, + "c6": 2.2283865002311605, + "c7": 1.1141932501155802 }, "rgb": [238, 201, 159] }, @@ -45609,23 +45609,23 @@ "year": 1705, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 6.940123941437754, - "c2": 26.57553343684191, - "c3": -9.41290563404728, - "c4": -2.8729079073729835, - "c5": 20.89733416806955, - "c6": 27.602547494763392, - "c7": 25.173971378438452 + "points": { + "c1": 7.175117483965202, + "c2": 2.209000678728721, + "c3": -23.486394511802295, + "c4": 16.25325904741147, + "c5": 6.531236273883422, + "c6": -25.373575523459618, + "c7": -29.206738726760154 }, - "vertexSeeds": { - "c1": 1.8911592219189148, - "c2": 2.097928706072164, - "c3": 1.9988253848248911, - "c4": 1.8588441521070307, - "c5": 2.0733485575603052, - "c6": 1.8988895225556939, - "c7": 2.0557439318318784 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.5889967637540447, + "c4": 2.071197411003235, + "c5": 1.553398058252428, + "c6": 1.035598705501619, + "c7": 0.5177993527508095 }, "rgb": [58, 15, 49] }, @@ -45636,23 +45636,23 @@ "year": 1705, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -28.42555563221368, - "c2": -38.92148057139783, - "c3": 40.13345401959282, - "c4": 10.337079952392848, - "c5": 25.198795659413264, - "c6": -15.389113468590288, - "c7": -39.65952287302384 + "points": { + "c1": 8.51092274167732, + "c2": 42.021367051953334, + "c3": -25.70884789668109, + "c4": -38.65572258718357, + "c5": -13.941220472365934, + "c6": 12.557090319785623, + "c7": 0.16952725727252016 }, - "vertexSeeds": { - "c1": 9.576069649311666, - "c2": 9.000335064724847, - "c3": 9.719473611165126, - "c4": 9.980858131859033, - "c5": 8.384575870357025, - "c6": 9.770634896414357, - "c7": 9.78821672774038 + "offsets": { + "c1": 17.734627831715212, + "c2": 15.201109570041613, + "c3": 12.667591308368014, + "c4": 10.134073046694414, + "c5": 7.600554785020806, + "c6": 5.067036523347207, + "c7": 2.5335182616736076 }, "rgb": [222, 0, 59] }, @@ -45663,23 +45663,23 @@ "year": 1705, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 7.867935646945035, - "c2": -0.22359545301135597, - "c3": 34.86073463822314, - "c4": -36.62716821852425, - "c5": -36.32536410279705, - "c6": 12.563246785852186, - "c7": 8.952670613701201 + "points": { + "c1": 26.381545263054925, + "c2": 27.561893310787063, + "c3": 9.9439230871956, + "c4": -33.245069651322446, + "c5": 38.629439381196455, + "c6": -37.97466933404244, + "c7": -8.240272521474736 }, - "vertexSeeds": { - "c1": 6.345705705039649, - "c2": 6.549828768321194, - "c3": 5.562492056468714, - "c4": 5.957366598989859, - "c5": 6.729962741350627, - "c6": 6.680944173100178, - "c7": 5.937856910866766 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997227, + "c3": 8.044382801664357, + "c4": 6.435506241331488, + "c5": 4.826629680998618, + "c6": 3.217753120665739, + "c7": 1.6088765603328694 }, "rgb": [238, 201, 159] }, @@ -45690,23 +45690,23 @@ "year": 1706, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -37.82020004366247, - "c2": -0.34020390160529956, - "c3": -33.71839292262993, - "c4": -7.897228291248815, - "c5": -7.733786615130086, - "c6": -28.060643406801447, - "c7": 1.8981663370672663 + "points": { + "c1": 25.664938803029465, + "c2": -7.05997089312487, + "c3": -20.085363904387396, + "c4": 45.59798878012689, + "c5": 2.304304022155648, + "c6": 21.88593576964943, + "c7": -47.79611407164346 }, - "vertexSeeds": { - "c1": 8.679760657289313, - "c2": 8.124128731572737, - "c3": 9.663724766540843, - "c4": 8.012143272171327, - "c5": 9.700493422164465, - "c6": 10.333170895110982, - "c7": 9.457418721625936 + "offsets": { + "c1": 17.702265372168284, + "c2": 15.173370319001382, + "c3": 12.644475265834485, + "c4": 10.11558021266759, + "c5": 7.586685159500694, + "c6": 5.057790106333798, + "c7": 2.5288950531668957 }, "rgb": [58, 15, 49] }, @@ -45717,23 +45717,23 @@ "year": 1706, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 8.525487744158312, - "c2": -16.546392186463514, - "c3": -12.286118199763013, - "c4": -29.314486472958457, - "c5": 16.687569726516813, - "c6": -18.199931440187076, - "c7": -34.68034498544924 + "points": { + "c1": -3.470845352088965, + "c2": 5.613134216564674, + "c3": 28.400620000279076, + "c4": 19.0539836111778, + "c5": 35.79967434643626, + "c6": -6.840931002184309, + "c7": -36.138074625255264 }, - "vertexSeeds": { - "c1": 10.20176352159671, - "c2": 10.551042660894304, - "c3": 10.462391209969915, - "c4": 10.526454984465188, - "c5": 10.172230560059246, - "c6": 10.16297467003632, - "c7": 10.774430963039041 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644943, + "c3": 13.014331946370792, + "c4": 10.411465557096642, + "c5": 7.808599167822452, + "c6": 5.205732778548302, + "c7": 2.602866389274151 }, "rgb": [77, 76, 132] }, @@ -45744,23 +45744,23 @@ "year": 1706, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 13.22481312783782, - "c2": -7.8089466564414955, - "c3": -16.01605790072651, - "c4": 28.303570153260296, - "c5": 36.210835446555265, - "c6": -20.973750468561136, - "c7": 19.61620574587117 + "points": { + "c1": 11.673595678542043, + "c2": -22.313916525729155, + "c3": 11.23088267027103, + "c4": 14.688304280741235, + "c5": -29.879891420569173, + "c6": 35.15386480927481, + "c7": -37.39668951430986 }, - "vertexSeeds": { - "c1": 8.675141009820994, - "c2": 8.564328616323463, - "c3": 9.815300142896668, - "c4": 9.815701817800171, - "c5": 8.743759438537788, - "c6": 9.027150204885876, - "c7": 8.576333105191564 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392506, + "c3": 11.71983356449376, + "c4": 9.375866851595003, + "c5": 7.031900138696258, + "c6": 4.687933425797501, + "c7": 2.343966712898757 }, "rgb": [86, 146, 138] }, @@ -45771,23 +45771,23 @@ "year": 1706, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -10.12074694377597, - "c2": 20.58953175063977, - "c3": 1.1316994599528627, - "c4": 24.19661992117812, - "c5": 34.58128846760047, - "c6": 19.840042023090298, - "c7": -9.15302097559158 + "points": { + "c1": -5.795078257187896, + "c2": -16.2898749424096, + "c3": -30.052751337392394, + "c4": 2.4212087610035766, + "c5": -19.585564847462358, + "c6": 21.936506970385196, + "c7": 8.474137071520836 }, - "vertexSeeds": { - "c1": 5.119423111760219, - "c2": 5.255148752652798, - "c3": 5.749068243538866, - "c4": 5.291302758268747, - "c5": 5.471840651412819, - "c6": 5.074455313143079, - "c7": 5.1941930237281415 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605178032 }, "rgb": [238, 201, 159] }, @@ -45798,23 +45798,23 @@ "year": 1706, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 34.12650235922963, - "c2": 7.867346047127178, - "c3": 2.098634778098152, - "c4": 13.997235045834934, - "c5": 36.549374383697455, - "c6": -29.821435114916028, - "c7": 2.6635598946149557 + "points": { + "c1": 9.29955745728315, + "c2": 29.59321512545297, + "c3": 31.664909717009536, + "c4": 29.631119626920565, + "c5": 13.604721062740587, + "c6": -38.293475921531396, + "c7": 6.900449531337131 }, - "vertexSeeds": { - "c1": 13.074149787210908, - "c2": 13.46430461555186, - "c3": 12.721289321205136, - "c4": 12.851204249607775, - "c5": 12.870331653623754, - "c6": 13.381733720491674, - "c7": 12.633005038957075 + "offsets": { + "c1": 22.491909385113267, + "c2": 19.278779472954216, + "c3": 16.06564956079521, + "c4": 12.852519648636159, + "c5": 9.639389736477108, + "c6": 6.4262598243181035, + "c7": 3.2131299121590517 }, "rgb": [86, 146, 138] }, @@ -45825,23 +45825,23 @@ "year": 1706, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 5.955626523469924, - "c2": 20.91767700636923, - "c3": -20.314136886883496, - "c4": -0.6586550941208387, - "c5": 15.01082752296088, - "c6": -22.52850325924838, - "c7": 35.88639127688781 + "points": { + "c1": -32.68649464694063, + "c2": -18.065280540088356, + "c3": 4.567175070781737, + "c4": -23.083202125556994, + "c5": 33.44892561683359, + "c6": 9.302681012904443, + "c7": 31.622584183456482 }, - "vertexSeeds": { - "c1": 5.395365986308928, - "c2": 5.252389807062168, - "c3": 5.844435740380742, - "c4": 5.240732003167159, - "c5": 5.370054612980124, - "c6": 5.466758010374631, - "c7": 5.451942109895434 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187242, + "c3": 7.004160887656036, + "c4": 5.603328710124819, + "c5": 4.2024965325936146, + "c6": 2.8016643550624094, + "c7": 1.4008321775312047 }, "rgb": [77, 76, 132] }, @@ -45852,23 +45852,23 @@ "year": 1706, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 2.207525708079295, - "c2": -12.036585776257166, - "c3": 30.76716799509245, - "c4": 27.741760210461877, - "c5": -17.236274588836125, - "c6": 16.36427306600487, - "c7": -9.9592599007103 + "points": { + "c1": 10.631880204856529, + "c2": 24.40030890749125, + "c3": -12.015659214480511, + "c4": 36.161533698832855, + "c5": -22.344640333192736, + "c6": -18.947547478705165, + "c7": 5.127294968063481 }, - "vertexSeeds": { - "c1": 2.72257508336272, - "c2": 2.581304265371228, - "c3": 2.4096347104618836, - "c4": 2.8223897682100154, - "c5": 2.8060925921025692, - "c6": 2.795426423406786, - "c7": 2.312410480386603 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.467406380027737, + "c4": 2.7739251040221906, + "c5": 2.080443828016644, + "c6": 1.3869625520110977, + "c7": 0.6934812760055465 }, "rgb": [58, 15, 49] }, @@ -45879,23 +45879,23 @@ "year": 1706, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 20.570942941077902, - "c2": -8.76000446693866, - "c3": 14.651130766458877, - "c4": -3.9379282673837253, - "c5": -0.6319004834367163, - "c6": -25.223355511352864, - "c7": 29.222580129254403 + "points": { + "c1": 25.747407923635826, + "c2": 28.56931548449078, + "c3": 26.33526725027675, + "c4": -32.32076519413702, + "c5": -28.704707042647016, + "c6": -22.445899828323682, + "c7": -21.685716125831103 }, - "vertexSeeds": { - "c1": 7.045132062977885, - "c2": 7.071605811347839, - "c3": 6.28019684155552, - "c4": 6.739924432855205, - "c5": 6.064202221481231, - "c6": 6.757031383139707, - "c7": 6.835668241399497 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [222, 0, 59] }, @@ -45906,23 +45906,23 @@ "year": 1706, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 22.954089468721218, - "c2": -15.408369321924518, - "c3": 18.061138591373105, - "c4": 9.373757889678973, - "c5": 10.957847502437463, - "c6": 8.166614104489785, - "c7": -14.33939105945269 + "points": { + "c1": -24.320269201479576, + "c2": -1.5839683751078368, + "c3": -16.000668825433657, + "c4": 1.9346010683363133, + "c5": -6.2506628219170395, + "c6": -4.951066352852937, + "c7": 11.36299206378943 }, - "vertexSeeds": { - "c1": 3.0654279787302054, - "c2": 3.0808922645587002, - "c3": 3.063362219150239, - "c4": 3.0791122483852487, - "c5": 3.0531655999758454, - "c6": 3.054408281448452, - "c7": 3.085557720805192 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435528, + "c3": 3.6985668053628906, + "c4": 2.958853444290327, + "c5": 2.219140083217764, + "c6": 1.4794267221452004, + "c7": 0.7397133610725635 }, "rgb": [238, 201, 159] }, @@ -45933,23 +45933,23 @@ "year": 1706, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 18.560879740325973, - "c2": 26.790331907397395, - "c3": 22.903958639208845, - "c4": 17.117614435869243, - "c5": -6.746467367586341, - "c6": 13.728683755267895, - "c7": 10.968116130609019 + "points": { + "c1": 0.6292377321743459, + "c2": 4.410762394139631, + "c3": -24.782225956589393, + "c4": 22.8104641006407, + "c5": 30.643596340095144, + "c6": -23.918426267636036, + "c7": -9.983788036191864 }, - "vertexSeeds": { - "c1": 6.827933500694479, - "c2": 6.552684849515898, - "c3": 6.528950476485743, - "c4": 7.140988156319428, - "c5": 6.840502695497178, - "c6": 7.062129728958988, - "c7": 6.456043310533486 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882104, + "c3": 8.55293573740175, + "c4": 6.842348589921407, + "c5": 5.131761442441052, + "c6": 3.421174294960697, + "c7": 1.710587147480355 }, "rgb": [58, 15, 49] }, @@ -45960,23 +45960,23 @@ "year": 1706, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 20.945640280388773, - "c2": -7.92780632809167, - "c3": 5.62331236973688, - "c4": 15.937737099186343, - "c5": -19.89376472168692, - "c6": -10.930843800815879, - "c7": 21.995618105469646 + "points": { + "c1": -21.242183503773223, + "c2": 5.654881152251967, + "c3": 21.59020095608703, + "c4": -5.339688942114893, + "c5": 9.558963280823662, + "c6": 12.950515405838999, + "c7": -27.446993045754798 }, - "vertexSeeds": { - "c1": 5.8371321349022915, - "c2": 5.687966348352572, - "c3": 5.761990695464525, - "c4": 5.60292825819765, - "c5": 5.485697958878, - "c6": 6.185076477573997, - "c7": 5.631392075818646 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [238, 201, 159] }, @@ -45987,23 +45987,23 @@ "year": 1706, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -26.50289222337959, - "c2": 8.409761858575578, - "c3": 14.714857620995453, - "c4": -35.853817912618524, - "c5": 10.549656801026657, - "c6": 11.719716596476516, - "c7": -21.079236874021237 + "points": { + "c1": -2.2317746107754104, + "c2": 36.044140817005186, + "c3": 35.86593717278842, + "c4": -23.92125237301208, + "c5": 11.259521299459252, + "c6": -29.367972941668526, + "c7": 1.6827242739208756 }, - "vertexSeeds": { - "c1": 0.8921209919448626, - "c2": 0.9993400066461253, - "c3": 1.075216410492245, - "c4": 0.8833474895285097, - "c5": 1.0059091432374978, - "c6": 1.0816376224105606, - "c7": 0.9877863903950295 + "offsets": { + "c1": 1.8770226537216828, + "c2": 1.6088765603328714, + "c3": 1.3407304669440594, + "c4": 1.072584373555247, + "c5": 0.8044382801664357, + "c6": 0.5362921867776245, + "c7": 0.26814609338881223 }, "rgb": [238, 201, 159] }, @@ -46014,23 +46014,23 @@ "year": 1706, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -28.871611795997875, - "c2": 21.46336426679427, - "c3": 26.330584019222268, - "c4": -18.03851824628964, - "c5": 22.146791061654536, - "c6": -4.916885587685194, - "c7": -29.33107565398937 + "points": { + "c1": 22.966076248303533, + "c2": -3.1414211569995736, + "c3": 9.043652179644685, + "c4": -5.489442018459538, + "c5": 28.275984750652125, + "c6": 8.00224747270381, + "c7": -13.00915613047897 }, - "vertexSeeds": { - "c1": 9.199378221692108, - "c2": 10.20805794239598, - "c3": 10.190157131095315, - "c4": 10.302469500538622, - "c5": 9.863265539831806, - "c6": 10.157328145417548, - "c7": 9.244333786303628 + "offsets": { + "c1": 17.216828478964402, + "c2": 14.757281553398052, + "c3": 12.297734627831717, + "c4": 9.838187702265369, + "c5": 7.378640776699033, + "c6": 4.9190938511326845, + "c7": 2.459546925566335 }, "rgb": [77, 76, 132] }, @@ -46041,23 +46041,23 @@ "year": 1706, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 14.360712842780352, - "c2": -6.174620617878485, - "c3": -23.813332063812368, - "c4": -8.795406462263152, - "c5": 5.056358372680251, - "c6": -17.8243569503983, - "c7": 31.373007696478375 + "points": { + "c1": 1.209543193754996, + "c2": 7.027746611543201, + "c3": 9.476253054794832, + "c4": 24.220489596822347, + "c5": -29.01690799171716, + "c6": -27.609111405949367, + "c7": -2.991614154883983 }, - "vertexSeeds": { - "c1": 1.5916390346045943, - "c2": 1.6424884104569724, - "c3": 1.6713180366539124, - "c4": 1.6426305998431583, - "c5": 1.743122236321347, - "c6": 1.6438312091191385, - "c7": 1.6340926814156658 + "offsets": { + "c1": 2.9773462783171523, + "c2": 2.552011095700416, + "c3": 2.126675913083679, + "c4": 1.7013407304669468, + "c5": 1.27600554785021, + "c6": 0.8506703652334734, + "c7": 0.4253351826167367 }, "rgb": [238, 201, 159] }, @@ -46068,23 +46068,23 @@ "year": 1706, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": 16.000547924397992, - "c2": -13.427618957138021, - "c3": -4.9877170725016455, - "c4": 4.396583794758161, - "c5": 4.896381066852243, - "c6": 4.852492963004195, - "c7": 17.78725602940674 + "points": { + "c1": -6.273726036708673, + "c2": 5.475751028938294, + "c3": -6.0082373179678825, + "c4": -1.7015925811622203, + "c5": 1.6076027246631703, + "c6": -17.114624506296707, + "c7": -14.08636068784958 }, - "vertexSeeds": { - "c1": 3.939582355611912, - "c2": 4.2016411805797915, - "c3": 4.40509817062813, - "c4": 4.467415443561812, - "c5": 4.153777909334572, - "c6": 4.166003622330752, - "c7": 4.042274112694245 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -46095,23 +46095,23 @@ "year": 1706, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -14.865084222345336, - "c2": -18.051925680474113, - "c3": 10.408514680570747, - "c4": -17.763893590617684, - "c5": 28.88708482872112, - "c6": 12.979015918207637, - "c7": 28.23341873947357 + "points": { + "c1": -13.720120327045596, + "c2": 0.35328048561891023, + "c3": 25.970231114154757, + "c4": 15.680938641155905, + "c5": -9.323486939816075, + "c6": 22.081269443138765, + "c7": 17.54339811877862 }, - "vertexSeeds": { - "c1": 3.4726046483155306, - "c2": 3.6981348985033713, - "c3": 3.5698381600260776, - "c4": 3.583429335345234, - "c5": 3.7090840669984395, - "c6": 3.589013643799878, - "c7": 3.6460044697609275 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963938, + "c3": 4.5769764216366156, + "c4": 3.6615811373092924, + "c5": 2.746185852981969, + "c6": 1.8307905686546462, + "c7": 0.9153952843273231 }, "rgb": [77, 76, 132] }, @@ -46122,23 +46122,23 @@ "year": 1706, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -35.45435533462005, - "c2": 18.459837982106833, - "c3": 25.12885046827057, - "c4": -19.118735328869708, - "c5": -2.8482253439303875, - "c6": 11.030636138583489, - "c7": -15.034024947422736 + "points": { + "c1": -23.54018929254941, + "c2": -6.929062500969366, + "c3": 25.728273989706622, + "c4": 3.4553876257247254, + "c5": -20.53709462308586, + "c6": -5.21263312093533, + "c7": -21.776620811823207 }, - "vertexSeeds": { - "c1": 7.052330200354538, - "c2": 8.166739141821285, - "c3": 7.33808966479075, - "c4": 7.930088167568837, - "c5": 8.083088161954135, - "c6": 6.984136583030431, - "c7": 7.742634640506735 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295421, + "c3": 9.93989828941285, + "c4": 7.951918631530288, + "c5": 5.963938973647717, + "c6": 3.975959315765144, + "c7": 1.987979657882572 }, "rgb": [86, 146, 138] }, @@ -46149,23 +46149,23 @@ "year": 1706, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 15.823244221290508, - "c2": -8.528261961616288, - "c3": -21.957093889353736, - "c4": -0.8740877061782086, - "c5": 29.512664055739634, - "c6": -12.277232193971006, - "c7": 32.327012149426196 + "points": { + "c1": -34.731134063357885, + "c2": -30.964659453799957, + "c3": -25.67413279985691, + "c4": 10.953140918944044, + "c5": -19.8086931655734, + "c6": -34.09402517722618, + "c7": 25.895443359691868 }, - "vertexSeeds": { - "c1": 4.509767217920545, - "c2": 4.602701343502767, - "c3": 4.023247861247708, - "c4": 3.8208956725149292, - "c5": 4.002003123503791, - "c6": 4.0332222544944765, - "c7": 4.6694783056472025 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [222, 0, 59] }, @@ -46176,23 +46176,23 @@ "year": 1706, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -0.06695281676128673, - "c2": 15.223002114859199, - "c3": -31.17702963661548, - "c4": 28.48437348359795, - "c5": -36.024193157727744, - "c6": -32.58547525849288, - "c7": -24.332160373050673 + "points": { + "c1": 12.619054600544715, + "c2": -10.110057046888755, + "c3": 25.07836236361328, + "c4": -37.21128873546483, + "c5": -22.632766902559524, + "c6": -24.628029218682713, + "c7": -34.67709055441141 }, - "vertexSeeds": { - "c1": 3.565372427570958, - "c2": 3.0533094986245772, - "c3": 3.10744476315438, - "c4": 3.3557813380604644, - "c5": 3.6198452581072678, - "c6": 3.6771977426374662, - "c7": 3.645508461863811 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.63106796116505, + "c3": 4.692556634304206, + "c4": 3.754045307443367, + "c5": 2.8155339805825226, + "c6": 1.8770226537216834, + "c7": 0.9385113268608435 }, "rgb": [58, 15, 49] }, @@ -46203,23 +46203,23 @@ "year": 1706, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -15.290546396419057, - "c2": 17.017319760730842, - "c3": -7.166247600434453, - "c4": 5.554680989547087, - "c5": 7.227873213441711, - "c6": -9.253101860230064, - "c7": -1.5074464516491233 + "points": { + "c1": -23.759485185230236, + "c2": -9.130495804009897, + "c3": -23.76927296648086, + "c4": 16.035470755996492, + "c5": 8.960816226778192, + "c6": -10.96057626426078, + "c7": -2.814845586810815 }, - "vertexSeeds": { - "c1": 3.8787323295151896, - "c2": 4.060457597133036, - "c3": 4.014664466665879, - "c4": 3.5312712247046827, - "c5": 3.63425225702696, - "c6": 3.9311523560230754, - "c7": 3.748494226294279 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [238, 201, 159] }, @@ -46230,23 +46230,23 @@ "year": 1708, "resistanceReported": false, "duration": 71107200, - "curveSeeds": { - "c1": -8.973419715686688, - "c2": -22.363947921994395, - "c3": 63.91129126721826, - "c4": 13.04242897006425, - "c5": 4.538451536553083, - "c6": 66.70655588664773, - "c7": 30.111605193942253 + "points": { + "c1": -70.13246733189052, + "c2": -49.304956443567455, + "c3": 0.3222648398303676, + "c4": -20.987798258333626, + "c5": 26.664257094432514, + "c6": -47.399784065762894, + "c7": 77.81703307283495 }, - "vertexSeeds": { - "c1": 5.606515180500935, - "c2": 3.571051429020743, - "c3": 4.090175155372622, - "c4": 4.6802228602455465, - "c5": 6.088297096331685, - "c6": 4.838320204131287, - "c7": 8.207802062430895 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094314, + "c3": 9.824318076745262, + "c4": 7.859454461396209, + "c5": 5.8945908460471585, + "c6": 3.9297272306981053, + "c7": 1.964863615349052 }, "rgb": [238, 201, 159] }, @@ -46257,23 +46257,23 @@ "year": 1706, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 1.6442503728448443, - "c2": -11.972771498133838, - "c3": -15.516112513406803, - "c4": 11.768125455141757, - "c5": 17.014244102281936, - "c6": -12.443862136848537, - "c7": 27.413727727568983 + "points": { + "c1": 29.664583301094346, + "c2": -30.169709331706475, + "c3": 20.826393600074553, + "c4": 17.042107083111212, + "c5": 28.513195753311308, + "c6": -20.971821587230785, + "c7": 7.842342724083707 }, - "vertexSeeds": { - "c1": 6.201789849174756, - "c2": 5.577006834663934, - "c3": 5.621108625418962, - "c4": 5.622346127778725, - "c5": 5.537458006381661, - "c6": 6.6801350870701945, - "c7": 6.763898971760506 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [222, 0, 59] }, @@ -46284,23 +46284,23 @@ "year": 1706, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 29.690284984120545, - "c2": -30.63912606501058, - "c3": -23.842322852351963, - "c4": -33.1216789004181, - "c5": -12.535645406340294, - "c6": -9.336554317904536, - "c7": -31.068568241696937 + "points": { + "c1": 22.690571937029198, + "c2": 22.548379410227845, + "c3": 28.51268039881547, + "c4": -10.478300866259467, + "c5": 25.669281940726798, + "c6": 20.941272330168545, + "c7": 24.84608583142459 }, - "vertexSeeds": { - "c1": 10.103191961752437, - "c2": 9.95744516128511, - "c3": 10.043077116455175, - "c4": 10.059953808549508, - "c5": 9.930241995475816, - "c6": 10.117487890062396, - "c7": 9.952886363187085 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076243, + "c3": 12.112806287563634, + "c4": 9.690245030050878, + "c5": 7.267683772538121, + "c6": 4.8451225150253645, + "c7": 2.4225612575127564 }, "rgb": [58, 15, 49] }, @@ -46311,23 +46311,23 @@ "year": 1706, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 36.32841741491234, - "c2": -1.6129211925398579, - "c3": -29.08635598035238, - "c4": 28.223509574288173, - "c5": -16.408416676262636, - "c6": -34.922181730509074, - "c7": -39.97524762070915 + "points": { + "c1": 22.81275457559279, + "c2": 29.704586501399262, + "c3": 34.472136880733046, + "c4": 1.2563473818068829, + "c5": -41.84442409824706, + "c6": 19.60532682424214, + "c7": -34.05274101829278 }, - "vertexSeeds": { - "c1": 13.005533379578091, - "c2": 12.706789100936584, - "c3": 12.637427246154095, - "c4": 12.987313581702043, - "c5": 13.395130079121696, - "c6": 12.788673021522966, - "c7": 13.023885620885022 + "offsets": { + "c1": 22.815533980582526, + "c2": 19.556171983356435, + "c3": 16.296809986130395, + "c4": 13.037447988904308, + "c5": 9.778085991678218, + "c6": 6.518723994452178, + "c7": 3.259361997226089 }, "rgb": [77, 76, 132] }, @@ -46338,23 +46338,23 @@ "year": 1707, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": -40.41838459238171, - "c2": -29.164383943545957, - "c3": 41.75313814406136, - "c4": -9.939718804339478, - "c5": 24.23568062587993, - "c6": 15.773252117107752, - "c7": 49.10837163573371 + "points": { + "c1": 1.8318935326086745, + "c2": 29.91207943684403, + "c3": -4.478246863001203, + "c4": 24.998048483070683, + "c5": 5.694721688494354, + "c6": -15.261911583974545, + "c7": 16.08022135479539 }, - "vertexSeeds": { - "c1": 6.1701219865527905, - "c2": 8.028305616734574, - "c3": 10.75014559312815, - "c4": 7.321714352070046, - "c5": 8.09447745527477, - "c6": 7.657268563872228, - "c7": 6.339816315618783 + "offsets": { + "c1": 18.478964401294498, + "c2": 15.839112343966713, + "c3": 13.199260286638928, + "c4": 10.55940822931114, + "c5": 7.9195561719833565, + "c6": 5.279704114655573, + "c7": 2.639852057327784 }, "rgb": [77, 76, 132] }, @@ -46365,23 +46365,23 @@ "year": 1706, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -16.238939788047404, - "c2": -21.7269410880103, - "c3": 21.299638928519713, - "c4": -23.48389358164957, - "c5": 9.374313550631918, - "c6": -28.1972219521225, - "c7": -26.867892947744203 + "points": { + "c1": -23.61657280586831, + "c2": -1.3278527912302067, + "c3": -19.853739127410485, + "c4": -1.0430309482835796, + "c5": -0.807618888832053, + "c6": -3.546250003617363, + "c7": 7.724021953515383 }, - "vertexSeeds": { - "c1": 5.692096183764879, - "c2": 5.116688002924745, - "c3": 5.740407676287538, - "c4": 5.40878338261649, - "c5": 5.138570709619344, - "c6": 5.505609265013412, - "c7": 5.805080540623131 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605178032 }, "rgb": [77, 76, 132] }, @@ -46392,23 +46392,23 @@ "year": 1706, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 22.762094849523287, - "c2": 32.74042661138223, - "c3": 16.326897892986942, - "c4": -20.847634129558084, - "c5": -1.6806133786605386, - "c6": -17.03210926983197, - "c7": -38.889990828746264 + "points": { + "c1": 39.74657659477616, + "c2": -22.673698300439494, + "c3": 3.477041868755329, + "c4": -11.185586878872286, + "c5": 42.22126976191818, + "c6": 16.552748594319425, + "c7": -27.463121402104978 }, - "vertexSeeds": { - "c1": 6.76876690658242, - "c2": 7.198395168746561, - "c3": 7.52249080572272, - "c4": 6.839259649598129, - "c5": 6.927362761209392, - "c6": 7.0314452832485745, - "c7": 7.479935495825945 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847435, + "c3": 9.107720758206195, + "c4": 7.286176606564956, + "c5": 5.464632454923717, + "c6": 3.643088303282478, + "c7": 1.821544151641239 }, "rgb": [86, 146, 138] }, @@ -46419,23 +46419,23 @@ "year": 1706, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -7.28870097636139, - "c2": -4.466502660311367, - "c3": -22.513777854497846, - "c4": -12.010000419809163, - "c5": -9.209225352225754, - "c6": 13.427353538776376, - "c7": -28.89594971685342 + "points": { + "c1": 20.75800970385668, + "c2": -12.45563852857071, + "c3": 27.47345082497428, + "c4": 21.135707820251717, + "c5": 13.991896087004122, + "c6": -16.856894214097764, + "c7": -4.859217874826157 }, - "vertexSeeds": { - "c1": 8.185427296219263, - "c2": 8.578832622703006, - "c3": 8.302854656719779, - "c4": 8.034774372616164, - "c5": 8.135830758572755, - "c6": 7.91396273472688, - "c7": 7.9773645669297855 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.42718446601942, + "c3": 10.355987055016184, + "c4": 8.284789644012939, + "c5": 6.213592233009703, + "c6": 4.1423948220064695, + "c7": 2.0711974110032347 }, "rgb": [222, 0, 59] }, @@ -46446,23 +46446,23 @@ "year": 1706, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 13.524829203405599, - "c2": 27.072387573752895, - "c3": -24.80976966899822, - "c4": -20.876632678355616, - "c5": -20.46145428561302, - "c6": -13.515360544091383, - "c7": -0.905339296349311 + "points": { + "c1": 21.032114536473888, + "c2": 11.826352067052088, + "c3": -30.308979369686995, + "c4": -4.495448997295501, + "c5": 4.0947070302075055, + "c6": 26.773440676835715, + "c7": -0.5904789121163354 }, - "vertexSeeds": { - "c1": 7.139943042491126, - "c2": 7.157248377667777, - "c3": 7.5510058321257505, - "c4": 7.583672605968154, - "c5": 7.361021201274259, - "c6": 7.609513154277878, - "c7": 7.018013745552908 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927868, + "c3": 9.153952843273235, + "c4": 7.323162274618579, + "c5": 5.4923717059639445, + "c6": 3.6615811373092897, + "c7": 1.830790568654655 }, "rgb": [58, 15, 49] }, @@ -46473,23 +46473,23 @@ "year": 1706, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 9.543220325375373, - "c2": -33.47429587474545, - "c3": 7.3063904267731274, - "c4": -9.811445970185378, - "c5": -18.290056528287558, - "c6": 16.77365952761417, - "c7": 14.573102430866676 + "points": { + "c1": -22.223771820372082, + "c2": -11.021894520008974, + "c3": 15.150182812331593, + "c4": -38.08764689483643, + "c5": 12.654894124534543, + "c6": -7.999237612964748, + "c7": -17.50097900147509 }, - "vertexSeeds": { - "c1": 2.6289888041646914, - "c2": 2.6501426488269004, - "c3": 2.94634587540541, - "c4": 2.7684758299841414, - "c5": 2.5670683691936347, - "c6": 2.5820209770396985, - "c7": 2.7448529332106877 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194173, + "c3": 3.559870550161815, + "c4": 2.8478964401294506, + "c5": 2.1359223300970864, + "c6": 1.423948220064722, + "c7": 0.7119741100323643 }, "rgb": [86, 146, 138] }, @@ -46500,23 +46500,23 @@ "year": 1706, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -12.010173694677665, - "c2": -25.689757477767422, - "c3": -5.2248988750189405, - "c4": -6.449173088708353, - "c5": 19.72157876222503, - "c6": 7.816402074797075, - "c7": 20.979310810579562 + "points": { + "c1": -34.55070504783434, + "c2": -28.610149735851856, + "c3": 20.249426237545748, + "c4": 17.556558943787792, + "c5": -0.6936002367234408, + "c6": -25.21851446261951, + "c7": 3.938601950521466 }, - "vertexSeeds": { - "c1": 3.0900963620554385, - "c2": 2.9685539860503614, - "c3": 2.8149965385276876, - "c4": 3.0027224867516726, - "c5": 2.9119165022312217, - "c6": 3.0609534797973206, - "c7": 2.773697815526685 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556172, + "c3": 3.7679149329634765, + "c4": 3.014331946370781, + "c5": 2.260748959778086, + "c6": 1.5071659731853906, + "c7": 0.7535829865926953 }, "rgb": [58, 15, 49] }, @@ -46527,23 +46527,23 @@ "year": 1706, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 16.370350641665816, - "c2": -26.038736158098086, - "c3": 21.3129821411895, - "c4": -17.471267359008742, - "c5": -13.38575778850894, - "c6": 25.901845298152992, - "c7": -13.28751669759499 + "points": { + "c1": -12.015145970396215, + "c2": 19.554471264071466, + "c3": -5.783864031387214, + "c4": -12.707140357644665, + "c5": 9.499296606069962, + "c6": 28.075353800768305, + "c7": -0.7099326212383801 }, - "vertexSeeds": { - "c1": 6.0585447664715355, - "c2": 6.266361221199733, - "c3": 6.233009421342902, - "c4": 5.5567538348851935, - "c5": 5.676477217042396, - "c6": 6.186689025413722, - "c7": 5.709788989874813 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273236, + "c3": 7.628294036061023, + "c4": 6.102635228848825, + "c5": 4.576976421636611, + "c6": 3.0513176144244123, + "c7": 1.5256588072122128 }, "rgb": [77, 76, 132] }, @@ -46554,23 +46554,23 @@ "year": 1706, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 5.03304514906214, - "c2": -31.971924424013647, - "c3": 19.97039739816607, - "c4": 1.0769031660064243, - "c5": -1.2549115461824556, - "c6": -23.37476741397017, - "c7": 28.5040190102955 + "points": { + "c1": 4.241665443624996, + "c2": -31.737283727192253, + "c3": -19.76611173486196, + "c4": 0.8227075253676404, + "c5": 8.434988698535747, + "c6": 9.640340245373558, + "c7": -2.342289208754913 }, - "vertexSeeds": { - "c1": 11.193775669831036, - "c2": 12.149051249808164, - "c3": 12.03898721835272, - "c4": 11.62357964717686, - "c5": 12.022862282180451, - "c6": 11.007068648897464, - "c7": 11.736155646499657 + "offsets": { + "c1": 20.355987055016183, + "c2": 17.447988904299596, + "c3": 14.539990753582984, + "c4": 11.631992602866395, + "c5": 8.723994452149785, + "c6": 5.815996301433198, + "c7": 2.9079981507166113 }, "rgb": [58, 15, 49] }, @@ -46581,23 +46581,23 @@ "year": 1706, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 20.42215617524886, - "c2": 16.784621643272025, - "c3": 16.02242928595046, - "c4": -2.9288306298536675, - "c5": -14.466215877764315, - "c6": -10.458530646830358, - "c7": 5.919890960742926 + "points": { + "c1": 15.883457610889579, + "c2": -3.6671144624467438, + "c3": -14.927411494613025, + "c4": 14.906475816776648, + "c5": 19.16146056243251, + "c6": -10.154889904488902, + "c7": 16.05419457865291 }, - "vertexSeeds": { - "c1": 4.986788375499716, - "c2": 4.607927466114686, - "c3": 5.089249780377358, - "c4": 5.046967316402142, - "c5": 5.168847876856706, - "c6": 5.0335232097883775, - "c7": 4.84539312519729 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -46608,23 +46608,23 @@ "year": 1706, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -29.862286523858984, - "c2": -17.12895381680174, - "c3": 3.049025876604148, - "c4": 11.914568126895993, - "c5": 30.150388752234633, - "c6": -13.015926405458085, - "c7": -9.717943928712554 + "points": { + "c1": 8.412231763037965, + "c2": 23.051276162555588, + "c3": -9.639082189728938, + "c4": 4.372560908433627, + "c5": -6.992963836348178, + "c6": -4.97043481942481, + "c7": 19.06764732706982 }, - "vertexSeeds": { - "c1": 8.115794620624456, - "c2": 8.353421347345687, - "c3": 8.469830042635659, - "c4": 8.310296581922142, - "c5": 7.866431880541791, - "c6": 8.543039545908925, - "c7": 8.677765026566071 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.42718446601942, + "c3": 10.355987055016174, + "c4": 8.284789644012942, + "c5": 6.21359223300971, + "c6": 4.142394822006479, + "c7": 2.071197411003231 }, "rgb": [77, 76, 132] }, @@ -46635,23 +46635,23 @@ "year": 1706, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -23.530239831533123, - "c2": 30.525293217485874, - "c3": 0.7726769517832963, - "c4": 1.537482381047532, - "c5": -2.6361693809819897, - "c6": -1.419327288029372, - "c7": 3.13973041791467 + "points": { + "c1": -18.40386632980388, + "c2": -21.55728392882261, + "c3": -7.12951898459168, + "c4": -14.269950684356694, + "c5": -13.252443384566423, + "c6": -12.683042644547577, + "c7": -25.68554298707667 }, - "vertexSeeds": { - "c1": 4.679650762554953, - "c2": 4.231904734149642, - "c3": 4.332984355486166, - "c4": 4.450761440299133, - "c5": 4.790096151370482, - "c6": 4.221789815519548, - "c7": 4.262596633125437 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [222, 0, 59] }, @@ -46662,23 +46662,23 @@ "year": 1706, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -36.49833380111554, - "c2": 11.957379975826392, - "c3": 30.598188333950034, - "c4": -31.99260143709834, - "c5": 0.2565382760139485, - "c6": 29.207486458973108, - "c7": -14.348401553890813 + "points": { + "c1": -23.090265833656517, + "c2": 17.95885265159631, + "c3": -19.96365946056859, + "c4": 15.270920143505322, + "c5": -0.5764484036770199, + "c6": 31.18276665651055, + "c7": 25.466557022632628 }, - "vertexSeeds": { - "c1": 5.294015995071626, - "c2": 4.792456763536461, - "c3": 5.000494920199493, - "c4": 5.459656551176085, - "c5": 5.172316235206053, - "c6": 5.281783919645906, - "c7": 5.2329348946992935 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423029, + "c3": 6.564956079519185, + "c4": 5.251964863615353, + "c5": 3.938973647711508, + "c6": 2.6259824318076763, + "c7": 1.3129912159038382 }, "rgb": [58, 15, 49] }, @@ -46689,23 +46689,23 @@ "year": 1707, "resistanceReported": false, "duration": 46224000, - "curveSeeds": { - "c1": -38.02110943506621, - "c2": 33.80293795853543, - "c3": -57.03948573346545, - "c4": -58.94453109304554, - "c5": 10.642258701200085, - "c6": 32.85804331444003, - "c7": -11.328414761488034 + "points": { + "c1": -57.61414127926287, + "c2": 60.84538925081649, + "c3": -21.60681197274147, + "c4": -42.511382098639416, + "c5": -3.9866789686304926, + "c6": -57.25777883813484, + "c7": 10.351633432720483 }, - "vertexSeeds": { - "c1": 6.127791401454719, - "c2": 6.538389185372579, - "c3": 6.1197535205012175, - "c4": 5.850361224594557, - "c5": 6.908624263296286, - "c6": 5.932694764610457, - "c7": 6.187621661275743 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520115, + "c3": 8.344891354600088, + "c4": 6.675913083680072, + "c5": 5.006934812760058, + "c6": 3.3379565418400303, + "c7": 1.6689782709200152 }, "rgb": [86, 146, 138] }, @@ -46716,23 +46716,23 @@ "year": 1706, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -35.53794234486583, - "c2": -29.60613076757881, - "c3": 2.604868799238808, - "c4": 7.351057369731784, - "c5": 24.305896133638235, - "c6": 19.298373991493833, - "c7": 13.83857444728536 + "points": { + "c1": -22.63318851672127, + "c2": -14.545812528500058, + "c3": -7.556245239356578, + "c4": -15.42414607183439, + "c5": 30.27268807436772, + "c6": -2.824549792963815, + "c7": -4.074293549354827 }, - "vertexSeeds": { - "c1": 3.2611173269038507, - "c2": 3.2605151026325405, - "c3": 3.4611459883681706, - "c4": 3.1614666853730995, - "c5": 3.3449211423569727, - "c6": 3.427719877350733, - "c7": 3.180543358622665 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.2533518261673615, + "c4": 3.4026814609338873, + "c5": 2.5520110957004176, + "c6": 1.7013407304669437, + "c7": 0.8506703652334698 }, "rgb": [238, 201, 159] }, @@ -46743,23 +46743,23 @@ "year": 1706, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 24.125776373722633, - "c2": 18.72447891934566, - "c3": -8.185607979276735, - "c4": -2.5341971260846456, - "c5": 12.546815705570811, - "c6": -7.366411995190063, - "c7": -23.250622945621913 + "points": { + "c1": -0.024417919819999412, + "c2": -10.039735678633935, + "c3": -5.358586372554271, + "c4": -6.075482524929239, + "c5": -18.559805207322047, + "c6": 21.396620090850835, + "c7": 18.16917186536445 }, - "vertexSeeds": { - "c1": 3.2865786593527324, - "c2": 3.1586005938484876, - "c3": 3.2647475168165734, - "c4": 3.240695485354144, - "c5": 3.2013074268611765, - "c6": 3.350799321312416, - "c7": 3.2001023033563647 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400835, + "c3": 4.253351826167357, + "c4": 3.4026814609338873, + "c5": 2.5520110957004176, + "c6": 1.7013407304669477, + "c7": 0.8506703652334697 }, "rgb": [58, 15, 49] }, @@ -46770,23 +46770,23 @@ "year": 1707, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -7.814223210306821, - "c2": 11.180006037665443, - "c3": -11.406433041052221, - "c4": -8.843485501882498, - "c5": 12.753899134995798, - "c6": -1.7643962167038723, - "c7": 16.67017795534545 + "points": { + "c1": -9.207220200158254, + "c2": 36.81714882482035, + "c3": -10.42800671268408, + "c4": 11.048633687920294, + "c5": 31.04470864189517, + "c6": 39.636985337486834, + "c7": 21.33100022983514 }, - "vertexSeeds": { - "c1": 9.180938616538832, - "c2": 9.43416108090479, - "c3": 8.635196803317, - "c4": 9.295440000902452, - "c5": 8.14840028371293, - "c6": 8.513701365184236, - "c7": 9.366826946561371 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588073, + "c3": 11.257512713823397, + "c4": 9.006010171058707, + "c5": 6.7545076282940295, + "c6": 4.503005085529353, + "c7": 2.2515025427646767 }, "rgb": [58, 15, 49] }, @@ -46797,23 +46797,23 @@ "year": 1707, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -25.803328454802873, - "c2": 35.7912576467709, - "c3": -33.793894743194855, - "c4": 31.368571300453624, - "c5": -3.9382037928083307, - "c6": -1.3895939022676416, - "c7": 14.484732433535896 + "points": { + "c1": -0.47034723788469535, + "c2": 38.00455464871155, + "c3": -9.122620817309176, + "c4": 22.925862660012726, + "c5": -30.86960842569787, + "c6": -20.986936794611548, + "c7": 19.389199093032765 }, - "vertexSeeds": { - "c1": 5.8536718534738945, - "c2": 6.357283687742322, - "c3": 6.259410213520203, - "c4": 6.0955959724093205, - "c5": 6.3631013640679, - "c6": 6.057004656932725, - "c7": 6.161221279709928 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661575, + "c4": 6.158113730929257, + "c5": 4.618585298196956, + "c6": 3.0790568654646377, + "c7": 1.5395284327323189 }, "rgb": [58, 15, 49] }, @@ -46824,23 +46824,23 @@ "year": 1707, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -17.03083029197387, - "c2": -7.931006892357363, - "c3": 16.454843548799744, - "c4": 14.830878480257411, - "c5": -4.501352454433523, - "c6": -4.699271351975277, - "c7": -11.559188755060763 + "points": { + "c1": 32.69637048548496, + "c2": -1.9906732886277965, + "c3": 9.183176687357744, + "c4": 16.13647119555406, + "c5": 27.839279028023938, + "c6": -40.050559941663494, + "c7": -37.21615636390447 }, - "vertexSeeds": { - "c1": 14.238386718440706, - "c2": 11.662352623422056, - "c3": 13.169277332445331, - "c4": 13.345307587527536, - "c5": 14.202368024792504, - "c6": 11.776541925572745, - "c7": 14.315737109284518 + "offsets": { + "c1": 23.948220064724918, + "c2": 20.52704576976421, + "c3": 17.105871474803507, + "c4": 13.684697179842802, + "c5": 10.263522884882116, + "c6": 6.84234858992141, + "c7": 3.421174294960705 }, "rgb": [77, 76, 132] }, @@ -46851,23 +46851,23 @@ "year": 1706, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 30.147130550654648, - "c2": -19.242297161000188, - "c3": -8.817158293890696, - "c4": 26.22523470403223, - "c5": -14.872515903572435, - "c6": 29.62478018970361, - "c7": -0.5317807753729262 + "points": { + "c1": 26.37909985007348, + "c2": -24.555911994077302, + "c3": 4.163611712710754, + "c4": 4.322125576412418, + "c5": 23.911359201470333, + "c6": 22.497005982539093, + "c7": -9.404940129534907 }, - "vertexSeeds": { - "c1": 1.951842223787839, - "c2": 1.998199002069886, - "c3": 1.9651907793525232, - "c4": 1.997629761072186, - "c5": 1.9567195432500895, - "c6": 1.9720082734478452, - "c7": 1.9891684551375843 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.884882108183077, + "c3": 2.404068423485895, + "c4": 1.9232547387887289, + "c5": 1.4424410540915464, + "c6": 0.9616273693943644, + "c7": 0.4808136846971822 }, "rgb": [222, 0, 59] }, @@ -46878,23 +46878,23 @@ "year": 1707, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -16.95596017803175, - "c2": 18.672130913690594, - "c3": -39.842391178891106, - "c4": 41.27306584336447, - "c5": 30.431165193248326, - "c6": -27.6592005017571, - "c7": 38.257801648009796 + "points": { + "c1": 20.91715939066419, + "c2": 29.41530798616774, + "c3": -11.632735450592534, + "c4": -31.69547993816073, + "c5": -16.499988487385842, + "c6": 41.95023995961295, + "c7": 23.34804150677072 }, - "vertexSeeds": { - "c1": 3.196841827498799, - "c2": 3.09895931555473, - "c3": 3.2097467947694844, - "c4": 3.089621596038999, - "c5": 3.216066248201031, - "c6": 3.1686465204628433, - "c7": 3.24240224721515 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [77, 76, 132] }, @@ -46905,23 +46905,23 @@ "year": 1707, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -34.754473193193064, - "c2": -16.294822077245918, - "c3": -19.96257233302866, - "c4": 17.99066701898527, - "c5": 21.06632852364843, - "c6": 15.992214733700173, - "c7": 16.919307903790006 + "points": { + "c1": -26.74502639274273, + "c2": -30.06316386715481, + "c3": 24.795687612708768, + "c4": -5.255595722788989, + "c5": -13.328307050709697, + "c6": 26.539370652709934, + "c7": 0.03284560787814428 }, - "vertexSeeds": { - "c1": 7.427246338301286, - "c2": 7.9062172404842075, - "c3": 7.9379079514618525, - "c4": 8.228848098065491, - "c5": 6.593370841577638, - "c6": 7.366959767561242, - "c7": 8.153883889181973 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938973, + "c3": 10.309754969949147, + "c4": 8.247803975959316, + "c5": 6.185852981969487, + "c6": 4.123901987979658, + "c7": 2.061950993989829 }, "rgb": [86, 146, 138] }, @@ -46932,23 +46932,23 @@ "year": 1706, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 3.9548250711090027, - "c2": -25.073636827758946, - "c3": -15.685149951036147, - "c4": -19.59323894727612, - "c5": -16.118426917363863, - "c6": -21.625557768206832, - "c7": 8.965923296913264 + "points": { + "c1": -20.43400199267104, + "c2": -18.76725472628515, + "c3": 22.132118628983786, + "c4": -6.958272693041117, + "c5": 0.04186700375664287, + "c6": -21.443839081637453, + "c7": 18.633241212187794 }, - "vertexSeeds": { - "c1": 3.397309386504226, - "c2": 3.259713923169962, - "c3": 3.0639279038070453, - "c4": 3.2653223990430225, - "c5": 3.172525593330952, - "c6": 3.1126009243682056, - "c7": 3.093026712515932 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719375, + "c5": 2.4410540915395327, + "c6": 1.6273693943596839, + "c7": 0.8136846971798419 }, "rgb": [58, 15, 49] }, @@ -46959,23 +46959,23 @@ "year": 1707, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 14.837509391860088, - "c2": -9.35718998821556, - "c3": 5.8391017148948166, - "c4": 4.835701354783289, - "c5": 22.48540919624584, - "c6": -11.00933876545691, - "c7": 26.610282634240562 + "points": { + "c1": -23.43594689675743, + "c2": 25.724345064913656, + "c3": 22.452810290260636, + "c4": 32.843083678258665, + "c5": 0.2722449179955859, + "c6": -24.019344742233258, + "c7": -2.3683930491337506 }, - "vertexSeeds": { - "c1": 10.283987241189456, - "c2": 10.062792680668329, - "c3": 9.725656791385456, - "c4": 9.82079180294317, - "c5": 10.356462925935732, - "c6": 9.749140319939215, - "c7": 9.41691449844268 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.868238557558941, + "c3": 12.39019879796578, + "c4": 9.91215903837263, + "c5": 7.4341192787794705, + "c6": 4.95607951918631, + "c7": 2.478039759593161 }, "rgb": [238, 201, 159] }, @@ -46986,23 +46986,23 @@ "year": 1707, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -40.58797955041675, - "c2": -38.55903664284638, - "c3": 30.884057463220508, - "c4": -3.476270792584806, - "c5": -16.43489088761637, - "c6": -7.414777542606394, - "c7": 27.21970625987722 + "points": { + "c1": -28.45738876660829, + "c2": 34.808949039248, + "c3": 5.899950631565133, + "c4": 13.5491272347819, + "c5": 13.771248768655425, + "c6": 24.455079081526613, + "c7": 19.215619126682007 }, - "vertexSeeds": { - "c1": 4.035490474084311, - "c2": 4.526664187616485, - "c3": 4.149388176280515, - "c4": 4.278249804718254, - "c5": 4.188517268432799, - "c6": 4.231390578154159, - "c7": 4.460027090162385 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492376, + "c3": 5.45538603791031, + "c4": 4.364308830328246, + "c5": 3.273231622746188, + "c6": 2.18215441516413, + "c7": 1.091077207582065 }, "rgb": [77, 76, 132] }, @@ -47013,23 +47013,23 @@ "year": 1707, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 30.601598994123883, - "c2": 10.258043770494332, - "c3": 9.88068431895973, - "c4": -7.882108259944324, - "c5": -28.92825478523785, - "c6": -26.748295727945955, - "c7": 25.521424073783535 + "points": { + "c1": 4.172478735817528, + "c2": 7.898989060058227, + "c3": 16.642727867114985, + "c4": 16.442649556796653, + "c5": 10.85911103361785, + "c6": -26.759948772179914, + "c7": -27.53276222186938 }, - "vertexSeeds": { - "c1": 4.444907072471882, - "c2": 4.443710003618597, - "c3": 4.751569504317283, - "c4": 4.40249423686151, - "c5": 4.509937728761912, - "c6": 4.571500074328814, - "c7": 4.6096684979157025 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538138, + "c3": 6.056403143781784, + "c4": 4.84512251502543, + "c5": 3.633841886269069, + "c6": 2.422561257512715, + "c7": 1.2112806287563542 }, "rgb": [238, 201, 159] }, @@ -47040,23 +47040,23 @@ "year": 1707, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 20.183832244690265, - "c2": 35.51113877243928, - "c3": -7.032485874085324, - "c4": 29.954729958121277, - "c5": 9.85485554967255, - "c6": -12.153297484110801, - "c7": -13.733041631034851 + "points": { + "c1": 38.907818567140495, + "c2": -22.75153610542614, + "c3": 20.980185396191764, + "c4": 21.95046888759765, + "c5": -14.842471199091491, + "c6": -16.71563716949086, + "c7": -11.597876206337329 }, - "vertexSeeds": { - "c1": 3.73769355519537, - "c2": 3.497156058237645, - "c3": 3.560106114662334, - "c4": 3.5196889336235064, - "c5": 3.745151889077325, - "c6": 3.642135500702553, - "c7": 3.7073460910720852 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.43689320388349, + "c3": 4.5307443365695805, + "c4": 3.62459546925566, + "c5": 2.7184466019417504, + "c6": 1.81229773462783, + "c7": 0.9061488673139101 }, "rgb": [86, 146, 138] }, @@ -47067,23 +47067,23 @@ "year": 1707, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 13.123440551111528, - "c2": 3.4273686963454253, - "c3": 20.623834986224253, - "c4": -24.270308426829466, - "c5": -25.87715759368252, - "c6": 20.178103928585237, - "c7": 1.4082442328127058 + "points": { + "c1": 1.0255704906017442, + "c2": -3.3847002359811, + "c3": 22.29833667997105, + "c4": -32.032571449713394, + "c5": 23.939507069366762, + "c6": 22.845380709979523, + "c7": -10.485618102748653 }, - "vertexSeeds": { - "c1": 10.189639927627457, - "c2": 10.309400303265289, - "c3": 9.931759924429697, - "c4": 10.20967386536032, - "c5": 10.226346199364492, - "c6": 9.982841146521853, - "c7": 10.00824178490752 + "offsets": { + "c1": 17.281553398058254, + "c2": 14.812760055478483, + "c3": 12.343966712898784, + "c4": 9.875173370319013, + "c5": 7.4063800277392415, + "c6": 4.93758668515947, + "c7": 2.468793342579735 }, "rgb": [86, 146, 138] }, @@ -47094,23 +47094,23 @@ "year": 1707, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 23.611216618122782, - "c2": 6.22226790595974, - "c3": 14.097163830198554, - "c4": -19.024241689610804, - "c5": 4.38169054830567, - "c6": 20.670460784836784, - "c7": -26.842416975813293 + "points": { + "c1": -7.9206255995606085, + "c2": -40.03500813192245, + "c3": -26.185514319002422, + "c4": 21.028285111183855, + "c5": 29.699717550281974, + "c6": -22.05281323871204, + "c7": -32.914245094799085 }, - "vertexSeeds": { - "c1": 3.695330523862696, - "c2": 3.8239604101296787, - "c3": 3.8859112147635018, - "c4": 3.965336742367206, - "c5": 3.676325263109452, - "c6": 3.7418019989629694, - "c7": 3.694020145299339 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374015, + "c4": 4.068423485899212, + "c5": 3.0513176144244065, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [86, 146, 138] }, @@ -47121,23 +47121,23 @@ "year": 1707, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 5.529383929819886, - "c2": 7.930385991514228, - "c3": -17.455413216119563, - "c4": -15.888036036189185, - "c5": -15.428631635446031, - "c6": 12.551108206995899, - "c7": 18.558630064251744 + "points": { + "c1": 13.46575990825415, + "c2": -33.981702871866155, + "c3": -24.227301690424692, + "c4": 31.97107527846302, + "c5": 25.559602142862232, + "c6": -8.81238242228751, + "c7": -4.534598545176294 }, - "vertexSeeds": { - "c1": 9.614764930431376, - "c2": 9.822611125974397, - "c3": 9.60176655913991, - "c4": 9.655861717862507, - "c5": 9.805662520536831, - "c6": 9.720021303259621, - "c7": 9.827318806741609 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.14701803051315, + "c3": 11.789181692094324, + "c4": 9.431345353675434, + "c5": 7.073509015256544, + "c6": 4.715672676837717, + "c7": 2.357836338418827 }, "rgb": [86, 146, 138] }, @@ -47148,23 +47148,23 @@ "year": 1707, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 35.241835769521046, - "c2": 34.664242924588194, - "c3": -27.075601005401374, - "c4": -24.27848351063369, - "c5": -14.648606132231105, - "c6": 19.64133996327189, - "c7": -21.41407379627898 + "points": { + "c1": -12.16323139692587, + "c2": -16.26656828258684, + "c3": -23.41849309311546, + "c4": 38.47889450124029, + "c5": 36.89572088659335, + "c6": -14.72218141235225, + "c7": 12.629294759870312 }, - "vertexSeeds": { - "c1": 10.02266670724017, - "c2": 10.957681912214156, - "c3": 9.469733105198479, - "c4": 9.788277687999509, - "c5": 9.530966069890296, - "c6": 10.35028761948634, - "c7": 10.48700801256147 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846056, + "c3": 13.129912159038367, + "c4": 10.5039297272307, + "c5": 7.877947295423033, + "c6": 5.251964863615344, + "c7": 2.625982431807678 }, "rgb": [238, 201, 159] }, @@ -47175,23 +47175,23 @@ "year": 1707, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 23.859622419558207, - "c2": 2.2025598126962436, - "c3": -1.3760692791556792, - "c4": 16.708940544505438, - "c5": -11.746591910517001, - "c6": -13.741655398663951, - "c7": -19.883999451776063 + "points": { + "c1": -8.324581865262584, + "c2": -5.768089080338974, + "c3": -0.14839575514156422, + "c4": -13.834881735313903, + "c5": -3.168863299948498, + "c6": -3.1421184482433553, + "c7": -16.359642238515242 }, - "vertexSeeds": { - "c1": 5.800796474962427, - "c2": 6.935869195296268, - "c3": 6.790866290557696, - "c4": 6.361851461854845, - "c5": 5.835255824896012, - "c6": 6.507068754871962, - "c7": 6.609915724144868 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [77, 76, 132] }, @@ -47202,23 +47202,23 @@ "year": 1707, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 12.487030063019112, - "c2": -8.412554840991561, - "c3": -29.233452411750783, - "c4": 1.9722544677277796, - "c5": 9.840715550046205, - "c6": 15.374376184101557, - "c7": 22.57514677529022 + "points": { + "c1": 24.409921784466967, + "c2": 16.956771583499552, + "c3": -9.776452294795188, + "c4": 35.67674995608968, + "c5": -10.99950296214558, + "c6": -29.101879303761216, + "c7": -26.3173312216562 }, - "vertexSeeds": { - "c1": 2.7605960054272636, - "c2": 2.902880227435558, - "c3": 2.720124188031508, - "c4": 2.4046505126674522, - "c5": 2.4826244373928055, - "c6": 2.785167528997073, - "c7": 2.6552359319380203 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073512, + "c3": 3.4905224225612574, + "c4": 2.7924179380490086, + "c5": 2.0943134535367545, + "c6": 1.3962089690245054, + "c7": 0.6981044845122515 }, "rgb": [77, 76, 132] }, @@ -47229,23 +47229,23 @@ "year": 1707, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -12.450926981414447, - "c2": 22.128787265789555, - "c3": -6.450175153223842, - "c4": 5.331049773588106, - "c5": -23.297449221953507, - "c6": -27.883357716037743, - "c7": 30.052525199469187 + "points": { + "c1": 10.60605181150472, + "c2": -27.200395683431363, + "c3": 12.944398276565984, + "c4": 6.882437989278472, + "c5": -21.899107977000074, + "c6": -8.432187965169952, + "c7": -11.241759377833397 }, - "vertexSeeds": { - "c1": 5.67684417772704, - "c2": 5.335884777620219, - "c3": 5.950118900068126, - "c4": 5.956156886111526, - "c5": 5.356546122202826, - "c6": 6.1365389310949245, - "c7": 6.011484724705076 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750343, + "c3": 7.327785483125295, + "c4": 5.862228386500234, + "c5": 4.396671289875171, + "c6": 2.9311141932501235, + "c7": 1.4655570966250617 }, "rgb": [86, 146, 138] }, @@ -47256,23 +47256,23 @@ "year": 1707, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -3.690478759763476, - "c2": -27.495692928789953, - "c3": 24.96183597611634, - "c4": -1.434434223467214, - "c5": -0.28234218394575805, - "c6": 3.973535657023639, - "c7": 28.74101279129708 + "points": { + "c1": 7.989980525319922, + "c2": -28.255694079599635, + "c3": 15.154559076218185, + "c4": -4.55896792616803, + "c5": -15.232675878726983, + "c6": 22.839945325510506, + "c7": -10.380773419554775 }, - "vertexSeeds": { - "c1": 4.2461987140297115, - "c2": 4.0542384989118965, - "c3": 4.127527798379432, - "c4": 4.089302772766485, - "c5": 3.812487060037254, - "c6": 4.030673824110948, - "c7": 4.202941481666278 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -47283,23 +47283,23 @@ "year": 1708, "resistanceReported": true, "duration": 39830400, - "curveSeeds": { - "c1": -40.14560091693544, - "c2": -9.732315890216029, - "c3": -17.03140037159352, - "c4": 48.414778344450255, - "c5": -27.35543054336469, - "c6": 13.453006040982913, - "c7": 38.32391838277553 + "points": { + "c1": -27.59550207196353, + "c2": -49.58908978837556, + "c3": -11.781818349684258, + "c4": -45.568973682094494, + "c5": -16.064169545429635, + "c6": 2.4845733610482412, + "c7": -20.202927284150654 }, - "vertexSeeds": { - "c1": 5.536666079177794, - "c2": 5.669040270414459, - "c3": 5.756349833322875, - "c4": 5.593898274842452, - "c5": 5.51640074171888, - "c6": 5.526698562531774, - "c7": 5.693712755416052 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055488, + "c4": 5.547850208044397, + "c5": 4.160887656033307, + "c6": 2.7739251040221813, + "c7": 1.3869625520110906 }, "rgb": [77, 76, 132] }, @@ -47310,23 +47310,23 @@ "year": 1707, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -11.771722839585983, - "c2": -9.395935640948187, - "c3": 11.741322507934893, - "c4": 3.824526185488743, - "c5": 15.53402488205855, - "c6": -24.827789278253878, - "c7": -16.841031741714005 + "points": { + "c1": 19.26262557439082, + "c2": 6.619209544483102, + "c3": 14.81658305027268, + "c4": 24.659063318914303, + "c5": 7.631624323118242, + "c6": 5.605606776740711, + "c7": 18.965318509646675 }, - "vertexSeeds": { - "c1": 3.5495383446402244, - "c2": 3.51987945751692, - "c3": 3.4701451887056485, - "c4": 3.365497685638683, - "c5": 3.3231742224471548, - "c6": 3.370232940432564, - "c7": 3.3978236646347275 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441057, + "c3": 4.276467868700877, + "c4": 3.4211742949607045, + "c5": 2.565880721220525, + "c6": 1.7105871474803522, + "c7": 0.8552935737401728 }, "rgb": [86, 146, 138] }, @@ -47337,23 +47337,23 @@ "year": 1707, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -15.948594581039405, - "c2": 4.816060009810364, - "c3": -17.733368914230535, - "c4": 20.46159100901442, - "c5": -29.891795359448196, - "c6": 38.44906233006674, - "c7": -36.36029686939301 + "points": { + "c1": 16.356700984922313, + "c2": -1.8579143953191135, + "c3": 14.729694053179024, + "c4": -4.4919299951983405, + "c5": 24.587994043504622, + "c6": -21.285938411618616, + "c7": -11.86473145240647 }, - "vertexSeeds": { - "c1": 1.796916940795292, - "c2": 1.7806203512202838, - "c3": 1.791230732613266, - "c4": 1.7829317750171418, - "c5": 1.7796373090796984, - "c6": 1.7865591993954801, - "c7": 1.7762806209917592 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808503, + "c3": 2.1729079981507198, + "c4": 1.738326398520567, + "c5": 1.303744798890436, + "c6": 0.8691631992602835, + "c7": 0.43458159963013093 }, "rgb": [238, 201, 159] }, @@ -47364,23 +47364,23 @@ "year": 1707, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 8.597735651196231, - "c2": -32.25805019710576, - "c3": 26.207049020288835, - "c4": -27.279932237541953, - "c5": -19.952792435134253, - "c6": 20.97662728616038, - "c7": 5.994349538061826 + "points": { + "c1": 34.027247131154624, + "c2": -7.794693728546228, + "c3": -35.751399963952736, + "c4": -25.469225895249515, + "c5": -29.682000746553882, + "c6": -31.362301739449826, + "c7": -19.789714543567303 }, - "vertexSeeds": { - "c1": 5.14639664809969, - "c2": 5.12356414914296, - "c3": 4.209245876741176, - "c4": 5.214367908042444, - "c5": 4.661766542795131, - "c6": 5.194890391470322, - "c7": 5.051461564086062 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061023, + "c3": 6.356911696717525, + "c4": 5.085529357374018, + "c5": 3.8141470180305115, + "c6": 2.542764678687009, + "c7": 1.2713823393435064 }, "rgb": [238, 201, 159] }, @@ -47391,23 +47391,23 @@ "year": 1707, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 9.650614750180509, - "c2": -22.32327551041271, - "c3": 14.441219219705111, - "c4": -6.375539685817024, - "c5": 6.3506522358576625, - "c6": 16.83516165857069, - "c7": -18.715567448436648 + "points": { + "c1": -1.5619169114509006, + "c2": -2.3146173044281433, + "c3": 4.580706782205642, + "c4": -17.687491880929333, + "c5": 22.107055424666562, + "c6": -1.6182375658444244, + "c7": 23.804120128443586 }, - "vertexSeeds": { - "c1": 3.9798214284173468, - "c2": 4.388239577762315, - "c3": 3.9719663956051097, - "c4": 4.040992269293925, - "c5": 4.274839904721699, - "c6": 4.430976682224573, - "c7": 4.163511877172311 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [77, 76, 132] }, @@ -47418,23 +47418,23 @@ "year": 1707, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": -10.940380613280425, - "c2": -3.128383282545606, - "c3": 14.445467121450903, - "c4": -10.641750173568854, - "c5": 2.227042312812184, - "c6": 1.1655941851535658, - "c7": -1.3605513521528625 + "points": { + "c1": -2.5710130059824348, + "c2": 7.406478896765844, + "c3": 10.559491618876717, + "c4": -4.951981051978002, + "c5": -12.517301803609408, + "c6": 2.4412287851672794, + "c7": -16.808955269361174 }, - "vertexSeeds": { - "c1": 4.507817109002649, - "c2": 4.188074397598755, - "c3": 4.578166540387147, - "c4": 4.467727355790109, - "c5": 4.284761482656464, - "c6": 4.55896826384782, - "c7": 4.436423663724508 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -47445,23 +47445,23 @@ "year": 1707, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 16.219721398437976, - "c2": 26.13919477847351, - "c3": 27.036505229676408, - "c4": -10.759329347607888, - "c5": -26.604098061734717, - "c6": 7.345796258108244, - "c7": -16.752797389561813 + "points": { + "c1": -21.210345418478596, + "c2": 13.556220197922165, + "c3": -2.363738471049686, + "c4": -13.714147851935117, + "c5": -25.751330889290408, + "c6": 13.317877174328103, + "c7": -10.097537008856232 }, - "vertexSeeds": { - "c1": 2.5455996786744906, - "c2": 2.5127249734261214, - "c3": 2.5160097223213547, - "c4": 2.5782609903536207, - "c5": 2.4641561070101394, - "c6": 2.484836875840965, - "c7": 2.555530319014615 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897393, + "c3": 3.097549699491444, + "c4": 2.478039759593158, + "c5": 1.8585298196948674, + "c6": 1.2390198797965812, + "c7": 0.6195099398982906 }, "rgb": [86, 146, 138] }, @@ -47472,23 +47472,23 @@ "year": 1707, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -23.47431768578037, - "c2": 9.499196156303405, - "c3": -14.390914989515807, - "c4": 21.909203372851557, - "c5": -15.314971602685407, - "c6": 22.871199956572553, - "c7": 9.320576463795724 + "points": { + "c1": -27.112117348217126, + "c2": -21.668766146332977, + "c3": -32.516737452806744, + "c4": 17.392813714593984, + "c5": 23.464046521178872, + "c6": -1.8977379755247838, + "c7": -18.628454391659577 }, - "vertexSeeds": { - "c1": 1.8849499531905658, - "c2": 2.111037914114566, - "c3": 2.058106929932186, - "c4": 2.2026790027295307, - "c5": 1.9987180197868555, - "c6": 2.178540449187832, - "c7": 2.0438614213693302 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.217753120665742, + "c3": 2.681460933888119, + "c4": 2.145168747110493, + "c5": 1.60887656033287, + "c6": 1.0725843735552465, + "c7": 0.5362921867776232 }, "rgb": [58, 15, 49] }, @@ -47499,23 +47499,23 @@ "year": 1707, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 11.56467903434401, - "c2": 0.5812106880439956, - "c3": 26.895014254776818, - "c4": 3.2441536145552377, - "c5": -4.041894788876533, - "c6": 31.244476682958542, - "c7": 10.59643053191568 + "points": { + "c1": 16.845404947170046, + "c2": 0.12302714503106671, + "c3": -21.75544683167942, + "c4": 19.424012944363284, + "c5": -0.46858011987048087, + "c6": 8.337754094266494, + "c7": -1.0267180493705794 }, - "vertexSeeds": { - "c1": 5.182856060674283, - "c2": 5.298456548019911, - "c3": 5.598072075604289, - "c4": 5.674773954826112, - "c5": 5.65507002532045, - "c6": 5.588398998447056, - "c7": 5.19681262260146 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026347, + "c3": 6.911696717521963, + "c4": 5.529357374017564, + "c5": 4.147018030513181, + "c6": 2.764678687008782, + "c7": 1.382339343504383 }, "rgb": [222, 0, 59] }, @@ -47526,23 +47526,23 @@ "year": 1707, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -24.27208218063514, - "c2": 36.8247732671621, - "c3": -13.852714348085875, - "c4": 12.008169721646105, - "c5": -25.908555014056567, - "c6": -25.7505978305884, - "c7": 31.971253093949116 + "points": { + "c1": -38.444319491443224, + "c2": 28.895765084841813, + "c3": 4.504965313507398, + "c4": 15.525928989694577, + "c5": -8.190445667958834, + "c6": -3.534533125012196, + "c7": -25.004975914415766 }, - "vertexSeeds": { - "c1": 9.034562429217885, - "c2": 8.994508559100797, - "c3": 9.954857037070132, - "c4": 8.388674509123726, - "c5": 8.464093564797569, - "c6": 9.808057012045616, - "c7": 8.39152103271185 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.868238557558943, + "c3": 12.390198797965787, + "c4": 9.912159038372629, + "c5": 7.434119278779471, + "c6": 4.956079519186314, + "c7": 2.478039759593157 }, "rgb": [77, 76, 132] }, @@ -47553,23 +47553,23 @@ "year": 1708, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 16.6500228989822, - "c2": -12.420248666536622, - "c3": -4.682432242125607, - "c4": 37.47337545274859, - "c5": -1.9157241632235085, - "c6": 34.16674466498976, - "c7": 36.96514495654808 + "points": { + "c1": -31.91387643136074, + "c2": 6.744659299136096, + "c3": 20.55028415363173, + "c4": 32.92430590327496, + "c5": 43.127400644070924, + "c6": -30.169919158622235, + "c7": -34.44529830814534 }, - "vertexSeeds": { - "c1": 9.782493251840476, - "c2": 10.046703215228971, - "c3": 9.629322278049644, - "c4": 10.057127289867731, - "c5": 9.774386138582607, - "c6": 9.315963130061402, - "c7": 9.557959889451412 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076303, + "c3": 12.112806287563565, + "c4": 9.69024503005087, + "c5": 7.267683772538152, + "c6": 4.845122515025435, + "c7": 2.4225612575127173 }, "rgb": [222, 0, 59] }, @@ -47580,23 +47580,23 @@ "year": 1707, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 32.28532267342591, - "c2": -0.21973533785319432, - "c3": 22.79480119774425, - "c4": -25.209746821423487, - "c5": -36.86605788849633, - "c6": 6.819012128573533, - "c7": -11.163292062491884 + "points": { + "c1": 33.43593004743724, + "c2": 11.1924716789621, + "c3": 20.058011370043317, + "c4": 44.00436806728925, + "c5": 15.190269987836125, + "c6": 7.688259244194803, + "c7": 45.95973134555548 }, - "vertexSeeds": { - "c1": 9.400249693319433, - "c2": 9.508597296310196, - "c3": 9.592257706170997, - "c4": 9.969391630315021, - "c5": 8.662902828627244, - "c6": 9.466877095588476, - "c7": 8.847421009894259 + "offsets": { + "c1": 18.058252427184467, + "c2": 15.478502080443832, + "c3": 12.898751733703198, + "c4": 10.319001386962556, + "c5": 7.739251040221912, + "c6": 5.159500693481278, + "c7": 2.579750346740643 }, "rgb": [222, 0, 59] }, @@ -47607,23 +47607,23 @@ "year": 1708, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -9.454752082606717, - "c2": 24.50136015722856, - "c3": -12.77753666515964, - "c4": -39.58973106858788, - "c5": -28.63193951368148, - "c6": 16.32493066375821, - "c7": -14.60254718404125 + "points": { + "c1": 12.243005193372731, + "c2": 39.27545891350083, + "c3": 45.18546124277766, + "c4": 4.559246213892713, + "c5": 27.988145553683992, + "c6": 7.8108250350882145, + "c7": -10.638788466961643 }, - "vertexSeeds": { - "c1": 4.016417687263174, - "c2": 4.3898661995698935, - "c3": 4.72413193683763, - "c4": 4.801024725284055, - "c5": 3.9341687380491965, - "c6": 4.2382525459808145, - "c7": 4.458810778475849 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [86, 146, 138] }, @@ -47634,23 +47634,23 @@ "year": 1708, "resistanceReported": false, "duration": 45792000, - "curveSeeds": { - "c1": 15.661671745587633, - "c2": -25.959654405646283, - "c3": 31.533151378577763, - "c4": -13.46407290598561, - "c5": -48.1725513670575, - "c6": -9.721824611645225, - "c7": -37.443803930888 + "points": { + "c1": 52.21633048604203, + "c2": -19.754838549227337, + "c3": -47.74479908082586, + "c4": -45.13782410805821, + "c5": -33.97512077929399, + "c6": 61.2044331329242, + "c7": 28.580608051548843 }, - "vertexSeeds": { - "c1": 1.924465594145373, - "c2": 2.28571509252948, - "c3": 1.9359224008834797, - "c4": 2.3187176736537563, - "c5": 2.14624196379758, - "c6": 2.286067674225352, - "c7": 2.0114822190012154 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668528, + "c3": 2.797041146555709, + "c4": 2.2376329172445684, + "c5": 1.678224687933425, + "c6": 1.1188164586222842, + "c7": 0.5594082293111432 }, "rgb": [238, 201, 159] }, @@ -47661,23 +47661,23 @@ "year": 1708, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 8.642283019761301, - "c2": -23.492283633956667, - "c3": -44.663568807229105, - "c4": -16.581691022897424, - "c5": -16.462137616523812, - "c6": 46.30161305392647, - "c7": 35.10905040850907 + "points": { + "c1": -23.02711283158349, + "c2": -27.034646038918336, + "c3": 11.250030963470714, + "c4": -24.80004803283092, + "c5": -24.691994078057878, + "c6": 36.28434296531686, + "c7": 19.327944424349305 }, - "vertexSeeds": { - "c1": 1.7566718285217051, - "c2": 1.7263529611324047, - "c3": 1.7024663687466324, - "c4": 1.7666970694219073, - "c5": 1.8805355874468186, - "c6": 1.663992803050078, - "c7": 1.6790870859746418 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.8571428571428568, + "c3": 2.3809523809523823, + "c4": 1.904761904761905, + "c5": 1.4285714285714284, + "c6": 0.9523809523809514, + "c7": 0.47619047619047694 }, "rgb": [58, 15, 49] }, @@ -47688,23 +47688,23 @@ "year": 1708, "resistanceReported": false, "duration": 55209600, - "curveSeeds": { - "c1": -23.06381941879075, - "c2": 66.93129630753151, - "c3": -60.64295289015206, - "c4": -21.402949803322933, - "c5": 21.56996498063566, - "c6": 37.532523091644194, - "c7": -41.95092284937511 + "points": { + "c1": -69.73327134628222, + "c2": 0.21220312078412462, + "c3": -43.95299227950326, + "c4": -60.510796545219556, + "c5": -60.245464347652444, + "c6": -17.09022283378338, + "c7": -69.10689785193351 }, - "vertexSeeds": { - "c1": 4.53055567766913, - "c2": 4.130119137633181, - "c3": 4.571524209671752, - "c4": 4.963322334589764, - "c5": 4.184487784240927, - "c6": 4.61414775947756, - "c7": 4.6133625667015234 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457701, + "c3": 6.010171058714747, + "c4": 4.8081368469718, + "c5": 3.6061026352288525, + "c6": 2.4040684234859, + "c7": 1.2020342117429523 }, "rgb": [86, 146, 138] }, @@ -47715,23 +47715,23 @@ "year": 1707, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -19.109208669258884, - "c2": -2.1051164395424564, - "c3": 2.6014937499033586, - "c4": -14.742729746744105, - "c5": -12.436290832375011, - "c6": 19.207980642478695, - "c7": 13.559292626002943 + "points": { + "c1": 14.480928058660616, + "c2": 19.371839949812, + "c3": -11.83820050019916, + "c4": -13.987291041871703, + "c5": -25.073718333127584, + "c6": 16.8308765017303, + "c7": -9.774471824117926 }, - "vertexSeeds": { - "c1": 3.6044393754378183, - "c2": 3.6827004157346543, - "c3": 3.8199478508007174, - "c4": 3.7328515729037792, - "c5": 3.6668298798761114, - "c6": 3.6159134748789823, - "c7": 3.809495809061348 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703652, + "c4": 3.6985668053629213, + "c5": 2.773925104022191, + "c6": 1.8492834026814606, + "c7": 0.9246417013407303 }, "rgb": [58, 15, 49] }, @@ -47742,23 +47742,23 @@ "year": 1707, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 20.924740755998094, - "c2": -5.257830597994385, - "c3": -3.496735145935766, - "c4": -3.1841871198508684, - "c5": 28.78018012372084, - "c6": 32.26475609627178, - "c7": -37.007782493928175 + "points": { + "c1": -13.090416878184847, + "c2": -33.45814983163068, + "c3": -2.2663972086029816, + "c4": 32.9030329122851, + "c5": 10.76289184625876, + "c6": -25.607501415461627, + "c7": -9.86373232997935 }, - "vertexSeeds": { - "c1": 5.993783822261683, - "c2": 5.6814874081727735, - "c3": 6.718781563406458, - "c4": 6.921995766760268, - "c5": 5.923266254324846, - "c6": 6.729471574975172, - "c7": 6.89671350755446 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733701, + "c5": 5.0346740638002805, + "c6": 3.3564493758668505, + "c7": 1.6782246879334297 }, "rgb": [58, 15, 49] }, @@ -47769,23 +47769,23 @@ "year": 1707, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -25.03826950617068, - "c2": -4.899376302848669, - "c3": 27.17740767517993, - "c4": 16.301370828300072, - "c5": 10.620495707321865, - "c6": -7.51356559202047, - "c7": -20.20890193837007 + "points": { + "c1": 4.497875912133104, + "c2": 9.878826096161895, + "c3": -29.251534838205608, + "c4": -8.773868923477654, + "c5": -6.208114834767532, + "c6": -30.972136165517526, + "c7": 12.172487403691349 }, - "vertexSeeds": { - "c1": 3.972700358672598, - "c2": 3.099122961796346, - "c3": 3.0935910941070857, - "c4": 3.145381257326083, - "c5": 3.9882232581015185, - "c6": 3.836786876103797, - "c7": 3.140647212061561 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366158, + "c3": 4.808136846971797, + "c4": 3.8465094775774396, + "c5": 2.884882108183079, + "c6": 1.923254738788718, + "c7": 0.9616273693943609 }, "rgb": [238, 201, 159] }, @@ -47796,23 +47796,23 @@ "year": 1707, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 31.60241305279834, - "c2": 25.48506873882622, - "c3": 23.46135062682731, - "c4": 13.4652293922749, - "c5": 17.483503143404924, - "c6": 35.023124306799005, - "c7": -28.494298505361147 + "points": { + "c1": -26.679968952135944, + "c2": 27.184314495977915, + "c3": 34.52368611317662, + "c4": 13.329135118224329, + "c5": -16.955097920502745, + "c6": 23.41960001763526, + "c7": -23.560320493355146 }, - "vertexSeeds": { - "c1": 2.781534479575658, - "c2": 2.95714451589427, - "c3": 2.723049163647167, - "c4": 3.022765662044257, - "c5": 2.7497650193500136, - "c6": 2.8914874022547528, - "c7": 2.8321589755534275 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355065, + "c3": 3.6523347202958822, + "c4": 2.921867776236707, + "c5": 2.1914008321775325, + "c6": 1.4609338881183576, + "c7": 0.7304669440591748 }, "rgb": [77, 76, 132] }, @@ -47823,23 +47823,23 @@ "year": 1707, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -10.861888880260711, - "c2": -3.0989754216432637, - "c3": -5.609645263867726, - "c4": -29.10970879561234, - "c5": -24.521786179967208, - "c6": 3.00276578588311, - "c7": 27.216200959222444 + "points": { + "c1": -22.35641476950187, + "c2": -0.19746165510269265, + "c3": -26.550394408980456, + "c4": 32.05812494905278, + "c5": 14.160532332942559, + "c6": -6.859766381108528, + "c7": 30.756735675356694 }, - "vertexSeeds": { - "c1": 4.001863873622393, - "c2": 4.208628070520067, - "c3": 4.305697522767366, - "c4": 4.192069655808445, - "c5": 4.168154794556198, - "c6": 4.013001068826787, - "c7": 3.9073897598676877 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009707, + "c3": 5.177993527508094, + "c4": 4.142394822006474, + "c5": 3.1067961165048534, + "c6": 2.071197411003233, + "c7": 1.0355987055016205 }, "rgb": [77, 76, 132] }, @@ -47850,23 +47850,23 @@ "year": 1707, "resistanceReported": true, "duration": 21945600, - "curveSeeds": { - "c1": 11.667415946516307, - "c2": 22.69491336846992, - "c3": 2.199530406476363, - "c4": 24.679712150772836, - "c5": 3.782625316778528, - "c6": -2.8564295018162476, - "c7": 0.38760062223988 + "points": { + "c1": 7.906290535332921, + "c2": -28.438740490080924, + "c3": 21.23492042251752, + "c4": 21.659238151436305, + "c5": -21.0641310322793, + "c6": 24.420996411972197, + "c7": 21.835567905277138 }, - "vertexSeeds": { - "c1": 1.4623397292410183, - "c2": 1.496053612720023, - "c3": 1.453015573089208, - "c4": 1.4454442235628846, - "c5": 1.4803798656039255, - "c6": 1.4731923039304198, - "c7": 1.4828626603297175 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.1636615811373074, + "c3": 1.803051317614421, + "c4": 1.4424410540915342, + "c5": 1.0818307905686477, + "c6": 0.7212205270457731, + "c7": 0.36061026352288655 }, "rgb": [222, 0, 59] }, @@ -47877,23 +47877,23 @@ "year": 1707, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -17.648877474930796, - "c2": -14.559351161159805, - "c3": -20.97973920814598, - "c4": 5.571669207005645, - "c5": 14.776552242701992, - "c6": -5.357047875099241, - "c7": -0.5913835371290794 + "points": { + "c1": -8.709092872466684, + "c2": -18.948525326889474, + "c3": 5.147289303185378, + "c4": -14.69667038867659, + "c5": -12.302743888717753, + "c6": -4.331987006897982, + "c7": -2.252441339393144 }, - "vertexSeeds": { - "c1": 3.4649003147605737, - "c2": 3.226256134284769, - "c3": 3.2772125855944467, - "c4": 3.333667231263198, - "c5": 3.8053882739008937, - "c6": 3.3857231697625467, - "c7": 3.519500704304945 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124827, + "c3": 4.66944059177069, + "c4": 3.7355524734165533, + "c5": 2.801664355062416, + "c6": 1.867776236708279, + "c7": 0.9338881183541421 }, "rgb": [58, 15, 49] }, @@ -47904,23 +47904,23 @@ "year": 1708, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -16.065918673473718, - "c2": 7.851006116273773, - "c3": -24.722708920475245, - "c4": 26.867548390323336, - "c5": 4.7674462258868076, - "c6": 27.541008431647015, - "c7": 40.33020840723688 + "points": { + "c1": -12.55683908561452, + "c2": -34.95852275165877, + "c3": 16.917934569086363, + "c4": 29.158855874921613, + "c5": -26.134003712941833, + "c6": 41.05418306216613, + "c7": -9.455346736953906 }, - "vertexSeeds": { - "c1": 9.700513688768421, - "c2": 10.18010780502312, - "c3": 10.256207469722877, - "c4": 9.712650709737066, - "c5": 9.852400795349803, - "c6": 9.90875287860962, - "c7": 9.952160932689875 + "offsets": { + "c1": 17.184466019417478, + "c2": 14.72954230235783, + "c3": 12.27461858529818, + "c4": 9.819694868238532, + "c5": 7.364771151178946, + "c6": 4.909847434119266, + "c7": 2.4549237170596485 }, "rgb": [58, 15, 49] }, @@ -47931,23 +47931,23 @@ "year": 1708, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -39.335773982072965, - "c2": -25.523908836954835, - "c3": 9.918686156144503, - "c4": -29.415764121126173, - "c5": 30.077746352785994, - "c6": -1.483549695406694, - "c7": -40.824604778667094 + "points": { + "c1": -13.577982838892563, + "c2": -44.96648538696764, + "c3": -39.42021151993993, + "c4": 16.54017774810044, + "c5": 29.654477682461305, + "c6": -31.48686283831341, + "c7": 29.617247522755946 }, - "vertexSeeds": { - "c1": 6.8066922952853, - "c2": 6.819122609711872, - "c3": 6.812090970773434, - "c4": 6.802935033067373, - "c5": 6.805409957662792, - "c6": 6.814766144561601, - "c7": 6.8071622598500054 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366157838, + "c3": 8.136846971798521, + "c4": 6.509477577438559, + "c5": 4.882108183079242, + "c6": 3.2547387887192794, + "c7": 1.6273693943599634 }, "rgb": [222, 0, 59] }, @@ -47958,23 +47958,23 @@ "year": 1708, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": 46.79865730485557, - "c2": -9.163614008758621, - "c3": -7.449555116798194, - "c4": -8.09073681653507, - "c5": 11.38400292426666, - "c6": -42.46148013957945, - "c7": -47.38228822048353 + "points": { + "c1": -4.264210841483269, + "c2": 33.095443584518364, + "c3": -42.726699916538614, + "c4": -30.92063111321109, + "c5": 17.62694171179365, + "c6": -22.173477300003526, + "c7": 45.982316475188725 }, - "vertexSeeds": { - "c1": 8.322738976303953, - "c2": 7.27368177949051, - "c3": 7.425552459818422, - "c4": 8.911956749235745, - "c5": 7.996963169276521, - "c6": 7.7483394095572145, - "c7": 9.163615106302395 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145629, + "c3": 11.003236245954696, + "c4": 8.802588996763756, + "c5": 6.601941747572814, + "c6": 4.4012944983818825, + "c7": 2.2006472491909412 }, "rgb": [77, 76, 132] }, @@ -47985,23 +47985,23 @@ "year": 1708, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -27.273605545399793, - "c2": -0.045289152341005945, - "c3": -10.469692709895227, - "c4": 32.488451877601996, - "c5": -24.947855164371738, - "c6": -31.65158139966827, - "c7": 21.950444933083055 + "points": { + "c1": 14.742597288854654, + "c2": 3.6433334911382076, + "c3": -12.718977785811635, + "c4": -3.050855666982528, + "c5": 35.543581728138044, + "c6": 16.82049286919211, + "c7": 34.261380703246395 }, - "vertexSeeds": { - "c1": 11.94787336947886, - "c2": 12.348394270736279, - "c3": 12.53430772399916, - "c4": 11.257716117733667, - "c5": 12.377389802306997, - "c6": 12.594988337498851, - "c7": 11.250602196566897 + "offsets": { + "c1": 22.006472491909385, + "c2": 18.862690707350897, + "c3": 15.71890892279241, + "c4": 12.575127138233924, + "c5": 9.431345353675436, + "c6": 6.2875635691169505, + "c7": 3.1437817845584632 }, "rgb": [238, 201, 159] }, @@ -48012,23 +48012,23 @@ "year": 1708, "resistanceReported": false, "duration": 47433600, - "curveSeeds": { - "c1": -8.20287953280932, - "c2": 30.32053170389929, - "c3": -43.09160481165455, - "c4": 36.314922764412984, - "c5": 21.93875000761156, - "c6": -44.45633241304284, - "c7": -48.304809738491485 + "points": { + "c1": 39.51370587485026, + "c2": 44.73493656954689, + "c3": -8.695488014892092, + "c4": 59.79527996701579, + "c5": 63.51640355665211, + "c6": 59.1111610368948, + "c7": 36.33313695239282 }, - "vertexSeeds": { - "c1": 3.626490922589642, - "c2": 3.7083882205632728, - "c3": 3.6834633046581833, - "c4": 3.7556886587457265, - "c5": 3.675669224898783, - "c6": 3.7577765302344144, - "c7": 3.687170035522014 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883493, + "c3": 4.530744336569574, + "c4": 3.6245954692556572, + "c5": 2.718446601941753, + "c6": 1.8122977346278357, + "c7": 0.9061488673139179 }, "rgb": [86, 146, 138] }, @@ -48039,23 +48039,23 @@ "year": 1707, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -21.8653058809765, - "c2": -21.081809954981363, - "c3": 4.1743469163430795, - "c4": -29.816880406716468, - "c5": -14.84879759133415, - "c6": -8.122942522132945, - "c7": -29.19887608819585 + "points": { + "c1": -17.067406011967847, + "c2": -31.67760587700996, + "c3": -24.265412467559948, + "c4": 11.615700524613572, + "c5": -16.545809967667523, + "c6": -25.450567754378547, + "c7": -26.795789065829677 }, - "vertexSeeds": { - "c1": 6.431321922962395, - "c2": 7.150748771009533, - "c3": 6.594605761605646, - "c4": 6.5493273592533034, - "c5": 6.476454290930953, - "c6": 6.5911541828319695, - "c7": 6.699043343291141 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [238, 201, 159] }, @@ -48066,23 +48066,23 @@ "year": 1708, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 9.568598163575288, - "c2": -22.654177029167954, - "c3": -21.98589999828664, - "c4": -3.9583593999425943, - "c5": -15.490568487221339, - "c6": 2.090767212841307, - "c7": -30.11444074021533 + "points": { + "c1": -21.984912113505043, + "c2": 37.077132691738946, + "c3": 24.553735222864084, + "c4": 17.2339822944054, + "c5": 15.280667317298274, + "c6": -33.74338896549938, + "c7": 7.81926423308483 }, - "vertexSeeds": { - "c1": 7.157894497129047, - "c2": 6.898806445395418, - "c3": 6.951221083610691, - "c4": 7.825776047664121, - "c5": 7.142223938978755, - "c6": 7.140426350594445, - "c7": 7.503301801301997 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249657, + "c3": 9.338881183541373, + "c4": 7.4711049468331, + "c5": 5.603328710124829, + "c6": 3.735552473416557, + "c7": 1.8677762367082718 }, "rgb": [222, 0, 59] }, @@ -48093,23 +48093,23 @@ "year": 1708, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -20.97390642442826, - "c2": -41.184464072570684, - "c3": -40.864506154261825, - "c4": 22.900220553489362, - "c5": 8.223062356338268, - "c6": -37.013523305221014, - "c7": 38.925978091945154 + "points": { + "c1": -33.5962805927667, + "c2": 7.193519083119199, + "c3": -9.344391417248744, + "c4": -8.15318690473427, + "c5": 7.370757775051132, + "c6": -13.681936242642223, + "c7": -20.394000501401596 }, - "vertexSeeds": { - "c1": 2.715226094871826, - "c2": 2.6613281149559427, - "c3": 2.640834462607576, - "c4": 2.425182438336722, - "c5": 2.5751761860112024, - "c6": 2.3164131323040666, - "c7": 2.6894648830192147 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115105, + "c3": 3.2824780397595914, + "c4": 2.6259824318076763, + "c5": 1.9694868238557566, + "c6": 1.312991215903837, + "c7": 0.6564956079519173 }, "rgb": [222, 0, 59] }, @@ -48120,23 +48120,23 @@ "year": 1708, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -20.74144450302901, - "c2": -21.943892962423458, - "c3": 2.6031294770927644, - "c4": -3.9399944229415063, - "c5": -6.922071389856036, - "c6": -26.583667928643155, - "c7": 21.660049595459054 + "points": { + "c1": 15.648171110386418, + "c2": -11.974569781610363, + "c3": -27.851273547802663, + "c4": 18.534962051850993, + "c5": -26.942854060322325, + "c6": 24.845227931716533, + "c7": 2.9869756496994633 }, - "vertexSeeds": { - "c1": 4.832348431616492, - "c2": 4.774358612437309, - "c3": 4.695898817360195, - "c4": 4.658233010109764, - "c5": 4.687420949103242, - "c6": 4.704139969979599, - "c7": 4.589993918923559 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.93481276005548, + "c3": 5.77901063337957, + "c4": 4.623208506703659, + "c5": 3.4674063800277324, + "c6": 2.3116042533518217, + "c7": 1.1558021266759109 }, "rgb": [238, 201, 159] }, @@ -48147,23 +48147,23 @@ "year": 1708, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 17.192060546099924, - "c2": 17.41669782759343, - "c3": -23.150419657150497, - "c4": -31.451814956295003, - "c5": 22.149330639797654, - "c6": 21.252903133263224, - "c7": -27.114348750397653 + "points": { + "c1": 19.465799621812437, + "c2": -32.13793367065104, + "c3": -13.54835618536752, + "c4": -22.182380707325713, + "c5": -12.40297595989032, + "c6": 23.652759388138193, + "c7": -17.75048889538584 }, - "vertexSeeds": { - "c1": 9.208957553545863, - "c2": 9.351206580878413, - "c3": 8.811741941874365, - "c4": 9.157490379476503, - "c5": 9.090876758820057, - "c6": 9.906519684060271, - "c7": 9.396790169079386 + "offsets": { + "c1": 16.86084142394822, + "c2": 14.45214979195562, + "c3": 12.043458159963022, + "c4": 9.63476652797041, + "c5": 7.22607489597781, + "c6": 4.817383263985211, + "c7": 2.408691631992599 }, "rgb": [222, 0, 59] }, @@ -48174,23 +48174,23 @@ "year": 1708, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -20.59847982225802, - "c2": -13.500860070631255, - "c3": -6.086983878306775, - "c4": -30.60222957889591, - "c5": -13.0185906017614, - "c6": -31.873640113166733, - "c7": 40.93176740181933 + "points": { + "c1": 44.20566757771219, + "c2": 8.652680584662406, + "c3": -20.4764035222711, + "c4": -14.648605508527726, + "c5": 8.460514899564473, + "c6": -6.9461936158491895, + "c7": 14.09536676463582 }, - "vertexSeeds": { - "c1": 10.130179745050034, - "c2": 8.999878087622609, - "c3": 10.411149758424342, - "c4": 9.833715113362004, - "c5": 8.727115656126088, - "c6": 9.03933116745263, - "c7": 9.732394192709988 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122053, + "c3": 12.713823393435046, + "c4": 10.171058714748037, + "c5": 7.62829403606103, + "c6": 5.085529357374023, + "c7": 2.5427646786870075 }, "rgb": [77, 76, 132] }, @@ -48201,23 +48201,23 @@ "year": 1708, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 30.606316261983906, - "c2": -10.329128478387318, - "c3": 20.362286792932302, - "c4": 25.727487538558997, - "c5": -33.542610776409475, - "c6": -6.577241813659658, - "c7": -18.100427828705776 + "points": { + "c1": -2.3618173632398722, + "c2": -30.18949773932283, + "c3": 23.15078000574779, + "c4": 5.043903881373041, + "c5": 19.81066105370079, + "c6": 31.104899811527872, + "c7": -10.15467280928707 }, - "vertexSeeds": { - "c1": 11.66403412454672, - "c2": 11.26349618273126, - "c3": 11.493074393888445, - "c4": 10.3146545128755, - "c5": 11.552217583597265, - "c6": 10.957915023446901, - "c7": 10.856395335667486 + "offsets": { + "c1": 19.514563106796118, + "c2": 16.726768377253805, + "c3": 13.938973647711517, + "c4": 11.151178918169203, + "c5": 8.363384188626915, + "c6": 5.575589459084601, + "c7": 2.7877947295422865 }, "rgb": [222, 0, 59] }, @@ -48228,23 +48228,23 @@ "year": 1708, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 30.935212184172713, - "c2": -8.519083205261094, - "c3": -28.614399184664983, - "c4": -4.709761382442316, - "c5": 28.494527429982128, - "c6": 37.218594615091206, - "c7": -34.45825380275491 + "points": { + "c1": -33.45028943106451, + "c2": 4.335584120885493, + "c3": -20.306010494158613, + "c4": -15.234447949172043, + "c5": -11.258905463851814, + "c6": -22.71658277598692, + "c7": 17.62878598903169 }, - "vertexSeeds": { - "c1": 7.029301329280147, - "c2": 6.004621135896552, - "c3": 6.101331561325432, - "c4": 6.1389252617130605, - "c5": 6.391264983300718, - "c6": 6.4323088564852196, - "c7": 6.378614317749629 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882109, + "c3": 8.552935737401752, + "c4": 6.842348589921404, + "c5": 5.1317614424410545, + "c6": 3.4211742949607062, + "c7": 1.7105871474803485 }, "rgb": [58, 15, 49] }, @@ -48255,23 +48255,23 @@ "year": 1708, "resistanceReported": true, "duration": 20908800, - "curveSeeds": { - "c1": 29.237558132957226, - "c2": 25.408423956130846, - "c3": -19.436231763725687, - "c4": -12.724875157742868, - "c5": -30.988073997360647, - "c6": 15.581246338542435, - "c7": -31.65504040557651 + "points": { + "c1": 5.649245239996752, + "c2": -12.308776343958332, + "c3": 9.309360725544693, + "c4": -4.682361048403429, + "c5": -30.101083299363665, + "c6": -22.562189621319305, + "c7": -17.603716119232644 }, - "vertexSeeds": { - "c1": 2.502193040362167, - "c2": 2.391642740410535, - "c3": 2.697914185483813, - "c4": 2.513655495277573, - "c5": 2.5579389292728862, - "c6": 2.54398436378162, - "c7": 2.5363645368361105 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310693, + "c3": 3.236245954692559, + "c4": 2.5889967637540487, + "c5": 1.9417475728155384, + "c6": 1.2944983818770244, + "c7": 0.6472491909385103 }, "rgb": [58, 15, 49] }, @@ -48282,23 +48282,23 @@ "year": 1708, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -25.071252108648743, - "c2": 6.106249304344676, - "c3": 26.149832334741287, - "c4": 3.806707410927988, - "c5": -2.6931077089534874, - "c6": 20.17428701131462, - "c7": -4.3196854679736205 + "points": { + "c1": 10.905927432413247, + "c2": 0.5422452705923106, + "c3": -4.627150817983793, + "c4": -19.123963588901056, + "c5": 7.507675993139561, + "c6": -9.099141114870353, + "c7": -16.988073361935662 }, - "vertexSeeds": { - "c1": 5.23207273663656, - "c2": 5.0930978608042725, - "c3": 5.176435621112812, - "c4": 4.981699437150878, - "c5": 5.412914142104097, - "c6": 4.9298547444514424, - "c7": 5.066686419942865 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872406, + "c6": 2.6999537679149372, + "c7": 1.3499768839574686 }, "rgb": [77, 76, 132] }, @@ -48309,23 +48309,23 @@ "year": 1708, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -22.699482120761648, - "c2": 28.27473404456879, - "c3": -36.96906868794246, - "c4": 1.1078507532009922, - "c5": 20.985662277692633, - "c6": -29.376301959773834, - "c7": -33.862697195524554 + "points": { + "c1": 35.452377373047824, + "c2": -32.247740764359136, + "c3": -33.88432646352054, + "c4": 20.30522031405235, + "c5": -26.30362559602861, + "c6": -28.562321812645898, + "c7": -26.868915883125702 }, - "vertexSeeds": { - "c1": 5.8917348034430805, - "c2": 6.242088962904346, - "c3": 6.6182003911525715, - "c4": 5.906915221758148, - "c5": 5.911378207709399, - "c6": 6.303450921937599, - "c7": 6.149553799106731 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916776, + "c3": 7.99815071659732, + "c4": 6.3985205732778505, + "c5": 4.798890429958395, + "c6": 3.1992602866389253, + "c7": 1.5996301433194695 }, "rgb": [222, 0, 59] }, @@ -48336,23 +48336,23 @@ "year": 1708, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -21.340627763223896, - "c2": 10.52479366231405, - "c3": -15.090214275511158, - "c4": 21.74820779322751, - "c5": -15.174445194921628, - "c6": 24.962046790074876, - "c7": -8.779535710649895 + "points": { + "c1": -10.19204516383505, + "c2": 12.839019344725035, + "c3": 6.178595582445457, + "c4": -22.86016228403353, + "c5": -24.939432461666037, + "c6": -4.895739118428924, + "c7": 24.846591851138978 }, - "vertexSeeds": { - "c1": 5.01187631925263, - "c2": 4.455905895492478, - "c3": 4.947354018953561, - "c4": 4.897415251447159, - "c5": 4.576431143887414, - "c6": 4.558530372982507, - "c7": 5.207533229427522 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859915, + "c3": 6.241331484049932, + "c4": 4.993065187239945, + "c5": 3.7447988904299576, + "c6": 2.496532593619975, + "c7": 1.2482662968099876 }, "rgb": [238, 201, 159] }, @@ -48363,23 +48363,23 @@ "year": 1708, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 6.070751194586528, - "c2": 32.27583033019674, - "c3": -29.671035818488892, - "c4": -14.345843947880294, - "c5": 9.634288804102205, - "c6": 32.6055399505327, - "c7": -32.261846535082746 + "points": { + "c1": -28.77966232314793, + "c2": -8.727197454132398, + "c3": -11.754578503946796, + "c4": 25.842526828222475, + "c5": 24.130745154486362, + "c6": 35.0420191859278, + "c7": -25.695358501405828 }, - "vertexSeeds": { - "c1": 10.369520718380597, - "c2": 10.327293713472002, - "c3": 10.066450412140671, - "c4": 10.374637088980839, - "c5": 10.508107353504222, - "c6": 10.11127033962779, - "c7": 10.652277347382269 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122051, + "c3": 12.713823393435042, + "c4": 10.171058714748034, + "c5": 7.628294036061026, + "c6": 5.085529357374017, + "c7": 2.5427646786870084 }, "rgb": [77, 76, 132] }, @@ -48390,23 +48390,23 @@ "year": 1708, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -14.56010018611937, - "c2": 18.28142742885406, - "c3": 14.388716174792187, - "c4": -13.122592449885623, - "c5": -2.0321601999052916, - "c6": -16.736386855947153, - "c7": -21.213885566353415 + "points": { + "c1": 28.080031430779158, + "c2": -5.747129243476618, + "c3": 28.777629814492443, + "c4": -4.299112963142363, + "c5": -31.1098976216556, + "c6": -4.527806304756098, + "c7": -10.16209306893251 }, - "vertexSeeds": { - "c1": 6.083628014246677, - "c2": 6.275889597375958, - "c3": 6.320403830304221, - "c4": 6.296172107569218, - "c5": 7.080182755759521, - "c6": 6.811701862907259, - "c7": 5.754661725341827 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [77, 76, 132] }, @@ -48417,23 +48417,23 @@ "year": 1708, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 5.693248282569904, - "c2": 18.803842690527787, - "c3": -4.463888750495862, - "c4": -22.36177460677755, - "c5": 23.196729912610152, - "c6": -11.742825611976745, - "c7": -20.42725948270091 + "points": { + "c1": 10.031822236534914, + "c2": 9.37419364301163, + "c3": 4.865608662668773, + "c4": 5.477281051562791, + "c5": -26.315206426352905, + "c6": 8.762626659361395, + "c7": -22.6947358337565 }, - "vertexSeeds": { - "c1": 2.8803723587678234, - "c2": 3.1192860867363494, - "c3": 3.3808808432641055, - "c4": 2.946062831386782, - "c5": 3.0996650924163878, - "c6": 3.113650102776211, - "c7": 3.3442807739705582 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033288, + "c4": 3.328710124826628, + "c5": 2.496532593619974, + "c6": 1.664355062413314, + "c7": 0.8321775312066548 }, "rgb": [86, 146, 138] }, @@ -48444,23 +48444,23 @@ "year": 1708, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -8.229643243955755, - "c2": 15.644530719879711, - "c3": 14.087677058408197, - "c4": -10.221730127924179, - "c5": 13.231067883094703, - "c6": 10.365595802770237, - "c7": 6.767750317984348 + "points": { + "c1": 24.477939712843906, + "c2": 25.06509950082571, + "c3": -17.107196573415457, + "c4": 10.34949750032873, + "c5": 23.81199860272789, + "c6": 0.5502582623886205, + "c7": -19.385461255392904 }, - "vertexSeeds": { - "c1": 3.1509634293799054, - "c2": 3.7506746088555474, - "c3": 3.281738166668075, - "c4": 3.594318951066603, - "c5": 3.6472040889671913, - "c6": 3.7515820077229427, - "c7": 3.586103836743752 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.6232085067036515, + "c4": 3.6985668053629226, + "c5": 2.77392510402219, + "c6": 1.8492834026814613, + "c7": 0.9246417013407332 }, "rgb": [77, 76, 132] }, @@ -48471,23 +48471,23 @@ "year": 1708, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -11.888907797636827, - "c2": -15.022797162349253, - "c3": 1.0601859978943224, - "c4": -0.07206189056139678, - "c5": 26.988405903112444, - "c6": -20.231008848444972, - "c7": -22.798396075795857 + "points": { + "c1": -7.645718693186986, + "c2": 4.551873818109023, + "c3": 6.5820729018285675, + "c4": 4.560314428928592, + "c5": 29.16050814911683, + "c6": 16.98001705680852, + "c7": -1.3597370644571676 }, - "vertexSeeds": { - "c1": 11.542902073764889, - "c2": 11.07326490703497, - "c3": 11.225299456547075, - "c4": 11.296583800587836, - "c5": 10.714041021642753, - "c6": 11.289698877783584, - "c7": 11.10350546614575 + "offsets": { + "c1": 19.54692556634304, + "c2": 16.754507628294053, + "c3": 13.962089690245024, + "c4": 11.169671752196036, + "c5": 8.377253814147007, + "c6": 5.584835876098018, + "c7": 2.7924179380489886 }, "rgb": [58, 15, 49] }, @@ -48498,23 +48498,23 @@ "year": 1708, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 7.3584668127944965, - "c2": 24.83857448628178, - "c3": 8.768988339780705, - "c4": 11.713134033562753, - "c5": 29.31793868635927, - "c6": 14.832615929354851, - "c7": 25.912484872064866 + "points": { + "c1": 4.179386468279546, + "c2": -34.99093022463008, + "c3": 26.179536515532746, + "c4": -32.72861965999373, + "c5": -4.676439496832067, + "c6": -4.606826118089145, + "c7": -37.443044136794214 }, - "vertexSeeds": { - "c1": 11.17079633943047, - "c2": 11.380686191017741, - "c3": 11.476954413499703, - "c4": 11.725179928944918, - "c5": 12.36260879897377, - "c6": 10.958958601743976, - "c7": 12.132197301078547 + "offsets": { + "c1": 22.459546925566343, + "c2": 19.251040221914003, + "c3": 16.042533518261664, + "c4": 12.834026814609341, + "c5": 9.625520110957002, + "c6": 6.417013407304662, + "c7": 3.2085067036523403 }, "rgb": [238, 201, 159] }, @@ -48525,23 +48525,23 @@ "year": 1708, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": 6.06031953162757, - "c2": -46.492206901255294, - "c3": -6.5859217202102585, - "c4": -0.6145160396730844, - "c5": 12.608683331973921, - "c6": 0.2211057363047928, - "c7": 43.736767697602815 + "points": { + "c1": -6.515478226834674, + "c2": -10.068829274139034, + "c3": -2.229811525101532, + "c4": -53.232622737856744, + "c5": -13.281267198599188, + "c6": -22.283920439421692, + "c7": 39.68293701907213 }, - "vertexSeeds": { - "c1": 9.030267145231887, - "c2": 8.538358163886736, - "c3": 8.142883493369458, - "c4": 8.09795045551691, - "c5": 8.23321718319762, - "c6": 8.529121782830414, - "c7": 7.968423368171029 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306518, + "c3": 11.095700416088768, + "c4": 8.876560332871016, + "c5": 6.657420249653265, + "c6": 4.438280166435513, + "c7": 2.2191400832177623 }, "rgb": [86, 146, 138] }, @@ -48552,23 +48552,23 @@ "year": 1709, "resistanceReported": false, "duration": 51148800, - "curveSeeds": { - "c1": 29.205907697227474, - "c2": 12.031758794860522, - "c3": 10.335449692219242, - "c4": -61.50558648153024, - "c5": 51.3252490295676, - "c6": 7.7875742664948575, - "c7": -22.784412028359057 + "points": { + "c1": -33.25777060305438, + "c2": 11.959791856310773, + "c3": -6.258007541343268, + "c4": 35.928292503237046, + "c5": -54.06957374220812, + "c6": -31.534012539673824, + "c7": 56.53920375173709 }, - "vertexSeeds": { - "c1": 4.648032579335789, - "c2": 4.536709946156053, - "c3": 4.435759744472577, - "c4": 4.626626261859674, - "c5": 4.400410521646373, - "c6": 4.396110026451038, - "c7": 4.2947074303561035 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733705, + "c3": 5.594082293111422, + "c4": 4.475265834489139, + "c5": 3.356449375866857, + "c6": 2.237632917244565, + "c7": 1.1188164586222824 }, "rgb": [58, 15, 49] }, @@ -48579,23 +48579,23 @@ "year": 1708, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": -14.930802658970345, - "c2": 11.091047496920574, - "c3": 4.453979411960834, - "c4": 0.3676557832117169, - "c5": -16.822047807283486, - "c6": -16.34680846896605, - "c7": -9.157795564356011 + "points": { + "c1": -18.01439470199954, + "c2": 7.586680257490855, + "c3": -7.372807166344707, + "c4": -4.9560793782917205, + "c5": 6.471609793868588, + "c6": 7.416797967289867, + "c7": -19.124690279321722 }, - "vertexSeeds": { - "c1": 3.050171164976984, - "c2": 2.953793550829407, - "c3": 3.4978876895535995, - "c4": 2.9758255141039296, - "c5": 3.1046011448788393, - "c6": 2.9417561532635825, - "c7": 3.5033176651103206 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [86, 146, 138] }, @@ -48606,23 +48606,23 @@ "year": 1709, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 25.369469233996973, - "c2": 38.43108797986658, - "c3": 6.380653233242576, - "c4": 39.93536914274599, - "c5": 35.178445948716295, - "c6": 47.43313084065341, - "c7": 29.24607753819334 + "points": { + "c1": -3.0128636332474983, + "c2": 14.318251659698383, + "c3": 1.325056965343137, + "c4": 25.079863848799725, + "c5": 7.202868243325284, + "c6": 52.26604074128276, + "c7": -6.68458563293165 }, - "vertexSeeds": { - "c1": 6.5196339489635795, - "c2": 7.429577385127333, - "c3": 6.505916217428432, - "c4": 7.13016433265977, - "c5": 6.850580913029501, - "c6": 6.57296229366001, - "c7": 6.553076592012382 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871009, + "c4": 7.101248266296804, + "c5": 5.325936199722613, + "c6": 3.5506241331484087, + "c7": 1.7753120665742044 }, "rgb": [58, 15, 49] }, @@ -48633,23 +48633,23 @@ "year": 1708, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": 9.389292725119393, - "c2": 10.290504836610246, - "c3": 11.581805752525185, - "c4": -7.688086940451649, - "c5": 1.2836384236307659, - "c6": 2.974823351790068, - "c7": -10.774016397713542 + "points": { + "c1": 4.232073177254147, + "c2": -13.125663521266059, + "c3": -17.593711049739163, + "c4": -16.21519223879101, + "c5": -15.67267637256844, + "c6": 0.9962965446141858, + "c7": 3.319648748600798 }, - "vertexSeeds": { - "c1": 6.66647140805668, - "c2": 7.215877654228419, - "c3": 6.9369186770538205, - "c4": 8.192541000673575, - "c5": 5.649335182572677, - "c6": 7.215333710249764, - "c7": 5.876896488689688 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099858, + "c3": 10.402219140083217, + "c4": 8.321775312066572, + "c5": 6.241331484049931, + "c6": 4.160887656033286, + "c7": 2.080443828016641 }, "rgb": [238, 201, 159] }, @@ -48660,23 +48660,23 @@ "year": 1708, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -11.430794834987182, - "c2": 11.277826371453532, - "c3": 3.7599276744939374, - "c4": -11.722200397475174, - "c5": 6.527071905784901, - "c6": 2.4156619599383156, - "c7": -9.7770349992662 + "points": { + "c1": -11.965481979245215, + "c2": 15.612118996008515, + "c3": -17.27165508797348, + "c4": -10.432822077868629, + "c5": -11.808094199952386, + "c6": 9.826151031441931, + "c7": -9.805906875911932 }, - "vertexSeeds": { - "c1": 4.798950335251512, - "c2": 4.8779102261560086, - "c3": 5.891611247901157, - "c4": 4.724839773112148, - "c5": 6.0172856980663445, - "c6": 6.5096710517240695, - "c7": 4.696246717448116 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595006, + "c3": 7.813222376329175, + "c4": 6.250577901063338, + "c5": 4.687933425797501, + "c6": 3.125288950531671, + "c7": 1.5626444752658337 }, "rgb": [86, 146, 138] }, @@ -48687,23 +48687,23 @@ "year": 1708, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 24.69184473024771, - "c2": 32.32059890601765, - "c3": 40.10326999390384, - "c4": 5.221160339169408, - "c5": -27.283550862781617, - "c6": -13.32986911846254, - "c7": 47.34769675912423 + "points": { + "c1": -44.16991459991891, + "c2": -17.76540277763872, + "c3": 27.95856390896722, + "c4": -38.063519478785, + "c5": 16.261633257998028, + "c6": -35.39766303073415, + "c7": -36.923815852324616 }, - "vertexSeeds": { - "c1": 7.709595047377902, - "c2": 8.739945585359134, - "c3": 8.829371784482474, - "c4": 8.169394345167461, - "c5": 7.295788428747681, - "c6": 8.935084534848846, - "c7": 7.263191720134451 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306516, + "c3": 11.095700416088762, + "c4": 8.876560332871009, + "c5": 6.657420249653255, + "c6": 4.438280166435502, + "c7": 2.219140083217754 }, "rgb": [222, 0, 59] }, @@ -48714,23 +48714,23 @@ "year": 1708, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 8.3446907304754, - "c2": 7.086091620599589, - "c3": 13.152300936958042, - "c4": -2.8217946514574592, - "c5": 32.127336750873255, - "c6": -15.426274852134274, - "c7": 35.86736728180472 + "points": { + "c1": -1.8459573130003477, + "c2": -39.444039703651676, + "c3": 25.5185137476918, + "c4": 6.36958283377858, + "c5": 6.5106205652089315, + "c6": -8.102885219548806, + "c7": -8.80205524117127 }, - "vertexSeeds": { - "c1": 1.4728738213717578, - "c2": 1.5283946361242027, - "c3": 1.4981046206933242, - "c4": 1.4891089423314554, - "c5": 1.5622695860496132, - "c6": 1.5590957107685361, - "c7": 1.4965019032423137 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.30235783633842, + "c3": 1.9186315302820136, + "c4": 1.5349052242256118, + "c5": 1.15117891816921, + "c6": 0.7674526121128082, + "c7": 0.38372630605640173 }, "rgb": [58, 15, 49] }, @@ -48741,23 +48741,23 @@ "year": 1708, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 19.51212546908181, - "c2": -30.413410550944743, - "c3": 18.40373732767229, - "c4": -23.25510589808862, - "c5": 12.843201606254937, - "c6": 20.32138765805547, - "c7": 19.89013665429998 + "points": { + "c1": 34.06451455513351, + "c2": -8.761842891752067, + "c3": 8.85604802794171, + "c4": 1.5134611170715004, + "c5": 9.155275057608236, + "c6": 16.33729094306502, + "c7": 10.787004774394646 }, - "vertexSeeds": { - "c1": 3.7067966607242173, - "c2": 3.8879657692428093, - "c3": 3.6515977629683025, - "c4": 3.7520936919345784, - "c5": 4.238745873744495, - "c6": 3.8329045161288198, - "c7": 4.105305463932881 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889043, + "c3": 5.108645399907535, + "c4": 4.0869163199260266, + "c5": 3.0651872399445232, + "c6": 2.043458159963016, + "c7": 1.021729079981508 }, "rgb": [86, 146, 138] }, @@ -48768,23 +48768,23 @@ "year": 1708, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 25.458921061162037, - "c2": -10.544603370197265, - "c3": 21.721725954344457, - "c4": -6.806581591771177, - "c5": 14.59542868413336, - "c6": 17.383154479457225, - "c7": 0.3596387810054935 + "points": { + "c1": -3.1415044821464306, + "c2": -1.1668218790453508, + "c3": -20.886385520503325, + "c4": -26.653952345398682, + "c5": 26.610440626120827, + "c6": 16.91550518657833, + "c7": 11.421233300851796 }, - "vertexSeeds": { - "c1": 4.002522192999749, - "c2": 3.7332376269920258, - "c3": 4.500921965192418, - "c4": 4.019068169660857, - "c5": 4.073882570257709, - "c6": 4.498376163713979, - "c7": 4.203232189741381 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371707, + "c3": 5.3860379103097555, + "c4": 4.308830328247804, + "c5": 3.2316227461858533, + "c6": 2.154415164123902, + "c7": 1.077207582061951 }, "rgb": [58, 15, 49] }, @@ -48795,23 +48795,23 @@ "year": 1708, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 20.286205110125103, - "c2": 17.28112599330754, - "c3": -5.51023881430449, - "c4": 9.928902375279108, - "c5": -14.39971351553779, - "c6": -24.180712312514128, - "c7": -11.943828150161842 + "points": { + "c1": 4.541902894278522, + "c2": 21.02886119627196, + "c3": 7.723350545545387, + "c4": 29.650835664533346, + "c5": 0.8466375486964566, + "c6": -1.5019930221237807, + "c7": 12.198353271395789 }, - "vertexSeeds": { - "c1": 6.073141886970834, - "c2": 5.656221851351278, - "c3": 5.943477628654843, - "c4": 5.307663171174124, - "c5": 6.0405782216474275, - "c6": 5.841808443521803, - "c7": 5.550627616711204 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750343, + "c3": 7.327785483125295, + "c4": 5.862228386500234, + "c5": 4.396671289875171, + "c6": 2.9311141932501235, + "c7": 1.4655570966250617 }, "rgb": [77, 76, 132] }, @@ -48822,23 +48822,23 @@ "year": 1709, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": -44.74450723017908, - "c2": 33.5258751001358, - "c3": -23.56648176959277, - "c4": -12.059084721201316, - "c5": 38.31089805952653, - "c6": -48.719637314136314, - "c7": 7.963124653893658 + "points": { + "c1": 25.993700022924394, + "c2": -23.453908302108438, + "c3": -14.762939971977183, + "c4": 48.419496319991374, + "c5": -47.37340471296867, + "c6": -33.227699273140004, + "c7": -16.520803890866574 }, - "vertexSeeds": { - "c1": 6.980642082694334, - "c2": 7.7142168071095005, - "c3": 6.981714917517891, - "c4": 7.014578483660327, - "c5": 7.827745272766082, - "c6": 7.13704661605577, - "c7": 7.333442212414324 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099863, + "c3": 10.402219140083215, + "c4": 8.321775312066576, + "c5": 6.241331484049928, + "c6": 4.160887656033288, + "c7": 2.0804438280166475 }, "rgb": [77, 76, 132] }, @@ -48849,23 +48849,23 @@ "year": 1708, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 3.2779114319765483, - "c2": -17.550003725859263, - "c3": -16.727931418479532, - "c4": 8.47034408798703, - "c5": 11.238594806077458, - "c6": 21.675059131504142, - "c7": 32.55726494623548 + "points": { + "c1": 0.519581454624209, + "c2": 23.013134971373745, + "c3": -28.0514909304923, + "c4": 22.05829621588928, + "c5": 4.719181636201796, + "c6": -35.097182966559004, + "c7": -20.526249428461675 }, - "vertexSeeds": { - "c1": 2.3181499641134584, - "c2": 2.3156059508242306, - "c3": 2.302285479295228, - "c4": 2.1417196105133587, - "c5": 2.139552736537275, - "c6": 2.1808662635397327, - "c7": 2.362310054853953 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [86, 146, 138] }, @@ -48876,23 +48876,23 @@ "year": 1708, "resistanceReported": false, "duration": 2505600, - "curveSeeds": { - "c1": 10.161201611246875, - "c2": -11.838504137046149, - "c3": -7.070367667458707, - "c4": 10.332191469494889, - "c5": 9.024762842849723, - "c6": 6.078612357077409, - "c7": -8.409887812652643 + "points": { + "c1": -6.818325652945955, + "c2": -4.303359872740559, + "c3": 2.7809320017401635, + "c4": -12.342925461362087, + "c5": 7.824455950281285, + "c6": -11.06532289591526, + "c7": -8.559249000463728 }, - "vertexSeeds": { - "c1": 9.241135720291533, - "c2": 9.39894095914354, - "c3": 10.300771852329325, - "c4": 9.234189020056428, - "c5": 10.140156317358917, - "c6": 8.557568497356284, - "c7": 9.410449254659431 + "offsets": { + "c1": 18.673139158576053, + "c2": 16.005547850208043, + "c3": 13.337956541840038, + "c4": 10.67036523347203, + "c5": 8.002773925104021, + "c6": 5.335182616736015, + "c7": 2.6675913083680074 }, "rgb": [238, 201, 159] }, @@ -48903,23 +48903,23 @@ "year": 1708, "resistanceReported": false, "duration": 2419200, - "curveSeeds": { - "c1": 8.156515352278316, - "c2": 0.9924349637967893, - "c3": -5.799692611810172, - "c4": 4.840604249793227, - "c5": -2.2566713134738148, - "c6": -4.229224453561729, - "c7": 0.4309216407262664 + "points": { + "c1": 6.549839992241925, + "c2": 6.140552925593436, + "c3": -7.39473104175347, + "c4": -0.2249689178746639, + "c5": 2.4553087668553957, + "c6": -0.513736261139794, + "c7": -7.644877013287023 }, - "vertexSeeds": { - "c1": 6.6003893115289785, - "c2": 6.232342737533427, - "c3": 5.99480501541134, - "c4": 6.984102089326711, - "c5": 6.879218522185077, - "c6": 6.263206791702755, - "c7": 6.425992241674561 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.04160887656033, + "c3": 8.368007397133608, + "c4": 6.694405917706892, + "c5": 5.02080443828017, + "c6": 3.347202958853446, + "c7": 1.673601479426723 }, "rgb": [238, 201, 159] }, @@ -48930,23 +48930,23 @@ "year": 1708, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 25.748729083865953, - "c2": -11.306289813379095, - "c3": -5.846410873315882, - "c4": 11.628802743035187, - "c5": -6.256676938990999, - "c6": -35.16118055363141, - "c7": -23.55481459869928 + "points": { + "c1": 35.14868991660133, + "c2": 24.933052941072262, + "c3": 36.70974155684553, + "c4": -1.6607301510022907, + "c5": -35.64532365086432, + "c6": -16.644744258266165, + "c7": -28.82982463735535 }, - "vertexSeeds": { - "c1": 2.1247129621498484, - "c2": 2.0982699870766366, - "c3": 2.058509837445465, - "c4": 2.0515764574455058, - "c5": 2.133301443886316, - "c6": 2.134455226143042, - "c7": 2.041695570442742 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048517, + "c3": 2.5889967637540408, + "c4": 2.0711974110032374, + "c5": 1.5533980582524258, + "c6": 1.0355987055016145, + "c7": 0.5177993527508116 }, "rgb": [222, 0, 59] }, @@ -48957,23 +48957,23 @@ "year": 1708, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 23.279860577529483, - "c2": -24.140412201518007, - "c3": -6.6202595979915415, - "c4": -10.034766181462754, - "c5": -35.42253073010349, - "c6": 2.520634316017876, - "c7": 9.01371145786728 + "points": { + "c1": 21.328605280658955, + "c2": 13.935440275410365, + "c3": -35.137804181786976, + "c4": -37.940489920804964, + "c5": -6.692910794266787, + "c6": -12.43873975577067, + "c7": -23.065181003728213 }, - "vertexSeeds": { - "c1": 5.676981411866663, - "c2": 5.807629765401025, - "c3": 5.4905650555127865, - "c4": 6.099050588135713, - "c5": 5.634736366463658, - "c6": 5.441294400195972, - "c7": 5.884772789698631 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750343, + "c3": 7.327785483125295, + "c4": 5.862228386500234, + "c5": 4.396671289875171, + "c6": 2.9311141932501235, + "c7": 1.4655570966250617 }, "rgb": [238, 201, 159] }, @@ -48984,23 +48984,23 @@ "year": 1710, "resistanceReported": false, "duration": 86659200, - "curveSeeds": { - "c1": -86.44570326711238, - "c2": 102.5776466364355, - "c3": -16.06715589715762, - "c4": 67.70009818082002, - "c5": 70.20476464487967, - "c6": 48.98631160888942, - "c7": -101.23988638681392 + "points": { + "c1": 92.96221124444875, + "c2": -82.7854912332037, + "c3": 98.20810684900343, + "c4": 11.93862434177521, + "c5": -96.26841133037503, + "c6": -1.298098502743457, + "c7": -29.888612296035646 }, - "vertexSeeds": { - "c1": 1.8825521715596198, - "c2": 1.8906387914216354, - "c3": 1.969744951231856, - "c4": 1.627604864021094, - "c5": 2.306736977113337, - "c6": 2.4493391613810793, - "c7": 1.640013451570058 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590847, + "c3": 3.2131299121590384, + "c4": 2.5705039297272307, + "c5": 1.9278779472954235, + "c6": 1.2852519648636163, + "c7": 0.6426259824318081 }, "rgb": [222, 0, 59] }, @@ -49011,23 +49011,23 @@ "year": 1709, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 2.71913687856253, - "c2": -18.515305137122294, - "c3": 38.538817690043956, - "c4": 8.06412156575238, - "c5": 39.167134510453266, - "c6": 26.687392816111327, - "c7": 11.194816750911052 + "points": { + "c1": 0.16172446830842802, + "c2": 7.195634324152657, + "c3": 43.89867927453072, + "c4": -46.30451267413434, + "c5": -7.871114570856271, + "c6": -4.066130763079293, + "c7": -19.91930735665183 }, - "vertexSeeds": { - "c1": 2.0506381124947364, - "c2": 1.8606496450708674, - "c3": 1.9659777627843837, - "c4": 1.9312182339236514, - "c5": 2.2812718647453716, - "c6": 2.024142752238322, - "c7": 2.290837148997962 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826629, + "c3": 2.77392510402219, + "c4": 2.219140083217754, + "c5": 1.6643550624133157, + "c6": 1.109570041608877, + "c7": 0.5547850208044385 }, "rgb": [238, 201, 159] }, @@ -49038,23 +49038,23 @@ "year": 1709, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": 43.70148416553821, - "c2": 56.58651038720854, - "c3": -48.39937938572945, - "c4": -37.72313851320351, - "c5": 45.700088611316495, - "c6": -2.4855230172018565, - "c7": 49.30923148371418 + "points": { + "c1": -24.09887226671649, + "c2": -41.94769307216795, + "c3": 10.742691419840746, + "c4": -11.081920596528995, + "c5": 19.995569275203046, + "c6": -52.852837343652936, + "c7": -3.7816899115079607 }, - "vertexSeeds": { - "c1": 1.0608741737416594, - "c2": 0.9235458426382909, - "c3": 0.9682825819965466, - "c4": 1.0637344980907937, - "c5": 0.9153831008072619, - "c6": 1.0494920950144813, - "c7": 0.9881825878726156 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.5533980582524267, + "c3": 1.2944983818770233, + "c4": 1.0355987055016183, + "c5": 0.7766990291262134, + "c6": 0.5177993527508084, + "c7": 0.25889967637540495 }, "rgb": [86, 146, 138] }, @@ -49065,23 +49065,23 @@ "year": 1708, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 17.179845160078003, - "c2": 19.016341657705247, - "c3": -0.35404452041993295, - "c4": -30.608000178561888, - "c5": 31.54699233142445, - "c6": -22.486828482138403, - "c7": -34.5918740610088 + "points": { + "c1": -23.17910406740529, + "c2": 39.72910974490374, + "c3": 9.329434478821767, + "c4": -11.67907686917657, + "c5": -28.86276083169406, + "c6": -15.630545411381608, + "c7": -6.587639734746432 }, - "vertexSeeds": { - "c1": 7.956691222910133, - "c2": 8.064021325904024, - "c3": 7.814981051668847, - "c4": 7.576160546079467, - "c5": 7.400417689442614, - "c6": 7.785397535534563, - "c7": 8.144318026636899 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.17105871474803, + "c4": 8.136846971798423, + "c5": 6.102635228848813, + "c6": 4.068423485899218, + "c7": 2.034211742949609 }, "rgb": [58, 15, 49] }, @@ -49092,23 +49092,23 @@ "year": 1709, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -6.3488106511343005, - "c2": 9.449283680485323, - "c3": 17.146034687572715, - "c4": 25.221876799720732, - "c5": 39.81939918161129, - "c6": 30.66235202551529, - "c7": -2.421646747356064 + "points": { + "c1": -21.213676885149496, + "c2": -43.94603533309254, + "c3": -0.25370743333307644, + "c4": 8.899639061643349, + "c5": -7.7018612311524635, + "c6": 9.316209847175095, + "c7": 30.228485903099966 }, - "vertexSeeds": { - "c1": 9.861670067379066, - "c2": 8.763038271256496, - "c3": 10.607449921831, - "c4": 8.533458592796977, - "c5": 9.570701282726201, - "c6": 8.568354949747949, - "c7": 9.153540990680748 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [58, 15, 49] }, @@ -49119,23 +49119,23 @@ "year": 1708, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -14.372396651761871, - "c2": 34.34759085796216, - "c3": 3.065175304573657, - "c4": 29.007310778277613, - "c5": -3.3191298550479047, - "c6": -15.795043138721429, - "c7": 24.72051902908086 + "points": { + "c1": -36.5363452483717, + "c2": -37.655139387779236, + "c3": 37.20521613007004, + "c4": -23.196314563475152, + "c5": 12.744150717887344, + "c6": -26.272920731209947, + "c7": 15.198713654320208 }, - "vertexSeeds": { - "c1": 10.42143042249995, - "c2": 10.728642138365991, - "c3": 9.828051363745573, - "c4": 9.873396656643846, - "c5": 11.83412388985632, - "c6": 9.252289138629678, - "c7": 9.885712255330347 + "offsets": { + "c1": 19.838187702265373, + "c2": 17.004160887656035, + "c3": 14.1701340730467, + "c4": 11.336107258437362, + "c5": 8.502080443828024, + "c6": 5.668053629218681, + "c7": 2.834026814609344 }, "rgb": [238, 201, 159] }, @@ -49146,23 +49146,23 @@ "year": 1708, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 13.962068466777936, - "c2": -6.52691424060896, - "c3": 22.412231420015395, - "c4": -5.482603116044764, - "c5": 27.945157259056096, - "c6": -11.069107116675486, - "c7": -22.592597982689618 + "points": { + "c1": -23.54812164108009, + "c2": 12.66694600946034, + "c3": -10.600285814892999, + "c4": -10.642873246279471, + "c5": -10.736785159238718, + "c6": -23.114869214457734, + "c7": -14.636604107723333 }, - "vertexSeeds": { - "c1": 1.5255681456166088, - "c2": 1.5946464962831441, - "c3": 1.627055606578566, - "c4": 1.6455025651292148, - "c5": 1.6247889950456365, - "c6": 1.5392255435790525, - "c7": 1.638779019382276 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.468793342579751, + "c3": 2.057327785483127, + "c4": 1.645862228386502, + "c5": 1.2343966712898775, + "c6": 0.8229311141932532, + "c7": 0.4114655570966286 }, "rgb": [77, 76, 132] }, @@ -49173,23 +49173,23 @@ "year": 1708, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -6.029634729570592, - "c2": 19.126284095403395, - "c3": -14.379141593784013, - "c4": 16.067700064888182, - "c5": 8.013542642262987, - "c6": 21.963729113838472, - "c7": 14.9907624175659 + "points": { + "c1": -23.116229955363387, + "c2": -27.427684363197056, + "c3": 21.19144507272914, + "c4": 24.7433799421521, + "c5": 8.052899920863315, + "c6": -12.225374757840392, + "c7": 7.454887172286863 }, - "vertexSeeds": { - "c1": 10.449176970647798, - "c2": 12.548074513181168, - "c3": 11.474182964593759, - "c4": 10.58605039679756, - "c5": 11.326559310386585, - "c6": 9.689420867489808, - "c7": 10.879471545253066 + "offsets": { + "c1": 21.779935275080906, + "c2": 18.66851595006934, + "c3": 15.557096625057792, + "c4": 12.44567730004623, + "c5": 9.334257975034678, + "c6": 6.222838650023115, + "c7": 3.111419325011564 }, "rgb": [58, 15, 49] }, @@ -49200,23 +49200,23 @@ "year": 1709, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 5.878685680607866, - "c2": 16.158170952727822, - "c3": 24.301886940769414, - "c4": 9.45043089766768, - "c5": -26.91162945223096, - "c6": 15.981186006641977, - "c7": -10.882407704098945 + "points": { + "c1": -22.908653129795066, + "c2": -28.900018932569292, + "c3": -6.62749597887931, + "c4": 30.393067777638286, + "c5": -23.885384620074777, + "c6": 28.257231369476436, + "c7": -0.3139264363739116 }, - "vertexSeeds": { - "c1": 8.499061028988109, - "c2": 9.263749506342563, - "c3": 8.668449070884604, - "c4": 9.203383257880091, - "c5": 9.513148465803004, - "c6": 8.887895924225784, - "c7": 8.66986869758697 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748964, + "c3": 11.349976883957476, + "c4": 9.079981507165972, + "c5": 6.809986130374482, + "c6": 4.539990753582994, + "c7": 2.2699953767915044 }, "rgb": [77, 76, 132] }, @@ -49227,23 +49227,23 @@ "year": 1708, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -29.06053532107789, - "c2": -25.2705051786642, - "c3": -27.06921511639381, - "c4": 4.121628679452705, - "c5": 32.47735522687755, - "c6": 20.098404319800956, - "c7": 1.2950717837220012 + "points": { + "c1": -16.35979537906222, + "c2": 1.4426097386885672, + "c3": 32.53327752854811, + "c4": 2.652505417429346, + "c5": -27.827427133493757, + "c6": -11.786672907093934, + "c7": 0.2264469230021433 }, - "vertexSeeds": { - "c1": 4.715889960766443, - "c2": 4.42177238024134, - "c3": 4.767171384324607, - "c4": 5.09388533629329, - "c5": 4.556753453598376, - "c6": 4.499690163033394, - "c7": 4.899945545103505 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618588, + "c3": 6.102635228848822, + "c4": 4.882108183079055, + "c5": 3.6615811373092875, + "c6": 2.4410540915395273, + "c7": 1.2205270457697603 }, "rgb": [238, 201, 159] }, @@ -49254,23 +49254,23 @@ "year": 1708, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 5.137399474682141, - "c2": 21.21124933901997, - "c3": -18.160437962326498, - "c4": 17.503351726811488, - "c5": -24.975394911096046, - "c6": -24.464734058840634, - "c7": -27.190557632333643 + "points": { + "c1": -2.470714744562514, + "c2": 32.987743731873195, + "c3": -9.346214035192585, + "c4": -10.201786989350008, + "c5": -7.600855752617353, + "c6": -11.293437959611083, + "c7": 16.070720720612385 }, - "vertexSeeds": { - "c1": 2.2976587977664993, - "c2": 2.5269858202632225, - "c3": 2.5121338577819334, - "c4": 2.6012953832956702, - "c5": 2.3883451023222704, - "c6": 2.856505614804756, - "c7": 2.636896620275764 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494222, + "c4": 2.7554322699953757, + "c5": 2.066574202496534, + "c6": 1.3777161349976879, + "c7": 0.6888580674988439 }, "rgb": [77, 76, 132] }, @@ -49281,23 +49281,23 @@ "year": 1708, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 31.31327930820916, - "c2": 28.947324954572707, - "c3": -24.34383635666285, - "c4": -7.366641315578978, - "c5": -1.6637119778808653, - "c6": 29.00492222105501, - "c7": 12.62148650983029 + "points": { + "c1": 8.288883351804536, + "c2": 20.06605247805974, + "c3": -5.680192798653994, + "c4": 21.66918488332648, + "c5": -0.370934752977071, + "c6": -6.767617463889202, + "c7": -5.417018827362025 }, - "vertexSeeds": { - "c1": 5.151922743568803, - "c2": 5.043039054518536, - "c3": 5.040940310285787, - "c4": 5.794078968104328, - "c5": 5.01620360243943, - "c6": 4.992698318202387, - "c7": 5.485541688676287 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [238, 201, 159] }, @@ -49308,23 +49308,23 @@ "year": 1708, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 8.588267909514084, - "c2": -11.34220652945849, - "c3": 23.077747973705893, - "c4": -13.288760323636156, - "c5": -13.885144188502338, - "c6": -7.733037044340016, - "c7": -20.12147492619998 + "points": { + "c1": 20.20999674688493, + "c2": 0.5451033470091602, + "c3": -28.053441008858027, + "c4": 9.354563978368933, + "c5": 25.22109676860796, + "c6": 28.429964120781836, + "c7": -15.896391512222802 }, - "vertexSeeds": { - "c1": 2.169455945286408, - "c2": 2.27299424953862, - "c3": 2.2807168732351375, - "c4": 2.1981212832740775, - "c5": 2.244624710933282, - "c6": 2.2057682724302197, - "c7": 2.249700510543868 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266286, + "c3": 2.7739251040221893, + "c4": 2.219140083217756, + "c5": 1.664355062413317, + "c6": 1.109570041608878, + "c7": 0.554785020804439 }, "rgb": [222, 0, 59] }, @@ -49335,23 +49335,23 @@ "year": 1709, "resistanceReported": false, "duration": 49680000, - "curveSeeds": { - "c1": 40.82184205794849, - "c2": 36.56330780328595, - "c3": -5.964470449978954, - "c4": 7.02193412538648, - "c5": 32.92390675301658, - "c6": 52.43658919582302, - "c7": -17.863202693894372 + "points": { + "c1": 49.25187771090086, + "c2": -34.16144616924219, + "c3": -30.229789137228572, + "c4": -59.51236269874141, + "c5": 16.456788578925938, + "c6": -5.758665864227794, + "c7": 35.725299953107566 }, - "vertexSeeds": { - "c1": 8.634498197524632, - "c2": 8.46444030133422, - "c3": 8.200586053607816, - "c4": 8.535181520399636, - "c5": 7.890385281710915, - "c6": 7.98233319114716, - "c7": 8.849228281838338 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461865, + "c3": 10.610263522884882, + "c4": 8.48821081830791, + "c5": 6.3661581137309255, + "c6": 4.244105409153955, + "c7": 2.12205270457697 }, "rgb": [58, 15, 49] }, @@ -49362,23 +49362,23 @@ "year": 1709, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -5.4088903801399155, - "c2": -11.210489824326459, - "c3": -41.2111764408895, - "c4": -19.17197744186166, - "c5": 6.611784630417603, - "c6": 27.05822610507453, - "c7": -4.489210296604966 + "points": { + "c1": -25.61300586071753, + "c2": 5.751838295214149, + "c3": 6.336493539836333, + "c4": -4.066563452302347, + "c5": -1.4241913540275775, + "c6": -31.478739315774973, + "c7": 10.76881933242042 }, - "vertexSeeds": { - "c1": 9.564696344107094, - "c2": 9.332059530286271, - "c3": 9.496497077491112, - "c4": 9.885077696870573, - "c5": 9.740647644809442, - "c6": 9.049201020196334, - "c7": 9.088503857400061 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.507628294036056, + "c3": 12.089690245030042, + "c4": 9.671752196024045, + "c5": 7.253814147018028, + "c6": 4.8358760980120135, + "c7": 2.4179380490059983 }, "rgb": [58, 15, 49] }, @@ -49389,23 +49389,23 @@ "year": 1708, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -14.935214935828897, - "c2": 19.850080730319267, - "c3": 20.354450443510412, - "c4": 0.38423805513279063, - "c5": -27.340631189982297, - "c6": -21.480603077409924, - "c7": -15.874365921345387 + "points": { + "c1": -3.5227295033098294, + "c2": 20.254925240484052, + "c3": 11.510971553255285, + "c4": 2.5449367658337287, + "c5": 4.176906035495346, + "c6": -21.45043569777194, + "c7": -27.83960440927885 }, - "vertexSeeds": { - "c1": 2.879153337980452, - "c2": 2.776673234288388, - "c3": 2.9033520876261503, - "c4": 2.8430223800011136, - "c5": 2.722778530990678, - "c6": 2.9853372250260555, - "c7": 2.8978071791670583 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.32732316227462, + "c3": 3.606102635228846, + "c4": 2.884882108183078, + "c5": 2.16366158113731, + "c6": 1.4424410540915353, + "c7": 0.7212205270457677 }, "rgb": [238, 201, 159] }, @@ -49416,23 +49416,23 @@ "year": 1708, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 3.134622038631676, - "c2": -15.989440210016772, - "c3": 11.542228761056723, - "c4": -8.354130738232058, - "c5": -26.048086543459398, - "c6": -4.778716018963195, - "c7": -13.305092798200503 + "points": { + "c1": -2.797863631423372, + "c2": 27.07313787211351, + "c3": 2.831497546509919, + "c4": -24.669896309662278, + "c5": 25.17608138666637, + "c6": 11.014611900585091, + "c7": 1.7387691305696862 }, - "vertexSeeds": { - "c1": 5.319090883618784, - "c2": 5.908724615789705, - "c3": 5.622757929369504, - "c4": 5.5034014369119, - "c5": 5.743193089310916, - "c6": 5.8100073050585435, - "c7": 5.723706080025894 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307902, + "c3": 7.073509015256581, + "c4": 5.658807212205273, + "c5": 4.244105409153951, + "c6": 2.82940360610263, + "c7": 1.4147018030513214 }, "rgb": [238, 201, 159] }, @@ -49443,23 +49443,23 @@ "year": 1708, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -6.9102555950511295, - "c2": -19.911727437916007, - "c3": 11.00815217484212, - "c4": -0.5151869165541001, - "c5": 24.220659946197333, - "c6": -8.969232802307893, - "c7": 4.392212606237795 + "points": { + "c1": -20.984172994430516, + "c2": 10.980972883244494, + "c3": 20.207510683207506, + "c4": -8.119473081991643, + "c5": 18.127111829996256, + "c6": 25.33628637038601, + "c7": 1.4157881884664114 }, - "vertexSeeds": { - "c1": 6.794013109234233, - "c2": 6.598141990422329, - "c3": 7.390013075770421, - "c4": 6.715892724298336, - "c5": 6.538003573120126, - "c6": 6.4904904764931075, - "c7": 7.119905278937523 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [222, 0, 59] }, @@ -49470,23 +49470,23 @@ "year": 1709, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -25.187870771578183, - "c2": -13.835983199622824, - "c3": -22.149151584803022, - "c4": 12.311335632532867, - "c5": 33.81025389501171, - "c6": 13.822238638318154, - "c7": -38.08214502992493 + "points": { + "c1": -14.212613127734407, + "c2": 33.49774567107616, + "c3": -17.05947141943901, + "c4": 23.00946616958663, + "c5": -22.619681962579985, + "c6": -21.169769934664647, + "c7": 19.027604551984304 }, - "vertexSeeds": { - "c1": 5.753556912980422, - "c2": 5.883129346975903, - "c3": 5.569702812523457, - "c4": 5.911333062700194, - "c5": 5.585325266989709, - "c6": 5.823034780758246, - "c7": 5.875174593023397 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348131, + "c3": 7.096625057790113, + "c4": 5.677300046232095, + "c5": 4.257975034674053, + "c6": 2.8386500231160356, + "c7": 1.4193250115580178 }, "rgb": [238, 201, 159] }, @@ -49497,23 +49497,23 @@ "year": 1709, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -16.945209810066387, - "c2": -4.432396256702184, - "c3": -0.915664301405414, - "c4": 12.018412788187938, - "c5": -4.060839862262771, - "c6": 22.076932039335553, - "c7": 15.78137294740273 + "points": { + "c1": -11.834311703141662, + "c2": -20.59228371697783, + "c3": -24.405181741595023, + "c4": 8.151515579419346, + "c5": 24.41800443538942, + "c6": 22.398547153491194, + "c7": 12.49688923436549 }, - "vertexSeeds": { - "c1": 3.822439880432384, - "c2": 3.9495535301685214, - "c3": 3.9122921652719613, - "c4": 4.376433612312925, - "c5": 3.7816631415460127, - "c6": 4.503383570453167, - "c7": 4.082234798946554 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.54646324549237, + "c3": 5.45538603791031, + "c4": 4.3643088303282465, + "c5": 3.273231622746187, + "c6": 2.1821544151641232, + "c7": 1.0910772075820598 }, "rgb": [222, 0, 59] }, @@ -49524,23 +49524,23 @@ "year": 1709, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 19.22835090848746, - "c2": 2.07562719025319, - "c3": 5.376932361658707, - "c4": 24.657173534811793, - "c5": 13.39395573151965, - "c6": 7.638730392100985, - "c7": 10.017867904126373 + "points": { + "c1": 8.651481694024323, + "c2": 27.170504862029272, + "c3": -15.417729363131551, + "c4": -27.52600583431728, + "c5": 17.735446697722434, + "c6": 22.682800502409403, + "c7": 23.90246977469395 }, - "vertexSeeds": { - "c1": 5.835650600659989, - "c2": 4.905953083421825, - "c3": 5.819308290580713, - "c4": 5.127000352868253, - "c5": 5.562002109908287, - "c6": 5.27182485702548, - "c7": 5.830276150351844 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.7378640776699, + "c3": 7.281553398058249, + "c4": 5.825242718446605, + "c5": 4.368932038834952, + "c6": 2.9126213592233, + "c7": 1.456310679611648 }, "rgb": [238, 201, 159] }, @@ -49551,23 +49551,23 @@ "year": 1709, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 16.566142544904938, - "c2": 19.423045373292634, - "c3": 11.942106445813682, - "c4": 25.608718167666698, - "c5": -9.437537548441362, - "c6": -20.599010177827445, - "c7": 27.383655803246523 + "points": { + "c1": 2.7906716408301016, + "c2": 14.171261468310032, + "c3": -5.898249811106464, + "c4": 4.618463706041627, + "c5": 16.398806665175673, + "c6": 27.556924133882607, + "c7": 15.614598737349272 }, - "vertexSeeds": { - "c1": 3.293418722142938, - "c2": 3.118008160203609, - "c3": 3.1505599411244893, - "c4": 3.15056242197038, - "c5": 3.191343009891848, - "c6": 3.21839273042217, - "c7": 3.207537297021806 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038836, + "c3": 4.045307443365699, + "c4": 3.2362459546925604, + "c5": 2.4271844660194226, + "c6": 1.6181229773462846, + "c7": 0.8090614886731464 }, "rgb": [238, 201, 159] }, @@ -49578,23 +49578,23 @@ "year": 1708, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 16.712687415986906, - "c2": -20.311830320229173, - "c3": -0.029143228172621605, - "c4": -22.612693549474606, - "c5": 22.468711190824486, - "c6": -15.211618191270363, - "c7": 18.09069015179322 + "points": { + "c1": -12.703121130397202, + "c2": -12.716591235632839, + "c3": -21.34679158591284, + "c4": -13.009325070948456, + "c5": -10.614201189025302, + "c6": 8.67650039826804, + "c7": -16.271275364708032 }, - "vertexSeeds": { - "c1": 6.619616005271016, - "c2": 6.9201704053806985, - "c3": 6.796536265264189, - "c4": 6.27365046901627, - "c5": 6.500902346390289, - "c6": 6.426431182559501, - "c7": 6.5914742600265175 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.29865926953306, + "c4": 6.63892741562645, + "c5": 4.979195561719828, + "c6": 3.319463707813218, + "c7": 1.659731853906609 }, "rgb": [77, 76, 132] }, @@ -49605,23 +49605,23 @@ "year": 1709, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 4.173819653475576, - "c2": -1.7079959117498689, - "c3": 31.357808510930553, - "c4": -8.013405726625344, - "c5": 1.7559529505144624, - "c6": 18.99731378164296, - "c7": -5.845439014169269 + "points": { + "c1": -19.20276222347954, + "c2": -16.867653588988645, + "c3": -1.2349674989430284, + "c4": -0.7427489944805146, + "c5": -26.218609464582112, + "c6": -11.854567804806784, + "c7": -10.310458818273052 }, - "vertexSeeds": { - "c1": 2.129607463917346, - "c2": 2.1071282565527136, - "c3": 2.1435320672218205, - "c4": 2.1923329081839578, - "c5": 2.234666835125171, - "c6": 2.0671520610816154, - "c7": 2.066539844615237 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.32871012482663, + "c3": 2.773925104022192, + "c4": 2.2191400832177544, + "c5": 1.6643550624133132, + "c6": 1.1095700416088756, + "c7": 0.5547850208044378 }, "rgb": [58, 15, 49] }, @@ -49632,23 +49632,23 @@ "year": 1709, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 14.11188722617753, - "c2": -11.367758288051913, - "c3": -19.528103089065958, - "c4": 9.331453216047024, - "c5": 14.884419483252117, - "c6": -17.08142422425032, - "c7": 10.289926591686324 + "points": { + "c1": 13.910200612106692, + "c2": 18.656191874267982, + "c3": 28.171679865496046, + "c4": 18.278280007374597, + "c5": -13.250206889380596, + "c6": 5.152692037080961, + "c7": 24.30823971313945 }, - "vertexSeeds": { - "c1": 0.8095435036599125, - "c2": 0.7657150870922311, - "c3": 0.7280082434490986, - "c4": 0.694826645292432, - "c5": 0.6511264589244182, - "c6": 0.7095807160560164, - "c7": 0.8321560375620358 + "offsets": { + "c1": 1.4563106796116505, + "c2": 1.248266296809986, + "c3": 1.0402219140083215, + "c4": 0.832177531206657, + "c5": 0.6241331484049926, + "c6": 0.416088765603328, + "c7": 0.20804438280166354 }, "rgb": [58, 15, 49] }, @@ -49659,23 +49659,23 @@ "year": 1709, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -28.81879368574881, - "c2": 15.51187083254463, - "c3": 3.608378590293242, - "c4": 22.03136908211279, - "c5": -4.504092518408768, - "c6": 7.7494844175956175, - "c7": 20.83189390496588 + "points": { + "c1": 16.763155067180556, + "c2": -28.428827363412708, + "c3": -26.697549201099996, + "c4": -21.07658420630839, + "c5": 14.966076487919182, + "c6": 37.318627271679375, + "c7": -27.723298289246834 }, - "vertexSeeds": { - "c1": 1.0418579652942879, - "c2": 1.1061874085768406, - "c3": 1.2349672521465656, - "c4": 1.0896769924737493, - "c5": 1.2310571286350573, - "c6": 1.1953863698261444, - "c7": 1.21652378321491 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144252, + "c3": 1.5025427646786869, + "c4": 1.20203421174295, + "c5": 0.9015256588072119, + "c6": 0.601017105871475, + "c7": 0.3005085529357381 }, "rgb": [86, 146, 138] }, @@ -49686,23 +49686,23 @@ "year": 1709, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 16.090581529072825, - "c2": -8.118642042750132, - "c3": -13.679493354185686, - "c4": -9.179832093336923, - "c5": 1.805776821216611, - "c6": -1.1093055989781213, - "c7": 12.678644811271003 + "points": { + "c1": 4.701724182494505, + "c2": 6.212155967182628, + "c3": 21.670747471328138, + "c4": 15.171592633012065, + "c5": 0.1664925238733801, + "c6": 11.723696162510134, + "c7": -14.510256864953927 }, - "vertexSeeds": { - "c1": 7.1514234528773795, - "c2": 7.103197573614623, - "c3": 6.649799576640577, - "c4": 8.12375566304034, - "c5": 6.961605103519239, - "c6": 6.701683058066003, - "c7": 7.0478649546325345 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054093, + "c3": 9.801202034211746, + "c4": 7.840961627369399, + "c5": 5.880721220527041, + "c6": 3.9204808136846947, + "c7": 1.9602404068423473 }, "rgb": [222, 0, 59] }, @@ -49713,23 +49713,23 @@ "year": 1708, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -7.71083199758441, - "c2": 20.571862202352676, - "c3": 17.250577455542917, - "c4": 15.813795042296185, - "c5": 0.7704963189982585, - "c6": 18.279355089208337, - "c7": -22.979229915745332 + "points": { + "c1": 7.150877095395977, + "c2": 1.6057841842754073, + "c3": 16.913570075226176, + "c4": 19.910816114504215, + "c5": 2.817216730365921, + "c6": 2.535640123237812, + "c7": -12.610534520827192 }, - "vertexSeeds": { - "c1": 3.169315192691653, - "c2": 3.4682472931351964, - "c3": 3.2306066678902257, - "c4": 3.3566480016600346, - "c5": 3.1605674827774464, - "c6": 3.118779351367372, - "c7": 3.2093034374978666 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [238, 201, 159] }, @@ -49740,23 +49740,23 @@ "year": 1709, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -3.727254759033606, - "c2": -17.945889154826588, - "c3": -17.467896752909994, - "c4": 24.398139197997416, - "c5": 1.113635609548517, - "c6": -36.86174179689053, - "c7": 26.339718882664926 + "points": { + "c1": 30.269517688783324, + "c2": -33.427770084597114, + "c3": -21.322449319117467, + "c4": -37.78492624675757, + "c5": 30.267019824510868, + "c6": 25.57328901884638, + "c7": 38.86771228849473 }, - "vertexSeeds": { - "c1": 9.562080121529792, - "c2": 8.859114168067457, - "c3": 8.96197890676873, - "c4": 8.928470912967509, - "c5": 9.336787609149518, - "c6": 8.82755596983667, - "c7": 9.564989075829585 + "offsets": { + "c1": 15.987055016181229, + "c2": 13.703190013869623, + "c3": 11.419325011558021, + "c4": 9.135460009246415, + "c5": 6.8515950069348115, + "c6": 4.567730004623208, + "c7": 2.283865002311604 }, "rgb": [77, 76, 132] }, @@ -49767,23 +49767,23 @@ "year": 1709, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 0.9527091158394789, - "c2": 0.026552511249203548, - "c3": 4.5445023884973885, - "c4": 6.184721721129005, - "c5": 11.53271044986582, - "c6": -19.71953496217614, - "c7": 2.7833516234910327 + "points": { + "c1": -18.363503422508764, + "c2": -5.74548999434457, + "c3": 18.061748503716892, + "c4": 0.8287704714956448, + "c5": 11.60580148257992, + "c6": 2.854996196627553, + "c7": 6.57765515697081 }, - "vertexSeeds": { - "c1": 3.985608047083855, - "c2": 3.941686222240966, - "c3": 3.897072768159644, - "c4": 3.9029962434261196, - "c5": 4.071315053978807, - "c6": 3.985578166390285, - "c7": 4.115222397241399 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567265, + "c3": 4.923717059639385, + "c4": 3.938973647711505, + "c5": 2.954230235783625, + "c6": 1.9694868238557603, + "c7": 0.9847434119278802 }, "rgb": [222, 0, 59] }, @@ -49794,23 +49794,23 @@ "year": 1709, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 24.879747262845243, - "c2": -41.29518701418158, - "c3": -17.04105156523913, - "c4": -31.385268327328095, - "c5": 23.279191277423564, - "c6": -8.774631616319276, - "c7": 13.545793605220766 + "points": { + "c1": 21.54409163391962, + "c2": 2.0258720889915764, + "c3": -31.585239417330225, + "c4": 31.635843971075303, + "c5": -10.12250880959747, + "c6": -41.46179325754324, + "c7": 39.61462815554253 }, - "vertexSeeds": { - "c1": 4.7290513805642815, - "c2": 4.913023953140578, - "c3": 4.445338611530336, - "c4": 4.190595622159745, - "c5": 4.677867077163368, - "c6": 4.865986949608573, - "c7": 4.440970761105622 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256588, + "c3": 5.894590846047154, + "c4": 4.715672676837727, + "c5": 3.536754507628294, + "c6": 2.3578363384188603, + "c7": 1.1789181692094275 }, "rgb": [77, 76, 132] }, @@ -49821,23 +49821,23 @@ "year": 1709, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 15.641611070032834, - "c2": -3.172481154404048, - "c3": 13.958290949828598, - "c4": 8.101110548780731, - "c5": 10.47694317633377, - "c6": -13.584194894604932, - "c7": -13.563704014267532 + "points": { + "c1": -7.542139752183061, + "c2": -6.14100041007714, + "c3": -17.543601514967797, + "c4": -7.277456931766233, + "c5": -5.114412130616115, + "c6": 0.6062399312460478, + "c7": 10.759810531201722 }, - "vertexSeeds": { - "c1": 3.1048824597153355, - "c2": 3.1974900783702838, - "c3": 3.0203037418887364, - "c4": 3.1400606818738255, - "c5": 3.046949217424814, - "c6": 3.010315436400093, - "c7": 3.085219504012676 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -49848,23 +49848,23 @@ "year": 1709, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -1.250626006229382, - "c2": 12.401473990070578, - "c3": -3.2364401149235853, - "c4": 5.596668665159463, - "c5": -6.306782292177104, - "c6": 14.168988916233804, - "c7": -0.5183021723496903 + "points": { + "c1": -15.312929047019576, + "c2": -16.633690478698632, + "c3": 14.439534838888012, + "c4": 9.151289317194568, + "c5": -16.104812173428204, + "c6": -2.1534447644522956, + "c7": -16.17877445462863 }, - "vertexSeeds": { - "c1": 7.077740835468042, - "c2": 7.070772655105156, - "c3": 6.621949655317507, - "c4": 6.5772996556689645, - "c5": 6.163630476509852, - "c6": 6.989183099054005, - "c7": 7.074630806216655 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882104, + "c3": 8.552935737401757, + "c4": 6.842348589921402, + "c5": 5.131761442441057, + "c6": 3.421174294960701, + "c7": 1.7105871474803565 }, "rgb": [86, 146, 138] }, @@ -49875,23 +49875,23 @@ "year": 1709, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 28.42435820897542, - "c2": 31.858283989033836, - "c3": -18.057302500026264, - "c4": -26.586241067108993, - "c5": -10.58518009814544, - "c6": -30.94101329809871, - "c7": -35.03552804319767 + "points": { + "c1": 21.12977603228925, + "c2": 32.706615795430736, + "c3": 38.735909844790285, + "c4": 27.741939448126658, + "c5": -4.937532298053291, + "c6": -30.596056741582885, + "c7": 35.415190761483274 }, - "vertexSeeds": { - "c1": 5.207255467858272, - "c2": 6.391218960054973, - "c3": 6.296171364789825, - "c4": 5.442646714632681, - "c5": 6.392099416152194, - "c6": 5.541562226091738, - "c7": 6.077458988703902 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393893, + "c3": 7.697642163661581, + "c4": 6.158113730929268, + "c5": 4.618585298196948, + "c6": 3.0790568654646284, + "c7": 1.539528432732316 }, "rgb": [58, 15, 49] }, @@ -49902,23 +49902,23 @@ "year": 1709, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 32.477409919615525, - "c2": -9.09091087013637, - "c3": 10.160771670814697, - "c4": 28.870262254613948, - "c5": -15.52477559263426, - "c6": 6.551229952439371, - "c7": 43.35823298005836 + "points": { + "c1": 33.54267226931174, + "c2": 36.00272357179399, + "c3": -38.912539126092845, + "c4": -42.39508194090468, + "c5": -9.189942963519243, + "c6": 23.584775742961355, + "c7": -21.472812851086385 }, - "vertexSeeds": { - "c1": 5.857184292177727, - "c2": 5.574576465688977, - "c3": 5.818093104799315, - "c4": 5.823472684410974, - "c5": 5.528971788738269, - "c6": 5.6476864568760305, - "c7": 5.827988481323232 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.54368932038835, + "c3": 7.119741100323624, + "c4": 5.6957928802588995, + "c5": 4.271844660194175, + "c6": 2.8478964401294498, + "c7": 1.4239482200647249 }, "rgb": [77, 76, 132] }, @@ -49929,23 +49929,23 @@ "year": 1709, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 5.049600360511604, - "c2": -0.09182321593713283, - "c3": 10.134812825928528, - "c4": -9.031234948597998, - "c5": -20.188812947251336, - "c6": -4.6653145552908875, - "c7": -24.769403959898494 + "points": { + "c1": 34.06372463266591, + "c2": -11.747287338794294, + "c3": 13.606632149611556, + "c4": -23.867961694614063, + "c5": 34.321286625812746, + "c6": 33.680461973269246, + "c7": 1.94439082976168 }, - "vertexSeeds": { - "c1": 3.061722893805741, - "c2": 3.129321545203248, - "c3": 2.8341819003601767, - "c4": 3.0348658674827784, - "c5": 2.8186470555688277, - "c6": 3.0287370381111494, - "c7": 2.837843764810135 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.52149791955617, + "c3": 3.7679149329634742, + "c4": 3.0143319463707856, + "c5": 2.2607489597780894, + "c6": 1.5071659731853928, + "c7": 0.7535829865926964 }, "rgb": [238, 201, 159] }, @@ -49956,23 +49956,23 @@ "year": 1709, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -26.3280682991845, - "c2": 24.23208323294193, - "c3": 27.941833151045454, - "c4": 2.9619235482611863, - "c5": 26.454075268415703, - "c6": -21.416697350372857, - "c7": -30.28219786829723 + "points": { + "c1": 22.01242870044905, + "c2": -33.37679475179038, + "c3": -7.329815667759828, + "c4": -5.176736530558344, + "c5": 0.77045674998908, + "c6": -27.93273035416508, + "c7": -19.042591725821218 }, - "vertexSeeds": { - "c1": 9.360479426400504, - "c2": 10.186408040035083, - "c3": 9.648408077117455, - "c4": 11.41527424938916, - "c5": 10.028079050081882, - "c6": 10.791543638409873, - "c7": 10.149424455988662 + "offsets": { + "c1": 19.158576051779935, + "c2": 16.42163661581137, + "c3": 13.684697179842816, + "c4": 10.947757743874249, + "c5": 8.21081830790568, + "c6": 5.473878871937127, + "c7": 2.73693943596856 }, "rgb": [238, 201, 159] }, @@ -49983,23 +49983,23 @@ "year": 1710, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": 24.065675756807522, - "c2": -33.765030289951916, - "c3": 53.213852801240904, - "c4": 26.007953353861524, - "c5": 37.01309145817005, - "c6": 33.93129630661326, - "c7": 22.647985894967732 + "points": { + "c1": -35.20515382053508, + "c2": 17.712020241457424, + "c3": -52.858958698786196, + "c4": 17.09522595289296, + "c5": -16.752718684900252, + "c6": 54.147252626816666, + "c7": 54.24280321992062 }, - "vertexSeeds": { - "c1": 9.56660548830617, - "c2": 9.043985728683495, - "c3": 9.450646219573406, - "c4": 9.14120176351607, - "c5": 8.883657756485345, - "c6": 8.726822446726821, - "c7": 8.907668329518822 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.4244105409154, + "c3": 12.020342117429491, + "c4": 9.616273693943596, + "c5": 7.2122052704577, + "c6": 4.808136846971803, + "c7": 2.4040684234858962 }, "rgb": [86, 146, 138] }, @@ -50010,23 +50010,23 @@ "year": 1709, "resistanceReported": false, "duration": 1468800, - "curveSeeds": { - "c1": 7.341721061036612, - "c2": -2.2961223840178366, - "c3": 3.597703974998245, - "c4": -4.8675090656258995, - "c5": -11.124572712734341, - "c6": -3.5172760646193773, - "c7": 7.376878339018361 + "points": { + "c1": -11.711204536270397, + "c2": 5.401180870204048, + "c3": -9.124841113821127, + "c4": 10.790263381677388, + "c5": -11.992138063718533, + "c6": -12.708183575590525, + "c7": -3.6833633184645738 }, - "vertexSeeds": { - "c1": 5.850926595763044, - "c2": 5.345100911390397, - "c3": 4.675261800598893, - "c4": 5.781502437993544, - "c5": 5.80133051369036, - "c6": 4.939995058076144, - "c7": 5.134006747777752 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.7378640776699, + "c3": 7.281553398058249, + "c4": 5.825242718446605, + "c5": 4.368932038834952, + "c6": 2.9126213592233, + "c7": 1.456310679611648 }, "rgb": [222, 0, 59] }, @@ -50037,23 +50037,23 @@ "year": 1710, "resistanceReported": false, "duration": 44496000, - "curveSeeds": { - "c1": -3.011138246746242, - "c2": -39.748218360952464, - "c3": 46.029914604849864, - "c4": 56.55715749428468, - "c5": 10.550613896688702, - "c6": 41.99465009205569, - "c7": 36.72025600620866 + "points": { + "c1": 16.308580200424885, + "c2": 6.855860778144702, + "c3": 36.94673015827651, + "c4": 16.23820416801898, + "c5": 31.203780890444378, + "c6": -39.469239678387765, + "c7": -18.335045998351603 }, - "vertexSeeds": { - "c1": 3.3422651706975834, - "c2": 3.577295194824242, - "c3": 3.313782207746088, - "c4": 3.7195096151133153, - "c5": 3.5633217682765297, - "c6": 3.7139089252221793, - "c7": 3.666858927470969 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843275, + "c3": 4.50762829403606, + "c4": 3.6061026352288508, + "c5": 2.7045769764216345, + "c6": 1.8030513176144254, + "c7": 0.901525658807216 }, "rgb": [86, 146, 138] }, @@ -50064,23 +50064,23 @@ "year": 1710, "resistanceReported": false, "duration": 60912000, - "curveSeeds": { - "c1": -10.039541441169092, - "c2": -25.473770149609877, - "c3": -50.676588265786755, - "c4": 0.05311773247227336, - "c5": 42.649136284992196, - "c6": -41.24017820969296, - "c7": 34.85460778756463 + "points": { + "c1": -77.84935051052751, + "c2": 60.14338965666997, + "c3": -47.58533508247969, + "c4": 65.83587691753726, + "c5": 77.72020282291342, + "c6": -5.974590722712662, + "c7": -34.55812593564763 }, - "vertexSeeds": { - "c1": 10.49775046845956, - "c2": 10.985396027948832, - "c3": 10.36662293661106, - "c4": 10.763802050301125, - "c5": 10.332591697800774, - "c6": 9.561532481139347, - "c7": 10.910675199827708 + "offsets": { + "c1": 18.51132686084142, + "c2": 15.866851595006937, + "c3": 13.22237632917245, + "c4": 10.57790106333794, + "c5": 7.933425797503456, + "c6": 5.28895053166897, + "c7": 2.644475265834485 }, "rgb": [77, 76, 132] }, @@ -50091,23 +50091,23 @@ "year": 1709, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -12.701472471744722, - "c2": 15.019744450224959, - "c3": -15.466811769510477, - "c4": -20.331086009749598, - "c5": 25.18047543420889, - "c6": -11.812382505993778, - "c7": 0.8599215831523317 + "points": { + "c1": 24.20577019494689, + "c2": -1.202118423385329, + "c3": -1.0550314919839856, + "c4": -16.42324056272475, + "c5": 26.965727402702658, + "c6": -17.387936779182148, + "c7": 17.127360517568516 }, - "vertexSeeds": { - "c1": 4.513754343644811, - "c2": 4.541113962106465, - "c3": 4.47892911068657, - "c4": 4.229862836690369, - "c5": 5.123629289036979, - "c6": 4.338740211936953, - "c7": 5.095422305466346 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061025, + "c3": 6.356911696717519, + "c4": 5.085529357374014, + "c5": 3.8141470180305124, + "c6": 2.542764678687007, + "c7": 1.2713823393435015 }, "rgb": [222, 0, 59] }, @@ -50118,23 +50118,23 @@ "year": 1709, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -13.172523476075007, - "c2": 16.59584909661865, - "c3": -30.582011560158048, - "c4": 23.190561401697096, - "c5": 2.3194914542061156, - "c6": -26.18898419261202, - "c7": 6.922134844211065 + "points": { + "c1": 35.591877225921884, + "c2": -18.09694795088199, + "c3": 14.672509503298528, + "c4": -31.850392764998084, + "c5": 33.833027228535194, + "c6": -11.82405752072231, + "c7": -16.3271842726173 }, - "vertexSeeds": { - "c1": 7.23140980066106, - "c2": 3.7677517419232145, - "c3": 4.277130264527781, - "c4": 3.620270332805982, - "c5": 4.174302692487005, - "c6": 6.400352235881529, - "c7": 6.990214109113712 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008322, + "c3": 9.200184928340267, + "c4": 7.3601479426722145, + "c5": 5.520110957004159, + "c6": 3.6800739713361064, + "c7": 1.8400369856680543 }, "rgb": [77, 76, 132] }, @@ -50145,23 +50145,23 @@ "year": 1709, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 22.64600931122079, - "c2": -18.99209510368082, - "c3": 20.938157179512945, - "c4": 15.852218278041786, - "c5": -0.552639975258888, - "c6": -22.2392631685587, - "c7": -18.50831328686442 + "points": { + "c1": -8.301884411583991, + "c2": 3.9731914647551143, + "c3": 23.10486299328719, + "c4": 2.6487186466083763, + "c5": 12.970842007896959, + "c6": -3.4313761110350924, + "c7": -10.254185841403586 }, - "vertexSeeds": { - "c1": 4.248410630483274, - "c2": 3.997331307028775, - "c3": 3.7824250022396537, - "c4": 4.074276428571163, - "c5": 3.8804856322724155, - "c6": 4.141667561910231, - "c7": 3.6965286733514935 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374015, + "c4": 4.068423485899212, + "c5": 3.0513176144244065, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [238, 201, 159] }, @@ -50172,23 +50172,23 @@ "year": 1709, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 25.228771393668218, - "c2": 33.04941343732102, - "c3": -1.3240037122205237, - "c4": -1.810853436564308, - "c5": -22.104298245278784, - "c6": 23.38612753431483, - "c7": 26.00027029485959 + "points": { + "c1": -13.928407417106023, + "c2": 30.38674039895558, + "c3": 15.333517513733696, + "c4": -22.475453833002835, + "c5": -14.866675882189018, + "c6": 32.22726687176878, + "c7": 35.91337990185406 }, - "vertexSeeds": { - "c1": 5.908414395971493, - "c2": 6.803576945761369, - "c3": 6.7131849894408315, - "c4": 6.724325199177916, - "c5": 6.83950547998819, - "c6": 5.866118522464653, - "c7": 6.4931703167551955 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359219, + "c3": 8.252427184466024, + "c4": 6.601941747572817, + "c5": 4.9514563106796095, + "c6": 3.300970873786414, + "c7": 1.650485436893207 }, "rgb": [222, 0, 59] }, @@ -50199,23 +50199,23 @@ "year": 1710, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 4.032964481490019, - "c2": -33.53658391995654, - "c3": -5.188299559726794, - "c4": -23.31737099911774, - "c5": 34.39678804147041, - "c6": -31.095582875779115, - "c7": 17.90270221978934 + "points": { + "c1": -43.30748555573573, + "c2": 4.741843361532695, + "c3": -33.05642836786866, + "c4": -26.577215943237146, + "c5": 36.208042042987394, + "c6": 25.187490099334518, + "c7": 8.378571519017562 }, - "vertexSeeds": { - "c1": 4.900048172701867, - "c2": 5.58528500792671, - "c3": 5.184542882390532, - "c4": 5.0302677943597525, - "c5": 5.380012045169734, - "c6": 5.227766614632474, - "c7": 5.486362418106806 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744795, + "c3": 6.749884419787337, + "c4": 5.399907535829868, + "c5": 4.049930651872398, + "c6": 2.6999537679149284, + "c7": 1.3499768839574697 }, "rgb": [58, 15, 49] }, @@ -50226,23 +50226,23 @@ "year": 1709, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -10.360942764566687, - "c2": 10.923048234531734, - "c3": -13.563047369974484, - "c4": -1.4741543170245173, - "c5": -23.944788425137347, - "c6": -7.81331593046394, - "c7": 0.4806189078609151 + "points": { + "c1": 25.600503024490934, + "c2": 28.141082881819877, + "c3": -16.5924879621842, + "c4": -7.448777010780166, + "c5": -27.383790058192183, + "c6": -32.71919914116803, + "c7": -21.765674749310236 }, - "vertexSeeds": { - "c1": 4.906429289731344, - "c2": 4.579382493401677, - "c3": 4.912387475657064, - "c4": 4.58110792938632, - "c5": 4.616665918991071, - "c6": 4.975176219898224, - "c7": 4.55172564032092 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385114, + "c4": 5.17799352750809, + "c5": 3.883495145631068, + "c6": 2.588996763754045, + "c7": 1.2944983818770226 }, "rgb": [58, 15, 49] }, @@ -50253,23 +50253,23 @@ "year": 1709, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 2.978411415422727, - "c2": 34.92762777980792, - "c3": 32.43401369374294, - "c4": 34.12464293799994, - "c5": 2.208421784502164, - "c6": 8.887676533639272, - "c7": 13.33845281590282 + "points": { + "c1": 18.289418465442125, + "c2": 18.858474092625272, + "c3": -8.277538114705862, + "c4": -12.905545465568022, + "c5": 22.72582431248115, + "c6": 24.304498889480534, + "c7": -0.044686163747172714 }, - "vertexSeeds": { - "c1": 6.9918987261547025, - "c2": 6.895071027702085, - "c3": 6.377425142101388, - "c4": 6.915833398495163, - "c5": 5.7628947171504095, - "c6": 5.95109878715539, - "c7": 6.534657317789453 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.04160887656033, + "c3": 8.368007397133608, + "c4": 6.694405917706892, + "c5": 5.02080443828017, + "c6": 3.347202958853446, + "c7": 1.673601479426723 }, "rgb": [77, 76, 132] }, @@ -50280,23 +50280,23 @@ "year": 1710, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 1.717816480245581, - "c2": 13.804750654918024, - "c3": 7.528258914795849, - "c4": 23.067851711667146, - "c5": -29.38747152407036, - "c6": 20.630270514638916, - "c7": 18.619875083856115 + "points": { + "c1": 33.21660035215301, + "c2": 23.223787485257745, + "c3": 25.79677335221193, + "c4": 5.584125960462266, + "c5": -17.035168463016895, + "c6": -33.96797821705773, + "c7": -29.644148821159085 }, - "vertexSeeds": { - "c1": 6.58678756476684, - "c2": 6.58678756476684, - "c3": 6.58678756476684, - "c4": 6.58678756476684, - "c5": 6.58678756476684, - "c6": 6.58678756476684, - "c7": 6.58678756476684 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -50307,23 +50307,23 @@ "year": 1709, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -11.593414896444491, - "c2": -23.909621462907875, - "c3": -16.591301723381676, - "c4": 21.422096014659857, - "c5": 21.564992998656564, - "c6": 23.30620145574364, - "c7": 15.097835944557637 + "points": { + "c1": 17.890604680489595, + "c2": 7.151719178771046, + "c3": 10.898861528185549, + "c4": -4.370015502794889, + "c5": 14.38683898324635, + "c6": -20.482299350097243, + "c7": 15.124373911196308 }, - "vertexSeeds": { - "c1": 2.4011357373892337, - "c2": 2.7990221154760317, - "c3": 2.7739866711469716, - "c4": 2.425038881746795, - "c5": 2.669268239979073, - "c6": 2.3311692547329232, - "c7": 2.755605807601161 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952842, + "c3": 3.4211742949607014, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.3684697179842826, + "c7": 0.6842348589921413 }, "rgb": [222, 0, 59] }, @@ -50334,23 +50334,23 @@ "year": 1709, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 15.703177293959218, - "c2": 13.845892050446306, - "c3": 25.16575211658949, - "c4": 11.07482801755216, - "c5": 2.2649821848829, - "c6": 13.11937209028267, - "c7": 10.603817399596675 + "points": { + "c1": 10.548728417084142, + "c2": -22.12545652919802, + "c3": 31.83101413859582, + "c4": -31.500930152860818, + "c5": 13.308968022655243, + "c6": -29.086142604388936, + "c7": 18.353309691646302 }, - "vertexSeeds": { - "c1": 7.50403900396251, - "c2": 7.0481719301494845, - "c3": 7.0112832384153645, - "c4": 7.054784927589263, - "c5": 7.070611476201838, - "c6": 7.956433426285958, - "c7": 7.905640827190507 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531207, + "c3": 9.500693481276006, + "c4": 7.600554785020805, + "c5": 5.7004160887656035, + "c6": 3.8002773925104023, + "c7": 1.9001386962552012 }, "rgb": [58, 15, 49] }, @@ -50361,23 +50361,23 @@ "year": 1710, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 9.766288717025745, - "c2": 14.026081336043106, - "c3": -6.243065182821152, - "c4": 33.01674822483973, - "c5": -29.083609821823323, - "c6": -1.1165429199972152, - "c7": 2.923414279074578 + "points": { + "c1": 35.38516179742065, + "c2": 2.6560305533823225, + "c3": 3.491733709914172, + "c4": 32.44854184451981, + "c5": -38.91662210368576, + "c6": 22.841566390296585, + "c7": 33.798869461026726 }, - "vertexSeeds": { - "c1": 6.214911985847638, - "c2": 6.262594343539041, - "c3": 6.267569818924801, - "c4": 6.274733112257256, - "c5": 6.307094141848363, - "c6": 6.225046102505626, - "c7": 6.2427983145238795 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192755, + "c3": 7.582061950994, + "c4": 6.06564956079517, + "c5": 4.549237170596416, + "c6": 3.032824780397585, + "c7": 1.5164123901988302 }, "rgb": [222, 0, 59] }, @@ -50388,23 +50388,23 @@ "year": 1709, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -28.42044349337328, - "c2": 0.5515766551548822, - "c3": 28.75560104837703, - "c4": -23.423084108662927, - "c5": -9.630233399129366, - "c6": 20.75487673107628, - "c7": -7.062280612346726 + "points": { + "c1": -4.8859386001178855, + "c2": 12.129227967232055, + "c3": 21.867218338446555, + "c4": -16.590116954577027, + "c5": -30.89224139531364, + "c6": -13.949920445827061, + "c7": 8.562181012029157 }, - "vertexSeeds": { - "c1": 2.9889592203588555, - "c2": 2.8393654578426335, - "c3": 2.6310047262634857, - "c4": 2.832959862757126, - "c5": 3.0134271552067013, - "c6": 2.775200076431105, - "c7": 2.75337227855757 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314838, + "c3": 3.6292186777623683, + "c4": 2.903374942209892, + "c5": 2.177531206657422, + "c6": 1.451687471104946, + "c7": 0.7258437355524694 }, "rgb": [222, 0, 59] }, @@ -50415,23 +50415,23 @@ "year": 1709, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -19.976193845855892, - "c2": 17.108801253219568, - "c3": -3.7892294331192993, - "c4": -5.250102141091688, - "c5": -27.59208029552687, - "c6": -20.123099183213455, - "c7": 2.528197324836718 + "points": { + "c1": 30.231864423224224, + "c2": 1.276159533104206, + "c3": 21.13554403674511, + "c4": -29.817257252694194, + "c5": 29.5137431441715, + "c6": 21.29493553473423, + "c7": -24.904031717175698 }, - "vertexSeeds": { - "c1": 5.789300427376092, - "c2": 5.610818124077691, - "c3": 5.718085536470712, - "c4": 5.642381793189556, - "c5": 5.634886627009359, - "c6": 5.59989479757434, - "c7": 5.686981734507529 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066588, + "c3": 6.934812760055457, + "c4": 5.547850208044376, + "c5": 4.160887656033294, + "c6": 2.7739251040221626, + "c7": 1.3869625520110813 }, "rgb": [86, 146, 138] }, @@ -50442,23 +50442,23 @@ "year": 1709, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 20.809764380055615, - "c2": -0.9586412776781614, - "c3": 18.34431729146819, - "c4": 1.1120230207900335, - "c5": 19.39181752356159, - "c6": -2.777758255221105, - "c7": -17.219196520743893 + "points": { + "c1": 30.668490252229443, + "c2": 10.536951394007634, + "c3": -3.8923546812202616, + "c4": 20.74526473011002, + "c5": 15.535887626267101, + "c6": -26.297034789637202, + "c7": 0.9931396623260902 }, - "vertexSeeds": { - "c1": 3.1032187534085884, - "c2": 3.139717434391155, - "c3": 3.0774589977670366, - "c4": 3.0981838668575175, - "c5": 3.1045979744775267, - "c6": 3.1024123313452745, - "c7": 3.1355360420846417 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556156, + "c3": 3.767914932963482, + "c4": 3.0143319463707705, + "c5": 2.2607489597780965, + "c6": 1.5071659731853853, + "c7": 0.7535829865927114 }, "rgb": [58, 15, 49] }, @@ -50469,23 +50469,23 @@ "year": 1710, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -28.298368471298748, - "c2": -1.2494044293641693, - "c3": -14.591584900844563, - "c4": -17.88403572353748, - "c5": 1.3481216291038365, - "c6": 21.052428696942258, - "c7": -20.26940821336202 + "points": { + "c1": 5.055047882642334, + "c2": 21.919833361999466, + "c3": -28.482921104883708, + "c4": -3.356526026823744, + "c5": -26.100521295170836, + "c6": 30.339111523496996, + "c7": 33.91637406351141 }, - "vertexSeeds": { - "c1": 6.226348026694925, - "c2": 5.953212663809656, - "c3": 6.517560176952436, - "c4": 7.253523619880763, - "c5": 6.286999918059894, - "c6": 6.640457439163059, - "c7": 6.200049891207815 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807214, + "c3": 9.084604715672675, + "c4": 7.267683772538144, + "c5": 5.450762829403611, + "c6": 3.633841886269072, + "c7": 1.8169209431345397 }, "rgb": [58, 15, 49] }, @@ -50496,23 +50496,23 @@ "year": 1710, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 25.43692040523363, - "c2": -17.562640388304963, - "c3": -24.596249982326174, - "c4": -2.708606314740841, - "c5": -7.882302798867194, - "c6": -19.036719033198402, - "c7": -38.32300092339383 + "points": { + "c1": -27.031751173538055, + "c2": -19.824902489541987, + "c3": 39.365745837770056, + "c4": 8.775500380020489, + "c5": -25.23412207917256, + "c6": -41.070571893849916, + "c7": -18.879578548171448 }, - "vertexSeeds": { - "c1": 5.729507457604609, - "c2": 5.713085662199199, - "c3": 5.8110924385121505, - "c4": 5.861714660322384, - "c5": 5.84306235361458, - "c6": 5.879683890997373, - "c7": 5.857032053100629 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307916, + "c3": 7.073509015256576, + "c4": 5.658807212205266, + "c5": 4.244105409153958, + "c6": 2.829403606102649, + "c7": 1.4147018030513088 }, "rgb": [58, 15, 49] }, @@ -50523,23 +50523,23 @@ "year": 1710, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": 41.27357439272557, - "c2": 52.67177786461327, - "c3": 14.663220331968354, - "c4": -50.02486507573562, - "c5": 6.238432871630891, - "c6": 4.689300251814998, - "c7": 3.2734967891695774 + "points": { + "c1": 41.83308097741618, + "c2": 6.440210426495035, + "c3": -15.646385150471467, + "c4": -9.071686186910249, + "c5": -25.222125344907056, + "c6": 32.35489010778253, + "c7": -54.720514499860926 }, - "vertexSeeds": { - "c1": 4.904420124320863, - "c2": 5.0445221443544765, - "c3": 5.10116428609548, - "c4": 5.659933741995422, - "c5": 4.874874030957912, - "c6": 5.535258818466136, - "c7": 5.514637819561882 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055472, + "c4": 5.547850208044384, + "c5": 4.160887656033285, + "c6": 2.773925104022186, + "c7": 1.3869625520110989 }, "rgb": [86, 146, 138] }, @@ -50550,23 +50550,23 @@ "year": 1710, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -25.819550396386614, - "c2": 17.336202454239, - "c3": 6.060669272220572, - "c4": -24.298174648054882, - "c5": 31.158095177518227, - "c6": -21.02713650329374, - "c7": 21.829474724588373 + "points": { + "c1": -2.589394609289563, + "c2": -6.267281368143706, + "c3": -33.959047348381496, + "c4": -16.847452655587624, + "c5": 28.854736610614786, + "c6": 5.144041898586394, + "c7": 18.16230863442147 }, - "vertexSeeds": { - "c1": 6.193113505457321, - "c2": 6.069396596186213, - "c3": 6.3958227736338475, - "c4": 7.02226447350011, - "c5": 6.088989615156293, - "c6": 6.904980724355474, - "c7": 6.968219950379876 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680996, + "c3": 8.43735552473417, + "c4": 6.749884419787334, + "c5": 5.062413314840498, + "c6": 3.374942209893662, + "c7": 1.6874711049468356 }, "rgb": [77, 76, 132] }, @@ -50577,23 +50577,23 @@ "year": 1710, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 1.834891390749469, - "c2": 8.453330360917882, - "c3": 19.620643456642263, - "c4": 10.912184230138408, - "c5": 21.19632510263824, - "c6": 2.5694033936821725, - "c7": -11.040709708679625 + "points": { + "c1": 21.507915448601715, + "c2": 23.749548562306693, + "c3": -13.800374087475468, + "c4": 0.8287294517923556, + "c5": 30.014833293175244, + "c6": -31.499316705417385, + "c7": -7.717200498976776 }, - "vertexSeeds": { - "c1": 4.7470573184243205, - "c2": 4.760325127609341, - "c3": 6.085535048132346, - "c4": 5.735978317693413, - "c5": 5.084273918480213, - "c6": 4.726660227547745, - "c7": 4.689182485329251 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [222, 0, 59] }, @@ -50604,23 +50604,23 @@ "year": 1710, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 18.006025204586294, - "c2": -32.312198924063345, - "c3": -10.499529512733126, - "c4": 18.14642822599216, - "c5": 30.920317099569154, - "c6": 18.99814600929684, - "c7": 13.743622463294244 + "points": { + "c1": -25.138902456909317, + "c2": 30.78402881248129, + "c3": 14.037223589079424, + "c4": -31.161236808462377, + "c5": 12.109072695228143, + "c6": -17.500840670920358, + "c7": -3.9980584187280996 }, - "vertexSeeds": { - "c1": 8.809257894539583, - "c2": 8.474103844701995, - "c3": 8.704446889566295, - "c4": 8.957402287971414, - "c5": 8.60764094140707, - "c6": 9.346709967821633, - "c7": 8.894985868176 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507626, + "c3": 11.211280628756352, + "c4": 8.969024503005079, + "c5": 6.726768377253822, + "c6": 4.484512251502547, + "c7": 2.2422561257512736 }, "rgb": [77, 76, 132] }, @@ -50631,23 +50631,23 @@ "year": 1710, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 16.701927031333884, - "c2": 25.35360263848897, - "c3": 3.0869339200855457, - "c4": -0.747062847205509, - "c5": 24.359778261042226, - "c6": -21.81434153134051, - "c7": 5.9466340029068085 + "points": { + "c1": -7.444518583071446, + "c2": 27.119508890543617, + "c3": 6.2982463507901905, + "c4": -13.942561461109939, + "c5": 12.141346330202811, + "c6": -15.28139978449944, + "c7": 23.865548690517212 }, - "vertexSeeds": { - "c1": 6.784910343342985, - "c2": 7.221630171322482, - "c3": 6.44217886932598, - "c4": 6.311173079834993, - "c5": 7.391468132601915, - "c6": 7.1899934014656175, - "c7": 6.79463785204334 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364768, + "c3": 8.830328247803982, + "c4": 7.064262598243182, + "c5": 5.298196948682384, + "c6": 3.5321312991215863, + "c7": 1.7660656495607983 }, "rgb": [222, 0, 59] }, @@ -50658,23 +50658,23 @@ "year": 1710, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 18.139664448553468, - "c2": -7.1554175966079825, - "c3": 1.8312696443979242, - "c4": -21.25469946886397, - "c5": -20.868128564325563, - "c6": -7.00687698066039, - "c7": 8.574042213098963 + "points": { + "c1": -10.619978453017183, + "c2": -16.246448108340907, + "c3": 5.614682828420726, + "c4": 12.420350674344391, + "c5": -15.656313007421296, + "c6": 4.84204179720421, + "c7": 21.255627519159297 }, - "vertexSeeds": { - "c1": 3.0372093382124117, - "c2": 3.172521980065317, - "c3": 2.9086752128838635, - "c4": 2.9709082474764523, - "c5": 2.9917067681992164, - "c6": 3.140617380488167, - "c7": 3.007550844076645 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757285, + "c3": 3.883495145631067, + "c4": 3.106796116504856, + "c5": 2.330097087378639, + "c6": 1.553398058252428, + "c7": 0.7766990291262175 }, "rgb": [238, 201, 159] }, @@ -50685,23 +50685,23 @@ "year": 1711, "resistanceReported": false, "duration": 49507200, - "curveSeeds": { - "c1": 18.136975574563408, - "c2": -18.265971362019137, - "c3": -49.22265189719678, - "c4": -8.09838587600509, - "c5": -45.74970330537889, - "c6": 48.72897681165391, - "c7": 36.90132087995015 + "points": { + "c1": 52.056202471742765, + "c2": 63.462334400318554, + "c3": 12.944616280772323, + "c4": -21.85359677412798, + "c5": 39.80043065060134, + "c6": 46.4937215490102, + "c7": -22.1143528439326 }, - "vertexSeeds": { - "c1": 1.8096757524574374, - "c2": 1.8752754148887587, - "c3": 1.9594775991188509, - "c4": 1.7652984620208048, - "c5": 1.9690228923240773, - "c6": 1.9857887188710606, - "c7": 1.9695331322382394 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.427184466019417, + "c4": 1.941747572815535, + "c5": 1.4563106796116496, + "c6": 0.9708737864077674, + "c7": 0.4854368932038821 }, "rgb": [58, 15, 49] }, @@ -50712,23 +50712,23 @@ "year": 1710, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -9.323411214643325, - "c2": 3.3068763210566665, - "c3": -8.807712524135265, - "c4": 14.394203565526631, - "c5": 8.663807746252019, - "c6": -22.730655831274117, - "c7": -6.135344112088308 + "points": { + "c1": 10.001450486990187, + "c2": 7.310753490059419, + "c3": -19.55322446494698, + "c4": -13.958257174827285, + "c5": 10.930170716949661, + "c6": -4.030194913852117, + "c7": -3.758187509629302 }, - "vertexSeeds": { - "c1": 7.610376692886539, - "c2": 6.9441395297201876, - "c3": 7.0856488431470765, - "c4": 6.896610895462253, - "c5": 7.7888578978537, - "c6": 7.360931816311275, - "c7": 7.563995712589021 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289876, + "c3": 9.361997226074896, + "c4": 7.489597780859917, + "c5": 5.617198335644938, + "c6": 3.7447988904299585, + "c7": 1.8723994452149793 }, "rgb": [86, 146, 138] }, @@ -50739,23 +50739,23 @@ "year": 1710, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 28.397949849718955, - "c2": 21.37237513578002, - "c3": -21.905747374351716, - "c4": 10.5865436910641, - "c5": 7.469050247928564, - "c6": -15.725840087723402, - "c7": -27.950445627902972 + "points": { + "c1": 13.258508232586259, + "c2": -16.022160778801425, + "c3": -19.700537690425275, + "c4": 17.701409381354033, + "c5": -10.332448788488446, + "c6": 23.757522563227376, + "c7": 1.1766933405904467 }, - "vertexSeeds": { - "c1": 4.267540251296805, - "c2": 4.4327188291729565, - "c3": 4.401825396553322, - "c4": 4.359474226226748, - "c5": 4.435466410182778, - "c6": 4.2236201434151095, - "c7": 4.32084604692306 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371708, + "c3": 5.38603791030976, + "c4": 4.308830328247796, + "c5": 3.231622746185847, + "c6": 2.154415164123898, + "c7": 1.077207582061949 }, "rgb": [58, 15, 49] }, @@ -50766,23 +50766,23 @@ "year": 1710, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 20.429553108314778, - "c2": -4.014947864437751, - "c3": -0.3007972929452123, - "c4": 19.429963542393644, - "c5": -13.808653757820391, - "c6": -3.401302006410596, - "c7": 16.30542501081181 + "points": { + "c1": -19.19193566642911, + "c2": 13.116162769859947, + "c3": -27.20627183951088, + "c4": 2.5989287975155406, + "c5": 27.285280345463562, + "c6": -28.419251046335894, + "c7": -24.233756360026774 }, - "vertexSeeds": { - "c1": 4.085074788084, - "c2": 4.533960277368861, - "c3": 4.301222772834183, - "c4": 4.642801763843996, - "c5": 4.834059501600894, - "c6": 4.121316330434034, - "c7": 4.159671050560644 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [77, 76, 132] }, @@ -50793,23 +50793,23 @@ "year": 1710, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -3.1441375419041577, - "c2": -19.615671215569343, - "c3": 12.670850233132423, - "c4": 5.292846983530513, - "c5": 25.999085185019478, - "c6": 13.120746705071571, - "c7": 3.5496586324946016 + "points": { + "c1": 7.53930412687912, + "c2": -18.33637808507501, + "c3": -14.556931850920073, + "c4": -30.237984969999424, + "c5": -1.5612594047325885, + "c6": 9.639579550806307, + "c7": -7.6502977488597566 }, - "vertexSeeds": { - "c1": 4.6779746721411835, - "c2": 5.147328840188532, - "c3": 5.467004336980488, - "c4": 5.213323579077466, - "c5": 4.830811987499962, - "c6": 4.454479516289038, - "c7": 5.417740478132417 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387883, + "c4": 5.45538603791031, + "c5": 4.0915395284327305, + "c6": 2.7276930189551516, + "c7": 1.3638465094775758 }, "rgb": [238, 201, 159] }, @@ -50820,23 +50820,23 @@ "year": 1710, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -10.22109253348441, - "c2": -43.887485301644254, - "c3": -0.4504967444461201, - "c4": 23.58017439463481, - "c5": 26.10629128951591, - "c6": 13.076655971032885, - "c7": -46.346091834787764 + "points": { + "c1": -0.7674071803645504, + "c2": 28.22777651042456, + "c3": 24.67631273446274, + "c4": 39.752596579446475, + "c5": -28.32341511670824, + "c6": 23.808084770101573, + "c7": -16.795291725787088 }, - "vertexSeeds": { - "c1": 2.5452572766958634, - "c2": 2.621074498787728, - "c3": 1.9784468909181947, - "c4": 2.113132368699417, - "c5": 2.1975548507073106, - "c6": 2.2556721125960104, - "c7": 2.2833061645030623 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506247, + "c3": 3.19001386962552, + "c4": 2.5520110957004154, + "c5": 1.9140083217753123, + "c6": 1.2760055478502077, + "c7": 0.6380027739251032 }, "rgb": [86, 146, 138] }, @@ -50847,23 +50847,23 @@ "year": 1710, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -8.19179828356505, - "c2": -6.017406611117998, - "c3": -25.328444449825966, - "c4": -29.366468502808818, - "c5": -26.476536986725307, - "c6": -15.110233088321525, - "c7": -6.918052593627074 + "points": { + "c1": 8.093668156859628, + "c2": -7.07075510447844, + "c3": -15.737510003234302, + "c4": -0.9407154668082853, + "c5": -18.98816867897747, + "c6": 28.71141492433427, + "c7": 4.182586334483958 }, - "vertexSeeds": { - "c1": 6.135329906681838, - "c2": 6.253540934383304, - "c3": 6.17277409366512, - "c4": 5.958293593673826, - "c5": 6.11937131094007, - "c6": 5.855184147252592, - "c7": 6.25187178951828 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.859454461396207, + "c4": 6.28756356911697, + "c5": 4.7156726768377215, + "c6": 3.143781784558485, + "c7": 1.5718908922792358 }, "rgb": [86, 146, 138] }, @@ -50874,23 +50874,23 @@ "year": 1710, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -22.831255949552933, - "c2": 4.178669735125574, - "c3": -10.211001073596869, - "c4": 8.792930500175665, - "c5": 22.89412451577924, - "c6": 3.929410750835295, - "c7": 5.795139256154769 + "points": { + "c1": -2.45033067538629, + "c2": 33.73922447272389, + "c3": 33.55142160670664, + "c4": -29.971975421060225, + "c5": 22.801419220093614, + "c6": 7.152388153813014, + "c7": 21.14678979915162 }, - "vertexSeeds": { - "c1": 8.430784719521094, - "c2": 8.067192612792896, - "c3": 8.442711698216504, - "c4": 8.42386645048354, - "c5": 8.776443498149698, - "c6": 8.47933174649518, - "c7": 7.660377848581305 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421635, + "c3": 10.58714748035136, + "c4": 8.469717984281099, + "c5": 6.3522884882108235, + "c6": 4.234858992140549, + "c7": 2.1174294960702746 }, "rgb": [86, 146, 138] }, @@ -50901,23 +50901,23 @@ "year": 1710, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -9.009780429877253, - "c2": -17.777810141764895, - "c3": -8.89172649013518, - "c4": 12.469342884542854, - "c5": 19.928553255884502, - "c6": 31.270121305274884, - "c7": -23.73390836687414 + "points": { + "c1": 33.80558905302921, + "c2": -30.929428370000174, + "c3": -16.424953966733977, + "c4": 29.61249086373674, + "c5": -29.609302520794998, + "c6": 31.343885922741407, + "c7": 32.68148410159485 }, - "vertexSeeds": { - "c1": 7.403805285037438, - "c2": 8.281339137226269, - "c3": 7.670499283228041, - "c4": 7.760102560259975, - "c5": 7.9066378641452975, - "c6": 7.9540061421597015, - "c7": 7.794647964792602 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456312, + "c3": 10.03236245954693, + "c4": 8.025889967637546, + "c5": 6.019417475728162, + "c6": 4.012944983818779, + "c7": 2.006472491909396 }, "rgb": [238, 201, 159] }, @@ -50928,23 +50928,23 @@ "year": 1710, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 3.9395144993057087, - "c2": 8.704352262067474, - "c3": 18.749823513410576, - "c4": 0.5519198333783528, - "c5": -22.493699718427457, - "c6": -0.8524358033413613, - "c7": -3.6956505292442685 + "points": { + "c1": 27.848240724045027, + "c2": -30.073449498025695, + "c3": 11.401533177672803, + "c4": 6.686790914146961, + "c5": 11.326251256704921, + "c6": 21.8945263205948, + "c7": 24.821202538095363 }, - "vertexSeeds": { - "c1": 3.551029800863686, - "c2": 3.682326156106812, - "c3": 3.282595164203402, - "c4": 3.7224594487936127, - "c5": 3.713538345477294, - "c6": 3.3480612612201526, - "c7": 3.586151684582605 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.38141470180305, + "c3": 4.484512251502546, + "c4": 3.587609801202036, + "c5": 2.690707350901525, + "c6": 1.7938049006010213, + "c7": 0.8969024503005106 }, "rgb": [86, 146, 138] }, @@ -50955,23 +50955,23 @@ "year": 1710, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 4.527889943191042, - "c2": -22.83295481060435, - "c3": 17.693607766061284, - "c4": -3.6454230394927514, - "c5": -1.1195110992039616, - "c6": -26.65843937566443, - "c7": 2.240236626323899 + "points": { + "c1": -9.374878700411351, + "c2": -2.792359420524054, + "c3": 9.957251876150764, + "c4": -24.836333641435267, + "c5": 11.788187391887085, + "c6": 5.934163613924483, + "c7": 15.298662198193576 }, - "vertexSeeds": { - "c1": 5.428606779143158, - "c2": 5.51708269585801, - "c3": 6.414038769462675, - "c4": 5.332442062208803, - "c5": 5.708828662096531, - "c6": 5.94395301834412, - "c7": 5.4206006623800835 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554788, + "c3": 7.79010633379565, + "c4": 6.232085067036521, + "c5": 4.674063800277394, + "c6": 3.1160425335182564, + "c7": 1.5580212667591282 }, "rgb": [86, 146, 138] }, @@ -50982,23 +50982,23 @@ "year": 1710, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": 2.393699371288296, - "c2": 8.647408031894756, - "c3": 13.411577089663126, - "c4": 13.19809087412554, - "c5": -16.730740276026772, - "c6": -18.24209520905316, - "c7": 3.6723134187562856 + "points": { + "c1": 9.128312656902342, + "c2": -12.050499147414422, + "c3": -12.963353122095583, + "c4": -6.85559656879847, + "c5": -15.547597793523506, + "c6": 3.854870366396387, + "c7": 8.992130303443108 }, - "vertexSeeds": { - "c1": 5.630826743455004, - "c2": 5.659885725664663, - "c3": 5.740886812675854, - "c4": 5.755177187085838, - "c5": 5.676595716225669, - "c6": 5.695141157948921, - "c7": 5.642493601186005 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066558, + "c3": 6.934812760055502, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022223, + "c7": 1.3869625520111115 }, "rgb": [86, 146, 138] }, @@ -51009,23 +51009,23 @@ "year": 1710, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -8.05146923975532, - "c2": 19.387880868124753, - "c3": -26.709572484767754, - "c4": 7.696590806248672, - "c5": 3.7532963976503453, - "c6": 9.571872292863404, - "c7": 17.10450502302927 + "points": { + "c1": -22.964284955555765, + "c2": 11.831453964700145, + "c3": -28.708909123790956, + "c4": -21.330753006574852, + "c5": -30.186798161223983, + "c6": -27.384343681298947, + "c7": -35.383279393938956 }, - "vertexSeeds": { - "c1": 3.6319074708181316, - "c2": 4.212021070819631, - "c3": 3.917657666921342, - "c4": 4.0525254422658294, - "c5": 4.303264228415714, - "c6": 4.185153160437561, - "c7": 4.044578350632587 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331484, + "c3": 5.362921867776238, + "c4": 4.290337494220986, + "c5": 3.21775312066574, + "c6": 2.145168747110493, + "c7": 1.0725843735552465 }, "rgb": [86, 146, 138] }, @@ -51036,23 +51036,23 @@ "year": 1710, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -22.433283383919843, - "c2": 25.743418576828734, - "c3": -14.998256034703235, - "c4": -18.18030624372455, - "c5": -5.894663248486939, - "c6": 12.925766866952106, - "c7": -0.3765569380645353 + "points": { + "c1": 22.574936673518625, + "c2": -2.23190933441915, + "c3": 17.866931522043107, + "c4": 13.977420671239368, + "c5": 8.670445147556887, + "c6": -4.970837794349297, + "c7": -24.29458606860772 }, - "vertexSeeds": { - "c1": 2.4327688448564495, - "c2": 2.269695142781285, - "c3": 2.2447087430294355, - "c4": 2.3039788781414954, - "c5": 2.320031207908025, - "c6": 2.3027218271318577, - "c7": 2.2394407585703986 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188628, + "c3": 2.981969486823854, + "c4": 2.385575589459084, + "c5": 1.789181692094314, + "c6": 1.19278779472954, + "c7": 0.59639389736477 }, "rgb": [58, 15, 49] }, @@ -51063,23 +51063,23 @@ "year": 1710, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 37.53965829706891, - "c2": -1.0762599833660644, - "c3": -27.539972856251687, - "c4": 6.917626360814694, - "c5": 11.58842843209301, - "c6": 27.83835982631217, - "c7": 0.967189074487969 + "points": { + "c1": 7.479952609229798, + "c2": 13.151958493644948, + "c3": 40.86717779176588, + "c4": 32.44430753075228, + "c5": -6.310606054774219, + "c6": 45.36176147525906, + "c7": 31.46135932076183 }, - "vertexSeeds": { - "c1": 5.604108677755724, - "c2": 5.81540248538374, - "c3": 5.867170661616191, - "c4": 5.851882831950979, - "c5": 5.814900450731232, - "c6": 5.523517703271867, - "c7": 5.79780445899565 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.48821081830791, + "c3": 7.073509015256597, + "c4": 5.658807212205269, + "c5": 4.244105409153955, + "c6": 2.829403606102642, + "c7": 1.4147018030513132 }, "rgb": [238, 201, 159] }, @@ -51090,23 +51090,23 @@ "year": 1710, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 9.30553861921479, - "c2": -16.165480025834, - "c3": 4.260678666885852, - "c4": -2.0125417057608903, - "c5": 4.208626907869853, - "c6": -4.58295661573664, - "c7": 11.480774760511828 + "points": { + "c1": 2.5610925361402295, + "c2": -5.73630956626134, + "c3": 5.908160057932104, + "c4": 5.647675108610645, + "c5": 9.351775083602249, + "c6": 13.822896871018354, + "c7": 6.226432012934506 }, - "vertexSeeds": { - "c1": 3.9905194739939183, - "c2": 5.074549842625819, - "c3": 4.182315760834783, - "c4": 3.9610066726875743, - "c5": 4.503708453675584, - "c6": 4.793666962082653, - "c7": 4.46749384757185 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578362, + "c3": 6.079519186315302, + "c4": 4.863615349052241, + "c5": 3.6477115117891827, + "c6": 2.4318076745261203, + "c7": 1.2159038372630584 }, "rgb": [77, 76, 132] }, @@ -51117,23 +51117,23 @@ "year": 1710, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": -16.549899977884422, - "c2": 10.420470802580542, - "c3": -11.388326701346166, - "c4": 5.125082627348618, - "c5": 10.034119639012207, - "c6": 11.551337124206825, - "c7": 13.448783970701701 + "points": { + "c1": -15.478885723337182, + "c2": 16.64199426513836, + "c3": -2.26985749420615, + "c4": 4.223684394398916, + "c5": 5.404606516334052, + "c6": 7.977638927692212, + "c7": 14.298894224360932 }, - "vertexSeeds": { - "c1": 4.717635253030199, - "c2": 4.443745478204195, - "c3": 4.817607615897219, - "c4": 4.474380687192477, - "c5": 4.825167818905795, - "c6": 4.073303236356294, - "c7": 4.149566996189874 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.07350901525659, + "c3": 5.894590846047156, + "c4": 4.715672676837726, + "c5": 3.536754507628295, + "c6": 2.3578363384188603, + "c7": 1.1789181692094302 }, "rgb": [222, 0, 59] }, @@ -51144,23 +51144,23 @@ "year": 1710, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 22.753276015790135, - "c2": -11.568130141671697, - "c3": -9.548768724747212, - "c4": 6.095717709990353, - "c5": 4.4002140489323125, - "c6": -20.814206536361187, - "c7": 5.709827892423153 + "points": { + "c1": 10.679348970110631, + "c2": -12.12701584252525, + "c3": -15.973326140460218, + "c4": 21.349503954573002, + "c5": -24.19589599928632, + "c6": -21.900200186068258, + "c7": 1.46462974728027 }, - "vertexSeeds": { - "c1": 1.986173740295469, - "c2": 2.120505771303567, - "c3": 1.8444426199506319, - "c4": 2.2558191699236882, - "c5": 1.9284789784008007, - "c6": 2.290291560385543, - "c7": 2.2662033320347645 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266286, + "c3": 2.7739251040221897, + "c4": 2.219140083217753, + "c5": 1.6643550624133143, + "c6": 1.1095700416088756, + "c7": 0.5547850208044388 }, "rgb": [77, 76, 132] }, @@ -51171,23 +51171,23 @@ "year": 1710, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": -3.9531056937561377, - "c2": -1.3744031951135263, - "c3": -13.837437801517002, - "c4": 8.657858779064703, - "c5": -5.412551895495168, - "c6": -12.274292816937654, - "c7": -5.267258636973635 + "points": { + "c1": -18.286665171306076, + "c2": 3.4076897389583145, + "c3": 17.392319291492168, + "c4": -8.419779385650376, + "c5": -3.49957656703379, + "c6": -1.5078984288996793, + "c7": 2.2411014111300034 }, - "vertexSeeds": { - "c1": 3.779432954870959, - "c2": 3.3442506505431795, - "c3": 3.333646701039459, - "c4": 3.5276421620940632, - "c5": 3.7775947627222766, - "c6": 3.757797411842086, - "c7": 3.303064109525728 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703649, + "c4": 3.698566805362921, + "c5": 2.773925104022192, + "c6": 1.8492834026814635, + "c7": 0.9246417013407288 }, "rgb": [86, 146, 138] }, @@ -51198,23 +51198,23 @@ "year": 1710, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 8.249203087122908, - "c2": -34.30438118032492, - "c3": -13.420549905010692, - "c4": 15.395944593884032, - "c5": -27.88326511439912, - "c6": 29.003731413056514, - "c7": 2.667383733748018 + "points": { + "c1": 24.642234477898306, + "c2": -4.612274541418664, + "c3": -29.585520753883873, + "c4": 4.337035848423525, + "c5": -17.174444411064794, + "c6": -32.77033462283026, + "c7": 26.34331813240491 }, - "vertexSeeds": { - "c1": 8.592928288707926, - "c2": 9.454989455608676, - "c3": 7.588624276696007, - "c4": 7.451571699161886, - "c5": 9.426096342759143, - "c6": 9.293504506165421, - "c7": 8.682152457629737 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110958, + "c3": 11.558021266759129, + "c4": 9.246417013407306, + "c5": 6.934812760055475, + "c6": 4.623208506703653, + "c7": 2.31160425335183 }, "rgb": [77, 76, 132] }, @@ -51225,23 +51225,23 @@ "year": 1710, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -29.94983355591228, - "c2": 24.269490488138356, - "c3": -2.9773767366890524, - "c4": -22.491354629232244, - "c5": -13.570982614582018, - "c6": 16.72581774525202, - "c7": 16.877708462902614 + "points": { + "c1": 20.70434299546806, + "c2": 30.95794722395363, + "c3": 1.6518079438458813, + "c4": 7.157558965770953, + "c5": 13.279196216317949, + "c6": 14.804365380126704, + "c7": -29.589711791181816 }, - "vertexSeeds": { - "c1": 6.419720945297368, - "c2": 6.940843723115609, - "c3": 7.077965073076228, - "c4": 7.18567529988948, - "c5": 6.417343255671645, - "c6": 6.514417666414697, - "c7": 7.264439541633837 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.81830790568655, + "c3": 9.01525658807212, + "c4": 7.2122052704577015, + "c5": 5.40915395284327, + "c6": 3.6061026352288508, + "c7": 1.8030513176144194 }, "rgb": [238, 201, 159] }, @@ -51252,23 +51252,23 @@ "year": 1710, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -12.561515549297326, - "c2": 22.975131650093978, - "c3": -23.762401912874726, - "c4": -8.21949810331978, - "c5": -34.3137707819418, - "c6": 26.016429401710667, - "c7": 25.988770096386418 + "points": { + "c1": -11.221132963823894, + "c2": -17.9714911286237, + "c3": 38.18550975325108, + "c4": 9.614379492480047, + "c5": -33.65511745531171, + "c6": -38.9734340808359, + "c7": 30.406559255563238 }, - "vertexSeeds": { - "c1": 7.030614740071778, - "c2": 7.976605898227337, - "c3": 7.024342904311375, - "c4": 7.3343345208361015, - "c5": 7.575828754064174, - "c6": 8.071246865232897, - "c7": 7.529648833711367 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134534, + "c3": 9.847434119278779, + "c4": 7.877947295423023, + "c5": 5.908460471567267, + "c6": 3.9389736477115114, + "c7": 1.9694868238557557 }, "rgb": [58, 15, 49] }, @@ -51279,23 +51279,23 @@ "year": 1710, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -19.505472354117153, - "c2": -10.021429749913061, - "c3": -22.32791153382054, - "c4": -18.422370333450743, - "c5": 18.545114347671817, - "c6": -21.980266471310657, - "c7": 5.908208870408718 + "points": { + "c1": -15.574233137482338, + "c2": -14.249861161321355, + "c3": 32.890982891163475, + "c4": 17.04463043543648, + "c5": 1.4838240659430042, + "c6": -32.402879214025916, + "c7": -23.89874754350641 }, - "vertexSeeds": { - "c1": 5.050630239669581, - "c2": 5.076155760636858, - "c3": 6.824244739634225, - "c4": 5.501869430454777, - "c5": 4.911134799865678, - "c6": 5.450040615481045, - "c7": 6.520516670218813 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.15256588072122, + "c3": 8.460471567267687, + "c4": 6.768377253814148, + "c5": 5.07628294036061, + "c6": 3.3841886269070716, + "c7": 1.6920943134535382 }, "rgb": [222, 0, 59] }, @@ -51306,23 +51306,23 @@ "year": 1710, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 28.665606178193258, - "c2": -15.628291139389447, - "c3": 37.01471506416705, - "c4": -15.467962662340714, - "c5": -24.495595899523973, - "c6": -3.2191731912894284, - "c7": -24.418255378300668 + "points": { + "c1": -13.872088027980311, + "c2": 8.603438835806244, + "c3": 13.267335746067303, + "c4": 13.298453051160124, + "c5": 18.16662704036566, + "c6": 13.864914015220968, + "c7": 4.7820193290932025 }, - "vertexSeeds": { - "c1": 13.770226527016803, - "c2": 13.803006078488263, - "c3": 13.737049823473921, - "c4": 13.711921580761532, - "c5": 13.766977301173661, - "c6": 13.818714296049691, - "c7": 13.820979421316858 + "offsets": { + "c1": 23.07443365695793, + "c2": 19.778085991678317, + "c3": 16.48173832639838, + "c4": 13.18539066111877, + "c5": 9.889042995839159, + "c6": 6.592695330559549, + "c7": 3.2963476652796104 }, "rgb": [86, 146, 138] }, @@ -51333,23 +51333,23 @@ "year": 1710, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": -7.708310894254359, - "c2": 7.556413880867279, - "c3": -0.7228898500936864, - "c4": -10.270717077404239, - "c5": -3.5825656637569647, - "c6": -5.841345586763103, - "c7": 6.835128077357535 + "points": { + "c1": -2.583246780448084, + "c2": 10.345390673212098, + "c3": 14.94558684428997, + "c4": -16.79506057700856, + "c5": 2.833477577448658, + "c6": 13.595189070218307, + "c7": -2.1758062090243566 }, - "vertexSeeds": { - "c1": 3.718072033005959, - "c2": 3.8719358024769193, - "c3": 3.534364501133705, - "c4": 3.8701893060723003, - "c5": 3.5493007396123, - "c6": 3.902525769000517, - "c7": 3.7980045306265295 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.6033287101248295, + "c3": 4.6694405917706945, + "c4": 3.73555247341655, + "c5": 2.8016643550624147, + "c6": 1.867776236708279, + "c7": 0.9338881183541439 }, "rgb": [77, 76, 132] }, @@ -51360,23 +51360,23 @@ "year": 1710, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -17.11642272389286, - "c2": 17.060445035378585, - "c3": -31.80377430177245, - "c4": 13.187816133022537, - "c5": 10.138331060184122, - "c6": -29.504096211901476, - "c7": 26.77133654385107 + "points": { + "c1": -10.619413458867275, + "c2": -11.488409091507492, + "c3": -12.287664653629161, + "c4": -1.3659848958264789, + "c5": 2.5881813319411933, + "c6": 6.289346858654582, + "c7": -20.391707595421607 }, - "vertexSeeds": { - "c1": 4.630050354221617, - "c2": 4.552868375791347, - "c3": 4.6384151704953505, - "c4": 3.9542805397249863, - "c5": 4.710476999185508, - "c6": 4.612137747028056, - "c7": 4.362162349513141 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485437, + "c3": 5.663430420711971, + "c4": 4.530744336569578, + "c5": 3.398058252427185, + "c6": 2.2653721682847916, + "c7": 1.1326860841423934 }, "rgb": [58, 15, 49] }, @@ -51387,23 +51387,23 @@ "year": 1710, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -16.05511592758666, - "c2": 22.887607811454806, - "c3": 16.21960855922702, - "c4": 31.740117013860953, - "c5": 31.326591462748297, - "c6": -17.59793510287974, - "c7": -3.465923000478899 + "points": { + "c1": -7.538325698874559, + "c2": 11.0356077568579, + "c3": -25.713265154403686, + "c4": 8.350206720653937, + "c5": 13.192372986364418, + "c6": 16.72973905927718, + "c7": -16.253816083785825 }, - "vertexSeeds": { - "c1": 6.649194228326829, - "c2": 7.54495869121349, - "c3": 6.640174551379082, - "c4": 6.500282177778223, - "c5": 7.041546173119409, - "c6": 6.995767877508755, - "c7": 7.873096186824053 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490987, + "c3": 9.477577438742491, + "c4": 7.58206195099399, + "c5": 5.686546463245493, + "c6": 3.7910309754969984, + "c7": 1.895515487748503 }, "rgb": [58, 15, 49] }, @@ -51414,23 +51414,23 @@ "year": 1710, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -9.222270784410107, - "c2": 8.06539277832509, - "c3": -20.932129640250352, - "c4": 31.373254402985488, - "c5": 12.95702424085897, - "c6": -31.07830727643684, - "c7": 8.498994352032845 + "points": { + "c1": -22.410451835267892, + "c2": -35.606040367869326, + "c3": -6.453942246904269, + "c4": 9.509085230679844, + "c5": -24.20181806961563, + "c6": -24.43898143954686, + "c7": 4.540334581638348 }, - "vertexSeeds": { - "c1": 3.8551531489579607, - "c2": 4.429832899523643, - "c3": 3.867343541473118, - "c4": 3.7119295430879085, - "c5": 4.148146141082515, - "c6": 3.7244388299655373, - "c7": 4.19613947438184 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331484, + "c3": 5.362921867776238, + "c4": 4.290337494220986, + "c5": 3.21775312066574, + "c6": 2.145168747110493, + "c7": 1.0725843735552465 }, "rgb": [238, 201, 159] }, @@ -51441,23 +51441,23 @@ "year": 1710, "resistanceReported": false, "duration": 3369600, - "curveSeeds": { - "c1": 0.9054978655979369, - "c2": -7.213404008596662, - "c3": -3.234558877547558, - "c4": -2.307335322701892, - "c5": -7.630972213638218, - "c6": -6.176735420296213, - "c7": 10.679136404973624 + "points": { + "c1": -5.537515405145962, + "c2": -12.170022807123667, + "c3": 13.499647355987607, + "c4": 0.6821642086943509, + "c5": -14.240762100546444, + "c6": -7.505421228578983, + "c7": -10.93408882245539 }, - "vertexSeeds": { - "c1": 4.564981386281692, - "c2": 4.977170206832334, - "c3": 4.521470081682853, - "c4": 4.961220847027169, - "c5": 4.446178818025268, - "c6": 4.2285512877345255, - "c7": 4.13522191997872 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658807, + "c3": 6.125751271382339, + "c4": 4.9006010171058705, + "c5": 3.6754507628294015, + "c6": 2.450300508552933, + "c7": 1.2251502542764647 }, "rgb": [86, 146, 138] }, @@ -51468,23 +51468,23 @@ "year": 1710, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 16.50382129266582, - "c2": -36.16387215835433, - "c3": 24.97238756555347, - "c4": 19.685472671275797, - "c5": -21.526017564638213, - "c6": -32.324214163229556, - "c7": -36.00412501669007 + "points": { + "c1": 42.13745570431377, + "c2": 9.408625338078693, + "c3": 7.586381173798834, + "c4": -33.70481281088827, + "c5": 30.2805737715888, + "c6": 34.579453174717564, + "c7": 7.5006244051175415 }, - "vertexSeeds": { - "c1": 3.948307557510219, - "c2": 4.093024561086787, - "c3": 4.221990081999366, - "c4": 4.521081557732322, - "c5": 4.307565876280126, - "c6": 4.2918167156075855, - "c7": 4.644356740301422 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [238, 201, 159] }, @@ -51495,23 +51495,23 @@ "year": 1710, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 1.7457735519273356, - "c2": 11.383036957223801, - "c3": 8.231676681685698, - "c4": 11.909317911441548, - "c5": 17.434199370271884, - "c6": 24.72979651352921, - "c7": -35.42619534831621 + "points": { + "c1": -24.68657431035978, + "c2": -23.227232076153683, + "c3": 12.52988774222409, + "c4": -8.514204558702616, + "c5": -22.085774881848494, + "c6": 32.00406224146857, + "c7": -27.57008214909525 }, - "vertexSeeds": { - "c1": 3.179791460336692, - "c2": 3.1636015542494516, - "c3": 3.2103446447804993, - "c4": 3.3631506237635542, - "c5": 3.2866690927907554, - "c6": 3.304472414726516, - "c7": 3.179869976705009 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159502, + "c3": 4.114655570966254, + "c4": 3.291724456773004, + "c5": 2.468793342579755, + "c6": 1.6458622283865063, + "c7": 0.8229311141932572 }, "rgb": [86, 146, 138] }, @@ -51522,23 +51522,23 @@ "year": 1710, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 8.14946868446646, - "c2": -16.919122261056092, - "c3": 0.9399793207091385, - "c4": 13.756581465955744, - "c5": -15.47351486146109, - "c6": 24.00506733101204, - "c7": 13.591495783507856 + "points": { + "c1": -13.07155730465638, + "c2": 13.326029385249438, + "c3": 11.089348000531228, + "c4": 24.459082162181776, + "c5": 19.265677963427155, + "c6": 3.517184173334485, + "c7": -9.089290025504685 }, - "vertexSeeds": { - "c1": 2.3583793312710877, - "c2": 2.2513814516290935, - "c3": 2.44419214421584, - "c4": 2.1809392900841647, - "c5": 2.42188415991989, - "c6": 2.2001301863687086, - "c7": 2.2616585588934344 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.550624133148406, + "c3": 2.9588534442903356, + "c4": 2.367082755432269, + "c5": 1.775312066574203, + "c6": 1.1835413777161368, + "c7": 0.5917706888580664 }, "rgb": [222, 0, 59] }, @@ -51549,23 +51549,23 @@ "year": 1710, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": -0.6198467514518189, - "c2": -13.355663279112463, - "c3": -7.60238398724613, - "c4": 1.364603768324617, - "c5": -16.12695136250935, - "c6": 2.798327650682335, - "c7": 15.27291439140923 + "points": { + "c1": -14.846413813444414, + "c2": -11.465619400600065, + "c3": 5.638437950712927, + "c4": 5.793845301149062, + "c5": -15.854235505208724, + "c6": 4.3035482423515035, + "c7": 5.377445166957809 }, - "vertexSeeds": { - "c1": 2.8808407550217403, - "c2": 2.7065366928963632, - "c3": 2.4775625344404704, - "c4": 2.474823742236064, - "c5": 2.59550995836097, - "c6": 2.676224627825697, - "c7": 2.8349643302966334 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033289, + "c3": 3.467406380027738, + "c4": 2.773925104022193, + "c5": 2.0804438280166417, + "c6": 1.3869625520110964, + "c7": 0.6934812760055511 }, "rgb": [238, 201, 159] }, @@ -51576,23 +51576,23 @@ "year": 1710, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 0.6880706246582768, - "c2": 2.17236337222041, - "c3": -10.612495854356562, - "c4": -19.55522832713499, - "c5": -19.732519169043417, - "c6": -14.873260093149835, - "c7": -0.5310487304232758 + "points": { + "c1": 15.505836900680997, + "c2": 5.258958790118509, + "c3": -17.97369342821583, + "c4": 1.9282092287365948, + "c5": -5.872639000633029, + "c6": 2.1208786659310874, + "c7": -16.370226117648727 }, - "vertexSeeds": { - "c1": 3.2334205676585075, - "c2": 3.138269267675599, - "c3": 3.545921287133856, - "c4": 3.520722153693352, - "c5": 3.4357708618593703, - "c6": 3.509985818439359, - "c7": 3.3633227481708667 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441057, + "c3": 4.276467868700877, + "c4": 3.4211742949607045, + "c5": 2.565880721220525, + "c6": 1.7105871474803522, + "c7": 0.8552935737401728 }, "rgb": [58, 15, 49] }, @@ -51603,23 +51603,23 @@ "year": 1711, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -42.511122884176956, - "c2": -0.2842611379271176, - "c3": -43.43755579055012, - "c4": 11.835926302574912, - "c5": -13.747729319725941, - "c6": -15.624336390476799, - "c7": -36.64419124924653 + "points": { + "c1": -21.71966398878106, + "c2": -39.92268444934272, + "c3": 24.379138713041108, + "c4": 12.082979317988013, + "c5": 1.2583133784661626, + "c6": 35.098683178333836, + "c7": -8.183571638126061 }, - "vertexSeeds": { - "c1": 2.8224204238423174, - "c2": 2.703957515797309, - "c3": 2.6054485952369335, - "c4": 2.9717917228406288, - "c5": 2.860970654939429, - "c6": 2.6636927344629915, - "c7": 2.868392111728105 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194173, + "c3": 3.559870550161815, + "c4": 2.8478964401294506, + "c5": 2.1359223300970864, + "c6": 1.423948220064722, + "c7": 0.7119741100323643 }, "rgb": [86, 146, 138] }, @@ -51630,23 +51630,23 @@ "year": 1711, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 20.51690272249867, - "c2": 21.990542162429605, - "c3": 19.924994582830664, - "c4": -4.023473423311707, - "c5": -21.51935980643899, - "c6": -14.928667404069401, - "c7": -14.969049669734648 + "points": { + "c1": -3.421580685980004, + "c2": -7.292946442514975, + "c3": 29.694730201076638, + "c4": -44.56322658890987, + "c5": 10.288268589850325, + "c6": 36.72776641826789, + "c7": -17.422043000564898 }, - "vertexSeeds": { - "c1": 9.89615515858944, - "c2": 9.758575482938294, - "c3": 10.094163203230458, - "c4": 11.415543954931344, - "c5": 10.777865365818847, - "c6": 5.460128110533009, - "c7": 8.209127083848106 + "offsets": { + "c1": 20.258899676375407, + "c2": 17.364771151178925, + "c3": 14.470642625982434, + "c4": 11.576514100785946, + "c5": 8.682385575589459, + "c6": 5.788257050392973, + "c7": 2.8941285251964866 }, "rgb": [86, 146, 138] }, @@ -51657,23 +51657,23 @@ "year": 1711, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -10.868306253125759, - "c2": -21.619795046762142, - "c3": 46.2927135553988, - "c4": -41.6641502864946, - "c5": 40.45476516120568, - "c6": -24.676417787674975, - "c7": 19.373670754667508 + "points": { + "c1": 13.377148941570091, + "c2": -50.848074950510984, + "c3": 1.580069754035847, + "c4": -16.853376562002893, + "c5": -27.481153977117522, + "c6": -50.46060280698017, + "c7": -31.41834418010459 }, - "vertexSeeds": { - "c1": 8.827978132953419, - "c2": 9.04758223914257, - "c3": 8.954811565925334, - "c4": 8.007043955741452, - "c5": 7.901794780807522, - "c6": 7.761967374649288, - "c7": 8.511531327372227 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076285, + "c3": 12.112806287563572, + "c4": 9.69024503005086, + "c5": 7.267683772538146, + "c6": 4.845122515025426, + "c7": 2.422561257512713 }, "rgb": [238, 201, 159] }, @@ -51684,23 +51684,23 @@ "year": 1710, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -28.289305509902277, - "c2": -23.887747464207145, - "c3": 22.51139029644441, - "c4": 22.822984670062468, - "c5": 11.7392627217192, - "c6": -27.189106107307442, - "c7": -28.627662538974505 + "points": { + "c1": -29.33760001416068, + "c2": -11.80990601319202, + "c3": -14.765534242272764, + "c4": 32.818009010286985, + "c5": -20.010331987875844, + "c6": 31.107909673323746, + "c7": 29.895797242587335 }, - "vertexSeeds": { - "c1": 3.0698813826251654, - "c2": 2.6471921874051425, - "c3": 2.5295808978166576, - "c4": 2.6066757816647477, - "c5": 2.934019762332826, - "c6": 2.672094217723498, - "c7": 2.4986751990386367 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636616, + "c3": 3.8141470180305115, + "c4": 3.0513176144244105, + "c5": 2.288488210818309, + "c6": 1.5256588072122044, + "c7": 0.7628294036061031 }, "rgb": [86, 146, 138] }, @@ -51711,23 +51711,23 @@ "year": 1710, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 27.369590210741396, - "c2": -21.09419443217037, - "c3": 26.953798852864818, - "c4": -24.666563877787812, - "c5": -0.5130642232799225, - "c6": 4.254272555826031, - "c7": -25.000314533848595 + "points": { + "c1": 31.081560881748118, + "c2": -31.9226274694691, + "c3": -6.638749192118841, + "c4": -3.960021545775202, + "c5": 32.66448458919008, + "c6": 27.584619807490924, + "c7": -3.4711955518503714 }, - "vertexSeeds": { - "c1": 5.0719227118104655, - "c2": 5.258839477234617, - "c3": 4.9147241523289855, - "c4": 5.376439001476395, - "c5": 4.743502534689592, - "c6": 4.901763916906765, - "c7": 5.747006095275343 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256592, + "c4": 5.6588072122052715, + "c5": 4.244105409153952, + "c6": 2.8294036061026313, + "c7": 1.4147018030513203 }, "rgb": [86, 146, 138] }, @@ -51738,23 +51738,23 @@ "year": 1710, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 28.681443259931257, - "c2": -23.043263384912123, - "c3": 39.46564360007717, - "c4": 5.772781150767294, - "c5": 36.84692132768734, - "c6": -33.320514815568366, - "c7": -23.88235180182365 + "points": { + "c1": -30.488878431227242, + "c2": -23.483552698821175, + "c3": 28.860428641808284, + "c4": 29.66191593929382, + "c5": 21.672422137384473, + "c6": -4.340323802373959, + "c7": 0.1443821270509602 }, - "vertexSeeds": { - "c1": 9.033604405719181, - "c2": 8.959448370996945, - "c3": 9.050356489532279, - "c4": 9.00587560581452, - "c5": 9.037956505106322, - "c6": 9.132726280684482, - "c7": 8.937227087202052 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984743, + "c3": 10.910772075820619, + "c4": 8.728617660656495, + "c5": 6.5464632454923715, + "c6": 4.364308830328247, + "c7": 2.1821544151641237 }, "rgb": [58, 15, 49] }, @@ -51765,23 +51765,23 @@ "year": 1710, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 14.274192581858593, - "c2": 27.6601379134232, - "c3": -26.418565704939, - "c4": 20.523987181004465, - "c5": 18.196038361570757, - "c6": 14.315996487947295, - "c7": 16.920074002752052 + "points": { + "c1": -16.42426370133686, + "c2": -15.680902297814963, + "c3": -0.887552851842095, + "c4": 31.812060660398473, + "c5": 5.043426979185156, + "c6": -12.590442872921411, + "c7": -33.52310457544457 }, - "vertexSeeds": { - "c1": 9.79817067203545, - "c2": 9.676862290431192, - "c3": 9.09293312705735, - "c4": 9.23688635164786, - "c5": 9.826391326702504, - "c6": 9.991822431220355, - "c7": 9.573761073875687 + "offsets": { + "c1": 16.73139158576052, + "c2": 14.341192787794725, + "c3": 11.950993989828945, + "c4": 9.56079519186315, + "c5": 7.17059639389737, + "c6": 4.780397595931575, + "c7": 2.3901987979657804 }, "rgb": [86, 146, 138] }, @@ -51792,23 +51792,23 @@ "year": 1710, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 12.718849455939758, - "c2": 15.776387119892465, - "c3": -10.42785354145725, - "c4": -7.0927439897720355, - "c5": 3.9210022260017077, - "c6": -29.5834002096625, - "c7": -5.053745639292078 + "points": { + "c1": -29.733474831120336, + "c2": 4.743657657935351, + "c3": 15.709595891965073, + "c4": -0.928531471095674, + "c5": -3.512355431104588, + "c6": -13.154570736496378, + "c7": 1.868130218904227 }, - "vertexSeeds": { - "c1": 2.6359824573399595, - "c2": 2.627137804566983, - "c3": 2.6457180860853633, - "c4": 2.6382605724736434, - "c5": 2.453274083306431, - "c6": 2.9019537335896546, - "c7": 2.4562587529396103 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073512, + "c3": 3.4905224225612574, + "c4": 2.7924179380490086, + "c5": 2.0943134535367545, + "c6": 1.3962089690245054, + "c7": 0.6981044845122515 }, "rgb": [238, 201, 159] }, @@ -51819,23 +51819,23 @@ "year": 1710, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -12.860808212389689, - "c2": 7.081592443243352, - "c3": -9.390913018259463, - "c4": -12.559768486359108, - "c5": -18.613392779812767, - "c6": -10.110396880496348, - "c7": -0.385045538213177 + "points": { + "c1": -20.40528442510273, + "c2": -5.7450459630512185, + "c3": 4.2491656007273235, + "c4": -3.5468179096474124, + "c5": 22.315655945444675, + "c6": -18.021889768177097, + "c7": -18.067095547769174 }, - "vertexSeeds": { - "c1": 7.329111131253119, - "c2": 7.090581621374357, - "c3": 7.148859738533789, - "c4": 7.983181583754155, - "c5": 7.9615927758666345, - "c6": 7.35587862076481, - "c7": 7.936271371309325 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571429, + "c3": 9.523809523809524, + "c4": 7.619047619047619, + "c5": 5.714285714285714, + "c6": 3.8095238095238093, + "c7": 1.9047619047619047 }, "rgb": [222, 0, 59] }, @@ -51846,23 +51846,23 @@ "year": 1711, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -27.177385082299335, - "c2": 13.528348040434551, - "c3": -26.010432000254276, - "c4": 22.391539027414474, - "c5": -5.732727268538955, - "c6": 2.4940709233672393, - "c7": -15.726732330596729 + "points": { + "c1": -22.459786170262852, + "c2": 23.543101767395513, + "c3": 6.202528513844527, + "c4": 15.571999792749274, + "c5": -10.946989976192807, + "c6": 7.794351107399649, + "c7": -29.27567995743835 }, - "vertexSeeds": { - "c1": 2.537888860772091, - "c2": 2.546959415991797, - "c3": 2.491246037039196, - "c4": 2.085752771018319, - "c5": 2.1400350874516163, - "c6": 2.3764511846030505, - "c7": 2.357248627251296 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.7447988904299576, + "c3": 3.120665742024966, + "c4": 2.4965325936199725, + "c5": 1.8723994452149788, + "c6": 1.2482662968099876, + "c7": 0.6241331484049938 }, "rgb": [58, 15, 49] }, @@ -51873,23 +51873,23 @@ "year": 1710, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -3.6410112317210057, - "c2": -8.78556531270597, - "c3": -19.889549103423597, - "c4": 11.902006193307383, - "c5": -10.255811145656699, - "c6": 1.9552263618159387, - "c7": 1.512819111466257 + "points": { + "c1": 7.5500512916110765, + "c2": 2.70363842451836, + "c3": -12.7806189371207, + "c4": -9.120187002878094, + "c5": -4.791651048996606, + "c6": 20.421918299206087, + "c7": 1.376616500118967 }, - "vertexSeeds": { - "c1": 3.0893782383419692, - "c2": 3.0893782383419692, - "c3": 3.0893782383419692, - "c4": 3.0893782383419692, - "c5": 3.0893782383419692, - "c6": 3.0893782383419692, - "c7": 3.0893782383419692 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -51900,23 +51900,23 @@ "year": 1711, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -8.06364616220435, - "c2": 1.3480096442896041, - "c3": -0.6249741840073, - "c4": -7.918336772919584, - "c5": 1.3098342208290887, - "c6": 7.327948364079802, - "c7": -10.934116922218 + "points": { + "c1": -1.3570086675605637, + "c2": -38.25878175214951, + "c3": -36.84610818392224, + "c4": 24.59787159372955, + "c5": 20.047067741552056, + "c6": -7.587598963255445, + "c7": 26.6910139748678 }, - "vertexSeeds": { - "c1": 5.298371208602331, - "c2": 5.090086779100143, - "c3": 5.52742341838944, - "c4": 5.0761980445481285, - "c5": 5.280925229374177, - "c6": 5.50381755137165, - "c7": 5.062875554706267 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704575, + "c3": 6.72676837725381, + "c4": 5.3814147018030445, + "c5": 4.03606102635228, + "c6": 2.69070735090153, + "c7": 1.345353675450765 }, "rgb": [86, 146, 138] }, @@ -51927,23 +51927,23 @@ "year": 1711, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -12.212561733456496, - "c2": -27.02165509599051, - "c3": -32.06181356268068, - "c4": -29.763849616986697, - "c5": -27.966716190228603, - "c6": 6.734785366438288, - "c7": -16.93062455832378 + "points": { + "c1": 8.33015565625525, + "c2": 14.365097107202054, + "c3": -24.171436703483515, + "c4": 16.150571178411738, + "c5": -12.564139410994677, + "c6": 15.698062543866612, + "c7": 33.443982492121876 }, - "vertexSeeds": { - "c1": 6.985148868478629, - "c2": 6.407636511932866, - "c3": 6.533866839630186, - "c4": 6.7513941898486065, - "c5": 6.63878537152685, - "c6": 6.847315393787862, - "c7": 6.122688211026123 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.3564493758668497, + "c7": 1.6782246879334186 }, "rgb": [86, 146, 138] }, @@ -51954,23 +51954,23 @@ "year": 1711, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 4.336476290470209, - "c2": 10.271002831074256, - "c3": 23.9687529690083, - "c4": -11.168589076214882, - "c5": -11.898733725884732, - "c6": 19.941912003202965, - "c7": -11.200074964946282 + "points": { + "c1": 21.806768119573007, + "c2": -26.64382720037472, + "c3": 16.033087955102985, + "c4": 26.422485466437244, + "c5": 26.66724821923875, + "c6": 10.059356577728217, + "c7": -33.172648853792964 }, - "vertexSeeds": { - "c1": 4.451318861511547, - "c2": 4.198591338577136, - "c3": 4.120668501774077, - "c4": 3.963523238818394, - "c5": 4.287743439361834, - "c6": 4.132548595689562, - "c7": 4.404726471661543 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [222, 0, 59] }, @@ -51981,23 +51981,23 @@ "year": 1711, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 22.449254780294172, - "c2": -15.636157665563141, - "c3": -4.612619297853264, - "c4": -11.69167501405169, - "c5": 5.001741644351643, - "c6": 25.24113375012109, - "c7": -17.230416297100504 + "points": { + "c1": 10.584978321668547, + "c2": -13.272717339964025, + "c3": -4.007200852931323, + "c4": -7.684335548828269, + "c5": -16.913149078489575, + "c6": 16.909395002828052, + "c7": 11.967196185019926 }, - "vertexSeeds": { - "c1": 7.151246091030826, - "c2": 7.656007211394613, - "c3": 7.3480888997173155, - "c4": 7.223383283273512, - "c5": 7.443586666318278, - "c6": 6.958126345095405, - "c7": 6.979152329647455 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289876, + "c3": 9.361997226074896, + "c4": 7.489597780859917, + "c5": 5.617198335644938, + "c6": 3.7447988904299585, + "c7": 1.8723994452149793 }, "rgb": [238, 201, 159] }, @@ -52008,23 +52008,23 @@ "year": 1710, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 24.252080549424612, - "c2": 12.98005798171441, - "c3": 1.5871990967731477, - "c4": 4.887726464236941, - "c5": -13.415301202846502, - "c6": -2.9629400765148333, - "c7": -20.59280893727713 + "points": { + "c1": -8.535990011121207, + "c2": 14.705442543541011, + "c3": 24.533334914034086, + "c4": 4.857183116012106, + "c5": -22.278534130847962, + "c6": 14.784912938303428, + "c7": 10.581148404605045 }, - "vertexSeeds": { - "c1": 7.4831805336244255, - "c2": 7.960529328919247, - "c3": 7.257452231418494, - "c4": 7.297109452144999, - "c5": 7.512833877153996, - "c6": 8.222172322978906, - "c7": 7.268264323541872 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214985, + "c3": 9.893666204345815, + "c4": 7.914932963476657, + "c5": 5.936199722607485, + "c6": 3.9574664817383285, + "c7": 1.9787332408691707 }, "rgb": [58, 15, 49] }, @@ -52035,23 +52035,23 @@ "year": 1711, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 24.50417139022398, - "c2": -8.290858053070753, - "c3": -22.43263775923215, - "c4": 3.9176002563605294, - "c5": 14.27930241953161, - "c6": -24.072358919264197, - "c7": -22.070797568276255 + "points": { + "c1": 21.49755091804223, + "c2": 21.954144172328803, + "c3": 16.800092355619974, + "c4": 11.927210568527968, + "c5": -5.37187932331133, + "c6": -15.82730689235428, + "c7": -27.827551693651394 }, - "vertexSeeds": { - "c1": 6.382515631150866, - "c2": 6.183673106214628, - "c3": 7.128030680175974, - "c4": 6.263025345750167, - "c5": 6.346538479933018, - "c6": 6.943375261643524, - "c7": 7.197497420555156 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887658, + "c3": 9.130836800739717, + "c4": 7.304669440591766, + "c5": 5.478502080443825, + "c6": 3.652334720295883, + "c7": 1.8261673601479416 }, "rgb": [86, 146, 138] }, @@ -52062,23 +52062,23 @@ "year": 1711, "resistanceReported": true, "duration": 24969600, - "curveSeeds": { - "c1": 13.189116284016244, - "c2": 14.068436831368423, - "c3": 27.563674978942174, - "c4": 29.252399273975726, - "c5": -28.795347205713632, - "c6": 29.488071391659176, - "c7": -23.2773927010579 + "points": { + "c1": 2.735513914905276, + "c2": -8.468531595627137, + "c3": -30.403939455533166, + "c4": -8.390791355921777, + "c5": 37.23939834392087, + "c6": 32.81030320986255, + "c7": -20.816929375035656 }, - "vertexSeeds": { - "c1": 7.132329121957324, - "c2": 7.4441037735424676, - "c3": 7.1333483477311495, - "c4": 7.368080835941886, - "c5": 6.799149872957063, - "c6": 6.699059802480746, - "c7": 7.081133255030123 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.76282940360611, + "c3": 8.969024503005084, + "c4": 7.175219602404073, + "c5": 5.381414701803048, + "c6": 3.5876098012020363, + "c7": 1.7938049006010248 }, "rgb": [77, 76, 132] }, @@ -52089,23 +52089,23 @@ "year": 1711, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -19.850788786335386, - "c2": 26.856093976687315, - "c3": -9.236510150645579, - "c4": -1.3467201376515554, - "c5": 8.783448340002334, - "c6": 23.897887610258966, - "c7": 3.8849623358709273 + "points": { + "c1": -28.801581574904493, + "c2": 24.585444841030426, + "c3": 7.846096566292179, + "c4": -16.958099643256926, + "c5": -28.4754949831528, + "c6": 9.759941126955201, + "c7": -6.486832017635905 }, - "vertexSeeds": { - "c1": 6.770153526224775, - "c2": 7.592050439164594, - "c3": 6.4452417574081355, - "c4": 6.3704569376749784, - "c5": 6.25377742611126, - "c6": 7.501808588361154, - "c7": 7.7021652458434 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008326, + "c3": 9.200184928340267, + "c4": 7.360147942672217, + "c5": 5.520110957004168, + "c6": 3.6800739713361086, + "c7": 1.840036985668059 }, "rgb": [238, 201, 159] }, @@ -52116,23 +52116,23 @@ "year": 1711, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -25.490848473581387, - "c2": -2.7384876222147767, - "c3": 1.273063067456917, - "c4": -25.56922915010926, - "c5": 26.339347602907495, - "c6": -26.458873441649537, - "c7": -4.193329327992547 + "points": { + "c1": 14.12448896846503, + "c2": 27.432132922960463, + "c3": 21.775651913274174, + "c4": 20.36918774165644, + "c5": 8.068636650929236, + "c6": 15.146303623625272, + "c7": 8.142578134341257 }, - "vertexSeeds": { - "c1": 7.338050001892192, - "c2": 7.511707087243709, - "c3": 7.9160945723995795, - "c4": 7.476807736852978, - "c5": 7.718706265275341, - "c6": 7.949894805027229, - "c7": 7.7019698050278915 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651876, + "c3": 9.570041608876567, + "c4": 7.656033287101246, + "c5": 5.742024965325938, + "c6": 3.8280166435506295, + "c7": 1.9140083217753214 }, "rgb": [238, 201, 159] }, @@ -52143,23 +52143,23 @@ "year": 1711, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 8.40846735066021, - "c2": -22.07354550379311, - "c3": 4.260738278019424, - "c4": -20.148924927307654, - "c5": -20.232764715727242, - "c6": -14.288202515373312, - "c7": 25.122669204238925 + "points": { + "c1": -8.561385772308196, + "c2": 7.829084574735781, + "c3": 11.832214765229246, + "c4": -8.370574244251241, + "c5": 8.170351874159891, + "c6": -0.5103920880221047, + "c7": 18.15931144831466 }, - "vertexSeeds": { - "c1": 5.703507453879658, - "c2": 5.741404682800429, - "c3": 5.446827919768124, - "c4": 5.804534917519652, - "c5": 5.520244514506819, - "c6": 5.601230218710473, - "c7": 5.713204948187699 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388346, + "c3": 7.11974110032363, + "c4": 5.695792880258901, + "c5": 4.271844660194173, + "c6": 2.847896440129444, + "c7": 1.4239482200647287 }, "rgb": [238, 201, 159] }, @@ -52170,23 +52170,23 @@ "year": 1711, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 9.317552032585652, - "c2": -35.6232093541994, - "c3": 7.654330938217413, - "c4": -26.64186351320663, - "c5": -30.454459320760225, - "c6": -27.025890210407773, - "c7": 27.83339401128577 + "points": { + "c1": -37.22152425385664, + "c2": -37.00015565660575, + "c3": 20.59069808630924, + "c4": 20.360900534593263, + "c5": -6.852854190467884, + "c6": -13.494996876647104, + "c7": 11.542490694358989 }, - "vertexSeeds": { - "c1": 7.349182305625396, - "c2": 7.156354306014393, - "c3": 7.484452737289069, - "c4": 7.94830825289427, - "c5": 7.1860288294077534, - "c6": 6.870548999764438, - "c7": 6.917609946769143 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531207, + "c3": 9.500693481276006, + "c4": 7.600554785020805, + "c5": 5.7004160887656035, + "c6": 3.8002773925104023, + "c7": 1.9001386962552012 }, "rgb": [58, 15, 49] }, @@ -52197,23 +52197,23 @@ "year": 1711, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 3.940615164448314, - "c2": -4.072073678033032, - "c3": 12.561557170858109, - "c4": 3.1272106656978735, - "c5": 16.08280747237191, - "c6": -1.571751452696013, - "c7": -14.7078619689019 + "points": { + "c1": 27.22001189626497, + "c2": -26.83148272625492, + "c3": 17.07039039985615, + "c4": 17.15683401532663, + "c5": -23.77566864529367, + "c6": 1.6491547883169808, + "c7": 4.040179071403571 }, - "vertexSeeds": { - "c1": 5.07668574540072, - "c2": 5.061921204895857, - "c3": 4.670506398509453, - "c4": 4.625581634745325, - "c5": 5.196203889281355, - "c6": 4.67877446370991, - "c7": 5.22276779188282 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -52224,23 +52224,23 @@ "year": 1711, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 16.71002836021391, - "c2": 27.523538076191528, - "c3": 6.5615671591187805, - "c4": 22.192646966464785, - "c5": -8.84625827854861, - "c6": -26.207170028746187, - "c7": -19.9226393573679 + "points": { + "c1": 9.26039213998068, + "c2": -8.383909567016389, + "c3": 2.758855553946127, + "c4": -32.411378549149816, + "c5": 25.82911218134182, + "c6": -28.42530227443682, + "c7": 18.578858951466763 }, - "vertexSeeds": { - "c1": 6.944096604090055, - "c2": 6.599767998615263, - "c3": 6.576643288574163, - "c4": 6.523464445930485, - "c5": 6.952064981912403, - "c6": 7.054388429075068, - "c7": 6.669737240184783 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123435, + "c3": 8.691631992602872, + "c4": 6.953305594082295, + "c5": 5.2149791955617175, + "c6": 3.4766527970411407, + "c7": 1.7383263985205772 }, "rgb": [222, 0, 59] }, @@ -52251,23 +52251,23 @@ "year": 1711, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -13.948391751511018, - "c2": 4.921415814364174, - "c3": -14.596111633288725, - "c4": 15.07010104666849, - "c5": 11.498874472457317, - "c6": -20.870283470824994, - "c7": 8.464252973744067 + "points": { + "c1": 24.266037066140946, + "c2": 13.980351394383554, + "c3": 18.05888652472715, + "c4": -16.684387820753038, + "c5": 1.0789180022202025, + "c6": -5.424867546572873, + "c7": -12.402774934884793 }, - "vertexSeeds": { - "c1": 4.192745580203199, - "c2": 4.050788076649777, - "c3": 3.795502435338729, - "c4": 4.078912142486408, - "c5": 3.9389601107705676, - "c6": 3.8344631141683565, - "c7": 3.859172129687391 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808601, + "c3": 5.062413314840502, + "c4": 4.049930651872403, + "c5": 3.0374479889043045, + "c6": 2.0249653259361975, + "c7": 1.0124826629680987 }, "rgb": [86, 146, 138] }, @@ -52278,23 +52278,23 @@ "year": 1711, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 22.97178975828973, - "c2": -12.443666617265574, - "c3": 6.152203892817113, - "c4": 16.117603821648203, - "c5": -28.05743805756446, - "c6": 17.582819291790287, - "c7": -9.356304203638754 + "points": { + "c1": -18.630453185472142, + "c2": -24.6700739511217, + "c3": -11.709730017328397, + "c4": -27.546992965512093, + "c5": 7.063504278116582, + "c6": -18.957720214418764, + "c7": 9.829805166504215 }, - "vertexSeeds": { - "c1": 11.53423650123154, - "c2": 10.984539852458306, - "c3": 11.659885552603392, - "c4": 11.505930236621, - "c5": 10.780278471695853, - "c6": 11.094829282690405, - "c7": 11.311084486911968 + "offsets": { + "c1": 19.48220064724919, + "c2": 16.699029126213585, + "c3": 13.91585760517798, + "c4": 11.132686084142419, + "c5": 8.349514563106814, + "c6": 5.5663430420712094, + "c7": 2.7831715210356047 }, "rgb": [58, 15, 49] }, @@ -52305,23 +52305,23 @@ "year": 1711, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 29.3313220651753, - "c2": 18.063587211117316, - "c3": -40.43283880336251, - "c4": -33.80971382881673, - "c5": -11.759082181850527, - "c6": 30.341531479151783, - "c7": 43.40857145839904 + "points": { + "c1": -25.37714371697737, + "c2": -5.171208132128157, + "c3": -25.02203330907655, + "c4": 14.915880859560687, + "c5": 37.61574244342698, + "c6": 38.61158987893775, + "c7": 27.77925396253373 }, - "vertexSeeds": { - "c1": 3.2209133851670644, - "c2": 3.7347486500847027, - "c3": 3.1549149395768645, - "c4": 3.1222111425978705, - "c5": 3.7717592456004896, - "c6": 3.7455961645793288, - "c7": 3.205618678024618 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.54785020804438, + "c3": 4.623208506703652, + "c4": 3.69856680536292, + "c5": 2.7739251040221924, + "c6": 1.84928340268146, + "c7": 0.9246417013407277 }, "rgb": [58, 15, 49] }, @@ -52332,23 +52332,23 @@ "year": 1711, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 17.785228980597168, - "c2": -4.690608906671539, - "c3": 19.907614450706845, - "c4": 8.239791270618465, - "c5": 3.408863313495356, - "c6": -17.76172186790323, - "c7": 19.44609332277716 + "points": { + "c1": 21.76177924216487, + "c2": 4.365997109564148, + "c3": 24.235247324105437, + "c4": -8.706922483250775, + "c5": 12.563093618135845, + "c6": -6.869590058202533, + "c7": -16.63914405156936 }, - "vertexSeeds": { - "c1": 3.9063099387638496, - "c2": 3.654883810233675, - "c3": 3.8055032685551593, - "c4": 4.308423457730155, - "c5": 3.5528903208680656, - "c6": 3.5404578893127217, - "c7": 3.8071539046254217 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.2011095700416075, + "c4": 4.160887656033288, + "c5": 3.1206657420249635, + "c6": 2.080443828016644, + "c7": 1.0402219140083242 }, "rgb": [238, 201, 159] }, @@ -52359,23 +52359,23 @@ "year": 1711, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 22.75636889380175, - "c2": -11.334711720082701, - "c3": -0.8084410113679148, - "c4": 23.4665341288214, - "c5": -11.235536780061413, - "c6": -30.17349121035418, - "c7": 23.1584648075927 + "points": { + "c1": 14.873493060681135, + "c2": 2.712014697382614, + "c3": 10.182298479534452, + "c4": -29.989324330760425, + "c5": -10.656302673830865, + "c6": -11.688697562868672, + "c7": -1.2138520845296128 }, - "vertexSeeds": { - "c1": 6.634976781877633, - "c2": 6.115417043673596, - "c3": 5.868163851720991, - "c4": 6.32414195379215, - "c5": 5.853332713274098, - "c6": 6.617228702267509, - "c7": 6.207962794005802 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.9981507165973165, + "c4": 6.3985205732778585, + "c5": 4.798890429958387, + "c6": 3.1992602866389293, + "c7": 1.599630143319471 }, "rgb": [86, 146, 138] }, @@ -52386,23 +52386,23 @@ "year": 1711, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 21.90304733436807, - "c2": -7.349817308197167, - "c3": 17.9682145093101, - "c4": 10.600679334790854, - "c5": -19.439078555304786, - "c6": -8.995627498013612, - "c7": 3.664786829960285 + "points": { + "c1": 11.304647533513538, + "c2": 23.97397916812485, + "c3": 8.858410399651348, + "c4": 18.493725638811085, + "c5": -14.638433459852981, + "c6": 0.7603553563872616, + "c7": 17.895046139733196 }, - "vertexSeeds": { - "c1": 1.2011595144470237, - "c2": 1.0728528095161498, - "c3": 1.0277249817406162, - "c4": 1.1349271376086465, - "c5": 1.1809754416812817, - "c6": 1.0725006152671916, - "c7": 1.193619661738003 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.775312066574202, + "c3": 1.4794267221451687, + "c4": 1.1835413777161345, + "c5": 0.8876560332871015, + "c6": 0.5917706888580673, + "c7": 0.2958853444290332 }, "rgb": [238, 201, 159] }, @@ -52413,23 +52413,23 @@ "year": 1711, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 4.683150417856027, - "c2": -26.44751071490374, - "c3": -18.40019550822167, - "c4": 17.776526075461497, - "c5": 8.873269077890548, - "c6": 10.344590175708191, - "c7": 17.25142741043014 + "points": { + "c1": -11.170734732718348, + "c2": -26.969790421402358, + "c3": 19.776639282599042, + "c4": 14.232033634143306, + "c5": 26.690674340700326, + "c6": 29.064563538171257, + "c7": -2.6954372539827673 }, - "vertexSeeds": { - "c1": 4.919512580870786, - "c2": 5.008857376715527, - "c3": 5.248125280573752, - "c4": 5.036283598766585, - "c5": 5.0063691304033195, - "c6": 5.488658184243481, - "c7": 5.5446069696491955 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543691, + "c3": 6.634304207119744, + "c4": 5.3074433656957964, + "c5": 3.980582524271849, + "c6": 2.6537216828479018, + "c7": 1.3268608414239476 }, "rgb": [222, 0, 59] }, @@ -52440,23 +52440,23 @@ "year": 1711, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": -8.195698980082138, - "c2": -4.514440904767806, - "c3": 7.7362948919595524, - "c4": -5.279064677827483, - "c5": 2.7013798787156134, - "c6": 6.014716504749373, - "c7": 7.109365758466701 + "points": { + "c1": -10.030613201064494, + "c2": 5.917966886895883, + "c3": -1.7678113253524224, + "c4": -15.471450768335645, + "c5": -4.275591935629796, + "c6": 12.561175286323905, + "c7": 2.9084041240299143 }, - "vertexSeeds": { - "c1": 3.9562612357978995, - "c2": 4.168813564365623, - "c3": 3.999896343991545, - "c4": 3.6858337138844512, - "c5": 4.206780803908222, - "c6": 3.922348268422061, - "c7": 4.524353367862768 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [238, 201, 159] }, @@ -52467,23 +52467,23 @@ "year": 1711, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -9.075944091092758, - "c2": -23.66453129807433, - "c3": 14.134186940913771, - "c4": 3.254506218956049, - "c5": 10.643983792989701, - "c6": 3.40996996456602, - "c7": 20.2470732352265 + "points": { + "c1": 25.655355642448967, + "c2": -17.41569240977476, + "c3": -24.421969353412916, + "c4": 6.264679566108434, + "c5": 27.334369593404233, + "c6": 3.010930301247555, + "c7": -5.972187246337157 }, - "vertexSeeds": { - "c1": 3.9119296233586134, - "c2": 3.9141674830798725, - "c3": 3.902875296158283, - "c4": 3.90245769750694, - "c5": 3.972947100324792, - "c6": 3.9594280426917345, - "c7": 3.945861600069247 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325935, + "c3": 4.78502080443828, + "c4": 3.8280166435506238, + "c5": 2.8710124826629677, + "c6": 1.9140083217753119, + "c7": 0.9570041608876559 }, "rgb": [86, 146, 138] }, @@ -52494,23 +52494,23 @@ "year": 1711, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 25.264730866057548, - "c2": 46.757566006343936, - "c3": 38.51718306520695, - "c4": -18.212839698029967, - "c5": 15.846670093937533, - "c6": -31.230535967164315, - "c7": -39.80149589326796 + "points": { + "c1": 33.75850639558291, + "c2": 20.774517170852278, + "c3": -28.21385493890256, + "c4": -18.207145202436045, + "c5": 44.71103409182098, + "c6": -0.8760000537043382, + "c7": -11.843587630559753 }, - "vertexSeeds": { - "c1": 11.55553452540951, - "c2": 11.98721016018551, - "c3": 12.042746598008447, - "c4": 11.328908429791845, - "c5": 11.454029535860725, - "c6": 11.445874197638135, - "c7": 12.01452400502274 + "offsets": { + "c1": 20.258899676375407, + "c2": 17.364771151178918, + "c3": 14.470642625982434, + "c4": 11.576514100785946, + "c5": 8.682385575589459, + "c6": 5.788257050392973, + "c7": 2.8941285251964866 }, "rgb": [58, 15, 49] }, @@ -52521,23 +52521,23 @@ "year": 1711, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": 39.696665136350056, - "c2": -49.92711608900801, - "c3": 16.865247691966992, - "c4": -24.3611378457599, - "c5": 28.24958593706173, - "c6": 37.59907205189436, - "c7": 27.103647305053705 + "points": { + "c1": 1.8418872383484413, + "c2": -0.657922552842976, + "c3": 41.35299208195881, + "c4": 40.07201448167765, + "c5": -34.53124124870759, + "c6": -19.802977717914125, + "c7": 28.26484969301594 }, - "vertexSeeds": { - "c1": 11.751549417846814, - "c2": 12.030464326691622, - "c3": 11.661634708915766, - "c4": 12.248627358017393, - "c5": 12.306681760788738, - "c6": 12.398851148184741, - "c7": 11.867837080239212 + "offsets": { + "c1": 21.16504854368932, + "c2": 18.141470180305127, + "c3": 15.117891816920931, + "c4": 12.094313453536737, + "c5": 9.070735090152542, + "c6": 6.047156726768389, + "c7": 3.0235783633841944 }, "rgb": [58, 15, 49] }, @@ -52548,23 +52548,23 @@ "year": 1711, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -19.39448117738968, - "c2": -27.79304239016986, - "c3": -23.22167050620257, - "c4": 11.756769846790839, - "c5": 3.481532084152846, - "c6": -21.007104311097738, - "c7": -19.674075093972426 + "points": { + "c1": 23.376438296325134, + "c2": 16.132059279079684, + "c3": 20.481136735562472, + "c4": 28.49010721660128, + "c5": -16.429657436517374, + "c6": -26.72904057438128, + "c7": 19.57167704871651 }, - "vertexSeeds": { - "c1": 2.1678974671704667, - "c2": 2.5241637027978223, - "c3": 2.442613635170896, - "c4": 2.221732863347994, - "c5": 2.751831253992658, - "c6": 2.349607180577765, - "c7": 2.6343672618963043 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919565, + "c3": 3.328710124826628, + "c4": 2.662968099861303, + "c5": 1.9972260748959783, + "c6": 1.3314840499306515, + "c7": 0.6657420249653249 }, "rgb": [86, 146, 138] }, @@ -52575,23 +52575,23 @@ "year": 1711, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -29.333586592215447, - "c2": -14.764716667764056, - "c3": 2.541356358720421, - "c4": -6.213574674350273, - "c5": -7.372610236506876, - "c6": 7.874545696215094, - "c7": -11.70924957364159 + "points": { + "c1": -34.14517969514073, + "c2": -5.8839318043732085, + "c3": -33.144410427949666, + "c4": 4.291407042634056, + "c5": -23.766709814044784, + "c6": 28.65396110499124, + "c7": 32.55646829753009 }, - "vertexSeeds": { - "c1": 5.940614857304313, - "c2": 5.432201621950777, - "c3": 4.728648159148466, - "c4": 5.318278232187023, - "c5": 6.035788172579711, - "c6": 5.05383270973459, - "c7": 5.197381466938002 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [222, 0, 59] }, @@ -52602,23 +52602,23 @@ "year": 1711, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -13.660770356639109, - "c2": 28.434877459430716, - "c3": 8.537049522127376, - "c4": 5.694543991015458, - "c5": -21.100470867813172, - "c6": 2.237881552431581, - "c7": 29.36277359290692 + "points": { + "c1": -28.288071125438663, + "c2": -30.317077536528217, + "c3": -6.474986469430139, + "c4": -26.34571957574849, + "c5": -25.000221382226684, + "c6": -11.045637254383937, + "c7": -14.019305401296254 }, - "vertexSeeds": { - "c1": 3.7682997528534976, - "c2": 3.874009541991655, - "c3": 4.095413706314458, - "c4": 3.9529571951766034, - "c5": 4.523772755702673, - "c6": 3.7989164026958173, - "c7": 3.809466508563602 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -52629,23 +52629,23 @@ "year": 1711, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 14.70702261886754, - "c2": 6.679070198359618, - "c3": -10.740321486234905, - "c4": 31.12873821832779, - "c5": 16.766556200884665, - "c6": 31.359795528815845, - "c7": -17.43723364838888 + "points": { + "c1": 21.389582361899365, + "c2": -9.633014015828874, + "c3": 15.339577745040671, + "c4": 14.329814460012251, + "c5": 24.893741801230803, + "c6": 21.912776347612713, + "c7": -1.3689911768998684 }, - "vertexSeeds": { - "c1": 4.355564879067706, - "c2": 4.28233311272228, - "c3": 4.2482342796667405, - "c4": 4.018033534071137, - "c5": 4.378268633655114, - "c6": 3.9751520715159705, - "c7": 4.403772703055557 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [77, 76, 132] }, @@ -52656,23 +52656,23 @@ "year": 1711, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -3.2645860038538146, - "c2": -38.77177633094852, - "c3": 37.251412234754646, - "c4": 23.625629491443696, - "c5": -22.21666070998206, - "c6": 18.082793206656042, - "c7": -8.734034894885298 + "points": { + "c1": 16.630619853737606, + "c2": 38.34793708997922, + "c3": 31.926124524876236, + "c4": -2.754101383970159, + "c5": 12.655141742611185, + "c6": -7.177123653993476, + "c7": -30.014628616958312 }, - "vertexSeeds": { - "c1": 6.606753079300182, - "c2": 6.073442098798248, - "c3": 6.216963148409413, - "c4": 6.627843580917169, - "c5": 6.779938931874834, - "c6": 6.07147959693088, - "c7": 6.370912839367071 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.3564493758668497, + "c7": 1.6782246879334186 }, "rgb": [58, 15, 49] }, @@ -52683,23 +52683,23 @@ "year": 1711, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -6.009707841764655, - "c2": 7.550957526135775, - "c3": -3.7808523084838797, - "c4": -12.369006951291272, - "c5": -4.409524212833599, - "c6": 8.686979955844471, - "c7": -3.4561062144005064 + "points": { + "c1": -2.143905417945259, + "c2": -5.215386375012475, + "c3": -19.469086058631625, + "c4": -17.640584305324175, + "c5": -3.891054435367952, + "c6": 3.2833962738451916, + "c7": 20.313226475319787 }, - "vertexSeeds": { - "c1": 6.498707320523395, - "c2": 6.517189156377134, - "c3": 6.672165753806065, - "c4": 6.413164668646221, - "c5": 6.925565875919274, - "c6": 6.620836645901918, - "c7": 6.062002569951463 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.3564493758668497, + "c7": 1.6782246879334186 }, "rgb": [238, 201, 159] }, @@ -52710,23 +52710,23 @@ "year": 1711, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -3.6835336743217333, - "c2": -1.2992550959345088, - "c3": -16.551098414248816, - "c4": -22.40976500963774, - "c5": 16.18241243188989, - "c6": 1.3882057155647658, - "c7": -8.569783231000528 + "points": { + "c1": 21.944690802348806, + "c2": -10.654797032494272, + "c3": 17.510073917383384, + "c4": -28.56757773749074, + "c5": 9.972483455164419, + "c6": -25.055101046245333, + "c7": 15.380911632201258 }, - "vertexSeeds": { - "c1": 5.531209597398207, - "c2": 5.277187442843178, - "c3": 5.744459611851022, - "c4": 5.096691039369811, - "c5": 5.532111986888542, - "c6": 4.837587208387676, - "c7": 5.099440574909729 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055474, + "c4": 5.547850208044381, + "c5": 4.160887656033288, + "c6": 2.7739251040221955, + "c7": 1.386962552011093 }, "rgb": [222, 0, 59] }, @@ -52737,23 +52737,23 @@ "year": 1711, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": -20.252204361781185, - "c2": 4.786715481470072, - "c3": 8.871162741212395, - "c4": -1.316250557801368, - "c5": 11.877953691725594, - "c6": -19.98091540208826, - "c7": 2.2299911980392153 + "points": { + "c1": -20.9836197494969, + "c2": 13.177259119320958, + "c3": 19.216141589308783, + "c4": -11.046780137852162, + "c5": -13.467471813034651, + "c6": 25.636583168777662, + "c7": -4.554020423915777 }, - "vertexSeeds": { - "c1": 2.536135441161838, - "c2": 2.5993547306137677, - "c3": 2.726115530442472, - "c4": 2.7036515519555566, - "c5": 2.439979547934933, - "c6": 2.7017454302595016, - "c7": 2.4396365496396575 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.938973647711513, + "c3": 3.2824780397595954, + "c4": 2.625982431807678, + "c5": 1.9694868238557526, + "c6": 1.3129912159038348, + "c7": 0.6564956079519174 }, "rgb": [86, 146, 138] }, @@ -52764,23 +52764,23 @@ "year": 1712, "resistanceReported": false, "duration": 49939200, - "curveSeeds": { - "c1": 47.14031845710386, - "c2": 17.30129085733371, - "c3": 46.43186114109865, - "c4": -35.08686886900095, - "c5": -38.11749002221975, - "c6": 54.55598301123355, - "c7": -42.5149926635443 + "points": { + "c1": 58.636730732449976, + "c2": 23.176010183276972, + "c3": 37.46380860944008, + "c4": -56.1545978957933, + "c5": 13.133725295189464, + "c6": -59.96750211028566, + "c7": -41.763406824881855 }, - "vertexSeeds": { - "c1": 8.637407697588912, - "c2": 7.863566696849463, - "c3": 9.01612471585055, - "c4": 8.29255250398297, - "c5": 7.908148067859489, - "c6": 8.315171771074873, - "c7": 8.20151347621355 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.98196948682386, + "c3": 10.81830790568654, + "c4": 8.654646324549235, + "c5": 6.49098474341193, + "c6": 4.327323162274625, + "c7": 2.1636615811373052 }, "rgb": [222, 0, 59] }, @@ -52791,23 +52791,23 @@ "year": 1711, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -17.964867482299166, - "c2": -40.806644918291745, - "c3": -31.050085466949056, - "c4": 32.94263040359121, - "c5": 6.572144949578679, - "c6": 3.656453196193958, - "c7": 41.45897392879036 + "points": { + "c1": 33.95188082585054, + "c2": -41.914838814129, + "c3": 39.02991825341151, + "c4": -10.259077931217895, + "c5": 42.19651539558147, + "c6": 28.828527201533632, + "c7": 4.482469868872528 }, - "vertexSeeds": { - "c1": 3.6207971379974335, - "c2": 3.375082033833068, - "c3": 3.0969524344062695, - "c4": 3.187004760411451, - "c5": 3.4906733912923764, - "c6": 3.135279315255773, - "c7": 3.200014663191096 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642166, + "c3": 4.392048081368469, + "c4": 3.513638465094777, + "c5": 2.6352288488210807, + "c6": 1.7568192325473886, + "c7": 0.8784096162736966 }, "rgb": [222, 0, 59] }, @@ -52818,23 +52818,23 @@ "year": 1711, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -17.715843843407256, - "c2": -22.85670975330088, - "c3": 10.708918144081515, - "c4": 2.7027727860805726, - "c5": -17.487196548944915, - "c6": -12.908911794852157, - "c7": 19.23685657495856 + "points": { + "c1": 26.178166306991407, + "c2": 15.677449836844445, + "c3": 26.068267641123207, + "c4": 4.767701734652363, + "c5": -26.027320419180228, + "c6": 17.250935459668185, + "c7": 19.688775756890422 }, - "vertexSeeds": { - "c1": 4.103644637461307, - "c2": 4.332296368008945, - "c3": 4.161796000219755, - "c4": 4.642553089647055, - "c5": 4.250289298579554, - "c6": 4.376237044479293, - "c7": 3.991924956204138 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733702, + "c3": 5.594082293111419, + "c4": 4.475265834489134, + "c5": 3.3564493758668528, + "c6": 2.237632917244567, + "c7": 1.1188164586222815 }, "rgb": [58, 15, 49] }, @@ -52845,23 +52845,23 @@ "year": 1711, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 6.182516580356619, - "c2": 0.8418441635917837, - "c3": -11.574247322845501, - "c4": -23.670371573592746, - "c5": 25.489401211360942, - "c6": 12.260179596957087, - "c7": 13.030597438317216 + "points": { + "c1": 15.178798731927685, + "c2": 26.548791715305626, + "c3": -24.904911462240637, + "c4": -28.277856731005528, + "c5": 29.340994742574416, + "c6": 3.90735738559907, + "c7": 22.710303040527982 }, - "vertexSeeds": { - "c1": 1.8446507613106025, - "c2": 1.9075419197856553, - "c3": 1.9295128658238283, - "c4": 1.8430922311021274, - "c5": 1.909136730476103, - "c6": 1.9771705677293212, - "c7": 2.1160699580805797 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.5427646786870075, + "c4": 2.034211742949606, + "c5": 1.5256588072122033, + "c6": 1.0171058714748045, + "c7": 0.5085529357374022 }, "rgb": [86, 146, 138] }, @@ -52872,23 +52872,23 @@ "year": 1712, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": -22.806674402639203, - "c2": -14.185863789262228, - "c3": -45.796466993448256, - "c4": -5.286754861392289, - "c5": -25.732678623098614, - "c6": -6.812868213186633, - "c7": -24.405017895660183 + "points": { + "c1": -29.394041363767574, + "c2": -33.79359392966109, + "c3": -33.11655770028185, + "c4": -27.1307267289055, + "c5": -48.585311654467375, + "c6": -40.758433594193306, + "c7": -31.462768593598394 }, - "vertexSeeds": { - "c1": 5.648565171999039, - "c2": 5.706233344782625, - "c3": 5.0545548046171564, - "c4": 5.73464317704253, - "c5": 5.0463770575083124, - "c6": 5.810277414473143, - "c7": 5.692748304914402 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802588989, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605177904 }, "rgb": [86, 146, 138] }, @@ -52899,23 +52899,23 @@ "year": 1711, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -25.150757126351667, - "c2": -26.548427196156844, - "c3": -17.339347032931396, - "c4": -26.938843259322617, - "c5": -27.593831679556438, - "c6": -23.466654725692173, - "c7": -18.657133173306384 + "points": { + "c1": 26.545581773136355, + "c2": 19.115077661400072, + "c3": -3.732144355367616, + "c4": -32.75277377982067, + "c5": 9.946934093704499, + "c6": 4.66337170923061, + "c7": 31.5970180516414 }, - "vertexSeeds": { - "c1": 7.6089271486625485, - "c2": 7.026779269563662, - "c3": 7.0041766980699744, - "c4": 8.034134754949617, - "c5": 7.8468293632519615, - "c6": 7.803839009244685, - "c7": 7.821378684857208 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.65048543689321, + "c3": 9.708737864077667, + "c4": 7.76699029126214, + "c5": 5.8252427184465985, + "c6": 3.88349514563107, + "c7": 1.9417475728155285 }, "rgb": [77, 76, 132] }, @@ -52926,23 +52926,23 @@ "year": 1711, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 28.075558183440492, - "c2": 0.5090251120996783, - "c3": 12.98778064933731, - "c4": 21.356133807982175, - "c5": 35.64241392970092, - "c6": -32.05413664311955, - "c7": 19.808271352450788 + "points": { + "c1": -5.104210768347947, + "c2": -6.813762722112031, + "c3": 15.9371158247328, + "c4": -30.102492187062502, + "c5": -39.0121698598972, + "c6": -17.019276187428687, + "c7": -5.857135404954697 }, - "vertexSeeds": { - "c1": 5.228050863702018, - "c2": 4.692716125148387, - "c3": 5.316342639990342, - "c4": 4.671977976954896, - "c5": 4.436327006415356, - "c6": 4.292926882024997, - "c7": 4.390122496281446 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061029, + "c3": 6.35691169671752, + "c4": 5.0855293573740195, + "c5": 3.8141470180305146, + "c6": 2.5427646786870097, + "c7": 1.2713823393435049 }, "rgb": [238, 201, 159] }, @@ -52953,23 +52953,23 @@ "year": 1711, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -3.655988977479719, - "c2": 5.511784514166287, - "c3": 34.63134245118523, - "c4": 1.5575124789846981, - "c5": 13.644961152550522, - "c6": -9.698231508635459, - "c7": 22.244715773964394 + "points": { + "c1": -22.82864057186451, + "c2": -15.518495356556645, + "c3": 0.018782105321150766, + "c4": -19.509753753588434, + "c5": -13.697770921538023, + "c6": -11.619099021621096, + "c7": 0.8870236088376799 }, - "vertexSeeds": { - "c1": 2.3941580586031934, - "c2": 2.6230452889373597, - "c3": 2.2919483132732066, - "c4": 2.5435327102740506, - "c5": 2.3905456658422444, - "c6": 2.3176328450869215, - "c7": 2.3481186489225117 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.374942209893665, + "c4": 2.6999537679149315, + "c5": 2.024965325936197, + "c6": 1.3499768839574657, + "c7": 0.6749884419787339 }, "rgb": [86, 146, 138] }, @@ -52980,23 +52980,23 @@ "year": 1711, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -0.3579555452020067, - "c2": -3.0142313640999348, - "c3": 15.91768292054897, - "c4": 5.267238318957098, - "c5": 1.1543484950240988, - "c6": 11.237366022060293, - "c7": -8.781476607903627 + "points": { + "c1": 1.2897035952206224, + "c2": 16.084970277196696, + "c3": 15.380293145515878, + "c4": -3.2900827091095906, + "c5": 20.030587584932547, + "c6": -6.2489475600214845, + "c7": 18.50373424729036 }, - "vertexSeeds": { - "c1": 4.213843232135969, - "c2": 4.240690560806863, - "c3": 3.936505549239606, - "c4": 4.063884264969743, - "c5": 3.6988003657308144, - "c6": 3.998667050012635, - "c7": 3.989097322799566 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374015, + "c4": 4.068423485899212, + "c5": 3.0513176144244065, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [222, 0, 59] }, @@ -53007,23 +53007,23 @@ "year": 1711, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 29.46539752095058, - "c2": 10.161211663610864, - "c3": -13.36811186904536, - "c4": 26.768629789723896, - "c5": 0.5879367596529228, - "c6": -5.595619097100968, - "c7": -24.042247149734905 + "points": { + "c1": 13.906189392521142, + "c2": 13.503380928169051, + "c3": 18.017768395607447, + "c4": -13.655841711770265, + "c5": -24.77700031527062, + "c6": 6.3953780986076865, + "c7": 4.5359698881218975 }, - "vertexSeeds": { - "c1": 2.5462980749911748, - "c2": 2.2713631468711744, - "c3": 2.493104576290568, - "c4": 2.5377401744257115, - "c5": 2.496493016879587, - "c6": 2.477968933209748, - "c7": 2.374035140740533 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.91123439667129, + "c3": 3.2593619972260752, + "c4": 2.6074895977808605, + "c5": 1.9556171983356463, + "c6": 1.3037447988904316, + "c7": 0.6518723994452147 }, "rgb": [238, 201, 159] }, @@ -53034,23 +53034,23 @@ "year": 1711, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -0.9017105933002156, - "c2": 15.736002374200844, - "c3": 23.481003856996402, - "c4": 0.1397352133258778, - "c5": 17.52675373369022, - "c6": -2.3802706454940257, - "c7": 22.51267003106721 + "points": { + "c1": 14.623033345024005, + "c2": -15.263439327727943, + "c3": -18.378430221551284, + "c4": 24.880270931651516, + "c5": 18.80041325488213, + "c6": 0.5829026989557704, + "c7": -4.355972637136194 }, - "vertexSeeds": { - "c1": 2.4102900542924934, - "c2": 2.476145081813501, - "c3": 2.3216771751714664, - "c4": 2.222191741203877, - "c5": 2.50658335419091, - "c6": 2.339513735321431, - "c7": 2.3543362210387175 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269069, + "c3": 3.028201571890892, + "c4": 2.422561257512715, + "c5": 1.8169209431345346, + "c6": 1.2112806287563576, + "c7": 0.6056403143781771 }, "rgb": [58, 15, 49] }, @@ -53061,23 +53061,23 @@ "year": 1712, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -17.048914652512803, - "c2": -7.523189602969932, - "c3": 34.59391252706526, - "c4": -18.457511573303996, - "c5": -15.404222993655985, - "c6": 26.922861043173043, - "c7": 26.554668813332825 + "points": { + "c1": 38.878946814558546, + "c2": 19.172720942410734, + "c3": 15.296574653137007, + "c4": 8.25150466637772, + "c5": 13.537401888457232, + "c6": -19.961120285260264, + "c7": -39.32306525339529 }, - "vertexSeeds": { - "c1": 8.859489036869528, - "c2": 8.91626918962117, - "c3": 8.12105299672198, - "c4": 9.108293577460907, - "c5": 8.167595203844188, - "c6": 8.19631925375215, - "c7": 8.79010917565193 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588071, + "c3": 11.257512713823397, + "c4": 9.006010171058719, + "c5": 6.754507628294043, + "c6": 4.503005085529367, + "c7": 2.251502542764689 }, "rgb": [238, 201, 159] }, @@ -53088,23 +53088,23 @@ "year": 1712, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 21.500016897183734, - "c2": -34.61638660014014, - "c3": -31.809124223121763, - "c4": 15.413898420272758, - "c5": 33.23255063129735, - "c6": -16.533443617664602, - "c7": 6.620486915753233 + "points": { + "c1": 9.374981117906081, + "c2": -39.282055389829246, + "c3": -29.86486889746002, + "c4": -11.872390738645908, + "c5": 20.897823912790095, + "c6": -40.71321854932504, + "c7": -25.840924276714993 }, - "vertexSeeds": { - "c1": 5.077616698284315, - "c2": 4.806685429107635, - "c3": 4.616118094662847, - "c4": 4.529377520509157, - "c5": 5.032948404333271, - "c6": 4.374380824574155, - "c7": 4.610078661610705 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099818 }, "rgb": [86, 146, 138] }, @@ -53115,23 +53115,23 @@ "year": 1711, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 21.743707197247765, - "c2": -19.67759998263078, - "c3": 8.223662543579394, - "c4": 12.950827016076133, - "c5": -7.779644458982663, - "c6": -9.809106751641215, - "c7": 19.99229996137229 + "points": { + "c1": -14.268162819962077, + "c2": 26.085344055704297, + "c3": -23.59058276202979, + "c4": 5.109172714938467, + "c5": 16.600764051285324, + "c6": -22.42230893618931, + "c7": 7.9147430246160795 }, - "vertexSeeds": { - "c1": 6.99188465543182, - "c2": 7.118687856156651, - "c3": 6.725913702626514, - "c4": 6.942355925296093, - "c5": 7.3696850933539, - "c6": 7.179736049067398, - "c7": 6.815124969447136 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [77, 76, 132] }, @@ -53142,23 +53142,23 @@ "year": 1711, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 10.553360767756317, - "c2": -15.965820060248843, - "c3": 16.290491455914754, - "c4": 23.05790192233499, - "c5": -22.897311275020453, - "c6": 2.554091405193766, - "c7": 12.87635805793824 + "points": { + "c1": 9.529563514847766, + "c2": 21.08410169266171, + "c3": -9.818340455505506, + "c4": -26.652935369453377, + "c5": 23.60831744567102, + "c6": 15.742185790406374, + "c7": -10.91858715679345 }, - "vertexSeeds": { - "c1": 7.115265270873011, - "c2": 6.409770492926322, - "c3": 6.8629809177269125, - "c4": 6.492114549507701, - "c5": 7.303540085421607, - "c6": 6.8156979512444655, - "c7": 6.439392339451776 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [222, 0, 59] }, @@ -53169,23 +53169,23 @@ "year": 1711, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 4.058083798591618, - "c2": -17.700659156549335, - "c3": -27.684298584945644, - "c4": 0.03896798457681783, - "c5": 7.9592854619130655, - "c6": -18.41551541865799, - "c7": 1.462809227039191 + "points": { + "c1": 7.930469830866844, + "c2": -25.88362465897693, + "c3": -27.06882643000133, + "c4": -6.893584865842239, + "c5": -21.619622568681425, + "c6": 28.242096900367184, + "c7": -22.643535174572598 }, - "vertexSeeds": { - "c1": 5.415375241269732, - "c2": 5.187876972005773, - "c3": 5.315521651623563, - "c4": 5.147566147953502, - "c5": 4.919581202426023, - "c6": 5.24989186002184, - "c7": 5.2128741777217025 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.8502080443828, + "c3": 6.541840036985666, + "c4": 5.233472029588531, + "c5": 3.925104022191396, + "c6": 2.6167360147942613, + "c7": 1.3083680073971267 }, "rgb": [77, 76, 132] }, @@ -53196,23 +53196,23 @@ "year": 1711, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 6.324703550714403, - "c2": 1.7057337214155517, - "c3": 16.093384969681544, - "c4": 22.70761102263001, - "c5": 13.465331855024822, - "c6": 5.188731665648895, - "c7": 25.4362865821409 + "points": { + "c1": -14.931058013042446, + "c2": 22.65005318996245, + "c3": -31.072840777256214, + "c4": 10.64322405825662, + "c5": 25.643317903145388, + "c6": -13.843312257413963, + "c7": 9.139684148004577 }, - "vertexSeeds": { - "c1": 6.67482917587168, - "c2": 6.081118332189751, - "c3": 5.394408352815502, - "c4": 6.724764283989563, - "c5": 6.213000121894365, - "c6": 5.865979995196055, - "c7": 6.632109768168579 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077674, + "c3": 8.090614886731391, + "c4": 6.472491909385116, + "c5": 4.854368932038833, + "c6": 3.236245954692558, + "c7": 1.6181229773462837 }, "rgb": [222, 0, 59] }, @@ -53223,23 +53223,23 @@ "year": 1712, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -12.41207600408482, - "c2": 23.523502526735243, - "c3": -9.626253849831858, - "c4": -13.581196023900052, - "c5": -19.52099590203754, - "c6": -28.828434334426543, - "c7": -18.88447602664648 + "points": { + "c1": -20.867439774297303, + "c2": 33.263079079899754, + "c3": 19.72713798387921, + "c4": 17.148406278499323, + "c5": -27.904564398813456, + "c6": -8.972405504280072, + "c7": 4.334731469205501 }, - "vertexSeeds": { - "c1": 3.278649258391432, - "c2": 3.498648982169007, - "c3": 3.3551460844526746, - "c4": 3.4348413323152545, - "c5": 3.5233041863630343, - "c6": 3.594798424614562, - "c7": 3.271263713841311 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682383, + "c3": 4.415164123901992, + "c4": 3.532131299121592, + "c5": 2.6490984743411916, + "c6": 1.7660656495607918, + "c7": 0.8830328247804 }, "rgb": [77, 76, 132] }, @@ -53250,23 +53250,23 @@ "year": 1712, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -12.161420398121436, - "c2": 2.0852251632271255, - "c3": 8.02395132405211, - "c4": -17.24968749555051, - "c5": -10.256992596668002, - "c6": 0.5966820091381102, - "c7": 3.2752986647787914 + "points": { + "c1": -7.236554896458674, + "c2": 4.693128994536039, + "c3": -19.929635933605933, + "c4": -14.624162754170296, + "c5": 9.607222982241758, + "c6": 15.37182985780965, + "c7": -14.046580848176053 }, - "vertexSeeds": { - "c1": 10.045456276250567, - "c2": 10.221183588575169, - "c3": 9.980792011157643, - "c4": 9.100177701819405, - "c5": 9.975816026563507, - "c6": 8.922740742874737, - "c7": 9.55691701064219 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.86823855755894, + "c3": 12.390198797965786, + "c4": 9.912159038372632, + "c5": 7.43411927877947, + "c6": 4.956079519186316, + "c7": 2.4780397595931625 }, "rgb": [222, 0, 59] }, @@ -53277,23 +53277,23 @@ "year": 1712, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 38.27441937121741, - "c2": 8.270489002592612, - "c3": -32.7462292727282, - "c4": -31.2963524330545, - "c5": -14.136180239359952, - "c6": 21.6845304267587, - "c7": -2.3687496311139213 + "points": { + "c1": -26.980530108633978, + "c2": -38.345174386484985, + "c3": 25.5690354046311, + "c4": -0.768153218847587, + "c5": -2.9835079620062928, + "c6": 11.051896804933897, + "c7": -13.337088355144953 }, - "vertexSeeds": { - "c1": 3.8699715810535347, - "c2": 3.391124027256451, - "c3": 3.427794964632085, - "c4": 3.4799010355446214, - "c5": 2.997355726555348, - "c6": 3.340442998489032, - "c7": 3.514826837206961 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124828, + "c3": 4.669440591770691, + "c4": 3.735552473416551, + "c5": 2.801664355062414, + "c6": 1.8677762367082773, + "c7": 0.9338881183541367 }, "rgb": [86, 146, 138] }, @@ -53304,23 +53304,23 @@ "year": 1712, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 16.640107198795363, - "c2": 20.382066693929943, - "c3": -13.172115505721173, - "c4": -1.9577142943887864, - "c5": 12.997356421684984, - "c6": -30.87321541560964, - "c7": 1.327772849005541 + "points": { + "c1": 3.16491241704815, + "c2": -11.813682212986315, + "c3": -9.224694242552808, + "c4": 0.7759216190029079, + "c5": 11.671944442807394, + "c6": 42.33752252413424, + "c7": -32.21138099502126 }, - "vertexSeeds": { - "c1": 2.0178720618138306, - "c2": 2.072304429478369, - "c3": 1.8449036996422945, - "c4": 2.0002397083020735, - "c5": 1.9048224680635644, - "c6": 1.95169469713443, - "c7": 2.015101116219509 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.5889967637540447, + "c4": 2.071197411003235, + "c5": 1.553398058252428, + "c6": 1.035598705501619, + "c7": 0.5177993527508095 }, "rgb": [77, 76, 132] }, @@ -53331,23 +53331,23 @@ "year": 1712, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -24.877779965330724, - "c2": -23.76026842833815, - "c3": -11.30858135610103, - "c4": 6.4150166733722855, - "c5": -28.820415092141083, - "c6": 2.5656397812922833, - "c7": -6.075607147697081 + "points": { + "c1": -25.31382276433902, + "c2": 32.21394541371251, + "c3": -32.520903291506414, + "c4": 12.590493780549295, + "c5": 5.211714158996962, + "c6": -2.3148129511233364, + "c7": 24.58664956636502 }, - "vertexSeeds": { - "c1": 11.658895985946778, - "c2": 11.349810986510958, - "c3": 11.2609938005551, - "c4": 11.533468925666616, - "c5": 11.267715622797802, - "c6": 11.68662217418753, - "c7": 11.808397766469438 + "offsets": { + "c1": 19.77346278317152, + "c2": 16.948682385575612, + "c3": 14.12390198797965, + "c4": 11.299121590383743, + "c5": 8.47434119278778, + "c6": 5.649560795191872, + "c7": 2.8247803975959074 }, "rgb": [222, 0, 59] }, @@ -53358,23 +53358,23 @@ "year": 1712, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -15.967787200350811, - "c2": 16.193573454568213, - "c3": 22.13103300725511, - "c4": -25.033684461846974, - "c5": 15.11678521977257, - "c6": -11.263594300759312, - "c7": -18.781639798428248 + "points": { + "c1": -22.012728851539865, + "c2": 11.004815464400377, + "c3": -2.773009632087941, + "c4": -0.35186909209140893, + "c5": 2.655871508961429, + "c6": -14.801153307715378, + "c7": 25.256859504932446 }, - "vertexSeeds": { - "c1": 5.409789229261223, - "c2": 5.049359418046935, - "c3": 4.804441098024082, - "c4": 5.230251087524619, - "c5": 4.911606236250128, - "c6": 5.1679135011967885, - "c7": 5.294663210392797 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262138, + "c3": 6.472491909385116, + "c4": 5.177993527508095, + "c5": 3.883495145631073, + "c6": 2.5889967637540514, + "c7": 1.2944983818770217 }, "rgb": [77, 76, 132] }, @@ -53385,23 +53385,23 @@ "year": 1712, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 11.593225958668867, - "c2": 17.43476861883459, - "c3": -19.770132715819315, - "c4": -24.102714805842314, - "c5": 4.178120890149444, - "c6": -2.166068917944468, - "c7": -15.096364371191074 + "points": { + "c1": 18.205619401446775, + "c2": 12.414073311499365, + "c3": -1.7715238271497178, + "c4": -6.543854075431309, + "c5": -9.282152622250408, + "c6": -1.3236964615767768, + "c7": 21.24206485116577 }, - "vertexSeeds": { - "c1": 5.037844087394733, - "c2": 4.67250607796307, - "c3": 4.932961899395016, - "c4": 5.150324376777663, - "c5": 5.213298700705415, - "c6": 5.381504322276378, - "c7": 5.140132143620114 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.7115117891816976, + "c3": 6.426259824318075, + "c4": 5.141007859454465, + "c5": 3.8557558945908426, + "c6": 2.5705039297272325, + "c7": 1.2852519648636096 }, "rgb": [58, 15, 49] }, @@ -53412,23 +53412,23 @@ "year": 1712, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -11.741234558155394, - "c2": -29.59060287228477, - "c3": 1.653261892920682, - "c4": 24.846870910748684, - "c5": -14.151087681832212, - "c6": -4.840267351611299, - "c7": -19.76089235602909 + "points": { + "c1": 14.823253281885343, + "c2": 33.357582266324854, + "c3": -36.470176390430794, + "c4": 11.029712140527586, + "c5": -19.066969731125536, + "c6": -34.453681991461806, + "c7": 37.92898977734926 }, - "vertexSeeds": { - "c1": 5.016094379199267, - "c2": 4.8184791218824135, - "c3": 5.137823696742938, - "c4": 4.460961197164475, - "c5": 5.2039032948415995, - "c6": 4.579862131982049, - "c7": 5.290693668197047 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061026, + "c3": 6.356911696717521, + "c4": 5.085529357374017, + "c5": 3.814147018030513, + "c6": 2.5427646786870084, + "c7": 1.2713823393435042 }, "rgb": [238, 201, 159] }, @@ -53439,23 +53439,23 @@ "year": 1711, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": -4.866390758833525, - "c2": -19.748507025886234, - "c3": 3.6745748608202433, - "c4": 0.1874392577667976, - "c5": 18.333633031246166, - "c6": 6.414613390413322, - "c7": 15.30481972229473 + "points": { + "c1": 2.767024644166579, + "c2": -17.6667112769369, + "c3": 8.144174391307526, + "c4": -21.328094030832595, + "c5": -13.573285917219437, + "c6": -7.049215435893641, + "c7": -1.1960059813608162 }, - "vertexSeeds": { - "c1": 5.942661997482013, - "c2": 5.50761091952395, - "c3": 5.107582716992042, - "c4": 4.7665132015551155, - "c5": 5.915519962291944, - "c6": 5.660865688769023, - "c7": 5.407208255610189 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.71012482662968, + "c3": 7.258437355524737, + "c4": 5.806749884419783, + "c5": 4.355062413314837, + "c6": 2.9033749422098913, + "c7": 1.4516874711049457 }, "rgb": [58, 15, 49] }, @@ -53466,23 +53466,23 @@ "year": 1712, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 5.058572708959183, - "c2": -0.3031723714885004, - "c3": -25.676567637379826, - "c4": -22.826217764792986, - "c5": 17.70939421170045, - "c6": 7.12939979988505, - "c7": 22.20617292098624 + "points": { + "c1": 16.0960787972025, + "c2": 2.872105230016686, + "c3": 25.114610790561976, + "c4": -4.195348268058648, + "c5": -24.601053928138157, + "c6": 3.7935799879056162, + "c7": -15.545826546608541 }, - "vertexSeeds": { - "c1": 3.1759251707089486, - "c2": 3.703178243946251, - "c3": 3.064828170760921, - "c4": 3.1300720361622996, - "c5": 3.1679510493800427, - "c6": 3.508989395386038, - "c7": 2.9408305813055207 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.35367545076283, + "c3": 4.461396208969026, + "c4": 3.5691169671752214, + "c5": 2.676837725381413, + "c6": 1.7845584835876087, + "c7": 0.8922792417938044 }, "rgb": [86, 146, 138] }, @@ -53493,23 +53493,23 @@ "year": 1712, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -28.928985064368316, - "c2": -7.564661466446601, - "c3": 26.180473911108326, - "c4": -25.833958757955635, - "c5": 0.5144374590737577, - "c6": -23.17460729248, - "c7": 7.241416190183482 + "points": { + "c1": -17.119070433288822, + "c2": -3.8301800093180063, + "c3": -20.633519033904655, + "c4": -16.056084349056153, + "c5": -15.674126995099467, + "c6": -22.88121028282553, + "c7": 9.847888323851972 }, - "vertexSeeds": { - "c1": 5.2511862739833255, - "c2": 5.306706109112964, - "c3": 5.586377249805494, - "c4": 5.391501549575073, - "c5": 4.75163375443127, - "c6": 5.735223786467769, - "c7": 5.08759280375947 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.888580674988445, + "c4": 5.510864539990753, + "c5": 4.133148404993062, + "c6": 2.755432269995379, + "c7": 1.377716134997687 }, "rgb": [77, 76, 132] }, @@ -53520,23 +53520,23 @@ "year": 1712, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -17.016864741899376, - "c2": 12.721685966706726, - "c3": 18.402295570021213, - "c4": 25.679182573365946, - "c5": 2.996519179559211, - "c6": -0.8301519011629637, - "c7": 5.169815324201021 + "points": { + "c1": -16.96332114104417, + "c2": 14.361405903697126, + "c3": -25.08827044069153, + "c4": 5.72649532077066, + "c5": -15.413463811408565, + "c6": -14.49175165539469, + "c7": -31.352469417502725 }, - "vertexSeeds": { - "c1": 5.968570024245031, - "c2": 7.001447581622416, - "c3": 6.823394022531019, - "c4": 7.2126649443792346, - "c5": 6.424614735240215, - "c6": 7.089382612095715, - "c7": 6.424287788884879 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364768, + "c3": 8.830328247803978, + "c4": 7.064262598243178, + "c5": 5.2981969486823886, + "c6": 3.532131299121589, + "c7": 1.76606564956079 }, "rgb": [58, 15, 49] }, @@ -53547,23 +53547,23 @@ "year": 1712, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -16.903938374993768, - "c2": -19.801643910119573, - "c3": -34.08319428508015, - "c4": -10.462557484171978, - "c5": -37.47582698055134, - "c6": -5.609314860810606, - "c7": -30.54082275043809 + "points": { + "c1": 22.464247414573066, + "c2": -24.262978115453805, + "c3": 27.433173798365345, + "c4": 33.35889268406325, + "c5": -0.9074796624133512, + "c6": 32.17216337669639, + "c7": -19.634435637225675 }, - "vertexSeeds": { - "c1": 2.6288948108240944, - "c2": 2.5457252046737633, - "c3": 2.747970182626297, - "c4": 2.561143997653631, - "c5": 2.8275119154317956, - "c6": 2.3698924110207864, - "c7": 2.815945060013398 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.467406380027737, + "c4": 2.7739251040221906, + "c5": 2.080443828016644, + "c6": 1.3869625520110977, + "c7": 0.6934812760055465 }, "rgb": [86, 146, 138] }, @@ -53574,23 +53574,23 @@ "year": 1712, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -25.040139760655222, - "c2": -14.108138100390697, - "c3": 6.918719626990786, - "c4": 1.9869228535575587, - "c5": -31.995259462496637, - "c6": 30.11903057781707, - "c7": -0.008386932327418606 + "points": { + "c1": -22.96473780278475, + "c2": -23.210099348078828, + "c3": -34.147092767000096, + "c4": 2.463739569312075, + "c5": -11.114944564067713, + "c6": -29.577239046211456, + "c7": 11.98361091790018 }, - "vertexSeeds": { - "c1": 3.970742520972344, - "c2": 3.9733269586827737, - "c3": 3.9260418485937443, - "c4": 4.233731107160868, - "c5": 3.871780976925883, - "c6": 4.051229064977209, - "c7": 4.179412411726238 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.0748959778085965, + "c3": 5.062413314840504, + "c4": 4.049930651872401, + "c5": 3.0374479889042982, + "c6": 2.0249653259361953, + "c7": 1.012482662968103 }, "rgb": [86, 146, 138] }, @@ -53601,23 +53601,23 @@ "year": 1712, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -20.909964257646696, - "c2": 18.544613623862503, - "c3": 0.25321364517131073, - "c4": 2.6952750285233975, - "c5": -0.1357855432888293, - "c6": -24.744158690559356, - "c7": 0.29153830140307946 + "points": { + "c1": -13.803243204144962, + "c2": -29.071680148766927, + "c3": 15.166205964858847, + "c4": 17.43983226413824, + "c5": 26.14674272209988, + "c6": 18.47615297448501, + "c7": -12.339455306075717 }, - "vertexSeeds": { - "c1": 4.871895121337894, - "c2": 4.808122264914363, - "c3": 5.08822641396108, - "c4": 4.75115067316703, - "c5": 4.782445571670266, - "c6": 5.072477997404461, - "c7": 5.165678985494048 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061031, + "c3": 6.356911696717519, + "c4": 5.085529357374021, + "c5": 3.8141470180305093, + "c6": 2.5427646786870106, + "c7": 1.2713823393434986 }, "rgb": [58, 15, 49] }, @@ -53628,23 +53628,23 @@ "year": 1712, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 15.763648677538235, - "c2": -12.047116953304645, - "c3": 16.738939947337045, - "c4": 26.747056107606852, - "c5": -5.529252226650154, - "c6": -17.568116180251824, - "c7": -7.600552863277272 + "points": { + "c1": -9.003882517599784, + "c2": -22.354956044238634, + "c3": 11.697703807477268, + "c4": -8.424341135305134, + "c5": 4.254900100432501, + "c6": 2.877669555916114, + "c7": -21.556654104079286 }, - "vertexSeeds": { - "c1": 6.409250238428383, - "c2": 5.4529207178878085, - "c3": 6.160033414095993, - "c4": 6.371951325890834, - "c5": 6.475978538128195, - "c6": 6.232789259283222, - "c7": 6.712905049854957 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [77, 76, 132] }, @@ -53655,23 +53655,23 @@ "year": 1712, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -31.075732408995215, - "c2": 11.316330649034683, - "c3": -10.44752472934113, - "c4": -19.6615716874408, - "c5": 32.65279712462659, - "c6": -10.808529657020689, - "c7": -10.227625006988362 + "points": { + "c1": -12.549524000687889, + "c2": -28.636836408447294, + "c3": 36.575182546232384, + "c4": -23.535055625116016, + "c5": 37.85402479910236, + "c6": 30.0820202950825, + "c7": 23.106954301697996 }, - "vertexSeeds": { - "c1": 5.804100165506677, - "c2": 5.760898979689352, - "c3": 5.7991654338957455, - "c4": 5.701119035913613, - "c5": 5.796375224403299, - "c6": 5.723384350081037, - "c7": 5.724390286608989 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066544, + "c3": 6.934812760055488, + "c4": 5.547850208044363, + "c5": 4.160887656033307, + "c6": 2.7739251040221813, + "c7": 1.3869625520110562 }, "rgb": [86, 146, 138] }, @@ -53682,23 +53682,23 @@ "year": 1712, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -23.619171446062527, - "c2": -21.52446519929542, - "c3": -5.28533743027117, - "c4": 30.086024886437684, - "c5": 29.907777466131144, - "c6": 26.867629779634413, - "c7": 13.749710625778874 + "points": { + "c1": 9.831042500229437, + "c2": 4.661082698073514, + "c3": 17.547589153674622, + "c4": -20.283503661911965, + "c5": -13.10705820380204, + "c6": -23.001380814110362, + "c7": 33.005480222779184 }, - "vertexSeeds": { - "c1": 5.769364338781464, - "c2": 6.83048500232132, - "c3": 6.1679619497965295, - "c4": 6.6386368239103195, - "c5": 5.983613467332309, - "c6": 6.588673572034664, - "c7": 6.5285740312967935 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.04160887656033, + "c3": 8.368007397133608, + "c4": 6.694405917706892, + "c5": 5.02080443828017, + "c6": 3.347202958853446, + "c7": 1.673601479426723 }, "rgb": [58, 15, 49] }, @@ -53709,23 +53709,23 @@ "year": 1712, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 1.8912805735053055, - "c2": 15.829050190782944, - "c3": -27.38927911919167, - "c4": 33.51738990461624, - "c5": 31.62621889862973, - "c6": -10.146600398257938, - "c7": 34.89186352929906 + "points": { + "c1": 33.9134533110427, + "c2": 7.080136821528903, + "c3": 0.038232811009315526, + "c4": 24.605662922808506, + "c5": -24.039276807664066, + "c6": -2.369927345145527, + "c7": 22.963376569189265 }, - "vertexSeeds": { - "c1": 7.163254914392773, - "c2": 6.887085688302417, - "c3": 7.11494230481743, - "c4": 6.423369626398433, - "c5": 6.087558020342691, - "c6": 6.372507373507157, - "c7": 6.182341507652191 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [86, 146, 138] }, @@ -53736,23 +53736,23 @@ "year": 1712, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 14.609221517949273, - "c2": 5.635211853367387, - "c3": 19.77612863919432, - "c4": -2.0573540309794396, - "c5": 12.469900725719484, - "c6": -25.29341578885026, - "c7": 19.766114146654942 + "points": { + "c1": 19.71681308424673, + "c2": -25.36037540179528, + "c3": -12.317369579696766, + "c4": 17.705289719555957, + "c5": 2.1073674101621975, + "c6": 32.56902532580071, + "c7": 9.017724988541254 }, - "vertexSeeds": { - "c1": 9.726677570655005, - "c2": 9.052866217997629, - "c3": 8.956854468623693, - "c4": 9.654570315676724, - "c5": 10.323120140359208, - "c6": 9.916070382378734, - "c7": 9.438718416549433 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.923717059639399, + "c3": 12.436430883032816, + "c4": 9.949144706426258, + "c5": 7.4618585298196995, + "c6": 4.974572353213129, + "c7": 2.487286176606559 }, "rgb": [58, 15, 49] }, @@ -53763,23 +53763,23 @@ "year": 1712, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -11.907390048816824, - "c2": -4.621101294222271, - "c3": -9.483826802289698, - "c4": 9.563970330828031, - "c5": -11.873987349272317, - "c6": 22.434858252803988, - "c7": 24.31200072558907 + "points": { + "c1": -20.392364928924437, + "c2": -11.547897443288974, + "c3": -23.142220681878875, + "c4": 18.171905964929923, + "c5": 21.266705189366352, + "c6": -29.13002699665635, + "c7": 18.17891927454315 }, - "vertexSeeds": { - "c1": 5.41899494844928, - "c2": 5.661980177417407, - "c3": 5.455466558881749, - "c4": 5.552886711720037, - "c5": 5.459257538192498, - "c6": 5.390929993457358, - "c7": 5.912761444187099 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [86, 146, 138] }, @@ -53790,23 +53790,23 @@ "year": 1712, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -13.20292475860369, - "c2": 23.376579819829033, - "c3": -13.076785884872834, - "c4": 38.88104621847175, - "c5": -17.237169027667115, - "c6": -7.343369424429433, - "c7": -9.483753220505257 + "points": { + "c1": -35.95609552335679, + "c2": -37.21379101538134, + "c3": -10.0855493005228, + "c4": -24.89989118739947, + "c5": -15.83329745804048, + "c6": 14.89080317543172, + "c7": -35.064150078453636 }, - "vertexSeeds": { - "c1": 3.026701566779851, - "c2": 2.8972166386557276, - "c3": 2.5821016751940595, - "c4": 3.2547978021488078, - "c5": 3.0190983778641503, - "c6": 3.2212777762036606, - "c7": 2.8857652158528193 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [238, 201, 159] }, @@ -53817,23 +53817,23 @@ "year": 1712, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 23.712902938880653, - "c2": -19.082595824889694, - "c3": -4.495357063669079, - "c4": -29.769372863731082, - "c5": -29.0192558878518, - "c6": 6.527376172827324, - "c7": -3.4036324634823423 + "points": { + "c1": -11.630495234839781, + "c2": -22.83371827879476, + "c3": 23.840188053077654, + "c4": 6.098662542037978, + "c5": -9.162387667041127, + "c6": 9.133384628219638, + "c7": 27.985661554564274 }, - "vertexSeeds": { - "c1": 5.169842907682488, - "c2": 4.653338138586125, - "c3": 5.093365731375979, - "c4": 4.950800110073093, - "c5": 5.234409484441571, - "c6": 4.5796816928945905, - "c7": 5.475463568049649 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.9889042995839095, + "c3": 6.657420249653255, + "c4": 5.32593619972261, + "c5": 3.9944521497919565, + "c6": 2.662968099861303, + "c7": 1.331484049930649 }, "rgb": [77, 76, 132] }, @@ -53844,23 +53844,23 @@ "year": 1712, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -2.512365276307161, - "c2": 31.66332077440626, - "c3": -27.10631402022144, - "c4": 27.23784104529137, - "c5": -14.850429180679125, - "c6": 0.8974167322593587, - "c7": 4.152690651129191 + "points": { + "c1": 15.146114504011877, + "c2": 8.572799203560706, + "c3": -29.333374093733767, + "c4": 31.866142873229563, + "c5": 27.19223040202487, + "c6": 31.279878036643964, + "c7": 33.834886687781875 }, - "vertexSeeds": { - "c1": 9.638620684202845, - "c2": 9.768236521803725, - "c3": 9.734542055179233, - "c4": 9.539722258534367, - "c5": 9.776899174322969, - "c6": 9.887700567261641, - "c7": 9.768532707430378 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513184, + "c3": 11.789181692094326, + "c4": 9.431345353675429, + "c5": 7.073509015256571, + "c6": 4.715672676837714, + "c7": 2.357836338418857 }, "rgb": [238, 201, 159] }, @@ -53871,23 +53871,23 @@ "year": 1713, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 9.779009064650054, - "c2": -44.95567204466802, - "c3": 27.456511958679357, - "c4": -3.5241465919707764, - "c5": -21.625884486691167, - "c6": -6.814029912269781, - "c7": -33.39248232639731 + "points": { + "c1": 4.2311316445006995, + "c2": -26.966249965421234, + "c3": -18.86168146376024, + "c4": 2.580558079307181, + "c5": 42.267481709173026, + "c6": -14.351627201841076, + "c7": 48.08163936673026 }, - "vertexSeeds": { - "c1": 5.759635233305634, - "c2": 6.45568174847588, - "c3": 6.291339181702881, - "c4": 6.259288792474134, - "c5": 6.1480811851483885, - "c6": 5.98010588493076, - "c7": 6.288548337004289 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.859454461396207, + "c4": 6.28756356911697, + "c5": 4.7156726768377215, + "c6": 3.143781784558485, + "c7": 1.571890892279249 }, "rgb": [58, 15, 49] }, @@ -53898,23 +53898,23 @@ "year": 1713, "resistanceReported": false, "duration": 42336000, - "curveSeeds": { - "c1": 49.385433998553935, - "c2": -6.7758465169986195, - "c3": 41.59080484893535, - "c4": -15.360856108661373, - "c5": 32.33555319350012, - "c6": 49.63879887334927, - "c7": -28.49530484247712 + "points": { + "c1": 43.14252894683082, + "c2": 41.67329178895433, + "c3": 38.95151314128141, + "c4": 27.91427024661681, + "c5": 15.50338972970063, + "c6": -46.73104257256441, + "c7": 52.8180103330928 }, - "vertexSeeds": { - "c1": 4.333420791525187, - "c2": 4.266203611440045, - "c3": 4.4853706294885125, - "c4": 4.119124278901442, - "c5": 4.291078253031851, - "c6": 4.101711204666198, - "c7": 4.084592458880339 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.76837725381415, + "c3": 5.640314378178456, + "c4": 4.5122515025427665, + "c5": 3.3841886269070716, + "c6": 2.2561257512713833, + "c7": 1.128062875635695 }, "rgb": [58, 15, 49] }, @@ -53925,23 +53925,23 @@ "year": 1713, "resistanceReported": false, "duration": 45360000, - "curveSeeds": { - "c1": 54.05183385086523, - "c2": 4.045504934657259, - "c3": -3.2631023501106284, - "c4": 17.14558675302137, - "c5": -10.43149897103671, - "c6": -18.88932024336114, - "c7": -37.151201247815195 + "points": { + "c1": 14.867658530891767, + "c2": -34.420984224555504, + "c3": 26.02052447574959, + "c4": 38.54814982886355, + "c5": 53.104524767445476, + "c6": -29.28787616567181, + "c7": 44.83636823254705 }, - "vertexSeeds": { - "c1": 4.883100259145354, - "c2": 5.166069466297698, - "c3": 4.970169965602644, - "c4": 5.11389789834219, - "c5": 5.48226074068544, - "c6": 5.217939546712725, - "c7": 5.120164141278618 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [58, 15, 49] }, @@ -53952,23 +53952,23 @@ "year": 1712, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -5.547551862645484, - "c2": -31.343159101359177, - "c3": 14.845285831362553, - "c4": -19.723360196465716, - "c5": -12.810108675440336, - "c6": 20.548590820672125, - "c7": 21.30194145369409 + "points": { + "c1": 0.1306991251935301, + "c2": 29.474691340152248, + "c3": 38.59616920362497, + "c4": -7.858871235723775, + "c5": 5.071540684098181, + "c6": -15.612744550219507, + "c7": 1.9318543110016435 }, - "vertexSeeds": { - "c1": 4.808552354045159, - "c2": 4.566664814887864, - "c3": 4.99045706004639, - "c4": 5.218671692517478, - "c5": 4.786525914648779, - "c6": 5.260927765133352, - "c7": 5.028030072724061 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940363, + "c3": 6.28756356911697, + "c4": 5.030050855293573, + "c5": 3.7725381414701813, + "c6": 2.515025427646784, + "c7": 1.257512713823392 }, "rgb": [77, 76, 132] }, @@ -53979,23 +53979,23 @@ "year": 1712, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -27.913711539025364, - "c2": 31.01425601099642, - "c3": -29.46127619673294, - "c4": -34.6325926222372, - "c5": -4.065688767344248, - "c6": 11.622644123900642, - "c7": 37.316653045005566 + "points": { + "c1": -10.101124944292174, + "c2": -30.25647350608348, + "c3": 7.321717269089156, + "c4": -37.76015542456294, + "c5": 28.687281183806363, + "c6": -26.169927995939254, + "c7": 28.85217910566 }, - "vertexSeeds": { - "c1": 6.108253693286025, - "c2": 5.077227605663662, - "c3": 5.6871830805027015, - "c4": 6.060405695110758, - "c5": 5.040684021416706, - "c6": 4.957218071763773, - "c7": 6.032683996656241 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [77, 76, 132] }, @@ -54006,23 +54006,23 @@ "year": 1712, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -17.22224302503179, - "c2": 4.869192444333827, - "c3": 36.273968858560316, - "c4": 18.602258911193033, - "c5": 10.973796930551146, - "c6": 19.859056957773895, - "c7": 11.720497051883399 + "points": { + "c1": -9.900065487722777, + "c2": -29.599079271019868, + "c3": 6.502625280394383, + "c4": 38.22017464314174, + "c5": -37.07947201338529, + "c6": 12.694973780478527, + "c7": -18.333652346112284 }, - "vertexSeeds": { - "c1": 3.8335203906743707, - "c2": 3.747697141813098, - "c3": 3.8087179994130107, - "c4": 3.751979421594848, - "c5": 3.841171392076935, - "c6": 3.782432138768843, - "c7": 3.771652009577024 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044386, + "c3": 4.623208506703659, + "c4": 3.6985668053629315, + "c5": 2.7739251040221813, + "c6": 1.8492834026814542, + "c7": 0.9246417013407271 }, "rgb": [58, 15, 49] }, @@ -54033,23 +54033,23 @@ "year": 1712, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -25.679217949333733, - "c2": 25.027465147642218, - "c3": -7.060773743141532, - "c4": -35.86764671687034, - "c5": 21.80212043984173, - "c6": 20.196807565260208, - "c7": -9.091380607921042 + "points": { + "c1": -10.563150860430508, + "c2": -30.997405192205008, + "c3": 24.87824689824872, + "c4": 7.920466660508033, + "c5": -2.6993182500716273, + "c6": -24.086207333767987, + "c7": 33.939085076087736 }, - "vertexSeeds": { - "c1": 10.95555431175962, - "c2": 10.514080621168414, - "c3": 10.520239304701262, - "c4": 11.092696374709776, - "c5": 10.123782234275911, - "c6": 9.981784969327704, - "c7": 11.13342185684978 + "offsets": { + "c1": 18.932038834951456, + "c2": 16.227461858529818, + "c3": 13.522884882108176, + "c4": 10.818307905686538, + "c5": 8.113730929264898, + "c6": 5.409153952843269, + "c7": 2.7045769764216296 }, "rgb": [58, 15, 49] }, @@ -54060,23 +54060,23 @@ "year": 1712, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 27.642213029265594, - "c2": 17.294247896017897, - "c3": -29.66685798518237, - "c4": -6.952519000676457, - "c5": 14.49528946189481, - "c6": 28.46761662143295, - "c7": 1.0405224493879075 + "points": { + "c1": 13.62765146121368, + "c2": -26.601504417982497, + "c3": 27.570661680329067, + "c4": -25.298350512349966, + "c5": -12.777980262226098, + "c6": 28.033964635701132, + "c7": -12.166956247873735 }, - "vertexSeeds": { - "c1": 2.092415223388498, - "c2": 1.9539751279143887, - "c3": 2.0246268152398383, - "c4": 1.8335497715687932, - "c5": 2.0338410731367964, - "c6": 1.8515985277424272, - "c7": 2.154916302796882 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786409, + "c3": 2.750809061488673, + "c4": 2.2006472491909395, + "c5": 1.6504854368932032, + "c6": 1.1003236245954697, + "c7": 0.5501618122977359 }, "rgb": [238, 201, 159] }, @@ -54087,23 +54087,23 @@ "year": 1712, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -10.303418099664068, - "c2": 26.712288602009494, - "c3": 31.31971642999021, - "c4": 2.8777562078403847, - "c5": -10.925586899873544, - "c6": -16.95170394096005, - "c7": 28.707809420530644 + "points": { + "c1": -19.041046766251853, + "c2": -29.449295166958596, + "c3": -4.709481179157262, + "c4": 11.054598931502127, + "c5": -2.9858375567254427, + "c6": -9.311994691921146, + "c7": -12.274318358458526 }, - "vertexSeeds": { - "c1": 7.6625594980881875, - "c2": 6.319077539947361, - "c3": 7.47031540456111, - "c4": 7.354988438109023, - "c5": 6.9451974114263395, - "c6": 7.5189733461005925, - "c7": 7.515551675486186 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [77, 76, 132] }, @@ -54114,23 +54114,23 @@ "year": 1712, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 17.656053062580902, - "c2": 19.010898634425843, - "c3": -29.642114400167497, - "c4": 10.9756650343626, - "c5": 2.2816111837596793, - "c6": -9.646362164173393, - "c7": 28.456468826544025 + "points": { + "c1": -28.790167344667637, + "c2": -24.014014443516743, + "c3": -25.897362603852343, + "c4": -13.916783903464765, + "c5": -27.325680477727566, + "c6": 33.9313518489751, + "c7": 25.921205832409157 }, - "vertexSeeds": { - "c1": 8.478360652841578, - "c2": 8.617052237798811, - "c3": 8.557161287256777, - "c4": 8.247149629985635, - "c5": 8.22695439447672, - "c6": 8.253540853740983, - "c7": 8.158723192308639 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.89875173370319, + "c3": 10.748959778085991, + "c4": 8.599167822468793, + "c5": 6.449375866851595, + "c6": 4.2995839112343965, + "c7": 2.1497919556171983 }, "rgb": [222, 0, 59] }, @@ -54141,23 +54141,23 @@ "year": 1712, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 31.568905845088594, - "c2": 9.01452281165443, - "c3": 15.713440297832719, - "c4": 23.253534563226673, - "c5": 2.991552131625923, - "c6": 31.28666490636165, - "c7": 24.289139709621246 + "points": { + "c1": -22.805513917333386, + "c2": 6.236964593896822, + "c3": -31.12679885868291, + "c4": 19.340239708096703, + "c5": -31.22504469696793, + "c6": 24.31922731546571, + "c7": 32.27625707290166 }, - "vertexSeeds": { - "c1": 6.714794660666291, - "c2": 7.518828100089566, - "c3": 6.586928231816706, - "c4": 6.8777833525742, - "c5": 7.570687026083336, - "c6": 7.470808189987379, - "c7": 7.888013835949447 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571425, + "c3": 9.523809523809526, + "c4": 7.619047619047618, + "c5": 5.714285714285717, + "c6": 3.809523809523809, + "c7": 1.9047619047618995 }, "rgb": [238, 201, 159] }, @@ -54168,23 +54168,23 @@ "year": 1713, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 5.21103167386115, - "c2": 3.4974502627601325, - "c3": 20.561696473313567, - "c4": -23.762561711557865, - "c5": -13.408466109186016, - "c6": -6.280185356295547, - "c7": -15.395813865890766 + "points": { + "c1": 1.5533800217337443, + "c2": -26.027209693292058, + "c3": 26.8574871754781, + "c4": 2.4537720122492743, + "c5": -0.3324227420766519, + "c6": -13.085937854296095, + "c7": 22.061571789778277 }, - "vertexSeeds": { - "c1": 2.726260821929713, - "c2": 2.600111981326278, - "c3": 2.917629276350396, - "c4": 3.460853187651523, - "c5": 3.442838951199188, - "c6": 2.3306655870620827, - "c7": 2.594164572037949 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.6232085067036515, + "c4": 3.698566805362922, + "c5": 2.7739251040221906, + "c6": 1.849283402681461, + "c7": 0.9246417013407305 }, "rgb": [222, 0, 59] }, @@ -54195,23 +54195,23 @@ "year": 1712, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 2.7845109767403926, - "c2": 6.953200404490275, - "c3": 31.74759237173093, - "c4": -4.953002140769335, - "c5": 32.405482936069376, - "c6": 10.659607703031405, - "c7": -17.18937456212767 + "points": { + "c1": -25.007982651014874, + "c2": 23.56116737530668, + "c3": 22.180738430906253, + "c4": 33.08832171785764, + "c5": 33.020818292400534, + "c6": -33.084668099151465, + "c7": -16.562274439280436 }, - "vertexSeeds": { - "c1": 8.71750411121637, - "c2": 8.636124341686928, - "c3": 8.531297272643258, - "c4": 8.715777547070001, - "c5": 8.715193078681123, - "c6": 8.641400078679702, - "c7": 8.556104759623956 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099836, + "c3": 10.402219140083252, + "c4": 8.321775312066586, + "c5": 6.241331484049918, + "c6": 4.160887656033334, + "c7": 2.080443828016667 }, "rgb": [238, 201, 159] }, @@ -54222,23 +54222,23 @@ "year": 1713, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -25.833648651773263, - "c2": -8.291479329169924, - "c3": -7.359014119176649, - "c4": 8.498021659906016, - "c5": -6.903945656846375, - "c6": -11.032418375139812, - "c7": -18.48666137178236 + "points": { + "c1": -21.275661939468826, + "c2": -5.451086563999539, + "c3": -7.553752300052587, + "c4": 16.958840328730062, + "c5": -24.01910744085027, + "c6": -26.16278787878272, + "c7": 37.14253542982327 }, - "vertexSeeds": { - "c1": 3.4031863066328407, - "c2": 3.42268289594263, - "c3": 3.4769774885415807, - "c4": 3.6793876843173683, - "c5": 3.7496182671945313, - "c6": 3.3789036487486936, - "c7": 3.332439993990722 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923718, + "c3": 4.5538603791031, + "c4": 3.643088303282481, + "c5": 2.7323162274618626, + "c6": 1.821544151641244, + "c7": 0.9107720758206254 }, "rgb": [86, 146, 138] }, @@ -54249,23 +54249,23 @@ "year": 1712, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 2.0046851353708384, - "c2": -21.24837135084117, - "c3": -26.03438246652094, - "c4": 26.964888166461936, - "c5": -11.474464099884312, - "c6": 6.3822072584334215, - "c7": -7.173261557888392 + "points": { + "c1": 8.886201509500225, + "c2": 20.31111078711649, + "c3": 18.130684593993877, + "c4": -18.56797217931021, + "c5": 12.337320912977255, + "c6": 3.972391420503058, + "c7": -9.209119662753992 }, - "vertexSeeds": { - "c1": 4.264922368196197, - "c2": 3.9004946783490846, - "c3": 4.443653040546897, - "c4": 4.165954940355153, - "c5": 4.08730497505158, - "c6": 4.256037558768641, - "c7": 4.4179785240556875 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [77, 76, 132] }, @@ -54276,23 +54276,23 @@ "year": 1713, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -34.70206172269001, - "c2": 23.97562411086573, - "c3": -23.333469840507426, - "c4": -7.969130264018716, - "c5": 8.540538112083262, - "c6": 23.793412136330375, - "c7": 17.03698404223301 + "points": { + "c1": 22.10170222706987, + "c2": -25.47163343536765, + "c3": 30.242822528535854, + "c4": 8.146167464132589, + "c5": 33.17814722170995, + "c6": -9.675433270213855, + "c7": -31.15528397221741 }, - "vertexSeeds": { - "c1": 4.9378469636073286, - "c2": 4.884326055954382, - "c3": 5.284741673869818, - "c4": 4.907789420976295, - "c5": 4.26104805865216, - "c6": 4.991287688422595, - "c7": 4.783298047587936 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980583, + "c3": 6.310679611650486, + "c4": 5.048543689320389, + "c5": 3.7864077669902914, + "c6": 2.5242718446601944, + "c7": 1.2621359223300972 }, "rgb": [86, 146, 138] }, @@ -54303,23 +54303,23 @@ "year": 1713, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 8.794459721937287, - "c2": -4.756160855832547, - "c3": -22.74421643414501, - "c4": -22.562929582689915, - "c5": -26.040745791887048, - "c6": -14.489077700128234, - "c7": 1.3239530200103786 + "points": { + "c1": -7.237158331242512, + "c2": 15.303115381095857, + "c3": -15.764072147469207, + "c4": -3.793380517653354, + "c5": -12.142666256266278, + "c6": -25.158681258618927, + "c7": -36.30644215263451 }, - "vertexSeeds": { - "c1": 2.1651466232581664, - "c2": 2.160920971415583, - "c3": 2.1158291446045174, - "c4": 2.1005467176261305, - "c5": 2.322647208866841, - "c6": 2.251497848260442, - "c7": 2.2726156533818282 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [58, 15, 49] }, @@ -54330,23 +54330,23 @@ "year": 1713, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 13.450339931386928, - "c2": 20.600197151899195, - "c3": 1.6382958616217138, - "c4": 18.86168798987802, - "c5": 5.4733874083766025, - "c6": -6.086671877929334, - "c7": 10.514815371029478 + "points": { + "c1": 7.998086103215805, + "c2": 16.09219885538355, + "c3": -3.7929585974983695, + "c4": 15.913154886138194, + "c5": 29.583111860059205, + "c6": -6.83681343516681, + "c7": 8.014315734432081 }, - "vertexSeeds": { - "c1": 7.69379833404195, - "c2": 7.882062023666106, - "c3": 8.41815099079029, - "c4": 7.999343983815136, - "c5": 8.02497138385068, - "c6": 8.396425076208406, - "c7": 7.73279582943826 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220527, + "c3": 10.471567267683774, + "c4": 8.377253814147018, + "c5": 6.282940360610263, + "c6": 4.188626907073509, + "c7": 2.0943134535367545 }, "rgb": [58, 15, 49] }, @@ -54357,23 +54357,23 @@ "year": 1713, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 2.552561559743168, - "c2": -9.182195566753396, - "c3": 12.05372392367493, - "c4": -27.069694893570958, - "c5": -3.139789738636683, - "c6": 12.550593894061393, - "c7": -31.029580376521537 + "points": { + "c1": 4.285483198234978, + "c2": -17.000335026874, + "c3": -19.928868499934676, + "c4": 9.51934578278243, + "c5": -11.447802912814428, + "c6": -10.420436409041844, + "c7": 34.60971198455775 }, - "vertexSeeds": { - "c1": 1.9902572607430193, - "c2": 2.1113858648723443, - "c3": 2.074939203167471, - "c4": 1.8299325236417738, - "c5": 1.9296081489237429, - "c6": 1.9005194386121456, - "c7": 1.9551375290280129 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.5427646786870075, + "c4": 2.034211742949606, + "c5": 1.5256588072122033, + "c6": 1.0171058714748045, + "c7": 0.5085529357374022 }, "rgb": [77, 76, 132] }, @@ -54384,23 +54384,23 @@ "year": 1713, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -5.503203138802441, - "c2": 1.3154178750530932, - "c3": 6.584045445688709, - "c4": 29.40799107470093, - "c5": -33.32768129798496, - "c6": -11.815051560145498, - "c7": -18.370248623546825 + "points": { + "c1": -2.8717069092459298, + "c2": 30.408973790289707, + "c3": 27.985737900009795, + "c4": -33.45333878046704, + "c5": -9.622228070259442, + "c6": 33.16041591443509, + "c7": -15.894136417492167 }, - "vertexSeeds": { - "c1": 5.735649700802291, - "c2": 6.231517135429031, - "c3": 5.42396064918223, - "c4": 6.0065481509399525, - "c5": 5.905653162687399, - "c6": 5.749332407249168, - "c7": 5.504731006611839 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072123, + "c3": 7.512713823393437, + "c4": 6.010171058714743, + "c5": 4.507628294036057, + "c6": 3.0050855293573715, + "c7": 1.5025427646786857 }, "rgb": [58, 15, 49] }, @@ -54411,23 +54411,23 @@ "year": 1713, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -23.58138036171512, - "c2": -10.133968917401774, - "c3": 20.133863946988726, - "c4": -12.86445259453917, - "c5": 34.73847175974697, - "c6": 23.50627230368071, - "c7": 30.41901092710556 + "points": { + "c1": -35.04846174043731, + "c2": -37.334950539456926, + "c3": -32.01816561357385, + "c4": -15.899465751302241, + "c5": -15.76093638097538, + "c6": 6.115247315545751, + "c7": -17.260352020962948 }, - "vertexSeeds": { - "c1": 4.085052509769719, - "c2": 4.201196768498082, - "c3": 4.579968384868446, - "c4": 4.358489434056452, - "c5": 4.526359150200352, - "c6": 4.527064383732178, - "c7": 4.174855874125413 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773926, + "c3": 5.617198335644939, + "c4": 4.493758668515946, + "c5": 3.3703190013869593, + "c6": 2.246879334257973, + "c7": 1.1234396671289866 }, "rgb": [77, 76, 132] }, @@ -54438,23 +54438,23 @@ "year": 1713, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -10.841725994233645, - "c2": -13.571957763328498, - "c3": -35.22036145393066, - "c4": -22.743201678135357, - "c5": 17.51999969606699, - "c6": -35.4383481570266, - "c7": -10.295653128199824 + "points": { + "c1": -14.012971888646149, + "c2": 31.274184235728598, + "c3": -30.94636302269575, + "c4": -0.06452603426930636, + "c5": -5.129341802409385, + "c6": 14.812206520933643, + "c7": -7.508958565956895 }, - "vertexSeeds": { - "c1": 5.902226294116196, - "c2": 5.431348132520279, - "c3": 4.955119128196852, - "c4": 5.608534812516485, - "c5": 5.826359651066517, - "c6": 5.456418931208628, - "c7": 5.051754601974326 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [58, 15, 49] }, @@ -54465,23 +54465,23 @@ "year": 1713, "resistanceReported": false, "duration": 40348800, - "curveSeeds": { - "c1": 16.443698209575565, - "c2": -22.760219989419394, - "c3": -28.518530713071332, - "c4": 24.352040032589294, - "c5": 16.833012747323558, - "c6": 52.93272388832397, - "c7": -3.346948750791043 + "points": { + "c1": -40.75031797745718, + "c2": 52.85381722584611, + "c3": -50.34101775605108, + "c4": 55.47112665446789, + "c5": -44.759568451316895, + "c6": 2.747357448817546, + "c7": 52.502766556301204 }, - "vertexSeeds": { - "c1": 10.766899690681578, - "c2": 10.072824459932296, - "c3": 9.972212391248673, - "c4": 9.86872165921622, - "c5": 9.839909431520011, - "c6": 9.781588169609245, - "c7": 9.597191855783533 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.532593619972257, + "c3": 13.777161349976893, + "c4": 11.021729079981512, + "c5": 8.266296809986128, + "c6": 5.510864539990766, + "c7": 2.755432269995383 }, "rgb": [58, 15, 49] }, @@ -54492,23 +54492,23 @@ "year": 1713, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 27.903217811863406, - "c2": 26.331148341890973, - "c3": 16.731057578728752, - "c4": -5.535669837438203, - "c5": 27.373072585604348, - "c6": -5.303774999970589, - "c7": -0.7232288810953733 + "points": { + "c1": 1.9074829981738404, + "c2": -22.550701914493764, + "c3": -20.311723022794904, + "c4": -12.539787403401903, + "c5": -12.139002727489185, + "c6": 14.43405993906741, + "c7": 15.77413977865212 }, - "vertexSeeds": { - "c1": 6.849941371046095, - "c2": 6.868399475800691, - "c3": 8.661859100786165, - "c4": 8.086817784061314, - "c5": 7.268273104386904, - "c6": 7.6850642331976635, - "c7": 7.256624992033057 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904297, + "c3": 10.864539990753581, + "c4": 8.69163199260287, + "c5": 6.518723994452152, + "c6": 4.345815996301435, + "c7": 2.1729079981507176 }, "rgb": [58, 15, 49] }, @@ -54519,23 +54519,23 @@ "year": 1713, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 16.023716729353495, - "c2": -2.8897988144741156, - "c3": 8.016458155357391, - "c4": 8.875022315375624, - "c5": 25.13492841468225, - "c6": 30.012761128952008, - "c7": -22.53677515204182 + "points": { + "c1": 9.707983078608706, + "c2": 7.077346654043026, + "c3": 17.60405935216044, + "c4": -14.639138797754494, + "c5": 21.201204751115966, + "c6": -15.20557732523078, + "c7": -8.358590957044793 }, - "vertexSeeds": { - "c1": 4.439197740220945, - "c2": 5.577223270728515, - "c3": 5.012861844872527, - "c4": 5.1590973608851645, - "c5": 4.734667680357698, - "c6": 5.2441828161260595, - "c7": 5.51106709560821 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055476, + "c4": 5.5478502080443866, + "c5": 4.160887656033291, + "c6": 2.7739251040221933, + "c7": 1.3869625520110966 }, "rgb": [58, 15, 49] }, @@ -54546,23 +54546,23 @@ "year": 1713, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -31.597578288687604, - "c2": 12.207556553716259, - "c3": -16.512493662183676, - "c4": 23.857900752902232, - "c5": 18.250142190496213, - "c6": -33.5389411512805, - "c7": 15.400367704996064 + "points": { + "c1": -26.473529413508672, + "c2": 23.294769437648362, + "c3": 13.267149277436694, + "c4": -33.963223033645036, + "c5": 20.575918847693842, + "c6": -35.49162021384348, + "c7": 34.722725076085155 }, - "vertexSeeds": { - "c1": 4.077746005906681, - "c2": 4.067210234568403, - "c3": 3.730938808543291, - "c4": 3.6324655458870447, - "c5": 3.814897534124585, - "c6": 3.761734784978971, - "c7": 3.6423368704327292 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.85298196948682, + "c3": 4.877484974572353, + "c4": 3.9019879796578802, + "c5": 2.9264909847434133, + "c6": 1.9509939898289401, + "c7": 0.9754969949144668 }, "rgb": [58, 15, 49] }, @@ -54573,23 +54573,23 @@ "year": 1713, "resistanceReported": false, "duration": 8208000, - "curveSeeds": { - "c1": -16.557218273440974, - "c2": -14.818771160142013, - "c3": -16.174256287675405, - "c4": 10.977004143307283, - "c5": 8.017951655610581, - "c6": -0.8956200177741529, - "c7": 2.7251730025181473 + "points": { + "c1": -6.62196791563346, + "c2": -13.484855743863555, + "c3": 1.7950842007502388, + "c4": -14.185252285254672, + "c5": -11.587164986036447, + "c6": -4.931913598393001, + "c7": -15.526785128371603 }, - "vertexSeeds": { - "c1": 6.031786499506714, - "c2": 5.407358298673988, - "c3": 6.085018000801577, - "c4": 4.900421740949496, - "c5": 5.45336382504331, - "c6": 5.125964879105292, - "c7": 5.532592684875375 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [238, 201, 159] }, @@ -54600,23 +54600,23 @@ "year": 1713, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 4.832976757691952, - "c2": -5.791816313400442, - "c3": 9.747953028215811, - "c4": -9.525601111409049, - "c5": 0.14991277717265206, - "c6": 22.46284487409615, - "c7": -19.615603361855957 + "points": { + "c1": 1.3314653385268613, + "c2": -7.931358632584445, + "c3": -23.128584187903485, + "c4": 21.20712785669074, + "c5": 20.184587731063004, + "c6": 24.398690986014437, + "c7": -10.448155113249925 }, - "vertexSeeds": { - "c1": 1.2793437288144107, - "c2": 1.4411027961092464, - "c3": 1.2447586834906894, - "c4": 1.2763247393846167, - "c5": 1.2622665606787293, - "c6": 1.2691269339783815, - "c7": 1.448684022885508 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177544, + "c3": 1.8492834026814609, + "c4": 1.4794267221451693, + "c5": 1.1095700416088763, + "c6": 0.7397133610725847, + "c7": 0.36985668053629234 }, "rgb": [77, 76, 132] }, @@ -54627,23 +54627,23 @@ "year": 1713, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -16.110609847598216, - "c2": -27.82760300756584, - "c3": 15.990282309331697, - "c4": -1.310397576913907, - "c5": -24.17691510277819, - "c6": 23.602043962828176, - "c7": -5.898669690493719 + "points": { + "c1": -6.833445801684256, + "c2": 19.783436796247997, + "c3": -10.421175690967196, + "c4": -22.82907121766511, + "c5": 0.4002040965486344, + "c6": 21.868044396216874, + "c7": 3.281495891306996 }, - "vertexSeeds": { - "c1": 5.954270862006024, - "c2": 5.1735940479812585, - "c3": 5.9155669900084495, - "c4": 5.105137320265546, - "c5": 5.823438625610406, - "c6": 5.475777065457385, - "c7": 5.735803842437135 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710126, + "c3": 7.3046694405917725, + "c4": 5.843735552473419, + "c5": 4.382801664355065, + "c6": 2.921867776236711, + "c7": 1.4609338881183536 }, "rgb": [222, 0, 59] }, @@ -54654,23 +54654,23 @@ "year": 1713, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -1.5742889606167587, - "c2": 26.24321500411354, - "c3": -18.531731213319702, - "c4": 11.155986183691585, - "c5": -19.77762563289889, - "c6": 24.55833233323278, - "c7": 18.841721603349907 + "points": { + "c1": 23.014393817215744, + "c2": -28.401121541978277, + "c3": -24.192939609072365, + "c4": 7.574824009990078, + "c5": 3.4196633099783007, + "c6": -20.44276583167349, + "c7": -30.21562579676362 }, - "vertexSeeds": { - "c1": 2.750802624779908, - "c2": 2.643080882746162, - "c3": 2.6780881696188246, - "c4": 2.6829298568827156, - "c5": 2.701631452733081, - "c6": 2.743730875878702, - "c7": 2.7549867771033454 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.02219140083218, + "c3": 3.351826167360153, + "c4": 2.6814609338881255, + "c5": 2.011095700416098, + "c6": 1.3407304669440545, + "c7": 0.6703652334720273 }, "rgb": [238, 201, 159] }, @@ -54681,23 +54681,23 @@ "year": 1713, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 0.5115943335183388, - "c2": 27.762440391324205, - "c3": -0.21250915134048043, - "c4": 29.839878256411886, - "c5": -31.211290118570098, - "c6": 14.409214382156165, - "c7": -2.9312476390856474 + "points": { + "c1": 2.048748741009639, + "c2": 23.286121971093472, + "c3": -26.524979518418114, + "c4": -29.30548016819001, + "c5": 19.61929411337472, + "c6": 23.087298159298584, + "c7": -15.900698911807737 }, - "vertexSeeds": { - "c1": 2.5449044899157593, - "c2": 2.6392182723973825, - "c3": 2.593726999210899, - "c4": 2.7894883899902054, - "c5": 2.837637767378982, - "c6": 2.6130090497560032, - "c7": 2.66222106002749 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314841, + "c3": 3.6292186777623687, + "c4": 2.9033749422098905, + "c5": 2.177531206657418, + "c6": 1.4516874711049452, + "c7": 0.7258437355524726 }, "rgb": [77, 76, 132] }, @@ -54708,23 +54708,23 @@ "year": 1713, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 26.954794264583292, - "c2": 0.05815652686473527, - "c3": 9.764977435600585, - "c4": 22.329886125321174, - "c5": -5.000348698560696, - "c6": 9.183652512864079, - "c7": -27.36321091132309 + "points": { + "c1": -17.894997743201156, + "c2": 0.3170595720532816, + "c3": -10.171135915185754, + "c4": 33.17915918765958, + "c5": 20.203291533774873, + "c6": 6.967471789944248, + "c7": 22.81055573906106 }, - "vertexSeeds": { - "c1": 3.838606108937292, - "c2": 3.6924251180026904, - "c3": 3.8598814989121517, - "c4": 3.915704463828786, - "c5": 3.7686407176737307, - "c6": 3.7716279516206215, - "c7": 3.751676644301247 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205271, + "c3": 4.715672676837726, + "c4": 3.7725381414701804, + "c5": 2.8294036061026353, + "c6": 1.8862690707350902, + "c7": 0.9431345353675451 }, "rgb": [77, 76, 132] }, @@ -54735,23 +54735,23 @@ "year": 1713, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 17.84115353979973, - "c2": -11.958335407951509, - "c3": -2.8979307121582636, - "c4": 18.09858506594534, - "c5": 8.814539788478786, - "c6": -9.630538073057508, - "c7": 13.05494573856559 + "points": { + "c1": 17.254517765700474, + "c2": -17.862927011428937, + "c3": 22.122123965145395, + "c4": -4.2444872179428295, + "c5": 26.936386286183083, + "c6": 8.959766815395984, + "c7": 28.24937582650386 }, - "vertexSeeds": { - "c1": 4.920191008936053, - "c2": 4.881643279927932, - "c3": 4.746281811246148, - "c4": 5.035424529964365, - "c5": 5.41904656520568, - "c6": 4.935290797558697, - "c7": 4.679952889305218 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302355, + "c3": 6.495607951918625, + "c4": 5.196486361534908, + "c5": 3.8973647711511776, + "c6": 2.5982431807674478, + "c7": 1.2991215903837239 }, "rgb": [222, 0, 59] }, @@ -54762,23 +54762,23 @@ "year": 1713, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -22.441707547151264, - "c2": -23.79470455535124, - "c3": 14.955472597083578, - "c4": 28.6027050950389, - "c5": 28.28084967825714, - "c6": -14.493328708917868, - "c7": 7.169695381998977 + "points": { + "c1": -23.74456838586034, + "c2": -25.054798726985872, + "c3": -8.02505249950714, + "c4": 3.3752301849737947, + "c5": -7.8518612624842135, + "c6": -23.50107913239376, + "c7": -3.610722710446609 }, - "vertexSeeds": { - "c1": 2.549013793740051, - "c2": 2.486065498337132, - "c3": 2.5304063014949465, - "c4": 2.381385191544834, - "c5": 2.727513002356875, - "c6": 2.474297412665483, - "c7": 2.4961769452965563 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.3980582524271816, + "c4": 2.718446601941747, + "c5": 2.038834951456311, + "c6": 1.3592233009708707, + "c7": 0.6796116504854354 }, "rgb": [86, 146, 138] }, @@ -54789,23 +54789,23 @@ "year": 1713, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 27.412323419813937, - "c2": 12.373894693323948, - "c3": 10.456997559742959, - "c4": 23.47929621588294, - "c5": 10.160368027247749, - "c6": -16.15901516956653, - "c7": 21.242916752014743 + "points": { + "c1": -4.323429661164802, + "c2": -5.386968123665991, + "c3": -7.105229361502822, + "c4": 27.0172005636746, + "c5": -3.9446878846019047, + "c6": -13.129191521551267, + "c7": -4.2234716094989615 }, - "vertexSeeds": { - "c1": 4.115254425175045, - "c2": 4.059488522509186, - "c3": 3.7167963377064153, - "c4": 4.32935414489451, - "c5": 3.941637686717738, - "c6": 4.251631167948037, - "c7": 4.420456199935172 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -54816,23 +54816,23 @@ "year": 1713, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 14.270417190648494, - "c2": 31.156625337751976, - "c3": -22.779258316522167, - "c4": -21.001128787694842, - "c5": 3.1936648887129664, - "c6": -34.086259397117026, - "c7": 30.152391598087036 + "points": { + "c1": 22.74527364351264, + "c2": -26.491755287345693, + "c3": 28.567772437974995, + "c4": -23.46784230671355, + "c5": -29.19219848226151, + "c6": 39.69151430392175, + "c7": 4.322113849391904 }, - "vertexSeeds": { - "c1": 4.925019626840632, - "c2": 4.713515879758308, - "c3": 5.031515172900355, - "c4": 4.8207392124036765, - "c5": 5.380804788282879, - "c6": 5.034175983089784, - "c7": 5.275864123071601 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342579, + "c3": 6.51872399445215, + "c4": 5.214979195561719, + "c5": 3.9112343966712895, + "c6": 2.6074895977808596, + "c7": 1.3037447988904298 }, "rgb": [58, 15, 49] }, @@ -54843,23 +54843,23 @@ "year": 1714, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -51.40942422896798, - "c2": 13.435356636299595, - "c3": -14.88929199352767, - "c4": 10.571514296254712, - "c5": 25.780968259827965, - "c6": 40.41302701397698, - "c7": 33.68285145647831 + "points": { + "c1": -15.964092885165428, + "c2": 0.07803294019911533, + "c3": 25.28828341183678, + "c4": 6.310431570381674, + "c5": -16.572796319806983, + "c6": -41.668465243069, + "c7": 5.866798379564173 }, - "vertexSeeds": { - "c1": 5.348811711765929, - "c2": 4.821884443274897, - "c3": 5.284121375095989, - "c4": 5.220484659516386, - "c5": 5.057489500297487, - "c6": 4.871107778158542, - "c7": 5.129205290017107 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141471, + "c3": 6.403143781784562, + "c4": 5.122515025427647, + "c5": 3.8418862690707356, + "c6": 2.5612575127138206, + "c7": 1.2806287563569103 }, "rgb": [86, 146, 138] }, @@ -54870,23 +54870,23 @@ "year": 1714, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 35.11859549398638, - "c2": 25.24770470254237, - "c3": 12.067967026831212, - "c4": 10.438619565259202, - "c5": -38.15154500801277, - "c6": -15.172468750521837, - "c7": -16.482667191726417 + "points": { + "c1": -40.59434402368622, + "c2": -36.774399558081086, + "c3": 26.175154029851207, + "c4": 3.995849293249009, + "c5": -17.31966854198523, + "c6": 1.9052375667972683, + "c7": -26.02903721820929 }, - "vertexSeeds": { - "c1": 6.653165250932286, - "c2": 6.676831993048074, - "c3": 6.656353178796702, - "c4": 6.122990260999857, - "c5": 6.21636018541048, - "c6": 6.117062956271471, - "c7": 6.648616312777104 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.3564493758668497, + "c7": 1.6782246879334186 }, "rgb": [58, 15, 49] }, @@ -54897,23 +54897,23 @@ "year": 1713, "resistanceReported": false, "duration": 1814400, - "curveSeeds": { - "c1": 10.41885403940966, - "c2": -7.705654201526619, - "c3": -10.657022278652306, - "c4": -7.740617825276961, - "c5": 7.7072441556435685, - "c6": 0.4362984173575146, - "c7": 6.936125923899443 + "points": { + "c1": 3.4406859249653436, + "c2": 12.719819020317008, + "c3": -3.3473773485576714, + "c4": 3.256537237192447, + "c5": 4.152580331684707, + "c6": 9.206961943947515, + "c7": -6.481173179093158 }, - "vertexSeeds": { - "c1": 4.704797962993341, - "c2": 4.6108512178050205, - "c3": 4.904419177358889, - "c4": 5.176939069037278, - "c5": 4.927947682862835, - "c6": 4.590274958301952, - "c7": 4.777487670487627 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -54924,23 +54924,23 @@ "year": 1713, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -27.634986058776597, - "c2": 24.920584342636225, - "c3": -18.47280152233666, - "c4": 7.032183376732085, - "c5": 16.85677008502936, - "c6": -9.50243214305672, - "c7": -7.860388918291346 + "points": { + "c1": 25.329852644599008, + "c2": -21.489521768326036, + "c3": 27.945336966289766, + "c4": 14.481807269095277, + "c5": 20.515260592778773, + "c6": 12.148998072932926, + "c7": -23.444074492576057 }, - "vertexSeeds": { - "c1": 4.532242847960275, - "c2": 4.411710807422169, - "c3": 4.154342914441669, - "c4": 4.794315275976992, - "c5": 4.331879847752814, - "c6": 4.185467022065825, - "c7": 4.196142785086553 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055475, + "c3": 5.779010633379566, + "c4": 4.623208506703651, + "c5": 3.4674063800277404, + "c6": 2.3116042533518253, + "c7": 1.1558021266759102 }, "rgb": [77, 76, 132] }, @@ -54951,23 +54951,23 @@ "year": 1714, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -34.364588603528304, - "c2": -31.85110582313923, - "c3": 24.411738817191548, - "c4": -38.9165335981678, - "c5": -15.59299742679578, - "c6": -29.56584732388109, - "c7": -38.72420878981911 + "points": { + "c1": 21.440851800315087, + "c2": -47.323193891280674, + "c3": -31.616437212328993, + "c4": -23.691557429523193, + "c5": -23.86652174588222, + "c6": 2.1033370483993323, + "c7": -18.188443504099766 }, - "vertexSeeds": { - "c1": 10.92184381976666, - "c2": 10.931908313316333, - "c3": 10.878585348490775, - "c4": 11.057409702436463, - "c5": 11.076687645588695, - "c6": 11.057987871993554, - "c7": 11.046733435417567 + "offsets": { + "c1": 18.51132686084142, + "c2": 15.866851595006974, + "c3": 13.222376329172384, + "c4": 10.577901063337936, + "c5": 7.933425797503487, + "c6": 5.288950531669038, + "c7": 2.6444752658344486 }, "rgb": [77, 76, 132] }, @@ -54978,23 +54978,23 @@ "year": 1713, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 28.123941545215864, - "c2": -31.35514771168254, - "c3": 21.412068372394998, - "c4": -0.37480785369751857, - "c5": -31.200223714680387, - "c6": -11.839095111063116, - "c7": -20.807376970550433 + "points": { + "c1": 15.393446907338294, + "c2": -21.7939975463043, + "c3": -10.366058901661553, + "c4": -3.696667397466058, + "c5": 10.214829701847876, + "c6": -25.877372529284294, + "c7": 28.769868866346172 }, - "vertexSeeds": { - "c1": 6.0795971570325325, - "c2": 6.106854276234506, - "c3": 5.865740906739074, - "c4": 5.637642209228627, - "c5": 5.351758114021546, - "c6": 5.5080629201036455, - "c7": 6.449425204154216 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661579, + "c4": 6.15811373092926, + "c5": 4.618585298196953, + "c6": 3.079056865464635, + "c7": 1.5395284327323175 }, "rgb": [238, 201, 159] }, @@ -55005,23 +55005,23 @@ "year": 1715, "resistanceReported": false, "duration": 63072000, - "curveSeeds": { - "c1": 30.955933231875633, - "c2": 33.672113553007264, - "c3": 67.83051940561026, - "c4": 0.7821261442469165, - "c5": 8.35524783283617, - "c6": -75.47926934921907, - "c7": -30.73099062892404 + "points": { + "c1": -9.502291791318058, + "c2": -59.0154960006029, + "c3": -30.775173189591094, + "c4": 60.623030562022024, + "c5": 19.996311472296796, + "c6": 53.07170356873476, + "c7": -10.251314863184263 }, - "vertexSeeds": { - "c1": 2.7920391258068635, - "c2": 2.394680035806565, - "c3": 2.508113222978021, - "c4": 2.788737526961856, - "c5": 2.3819167434054376, - "c6": 2.7335650463494954, - "c7": 2.6974499028012864 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832177, + "c3": 3.3518261673601457, + "c4": 2.68146093388812, + "c5": 2.0110957004160896, + "c6": 1.3407304669440587, + "c7": 0.6703652334720306 }, "rgb": [222, 0, 59] }, @@ -55032,23 +55032,23 @@ "year": 1714, "resistanceReported": false, "duration": 62899200, - "curveSeeds": { - "c1": 76.83714051035486, - "c2": 50.75298636948256, - "c3": -29.999047216123884, - "c4": -56.43042246948819, - "c5": 41.69026878127562, - "c6": -16.062254008500652, - "c7": -26.719653239529627 + "points": { + "c1": -36.4307220798604, + "c2": -56.49051699873337, + "c3": 58.30238133031608, + "c4": -47.40649562457373, + "c5": 69.48455101154647, + "c6": -10.940890189699402, + "c7": 65.11323037530869 }, - "vertexSeeds": { - "c1": 4.525616878882995, - "c2": 4.929728070514073, - "c3": 4.987836976541418, - "c4": 5.003172119604724, - "c5": 5.1289080759607435, - "c6": 4.592106604483327, - "c7": 4.857732739427979 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905685, + "c3": 6.842348589921408, + "c4": 5.473878871937124, + "c5": 4.10540915395284, + "c6": 2.7369394359685635, + "c7": 1.36846971798428 }, "rgb": [238, 201, 159] }, @@ -55059,23 +55059,23 @@ "year": 1714, "resistanceReported": false, "duration": 60739200, - "curveSeeds": { - "c1": 45.66921667948431, - "c2": 59.63695418296163, - "c3": 0.15302007954873886, - "c4": -1.1820450685833919, - "c5": -54.345708661808345, - "c6": 43.42265756602568, - "c7": -51.800982975175174 + "points": { + "c1": -27.394463420535907, + "c2": -77.50009995904692, + "c3": 54.01172832331133, + "c4": -41.49682976537323, + "c5": 27.69074717626195, + "c6": -60.22606037483092, + "c7": -61.38434246397608 }, - "vertexSeeds": { - "c1": 1.6019496778012288, - "c2": 1.6973689002698695, - "c3": 1.763358107135125, - "c4": 1.478306370921937, - "c5": 1.7192391197846304, - "c6": 1.7468521937007857, - "c7": 1.7987528859498776 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022191, + "c3": 2.3116042533518253, + "c4": 1.8492834026814617, + "c5": 1.3869625520110964, + "c6": 0.9246417013407309, + "c7": 0.46232085067036544 }, "rgb": [86, 146, 138] }, @@ -55086,23 +55086,23 @@ "year": 1714, "resistanceReported": false, "duration": 62899200, - "curveSeeds": { - "c1": 46.97141217026763, - "c2": -64.00181674217137, - "c3": 56.71381359167091, - "c4": -56.997454590351225, - "c5": 4.776445580196167, - "c6": 68.54345157361473, - "c7": -40.291552529297945 + "points": { + "c1": 59.514920122155985, + "c2": 1.2281784130110935, + "c3": 7.208623041661866, + "c4": 20.372322569253996, + "c5": -37.78123965443063, + "c6": -79.83008402907669, + "c7": -14.794194333382194 }, - "vertexSeeds": { - "c1": 3.4015409249421658, - "c2": 3.5333228087657194, - "c3": 3.10244348052686, - "c4": 2.9369726143822614, - "c5": 3.052391461228149, - "c6": 3.168896857833049, - "c7": 3.5575517103358782 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441055, + "c3": 4.276467868700878, + "c4": 3.4211742949607036, + "c5": 2.565880721220526, + "c6": 1.7105871474803518, + "c7": 0.8552935737401779 }, "rgb": [222, 0, 59] }, @@ -55113,23 +55113,23 @@ "year": 1713, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -5.759147513895574, - "c2": -32.973180704096144, - "c3": -17.13412949481385, - "c4": -19.795520839837785, - "c5": -17.42153560070267, - "c6": -21.539627848758215, - "c7": 33.269972122788346 + "points": { + "c1": 11.531913040747092, + "c2": -16.69278756861813, + "c3": 15.998958023243425, + "c4": 35.83898021792322, + "c5": -7.823128273386722, + "c6": -36.487717116982466, + "c7": 9.647993133394401 }, - "vertexSeeds": { - "c1": 4.714133212300635, - "c2": 4.407616055501713, - "c3": 4.464691349295723, - "c4": 4.278404974237445, - "c5": 4.421190524402101, - "c6": 4.758352264763886, - "c7": 4.639198517861157 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699033, + "c3": 6.14886731391586, + "c4": 4.919093851132687, + "c5": 3.689320388349514, + "c6": 2.459546925566341, + "c7": 1.229773462783173 }, "rgb": [77, 76, 132] }, @@ -55140,23 +55140,23 @@ "year": 1714, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -8.997631112747484, - "c2": 8.247743628551156, - "c3": -34.5881414004527, - "c4": 16.987327272216284, - "c5": 0.3767667375840915, - "c6": -45.0629384342035, - "c7": -24.99225550404092 + "points": { + "c1": -13.882897569355613, + "c2": 31.08518473345903, + "c3": -34.143586876285006, + "c4": 39.82224440519596, + "c5": -47.16657252605706, + "c6": -30.295749931885908, + "c7": 17.195212673480768 }, - "vertexSeeds": { - "c1": 6.855581246244879, - "c2": 7.786004357488016, - "c3": 7.907015149674001, - "c4": 6.374331383236386, - "c5": 6.600189911467063, - "c6": 6.838968893758703, - "c7": 8.0236651739866 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094317, + "c3": 9.824318076745266, + "c4": 7.859454461396209, + "c5": 5.8945908460471585, + "c6": 3.9297272306981084, + "c7": 1.96486361534905 }, "rgb": [222, 0, 59] }, @@ -55167,23 +55167,23 @@ "year": 1714, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 3.8010418900247984, - "c2": 22.0683740143795, - "c3": 23.669550239260317, - "c4": 37.66090818986949, - "c5": -20.016667733967928, - "c6": 46.33735291928802, - "c7": 38.70464471603354 + "points": { + "c1": -41.45928113297988, + "c2": -46.241943459578344, + "c3": 43.58414568830932, + "c4": -29.173842201665156, + "c5": -34.31195103576758, + "c6": 26.645491194341673, + "c7": -21.186275485572253 }, - "vertexSeeds": { - "c1": 4.693649093596044, - "c2": 4.5687511645461285, - "c3": 4.923045563241601, - "c4": 5.8651689423456865, - "c5": 4.873308524584281, - "c6": 5.380888579020149, - "c7": 5.7399619366863135 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830788, + "c3": 7.374017568192322, + "c4": 5.899214054553862, + "c5": 4.424410540915396, + "c6": 2.949607027276929, + "c7": 1.474803513638463 }, "rgb": [86, 146, 138] }, @@ -55194,23 +55194,23 @@ "year": 1714, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 35.086626392519435, - "c2": 39.279296174901745, - "c3": 2.6998272905073364, - "c4": -13.339561661137566, - "c5": -7.8058472660411695, - "c6": 39.97572152148618, - "c7": -32.58776910800957 + "points": { + "c1": 20.64158792261175, + "c2": 18.8941164927288, + "c3": -15.879468306329798, + "c4": 9.420631233795099, + "c5": -10.373111930665274, + "c6": -23.73071996390799, + "c7": -7.543284614872697 }, - "vertexSeeds": { - "c1": 4.352878285852617, - "c2": 4.557604926129995, - "c3": 4.460504732924479, - "c4": 4.77698375190952, - "c5": 4.0653495186503035, - "c6": 4.469293901511988, - "c7": 4.8374577862926715 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [238, 201, 159] }, @@ -55221,23 +55221,23 @@ "year": 1713, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -8.371703010856745, - "c2": -5.439248702544919, - "c3": -29.04946283606882, - "c4": -19.289821678260566, - "c5": -20.77491794802139, - "c6": 16.40497394493786, - "c7": 17.032026893441238 + "points": { + "c1": 19.752198349655224, + "c2": -14.690022096871605, + "c3": -5.679606796361174, + "c4": -17.152333372312462, + "c5": 12.138806133066417, + "c6": -9.681385283635251, + "c7": -17.526436387393638 }, - "vertexSeeds": { - "c1": 7.61176142739469, - "c2": 8.038098488306245, - "c3": 7.481581065463661, - "c4": 9.163044444225651, - "c5": 6.981119133699994, - "c6": 8.415763102418573, - "c7": 9.225250506506676 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055477, + "c6": 4.6232085067036515, + "c7": 2.3116042533518257 }, "rgb": [77, 76, 132] }, @@ -55248,23 +55248,23 @@ "year": 1714, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -37.14463931940712, - "c2": -2.2894863696900885, - "c3": -26.331501720676883, - "c4": 29.24642102259483, - "c5": 32.09743884584405, - "c6": -8.47475572958897, - "c7": 15.479324376099115 + "points": { + "c1": 21.80303505064316, + "c2": 38.54395829456526, + "c3": 17.725903934553465, + "c4": -35.98995919468536, + "c5": 39.99124702290807, + "c6": 32.02496217722283, + "c7": 29.119111317408596 }, - "vertexSeeds": { - "c1": 4.51037677525754, - "c2": 4.794831230557554, - "c3": 4.64942488676831, - "c4": 4.1397152936353185, - "c5": 4.5651184733378045, - "c6": 4.109019549493544, - "c7": 4.059191721530077 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [222, 0, 59] }, @@ -55275,23 +55275,23 @@ "year": 1713, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -15.69599816421302, - "c2": -17.42526835424816, - "c3": -4.851785161587873, - "c4": -27.689527673189083, - "c5": -12.863487807730273, - "c6": -32.06916368025794, - "c7": 14.154885656159337 + "points": { + "c1": 31.011684107630934, + "c2": -35.1744475453189, + "c3": 9.77184808528704, + "c4": -23.799009691742164, + "c5": -11.507520638254253, + "c6": 27.735852052519256, + "c7": 19.287875839668686 }, - "vertexSeeds": { - "c1": 4.944729594913112, - "c2": 4.977689180007783, - "c3": 5.024681926313065, - "c4": 5.184030376236387, - "c5": 5.160902911854676, - "c6": 5.02404674079776, - "c7": 5.117761797781057 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859903, + "c3": 6.241331484049935, + "c4": 4.993065187239935, + "c5": 3.744798890429968, + "c6": 2.4965325936199676, + "c7": 1.2482662968099671 }, "rgb": [77, 76, 132] }, @@ -55302,23 +55302,23 @@ "year": 1713, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 0.24753941488797793, - "c2": 17.762341850958393, - "c3": 11.610235463852746, - "c4": -15.408197358034204, - "c5": -15.439363982135298, - "c6": -14.774554799558036, - "c7": -8.028152077588176 + "points": { + "c1": -1.2723976104357284, + "c2": 8.504479717971954, + "c3": -15.645989340469168, + "c4": -10.75550767906253, + "c5": -0.4777301316720717, + "c6": -1.3075590687016287, + "c7": -10.255592255332846 }, - "vertexSeeds": { - "c1": 1.8639402626747315, - "c2": 2.228697735186074, - "c3": 1.9915084654203499, - "c4": 2.2215560985914413, - "c5": 2.2129736387669823, - "c6": 2.23757060907698, - "c7": 2.09578780518497 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826629, + "c3": 2.77392510402219, + "c4": 2.219140083217754, + "c5": 1.6643550624133157, + "c6": 1.109570041608877, + "c7": 0.5547850208044385 }, "rgb": [222, 0, 59] }, @@ -55329,23 +55329,23 @@ "year": 1714, "resistanceReported": false, "duration": 42508800, - "curveSeeds": { - "c1": 16.68022112117002, - "c2": -18.273757315779662, - "c3": 0.25525268022023084, - "c4": 4.5625056826721675, - "c5": 13.27578658221887, - "c6": 51.930789755986325, - "c7": 45.81863878155032 + "points": { + "c1": 41.375852031457484, + "c2": 3.2814766515722766, + "c3": -49.233990219832485, + "c4": -3.7031292185068807, + "c5": -23.41108910086522, + "c6": 43.766332425715234, + "c7": -50.92206609454152 }, - "vertexSeeds": { - "c1": 1.2614224604430715, - "c2": 1.069189617624599, - "c3": 1.2249978870221736, - "c4": 1.2907866523172904, - "c5": 1.2484537764166217, - "c6": 1.3045542981538099, - "c7": 1.2872596000803567 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753123, + "c3": 1.595006934812761, + "c4": 1.2760055478502084, + "c5": 0.9570041608876557, + "c6": 0.6380027739251042, + "c7": 0.31900138696255265 }, "rgb": [77, 76, 132] }, @@ -55356,23 +55356,23 @@ "year": 1713, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 6.163275268479659, - "c2": 23.656186777475448, - "c3": -23.40161697731072, - "c4": -20.376818639600394, - "c5": -30.502925290643827, - "c6": 8.320295530652231, - "c7": -15.976967597568922 + "points": { + "c1": -25.402408558008297, + "c2": -14.845984637600328, + "c3": -11.788017410494444, + "c4": 21.704495508205618, + "c5": 29.669377767561677, + "c6": -28.618230148539034, + "c7": -23.110184534258085 }, - "vertexSeeds": { - "c1": 1.7020568091157646, - "c2": 1.5692088743947106, - "c3": 1.6266223863597087, - "c4": 1.7115128968273572, - "c5": 1.7056463544526763, - "c6": 1.5621154456942135, - "c7": 1.7815402265780835 + "offsets": { + "c1": 3.0097087378640777, + "c2": 2.5797503467406364, + "c3": 2.1497919556171987, + "c4": 1.7198335644937575, + "c5": 1.28987517337032, + "c6": 0.8599167822468787, + "c7": 0.4299583911234378 }, "rgb": [77, 76, 132] }, @@ -55383,23 +55383,23 @@ "year": 1713, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 2.281012150697727, - "c2": 3.278395780165475, - "c3": 2.8440943610024405, - "c4": 16.04270740233742, - "c5": -17.30932955947353, - "c6": 21.3448886482647, - "c7": -24.518941306729282 + "points": { + "c1": 21.80705734626713, + "c2": -25.027149715628536, + "c3": 8.6188566680065, + "c4": -28.178719920551373, + "c5": -2.7448615250661277, + "c6": 21.646671512701815, + "c7": 19.36415138837591 }, - "vertexSeeds": { - "c1": 7.899348427740798, - "c2": 7.080409807614801, - "c3": 7.126608103717483, - "c4": 7.930361644993532, - "c5": 7.756110557603789, - "c6": 7.539931255935464, - "c7": 7.808096088247529 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812766, + "c3": 9.662505779010633, + "c4": 7.730004623208511, + "c5": 5.797503467406391, + "c6": 3.8650023116042553, + "c7": 1.932501155802135 }, "rgb": [58, 15, 49] }, @@ -55410,23 +55410,23 @@ "year": 1713, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -3.516777342185243, - "c2": -3.251616115601877, - "c3": 13.991932601400713, - "c4": -20.70427197921575, - "c5": -7.224814820637381, - "c6": 23.230052701857396, - "c7": -18.620383115983717 + "points": { + "c1": 4.203391407808219, + "c2": -9.77111525526114, + "c3": 25.673098497838076, + "c4": -7.605437126548715, + "c5": 17.472040561854577, + "c6": 16.879676848075306, + "c7": 9.392428911354443 }, - "vertexSeeds": { - "c1": 1.6427946646786753, - "c2": 1.703390914016381, - "c3": 1.8200450767992145, - "c4": 1.5887607889212847, - "c5": 1.5614453611236783, - "c6": 1.7737734427017333, - "c7": 1.6775219170921192 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210833, + "c3": 2.1960240406842346, + "c4": 1.7568192325473888, + "c5": 1.31761442441054, + "c6": 0.8784096162736944, + "c7": 0.43920480813684876 }, "rgb": [222, 0, 59] }, @@ -55437,23 +55437,23 @@ "year": 1714, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 2.525069968601592, - "c2": -8.820943847041313, - "c3": 29.594061611791332, - "c4": -27.135282072605655, - "c5": -16.68729051546183, - "c6": 11.886384248999562, - "c7": -6.808263894280596 + "points": { + "c1": 30.102416204348998, + "c2": 7.4226642651119334, + "c3": 15.446666914935939, + "c4": 2.4852048346225573, + "c5": 34.105202113149744, + "c6": 13.641530350354799, + "c7": 10.202015310754526 }, - "vertexSeeds": { - "c1": 9.259025883729233, - "c2": 8.571645107479215, - "c3": 9.279333255730567, - "c4": 9.307213685505364, - "c5": 9.22588733063223, - "c6": 8.303976850104153, - "c7": 8.343431158820216 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748954, + "c3": 11.349976883957469, + "c4": 9.07998150716597, + "c5": 6.809986130374484, + "c6": 4.539990753582985, + "c7": 2.269995376791499 }, "rgb": [77, 76, 132] }, @@ -55464,23 +55464,23 @@ "year": 1714, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 25.48040247571584, - "c2": 32.88018801545081, - "c3": -20.177471500418726, - "c4": 32.819158785843385, - "c5": 21.438728899491394, - "c6": -22.295829031746486, - "c7": 10.151084578845754 + "points": { + "c1": -11.42128111509891, + "c2": -30.83803278325869, + "c3": -23.71935510592863, + "c4": 4.627892154425609, + "c5": 27.6459637778904, + "c6": -4.957342047230771, + "c7": 20.864211847412044 }, - "vertexSeeds": { - "c1": 4.310794940855534, - "c2": 4.746791498971072, - "c3": 4.77796586832051, - "c4": 4.719474688978977, - "c5": 4.586557007384714, - "c6": 4.678685379267416, - "c7": 4.905066064686944 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658804, + "c3": 6.125751271382339, + "c4": 4.900601017105873, + "c5": 3.6754507628294073, + "c6": 2.4503005085529366, + "c7": 1.2251502542764707 }, "rgb": [238, 201, 159] }, @@ -55491,23 +55491,23 @@ "year": 1714, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -12.456156081076404, - "c2": 31.545679720520788, - "c3": -16.224367191796574, - "c4": 40.15961060470821, - "c5": -38.51617878220005, - "c6": 21.751860717708958, - "c7": 0.8249658507656434 + "points": { + "c1": 26.736726983297935, + "c2": 28.61763690311657, + "c3": -30.011792988856392, + "c4": 10.514294587832474, + "c5": 15.069042489449878, + "c6": 28.145771131951882, + "c7": 32.71301137850923 }, - "vertexSeeds": { - "c1": 12.259423624653508, - "c2": 12.992820649046445, - "c3": 12.769462991872864, - "c4": 12.206655896675912, - "c5": 12.850312826351882, - "c6": 13.493306170628985, - "c7": 11.682272885680913 + "offsets": { + "c1": 22.9126213592233, + "c2": 19.639389736477103, + "c3": 16.366158113730933, + "c4": 13.092926490984738, + "c5": 9.819694868238566, + "c6": 6.546463245492369, + "c7": 3.2732316227461724 }, "rgb": [86, 146, 138] }, @@ -55518,23 +55518,23 @@ "year": 1713, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 17.397556997976007, - "c2": 13.540473088140981, - "c3": 11.193832183485899, - "c4": -3.1277746409836666, - "c5": 3.465178094021187, - "c6": 20.85433311326103, - "c7": -5.850028363150923 + "points": { + "c1": 6.416813984267236, + "c2": 4.622107676389213, + "c3": 20.50150327740041, + "c4": -26.702095920933104, + "c5": -4.5988096375106124, + "c6": 6.562600902624496, + "c7": 19.705004666974993 }, - "vertexSeeds": { - "c1": 2.836151473954184, - "c2": 2.646474909582824, - "c3": 2.398812911873453, - "c4": 2.3973549374389944, - "c5": 2.5780925562711667, - "c6": 2.759475320911189, - "c7": 2.721455434735753 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033289, + "c3": 3.467406380027738, + "c4": 2.773925104022193, + "c5": 2.0804438280166417, + "c6": 1.3869625520110964, + "c7": 0.6934812760055454 }, "rgb": [238, 201, 159] }, @@ -55545,23 +55545,23 @@ "year": 1713, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 16.626521399343847, - "c2": 0.13658940956764098, - "c3": 6.014048671888634, - "c4": -20.627486106448004, - "c5": -7.407274585669342, - "c6": -26.209966526284813, - "c7": -24.534930093331436 + "points": { + "c1": -22.83009017021245, + "c2": -12.089473796982361, + "c3": -1.5256800849443763, + "c4": -21.474067838768477, + "c5": -1.4969591096879036, + "c6": 13.125544134198684, + "c7": -14.730697656725908 }, - "vertexSeeds": { - "c1": 5.299997613148053, - "c2": 4.952998236287207, - "c3": 5.431482926551066, - "c4": 5.225732560857397, - "c5": 5.318695947144288, - "c6": 5.02105501482888, - "c7": 5.10031831849447 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [58, 15, 49] }, @@ -55572,23 +55572,23 @@ "year": 1715, "resistanceReported": false, "duration": 52704000, - "curveSeeds": { - "c1": 63.319400840486225, - "c2": 48.18462172475731, - "c3": -52.59991341840666, - "c4": 34.17603777158041, - "c5": 13.033800246405562, - "c6": -18.53977931391448, - "c7": -22.273853247601103 + "points": { + "c1": -48.782670315595155, + "c2": -19.421994031262784, + "c3": 10.90964910828005, + "c4": 65.04919611322873, + "c5": 41.099017397097924, + "c6": -40.86976059219516, + "c7": -40.62847744059748 }, - "vertexSeeds": { - "c1": 2.31452540272704, - "c2": 2.324303672412044, - "c3": 2.5918616158303505, - "c4": 2.72087992620201, - "c5": 2.4738961189884043, - "c6": 2.3965920754527845, - "c7": 2.719982430808495 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.938973647711514, + "c3": 3.282478039759592, + "c4": 2.625982431807675, + "c5": 1.9694868238557584, + "c6": 1.312991215903836, + "c7": 0.6564956079519195 }, "rgb": [222, 0, 59] }, @@ -55599,23 +55599,23 @@ "year": 1714, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 6.426887966722759, - "c2": 17.442643522361095, - "c3": -24.714889850065596, - "c4": 33.662633530389634, - "c5": -29.395283359466156, - "c6": -9.696684516033212, - "c7": 10.62636082966042 + "points": { + "c1": -13.613164878813574, + "c2": 24.05262729933839, + "c3": 7.490924132676859, + "c4": -32.27112086022743, + "c5": 23.233472332291733, + "c6": 12.86426039210042, + "c7": 9.852074781748598 }, - "vertexSeeds": { - "c1": 2.877249212727696, - "c2": 4.871511234227458, - "c3": 3.755117813402376, - "c4": 4.814566862560644, - "c5": 4.1462914470041365, - "c6": 4.5791880100305224, - "c7": 3.323435097687348 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457699, + "c3": 6.010171058714748, + "c4": 4.808136846971798, + "c5": 3.6061026352288503, + "c6": 2.404068423485899, + "c7": 1.2020342117429494 }, "rgb": [238, 201, 159] }, @@ -55626,23 +55626,23 @@ "year": 1714, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 3.0582635924481103, - "c2": -28.241321017904223, - "c3": -30.187462116603115, - "c4": -23.56191303864137, - "c5": -9.110888895877938, - "c6": 9.065861699498424, - "c7": 25.443710120980274 + "points": { + "c1": 29.823425762597054, + "c2": 18.26190269679497, + "c3": 30.397890456113224, + "c4": -29.862684470700433, + "c5": -28.632055078965955, + "c6": 10.599858097001729, + "c7": 15.326498224834552 }, - "vertexSeeds": { - "c1": 5.5140033030167785, - "c2": 4.749041071105623, - "c3": 5.113181284527053, - "c4": 5.2846611409912025, - "c5": 4.7846678767665765, - "c6": 5.400116767640445, - "c7": 4.772464876386362 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543693, + "c3": 6.634304207119738, + "c4": 5.307443365695792, + "c5": 3.9805825242718464, + "c6": 2.653721682847896, + "c7": 1.3268608414239458 }, "rgb": [222, 0, 59] }, @@ -55653,23 +55653,23 @@ "year": 1714, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -14.078042895758838, - "c2": -15.231667909441107, - "c3": 23.072600113432337, - "c4": -26.298456049628626, - "c5": -5.016364018273549, - "c6": -34.37096928665018, - "c7": -29.898344070201155 + "points": { + "c1": -9.552067423919159, + "c2": 13.531412316623332, + "c3": 33.53757124668826, + "c4": -25.4083795732856, + "c5": -6.60352370334121, + "c6": 7.694065335243458, + "c7": -27.460655620968865 }, - "vertexSeeds": { - "c1": 3.2477134303247235, - "c2": 3.4012635224178407, - "c3": 3.403427344517879, - "c4": 3.3267372702139366, - "c5": 3.2984546666479813, - "c6": 3.319904249673662, - "c7": 3.4370834390208285 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.02080443828017, + "c3": 4.184003698566804, + "c4": 3.347202958853447, + "c5": 2.5104022191400803, + "c6": 1.6736014794267235, + "c7": 0.8368007397133568 }, "rgb": [222, 0, 59] }, @@ -55680,23 +55680,23 @@ "year": 1714, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -13.992904580814354, - "c2": 23.464315354823547, - "c3": -22.30497538266014, - "c4": 11.027023527585712, - "c5": 28.724157506406335, - "c6": 12.439999366959618, - "c7": 8.07420128463307 + "points": { + "c1": -0.5977439599247347, + "c2": 38.188056236721785, + "c3": 8.188563583090122, + "c4": 16.983886485945533, + "c5": -13.207615067804102, + "c6": -13.901596213786874, + "c7": 2.814222503182613 }, - "vertexSeeds": { - "c1": 2.9430581413676773, - "c2": 3.19064177632238, - "c3": 2.9317909046051507, - "c4": 3.0427670867063883, - "c5": 2.890534784806917, - "c6": 2.926172295495438, - "c7": 2.793137414879334 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837728, + "c3": 3.929727230698104, + "c4": 3.143781784558485, + "c5": 2.357836338418861, + "c6": 1.5718908922792425, + "c7": 0.7859454461396186 }, "rgb": [77, 76, 132] }, @@ -55707,23 +55707,23 @@ "year": 1714, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -7.499237685659843, - "c2": 28.354629713144835, - "c3": -22.269912682928343, - "c4": -28.778670511599618, - "c5": 7.879009919767281, - "c6": 0.14460036575442814, - "c7": 11.431178707496944 + "points": { + "c1": 10.525848764986094, + "c2": 29.657765712134612, + "c3": 3.717380549520847, + "c4": 2.5927287950547466, + "c5": -13.209531638182554, + "c6": -5.40912745880949, + "c7": -3.350771219780924 }, - "vertexSeeds": { - "c1": 6.632158102519355, - "c2": 6.112468475210934, - "c3": 7.180136324866963, - "c4": 6.721299205004794, - "c5": 6.564619766278895, - "c6": 7.536970318142847, - "c7": 6.2816004921430535 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611647, + "c3": 9.546925566343045, + "c4": 7.637540453074434, + "c5": 5.728155339805824, + "c6": 3.8187702265372208, + "c7": 1.9093851132686104 }, "rgb": [222, 0, 59] }, @@ -55734,23 +55734,23 @@ "year": 1714, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 2.2081262423410024, - "c2": -20.855848440656704, - "c3": -1.5477996193452448, - "c4": -17.540203319319623, - "c5": -12.253525259786244, - "c6": -11.300740827400915, - "c7": -23.59914049855665 + "points": { + "c1": -2.7224994719964926, + "c2": 12.974259948862851, + "c3": -2.1978149814948615, + "c4": 27.851580601724542, + "c5": 12.339000465344284, + "c6": -25.712987452400323, + "c7": 30.828277091566704 }, - "vertexSeeds": { - "c1": 3.1155378095058683, - "c2": 3.117088705798681, - "c3": 3.11509066814724, - "c4": 3.381499113529073, - "c5": 3.3873508638016654, - "c6": 3.106808510171995, - "c7": 3.4333981333056007 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.96532593619972, + "c3": 4.137771613499773, + "c4": 3.310217290799816, + "c5": 2.48266296809986, + "c6": 1.6551086453999124, + "c7": 0.8275543226999562 }, "rgb": [86, 146, 138] }, @@ -55761,23 +55761,23 @@ "year": 1714, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": 21.110857300099305, - "c2": 16.73928418250896, - "c3": -10.893973211694053, - "c4": -26.76794605961295, - "c5": 4.3595592195177275, - "c6": -30.884312274709522, - "c7": -18.41967630842896 + "points": { + "c1": 39.42264116905432, + "c2": 41.58546727519731, + "c3": 39.10910344893549, + "c4": -31.956464575406883, + "c5": 28.330448443699005, + "c6": 5.969170777913931, + "c7": -40.232089649217976 }, - "vertexSeeds": { - "c1": 10.934366450423848, - "c2": 11.05542320653778, - "c3": 10.688850287988341, - "c4": 12.006485755675333, - "c5": 11.148956450544203, - "c6": 11.685555360100969, - "c7": 11.41175835754466 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.198335644937586, + "c3": 14.331946370781322, + "c4": 11.465557096625057, + "c5": 8.599167822468793, + "c6": 5.732778548312528, + "c7": 2.866389274156264 }, "rgb": [222, 0, 59] }, @@ -55788,23 +55788,23 @@ "year": 1714, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 28.60145729013926, - "c2": 25.16705731879295, - "c3": 1.956726154946196, - "c4": -22.599813800567816, - "c5": 1.7051219450850255, - "c6": 30.189736244552236, - "c7": 5.422875084903552 + "points": { + "c1": 33.43634501716638, + "c2": 3.1165233151025262, + "c3": 25.923994635568143, + "c4": -26.184124558339736, + "c5": -7.997822534107986, + "c6": -32.686324565802664, + "c7": -2.7816451391274306 }, - "vertexSeeds": { - "c1": 2.9155297934761677, - "c2": 3.0085172843667527, - "c3": 3.1414418908553894, - "c4": 3.1862903515214227, - "c5": 2.966497888946655, - "c6": 2.8825540737188677, - "c7": 2.9496319274674034 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717063, + "c3": 3.8603791030975487, + "c4": 3.088303282478042, + "c5": 2.3162274618585275, + "c6": 1.544151641239021, + "c7": 0.7720758206195145 }, "rgb": [222, 0, 59] }, @@ -55815,23 +55815,23 @@ "year": 1714, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -32.79310099285265, - "c2": -19.81789098309467, - "c3": 33.71146324677805, - "c4": 19.36321960524974, - "c5": 20.889674380057315, - "c6": 33.5847715160818, - "c7": -34.66778187853946 + "points": { + "c1": -24.481296734597787, + "c2": 1.5503088195897163, + "c3": -8.477083021560698, + "c4": -5.36112397670864, + "c5": -9.994379640007985, + "c6": -26.27884905669527, + "c7": -36.46911768176036 }, - "vertexSeeds": { - "c1": 3.8181576509521897, - "c2": 3.620340178435433, - "c3": 3.8587095730244725, - "c4": 3.7477523300673243, - "c5": 3.64727872054107, - "c6": 3.760423295545472, - "c7": 3.776149465792291 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044386, + "c3": 4.623208506703647, + "c4": 3.69856680536292, + "c5": 2.773925104022193, + "c6": 1.8492834026814657, + "c7": 0.9246417013407271 }, "rgb": [222, 0, 59] }, @@ -55842,23 +55842,23 @@ "year": 1714, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 19.692189640151156, - "c2": -14.715668745705987, - "c3": 17.46785497903766, - "c4": 24.07854837539128, - "c5": -7.4597425285765695, - "c6": -12.344550717160427, - "c7": -5.43056367552526 + "points": { + "c1": -31.598716711789663, + "c2": 33.81030315215152, + "c3": -8.03577076316433, + "c4": -13.696492557575763, + "c5": -2.349440108957012, + "c6": -4.300123032337524, + "c7": -16.332714408860678 }, - "vertexSeeds": { - "c1": 8.375307386198948, - "c2": 7.871764362479862, - "c3": 7.3075494321928405, - "c4": 7.614073217712685, - "c5": 7.372321681459088, - "c6": 7.9592879628235575, - "c7": 7.723149067162864 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617196, + "c3": 10.124826629680996, + "c4": 8.099861303744806, + "c5": 6.0748959778086045, + "c6": 4.049930651872403, + "c7": 2.0249653259362015 }, "rgb": [222, 0, 59] }, @@ -55869,23 +55869,23 @@ "year": 1714, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 21.096332928405182, - "c2": 36.91031299882534, - "c3": 30.268582868848462, - "c4": 23.7767193392553, - "c5": -11.81458282731544, - "c6": -24.695543844934022, - "c7": 3.7298656744573364 + "points": { + "c1": -7.646386013644083, + "c2": -17.743742367417315, + "c3": -30.51630309607049, + "c4": -6.273177502234915, + "c5": -40.16362349838449, + "c6": 41.023471205018076, + "c7": -21.25932304948748 }, - "vertexSeeds": { - "c1": 2.5049387049660177, - "c2": 2.4487630776397413, - "c3": 2.9057537563589078, - "c4": 2.7423245137156496, - "c5": 2.936825048359214, - "c6": 2.8956430096504153, - "c7": 2.6393864810079934 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.2718446601941755, + "c3": 3.559870550161814, + "c4": 2.847896440129448, + "c5": 2.1359223300970864, + "c6": 1.423948220064725, + "c7": 0.7119741100323638 }, "rgb": [222, 0, 59] }, @@ -55896,23 +55896,23 @@ "year": 1714, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 1.4704235778131434, - "c2": -12.503942287658322, - "c3": 31.942211657844112, - "c4": -34.87405933320075, - "c5": -17.365583024861117, - "c6": 31.08585077962651, - "c7": 3.9207505084410244 + "points": { + "c1": 27.290971625731416, + "c2": 38.43875478564185, + "c3": -40.1285190357998, + "c4": 7.319894900504281, + "c5": 0.24649231249539838, + "c6": 4.072368762675403, + "c7": 26.375860358798448 }, - "vertexSeeds": { - "c1": 5.867364938438966, - "c2": 5.925158438105738, - "c3": 6.314847996085541, - "c4": 6.333098453305367, - "c5": 6.562795131612593, - "c6": 5.756519161858023, - "c7": 6.3833199829964045 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957002, + "c3": 8.021266759130832, + "c4": 6.417013407304671, + "c5": 4.812760055478501, + "c6": 3.208506703652331, + "c7": 1.6042533518261701 }, "rgb": [222, 0, 59] }, @@ -55923,23 +55923,23 @@ "year": 1714, "resistanceReported": true, "duration": 40780800, - "curveSeeds": { - "c1": 11.263206541379084, - "c2": -21.604233010372994, - "c3": -8.95228934734773, - "c4": -8.793685053606438, - "c5": -53.10963389523961, - "c6": -29.31431709954562, - "c7": 24.500630488290163 + "points": { + "c1": -50.84208086898583, + "c2": 19.46773605862412, + "c3": -13.416152363048447, + "c4": 35.45328608147438, + "c5": 44.32585015877492, + "c6": 23.13443113273889, + "c7": 9.618916139181884 }, - "vertexSeeds": { - "c1": 2.95222628122775, - "c2": 3.070531644976649, - "c3": 2.820758174105062, - "c4": 2.849763739239207, - "c5": 3.3265244688259585, - "c6": 3.626126330909641, - "c7": 3.1954523348653154 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251041, + "c3": 5.316689782709199, + "c4": 4.253351826167359, + "c5": 3.1900138696255205, + "c6": 2.1266759130836794, + "c7": 1.0633379565418386 }, "rgb": [77, 76, 132] }, @@ -55950,23 +55950,23 @@ "year": 1714, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 12.155098812103077, - "c2": -18.624030865625542, - "c3": 3.345226126953918, - "c4": -25.702111400474127, - "c5": 2.115556117326424, - "c6": 6.727880660161468, - "c7": 25.420759696308572 + "points": { + "c1": 19.659722220023333, + "c2": -6.890500167395661, + "c3": -15.513392747130506, + "c4": 20.168379063240273, + "c5": 16.028617368458804, + "c6": 21.58522349400493, + "c7": -3.8517139883129445 }, - "vertexSeeds": { - "c1": 3.192608180943983, - "c2": 3.39009474751883, - "c3": 3.1750002670996316, - "c4": 3.325769907340007, - "c5": 3.138691531909934, - "c6": 3.1272761672340406, - "c7": 3.1708479074900984 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [238, 201, 159] }, @@ -55977,23 +55977,23 @@ "year": 1714, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -9.202405939429472, - "c2": 23.320672977898987, - "c3": -11.472664882210083, - "c4": 11.065159345162328, - "c5": 13.040161979739054, - "c6": -11.542422687388685, - "c7": 12.308068099091322 + "points": { + "c1": 18.44373284032492, + "c2": -1.3817666021285149, + "c3": 1.5491273997262525, + "c4": -9.754760423676256, + "c5": -13.65703057246315, + "c6": -16.17608702427875, + "c7": -2.363908919586663 }, - "vertexSeeds": { - "c1": 8.05197779472859, - "c2": 8.209980726675939, - "c3": 8.117207425509362, - "c4": 8.239508140517712, - "c5": 7.797643605241754, - "c6": 8.36706969173422, - "c7": 8.106969135512253 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.011095700416085, + "c3": 10.009246417013399, + "c4": 8.007397133610716, + "c5": 6.005547850208055, + "c6": 4.00369856680537, + "c7": 2.001849283402685 }, "rgb": [222, 0, 59] }, @@ -56004,23 +56004,23 @@ "year": 1714, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 17.871431673703214, - "c2": 2.9542306458231415, - "c3": 4.195358606070915, - "c4": -13.85884287408631, - "c5": 17.453063512253138, - "c6": -23.234506503333627, - "c7": 8.299985110473251 + "points": { + "c1": 6.841937692765512, + "c2": 25.257063131919764, + "c3": 26.6915776825686, + "c4": 21.292543069290915, + "c5": 21.321670308735897, + "c6": -20.499202817441226, + "c7": -19.275166088103784 }, - "vertexSeeds": { - "c1": 8.491601703189962, - "c2": 8.733966587756587, - "c3": 8.840388047157589, - "c4": 8.025201268293209, - "c5": 7.870770949196183, - "c6": 8.762896505934297, - "c7": 8.45649272155989 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [222, 0, 59] }, @@ -56031,23 +56031,23 @@ "year": 1715, "resistanceReported": true, "duration": 67910400, - "curveSeeds": { - "c1": 57.44397425387595, - "c2": 34.056608988168676, - "c3": -67.25811420883105, - "c4": -25.97065657057663, - "c5": -48.37118754547108, - "c6": 39.751887585261215, - "c7": -43.378853910318774 + "points": { + "c1": -39.36755446788852, + "c2": 7.885945229501459, + "c3": -38.40755075853519, + "c4": -17.82735430536718, + "c5": -49.31252472611172, + "c6": 3.8148348406887322, + "c7": 44.401406849979765 }, - "vertexSeeds": { - "c1": 1.9565086801752496, - "c2": 1.678912626444761, - "c3": 1.7789778113888295, - "c4": 1.9310770257887475, - "c5": 1.7752203566450275, - "c6": 1.5192118461302788, - "c7": 1.8882868922732117 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.8294036061026357, + "c3": 2.3578363384188634, + "c4": 1.8862690707350913, + "c5": 1.414701803051317, + "c6": 0.9431345353675445, + "c7": 0.4715672676837723 }, "rgb": [58, 15, 49] }, @@ -56058,23 +56058,23 @@ "year": 1714, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -20.01181600767916, - "c2": -13.000708391687246, - "c3": 24.237998407696452, - "c4": 13.734516907785562, - "c5": 2.9919449383449326, - "c6": 2.6722084907720998, - "c7": -14.855469681103955 + "points": { + "c1": -3.848412190940177, + "c2": 16.27551907710623, + "c3": 22.621331768055505, + "c4": 7.361761676204161, + "c5": -3.1606779799364766, + "c6": 23.18307639395453, + "c7": 23.489069635156966 }, - "vertexSeeds": { - "c1": 4.348208442185809, - "c2": 4.37658196705691, - "c3": 4.30554929572126, - "c4": 4.39993934277006, - "c5": 4.424768522698433, - "c6": 4.33522895173543, - "c7": 4.446204496413388 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331487, + "c3": 5.3629218677762305, + "c4": 4.290337494220987, + "c5": 3.2177531206657437, + "c6": 2.1451687471105, + "c7": 1.0725843735552434 }, "rgb": [238, 201, 159] }, @@ -56085,23 +56085,23 @@ "year": 1714, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 7.222731971458828, - "c2": 10.625532274310004, - "c3": 20.98732747711368, - "c4": -13.042070502260955, - "c5": 31.633435460963, - "c6": 21.54535574045142, - "c7": -14.626574072653451 + "points": { + "c1": -36.57563859716801, + "c2": -15.27150756134959, + "c3": -31.530812903711542, + "c4": -39.36588667925261, + "c5": 28.673759136086872, + "c6": -42.50192982814832, + "c7": 32.12530983062629 }, - "vertexSeeds": { - "c1": 1.535797684540435, - "c2": 1.3927111279905822, - "c3": 1.3798465167884415, - "c4": 1.5457904367119069, - "c5": 1.381317568933145, - "c6": 1.5454120187664848, - "c7": 1.4336168674813297 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257977, + "c3": 1.8723994452149788, + "c4": 1.4979195561719845, + "c5": 1.1234396671289864, + "c6": 0.7489597780859922, + "c7": 0.3744798890429941 }, "rgb": [222, 0, 59] }, @@ -56112,23 +56112,23 @@ "year": 1714, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 1.9999369556021094, - "c2": 4.761120883223089, - "c3": -12.315555326976849, - "c4": 12.979507160675425, - "c5": -21.642688369009893, - "c6": 17.863869737915692, - "c7": 4.004503687593843 + "points": { + "c1": 11.696801317670626, + "c2": -6.316414953927378, + "c3": 25.184567508141072, + "c4": 7.782482291535196, + "c5": 23.872051736699362, + "c6": 3.0625353042148618, + "c7": -15.050821679650088 }, - "vertexSeeds": { - "c1": 2.935070827665224, - "c2": 2.9688343162855193, - "c3": 2.8907088362248263, - "c4": 2.638908300067595, - "c5": 2.8544397370353374, - "c6": 2.672307291596957, - "c7": 2.9711534791160745 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194177, + "c3": 3.5598705501618113, + "c4": 2.847896440129452, + "c5": 2.135922330097085, + "c6": 1.423948220064726, + "c7": 0.7119741100323667 }, "rgb": [77, 76, 132] }, @@ -56139,23 +56139,23 @@ "year": 1714, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 34.70815669469587, - "c2": 32.621683592018016, - "c3": -6.713179509480579, - "c4": -4.019233819601119, - "c5": 27.8118954921312, - "c6": 6.191389890750138, - "c7": 16.280870304727742 + "points": { + "c1": 12.914183127647831, + "c2": 26.52410204689741, + "c3": 24.834214643205968, + "c4": 14.002968724297531, + "c5": 1.7717538869138139, + "c6": -23.980711002436955, + "c7": 34.77365653689179 }, - "vertexSeeds": { - "c1": 3.952259424900079, - "c2": 4.242844640715837, - "c3": 4.713181213998775, - "c4": 4.092020271435063, - "c5": 4.590224825380581, - "c6": 4.788807208678935, - "c7": 4.74292362318679 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [238, 201, 159] }, @@ -56166,23 +56166,23 @@ "year": 1714, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 32.16105421346218, - "c2": -0.3345273729540992, - "c3": -8.354461624158027, - "c4": 14.959755318488426, - "c5": -23.22737249977361, - "c6": -16.909869826702412, - "c7": -33.63124302967017 + "points": { + "c1": -26.35865059302212, + "c2": 6.429657137234663, + "c3": -4.970326388653888, + "c4": -15.18646570822105, + "c5": -27.657250129306306, + "c6": -35.48536050688416, + "c7": -17.03572646597957 }, - "vertexSeeds": { - "c1": 4.627074151107112, - "c2": 4.259105887457949, - "c3": 4.669723792372085, - "c4": 4.437480080518186, - "c5": 4.222356341159149, - "c6": 4.4341557194334875, - "c7": 4.865418060468044 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135922, + "c3": 5.825242718446602, + "c4": 4.660194174757281, + "c5": 3.495145631067961, + "c6": 2.3300970873786406, + "c7": 1.1650485436893203 }, "rgb": [238, 201, 159] }, @@ -56193,23 +56193,23 @@ "year": 1714, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 26.56311861158808, - "c2": -9.533317704271298, - "c3": 0.21773086818724252, - "c4": -24.989787965312384, - "c5": 18.860822910383817, - "c6": 10.820836916918694, - "c7": 20.74309035058034 + "points": { + "c1": -0.4142344456440128, + "c2": 26.16625639654898, + "c3": -16.837181924121687, + "c4": -25.548785552015797, + "c5": 26.53687583015975, + "c6": -17.798086311260363, + "c7": -1.1203281476791211 }, - "vertexSeeds": { - "c1": 4.645525120617332, - "c2": 4.358409481342012, - "c3": 4.222197505534207, - "c4": 4.512029773092092, - "c5": 4.563247120583395, - "c6": 4.37019795230688, - "c7": 4.3353073908507955 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854367, + "c3": 5.663430420711977, + "c4": 4.5307443365695805, + "c5": 3.3980582524271834, + "c6": 2.2653721682847943, + "c7": 1.1326860841423971 }, "rgb": [58, 15, 49] }, @@ -56220,23 +56220,23 @@ "year": 1714, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -18.513585803225542, - "c2": -13.920901456203062, - "c3": -19.543130363563158, - "c4": 32.57650088733493, - "c5": -34.93019126431446, - "c6": -19.12106162873416, - "c7": -6.710347164894166 + "points": { + "c1": 22.259429762469402, + "c2": -5.591175378421827, + "c3": 4.136691063099192, + "c4": -20.258990977653173, + "c5": -14.53739058315006, + "c6": 0.28051345610947465, + "c7": -24.354572160650463 }, - "vertexSeeds": { - "c1": 8.04041658572092, - "c2": 8.268026779581238, - "c3": 8.216072533935838, - "c4": 8.182407182866502, - "c5": 8.302145158444274, - "c6": 7.961102382094434, - "c7": 8.080752991165703 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697646, + "c3": 10.171058714748042, + "c4": 8.136846971798413, + "c5": 6.1026352288488095, + "c6": 4.068423485899206, + "c7": 2.034211742949603 }, "rgb": [77, 76, 132] }, @@ -56247,23 +56247,23 @@ "year": 1714, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": 6.130971295929768, - "c2": -16.047633728894503, - "c3": 5.559257112645216, - "c4": -8.633887412881075, - "c5": 1.7095736573999325, - "c6": 10.415072479560884, - "c7": -20.65675439888923 + "points": { + "c1": 16.418568333272844, + "c2": 7.6831135934173105, + "c3": 19.079713748471278, + "c4": 6.1741248521508965, + "c5": -18.59557579026481, + "c6": -14.19075920726362, + "c7": 20.3161534949422 }, - "vertexSeeds": { - "c1": 5.649613485916125, - "c2": 4.546918125379726, - "c3": 5.198201582728926, - "c4": 5.086449593159067, - "c5": 4.58037312688777, - "c6": 4.982617607410864, - "c7": 4.719787967166653 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267685, + "c3": 7.050392972723066, + "c4": 5.640314378178454, + "c5": 4.230235783633843, + "c6": 2.820157189089227, + "c7": 1.4100785945446115 }, "rgb": [238, 201, 159] }, @@ -56274,23 +56274,23 @@ "year": 1714, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -3.089161019482713, - "c2": -4.101751339678611, - "c3": -7.525997398556445, - "c4": -20.35426742466852, - "c5": 2.525511194854346, - "c6": -13.213223189638377, - "c7": 18.323145913500614 + "points": { + "c1": -17.092685804740373, + "c2": -12.034615188320174, + "c3": 7.38809620909176, + "c4": 16.2897653941079, + "c5": -4.10850246957305, + "c6": 4.67394865819394, + "c7": 21.357721997228122 }, - "vertexSeeds": { - "c1": 7.541627862029905, - "c2": 6.991743461269639, - "c3": 7.219580517268341, - "c4": 7.256347737832292, - "c5": 7.378445104477673, - "c6": 7.622934040092803, - "c7": 7.208090489668471 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571425, + "c3": 9.523809523809526, + "c4": 7.619047619047618, + "c5": 5.714285714285717, + "c6": 3.809523809523809, + "c7": 1.9047619047618995 }, "rgb": [238, 201, 159] }, @@ -56301,23 +56301,23 @@ "year": 1715, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": -60.87576478523369, - "c2": 61.2785619114396, - "c3": -5.601541898584351, - "c4": 51.89820594288992, - "c5": 46.77466385676221, - "c6": 47.65325611793957, - "c7": -60.25145620783186 + "points": { + "c1": -19.39915854628356, + "c2": -63.05904213690873, + "c3": -10.843289083794176, + "c4": 4.916173908479514, + "c5": 29.496846302154985, + "c6": 32.13182558233648, + "c7": -4.066148234661171 }, - "vertexSeeds": { - "c1": 6.9192046993175715, - "c2": 6.895169159675778, - "c3": 6.424913032660552, - "c4": 6.167776448832559, - "c5": 6.570932071499369, - "c6": 6.521562787989965, - "c7": 6.4908681628810365 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.3564493758668497, + "c7": 1.6782246879334186 }, "rgb": [77, 76, 132] }, @@ -56328,23 +56328,23 @@ "year": 1714, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -32.97258975470248, - "c2": 17.892806409699148, - "c3": 29.657103902214402, - "c4": -0.6551437303213561, - "c5": 29.415532082236055, - "c6": -5.154360327795374, - "c7": 13.874890572931726 + "points": { + "c1": 9.309502830410793, + "c2": -19.357938031689976, + "c3": -32.77196673485932, + "c4": -1.1967728583584574, + "c5": -32.442295073072245, + "c6": 39.65285178642637, + "c7": 9.78042107965738 }, - "vertexSeeds": { - "c1": 7.580271216487492, - "c2": 6.463171872964894, - "c3": 4.027722424188299, - "c4": 5.853674764722921, - "c5": 4.0491950683255595, - "c6": 5.060120000680595, - "c7": 3.5025032813374715 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407305, + "c4": 7.397133610725842, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [77, 76, 132] }, @@ -56355,23 +56355,23 @@ "year": 1714, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 35.00880050091485, - "c2": -18.7681455508119, - "c3": -34.224360051061204, - "c4": 31.91564607552653, - "c5": 20.60923062719222, - "c6": 14.403853325324832, - "c7": -7.49294599558468 + "points": { + "c1": 10.601317538798611, + "c2": 19.70477968739163, + "c3": 19.655327699895437, + "c4": 4.434714839555149, + "c5": 12.771023769140363, + "c6": -0.5621874053945177, + "c7": 16.415333486837312 }, - "vertexSeeds": { - "c1": 5.761450995292563, - "c2": 5.835249993085361, - "c3": 5.716846345838836, - "c4": 6.833628142160759, - "c5": 6.798518447148646, - "c6": 5.934826903217653, - "c7": 6.152635003101884 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198335, + "c3": 8.159963014331947, + "c4": 6.527970411465557, + "c5": 4.895977808599167, + "c6": 3.2639852057327783, + "c7": 1.6319926028663891 }, "rgb": [86, 146, 138] }, @@ -56382,23 +56382,23 @@ "year": 1714, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 10.852177339742582, - "c2": -13.613278402681548, - "c3": -7.116656641177929, - "c4": 19.39911889613817, - "c5": 17.440116085093408, - "c6": 18.66707985137124, - "c7": 22.803633033362303 + "points": { + "c1": -3.9970855663296234, + "c2": -25.013026971411236, + "c3": 13.42078553014521, + "c4": 4.031082359625209, + "c5": 27.347489525099732, + "c6": 18.14942415332414, + "c7": 9.473896901657213 }, - "vertexSeeds": { - "c1": 2.9592222004425777, - "c2": 2.975373858290534, - "c3": 2.70112127854959, - "c4": 2.88694330222377, - "c5": 2.5924259593727026, - "c6": 2.938529992118382, - "c7": 2.606024919652148 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299603, + "c4": 2.995839112343967, + "c5": 2.2468793342579745, + "c6": 1.4979195561719814, + "c7": 0.748959778085993 }, "rgb": [238, 201, 159] }, @@ -56409,23 +56409,23 @@ "year": 1714, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": -15.552123257859842, - "c2": 9.243101318841177, - "c3": 7.3511887687662, - "c4": -5.246495287516149, - "c5": 4.814919149058813, - "c6": -11.924151440155963, - "c7": 4.334670133832585 + "points": { + "c1": -7.612445500184553, + "c2": 9.943510933561086, + "c3": -19.551471165868918, + "c4": 14.689022655178082, + "c5": 6.2061957920377075, + "c6": -3.7040005996127086, + "c7": 7.133164183449853 }, - "vertexSeeds": { - "c1": 4.352392287966758, - "c2": 4.175039725441038, - "c3": 4.071492109730206, - "c4": 4.131520313460348, - "c5": 4.652806348978965, - "c6": 4.5195263938130115, - "c7": 4.5069164755110664 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.76837725381415, + "c3": 5.640314378178456, + "c4": 4.5122515025427665, + "c5": 3.3841886269070716, + "c6": 2.2561257512713833, + "c7": 1.128062875635695 }, "rgb": [238, 201, 159] }, @@ -56436,23 +56436,23 @@ "year": 1714, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 16.15063470501185, - "c2": 5.684017270290273, - "c3": 26.938888572850725, - "c4": 27.654614284437894, - "c5": -11.605815898269139, - "c6": 13.86410354903008, - "c7": 14.982501216457198 + "points": { + "c1": 23.22190910160703, + "c2": -0.8884987229981114, + "c3": 11.630937895255617, + "c4": -6.231956909443927, + "c5": 29.248375923964165, + "c6": -29.561139519544064, + "c7": 28.477569898614174 }, - "vertexSeeds": { - "c1": 1.2954429932052074, - "c2": 1.2406270250413698, - "c3": 1.3572844457330786, - "c4": 1.1945844703592996, - "c5": 1.2033303194829175, - "c6": 1.3707954051751885, - "c7": 1.2751733812385573 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361993, + "c3": 1.6874711049468323, + "c4": 1.3499768839574675, + "c5": 1.0124826629681003, + "c6": 0.6749884419787331, + "c7": 0.3374942209893672 }, "rgb": [238, 201, 159] }, @@ -56463,23 +56463,23 @@ "year": 1714, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 27.753704257811343, - "c2": -15.865062531365247, - "c3": 1.887184047121238, - "c4": 1.841991329190698, - "c5": -15.13917193156797, - "c6": 24.80757754159893, - "c7": 27.34666038087986 + "points": { + "c1": -11.15848090420921, + "c2": 9.458858807294952, + "c3": 10.501105597685886, + "c4": -2.654537795390322, + "c5": -30.953262926413448, + "c6": 24.69511216929137, + "c7": 26.523141423879373 }, - "vertexSeeds": { - "c1": 4.3743984101085776, - "c2": 4.909273708304265, - "c3": 4.43423760327755, - "c4": 4.691345660213386, - "c5": 4.436653464894087, - "c6": 4.96262112823245, - "c7": 4.356233704438642 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578358, + "c3": 6.079519186315307, + "c4": 4.863615349052241, + "c5": 3.6477115117891823, + "c6": 2.431807674526124, + "c7": 1.2159038372630588 }, "rgb": [86, 146, 138] }, @@ -56490,23 +56490,23 @@ "year": 1714, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -38.83061540130796, - "c2": -3.6788999349557017, - "c3": -31.174943765763896, - "c4": -30.322898053519374, - "c5": -6.466787327644802, - "c6": -10.356556432544387, - "c7": 6.2444361221669595 + "points": { + "c1": -27.447241166480033, + "c2": -10.54027249850197, + "c3": 47.00744246223418, + "c4": -27.93103402070838, + "c5": -20.7836476371982, + "c6": -39.783110894014825, + "c7": 19.38066216891893 }, - "vertexSeeds": { - "c1": 10.16674444796326, - "c2": 9.369221878174852, - "c3": 9.266173516768005, - "c4": 10.590844112422738, - "c5": 10.098739844535707, - "c6": 9.714848757024692, - "c7": 9.984496654827984 + "offsets": { + "c1": 17.928802588996763, + "c2": 15.367545076282937, + "c3": 12.806287563569109, + "c4": 10.245030050855291, + "c5": 7.683772538141473, + "c6": 5.122515025427646, + "c7": 2.5612575127138184 }, "rgb": [58, 15, 49] }, @@ -56517,23 +56517,23 @@ "year": 1714, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 27.57915245484731, - "c2": -3.8040353005525134, - "c3": -24.962954265858095, - "c4": -8.719202248271664, - "c5": -40.678791295454445, - "c6": 7.773007500702342, - "c7": -14.48264661894168 + "points": { + "c1": 27.733717593182384, + "c2": -15.81679665265813, + "c3": -29.5981036417924, + "c4": 2.6048438738087114, + "c5": -34.40680195717949, + "c6": 12.697056596273704, + "c7": -22.931704745896262 }, - "vertexSeeds": { - "c1": 4.469576880852903, - "c2": 3.797291305709744, - "c3": 3.713089740788173, - "c4": 4.252492410596425, - "c5": 4.077826334737543, - "c6": 3.820254769458703, - "c7": 4.190936277788223 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -56544,23 +56544,23 @@ "year": 1715, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": 47.48736185810928, - "c2": -47.35570556525694, - "c3": 26.732279509874587, - "c4": -13.895293295169239, - "c5": -29.675024578118986, - "c6": 32.64438639200604, - "c7": 10.345280419153866 + "points": { + "c1": 4.858282298310712, + "c2": 11.975590346897334, + "c3": 43.83008790035461, + "c4": -15.598559657274848, + "c5": -34.07931483292153, + "c6": 31.56897321132361, + "c7": -11.765720886776606 }, - "vertexSeeds": { - "c1": 4.347090836337551, - "c2": 4.011203740251951, - "c3": 3.8398090127215787, - "c4": 4.474197528821193, - "c5": 3.7238270236625657, - "c6": 4.075021008917931, - "c7": 3.684775405361433 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -56571,23 +56571,23 @@ "year": 1714, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 30.428927813562527, - "c2": -30.91997512632705, - "c3": 14.970082503702567, - "c4": -13.482345352268535, - "c5": -26.98586741007429, - "c6": 24.84730444948166, - "c7": 12.488225734063565 + "points": { + "c1": -24.478557202027265, + "c2": -19.87164908071412, + "c3": -19.0348544597693, + "c4": 30.13882118677683, + "c5": 31.874423754955004, + "c6": -8.922643047895534, + "c7": -6.108337847158353 }, - "vertexSeeds": { - "c1": 5.240052507178029, - "c2": 5.202536113335803, - "c3": 5.240328070501682, - "c4": 5.129110101896558, - "c5": 5.062847516778166, - "c6": 5.410404732736708, - "c7": 5.358759016386265 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262133, + "c3": 6.472491909385106, + "c4": 5.17799352750808, + "c5": 3.883495145631053, + "c6": 2.5889967637540536, + "c7": 1.2944983818770268 }, "rgb": [222, 0, 59] }, @@ -56598,23 +56598,23 @@ "year": 1714, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -15.170386296913147, - "c2": 4.2915851946686985, - "c3": 17.89556384353147, - "c4": -2.099389612223156, - "c5": 25.99760211846219, - "c6": -21.554368756154766, - "c7": 9.046083139342386 + "points": { + "c1": 22.72632576767569, + "c2": 33.548912564510594, + "c3": 27.078641301807195, + "c4": -6.690179575716133, + "c5": -19.566548107804607, + "c6": -5.695951679397449, + "c7": 18.708034083963007 }, - "vertexSeeds": { - "c1": 3.2205042329516385, - "c2": 3.422990452638075, - "c3": 3.2698377128238585, - "c4": 3.1767835001938467, - "c5": 3.3602065034648794, - "c6": 3.1210171588244258, - "c7": 2.9707816051689155 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239945, + "c3": 4.160887656033289, + "c4": 3.328710124826627, + "c5": 2.4965325936199703, + "c6": 1.6643550624133134, + "c7": 0.8321775312066567 }, "rgb": [222, 0, 59] }, @@ -56625,23 +56625,23 @@ "year": 1714, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -13.14125336060713, - "c2": 5.954249292310699, - "c3": 13.143342173346802, - "c4": 12.59417586392135, - "c5": 30.143272253359847, - "c6": -30.722925310042918, - "c7": 19.35249305078341 + "points": { + "c1": 1.0378265082484006, + "c2": -6.483404738338216, + "c3": -32.67052183554086, + "c4": -29.10437099789966, + "c5": -34.458959707329655, + "c6": -19.76032862177183, + "c7": -41.12531016698764 }, - "vertexSeeds": { - "c1": 5.465786458278476, - "c2": 4.365758843144628, - "c3": 5.495791809059893, - "c4": 4.363237360292912, - "c5": 5.165187070825445, - "c6": 5.562906543074302, - "c7": 4.757478528471185 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.15533980582524, + "c3": 6.796116504854368, + "c4": 5.436893203883494, + "c5": 4.077669902912619, + "c6": 2.7184466019417446, + "c7": 1.359223300970874 }, "rgb": [86, 146, 138] }, @@ -56652,23 +56652,23 @@ "year": 1714, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 9.121590211895018, - "c2": 26.74069384053749, - "c3": -15.225004534726672, - "c4": -6.906450807736505, - "c5": 19.24827140679166, - "c6": -1.0569258673351811, - "c7": -25.207487969433732 + "points": { + "c1": 34.46543548182775, + "c2": -26.843309846319634, + "c3": 2.7625666914093827, + "c4": -20.91838258732728, + "c5": -15.752987695243274, + "c6": 15.382613699699498, + "c7": 32.13328346906339 }, - "vertexSeeds": { - "c1": 3.8011741775219634, - "c2": 3.8152590974546268, - "c3": 3.88263461541715, - "c4": 3.811996328369137, - "c5": 3.863100010789434, - "c6": 3.746844170791876, - "c7": 3.797744148388413 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.5755894590846085, + "c3": 4.646324549237177, + "c4": 3.717059639389747, + "c5": 2.7877947295423158, + "c6": 1.8585298196948619, + "c7": 0.9292649098474309 }, "rgb": [58, 15, 49] }, @@ -56679,23 +56679,23 @@ "year": 1714, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -37.9717493923506, - "c2": 2.131845119721838, - "c3": -1.3703311493543922, - "c4": -15.884431787282885, - "c5": 43.01442426064532, - "c6": -17.35218884483435, - "c7": -37.59377794206538 + "points": { + "c1": -23.71112887789908, + "c2": -25.309762748197983, + "c3": 25.298989631299385, + "c4": 17.14053019643078, + "c5": -0.7961325424759451, + "c6": 43.094219736153754, + "c7": 32.13197812270139 }, - "vertexSeeds": { - "c1": 4.574603283073532, - "c2": 4.469609472114198, - "c3": 3.958347102990846, - "c4": 3.8141876099405123, - "c5": 4.548017989987169, - "c6": 4.016480071194296, - "c7": 4.8423294069657 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.0180305131761465, + "c3": 5.848358760980121, + "c4": 4.678687008784095, + "c5": 3.5090152565880732, + "c6": 2.339343504392051, + "c7": 1.1696717521960256 }, "rgb": [222, 0, 59] }, @@ -56706,23 +56706,23 @@ "year": 1714, "resistanceReported": false, "duration": 4147200, - "curveSeeds": { - "c1": 7.087591075895467, - "c2": 7.4836872040488736, - "c3": -5.747789631016081, - "c4": -11.079642141232249, - "c5": 1.315356512036427, - "c6": -9.454521565458418, - "c7": 12.01174805601715 + "points": { + "c1": 0.7034641144589031, + "c2": 14.326759188739231, + "c3": 12.35042173271118, + "c4": -13.645911510893784, + "c5": -7.124374882844823, + "c6": 11.402782029232153, + "c7": -16.420832336697888 }, - "vertexSeeds": { - "c1": 4.320079919463515, - "c2": 4.3272036638073255, - "c3": 3.7443018717942484, - "c4": 3.7066820075928155, - "c5": 4.53445487771644, - "c6": 3.70437293603376, - "c7": 4.143886896698689 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -56733,23 +56733,23 @@ "year": 1714, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -17.66998213026638, - "c2": 14.360315555993708, - "c3": -25.80782054402227, - "c4": -24.4506023672881, - "c5": -3.3835768032062177, - "c6": -31.545372119198632, - "c7": 9.139481217677364 + "points": { + "c1": 17.972257231986525, + "c2": 3.4230766631142657, + "c3": -12.410758281825224, + "c4": -35.402377853911034, + "c5": -29.991346827490368, + "c6": 13.343360681083567, + "c7": -17.981333829665637 }, - "vertexSeeds": { - "c1": 5.123976830282354, - "c2": 5.0266587747329385, - "c3": 4.891132520898921, - "c4": 5.01531030063029, - "c5": 5.4814236470137025, - "c6": 4.980540655652235, - "c7": 4.942592558020557 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [238, 201, 159] }, @@ -56760,23 +56760,23 @@ "year": 1714, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 15.617771144155853, - "c2": -28.985447153368725, - "c3": 28.288867821432788, - "c4": -22.058800769318157, - "c5": -31.895266874810623, - "c6": -7.259695436874495, - "c7": -30.01046593443597 + "points": { + "c1": 25.172792595231122, + "c2": 9.46746091830255, + "c3": -16.424900535189273, + "c4": -29.874695230254407, + "c5": 30.34295573839823, + "c6": -33.05071843987608, + "c7": -26.66802330529501 }, - "vertexSeeds": { - "c1": 6.081688619765935, - "c2": 6.156455306350374, - "c3": 6.064361510258765, - "c4": 6.009555016727396, - "c5": 5.704310721620802, - "c6": 5.7655544257255364, - "c7": 5.8775691248620845 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.87656033287101, + "c3": 7.397133610725838, + "c4": 5.917706888580666, + "c5": 4.438280166435517, + "c6": 2.9588534442903445, + "c7": 1.4794267221451722 }, "rgb": [238, 201, 159] }, @@ -56787,23 +56787,23 @@ "year": 1714, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -22.969350129189433, - "c2": -22.752512704423648, - "c3": -15.48425791597094, - "c4": -23.265237748258446, - "c5": -1.157093148567082, - "c6": 23.720741453926117, - "c7": 0.7258714539691731 + "points": { + "c1": -26.322224078109702, + "c2": -3.6477267319918703, + "c3": 17.1900228270951, + "c4": -3.993303146703024, + "c5": 24.071665511694412, + "c6": 10.473112712491641, + "c7": -16.645518446237265 }, - "vertexSeeds": { - "c1": 1.8944180034959, - "c2": 3.1096236429061723, - "c3": 3.100777669636736, - "c4": 2.2025528014572546, - "c5": 2.0243738706820715, - "c6": 3.199693830377686, - "c7": 2.1768107481466874 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360612, + "c3": 4.230235783633842, + "c4": 3.384188626907074, + "c5": 2.538141470180305, + "c6": 1.692094313453537, + "c7": 0.8460471567267684 }, "rgb": [58, 15, 49] }, @@ -56814,23 +56814,23 @@ "year": 1715, "resistanceReported": false, "duration": 60825600, - "curveSeeds": { - "c1": 61.502880133128116, - "c2": 3.558320512899101, - "c3": -63.88442082715024, - "c4": 74.17971711791813, - "c5": 54.39151775210132, - "c6": 0.16496342568699163, - "c7": -21.14164882250394 + "points": { + "c1": 58.91011201148115, + "c2": -20.054841105343584, + "c3": 78.3611404497949, + "c4": 28.38294971395223, + "c5": -74.61079745647201, + "c6": 76.75238568998859, + "c7": -10.125071451930822 }, - "vertexSeeds": { - "c1": 3.938943488728267, - "c2": 4.096199222032053, - "c3": 4.010705517867937, - "c4": 4.143020824388883, - "c5": 4.08534991384903, - "c6": 4.443473075089627, - "c7": 4.469698165397844 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371707, + "c3": 5.3860379103097555, + "c4": 4.308830328247804, + "c5": 3.2316227461858533, + "c6": 2.154415164123902, + "c7": 1.077207582061951 }, "rgb": [77, 76, 132] }, @@ -56841,23 +56841,23 @@ "year": 1714, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -38.35265091921525, - "c2": 27.974763264458076, - "c3": 19.69170493829764, - "c4": 14.079235455760973, - "c5": 9.042230726080966, - "c6": 31.232497964972296, - "c7": -3.8235310419471844 + "points": { + "c1": -25.566457268450055, + "c2": 30.780961955472705, + "c3": 18.76361821992503, + "c4": 21.052143975471097, + "c5": 15.057737910069108, + "c6": -23.87796404370001, + "c7": -36.324616776180186 }, - "vertexSeeds": { - "c1": 8.009357741078611, - "c2": 8.55557070234698, - "c3": 7.6883527386980335, - "c4": 7.656475360189923, - "c5": 7.890281432771408, - "c6": 7.959746521615934, - "c7": 8.11996315888964 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099856, + "c3": 10.402219140083211, + "c4": 8.321775312066574, + "c5": 6.241331484049928, + "c6": 4.160887656033282, + "c7": 2.0804438280166355 }, "rgb": [77, 76, 132] }, @@ -56868,23 +56868,23 @@ "year": 1714, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 17.94532509692761, - "c2": -7.561317087932551, - "c3": -0.9058763845787006, - "c4": 11.97005606335901, - "c5": 7.597847209616681, - "c6": -29.929368468051322, - "c7": 3.530029615570456 + "points": { + "c1": 6.216487647091121, + "c2": -4.675981290138733, + "c3": -4.022395186999656, + "c4": 21.654989465291592, + "c5": 29.714087898951306, + "c6": -10.809144276000445, + "c7": 11.427918951969694 }, - "vertexSeeds": { - "c1": 1.7938391306653876, - "c2": 1.7924483989927225, - "c3": 1.412891528563655, - "c4": 2.0167806103484045, - "c5": 1.7209504700236176, - "c6": 1.5962898567870043, - "c7": 1.6267295694957415 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.5427646786870093, + "c4": 2.034211742949607, + "c5": 1.5256588072122064, + "c6": 1.0171058714748042, + "c7": 0.5085529357374021 }, "rgb": [222, 0, 59] }, @@ -56895,23 +56895,23 @@ "year": 1714, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": -34.313201719947095, - "c2": -36.99291643288418, - "c3": -17.040019508587434, - "c4": -28.49632733380387, - "c5": -29.991058582039358, - "c6": 14.920736615402845, - "c7": -26.011453459515106 + "points": { + "c1": 45.31628888508532, + "c2": -41.52098984369422, + "c3": 8.247107345488423, + "c4": 26.159503524788924, + "c5": 24.087575002509347, + "c6": -34.8715096555043, + "c7": -38.080161127127255 }, - "vertexSeeds": { - "c1": 2.2514588634114303, - "c2": 2.241429419120958, - "c3": 2.103494104698205, - "c4": 2.3976436443848197, - "c5": 2.209468163167675, - "c6": 2.116136024296541, - "c7": 2.2211889440299433 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027739, + "c3": 2.889505316689783, + "c4": 2.3116042533518244, + "c5": 1.7337031900138684, + "c6": 1.1558021266759122, + "c7": 0.5779010633379561 }, "rgb": [58, 15, 49] }, @@ -56922,23 +56922,23 @@ "year": 1715, "resistanceReported": false, "duration": 59788800, - "curveSeeds": { - "c1": -20.688103288791503, - "c2": 3.6899856992591538, - "c3": -51.53390486355906, - "c4": 12.778594918914024, - "c5": -19.722458327838602, - "c6": 15.346557747627259, - "c7": 71.0162023184406 + "points": { + "c1": 3.188155948860512, + "c2": -66.4138248174522, + "c3": -65.78904285660806, + "c4": -6.661081540733903, + "c5": -54.44755667283516, + "c6": 47.07744208265859, + "c7": -69.72403267499665 }, - "vertexSeeds": { - "c1": 1.793237647502773, - "c2": 1.9965709549165127, - "c3": 1.8890842303434812, - "c4": 1.9998307256393968, - "c5": 1.8428362695354166, - "c6": 1.8636142618161804, - "c7": 1.942547317778415 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.884882108183079, + "c3": 2.4040684234858998, + "c4": 1.9232547387887196, + "c5": 1.4424410540915396, + "c6": 0.9616273693943598, + "c7": 0.4808136846971799 }, "rgb": [222, 0, 59] }, @@ -56949,23 +56949,23 @@ "year": 1715, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -35.65700950162481, - "c2": -21.706961518051994, - "c3": 32.97551419105126, - "c4": -30.5885555735545, - "c5": -38.544068865779515, - "c6": -42.604899074565985, - "c7": -22.1615616526528 + "points": { + "c1": 20.93891512254416, + "c2": 27.969511767069136, + "c3": 39.95964423865172, + "c4": 36.392429273125316, + "c5": 41.4281709293852, + "c6": 42.39979385318894, + "c7": 10.680792794385525 }, - "vertexSeeds": { - "c1": 4.678282394921922, - "c2": 4.37427581864217, - "c3": 4.6615370344336435, - "c4": 4.414189548048599, - "c5": 4.47689760052751, - "c6": 4.676343846676504, - "c7": 4.1548030791628054 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934816, + "c3": 5.709662505779011, + "c4": 4.567730004623206, + "c5": 3.425797503467408, + "c6": 2.2838650023116096, + "c7": 1.1419325011558048 }, "rgb": [238, 201, 159] }, @@ -56976,23 +56976,23 @@ "year": 1715, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -11.68422801493098, - "c2": 0.2239976595433788, - "c3": -16.964864011498953, - "c4": -6.348547040581039, - "c5": 42.16590403933754, - "c6": 46.5693519101335, - "c7": 16.587515450034424 + "points": { + "c1": 50.04506792819972, + "c2": -9.14701475902671, + "c3": 23.968949385665688, + "c4": -1.2452718760077417, + "c5": 26.105138819697537, + "c6": -18.948870366595777, + "c7": -30.248909674202043 }, - "vertexSeeds": { - "c1": 4.91174788138346, - "c2": 5.281970335971237, - "c3": 5.545859080408956, - "c4": 5.272979263438262, - "c5": 5.104141659098577, - "c6": 5.173545845375284, - "c7": 5.277546830061787 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.04438280166436, + "c3": 6.703652334720294, + "c4": 5.36292186777624, + "c5": 4.022191400832174, + "c6": 2.68146093388812, + "c7": 1.34073046694406 }, "rgb": [58, 15, 49] }, @@ -57003,23 +57003,23 @@ "year": 1714, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -11.635100480675792, - "c2": 17.633524408932374, - "c3": -27.098523748894515, - "c4": -3.5731484774042386, - "c5": 30.857253338988627, - "c6": -31.7381443459142, - "c7": -11.27466033739027 + "points": { + "c1": 20.340630118506247, + "c2": 25.58355886812444, + "c3": -32.94328829777921, + "c4": -33.247695174288516, + "c5": 31.215996714711963, + "c6": 34.27390913125322, + "c7": 12.284901996811868 }, - "vertexSeeds": { - "c1": 2.42890562518856, - "c2": 2.4530523532870667, - "c3": 2.4774831643083948, - "c4": 2.5019639587778686, - "c5": 2.4180042196891427, - "c6": 2.5821159540130294, - "c7": 2.4519301085044605 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631069, + "c3": 3.236245954692558, + "c4": 2.5889967637540474, + "c5": 1.9417475728155364, + "c6": 1.2944983818770257, + "c7": 0.6472491909385151 }, "rgb": [58, 15, 49] }, @@ -57030,23 +57030,23 @@ "year": 1715, "resistanceReported": false, "duration": 40435200, - "curveSeeds": { - "c1": -8.515534270756909, - "c2": 12.743895085235046, - "c3": 8.160458813857268, - "c4": 23.601244194412224, - "c5": -5.011428012021966, - "c6": -49.338737891498994, - "c7": 42.99904428545505 + "points": { + "c1": 28.859789240739353, + "c2": -25.003621726192367, + "c3": -23.869059968253204, + "c4": 47.39396210579192, + "c5": 16.167689338489687, + "c6": 36.157368777443374, + "c7": -33.55961990695276 }, - "vertexSeeds": { - "c1": 3.285980696875303, - "c2": 3.246767504271807, - "c3": 3.333141296013088, - "c4": 2.8988879097997273, - "c5": 3.2790243920754922, - "c6": 3.1119856045085053, - "c7": 2.9898063405616178 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958393, + "c3": 3.9990753582986582, + "c4": 3.1992602866389293, + "c5": 2.3994452149791936, + "c6": 1.5996301433194646, + "c7": 0.7998150716597355 }, "rgb": [58, 15, 49] }, @@ -57057,23 +57057,23 @@ "year": 1715, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": 4.144278709970067, - "c2": -10.892708041021152, - "c3": 41.14437900862511, - "c4": -41.20421899946969, - "c5": 10.227476522597762, - "c6": 24.516374523871065, - "c7": -33.39134178071576 + "points": { + "c1": 43.32895150180174, + "c2": 29.894973082367997, + "c3": 19.143207494801388, + "c4": 8.879594456034056, + "c5": -52.66782344100752, + "c6": 13.307394020345697, + "c7": -45.409013701896065 }, - "vertexSeeds": { - "c1": 5.454540939237498, - "c2": 5.486656250962473, - "c3": 5.997740257522648, - "c4": 5.867604427683144, - "c5": 6.124720784677822, - "c6": 5.952224551274488, - "c7": 5.533757548717949 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112349, + "c3": 7.535829865926951, + "c4": 6.028663892741566, + "c5": 4.521497919556168, + "c6": 3.014331946370783, + "c7": 1.507165973185398 }, "rgb": [238, 201, 159] }, @@ -57084,23 +57084,23 @@ "year": 1715, "resistanceReported": false, "duration": 55382400, - "curveSeeds": { - "c1": 46.37245913898906, - "c2": 56.76272757971503, - "c3": -22.321132485277147, - "c4": 68.56296530148995, - "c5": 31.00879878346511, - "c6": 39.37470514221768, - "c7": 18.15243963984439 + "points": { + "c1": -4.131166011569775, + "c2": -4.537330197820694, + "c3": 10.86473639199069, + "c4": -54.65388745203708, + "c5": -4.86304549774286, + "c6": -5.290607999105703, + "c7": 41.16464310680935 }, - "vertexSeeds": { - "c1": 4.852288302853542, - "c2": 4.989785487157472, - "c3": 5.682236225668753, - "c4": 5.46259513046029, - "c5": 5.2851052870757655, - "c6": 5.551840826477527, - "c7": 5.051024241414618 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986128, + "c3": 6.888580674988438, + "c4": 5.510864539990758, + "c5": 4.133148404993067, + "c6": 2.755432269995376, + "c7": 1.3777161349976854 }, "rgb": [222, 0, 59] }, @@ -57111,23 +57111,23 @@ "year": 1715, "resistanceReported": false, "duration": 55123200, - "curveSeeds": { - "c1": -48.61723703734018, - "c2": 38.61285293699346, - "c3": -15.874169903221947, - "c4": -29.94042286740126, - "c5": 51.435606835768894, - "c6": -9.435708150958824, - "c7": -39.694083729998916 + "points": { + "c1": 41.20797267610433, + "c2": 28.41258764459927, + "c3": 15.380813368008162, + "c4": -11.887592859498554, + "c5": 67.85172187161956, + "c6": -25.227825222721883, + "c7": 13.487072136351273 }, - "vertexSeeds": { - "c1": 7.894508756965664, - "c2": 7.779044035127512, - "c3": 7.6616700809199765, - "c4": 7.739153896383236, - "c5": 7.686146182825067, - "c6": 7.383124282320024, - "c7": 7.774240171163041 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490987, + "c3": 9.477577438742493, + "c4": 7.582061950993999, + "c5": 5.686546463245484, + "c6": 3.7910309754969886, + "c7": 1.8955154877484943 }, "rgb": [77, 76, 132] }, @@ -57138,23 +57138,23 @@ "year": 1715, "resistanceReported": false, "duration": 58233600, - "curveSeeds": { - "c1": 15.634977816520333, - "c2": 6.633304138524281, - "c3": -15.889877629976787, - "c4": 44.88664483980703, - "c5": -34.053078081490284, - "c6": -14.756296874324676, - "c7": 7.769762296228947 + "points": { + "c1": 30.462990669062123, + "c2": 69.06319007604172, + "c3": -17.222097535192, + "c4": 31.679399097263513, + "c5": -60.034028331599075, + "c6": 54.8379781105841, + "c7": -47.435034884419046 }, - "vertexSeeds": { - "c1": 6.085406962344999, - "c2": 6.784548910628127, - "c3": 5.309454383702851, - "c4": 5.018718909089534, - "c5": 5.0706582353461185, - "c6": 7.190444600690281, - "c7": 7.175485288748787 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.62413314840499, + "c3": 8.853444290337494, + "c4": 7.082755432269994, + "c5": 5.312066574202498, + "c6": 3.541377716134997, + "c7": 1.770688858067496 }, "rgb": [58, 15, 49] }, @@ -57165,23 +57165,23 @@ "year": 1714, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": 18.930376946664758, - "c2": -5.263299228884428, - "c3": -3.0327219260408853, - "c4": -6.087650535047402, - "c5": -20.536374445130864, - "c6": 5.881083167153342, - "c7": 18.518822228772834 + "points": { + "c1": 10.647400564366578, + "c2": -3.14940880312869, + "c3": -20.901568853483827, + "c4": -22.43102392953679, + "c5": -2.4816106680333903, + "c6": 18.130979372614185, + "c7": -23.25851812022017 }, - "vertexSeeds": { - "c1": 5.207242019862241, - "c2": 5.170362288843779, - "c3": 5.260000791366621, - "c4": 5.255809488046414, - "c5": 5.242540382953215, - "c6": 5.211891901229377, - "c7": 5.173067931901694 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940361, + "c3": 6.287563569116967, + "c4": 5.030050855293574, + "c5": 3.7725381414701804, + "c6": 2.515025427646787, + "c7": 1.2575127138233935 }, "rgb": [86, 146, 138] }, @@ -57192,23 +57192,23 @@ "year": 1714, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 35.87260033520584, - "c2": 14.753265300243669, - "c3": 7.154095455113968, - "c4": 32.34206597797331, - "c5": -38.8517596248912, - "c6": -35.65181463034237, - "c7": 17.32216466887776 + "points": { + "c1": -15.529079066721579, + "c2": 26.512141568060123, + "c3": -36.244122018465184, + "c4": 13.170115102241901, + "c5": -25.270965642246807, + "c6": -30.331349742765703, + "c7": 19.53667022526667 }, - "vertexSeeds": { - "c1": 3.867267861077041, - "c2": 3.9411286671209846, - "c3": 3.9080815750516096, - "c4": 3.9111899489881803, - "c5": 3.9165137475921576, - "c6": 3.9392541281104454, - "c7": 3.9289375524323926 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205251, + "c3": 4.715672676837732, + "c4": 3.772538141470167, + "c5": 2.829403606102649, + "c6": 1.8862690707350835, + "c7": 0.9431345353675653 }, "rgb": [86, 146, 138] }, @@ -57219,23 +57219,23 @@ "year": 1714, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -15.18335501767626, - "c2": 20.82046230526772, - "c3": -19.402709960538044, - "c4": -8.075251210079816, - "c5": 7.408727932817808, - "c6": -14.958740265640646, - "c7": 2.799010748899587 + "points": { + "c1": -22.355824155557954, + "c2": 4.60410185030068, + "c3": -17.14775574398476, + "c4": 15.729752189886035, + "c5": -22.667494537737728, + "c6": -12.792938171277715, + "c7": 18.09320344318943 }, - "vertexSeeds": { - "c1": 4.52525615284307, - "c2": 4.560262537541243, - "c3": 4.741989809235536, - "c4": 4.938248898756263, - "c5": 4.916889292178803, - "c6": 4.507373771933766, - "c7": 5.0119349995213955 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.4895977808599135, + "c3": 6.241331484049923, + "c4": 4.993065187239946, + "c5": 3.7447988904299567, + "c6": 2.4965325936199667, + "c7": 1.2482662968099834 }, "rgb": [77, 76, 132] }, @@ -57246,23 +57246,23 @@ "year": 1714, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -16.32805151496204, - "c2": -3.574442814258589, - "c3": 12.03294090757489, - "c4": -13.838624781288285, - "c5": 27.62868684012824, - "c6": 19.354738746821532, - "c7": -12.997588124329528 + "points": { + "c1": -4.267532553906211, + "c2": 14.758536695172772, + "c3": -29.716668705610452, + "c4": 5.487790018872886, + "c5": -34.15296019432532, + "c6": -0.6363584842437007, + "c7": 15.418348087071735 }, - "vertexSeeds": { - "c1": 7.997799488017096, - "c2": 6.977012307369524, - "c3": 7.024499423724279, - "c4": 6.573659596605426, - "c5": 6.751563110630284, - "c6": 6.901750412587654, - "c7": 9.36093409966378 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312064, + "c3": 11.673601479426722, + "c4": 9.338881183541377, + "c5": 7.004160887656032, + "c6": 4.669440591770688, + "c7": 2.334720295885344 }, "rgb": [238, 201, 159] }, @@ -57273,23 +57273,23 @@ "year": 1715, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 11.77564286502431, - "c2": 24.477597616267055, - "c3": -13.401291511286566, - "c4": -6.548257038855084, - "c5": -35.27062145620507, - "c6": -28.380226715660516, - "c7": 28.059462712396858 + "points": { + "c1": -0.26832236691688394, + "c2": -20.658256215408432, + "c3": -31.03899714802379, + "c4": 41.06404595057159, + "c5": -26.372301444311454, + "c6": 15.297627284793741, + "c7": -37.90804184354486 }, - "vertexSeeds": { - "c1": 4.417710736824813, - "c2": 4.733061065341539, - "c3": 4.881519069091701, - "c4": 4.651517827568296, - "c5": 4.148361462577034, - "c6": 4.689283057114703, - "c7": 4.737582676897313 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538144, + "c3": 6.056403143781783, + "c4": 4.845122515025428, + "c5": 3.633841886269072, + "c6": 2.4225612575127164, + "c7": 1.2112806287563558 }, "rgb": [77, 76, 132] }, @@ -57300,23 +57300,23 @@ "year": 1714, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -3.1475560645892884, - "c2": 25.549191359037543, - "c3": 31.838512599448272, - "c4": 28.486179678357566, - "c5": 27.516267342100242, - "c6": 3.0801186686170396, - "c7": -3.1285024590690966 + "points": { + "c1": -26.11867958641411, + "c2": -30.850343018896147, + "c3": 4.617062853592181, + "c4": 24.952241788277625, + "c5": 9.016393869570933, + "c6": -39.26134395876622, + "c7": -37.36093142276677 }, - "vertexSeeds": { - "c1": 6.839672859765566, - "c2": 6.941892549344161, - "c3": 7.242097373686517, - "c4": 7.1036038587119075, - "c5": 6.89704662615705, - "c6": 6.802845628729832, - "c7": 6.920562980609723 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083226, + "c3": 8.668515950069336, + "c4": 6.9348127600554745, + "c5": 5.201109570041613, + "c6": 3.467406380027724, + "c7": 1.733703190013862 }, "rgb": [58, 15, 49] }, @@ -57327,23 +57327,23 @@ "year": 1714, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 25.495315649891822, - "c2": -19.502155983880574, - "c3": -23.76324481215597, - "c4": 7.293586567046077, - "c5": 18.38415655554128, - "c6": -4.677475219365235, - "c7": -6.155756439422049 + "points": { + "c1": -8.99212099567415, + "c2": -25.536974806094758, + "c3": -26.744652125801267, + "c4": -3.474580379909934, + "c5": 15.911911473325212, + "c6": -16.098366749948937, + "c7": -21.54113096521021 }, - "vertexSeeds": { - "c1": 6.286119736960513, - "c2": 5.483558829712936, - "c3": 6.210128593226449, - "c4": 5.488289280508226, - "c5": 4.930024646188907, - "c6": 5.399117198189116, - "c7": 5.5329236017857175 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066578, + "c4": 6.657420249653259, + "c5": 4.993065187239946, + "c6": 3.328710124826632, + "c7": 1.6643550624133132 }, "rgb": [86, 146, 138] }, @@ -57354,23 +57354,23 @@ "year": 1714, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -20.644775812190044, - "c2": -11.336672662204961, - "c3": 9.627876653239998, - "c4": -3.8812663205231317, - "c5": 8.688935025950673, - "c6": 10.092820762936878, - "c7": -10.800179312787051 + "points": { + "c1": -9.089065131348255, + "c2": 17.00126898938696, + "c3": -11.724391509935192, + "c4": -7.921799597133287, + "c5": -10.325418703815783, + "c6": 0.08892680368051487, + "c7": -2.298203551579018 }, - "vertexSeeds": { - "c1": 3.6688335385129873, - "c2": 3.7529403448961536, - "c3": 2.9570510688801788, - "c4": 3.3866305508730816, - "c5": 3.0440533382573634, - "c6": 3.3517269524964166, - "c7": 3.139554766092286 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923717, + "c3": 4.553860379103098, + "c4": 3.643088303282478, + "c5": 2.7323162274618586, + "c6": 1.821544151641239, + "c7": 0.9107720758206195 }, "rgb": [77, 76, 132] }, @@ -57381,23 +57381,23 @@ "year": 1714, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -4.808546214995314, - "c2": 8.160262265025217, - "c3": -2.9528474403008786, - "c4": 14.785910993900757, - "c5": 1.081755432508551, - "c6": 15.22933865635094, - "c7": -13.263950877272752 + "points": { + "c1": -0.0657403155470746, + "c2": -22.099411007268465, + "c3": -2.667489266147058, + "c4": -29.091602857767576, + "c5": 15.981464715592026, + "c6": -6.475871333114899, + "c7": 32.24073800678302 }, - "vertexSeeds": { - "c1": 6.8470004465064225, - "c2": 6.9017218965056015, - "c3": 6.82455915728883, - "c4": 7.0882436056635765, - "c5": 6.902284748370264, - "c6": 6.9687600712250894, - "c7": 6.811302185606429 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721227, + "c3": 8.460471567267696, + "c4": 6.768377253814165, + "c5": 5.076282940360635, + "c6": 3.3841886269070613, + "c7": 1.6920943134535307 }, "rgb": [222, 0, 59] }, @@ -57408,23 +57408,23 @@ "year": 1714, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 15.703058335775282, - "c2": 27.28466878075156, - "c3": -26.36358573706965, - "c4": -14.639769715448328, - "c5": -20.52312937350946, - "c6": 4.323977970798893, - "c7": 9.60195161199637 + "points": { + "c1": -22.389092796414786, + "c2": -12.940232829556681, + "c3": -13.585414233900217, + "c4": 12.716801603695131, + "c5": -17.050065642831118, + "c6": 5.38119634703807, + "c7": -22.88451275834755 }, - "vertexSeeds": { - "c1": 5.387842628135757, - "c2": 5.4143483421250425, - "c3": 5.4964538361950925, - "c4": 5.55065530360151, - "c5": 5.3399006585536535, - "c6": 5.341544238882427, - "c7": 5.351359079341938 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543689, + "c3": 6.634304207119742, + "c4": 5.307443365695793, + "c5": 3.9805825242718447, + "c6": 2.6537216828478964, + "c7": 1.3268608414239482 }, "rgb": [58, 15, 49] }, @@ -57435,23 +57435,23 @@ "year": 1714, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 4.005156863788102, - "c2": 18.72558107509766, - "c3": -11.87544108857772, - "c4": 8.244584484918068, - "c5": -23.35986060842231, - "c6": -7.895207346126629, - "c7": 8.21490735815689 + "points": { + "c1": 9.016222748355585, + "c2": -6.391682695674557, + "c3": 28.160803991360158, + "c4": -23.92989035257217, + "c5": -6.05597282458265, + "c6": -26.75463764601748, + "c7": -16.764046547801783 }, - "vertexSeeds": { - "c1": 0.8786727953338093, - "c2": 0.898486634246588, - "c3": 0.9024298217095302, - "c4": 0.898159413742167, - "c5": 0.9125147823479145, - "c6": 0.8404500540570694, - "c7": 0.8381345966548073 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.3314840499306526, + "c3": 1.109570041608878, + "c4": 0.8876560332871009, + "c5": 0.6657420249653263, + "c6": 0.4438280166435518, + "c7": 0.22191400832177452 }, "rgb": [77, 76, 132] }, @@ -57462,23 +57462,23 @@ "year": 1715, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -11.098397682704459, - "c2": 12.822986415213634, - "c3": 21.302123622668283, - "c4": -9.243032766477164, - "c5": -4.862861974156623, - "c6": -14.996592083169308, - "c7": -23.06892795175784 + "points": { + "c1": -20.92911923967234, + "c2": 22.22454170428196, + "c3": 2.880292814855146, + "c4": -24.114336166518218, + "c5": 15.711896740282597, + "c6": 23.40229047768483, + "c7": -28.340413770923867 }, - "vertexSeeds": { - "c1": 7.4075901752203634, - "c2": 5.641761133022207, - "c3": 6.9986070280207064, - "c4": 6.839258517944488, - "c5": 6.811343892089698, - "c6": 7.031004243251702, - "c7": 5.440096824500162 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525661, + "c3": 8.922792417938046, + "c4": 7.138233934350439, + "c5": 5.353675450762831, + "c6": 3.5691169671752223, + "c7": 1.784558483587608 }, "rgb": [222, 0, 59] }, @@ -57489,23 +57489,23 @@ "year": 1714, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 33.897117126890166, - "c2": 0.4451879917792567, - "c3": 21.120612569201747, - "c4": 24.308937229497758, - "c5": 25.380132677659645, - "c6": -11.028951016432348, - "c7": 24.48046441759955 + "points": { + "c1": -6.977503719096884, + "c2": 19.140783940512307, + "c3": -25.296970990902675, + "c4": 26.3112284292802, + "c5": 34.62735850174148, + "c6": 14.173105441278047, + "c7": -19.27130835419693 }, - "vertexSeeds": { - "c1": 2.5002502634394306, - "c2": 2.5176040359999585, - "c3": 2.386052836900255, - "c4": 2.3941125416478566, - "c5": 2.205631132372784, - "c6": 2.4513696246836076, - "c7": 2.416953723333254 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092932, + "c3": 3.051317614424409, + "c4": 2.441054091539528, + "c5": 1.8307905686546466, + "c6": 1.2205270457697626, + "c7": 0.6102635228848813 }, "rgb": [58, 15, 49] }, @@ -57516,23 +57516,23 @@ "year": 1716, "resistanceReported": false, "duration": 56160000, - "curveSeeds": { - "c1": 9.63209153630244, - "c2": 18.60530834304265, - "c3": 22.47975269607899, - "c4": -43.7333912080916, - "c5": 12.018716955702104, - "c6": -42.270214635134835, - "c7": -20.516135901626313 + "points": { + "c1": -52.166491281647446, + "c2": -4.667563505158327, + "c3": -14.014720411815219, + "c4": -44.192889983484065, + "c5": -48.452286406709185, + "c6": 57.65321925549816, + "c7": 5.089398450334215 }, - "vertexSeeds": { - "c1": 3.029977838250102, - "c2": 2.682797426354766, - "c3": 2.714589445210284, - "c4": 2.8748907320428936, - "c5": 2.6977420012998095, - "c6": 2.8335849318388275, - "c7": 2.6590554306392633 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314841, + "c3": 3.6292186777623687, + "c4": 2.9033749422098962, + "c5": 2.1775312066574237, + "c6": 1.451687471104945, + "c7": 0.7258437355524725 }, "rgb": [238, 201, 159] }, @@ -57543,23 +57543,23 @@ "year": 1715, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -38.337513652043384, - "c2": 32.56575975483232, - "c3": -51.49666757748101, - "c4": -20.969473911309272, - "c5": 10.47481487636707, - "c6": 51.10037153192312, - "c7": -33.7812107859745 + "points": { + "c1": 57.43666659706701, + "c2": 11.774444625486318, + "c3": -3.3217742337820937, + "c4": 44.8302982238744, + "c5": -30.75684822555342, + "c6": -45.2438130936782, + "c7": 30.330283735238588 }, - "vertexSeeds": { - "c1": 2.537663960267128, - "c2": 2.495250823301376, - "c3": 2.4660115682832675, - "c4": 2.3383372198381664, - "c5": 2.4844447454794545, - "c6": 2.2718405828573376, - "c7": 2.3647800869349838 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897393, + "c3": 3.097549699491446, + "c4": 2.4780397595931594, + "c5": 1.8585298196948696, + "c6": 1.2390198797965797, + "c7": 0.6195099398982898 }, "rgb": [58, 15, 49] }, @@ -57570,23 +57570,23 @@ "year": 1715, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -34.418325560701106, - "c2": 13.601434275934615, - "c3": 18.92430143660208, - "c4": 19.702766350981115, - "c5": 6.61451282764633, - "c6": -38.05795029693922, - "c7": 26.59389737823276 + "points": { + "c1": -27.887397538213584, + "c2": -32.54990790639706, + "c3": -4.152752701705182, + "c4": 2.3242767473859374, + "c5": 30.450199459065125, + "c6": -39.6277338354462, + "c7": 26.613213104072578 }, - "vertexSeeds": { - "c1": 4.939963226736759, - "c2": 4.415475628708929, - "c3": 4.896655492546667, - "c4": 4.298999740088445, - "c5": 4.668967106216826, - "c6": 4.30956316670293, - "c7": 4.452691422199509 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457698, + "c3": 6.0101710587147466, + "c4": 4.808136846971797, + "c5": 3.6061026352288454, + "c6": 2.404068423485895, + "c7": 1.2020342117429446 }, "rgb": [86, 146, 138] }, @@ -57597,23 +57597,23 @@ "year": 1715, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -1.8997569883202274, - "c2": 20.271672129184537, - "c3": -4.028415435406913, - "c4": -2.767895701597787, - "c5": 4.68742013679794, - "c6": 20.831371096332212, - "c7": -39.26286227651872 + "points": { + "c1": -43.292650767154605, + "c2": -7.473142655195296, + "c3": 12.373856095498738, + "c4": -18.3513880922039, + "c5": 9.631807628424149, + "c6": 14.34770062299522, + "c7": 18.456370356923216 }, - "vertexSeeds": { - "c1": 1.7298168191932968, - "c2": 1.7494092447848386, - "c3": 1.1649220746536306, - "c4": 1.2301989684006833, - "c5": 2.0716951763823173, - "c6": 2.191415245479264, - "c7": 1.595127759831646 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746186, + "c3": 2.7276930189551547, + "c4": 2.1821544151641232, + "c5": 1.6366158113730935, + "c6": 1.0910772075820616, + "c7": 0.5455386037910308 }, "rgb": [58, 15, 49] }, @@ -57624,23 +57624,23 @@ "year": 1715, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": 37.125220436757864, - "c2": 14.765671276082323, - "c3": -12.879667333493494, - "c4": 37.3381003705993, - "c5": -24.929769206128597, - "c6": -12.393580336492093, - "c7": 6.121298505161093 + "points": { + "c1": 7.794482123360737, + "c2": 11.455305842842108, + "c3": -32.77819625509482, + "c4": -24.364593730067476, + "c5": -31.78805508404205, + "c6": 29.496598172266793, + "c7": 45.67226429194212 }, - "vertexSeeds": { - "c1": 10.24024521002452, - "c2": 9.152978623623714, - "c3": 9.392748369173237, - "c4": 9.548377027322315, - "c5": 9.665699231593324, - "c6": 9.490424123915272, - "c7": 10.424451602938152 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961157, + "c3": 12.621359223300978, + "c4": 10.097087378640774, + "c5": 7.5728155339805845, + "c6": 5.048543689320393, + "c7": 2.5242718446601913 }, "rgb": [86, 146, 138] }, @@ -57651,23 +57651,23 @@ "year": 1715, "resistanceReported": true, "duration": 29289600, - "curveSeeds": { - "c1": -38.23002150496924, - "c2": 31.785077316229206, - "c3": -5.8623928707455875, - "c4": -8.714095282745113, - "c5": -16.709428662136744, - "c6": -39.66954199694472, - "c7": 7.426538493837214 + "points": { + "c1": -35.11277108418956, + "c2": 37.95040559638497, + "c3": -12.313700864293924, + "c4": -11.011927670305262, + "c5": 19.115707058154563, + "c6": -4.569610132194882, + "c7": 36.12297355640986 }, - "vertexSeeds": { - "c1": 3.0839802308419824, - "c2": 3.173341215712622, - "c3": 3.062354536491747, - "c4": 2.982061615562442, - "c5": 3.1393190488739733, - "c6": 3.1660762252628745, - "c7": 3.099704810140402 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676839, + "c3": 3.8372630605640343, + "c4": 3.0698104484512294, + "c5": 2.3023578363384245, + "c6": 1.5349052242256098, + "c7": 0.7674526121128049 }, "rgb": [238, 201, 159] }, @@ -57678,23 +57678,23 @@ "year": 1715, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 36.83186900803372, - "c2": -5.879155186161256, - "c3": 11.634454365136286, - "c4": 28.22908232406961, - "c5": 8.665227830709895, - "c6": 37.35486481574637, - "c7": 4.610874678089843 + "points": { + "c1": -24.576720202464802, + "c2": 39.05265157298261, + "c3": -34.47475355703203, + "c4": -47.812768775747266, + "c5": 30.39572541262386, + "c6": 21.032247567158265, + "c7": 33.68579957302779 }, - "vertexSeeds": { - "c1": 4.89241818146214, - "c2": 4.919242994037609, - "c3": 4.949148210852202, - "c4": 4.93005351825342, - "c5": 5.12619120790622, - "c6": 5.022192824194125, - "c7": 5.026028719985361 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940364, + "c3": 6.287563569116974, + "c4": 5.030050855293561, + "c5": 3.772538141470171, + "c6": 2.5150254276467807, + "c7": 1.2575127138233904 }, "rgb": [77, 76, 132] }, @@ -57705,23 +57705,23 @@ "year": 1715, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -2.4814946016274817, - "c2": 34.35345271124974, - "c3": -9.855043279468937, - "c4": 1.4788964551321584, - "c5": -0.4718592231279217, - "c6": -30.427397297013542, - "c7": -34.74249521936504 + "points": { + "c1": 40.32045481127654, + "c2": -39.30276139559625, + "c3": -40.59269908637743, + "c4": -2.0768880770771716, + "c5": 22.315859033538054, + "c6": 24.50428287409776, + "c7": -34.16188217545558 }, - "vertexSeeds": { - "c1": 7.397764372713464, - "c2": 6.53715289421749, - "c3": 6.925296360952533, - "c4": 7.608703924878544, - "c5": 7.183949276033548, - "c6": 7.215832682709738, - "c7": 8.002958912147038 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.59500693481276, + "c3": 9.662505779010633, + "c4": 7.730004623208506, + "c5": 5.79750346740638, + "c6": 3.865002311604253, + "c7": 1.9325011558021266 }, "rgb": [222, 0, 59] }, @@ -57732,23 +57732,23 @@ "year": 1715, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 15.96202192752375, - "c2": 36.01807235979952, - "c3": 15.905238084525003, - "c4": 3.628406925916977, - "c5": -7.509256598902255, - "c6": -36.02541453312501, - "c7": 18.56507438471641 + "points": { + "c1": 35.92264955056106, + "c2": -7.951924240622759, + "c3": 21.20542762521643, + "c4": 7.690483504929617, + "c5": 24.17713789426672, + "c6": 27.09528241817894, + "c7": -16.209442180302208 }, - "vertexSeeds": { - "c1": 5.9142282750962165, - "c2": 5.304857424368093, - "c3": 6.355112409264809, - "c4": 5.757731817057691, - "c5": 6.105722508624016, - "c6": 5.552668299115864, - "c7": 5.1031435947335115 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [86, 146, 138] }, @@ -57759,23 +57759,23 @@ "year": 1714, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -16.99933330679977, - "c2": 12.849235099180202, - "c3": -3.5855436715599964, - "c4": -22.204006945273136, - "c5": -6.101780327925972, - "c6": 22.08294649319377, - "c7": 18.933457040964438 + "points": { + "c1": 26.638670118800338, + "c2": -22.482915712114387, + "c3": 1.406234349071795, + "c4": 9.813293802866628, + "c5": -11.564462650870713, + "c6": 17.67666657635426, + "c7": -3.807340491064675 }, - "vertexSeeds": { - "c1": 4.633433863807706, - "c2": 4.554407150363982, - "c3": 4.589014061112387, - "c4": 4.325939269098243, - "c5": 4.418502415878711, - "c6": 4.47630626452343, - "c7": 4.488990796554024 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044378, + "c4": 4.438280166435507, + "c5": 3.328710124826628, + "c6": 2.21914008321775, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -57786,23 +57786,23 @@ "year": 1715, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 10.212526968651503, - "c2": -14.897391700378183, - "c3": 13.870433671117027, - "c4": 16.746784224545877, - "c5": -26.030239435983688, - "c6": 0.9306081092802749, - "c7": 9.730485916180378 + "points": { + "c1": 25.228852201175144, + "c2": 18.314184647017, + "c3": -1.3873341946694495, + "c4": -5.932093020014399, + "c5": 7.907209182048369, + "c6": -9.24462653973979, + "c7": 19.699357912915787 }, - "vertexSeeds": { - "c1": 5.319764711993022, - "c2": 5.034924212117541, - "c3": 5.579802204702487, - "c4": 4.662075525563358, - "c5": 5.182330170216467, - "c6": 5.570111128273005, - "c7": 4.7133506368802545 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387891, + "c4": 5.455386037910311, + "c5": 4.0915395284327305, + "c6": 2.7276930189551556, + "c7": 1.36384650947758 }, "rgb": [238, 201, 159] }, @@ -57813,23 +57813,23 @@ "year": 1715, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 21.412403829360684, - "c2": 30.26257787830908, - "c3": 3.064301324166749, - "c4": -7.976671305662503, - "c5": 16.653757481763606, - "c6": 28.949940179102867, - "c7": 31.156012953286535 + "points": { + "c1": -24.305965191514282, + "c2": -20.534372999363555, + "c3": 3.252056560849894, + "c4": 26.31871289454284, + "c5": -7.833682199307688, + "c6": 26.498633628473563, + "c7": 26.430676190366484 }, - "vertexSeeds": { - "c1": 4.513200836297787, - "c2": 4.471971930932692, - "c3": 5.352381428784941, - "c4": 4.601867792535842, - "c5": 4.89289716979623, - "c6": 5.205837912322645, - "c7": 4.822374783762135 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [86, 146, 138] }, @@ -57840,23 +57840,23 @@ "year": 1715, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -6.791612319146907, - "c2": -1.8930575509333707, - "c3": 11.799881563394614, - "c4": -21.871217688565835, - "c5": 39.92793079029586, - "c6": -15.388546436605466, - "c7": -21.426759344017448 + "points": { + "c1": 39.774435058892934, + "c2": -33.43881792608713, + "c3": -24.284395831395308, + "c4": 8.107525647531645, + "c5": -12.05322576606423, + "c6": -5.393967024790641, + "c7": -38.873740842291376 }, - "vertexSeeds": { - "c1": 8.191266295788019, - "c2": 10.068230241913195, - "c3": 9.611649224509275, - "c4": 10.98081723341956, - "c5": 11.609777058077707, - "c6": 8.594056591906911, - "c7": 7.868171263278456 + "offsets": { + "c1": 19.449838187702266, + "c2": 16.67128987517337, + "c3": 13.892741562644476, + "c4": 11.11419325011558, + "c5": 8.335644937586684, + "c6": 5.55709662505779, + "c7": 2.778548312528895 }, "rgb": [77, 76, 132] }, @@ -57867,23 +57867,23 @@ "year": 1715, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 24.29929301823543, - "c2": -16.301595996624588, - "c3": -13.344971420911673, - "c4": -7.254234194734938, - "c5": -8.331454684401809, - "c6": 0.34159022581372156, - "c7": -28.570419420777213 + "points": { + "c1": 18.27861743991636, + "c2": 27.820786447727578, + "c3": 19.151528771747664, + "c4": 13.846008272767612, + "c5": -6.228039844120666, + "c6": 15.15454530528941, + "c7": -0.39920529082242595 }, - "vertexSeeds": { - "c1": 6.906533654246494, - "c2": 6.669415848687007, - "c3": 6.8896203684960975, - "c4": 7.366614743042682, - "c5": 7.004336305304704, - "c6": 6.314402663107865, - "c7": 7.272988697726538 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471571, + "c4": 7.156726768377258, + "c5": 5.367545076282937, + "c6": 3.578363384188624, + "c7": 1.789181692094312 }, "rgb": [238, 201, 159] }, @@ -57894,23 +57894,23 @@ "year": 1715, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 25.642914340729504, - "c2": 20.09206140401549, - "c3": 9.71529608465896, - "c4": -5.279265447348287, - "c5": -1.8945547212104081, - "c6": -16.234054659140064, - "c7": 12.23121011107304 + "points": { + "c1": -13.209152539815413, + "c2": 31.404385054786346, + "c3": -33.87340173765817, + "c4": -30.94917277685358, + "c5": 23.363557038883393, + "c6": 4.515293130220407, + "c7": -24.63842633313042 }, - "vertexSeeds": { - "c1": 3.40560562529825, - "c2": 3.6728276671289457, - "c3": 3.6123847181542605, - "c4": 3.7646935534309893, - "c5": 3.8621851422213522, - "c6": 3.6943283831698963, - "c7": 3.634946133874084 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.5478502080443794, + "c3": 4.623208506703652, + "c4": 3.698566805362919, + "c5": 2.7739251040221933, + "c6": 1.8492834026814595, + "c7": 0.9246417013407262 }, "rgb": [58, 15, 49] }, @@ -57921,23 +57921,23 @@ "year": 1715, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -20.78889878462487, - "c2": 39.01011319516664, - "c3": -19.647582080620626, - "c4": -3.1903422368196814, - "c5": 14.03265203987069, - "c6": 11.896004799852847, - "c7": -36.68381493562397 + "points": { + "c1": 35.86291227501712, + "c2": 13.307076155638882, + "c3": -9.652399114597277, + "c4": 9.558212745641647, + "c5": 21.28732694134944, + "c6": -30.943551318199773, + "c7": 31.968775626181852 }, - "vertexSeeds": { - "c1": 5.7017074528578195, - "c2": 6.204614501780761, - "c3": 5.383870817025387, - "c4": 5.4332118058455885, - "c5": 5.405501017027246, - "c6": 6.165526595046937, - "c7": 5.091798790011402 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991681, + "c3": 7.466481738326397, + "c4": 5.973185390661114, + "c5": 4.479889042995838, + "c6": 2.986592695330563, + "c7": 1.4932963476652794 }, "rgb": [58, 15, 49] }, @@ -57948,23 +57948,23 @@ "year": 1715, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 13.65350749206143, - "c2": -10.87580936626021, - "c3": -18.64164607225314, - "c4": 0.561914947585386, - "c5": 21.61005046989522, - "c6": 8.916702930664215, - "c7": 6.9560933040030335 + "points": { + "c1": 11.359320110486657, + "c2": 12.103341304265456, + "c3": -12.949002380064302, + "c4": -8.54036468045534, + "c5": 24.797241229077457, + "c6": 6.758064560333089, + "c7": -19.804581023243607 }, - "vertexSeeds": { - "c1": 6.236099471960268, - "c2": 6.128046848840997, - "c3": 6.558119940195994, - "c4": 5.843708779225448, - "c5": 6.292465933518477, - "c6": 6.565896943480518, - "c7": 6.049092016901849 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037447, + "c3": 8.06749884419787, + "c4": 6.453999075358293, + "c5": 4.84049930651873, + "c6": 3.226999537679153, + "c7": 1.6134997688395765 }, "rgb": [238, 201, 159] }, @@ -57975,23 +57975,23 @@ "year": 1715, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 13.703612027358886, - "c2": -17.995176719926725, - "c3": 12.548216090353527, - "c4": -4.154738976556715, - "c5": -13.157969265200236, - "c6": -7.21429198687024, - "c7": 24.910934038421622 + "points": { + "c1": 13.532874372985205, + "c2": 19.4305578190763, + "c3": -28.855747572437938, + "c4": -30.275274792182714, + "c5": 14.701294442081242, + "c6": 12.523755046489434, + "c7": -8.743112477425672 }, - "vertexSeeds": { - "c1": 0.9599424775279602, - "c2": 1.0481569984957124, - "c3": 0.9928410934045392, - "c4": 1.0845327135493716, - "c5": 0.9627066412097944, - "c6": 1.0573998276125003, - "c7": 0.9744139704937261 + "offsets": { + "c1": 1.8770226537216828, + "c2": 1.6088765603328707, + "c3": 1.3407304669440592, + "c4": 1.0725843735552472, + "c5": 0.8044382801664354, + "c6": 0.5362921867776236, + "c7": 0.2681460933888118 }, "rgb": [238, 201, 159] }, @@ -58002,23 +58002,23 @@ "year": 1715, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 39.47193091340336, - "c2": 8.496164198346541, - "c3": 10.907816909661499, - "c4": -39.36579319812162, - "c5": -7.277475256234084, - "c6": -0.16832038416683304, - "c7": 35.71541993411808 + "points": { + "c1": 35.166647765868326, + "c2": 30.071881081786067, + "c3": 30.7279782855124, + "c4": 29.395159214337376, + "c5": -34.76983911927455, + "c6": 20.51541522595894, + "c7": 34.10069289326331 }, - "vertexSeeds": { - "c1": 4.861561091879134, - "c2": 4.7766545667443, - "c3": 4.567617370688874, - "c4": 4.861642016955981, - "c5": 4.459337155631491, - "c6": 4.3714652333748045, - "c7": 4.722726247480018 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538139, + "c3": 6.056403143781784, + "c4": 4.84512251502543, + "c5": 3.6338418862690696, + "c6": 2.422561257512715, + "c7": 1.2112806287563604 }, "rgb": [222, 0, 59] }, @@ -58029,23 +58029,23 @@ "year": 1715, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -30.753400272785942, - "c2": -26.92032281538478, - "c3": 21.27296927611126, - "c4": 9.068069660391139, - "c5": -0.9800492558238219, - "c6": 23.246116739040303, - "c7": -29.84406397034245 + "points": { + "c1": -1.2710273467163375, + "c2": -18.8603775856406, + "c3": 25.59500828041093, + "c4": 18.20473332515033, + "c5": 26.42343723487061, + "c6": -4.82434347293345, + "c7": 19.549841679671182 }, - "vertexSeeds": { - "c1": 8.866358447613514, - "c2": 7.915330178340529, - "c3": 7.979689317355607, - "c4": 7.98091780254622, - "c5": 8.21577595094032, - "c6": 7.933123192512765, - "c7": 7.859035212260997 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904297, + "c3": 10.864539990753583, + "c4": 8.691631992602865, + "c5": 6.518723994452149, + "c6": 4.3458159963014324, + "c7": 2.1729079981507162 }, "rgb": [222, 0, 59] }, @@ -58056,23 +58056,23 @@ "year": 1715, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -34.148628082262285, - "c2": 19.181986651484536, - "c3": -11.408815618707923, - "c4": -5.012068062357905, - "c5": -1.5038880462261162, - "c6": -36.61981421546992, - "c7": 19.200168907919334 + "points": { + "c1": -22.887931401173773, + "c2": 9.995601916175396, + "c3": -1.6626673298020194, + "c4": 36.59258084452405, + "c5": -35.09537718126216, + "c6": -38.4127973647082, + "c7": 7.207127856541099 }, - "vertexSeeds": { - "c1": 1.65555754830595, - "c2": 1.7774155120457604, - "c3": 1.8604872640529946, - "c4": 1.9476669573769985, - "c5": 1.714605493872155, - "c6": 1.8800240278736056, - "c7": 1.6723744320792517 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233006, + "c3": 2.4271844660194173, + "c4": 1.9417475728155338, + "c5": 1.4563106796116503, + "c6": 0.9708737864077669, + "c7": 0.48543689320388345 }, "rgb": [86, 146, 138] }, @@ -58083,23 +58083,23 @@ "year": 1715, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 24.38925523944962, - "c2": -22.192481932506062, - "c3": 28.55532097103153, - "c4": -23.233325943758018, - "c5": 12.73192238784355, - "c6": 1.732302794645971, - "c7": 13.955965309469942 + "points": { + "c1": 11.702109065757824, + "c2": 16.93652812248252, + "c3": -29.65703829900802, + "c4": -29.939773712275038, + "c5": -3.467593620834304, + "c6": -26.08603317644626, + "c7": -27.247823447785656 }, - "vertexSeeds": { - "c1": 4.064336301108182, - "c2": 3.8674842037782313, - "c3": 4.154746157806324, - "c4": 4.057117757082499, - "c5": 4.22955305703549, - "c6": 4.219522674326319, - "c7": 3.977954584127255 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244145, + "c6": 2.03421174294961, + "c7": 1.017105871474805 }, "rgb": [222, 0, 59] }, @@ -58110,23 +58110,23 @@ "year": 1716, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": 24.678728939976523, - "c2": -13.902974731977395, - "c3": -47.50550712897777, - "c4": 10.720397378803483, - "c5": 3.248613020821246, - "c6": -18.939754848502105, - "c7": 12.57415447246369 + "points": { + "c1": 6.298572770041737, + "c2": 51.21646042641082, + "c3": -2.3762520132983695, + "c4": 36.79020918549449, + "c5": -10.551215739075765, + "c6": -50.15112633133222, + "c7": 5.165041483722433 }, - "vertexSeeds": { - "c1": 1.974333208096263, - "c2": 5.105379283695845, - "c3": 5.29640393752822, - "c4": 3.0597060538570253, - "c5": 3.8065563695256435, - "c6": 5.605683054887492, - "c7": 4.573824280671241 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055478, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.773925104022191, + "c7": 1.3869625520110955 }, "rgb": [238, 201, 159] }, @@ -58137,23 +58137,23 @@ "year": 1715, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": -16.872582227569815, - "c2": 8.341448607889305, - "c3": -19.1695949833705, - "c4": 8.825203349292408, - "c5": 2.7264834475302777, - "c6": -19.79386537565286, - "c7": -9.98608042301523 + "points": { + "c1": 18.172356745303084, + "c2": 8.689379708016396, + "c3": -18.743125232398082, + "c4": -10.237279318447754, + "c5": -5.563899801486521, + "c6": 10.943778458315222, + "c7": -7.18004545589562 }, - "vertexSeeds": { - "c1": 3.2590395262012106, - "c2": 3.041537974167181, - "c3": 2.9616617236990854, - "c4": 2.9161999288685583, - "c5": 2.9950696142554833, - "c6": 3.093652482980221, - "c7": 3.055379553217292 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -58164,23 +58164,23 @@ "year": 1715, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": -16.696837250632868, - "c2": 6.816998871050398, - "c3": -6.883847911401848, - "c4": 16.104069847813427, - "c5": 10.546003567498094, - "c6": 6.211348975418964, - "c7": -13.724609354504944 + "points": { + "c1": -20.81323106160479, + "c2": 9.781099735978373, + "c3": -1.13721281950178, + "c4": -4.74023453515715, + "c5": -0.770239756996542, + "c6": -10.935600783991664, + "c7": 14.544997040640126 }, - "vertexSeeds": { - "c1": 3.9432220598010677, - "c2": 3.719562585405876, - "c3": 3.79910276402927, - "c4": 4.1264673179244555, - "c5": 3.87146307470365, - "c6": 3.903795573083846, - "c7": 4.209710870887532 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [77, 76, 132] }, @@ -58191,23 +58191,23 @@ "year": 1715, "resistanceReported": true, "duration": 24105600, - "curveSeeds": { - "c1": -34.08996455007195, - "c2": -12.563884943373775, - "c3": 24.41896030526123, - "c4": -15.060326581041124, - "c5": 22.45244444563007, - "c6": 26.146092784010392, - "c7": 12.591483039407542 + "points": { + "c1": -27.28518896734922, + "c2": 35.32507607215117, + "c3": 1.0366061654207215, + "c4": 17.710508031349086, + "c5": 30.83566304997087, + "c6": 34.58336238369056, + "c7": -12.336875810955046 }, - "vertexSeeds": { - "c1": 8.462501778614612, - "c2": 7.614067189673894, - "c3": 7.558623248699975, - "c4": 8.560298004896044, - "c5": 8.990635060552675, - "c6": 7.260781761562738, - "c7": 7.403190412419353 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.95423023578363, + "c3": 10.79519186315303, + "c4": 8.636153490522421, + "c5": 6.477115117891819, + "c6": 4.3180767452612105, + "c7": 2.159038372630601 }, "rgb": [238, 201, 159] }, @@ -58218,23 +58218,23 @@ "year": 1715, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 8.449551890782818, - "c2": 12.944794486644732, - "c3": 4.989361274665946, - "c4": -5.688007778677102, - "c5": -16.34624025000604, - "c6": 15.754438775899104, - "c7": 5.380648343611313 + "points": { + "c1": 20.566136417154183, + "c2": 17.426114124290336, + "c3": -8.138927079311918, + "c4": 5.4936490767545365, + "c5": 17.077791343590654, + "c6": 13.467293032466536, + "c7": 15.064564292969216 }, - "vertexSeeds": { - "c1": 6.559230882863111, - "c2": 6.32288684753825, - "c3": 6.336858761309095, - "c4": 6.545850550058993, - "c5": 6.357192725105655, - "c6": 6.431039097613693, - "c7": 6.5841105575298675 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715668, + "c3": 7.882570503929718, + "c4": 6.306056403143768, + "c5": 4.729542302357817, + "c6": 3.1530282015719004, + "c7": 1.5765141007859502 }, "rgb": [58, 15, 49] }, @@ -58245,23 +58245,23 @@ "year": 1715, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 4.695968083481247, - "c2": 21.85939430360561, - "c3": 3.484060141980592, - "c4": -37.258775285118396, - "c5": 5.018373999633333, - "c6": -18.011796106043047, - "c7": 15.370684690547932 + "points": { + "c1": 28.134066214833467, + "c2": 37.99627422590012, + "c3": 7.127770052430719, + "c4": -37.304994180155134, + "c5": -10.699288505064374, + "c6": 35.033596596157295, + "c7": 0.07333445349571122 }, - "vertexSeeds": { - "c1": 7.645451833867918, - "c2": 7.343282978554694, - "c3": 7.604278498472427, - "c4": 7.604501658802867, - "c5": 7.573525356961552, - "c6": 7.44337010291557, - "c7": 7.307161837780437 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968107, + "c3": 9.177068885806737, + "c4": 7.341655108645395, + "c5": 5.506241331484054, + "c6": 3.6708275543226834, + "c7": 1.8354137771613417 }, "rgb": [238, 201, 159] }, @@ -58272,23 +58272,23 @@ "year": 1715, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -1.6178905738596576, - "c2": 6.449548268600125, - "c3": -19.64992527906294, - "c4": -18.76621641487553, - "c5": 12.161308656510656, - "c6": 27.30859419850055, - "c7": -26.2919207412319 + "points": { + "c1": -5.326812185044172, + "c2": -15.942805919723456, + "c3": 15.010518857891505, + "c4": -17.708791413266514, + "c5": 30.167027450537184, + "c6": -12.52907313393624, + "c7": 15.08295894117083 }, - "vertexSeeds": { - "c1": 1.6030245231556122, - "c2": 1.7124695956210403, - "c3": 1.6516813021784935, - "c4": 1.690149744856671, - "c5": 1.7571190249427815, - "c6": 1.536463655299344, - "c7": 1.6906981388260427 + "offsets": { + "c1": 2.9773462783171523, + "c2": 2.5520110957004154, + "c3": 2.126675913083678, + "c4": 1.7013407304669448, + "c5": 1.2760055478502077, + "c6": 0.8506703652334707, + "c7": 0.42533518261673703 }, "rgb": [58, 15, 49] }, @@ -58299,23 +58299,23 @@ "year": 1715, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 24.99209052372496, - "c2": -11.900136958205028, - "c3": -27.134396114220074, - "c4": -7.967494786757637, - "c5": 31.08169041077889, - "c6": -35.46634898566045, - "c7": -35.259238240681896 + "points": { + "c1": -12.434999658870488, + "c2": 29.002461636663057, + "c3": 8.165082467527704, + "c4": -10.179839763740645, + "c5": 34.60765431046474, + "c6": -6.418528535210282, + "c7": -4.228921874727504 }, - "vertexSeeds": { - "c1": 4.270213447117119, - "c2": 4.606590961309032, - "c3": 4.560676501980176, - "c4": 4.437565178654942, - "c5": 4.244118046976319, - "c6": 4.132334069657488, - "c7": 4.4235705978421285 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.76837725381415, + "c3": 5.640314378178456, + "c4": 4.5122515025427665, + "c5": 3.3841886269070716, + "c6": 2.2561257512713833, + "c7": 1.128062875635695 }, "rgb": [238, 201, 159] }, @@ -58326,23 +58326,23 @@ "year": 1715, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -24.69489759903609, - "c2": -1.8416910353345344, - "c3": 32.665308613055906, - "c4": 14.219963965810834, - "c5": 20.224386977752367, - "c6": 2.103024887134872, - "c7": -3.0905836020846387 + "points": { + "c1": 9.56714930030001, + "c2": 22.528089843010562, + "c3": -6.332347091880564, + "c4": -35.77609115453525, + "c5": 2.141367576452552, + "c6": -4.628413428765214, + "c7": -21.443086132247586 }, - "vertexSeeds": { - "c1": 7.7142972645041334, - "c2": 7.457956826980218, - "c3": 7.444367218094937, - "c4": 8.048137153496318, - "c5": 6.744978851373466, - "c6": 8.190907012903498, - "c7": 7.686840969858136 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335645, + "c3": 9.963014331946372, + "c4": 7.970411465557096, + "c5": 5.9778085991678225, + "c6": 3.985205732778548, + "c7": 1.992602866389274 }, "rgb": [86, 146, 138] }, @@ -58353,23 +58353,23 @@ "year": 1715, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 7.11084311708408, - "c2": 19.424216747891435, - "c3": -15.327015388037264, - "c4": 20.460980247201583, - "c5": 8.025044458709708, - "c6": -32.32557505775603, - "c7": 29.103157059702966 + "points": { + "c1": -27.02628362909347, + "c2": 20.61740523427929, + "c3": 32.83847935194444, + "c4": -17.470193708234312, + "c5": -19.008173468990343, + "c6": -11.70907071791968, + "c7": -30.959361538863224 }, - "vertexSeeds": { - "c1": 2.423483537368298, - "c2": 2.26316374648096, - "c3": 2.253283032983247, - "c4": 2.3899098732055744, - "c5": 2.1535393297170766, - "c6": 2.413728761535949, - "c7": 2.4017835881629095 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288494, + "c3": 3.005085529357375, + "c4": 2.404068423485897, + "c5": 1.8030513176144232, + "c6": 1.2020342117429486, + "c7": 0.6010171058714743 }, "rgb": [86, 146, 138] }, @@ -58380,23 +58380,23 @@ "year": 1715, "resistanceReported": false, "duration": 6825600, - "curveSeeds": { - "c1": -1.30641358497326, - "c2": -6.918865653558598, - "c3": 11.220179499153936, - "c4": 7.435821142932387, - "c5": 14.240667793416677, - "c6": 9.829933267301392, - "c7": 6.12579637649328 + "points": { + "c1": -14.898184003042132, + "c2": 0.5297498632975959, + "c3": 8.107164771252567, + "c4": 10.43058819209027, + "c5": 8.627759581697909, + "c6": 8.31714060213233, + "c7": -18.31595816640898 }, - "vertexSeeds": { - "c1": 4.207970914654267, - "c2": 3.920349719439419, - "c3": 3.9131993606614603, - "c4": 3.9828787718196073, - "c5": 3.811561615362179, - "c6": 4.176169631970247, - "c7": 4.1490590729849135 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [238, 201, 159] }, @@ -58407,23 +58407,23 @@ "year": 1715, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 16.844730595773633, - "c2": -4.165476676023829, - "c3": -19.90224565821086, - "c4": 19.77317832436548, - "c5": 21.820075121014177, - "c6": -1.5044055139062067, - "c7": -16.20316365760158 + "points": { + "c1": 29.82929701685177, + "c2": 34.587711139935294, + "c3": 30.852386731075498, + "c4": -30.06087624763056, + "c5": -8.970200104206654, + "c6": 18.917566497222438, + "c7": 16.003544794168626 }, - "vertexSeeds": { - "c1": 4.323856386761996, - "c2": 4.179717479950944, - "c3": 4.526920525805031, - "c4": 4.497736212843755, - "c5": 4.385966793143833, - "c6": 4.3092738657515515, - "c7": 4.481619317442762 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.76837725381415, + "c3": 5.640314378178456, + "c4": 4.5122515025427665, + "c5": 3.3841886269070716, + "c6": 2.2561257512713833, + "c7": 1.128062875635695 }, "rgb": [222, 0, 59] }, @@ -58434,23 +58434,23 @@ "year": 1715, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -1.0569346495250187, - "c2": -23.319465196514685, - "c3": 15.373828030046901, - "c4": 7.700323963167236, - "c5": -27.13336282989229, - "c6": -5.815582748774556, - "c7": -7.434348021888418 + "points": { + "c1": -11.25887917416631, + "c2": 36.775048642126436, + "c3": 27.928214713924163, + "c4": 14.470886899600167, + "c5": -20.93444877057638, + "c6": -28.163594383036003, + "c7": 30.398284970849517 }, - "vertexSeeds": { - "c1": 3.1221747759767147, - "c2": 3.3112368228447164, - "c3": 3.318842134669618, - "c4": 3.195031442985761, - "c5": 3.391477269159633, - "c6": 3.5131099139503434, - "c7": 3.599059161155428 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [58, 15, 49] }, @@ -58461,23 +58461,23 @@ "year": 1715, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -5.731513418825049, - "c2": 5.471263348219409, - "c3": 8.755350568716658, - "c4": 13.528574400850651, - "c5": -3.979056292442703, - "c6": -13.5195976969664, - "c7": -15.45038196622018 + "points": { + "c1": 21.596560387179025, + "c2": -9.273371922225397, + "c3": 2.919677872344696, + "c4": 12.408682155762804, + "c5": 18.169285663326946, + "c6": -16.580500166130705, + "c7": 1.446491127605185 }, - "vertexSeeds": { - "c1": 1.950304442426097, - "c2": 1.9578405715656566, - "c3": 2.1371530045857106, - "c4": 1.9388707216627554, - "c5": 1.99481410555632, - "c6": 2.0536862652882455, - "c7": 1.9476738643319929 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300527, + "c5": 1.5672676837725366, + "c6": 1.0448451225150244, + "c7": 0.5224225612575122 }, "rgb": [222, 0, 59] }, @@ -58488,23 +58488,23 @@ "year": 1715, "resistanceReported": false, "duration": 4838400, - "curveSeeds": { - "c1": 2.7441796745636857, - "c2": -7.210384047187516, - "c3": -13.97114105884514, - "c4": -3.1149465249668182, - "c5": 12.771486231851526, - "c6": -3.300206799819108, - "c7": 8.760886489789804 + "points": { + "c1": -12.617867453058372, + "c2": -5.249178222045524, + "c3": -7.344060699222501, + "c4": 5.276136894389072, + "c5": 2.9949296586740566, + "c6": -8.861907280659947, + "c7": -16.948084490764693 }, - "vertexSeeds": { - "c1": 4.4178658242056414, - "c2": 4.5497527994155815, - "c3": 4.044170173692184, - "c4": 3.804170173558421, - "c5": 4.528293722301407, - "c6": 3.6932289012903827, - "c7": 4.503974766837906 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -58515,23 +58515,23 @@ "year": 1715, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -26.174523743729825, - "c2": 5.886397878101931, - "c3": -2.513098720446589, - "c4": 1.6677240779277405, - "c5": 9.37404030529602, - "c6": 15.190730201361625, - "c7": 3.3618942127038167 + "points": { + "c1": -26.890599097733816, + "c2": 9.545210118268514, + "c3": -9.035712440811565, + "c4": -5.625825300682397, + "c5": -3.6013905711754752, + "c6": -20.93161882181285, + "c7": -17.084291505529144 }, - "vertexSeeds": { - "c1": 2.5828468363564627, - "c2": 2.579748221843663, - "c3": 2.8196772206279452, - "c4": 2.356178746974356, - "c5": 2.799886832741248, - "c6": 2.450565625794123, - "c7": 2.3586037060156775 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.398058252427182, + "c4": 2.718446601941747, + "c5": 2.038834951456311, + "c6": 1.3592233009708734, + "c7": 0.6796116504854355 }, "rgb": [58, 15, 49] }, @@ -58542,23 +58542,23 @@ "year": 1715, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -23.265872611383163, - "c2": 7.367522037479123, - "c3": 11.933217453552825, - "c4": -11.62019734238627, - "c5": 23.609552316143198, - "c6": -19.513569574241153, - "c7": 7.5405949538837795 + "points": { + "c1": -25.58590371496712, + "c2": -8.307451768106624, + "c3": -3.3341120225552032, + "c4": 3.989289260160543, + "c5": -6.465242861869221, + "c6": 13.583893691185576, + "c7": 24.24369513498794 }, - "vertexSeeds": { - "c1": 4.017284195271779, - "c2": 3.944420836482591, - "c3": 4.297115258620773, - "c4": 3.9827020780422138, - "c5": 4.070432650639854, - "c6": 4.3105871750370355, - "c7": 4.49693814262499 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733701, + "c3": 5.59408229311142, + "c4": 4.475265834489133, + "c5": 3.356449375866853, + "c6": 2.2376329172445666, + "c7": 1.1188164586222806 }, "rgb": [238, 201, 159] }, @@ -58569,23 +58569,23 @@ "year": 1715, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -0.24070802505887912, - "c2": -28.924668975678973, - "c3": 8.041138581610106, - "c4": -4.876713216451659, - "c5": 16.23463281128778, - "c6": 2.083759921006802, - "c7": -0.7626399582305936 + "points": { + "c1": 25.537115313363778, + "c2": -27.064491480638623, + "c3": -14.137551435139738, + "c4": -12.724771960133019, + "c5": -8.689165542856703, + "c6": -27.048035010898502, + "c7": -21.963504539620885 }, - "vertexSeeds": { - "c1": 4.121570358928139, - "c2": 4.120063850775519, - "c3": 4.134041199218771, - "c4": 4.152051388783272, - "c5": 4.047540894011955, - "c6": 4.058709593666242, - "c7": 4.030922863110664 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.9639389736477115, + "c3": 4.969949144706426, + "c4": 3.9759593157651407, + "c5": 2.9819694868238558, + "c6": 1.9879796578825704, + "c7": 0.9939898289412852 }, "rgb": [58, 15, 49] }, @@ -58596,23 +58596,23 @@ "year": 1715, "resistanceReported": true, "duration": 11145600, - "curveSeeds": { - "c1": -20.074605675755098, - "c2": -17.798199712937844, - "c3": 13.491931636478391, - "c4": -11.901926848466022, - "c5": -14.589976896452704, - "c6": 19.587483176281793, - "c7": 17.70912616804211 + "points": { + "c1": -4.007914794678747, + "c2": 8.849824631368541, + "c3": 17.32422279908336, + "c4": 13.593905413413836, + "c5": -13.3291293181327, + "c6": 1.0147744533280267, + "c7": 6.237279352513202 }, - "vertexSeeds": { - "c1": 1.9284826974497622, - "c2": 2.011795847153957, - "c3": 1.918677658093263, - "c4": 1.782625551982797, - "c5": 1.9236837798627484, - "c6": 1.8069363421906512, - "c7": 1.94365111200663 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233, + "c3": 2.427184466019419, + "c4": 1.9417475728155345, + "c5": 1.45631067961165, + "c6": 0.970873786407769, + "c7": 0.4854368932038845 }, "rgb": [86, 146, 138] }, @@ -58623,23 +58623,23 @@ "year": 1715, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 11.016804883743703, - "c2": 24.459687440501767, - "c3": -8.596568767154391, - "c4": 3.0448148698789232, - "c5": -25.03671944591053, - "c6": 11.433519207067071, - "c7": -3.069398597139351 + "points": { + "c1": -15.694827700148572, + "c2": -26.499332556014075, + "c3": 1.3258007312993492, + "c4": 11.524041595666596, + "c5": 8.288240727621378, + "c6": 22.79932581153379, + "c7": -0.8881665690649321 }, - "vertexSeeds": { - "c1": 2.0957013009629035, - "c2": 2.046147361106632, - "c3": 1.7790329811264427, - "c4": 1.7439171898304087, - "c5": 2.0074939216614274, - "c6": 1.8083660938342128, - "c7": 1.8666610040246525 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.5427646786870084, + "c4": 2.0342117429496063, + "c5": 1.5256588072122044, + "c6": 1.017105871474804, + "c7": 0.508552935737402 }, "rgb": [238, 201, 159] }, @@ -58650,23 +58650,23 @@ "year": 1715, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 43.69986784458351, - "c2": 10.335728541542075, - "c3": -32.049401092487486, - "c4": 16.09496092059554, - "c5": -35.700109751255184, - "c6": 12.517687648456565, - "c7": -33.29333431773524 + "points": { + "c1": -9.496845153734903, + "c2": 10.060469547733405, + "c3": -26.34246901887998, + "c4": 37.49297798100727, + "c5": -12.34933177947645, + "c6": -11.509624503669478, + "c7": -42.99610334743883 }, - "vertexSeeds": { - "c1": 9.11500937507771, - "c2": 9.294010754506203, - "c3": 10.846258487886102, - "c4": 9.598468653956376, - "c5": 10.276119573499066, - "c6": 11.112993402645477, - "c7": 9.174954712862359 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.532593619972257, + "c3": 13.777161349976891, + "c4": 11.02172907998151, + "c5": 8.266296809986128, + "c6": 5.510864539990755, + "c7": 2.755432269995382 }, "rgb": [86, 146, 138] }, @@ -58677,23 +58677,23 @@ "year": 1715, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -19.265133592699872, - "c2": -10.18814978728819, - "c3": 35.18025251846399, - "c4": 29.4171150702432, - "c5": 12.630856952361896, - "c6": 21.412233194596944, - "c7": 2.256117861320945 + "points": { + "c1": 24.04244356306357, + "c2": -22.993802554999384, + "c3": -0.3710065973887211, + "c4": 8.572038811191739, + "c5": -12.382929497900022, + "c6": 30.57413985008155, + "c7": -22.955496519907843 }, - "vertexSeeds": { - "c1": 9.743819965577135, - "c2": 10.054954980775648, - "c3": 9.940396361347702, - "c4": 9.883151132000297, - "c5": 9.956050579647771, - "c6": 9.743424447795162, - "c7": 9.827240662085357 + "offsets": { + "c1": 16.86084142394822, + "c2": 14.452149791955648, + "c3": 12.043458159963002, + "c4": 9.634766527970433, + "c5": 7.226074895977824, + "c6": 4.817383263985216, + "c7": 2.408691631992608 }, "rgb": [238, 201, 159] }, @@ -58704,23 +58704,23 @@ "year": 1715, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -15.79485174665795, - "c2": 22.64349046828893, - "c3": 27.574947355670034, - "c4": -9.203524352298029, - "c5": -27.332961546371298, - "c6": -25.663087341156768, - "c7": 1.3385428223936913 + "points": { + "c1": 19.897118492006342, + "c2": -27.592237777286954, + "c3": -28.460393930849968, + "c4": 12.773843314593982, + "c5": -3.12486334137931, + "c6": -18.206537172573313, + "c7": 16.28353224833983 }, - "vertexSeeds": { - "c1": 5.577279988741245, - "c2": 5.8716057863839834, - "c3": 6.551140824554441, - "c4": 6.927058716393872, - "c5": 6.567285680588481, - "c6": 5.815794332975966, - "c7": 5.704134520652824 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447989, + "c3": 8.321775312066578, + "c4": 6.657420249653254, + "c5": 4.9930651872399405, + "c6": 3.328710124826627, + "c7": 1.6643550624133134 }, "rgb": [238, 201, 159] }, @@ -58731,23 +58731,23 @@ "year": 1715, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -1.8739105880481048, - "c2": 30.950865833949415, - "c3": 28.431411701538316, - "c4": 19.5927569948035, - "c5": -31.439248940140107, - "c6": 17.54281592932105, - "c7": 34.95768712712691 + "points": { + "c1": 19.081139459001193, + "c2": 19.770676736736704, + "c3": -37.14333311241416, + "c4": 22.289148382677908, + "c5": 12.006238762355878, + "c6": -25.30394122985055, + "c7": -10.537478010125064 }, - "vertexSeeds": { - "c1": 2.077769075710931, - "c2": 1.8491404671600027, - "c3": 1.8541810657448419, - "c4": 1.9705446189113964, - "c5": 1.9937860354410326, - "c6": 1.8448081674045391, - "c7": 2.1017108336910186 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852986, + "c3": 2.635228848821083, + "c4": 2.108183079056865, + "c5": 1.5811373092926493, + "c6": 1.0540915395284336, + "c7": 0.5270457697642157 }, "rgb": [86, 146, 138] }, @@ -58758,23 +58758,23 @@ "year": 1715, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -0.5743064421149562, - "c2": -8.924168555910029, - "c3": 3.262227424500253, - "c4": -30.451815775540968, - "c5": 25.875361335871396, - "c6": -17.187693948030564, - "c7": 6.077191329079838 + "points": { + "c1": -29.72714292637838, + "c2": 20.815938880941133, + "c3": -17.849157292939616, + "c4": -23.92042548782981, + "c5": 9.273539024677028, + "c6": 3.6556792099099127, + "c7": 31.165888133729055 }, - "vertexSeeds": { - "c1": 0.8526783685467137, - "c2": 0.8560646441127503, - "c3": 0.7932807487643926, - "c4": 0.7436032807882049, - "c5": 0.852596578669209, - "c6": 0.7485816102021159, - "c7": 0.7392569922896358 + "offsets": { + "c1": 1.4886731391585761, + "c2": 1.2760055478502077, + "c3": 1.0633379565418406, + "c4": 0.8506703652334722, + "c5": 0.6380027739251038, + "c6": 0.4253351826167354, + "c7": 0.21266759130836838 }, "rgb": [58, 15, 49] }, @@ -58785,23 +58785,23 @@ "year": 1715, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -29.98304637673722, - "c2": 10.432327295872675, - "c3": 35.946538586806426, - "c4": 31.1249367336453, - "c5": 33.895799053555734, - "c6": -33.888649354921526, - "c7": -20.21358930716947 + "points": { + "c1": 0.11988171298466455, + "c2": 0.05885144390386188, + "c3": 6.094824754211579, + "c4": -35.38665649540029, + "c5": -37.39835133947261, + "c6": -22.775550067558168, + "c7": 28.441801456263065 }, - "vertexSeeds": { - "c1": 3.1781370226425816, - "c2": 3.1487991221220177, - "c3": 3.438230453269142, - "c4": 3.1555239884223143, - "c5": 3.160884609914489, - "c6": 3.18798378654628, - "c7": 3.373206805414684 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [58, 15, 49] }, @@ -58812,23 +58812,23 @@ "year": 1715, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 9.352013401921724, - "c2": 4.1384644974964715, - "c3": -32.715749249933324, - "c4": 18.82488959803569, - "c5": 7.506329327187252, - "c6": -1.2080239572673221, - "c7": 32.244641600647675 + "points": { + "c1": 6.686193995646896, + "c2": 30.163359233792427, + "c3": 34.253858863339666, + "c4": 33.09149731415972, + "c5": 4.1018314478042015, + "c6": 19.55064393711747, + "c7": 19.21280899350937 }, - "vertexSeeds": { - "c1": 3.1432474428071795, - "c2": 3.5944730386141934, - "c3": 3.0343966119965753, - "c4": 2.867865946012927, - "c5": 3.6821987701167584, - "c6": 3.258015628792215, - "c7": 3.356500950154756 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682386, + "c3": 4.415164123901988, + "c4": 3.5321312991215903, + "c5": 2.649098474341193, + "c6": 1.7660656495607951, + "c7": 0.8830328247803976 }, "rgb": [222, 0, 59] }, @@ -58839,23 +58839,23 @@ "year": 1715, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 38.27651531250003, - "c2": -26.30913836641805, - "c3": 6.3608829076153555, - "c4": -34.147569160431026, - "c5": 22.262774857775163, - "c6": 22.17644401450577, - "c7": -6.9319782760302076 + "points": { + "c1": 28.171562372891195, + "c2": 38.943580984661985, + "c3": 35.47558007278348, + "c4": -14.726527020828573, + "c5": -11.008686272331914, + "c6": 18.740593033787007, + "c7": 9.536835558688914 }, - "vertexSeeds": { - "c1": 2.11128485320905, - "c2": 1.9513895833814336, - "c3": 2.028665603401654, - "c4": 2.1837480222762182, - "c5": 2.1754147543408857, - "c6": 2.3011705223404944, - "c7": 2.1314498481116524 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.384188626907074, + "c3": 2.8201571890892287, + "c4": 2.2561257512713837, + "c5": 1.6920943134535382, + "c6": 1.128062875635693, + "c7": 0.5640314378178477 }, "rgb": [238, 201, 159] }, @@ -58866,23 +58866,23 @@ "year": 1715, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 18.139614411431538, - "c2": -19.195889684876775, - "c3": 16.171824790424814, - "c4": 8.059560402495876, - "c5": -32.89786157953759, - "c6": -17.418003592518215, - "c7": -10.277555618599486 + "points": { + "c1": 23.165244924949498, + "c2": 30.19365407458335, + "c3": -7.717014413625087, + "c4": 37.15850454426089, + "c5": 26.885933159612193, + "c6": -21.010417281939787, + "c7": 12.11361366814581 }, - "vertexSeeds": { - "c1": 6.651468787154771, - "c2": 6.493317444213553, - "c3": 6.476191227844916, - "c4": 6.134921592799902, - "c5": 6.562485482324383, - "c6": 6.257553157304402, - "c7": 6.628235285200879 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836345, + "c3": 7.951918631530279, + "c4": 6.36153490522423, + "c5": 4.771151178918164, + "c6": 3.180767452612115, + "c7": 1.590383726306066 }, "rgb": [58, 15, 49] }, @@ -58893,23 +58893,23 @@ "year": 1716, "resistanceReported": false, "duration": 61257600, - "curveSeeds": { - "c1": 37.044939370185205, - "c2": 8.403630586970479, - "c3": 60.50603256596719, - "c4": 46.37885594974976, - "c5": -5.451858100006078, - "c6": -69.82569702853105, - "c7": 71.39850955641015 + "points": { + "c1": -51.79091915529088, + "c2": -15.810248057807108, + "c3": 50.808230386636524, + "c4": -44.155119930506295, + "c5": 67.21513864189163, + "c6": -59.02935236529859, + "c7": -67.96372240264115 }, - "vertexSeeds": { - "c1": 2.727244713339576, - "c2": 2.6542305907959904, - "c3": 2.6625555144852138, - "c4": 2.659660257640775, - "c5": 2.857612884465946, - "c6": 2.7412628611905068, - "c7": 2.7491214938296062 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153955, + "c3": 3.5367545076282907, + "c4": 2.8294036061026344, + "c5": 2.1220527045769777, + "c6": 1.414701803051313, + "c7": 0.7073509015256565 }, "rgb": [77, 76, 132] }, @@ -58920,23 +58920,23 @@ "year": 1716, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 42.733155042083915, - "c2": 40.24732809127736, - "c3": 18.882991170155428, - "c4": 24.10223148856192, - "c5": 19.122538552516154, - "c6": 18.669280061153962, - "c7": -26.5208612016168 + "points": { + "c1": 5.371426136407152, + "c2": 17.271314500685, + "c3": -10.179169726427311, + "c4": -20.04436578859374, + "c5": 22.18249431728514, + "c6": 47.143061055455014, + "c7": -13.647315265103266 }, - "vertexSeeds": { - "c1": 4.7317688002538345, - "c2": 4.8751746372716, - "c3": 4.692424369272265, - "c4": 4.910621373287128, - "c5": 4.734776428270785, - "c6": 4.804411008673671, - "c7": 4.950638655319357 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337034, + "c3": 5.940822931114198, + "c4": 4.752658344891361, + "c5": 3.5644937586685246, + "c6": 2.376329172445673, + "c7": 1.1881645862228365 }, "rgb": [58, 15, 49] }, @@ -58947,23 +58947,23 @@ "year": 1716, "resistanceReported": false, "duration": 45187200, - "curveSeeds": { - "c1": -23.654246937785352, - "c2": -39.98234292241754, - "c3": 8.787609883193333, - "c4": -37.617959647125815, - "c5": 19.421301653067694, - "c6": -36.16529101035849, - "c7": -20.126049281692595 + "points": { + "c1": 47.6306853392282, + "c2": 42.67810639440223, + "c3": -48.63715296544203, + "c4": -40.75351910114343, + "c5": -13.327404112602608, + "c6": 42.13135006415799, + "c7": -36.34475700208735 }, - "vertexSeeds": { - "c1": 2.7566943587400132, - "c2": 2.7857969921056775, - "c3": 2.724153553962976, - "c4": 2.790574967553707, - "c5": 2.7666445234172987, - "c6": 2.7235163628780805, - "c7": 2.7443366550864767 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832163, + "c3": 3.351826167360153, + "c4": 2.681460933888109, + "c5": 2.011095700416098, + "c6": 1.3407304669440545, + "c7": 0.6703652334720439 }, "rgb": [58, 15, 49] }, @@ -58974,23 +58974,23 @@ "year": 1716, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": -4.887652943799672, - "c2": 5.35375035583796, - "c3": 21.97416534418487, - "c4": 5.612412580454283, - "c5": 25.594229155261075, - "c6": -43.314779756961826, - "c7": 2.5261636458829173 + "points": { + "c1": 9.543806309099367, + "c2": -37.690860712683005, + "c3": 47.08272623242418, + "c4": -13.539477805087529, + "c5": -27.70836657203687, + "c6": -31.364283442511567, + "c7": -44.328631709593346 }, - "vertexSeeds": { - "c1": 3.75, - "c2": 3.75, - "c3": 3.75, - "c4": 3.75, - "c5": 3.75, - "c6": 3.75, - "c7": 3.75 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -59001,23 +59001,23 @@ "year": 1717, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": -51.81346296827445, - "c2": 35.60702951772987, - "c3": -52.66065110418277, - "c4": -8.01629567247899, - "c5": 14.667440711910956, - "c6": -5.307270022563685, - "c7": -55.207665589259484 + "points": { + "c1": 0.9480963364979687, + "c2": 3.358072687865146, + "c3": -0.3256166527228572, + "c4": 41.77856153825549, + "c5": -2.3046044810370034, + "c6": 9.835082195376941, + "c7": 41.08340018899244 }, - "vertexSeeds": { - "c1": 6.114838576272433, - "c2": 6.239047572900037, - "c3": 6.530615503730505, - "c4": 6.298567662317626, - "c5": 6.843996432903695, - "c6": 6.367879796115156, - "c7": 6.851782122954333 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.3564493758668497, + "c7": 1.6782246879334186 }, "rgb": [238, 201, 159] }, @@ -59028,23 +59028,23 @@ "year": 1715, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 15.574681770726954, - "c2": -17.24084326258686, - "c3": -21.52336002612408, - "c4": -17.20406666985717, - "c5": -6.629914375197327, - "c6": 23.13869830644986, - "c7": 13.94022423683652 + "points": { + "c1": 30.85114924483851, + "c2": -27.65280891268108, + "c3": 28.4475926619022, + "c4": 32.8556132702991, + "c5": 29.902199144881706, + "c6": -21.314068038569506, + "c7": 25.825432374434534 }, - "vertexSeeds": { - "c1": 5.135479206371606, - "c2": 5.351376642807883, - "c3": 5.636467826807775, - "c4": 5.472714919769424, - "c5": 5.715937110614985, - "c6": 5.636905858791074, - "c7": 4.987494672256578 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055478, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.773925104022191, + "c7": 1.3869625520110955 }, "rgb": [58, 15, 49] }, @@ -59055,23 +59055,23 @@ "year": 1716, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": -31.175207626535304, - "c2": 56.462397098307385, - "c3": 46.5899800430283, - "c4": -29.381261131988524, - "c5": -37.07967064774339, - "c6": 18.410348883803543, - "c7": 13.457687753138465 + "points": { + "c1": -48.121677933921546, + "c2": 18.90684982288702, + "c3": 11.894104309543842, + "c4": -45.436444779557156, + "c5": 2.246057779670494, + "c6": -10.657638609211396, + "c7": 9.191690871544857 }, - "vertexSeeds": { - "c1": 8.430263769790365, - "c2": 8.920754161540208, - "c3": 8.253748386103103, - "c4": 9.000259005224938, - "c5": 8.830913483266729, - "c6": 9.209031195734992, - "c7": 8.661357117139467 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588066, + "c3": 11.257512713823395, + "c4": 9.006010171058712, + "c5": 6.754507628294038, + "c6": 4.503005085529356, + "c7": 2.2515025427646833 }, "rgb": [77, 76, 132] }, @@ -59082,23 +59082,23 @@ "year": 1715, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 33.73403808477417, - "c2": 27.00442867663932, - "c3": -18.325975082463074, - "c4": 13.03300369263367, - "c5": -2.802158288468334, - "c6": 17.229204589832115, - "c7": -0.6719106628163729 + "points": { + "c1": -24.692832699861697, + "c2": 23.062757413050768, + "c3": -20.44326892888242, + "c4": 37.43269485828078, + "c5": 5.976337979328093, + "c6": 27.975901711826893, + "c7": 22.431304508823445 }, - "vertexSeeds": { - "c1": 0.11469901089188257, - "c2": 0.10860451115942105, - "c3": 0.11424573414206378, - "c4": 0.12471581473462563, - "c5": 0.13076785822357573, - "c6": 0.09770724788401869, - "c7": 0.1037753058786979 + "offsets": { + "c1": 0.2588996763754045, + "c2": 0.2219140083217753, + "c3": 0.1849283402681461, + "c4": 0.1479426722145169, + "c5": 0.11095700416088772, + "c6": 0.0739713361072584, + "c7": 0.0369856680536292 }, "rgb": [238, 201, 159] }, @@ -59109,23 +59109,23 @@ "year": 1715, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -32.19974820495183, - "c2": 27.194817457887126, - "c3": 1.9441849891671765, - "c4": 24.109906118561, - "c5": 10.42264985078755, - "c6": 5.359759892960376, - "c7": 35.50274630042601 + "points": { + "c1": -25.015041823353904, + "c2": 37.590887460364314, + "c3": 38.29326457910243, + "c4": 25.176294559663702, + "c5": -32.538404487714914, + "c6": -18.42909246300378, + "c7": 11.870241139387034 }, - "vertexSeeds": { - "c1": 8.181073532868705, - "c2": 8.758402039582968, - "c3": 8.368405207368417, - "c4": 8.703099186883547, - "c5": 8.557968045969172, - "c6": 8.3672058149107, - "c7": 8.519310678465423 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904301, + "c3": 10.864539990753588, + "c4": 8.691631992602858, + "c5": 6.5187239944521425, + "c6": 4.345815996301429, + "c7": 2.1729079981507144 }, "rgb": [77, 76, 132] }, @@ -59136,23 +59136,23 @@ "year": 1715, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 18.032604622022433, - "c2": 16.678747079163223, - "c3": -19.279353811252555, - "c4": -8.730762097423188, - "c5": -11.988724187739141, - "c6": 17.928535510375873, - "c7": 1.2904476088065877 + "points": { + "c1": -12.22822728636395, + "c2": 12.68125831066726, + "c3": 12.043039480336496, + "c4": -8.205648855739533, + "c5": 32.37120313259783, + "c6": -14.749432389005154, + "c7": -6.912805215574775 }, - "vertexSeeds": { - "c1": 1.2003307028388628, - "c2": 1.0524968538262596, - "c3": 1.0837488323171693, - "c4": 1.14845801782669, - "c5": 1.0867829131187199, - "c6": 1.1599666017474404, - "c7": 1.1034694461841323 + "offsets": { + "c1": 2.0388349514563107, + "c2": 1.747572815533981, + "c3": 1.4563106796116498, + "c4": 1.16504854368932, + "c5": 0.8737864077669905, + "c6": 0.5825242718446608, + "c7": 0.29126213592232963 }, "rgb": [58, 15, 49] }, @@ -59163,23 +59163,23 @@ "year": 1715, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -13.624884700699745, - "c2": 24.43447862692242, - "c3": 17.78576051742722, - "c4": -4.177133384106028, - "c5": -3.6344927384428054, - "c6": -9.846282706040192, - "c7": -8.215014501072567 + "points": { + "c1": 24.19979411125967, + "c2": 27.673649059729662, + "c3": 6.292748911959698, + "c4": -8.24002132410374, + "c5": -32.8364155684601, + "c6": -3.2386245232535273, + "c7": -4.389987330400864 }, - "vertexSeeds": { - "c1": 6.467891519221697, - "c2": 7.0095572463774385, - "c3": 8.03477074657653, - "c4": 6.564831769835808, - "c5": 6.039461639173643, - "c6": 6.900722783927746, - "c7": 6.743753109049788 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295423, + "c3": 9.939898289412852, + "c4": 7.9519186315302814, + "c5": 5.9639389736477115, + "c6": 3.9759593157651407, + "c7": 1.9879796578825704 }, "rgb": [77, 76, 132] }, @@ -59190,23 +59190,23 @@ "year": 1715, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 0.44701177664427405, - "c2": -25.08789698814364, - "c3": 2.6697660714237585, - "c4": 31.540576091480403, - "c5": -2.8751962108625584, - "c6": 26.78889435217618, - "c7": -3.2903297854238858 + "points": { + "c1": 30.810094018633905, + "c2": 24.217133008892894, + "c3": 19.63363841117725, + "c4": 27.03196508143597, + "c5": -13.084774583038623, + "c6": 18.336286561605064, + "c7": -26.122924836219177 }, - "vertexSeeds": { - "c1": 5.09688672247367, - "c2": 6.2919069044405855, - "c3": 5.28727598043441, - "c4": 6.30561932024427, - "c5": 6.303258456155733, - "c6": 5.945541331444218, - "c7": 6.295026598264398 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152567, + "c3": 7.5589459084604735, + "c4": 6.047156726768372, + "c5": 4.535367545076279, + "c6": 3.023578363384186, + "c7": 1.511789181692093 }, "rgb": [238, 201, 159] }, @@ -59217,23 +59217,23 @@ "year": 1715, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -6.218680581707606, - "c2": 3.9592099252541573, - "c3": -0.32584223761205067, - "c4": -2.77610317627763, - "c5": 0.5141581744272088, - "c6": -8.547434072511603, - "c7": -16.649418411812157 + "points": { + "c1": 19.59499836107323, + "c2": -11.131776456389584, + "c3": 16.126461509525093, + "c4": -30.658206993523873, + "c5": -18.931203580818586, + "c6": 31.976482316228406, + "c7": -13.275977510622926 }, - "vertexSeeds": { - "c1": 6.643193344007157, - "c2": 7.246224263152243, - "c3": 5.923830349215842, - "c4": 7.008394861403584, - "c5": 6.680783999407449, - "c6": 7.076710708355959, - "c7": 5.916036375341916 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646327, + "c3": 8.992140545538605, + "c4": 7.1937124364308795, + "c5": 5.39528432732316, + "c6": 3.5968562182154398, + "c7": 1.7984281091077199 }, "rgb": [58, 15, 49] }, @@ -59244,23 +59244,23 @@ "year": 1716, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -7.360894608301564, - "c2": 25.329943752117735, - "c3": 37.832280065023475, - "c4": -6.946983599212658, - "c5": -11.752991845370765, - "c6": -11.641232250903172, - "c7": -2.972764592432398 + "points": { + "c1": -15.94123392784288, + "c2": -15.946701736794566, + "c3": 42.228760091366574, + "c4": -1.7543669096369925, + "c5": 9.707991340569862, + "c6": -12.266060640785504, + "c7": 37.495456860290396 }, - "vertexSeeds": { - "c1": 6.147346940993955, - "c2": 5.815096052111242, - "c3": 6.391167135487946, - "c4": 6.095484398047607, - "c5": 5.926404779440472, - "c6": 6.320978121169484, - "c7": 6.302420045197363 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594553, + "c4": 6.1211280628756395, + "c5": 4.590846047156725, + "c6": 3.0605640314378095, + "c7": 1.5302820157189145 }, "rgb": [238, 201, 159] }, @@ -59271,23 +59271,23 @@ "year": 1715, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 3.0296080089336215, - "c2": 1.2553257529068915, - "c3": 2.8914252772620515, - "c4": 19.20618421348636, - "c5": -0.5259854146974448, - "c6": -3.6018638047500957, - "c7": -37.12597370287025 + "points": { + "c1": 34.75278971265473, + "c2": 17.601178844436582, + "c3": -22.694043813110337, + "c4": -20.95049345885417, + "c5": -37.25731655706117, + "c6": -13.06803459813963, + "c7": -35.65278298667248 }, - "vertexSeeds": { - "c1": 3.2890928628095386, - "c2": 2.5585404422353215, - "c3": 3.080416761068589, - "c4": 3.4555431547119455, - "c5": 4.653505120952985, - "c6": 4.451492984111536, - "c7": 2.8127585871658516 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.1012482662968095, + "c3": 5.917706888580675, + "c4": 4.734165510864538, + "c5": 3.550624133148406, + "c6": 2.367082755432269, + "c7": 1.1835413777161345 }, "rgb": [86, 146, 138] }, @@ -59298,23 +59298,23 @@ "year": 1716, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 16.380883802038348, - "c2": 7.26314309571756, - "c3": -19.14428597632583, - "c4": 0.028505838885109824, - "c5": -12.486129752637126, - "c6": -31.650922647791084, - "c7": -43.460679636226914 + "points": { + "c1": 7.2827185710680595, + "c2": -24.001637491481773, + "c3": 28.002615448388795, + "c4": 39.803867639506095, + "c5": -34.35482995982682, + "c6": 0.739095419498426, + "c7": -20.21840273740245 }, - "vertexSeeds": { - "c1": 5.061608871176465, - "c2": 4.850793326795545, - "c3": 5.128947903705295, - "c4": 4.721460777116949, - "c5": 4.75299533934962, - "c6": 4.914328872046544, - "c7": 4.854458540710499 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.48959778085992, + "c3": 6.2413314840499385, + "c4": 4.993065187239938, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099911 }, "rgb": [86, 146, 138] }, @@ -59325,23 +59325,23 @@ "year": 1715, "resistanceReported": true, "duration": 13305600, - "curveSeeds": { - "c1": -20.917789203976294, - "c2": -24.46336337128157, - "c3": 11.099776678459257, - "c4": -8.626443603142395, - "c5": 24.23945491705131, - "c6": -13.443461387220315, - "c7": 16.523262442759886 + "points": { + "c1": 10.24922484030678, + "c2": 15.357999275908568, + "c3": -25.43606397661823, + "c4": -12.88177463642717, + "c5": 6.303365562908056, + "c6": -15.131221588373421, + "c7": -23.25378539060309 }, - "vertexSeeds": { - "c1": 9.882298695809684, - "c2": 9.903276495122245, - "c3": 9.909247863037528, - "c4": 10.802715974343727, - "c5": 9.798189765310559, - "c6": 10.067150554662106, - "c7": 9.904673132883843 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524276, + "c3": 12.944983818770233, + "c4": 10.35598705501619, + "c5": 7.766990291262146, + "c6": 5.177993527508103, + "c7": 2.5889967637540603 }, "rgb": [86, 146, 138] }, @@ -59352,23 +59352,23 @@ "year": 1715, "resistanceReported": true, "duration": 23414400, - "curveSeeds": { - "c1": -14.270803183095161, - "c2": 25.680264847352078, - "c3": -17.188980026940932, - "c4": -5.251455971095588, - "c5": 10.576104214951528, - "c6": 20.460021472340628, - "c7": -9.675776797644431 + "points": { + "c1": 27.918662628606526, + "c2": 9.302110396404167, + "c3": -26.92152489035299, + "c4": -23.234982285416834, + "c5": -13.060031413343804, + "c6": 25.06336170180292, + "c7": -13.264106040807274 }, - "vertexSeeds": { - "c1": 9.794290550730917, - "c2": 7.219991595560977, - "c3": 8.989291797498405, - "c4": 9.379205875827363, - "c5": 9.257392694138776, - "c6": 7.333140230408412, - "c7": 7.590269504235332 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392508, + "c3": 11.719833564493758, + "c4": 9.375866851595005, + "c5": 7.0319001386962565, + "c6": 4.687933425797502, + "c7": 2.3439667128987485 }, "rgb": [222, 0, 59] }, @@ -59379,23 +59379,23 @@ "year": 1716, "resistanceReported": true, "duration": 28252800, - "curveSeeds": { - "c1": -40.80443617724936, - "c2": 34.40847249616031, - "c3": 32.55502345609107, - "c4": 39.993456667017135, - "c5": 36.30251231692704, - "c6": 10.866858140216799, - "c7": -29.42264980161252 + "points": { + "c1": -0.7808171418262191, + "c2": -7.931823145797857, + "c3": -40.40030654781337, + "c4": 36.31873876409049, + "c5": 29.80356982600565, + "c6": -16.751401263908956, + "c7": 1.4453609547600692 }, - "vertexSeeds": { - "c1": 3.3497227221019545, - "c2": 2.836868861430147, - "c3": 3.530501941599838, - "c4": 3.2702677053031493, - "c5": 2.4510840512003047, - "c6": 3.684849862297092, - "c7": 3.492899535382657 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251042, + "c3": 5.316689782709202, + "c4": 4.253351826167362, + "c5": 3.1900138696255205, + "c6": 2.1266759130836808, + "c7": 1.0633379565418408 }, "rgb": [238, 201, 159] }, @@ -59406,23 +59406,23 @@ "year": 1716, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -9.368698478822083, - "c2": -40.08563102816843, - "c3": 8.120567846074053, - "c4": -22.41926330243983, - "c5": 9.078757166107764, - "c6": -24.826075314115457, - "c7": 32.77305099232244 + "points": { + "c1": -7.025352837405329, + "c2": -26.295553702811315, + "c3": 35.41809713323775, + "c4": 8.076484754864573, + "c5": 9.947258777136732, + "c6": 13.138818976455717, + "c7": -4.430375185581788 }, - "vertexSeeds": { - "c1": 2.1717021602003577, - "c2": 2.370951288201082, - "c3": 2.580727956197434, - "c4": 2.547279848648142, - "c5": 2.4261654157155226, - "c6": 2.5020049354968323, - "c7": 2.8476306287767805 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113732, + "c3": 3.513638465094777, + "c4": 2.8109107720758195, + "c5": 2.108183079056865, + "c6": 1.4054553860379106, + "c7": 0.702727693018956 }, "rgb": [238, 201, 159] }, @@ -59433,23 +59433,23 @@ "year": 1715, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -20.215042690115, - "c2": -5.516506726298434, - "c3": -16.9538504910711, - "c4": -5.685540373432481, - "c5": -18.75267171018801, - "c6": 17.230658691117135, - "c7": -16.392389791538854 + "points": { + "c1": 5.002330653189389, + "c2": 24.351004480200764, + "c3": 12.673018070807068, + "c4": -13.589689454198389, + "c5": -13.920698234238088, + "c6": -13.016710429424634, + "c7": 32.218525352776894 }, - "vertexSeeds": { - "c1": 7.353393397528434, - "c2": 7.55334269860697, - "c3": 8.008958052644214, - "c4": 7.965599271003961, - "c5": 7.185008368245808, - "c6": 7.745008789353305, - "c7": 7.437701882287831 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.56726768377254, + "c3": 9.63938973647712, + "c4": 7.711511789181684, + "c5": 5.783633841886263, + "c6": 3.855755894590842, + "c7": 1.927877947295421 }, "rgb": [86, 146, 138] }, @@ -59460,23 +59460,23 @@ "year": 1716, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -4.210071251877018, - "c2": 31.003692719204977, - "c3": 38.36853572456182, - "c4": -3.9119387671229617, - "c5": 0.3656571606897785, - "c6": -23.384411185430267, - "c7": -41.17250084105246 + "points": { + "c1": -27.285751820219012, + "c2": -13.6306559982639, + "c3": 2.2198728445175036, + "c4": 40.49318012670284, + "c5": 29.25905492643942, + "c6": -28.666179711396534, + "c7": -42.42031152716237 }, - "vertexSeeds": { - "c1": 1.7479199044242195, - "c2": 2.643767072039748, - "c3": 1.5737581775507885, - "c4": 3.31212442622817, - "c5": 2.50908529725495, - "c6": 1.819478104038555, - "c7": 2.582642396828807 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044383, + "c3": 4.623208506703652, + "c4": 3.698566805362922, + "c5": 2.7739251040221915, + "c6": 1.849283402681461, + "c7": 0.9246417013407311 }, "rgb": [86, 146, 138] }, @@ -59487,23 +59487,23 @@ "year": 1715, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 28.42708843674422, - "c2": 9.89655788214089, - "c3": 11.220904505348713, - "c4": 21.15243229711391, - "c5": 0.7267384490925863, - "c6": -1.2250657635203233, - "c7": -0.4384051578623236 + "points": { + "c1": 16.883280850968596, + "c2": 31.766566918768568, + "c3": -17.90033719049685, + "c4": 14.458165601159905, + "c5": -9.193148489032342, + "c6": -27.88994979550594, + "c7": 5.575966114270443 }, - "vertexSeeds": { - "c1": 8.82151966176039, - "c2": 9.228400374793782, - "c3": 9.49558837575036, - "c4": 9.32865668883135, - "c5": 8.601063754490063, - "c6": 9.020915563627979, - "c7": 8.593622625904743 + "offsets": { + "c1": 16.310679611650485, + "c2": 13.980582524271849, + "c3": 11.650485436893199, + "c4": 9.32038834951456, + "c5": 6.9902912621359246, + "c6": 4.660194174757274, + "c7": 2.330097087378637 }, "rgb": [222, 0, 59] }, @@ -59514,23 +59514,23 @@ "year": 1715, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 28.53300973344971, - "c2": 8.336654160943418, - "c3": -21.88044131007112, - "c4": 20.385355705655847, - "c5": 12.2465439504766, - "c6": -25.80342667098904, - "c7": 14.945015860778703 + "points": { + "c1": -13.378986761882345, + "c2": -3.2955583431937754, + "c3": 21.752421585169856, + "c4": -2.3812432972137216, + "c5": 22.928620142184627, + "c6": 11.110358410241993, + "c7": -22.044779951102466 }, - "vertexSeeds": { - "c1": 2.667602191341882, - "c2": 2.5840503452201693, - "c3": 2.5394362464287776, - "c4": 2.682460382526906, - "c5": 2.5178997224289486, - "c6": 2.5768931413532767, - "c7": 2.6097834424511688 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631067, + "c3": 3.236245954692554, + "c4": 2.588996763754041, + "c5": 1.9417475728155285, + "c6": 1.2944983818770257, + "c7": 0.6472491909385129 }, "rgb": [58, 15, 49] }, @@ -59541,23 +59541,23 @@ "year": 1716, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -34.65318054344634, - "c2": -25.09775555984504, - "c3": -8.84738230587061, - "c4": 46.72669276796203, - "c5": -32.62718186639321, - "c6": -9.788799961020473, - "c7": 9.575927267077851 + "points": { + "c1": 0.1486493981113597, + "c2": 39.62375406306088, + "c3": 39.12675146872464, + "c4": 23.872836954687195, + "c5": 6.895655489792148, + "c6": 13.111518588652089, + "c7": 33.5593828886953 }, - "vertexSeeds": { - "c1": 8.415972622426677, - "c2": 8.79675723987795, - "c3": 8.800053483734843, - "c4": 8.925212338769054, - "c5": 8.745360675849723, - "c6": 8.788198887556552, - "c7": 8.539199623530878 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582524, + "c3": 10.679611650485437, + "c4": 8.54368932038835, + "c5": 6.407766990291262, + "c6": 4.271844660194175, + "c7": 2.1359223300970873 }, "rgb": [77, 76, 132] }, @@ -59568,23 +59568,23 @@ "year": 1716, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 21.742247958729884, - "c2": 36.48477835517359, - "c3": 31.86959098752061, - "c4": 2.314467682935444, - "c5": -30.07113660299974, - "c6": 32.949070743259014, - "c7": -12.899243533262982 + "points": { + "c1": 37.727719344079304, + "c2": 33.98999826232466, + "c3": 26.34616098729147, + "c4": -28.584120052218847, + "c5": -23.109303988730005, + "c6": 24.069770964815312, + "c7": -5.07333824908531 }, - "vertexSeeds": { - "c1": 10.077372528425286, - "c2": 10.300438798331282, - "c3": 10.21108096032795, - "c4": 10.053971758561236, - "c5": 10.017635100511843, - "c6": 9.981617952700645, - "c7": 10.065372237527466 + "offsets": { + "c1": 17.216828478964402, + "c2": 14.757281553398103, + "c3": 12.297734627831701, + "c4": 9.838187702265403, + "c5": 7.378640776699, + "c6": 4.919093851132701, + "c7": 2.4595469255664018 }, "rgb": [222, 0, 59] }, @@ -59595,23 +59595,23 @@ "year": 1715, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -19.86736450987109, - "c2": -13.653305802316291, - "c3": -4.4394914037018545, - "c4": -6.230793062757687, - "c5": 23.04655499337402, - "c6": -8.766230255185533, - "c7": -23.32966712546792 + "points": { + "c1": 4.9265483999166335, + "c2": -15.008729462834498, + "c3": 19.703956235305835, + "c4": 13.279223569822346, + "c5": 8.003721096610239, + "c6": -16.51422951752182, + "c7": 18.34270001135081 }, - "vertexSeeds": { - "c1": 6.013047453769406, - "c2": 7.104809416696169, - "c3": 6.4171210633190565, - "c4": 6.38303811901351, - "c5": 6.94187686356992, - "c6": 6.99929953035687, - "c7": 6.378885824045262 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [86, 146, 138] }, @@ -59622,23 +59622,23 @@ "year": 1716, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -39.76427164577268, - "c2": 25.729455186193455, - "c3": -39.890323849898195, - "c4": 5.311925519022303, - "c5": -35.19583931210972, - "c6": 33.824621733295466, - "c7": 27.17201221516256 + "points": { + "c1": 16.382395341656128, + "c2": 11.830741156524446, + "c3": -7.266900641240724, + "c4": -26.41851392464035, + "c5": 31.57103876312626, + "c6": -22.754204474491644, + "c7": -8.389080276748558 }, - "vertexSeeds": { - "c1": 4.2870024165695435, - "c2": 4.966817265804331, - "c3": 5.058632371595459, - "c4": 4.433329629815908, - "c5": 4.801573655122374, - "c6": 5.276668007981016, - "c7": 5.21094165589086 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980583, + "c3": 6.310679611650486, + "c4": 5.048543689320389, + "c5": 3.7864077669902914, + "c6": 2.5242718446601944, + "c7": 1.2621359223300972 }, "rgb": [86, 146, 138] }, @@ -59649,23 +59649,23 @@ "year": 1716, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -36.517837428778606, - "c2": 3.279784724405566, - "c3": -14.35777007347076, - "c4": -13.520937359252947, - "c5": 6.151816717310275, - "c6": -32.48846773491667, - "c7": 27.07682612045695 + "points": { + "c1": -40.33040745372178, + "c2": -28.779039837400965, + "c3": -11.856173449634582, + "c4": -14.562989354022033, + "c5": 29.992560117077012, + "c6": 5.7298612342887765, + "c7": 5.329188413519226 }, - "vertexSeeds": { - "c1": 2.1310229277705326, - "c2": 1.8396682549620949, - "c3": 2.0196241331767357, - "c4": 2.1804966728579016, - "c5": 2.1652248165362753, - "c6": 2.218570602834183, - "c7": 2.084631241462305 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.2177531206657424, + "c3": 2.681460933888117, + "c4": 2.145168747110494, + "c5": 1.6088765603328712, + "c6": 1.0725843735552458, + "c7": 0.5362921867776229 }, "rgb": [77, 76, 132] }, @@ -59676,23 +59676,23 @@ "year": 1716, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -18.750489274060662, - "c2": 3.7736847066547483, - "c3": 28.102957609193503, - "c4": -16.514163871624348, - "c5": -13.492672568755893, - "c6": -5.591551549483391, - "c7": 26.17532608374917 + "points": { + "c1": 14.818760828826854, + "c2": 1.8664695836329201, + "c3": -0.1988244844771785, + "c4": 13.923202360504973, + "c5": -27.345863941635287, + "c6": 6.978624404343314, + "c7": 21.91890152655126 }, - "vertexSeeds": { - "c1": 6.472834960274794, - "c2": 5.686124678556736, - "c3": 6.140100256230601, - "c4": 6.151671347867728, - "c5": 6.706333813303297, - "c6": 5.972459565927855, - "c7": 5.869525232930876 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680996, + "c3": 8.43735552473417, + "c4": 6.749884419787334, + "c5": 5.062413314840498, + "c6": 3.374942209893662, + "c7": 1.6874711049468356 }, "rgb": [58, 15, 49] }, @@ -59703,23 +59703,23 @@ "year": 1716, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 2.6717846503433904, - "c2": -30.457250022584308, - "c3": -26.10896410483494, - "c4": 25.3003070933891, - "c5": 12.464902377984302, - "c6": -23.896625291240085, - "c7": 2.1546553601723204 + "points": { + "c1": -1.4679686464324533, + "c2": 25.76198555061478, + "c3": -1.488208577989866, + "c4": -3.388351554585249, + "c5": -10.622176307922569, + "c6": 0.44921328746382017, + "c7": 13.75680105682411 }, - "vertexSeeds": { - "c1": 3.0039210431971277, - "c2": 2.866719003956089, - "c3": 2.278843518087177, - "c4": 2.297672381269232, - "c5": 2.2229492517232083, - "c6": 2.753561657411712, - "c7": 3.073911635055046 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596393, + "c3": 3.7910309754969957, + "c4": 3.0328247803975956, + "c5": 2.2746185852981955, + "c6": 1.5164123901987985, + "c7": 0.7582061950993985 }, "rgb": [86, 146, 138] }, @@ -59730,23 +59730,23 @@ "year": 1716, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 21.06347640797427, - "c2": -33.85832110284673, - "c3": 12.137854543536555, - "c4": 5.276161407073758, - "c5": -28.25317168650175, - "c6": 3.3421303136193288, - "c7": 32.17664279616837 + "points": { + "c1": 21.616959075871613, + "c2": 32.94965962995705, + "c3": 35.47254445651489, + "c4": 15.078614560089058, + "c5": 5.62652656936919, + "c6": 40.44330573144459, + "c7": 4.0331615759493715 }, - "vertexSeeds": { - "c1": 4.555902539019378, - "c2": 3.8790733831206623, - "c3": 3.18958332721688, - "c4": 3.519520338979857, - "c5": 5.5631737069940055, - "c6": 3.7469559828226746, - "c7": 3.3992575853561346 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704575, + "c3": 6.726768377253815, + "c4": 5.38141470180305, + "c5": 4.03606102635229, + "c6": 2.690707350901525, + "c7": 1.3453536754507625 }, "rgb": [222, 0, 59] }, @@ -59757,23 +59757,23 @@ "year": 1716, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -16.866544253000335, - "c2": -1.7510442175412066, - "c3": -0.378254762084957, - "c4": -15.693802310960198, - "c5": 13.081579879510883, - "c6": 27.386499267024426, - "c7": 23.645050908681306 + "points": { + "c1": -4.105355340761406, + "c2": 4.885233094925319, + "c3": -29.894081850076436, + "c4": -33.99174170597694, + "c5": -29.350888972684366, + "c6": -17.175111208219043, + "c7": -30.847727320188426 }, - "vertexSeeds": { - "c1": 5.903017092435079, - "c2": 5.111239804529206, - "c3": 6.1240755506388656, - "c4": 5.111125870934521, - "c5": 5.9900885011467135, - "c6": 5.474171245459748, - "c7": 5.050659658433439 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991681, + "c3": 7.466481738326396, + "c4": 5.973185390661121, + "c5": 4.479889042995836, + "c6": 2.9865926953305606, + "c7": 1.4932963476652756 }, "rgb": [86, 146, 138] }, @@ -59784,23 +59784,23 @@ "year": 1716, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 10.632447185852541, - "c2": -29.166573392639805, - "c3": -38.06526204973688, - "c4": -15.625873280545413, - "c5": -24.893889098375695, - "c6": 35.32823637447156, - "c7": -25.93462089441279 + "points": { + "c1": 25.798554301992127, + "c2": -36.01271569305351, + "c3": 1.940018369440196, + "c4": 30.593173586290476, + "c5": 39.09544508167757, + "c6": -11.995113556715616, + "c7": 22.13152876507715 }, - "vertexSeeds": { - "c1": 7.88860103626943, - "c2": 7.88860103626943, - "c3": 7.88860103626943, - "c4": 7.88860103626943, - "c5": 7.88860103626943, - "c6": 7.88860103626943, - "c7": 7.88860103626943 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -59811,23 +59811,23 @@ "year": 1716, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -3.0477068572124004, - "c2": 7.466237369066995, - "c3": 6.335414731726125, - "c4": -21.734695723233074, - "c5": -18.821384305640215, - "c6": 3.4545187990783432, - "c7": 26.893755312702027 + "points": { + "c1": -19.11731622875287, + "c2": -18.334607503427527, + "c3": 0.610642409956597, + "c4": -19.86074947036971, + "c5": -7.273206689568333, + "c6": 16.16211987017018, + "c7": 1.30606448227838 }, - "vertexSeeds": { - "c1": 7.216892239238104, - "c2": 7.654123864671364, - "c3": 6.995704398565484, - "c4": 7.21181244616574, - "c5": 7.029922748736739, - "c6": 7.679933923599651, - "c7": 7.398656400817197 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330092, + "c3": 9.38511326860842, + "c4": 7.508090614886734, + "c5": 5.631067961165046, + "c6": 3.75404530744336, + "c7": 1.8770226537216863 }, "rgb": [238, 201, 159] }, @@ -59838,23 +59838,23 @@ "year": 1716, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -2.0669091582086025, - "c2": -29.438723524845596, - "c3": -28.204374264515938, - "c4": -25.228945124327552, - "c5": -10.89204243846395, - "c6": -17.82933533460477, - "c7": -12.08575663759839 + "points": { + "c1": -6.068943201439669, + "c2": -30.92031305784619, + "c3": -0.6918157805000362, + "c4": -7.702238664653596, + "c5": -32.167991720351196, + "c6": -1.0688521940367934, + "c7": -18.420457592593465 }, - "vertexSeeds": { - "c1": 2.6767790875567004, - "c2": 2.7129770376071147, - "c3": 3.0828594785902736, - "c4": 2.96590731092836, - "c5": 2.9619855526229717, - "c6": 2.821797919081804, - "c7": 2.5972201135741106 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299603, + "c4": 2.995839112343967, + "c5": 2.2468793342579745, + "c6": 1.4979195561719814, + "c7": 0.748959778085993 }, "rgb": [222, 0, 59] }, @@ -59865,23 +59865,23 @@ "year": 1716, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -33.58483741591954, - "c2": 19.674419455142186, - "c3": -24.472909925838774, - "c4": 10.0846913774499, - "c5": -17.144162867070655, - "c6": 11.426517627391128, - "c7": -6.334780702879044 + "points": { + "c1": 41.80372935449967, + "c2": 35.48720430373954, + "c3": -17.816389966735713, + "c4": 22.830971529748247, + "c5": 14.139592819330119, + "c6": 24.85831805722136, + "c7": 24.297585290957876 }, - "vertexSeeds": { - "c1": 9.59322709551296, - "c2": 10.166953782725473, - "c3": 10.556711629284713, - "c4": 10.21263539547736, - "c5": 9.632793606831298, - "c6": 10.353023514652282, - "c7": 9.731901246271878 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.61719833564493, + "c3": 13.014331946370792, + "c4": 10.411465557096628, + "c5": 7.808599167822465, + "c6": 5.205732778548314, + "c7": 2.6028663892741633 }, "rgb": [86, 146, 138] }, @@ -59892,23 +59892,23 @@ "year": 1716, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -17.398278251808083, - "c2": -13.20429737289085, - "c3": -9.762760259350884, - "c4": -28.847011664541764, - "c5": -7.146318846951022, - "c6": -12.72450046635769, - "c7": 24.031420212359485 + "points": { + "c1": -4.813206909111159, + "c2": -26.028909179993864, + "c3": -16.34678687026573, + "c4": 31.93975963065472, + "c5": 25.85274234761014, + "c6": -32.05653140849111, + "c7": 30.696846248237534 }, - "vertexSeeds": { - "c1": 4.290919663617502, - "c2": 4.180439296244104, - "c3": 4.282697950064517, - "c4": 4.269327533225457, - "c5": 4.232439224554182, - "c6": 4.197535351254716, - "c7": 4.016021936934858 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [86, 146, 138] }, @@ -59919,23 +59919,23 @@ "year": 1716, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -3.129005769874233, - "c2": -18.32582714229316, - "c3": 14.560785961847472, - "c4": 18.736602500273307, - "c5": 10.37097158958828, - "c6": -17.700603914130475, - "c7": 15.076743834629617 + "points": { + "c1": 18.016664149817778, + "c2": 1.0951631771227142, + "c3": -26.14526617405241, + "c4": -11.049819297468169, + "c5": 21.375003526615117, + "c6": 30.012826252718263, + "c7": -20.818718945916828 }, - "vertexSeeds": { - "c1": 12.280211390991127, - "c2": 13.463630675843108, - "c3": 11.323605065803136, - "c4": 13.060996086315008, - "c5": 13.302019648610193, - "c6": 11.497689855345348, - "c7": 11.490778204149041 + "offsets": { + "c1": 22.491909385113267, + "c2": 19.278779472954234, + "c3": 16.06564956079519, + "c4": 12.852519648636157, + "c5": 9.63938973647711, + "c6": 6.426259824318079, + "c7": 3.213129912159048 }, "rgb": [77, 76, 132] }, @@ -59946,23 +59946,23 @@ "year": 1716, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -36.568852843681874, - "c2": 21.19001524130423, - "c3": 2.666488955959295, - "c4": 23.907813525673163, - "c5": 7.546054661381923, - "c6": 14.94364916591151, - "c7": -11.829497116791373 + "points": { + "c1": -25.441612831728328, + "c2": -22.650960118163315, + "c3": 28.48906321218128, + "c4": -4.503082359700912, + "c5": -0.23811086325835618, + "c6": -15.893411411755942, + "c7": -34.17519206814409 }, - "vertexSeeds": { - "c1": 4.1112006816360775, - "c2": 4.337655180958686, - "c3": 5.277023767658848, - "c4": 5.056603598979312, - "c5": 4.751305093679805, - "c6": 4.0531166107534, - "c7": 5.322838254085395 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061022, + "c3": 6.356911696717521, + "c4": 5.085529357374017, + "c5": 3.814147018030513, + "c6": 2.5427646786870084, + "c7": 1.2713823393435042 }, "rgb": [222, 0, 59] }, @@ -59973,23 +59973,23 @@ "year": 1716, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 15.6057840026035, - "c2": 0.8293455641904828, - "c3": -13.661435038002029, - "c4": -6.766013291269076, - "c5": 29.320851560677355, - "c6": 20.941289339770876, - "c7": 24.59689106181971 + "points": { + "c1": 34.33684047737867, + "c2": 3.5577921420701983, + "c3": -29.68779924885629, + "c4": -34.46233861085948, + "c5": 29.759848765946032, + "c6": 10.417248477942728, + "c7": 24.39625062611259 }, - "vertexSeeds": { - "c1": 2.202903203032714, - "c2": 1.9863828539731543, - "c3": 2.2150979054088538, - "c4": 2.0639607415963357, - "c5": 2.0434073302081153, - "c6": 2.0466953684987446, - "c7": 1.9955411572021222 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027739, + "c3": 2.889505316689783, + "c4": 2.3116042533518244, + "c5": 1.7337031900138684, + "c6": 1.1558021266759122, + "c7": 0.5779010633379561 }, "rgb": [86, 146, 138] }, @@ -60000,23 +60000,23 @@ "year": 1716, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 7.895128287661127, - "c2": 15.066638912920986, - "c3": 10.555010528071712, - "c4": -20.217250168504243, - "c5": -4.067178076557553, - "c6": -7.406797127884236, - "c7": -18.52892861170286 + "points": { + "c1": -19.827502946274986, + "c2": 11.776562149502205, + "c3": -11.730112734811929, + "c4": 21.826841369865242, + "c5": 3.645251903960176, + "c6": -23.80903718674582, + "c7": -20.294671563944867 }, - "vertexSeeds": { - "c1": 3.636429421950545, - "c2": 3.547464929790927, - "c3": 3.742350182484432, - "c4": 3.8433487973875238, - "c5": 3.8413123410697714, - "c6": 3.4245385079851594, - "c7": 3.44383245153334 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.54785020804438, + "c3": 4.623208506703655, + "c4": 3.6985668053629226, + "c5": 2.77392510402219, + "c6": 1.8492834026814577, + "c7": 0.9246417013407325 }, "rgb": [238, 201, 159] }, @@ -60027,23 +60027,23 @@ "year": 1716, "resistanceReported": true, "duration": 27388800, - "curveSeeds": { - "c1": 1.919126718709073, - "c2": 3.1319170351787236, - "c3": -22.739138024833654, - "c4": -38.188283632446364, - "c5": 36.00005707811305, - "c6": 28.307840114639227, - "c7": -19.91828741885125 + "points": { + "c1": 20.717883176330474, + "c2": 29.63525715798996, + "c3": -0.420468278490965, + "c4": -12.621651491505915, + "c5": 11.673153289799167, + "c6": -11.519887498505494, + "c7": -3.8827716324736485 }, - "vertexSeeds": { - "c1": 0.1598906639614676, - "c2": 0.15697253128531244, - "c3": 0.17149732583170935, - "c4": 0.16017201609174142, - "c5": 0.1573874711567104, - "c6": 0.16879840032614102, - "c7": 0.16761073659885597 + "offsets": { + "c1": 0.3236245954692557, + "c2": 0.27739251040221935, + "c3": 0.2311604253351824, + "c4": 0.18492834026814603, + "c5": 0.13869625520110967, + "c6": 0.0924641701340733, + "c7": 0.04623208506703636 }, "rgb": [222, 0, 59] }, @@ -60054,23 +60054,23 @@ "year": 1716, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": -38.803187415424766, - "c2": 49.110664422774974, - "c3": 17.52775290526708, - "c4": 23.92076906670593, - "c5": 41.279805067800254, - "c6": 47.316308708154494, - "c7": 21.529556539780714 + "points": { + "c1": -26.988660688530352, + "c2": -9.622797004592144, + "c3": 5.530209599868314, + "c4": 9.905955154914594, + "c5": 14.569138856205, + "c6": 39.56518926748164, + "c7": -44.090102858520524 }, - "vertexSeeds": { - "c1": 5.580922794648123, - "c2": 6.011514795192673, - "c3": 4.290360289456684, - "c4": 6.467139179992744, - "c5": 6.857259010912799, - "c6": 6.933564780312361, - "c7": 4.052797130243498 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841885, + "c3": 8.529819694868237, + "c4": 6.82385575589459, + "c5": 5.117891816920943, + "c6": 3.411927877947295, + "c7": 1.7059639389736474 }, "rgb": [222, 0, 59] }, @@ -60081,23 +60081,23 @@ "year": 1716, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 8.696534143967327, - "c2": 23.582619441140686, - "c3": 8.074710930818789, - "c4": 24.105697463390285, - "c5": -4.717358363444454, - "c6": -7.59608708886714, - "c7": 13.392165962389157 + "points": { + "c1": -13.78076885359172, + "c2": -27.224223822540225, + "c3": 22.392795383432023, + "c4": -29.733455444494624, + "c5": -9.910132659168102, + "c6": 10.107895888380263, + "c7": -2.795288751636498 }, - "vertexSeeds": { - "c1": 3.8565936896066666, - "c2": 3.664563706385198, - "c3": 3.8143372239213713, - "c4": 3.754050075197389, - "c5": 4.035137094136116, - "c6": 3.9441076145960796, - "c7": 3.563549283703832 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486824, + "c3": 4.877484974572355, + "c4": 3.901987979657881, + "c5": 2.926490984743412, + "c6": 1.9509939898289432, + "c7": 0.9754969949144738 }, "rgb": [238, 201, 159] }, @@ -60108,23 +60108,23 @@ "year": 1716, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -32.770391779734425, - "c2": 11.70912542947272, - "c3": -12.671362132036052, - "c4": -27.171773002210852, - "c5": 27.92068964889497, - "c6": 19.220049646951445, - "c7": -16.541149403655535 + "points": { + "c1": 25.754928542652564, + "c2": 36.35007369080848, + "c3": -3.8229310947231028, + "c4": 14.479407721168307, + "c5": 7.636041537633879, + "c6": -1.4994682510352462, + "c7": -36.46758259476501 }, - "vertexSeeds": { - "c1": 2.0306445718908424, - "c2": 1.7995819655521135, - "c3": 2.018371082582254, - "c4": 2.055132120795126, - "c5": 1.984650731402604, - "c6": 2.06507789837788, - "c7": 1.8610759599845805 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.542764678687008, + "c4": 2.0342117429496063, + "c5": 1.5256588072122037, + "c6": 1.0171058714748016, + "c7": 0.5085529357373996 }, "rgb": [86, 146, 138] }, @@ -60135,23 +60135,23 @@ "year": 1716, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -3.1351509202144854, - "c2": -19.662191598388535, - "c3": -3.326256967450572, - "c4": 6.454634891719657, - "c5": 4.71591324973279, - "c6": 2.878919386619316, - "c7": -15.33650344706017 + "points": { + "c1": -5.5379442487867045, + "c2": 6.8428393352031875, + "c3": 15.530433632079493, + "c4": 2.17286824361468, + "c5": 9.804037062175347, + "c6": 3.746361840084173, + "c7": -8.041409803078512 }, - "vertexSeeds": { - "c1": 4.342313829048266, - "c2": 4.450165706453747, - "c3": 3.7939575386846527, - "c4": 4.152372473052613, - "c5": 4.3220927626196755, - "c6": 3.7953763343564866, - "c7": 4.500130609176038 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -60162,23 +60162,23 @@ "year": 1716, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -8.998659612585257, - "c2": -13.298439804768039, - "c3": -24.350128375396388, - "c4": 20.61783909565395, - "c5": 12.20080562647503, - "c6": -3.2033304542331003, - "c7": 10.31015015528861 + "points": { + "c1": 7.3729332212964565, + "c2": 10.840458246444214, + "c3": -12.173433830673453, + "c4": -26.346870154353795, + "c5": -5.111908655501352, + "c6": 5.534061848388596, + "c7": 14.234522631647906 }, - "vertexSeeds": { - "c1": 6.487484825867911, - "c2": 6.310001819857093, - "c3": 6.632163904784159, - "c4": 6.243038276413379, - "c5": 6.976418958273282, - "c6": 6.953547727413248, - "c7": 6.629995809088873 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [238, 201, 159] }, @@ -60189,23 +60189,23 @@ "year": 1716, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -23.410293595897777, - "c2": -16.961853613246518, - "c3": 35.40165827227834, - "c4": -20.552436235913063, - "c5": -14.973557453617762, - "c6": 11.619098224769218, - "c7": -3.4254572026631678 + "points": { + "c1": -15.832323644114961, + "c2": -0.6827274742462706, + "c3": 11.94641604645956, + "c4": -36.1933774319257, + "c5": 2.5090052832306924, + "c6": -21.424312480294365, + "c7": -34.29648761149745 }, - "vertexSeeds": { - "c1": 3.170226603381724, - "c2": 3.1530938254740484, - "c3": 3.4576239973905873, - "c4": 3.1561352265238836, - "c5": 3.3296547909163996, - "c6": 3.2088070355067746, - "c7": 3.5550646539515847 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [238, 201, 159] }, @@ -60216,23 +60216,23 @@ "year": 1716, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": -0.5928689174704544, - "c2": 4.231350802797731, - "c3": -13.170584477998819, - "c4": 2.7519879147188107, - "c5": -10.01195884656445, - "c6": 5.284317254074551, - "c7": -14.807872098049021 + "points": { + "c1": -5.743698736156231, + "c2": 5.9207905185746625, + "c3": -11.558150075779276, + "c4": -13.033181862108169, + "c5": 5.431600124384232, + "c6": -11.929807463046876, + "c7": 11.933275114400345 }, - "vertexSeeds": { - "c1": 4.8623683253787116, - "c2": 5.0837888862130045, - "c3": 4.588220235975085, - "c4": 4.95266848003206, - "c5": 4.688890845787194, - "c6": 4.9312533406730585, - "c7": 4.977882395300701 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -60243,23 +60243,23 @@ "year": 1716, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -8.058923041832532, - "c2": 14.403688224327368, - "c3": 15.212637609889185, - "c4": 11.835593529337604, - "c5": 13.008677021875648, - "c6": -8.874732102169245, - "c7": -1.8111022984398275 + "points": { + "c1": -1.8019333281999614, + "c2": -5.372762495957669, + "c3": -16.033925467745842, + "c4": 5.2156801782479825, + "c5": 14.579662252642308, + "c6": -16.267644791480784, + "c7": -0.793083772047094 }, - "vertexSeeds": { - "c1": 4.525569223065149, - "c2": 4.357592714601412, - "c3": 3.875543348626043, - "c4": 3.759788430403057, - "c5": 3.7978657074915443, - "c6": 4.521347169826653, - "c7": 4.058884623020094 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -60270,23 +60270,23 @@ "year": 1716, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -3.691783961444635, - "c2": -22.931319140265536, - "c3": -12.49424084277798, - "c4": 14.347348615777221, - "c5": -16.814815360910394, - "c6": 35.08436313332472, - "c7": -6.824250299519065 + "points": { + "c1": -6.454711002824638, + "c2": -17.299329466072564, + "c3": -37.07271135225902, + "c4": -21.02414502539383, + "c5": 25.904733455553263, + "c6": -18.99265929322055, + "c7": -6.693519169413705 }, - "vertexSeeds": { - "c1": 3.6549843418515344, - "c2": 3.823065291809317, - "c3": 3.779645498246263, - "c4": 3.660129482433476, - "c5": 3.432923467552644, - "c6": 3.7006677132248806, - "c7": 3.8043770234033154 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [58, 15, 49] }, @@ -60297,23 +60297,23 @@ "year": 1716, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": 15.003127765210813, - "c2": -20.56018347468113, - "c3": -14.223903623976717, - "c4": 0.9356491291832256, - "c5": 36.54261048903172, - "c6": 1.2178902763401993, - "c7": -29.762221333411826 + "points": { + "c1": 25.620669904248537, + "c2": 17.264383525502446, + "c3": -37.17577420822724, + "c4": -29.394227653043984, + "c5": -5.418271843902161, + "c6": -22.23067840449026, + "c7": 48.07673230508089 }, - "vertexSeeds": { - "c1": 5.191976568431683, - "c2": 5.026397124300561, - "c3": 4.707037313427103, - "c4": 4.882249071407919, - "c5": 5.1482496272030245, - "c6": 4.708937581959479, - "c7": 5.208974302278964 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -60324,23 +60324,23 @@ "year": 1716, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -3.992745468354716, - "c2": -4.381122441956766, - "c3": -1.5942934160129703, - "c4": 12.867771421524274, - "c5": 15.974534518259823, - "c6": 23.489502515640126, - "c7": -22.047717915685368 + "points": { + "c1": -6.754258804593093, + "c2": 11.546497392868424, + "c3": 2.7653192112666822, + "c4": -15.421696260659152, + "c5": -25.070564557091352, + "c6": 6.8919464776604045, + "c7": -23.6343893572392 }, - "vertexSeeds": { - "c1": 5.103947150958244, - "c2": 5.071045579410007, - "c3": 5.057441263055222, - "c4": 5.132404093216735, - "c5": 5.2046744336496245, - "c6": 4.984154161819138, - "c7": 5.101253555646681 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859933, + "c3": 6.241331484049924, + "c4": 4.993065187239956, + "c5": 3.7447988904299474, + "c6": 2.496532593619978, + "c7": 1.2482662968100078 }, "rgb": [238, 201, 159] }, @@ -60351,23 +60351,23 @@ "year": 1716, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -5.2630092240507835, - "c2": 23.2040501468084, - "c3": -15.520271376082494, - "c4": 10.060820405288005, - "c5": -11.489926964142981, - "c6": -45.01839338483437, - "c7": 39.88181679513559 + "points": { + "c1": -9.984988038670807, + "c2": 8.364984233967931, + "c3": 41.05195044097242, + "c4": -29.656850003955107, + "c5": -38.454470747604795, + "c6": -27.100275612042676, + "c7": -42.01700002910057 }, - "vertexSeeds": { - "c1": 3.093163115817469, - "c2": 3.5591952801238937, - "c3": 3.39449324567898, - "c4": 3.3345422608948985, - "c5": 3.313567316003844, - "c6": 3.4595383467398646, - "c7": 3.3093233889742595 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.21497919556172, + "c3": 4.345815996301434, + "c4": 3.4766527970411443, + "c5": 2.607489597780858, + "c6": 1.7383263985205721, + "c7": 0.8691631992602861 }, "rgb": [86, 146, 138] }, @@ -60378,23 +60378,23 @@ "year": 1716, "resistanceReported": false, "duration": 6220800, - "curveSeeds": { - "c1": 9.059382609215756, - "c2": 1.0145198766884995, - "c3": -13.26468816443772, - "c4": -12.148493598451314, - "c5": -11.660285582565972, - "c6": 1.6378275193644285, - "c7": -12.130238549493718 + "points": { + "c1": 3.750204608404328, + "c2": -14.91541854673511, + "c3": 14.4314546742863, + "c4": -3.7055944161540317, + "c5": -8.276363740576853, + "c6": -0.7129240234862841, + "c7": -12.078870523286264 }, - "vertexSeeds": { - "c1": 4.92822257480815, - "c2": 5.244488806997871, - "c3": 5.275295243624772, - "c4": 5.078826878914657, - "c5": 4.928434692711594, - "c6": 5.160679040423652, - "c7": 5.20347183575765 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -60405,23 +60405,23 @@ "year": 1716, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 4.008753914145636, - "c2": 11.764680339380561, - "c3": -17.817510176946598, - "c4": 27.699720675202485, - "c5": -11.568676342389697, - "c6": -6.79151792821899, - "c7": 27.079434325622707 + "points": { + "c1": -10.965149453315583, + "c2": -17.179816786770168, + "c3": -13.763054663673003, + "c4": 1.2664955443425043, + "c5": 7.952108255045985, + "c6": -13.327104496341885, + "c7": -18.752843954515637 }, - "vertexSeeds": { - "c1": 2.793726931272939, - "c2": 2.54420989590335, - "c3": 2.376923338488482, - "c4": 2.4904416189366634, - "c5": 2.5085236552129406, - "c6": 2.4736285814716714, - "c7": 2.5117326313901103 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.398058252427182, + "c4": 2.718446601941747, + "c5": 2.038834951456311, + "c6": 1.3592233009708734, + "c7": 0.6796116504854355 }, "rgb": [86, 146, 138] }, @@ -60432,23 +60432,23 @@ "year": 1716, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 32.02478966935712, - "c2": 25.82888550222406, - "c3": 8.234847744187874, - "c4": -32.197070398566616, - "c5": 8.695505958786832, - "c6": -29.07989723587049, - "c7": -1.1387930136450635 + "points": { + "c1": -0.26187532808829417, + "c2": 35.33134952321518, + "c3": -19.477299808154548, + "c4": 25.615858202742906, + "c5": -6.697379855103176, + "c6": 16.652285909600643, + "c7": -17.425790111865073 }, - "vertexSeeds": { - "c1": 5.932228018367655, - "c2": 6.889538990596932, - "c3": 7.002462591179366, - "c4": 7.165967224052215, - "c5": 7.46623663492109, - "c6": 8.67766923110818, - "c7": 7.390206719523316 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099858, + "c3": 10.402219140083217, + "c4": 8.321775312066572, + "c5": 6.241331484049931, + "c6": 4.160887656033286, + "c7": 2.0804438280166404 }, "rgb": [222, 0, 59] }, @@ -60459,23 +60459,23 @@ "year": 1716, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 9.14833433528149, - "c2": -28.61250149180623, - "c3": -21.873141322854643, - "c4": -11.732566306656125, - "c5": 26.288810179431295, - "c6": 0.6509094877419201, - "c7": 31.069861166626694 + "points": { + "c1": 33.46870485846357, + "c2": -21.221116753005973, + "c3": -23.641143892658093, + "c4": 20.93885297182024, + "c5": 13.714272414710727, + "c6": 6.103416492132588, + "c7": 29.128090572968034 }, - "vertexSeeds": { - "c1": 6.358825462587822, - "c2": 6.77161236576056, - "c3": 6.811337356497669, - "c4": 6.873532608262089, - "c5": 5.19022590205773, - "c6": 6.857672763617627, - "c7": 7.137325445524672 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882107, + "c3": 8.552935737401757, + "c4": 6.842348589921406, + "c5": 5.131761442441054, + "c6": 3.421174294960703, + "c7": 1.7105871474803522 }, "rgb": [86, 146, 138] }, @@ -60486,23 +60486,23 @@ "year": 1716, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -20.506424213683047, - "c2": 12.251517372785344, - "c3": -14.396617045040987, - "c4": 9.193229450920619, - "c5": -10.861749893297542, - "c6": 9.877486202779536, - "c7": 31.92310053797975 + "points": { + "c1": 2.1852719879295535, + "c2": 32.02171198600166, + "c3": -5.426328161530343, + "c4": 9.404394955671982, + "c5": -10.308994651613634, + "c6": -6.882188798007469, + "c7": -28.69340133124212 }, - "vertexSeeds": { - "c1": 4.090689709498626, - "c2": 2.8546616177982953, - "c3": 2.2991847703182593, - "c4": 2.3663551263437292, - "c5": 2.1441816212139644, - "c6": 2.2520663861131243, - "c7": 2.6530621773936645 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567267, + "c3": 4.923717059639389, + "c4": 3.9389736477115114, + "c5": 2.954230235783634, + "c6": 1.9694868238557557, + "c7": 0.9847434119278771 }, "rgb": [238, 201, 159] }, @@ -60513,23 +60513,23 @@ "year": 1716, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 23.6169313364976, - "c2": 1.9758502289404873, - "c3": 12.934863292951484, - "c4": -19.606502770398016, - "c5": -23.754698950856863, - "c6": -12.806619660117615, - "c7": 26.938099741697975 + "points": { + "c1": -24.085497700036687, + "c2": 31.2625178281381, + "c3": -14.57390002401743, + "c4": -11.293295957934848, + "c5": -30.236367232411997, + "c6": 6.112797998644226, + "c7": 34.93401971023057 }, - "vertexSeeds": { - "c1": 2.655509919383835, - "c2": 1.8816677986602084, - "c3": 2.6091074367419056, - "c4": 2.6229119761465496, - "c5": 1.620608813266106, - "c6": 2.5392625514049696, - "c7": 1.9468195481281332 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.536754507628294, + "c4": 2.8294036061026357, + "c5": 2.1220527045769764, + "c6": 1.4147018030513174, + "c7": 0.7073509015256592 }, "rgb": [238, 201, 159] }, @@ -60540,23 +60540,23 @@ "year": 1717, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 43.90589367132174, - "c2": -24.075127338712864, - "c3": 2.4466389666176624, - "c4": 42.90123728002924, - "c5": -29.512463980063583, - "c6": -0.3233566902163787, - "c7": -22.758802555545227 + "points": { + "c1": -24.85102539016842, + "c2": -0.44280379543471327, + "c3": 30.79943563509196, + "c4": 15.25179319253322, + "c5": 33.52442868497243, + "c6": -36.803805854239506, + "c7": 12.935176275907487 }, - "vertexSeeds": { - "c1": 2.3901625311439365, - "c2": 2.2982966238082603, - "c3": 2.435958907441544, - "c4": 2.424721790523829, - "c5": 2.2609900199827866, - "c6": 2.402835821248711, - "c7": 2.3636004351947584 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.522884882108182, + "c3": 2.935737401756817, + "c4": 2.3485899214054524, + "c5": 1.7614424410540879, + "c6": 1.1742949607027293, + "c7": 0.5871474803513587 }, "rgb": [222, 0, 59] }, @@ -60567,23 +60567,23 @@ "year": 1716, "resistanceReported": false, "duration": 4752000, - "curveSeeds": { - "c1": -10.943596649875525, - "c2": -7.840053154345403, - "c3": 7.40116187829878, - "c4": -4.791453758560934, - "c5": 8.147363404372474, - "c6": 1.1332900449218855, - "c7": -11.754657920077648 + "points": { + "c1": -10.461874522074906, + "c2": -15.322933525349692, + "c3": -5.871367380244132, + "c4": -3.637782380263678, + "c5": -2.4623103677066283, + "c6": 6.744549115417755, + "c7": 16.181261658843525 }, - "vertexSeeds": { - "c1": 3.328466366210475, - "c2": 2.9933793277477236, - "c3": 3.233746694817938, - "c4": 3.169609747755726, - "c5": 3.3086394782016857, - "c6": 3.374728868135756, - "c7": 3.082487398616084 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159502, + "c3": 4.114655570966253, + "c4": 3.2917244567729966, + "c5": 2.4687933425797475, + "c6": 1.6458622283864983, + "c7": 0.8229311141932492 }, "rgb": [222, 0, 59] }, @@ -60594,23 +60594,23 @@ "year": 1716, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -32.93938408154747, - "c2": -17.853095297815695, - "c3": -15.750993191206629, - "c4": 40.81757187910991, - "c5": -36.943301818189056, - "c6": 39.669147324155865, - "c7": 26.044692789641495 + "points": { + "c1": -15.03621670862131, + "c2": -21.20543068879136, + "c3": -33.09090553116304, + "c4": -17.794631905557875, + "c5": -35.91059912157183, + "c6": 10.235435876326846, + "c7": 12.2669559798168 }, - "vertexSeeds": { - "c1": 5.498394638952047, - "c2": 4.983338408354061, - "c3": 4.8262441376048715, - "c4": 5.42728025196098, - "c5": 4.885408262731191, - "c6": 5.101317592271942, - "c7": 4.795092197371623 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.9611650485436884, + "c3": 6.634304207119738, + "c4": 5.307443365695788, + "c5": 3.9805825242718376, + "c6": 2.6537216828479, + "c7": 1.326860841423944 }, "rgb": [238, 201, 159] }, @@ -60621,23 +60621,23 @@ "year": 1716, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 29.660843059289743, - "c2": -22.118922299543414, - "c3": 17.380120925010086, - "c4": 24.3966963108078, - "c5": 2.360576669754945, - "c6": 7.408720638353419, - "c7": 11.109612574969123 + "points": { + "c1": 12.780516940593088, + "c2": 24.51733606220987, + "c3": 25.23528681684133, + "c4": 13.885161417633775, + "c5": 23.28483517847164, + "c6": 3.4883370235384703, + "c7": 15.636245637549585 }, - "vertexSeeds": { - "c1": 2.1054689690432493, - "c2": 3.0903647484927843, - "c3": 3.1182230958658668, - "c4": 2.7880289908247873, - "c5": 2.6015721574954913, - "c6": 3.0557431994086413, - "c7": 3.001620115727133 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642163, + "c3": 4.39204808136847, + "c4": 3.513638465094776, + "c5": 2.6352288488210824, + "c6": 1.756819232547388, + "c7": 0.878409616273694 }, "rgb": [238, 201, 159] }, @@ -60648,23 +60648,23 @@ "year": 1716, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 8.311554478284414, - "c2": 12.533491788771727, - "c3": -11.249649133352174, - "c4": 22.449461252452735, - "c5": 5.780094747312027, - "c6": -15.235558880545208, - "c7": -11.716227664751438 + "points": { + "c1": 13.349585662826534, + "c2": 15.202287620038248, + "c3": -3.998270514289352, + "c4": 7.182120374062187, + "c5": 26.67598341109128, + "c6": 19.444966442648514, + "c7": -23.469724312882377 }, - "vertexSeeds": { - "c1": 2.137838304449785, - "c2": 2.114327742687288, - "c3": 1.9772030728974102, - "c4": 2.1006988237071873, - "c5": 2.157604394669865, - "c6": 2.0172921713032848, - "c7": 2.148801158584991 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.1900138696255214, + "c3": 2.6583448913546026, + "c4": 2.12667591308368, + "c5": 1.5950069348127607, + "c6": 1.063337956541842, + "c7": 0.531668978270923 }, "rgb": [77, 76, 132] }, @@ -60675,23 +60675,23 @@ "year": 1716, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -20.03002641465752, - "c2": -18.614711906473282, - "c3": -22.957455370651168, - "c4": 2.134910997817279, - "c5": -12.21411628918383, - "c6": -5.918887441200567, - "c7": 6.147929669673772 + "points": { + "c1": -18.834547710699802, + "c2": 17.615544322955493, + "c3": -6.497219894385768, + "c4": -13.901789672194706, + "c5": -18.34628338260685, + "c6": 18.553895793168493, + "c7": 6.694711958939116 }, - "vertexSeeds": { - "c1": 0.8191709881457886, - "c2": 0.8805116099331947, - "c3": 0.9194947251848289, - "c4": 0.9056696919706703, - "c5": 0.9536066090203351, - "c6": 0.8344143293272963, - "c7": 0.9005038692922166 + "offsets": { + "c1": 1.6828478964401297, + "c2": 1.4424410540915396, + "c3": 1.2020342117429499, + "c4": 0.9616273693943598, + "c5": 0.7212205270457698, + "c6": 0.4808136846971799, + "c7": 0.24040684234858994 }, "rgb": [238, 201, 159] }, @@ -60702,23 +60702,23 @@ "year": 1716, "resistanceReported": false, "duration": 2073600, - "curveSeeds": { - "c1": 10.476285898271893, - "c2": -11.653956427024124, - "c3": -2.579893302689877, - "c4": 8.976644211040412, - "c5": 5.98597896728004, - "c6": 1.0844237339100662, - "c7": 2.1137437932174024 + "points": { + "c1": -8.912052844025968, + "c2": -10.60414950420705, + "c3": 11.804835012867269, + "c4": -6.984946124715883, + "c5": -5.213058426177792, + "c6": 9.202266373302564, + "c7": 7.838818603747757 }, - "vertexSeeds": { - "c1": 4.552286594580873, - "c2": 4.124116608532383, - "c3": 3.96761335048296, - "c4": 3.769766451636843, - "c5": 4.266521898005159, - "c6": 4.529101670195143, - "c7": 4.042781609364553 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -60729,23 +60729,23 @@ "year": 1716, "resistanceReported": false, "duration": 1987200, - "curveSeeds": { - "c1": -5.092689653085212, - "c2": 1.2463258977346428, - "c3": 0.01798534213889269, - "c4": -8.9099174132371, - "c5": 0.8420624702869084, - "c6": 12.055419043636952, - "c7": -9.723212761307645 + "points": { + "c1": 3.3383702588935975, + "c2": -1.9001730903685097, + "c3": 9.378602434736848, + "c4": -12.785438779157774, + "c5": 13.913455373819765, + "c6": -1.4961017940156172, + "c7": -1.7601298086302108 }, - "vertexSeeds": { - "c1": 4.4763920477661046, - "c2": 4.424061423590871, - "c3": 3.7224536562998867, - "c4": 3.7503440847009997, - "c5": 3.8100996928279076, - "c6": 3.9555655059928063, - "c7": 3.805974429475414 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -60756,23 +60756,23 @@ "year": 1716, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 5.707216568587921, - "c2": 17.350063503003636, - "c3": 19.91834216961858, - "c4": -16.028859089298603, - "c5": 19.169021703970888, - "c6": 12.099053625183576, - "c7": 14.866311456969772 + "points": { + "c1": -23.81520281931142, + "c2": 19.408126033947422, + "c3": 8.149467005832097, + "c4": -20.70908578249411, + "c5": -1.3858503773465145, + "c6": 21.823094516387012, + "c7": -1.8326684364005885 }, - "vertexSeeds": { - "c1": 5.131322528086661, - "c2": 5.125566416632626, - "c3": 5.051153437961998, - "c4": 5.54030070397353, - "c5": 5.757932539154918, - "c6": 5.119394500137631, - "c7": 5.185542342004006 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147016, + "c3": 6.9810448451225104, + "c4": 5.584835876098007, + "c5": 4.188626907073514, + "c6": 2.7924179380490095, + "c7": 1.3962089690245048 }, "rgb": [238, 201, 159] }, @@ -60783,23 +60783,23 @@ "year": 1716, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -1.500610532877836, - "c2": 24.226768469348308, - "c3": 18.145271731102333, - "c4": -1.243780045299765, - "c5": 27.371030658149408, - "c6": 9.877206777628913, - "c7": -0.8295045434180182 + "points": { + "c1": 21.13445059691525, + "c2": -28.703583306248717, + "c3": -27.31409296457784, + "c4": -16.730998308000963, + "c5": -10.519126990565162, + "c6": 26.324617107588907, + "c7": -30.331637323520212 }, - "vertexSeeds": { - "c1": 1.3628548117796533, - "c2": 1.129524502430692, - "c3": 1.3070410094703153, - "c4": 1.0437160279182922, - "c5": 1.0123172299977101, - "c6": 1.0246955958803539, - "c7": 1.3061527660290744 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.052704576976422, + "c3": 1.7105871474803522, + "c4": 1.368469717984281, + "c5": 1.026352288488211, + "c6": 0.6842348589921412, + "c7": 0.3421174294960706 }, "rgb": [238, 201, 159] }, @@ -60810,23 +60810,23 @@ "year": 1717, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 20.189121223986092, - "c2": 22.14862825092544, - "c3": 39.59548904572634, - "c4": -9.469781261919167, - "c5": -35.16881753935468, - "c6": -42.410970999485784, - "c7": 15.632004526191878 + "points": { + "c1": -9.93382042402596, + "c2": -13.422971672879605, + "c3": 19.547559006435563, + "c4": -13.85631168693233, + "c5": 43.74835835250079, + "c6": 0.31813049258784076, + "c7": -25.667483037628724 }, - "vertexSeeds": { - "c1": 8.002409623112866, - "c2": 8.642984505211976, - "c3": 9.003445938562072, - "c4": 7.703582139367036, - "c5": 8.06092423784249, - "c6": 7.795671301017201, - "c7": 8.51075025173231 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [238, 201, 159] }, @@ -60837,23 +60837,23 @@ "year": 1717, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 17.896473852638955, - "c2": 2.949757877853507, - "c3": -35.29735694952939, - "c4": 20.108509182310364, - "c5": -11.959947938840358, - "c6": -8.92193273420915, - "c7": -20.051196118795907 + "points": { + "c1": 13.32629606716143, + "c2": 12.732777789953339, + "c3": -52.583598602034144, + "c4": 12.812155502599701, + "c5": 44.46238233936547, + "c6": 10.792137863338702, + "c7": -53.532669742225245 }, - "vertexSeeds": { - "c1": 6.529161590885743, - "c2": 5.153550481332891, - "c3": 6.404672975410563, - "c4": 6.327338844268699, - "c5": 6.1422492132767115, - "c6": 6.05135395759328, - "c7": 5.616914341450117 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.13684697179843, + "c4": 6.509477577438742, + "c5": 4.882108183079059, + "c6": 3.254738788719371, + "c7": 1.6273693943596819 }, "rgb": [238, 201, 159] }, @@ -60864,23 +60864,23 @@ "year": 1717, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 43.54749942579814, - "c2": 35.44054634598159, - "c3": 35.97036525579682, - "c4": -34.9250418497444, - "c5": 16.811276530871446, - "c6": -32.59066499200742, - "c7": 14.068446697347298 + "points": { + "c1": -43.399958175290365, + "c2": 30.126424568099296, + "c3": -29.6363524483319, + "c4": -14.273497031933424, + "c5": 30.881010312312952, + "c6": 43.881974064125885, + "c7": 1.6533180463144674 }, - "vertexSeeds": { - "c1": 8.095009941186383, - "c2": 8.8332304685345, - "c3": 8.303447767907844, - "c4": 7.983848720942376, - "c5": 8.079619793203074, - "c6": 8.376934766972017, - "c7": 8.052527581431795 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.98196948682386, + "c3": 10.81830790568654, + "c4": 8.654646324549235, + "c5": 6.49098474341193, + "c6": 4.327323162274625, + "c7": 2.1636615811373052 }, "rgb": [86, 146, 138] }, @@ -60891,23 +60891,23 @@ "year": 1717, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -36.06720834833658, - "c2": -43.985329836654294, - "c3": -15.734874168457466, - "c4": -6.8012577883169385, - "c5": 1.1965495652446663, - "c6": 1.7292230530551436, - "c7": 1.2123552768294275 + "points": { + "c1": -0.5828004377738409, + "c2": -35.33983349910658, + "c3": 40.760401157255686, + "c4": -14.292476172118093, + "c5": -16.392516894304855, + "c6": 0.41216666682329617, + "c7": 2.6340215293183107 }, - "vertexSeeds": { - "c1": 4.131660379678511, - "c2": 4.622130682517867, - "c3": 4.51063728195328, - "c4": 4.6109082354282425, - "c5": 4.079391904552979, - "c6": 4.455632118255353, - "c7": 4.1189003292653945 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044385, + "c4": 4.438280166435506, + "c5": 3.328710124826628, + "c6": 2.2191400832177504, + "c7": 1.1095700416088783 }, "rgb": [86, 146, 138] }, @@ -60918,23 +60918,23 @@ "year": 1717, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": -41.48158512917139, - "c2": 45.113940304404835, - "c3": 49.50823209244959, - "c4": 22.384191260227638, - "c5": 45.20385294942284, - "c6": -39.733086633502424, - "c7": -15.680534275919221 + "points": { + "c1": -38.54016361777249, + "c2": 1.6858737504406207, + "c3": -9.286374926274064, + "c4": 9.402953184361238, + "c5": -21.774250124130965, + "c6": -1.903121709892872, + "c7": 23.067591763556592 }, - "vertexSeeds": { - "c1": 4.033383114176711, - "c2": 4.096168699760321, - "c3": 3.9988584057212675, - "c4": 4.053379231267019, - "c5": 3.7057205947498106, - "c6": 3.775908113315992, - "c7": 3.746746235466786 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105874, + "c4": 3.920480813684701, + "c5": 2.940360610263528, + "c6": 1.9602404068423462, + "c7": 0.9801202034211813 }, "rgb": [58, 15, 49] }, @@ -60945,23 +60945,23 @@ "year": 1716, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 29.127615319963354, - "c2": -8.815329591135317, - "c3": 19.004545270658163, - "c4": -2.644725239361808, - "c5": 30.43902854557684, - "c6": -30.002936437146865, - "c7": 16.464316995924236 + "points": { + "c1": 18.588259240639793, + "c2": -7.980129693138988, + "c3": 28.599139326132402, + "c4": -25.31171720680827, + "c5": -6.501737599900338, + "c6": -13.92276033049648, + "c7": -22.28694637090438 }, - "vertexSeeds": { - "c1": 4.534799142215159, - "c2": 3.0293053041464275, - "c3": 5.252312216635909, - "c4": 3.704861315540927, - "c5": 4.236207645641139, - "c6": 6.18892301737853, - "c7": 4.207345866600077 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.843273231622744, + "c3": 10.702727693018955, + "c4": 8.562182154415163, + "c5": 6.421636615811373, + "c6": 4.281091077207582, + "c7": 2.140545538603789 }, "rgb": [86, 146, 138] }, @@ -60972,23 +60972,23 @@ "year": 1716, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -24.524070514823123, - "c2": -23.007098166055798, - "c3": -7.442152223747545, - "c4": 6.065292610892477, - "c5": -3.7053498413291734, - "c6": 23.00809867063814, - "c7": 31.912554681038806 + "points": { + "c1": 10.305075474195512, + "c2": -21.321205425328785, + "c3": 25.76903995628492, + "c4": -30.51690716834119, + "c5": 16.22658508664201, + "c6": 24.580253956844572, + "c7": -13.228338895183676 }, - "vertexSeeds": { - "c1": 4.663559595392001, - "c2": 5.125436315642759, - "c3": 5.04305185079348, - "c4": 4.172207598555557, - "c5": 4.0454153507607975, - "c6": 4.157349723880646, - "c7": 4.398610396523653 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -60999,23 +60999,23 @@ "year": 1716, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 10.143026718579058, - "c2": -22.993772191988747, - "c3": 13.586586407136586, - "c4": 8.02534678359413, - "c5": 21.432268705983063, - "c6": -6.95706897574134, - "c7": 29.110387709382834 + "points": { + "c1": 31.56316768781081, + "c2": 11.652192547830033, + "c3": -1.489974837379762, + "c4": 30.119687856491538, + "c5": -24.674316225264146, + "c6": 19.17435440826283, + "c7": -8.856956841897425 }, - "vertexSeeds": { - "c1": 6.789452191315884, - "c2": 6.870193529377585, - "c3": 6.422839179651014, - "c4": 6.468076317333372, - "c5": 6.379995181749661, - "c6": 6.718209780698074, - "c7": 6.467693564126669 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399437, + "c3": 8.27554322699954, + "c4": 6.620434581599625, + "c5": 4.9653259361997275, + "c6": 3.3102172907998124, + "c7": 1.655108645399915 }, "rgb": [86, 146, 138] }, @@ -61026,23 +61026,23 @@ "year": 1716, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 12.010374960318828, - "c2": 11.201032377179509, - "c3": 5.122826795811889, - "c4": 25.624862358508175, - "c5": -7.590390278773686, - "c6": -18.01078443635876, - "c7": 1.8974083833147688 + "points": { + "c1": 15.81248104874183, + "c2": -23.65163908974648, + "c3": -28.372852958235686, + "c4": -24.159322826063594, + "c5": -3.982419158108378, + "c6": 15.883793371186194, + "c7": -35.60225737412294 }, - "vertexSeeds": { - "c1": 8.375261564951407, - "c2": 8.407814951976631, - "c3": 8.390013848018574, - "c4": 8.335535615849748, - "c5": 8.36784198351187, - "c6": 8.332538439090047, - "c7": 8.36180182926069 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456288, + "c3": 10.03236245954688, + "c4": 8.025889967637632, + "c5": 6.019417475728224, + "c6": 4.012944983818816, + "c7": 2.006472491909408 }, "rgb": [86, 146, 138] }, @@ -61053,23 +61053,23 @@ "year": 1716, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -17.513039221262737, - "c2": -4.064594039321555, - "c3": -3.1850595197741285, - "c4": 18.750743463438425, - "c5": 9.330496693403923, - "c6": 22.558952236394433, - "c7": -11.959723602400173 + "points": { + "c1": 13.96133677176637, + "c2": -6.831602164143057, + "c3": 5.957498271239459, + "c4": -25.603722818255594, + "c5": 9.672838366397997, + "c6": -5.485573829373148, + "c7": -19.50528298311918 }, - "vertexSeeds": { - "c1": 7.819224744824176, - "c2": 7.9084769967863515, - "c3": 7.8065514107504965, - "c4": 7.879070003754961, - "c5": 7.818148437017949, - "c6": 7.855707617226309, - "c7": 7.910671684820465 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.40083217753122, + "c3": 9.500693481276029, + "c4": 7.600554785020841, + "c5": 5.700416088765568, + "c6": 3.8002773925103783, + "c7": 1.9001386962551892 }, "rgb": [77, 76, 132] }, @@ -61080,23 +61080,23 @@ "year": 1717, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 7.512304453991362, - "c2": -21.843046063404103, - "c3": -9.930720633062549, - "c4": -17.00134889628489, - "c5": -2.056645832560193, - "c6": -7.803805731188049, - "c7": 11.425898242956642 + "points": { + "c1": -24.008845415610494, + "c2": 33.915366549527754, + "c3": 11.21198965510721, + "c4": 13.355179922178195, + "c5": -1.751266446639704, + "c6": -13.96026324919222, + "c7": -33.83983011860182 }, - "vertexSeeds": { - "c1": 4.356449443226915, - "c2": 4.17941567935013, - "c3": 4.477147753915941, - "c4": 3.7969431216778022, - "c5": 4.339380205815102, - "c6": 4.505552352945073, - "c7": 3.7619196949383293 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -61107,23 +61107,23 @@ "year": 1716, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -24.434396260472745, - "c2": 22.842186272278262, - "c3": 21.36100724473546, - "c4": 0.4001964449896285, - "c5": 7.7461679666795575, - "c6": 0.15057248492702868, - "c7": 20.26100076347919 + "points": { + "c1": -13.654701083576095, + "c2": 16.756244570723133, + "c3": 22.601969606178862, + "c4": -15.606252733446027, + "c5": -4.07269126888113, + "c6": 15.280506182310326, + "c7": 19.00779539432603 }, - "vertexSeeds": { - "c1": 4.626855427973779, - "c2": 4.636857707881164, - "c3": 4.675323016546113, - "c4": 4.036611225221828, - "c5": 4.538163397470373, - "c6": 4.795504807115661, - "c7": 4.496045821596081 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457699, + "c3": 6.010171058714749, + "c4": 4.8081368469718, + "c5": 3.6061026352288468, + "c6": 2.4040684234858984, + "c7": 1.2020342117429492 }, "rgb": [86, 146, 138] }, @@ -61134,23 +61134,23 @@ "year": 1716, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 18.733687264522715, - "c2": -12.6301086373863, - "c3": -15.486653636590418, - "c4": -12.095469473920101, - "c5": 27.708793867372577, - "c6": -4.178537378570315, - "c7": -23.8426371137697 + "points": { + "c1": -23.447331433913003, + "c2": 1.3238525551690046, + "c3": 10.286088244951905, + "c4": 3.631535032880798, + "c5": -1.7165159427984378, + "c6": 19.01787327489943, + "c7": 11.261412118615574 }, - "vertexSeeds": { - "c1": 6.72862082927793, - "c2": 6.81421894634964, - "c3": 6.949603518001233, - "c4": 6.054707699971452, - "c5": 6.613141339066444, - "c6": 7.038146273729146, - "c7": 6.30903388766675 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203888, + "c3": 8.7378640776699, + "c4": 6.9902912621359246, + "c5": 5.242718446601939, + "c6": 3.4951456310679623, + "c7": 1.7475728155339767 }, "rgb": [222, 0, 59] }, @@ -61161,23 +61161,23 @@ "year": 1717, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": 3.1502587764455257, - "c2": 42.6270696956926, - "c3": 43.87665448515243, - "c4": 42.41887644391457, - "c5": -49.267292315572945, - "c6": 1.6493627074467057, - "c7": 47.493010017695795 + "points": { + "c1": -28.071586266652595, + "c2": 18.648608193890894, + "c3": 11.242580045781196, + "c4": 61.53169287408778, + "c5": 63.09386284125702, + "c6": -24.565345409381152, + "c7": -45.197935082624966 }, - "vertexSeeds": { - "c1": 2.2558156906047073, - "c2": 2.5220697291194014, - "c3": 2.4760444048006134, - "c4": 2.3998174248797417, - "c5": 2.3166756543620544, - "c6": 2.3064489258128815, - "c7": 2.3427289508295903 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897375, + "c3": 3.0975496994914464, + "c4": 2.478039759593158, + "c5": 1.8585298196948672, + "c6": 1.239019879796579, + "c7": 0.6195099398982883 }, "rgb": [86, 146, 138] }, @@ -61188,23 +61188,23 @@ "year": 1717, "resistanceReported": true, "duration": 19872000, - "curveSeeds": { - "c1": 18.415087812118262, - "c2": 10.769696677579066, - "c3": 4.097232714948365, - "c4": -16.341683126647816, - "c5": 9.557011855719264, - "c6": 18.660433061216732, - "c7": 5.848347795733769 + "points": { + "c1": 0.6073577952154068, + "c2": -14.154224052824137, + "c3": 27.940248156858473, + "c4": 15.689119049014721, + "c5": -24.342100409418364, + "c6": -11.91093332603311, + "c7": -4.028936822931488 }, - "vertexSeeds": { - "c1": 3.368385326067034, - "c2": 3.3657622876613456, - "c3": 3.3768475974861363, - "c4": 3.365976000096663, - "c5": 3.367188546013105, - "c6": 3.364949419485292, - "c7": 3.3692938422317065 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388586, + "c3": 4.045307443365742, + "c4": 3.2362459546926257, + "c5": 2.427184466019349, + "c6": 1.6181229773462324, + "c7": 0.8090614886731162 }, "rgb": [238, 201, 159] }, @@ -61215,23 +61215,23 @@ "year": 1716, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -23.247014452547994, - "c2": 16.399030696970755, - "c3": -1.31277419057853, - "c4": 1.4167238479618014, - "c5": 8.923286590487763, - "c6": -11.513595670652474, - "c7": -0.9268734605581095 + "points": { + "c1": 21.645037678913035, + "c2": -20.368241921319537, + "c3": 8.936501640358294, + "c4": 9.309478216456945, + "c5": 28.344112494405124, + "c6": -10.179939081003994, + "c7": -21.165225473442078 }, - "vertexSeeds": { - "c1": 7.725864292804204, - "c2": 7.6904669712539135, - "c3": 6.8948110685260495, - "c4": 7.090210214249513, - "c5": 7.568079666462113, - "c6": 7.866697257062274, - "c7": 7.003385051160591 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410545, + "c3": 9.431345353675455, + "c4": 7.545076282940367, + "c5": 5.658807212205279, + "c6": 3.772538141470177, + "c7": 1.8862690707351015 }, "rgb": [238, 201, 159] }, @@ -61242,23 +61242,23 @@ "year": 1717, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 20.64769135921604, - "c2": 7.715687357249159, - "c3": -41.744659183151754, - "c4": -37.75791322363386, - "c5": -2.2062954632074536, - "c6": 12.104053329332821, - "c7": 6.486047266845844 + "points": { + "c1": 3.7819362913691634, + "c2": -8.565237720073128, + "c3": -35.69120405564364, + "c4": 40.16884118810502, + "c5": 44.18515548866041, + "c6": -6.549036805618975, + "c7": 43.710695662410245 }, - "vertexSeeds": { - "c1": 6.9979409941276725, - "c2": 7.644643849640021, - "c3": 7.344161618891043, - "c4": 11.133383386132566, - "c5": 6.214221125612196, - "c6": 5.665608956343196, - "c7": 9.458673069317381 + "offsets": { + "c1": 19.223300970873787, + "c2": 16.477115117891817, + "c3": 13.730929264909847, + "c4": 10.984743411927878, + "c5": 8.238557558945908, + "c6": 5.492371705963937, + "c7": 2.7461858529819705 }, "rgb": [77, 76, 132] }, @@ -61269,23 +61269,23 @@ "year": 1717, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 21.22740518890013, - "c2": 26.464137172247042, - "c3": 13.452370743501533, - "c4": -26.416480243604504, - "c5": -10.310122859852296, - "c6": -10.589717000648985, - "c7": 16.735316703831536 + "points": { + "c1": -26.00402841902644, + "c2": 1.3094006275983503, + "c3": 31.5476560351173, + "c4": -7.144347027867344, + "c5": 15.75942723922848, + "c6": 19.761933389654992, + "c7": -27.050900825342346 }, - "vertexSeeds": { - "c1": 10.62070483781897, - "c2": 9.561829513741639, - "c3": 10.321559510365294, - "c4": 9.111238659009496, - "c5": 9.768444249829566, - "c6": 9.31337301291943, - "c7": 10.309518172501548 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323163, + "c3": 12.829403606102638, + "c4": 10.263522884882109, + "c5": 7.697642163661581, + "c6": 5.1317614424410545, + "c7": 2.5658807212205272 }, "rgb": [86, 146, 138] }, @@ -61296,23 +61296,23 @@ "year": 1717, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -12.92857621276169, - "c2": -27.40849182855611, - "c3": 24.131747438120243, - "c4": -17.874486242396166, - "c5": 11.80208087345715, - "c6": -30.202206336884203, - "c7": 31.149519781267323 + "points": { + "c1": 26.145292409530065, + "c2": 30.141962910864272, + "c3": 17.040456504897648, + "c4": -4.3211198511166025, + "c5": -33.043077196441985, + "c6": 30.88180423905343, + "c7": -6.343860212413514 }, - "vertexSeeds": { - "c1": 5.010263589265843, - "c2": 5.1133366361249175, - "c3": 5.095790898179276, - "c4": 5.438886440685589, - "c5": 4.904837898747337, - "c6": 4.944810659297806, - "c7": 5.410783145399323 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423026, + "c3": 6.564956079519191, + "c4": 5.251964863615339, + "c5": 3.938973647711505, + "c6": 2.6259824318076697, + "c7": 1.3129912159038348 }, "rgb": [58, 15, 49] }, @@ -61323,23 +61323,23 @@ "year": 1717, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 10.169722831591152, - "c2": 19.70572445571566, - "c3": 13.898595898584425, - "c4": 16.15246218223257, - "c5": 3.972953724302897, - "c6": -4.162584916444533, - "c7": 3.5196474712027666 + "points": { + "c1": -1.19836232550891, + "c2": 12.586342270341866, + "c3": 9.179060137567994, + "c4": 3.4883089020139835, + "c5": 22.529185583073733, + "c6": 13.292342255549805, + "c7": 0.09936210460751482 }, - "vertexSeeds": { - "c1": 3.47132941476207, - "c2": 3.6175404531448327, - "c3": 3.728721189293572, - "c4": 3.627171333065977, - "c5": 3.7237215849994207, - "c6": 3.798265671400647, - "c7": 3.12202701100857 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084603, + "c3": 4.646324549237172, + "c4": 3.7170596393897353, + "c5": 2.787794729542304, + "c6": 1.8585298196948676, + "c7": 0.9292649098474316 }, "rgb": [238, 201, 159] }, @@ -61350,23 +61350,23 @@ "year": 1717, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": 12.111108800642263, - "c2": -28.88714985107415, - "c3": -34.536069820529335, - "c4": 36.85366759158147, - "c5": 26.550711592039605, - "c6": -14.42374337955102, - "c7": -4.511816581570926 + "points": { + "c1": 14.260330805453705, + "c2": -26.38816287151318, + "c3": -19.272684167644755, + "c4": -2.7227138662013743, + "c5": -29.601877378457985, + "c6": 2.942046435720364, + "c7": -5.551142978709599 }, - "vertexSeeds": { - "c1": 1.937659823674875, - "c2": 1.8905641384827852, - "c3": 1.7624665943831221, - "c4": 2.106512787884574, - "c5": 1.743111566036069, - "c6": 1.8919958933018735, - "c7": 2.041501428023276 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.5889967637540447, + "c4": 2.071197411003235, + "c5": 1.553398058252428, + "c6": 1.035598705501619, + "c7": 0.5177993527508095 }, "rgb": [238, 201, 159] }, @@ -61377,23 +61377,23 @@ "year": 1717, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -22.40666860659035, - "c2": -4.342873881767005, - "c3": -5.350591995195202, - "c4": -30.56961334821673, - "c5": 3.493920567605109, - "c6": -21.63920599807625, - "c7": -5.474740457257074 + "points": { + "c1": 19.717267402485504, + "c2": 7.547888896696804, + "c3": -24.662183193683653, + "c4": 22.26641544447896, + "c5": 19.421087333769528, + "c6": -10.156076090485143, + "c7": -26.845527268963444 }, - "vertexSeeds": { - "c1": 5.116959863528528, - "c2": 5.812388303376926, - "c3": 6.464215911939978, - "c4": 5.813069203739287, - "c5": 4.836093103114536, - "c6": 6.54438002085555, - "c7": 6.507706005798148 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957002, + "c3": 8.021266759130839, + "c4": 6.417013407304671, + "c5": 4.812760055478501, + "c6": 3.2085067036523323, + "c7": 1.6042533518261692 }, "rgb": [238, 201, 159] }, @@ -61404,23 +61404,23 @@ "year": 1717, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -13.408137835236566, - "c2": -28.493648773338524, - "c3": -1.790048621903587, - "c4": 14.46829253028913, - "c5": 22.209481752174906, - "c6": -4.415516341098236, - "c7": 5.268534995467878 + "points": { + "c1": 4.404093084076141, + "c2": -24.85059732962061, + "c3": -6.0104675366348275, + "c4": -11.323693953477168, + "c5": 22.26840774288888, + "c6": -9.258734538990737, + "c7": -17.731531660555095 }, - "vertexSeeds": { - "c1": 3.8644339109266834, - "c2": 4.0023767708703275, - "c3": 4.230318495615135, - "c4": 3.9207675676457643, - "c5": 3.8506110520326766, - "c6": 4.13249466353894, - "c7": 4.268998335794227 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.1858529819694885, + "c3": 5.154877484974575, + "c4": 4.123901987979653, + "c5": 3.09292649098474, + "c6": 2.0619509939898264, + "c7": 1.0309754969949132 }, "rgb": [58, 15, 49] }, @@ -61431,23 +61431,23 @@ "year": 1717, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -19.10095390331768, - "c2": 21.472145983342834, - "c3": -7.934892448748563, - "c4": -25.266397325446924, - "c5": 5.60599476381293, - "c6": 15.13379062192633, - "c7": 20.744047150888967 + "points": { + "c1": 4.348100978955742, + "c2": -29.868925153900793, + "c3": 25.20063520784504, + "c4": -5.2063665660208365, + "c5": 16.73703254659482, + "c6": 28.407440884552337, + "c7": -4.542254162617162 }, - "vertexSeeds": { - "c1": 5.688421105781303, - "c2": 5.867665133499456, - "c3": 5.900268967433049, - "c4": 5.537084446798269, - "c5": 5.441669859858126, - "c6": 5.422581681635081, - "c7": 5.536254869169989 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.7378640776699, + "c3": 7.281553398058248, + "c4": 5.825242718446595, + "c5": 4.368932038834942, + "c6": 2.912621359223289, + "c7": 1.456310679611653 }, "rgb": [222, 0, 59] }, @@ -61458,23 +61458,23 @@ "year": 1717, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -3.1938275818993986, - "c2": -2.8070471777513575, - "c3": -16.28880171848283, - "c4": -11.735512787209103, - "c5": -18.130360465370448, - "c6": -4.316295384462844, - "c7": 0.014098112158894338 + "points": { + "c1": 9.86631769930182, + "c2": -22.385562723488434, + "c3": 21.18428690356657, + "c4": 4.553266215264305, + "c5": 22.83803312719424, + "c6": -10.70068685771038, + "c7": 19.642076545884937 }, - "vertexSeeds": { - "c1": 6.360472586359611, - "c2": 6.341124739035802, - "c3": 5.948479647977433, - "c4": 5.867649492158199, - "c5": 6.605393851625365, - "c6": 6.1329584237491375, - "c7": 6.109391372527989 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [222, 0, 59] }, @@ -61485,23 +61485,23 @@ "year": 1717, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -7.234700298787967, - "c2": -22.47248895470806, - "c3": 3.4895583543903825, - "c4": 20.830005481122484, - "c5": -7.389193858918873, - "c6": 2.4925094379091846, - "c7": 9.246567378048283 + "points": { + "c1": 8.520095040815121, + "c2": 19.83300248374578, + "c3": 2.2725575560423685, + "c4": -7.754552403616525, + "c5": 6.10212109597488, + "c6": 5.020959834618637, + "c7": -24.98537299274624 }, - "vertexSeeds": { - "c1": 3.2921122963315685, - "c2": 3.1727618204924517, - "c3": 3.249262488803963, - "c4": 3.0725543410894014, - "c5": 3.0151940287712224, - "c6": 3.196964857555637, - "c7": 3.145187331282311 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958393, + "c3": 3.9990753582986582, + "c4": 3.1992602866389293, + "c5": 2.3994452149791936, + "c6": 1.5996301433194646, + "c7": 0.7998150716597355 }, "rgb": [86, 146, 138] }, @@ -61512,23 +61512,23 @@ "year": 1717, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -17.522145335561106, - "c2": -2.3449039916593755, - "c3": 18.26194712073532, - "c4": -3.046143791301212, - "c5": 16.790338272198156, - "c6": -26.241858092543442, - "c7": -14.08361493941933 + "points": { + "c1": 1.1091625971798464, + "c2": -17.787994540321243, + "c3": 7.402430336148029, + "c4": 1.2305221313131938, + "c5": -7.79565139751503, + "c6": 26.507277071954327, + "c7": -6.402785514203675 }, - "vertexSeeds": { - "c1": 3.787906242890384, - "c2": 4.019365821865781, - "c3": 4.158393811648784, - "c4": 3.988144398413429, - "c5": 4.117463587013584, - "c6": 4.155215432996541, - "c7": 3.876318805034411 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848822, + "c3": 5.085529357374015, + "c4": 4.0684234858992125, + "c5": 3.051317614424411, + "c6": 2.034211742949609, + "c7": 1.0171058714748022 }, "rgb": [86, 146, 138] }, @@ -61539,23 +61539,23 @@ "year": 1717, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 31.771072446924677, - "c2": 20.3525087082483, - "c3": 33.78737285729744, - "c4": 26.297458048610984, - "c5": -31.246520599068592, - "c6": -3.852003433707921, - "c7": -17.02929236528293 + "points": { + "c1": 17.29203891777292, + "c2": 27.59237736492321, + "c3": 15.72891370173378, + "c4": -0.2726110628994647, + "c5": -3.346221250473249, + "c6": 16.283674679932545, + "c7": 25.149986090238322 }, - "vertexSeeds": { - "c1": 10.395338734404797, - "c2": 10.466554244862504, - "c3": 10.37270219687986, - "c4": 10.416332939819888, - "c5": 10.398336546939994, - "c6": 10.344230534862493, - "c7": 10.430136073970798 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.979195561719806, + "c3": 12.482662968099804, + "c4": 9.986130374479803, + "c5": 7.489597780860001, + "c6": 4.993065187240001, + "c7": 2.4965325936200005 }, "rgb": [238, 201, 159] }, @@ -61566,23 +61566,23 @@ "year": 1717, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -6.094368768537684, - "c2": -6.935558605942347, - "c3": 2.481344562244878, - "c4": 28.135002350280672, - "c5": -27.28685838429667, - "c6": -26.276650774109413, - "c7": -13.722556861619527 + "points": { + "c1": 24.524613835347985, + "c2": -17.32017041931897, + "c3": -9.081082223714201, + "c4": -33.07466325208674, + "c5": -16.866939592602108, + "c6": -7.8880930448734645, + "c7": 20.497575797803712 }, - "vertexSeeds": { - "c1": 1.8977308184256918, - "c2": 1.8452108380026684, - "c3": 1.9352070264049022, - "c4": 1.896865325882684, - "c5": 1.858033227199564, - "c6": 1.91921470938715, - "c7": 1.6773281745676276 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.334720295885344, + "c4": 1.8677762367082766, + "c5": 1.4008321775312056, + "c6": 0.9338881183541383, + "c7": 0.46694405917707077 }, "rgb": [222, 0, 59] }, @@ -61593,23 +61593,23 @@ "year": 1717, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -3.28546920150562, - "c2": 22.6780039088444, - "c3": -25.822487574426848, - "c4": -7.938478709328258, - "c5": -8.787121588535207, - "c6": 0.0839751088432763, - "c7": 20.227184365815678 + "points": { + "c1": -25.814781542630804, + "c2": -23.500861123527066, + "c3": 28.06086989573065, + "c4": -0.21813862290089503, + "c5": -11.412171079789786, + "c6": -16.8113019044382, + "c7": 15.448289363369799 }, - "vertexSeeds": { - "c1": 5.128002502774183, - "c2": 5.196570296920601, - "c3": 5.470881210030168, - "c4": 4.874222149387817, - "c5": 4.733487896420801, - "c6": 4.75954443115073, - "c7": 5.109512141089989 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704577, + "c3": 6.726768377253814, + "c4": 5.381414701803049, + "c5": 4.036061026352286, + "c6": 2.6907073509015222, + "c7": 1.3453536754507636 }, "rgb": [77, 76, 132] }, @@ -61620,23 +61620,23 @@ "year": 1717, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -8.396728380202298, - "c2": -22.962855369875356, - "c3": 27.80177474760201, - "c4": 17.309480092376717, - "c5": -0.43482802046561275, - "c6": 26.41018774285923, - "c7": -8.215010900580836 + "points": { + "c1": 29.607644971700523, + "c2": 19.637439952369057, + "c3": 2.704181910291183, + "c4": 18.635110560236086, + "c5": 15.859233574732194, + "c6": 26.782815175361435, + "c7": 10.712793067257898 }, - "vertexSeeds": { - "c1": 2.850528827134177, - "c2": 2.7476988129553486, - "c3": 2.985657078537525, - "c4": 3.058314536095717, - "c5": 2.868725506328366, - "c6": 2.9553375894930847, - "c7": 2.843828891548783 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.60471567267684, + "c3": 3.8372630605640303, + "c4": 3.0698104484512267, + "c5": 2.302357836338417, + "c6": 1.5349052242256134, + "c7": 0.7674526121128097 }, "rgb": [86, 146, 138] }, @@ -61647,23 +61647,23 @@ "year": 1717, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -21.49664955252676, - "c2": -25.546271782258014, - "c3": -10.33330796208773, - "c4": 3.6675182130076145, - "c5": 14.987232815067184, - "c6": 18.473044816040645, - "c7": -10.139189987774433 + "points": { + "c1": -13.116379469402894, + "c2": -11.26296740867214, + "c3": 19.38251128314676, + "c4": -1.7023296744958785, + "c5": 18.936873799042456, + "c6": 1.4606238940521266, + "c7": 23.059742117056555 }, - "vertexSeeds": { - "c1": 3.7640680461929383, - "c2": 3.902224177582789, - "c3": 3.7685740417996803, - "c4": 3.6504573372260687, - "c5": 3.6075507669921882, - "c6": 3.703039117405012, - "c7": 3.791207634984408 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366163, + "c3": 4.808136846971798, + "c4": 3.846509477577442, + "c5": 2.884882108183077, + "c6": 1.923254738788721, + "c7": 0.9616273693943648 }, "rgb": [58, 15, 49] }, @@ -61674,23 +61674,23 @@ "year": 1717, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 3.2394113503013635, - "c2": -2.03155927677113, - "c3": 10.998496792530794, - "c4": -7.0885070174931, - "c5": -3.9892159008873946, - "c6": 16.743956162994436, - "c7": -0.4836214321368715 + "points": { + "c1": -25.08346810475155, + "c2": 21.137635716049715, + "c3": 22.60498712820091, + "c4": 2.905937669198117, + "c5": 7.375508214017643, + "c6": 14.376278302476472, + "c7": 17.93780711180719 }, - "vertexSeeds": { - "c1": 4.2981866811877545, - "c2": 4.152472718436223, - "c3": 4.1732413867344, - "c4": 4.387203169443247, - "c5": 3.80369168127992, - "c6": 4.0697270790932425, - "c7": 3.8621121519107615 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -61701,23 +61701,23 @@ "year": 1717, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -8.67128967142057, - "c2": 4.490983713679135, - "c3": -6.009947751462999, - "c4": 24.85674431969455, - "c5": 3.2401430115690744, - "c6": 31.79961167002145, - "c7": 6.613887324550454 + "points": { + "c1": -22.959773309716397, + "c2": 3.2003149851041, + "c3": -15.074679352590355, + "c4": 0.08927838768147467, + "c5": 7.7697441714875595, + "c6": -1.87429131137214, + "c7": -11.330666145700416 }, - "vertexSeeds": { - "c1": 3.7423713275164454, - "c2": 4.3296284067712145, - "c3": 3.7303089665859797, - "c4": 4.357787762513321, - "c5": 3.9863161982192965, - "c6": 4.228616159019046, - "c7": 4.301803278163045 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572816, + "c3": 5.501618122977348, + "c4": 4.40129449838188, + "c5": 3.300970873786406, + "c6": 2.2006472491909372, + "c7": 1.1003236245954686 }, "rgb": [238, 201, 159] }, @@ -61728,23 +61728,23 @@ "year": 1716, "resistanceReported": false, "duration": 9244800, - "curveSeeds": { - "c1": 0.36154470230093594, - "c2": 7.260637847785546, - "c3": 8.493736303085036, - "c4": 11.728941028756175, - "c5": -11.25428837640627, - "c6": 15.5248976839152, - "c7": 15.161867818765593 + "points": { + "c1": 2.4586181281948782, + "c2": 12.364893935756022, + "c3": -2.551596409946576, + "c4": -2.419759079165207, + "c5": 14.848403414871157, + "c6": 7.204280352323483, + "c7": 21.007959991947267 }, - "vertexSeeds": { - "c1": 4.997092076724431, - "c2": 4.936593088993549, - "c3": 4.883647365494976, - "c4": 4.947719310968725, - "c5": 4.9438167425900215, - "c6": 5.003355913559263, - "c7": 4.877323744052665 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457685, + "c3": 6.010171058714769, + "c4": 4.808136846971806, + "c5": 3.6061026352288423, + "c6": 2.404068423485903, + "c7": 1.2020342117429392 }, "rgb": [222, 0, 59] }, @@ -61755,23 +61755,23 @@ "year": 1717, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -9.008862926472407, - "c2": -13.098322922051068, - "c3": -2.733186552447261, - "c4": 12.121421390549422, - "c5": -21.83491056046972, - "c6": 10.97176094135326, - "c7": 19.70332919378859 + "points": { + "c1": -5.2324151305330595, + "c2": -1.2800541876789886, + "c3": -6.688248021888391, + "c4": 7.3025893809657845, + "c5": 17.470781088289797, + "c6": 22.38045417696712, + "c7": 8.531013229372945 }, - "vertexSeeds": { - "c1": 3.9674556240719316, - "c2": 3.8556223991591594, - "c3": 3.8557954048244834, - "c4": 4.393959344554662, - "c5": 4.299661486917241, - "c6": 3.7951919425645655, - "c7": 4.266024744691591 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [238, 201, 159] }, @@ -61782,23 +61782,23 @@ "year": 1717, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 4.768487885566486, - "c2": -16.37088008539061, - "c3": -2.737649058460697, - "c4": -18.074639225264757, - "c5": 12.121461349810822, - "c6": 22.839016126435837, - "c7": 26.605905226851384 + "points": { + "c1": -29.265019007991732, + "c2": 30.917439077207945, + "c3": -24.09333659711406, + "c4": -6.968325881550641, + "c5": 0.7439042544443524, + "c6": 18.00670349288776, + "c7": 36.780827591533296 }, - "vertexSeeds": { - "c1": 2.412532865643519, - "c2": 2.638373039501862, - "c3": 2.818878371843074, - "c4": 2.352685364837423, - "c5": 2.5383394412948075, - "c6": 2.5162087170013714, - "c7": 2.3833238588922674 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952841, + "c3": 3.421174294960703, + "c4": 2.736939435968561, + "c5": 2.052704576976423, + "c6": 1.3684697179842804, + "c7": 0.6842348589921428 }, "rgb": [86, 146, 138] }, @@ -61809,23 +61809,23 @@ "year": 1717, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 29.898593369966406, - "c2": 11.23716090963648, - "c3": 22.46949864702195, - "c4": -14.872861840902964, - "c5": -8.857984121883124, - "c6": -30.118609097442196, - "c7": 9.008557700264404 + "points": { + "c1": 24.964256138333504, + "c2": -1.6348242115325107, + "c3": -8.754351945072386, + "c4": -33.25298124074208, + "c5": -4.140029930173029, + "c6": -5.185915024532228, + "c7": -34.035158794392395 }, - "vertexSeeds": { - "c1": 3.1418450543730936, - "c2": 3.5624608015732226, - "c3": 3.377859921368767, - "c4": 3.4707661627022834, - "c5": 3.41345040856184, - "c6": 3.4730069534202324, - "c7": 3.5166318699386974 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441057, + "c3": 4.276467868700877, + "c4": 3.4211742949607045, + "c5": 2.565880721220525, + "c6": 1.7105871474803522, + "c7": 0.8552935737401728 }, "rgb": [58, 15, 49] }, @@ -61836,23 +61836,23 @@ "year": 1717, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 35.27217724952655, - "c2": -33.25655653125703, - "c3": -13.875589360153153, - "c4": 21.362474428192073, - "c5": -6.19725680114308, - "c6": -26.121509324808663, - "c7": 0.07045447906988755 + "points": { + "c1": 23.36712697534633, + "c2": 29.167060253213506, + "c3": 29.31145005624073, + "c4": 3.286685997900605, + "c5": -25.779088287386177, + "c6": -18.879087082009647, + "c7": 31.193637032789994 }, - "vertexSeeds": { - "c1": 8.782001499801554, - "c2": 7.937795891462713, - "c3": 8.548349485266877, - "c4": 7.676247671048497, - "c5": 8.732376779247733, - "c6": 8.781342422693307, - "c7": 8.65806699956335 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.649098474341185, + "c3": 10.540915395284328, + "c4": 8.432732316227458, + "c5": 6.3245492371706, + "c6": 4.216366158113729, + "c7": 2.1081830790568707 }, "rgb": [86, 146, 138] }, @@ -61863,23 +61863,23 @@ "year": 1717, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 19.3482162534875, - "c2": 6.949523956469768, - "c3": 31.29211218042297, - "c4": 17.910931111532747, - "c5": 13.850744827002544, - "c6": 28.41050852082335, - "c7": -28.528610922522503 + "points": { + "c1": -35.095302707353156, + "c2": -18.744815543555685, + "c3": 13.171690517510342, + "c4": -26.838341209876983, + "c5": -26.665848999438612, + "c6": -25.58748167772987, + "c7": -29.00038967126468 }, - "vertexSeeds": { - "c1": 7.596603735071387, - "c2": 7.280190280516642, - "c3": 7.783401613303996, - "c4": 7.625710962067533, - "c5": 8.00473410638023, - "c6": 7.124872570719221, - "c7": 7.540504937731125 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692096, + "c3": 9.593157651410085, + "c4": 7.67452612112806, + "c5": 5.755894590846048, + "c6": 3.8372630605640365, + "c7": 1.9186315302820247 }, "rgb": [58, 15, 49] }, @@ -61890,23 +61890,23 @@ "year": 1717, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -23.66116110080199, - "c2": -20.819032280587237, - "c3": -20.068854417041535, - "c4": 10.249746854144739, - "c5": 17.851042975076354, - "c6": 29.77899059361185, - "c7": 31.592710315531036 + "points": { + "c1": 35.47869241089727, + "c2": -3.323239886564444, + "c3": 12.080215148627417, + "c4": 15.402934580496158, + "c5": -14.041098639219825, + "c6": -24.048052304150467, + "c7": -19.45087928015843 }, - "vertexSeeds": { - "c1": 6.164020631308848, - "c2": 6.302028264173784, - "c3": 6.076048051525035, - "c4": 6.452096508127654, - "c5": 5.862649841104645, - "c6": 5.8676908497536076, - "c7": 6.4995048916144516 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595005, + "c3": 7.813222376329178, + "c4": 6.25057790106334, + "c5": 4.687933425797502, + "c6": 3.1252889505316763, + "c7": 1.5626444752658382 }, "rgb": [86, 146, 138] }, @@ -61917,23 +61917,23 @@ "year": 1717, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -19.52043617583748, - "c2": -7.629316504807623, - "c3": -9.245265523042452, - "c4": 11.819165918977511, - "c5": -27.286588387605576, - "c6": -16.115501124914676, - "c7": -8.265360889463416 + "points": { + "c1": 1.7303234259216893, + "c2": -32.97519920252974, + "c3": -0.1672378024596668, + "c4": 35.113893723151136, + "c5": 5.9275907193427315, + "c6": 17.490278571294503, + "c7": -14.459134196617043 }, - "vertexSeeds": { - "c1": 7.239437224335495, - "c2": 6.854783525197543, - "c3": 7.186972040687961, - "c4": 7.2757807905940135, - "c5": 7.353541604663523, - "c6": 7.236513987947594, - "c7": 7.247259677675655 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284339, + "c3": 8.784096162736937, + "c4": 7.02727693018956, + "c5": 5.270457697642157, + "c6": 3.51363846509478, + "c7": 1.756819232547377 }, "rgb": [86, 146, 138] }, @@ -61944,23 +61944,23 @@ "year": 1717, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -0.27109057821762406, - "c2": -3.2452002296207745, - "c3": 21.147063577430167, - "c4": -2.935149258113441, - "c5": -3.6624034055918706, - "c6": 13.01695580095597, - "c7": -7.93880698813526 + "points": { + "c1": 12.794553883457304, + "c2": 19.087991997421916, + "c3": -22.220139963649967, + "c4": -4.142816181889991, + "c5": 13.582371787993331, + "c6": -19.996589280783425, + "c7": 5.70759539281817 }, - "vertexSeeds": { - "c1": 2.4066838529088175, - "c2": 2.2459748572935, - "c3": 2.4168463963993214, - "c4": 2.241508624642121, - "c5": 2.4167231891287533, - "c6": 2.4042775388264297, - "c7": 2.2801461593291337 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.495145631067961, + "c3": 2.912621359223301, + "c4": 2.3300970873786406, + "c5": 1.7475728155339805, + "c6": 1.1650485436893203, + "c7": 0.5825242718446602 }, "rgb": [86, 146, 138] }, @@ -61971,23 +61971,23 @@ "year": 1717, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -17.525268300178443, - "c2": 0.29595881190542883, - "c3": 18.972141494419507, - "c4": 15.596526423166193, - "c5": 18.63139205293324, - "c6": -15.361786169945617, - "c7": -20.244475345881956 + "points": { + "c1": 15.06819813042436, + "c2": -3.470749092884933, + "c3": -3.488391021093598, + "c4": -12.124683838810196, + "c5": 18.128317039483296, + "c6": -9.290981245288387, + "c7": 13.439333516659278 }, - "vertexSeeds": { - "c1": 4.266433455594839, - "c2": 3.9836605886808636, - "c3": 4.169098789266934, - "c4": 3.898759862822146, - "c5": 4.226111176061077, - "c6": 3.7179926972319772, - "c7": 4.115341652229583 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -61998,23 +61998,23 @@ "year": 1717, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 33.022151412210334, - "c2": -3.4043673746451155, - "c3": -19.71109214995063, - "c4": 19.56976888061751, - "c5": 0.5847305222597896, - "c6": 6.595090362964449, - "c7": -32.45750662870223 + "points": { + "c1": -25.792576616040776, + "c2": 29.506199983316023, + "c3": -7.788686342795767, + "c4": -30.863331702325404, + "c5": -28.9027913574499, + "c6": -29.827374743256463, + "c7": 2.6172226762927338 }, - "vertexSeeds": { - "c1": 1.7096350203901771, - "c2": 1.917963124488799, - "c3": 1.7156462797365968, - "c4": 1.812872060239107, - "c5": 1.8491922353948216, - "c6": 1.8475488559176056, - "c7": 1.9741784785475487 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037457, + "c3": 2.4734165510864536, + "c4": 1.9787332408691638, + "c5": 1.4840499306518717, + "c6": 0.9893666204345819, + "c7": 0.4946833102172921 }, "rgb": [238, 201, 159] }, @@ -62025,23 +62025,23 @@ "year": 1717, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 5.273793856141378, - "c2": 5.030604807997914, - "c3": -18.60874086968564, - "c4": 17.500397660964477, - "c5": -26.90969537891128, - "c6": 26.136362232308596, - "c7": 3.8191393942230967 + "points": { + "c1": -30.291516214105624, + "c2": -15.175114292039765, + "c3": -5.430684140337188, + "c4": 27.32509540624284, + "c5": -5.823777703381531, + "c6": 6.356547497353869, + "c7": 4.40488025525767 }, - "vertexSeeds": { - "c1": 4.554496234943058, - "c2": 4.301847320955329, - "c3": 4.649167096536934, - "c4": 4.959315738366624, - "c5": 4.584505777414424, - "c6": 4.637031534696551, - "c7": 4.700447971387474 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940361, + "c3": 6.2875635691169665, + "c4": 5.030050855293571, + "c5": 3.7725381414701777, + "c6": 2.515025427646784, + "c7": 1.2575127138233895 }, "rgb": [86, 146, 138] }, @@ -62052,23 +62052,23 @@ "year": 1717, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -22.10180146119425, - "c2": -5.9468455122251775, - "c3": -11.146304237850554, - "c4": 0.0360601458013079, - "c5": 25.96590604566243, - "c6": -17.675934457686168, - "c7": -8.288801798078136 + "points": { + "c1": 3.536131325095859, + "c2": -17.377522288688336, + "c3": -10.65788830995832, + "c4": -4.800012565246089, + "c5": 11.395353521160644, + "c6": 0.26651323730274257, + "c7": -2.0032696284524505 }, - "vertexSeeds": { - "c1": 2.981114321199369, - "c2": 3.0812059554068063, - "c3": 3.0725833500169553, - "c4": 3.083359924732619, - "c5": 3.063680769701035, - "c6": 2.9645547538351757, - "c7": 3.0472709991450357 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852955, + "c5": 2.371705963938976, + "c6": 1.5811373092926477, + "c7": 0.7905686546463198 }, "rgb": [222, 0, 59] }, @@ -62079,23 +62079,23 @@ "year": 1717, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": -4.554487838255023, - "c2": 8.201686187996636, - "c3": 0.05527717772758223, - "c4": 0.5094228760878394, - "c5": 12.056280358790033, - "c6": -14.98474335998964, - "c7": 12.278312039081058 + "points": { + "c1": -4.60896759516514, + "c2": -20.24754037767083, + "c3": -15.048984787517309, + "c4": -8.151258309975388, + "c5": -6.286009092432879, + "c6": -2.4960680669690483, + "c7": -2.88396065912557 }, - "vertexSeeds": { - "c1": 4.243588570727667, - "c2": 4.147912821215824, - "c3": 3.6786784727554847, - "c4": 4.346702658379224, - "c5": 4.016643796048767, - "c6": 3.822453264733951, - "c7": 4.250008624181915 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -62106,23 +62106,23 @@ "year": 1717, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": 8.475247185792938, - "c2": 10.017164539028975, - "c3": -2.5764485386994167, - "c4": -5.461276252706661, - "c5": 7.090950422326191, - "c6": -1.09133763564342, - "c7": 12.098891166859953 + "points": { + "c1": 15.070969900406006, + "c2": 8.470055619937277, + "c3": 2.0590536077240813, + "c4": 12.60950922895298, + "c5": -14.714959500343667, + "c6": -9.06068490971997, + "c7": 6.1928713463580145 }, - "vertexSeeds": { - "c1": 5.042516349834051, - "c2": 4.610134625446472, - "c3": 5.07588907882369, - "c4": 4.583674561739432, - "c5": 5.1397605976065, - "c6": 5.214284170053227, - "c7": 4.8655949176536435 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -62133,23 +62133,23 @@ "year": 1717, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 22.47515957278103, - "c2": -36.42146034040554, - "c3": -26.771721220444988, - "c4": -36.195118446448156, - "c5": 28.660978356443636, - "c6": 29.77278573118531, - "c7": 28.510107710531173 + "points": { + "c1": 25.748425176063265, + "c2": -35.665367669449644, + "c3": -22.4531920089711, + "c4": 24.92461291121657, + "c5": -9.558188323314305, + "c6": -6.944546418070587, + "c7": -33.88262208829683 }, - "vertexSeeds": { - "c1": 1.3940168246234375, - "c2": 1.3889967875753655, - "c3": 1.147251169432152, - "c4": 1.1464266954525861, - "c5": 1.334393742610011, - "c6": 1.210590929598652, - "c7": 1.3964263449893437 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.080443828016644, + "c3": 1.7337031900138684, + "c4": 1.3869625520110953, + "c5": 1.040221914008322, + "c6": 0.6934812760055489, + "c7": 0.34674063800277327 }, "rgb": [238, 201, 159] }, @@ -62160,23 +62160,23 @@ "year": 1717, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -19.878264765808904, - "c2": -0.2922810332767938, - "c3": 12.466493941451606, - "c4": -28.109242683901037, - "c5": -10.323960968297442, - "c6": 23.05578181209101, - "c7": -13.694443915918335 + "points": { + "c1": -2.3071039224194045, + "c2": 15.402246583826795, + "c3": -12.426071719436415, + "c4": 21.645726425369766, + "c5": -29.841699362618677, + "c6": 18.49672140121261, + "c7": 2.0419376341767546 }, - "vertexSeeds": { - "c1": 5.176130822120436, - "c2": 5.560974235879096, - "c3": 4.896456091981506, - "c4": 4.928579367163822, - "c5": 4.344929614354293, - "c6": 5.269903986262292, - "c7": 5.252988545713216 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854372, + "c4": 5.436893203883495, + "c5": 4.0776699029126195, + "c6": 2.7184466019417477, + "c7": 1.359223300970876 }, "rgb": [77, 76, 132] }, @@ -62187,23 +62187,23 @@ "year": 1717, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -5.3857469645697655, - "c2": -28.50110923781536, - "c3": 5.581272826549899, - "c4": -12.457984654688193, - "c5": 0.04038495960529076, - "c6": -10.676413582886074, - "c7": 10.901630457456434 + "points": { + "c1": 0.15272725143518429, + "c2": -8.372357867508516, + "c3": -18.83878913007176, + "c4": 17.21584246718431, + "c5": 8.40327535603339, + "c6": 13.335764776363604, + "c7": -15.378595166966907 }, - "vertexSeeds": { - "c1": 2.1166574565389267, - "c2": 2.292198081406433, - "c3": 2.18255999314822, - "c4": 1.9435299547558889, - "c5": 1.9851698092662162, - "c6": 1.9157383785234132, - "c7": 2.100494740024137 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668528, + "c3": 2.797041146555709, + "c4": 2.2376329172445684, + "c5": 1.678224687933425, + "c6": 1.1188164586222842, + "c7": 0.5594082293111432 }, "rgb": [222, 0, 59] }, @@ -62214,23 +62214,23 @@ "year": 1717, "resistanceReported": false, "duration": 6048000, - "curveSeeds": { - "c1": 9.829642085918245, - "c2": -13.455747876927923, - "c3": 6.823792314203562, - "c4": 4.405904637785106, - "c5": 13.452794030402966, - "c6": -12.16485098032018, - "c7": -0.8843061847492901 + "points": { + "c1": -0.9047619214517368, + "c2": 5.064405758018562, + "c3": 5.60243836426136, + "c4": 10.668006595246638, + "c5": 4.636630256753808, + "c6": -11.614061234258571, + "c7": -10.655677572830522 }, - "vertexSeeds": { - "c1": 3.2989065458924993, - "c2": 3.237055105623405, - "c3": 3.194381972765447, - "c4": 3.0159709375542043, - "c5": 3.240352891548065, - "c6": 3.336782008833251, - "c7": 3.184397775865278 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998608, + "c3": 4.022191400832178, + "c4": 3.217753120665739, + "c5": 2.413314840499309, + "c6": 1.6088765603328694, + "c7": 0.8044382801664304 }, "rgb": [238, 201, 159] }, @@ -62241,23 +62241,23 @@ "year": 1717, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": -14.129249821364915, - "c2": 5.247463444973253, - "c3": 11.930841732562321, - "c4": 13.545304428490077, - "c5": -0.3245156721800946, - "c6": -1.3509573651756313, - "c7": 12.67021567885481 + "points": { + "c1": 16.6582147325542, + "c2": -6.2059536380570535, + "c3": -2.857209811869975, + "c4": -5.565151533046036, + "c5": 14.180199049999587, + "c6": -0.16377246699339665, + "c7": -14.72175830407058 }, - "vertexSeeds": { - "c1": 3.874300301638192, - "c2": 4.330188315475711, - "c3": 3.737137841822866, - "c4": 4.091841194992271, - "c5": 4.3986881402898605, - "c6": 4.473991755417401, - "c7": 4.4396604410734914 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -62268,23 +62268,23 @@ "year": 1717, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": 3.055715201212294, - "c2": 4.80913679019454, - "c3": -9.163584585073341, - "c4": 7.101835441773634, - "c5": -0.321192740869618, - "c6": 7.317971892440774, - "c7": -2.9574373345901215 + "points": { + "c1": -0.7283514146800485, + "c2": 13.162475481827098, + "c3": 15.911479860562252, + "c4": -9.675384646793928, + "c5": 3.5583518688843547, + "c6": -7.558898957912431, + "c7": -13.282294637002357 }, - "vertexSeeds": { - "c1": 3.0823596779419096, - "c2": 3.178711376190068, - "c3": 3.115703838269952, - "c4": 2.910978706426173, - "c5": 3.1464452336966913, - "c6": 3.1495330469030884, - "c7": 3.170390907973222 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -62295,23 +62295,23 @@ "year": 1717, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 5.830174852247254, - "c2": -2.3389413601355002, - "c3": -2.4692793318618342, - "c4": 6.896450671361283, - "c5": 4.583551480107172, - "c6": 17.66378434282243, - "c7": 15.329160180666946 + "points": { + "c1": 7.141055287746127, + "c2": 4.514845096396819, + "c3": -3.795482330117107, + "c4": -21.205813538475898, + "c5": -21.78839950307469, + "c6": 6.007486731559737, + "c7": 8.300877102089878 }, - "vertexSeeds": { - "c1": 5.9418309774483475, - "c2": 5.697846019346667, - "c3": 6.607929645164794, - "c4": 5.630678750394747, - "c5": 6.275183406560203, - "c6": 6.01830628530431, - "c7": 6.2647512203484625 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.04160887656033, + "c3": 8.368007397133608, + "c4": 6.694405917706892, + "c5": 5.02080443828017, + "c6": 3.347202958853446, + "c7": 1.673601479426723 }, "rgb": [238, 201, 159] }, @@ -62322,23 +62322,23 @@ "year": 1717, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -29.26577128065883, - "c2": -18.841923449931617, - "c3": -10.649036078925754, - "c4": 29.218864874878314, - "c5": 6.732495165707718, - "c6": 23.54299739858557, - "c7": -12.958479629795487 + "points": { + "c1": 24.455555507474017, + "c2": 4.990001600081008, + "c3": 18.057001338375564, + "c4": -30.63505408965493, + "c5": 31.906464478705665, + "c6": 27.31519848883014, + "c7": 8.466007300155518 }, - "vertexSeeds": { - "c1": 1.8358556982943743, - "c2": 1.8029238426020857, - "c3": 1.9306649635223851, - "c4": 1.937173827691583, - "c5": 1.8372710662144105, - "c6": 1.7749665310271843, - "c7": 1.8324701858398322 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.801664355062413, + "c3": 2.3347202958853432, + "c4": 1.8677762367082773, + "c5": 1.400832177531208, + "c6": 0.9338881183541387, + "c7": 0.4669440591770693 }, "rgb": [86, 146, 138] }, @@ -62349,23 +62349,23 @@ "year": 1717, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -8.408321183225063, - "c2": 5.774735455207999, - "c3": -25.53314920479437, - "c4": -19.077205140716092, - "c5": 2.4825712159745734, - "c6": -2.4552328309963407, - "c7": -15.157832745164184 + "points": { + "c1": -16.55602998597213, + "c2": -24.047268718564993, + "c3": 25.871588632090177, + "c4": 4.371436262998092, + "c5": 9.613538674164378, + "c6": -16.359538897422183, + "c7": 9.428424683334331 }, - "vertexSeeds": { - "c1": 5.670809114671672, - "c2": 5.62249949899227, - "c3": 5.688576696082433, - "c4": 5.644597232671421, - "c5": 5.606191888901458, - "c6": 5.590694910236736, - "c7": 5.523088350548929 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825252, + "c3": 6.7961165048543855, + "c4": 5.436893203883521, + "c5": 4.077669902912596, + "c6": 2.7184466019417304, + "c7": 1.3592233009708652 }, "rgb": [86, 146, 138] }, @@ -62376,23 +62376,23 @@ "year": 1717, "resistanceReported": true, "duration": 18489600, - "curveSeeds": { - "c1": -22.616776201069687, - "c2": -6.877606486901932, - "c3": -15.401216368590987, - "c4": 9.415282037906973, - "c5": -23.442549828603845, - "c6": -27.469876228720643, - "c7": 21.639054463289565 + "points": { + "c1": -18.304470315696424, + "c2": -5.426796418528664, + "c3": 10.635061174581239, + "c4": -18.927568973577998, + "c5": -25.4405647438631, + "c6": 11.056314311874274, + "c7": 22.337048750800143 }, - "vertexSeeds": { - "c1": 2.7280608333425227, - "c2": 2.721785454426807, - "c3": 2.9581911427557266, - "c4": 2.9018646844860965, - "c5": 2.7371095956707925, - "c6": 3.077046908945975, - "c7": 2.7330756903302467 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435507, + "c3": 3.6985668053629226, + "c4": 2.958853444290338, + "c5": 2.2191400832177535, + "c6": 1.479426722145169, + "c7": 0.7397133610725845 }, "rgb": [86, 146, 138] }, @@ -62403,23 +62403,23 @@ "year": 1717, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 10.310971388192755, - "c2": 35.53618190017609, - "c3": 23.41127683127079, - "c4": 20.132478536098482, - "c5": -35.66622470642169, - "c6": -29.718159953870895, - "c7": 28.962574330517825 + "points": { + "c1": 12.713657168615875, + "c2": 6.66180623978498, + "c3": 35.99598964218052, + "c4": 2.038731088685914, + "c5": 7.233542824809938, + "c6": -33.57572600173549, + "c7": 7.087889621793082 }, - "vertexSeeds": { - "c1": 3.477652830406906, - "c2": 3.4978483874318997, - "c3": 3.5284045293823394, - "c4": 3.4641185769558844, - "c5": 3.465963431490595, - "c6": 3.5248861147507773, - "c7": 3.5291797370361735 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360592, + "c3": 4.230235783633848, + "c4": 3.3841886269070613, + "c5": 2.5381414701803173, + "c6": 1.6920943134535307, + "c7": 0.8460471567267444 }, "rgb": [77, 76, 132] }, @@ -62430,23 +62430,23 @@ "year": 1717, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -22.756980597095563, - "c2": -3.7481651508803573, - "c3": 0.008455803573877319, - "c4": 3.502108415689438, - "c5": -0.26729286356084003, - "c6": -22.485606821763852, - "c7": 11.801470398804355 + "points": { + "c1": 18.106881851285458, + "c2": -26.09193654372482, + "c3": 0.5453255947391042, + "c4": 11.146403384333475, + "c5": 7.668753546912157, + "c6": 10.919561191862293, + "c7": 6.366291600403358 }, - "vertexSeeds": { - "c1": 1.45480809402746, - "c2": 1.611428206897951, - "c3": 1.6940623712146414, - "c4": 1.4780899448608587, - "c5": 1.4842997060296175, - "c6": 1.5280268066926874, - "c7": 1.49823047226566 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.5242718446601944, + "c3": 2.1035598705501606, + "c4": 1.682847896440129, + "c5": 1.2621359223300972, + "c6": 0.8414239482200656, + "c7": 0.4207119741100317 }, "rgb": [58, 15, 49] }, @@ -62457,23 +62457,23 @@ "year": 1717, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -3.3147570911725452, - "c2": -24.28721310042078, - "c3": 21.146317844358343, - "c4": -36.89612538437157, - "c5": -5.735798856565342, - "c6": 31.571000138285825, - "c7": -30.61408731553283 + "points": { + "c1": 29.532959655920152, + "c2": -10.029047617716532, + "c3": -33.0477546602409, + "c4": 22.637556645665796, + "c5": -27.070321340911793, + "c6": 24.326230661806733, + "c7": -16.266957417404218 }, - "vertexSeeds": { - "c1": 6.933538875018526, - "c2": 6.6401929207144015, - "c3": 6.633118341975659, - "c4": 6.348048905669869, - "c5": 6.136263649487744, - "c6": 6.638347454580831, - "c7": 6.671017127402684 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479886, + "c3": 8.32177531206658, + "c4": 6.657420249653262, + "c5": 4.993065187239943, + "c6": 3.3287101248266366, + "c7": 1.6643550624133183 }, "rgb": [86, 146, 138] }, @@ -62484,23 +62484,23 @@ "year": 1717, "resistanceReported": false, "duration": 3542400, - "curveSeeds": { - "c1": 13.27913344942848, - "c2": 6.446800224451236, - "c3": -11.245891481027144, - "c4": -5.705968558677206, - "c5": -8.29120191951473, - "c6": -4.039319860736587, - "c7": -3.6739040333970845 + "points": { + "c1": 0.5103841463813179, + "c2": 12.473448526086207, + "c3": 1.606278427541417, + "c4": 7.830862332058279, + "c5": 14.957205510550574, + "c6": -11.528644049154392, + "c7": 3.70572894089487 }, - "vertexSeeds": { - "c1": 4.174956192043148, - "c2": 4.412279240804274, - "c3": 3.8152214091286525, - "c4": 3.8552484594592658, - "c5": 3.9359950050752817, - "c6": 4.246104992993093, - "c7": 4.380534787937576 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [238, 201, 159] }, @@ -62511,23 +62511,23 @@ "year": 1717, "resistanceReported": false, "duration": 1900800, - "curveSeeds": { - "c1": 1.0709486600352136, - "c2": 8.961337063553568, - "c3": -0.7500462303203328, - "c4": -7.045050038260548, - "c5": 5.183392708336584, - "c6": -10.397907800149365, - "c7": 10.88769074595594 + "points": { + "c1": 9.3552388967028, + "c2": -9.287614482795295, + "c3": -4.2980952041010845, + "c4": 13.145593973640466, + "c5": -3.3817130230221526, + "c6": 7.985682666001381, + "c7": 7.107410494398344 }, - "vertexSeeds": { - "c1": 4.158029661356598, - "c2": 4.4701491243553155, - "c3": 4.156477855658741, - "c4": 3.95945253360692, - "c5": 4.481179662272503, - "c6": 3.9017363034103383, - "c7": 3.722169026825639 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -62538,23 +62538,23 @@ "year": 1717, "resistanceReported": true, "duration": 21686400, - "curveSeeds": { - "c1": -14.940117427010676, - "c2": 15.13683329369708, - "c3": 29.335142194619436, - "c4": 0.14583087360939828, - "c5": 20.826131919817882, - "c6": 13.615359098171766, - "c7": 25.89568067173706 + "points": { + "c1": -7.12785157275334, + "c2": 20.79691088295749, + "c3": -5.738946209855513, + "c4": 13.571399912431701, + "c5": 7.650965809859322, + "c6": 2.998563213867662, + "c7": 13.718055420998859 }, - "vertexSeeds": { - "c1": 1.1206866053477038, - "c2": 1.323503688238439, - "c3": 0.5597909793760247, - "c4": 0.9253599941294364, - "c5": 0.6014172566432182, - "c6": 1.4536478762176281, - "c7": 1.3973637103852998 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.2746185852981973, + "c3": 1.8955154877484974, + "c4": 1.5164123901987978, + "c5": 1.1373092926490986, + "c6": 0.7582061950993992, + "c7": 0.3791030975496996 }, "rgb": [77, 76, 132] }, @@ -62565,23 +62565,23 @@ "year": 1717, "resistanceReported": false, "duration": 864000, - "curveSeeds": { - "c1": 7.470649717724951, - "c2": -1.9000921492118525, - "c3": -8.0167127280229, - "c4": -6.649848552133752, - "c5": 2.838784275315666, - "c6": -1.6913246612786654, - "c7": 3.957204360548383 + "points": { + "c1": 9.684453760960436, + "c2": -9.882616841602072, + "c3": 7.437643648095465, + "c4": -8.791594325778306, + "c5": -0.7141773616316751, + "c6": -7.433029628704047, + "c7": 11.81476397002674 }, - "vertexSeeds": { - "c1": 4.404202222948442, - "c2": 3.816183421556391, - "c3": 4.155903881291476, - "c4": 3.910221115286991, - "c5": 4.070450057517325, - "c6": 3.7114723775139282, - "c7": 4.434873249625256 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -62592,23 +62592,23 @@ "year": 1717, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -4.999183129202475, - "c2": 28.088505336853192, - "c3": -31.50264464779585, - "c4": -28.85629724427618, - "c5": 16.76574145456669, - "c6": -30.811149098863055, - "c7": 2.5784949544582894 + "points": { + "c1": 10.233742711603483, + "c2": -21.934620901193185, + "c3": -21.96138277208097, + "c4": 19.04650146556095, + "c5": 30.148726069989905, + "c6": -5.58840558122321, + "c7": 9.609527133008832 }, - "vertexSeeds": { - "c1": 9.885112110051988, - "c2": 9.555600401736452, - "c3": 9.76745912955797, - "c4": 10.120947449064797, - "c5": 9.943112480546505, - "c6": 9.558742665714453, - "c7": 9.546616250871294 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.507628294036039, + "c3": 12.08969024503006, + "c4": 9.671752196024052, + "c5": 7.253814147018045, + "c6": 4.835876098012013, + "c7": 2.4179380490060063 }, "rgb": [58, 15, 49] }, @@ -62619,23 +62619,23 @@ "year": 1717, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -22.671204221930957, - "c2": -26.186495099617886, - "c3": 13.955809777246134, - "c4": 7.71159363923088, - "c5": 21.653421862814813, - "c6": 0.14261595157667273, - "c7": -16.96845713477506 + "points": { + "c1": 10.447892775713438, + "c2": 25.902577391808155, + "c3": -15.431166550330705, + "c4": -10.618567471939016, + "c5": 7.590057737435533, + "c6": 24.657506380782817, + "c7": 2.9352605066838215 }, - "vertexSeeds": { - "c1": 5.921716055583023, - "c2": 5.410807218010313, - "c3": 5.4099126580685715, - "c4": 5.919782376663031, - "c5": 5.948604913304678, - "c6": 5.911828441192064, - "c7": 5.9207215531422435 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390654, + "c4": 5.732778548312527, + "c5": 4.299583911234399, + "c6": 2.8663892741562544, + "c7": 1.4331946370781272 }, "rgb": [58, 15, 49] }, @@ -62646,23 +62646,23 @@ "year": 1717, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -1.9267459408998775, - "c2": -23.62606816920274, - "c3": -3.571709465731889, - "c4": -10.562349807370593, - "c5": -15.716372133016812, - "c6": 9.927208073443445, - "c7": -9.600348364276202 + "points": { + "c1": -8.856799671227876, + "c2": -1.736026599751959, + "c3": 12.96718335958284, + "c4": 4.759019868421738, + "c5": -2.2836135559428534, + "c6": 6.960370437752708, + "c7": 11.026136921135283 }, - "vertexSeeds": { - "c1": 8.276695353459758, - "c2": 8.69816866927949, - "c3": 8.580339199119756, - "c4": 9.117115046627935, - "c5": 9.129610150756438, - "c6": 8.20248365237532, - "c7": 8.57014225772004 + "offsets": { + "c1": 15.436893203883495, + "c2": 13.231622746185847, + "c3": 11.026352288488212, + "c4": 8.821081830790565, + "c5": 6.615811373092916, + "c6": 4.410540915395282, + "c7": 2.205270457697633 }, "rgb": [86, 146, 138] }, @@ -62673,23 +62673,23 @@ "year": 1717, "resistanceReported": false, "duration": 1036800, - "curveSeeds": { - "c1": -2.59865525231549, - "c2": -2.0055718358681087, - "c3": 2.248835331766081, - "c4": 2.5349582187209876, - "c5": 6.906672765676776, - "c6": -9.41330419736786, - "c7": -7.9051467266600035 + "points": { + "c1": 4.438429115578819, + "c2": 12.62532221756903, + "c3": 7.3410824337123675, + "c4": -6.365955389757487, + "c5": 6.462400688444857, + "c6": -9.442653036970476, + "c7": -12.522947712968623 }, - "vertexSeeds": { - "c1": 2.8253269518904114, - "c2": 2.5310343319180797, - "c3": 2.8759191943720706, - "c4": 2.8242895186750725, - "c5": 2.866563869272177, - "c6": 2.842780552904646, - "c7": 2.6856541944827486 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033289, + "c3": 3.467406380027738, + "c4": 2.7739251040221933, + "c5": 2.0804438280166417, + "c6": 1.3869625520110966, + "c7": 0.6934812760055514 }, "rgb": [222, 0, 59] }, @@ -62700,23 +62700,23 @@ "year": 1718, "resistanceReported": false, "duration": 43977600, - "curveSeeds": { - "c1": 32.24804307921915, - "c2": -5.586589539680922, - "c3": 7.8024142298215295, - "c4": 2.3317959268106563, - "c5": 1.793216112520632, - "c6": -7.2740336957279155, - "c7": -23.01094143908321 + "points": { + "c1": -16.104296084569754, + "c2": -28.099837568899147, + "c3": 36.02512977075734, + "c4": -32.531685062493096, + "c5": 12.77514995182613, + "c6": -4.852345991263071, + "c7": -15.953678143549958 }, - "vertexSeeds": { - "c1": 3.8146527596050563, - "c2": 4.033634301818328, - "c3": 4.15501810361893, - "c4": 3.5999614436741174, - "c5": 3.7342551635217798, - "c6": 3.971606099625746, - "c7": 3.55168420564964 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889043, + "c3": 5.108645399907535, + "c4": 4.0869163199260266, + "c5": 3.0651872399445232, + "c6": 2.043458159963016, + "c7": 1.021729079981508 }, "rgb": [222, 0, 59] }, @@ -62727,23 +62727,23 @@ "year": 1718, "resistanceReported": false, "duration": 58752000, - "curveSeeds": { - "c1": 8.850698020771588, - "c2": -12.162741810982148, - "c3": 50.09215258732341, - "c4": 38.13960122214566, - "c5": 7.827200602476211, - "c6": 32.7993470918545, - "c7": 29.037896861972385 + "points": { + "c1": -36.24755190941561, + "c2": 1.9165479346322059, + "c3": 9.251456737374028, + "c4": 36.65726555318567, + "c5": 65.5572245456623, + "c6": 4.268263858116441, + "c7": 53.30983037335646 }, - "vertexSeeds": { - "c1": 4.7991584109133925, - "c2": 5.068044260068763, - "c3": 4.788851188833625, - "c4": 4.3843683406040155, - "c5": 5.084628947858991, - "c6": 4.242318227949916, - "c7": 4.225375398887539 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739254, + "c3": 6.171983356449378, + "c4": 4.937586685159499, + "c5": 3.703190013869627, + "c6": 2.4687933425797546, + "c7": 1.2343966712898773 }, "rgb": [222, 0, 59] }, @@ -62754,23 +62754,23 @@ "year": 1718, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -39.74331271719738, - "c2": -30.572808343083537, - "c3": 37.776522588889115, - "c4": 19.63388985091934, - "c5": -25.728364074808663, - "c6": -42.216212980485516, - "c7": -33.25016567892965 + "points": { + "c1": -5.212326045139427, + "c2": -31.012256917126287, + "c3": 36.13489249100059, + "c4": -14.333046755824434, + "c5": -44.329376557765656, + "c6": 30.083134218160318, + "c7": -5.040807388096518 }, - "vertexSeeds": { - "c1": 1.3635870160091899, - "c2": 1.360458840573305, - "c3": 1.5027962689123686, - "c4": 1.5090939393274758, - "c5": 1.3430866864288664, - "c6": 1.4331226483078954, - "c7": 1.3395866219118866 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257976, + "c3": 1.872399445214978, + "c4": 1.4979195561719831, + "c5": 1.123439667128988, + "c6": 0.748959778085993, + "c7": 0.37447988904299495 }, "rgb": [77, 76, 132] }, @@ -62781,23 +62781,23 @@ "year": 1717, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -12.460988644367063, - "c2": 23.29252621741111, - "c3": 14.458033329750243, - "c4": -23.405845940564774, - "c5": -17.64752465576894, - "c6": -15.233453019567385, - "c7": -16.82685912974779 + "points": { + "c1": -13.944684302240582, + "c2": -7.817062561049326, + "c3": -10.040013692911241, + "c4": 30.559258762428776, + "c5": 8.53633674176563, + "c6": 19.644460875784787, + "c7": -22.330392860441524 }, - "vertexSeeds": { - "c1": 2.099368579423225, - "c2": 2.093431378790716, - "c3": 2.211181453882512, - "c4": 1.9733590533627896, - "c5": 2.0609208100556553, - "c6": 2.050536873644493, - "c7": 1.9578276070350176 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705966, + "c3": 2.704576976421637, + "c4": 2.1636615811373083, + "c5": 1.622746185852983, + "c6": 1.0818307905686573, + "c7": 0.5409153952843286 }, "rgb": [58, 15, 49] }, @@ -62808,23 +62808,23 @@ "year": 1717, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -31.430016463000268, - "c2": 27.669942184400853, - "c3": 5.805132571648649, - "c4": -30.967966563038836, - "c5": -28.180247154223423, - "c6": 16.28337762895552, - "c7": 3.7791003869612325 + "points": { + "c1": 7.548100973899118, + "c2": -32.711523993029076, + "c3": -4.68265619615871, + "c4": 4.373719316359264, + "c5": -5.603666506917968, + "c6": -26.858056098198876, + "c7": 33.546703827320684 }, - "vertexSeeds": { - "c1": 3.8665803108808294, - "c2": 3.8665803108808294, - "c3": 3.8665803108808294, - "c4": 3.8665803108808294, - "c5": 3.8665803108808294, - "c6": 3.8665803108808294, - "c7": 3.8665803108808294 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -62835,23 +62835,23 @@ "year": 1718, "resistanceReported": false, "duration": 41212800, - "curveSeeds": { - "c1": -41.344828668214554, - "c2": 36.00148422319254, - "c3": 11.367408029498186, - "c4": 32.93722968699816, - "c5": 21.124796150806354, - "c6": -3.0016783862380407, - "c7": -21.82066545638918 + "points": { + "c1": -48.48412159988033, + "c2": 12.149573668220036, + "c3": 32.95566272234495, + "c4": -44.352532271734674, + "c5": 17.45435987526492, + "c6": -48.319315513150116, + "c7": -23.593383752864156 }, - "vertexSeeds": { - "c1": 7.12857717754662, - "c2": 6.99478560082878, - "c3": 7.846613777127214, - "c4": 7.297820919375596, - "c5": 7.584005511817066, - "c6": 6.981388729875394, - "c7": 7.407431614370291 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330092, + "c3": 9.38511326860842, + "c4": 7.508090614886734, + "c5": 5.631067961165046, + "c6": 3.754045307443374, + "c7": 1.877022653721687 }, "rgb": [77, 76, 132] }, @@ -62862,23 +62862,23 @@ "year": 1717, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 18.150926531905327, - "c2": -31.353227155431746, - "c3": -3.4170288734911196, - "c4": -7.955995432624395, - "c5": -0.14622151692704222, - "c6": -33.05170183037099, - "c7": 13.09683958688089 + "points": { + "c1": 37.0073985021803, + "c2": -27.456837501332604, + "c3": 39.588863423160866, + "c4": 11.84679564705175, + "c5": -24.308306164232075, + "c6": 11.348869159699362, + "c7": 22.66483338319768 }, - "vertexSeeds": { - "c1": 6.136414193634359, - "c2": 6.035285209838676, - "c3": 6.162679217077054, - "c4": 6.0801195870323985, - "c5": 6.045077331156787, - "c6": 6.243173983126518, - "c7": 5.9367238741508785 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991669, + "c3": 7.4664817383264, + "c4": 5.973185390661112, + "c5": 4.479889042995844, + "c6": 2.986592695330556, + "c7": 1.4932963476652885 }, "rgb": [238, 201, 159] }, @@ -62889,23 +62889,23 @@ "year": 1717, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -17.91673619426733, - "c2": -4.445962748716745, - "c3": -4.250859021035414, - "c4": -3.049956366949587, - "c5": -21.535255098190557, - "c6": 14.276408502819287, - "c7": 28.110793679741803 + "points": { + "c1": 27.069270606777152, + "c2": 19.015865855431784, + "c3": -4.940326365840896, + "c4": -2.508924659717131, + "c5": -9.251695230773908, + "c6": -22.283693591928415, + "c7": -15.789211403311153 }, - "vertexSeeds": { - "c1": 1.0908034933859254, - "c2": 1.136423223951161, - "c3": 1.2301964065515796, - "c4": 1.1329208183797814, - "c5": 1.0820387605553687, - "c6": 1.1723427250759666, - "c7": 1.1797602413762456 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144236, + "c3": 1.5025427646786873, + "c4": 1.2020342117429492, + "c5": 0.9015256588072127, + "c6": 0.6010171058714746, + "c7": 0.3005085529357381 }, "rgb": [86, 146, 138] }, @@ -62916,23 +62916,23 @@ "year": 1717, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 27.06924084067299, - "c2": 26.251127898440252, - "c3": -30.607520224038133, - "c4": 24.78983515968625, - "c5": 21.450807371900922, - "c6": -6.870014834375567, - "c7": -30.69217290749757 + "points": { + "c1": -26.303920926766523, + "c2": 22.648971792762403, + "c3": 3.6128090822654784, + "c4": 21.562957091921824, + "c5": 19.295900685472965, + "c6": -12.160821171899702, + "c7": -17.321567934064028 }, - "vertexSeeds": { - "c1": 7.510239932872356, - "c2": 7.71906747762925, - "c3": 7.545244159646979, - "c4": 6.587497171337062, - "c5": 7.682087424939346, - "c6": 7.75101339017186, - "c7": 7.639103381657566 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054093, + "c3": 9.801202034211746, + "c4": 7.840961627369399, + "c5": 5.880721220527041, + "c6": 3.9204808136846947, + "c7": 1.9602404068423473 }, "rgb": [58, 15, 49] }, @@ -62943,23 +62943,23 @@ "year": 1717, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -27.940438666660683, - "c2": -20.237805570422854, - "c3": 4.082538055228476, - "c4": 28.6954846153711, - "c5": 14.823252531327334, - "c6": -39.139969157941394, - "c7": 11.368211365799901 + "points": { + "c1": 13.306232453313292, + "c2": 38.0452911500866, + "c3": 35.48719331686722, + "c4": 20.94475710581856, + "c5": 19.168387464622192, + "c6": -21.322538582827775, + "c7": -33.071210656225674 }, - "vertexSeeds": { - "c1": 11.750789123902193, - "c2": 13.175674587702282, - "c3": 12.397611846402445, - "c4": 12.864069921663972, - "c5": 13.423846976083384, - "c6": 12.436162868502361, - "c7": 11.756288040733038 + "offsets": { + "c1": 22.7831715210356, + "c2": 19.52843273231623, + "c3": 16.273693943596857, + "c4": 13.018955154877485, + "c5": 9.764216366158115, + "c6": 6.509477577438743, + "c7": 3.2547387887193713 }, "rgb": [238, 201, 159] }, @@ -62970,23 +62970,23 @@ "year": 1718, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -11.386602528460894, - "c2": 12.095952328887115, - "c3": 3.5801253599904115, - "c4": 22.277756484330617, - "c5": -17.816117605250135, - "c6": -0.2556432510144546, - "c7": -18.365371451944597 + "points": { + "c1": 17.959602881954382, + "c2": -13.687592311646377, + "c3": 13.195996792554048, + "c4": -3.766561487316487, + "c5": -19.957621295613187, + "c6": -14.995208719035286, + "c7": -17.72553559298704 }, - "vertexSeeds": { - "c1": 2.079244039272272, - "c2": 2.0851606776911025, - "c3": 2.212551653149408, - "c4": 2.0393763754388954, - "c5": 2.1909553236423287, - "c6": 2.132579560393923, - "c7": 2.200491644898107 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551547, + "c4": 2.1821544151641237, + "c5": 1.6366158113730929, + "c6": 1.0910772075820618, + "c7": 0.5455386037910309 }, "rgb": [86, 146, 138] }, @@ -62997,23 +62997,23 @@ "year": 1718, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -38.575867970263275, - "c2": 38.028132064497846, - "c3": -6.657771269394786, - "c4": -18.86213829943101, - "c5": 7.9574872348327474, - "c6": -26.859879632132326, - "c7": 12.26109694643521 + "points": { + "c1": 17.21220303268673, + "c2": 5.981785549691992, + "c3": -30.515699060339465, + "c4": -22.651183034119715, + "c5": -40.12679315928822, + "c6": -34.08124065654587, + "c7": 12.537609401766026 }, - "vertexSeeds": { - "c1": 6.305939695770556, - "c2": 6.519780539619774, - "c3": 6.940453154513303, - "c4": 6.578904457889717, - "c5": 6.852362717459982, - "c6": 6.705868966536073, - "c7": 6.416850560878501 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760055, + "c3": 8.391123439667131, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.3564493758668497, + "c7": 1.6782246879334186 }, "rgb": [222, 0, 59] }, @@ -63024,23 +63024,23 @@ "year": 1718, "resistanceReported": false, "duration": 45187200, - "curveSeeds": { - "c1": 50.602278250770716, - "c2": 0.31524577499016004, - "c3": 30.312446568799892, - "c4": -15.252569390474115, - "c5": -39.44257081505194, - "c6": -45.81010878136868, - "c7": -31.193487566977264 + "points": { + "c1": -30.64864378764808, + "c2": 25.2815617942667, + "c3": 32.26443379215652, + "c4": 20.800134704640435, + "c5": 17.654187546654732, + "c6": 50.3716251321919, + "c7": 58.867315295465865 }, - "vertexSeeds": { - "c1": 2.0238005823072918, - "c2": 1.9961534850717844, - "c3": 2.101896435211066, - "c4": 2.1815715709097807, - "c5": 2.155768930303998, - "c6": 2.088204312243645, - "c7": 2.123159061597136 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.1900138696255205, + "c3": 2.6583448913546004, + "c4": 2.1266759130836803, + "c5": 1.5950069348127602, + "c6": 1.0633379565418402, + "c7": 0.5316689782709201 }, "rgb": [222, 0, 59] }, @@ -63051,23 +63051,23 @@ "year": 1718, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -38.77575690004507, - "c2": 42.1938944543996, - "c3": 8.193713639731357, - "c4": 39.96564915524354, - "c5": 21.90668303991538, - "c6": 15.619066578202798, - "c7": -4.310274380333745 + "points": { + "c1": -42.44951140261368, + "c2": 32.56399068439153, + "c3": -45.15934210757133, + "c4": -40.15941125484264, + "c5": -11.51513354945159, + "c6": -45.87245809895987, + "c7": -19.2138999657161 }, - "vertexSeeds": { - "c1": 3.290726101816232, - "c2": 3.5594497866746773, - "c3": 3.0589851157478054, - "c4": 3.591149852798778, - "c5": 3.1762644723581963, - "c6": 3.111097674474356, - "c7": 3.5795539827105816 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601944, + "c3": 4.36893203883495, + "c4": 3.495145631067963, + "c5": 2.6213592233009693, + "c6": 1.7475728155339816, + "c7": 0.8737864077669879 }, "rgb": [77, 76, 132] }, @@ -63078,23 +63078,23 @@ "year": 1717, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 11.450881654984883, - "c2": 24.478616551546004, - "c3": 21.285184359771556, - "c4": 27.855406849560595, - "c5": 8.303716044780295, - "c6": -9.702064895760316, - "c7": 24.06799069890627 + "points": { + "c1": -35.83883075565518, + "c2": -29.920088618225584, + "c3": -31.48565014114084, + "c4": -14.973123468698436, + "c5": 0.14686951782716307, + "c6": -20.495233043928742, + "c7": 28.410612034360177 }, - "vertexSeeds": { - "c1": 5.783309796936665, - "c2": 6.242665704742079, - "c3": 5.1438012645074025, - "c4": 5.594597929930209, - "c5": 5.309522307053494, - "c6": 5.2252812745836215, - "c7": 5.842905824693371 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273228, + "c3": 7.628294036061029, + "c4": 6.102635228848821, + "c5": 4.576976421636614, + "c6": 3.0513176144244065, + "c7": 1.5256588072122077 }, "rgb": [86, 146, 138] }, @@ -63105,23 +63105,23 @@ "year": 1717, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -20.619214785998558, - "c2": 24.118644450756435, - "c3": 9.70769083035134, - "c4": 17.65772386243981, - "c5": -0.48128809776197556, - "c6": -13.039961798800803, - "c7": 30.086362108973823 + "points": { + "c1": 20.20549379535901, + "c2": -5.849914129134319, + "c3": -19.37822070294091, + "c4": 2.893808239851218, + "c5": -35.189068535426145, + "c6": 25.048281781388376, + "c7": 24.25913172699797 }, - "vertexSeeds": { - "c1": 9.701092014707946, - "c2": 9.494084862287329, - "c3": 8.86652258440515, - "c4": 9.899350059051898, - "c5": 9.063747969630505, - "c6": 9.64028644628158, - "c7": 9.88025035943883 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754507, + "c3": 11.927877947295423, + "c4": 9.542302357836338, + "c5": 7.156726768377253, + "c6": 4.771151178918169, + "c7": 2.3855755894590844 }, "rgb": [238, 201, 159] }, @@ -63132,23 +63132,23 @@ "year": 1718, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 18.458717791907006, - "c2": 10.622159742188863, - "c3": 1.9502364818751516, - "c4": 16.88103133291247, - "c5": 43.702870890189374, - "c6": 9.347844296556701, - "c7": 1.0298477951567548 + "points": { + "c1": 23.729357122656765, + "c2": -32.73233993605196, + "c3": 29.36445030068836, + "c4": -18.40404068498553, + "c5": -47.261016152330484, + "c6": 10.83107885671815, + "c7": 13.976147422040299 }, - "vertexSeeds": { - "c1": 6.308328980402456, - "c2": 6.672496093657431, - "c3": 6.448768932207637, - "c4": 6.685698865383345, - "c5": 6.509166006740902, - "c6": 6.101330897989627, - "c7": 6.489141696948475 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680998, + "c3": 8.437355524734162, + "c4": 6.749884419787329, + "c5": 5.062413314840494, + "c6": 3.37494220989366, + "c7": 1.6874711049468258 }, "rgb": [238, 201, 159] }, @@ -63159,23 +63159,23 @@ "year": 1718, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 2.1659797541558206, - "c2": -10.048661541830207, - "c3": 39.528633214532626, - "c4": 3.1377858115728543, - "c5": 23.069628081955834, - "c6": 5.654647358492866, - "c7": -4.835121940335519 + "points": { + "c1": -15.908641288630125, + "c2": 7.176945069094813, + "c3": -43.63996999404913, + "c4": -30.132983534481706, + "c5": 4.088136807815999, + "c6": 16.49931746339297, + "c7": 34.40905565221899 }, - "vertexSeeds": { - "c1": 2.0403292221337046, - "c2": 1.9234995848854797, - "c3": 1.8490016324551763, - "c4": 1.7763059761537043, - "c5": 1.7991616337737817, - "c6": 1.7494701396687122, - "c7": 2.0853342526572227 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841886, + "c3": 2.519648636153491, + "c4": 2.015718908922793, + "c5": 1.511789181692093, + "c6": 1.0078594544613955, + "c7": 0.5039297272306977 }, "rgb": [222, 0, 59] }, @@ -63186,23 +63186,23 @@ "year": 1718, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 35.93927807247627, - "c2": -26.706239924527093, - "c3": -9.235351683463175, - "c4": 9.007926935013352, - "c5": 10.976275997377677, - "c6": 36.53008938270851, - "c7": -33.12787129157174 + "points": { + "c1": 17.854303557851658, + "c2": -28.08619505993329, + "c3": -2.950674463477327, + "c4": -29.275685116110687, + "c5": -7.375859988389738, + "c6": 14.711296660360986, + "c7": 3.13276766783202 }, - "vertexSeeds": { - "c1": 2.8046893497700003, - "c2": 2.595513260335704, - "c3": 2.837005378680404, - "c4": 2.4900401846311966, - "c5": 2.590285906737217, - "c6": 2.6461347722200483, - "c7": 2.7575715609378046 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033289, + "c3": 3.467406380027738, + "c4": 2.7739251040221933, + "c5": 2.0804438280166417, + "c6": 1.3869625520110966, + "c7": 0.6934812760055514 }, "rgb": [222, 0, 59] }, @@ -63213,23 +63213,23 @@ "year": 1719, "resistanceReported": true, "duration": 76118400, - "curveSeeds": { - "c1": -26.955162397689918, - "c2": -49.02372683718991, - "c3": -2.433924255076974, - "c4": -92.30792778120708, - "c5": -3.9486232503518863, - "c6": 23.193074076084997, - "c7": -59.380135527904685 + "points": { + "c1": 37.11144104461245, + "c2": -71.90805556696839, + "c3": 49.78441421707244, + "c4": 48.11511874244137, + "c5": -38.955383817443035, + "c6": 17.45377559434199, + "c7": -23.15550279497336 }, - "vertexSeeds": { - "c1": 8.719362435923005, - "c2": 9.389179887338997, - "c3": 8.20887519117108, - "c4": 8.493009757800857, - "c5": 7.872562130435397, - "c6": 7.560651245071262, - "c7": 11.21903614242217 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133148, + "c3": 13.869625520110958, + "c4": 11.095700416088764, + "c5": 8.321775312066569, + "c6": 5.54785020804438, + "c7": 2.77392510402219 }, "rgb": [222, 0, 59] }, @@ -63240,23 +63240,23 @@ "year": 1718, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": -21.564927247169198, - "c2": 3.111177987254841, - "c3": -30.98458851815527, - "c4": -36.164462135217235, - "c5": 13.72592097602854, - "c6": 28.869815383320415, - "c7": -12.761020348254341 + "points": { + "c1": -3.6439187170987424, + "c2": -19.169256860723827, + "c3": 29.919158380971126, + "c4": -21.977551576382126, + "c5": -28.07929387749705, + "c6": -44.361596787024716, + "c7": 6.370450306230246 }, - "vertexSeeds": { - "c1": 8.763500965080862, - "c2": 8.558366366383677, - "c3": 9.436894007229526, - "c4": 9.447566940313104, - "c5": 9.260579094446076, - "c6": 9.386859395102842, - "c7": 9.13464105283436 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748956, + "c3": 11.349976883957472, + "c4": 9.079981507165975, + "c5": 6.809986130374478, + "c6": 4.539990753582981, + "c7": 2.2699953767914973 }, "rgb": [58, 15, 49] }, @@ -63267,23 +63267,23 @@ "year": 1717, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -16.415224446700897, - "c2": -32.60011058411113, - "c3": 12.612725794707927, - "c4": -13.02561048244958, - "c5": -11.428935032001053, - "c6": 13.449877232695414, - "c7": 32.481835368111575 + "points": { + "c1": 33.686190148616404, + "c2": -4.2383266847410255, + "c3": -29.952718709783465, + "c4": 30.152847219945514, + "c5": -3.4497882487196065, + "c6": 20.623047175160885, + "c7": -11.27717286560831 }, - "vertexSeeds": { - "c1": 3.73039033416432, - "c2": 3.755300596758219, - "c3": 3.696626861958995, - "c4": 3.625443433221667, - "c5": 3.7238513674035145, - "c6": 3.7712924965652563, - "c7": 3.5004970645983846 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703649, + "c4": 3.6985668053629177, + "c5": 2.773925104022195, + "c6": 1.8492834026814635, + "c7": 0.9246417013407318 }, "rgb": [238, 201, 159] }, @@ -63294,23 +63294,23 @@ "year": 1717, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": -5.426067854081541, - "c2": -18.067420517732394, - "c3": 10.60209352815545, - "c4": 19.087774047286068, - "c5": 20.326375228362416, - "c6": 8.498418970339387, - "c7": 1.9610166924738088 + "points": { + "c1": -11.31966420534799, + "c2": -20.22177285936196, + "c3": -19.224575784191835, + "c4": 6.730455278272228, + "c5": 2.8058716044149783, + "c6": -19.564508461764817, + "c7": -20.24118244605561 }, - "vertexSeeds": { - "c1": 0.3434191555675601, - "c2": 0.32672121985753105, - "c3": 0.32366578866908713, - "c4": 0.3231893769860569, - "c5": 0.3356703914351449, - "c6": 0.33091385181042765, - "c7": 0.31901356971299066 + "offsets": { + "c1": 0.6148867313915858, + "c2": 0.5270457697642168, + "c3": 0.43920480813684687, + "c4": 0.35136384650947794, + "c5": 0.26352288488210784, + "c6": 0.17568192325473897, + "c7": 0.08784096162737003 }, "rgb": [238, 201, 159] }, @@ -63321,23 +63321,23 @@ "year": 1718, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 9.286080696842582, - "c2": 34.10808495633678, - "c3": -30.817569907661262, - "c4": -14.018376784059235, - "c5": 27.976634524024945, - "c6": -9.54341938371391, - "c7": 11.239647012998525 + "points": { + "c1": -14.134219682817008, + "c2": 30.57373918642024, + "c3": 1.5145525864718081, + "c4": 31.228785382649477, + "c5": -40.60942557849676, + "c6": 33.60511388290183, + "c7": 39.54386599777661 }, - "vertexSeeds": { - "c1": 1.8774490953278724, - "c2": 2.0197818001682997, - "c3": 1.939075287971322, - "c4": 1.8663827716565724, - "c5": 1.9265952896961345, - "c6": 1.9608092858439878, - "c7": 2.123779607797187 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450776, + "c3": 2.6121128062875654, + "c4": 2.0896902450300505, + "c5": 1.5672676837725388, + "c6": 1.0448451225150268, + "c7": 0.5224225612575151 }, "rgb": [77, 76, 132] }, @@ -63348,23 +63348,23 @@ "year": 1718, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 37.57170953282501, - "c2": 26.112344811589644, - "c3": -31.9057703058957, - "c4": -25.8793871898569, - "c5": -37.05173106806769, - "c6": 26.242347738244803, - "c7": -1.3277406594964276 + "points": { + "c1": -11.193144453775883, + "c2": 31.75662384163128, + "c3": -32.9290436087917, + "c4": -38.66945761095615, + "c5": -27.312660042518942, + "c6": -12.417364822279737, + "c7": 5.9319614089430885 }, - "vertexSeeds": { - "c1": 6.102647750572406, - "c2": 6.999449829514682, - "c3": 6.1624437745750225, - "c4": 6.50985300429944, - "c5": 6.642987009472058, - "c6": 6.120249259003411, - "c7": 6.986217521143801 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721214, + "c3": 8.460471567267685, + "c4": 6.768377253814144, + "c5": 5.076282940360614, + "c6": 3.384188626907072, + "c7": 1.6920943134535422 }, "rgb": [238, 201, 159] }, @@ -63375,23 +63375,23 @@ "year": 1718, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 8.125345573311357, - "c2": 26.461492138248587, - "c3": 32.072652675365106, - "c4": -29.182978565294334, - "c5": 0.6631304941472251, - "c6": -21.304131173302146, - "c7": 25.699044755047225 + "points": { + "c1": 34.832145401650436, + "c2": 14.356323316125248, + "c3": -19.928848811336714, + "c4": 39.61893676209519, + "c5": -9.338557452266159, + "c6": 36.39536739238585, + "c7": -15.740785955439424 }, - "vertexSeeds": { - "c1": 13.002589113466684, - "c2": 8.945534420972692, - "c3": 10.88505731915379, - "c4": 12.998353069097693, - "c5": 10.249196274459216, - "c6": 8.978784260087949, - "c7": 10.30623651706575 + "offsets": { + "c1": 22.103559870550164, + "c2": 18.945908460471568, + "c3": 15.788257050392973, + "c4": 12.630605640314386, + "c5": 9.47295423023579, + "c6": 6.315302820157193, + "c7": 3.1576514100785964 }, "rgb": [58, 15, 49] }, @@ -63402,23 +63402,23 @@ "year": 1718, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -10.679384052895905, - "c2": -12.821556647556019, - "c3": -27.448046627983715, - "c4": -12.032267016489222, - "c5": 32.20451361031425, - "c6": -19.681119165083842, - "c7": -11.647482473023103 + "points": { + "c1": 30.731871799432895, + "c2": 23.6162946527605, + "c3": -6.271230416873415, + "c4": 21.389580469433362, + "c5": 33.93934311669125, + "c6": -29.183633582233696, + "c7": -18.71315468867436 }, - "vertexSeeds": { - "c1": 3.1785580223639585, - "c2": 3.335913405889725, - "c3": 3.128197347435175, - "c4": 3.463853241640065, - "c5": 3.188609337144346, - "c6": 3.36263285144301, - "c7": 3.449027902678553 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239947, + "c3": 4.160887656033284, + "c4": 3.328710124826629, + "c5": 2.4965325936199734, + "c6": 1.6643550624133103, + "c7": 0.8321775312066552 }, "rgb": [238, 201, 159] }, @@ -63429,23 +63429,23 @@ "year": 1717, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 27.456815403804576, - "c2": -16.83951990159804, - "c3": -7.852512978450701, - "c4": -8.653024429567719, - "c5": 20.58488018020701, - "c6": -1.6086398878079429, - "c7": -11.353011820178033 + "points": { + "c1": 10.20743304079555, + "c2": 15.816314892128936, + "c3": -11.064013832889682, + "c4": -25.951411574076992, + "c5": 22.560574436998742, + "c6": 11.028375887462389, + "c7": -18.895648755682505 }, - "vertexSeeds": { - "c1": 4.613302456316687, - "c2": 4.7543553960255185, - "c3": 4.108540050314459, - "c4": 4.72651601693785, - "c5": 4.6412987843022275, - "c6": 4.565780402107256, - "c7": 4.081616184491559 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975034, + "c3": 5.732778548312531, + "c4": 4.586222838650024, + "c5": 3.439667128987517, + "c6": 2.293111419325015, + "c7": 1.1465557096625074 }, "rgb": [77, 76, 132] }, @@ -63456,23 +63456,23 @@ "year": 1717, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 13.948186437790408, - "c2": -29.85651658645331, - "c3": -15.635187911602735, - "c4": -7.538172180772122, - "c5": 14.514923742907232, - "c6": 25.90579870729417, - "c7": -22.65345803308654 + "points": { + "c1": 6.116155570834053, + "c2": 21.054236910953264, + "c3": 18.31354049618335, + "c4": 13.29428461829167, + "c5": 5.969722892528004, + "c6": 2.3486995113552496, + "c7": -11.75498743232146 }, - "vertexSeeds": { - "c1": 4.198218627299069, - "c2": 4.149362850159943, - "c3": 4.045910816149544, - "c4": 4.383999835539217, - "c5": 4.413793595947517, - "c6": 4.466177609841548, - "c7": 4.332745812999171 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331483, + "c3": 5.362921867776237, + "c4": 4.290337494220989, + "c5": 3.2177531206657415, + "c6": 2.1451687471104943, + "c7": 1.0725843735552472 }, "rgb": [238, 201, 159] }, @@ -63483,23 +63483,23 @@ "year": 1718, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -24.094394121155705, - "c2": 11.178353585749665, - "c3": 29.512208268197003, - "c4": -1.1051588249425635, - "c5": -24.174702267319322, - "c6": 25.141977359000077, - "c7": -19.172909809402313 + "points": { + "c1": 15.837824239137063, + "c2": 27.178473552541064, + "c3": 19.30084009222852, + "c4": 9.471883827254658, + "c5": 8.404358352595693, + "c6": 27.94393279553082, + "c7": 19.167477025448612 }, - "vertexSeeds": { - "c1": 6.082204106399857, - "c2": 5.472024327598323, - "c3": 5.856014181131405, - "c4": 5.900642171208475, - "c5": 6.093149331839571, - "c6": 6.809199426749791, - "c7": 6.623937078259749 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439672, + "c3": 8.298659269533058, + "c4": 6.638927415626443, + "c5": 4.979195561719836, + "c6": 3.3194637078132287, + "c7": 1.6597318539066144 }, "rgb": [77, 76, 132] }, @@ -63510,23 +63510,23 @@ "year": 1718, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -2.3463238156103046, - "c2": 18.417281087750457, - "c3": 8.328605540426405, - "c4": 26.976107176105128, - "c5": 4.023493329192579, - "c6": 29.187749253950965, - "c7": -20.21935349603052 + "points": { + "c1": -15.018689607402813, + "c2": 11.042765728951942, + "c3": -2.9272913631324293, + "c4": -5.842935848053205, + "c5": 18.86995924765381, + "c6": -15.222059763490563, + "c7": 21.05710272565136 }, - "vertexSeeds": { - "c1": 3.043820991703109, - "c2": 2.970106142498948, - "c3": 3.1557934307927753, - "c4": 3.137162482826226, - "c5": 2.7619758975637017, - "c6": 3.1025243315836963, - "c7": 2.906076313059392 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636615, + "c3": 3.814147018030513, + "c4": 3.05131761442441, + "c5": 2.2884882108183073, + "c6": 1.525658807212205, + "c7": 0.7628294036061025 }, "rgb": [86, 146, 138] }, @@ -63537,23 +63537,23 @@ "year": 1718, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 12.88289130727808, - "c2": 0.6229645736046265, - "c3": -28.838745605233363, - "c4": 4.343834833234951, - "c5": -18.096089550635675, - "c6": -9.488890702443133, - "c7": -31.424798921806516 + "points": { + "c1": 38.964077702317155, + "c2": -36.77605659263096, + "c3": 2.195629789247306, + "c4": -26.93967991595784, + "c5": -40.73726619068098, + "c6": 9.580976109618085, + "c7": 4.377808404459337 }, - "vertexSeeds": { - "c1": 2.870904099885311, - "c2": 2.6849352765770487, - "c3": 2.8660075785535746, - "c4": 2.5517631549119355, - "c5": 2.4814455146747703, - "c6": 2.9041645072483586, - "c7": 2.6170572337511864 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314842, + "c3": 3.6292186777623665, + "c4": 2.903374942209895, + "c5": 2.177531206657419, + "c6": 1.4516874711049474, + "c7": 0.725843735552476 }, "rgb": [222, 0, 59] }, @@ -63564,23 +63564,23 @@ "year": 1718, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 20.482449758239664, - "c2": -11.721769334371633, - "c3": 7.694226303242697, - "c4": -19.537771117364144, - "c5": -15.29121530773798, - "c6": -18.415673847827886, - "c7": 5.16459479397837 + "points": { + "c1": 30.4574217428165, + "c2": -9.700721929804867, + "c3": -13.56445893533208, + "c4": -9.468070737837149, + "c5": -25.51288150496173, + "c6": 21.02164924037919, + "c7": 31.962401389022872 }, - "vertexSeeds": { - "c1": 9.4880728247475, - "c2": 9.94757100827464, - "c3": 9.788846476301615, - "c4": 9.87376745718683, - "c5": 10.210284164154736, - "c6": 9.500856163503526, - "c7": 9.317763255635775 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317613, + "c3": 12.25150254276468, + "c4": 9.801202034211743, + "c5": 7.350901525658807, + "c6": 4.900601017105871, + "c7": 2.4503005085529357 }, "rgb": [77, 76, 132] }, @@ -63591,23 +63591,23 @@ "year": 1718, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -3.867155936682167, - "c2": -19.363731325655436, - "c3": 30.831623410541326, - "c4": 19.674466147599077, - "c5": 31.067690813648255, - "c6": 21.872106560795054, - "c7": 1.1989979402192716 + "points": { + "c1": -24.794119614257845, + "c2": -33.94445222854113, + "c3": 6.121204027553837, + "c4": 14.483105234870123, + "c5": 2.5811894786631484, + "c6": -15.481362412105344, + "c7": 15.269434270154278 }, - "vertexSeeds": { - "c1": 0.24289062260238192, - "c2": 0.21673759188530334, - "c3": 0.21816239939061516, - "c4": 0.2340385343617836, - "c5": 0.24328554087051535, - "c6": 0.23114002064474992, - "c7": 0.21866283993220406 + "offsets": { + "c1": 0.45307443365695793, + "c2": 0.3883495145631067, + "c3": 0.3236245954692558, + "c4": 0.25889967637540456, + "c5": 0.19417475728155334, + "c6": 0.1294498381877021, + "c7": 0.06472491909385124 }, "rgb": [77, 76, 132] }, @@ -63618,23 +63618,23 @@ "year": 1718, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -11.774333698758856, - "c2": -2.677610336635283, - "c3": -22.502591899133158, - "c4": 11.085747452821199, - "c5": 25.119242742825943, - "c6": -26.252578192008134, - "c7": -15.29685884646498 + "points": { + "c1": -10.801607757256399, + "c2": -24.10259835947872, + "c3": -0.4420315992693844, + "c4": 20.28442614586965, + "c5": 25.67009634698128, + "c6": -15.519980387487744, + "c7": 19.523202981347897 }, - "vertexSeeds": { - "c1": 3.945039067670881, - "c2": 3.680884734153613, - "c3": 4.546770791719188, - "c4": 4.371664163695752, - "c5": 4.407231666839094, - "c6": 4.163766337025461, - "c7": 4.3909137565539496 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -63645,23 +63645,23 @@ "year": 1717, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -11.246852812550296, - "c2": 11.397137161271974, - "c3": 24.246716780145913, - "c4": -3.801368864939363, - "c5": 14.293759228502058, - "c6": 13.796375002234182, - "c7": -13.353085408311754 + "points": { + "c1": -3.267867556675771, + "c2": 20.510536644773172, + "c3": 8.511267485952647, + "c4": 5.8863268258771875, + "c5": -18.602687920043827, + "c6": 7.938882963834448, + "c7": -19.56663664237368 }, - "vertexSeeds": { - "c1": 8.095662315487257, - "c2": 8.049156987556874, - "c3": 7.997265964599656, - "c4": 7.878878479852467, - "c5": 7.976251748352943, - "c6": 7.933652423695773, - "c7": 8.079841816141618 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812748, + "c3": 9.662505779010653, + "c4": 7.730004623208514, + "c5": 5.797503467406374, + "c6": 3.8650023116042798, + "c7": 1.9325011558021399 }, "rgb": [222, 0, 59] }, @@ -63672,23 +63672,23 @@ "year": 1718, "resistanceReported": true, "duration": 17539200, - "curveSeeds": { - "c1": -20.675568589443095, - "c2": -5.986938342679711, - "c3": 11.643757875355398, - "c4": -14.23868456858113, - "c5": 15.179706088356774, - "c6": -25.827229852539446, - "c7": 27.611653498907643 + "points": { + "c1": -9.162306321845886, + "c2": -3.9472228069545494, + "c3": -22.71439000168322, + "c4": -12.39385617115597, + "c5": -9.203428343755842, + "c6": -24.067169103675674, + "c7": 14.308192123495864 }, - "vertexSeeds": { - "c1": 2.4800829271173006, - "c2": 2.3331810821878984, - "c3": 2.3353048921413695, - "c4": 2.319321114917285, - "c5": 2.4621827573245074, - "c6": 2.3220981170374357, - "c7": 2.538668893425324 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349516, + "c3": 3.0744336569579316, + "c4": 2.4595469255663427, + "c5": 1.844660194174758, + "c6": 1.2297734627831733, + "c7": 0.6148867313915889 }, "rgb": [77, 76, 132] }, @@ -63699,23 +63699,23 @@ "year": 1718, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -22.07978834658608, - "c2": -18.406391358657125, - "c3": -26.222832476150202, - "c4": 5.560159361601915, - "c5": -24.447942895278405, - "c6": -14.139921126017532, - "c7": 22.32586325639715 + "points": { + "c1": 17.61313639389752, + "c2": 8.614865784514038, + "c3": -3.261647805702932, + "c4": 4.858089664232189, + "c5": 13.85276877797996, + "c6": 15.698112634296841, + "c7": 4.613732109477809 }, - "vertexSeeds": { - "c1": 4.387745792084888, - "c2": 4.548585058590407, - "c3": 4.63972301883676, - "c4": 4.317219805992877, - "c5": 4.192444979050211, - "c6": 4.949788051697056, - "c7": 4.417808384809994 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337033, + "c3": 5.940822931114191, + "c4": 4.752658344891354, + "c5": 3.5644937586685166, + "c6": 2.3763291724456748, + "c7": 1.1881645862228374 }, "rgb": [77, 76, 132] }, @@ -63726,23 +63726,23 @@ "year": 1718, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -30.225904234976554, - "c2": 6.27971405938635, - "c3": -5.797959413121738, - "c4": 17.01319588112851, - "c5": 9.394327762989555, - "c6": -10.99137140344148, - "c7": -5.774750366036784 + "points": { + "c1": 23.20775028262711, + "c2": 13.686245485165621, + "c3": -9.889226145969015, + "c4": 0.6763781510551397, + "c5": 14.663961554976616, + "c6": -31.069756561068317, + "c7": -15.976252140292459 }, - "vertexSeeds": { - "c1": 4.25788832901156, - "c2": 4.74799725207361, - "c3": 4.202952863502293, - "c4": 4.820044297834132, - "c5": 4.565393755207628, - "c6": 4.2448641479946465, - "c7": 4.170804779395019 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379567, + "c4": 4.623208506703648, + "c5": 3.467406380027736, + "c6": 2.311604253351824, + "c7": 1.155802126675912 }, "rgb": [58, 15, 49] }, @@ -63753,23 +63753,23 @@ "year": 1718, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 34.16720637347933, - "c2": 35.606816031172215, - "c3": 37.25464480462523, - "c4": 14.14709890503466, - "c5": 17.224942161433113, - "c6": 40.12001013179058, - "c7": 39.00490781260102 + "points": { + "c1": -35.36612215322946, + "c2": -22.060591028135402, + "c3": 2.877554396787751, + "c4": 35.79626342439822, + "c5": 39.4683359651728, + "c6": 20.734700843371044, + "c7": 42.87704219361645 }, - "vertexSeeds": { - "c1": 0.8217099684435666, - "c2": 0.8410096260304458, - "c3": 0.8991732255795885, - "c4": 0.8576260139586437, - "c5": 0.8329349195021836, - "c6": 0.872199678317309, - "c7": 0.8375333605031389 + "offsets": { + "c1": 1.5857605177993526, + "c2": 1.3592233009708738, + "c3": 1.1326860841423951, + "c4": 0.9061488673139164, + "c5": 0.6796116504854377, + "c6": 0.45307443365695743, + "c7": 0.22653721682847872 }, "rgb": [58, 15, 49] }, @@ -63780,23 +63780,23 @@ "year": 1717, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 18.622101331845585, - "c2": 10.948723541213887, - "c3": -9.660070385643786, - "c4": -8.918184402216129, - "c5": -1.7021580008363202, - "c6": 1.9749708918321964, - "c7": 16.77310408580591 + "points": { + "c1": 13.952998397182128, + "c2": 23.932847962761038, + "c3": -19.7579189435938, + "c4": -4.6612666325905465, + "c5": 18.386543368504505, + "c6": -1.2833177634632307, + "c7": -7.44897920412517 }, - "vertexSeeds": { - "c1": 3.5082167441935748, - "c2": 3.7354446067826723, - "c3": 3.678870183482754, - "c4": 3.643135299310388, - "c5": 3.895549398932028, - "c6": 3.3951769693777623, - "c7": 3.761045436068552 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285713, + "c3": 4.761904761904763, + "c4": 3.809523809523809, + "c5": 2.8571428571428585, + "c6": 1.9047619047619044, + "c7": 0.9523809523809498 }, "rgb": [58, 15, 49] }, @@ -63807,23 +63807,23 @@ "year": 1718, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 20.62651028531007, - "c2": -9.495266961378576, - "c3": 31.514901517278517, - "c4": -21.52976731627695, - "c5": -7.453396192743355, - "c6": 31.542902107827388, - "c7": -23.244158759736358 + "points": { + "c1": -35.77848247697878, + "c2": -8.663702356512406, + "c3": -2.5385932646459537, + "c4": -16.58442085158962, + "c5": -20.179627073660885, + "c6": 2.7381449988778144, + "c7": -2.0560838863635738 }, - "vertexSeeds": { - "c1": 4.380418463824282, - "c2": 4.329536263777198, - "c3": 4.2781952826882685, - "c4": 3.8701938232748763, - "c5": 3.9555210827780756, - "c6": 4.138617285105153, - "c7": 4.35413693704194 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130374, + "c3": 5.247341655108645, + "c4": 4.197873324086916, + "c5": 3.148404993065187, + "c6": 2.098936662043458, + "c7": 1.049468331021729 }, "rgb": [222, 0, 59] }, @@ -63834,23 +63834,23 @@ "year": 1718, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 9.314166970222047, - "c2": 28.937063554763306, - "c3": 28.872678817583825, - "c4": 14.291436032234223, - "c5": 23.576072130929887, - "c6": -26.093538502875976, - "c7": 5.924471043362722 + "points": { + "c1": 26.210278341831973, + "c2": 9.862437904774382, + "c3": -28.319478608273194, + "c4": 29.40067417684478, + "c5": 25.858088480069846, + "c6": 8.429372712252231, + "c7": -0.14462214570036735 }, - "vertexSeeds": { - "c1": 1.3456083600360467, - "c2": 1.2891519525987833, - "c3": 1.3727773326327877, - "c4": 1.2870966185800232, - "c5": 1.266643896756549, - "c6": 1.2932110423422458, - "c7": 1.3156899517250649 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361997, + "c3": 1.6874711049468332, + "c4": 1.3499768839574664, + "c5": 1.0124826629680999, + "c6": 0.6749884419787332, + "c7": 0.3374942209893666 }, "rgb": [86, 146, 138] }, @@ -63861,23 +63861,23 @@ "year": 1718, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 22.01313208652828, - "c2": -2.545348477578628, - "c3": -11.026667043642341, - "c4": 34.337800024440895, - "c5": -19.346103226027292, - "c6": -19.015069060002038, - "c7": -9.403255386942227 + "points": { + "c1": 1.8909399908186728, + "c2": 32.47459210997556, + "c3": -8.154536093538411, + "c4": -17.469469650005113, + "c5": 15.075634822370226, + "c6": -29.448783787665, + "c7": 24.949263215979705 }, - "vertexSeeds": { - "c1": 1.8666268198531846, - "c2": 1.8402566857004645, - "c3": 1.7873850729486513, - "c4": 1.907726578164114, - "c5": 1.9110118351126169, - "c6": 1.8880092216601363, - "c7": 1.8318832913768917 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.334720295885344, + "c4": 1.8677762367082766, + "c5": 1.4008321775312056, + "c6": 0.9338881183541383, + "c7": 0.46694405917707077 }, "rgb": [58, 15, 49] }, @@ -63888,23 +63888,23 @@ "year": 1718, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -7.425880500738707, - "c2": 7.041127242494682, - "c3": 13.868016699065556, - "c4": 18.790122874424533, - "c5": -22.793843340867614, - "c6": -27.298135190992703, - "c7": 0.2411409222172729 + "points": { + "c1": 20.879033376142978, + "c2": -5.230404870380497, + "c3": 19.564873691520127, + "c4": -5.156860450925137, + "c5": -24.882043381763985, + "c6": -1.2376632083868842, + "c7": -3.150594467848535 }, - "vertexSeeds": { - "c1": 6.116286327283182, - "c2": 5.059214549977882, - "c3": 5.448810293994863, - "c4": 6.143138300138109, - "c5": 5.4742887206452915, - "c6": 5.791839173986236, - "c7": 5.1041085008965235 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.87656033287101, + "c3": 7.397133610725846, + "c4": 5.917706888580673, + "c5": 4.43828016643551, + "c6": 2.9588534442903365, + "c7": 1.479426722145173 }, "rgb": [238, 201, 159] }, @@ -63915,23 +63915,23 @@ "year": 1718, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 13.046790433997948, - "c2": 15.683867809378619, - "c3": 14.280801205968544, - "c4": -3.915602546866694, - "c5": 2.502593433823151, - "c6": 32.217764970781644, - "c7": 12.661379131640771 + "points": { + "c1": -8.58683864289091, + "c2": -32.84830350357767, + "c3": -31.708313074021994, + "c4": 41.48312737310856, + "c5": 4.077429741546268, + "c6": 15.252050533141926, + "c7": -21.559425534668694 }, - "vertexSeeds": { - "c1": 5.459531968577575, - "c2": 5.292485266969099, - "c3": 5.5592420065071755, - "c4": 5.507392624585531, - "c5": 5.406089938992824, - "c6": 5.174887710018455, - "c7": 5.519371484706623 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704582, + "c3": 6.726768377253805, + "c4": 5.381414701803048, + "c5": 4.036061026352291, + "c6": 2.690707350901535, + "c7": 1.3453536754507567 }, "rgb": [86, 146, 138] }, @@ -63942,23 +63942,23 @@ "year": 1718, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -25.768762259295553, - "c2": 27.444552423800182, - "c3": 23.432309641388358, - "c4": 7.475979165314435, - "c5": -29.86324188546573, - "c6": 6.9891830569853965, - "c7": 7.491814846232202 + "points": { + "c1": -20.42435973013, + "c2": 28.817794194911897, + "c3": -15.68261253015707, + "c4": -16.708458779288527, + "c5": 13.740980323358194, + "c6": -11.053116739435772, + "c7": -23.50577942443039 }, - "vertexSeeds": { - "c1": 4.561215548043005, - "c2": 4.142886334812257, - "c3": 4.593013453891515, - "c4": 4.404000318441588, - "c5": 4.33805258485151, - "c6": 4.060692537002706, - "c7": 4.420361491563007 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [222, 0, 59] }, @@ -63969,23 +63969,23 @@ "year": 1718, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 31.568792432473053, - "c2": -21.57854044840434, - "c3": 41.2339752258438, - "c4": 14.834043449695635, - "c5": -6.774914867259447, - "c6": -11.959840317624248, - "c7": -37.10592923159282 + "points": { + "c1": 13.884740156451763, + "c2": 39.411485006999875, + "c3": -41.382064202013, + "c4": 18.898391480227836, + "c5": -43.774151138537384, + "c6": -24.33766872145415, + "c7": -1.1325748356678247 }, - "vertexSeeds": { - "c1": 4.242629391836892, - "c2": 4.7368330536107255, - "c3": 4.822719204964687, - "c4": 4.060321755026501, - "c5": 4.038224072521893, - "c6": 4.199937232484293, - "c7": 3.8990405348752932 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [58, 15, 49] }, @@ -63996,23 +63996,23 @@ "year": 1719, "resistanceReported": false, "duration": 44755200, - "curveSeeds": { - "c1": -2.550952185741096, - "c2": 10.101321028257452, - "c3": -4.144635367936587, - "c4": 26.43069488314358, - "c5": 34.146412632712476, - "c6": 43.83036602499849, - "c7": -42.478865578370545 + "points": { + "c1": -18.262469942737724, + "c2": -5.409690615489389, + "c3": -16.402527025465623, + "c4": 41.85862529680147, + "c5": -20.562835719420143, + "c6": -40.82910178344481, + "c7": -9.759681034211482 }, - "vertexSeeds": { - "c1": 9.949449292744841, - "c2": 3.923126224782017, - "c3": 7.742945095798118, - "c4": 6.444186678092635, - "c5": 9.23681059789358, - "c6": 8.673029167651885, - "c7": 3.790133346087244 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518725, + "c3": 12.367082755432271, + "c4": 9.893666204345815, + "c5": 7.420249653259362, + "c6": 4.94683310217291, + "c7": 2.473416551086453 }, "rgb": [77, 76, 132] }, @@ -64023,23 +64023,23 @@ "year": 1718, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -29.220555448480912, - "c2": 29.74867179372678, - "c3": 11.662892753695054, - "c4": -16.829820491637747, - "c5": 4.2230016816920966, - "c6": 26.900886632059752, - "c7": 26.188841772491415 + "points": { + "c1": 13.212759552093551, + "c2": 23.398119699344605, + "c3": -23.55133986058597, + "c4": -3.0898037644910765, + "c5": -30.53390580329348, + "c6": 18.546181982523827, + "c7": 15.06408393344087 }, - "vertexSeeds": { - "c1": 3.0281196642010406, - "c2": 2.8193558144516704, - "c3": 3.103022434877531, - "c4": 2.965017035053719, - "c5": 3.076109321117547, - "c6": 2.7728575441965533, - "c7": 2.9901453187560905 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475725, + "c3": 3.7216828478964437, + "c4": 2.977346278317153, + "c5": 2.2330097087378626, + "c6": 1.4886731391585726, + "c7": 0.7443365695792904 }, "rgb": [58, 15, 49] }, @@ -64050,23 +64050,23 @@ "year": 1718, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 11.771170586923091, - "c2": -16.02475793112911, - "c3": 29.263236690512116, - "c4": -0.5931021054476062, - "c5": 21.773070369282195, - "c6": -3.389777907393402, - "c7": 28.50912971174447 + "points": { + "c1": -25.290350279736764, + "c2": 11.879898261600246, + "c3": -9.345991188108691, + "c4": 29.384627462168794, + "c5": -13.245468430666001, + "c6": 5.4901088739935275, + "c7": 12.45283093159427 }, - "vertexSeeds": { - "c1": 5.915419239150258, - "c2": 6.197332304524677, - "c3": 6.963713544337958, - "c4": 6.5640456670950105, - "c5": 6.590050534616546, - "c6": 6.7423874373322725, - "c7": 5.818617530314528 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962547, + "c3": 8.599167822468795, + "c4": 6.879334257975032, + "c5": 5.159500693481278, + "c6": 3.439667128987516, + "c7": 1.7198335644937626 }, "rgb": [77, 76, 132] }, @@ -64077,23 +64077,23 @@ "year": 1718, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -37.60270978929883, - "c2": 24.652878465354966, - "c3": 0.09077662645741214, - "c4": -17.457369193747358, - "c5": -41.30490983139772, - "c6": -17.544031047271748, - "c7": 26.5392355850474 + "points": { + "c1": -3.7814451263154254, + "c2": 13.839810285278595, + "c3": 6.348281315530613, + "c4": 11.073800243965302, + "c5": 24.885799111350302, + "c6": 38.527924033574685, + "c7": -27.895118391335032 }, - "vertexSeeds": { - "c1": 6.001449020411247, - "c2": 5.549933555329534, - "c3": 5.936880863168574, - "c4": 5.799796579779921, - "c5": 5.6128511495146505, - "c6": 6.043517659993583, - "c7": 5.71798596654726 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [77, 76, 132] }, @@ -64104,23 +64104,23 @@ "year": 1718, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 7.831980392003139, - "c2": 27.253714290186423, - "c3": 27.456350446133754, - "c4": -20.86224381609096, - "c5": -1.6745500425716386, - "c6": -23.106947148184283, - "c7": 1.4664087613615635 + "points": { + "c1": 16.321310708177485, + "c2": -2.8912978739239215, + "c3": 27.53144338341137, + "c4": -7.991529739460439, + "c5": 3.285377720204721, + "c6": 23.008519067021084, + "c7": -21.444518774938093 }, - "vertexSeeds": { - "c1": 5.2468953913774365, - "c2": 5.321317861417713, - "c3": 5.585893484517169, - "c4": 5.19385376251915, - "c5": 4.978567066225855, - "c6": 4.895376953715263, - "c7": 5.600243599648886 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267682, + "c3": 7.050392972723066, + "c4": 5.64031437817846, + "c5": 4.230235783633845, + "c6": 2.82015718908923, + "c7": 1.410078594544615 }, "rgb": [86, 146, 138] }, @@ -64131,23 +64131,23 @@ "year": 1719, "resistanceReported": false, "duration": 49420800, - "curveSeeds": { - "c1": -18.220039122526877, - "c2": -41.85934329272007, - "c3": -62.44434164636284, - "c4": 62.21915341623453, - "c5": -22.350432039616145, - "c6": 4.182400540879101, - "c7": -8.489160084190736 + "points": { + "c1": -13.650430519992305, + "c2": -10.13686794145665, + "c3": 26.134278293491008, + "c4": 32.65455118941574, + "c5": -24.06891214825307, + "c6": 26.519584340515593, + "c7": 9.835095330039906 }, - "vertexSeeds": { - "c1": 2.248908927963708, - "c2": 2.3565657032951766, - "c3": 2.3265744011095113, - "c4": 2.2197234570260838, - "c5": 2.214247813558051, - "c6": 2.3365806960369957, - "c7": 2.197652121288413 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.411927877947295, + "c3": 2.843273231622745, + "c4": 2.274618585298195, + "c5": 1.7059639389736494, + "c6": 1.1373092926490997, + "c7": 0.5686546463245499 }, "rgb": [58, 15, 49] }, @@ -64158,23 +64158,23 @@ "year": 1718, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 12.21938340824736, - "c2": -35.287971119624935, - "c3": 22.600122101855646, - "c4": -32.3054844563993, - "c5": 21.225780761481893, - "c6": -6.039272479587883, - "c7": -30.183862822628615 + "points": { + "c1": 36.68330727110157, + "c2": -34.7500312532177, + "c3": -31.95728218181948, + "c4": 10.018438940940555, + "c5": 16.499465270193397, + "c6": 0.05296206997579134, + "c7": -35.0885558687335 }, - "vertexSeeds": { - "c1": 3.5687577857567403, - "c2": 4.113177899797552, - "c3": 4.06705522812644, - "c4": 3.5766369821082518, - "c5": 3.5281451709185165, - "c6": 4.345108914006739, - "c7": 3.845972371738145 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130377, + "c3": 5.247341655108644, + "c4": 4.197873324086918, + "c5": 3.1484049930651907, + "c6": 2.098936662043459, + "c7": 1.0494683310217316 }, "rgb": [58, 15, 49] }, @@ -64185,23 +64185,23 @@ "year": 1718, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -26.30523659913451, - "c2": 14.350434521793467, - "c3": 25.076045003423523, - "c4": 25.041308890927, - "c5": 32.900989434636344, - "c6": 2.849696699982168, - "c7": 17.414673538209676 + "points": { + "c1": -30.11844786991811, + "c2": 3.305476551976163, + "c3": 12.647541575255126, + "c4": 12.782527936851231, + "c5": 4.4307657550218735, + "c6": -6.89453425824912, + "c7": -4.018419836095454 }, - "vertexSeeds": { - "c1": 3.2210219427344686, - "c2": 2.7683882146136107, - "c3": 2.7552450044226466, - "c4": 2.9903107804495574, - "c5": 2.638875768171382, - "c6": 2.9064736668992146, - "c7": 2.9125555173585274 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [238, 201, 159] }, @@ -64212,23 +64212,23 @@ "year": 1718, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": 6.956472565434595, - "c2": 13.008094716940114, - "c3": 5.119358313165069, - "c4": 5.209999593370242, - "c5": 19.39811518353001, - "c6": 2.12453153453761, - "c7": 5.163108810291462 + "points": { + "c1": -14.242203040155882, + "c2": 19.252930876076356, + "c3": 9.666997583913705, + "c4": 18.957526302891438, + "c5": -11.476605232892174, + "c6": -7.766052846618869, + "c7": 11.700563033388313 }, - "vertexSeeds": { - "c1": 4.680864630138867, - "c2": 4.522756999297241, - "c3": 4.850750368491939, - "c4": 4.4408053463157655, - "c5": 5.2938973358026935, - "c6": 4.586341402975128, - "c7": 4.498615643456388 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -64239,23 +64239,23 @@ "year": 1718, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 20.57189242426339, - "c2": -7.0472055180462405, - "c3": 6.51541705383417, - "c4": -21.14323982018564, - "c5": 21.89226272045658, - "c6": -27.542689306493006, - "c7": 6.348201619027549 + "points": { + "c1": 18.419562601577148, + "c2": -17.2298925651301, + "c3": -19.25116987650936, + "c4": -21.612528805588383, + "c5": 6.642123308105539, + "c6": -23.916068491558946, + "c7": 22.520751819531107 }, - "vertexSeeds": { - "c1": 9.414675412004152, - "c2": 8.72470544349468, - "c3": 9.826931071668843, - "c4": 8.572129781906897, - "c5": 10.320190151895215, - "c6": 8.623883373104615, - "c7": 10.28200621478863 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599165, + "c3": 12.413314840499302, + "c4": 9.930651872399446, + "c5": 7.447988904299582, + "c6": 4.965325936199719, + "c7": 2.482662968099864 }, "rgb": [58, 15, 49] }, @@ -64266,23 +64266,23 @@ "year": 1718, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 19.66148554690983, - "c2": 8.01886335239022, - "c3": 2.997662200740635, - "c4": -0.8900543103452279, - "c5": -17.96325053696308, - "c6": -28.594037523792153, - "c7": -1.698499795054122 + "points": { + "c1": -12.820988633448625, + "c2": -16.06482981709419, + "c3": -0.6453663393826687, + "c4": 20.474267296751812, + "c5": 15.115769889045872, + "c6": 6.348168926433871, + "c7": 2.8963818206368472 }, - "vertexSeeds": { - "c1": 1.620328800503817, - "c2": 1.6307723412762445, - "c3": 1.6137947178676193, - "c4": 1.6377236824183055, - "c5": 1.648879523500078, - "c6": 1.6230175036654781, - "c7": 1.6459430477667927 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499304, + "c3": 2.0110957004160848, + "c4": 1.6088765603328652, + "c5": 1.2066574202496456, + "c6": 0.8044382801664393, + "c7": 0.40221914008321963 }, "rgb": [222, 0, 59] }, @@ -64293,23 +64293,23 @@ "year": 1718, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 18.070479742801837, - "c2": -4.19464723824062, - "c3": 19.743039535287316, - "c4": -29.960327385135997, - "c5": -33.67468016588809, - "c6": 6.682353412734031, - "c7": 25.624169697932103 + "points": { + "c1": -7.28787355882568, + "c2": 15.432939168747396, + "c3": -20.54245032807984, + "c4": -38.074869763537265, + "c5": 15.231919695364013, + "c6": 3.5590137614190454, + "c7": -13.619454414907082 }, - "vertexSeeds": { - "c1": 1.9963146834534775, - "c2": 1.9733268128945105, - "c3": 1.9949268403299731, - "c4": 1.8744907770210377, - "c5": 1.9778827084111779, - "c6": 1.9376313736280928, - "c7": 1.8854673808268028 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233, + "c3": 2.427184466019416, + "c4": 1.941747572815537, + "c5": 1.4563106796116525, + "c6": 0.9708737864077684, + "c7": 0.4854368932038842 }, "rgb": [77, 76, 132] }, @@ -64320,23 +64320,23 @@ "year": 1718, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": -36.48026899657425, - "c2": 38.09963709708273, - "c3": -14.536875967228895, - "c4": 7.146103709093971, - "c5": 1.426448245416637, - "c6": -41.661331177431116, - "c7": -33.52199610431432 + "points": { + "c1": -9.85149411497514, + "c2": 4.373778942173274, + "c3": -35.46211351938902, + "c4": -26.985665508873375, + "c5": 40.1308011448073, + "c6": 32.183407644510474, + "c7": -0.8187562621449445 }, - "vertexSeeds": { - "c1": 3.159959767824949, - "c2": 3.040968576974513, - "c3": 2.9245132130898095, - "c4": 3.21287891368686, - "c5": 3.5621963869236444, - "c6": 3.520082040533136, - "c7": 2.922379329308072 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [58, 15, 49] }, @@ -64347,23 +64347,23 @@ "year": 1718, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -32.02241098831503, - "c2": 26.24079950635265, - "c3": -21.28963823114767, - "c4": 23.546283044410437, - "c5": 26.66394939070367, - "c6": 24.674683518654426, - "c7": 19.316001595859845 + "points": { + "c1": 27.74728010890331, + "c2": 17.6679087165083, + "c3": -22.003332347280097, + "c4": 33.78324858399759, + "c5": 15.791705873939485, + "c6": 15.574108683322173, + "c7": 24.308879023207126 }, - "vertexSeeds": { - "c1": 4.095859834696463, - "c2": 4.3938999783113175, - "c3": 4.119917925312556, - "c4": 3.8534810288267347, - "c5": 3.9137546167039923, - "c6": 3.745721702236887, - "c7": 3.9023786134884553 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [77, 76, 132] }, @@ -64374,23 +64374,23 @@ "year": 1718, "resistanceReported": false, "duration": 6048000, - "curveSeeds": { - "c1": -14.266352882399804, - "c2": -4.72936327570506, - "c3": -5.8726023678992085, - "c4": 13.312732585475512, - "c5": 4.944664031979993, - "c6": -16.325412485549986, - "c7": 14.261582752904886 + "points": { + "c1": -11.660070499122895, + "c2": 18.20533532737612, + "c3": -6.402576071451103, + "c4": 4.688758878795184, + "c5": 17.598099770318285, + "c6": 5.0455867640120395, + "c7": -9.043325844479899 }, - "vertexSeeds": { - "c1": 4.364259925837315, - "c2": 3.921672618860439, - "c3": 3.791162294443201, - "c4": 4.361035116020712, - "c5": 3.7740493308781886, - "c6": 3.922855658500423, - "c7": 4.131452884446012 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -64401,23 +64401,23 @@ "year": 1718, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 24.908033038764884, - "c2": 14.88944502594385, - "c3": 2.6352525074938953, - "c4": 25.820856624845874, - "c5": 20.172707741717836, - "c6": -15.12141642897602, - "c7": 18.24042011076039 + "points": { + "c1": 29.11596718376198, + "c2": -7.038309863154854, + "c3": -6.07748164837076, + "c4": 3.8428088257507724, + "c5": -25.718246113574438, + "c6": -31.08589940577647, + "c7": -4.210149100725779 }, - "vertexSeeds": { - "c1": 3.1606068676812193, - "c2": 3.100158346725437, - "c3": 3.090239969176812, - "c4": 3.149166455164431, - "c5": 3.0008044067178137, - "c6": 3.0500464814091743, - "c7": 3.1417534305632 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636622, + "c3": 3.8141470180305106, + "c4": 3.051317614424415, + "c5": 2.2884882108183033, + "c6": 1.5256588072122075, + "c7": 0.762829403606096 }, "rgb": [58, 15, 49] }, @@ -64428,23 +64428,23 @@ "year": 1718, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 21.072312169647915, - "c2": 5.273291983061593, - "c3": -1.9591078230608865, - "c4": -15.797350893589513, - "c5": 11.149127175973199, - "c6": -14.098975072834213, - "c7": 15.973024302657926 + "points": { + "c1": -20.701676473575937, + "c2": 5.3310425964015415, + "c3": 0.7018047633418973, + "c4": -23.435000541244506, + "c5": 22.623305483213073, + "c6": 6.088061183380418, + "c7": 4.031357116232012 }, - "vertexSeeds": { - "c1": 4.940862647535439, - "c2": 4.941884278111372, - "c3": 4.981833682527091, - "c4": 4.949288072031637, - "c5": 4.90811783933975, - "c6": 4.973712039404885, - "c7": 4.948961040764975 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.21220527045771, + "c3": 6.01017105871473, + "c4": 4.8081368469717924, + "c5": 3.606102635228855, + "c6": 2.4040684234858962, + "c7": 1.202034211742959 }, "rgb": [77, 76, 132] }, @@ -64455,23 +64455,23 @@ "year": 1718, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 12.303264924552536, - "c2": 30.995419665627914, - "c3": 4.03425634337362, - "c4": 25.783082161905703, - "c5": -4.5189136675060375, - "c6": 23.612505522734835, - "c7": 20.454719089857 + "points": { + "c1": -7.455553238526573, + "c2": -17.37890919573643, + "c3": 30.642069449289806, + "c4": -31.40274701718217, + "c5": 25.165245333666242, + "c6": 20.772803029194698, + "c7": -10.705316285856327 }, - "vertexSeeds": { - "c1": 2.422925773788636, - "c2": 2.3532773390137534, - "c3": 2.244687126524428, - "c4": 2.4441254780600317, - "c5": 2.3340378957805132, - "c6": 2.430385795945232, - "c7": 2.354231062292862 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.9819694868238558, + "c4": 2.3855755894590844, + "c5": 1.7891816920943133, + "c6": 1.1927877947295422, + "c7": 0.5963938973647711 }, "rgb": [86, 146, 138] }, @@ -64482,23 +64482,23 @@ "year": 1718, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 30.942378800012875, - "c2": 19.31171973008933, - "c3": 25.523369222055884, - "c4": -15.914428266901123, - "c5": 11.958296848291475, - "c6": 18.043424934226515, - "c7": -3.690894336957097 + "points": { + "c1": 31.196119778340616, + "c2": -3.5997756936292014, + "c3": -31.929731419671526, + "c4": -32.4007377682798, + "c5": -10.977321282701766, + "c6": 17.653693444343368, + "c7": 2.1263923405320213 }, - "vertexSeeds": { - "c1": 3.9186604257226674, - "c2": 4.534447349547188, - "c3": 3.89111685165597, - "c4": 4.333933550735386, - "c5": 3.9315498374473288, - "c6": 3.9859377608636257, - "c7": 3.7522288639990626 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -64509,23 +64509,23 @@ "year": 1718, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 15.255311660493174, - "c2": 18.465013041175357, - "c3": -13.03523337333344, - "c4": -23.434302458848304, - "c5": 11.061587003897476, - "c6": -15.968139929514106, - "c7": -3.7233169483610844 + "points": { + "c1": 14.41227236861776, + "c2": -5.818084201252535, + "c3": 22.0202175715205, + "c4": 12.16092161063126, + "c5": 28.377142544276975, + "c6": -3.14109155001918, + "c7": -24.021448272918263 }, - "vertexSeeds": { - "c1": 5.28619111148989, - "c2": 5.38344173034649, - "c3": 5.413976574887928, - "c4": 5.591755674323802, - "c5": 5.33570536287919, - "c6": 5.259435318026558, - "c7": 5.6599614983803646 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106794, + "c3": 6.9579288025889925, + "c4": 5.566343042071192, + "c5": 4.174757281553403, + "c6": 2.783171521035603, + "c7": 1.3915857605178015 }, "rgb": [58, 15, 49] }, @@ -64536,23 +64536,23 @@ "year": 1718, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 6.48035597972601, - "c2": -8.964741121312866, - "c3": 11.449209368364787, - "c4": 21.413268629346472, - "c5": 19.23308517988342, - "c6": -18.453405298424702, - "c7": 5.4369334519339 + "points": { + "c1": 7.412407880001545, + "c2": 2.1965703472154416, + "c3": -3.779763999625942, + "c4": -9.093626382447187, + "c5": -20.425468570370356, + "c6": -29.8152691399594, + "c7": -24.96201720558377 }, - "vertexSeeds": { - "c1": 2.8009283906482922, - "c2": 2.474777706419958, - "c3": 2.6476519009772277, - "c4": 2.540385048976344, - "c5": 3.0943436991626263, - "c6": 3.138666889824409, - "c7": 2.5715354301380846 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.6047156726768375, + "c3": 3.8372630605640308, + "c4": 3.069810448451224, + "c5": 2.302357836338418, + "c6": 1.5349052242256112, + "c7": 0.7674526121128046 }, "rgb": [86, 146, 138] }, @@ -64563,23 +64563,23 @@ "year": 1718, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -3.5907708274700205, - "c2": 13.094113542362841, - "c3": -3.7718020563533976, - "c4": -5.448494246431721, - "c5": 27.015566333125037, - "c6": 1.5157627406083698, - "c7": -4.52642383469178 + "points": { + "c1": 19.77408046538318, + "c2": -27.563409654062987, + "c3": 1.670536173169772, + "c4": 12.511051479401772, + "c5": 10.070688267733829, + "c6": -12.425689569502389, + "c7": -27.3806631250681 }, - "vertexSeeds": { - "c1": 2.016183238531811, - "c2": 1.881154830210551, - "c3": 1.7994181393773707, - "c4": 1.6527893430649698, - "c5": 1.9805087172477518, - "c6": 1.7472330428395646, - "c7": 2.0240399950611354 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037457, + "c3": 2.4734165510864536, + "c4": 1.9787332408691638, + "c5": 1.4840499306518717, + "c6": 0.9893666204345819, + "c7": 0.4946833102172921 }, "rgb": [222, 0, 59] }, @@ -64590,23 +64590,23 @@ "year": 1718, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -31.835905804646853, - "c2": -27.439542449471112, - "c3": 19.606405177095446, - "c4": -3.56134200861527, - "c5": -15.62496741036804, - "c6": -8.6549341970861, - "c7": 29.423157021920673 + "points": { + "c1": -3.3825829168691754, + "c2": -33.5637380042411, + "c3": -21.062655587854216, + "c4": 26.396786844373054, + "c5": 29.321346855273404, + "c6": -3.084227883476551, + "c7": 4.221865084951794 }, - "vertexSeeds": { - "c1": 3.359950661858722, - "c2": 3.581213970993367, - "c3": 3.1951993021905167, - "c4": 3.3745023345232763, - "c5": 3.1239477774901356, - "c6": 3.3120211729290823, - "c7": 3.1188469948419026 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [238, 201, 159] }, @@ -64617,23 +64617,23 @@ "year": 1718, "resistanceReported": false, "duration": 3024000, - "curveSeeds": { - "c1": -6.252463257273821, - "c2": 0.05721822826525447, - "c3": -7.78075676683164, - "c4": 2.653465398856568, - "c5": -11.759704880517665, - "c6": 11.529659795456437, - "c7": 1.8181390074836088 + "points": { + "c1": 5.2230374414117495, + "c2": 1.2035023787689507, + "c3": -1.4766670549023448, + "c4": 7.661567994049877, + "c5": -5.884243949002338, + "c6": -3.652566178717038, + "c7": -8.7008572455515 }, - "vertexSeeds": { - "c1": 5.081569657749679, - "c2": 5.094602189747011, - "c3": 4.730574563013529, - "c4": 4.948459434620931, - "c5": 5.073448996032072, - "c6": 4.8805402321222955, - "c7": 5.280419098693624 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -64644,23 +64644,23 @@ "year": 1718, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -7.05000601265187, - "c2": 33.53486295132548, - "c3": 4.342475026853144, - "c4": 31.584947555974807, - "c5": 22.26625746332084, - "c6": -14.31210284899565, - "c7": -1.046946550130059 + "points": { + "c1": 31.017171497640092, + "c2": 18.38341282605674, + "c3": 19.117899043660096, + "c4": -26.775713339259305, + "c5": 3.954156032992323, + "c6": 5.756472597501954, + "c7": 2.7820605868877877 }, - "vertexSeeds": { - "c1": 2.293090574584297, - "c2": 2.6495308901411585, - "c3": 2.2604436533673415, - "c4": 2.5904586244783525, - "c5": 2.649347037570569, - "c6": 2.478966990434881, - "c7": 2.386246377513598 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712873, + "c3": 3.2593619972260752, + "c4": 2.6074895977808583, + "c5": 1.9556171983356436, + "c6": 1.3037447988904292, + "c7": 0.6518723994452146 }, "rgb": [222, 0, 59] }, @@ -64671,23 +64671,23 @@ "year": 1718, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 15.953397036640155, - "c2": -28.32531188415164, - "c3": 6.729320233562049, - "c4": 8.028334487419102, - "c5": 25.101317534995438, - "c6": -9.56602459180844, - "c7": 24.53083698853112 + "points": { + "c1": 40.429072934355496, + "c2": 7.529173319941215, + "c3": -14.802734883345426, + "c4": -5.793411253497901, + "c5": 29.64098953927364, + "c6": 12.86330020577789, + "c7": -20.381791448673233 }, - "vertexSeeds": { - "c1": 3.751606304245387, - "c2": 3.5946847543254266, - "c3": 3.8361463037167076, - "c4": 3.6686746638119705, - "c5": 3.681089323123219, - "c6": 3.4901707272170657, - "c7": 3.647742311793233 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304204, + "c4": 3.7540453074433624, + "c5": 2.8155339805825275, + "c6": 1.8770226537216852, + "c7": 0.9385113268608426 }, "rgb": [86, 146, 138] }, @@ -64698,23 +64698,23 @@ "year": 1718, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -31.183862375477336, - "c2": -25.36709006054264, - "c3": 31.1786352037648, - "c4": 12.056720034909894, - "c5": 23.298054739390395, - "c6": -27.181209381303766, - "c7": 12.382832203327489 + "points": { + "c1": 9.28521039356685, + "c2": -9.774742465789085, + "c3": -1.2584074092443345, + "c4": 0.11301506615409806, + "c5": 23.102330495705985, + "c6": -4.56854993226494, + "c7": -26.048022844079643 }, - "vertexSeeds": { - "c1": 1.3690520027871667, - "c2": 1.4242308062091527, - "c3": 1.2682335672349843, - "c4": 1.4112605794834294, - "c5": 1.1687038014739244, - "c6": 1.4866384441857328, - "c7": 1.359008230949301 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177544, + "c3": 1.8492834026814609, + "c4": 1.4794267221451693, + "c5": 1.1095700416088763, + "c6": 0.7397133610725847, + "c7": 0.36985668053629234 }, "rgb": [77, 76, 132] }, @@ -64725,23 +64725,23 @@ "year": 1718, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -2.0574743975308643, - "c2": -14.010440362942267, - "c3": -1.6154994847186224, - "c4": 12.914648792601525, - "c5": -0.7231240218654555, - "c6": -21.793433310069126, - "c7": 1.2144170829055199 + "points": { + "c1": -21.837697972511723, + "c2": 15.226517650376877, + "c3": -21.767300745585054, + "c4": 6.396309868193846, + "c5": -26.292722773963817, + "c6": -27.040480422396524, + "c7": 10.568219570004338 }, - "vertexSeeds": { - "c1": 0.6914271207003639, - "c2": 0.746154381839622, - "c3": 0.74791641637866, - "c4": 0.7106705879580739, - "c5": 0.7087149982509694, - "c6": 0.6939910067291812, - "c7": 0.6850600224760007 + "offsets": { + "c1": 1.3268608414239482, + "c2": 1.137309292649099, + "c3": 0.9477577438742486, + "c4": 0.7582061950993993, + "c5": 0.5686546463245489, + "c6": 0.3791030975496997, + "c7": 0.18955154877485045 }, "rgb": [222, 0, 59] }, @@ -64752,23 +64752,23 @@ "year": 1718, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 9.503788306559613, - "c2": -30.573413705424592, - "c3": 13.954925971338639, - "c4": -9.916436788499709, - "c5": 17.863886376233943, - "c6": -20.767136694570468, - "c7": -19.07675797993653 + "points": { + "c1": 12.327267921615032, + "c2": -6.426877358983191, + "c3": -19.681944360104175, + "c4": -4.4072932889448815, + "c5": 32.20687153421782, + "c6": -5.020590626781516, + "c7": 2.313777927823736 }, - "vertexSeeds": { - "c1": 2.0847261976804163, - "c2": 2.147284160511805, - "c3": 2.1224892230429684, - "c4": 2.130262099815915, - "c5": 1.9420205315874801, - "c6": 1.9908826097281613, - "c7": 1.954225583714859 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300527, + "c5": 1.5672676837725366, + "c6": 1.0448451225150244, + "c7": 0.5224225612575122 }, "rgb": [86, 146, 138] }, @@ -64779,23 +64779,23 @@ "year": 1718, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -6.676106898635485, - "c2": 19.670809317515733, - "c3": 21.009859973969647, - "c4": -16.404976794844416, - "c5": 33.329741675848325, - "c6": -37.82732302739173, - "c7": 10.587013317287607 + "points": { + "c1": 28.864907644702242, + "c2": -4.073968688717876, + "c3": -37.76773842608607, + "c4": -14.030288079070516, + "c5": -2.1082091698054413, + "c6": 5.732860694997527, + "c7": 40.183815167209005 }, - "vertexSeeds": { - "c1": 2.901533048419319, - "c2": 2.7799155944901797, - "c3": 2.732720938376049, - "c4": 2.546327575227576, - "c5": 2.5543897572828245, - "c6": 2.811043690783984, - "c7": 2.741063132163066 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [77, 76, 132] }, @@ -64806,23 +64806,23 @@ "year": 1718, "resistanceReported": false, "duration": 1555200, - "curveSeeds": { - "c1": 3.6436112840269175, - "c2": -7.167148942952627, - "c3": -0.27873014327825985, - "c4": 3.457274200921173, - "c5": -2.7492916905360634, - "c6": -5.413960661545668, - "c7": -3.990308212464404 + "points": { + "c1": -11.696625531228971, + "c2": 10.792933452289422, + "c3": 9.635893141707708, + "c4": -9.729705117111667, + "c5": -8.845130121083503, + "c6": 12.468324350594468, + "c7": 11.391222678012962 }, - "vertexSeeds": { - "c1": 8.311258093864984, - "c2": 8.524905923230136, - "c3": 8.052526423044755, - "c4": 8.59025768558814, - "c5": 8.659955805191172, - "c6": 8.796367769155156, - "c7": 9.511377527833053 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789176, + "c3": 11.373092926490983, + "c4": 9.09847434119279, + "c5": 6.823855755894588, + "c6": 4.549237170596384, + "c7": 2.274618585298192 }, "rgb": [222, 0, 59] }, @@ -64833,23 +64833,23 @@ "year": 1718, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -19.322086644210014, - "c2": 38.80025103755501, - "c3": 3.993132844391333, - "c4": 7.835647197231495, - "c5": -14.244092798167639, - "c6": 20.552520437868857, - "c7": 38.16836257532736 + "points": { + "c1": 31.994041817012636, + "c2": -11.881944842468627, + "c3": 16.86481586374235, + "c4": 1.3337870678838115, + "c5": 13.300904109326126, + "c6": 4.659509177477396, + "c7": -27.37264868594882 }, - "vertexSeeds": { - "c1": 3.5381034582187323, - "c2": 3.875286293443917, - "c3": 3.441412503646841, - "c4": 3.2804468889683305, - "c5": 3.9083648141128884, - "c6": 3.7986576004594608, - "c7": 3.532292993840109 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446601, + "c3": 4.854368932038835, + "c4": 3.8834951456310676, + "c5": 2.9126213592233006, + "c6": 1.9417475728155338, + "c7": 0.9708737864077669 }, "rgb": [58, 15, 49] }, @@ -64860,23 +64860,23 @@ "year": 1718, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 27.07110520918455, - "c2": 16.496742226016842, - "c3": 13.474119978464806, - "c4": -23.307578812306918, - "c5": 28.559293794447825, - "c6": 39.41057718167373, - "c7": -27.307767385839327 + "points": { + "c1": 10.66907168251467, + "c2": -38.69422885149501, + "c3": 28.23234984173523, + "c4": -38.46196913799491, + "c5": 15.01920082625545, + "c6": 34.56867956299031, + "c7": -35.39978971115834 }, - "vertexSeeds": { - "c1": 2.715370040168112, - "c2": 2.7350840620152166, - "c3": 2.766837839893222, - "c4": 2.7017946434984705, - "c5": 2.5023381534169995, - "c6": 2.7022894603070435, - "c7": 2.7527436240096357 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993064, + "c3": 3.444290337494219, + "c4": 2.755432269995381, + "c5": 2.0665742024965357, + "c6": 1.3777161349976905, + "c7": 0.6888580674988453 }, "rgb": [86, 146, 138] }, @@ -64887,23 +64887,23 @@ "year": 1718, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -20.064258658138172, - "c2": 9.869496052319747, - "c3": 1.4590798267864855, - "c4": 8.382235502931245, - "c5": 26.260665326333942, - "c6": 25.34870244396356, - "c7": -2.8255378595552365 + "points": { + "c1": -9.858866595446262, + "c2": -15.33670522507646, + "c3": 32.68460435015605, + "c4": 0.5933383722582874, + "c5": 0.5568492118864867, + "c6": -6.882396276322883, + "c7": 24.4059460994812 }, - "vertexSeeds": { - "c1": 6.285819019056947, - "c2": 6.82682141925536, - "c3": 5.76420948671575, - "c4": 6.4035747528253815, - "c5": 6.320513211223551, - "c6": 6.764120101474715, - "c7": 7.038276030458845 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761438, + "c3": 8.483587609801203, + "c4": 6.786870087840959, + "c5": 5.090152565880723, + "c6": 3.3934350439204795, + "c7": 1.6967175219602444 }, "rgb": [86, 146, 138] }, @@ -64914,23 +64914,23 @@ "year": 1718, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 3.833516856429931, - "c2": 15.012164594029205, - "c3": -15.81801920512378, - "c4": -15.468075195179978, - "c5": 8.826710501824426, - "c6": 8.791970950023849, - "c7": -1.5053988969281598 + "points": { + "c1": -4.369052164748226, + "c2": -24.840119814694518, + "c3": 28.7221333887252, + "c4": 26.021181862441207, + "c5": 9.145022096427152, + "c6": -1.8080392591376828, + "c7": -14.321981931655761 }, - "vertexSeeds": { - "c1": 2.9102546189226146, - "c2": 3.0422263944201053, - "c3": 3.1511281126100887, - "c4": 3.587938821231825, - "c5": 2.9440281182016887, - "c6": 2.9169078795021424, - "c7": 2.760874731681062 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561719, + "c3": 4.345815996301432, + "c4": 3.4766527970411447, + "c5": 2.6074895977808614, + "c6": 1.7383263985205744, + "c7": 0.8691631992602872 }, "rgb": [222, 0, 59] }, @@ -64941,23 +64941,23 @@ "year": 1718, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -7.960890792585587, - "c2": 2.3162356819205456, - "c3": -22.670090262859134, - "c4": 24.055832963462024, - "c5": 10.970289293430675, - "c6": 13.168684436199875, - "c7": -19.226788078202354 + "points": { + "c1": 3.962685021819233, + "c2": 34.93780787413258, + "c3": 27.401607411763813, + "c4": -1.7309359623069511, + "c5": 5.930089255198652, + "c6": 30.608118851417778, + "c7": -13.75947850081014 }, - "vertexSeeds": { - "c1": 4.278349452286355, - "c2": 4.048876539609867, - "c3": 4.43304992143812, - "c4": 4.261694516234481, - "c5": 4.325461483707182, - "c6": 3.8481730490543056, - "c7": 3.9002963633333154 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653258, + "c3": 5.54785020804438, + "c4": 4.438280166435508, + "c5": 3.3287101248266313, + "c6": 2.219140083217754, + "c7": 1.109570041608877 }, "rgb": [86, 146, 138] }, @@ -64968,23 +64968,23 @@ "year": 1718, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -14.391277711985738, - "c2": 8.473480281212453, - "c3": 23.627907696265474, - "c4": 21.637898530995393, - "c5": 22.921803618301134, - "c6": 16.046212125514913, - "c7": 26.64579364951434 + "points": { + "c1": -12.765551049670698, + "c2": 28.216670391952178, + "c3": 2.7970316791349603, + "c4": -14.775911437870509, + "c5": -24.352027908472994, + "c6": 10.797930277787287, + "c7": -14.535388402026179 }, - "vertexSeeds": { - "c1": 2.9138782882205323, - "c2": 2.8558502314639216, - "c3": 2.5622535211916424, - "c4": 2.7603449922052627, - "c5": 2.5967381181878935, - "c6": 2.463943535054704, - "c7": 2.7452812455488935 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.5136384650947767, + "c4": 2.8109107720758195, + "c5": 2.1081830790568667, + "c6": 1.4054553860379098, + "c7": 0.7027276930189549 }, "rgb": [222, 0, 59] }, @@ -64995,23 +64995,23 @@ "year": 1718, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 27.980186129810193, - "c2": 29.891910370975992, - "c3": -14.133354835256778, - "c4": 12.090901357082323, - "c5": 5.867710809166901, - "c6": 24.921044461604254, - "c7": 3.4590608750228427 + "points": { + "c1": 7.11302892215231, + "c2": 19.518527277161162, + "c3": -27.963678440166056, + "c4": -11.804408055070233, + "c5": -13.90350816691927, + "c6": 23.52804819384712, + "c7": 15.433179582260841 }, - "vertexSeeds": { - "c1": 4.952667373430082, - "c2": 4.623313745526774, - "c3": 4.3227412529993785, - "c4": 4.869407489422579, - "c5": 4.617233474223838, - "c6": 4.535104219006154, - "c7": 4.514885858738946 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.10124826629681, + "c3": 5.917706888580672, + "c4": 4.734165510864538, + "c5": 3.550624133148405, + "c6": 2.367082755432272, + "c7": 1.183541377716133 }, "rgb": [222, 0, 59] }, @@ -65022,23 +65022,23 @@ "year": 1719, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": 2.1789655703207487, - "c2": 14.668522292371108, - "c3": -22.257656313805064, - "c4": -51.69524462058424, - "c5": -44.38900585023531, - "c6": 14.799190008070298, - "c7": -5.9904838882049845 + "points": { + "c1": -52.050669550164294, + "c2": -32.214653101026784, + "c3": 16.706105379109076, + "c4": 26.64749690331729, + "c5": -54.29372889848298, + "c6": -37.30106648399435, + "c7": 54.900227421983104 }, - "vertexSeeds": { - "c1": 7.450748252449641, - "c2": 7.190833945221066, - "c3": 7.269591572073612, - "c4": 6.839567878227617, - "c5": 7.868621832033476, - "c6": 7.545505726834008, - "c7": 7.218399474220692 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [58, 15, 49] }, @@ -65049,23 +65049,23 @@ "year": 1719, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": 1.9253549917296624, - "c2": -7.592793424448054, - "c3": 31.524662071678748, - "c4": -8.76747989700845, - "c5": 44.54765447350876, - "c6": 39.219952526867985, - "c7": 37.762618683101664 + "points": { + "c1": 18.010995191907128, + "c2": -53.9452174401294, + "c3": 27.473320250391907, + "c4": -0.5609272476268714, + "c5": -11.285156944724072, + "c6": 15.745573343596575, + "c7": -47.26284154080462 }, - "vertexSeeds": { - "c1": 6.8511101938645265, - "c2": 7.231703335908437, - "c3": 6.895294536870144, - "c4": 7.228419411021446, - "c5": 6.953550564294815, - "c6": 6.857736641029319, - "c7": 7.557212820019685 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088759, + "c3": 9.246417013407305, + "c4": 7.397133610725838, + "c5": 5.5478502080443866, + "c6": 3.698566805362919, + "c7": 1.8492834026814524 }, "rgb": [238, 201, 159] }, @@ -65076,23 +65076,23 @@ "year": 1719, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -27.6226139346467, - "c2": 30.048453567328373, - "c3": -49.607700505247664, - "c4": 40.22632154176868, - "c5": -9.4998594844226, - "c6": 15.304777248513084, - "c7": -0.0574880912733704 + "points": { + "c1": 53.26781653915486, + "c2": -45.67965732757612, + "c3": 10.80649736278901, + "c4": -52.240753430468146, + "c5": -43.445645596364365, + "c6": 53.95946625904197, + "c7": -47.52695422358107 }, - "vertexSeeds": { - "c1": 7.960488527054726, - "c2": 7.619124753161223, - "c3": 8.054335532643023, - "c4": 7.270388397012852, - "c5": 7.972423363715742, - "c6": 7.833193260408991, - "c7": 7.1495020293086675 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255196, + "c3": 9.916782246879338, + "c4": 7.933425797503467, + "c5": 5.950069348127598, + "c6": 3.966712898751741, + "c7": 1.9833564493758704 }, "rgb": [58, 15, 49] }, @@ -65103,23 +65103,23 @@ "year": 1719, "resistanceReported": false, "duration": 49852800, - "curveSeeds": { - "c1": -62.27582512466766, - "c2": -12.932452038609874, - "c3": -62.52929205655651, - "c4": 25.497287970243136, - "c5": -43.36635259287692, - "c6": 14.723320934112905, - "c7": -17.59786715712241 + "points": { + "c1": -8.53946962343985, + "c2": -56.20970910884801, + "c3": 28.558561640751506, + "c4": 11.159794202906951, + "c5": -43.849108472463655, + "c6": 0.4184154085193086, + "c7": 41.0089750809219 }, - "vertexSeeds": { - "c1": 7.889070285654313, - "c2": 8.849762114380534, - "c3": 8.887854309846846, - "c4": 8.832090219789068, - "c5": 8.785373371931126, - "c6": 8.661089857119997, - "c7": 8.823955219897632 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.98196948682386, + "c3": 10.81830790568654, + "c4": 8.654646324549235, + "c5": 6.49098474341193, + "c6": 4.327323162274625, + "c7": 2.1636615811373052 }, "rgb": [238, 201, 159] }, @@ -65130,23 +65130,23 @@ "year": 1719, "resistanceReported": false, "duration": 43372800, - "curveSeeds": { - "c1": -2.6695330641581307, - "c2": 12.319947057037638, - "c3": 16.06002979893924, - "c4": -30.965712866618016, - "c5": 57.06964652858957, - "c6": 2.0967278558745335, - "c7": 39.47536852370368 + "points": { + "c1": 9.70563795277694, + "c2": -2.8459594380239324, + "c3": -41.987332904445154, + "c4": -48.05815176628772, + "c5": -0.6945517234871232, + "c6": -38.049747186073816, + "c7": 19.068205135399694 }, - "vertexSeeds": { - "c1": 2.5961286469217812, - "c2": 3.0176718868757533, - "c3": 2.935382498563203, - "c4": 3.0512386398298577, - "c5": 3.0745547140928666, - "c6": 2.66811798441718, - "c7": 3.0220546111654993 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435505, + "c3": 3.698566805362923, + "c4": 2.9588534442903365, + "c5": 2.219140083217755, + "c6": 1.4794267221451682, + "c7": 0.7397133610725865 }, "rgb": [58, 15, 49] }, @@ -65157,23 +65157,23 @@ "year": 1718, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 8.085401307577811, - "c2": -3.973801715355897, - "c3": 20.499405133514152, - "c4": 8.571828878988534, - "c5": 16.425337504804716, - "c6": 21.861772298411204, - "c7": 9.303309887482293 + "points": { + "c1": 4.572281002873552, + "c2": -19.359964734460007, + "c3": -24.38346670128798, + "c4": -11.775147733716734, + "c5": 18.637376513970132, + "c6": 19.97379882755311, + "c7": 2.269012575212024 }, - "vertexSeeds": { - "c1": 9.067384454534864, - "c2": 9.889775122708246, - "c3": 8.922596894752505, - "c4": 9.697085669671837, - "c5": 9.89160253874122, - "c6": 9.738260729970941, - "c7": 9.042645383840213 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518723, + "c3": 12.367082755432268, + "c4": 9.893666204345811, + "c5": 7.420249653259365, + "c6": 4.946833102172911, + "c7": 2.4734165510864554 }, "rgb": [58, 15, 49] }, @@ -65184,23 +65184,23 @@ "year": 1718, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 21.706778174498925, - "c2": 5.360461694066085, - "c3": 2.520687284237617, - "c4": 24.863048827615575, - "c5": -0.6792845853482099, - "c6": 7.665110136742182, - "c7": -26.726444165412797 + "points": { + "c1": 25.45020356826331, + "c2": -6.097862532451703, + "c3": -0.368632710953694, + "c4": 7.333205747128776, + "c5": -13.354722537768652, + "c6": 6.930414850806709, + "c7": 25.52306389641141 }, - "vertexSeeds": { - "c1": 7.199693819391948, - "c2": 7.336950737425521, - "c3": 6.863397718503983, - "c4": 7.310569570021285, - "c5": 7.063901863763645, - "c6": 7.088256793389779, - "c7": 6.800597343522744 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -65211,23 +65211,23 @@ "year": 1718, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -30.258015906033922, - "c2": -19.05962880630841, - "c3": 24.06414043074134, - "c4": -31.390403669740344, - "c5": -11.703656630613136, - "c6": 25.974175729944342, - "c7": 28.26799381696653 + "points": { + "c1": 18.636897025503764, + "c2": -3.9005923206069433, + "c3": -13.628850595655123, + "c4": 32.98037487316379, + "c5": -19.953511193193563, + "c6": -30.36107550140751, + "c7": -26.247242116990225 }, - "vertexSeeds": { - "c1": 4.061099231448475, - "c2": 4.207375309638882, - "c3": 4.064688478588659, - "c4": 4.137479713742542, - "c5": 3.7830494022598775, - "c6": 3.9079723329808824, - "c7": 4.075183072010878 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808602, + "c3": 5.062413314840496, + "c4": 4.0499306518723985, + "c5": 3.037447988904301, + "c6": 2.024965325936203, + "c7": 1.012482662968098 }, "rgb": [86, 146, 138] }, @@ -65238,23 +65238,23 @@ "year": 1719, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": -39.47256055721543, - "c2": 42.19633542537934, - "c3": -31.619154156838597, - "c4": 10.47074620701759, - "c5": 12.18125783814994, - "c6": -28.91792584279, - "c7": -5.437265560165237 + "points": { + "c1": 11.537032408452312, + "c2": -16.75141357739536, + "c3": 32.170378800535595, + "c4": -35.050314386453785, + "c5": 27.612718592918064, + "c6": 37.44474563123426, + "c7": 0.32043282134591067 }, - "vertexSeeds": { - "c1": 4.246785826903176, - "c2": 5.130572129947874, - "c3": 4.994263333679464, - "c4": 4.4414265367148, - "c5": 4.335376405418035, - "c6": 4.510521754844865, - "c7": 4.022566579167814 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699031, + "c3": 6.148867313915857, + "c4": 4.919093851132688, + "c5": 3.6893203883495134, + "c6": 2.459546925566344, + "c7": 1.2297734627831738 }, "rgb": [77, 76, 132] }, @@ -65265,23 +65265,23 @@ "year": 1718, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 17.591092680652785, - "c2": -24.17830895900795, - "c3": -31.620011372740628, - "c4": -5.898324886606815, - "c5": 15.245711133920814, - "c6": -20.391722230701706, - "c7": 19.322222895032404 + "points": { + "c1": 17.31440425083185, + "c2": 34.69643373381058, + "c3": -14.405498543464251, + "c4": -11.68128354651181, + "c5": -21.990448247041716, + "c6": -34.07489828701474, + "c7": -21.370170852843252 }, - "vertexSeeds": { - "c1": 3.53584456715911, - "c2": 3.052233685629225, - "c3": 3.549753498128951, - "c4": 2.9582749667845087, - "c5": 3.236963889151069, - "c6": 3.0771462546203923, - "c7": 3.2562760754997178 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481274, + "c3": 4.299583911234397, + "c4": 3.439667128987516, + "c5": 2.579750346740639, + "c6": 1.719833564493758, + "c7": 0.8599167822468813 }, "rgb": [86, 146, 138] }, @@ -65292,23 +65292,23 @@ "year": 1718, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 9.635342013344001, - "c2": -28.486724894084052, - "c3": 7.7384723175909755, - "c4": -7.565529811545623, - "c5": -16.141122735524604, - "c6": 23.93348364034088, - "c7": -3.1195274195047276 + "points": { + "c1": 15.730991887146736, + "c2": -12.25520930260782, + "c3": -17.875966885408605, + "c4": 0.09237489449861158, + "c5": 27.9590359457345, + "c6": -16.02181706712665, + "c7": 31.235471593712553 }, - "vertexSeeds": { - "c1": 1.5273715272099966, - "c2": 1.561756261839056, - "c3": 1.6172591892808892, - "c4": 1.4946841919079739, - "c5": 1.5794749764864304, - "c6": 1.6242804682774372, - "c7": 1.6177247691990626 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590844, + "c3": 1.9879796578825704, + "c4": 1.5903837263060563, + "c5": 1.1927877947295422, + "c6": 0.7951918631530281, + "c7": 0.3975959315765141 }, "rgb": [86, 146, 138] }, @@ -65319,23 +65319,23 @@ "year": 1718, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 4.3012363564641625, - "c2": -6.790623675891663, - "c3": -15.830569957592498, - "c4": -9.011168652074197, - "c5": -22.980145688018872, - "c6": -16.322568630971023, - "c7": -6.6224612423601386 + "points": { + "c1": 25.902102824706798, + "c2": 28.978837766056454, + "c3": 14.522391381219958, + "c4": 20.548122332345745, + "c5": 26.998868741997054, + "c6": -5.091111930456854, + "c7": 18.69342128200307 }, - "vertexSeeds": { - "c1": 3.68034530368661, - "c2": 4.1404327307322735, - "c3": 4.323252603591178, - "c4": 4.332824881846351, - "c5": 4.4008972553724846, - "c6": 4.34197280843572, - "c7": 3.713715992629705 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653257, + "c3": 5.547850208044384, + "c4": 4.438280166435506, + "c5": 3.3287101248266286, + "c6": 2.2191400832177517, + "c7": 1.1095700416088774 }, "rgb": [77, 76, 132] }, @@ -65346,23 +65346,23 @@ "year": 1719, "resistanceReported": false, "duration": 41212800, - "curveSeeds": { - "c1": 24.933364260875216, - "c2": 3.3665767812340803, - "c3": 25.331635172429607, - "c4": 25.581606411542573, - "c5": -3.4497851380789726, - "c6": -8.07380216108779, - "c7": 31.86261542874157 + "points": { + "c1": -56.748415810661626, + "c2": -5.362270243402918, + "c3": -27.59169257109461, + "c4": 4.154925965697416, + "c5": -27.151507981740817, + "c6": 40.54123241752209, + "c7": 1.6317069328697826 }, - "vertexSeeds": { - "c1": 3.09983037874631, - "c2": 3.1543982437779032, - "c3": 3.0372481152560162, - "c4": 3.279659740152891, - "c5": 3.4837564947558137, - "c6": 2.9538674178583872, - "c7": 3.1718461739290067 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [77, 76, 132] }, @@ -65373,23 +65373,23 @@ "year": 1718, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -24.34029103533416, - "c2": -3.3272837934684496, - "c3": -26.11549047279653, - "c4": 25.944308821958412, - "c5": -14.490123152858187, - "c6": -10.62697994858447, - "c7": -8.227301766445038 + "points": { + "c1": -20.094954492267043, + "c2": 28.853711967024093, + "c3": 24.397971718842772, + "c4": -7.150394811688621, + "c5": 8.571213981934786, + "c6": 0.9811293529251692, + "c7": -18.767619710642776 }, - "vertexSeeds": { - "c1": 1.0465074864877932, - "c2": 1.0194329940954687, - "c3": 1.0410389468179229, - "c4": 0.9991776355820357, - "c5": 1.0171955893664042, - "c6": 1.0207994405019567, - "c7": 1.006868920850748 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.5533980582524276, + "c3": 1.2944983818770217, + "c4": 1.0355987055016178, + "c5": 0.7766990291262138, + "c6": 0.5177993527508099, + "c7": 0.2588996763754039 }, "rgb": [58, 15, 49] }, @@ -65400,23 +65400,23 @@ "year": 1719, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -11.987642965831697, - "c2": -33.75114307858745, - "c3": -32.54329347223702, - "c4": 18.863849958585014, - "c5": 40.132023043207724, - "c6": -31.016414405070513, - "c7": 14.803018487977255 + "points": { + "c1": 8.933662603848639, + "c2": -36.95360327896369, + "c3": 41.77920191719693, + "c4": 32.995301932878704, + "c5": 18.451325932762117, + "c6": -1.7947129310306877, + "c7": 42.303605871268644 }, - "vertexSeeds": { - "c1": 3.2882229365991695, - "c2": 3.198369095547044, - "c3": 3.3307801326787283, - "c4": 3.026555182915085, - "c5": 3.299429102882782, - "c6": 3.036534366545992, - "c7": 3.11296557928871 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033284, + "c4": 3.328710124826629, + "c5": 2.496532593619973, + "c6": 1.6643550624133177, + "c7": 0.8321775312066556 }, "rgb": [77, 76, 132] }, @@ -65427,23 +65427,23 @@ "year": 1718, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 18.591152847774033, - "c2": -13.384852614271255, - "c3": 20.739701158321715, - "c4": -22.07938732836869, - "c5": -16.81489351602077, - "c6": -25.968572694177016, - "c7": -14.384428592627447 + "points": { + "c1": 17.43735601561214, + "c2": 21.32912904268357, + "c3": -21.661773846420875, + "c4": -7.984976397464351, + "c5": -0.044303916405713295, + "c6": -2.8358166624530554, + "c7": 15.886080571471396 }, - "vertexSeeds": { - "c1": 2.922628016083349, - "c2": 3.4538022306928773, - "c3": 3.584155069221217, - "c4": 3.535222957909853, - "c5": 3.5875141012923546, - "c6": 3.594370743710361, - "c7": 3.099707292684404 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481274, + "c3": 4.299583911234397, + "c4": 3.439667128987516, + "c5": 2.579750346740639, + "c6": 1.719833564493758, + "c7": 0.8599167822468813 }, "rgb": [86, 146, 138] }, @@ -65454,23 +65454,23 @@ "year": 1718, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -28.994640589769766, - "c2": 11.855534142926523, - "c3": -9.476680836309203, - "c4": -38.654865546331735, - "c5": 13.014670488455408, - "c6": 22.012537250637656, - "c7": 23.682337180358786 + "points": { + "c1": -13.010895038078658, + "c2": -36.7673817093996, + "c3": -14.011297900451318, + "c4": -28.432057966013744, + "c5": 30.59241857731766, + "c6": -30.024097250787193, + "c7": -32.55817443082942 }, - "vertexSeeds": { - "c1": 9.289467628808294, - "c2": 8.699950271876386, - "c3": 8.981168172015636, - "c4": 8.71684676839244, - "c5": 8.82650777970165, - "c6": 9.165073017984856, - "c7": 9.621035895806914 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055477, + "c6": 4.6232085067036515, + "c7": 2.3116042533518257 }, "rgb": [58, 15, 49] }, @@ -65481,23 +65481,23 @@ "year": 1719, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 12.696811493976845, - "c2": -41.77291036865227, - "c3": -1.9012806250593641, - "c4": -21.431998518438586, - "c5": 42.76639863960856, - "c6": -22.597284617936115, - "c7": 39.14725324169658 + "points": { + "c1": -40.597773646227, + "c2": 24.341810644684536, + "c3": -10.150699959228866, + "c4": -15.232799653802878, + "c5": -8.872756979213186, + "c6": -15.953443534362219, + "c7": -42.53180976857403 }, - "vertexSeeds": { - "c1": 8.05793272977958, - "c2": 8.578298831689038, - "c3": 8.401607180961445, - "c4": 8.403781395466302, - "c5": 9.104008283009515, - "c6": 8.4184013063618, - "c7": 9.207742823917766 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467402, + "c3": 11.188164586222843, + "c4": 8.950531668978272, + "c5": 6.712898751733701, + "c6": 4.47526583448913, + "c7": 2.237632917244571 }, "rgb": [77, 76, 132] }, @@ -65508,23 +65508,23 @@ "year": 1718, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -5.472194450050839, - "c2": -14.523980261494714, - "c3": 11.820722796145176, - "c4": -17.152024057435263, - "c5": -2.597406018801067, - "c6": -10.162255190028652, - "c7": -22.66028393501709 + "points": { + "c1": -24.370132749025228, + "c2": -23.511935149539028, + "c3": 1.2895655843992344, + "c4": -9.197409032299866, + "c5": 31.460701546826, + "c6": 2.6229192277899287, + "c7": -4.766930139582151 }, - "vertexSeeds": { - "c1": 1.5717938903910378, - "c2": 1.4820539096159333, - "c3": 1.567228906301735, - "c4": 1.4943678183568938, - "c5": 1.5489945104497747, - "c6": 1.6344424811225273, - "c7": 1.4705542726071381 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590844, + "c3": 1.9879796578825704, + "c4": 1.5903837263060563, + "c5": 1.1927877947295422, + "c6": 0.7951918631530281, + "c7": 0.3975959315765141 }, "rgb": [222, 0, 59] }, @@ -65535,23 +65535,23 @@ "year": 1718, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -38.98267981478922, - "c2": -10.493152336837593, - "c3": -38.12067999482645, - "c4": -20.586067962886183, - "c5": -32.83090654577919, - "c6": -37.526288109188705, - "c7": 12.969776076683651 + "points": { + "c1": 38.85650593155896, + "c2": 35.756850360082765, + "c3": 17.11230362935305, + "c4": 5.473318706217498, + "c5": 37.94880583974874, + "c6": -42.2728597693588, + "c7": -39.05920150044176 }, - "vertexSeeds": { - "c1": 6.1326492660158545, - "c2": 6.588644770376219, - "c3": 6.577274946765573, - "c4": 6.658489363455805, - "c5": 6.059671488384059, - "c6": 6.428954529622602, - "c7": 6.357917188530171 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876565, + "c3": 7.975034674063795, + "c4": 6.380027739251039, + "c5": 4.7850208044382825, + "c6": 3.1900138696255116, + "c7": 1.5950069348127558 }, "rgb": [222, 0, 59] }, @@ -65562,23 +65562,23 @@ "year": 1718, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -13.995755110001504, - "c2": 13.836747828021721, - "c3": 24.11930236068678, - "c4": -0.8037762481211708, - "c5": -29.199934046798045, - "c6": -19.234306348360956, - "c7": -2.8041386628783407 + "points": { + "c1": 1.7696111919224151, + "c2": -2.8359294991618818, + "c3": 9.034648327760934, + "c4": -21.389388256380222, + "c5": 5.985273715302782, + "c6": -16.470511441747878, + "c7": 24.80577025125276 }, - "vertexSeeds": { - "c1": 2.5198722065046537, - "c2": 2.2539120972778077, - "c3": 2.5882249677432627, - "c4": 2.6092724822424205, - "c5": 2.654504795023509, - "c6": 2.3687154878213423, - "c7": 2.2945632017888675 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692557, + "c4": 2.588996763754045, + "c5": 1.941747572815534, + "c6": 1.2944983818770226, + "c7": 0.6472491909385113 }, "rgb": [58, 15, 49] }, @@ -65589,23 +65589,23 @@ "year": 1718, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 17.881688047905623, - "c2": -18.08123979652333, - "c3": -14.976627905602525, - "c4": -11.94778967888279, - "c5": -11.784711267506243, - "c6": -0.9853683176689003, - "c7": -13.308446035202701 + "points": { + "c1": -25.67052531679368, + "c2": -19.684018296054496, + "c3": 22.227224603978325, + "c4": 26.020118494363718, + "c5": -23.493813757048553, + "c6": -1.2331786332637016, + "c7": -26.609054189190744 }, - "vertexSeeds": { - "c1": 3.8906003575892067, - "c2": 3.823260298591831, - "c3": 3.846207036489738, - "c4": 3.9514124461594378, - "c5": 3.9234399716612436, - "c6": 3.4607867231634755, - "c7": 3.9144089782249134 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245493, + "c3": 4.738788719371246, + "c4": 3.7910309754969975, + "c5": 2.8432732316227503, + "c6": 1.8955154877484954, + "c7": 0.9477577438742477 }, "rgb": [238, 201, 159] }, @@ -65616,23 +65616,23 @@ "year": 1718, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 2.1621302683566306, - "c2": -3.633088468361219, - "c3": 19.658429847492553, - "c4": -27.44377769325591, - "c5": -4.567357220650493, - "c6": -16.548384351410178, - "c7": -27.90989031040353 + "points": { + "c1": 14.855140777231359, + "c2": -21.65919563712651, + "c3": 26.722169008412227, + "c4": -8.665947721045832, + "c5": 11.20897980067026, + "c6": 1.3796595468392319, + "c7": -9.627439288339218 }, - "vertexSeeds": { - "c1": 2.6218423025474764, - "c2": 2.482897316446877, - "c3": 2.493192045698924, - "c4": 2.5466322702873567, - "c5": 2.295171883379768, - "c6": 2.5808452116884353, - "c7": 2.488731573399806 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506233, + "c3": 3.1900138696255187, + "c4": 2.5520110957004194, + "c5": 1.9140083217753117, + "c6": 1.2760055478502097, + "c7": 0.6380027739251048 }, "rgb": [77, 76, 132] }, @@ -65643,23 +65643,23 @@ "year": 1719, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 20.606613741523574, - "c2": -45.86112315851732, - "c3": -20.82607303883576, - "c4": 18.254651403481063, - "c5": 10.716785772265254, - "c6": 32.49195389039109, - "c7": 9.445388991174617 + "points": { + "c1": -35.23253434626638, + "c2": 6.087414308085918, + "c3": 15.460226978701542, + "c4": -12.842123247850765, + "c5": -4.536218233237257, + "c6": 35.51164030271801, + "c7": 38.402965162843486 }, - "vertexSeeds": { - "c1": 2.038714944034263, - "c2": 2.2015108858415604, - "c3": 2.3305021661403886, - "c4": 2.127408954210617, - "c5": 2.338532459835809, - "c6": 2.395797962807204, - "c7": 2.2219620660571726 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027739, + "c3": 2.889505316689783, + "c4": 2.3116042533518244, + "c5": 1.7337031900138684, + "c6": 1.1558021266759122, + "c7": 0.5779010633379561 }, "rgb": [58, 15, 49] }, @@ -65670,23 +65670,23 @@ "year": 1718, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -2.9992188161841327, - "c2": 10.576595035050659, - "c3": -1.0685208056018993, - "c4": -29.698633207359965, - "c5": -8.012905197466612, - "c6": -37.752896756304786, - "c7": 37.08514277072933 + "points": { + "c1": 31.37759681430267, + "c2": 1.2997799807491575, + "c3": -5.228952845874645, + "c4": -30.03497237884155, + "c5": -28.89955523758665, + "c6": 34.320492413669506, + "c7": -11.79864194807708 }, - "vertexSeeds": { - "c1": 4.2685627944699265, - "c2": 3.829933999445124, - "c3": 4.348248409815685, - "c4": 4.351254315417034, - "c5": 3.882101569547849, - "c6": 3.9500663258415463, - "c7": 3.8191861048635434 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130377, + "c3": 5.247341655108644, + "c4": 4.197873324086918, + "c5": 3.1484049930651907, + "c6": 2.098936662043459, + "c7": 1.0494683310217316 }, "rgb": [86, 146, 138] }, @@ -65697,23 +65697,23 @@ "year": 1719, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 2.057537064597831, - "c2": -23.534082624911086, - "c3": -13.157547258858052, - "c4": 8.218981268973806, - "c5": 5.467633341600028, - "c6": -44.96365271264337, - "c7": -29.270972773744887 + "points": { + "c1": 31.9418762673441, + "c2": 0.46305767142976606, + "c3": -45.583750051481985, + "c4": 29.42576477598783, + "c5": -46.58519353996845, + "c6": 21.858332296284004, + "c7": -34.76540708984868 }, - "vertexSeeds": { - "c1": 12.648229417642135, - "c2": 12.399036273223174, - "c3": 12.221469709983007, - "c4": 10.871791967791884, - "c5": 11.171806748620714, - "c6": 11.246538090197502, - "c7": 11.637918935085565 + "offsets": { + "c1": 21.81229773462783, + "c2": 18.696255201109576, + "c3": 15.5802126675913, + "c4": 12.464170134073042, + "c5": 9.348127600554788, + "c6": 6.232085067036513, + "c7": 3.1160425335182564 }, "rgb": [86, 146, 138] }, @@ -65724,23 +65724,23 @@ "year": 1718, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -8.493073234605813, - "c2": 13.079822934852231, - "c3": -25.067807204637703, - "c4": 8.933229489221269, - "c5": 26.623217997524492, - "c6": 20.060840356798664, - "c7": 18.350950168253725 + "points": { + "c1": 7.543132936373091, + "c2": -33.901389815067596, + "c3": -5.718173725805563, + "c4": -14.124773711415482, + "c5": -0.412955294351562, + "c6": 32.370496730237875, + "c7": 8.122990575594713 }, - "vertexSeeds": { - "c1": 1.6255399804458555, - "c2": 1.405261656197571, - "c3": 1.4783231773247942, - "c4": 1.4392479906766438, - "c5": 1.3828829996401193, - "c6": 1.459689516134065, - "c7": 1.4677814151171666 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.357836338418863, + "c3": 1.9648636153490528, + "c4": 1.57189089227924, + "c5": 1.1789181692094302, + "c6": 0.78594544613962, + "c7": 0.39297272306981 }, "rgb": [222, 0, 59] }, @@ -65751,23 +65751,23 @@ "year": 1718, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 11.765930784166592, - "c2": 32.7010036750721, - "c3": 25.087131260616474, - "c4": 0.8302600586717404, - "c5": -27.677871295341276, - "c6": 26.376374168218547, - "c7": -1.5103480788152552 + "points": { + "c1": 0.3979548950212859, + "c2": -9.790545333902394, + "c3": -1.2917080825456537, + "c4": 10.434365773788649, + "c5": 9.003799927383355, + "c6": -20.608253369726143, + "c7": -35.95093304450149 }, - "vertexSeeds": { - "c1": 5.6263530661384475, - "c2": 5.479770726616228, - "c3": 5.982688284839014, - "c4": 5.876039389703574, - "c5": 5.569899028519087, - "c6": 5.873835028655046, - "c7": 5.734236677158343 + "offsets": { + "c1": 10, + "c2": 8.57142857142858, + "c3": 7.14285714285714, + "c4": 5.714285714285721, + "c5": 4.28571428571428, + "c6": 2.8571428571428603, + "c7": 1.4285714285714408 }, "rgb": [58, 15, 49] }, @@ -65778,23 +65778,23 @@ "year": 1719, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 8.742015711048573, - "c2": 38.34210452630755, - "c3": -26.310870530766266, - "c4": 18.19046522466934, - "c5": 31.154630413105423, - "c6": -20.893017791551816, - "c7": 12.83208415266946 + "points": { + "c1": 37.607774076716254, + "c2": 27.205584470122602, + "c3": -9.587640359433088, + "c4": 39.280228536712315, + "c5": -37.599790828976694, + "c6": -26.42113244616326, + "c7": -23.075189938542504 }, - "vertexSeeds": { - "c1": 4.820818997234234, - "c2": 5.049626847508853, - "c3": 4.968802992157046, - "c4": 4.629993929295693, - "c5": 5.1832828505360995, - "c6": 5.1639015277523495, - "c7": 4.721788627002517 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020804, + "c3": 6.333795654184001, + "c4": 5.067036523347198, + "c5": 3.800277392510402, + "c6": 2.533518261673599, + "c7": 1.2667591308368027 }, "rgb": [238, 201, 159] }, @@ -65805,23 +65805,23 @@ "year": 1718, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 10.0090197599642, - "c2": 12.375975545107199, - "c3": 18.284544323503763, - "c4": 2.517566869095525, - "c5": -24.849359416011392, - "c6": 11.118598943351838, - "c7": 3.597128795369777 + "points": { + "c1": 7.442428756028779, + "c2": 8.982137998002433, + "c3": -4.689492793356251, + "c4": 13.276525296615294, + "c5": -19.474810187679786, + "c6": -26.698105465051118, + "c7": 21.759907444681165 }, - "vertexSeeds": { - "c1": 0.790611848944826, - "c2": 0.7043219952134819, - "c3": 0.7414798450680745, - "c4": 0.7430780929677504, - "c5": 0.7377156021430391, - "c6": 0.7381663890537328, - "c7": 0.7503708694626796 + "offsets": { + "c1": 1.3592233009708738, + "c2": 1.1650485436893203, + "c3": 0.9708737864077664, + "c4": 0.7766990291262148, + "c5": 0.582524271844661, + "c6": 0.3883495145631074, + "c7": 0.1941747572815537 }, "rgb": [58, 15, 49] }, @@ -65832,23 +65832,23 @@ "year": 1719, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": 33.243192369167545, - "c2": 17.449790031743035, - "c3": -47.5673853736034, - "c4": 10.781120324312951, - "c5": -33.94393523946319, - "c6": -50.92257987171949, - "c7": 42.70334022983596 + "points": { + "c1": 33.622971671474104, + "c2": 24.93520336932211, + "c3": 25.678641218883982, + "c4": -32.626203593765865, + "c5": 45.00272540040943, + "c6": -3.3188092498773756, + "c7": 1.4472156224215524 }, - "vertexSeeds": { - "c1": 8.505175119725532, - "c2": 9.212253856965049, - "c3": 7.777076538269265, - "c4": 6.62344445951106, - "c5": 8.928974304597654, - "c6": 8.26610909827986, - "c7": 7.460701427678497 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789185, + "c3": 11.373092926490983, + "c4": 9.098474341192789, + "c5": 6.82385575589459, + "c6": 4.5492371705963945, + "c7": 2.2746185852982004 }, "rgb": [222, 0, 59] }, @@ -65859,23 +65859,23 @@ "year": 1719, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -35.038823968032226, - "c2": -34.85710370254118, - "c3": 25.458339115443806, - "c4": -2.756111807954092, - "c5": 42.58525901806597, - "c6": 15.621959383854424, - "c7": 18.364494927155057 + "points": { + "c1": -37.8333608013121, + "c2": 34.62314080861002, + "c3": 28.491018375739174, + "c4": -19.62641361014513, + "c5": -6.592308000502939, + "c6": -30.480797174188254, + "c7": -3.7308506790471014 }, - "vertexSeeds": { - "c1": 6.356921913342967, - "c2": 6.798015570387781, - "c3": 6.555778095144454, - "c4": 6.588563170047789, - "c5": 6.227937502814345, - "c6": 6.473491515838787, - "c7": 6.2861426430744975 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123439, + "c3": 8.691631992602867, + "c4": 6.953305594082292, + "c5": 5.214979195561719, + "c6": 3.476652797041146, + "c7": 1.738326398520573 }, "rgb": [58, 15, 49] }, @@ -65886,23 +65886,23 @@ "year": 1718, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 10.339080721059439, - "c2": 28.16128952782588, - "c3": -15.494033598869734, - "c4": -26.07255119533219, - "c5": -14.202650482476418, - "c6": -13.439764853094925, - "c7": 29.320453022361896 + "points": { + "c1": -8.172755861221876, + "c2": 33.1865339779577, + "c3": 23.17653427351764, + "c4": -20.01501262119533, + "c5": 37.68890636209914, + "c6": -10.975072482731381, + "c7": 16.181849033560923 }, - "vertexSeeds": { - "c1": 5.853617286295568, - "c2": 8.131005946253161, - "c3": 5.885796170051427, - "c4": 7.782830652376036, - "c5": 8.029198172149801, - "c6": 8.792976052554966, - "c7": 8.134585604402808 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662966, + "c3": 10.725843735552475, + "c4": 8.580674988441979, + "c5": 6.435506241331483, + "c6": 4.290337494220987, + "c7": 2.145168747110496 }, "rgb": [58, 15, 49] }, @@ -65913,23 +65913,23 @@ "year": 1719, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 43.5578421438541, - "c2": -15.711510576369463, - "c3": -2.7903957414643443, - "c4": -34.28837565640818, - "c5": 32.81409845519552, - "c6": -13.233726513322765, - "c7": -37.09871230502299 + "points": { + "c1": -39.93227360711437, + "c2": -36.529117519148244, + "c3": -45.351237556037724, + "c4": 10.435631484297481, + "c5": 35.635747497504056, + "c6": 35.170074913511726, + "c7": -27.814541770176493 }, - "vertexSeeds": { - "c1": 6.3418689029046735, - "c2": 6.758362200988883, - "c3": 6.595646490636121, - "c4": 6.649298267798548, - "c5": 6.47245796164383, - "c6": 6.475053241414266, - "c7": 6.57975036671295 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439673, + "c3": 8.298659269533047, + "c4": 6.6389274156264415, + "c5": 4.979195561719837, + "c6": 3.3194637078132105, + "c7": 1.6597318539066053 }, "rgb": [86, 146, 138] }, @@ -65940,23 +65940,23 @@ "year": 1718, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -7.85172345340548, - "c2": 33.620537178821806, - "c3": 23.72674385374556, - "c4": -34.70551058969812, - "c5": 5.147954982223226, - "c6": 18.94378013038058, - "c7": -9.809034318691332 + "points": { + "c1": 9.554504124402932, + "c2": -0.9961359561077785, + "c3": 34.24243291586325, + "c4": -21.359180566494096, + "c5": -10.002713650387328, + "c6": -9.823069350291238, + "c7": -17.848503800234358 }, - "vertexSeeds": { - "c1": 3.9633629480883865, - "c2": 4.1248999706762515, - "c3": 4.819212084614423, - "c4": 3.881843044978639, - "c5": 4.195036453713533, - "c6": 4.075001083523295, - "c7": 3.93282710290107 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [238, 201, 159] }, @@ -65967,23 +65967,23 @@ "year": 1719, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 14.590536169434024, - "c2": 1.7682358118976467, - "c3": 34.031899525760124, - "c4": 2.6069732475934444, - "c5": -6.628147002828676, - "c6": -29.81918334791945, - "c7": -25.028298446199646 + "points": { + "c1": -16.240406838057428, + "c2": 10.51592767909667, + "c3": 27.937974946002157, + "c4": 24.03284045687834, + "c5": 19.414329901387504, + "c6": 7.580757375972219, + "c7": 14.032672622652697 }, - "vertexSeeds": { - "c1": 5.729208658846449, - "c2": 6.510753659065102, - "c3": 6.025938717919909, - "c4": 6.481045883802798, - "c5": 5.74581935031474, - "c6": 6.745220951592698, - "c7": 6.240168509743671 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [238, 201, 159] }, @@ -65994,23 +65994,23 @@ "year": 1718, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -16.951035164601205, - "c2": -17.731802461590064, - "c3": 17.735891604220257, - "c4": -27.01026925454108, - "c5": 3.7619075876741377, - "c6": 12.17292168441756, - "c7": -19.574124056946346 + "points": { + "c1": -11.725650307196158, + "c2": -2.193946780908014, + "c3": -23.876186023965055, + "c4": 4.6273540943561855, + "c5": 34.37455279818041, + "c6": -17.18982037390222, + "c7": -2.704034111401903 }, - "vertexSeeds": { - "c1": 6.565479774663746, - "c2": 7.135137172930418, - "c3": 6.6803930863830585, - "c4": 7.55401289586333, - "c5": 6.514996260877659, - "c6": 7.062443855408292, - "c7": 6.837137802433942 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571425, + "c3": 9.523809523809526, + "c4": 7.619047619047618, + "c5": 5.714285714285717, + "c6": 3.809523809523809, + "c7": 1.9047619047618995 }, "rgb": [238, 201, 159] }, @@ -66021,23 +66021,23 @@ "year": 1719, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -4.317226670747026, - "c2": -38.631041124307075, - "c3": 32.7500189117127, - "c4": -20.995912886276706, - "c5": 6.0952745524622145, - "c6": -23.759596392942754, - "c7": 12.210566379285886 + "points": { + "c1": 16.4932469279711, + "c2": 3.067788226378795, + "c3": -22.66269884097955, + "c4": -15.719385910966576, + "c5": -40.94796906812354, + "c6": 12.98841799520335, + "c7": -16.015858302059847 }, - "vertexSeeds": { - "c1": 4.037992174227794, - "c2": 4.465941750578373, - "c3": 3.981680225140154, - "c4": 4.247636204379958, - "c5": 4.096471724363913, - "c6": 4.453406964288961, - "c7": 4.374695723131797 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309757, + "c4": 4.308830328247808, + "c5": 3.2316227461858573, + "c6": 2.154415164123907, + "c7": 1.0772075820619569 }, "rgb": [238, 201, 159] }, @@ -66048,23 +66048,23 @@ "year": 1718, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 7.103630333490116, - "c2": -7.346824945799366, - "c3": -8.613133112727585, - "c4": -6.986871583486412, - "c5": 6.898356641038902, - "c6": 19.659136929800717, - "c7": 26.490584467168887 + "points": { + "c1": 17.46660352640547, + "c2": 13.676508358542328, + "c3": 29.470872523909755, + "c4": 11.500734082350597, + "c5": 13.782282050193707, + "c6": 33.60630041795432, + "c7": -26.609854594045025 }, - "vertexSeeds": { - "c1": 2.4772634054809495, - "c2": 2.234693154985215, - "c3": 2.161531228536482, - "c4": 2.181788126068562, - "c5": 2.3602328687831253, - "c6": 2.230229465292363, - "c7": 2.523207813628198 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.7725381414701804, + "c3": 3.1437817845584832, + "c4": 2.5150254276467856, + "c5": 1.8862690707350889, + "c6": 1.257512713823392, + "c7": 0.6287563569116947 }, "rgb": [58, 15, 49] }, @@ -66075,23 +66075,23 @@ "year": 1719, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -32.04692158001599, - "c2": 31.548949952362882, - "c3": -42.315372582561, - "c4": 31.40299231823652, - "c5": 37.22434406983573, - "c6": -39.94731369753164, - "c7": 28.557763115343754 + "points": { + "c1": -36.85446574108843, + "c2": -43.557002251458854, + "c3": -11.528084120374672, + "c4": 3.2975240998443596, + "c5": 14.614948562892451, + "c6": 24.82387478134364, + "c7": -15.713603913160036 }, - "vertexSeeds": { - "c1": 3.60911584062106, - "c2": 3.6113821197029683, - "c3": 3.6457543918621207, - "c4": 3.5110456977052986, - "c5": 3.6026505695572246, - "c6": 3.4489473793163405, - "c7": 3.6814524251375644 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285716, + "c3": 4.761904761904766, + "c4": 3.809523809523809, + "c5": 2.857142857142858, + "c6": 1.9047619047619078, + "c7": 0.9523809523809507 }, "rgb": [222, 0, 59] }, @@ -66102,23 +66102,23 @@ "year": 1719, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 33.064351868262705, - "c2": -8.8842614361321, - "c3": -2.2640323363299615, - "c4": 21.880551557504383, - "c5": -1.598672312474271, - "c6": -20.901238405250545, - "c7": -30.48958910227285 + "points": { + "c1": -0.8884171464292479, + "c2": -21.9807464784833, + "c3": -36.52041564235853, + "c4": -25.749509221308728, + "c5": 35.91967361027626, + "c6": 19.111888450104843, + "c7": 28.1012539070844 }, - "vertexSeeds": { - "c1": 13.186980260819128, - "c2": 13.405547858818922, - "c3": 12.793384579215168, - "c4": 12.803280756231633, - "c5": 13.466824557051066, - "c6": 12.973668163898006, - "c7": 13.107137344817609 + "offsets": { + "c1": 23.268608414239484, + "c2": 19.944521497919563, + "c3": 16.62043458159964, + "c4": 13.296347665279715, + "c5": 9.972260748959767, + "c6": 6.648173832639846, + "c7": 3.324086916319923 }, "rgb": [77, 76, 132] }, @@ -66129,23 +66129,23 @@ "year": 1719, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -35.21185578737868, - "c2": -7.2527338318648695, - "c3": 31.174645517901595, - "c4": 32.00218960374849, - "c5": 7.509854419891752, - "c6": -1.2851916707757525, - "c7": -30.85106953648084 + "points": { + "c1": 38.37013401986064, + "c2": -21.880319152794183, + "c3": -27.499968199384657, + "c4": -5.746532822985337, + "c5": 19.625672232692814, + "c6": -29.198526246527145, + "c7": 26.36962643611271 }, - "vertexSeeds": { - "c1": 7.26240489220109, - "c2": 7.301806064273089, - "c3": 7.875626715753308, - "c4": 7.657834399916818, - "c5": 8.012276157604884, - "c6": 8.384792083366314, - "c7": 7.287493072409067 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697647, + "c3": 10.171058714748034, + "c4": 8.13684697179843, + "c5": 6.102635228848829, + "c6": 4.068423485899215, + "c7": 2.0342117429496134 }, "rgb": [86, 146, 138] }, @@ -66156,23 +66156,23 @@ "year": 1718, "resistanceReported": true, "duration": 18230400, - "curveSeeds": { - "c1": 2.648266739979764, - "c2": -9.006871792683494, - "c3": 9.198788795547802, - "c4": -14.793809258966782, - "c5": 14.927224764100718, - "c6": 27.445623151394972, - "c7": -15.239892330054122 + "points": { + "c1": -25.14818449153741, + "c2": -20.584819958823232, + "c3": 25.76349706434331, + "c4": -22.394817203697016, + "c5": -11.279996842607652, + "c6": -7.302405640125855, + "c7": -4.179784387667397 }, - "vertexSeeds": { - "c1": 3.0719880173745797, - "c2": 3.0467306305190998, - "c3": 3.569008904123322, - "c4": 2.8882871701374917, - "c5": 3.1761631432021975, - "c6": 2.958948409234976, - "c7": 3.1203149846775178 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843272, + "c3": 4.507628294036059, + "c4": 3.6061026352288494, + "c5": 2.704576976421636, + "c6": 1.803051317614423, + "c7": 0.9015256588072131 }, "rgb": [86, 146, 138] }, @@ -66183,23 +66183,23 @@ "year": 1718, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 12.527131314683583, - "c2": -7.960970455274467, - "c3": 6.307694409199055, - "c4": -10.310936596929693, - "c5": 16.872162282958005, - "c6": -0.8350025281097508, - "c7": 20.15431803346409 + "points": { + "c1": 4.786293806030972, + "c2": -0.6777419562746516, + "c3": 24.091924686282116, + "c4": 22.56474012400967, + "c5": 4.270623734994334, + "c6": 10.942268358218453, + "c7": 17.505858836002925 }, - "vertexSeeds": { - "c1": 3.255586151327965, - "c2": 3.3095867385346054, - "c3": 3.382037573143962, - "c4": 3.438386527464843, - "c5": 3.613321336472745, - "c6": 3.6639828713684937, - "c7": 3.5044668818736797 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435503, + "c4": 3.5506241331484056, + "c5": 2.662968099861303, + "c6": 1.7753120665742006, + "c7": 0.8876560332871025 }, "rgb": [222, 0, 59] }, @@ -66210,23 +66210,23 @@ "year": 1719, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 5.74052650998685, - "c2": 22.208267791155293, - "c3": -30.511344926274134, - "c4": -12.319997254388078, - "c5": 31.990373166146583, - "c6": 11.821698044542792, - "c7": 32.17238368348359 + "points": { + "c1": -26.669934387870015, + "c2": 7.548787638175433, + "c3": -23.792305987101727, + "c4": 30.15410298353865, + "c5": 7.951521763526735, + "c6": 16.538020095883255, + "c7": -17.608928934129782 }, - "vertexSeeds": { - "c1": 7.3257914621390805, - "c2": 7.581170109335127, - "c3": 6.438944991969105, - "c4": 6.4987797101127525, - "c5": 6.759751176281329, - "c6": 6.623966370039681, - "c7": 7.451769290324226 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571425, + "c3": 9.523809523809526, + "c4": 7.619047619047618, + "c5": 5.714285714285717, + "c6": 3.809523809523809, + "c7": 1.9047619047618995 }, "rgb": [77, 76, 132] }, @@ -66237,23 +66237,23 @@ "year": 1719, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -3.6904264674142766, - "c2": -11.778716778142307, - "c3": -32.5725658975779, - "c4": -21.560558951730037, - "c5": -14.695865667641318, - "c6": -9.855039465705936, - "c7": -7.191427609093612 + "points": { + "c1": -14.076727125885942, + "c2": -11.24611870001295, + "c3": -33.77218136385631, + "c4": -16.82694192716552, + "c5": 12.847569730079648, + "c6": 22.268721018238033, + "c7": 3.901857273650087 }, - "vertexSeeds": { - "c1": 4.025742626665412, - "c2": 4.114087816623847, - "c3": 4.446420154452415, - "c4": 4.193350103216847, - "c5": 3.9967498897484015, - "c6": 3.831005260812822, - "c7": 4.206665234362497 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291261, + "c3": 5.339805825242717, + "c4": 4.271844660194172, + "c5": 3.203883495145634, + "c6": 2.1359223300970895, + "c7": 1.0679611650485448 }, "rgb": [86, 146, 138] }, @@ -66264,23 +66264,23 @@ "year": 1719, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 28.598359331262046, - "c2": 3.0575814888371795, - "c3": -25.714232493435873, - "c4": 19.595315320570258, - "c5": -19.67774369245609, - "c6": -29.60870166794088, - "c7": 30.881654832182605 + "points": { + "c1": 3.237029911765717, + "c2": 35.81341957963144, + "c3": -25.020878630489868, + "c4": -22.391514670022875, + "c5": 7.582523594858543, + "c6": 19.550098855872378, + "c7": 36.282723608102145 }, - "vertexSeeds": { - "c1": 5.79671650862375, - "c2": 6.074529219167204, - "c3": 5.468712539551001, - "c4": 6.007838448544124, - "c5": 6.035558513038738, - "c6": 6.087337484749583, - "c7": 5.6828195424363415 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.76560332871012, + "c3": 7.3046694405917725, + "c4": 5.843735552473413, + "c5": 4.382801664355053, + "c6": 2.9218677762367067, + "c7": 1.460933888118347 }, "rgb": [86, 146, 138] }, @@ -66291,23 +66291,23 @@ "year": 1718, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 21.945494183012336, - "c2": -0.8190371138664148, - "c3": -24.266369901621356, - "c4": 25.678251238133235, - "c5": -3.9793798521768586, - "c6": 16.688838864838694, - "c7": -26.36477674241352 + "points": { + "c1": -5.1799866862576, + "c2": 14.447183800331409, + "c3": -3.009183252688725, + "c4": 18.95852968564764, + "c5": -28.79810522656463, + "c6": 1.0049745646882045, + "c7": 27.42430882181153 }, - "vertexSeeds": { - "c1": 4.816138959922543, - "c2": 4.276487006180924, - "c3": 4.4634055232004375, - "c4": 4.574208695079593, - "c5": 4.337217584984414, - "c6": 4.018375376467505, - "c7": 3.919256688131142 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [238, 201, 159] }, @@ -66318,23 +66318,23 @@ "year": 1719, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -22.07928731162623, - "c2": 9.093966749099664, - "c3": 0.65811985358566, - "c4": 36.764793088827176, - "c5": 6.9844897852944285, - "c6": 11.9339607017179, - "c7": 11.039466963391867 + "points": { + "c1": 34.48273529455794, + "c2": 30.52579879187124, + "c3": 21.65704883029816, + "c4": 28.8858416463395, + "c5": 38.20204679797919, + "c6": 26.940954162117393, + "c7": -9.672721514388972 }, - "vertexSeeds": { - "c1": 1.7621692674821192, - "c2": 1.911669077299217, - "c3": 1.7806961622137252, - "c4": 1.547700564432359, - "c5": 1.8624336651453552, - "c6": 1.7605098523354679, - "c7": 1.8372074209521108 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.311604253351827, + "c4": 1.849283402681461, + "c5": 1.3869625520110953, + "c6": 0.9246417013407294, + "c7": 0.4623208506703659 }, "rgb": [58, 15, 49] }, @@ -66345,23 +66345,23 @@ "year": 1719, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 23.88463863086799, - "c2": 19.800980081223884, - "c3": -22.695352534960662, - "c4": -16.867196816340318, - "c5": -2.219141575836595, - "c6": -25.716695559873436, - "c7": 29.93080341738112 + "points": { + "c1": 24.59393087050521, + "c2": 28.719074280397344, + "c3": 3.335878604736145, + "c4": 27.19059275088498, + "c5": -35.475194654940346, + "c6": -9.847256407757019, + "c7": -10.952704115616935 }, - "vertexSeeds": { - "c1": 6.571592714178739, - "c2": 6.335793603418462, - "c3": 6.296657456716958, - "c4": 7.1699474749078185, - "c5": 6.462002041684578, - "c6": 7.160379271878194, - "c7": 6.39846818099264 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002778, + "c3": 8.622283865002307, + "c4": 6.897827092001847, + "c5": 5.173370319001389, + "c6": 3.448913546000917, + "c7": 1.7244567730004585 }, "rgb": [77, 76, 132] }, @@ -66372,23 +66372,23 @@ "year": 1719, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -2.43463062443546, - "c2": -6.392720362881988, - "c3": -8.967173268982386, - "c4": -13.341892427189457, - "c5": 25.213235700826335, - "c6": -9.332615241990176, - "c7": -9.54518611914439 + "points": { + "c1": 22.60929839271787, + "c2": 15.655259385306056, + "c3": -12.681781673124242, + "c4": 12.270215245225177, + "c5": -28.143332680347783, + "c6": -26.02593234946579, + "c7": 30.68859730422051 }, - "vertexSeeds": { - "c1": 5.437669161968333, - "c2": 4.998321854836234, - "c3": 4.964379065213155, - "c4": 4.768292662246191, - "c5": 5.397993792755138, - "c6": 5.050505928579399, - "c7": 5.100845036483296 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302358, + "c3": 6.4956079519186325, + "c4": 5.196486361534905, + "c5": 3.897364771151179, + "c6": 2.5982431807674526, + "c7": 1.2991215903837263 }, "rgb": [222, 0, 59] }, @@ -66399,23 +66399,23 @@ "year": 1718, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -12.319147740960315, - "c2": 17.525724218482733, - "c3": -15.553965651879775, - "c4": -3.2264758933986997, - "c5": 3.3232980754272887, - "c6": -14.17020325922785, - "c7": -22.331278575167772 + "points": { + "c1": -3.0732304962544212, + "c2": -15.112564377394154, + "c3": -17.058346678334477, + "c4": 15.260091018666866, + "c5": 4.956027360323052, + "c6": 13.730382278130282, + "c7": -2.4756784175137234 }, - "vertexSeeds": { - "c1": 2.7723260346674277, - "c2": 2.6401878474584373, - "c3": 2.674503498198714, - "c4": 2.6854047610947434, - "c5": 2.5780180246376925, - "c6": 2.723808964126372, - "c7": 2.9140169885563494 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194176, + "c3": 3.559870550161816, + "c4": 2.847896440129449, + "c5": 2.135922330097088, + "c6": 1.4239482200647275, + "c7": 0.7119741100323606 }, "rgb": [58, 15, 49] }, @@ -66426,23 +66426,23 @@ "year": 1719, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 20.01027723696442, - "c2": -29.003060573874684, - "c3": -38.343586281943786, - "c4": -28.47521973897461, - "c5": -9.78149025147287, - "c6": 16.612214148382634, - "c7": 14.221675722012783 + "points": { + "c1": 24.04397948903773, + "c2": 6.868852690206921, + "c3": 37.516365782688574, + "c4": -28.072277524077442, + "c5": -42.050856181854236, + "c6": 7.855350248944113, + "c7": 6.105631011829452 }, - "vertexSeeds": { - "c1": 3.869015840564531, - "c2": 3.877116597699808, - "c3": 3.8804365866943944, - "c4": 3.8751152535276225, - "c5": 3.8784825887218424, - "c6": 3.8796377867289205, - "c7": 3.8784730094860134 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.5755894590846315, + "c3": 4.646324549237224, + "c4": 3.717059639389816, + "c5": 2.7877947295422234, + "c6": 1.8585298196948157, + "c7": 0.9292649098474078 }, "rgb": [77, 76, 132] }, @@ -66453,23 +66453,23 @@ "year": 1719, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -21.192280963949862, - "c2": -16.978310246901316, - "c3": 7.135879852453922, - "c4": -19.199988689308086, - "c5": -23.04182973555227, - "c6": -10.869704612785593, - "c7": -1.6809039922605997 + "points": { + "c1": -17.090111710112453, + "c2": 29.988918409168587, + "c3": 3.0737220090841895, + "c4": 18.043114136899565, + "c5": 19.51336990537386, + "c6": -8.072170630344896, + "c7": 14.710040515454128 }, - "vertexSeeds": { - "c1": 3.835406296301835, - "c2": 3.963170470942341, - "c3": 3.9331916781317235, - "c4": 3.8225938940296484, - "c5": 3.869760265616736, - "c6": 3.828721704081115, - "c7": 3.9106120143509657 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647709, + "c3": 4.9699491447064315, + "c4": 3.9759593157651425, + "c5": 2.9819694868238544, + "c6": 1.9879796578825766, + "c7": 0.9939898289412883 }, "rgb": [58, 15, 49] }, @@ -66480,23 +66480,23 @@ "year": 1719, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -5.500489645393955, - "c2": -1.4913371547554917, - "c3": -23.449240456662235, - "c4": 27.803389724090273, - "c5": -32.07042931521791, - "c6": 10.488640278520272, - "c7": 40.50150812802578 + "points": { + "c1": 35.19867577734049, + "c2": -34.036584663005556, + "c3": -39.0411123186383, + "c4": -24.32323710035735, + "c5": -30.689781470026972, + "c6": 34.93151680764819, + "c7": -34.536699572915936 }, - "vertexSeeds": { - "c1": 4.766516088325971, - "c2": 4.955560835897198, - "c3": 4.757740954070651, - "c4": 4.925300376020795, - "c5": 5.129705917772094, - "c6": 4.795228686693099, - "c7": 4.857747834016972 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.7115117891816976, + "c3": 6.426259824318075, + "c4": 5.141007859454465, + "c5": 3.8557558945908426, + "c6": 2.5705039297272325, + "c7": 1.2852519648636096 }, "rgb": [238, 201, 159] }, @@ -66507,23 +66507,23 @@ "year": 1719, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -20.21417206821127, - "c2": -9.38994384773212, - "c3": 30.40334653745942, - "c4": -4.932464377053396, - "c5": 15.16250858362632, - "c6": 28.19208210455379, - "c7": 5.599803376635805 + "points": { + "c1": 9.818544667362083, + "c2": 15.184924948201399, + "c3": -13.010448879185837, + "c4": 20.82095986928187, + "c5": 30.479945555563795, + "c6": 4.797792905570638, + "c7": 18.200004707094187 }, - "vertexSeeds": { - "c1": 8.371948716618231, - "c2": 9.471811723487072, - "c3": 8.87534474204765, - "c4": 9.35911526354009, - "c5": 8.388104228214916, - "c6": 8.42838273342148, - "c7": 8.793542425916705 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.84188626907073, + "c3": 11.534905224225618, + "c4": 9.22792417938049, + "c5": 6.920943134535365, + "c6": 4.6139620896902525, + "c7": 2.3069810448451262 }, "rgb": [77, 76, 132] }, @@ -66534,23 +66534,23 @@ "year": 1719, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 39.99937663248359, - "c2": -34.98025072561439, - "c3": 12.769570008009971, - "c4": -1.9956799121743103, - "c5": -34.65741155940268, - "c6": -0.9731519032123188, - "c7": 24.004425295203333 + "points": { + "c1": 32.200482576964404, + "c2": -34.71245510967487, + "c3": 26.631435657902742, + "c4": 6.583813695533813, + "c5": -7.572440448621812, + "c6": 0.44652542998252187, + "c7": -5.780144787814542 }, - "vertexSeeds": { - "c1": 6.07629057334228, - "c2": 5.8396727225209775, - "c3": 5.693335526024359, - "c4": 5.645969392563055, - "c5": 5.599954856990271, - "c6": 6.204372203092196, - "c7": 6.127213024551956 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192789, + "c3": 7.582061950993993, + "c4": 6.0656495607951975, + "c5": 4.549237170596402, + "c6": 3.032824780397606, + "c7": 1.516412390198796 }, "rgb": [238, 201, 159] }, @@ -66561,23 +66561,23 @@ "year": 1719, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -6.61695278285309, - "c2": -29.88452053853277, - "c3": 13.093285597312018, - "c4": -39.0943885704134, - "c5": 33.50903434971556, - "c6": 19.961342554751774, - "c7": 18.39256695478806 + "points": { + "c1": 3.249560526415472, + "c2": -22.376540416931995, + "c3": -15.312307376539664, + "c4": -23.48809718570796, + "c5": -17.97001172719332, + "c6": -0.60134959988752, + "c7": 13.245308287711389 }, - "vertexSeeds": { - "c1": 6.886718722271742, - "c2": 7.860720421992814, - "c3": 7.682128985233799, - "c4": 7.249808085722873, - "c5": 6.82845935875338, - "c6": 7.407431350812124, - "c7": 7.760429099826283 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571434, + "c3": 9.523809523809524, + "c4": 7.619047619047623, + "c5": 5.714285714285711, + "c6": 3.8095238095238115, + "c7": 1.9047619047619118 }, "rgb": [77, 76, 132] }, @@ -66588,23 +66588,23 @@ "year": 1719, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -10.029340892368428, - "c2": 1.4191435623224535, - "c3": 6.607079230445713, - "c4": -4.888610671645566, - "c5": 14.706984396101468, - "c6": 8.910220505133616, - "c7": 24.622823801959036 + "points": { + "c1": -3.333290725976582, + "c2": -38.48399083948367, + "c3": 38.11865452227207, + "c4": -16.709207214757924, + "c5": -39.97121814536903, + "c6": 21.58358786453269, + "c7": 28.971447246769216 }, - "vertexSeeds": { - "c1": 3.2054643905480993, - "c2": 3.382822940127624, - "c3": 3.355896883870082, - "c4": 3.305682307591729, - "c5": 3.440255913541916, - "c6": 3.605612130417479, - "c7": 3.4860861805598184 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601941, + "c3": 4.368932038834951, + "c4": 3.495145631067961, + "c5": 2.6213592233009706, + "c6": 1.7475728155339805, + "c7": 0.8737864077669902 }, "rgb": [222, 0, 59] }, @@ -66615,23 +66615,23 @@ "year": 1719, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": 37.89298861849182, - "c2": -44.19900094521387, - "c3": -54.47439334557595, - "c4": -6.509245501715839, - "c5": -4.661612327651291, - "c6": -15.741428044307654, - "c7": -34.354376213189745 + "points": { + "c1": -18.999582248735386, + "c2": -34.70580396418629, + "c3": -56.89316344497662, + "c4": 49.95576722221367, + "c5": -27.456790736555224, + "c6": 56.86566151144378, + "c7": 57.32505448761322 }, - "vertexSeeds": { - "c1": 1.037657002216904, - "c2": 1.1522744367327518, - "c3": 1.3247847041843321, - "c4": 1.0769600010069302, - "c5": 1.0070160328205446, - "c6": 1.0544745455618734, - "c7": 1.1562077223826057 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361993, + "c3": 1.6874711049468334, + "c4": 1.3499768839574662, + "c5": 1.0124826629681003, + "c6": 0.6749884419787331, + "c7": 0.33749422098936654 }, "rgb": [77, 76, 132] }, @@ -66642,23 +66642,23 @@ "year": 1719, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -6.293801167213481, - "c2": -12.133907986298116, - "c3": 13.32211367950952, - "c4": 5.206653274339956, - "c5": -34.48551303971414, - "c6": -7.700818837506546, - "c7": -27.796606776074235 + "points": { + "c1": -36.71011284013128, + "c2": -32.362629194513666, + "c3": -25.504845853921214, + "c4": 29.28925504572966, + "c5": 13.411899081057683, + "c6": 11.431711362852973, + "c7": 18.71854307193972 }, - "vertexSeeds": { - "c1": 4.838082901554404, - "c2": 4.838082901554404, - "c3": 4.838082901554404, - "c4": 4.838082901554404, - "c5": 4.838082901554404, - "c6": 4.838082901554404, - "c7": 4.838082901554404 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -66669,23 +66669,23 @@ "year": 1719, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 31.819429604786627, - "c2": 21.095521812135893, - "c3": -16.088140152180223, - "c4": -33.49961332446509, - "c5": -24.039625336239595, - "c6": -17.91880376766712, - "c7": -22.059981253249315 + "points": { + "c1": 35.70589467257536, + "c2": 5.925225542182012, + "c3": 6.289818660717614, + "c4": -8.170115398914042, + "c5": -10.625347838405787, + "c6": 7.591550728500522, + "c7": -23.99083587863163 }, - "vertexSeeds": { - "c1": 3.442273190023048, - "c2": 3.7680323954083397, - "c3": 3.091061930785839, - "c4": 3.792021128232897, - "c5": 3.481047777531089, - "c6": 3.126812001089099, - "c7": 3.20414812379181 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703654, + "c4": 3.698566805362922, + "c5": 2.7739251040221906, + "c6": 1.8492834026814589, + "c7": 0.9246417013407318 }, "rgb": [77, 76, 132] }, @@ -66696,23 +66696,23 @@ "year": 1719, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -5.170110367396436, - "c2": -20.331309390290244, - "c3": -3.8048615973636473, - "c4": -21.500664002443486, - "c5": -32.32742900769697, - "c6": -19.348730288072602, - "c7": 16.17351444507559 + "points": { + "c1": 2.553422342471663, + "c2": 7.112877879702616, + "c3": -21.22589938598598, + "c4": -31.099518217110873, + "c5": 8.959727869549553, + "c6": 28.507985667538733, + "c7": 26.977187131801216 }, - "vertexSeeds": { - "c1": 4.691000979435462, - "c2": 4.2608040865938825, - "c3": 4.788831069961496, - "c4": 5.117285292801909, - "c5": 5.240146768409209, - "c6": 4.354361933965071, - "c7": 5.2477829255483694 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061029, + "c3": 6.35691169671752, + "c4": 5.0855293573740195, + "c5": 3.8141470180305146, + "c6": 2.5427646786870097, + "c7": 1.2713823393435049 }, "rgb": [86, 146, 138] }, @@ -66723,23 +66723,23 @@ "year": 1719, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 28.089037786889165, - "c2": 34.5322266930998, - "c3": -36.02984076190423, - "c4": -4.024736949553862, - "c5": -20.549692412766053, - "c6": 30.097536410038686, - "c7": -9.530642249125773 + "points": { + "c1": -3.7635050721925083, + "c2": -16.098259431835874, + "c3": -32.54092077204264, + "c4": -33.6744316832144, + "c5": -2.2397874019954145, + "c6": -14.857660197051235, + "c7": -25.26865553284132 }, - "vertexSeeds": { - "c1": 3.3759703196722395, - "c2": 3.380779817911632, - "c3": 3.131856929906689, - "c4": 3.1324385094668488, - "c5": 2.9600271416723185, - "c6": 3.0217433105219955, - "c7": 3.170388463607436 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [238, 201, 159] }, @@ -66750,23 +66750,23 @@ "year": 1719, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 12.969871558831763, - "c2": -9.287760980460117, - "c3": 15.579619064193032, - "c4": 22.585629330374985, - "c5": -25.586009891190294, - "c6": -31.04471265548479, - "c7": -37.38370115515765 + "points": { + "c1": 30.385288783530655, + "c2": 32.16172871343731, + "c3": 18.451438589492064, + "c4": 23.50149617690097, + "c5": 29.378261050329, + "c6": -29.249965643663465, + "c7": 17.965969629388674 }, - "vertexSeeds": { - "c1": 7.074548923711163, - "c2": 6.25271171350289, - "c3": 7.085804419501741, - "c4": 6.594538154142972, - "c5": 6.37830553355054, - "c6": 6.686674170022101, - "c7": 5.945695948456176 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [58, 15, 49] }, @@ -66777,23 +66777,23 @@ "year": 1719, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": -0.6821792259159025, - "c2": 14.396118839614573, - "c3": -42.90231967832317, - "c4": -1.036112504880606, - "c5": -19.221519359507678, - "c6": 9.32231726196597, - "c7": -4.4606882522240525 + "points": { + "c1": 11.73520976875178, + "c2": 18.426205671684677, + "c3": -22.563368651028558, + "c4": -15.572865676115065, + "c5": -35.85704809093634, + "c6": 11.014000809915451, + "c7": -39.21915228188577 }, - "vertexSeeds": { - "c1": 2.0921850606576298, - "c2": 2.0230809435352195, - "c3": 2.3173094644215806, - "c4": 2.1941822176010355, - "c5": 2.0442309486858607, - "c6": 2.1739434715730277, - "c7": 2.1345760400394553 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070725, + "c3": 2.8201571890892296, + "c4": 2.256125751271383, + "c5": 1.6920943134535362, + "c6": 1.1280628756356899, + "c7": 0.5640314378178465 }, "rgb": [222, 0, 59] }, @@ -66804,23 +66804,23 @@ "year": 1719, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 1.4597502440172612, - "c2": 18.177151844331174, - "c3": -4.298148230454984, - "c4": -6.326648280191989, - "c5": -2.6630983747044787, - "c6": 6.0856851605031075, - "c7": 16.016243349393097 + "points": { + "c1": 9.023751622252089, + "c2": -15.219483857301697, + "c3": 1.197872144141673, + "c4": 22.874880139096735, + "c5": 17.9220851642249, + "c6": -24.047201900905648, + "c7": -1.1678929440221317 }, - "vertexSeeds": { - "c1": 6.394087995502064, - "c2": 6.381559000285111, - "c3": 5.780322702072094, - "c4": 5.4522417022194425, - "c5": 5.476149019841982, - "c6": 5.637670997994293, - "c7": 6.653367228386336 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [222, 0, 59] }, @@ -66831,23 +66831,23 @@ "year": 1719, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 36.61117382946292, - "c2": -1.3509941565464203, - "c3": -36.861842854324536, - "c4": 20.376206112197686, - "c5": -45.37687497544508, - "c6": 33.97993429741229, - "c7": -13.835736236455965 + "points": { + "c1": 21.60973395588605, + "c2": 37.49115368948228, + "c3": 29.183025805426617, + "c4": 52.078040575751054, + "c5": -16.241344717800473, + "c6": 42.82293080853423, + "c7": 8.192568410470038 }, - "vertexSeeds": { - "c1": 8.924113560934558, - "c2": 9.237942818325326, - "c3": 9.14772574641725, - "c4": 8.948766406487701, - "c5": 9.506629229898465, - "c6": 9.644771619192415, - "c7": 9.320741823507216 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110949, + "c3": 11.55802126675914, + "c4": 9.246417013407306, + "c5": 6.9348127600554745, + "c6": 4.6232085067036435, + "c7": 2.3116042533518315 }, "rgb": [222, 0, 59] }, @@ -66858,23 +66858,23 @@ "year": 1719, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -5.825515428510908, - "c2": -27.59072148605315, - "c3": 7.641876167902254, - "c4": -14.552561687935327, - "c5": -6.971645503259424, - "c6": -3.8194804108534797, - "c7": -28.71090799115466 + "points": { + "c1": -10.298748852470823, + "c2": 24.26903624014249, + "c3": -15.132179905399425, + "c4": -30.491508363932176, + "c5": 29.267345567599044, + "c6": 0.26157247902300895, + "c7": -33.82965338912314 }, - "vertexSeeds": { - "c1": 1.9539171340781667, - "c2": 1.9378676369100816, - "c3": 2.020420290225114, - "c4": 1.8982820456324037, - "c5": 1.9744766368135256, - "c6": 1.9092843513056303, - "c7": 1.9305380039566298 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244114, + "c3": 2.5427646786870066, + "c4": 2.0342117429496063, + "c5": 1.5256588072122057, + "c6": 1.0171058714748011, + "c7": 0.5085529357374006 }, "rgb": [58, 15, 49] }, @@ -66885,23 +66885,23 @@ "year": 1719, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -10.808793844238984, - "c2": 10.580629026767134, - "c3": -14.896033005214857, - "c4": -24.039302428899, - "c5": 15.490563244582653, - "c6": -16.41827524251104, - "c7": -15.112662524559516 + "points": { + "c1": 18.07473085270309, + "c2": 14.889014761167303, + "c3": 12.043680409970918, + "c4": -22.572299811808037, + "c5": 4.652252807875506, + "c6": 27.016622792596614, + "c7": -23.708495166463614 }, - "vertexSeeds": { - "c1": 2.5981012414336084, - "c2": 2.4324368988270915, - "c3": 2.894967594375996, - "c4": 2.420231412934586, - "c5": 2.7816752319589964, - "c6": 2.6784428349246756, - "c7": 2.70080123562406 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.5136384650947767, + "c4": 2.8109107720758195, + "c5": 2.1081830790568667, + "c6": 1.4054553860379098, + "c7": 0.7027276930189549 }, "rgb": [238, 201, 159] }, @@ -66912,23 +66912,23 @@ "year": 1719, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -21.890794429567705, - "c2": 13.996456203542607, - "c3": -7.880846609966422, - "c4": 11.459306104554877, - "c5": 28.295178441467655, - "c6": 19.358618542726482, - "c7": -23.102729985274344 + "points": { + "c1": 33.96635485482604, + "c2": 14.115490533031569, + "c3": -15.101537796256341, + "c4": -32.85043498241653, + "c5": -22.45385124143089, + "c6": -25.189229125001, + "c7": -16.218355474682777 }, - "vertexSeeds": { - "c1": 2.655834823822638, - "c2": 2.918747937512161, - "c3": 2.987773233898824, - "c4": 2.967431962868028, - "c5": 2.9151777176075266, - "c6": 2.7275090867271583, - "c7": 2.7170297317086316 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837724, + "c3": 3.9297272306981035, + "c4": 3.1437817845584863, + "c5": 2.3578363384188648, + "c6": 1.5718908922792432, + "c7": 0.7859454461396216 }, "rgb": [86, 146, 138] }, @@ -66939,23 +66939,23 @@ "year": 1719, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 31.64257240357668, - "c2": -23.39924983311866, - "c3": 11.372518620031443, - "c4": 34.50963479702101, - "c5": 20.730216063198, - "c6": 11.489096942853479, - "c7": 23.12583162204148 + "points": { + "c1": 0.46354185338525866, + "c2": 39.18598717330539, + "c3": 1.8420424471071968, + "c4": 24.52790531678039, + "c5": 32.700572096010504, + "c6": -8.661909787901848, + "c7": -39.55319686787654 }, - "vertexSeeds": { - "c1": 1.645221777399967, - "c2": 1.6867462372430873, - "c3": 1.4159058470310528, - "c4": 1.5904013039074283, - "c5": 1.5206978295507687, - "c6": 1.430898794516567, - "c7": 1.4453430632757331 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.4410540915395282, + "c3": 2.0342117429496063, + "c4": 1.6273693943596848, + "c5": 1.2205270457697628, + "c6": 0.8136846971798437, + "c7": 0.40684234858992185 }, "rgb": [77, 76, 132] }, @@ -66966,23 +66966,23 @@ "year": 1719, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -26.373727962281308, - "c2": -20.96054637162168, - "c3": -12.470575241871853, - "c4": -5.871950961173276, - "c5": -30.652545554324735, - "c6": 18.460251113450987, - "c7": 25.66208578020108 + "points": { + "c1": 23.69664990774178, + "c2": -11.920915289776058, + "c3": -31.668225760793284, + "c4": 27.388623918865072, + "c5": -12.268013465487343, + "c6": 28.13962862552568, + "c7": 0.8882579527797532 }, - "vertexSeeds": { - "c1": 4.2388543823926295, - "c2": 3.652771448646577, - "c3": 3.8367879744219255, - "c4": 4.047671148820859, - "c5": 4.151544494543067, - "c6": 3.93551760899215, - "c7": 3.9768025467001777 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.3245492371705945, + "c3": 5.270457697642166, + "c4": 4.216366158113731, + "c5": 3.1622746185852972, + "c6": 2.1081830790568685, + "c7": 1.0540915395284343 }, "rgb": [58, 15, 49] }, @@ -66993,23 +66993,23 @@ "year": 1719, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -8.409571626019634, - "c2": -0.4667509419440776, - "c3": 29.88440318288589, - "c4": -6.366261149959698, - "c5": -12.25224822696348, - "c6": -11.427135770086128, - "c7": 27.261637697089938 + "points": { + "c1": 15.263192129757272, + "c2": -21.99458858216519, + "c3": -12.493200461907819, + "c4": 5.13414892812596, + "c5": 29.93110643568994, + "c6": 15.39529075210988, + "c7": 27.227956913813486 }, - "vertexSeeds": { - "c1": 4.212322186052702, - "c2": 4.594596583010294, - "c3": 4.076152812885245, - "c4": 3.956753176030117, - "c5": 3.7139861125547795, - "c6": 3.757475828015179, - "c7": 4.112369834551672 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653258, + "c3": 5.54785020804438, + "c4": 4.438280166435508, + "c5": 3.3287101248266313, + "c6": 2.219140083217754, + "c7": 1.109570041608877 }, "rgb": [222, 0, 59] }, @@ -67020,23 +67020,23 @@ "year": 1719, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 9.581958710253957, - "c2": -16.214688325305854, - "c3": 13.50435930161079, - "c4": 11.03027728864734, - "c5": -14.362979541693528, - "c6": -5.967063828618919, - "c7": 10.516365829486176 + "points": { + "c1": -10.156843748258494, + "c2": 6.420398636294536, + "c3": -18.001874702379073, + "c4": -12.040853491500625, + "c5": 19.73523185851431, + "c6": 23.036623490583118, + "c7": -2.5127297886309847 }, - "vertexSeeds": { - "c1": 2.009914129269138, - "c2": 2.2960716707553006, - "c3": 2.1772852166912213, - "c4": 2.0350149054359985, - "c5": 2.1144018699651848, - "c6": 2.0067108658437367, - "c7": 1.9694669422529685 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.384188626907074, + "c3": 2.8201571890892287, + "c4": 2.2561257512713837, + "c5": 1.6920943134535382, + "c6": 1.128062875635693, + "c7": 0.5640314378178477 }, "rgb": [238, 201, 159] }, @@ -67047,23 +67047,23 @@ "year": 1720, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -1.734062664619941, - "c2": 24.33918588717627, - "c3": 35.38578296455758, - "c4": 33.25387171155346, - "c5": -41.45723448932496, - "c6": -18.617012480727205, - "c7": 9.400672762474734 + "points": { + "c1": 15.540904659797803, + "c2": -3.8474639320464377, + "c3": -18.545773645000807, + "c4": -19.405908950583232, + "c5": -17.83342608047795, + "c6": 8.01759105744253, + "c7": 2.518455108773452 }, - "vertexSeeds": { - "c1": 6.897678860839321, - "c2": 7.471870048534799, - "c3": 7.2967404715993185, - "c4": 7.453620364648291, - "c5": 7.399120224166098, - "c6": 6.721845991396904, - "c7": 7.7116362982848425 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.09570041608876, + "c3": 9.246417013407305, + "c4": 7.39713361072584, + "c5": 5.5478502080443866, + "c6": 3.69856680536292, + "c7": 1.8492834026814664 }, "rgb": [58, 15, 49] }, @@ -67074,23 +67074,23 @@ "year": 1719, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -5.830407550613092, - "c2": 4.383600287232859, - "c3": 20.86547206998231, - "c4": 0.7255831002093132, - "c5": 4.917357963728314, - "c6": 29.10813081780148, - "c7": -21.958984087922282 + "points": { + "c1": -33.43802023392073, + "c2": 8.355989189486074, + "c3": 15.068610471678774, + "c4": -8.022815854864955, + "c5": -0.0026422758627191456, + "c6": -30.091513368092826, + "c7": 6.642756799014656 }, - "vertexSeeds": { - "c1": 4.70456144631608, - "c2": 5.174339358195806, - "c3": 5.202813900605058, - "c4": 4.910247955731989, - "c5": 4.908759212623021, - "c6": 5.254180956004603, - "c7": 4.949547753500988 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342574, + "c3": 6.518723994452151, + "c4": 5.214979195561717, + "c5": 3.9112343966712935, + "c6": 2.6074895977808583, + "c7": 1.3037447988904354 }, "rgb": [238, 201, 159] }, @@ -67101,23 +67101,23 @@ "year": 1719, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": 10.331704206523128, - "c2": -6.238723243126582, - "c3": 8.967273812985407, - "c4": -17.121817423381312, - "c5": 9.683739153968748, - "c6": 12.498473970822005, - "c7": -10.115539431538306 + "points": { + "c1": 15.48620879530155, + "c2": 19.722161527711727, + "c3": -1.579786114516299, + "c4": 6.275156585341993, + "c5": -14.029277178801573, + "c6": 15.170193656751529, + "c7": 4.419769496233272 }, - "vertexSeeds": { - "c1": 3.5754400421495323, - "c2": 3.5979136883821665, - "c3": 3.5228035992301217, - "c4": 3.629284576156127, - "c5": 3.496407617317344, - "c6": 3.426118031225842, - "c7": 3.1577497784037254 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.39204808136847, + "c4": 3.513638465094776, + "c5": 2.635228848821082, + "c6": 1.756819232547388, + "c7": 0.878409616273694 }, "rgb": [58, 15, 49] }, @@ -67128,23 +67128,23 @@ "year": 1719, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 35.54988874739526, - "c2": 15.475146341969598, - "c3": -31.689712549232993, - "c4": -3.716358391388816, - "c5": 34.87947287345078, - "c6": -27.598648986998555, - "c7": -18.012422754224776 + "points": { + "c1": -26.759447517443412, + "c2": -15.67323148398598, + "c3": -15.408993912925258, + "c4": -7.24112116713496, + "c5": 10.739915896454761, + "c6": -38.294349440250066, + "c7": 22.30101153197409 }, - "vertexSeeds": { - "c1": 2.004722079097698, - "c2": 2.0671275862157805, - "c3": 2.213245727514618, - "c4": 1.986381637878523, - "c5": 2.2949616974613387, - "c6": 1.9680418729513063, - "c7": 2.2420509649308564 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027738, + "c3": 2.8895053166897826, + "c4": 2.3116042533518253, + "c5": 1.73370319001387, + "c6": 1.1558021266759126, + "c7": 0.5779010633379554 }, "rgb": [77, 76, 132] }, @@ -67155,23 +67155,23 @@ "year": 1719, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -14.390678897219015, - "c2": 28.857290970752587, - "c3": 1.4666114082397854, - "c4": -12.027305174831827, - "c5": -2.0069770082095104, - "c6": -28.502666963928867, - "c7": 8.618836333587964 + "points": { + "c1": 35.38768360891273, + "c2": 17.344720698651166, + "c3": 8.615916329779239, + "c4": -10.25501897360483, + "c5": -7.009940831286681, + "c6": -17.88960154197785, + "c7": 29.061417539201962 }, - "vertexSeeds": { - "c1": 3.47859487502299, - "c2": 3.210412662171349, - "c3": 3.3982656364687704, - "c4": 3.6909871413010187, - "c5": 3.798320398611636, - "c6": 3.6320450435930276, - "c7": 3.333565026648242 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406378, + "c3": 4.8312528895053175, + "c4": 3.8650023116042527, + "c5": 2.898751733703191, + "c6": 1.9325011558021263, + "c7": 0.9662505779010613 }, "rgb": [222, 0, 59] }, @@ -67182,23 +67182,23 @@ "year": 1719, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 18.60279738786106, - "c2": 2.507329273544485, - "c3": 37.959688366593035, - "c4": 34.5678445525833, - "c5": 12.203703777926528, - "c6": 22.822273677803018, - "c7": -17.601492371981767 + "points": { + "c1": -25.901095559189184, + "c2": 2.3206447519109403, + "c3": -8.817561920856605, + "c4": 34.68390171783904, + "c5": -8.31391809984963, + "c6": -33.866168436068364, + "c7": -0.4758844656065051 }, - "vertexSeeds": { - "c1": 2.533707233880819, - "c2": 2.4288453494533275, - "c3": 2.209692280676107, - "c4": 2.2868131185448455, - "c5": 2.6490082524333975, - "c6": 2.2592330096194297, - "c7": 2.4051104557299015 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590845, + "c3": 3.2131299121590366, + "c4": 2.5705039297272303, + "c5": 1.9278779472954237, + "c6": 1.2852519648636151, + "c7": 0.6426259824318064 }, "rgb": [86, 146, 138] }, @@ -67209,23 +67209,23 @@ "year": 1719, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -12.586524867776053, - "c2": -9.662835532320209, - "c3": 9.559172522199972, - "c4": 28.584977720777985, - "c5": 11.70159445357919, - "c6": -27.691410657898224, - "c7": 24.936463303832106 + "points": { + "c1": 6.710395156275197, + "c2": 25.293595488348323, + "c3": 4.461716409322619, + "c4": 27.875584583964717, + "c5": -16.803066086254844, + "c6": 12.549799886599224, + "c7": 31.50003668316988 }, - "vertexSeeds": { - "c1": 3.4556382963625634, - "c2": 3.2415635071033715, - "c3": 3.456030632740601, - "c4": 3.3575973607205882, - "c5": 3.1669705239821755, - "c6": 3.229698885480571, - "c7": 3.212256152589205 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.9930651872399405, + "c3": 4.160887656033289, + "c4": 3.328710124826627, + "c5": 2.496532593619975, + "c6": 1.6643550624133134, + "c7": 0.8321775312066522 }, "rgb": [86, 146, 138] }, @@ -67236,23 +67236,23 @@ "year": 1719, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -3.070766379239714, - "c2": 19.313814090200736, - "c3": -30.772429447030422, - "c4": -3.861703150287859, - "c5": -13.981747979494536, - "c6": 22.993063288450436, - "c7": 13.631673798166595 + "points": { + "c1": 17.1356200438968, + "c2": 18.172095110907193, + "c3": 4.178009038088554, + "c4": -20.142687625036558, + "c5": 5.184275239487697, + "c6": 13.951332701647388, + "c7": 5.551051048455953 }, - "vertexSeeds": { - "c1": 2.45346408314391, - "c2": 2.160773279545887, - "c3": 2.142455069949382, - "c4": 2.0555613330844253, - "c5": 2.479470679069192, - "c6": 2.0524940203243083, - "c7": 2.1787732024332604 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092915, + "c3": 3.05131761442441, + "c4": 2.441054091539529, + "c5": 1.8307905686546457, + "c6": 1.2205270457697646, + "c7": 0.6102635228848811 }, "rgb": [222, 0, 59] }, @@ -67263,23 +67263,23 @@ "year": 1719, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -9.394184769340985, - "c2": -5.594551242928432, - "c3": -22.496979597166163, - "c4": 19.89558682185058, - "c5": 4.4797092793373565, - "c6": -23.410782358477967, - "c7": -19.753395307444592 + "points": { + "c1": -8.090434196659555, + "c2": -26.19842046808885, + "c3": 18.31139015202443, + "c4": -27.689781660418024, + "c5": -8.203528718339378, + "c6": -21.704998611667584, + "c7": -4.47786354659565 }, - "vertexSeeds": { - "c1": 4.690224404580559, - "c2": 4.669146085952258, - "c3": 4.698232016618319, - "c4": 4.723999241468243, - "c5": 4.8760374080898705, - "c6": 4.868420802375551, - "c7": 4.820766990746604 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216363, + "c3": 5.871474803513633, + "c4": 4.697179842810921, + "c5": 3.52288488210819, + "c6": 2.3485899214054604, + "c7": 1.1742949607027302 }, "rgb": [86, 146, 138] }, @@ -67290,23 +67290,23 @@ "year": 1719, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 26.03211766512036, - "c2": 1.2320110819268422, - "c3": 24.076958319317413, - "c4": -10.596033602644273, - "c5": 19.715263360615232, - "c6": 31.65441566218807, - "c7": -2.7456205320385294 + "points": { + "c1": -8.715772555026724, + "c2": 18.809110375774566, + "c3": -16.34117224835286, + "c4": 30.933679327706592, + "c5": 24.21989127665522, + "c6": -17.68148814542898, + "c7": -22.966101962156152 }, - "vertexSeeds": { - "c1": 3.4395012897230095, - "c2": 3.288145315447401, - "c3": 3.5694777189224283, - "c4": 3.190387190029571, - "c5": 3.345791368769707, - "c6": 3.176927735414035, - "c7": 3.6015499825707966 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.6232085067036515, + "c4": 3.6985668053629226, + "c5": 2.77392510402219, + "c6": 1.8492834026814613, + "c7": 0.9246417013407332 }, "rgb": [58, 15, 49] }, @@ -67317,23 +67317,23 @@ "year": 1719, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -31.91675017308432, - "c2": -20.729713379040884, - "c3": 29.471055869380486, - "c4": -17.03461437769674, - "c5": 9.295984925336512, - "c6": -29.211871542595883, - "c7": -24.739572671483018 + "points": { + "c1": 33.27033759160915, + "c2": 31.997406813064657, + "c3": 12.989675093705557, + "c4": -21.640724444112344, + "c5": -22.474472837782066, + "c6": -34.10265440252292, + "c7": -29.449778132306307 }, - "vertexSeeds": { - "c1": 4.13860103626943, - "c2": 4.13860103626943, - "c3": 4.13860103626943, - "c4": 4.13860103626943, - "c5": 4.13860103626943, - "c6": 4.13860103626943, - "c7": 4.13860103626943 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -67344,23 +67344,23 @@ "year": 1719, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 3.5483913851150604, - "c2": 3.691071684944909, - "c3": 12.317356977835672, - "c4": -5.905780472137337, - "c5": -30.54432293599293, - "c6": -12.145562677602655, - "c7": -15.160973025752778 + "points": { + "c1": -9.960010272418693, + "c2": 3.372321665344508, + "c3": -7.232992184383903, + "c4": -5.375385904897563, + "c5": -10.886513093180472, + "c6": 14.249670455899846, + "c7": -12.461797449818466 }, - "vertexSeeds": { - "c1": 10.903442476998714, - "c2": 11.206785726674173, - "c3": 11.159646457945462, - "c4": 11.261235861474841, - "c5": 10.910956651518404, - "c6": 11.079132696720336, - "c7": 11.056022186115142 + "offsets": { + "c1": 19.25566343042071, + "c2": 16.504854368932023, + "c3": 13.75404530744339, + "c4": 11.0032362459547, + "c5": 8.252427184466011, + "c6": 5.501618122977323, + "c7": 2.750809061488688 }, "rgb": [58, 15, 49] }, @@ -67371,23 +67371,23 @@ "year": 1719, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 28.324653785487072, - "c2": -10.997688990144304, - "c3": 36.120654502102084, - "c4": 20.13984963622225, - "c5": 2.8065580636684757, - "c6": -30.341169580777148, - "c7": -10.337050037881063 + "points": { + "c1": 13.897853081598178, + "c2": -24.830296755795747, + "c3": 34.35546388095982, + "c4": 24.65993927886366, + "c5": 45.2233322577745, + "c6": 34.821315612361246, + "c7": 21.73541119456435 }, - "vertexSeeds": { - "c1": 2.0831467579417353, - "c2": 1.9339532604886651, - "c3": 1.9908155314462535, - "c4": 2.104155606635958, - "c5": 2.0267882332723848, - "c6": 2.090995027552174, - "c7": 2.196988417107458 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.190013869625521, + "c3": 2.6583448913546013, + "c4": 2.1266759130836816, + "c5": 1.5950069348127616, + "c6": 1.063337956541842, + "c7": 0.5316689782709222 }, "rgb": [58, 15, 49] }, @@ -67398,23 +67398,23 @@ "year": 1719, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -36.49812068535683, - "c2": -31.633258401653947, - "c3": 36.345280180047645, - "c4": -28.3605159631573, - "c5": 39.70904758417607, - "c6": -33.88084251456827, - "c7": -10.480456012768293 + "points": { + "c1": -17.237200813258994, + "c2": -14.995499652417962, + "c3": -12.311931204446779, + "c4": -38.1948695592162, + "c5": 5.624205092123567, + "c6": 19.304831819934158, + "c7": 44.98045667063838 }, - "vertexSeeds": { - "c1": 3.088961044137991, - "c2": 3.0423042384678833, - "c3": 2.8787253600905824, - "c4": 2.923184341892301, - "c5": 3.0525857412081168, - "c6": 2.9294815252761057, - "c7": 2.920987330419224 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435507, + "c3": 3.6985668053629226, + "c4": 2.958853444290338, + "c5": 2.2191400832177535, + "c6": 1.479426722145169, + "c7": 0.7397133610725845 }, "rgb": [238, 201, 159] }, @@ -67425,23 +67425,23 @@ "year": 1719, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 3.413748281001702, - "c2": -30.903648084661718, - "c3": 10.406397850542469, - "c4": -1.9464187544599127, - "c5": -37.26225069863806, - "c6": -14.814447420325834, - "c7": 4.390309555258916 + "points": { + "c1": -33.0296605280247, + "c2": -26.755505069050052, + "c3": 30.504719441119377, + "c4": -0.6305928616561829, + "c5": 16.780684487724997, + "c6": -9.151942197629076, + "c7": -4.077998106726106 }, - "vertexSeeds": { - "c1": 1.8540416239828614, - "c2": 2.006758840234141, - "c3": 1.9577194930625723, - "c4": 1.9482711398862995, - "c5": 1.9872357109324523, - "c6": 1.9623165997624974, - "c7": 1.8868671221674194 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233015, + "c3": 2.4271844660194186, + "c4": 1.9417475728155356, + "c5": 1.4563106796116527, + "c6": 0.9708737864077658, + "c7": 0.4854368932038829 }, "rgb": [77, 76, 132] }, @@ -67452,23 +67452,23 @@ "year": 1719, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -7.602581622459049, - "c2": -25.54669497312369, - "c3": 6.461092962707987, - "c4": 3.155353261142345, - "c5": -12.25965531411805, - "c6": 15.054030346460642, - "c7": -17.338974623391508 + "points": { + "c1": 10.43313022583628, + "c2": -11.794451031547325, + "c3": -10.979159875209707, + "c4": 22.264101168718696, + "c5": -14.233692965824346, + "c6": 11.30465573917995, + "c7": -12.766321767091558 }, - "vertexSeeds": { - "c1": 5.032570620140486, - "c2": 5.291238093231462, - "c3": 4.844216527563691, - "c4": 5.389614625711992, - "c5": 5.1582704591432815, - "c6": 5.187019259340526, - "c7": 4.856159455530977 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342573, + "c3": 6.518723994452151, + "c4": 5.214979195561715, + "c5": 3.9112343966712944, + "c6": 2.6074895977808574, + "c7": 1.3037447988904287 }, "rgb": [222, 0, 59] }, @@ -67479,23 +67479,23 @@ "year": 1719, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 30.783959040804195, - "c2": -25.912676094266363, - "c3": 18.19173903620919, - "c4": -28.676835805602035, - "c5": 11.54929817374693, - "c6": -3.407353117184723, - "c7": 0.2673509931031539 + "points": { + "c1": 22.36555385872625, + "c2": 21.695586950345664, + "c3": 18.161221252502756, + "c4": 8.23917613813132, + "c5": -1.71068223378618, + "c6": 1.8214462985177065, + "c7": -13.198589108929909 }, - "vertexSeeds": { - "c1": 2.1717395744538077, - "c2": 2.017871295981872, - "c3": 2.2868580182250753, - "c4": 2.0148422036764537, - "c5": 2.268516297213485, - "c6": 2.198168050113165, - "c7": 2.2669423050399713 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.32871012482663, + "c3": 2.773925104022192, + "c4": 2.2191400832177544, + "c5": 1.6643550624133132, + "c6": 1.1095700416088756, + "c7": 0.5547850208044378 }, "rgb": [238, 201, 159] }, @@ -67506,23 +67506,23 @@ "year": 1719, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -14.440002519752474, - "c2": -27.08195178641634, - "c3": -7.235536360579445, - "c4": 5.085566237375005, - "c5": 22.368212169003435, - "c6": 16.395324878820055, - "c7": -6.106487464064944 + "points": { + "c1": -24.221315672573134, + "c2": 30.336401935215385, + "c3": 3.524343276355083, + "c4": -22.83359230846955, + "c5": -13.529845823201207, + "c6": -21.289371479073395, + "c7": -7.337002776784971 }, - "vertexSeeds": { - "c1": 6.700407684870118, - "c2": 6.841187498214247, - "c3": 6.408931815802555, - "c4": 6.4193551225725844, - "c5": 5.738030033794031, - "c6": 6.168396069167408, - "c7": 6.596608428772701 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359219, + "c3": 8.25242718446602, + "c4": 6.601941747572813, + "c5": 4.951456310679614, + "c6": 3.3009708737864063, + "c7": 1.6504854368932083 }, "rgb": [58, 15, 49] }, @@ -67533,23 +67533,23 @@ "year": 1719, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -7.680215341789317, - "c2": -23.523832628035187, - "c3": -7.694639366829865, - "c4": -10.413525467364256, - "c5": 0.06071094560715906, - "c6": -3.5582573718589074, - "c7": 3.2065647964670383 + "points": { + "c1": 27.263090903888298, + "c2": 22.272099196276862, + "c3": 13.53634179838216, + "c4": -20.29281686851446, + "c5": -30.317401689771287, + "c6": -2.0741705328602826, + "c7": 3.336308299522976 }, - "vertexSeeds": { - "c1": 1.8087378606869213, - "c2": 1.628922950615826, - "c3": 1.638418530887703, - "c4": 1.7572514965302783, - "c5": 1.6968537046614618, - "c6": 1.7863954119872176, - "c7": 1.805383370466535 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.63522884882108, + "c3": 2.1960240406842355, + "c4": 1.7568192325473868, + "c5": 1.317614424410542, + "c6": 0.8784096162736934, + "c7": 0.43920480813684476 }, "rgb": [58, 15, 49] }, @@ -67560,23 +67560,23 @@ "year": 1719, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -21.539689435221632, - "c2": 7.121167531252336, - "c3": -10.133006569335393, - "c4": 19.535021058938792, - "c5": -19.12244906513126, - "c6": 17.988399079871865, - "c7": -12.299051501745847 + "points": { + "c1": 14.526833098010744, + "c2": -21.056671949249413, + "c3": 25.66724305223695, + "c4": 7.302940247493002, + "c5": 6.65430316659732, + "c6": -27.243859026727442, + "c7": -12.672785868373353 }, - "vertexSeeds": { - "c1": 0.9652399604134518, - "c2": 0.944308769968921, - "c3": 0.8742886414194494, - "c4": 0.9680056912369378, - "c5": 0.9525559593855344, - "c6": 0.9227948409933002, - "c7": 0.9292861859048647 + "offsets": { + "c1": 1.6828478964401297, + "c2": 1.4424410540915402, + "c3": 1.2020342117429497, + "c4": 0.9616273693943601, + "c5": 0.7212205270457696, + "c6": 0.48081368469718005, + "c7": 0.24040684234859064 }, "rgb": [58, 15, 49] }, @@ -67587,23 +67587,23 @@ "year": 1719, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -29.445587922075738, - "c2": 2.8776375643817715, - "c3": -9.50268243030191, - "c4": -32.530366793755555, - "c5": -17.55460486812281, - "c6": 16.658927163757063, - "c7": -25.727939235078622 + "points": { + "c1": -18.053480383803766, + "c2": 15.127651641676565, + "c3": -34.957412640057306, + "c4": -23.59062521147937, + "c5": -24.2943799708425, + "c6": -29.381790189138098, + "c7": 16.907401006632227 }, - "vertexSeeds": { - "c1": 2.57574366458702, - "c2": 2.586128772266439, - "c3": 2.467355995035263, - "c4": 2.232809540624155, - "c5": 2.3827287340766263, - "c6": 2.2099302782953196, - "c7": 2.607772927923432 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.772538141470182, + "c3": 3.1437817845584832, + "c4": 2.5150254276467865, + "c5": 1.886269070735089, + "c6": 1.2575127138233941, + "c7": 0.6287563569116971 }, "rgb": [238, 201, 159] }, @@ -67614,23 +67614,23 @@ "year": 1719, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -28.867105556128173, - "c2": -6.671737346461551, - "c3": 13.831461163982048, - "c4": -31.6839538904803, - "c5": -28.406824776260883, - "c6": -10.354211653613568, - "c7": 17.42918368798866 + "points": { + "c1": 17.003311646485187, + "c2": -2.8146432729607866, + "c3": 10.07747680830375, + "c4": 21.651013673416358, + "c5": 16.794254411809142, + "c6": 11.80930932623857, + "c7": 0.08146075827447419 }, - "vertexSeeds": { - "c1": 1.1824177486564442, - "c2": 1.303695754938153, - "c3": 1.1879919580278628, - "c4": 1.4563185858184313, - "c5": 1.4414527795979308, - "c6": 1.3248558967343422, - "c7": 1.255661037183879 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177544, + "c3": 1.8492834026814609, + "c4": 1.4794267221451693, + "c5": 1.1095700416088763, + "c6": 0.7397133610725847, + "c7": 0.36985668053629234 }, "rgb": [86, 146, 138] }, @@ -67641,23 +67641,23 @@ "year": 1719, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 16.983457458280085, - "c2": 5.583161748978966, - "c3": 19.07387925617531, - "c4": -15.226324071847955, - "c5": -25.289253879780077, - "c6": 15.318477649194328, - "c7": -4.420611259502483 + "points": { + "c1": -0.04948781826881543, + "c2": 2.3968375454253845, + "c3": -11.043241105232198, + "c4": -18.8838226157211, + "c5": -18.706738454771635, + "c6": -25.52161531179867, + "c7": -25.461748905792888 }, - "vertexSeeds": { - "c1": 4.613261442337501, - "c2": 4.172596836854869, - "c3": 4.109849763876748, - "c4": 4.198173454207078, - "c5": 3.762278430677941, - "c6": 3.8104239422578767, - "c7": 3.592670328417252 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814147, + "c3": 5.640314378178457, + "c4": 4.512251502542765, + "c5": 3.3841886269070733, + "c6": 2.2561257512713824, + "c7": 1.1280628756356912 }, "rgb": [238, 201, 159] }, @@ -67668,23 +67668,23 @@ "year": 1719, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 26.541037709656322, - "c2": 34.045605279991506, - "c3": -2.6212134922602353, - "c4": 21.959425301427864, - "c5": -29.10965170437806, - "c6": 34.22680519186878, - "c7": 30.166682085428533 + "points": { + "c1": -29.805267298870035, + "c2": 12.965255100340443, + "c3": -30.216048611921856, + "c4": 29.03745759404059, + "c5": -31.925851253849352, + "c6": -9.494527844532598, + "c7": 6.927458624290892 }, - "vertexSeeds": { - "c1": 2.0573327875207554, - "c2": 1.949668376329638, - "c3": 2.0151906931775074, - "c4": 1.8964497256280106, - "c5": 2.283329731750807, - "c6": 2.1263488345454222, - "c7": 1.9405621338388663 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.384188626907074, + "c3": 2.8201571890892287, + "c4": 2.2561257512713837, + "c5": 1.6920943134535382, + "c6": 1.128062875635693, + "c7": 0.5640314378178477 }, "rgb": [238, 201, 159] }, @@ -67695,23 +67695,23 @@ "year": 1719, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 21.211390366012687, - "c2": 20.498461724900494, - "c3": 23.52486508337403, - "c4": 14.668322976449744, - "c5": -6.431564461964577, - "c6": -31.85679992773197, - "c7": 3.9557287490963233 + "points": { + "c1": -15.592696484753116, + "c2": 14.409274990372893, + "c3": 19.867092582383997, + "c4": 33.75246581691783, + "c5": -11.951610692545998, + "c6": 21.980972347825777, + "c7": -8.044918663837308 }, - "vertexSeeds": { - "c1": 2.4900551082682854, - "c2": 2.414081370922993, - "c3": 2.7790549282194243, - "c4": 2.759854556124776, - "c5": 2.638139185201113, - "c6": 2.564157950994572, - "c7": 2.786963832624043 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.3749422098936646, + "c4": 2.69995376791493, + "c5": 2.024965325936196, + "c6": 1.3499768839574684, + "c7": 0.6749884419787342 }, "rgb": [222, 0, 59] }, @@ -67722,23 +67722,23 @@ "year": 1719, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -32.91829178214985, - "c2": 9.860163749597142, - "c3": -27.322191514973817, - "c4": 30.68941730979075, - "c5": 16.383021944485968, - "c6": -34.01581935780795, - "c7": 31.017021303899845 + "points": { + "c1": -22.770805576366644, + "c2": -19.558494810947924, + "c3": 18.666909475521535, + "c4": -25.71939801302802, + "c5": -9.81771941934446, + "c6": 16.1129601544298, + "c7": 13.152885613045456 }, - "vertexSeeds": { - "c1": 4.544397870778536, - "c2": 4.855555650399905, - "c3": 5.073368991243251, - "c4": 5.2716092915124015, - "c5": 4.745582591532397, - "c6": 4.520555584354452, - "c7": 5.329853698122769 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [58, 15, 49] }, @@ -67749,23 +67749,23 @@ "year": 1719, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 11.172741469760044, - "c2": 3.249743618777231, - "c3": 23.58192741885063, - "c4": 3.5403845726245784, - "c5": -15.138039544328612, - "c6": 27.23827623338843, - "c7": -8.986022373553745 + "points": { + "c1": -24.887197878103326, + "c2": -9.008680599706778, + "c3": -24.568796128772107, + "c4": -28.486143908227007, + "c5": 9.715051406484807, + "c6": 16.36531988086119, + "c7": 1.0791015468736909 }, - "vertexSeeds": { - "c1": 3.2051934467098397, - "c2": 3.553145318570086, - "c3": 3.906279208409123, - "c4": 3.876148891107123, - "c5": 3.04082076343767, - "c6": 3.6684536874028275, - "c7": 3.3872839336721867 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613038, + "c3": 5.524734165510865, + "c4": 4.41978733240869, + "c5": 3.3148404993065204, + "c6": 2.209893666204345, + "c7": 1.1049468331021726 }, "rgb": [86, 146, 138] }, @@ -67776,23 +67776,23 @@ "year": 1719, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -21.582113744701388, - "c2": -7.564534550977875, - "c3": -2.7057639241791875, - "c4": 22.12468324458964, - "c5": 16.381380162511988, - "c6": -24.099355832895974, - "c7": 14.07013227352661 + "points": { + "c1": 21.27183328389014, + "c2": 14.307681687394648, + "c3": 29.852917239743256, + "c4": 29.845534685634398, + "c5": 30.870036070354082, + "c6": 23.934127589915363, + "c7": 3.318412479696697 }, - "vertexSeeds": { - "c1": 7.087275686926811, - "c2": 7.353408747034147, - "c3": 7.268020239804797, - "c4": 7.400573026326383, - "c5": 7.146976493392473, - "c6": 7.592518373522357, - "c7": 7.318579363270249 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766996, + "c3": 9.061488673139149, + "c4": 7.2491909385113225, + "c5": 5.436893203883498, + "c6": 3.6245954692556728, + "c7": 1.812297734627825 }, "rgb": [77, 76, 132] }, @@ -67803,23 +67803,23 @@ "year": 1719, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -7.009153436734447, - "c2": -28.856345547099522, - "c3": -19.061996326949647, - "c4": -1.9461018388426368, - "c5": -14.157156085554618, - "c6": 26.672797575370268, - "c7": 3.7860655388315223 + "points": { + "c1": -9.586410799066279, + "c2": 20.837847944233083, + "c3": -18.70739935905701, + "c4": 3.880079785751235, + "c5": -3.671834302506454, + "c6": 8.875518927194172, + "c7": -7.859029567827996 }, - "vertexSeeds": { - "c1": 3.5117575276297917, - "c2": 3.8743666586783925, - "c3": 4.314801316440306, - "c4": 4.303025709208848, - "c5": 3.5991789119010003, - "c6": 3.5256846369997037, - "c7": 3.7705273770226166 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.2135922330097095, + "c3": 5.177993527508091, + "c4": 4.142394822006474, + "c5": 3.1067961165048525, + "c6": 2.071197411003235, + "c7": 1.0355987055016176 }, "rgb": [86, 146, 138] }, @@ -67830,23 +67830,23 @@ "year": 1719, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -37.67398172329369, - "c2": 34.2494849604774, - "c3": 6.808533663140018, - "c4": 33.77019522852639, - "c5": 21.920496103958243, - "c6": 15.62974520295058, - "c7": 32.460370376627026 + "points": { + "c1": 9.699403162310773, + "c2": -40.482359154239575, + "c3": 36.43466247219139, + "c4": -37.197544626766025, + "c5": -39.789892672551204, + "c6": -0.05152192794221122, + "c7": -39.176005823702326 }, - "vertexSeeds": { - "c1": 1.0904846906675918, - "c2": 1.0999449210052272, - "c3": 1.1142002143749037, - "c4": 1.0506930587464758, - "c5": 1.1085988602198285, - "c6": 1.0449956590505058, - "c7": 1.0155847203136472 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937581, + "c3": 1.4331946370781325, + "c4": 1.1465557096625054, + "c5": 0.8599167822468798, + "c6": 0.5732778548312527, + "c7": 0.28663892741562713 }, "rgb": [58, 15, 49] }, @@ -67857,23 +67857,23 @@ "year": 1720, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 33.01280494906632, - "c2": -20.957181593392274, - "c3": -11.885469551676465, - "c4": 51.143766935489055, - "c5": -13.040136452249584, - "c6": -5.907741316323197, - "c7": 18.960458289436858 + "points": { + "c1": -12.884091766123973, + "c2": 2.6982294409060117, + "c3": 12.89413492390537, + "c4": -10.065262427039578, + "c5": 29.62264168820917, + "c6": 5.874414290810847, + "c7": -4.7999183074710245 }, - "vertexSeeds": { - "c1": 2.289352988813496, - "c2": 2.3794451480543723, - "c3": 2.6337926019242506, - "c4": 2.2985763708912854, - "c5": 2.7311531789654278, - "c6": 2.504805657274412, - "c7": 2.0420541384680355 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.467406380027739, + "c4": 2.773925104022191, + "c5": 2.080443828016643, + "c6": 1.3869625520110955, + "c7": 0.6934812760055478 }, "rgb": [222, 0, 59] }, @@ -67884,23 +67884,23 @@ "year": 1719, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -13.069307522141692, - "c2": 31.341539246454154, - "c3": -8.597043857414583, - "c4": -30.702549260590082, - "c5": -35.604442448749076, - "c6": 15.054879997681603, - "c7": 7.131791836315244 + "points": { + "c1": -20.7814624654446, + "c2": -14.996595057408495, + "c3": 39.97585842143004, + "c4": 30.581384169551477, + "c5": -3.9317248803659695, + "c6": 40.35748749093518, + "c7": -18.90823901179003 }, - "vertexSeeds": { - "c1": 3.1119006575082326, - "c2": 3.5044601625879173, - "c3": 3.4990438207087795, - "c4": 3.0215764069899325, - "c5": 3.1213029692942524, - "c6": 3.4780412680024684, - "c7": 3.1164100370559042 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320387, + "c3": 4.207119741100321, + "c4": 3.3656957928802558, + "c5": 2.524271844660197, + "c6": 1.6828478964401312, + "c7": 0.8414239482200656 }, "rgb": [77, 76, 132] }, @@ -67911,23 +67911,23 @@ "year": 1719, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 35.94728279784149, - "c2": -24.73017672634442, - "c3": -37.4393248980939, - "c4": -1.300424045678021, - "c5": 10.561392133299037, - "c6": 41.04159961122493, - "c7": 43.2671921412479 + "points": { + "c1": -0.7737699462025276, + "c2": -43.06487616477111, + "c3": -33.122055530250066, + "c4": 21.357917950783012, + "c5": -0.08279972510106859, + "c6": -7.319746523195228, + "c7": -12.531968481888988 }, - "vertexSeeds": { - "c1": 3.02269661504979, - "c2": 2.9205436468975505, - "c3": 2.9319331636403696, - "c4": 3.1436669251176705, - "c5": 2.881582202709518, - "c6": 3.1331915476304606, - "c7": 3.0405339233664987 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556174, + "c3": 3.7679149329634756, + "c4": 3.014331946370783, + "c5": 2.260748959778084, + "c6": 1.5071659731853915, + "c7": 0.753582986592699 }, "rgb": [238, 201, 159] }, @@ -67938,23 +67938,23 @@ "year": 1720, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -29.26789899123218, - "c2": 5.8847718360269425, - "c3": -39.89356338453285, - "c4": -42.69091178070406, - "c5": -37.88205898278379, - "c6": 21.691766689156452, - "c7": 7.965867791246765 + "points": { + "c1": -25.090000374132085, + "c2": 41.139993849686434, + "c3": 8.12264463955674, + "c4": -37.753065828810605, + "c5": 27.84680302738525, + "c6": -34.50870535348601, + "c7": 34.90591826335253 }, - "vertexSeeds": { - "c1": 1.1588177042030914, - "c2": 1.0646822092846715, - "c3": 1.139948059432958, - "c4": 0.9811842811511825, - "c5": 1.1064039402229584, - "c6": 1.0031959306851959, - "c7": 0.9932908851616754 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937583, + "c3": 1.4331946370781325, + "c4": 1.1465557096625056, + "c5": 0.8599167822468797, + "c6": 0.5732778548312528, + "c7": 0.2866389274156258 }, "rgb": [222, 0, 59] }, @@ -67965,23 +67965,23 @@ "year": 1720, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 7.493289769416741, - "c2": 13.546888631423492, - "c3": 4.882256153355364, - "c4": 50.30775330788233, - "c5": 35.50035215742785, - "c6": -5.95140374808296, - "c7": -50.32829078581804 + "points": { + "c1": -27.785321867244964, + "c2": -25.357163651613696, + "c3": -10.062324761856544, + "c4": -28.31385917004046, + "c5": -35.638526932964346, + "c6": 16.87924585020722, + "c7": -47.45949682008163 }, - "vertexSeeds": { - "c1": 6.004321302754641, - "c2": 5.7386483040233935, - "c3": 6.3912311284821275, - "c4": 5.709661647523604, - "c5": 6.2851768226219, - "c6": 5.787103966641945, - "c7": 6.073149753592717 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [86, 146, 138] }, @@ -67992,23 +67992,23 @@ "year": 1719, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 26.85389843509123, - "c2": 15.56680909101081, - "c3": -10.973876426155257, - "c4": -35.27963304162781, - "c5": 34.88646031208164, - "c6": -8.815689278620187, - "c7": 0.7313579149703813 + "points": { + "c1": 14.145840734601443, + "c2": -14.041058467838635, + "c3": 21.597251522177295, + "c4": 22.611181149754735, + "c5": -25.956112944843262, + "c6": 5.0479895738963165, + "c7": -20.24798386512446 }, - "vertexSeeds": { - "c1": 2.032921545737793, - "c2": 1.9700961698974482, - "c3": 1.8537908001743584, - "c4": 2.1735853870365975, - "c5": 1.9510303666155329, - "c6": 1.8385863493403831, - "c7": 2.0489252705791916 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.2454923717059643, + "c3": 2.704576976421637, + "c4": 2.1636615811373106, + "c5": 1.6227461858529835, + "c6": 1.0818307905686564, + "c7": 0.5409153952843293 }, "rgb": [58, 15, 49] }, @@ -68019,23 +68019,23 @@ "year": 1719, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 12.037994538998284, - "c2": 12.938405467731215, - "c3": -18.50728030624364, - "c4": 8.058770129886682, - "c5": -22.397276504370982, - "c6": 22.264553678732177, - "c7": -30.436045501908076 + "points": { + "c1": 29.888014199662173, + "c2": -6.060302886768451, + "c3": 32.54052162352766, + "c4": -9.065714585202809, + "c5": 24.251230099706035, + "c6": -1.5184673953462493, + "c7": 14.181533075440512 }, - "vertexSeeds": { - "c1": 2.633020040671588, - "c2": 2.5036181594484628, - "c3": 2.3768252065789532, - "c4": 2.7047997196108287, - "c5": 2.907177610710458, - "c6": 3.085643783349233, - "c7": 3.034134507486226 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.49375866851595, + "c3": 3.744798890429957, + "c4": 2.9958391123439685, + "c5": 2.246879334257976, + "c6": 1.4979195561719831, + "c7": 0.7489597780859907 }, "rgb": [86, 146, 138] }, @@ -68046,23 +68046,23 @@ "year": 1719, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 28.519898056342633, - "c2": -2.538680884030601, - "c3": 9.082643673549022, - "c4": 12.349756366827584, - "c5": -5.096875900627953, - "c6": 8.005459696082156, - "c7": 3.9774717342891677 + "points": { + "c1": 19.11390758353768, + "c2": 10.461579590555779, + "c3": 19.790514233264844, + "c4": 15.571616792845255, + "c5": 29.210214023520898, + "c6": 21.822339858587526, + "c7": 10.264791365795837 }, - "vertexSeeds": { - "c1": 1.6148120461573798, - "c2": 1.625532696603394, - "c3": 1.587306358787419, - "c4": 1.5475322607158855, - "c5": 1.4531604663182367, - "c6": 1.6126023862322603, - "c7": 1.4677242626943692 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499307, + "c3": 2.011095700416089, + "c4": 1.608876560332872, + "c5": 1.2066574202496545, + "c6": 0.8044382801664347, + "c7": 0.4022191400832197 }, "rgb": [222, 0, 59] }, @@ -68073,23 +68073,23 @@ "year": 1719, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -15.916887316485372, - "c2": 1.5071703755645771, - "c3": -8.838714750869073, - "c4": 15.506973269590233, - "c5": -3.9106880409709888, - "c6": 20.324069169131015, - "c7": 32.66902970999307 + "points": { + "c1": -35.814708885297534, + "c2": -31.694155990377073, + "c3": -6.162638763390753, + "c4": -20.745003948575228, + "c5": 10.719179297462418, + "c6": -38.585340447386045, + "c7": 7.288039702033608 }, - "vertexSeeds": { - "c1": 2.2988174425872563, - "c2": 2.306751319689937, - "c3": 2.3011682540020217, - "c4": 2.2765764539717233, - "c5": 2.2776006420491743, - "c6": 2.29124141556639, - "c7": 2.306525049190913 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266175, + "c3": 2.773925104022195, + "c4": 2.219140083217745, + "c5": 1.6643550624133225, + "c6": 1.1095700416088725, + "c7": 0.5547850208044225 }, "rgb": [238, 201, 159] }, @@ -68100,23 +68100,23 @@ "year": 1720, "resistanceReported": false, "duration": 46224000, - "curveSeeds": { - "c1": -48.498905168905225, - "c2": 46.31430304798186, - "c3": -34.74463393252375, - "c4": 28.136076470528586, - "c5": 31.061534219019926, - "c6": -59.819039626567395, - "c7": -6.9778788619160395 + "points": { + "c1": 0.09245261701657626, + "c2": -30.764233906575438, + "c3": -58.52233892436301, + "c4": -8.295850679847511, + "c5": 15.442776782056931, + "c6": -17.620759234892127, + "c7": 38.62893756715999 }, - "vertexSeeds": { - "c1": 0.6289823020611364, - "c2": 0.6085048963661001, - "c3": 0.6280604557480245, - "c4": 0.6331798382363688, - "c5": 0.6392965190082066, - "c6": 0.5791550289668066, - "c7": 0.6067079084392234 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.970873786407767, + "c3": 0.809061488673139, + "c4": 0.6472491909385111, + "c5": 0.48543689320388306, + "c6": 0.3236245954692551, + "c7": 0.16181229773462713 }, "rgb": [238, 201, 159] }, @@ -68127,23 +68127,23 @@ "year": 1719, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 26.22273767594488, - "c2": -13.581534157463054, - "c3": 4.103466159145835, - "c4": 10.08661955974156, - "c5": 26.179017453353435, - "c6": -3.447142095873307, - "c7": 0.4350399328125043 + "points": { + "c1": 14.780152326237712, + "c2": -2.871413303589353, + "c3": 24.205771762853104, + "c4": 29.954260274363996, + "c5": 24.19712014517168, + "c6": 33.04666961853438, + "c7": -27.596430526018104 }, - "vertexSeeds": { - "c1": 2.000559597203536, - "c2": 2.0024751166058925, - "c3": 1.9811669212765621, - "c4": 1.9304450700776072, - "c5": 1.931917086052955, - "c6": 2.140994361150039, - "c7": 2.009618205523302 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504855, + "c3": 2.5889967637540465, + "c4": 2.0711974110032343, + "c5": 1.5533980582524256, + "c6": 1.0355987055016171, + "c7": 0.5177993527508086 }, "rgb": [222, 0, 59] }, @@ -68154,23 +68154,23 @@ "year": 1720, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 30.897661019084225, - "c2": -40.12594293239185, - "c3": -42.503950149956495, - "c4": 2.7020065225474283, - "c5": -18.67301070853179, - "c6": -10.63134562803166, - "c7": 14.013439851062664 + "points": { + "c1": 22.466232741814196, + "c2": -1.1794359233470644, + "c3": 35.91819667418328, + "c4": 6.170723561393899, + "c5": 18.554665997546934, + "c6": 45.64594033978787, + "c7": 37.705254283593646 }, - "vertexSeeds": { - "c1": 2.1452186742831336, - "c2": 2.132588404237146, - "c3": 2.252201639400069, - "c4": 2.4981068107753526, - "c5": 2.45818805122149, - "c6": 2.311450385680977, - "c7": 2.4681284730172117 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092932, + "c3": 3.051317614424412, + "c4": 2.441054091539528, + "c5": 1.8307905686546466, + "c6": 1.2205270457697652, + "c7": 0.6102635228848814 }, "rgb": [86, 146, 138] }, @@ -68181,23 +68181,23 @@ "year": 1720, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -18.548040220013842, - "c2": -5.524657144054487, - "c3": 9.540475251323507, - "c4": 18.767317326335828, - "c5": -12.937101228437683, - "c6": -0.9368113571463255, - "c7": 20.27889402084225 + "points": { + "c1": -17.68297729069722, + "c2": -11.26278268377608, + "c3": -39.427159553003705, + "c4": 17.081892069102572, + "c5": -14.575087520433705, + "c6": 26.792201659448523, + "c7": 20.082621902388972 }, - "vertexSeeds": { - "c1": 6.3133146438123005, - "c2": 6.456415701639068, - "c3": 6.353571240389845, - "c4": 6.382890930182166, - "c5": 6.457086700797322, - "c6": 6.284597874876225, - "c7": 6.453409594130064 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474358, + "c3": 7.743874248728594, + "c4": 6.195099398982887, + "c5": 4.646324549237179, + "c6": 3.097549699491471, + "c7": 1.5487748497457074 }, "rgb": [86, 146, 138] }, @@ -68208,23 +68208,23 @@ "year": 1720, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": -29.52339390943445, - "c2": -5.138275420335653, - "c3": -27.995752822775515, - "c4": -48.66263284082598, - "c5": -7.0339690952121146, - "c6": 35.34647243101045, - "c7": 48.978766615593834 + "points": { + "c1": 47.44217419309563, + "c2": -44.39460376601751, + "c3": 26.924637016549006, + "c4": -20.981681324205923, + "c5": 24.60579098684301, + "c6": 26.854693771942983, + "c7": 19.10907218632571 }, - "vertexSeeds": { - "c1": 11.005800818773446, - "c2": 11.618543639488214, - "c3": 9.534057797980784, - "c4": 12.20081537046283, - "c5": 11.462339761899669, - "c6": 9.10477886441825, - "c7": 9.991725835750596 + "offsets": { + "c1": 20.776699029126213, + "c2": 17.808599167822468, + "c3": 14.840499306518725, + "c4": 11.872399445214977, + "c5": 8.904299583911234, + "c6": 5.936199722607489, + "c7": 2.9680998613037444 }, "rgb": [58, 15, 49] }, @@ -68235,23 +68235,23 @@ "year": 1720, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -1.896720229821966, - "c2": -0.1835266485431859, - "c3": -27.169545931291278, - "c4": 49.54097509281566, - "c5": 26.62077152539713, - "c6": -42.373199851478105, - "c7": 8.949551930860856 + "points": { + "c1": 5.18095456975405, + "c2": -27.51068000348912, + "c3": 13.60722892387011, + "c4": -0.08016765728103792, + "c5": 32.647227653661176, + "c6": 26.933269197448283, + "c7": -48.97229446083056 }, - "vertexSeeds": { - "c1": 2.203605205572062, - "c2": 2.2501784117136117, - "c3": 2.4258994060859074, - "c4": 2.1690155448209882, - "c5": 2.2809490321397172, - "c6": 2.195352999046826, - "c7": 2.117404108203903 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081833, + "c3": 2.9357374017568207, + "c4": 2.3485899214054546, + "c5": 1.7614424410540916, + "c6": 1.1742949607027289, + "c7": 0.5871474803513628 }, "rgb": [58, 15, 49] }, @@ -68262,23 +68262,23 @@ "year": 1719, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -4.177830781223268, - "c2": 26.7727094686611, - "c3": -25.567123252818604, - "c4": 33.24271357470708, - "c5": 4.168427395077487, - "c6": 33.68618940731227, - "c7": 9.007360848154853 + "points": { + "c1": 35.36702515178729, + "c2": -33.49915294945163, + "c3": -9.69413145314245, + "c4": 12.647202077727144, + "c5": -32.24563831763569, + "c6": 3.121085311723114, + "c7": 26.063687816981236 }, - "vertexSeeds": { - "c1": 4.533282948289753, - "c2": 4.012194973125983, - "c3": 4.6568272486891, - "c4": 4.063849862578754, - "c5": 4.502519598230581, - "c6": 3.971576779562333, - "c7": 4.170296069640403 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934814, + "c3": 5.70966250577901, + "c4": 4.567730004623209, + "c5": 3.4257975034674044, + "c6": 2.2838650023116047, + "c7": 1.1419325011558 }, "rgb": [86, 146, 138] }, @@ -68289,23 +68289,23 @@ "year": 1720, "resistanceReported": false, "duration": 45273600, - "curveSeeds": { - "c1": 22.40070159634206, - "c2": -31.379490590230883, - "c3": 59.129713343174714, - "c4": 18.30761491737171, - "c5": -25.397536592016877, - "c6": 4.3028225533374425, - "c7": 1.6128121958974404 + "points": { + "c1": 39.146892523887274, + "c2": 47.801888622378755, + "c3": 1.4514663421870821, + "c4": 43.40181283341657, + "c5": -7.082244936960542, + "c6": 47.41834245162288, + "c7": 57.087218071232925 }, - "vertexSeeds": { - "c1": 2.0911554936151897, - "c2": 2.422421972335869, - "c3": 1.0026171357218405, - "c4": 2.204066031566521, - "c5": 0.8206688612357613, - "c6": 2.3838035865783955, - "c7": 1.2849647889029165 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.495145631067961, + "c3": 2.9126213592233006, + "c4": 2.330097087378641, + "c5": 1.7475728155339803, + "c6": 1.1650485436893203, + "c7": 0.5825242718446603 }, "rgb": [86, 146, 138] }, @@ -68316,23 +68316,23 @@ "year": 1720, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -8.251834738863824, - "c2": 6.871751246651137, - "c3": 33.35234502671793, - "c4": -8.469004548622092, - "c5": -35.673173345982875, - "c6": 5.579346192352531, - "c7": 16.006752779668673 + "points": { + "c1": 28.22302599664137, + "c2": 11.23561886175235, + "c3": 13.380871936763988, + "c4": -21.5434665085458, + "c5": -3.4933921685220497, + "c6": -18.206446974281466, + "c7": 1.4757244523898692 }, - "vertexSeeds": { - "c1": 6.331067654631988, - "c2": 6.2679504304421165, - "c3": 6.476040264142136, - "c4": 6.225380893777159, - "c5": 6.788037072577102, - "c6": 6.46027834094235, - "c7": 6.879030416169758 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319006, + "c3": 8.229311141932497, + "c4": 6.5834489135459995, + "c5": 4.937586685159503, + "c6": 3.2917244567730064, + "c7": 1.6458622283864968 }, "rgb": [77, 76, 132] }, @@ -68343,23 +68343,23 @@ "year": 1720, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 21.486759811924472, - "c2": 37.01122903904697, - "c3": -0.589601089601139, - "c4": 36.71196213252739, - "c5": 29.19794362045171, - "c6": -27.238413572867103, - "c7": 20.053310516072095 + "points": { + "c1": -26.652791150262942, + "c2": -0.34654471758470606, + "c3": 36.71750917814836, + "c4": -33.5013658664208, + "c5": -3.86781381478324, + "c6": 11.38011799032462, + "c7": -33.97787512935526 }, - "vertexSeeds": { - "c1": 3.2197850118447966, - "c2": 3.215221931683744, - "c3": 3.007264560072826, - "c4": 3.0318546311641352, - "c5": 3.323482839506712, - "c6": 3.4092273609971366, - "c7": 3.1478304851365615 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199722, + "c3": 4.137771613499769, + "c4": 3.3102172907998146, + "c5": 2.482662968099861, + "c6": 1.6551086453999073, + "c7": 0.8275543226999537 }, "rgb": [238, 201, 159] }, @@ -68370,23 +68370,23 @@ "year": 1720, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 20.78795506211224, - "c2": 31.300545400005348, - "c3": 17.54732824416771, - "c4": 9.29845625641775, - "c5": -5.276284587997978, - "c6": 7.103110986119013, - "c7": 19.581883590428653 + "points": { + "c1": -23.98612365243795, + "c2": 31.571137501509682, + "c3": 22.235447657071518, + "c4": -15.303987713336621, + "c5": 17.57815157667519, + "c6": -24.15216634867634, + "c7": -18.399713731717274 }, - "vertexSeeds": { - "c1": 5.179522636419753, - "c2": 5.388962003190282, - "c3": 5.251029801321991, - "c4": 5.037739583377458, - "c5": 5.488176128413124, - "c6": 5.135171405518662, - "c7": 5.614782253657118 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227458, + "c3": 7.0272769301895535, + "c4": 5.621821544151639, + "c5": 4.216366158113734, + "c6": 2.8109107720758195, + "c7": 1.4054553860379149 }, "rgb": [77, 76, 132] }, @@ -68397,23 +68397,23 @@ "year": 1719, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -20.650886054929558, - "c2": -9.667930605808206, - "c3": 15.915456520451677, - "c4": 10.469675107099818, - "c5": -14.00101363617342, - "c6": -1.2489977261266958, - "c7": 22.32450043320175 + "points": { + "c1": 16.901668669202735, + "c2": -22.149519200703566, + "c3": -20.814542663637987, + "c4": 1.15800512428903, + "c5": -12.064578854321038, + "c6": 9.738704763465861, + "c7": 0.5782973574294807 }, - "vertexSeeds": { - "c1": 4.053401151159016, - "c2": 4.165274149740063, - "c3": 4.683990341807685, - "c4": 4.149557774998136, - "c5": 4.816596254391384, - "c6": 4.389565801516496, - "c7": 3.970011657145432 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.99029126213592, + "c3": 5.825242718446603, + "c4": 4.66019417475728, + "c5": 3.495145631067958, + "c6": 2.33009708737864, + "c7": 1.1650485436893179 }, "rgb": [222, 0, 59] }, @@ -68424,23 +68424,23 @@ "year": 1720, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 25.476527872015595, - "c2": 20.367504702699556, - "c3": -12.947966175773058, - "c4": 1.886993740041909, - "c5": 11.979668787721216, - "c6": 33.017999615499605, - "c7": -24.11860431518852 + "points": { + "c1": -17.100570890661043, + "c2": 18.071668593074016, + "c3": 5.598553068222685, + "c4": -12.342454825904131, + "c5": -11.448014837028683, + "c6": 17.59863134300784, + "c7": -9.137938080427627 }, - "vertexSeeds": { - "c1": 3.6487585710634383, - "c2": 3.8377426644105763, - "c3": 3.4020333979271653, - "c4": 3.2803886726282636, - "c5": 3.6048990355995856, - "c6": 3.1048614470369555, - "c7": 3.1993556209379603 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703654, + "c4": 3.698566805362922, + "c5": 2.7739251040221906, + "c6": 1.8492834026814589, + "c7": 0.9246417013407318 }, "rgb": [238, 201, 159] }, @@ -68451,23 +68451,23 @@ "year": 1719, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -19.681392831525415, - "c2": 11.023477705283877, - "c3": -26.704180705525633, - "c4": 4.631357192348066, - "c5": -21.005866339468817, - "c6": -27.959508151429866, - "c7": -23.510911611364605 + "points": { + "c1": -29.675587200931055, + "c2": 7.218129665588705, + "c3": -22.492244346049795, + "c4": -31.64700999128234, + "c5": 11.430413861917103, + "c6": 30.45242700064542, + "c7": -23.125278535850953 }, - "vertexSeeds": { - "c1": 3.4015821919155544, - "c2": 3.653586757950563, - "c3": 3.7194926768368095, - "c4": 3.9934527734730247, - "c5": 3.6588997040549227, - "c6": 3.5944683366179477, - "c7": 3.3017715252944573 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486824, + "c3": 4.877484974572355, + "c4": 3.901987979657881, + "c5": 2.926490984743412, + "c6": 1.9509939898289432, + "c7": 0.9754969949144738 }, "rgb": [238, 201, 159] }, @@ -68478,23 +68478,23 @@ "year": 1720, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -28.142593591008875, - "c2": 3.3714325152418922, - "c3": 13.513420202486838, - "c4": 4.249629789881499, - "c5": 5.3103417885632815, - "c6": -8.235882040008491, - "c7": 10.571739080330811 + "points": { + "c1": -15.309217041504152, + "c2": -18.545971457713442, + "c3": 3.2983846023069994, + "c4": 27.029391387536034, + "c5": -26.171458294909858, + "c6": 23.885788563960954, + "c7": 21.410676906882674 }, - "vertexSeeds": { - "c1": 3.232935628229578, - "c2": 3.225555342416288, - "c3": 3.107996642432553, - "c4": 3.1739608550488585, - "c5": 3.159208070402013, - "c6": 3.0500124994496014, - "c7": 3.1558727866407628 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.6879334257975, + "c3": 3.906611188164592, + "c4": 3.125288950531671, + "c5": 2.34396671289875, + "c6": 1.5626444752658422, + "c7": 0.7813222376329211 }, "rgb": [77, 76, 132] }, @@ -68505,23 +68505,23 @@ "year": 1720, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 13.979916905386204, - "c2": -9.902109909193399, - "c3": 2.1610570501435014, - "c4": 7.440765747122079, - "c5": 4.96588659149781, - "c6": -26.03346485312409, - "c7": 13.681979553751404 + "points": { + "c1": -24.677184707555472, + "c2": -0.7323195475747646, + "c3": -17.015725163930263, + "c4": 8.100126606044803, + "c5": -10.357080281141663, + "c6": -15.157111168983791, + "c7": -12.008683576353999 }, - "vertexSeeds": { - "c1": 5.145929663333457, - "c2": 4.939338245398312, - "c3": 5.062059283222029, - "c4": 5.190961989507365, - "c5": 4.963071532716263, - "c6": 4.7431342067907325, - "c7": 5.208621677270087 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463252, + "c3": 6.5880721220527025, + "c4": 5.2704576976421675, + "c5": 3.952843273231619, + "c6": 2.6352288488210838, + "c7": 1.3176144244105419 }, "rgb": [58, 15, 49] }, @@ -68532,23 +68532,23 @@ "year": 1720, "resistanceReported": true, "duration": 16156800, - "curveSeeds": { - "c1": -10.385279501304485, - "c2": -26.31825991397694, - "c3": 16.22667587924436, - "c4": -15.006337791044642, - "c5": -22.583449526758404, - "c6": 22.403547061652063, - "c7": -12.391351099271287 + "points": { + "c1": -16.306592724896895, + "c2": -1.6873208313623387, + "c3": 18.45932146731635, + "c4": -24.42202708375473, + "c5": 17.663776990188524, + "c6": -3.777320687661554, + "c7": -19.880976898467154 }, - "vertexSeeds": { - "c1": 9.823447644008308, - "c2": 9.985085379437438, - "c3": 9.75077195239722, - "c4": 9.758160579838512, - "c5": 9.844579340011501, - "c6": 9.907230476202699, - "c7": 9.77636499007919 + "offsets": { + "c1": 16.73139158576052, + "c2": 14.341192787794716, + "c3": 11.95099398982891, + "c4": 9.560795191863162, + "c5": 7.170596393897358, + "c6": 4.780397595931553, + "c7": 2.3901987979657484 }, "rgb": [238, 201, 159] }, @@ -68559,23 +68559,23 @@ "year": 1720, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -24.464791247857686, - "c2": -13.461696091666054, - "c3": -4.135747245344838, - "c4": -19.810335297349244, - "c5": -1.6821885964074497, - "c6": 23.823770191022458, - "c7": -18.873898498322486 + "points": { + "c1": -16.30340832840861, + "c2": -20.985845044880122, + "c3": -13.434438021689996, + "c4": -7.563047187184846, + "c5": -24.853351147778774, + "c6": 24.986109610389303, + "c7": -22.085196191302007 }, - "vertexSeeds": { - "c1": 8.972916598693145, - "c2": 7.996271753615128, - "c3": 8.849791935135029, - "c4": 8.047391119614575, - "c5": 8.867382362557056, - "c6": 8.132292007058279, - "c7": 8.175299060956661 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.89875173370319, + "c3": 10.748959778085991, + "c4": 8.599167822468793, + "c5": 6.449375866851595, + "c6": 4.2995839112343965, + "c7": 2.1497919556171983 }, "rgb": [77, 76, 132] }, @@ -68586,23 +68586,23 @@ "year": 1720, "resistanceReported": true, "duration": 28425600, - "curveSeeds": { - "c1": 38.27800417181059, - "c2": 40.90979258083361, - "c3": 34.58538917194505, - "c4": -39.21593392009205, - "c5": -27.12710918903811, - "c6": 12.084020523454974, - "c7": -24.368636589819776 + "points": { + "c1": -16.993132598411652, + "c2": -28.195343261329448, + "c3": -21.57807783646316, + "c4": 0.623889880390216, + "c5": 34.02408798652925, + "c6": 6.446879800715045, + "c7": 39.05688072151311 }, - "vertexSeeds": { - "c1": 4.10954238732229, - "c2": 3.4719732476000322, - "c3": 3.969920792203985, - "c4": 3.459399916269005, - "c5": 3.6723879538207234, - "c6": 3.5907468723189115, - "c7": 3.549300716455117 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647713, + "c3": 4.96994914470643, + "c4": 3.9759593157651403, + "c5": 2.9819694868238567, + "c6": 1.9879796578825728, + "c7": 0.9939898289412838 }, "rgb": [222, 0, 59] }, @@ -68613,23 +68613,23 @@ "year": 1720, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 7.914456624337262, - "c2": 11.498404385176222, - "c3": -16.898462689032865, - "c4": 3.382994700277944, - "c5": -18.81944907248302, - "c6": 19.09916344553507, - "c7": 3.8454169942173237 + "points": { + "c1": 1.1081185092996044, + "c2": -5.235630866491384, + "c3": -7.49882080036619, + "c4": 8.41176529392196, + "c5": 9.77838156919912, + "c6": 11.817651168284172, + "c7": 12.471040046855215 }, - "vertexSeeds": { - "c1": 2.554371792126202, - "c2": 2.2512805806321725, - "c3": 2.204961063249115, - "c4": 2.4971112164762865, - "c5": 2.406475819616412, - "c6": 2.545420885990203, - "c7": 2.4371811143268958 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115105, + "c3": 3.2824780397595914, + "c4": 2.6259824318076763, + "c5": 1.9694868238557566, + "c6": 1.312991215903837, + "c7": 0.6564956079519173 }, "rgb": [86, 146, 138] }, @@ -68640,23 +68640,23 @@ "year": 1720, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 31.71537484673648, - "c2": -15.082947508798075, - "c3": 17.720515963019864, - "c4": -13.422386705424906, - "c5": -11.010873794701798, - "c6": -23.43289290321448, - "c7": -12.23218356841372 + "points": { + "c1": 8.495536093750133, + "c2": 0.7897681025503687, + "c3": 29.62013256626527, + "c4": 30.290465308137442, + "c5": 21.661517961828835, + "c6": -30.15106551793, + "c7": 16.60494809468966 }, - "vertexSeeds": { - "c1": 3.764296959104372, - "c2": 4.1568703730184415, - "c3": 4.130091888660568, - "c4": 3.794937291372245, - "c5": 4.099236483606937, - "c6": 3.8300505090558232, - "c7": 3.7221243334243304 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374015, + "c4": 4.068423485899212, + "c5": 3.0513176144244065, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [238, 201, 159] }, @@ -68667,23 +68667,23 @@ "year": 1720, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 32.57661079072133, - "c2": 21.291251430873324, - "c3": 9.091476783779228, - "c4": 29.97195591958799, - "c5": 24.420053750391546, - "c6": 18.833279393917884, - "c7": -15.312962020185292 + "points": { + "c1": 27.642447250172957, + "c2": -28.498790682586502, + "c3": 6.548024321597438, + "c4": -6.00076932914774, + "c5": -33.20067298398259, + "c6": 30.09208866877553, + "c7": -6.162305985487336 }, - "vertexSeeds": { - "c1": 3.0867423981655504, - "c2": 2.9210859096399924, - "c3": 2.92589111505206, - "c4": 2.7472228026367493, - "c5": 2.732579452568004, - "c6": 2.837085959141382, - "c7": 2.5149840305353584 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877947, + "c3": 3.952843273231622, + "c4": 3.162274618585301, + "c5": 2.3717059639389753, + "c6": 1.5811373092926504, + "c7": 0.7905686546463252 }, "rgb": [238, 201, 159] }, @@ -68694,23 +68694,23 @@ "year": 1720, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 19.95571677992423, - "c2": -16.990402844330664, - "c3": 21.836455094284055, - "c4": -22.164964763404175, - "c5": 21.175930815870068, - "c6": -1.3970649638429435, - "c7": -11.689563539100423 + "points": { + "c1": 35.8562982185707, + "c2": -2.2993925874540437, + "c3": -13.840536437538894, + "c4": -33.03653965139925, + "c5": -1.0249223262828409, + "c6": -3.141732949158879, + "c7": 28.799840512228315 }, - "vertexSeeds": { - "c1": 3.085536010193527, - "c2": 3.157846020706578, - "c3": 3.1486288330617582, - "c4": 3.0500542294115016, - "c5": 3.257115629953815, - "c6": 3.116513375903012, - "c7": 3.546389816713837 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642163, + "c3": 4.392048081368468, + "c4": 3.5136384650947785, + "c5": 2.635228848821084, + "c6": 1.7568192325473893, + "c7": 0.8784096162736946 }, "rgb": [222, 0, 59] }, @@ -68721,23 +68721,23 @@ "year": 1720, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -32.41535860664835, - "c2": 14.894405269773088, - "c3": 0.5741117588752402, - "c4": -23.02280632401862, - "c5": 36.76680223860117, - "c6": 19.010028193183764, - "c7": -2.2958932089185353 + "points": { + "c1": -38.73535720914792, + "c2": -12.641865145502333, + "c3": -9.044351504358296, + "c4": -35.05058586365213, + "c5": 22.66335727781565, + "c6": 36.64304444517468, + "c7": 23.919487967047573 }, - "vertexSeeds": { - "c1": 2.7145294850331347, - "c2": 2.6204854903676718, - "c3": 2.668335463057968, - "c4": 2.840437170435924, - "c5": 2.6657604267942023, - "c6": 2.5837009465373213, - "c7": 2.623635737695278 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993065, + "c3": 3.444290337494221, + "c4": 2.7554322699953766, + "c5": 2.0665742024965326, + "c6": 1.3777161349976883, + "c7": 0.6888580674988442 }, "rgb": [222, 0, 59] }, @@ -68748,23 +68748,23 @@ "year": 1720, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 2.406095406328287, - "c2": -23.098472805012754, - "c3": -19.31810371250912, - "c4": -1.938502076242706, - "c5": -4.390609904453093, - "c6": 28.42158417258809, - "c7": 26.023218128747793 + "points": { + "c1": 3.816989240956815, + "c2": -30.67760243692303, + "c3": 25.829025561458828, + "c4": 26.706126065053198, + "c5": 26.693364228960725, + "c6": 19.532855949697435, + "c7": -29.527241939661536 }, - "vertexSeeds": { - "c1": 4.309212639050896, - "c2": 4.68343250952747, - "c3": 4.537095728020303, - "c4": 4.404918752773861, - "c5": 4.740454206506687, - "c6": 4.748020860136589, - "c7": 4.463063486124907 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.10124826629681, + "c3": 5.917706888580672, + "c4": 4.734165510864538, + "c5": 3.550624133148405, + "c6": 2.367082755432272, + "c7": 1.183541377716133 }, "rgb": [77, 76, 132] }, @@ -68775,23 +68775,23 @@ "year": 1720, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -11.400527991494656, - "c2": 22.79182978537219, - "c3": -5.8771961993780835, - "c4": -22.056902886330434, - "c5": 22.734792954139454, - "c6": -16.754378490490176, - "c7": -0.2357016705156454 + "points": { + "c1": 12.646118076306056, + "c2": -24.897672641853603, + "c3": -8.180143477567967, + "c4": 27.576918104800054, + "c5": -13.4956621762649, + "c6": -3.825521950370838, + "c7": -27.79968088514704 }, - "vertexSeeds": { - "c1": 3.163188366054105, - "c2": 3.397286319111909, - "c3": 3.242002921149018, - "c4": 3.3481844085217602, - "c5": 3.358076761512536, - "c6": 3.37915088006629, - "c7": 3.039787551993849 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280163, + "c3": 4.184003698566806, + "c4": 3.3472029588534418, + "c5": 2.5104022191400848, + "c6": 1.6736014794267209, + "c7": 0.8368007397133572 }, "rgb": [77, 76, 132] }, @@ -68802,23 +68802,23 @@ "year": 1720, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 11.325046864678288, - "c2": -25.282980442821888, - "c3": -8.988040132307827, - "c4": 12.271970774554308, - "c5": -30.932373607297794, - "c6": -5.3830868912224155, - "c7": 27.825322400888492 + "points": { + "c1": -32.649891400336585, + "c2": -10.820933595624194, + "c3": 1.4453696479382714, + "c4": 13.821835374477729, + "c5": -13.018305031745978, + "c6": 6.230923049302476, + "c7": -32.71715777022439 }, - "vertexSeeds": { - "c1": 3.8159761154850402, - "c2": 3.377676549025489, - "c3": 3.2743425136177793, - "c4": 3.531065331663681, - "c5": 3.572307310267943, - "c6": 3.282555276704307, - "c7": 3.555689696263414 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.6865464632454925, + "c3": 4.738788719371242, + "c4": 3.7910309754969975, + "c5": 2.843273231622748, + "c6": 1.8955154877484988, + "c7": 0.9477577438742494 }, "rgb": [238, 201, 159] }, @@ -68829,23 +68829,23 @@ "year": 1720, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -22.15205121690257, - "c2": 25.850427528807074, - "c3": 12.534909390033398, - "c4": -28.69995553620143, - "c5": -9.299796310220714, - "c6": 15.022770801608495, - "c7": 12.661612609936157 + "points": { + "c1": 10.451481412397115, + "c2": 4.463146810687242, + "c3": -5.896101426576273, + "c4": 7.478885371813604, + "c5": -18.716413933258625, + "c6": -22.625840992234934, + "c7": 20.15944395013433 }, - "vertexSeeds": { - "c1": 7.365793302596737, - "c2": 6.883322404086528, - "c3": 6.319426570851234, - "c4": 6.496715617394316, - "c5": 7.730431063040696, - "c6": 6.4210175812750965, - "c7": 6.313928766533767 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [222, 0, 59] }, @@ -68856,23 +68856,23 @@ "year": 1720, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 13.031267219212786, - "c2": 4.136306373867299, - "c3": -21.70917538974507, - "c4": -13.067787379461603, - "c5": -33.89440040843212, - "c6": 18.273103564703227, - "c7": -17.186728189251557 + "points": { + "c1": 20.128410716059292, + "c2": -23.017034376197973, + "c3": 23.03224169301258, + "c4": -30.36677230015137, + "c5": 21.805664519323223, + "c6": -12.80168362580094, + "c7": -29.742477260524197 }, - "vertexSeeds": { - "c1": 3.205042424108097, - "c2": 3.3890740997506974, - "c3": 2.7949002577979267, - "c4": 2.8746174934645565, - "c5": 2.759527790181862, - "c6": 3.17034932834179, - "c7": 3.228162787279837 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033287, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066556 }, "rgb": [77, 76, 132] }, @@ -68883,23 +68883,23 @@ "year": 1720, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 14.19961272599858, - "c2": 16.380089540772136, - "c3": 11.43112828287924, - "c4": -5.045028455317119, - "c5": -12.390690919910881, - "c6": -1.1542535094338824, - "c7": 7.037477257965204 + "points": { + "c1": 13.952065887228912, + "c2": -31.867594759397953, + "c3": 29.109844333376103, + "c4": -4.229236400869759, + "c5": 26.072623014827485, + "c6": -31.80819903587443, + "c7": 2.072871220920945 }, - "vertexSeeds": { - "c1": 4.111756252034606, - "c2": 4.055902342845468, - "c3": 4.085890599181983, - "c4": 4.032971494481369, - "c5": 4.086439627832557, - "c6": 4.109885287144984, - "c7": 4.030356110976968 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567256, + "c3": 4.923717059639406, + "c4": 3.9389736477115176, + "c5": 2.954230235783628, + "c6": 1.9694868238557388, + "c7": 0.9847434119278892 }, "rgb": [58, 15, 49] }, @@ -68910,23 +68910,23 @@ "year": 1720, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 10.486468902728149, - "c2": -31.056819468439897, - "c3": 0.9961273047833004, - "c4": 15.120819475028952, - "c5": 18.56074243685928, - "c6": 10.130623677474269, - "c7": 16.280089164247634 + "points": { + "c1": 33.016042515704925, + "c2": -20.451275997339827, + "c3": -17.470067299605006, + "c4": 2.721023197030476, + "c5": -31.922945705362533, + "c6": 12.07102271917509, + "c7": 9.832989016835981 }, - "vertexSeeds": { - "c1": 1.67064127869967, - "c2": 1.9377060198435925, - "c3": 1.8393013675378185, - "c4": 1.9693395148881447, - "c5": 1.6652801103791501, - "c6": 2.021426697084392, - "c7": 2.0475330813327366 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.9958391123439663, + "c3": 2.4965325936199734, + "c4": 1.9972260748959783, + "c5": 1.4979195561719831, + "c6": 0.9986130374479901, + "c7": 0.49930651872399506 }, "rgb": [77, 76, 132] }, @@ -68937,23 +68937,23 @@ "year": 1721, "resistanceReported": false, "duration": 43372800, - "curveSeeds": { - "c1": -13.293018273159696, - "c2": -50.400826931537324, - "c3": 52.70603078145572, - "c4": 5.374370793991524, - "c5": 51.99176757420783, - "c6": -35.64289821145334, - "c7": -10.480636935008029 + "points": { + "c1": 5.543583747790777, + "c2": 48.813018826476096, + "c3": -1.9216976413351077, + "c4": -14.173623625119014, + "c5": -17.581689171025197, + "c6": 1.9959813715898491, + "c7": -25.525564982655894 }, - "vertexSeeds": { - "c1": 3.6382550709517094, - "c2": 3.7386976999027115, - "c3": 4.069705345613148, - "c4": 3.8290989994675493, - "c5": 4.107347885891539, - "c6": 3.582040120536551, - "c7": 4.050585756367078 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607488, + "c3": 4.946833102172905, + "c4": 3.9574664817383267, + "c5": 2.968099861303744, + "c6": 1.9787332408691605, + "c7": 0.9893666204345832 }, "rgb": [222, 0, 59] }, @@ -68964,23 +68964,23 @@ "year": 1720, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -2.6731699133224147, - "c2": 8.636367471213589, - "c3": -23.96624063424087, - "c4": -31.791912904138986, - "c5": 31.413460686727213, - "c6": 5.585466186242613, - "c7": 4.792537618541118 + "points": { + "c1": 0.7538830850170228, + "c2": -2.220864282400356, + "c3": 32.78933078307998, + "c4": 28.3989471972476, + "c5": 2.0520175991331513, + "c6": 5.227350671519389, + "c7": -34.6009380897106 }, - "vertexSeeds": { - "c1": 6.623419083410477, - "c2": 6.509158149827652, - "c3": 7.289996819688545, - "c4": 6.738822445330836, - "c5": 6.581379874660781, - "c6": 7.070718752002227, - "c7": 6.705582936882691 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812762, + "c3": 9.662505779010635, + "c4": 7.73000462320851, + "c5": 5.797503467406377, + "c6": 3.865002311604251, + "c7": 1.9325011558021254 }, "rgb": [222, 0, 59] }, @@ -68991,23 +68991,23 @@ "year": 1720, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 28.380298890318812, - "c2": 19.16513542475797, - "c3": -10.246807420061643, - "c4": 10.342225508793256, - "c5": -11.728476270180444, - "c6": 0.04721418566091273, - "c7": 0.28606808034722064 + "points": { + "c1": -23.952280890780717, + "c2": 10.952287899499474, + "c3": 6.65017790686808, + "c4": -29.677215189003945, + "c5": -26.457484670051638, + "c6": 11.510410687218766, + "c7": 17.606059301197845 }, - "vertexSeeds": { - "c1": 5.021327602870383, - "c2": 4.8598310788343495, - "c3": 4.875457222786389, - "c4": 4.994773147582574, - "c5": 4.973419539501881, - "c6": 4.986430943477669, - "c7": 4.8841292529804425 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457706, + "c3": 6.010171058714763, + "c4": 4.808136846971822, + "c5": 3.606102635228853, + "c6": 2.404068423485911, + "c7": 1.2020342117429421 }, "rgb": [77, 76, 132] }, @@ -69018,23 +69018,23 @@ "year": 1720, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 38.72833227018728, - "c2": 9.036678379111905, - "c3": 24.390513099290047, - "c4": -30.407472303303436, - "c5": 18.698695095235905, - "c6": 31.22147308159741, - "c7": -10.119234072298418 + "points": { + "c1": -7.293515525079947, + "c2": -29.88328178284287, + "c3": 5.970947803193205, + "c4": -34.90227168075319, + "c5": -21.582588581117147, + "c6": -30.757473745555703, + "c7": -12.481460650034233 }, - "vertexSeeds": { - "c1": 5.157678606875775, - "c2": 4.428984588934919, - "c3": 4.747994187865808, - "c4": 4.997602303016521, - "c5": 4.65732080595035, - "c6": 4.600450544600032, - "c7": 4.699019730308155 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859916, + "c3": 6.2413314840499305, + "c4": 4.993065187239944, + "c5": 3.744798890429958, + "c6": 2.496532593619972, + "c7": 1.248266296809986 }, "rgb": [77, 76, 132] }, @@ -69045,23 +69045,23 @@ "year": 1720, "resistanceReported": false, "duration": 2505600, - "curveSeeds": { - "c1": -4.576583082628309, - "c2": 8.37883940686831, - "c3": 11.771384393541842, - "c4": -8.718476927480861, - "c5": 11.954066300439104, - "c6": 6.947488694972259, - "c7": 7.098491877731503 + "points": { + "c1": 13.777732100090068, + "c2": -9.069892430993157, + "c3": -9.129389296949475, + "c4": 7.008116292001619, + "c5": -1.1496803643050182, + "c6": -9.302317153118949, + "c7": -5.701984167355574 }, - "vertexSeeds": { - "c1": 5.251784741141502, - "c2": 5.269268248159109, - "c3": 4.893119224029812, - "c4": 5.270478369454802, - "c5": 4.83440566331144, - "c6": 4.810553820273621, - "c7": 4.684701122437657 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980585, + "c3": 6.31067961165049, + "c4": 5.048543689320395, + "c5": 3.7864077669902927, + "c6": 2.5242718446601975, + "c7": 1.262135922330095 }, "rgb": [86, 146, 138] }, @@ -69072,23 +69072,23 @@ "year": 1720, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -17.428616389301823, - "c2": 20.045954708763883, - "c3": -6.287632716277404, - "c4": -2.965951736565863, - "c5": -13.754332216661629, - "c6": -20.940361750119795, - "c7": 13.623885676026855 + "points": { + "c1": 6.756224150347311, + "c2": 5.964863597490247, + "c3": 6.914521094730599, + "c4": 27.96925051561939, + "c5": 20.34875842154521, + "c6": -22.83892142246325, + "c7": -12.904941492605301 }, - "vertexSeeds": { - "c1": 3.246565874648778, - "c2": 3.4367990721849395, - "c3": 3.261515069396848, - "c4": 4.000741806131513, - "c5": 3.9892072276032104, - "c6": 3.926974325078029, - "c7": 3.475085262976059 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486821, + "c3": 4.877484974572353, + "c4": 3.901987979657881, + "c5": 2.9264909847434124, + "c6": 1.9509939898289406, + "c7": 0.9754969949144722 }, "rgb": [238, 201, 159] }, @@ -69099,23 +69099,23 @@ "year": 1720, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 14.684843787730593, - "c2": 4.792693766844323, - "c3": 17.107371861028597, - "c4": 13.262990809605192, - "c5": 31.727639106460444, - "c6": 11.966943092875084, - "c7": 39.139677920215235 + "points": { + "c1": -24.669273964493375, + "c2": -31.718303561353153, + "c3": -5.238991711748618, + "c4": 1.445677736324889, + "c5": -2.2009475449148894, + "c6": 23.839495807274034, + "c7": 21.628101481604624 }, - "vertexSeeds": { - "c1": 1.6700291984508742, - "c2": 1.5927723853492963, - "c3": 1.6515607411954, - "c4": 1.6716433756138707, - "c5": 1.6434975587302154, - "c6": 1.6529001604006075, - "c7": 1.548283478824823 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [58, 15, 49] }, @@ -69126,23 +69126,23 @@ "year": 1720, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -5.092769597322686, - "c2": 1.212152446061637, - "c3": 3.9644019452261148, - "c4": -13.436970312244352, - "c5": 29.808663827507964, - "c6": -9.51019860119198, - "c7": 10.842438005560659 + "points": { + "c1": -29.907356649191744, + "c2": -1.6366807093681537, + "c3": 1.2267531853534663, + "c4": -5.050222504828373, + "c5": -19.291557065067828, + "c6": 1.7458059460198285, + "c7": 0.3416146810100855 }, - "vertexSeeds": { - "c1": 2.50593702509023, - "c2": 2.449789692746185, - "c3": 2.4911783940417362, - "c4": 2.459088419703048, - "c5": 2.490234491995802, - "c6": 2.501092340405192, - "c7": 2.503749778233272 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228866, + "c3": 3.005085529357369, + "c4": 2.404068423485911, + "c5": 1.8030513176144132, + "c6": 1.2020342117429554, + "c7": 0.6010171058714777 }, "rgb": [222, 0, 59] }, @@ -69153,23 +69153,23 @@ "year": 1720, "resistanceReported": true, "duration": 16329600, - "curveSeeds": { - "c1": -17.8099714937265, - "c2": -22.905240991765336, - "c3": -20.22926080344181, - "c4": 0.07446789603283577, - "c5": 18.531135339850298, - "c6": -19.259252536674005, - "c7": 20.90554893337085 + "points": { + "c1": 6.931503090683147, + "c2": -26.846014254148717, + "c3": 9.466302907402902, + "c4": 0.018180061187923258, + "c5": 10.56944499273489, + "c6": -3.9772635708766444, + "c7": 0.8847370797108596 }, - "vertexSeeds": { - "c1": 5.082992444459089, - "c2": 5.015417473372562, - "c3": 5.017726737564475, - "c4": 5.014304974257224, - "c5": 5.051808723465979, - "c6": 5.024555205289014, - "c7": 5.0092038050614125 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699037, + "c3": 6.148867313915873, + "c4": 4.91909385113271, + "c5": 3.6893203883494916, + "c6": 2.4595469255663276, + "c7": 1.2297734627831638 }, "rgb": [77, 76, 132] }, @@ -69180,23 +69180,23 @@ "year": 1720, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -23.7056924517263, - "c2": -25.585824629505595, - "c3": 25.084597706266017, - "c4": -25.0876467932053, - "c5": -16.468570850239857, - "c6": 14.68788037102285, - "c7": 9.530361659350973 + "points": { + "c1": -26.91031537565036, + "c2": 23.364954070207574, + "c3": 2.45001178840608, + "c4": 23.68796380468921, + "c5": -1.5190705035659349, + "c6": 13.971019519807378, + "c7": 4.22010203978779 }, - "vertexSeeds": { - "c1": 4.682584870879318, - "c2": 5.018729213673916, - "c3": 4.445472803824548, - "c4": 5.114173994664114, - "c5": 5.335625354542051, - "c6": 5.103770445192032, - "c7": 4.763459007233746 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141467, + "c3": 6.40314378178456, + "c4": 5.122515025427645, + "c5": 3.8418862690707334, + "c6": 2.5612575127138224, + "c7": 1.2806287563569112 }, "rgb": [238, 201, 159] }, @@ -69207,23 +69207,23 @@ "year": 1720, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 5.477138233634474, - "c2": -19.41212660593365, - "c3": 21.186995808636354, - "c4": 17.47869765058845, - "c5": 19.652976602546744, - "c6": -2.53506927332009, - "c7": 13.323391941071591 + "points": { + "c1": 11.463806670845173, + "c2": 26.227070040747968, + "c3": -2.2354488840454714, + "c4": 0.15713529721636377, + "c5": 23.824236979982956, + "c6": -12.82466394036527, + "c7": 14.117731800332173 }, - "vertexSeeds": { - "c1": 1.9935845216629886, - "c2": 1.9530825879058713, - "c3": 1.9193184712171503, - "c4": 2.008533323970408, - "c5": 1.9452353304915377, - "c6": 2.0415700368830567, - "c7": 2.053139361218278 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244114, + "c3": 2.5427646786870066, + "c4": 2.0342117429496063, + "c5": 1.5256588072122057, + "c6": 1.0171058714748011, + "c7": 0.5085529357374006 }, "rgb": [58, 15, 49] }, @@ -69234,23 +69234,23 @@ "year": 1721, "resistanceReported": false, "duration": 41644800, - "curveSeeds": { - "c1": 35.60582809496147, - "c2": 28.301938328904853, - "c3": -27.06246496644127, - "c4": -32.024459418596905, - "c5": 41.63754309972488, - "c6": -34.014388997869816, - "c7": -5.55284251630772 + "points": { + "c1": -53.223303337104596, + "c2": 35.38339585718646, + "c3": 14.252302615582437, + "c4": -29.0982488937978, + "c5": 43.35952702889395, + "c6": 18.16133527575836, + "c7": 52.961114727475575 }, - "vertexSeeds": { - "c1": 8.864058926562167, - "c2": 8.300923370068974, - "c3": 8.746173072077392, - "c4": 8.803856678990117, - "c5": 9.005391412557495, - "c6": 7.891860522987008, - "c7": 7.923483503510201 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703193, + "c3": 10.748959778085984, + "c4": 8.599167822468791, + "c5": 6.449375866851597, + "c6": 4.299583911234403, + "c7": 2.149791955617194 }, "rgb": [238, 201, 159] }, @@ -69261,23 +69261,23 @@ "year": 1720, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -15.634728680821969, - "c2": -25.057792039068428, - "c3": -7.594669374646706, - "c4": 31.699094169876673, - "c5": -37.76550338881941, - "c6": -9.97005111181971, - "c7": -26.82655014108639 + "points": { + "c1": -30.58316594414935, + "c2": 37.83377044843073, + "c3": -19.08906380876796, + "c4": -29.998513646056153, + "c5": 29.588955300159228, + "c6": -8.998922350872185, + "c7": 12.093882913336131 }, - "vertexSeeds": { - "c1": 2.507985287469962, - "c2": 2.2338036047568757, - "c3": 2.1907393660788523, - "c4": 1.9781406346722596, - "c5": 2.4891289159517864, - "c6": 2.544090478130696, - "c7": 2.1224751839583824 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.717059639389735, + "c3": 3.0975496994914464, + "c4": 2.4780397595931576, + "c5": 1.8585298196948674, + "c6": 1.239019879796577, + "c7": 0.6195099398982885 }, "rgb": [58, 15, 49] }, @@ -69288,23 +69288,23 @@ "year": 1720, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 25.635272402149074, - "c2": 11.395048752644154, - "c3": -21.052875802838148, - "c4": 12.623203025979318, - "c5": 16.548843348863844, - "c6": 23.530136375331548, - "c7": 1.0607746057188798 + "points": { + "c1": -24.840481216292353, + "c2": 12.694984336788298, + "c3": -24.00290276454593, + "c4": -8.0129980818697, + "c5": 2.47090893703092, + "c6": 24.278251557640917, + "c7": 26.41962630816288 }, - "vertexSeeds": { - "c1": 5.147407286595807, - "c2": 5.182921931411483, - "c3": 5.327500013739603, - "c4": 5.306113015592503, - "c5": 5.07192351444075, - "c6": 5.099000617383563, - "c7": 5.338889709800244 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385114, + "c4": 5.17799352750809, + "c5": 3.883495145631068, + "c6": 2.588996763754045, + "c7": 1.2944983818770226 }, "rgb": [77, 76, 132] }, @@ -69315,23 +69315,23 @@ "year": 1720, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -1.508137491576747, - "c2": 14.162954795196327, - "c3": -9.34108818387573, - "c4": -13.167673851406928, - "c5": -1.0866480786996746, - "c6": -28.0446527660488, - "c7": 19.55410106999114 + "points": { + "c1": 25.283371626594736, + "c2": -15.716540610799122, + "c3": -32.91158528136698, + "c4": -25.88159325203261, + "c5": 35.86734328688892, + "c6": -16.203434173501694, + "c7": 33.404734806542386 }, - "vertexSeeds": { - "c1": 6.399682301836298, - "c2": 5.924430799912209, - "c3": 5.800917642713441, - "c4": 6.49975070813604, - "c5": 6.127087412056309, - "c6": 6.886545875022917, - "c7": 6.590464429916018 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993527, + "c4": 6.860841423948221, + "c5": 5.145631067961164, + "c6": 3.4304207119741057, + "c7": 1.7152103559870575 }, "rgb": [77, 76, 132] }, @@ -69342,23 +69342,23 @@ "year": 1720, "resistanceReported": false, "duration": 86400, - "curveSeeds": { - "c1": 7.475339441840795, - "c2": -4.220032094442212, - "c3": 6.556344681862644, - "c4": 0.7091738564314287, - "c5": -1.7311758996442617, - "c6": -5.943935334871129, - "c7": 8.377844551615922 + "points": { + "c1": 2.3927956899679437, + "c2": 1.4037232310907477, + "c3": 6.944806666304807, + "c4": -8.18921349596908, + "c5": -1.966843019794318, + "c6": 10.291147273733031, + "c7": 4.5295349497048605 }, - "vertexSeeds": { - "c1": 4.018496745429398, - "c2": 4.541137953490676, - "c3": 3.75965011019486, - "c4": 4.520654512753468, - "c5": 4.019673325361488, - "c6": 4.2102447612239295, - "c7": 3.860344783666298 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -69369,23 +69369,23 @@ "year": 1720, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 2.0704164648515047, - "c2": 5.738131845244144, - "c3": 16.478869689646395, - "c4": -1.7826067158745964, - "c5": -20.965356122469952, - "c6": -10.074219913762704, - "c7": -13.74673489509073 + "points": { + "c1": 3.273824852712359, + "c2": 21.04713565019749, + "c3": 13.709246671250668, + "c4": -16.211256304675413, + "c5": 6.150438343768158, + "c6": 0.2916254197197823, + "c7": 17.108824567547543 }, - "vertexSeeds": { - "c1": 5.249702915800548, - "c2": 5.67390234489466, - "c3": 4.771231303174109, - "c4": 5.678753197310348, - "c5": 5.145548917234987, - "c6": 4.917010918331699, - "c7": 5.4766908041789915 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348127, + "c3": 7.096625057790106, + "c4": 5.677300046232085, + "c5": 4.257975034674064, + "c6": 2.8386500231160423, + "c7": 1.4193250115580212 }, "rgb": [86, 146, 138] }, @@ -69396,23 +69396,23 @@ "year": 1720, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 20.022463748869335, - "c2": -9.029468996581457, - "c3": -22.819203000924595, - "c4": -6.953889027395576, - "c5": 10.570320427223265, - "c6": -8.747541932480402, - "c7": -15.446497609119284 + "points": { + "c1": 0.10902933616646138, + "c2": -6.821712321013621, + "c3": -20.805086556671803, + "c4": -12.518356703317373, + "c5": 13.833212844622231, + "c6": 16.684543696423937, + "c7": 17.309249742849808 }, - "vertexSeeds": { - "c1": 6.511608732848584, - "c2": 6.9789162561671585, - "c3": 6.84725083910973, - "c4": 6.820047606399983, - "c5": 6.556736106863838, - "c6": 7.13965089519667, - "c7": 6.427442430392211 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404994, + "c3": 8.853444290337498, + "c4": 7.082755432269989, + "c5": 5.312066574202492, + "c6": 3.5413777161349946, + "c7": 1.7706888580674973 }, "rgb": [222, 0, 59] }, @@ -69423,23 +69423,23 @@ "year": 1721, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -21.106761633410205, - "c2": -29.6300037712479, - "c3": 10.712943558405044, - "c4": -3.19112613774913, - "c5": -36.40597927068909, - "c6": 26.327427217373277, - "c7": 19.860173119099066 + "points": { + "c1": -45.95030964021454, + "c2": -2.8259853064149, + "c3": 28.54796663556835, + "c4": 14.040306840640966, + "c5": -8.264047437527715, + "c6": -40.77952293591449, + "c7": 1.602333012306616 }, - "vertexSeeds": { - "c1": 5.775330073857604, - "c2": 5.755158715187949, - "c3": 5.255044996165836, - "c4": 6.043773305953019, - "c5": 5.698922000435092, - "c6": 5.450735366890513, - "c7": 6.342940766154522 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [58, 15, 49] }, @@ -69450,23 +69450,23 @@ "year": 1721, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": -20.382520442797514, - "c2": -37.49084796428515, - "c3": 17.496818473868956, - "c4": -31.098007258870194, - "c5": 42.888016263368726, - "c6": -3.6177651351795106, - "c7": 21.691605791940816 + "points": { + "c1": -45.85087018454691, + "c2": -32.519722221018846, + "c3": 53.67619661260264, + "c4": 34.541153301222295, + "c5": 27.17616898206299, + "c6": 5.806608796383308, + "c7": -0.975113991822731 }, - "vertexSeeds": { - "c1": 3.48646967529327, - "c2": 3.4957792699539865, - "c3": 3.362091291818266, - "c4": 3.4715160406822845, - "c5": 3.343874577006519, - "c6": 3.472015999373238, - "c7": 3.1823591113441703 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441057, + "c3": 4.276467868700877, + "c4": 3.4211742949607045, + "c5": 2.565880721220525, + "c6": 1.7105871474803522, + "c7": 0.8552935737401728 }, "rgb": [77, 76, 132] }, @@ -69477,23 +69477,23 @@ "year": 1720, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -4.141371155218575, - "c2": 23.012523276374136, - "c3": 27.7018393132382, - "c4": -27.839396921507888, - "c5": -18.519279484353515, - "c6": 24.642531803148163, - "c7": 30.17105111968765 + "points": { + "c1": 6.683310622567667, + "c2": 12.509541375086371, + "c3": -33.5225326965084, + "c4": 19.077819769066764, + "c5": -22.153529984867077, + "c6": 10.697149334304711, + "c7": -5.248862311533763 }, - "vertexSeeds": { - "c1": 2.128795769846047, - "c2": 2.208568834259872, - "c3": 2.2497745121330284, - "c4": 2.2652348946574836, - "c5": 2.3239228330814834, - "c6": 2.1912680549399837, - "c7": 2.3293990678811083 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.495145631067961, + "c3": 2.912621359223301, + "c4": 2.3300970873786406, + "c5": 1.7475728155339805, + "c6": 1.1650485436893203, + "c7": 0.5825242718446602 }, "rgb": [86, 146, 138] }, @@ -69504,23 +69504,23 @@ "year": 1721, "resistanceReported": false, "duration": 46915200, - "curveSeeds": { - "c1": 41.522289201680614, - "c2": -48.25435229575132, - "c3": -38.07605818755455, - "c4": -39.37486425824836, - "c5": 38.445450705041615, - "c6": -60.167906912192514, - "c7": 41.434203807513306 + "points": { + "c1": -43.247986478125824, + "c2": -59.30487308192271, + "c3": -60.083076691952286, + "c4": 14.631199755681656, + "c5": 8.031018679112357, + "c6": 51.27993939723569, + "c7": 54.645184633645776 }, - "vertexSeeds": { - "c1": 3.25111364576153, - "c2": 2.6913169156118197, - "c3": 2.983396279363898, - "c4": 2.5725368860072453, - "c5": 3.1826241063279714, - "c6": 3.284573374373808, - "c7": 2.948449388767995 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561719, + "c3": 4.345815996301433, + "c4": 3.476652797041146, + "c5": 2.6074895977808596, + "c6": 1.738326398520573, + "c7": 0.8691631992602865 }, "rgb": [238, 201, 159] }, @@ -69531,23 +69531,23 @@ "year": 1722, "resistanceReported": false, "duration": 83635200, - "curveSeeds": { - "c1": 13.636382642144682, - "c2": -8.811168835257504, - "c3": 85.02579454380579, - "c4": 98.37875653140078, - "c5": -101.14927014708447, - "c6": 89.42553613102892, - "c7": 82.52392475669687 + "points": { + "c1": 13.684189396570702, + "c2": -77.43147612308852, + "c3": -79.76704677693245, + "c4": 90.4352607716434, + "c5": 23.59734203787292, + "c6": 24.24386784604181, + "c7": 6.4932630208857205 }, - "vertexSeeds": { - "c1": 2.2227379985132054, - "c2": 2.1015375549330577, - "c3": 2.165335456703772, - "c4": 2.3265188396280907, - "c5": 2.2474158513355085, - "c6": 2.1671953090087808, - "c7": 2.243948922353998 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [86, 146, 138] }, @@ -69558,23 +69558,23 @@ "year": 1721, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 4.760182416810004, - "c2": -27.397339446871275, - "c3": 29.656448180983823, - "c4": -6.24349619571862, - "c5": -38.32080459842557, - "c6": 41.746328653769446, - "c7": 0.8324897976991679 + "points": { + "c1": -20.03735353812796, + "c2": 35.5775481011268, + "c3": 21.840501630016995, + "c4": 19.73356814904252, + "c5": -17.414751984649673, + "c6": 33.69351083535114, + "c7": 37.65552638717893 }, - "vertexSeeds": { - "c1": 3.029811532438389, - "c2": 2.284147134612557, - "c3": 2.898561980690932, - "c4": 2.3831188353091517, - "c5": 2.8156775659894553, - "c6": 2.866401703428265, - "c7": 3.0026276408334645 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355064, + "c3": 3.652334720295885, + "c4": 2.9218677762367093, + "c5": 2.1914008321775302, + "c6": 1.4609338881183547, + "c7": 0.7304669440591754 }, "rgb": [238, 201, 159] }, @@ -69585,23 +69585,23 @@ "year": 1720, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 4.165397939594065, - "c2": 14.20022488716134, - "c3": 20.12498491680585, - "c4": 4.565563725126125, - "c5": 17.568099467590592, - "c6": 20.079451953510663, - "c7": -0.9166168209639949 + "points": { + "c1": -5.316173468107383, + "c2": -10.823383858995946, + "c3": -1.845567600730984, + "c4": -8.83268159643217, + "c5": 29.0663694633326, + "c6": 21.650917073964145, + "c7": -30.0857467872679 }, - "vertexSeeds": { - "c1": 1.316650417168809, - "c2": 1.3590866911711388, - "c3": 1.3310381566555023, - "c4": 1.134403492947235, - "c5": 1.3004634008964473, - "c6": 1.3442701687629643, - "c7": 1.3643748478477575 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959774, + "c3": 1.664355062413314, + "c4": 1.3314840499306524, + "c5": 0.9986130374479891, + "c6": 0.6657420249653258, + "c7": 0.33287101248266243 }, "rgb": [58, 15, 49] }, @@ -69612,23 +69612,23 @@ "year": 1720, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 21.491396735342935, - "c2": 4.105055047773423, - "c3": 3.027175141618681, - "c4": -3.1822371971671863, - "c5": 14.875762108788553, - "c6": -19.20741913401131, - "c7": 14.533818268432558 + "points": { + "c1": -6.396663333378015, + "c2": -16.274798688625925, + "c3": 2.698470139295466, + "c4": 12.3979485349113, + "c5": 25.95642325298222, + "c6": 4.468002176327232, + "c7": -10.365330480149375 }, - "vertexSeeds": { - "c1": 7.442580777277941, - "c2": 7.3588481952595695, - "c3": 7.64387390739415, - "c4": 7.638443624875564, - "c5": 7.094899278381257, - "c6": 7.313270981195232, - "c7": 7.721494099185327 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169215, + "c3": 9.292649098474335, + "c4": 7.434119278779471, + "c5": 5.575589459084608, + "c6": 3.7170596393897273, + "c7": 1.8585298196948636 }, "rgb": [238, 201, 159] }, @@ -69639,23 +69639,23 @@ "year": 1721, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 36.91560358148175, - "c2": 21.858183918305023, - "c3": 6.029287608111922, - "c4": 17.07136490017305, - "c5": 20.92009459149255, - "c6": 34.15365845903959, - "c7": 13.386280819378094 + "points": { + "c1": 8.933542884647807, + "c2": -38.851686873620345, + "c3": 43.22635636148223, + "c4": -37.63555853221428, + "c5": 28.9384546140937, + "c6": 2.429502290886745, + "c7": 17.819260001952877 }, - "vertexSeeds": { - "c1": 2.037354795200035, - "c2": 2.102138029334509, - "c3": 2.178185947193386, - "c4": 2.1597312537879323, - "c5": 2.2055739331238247, - "c6": 2.0565538409794013, - "c7": 2.128604621091448 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551547, + "c4": 2.1821544151641237, + "c5": 1.6366158113730929, + "c6": 1.0910772075820618, + "c7": 0.5455386037910309 }, "rgb": [86, 146, 138] }, @@ -69666,23 +69666,23 @@ "year": 1720, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 28.327561388458705, - "c2": 23.958814133981186, - "c3": -5.876879048160859, - "c4": 22.504497712643804, - "c5": -21.05720421176995, - "c6": -13.391879739457469, - "c7": -34.634297869459104 + "points": { + "c1": -11.855687256841993, + "c2": 30.48984994208574, + "c3": -9.942179683905586, + "c4": -12.890227633953778, + "c5": -29.830093869443978, + "c6": -28.760427354897615, + "c7": 12.900936552950775 }, - "vertexSeeds": { - "c1": 9.122675457118838, - "c2": 11.110488204921577, - "c3": 10.805709975053873, - "c4": 9.987302245298316, - "c5": 9.547344388841228, - "c6": 10.54226439168996, - "c7": 9.294622238101496 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.532593619972253, + "c3": 13.777161349976888, + "c4": 11.021729079981503, + "c5": 8.266296809986134, + "c6": 5.510864539990751, + "c7": 2.7554322699953757 }, "rgb": [77, 76, 132] }, @@ -69693,23 +69693,23 @@ "year": 1721, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 8.191266307595974, - "c2": 6.401997125211679, - "c3": -40.78104448517513, - "c4": 28.29665971874354, - "c5": -12.211138512472576, - "c6": -7.880571194179431, - "c7": 39.21575523359519 + "points": { + "c1": -9.447650226801883, + "c2": -42.813223245886725, + "c3": -39.14411940214179, + "c4": 36.41515458121674, + "c5": 38.312918145647146, + "c6": -36.429055717359276, + "c7": 17.647265062643058 }, - "vertexSeeds": { - "c1": 4.049690387460395, - "c2": 3.821828160637987, - "c3": 4.3104632272480625, - "c4": 4.244836358735901, - "c5": 4.4471786571617535, - "c6": 3.115168785230229, - "c7": 3.61437592280815 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653259, + "c3": 5.547850208044382, + "c4": 4.438280166435504, + "c5": 3.3287101248266304, + "c6": 2.219140083217752, + "c7": 1.109570041608876 }, "rgb": [238, 201, 159] }, @@ -69720,23 +69720,23 @@ "year": 1720, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 26.91735757111291, - "c2": -16.04331429737367, - "c3": 15.823283553198415, - "c4": 12.439688499803125, - "c5": -10.064945515041678, - "c6": 28.91475015941201, - "c7": -8.730612939838956 + "points": { + "c1": -12.376615701470008, + "c2": -30.76281731509995, + "c3": 25.664776153070434, + "c4": -30.76767629857952, + "c5": 1.4875654236878049, + "c6": 8.920918818155698, + "c7": 7.422526002762311 }, - "vertexSeeds": { - "c1": 3.1558366477266575, - "c2": 3.008409396204349, - "c3": 3.0698622766664734, - "c4": 3.3934509623139495, - "c5": 3.147666066321324, - "c6": 3.016286155276095, - "c7": 3.454331619189155 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033288, + "c4": 3.328710124826628, + "c5": 2.496532593619974, + "c6": 1.664355062413314, + "c7": 0.8321775312066598 }, "rgb": [77, 76, 132] }, @@ -69747,23 +69747,23 @@ "year": 1720, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -16.23356956838658, - "c2": 10.122613052053804, - "c3": -4.02375005973304, - "c4": 12.296615516166572, - "c5": -6.5573443329047905, - "c6": 22.96256836856354, - "c7": 2.6808996224334685 + "points": { + "c1": -7.063109800852374, + "c2": -23.44969047369309, + "c3": 21.34413201071938, + "c4": 6.745865330576034, + "c5": 16.273165010742606, + "c6": -18.626928870671, + "c7": -21.689059785317035 }, - "vertexSeeds": { - "c1": 4.08156927595025, - "c2": 4.267765461520263, - "c3": 4.361907947627556, - "c4": 4.139010519067536, - "c5": 4.074780129214318, - "c6": 4.366465072258125, - "c7": 3.9919074161602572 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.2690707350901524, + "c3": 5.224225612575128, + "c4": 4.179380490060102, + "c5": 3.1345353675450762, + "c6": 2.089690245030051, + "c7": 1.0448451225150255 }, "rgb": [222, 0, 59] }, @@ -69774,23 +69774,23 @@ "year": 1720, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -21.187177412032753, - "c2": 26.052271508206474, - "c3": 5.722340565414669, - "c4": -1.5286119665073095, - "c5": -1.196283895051554, - "c6": -28.686146349400357, - "c7": -29.596999384022048 + "points": { + "c1": -22.603468845199906, + "c2": 21.364000089292823, + "c3": 0.6704608640948493, + "c4": 16.36344286986099, + "c5": 5.861397468941817, + "c6": -24.96604058247624, + "c7": 32.67385695961812 }, - "vertexSeeds": { - "c1": 2.223179638995677, - "c2": 2.414820976026376, - "c3": 2.656856820598792, - "c4": 2.431900060088932, - "c5": 2.2859576911386714, - "c6": 2.2824241305176405, - "c7": 2.630057594054623 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115105, + "c3": 3.2824780397595914, + "c4": 2.6259824318076763, + "c5": 1.9694868238557566, + "c6": 1.312991215903837, + "c7": 0.6564956079519173 }, "rgb": [86, 146, 138] }, @@ -69801,23 +69801,23 @@ "year": 1720, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": -4.2758192846139345, - "c2": 13.172250856591802, - "c3": 13.510046988272435, - "c4": 15.841267968896446, - "c5": 0.9988348763830466, - "c6": -16.48638166661154, - "c7": -18.22000325477274 + "points": { + "c1": 19.210862561554677, + "c2": 2.8786170367715727, + "c3": 0.35055996934878664, + "c4": -12.553602758204672, + "c5": 17.844942900651525, + "c6": 4.540357683609681, + "c7": -17.23579146590075 }, - "vertexSeeds": { - "c1": 4.207608319331265, - "c2": 4.215293358306409, - "c3": 4.242770972511738, - "c4": 4.250117401855618, - "c5": 4.149475979439273, - "c6": 4.1933133834604845, - "c7": 4.172580443381195 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848816, + "c3": 5.085529357374008, + "c4": 4.068423485899199, + "c5": 3.0513176144243914, + "c6": 2.034211742949617, + "c7": 1.0171058714748085 }, "rgb": [58, 15, 49] }, @@ -69828,23 +69828,23 @@ "year": 1720, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 26.126731982720088, - "c2": 34.60030854915105, - "c3": 6.128867316825698, - "c4": 8.840838522470868, - "c5": 13.069920568981566, - "c6": 0.9310376634537221, - "c7": -35.373657929281975 + "points": { + "c1": 29.653172557858255, + "c2": 25.840370048740787, + "c3": 0.5954925428779205, + "c4": -5.3274648535817875, + "c5": -6.600964298112874, + "c6": 23.40101981669914, + "c7": 32.524243250415964 }, - "vertexSeeds": { - "c1": 9.517355529363938, - "c2": 9.34632762867381, - "c3": 9.527675285364882, - "c4": 9.896927077808911, - "c5": 9.860300637549143, - "c6": 9.844757727067664, - "c7": 9.038692785322484 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.70180305131761, + "c3": 12.25150254276467, + "c4": 9.801202034211745, + "c5": 7.350901525658805, + "c6": 4.900601017105865, + "c7": 2.4503005085529397 }, "rgb": [58, 15, 49] }, @@ -69855,23 +69855,23 @@ "year": 1720, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 20.447362586477198, - "c2": 23.64826814072684, - "c3": -4.238862593791918, - "c4": -4.817866002299063, - "c5": -30.317476557047957, - "c6": -6.508124501509059, - "c7": -12.747387817581334 + "points": { + "c1": -6.7792234224203725, + "c2": 29.640456395447842, + "c3": 37.02665835841803, + "c4": 30.472146700473175, + "c5": -11.385395170374291, + "c6": 35.1014213508446, + "c7": 25.386969935423565 }, - "vertexSeeds": { - "c1": 2.4014577219837845, - "c2": 2.377669682775206, - "c3": 2.3010280621034283, - "c4": 2.4950585895726793, - "c5": 2.491542492983873, - "c6": 2.2575986926087306, - "c7": 2.371973385637564 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104036, + "c3": 3.1668978270920047, + "c4": 2.5335182616736027, + "c5": 1.9001386962552005, + "c6": 1.2667591308368014, + "c7": 0.633379565418402 }, "rgb": [86, 146, 138] }, @@ -69882,23 +69882,23 @@ "year": 1721, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 2.5691753862196762, - "c2": -21.619328868150582, - "c3": 35.276049804186215, - "c4": -41.71225327572532, - "c5": 37.88128728715627, - "c6": -23.261703803180826, - "c7": -9.064505363062281 + "points": { + "c1": -29.691203751700428, + "c2": -36.058319691353354, + "c3": -14.797375907211247, + "c4": 41.20274944719117, + "c5": -10.28428350782115, + "c6": -36.30392010367841, + "c7": 27.82391097349739 }, - "vertexSeeds": { - "c1": 6.107116501384848, - "c2": 6.211506694817669, - "c3": 5.713535227808523, - "c4": 6.136234156997146, - "c5": 6.12774775813319, - "c6": 5.8558785757058045, - "c7": 6.167784607465997 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991669, + "c3": 7.4664817383264, + "c4": 5.973185390661112, + "c5": 4.479889042995844, + "c6": 2.986592695330556, + "c7": 1.4932963476652885 }, "rgb": [238, 201, 159] }, @@ -69909,23 +69909,23 @@ "year": 1720, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 0.513174351643606, - "c2": 21.817393991793523, - "c3": 7.303540978601141, - "c4": -31.53332042544609, - "c5": 17.16139815800171, - "c6": -22.87884718321157, - "c7": 28.212857701890925 + "points": { + "c1": -12.355981310066749, + "c2": -5.620390684480217, + "c3": -33.02530237709709, + "c4": 1.391807083193335, + "c5": 16.619974509649523, + "c6": -2.9688283155073343, + "c7": 14.845769958621645 }, - "vertexSeeds": { - "c1": 1.7709664629247817, - "c2": 1.5746281329204506, - "c3": 1.6004376359208055, - "c4": 1.697277289837213, - "c5": 1.8252132806216297, - "c6": 1.7608211352606509, - "c7": 1.7049523879842257 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.6907073509015267, + "c3": 2.24225612575127, + "c4": 1.7938049006010168, + "c5": 1.3453536754507633, + "c6": 0.896902450300507, + "c7": 0.4484512251502535 }, "rgb": [77, 76, 132] }, @@ -69936,23 +69936,23 @@ "year": 1720, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -6.371598028005366, - "c2": 12.297859122999562, - "c3": 12.727875813409895, - "c4": -14.762777980473526, - "c5": -9.661415292934535, - "c6": 0.3582384690824405, - "c7": -7.360311897521068 + "points": { + "c1": 5.183201915009448, + "c2": -21.56397778537498, + "c3": 24.883614353159523, + "c4": 26.062343860465006, + "c5": 17.622358418338848, + "c6": 1.3322503156493504, + "c7": 14.018305811896553 }, - "vertexSeeds": { - "c1": 2.8358302456154094, - "c2": 2.7713088939678845, - "c3": 2.8381626563084996, - "c4": 2.9076185192188935, - "c5": 3.0706399963001916, - "c6": 2.872140522729623, - "c7": 2.774314028105914 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636615, + "c3": 3.814147018030513, + "c4": 3.05131761442441, + "c5": 2.2884882108183073, + "c6": 1.525658807212205, + "c7": 0.7628294036061025 }, "rgb": [238, 201, 159] }, @@ -69963,23 +69963,23 @@ "year": 1721, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": 5.446826056531357, - "c2": 41.05079072703424, - "c3": 40.761501718105905, - "c4": -12.470271936576054, - "c5": 46.03293782995196, - "c6": -20.571622438593465, - "c7": -14.197403224782548 + "points": { + "c1": 17.983110538630115, + "c2": -15.791978354371267, + "c3": 11.000778209487315, + "c4": 10.800554573327702, + "c5": 8.435630117706644, + "c6": 4.038964577488578, + "c7": -43.90627520056944 }, - "vertexSeeds": { - "c1": 2.7930021212607588, - "c2": 2.073544821796297, - "c3": 2.176296146226677, - "c4": 2.756877941012924, - "c5": 1.9910845882778014, - "c6": 2.8622590731991195, - "c7": 2.0312407255640714 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993067, + "c3": 3.444290337494221, + "c4": 2.7554322699953757, + "c5": 2.0665742024965326, + "c6": 1.3777161349976883, + "c7": 0.6888580674988442 }, "rgb": [77, 76, 132] }, @@ -69990,23 +69990,23 @@ "year": 1721, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -24.757638125751235, - "c2": -13.476441607009285, - "c3": 14.061451830073722, - "c4": -31.533068574784807, - "c5": 21.34655786526718, - "c6": -28.266246394620033, - "c7": 14.515277774699058 + "points": { + "c1": -38.74192348247523, + "c2": -13.495944647317106, + "c3": -26.956314244195966, + "c4": 3.667002190769523, + "c5": -15.867124293349232, + "c6": 32.60351519225067, + "c7": 30.867106645453433 }, - "vertexSeeds": { - "c1": 7.070144427422073, - "c2": 7.122551786310762, - "c3": 7.269238332607727, - "c4": 7.397911212356811, - "c5": 7.027805186472937, - "c6": 7.148954385715478, - "c7": 6.922697716792031 + "offsets": { + "c1": 12.653721682847896, + "c2": 10.84604715672676, + "c3": 9.038372630605643, + "c4": 7.230698104484508, + "c5": 5.423023578363389, + "c6": 3.615349052242254, + "c7": 1.8076745261211182 }, "rgb": [86, 146, 138] }, @@ -70017,23 +70017,23 @@ "year": 1721, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 2.845868622975601, - "c2": -8.57867536750437, - "c3": -32.91474251097132, - "c4": 10.096040630793361, - "c5": 24.418421448341782, - "c6": -28.417120450653883, - "c7": -5.72793449272314 + "points": { + "c1": 13.843918015154955, + "c2": 14.758768735082292, + "c3": 21.716370791819017, + "c4": -23.098151078124822, + "c5": 12.193324334777081, + "c6": -32.49511986476468, + "c7": 22.211101182766193 }, - "vertexSeeds": { - "c1": 4.375215446093255, - "c2": 4.178010758915146, - "c3": 4.31468725895041, - "c4": 4.294538290193258, - "c5": 4.149779140248169, - "c6": 4.492758919991302, - "c7": 4.651856707991322 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693483, + "c3": 5.570966250577904, + "c4": 4.4567730004623245, + "c5": 3.3425797503467374, + "c6": 2.2283865002311583, + "c7": 1.1141932501155791 }, "rgb": [77, 76, 132] }, @@ -70044,23 +70044,23 @@ "year": 1721, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -18.369300702415682, - "c2": 9.89473996393621, - "c3": 28.7536811746985, - "c4": -36.00901665756023, - "c5": 2.5511638290189964, - "c6": -21.708383642025897, - "c7": -33.684459466868084 + "points": { + "c1": 33.20663950717653, + "c2": 14.734044478145314, + "c3": 13.141839173252123, + "c4": 24.16075674121585, + "c5": 20.940141249412704, + "c6": -3.9610911171396737, + "c7": 36.44837129354177 }, - "vertexSeeds": { - "c1": 7.840485741831903, - "c2": 8.407222914572696, - "c3": 8.260400739384131, - "c4": 8.275047537073183, - "c5": 7.73514934043878, - "c6": 8.225452810867164, - "c7": 8.46937099512499 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657413, + "c3": 10.147942672214521, + "c4": 8.11835413777161, + "c5": 6.088765603328715, + "c6": 4.059177068885805, + "c7": 2.0295885344428926 }, "rgb": [86, 146, 138] }, @@ -70071,23 +70071,23 @@ "year": 1720, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 17.51107211163339, - "c2": 1.3250860261337607, - "c3": 16.046089765172596, - "c4": 28.556118493327993, - "c5": -27.291214243153366, - "c6": -23.428241118278834, - "c7": -16.569254568964514 + "points": { + "c1": -24.248621674806827, + "c2": 5.468458312437797, + "c3": -29.49310074195362, + "c4": 11.301764970917667, + "c5": -7.160837221379843, + "c6": -12.00471187461769, + "c7": 16.888631896362206 }, - "vertexSeeds": { - "c1": 3.470873822039691, - "c2": 3.2760145502719396, - "c3": 3.5101894632871526, - "c4": 3.2468257460852326, - "c5": 3.34111384551591, - "c6": 3.4379088186562425, - "c7": 3.481289389185302 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.07628294036061, + "c3": 4.230235783633839, + "c4": 3.3841886269070702, + "c5": 2.538141470180309, + "c6": 1.6920943134535393, + "c7": 0.8460471567267697 }, "rgb": [77, 76, 132] }, @@ -70098,23 +70098,23 @@ "year": 1721, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -22.04189986070473, - "c2": 21.58143490955353, - "c3": 1.2668324115231258, - "c4": 29.10821712018153, - "c5": -6.318952069674577, - "c6": 31.202751876598057, - "c7": 23.577336997869445 + "points": { + "c1": 5.309155979463803, + "c2": -26.759727549491288, + "c3": -10.027593217038838, + "c4": -15.42139857306572, + "c5": -20.55251437106404, + "c6": 17.97041667387463, + "c7": 23.63604748430317 }, - "vertexSeeds": { - "c1": 2.22898110764419, - "c2": 2.219362709497514, - "c3": 2.3096876252189866, - "c4": 2.256955892823273, - "c5": 2.1957827963548446, - "c6": 2.228275302451206, - "c7": 2.267074054869002 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266264, + "c3": 2.773925104022195, + "c4": 2.219140083217754, + "c5": 1.6643550624133132, + "c6": 1.1095700416088725, + "c7": 0.5547850208044409 }, "rgb": [238, 201, 159] }, @@ -70125,23 +70125,23 @@ "year": 1721, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 22.031983451848088, - "c2": 22.92794727672847, - "c3": -9.139819461855222, - "c4": 13.312936178401888, - "c5": 11.075309209078501, - "c6": 19.04143414378849, - "c7": -1.4206129898216027 + "points": { + "c1": -3.3101522581832192, + "c2": -24.95709063372383, + "c3": 27.626063659099984, + "c4": -26.610037970707605, + "c5": -29.377326929614853, + "c6": 15.583512071015932, + "c7": 28.640650632379355 }, - "vertexSeeds": { - "c1": 4.665226072915653, - "c2": 4.5825069060572545, - "c3": 4.74341327286975, - "c4": 4.513379832766816, - "c5": 4.5459880956822, - "c6": 4.650518844551918, - "c7": 4.610219245958036 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -70152,23 +70152,23 @@ "year": 1721, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 18.676769576713816, - "c2": 36.25031466704956, - "c3": 27.418878656672, - "c4": -35.096865517724176, - "c5": 3.7850931833595496, - "c6": 42.220848051247565, - "c7": 31.750569646898434 + "points": { + "c1": 16.311755611562766, + "c2": -41.1895751232728, + "c3": -26.670064729909605, + "c4": 30.977787902165126, + "c5": -44.24165619030295, + "c6": 41.50315737715419, + "c7": 11.741894336719305 }, - "vertexSeeds": { - "c1": 1.2090557549811054, - "c2": 1.2073539881127642, - "c3": 1.3786565103970054, - "c4": 1.2116527892059095, - "c5": 1.1919067350780161, - "c6": 1.1912422545931722, - "c7": 1.1916324326162333 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959776, + "c3": 1.6643550624133148, + "c4": 1.3314840499306517, + "c5": 0.9986130374479888, + "c6": 0.6657420249653259, + "c7": 0.33287101248266293 }, "rgb": [77, 76, 132] }, @@ -70179,23 +70179,23 @@ "year": 1722, "resistanceReported": false, "duration": 68169600, - "curveSeeds": { - "c1": -52.042339115692954, - "c2": -72.66977735132974, - "c3": -79.58500040901886, - "c4": -13.24884983000483, - "c5": -47.858901077182104, - "c6": -36.177325061372244, - "c7": 35.73527231171748 + "points": { + "c1": -25.828134586766204, + "c2": -48.13690243356905, + "c3": 29.87206016176168, + "c4": 50.14510650440414, + "c5": -2.843405116549093, + "c6": 34.158859557597, + "c7": 63.04610260282817 }, - "vertexSeeds": { - "c1": 1.5127158124634668, - "c2": 1.4791764834315293, - "c3": 1.4031288023238404, - "c4": 1.4088499860865573, - "c5": 1.5149746729901095, - "c6": 1.449255900954243, - "c7": 1.5304667438367203 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177517, + "c3": 1.8492834026814617, + "c4": 1.4794267221451678, + "c5": 1.1095700416088778, + "c6": 0.7397133610725839, + "c7": 0.3698566805362899 }, "rgb": [58, 15, 49] }, @@ -70206,23 +70206,23 @@ "year": 1721, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -19.649642167964824, - "c2": 23.538901879617598, - "c3": -13.275096004041636, - "c4": 18.556279044666113, - "c5": -9.547256862072189, - "c6": 35.42712219527937, - "c7": -7.172444198480278 + "points": { + "c1": 12.022140621674914, + "c2": 35.56144481567823, + "c3": -14.802628276684779, + "c4": 11.413654339730442, + "c5": 27.924793071256673, + "c6": 22.321167613756586, + "c7": -21.069597381312352 }, - "vertexSeeds": { - "c1": 6.073103077477293, - "c2": 5.392617990231597, - "c3": 7.4940566708299485, - "c4": 4.833110305734273, - "c5": 6.335460301679018, - "c6": 5.7466221497375125, - "c7": 4.116903932889654 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181693, + "c5": 5.783633841886268, + "c6": 3.8557558945908466, + "c7": 1.9278779472954233 }, "rgb": [86, 146, 138] }, @@ -70233,23 +70233,23 @@ "year": 1721, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -22.168959078984848, - "c2": 13.460940510956373, - "c3": 28.447699357186433, - "c4": 15.652968892556562, - "c5": 5.350480377715126, - "c6": -10.867976295525526, - "c7": -13.036021158372606 + "points": { + "c1": -14.91069313987941, + "c2": -12.392999956309943, + "c3": 22.316274565738947, + "c4": 5.0825146386891795, + "c5": 29.42154831443059, + "c6": -9.993487430369488, + "c7": -7.352176255978073 }, - "vertexSeeds": { - "c1": 3.999224198180399, - "c2": 4.131193627643017, - "c3": 4.256099314558876, - "c4": 4.146416650245856, - "c5": 4.253053602961543, - "c6": 4.072937473226802, - "c7": 3.851649178403779 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889045, + "c3": 5.10864539990754, + "c4": 4.086916319926027, + "c5": 3.0651872399445224, + "c6": 2.0434581599630177, + "c7": 1.0217290799815049 }, "rgb": [86, 146, 138] }, @@ -70260,23 +70260,23 @@ "year": 1721, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -16.360195608314505, - "c2": -18.72262600396182, - "c3": -15.391264767708167, - "c4": 5.6319965346895025, - "c5": 12.263497084574748, - "c6": 1.4912004598438635, - "c7": -3.7305971701713396 + "points": { + "c1": -18.220505915253725, + "c2": 24.5667799964836, + "c3": -3.3542160164899713, + "c4": -23.435498202919185, + "c5": -4.256460976070326, + "c6": -5.724723649829311, + "c7": 11.770803697348622 }, - "vertexSeeds": { - "c1": 6.987157837507465, - "c2": 6.981352226865849, - "c3": 7.956019418372683, - "c4": 7.832505406515695, - "c5": 7.347455643683183, - "c6": 7.291332450817199, - "c7": 7.913612422933704 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571429, + "c3": 9.523809523809524, + "c4": 7.619047619047619, + "c5": 5.714285714285714, + "c6": 3.8095238095238093, + "c7": 1.9047619047619047 }, "rgb": [77, 76, 132] }, @@ -70287,23 +70287,23 @@ "year": 1721, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 1.630661572451281, - "c2": -14.439459101709659, - "c3": 19.330469433598473, - "c4": 5.803955784944662, - "c5": 7.864235107884603, - "c6": 16.297001782745248, - "c7": -4.718720224986637 + "points": { + "c1": -9.363699828858874, + "c2": 10.882389856685535, + "c3": -10.823972690493846, + "c4": -10.100192464325708, + "c5": 26.639461993929842, + "c6": 22.77275335759066, + "c7": -27.223539786804206 }, - "vertexSeeds": { - "c1": 4.794339312246583, - "c2": 4.69047201536711, - "c3": 4.805386569903362, - "c4": 4.6153447296357015, - "c5": 4.6568089534716135, - "c6": 4.784535070878143, - "c7": 4.554561824260196 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055484, + "c3": 5.7790106333795634, + "c4": 4.623208506703656, + "c5": 3.467406380027735, + "c6": 2.311604253351828, + "c7": 1.1558021266759209 }, "rgb": [58, 15, 49] }, @@ -70314,23 +70314,23 @@ "year": 1721, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 8.863849501242015, - "c2": 2.466223021123291, - "c3": -10.755803045735107, - "c4": 18.20148341087893, - "c5": -18.964187491429534, - "c6": 1.6854034922144976, - "c7": 1.0135363879852726 + "points": { + "c1": -9.707740931282345, + "c2": 0.08518453563518236, + "c3": -24.898219528180025, + "c4": -28.73585382801496, + "c5": -13.981460286567199, + "c6": 28.069629323180052, + "c7": -27.8346684426278 }, - "vertexSeeds": { - "c1": 3.844421746831676, - "c2": 4.195090339276243, - "c3": 3.5179196362909537, - "c4": 4.065123659708843, - "c5": 3.593611704673295, - "c6": 3.954054305588142, - "c7": 3.512070245477175 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889043, + "c3": 5.108645399907535, + "c4": 4.0869163199260266, + "c5": 3.0651872399445232, + "c6": 2.043458159963016, + "c7": 1.021729079981508 }, "rgb": [77, 76, 132] }, @@ -70341,23 +70341,23 @@ "year": 1721, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 17.505443768992407, - "c2": -17.041122431594193, - "c3": -14.005615385330874, - "c4": -3.4796044775799793, - "c5": -7.88851081603892, - "c6": -25.208779350266028, - "c7": 3.072038624179669 + "points": { + "c1": 0.06129659522135711, + "c2": -0.2953052535263936, + "c3": -25.837654072743366, + "c4": 7.908764606227294, + "c5": -8.221812169538051, + "c6": -9.13819754399212, + "c7": -4.6227875186187894 }, - "vertexSeeds": { - "c1": 5.809460959030878, - "c2": 6.008858928461051, - "c3": 5.991324859468278, - "c4": 6.012904397338536, - "c5": 6.0115770852563895, - "c6": 5.868495604452023, - "c7": 5.792796656089509 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073508999, + "c3": 7.189089227924185, + "c4": 5.7512713823393335, + "c5": 4.313453536754519, + "c6": 2.8756356911696668, + "c7": 1.4378178455848523 }, "rgb": [77, 76, 132] }, @@ -70368,23 +70368,23 @@ "year": 1721, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 28.084260214133707, - "c2": -12.558040761795041, - "c3": -24.815145936917112, - "c4": 19.264239843335822, - "c5": 32.686728267280955, - "c6": 36.59119062171128, - "c7": 22.505537489769722 + "points": { + "c1": -12.897668714423332, + "c2": 38.68906272057416, + "c3": 5.725799865112002, + "c4": -7.953056954806861, + "c5": -39.160522899845986, + "c6": 30.757162457297014, + "c7": -18.407893509676338 }, - "vertexSeeds": { - "c1": 2.059519483729563, - "c2": 2.0770168782398803, - "c3": 2.012213384017929, - "c4": 2.11376900886881, - "c5": 2.1033519723234906, - "c6": 2.0934402630112716, - "c7": 2.0560598927533427 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.051317614424408, + "c3": 2.5427646786870124, + "c4": 2.034211742949608, + "c5": 1.525658807212204, + "c6": 1.0171058714748085, + "c7": 0.5085529357374042 }, "rgb": [77, 76, 132] }, @@ -70395,23 +70395,23 @@ "year": 1721, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -12.424338475540736, - "c2": 10.57775435481977, - "c3": -5.921748177570347, - "c4": -14.157798866948784, - "c5": 30.55989717425916, - "c6": -26.796040582463256, - "c7": -28.51426137758956 + "points": { + "c1": 24.424764143484296, + "c2": 21.293308619151382, + "c3": 23.86837436334126, + "c4": 23.694036750400343, + "c5": -27.938672178109663, + "c6": 13.480449342686448, + "c7": -2.470994070063398 }, - "vertexSeeds": { - "c1": 4.801156214946465, - "c2": 5.20722501115677, - "c3": 5.516265903477496, - "c4": 4.405728435680933, - "c5": 5.593105208834281, - "c6": 5.235622383334333, - "c7": 5.382154532014754 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787331, + "c4": 5.39990753582987, + "c5": 4.049930651872403, + "c6": 2.699953767914935, + "c7": 1.3499768839574675 }, "rgb": [86, 146, 138] }, @@ -70422,23 +70422,23 @@ "year": 1721, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -7.510152448657536, - "c2": 2.898830559174307, - "c3": -28.56500408590388, - "c4": 18.38709409971367, - "c5": 8.392210226883044, - "c6": -13.944956827225568, - "c7": -10.639282059125524 + "points": { + "c1": -12.735187228930275, + "c2": 26.897024340677767, + "c3": -13.861492342772518, + "c4": 1.9376136382505464, + "c5": -24.921626261119528, + "c6": 37.05603657043873, + "c7": -19.86555966722403 }, - "vertexSeeds": { - "c1": 6.257164427290291, - "c2": 6.267563790908424, - "c3": 6.032515904806616, - "c4": 5.96692031975842, - "c5": 6.1506226730831015, - "c6": 6.19555661424258, - "c7": 6.373256688981094 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675457, + "c3": 7.859454461396207, + "c4": 6.287563569116972, + "c5": 4.715672676837721, + "c6": 3.143781784558486, + "c7": 1.5718908922792514 }, "rgb": [238, 201, 159] }, @@ -70449,23 +70449,23 @@ "year": 1721, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -21.568704054256138, - "c2": -24.904342658274928, - "c3": 2.5947746076771985, - "c4": -29.020873725768737, - "c5": -28.483220001669128, - "c6": -23.76509647092424, - "c7": 10.788732161321075 + "points": { + "c1": -26.73380401370096, + "c2": -26.342534904123276, + "c3": -25.296231520714088, + "c4": -4.0878906816979175, + "c5": 29.90933818940525, + "c6": 9.679912654292398, + "c7": -1.8027493446685057 }, - "vertexSeeds": { - "c1": 4.615796621729441, - "c2": 4.762097133656191, - "c3": 4.615323583069432, - "c4": 4.99389729567352, - "c5": 4.505734080136519, - "c6": 4.374552995358771, - "c7": 5.018837762802304 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497917, + "c3": 6.033287101248267, + "c4": 4.826629680998613, + "c5": 3.6199722607489586, + "c6": 2.413314840499309, + "c7": 1.2066574202496545 }, "rgb": [86, 146, 138] }, @@ -70476,23 +70476,23 @@ "year": 1721, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 42.55020761705584, - "c2": 43.56936447027818, - "c3": -38.7207632128343, - "c4": -7.470218367425083, - "c5": -1.7703090594473352, - "c6": -46.864459801923445, - "c7": 3.247143245934488 + "points": { + "c1": -12.45346176446995, + "c2": 45.579653648520186, + "c3": 48.78966916838581, + "c4": -44.485996702446556, + "c5": -38.21333332136478, + "c6": 20.858466855508887, + "c7": -19.41640991884544 }, - "vertexSeeds": { - "c1": 1.0018056262369728, - "c2": 0.961065109612324, - "c3": 1.0216068049384637, - "c4": 0.9740277778641212, - "c5": 0.9523355990326939, - "c6": 0.9693332776928603, - "c7": 1.0585106086240135 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.5533980582524276, + "c3": 1.2944983818770217, + "c4": 1.0355987055016178, + "c5": 0.7766990291262138, + "c6": 0.5177993527508099, + "c7": 0.2588996763754039 }, "rgb": [86, 146, 138] }, @@ -70503,23 +70503,23 @@ "year": 1721, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 14.554198464976523, - "c2": -1.399301209899484, - "c3": -6.278481258630755, - "c4": -20.170140516646853, - "c5": -15.202226194871592, - "c6": -16.76207430465438, - "c7": 29.98915250683953 + "points": { + "c1": -11.287960011590275, + "c2": -20.641259929035204, + "c3": 4.787558222116516, + "c4": -8.016931722640741, + "c5": -25.32102542206166, + "c6": -28.576765388224462, + "c7": -28.88183014296625 }, - "vertexSeeds": { - "c1": 4.3201543580308215, - "c2": 4.895277808663075, - "c3": 4.533977318470922, - "c4": 4.825939619409538, - "c5": 4.969487088389516, - "c6": 4.829219168012946, - "c7": 4.7948778348765515 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.12898751733703, + "c3": 5.940822931114194, + "c4": 4.752658344891353, + "c5": 3.5644937586685175, + "c6": 2.3763291724456765, + "c7": 1.188164586222841 }, "rgb": [58, 15, 49] }, @@ -70530,23 +70530,23 @@ "year": 1721, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -1.2563486698176831, - "c2": 17.071978922852345, - "c3": 24.45393351630978, - "c4": 26.132734281476623, - "c5": 33.20534852934035, - "c6": 12.092770888876082, - "c7": -13.607269594410468 + "points": { + "c1": 28.12137877507393, + "c2": -37.75043308265835, + "c3": 35.16617197973746, + "c4": 16.00154983083872, + "c5": -19.388988188266318, + "c6": -35.56903056878857, + "c7": -10.398968529588899 }, - "vertexSeeds": { - "c1": 4.7151946743514745, - "c2": 4.6113483445624395, - "c3": 4.7339720075026825, - "c4": 4.531940178051129, - "c5": 4.632922217972144, - "c6": 4.71909013339498, - "c7": 4.586381690618108 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055484, + "c3": 5.7790106333795634, + "c4": 4.623208506703656, + "c5": 3.467406380027735, + "c6": 2.311604253351828, + "c7": 1.1558021266759209 }, "rgb": [86, 146, 138] }, @@ -70557,23 +70557,23 @@ "year": 1721, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 10.596487044408917, - "c2": 22.365137774815686, - "c3": 26.58052976893716, - "c4": -14.004093239538438, - "c5": 28.823043523711178, - "c6": 25.29868296957784, - "c7": -17.49892173328594 + "points": { + "c1": 28.421030680989972, + "c2": -3.5055534285789527, + "c3": -5.289154763170696, + "c4": -13.90419413864376, + "c5": 3.2173693956317564, + "c6": -28.64331596710521, + "c7": -22.57852585513716 }, - "vertexSeeds": { - "c1": 3.7027525390325526, - "c2": 3.5287958355713336, - "c3": 3.4385993346642527, - "c4": 3.4288962966791288, - "c5": 3.1788465024246255, - "c6": 3.0288253169312838, - "c7": 3.7559996935679973 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124829, + "c3": 4.669440591770688, + "c4": 3.7355524734165524, + "c5": 2.801664355062412, + "c6": 1.8677762367082762, + "c7": 0.9338881183541399 }, "rgb": [222, 0, 59] }, @@ -70584,23 +70584,23 @@ "year": 1721, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -30.680523527167203, - "c2": 27.60455740364909, - "c3": 16.320228054397923, - "c4": -11.45529077120695, - "c5": 1.3993209637061952, - "c6": 9.235186172629554, - "c7": 1.8097058228510718 + "points": { + "c1": -9.075974462330219, + "c2": 23.973485975597384, + "c3": 27.292743584633087, + "c4": -6.286597932213976, + "c5": 32.77518150237606, + "c6": 31.043192665085215, + "c7": -1.4693758999646462 }, - "vertexSeeds": { - "c1": 11.4503685662667, - "c2": 8.817022910746367, - "c3": 10.903528998644138, - "c4": 11.11924608466055, - "c5": 9.244874674666216, - "c6": 11.086448426761008, - "c7": 9.277898980182242 + "offsets": { + "c1": 19.514563106796118, + "c2": 16.726768377253812, + "c3": 13.938973647711508, + "c4": 11.151178918169203, + "c5": 8.363384188626899, + "c6": 5.575589459084601, + "c7": 2.7877947295422976 }, "rgb": [86, 146, 138] }, @@ -70611,23 +70611,23 @@ "year": 1721, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -31.22453047339437, - "c2": 27.3391705479214, - "c3": -14.794302005138452, - "c4": 27.67826447425542, - "c5": 28.03527905011778, - "c6": 30.15465664388303, - "c7": 29.30652289481329 + "points": { + "c1": -13.458830812487285, + "c2": 10.121072911867152, + "c3": 16.15178609802245, + "c4": -6.415603256890652, + "c5": 29.483484563263076, + "c6": 21.716659820989335, + "c7": 28.870323227377803 }, - "vertexSeeds": { - "c1": 1.9126000871156303, - "c2": 1.9146425705605707, - "c3": 1.9126105912932019, - "c4": 1.9208579805224715, - "c5": 1.9108335270485606, - "c6": 1.911615840278738, - "c7": 1.920230965954346 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040222044, + "c3": 2.311604253351806, + "c4": 1.8492834026814542, + "c5": 1.3869625520111022, + "c6": 0.9246417013407501, + "c7": 0.46232085067035206 }, "rgb": [86, 146, 138] }, @@ -70638,23 +70638,23 @@ "year": 1721, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -26.013984840166483, - "c2": -22.11415098027983, - "c3": 5.699136419873625, - "c4": 20.127589703914914, - "c5": -31.054958510896945, - "c6": 17.48507115613834, - "c7": -14.47315981443208 + "points": { + "c1": -34.74250832573977, + "c2": 2.087162336693538, + "c3": 28.984701389252805, + "c4": 2.3139223477081003, + "c5": -9.693664468052365, + "c6": -17.637398288755392, + "c7": -27.10458602172772 }, - "vertexSeeds": { - "c1": 3.788001406944268, - "c2": 3.7209382172048526, - "c3": 3.8019974055211945, - "c4": 3.8029078944261943, - "c5": 3.8012513457706802, - "c6": 3.787012362708675, - "c7": 3.8372128581748184 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044386, + "c3": 4.623208506703659, + "c4": 3.6985668053629315, + "c5": 2.7739251040221813, + "c6": 1.8492834026814542, + "c7": 0.9246417013407271 }, "rgb": [58, 15, 49] }, @@ -70665,23 +70665,23 @@ "year": 1721, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 2.822207008139351, - "c2": -24.509057275152166, - "c3": 29.1694270589311, - "c4": -0.24016644804042286, - "c5": -6.142499298918562, - "c6": -18.748182963918136, - "c7": 19.286277144241808 + "points": { + "c1": -19.4288498248836, + "c2": 21.79796649610943, + "c3": 16.25679320381508, + "c4": 4.350739335340364, + "c5": 24.474577243786733, + "c6": 26.69735764618172, + "c7": -27.38752004579458 }, - "vertexSeeds": { - "c1": 3.0841846616821513, - "c2": 3.132296336125788, - "c3": 2.700624562588608, - "c4": 2.530727304381034, - "c5": 2.849473370031507, - "c6": 2.4798604336576697, - "c7": 2.743338422699513 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556171, + "c3": 3.7679149329634756, + "c4": 3.0143319463707794, + "c5": 2.2607489597780837, + "c6": 1.5071659731853917, + "c7": 0.7535829865926921 }, "rgb": [58, 15, 49] }, @@ -70692,23 +70692,23 @@ "year": 1721, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 26.944967814539517, - "c2": 3.588370347011967, - "c3": 29.206933274116828, - "c4": -12.405566887845715, - "c5": -22.279804508221396, - "c6": -15.814635808424669, - "c7": -3.7395154031296585 + "points": { + "c1": -16.91125913226315, + "c2": -27.600620726433682, + "c3": -31.119149797712456, + "c4": 15.537390160296916, + "c5": 23.097564489450328, + "c6": -15.630459160735597, + "c7": -26.74223705813855 }, - "vertexSeeds": { - "c1": 4.598753164050056, - "c2": 4.864882373170326, - "c3": 5.007689994616528, - "c4": 4.598117697264615, - "c5": 5.022234738853781, - "c6": 4.975357308523096, - "c7": 5.264073718600598 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385114, + "c4": 5.17799352750809, + "c5": 3.883495145631068, + "c6": 2.588996763754045, + "c7": 1.2944983818770226 }, "rgb": [77, 76, 132] }, @@ -70719,23 +70719,23 @@ "year": 1721, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -11.683634593075716, - "c2": 9.718384428919702, - "c3": 27.793768346421746, - "c4": -17.013841488531803, - "c5": -8.743842062826694, - "c6": 1.682071772055643, - "c7": 10.096613386862504 + "points": { + "c1": -3.773695849324298, + "c2": -29.71904724512681, + "c3": -27.197886959570205, + "c4": -8.237706325648627, + "c5": -22.522807161473196, + "c6": -16.122379376699794, + "c7": -19.37781786042043 }, - "vertexSeeds": { - "c1": 2.775957382991213, - "c2": 2.64227795161862, - "c3": 2.6893348542926407, - "c4": 2.771832066108522, - "c5": 2.887138497552515, - "c6": 2.8738501590599013, - "c7": 2.8446671071163716 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.467406380027739, + "c4": 2.773925104022191, + "c5": 2.080443828016643, + "c6": 1.3869625520110955, + "c7": 0.6934812760055478 }, "rgb": [86, 146, 138] }, @@ -70746,23 +70746,23 @@ "year": 1721, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 29.043081898805884, - "c2": -2.830763041100166, - "c3": 5.36507441712347, - "c4": -25.470704577724, - "c5": -5.165854403595407, - "c6": -15.753209313020253, - "c7": -22.46734650365959 + "points": { + "c1": -8.974126637993031, + "c2": -4.344365946272518, + "c3": 5.204557401996382, + "c4": -23.94637941377259, + "c5": -24.519886766674528, + "c6": -22.752615448065235, + "c7": 20.008402930501155 }, - "vertexSeeds": { - "c1": 5.64756187229585, - "c2": 5.761143098319499, - "c3": 5.726168415005445, - "c4": 5.711085130295568, - "c5": 5.772191513397782, - "c6": 5.698065920320071, - "c7": 5.7137595323158745 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066588, + "c3": 6.934812760055457, + "c4": 5.547850208044376, + "c5": 4.160887656033294, + "c6": 2.7739251040221626, + "c7": 1.3869625520110813 }, "rgb": [58, 15, 49] }, @@ -70773,23 +70773,23 @@ "year": 1722, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": 30.889341327910785, - "c2": -34.06527637132166, - "c3": -11.754889664287994, - "c4": -29.61665188855105, - "c5": -26.98580021073426, - "c6": 9.270846182941732, - "c7": 48.9917089245514 + "points": { + "c1": -31.015592372331927, + "c2": -36.83831270780799, + "c3": -50.06130082473587, + "c4": -15.832969043399558, + "c5": -22.407882598475435, + "c6": 15.591149759049216, + "c7": 39.956358648822984 }, - "vertexSeeds": { - "c1": 4.014446342219423, - "c2": 3.8274475621766393, - "c3": 4.339005822460874, - "c4": 3.8554330218957693, - "c5": 3.720242233980518, - "c6": 4.277814752634865, - "c7": 3.9947819519491183 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653258, + "c3": 5.54785020804438, + "c4": 4.438280166435508, + "c5": 3.3287101248266313, + "c6": 2.219140083217754, + "c7": 1.109570041608877 }, "rgb": [77, 76, 132] }, @@ -70800,23 +70800,23 @@ "year": 1721, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 9.010487737671468, - "c2": 20.00310555228576, - "c3": 12.25720279203707, - "c4": -5.808675511324946, - "c5": 5.441604689133555, - "c6": -8.710066077829875, - "c7": -28.958996121717597 + "points": { + "c1": 24.973319417967943, + "c2": -1.0517805920765895, + "c3": 25.789739515095633, + "c4": 7.271790031161366, + "c5": -22.95935276976385, + "c6": -6.089657392956958, + "c7": -32.995412746614214 }, - "vertexSeeds": { - "c1": 3.8597484950149274, - "c2": 3.853012606299491, - "c3": 3.817146257440991, - "c4": 3.827273301580773, - "c5": 3.838282686182847, - "c6": 3.81433829644612, - "c7": 3.796626362550645 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044363, + "c3": 4.623208506703659, + "c4": 3.6985668053629084, + "c5": 2.7739251040222044, + "c6": 1.8492834026814542, + "c7": 0.9246417013407501 }, "rgb": [86, 146, 138] }, @@ -70827,23 +70827,23 @@ "year": 1721, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -0.48155903019663526, - "c2": -13.552791623803085, - "c3": 4.500736878434694, - "c4": -39.59642235261212, - "c5": -14.874538744700832, - "c6": -21.385630776253205, - "c7": 0.6351289307692767 + "points": { + "c1": -31.721860359938262, + "c2": 40.80625385129911, + "c3": 30.920835653003287, + "c4": -42.593787992058665, + "c5": -5.9912648757449105, + "c6": 14.023610324197783, + "c7": 35.00724616928425 }, - "vertexSeeds": { - "c1": 9.084610697370715, - "c2": 9.645405333916244, - "c3": 8.25740750322937, - "c4": 8.04256722997082, - "c5": 9.133189583874838, - "c6": 9.002308327721527, - "c7": 8.418567433340586 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110953, + "c3": 11.558021266759134, + "c4": 9.246417013407305, + "c5": 6.934812760055476, + "c6": 4.623208506703656, + "c7": 2.311604253351828 }, "rgb": [86, 146, 138] }, @@ -70854,23 +70854,23 @@ "year": 1722, "resistanceReported": false, "duration": 60393600, - "curveSeeds": { - "c1": 5.146300658939722, - "c2": 32.83359324062762, - "c3": -49.61546823279296, - "c4": -75.37060275691698, - "c5": 37.187544899651286, - "c6": 43.73125762459722, - "c7": -21.298001420440123 + "points": { + "c1": 37.25123565736969, + "c2": 20.60943133421668, + "c3": 57.61438551657217, + "c4": 33.33470115986515, + "c5": -72.76877430854294, + "c6": -22.75606996378439, + "c7": 22.38005273253833 }, - "vertexSeeds": { - "c1": 8.815416558751165, - "c2": 8.970673604626949, - "c3": 9.040783568736039, - "c4": 8.197856195081648, - "c5": 8.444538195302979, - "c6": 8.368161180517049, - "c7": 8.054043121460758 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.98196948682386, + "c3": 10.81830790568654, + "c4": 8.654646324549235, + "c5": 6.49098474341193, + "c6": 4.327323162274625, + "c7": 2.1636615811373052 }, "rgb": [222, 0, 59] }, @@ -70881,23 +70881,23 @@ "year": 1722, "resistanceReported": false, "duration": 48643200, - "curveSeeds": { - "c1": 50.26069787915662, - "c2": 54.148796044463495, - "c3": -27.12070071954534, - "c4": -59.544936869052194, - "c5": -31.45217364334031, - "c6": 4.5465848046078605, - "c7": 4.3734619646673565 + "points": { + "c1": -58.73433140441049, + "c2": 7.271557915411407, + "c3": -48.81714932326891, + "c4": 10.29513566116222, + "c5": 54.12348692252047, + "c6": 8.626065099611964, + "c7": -52.84551869985018 }, - "vertexSeeds": { - "c1": 1.454871431325716, - "c2": 1.5441692932601185, - "c3": 1.6948247371603111, - "c4": 1.718397841291881, - "c5": 1.517229289323199, - "c6": 1.6904488171686558, - "c7": 1.5568870163434365 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.6629680998613043, + "c3": 2.2191400832177544, + "c4": 1.775312066574202, + "c5": 1.3314840499306522, + "c6": 0.8876560332871021, + "c7": 0.4438280166435501 }, "rgb": [222, 0, 59] }, @@ -70908,23 +70908,23 @@ "year": 1721, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -25.351468299237393, - "c2": 16.032185076145556, - "c3": 16.709500618687873, - "c4": -13.658080240704795, - "c5": 3.7533763302574137, - "c6": -0.63602533634403, - "c7": -18.37564035352714 + "points": { + "c1": -30.151887566302864, + "c2": -18.194049868981367, + "c3": 26.708964420083404, + "c4": -21.28342947606124, + "c5": 22.260593397305996, + "c6": -19.40669960026863, + "c7": -20.396719142955433 }, - "vertexSeeds": { - "c1": 1.1539140628297282, - "c2": 1.2937338749302718, - "c3": 1.1474029994464414, - "c4": 1.2290681662373373, - "c5": 1.1904306102592634, - "c6": 1.2969672897866535, - "c7": 1.2937759289436257 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753117, + "c3": 1.5950069348127591, + "c4": 1.27600554785021, + "c5": 0.9570041608876558, + "c6": 0.638002773925105, + "c7": 0.3190013869625525 }, "rgb": [77, 76, 132] }, @@ -70935,23 +70935,23 @@ "year": 1721, "resistanceReported": false, "duration": 3283200, - "curveSeeds": { - "c1": -6.081617692336178, - "c2": -5.55102189972807, - "c3": -1.8127777435479278, - "c4": -1.367269775203786, - "c5": 11.899916584880685, - "c6": -10.423504625323899, - "c7": 10.215753947870265 + "points": { + "c1": -8.989498776705222, + "c2": -7.606602111401039, + "c3": 9.205659182136714, + "c4": 9.570795336256698, + "c5": -3.201144521471196, + "c6": -5.78573176860575, + "c7": 11.535110890472126 }, - "vertexSeeds": { - "c1": 5.414422361851532, - "c2": 5.193458733580943, - "c3": 5.403830013612241, - "c4": 5.196056230782729, - "c5": 5.264517260990328, - "c6": 4.632857183426844, - "c7": 5.1397144016778045 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463242, + "c3": 6.588072122052706, + "c4": 5.270457697642161, + "c5": 3.952843273231626, + "c6": 2.6352288488210807, + "c7": 1.3176144244105403 }, "rgb": [58, 15, 49] }, @@ -70962,23 +70962,23 @@ "year": 1721, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 16.392072773203992, - "c2": 6.513810795237291, - "c3": 24.943843571457144, - "c4": -9.467016347911002, - "c5": -12.461095140154075, - "c6": -14.609987107993128, - "c7": -12.698690261475257 + "points": { + "c1": -12.431302709039997, + "c2": 4.428309551976831, + "c3": -12.186943151374127, + "c4": 32.17794939903845, + "c5": 0.9642945050785201, + "c6": 21.09733222692467, + "c7": -2.4707632453545116 }, - "vertexSeeds": { - "c1": 4.114215707188673, - "c2": 3.8144118953123485, - "c3": 3.795304924861284, - "c4": 3.5715817061132045, - "c5": 3.86734016171978, - "c6": 3.4786876349008486, - "c7": 3.455794627848897 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.0471567267683755, + "c3": 5.039297272306977, + "c4": 4.0314378178455845, + "c5": 3.0235783633841877, + "c6": 2.01571890892279, + "c7": 1.0078594544613975 }, "rgb": [58, 15, 49] }, @@ -70989,23 +70989,23 @@ "year": 1721, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -25.213538876936596, - "c2": 17.774679396595474, - "c3": -33.94242186734307, - "c4": -2.8462078204581793, - "c5": -10.220732488426925, - "c6": 0.6949099064699169, - "c7": 7.246799877173025 + "points": { + "c1": 15.217392017838613, + "c2": 18.637711588735883, + "c3": 14.713071160162862, + "c4": 26.445088240120334, + "c5": 31.521631396747715, + "c6": -19.29987200928018, + "c7": 24.25258263137271 }, - "vertexSeeds": { - "c1": 8.234364144833028, - "c2": 7.475627836212722, - "c3": 7.527485017214542, - "c4": 7.277228203485702, - "c5": 7.939664013269165, - "c6": 8.258972691711534, - "c7": 7.229076920073823 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375867, + "c3": 9.986130374479886, + "c4": 7.988904299583909, + "c5": 5.991678224687938, + "c6": 3.9944521497919587, + "c7": 1.9972260748959794 }, "rgb": [77, 76, 132] }, @@ -71016,23 +71016,23 @@ "year": 1721, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 12.765322451563659, - "c2": -19.632372769143217, - "c3": -28.201460801215735, - "c4": 19.339265157656985, - "c5": 21.822857754300355, - "c6": 18.364746591483314, - "c7": 4.245592737719182 + "points": { + "c1": -11.932761598370472, + "c2": 17.165479776375903, + "c3": -3.6728948330952456, + "c4": 16.72070025235073, + "c5": -28.639028872863992, + "c6": -11.975094526593761, + "c7": 29.99295667167364 }, - "vertexSeeds": { - "c1": 5.754922952801874, - "c2": 6.387643756282284, - "c3": 6.414380335534646, - "c4": 6.483536242437021, - "c5": 5.630527068706927, - "c6": 5.517215036152335, - "c7": 5.896942256955666 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715668, + "c3": 7.8825705039297285, + "c4": 6.306056403143779, + "c5": 4.72954230235784, + "c6": 3.1530282015718893, + "c7": 1.5765141007859493 }, "rgb": [238, 201, 159] }, @@ -71043,23 +71043,23 @@ "year": 1721, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 10.600607005372368, - "c2": -25.110863611486685, - "c3": -3.188153331514364, - "c4": 21.04624846687571, - "c5": 7.123922839868307, - "c6": -33.98531605874601, - "c7": 14.929114626122931 + "points": { + "c1": 26.909837999375384, + "c2": -4.300478252205757, + "c3": 24.717627719502474, + "c4": 19.288123071515997, + "c5": -16.14765099125484, + "c6": -21.654954081484114, + "c7": 16.168525233118714 }, - "vertexSeeds": { - "c1": 2.3729414010400434, - "c2": 2.269279752442659, - "c3": 2.2435097042314234, - "c4": 2.3052269848953872, - "c5": 2.1207405710999296, - "c6": 2.399207133351199, - "c7": 2.1369636141633097 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027738, + "c3": 2.8895053166897817, + "c4": 2.311604253351828, + "c5": 1.733703190013871, + "c6": 1.155802126675914, + "c7": 0.577901063337957 }, "rgb": [222, 0, 59] }, @@ -71070,23 +71070,23 @@ "year": 1722, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -7.375093210654761, - "c2": 2.2229101749011235, - "c3": 32.4715889960116, - "c4": -29.167551146640506, - "c5": -43.65025568085121, - "c6": 22.659117598502995, - "c7": 2.554163568353779 + "points": { + "c1": -6.1080432349571865, + "c2": -28.791555371722815, + "c3": -28.49350791743444, + "c4": -14.590472672745612, + "c5": -3.991717816911759, + "c6": 43.89084144030658, + "c7": -31.930821109864095 }, - "vertexSeeds": { - "c1": 3.7454045637317086, - "c2": 3.8406881684499674, - "c3": 3.826732804508666, - "c4": 3.8518511969534437, - "c5": 3.7195693143835036, - "c6": 3.7315911246354427, - "c7": 3.6181884324473708 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703656, + "c4": 3.698566805362927, + "c5": 2.773925104022186, + "c6": 1.8492834026814575, + "c7": 0.9246417013407288 }, "rgb": [238, 201, 159] }, @@ -71097,23 +71097,23 @@ "year": 1721, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 0.8682481308448295, - "c2": 22.385027923410057, - "c3": 11.96763544635192, - "c4": 17.288568939998385, - "c5": 20.10472164069789, - "c6": 9.686706784616412, - "c7": 13.571999393425202 + "points": { + "c1": 19.79757658928758, + "c2": -0.7248043057734748, + "c3": 10.59679189232142, + "c4": 1.106926996246962, + "c5": 8.90171240891565, + "c6": -8.377855134379285, + "c7": -21.493505006735305 }, - "vertexSeeds": { - "c1": 0.16429514231246067, - "c2": 0.1623734647063641, - "c3": 0.17744796044808203, - "c4": 0.16983864632696985, - "c5": 0.15998496521662314, - "c6": 0.17049274045437218, - "c7": 0.1897121276642481 + "offsets": { + "c1": 0.3559870550161813, + "c2": 0.305131761442441, + "c3": 0.25427646786870106, + "c4": 0.20342117429496076, + "c5": 0.1525658807212205, + "c6": 0.10171058714748021, + "c7": 0.050855293573740266 }, "rgb": [58, 15, 49] }, @@ -71124,23 +71124,23 @@ "year": 1722, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -22.528456114859733, - "c2": 31.44512569080269, - "c3": 15.361765357434173, - "c4": -1.670209473902915, - "c5": -25.45164473428751, - "c6": 32.268025215948406, - "c7": 12.032693835808445 + "points": { + "c1": 43.014229163932946, + "c2": -4.53562369047166, + "c3": 36.80320492945474, + "c4": -1.6787048889932308, + "c5": 5.138749695491732, + "c6": 40.673952491147396, + "c7": -25.175594330666378 }, - "vertexSeeds": { - "c1": 2.193717039027416, - "c2": 2.1285329123155408, - "c3": 2.3102381286189484, - "c4": 2.15626843097886, - "c5": 2.145150969117617, - "c6": 2.2721731617618324, - "c7": 2.088724737500113 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266304, + "c3": 2.7739251040221893, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.109570041608874, + "c7": 0.554785020804437 }, "rgb": [86, 146, 138] }, @@ -71151,23 +71151,23 @@ "year": 1721, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 12.392763447208807, - "c2": 19.02085967454653, - "c3": -14.56237196945654, - "c4": 14.852659839369203, - "c5": -17.55924853100929, - "c6": -3.2257535117762437, - "c7": -23.086541290530732 + "points": { + "c1": 19.62858681152862, + "c2": 6.723264305673233, + "c3": 9.974835174755988, + "c4": 6.795645310912221, + "c5": 13.395304689080582, + "c6": -15.601612439258906, + "c7": 5.646253310190701 }, - "vertexSeeds": { - "c1": 3.7646553110185583, - "c2": 3.757643271795267, - "c3": 3.993213034198353, - "c4": 3.8789892086972193, - "c5": 4.026125637978974, - "c6": 3.8358244577807, - "c7": 3.9320462602621733 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406384, + "c3": 4.831252889505311, + "c4": 3.865002311604252, + "c5": 2.898751733703192, + "c6": 1.93250115580212, + "c7": 0.96625057790106 }, "rgb": [238, 201, 159] }, @@ -71178,23 +71178,23 @@ "year": 1721, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -10.552487119915206, - "c2": 9.393370617907465, - "c3": 34.635849202544776, - "c4": -33.18007786211083, - "c5": -4.8812793916436235, - "c6": 7.091344201788949, - "c7": 0.5560645828293076 + "points": { + "c1": 14.146861422186966, + "c2": -22.056019323054954, + "c3": -31.945556520522075, + "c4": -30.02038292560249, + "c5": 28.863185112248487, + "c6": 0.030326365739234973, + "c7": 0.44285679045049875 }, - "vertexSeeds": { - "c1": 4.344194817914461, - "c2": 4.3807400410901085, - "c3": 4.139997967295191, - "c4": 3.927442012693485, - "c5": 3.6362233332992444, - "c6": 4.042069495040842, - "c7": 4.310081563939339 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291263, + "c3": 5.33980582524272, + "c4": 4.271844660194172, + "c5": 3.203883495145629, + "c6": 2.135922330097086, + "c7": 1.067961165048543 }, "rgb": [238, 201, 159] }, @@ -71205,23 +71205,23 @@ "year": 1721, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 11.373479903071235, - "c2": -8.804922718136211, - "c3": -31.793651250264674, - "c4": -8.157429367125253, - "c5": 6.118318638130525, - "c6": -27.094477706046803, - "c7": -14.844883967018305 + "points": { + "c1": 11.694340445916843, + "c2": -10.303252556365813, + "c3": -13.813124851636609, + "c4": 20.49317231281023, + "c5": 16.68254929686224, + "c6": 26.348730282891147, + "c7": 4.399016024838716 }, - "vertexSeeds": { - "c1": 5.364191548558992, - "c2": 5.37731755724107, - "c3": 5.881516853739602, - "c4": 5.431169122877506, - "c5": 5.50181257833423, - "c6": 5.389015055499864, - "c7": 6.099202100464824 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830785, + "c3": 7.374017568192326, + "c4": 5.899214054553856, + "c5": 4.424410540915399, + "c6": 2.949607027276928, + "c7": 1.4748035136384574 }, "rgb": [58, 15, 49] }, @@ -71232,23 +71232,23 @@ "year": 1722, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 9.221584077049307, - "c2": 17.231206970893844, - "c3": -37.74996893136395, - "c4": -14.04461789101589, - "c5": -38.475266681197915, - "c6": -40.63443673555602, - "c7": -43.84620666223426 + "points": { + "c1": -36.26107091741929, + "c2": -13.606207843102723, + "c3": 34.57203161020153, + "c4": -31.380072137091194, + "c5": -25.989307310450794, + "c6": -46.549168392605615, + "c7": 49.608233756390895 }, - "vertexSeeds": { - "c1": 11.249460662501875, - "c2": 11.58579180240159, - "c3": 10.959822796333064, - "c4": 10.982226922853439, - "c5": 11.44626379809664, - "c6": 11.825558371129842, - "c7": 11.22377166226008 + "offsets": { + "c1": 19.902912621359224, + "c2": 17.059639389736464, + "c3": 14.21636615811375, + "c4": 11.373092926490992, + "c5": 8.529819694868232, + "c6": 5.686546463245475, + "c7": 2.8432732316227582 }, "rgb": [86, 146, 138] }, @@ -71259,23 +71259,23 @@ "year": 1721, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 33.23705424766413, - "c2": -35.17316808128678, - "c3": 32.37722361199441, - "c4": 27.695040061458442, - "c5": -12.6609729963163, - "c6": 5.118822134672143, - "c7": -0.3636942222052255 + "points": { + "c1": -30.695170093713905, + "c2": -21.51554698117483, + "c3": 28.082226893051825, + "c4": -18.781404770235156, + "c5": 23.00711014495365, + "c6": 15.095065342680684, + "c7": 32.94206922069617 }, - "vertexSeeds": { - "c1": 3.9597095460569913, - "c2": 3.818334227701417, - "c3": 3.6340171261468406, - "c4": 3.75182213333697, - "c5": 3.790479155423165, - "c6": 3.8815565680160025, - "c7": 3.967949249054228 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366158, + "c3": 4.808136846971796, + "c4": 3.846509477577435, + "c5": 2.8848821081830742, + "c6": 1.9232547387887224, + "c7": 0.9616273693943516 }, "rgb": [222, 0, 59] }, @@ -71286,23 +71286,23 @@ "year": 1722, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 6.924634837396738, - "c2": -9.150435678470558, - "c3": -27.121322454661495, - "c4": 18.16903141053414, - "c5": 8.084087494979684, - "c6": 18.182380935870924, - "c7": -3.3932235857025077 + "points": { + "c1": 7.025473004375385, + "c2": -16.983130227665967, + "c3": 43.23452153990683, + "c4": 4.059438525067932, + "c5": -13.724710526742026, + "c6": -10.82816179963148, + "c7": 13.641145532297209 }, - "vertexSeeds": { - "c1": 8.329780079111645, - "c2": 7.783664863191108, - "c3": 8.291562769892762, - "c4": 8.082469708243607, - "c5": 7.98449569038866, - "c6": 8.293906740420088, - "c7": 7.756608801387918 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.011095700416085, + "c3": 10.009246417013399, + "c4": 8.007397133610716, + "c5": 6.005547850208055, + "c6": 4.00369856680537, + "c7": 2.001849283402685 }, "rgb": [77, 76, 132] }, @@ -71313,23 +71313,23 @@ "year": 1721, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 13.082401621210657, - "c2": -21.218000399467456, - "c3": 29.71100321101865, - "c4": 13.135257748640342, - "c5": -10.310932915937762, - "c6": 12.875553938613173, - "c7": -15.263026664438428 + "points": { + "c1": -4.12002767872303, + "c2": 21.57239928537296, + "c3": 24.5376686725417, + "c4": 4.840417531288978, + "c5": 26.46680611238348, + "c6": 17.07598293211334, + "c7": 33.75481602032464 }, - "vertexSeeds": { - "c1": 3.2810966105971953, - "c2": 3.2660472853397637, - "c3": 3.1747397561504576, - "c4": 3.0643644876284064, - "c5": 3.120455992523893, - "c6": 3.2823661901191996, - "c7": 3.1657431045314133 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.7156726768377215, + "c3": 3.92972723069811, + "c4": 3.143781784558485, + "c5": 2.3578363384188608, + "c6": 1.5718908922792494, + "c7": 0.7859454461396247 }, "rgb": [238, 201, 159] }, @@ -71340,23 +71340,23 @@ "year": 1721, "resistanceReported": true, "duration": 22204800, - "curveSeeds": { - "c1": 18.037185026155925, - "c2": -4.354140452507963, - "c3": -8.418436989637978, - "c4": -29.53563336487912, - "c5": 2.0854159077944345, - "c6": 2.3739299627596324, - "c7": 32.10590708738934 + "points": { + "c1": 35.29773365052776, + "c2": 30.562738088379888, + "c3": -31.071082127186717, + "c4": -15.480983927346646, + "c5": 0.029564466734555594, + "c6": -35.52337084449666, + "c7": 1.8264917434993109 }, - "vertexSeeds": { - "c1": 3.6794384060344316, - "c2": 3.8084860360693935, - "c3": 4.156332141921589, - "c4": 3.677870456257409, - "c5": 4.033040121362362, - "c6": 3.840508764580058, - "c7": 3.936192527503751 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374015, + "c4": 4.068423485899212, + "c5": 3.0513176144244065, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [77, 76, 132] }, @@ -71367,23 +71367,23 @@ "year": 1721, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -4.3536977086558935, - "c2": 23.679688668820123, - "c3": -14.498884447597037, - "c4": -26.90971007469709, - "c5": -9.093520040896149, - "c6": 3.2677897809893466, - "c7": -15.488785305931627 + "points": { + "c1": 4.466429956520816, + "c2": 20.913604606849812, + "c3": 11.878574452074691, + "c4": -9.612207511186732, + "c5": 11.993442357208057, + "c6": -6.752796863683859, + "c7": -16.764808046688024 }, - "vertexSeeds": { - "c1": 2.9522803556724195, - "c2": 2.991705553752084, - "c3": 2.864405829491997, - "c4": 3.01674151160827, - "c5": 3.054772148475775, - "c6": 2.998373672391919, - "c7": 3.0872370412905634 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475727, + "c3": 3.721682847896437, + "c4": 2.977346278317159, + "c5": 2.233009708737869, + "c6": 1.4886731391585795, + "c7": 0.7443365695792897 }, "rgb": [86, 146, 138] }, @@ -71394,23 +71394,23 @@ "year": 1721, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -20.044150468240854, - "c2": -23.455114725112722, - "c3": -19.126189973379983, - "c4": -21.04590450800462, - "c5": -21.214294046120937, - "c6": 6.194526886348033, - "c7": 16.36728472569973 + "points": { + "c1": -19.528894930292473, + "c2": -30.39471237474303, + "c3": -24.783544008969827, + "c4": 19.119977867729162, + "c5": 16.08435921977597, + "c6": -19.119177683832113, + "c7": -2.5234668301716106 }, - "vertexSeeds": { - "c1": 6.684142861850101, - "c2": 6.680378703415061, - "c3": 6.737422007525315, - "c4": 6.685969641275078, - "c5": 6.77073253640068, - "c6": 6.657172986445721, - "c7": 6.77439143923799 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077635, + "c3": 8.090614886731403, + "c4": 6.472491909385091, + "c5": 4.8543689320388586, + "c6": 3.2362459546925453, + "c7": 1.6181229773462324 }, "rgb": [86, 146, 138] }, @@ -71421,23 +71421,23 @@ "year": 1721, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -5.173077546813264, - "c2": 18.691364279292777, - "c3": -7.482977806639919, - "c4": -19.31646620292059, - "c5": 4.991291895564501, - "c6": 11.76011006676962, - "c7": 6.393344008828414 + "points": { + "c1": 7.475867079034892, + "c2": 22.020752771033507, + "c3": 26.38706595588318, + "c4": 15.394552587111882, + "c5": 14.322142697579679, + "c6": 26.409819480284796, + "c7": 3.2804972953317275 }, - "vertexSeeds": { - "c1": 2.4177098098801824, - "c2": 2.1627752322765503, - "c3": 2.2518596426430646, - "c4": 2.1569968691985917, - "c5": 2.6244462864425473, - "c6": 2.5626967322253433, - "c7": 2.130652592547796 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104014, + "c3": 3.166897827092001, + "c4": 2.5335182616736014, + "c5": 1.9001386962552016, + "c6": 1.2667591308368018, + "c7": 0.6333795654183999 }, "rgb": [86, 146, 138] }, @@ -71448,23 +71448,23 @@ "year": 1721, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -3.4744439095576745, - "c2": 29.898006037716932, - "c3": 23.707649327134988, - "c4": 32.401200530790476, - "c5": 17.935548114233683, - "c6": -25.693081720745308, - "c7": -23.507842719801786 + "points": { + "c1": 13.908042856580245, + "c2": 21.19546822356942, + "c3": -18.65860380452731, + "c4": -27.076081224552393, + "c5": -34.398159959784344, + "c6": -16.842054981228557, + "c7": -24.273612275591162 }, - "vertexSeeds": { - "c1": 5.184485770442167, - "c2": 5.532997241282634, - "c3": 5.496270616809939, - "c4": 5.2364675606147495, - "c5": 6.036098149715524, - "c6": 5.380576488740379, - "c7": 5.030324605448651 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112345, + "c3": 7.535829865926957, + "c4": 6.028663892741561, + "c5": 4.521497919556173, + "c6": 3.0143319463707847, + "c7": 1.5071659731853884 }, "rgb": [238, 201, 159] }, @@ -71475,23 +71475,23 @@ "year": 1722, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -22.469570426004942, - "c2": -10.422347501268433, - "c3": 17.92609008885654, - "c4": -25.670478855714432, - "c5": 38.03919381995146, - "c6": -34.3322848148868, - "c7": -32.53458470116793 + "points": { + "c1": 43.105211565894955, + "c2": -27.591103287049858, + "c3": -29.188566318428773, + "c4": -8.24320578540204, + "c5": -16.0815706969451, + "c6": 29.647739168198235, + "c7": 44.799139516052186 }, - "vertexSeeds": { - "c1": 2.2665733322549566, - "c2": 2.2283169023923977, - "c3": 2.304350692096267, - "c4": 2.414426257755776, - "c5": 2.2194378282421505, - "c6": 2.376408195575346, - "c7": 2.386672957016411 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886284, + "c3": 2.9819694868238553, + "c4": 2.3855755894590858, + "c5": 1.7891816920943124, + "c6": 1.1927877947295429, + "c7": 0.5963938973647694 }, "rgb": [238, 201, 159] }, @@ -71502,23 +71502,23 @@ "year": 1721, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 31.445772125874832, - "c2": -30.390761209704035, - "c3": 22.568170220832087, - "c4": 26.307421122587414, - "c5": -19.879463499347278, - "c6": -5.557806999797624, - "c7": 16.40571286033596 + "points": { + "c1": -20.484796262560998, + "c2": -4.636188870572433, + "c3": 23.809460693854525, + "c4": 2.2999321330611835, + "c5": -3.0456910405594897, + "c6": -5.421074566900241, + "c7": -3.433493393762589 }, - "vertexSeeds": { - "c1": 4.022020725388601, - "c2": 4.022020725388601, - "c3": 4.022020725388601, - "c4": 4.022020725388601, - "c5": 4.022020725388601, - "c6": 4.022020725388601, - "c7": 4.022020725388601 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -71529,23 +71529,23 @@ "year": 1722, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -23.90047237944889, - "c2": 7.947479558471883, - "c3": -35.83205718896329, - "c4": 24.119030435245968, - "c5": -28.208632559097367, - "c6": -23.17354457647295, - "c7": -22.84206806272191 + "points": { + "c1": -5.468801082820207, + "c2": -26.571538705948576, + "c3": 36.544955935679575, + "c4": -32.31314896100096, + "c5": -31.658185336899933, + "c6": -44.034469755504865, + "c7": 5.3178888729271065 }, - "vertexSeeds": { - "c1": 3.822290922504457, - "c2": 3.899792810901336, - "c3": 3.8890486288189363, - "c4": 3.84289326062181, - "c5": 3.4941809640954147, - "c6": 3.6892069121790554, - "c7": 4.036342330878769 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.85298196948682, + "c3": 4.877484974572353, + "c4": 3.9019879796578802, + "c5": 2.9264909847434133, + "c6": 1.9509939898289401, + "c7": 0.9754969949144668 }, "rgb": [222, 0, 59] }, @@ -71556,23 +71556,23 @@ "year": 1721, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -8.811216764998228, - "c2": 5.407004548566913, - "c3": 23.316630592175773, - "c4": -3.8702367528594586, - "c5": -14.749842539220365, - "c6": -16.8762007124449, - "c7": -28.355827747002976 + "points": { + "c1": -22.366630485974213, + "c2": -31.721070291654346, + "c3": 4.923138325741448, + "c4": -1.1266652422876327, + "c5": -17.270274329582886, + "c6": -1.4705310082692264, + "c7": -26.046784943374455 }, - "vertexSeeds": { - "c1": 5.444056801247793, - "c2": 5.62577092272817, - "c3": 5.765215455782671, - "c4": 5.732523451604065, - "c5": 5.773602722980966, - "c6": 5.506614108536051, - "c7": 5.795786998799787 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055469, + "c4": 5.547850208044399, + "c5": 4.1608876560332995, + "c6": 2.7739251040221995, + "c7": 1.3869625520110997 }, "rgb": [238, 201, 159] }, @@ -71583,23 +71583,23 @@ "year": 1722, "resistanceReported": false, "duration": 47001600, - "curveSeeds": { - "c1": 50.40759611718426, - "c2": 54.851002180472626, - "c3": 5.7960614127657735, - "c4": -20.128480154971562, - "c5": -59.8251556696894, - "c6": -23.272291137463235, - "c7": 0.46908608771960303 + "points": { + "c1": 40.21323524110765, + "c2": 24.700273247933914, + "c3": 19.512936138823072, + "c4": 33.37292050953352, + "c5": 15.428925707083557, + "c6": -19.87539024877301, + "c7": -10.194051323863363 }, - "vertexSeeds": { - "c1": 12.166467873626972, - "c2": 12.16284302152062, - "c3": 11.02684158523656, - "c4": 10.878090990513142, - "c5": 12.178102672166798, - "c6": 12.616745277205448, - "c7": 11.835038545426713 + "offsets": { + "c1": 21.3915857605178, + "c2": 18.33564493758669, + "c3": 15.279704114655562, + "c4": 12.223763291724454, + "c5": 9.167822468793345, + "c6": 6.111881645862239, + "c7": 3.0559408229311074 }, "rgb": [238, 201, 159] }, @@ -71610,23 +71610,23 @@ "year": 1722, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -9.249325595201793, - "c2": 11.8109748768509, - "c3": -1.9065438004851742, - "c4": -10.413975350775583, - "c5": -32.69122885726801, - "c6": 3.7171590057756276, - "c7": 15.04265032988345 + "points": { + "c1": -20.062595533415124, + "c2": -25.81559026857863, + "c3": 3.7303165727894694, + "c4": 28.729285447558894, + "c5": 7.531019451547188, + "c6": 17.753361780351653, + "c7": -19.523850291821272 }, - "vertexSeeds": { - "c1": 4.176312128027956, - "c2": 4.235067121711238, - "c3": 4.280648427616087, - "c4": 4.613666971987597, - "c5": 4.573926873582262, - "c6": 4.159045089546398, - "c7": 4.752822280574577 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055479, + "c3": 5.779010633379563, + "c4": 4.623208506703651, + "c5": 3.4674063800277395, + "c6": 2.3116042533518284, + "c7": 1.155802126675911 }, "rgb": [238, 201, 159] }, @@ -71637,23 +71637,23 @@ "year": 1722, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 10.53916101344749, - "c2": 9.842674454564872, - "c3": 15.353859485590654, - "c4": -31.466940116934158, - "c5": -17.446561283998424, - "c6": 6.485186398031466, - "c7": 5.056218043989354 + "points": { + "c1": 33.37517220665833, + "c2": -12.21117542579433, + "c3": 7.660375247969533, + "c4": 25.164337926585468, + "c5": 15.748845988256797, + "c6": 5.437096601086331, + "c7": -0.04079514489020397 }, - "vertexSeeds": { - "c1": 2.606701566763652, - "c2": 2.3449441298913754, - "c3": 2.644731219947065, - "c4": 2.5092066647917806, - "c5": 2.2352741689944784, - "c6": 2.6694313660165787, - "c7": 2.703051556548133 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115105, + "c3": 3.2824780397595914, + "c4": 2.6259824318076763, + "c5": 1.9694868238557566, + "c6": 1.312991215903837, + "c7": 0.6564956079519173 }, "rgb": [58, 15, 49] }, @@ -71664,23 +71664,23 @@ "year": 1722, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -28.05685307441547, - "c2": -24.379288768106207, - "c3": -6.640389704835293, - "c4": -10.141315183881439, - "c5": -9.881514095894964, - "c6": -26.959487845623812, - "c7": 5.4711184925958705 + "points": { + "c1": 14.903246463972366, + "c2": -4.422465907898694, + "c3": 11.45609749377585, + "c4": 3.9993728082805546, + "c5": -26.39761201352424, + "c6": 2.612773524663517, + "c7": 7.744808516748208 }, - "vertexSeeds": { - "c1": 3.7113012261329286, - "c2": 4.131090156532244, - "c3": 3.706302929459823, - "c4": 4.120813490768644, - "c5": 3.654466749906977, - "c6": 4.163129246415677, - "c7": 3.676378672452803 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [77, 76, 132] }, @@ -71691,23 +71691,23 @@ "year": 1722, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -14.89507554599647, - "c2": 24.982883259033528, - "c3": 12.498651550211243, - "c4": 22.890925024910757, - "c5": -1.392315685498545, - "c6": 11.077593375264165, - "c7": -11.51300592282071 + "points": { + "c1": 15.548322089141053, + "c2": -36.89348700823731, + "c3": 38.7983624794429, + "c4": -15.085139191998191, + "c5": -36.64197556167658, + "c6": -6.065193503109249, + "c7": -15.064421016163475 }, - "vertexSeeds": { - "c1": 5.828828374901341, - "c2": 6.245511961609112, - "c3": 6.3095181924296835, - "c4": 6.283556004118798, - "c5": 5.9840191404446585, - "c6": 6.357814710733334, - "c7": 5.873604517190675 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951457, + "c3": 7.766990291262134, + "c4": 6.213592233009712, + "c5": 4.660194174757278, + "c6": 3.106796116504856, + "c7": 1.553398058252435 }, "rgb": [77, 76, 132] }, @@ -71718,23 +71718,23 @@ "year": 1722, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 8.493420509725759, - "c2": -26.850592079205835, - "c3": -5.295311710412054, - "c4": 3.457644482086451, - "c5": -8.044109273225196, - "c6": 12.869342227710057, - "c7": -26.487313302263285 + "points": { + "c1": 3.5191617460867306, + "c2": 20.99786111713818, + "c3": 19.143632637957822, + "c4": 3.565389341990496, + "c5": 11.643369173960345, + "c6": 11.306187800619107, + "c7": 15.086688103674469 }, - "vertexSeeds": { - "c1": 3.6772067286549657, - "c2": 3.391811549265032, - "c3": 3.469916392807683, - "c4": 3.1209694628366274, - "c5": 3.6104945805232878, - "c6": 3.7418218217889923, - "c7": 3.0851881405369146 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803053, + "c3": 4.484512251502543, + "c4": 3.587609801202036, + "c5": 2.6907073509015245, + "c6": 1.793804900601018, + "c7": 0.8969024503005112 }, "rgb": [77, 76, 132] }, @@ -71745,23 +71745,23 @@ "year": 1722, "resistanceReported": true, "duration": 34214400, - "curveSeeds": { - "c1": 47.436905312356224, - "c2": -45.15240665754005, - "c3": -46.54964865963248, - "c4": 44.011525912269924, - "c5": 33.24581603632, - "c6": -4.881065820258705, - "c7": 31.15694754981164 + "points": { + "c1": 33.411523599788005, + "c2": 41.02777833825355, + "c3": -2.4249581092358525, + "c4": -2.3964462722971547, + "c5": 19.35410618857646, + "c6": 8.336338872708623, + "c7": -21.17560591811188 }, - "vertexSeeds": { - "c1": 3.1490894653631996, - "c2": 3.1783227793931137, - "c3": 3.0250354914377118, - "c4": 3.11580261022899, - "c5": 3.2720421999504206, - "c6": 3.1631063040470173, - "c7": 3.0481669602531936 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.02219140083218, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328672, + "c7": 0.8044382801664377 }, "rgb": [238, 201, 159] }, @@ -71772,23 +71772,23 @@ "year": 1722, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -22.666662376631148, - "c2": 27.32227190868284, - "c3": 12.57183220187152, - "c4": -26.849047401153207, - "c5": -23.986248424016875, - "c6": 22.396186799254014, - "c7": 5.735288679303796 + "points": { + "c1": 4.002765891382321, + "c2": 23.13260099042363, + "c3": -5.786926238031818, + "c4": 13.552262178447972, + "c5": -2.8493788824700523, + "c6": 22.23703004415773, + "c7": 13.935872783340852 }, - "vertexSeeds": { - "c1": 1.6035160732263125, - "c2": 1.6616859174333358, - "c3": 1.6451371264502963, - "c4": 1.5363178531831, - "c5": 1.5278799939501855, - "c6": 1.553157835784335, - "c7": 1.6526219368444144 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.468793342579751, + "c3": 2.057327785483127, + "c4": 1.645862228386502, + "c5": 1.2343966712898775, + "c6": 0.8229311141932532, + "c7": 0.4114655570966286 }, "rgb": [238, 201, 159] }, @@ -71799,23 +71799,23 @@ "year": 1722, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -26.105238659102508, - "c2": -29.564932175846344, - "c3": 32.196307658496096, - "c4": 28.68642773412725, - "c5": -26.799143987311847, - "c6": 11.014532465702601, - "c7": 16.808629866717517 + "points": { + "c1": 8.270642875762249, + "c2": 8.769684560977367, + "c3": -31.515375680104874, + "c4": -13.12673552975808, + "c5": 6.330438802870603, + "c6": -27.985732197179978, + "c7": -34.01237472264543 }, - "vertexSeeds": { - "c1": 2.005353656852629, - "c2": 2.252605430897923, - "c3": 2.0880571537734354, - "c4": 2.0819562147478785, - "c5": 2.3288562364750645, - "c6": 2.3531653157555374, - "c7": 2.387343538573863 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269072, + "c3": 3.028201571890894, + "c4": 2.422561257512714, + "c5": 1.816920943134536, + "c6": 1.211280628756358, + "c7": 0.6056403143781801 }, "rgb": [77, 76, 132] }, @@ -71826,23 +71826,23 @@ "year": 1722, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 30.6819022585237, - "c2": -33.870520520579866, - "c3": 0.7243287598017432, - "c4": -28.95363718590903, - "c5": -23.590981337057165, - "c6": 6.407047515015876, - "c7": -23.395247522019474 + "points": { + "c1": -5.6280282582324475, + "c2": 5.466844964472152, + "c3": 23.041881576661687, + "c4": 24.698084734846212, + "c5": -2.387617085933641, + "c6": -38.59641103214434, + "c7": -1.3300836982303608 }, - "vertexSeeds": { - "c1": 5.375119231238653, - "c2": 5.268576270930799, - "c3": 5.622742172732676, - "c4": 5.57170939302779, - "c5": 5.433907054183788, - "c6": 5.298991629863181, - "c7": 5.224053243924838 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744799, + "c3": 6.749884419787333, + "c4": 5.399907535829866, + "c5": 4.049930651872399, + "c6": 2.699953767914933, + "c7": 1.3499768839574664 }, "rgb": [58, 15, 49] }, @@ -71853,23 +71853,23 @@ "year": 1722, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 5.550145022827433, - "c2": 18.1190083652213, - "c3": 8.178392018875197, - "c4": -5.234990688752937, - "c5": -1.3537479994761092, - "c6": 23.523802277463663, - "c7": -11.524577115587316 + "points": { + "c1": 10.680534551444115, + "c2": 26.8826403502451, + "c3": 14.654568951809797, + "c4": 24.53418728543536, + "c5": 30.319005763218723, + "c6": -28.26458029048605, + "c7": -31.00707386308467 }, - "vertexSeeds": { - "c1": 4.930433187218251, - "c2": 4.962494717009562, - "c3": 4.937496729542, - "c4": 5.000448687251201, - "c5": 4.938075390292137, - "c6": 4.937536551195512, - "c7": 4.943830308632173 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417463, + "c3": 5.987055016181203, + "c4": 4.789644012944943, + "c5": 3.5922330097087785, + "c6": 2.3948220064724715, + "c7": 1.1974110032362597 }, "rgb": [238, 201, 159] }, @@ -71880,23 +71880,23 @@ "year": 1722, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -2.0499909383605157, - "c2": 25.625212300077248, - "c3": 11.633504220199203, - "c4": -5.315108933352555, - "c5": 4.962502943777583, - "c6": 26.851458903127305, - "c7": 1.1943646461084754 + "points": { + "c1": 5.683912679093677, + "c2": 22.26737919595539, + "c3": -18.589217139939194, + "c4": -25.18408484847665, + "c5": 13.98008065712634, + "c6": -18.82381612138375, + "c7": -11.145795734044036 }, - "vertexSeeds": { - "c1": 4.230124429965211, - "c2": 4.537312182497453, - "c3": 4.210407383804356, - "c4": 4.528722328471698, - "c5": 4.34108010951562, - "c6": 4.277278302858851, - "c7": 4.1616837370948465 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613034, + "c3": 5.524734165510865, + "c4": 4.4197873324086885, + "c5": 3.3148404993065212, + "c6": 2.2098936662043442, + "c7": 1.1049468331021768 }, "rgb": [238, 201, 159] }, @@ -71907,23 +71907,23 @@ "year": 1722, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -19.1921184654179, - "c2": 8.6878759477503, - "c3": 12.817352269209032, - "c4": -4.709570500397927, - "c5": 0.49374777282816495, - "c6": -9.354312056047458, - "c7": -28.430442546779176 + "points": { + "c1": -3.3661160211503756, + "c2": 7.302087919292148, + "c3": -11.685979866649326, + "c4": -30.910155883210823, + "c5": -27.253592090382107, + "c6": 4.43880536249798, + "c7": 16.896460217741073 }, - "vertexSeeds": { - "c1": 5.415636413509253, - "c2": 5.2328905993595285, - "c3": 5.1315509441827745, - "c4": 4.966652949984219, - "c5": 4.732493408931351, - "c6": 5.277315110352055, - "c7": 4.844782146908133 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262137, + "c3": 6.472491909385116, + "c4": 5.177993527508094, + "c5": 3.883495145631072, + "c6": 2.588996763754044, + "c7": 1.294498381877022 }, "rgb": [58, 15, 49] }, @@ -71934,23 +71934,23 @@ "year": 1722, "resistanceReported": true, "duration": 21945600, - "curveSeeds": { - "c1": -12.963863375903713, - "c2": -12.619191865424003, - "c3": 4.6847863607521205, - "c4": 15.036966262081705, - "c5": -29.412941732067445, - "c6": -0.7126865822594937, - "c7": 23.763795603818977 + "points": { + "c1": -1.4709590944687605, + "c2": -15.445919768759161, + "c3": -18.383630600910312, + "c4": -1.7221137765550338, + "c5": -28.539898479180458, + "c6": -2.1580100530992112, + "c7": 5.145170054577498 }, - "vertexSeeds": { - "c1": 9.315160373602303, - "c2": 8.757850362641868, - "c3": 7.708840139269641, - "c4": 11.515053632733249, - "c5": 7.338110722565327, - "c6": 8.49354625383923, - "c7": 10.803871535546904 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.03051317614424, + "c3": 15.025427646786872, + "c4": 12.020342117429495, + "c5": 9.015256588072122, + "c6": 6.010171058714749, + "c7": 3.0050855293573724 }, "rgb": [238, 201, 159] }, @@ -71961,23 +71961,23 @@ "year": 1722, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -26.76312962518915, - "c2": -6.198124302736982, - "c3": 3.212698911557876, - "c4": 20.399263302223943, - "c5": -15.28440553123472, - "c6": 10.287864894097133, - "c7": -25.883033047726098 + "points": { + "c1": -11.138731253949544, + "c2": 11.089228004833693, + "c3": -1.442453730091735, + "c4": -19.604123175111322, + "c5": -0.3009801868207447, + "c6": 15.368399757029387, + "c7": 1.823891125484927 }, - "vertexSeeds": { - "c1": 4.418548264695455, - "c2": 4.532053813748542, - "c3": 4.63923443249558, - "c4": 4.578362448843726, - "c5": 4.553985084261931, - "c6": 4.5545974088257015, - "c7": 4.4444912998942065 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693481, + "c3": 5.570966250577902, + "c4": 4.456773000462321, + "c5": 3.3425797503467405, + "c6": 2.2283865002311605, + "c7": 1.1141932501155802 }, "rgb": [77, 76, 132] }, @@ -71988,23 +71988,23 @@ "year": 1722, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -22.272694534842415, - "c2": 9.714443922424074, - "c3": 17.037357528967014, - "c4": 8.382053006272898, - "c5": -10.913231326111575, - "c6": 8.148881471636308, - "c7": -19.228020400257947 + "points": { + "c1": 3.420833842747598, + "c2": -23.809723590211114, + "c3": -8.943802162998857, + "c4": -1.9563378989978517, + "c5": -29.29199041282211, + "c6": -26.780239345760425, + "c7": -17.142768399670196 }, - "vertexSeeds": { - "c1": 5.680979348120504, - "c2": 5.935763000095634, - "c3": 5.703056061113782, - "c4": 5.775184018834836, - "c5": 6.386865787069662, - "c6": 5.664719247013751, - "c7": 5.727855286674526 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.51456310679612, + "c3": 7.92880258899676, + "c4": 6.34304207119741, + "c5": 4.75728155339806, + "c6": 3.1715210355987105, + "c7": 1.5857605177993495 }, "rgb": [222, 0, 59] }, @@ -72015,23 +72015,23 @@ "year": 1722, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -19.616865208807617, - "c2": -19.484130142236744, - "c3": 15.17445420725689, - "c4": 2.624565733349865, - "c5": 17.347553614872698, - "c6": 25.242218380221065, - "c7": 16.46298886664221 + "points": { + "c1": -5.729402781617665, + "c2": 28.420690216457036, + "c3": 18.043152477685528, + "c4": -13.30761339173102, + "c5": -6.360352153485739, + "c6": -17.061512324505742, + "c7": -8.000288277848355 }, - "vertexSeeds": { - "c1": 4.534899001222586, - "c2": 4.449672272876197, - "c3": 4.50514528700451, - "c4": 4.60752557769143, - "c5": 4.31433894224246, - "c6": 4.5022616633540915, - "c7": 4.623773819404782 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613032, + "c3": 5.524734165510866, + "c4": 4.419787332408688, + "c5": 3.314840499306522, + "c6": 2.209893666204344, + "c7": 1.104946833102166 }, "rgb": [222, 0, 59] }, @@ -72042,23 +72042,23 @@ "year": 1722, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 15.033358448874885, - "c2": -5.846936160421862, - "c3": 5.6928201517500625, - "c4": 3.554025917770815, - "c5": -5.221246563723714, - "c6": 6.999732848163667, - "c7": 16.532720845623423 + "points": { + "c1": -27.23447401966983, + "c2": -11.935429047051967, + "c3": -21.627656976189638, + "c4": 8.60427819801086, + "c5": -16.963470156268404, + "c6": 14.133725929163951, + "c7": -26.701130748014762 }, - "vertexSeeds": { - "c1": 2.791505131732944, - "c2": 2.622872294870702, - "c3": 2.445473526147413, - "c4": 2.7190026617913317, - "c5": 2.690186293852063, - "c6": 2.8235435250516296, - "c7": 2.6917728392204157 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073506, + "c3": 3.490522422561258, + "c4": 2.792417938049004, + "c5": 2.094313453536756, + "c6": 1.396208969024502, + "c7": 0.6981044845122485 }, "rgb": [58, 15, 49] }, @@ -72069,23 +72069,23 @@ "year": 1722, "resistanceReported": true, "duration": 19440000, - "curveSeeds": { - "c1": -6.5697930837590235, - "c2": 5.9267355072062315, - "c3": 11.154867831424589, - "c4": -1.3710788367233775, - "c5": -21.34815126349868, - "c6": 24.47268161870914, - "c7": -4.867750960893133 + "points": { + "c1": 4.0193965752542695, + "c2": -16.997809584116347, + "c3": -11.70722646712186, + "c4": -24.79865651239913, + "c5": 24.21785080478886, + "c6": -1.7024478467978348, + "c7": 31.39716019670162 }, - "vertexSeeds": { - "c1": 5.874386200986565, - "c2": 6.028846640485916, - "c3": 5.3986338810033105, - "c4": 5.415972619066564, - "c5": 5.536598710844812, - "c6": 5.761549513407554, - "c7": 5.717236814312446 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710123, + "c3": 7.304669440591766, + "c4": 5.843735552473411, + "c5": 4.382801664355055, + "c6": 2.921867776236712, + "c7": 1.460933888118356 }, "rgb": [77, 76, 132] }, @@ -72096,23 +72096,23 @@ "year": 1722, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -0.22319954993397317, - "c2": 6.473036416881005, - "c3": -3.2149626729956147, - "c4": -22.45545408367589, - "c5": 10.743439201939381, - "c6": 11.766461245881018, - "c7": 3.556694719237033 + "points": { + "c1": 1.4690284267847886, + "c2": -19.13859928799001, + "c3": -15.214388141769895, + "c4": -8.933512668795327, + "c5": -6.923549195547334, + "c6": 11.651599263289661, + "c7": 4.1421105848205535 }, - "vertexSeeds": { - "c1": 2.4559927237376478, - "c2": 4.809905269329716, - "c3": 4.8857595051906095, - "c4": 5.217457232074939, - "c5": 9.440703741368486, - "c6": 5.687279287599909, - "c7": 4.6300751921225745 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116505, + "c3": 12.135922330097088, + "c4": 9.70873786407767, + "c5": 7.281553398058253, + "c6": 4.8543689320388355, + "c7": 2.427184466019417 }, "rgb": [86, 146, 138] }, @@ -72123,23 +72123,23 @@ "year": 1722, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 28.103608964306723, - "c2": 12.036628723043265, - "c3": 23.28466430565836, - "c4": 25.477485423091423, - "c5": 13.773893876760752, - "c6": -24.56589475554828, - "c7": 5.771453814410812 + "points": { + "c1": 30.818161693864106, + "c2": -11.728544410599913, + "c3": 7.669749378153988, + "c4": 9.300734549333576, + "c5": -4.447566354095326, + "c6": 7.39675780689862, + "c7": -12.883890498041822 }, - "vertexSeeds": { - "c1": 7.403866786457715, - "c2": 7.442144013158554, - "c3": 7.215381865186734, - "c4": 7.5003334056630395, - "c5": 7.415285477518676, - "c6": 6.9896411855606955, - "c7": 7.498365039602981 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.92926490984743, + "c3": 9.107720758206202, + "c4": 7.286176606564959, + "c5": 5.464632454923715, + "c6": 3.6430883032824886, + "c7": 1.8215441516412443 }, "rgb": [238, 201, 159] }, @@ -72150,23 +72150,23 @@ "year": 1722, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": 16.47013674236058, - "c2": 19.043722263125936, - "c3": 10.951278552891967, - "c4": 18.625603750729134, - "c5": -7.1343042007379935, - "c6": 19.488537606546075, - "c7": 18.1134328501472 + "points": { + "c1": -20.021377674158053, + "c2": 15.343510856707567, + "c3": 18.43468603037047, + "c4": 18.64008787607724, + "c5": -5.47045895564041, + "c6": -4.711811050464192, + "c7": -22.59283175948657 }, - "vertexSeeds": { - "c1": 2.0366386465222472, - "c2": 1.9969195254812309, - "c3": 1.9808097001389915, - "c4": 1.9992985087053192, - "c5": 1.9252424473878198, - "c6": 1.9526717100513933, - "c7": 2.0297079899022 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037444, + "c3": 2.473416551086454, + "c4": 1.9787332408691631, + "c5": 1.4840499306518722, + "c6": 0.9893666204345816, + "c7": 0.4946833102172908 }, "rgb": [86, 146, 138] }, @@ -72177,23 +72177,23 @@ "year": 1722, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -5.326853293514606, - "c2": -25.179926819407637, - "c3": 14.754556657650365, - "c4": 24.680140854457438, - "c5": -12.744423249837297, - "c6": 15.832580628933822, - "c7": 14.790467026140139 + "points": { + "c1": -14.47357494007252, + "c2": -27.635902777087466, + "c3": 22.71294551734502, + "c4": 27.71649649387067, + "c5": -20.535927336902425, + "c6": -14.363771452320055, + "c7": -17.047154238791784 }, - "vertexSeeds": { - "c1": 5.398471687581848, - "c2": 5.6306534566939375, - "c3": 5.013499297803913, - "c4": 5.557411491602605, - "c5": 5.494017682395206, - "c6": 4.994264603530831, - "c7": 5.547923097102534 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026352, + "c3": 6.911696717521958, + "c4": 5.529357374017566, + "c5": 4.147018030513173, + "c6": 2.76467868700878, + "c7": 1.382339343504387 }, "rgb": [77, 76, 132] }, @@ -72204,23 +72204,23 @@ "year": 1722, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 7.662534695334877, - "c2": 14.922299220848629, - "c3": 1.3514119672183398, - "c4": -27.99819511881806, - "c5": 5.8928862004589675, - "c6": -17.60281313781048, - "c7": 35.28661298494046 + "points": { + "c1": 12.78695738936154, + "c2": 27.846160539801716, + "c3": 8.13329780170426, + "c4": -28.554572754522866, + "c5": -1.8725931829168445, + "c6": -8.87057991724258, + "c7": -18.367179593498783 }, - "vertexSeeds": { - "c1": 5.138399577553411, - "c2": 4.962170791995165, - "c3": 5.02644165530369, - "c4": 4.98201331097347, - "c5": 4.857729201468885, - "c6": 4.698164309962663, - "c7": 4.669557713975587 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -72231,23 +72231,23 @@ "year": 1722, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -19.281592529562396, - "c2": 25.550392254141794, - "c3": 18.707942653092513, - "c4": 13.502331890020603, - "c5": -10.340907817491207, - "c6": 23.812284461760708, - "c7": 25.84771835735741 + "points": { + "c1": -20.78403764475327, + "c2": -3.178746519471815, + "c3": -21.333617306908003, + "c4": 17.90772635858716, + "c5": 10.791095755578365, + "c6": 15.695629742555266, + "c7": 24.50028118224885 }, - "vertexSeeds": { - "c1": 9.542925313737998, - "c2": 7.993834269735125, - "c3": 8.247381546008432, - "c4": 9.432336547681565, - "c5": 8.271820243970241, - "c6": 9.368483556140424, - "c7": 8.376592072889848 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110958, + "c3": 11.558021266759127, + "c4": 9.246417013407303, + "c5": 6.934812760055479, + "c6": 4.623208506703647, + "c7": 2.3116042533518235 }, "rgb": [238, 201, 159] }, @@ -72258,23 +72258,23 @@ "year": 1722, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 10.839722091970025, - "c2": 0.5457822959356733, - "c3": -19.131381782042297, - "c4": -27.272221861998375, - "c5": 11.592854443153115, - "c6": -7.623976975029372, - "c7": -17.080760432589468 + "points": { + "c1": 13.811010828919727, + "c2": 11.716015785639343, + "c3": -24.825938629036028, + "c4": 11.366185341120257, + "c5": 2.710377273599164, + "c6": 5.9160462290311955, + "c7": 8.396930831958727 }, - "vertexSeeds": { - "c1": 6.181456756257084, - "c2": 6.133159481448272, - "c3": 5.9461741645198405, - "c4": 6.0384047106444, - "c5": 5.694074499522145, - "c6": 6.151801441336013, - "c7": 5.421981578523582 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072118, + "c3": 7.512713823393439, + "c4": 6.010171058714749, + "c5": 4.507628294036059, + "c6": 3.005085529357381, + "c7": 1.5025427646786904 }, "rgb": [77, 76, 132] }, @@ -72285,23 +72285,23 @@ "year": 1722, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -25.050508635723325, - "c2": 23.67494562907597, - "c3": -3.778732792405144, - "c4": 27.139385917948907, - "c5": 24.515864086806552, - "c6": 17.228581490887322, - "c7": 24.072755489052227 + "points": { + "c1": 27.75830408063176, + "c2": 13.503238940192816, + "c3": 21.26523017325816, + "c4": -0.943978934922427, + "c5": 19.586665079670723, + "c6": -23.28935420039074, + "c7": -30.783420475930644 }, - "vertexSeeds": { - "c1": 2.7134944259794995, - "c2": 2.7485170039259716, - "c3": 2.55138378410823, - "c4": 2.784716833470878, - "c5": 2.764966001628945, - "c6": 2.794686221899111, - "c7": 2.6923860688335552 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912625, + "c3": 3.3980582524271825, + "c4": 2.71844660194175, + "c5": 2.038834951456308, + "c6": 1.359223300970875, + "c7": 0.6796116504854419 }, "rgb": [77, 76, 132] }, @@ -72312,23 +72312,23 @@ "year": 1722, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 7.504253711742237, - "c2": 26.33094611436696, - "c3": 30.267372300913706, - "c4": -18.34321912637768, - "c5": -13.070425569327146, - "c6": 11.242111849308266, - "c7": 10.38078723190548 + "points": { + "c1": 12.221161258969971, + "c2": -31.692241324319703, + "c3": -11.719642000000281, + "c4": -10.387419687771896, + "c5": -31.31426223976302, + "c6": 19.883554419265543, + "c7": -2.405679369459996 }, - "vertexSeeds": { - "c1": 1.0723529788852506, - "c2": 1.0736386913685094, - "c3": 1.0790695361289835, - "c4": 1.1804845932507702, - "c5": 1.0213817715362268, - "c6": 1.1324907429011022, - "c7": 1.0826781629591908 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937583, + "c3": 1.4331946370781325, + "c4": 1.1465557096625056, + "c5": 0.8599167822468797, + "c6": 0.5732778548312528, + "c7": 0.2866389274156258 }, "rgb": [86, 146, 138] }, @@ -72339,23 +72339,23 @@ "year": 1722, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 33.04714993777735, - "c2": 33.94969752558697, - "c3": -36.93301973067182, - "c4": -3.7196446163550547, - "c5": 18.08245089234544, - "c6": -22.099544500852968, - "c7": -32.61699573217324 + "points": { + "c1": -36.48046259623268, + "c2": -8.45528746333762, + "c3": -20.207239609658426, + "c4": -18.956570924678704, + "c5": -38.569019415090736, + "c6": -13.839177860129322, + "c7": 0.7412518711583829 }, - "vertexSeeds": { - "c1": 4.975726329239706, - "c2": 5.025949842959311, - "c3": 5.796980275977299, - "c4": 5.7287636192417635, - "c5": 5.665312104732416, - "c6": 5.006288713708156, - "c7": 4.940915624901667 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055472, + "c4": 5.547850208044384, + "c5": 4.160887656033285, + "c6": 2.773925104022186, + "c7": 1.3869625520110989 }, "rgb": [58, 15, 49] }, @@ -72366,23 +72366,23 @@ "year": 1722, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -4.943861482031675, - "c2": -13.38404624929123, - "c3": 22.859690502449517, - "c4": -25.44496116561782, - "c5": 30.413807879443382, - "c6": 7.5036748113466345, - "c7": -21.878963029253704 + "points": { + "c1": -34.58241171783634, + "c2": -2.6787108915481426, + "c3": 0.8416978500336256, + "c4": -0.5127356437673924, + "c5": -20.630574880364932, + "c6": -2.0989312948235437, + "c7": 4.1932379349226 }, - "vertexSeeds": { - "c1": 1.801902490831161, - "c2": 1.6848302196228677, - "c3": 1.7125412944899545, - "c4": 1.998119702453355, - "c5": 1.8423209332655417, - "c6": 1.8922357724077, - "c7": 1.8434903661474393 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233, + "c3": 2.4271844660194186, + "c4": 1.9417475728155342, + "c5": 1.45631067961165, + "c6": 0.9708737864077658, + "c7": 0.4854368932038842 }, "rgb": [222, 0, 59] }, @@ -72393,23 +72393,23 @@ "year": 1722, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -30.972777162155214, - "c2": 28.910362410229503, - "c3": 3.9389688076621, - "c4": -15.04034750097702, - "c5": 8.059837383355806, - "c6": 29.563654208140413, - "c7": 21.10476865651402 + "points": { + "c1": 26.813664612116185, + "c2": 5.952335333906973, + "c3": 33.908438578235256, + "c4": -8.663099108137583, + "c5": 31.849812285625028, + "c6": 21.021467470667886, + "c7": -25.938409849472006 }, - "vertexSeeds": { - "c1": 5.127061439003818, - "c2": 4.657940561032892, - "c3": 4.9268649517717815, - "c4": 4.710287025355068, - "c5": 4.6232533684067825, - "c6": 4.704686442134321, - "c7": 4.217887526952803 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658804, + "c3": 6.125751271382341, + "c4": 4.900601017105873, + "c5": 3.675450762829406, + "c6": 2.4503005085529383, + "c7": 1.2251502542764714 }, "rgb": [58, 15, 49] }, @@ -72420,23 +72420,23 @@ "year": 1722, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": -20.22578557064962, - "c2": -13.223059205972518, - "c3": 33.76362789084735, - "c4": 30.71108080747002, - "c5": -23.652291143587103, - "c6": -13.16296228765112, - "c7": -28.73853056114195 + "points": { + "c1": -50.312823198916, + "c2": -2.3113109049130713, + "c3": -29.52799002538936, + "c4": 25.68564527637502, + "c5": -15.184091890482378, + "c6": -34.26571302897641, + "c7": -19.667050372955156 }, - "vertexSeeds": { - "c1": 3.8605731970325468, - "c2": 4.081982288070771, - "c3": 3.997303641278169, - "c4": 3.8812246107355883, - "c5": 4.079613028281984, - "c6": 4.061338917535704, - "c7": 4.012210489152682 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527046, + "c3": 4.900601017105871, + "c4": 3.920480813684697, + "c5": 2.940360610263523, + "c6": 1.9602404068423485, + "c7": 0.9801202034211742 }, "rgb": [238, 201, 159] }, @@ -72447,23 +72447,23 @@ "year": 1722, "resistanceReported": true, "duration": 16588800, - "curveSeeds": { - "c1": -7.8767912593090585, - "c2": 12.090541358005595, - "c3": 10.903630509435978, - "c4": -27.629501746917498, - "c5": 11.8899798884352, - "c6": -16.744619326145283, - "c7": 6.329512405196915 + "points": { + "c1": 19.375141314429335, + "c2": 22.617604321630253, + "c3": 27.400704433511024, + "c4": 8.607972634062143, + "c5": -9.542858306874809, + "c6": 0.853995292957002, + "c7": -9.65551135150083 }, - "vertexSeeds": { - "c1": 5.952666570468748, - "c2": 5.220518185051844, - "c3": 5.601528893353684, - "c4": 5.531672549666828, - "c5": 5.734555812559941, - "c6": 5.940644448070961, - "c7": 5.726657170102381 + "offsets": { + "c1": 10, + "c2": 8.57142857142857, + "c3": 7.142857142857148, + "c4": 5.714285714285716, + "c5": 4.285714285714285, + "c6": 2.8571428571428523, + "c7": 1.4285714285714315 }, "rgb": [86, 146, 138] }, @@ -72474,23 +72474,23 @@ "year": 1722, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 24.173032332724, - "c2": -17.197354440020582, - "c3": -5.186531695632809, - "c4": 26.882762783694105, - "c5": 15.009869125547603, - "c6": -25.828528732660722, - "c7": -10.011655696972422 + "points": { + "c1": 15.734649893979132, + "c2": -14.557650709027904, + "c3": -24.043279040236875, + "c4": -21.118535125239436, + "c5": -9.720766935687518, + "c6": -3.135391603983713, + "c7": 10.025629802486158 }, - "vertexSeeds": { - "c1": 3.967589879475932, - "c2": 4.215359129695013, - "c3": 3.395695454677669, - "c4": 4.028604506748533, - "c5": 3.531405658890627, - "c6": 3.5306202471379784, - "c7": 3.3283270816516075 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808601, + "c3": 5.062413314840502, + "c4": 4.049930651872399, + "c5": 3.0374479889043005, + "c6": 2.0249653259362015, + "c7": 1.0124826629681025 }, "rgb": [222, 0, 59] }, @@ -72501,23 +72501,23 @@ "year": 1722, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -34.61669480482294, - "c2": 13.608073855937704, - "c3": -24.122443773284026, - "c4": 4.9852106453806115, - "c5": -0.46424332360299303, - "c6": 25.772889054950895, - "c7": 25.459656532036078 + "points": { + "c1": 8.171031597974498, + "c2": 30.712017939253556, + "c3": 2.8209854881952836, + "c4": 4.520896746723196, + "c5": -28.221089119307386, + "c6": 15.375765385747272, + "c7": -9.421263878258998 }, - "vertexSeeds": { - "c1": 3.269583582295078, - "c2": 3.7129467148652617, - "c3": 3.4623306481820193, - "c4": 3.8632794570348685, - "c5": 3.276920901895369, - "c6": 3.5831053877799857, - "c7": 3.6823094568347927 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124825, + "c3": 4.6694405917706865, + "c4": 3.7355524734165515, + "c5": 2.8016643550624125, + "c6": 1.8677762367082733, + "c7": 0.9338881183541393 }, "rgb": [238, 201, 159] }, @@ -72528,23 +72528,23 @@ "year": 1722, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 14.431253957688874, - "c2": -25.19750187782016, - "c3": 1.0770433186074442, - "c4": -3.3525836783850167, - "c5": 24.665160153550012, - "c6": -6.175840140716446, - "c7": 7.277207927159402 + "points": { + "c1": 0.4336469806407308, + "c2": 16.116100788122694, + "c3": -11.906547085688501, + "c4": 14.690956598704005, + "c5": 19.208256977983872, + "c6": -11.026731910217983, + "c7": -17.74980185529433 }, - "vertexSeeds": { - "c1": 6.253233647527974, - "c2": 6.28086821282964, - "c3": 6.056310089311612, - "c4": 6.2355856542336205, - "c5": 6.207948889428115, - "c6": 6.09935910858817, - "c7": 6.3105902129975995 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233, + "c3": 7.605177993527488, + "c4": 6.084142394822012, + "c5": 4.5631067961165, + "c6": 3.042071197410988, + "c7": 1.5210355987054762 }, "rgb": [77, 76, 132] }, @@ -72555,23 +72555,23 @@ "year": 1724, "resistanceReported": false, "duration": 66441600, - "curveSeeds": { - "c1": -9.562701837088682, - "c2": 49.72848832967084, - "c3": -81.54805090942942, - "c4": 39.438351654108615, - "c5": -24.019981582173074, - "c6": 49.33759211867245, - "c7": -29.536593086340943 + "points": { + "c1": -54.737528120609255, + "c2": 17.250619367492547, + "c3": -47.897055410110745, + "c4": 62.998796581421445, + "c5": 28.0598350538925, + "c6": -2.101260118190851, + "c7": 12.601057320131716 }, - "vertexSeeds": { - "c1": 2.2444853908372235, - "c2": 2.417503833159414, - "c3": 2.3461722497920263, - "c4": 2.4617062570503236, - "c5": 2.469001444922663, - "c6": 2.245367856187166, - "c7": 2.4531902089885724 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269072, + "c3": 3.0282015718908935, + "c4": 2.422561257512716, + "c5": 1.816920943134538, + "c6": 1.2112806287563558, + "c7": 0.6056403143781779 }, "rgb": [58, 15, 49] }, @@ -72582,23 +72582,23 @@ "year": 1723, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": -54.147550427683086, - "c2": -9.149411269658174, - "c3": 36.04800803385125, - "c4": 53.068693309503445, - "c5": 14.040652309542338, - "c6": -18.392301515773994, - "c7": -50.89092298686606 + "points": { + "c1": 16.363416278894704, + "c2": 7.243442106711939, + "c3": -19.119845610834545, + "c4": -10.231976748106383, + "c5": -54.47509325593169, + "c6": 0.44313370643499894, + "c7": 2.03773714849671 }, - "vertexSeeds": { - "c1": 7.451915602808609, - "c2": 5.519308014538368, - "c3": 7.443892895850395, - "c4": 6.114463865001822, - "c5": 6.920483202151319, - "c6": 6.027477506041364, - "c7": 7.245456613910871 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [86, 146, 138] }, @@ -72609,23 +72609,23 @@ "year": 1722, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -11.252633391458993, - "c2": 24.683332555736584, - "c3": 10.333574684967388, - "c4": 12.552443414096778, - "c5": 25.410134071545144, - "c6": -23.145973766686815, - "c7": -21.290968324857815 + "points": { + "c1": 31.913110299887776, + "c2": 22.29296718764123, + "c3": 10.357202375381348, + "c4": 31.418652543018467, + "c5": -16.545261133048434, + "c6": -8.524580882183432, + "c7": -18.882835047112703 }, - "vertexSeeds": { - "c1": 4.55662339324914, - "c2": 4.3539852020965455, - "c3": 4.162577934845214, - "c4": 4.344301609185152, - "c5": 4.022431305160844, - "c6": 4.283609308953701, - "c7": 4.245371047704966 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.99029126213592, + "c3": 5.825242718446603, + "c4": 4.66019417475728, + "c5": 3.495145631067958, + "c6": 2.33009708737864, + "c7": 1.1650485436893179 }, "rgb": [222, 0, 59] }, @@ -72636,23 +72636,23 @@ "year": 1722, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 4.2804931200720375, - "c2": -5.580209053252638, - "c3": 21.603896564670016, - "c4": 6.320605431776507, - "c5": -3.5299683422686527, - "c6": 11.51344579857345, - "c7": -17.247303661006924 + "points": { + "c1": -9.209971757149301, + "c2": 9.750261507753429, + "c3": -15.050457232657788, + "c4": -33.31451820371857, + "c5": 3.8813379393140863, + "c6": 16.483988013473237, + "c7": -11.717900482904035 }, - "vertexSeeds": { - "c1": 5.6047362105098255, - "c2": 5.2553125185353196, - "c3": 5.512444208318012, - "c4": 4.987103261774392, - "c5": 5.196377431854541, - "c6": 5.420704618455506, - "c7": 5.171192710759129 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883488, + "c5": 4.0776699029126275, + "c6": 2.7184466019417513, + "c7": 1.3592233009708756 }, "rgb": [222, 0, 59] }, @@ -72663,23 +72663,23 @@ "year": 1722, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -10.771877757325502, - "c2": -17.33500402593893, - "c3": 25.122892832075625, - "c4": 15.740759985180627, - "c5": -6.142538502125014, - "c6": 7.129656604548085, - "c7": 15.48896324092659 + "points": { + "c1": 3.838815794218995, + "c2": -29.542192866653718, + "c3": 26.609376878570963, + "c4": -30.254071119859944, + "c5": -6.46964805566985, + "c6": -3.3707426783814363, + "c7": 3.7917818148978597 }, - "vertexSeeds": { - "c1": 2.147614331389106, - "c2": 2.07143780917597, - "c3": 2.2448138449838946, - "c4": 2.247272946482943, - "c5": 2.046307812214473, - "c6": 2.072088838537089, - "c7": 2.015322760847537 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461853, + "c3": 2.727693018955154, + "c4": 2.1821544151641263, + "c5": 1.6366158113730944, + "c6": 1.0910772075820632, + "c7": 0.5455386037910316 }, "rgb": [238, 201, 159] }, @@ -72690,23 +72690,23 @@ "year": 1722, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 4.887500245846233, - "c2": 34.890740878332025, - "c3": 11.003847887805627, - "c4": 22.89643725216903, - "c5": -30.437041586299898, - "c6": -27.236132821859734, - "c7": 12.005488229816152 + "points": { + "c1": -16.418196681587048, + "c2": -29.07146018755007, + "c3": 11.662642044836126, + "c4": 19.732904603790942, + "c5": -27.533437055255305, + "c6": -24.50807340677818, + "c7": 34.1432204607392 }, - "vertexSeeds": { - "c1": 7.671498248794462, - "c2": 7.669108535270457, - "c3": 7.709316190284492, - "c4": 7.691481752311654, - "c5": 7.719840999705512, - "c6": 7.737468737996208, - "c7": 7.739104972284705 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088745, + "c3": 9.246417013407262, + "c4": 7.3971336107257795, + "c5": 5.547850208044445, + "c6": 3.698566805362964, + "c7": 1.849283402681482 }, "rgb": [58, 15, 49] }, @@ -72717,23 +72717,23 @@ "year": 1722, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 16.15371882522745, - "c2": 3.6348119489392374, - "c3": -25.62928601062274, - "c4": 27.518470981480043, - "c5": 14.22024088239479, - "c6": -23.188508438104094, - "c7": 9.711168620957523 + "points": { + "c1": -6.49592428933326, + "c2": 15.282255008815895, + "c3": 24.7775207265947, + "c4": 0.0368041565084809, + "c5": 17.02820643034906, + "c6": -29.136319356505908, + "c7": 24.654664169232817 }, - "vertexSeeds": { - "c1": 2.517657359240063, - "c2": 2.4876451362021665, - "c3": 2.5793740667650655, - "c4": 2.470317062498498, - "c5": 2.503368518945973, - "c6": 2.4922622244751147, - "c7": 2.4739049075872095 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631065, + "c3": 3.2362459546925613, + "c4": 2.588996763754047, + "c5": 1.9417475728155325, + "c6": 1.294498381877029, + "c7": 0.6472491909385145 }, "rgb": [58, 15, 49] }, @@ -72744,23 +72744,23 @@ "year": 1722, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 25.663577049188866, - "c2": 2.030465956755947, - "c3": -29.091075418520987, - "c4": 7.891230628692874, - "c5": -27.675362128815657, - "c6": -32.931348668203, - "c7": 2.6052420206314295 + "points": { + "c1": 11.09551318320436, + "c2": 30.82849363566895, + "c3": -8.159736800354569, + "c4": -19.067616045383716, + "c5": 13.937614308923315, + "c6": 13.195668265797948, + "c7": 33.42316260045196 }, - "vertexSeeds": { - "c1": 6.150154426017335, - "c2": 6.1461089339299395, - "c3": 6.427725632433376, - "c4": 6.1854596260012755, - "c5": 6.391378120752879, - "c6": 6.359628795768433, - "c7": 6.224916331991606 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474351, + "c3": 7.743874248728604, + "c4": 6.195099398982889, + "c5": 4.646324549237176, + "c6": 3.0975496994914278, + "c7": 1.5487748497457139 }, "rgb": [238, 201, 159] }, @@ -72771,23 +72771,23 @@ "year": 1722, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -12.537260997474835, - "c2": -10.43895422638726, - "c3": 20.026890359425614, - "c4": -28.984466372480078, - "c5": -27.247913682525414, - "c6": 17.471533904186764, - "c7": -0.4249736622846356 + "points": { + "c1": 37.06900862424004, + "c2": -23.557544556380904, + "c3": -22.371719335554157, + "c4": 24.70460258021754, + "c5": -6.7269527856752305, + "c6": 1.7581817746359576, + "c7": -3.389162049000781 }, - "vertexSeeds": { - "c1": 4.910877993737687, - "c2": 4.917961801699967, - "c3": 5.282271157343036, - "c4": 5.3020971097731024, - "c5": 5.406368552426477, - "c6": 4.861382611803138, - "c7": 5.287362688580266 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262138, + "c3": 6.472491909385116, + "c4": 5.177993527508095, + "c5": 3.883495145631073, + "c6": 2.5889967637540514, + "c7": 1.2944983818770217 }, "rgb": [86, 146, 138] }, @@ -72798,23 +72798,23 @@ "year": 1722, "resistanceReported": true, "duration": 22464000, - "curveSeeds": { - "c1": 14.473936736009591, - "c2": -30.25737217724947, - "c3": -22.6942353243531, - "c4": -5.815841173267124, - "c5": -18.771027130179228, - "c6": 12.109285261666741, - "c7": -9.377846671532016 + "points": { + "c1": 23.399401053169505, + "c2": 30.478686612060542, + "c3": 29.654728784430148, + "c4": 8.949176518228377, + "c5": -26.903297060472095, + "c6": -0.8316668971810088, + "c7": -13.149820421484886 }, - "vertexSeeds": { - "c1": 3.3704823116239777, - "c2": 3.4764035191664595, - "c3": 2.254984092167428, - "c4": 3.372230013122821, - "c5": 2.254169797872088, - "c6": 3.721402801788616, - "c7": 1.9413865798051815 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.6865464632454925, + "c3": 4.738788719371244, + "c4": 3.791030975496995, + "c5": 2.843273231622746, + "c6": 1.8955154877484977, + "c7": 0.9477577438742496 }, "rgb": [86, 146, 138] }, @@ -72825,23 +72825,23 @@ "year": 1723, "resistanceReported": false, "duration": 49420800, - "curveSeeds": { - "c1": 22.314337788799847, - "c2": -21.85683180781369, - "c3": -21.44363508065883, - "c4": -12.656771295441473, - "c5": 18.123403199504168, - "c6": 16.94530756404852, - "c7": -50.077450256161775 + "points": { + "c1": -59.60732005277337, + "c2": -7.753928256961977, + "c3": 32.867043157522986, + "c4": 0.11390290512936474, + "c5": 9.250103985436724, + "c6": 28.103735122838202, + "c7": 31.88497184082304 }, - "vertexSeeds": { - "c1": 8.427922714680102, - "c2": 8.095729086198203, - "c3": 7.977107652154911, - "c4": 8.920103366811583, - "c5": 7.9451433398096185, - "c6": 8.546415354354371, - "c7": 8.619706897348644 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.89875173370319, + "c3": 10.748959778085991, + "c4": 8.599167822468793, + "c5": 6.449375866851595, + "c6": 4.2995839112343965, + "c7": 2.1497919556171983 }, "rgb": [77, 76, 132] }, @@ -72852,23 +72852,23 @@ "year": 1722, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 24.702741317413164, - "c2": -15.542842649145168, - "c3": 1.1520938778677419, - "c4": 22.72536146996454, - "c5": -8.385446921142385, - "c6": 6.860255457458031, - "c7": -10.024229891020955 + "points": { + "c1": -9.318600499526433, + "c2": 0.6568661115589336, + "c3": -14.161624347917158, + "c4": -6.422969882145232, + "c5": 13.586559131342241, + "c6": -17.49099747392717, + "c7": -39.03065199754241 }, - "vertexSeeds": { - "c1": 2.15087512336837, - "c2": 2.1439146502679804, - "c3": 2.1548373032395616, - "c4": 2.1457056713663167, - "c5": 2.1433405719749388, - "c6": 2.15546003618346, - "c7": 2.156374390471912 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504869, + "c3": 2.5889967637540234, + "c4": 2.071197411003229, + "c5": 1.5533980582524345, + "c6": 1.0355987055016402, + "c7": 0.5177993527507944 }, "rgb": [222, 0, 59] }, @@ -72879,23 +72879,23 @@ "year": 1723, "resistanceReported": false, "duration": 48384000, - "curveSeeds": { - "c1": 34.66205592261324, - "c2": 5.061939320213149, - "c3": 27.24306227318383, - "c4": -43.82957437936418, - "c5": 1.583888195955403, - "c6": 4.144970789913991, - "c7": -9.54990896415218 + "points": { + "c1": -5.4573641279664145, + "c2": 38.823525097978205, + "c3": 24.354345694497894, + "c4": -32.513140558173745, + "c5": -31.725703744855707, + "c6": 58.83210487773722, + "c7": -15.043745698059062 }, - "vertexSeeds": { - "c1": 5.363624551239481, - "c2": 5.37626766778557, - "c3": 5.431405675732806, - "c4": 5.555329766940503, - "c5": 5.374109636539743, - "c6": 5.583755679075553, - "c7": 5.470912361119839 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664373, + "c3": 6.70365233472029, + "c4": 5.362921867776249, + "c5": 4.022191400832166, + "c6": 2.6814609338881246, + "c7": 1.3407304669440416 }, "rgb": [86, 146, 138] }, @@ -72906,23 +72906,23 @@ "year": 1722, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 3.276810554780866, - "c2": -13.093996053582178, - "c3": 29.4570718933047, - "c4": 37.271246809145836, - "c5": 33.61524158691233, - "c6": 20.069594329901996, - "c7": 29.074242709913975 + "points": { + "c1": 4.997211006232199, + "c2": -17.36970321435679, + "c3": -17.579144722779933, + "c4": 14.017992454283657, + "c5": 11.210955945595074, + "c6": -36.314718005566924, + "c7": 25.188376412421164 }, - "vertexSeeds": { - "c1": 4.636440826181308, - "c2": 4.658968641225196, - "c3": 4.487950148255539, - "c4": 4.512097559882547, - "c5": 4.713250296163517, - "c6": 4.198535289154983, - "c7": 4.40407738901212 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.76837725381415, + "c3": 5.640314378178456, + "c4": 4.5122515025427665, + "c5": 3.3841886269070716, + "c6": 2.2561257512713833, + "c7": 1.128062875635695 }, "rgb": [86, 146, 138] }, @@ -72933,23 +72933,23 @@ "year": 1723, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -29.600638107793234, - "c2": -16.69207280507441, - "c3": -29.187400956132773, - "c4": 3.6260740517733865, - "c5": 2.743230999176035, - "c6": 6.262795699151361, - "c7": 13.832852692326064 + "points": { + "c1": -30.02775579602123, + "c2": -5.319866953999188, + "c3": 41.69914895397377, + "c4": 9.73823158133392, + "c5": -17.650133357972873, + "c6": -27.522201731935855, + "c7": -23.637985504827835 }, - "vertexSeeds": { - "c1": 7.942617780102785, - "c2": 7.314922545002027, - "c3": 7.9699641167130535, - "c4": 6.942798703180641, - "c5": 7.164966031434129, - "c6": 7.867606403743861, - "c7": 7.664857865124877 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772544, + "c3": 9.639389736477114, + "c4": 7.711511789181695, + "c5": 5.783633841886266, + "c6": 3.8557558945908474, + "c7": 1.9278779472954182 }, "rgb": [238, 201, 159] }, @@ -72960,23 +72960,23 @@ "year": 1722, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -13.94462437739314, - "c2": -21.008413737309645, - "c3": -9.651401477903214, - "c4": 12.768681613185827, - "c5": 23.302654370633796, - "c6": 15.37935449805535, - "c7": -1.8060263645271846 + "points": { + "c1": 20.072582501923044, + "c2": -2.63898611185094, + "c3": 3.279777294607271, + "c4": 8.377190055934406, + "c5": -5.79839953640554, + "c6": -20.434958975067637, + "c7": 25.53735940104773 }, - "vertexSeeds": { - "c1": 7.4934266141441475, - "c2": 7.455740237314365, - "c3": 7.655794293172062, - "c4": 7.470521806750709, - "c5": 7.475998178043956, - "c6": 7.579454116685954, - "c7": 7.516544591421856 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289867, + "c3": 9.361997226074878, + "c4": 7.489597780859921, + "c5": 5.617198335644933, + "c6": 3.744798890429945, + "c7": 1.872399445214957 }, "rgb": [77, 76, 132] }, @@ -72987,23 +72987,23 @@ "year": 1722, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -3.7351426008807564, - "c2": -20.628872263564034, - "c3": -25.343710591921777, - "c4": 10.80209854440838, - "c5": -29.286199974956897, - "c6": -23.791717217348623, - "c7": 0.38606428643884527 + "points": { + "c1": 2.5607222722875917, + "c2": -5.729406172845355, + "c3": 25.079741791507075, + "c4": -19.41859311790547, + "c5": 29.140792983333526, + "c6": 22.57488157506804, + "c7": -1.3601077139789481 }, - "vertexSeeds": { - "c1": 9.621384733803657, - "c2": 9.975538254005768, - "c3": 10.852519048314832, - "c4": 10.477072797334056, - "c5": 10.07150972261096, - "c6": 10.405862832434138, - "c7": 10.594964485065725 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.58945908460471, + "c3": 12.991215903837276, + "c4": 10.392972723069816, + "c5": 7.794729542302355, + "c6": 5.196486361534908, + "c7": 2.598243180767448 }, "rgb": [58, 15, 49] }, @@ -73014,23 +73014,23 @@ "year": 1722, "resistanceReported": true, "duration": 24624000, - "curveSeeds": { - "c1": -13.911672706091132, - "c2": 28.123260723327057, - "c3": 32.77155196236637, - "c4": -13.319986922909699, - "c5": -16.10209663372123, - "c6": -12.875513182505092, - "c7": 27.27980952198633 + "points": { + "c1": -26.67640751772106, + "c2": 2.8464818458880288, + "c3": 13.390950739240182, + "c4": 4.621170066252958, + "c5": 37.30208362299759, + "c6": 21.892793587162082, + "c7": -31.483891662511134 }, - "vertexSeeds": { - "c1": 1.9103251181731646, - "c2": 2.0662299422280834, - "c3": 1.9703735787574048, - "c4": 1.7761675770557361, - "c5": 1.9810689186560537, - "c6": 1.8849998442806066, - "c7": 1.9788030657774955 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841873, + "c3": 2.519648636153491, + "c4": 2.015718908922792, + "c5": 1.5117891816920948, + "c6": 1.007859454461396, + "c7": 0.503929727230699 }, "rgb": [238, 201, 159] }, @@ -73041,23 +73041,23 @@ "year": 1722, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -20.536854781130508, - "c2": -8.06473906378642, - "c3": 27.68577303968947, - "c4": 26.73624683592912, - "c5": -2.2694440133635148, - "c6": 22.498378489409017, - "c7": -22.00820692636485 + "points": { + "c1": 25.223246383762035, + "c2": -13.437972880918153, + "c3": 6.830896052424212, + "c4": 22.030105829412914, + "c5": 12.047441855735688, + "c6": -14.67167238680471, + "c7": 24.944306566052678 }, - "vertexSeeds": { - "c1": 7.120832087251811, - "c2": 6.211232620660232, - "c3": 6.319213989212658, - "c4": 6.481858180504125, - "c5": 6.3707332104752386, - "c6": 6.5006577154153025, - "c7": 7.23021868128769 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686543, + "c3": 9.015256588072123, + "c4": 7.212205270457695, + "c5": 5.409153952843267, + "c6": 3.6061026352288477, + "c7": 1.8030513176144196 }, "rgb": [222, 0, 59] }, @@ -73068,23 +73068,23 @@ "year": 1722, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 27.559079835577393, - "c2": -34.08743941450499, - "c3": 2.108953565721656, - "c4": 32.69361630863661, - "c5": -32.15007426911754, - "c6": 27.102440754551964, - "c7": -3.3784547956037443 + "points": { + "c1": 33.27209999809621, + "c2": -1.3878441983494554, + "c3": 30.333833884461114, + "c4": 23.396380167641396, + "c5": 7.475770484939993, + "c6": 6.293490053792738, + "c7": -1.6856656210958718 }, - "vertexSeeds": { - "c1": 4.109026479015512, - "c2": 4.599337015258793, - "c3": 4.808131266863423, - "c4": 4.546547422522133, - "c5": 3.897701141154843, - "c6": 4.332412024565481, - "c7": 4.21002230009793 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015255, + "c3": 5.755894590846049, + "c4": 4.6047156726768375, + "c5": 3.45353675450763, + "c6": 2.3023578363384187, + "c7": 1.1511789181692067 }, "rgb": [86, 146, 138] }, @@ -73095,23 +73095,23 @@ "year": 1722, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -20.474621620854663, - "c2": 0.7916903466535459, - "c3": 36.81665171621489, - "c4": 22.218289575915954, - "c5": 19.444583329404573, - "c6": -27.46339107386178, - "c7": -31.662316541314677 + "points": { + "c1": 32.541705990440676, + "c2": 4.147782638398539, + "c3": -19.81318880180335, + "c4": -10.695434187813706, + "c5": -0.2781435225911082, + "c6": 0.7991680089279782, + "c7": -32.503397631196485 }, - "vertexSeeds": { - "c1": 3.039781985248413, - "c2": 3.1137559664345575, - "c3": 2.9901716808364465, - "c4": 3.0257089229748795, - "c5": 2.978496292666924, - "c6": 2.9928103871413123, - "c7": 3.020098063580758 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515955, + "c3": 3.744798890429952, + "c4": 2.9958391123439645, + "c5": 2.2468793342579776, + "c6": 1.497919556171974, + "c7": 0.748959778085987 }, "rgb": [86, 146, 138] }, @@ -73122,23 +73122,23 @@ "year": 1722, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 19.636686431387005, - "c2": 11.648798648538317, - "c3": 15.778643104065573, - "c4": -10.22915988558367, - "c5": -4.761463529525393, - "c6": -22.26048253054002, - "c7": -21.904511903019486 + "points": { + "c1": -23.837090089466965, + "c2": 18.526936158677046, + "c3": 19.19392659157147, + "c4": 11.924589359334497, + "c5": -12.983604805865642, + "c6": 7.636841431925355, + "c7": -10.84645919204947 }, - "vertexSeeds": { - "c1": 6.727308813245449, - "c2": 6.6706989567374775, - "c3": 6.777939704429699, - "c4": 6.692708403458907, - "c5": 6.699155471507031, - "c6": 6.766021290521649, - "c7": 6.666236665126749 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077717, + "c3": 8.090614886731377, + "c4": 6.472491909385145, + "c5": 4.854368932038805, + "c6": 3.2362459546925724, + "c7": 1.6181229773463397 }, "rgb": [77, 76, 132] }, @@ -73149,23 +73149,23 @@ "year": 1722, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 28.851409523854343, - "c2": -28.4250541284713, - "c3": 29.181392557090035, - "c4": -34.24363562177101, - "c5": 19.990619134246998, - "c6": -36.17940282452657, - "c7": 26.27835959630704 + "points": { + "c1": -4.682297491803574, + "c2": 39.684070897899204, + "c3": -7.708321795315648, + "c4": -5.011022309402179, + "c5": -2.0570242335638795, + "c6": 26.636665025610583, + "c7": -0.11233053001371474 }, - "vertexSeeds": { - "c1": 7.110404366664614, - "c2": 6.4074004167890415, - "c3": 6.219655563793939, - "c4": 6.1541724261946475, - "c5": 6.36802876989571, - "c6": 6.260579525501636, - "c7": 6.605225805472481 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [238, 201, 159] }, @@ -73176,23 +73176,23 @@ "year": 1723, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 21.908592080396787, - "c2": 11.017586214565291, - "c3": -14.219161407226292, - "c4": 18.75342820946865, - "c5": 9.440438297918256, - "c6": 31.929652369699475, - "c7": 27.52527435437387 + "points": { + "c1": 15.483668392684272, + "c2": -10.820214534139364, + "c3": 14.2002174812582, + "c4": -33.04551977703982, + "c5": 20.46092117872749, + "c6": -23.139254612833202, + "c7": 14.669755047708414 }, - "vertexSeeds": { - "c1": 2.281158797656357, - "c2": 2.2948476921667944, - "c3": 2.386978558706005, - "c4": 2.2749125255882774, - "c5": 2.272889407480286, - "c6": 2.3257383679414034, - "c7": 2.263737784788917 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.522884882108182, + "c3": 2.935737401756817, + "c4": 2.3485899214054524, + "c5": 1.7614424410540879, + "c6": 1.1742949607027293, + "c7": 0.5871474803513587 }, "rgb": [222, 0, 59] }, @@ -73203,23 +73203,23 @@ "year": 1722, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 25.63141697948457, - "c2": -8.403573860451402, - "c3": -26.749368863458965, - "c4": 16.09484189716766, - "c5": 17.05152298107045, - "c6": 6.526798136212086, - "c7": 12.379098914024738 + "points": { + "c1": 6.127627236655222, + "c2": -30.75963034168558, + "c3": 27.019304495612488, + "c4": 0.7774413069581954, + "c5": -26.239870555892544, + "c6": -5.146525989394938, + "c7": -28.276521100680416 }, - "vertexSeeds": { - "c1": 9.638217720324706, - "c2": 6.989834971193485, - "c3": 10.09754499871434, - "c4": 7.447189710379622, - "c5": 7.0724501912276025, - "c6": 7.130017683968001, - "c7": 8.407748465659731 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116504, + "c3": 12.135922330097085, + "c4": 9.708737864077666, + "c5": 7.281553398058252, + "c6": 4.854368932038833, + "c7": 2.427184466019414 }, "rgb": [77, 76, 132] }, @@ -73230,23 +73230,23 @@ "year": 1722, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -5.866409153061472, - "c2": 7.5810561699755965, - "c3": -3.0805289557074147, - "c4": 5.225377240639862, - "c5": 2.0648946167601103, - "c6": 15.773207776883542, - "c7": 16.471578964106545 + "points": { + "c1": 7.634512496450757, + "c2": 12.82306767075804, + "c3": 9.961494888762463, + "c4": -13.587939540679685, + "c5": 3.8035933961637305, + "c6": 19.36981330426161, + "c7": 10.241418171715797 }, - "vertexSeeds": { - "c1": 4.860929369348271, - "c2": 4.859168160633913, - "c3": 4.751024147326963, - "c4": 4.75755322753187, - "c5": 4.744753303719384, - "c6": 4.850051953566239, - "c7": 4.780896241320146 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176152, + "c3": 5.848358760980109, + "c4": 4.678687008784093, + "c5": 3.509015256588076, + "c6": 2.3393435043920334, + "c7": 1.1696717521960167 }, "rgb": [86, 146, 138] }, @@ -73257,23 +73257,23 @@ "year": 1722, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -12.677784022566168, - "c2": -16.822061535674624, - "c3": 20.831548908658526, - "c4": 0.3675989563954687, - "c5": 1.445247980023666, - "c6": -18.68930194141572, - "c7": -17.142843831122647 + "points": { + "c1": -35.179166457779104, + "c2": 13.382469772051316, + "c3": 27.233055153983493, + "c4": -10.160749768694117, + "c5": -5.536724600644828, + "c6": -14.89315766021435, + "c7": -0.530803867797033 }, - "vertexSeeds": { - "c1": 8.597706540209716, - "c2": 9.159937207408138, - "c3": 8.010710637276043, - "c4": 8.857877672318837, - "c5": 8.49032166413314, - "c6": 8.285682965452217, - "c7": 8.828895109880992 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507628, + "c3": 11.211280628756354, + "c4": 8.969024503005091, + "c5": 6.726768377253818, + "c6": 4.4845122515025455, + "c7": 2.2422561257512728 }, "rgb": [58, 15, 49] }, @@ -73284,23 +73284,23 @@ "year": 1723, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 14.255174021827365, - "c2": 7.642170064109983, - "c3": 0.4271052247203997, - "c4": -23.04876767557841, - "c5": -13.560594391251907, - "c6": -13.916266878669347, - "c7": -37.974516325160614 + "points": { + "c1": -25.98641867113891, + "c2": -1.3228436663090903, + "c3": -36.93513508455013, + "c4": -37.924974823837324, + "c5": -12.715347308852117, + "c6": -6.7467465756288405, + "c7": -38.963795790761075 }, - "vertexSeeds": { - "c1": 6.810521094213485, - "c2": 6.9758325715621705, - "c3": 6.635206466448208, - "c4": 6.844694858785625, - "c5": 7.6998965102983465, - "c6": 6.944707283603493, - "c7": 7.558213395806347 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370316, + "c3": 9.408229311141929, + "c4": 7.526583448913541, + "c5": 5.644937586685163, + "c6": 3.7632917244567756, + "c7": 1.8816458622283878 }, "rgb": [77, 76, 132] }, @@ -73311,23 +73311,23 @@ "year": 1722, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -17.96363146184381, - "c2": 23.938859370756013, - "c3": -26.735356205611374, - "c4": -26.744680128845186, - "c5": 25.837843629654905, - "c6": -7.580494338918822, - "c7": -29.971621168613073 + "points": { + "c1": 2.5736577037093085, + "c2": 25.37464148842959, + "c3": 14.946764432812138, + "c4": 33.16241331765799, + "c5": 3.786109033947021, + "c6": -35.271675963807596, + "c7": 32.14387347080297 }, - "vertexSeeds": { - "c1": 8.064287179963626, - "c2": 8.131963655927168, - "c3": 8.12530810418543, - "c4": 8.072354404914988, - "c5": 8.030583131958844, - "c6": 8.05284136178766, - "c7": 8.03126005650234 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893259, + "c3": 9.708737864077651, + "c4": 7.766990291262172, + "c5": 5.825242718446565, + "c6": 3.883495145631086, + "c7": 1.9417475728154787 }, "rgb": [77, 76, 132] }, @@ -73338,23 +73338,23 @@ "year": 1722, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -7.874475530362918, - "c2": -10.545694582610192, - "c3": -26.987698923478458, - "c4": 2.055635497715876, - "c5": -30.52313968040374, - "c6": 5.062724153611349, - "c7": -20.119880684403213 + "points": { + "c1": 14.92618036295329, + "c2": 15.269583704350381, + "c3": -23.186847722773784, + "c4": 21.787192305839334, + "c5": 19.082127529868153, + "c6": -29.74489916727674, + "c7": -24.927296334824234 }, - "vertexSeeds": { - "c1": 4.0189078789255355, - "c2": 3.869641599291446, - "c3": 3.92394675103669, - "c4": 3.89583997232994, - "c5": 3.9791742008995823, - "c6": 3.888019754067233, - "c7": 4.06071777563395 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607484, + "c3": 4.94683310217291, + "c4": 3.957466481738323, + "c5": 2.968099861303748, + "c6": 1.9787332408691616, + "c7": 0.9893666204345754 }, "rgb": [77, 76, 132] }, @@ -73365,23 +73365,23 @@ "year": 1723, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 2.0439820357942793, - "c2": -4.936789126771927, - "c3": 7.692098629464034, - "c4": 30.88601873194537, - "c5": 24.44192926785807, - "c6": 6.886495185486218, - "c7": -8.024514013457534 + "points": { + "c1": -9.961677539843194, + "c2": -49.2965405798727, + "c3": 49.37858714617781, + "c4": -4.924334803126378, + "c5": -26.889464995673528, + "c6": 0.4045030492113568, + "c7": -39.15393832490528 }, - "vertexSeeds": { - "c1": 7.046910807560244, - "c2": 6.620702455187413, - "c3": 6.592383961802747, - "c4": 6.310882179274291, - "c5": 5.928817852782246, - "c6": 6.7024488394520265, - "c7": 6.728558058734302 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629681001, + "c3": 8.43735552473416, + "c4": 6.749884419787331, + "c5": 5.062413314840501, + "c6": 3.3749422098936703, + "c7": 1.68747110494683 }, "rgb": [86, 146, 138] }, @@ -73392,23 +73392,23 @@ "year": 1723, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -1.4056488429251957, - "c2": 18.360835961673466, - "c3": -13.722781098024807, - "c4": -20.588130681704314, - "c5": -18.841910281742706, - "c6": -27.808697302781432, - "c7": 23.459355682176557 + "points": { + "c1": -39.928518523254, + "c2": -2.4277672827634618, + "c3": -11.05559414419529, + "c4": 11.022954140941309, + "c5": 35.30132937489245, + "c6": 34.37562093151655, + "c7": -36.64838226091443 }, - "vertexSeeds": { - "c1": 3.8468956511393273, - "c2": 3.8305905501096067, - "c3": 3.84805768888075, - "c4": 3.830848791060527, - "c5": 3.8599206743830057, - "c6": 3.8426758069461817, - "c7": 3.8583376668788034 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.5755894590846315, + "c3": 4.646324549237162, + "c4": 3.717059639389755, + "c5": 2.787794729542285, + "c6": 1.8585298196948774, + "c7": 0.9292649098474078 }, "rgb": [238, 201, 159] }, @@ -73419,23 +73419,23 @@ "year": 1722, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 18.080664741991903, - "c2": 8.516488149263267, - "c3": 7.784291014735523, - "c4": 7.064908831596696, - "c5": -26.866076973758044, - "c6": 2.478456312029934, - "c7": 12.32195201351508 + "points": { + "c1": -5.5682640449650656, + "c2": -22.13053576928094, + "c3": 31.16911628095938, + "c4": -31.69356142349085, + "c5": 30.77207762889737, + "c6": -21.174083233003696, + "c7": 12.872455202979744 }, - "vertexSeeds": { - "c1": 5.733819785101828, - "c2": 5.654607471747458, - "c3": 5.780713199821538, - "c4": 5.645238515609372, - "c5": 5.7689399288724585, - "c6": 5.704729966945608, - "c7": 5.534456606922822 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055488, + "c4": 5.547850208044397, + "c5": 4.160887656033307, + "c6": 2.7739251040221813, + "c7": 1.3869625520110906 }, "rgb": [77, 76, 132] }, @@ -73446,23 +73446,23 @@ "year": 1723, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 12.320575424524193, - "c2": 31.918838960320116, - "c3": -14.436278034266518, - "c4": -24.284103258772916, - "c5": -9.113616205343707, - "c6": 16.403676476972073, - "c7": -23.089167548733556 + "points": { + "c1": -38.441943237655906, + "c2": -2.2663503958260733, + "c3": -23.641871754077055, + "c4": 2.122246839091197, + "c5": -15.094796364202654, + "c6": 12.913460181085995, + "c7": -18.006929613770154 }, - "vertexSeeds": { - "c1": 8.215579316274983, - "c2": 7.014877638502493, - "c3": 8.261417363734163, - "c4": 7.254663381335976, - "c5": 7.407377944882063, - "c6": 7.587630827510178, - "c7": 8.20390253085768 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381418, + "c3": 10.564031437817844, + "c4": 8.45122515025428, + "c5": 6.338418862690713, + "c6": 4.22561257512714, + "c7": 2.112806287563574 }, "rgb": [77, 76, 132] }, @@ -73473,23 +73473,23 @@ "year": 1722, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -24.61172069342303, - "c2": -16.680202915797906, - "c3": -5.716401864920158, - "c4": 16.513565631526816, - "c5": 17.517146016033095, - "c6": -12.12409841419447, - "c7": 0.8073885472324598 + "points": { + "c1": 28.93999224000551, + "c2": 19.218711843587116, + "c3": -19.30686235963273, + "c4": -18.115296419374012, + "c5": -31.453063840585564, + "c6": -14.653208690508325, + "c7": 17.13630988081053 }, - "vertexSeeds": { - "c1": 2.7840051594038444, - "c2": 2.734065124058815, - "c3": 2.767232156775779, - "c4": 2.827062115670081, - "c5": 2.8829631942522833, - "c6": 2.735170784852601, - "c7": 2.755053795218038 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194173, + "c3": 3.559870550161809, + "c4": 2.8478964401294453, + "c5": 2.1359223300970918, + "c6": 1.4239482200647282, + "c7": 0.7119741100323641 }, "rgb": [238, 201, 159] }, @@ -73500,23 +73500,23 @@ "year": 1722, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 21.22021918723381, - "c2": -6.78270197752834, - "c3": 1.3362106168645411, - "c4": -12.36216013454436, - "c5": 14.649578066866454, - "c6": 4.733950262481898, - "c7": -7.975397725518675 + "points": { + "c1": -31.829227172996955, + "c2": 24.68871852494315, + "c3": 13.137241033000485, + "c4": -27.819625893251136, + "c5": 6.8298211540486875, + "c6": -26.12500419918085, + "c7": 32.32661685717275 }, - "vertexSeeds": { - "c1": 2.7580793671177886, - "c2": 2.790033507363631, - "c3": 2.866351234437803, - "c4": 2.852486957774236, - "c5": 2.683328246093897, - "c6": 2.7604540549292667, - "c7": 2.8935531282260767 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.467406380027744, + "c4": 2.773925104022193, + "c5": 2.0804438280166417, + "c6": 1.3869625520110906, + "c7": 0.6934812760055511 }, "rgb": [86, 146, 138] }, @@ -73527,23 +73527,23 @@ "year": 1723, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -34.24061751781841, - "c2": 19.142036403793306, - "c3": 16.098096929025978, - "c4": 0.3646730574312187, - "c5": -31.634045081288782, - "c6": -3.7188854543228587, - "c7": 25.35917127610587 + "points": { + "c1": 20.13833291444901, + "c2": -35.86783527556405, + "c3": -37.98254473090976, + "c4": 0.6577053632269809, + "c5": -26.01726053589596, + "c6": -1.1467767889161777, + "c7": -37.102161745135916 }, - "vertexSeeds": { - "c1": 5.658862794153876, - "c2": 6.612184247252838, - "c3": 7.365461285140002, - "c4": 6.836386220866001, - "c5": 7.8125584820939, - "c6": 7.1683231714878, - "c7": 6.377313974946226 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.73370319001387, + "c3": 9.778085991678227, + "c4": 7.822468793342581, + "c5": 5.866851595006935, + "c6": 3.9112343966712904, + "c7": 1.9556171983356452 }, "rgb": [77, 76, 132] }, @@ -73554,23 +73554,23 @@ "year": 1723, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -29.113606047155713, - "c2": 15.776739641929872, - "c3": 15.435702216914194, - "c4": 29.58676909135704, - "c5": 25.731295461890483, - "c6": 10.387374096717487, - "c7": -20.174605506305387 + "points": { + "c1": -14.380208610451163, + "c2": -25.025758805649364, + "c3": 25.295451757752218, + "c4": 1.5566798947011762, + "c5": 16.626119715178625, + "c6": 16.200787739331197, + "c7": -26.35774096258178 }, - "vertexSeeds": { - "c1": 6.409407994909345, - "c2": 7.19320380843665, - "c3": 6.183731761917072, - "c4": 6.5368447814631, - "c5": 7.026512925209768, - "c6": 7.22480956203318, - "c7": 7.625061071054902 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.3971336107258425, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [222, 0, 59] }, @@ -73581,23 +73581,23 @@ "year": 1722, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 19.421611544285817, - "c2": -9.827344888142251, - "c3": -16.237416078209897, - "c4": -16.037640504777798, - "c5": 11.45799065966947, - "c6": 15.321431385310575, - "c7": -11.311846170720685 + "points": { + "c1": 18.375545009888114, + "c2": -6.348411846470775, + "c3": -18.73042634067113, + "c4": -23.748906772183368, + "c5": 6.733932090373884, + "c6": 26.805188740400546, + "c7": 3.4034150200132878 }, - "vertexSeeds": { - "c1": 5.398486005961824, - "c2": 5.222136731626163, - "c3": 5.430543829556377, - "c4": 5.604695299507502, - "c5": 5.521824762529931, - "c6": 5.544241673744222, - "c7": 5.505671592315641 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664344, + "c3": 6.703652334720299, + "c4": 5.3629218677762305, + "c5": 4.022191400832185, + "c6": 2.6814609338881152, + "c7": 1.3407304669440696 }, "rgb": [77, 76, 132] }, @@ -73608,23 +73608,23 @@ "year": 1723, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 23.16541481621553, - "c2": -34.31317860725833, - "c3": 23.78496912170229, - "c4": -0.5992053273073381, - "c5": 22.896952169182768, - "c6": 36.01791031606888, - "c7": -11.62152325448087 + "points": { + "c1": -28.27768707950583, + "c2": -16.97470594065602, + "c3": 29.22350864125879, + "c4": -15.47404836056819, + "c5": 22.34775987179721, + "c6": 20.748685061811784, + "c7": 31.967144440476815 }, - "vertexSeeds": { - "c1": 12.181938617090394, - "c2": 12.356656147035972, - "c3": 12.324972703816067, - "c4": 11.848487144678792, - "c5": 11.69593092016761, - "c6": 12.331092438269225, - "c7": 12.413377383062679 + "offsets": { + "c1": 20.841423948220065, + "c2": 17.864077669902922, + "c3": 14.886731391585775, + "c4": 11.90938511326863, + "c5": 8.932038834951486, + "c6": 5.95469255663429, + "c7": 2.977346278317145 }, "rgb": [77, 76, 132] }, @@ -73635,23 +73635,23 @@ "year": 1723, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -8.973295528896248, - "c2": 0.9103063798547097, - "c3": -25.110682415347313, - "c4": 2.3148155905108467, - "c5": -8.320589702630524, - "c6": -0.14980950080579447, - "c7": 10.888316790431048 + "points": { + "c1": -12.975319548450798, + "c2": -15.934749488438118, + "c3": 16.73131987474261, + "c4": -3.481252530677203, + "c5": -9.158755843408834, + "c6": 6.84415390210345, + "c7": 19.470317140183106 }, - "vertexSeeds": { - "c1": 11.704314576015054, - "c2": 11.482224756576676, - "c3": 11.335347643460276, - "c4": 11.74714793830249, - "c5": 11.12038229794771, - "c6": 11.507070306367204, - "c7": 11.325226440839998 + "offsets": { + "c1": 19.80582524271845, + "c2": 16.9764216366158, + "c3": 14.147018030513195, + "c4": 11.317614424410548, + "c5": 8.4882108183079, + "c6": 5.658807212205295, + "c7": 2.8294036061026473 }, "rgb": [222, 0, 59] }, @@ -73662,23 +73662,23 @@ "year": 1723, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 10.7118137013363, - "c2": -23.0876959654277, - "c3": -5.933468759856179, - "c4": 22.26075031322591, - "c5": -18.49734756158216, - "c6": 25.55047832159737, - "c7": 7.81686690370962 + "points": { + "c1": 4.988001570382536, + "c2": -24.043093388281534, + "c3": 29.504081314960636, + "c4": 13.338254462288852, + "c5": -32.04959447377905, + "c6": 7.775648461827437, + "c7": -1.2715125984990188 }, - "vertexSeeds": { - "c1": 6.24655013459219, - "c2": 6.268372714737924, - "c3": 6.137310637326521, - "c4": 6.647896421869425, - "c5": 5.782933408376438, - "c6": 6.690127074677746, - "c7": 6.004950378417532 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.9981507165973165, + "c4": 6.3985205732778585, + "c5": 4.798890429958387, + "c6": 3.1992602866389293, + "c7": 1.599630143319471 }, "rgb": [77, 76, 132] }, @@ -73689,23 +73689,23 @@ "year": 1723, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -10.920513475809216, - "c2": -16.880705316278977, - "c3": -31.797560652893537, - "c4": 7.465608514436028, - "c5": 6.270528311469619, - "c6": -26.223711568839164, - "c7": -27.844688406519012 + "points": { + "c1": 32.35004590498947, + "c2": 16.43146574391222, + "c3": 5.098547291238106, + "c4": 23.878787348043318, + "c5": 31.628056306918324, + "c6": -12.420759285880806, + "c7": -29.550944976213472 }, - "vertexSeeds": { - "c1": 3.864666797785182, - "c2": 3.8403326750684097, - "c3": 3.818136428780475, - "c4": 3.8577578478966976, - "c5": 3.8647680690001462, - "c6": 3.843510691833576, - "c7": 3.8309950895243507 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044409, + "c3": 4.6232085067036435, + "c4": 3.6985668053629395, + "c5": 2.7739251040221737, + "c6": 1.8492834026814697, + "c7": 0.9246417013407041 }, "rgb": [77, 76, 132] }, @@ -73716,23 +73716,23 @@ "year": 1723, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -23.904873573307672, - "c2": 1.3437687170254478, - "c3": 25.1543457254382, - "c4": 12.779223921081613, - "c5": 7.416369115880951, - "c6": -23.380451952985187, - "c7": 7.408659059409917 + "points": { + "c1": -8.954447521826626, + "c2": -20.676655786286375, + "c3": 10.728344446995404, + "c4": 11.064962589284665, + "c5": 19.24270620241101, + "c6": 17.366283313905466, + "c7": 11.077205718037892 }, - "vertexSeeds": { - "c1": 4.843087397404281, - "c2": 5.559816275264485, - "c3": 5.68800020285742, - "c4": 5.643070011060372, - "c5": 5.669318354921391, - "c6": 4.8379077119216864, - "c7": 5.616542544733419 + "offsets": { + "c1": 10, + "c2": 8.571428571428571, + "c3": 7.142857142857143, + "c4": 5.7142857142857135, + "c5": 4.285714285714286, + "c6": 2.8571428571428568, + "c7": 1.4285714285714284 }, "rgb": [86, 146, 138] }, @@ -73743,23 +73743,23 @@ "year": 1723, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -34.17592172946389, - "c2": -28.031698481715072, - "c3": -35.00782449493445, - "c4": 40.49131516797242, - "c5": -0.5100384068360029, - "c6": 17.5858078757523, - "c7": -14.533400604255366 + "points": { + "c1": -2.514846284137249, + "c2": 10.537205658784032, + "c3": 3.135990408715209, + "c4": 10.807738252966026, + "c5": -42.029729641323115, + "c6": -19.47269553265119, + "c7": 32.760732164058155 }, - "vertexSeeds": { - "c1": 4.579457936751197, - "c2": 4.65246918486385, - "c3": 4.716983031551625, - "c4": 4.482183935640546, - "c5": 4.487845689633921, - "c6": 4.799754636481772, - "c7": 4.633288016988969 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -73770,23 +73770,23 @@ "year": 1723, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 13.178831247184846, - "c2": -5.292363573607645, - "c3": -38.00422714643721, - "c4": 36.97875365876979, - "c5": -41.3448900779624, - "c6": 4.5582129117251355, - "c7": -21.670374861016597 + "points": { + "c1": -17.43249670474206, + "c2": 36.48387597992898, + "c3": -16.574925249263615, + "c4": -16.470711787252167, + "c5": -14.734685817662026, + "c6": -19.43623690778708, + "c7": 20.607621643450074 }, - "vertexSeeds": { - "c1": 3.99341779421584, - "c2": 4.465361430265231, - "c3": 4.391802054387293, - "c4": 4.359400662032869, - "c5": 3.8914835760681137, - "c6": 3.98642927904065, - "c7": 4.455900875615657 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -73797,23 +73797,23 @@ "year": 1723, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 4.205839612884251, - "c2": 7.442596056858953, - "c3": 21.84671110876107, - "c4": -20.1764478107892, - "c5": -23.151844596609358, - "c6": -23.476679422054566, - "c7": -21.790591535427613 + "points": { + "c1": 15.18567050873137, + "c2": 15.581223835236152, + "c3": -5.484391132005875, + "c4": 1.7727812106367296, + "c5": 8.603345706898779, + "c6": -20.70089382935446, + "c7": -9.38945371494999 }, - "vertexSeeds": { - "c1": 5.789909475799658, - "c2": 5.9993280133255285, - "c3": 6.30187502797576, - "c4": 5.58956881927088, - "c5": 5.250986563812806, - "c6": 5.420863127288634, - "c7": 6.044769766907869 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077674, + "c3": 8.090614886731391, + "c4": 6.472491909385116, + "c5": 4.854368932038833, + "c6": 3.236245954692558, + "c7": 1.618122977346283 }, "rgb": [238, 201, 159] }, @@ -73824,23 +73824,23 @@ "year": 1723, "resistanceReported": false, "duration": 44323200, - "curveSeeds": { - "c1": 22.581333399677945, - "c2": -8.694454790776312, - "c3": -34.87402537225911, - "c4": 8.544552444418429, - "c5": -32.51400816246832, - "c6": -57.43244796283796, - "c7": 35.83820783934556 + "points": { + "c1": 56.11421498402174, + "c2": 56.44341509206157, + "c3": -50.57261574394365, + "c4": 8.928843604945982, + "c5": -52.38315606415748, + "c6": -21.335682076033038, + "c7": 42.77716201641256 }, - "vertexSeeds": { - "c1": 7.108458147849967, - "c2": 6.985949510840621, - "c3": 7.179356509578868, - "c4": 7.127316344941085, - "c5": 7.074416268770041, - "c6": 7.309524450244211, - "c7": 6.916837581233882 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445217, + "c3": 8.876560332871017, + "c4": 7.1012482662968, + "c5": 5.3259361997226, + "c6": 3.5506241331484, + "c7": 1.7753120665742 }, "rgb": [86, 146, 138] }, @@ -73851,23 +73851,23 @@ "year": 1723, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -16.77582019324964, - "c2": 13.549721649879995, - "c3": 7.499222375009463, - "c4": -13.599045647840981, - "c5": 3.6149944033847596, - "c6": -24.786181820914404, - "c7": 3.7278890988152504 + "points": { + "c1": -12.150502042749558, + "c2": -25.572433455982345, + "c3": 0.8583267844527498, + "c4": -15.248536044541439, + "c5": -19.23971540868725, + "c6": -9.728052678210283, + "c7": -16.58025700927191 }, - "vertexSeeds": { - "c1": 3.327472285808211, - "c2": 2.9833443608080277, - "c3": 3.1185046963326193, - "c4": 3.0223397493338156, - "c5": 3.1683327806109127, - "c6": 3.1188592963310473, - "c7": 2.861767532336858 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.8821081830790565, + "c3": 4.0684234858992125, + "c4": 3.2547387887193695, + "c5": 2.4410540915395256, + "c6": 1.6273693943596874, + "c7": 0.8136846971798437 }, "rgb": [222, 0, 59] }, @@ -73878,23 +73878,23 @@ "year": 1723, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 11.156315987706073, - "c2": -14.969393152732216, - "c3": -4.0284904197266975, - "c4": -12.254237733774264, - "c5": -17.892629143028355, - "c6": -21.66471451212898, - "c7": 16.578433087883482 + "points": { + "c1": -19.091664794976467, + "c2": -8.061359328156392, + "c3": -17.81835044134108, + "c4": -22.935332643318134, + "c5": -7.345406842701195, + "c6": -16.143777495636876, + "c7": 22.7143258446636 }, - "vertexSeeds": { - "c1": 3.761532023172559, - "c2": 3.3199121236645737, - "c3": 3.578787570762851, - "c4": 3.5612572462642267, - "c5": 3.7900689101507385, - "c6": 3.5802581684068215, - "c7": 3.322075533047762 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105873, + "c4": 3.9204808136846996, + "c5": 2.9403606102635207, + "c6": 1.9602404068423473, + "c7": 0.9801202034211737 }, "rgb": [222, 0, 59] }, @@ -73905,23 +73905,23 @@ "year": 1723, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 23.08091467240068, - "c2": 14.515795482120573, - "c3": -3.2459031238695815, - "c4": -9.227531308299746, - "c5": -4.732117397209105, - "c6": -6.8810087558258, - "c7": -31.821066376565323 + "points": { + "c1": -23.55423068034514, + "c2": -17.01521473545299, + "c3": -13.725003122466497, + "c4": -0.8928891456055652, + "c5": 26.220699439979548, + "c6": -33.06644234225073, + "c7": -8.649927421591446 }, - "vertexSeeds": { - "c1": 6.267889357186997, - "c2": 6.183982899246561, - "c3": 6.447944342225548, - "c4": 6.274850136909381, - "c5": 6.143272344517629, - "c6": 6.515427550522475, - "c7": 6.0969394654884 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.43134535367546, + "c3": 7.859454461396205, + "c4": 6.2875635691169744, + "c5": 4.715672676837719, + "c6": 3.1437817845584872, + "c7": 1.5718908922792552 }, "rgb": [238, 201, 159] }, @@ -73932,23 +73932,23 @@ "year": 1723, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 24.559035881553648, - "c2": 7.996335209457506, - "c3": -14.146200346814283, - "c4": -4.688900232130848, - "c5": 33.0050990880318, - "c6": 31.22774155957886, - "c7": -27.034818743585134 + "points": { + "c1": -27.876491869481686, + "c2": 31.09142149656725, + "c3": -0.9460247690263017, + "c4": 3.24744232043669, + "c5": 26.386670557024587, + "c6": 19.11721630971018, + "c7": 13.154117094405969 }, - "vertexSeeds": { - "c1": 2.6538122189569497, - "c2": 2.554140830724566, - "c3": 2.64972600848552, - "c4": 2.681143225519837, - "c5": 2.6143429081294856, - "c6": 2.5721824189486133, - "c7": 2.674429854385612 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712864, + "c3": 3.2593619972260757, + "c4": 2.6074895977808574, + "c5": 1.9556171983356472, + "c6": 1.3037447988904287, + "c7": 0.6518723994452144 }, "rgb": [77, 76, 132] }, @@ -73959,23 +73959,23 @@ "year": 1723, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 28.61057878085178, - "c2": -19.754289656137814, - "c3": 35.275284381546044, - "c4": 24.87283404478908, - "c5": 3.7668065873492935, - "c6": -2.7143846997564083, - "c7": 26.75875584581511 + "points": { + "c1": -28.484450962696428, + "c2": -8.316752525206397, + "c3": 31.016538907054212, + "c4": 13.761034151108419, + "c5": 2.0234072201266926, + "c6": 27.103173163755088, + "c7": 12.187243651130018 }, - "vertexSeeds": { - "c1": 2.099735079677522, - "c2": 2.2092601831245355, - "c3": 2.226996186700984, - "c4": 2.0711451865555577, - "c5": 2.239682364428579, - "c6": 2.036823062440725, - "c7": 2.1663490106124987 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.2454923717059656, + "c3": 2.7045769764216363, + "c4": 2.1636615811373106, + "c5": 1.6227461858529808, + "c6": 1.0818307905686553, + "c7": 0.5409153952843295 }, "rgb": [86, 146, 138] }, @@ -73986,23 +73986,23 @@ "year": 1723, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -16.015622835386957, - "c2": 9.685746372965468, - "c3": 29.06131153363941, - "c4": -19.665444089305417, - "c5": -7.403934933715643, - "c6": 12.215342095021555, - "c7": -7.408718930681616 + "points": { + "c1": 7.036099415066346, + "c2": 6.223350168220058, + "c3": -22.25020482631337, + "c4": 24.2924831538714, + "c5": 2.3028140564748796, + "c6": 22.530933073993914, + "c7": 28.79808609649428 }, - "vertexSeeds": { - "c1": 3.9109832284287966, - "c2": 4.173995050875232, - "c3": 3.9292078291212897, - "c4": 3.953616203946849, - "c5": 4.227054850793202, - "c6": 4.156742013713121, - "c7": 4.218058150738866 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [222, 0, 59] }, @@ -74013,23 +74013,23 @@ "year": 1723, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 10.384981746866416, - "c2": -33.99070483766928, - "c3": 1.9273624069146678, - "c4": 26.530048187581635, - "c5": -27.702195339421102, - "c6": 1.0115690120163308, - "c7": -2.5992854115888093 + "points": { + "c1": 29.74844505929103, + "c2": -13.936499375280196, + "c3": -19.7801859651124, + "c4": -16.229877160089927, + "c5": -18.023752685857698, + "c6": -21.528525499520093, + "c7": 8.942825996192298 }, - "vertexSeeds": { - "c1": 4.073906403580737, - "c2": 4.790013434329551, - "c3": 4.526953704448306, - "c4": 4.221344881780621, - "c5": 4.29444238385761, - "c6": 5.206330863516699, - "c7": 4.759477823824667 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342579, + "c3": 6.51872399445215, + "c4": 5.214979195561719, + "c5": 3.9112343966712895, + "c6": 2.6074895977808596, + "c7": 1.3037447988904298 }, "rgb": [58, 15, 49] }, @@ -74040,23 +74040,23 @@ "year": 1723, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -5.7116535471471295, - "c2": 6.651458896226245, - "c3": 21.486435983248462, - "c4": 18.262642028850472, - "c5": 25.570380381678035, - "c6": 20.920844872904865, - "c7": -23.335613921246786 + "points": { + "c1": 34.19702513346128, + "c2": 21.129351849699646, + "c3": 0.9357716895633672, + "c4": 10.047652662326804, + "c5": -3.640733031169205, + "c6": 8.394279605883568, + "c7": -10.787722680075227 }, - "vertexSeeds": { - "c1": 3.8560448977720827, - "c2": 4.046666105657907, - "c3": 4.5115491207812255, - "c4": 4.316914690206003, - "c5": 3.9509321254104846, - "c6": 3.816739444386643, - "c7": 3.7989958468362657 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -74067,23 +74067,23 @@ "year": 1723, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -6.890786017485443, - "c2": 21.60110070573112, - "c3": -29.780958604286067, - "c4": -6.370491340488034, - "c5": -16.30150888134653, - "c6": 2.427237692659645, - "c7": -3.519495269271978 + "points": { + "c1": -35.167261015998406, + "c2": 0.2848089456541061, + "c3": 36.89257107405935, + "c4": -33.008352832660854, + "c5": -14.572913756556318, + "c6": -22.13838375503377, + "c7": -4.162588447833052 }, - "vertexSeeds": { - "c1": 1.5062433113271934, - "c2": 1.496301314330637, - "c3": 1.5301390739884562, - "c4": 1.5121217258832085, - "c5": 1.5211397834605618, - "c6": 1.5052349777928193, - "c7": 1.5203614140536972 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177455, + "c3": 1.8492834026814637, + "c4": 1.4794267221451636, + "c5": 1.109570041608882, + "c6": 0.7397133610725818, + "c7": 0.3698566805363001 }, "rgb": [238, 201, 159] }, @@ -74094,23 +74094,23 @@ "year": 1723, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -12.545738478348582, - "c2": -23.517567928791685, - "c3": -3.18126075995821, - "c4": -5.162880938459928, - "c5": 7.06458816120772, - "c6": -1.257975321537426, - "c7": -2.9531868966543406 + "points": { + "c1": -8.470465467402732, + "c2": -6.909742425049426, + "c3": 14.899324081608345, + "c4": 3.6555096009706283, + "c5": -24.320289403674504, + "c6": 13.652089365876886, + "c7": 24.046235319638914 }, - "vertexSeeds": { - "c1": 3.86199365639926, - "c2": 3.9298546604501774, - "c3": 3.585477513132301, - "c4": 3.7032744978385517, - "c5": 4.129510380045263, - "c6": 3.7550301346794708, - "c7": 4.024685388929584 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.2011095700416075, + "c4": 4.160887656033288, + "c5": 3.1206657420249635, + "c6": 2.080443828016644, + "c7": 1.0402219140083242 }, "rgb": [238, 201, 159] }, @@ -74121,23 +74121,23 @@ "year": 1724, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -49.46988543168268, - "c2": 52.64704238751972, - "c3": -8.828653406641713, - "c4": 44.28136418613579, - "c5": 8.870601916747596, - "c6": -15.5758771294104, - "c7": 11.713178292041448 + "points": { + "c1": -15.699219231382976, + "c2": 49.92285322722309, + "c3": 42.5842245468874, + "c4": -37.77239876850443, + "c5": 40.78234678817786, + "c6": -22.378912723441935, + "c7": -13.21200418186529 }, - "vertexSeeds": { - "c1": 11.171213092617167, - "c2": 12.036529142548646, - "c3": 11.273113092862147, - "c4": 10.902591383640408, - "c5": 11.836106076328027, - "c6": 11.189874569428149, - "c7": 10.975492973633179 + "offsets": { + "c1": 20.323624595469255, + "c2": 17.42024965325936, + "c3": 14.516874711049468, + "c4": 11.613499768839574, + "c5": 8.71012482662968, + "c6": 5.806749884419787, + "c7": 2.9033749422098936 }, "rgb": [77, 76, 132] }, @@ -74148,23 +74148,23 @@ "year": 1723, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 2.495042286857629, - "c2": 21.46303486312004, - "c3": -24.61775917207476, - "c4": 2.5487082000546657, - "c5": 22.238379034168556, - "c6": -27.405247662158335, - "c7": 4.540908039049686 + "points": { + "c1": -7.373648601179529, + "c2": 29.567434147957446, + "c3": -12.176588520241008, + "c4": -24.846703305998332, + "c5": -9.086469536301419, + "c6": -24.097711392940386, + "c7": -24.28228695240359 }, - "vertexSeeds": { - "c1": 5.6438960947934635, - "c2": 5.734975855018229, - "c3": 5.61773935692222, - "c4": 5.701667432824502, - "c5": 6.190087241536315, - "c6": 5.8744831574296565, - "c7": 5.96573238480861 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072125, + "c3": 7.512713823393428, + "c4": 6.010171058714745, + "c5": 4.507628294036063, + "c6": 3.005085529357381, + "c7": 1.5025427646786822 }, "rgb": [58, 15, 49] }, @@ -74175,23 +74175,23 @@ "year": 1723, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -9.34401688914716, - "c2": 22.393596390997352, - "c3": 24.659647235101808, - "c4": 18.20591153447851, - "c5": -1.6803666397071275, - "c6": -20.53291188129853, - "c7": -20.29276568061615 + "points": { + "c1": 20.52202156564993, + "c2": -15.93727690188695, + "c3": -25.17472881119275, + "c4": 17.521969192724683, + "c5": -19.225217595135135, + "c6": 24.067023929319923, + "c7": 15.281237462118362 }, - "vertexSeeds": { - "c1": 5.798017144204441, - "c2": 5.807891685648996, - "c3": 5.8015323961697165, - "c4": 5.801122758956801, - "c5": 5.797281514669348, - "c6": 5.798496896492259, - "c7": 5.80405505177874 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066338, + "c3": 6.934812760055557, + "c4": 5.547850208044225, + "c5": 4.160887656033444, + "c6": 2.7739251040221125, + "c7": 1.386962552011332 }, "rgb": [222, 0, 59] }, @@ -74202,23 +74202,23 @@ "year": 1723, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 22.48784522268972, - "c2": 16.053715119144506, - "c3": -26.51976195389887, - "c4": -6.305349579568848, - "c5": -25.907946539658173, - "c6": 19.115551558793122, - "c7": 21.46999140695968 + "points": { + "c1": -29.781609949565095, + "c2": -23.42096203874556, + "c3": 24.543822767337765, + "c4": -30.11610305703017, + "c5": 25.548597049195124, + "c6": 8.88169045607389, + "c7": 15.749745155090118 }, - "vertexSeeds": { - "c1": 7.599757199828073, - "c2": 7.1090795816253705, - "c3": 7.620573003560893, - "c4": 7.72382863828865, - "c5": 7.749769277869354, - "c6": 7.370248446968462, - "c7": 7.097690151901241 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088775, + "c3": 9.246417013407301, + "c4": 7.39713361072585, + "c5": 5.547850208044376, + "c6": 3.698566805362925, + "c7": 1.8492834026814733 }, "rgb": [77, 76, 132] }, @@ -74229,23 +74229,23 @@ "year": 1723, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -27.897571205999185, - "c2": 12.4988744846159, - "c3": 28.572040495337585, - "c4": 19.023367858099174, - "c5": -11.364656417541582, - "c6": 9.93726804210883, - "c7": 0.6855743959288709 + "points": { + "c1": -30.478617696227026, + "c2": 1.4797516239703263, + "c3": -29.057233234134202, + "c4": 4.015975540758202, + "c5": -6.050049463038789, + "c6": -1.3604213501321638, + "c7": -8.454293788026924 }, - "vertexSeeds": { - "c1": 5.784063217410024, - "c2": 5.762981631156825, - "c3": 5.783600945262809, - "c4": 5.745635081037066, - "c5": 5.79419060133507, - "c6": 5.672233049155867, - "c7": 5.808404902243371 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066565, + "c3": 6.934812760055492, + "c4": 5.547850208044387, + "c5": 4.160887656033283, + "c6": 2.773925104022177, + "c7": 1.3869625520111049 }, "rgb": [86, 146, 138] }, @@ -74256,23 +74256,23 @@ "year": 1723, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 15.996223325687264, - "c2": -0.24483867508240564, - "c3": -21.03088788833563, - "c4": -19.172380134003358, - "c5": 21.934851721383307, - "c6": 21.624985707941274, - "c7": 9.96937327253276 + "points": { + "c1": 24.524741687272204, + "c2": 6.256447929007486, + "c3": 22.654355880149893, + "c4": -3.8129299511086288, + "c5": 18.28579288216995, + "c6": 15.310433030521004, + "c7": 10.48791095284897 }, - "vertexSeeds": { - "c1": 4.8672390686459375, - "c2": 5.405182285746289, - "c3": 5.218563899920761, - "c4": 4.933594452800393, - "c5": 5.342999964745255, - "c6": 4.6944164008610265, - "c7": 4.749918225542205 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [58, 15, 49] }, @@ -74283,23 +74283,23 @@ "year": 1723, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 15.361751886960231, - "c2": 10.164719342255598, - "c3": 2.384650486550491, - "c4": -24.371786312265968, - "c5": -5.085501962339016, - "c6": -20.327621686526793, - "c7": -17.518288471563285 + "points": { + "c1": -5.974970352833068, + "c2": -4.67181642017697, + "c3": -18.735010978133992, + "c4": 24.792949392778485, + "c5": -15.230783019611556, + "c6": 11.269411735399682, + "c7": 16.4181967729884 }, - "vertexSeeds": { - "c1": 2.8896852003360403, - "c2": 2.902988900135945, - "c3": 2.9214049802142856, - "c4": 2.9542423728698464, - "c5": 2.9226730836141073, - "c6": 2.9214728436929494, - "c7": 3.0129643763651988 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355068, + "c3": 3.6523347202958787, + "c4": 2.921867776236706, + "c5": 2.191400832177534, + "c6": 1.4609338881183611, + "c7": 0.7304669440591725 }, "rgb": [58, 15, 49] }, @@ -74310,23 +74310,23 @@ "year": 1723, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -10.226699592048888, - "c2": -9.432729291656546, - "c3": -1.3449971907989315, - "c4": -14.718417611401083, - "c5": 1.2785931441669085, - "c6": -21.3259822757219, - "c7": 15.955948228539636 + "points": { + "c1": -22.655355488223524, + "c2": 9.186954035446352, + "c3": 5.34361229227169, + "c4": 7.408678857535573, + "c5": -20.064311273939666, + "c6": 21.409710906499814, + "c7": -7.278165482228591 }, - "vertexSeeds": { - "c1": 5.778208735050702, - "c2": 5.229159546708999, - "c3": 5.605486960707871, - "c4": 5.091053285836553, - "c5": 5.278029519026231, - "c6": 5.902331530657249, - "c7": 5.865531773296429 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [222, 0, 59] }, @@ -74337,23 +74337,23 @@ "year": 1723, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 4.690800220943295, - "c2": -4.955553973208332, - "c3": -28.90877996011271, - "c4": -18.533149018743135, - "c5": -4.6716328034511605, - "c6": 7.568052022174179, - "c7": -38.72366534261664 + "points": { + "c1": -35.58496550466381, + "c2": -37.7319155498523, + "c3": 17.676582142622422, + "c4": 24.653558526030587, + "c5": 8.91577434899316, + "c6": -4.013404400609666, + "c7": 10.426646169338277 }, - "vertexSeeds": { - "c1": 1.908315494621875, - "c2": 1.8622894972156825, - "c3": 1.8272737912963626, - "c4": 1.8622095922837885, - "c5": 1.9105989880521033, - "c6": 1.895275568573976, - "c7": 1.9097192234473541 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022195, + "c3": 2.3116042533518244, + "c4": 1.8492834026814635, + "c5": 1.386962552011093, + "c6": 0.9246417013407318, + "c7": 0.4623208506703612 }, "rgb": [86, 146, 138] }, @@ -74364,23 +74364,23 @@ "year": 1722, "resistanceReported": false, "duration": 3628800, - "curveSeeds": { - "c1": -12.752874249306114, - "c2": 13.478079244548361, - "c3": -1.011006154128932, - "c4": -0.6189832930606531, - "c5": 12.856238020475871, - "c6": -1.7362021059763588, - "c7": -13.486596912838273 + "points": { + "c1": 14.284282696655087, + "c2": 6.2063180139719805, + "c3": -9.089077586378632, + "c4": -13.680802100740607, + "c5": 15.764407855995614, + "c6": 5.581368837728096, + "c7": -6.510524642329528 }, - "vertexSeeds": { - "c1": 6.508247602422891, - "c2": 6.4012296819357815, - "c3": 6.41738234333434, - "c4": 6.78031709635523, - "c5": 6.313588194435746, - "c6": 6.893627758084458, - "c7": 7.094584634339948 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882114, + "c3": 8.552935737401754, + "c4": 6.842348589921409, + "c5": 5.13176144244105, + "c6": 3.4211742949607045, + "c7": 1.7105871474803456 }, "rgb": [238, 201, 159] }, @@ -74391,23 +74391,23 @@ "year": 1723, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": -43.82328667931599, - "c2": -18.43538561999706, - "c3": 20.24955050948588, - "c4": -11.354510500622126, - "c5": -47.54046133243126, - "c6": 36.15779293615288, - "c7": -48.99799094932038 + "points": { + "c1": -8.383457333716315, + "c2": -7.848546033048642, + "c3": -20.68918904299472, + "c4": 42.33171628254413, + "c5": 9.476833992552812, + "c6": 22.436559691635914, + "c7": -39.8503394960098 }, - "vertexSeeds": { - "c1": 14.838868098535169, - "c2": 14.832477398285231, - "c3": 14.736917556934557, - "c4": 15.086771639789035, - "c5": 14.971162842481462, - "c6": 14.917849247198971, - "c7": 14.577433525416733 + "offsets": { + "c1": 25.177993527508093, + "c2": 21.581137309292664, + "c3": 17.984281091077236, + "c4": 14.387424872861716, + "c5": 10.790568654646288, + "c6": 7.193712436430858, + "c7": 3.596856218215429 }, "rgb": [222, 0, 59] }, @@ -74418,23 +74418,23 @@ "year": 1723, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": -7.071880984160893, - "c2": -0.7484832493350293, - "c3": 9.30486156500313, - "c4": -2.039859024028658, - "c5": -4.784804660053172, - "c6": 12.749580838585217, - "c7": 1.6800731086429899 + "points": { + "c1": 17.966864171479894, + "c2": 3.7683096226548294, + "c3": -7.413278187214745, + "c4": -4.544341942269412, + "c5": 13.607214526304947, + "c6": 15.982745438497613, + "c7": 1.9055336069433295 }, - "vertexSeeds": { - "c1": 4.819035260272272, - "c2": 4.961725719291272, - "c3": 4.464207664422044, - "c4": 4.772150306538052, - "c5": 5.164941476182204, - "c6": 4.67786241557034, - "c7": 5.135601136748535 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940363, + "c3": 6.28756356911697, + "c4": 5.030050855293573, + "c5": 3.7725381414701813, + "c6": 2.515025427646784, + "c7": 1.257512713823392 }, "rgb": [58, 15, 49] }, @@ -74445,23 +74445,23 @@ "year": 1723, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -22.08500340363977, - "c2": -25.75620791130797, - "c3": 20.989033041160116, - "c4": -15.319624611505297, - "c5": -1.7058715798289192, - "c6": 19.124914746907404, - "c7": -13.497773936719035 + "points": { + "c1": -24.22739290966017, + "c2": 24.23198853605533, + "c3": -10.932310864489498, + "c4": -4.294447774364375, + "c5": -14.75700820254393, + "c6": -5.4461209053389545, + "c7": -4.036600020831347 }, - "vertexSeeds": { - "c1": 4.070068300194036, - "c2": 4.25722259767495, - "c3": 4.6125188187049115, - "c4": 4.314924866584434, - "c5": 6.164222736379045, - "c6": 4.066086461842451, - "c7": 4.815932443070345 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.40360610263523, + "c3": 7.8363384188626934, + "c4": 6.269070735090156, + "c5": 4.701803051317613, + "c6": 3.1345353675450767, + "c7": 1.5672676837725394 }, "rgb": [222, 0, 59] }, @@ -74472,23 +74472,23 @@ "year": 1723, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -6.555840914353464, - "c2": -2.5011373316442747, - "c3": -10.390982080803761, - "c4": 12.196246033037408, - "c5": 10.673280643703869, - "c6": -6.983925787887557, - "c7": 10.144901659035241 + "points": { + "c1": 13.32427017436785, + "c2": -16.609246373634925, + "c3": -15.417245683686827, + "c4": -15.02714394193529, + "c5": 9.315575637917807, + "c6": 11.085658828967965, + "c7": -6.21698709096218 }, - "vertexSeeds": { - "c1": 4.7453095573030915, - "c2": 4.885013410290146, - "c3": 4.642658825359632, - "c4": 5.108562734303852, - "c5": 5.261113139674567, - "c6": 5.050836779317431, - "c7": 5.204320702102887 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940363, + "c3": 6.28756356911697, + "c4": 5.030050855293573, + "c5": 3.7725381414701813, + "c6": 2.515025427646784, + "c7": 1.257512713823392 }, "rgb": [222, 0, 59] }, @@ -74499,23 +74499,23 @@ "year": 1723, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -25.92118520490017, - "c2": -36.84287309642579, - "c3": 19.607371091959806, - "c4": -26.917095719023084, - "c5": -16.47027836372066, - "c6": 17.49984181212095, - "c7": -17.1821687787273 + "points": { + "c1": 20.8666997860691, + "c2": -19.10055550235786, + "c3": -5.387722120874713, + "c4": 21.866568769555833, + "c5": -1.7586299600023807, + "c6": 5.739868622606714, + "c7": -21.031690020368803 }, - "vertexSeeds": { - "c1": 1.204663212435233, - "c2": 1.204663212435233, - "c3": 1.204663212435233, - "c4": 1.204663212435233, - "c5": 1.204663212435233, - "c6": 1.204663212435233, - "c7": 1.204663212435233 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -74526,23 +74526,23 @@ "year": 1723, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -22.87629725210529, - "c2": -43.78929589464456, - "c3": -29.788023970618106, - "c4": -23.465542759423876, - "c5": -31.044104348143172, - "c6": 17.66186178701045, - "c7": -31.01971178734273 + "points": { + "c1": -10.21812561333303, + "c2": 7.945776808876275, + "c3": -2.332235061244184, + "c4": -25.57550171629936, + "c5": 34.82566494177249, + "c6": 17.966659468407443, + "c7": 12.875507536494226 }, - "vertexSeeds": { - "c1": 7.150756971520257, - "c2": 7.534861006944016, - "c3": 7.133315439273915, - "c4": 7.6337880217412195, - "c5": 7.678888808056042, - "c6": 7.535158218521284, - "c7": 7.557472616226658 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968099, + "c3": 9.177068885806744, + "c4": 7.3416551086453925, + "c5": 5.5062413314840395, + "c6": 3.670827554322688, + "c7": 1.8354137771613348 }, "rgb": [58, 15, 49] }, @@ -74553,23 +74553,23 @@ "year": 1723, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -26.349087090998857, - "c2": -32.51379305714703, - "c3": 31.979965021033934, - "c4": 29.29876802630291, - "c5": -10.8394306170811, - "c6": 24.71903040219273, - "c7": 1.9161656882108318 + "points": { + "c1": 12.645612638134772, + "c2": -1.9174016360155193, + "c3": -29.228257298129392, + "c4": 3.157891688619813, + "c5": -10.631494677388005, + "c6": -14.387015405947476, + "c7": 7.87713081142001 }, - "vertexSeeds": { - "c1": 3.6732782523180476, - "c2": 3.456166294007989, - "c3": 3.630218266689445, - "c4": 3.77511803693362, - "c5": 3.5644927831105964, - "c6": 3.607200968522489, - "c7": 3.688410163867209 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.6865464632454925, + "c3": 4.738788719371242, + "c4": 3.7910309754969975, + "c5": 2.843273231622748, + "c6": 1.8955154877484988, + "c7": 0.9477577438742494 }, "rgb": [58, 15, 49] }, @@ -74580,23 +74580,23 @@ "year": 1723, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 6.038694326098245, - "c2": 16.13448790127329, - "c3": -6.037263977780505, - "c4": 31.944199314355856, - "c5": -11.626288077936735, - "c6": -8.078905337661134, - "c7": 0.7222465492255594 + "points": { + "c1": 7.82820209032721, + "c2": 27.75115876896914, + "c3": 4.654914937474146, + "c4": -15.65370433235783, + "c5": 20.767127269171326, + "c6": -24.614862810591234, + "c7": -11.23306789378158 }, - "vertexSeeds": { - "c1": 5.723930286795111, - "c2": 5.84424423015016, - "c3": 5.965575807031657, - "c4": 6.142728289581652, - "c5": 5.736045285293576, - "c6": 5.627109821297617, - "c7": 6.021833819205633 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830781, + "c3": 7.374017568192327, + "c4": 5.899214054553854, + "c5": 4.424410540915401, + "c6": 2.949607027276927, + "c7": 1.4748035136384738 }, "rgb": [86, 146, 138] }, @@ -74607,23 +74607,23 @@ "year": 1723, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 34.156527758054004, - "c2": -10.465146455633217, - "c3": 42.911552466016936, - "c4": -20.59406412555017, - "c5": -2.1702652573577907, - "c6": 1.1000526612329509, - "c7": -33.10815020513024 + "points": { + "c1": -40.66641063498788, + "c2": 36.20211865807338, + "c3": 19.55942235315012, + "c4": -43.558898292461, + "c5": -27.12593578631792, + "c6": -5.392118430678565, + "c7": 10.292659436752999 }, - "vertexSeeds": { - "c1": 2.336051620801986, - "c2": 2.568731457635592, - "c3": 2.563599236819721, - "c4": 2.489151010455903, - "c5": 2.625515855405271, - "c6": 2.5316324689679544, - "c7": 2.391446896589072 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506233, + "c3": 3.1900138696255183, + "c4": 2.55201109570042, + "c5": 1.9140083217753117, + "c6": 1.27600554785021, + "c7": 0.638002773925105 }, "rgb": [86, 146, 138] }, @@ -74634,23 +74634,23 @@ "year": 1723, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -26.535512332161424, - "c2": -16.505710641413838, - "c3": 24.632935630720915, - "c4": -13.180324120036396, - "c5": 7.971501354514899, - "c6": 12.335465065070153, - "c7": 2.333841183566399 + "points": { + "c1": 11.784011116006617, + "c2": -29.22905177199816, + "c3": -28.859395113710878, + "c4": 25.16051223647191, + "c5": -22.853374582700347, + "c6": -8.91413840913308, + "c7": 20.91515826598799 }, - "vertexSeeds": { - "c1": 4.529904118460943, - "c2": 4.37417279085235, - "c3": 3.9844311760385382, - "c4": 4.398952231022712, - "c5": 3.887467663395541, - "c6": 3.904989950800967, - "c7": 4.2053212461622325 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.5187239944521504, + "c3": 5.432269995376793, + "c4": 4.345815996301436, + "c5": 3.2593619972260783, + "c6": 2.1729079981507144, + "c7": 1.0864539990753637 }, "rgb": [238, 201, 159] }, @@ -74661,23 +74661,23 @@ "year": 1724, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -43.7672734928476, - "c2": 17.200269627419345, - "c3": -14.21705027202541, - "c4": -15.050453595885141, - "c5": -4.534985271380535, - "c6": -6.03260665182605, - "c7": -6.691323988326744 + "points": { + "c1": -10.214344308331292, + "c2": 7.641678209531136, + "c3": 19.9685512041562, + "c4": -20.224116457117876, + "c5": -48.66543580029793, + "c6": -10.723870834786169, + "c7": 22.404904247657583 }, - "vertexSeeds": { - "c1": 4.985108290440345, - "c2": 5.543652678554025, - "c3": 5.194960900027831, - "c4": 5.085143943850918, - "c5": 5.284058687267813, - "c6": 5.5777481488266565, - "c7": 5.174579758845068 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055476, + "c4": 5.5478502080443866, + "c5": 4.1608876560332835, + "c6": 2.7739251040221933, + "c7": 1.3869625520111029 }, "rgb": [238, 201, 159] }, @@ -74688,23 +74688,23 @@ "year": 1723, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -29.053317668426608, - "c2": -0.06788552719111252, - "c3": 20.181728664593084, - "c4": 5.787213210941001, - "c5": -23.673549870040894, - "c6": -26.245955906065873, - "c7": 23.52358955010759 + "points": { + "c1": -16.81547478499209, + "c2": -14.159691959405912, + "c3": -25.600862132252374, + "c4": 13.93065416905674, + "c5": 3.709454695882993, + "c6": -30.84679442523101, + "c7": -5.2393353733034544 }, - "vertexSeeds": { - "c1": 3.9420824885062897, - "c2": 4.200979671377533, - "c3": 3.949148031230585, - "c4": 4.1860467484803, - "c5": 3.9562734662726404, - "c6": 3.737368621503846, - "c7": 4.242906775573518 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.13037447988904, + "c3": 5.1086453999075365, + "c4": 4.0869163199260266, + "c5": 3.0651872399445232, + "c6": 2.0434581599630133, + "c7": 1.021729079981503 }, "rgb": [86, 146, 138] }, @@ -74715,23 +74715,23 @@ "year": 1724, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -3.1826208571974846, - "c2": 36.400949730359955, - "c3": 14.821203477374048, - "c4": -3.4504358377176416, - "c5": -7.407063467058762, - "c6": -8.47365816355196, - "c7": -10.381096185173277 + "points": { + "c1": 8.124950517875313, + "c2": -40.43443753537826, + "c3": 27.077889912802362, + "c4": -11.266070102023946, + "c5": -10.456969589601172, + "c6": -24.61446605215958, + "c7": -43.845530478611664 }, - "vertexSeeds": { - "c1": 8.817035464026617, - "c2": 8.783061496890964, - "c3": 7.783895812728169, - "c4": 8.364993217891184, - "c5": 7.805713520844488, - "c6": 8.736431715881661, - "c7": 8.663429312456962 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300963, + "c3": 10.517799352750812, + "c4": 8.414239482200644, + "c5": 6.31067961165049, + "c6": 4.207119741100322, + "c7": 2.103559870550153 }, "rgb": [58, 15, 49] }, @@ -74742,23 +74742,23 @@ "year": 1725, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": -57.03727114061181, - "c2": 34.62904342181726, - "c3": 24.051037450933975, - "c4": 23.13768383959315, - "c5": 40.89246934272646, - "c6": 57.35032950264255, - "c7": 5.470158475521657 + "points": { + "c1": 76.38016613904838, + "c2": -54.33457247179996, + "c3": -3.8412773017721094, + "c4": -77.77128074214188, + "c5": 24.400911337918387, + "c6": 37.39300920934775, + "c7": -69.46660353290278 }, - "vertexSeeds": { - "c1": 8.814132110184076, - "c2": 8.196667578360685, - "c3": 8.480562937018806, - "c4": 7.955731700286625, - "c5": 8.760891756653528, - "c6": 8.115741840326919, - "c7": 8.84296306425195 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.89875173370319, + "c3": 10.748959778085991, + "c4": 8.599167822468793, + "c5": 6.449375866851595, + "c6": 4.2995839112343965, + "c7": 2.1497919556171983 }, "rgb": [58, 15, 49] }, @@ -74769,23 +74769,23 @@ "year": 1725, "resistanceReported": false, "duration": 68256000, - "curveSeeds": { - "c1": -20.477744528104026, - "c2": -67.7298054814658, - "c3": 60.13526629370399, - "c4": -77.13776442582841, - "c5": 64.4601639445328, - "c6": 79.64374350278344, - "c7": 21.180623557148394 + "points": { + "c1": 58.98188547381504, + "c2": 16.32447313342182, + "c3": 21.78369593546907, + "c4": 85.73980630629738, + "c5": 71.91575039872531, + "c6": -64.75492857885197, + "c7": 6.556223241929857 }, - "vertexSeeds": { - "c1": 7.277552913249018, - "c2": 8.716414832104904, - "c3": 7.4089556833289, - "c4": 7.677509486122804, - "c5": 7.565019622187382, - "c6": 7.752039940796316, - "c7": 7.443827480919659 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502084, + "c3": 10.633379565418396, + "c4": 8.50670365233472, + "c5": 6.380027739251042, + "c6": 4.253351826167354, + "c7": 2.126675913083677 }, "rgb": [77, 76, 132] }, @@ -74796,23 +74796,23 @@ "year": 1724, "resistanceReported": false, "duration": 46483200, - "curveSeeds": { - "c1": -37.832200841893666, - "c2": 25.00532127011906, - "c3": 8.033783655290584, - "c4": 30.812793715751546, - "c5": -19.09908596259868, - "c6": -27.523341064916224, - "c7": -25.780878664625696 + "points": { + "c1": 5.855573531054226, + "c2": 50.670399433305484, + "c3": 33.67838047869652, + "c4": 21.520322061914946, + "c5": -47.520309800537824, + "c6": -2.0257804387978524, + "c7": 29.970741990356892 }, - "vertexSeeds": { - "c1": 4.408670318606549, - "c2": 4.456083958179997, - "c3": 4.438879993521181, - "c4": 4.536548750498095, - "c5": 4.221619408537722, - "c6": 4.5181342788583665, - "c7": 4.377387202432379 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532591, + "c3": 5.478502080443834, + "c4": 4.382801664355064, + "c5": 3.2871012482662954, + "c6": 2.191400832177538, + "c7": 1.095700416088769 }, "rgb": [58, 15, 49] }, @@ -74823,23 +74823,23 @@ "year": 1723, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -25.504467007712115, - "c2": -15.833862219864834, - "c3": -1.7621537609736464, - "c4": 19.561939266621287, - "c5": 26.127443667466594, - "c6": 33.913830309309844, - "c7": 25.818935988579312 + "points": { + "c1": -17.693242205478057, + "c2": -23.75229791711936, + "c3": -30.509753156162603, + "c4": -30.55509533826085, + "c5": 3.4702886759366365, + "c6": -18.680877444292165, + "c7": 16.620348517543754 }, - "vertexSeeds": { - "c1": 7.222512762463784, - "c2": 8.754685284345125, - "c3": 7.955627001523885, - "c4": 8.695303528806923, - "c5": 6.867897491380226, - "c6": 8.339707964102837, - "c7": 7.509026987597063 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300974, + "c3": 10.517799352750806, + "c4": 8.414239482200648, + "c5": 6.310679611650487, + "c6": 4.2071197411003265, + "c7": 2.1035598705501597 }, "rgb": [77, 76, 132] }, @@ -74850,23 +74850,23 @@ "year": 1723, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 28.076027371528248, - "c2": 13.64684497924602, - "c3": -16.720879333737948, - "c4": 12.775800387313907, - "c5": -22.298608082455626, - "c6": -18.70499393597353, - "c7": 17.18095277616643 + "points": { + "c1": 22.50236220683783, + "c2": -2.50076182273137, + "c3": 27.737408752047806, + "c4": -3.7867999074585654, + "c5": 0.9492711099718107, + "c6": -28.312429294334628, + "c7": -21.726954274977402 }, - "vertexSeeds": { - "c1": 13.707747494847402, - "c2": 12.960148861623841, - "c3": 13.73279074831219, - "c4": 13.419187832262317, - "c5": 13.834644230774394, - "c6": 12.589602804118647, - "c7": 13.200042978408224 + "offsets": { + "c1": 23.36569579288026, + "c2": 20.02773925104021, + "c3": 16.68978270920019, + "c4": 13.351826167360139, + "c5": 10.01386962552012, + "c6": 6.6759130836800695, + "c7": 3.337956541840019 }, "rgb": [58, 15, 49] }, @@ -74877,23 +74877,23 @@ "year": 1723, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 4.889182770515127, - "c2": -39.278158316657645, - "c3": -24.494847703606336, - "c4": 22.88861517882492, - "c5": 7.3221748215038005, - "c6": 16.417252286559, - "c7": 19.199977451071476 + "points": { + "c1": 10.458427538461365, + "c2": 9.655761596795124, + "c3": -7.320292154478977, + "c4": 36.06206707663429, + "c5": -35.23840648815334, + "c6": -7.292334248020865, + "c7": -18.56275243967842 }, - "vertexSeeds": { - "c1": 3.2839425981527164, - "c2": 3.1819310381231136, - "c3": 3.3630146153921583, - "c4": 3.0669641701650856, - "c5": 3.3846228079127494, - "c6": 3.3906924617254806, - "c7": 3.067268794097484 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.88210818307906, + "c3": 4.068423485899211, + "c4": 3.2547387887193704, + "c5": 2.44105409153953, + "c6": 1.6273693943596808, + "c7": 0.8136846971798404 }, "rgb": [58, 15, 49] }, @@ -74904,23 +74904,23 @@ "year": 1723, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 8.771898215062741, - "c2": -24.981363048824733, - "c3": -11.25396779614076, - "c4": 20.430395486147532, - "c5": -18.980457943215274, - "c6": 12.82887570474324, - "c7": 7.001668443404512 + "points": { + "c1": -5.153170934745454, + "c2": -30.970002249180485, + "c3": -33.9648599335895, + "c4": 32.52285516796589, + "c5": -4.465420808793677, + "c6": 3.060196219473177, + "c7": -17.83048960802488 }, - "vertexSeeds": { - "c1": 3.8678019779681003, - "c2": 4.0471894875778425, - "c3": 3.400502472393908, - "c4": 3.3117689950914695, - "c5": 3.288481323227087, - "c6": 3.3280350927938924, - "c7": 4.064945246996139 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486824, + "c3": 4.877484974572355, + "c4": 3.901987979657881, + "c5": 2.926490984743412, + "c6": 1.9509939898289432, + "c7": 0.9754969949144738 }, "rgb": [77, 76, 132] }, @@ -74931,23 +74931,23 @@ "year": 1723, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -21.510732196829757, - "c2": -11.144462383644152, - "c3": -18.505050590419092, - "c4": 17.197876980304493, - "c5": 17.59876928063479, - "c6": 23.528861275387648, - "c7": -2.7232534481894994 + "points": { + "c1": 6.867308047886588, + "c2": 11.836527399923824, + "c3": -4.103451239823354, + "c4": -15.063850997926139, + "c5": 22.052037531572026, + "c6": -22.257272081159172, + "c7": -23.417266379662347 }, - "vertexSeeds": { - "c1": 4.499127008752251, - "c2": 4.48710872991912, - "c3": 4.496843161095006, - "c4": 4.496023069184207, - "c5": 4.48500547202103, - "c6": 4.493580251547385, - "c7": 4.497795113440703 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411959, + "c3": 5.409153952843264, + "c4": 4.32732316227464, + "c5": 3.245492371705944, + "c6": 2.16366158113732, + "c7": 1.0818307905686957 }, "rgb": [238, 201, 159] }, @@ -74958,23 +74958,23 @@ "year": 1724, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 11.593181582103142, - "c2": -29.873728900445904, - "c3": 10.735535153838853, - "c4": 7.94617107005535, - "c5": -35.52090571891538, - "c6": 15.737670720684456, - "c7": 1.1338653388679205 + "points": { + "c1": 28.35132762654211, + "c2": 29.773769769230945, + "c3": -35.91852132781737, + "c4": 41.73266192714426, + "c5": 3.6132667222418746, + "c6": 10.73466873142577, + "c7": -2.6971365293899154 }, - "vertexSeeds": { - "c1": 2.8445250363708356, - "c2": 2.85470765975604, - "c3": 2.8647420619109645, - "c4": 2.870932173295237, - "c5": 2.8576850353452157, - "c6": 2.8935750523265433, - "c7": 2.864080666341732 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033307, + "c3": 3.4674063800277324, + "c4": 2.7739251040222044, + "c5": 2.08044382801663, + "c6": 1.3869625520111022, + "c7": 0.6934812760055281 }, "rgb": [86, 146, 138] }, @@ -74985,23 +74985,23 @@ "year": 1723, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -25.163823466169955, - "c2": 29.67997167033799, - "c3": 24.905060893877845, - "c4": 13.981544078982402, - "c5": 11.25107642330164, - "c6": 5.7075784385004695, - "c7": 6.963337588990505 + "points": { + "c1": -12.700244703752794, + "c2": -19.730014403342473, + "c3": -16.15449951741642, + "c4": -11.173619207114605, + "c5": 8.482165863766816, + "c6": -9.800488512365899, + "c7": -3.184344299073249 }, - "vertexSeeds": { - "c1": 2.2539612893294123, - "c2": 2.421101187746255, - "c3": 2.584614788802848, - "c4": 2.4460376666020545, - "c5": 2.3358024845051752, - "c6": 2.547055519545342, - "c7": 2.7023040075230416 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115127, + "c3": 3.2824780397595954, + "c4": 2.6259824318076728, + "c5": 1.9694868238557552, + "c6": 1.3129912159038377, + "c7": 0.65649560795192 }, "rgb": [238, 201, 159] }, @@ -75012,23 +75012,23 @@ "year": 1724, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -7.992972331026088, - "c2": 9.684624184335412, - "c3": -36.50304363231049, - "c4": -5.607774164241178, - "c5": -14.88615903789902, - "c6": -35.811286134910446, - "c7": 20.579718787886364 + "points": { + "c1": 36.95674607908644, + "c2": -16.767207273393318, + "c3": 27.303086969092362, + "c4": -12.551277742323542, + "c5": -33.447602010587715, + "c6": 8.59168125217623, + "c7": 23.28130251714674 }, - "vertexSeeds": { - "c1": 5.740117809888002, - "c2": 5.894058646118702, - "c3": 5.89441573149133, - "c4": 6.149296416658426, - "c5": 5.7420987075699665, - "c6": 5.57178598128682, - "c7": 5.883456998313112 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871021, + "c3": 7.3971336107258425, + "c4": 5.917706888580681, + "c5": 4.438280166435502, + "c6": 2.9588534442903405, + "c7": 1.479426722145179 }, "rgb": [238, 201, 159] }, @@ -75039,23 +75039,23 @@ "year": 1723, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 33.52456917685755, - "c2": -22.50474520963902, - "c3": 30.623065443678833, - "c4": -12.196361677960034, - "c5": 7.414641979118343, - "c6": -25.110429968765942, - "c7": 29.529295287146496 + "points": { + "c1": 15.280191948430144, + "c2": -26.287216304490073, + "c3": 25.528175774835745, + "c4": -31.305238666188366, + "c5": 34.79343159212679, + "c6": -11.554373321101462, + "c7": 31.750328063852315 }, - "vertexSeeds": { - "c1": 5.729127995402954, - "c2": 4.519258639688338, - "c3": 5.178189796177307, - "c4": 4.532703402576706, - "c5": 5.272088620143876, - "c6": 5.752240875781153, - "c7": 5.017836290839703 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187238, + "c3": 7.00416088765603, + "c4": 5.6033287101248295, + "c5": 4.202496532593621, + "c6": 2.8016643550624125, + "c7": 1.4008321775312045 }, "rgb": [77, 76, 132] }, @@ -75066,23 +75066,23 @@ "year": 1723, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -23.62153349984028, - "c2": 21.721891275658734, - "c3": 11.6520322364685, - "c4": 28.915429835393617, - "c5": -25.686388974500417, - "c6": 8.63378654785673, - "c7": 31.39688886425479 + "points": { + "c1": 27.526294991603827, + "c2": -35.40292006522879, + "c3": 34.04768997723265, + "c4": 31.583749314621414, + "c5": -3.6183335303257174, + "c6": 19.627366239062283, + "c7": 34.88701308310797 }, - "vertexSeeds": { - "c1": 5.122276157377877, - "c2": 5.099838908864752, - "c3": 5.201542179168927, - "c4": 5.311368257314724, - "c5": 5.144057892322271, - "c6": 5.101944894973265, - "c7": 5.112675756676416 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181678, + "c3": 6.426259824318082, + "c4": 5.141007859454453, + "c5": 3.855755894590856, + "c6": 2.5705039297272263, + "c7": 1.28525196486363 }, "rgb": [86, 146, 138] }, @@ -75093,23 +75093,23 @@ "year": 1723, "resistanceReported": true, "duration": 21427200, - "curveSeeds": { - "c1": -11.668465521850596, - "c2": -23.146453350495463, - "c3": 15.789926968652182, - "c4": -28.37669225329566, - "c5": 3.949057183624042, - "c6": 15.913323772232005, - "c7": 29.24007244464029 + "points": { + "c1": 17.614843896135966, + "c2": -9.14301793633803, + "c3": 28.145022983826124, + "c4": 34.71601888231343, + "c5": -21.79429514217167, + "c6": -18.47624738226996, + "c7": 24.752870766581488 }, - "vertexSeeds": { - "c1": 5.76902468233127, - "c2": 5.3960711736595055, - "c3": 5.3480428134566065, - "c4": 5.036048833556761, - "c5": 5.231177370331743, - "c6": 5.558141314979061, - "c7": 5.611106039023588 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066567, + "c3": 6.93481276005548, + "c4": 5.547850208044379, + "c5": 4.160887656033291, + "c6": 2.7739251040221893, + "c7": 1.3869625520110878 }, "rgb": [222, 0, 59] }, @@ -75120,23 +75120,23 @@ "year": 1723, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -2.024278716283135, - "c2": -33.23620180776776, - "c3": 10.045504702031671, - "c4": -6.856145801476611, - "c5": 0.48766509015842274, - "c6": 7.88662485568652, - "c7": 32.95732627260298 + "points": { + "c1": 25.474411446092418, + "c2": 16.933958840215688, + "c3": 5.344368802560588, + "c4": 28.438179080904796, + "c5": 21.35542857190606, + "c6": -3.4651520793678188, + "c7": -2.8447566685274523 }, - "vertexSeeds": { - "c1": 5.951206413806171, - "c2": 6.037477314634436, - "c3": 6.107711740197285, - "c4": 6.195925715867995, - "c5": 6.095760411238176, - "c6": 5.712655989645362, - "c7": 5.708039230140183 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911234, + "c3": 7.420249653259362, + "c4": 5.936199722607489, + "c5": 4.452149791955617, + "c6": 2.9680998613037444, + "c7": 1.4840499306518722 }, "rgb": [222, 0, 59] }, @@ -75147,23 +75147,23 @@ "year": 1723, "resistanceReported": true, "duration": 13996800, - "curveSeeds": { - "c1": -24.392245031812006, - "c2": 17.312369695314587, - "c3": 18.0395149189903, - "c4": 19.389612769313658, - "c5": 17.21828263025357, - "c6": 15.438427493982104, - "c7": -15.871231908314988 + "points": { + "c1": 20.811764708990964, + "c2": -6.336198061784188, + "c3": 17.055753833843283, + "c4": 9.797615268393578, + "c5": -12.658098165190069, + "c6": 8.557343983886668, + "c7": -2.6227886148713573 }, - "vertexSeeds": { - "c1": 1.9079639141397002, - "c2": 1.8953994202704716, - "c3": 1.8203918005550122, - "c4": 1.9577028587932381, - "c5": 2.0121699888302294, - "c6": 1.9663138907942235, - "c7": 1.8314391343942793 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.427184466019417, + "c4": 1.941747572815535, + "c5": 1.4563106796116496, + "c6": 0.9708737864077674, + "c7": 0.4854368932038821 }, "rgb": [222, 0, 59] }, @@ -75174,23 +75174,23 @@ "year": 1724, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 12.631908560420442, - "c2": 30.130469194704673, - "c3": 0.5326080356376792, - "c4": 10.986894205226989, - "c5": 10.153600363613215, - "c6": 34.240227802487, - "c7": -28.498443341376976 + "points": { + "c1": 30.807746763389233, + "c2": 24.982441969575163, + "c3": -39.5140641892007, + "c4": 22.718508443147257, + "c5": -24.03400839923926, + "c6": -19.04078366177477, + "c7": 3.4762113916398505 }, - "vertexSeeds": { - "c1": 6.950895448408311, - "c2": 6.283635362290529, - "c3": 6.434962428496398, - "c4": 6.140069526804981, - "c5": 6.587767008734092, - "c6": 6.379307548483321, - "c7": 6.860801439547284 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343966, + "c3": 8.298659269533058, + "c4": 6.638927415626441, + "c5": 4.979195561719838, + "c6": 3.3194637078132203, + "c7": 1.6597318539066026 }, "rgb": [86, 146, 138] }, @@ -75201,23 +75201,23 @@ "year": 1723, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 18.737049976550388, - "c2": -14.292587618655855, - "c3": 17.654422583339304, - "c4": -27.854828217560122, - "c5": -5.820158004026791, - "c6": 20.993618451124213, - "c7": -20.134506110721443 + "points": { + "c1": 19.305105921468375, + "c2": 12.238735917069796, + "c3": -30.053366634035843, + "c4": 21.69553703731369, + "c5": -33.749456602866196, + "c6": 10.69767972614995, + "c7": 13.677613092887725 }, - "vertexSeeds": { - "c1": 3.6240918118855037, - "c2": 4.004020905598844, - "c3": 3.3767154628664033, - "c4": 3.685208768020657, - "c5": 3.486770634066241, - "c6": 3.5580258224225645, - "c7": 4.152204332301894 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647712, + "c3": 4.969949144706428, + "c4": 3.9759593157651385, + "c5": 2.9819694868238535, + "c6": 1.9879796578825693, + "c7": 0.9939898289412846 }, "rgb": [86, 146, 138] }, @@ -75228,23 +75228,23 @@ "year": 1724, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 26.774756348575544, - "c2": -8.024940353999849, - "c3": 25.963184658566163, - "c4": -25.406823746886847, - "c5": 28.65010456207297, - "c6": 33.82467494921627, - "c7": 8.704563895283933 + "points": { + "c1": 1.6788566016543527, + "c2": 28.32650987917117, + "c3": -2.6557353025538575, + "c4": 15.81810691336893, + "c5": 17.719801608797496, + "c6": -19.175942366768187, + "c7": 6.277739432492801 }, - "vertexSeeds": { - "c1": 7.128016531773273, - "c2": 7.363668469954691, - "c3": 7.756645874585071, - "c4": 7.119202965811024, - "c5": 7.696801595772618, - "c6": 7.858378224166661, - "c7": 6.376891004880828 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.62274618585298, + "c3": 9.685621821544151, + "c4": 7.74849745723532, + "c5": 5.81137309292649, + "c6": 3.87424872861766, + "c7": 1.93712436430883 }, "rgb": [222, 0, 59] }, @@ -75255,23 +75255,23 @@ "year": 1724, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 11.692121387467857, - "c2": -21.721402999990488, - "c3": 15.014642948831742, - "c4": 18.883125994403578, - "c5": 14.032234726411907, - "c6": 33.93584923692755, - "c7": -3.734383926243389 + "points": { + "c1": -21.251731547353938, + "c2": 21.158599985119828, + "c3": 1.8091344654253945, + "c4": 4.537240916363096, + "c5": 29.596506075725898, + "c6": 19.223827481807497, + "c7": 0.5849301262341413 }, - "vertexSeeds": { - "c1": 4.738563066291526, - "c2": 5.007018012792761, - "c3": 4.66339595181223, - "c4": 4.875953879769257, - "c5": 4.679551943247479, - "c6": 4.958213064696822, - "c7": 5.114884053043762 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819695, + "c3": 6.2182154415164135, + "c4": 4.97457235321313, + "c5": 3.7309292649098476, + "c6": 2.487286176606565, + "c7": 1.2436430883032825 }, "rgb": [238, 201, 159] }, @@ -75282,23 +75282,23 @@ "year": 1724, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 1.2655414621108818, - "c2": 14.213948009728213, - "c3": 23.57548632348191, - "c4": -30.85289552600694, - "c5": -3.7011661311344, - "c6": -36.100059841172765, - "c7": 35.50855871866831 + "points": { + "c1": -35.87958304421276, + "c2": 22.158773985449557, + "c3": -2.8022745569273937, + "c4": -43.43106971162638, + "c5": -18.961369763000356, + "c6": 16.242168541678474, + "c7": 21.463675731549472 }, - "vertexSeeds": { - "c1": 4.382919608445067, - "c2": 5.0884619141934015, - "c3": 4.713017966500375, - "c4": 4.880577095810255, - "c5": 4.625988207330156, - "c6": 4.076433657279602, - "c7": 5.273194914672034 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020807, + "c3": 6.333795654184004, + "c4": 5.067036523347202, + "c5": 3.8002773925104036, + "c6": 2.533518261673601, + "c7": 1.2667591308367985 }, "rgb": [222, 0, 59] }, @@ -75309,23 +75309,23 @@ "year": 1724, "resistanceReported": false, "duration": 51580800, - "curveSeeds": { - "c1": 64.81898712592482, - "c2": -42.43252378571, - "c3": -26.782969311225386, - "c4": -10.807101620004104, - "c5": -10.956117639534831, - "c6": 47.89931569588916, - "c7": 16.063435788940012 + "points": { + "c1": 37.566378844533745, + "c2": 20.964277793246296, + "c3": 46.43102263690986, + "c4": 5.742849737098879, + "c5": -36.69112135115955, + "c6": 38.67632814997363, + "c7": -65.08844475965482 }, - "vertexSeeds": { - "c1": 7.881597578020465, - "c2": 7.60776509696618, - "c3": 7.331141302805857, - "c4": 7.859754591335496, - "c5": 7.892290682029109, - "c6": 7.5569497361519335, - "c7": 7.496877913501308 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852979, + "c3": 9.685621821544146, + "c4": 7.748497457235331, + "c5": 5.811373092926498, + "c6": 3.8742487286176654, + "c7": 1.9371243643088327 }, "rgb": [238, 201, 159] }, @@ -75336,23 +75336,23 @@ "year": 1724, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 11.882928367029876, - "c2": -30.613157349284283, - "c3": 28.029616419168782, - "c4": 23.719806586827858, - "c5": 21.704006279515703, - "c6": -13.866616938854975, - "c7": 27.10596332940274 + "points": { + "c1": 11.332213939309696, + "c2": -0.43417227936404856, + "c3": 27.52973539401762, + "c4": 31.346872930968402, + "c5": 24.27685407786339, + "c6": 33.74706307216309, + "c7": 9.834703198119236 }, - "vertexSeeds": { - "c1": 9.819856296226469, - "c2": 9.069578895204309, - "c3": 10.095238787412864, - "c4": 9.274320623861302, - "c5": 9.41795786857173, - "c6": 9.922389262911425, - "c7": 8.961206447999984 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995824, + "c3": 12.066574202496534, + "c4": 9.653259361997232, + "c5": 7.239944521497928, + "c6": 4.826629680998608, + "c7": 2.4133148404993197 }, "rgb": [58, 15, 49] }, @@ -75363,23 +75363,23 @@ "year": 1724, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 12.897221172405857, - "c2": -37.333052818381354, - "c3": -12.514731598855647, - "c4": 40.73742423319193, - "c5": -22.918169884929153, - "c6": -23.589415534805894, - "c7": 15.026216486445868 + "points": { + "c1": 15.941648021078585, + "c2": -26.181644001169154, + "c3": 18.461859759341117, + "c4": -40.87238677437934, + "c5": -27.778705446184823, + "c6": -40.96718052321282, + "c7": 10.84636936124879 }, - "vertexSeeds": { - "c1": 6.590598117153332, - "c2": 6.633055104755801, - "c3": 6.6565936177526, - "c4": 6.3819302741850175, - "c5": 6.532661448432137, - "c6": 7.045439486353614, - "c7": 6.394747849885953 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801665, + "c3": 8.506703652334721, + "c4": 6.8053629218677765, + "c5": 5.104022191400833, + "c6": 3.4026814609338882, + "c7": 1.7013407304669441 }, "rgb": [58, 15, 49] }, @@ -75390,23 +75390,23 @@ "year": 1723, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 10.63597701561914, - "c2": -14.415928232644188, - "c3": -23.31970133674742, - "c4": 8.275572091710856, - "c5": -21.0868472368993, - "c6": 25.841276617241398, - "c7": 25.107796772842505 + "points": { + "c1": -18.448881399290286, + "c2": 16.86490290876148, + "c3": -28.153638577948662, + "c4": 18.628466908288573, + "c5": -4.243820952296861, + "c6": -11.352693463159895, + "c7": 7.668336486283813 }, - "vertexSeeds": { - "c1": 8.267677392064202, - "c2": 8.302356419701495, - "c3": 8.626299944569364, - "c4": 7.746792758519465, - "c5": 8.260895512304952, - "c6": 8.037747015485, - "c7": 8.02081536113516 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938982, + "c3": 10.309754969949143, + "c4": 8.247803975959322, + "c5": 6.185852981969482, + "c6": 4.123901987979661, + "c7": 2.061950993989839 }, "rgb": [77, 76, 132] }, @@ -75417,23 +75417,23 @@ "year": 1724, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 29.609034182758393, - "c2": -32.54328092019833, - "c3": 14.102152585879615, - "c4": 0.9359466065796198, - "c5": 1.8050455209287009, - "c6": -36.04297310410866, - "c7": 30.661459147772334 + "points": { + "c1": -3.3649620339072968, + "c2": -3.356568100868998, + "c3": -0.8171775359312718, + "c4": 8.91041525235375, + "c5": -6.771067480658665, + "c6": -34.91376836596107, + "c7": -21.175832338640504 }, - "vertexSeeds": { - "c1": 6.833276887949995, - "c2": 7.114096892252535, - "c3": 7.374774905449765, - "c4": 7.261365682155799, - "c5": 6.872404765318881, - "c6": 7.10426266299099, - "c7": 6.978649083432902 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445217, + "c3": 8.876560332871017, + "c4": 7.1012482662968, + "c5": 5.3259361997226, + "c6": 3.5506241331484, + "c7": 1.7753120665742 }, "rgb": [58, 15, 49] }, @@ -75444,23 +75444,23 @@ "year": 1725, "resistanceReported": false, "duration": 65145600, - "curveSeeds": { - "c1": -18.98387532223844, - "c2": -57.796200923106525, - "c3": 76.39574784082642, - "c4": -44.187407432792845, - "c5": -64.31209809944733, - "c6": 44.8887483302027, - "c7": -23.8693656604341 + "points": { + "c1": 46.800099084835594, + "c2": -9.48997249349388, + "c3": 13.13140252964736, + "c4": 67.53992875261908, + "c5": 24.892698960227364, + "c6": 35.91072088387905, + "c7": 82.18452418117623 }, - "vertexSeeds": { - "c1": 8.193492765422594, - "c2": 8.466356305070077, - "c3": 8.953894277703625, - "c4": 7.938409541645098, - "c5": 8.77995426188811, - "c6": 8.217398125446145, - "c7": 8.728482367299712 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.89875173370319, + "c3": 10.748959778085991, + "c4": 8.599167822468793, + "c5": 6.449375866851595, + "c6": 4.2995839112343965, + "c7": 2.1497919556171983 }, "rgb": [238, 201, 159] }, @@ -75471,23 +75471,23 @@ "year": 1723, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -6.855004047773791, - "c2": -15.958257210242628, - "c3": 5.560919414686058, - "c4": 10.494428545743176, - "c5": 20.378421404539502, - "c6": 17.073272877624063, - "c7": 12.483592151546702 + "points": { + "c1": -10.039095829888266, + "c2": 11.324084249902462, + "c3": 19.01327869577839, + "c4": 8.982392222253942, + "c5": -10.860185188045577, + "c6": -1.9050217202814927, + "c7": 12.869424689343838 }, - "vertexSeeds": { - "c1": 4.115657560041312, - "c2": 4.1469487045844176, - "c3": 4.256548856084586, - "c4": 4.122815581443805, - "c5": 4.038273352067101, - "c6": 3.9592515950833236, - "c7": 4.13055750839439 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130374, + "c3": 5.247341655108645, + "c4": 4.197873324086916, + "c5": 3.148404993065187, + "c6": 2.098936662043458, + "c7": 1.049468331021729 }, "rgb": [77, 76, 132] }, @@ -75498,23 +75498,23 @@ "year": 1724, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -24.843277313896365, - "c2": 8.698280135946327, - "c3": -8.68290115445054, - "c4": -12.328923483621967, - "c5": 38.70457015976247, - "c6": 37.25408532136869, - "c7": -5.961124228122685 + "points": { + "c1": 41.892853998080454, + "c2": 33.55614890829001, + "c3": 32.94547509017464, + "c4": -27.07271903320319, + "c5": -16.35413748542785, + "c6": 9.718807732285477, + "c7": 10.239760821287561 }, - "vertexSeeds": { - "c1": 7.7697707117697155, - "c2": 7.792188099367361, - "c3": 7.76655883497004, - "c4": 7.897513786755041, - "c5": 7.9952392942614505, - "c6": 7.908904607995799, - "c7": 7.728126646455103 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651885, + "c3": 9.570041608876542, + "c4": 7.656033287101241, + "c5": 5.7420249653259425, + "c6": 3.8280166435506424, + "c7": 1.9140083217753 }, "rgb": [86, 146, 138] }, @@ -75525,23 +75525,23 @@ "year": 1724, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -14.8440241977119, - "c2": -15.896945645918947, - "c3": -30.498694237009186, - "c4": 10.902147655087788, - "c5": -12.171863916829462, - "c6": 35.940482920277795, - "c7": 1.8571963635211475 + "points": { + "c1": 32.18919556553741, + "c2": -23.259819292021053, + "c3": 12.377677452176428, + "c4": 18.50957302802837, + "c5": 33.19816076139798, + "c6": 38.56218009087008, + "c7": -13.925538002307878 }, - "vertexSeeds": { - "c1": 10.941163435566455, - "c2": 10.971682802549406, - "c3": 11.184036524689041, - "c4": 10.9847477719809, - "c5": 11.648244923425462, - "c6": 11.388813095054102, - "c7": 10.989357312340774 + "offsets": { + "c1": 19.70873786407767, + "c2": 16.89320388349514, + "c3": 14.077669902912607, + "c4": 11.262135922330078, + "c5": 8.446601941747549, + "c6": 5.631067961165061, + "c7": 2.8155339805825306 }, "rgb": [77, 76, 132] }, @@ -75552,23 +75552,23 @@ "year": 1724, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": -22.66467632418003, - "c2": -39.142253502627696, - "c3": 4.021259104712435, - "c4": -17.915312883515107, - "c5": -14.642189828447258, - "c6": 29.108144197491335, - "c7": -33.62624138994259 + "points": { + "c1": -43.10078559447814, + "c2": -13.829390810044615, + "c3": 9.59174582292443, + "c4": 20.26306772612977, + "c5": -25.004632395341392, + "c6": 25.114170529773354, + "c7": 0.6610060450314492 }, - "vertexSeeds": { - "c1": 7.448266485352059, - "c2": 7.874917680992752, - "c3": 7.240310868788987, - "c4": 7.195577785911884, - "c5": 7.417610583046384, - "c6": 7.400879269577537, - "c7": 7.461543439850856 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410078, + "c4": 7.6745261211280615, + "c5": 5.7558945908460455, + "c6": 3.8372630605640308, + "c7": 1.9186315302820154 }, "rgb": [222, 0, 59] }, @@ -75579,23 +75579,23 @@ "year": 1724, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -2.536357121318943, - "c2": -0.8380211636876709, - "c3": 2.870635293235182, - "c4": 15.48921961973079, - "c5": -15.917817771062417, - "c6": -8.594396558079612, - "c7": 25.46901322581723 + "points": { + "c1": -7.432530966428274, + "c2": 9.470187320653778, + "c3": -4.874655579807197, + "c4": -13.05806888113915, + "c5": 13.545492424788108, + "c6": -32.58896795676402, + "c7": -30.241111048710707 }, - "vertexSeeds": { - "c1": 6.4322505418869325, - "c2": 6.568770938529473, - "c3": 6.315360868939006, - "c4": 6.518078318454, - "c5": 7.199793744297294, - "c6": 6.711531399275266, - "c7": 7.009161810680933 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072118, + "c3": 7.512713823393439, + "c4": 6.010171058714749, + "c5": 4.507628294036059, + "c6": 3.005085529357369, + "c7": 1.5025427646786904 }, "rgb": [77, 76, 132] }, @@ -75606,23 +75606,23 @@ "year": 1724, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -2.4040210036329768, - "c2": -9.079477639312085, - "c3": 22.666249814838118, - "c4": 2.869076128565858, - "c5": -5.189020512137127, - "c6": -8.518140065801983, - "c7": 21.16108762662531 + "points": { + "c1": -25.95441255320695, + "c2": -13.087226446534519, + "c3": 8.614737375097356, + "c4": -14.56208950212384, + "c5": 29.031902588134585, + "c6": -26.896645404242612, + "c7": -35.50842859803424 }, - "vertexSeeds": { - "c1": 2.794557955170331, - "c2": 2.7143653754869894, - "c3": 2.6999619073830887, - "c4": 2.6927912804504257, - "c5": 2.6519028453994116, - "c6": 2.897705083274058, - "c7": 2.601645327580219 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153955, + "c3": 3.5367545076282934, + "c4": 2.8294036061026375, + "c5": 2.122052704576975, + "c6": 1.4147018030513188, + "c7": 0.7073509015256625 }, "rgb": [86, 146, 138] }, @@ -75633,23 +75633,23 @@ "year": 1724, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 13.096619551437833, - "c2": 18.80587929943868, - "c3": 12.736081482134594, - "c4": 29.55096615568744, - "c5": -3.2500205630883023, - "c6": 16.34027457659876, - "c7": 24.60204526979006 + "points": { + "c1": -10.473168191073377, + "c2": -3.805349030845644, + "c3": 12.15895649194777, + "c4": 12.73580562418995, + "c5": -12.05155249794499, + "c6": -14.789996282219285, + "c7": 32.62073018223559 }, - "vertexSeeds": { - "c1": 5.232974906065577, - "c2": 5.903413983770086, - "c3": 5.59819503977046, - "c4": 5.79021409061369, - "c5": 5.362156068612025, - "c6": 5.846270241965578, - "c7": 6.093027194252926 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072123, + "c3": 7.512713823393437, + "c4": 6.010171058714743, + "c5": 4.507628294036057, + "c6": 3.0050855293573715, + "c7": 1.5025427646786857 }, "rgb": [77, 76, 132] }, @@ -75660,23 +75660,23 @@ "year": 1724, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -18.796420038545605, - "c2": 37.76458253815011, - "c3": -0.552927180933878, - "c4": -21.696164261097, - "c5": -37.29495403992622, - "c6": 40.24362165783616, - "c7": -27.382299795308555 + "points": { + "c1": -7.661297707452391, + "c2": -3.5454021408126764, + "c3": -18.729808528492438, + "c4": 16.370501375394348, + "c5": 7.682369162364104, + "c6": -37.79282651490318, + "c7": -16.190251139093252 }, - "vertexSeeds": { - "c1": 10.881945531552745, - "c2": 11.660662545678713, - "c3": 11.774895787016991, - "c4": 11.377150290049181, - "c5": 11.762887108531874, - "c6": 10.847957193165326, - "c7": 11.448695902736107 + "offsets": { + "c1": 20.22653721682848, + "c2": 17.33703190013869, + "c3": 14.447526583448903, + "c4": 11.558021266759116, + "c5": 8.668515950069363, + "c6": 5.779010633379575, + "c7": 2.8895053166897875 }, "rgb": [77, 76, 132] }, @@ -75687,23 +75687,23 @@ "year": 1723, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -2.7657809494501997, - "c2": 4.24430285919664, - "c3": 10.288598803284952, - "c4": 15.550937347950306, - "c5": -2.5853811479453803, - "c6": 21.221870133154997, - "c7": 3.050789995760386 + "points": { + "c1": -17.34714577809705, + "c2": -3.5556664393791273, + "c3": 18.17341796392059, + "c4": 20.03212182148408, + "c5": -9.258708913980886, + "c6": 1.5573924838299469, + "c7": 13.495788682474103 }, - "vertexSeeds": { - "c1": 5.172813372024424, - "c2": 4.47110962710059, - "c3": 4.573516734791857, - "c4": 4.706579565793571, - "c5": 4.628018000053775, - "c6": 4.891131500961356, - "c7": 4.514805990880321 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -75714,23 +75714,23 @@ "year": 1724, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -19.14741661947592, - "c2": -4.184918469443531, - "c3": 27.371525312405755, - "c4": -28.125283065364197, - "c5": -27.752143809061003, - "c6": -2.32644671151877, - "c7": 1.3763882153582543 + "points": { + "c1": 3.102581070475729, + "c2": -13.120942578576877, + "c3": -11.772616823960949, + "c4": -19.201031279858945, + "c5": 18.623060376136515, + "c6": -1.3338301996623976, + "c7": 30.05555849189585 }, - "vertexSeeds": { - "c1": 2.4562469002890612, - "c2": 2.638999102523565, - "c3": 2.45554249331514, - "c4": 2.812813145502715, - "c5": 3.0585990741328444, - "c6": 2.8636747895065637, - "c7": 2.5040203753891808 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395287, + "c3": 3.6754507628294033, + "c4": 2.9403606102635247, + "c5": 2.205270457697641, + "c6": 1.4701803051317623, + "c7": 0.7350901525658788 }, "rgb": [86, 146, 138] }, @@ -75741,23 +75741,23 @@ "year": 1724, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 20.637129105512038, - "c2": 15.144338130185119, - "c3": 15.526292711455888, - "c4": -5.322923216859593, - "c5": -29.537858598969745, - "c6": 20.56751937349822, - "c7": 23.681990886446535 + "points": { + "c1": -30.14306066053744, + "c2": -19.966944411240803, + "c3": -27.40951056337532, + "c4": 28.148153308025357, + "c5": 20.31541086578664, + "c6": -15.063698383545763, + "c7": 33.65635901268859 }, - "vertexSeeds": { - "c1": 4.263218738521142, - "c2": 3.9616022754510674, - "c3": 4.08912098448429, - "c4": 3.685788560058208, - "c5": 3.9318945480099, - "c6": 3.672982864613099, - "c7": 4.48287264719259 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [77, 76, 132] }, @@ -75768,23 +75768,23 @@ "year": 1724, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 24.123536421907172, - "c2": -15.56107954803821, - "c3": 13.22154388929555, - "c4": -13.65746564483859, - "c5": -11.945373561228703, - "c6": 20.70051461625921, - "c7": -22.21920933535464 + "points": { + "c1": -17.295049925672956, + "c2": -15.995652622659527, + "c3": 15.581261599421257, + "c4": 23.41861450973502, + "c5": 2.984508348568376, + "c6": -24.01823232178331, + "c7": 1.2402906465278711 }, - "vertexSeeds": { - "c1": 11.784651709430854, - "c2": 11.06162633395911, - "c3": 11.871838959699526, - "c4": 11.585405545908355, - "c5": 11.281999888130784, - "c6": 10.784776012890557, - "c7": 11.326838267309284 + "offsets": { + "c1": 20.19417475728155, + "c2": 17.309292649098477, + "c3": 14.424410540915401, + "c4": 11.539528432732327, + "c5": 8.654646324549253, + "c6": 5.769764216366149, + "c7": 2.8848821081830747 }, "rgb": [86, 146, 138] }, @@ -75795,23 +75795,23 @@ "year": 1724, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -1.323488658852849, - "c2": 1.0613044242322793, - "c3": -20.03958191159885, - "c4": 19.121729571048316, - "c5": -17.85885226062908, - "c6": 15.749475775918047, - "c7": 7.409045591812305 + "points": { + "c1": -4.98420058609582, + "c2": -17.640327328068697, + "c3": 14.508999721117444, + "c4": -8.916531524428088, + "c5": 18.088132985688002, + "c6": 10.40248435210992, + "c7": -0.5945457245726189 }, - "vertexSeeds": { - "c1": 4.528327138561944, - "c2": 3.7147557091558725, - "c3": 3.8182444784761014, - "c4": 4.4965294628726, - "c5": 4.185165479025149, - "c6": 4.257751412049768, - "c7": 4.435088178910568 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [238, 201, 159] }, @@ -75822,23 +75822,23 @@ "year": 1724, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 28.99225000054272, - "c2": -20.16408785345614, - "c3": -8.404981014683162, - "c4": -8.20484264295423, - "c5": 24.927697469622398, - "c6": -2.927015239756315, - "c7": -1.4805327368754497 + "points": { + "c1": 6.81520204946715, + "c2": 30.552705828353805, + "c3": 27.301379764681652, + "c4": 3.6704819190507116, + "c5": 8.908555597030844, + "c6": -21.53167037924915, + "c7": -18.413062347662763 }, - "vertexSeeds": { - "c1": 10.161439681835184, - "c2": 10.259832091172674, - "c3": 10.61927379369031, - "c4": 10.719731287295568, - "c5": 10.627899469702024, - "c6": 10.140470850718291, - "c7": 10.564265872752056 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363402, + "c3": 12.85251964863613, + "c4": 10.282015718908914, + "c5": 7.711511789181701, + "c6": 5.141007859454486, + "c7": 2.5705039297272148 }, "rgb": [86, 146, 138] }, @@ -75849,23 +75849,23 @@ "year": 1724, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -18.110771294694246, - "c2": -15.426173292047583, - "c3": 20.756217775123723, - "c4": -10.95153154202999, - "c5": 17.251388007615724, - "c6": -16.78162958170657, - "c7": -19.249915964322255 + "points": { + "c1": 21.202455889284614, + "c2": -9.027483119064783, + "c3": -20.54289226788062, + "c4": -2.020278496528096, + "c5": -18.490818098434474, + "c6": 18.246635797533244, + "c7": -20.676699124613968 }, - "vertexSeeds": { - "c1": 4.453468939771714, - "c2": 4.622823245744765, - "c3": 4.964396513218778, - "c4": 4.686997475700123, - "c5": 4.872078532701687, - "c6": 4.698531078351704, - "c7": 5.226236573957218 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940361, + "c3": 6.2875635691169665, + "c4": 5.030050855293571, + "c5": 3.7725381414701777, + "c6": 2.515025427646784, + "c7": 1.2575127138233895 }, "rgb": [77, 76, 132] }, @@ -75876,23 +75876,23 @@ "year": 1724, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 27.981825619181976, - "c2": 22.649765766165487, - "c3": -25.634319850239912, - "c4": 12.300828156583627, - "c5": -18.906958570869918, - "c6": -32.04963470630192, - "c7": -23.7701770876131 + "points": { + "c1": -29.93713031998268, + "c2": -22.165836323743, + "c3": -11.477771167569895, + "c4": -22.052940434652747, + "c5": 10.338018575309768, + "c6": 3.360829218228993, + "c7": 32.97173367616884 }, - "vertexSeeds": { - "c1": 10.398661091655073, - "c2": 11.197178063545191, - "c3": 11.595994478925459, - "c4": 11.72741494202398, - "c5": 10.785218237280098, - "c6": 11.468496439994535, - "c7": 11.11964729042234 + "offsets": { + "c1": 19.57928802588997, + "c2": 16.78224687933426, + "c3": 13.98520573277855, + "c4": 11.18816458622284, + "c5": 8.39112343966713, + "c6": 5.59408229311142, + "c7": 2.79704114655571 }, "rgb": [58, 15, 49] }, @@ -75903,23 +75903,23 @@ "year": 1724, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -24.056214905548664, - "c2": -38.71135889377242, - "c3": 5.086877357643623, - "c4": 14.052338368522626, - "c5": 47.20795577452193, - "c6": -1.702687068753363, - "c7": 13.739653198394286 + "points": { + "c1": 35.648496754238245, + "c2": 2.9777886721822, + "c3": 24.668083339959516, + "c4": 31.611082221019053, + "c5": -23.835751093590027, + "c6": 49.36231981937028, + "c7": 45.470419337025625 }, - "vertexSeeds": { - "c1": 14.767881723909671, - "c2": 13.495061226915976, - "c3": 13.706293157507265, - "c4": 14.169935920224487, - "c5": 14.220027573024138, - "c6": 14.53469353200821, - "c7": 14.487406052596096 + "offsets": { + "c1": 25.24271844660194, + "c2": 21.6366158113731, + "c3": 18.03051317614423, + "c4": 14.42441054091539, + "c5": 10.81830790568655, + "c6": 7.2122052704576785, + "c7": 3.6061026352288392 }, "rgb": [86, 146, 138] }, @@ -75930,23 +75930,23 @@ "year": 1724, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": 37.7168336606612, - "c2": 0.4097624982672414, - "c3": 26.004948851955938, - "c4": 4.146849450643863, - "c5": 28.074723952627743, - "c6": 7.496698746731958, - "c7": -48.28758838118042 + "points": { + "c1": 41.72355084207047, + "c2": -21.536943666542317, + "c3": 48.53801586742751, + "c4": -42.95279437218955, + "c5": -30.42883477871726, + "c6": 20.860712228333362, + "c7": 36.84421267426581 }, - "vertexSeeds": { - "c1": 6.605419545485862, - "c2": 6.6207859011647034, - "c3": 6.593344382470022, - "c4": 6.592360615179566, - "c5": 6.6152749023157575, - "c6": 6.589542052373612, - "c7": 6.61487104854745 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.48682385575594, + "c3": 7.905686546463335, + "c4": 6.324549237170731, + "c5": 4.743411927877813, + "c6": 3.1622746185852084, + "c7": 1.5811373092926042 }, "rgb": [58, 15, 49] }, @@ -75957,23 +75957,23 @@ "year": 1724, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -20.781397998072393, - "c2": -28.090483030313823, - "c3": 34.68116897122968, - "c4": 3.774351855996244, - "c5": -33.1782936154147, - "c6": -7.076285370342077, - "c7": -2.498677410875615 + "points": { + "c1": 23.015748724850255, + "c2": -6.4090951818803354, + "c3": -7.189959994360208, + "c4": -21.420918648023665, + "c5": -29.54094433102378, + "c6": 3.5147562631374427, + "c7": 5.3066515285739655 }, - "vertexSeeds": { - "c1": 7.185559022773426, - "c2": 7.348104881537016, - "c3": 7.55694025709543, - "c4": 7.2019778098124885, - "c5": 7.1758591338858295, - "c6": 7.540120731761378, - "c7": 7.3608687059615745 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766975, + "c3": 9.061488673139161, + "c4": 7.249190938511317, + "c5": 5.436893203883504, + "c6": 3.6245954692556586, + "c7": 1.8122977346278455 }, "rgb": [58, 15, 49] }, @@ -75984,23 +75984,23 @@ "year": 1724, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -3.473048837074373, - "c2": 30.05016130293589, - "c3": -17.59321795995113, - "c4": 34.49240129501463, - "c5": -10.886969774678207, - "c6": 14.936889287892626, - "c7": 8.554604180569449 + "points": { + "c1": 34.0651701025179, + "c2": 31.553515510385978, + "c3": 8.260870484995415, + "c4": 1.998937363308407, + "c5": 5.1315642936479975, + "c6": 41.0361328086273, + "c7": 4.248193673676518 }, - "vertexSeeds": { - "c1": 6.654553633384919, - "c2": 6.495587514156918, - "c3": 6.863110473972514, - "c4": 6.5286344354369055, - "c5": 6.5863640335456175, - "c6": 6.9064999504619315, - "c7": 6.709729754276006 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479881, + "c3": 8.321775312066578, + "c4": 6.657420249653254, + "c5": 4.99306518723995, + "c6": 3.328710124826627, + "c7": 1.6643550624133043 }, "rgb": [238, 201, 159] }, @@ -76011,23 +76011,23 @@ "year": 1724, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -7.854974465310537, - "c2": -24.13000738492358, - "c3": 19.16637381542065, - "c4": -24.182807543939468, - "c5": 3.5719477770806733, - "c6": 17.0165332089329, - "c7": 14.840030781091222 + "points": { + "c1": -14.182788968069719, + "c2": 22.673889156833894, + "c3": -0.26611669727833487, + "c4": 25.219149075784657, + "c5": -26.82689267328555, + "c6": 26.40470366619799, + "c7": 5.901177810184272 }, - "vertexSeeds": { - "c1": 7.673587551713264, - "c2": 6.887815642690545, - "c3": 7.152924056450054, - "c4": 7.109038310632245, - "c5": 7.419595077813724, - "c6": 7.143440089991588, - "c7": 7.3790965810104945 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.178918169209433, + "c3": 9.315765141007864, + "c4": 7.45261211280628, + "c5": 5.58945908460471, + "c6": 3.72630605640314, + "c7": 1.86315302820157 }, "rgb": [77, 76, 132] }, @@ -76038,23 +76038,23 @@ "year": 1724, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 13.5929122424143, - "c2": -17.6812845865063, - "c3": -6.489418843035249, - "c4": -26.687181734636134, - "c5": 1.242104699873856, - "c6": -19.999568055239948, - "c7": -30.836805389785592 + "points": { + "c1": 5.1754354384073125, + "c2": -0.11434707392101728, + "c3": 35.339607927912816, + "c4": 38.35205489419126, + "c5": -16.46206653262906, + "c6": 2.103376666549302, + "c7": -26.32755118476821 }, - "vertexSeeds": { - "c1": 7.181387575572499, - "c2": 6.457943998414229, - "c3": 7.123687899356646, - "c4": 6.934509064052289, - "c5": 6.877458944781006, - "c6": 6.472141766830609, - "c7": 6.492200136278607 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043002, + "c3": 8.645399907535824, + "c4": 6.916319926028662, + "c5": 5.187239944521501, + "c6": 3.458159963014339, + "c7": 1.7290799815071614 }, "rgb": [86, 146, 138] }, @@ -76065,23 +76065,23 @@ "year": 1723, "resistanceReported": false, "duration": 9244800, - "curveSeeds": { - "c1": -3.9748277992609538, - "c2": -9.740766618347235, - "c3": 14.999746118388671, - "c4": 14.52407211388249, - "c5": 6.368877285361663, - "c6": 0.6105572680032338, - "c7": -12.381401086007054 + "points": { + "c1": -3.5096809640073694, + "c2": -10.557862599299861, + "c3": 11.873840436201462, + "c4": -20.344496958060166, + "c5": -7.303101469571962, + "c6": 16.8843409050151, + "c7": -7.576575023844704 }, - "vertexSeeds": { - "c1": 0.981863482680783, - "c2": 0.9328229931997709, - "c3": 0.93113936203678, - "c4": 0.9821218552548192, - "c5": 1.0091429192158814, - "c6": 1.0056584602068765, - "c7": 1.0008552235715393 + "offsets": { + "c1": 1.715210355987055, + "c2": 1.4701803051317612, + "c3": 1.2251502542764672, + "c4": 0.9801202034211758, + "c5": 0.7350901525658817, + "c6": 0.4900601017105879, + "c7": 0.24503005085529395 }, "rgb": [238, 201, 159] }, @@ -76092,23 +76092,23 @@ "year": 1724, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 7.344716821455144, - "c2": -12.467148889379146, - "c3": 21.57267652750447, - "c4": 30.129520813994482, - "c5": 11.066605622197613, - "c6": -4.565853895219192, - "c7": -24.634502331058073 + "points": { + "c1": -29.027295965805603, + "c2": 28.666938276039062, + "c3": 15.41922712462307, + "c4": 20.738495330017443, + "c5": -21.917096946785943, + "c6": -22.56964940704446, + "c7": -16.835051189189137 }, - "vertexSeeds": { - "c1": 2.2030779095877544, - "c2": 2.182608116969618, - "c3": 2.1545174415066777, - "c4": 1.996437444162496, - "c5": 2.0129188094675903, - "c6": 2.2243499616354128, - "c7": 2.4476289182162874 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081815, + "c3": 2.9357374017568194, + "c4": 2.3485899214054546, + "c5": 1.7614424410540896, + "c6": 1.1742949607027273, + "c7": 0.5871474803513624 }, "rgb": [222, 0, 59] }, @@ -76119,23 +76119,23 @@ "year": 1724, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 14.952440568204537, - "c2": 15.989575430237842, - "c3": 0.9994199827272681, - "c4": -14.334003522345952, - "c5": 8.981383760378428, - "c6": -26.080535297536777, - "c7": -1.6359151903347922 + "points": { + "c1": -3.2333734165272716, + "c2": 18.94958167187435, + "c3": 1.5432573882919698, + "c4": 12.618401277613998, + "c5": 3.3837380189822994, + "c6": -28.90996668295968, + "c7": -31.413159743855832 }, - "vertexSeeds": { - "c1": 10.50015285880435, - "c2": 11.499329852831059, - "c3": 10.732895520082911, - "c4": 10.923395044284653, - "c5": 11.188006025165016, - "c6": 10.947503239970532, - "c7": 10.231383847250049 + "offsets": { + "c1": 19.385113268608414, + "c2": 16.615811373092914, + "c3": 13.846509477577444, + "c4": 11.077207582061943, + "c5": 8.307905686546471, + "c6": 5.538603791030972, + "c7": 2.7693018955154995 }, "rgb": [86, 146, 138] }, @@ -76146,23 +76146,23 @@ "year": 1724, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 24.566828900970382, - "c2": -26.203303850345122, - "c3": -21.643422300193865, - "c4": -15.830417572881686, - "c5": -5.1673227886527116, - "c6": 9.352395257951319, - "c7": -14.340763189410957 + "points": { + "c1": -19.225833482728596, + "c2": -13.855425259650257, + "c3": 3.039319482612239, + "c4": -15.588832679581463, + "c5": 5.840572628762704, + "c6": 27.934138030599765, + "c7": -24.00153550489147 }, - "vertexSeeds": { - "c1": 4.2975635673958354, - "c2": 3.907901662322264, - "c3": 4.559634892164256, - "c4": 4.043530767094699, - "c5": 4.088686226567141, - "c6": 3.9191925945365407, - "c7": 3.675872088051068 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -76173,23 +76173,23 @@ "year": 1724, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -23.76973065721279, - "c2": -27.15635929175679, - "c3": 8.120371291021662, - "c4": -23.486519134305567, - "c5": -28.0375564846458, - "c6": -13.784565038034149, - "c7": 7.3633797087114985 + "points": { + "c1": -14.108282596848564, + "c2": 19.72679750783886, + "c3": 0.12756035580409275, + "c4": 21.378813751154595, + "c5": -17.459959307028054, + "c6": -24.535710316267256, + "c7": 1.9499113641514043 }, - "vertexSeeds": { - "c1": 4.160166706729492, - "c2": 5.000167169737066, - "c3": 4.924305841541224, - "c4": 5.0655690818142, - "c5": 4.839858456456712, - "c6": 4.185984477711152, - "c7": 4.905975469293602 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699033, + "c3": 6.148867313915855, + "c4": 4.919093851132687, + "c5": 3.689320388349514, + "c6": 2.459546925566341, + "c7": 1.229773462783173 }, "rgb": [238, 201, 159] }, @@ -76200,23 +76200,23 @@ "year": 1724, "resistanceReported": true, "duration": 19353600, - "curveSeeds": { - "c1": 0.5672936133615778, - "c2": -13.885066679283895, - "c3": 24.85920890034492, - "c4": -26.144106285366075, - "c5": 13.225865784069907, - "c6": -14.799356527215881, - "c7": -11.766303040223189 + "points": { + "c1": -27.878736553582694, + "c2": 7.601990115140595, + "c3": 18.222337420587984, + "c4": 31.17562797487099, + "c5": 6.996673546243223, + "c6": 10.399381268577798, + "c7": -3.249727116933844 }, - "vertexSeeds": { - "c1": 7.134598720200743, - "c2": 6.948266415371336, - "c3": 7.020496921360485, - "c4": 6.96905152370884, - "c5": 7.187766711268893, - "c6": 7.060708697019415, - "c7": 7.003752757982562 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922329, + "c3": 8.576051779935275, + "c4": 6.860841423948219, + "c5": 5.1456310679611645, + "c6": 3.4304207119741097, + "c7": 1.7152103559870548 }, "rgb": [58, 15, 49] }, @@ -76227,23 +76227,23 @@ "year": 1724, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 2.7255416820846037, - "c2": -19.770640428510816, - "c3": -5.824384798226145, - "c4": 3.8857616865162115, - "c5": 22.288670376270005, - "c6": -17.190551845598392, - "c7": 3.667163111864916 + "points": { + "c1": -21.904929537405607, + "c2": 34.70386797303274, + "c3": 31.14295695993397, + "c4": -15.39068401046909, + "c5": 14.955866341774431, + "c6": 6.143566369228381, + "c7": -4.004255203670567 }, - "vertexSeeds": { - "c1": 6.3100003607058435, - "c2": 6.190677642178357, - "c3": 6.165142702622223, - "c4": 6.2882043414038975, - "c5": 6.005764988166221, - "c6": 5.879868415908581, - "c7": 5.886727705899398 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233011, + "c3": 7.605177993527512, + "c4": 6.084142394822012, + "c5": 4.563106796116513, + "c6": 3.0420711974109995, + "c7": 1.5210355987054998 }, "rgb": [77, 76, 132] }, @@ -76254,23 +76254,23 @@ "year": 1724, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -24.076664344539104, - "c2": -16.855748290733164, - "c3": 2.116972755567179, - "c4": 6.991410376152029, - "c5": -14.964268208685011, - "c6": -30.305048118208898, - "c7": -21.060502060011178 + "points": { + "c1": 28.710350123214397, + "c2": -5.780046219562276, + "c3": 14.495803573552898, + "c4": 0.5877363645870943, + "c5": -10.971283798902764, + "c6": 3.4310815920880913, + "c7": -12.098786932618822 }, - "vertexSeeds": { - "c1": 3.211955760890156, - "c2": 3.0404049559716126, - "c3": 3.1953342840669894, - "c4": 3.0125171644784317, - "c5": 3.050677174160329, - "c6": 3.179705968926259, - "c7": 3.0333224423553875 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.02219140083218, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328672, + "c7": 0.8044382801664377 }, "rgb": [77, 76, 132] }, @@ -76281,23 +76281,23 @@ "year": 1724, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 4.735803714008483, - "c2": 24.00306079507827, - "c3": 6.261985130188705, - "c4": -16.800775821752076, - "c5": 0.08378042306550526, - "c6": -23.940914727007318, - "c7": -10.132605820000528 + "points": { + "c1": 8.215813643253775, + "c2": -2.9593173130917805, + "c3": -30.98707845167508, + "c4": -5.3106532608559505, + "c5": 25.72337753695321, + "c6": -14.463829100031777, + "c7": 4.733757861769476 }, - "vertexSeeds": { - "c1": 5.468987968661675, - "c2": 4.654584733767081, - "c3": 4.982336089586921, - "c4": 4.566424397130285, - "c5": 5.559052590269052, - "c6": 5.28589981441704, - "c7": 5.161465899030525 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227465, + "c3": 7.027276930189551, + "c4": 5.6218215441516435, + "c5": 4.216366158113729, + "c6": 2.8109107720758217, + "c7": 1.4054553860379109 }, "rgb": [238, 201, 159] }, @@ -76308,23 +76308,23 @@ "year": 1724, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 16.586784278093283, - "c2": -27.258577830585647, - "c3": -8.53801289650174, - "c4": 11.757643840681219, - "c5": -9.090050837299756, - "c6": -1.7529821141575255, - "c7": 2.2808346062454916 + "points": { + "c1": 5.084367727679258, + "c2": 36.27715747274101, + "c3": -8.594252794142704, + "c4": 37.734909544226355, + "c5": -35.92854746576588, + "c6": -39.71800620138936, + "c7": 39.93683703330696 }, - "vertexSeeds": { - "c1": 7.3456120233730875, - "c2": 7.0103519228336095, - "c3": 7.7922576056984685, - "c4": 7.73190065279603, - "c5": 7.307927602854249, - "c6": 7.510819404973587, - "c7": 7.279647372974708 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531207, + "c3": 9.500693481276006, + "c4": 7.600554785020805, + "c5": 5.7004160887656035, + "c6": 3.8002773925104023, + "c7": 1.9001386962552012 }, "rgb": [77, 76, 132] }, @@ -76335,23 +76335,23 @@ "year": 1724, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -12.949238415471338, - "c2": 25.492211051244958, - "c3": 9.726951155020842, - "c4": 3.5490973227956104, - "c5": 21.4255652104626, - "c6": -20.82794092073805, - "c7": 19.972673856956405 + "points": { + "c1": 27.966777316838048, + "c2": -16.63841025795506, + "c3": 5.005094992888083, + "c4": -33.62914611101241, + "c5": -32.76689994291372, + "c6": 19.93355116690902, + "c7": 2.3419227208349156 }, - "vertexSeeds": { - "c1": 2.1316115095662322, - "c2": 2.0840205054191636, - "c3": 2.119892796526275, - "c4": 2.140596695830401, - "c5": 2.061569315089388, - "c6": 2.104382216296557, - "c7": 2.1558698569832404 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545074, + "c3": 2.612112806287559, + "c4": 2.0896902450300523, + "c5": 1.567267683772537, + "c6": 1.0448451225150217, + "c7": 0.5224225612575153 }, "rgb": [238, 201, 159] }, @@ -76362,23 +76362,23 @@ "year": 1724, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 15.325219771850328, - "c2": -29.71126909637404, - "c3": -16.380950554984615, - "c4": -5.414469436264607, - "c5": 21.126418924923776, - "c6": 28.99498370581459, - "c7": -20.629730461600985 + "points": { + "c1": 3.0714631958179552, + "c2": 19.588527554309877, + "c3": -5.9067346730702575, + "c4": -14.383168294647582, + "c5": -21.35650181848439, + "c6": 8.399450388536614, + "c7": 5.266537924365764 }, - "vertexSeeds": { - "c1": 5.525179181886105, - "c2": 5.85099629737979, - "c3": 5.782685466048726, - "c4": 5.879269993903401, - "c5": 5.524355628654257, - "c6": 5.748334373494052, - "c7": 5.057345225435756 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [222, 0, 59] }, @@ -76389,23 +76389,23 @@ "year": 1724, "resistanceReported": true, "duration": 23673600, - "curveSeeds": { - "c1": 9.24495291703898, - "c2": -26.96481810106269, - "c3": 17.6483120413238, - "c4": -20.19663782648862, - "c5": 30.9715608748985, - "c6": 12.386766480011978, - "c7": 21.59532605333756 + "points": { + "c1": -13.559339203387452, + "c2": -2.7618613159265024, + "c3": 31.47830500191364, + "c4": 13.237092697396548, + "c5": -18.97135591260317, + "c6": -5.153617517066472, + "c7": 32.91985589352855 }, - "vertexSeeds": { - "c1": 2.395920594251185, - "c2": 2.7056148816426413, - "c3": 2.4616908002330065, - "c4": 2.4847632789099583, - "c5": 2.642052086682458, - "c6": 2.6078953187199856, - "c7": 2.592536174380347 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.9667128987517337, + "c3": 3.305594082293112, + "c4": 2.6444752658344903, + "c5": 1.9833564493758682, + "c6": 1.3222376329172436, + "c7": 0.6611188164586218 }, "rgb": [222, 0, 59] }, @@ -76416,23 +76416,23 @@ "year": 1724, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 10.647869023922276, - "c2": -4.448177081804417, - "c3": -40.28447274040646, - "c4": -32.531309688672444, - "c5": 26.091374140197956, - "c6": 2.0274944795101604, - "c7": 28.648142737319105 + "points": { + "c1": 29.83478022740121, + "c2": -14.145587689853254, + "c3": 33.08713715184069, + "c4": 29.777699536799716, + "c5": 40.974369188365145, + "c6": 0.32525235009745046, + "c7": -1.7273325528841283 }, - "vertexSeeds": { - "c1": 4.28190462632559, - "c2": 4.579328877178317, - "c3": 3.737702701752645, - "c4": 3.8452411944152916, - "c5": 4.2633234471244075, - "c6": 3.755114013750498, - "c7": 3.885896415683369 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [77, 76, 132] }, @@ -76443,23 +76443,23 @@ "year": 1724, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -6.681483003011088, - "c2": -26.698312711784162, - "c3": -12.773918634722406, - "c4": 2.2629714262254197, - "c5": -17.589889864456158, - "c6": 26.078529560811027, - "c7": -34.34166699302499 + "points": { + "c1": 16.513232828052324, + "c2": 26.77188444278132, + "c3": -4.440440088873828, + "c4": 42.30956588470763, + "c5": -39.0262364879753, + "c6": 12.998841456088847, + "c7": -5.963559943225995 }, - "vertexSeeds": { - "c1": 6.750226743107005, - "c2": 7.205075898689368, - "c3": 6.89302123332863, - "c4": 7.169291381953395, - "c5": 7.8684880930983585, - "c6": 6.681118275155558, - "c7": 7.850494171106471 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174756, + "c3": 9.870550161812295, + "c4": 7.896440129449834, + "c5": 5.922330097087373, + "c6": 3.9482200647249135, + "c7": 1.9741100323624525 }, "rgb": [222, 0, 59] }, @@ -76470,23 +76470,23 @@ "year": 1724, "resistanceReported": false, "duration": 5184000, - "curveSeeds": { - "c1": -6.962465172212571, - "c2": 7.859086524031307, - "c3": 9.029236197452414, - "c4": 6.415402018534186, - "c5": 10.001270266802807, - "c6": -13.1556480847036, - "c7": 11.833267474638744 + "points": { + "c1": 15.924788212598756, + "c2": -1.8004314439926095, + "c3": -9.00826217338289, + "c4": -8.6679586954394, + "c5": 13.91979240174054, + "c6": -4.719573195257112, + "c7": -9.569778392632244 }, - "vertexSeeds": { - "c1": 4.319603114618671, - "c2": 4.566259948823695, - "c3": 4.035505285125776, - "c4": 4.3305786740753796, - "c5": 3.6809764408014187, - "c6": 3.7902912743702153, - "c7": 4.180347013274626 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [238, 201, 159] }, @@ -76497,23 +76497,23 @@ "year": 1724, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -21.980019703218353, - "c2": 29.478500838510335, - "c3": -28.86202780008209, - "c4": 26.741120562529666, - "c5": -6.102837310046258, - "c6": 2.426239937609388, - "c7": 4.466785718038665 + "points": { + "c1": 26.26553992482964, + "c2": 6.597273413745256, + "c3": 13.67953047565883, + "c4": -10.353722371617344, + "c5": 29.027341764380374, + "c6": -27.569237942974063, + "c7": 9.109213967608412 }, - "vertexSeeds": { - "c1": 2.3340217105602084, - "c2": 2.2026432632993798, - "c3": 2.4251366285166527, - "c4": 2.336467931063924, - "c5": 2.1848999752441753, - "c6": 2.3817093706509502, - "c7": 2.295292702676761 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081824, + "c3": 2.935737401756819, + "c4": 2.348589921405455, + "c5": 1.7614424410540912, + "c6": 1.1742949607027275, + "c7": 0.5871474803513638 }, "rgb": [238, 201, 159] }, @@ -76524,23 +76524,23 @@ "year": 1724, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 8.347408955763498, - "c2": 24.29449808547713, - "c3": 15.018935481034802, - "c4": 11.093298843571617, - "c5": -0.029226039523212677, - "c6": -7.349908747323045, - "c7": -27.086193859804016 + "points": { + "c1": 4.323124337474816, + "c2": 22.154315372301205, + "c3": -22.128337093073913, + "c4": 13.488587086655436, + "c5": 24.463489284824647, + "c6": 14.61143901616628, + "c7": 28.780605060038503 }, - "vertexSeeds": { - "c1": 3.9759611623521365, - "c2": 3.6851111982928004, - "c3": 3.870246030183446, - "c4": 4.246549692106629, - "c5": 3.8535897778743937, - "c6": 4.427639934075177, - "c7": 3.891501619923961 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371707, + "c3": 5.3860379103097555, + "c4": 4.308830328247804, + "c5": 3.2316227461858533, + "c6": 2.154415164123902, + "c7": 1.077207582061951 }, "rgb": [58, 15, 49] }, @@ -76551,23 +76551,23 @@ "year": 1724, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -9.569492374350627, - "c2": -1.1725835193987422, - "c3": 2.4735033504828827, - "c4": -3.847466173148433, - "c5": 25.796452093184893, - "c6": 0.9164172079955009, - "c7": -4.593029305956335 + "points": { + "c1": 1.5529263370326802, + "c2": 27.85203839398489, + "c3": -29.915767781740016, + "c4": -21.657946041655745, + "c5": 5.6287646594191045, + "c6": -12.971380029322795, + "c7": -28.06963595765638 }, - "vertexSeeds": { - "c1": 2.3807295249840825, - "c2": 2.558188858847622, - "c3": 2.2137868806149252, - "c4": 2.4114459420050784, - "c5": 2.3371451375079433, - "c6": 2.6380438565419095, - "c7": 2.3679763682536 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692557, + "c4": 2.588996763754045, + "c5": 1.941747572815534, + "c6": 1.2944983818770226, + "c7": 0.6472491909385113 }, "rgb": [222, 0, 59] }, @@ -76578,23 +76578,23 @@ "year": 1724, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 0.8723452683429542, - "c2": -6.25901130473839, - "c3": -2.1176356434725214, - "c4": 7.200080312468685, - "c5": -11.258818838728324, - "c6": -7.455785152289838, - "c7": -29.129578300075366 + "points": { + "c1": -20.714994335470674, + "c2": 14.177445306300768, + "c3": -30.886994114905335, + "c4": 7.720319799849094, + "c5": 5.386303766481852, + "c6": 22.769405739758703, + "c7": -19.64603947406716 }, - "vertexSeeds": { - "c1": 2.3782683208501023, - "c2": 2.6927851270053234, - "c3": 2.748291723081055, - "c4": 2.531798533849732, - "c5": 2.3871803813921426, - "c6": 2.424716807558154, - "c7": 2.306659366008791 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.374942209893665, + "c4": 2.6999537679149315, + "c5": 2.024965325936197, + "c6": 1.3499768839574657, + "c7": 0.6749884419787339 }, "rgb": [238, 201, 159] }, @@ -76605,23 +76605,23 @@ "year": 1724, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -22.534998675584717, - "c2": 7.60634413966536, - "c3": -16.853565057772283, - "c4": 1.636758938473811, - "c5": -32.693961530302346, - "c6": -8.622467658824629, - "c7": -1.6083325603224665 + "points": { + "c1": 13.565711210815579, + "c2": 3.5366772495307117, + "c3": 4.845324279748837, + "c4": 7.64758549653434, + "c5": 25.74309209946638, + "c6": 37.33686767758705, + "c7": 35.50990759892997 }, - "vertexSeeds": { - "c1": 4.316837153257199, - "c2": 4.105290011146832, - "c3": 4.306366219809102, - "c4": 4.070500223335823, - "c5": 3.893665712058382, - "c6": 3.834138195029454, - "c7": 4.092935486438407 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [77, 76, 132] }, @@ -76632,23 +76632,23 @@ "year": 1724, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -11.583080383344573, - "c2": -17.957089572772098, - "c3": -4.476894939524541, - "c4": -16.757074233164833, - "c5": 9.680325830724513, - "c6": -8.151747026955114, - "c7": 35.15131665449691 + "points": { + "c1": -22.9636879177672, + "c2": 9.766580708400852, + "c3": -39.0864830101393, + "c4": 40.086108449446485, + "c5": -25.523078503355354, + "c6": -13.411787823735352, + "c7": 29.480140754153254 }, - "vertexSeeds": { - "c1": 2.8269823913511654, - "c2": 3.261783888502631, - "c3": 2.472360360578552, - "c4": 3.1696009717571956, - "c5": 3.165665594255441, - "c6": 3.180523101671068, - "c7": 2.95385664255966 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.6588072122052715, + "c3": 4.715672676837727, + "c4": 3.7725381414701817, + "c5": 2.8294036061026353, + "c6": 1.8862690707350906, + "c7": 0.9431345353675459 }, "rgb": [86, 146, 138] }, @@ -76659,23 +76659,23 @@ "year": 1724, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -21.145360207902105, - "c2": -5.923629247552643, - "c3": 12.603914335525815, - "c4": -23.651582838055237, - "c5": 0.07735541759530307, - "c6": -0.6392484278475052, - "c7": 23.12843427637135 + "points": { + "c1": 26.823230837118295, + "c2": 20.956058595043935, + "c3": -4.139246128073641, + "c4": 23.780566811184627, + "c5": 13.882312519316557, + "c6": -20.368466599604055, + "c7": 9.875252534301595 }, - "vertexSeeds": { - "c1": 15.213730569948186, - "c2": 15.213730569948186, - "c3": 15.213730569948186, - "c4": 15.213730569948186, - "c5": 15.213730569948186, - "c6": 15.213730569948186, - "c7": 15.213730569948186 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -76686,23 +76686,23 @@ "year": 1725, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 15.741369222662705, - "c2": -45.9518490055542, - "c3": 20.67802471594228, - "c4": 36.81761196450156, - "c5": 26.43017593447417, - "c6": -36.24996721008448, - "c7": 34.699514829715405 + "points": { + "c1": 5.248049702440127, + "c2": 7.5721934505856225, + "c3": -14.356533436044948, + "c4": 10.421616494019865, + "c5": 23.521276737015107, + "c6": -42.173314964448565, + "c7": 43.50227947064534 }, - "vertexSeeds": { - "c1": 8.757344278151828, - "c2": 7.592716816043577, - "c3": 8.711448461766462, - "c4": 7.57625733837214, - "c5": 7.59554888384463, - "c6": 8.533970332652721, - "c7": 8.682395995417458 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662966, + "c3": 10.72584373555247, + "c4": 8.580674988441984, + "c5": 6.435506241331488, + "c6": 4.290337494220992, + "c7": 2.145168747110496 }, "rgb": [238, 201, 159] }, @@ -76713,23 +76713,23 @@ "year": 1725, "resistanceReported": false, "duration": 53827200, - "curveSeeds": { - "c1": 18.343846811676826, - "c2": -26.459378390255488, - "c3": -11.284450136499075, - "c4": -4.1371014172074325, - "c5": 20.872728876597208, - "c6": -48.454289254423415, - "c7": 51.77823289555808 + "points": { + "c1": -32.43217395804083, + "c2": -35.38889107378244, + "c3": -2.433522533297136, + "c4": -19.34501574130769, + "c5": -25.616581412286727, + "c6": -29.82744222246167, + "c7": 20.41774815963413 }, - "vertexSeeds": { - "c1": 1.4836851611209732, - "c2": 1.5905442468894593, - "c3": 1.6395875417716708, - "c4": 1.6234659009640544, - "c5": 1.6356213153371448, - "c6": 1.58593754059348, - "c7": 1.500418340088786 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808588, + "c3": 2.1729079981507167, + "c4": 1.7383263985205724, + "c5": 1.303744798890428, + "c6": 0.8691631992602862, + "c7": 0.4345815996301418 }, "rgb": [238, 201, 159] }, @@ -76740,23 +76740,23 @@ "year": 1725, "resistanceReported": false, "duration": 53740800, - "curveSeeds": { - "c1": 42.67382600873334, - "c2": -21.717594482018107, - "c3": 35.61967736710454, - "c4": 7.757531569716733, - "c5": 58.36769174604413, - "c6": -33.25060221270574, - "c7": 63.09617921034652 + "points": { + "c1": -10.243773144349184, + "c2": 21.307164453131733, + "c3": -40.71534631935425, + "c4": 15.926851897989437, + "c5": -11.297354078522552, + "c6": -44.196912295649724, + "c7": 32.88650682922329 }, - "vertexSeeds": { - "c1": 3.3627643814572137, - "c2": 3.7698784654517006, - "c3": 4.016299408339802, - "c4": 3.45768248115313, - "c5": 4.017538181474457, - "c6": 3.2963931329153153, - "c7": 4.083458434847468 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105873, + "c4": 3.9204808136846996, + "c5": 2.9403606102635207, + "c6": 1.9602404068423473, + "c7": 0.9801202034211737 }, "rgb": [238, 201, 159] }, @@ -76767,23 +76767,23 @@ "year": 1724, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 11.478170268032947, - "c2": -21.071444823902805, - "c3": -25.702047882627426, - "c4": 14.542204051110595, - "c5": -2.770668095504078, - "c6": -25.698039029349964, - "c7": 17.540341821157647 + "points": { + "c1": 4.055675344160491, + "c2": -31.176285327428523, + "c3": 18.926489464884945, + "c4": 26.990877734717202, + "c5": -9.498828290425472, + "c6": -32.802652052005136, + "c7": -17.23549983260336 }, - "vertexSeeds": { - "c1": 13.536933103662491, - "c2": 12.436511116278501, - "c3": 12.471027547774547, - "c4": 12.752767161991684, - "c5": 13.009747456982682, - "c6": 13.414863017886741, - "c7": 12.68549958394014 + "offsets": { + "c1": 22.62135922330097, + "c2": 19.38973647711511, + "c3": 16.15811373092925, + "c4": 12.926490984743394, + "c5": 9.694868238557577, + "c6": 6.463245492371718, + "c7": 3.231622746185859 }, "rgb": [86, 146, 138] }, @@ -76794,23 +76794,23 @@ "year": 1724, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -21.948380555007073, - "c2": 2.3248130721539013, - "c3": 36.41189096825612, - "c4": 31.663766345656498, - "c5": 27.256035651325433, - "c6": 10.627556816758734, - "c7": -33.9238441934325 + "points": { + "c1": 35.2144707754786, + "c2": 16.4407336217053, + "c3": 19.862849411414537, + "c4": 29.391141552585808, + "c5": 37.48703076778793, + "c6": -15.810279760491479, + "c7": -0.5897877653660899 }, - "vertexSeeds": { - "c1": 1.00835892494142, - "c2": 1.0781996763385115, - "c3": 1.057168168577236, - "c4": 1.1198741925360827, - "c5": 1.0148545628535657, - "c6": 1.1032254477462495, - "c7": 0.9709259589791691 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133145, + "c3": 1.386962552011095, + "c4": 1.1095700416088758, + "c5": 0.8321775312066578, + "c6": 0.5547850208044386, + "c7": 0.2773925104022193 }, "rgb": [86, 146, 138] }, @@ -76821,23 +76821,23 @@ "year": 1725, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": 16.825035043353083, - "c2": -0.016274981588878745, - "c3": -32.08715405834382, - "c4": 34.33171039895416, - "c5": -14.852589999941713, - "c6": -34.634224705646595, - "c7": -15.274211423490307 + "points": { + "c1": 34.612287934608034, + "c2": 55.10398998328479, + "c3": -7.742512509362058, + "c4": 48.1483569563957, + "c5": -6.972586638359047, + "c6": 7.660600602667138, + "c7": 52.583303647544355 }, - "vertexSeeds": { - "c1": 0.844454111083695, - "c2": 0.8991436295855064, - "c3": 0.878532982340695, - "c4": 0.8421135988702829, - "c5": 0.8760224218154622, - "c6": 0.9053683562462062, - "c7": 0.9304735708278841 + "offsets": { + "c1": 1.5857605177993526, + "c2": 1.3592233009708743, + "c3": 1.132686084142396, + "c4": 0.9061488673139153, + "c5": 0.6796116504854371, + "c6": 0.4530744336569588, + "c7": 0.2265372168284783 }, "rgb": [222, 0, 59] }, @@ -76848,23 +76848,23 @@ "year": 1724, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 17.191329122492505, - "c2": -7.3650719551794595, - "c3": 24.484900075473206, - "c4": 22.799555602533495, - "c5": -7.643109112738177, - "c6": 26.005144139738434, - "c7": 24.479777478071767 + "points": { + "c1": 9.575863298300824, + "c2": -15.076970447767916, + "c3": 4.494683976322698, + "c4": -8.856874395528216, + "c5": -25.856422300457123, + "c6": -11.144190294808347, + "c7": 2.7574539321773273 }, - "vertexSeeds": { - "c1": 13.548254800002402, - "c2": 13.014771412098114, - "c3": 13.48894128769377, - "c4": 13.115273406286278, - "c5": 13.498616163438522, - "c6": 14.432945731014872, - "c7": 14.47860307118148 + "offsets": { + "c1": 24.23948220064725, + "c2": 20.776699029126217, + "c3": 17.31391585760519, + "c4": 13.851132686084123, + "c5": 10.38834951456309, + "c6": 6.925566343042061, + "c7": 3.4627831715210307 }, "rgb": [77, 76, 132] }, @@ -76875,23 +76875,23 @@ "year": 1725, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 48.92942288391079, - "c2": -25.42165768491145, - "c3": -17.70824274008406, - "c4": 5.907416823853204, - "c5": 41.461673117606296, - "c6": -26.664266289686083, - "c7": -4.398515860320096 + "points": { + "c1": -50.36780896622295, + "c2": -52.84321165445322, + "c3": -32.73804384271793, + "c4": 30.39156266968996, + "c5": -37.519006066600454, + "c6": 47.15724783935261, + "c7": -14.113743807710783 }, - "vertexSeeds": { - "c1": 6.083887536102502, - "c2": 6.51867492052564, - "c3": 6.1830389436368876, - "c4": 6.495844836471081, - "c5": 5.745213437455377, - "c6": 6.511515324925849, - "c7": 6.442392493694943 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055479, + "c3": 7.790106333795651, + "c4": 6.232085067036526, + "c5": 4.674063800277389, + "c6": 3.116042533518263, + "c7": 1.5580212667591378 }, "rgb": [58, 15, 49] }, @@ -76902,23 +76902,23 @@ "year": 1724, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 4.268170876234574, - "c2": 11.26847656269615, - "c3": -24.578187336024293, - "c4": -13.49544319635042, - "c5": 3.8451286513377916, - "c6": 8.982396986429492, - "c7": -15.279994166409598 + "points": { + "c1": -9.811650120121076, + "c2": 23.474156411965076, + "c3": 9.452967792162454, + "c4": -24.35352078734924, + "c5": 14.88709156986156, + "c6": 5.675433019573177, + "c7": -12.346964563896107 }, - "vertexSeeds": { - "c1": 6.779041036032844, - "c2": 6.605616726884601, - "c3": 6.596157307010423, - "c4": 6.752915523725334, - "c5": 6.7910351093965495, - "c6": 6.738827363592158, - "c7": 6.692200742512921 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117912, + "c3": 8.113730929264902, + "c4": 6.490984743411942, + "c5": 4.868238557558931, + "c6": 3.245492371705971, + "c7": 1.6227461858530101 }, "rgb": [58, 15, 49] }, @@ -76929,23 +76929,23 @@ "year": 1724, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -7.5801186313187365, - "c2": 10.504677114740062, - "c3": 18.209183731605023, - "c4": -23.55776515200084, - "c5": 28.599673562019802, - "c6": -6.214990977450192, - "c7": 24.775493095402425 + "points": { + "c1": 0.7160766896180277, + "c2": 12.952718625690558, + "c3": -6.984249420488794, + "c4": 21.799267498513053, + "c5": 6.555727443478993, + "c6": 31.535867157819425, + "c7": -2.9877076534124427 }, - "vertexSeeds": { - "c1": 11.337788907253405, - "c2": 11.2748098939727, - "c3": 11.312443751688473, - "c4": 11.539910619058011, - "c5": 11.208994450512531, - "c6": 12.046088750186435, - "c7": 11.227561533567636 + "offsets": { + "c1": 20.22653721682848, + "c2": 17.337031900138708, + "c3": 14.447526583448894, + "c4": 11.558021266759123, + "c5": 8.668515950069354, + "c6": 5.779010633379586, + "c7": 2.8895053166897697 }, "rgb": [222, 0, 59] }, @@ -76956,23 +76956,23 @@ "year": 1724, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -8.376874903652833, - "c2": 16.012534986198162, - "c3": 1.5056290003425303, - "c4": 19.762475592140213, - "c5": -6.867094881615849, - "c6": 11.80591797304939, - "c7": -7.608851501121261 + "points": { + "c1": -10.882582360903516, + "c2": 18.565617326804336, + "c3": 34.37335593253439, + "c4": 35.19854985157537, + "c5": -1.0201307404346878, + "c6": -12.010779993960238, + "c7": 35.072677719480005 }, - "vertexSeeds": { - "c1": 4.806665173539356, - "c2": 4.905613934310662, - "c3": 5.4190480064408995, - "c4": 5.162381863504725, - "c5": 5.163758111803865, - "c6": 5.118050105329027, - "c7": 5.342307399530078 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.888580674988445, + "c4": 5.510864539990753, + "c5": 4.133148404993062, + "c6": 2.755432269995379, + "c7": 1.377716134997687 }, "rgb": [86, 146, 138] }, @@ -76983,23 +76983,23 @@ "year": 1724, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 29.28913137166984, - "c2": -1.7877222505950527, - "c3": -13.841148966759903, - "c4": -26.000966766998907, - "c5": 0.6519444364970894, - "c6": -29.355165157466878, - "c7": -20.58536998675845 + "points": { + "c1": 23.62546155298569, + "c2": -18.66846725432527, + "c3": -21.284123340541715, + "c4": 30.414367913443826, + "c5": -32.25507491688017, + "c6": 1.2283784303780223, + "c7": 27.626166722106547 }, - "vertexSeeds": { - "c1": 7.648187365023882, - "c2": 7.662888218275424, - "c3": 7.508196077428017, - "c4": 7.67733526542883, - "c5": 7.641681255836586, - "c6": 7.5803096888695025, - "c7": 7.970792794831283 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.42857142857143, + "c3": 9.52380952380953, + "c4": 7.6190476190476275, + "c5": 5.714285714285726, + "c6": 3.8095238095238035, + "c7": 1.9047619047619018 }, "rgb": [238, 201, 159] }, @@ -77010,23 +77010,23 @@ "year": 1724, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 1.9243997785682936, - "c2": 27.580045841785484, - "c3": 2.9727983100634106, - "c4": 29.683422440587663, - "c5": 10.176617258336172, - "c6": 2.724709189054032, - "c7": -17.76472868540755 + "points": { + "c1": 22.2065026363259, + "c2": 21.987142930466632, + "c3": 18.841075501421308, + "c4": 9.903660460456187, + "c5": -11.004426791725514, + "c6": -12.041088220820416, + "c7": -21.324942796874918 }, - "vertexSeeds": { - "c1": 4.0583059831503245, - "c2": 3.6930591209607613, - "c3": 3.4439491764091716, - "c4": 4.162094839687836, - "c5": 3.84626021562659, - "c6": 3.6736875782949, - "c7": 3.975048654270746 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.0471567267683755, + "c3": 5.039297272306977, + "c4": 4.0314378178455845, + "c5": 3.0235783633841877, + "c6": 2.01571890892279, + "c7": 1.0078594544613975 }, "rgb": [86, 146, 138] }, @@ -77037,23 +77037,23 @@ "year": 1724, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 4.216970955447707, - "c2": -20.743627513587132, - "c3": 29.088224752452483, - "c4": -19.064121446646713, - "c5": 30.051481698025178, - "c6": -26.04749363341701, - "c7": 24.33533312480011 + "points": { + "c1": 30.843679803317876, + "c2": -3.5323348190034913, + "c3": -9.758981477727545, + "c4": -8.918908666865786, + "c5": 17.884448672602296, + "c6": 14.343095731904235, + "c7": -14.225645859857384 }, - "vertexSeeds": { - "c1": 2.1358179494193794, - "c2": 2.4323934076367477, - "c3": 1.9338272417170923, - "c4": 1.9259694475784088, - "c5": 2.1026723590708927, - "c6": 2.1484824255220825, - "c7": 2.437176915259392 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.9819694868238558, + "c4": 2.3855755894590844, + "c5": 1.7891816920943133, + "c6": 1.1927877947295422, + "c7": 0.5963938973647711 }, "rgb": [222, 0, 59] }, @@ -77064,23 +77064,23 @@ "year": 1725, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 36.12843397064244, - "c2": 34.926279789252725, - "c3": 0.02726740692445162, - "c4": 10.54795263046482, - "c5": 19.424049174999155, - "c6": -12.26302361362296, - "c7": 21.149146462807913 + "points": { + "c1": -19.837693306013204, + "c2": 12.897623583418508, + "c3": -22.89765072813447, + "c4": -33.87335976312382, + "c5": -23.95407434798508, + "c6": -20.122329934983412, + "c7": -32.421704676807984 }, - "vertexSeeds": { - "c1": 4.684782859122124, - "c2": 4.839389811454549, - "c3": 4.714969726012815, - "c4": 5.280291791502891, - "c5": 4.767285122245258, - "c6": 4.668782308033833, - "c7": 5.011480072299263 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -77091,23 +77091,23 @@ "year": 1726, "resistanceReported": false, "duration": 67651200, - "curveSeeds": { - "c1": 58.37632198084097, - "c2": 14.729386468066508, - "c3": -39.87131504847763, - "c4": 24.24828890108546, - "c5": -48.11401277793696, - "c6": -27.130590282608736, - "c7": -3.9461132086610036 + "points": { + "c1": -4.170212315133057, + "c2": -30.684715848945885, + "c3": 39.941428318620254, + "c4": -84.75080044252316, + "c5": -44.17091722821434, + "c6": 34.30824027161165, + "c7": -4.35784936294047 }, - "vertexSeeds": { - "c1": 9.029167246542766, - "c2": 9.647463304150055, - "c3": 8.55700584168942, - "c4": 9.630291616952551, - "c5": 8.762935092179731, - "c6": 10.11740439091998, - "c7": 8.542479027417777 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995834, + "c3": 12.066574202496534, + "c4": 9.653259361997225, + "c5": 7.239944521497917, + "c6": 4.826629680998618, + "c7": 2.413314840499309 }, "rgb": [77, 76, 132] }, @@ -77118,23 +77118,23 @@ "year": 1724, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -28.739307395121347, - "c2": 4.862549055540697, - "c3": 21.55959083404808, - "c4": 10.49777300862791, - "c5": 31.88037254825481, - "c6": 10.957339933214435, - "c7": 23.23721888627346 + "points": { + "c1": -9.984032519612839, + "c2": 19.152515408843918, + "c3": 34.22289994360048, + "c4": 15.283555204321175, + "c5": 7.968758649979726, + "c6": 4.050626344275514, + "c7": 32.269901228338654 }, - "vertexSeeds": { - "c1": 5.7520130207685805, - "c2": 5.608396332253442, - "c3": 5.740907863738362, - "c4": 5.3724830533218695, - "c5": 5.5629083905143775, - "c6": 5.341066510879956, - "c7": 5.439280450748695 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055473, + "c4": 5.547850208044376, + "c5": 4.160887656033294, + "c6": 2.773925104022196, + "c7": 1.386962552011098 }, "rgb": [238, 201, 159] }, @@ -77145,23 +77145,23 @@ "year": 1725, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -26.666430950912886, - "c2": 10.618991699241356, - "c3": 10.28173037283571, - "c4": 7.890665566623532, - "c5": 36.51766655026421, - "c6": 23.843545548374102, - "c7": -23.672492400141746 + "points": { + "c1": 32.19707318971071, + "c2": 26.538116620087166, + "c3": -35.079256229325054, + "c4": -30.12160265460301, + "c5": -36.22227552078146, + "c6": 19.119855853836242, + "c7": -29.862596356689885 }, - "vertexSeeds": { - "c1": 4.782510000452303, - "c2": 5.1839212961905945, - "c3": 4.899536760704047, - "c4": 4.954381464138736, - "c5": 4.974510078677814, - "c6": 5.214381424947978, - "c7": 4.850141730358105 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -77172,23 +77172,23 @@ "year": 1724, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 17.94175740312804, - "c2": -16.064272276987154, - "c3": -0.19957423875545643, - "c4": 22.13264477498051, - "c5": 7.735598179844541, - "c6": 23.90810642470566, - "c7": -21.8584625809522 + "points": { + "c1": -11.739963521987676, + "c2": 20.735906486947787, + "c3": -7.976963201114813, + "c4": 27.171092522733336, + "c5": 6.995983261561559, + "c6": -15.97685448189189, + "c7": -9.342770510545723 }, - "vertexSeeds": { - "c1": 2.9868105986604405, - "c2": 2.96405078412918, - "c3": 3.2085627213411265, - "c4": 3.017631938743306, - "c5": 3.852363395115823, - "c6": 2.982507127812455, - "c7": 3.2416187889356443 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245491, + "c3": 4.738788719371245, + "c4": 3.791030975496994, + "c5": 2.843273231622747, + "c6": 1.895515487748497, + "c7": 0.9477577438742468 }, "rgb": [86, 146, 138] }, @@ -77199,23 +77199,23 @@ "year": 1724, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 7.094836431533643, - "c2": 4.075310190472713, - "c3": -33.86667635331267, - "c4": 1.5943215899319512, - "c5": -31.97728989361594, - "c6": -17.305359101182695, - "c7": -23.39334183486639 + "points": { + "c1": -14.411064184145868, + "c2": 35.30826695497548, + "c3": 20.421974640136654, + "c4": -33.041412460678536, + "c5": -28.2007617039392, + "c6": 32.59280751659547, + "c7": 39.81320214105456 }, - "vertexSeeds": { - "c1": 10.191638417198542, - "c2": 8.749837514812379, - "c3": 10.816282884377078, - "c4": 10.09143475553218, - "c5": 10.209928349302531, - "c6": 9.954055008537493, - "c7": 10.421583915038822 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.811373092926486, + "c3": 13.176144244105414, + "c4": 10.540915395284328, + "c5": 7.905686546463247, + "c6": 5.2704576976421675, + "c7": 2.6352288488210798 }, "rgb": [238, 201, 159] }, @@ -77226,23 +77226,23 @@ "year": 1724, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -5.185039769131542, - "c2": -27.025766366759903, - "c3": 23.021797248791792, - "c4": 18.274046700495745, - "c5": -32.30473185124007, - "c6": -0.6534247998707272, - "c7": -3.7634567816389044 + "points": { + "c1": -29.338612489317143, + "c2": -13.427214393919446, + "c3": -14.15871263664005, + "c4": -20.311933212631594, + "c5": 23.519623520365613, + "c6": -20.091082287168426, + "c7": 10.434283748058839 }, - "vertexSeeds": { - "c1": 0.5051813471502591, - "c2": 0.5051813471502591, - "c3": 0.5051813471502591, - "c4": 0.5051813471502591, - "c5": 0.5051813471502591, - "c6": 0.5051813471502591, - "c7": 0.5051813471502591 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -77253,23 +77253,23 @@ "year": 1725, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 31.928261778295727, - "c2": -0.5691924143875227, - "c3": -4.667559036814403, - "c4": -3.147769978609766, - "c5": -17.26844137456166, - "c6": 14.766264783820517, - "c7": -30.496577058448434 + "points": { + "c1": -44.81476092880559, + "c2": 21.072829140901696, + "c3": 21.65405876974122, + "c4": -2.9779530499232436, + "c5": 8.126386242074311, + "c6": -47.40552391668441, + "c7": 16.468737538347916 }, - "vertexSeeds": { - "c1": 3.8173960303427728, - "c2": 4.228255589717342, - "c3": 4.081111815926775, - "c4": 4.009285272237574, - "c5": 4.2172020189506725, - "c6": 4.123899235242988, - "c7": 4.3056838949938685 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572817, + "c3": 5.501618122977344, + "c4": 4.401294498381876, + "c5": 3.3009708737864085, + "c6": 2.200647249190936, + "c7": 1.100323624595468 }, "rgb": [222, 0, 59] }, @@ -77280,23 +77280,23 @@ "year": 1724, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 5.377206775630306, - "c2": 22.772022257661206, - "c3": 7.039917396585331, - "c4": -18.521026149984273, - "c5": -18.267302222829834, - "c6": -27.00023321794975, - "c7": 5.556893254838201 + "points": { + "c1": 23.590799977886213, + "c2": 33.73910656787777, + "c3": -31.86997216793437, + "c4": 25.980501822763728, + "c5": 7.897532567084227, + "c6": -10.84439760135253, + "c7": 17.14922032685498 }, - "vertexSeeds": { - "c1": 2.6398274489160194, - "c2": 2.3590530423575915, - "c3": 2.4380528807415573, - "c4": 2.381760001592408, - "c5": 2.576205509977402, - "c6": 2.43348361380526, - "c7": 2.5810895012997483 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791956, + "c3": 3.3287101248266313, + "c4": 2.662968099861306, + "c5": 1.997226074895981, + "c6": 1.331484049930653, + "c7": 0.665742024965328 }, "rgb": [86, 146, 138] }, @@ -77307,23 +77307,23 @@ "year": 1725, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 9.047935567913171, - "c2": 36.683825724048184, - "c3": 33.32136337686813, - "c4": -17.198709819095935, - "c5": 1.1187760106315707, - "c6": -44.14195951346302, - "c7": 17.260274261162884 + "points": { + "c1": 32.56523262068121, + "c2": 27.8009668249938, + "c3": -27.171596331321357, + "c4": -12.9786843559502, + "c5": 36.70668198086691, + "c6": -30.114783309144006, + "c7": -9.442849508169722 }, - "vertexSeeds": { - "c1": 8.42000196101721, - "c2": 8.52426742454697, - "c3": 8.399684294084013, - "c4": 8.613839060649253, - "c5": 8.657501362806618, - "c6": 8.535244977525876, - "c7": 8.44729254145809 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.56588072122051, + "c3": 10.47156726768378, + "c4": 8.377253814147009, + "c5": 6.282940360610275, + "c6": 4.1886269070735045, + "c7": 2.094313453536771 }, "rgb": [58, 15, 49] }, @@ -77334,23 +77334,23 @@ "year": 1724, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 9.647814317178323, - "c2": 13.397936368344837, - "c3": 24.428272088085684, - "c4": 19.765343284966747, - "c5": -28.271757701309046, - "c6": 18.35877428144694, - "c7": 25.25156613523601 + "points": { + "c1": -28.68576979215038, + "c2": -18.279469511464207, + "c3": -28.490767675859995, + "c4": 2.0715058101204633, + "c5": 15.47203160521451, + "c6": -5.178889679266092, + "c7": 13.201963192391517 }, - "vertexSeeds": { - "c1": 19.389764953042597, - "c2": 20.024088584653278, - "c3": 19.414665177942673, - "c4": 18.29692411328535, - "c5": 18.05132892523965, - "c6": 19.462084421232916, - "c7": 17.890078742895824 + "offsets": { + "c1": 33.55987055016181, + "c2": 28.765603328710135, + "c3": 23.971336107258423, + "c4": 19.177068885806744, + "c5": 14.382801664355068, + "c6": 9.588534442903356, + "c7": 4.794267221451678 }, "rgb": [86, 146, 138] }, @@ -77361,23 +77361,23 @@ "year": 1724, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -7.482388816157911, - "c2": -12.29429485523653, - "c3": 15.059669904042671, - "c4": -30.852095282449284, - "c5": -9.084858821767583, - "c6": 29.999689548323545, - "c7": 15.013301684806159 + "points": { + "c1": 5.616996225052489, + "c2": -10.92461440134878, + "c3": 7.8058011828353315, + "c4": 9.341293271913237, + "c5": 3.277945432692924, + "c6": 22.857913306920608, + "c7": 22.775051450267405 }, - "vertexSeeds": { - "c1": 7.426472684902645, - "c2": 7.670270169011358, - "c3": 7.874106051466804, - "c4": 7.148067015538682, - "c5": 7.833291228975748, - "c6": 7.525871014642574, - "c7": 7.522127356721052 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812764, + "c3": 9.662505779010628, + "c4": 7.730004623208505, + "c5": 5.797503467406382, + "c6": 3.8650023116042456, + "c7": 1.9325011558021228 }, "rgb": [86, 146, 138] }, @@ -77388,23 +77388,23 @@ "year": 1724, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -22.316518854594058, - "c2": 9.757432546391705, - "c3": -27.859660033133725, - "c4": 7.647862029884024, - "c5": 20.045028098564764, - "c6": -29.164314951055186, - "c7": -23.197680413323774 + "points": { + "c1": 12.826299816163285, + "c2": 28.313787119847014, + "c3": 8.381473237355756, + "c4": -21.02716455429864, + "c5": -23.04567120602892, + "c6": -7.669524470513359, + "c7": -24.50040828650217 }, - "vertexSeeds": { - "c1": 3.9134566717825194, - "c2": 3.907535104151608, - "c3": 4.525794933897433, - "c4": 4.565915831545896, - "c5": 4.365282945242033, - "c6": 4.521934954310565, - "c7": 4.551112896764377 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [86, 146, 138] }, @@ -77415,23 +77415,23 @@ "year": 1725, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -9.468688598370338, - "c2": -13.882779856174654, - "c3": 12.595789159953469, - "c4": -16.991047510591425, - "c5": -32.66064784324807, - "c6": 0.3129489378647534, - "c7": 17.939610741977603 + "points": { + "c1": -1.2807413575531186, + "c2": 16.903173702307612, + "c3": -9.131144505928312, + "c4": 7.904293432938147, + "c5": -4.748602016608579, + "c6": 9.831928379078605, + "c7": -5.418777258605537 }, - "vertexSeeds": { - "c1": 4.395523242430892, - "c2": 4.329167938151295, - "c3": 4.575281693159831, - "c4": 4.34198607851343, - "c5": 4.774058382385535, - "c6": 4.141361952575948, - "c7": 4.067144641345103 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [86, 146, 138] }, @@ -77442,23 +77442,23 @@ "year": 1724, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -23.20829651111677, - "c2": -6.366373478791644, - "c3": -19.371563940909056, - "c4": 28.517125183105478, - "c5": 13.201356491729982, - "c6": -14.894856471352124, - "c7": -27.580933287386216 + "points": { + "c1": -16.936708455313234, + "c2": 17.393156268949895, + "c3": -37.005117927394494, + "c4": -2.827210375735831, + "c5": 21.774195797098947, + "c6": 37.00488758990443, + "c7": -25.989421601296947 }, - "vertexSeeds": { - "c1": 8.546771034918962, - "c2": 8.210325194840845, - "c3": 8.184629352393317, - "c4": 8.738782433505678, - "c5": 7.223832569440564, - "c6": 8.851790477360911, - "c7": 7.0936606199414936 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864083, + "c3": 10.841423948220063, + "c4": 8.673139158576054, + "c5": 6.504854368932037, + "c6": 4.336569579288027, + "c7": 2.168284789644018 }, "rgb": [238, 201, 159] }, @@ -77469,23 +77469,23 @@ "year": 1725, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -27.061505302093366, - "c2": -30.183270060067173, - "c3": -9.230829507206117, - "c4": -33.6225113863948, - "c5": -33.643652507922894, - "c6": 14.343440338488307, - "c7": 20.584118123268176 + "points": { + "c1": -44.194516617663304, + "c2": 41.20850569906618, + "c3": -14.958504221316975, + "c4": 14.233745369863705, + "c5": -40.02921098742259, + "c6": 32.33813132206281, + "c7": -40.119298668160056 }, - "vertexSeeds": { - "c1": 5.94960887766032, - "c2": 5.725819452910452, - "c3": 5.826603452127956, - "c4": 6.18399632908867, - "c5": 6.052406829687187, - "c6": 5.914000745344917, - "c7": 6.186210770036216 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031893, + "c3": 7.48959778085992, + "c4": 5.991678224687928, + "c5": 4.493758668515956, + "c6": 2.995839112343964, + "c7": 1.4979195561719718 }, "rgb": [222, 0, 59] }, @@ -77496,23 +77496,23 @@ "year": 1725, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": 8.943179577350811, - "c2": 8.221674774038107, - "c3": -18.38615198005713, - "c4": -47.49427653467293, - "c5": 0.6537622811519839, - "c6": -38.24140042027324, - "c7": 12.854571879536515 + "points": { + "c1": 34.060677955199424, + "c2": -52.281062098697575, + "c3": -17.142320702182744, + "c4": -51.65321280401144, + "c5": 38.261666178362404, + "c6": -43.69878201979867, + "c7": -29.199088998658127 }, - "vertexSeeds": { - "c1": 6.404690887738466, - "c2": 6.293716107781586, - "c3": 6.300317849199184, - "c4": 6.390997415998474, - "c5": 6.371772220286339, - "c6": 6.280135940569413, - "c7": 5.9672975126406795 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715677, + "c3": 7.882570503929737, + "c4": 6.306056403143779, + "c5": 4.729542302357839, + "c6": 3.1530282015718982, + "c7": 1.5765141007859405 }, "rgb": [222, 0, 59] }, @@ -77523,23 +77523,23 @@ "year": 1725, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -3.4879530001159296, - "c2": 16.335000190938942, - "c3": 8.8963711965581, - "c4": 15.734393120862336, - "c5": 13.457169829505311, - "c6": 31.15125824176745, - "c7": -28.27295925283206 + "points": { + "c1": 19.42965954378731, + "c2": -23.709425058096414, + "c3": 24.652266879619525, + "c4": -8.92670885044613, + "c5": 19.29081295108822, + "c6": 18.187067685955107, + "c7": 23.754320095609664 }, - "vertexSeeds": { - "c1": 4.011069206826401, - "c2": 4.05622950482155, - "c3": 4.097628850988495, - "c4": 4.353794718877522, - "c5": 4.317680247375991, - "c6": 4.517559383874187, - "c7": 3.688724302687248 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -77550,23 +77550,23 @@ "year": 1724, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 23.024159853584887, - "c2": -9.208154830644133, - "c3": -13.498245431437468, - "c4": 20.7383077861293, - "c5": 22.766013200682277, - "c6": 27.133381640593488, - "c7": -23.570270322596745 + "points": { + "c1": 26.741162787173472, + "c2": 4.414390873943468, + "c3": 16.899650759694588, + "c4": 10.825358555005693, + "c5": -32.51822233919264, + "c6": 32.430975148654156, + "c7": 10.46523780156182 }, - "vertexSeeds": { - "c1": 7.201463040843771, - "c2": 7.959921835422887, - "c3": 7.941047215743874, - "c4": 7.610897366865474, - "c5": 6.995173716552619, - "c6": 7.961302844241365, - "c7": 7.681774613872538 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134534, + "c3": 9.847434119278779, + "c4": 7.877947295423023, + "c5": 5.908460471567267, + "c6": 3.9389736477115114, + "c7": 1.9694868238557557 }, "rgb": [238, 201, 159] }, @@ -77577,23 +77577,23 @@ "year": 1724, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 22.249662848219145, - "c2": -16.522339760957777, - "c3": 17.9899583050047, - "c4": 18.556427209748023, - "c5": 24.033796463711724, - "c6": 9.49223249432854, - "c7": -7.553600766275064 + "points": { + "c1": 18.510883068806045, + "c2": 21.122023606619067, + "c3": -1.6500804775221027, + "c4": -4.897849194135443, + "c5": -15.520754311109608, + "c6": -25.71563897056849, + "c7": 7.761305919616895 }, - "vertexSeeds": { - "c1": 3.119439033787923, - "c2": 3.6375436074121317, - "c3": 3.3973958046426236, - "c4": 3.4158332386814996, - "c5": 3.643026417316097, - "c6": 3.725956924652361, - "c7": 3.270880062521767 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923719, + "c3": 4.553860379103098, + "c4": 3.6430883032824797, + "c5": 2.7323162274618573, + "c6": 1.8215441516412398, + "c7": 0.9107720758206221 }, "rgb": [86, 146, 138] }, @@ -77604,23 +77604,23 @@ "year": 1725, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -2.5558009554206826, - "c2": -29.547684824467822, - "c3": 27.441791559955995, - "c4": 18.386070864487387, - "c5": 14.064133033315493, - "c6": 16.512146515945346, - "c7": 31.05198888025194 + "points": { + "c1": 0.5897694164406886, + "c2": 13.458932635539668, + "c3": 2.0202313849276123, + "c4": 30.37997008879931, + "c5": 32.268933726217426, + "c6": -12.267909760833078, + "c7": -32.49197078257123 }, - "vertexSeeds": { - "c1": 6.273165853288751, - "c2": 6.143088319383772, - "c3": 6.264576861171465, - "c4": 6.242414965611376, - "c5": 6.288574679314983, - "c6": 6.214214522911631, - "c7": 6.0400899895845415 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072118, + "c3": 7.512713823393425, + "c4": 6.010171058714734, + "c5": 4.507628294036043, + "c6": 3.005085529357383, + "c7": 1.5025427646786915 }, "rgb": [77, 76, 132] }, @@ -77631,23 +77631,23 @@ "year": 1725, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 25.845621845699824, - "c2": -8.080361683814413, - "c3": -18.95295053776434, - "c4": 25.351074241339873, - "c5": 22.02691901429469, - "c6": -3.658332765687131, - "c7": 11.682709530799954 + "points": { + "c1": -12.40437046974412, + "c2": 5.751965350527087, + "c3": 32.78113603519058, + "c4": 23.78950455685692, + "c5": 28.699568303018467, + "c6": -14.146954782960549, + "c7": -11.78134423757837 }, - "vertexSeeds": { - "c1": 6.411066428543443, - "c2": 6.332181790613809, - "c3": 6.4882246599120865, - "c4": 6.574647665392843, - "c5": 6.42004949120339, - "c6": 6.912988329327931, - "c7": 6.069749234276267 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399439, + "c3": 8.275543226999538, + "c4": 6.620434581599626, + "c5": 4.965325936199727, + "c6": 3.310217290799813, + "c7": 1.6551086453998998 }, "rgb": [58, 15, 49] }, @@ -77658,23 +77658,23 @@ "year": 1724, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -8.674112496688256, - "c2": -6.968155149580511, - "c3": 18.249002795618452, - "c4": -19.325292198573877, - "c5": -5.10588945217183, - "c6": 10.963656775267175, - "c7": -24.309672556189653 + "points": { + "c1": 17.44189754198017, + "c2": -12.44257812134774, + "c3": -16.286454216542275, + "c4": -17.853322010615837, + "c5": -1.261614842801734, + "c6": 16.106674142471242, + "c7": 27.674430117715325 }, - "vertexSeeds": { - "c1": 3.954748003701973, - "c2": 3.802456566746314, - "c3": 3.8582305513391737, - "c4": 4.064406829228893, - "c5": 4.218314047424801, - "c6": 4.254713001000082, - "c7": 4.028917450343993 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170595, + "c3": 5.270457697642161, + "c4": 4.216366158113729, + "c5": 3.1622746185852955, + "c6": 2.108183079056862, + "c7": 1.0540915395284287 }, "rgb": [77, 76, 132] }, @@ -77685,23 +77685,23 @@ "year": 1725, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 7.012368506675912, - "c2": -27.162285600317727, - "c3": 30.179266003089566, - "c4": 3.6243766560574855, - "c5": 17.45313996010458, - "c6": -24.4774147078198, - "c7": -1.7035217807883996 + "points": { + "c1": 3.5938097051333244, + "c2": 10.75730224972039, + "c3": 40.47234315563384, + "c4": 17.760410519011494, + "c5": -4.057219046052211, + "c6": -3.623172377221472, + "c7": -7.614490283329943 }, - "vertexSeeds": { - "c1": 10.690154976217991, - "c2": 10.730203826769884, - "c3": 10.421381193399744, - "c4": 10.744281048791569, - "c5": 10.660337043775916, - "c6": 9.832763068001123, - "c7": 10.65785617161944 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363395, + "c3": 12.852519648636136, + "c4": 10.282015718908916, + "c5": 7.7115117891816976, + "c6": 5.141007859454479, + "c7": 2.570503929727219 }, "rgb": [222, 0, 59] }, @@ -77712,23 +77712,23 @@ "year": 1725, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 33.22845068365707, - "c2": -7.806450819657545, - "c3": -8.029809882874513, - "c4": -20.036350764619662, - "c5": -9.22875767233035, - "c6": 22.731720200001092, - "c7": -18.217949113486704 + "points": { + "c1": -22.016281968911173, + "c2": 27.68406598082911, + "c3": 25.4831495595964, + "c4": 2.907291394325348, + "c5": 17.89722775196367, + "c6": 6.9908995450102225, + "c7": 34.591158747337545 }, - "vertexSeeds": { - "c1": 5.041190597223001, - "c2": 4.793258075160826, - "c3": 4.427324629243085, - "c4": 4.681831921180021, - "c5": 4.8383309574591635, - "c6": 4.746687829962666, - "c7": 4.3542775424416 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699025, + "c3": 6.148867313915855, + "c4": 4.919093851132685, + "c5": 3.6893203883495156, + "c6": 2.459546925566346, + "c7": 1.2297734627831698 }, "rgb": [222, 0, 59] }, @@ -77739,23 +77739,23 @@ "year": 1724, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -7.8503383071441935, - "c2": 3.3716097143643644, - "c3": -6.357603638697553, - "c4": -11.456674708780028, - "c5": 10.179158517369824, - "c6": 18.025859308862827, - "c7": 14.897523308729596 + "points": { + "c1": -4.965284753667607, + "c2": 22.940673747401107, + "c3": 1.3362848972057755, + "c4": 8.740690107017372, + "c5": 1.4189161483006174, + "c6": -20.857545050304388, + "c7": 1.249490363443293 }, - "vertexSeeds": { - "c1": 2.931633214680581, - "c2": 2.554146529828111, - "c3": 2.682544002886786, - "c4": 2.8043213915652143, - "c5": 3.0050891736953385, - "c6": 3.0454105793297552, - "c7": 2.778372561345657 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395287, + "c3": 3.6754507628294033, + "c4": 2.9403606102635247, + "c5": 2.205270457697641, + "c6": 1.4701803051317623, + "c7": 0.7350901525658788 }, "rgb": [238, 201, 159] }, @@ -77766,23 +77766,23 @@ "year": 1725, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 3.1382522513904654, - "c2": 19.582498514966563, - "c3": 18.905211232308485, - "c4": -24.70369898255683, - "c5": -9.88050786936698, - "c6": 2.8373213157176878, - "c7": 21.66928984272536 + "points": { + "c1": 2.9783203595115175, + "c2": -12.562206153945962, + "c3": -7.930429616261328, + "c4": 20.80035420206759, + "c5": -26.9325281197724, + "c6": -1.087602811473353, + "c7": -30.262149517831297 }, - "vertexSeeds": { - "c1": 4.521354126977756, - "c2": 4.8124708396069895, - "c3": 4.830501670385568, - "c4": 5.015168314515835, - "c5": 4.766269418420516, - "c6": 4.775393341147298, - "c7": 4.5409533489157905 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699026, + "c3": 6.148867313915859, + "c4": 4.9190938511326845, + "c5": 3.6893203883495165, + "c6": 2.4595469255663422, + "c7": 1.2297734627831676 }, "rgb": [238, 201, 159] }, @@ -77793,23 +77793,23 @@ "year": 1725, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 2.6552238608893717, - "c2": 6.817544455636046, - "c3": -25.912109860426636, - "c4": -20.232687991288692, - "c5": -22.5937185749678, - "c6": -15.109580876488414, - "c7": -16.01729416251585 + "points": { + "c1": -15.990753337773112, + "c2": 21.88341432301231, + "c3": 13.825208159034148, + "c4": -12.696475596315583, + "c5": -26.38590776688962, + "c6": 21.87366284338131, + "c7": 15.256770954944969 }, - "vertexSeeds": { - "c1": 8.721964694673941, - "c2": 8.029789954684562, - "c3": 8.49963445324049, - "c4": 7.804832342759439, - "c5": 8.473264861255517, - "c6": 8.307717604788033, - "c7": 8.392715874595035 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099866, + "c3": 10.402219140083215, + "c4": 8.321775312066576, + "c5": 6.241331484049927, + "c6": 4.160887656033288, + "c7": 2.0804438280166506 }, "rgb": [86, 146, 138] }, @@ -77820,23 +77820,23 @@ "year": 1724, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 2.197139271023911, - "c2": 19.54845202394461, - "c3": 1.5566433449149422, - "c4": -6.5826100710197295, - "c5": -17.855150219932927, - "c6": -11.902945743069628, - "c7": 20.10263598975286 + "points": { + "c1": 11.865266827232315, + "c2": 12.074386956434235, + "c3": -16.9375889343504, + "c4": -26.272911348568385, + "c5": 13.101863955158837, + "c6": -14.018399120574765, + "c7": 18.849110528834455 }, - "vertexSeeds": { - "c1": 5.6483577151068465, - "c2": 5.6207245237222825, - "c3": 5.478707260018446, - "c4": 5.558515130647871, - "c5": 5.486353362257656, - "c6": 5.529009337647445, - "c7": 5.733370707619824 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986137, + "c3": 6.888580674988432, + "c4": 5.5108645399907505, + "c5": 4.133148404993069, + "c6": 2.7554322699953864, + "c7": 1.3777161349976823 }, "rgb": [238, 201, 159] }, @@ -77847,23 +77847,23 @@ "year": 1725, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -33.88667772198582, - "c2": -26.2823668593079, - "c3": -28.24598093693734, - "c4": 18.55765894586559, - "c5": -10.119090654390725, - "c6": -2.875331468001626, - "c7": -9.358722615125846 + "points": { + "c1": -29.733258228211014, + "c2": -35.160692287759, + "c3": 16.888250979997466, + "c4": 3.8479198003685084, + "c5": 16.040808196931394, + "c6": 3.569162365384628, + "c7": 18.804120887431452 }, - "vertexSeeds": { - "c1": 4.491234905286837, - "c2": 4.900959871492574, - "c3": 4.662979241360443, - "c4": 4.540348915652416, - "c5": 4.893076085655617, - "c6": 4.846304937817978, - "c7": 4.573089225811865 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538144, + "c3": 6.056403143781783, + "c4": 4.845122515025428, + "c5": 3.633841886269072, + "c6": 2.4225612575127164, + "c7": 1.2112806287563558 }, "rgb": [77, 76, 132] }, @@ -77874,23 +77874,23 @@ "year": 1725, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 14.336602035173573, - "c2": -9.078349599528064, - "c3": 6.968821466150462, - "c4": -18.811279395874664, - "c5": -20.34270677728677, - "c6": -24.78965673713294, - "c7": -13.36204845634685 + "points": { + "c1": 13.28181822476213, + "c2": 23.63347373320458, + "c3": 4.370664561387212, + "c4": -24.656750730264285, + "c5": 25.05617643911039, + "c6": -2.1699390608629088, + "c7": 2.244239407523441 }, - "vertexSeeds": { - "c1": 5.425603705169507, - "c2": 5.429533257936377, - "c3": 5.666209367729324, - "c4": 5.298294011185472, - "c5": 6.153272790445393, - "c6": 5.831158641318118, - "c7": 6.097732969221389 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790568, + "c3": 7.350901525658805, + "c4": 5.880721220527041, + "c5": 4.410540915395278, + "c6": 2.9403606102635136, + "c7": 1.4701803051317506 }, "rgb": [77, 76, 132] }, @@ -77901,23 +77901,23 @@ "year": 1725, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -11.481625755862101, - "c2": 17.95043619308471, - "c3": -23.364624093029487, - "c4": 26.67465822392162, - "c5": -23.238012707365463, - "c6": 27.32207591573602, - "c7": -6.214929063902979 + "points": { + "c1": -14.118087078289818, + "c2": -15.53507155502505, + "c3": 9.603092199548843, + "c4": -5.55347207837729, + "c5": 3.029195165511073, + "c6": 11.66041349407384, + "c7": -10.512831214868381 }, - "vertexSeeds": { - "c1": 5.399804741155605, - "c2": 4.977004363119693, - "c3": 5.795006986702774, - "c4": 4.97381581584194, - "c5": 5.130736257090522, - "c6": 5.267308218105525, - "c7": 5.2792804138580145 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589457, + "c3": 7.2353213129912195, + "c4": 5.788257050392973, + "c5": 4.341192787794736, + "c6": 2.8941285251964888, + "c7": 1.4470642625982422 }, "rgb": [58, 15, 49] }, @@ -77928,23 +77928,23 @@ "year": 1725, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -9.835563151734956, - "c2": 17.4246126093661, - "c3": -22.947571326058597, - "c4": 22.23378846794286, - "c5": 10.243489142655314, - "c6": 8.549782196919807, - "c7": -0.7199854323593797 + "points": { + "c1": -12.940196132317897, + "c2": 11.262961029104666, + "c3": -15.486879684805237, + "c4": -11.911847778795984, + "c5": 0.061629153228416556, + "c6": -25.204358880758527, + "c7": -14.921718017520563 }, - "vertexSeeds": { - "c1": 4.2332916629710775, - "c2": 4.790343012814952, - "c3": 4.236452161976239, - "c4": 4.622546207969553, - "c5": 4.551833839780189, - "c6": 4.564892577268271, - "c7": 4.535567986348213 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055476, + "c3": 5.7790106333795634, + "c4": 4.623208506703656, + "c5": 3.467406380027742, + "c6": 2.311604253351828, + "c7": 1.155802126675914 }, "rgb": [222, 0, 59] }, @@ -77955,23 +77955,23 @@ "year": 1725, "resistanceReported": false, "duration": 43286400, - "curveSeeds": { - "c1": 29.778791356396262, - "c2": -19.361019668965056, - "c3": 4.722639273144516, - "c4": 38.40946890993667, - "c5": 27.62131641459296, - "c6": 7.473377065131068, - "c7": -27.401533769193506 + "points": { + "c1": 23.1400163489184, + "c2": -38.742687310632704, + "c3": 5.06368277652745, + "c4": 23.224211491133993, + "c5": 22.446769880860252, + "c6": -48.324965056045144, + "c7": 13.276953549719458 }, - "vertexSeeds": { - "c1": 3.0268938004697965, - "c2": 2.8909995584679407, - "c3": 2.856531686336888, - "c4": 2.8472527916844554, - "c5": 2.8420817112599552, - "c6": 2.9198447093778976, - "c7": 2.9102608536250423 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435505, + "c3": 3.698566805362919, + "c4": 2.958853444290333, + "c5": 2.2191400832177584, + "c6": 1.4794267221451722, + "c7": 0.7397133610725861 }, "rgb": [77, 76, 132] }, @@ -77982,23 +77982,23 @@ "year": 1725, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -1.6649637873843623, - "c2": 6.695620236416968, - "c3": 3.7476321123230534, - "c4": 12.139970104239676, - "c5": -12.841649348648273, - "c6": -23.771490587158347, - "c7": -26.34528011630488 + "points": { + "c1": -18.04617914373725, + "c2": 21.156624395792573, + "c3": -8.981097615879488, + "c4": -1.7692049431416201, + "c5": -8.690189829782774, + "c6": -9.360913121741792, + "c7": 24.909460814498306 }, - "vertexSeeds": { - "c1": 4.224339573511905, - "c2": 4.185645982295133, - "c3": 4.444656163056852, - "c4": 3.7384245745414324, - "c5": 4.265562538108127, - "c6": 4.346830334823477, - "c7": 3.7745423779756173 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -78009,23 +78009,23 @@ "year": 1725, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 8.74595522798947, - "c2": 35.96917314988992, - "c3": 29.608569357339313, - "c4": 35.35938120559049, - "c5": 0.9782447370951388, - "c6": 2.8954086191557096, - "c7": 8.357404619082821 + "points": { + "c1": 1.0318638648530793, + "c2": 36.68022384141455, + "c3": -13.08850999576915, + "c4": -8.25421143661827, + "c5": 13.892916799119774, + "c6": 33.6265735156361, + "c7": -18.830799826565883 }, - "vertexSeeds": { - "c1": 1.913941573289354, - "c2": 2.5731172010630163, - "c3": 1.6392494806223643, - "c4": 2.422236929413966, - "c5": 2.400613058640137, - "c6": 2.5193847141489467, - "c7": 1.6537014873034317 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550624, + "c3": 3.19001386962552, + "c4": 2.5520110957004154, + "c5": 1.9140083217753123, + "c6": 1.2760055478502077, + "c7": 0.6380027739251038 }, "rgb": [58, 15, 49] }, @@ -78036,23 +78036,23 @@ "year": 1725, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -18.523206879157264, - "c2": 30.741382707617973, - "c3": -32.20130783235276, - "c4": -7.648538300758698, - "c5": 21.70661898582997, - "c6": -33.5358373097194, - "c7": -18.494292868411165 + "points": { + "c1": 34.206560807832275, + "c2": -10.451083147444354, + "c3": -18.317750801987483, + "c4": -28.994139934497248, + "c5": -6.491398297573095, + "c6": 6.47733676678061, + "c7": 0.42825568326572494 }, - "vertexSeeds": { - "c1": 5.766858161102504, - "c2": 5.76917580715773, - "c3": 5.798490498309268, - "c4": 5.721060941582857, - "c5": 5.809226884284296, - "c6": 5.709181193112956, - "c7": 5.7446867723393025 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066613, + "c3": 6.934812760055465, + "c4": 5.547850208044409, + "c5": 4.16088765603326, + "c6": 2.7739251040222044, + "c7": 1.3869625520110562 }, "rgb": [58, 15, 49] }, @@ -78063,23 +78063,23 @@ "year": 1725, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -33.68943351931634, - "c2": 1.1156399415178555, - "c3": -6.698179669194058, - "c4": 24.837638548139623, - "c5": -8.844996242412986, - "c6": -5.647033595066613, - "c7": 25.661426282049455 + "points": { + "c1": 3.0377307829257774, + "c2": 20.582672408131444, + "c3": -25.637199766021944, + "c4": -1.3632928594554343, + "c5": 13.682963846529923, + "c6": 27.24801042912729, + "c7": -9.804902616634262 }, - "vertexSeeds": { - "c1": 7.184912363066287, - "c2": 6.921840591105329, - "c3": 7.648609058430816, - "c4": 7.0687258433720945, - "c5": 6.9478714844749225, - "c6": 7.735190030805263, - "c7": 7.178775685575544 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692096, + "c3": 9.593157651410085, + "c4": 7.67452612112806, + "c5": 5.755894590846048, + "c6": 3.8372630605640365, + "c7": 1.9186315302820247 }, "rgb": [86, 146, 138] }, @@ -78090,23 +78090,23 @@ "year": 1725, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -0.8711685652422076, - "c2": -23.44639512389514, - "c3": -20.93311956299745, - "c4": 9.248393748824014, - "c5": -35.78885694010653, - "c6": 10.822841604500688, - "c7": 14.673049087124518 + "points": { + "c1": 9.31282873041124, + "c2": -41.5833963464409, + "c3": 24.451453048028668, + "c4": 39.96193197953373, + "c5": -9.716451017672142, + "c6": 5.181562676237647, + "c7": 31.606599096042828 }, - "vertexSeeds": { - "c1": 12.257062561118875, - "c2": 12.03101473807927, - "c3": 12.164281126228575, - "c4": 12.377823553132453, - "c5": 12.227601221347156, - "c6": 11.940160815744179, - "c7": 12.402692312536407 + "offsets": { + "c1": 20.809061488673137, + "c2": 17.8363384188627, + "c3": 14.863615349052262, + "c4": 11.890892279241825, + "c5": 8.918169209431387, + "c6": 5.945446139620875, + "c7": 2.9727230698104377 }, "rgb": [238, 201, 159] }, @@ -78117,23 +78117,23 @@ "year": 1725, "resistanceReported": true, "duration": 35683200, - "curveSeeds": { - "c1": 17.887293279873397, - "c2": -43.022304586665534, - "c3": -3.380593164968033, - "c4": -0.5552507549354289, - "c5": -27.196967293426457, - "c6": -30.80716134217878, - "c7": -46.954002366622305 + "points": { + "c1": -50.56779554570337, + "c2": 44.651505081480046, + "c3": 26.37627485898191, + "c4": -36.55611762209302, + "c5": 24.56097705419615, + "c6": -45.67013066324956, + "c7": 16.870230972247604 }, - "vertexSeeds": { - "c1": 4.692475584637854, - "c2": 4.49733871497658, - "c3": 4.424859822974548, - "c4": 4.7879713148897585, - "c5": 4.793249025291608, - "c6": 4.420574610465319, - "c7": 4.625861088822483 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975034, + "c3": 5.732778548312526, + "c4": 4.586222838650019, + "c5": 3.4396671289875114, + "c6": 2.2931114193250153, + "c7": 1.1465557096625076 }, "rgb": [58, 15, 49] }, @@ -78144,23 +78144,23 @@ "year": 1725, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 28.136786029910954, - "c2": 5.846676721017712, - "c3": -22.770660965767433, - "c4": 4.157532162996969, - "c5": -18.08065347347083, - "c6": -12.960818007641453, - "c7": -15.040859408192059 + "points": { + "c1": -20.91619736649372, + "c2": 28.6512563167712, + "c3": -20.509320635241156, + "c4": -22.85602790967117, + "c5": -24.624018476882405, + "c6": -25.317295773910903, + "c7": -25.95540122002776 }, - "vertexSeeds": { - "c1": 4.0969850090520765, - "c2": 3.8361623572919434, - "c3": 3.6681740121485893, - "c4": 4.112088705540887, - "c5": 3.6547594745806626, - "c6": 4.2324083392139045, - "c7": 3.947289874780214 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.2011095700416075, + "c4": 4.160887656033288, + "c5": 3.1206657420249635, + "c6": 2.080443828016644, + "c7": 1.0402219140083242 }, "rgb": [238, 201, 159] }, @@ -78171,23 +78171,23 @@ "year": 1725, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -14.295925803918252, - "c2": 5.669753169286253, - "c3": 19.774695872291133, - "c4": -2.283537154175484, - "c5": -1.8766230522906397, - "c6": -26.596726711972384, - "c7": 1.2320870423503294 + "points": { + "c1": -28.933182029308078, + "c2": -12.319786074093987, + "c3": 21.46143483139427, + "c4": -30.04453120909072, + "c5": 10.659805554484457, + "c6": 18.631311106855136, + "c7": 15.056445399759525 }, - "vertexSeeds": { - "c1": 3.82962812927937, - "c2": 3.907550592820266, - "c3": 3.861164961681337, - "c4": 4.12118282722273, - "c5": 4.184817436720466, - "c6": 3.8362770172121534, - "c7": 4.566008694258912 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653258, + "c3": 5.54785020804438, + "c4": 4.438280166435508, + "c5": 3.3287101248266313, + "c6": 2.219140083217754, + "c7": 1.109570041608877 }, "rgb": [77, 76, 132] }, @@ -78198,23 +78198,23 @@ "year": 1726, "resistanceReported": false, "duration": 53481600, - "curveSeeds": { - "c1": -43.104463162618906, - "c2": 5.733324605789377, - "c3": -29.51514275024654, - "c4": 54.18683282811783, - "c5": -13.498197899679369, - "c6": 61.70374931135734, - "c7": -37.87388026863485 + "points": { + "c1": 28.005240375928494, + "c2": -36.237804977327784, + "c3": 70.19267991946663, + "c4": 48.06096354717562, + "c5": -36.65062443442751, + "c6": -54.421260972827476, + "c7": -30.555453724380705 }, - "vertexSeeds": { - "c1": 3.978941941794119, - "c2": 3.901180526681872, - "c3": 3.9795977606855586, - "c4": 3.9755297950440376, - "c5": 4.0421166952169045, - "c6": 4.060959966599288, - "c7": 3.973900382052282 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527041, + "c3": 4.900601017105873, + "c4": 3.9204808136846943, + "c5": 2.940360610263526, + "c6": 1.9602404068423471, + "c7": 0.9801202034211681 }, "rgb": [238, 201, 159] }, @@ -78225,23 +78225,23 @@ "year": 1725, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 9.833409724398393, - "c2": -27.47743111768245, - "c3": -13.895180527836786, - "c4": -20.868852003288474, - "c5": 16.898620178932454, - "c6": 16.387822355823026, - "c7": -7.532431679489989 + "points": { + "c1": 5.983030650760014, + "c2": -20.415730378351807, + "c3": 5.282511168500058, + "c4": -2.530522016156411, + "c5": 20.347661672716832, + "c6": 27.23174916377109, + "c7": 7.449895993544175 }, - "vertexSeeds": { - "c1": 4.015614643943703, - "c2": 4.051191769692106, - "c3": 4.036223868708105, - "c4": 4.0160487649549195, - "c5": 4.002731528857566, - "c6": 4.023166888303646, - "c7": 4.0552849192606155 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466296, + "c3": 4.854368932038826, + "c4": 3.883495145631086, + "c5": 2.9126213592232824, + "c6": 1.941747572815543, + "c7": 0.9708737864077394 }, "rgb": [86, 146, 138] }, @@ -78252,23 +78252,23 @@ "year": 1725, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": 9.58227375843881, - "c2": -17.41263096265303, - "c3": 7.065280894301878, - "c4": -13.473081193952181, - "c5": -2.5603618465798625, - "c6": -15.619604456570519, - "c7": -0.3986448562089606 + "points": { + "c1": 2.091589486120114, + "c2": -12.936834251123441, + "c3": 20.088576323672104, + "c4": 0.6288307380252718, + "c5": 10.298106952236655, + "c6": 2.371865263682878, + "c7": -10.914830403492601 }, - "vertexSeeds": { - "c1": 6.581026755395463, - "c2": 6.628473945958156, - "c3": 6.90545535923723, - "c4": 6.677140097054758, - "c5": 6.7792215144958785, - "c6": 7.041050864865136, - "c7": 6.633847485607745 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334714, + "c4": 6.8053629218677685, + "c5": 5.104022191400821, + "c6": 3.402681460933894, + "c7": 1.701340730466947 }, "rgb": [238, 201, 159] }, @@ -78279,23 +78279,23 @@ "year": 1725, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -18.364436026235815, - "c2": -27.904647137105613, - "c3": -14.186060132688286, - "c4": -22.354164022318923, - "c5": -7.158932724427537, - "c6": -5.432891750171336, - "c7": 1.3996239626130915 + "points": { + "c1": -3.0991152587111124, + "c2": -9.367699347927534, + "c3": -30.812414743581012, + "c4": -19.99966686781554, + "c5": 30.894640602583536, + "c6": 28.41867808419707, + "c7": -24.52740386145973 }, - "vertexSeeds": { - "c1": 2.405699224485079, - "c2": 2.596519889289104, - "c3": 2.9108041691696864, - "c4": 2.9353936385253028, - "c5": 2.6471556946453694, - "c6": 2.6586761838993858, - "c7": 2.520024169299206 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.2718446601941755, + "c3": 3.559870550161814, + "c4": 2.847896440129448, + "c5": 2.1359223300970864, + "c6": 1.423948220064725, + "c7": 0.7119741100323638 }, "rgb": [86, 146, 138] }, @@ -78306,23 +78306,23 @@ "year": 1725, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": 0.9343398786317358, - "c2": -17.28878377129082, - "c3": 8.056436096278944, - "c4": 16.068358086895245, - "c5": 11.262831231803819, - "c6": 8.599366122081744, - "c7": 8.931675233944805 + "points": { + "c1": 6.234431407488092, + "c2": -2.9215313941439724, + "c3": 1.9052786180043846, + "c4": 6.832135032866837, + "c5": 6.629584239402806, + "c6": -11.313478760791481, + "c7": 9.890544710109559 }, - "vertexSeeds": { - "c1": 5.088796385559444, - "c2": 4.813001605327016, - "c3": 5.101504503936072, - "c4": 4.692423973026138, - "c5": 4.579145766654095, - "c6": 4.578816210862834, - "c7": 4.593900942622971 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -78333,23 +78333,23 @@ "year": 1725, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -5.915648189830133, - "c2": 13.682768916130186, - "c3": 0.23592868332389827, - "c4": 2.109275649043944, - "c5": -27.96987088376449, - "c6": 11.139954691481393, - "c7": 11.333805232573816 + "points": { + "c1": 26.21732227330309, + "c2": -1.4050334638534068, + "c3": 31.769437160065564, + "c4": -12.931286816059135, + "c5": 16.111108887311815, + "c6": 5.690889018010935, + "c7": -7.565312485496079 }, - "vertexSeeds": { - "c1": 5.195644913244686, - "c2": 5.581437417842919, - "c3": 5.978421822634719, - "c4": 5.095108695572963, - "c5": 5.230852754082075, - "c6": 5.399965253079122, - "c7": 5.155180543148899 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152567, + "c3": 7.5589459084604735, + "c4": 6.047156726768372, + "c5": 4.535367545076279, + "c6": 3.023578363384186, + "c7": 1.511789181692093 }, "rgb": [58, 15, 49] }, @@ -78360,23 +78360,23 @@ "year": 1725, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 18.624569674623118, - "c2": 0.7186981966527455, - "c3": -12.769227809912785, - "c4": -18.75108990407366, - "c5": 24.69655175196113, - "c6": 0.294293557088686, - "c7": -21.17340534421605 + "points": { + "c1": 24.27608252361035, + "c2": 15.933780584982337, + "c3": -17.373231484938024, + "c4": -23.92684471775968, + "c5": -16.73750447473518, + "c6": -10.161263371274266, + "c7": -1.2031271919859279 }, - "vertexSeeds": { - "c1": 5.918254115306266, - "c2": 5.49104258652047, - "c3": 6.1670814707011345, - "c4": 5.690235178234399, - "c5": 5.817641435455535, - "c6": 5.901796854521759, - "c7": 5.452411244744857 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072123, + "c3": 7.5127138233934385, + "c4": 6.01017105871474, + "c5": 4.5076282940360555, + "c6": 3.00508552935737, + "c7": 1.502542764678685 }, "rgb": [222, 0, 59] }, @@ -78387,23 +78387,23 @@ "year": 1725, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -15.117355511879428, - "c2": -15.638714654503959, - "c3": -30.22028851258524, - "c4": 3.3179610885019635, - "c5": 10.419651214507912, - "c6": -9.004160776385078, - "c7": -14.095119253316597 + "points": { + "c1": 2.5388717583408535, + "c2": -19.683033640140145, + "c3": 30.369569282753474, + "c4": 29.08933478587271, + "c5": -10.37989418125846, + "c6": -31.03519853276645, + "c7": -21.92129305831891 }, - "vertexSeeds": { - "c1": 3.6204027884426297, - "c2": 3.534747807086548, - "c3": 4.185344418072319, - "c4": 4.014818183110067, - "c5": 3.884743033033205, - "c6": 3.5329605921652365, - "c7": 3.7442922374716967 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170597, + "c3": 5.270457697642161, + "c4": 4.21636615811373, + "c5": 3.1622746185852986, + "c6": 2.1081830790568667, + "c7": 1.0540915395284316 }, "rgb": [58, 15, 49] }, @@ -78414,23 +78414,23 @@ "year": 1725, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -0.6202172456303998, - "c2": -21.378511308988998, - "c3": -13.182053761967442, - "c4": -18.202803403730105, - "c5": -24.721834346669514, - "c6": -29.45102406212963, - "c7": -0.9572232836117323 + "points": { + "c1": -10.99530225431537, + "c2": -2.9037130959795263, + "c3": -21.896246019867213, + "c4": 5.064226659837573, + "c5": -30.501999411703732, + "c6": 3.664321382173263, + "c7": 7.718341200348121 }, - "vertexSeeds": { - "c1": 4.735296158926444, - "c2": 5.388282955711766, - "c3": 4.606804341837233, - "c4": 5.347846650746662, - "c5": 4.873095137175704, - "c6": 5.291230835071982, - "c7": 5.399475330794198 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [86, 146, 138] }, @@ -78441,23 +78441,23 @@ "year": 1725, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -4.591971768196064, - "c2": -12.140640422141777, - "c3": -9.486020155598755, - "c4": 23.738304222150685, - "c5": 22.80637571130659, - "c6": 14.250696970008125, - "c7": 1.9179014390400795 + "points": { + "c1": -26.46837568873439, + "c2": 7.979800248038313, + "c3": 6.911589090069857, + "c4": -19.06641780409039, + "c5": 13.919258638956155, + "c6": 4.466969561214871, + "c7": -3.410839403211991 }, - "vertexSeeds": { - "c1": 1.990521514531415, - "c2": 1.7639748017136512, - "c3": 1.8613723764225556, - "c4": 1.6065379560914246, - "c5": 1.7835825495794229, - "c6": 1.8103771844344831, - "c7": 1.8197755916076623 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.8848821081830796, + "c3": 2.4040684234859, + "c4": 1.9232547387887207, + "c5": 1.4424410540915409, + "c6": 0.9616273693943614, + "c7": 0.48081368469718183 }, "rgb": [86, 146, 138] }, @@ -78468,23 +78468,23 @@ "year": 1725, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -3.332574785399057, - "c2": -25.362314272821116, - "c3": 21.032041061466817, - "c4": -1.7758919090939749, - "c5": -15.393200885781306, - "c6": -29.88930439932924, - "c7": -22.72100384204949 + "points": { + "c1": -26.485981604872116, + "c2": 13.483889438401803, + "c3": -22.04532961113936, + "c4": -23.89718162383795, + "c5": -3.462548732530891, + "c6": 23.608305159801546, + "c7": -28.62211481539859 }, - "vertexSeeds": { - "c1": 3.5110286125706356, - "c2": 3.4071944777835985, - "c3": 3.511289895530224, - "c4": 3.4419217505100708, - "c5": 3.551716038852245, - "c6": 3.460617822216558, - "c7": 3.684261122182903 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843275, + "c3": 4.50762829403606, + "c4": 3.6061026352288508, + "c5": 2.7045769764216345, + "c6": 1.8030513176144254, + "c7": 0.9015256588072158 }, "rgb": [58, 15, 49] }, @@ -78495,23 +78495,23 @@ "year": 1725, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 2.7676791289596565, - "c2": 19.545548502543625, - "c3": 6.367431015512288, - "c4": 9.300878697410731, - "c5": -16.75444580160132, - "c6": 24.521534919807337, - "c7": 13.073124018880002 + "points": { + "c1": 2.2392939381169583, + "c2": -11.879294891770112, + "c3": -17.926075464060844, + "c4": 25.02605059253264, + "c5": 24.304444305939562, + "c6": -10.61437375736476, + "c7": -2.9996800171083287 }, - "vertexSeeds": { - "c1": 4.4553856725662255, - "c2": 4.278863594035499, - "c3": 3.9052509864664313, - "c4": 4.5971135780329195, - "c5": 4.222347303618648, - "c6": 4.472663220120607, - "c7": 4.715997506732957 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658807, + "c3": 6.125751271382339, + "c4": 4.9006010171058705, + "c5": 3.6754507628294015, + "c6": 2.450300508552933, + "c7": 1.2251502542764647 }, "rgb": [58, 15, 49] }, @@ -78522,23 +78522,23 @@ "year": 1725, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 31.99265983201615, - "c2": -8.58358604997072, - "c3": -7.73044296120889, - "c4": 14.57585746283192, - "c5": -6.9481200291713066, - "c6": 8.06763387079831, - "c7": 32.07488463099293 + "points": { + "c1": -1.636007966977722, + "c2": 15.750165488530804, + "c3": -16.48341291050635, + "c4": -8.761874646737528, + "c5": -23.02994955226759, + "c6": 5.86312334227582, + "c7": -26.2215047027182 }, - "vertexSeeds": { - "c1": 3.5995374821306365, - "c2": 3.3840801495695754, - "c3": 3.501799367144553, - "c4": 3.41555155577089, - "c5": 3.7724281203559684, - "c6": 3.6834683565281385, - "c7": 3.4954697298490203 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [77, 76, 132] }, @@ -78549,23 +78549,23 @@ "year": 1725, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 20.26842546293834, - "c2": -9.095165518436039, - "c3": -11.978186013602246, - "c4": 13.306630658636841, - "c5": -15.520494633408047, - "c6": 4.123913059564799, - "c7": -22.02023484489147 + "points": { + "c1": -18.554591277677368, + "c2": 3.5844562422115835, + "c3": -22.270422846728238, + "c4": 9.10828832851562, + "c5": 22.18448846340739, + "c6": 19.392772008612667, + "c7": 23.39757778146155 }, - "vertexSeeds": { - "c1": 5.018656570291715, - "c2": 5.0925633532727, - "c3": 5.682771689298885, - "c4": 5.398521396072109, - "c5": 5.388030951876377, - "c6": 5.611148968421791, - "c7": 5.395901711309873 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945905, + "c3": 6.865464632454916, + "c4": 5.492371705963941, + "c5": 4.119278779472952, + "c6": 2.746185852981964, + "c7": 1.3730929264909884 }, "rgb": [222, 0, 59] }, @@ -78576,23 +78576,23 @@ "year": 1725, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -7.805572529064854, - "c2": -16.69608346710514, - "c3": 28.110582650899413, - "c4": -11.970254373880085, - "c5": 26.255161759188535, - "c6": 15.512532639071477, - "c7": -23.30046656615277 + "points": { + "c1": -3.112924249936146, + "c2": 15.572888126286323, + "c3": -13.707888681097867, + "c4": 20.787689397996367, + "c5": 12.163186753816348, + "c6": 22.252102578905934, + "c7": 14.65185906244848 }, - "vertexSeeds": { - "c1": 4.289220800096671, - "c2": 4.332936905316937, - "c3": 4.153615158569188, - "c4": 3.7333227152248667, - "c5": 4.222493768507989, - "c6": 4.344865048499584, - "c7": 3.937663236368551 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049931, + "c3": 5.20110957004161, + "c4": 4.16088765603329, + "c5": 3.1206657420249684, + "c6": 2.0804438280166475, + "c7": 1.040221914008327 }, "rgb": [58, 15, 49] }, @@ -78603,23 +78603,23 @@ "year": 1725, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -8.501455064864508, - "c2": -16.28887636309445, - "c3": 10.226429143456116, - "c4": -11.278982513219155, - "c5": 4.500390570723404, - "c6": 19.587153959989067, - "c7": 14.207480147954726 + "points": { + "c1": -25.16874009523127, + "c2": -0.12735253078236752, + "c3": -16.129926829283715, + "c4": 22.91120805597253, + "c5": 29.453339771501533, + "c6": 0.9441721049508587, + "c7": 23.84496212226292 }, - "vertexSeeds": { - "c1": 1.9216772202469925, - "c2": 1.906269334660619, - "c3": 1.9175926923233064, - "c4": 1.9055338915483393, - "c5": 1.911119562288934, - "c6": 1.9046459265385614, - "c7": 1.9077251769253982 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040222044, + "c3": 2.311604253351806, + "c4": 1.8492834026814542, + "c5": 1.3869625520111022, + "c6": 0.9246417013407501, + "c7": 0.46232085067035206 }, "rgb": [86, 146, 138] }, @@ -78630,23 +78630,23 @@ "year": 1725, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -26.767755325194752, - "c2": 32.39710680173888, - "c3": 34.784604783123804, - "c4": 39.48847362996825, - "c5": -35.80862457838895, - "c6": -10.21519323596948, - "c7": -34.61020888472042 + "points": { + "c1": 44.397498511108644, + "c2": 16.1465833663947, + "c3": -38.821048646758584, + "c4": 35.929248875604564, + "c5": -2.7609226912005056, + "c6": -1.5890355888554737, + "c7": 37.16406738707861 }, - "vertexSeeds": { - "c1": 9.563923961212321, - "c2": 9.626300433628495, - "c3": 9.67560721498518, - "c4": 9.627841874839323, - "c5": 9.46536392021077, - "c6": 9.519515282020999, - "c7": 9.270101409560677 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151183, + "c3": 11.581137309292659, + "c4": 9.264909847434135, + "c5": 6.948682385575611, + "c6": 4.632454923717048, + "c7": 2.316227461858524 }, "rgb": [86, 146, 138] }, @@ -78657,23 +78657,23 @@ "year": 1725, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 17.703563223741853, - "c2": 3.7403058126438893, - "c3": 9.853697266270366, - "c4": -39.11463733121118, - "c5": 40.8930910925545, - "c6": -30.922972302429365, - "c7": 41.65434787217667 + "points": { + "c1": -5.8566782907012325, + "c2": -30.657441887151908, + "c3": -24.762984294863383, + "c4": 3.550649911172549, + "c5": 2.533036775301923, + "c6": -40.52006980915715, + "c7": 11.990928363497218 }, - "vertexSeeds": { - "c1": 9.927278295469552, - "c2": 10.09911994110962, - "c3": 9.891979837012489, - "c4": 10.26400030609101, - "c5": 10.398242700141143, - "c6": 10.18707079771379, - "c7": 9.91444629886135 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.979195561719825, + "c3": 12.482662968099842, + "c4": 9.986130374479862, + "c5": 7.4895977808599445, + "c6": 4.993065187239963, + "c7": 2.4965325936199814 }, "rgb": [77, 76, 132] }, @@ -78684,23 +78684,23 @@ "year": 1725, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -29.555325050420144, - "c2": 36.59990009697851, - "c3": 14.30296973544651, - "c4": -2.9442738740837058, - "c5": 5.52217146328362, - "c6": -15.31683625016225, - "c7": -13.093750629205442 + "points": { + "c1": -30.16849481013346, + "c2": -42.180218921418216, + "c3": 11.37888185284298, + "c4": -26.30530585042206, + "c5": -35.57423102704796, + "c6": -38.07963103329278, + "c7": 13.147645733313155 }, - "vertexSeeds": { - "c1": 9.744991124228985, - "c2": 10.013413098027067, - "c3": 9.9125953404229, - "c4": 9.985432990639714, - "c5": 9.780706925315334, - "c6": 9.853434177212383, - "c7": 9.97801360525248 + "offsets": { + "c1": 16.73139158576052, + "c2": 14.34119278779468, + "c3": 11.950993989828959, + "c4": 9.56079519186318, + "c5": 7.17059639389734, + "c6": 4.78039759593156, + "c7": 2.39019879796578 }, "rgb": [86, 146, 138] }, @@ -78711,23 +78711,23 @@ "year": 1725, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 24.55815619911646, - "c2": -25.4970714119825, - "c3": -12.429234870975034, - "c4": 24.545866765016925, - "c5": 22.53179023033249, - "c6": 19.47378384536801, - "c7": -20.79703710291342 + "points": { + "c1": 28.718980916490132, + "c2": 7.137201366106048, + "c3": -30.79880605052971, + "c4": -20.147088016633624, + "c5": 21.41634078232572, + "c6": 9.998507537366791, + "c7": 8.583820216474429 }, - "vertexSeeds": { - "c1": 7.306109307878427, - "c2": 7.400201113353312, - "c3": 7.480932053032041, - "c4": 7.516379305396269, - "c5": 7.311997845310532, - "c6": 7.422372043655836, - "c7": 7.536103987954802 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686558, + "c3": 9.015256588072106, + "c4": 7.212205270457692, + "c5": 5.409153952843279, + "c6": 3.606102635228826, + "c7": 1.803051317614413 }, "rgb": [222, 0, 59] }, @@ -78738,23 +78738,23 @@ "year": 1725, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -27.391593105897314, - "c2": -24.280438765620776, - "c3": -3.937154461848234, - "c4": -28.419338698327707, - "c5": 11.2424757574281, - "c6": 4.228209399944856, - "c7": 26.47861329469853 + "points": { + "c1": 30.223304854737872, + "c2": 4.89583129501926, + "c3": -28.75621828478815, + "c4": 24.763546447103156, + "c5": 1.1374800345673997, + "c6": -1.3261892731127354, + "c7": 9.945543653855186 }, - "vertexSeeds": { - "c1": 6.068274488592516, - "c2": 6.604755912635415, - "c3": 6.317653389195503, - "c4": 5.990716085545767, - "c5": 6.492549296837416, - "c6": 6.319738756313823, - "c7": 6.497151443045899 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.486823855755894, + "c3": 7.9056865464632455, + "c4": 6.324549237170596, + "c5": 4.743411927877947, + "c6": 3.162274618585298, + "c7": 1.581137309292649 }, "rgb": [238, 201, 159] }, @@ -78765,23 +78765,23 @@ "year": 1725, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -15.55820121983459, - "c2": -8.966238093229244, - "c3": -0.8632964602980664, - "c4": 38.28400133481924, - "c5": -29.64601500076695, - "c6": 27.272628102698846, - "c7": 6.297504226098617 + "points": { + "c1": -39.348651362521736, + "c2": 18.00414488373123, + "c3": -13.565395812544686, + "c4": -19.641796086610427, + "c5": -34.64394770250733, + "c6": -23.97937576403726, + "c7": -32.14608744169536 }, - "vertexSeeds": { - "c1": 4.155160068712979, - "c2": 4.221426089134411, - "c3": 4.125460156606539, - "c4": 3.9783051693430584, - "c5": 4.146046303560801, - "c6": 4.179757076085262, - "c7": 4.0776210725542645 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848823, + "c3": 5.085529357374021, + "c4": 4.068423485899206, + "c5": 3.0513176144244047, + "c6": 2.034211742949603, + "c7": 1.0171058714748016 }, "rgb": [58, 15, 49] }, @@ -78792,23 +78792,23 @@ "year": 1725, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 23.063856523170514, - "c2": 16.052633259630745, - "c3": 25.894618530770572, - "c4": 18.886923139829534, - "c5": 25.02131811314031, - "c6": 21.634080951840936, - "c7": -19.45547575582173 + "points": { + "c1": 10.089368248778598, + "c2": 14.568952100541189, + "c3": -9.788013730656253, + "c4": 28.178161212193842, + "c5": -26.918906318630256, + "c6": 26.068778781395373, + "c7": -9.093065085918209 }, - "vertexSeeds": { - "c1": 4.161969062839073, - "c2": 4.321056085373456, - "c3": 3.8768230258748058, - "c4": 3.9846417722387444, - "c5": 4.270168877843674, - "c6": 3.899902370457734, - "c7": 3.9712681793245617 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009707, + "c3": 5.177993527508094, + "c4": 4.142394822006474, + "c5": 3.1067961165048534, + "c6": 2.071197411003233, + "c7": 1.0355987055016205 }, "rgb": [58, 15, 49] }, @@ -78819,23 +78819,23 @@ "year": 1725, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 11.890994389729315, - "c2": 7.314520996029266, - "c3": 24.760943703190662, - "c4": -26.33852071765016, - "c5": -8.735161009057297, - "c6": 26.919594787308263, - "c7": -11.17091294893272 + "points": { + "c1": 30.042982641126855, + "c2": -4.449544197563849, + "c3": 11.59357689025937, + "c4": -12.469158994068184, + "c5": 7.629970559361688, + "c6": 28.519266422388185, + "c7": 22.336496532600627 }, - "vertexSeeds": { - "c1": 1.6198011780314356, - "c2": 1.876655315492512, - "c3": 1.6577670803457663, - "c4": 1.6783202492328178, - "c5": 1.7641466741141052, - "c6": 1.724965112128015, - "c7": 1.7275554349699063 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.7184466019417477, + "c3": 2.2653721682847903, + "c4": 1.8122977346278328, + "c5": 1.3592233009708754, + "c6": 0.9061488673139149, + "c7": 0.45307443365695743 }, "rgb": [58, 15, 49] }, @@ -78846,23 +78846,23 @@ "year": 1725, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 33.3370342910945, - "c2": -17.01931495606104, - "c3": -30.238827870452692, - "c4": -22.773190444926918, - "c5": 26.5797230287557, - "c6": 17.36213903220245, - "c7": 30.21537254058657 + "points": { + "c1": -25.217204903106225, + "c2": 21.661662462536327, + "c3": 28.813692893713707, + "c4": 29.938939004514452, + "c5": 36.60858317152571, + "c6": -13.384675619467735, + "c7": 13.831061083507969 }, - "vertexSeeds": { - "c1": 1.458480942991823, - "c2": 1.511091013920576, - "c3": 1.4966841253580132, - "c4": 1.5500201265818738, - "c5": 1.467106619954988, - "c6": 1.4073882891823226, - "c7": 1.3584505842359738 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.2746185852981977, + "c3": 1.895515487748496, + "c4": 1.5164123901987976, + "c5": 1.1373092926490989, + "c6": 0.7582061950994002, + "c7": 0.37910309754969856 }, "rgb": [222, 0, 59] }, @@ -78873,23 +78873,23 @@ "year": 1725, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -18.934075363592925, - "c2": -29.788694663886623, - "c3": -0.625301784818447, - "c4": 11.238600992146608, - "c5": -21.847406250117718, - "c6": 33.84906787132513, - "c7": 5.53867125861688 + "points": { + "c1": 25.538980544620443, + "c2": 2.875026085638808, + "c3": 2.120737389908051, + "c4": -28.493008431086306, + "c5": 22.103954688905212, + "c6": -8.77432424548946, + "c7": -15.524560857571167 }, - "vertexSeeds": { - "c1": 8.405589140993015, - "c2": 8.809651207667132, - "c3": 8.388780121404581, - "c4": 8.995136949959761, - "c5": 8.551198463449728, - "c6": 9.361473847265101, - "c7": 8.691884582832662 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.50901525658807, + "c3": 11.257512713823393, + "c4": 9.006010171058714, + "c5": 6.754507628294035, + "c6": 4.503005085529357, + "c7": 2.2515025427646784 }, "rgb": [58, 15, 49] }, @@ -78900,23 +78900,23 @@ "year": 1726, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": -45.59252766292141, - "c2": 7.620379955741079, - "c3": 3.592003161961671, - "c4": 4.08069073733153, - "c5": -40.07193261564778, - "c6": 18.61768115408735, - "c7": 32.43145781378017 + "points": { + "c1": -7.638278707407878, + "c2": 39.93846936393548, + "c3": 30.75530648169243, + "c4": -29.190434023048006, + "c5": -14.270992405269915, + "c6": -41.32294142254236, + "c7": 7.785511938396482 }, - "vertexSeeds": { - "c1": 4.113938789559642, - "c2": 3.7456429080418863, - "c3": 3.9809979039782664, - "c4": 4.156227351856476, - "c5": 4.189728195260569, - "c6": 3.978817551964084, - "c7": 3.841298908268243 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728153, + "c3": 5.016181229773464, + "c4": 4.012944983818769, + "c5": 3.0097087378640794, + "c6": 2.0064724919093844, + "c7": 1.0032362459546953 }, "rgb": [58, 15, 49] }, @@ -78927,23 +78927,23 @@ "year": 1726, "resistanceReported": false, "duration": 57801600, - "curveSeeds": { - "c1": -22.322418453840534, - "c2": -27.61181048102565, - "c3": 15.374792633659823, - "c4": -53.682063138901654, - "c5": 16.347830996868694, - "c6": -65.56731932872415, - "c7": -30.708152760151677 + "points": { + "c1": -44.36731181552902, + "c2": 43.2772146081839, + "c3": -39.82740348679232, + "c4": 15.771057105432561, + "c5": -27.732326070435484, + "c6": -65.09491895274267, + "c7": 60.9781587447158 }, - "vertexSeeds": { - "c1": 8.946350739952532, - "c2": 8.453603790856157, - "c3": 8.464462913178195, - "c4": 9.012720438916173, - "c5": 8.286720326807329, - "c6": 9.186697198842817, - "c7": 8.352308363415714 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.14840499306519, + "c3": 10.957004160887662, + "c4": 8.765603328710133, + "c5": 6.574202496532604, + "c6": 4.382801664355057, + "c7": 2.1914008321775285 }, "rgb": [238, 201, 159] }, @@ -78954,23 +78954,23 @@ "year": 1725, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 12.394962800292582, - "c2": 23.147623102005227, - "c3": -33.21957456038247, - "c4": 14.679423446458898, - "c5": 2.274187967517868, - "c6": 29.312600925799785, - "c7": -39.16156232342195 + "points": { + "c1": -30.893668366171685, + "c2": -2.3661954087343346, + "c3": -8.380258079821623, + "c4": -6.273294266245621, + "c5": -8.196470486363623, + "c6": 32.10757839761662, + "c7": 30.31536550525756 }, - "vertexSeeds": { - "c1": 3.2115981163818135, - "c2": 3.3764834894019935, - "c3": 3.5443611925433065, - "c4": 3.413777028151416, - "c5": 3.307198169231095, - "c6": 3.3123128562503377, - "c7": 3.4779462884320846 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803049, + "c3": 4.484512251502544, + "c4": 3.5876098012020328, + "c5": 2.690707350901528, + "c6": 1.7938049006010164, + "c7": 0.8969024503005114 }, "rgb": [77, 76, 132] }, @@ -78981,23 +78981,23 @@ "year": 1725, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -16.24356499117883, - "c2": 3.666505908570919, - "c3": 16.13168006528528, - "c4": 32.786980889078094, - "c5": 1.3994845052833043, - "c6": -22.940390445234616, - "c7": -32.42187720819141 + "points": { + "c1": 6.947251517769892, + "c2": -2.1870319809736927, + "c3": 18.779649895527633, + "c4": 13.699346950501287, + "c5": -29.898319468562214, + "c6": 24.300715550213965, + "c7": 29.97707461087407 }, - "vertexSeeds": { - "c1": 1.4876690253191045, - "c2": 1.3688402868074967, - "c3": 1.38895100695831, - "c4": 1.4952608286661313, - "c5": 1.5201055482081194, - "c6": 1.4598107734450683, - "c7": 1.3946975608677354 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [58, 15, 49] }, @@ -79008,23 +79008,23 @@ "year": 1725, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -14.429199677099568, - "c2": -14.40116697005612, - "c3": 29.84681775232145, - "c4": -27.953426023657805, - "c5": 29.809431982310294, - "c6": -0.8825522945226005, - "c7": -5.326929229477788 + "points": { + "c1": 11.93776354759887, + "c2": -14.71898166139069, + "c3": -8.472776952283969, + "c4": -16.963612666060026, + "c5": 4.8032038759505795, + "c6": -24.673241010317106, + "c7": -13.020173036512883 }, - "vertexSeeds": { - "c1": 9.090893723377398, - "c2": 9.61480150086442, - "c3": 9.259390583226601, - "c4": 9.401779084264742, - "c5": 9.138460650262376, - "c6": 9.483673900051611, - "c7": 9.589682403516075 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055477, + "c6": 4.6232085067036515, + "c7": 2.3116042533518257 }, "rgb": [58, 15, 49] }, @@ -79035,23 +79035,23 @@ "year": 1725, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 20.958568513029515, - "c2": -5.281287361952799, - "c3": 0.4169898527736642, - "c4": -8.487049858362305, - "c5": 1.7079166043703893, - "c6": 18.817325499510435, - "c7": 10.111494652750917 + "points": { + "c1": 25.304411105743565, + "c2": -5.787625532300513, + "c3": -7.552717314968987, + "c4": -20.739236650117274, + "c5": 9.819519892881647, + "c6": -28.164571466930557, + "c7": 14.454385158930034 }, - "vertexSeeds": { - "c1": 2.111025917775477, - "c2": 2.110522245610123, - "c3": 2.113773060624647, - "c4": 2.1043279908493204, - "c5": 2.106131951919542, - "c6": 2.109923182257928, - "c7": 2.0989692171516414 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244247, + "c3": 2.542764678686987, + "c4": 2.0342117429495996, + "c5": 1.5256588072122124, + "c6": 1.0171058714748251, + "c7": 0.5085529357373872 }, "rgb": [77, 76, 132] }, @@ -79062,23 +79062,23 @@ "year": 1725, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 9.930358962755413, - "c2": -24.505501956840284, - "c3": 16.137025404920855, - "c4": -7.829214979337738, - "c5": 29.33317490092444, - "c6": -27.511751725625523, - "c7": 13.57661185474636 + "points": { + "c1": 16.175961826611548, + "c2": -35.30066209286404, + "c3": 33.85996287806169, + "c4": -21.047797450287483, + "c5": -5.330552868124414, + "c6": -25.758627907693885, + "c7": -17.836381451002392 }, - "vertexSeeds": { - "c1": 12.526624116029545, - "c2": 11.599585346696795, - "c3": 11.677646998203091, - "c4": 12.498351437638547, - "c5": 12.388406072574746, - "c6": 11.511114822155516, - "c7": 11.996339567043627 + "offsets": { + "c1": 21.262135922330096, + "c2": 18.224687933425784, + "c3": 15.187239944521503, + "c4": 12.149791955617188, + "c5": 9.112343966712906, + "c6": 6.074895977808594, + "c7": 3.037447988904313 }, "rgb": [86, 146, 138] }, @@ -79089,23 +79089,23 @@ "year": 1726, "resistanceReported": false, "duration": 37843200, - "curveSeeds": { - "c1": -33.9380813320908, - "c2": -6.443722194492501, - "c3": -27.332561687764432, - "c4": 20.555453401426384, - "c5": -17.752786623405832, - "c6": 5.7848354523232, - "c7": -36.8166136875852 + "points": { + "c1": -11.124137956210575, + "c2": 45.9516999345253, + "c3": 42.35212472046863, + "c4": 50.83558870442055, + "c5": -11.971539920345649, + "c6": 48.5573131242678, + "c7": -27.181958221022494 }, - "vertexSeeds": { - "c1": 10.169066715328547, - "c2": 10.32760587801391, - "c3": 11.122720924040287, - "c4": 10.0559384702094, - "c5": 10.617547650611366, - "c6": 10.157697432819583, - "c7": 10.977903729911292 + "offsets": { + "c1": 19.093851132686083, + "c2": 16.366158113730926, + "c3": 13.638465094775766, + "c4": 10.910772075820635, + "c5": 8.183079056865475, + "c6": 5.455386037910317, + "c7": 2.7276930189551587 }, "rgb": [86, 146, 138] }, @@ -79116,23 +79116,23 @@ "year": 1725, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 13.81183193103658, - "c2": -11.855278536972016, - "c3": -22.11159410473058, - "c4": 21.86326989033018, - "c5": -28.62902906593615, - "c6": -17.20000476600303, - "c7": 11.904268339829194 + "points": { + "c1": -29.963160033291132, + "c2": -39.83098082310496, + "c3": 3.1039058622719224, + "c4": -10.291671744029284, + "c5": -9.228064902961382, + "c6": -39.428320513884344, + "c7": 14.113369787248395 }, - "vertexSeeds": { - "c1": 10.242642979659157, - "c2": 10.704588404317603, - "c3": 9.795721594637733, - "c4": 10.462892229870556, - "c5": 9.857579760525159, - "c6": 9.606046558104795, - "c7": 10.742701612180216 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846047, + "c3": 13.129912159038373, + "c4": 10.503929727230698, + "c5": 7.877947295423024, + "c6": 5.251964863615349, + "c7": 2.6259824318076745 }, "rgb": [58, 15, 49] }, @@ -79143,23 +79143,23 @@ "year": 1726, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -1.028036766334722, - "c2": 23.642890836749594, - "c3": 11.088766987807453, - "c4": 9.496076313443318, - "c5": -19.91990914193106, - "c6": -30.89902232752901, - "c7": 2.9813402999443497 + "points": { + "c1": -15.383724808537774, + "c2": 4.9673493131939, + "c3": -7.607873697104054, + "c4": 7.985514391437157, + "c5": 3.448264190476692, + "c6": 36.416917092794556, + "c7": 18.18342162016077 }, - "vertexSeeds": { - "c1": 5.018061093978032, - "c2": 5.240139232816582, - "c3": 4.749665285470792, - "c4": 4.464293453171138, - "c5": 4.408031962473327, - "c6": 5.148984194816524, - "c7": 5.004502574013898 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940356, + "c3": 6.287563569116968, + "c4": 5.03005085529357, + "c5": 3.772538141470178, + "c6": 2.515025427646785, + "c7": 1.2575127138233926 }, "rgb": [86, 146, 138] }, @@ -79170,23 +79170,23 @@ "year": 1725, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -36.84800598242715, - "c2": -25.41757154760944, - "c3": -24.831254159093596, - "c4": 21.49246046648645, - "c5": 0.6035295229675341, - "c6": 2.3849540754154432, - "c7": -23.73424340175564 + "points": { + "c1": -33.86119698157841, + "c2": -17.50167428112532, + "c3": -18.28097699690529, + "c4": 25.230204972543675, + "c5": 3.6008941299906496, + "c6": -19.995254026399824, + "c7": 5.378924778297531 }, - "vertexSeeds": { - "c1": 9.010142933126724, - "c2": 10.435538454758287, - "c3": 10.969427078874428, - "c4": 10.443299096291582, - "c5": 10.840428648826165, - "c6": 10.63236343378551, - "c7": 8.890217319293923 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.811373092926486, + "c3": 13.176144244105414, + "c4": 10.540915395284328, + "c5": 7.905686546463247, + "c6": 5.2704576976421675, + "c7": 2.6352288488210798 }, "rgb": [238, 201, 159] }, @@ -79197,23 +79197,23 @@ "year": 1725, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 24.682567518667113, - "c2": -26.2100845871283, - "c3": -32.20033489958963, - "c4": 18.76358811702307, - "c5": 11.301925682790063, - "c6": -6.312444874716029, - "c7": 2.3872562557229884 + "points": { + "c1": -25.95058061992518, + "c2": -34.32345558974324, + "c3": 18.634684167654974, + "c4": 1.9239346253131373, + "c5": -28.318135283189225, + "c6": -1.8806363259769654, + "c7": 2.187446911620299 }, - "vertexSeeds": { - "c1": 9.094455494662462, - "c2": 9.223790902744458, - "c3": 9.131082039168778, - "c4": 9.18226836293873, - "c5": 9.198911734432343, - "c6": 9.188007450101589, - "c7": 9.275977336472216 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.37031900138697, + "c3": 11.141932501155818, + "c4": 8.91354600092461, + "c5": 6.685159500693458, + "c6": 4.456773000462305, + "c7": 2.2283865002311525 }, "rgb": [238, 201, 159] }, @@ -79224,23 +79224,23 @@ "year": 1725, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -35.63890216153224, - "c2": 18.57742671127705, - "c3": 12.734495447389982, - "c4": 15.907508305304816, - "c5": 34.39151265345686, - "c6": 2.6113472243874796, - "c7": 14.768269848522792 + "points": { + "c1": -36.836745301963624, + "c2": 15.078144032236239, + "c3": -9.375299097725218, + "c4": 8.991481500117452, + "c5": -2.6703102213475205, + "c6": -34.59898002151546, + "c7": -30.03849526265521 }, - "vertexSeeds": { - "c1": 4.672122148880451, - "c2": 4.952053125024957, - "c3": 5.672969884518107, - "c4": 5.584174278215681, - "c5": 5.151309774480274, - "c6": 4.990392706775917, - "c7": 4.919155272315494 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785019, + "c3": 6.77300046232085, + "c4": 5.41840036985668, + "c5": 4.0638002773925095, + "c6": 2.70920018492834, + "c7": 1.35460009246417 }, "rgb": [222, 0, 59] }, @@ -79251,23 +79251,23 @@ "year": 1726, "resistanceReported": false, "duration": 45619200, - "curveSeeds": { - "c1": 44.7880831414993, - "c2": 54.696136002166014, - "c3": -14.400964898506814, - "c4": 47.47468256867302, - "c5": -31.42377921196883, - "c6": -2.0655772303793185, - "c7": 51.05451294887098 + "points": { + "c1": 29.276478465524946, + "c2": -42.41941554783928, + "c3": 30.873592603485434, + "c4": 34.9804255104532, + "c5": 29.112086547986607, + "c6": -30.685031993444106, + "c7": 14.328237306718918 }, - "vertexSeeds": { - "c1": 0.6125282203403972, - "c2": 0.5479984641850205, - "c3": 0.5819389569663971, - "c4": 0.5492659434620463, - "c5": 0.5593122476161305, - "c6": 0.6153881529737741, - "c7": 0.5629865731259042 + "offsets": { + "c1": 1.0679611650485437, + "c2": 0.9153952843273234, + "c3": 0.7628294036061022, + "c4": 0.610263522884882, + "c5": 0.4576976421636617, + "c6": 0.3051317614424414, + "c7": 0.15256588072122024 }, "rgb": [222, 0, 59] }, @@ -79278,23 +79278,23 @@ "year": 1725, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 7.374816913035943, - "c2": -1.1909920291617269, - "c3": -29.283933812843003, - "c4": 16.931024877611762, - "c5": -18.394522410178258, - "c6": 13.056833264715813, - "c7": 26.047167789206156 + "points": { + "c1": 34.96517886495501, + "c2": -27.96512556322034, + "c3": -38.53547708456616, + "c4": 7.471696576982303, + "c5": 16.0934967967953, + "c6": -38.31379697553719, + "c7": 14.867106293286291 }, - "vertexSeeds": { - "c1": 8.555031284175293, - "c2": 9.621612013982626, - "c3": 9.161322051099791, - "c4": 10.271444288185116, - "c5": 8.417374228225576, - "c6": 10.101209045406172, - "c7": 8.919459914565392 + "offsets": { + "c1": 17.60517799352751, + "c2": 15.090152565880722, + "c3": 12.575127138233935, + "c4": 10.060101710587148, + "c5": 7.545076282940361, + "c6": 5.030050855293574, + "c7": 2.515025427646787 }, "rgb": [86, 146, 138] }, @@ -79305,23 +79305,23 @@ "year": 1725, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -24.033120053215853, - "c2": 32.53528642284765, - "c3": -20.895994778986868, - "c4": 13.143006515986833, - "c5": -31.17564020452945, - "c6": -3.4219446040674484, - "c7": 14.498843193022928 + "points": { + "c1": 14.050078348108329, + "c2": 31.311108568032182, + "c3": 14.27360445886594, + "c4": 7.600410711386971, + "c5": -6.387867507308005, + "c6": 18.53356886226581, + "c7": -4.269543610701874 }, - "vertexSeeds": { - "c1": 2.984759988572506, - "c2": 2.9074481173588818, - "c3": 2.7715382024792183, - "c4": 3.303684569914468, - "c5": 3.168862952266714, - "c6": 2.9151528219484004, - "c7": 2.9363417481703484 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998611, + "c3": 4.022191400832179, + "c4": 3.217753120665742, + "c5": 2.4133148404993054, + "c6": 1.6088765603328687, + "c7": 0.8044382801664368 }, "rgb": [238, 201, 159] }, @@ -79332,23 +79332,23 @@ "year": 1725, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -5.940191371615761, - "c2": -23.770135698352526, - "c3": 15.840212532797828, - "c4": 32.8124527629202, - "c5": -17.077828234643402, - "c6": 10.451575170637803, - "c7": 14.66880960541556 + "points": { + "c1": -12.500578126684598, + "c2": 6.165148665226646, + "c3": 16.690270663151175, + "c4": -21.23339060747811, + "c5": -29.25687075420646, + "c6": -4.464757320487173, + "c7": 18.75657408002148 }, - "vertexSeeds": { - "c1": 4.03498484082402, - "c2": 4.1589310420349985, - "c3": 3.988598606690682, - "c4": 3.7730277363703695, - "c5": 4.360922755343097, - "c6": 3.7592680518270347, - "c7": 4.560757169673388 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [58, 15, 49] }, @@ -79359,23 +79359,23 @@ "year": 1726, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 37.692117399979324, - "c2": -23.77998842361145, - "c3": -13.533198297732074, - "c4": 17.56039012341698, - "c5": -20.0202397349204, - "c6": -20.647706960414993, - "c7": -17.828449564887077 + "points": { + "c1": 35.78450069871471, + "c2": -35.895663434582744, + "c3": -27.529993010129935, + "c4": -35.65833974870828, + "c5": 1.3090311401432473, + "c6": 32.828547096853114, + "c7": -14.982890212657821 }, - "vertexSeeds": { - "c1": 4.320628978688704, - "c2": 4.017126850879924, - "c3": 4.085583051358286, - "c4": 3.9562500321948786, - "c5": 4.43014820032724, - "c6": 4.413182342788084, - "c7": 4.587794907059655 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -79386,23 +79386,23 @@ "year": 1726, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": -5.9466541922528435, - "c2": -2.725823426843661, - "c3": -40.45069285159408, - "c4": -25.092416134993087, - "c5": -40.57694293943691, - "c6": 33.56927091692335, - "c7": -1.5603290198483606 + "points": { + "c1": -51.36374744600123, + "c2": -54.15815919203415, + "c3": -17.593548770263602, + "c4": 46.550441099794135, + "c5": 8.736633534718756, + "c6": -3.986766929356506, + "c7": -15.874829395812633 }, - "vertexSeeds": { - "c1": 5.417325603918968, - "c2": 7.053069296460844, - "c3": 5.938113271021119, - "c4": 7.330216590716036, - "c5": 6.057743084178478, - "c6": 7.429851742095387, - "c7": 6.289819888901012 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778088, + "c3": 10.217290799815073, + "c4": 8.173832639852055, + "c5": 6.130374479889046, + "c6": 4.086916319926027, + "c7": 2.0434581599630137 }, "rgb": [222, 0, 59] }, @@ -79413,23 +79413,23 @@ "year": 1726, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 42.35921428351657, - "c2": -6.300470155869299, - "c3": -38.51071004262867, - "c4": 15.531928170142677, - "c5": 12.167619651347124, - "c6": -29.716122780703778, - "c7": -3.00602275030608 + "points": { + "c1": 6.3904978631590765, + "c2": -31.16885852380411, + "c3": 33.35669329745898, + "c4": 23.284147520740653, + "c5": -34.7992765114402, + "c6": -27.86643352284805, + "c7": -9.103666286007837 }, - "vertexSeeds": { - "c1": 1.1111424120987294, - "c2": 1.0641720463142612, - "c3": 1.1400895446400154, - "c4": 0.9841781435286763, - "c5": 1.0777783177030749, - "c6": 1.0313818516517723, - "c7": 0.9758763161712853 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937586, + "c3": 1.4331946370781328, + "c4": 1.146555709662506, + "c5": 0.8599167822468793, + "c6": 0.5732778548312524, + "c7": 0.28663892741562685 }, "rgb": [238, 201, 159] }, @@ -79440,23 +79440,23 @@ "year": 1725, "resistanceReported": true, "duration": 19094400, - "curveSeeds": { - "c1": -3.0446550792934666, - "c2": -4.139040212072903, - "c3": -26.266473106433324, - "c4": 22.885799967429204, - "c5": 25.561105658222946, - "c6": -27.21572845939859, - "c7": -16.7323449080479 + "points": { + "c1": -9.563771643729599, + "c2": -25.551433383477203, + "c3": -25.91799666148492, + "c4": -26.80740823887826, + "c5": -23.140279150125675, + "c6": -22.7296144360831, + "c7": -6.515931929350465 }, - "vertexSeeds": { - "c1": 3.0098760582249318, - "c2": 2.9362574041833547, - "c3": 3.177928910954426, - "c4": 2.987954923070164, - "c5": 2.9617219033822972, - "c6": 3.0190688370424263, - "c7": 2.9596279534246883 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.6047156726768375, + "c3": 3.837263060564031, + "c4": 3.069810448451225, + "c5": 2.3023578363384187, + "c6": 1.5349052242256125, + "c7": 0.7674526121128062 }, "rgb": [222, 0, 59] }, @@ -79467,23 +79467,23 @@ "year": 1726, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 19.527320065849935, - "c2": -12.766373396838741, - "c3": -10.5877256383476, - "c4": 2.8847149458834096, - "c5": 5.531733085673473, - "c6": 37.33805501092715, - "c7": -20.09560372352018 + "points": { + "c1": -40.648297616145726, + "c2": -28.169526381760825, + "c3": 2.488482195266407, + "c4": -29.158232038145144, + "c5": 38.686699509411554, + "c6": 34.04493446073904, + "c7": -33.02119281569951 }, - "vertexSeeds": { - "c1": 6.466757094846773, - "c2": 5.839098332403054, - "c3": 6.651251434636863, - "c4": 6.410797383397796, - "c5": 6.445769705362772, - "c6": 6.038651135786287, - "c7": 6.328682731938665 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [77, 76, 132] }, @@ -79494,23 +79494,23 @@ "year": 1726, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -32.484576099823215, - "c2": -17.501907490649998, - "c3": 21.99675627601983, - "c4": -42.055045002224205, - "c5": 9.360928763193797, - "c6": -4.3940402163423045, - "c7": 37.27374299317952 + "points": { + "c1": 17.112027723261292, + "c2": -22.51331214645143, + "c3": 38.9998511289973, + "c4": -19.310726358354536, + "c5": -17.54527193667939, + "c6": 5.707188940094731, + "c7": -32.50786806816154 }, - "vertexSeeds": { - "c1": 3.89329363771407, - "c2": 3.777924827189052, - "c3": 4.187333968104851, - "c4": 4.19232198384537, - "c5": 4.040020908122362, - "c6": 3.6394882267334343, - "c7": 3.500045613084222 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374016, + "c4": 4.0684234858992125, + "c5": 3.0513176144244074, + "c6": 2.034211742949603, + "c7": 1.0171058714747991 }, "rgb": [238, 201, 159] }, @@ -79521,23 +79521,23 @@ "year": 1725, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -14.650858787083191, - "c2": -2.42463649761741, - "c3": -12.072679152442564, - "c4": 14.040730127549786, - "c5": -21.639093793404115, - "c6": -3.8876662814555303, - "c7": -4.584658618661095 + "points": { + "c1": -19.314655892660472, + "c2": 28.954961561019942, + "c3": -18.30714639606221, + "c4": 35.22292218604274, + "c5": 26.449307578102633, + "c6": -20.56434686901866, + "c7": 2.785634389746292 }, - "vertexSeeds": { - "c1": 9.183836889298652, - "c2": 9.692029720549991, - "c3": 9.23757007231678, - "c4": 9.35795677210275, - "c5": 9.129664466066508, - "c6": 9.04285114611979, - "c7": 9.506254841698892 + "offsets": { + "c1": 16.472491909385116, + "c2": 14.119278779472964, + "c3": 11.766065649560808, + "c4": 9.412852519648636, + "c5": 7.059639389736482, + "c6": 4.706426259824328, + "c7": 2.353213129912174 }, "rgb": [222, 0, 59] }, @@ -79548,23 +79548,23 @@ "year": 1726, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 4.57251692502377, - "c2": 33.52492409084806, - "c3": 15.931330780398262, - "c4": -17.356424408774604, - "c5": 32.78253155288367, - "c6": 10.351496033794348, - "c7": -10.396992930594827 + "points": { + "c1": -14.471419984248186, + "c2": -27.73008674895677, + "c3": -10.558457457068869, + "c4": 6.372593422471432, + "c5": -12.065123428027487, + "c6": 21.821974447144555, + "c7": 14.365600070514475 }, - "vertexSeeds": { - "c1": 9.164260687565521, - "c2": 8.807285938472004, - "c3": 8.854045070069425, - "c4": 9.031371724784329, - "c5": 8.950699616451622, - "c6": 8.938231806131395, - "c7": 8.88855380431253 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748956, + "c3": 11.349976883957458, + "c4": 9.079981507165977, + "c5": 6.809986130374478, + "c6": 4.53999075358298, + "c7": 2.2699953767914978 }, "rgb": [238, 201, 159] }, @@ -79575,23 +79575,23 @@ "year": 1726, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -42.5367813815522, - "c2": -26.614168871435446, - "c3": 0.2464120865473305, - "c4": -14.078699102263407, - "c5": 2.993919249806744, - "c6": 30.596923325284536, - "c7": -35.15115052958585 + "points": { + "c1": 5.452961894349734, + "c2": -42.99861717163631, + "c3": -5.59427188837757, + "c4": 9.716927168050482, + "c5": 4.013432459743292, + "c6": 12.550007146651488, + "c7": -40.266205582524535 }, - "vertexSeeds": { - "c1": 6.722465130078149, - "c2": 6.669177486095598, - "c3": 6.432084727115064, - "c4": 6.819747943809979, - "c5": 6.2730563586485655, - "c6": 6.8520256378843545, - "c7": 6.600973531420154 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.93065187239945, + "c3": 8.275543226999547, + "c4": 6.620434581599628, + "c5": 4.965325936199725, + "c6": 3.3102172907998213, + "c7": 1.6551086453999184 }, "rgb": [238, 201, 159] }, @@ -79602,23 +79602,23 @@ "year": 1726, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 25.016019759382196, - "c2": -2.2762269769251304, - "c3": -37.265957354169124, - "c4": -18.009664024055958, - "c5": -36.78519382000762, - "c6": 29.37655154913609, - "c7": 33.092785500983275 + "points": { + "c1": -1.6516925277189713, + "c2": -40.31853430664936, + "c3": 19.32607172932986, + "c4": -16.740282426502485, + "c5": -25.79434881876964, + "c6": -7.180862794903533, + "c7": 42.74050850595055 }, - "vertexSeeds": { - "c1": 0.7527869590557736, - "c2": 0.7829073867498415, - "c3": 0.7489516938744477, - "c4": 0.767995732920179, - "c5": 0.7712745003987537, - "c6": 0.7849477484488007, - "c7": 0.7597138207514142 + "offsets": { + "c1": 1.3915857605177993, + "c2": 1.1927877947295422, + "c3": 0.9939898289412852, + "c4": 0.7951918631530281, + "c5": 0.5963938973647711, + "c6": 0.3975959315765141, + "c7": 0.19879796578825704 }, "rgb": [222, 0, 59] }, @@ -79629,23 +79629,23 @@ "year": 1726, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -10.329011926741387, - "c2": 25.740255791937834, - "c3": 8.190372326586228, - "c4": 2.9327718748142857, - "c5": 4.226225022689071, - "c6": -5.643339293904209, - "c7": 21.450115881708577 + "points": { + "c1": 32.656511791227175, + "c2": -30.45454134669773, + "c3": -28.17760903889861, + "c4": -14.788314639785625, + "c5": -14.431252172190579, + "c6": -4.664999191889354, + "c7": 0.5364444945427707 }, - "vertexSeeds": { - "c1": 9.484714789061512, - "c2": 9.300225421599121, - "c3": 8.591683843536039, - "c4": 9.785541784775253, - "c5": 9.403987592251424, - "c6": 8.596292270559864, - "c7": 8.743432913997891 + "offsets": { + "c1": 16.763754045307444, + "c2": 14.368932038834956, + "c3": 11.974110032362459, + "c4": 9.579288025889971, + "c5": 7.1844660194174725, + "c6": 4.7896440129449855, + "c7": 2.394822006472499 }, "rgb": [86, 146, 138] }, @@ -79656,23 +79656,23 @@ "year": 1726, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 23.08585580362793, - "c2": -9.319971860868243, - "c3": 14.052156431683883, - "c4": 38.473559900448464, - "c5": -35.04246144201728, - "c6": -22.962628934012983, - "c7": 13.834926605144737 + "points": { + "c1": 29.873654456189797, + "c2": -39.52500512436269, + "c3": -11.022255894534013, + "c4": 37.79619051220625, + "c5": 37.16638108899349, + "c6": -5.250843399408048, + "c7": -35.47446398474961 }, - "vertexSeeds": { - "c1": 6.649279678253546, - "c2": 6.812423906712664, - "c3": 6.718717113841315, - "c4": 6.954618273241876, - "c5": 6.8566813460830005, - "c6": 6.975331595133544, - "c7": 6.661975283686811 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600563, + "c3": 8.391123439667117, + "c4": 6.712898751733699, + "c5": 5.034674063800281, + "c6": 3.356449375866837, + "c7": 1.6782246879334184 }, "rgb": [86, 146, 138] }, @@ -79683,23 +79683,23 @@ "year": 1725, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 9.545146611641435, - "c2": -24.640104112348112, - "c3": -20.15076355573874, - "c4": -4.562182878464384, - "c5": 23.299254775152825, - "c6": -15.894616135365347, - "c7": 5.073467985756146 + "points": { + "c1": -5.353703347307182, + "c2": 32.49662222001497, + "c3": 24.983561798433833, + "c4": -1.9594318677286182, + "c5": -14.768324955774371, + "c6": 4.905301355587888, + "c7": -17.708058835500324 }, - "vertexSeeds": { - "c1": 3.9997385829379337, - "c2": 4.507534288271996, - "c3": 4.532665308219594, - "c4": 3.922775617318944, - "c5": 4.382920680137182, - "c6": 4.269682113238052, - "c7": 4.156981467742336 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -79710,23 +79710,23 @@ "year": 1725, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 8.561234346323825, - "c2": 5.428815205167105, - "c3": -14.266238458584453, - "c4": -0.33069523025896785, - "c5": 20.13622790747692, - "c6": 2.197872116030645, - "c7": -21.893205623621117 + "points": { + "c1": -24.18222100079523, + "c2": -22.006136882595044, + "c3": -2.6802812238196623, + "c4": -21.387661704493723, + "c5": -17.92791526969326, + "c6": 12.132128885316927, + "c7": -0.9372841485995984 }, - "vertexSeeds": { - "c1": 3.1109244069180955, - "c2": 2.667872837363004, - "c3": 2.704251020516281, - "c4": 2.9488067873394184, - "c5": 3.200594157441521, - "c6": 2.7748351114524668, - "c7": 2.681659039813533 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [238, 201, 159] }, @@ -79737,23 +79737,23 @@ "year": 1726, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 23.81551775476052, - "c2": -12.456088859517056, - "c3": -3.6469622892945175, - "c4": -18.870787764662126, - "c5": -23.938833667947804, - "c6": -3.7464056554300136, - "c7": 29.050958509002697 + "points": { + "c1": 29.81969578643313, + "c2": -23.87519905686164, + "c3": 30.654013575610563, + "c4": 23.008061075108017, + "c5": 16.482544996260778, + "c6": -19.70941306633692, + "c7": -25.973553916158306 }, - "vertexSeeds": { - "c1": 5.031282221610383, - "c2": 4.868628475749916, - "c3": 4.629738898488415, - "c4": 5.039860472588799, - "c5": 4.373534904391114, - "c6": 4.965818245601824, - "c7": 4.811377121857929 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -79764,23 +79764,23 @@ "year": 1726, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -13.108147293970525, - "c2": 39.84406254396342, - "c3": 11.524101874350094, - "c4": -23.372823177725778, - "c5": 25.47326814486439, - "c6": -25.461547359634018, - "c7": -27.727008176764322 + "points": { + "c1": -43.456208379630596, + "c2": -2.249963412727901, + "c3": -28.201297269373192, + "c4": 44.16621357593196, + "c5": 11.180575062432055, + "c6": -13.78447301109918, + "c7": 39.29625292287615 }, - "vertexSeeds": { - "c1": 3.1730987402052433, - "c2": 3.044146637571893, - "c3": 3.302354272380012, - "c4": 3.142837354645038, - "c5": 3.1834923985637986, - "c6": 3.1210272211387973, - "c7": 3.2807460765759178 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033284, + "c4": 3.328710124826629, + "c5": 2.496532593619973, + "c6": 1.6643550624133177, + "c7": 0.8321775312066556 }, "rgb": [58, 15, 49] }, @@ -79791,23 +79791,23 @@ "year": 1726, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 1.9271195620632184, - "c2": 5.092660340058302, - "c3": 33.47332094512344, - "c4": 3.3569917345386457, - "c5": -7.416915286996463, - "c6": -28.973438685146355, - "c7": -6.813822469547574 + "points": { + "c1": -22.07274958005017, + "c2": 25.774108179393785, + "c3": -38.958033514194696, + "c4": 10.262516014039058, + "c5": -27.028676560370666, + "c6": -29.943673162968622, + "c7": 9.87671888803252 }, - "vertexSeeds": { - "c1": 7.7027176388893634, - "c2": 7.599703132970933, - "c3": 7.57786599285803, - "c4": 7.628862332436643, - "c5": 7.6762027148429635, - "c6": 7.657989018411222, - "c7": 7.6296454621538885 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048555, + "c3": 9.223300970873808, + "c4": 7.378640776699064, + "c5": 5.5339805825242365, + "c6": 3.689320388349491, + "c7": 1.8446601941747456 }, "rgb": [222, 0, 59] }, @@ -79818,23 +79818,23 @@ "year": 1726, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 4.728310561820159, - "c2": 13.56066642783422, - "c3": 11.458260115048787, - "c4": 1.0180198253698016, - "c5": -25.038762613789473, - "c6": -20.232556754902184, - "c7": 4.940699872325638 + "points": { + "c1": 2.8373960077828926, + "c2": -18.687398612891812, + "c3": 11.957563343883365, + "c4": -20.202979902390645, + "c5": 22.499542497659647, + "c6": -26.902035387518715, + "c7": 16.95862637174529 }, - "vertexSeeds": { - "c1": 4.466966972961425, - "c2": 4.46134055724656, - "c3": 4.533663794748727, - "c4": 4.45113592165418, - "c5": 4.47794517137801, - "c6": 4.469611615610503, - "c7": 4.486810998716449 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452153, + "c3": 5.4322699953767986, + "c4": 4.345815996301417, + "c5": 3.2593619972260632, + "c6": 2.1729079981507087, + "c7": 1.0864539990753543 }, "rgb": [77, 76, 132] }, @@ -79845,23 +79845,23 @@ "year": 1726, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -18.786769075202198, - "c2": 35.103087832138186, - "c3": -7.987822193437477, - "c4": 9.747420114517631, - "c5": 3.0259145402446492, - "c6": 4.283110149348559, - "c7": 12.688029637179142 + "points": { + "c1": 35.694202921816654, + "c2": 39.64804150824372, + "c3": -27.2531368628827, + "c4": -24.612643952647556, + "c5": -1.9109350738486413, + "c6": -9.562463799677598, + "c7": -29.625997565104782 }, - "vertexSeeds": { - "c1": 3.572724787886664, - "c2": 3.8336323646432207, - "c3": 4.257912943290472, - "c4": 4.084693093973939, - "c5": 3.5414324006707307, - "c6": 3.6265212114081935, - "c7": 3.6787701420254795 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130377, + "c3": 5.247341655108644, + "c4": 4.197873324086918, + "c5": 3.1484049930651907, + "c6": 2.098936662043459, + "c7": 1.0494683310217316 }, "rgb": [86, 146, 138] }, @@ -79872,23 +79872,23 @@ "year": 1726, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 27.532631769583055, - "c2": -19.7606517347115, - "c3": -27.388646847143374, - "c4": 16.575031855245435, - "c5": -17.278420285339294, - "c6": -0.9192937883306378, - "c7": 24.697273580359038 + "points": { + "c1": -0.5810091759009062, + "c2": 13.603166041413438, + "c3": 20.75156929177806, + "c4": 2.164104138532821, + "c5": 27.000186094706237, + "c6": -14.160489900992847, + "c7": -2.221367508578062 }, - "vertexSeeds": { - "c1": 5.808092902790044, - "c2": 5.435591693767234, - "c3": 5.279849235579588, - "c4": 5.418336816345089, - "c5": 5.709823356045326, - "c6": 5.322282956240066, - "c7": 5.420359725729598 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629679, + "c3": 7.2584373555247295, + "c4": 5.806749884419795, + "c5": 4.355062413314847, + "c6": 2.9033749422098976, + "c7": 1.4516874711049488 }, "rgb": [222, 0, 59] }, @@ -79899,23 +79899,23 @@ "year": 1726, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 13.50462385119424, - "c2": 27.14715427307369, - "c3": 22.80727259853351, - "c4": 25.36446847687352, - "c5": -21.07287554829941, - "c6": -24.32945600107966, - "c7": -11.325563437101344 + "points": { + "c1": -1.5754032027743676, + "c2": 44.063360359247746, + "c3": 39.14201222110152, + "c4": 6.575797965533042, + "c5": -39.82402107550109, + "c6": 12.27226475898189, + "c7": -18.607449238014016 }, - "vertexSeeds": { - "c1": 5.547199692718872, - "c2": 5.785813582986757, - "c3": 5.866477558163718, - "c4": 5.3779021376921685, - "c5": 5.479421355056468, - "c6": 5.361622506490952, - "c7": 5.381793879359459 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629684, + "c3": 7.258437355524728, + "c4": 5.8067498844197845, + "c5": 4.355062413314842, + "c6": 2.903374942209885, + "c7": 1.4516874711049426 }, "rgb": [222, 0, 59] }, @@ -79926,23 +79926,23 @@ "year": 1726, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -7.413306242453043, - "c2": 31.520293732054697, - "c3": -26.034621941584053, - "c4": -0.9219755524482949, - "c5": 30.500116919692502, - "c6": -20.746460662642463, - "c7": -7.30500140656148 + "points": { + "c1": 10.32645029633479, + "c2": 22.837245116759618, + "c3": -36.064056024047254, + "c4": 23.93219637220922, + "c5": -31.47197682465991, + "c6": -33.587040819687296, + "c7": 17.8110127341888 }, - "vertexSeeds": { - "c1": 3.377018886015556, - "c2": 3.191322063242021, - "c3": 2.983668524525946, - "c4": 2.943854209938756, - "c5": 3.321164012981259, - "c6": 3.5990215744538387, - "c7": 3.4548404911818187 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [58, 15, 49] }, @@ -79953,23 +79953,23 @@ "year": 1726, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -0.26562774039316395, - "c2": -21.41613235359138, - "c3": 20.621967377430156, - "c4": -14.880140881766057, - "c5": 17.759894257438138, - "c6": -8.62609695399231, - "c7": -10.150568033591632 + "points": { + "c1": -19.5919743908906, + "c2": 18.03825227497965, + "c3": -28.984847788994895, + "c4": 6.839244971853812, + "c5": 16.591875747269146, + "c6": 26.03185344509627, + "c7": -18.80968284958069 }, - "vertexSeeds": { - "c1": 4.681241827052719, - "c2": 4.345914809356862, - "c3": 4.635692470672266, - "c4": 4.999199972053197, - "c5": 5.046772530296783, - "c6": 4.471870367648774, - "c7": 5.093131975647597 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -79980,23 +79980,23 @@ "year": 1726, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 16.469363811626724, - "c2": 20.79333183800419, - "c3": -30.718747208726768, - "c4": 23.01458861040111, - "c5": 30.782849621499306, - "c6": 19.95293314391078, - "c7": 30.541713508498372 + "points": { + "c1": 7.834593340519461, + "c2": 9.36949681963246, + "c3": -27.881188051476112, + "c4": -4.7313043402479025, + "c5": 33.0482025838985, + "c6": -17.197948158172576, + "c7": -12.16935510629688 }, - "vertexSeeds": { - "c1": 3.6352092705348085, - "c2": 3.651028531377854, - "c3": 3.0070835416844632, - "c4": 3.383593702310401, - "c5": 3.2514171371938403, - "c6": 3.216931799046736, - "c7": 3.4387461869360547 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435503, + "c4": 3.5506241331484056, + "c5": 2.662968099861303, + "c6": 1.7753120665742006, + "c7": 0.8876560332871025 }, "rgb": [222, 0, 59] }, @@ -80007,23 +80007,23 @@ "year": 1726, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -11.018998610296443, - "c2": -7.5821200340723856, - "c3": -10.984655829359006, - "c4": -22.958206220107876, - "c5": 23.42164283961519, - "c6": -24.36394972695278, - "c7": 11.985218652064482 + "points": { + "c1": -16.709603424260404, + "c2": -10.195463412558304, + "c3": 22.00069275065647, + "c4": -24.93639558685773, + "c5": 25.986616943125213, + "c6": -0.11504918495142036, + "c7": -20.48717634680112 }, - "vertexSeeds": { - "c1": 2.6721933275472063, - "c2": 2.581555948115554, - "c3": 2.587511686546406, - "c4": 2.7034139371444588, - "c5": 2.6222014412715358, - "c6": 2.6500898858141912, - "c7": 2.7413974078613004 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [58, 15, 49] }, @@ -80034,23 +80034,23 @@ "year": 1726, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -32.56035186997608, - "c2": 0.11007311258618557, - "c3": -17.497819499721665, - "c4": 34.98434730113578, - "c5": -33.3537269755777, - "c6": 14.319585026579723, - "c7": 35.49137270564521 + "points": { + "c1": -37.21873705790315, + "c2": 1.6960125093781215, + "c3": 18.095434922985547, + "c4": 30.456843783513854, + "c5": 12.785483184836416, + "c6": 19.231120832381855, + "c7": -25.173489276861922 }, - "vertexSeeds": { - "c1": 3.5986100622982, - "c2": 3.1061948613566117, - "c3": 3.16019862681018, - "c4": 3.576694929473303, - "c5": 3.0209515304510135, - "c6": 3.162735439693596, - "c7": 2.9519477845302493 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.392048081368468, + "c4": 3.5136384650947776, + "c5": 2.6352288488210833, + "c6": 1.7568192325473888, + "c7": 0.8784096162736944 }, "rgb": [86, 146, 138] }, @@ -80061,23 +80061,23 @@ "year": 1726, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 17.873237960496724, - "c2": 16.59197686966214, - "c3": -23.667154252011887, - "c4": -7.033003041620688, - "c5": -32.57156663021111, - "c6": 17.7404033054261, - "c7": -38.91069307450852 + "points": { + "c1": -4.985917252731888, + "c2": -34.428515552557094, + "c3": -27.764049729292132, + "c4": -26.10630607801423, + "c5": -19.461979860367247, + "c6": -27.795875440465913, + "c7": 22.763972281461733 }, - "vertexSeeds": { - "c1": 2.5260281897112105, - "c2": 2.5177863437270136, - "c3": 2.5687006735936606, - "c4": 2.3274937633503727, - "c5": 2.6237100379811467, - "c6": 2.592499365683762, - "c7": 2.4688573856202667 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692556, + "c4": 2.5889967637540443, + "c5": 1.9417475728155322, + "c6": 1.2944983818770204, + "c7": 0.6472491909385085 }, "rgb": [86, 146, 138] }, @@ -80088,23 +80088,23 @@ "year": 1726, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -1.1249095887415272, - "c2": -20.799056490344576, - "c3": -3.650341320797633, - "c4": -24.18096262827129, - "c5": -6.916146986345968, - "c6": -10.25252798454212, - "c7": 8.520531882895806 + "points": { + "c1": 16.781981624604715, + "c2": -0.44623676701174375, + "c3": -22.863779404438738, + "c4": -22.734678692477956, + "c5": -17.502145820252174, + "c6": -6.268991499966191, + "c7": -20.623853298196465 }, - "vertexSeeds": { - "c1": 5.255291807985535, - "c2": 5.229457680375779, - "c3": 5.6240304871802405, - "c4": 5.474328666990438, - "c5": 5.233825595788768, - "c6": 5.701706662292318, - "c7": 5.703769218928784 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905695, + "c3": 6.842348589921403, + "c4": 5.4738788719371305, + "c5": 4.105409153952838, + "c6": 2.7369394359685653, + "c7": 1.3684697179842926 }, "rgb": [58, 15, 49] }, @@ -80115,23 +80115,23 @@ "year": 1726, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 6.348312324706903, - "c2": 27.13828022219178, - "c3": -13.251005218313612, - "c4": 12.998487296849127, - "c5": -24.720503665646756, - "c6": -17.52274554566154, - "c7": 8.389407433981361 + "points": { + "c1": -12.588738568180833, + "c2": 20.231717075720873, + "c3": -17.189171978288485, + "c4": 27.269770810889476, + "c5": -22.911817406685365, + "c6": 14.728551236619708, + "c7": -6.065223609882903 }, - "vertexSeeds": { - "c1": 4.9971661863902765, - "c2": 4.4190386762778155, - "c3": 4.231798959758506, - "c4": 5.184902607009583, - "c5": 5.034912820094058, - "c6": 4.492844565752415, - "c7": 4.402362569509279 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -80142,23 +80142,23 @@ "year": 1726, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -10.04535396101041, - "c2": -14.311431415183593, - "c3": 3.6307538342883348, - "c4": 1.0792554633968052, - "c5": -20.997623836720308, - "c6": -4.9759216498903385, - "c7": 27.269390024807137 + "points": { + "c1": -10.724957908846267, + "c2": 16.299227635630572, + "c3": 6.369621199962587, + "c4": -0.9427662172674687, + "c5": 4.4935549059064925, + "c6": 25.355221065953067, + "c7": -16.87296484797958 }, - "vertexSeeds": { - "c1": 5.018497468630269, - "c2": 5.014293953839055, - "c3": 4.240952481302612, - "c4": 5.228421234287266, - "c5": 4.951862632933384, - "c6": 4.404833845391082, - "c7": 4.416560857139416 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -80169,23 +80169,23 @@ "year": 1726, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -5.011660493561138, - "c2": -26.62049641004183, - "c3": 19.829186429690772, - "c4": -32.59473270913436, - "c5": -8.661610274605355, - "c6": 12.545937159599333, - "c7": -34.366785047839414 + "points": { + "c1": -8.247365650247076, + "c2": 4.178169065533723, + "c3": 7.09562250673833, + "c4": 25.758070518848825, + "c5": -22.172071463848688, + "c6": -6.903350225502294, + "c7": -1.6720740767891584 }, - "vertexSeeds": { - "c1": 1.8831306043917306, - "c2": 1.9671744183921602, - "c3": 2.02064280218763, - "c4": 1.9056829328655287, - "c5": 2.096171983681101, - "c6": 1.7483734191969498, - "c7": 2.1059808743230497 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786407, + "c3": 2.750809061488674, + "c4": 2.200647249190939, + "c5": 1.6504854368932036, + "c6": 1.1003236245954686, + "c7": 0.5501618122977352 }, "rgb": [86, 146, 138] }, @@ -80196,23 +80196,23 @@ "year": 1726, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 11.43402259388749, - "c2": -20.544141046873545, - "c3": -14.80687704182333, - "c4": -40.780326693683094, - "c5": -22.182328545954775, - "c6": 27.39139843012513, - "c7": -16.243648016046116 + "points": { + "c1": -20.39339649470697, + "c2": 31.61726116487629, + "c3": 38.116028866483994, + "c4": 21.570593711552455, + "c5": -13.625214959832157, + "c6": -44.90151184396089, + "c7": 42.566957974211995 }, - "vertexSeeds": { - "c1": 5.2552989961210566, - "c2": 4.7796675491373914, - "c3": 4.790520257027034, - "c4": 4.971876584113976, - "c5": 5.342740630698318, - "c6": 5.064199238359938, - "c7": 5.043428092007468 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318083, + "c4": 5.141007859454456, + "c5": 3.855755894590844, + "c6": 2.5705039297272316, + "c7": 1.285251964863612 }, "rgb": [238, 201, 159] }, @@ -80223,23 +80223,23 @@ "year": 1726, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 22.21265167507736, - "c2": -0.9152720118063051, - "c3": 18.57510202822275, - "c4": 5.793200339108296, - "c5": 14.68017238480023, - "c6": 8.121798121629887, - "c7": 18.888747582865925 + "points": { + "c1": -4.229701620351449, + "c2": 12.415666549195372, + "c3": 20.42853839209188, + "c4": -18.827656168713396, + "c5": -23.786509220520625, + "c6": -17.616692042115204, + "c7": -21.15715260414667 }, - "vertexSeeds": { - "c1": 3.684217752826824, - "c2": 3.7335378750020602, - "c3": 3.4491058029481922, - "c4": 3.6381854136960006, - "c5": 3.56125734491473, - "c6": 3.678592315883895, - "c7": 3.7485602351323037 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843269, + "c3": 4.507628294036063, + "c4": 3.606102635228846, + "c5": 2.7045769764216394, + "c6": 1.803051317614423, + "c7": 0.9015256588072065 }, "rgb": [86, 146, 138] }, @@ -80250,23 +80250,23 @@ "year": 1726, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -4.882654381881299, - "c2": -23.531910610053675, - "c3": -15.07622638290309, - "c4": -7.6882241932711715, - "c5": -6.144539273116738, - "c6": -17.725571513702874, - "c7": -12.419115062243238 + "points": { + "c1": 18.054826705226777, + "c2": -12.22394565993736, + "c3": -28.351030053700107, + "c4": 2.9868418197553943, + "c5": 20.69624699182624, + "c6": 20.65385768439172, + "c7": -29.176038082334564 }, - "vertexSeeds": { - "c1": 6.190607527116329, - "c2": 6.719321274995079, - "c3": 6.509948255306075, - "c4": 6.339610848897751, - "c5": 6.357686956721652, - "c6": 5.847712252295197, - "c7": 6.218781359550585 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238557, + "c3": 8.183079056865461, + "c4": 6.546463245492366, + "c5": 4.909847434119272, + "c6": 3.2732316227461897, + "c7": 1.6366158113730827 }, "rgb": [77, 76, 132] }, @@ -80277,23 +80277,23 @@ "year": 1726, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 14.540308104247664, - "c2": 14.402798547067086, - "c3": 18.103349613256036, - "c4": 22.517191626764983, - "c5": -30.450231498895942, - "c6": -14.455036810261948, - "c7": 33.79715520908283 + "points": { + "c1": 30.94511263228233, + "c2": 15.722248859064443, + "c3": -23.20204310737312, + "c4": -30.868883825086115, + "c5": 18.960982339810478, + "c6": -17.59816128979176, + "c7": -31.47875059889025 }, - "vertexSeeds": { - "c1": 3.101434708807343, - "c2": 3.045002103842482, - "c3": 3.106484092784837, - "c4": 3.128070999926722, - "c5": 3.0876715029464346, - "c6": 2.8903913488230515, - "c7": 3.0326609846472503 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837724, + "c3": 3.929727230698101, + "c4": 3.1437817845584846, + "c5": 2.357836338418862, + "c6": 1.5718908922792392, + "c7": 0.7859454461396164 }, "rgb": [86, 146, 138] }, @@ -80304,23 +80304,23 @@ "year": 1726, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 7.466199184804449, - "c2": 15.123366478729427, - "c3": -1.2714962028580707, - "c4": 15.817093381924263, - "c5": -9.490779706068246, - "c6": 15.072073601593868, - "c7": -18.018499222705014 + "points": { + "c1": 4.090581861911154, + "c2": -0.5091819923407535, + "c3": -21.471962140600745, + "c4": 24.561137583232377, + "c5": 22.941203170210795, + "c6": 6.219094760445191, + "c7": 24.278024972915976 }, - "vertexSeeds": { - "c1": 13.5475619210928, - "c2": 13.52385557767392, - "c3": 13.883425714073244, - "c4": 13.27337054913519, - "c5": 13.594099892324913, - "c6": 13.219190362823445, - "c7": 13.485033731797433 + "offsets": { + "c1": 24.174757281553397, + "c2": 20.72122052704578, + "c3": 17.267683772538124, + "c4": 13.814147018030507, + "c5": 10.36061026352289, + "c6": 6.907073509015235, + "c7": 3.4535367545076174 }, "rgb": [58, 15, 49] }, @@ -80331,23 +80331,23 @@ "year": 1726, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -6.87443664173712, - "c2": 23.106785260744715, - "c3": -13.932440073784738, - "c4": -7.327674491927844, - "c5": -14.255987400578846, - "c6": -18.081297853314673, - "c7": -21.357569341487174 + "points": { + "c1": 10.784709181228365, + "c2": 7.476297623867012, + "c3": -5.151861627728884, + "c4": 14.166144341633448, + "c5": -4.931590312494588, + "c6": -15.307531608100101, + "c7": -1.484079909729246 }, - "vertexSeeds": { - "c1": 4.717732516306996, - "c2": 5.2042415828833475, - "c3": 4.875667549698206, - "c4": 4.795488800323028, - "c5": 4.942116050497528, - "c6": 4.935430318041505, - "c7": 5.019712629736672 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900139, + "c3": 6.264447526583451, + "c4": 5.011558021266762, + "c5": 3.758668515950073, + "c6": 2.5057790106333844, + "c7": 1.2528895053166955 }, "rgb": [86, 146, 138] }, @@ -80358,23 +80358,23 @@ "year": 1726, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 10.018761552870778, - "c2": 30.646337209612355, - "c3": 31.412359985780014, - "c4": 15.010276278590005, - "c5": -32.405838260529, - "c6": 12.435945654021403, - "c7": -32.83911430394095 + "points": { + "c1": 35.700492841275036, + "c2": -25.138174795171643, + "c3": 32.94044269886764, + "c4": -34.267119155116056, + "c5": -14.071775390267689, + "c6": -11.394469888905817, + "c7": -30.957086898400675 }, - "vertexSeeds": { - "c1": 4.570392806503987, - "c2": 5.098565849265013, - "c3": 4.7931491411165705, - "c4": 5.024869915516284, - "c5": 4.557532016411699, - "c6": 4.260283716864287, - "c7": 5.013229254786203 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -80385,23 +80385,23 @@ "year": 1726, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -21.53637693580464, - "c2": -22.079619558761497, - "c3": -21.912248009912126, - "c4": -2.7627544786260536, - "c5": 22.110091094849572, - "c6": 19.077853166547712, - "c7": 22.81707040149218 + "points": { + "c1": 14.343325680569485, + "c2": 12.635479521730169, + "c3": -10.957521671097016, + "c4": -5.832286935968359, + "c5": -17.789139894911912, + "c6": 10.5390134062133, + "c7": -18.29250156900319 }, - "vertexSeeds": { - "c1": 6.937598417912911, - "c2": 6.604914073404297, - "c3": 6.541177966681653, - "c4": 6.304947297498076, - "c5": 6.453829860433242, - "c6": 7.063579055684657, - "c7": 6.179660303977209 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [238, 201, 159] }, @@ -80412,23 +80412,23 @@ "year": 1726, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 32.096923220112615, - "c2": 17.74333857008444, - "c3": 1.9653671727303603, - "c4": 21.88467910167312, - "c5": 20.340413088531697, - "c6": -18.396657124495203, - "c7": 3.9228643772910203 + "points": { + "c1": 5.562306134379575, + "c2": -35.08791657852623, + "c3": -12.067807022979476, + "c4": 9.453541565911493, + "c5": 11.643731195802296, + "c6": -4.183495616919114, + "c7": 7.5663714260671995 }, - "vertexSeeds": { - "c1": 3.0204046290046427, - "c2": 3.2530499240079833, - "c3": 3.2733712928174903, - "c4": 3.0452481989074185, - "c5": 3.295554651339353, - "c6": 2.950809096059892, - "c7": 3.2617000258906828 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [86, 146, 138] }, @@ -80439,23 +80439,23 @@ "year": 1726, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -13.420698213546004, - "c2": -5.109802099471757, - "c3": 21.466179988309847, - "c4": 2.8512957616901318, - "c5": -21.582703335092468, - "c6": 9.736379917948298, - "c7": -6.868982709315787 + "points": { + "c1": 0.6528396688201674, + "c2": -2.502869227112008, + "c3": -0.2767698876957141, + "c4": -19.82985933874153, + "c5": -17.13620268846539, + "c6": 9.551265163688718, + "c7": -24.06656732864133 }, - "vertexSeeds": { - "c1": 0.9084271238985523, - "c2": 0.9169943632847597, - "c3": 0.9475414247185053, - "c4": 0.8444075063609232, - "c5": 0.8519486887020046, - "c6": 0.926437888179855, - "c7": 0.9351524309399601 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.3869625520110964, + "c3": 1.1558021266759126, + "c4": 0.9246417013407309, + "c5": 0.6934812760055472, + "c6": 0.46232085067036544, + "c7": 0.23116042533518372 }, "rgb": [222, 0, 59] }, @@ -80466,23 +80466,23 @@ "year": 1726, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -27.158669847873657, - "c2": 8.395719129219025, - "c3": 10.882227840008426, - "c4": -27.730833134445618, - "c5": 39.4644435590947, - "c6": -41.590958886399946, - "c7": 10.586029355895562 + "points": { + "c1": 22.30426866116614, + "c2": -39.33978821935057, + "c3": 31.49291621091394, + "c4": -15.588220646022691, + "c5": 39.372553458248895, + "c6": 47.812340851613335, + "c7": 21.079516059779813 }, - "vertexSeeds": { - "c1": 3.801348874812481, - "c2": 3.8563360164442337, - "c3": 3.957204401071117, - "c4": 4.071464446606074, - "c5": 3.920454324886191, - "c6": 4.363395687795089, - "c7": 4.241904838770688 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175682, + "c4": 4.234858992140545, + "c5": 3.1761442441054086, + "c6": 2.1174294960702724, + "c7": 1.0587147480351362 }, "rgb": [238, 201, 159] }, @@ -80493,23 +80493,23 @@ "year": 1726, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -18.627348571678468, - "c2": -15.513029850693627, - "c3": -6.883975046575337, - "c4": 33.62328397533196, - "c5": 2.215707587434636, - "c6": 14.449055633868873, - "c7": -32.91948397893983 + "points": { + "c1": -4.735662175876854, + "c2": -42.005028360697395, + "c3": 9.757439606861702, + "c4": -25.611594511607343, + "c5": -42.676881591671375, + "c6": -3.569701514818327, + "c7": -19.947654200118944 }, - "vertexSeeds": { - "c1": 6.929385141299338, - "c2": 6.551314511565575, - "c3": 7.288126475876726, - "c4": 6.463763228514796, - "c5": 7.531235664366689, - "c6": 6.8463893738697905, - "c7": 7.444667026053089 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807216, + "c3": 9.084604715672675, + "c4": 7.2676837725381445, + "c5": 5.450762829403603, + "c6": 3.6338418862690722, + "c7": 1.8169209431345301 }, "rgb": [238, 201, 159] }, @@ -80520,23 +80520,23 @@ "year": 1726, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 19.847825955946014, - "c2": -12.623739854201805, - "c3": 21.18179897933424, - "c4": -17.758227251365554, - "c5": 7.453976048967682, - "c6": 2.3647835224140223, - "c7": 9.598571979813201 + "points": { + "c1": 32.08825140848714, + "c2": 16.266318552279152, + "c3": 10.827398582703061, + "c4": 14.99710082755535, + "c5": 7.898473183747242, + "c6": 2.9227863484241894, + "c7": 15.215944925230723 }, - "vertexSeeds": { - "c1": 4.794861364628657, - "c2": 4.950760649561466, - "c3": 4.9512744285018435, - "c4": 4.626894443047326, - "c5": 4.547816062504179, - "c6": 5.245176167894451, - "c7": 5.043154680243638 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066574, + "c3": 6.93481276005548, + "c4": 5.547850208044378, + "c5": 4.1608876560332835, + "c6": 2.773925104022189, + "c7": 1.3869625520110944 }, "rgb": [77, 76, 132] }, @@ -80547,23 +80547,23 @@ "year": 1726, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -3.3096413416790114, - "c2": -2.6133711154184773, - "c3": 12.53908977135394, - "c4": -4.951021003874086, - "c5": -16.061649425701148, - "c6": -19.14854146839218, - "c7": 22.3121965834136 + "points": { + "c1": 4.61510244881616, + "c2": 24.95671051521716, + "c3": 5.428223446302383, + "c4": 29.198878349017825, + "c5": 15.813742813425428, + "c6": -22.421243414951615, + "c7": 21.735967998358888 }, - "vertexSeeds": { - "c1": 3.014121969731827, - "c2": 3.1542221724751074, - "c3": 2.974149953122637, - "c4": 3.035886516933287, - "c5": 2.9180236454829758, - "c6": 3.3224736912535477, - "c7": 3.203225905849703 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958389, + "c3": 3.9990753582986622, + "c4": 3.1992602866389284, + "c5": 2.3994452149791945, + "c6": 1.5996301433194604, + "c7": 0.799815071659734 }, "rgb": [77, 76, 132] }, @@ -80574,23 +80574,23 @@ "year": 1726, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -26.782850940190944, - "c2": -17.008723799808248, - "c3": -34.27456936804533, - "c4": 41.199687739780366, - "c5": -12.571242105508016, - "c6": -4.0003292074239525, - "c7": 28.25119196241588 + "points": { + "c1": -36.695118240573464, + "c2": -16.42152897199367, + "c3": 1.459925848566769, + "c4": -12.451059217777463, + "c5": -44.59143895137609, + "c6": 23.76973486609868, + "c7": 42.123457420858735 }, - "vertexSeeds": { - "c1": 6.191103619570965, - "c2": 5.548869241024938, - "c3": 5.693575710152126, - "c4": 5.612063384073458, - "c5": 5.77844589092926, - "c6": 6.374917782695906, - "c7": 5.718933875347782 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [58, 15, 49] }, @@ -80601,23 +80601,23 @@ "year": 1726, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -20.601715661335444, - "c2": -25.902924596393355, - "c3": 36.801219162017524, - "c4": -11.694472519809612, - "c5": 6.812775883199286, - "c6": 28.537928251282885, - "c7": 16.296409956239543 + "points": { + "c1": -34.114306526753396, + "c2": -8.335822539001562, + "c3": -35.96108904655414, + "c4": -26.588891350700077, + "c5": 33.5534203557145, + "c6": 32.2920848032954, + "c7": 23.122374504264705 }, - "vertexSeeds": { - "c1": 3.0128628605221373, - "c2": 3.0605941951943474, - "c3": 2.735941584335728, - "c4": 2.7546003273181157, - "c5": 2.8279404315162124, - "c6": 2.8550691904432393, - "c7": 2.9088787477519173 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395287, + "c3": 3.6754507628294006, + "c4": 2.9403606102635216, + "c5": 2.2052704576976434, + "c6": 1.4701803051317568, + "c7": 0.7350901525658784 }, "rgb": [222, 0, 59] }, @@ -80628,23 +80628,23 @@ "year": 1726, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -31.847787784163707, - "c2": 24.97608795191261, - "c3": -11.739304836079807, - "c4": -11.658071317411583, - "c5": -27.3728534357803, - "c6": 33.86004871390526, - "c7": 7.042821834341538 + "points": { + "c1": -24.921629546537318, + "c2": 3.3263153823589917, + "c3": 28.414702013102143, + "c4": 14.141225729531293, + "c5": -12.452917413615914, + "c6": -16.206312618510278, + "c7": 24.96871715668489 }, - "vertexSeeds": { - "c1": 3.1260497900447453, - "c2": 2.765446085023756, - "c3": 3.216698977310498, - "c4": 3.1098189253633985, - "c5": 2.9591812373365527, - "c6": 2.9125247889148405, - "c7": 3.193610836022244 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.63245492371706, + "c3": 3.8603791030975514, + "c4": 3.0883032824780425, + "c5": 2.3162274618585337, + "c6": 1.544151641239018, + "c7": 0.7720758206195154 }, "rgb": [58, 15, 49] }, @@ -80655,23 +80655,23 @@ "year": 1726, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": -1.3003107732653731, - "c2": 18.70217618964689, - "c3": -3.0743539140288583, - "c4": 1.016029137197787, - "c5": -1.4836315845141712, - "c6": -8.540949213084463, - "c7": 3.869165930082552 + "points": { + "c1": 13.208511461353794, + "c2": 9.560910648564736, + "c3": 11.539622616340452, + "c4": 20.99186490906105, + "c5": 14.950231471122159, + "c6": -18.56803590653602, + "c7": -6.41714093732743 }, - "vertexSeeds": { - "c1": 4.574483273556044, - "c2": 5.2027260167448075, - "c3": 4.606344324828213, - "c4": 4.572120603607078, - "c5": 4.24605514922981, - "c6": 4.637276197759357, - "c7": 4.840474305100987 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -80682,23 +80682,23 @@ "year": 1726, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 5.7086841633283925, - "c2": 38.024689915396166, - "c3": 23.447756942388253, - "c4": 12.303364247456813, - "c5": 33.651176865392586, - "c6": 9.558339615502888, - "c7": -25.55662549438301 + "points": { + "c1": 3.6824107593322637, + "c2": 18.7174014946023, + "c3": -33.1756981418453, + "c4": -8.533839232281657, + "c5": -27.34013286800814, + "c6": -4.027740286218965, + "c7": -16.787857512463926 }, - "vertexSeeds": { - "c1": 4.358710393419247, - "c2": 4.472252474799677, - "c3": 5.18366819221065, - "c4": 4.498661716672376, - "c5": 4.956938976487916, - "c6": 5.004922832654662, - "c7": 4.41331076494221 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -80709,23 +80709,23 @@ "year": 1726, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -38.17433506222391, - "c2": 30.649147180139124, - "c3": -13.608503505848965, - "c4": -17.321644937056316, - "c5": -1.030786425849307, - "c6": -6.713748196230526, - "c7": 20.437712985176518 + "points": { + "c1": 11.0080235462434, + "c2": -46.50422573698361, + "c3": -14.531382171774915, + "c4": -14.6692030400127, + "c5": 26.580590035408804, + "c6": 43.465789325852356, + "c7": 17.15131017858654 }, - "vertexSeeds": { - "c1": 5.221239053786432, - "c2": 5.1123122081642585, - "c3": 4.4655763742564485, - "c4": 4.649762483689705, - "c5": 4.205743045861154, - "c6": 4.249057146966466, - "c7": 5.026835285488234 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -80736,23 +80736,23 @@ "year": 1726, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 28.060640324193834, - "c2": -2.384766260278319, - "c3": -5.153765986127013, - "c4": 29.008853930648158, - "c5": -11.749162034747105, - "c6": -28.68534906857349, - "c7": 13.580024729036133 + "points": { + "c1": 8.667344656750807, + "c2": -29.625595912861552, + "c3": 24.25717353415495, + "c4": -11.128316582948976, + "c5": 26.368170294806852, + "c6": -4.888746793579504, + "c7": -17.411216056183065 }, - "vertexSeeds": { - "c1": 3.772933310038058, - "c2": 3.601709049941505, - "c3": 3.91540268969305, - "c4": 3.910998412875237, - "c5": 3.820859327082324, - "c6": 3.525577629592298, - "c7": 3.9181116543352976 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304204, + "c4": 3.7540453074433624, + "c5": 2.8155339805825275, + "c6": 1.8770226537216852, + "c7": 0.9385113268608426 }, "rgb": [238, 201, 159] }, @@ -80763,23 +80763,23 @@ "year": 1726, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -29.0979539292344, - "c2": -2.018127238235298, - "c3": -20.921257759439563, - "c4": 25.05890353578662, - "c5": -7.258392169708589, - "c6": 30.09372918031285, - "c7": -5.222537206246908 + "points": { + "c1": -20.443258733240896, + "c2": 32.13376290993497, + "c3": -8.416820247322118, + "c4": -16.13704108283595, + "c5": -24.129798096191536, + "c6": -31.12054984960804, + "c7": 3.234096885394422 }, - "vertexSeeds": { - "c1": 3.003097660777776, - "c2": 3.4269604074348816, - "c3": 3.050379350039826, - "c4": 3.3439690515832075, - "c5": 3.08707273417939, - "c6": 3.0241690834884025, - "c7": 3.3674610017403364 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280164, + "c3": 4.184003698566808, + "c4": 3.3472029588534453, + "c5": 2.510402219140082, + "c6": 1.6736014794267193, + "c7": 0.8368007397133629 }, "rgb": [58, 15, 49] }, @@ -80790,23 +80790,23 @@ "year": 1726, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": -15.715522866707936, - "c2": -7.688875513127883, - "c3": -17.366870754037134, - "c4": 9.382905784281789, - "c5": 12.32551616100945, - "c6": 2.4767711934767966, - "c7": -0.25299896721095294 + "points": { + "c1": 16.70443862506328, + "c2": 17.865781763974628, + "c3": 5.945692628287301, + "c4": 4.394322598323932, + "c5": 3.8643445630713202, + "c6": -14.418208087951154, + "c7": -16.172658628051316 }, - "vertexSeeds": { - "c1": 4.948398379967044, - "c2": 4.390535802235545, - "c3": 4.39286809221219, - "c4": 4.483742931432852, - "c5": 4.767356592487824, - "c6": 4.4640948558694795, - "c7": 4.64013063470487 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -80817,23 +80817,23 @@ "year": 1726, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 40.33343823164409, - "c2": 43.429058390626416, - "c3": 9.490401300882283, - "c4": 12.724356389855195, - "c5": 29.103835172616066, - "c6": 10.314782734859442, - "c7": 2.768945029119557 + "points": { + "c1": 32.54003519631305, + "c2": 18.353090722702838, + "c3": -28.07639012602204, + "c4": -39.70225914707092, + "c5": -41.33280202036805, + "c6": -36.514618742065466, + "c7": 45.27445763990139 }, - "vertexSeeds": { - "c1": 4.309948261589057, - "c2": 4.647395900322021, - "c3": 5.235572559234704, - "c4": 4.391848092040463, - "c5": 4.520463860679079, - "c6": 4.470933518740137, - "c7": 4.794957949580748 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -80844,23 +80844,23 @@ "year": 1726, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 16.337857025870157, - "c2": 1.7565280266750563, - "c3": 31.328533449130106, - "c4": 0.886421943367786, - "c5": -27.1609496086196, - "c6": 28.227249867193173, - "c7": -33.12566178471964 + "points": { + "c1": -7.118730154563334, + "c2": -23.433732881756832, + "c3": -9.47290926402361, + "c4": -4.705781147819742, + "c5": -9.310989322154288, + "c6": -2.1664844954769436, + "c7": 23.49487838848617 }, - "vertexSeeds": { - "c1": 5.125250405691702, - "c2": 5.069417089628314, - "c3": 4.584011759679772, - "c4": 4.4305080435181186, - "c5": 4.3578842179056485, - "c6": 4.321275619086475, - "c7": 5.033863641699312 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -80871,23 +80871,23 @@ "year": 1726, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": -14.368693958414013, - "c2": 7.9079165780617835, - "c3": -7.703754164516209, - "c4": -15.236306664367504, - "c5": 0.47923901819580195, - "c6": -7.320838537837194, - "c7": -6.4795563539446785 + "points": { + "c1": 2.166856682075746, + "c2": 4.537132977861937, + "c3": -8.621176038302337, + "c4": -7.807035052092656, + "c5": 3.6117180781987983, + "c6": -9.17919276015603, + "c7": -16.863691741188877 }, - "vertexSeeds": { - "c1": 3.992903647964659, - "c2": 3.8957220361846145, - "c3": 4.029819160886893, - "c4": 4.134135823313976, - "c5": 4.048318550592246, - "c6": 3.900401112053266, - "c7": 4.079331692695611 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808601, + "c3": 5.062413314840502, + "c4": 4.049930651872403, + "c5": 3.0374479889043045, + "c6": 2.0249653259361975, + "c7": 1.0124826629680987 }, "rgb": [238, 201, 159] }, @@ -80898,23 +80898,23 @@ "year": 1726, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -9.68699883367271, - "c2": -20.784871036486216, - "c3": 25.3848520697257, - "c4": 29.686367935965624, - "c5": 14.046709472106773, - "c6": 1.5794985612588555, - "c7": 9.990314661077047 + "points": { + "c1": 18.43347790176891, + "c2": 5.206488061838421, + "c3": 12.83681693383783, + "c4": 2.626825121321616, + "c5": 9.123425814826021, + "c6": -29.258127523062665, + "c7": 19.233351764316865 }, - "vertexSeeds": { - "c1": 3.287778830384883, - "c2": 3.281816686236419, - "c3": 3.22997282265312, - "c4": 3.1907640573378324, - "c5": 3.262633179735967, - "c6": 3.298740394463428, - "c7": 3.0350128027960945 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719367, + "c5": 2.441054091539525, + "c6": 1.6273693943596834, + "c7": 0.8136846971798417 }, "rgb": [58, 15, 49] }, @@ -80925,23 +80925,23 @@ "year": 1726, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 24.572270011762555, - "c2": 16.647938595887545, - "c3": 9.389482252554366, - "c4": 17.047332055573285, - "c5": 30.773614762635177, - "c6": -18.32090748335912, - "c7": -13.993326159839704 + "points": { + "c1": 18.74080737428443, + "c2": 22.35907749933471, + "c3": 7.779565974954991, + "c4": -24.95262778692384, + "c5": 22.378249161243467, + "c6": -7.183137145814449, + "c7": 12.988540232664143 }, - "vertexSeeds": { - "c1": 5.051097224293452, - "c2": 5.077443048883689, - "c3": 4.427694752266912, - "c4": 4.3857617158110775, - "c5": 4.91441034998799, - "c6": 5.21289669573952, - "c7": 4.218879667333611 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -80952,23 +80952,23 @@ "year": 1726, "resistanceReported": false, "duration": 8035200, - "curveSeeds": { - "c1": 10.965705967021545, - "c2": -8.247401293331107, - "c3": -4.494094335320156, - "c4": -16.798975119937097, - "c5": -17.208525329779665, - "c6": 16.663050946946377, - "c7": -16.627227330736808 + "points": { + "c1": -4.12456674807472, + "c2": 14.182797177198893, + "c3": -4.236221504015955, + "c4": 8.40884506510401, + "c5": 19.85814784035184, + "c6": -4.975009349569184, + "c7": 1.7451333968336442 }, - "vertexSeeds": { - "c1": 2.280113835239398, - "c2": 2.188348269717227, - "c3": 2.252093855252406, - "c4": 2.2821461533809093, - "c5": 2.1559264867759094, - "c6": 2.156229704311985, - "c7": 2.134964772301875 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266286, + "c3": 2.7739251040221893, + "c4": 2.219140083217756, + "c5": 1.664355062413317, + "c6": 1.109570041608878, + "c7": 0.554785020804439 }, "rgb": [86, 146, 138] }, @@ -80979,23 +80979,23 @@ "year": 1726, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -15.022449573446039, - "c2": -25.265005993302882, - "c3": -15.872695049045952, - "c4": 28.3438940110699, - "c5": -25.30372263070628, - "c6": -23.97181839076511, - "c7": 21.622065868769965 + "points": { + "c1": -28.922964930446728, + "c2": 4.7649349724360945, + "c3": 11.51260161873251, + "c4": -12.787167834949383, + "c5": 18.458822295835226, + "c6": -5.231589785380052, + "c7": 23.669532895245943 }, - "vertexSeeds": { - "c1": 6.758350383085453, - "c2": 5.55878059043982, - "c3": 5.83572534409759, - "c4": 6.420527176391705, - "c5": 6.436865229814741, - "c6": 4.252563074922402, - "c7": 6.8477489764699575 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485436, + "c3": 8.899676375404532, + "c4": 7.119741100323624, + "c5": 5.3398058252427205, + "c6": 3.5598705501618135, + "c7": 1.7799352750809057 }, "rgb": [86, 146, 138] }, @@ -81006,23 +81006,23 @@ "year": 1726, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -26.593276726732068, - "c2": 20.287127287288953, - "c3": 9.31109406804061, - "c4": -27.166461379127036, - "c5": 7.963138343186017, - "c6": -3.0117059853522896, - "c7": -9.870347137800216 + "points": { + "c1": -23.154789956491044, + "c2": -8.315050425067959, + "c3": -14.795651390696623, + "c4": 7.149710953450565, + "c5": 27.74955329882195, + "c6": -5.418517625440106, + "c7": -11.295562751660963 }, - "vertexSeeds": { - "c1": 11.29527956404968, - "c2": 12.021718391916307, - "c3": 12.109737993842439, - "c4": 12.461471211746268, - "c5": 11.72636048841189, - "c6": 11.040207652274379, - "c7": 11.978740726257767 + "offsets": { + "c1": 20.809061488673137, + "c2": 17.8363384188627, + "c3": 14.86361534905226, + "c4": 11.890892279241788, + "c5": 8.91816920943135, + "c6": 5.94544613962091, + "c7": 2.972723069810471 }, "rgb": [58, 15, 49] }, @@ -81033,23 +81033,23 @@ "year": 1727, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": 16.56281831779968, - "c2": -30.86422680898411, - "c3": -38.333103338221854, - "c4": -26.423931917810517, - "c5": -24.613823355087053, - "c6": -39.517083756734166, - "c7": 17.644341546752827 + "points": { + "c1": -43.538466611905804, + "c2": -33.194175483746726, + "c3": 46.06786271406017, + "c4": 11.884846234252215, + "c5": -5.451011089041295, + "c6": 34.057593180726926, + "c7": -41.127194637040006 }, - "vertexSeeds": { - "c1": 4.241457031663151, - "c2": 4.0666967461785415, - "c3": 3.8815702453953995, - "c4": 4.232939433372657, - "c5": 4.267344665310034, - "c6": 3.8505896658905563, - "c7": 3.855415267855041 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331481, + "c3": 5.362921867776238, + "c4": 4.290337494220987, + "c5": 3.2177531206657375, + "c6": 2.1451687471104934, + "c7": 1.0725843735552438 }, "rgb": [86, 146, 138] }, @@ -81060,23 +81060,23 @@ "year": 1726, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -28.94820997054409, - "c2": -23.230314846209794, - "c3": 11.921243732891618, - "c4": 6.265718832738493, - "c5": 20.13338836732764, - "c6": -34.20199227307666, - "c7": -30.626558747312792 + "points": { + "c1": -23.327886172562177, + "c2": -19.127441901888204, + "c3": -22.93482215341438, + "c4": 28.193218092646305, + "c5": 17.39156172948352, + "c6": -7.653527682465732, + "c7": -4.875208071461259 }, - "vertexSeeds": { - "c1": 5.7241385938613485, - "c2": 6.307355052189962, - "c3": 5.672574725848381, - "c4": 6.066039932751076, - "c5": 5.79076360300844, - "c6": 5.848723089502422, - "c7": 5.954957703536439 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -81087,23 +81087,23 @@ "year": 1726, "resistanceReported": false, "duration": 4406400, - "curveSeeds": { - "c1": -5.388699060063136, - "c2": 1.7294442146419442, - "c3": -11.480574429366008, - "c4": 3.440823680758122, - "c5": -11.099590208756773, - "c6": -10.086143913193016, - "c7": 13.269088172411376 + "points": { + "c1": 7.314319869837075, + "c2": 8.067798712462956, + "c3": 11.613845758579117, + "c4": -10.491272191811019, + "c5": -10.50012752225542, + "c6": -6.640818598957207, + "c7": -9.002952881796112 }, - "vertexSeeds": { - "c1": 6.184505780552938, - "c2": 6.627015736403807, - "c3": 6.633392833941878, - "c4": 6.251815228391659, - "c5": 6.470445715766017, - "c6": 6.6654706096305185, - "c7": 6.156823321774559 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560327, + "c3": 8.368007397133612, + "c4": 6.6944059177068835, + "c5": 5.0208044382801695, + "c6": 3.3472029588534418, + "c7": 1.673601479426714 }, "rgb": [86, 146, 138] }, @@ -81114,23 +81114,23 @@ "year": 1726, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -33.79256218165589, - "c2": -0.16605690844555454, - "c3": -32.5960497221875, - "c4": -29.629054608152245, - "c5": -37.583609954279645, - "c6": -25.70504614753653, - "c7": 23.219404351208397 + "points": { + "c1": 32.056355984724235, + "c2": 27.489198040840904, + "c3": 12.496874597772113, + "c4": 38.36447338387093, + "c5": -14.829945563540168, + "c6": -31.107538045381414, + "c7": -17.005759205600413 }, - "vertexSeeds": { - "c1": 8.280824464687011, - "c2": 7.45432504446685, - "c3": 8.28731826716046, - "c4": 7.906670440978766, - "c5": 7.887457351166513, - "c6": 8.359934249913543, - "c7": 7.860899205032885 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456312, + "c3": 10.03236245954693, + "c4": 8.025889967637546, + "c5": 6.019417475728162, + "c6": 4.012944983818779, + "c7": 2.006472491909396 }, "rgb": [58, 15, 49] }, @@ -81141,23 +81141,23 @@ "year": 1726, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -29.461119692324907, - "c2": 25.938929789963808, - "c3": 19.799247135771893, - "c4": -7.054459909493303, - "c5": -37.20240850258406, - "c6": -19.30182146155449, - "c7": 14.400454152622821 + "points": { + "c1": 29.58497563149983, + "c2": -12.8859024402074, + "c3": -16.004562677230993, + "c4": -5.004280181572561, + "c5": -12.21706052864403, + "c6": -29.855726333706727, + "c7": -4.379571841040388 }, - "vertexSeeds": { - "c1": 3.172017471654788, - "c2": 3.3615338737506826, - "c3": 3.398313633966991, - "c4": 3.630466550408421, - "c5": 3.2495895018520593, - "c6": 3.604396943442577, - "c7": 3.523313091391817 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682383, + "c3": 4.415164123901989, + "c4": 3.532131299121589, + "c5": 2.6490984743411947, + "c6": 1.7660656495607945, + "c7": 0.8830328247804003 }, "rgb": [238, 201, 159] }, @@ -81168,23 +81168,23 @@ "year": 1726, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -24.030271047424154, - "c2": -27.429150847190726, - "c3": 14.054996951855692, - "c4": -4.211119755374035, - "c5": 39.755382153217724, - "c6": 31.357245797303904, - "c7": 24.509989271084464 + "points": { + "c1": 41.27402661728506, + "c2": -24.327275601386415, + "c3": -33.94386229401465, + "c4": 15.68272904554017, + "c5": -42.23289085212431, + "c6": 2.4055079167937876, + "c7": -12.887604636641747 }, - "vertexSeeds": { - "c1": 4.692426831392022, - "c2": 4.273110446201403, - "c3": 4.065865260883691, - "c4": 4.211723247985613, - "c5": 3.877830710226922, - "c6": 4.413237981673761, - "c7": 4.50840393029134 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.7683772538141485, + "c3": 5.640314378178459, + "c4": 4.512251502542764, + "c5": 3.3841886269070742, + "c6": 2.2561257512713846, + "c7": 1.1280628756356899 }, "rgb": [86, 146, 138] }, @@ -81195,23 +81195,23 @@ "year": 1726, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -22.016803287395522, - "c2": 22.78736941622767, - "c3": -24.366503348435725, - "c4": -2.678784627177766, - "c5": 14.773324093479133, - "c6": -12.875474014492239, - "c7": -18.58484748845905 + "points": { + "c1": -11.010613126119438, + "c2": 19.352827840774417, + "c3": 16.793023823946285, + "c4": -0.9921329171072983, + "c5": 25.659743411137235, + "c6": 19.372573648581387, + "c7": -4.249124095711501 }, - "vertexSeeds": { - "c1": 11.910659238011634, - "c2": 11.353714436487747, - "c3": 11.488822642175561, - "c4": 11.730034335672212, - "c5": 11.920682901962119, - "c6": 11.9324852861409, - "c7": 12.145826806861882 + "offsets": { + "c1": 20.29126213592233, + "c2": 17.392510402219152, + "c3": 14.493758668515937, + "c4": 11.595006934812755, + "c5": 8.696255201109576, + "c6": 5.7975034674063615, + "c7": 2.8987517337031807 }, "rgb": [222, 0, 59] }, @@ -81222,23 +81222,23 @@ "year": 1726, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -0.4449834150784966, - "c2": -17.62797225986574, - "c3": -15.096603141611581, - "c4": 20.964930865880177, - "c5": -18.108970064419474, - "c6": 14.509588191078869, - "c7": 36.55632380940163 + "points": { + "c1": 6.323812730114298, + "c2": 38.573619944064106, + "c3": 20.58374617433953, + "c4": -7.334923473361059, + "c5": 40.52507725259869, + "c6": 2.237824003381917, + "c7": 3.830030592272145 }, - "vertexSeeds": { - "c1": 4.795806870165435, - "c2": 5.0528609460985825, - "c3": 4.87202899575745, - "c4": 4.497031244295544, - "c5": 4.839041853521563, - "c6": 4.288569677906382, - "c7": 4.672822706223641 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -81249,23 +81249,23 @@ "year": 1726, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 14.009088078145254, - "c2": -36.71978339606559, - "c3": -37.60974026981302, - "c4": -17.65162380052605, - "c5": 1.3757902087837195, - "c6": -34.77725987568277, - "c7": 16.010701848407848 + "points": { + "c1": 35.03694730903188, + "c2": 6.825481877725004, + "c3": -25.57839119738513, + "c4": 24.621245250319667, + "c5": 8.039535199908315, + "c6": -32.07092111827076, + "c7": -25.085650448735176 }, - "vertexSeeds": { - "c1": 13.731456840404329, - "c2": 14.724456887037475, - "c3": 14.279646089766759, - "c4": 13.370668033971718, - "c5": 13.606605028317265, - "c6": 15.06460272070408, - "c7": 13.45474803942829 + "offsets": { + "c1": 25.533980582524272, + "c2": 21.886269070735096, + "c3": 18.238557558945917, + "c4": 14.590846047156711, + "c5": 10.943134535367534, + "c6": 7.295423023578356, + "c7": 3.647711511789178 }, "rgb": [238, 201, 159] }, @@ -81276,23 +81276,23 @@ "year": 1726, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -35.902106627867425, - "c2": 0.016679452085277546, - "c3": -1.6756257543517776, - "c4": 34.581487648109125, - "c5": 3.2126798678212793, - "c6": -27.7176914779328, - "c7": -18.43494314273716 + "points": { + "c1": 33.88264247299198, + "c2": 14.580656927525403, + "c3": -25.775140784248347, + "c4": 34.382414485659034, + "c5": 38.07102863360584, + "c6": -19.699476690586803, + "c7": 21.974332803700086 }, - "vertexSeeds": { - "c1": 6.510838801748131, - "c2": 6.843461313391374, - "c3": 7.075942057718116, - "c4": 6.830343113114459, - "c5": 7.166950199487295, - "c6": 6.362416586110298, - "c7": 6.740384771405679 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962546, + "c3": 8.599167822468795, + "c4": 6.87933425797503, + "c5": 5.159500693481266, + "c6": 3.439667128987515, + "c7": 1.7198335644937501 }, "rgb": [222, 0, 59] }, @@ -81303,23 +81303,23 @@ "year": 1726, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 4.8172187482828335, - "c2": -6.504273854767231, - "c3": 21.378102557882322, - "c4": 15.974840361740611, - "c5": 1.1037617356472182, - "c6": 15.594314650188913, - "c7": 5.815151242076652 + "points": { + "c1": -27.58220923572732, + "c2": -16.39615767961387, + "c3": -12.761422363199703, + "c4": -27.425022041307027, + "c5": 30.471891678120592, + "c6": 5.981356311631281, + "c7": -31.22200307138084 }, - "vertexSeeds": { - "c1": 3.0556226572149576, - "c2": 3.298359597011317, - "c3": 3.287097655373145, - "c4": 3.2212321438478857, - "c5": 3.158470489125585, - "c6": 3.156189528010995, - "c7": 3.1938985673443523 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852955, + "c5": 2.371705963938976, + "c6": 1.5811373092926477, + "c7": 0.7905686546463198 }, "rgb": [77, 76, 132] }, @@ -81330,23 +81330,23 @@ "year": 1726, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 12.321347526568644, - "c2": 26.129833867184026, - "c3": 12.573563935749384, - "c4": -17.656937268453603, - "c5": 18.996057892236387, - "c6": -22.955269796224105, - "c7": 19.499028784189015 + "points": { + "c1": -4.43509067909384, + "c2": -2.2304108363732738, + "c3": 18.734549508650055, + "c4": -20.593496214142114, + "c5": -11.574505579984834, + "c6": -8.296573242285955, + "c7": 0.09369209764442132 }, - "vertexSeeds": { - "c1": 4.599352937067515, - "c2": 5.125103549533749, - "c3": 4.735314926336633, - "c4": 4.396488291351626, - "c5": 4.623448466012345, - "c6": 4.980854491671914, - "c7": 4.871982820586448 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779469, + "c3": 6.195099398982893, + "c4": 4.956079519186316, + "c5": 3.7170596393897344, + "c6": 2.478039759593158, + "c7": 1.2390198797965766 }, "rgb": [86, 146, 138] }, @@ -81357,23 +81357,23 @@ "year": 1726, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -24.651395423975515, - "c2": 11.020161760661935, - "c3": 31.603376244302723, - "c4": -15.92344791289213, - "c5": -1.642134904214572, - "c6": 15.418594849928184, - "c7": -10.69782667808564 + "points": { + "c1": 11.013506146728758, + "c2": 35.12825214422638, + "c3": -6.4768720077019495, + "c4": -16.99050962069111, + "c5": -2.039330704835834, + "c6": -33.61957840019574, + "c7": 5.2231977753827366 }, - "vertexSeeds": { - "c1": 5.056076192357702, - "c2": 4.690747849170509, - "c3": 4.857918886179842, - "c4": 4.974380407488388, - "c5": 4.969025028183383, - "c6": 5.078949710003066, - "c7": 4.97507106236863 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578357, + "c3": 6.079519186315311, + "c4": 4.863615349052244, + "c5": 3.6477115117891783, + "c6": 2.431807674526122, + "c7": 1.2159038372630664 }, "rgb": [238, 201, 159] }, @@ -81384,23 +81384,23 @@ "year": 1726, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 2.9081994708561822, - "c2": -10.675041838401963, - "c3": -18.415183600291577, - "c4": -5.969847987419602, - "c5": 24.01963195685577, - "c6": -5.413303320767433, - "c7": -18.948566894344367 + "points": { + "c1": 22.178918105199855, + "c2": -32.23393924506739, + "c3": 8.334068745617842, + "c4": 5.926681430403349, + "c5": 34.03759912414024, + "c6": 8.873857458960074, + "c7": 23.060815767119593 }, - "vertexSeeds": { - "c1": 2.446967042543705, - "c2": 2.4978189669611814, - "c3": 2.446336553565632, - "c4": 2.488604351346044, - "c5": 2.4597838614405445, - "c6": 2.465305274354607, - "c7": 2.4353110409651353 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228846, + "c3": 3.005085529357369, + "c4": 2.4040684234859007, + "c5": 1.803051317614423, + "c6": 1.2020342117429454, + "c7": 0.6010171058714677 }, "rgb": [77, 76, 132] }, @@ -81411,23 +81411,23 @@ "year": 1726, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -13.68752046930572, - "c2": -4.4565838161877664, - "c3": 21.991277056160634, - "c4": -10.28378037398219, - "c5": 26.326959512382025, - "c6": 33.37665456133776, - "c7": 9.077309571337409 + "points": { + "c1": 1.6108494383681915, + "c2": 31.562045488230225, + "c3": 4.050817622385608, + "c4": 14.859170251972415, + "c5": -7.838437167330227, + "c6": -24.864564460862262, + "c7": -3.673686955805657 }, - "vertexSeeds": { - "c1": 3.3630918346275753, - "c2": 3.5100236844506516, - "c3": 3.5943712197864524, - "c4": 3.729938441345124, - "c5": 3.732269779670166, - "c6": 3.5435244239988277, - "c7": 3.364283694250768 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [58, 15, 49] }, @@ -81438,23 +81438,23 @@ "year": 1726, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -21.0478019029945, - "c2": 28.414849351305573, - "c3": 23.737074665090585, - "c4": -15.942930949761328, - "c5": -23.159235418020913, - "c6": -7.455223845792663, - "c7": 28.832480182951404 + "points": { + "c1": -30.967341169926442, + "c2": 23.103991610059083, + "c3": 0.4559708706979464, + "c4": 26.189655238928353, + "c5": -11.77013962013038, + "c6": -13.66981996883682, + "c7": -26.309051480983786 }, - "vertexSeeds": { - "c1": 6.848184954275543, - "c2": 7.432885596958657, - "c3": 6.8171564144088945, - "c4": 7.546169180364567, - "c5": 7.123926713873097, - "c6": 6.735668807877434, - "c7": 7.290034519493589 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048542, + "c3": 9.223300970873785, + "c4": 7.378640776699028, + "c5": 5.533980582524271, + "c6": 3.689320388349514, + "c7": 1.844660194174757 }, "rgb": [77, 76, 132] }, @@ -81465,23 +81465,23 @@ "year": 1726, "resistanceReported": false, "duration": 172800, - "curveSeeds": { - "c1": -1.6358534594815133, - "c2": -9.547029675978566, - "c3": 8.883438815126729, - "c4": 4.6520688089504745, - "c5": 8.39827870882536, - "c6": 3.516496961665167, - "c7": 7.1459778330377635 + "points": { + "c1": -0.6827367355379348, + "c2": -4.540398011600123, + "c3": -10.58402253356916, + "c4": 9.669179942023346, + "c5": 11.79644246995826, + "c6": -0.29093754918300796, + "c7": 10.055632649086833 }, - "vertexSeeds": { - "c1": 4.515390789794914, - "c2": 4.705559543212762, - "c3": 4.960822478547604, - "c4": 4.704729464404413, - "c5": 4.627935969907021, - "c6": 5.079232080614096, - "c7": 5.026929466732043 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618588, + "c3": 6.102635228848822, + "c4": 4.882108183079055, + "c5": 3.6615811373092875, + "c6": 2.4410540915395273, + "c7": 1.2205270457697603 }, "rgb": [238, 201, 159] }, @@ -81492,23 +81492,23 @@ "year": 1727, "resistanceReported": true, "duration": 31536000, - "curveSeeds": { - "c1": 13.542509686847815, - "c2": -16.635184934135832, - "c3": -15.81947665778862, - "c4": -10.456667660020933, - "c5": -10.995686151637742, - "c6": -32.11456697801913, - "c7": 43.69836928697876 + "points": { + "c1": 22.208701203807223, + "c2": 44.593209486003786, + "c3": -2.059669193656646, + "c4": -6.6369037019864905, + "c5": -24.724745803736532, + "c6": -22.36804722073682, + "c7": 10.935019058793173 }, - "vertexSeeds": { - "c1": 2.120821661228369, - "c2": 2.3302166695395377, - "c3": 2.235469271354403, - "c4": 2.2528202261984682, - "c5": 2.2304854003441483, - "c6": 2.274186486931324, - "c7": 2.1466226668789594 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668537, + "c3": 2.7970411465557086, + "c4": 2.237632917244569, + "c5": 1.6782246879334244, + "c6": 1.1188164586222844, + "c7": 0.55940822931114 }, "rgb": [77, 76, 132] }, @@ -81519,23 +81519,23 @@ "year": 1727, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -9.397077455773712, - "c2": 53.897041024322505, - "c3": 47.194076591206155, - "c4": 25.022966061604833, - "c5": 21.092442229877847, - "c6": -24.749619428329346, - "c7": -4.75250534625124 + "points": { + "c1": 27.579872828157306, + "c2": 51.05133150267923, + "c3": 55.293645654654654, + "c4": -49.42000967932896, + "c5": -15.929829326743103, + "c6": 41.796875588484625, + "c7": 37.07464294893174 }, - "vertexSeeds": { - "c1": 3.4093302312151064, - "c2": 3.4849561352513216, - "c3": 3.2031029673993086, - "c4": 3.3302242117695817, - "c5": 3.5582366344787997, - "c6": 3.611489022502532, - "c7": 3.660723577211615 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.40915395284327, + "c3": 4.50762829403606, + "c4": 3.60610263522885, + "c5": 2.704576976421635, + "c6": 1.80305131761442, + "c7": 0.90152565880721 }, "rgb": [222, 0, 59] }, @@ -81546,23 +81546,23 @@ "year": 1727, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -35.483950116449016, - "c2": -44.45549137468588, - "c3": 20.8289154472823, - "c4": -0.8365696797914595, - "c5": 12.339676864158292, - "c6": -28.081738678713744, - "c7": -10.143688236565502 + "points": { + "c1": -36.15677095249815, + "c2": 24.11299468018619, + "c3": 25.3474778028187, + "c4": 26.05496957781979, + "c5": 28.104492711221695, + "c6": -13.477710781051378, + "c7": 16.1538948760957 }, - "vertexSeeds": { - "c1": 0.34345887857834534, - "c2": 0.37788190834871654, - "c3": 0.39613567579261644, - "c4": 0.35735720286486095, - "c5": 0.3661994671746663, - "c6": 0.36637890540826773, - "c7": 0.38415452384456444 + "offsets": { + "c1": 0.7119741100323626, + "c2": 0.610263522884882, + "c3": 0.5085529357374021, + "c4": 0.4068423485899215, + "c5": 0.305131761442441, + "c6": 0.20342117429496043, + "c7": 0.10171058714748053 }, "rgb": [222, 0, 59] }, @@ -81573,23 +81573,23 @@ "year": 1728, "resistanceReported": false, "duration": 64281600, - "curveSeeds": { - "c1": -43.77055824669099, - "c2": -56.868771653917975, - "c3": -27.712997819684922, - "c4": -10.540119455824737, - "c5": -52.3230674354122, - "c6": -57.86649097110333, - "c7": -4.908696836422692 + "points": { + "c1": -38.81357349573229, + "c2": -54.305478535401384, + "c3": 66.13967107541427, + "c4": -62.798077220914934, + "c5": -22.14847174609762, + "c6": 8.282134426764273, + "c7": 29.58879608877112 }, - "vertexSeeds": { - "c1": 0.49534861511829986, - "c2": 0.5216981568915652, - "c3": 0.523464997153546, - "c4": 0.4910072806376234, - "c5": 0.5147163284613983, - "c6": 0.4868729620667682, - "c7": 0.5472463792991377 + "offsets": { + "c1": 1.0032362459546926, + "c2": 0.8599167822468791, + "c3": 0.716597318539066, + "c4": 0.5732778548312532, + "c5": 0.42995839112343953, + "c6": 0.28663892741562585, + "c7": 0.14331946370781293 }, "rgb": [238, 201, 159] }, @@ -81600,23 +81600,23 @@ "year": 1728, "resistanceReported": false, "duration": 64281600, - "curveSeeds": { - "c1": 64.88543192657707, - "c2": -76.60354661330193, - "c3": 51.35363307562503, - "c4": 3.405236046305447, - "c5": 61.24089085530176, - "c6": -6.553560509011774, - "c7": -64.71161594028572 + "points": { + "c1": 38.284602544265454, + "c2": 13.80153711284332, + "c3": 33.01013653593351, + "c4": 14.902167961034408, + "c5": 64.88665377941862, + "c6": 76.9439347365705, + "c7": 36.409237125400765 }, - "vertexSeeds": { - "c1": 2.1955958549222796, - "c2": 2.1955958549222796, - "c3": 2.1955958549222796, - "c4": 2.1955958549222796, - "c5": 2.1955958549222796, - "c6": 2.1955958549222796, - "c7": 2.1955958549222796 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -81627,23 +81627,23 @@ "year": 1727, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 38.69358169037568, - "c2": -40.375120714741726, - "c3": 11.37278786540282, - "c4": 30.950414658515612, - "c5": 10.569378013695768, - "c6": -28.292199475475055, - "c7": -42.43463781641012 + "points": { + "c1": -33.463727746795655, + "c2": -29.029078517222263, + "c3": 23.75019189776137, + "c4": -21.48119300700352, + "c5": 47.63895561835308, + "c6": 25.06190199456222, + "c7": 2.9627983533428264 }, - "vertexSeeds": { - "c1": 4.3058038668216705, - "c2": 4.874859259377743, - "c3": 4.703783659460277, - "c4": 4.712377149165883, - "c5": 4.7604465828236195, - "c6": 4.875818106797949, - "c7": 4.9807511759090595 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457698, + "c3": 6.0101710587147466, + "c4": 4.808136846971797, + "c5": 3.6061026352288454, + "c6": 2.404068423485895, + "c7": 1.2020342117429446 }, "rgb": [77, 76, 132] }, @@ -81654,23 +81654,23 @@ "year": 1726, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 3.1855837016157658, - "c2": 5.486135777606094, - "c3": 4.213588354399366, - "c4": 7.692410516273021, - "c5": -17.97593250766849, - "c6": -0.4135785444798721, - "c7": 20.79722775049563 + "points": { + "c1": -14.285014324599896, + "c2": 19.835237550723917, + "c3": -19.568887579330845, + "c4": 15.143720745873388, + "c5": -0.7732306359428165, + "c6": -8.572583662809667, + "c7": -5.815620911428173 }, - "vertexSeeds": { - "c1": 6.599191704882615, - "c2": 5.489904158880217, - "c3": 6.2828012237548245, - "c4": 6.130270375587392, - "c5": 6.387546191251689, - "c6": 6.028623387945828, - "c7": 6.327908814351456 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.486823855755892, + "c3": 7.90568654646325, + "c4": 6.324549237170597, + "c5": 4.743411927877946, + "c6": 3.1622746185852946, + "c7": 1.5811373092926517 }, "rgb": [238, 201, 159] }, @@ -81681,23 +81681,23 @@ "year": 1726, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -9.480835336508214, - "c2": -19.10490259216725, - "c3": 33.70035242447, - "c4": -34.34837718626679, - "c5": -20.228165326960173, - "c6": -18.208980515782475, - "c7": -1.8905030087316277 + "points": { + "c1": 32.458784998354474, + "c2": -23.27091684161802, + "c3": -19.915977320174864, + "c4": 33.00369737269844, + "c5": 38.80302905112907, + "c6": -15.488132454239839, + "c7": 5.088225679613508 }, - "vertexSeeds": { - "c1": 3.4516540300383345, - "c2": 3.140477807505412, - "c3": 3.1230112903659295, - "c4": 3.1602707922335664, - "c5": 3.201022913147485, - "c6": 3.195066833418965, - "c7": 2.8745688940750007 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239945, + "c3": 4.160887656033289, + "c4": 3.328710124826627, + "c5": 2.4965325936199703, + "c6": 1.6643550624133134, + "c7": 0.8321775312066567 }, "rgb": [238, 201, 159] }, @@ -81708,23 +81708,23 @@ "year": 1726, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 6.074308637229663, - "c2": 9.439381952909741, - "c3": -32.46749665699481, - "c4": -1.6242320629051008, - "c5": 19.63126400807993, - "c6": 0.8702629661433434, - "c7": -29.800094971044736 + "points": { + "c1": -18.818803976064128, + "c2": -35.59504241535333, + "c3": 36.21479754127907, + "c4": 12.13041745045102, + "c5": -30.168058050510847, + "c6": 9.032850275227077, + "c7": 37.18363860870416 }, - "vertexSeeds": { - "c1": 7.188295029125764, - "c2": 8.02835892715743, - "c3": 7.780463106600585, - "c4": 7.746416666082004, - "c5": 7.152765848833374, - "c6": 7.318294457175606, - "c7": 7.906959544268137 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.67822468793342, + "c3": 9.731853906611189, + "c4": 7.7854831252889465, + "c5": 5.8391123439667165, + "c6": 3.8927415626444732, + "c7": 1.9463707813222428 }, "rgb": [58, 15, 49] }, @@ -81735,23 +81735,23 @@ "year": 1726, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -25.306625042354582, - "c2": 18.15273356962409, - "c3": 2.2798947510007324, - "c4": 10.827216905361688, - "c5": 10.818801305150473, - "c6": 13.210856049543821, - "c7": -23.349392311031686 + "points": { + "c1": -29.468250711670954, + "c2": -13.078149543030406, + "c3": 18.029035970184445, + "c4": 14.934690395081418, + "c5": -14.41821134167969, + "c6": 25.441766402212117, + "c7": 2.193156055183117 }, - "vertexSeeds": { - "c1": 4.821874074012019, - "c2": 5.189688960907208, - "c3": 4.903517228237493, - "c4": 5.046860605714864, - "c5": 5.277760007803807, - "c6": 5.354808132400387, - "c7": 5.232399529400373 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784565, + "c4": 5.122515025427641, + "c5": 3.841886269070733, + "c6": 2.5612575127138246, + "c7": 1.2806287563569163 }, "rgb": [222, 0, 59] }, @@ -81762,23 +81762,23 @@ "year": 1726, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -0.028023078681876257, - "c2": 30.439044723813403, - "c3": -21.38490896791956, - "c4": 24.69535255919724, - "c5": 31.83454514876665, - "c6": -3.4147480607879466, - "c7": 3.277345396275919 + "points": { + "c1": 25.786269720447308, + "c2": -6.208508363994373, + "c3": -15.554766261881962, + "c4": 23.671375303467464, + "c5": 25.286504793900363, + "c6": -12.294084519805892, + "c7": 18.60161577431306 }, - "vertexSeeds": { - "c1": 4.081545145231319, - "c2": 3.811797999679778, - "c3": 4.433872155700075, - "c4": 3.916372147453451, - "c5": 4.30400408003535, - "c6": 3.936568743071687, - "c7": 3.893060669420153 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015257, + "c3": 5.755894590846047, + "c4": 4.604715672676837, + "c5": 3.4535367545076268, + "c6": 2.3023578363384205, + "c7": 1.1511789181692103 }, "rgb": [222, 0, 59] }, @@ -81789,23 +81789,23 @@ "year": 1726, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 20.37984518031076, - "c2": -28.400015496256025, - "c3": -7.100441212196287, - "c4": 24.094425649637124, - "c5": -1.8993803811601424, - "c6": -10.82136316167971, - "c7": 5.667775768139158 + "points": { + "c1": -21.493715691457915, + "c2": -12.621826897671841, + "c3": 23.830106237747792, + "c4": 6.296021618020816, + "c5": -16.342097543562964, + "c6": -0.9518184995290717, + "c7": -7.405003953267421 }, - "vertexSeeds": { - "c1": 4.2756009743873, - "c2": 4.8559966838816, - "c3": 4.169275634575814, - "c4": 4.245115785738848, - "c5": 4.126234891008976, - "c6": 4.24157521372148, - "c7": 4.697136541858918 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176142, + "c3": 5.84835876098012, + "c4": 4.678687008784098, + "c5": 3.509015256588071, + "c6": 2.3393435043920445, + "c7": 1.1696717521960223 }, "rgb": [222, 0, 59] }, @@ -81816,23 +81816,23 @@ "year": 1726, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 15.316885290701535, - "c2": -25.6245792665351, - "c3": 11.27703251467711, - "c4": -41.69814455009824, - "c5": 18.095661241144647, - "c6": -39.22995032755574, - "c7": 20.203718108673897 + "points": { + "c1": -2.4239591034624866, + "c2": -25.860042833827052, + "c3": 11.2589858852103, + "c4": 42.78903182471963, + "c5": 28.54513957571305, + "c6": -16.91074818487038, + "c7": 29.835214162920366 }, - "vertexSeeds": { - "c1": 4.697490766104333, - "c2": 5.441155001804191, - "c3": 5.527359948308819, - "c4": 4.693335175123472, - "c5": 4.887563461112825, - "c6": 5.056988774375515, - "c7": 4.847792038781631 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503463, + "c3": 6.611188164586224, + "c4": 5.288950531668977, + "c5": 3.966712898751734, + "c6": 2.6444752658344908, + "c7": 1.322237632917243 }, "rgb": [238, 201, 159] }, @@ -81843,23 +81843,23 @@ "year": 1726, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -4.732544973719133, - "c2": 0.12885631675416676, - "c3": -16.258686033032227, - "c4": 23.340293831259423, - "c5": -3.137362026760375, - "c6": -7.402607230184522, - "c7": 5.933009772006308 + "points": { + "c1": -23.71055854106199, + "c2": -22.553906200890278, + "c3": -16.294823467899256, + "c4": -22.585491151587597, + "c5": -21.382769405133484, + "c6": 11.288421983445978, + "c7": -21.779684615588383 }, - "vertexSeeds": { - "c1": 5.654536441826364, - "c2": 7.087266459636997, - "c3": 5.820297837100263, - "c4": 7.511296416451225, - "c5": 8.227862867331304, - "c6": 8.27576639235332, - "c7": 8.180061169050614 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145632, + "c3": 11.003236245954696, + "c4": 8.802588996763756, + "c5": 6.601941747572819, + "c6": 4.401294498381876, + "c7": 2.2006472491909426 }, "rgb": [238, 201, 159] }, @@ -81870,23 +81870,23 @@ "year": 1726, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 22.974015780300142, - "c2": 12.288768840449741, - "c3": 0.8241286062754085, - "c4": -31.964510362411136, - "c5": -25.336025125302925, - "c6": 11.368667818846873, - "c7": -32.47542377477846 + "points": { + "c1": -32.217776084489714, + "c2": 23.988679069420193, + "c3": 23.95450976946602, + "c4": -27.38586177575624, + "c5": -28.091926681447625, + "c6": 29.241049481611014, + "c7": -12.531236401072057 }, - "vertexSeeds": { - "c1": 4.954669466656578, - "c2": 5.027142987676938, - "c3": 5.477899536414528, - "c4": 5.362211102448504, - "c5": 4.332101015255127, - "c6": 5.184759027006793, - "c7": 4.4390753616046625 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.81923254738789, + "c4": 5.45538603791031, + "c5": 4.0915395284327305, + "c6": 2.727693018955155, + "c7": 1.3638465094775793 }, "rgb": [238, 201, 159] }, @@ -81897,23 +81897,23 @@ "year": 1726, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 0.40008509668937364, - "c2": 20.602538901227454, - "c3": 17.223382627267668, - "c4": -11.733488978856325, - "c5": 23.44757468454484, - "c6": 24.797411373333787, - "c7": -13.31088698563099 + "points": { + "c1": 27.831956342246585, + "c2": -14.493826873838373, + "c3": -29.850596700469442, + "c4": -21.349045927833693, + "c5": 24.378326203728896, + "c6": -19.411830426681963, + "c7": 9.62893927986849 }, - "vertexSeeds": { - "c1": 3.2487362762162624, - "c2": 3.2647469544213044, - "c3": 2.8741358604296083, - "c4": 2.8457864868043115, - "c5": 3.2706937451083675, - "c6": 2.7258596178942778, - "c7": 3.237161828209257 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918167, + "c3": 3.9759593157651416, + "c4": 3.1807674526121112, + "c5": 2.3855755894590858, + "c6": 1.5903837263060556, + "c7": 0.7951918631530303 }, "rgb": [222, 0, 59] }, @@ -81924,23 +81924,23 @@ "year": 1726, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 7.81952168234691, - "c2": -35.28103941840702, - "c3": 12.344198187406668, - "c4": -4.02703005555103, - "c5": 11.719911641364618, - "c6": -36.42218875250543, - "c7": 0.8431265026363164 + "points": { + "c1": -0.9508752139548378, + "c2": -4.620685561439984, + "c3": -39.44491753892785, + "c4": 30.509904978802638, + "c5": -7.840641901523938, + "c6": 36.545395766311415, + "c7": -31.10715256419449 }, - "vertexSeeds": { - "c1": 7.023909201687402, - "c2": 6.918826805321305, - "c3": 6.881048151053287, - "c4": 6.866665008651729, - "c5": 6.6409976714477255, - "c6": 7.126525292786962, - "c7": 6.432894355474611 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962546, + "c3": 8.599167822468795, + "c4": 6.87933425797503, + "c5": 5.159500693481266, + "c6": 3.439667128987515, + "c7": 1.7198335644937501 }, "rgb": [222, 0, 59] }, @@ -81951,23 +81951,23 @@ "year": 1726, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 25.44196832522217, - "c2": 22.212502639010822, - "c3": -21.65515424479113, - "c4": 15.186956640913671, - "c5": 8.877911679489038, - "c6": -6.545552668478468, - "c7": -18.069930567538655 + "points": { + "c1": -31.62820656279235, + "c2": -7.074051907681344, + "c3": -29.13149295131635, + "c4": -31.16328531505048, + "c5": -32.20461731632391, + "c6": -20.59074493704522, + "c7": -26.913103062652276 }, - "vertexSeeds": { - "c1": 2.6386771086192513, - "c2": 2.6717017640482337, - "c3": 2.3963073725590003, - "c4": 2.6417838602878265, - "c5": 2.4850212548555795, - "c6": 2.2802702446593, - "c7": 2.788065671953984 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.374942209893665, + "c4": 2.6999537679149315, + "c5": 2.024965325936197, + "c6": 1.3499768839574657, + "c7": 0.6749884419787339 }, "rgb": [86, 146, 138] }, @@ -81978,23 +81978,23 @@ "year": 1726, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -15.858884378115986, - "c2": -5.300172382427348, - "c3": -25.657863229889138, - "c4": 0.19415252246052006, - "c5": 13.84027404309818, - "c6": -1.634206066298642, - "c7": 9.518888278038713 + "points": { + "c1": 16.60396913359172, + "c2": 25.946150101570055, + "c3": 4.4647223194880254, + "c4": 2.0820613002257247, + "c5": 27.872821889338745, + "c6": -9.32600778266261, + "c7": 16.009611895934647 }, - "vertexSeeds": { - "c1": 3.244711920701632, - "c2": 2.7381449422224566, - "c3": 2.716584110595001, - "c4": 2.724073387898053, - "c5": 3.1127489447281818, - "c6": 3.129510701717301, - "c7": 3.2515036218226756 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837724, + "c3": 3.9297272306981035, + "c4": 3.1437817845584863, + "c5": 2.3578363384188648, + "c6": 1.5718908922792432, + "c7": 0.7859454461396216 }, "rgb": [238, 201, 159] }, @@ -82005,23 +82005,23 @@ "year": 1726, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -8.319784447709615, - "c2": 12.785951434102046, - "c3": -26.708708001065837, - "c4": -5.829270682663232, - "c5": -1.6820589201509861, - "c6": 3.494883046804638, - "c7": -18.879366037392515 + "points": { + "c1": -15.344194065744858, + "c2": -30.12900646969047, + "c3": -27.499864471988193, + "c4": -3.0746519556312144, + "c5": 9.442796227461741, + "c6": -10.45069756874068, + "c7": -20.495951644264288 }, - "vertexSeeds": { - "c1": 5.000510272343742, - "c2": 5.204957120904317, - "c3": 4.82714079389314, - "c4": 4.54823355632476, - "c5": 4.731605481746355, - "c6": 4.964932957435989, - "c7": 4.61179212918609 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -82032,23 +82032,23 @@ "year": 1726, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 30.56444981027705, - "c2": -14.626160573629782, - "c3": -9.146904991722202, - "c4": 16.027709469643735, - "c5": -26.50281346164036, - "c6": 16.46091657989916, - "c7": 16.789632627835292 + "points": { + "c1": -33.11189712175942, + "c2": -6.1803158175011035, + "c3": 11.542447710791258, + "c4": -31.179892843523444, + "c5": -16.776501998418187, + "c6": -12.248078941741067, + "c7": 24.80828165034638 }, - "vertexSeeds": { - "c1": 4.501134406545044, - "c2": 4.739941712787223, - "c3": 4.441725240819395, - "c4": 4.49990735753863, - "c5": 5.116564074424841, - "c6": 4.327152831054866, - "c7": 5.137095797983826 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -82059,23 +82059,23 @@ "year": 1726, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 11.916415942693067, - "c2": 2.628678468889671, - "c3": 10.620569121188947, - "c4": -8.363520861164872, - "c5": -13.546449660095789, - "c6": 20.95140830440725, - "c7": -4.399670758573787 + "points": { + "c1": 8.06523496068986, + "c2": 7.472403539164734, + "c3": 12.49310644470761, + "c4": 18.69803023663034, + "c5": -0.6175589435724227, + "c6": -0.4512280015650063, + "c7": -13.727193445214684 }, - "vertexSeeds": { - "c1": 3.9521445670782223, - "c2": 4.18428787404848, - "c3": 4.125416071286093, - "c4": 4.307544473638966, - "c5": 4.302049868597477, - "c6": 4.30125507758509, - "c7": 3.8606609112561254 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894593, + "c3": 5.686546463245492, + "c4": 4.549237170596395, + "c5": 3.411927877947294, + "c6": 2.2746185852981977, + "c7": 1.137309292649101 }, "rgb": [222, 0, 59] }, @@ -82086,23 +82086,23 @@ "year": 1726, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -4.0243766200729, - "c2": -20.105078344617525, - "c3": -29.259791244956524, - "c4": 20.051211912487144, - "c5": 20.936304363591983, - "c6": -19.143376982518337, - "c7": 27.127364748497737 + "points": { + "c1": -27.172616636386284, + "c2": 4.004542536329083, + "c3": 21.69837977956628, + "c4": 6.271028672425182, + "c5": -11.300393326092891, + "c6": 25.030694537877217, + "c7": 23.417248909343463 }, - "vertexSeeds": { - "c1": 4.7126972146100945, - "c2": 5.2368189501883435, - "c3": 4.908997022800697, - "c4": 5.337492756545851, - "c5": 5.0167582564978845, - "c6": 4.823592871721912, - "c7": 5.254004751347047 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318072, + "c4": 5.141007859454461, + "c5": 3.855755894590848, + "c6": 2.5705039297272303, + "c7": 1.2852519648636118 }, "rgb": [222, 0, 59] }, @@ -82113,23 +82113,23 @@ "year": 1727, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 21.292801855358206, - "c2": 10.530117683478522, - "c3": -23.492384518329764, - "c4": -35.925357040673056, - "c5": 29.854633818803734, - "c6": -35.964938959102604, - "c7": -3.174467120621209 + "points": { + "c1": -0.0831615803906871, + "c2": -14.551074414479551, + "c3": -35.37802758907079, + "c4": 20.897274104739907, + "c5": -28.068353574263796, + "c6": -39.81653270275172, + "c7": 30.66886844609826 }, - "vertexSeeds": { - "c1": 6.441276013201624, - "c2": 7.010810806250348, - "c3": 6.97726707652899, - "c4": 6.561665235190925, - "c5": 6.752385655743924, - "c6": 6.640196659293839, - "c7": 7.10568805061411 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [58, 15, 49] }, @@ -82140,23 +82140,23 @@ "year": 1726, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 20.363755974624915, - "c2": -26.299199886647322, - "c3": -1.6259217935602592, - "c4": -6.139167024644529, - "c5": 3.8257082285906137, - "c6": -11.155812899312803, - "c7": 25.210269496757014 + "points": { + "c1": -5.450306551929273, + "c2": 25.46015107996994, + "c3": -1.0009890359975415, + "c4": -12.522506157765868, + "c5": -20.834248494671385, + "c6": 5.143909150901656, + "c7": 14.029131886906349 }, - "vertexSeeds": { - "c1": 6.415000112242877, - "c2": 7.151078237739783, - "c3": 6.825401785781918, - "c4": 6.722350724348561, - "c5": 7.141228516262709, - "c6": 7.422494229583241, - "c7": 6.453759618488941 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485432, + "c3": 8.899676375404532, + "c4": 7.119741100323622, + "c5": 5.339805825242722, + "c6": 3.559870550161811, + "c7": 1.7799352750808988 }, "rgb": [86, 146, 138] }, @@ -82167,23 +82167,23 @@ "year": 1727, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 40.78508958750251, - "c2": -28.895738091623077, - "c3": 38.3178952790889, - "c4": -8.865286147723793, - "c5": -34.62487952937577, - "c6": 25.458082620088973, - "c7": -4.812365869905918 + "points": { + "c1": -7.227763853663717, + "c2": -27.989043094658292, + "c3": -21.93315027140426, + "c4": 16.851532651508784, + "c5": 38.68639581198332, + "c6": 40.45012073493537, + "c7": 29.028393223253673 }, - "vertexSeeds": { - "c1": 5.155075661015092, - "c2": 4.559443282544203, - "c3": 5.114512792404095, - "c4": 4.7925918000597125, - "c5": 4.346186652709248, - "c6": 4.671061342880649, - "c7": 5.02837771683817 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -82194,23 +82194,23 @@ "year": 1726, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 1.0443257126051542, - "c2": 11.944232528317272, - "c3": -0.03795545928383248, - "c4": -14.734883861755495, - "c5": -11.991452436125924, - "c6": 9.18946638110907, - "c7": -13.210314354118553 + "points": { + "c1": 12.799014501238105, + "c2": -6.525004399139249, + "c3": 20.293627006139964, + "c4": -13.975296744277298, + "c5": -8.956221789956267, + "c6": -0.09570314701156235, + "c7": -0.8350760334436309 }, - "vertexSeeds": { - "c1": 8.564411673281743, - "c2": 8.717716274790764, - "c3": 8.578046193475632, - "c4": 8.578460583991989, - "c5": 8.65401096124611, - "c6": 8.572409662349772, - "c7": 8.722863001175867 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099836, + "c3": 10.402219140083252, + "c4": 8.321775312066586, + "c5": 6.241331484049918, + "c6": 4.160887656033334, + "c7": 2.080443828016667 }, "rgb": [238, 201, 159] }, @@ -82221,23 +82221,23 @@ "year": 1727, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -13.608577405241977, - "c2": -33.81239388952933, - "c3": 35.018144316801354, - "c4": 12.775369922282614, - "c5": -33.42007651406991, - "c6": -11.640999933439748, - "c7": -21.759984666814017 + "points": { + "c1": -36.02186672272087, + "c2": -32.19611530422546, + "c3": -5.0221134616461285, + "c4": -1.07244125462298, + "c5": 1.6403240561859178, + "c6": -22.21573650839938, + "c7": -11.168043656268804 }, - "vertexSeeds": { - "c1": 3.772500217903571, - "c2": 3.760769380426927, - "c3": 3.6348653540294467, - "c4": 3.9273886088676404, - "c5": 3.5121216315513237, - "c6": 3.6068637885026535, - "c7": 3.641789422658181 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205269, + "c3": 4.715672676837729, + "c4": 3.7725381414701817, + "c5": 2.8294036061026344, + "c6": 1.8862690707350942, + "c7": 0.9431345353675471 }, "rgb": [77, 76, 132] }, @@ -82248,23 +82248,23 @@ "year": 1727, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -21.402883824134314, - "c2": 19.514582298842534, - "c3": 40.104075224194524, - "c4": 42.36049254549739, - "c5": 19.292086386785613, - "c6": 1.3879426733655436, - "c7": -30.83940037105681 + "points": { + "c1": -7.347242972106116, + "c2": -39.91864086887093, + "c3": -13.917995081625556, + "c4": -40.63561209794925, + "c5": -23.782801918556828, + "c6": -41.032259526172396, + "c7": -27.25777263311395 }, - "vertexSeeds": { - "c1": 12.605897845584382, - "c2": 12.909790585032399, - "c3": 12.481526202926664, - "c4": 12.876822685608875, - "c5": 13.035288192829377, - "c6": 12.25567736287749, - "c7": 12.325961018239903 + "offsets": { + "c1": 22.135922330097088, + "c2": 18.973647711511795, + "c3": 15.811373092926502, + "c4": 12.649098474341207, + "c5": 9.486823855755881, + "c6": 6.3245492371705865, + "c7": 3.1622746185852932 }, "rgb": [238, 201, 159] }, @@ -82275,23 +82275,23 @@ "year": 1727, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 32.2722875101432, - "c2": -36.952060189975654, - "c3": 2.698672797553421, - "c4": 36.521369582525196, - "c5": 29.792821402441234, - "c6": -9.718676586068732, - "c7": -4.092423641338527 + "points": { + "c1": -25.354063022159316, + "c2": 25.51749198397563, + "c3": -7.850751471075839, + "c4": 17.159067808464968, + "c5": 22.898607418305694, + "c6": -21.138757673941114, + "c7": -33.06184996113712 }, - "vertexSeeds": { - "c1": 6.114103988383967, - "c2": 6.437156530773137, - "c3": 6.380137873000342, - "c4": 6.121383012023668, - "c5": 5.8566941761208, - "c6": 6.424973256250673, - "c7": 6.292201111056467 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393902, + "c3": 7.697642163661575, + "c4": 6.158113730929263, + "c5": 4.618585298196951, + "c6": 3.079056865464624, + "c7": 1.539528432732312 }, "rgb": [77, 76, 132] }, @@ -82302,23 +82302,23 @@ "year": 1726, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 26.005904365474414, - "c2": -25.617091132828495, - "c3": -21.289051561037063, - "c4": 7.962413279258662, - "c5": 8.970907986424848, - "c6": -22.25073633902388, - "c7": 4.8902891977554965 + "points": { + "c1": 21.213175257177838, + "c2": -25.942447673719276, + "c3": -21.96124795732227, + "c4": 7.3817914849132364, + "c5": -14.18120801502674, + "c6": 5.767534734942039, + "c7": 0.9334518744400278 }, - "vertexSeeds": { - "c1": 5.045196170789406, - "c2": 4.756446359356612, - "c3": 4.9547069748423045, - "c4": 4.72691176170002, - "c5": 4.427652196293626, - "c6": 4.3004817538566815, - "c7": 4.234290766454231 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -82329,23 +82329,23 @@ "year": 1727, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 2.81289519775806, - "c2": -2.9351579382652275, - "c3": 1.5698657561760285, - "c4": -10.694805566176992, - "c5": -22.93542611391909, - "c6": -11.282104272103421, - "c7": -25.62637506919036 + "points": { + "c1": -3.663357121370929, + "c2": 28.89114887860152, + "c3": 35.753274237041616, + "c4": 21.547016079895506, + "c5": -1.167950339097473, + "c6": 22.311202517606077, + "c7": 16.426278884909443 }, - "vertexSeeds": { - "c1": 3.6148370973824604, - "c2": 6.541827061364502, - "c3": 3.0784994140959983, - "c4": 1.8619475002137056, - "c5": 6.327148966910212, - "c6": 7.070763134184281, - "c7": 1.968923865520432 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407303, + "c4": 7.397133610725844, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.849283402681461 }, "rgb": [86, 146, 138] }, @@ -82356,23 +82356,23 @@ "year": 1727, "resistanceReported": true, "duration": 38448000, - "curveSeeds": { - "c1": 15.503316908803882, - "c2": 18.812994572486545, - "c3": 24.33487136839787, - "c4": -16.197204620050385, - "c5": 10.076557719554437, - "c6": -40.53870740670777, - "c7": 23.89838231015655 + "points": { + "c1": 24.699664868850036, + "c2": 8.445899300201184, + "c3": 9.47730790077135, + "c4": 35.96408929219295, + "c5": -44.53790846526531, + "c6": -7.75545790713096, + "c7": -1.545857623953502 }, - "vertexSeeds": { - "c1": 6.597145225332218, - "c2": 7.9143253124845625, - "c3": 6.700139758738475, - "c4": 7.532808125591519, - "c5": 7.481136073392701, - "c6": 7.529999951032048, - "c7": 7.466245991878786 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.42857142857143, + "c3": 9.523809523809527, + "c4": 7.619047619047623, + "c5": 5.714285714285721, + "c6": 3.8095238095238066, + "c7": 1.904761904761914 }, "rgb": [58, 15, 49] }, @@ -82383,23 +82383,23 @@ "year": 1727, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 23.160582744979262, - "c2": -4.193672683141685, - "c3": 16.189672516505528, - "c4": 17.24211285326167, - "c5": -11.526389545251988, - "c6": -13.495624867977671, - "c7": -21.885237418610345 + "points": { + "c1": -25.641287512731395, + "c2": 8.41474885839229, + "c3": -28.609594965483247, + "c4": 24.36647911241543, + "c5": -15.583883855313054, + "c6": 31.61687298170914, + "c7": -26.773008943074124 }, - "vertexSeeds": { - "c1": 5.106029733057185, - "c2": 5.121044245738155, - "c3": 5.087817597413084, - "c4": 4.872575760895053, - "c5": 4.689945852620526, - "c6": 4.731676788265295, - "c7": 4.566651720838955 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -82410,23 +82410,23 @@ "year": 1727, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -11.214102193251929, - "c2": -8.82503864424541, - "c3": -10.728024237632003, - "c4": -17.335747198698392, - "c5": -18.374809874087966, - "c6": 27.237459985313087, - "c7": 18.12117220158946 + "points": { + "c1": -13.329156563380291, + "c2": 23.127260438120878, + "c3": -13.476568248914948, + "c4": -27.486630933977814, + "c5": 17.247318538195927, + "c6": 5.271887899380104, + "c7": -22.108206160189376 }, - "vertexSeeds": { - "c1": 4.412928942815225, - "c2": 4.483402436284974, - "c3": 4.948276687638382, - "c4": 4.689889294229844, - "c5": 5.421293480954039, - "c6": 4.6841459611713, - "c7": 5.175379863974234 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463242, + "c3": 6.588072122052706, + "c4": 5.270457697642161, + "c5": 3.952843273231626, + "c6": 2.6352288488210807, + "c7": 1.3176144244105403 }, "rgb": [77, 76, 132] }, @@ -82437,23 +82437,23 @@ "year": 1727, "resistanceReported": true, "duration": 17798400, - "curveSeeds": { - "c1": -23.888890189866707, - "c2": 23.535343115443396, - "c3": 24.958606112076943, - "c4": -17.858354098357516, - "c5": -4.792118100606313, - "c6": -8.427388777484449, - "c7": -10.682365391526286 + "points": { + "c1": 26.655345173375807, + "c2": -12.993397035231752, + "c3": 26.706564428385917, + "c4": 4.396384155922945, + "c5": 0.23096669711166484, + "c6": -28.85568660073944, + "c7": 18.12971240906822 }, - "vertexSeeds": { - "c1": 3.9229620540188574, - "c2": 3.8676127897706, - "c3": 3.688573362801481, - "c4": 3.8470486063214415, - "c5": 4.010695238994141, - "c6": 3.9481570241710178, - "c7": 3.747539900097611 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647709, + "c3": 4.969949144706427, + "c4": 3.9759593157651394, + "c5": 2.9819694868238575, + "c6": 1.9879796578825697, + "c7": 0.9939898289412814 }, "rgb": [238, 201, 159] }, @@ -82464,23 +82464,23 @@ "year": 1728, "resistanceReported": false, "duration": 50198400, - "curveSeeds": { - "c1": 54.16792044306263, - "c2": -60.109289478296354, - "c3": 29.937368709208798, - "c4": -33.92479848577434, - "c5": -58.03336745568537, - "c6": 37.393563690447436, - "c7": 11.559588554184643 + "points": { + "c1": 37.65504996260523, + "c2": 1.1142953001762805, + "c3": 29.978663756714184, + "c4": -26.137686303630247, + "c5": -5.798105785201166, + "c6": -41.37023005082767, + "c7": 25.94132357376985 }, - "vertexSeeds": { - "c1": 3.6320379225770676, - "c2": 6.291823144322901, - "c3": 7.858499543046488, - "c4": 7.549165852116717, - "c5": 6.716731995839441, - "c6": 4.525281397215449, - "c7": 4.059288337527519 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809986, + "c3": 10.402219140083215, + "c4": 8.321775312066574, + "c5": 6.24133148404993, + "c6": 4.160887656033286, + "c7": 2.080443828016644 }, "rgb": [222, 0, 59] }, @@ -82491,23 +82491,23 @@ "year": 1727, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -23.468131203014963, - "c2": -39.439315407839324, - "c3": -38.81755191969824, - "c4": -3.7885197911860544, - "c5": 45.73484157715968, - "c6": 46.620002578075024, - "c7": -17.86689334985744 + "points": { + "c1": 8.376340926006002, + "c2": 25.32806243489103, + "c3": 14.371196909872204, + "c4": 39.165438217446486, + "c5": 20.335334200502906, + "c6": -38.44539927731307, + "c7": 6.883184567414467 }, - "vertexSeeds": { - "c1": 7.280222552239249, - "c2": 7.287949305656463, - "c3": 7.318567266263021, - "c4": 7.283210665775103, - "c5": 7.263291085979435, - "c6": 7.32064031896612, - "c7": 7.292834702388729 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203934, + "c3": 8.737864077669828, + "c4": 6.990291262135897, + "c5": 5.242718446601967, + "c6": 3.495145631067862, + "c7": 1.747572815533931 }, "rgb": [58, 15, 49] }, @@ -82518,23 +82518,23 @@ "year": 1727, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 31.169660557704844, - "c2": 23.404104137357876, - "c3": -11.581430320458956, - "c4": -22.638456346558137, - "c5": -16.05234076138211, - "c6": 2.3384313155616567, - "c7": -18.45940805390022 + "points": { + "c1": 19.962421610752045, + "c2": 25.889686712484085, + "c3": -30.23608269650007, + "c4": -21.89674710477928, + "c5": 20.637675249725774, + "c6": 23.24468558172959, + "c7": -31.07328792768657 }, - "vertexSeeds": { - "c1": 4.223854618535394, - "c2": 4.2223213964494555, - "c3": 4.206003928619581, - "c4": 4.262793923793066, - "c5": 4.213972063837466, - "c6": 4.214752186994306, - "c7": 4.203823810999006 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929253, + "c3": 5.131761442441071, + "c4": 4.105409153952849, + "c5": 3.0790568654646266, + "c6": 2.0527045769764447, + "c7": 1.0263522884882224 }, "rgb": [86, 146, 138] }, @@ -82545,23 +82545,23 @@ "year": 1727, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 31.43084064168349, - "c2": -19.177536590516354, - "c3": -10.98742146414374, - "c4": 9.993367719137439, - "c5": 21.751258949801475, - "c6": 9.853243856406337, - "c7": 19.229601255728305 + "points": { + "c1": -20.310751851124188, + "c2": -33.15367263464585, + "c3": 18.91290869885667, + "c4": 31.633538613125964, + "c5": -31.230890648726664, + "c6": -3.9024795714775387, + "c7": 30.085001462897196 }, - "vertexSeeds": { - "c1": 4.225348662100783, - "c2": 4.801384505178644, - "c3": 5.093570242102939, - "c4": 4.842111419433257, - "c5": 4.468791433714621, - "c6": 4.473332056185683, - "c7": 4.634906385793252 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -82572,23 +82572,23 @@ "year": 1727, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 13.978900824277886, - "c2": -30.20588157396547, - "c3": 41.75780145118074, - "c4": 14.707091211111702, - "c5": -3.5394359861485754, - "c6": 35.47385259307234, - "c7": 30.233933036406384 + "points": { + "c1": -29.950630431772048, + "c2": 1.9174620895813632, + "c3": 36.06787412565235, + "c4": 41.34147680388887, + "c5": 15.808877262818548, + "c6": 21.591077809131818, + "c7": -13.498299634935517 }, - "vertexSeeds": { - "c1": 6.346516519226991, - "c2": 6.225868522369075, - "c3": 7.10601535448907, - "c4": 6.879454225675868, - "c5": 6.453155409254634, - "c6": 6.465398557358671, - "c7": 6.689200039530139 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882114, + "c3": 8.552935737401754, + "c4": 6.842348589921409, + "c5": 5.13176144244105, + "c6": 3.4211742949607045, + "c7": 1.7105871474803456 }, "rgb": [86, 146, 138] }, @@ -82599,23 +82599,23 @@ "year": 1727, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 9.521139755951097, - "c2": -13.994716075671672, - "c3": -21.183233201680192, - "c4": -9.120444054823167, - "c5": -7.422808210052196, - "c6": 19.18407058043411, - "c7": -19.193599360795314 + "points": { + "c1": -22.044746181400903, + "c2": 12.119525631297549, + "c3": -25.907174259459588, + "c4": 16.491271446805946, + "c5": 1.5593243378570634, + "c6": 3.2455865408247817, + "c7": -10.695148877131206 }, - "vertexSeeds": { - "c1": 5.166697417427158, - "c2": 4.913856723754108, - "c3": 4.467879994140263, - "c4": 5.088267335531688, - "c5": 5.017311859251654, - "c6": 5.199991669606431, - "c7": 5.194334796597826 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -82626,23 +82626,23 @@ "year": 1727, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -37.16797618477804, - "c2": -30.526755950243142, - "c3": -15.343135852614612, - "c4": -16.441274851161268, - "c5": 32.81817846230967, - "c6": 6.887351330674321, - "c7": -2.697852437632271 + "points": { + "c1": 30.807427999819815, + "c2": 2.7784709255685414, + "c3": 2.0070020014259313, + "c4": -2.7862135269673587, + "c5": 23.21992849451138, + "c6": 29.20541265062966, + "c7": 12.746546751953915 }, - "vertexSeeds": { - "c1": 7.043427044839916, - "c2": 6.951972327587274, - "c3": 6.939830557883836, - "c4": 6.959291688395547, - "c5": 7.156640315527115, - "c6": 7.4525504299293335, - "c7": 6.998967177586973 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -82653,23 +82653,23 @@ "year": 1727, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -36.64451575483125, - "c2": -38.986863459082535, - "c3": -8.51660122734955, - "c4": 29.638022836067407, - "c5": 26.103871682602005, - "c6": -8.039668816988346, - "c7": 36.48093978908467 + "points": { + "c1": -17.732830244491186, + "c2": -18.88511919403381, + "c3": -2.7456596717136392, + "c4": 30.559631136409408, + "c5": 14.470367599064467, + "c6": -17.499892942093627, + "c7": 0.8065472066300075 }, - "vertexSeeds": { - "c1": 3.3371660833118426, - "c2": 3.204983704993648, - "c3": 2.9390262267119103, - "c4": 2.8865481767816568, - "c5": 3.1866131657456327, - "c6": 3.269221263500091, - "c7": 3.36112082755382 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199722, + "c3": 4.137771613499769, + "c4": 3.3102172907998146, + "c5": 2.482662968099861, + "c6": 1.6551086453999073, + "c7": 0.8275543226999537 }, "rgb": [58, 15, 49] }, @@ -82680,23 +82680,23 @@ "year": 1728, "resistanceReported": false, "duration": 44841600, - "curveSeeds": { - "c1": -8.318736578668847, - "c2": 43.14934247476404, - "c3": -56.12807746075606, - "c4": -17.902315837440433, - "c5": 8.769719700483137, - "c6": 4.307749787857347, - "c7": 1.908953248252871 + "points": { + "c1": 15.625998997211141, + "c2": 45.66019593510232, + "c3": -17.640238676146616, + "c4": -16.581845374290964, + "c5": 13.58068085697741, + "c6": -25.077625690424085, + "c7": -50.46537583296929 }, - "vertexSeeds": { - "c1": 5.074753024957642, - "c2": 4.937752122662506, - "c3": 5.383360598591717, - "c4": 5.4831761076611265, - "c5": 5.586422765192802, - "c6": 5.3364697985936544, - "c7": 4.643812842039347 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664357, + "c3": 6.7036523347202985, + "c4": 5.362921867776231, + "c5": 4.022191400832174, + "c6": 2.6814609338881157, + "c7": 1.3407304669440578 }, "rgb": [77, 76, 132] }, @@ -82707,23 +82707,23 @@ "year": 1727, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 25.425873927487864, - "c2": -13.044831575719503, - "c3": 25.96501016465725, - "c4": 27.983318013059815, - "c5": -27.726080258319605, - "c6": -23.413000096245717, - "c7": -14.478391733559505 + "points": { + "c1": -24.06562237040709, + "c2": -36.01134353116, + "c3": -3.0482908134764415, + "c4": 19.361576679976324, + "c5": -8.058376987796358, + "c6": -16.37789121249626, + "c7": 0.4978617970221322 }, - "vertexSeeds": { - "c1": 2.8410129267312265, - "c2": 2.941199179529306, - "c3": 2.678168388205854, - "c4": 2.9129101838991427, - "c5": 2.660945075517849, - "c6": 2.8013094700275847, - "c7": 2.7894219086351977 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153955, + "c3": 3.5367545076282916, + "c4": 2.829403606102635, + "c5": 2.1220527045769777, + "c6": 1.4147018030513143, + "c7": 0.7073509015256572 }, "rgb": [222, 0, 59] }, @@ -82734,23 +82734,23 @@ "year": 1727, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -30.61139716855874, - "c2": -9.506077457004253, - "c3": 1.970682907127312, - "c4": -17.425590269967234, - "c5": 16.41605545606955, - "c6": -18.214590940203387, - "c7": -21.288845934786288 + "points": { + "c1": 11.466174738007979, + "c2": 4.03171588105112, + "c3": -10.43334754653062, + "c4": 5.580954451342713, + "c5": -17.968452690172082, + "c6": -13.686122503816751, + "c7": 22.64946998718184 }, - "vertexSeeds": { - "c1": 3.5134222003833235, - "c2": 3.698119433498114, - "c3": 3.5718320497134903, - "c4": 3.8841958150894498, - "c5": 3.7961576001194777, - "c6": 3.9150835875937764, - "c7": 3.813541347587975 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.63106796116505, + "c3": 4.692556634304208, + "c4": 3.7540453074433615, + "c5": 2.8155339805825212, + "c6": 1.8770226537216808, + "c7": 0.9385113268608404 }, "rgb": [86, 146, 138] }, @@ -82761,23 +82761,23 @@ "year": 1727, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 26.21392075839335, - "c2": 25.898959975443283, - "c3": -19.635219179800618, - "c4": -22.188489779642417, - "c5": -15.127643730691577, - "c6": 14.586033277221937, - "c7": -11.115335076227506 + "points": { + "c1": -13.696385818324444, + "c2": 24.949470004420107, + "c3": 25.502300371823324, + "c4": 21.893301633357922, + "c5": 15.271281424498866, + "c6": -8.328251969534108, + "c7": 20.708618630343437 }, - "vertexSeeds": { - "c1": 3.753942593373356, - "c2": 3.875988119779156, - "c3": 4.255228746096476, - "c4": 3.7001159119185694, - "c5": 3.9555887305152333, - "c6": 4.479340461012645, - "c7": 3.989880780720399 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411929, + "c3": 5.409153952843276, + "c4": 4.3273231622746176, + "c5": 3.2454923717059647, + "c6": 2.1636615811373114, + "c7": 1.0818307905686533 }, "rgb": [222, 0, 59] }, @@ -82788,23 +82788,23 @@ "year": 1727, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 16.279712289126927, - "c2": 17.688693946651306, - "c3": 43.20525932598296, - "c4": 13.693518764841109, - "c5": 4.832866637486504, - "c6": 16.648810093739975, - "c7": -37.969666870621644 + "points": { + "c1": -9.930545256032012, + "c2": 28.220237086668696, + "c3": 12.940775906344307, + "c4": 37.92140427991152, + "c5": -11.774289853885357, + "c6": -6.6640070885170815, + "c7": -11.855672731412078 }, - "vertexSeeds": { - "c1": 2.6323269990969105, - "c2": 2.581393924820272, - "c3": 2.172316079041858, - "c4": 2.6131375545561157, - "c5": 2.1682460528808285, - "c6": 2.1605772561370955, - "c7": 2.357731801809089 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590845, + "c3": 3.2131299121590366, + "c4": 2.5705039297272303, + "c5": 1.9278779472954237, + "c6": 1.2852519648636151, + "c7": 0.6426259824318064 }, "rgb": [77, 76, 132] }, @@ -82815,23 +82815,23 @@ "year": 1727, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 0.5993001449196029, - "c2": -20.363899145760726, - "c3": -5.508591281630952, - "c4": -26.633453573858443, - "c5": -0.32245687525348643, - "c6": 20.27052561871877, - "c7": 25.754331401440737 + "points": { + "c1": -14.048424019271874, + "c2": 8.119752115367803, + "c3": 35.16472612022113, + "c4": 3.555579559103087, + "c5": -25.021533351707944, + "c6": -33.45615397167958, + "c7": 16.922023065076957 }, - "vertexSeeds": { - "c1": 4.232197518105299, - "c2": 4.208521630322902, - "c3": 4.10391081220089, - "c4": 4.088629297547275, - "c5": 4.16638382560982, - "c6": 4.195047339529461, - "c7": 4.381404037218487 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411927, + "c3": 5.409153952843272, + "c4": 4.327323162274623, + "c5": 3.245492371705967, + "c6": 2.1636615811373114, + "c7": 1.0818307905686557 }, "rgb": [222, 0, 59] }, @@ -82842,23 +82842,23 @@ "year": 1727, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -38.53226106518755, - "c2": 28.286238704201075, - "c3": 13.645588676953942, - "c4": 36.53316659882723, - "c5": -20.912927719015926, - "c6": -42.695354847546646, - "c7": -30.49663776594784 + "points": { + "c1": -37.23391211320621, + "c2": 2.735213846333629, + "c3": 20.483104516487792, + "c4": 38.08856546875969, + "c5": 37.33277972744279, + "c6": 10.21015124672126, + "c7": -42.67078484607914 }, - "vertexSeeds": { - "c1": 5.2612450740536225, - "c2": 5.001714025425423, - "c3": 4.2701313996035255, - "c4": 4.309159377856942, - "c5": 4.6456901902481444, - "c6": 4.717385325929519, - "c7": 5.051879005599909 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980583, + "c3": 6.310679611650486, + "c4": 5.048543689320389, + "c5": 3.7864077669902914, + "c6": 2.5242718446601944, + "c7": 1.2621359223300972 }, "rgb": [77, 76, 132] }, @@ -82869,23 +82869,23 @@ "year": 1727, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 18.621092540540943, - "c2": -29.742748575218577, - "c3": 31.633495368931506, - "c4": 13.68888095287491, - "c5": 4.306694562143498, - "c6": 25.118314350922752, - "c7": 12.536866480696787 + "points": { + "c1": 34.0991947453802, + "c2": 1.2093362906342193, + "c3": 11.716188158951631, + "c4": 3.469947792536061, + "c5": 0.4319191187621243, + "c6": -18.372076197800567, + "c7": -15.407991395616502 }, - "vertexSeeds": { - "c1": 5.099053182414751, - "c2": 4.930603109511581, - "c3": 4.547927297164312, - "c4": 4.339900078670254, - "c5": 5.029129188235013, - "c6": 4.649147847988069, - "c7": 4.845081900892428 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658811, + "c3": 6.125751271382342, + "c4": 4.900601017105872, + "c5": 3.675450762829403, + "c6": 2.450300508552934, + "c7": 1.2251502542764692 }, "rgb": [58, 15, 49] }, @@ -82896,23 +82896,23 @@ "year": 1727, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -7.755893365052586, - "c2": 18.453780326890765, - "c3": 28.23934957241046, - "c4": -14.3137525133012, - "c5": 20.522525725520453, - "c6": -0.9495453493886359, - "c7": 36.24570605887375 + "points": { + "c1": -9.674313223630357, + "c2": -32.14961711519946, + "c3": -41.9226297174562, + "c4": -39.41715473950591, + "c5": -31.719835643783757, + "c6": 26.0868170848872, + "c7": -35.66781225986921 }, - "vertexSeeds": { - "c1": 3.0148074086147654, - "c2": 2.879697518235985, - "c3": 3.4923623318718864, - "c4": 3.4751466482873203, - "c5": 3.328285647803212, - "c6": 3.494002802938872, - "c7": 3.554405202427999 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400833, + "c3": 4.2533518261673615, + "c4": 3.4026814609338856, + "c5": 2.552011095700414, + "c6": 1.7013407304669428, + "c7": 0.8506703652334714 }, "rgb": [58, 15, 49] }, @@ -82923,23 +82923,23 @@ "year": 1727, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -5.8378800141781255, - "c2": -4.959108511033676, - "c3": -35.24281366038149, - "c4": -22.565453831992073, - "c5": 37.57492760021587, - "c6": -32.593687432281136, - "c7": 43.974310279134826 + "points": { + "c1": -15.204938308429291, + "c2": -0.8356818291203467, + "c3": -11.995060351130633, + "c4": -43.85213688821288, + "c5": -39.23818761653855, + "c6": 46.39383310050323, + "c7": -14.804134196821046 }, - "vertexSeeds": { - "c1": 4.762194967467994, - "c2": 4.33897819727719, - "c3": 4.694437633968785, - "c4": 4.867112723901692, - "c5": 4.329312445764701, - "c6": 4.381083698533693, - "c7": 4.585123184050248 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -82950,23 +82950,23 @@ "year": 1727, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": 9.910011498334121, - "c2": -18.405289894017947, - "c3": -10.61821195073939, - "c4": 14.502861601993892, - "c5": -17.44946476394938, - "c6": 2.947493904035955, - "c7": 1.9921073080451706 + "points": { + "c1": 11.52162652339468, + "c2": 20.340296245754658, + "c3": 12.663150502235823, + "c4": -11.938109207049898, + "c5": -14.849365220733727, + "c6": -12.286676504268128, + "c7": 22.74587299150687 }, - "vertexSeeds": { - "c1": 4.51328577730369, - "c2": 5.04333536499947, - "c3": 5.106020174291704, - "c4": 4.252706614401997, - "c5": 4.517980330691233, - "c6": 4.835916977453621, - "c7": 5.052683376161869 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -82977,23 +82977,23 @@ "year": 1727, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -27.008195832867948, - "c2": -17.885503763523108, - "c3": 33.44625887993796, - "c4": -34.16427232530415, - "c5": 24.851540263527973, - "c6": 11.580080375710772, - "c7": -13.012210053680572 + "points": { + "c1": -19.955598048459528, + "c2": 30.373114371992145, + "c3": 11.231823557800567, + "c4": 4.792486767790699, + "c5": -19.53670325056392, + "c6": 8.873284942120321, + "c7": -33.3828828024239 }, - "vertexSeeds": { - "c1": 5.7822532979727574, - "c2": 5.452311817941303, - "c3": 5.648474017629566, - "c4": 5.789624028926034, - "c5": 5.480791616679571, - "c6": 5.796115769086286, - "c7": 5.408257311935638 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055472, + "c4": 5.547850208044373, + "c5": 4.160887656033275, + "c6": 2.7739251040221977, + "c7": 1.3869625520110989 }, "rgb": [58, 15, 49] }, @@ -83004,23 +83004,23 @@ "year": 1727, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 13.168418025154494, - "c2": -11.500167692701325, - "c3": -16.99337289151932, - "c4": 1.458994496781962, - "c5": 7.214175679555041, - "c6": -2.9549588537383755, - "c7": 20.46935577118107 + "points": { + "c1": -14.140393784395181, + "c2": 19.56738930372675, + "c3": 6.303793211332877, + "c4": 11.114126668759212, + "c5": -5.5021465218391015, + "c6": -6.587892738406005, + "c7": -2.335342881704559 }, - "vertexSeeds": { - "c1": 8.415800921573698, - "c2": 10.63188612208887, - "c3": 8.525494884937258, - "c4": 8.431709179433906, - "c5": 10.18655288878163, - "c6": 9.822569613314219, - "c7": 10.802079179549244 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644936, + "c3": 13.014331946370788, + "c4": 10.411465557096626, + "c5": 7.808599167822468, + "c6": 5.205732778548313, + "c7": 2.60286638927416 }, "rgb": [222, 0, 59] }, @@ -83031,23 +83031,23 @@ "year": 1727, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 25.5627950001723, - "c2": 7.960663778769721, - "c3": 10.58346589780296, - "c4": 3.1200948796138306, - "c5": 3.8932679512407447, - "c6": 0.00793443491346224, - "c7": -5.425277348138508 + "points": { + "c1": -17.864742848662104, + "c2": 25.19700332002246, + "c3": -21.096144890163057, + "c4": -14.905670178845433, + "c5": -11.778439128646923, + "c6": -26.702377503699417, + "c7": -13.638474230669619 }, - "vertexSeeds": { - "c1": 12.137734630638954, - "c2": 12.132330422686678, - "c3": 11.32031299463526, - "c4": 11.021474558046833, - "c5": 10.912388227964234, - "c6": 11.211648387553243, - "c7": 11.28154951022863 + "offsets": { + "c1": 20.258899676375407, + "c2": 17.364771151178907, + "c3": 14.470642625982439, + "c4": 11.576514100785937, + "c5": 8.68238557558947, + "c6": 5.788257050392969, + "c7": 2.8941285251965008 }, "rgb": [77, 76, 132] }, @@ -83058,23 +83058,23 @@ "year": 1727, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -0.8121858476005954, - "c2": 25.270451619431313, - "c3": -25.851968705783655, - "c4": -11.004523364416428, - "c5": -11.576201038071574, - "c6": 32.91041905415061, - "c7": 5.127909757763895 + "points": { + "c1": 41.525247648382376, + "c2": 21.2751139816161, + "c3": -2.3653822449954873, + "c4": 8.149474114355137, + "c5": 22.87578623692785, + "c6": 41.25891068574332, + "c7": 39.222565020455605 }, - "vertexSeeds": { - "c1": 5.686509050104609, - "c2": 5.698506761746868, - "c3": 5.377933028761727, - "c4": 5.864408515370719, - "c5": 6.117222591984197, - "c6": 5.37336768119041, - "c7": 5.551173888832815 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951452, + "c3": 7.443365695792874, + "c4": 5.954692556634306, + "c5": 4.466019417475726, + "c6": 2.977346278317147, + "c7": 1.4886731391585672 }, "rgb": [58, 15, 49] }, @@ -83085,23 +83085,23 @@ "year": 1727, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 17.12529703557501, - "c2": -37.30409815005836, - "c3": -27.58035598938205, - "c4": 11.394159679990324, - "c5": 15.463080142133933, - "c6": -20.795633940840432, - "c7": 36.184201857704196 + "points": { + "c1": -25.28418740278689, + "c2": 9.065869782232234, + "c3": -27.1051239012639, + "c4": 36.706033168227336, + "c5": 27.183675338380397, + "c6": -13.530663369184676, + "c7": 29.225758323143822 }, - "vertexSeeds": { - "c1": 13.245250399413676, - "c2": 13.5059110778643, - "c3": 13.98484888734015, - "c4": 13.765045573177954, - "c5": 14.429978428965812, - "c6": 13.848899476139316, - "c7": 14.241424698206242 + "offsets": { + "c1": 24.3042071197411, + "c2": 20.832177531206657, + "c3": 17.360147942672214, + "c4": 13.88811835413777, + "c5": 10.416088765603329, + "c6": 6.944059177068885, + "c7": 3.4720295885344425 }, "rgb": [222, 0, 59] }, @@ -83112,23 +83112,23 @@ "year": 1727, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 22.196307789652717, - "c2": 8.419464025290328, - "c3": 17.08444113026457, - "c4": 9.95123643219964, - "c5": 27.581962528294728, - "c6": -3.317450805923908, - "c7": 18.262359964675486 + "points": { + "c1": -15.497041362951585, + "c2": 30.0022921657959, + "c3": 23.264507916385874, + "c4": -8.5418528212805, + "c5": -3.9919396277672092, + "c6": -6.512955022905313, + "c7": -20.278628494663955 }, - "vertexSeeds": { - "c1": 3.4954819340832053, - "c2": 3.699188766722468, - "c3": 3.9116086600211744, - "c4": 3.6307250513835965, - "c5": 3.9504221888931355, - "c6": 3.4427872009996343, - "c7": 3.463292786735403 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [238, 201, 159] }, @@ -83139,23 +83139,23 @@ "year": 1727, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 11.687872747757844, - "c2": 23.763472881987468, - "c3": 25.20396573898335, - "c4": -18.75031485563126, - "c5": 17.07711951482092, - "c6": 19.134081323664553, - "c7": 29.17397176439787 + "points": { + "c1": 28.142737645335878, + "c2": 32.67270981232335, + "c3": 25.63944439585793, + "c4": 15.606949705351177, + "c5": -11.41719894980842, + "c6": -3.7629179513826934, + "c7": -21.659605525354465 }, - "vertexSeeds": { - "c1": 4.925391796013163, - "c2": 4.707882823250825, - "c3": 4.754870427580325, - "c4": 4.773304469370457, - "c5": 4.757735200744369, - "c6": 5.091093883134258, - "c7": 4.901372191061935 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618579, + "c3": 6.10263522884883, + "c4": 4.882108183079059, + "c5": 3.6615811373092897, + "c6": 2.4410540915395296, + "c7": 1.2205270457697701 }, "rgb": [77, 76, 132] }, @@ -83166,23 +83166,23 @@ "year": 1727, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -5.2782549876620735, - "c2": -15.180210841573562, - "c3": 13.998381281541924, - "c4": 14.809190595609763, - "c5": -28.526594870921357, - "c6": -26.943464833416726, - "c7": -3.263809499852556 + "points": { + "c1": 29.821139032638754, + "c2": -31.582931249690887, + "c3": 34.80695702885957, + "c4": -11.256799639413813, + "c5": -33.979755837928415, + "c6": 9.79351582962024, + "c7": 23.108798780963852 }, - "vertexSeeds": { - "c1": 3.7148426965295624, - "c2": 4.159422409084395, - "c3": 4.159362434694396, - "c4": 4.125733597912083, - "c5": 4.02170417286356, - "c6": 4.378016959167336, - "c7": 3.8858774829346614 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -83193,23 +83193,23 @@ "year": 1727, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -0.7596703118760999, - "c2": 21.266703560261668, - "c3": -23.91756500208035, - "c4": 24.819423625357473, - "c5": 23.477490199104473, - "c6": 4.673214921513264, - "c7": 28.86470731042968 + "points": { + "c1": 25.11510228539342, + "c2": -8.18272575528239, + "c3": 21.68246518464064, + "c4": -5.015415943119436, + "c5": 27.605570431597982, + "c6": -1.407993239492349, + "c7": 8.165578419497443 }, - "vertexSeeds": { - "c1": 13.897736121147625, - "c2": 13.26405583271428, - "c3": 13.86920710101788, - "c4": 13.636407636985775, - "c5": 13.212451661930146, - "c6": 14.096491812653257, - "c7": 14.548993776943192 + "offsets": { + "c1": 25.11326860841424, + "c2": 21.525658807212206, + "c3": 17.93804900601017, + "c4": 14.350439204808136, + "c5": 10.762829403606103, + "c6": 7.175219602404068, + "c7": 3.587609801202034 }, "rgb": [58, 15, 49] }, @@ -83220,23 +83220,23 @@ "year": 1727, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 8.903788686111646, - "c2": -1.3952469139753134, - "c3": -5.4346557623729055, - "c4": -10.855651933766922, - "c5": 22.231828054366275, - "c6": -0.6320550656449555, - "c7": -11.589861436357324 + "points": { + "c1": -38.00875562465667, + "c2": 19.352015812307812, + "c3": -18.15896626476962, + "c4": 39.04355922497305, + "c5": -21.628676100849304, + "c6": 25.499648973396276, + "c7": -6.233946629163107 }, - "vertexSeeds": { - "c1": 2.6398105900728144, - "c2": 2.764750997490141, - "c3": 2.5913339693852966, - "c4": 2.909075186238979, - "c5": 2.627361005451143, - "c6": 2.775247759205943, - "c7": 2.493648652207965 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.5136384650947767, + "c4": 2.8109107720758195, + "c5": 2.108183079056867, + "c6": 1.4054553860379098, + "c7": 0.7027276930189574 }, "rgb": [222, 0, 59] }, @@ -83247,23 +83247,23 @@ "year": 1727, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -30.0470305344051, - "c2": 27.730966466570568, - "c3": 5.39970681998636, - "c4": -6.796514362562753, - "c5": -23.54081017579938, - "c6": -20.69263971132425, - "c7": -15.700313928233422 + "points": { + "c1": -4.500290222152252, + "c2": 26.376860643232767, + "c3": 16.096325803717022, + "c4": 1.6068787433318619, + "c5": 22.733493439338723, + "c6": 3.159892485633705, + "c7": -18.216693198665247 }, - "vertexSeeds": { - "c1": 2.0862993236784244, - "c2": 2.0851121620474404, - "c3": 2.0935801493319186, - "c4": 2.3417501652518213, - "c5": 2.106094492634466, - "c6": 2.3466288708984364, - "c7": 2.272657646841854 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070747, + "c3": 2.8201571890892265, + "c4": 2.256125751271382, + "c5": 1.6920943134535373, + "c6": 1.128062875635689, + "c7": 0.5640314378178445 }, "rgb": [77, 76, 132] }, @@ -83274,23 +83274,23 @@ "year": 1727, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 28.216666750588526, - "c2": -10.22319580334587, - "c3": 22.270305488383418, - "c4": 19.51434792178227, - "c5": 6.165243779670856, - "c6": 30.049084120726665, - "c7": -24.957816518033695 + "points": { + "c1": -23.931051646395105, + "c2": 28.897367998587782, + "c3": 14.880107996068112, + "c4": -2.505347149869678, + "c5": 22.240786701661904, + "c6": 28.673822112544975, + "c7": -26.43369662002944 }, - "vertexSeeds": { - "c1": 4.169469513117358, - "c2": 4.17253393879062, - "c3": 4.168964989725273, - "c4": 4.175221311936881, - "c5": 4.1684804625501855, - "c6": 4.168125236304667, - "c7": 4.195017372049456 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768406, + "c3": 5.039297272306971, + "c4": 4.031437817845604, + "c5": 3.0235783633841695, + "c6": 2.015718908922802, + "c7": 1.0078594544613675 }, "rgb": [86, 146, 138] }, @@ -83301,23 +83301,23 @@ "year": 1727, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -25.1653087499201, - "c2": -13.039282218371506, - "c3": 27.186231409961053, - "c4": -19.00861258584911, - "c5": -19.019091660070234, - "c6": 11.948325079945988, - "c7": 13.903632314451976 + "points": { + "c1": -11.327895248857558, + "c2": 0.9836225804569345, + "c3": 13.770609461925702, + "c4": -6.915727524693029, + "c5": -1.3564485972219593, + "c6": 13.902647494628908, + "c7": 13.142854507416189 }, - "vertexSeeds": { - "c1": 4.666659517078962, - "c2": 4.84322633402863, - "c3": 4.930794205427588, - "c4": 5.171747723301997, - "c5": 5.001018145111981, - "c6": 5.222682507263259, - "c7": 5.203043856256908 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940357, + "c3": 6.287563569116972, + "c4": 5.030050855293576, + "c5": 3.7725381414701786, + "c6": 2.515025427646788, + "c7": 1.2575127138233964 }, "rgb": [238, 201, 159] }, @@ -83328,23 +83328,23 @@ "year": 1727, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 14.72861337319209, - "c2": -32.84557818147758, - "c3": -12.820915988702613, - "c4": -8.874462121866742, - "c5": -10.480102565211972, - "c6": -28.63368706846056, - "c7": 34.82745612876947 + "points": { + "c1": -6.618171512038671, + "c2": -16.29024281598426, + "c3": -33.72931711509278, + "c4": -12.644986923720879, + "c5": -33.84795733641298, + "c6": -24.17551655589753, + "c7": 10.649385851844677 }, - "vertexSeeds": { - "c1": 4.973416683566711, - "c2": 4.992626497327794, - "c3": 5.024600810355092, - "c4": 5.151218093371443, - "c5": 4.8128063474064895, - "c6": 4.828804286556304, - "c7": 4.950722308477956 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779466, + "c3": 6.195099398982903, + "c4": 4.956079519186318, + "c5": 3.7170596393897437, + "c6": 2.478039759593159, + "c7": 1.2390198797965846 }, "rgb": [58, 15, 49] }, @@ -83355,23 +83355,23 @@ "year": 1727, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -5.921440213686367, - "c2": -9.254221767752735, - "c3": 23.563472855887056, - "c4": -37.21005088303608, - "c5": 10.809137512393235, - "c6": 26.12160747797075, - "c7": -10.848578679177336 + "points": { + "c1": -20.640755203379403, + "c2": -41.0275697935986, + "c3": 33.70246737993687, + "c4": 37.46120958587449, + "c5": 25.711770898411338, + "c6": -38.61895703946748, + "c7": 4.374082414598931 }, - "vertexSeeds": { - "c1": 3.7392276897428003, - "c2": 3.8472824862802213, - "c3": 4.060756165946334, - "c4": 3.83109416528353, - "c5": 4.152875955737004, - "c6": 4.155260234717841, - "c7": 4.07128453747958 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768375, + "c3": 5.0392972723069756, + "c4": 4.031437817845585, + "c5": 3.0235783633841873, + "c6": 2.015718908922789, + "c7": 1.0078594544613904 }, "rgb": [58, 15, 49] }, @@ -83382,23 +83382,23 @@ "year": 1727, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -18.30031537338883, - "c2": 24.541725541629155, - "c3": 23.90309787270393, - "c4": -21.247534883172467, - "c5": -8.866147402855308, - "c6": 4.621721456087911, - "c7": 22.8700253732651 + "points": { + "c1": -26.84609958187334, + "c2": 31.181763077979184, + "c3": -28.114296210057077, + "c4": 13.06824744012367, + "c5": -22.308286514844138, + "c6": -23.295086030175106, + "c7": -0.8478700883963342 }, - "vertexSeeds": { - "c1": 3.677445876061254, - "c2": 3.90258447143982, - "c3": 3.6867351863036437, - "c4": 3.5058312856122154, - "c5": 3.44481220069146, - "c6": 3.9908829582631573, - "c7": 3.7699711913963325 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325938, + "c3": 4.785020804438283, + "c4": 3.828016643550623, + "c5": 2.871012482662969, + "c6": 1.9140083217753148, + "c7": 0.9570041608876606 }, "rgb": [238, 201, 159] }, @@ -83409,23 +83409,23 @@ "year": 1727, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 21.786591603154434, - "c2": 27.205041506378365, - "c3": -5.568953275042457, - "c4": 1.012542530777118, - "c5": 21.346328713968603, - "c6": -18.1541861182096, - "c7": -9.863077051598879 + "points": { + "c1": 24.352126620684018, + "c2": -3.0977671451575546, + "c3": 24.5663345818626, + "c4": 20.703870475923992, + "c5": 3.998140957377501, + "c6": -33.698758414744646, + "c7": -10.609089946257225 }, - "vertexSeeds": { - "c1": 4.659052585017332, - "c2": 4.878813565323888, - "c3": 4.85931234086223, - "c4": 4.7067659746840995, - "c5": 4.612393611945911, - "c6": 4.3672909813283765, - "c7": 4.664784623641599 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.0735090152565885, + "c3": 5.894590846047158, + "c4": 4.715672676837726, + "c5": 3.5367545076282942, + "c6": 2.357836338418863, + "c7": 1.1789181692094315 }, "rgb": [238, 201, 159] }, @@ -83436,23 +83436,23 @@ "year": 1727, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -3.7338329350322077, - "c2": -3.107104593760319, - "c3": -11.404456877610983, - "c4": 22.168761847943415, - "c5": 7.597820685444773, - "c6": 19.84776811859065, - "c7": 13.340696501661895 + "points": { + "c1": 21.992456658868164, + "c2": -16.117896568100036, + "c3": -25.015984129130317, + "c4": 35.71645776521835, + "c5": 8.271998670450387, + "c6": 0.23211290521251016, + "c7": -0.7793658686517233 }, - "vertexSeeds": { - "c1": 2.3704663212435233, - "c2": 2.3704663212435233, - "c3": 2.3704663212435233, - "c4": 2.3704663212435233, - "c5": 2.3704663212435233, - "c6": 2.3704663212435233, - "c7": 2.3704663212435233 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -83463,23 +83463,23 @@ "year": 1727, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -7.781127003441867, - "c2": 27.056431868444783, - "c3": -31.052740955386632, - "c4": 30.415212632812427, - "c5": -12.294871926905788, - "c6": -11.554061133515575, - "c7": -6.774954636999361 + "points": { + "c1": -17.09976929749761, + "c2": 20.48671690336058, + "c3": 15.127792360267733, + "c4": 2.484258130854137, + "c5": 24.03491323940036, + "c6": -32.19426287520827, + "c7": -24.89433988298247 }, - "vertexSeeds": { - "c1": 5.447875188941668, - "c2": 5.46622034187443, - "c3": 5.391565017976343, - "c4": 5.520750434395328, - "c5": 5.45622829899145, - "c6": 5.418040673941865, - "c7": 5.4742991020005904 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055484, + "c4": 5.547850208044369, + "c5": 4.160887656033276, + "c6": 2.7739251040221844, + "c7": 1.3869625520110922 }, "rgb": [238, 201, 159] }, @@ -83490,23 +83490,23 @@ "year": 1727, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 1.4916618545130689, - "c2": -28.499558230768592, - "c3": 36.89568744308541, - "c4": -23.161689727451563, - "c5": 31.015989904036076, - "c6": -30.205130970232815, - "c7": -16.509214642505555 + "points": { + "c1": 10.398835362062883, + "c2": 16.659707314858167, + "c3": 17.26014792817569, + "c4": 23.10970707592358, + "c5": -12.052653803417819, + "c6": 18.631582655784044, + "c7": 26.75833536877846 }, - "vertexSeeds": { - "c1": 3.23219958207512, - "c2": 2.955659404178989, - "c3": 2.960235279032315, - "c4": 3.0328624568811624, - "c5": 3.305212065523847, - "c6": 3.1129514859410627, - "c7": 2.906011302266042 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.77115117891817, + "c3": 3.9759593157651425, + "c4": 3.1807674526121157, + "c5": 2.3855755894590884, + "c6": 1.5903837263060543, + "c7": 0.7951918631530271 }, "rgb": [86, 146, 138] }, @@ -83517,23 +83517,23 @@ "year": 1727, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -23.002976481978124, - "c2": -28.796290118254714, - "c3": -9.775865062450855, - "c4": -3.684823464619768, - "c5": 14.69253436549969, - "c6": -29.2075046843109, - "c7": 28.377112823687128 + "points": { + "c1": -30.804151809739512, + "c2": -11.888512790407844, + "c3": -7.67668117405745, + "c4": 23.538486622683017, + "c5": 1.622353976306286, + "c6": -30.303514611170982, + "c7": 33.61717993990224 }, - "vertexSeeds": { - "c1": 7.903047224609672, - "c2": 7.746560419743804, - "c3": 7.736963501617568, - "c4": 7.848862251997737, - "c5": 7.845235612249559, - "c6": 7.715401795268036, - "c7": 7.9181339765540075 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490976, + "c3": 9.47757743874247, + "c4": 7.582061950994026, + "c5": 5.686546463245519, + "c6": 3.791030975497013, + "c7": 1.8955154877485065 }, "rgb": [77, 76, 132] }, @@ -83544,23 +83544,23 @@ "year": 1727, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -26.689147403799744, - "c2": -9.229693466314757, - "c3": -1.8726178626703316, - "c4": 32.37069203342196, - "c5": -23.060757268764412, - "c6": 17.188621685671407, - "c7": 16.24715220704155 + "points": { + "c1": -12.308489928498211, + "c2": 29.302750787463964, + "c3": 16.13514136805268, + "c4": -37.628131541396186, + "c5": 10.221577409360115, + "c6": -35.626395242019655, + "c7": 29.79450569579771 }, - "vertexSeeds": { - "c1": 5.790763220379179, - "c2": 5.805725200912491, - "c3": 5.781096148142141, - "c4": 5.733045580371527, - "c5": 5.768243866599698, - "c6": 5.740600821978233, - "c7": 5.776227224424307 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066613, + "c3": 6.934812760055419, + "c4": 5.547850208044363, + "c5": 4.160887656033307, + "c6": 2.77392510402225, + "c7": 1.3869625520110562 }, "rgb": [86, 146, 138] }, @@ -83571,23 +83571,23 @@ "year": 1727, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -26.414005569779157, - "c2": 21.286592888821446, - "c3": 15.747227552165477, - "c4": -40.07229969809704, - "c5": -23.076614830963944, - "c6": -33.35890651351737, - "c7": 24.213312470794733 + "points": { + "c1": 37.36952110445384, + "c2": -11.231933259156698, + "c3": -41.94167795806378, + "c4": 37.847725028934335, + "c5": 39.967302947162466, + "c6": -36.45611730722108, + "c7": 39.096930416074684 }, - "vertexSeeds": { - "c1": 2.5197092314278953, - "c2": 2.4156011664409833, - "c3": 2.4248563066413857, - "c4": 2.4491701408062156, - "c5": 2.479703367773439, - "c6": 2.526352694892943, - "c7": 2.6819750826577553 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712864, + "c3": 3.2593619972260757, + "c4": 2.6074895977808574, + "c5": 1.9556171983356472, + "c6": 1.3037447988904287, + "c7": 0.6518723994452144 }, "rgb": [222, 0, 59] }, @@ -83598,23 +83598,23 @@ "year": 1727, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 29.299199259791763, - "c2": 9.41577447393508, - "c3": 16.402243684217787, - "c4": 13.316312973191998, - "c5": 30.57416627691522, - "c6": 3.8951461973025303, - "c7": -5.29379993257168 + "points": { + "c1": -32.82259913866458, + "c2": -27.617162895825196, + "c3": -11.126959243891914, + "c4": 34.22016194417479, + "c5": 3.4094659900155406, + "c6": 39.944706433736954, + "c7": -32.608153024314326 }, - "vertexSeeds": { - "c1": 5.615646112377462, - "c2": 4.956443643914723, - "c3": 4.762545418851531, - "c4": 4.784636688068894, - "c5": 5.487901890638788, - "c6": 5.089949874726409, - "c7": 5.078832231024114 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256592, + "c4": 5.6588072122052715, + "c5": 4.244105409153952, + "c6": 2.8294036061026313, + "c7": 1.4147018030513203 }, "rgb": [222, 0, 59] }, @@ -83625,23 +83625,23 @@ "year": 1727, "resistanceReported": false, "duration": 4924800, - "curveSeeds": { - "c1": -9.367243290692437, - "c2": 7.35047759678217, - "c3": 9.116771910026618, - "c4": 3.4780158750088965, - "c5": -13.161073964171639, - "c6": 8.478057868301597, - "c7": -10.667850214780852 + "points": { + "c1": -9.555360176569664, + "c2": -5.230782969207466, + "c3": -5.170024188908222, + "c4": -0.6996272530577592, + "c5": 14.327630539494344, + "c6": 12.206675898258574, + "c7": 0.8928670046788589 }, - "vertexSeeds": { - "c1": 3.780589202206225, - "c2": 3.263549300131529, - "c3": 3.380948387823742, - "c4": 3.6068323742535964, - "c5": 3.2593735199215113, - "c6": 3.604627526977507, - "c7": 3.7374810732791914 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.76976421636616, + "c3": 4.808136846971801, + "c4": 3.846509477577438, + "c5": 2.88488210818308, + "c6": 1.9232547387887218, + "c7": 0.9616273693943584 }, "rgb": [238, 201, 159] }, @@ -83652,23 +83652,23 @@ "year": 1727, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -22.05296135972005, - "c2": -25.663555433514368, - "c3": 3.933043190827462, - "c4": 33.65976463287659, - "c5": -22.81657481755675, - "c6": -21.69580973680022, - "c7": 19.321115885491686 + "points": { + "c1": 27.74313278080183, + "c2": 3.4294348066709333, + "c3": -26.111289250836656, + "c4": 22.37602328220396, + "c5": 27.445014365773417, + "c6": -31.18716463363353, + "c7": 30.425921983955362 }, - "vertexSeeds": { - "c1": 8.826702997864036, - "c2": 9.09297318582399, - "c3": 8.828350590091368, - "c4": 9.212983463288685, - "c5": 8.671064219368436, - "c6": 8.975151037719812, - "c7": 8.81748971178391 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.675450762829406, + "c3": 11.396208969024501, + "c4": 9.116967175219605, + "c5": 6.837725381414697, + "c6": 4.558483587609802, + "c7": 2.279241793804895 }, "rgb": [77, 76, 132] }, @@ -83679,23 +83679,23 @@ "year": 1727, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -25.296829374627674, - "c2": -25.203923990772687, - "c3": 24.97161455968165, - "c4": 2.953609211628855, - "c5": 23.399104549840242, - "c6": 21.770899576310324, - "c7": -28.167671805630796 + "points": { + "c1": -30.62313078391488, + "c2": 27.66382828498136, + "c3": -11.181830647546033, + "c4": -17.088215145825064, + "c5": -29.15318401381053, + "c6": -5.474635898366671, + "c7": 12.046799127508617 }, - "vertexSeeds": { - "c1": 2.0826046602964934, - "c2": 2.1095735289647175, - "c3": 2.1784751881086466, - "c4": 2.00617666842288, - "c5": 2.175837917004694, - "c6": 1.9574195912436587, - "c7": 2.0669708962819753 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185853, + "c3": 2.6352288488210807, + "c4": 2.1081830790568663, + "c5": 1.581137309292648, + "c6": 1.0540915395284332, + "c7": 0.5270457697642187 }, "rgb": [77, 76, 132] }, @@ -83706,23 +83706,23 @@ "year": 1728, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": -16.917205205023514, - "c2": 30.618350786715993, - "c3": -25.092727034903724, - "c4": 33.63472987240449, - "c5": 4.875478479923949, - "c6": 36.76695299015496, - "c7": 29.34187621530377 + "points": { + "c1": -15.56083275425786, + "c2": -12.52881725341696, + "c3": -7.814602454336125, + "c4": 46.194765377850786, + "c5": -37.59655750484036, + "c6": 15.051168089289945, + "c7": -2.5039895883436287 }, - "vertexSeeds": { - "c1": 5.646955115121917, - "c2": 5.8018701782058475, - "c3": 5.784056754940875, - "c4": 5.635638206856545, - "c5": 5.882713861086075, - "c6": 6.250262882699825, - "c7": 5.772129178260808 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [58, 15, 49] }, @@ -83733,23 +83733,23 @@ "year": 1727, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -1.6238681964304718, - "c2": 22.24434814377321, - "c3": 19.588533146436376, - "c4": -22.640481224491655, - "c5": -19.700665571123718, - "c6": 23.754188049332114, - "c7": 12.321820493742663 + "points": { + "c1": 4.435157585124955, + "c2": 14.720861926729206, + "c3": -5.691829337946363, + "c4": 5.412845942170485, + "c5": 21.178869372505837, + "c6": -26.018233064978876, + "c7": -22.84560397355996 }, - "vertexSeeds": { - "c1": 3.2669175776603474, - "c2": 3.2029937089830547, - "c3": 3.2483442871609594, - "c4": 3.251883657657408, - "c5": 3.4354928086636503, - "c6": 3.2440388489949967, - "c7": 3.2252575717307668 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.9375866851595, + "c3": 4.114655570966249, + "c4": 3.291724456772998, + "c5": 2.468793342579747, + "c6": 1.645862228386502, + "c7": 0.822931114193251 }, "rgb": [58, 15, 49] }, @@ -83760,23 +83760,23 @@ "year": 1727, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -24.650227885232795, - "c2": -28.913184278861745, - "c3": 28.135270011476024, - "c4": 10.414141826209637, - "c5": -7.826803651581589, - "c6": -1.5140607435356976, - "c7": -18.07276442534146 + "points": { + "c1": 2.007843277987675, + "c2": 30.388656424192128, + "c3": -29.068150209781663, + "c4": -30.361095508814266, + "c5": 10.709328469143898, + "c6": -23.158470766847152, + "c7": -21.615170181676103 }, - "vertexSeeds": { - "c1": 4.485285555415543, - "c2": 5.221751771468995, - "c3": 5.370258396709378, - "c4": 5.307513165998263, - "c5": 5.42544146871104, - "c6": 5.4650292356502455, - "c7": 5.33277915095443 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.8502080443828035, + "c3": 6.54184003698567, + "c4": 5.233472029588538, + "c5": 3.9251040221914018, + "c6": 2.616736014794269, + "c7": 1.3083680073971322 }, "rgb": [77, 76, 132] }, @@ -83787,23 +83787,23 @@ "year": 1727, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -12.855245604258862, - "c2": -29.727106542760417, - "c3": -44.04216470023714, - "c4": 15.825322798627909, - "c5": -19.899085362858596, - "c6": 30.64693191835061, - "c7": -0.80909507546383 + "points": { + "c1": -43.724248652885, + "c2": -3.75473602006236, + "c3": 43.16843253304764, + "c4": -38.45399527226508, + "c5": 19.49456286083261, + "c6": -18.795328971567063, + "c7": 2.738577548498057 }, - "vertexSeeds": { - "c1": 2.71428713469093, - "c2": 2.8104014963323767, - "c3": 2.7392330812500925, - "c4": 2.8371203054272867, - "c5": 2.7686936748097124, - "c6": 2.724697650961294, - "c7": 2.8539768450457963 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033281, + "c3": 3.467406380027741, + "c4": 2.773925104022188, + "c5": 2.080443828016647, + "c6": 1.386962552011094, + "c7": 0.6934812760055531 }, "rgb": [86, 146, 138] }, @@ -83814,23 +83814,23 @@ "year": 1727, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -7.942587048972339, - "c2": -20.914827326649625, - "c3": 23.112631522165998, - "c4": -16.007207300815587, - "c5": 19.88711539666705, - "c6": -32.41437330292545, - "c7": -11.740284357963322 + "points": { + "c1": -11.26464804821098, + "c2": 2.168670337352495, + "c3": -2.100433496107293, + "c4": -24.945267865858618, + "c5": 8.692509342111777, + "c6": 27.9248430132533, + "c7": -32.816404220652316 }, - "vertexSeeds": { - "c1": 5.092333605474857, - "c2": 4.549106359752149, - "c3": 5.02990485665923, - "c4": 4.589415765994261, - "c5": 4.855464295722003, - "c6": 4.717873075453894, - "c7": 4.782232529316907 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.51733703190014, + "c3": 6.264447526583453, + "c4": 5.011558021266758, + "c5": 3.75866851595007, + "c6": 2.505779010633376, + "c7": 1.252889505316688 }, "rgb": [222, 0, 59] }, @@ -83841,23 +83841,23 @@ "year": 1727, "resistanceReported": true, "duration": 20649600, - "curveSeeds": { - "c1": 23.479241811089032, - "c2": 4.89629780342139, - "c3": -20.586089566653705, - "c4": -23.613384303606793, - "c5": 15.117979517965509, - "c6": 8.807972583815562, - "c7": 31.208810033371385 + "points": { + "c1": -25.099039289995105, + "c2": -4.338806311313068, + "c3": 28.3843297830539, + "c4": -11.334178975771287, + "c5": -27.43453157447685, + "c6": 27.181714076196954, + "c7": 8.016320815414296 }, - "vertexSeeds": { - "c1": 6.243163830542379, - "c2": 6.435172326241739, - "c3": 6.469890721091958, - "c4": 5.969582933533722, - "c5": 6.149863404108994, - "c6": 6.1808004988442145, - "c7": 6.257825724049933 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434126, + "c3": 7.7207582061950975, + "c4": 6.176606564956084, + "c5": 4.632454923717055, + "c6": 3.088303282478042, + "c7": 1.544151641239029 }, "rgb": [86, 146, 138] }, @@ -83868,23 +83868,23 @@ "year": 1727, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -33.59686921265856, - "c2": 16.56060560959947, - "c3": 8.082150738214402, - "c4": 33.39128315697241, - "c5": -28.750550838564166, - "c6": -35.947245064800995, - "c7": 31.813490272366217 + "points": { + "c1": 7.082855509573221, + "c2": 37.637139441698984, + "c3": 29.18893504827053, + "c4": 29.236892700426175, + "c5": -2.8189081414041013, + "c6": 34.47237832779643, + "c7": -13.91247638112145 }, - "vertexSeeds": { - "c1": 8.484963129586614, - "c2": 8.72017118366485, - "c3": 9.429548316785334, - "c4": 8.417483224718174, - "c5": 8.775251345383495, - "c6": 8.15290205080174, - "c7": 9.353413571797864 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789185, + "c3": 11.373092926490992, + "c4": 9.098474341192786, + "c5": 6.823855755894592, + "c6": 4.549237170596399, + "c7": 2.2746185852981933 }, "rgb": [222, 0, 59] }, @@ -83895,23 +83895,23 @@ "year": 1727, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 16.930995577236082, - "c2": 27.913051484036124, - "c3": 19.165146304643386, - "c4": 31.59238542768564, - "c5": 6.095778020884673, - "c6": 29.22597464679523, - "c7": -21.194384720216988 + "points": { + "c1": -7.191306033405855, + "c2": -13.097618785608695, + "c3": -3.7178472552346165, + "c4": -22.70430304618815, + "c5": -7.722039902333659, + "c6": -2.7430687371204385, + "c7": -16.628209060504677 }, - "vertexSeeds": { - "c1": 8.253079953273181, - "c2": 7.770306315049374, - "c3": 8.893561325305363, - "c4": 8.377562911453946, - "c5": 8.535348200548926, - "c6": 8.038536423691882, - "c7": 8.158308735255876 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.78779472954231, + "c3": 10.656495607951918, + "c4": 8.525196486361539, + "c5": 6.3938973647711475, + "c6": 4.262598243180769, + "c7": 2.1312991215903914 }, "rgb": [77, 76, 132] }, @@ -83922,23 +83922,23 @@ "year": 1727, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 23.05595022022724, - "c2": 17.972215269372825, - "c3": -1.017768865503193, - "c4": 9.077846681416716, - "c5": 36.460304783141275, - "c6": -38.14027204238951, - "c7": 0.1524778190120628 + "points": { + "c1": 0.3160048471872372, + "c2": -32.755077444548526, + "c3": 28.20415726895383, + "c4": -44.3871362373664, + "c5": -39.803900490778396, + "c6": 20.862907130720252, + "c7": -22.44226475985942 }, - "vertexSeeds": { - "c1": 3.298352932423638, - "c2": 3.2783177169037288, - "c3": 3.22763115108042, - "c4": 3.312944502209284, - "c5": 3.529586258057642, - "c6": 3.5334779030441483, - "c7": 3.6104225041637257 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767914, + "c4": 3.458159963014331, + "c5": 2.5936199722607496, + "c6": 1.7290799815071634, + "c7": 0.8645399907535817 }, "rgb": [58, 15, 49] }, @@ -83949,23 +83949,23 @@ "year": 1727, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 32.12326969302287, - "c2": -32.29536387261298, - "c3": 2.6399809690607796, - "c4": -18.198117602777693, - "c5": -25.289327330191767, - "c6": 10.43720532927857, - "c7": 30.498912374171887 + "points": { + "c1": 18.93828329762122, + "c2": -11.66524437717063, + "c3": -3.9875162944078753, + "c4": 0.5942112687134085, + "c5": 19.219786757696937, + "c6": -27.71340815221772, + "c7": -27.226433211132083 }, - "vertexSeeds": { - "c1": 7.611086933681436, - "c2": 5.487514372909272, - "c3": 6.584209264083416, - "c4": 6.596039634050619, - "c5": 6.045811396381236, - "c6": 6.725386000331195, - "c7": 5.492787659356409 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732316, + "c3": 9.616273693943599, + "c4": 7.693018955154876, + "c5": 5.769764216366161, + "c6": 3.846509477577438, + "c7": 1.9232547387887164 }, "rgb": [222, 0, 59] }, @@ -83976,23 +83976,23 @@ "year": 1728, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 50.21754994931497, - "c2": 52.82797692973202, - "c3": 4.0434443030829925, - "c4": -32.00694156860355, - "c5": -0.6547257652674432, - "c6": -36.063034874468286, - "c7": -37.364138744776405 + "points": { + "c1": -46.46551414064882, + "c2": 40.68554193877476, + "c3": 47.38856731307527, + "c4": -16.64270979701149, + "c5": 31.565392555196212, + "c6": -13.135011825186083, + "c7": 45.46886635951596 }, - "vertexSeeds": { - "c1": 7.519442405615109, - "c2": 7.390502600552838, - "c3": 7.4557491147540285, - "c4": 7.426425769553911, - "c5": 6.986522045285604, - "c6": 7.913657317972341, - "c7": 7.678535841254192 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450768, + "c3": 9.454461396208965, + "c4": 7.563569116967174, + "c5": 5.672676837725384, + "c6": 3.7817845584835803, + "c7": 1.8908922792417902 }, "rgb": [222, 0, 59] }, @@ -84003,23 +84003,23 @@ "year": 1728, "resistanceReported": false, "duration": 50976000, - "curveSeeds": { - "c1": -38.29080188931398, - "c2": 36.06379686491603, - "c3": 15.4496835734315, - "c4": 61.67572945085594, - "c5": -50.63993643246015, - "c6": 19.987404338041458, - "c7": 38.38694483548146 + "points": { + "c1": -39.42996356718238, + "c2": -10.780076655851481, + "c3": 37.80585722179798, + "c4": -47.985768594488164, + "c5": 17.852057862057222, + "c6": 18.51400424486745, + "c7": 66.9150692168855 }, - "vertexSeeds": { - "c1": 6.257230954750623, - "c2": 6.870750926015749, - "c3": 6.464683096405174, - "c4": 6.6633954178865125, - "c5": 6.1446073938918, - "c6": 6.249517326514647, - "c7": 6.359697844718726 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [238, 201, 159] }, @@ -84030,23 +84030,23 @@ "year": 1728, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 20.392860189470227, - "c2": -6.03483202358094, - "c3": 29.183796679541786, - "c4": -33.809298515249154, - "c5": 44.36738802785264, - "c6": 22.985076995303345, - "c7": 39.4230202964322 + "points": { + "c1": -18.623861503606623, + "c2": 7.353527877636829, + "c3": -2.7902102926556296, + "c4": 7.658890792920978, + "c5": 15.13077013207674, + "c6": 27.192579969656663, + "c7": 44.15531368751954 }, - "vertexSeeds": { - "c1": 4.992873871576105, - "c2": 4.217924309159736, - "c3": 4.613979512113926, - "c4": 4.936336629821944, - "c5": 4.415764728969481, - "c6": 4.802974573671449, - "c7": 5.008000752227587 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -84057,23 +84057,23 @@ "year": 1728, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -39.802708085178665, - "c2": 32.074342031055934, - "c3": -41.91043369059955, - "c4": 25.615560083733598, - "c5": 34.447568298733756, - "c6": -27.26209061158379, - "c7": -10.724384550831282 + "points": { + "c1": 30.415240795577574, + "c2": -27.428856840037948, + "c3": 3.800624341234176, + "c4": -32.74954810759881, + "c5": 20.703305001939086, + "c6": 3.5251449588603734, + "c7": -38.28835846550637 }, - "vertexSeeds": { - "c1": 4.613232748197679, - "c2": 4.946612697843616, - "c3": 4.495441901795509, - "c4": 5.0203180515937165, - "c5": 5.180695216742626, - "c6": 5.0124805894014335, - "c7": 5.073587495806189 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -84084,23 +84084,23 @@ "year": 1728, "resistanceReported": false, "duration": 40348800, - "curveSeeds": { - "c1": -51.92928747919549, - "c2": -7.827226714927775, - "c3": -34.61933453440377, - "c4": -24.175580214828084, - "c5": -30.345286010884177, - "c6": -39.85308091732517, - "c7": -38.22742508280391 + "points": { + "c1": 24.578226967725293, + "c2": 28.57315662893972, + "c3": -32.28096089729086, + "c4": -20.120466429507374, + "c5": -7.610531790577866, + "c6": 53.13532753078359, + "c7": -10.48581622283396 }, - "vertexSeeds": { - "c1": 5.619633655074549, - "c2": 5.242580469839388, - "c3": 4.867094240497406, - "c4": 5.011375836121711, - "c5": 5.581423227872006, - "c6": 5.213865847596326, - "c7": 4.998628804428335 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267682, + "c3": 7.050392972723066, + "c4": 5.64031437817846, + "c5": 4.230235783633845, + "c6": 2.82015718908923, + "c7": 1.410078594544615 }, "rgb": [222, 0, 59] }, @@ -84111,23 +84111,23 @@ "year": 1727, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 23.728626046036517, - "c2": 25.60888547282834, - "c3": 28.931305782944833, - "c4": 7.396338108014035, - "c5": -3.6333965331721743, - "c6": 19.72466410272895, - "c7": -14.263905755822307 + "points": { + "c1": -31.067963360329298, + "c2": 3.704782384420092, + "c3": -10.69988399258478, + "c4": 18.321234700487025, + "c5": 25.86508057820044, + "c6": -23.752425592038737, + "c7": 7.680599066221525 }, - "vertexSeeds": { - "c1": 5.604633608469783, - "c2": 5.574120611793258, - "c3": 5.4955292366045425, - "c4": 4.956344436627382, - "c5": 5.3116795920438, - "c6": 5.207291649073494, - "c7": 5.605029030016102 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704577, + "c3": 6.726768377253814, + "c4": 5.381414701803049, + "c5": 4.036061026352286, + "c6": 2.6907073509015222, + "c7": 1.3453536754507636 }, "rgb": [222, 0, 59] }, @@ -84138,23 +84138,23 @@ "year": 1727, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 7.442410735289634, - "c2": -20.70788541060294, - "c3": -1.725743974810058, - "c4": 34.87602603383555, - "c5": 39.76542647777911, - "c6": 10.407560698780088, - "c7": 11.092805708510362 + "points": { + "c1": 14.213371556222363, + "c2": 5.660052833995067, + "c3": -31.61188851928453, + "c4": -8.773609595695092, + "c5": -0.23503940310385474, + "c6": 19.23925309203848, + "c7": -23.103981772881767 }, - "vertexSeeds": { - "c1": 7.009691338282546, - "c2": 7.456642698259907, - "c3": 6.892444328875662, - "c4": 6.817452595194652, - "c5": 7.596108441781286, - "c6": 7.290637976882968, - "c7": 7.273704936246036 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571425, + "c3": 9.523809523809526, + "c4": 7.619047619047618, + "c5": 5.714285714285717, + "c6": 3.809523809523809, + "c7": 1.9047619047618995 }, "rgb": [77, 76, 132] }, @@ -84165,23 +84165,23 @@ "year": 1728, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": 42.91895256036904, - "c2": 28.043790031664535, - "c3": -27.912493704420328, - "c4": 9.185868177963819, - "c5": 47.86133448341493, - "c6": -20.033741218567442, - "c7": 43.07768417669795 + "points": { + "c1": 28.910139994075912, + "c2": 52.05437177559853, + "c3": -48.078645576952226, + "c4": -9.922905417760376, + "c5": -7.648435688144325, + "c6": 38.00541254843434, + "c7": -45.73692809334101 }, - "vertexSeeds": { - "c1": 4.3436747934122195, - "c2": 4.854468312686753, - "c3": 4.42546136984119, - "c4": 4.127011009966357, - "c5": 4.800302265150712, - "c6": 4.383982429624943, - "c7": 4.518774297785914 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538144, + "c3": 6.056403143781783, + "c4": 4.845122515025428, + "c5": 3.633841886269072, + "c6": 2.4225612575127164, + "c7": 1.2112806287563558 }, "rgb": [86, 146, 138] }, @@ -84192,23 +84192,23 @@ "year": 1727, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -33.28299529170327, - "c2": -1.9906199492036336, - "c3": 4.162585160071238, - "c4": 14.944304303203637, - "c5": 15.719172565874977, - "c6": 31.384126817907756, - "c7": 34.42365914977918 + "points": { + "c1": -2.4381222199897934, + "c2": -23.962807601728084, + "c3": 28.395513678160725, + "c4": -26.63953016021345, + "c5": 39.02642904725734, + "c6": -9.887539978939046, + "c7": -31.21031706475307 }, - "vertexSeeds": { - "c1": 3.1353695477451287, - "c2": 2.737081564576366, - "c3": 2.8802290747332706, - "c4": 3.162185456431822, - "c5": 2.634739713695783, - "c6": 3.08542382216294, - "c7": 2.5446785748092458 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596393, + "c3": 3.791030975496992, + "c4": 3.0328247803975965, + "c5": 2.2746185852981964, + "c6": 1.516412390198796, + "c7": 0.7582061950994002 }, "rgb": [58, 15, 49] }, @@ -84219,23 +84219,23 @@ "year": 1728, "resistanceReported": false, "duration": 58320000, - "curveSeeds": { - "c1": 59.5521507624524, - "c2": -2.174835817487093, - "c3": 3.8009912592219024, - "c4": 22.127695308990596, - "c5": 55.44805141612038, - "c6": 48.6282007934488, - "c7": -39.4921945451356 + "points": { + "c1": -43.9789389735367, + "c2": -49.4812481588746, + "c3": -7.277255324851765, + "c4": 36.24676741581564, + "c5": -24.751532759453177, + "c6": 14.4891810572432, + "c7": 46.76514684189412 }, - "vertexSeeds": { - "c1": 4.7615607226604775, - "c2": 4.784673967978409, - "c3": 4.316868894745992, - "c4": 4.350500415055451, - "c5": 4.5054270466844875, - "c6": 5.0030456720846015, - "c7": 4.532492020779986 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385113, + "c4": 5.177993527508089, + "c5": 3.8834951456310702, + "c6": 2.588996763754047, + "c7": 1.2944983818770235 }, "rgb": [238, 201, 159] }, @@ -84246,23 +84246,23 @@ "year": 1728, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": 26.78451246553385, - "c2": 25.53566038083443, - "c3": 43.32957533562842, - "c4": -13.0105761849523, - "c5": -25.262661914373886, - "c6": -41.706774853474116, - "c7": -51.392214413863165 + "points": { + "c1": -48.8118993964157, + "c2": -47.07556348877178, + "c3": -58.853436667818244, + "c4": 16.86525334197235, + "c5": 9.268443500220485, + "c6": 49.297815476851596, + "c7": 1.8323834398460335 }, - "vertexSeeds": { - "c1": 6.766893570925068, - "c2": 7.154969702387991, - "c3": 6.634551752450095, - "c4": 7.157386929747359, - "c5": 7.142206817041467, - "c6": 7.404834287543754, - "c7": 6.794710772300322 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651874, + "c3": 9.570041608876556, + "c4": 7.656033287101246, + "c5": 5.742024965325937, + "c6": 3.828016643550628, + "c7": 1.9140083217753092 }, "rgb": [77, 76, 132] }, @@ -84273,23 +84273,23 @@ "year": 1728, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 21.523814861562144, - "c2": -36.96861280283671, - "c3": -9.600633945328504, - "c4": -3.4629348807310336, - "c5": -5.743626772407318, - "c6": -9.175515900478032, - "c7": 38.086301897179695 + "points": { + "c1": 30.791661641320502, + "c2": 41.3489005658506, + "c3": 30.9820520503189, + "c4": -23.89112914385708, + "c5": 34.92428524290095, + "c6": -24.655338648499352, + "c7": 35.51068208485495 }, - "vertexSeeds": { - "c1": 4.22307405913205, - "c2": 4.034693111747101, - "c3": 4.043678555576291, - "c4": 4.010449045099007, - "c5": 3.798662704428517, - "c6": 3.890301854142854, - "c7": 4.176031637087863 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049931, + "c3": 5.20110957004161, + "c4": 4.16088765603329, + "c5": 3.1206657420249684, + "c6": 2.0804438280166475, + "c7": 1.040221914008327 }, "rgb": [86, 146, 138] }, @@ -84300,23 +84300,23 @@ "year": 1728, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": 9.616199091329854, - "c2": 4.035942487369908, - "c3": 33.92081217426788, - "c4": 17.327649280455304, - "c5": 50.654174517293555, - "c6": -32.14677510902109, - "c7": 28.179431287343107 + "points": { + "c1": 15.274440888918974, + "c2": -51.66326594464635, + "c3": -11.423639929724423, + "c4": 51.90817894731208, + "c5": 21.065354697850296, + "c6": 13.243374637268957, + "c7": -27.55571285027192 }, - "vertexSeeds": { - "c1": 6.315456497919418, - "c2": 6.11657267758835, - "c3": 6.472265648902324, - "c4": 6.541622238162072, - "c5": 6.769599441532075, - "c6": 6.422548540396397, - "c7": 5.834605244840448 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.73647711511789, + "c3": 8.113730929264905, + "c4": 6.490984743411922, + "c5": 4.868238557558938, + "c6": 3.2454923717059674, + "c7": 1.6227461858529837 }, "rgb": [238, 201, 159] }, @@ -84327,23 +84327,23 @@ "year": 1727, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 7.75000950044695, - "c2": 1.911032819384566, - "c3": 35.65717523743845, - "c4": -26.782484733257554, - "c5": 41.27152420714357, - "c6": -5.878732621964431, - "c7": -24.146947759351235 + "points": { + "c1": -36.809131889544325, + "c2": 20.794628601482756, + "c3": -2.491775458337351, + "c4": 23.207053702610665, + "c5": 35.73623472154958, + "c6": 8.211741815473765, + "c7": 12.910682104470276 }, - "vertexSeeds": { - "c1": 3.8309917698518188, - "c2": 3.952227985398666, - "c3": 3.550190634107211, - "c4": 3.3945176724883352, - "c5": 3.290916789885017, - "c6": 3.7718436889145908, - "c7": 3.9396489150151037 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105873, + "c4": 3.9204808136846996, + "c5": 2.9403606102635207, + "c6": 1.9602404068423473, + "c7": 0.9801202034211737 }, "rgb": [86, 146, 138] }, @@ -84354,23 +84354,23 @@ "year": 1728, "resistanceReported": false, "duration": 46310400, - "curveSeeds": { - "c1": -48.882045435333325, - "c2": 30.454002305446622, - "c3": -7.310095210833239, - "c4": -16.43363457574504, - "c5": 58.9791839796451, - "c6": -5.227631751799365, - "c7": 2.0713247571989086 + "points": { + "c1": -49.00087229198675, + "c2": -50.82783206312983, + "c3": -44.676333692190035, + "c4": -4.808759248330503, + "c5": -56.96742073612102, + "c6": -8.210698626978989, + "c7": -1.551869409866164 }, - "vertexSeeds": { - "c1": 3.308429537454626, - "c2": 3.1648573340849886, - "c3": 3.2874055065911088, - "c4": 2.999988653981782, - "c5": 3.170362756341647, - "c6": 3.374260634032612, - "c7": 3.0420403852284688 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360609, + "c3": 4.230235783633844, + "c4": 3.384188626907074, + "c5": 2.5381414701803044, + "c6": 1.6920943134535396, + "c7": 0.8460471567267698 }, "rgb": [238, 201, 159] }, @@ -84381,23 +84381,23 @@ "year": 1728, "resistanceReported": true, "duration": 31536000, - "curveSeeds": { - "c1": -40.12879398076739, - "c2": 13.291908216571933, - "c3": -15.775907604584056, - "c4": -2.5005774181270084, - "c5": -31.604349507655712, - "c6": 11.707950475386795, - "c7": 6.99920707580511 + "points": { + "c1": -6.9655603134924675, + "c2": 42.45959286773231, + "c3": -19.36694732231837, + "c4": 35.00943444941609, + "c5": 39.37333867379671, + "c6": 37.06030514788071, + "c7": 39.359635575759924 }, - "vertexSeeds": { - "c1": 4.983378342652719, - "c2": 4.369634180787133, - "c3": 4.428753458836917, - "c4": 5.230407423767819, - "c5": 4.773147837828896, - "c6": 4.896752480886988, - "c7": 5.167159917133362 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -84408,23 +84408,23 @@ "year": 1728, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": 37.07780012533444, - "c2": -46.58584276519586, - "c3": 31.107772559006357, - "c4": 30.956536640439687, - "c5": 25.82707796635993, - "c6": -46.13468789662418, - "c7": -1.405196530504881 + "points": { + "c1": -37.985533901189186, + "c2": 24.328261650670377, + "c3": -20.424755790704666, + "c4": 24.081103594488816, + "c5": 19.377615269464165, + "c6": -14.577933414950714, + "c7": -46.07493552130884 }, - "vertexSeeds": { - "c1": 7.669396733086763, - "c2": 7.461266550699555, - "c3": 7.840458537109966, - "c4": 6.981494599809, - "c5": 7.543453043861772, - "c6": 7.421025178096107, - "c7": 7.524823804645964 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933424, + "c3": 9.731853906611189, + "c4": 7.78548312528895, + "c5": 5.839112343966712, + "c6": 3.892741562644475, + "c7": 1.9463707813222375 }, "rgb": [86, 146, 138] }, @@ -84435,23 +84435,23 @@ "year": 1728, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -26.811557552595023, - "c2": 17.02838721729554, - "c3": -29.892375884405595, - "c4": 28.24471848692785, - "c5": -19.97814676332234, - "c6": 0.05437182976918109, - "c7": -19.07259900898359 + "points": { + "c1": -13.884157721043742, + "c2": 44.13516000822641, + "c3": -27.169415422238853, + "c4": -19.113791307677324, + "c5": 1.1508419153402514, + "c6": -34.25178059338392, + "c7": 39.55498605939172 }, - "vertexSeeds": { - "c1": 5.201909393988613, - "c2": 4.713787179387575, - "c3": 4.834838715303758, - "c4": 4.857108343963782, - "c5": 4.39126840205469, - "c6": 4.8729814912768035, - "c7": 4.876469643411062 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -84462,23 +84462,23 @@ "year": 1727, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -17.943476096536074, - "c2": 4.732672532238453, - "c3": 22.305493578075854, - "c4": 6.079609608329896, - "c5": -28.62921742992733, - "c6": -8.115279017330835, - "c7": 32.76588488330029 + "points": { + "c1": -12.25103593633704, + "c2": 4.133028105367956, + "c3": 28.178510764021965, + "c4": -45.03454445086665, + "c5": 24.60086075845898, + "c6": -14.890250027452065, + "c7": -26.405414395020244 }, - "vertexSeeds": { - "c1": 4.627267357862555, - "c2": 4.572793283503279, - "c3": 5.038558040839932, - "c4": 4.8619617030148845, - "c5": 4.401282360794462, - "c6": 4.577198610090136, - "c7": 4.757802705248123 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -84489,23 +84489,23 @@ "year": 1728, "resistanceReported": false, "duration": 42681600, - "curveSeeds": { - "c1": -21.989156020381998, - "c2": 53.80533461863412, - "c3": -19.021739241734345, - "c4": -51.28713962425928, - "c5": -1.93147789601813, - "c6": 21.781051350027212, - "c7": -41.598504084958975 + "points": { + "c1": -16.436657439787474, + "c2": -19.71845764490792, + "c3": -28.939077201581462, + "c4": -46.722725086062525, + "c5": 11.431529103150112, + "c6": 14.872941293031246, + "c7": -44.511896778021125 }, - "vertexSeeds": { - "c1": 3.4509386574273937, - "c2": 3.4219614406831123, - "c3": 3.438537489412064, - "c4": 3.3989190669612555, - "c5": 3.3338904801669567, - "c6": 3.337086893300479, - "c7": 3.458550281701618 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.24271844660194, + "c3": 4.368932038834949, + "c4": 3.4951456310679574, + "c5": 2.621359223300966, + "c6": 1.747572815533983, + "c7": 0.8737864077669915 }, "rgb": [238, 201, 159] }, @@ -84516,23 +84516,23 @@ "year": 1728, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": -30.241602430024475, - "c2": -34.45781764010343, - "c3": -34.12863625750742, - "c4": -47.095318284236015, - "c5": 7.281520884606294, - "c6": -48.99848532006286, - "c7": -11.918488477997684 + "points": { + "c1": -0.3289609376800584, + "c2": -52.033299581068825, + "c3": -24.896061195353266, + "c4": 28.183502299962818, + "c5": 47.05618881356957, + "c6": -17.843065436962384, + "c7": 24.10951177009381 }, - "vertexSeeds": { - "c1": 4.594037628651924, - "c2": 4.426363923240526, - "c3": 4.536877565816719, - "c4": 4.364718508935751, - "c5": 4.852181530091156, - "c6": 4.481202479065649, - "c7": 4.483375701139556 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337029, + "c3": 5.940822931114194, + "c4": 4.752658344891352, + "c5": 3.5644937586685113, + "c6": 2.376329172445676, + "c7": 1.1881645862228347 }, "rgb": [238, 201, 159] }, @@ -84543,23 +84543,23 @@ "year": 1728, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -38.65520237789623, - "c2": -24.27178647889453, - "c3": -45.674250524944135, - "c4": 37.17935634498433, - "c5": 11.08489364373117, - "c6": 36.774154784626106, - "c7": 0.504109578890855 + "points": { + "c1": 8.240040792514712, + "c2": -37.477397516633346, + "c3": -32.02949136802787, + "c4": 43.99623304941343, + "c5": -19.701432517355375, + "c6": 19.944209016793153, + "c7": -42.68600129001483 }, - "vertexSeeds": { - "c1": 3.341785319898631, - "c2": 3.2141100433029366, - "c3": 3.3336546500223943, - "c4": 3.574496525391008, - "c5": 3.376391738787566, - "c6": 3.3779604090037267, - "c7": 3.653806912071367 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762828, + "c3": 4.461396208969027, + "c4": 3.56911696717522, + "c5": 2.676837725381414, + "c6": 1.784558483587613, + "c7": 0.8922792417938065 }, "rgb": [86, 146, 138] }, @@ -84570,23 +84570,23 @@ "year": 1728, "resistanceReported": false, "duration": 50371200, - "curveSeeds": { - "c1": -27.437155034313577, - "c2": -1.489576058442367, - "c3": -25.991804114394597, - "c4": -35.30351131288449, - "c5": 57.15165288206349, - "c6": 6.087407636683054, - "c7": -14.511665475816628 + "points": { + "c1": 47.83731113231045, + "c2": 22.681957432263815, + "c3": -5.215675871635305, + "c4": 28.16142833739123, + "c5": -8.879251286642805, + "c6": 66.34346075384235, + "c7": 62.773639264946894 }, - "vertexSeeds": { - "c1": 6.289481524712993, - "c2": 6.408048700799715, - "c3": 6.273987484535918, - "c4": 6.263315339604178, - "c5": 6.000648161790315, - "c6": 6.926048094975652, - "c7": 6.373169344240552 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002775, + "c3": 8.622283865002315, + "c4": 6.897827092001853, + "c5": 5.173370319001384, + "c6": 3.4489135460009224, + "c7": 1.7244567730004612 }, "rgb": [238, 201, 159] }, @@ -84597,23 +84597,23 @@ "year": 1728, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -20.82985212417335, - "c2": -33.23341561345402, - "c3": 16.076936375223106, - "c4": 9.663140188813017, - "c5": 35.388374894546445, - "c6": -36.684172330428204, - "c7": 34.29847396174348 + "points": { + "c1": -36.91337012633755, + "c2": 2.5659857369231247, + "c3": 45.62661791799799, + "c4": 14.734572873158982, + "c5": -29.344722885616953, + "c6": 14.535470728245471, + "c7": -29.722000999003814 }, - "vertexSeeds": { - "c1": 4.19798823729558, - "c2": 4.766316767442317, - "c3": 4.721027542597677, - "c4": 4.735928416412887, - "c5": 4.670262198182807, - "c6": 5.2051137172933615, - "c7": 4.529882320875502 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -84624,23 +84624,23 @@ "year": 1728, "resistanceReported": false, "duration": 55296000, - "curveSeeds": { - "c1": -1.27521581249664, - "c2": -58.369760812742356, - "c3": 23.07127980024177, - "c4": 32.80101396164726, - "c5": -66.39388164811034, - "c6": -27.604536278649228, - "c7": 29.06938158666817 + "points": { + "c1": 22.561882885359992, + "c2": 19.34037388294253, + "c3": -63.550459556610875, + "c4": -49.17002373672669, + "c5": 13.734918364839714, + "c6": 52.270190483463054, + "c7": 56.77155473011899 }, - "vertexSeeds": { - "c1": 7.942817250946213, - "c2": 8.241016611357525, - "c3": 8.996545193061491, - "c4": 8.84096658725665, - "c5": 8.077910980517622, - "c6": 8.86204824878369, - "c7": 8.086041228594047 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.09292649098475, + "c3": 10.910772075820617, + "c4": 8.728617660656498, + "c5": 6.546463245492368, + "c6": 4.364308830328249, + "c7": 2.1821544151641183 }, "rgb": [77, 76, 132] }, @@ -84651,23 +84651,23 @@ "year": 1728, "resistanceReported": false, "duration": 58320000, - "curveSeeds": { - "c1": -2.4188825426084293, - "c2": 62.08754149362569, - "c3": -28.303961586658865, - "c4": -0.7313544646105186, - "c5": -22.530988098485523, - "c6": 6.314624722778817, - "c7": -31.987675499407487 + "points": { + "c1": -19.56448741101849, + "c2": -0.6810732981554395, + "c3": 71.09748743495574, + "c4": 51.43161589184976, + "c5": -47.47596971399085, + "c6": -46.94534115605606, + "c7": 28.57409708870081 }, - "vertexSeeds": { - "c1": 4.767578664630001, - "c2": 4.467061515634381, - "c3": 4.510616287008747, - "c4": 4.802299984111823, - "c5": 4.5319698775702815, - "c6": 4.756283667886635, - "c7": 5.000116029011913 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578358, + "c3": 6.079519186315307, + "c4": 4.863615349052241, + "c5": 3.6477115117891823, + "c6": 2.431807674526124, + "c7": 1.2159038372630588 }, "rgb": [238, 201, 159] }, @@ -84678,23 +84678,23 @@ "year": 1727, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 8.767842699674361, - "c2": -1.813684281112586, - "c3": -17.72170640424056, - "c4": -19.904147104619824, - "c5": -4.504788912239441, - "c6": -8.382971406499117, - "c7": -19.80305113533199 + "points": { + "c1": -26.061273782200335, + "c2": -20.074984484553976, + "c3": -23.5410344135519, + "c4": -30.429945450049473, + "c5": 2.499270167858313, + "c6": 22.453039535328173, + "c7": 11.517819834031911 }, - "vertexSeeds": { - "c1": 3.9790410511961207, - "c2": 3.8041348097689998, - "c3": 3.6835781987487173, - "c4": 3.5340528465947, - "c5": 4.2352699581468505, - "c6": 3.5367317285246003, - "c7": 3.9308187713174263 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.2011095700416075, + "c4": 4.160887656033288, + "c5": 3.1206657420249635, + "c6": 2.080443828016644, + "c7": 1.0402219140083242 }, "rgb": [222, 0, 59] }, @@ -84705,23 +84705,23 @@ "year": 1728, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": 37.217504076301104, - "c2": 24.707777952363337, - "c3": -32.18236129381535, - "c4": 50.433201004434245, - "c5": 37.16786425033954, - "c6": -25.558470061254773, - "c7": 14.704262241597142 + "points": { + "c1": 36.92210043330676, + "c2": -18.05235638177563, + "c3": -59.149361757756175, + "c4": -48.99358009456967, + "c5": -50.84277347096965, + "c6": -44.936991215951096, + "c7": -40.43748666458482 }, - "vertexSeeds": { - "c1": 5.389020174433233, - "c2": 5.285135320310849, - "c3": 5.023197422936949, - "c4": 4.927293736309062, - "c5": 5.028929019067593, - "c6": 5.566632962738373, - "c7": 5.127129954476222 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387893, + "c4": 5.455386037910311, + "c5": 4.0915395284327305, + "c6": 2.7276930189551627, + "c7": 1.3638465094775813 }, "rgb": [222, 0, 59] }, @@ -84732,23 +84732,23 @@ "year": 1727, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -11.148173828893555, - "c2": 11.273968649465598, - "c3": 1.8847018233549946, - "c4": -0.2453579202934577, - "c5": -3.2560475253847656, - "c6": -26.58677677334118, - "c7": -0.3615332296598659 + "points": { + "c1": 17.275152627194434, + "c2": 20.352835733235704, + "c3": 18.06945895643962, + "c4": -4.483068024679742, + "c5": 10.827419256511984, + "c6": 19.03541150840506, + "c7": -26.598107555305937 }, - "vertexSeeds": { - "c1": 2.670577346316414, - "c2": 2.7467086618896106, - "c3": 2.608844631258082, - "c4": 2.829731362017058, - "c5": 2.665847622593815, - "c6": 2.82476697395152, - "c7": 2.6839900632641798 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.4674063800277413, + "c4": 2.7739251040221866, + "c5": 2.08044382801664, + "c6": 1.3869625520110933, + "c7": 0.6934812760055467 }, "rgb": [58, 15, 49] }, @@ -84759,23 +84759,23 @@ "year": 1728, "resistanceReported": false, "duration": 48384000, - "curveSeeds": { - "c1": 55.75137779090776, - "c2": 28.531316744919515, - "c3": -16.600970989574762, - "c4": -18.74715309036462, - "c5": 13.392725214606692, - "c6": -31.34736542247552, - "c7": 61.82337540718425 + "points": { + "c1": -12.337542690229483, + "c2": -37.49099273297513, + "c3": -22.67495602043514, + "c4": -8.575923797166837, + "c5": -61.904721167527384, + "c6": -53.279729420890476, + "c7": 6.933765631631431 }, - "vertexSeeds": { - "c1": 4.543548951206231, - "c2": 4.583193855474922, - "c3": 4.542499769049727, - "c4": 4.29742191957825, - "c5": 4.0141205891375344, - "c6": 4.608285232667932, - "c7": 3.9741715244879057 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.99029126213592, + "c3": 5.825242718446603, + "c4": 4.66019417475728, + "c5": 3.495145631067958, + "c6": 2.33009708737864, + "c7": 1.1650485436893179 }, "rgb": [77, 76, 132] }, @@ -84786,23 +84786,23 @@ "year": 1727, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -21.483423928160374, - "c2": 27.07590734312894, - "c3": -21.767710474789606, - "c4": -19.709885057203287, - "c5": 21.76363415193672, - "c6": -9.809985468627474, - "c7": 6.817499779407463 + "points": { + "c1": -18.89950427546173, + "c2": 20.69472702495706, + "c3": -14.656945233858263, + "c4": 21.277777869882108, + "c5": 28.40183386682275, + "c6": 26.23705435134925, + "c7": 10.271224359727455 }, - "vertexSeeds": { - "c1": 2.925620741280873, - "c2": 2.74710328299141, - "c3": 2.8190621260397086, - "c4": 3.0777645567974012, - "c5": 2.794258122317062, - "c6": 3.094855743946925, - "c7": 2.9099880679331678 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475731, + "c3": 3.7216828478964374, + "c4": 2.9773462783171514, + "c5": 2.2330097087378653, + "c6": 1.4886731391585792, + "c7": 0.744336569579286 }, "rgb": [86, 146, 138] }, @@ -84813,23 +84813,23 @@ "year": 1727, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 3.2984567756624656, - "c2": -21.336712256078737, - "c3": 5.392849983106984, - "c4": -32.622614474498846, - "c5": 19.79886515239358, - "c6": 15.702444594028528, - "c7": 5.453248488079218 + "points": { + "c1": -23.132535505591612, + "c2": 36.697035616929796, + "c3": 29.85031986715019, + "c4": -34.36917415102921, + "c5": -6.022358195764859, + "c6": -2.93887524720553, + "c7": 37.253417653871225 }, - "vertexSeeds": { - "c1": 10.832262856134902, - "c2": 11.226510121167246, - "c3": 11.221326399409818, - "c4": 11.622184641509223, - "c5": 11.078970365461446, - "c6": 10.774234882806924, - "c7": 11.541382289283483 + "offsets": { + "c1": 19.611650485436893, + "c2": 16.80998613037448, + "c3": 14.008321775312067, + "c4": 11.206657420249654, + "c5": 8.40499306518724, + "c6": 5.603328710124827, + "c7": 2.8016643550624134 }, "rgb": [86, 146, 138] }, @@ -84840,23 +84840,23 @@ "year": 1727, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 9.22489838315655, - "c2": 23.545826043460593, - "c3": -34.926445334060034, - "c4": -9.476331859795135, - "c5": 2.11339055350269, - "c6": 8.19725851479351, - "c7": 4.885968007701834 + "points": { + "c1": 18.50677816688009, + "c2": -22.691821124413977, + "c3": -13.04916545780129, + "c4": -28.382411672485688, + "c5": 6.438287000444255, + "c6": 7.463634358371962, + "c7": 34.08173260515777 }, - "vertexSeeds": { - "c1": 4.001318681397584, - "c2": 3.9796821169576093, - "c3": 4.169067260029226, - "c4": 4.063572326821715, - "c5": 4.270561555713304, - "c6": 4.212388460668013, - "c7": 4.002832168688384 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [77, 76, 132] }, @@ -84867,23 +84867,23 @@ "year": 1727, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -12.422032935563205, - "c2": -8.920972814320066, - "c3": 12.086939232350758, - "c4": -22.754565954972293, - "c5": -9.761356779823359, - "c6": 24.73066036486854, - "c7": -15.877434354373452 + "points": { + "c1": 0.4115442531909821, + "c2": -33.40737950552911, + "c3": 3.461219023262771, + "c4": -13.239037872800232, + "c5": -5.822512098056421, + "c6": -30.821500859010953, + "c7": -25.232824159967844 }, - "vertexSeeds": { - "c1": 13.492508359414918, - "c2": 13.6725600165733, - "c3": 14.488355945466592, - "c4": 14.218449824123326, - "c5": 14.092389292640139, - "c6": 14.21051886364253, - "c7": 14.25434329137347 + "offsets": { + "c1": 24.207119741100325, + "c2": 20.748959778085986, + "c3": 17.290799815071647, + "c4": 13.832639852057312, + "c5": 10.374479889042973, + "c6": 6.916319926028676, + "c7": 3.458159963014338 }, "rgb": [58, 15, 49] }, @@ -84894,23 +84894,23 @@ "year": 1727, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -2.8748974456338487, - "c2": 16.040823297831565, - "c3": -34.292894378317854, - "c4": 34.019715700704296, - "c5": 30.706155746795943, - "c6": -33.364882194464144, - "c7": 28.7513234944459 + "points": { + "c1": -20.170899832529326, + "c2": 22.39598186825522, + "c3": -20.438868474898012, + "c4": -35.0763168915811, + "c5": 33.74863164587046, + "c6": -30.7750964972195, + "c7": -40.40956079261743 }, - "vertexSeeds": { - "c1": 3.1701577582840623, - "c2": 3.5493374287284145, - "c3": 3.3020453514873056, - "c4": 3.5815171455450314, - "c5": 3.646144572164792, - "c6": 3.6435784777249576, - "c7": 3.253832812298064 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435503, + "c4": 3.5506241331484056, + "c5": 2.662968099861303, + "c6": 1.7753120665742006, + "c7": 0.8876560332871025 }, "rgb": [238, 201, 159] }, @@ -84921,23 +84921,23 @@ "year": 1727, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -19.12652515364049, - "c2": 17.67707507318859, - "c3": 18.009593848064412, - "c4": -9.272284068800015, - "c5": -32.06689592460563, - "c6": 1.1475490303588387, - "c7": -26.733373877882592 + "points": { + "c1": -19.99489657834212, + "c2": 31.0685022227999, + "c3": -1.7715746291418881, + "c4": 7.970950077852358, + "c5": -16.839021207320293, + "c6": 8.039230387242284, + "c7": 33.36237549948206 }, - "vertexSeeds": { - "c1": 7.532565275222324, - "c2": 6.662828300808703, - "c3": 7.629405796247909, - "c4": 6.616883732779162, - "c5": 7.0476486065770505, - "c6": 6.8646652645111494, - "c7": 6.741447916556661 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847436, + "c3": 9.1077207582062, + "c4": 7.286176606564962, + "c5": 5.464632454923725, + "c6": 3.643088303282488, + "c7": 1.8215441516412507 }, "rgb": [86, 146, 138] }, @@ -84948,23 +84948,23 @@ "year": 1727, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -17.081417446706233, - "c2": -30.30538651433425, - "c3": -16.942307435004544, - "c4": -22.915282272480127, - "c5": 24.07654286885946, - "c6": -0.46417026906836156, - "c7": 10.973039413524663 + "points": { + "c1": 28.12596375053603, + "c2": 5.397224995014383, + "c3": -9.669271233522554, + "c4": 28.12770971996015, + "c5": -14.866063546625558, + "c6": -9.051545686519844, + "c7": 30.91709008828218 }, - "vertexSeeds": { - "c1": 1.1901839645301426, - "c2": 1.1789288820104755, - "c3": 1.1668137570058474, - "c4": 1.1618337554349967, - "c5": 1.2358222292518364, - "c6": 1.1657007973259672, - "c7": 1.1643973082531156 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133152, + "c3": 1.3869625520110964, + "c4": 1.1095700416088778, + "c5": 0.8321775312066594, + "c6": 0.5547850208044407, + "c7": 0.27739251040222207 }, "rgb": [238, 201, 159] }, @@ -84975,23 +84975,23 @@ "year": 1728, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -20.07470124969167, - "c2": -2.887288026303608, - "c3": 0.1862998097343933, - "c4": 9.391662270071649, - "c5": 29.13516155540509, - "c6": 16.131867680376892, - "c7": 13.736892566381421 + "points": { + "c1": 4.045524036774253, + "c2": 9.287930429725037, + "c3": 18.67808364777534, + "c4": 36.5525432107445, + "c5": -7.6853920235407855, + "c6": -26.65192333261551, + "c7": -20.495422913853375 }, - "vertexSeeds": { - "c1": 4.199483043407907, - "c2": 4.360195684910048, - "c3": 4.971830857012678, - "c4": 4.743208737120158, - "c5": 4.838743964617119, - "c6": 4.454949542011157, - "c7": 5.0540859193939225 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -85002,23 +85002,23 @@ "year": 1728, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 37.610952235054015, - "c2": 20.627014909285577, - "c3": -18.063943102155008, - "c4": 19.27621397495372, - "c5": -22.80518656401685, - "c6": 20.95128897628428, - "c7": -7.350219158362556 + "points": { + "c1": 3.1643403966968435, + "c2": 14.944921442578305, + "c3": 11.179214292963906, + "c4": -15.935661260629168, + "c5": 1.5204733049223904, + "c6": 24.01825562198094, + "c7": -19.484597934301124 }, - "vertexSeeds": { - "c1": 2.7564445036306093, - "c2": 2.675548245091393, - "c3": 2.714419043432698, - "c4": 2.8133972317991196, - "c5": 2.675122297209602, - "c6": 2.6382265814367782, - "c7": 2.8044084382318966 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [77, 76, 132] }, @@ -85029,23 +85029,23 @@ "year": 1728, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -7.913396363428195, - "c2": -20.41507495822244, - "c3": 15.638042658757584, - "c4": -15.93593136080992, - "c5": 19.005796844086845, - "c6": -4.7912301547109095, - "c7": 8.905229900593284 + "points": { + "c1": -21.74523665324614, + "c2": -33.67720504987118, + "c3": 21.83530446964172, + "c4": 21.149479486480097, + "c5": -27.550812238258217, + "c6": -6.860710729870814, + "c7": -14.745045904697882 }, - "vertexSeeds": { - "c1": 7.78056801305878, - "c2": 7.704886970413396, - "c3": 7.053867444111608, - "c4": 7.588568700424061, - "c5": 8.338712354664823, - "c6": 7.724671037939006, - "c7": 8.22209744849269 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260754, + "c3": 10.494683310217289, + "c4": 8.395746648173835, + "c5": 6.2968099861303815, + "c6": 4.197873324086918, + "c7": 2.0989366620434633 }, "rgb": [238, 201, 159] }, @@ -85056,23 +85056,23 @@ "year": 1727, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 17.727077659832034, - "c2": -13.359129558749423, - "c3": -0.8206690177176412, - "c4": -16.974638881125102, - "c5": -19.39695266680303, - "c6": -8.40273935940284, - "c7": 20.756398311482656 + "points": { + "c1": 18.989531653442143, + "c2": -20.421113475970973, + "c3": -11.041301698335776, + "c4": -3.011029927266229, + "c5": 24.939915910942354, + "c6": -21.481086271267955, + "c7": -31.480453292524007 }, - "vertexSeeds": { - "c1": 6.7617980580078925, - "c2": 6.7192046081919425, - "c3": 6.802392708770642, - "c4": 6.549815539800559, - "c5": 6.710870650817907, - "c6": 6.845874026873626, - "c7": 5.81883627388486 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319002, + "c3": 8.229311141932504, + "c4": 6.583448913546005, + "c5": 4.937586685159506, + "c6": 3.2917244567729984, + "c7": 1.645862228386507 }, "rgb": [222, 0, 59] }, @@ -85083,23 +85083,23 @@ "year": 1728, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -14.896141092850433, - "c2": 0.9735159806562699, - "c3": -8.166020272352974, - "c4": 22.625287528612414, - "c5": 25.569852074860474, - "c6": 1.0754582454066899, - "c7": 28.50297441183689 + "points": { + "c1": 7.9090589332432515, + "c2": 32.316100996390375, + "c3": -23.687050542643693, + "c4": 21.57492368603758, + "c5": 29.5584779693015, + "c6": -22.06648037206542, + "c7": -19.717348079442253 }, - "vertexSeeds": { - "c1": 6.120288358525476, - "c2": 6.293540243935187, - "c3": 6.287228633984232, - "c4": 6.182165228624328, - "c5": 6.138925248472646, - "c6": 6.263224799504271, - "c7": 6.2555510905182565 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393891, + "c3": 7.697642163661582, + "c4": 6.15811373092926, + "c5": 4.618585298196953, + "c6": 3.07905686546463, + "c7": 1.5395284327323082 }, "rgb": [238, 201, 159] }, @@ -85110,23 +85110,23 @@ "year": 1728, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 2.0446112203842333, - "c2": -1.657681071652469, - "c3": -25.532211475084097, - "c4": -13.554996508764582, - "c5": -6.066526135306567, - "c6": 24.03938719807342, - "c7": 9.430385737153856 + "points": { + "c1": 29.99752246441534, + "c2": 16.89718780666825, + "c3": -2.242217165141433, + "c4": 24.632192299172942, + "c5": 12.70674806960281, + "c6": 35.39977243072714, + "c7": -31.359557113714622 }, - "vertexSeeds": { - "c1": 9.41758680866204, - "c2": 10.488564829198621, - "c3": 9.175166550985884, - "c4": 9.513275152579288, - "c5": 9.026126873841116, - "c6": 10.09674231596999, - "c7": 9.663200213722872 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.006934812760058, + "c3": 12.505779010633384, + "c4": 10.00462320850671, + "c5": 7.503467406380023, + "c6": 5.002311604253349, + "c7": 2.5011558021266747 }, "rgb": [86, 146, 138] }, @@ -85137,23 +85137,23 @@ "year": 1728, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 7.969659165078699, - "c2": -9.844905158780783, - "c3": -20.3193619281392, - "c4": 7.025568869645777, - "c5": -27.588894737632188, - "c6": -20.78818409311286, - "c7": -27.806125461856045 + "points": { + "c1": -25.974430035723824, + "c2": 27.65914638364327, + "c3": 9.504897024203206, + "c4": -26.648041368314445, + "c5": -11.88809115783707, + "c6": 25.71524072879637, + "c7": -26.76891607764331 }, - "vertexSeeds": { - "c1": 1.7093703129137012, - "c2": 1.6943394429420182, - "c3": 1.6941727180188344, - "c4": 1.6738635135338766, - "c5": 1.7023189030795676, - "c6": 1.7063301023615616, - "c7": 1.69713265171383 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797417, + "c3": 2.0573277854831282, + "c4": 1.6458622283864945, + "c5": 1.234396671289881, + "c6": 0.8229311141932473, + "c7": 0.41146555709663385 }, "rgb": [238, 201, 159] }, @@ -85164,23 +85164,23 @@ "year": 1728, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -3.4631825291036122, - "c2": -32.01296441859402, - "c3": 12.315073947085978, - "c4": -36.329222445682824, - "c5": 4.5623308057459795, - "c6": 13.670374468065859, - "c7": -28.17542361168833 + "points": { + "c1": 27.61554843509012, + "c2": -39.285602942610204, + "c3": 31.727703330436583, + "c4": 40.26669028628551, + "c5": -16.932995645350495, + "c6": 21.510542850898958, + "c7": 20.565498302244045 }, - "vertexSeeds": { - "c1": 6.912138537605485, - "c2": 7.000634585181439, - "c3": 6.1916466226155595, - "c4": 6.260336048101032, - "c5": 6.227537335461583, - "c6": 7.026238201322341, - "c7": 6.147728992569214 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640774, + "c3": 8.414239482200642, + "c4": 6.7313915857605116, + "c5": 5.048543689320394, + "c6": 3.3656957928802624, + "c7": 1.6828478964401312 }, "rgb": [86, 146, 138] }, @@ -85191,23 +85191,23 @@ "year": 1728, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 11.6833377696858, - "c2": -6.660534630448641, - "c3": 27.08737730266057, - "c4": -17.54665292985848, - "c5": -15.250797384218194, - "c6": 25.122405138668114, - "c7": -7.881930529089619 + "points": { + "c1": 1.296504730915231, + "c2": -14.950994983587616, + "c3": -16.653760368002878, + "c4": -12.475780445386139, + "c5": 0.8988419429794448, + "c6": 18.92019796122412, + "c7": -28.400842590503593 }, - "vertexSeeds": { - "c1": 4.295557528485473, - "c2": 4.615811584446951, - "c3": 4.784717008619302, - "c4": 4.51198764076845, - "c5": 4.339479264765956, - "c6": 4.588620711169321, - "c7": 4.238147407312498 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055476, + "c3": 5.779010633379567, + "c4": 4.623208506703652, + "c5": 3.467406380027738, + "c6": 2.311604253351829, + "c7": 1.1558021266759144 }, "rgb": [86, 146, 138] }, @@ -85218,23 +85218,23 @@ "year": 1728, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -9.829241203159354, - "c2": -9.477438174742847, - "c3": 16.67379652591423, - "c4": -10.622338718368153, - "c5": 11.670995458746066, - "c6": 3.09514805009648, - "c7": -16.920165803484494 + "points": { + "c1": -22.316125375559146, + "c2": -5.6061703156788845, + "c3": -10.180172386381805, + "c4": 18.745868148312322, + "c5": -14.884534112370853, + "c6": -17.957018328632348, + "c7": -15.915256861651779 }, - "vertexSeeds": { - "c1": 4.875257000161619, - "c2": 4.627696125201492, - "c3": 4.510511336753508, - "c4": 5.1224152058282, - "c5": 4.258297125587563, - "c6": 4.326202398667369, - "c7": 5.087397996227333 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -85245,23 +85245,23 @@ "year": 1728, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -30.767266739265178, - "c2": -17.344619680126875, - "c3": 6.109774795245691, - "c4": 23.395870950158617, - "c5": 15.008507060582794, - "c6": 7.6277257163117795, - "c7": 14.595712091296136 + "points": { + "c1": 32.8109094468154, + "c2": 25.75848349114934, + "c3": 28.676170758026764, + "c4": 15.386112170318661, + "c5": 26.512804102689046, + "c6": 6.1299910369261426, + "c7": 30.63470149891532 }, - "vertexSeeds": { - "c1": 4.827932602965294, - "c2": 4.26000368247067, - "c3": 4.13717026553587, - "c4": 5.086828397301658, - "c5": 4.1575660415838875, - "c6": 4.418622299373791, - "c7": 4.768360963118857 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181693, + "c3": 6.426259824318078, + "c4": 5.141007859454463, + "c5": 3.8557558945908483, + "c6": 2.5705039297272334, + "c7": 1.2852519648636147 }, "rgb": [238, 201, 159] }, @@ -85272,23 +85272,23 @@ "year": 1728, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 15.502981881319592, - "c2": 17.85391807721747, - "c3": 19.278380816286727, - "c4": -13.188151624588208, - "c5": -24.51052931502161, - "c6": 12.26467939234039, - "c7": -28.131943784658738 + "points": { + "c1": -29.50177403005685, + "c2": -30.01154462458344, + "c3": -0.7402384380167604, + "c4": -17.84482487762186, + "c5": 29.458460033379907, + "c6": -22.06179873628771, + "c7": -0.3063787461849614 }, - "vertexSeeds": { - "c1": 4.384491788292719, - "c2": 4.241228053837029, - "c3": 4.156177381184383, - "c4": 4.35932158879305, - "c5": 4.613110585319451, - "c6": 4.352661227708746, - "c7": 4.121257008716948 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055476, + "c3": 5.779010633379568, + "c4": 4.623208506703652, + "c5": 3.467406380027738, + "c6": 2.3116042533518235, + "c7": 1.1558021266759146 }, "rgb": [77, 76, 132] }, @@ -85299,23 +85299,23 @@ "year": 1728, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -22.122257327468038, - "c2": -19.871275960194804, - "c3": -24.658867603645565, - "c4": 35.49095842417623, - "c5": -14.24616008791261, - "c6": -12.393184335761546, - "c7": 19.470879927340086 + "points": { + "c1": 11.900393873047214, + "c2": 30.577870732377804, + "c3": 15.252276444240067, + "c4": -13.351515794018006, + "c5": 20.32910529366042, + "c6": -12.56896032205357, + "c7": 9.11081102161431 }, - "vertexSeeds": { - "c1": 6.06491799725074, - "c2": 6.17375526828704, - "c3": 6.4087757909110366, - "c4": 6.074614125305372, - "c5": 6.102387792365399, - "c6": 6.594700924683364, - "c7": 6.5977900231055315 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801665, + "c3": 8.506703652334721, + "c4": 6.8053629218677765, + "c5": 5.104022191400833, + "c6": 3.4026814609338882, + "c7": 1.7013407304669441 }, "rgb": [222, 0, 59] }, @@ -85326,23 +85326,23 @@ "year": 1728, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 15.733836181149393, - "c2": -16.038081274689137, - "c3": -15.638215327197099, - "c4": -17.77944140135032, - "c5": -16.28284574784806, - "c6": 19.84607391227015, - "c7": -16.10618821162347 + "points": { + "c1": -10.626852435206224, + "c2": 35.719988896445415, + "c3": -18.433299951692014, + "c4": -15.29542842596316, + "c5": -14.801335485019994, + "c6": 13.99803814307095, + "c7": -21.902808093080143 }, - "vertexSeeds": { - "c1": 5.914872269310223, - "c2": 5.922037551356787, - "c3": 6.067076030749362, - "c4": 5.9113090649036275, - "c5": 5.964699151407112, - "c6": 5.878284194347436, - "c7": 6.021887947922495 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669922, + "c3": 7.281553398058246, + "c4": 5.825242718446615, + "c5": 4.368932038834939, + "c6": 2.9126213592233077, + "c7": 1.4563106796116314 }, "rgb": [238, 201, 159] }, @@ -85353,23 +85353,23 @@ "year": 1727, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": -14.415569944163853, - "c2": -6.26353535340548, - "c3": 12.604100403647202, - "c4": 4.633740052765553, - "c5": -0.680721300094298, - "c6": -8.906518820986316, - "c7": -14.982423871904613 + "points": { + "c1": 18.791959206818255, + "c2": 2.825086538866099, + "c3": -6.551277794940722, + "c4": 15.792191459557763, + "c5": -14.783918743484936, + "c6": 5.7501760879078105, + "c7": 17.581378500160397 }, - "vertexSeeds": { - "c1": 4.861787881518498, - "c2": 4.650186573677175, - "c3": 5.309488662833209, - "c4": 5.506020314691883, - "c5": 5.233969684152644, - "c6": 5.315938842244861, - "c7": 4.8693125085239295 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664359, + "c3": 6.703652334720293, + "c4": 5.362921867776238, + "c5": 4.022191400832171, + "c6": 2.681460933888116, + "c7": 1.3407304669440607 }, "rgb": [77, 76, 132] }, @@ -85380,23 +85380,23 @@ "year": 1728, "resistanceReported": false, "duration": 40089600, - "curveSeeds": { - "c1": -23.396263268366017, - "c2": -31.753832102892062, - "c3": 22.08610572943865, - "c4": -40.10645695602527, - "c5": 45.790232977826044, - "c6": 28.06016821962198, - "c7": 29.00343887931141 + "points": { + "c1": 41.92730141818971, + "c2": -32.77117120643003, + "c3": 7.589029305656638, + "c4": -30.951243301469617, + "c5": 51.86889752560233, + "c6": -17.159801874667096, + "c7": -53.316196888669836 }, - "vertexSeeds": { - "c1": 4.086385901444787, - "c2": 3.8813718405177426, - "c3": 4.280731227106889, - "c4": 4.020826486848873, - "c5": 4.066480365431844, - "c6": 4.290681643527909, - "c7": 4.123338679507305 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [238, 201, 159] }, @@ -85407,23 +85407,23 @@ "year": 1728, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -1.0099660142423161, - "c2": 8.04278754226322, - "c3": 12.36674527107509, - "c4": 3.452560087413211, - "c5": -5.659979291985238, - "c6": -10.184213418464124, - "c7": 3.9227692015661724 + "points": { + "c1": 8.00844662740942, + "c2": 6.677243646021459, + "c3": 21.26884219457979, + "c4": -10.600946191672403, + "c5": -19.84818552398791, + "c6": 17.355187870298117, + "c7": -14.728150906336332 }, - "vertexSeeds": { - "c1": 8.953633021006674, - "c2": 9.000189681879645, - "c3": 9.228304495324476, - "c4": 9.158626160657695, - "c5": 8.988935260962842, - "c6": 8.949701337396982, - "c7": 9.119746792470982 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145647, + "c3": 11.003236245954673, + "c4": 8.802588996763747, + "c5": 6.601941747572823, + "c6": 4.40129449838185, + "c7": 2.200647249190925 }, "rgb": [77, 76, 132] }, @@ -85434,23 +85434,23 @@ "year": 1728, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -11.742261410547002, - "c2": -6.314448168269216, - "c3": -30.920292937542442, - "c4": 33.17136086404848, - "c5": 35.94733795509815, - "c6": 4.875995938316869, - "c7": -7.7932157244300555 + "points": { + "c1": 2.337008116047265, + "c2": 26.19651189664114, + "c3": -27.407299481256477, + "c4": 21.77238553863873, + "c5": 31.66455213651082, + "c6": 42.937654918580165, + "c7": 7.324996710326381 }, - "vertexSeeds": { - "c1": 9.197003994619722, - "c2": 8.867361294985445, - "c3": 9.54984066505314, - "c4": 10.235684128703818, - "c5": 8.823332094401977, - "c6": 9.005512583347821, - "c7": 8.938753096091107 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.923717059639399, + "c3": 12.436430883032816, + "c4": 9.949144706426258, + "c5": 7.4618585298196995, + "c6": 4.974572353213129, + "c7": 2.487286176606559 }, "rgb": [86, 146, 138] }, @@ -85461,23 +85461,23 @@ "year": 1728, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -17.110429159250963, - "c2": 8.183144092974175, - "c3": -18.78115436017486, - "c4": 8.17939806128507, - "c5": -11.318672457031697, - "c6": -18.091074612042434, - "c7": -11.928578949091984 + "points": { + "c1": 3.615623978066427, + "c2": 3.153127594582063, + "c3": -19.699693645743977, + "c4": 8.054454123353441, + "c5": -4.853572110441942, + "c6": -2.9742072899595975, + "c7": -21.09222076239243 }, - "vertexSeeds": { - "c1": 4.19988869270788, - "c2": 4.801798296216419, - "c3": 4.530864916135326, - "c4": 4.820704413436914, - "c5": 5.074687203181974, - "c6": 4.599217854299025, - "c7": 4.744295165444655 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -85488,23 +85488,23 @@ "year": 1728, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": -33.04087767223322, - "c2": 34.23858138051287, - "c3": 11.519422908568849, - "c4": -15.359949718827085, - "c5": -21.798026566919113, - "c6": -18.388763926768434, - "c7": 44.591582245612955 + "points": { + "c1": -14.538190598591228, + "c2": 1.7921999530342774, + "c3": -25.05055406156912, + "c4": -3.4115987593585686, + "c5": -39.033752425626325, + "c6": 20.04859247992654, + "c7": 39.08638713195607 }, - "vertexSeeds": { - "c1": 8.160394935305943, - "c2": 8.18838278538294, - "c3": 7.34884336155037, - "c4": 8.082687687305365, - "c5": 7.891622701927931, - "c6": 7.350340950918123, - "c7": 8.070789148006277 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054086, + "c3": 9.801202034211745, + "c4": 7.840961627369391, + "c5": 5.88072122052705, + "c6": 3.9204808136846956, + "c7": 1.960240406842341 }, "rgb": [86, 146, 138] }, @@ -85515,23 +85515,23 @@ "year": 1728, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -8.729397787364746, - "c2": -13.601828167079294, - "c3": 28.005338252715696, - "c4": -34.86234223553858, - "c5": 4.176450633368823, - "c6": 1.245512523224761, - "c7": 12.272409511436699 + "points": { + "c1": 30.025318230201606, + "c2": 21.269052371075865, + "c3": 11.41701432905107, + "c4": 5.829315329295035, + "c5": 36.52720707782689, + "c6": -10.665066145800175, + "c7": 22.063272128579378 }, - "vertexSeeds": { - "c1": 3.7485766112267362, - "c2": 3.6193486164018926, - "c3": 3.7841100977273205, - "c4": 4.200264731227186, - "c5": 3.9988477855602684, - "c6": 3.6787268381467464, - "c7": 3.9272281431486555 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808602, + "c3": 5.062413314840496, + "c4": 4.0499306518723985, + "c5": 3.037447988904301, + "c6": 2.024965325936196, + "c7": 1.012482662968098 }, "rgb": [86, 146, 138] }, @@ -85542,23 +85542,23 @@ "year": 1728, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 9.943406408374592, - "c2": 16.76215576107724, - "c3": -14.828544305826316, - "c4": 27.924503515011686, - "c5": 35.76537625660533, - "c6": -38.765926321511124, - "c7": -34.75032031371767 + "points": { + "c1": 10.225324128253213, + "c2": -39.10898895915711, + "c3": -36.58091678880455, + "c4": -21.927171566048965, + "c5": -44.413255910208875, + "c6": -37.232660664622586, + "c7": -13.473696585145976 }, - "vertexSeeds": { - "c1": 9.849454455096522, - "c2": 9.82986091951474, - "c3": 9.40493306838325, - "c4": 9.095388621554603, - "c5": 9.473467814963474, - "c6": 9.368379309628127, - "c7": 9.277331143189665 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754512, + "c3": 11.927877947295432, + "c4": 9.542302357836336, + "c5": 7.156726768377256, + "c6": 4.771151178918177, + "c7": 2.3855755894590973 }, "rgb": [58, 15, 49] }, @@ -85569,23 +85569,23 @@ "year": 1728, "resistanceReported": true, "duration": 5356800, - "curveSeeds": { - "c1": -3.148437725617045, - "c2": -3.555973884370392, - "c3": -6.5864606971895086, - "c4": -15.411191145720645, - "c5": 4.1248544551771325, - "c6": -14.693668088398713, - "c7": -15.752750250948601 + "points": { + "c1": -3.3691917423829363, + "c2": 6.443570433257577, + "c3": -13.380766353882109, + "c4": 4.559970597365098, + "c5": -6.66344790298861, + "c6": -3.058932386794911, + "c7": -0.1261473356850189 }, - "vertexSeeds": { - "c1": 8.09302417734692, - "c2": 7.800849182153405, - "c3": 8.17865645778042, - "c4": 7.99045274738866, - "c5": 7.868935276139841, - "c6": 7.7197973524557995, - "c7": 7.724806575503856 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054086, + "c3": 9.801202034211745, + "c4": 7.840961627369391, + "c5": 5.880721220527049, + "c6": 3.9204808136846956, + "c7": 1.9602404068423416 }, "rgb": [222, 0, 59] }, @@ -85596,23 +85596,23 @@ "year": 1728, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 24.925900114323454, - "c2": 24.669628895028154, - "c3": 1.0975088709581726, - "c4": 39.530214480962584, - "c5": -26.3969156048487, - "c6": 39.275597664968345, - "c7": 20.190831165498707 + "points": { + "c1": 19.907857657272878, + "c2": -27.857407003017045, + "c3": -25.438726760975065, + "c4": -0.35739102176179927, + "c5": 2.131843184942724, + "c6": 29.946515982233905, + "c7": 31.16351291604974 }, - "vertexSeeds": { - "c1": 6.858808290155441, - "c2": 6.858808290155441, - "c3": 6.858808290155441, - "c4": 6.858808290155441, - "c5": 6.858808290155441, - "c6": 6.858808290155441, - "c7": 6.858808290155441 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -85623,23 +85623,23 @@ "year": 1728, "resistanceReported": false, "duration": 2764800, - "curveSeeds": { - "c1": 9.703667201096877, - "c2": 8.687365784245724, - "c3": -9.183348293898266, - "c4": 1.2933307521131088, - "c5": -1.7712205041886087, - "c6": -5.98848838562871, - "c7": 1.7925191807142475 + "points": { + "c1": 7.784078826064771, + "c2": -5.216774904324698, + "c3": -9.370122965371102, + "c4": -0.0859339792380247, + "c5": 5.296756343188125, + "c6": -12.593925999607796, + "c7": -9.682310749753366 }, - "vertexSeeds": { - "c1": 5.034240391554144, - "c2": 4.267278369713845, - "c3": 4.244015095992595, - "c4": 4.490732752452496, - "c5": 4.421102967831221, - "c6": 4.213157900540219, - "c7": 5.1739793789601505 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -85650,23 +85650,23 @@ "year": 1728, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 19.629254309989456, - "c2": -0.7405467027477428, - "c3": -32.45809818353087, - "c4": 19.879600445003845, - "c5": -17.364159373180797, - "c6": -26.544103588674126, - "c7": 29.604801664791893 + "points": { + "c1": 8.344141244541234, + "c2": -25.42801410179228, + "c3": -9.69162501092839, + "c4": -24.658729379446612, + "c5": -29.18067550250875, + "c6": 30.184784229138415, + "c7": -31.432324326102496 }, - "vertexSeeds": { - "c1": 4.610851863823662, - "c2": 5.093392176054687, - "c3": 4.433924551219573, - "c4": 4.700033949873342, - "c5": 4.74693394619046, - "c6": 4.689096435434804, - "c7": 4.3474696692034165 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980583, + "c3": 6.310679611650486, + "c4": 5.048543689320389, + "c5": 3.7864077669902914, + "c6": 2.5242718446601944, + "c7": 1.2621359223300972 }, "rgb": [222, 0, 59] }, @@ -85677,23 +85677,23 @@ "year": 1728, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -35.70571757363077, - "c2": -14.430158259403303, - "c3": -19.70637918062762, - "c4": -18.772856967594592, - "c5": -19.72300908618061, - "c6": 14.35316537991983, - "c7": 28.817417205572646 + "points": { + "c1": -20.798544865130914, + "c2": -27.927931002562932, + "c3": 14.93654866121274, + "c4": -0.20530621676626737, + "c5": 13.678091400510567, + "c6": -31.84935374191607, + "c7": -34.44124752439794 }, - "vertexSeeds": { - "c1": 7.230925483196888, - "c2": 8.506391872690227, - "c3": 7.40257144014333, - "c4": 8.116436572728118, - "c5": 7.364901323825204, - "c6": 7.880746383255614, - "c7": 7.946512172324177 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809986, + "c3": 10.402219140083213, + "c4": 8.32177531206657, + "c5": 6.241331484049924, + "c6": 4.160887656033279, + "c7": 2.0804438280166346 }, "rgb": [58, 15, 49] }, @@ -85704,23 +85704,23 @@ "year": 1728, "resistanceReported": false, "duration": 1382400, - "curveSeeds": { - "c1": -3.477695787537245, - "c2": -3.386520145856389, - "c3": -2.391573884731095, - "c4": 4.0684320817963116, - "c5": 0.8794194841428062, - "c6": 4.623288921603379, - "c7": 0.5274234612593993 + "points": { + "c1": 12.535165980509483, + "c2": -10.580222670439545, + "c3": 6.7401237320897, + "c4": -7.429415953371126, + "c5": 3.534734870966602, + "c6": 3.0939513770782376, + "c7": 7.4401618613448015 }, - "vertexSeeds": { - "c1": 4.617844229371663, - "c2": 4.635169562542565, - "c3": 4.270385512105279, - "c4": 5.052953999249691, - "c5": 4.2415465692380865, - "c6": 5.071807670205914, - "c7": 4.582741113902785 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -85731,23 +85731,23 @@ "year": 1729, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": -33.7310162032546, - "c2": 7.373204511393197, - "c3": 31.113225761048575, - "c4": 37.713997882258745, - "c5": -7.497658196729724, - "c6": -18.099041672768994, - "c7": -1.0707468242944458 + "points": { + "c1": -7.06976988612751, + "c2": 27.241107590546157, + "c3": 17.219496901378456, + "c4": -43.76130009696595, + "c5": -37.95495887396219, + "c6": -42.78400318088633, + "c7": 5.3590648157075975 }, - "vertexSeeds": { - "c1": 12.145880592695832, - "c2": 14.45556253735515, - "c3": 12.722094997757733, - "c4": 13.392873912401985, - "c5": 13.509607503032996, - "c6": 12.616055495888318, - "c7": 12.048110485551515 + "offsets": { + "c1": 25.177993527508093, + "c2": 21.581137309292643, + "c3": 17.98428109107721, + "c4": 14.387424872861764, + "c5": 10.79056865464633, + "c6": 7.193712436430882, + "c7": 3.5968562182154327 }, "rgb": [77, 76, 132] }, @@ -85758,23 +85758,23 @@ "year": 1728, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 29.776568592614815, - "c2": -30.20671948897249, - "c3": -11.331037296847079, - "c4": -9.000629179118455, - "c5": 24.646359532974046, - "c6": -14.764328156936482, - "c7": -25.271442228052205 + "points": { + "c1": 18.109344409159434, + "c2": -30.75906862366298, + "c3": 23.452528588522583, + "c4": 15.543154039165309, + "c5": -29.61926828532856, + "c6": -14.472740361784506, + "c7": 29.31639670111511 }, - "vertexSeeds": { - "c1": 7.015874806166134, - "c2": 6.966834402893575, - "c3": 7.327471503365597, - "c4": 7.3751362481476646, - "c5": 6.989425425799507, - "c6": 7.145584809036283, - "c7": 7.347866096543679 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -85785,23 +85785,23 @@ "year": 1729, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 38.72665056003976, - "c2": -30.82433612190941, - "c3": 7.543031202213903, - "c4": 3.1036833480921686, - "c5": 34.28937943367147, - "c6": 26.345752795208824, - "c7": -18.742886465492756 + "points": { + "c1": -32.346202703935774, + "c2": 23.042761185202323, + "c3": 24.20955575916709, + "c4": 0.38775226433795495, + "c5": -9.502733814804415, + "c6": 3.0456830188423893, + "c7": 41.84678694705531 }, - "vertexSeeds": { - "c1": 2.6920936280043466, - "c2": 2.8121430190352346, - "c3": 2.7779274295136878, - "c4": 2.714293718024431, - "c5": 2.6821159660358562, - "c6": 2.7514670927415414, - "c7": 2.5851373658855 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [77, 76, 132] }, @@ -85812,23 +85812,23 @@ "year": 1728, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -41.97275953232065, - "c2": -42.15554462873224, - "c3": 35.02821291022472, - "c4": -1.8485473179122067, - "c5": 38.76567649220913, - "c6": 0.3788523327259412, - "c7": 14.061311537440986 + "points": { + "c1": 26.135859847531968, + "c2": -3.1138481105062965, + "c3": 2.2257012817898314, + "c4": 10.967855232999334, + "c5": 27.387130686383593, + "c6": 21.042582385670208, + "c7": -43.42022122405378 }, - "vertexSeeds": { - "c1": 3.3057102660555118, - "c2": 3.6412381269326044, - "c3": 3.592112144729794, - "c4": 3.638895087029268, - "c5": 3.4372893727050897, - "c6": 3.4089837605638476, - "c7": 3.509846384338448 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601943, + "c3": 4.368932038834954, + "c4": 3.495145631067965, + "c5": 2.621359223300967, + "c6": 1.747572815533978, + "c7": 0.873786407766989 }, "rgb": [77, 76, 132] }, @@ -85839,23 +85839,23 @@ "year": 1729, "resistanceReported": false, "duration": 46569600, - "curveSeeds": { - "c1": -52.31940284919129, - "c2": -28.68696559023217, - "c3": -32.348891328752686, - "c4": -14.691021583874345, - "c5": 20.78043965428933, - "c6": -19.30122533369945, - "c7": -42.468793617331535 + "points": { + "c1": 18.498344877811, + "c2": 56.75341707350254, + "c3": -60.37620949620307, + "c4": 26.47626454626721, + "c5": -53.60480042743705, + "c6": -31.6962608405375, + "c7": 45.7198943098519 }, - "vertexSeeds": { - "c1": 2.5435201213641627, - "c2": 2.581577314207753, - "c3": 2.7235821401317764, - "c4": 2.57614284845117, - "c5": 2.7374779522234, - "c6": 2.719657446337412, - "c7": 2.6489147342682426 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751736, + "c3": 3.3055940822931085, + "c4": 2.644475265834489, + "c5": 1.9833564493758702, + "c6": 1.3222376329172425, + "c7": 0.6611188164586234 }, "rgb": [77, 76, 132] }, @@ -85866,23 +85866,23 @@ "year": 1728, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 23.004287429878346, - "c2": -19.974132504638046, - "c3": -24.69301332501994, - "c4": -10.235447027088885, - "c5": 19.66205723639017, - "c6": 18.437101530559055, - "c7": 8.16889971345205 + "points": { + "c1": -22.18844637080184, + "c2": 23.15744000105996, + "c3": 2.1150588663030447, + "c4": -14.13900559739726, + "c5": -28.176708645503066, + "c6": 23.25267461359541, + "c7": 24.02445193971944 }, - "vertexSeeds": { - "c1": 4.501992676529495, - "c2": 5.0851156434073275, - "c3": 4.960409010368279, - "c4": 5.069335352617854, - "c5": 5.099115333942732, - "c6": 4.497080151599833, - "c7": 4.600374791734569 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -85893,23 +85893,23 @@ "year": 1728, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 27.968361361283666, - "c2": 0.6641020093636953, - "c3": 13.731942486008034, - "c4": 16.714923654241655, - "c5": 3.2617422514735637, - "c6": -25.546534496863522, - "c7": -24.209755701899287 + "points": { + "c1": -12.660970463140973, + "c2": 3.077184497049519, + "c3": -29.23519973059695, + "c4": -19.64575735680271, + "c5": 7.952007921127059, + "c6": 17.625699952608418, + "c7": -16.671596591344766 }, - "vertexSeeds": { - "c1": 6.468687385693492, - "c2": 7.153925325735526, - "c3": 7.42998463405441, - "c4": 6.610456763261903, - "c5": 6.68676258795797, - "c6": 7.385748603618129, - "c7": 7.036161041930676 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.79056865464633, + "c3": 8.992140545538604, + "c4": 7.1937124364308875, + "c5": 5.395284327323159, + "c6": 3.5968562182154438, + "c7": 1.7984281091077157 }, "rgb": [58, 15, 49] }, @@ -85920,23 +85920,23 @@ "year": 1729, "resistanceReported": false, "duration": 44064000, - "curveSeeds": { - "c1": -29.081830453291662, - "c2": -14.58337966870711, - "c3": 42.634333857015385, - "c4": 15.145909335482635, - "c5": -21.019404179344896, - "c6": -15.376237791144185, - "c7": -42.896784289068805 + "points": { + "c1": 59.93955321119602, + "c2": 4.296437520941019, + "c3": -39.98083718109409, + "c4": -19.077106773141686, + "c5": -40.20093163833671, + "c6": -34.78026557393103, + "c7": -35.821212344847424 }, - "vertexSeeds": { - "c1": 13.847241933617331, - "c2": 12.692431941886271, - "c3": 13.07160896028522, - "c4": 13.79711357351236, - "c5": 12.841438003696641, - "c6": 12.607153342041224, - "c7": 14.387474595695778 + "offsets": { + "c1": 24.401294498381876, + "c2": 20.915395284327314, + "c3": 17.429496070272773, + "c4": 13.943596856218209, + "c5": 10.45769764216367, + "c6": 6.971798428109104, + "c7": 3.4858992140545393 }, "rgb": [238, 201, 159] }, @@ -85947,23 +85947,23 @@ "year": 1728, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -13.671695770904158, - "c2": -18.08254563713391, - "c3": -5.392454974963247, - "c4": 20.489444793272362, - "c5": -12.59786740256813, - "c6": -6.002759689468881, - "c7": 21.599451914007886 + "points": { + "c1": 23.35006527121594, + "c2": 3.621207380465755, + "c3": -15.758324722308451, + "c4": -11.25295119455835, + "c5": 6.406620596094577, + "c6": -22.380817338805677, + "c7": 14.401385573524813 }, - "vertexSeeds": { - "c1": 13.782942316704688, - "c2": 13.064032589021913, - "c3": 13.751903081912374, - "c4": 13.11403113955756, - "c5": 13.369388653407144, - "c6": 13.244064879237122, - "c7": 13.7276053547884 + "offsets": { + "c1": 24.822006472491907, + "c2": 21.276005547850215, + "c3": 17.73000462320849, + "c4": 14.1840036985668, + "c5": 10.638002773925107, + "c6": 7.092001849283385, + "c7": 3.5460009246416924 }, "rgb": [58, 15, 49] }, @@ -85974,23 +85974,23 @@ "year": 1728, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 28.140014147275664, - "c2": -21.139505046137216, - "c3": 1.3054436582605504, - "c4": -21.992711120601463, - "c5": 30.15995869683094, - "c6": -28.27129667024288, - "c7": -24.91499801444329 + "points": { + "c1": -28.34405352840022, + "c2": 27.973093689527104, + "c3": -4.454251918562829, + "c4": 13.087066303153335, + "c5": -11.62933264178945, + "c6": -32.45490529353049, + "c7": 31.808265354656868 }, - "vertexSeeds": { - "c1": 7.595223669891185, - "c2": 7.787529654575826, - "c3": 7.735750556453507, - "c4": 7.347706531984648, - "c5": 7.307828178888662, - "c6": 7.62060817391223, - "c7": 7.809265130236003 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.28848821081831, + "c3": 10.240406842348584, + "c4": 8.192325473878869, + "c5": 6.144244105409155, + "c6": 4.096162736939431, + "c7": 2.0480813684697154 }, "rgb": [58, 15, 49] }, @@ -86001,23 +86001,23 @@ "year": 1728, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 0.5919021624567584, - "c2": 1.3116296084098664, - "c3": 25.299173412388367, - "c4": 0.8169175759270892, - "c5": 11.903318077695157, - "c6": 24.753716825540838, - "c7": -24.362724414383386 + "points": { + "c1": 15.377953881920295, + "c2": 24.179036569528787, + "c3": 1.2512658903543858, + "c4": -0.285001531310094, + "c5": 27.310838181711933, + "c6": 14.920491513969854, + "c7": -0.7709082302757153 }, - "vertexSeeds": { - "c1": 4.651568218200812, - "c2": 4.688678918815313, - "c3": 4.080360761610224, - "c4": 4.288472892787216, - "c5": 4.7702706100179855, - "c6": 4.332899174166527, - "c7": 4.046483809536467 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.99029126213592, + "c3": 5.825242718446603, + "c4": 4.66019417475728, + "c5": 3.495145631067958, + "c6": 2.33009708737864, + "c7": 1.1650485436893179 }, "rgb": [77, 76, 132] }, @@ -86028,23 +86028,23 @@ "year": 1728, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": 10.14076871412772, - "c2": 5.06930120192515, - "c3": -12.2229672704307, - "c4": 15.21799835212164, - "c5": -15.017604011955484, - "c6": 14.117411468340215, - "c7": 0.37200409508062293 + "points": { + "c1": 8.507251466339131, + "c2": -15.762096543965875, + "c3": -7.443729540625217, + "c4": 8.419077690416131, + "c5": 10.932982390020008, + "c6": -2.2893290202464875, + "c7": 18.467858911777356 }, - "vertexSeeds": { - "c1": 6.989309069521834, - "c2": 7.027383989956806, - "c3": 8.423530056350826, - "c4": 7.7436121520790335, - "c5": 8.434930664796621, - "c6": 7.089480031373088, - "c7": 7.854283408913682 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059637, + "c3": 10.379103097549695, + "c4": 8.303282478039762, + "c5": 6.227461858529819, + "c6": 4.151641239019876, + "c7": 2.0758206195099427 }, "rgb": [238, 201, 159] }, @@ -86055,23 +86055,23 @@ "year": 1728, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -4.665625288162353, - "c2": 7.026515326665944, - "c3": -35.904578802853926, - "c4": 23.94198232768658, - "c5": 23.781421300835625, - "c6": -21.378408937747405, - "c7": -31.84432836402747 + "points": { + "c1": -40.063640755738135, + "c2": -5.495683208211361, + "c3": 9.143633115605034, + "c4": -14.40163611498211, + "c5": 13.65418589616639, + "c6": -36.50920681394083, + "c7": -37.444107751248126 }, - "vertexSeeds": { - "c1": 4.210822801878112, - "c2": 5.240926156371551, - "c3": 4.7523415362196895, - "c4": 4.6577187754161, - "c5": 4.434586445606878, - "c6": 5.071200489999793, - "c7": 4.671875575660033 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -86082,23 +86082,23 @@ "year": 1728, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 31.03965889771179, - "c2": 17.12550148177918, - "c3": 15.723950305019116, - "c4": 18.089147206288395, - "c5": 3.3717704322989306, - "c6": 12.07426958343207, - "c7": 28.8674001877271 + "points": { + "c1": -19.162108982374416, + "c2": 8.19686025469764, + "c3": -8.735154008858771, + "c4": -14.31706063614585, + "c5": -28.411840905528102, + "c6": -26.29273380772794, + "c7": -11.202499129258918 }, - "vertexSeeds": { - "c1": 3.985889124335411, - "c2": 4.017128479032646, - "c3": 4.147710332491131, - "c4": 3.873540522520558, - "c5": 3.6347109105954054, - "c6": 3.869873231995932, - "c7": 3.67618306877704 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647711, + "c3": 4.969949144706425, + "c4": 3.9759593157651385, + "c5": 2.9819694868238527, + "c6": 1.9879796578825666, + "c7": 0.9939898289412802 }, "rgb": [238, 201, 159] }, @@ -86109,23 +86109,23 @@ "year": 1728, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": 10.735731727733707, - "c2": 3.4810911536049325, - "c3": -15.833713426862252, - "c4": 2.6229486667615163, - "c5": -2.2490443769438357, - "c6": 19.872184008808404, - "c7": -1.5296800323578559 + "points": { + "c1": 15.418509919846791, + "c2": -23.081191878402095, + "c3": -3.3502384084487495, + "c4": -11.539929568105698, + "c5": 14.61950474777931, + "c6": 5.621709470445335, + "c7": -8.076367191913885 }, - "vertexSeeds": { - "c1": 6.688491665387248, - "c2": 6.694373430456188, - "c3": 6.6744508232920605, - "c4": 6.667813074318794, - "c5": 6.733704990932237, - "c6": 6.684200222643069, - "c7": 6.623893391425758 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997224, + "c3": 8.044382801664355, + "c4": 6.435506241331483, + "c5": 4.826629680998612, + "c6": 3.2177531206657415, + "c7": 1.6088765603328707 }, "rgb": [58, 15, 49] }, @@ -86136,23 +86136,23 @@ "year": 1729, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -5.739764454603048, - "c2": -16.202812426952747, - "c3": 35.402014505332076, - "c4": 15.290653936608713, - "c5": -2.7041984794445, - "c6": 34.44575174069064, - "c7": 28.871097269443382 + "points": { + "c1": 30.948981777355854, + "c2": -0.33572675126553264, + "c3": -24.859870009320975, + "c4": -30.47117878671716, + "c5": 28.945902655783385, + "c6": -8.869712712625727, + "c7": -4.4527869314568065 }, - "vertexSeeds": { - "c1": 5.211749313551449, - "c2": 5.4885956366108, - "c3": 5.84871386614087, - "c4": 5.597651401321509, - "c5": 5.360819214300228, - "c6": 5.394743717483982, - "c7": 5.678411941219761 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710124, + "c3": 7.304669440591771, + "c4": 5.843735552473416, + "c5": 4.382801664355062, + "c6": 2.921867776236708, + "c7": 1.460933888118354 }, "rgb": [86, 146, 138] }, @@ -86163,23 +86163,23 @@ "year": 1729, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -11.154540275999253, - "c2": -6.306347531847791, - "c3": 26.657920637288377, - "c4": -10.183992655494869, - "c5": 22.04367184524174, - "c6": -37.13572180684304, - "c7": 38.83836899013374 + "points": { + "c1": 40.0694540954398, + "c2": 37.80677486104303, + "c3": -12.09484411202397, + "c4": 30.528751530916587, + "c5": -7.237888101584666, + "c6": -20.714630401775597, + "c7": 41.36077284312483 }, - "vertexSeeds": { - "c1": 1.9231998766967777, - "c2": 2.005027736165104, - "c3": 1.8229128307038696, - "c4": 1.817418089987289, - "c5": 2.026904563607059, - "c6": 1.885506946547065, - "c7": 1.9282099876349763 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.968099861303744, + "c3": 2.4734165510864523, + "c4": 1.9787332408691634, + "c5": 1.484049930651872, + "c6": 0.9893666204345802, + "c7": 0.4946833102172916 }, "rgb": [238, 201, 159] }, @@ -86190,23 +86190,23 @@ "year": 1728, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -33.68445275069689, - "c2": -35.68525941802006, - "c3": 4.54611772965233, - "c4": -11.099204313965433, - "c5": -33.40595231613979, - "c6": 33.24614870175418, - "c7": 14.254573739516864 + "points": { + "c1": -11.414277804376113, + "c2": 14.741854258170811, + "c3": -7.29807495520323, + "c4": -31.613363351182358, + "c5": -31.264504097244846, + "c6": -29.42993110166595, + "c7": -27.7994329673026 }, - "vertexSeeds": { - "c1": 4.291284505316329, - "c2": 4.105779336779471, - "c3": 4.282884792519888, - "c4": 4.170985930464271, - "c5": 4.052130326320367, - "c6": 4.334705184793547, - "c7": 3.9962309745549045 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [222, 0, 59] }, @@ -86217,23 +86217,23 @@ "year": 1729, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -3.4693524877662583, - "c2": 34.340881140406054, - "c3": -6.306955558581578, - "c4": -32.345401232612076, - "c5": -7.744589590311762, - "c6": -41.13181297071172, - "c7": -4.811311645807514 + "points": { + "c1": -3.932087237141218, + "c2": 28.155568010405915, + "c3": 2.0352360330957424, + "c4": -39.5003847713748, + "c5": 8.699891713298413, + "c6": 2.4331272321826845, + "c7": 44.48076377810767 }, - "vertexSeeds": { - "c1": 1.0647584492654214, - "c2": 1.1517417144049615, - "c3": 1.0154765932358538, - "c4": 0.9781074517977686, - "c5": 1.0444046946953727, - "c6": 1.0955564771541213, - "c7": 1.028090585237699 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535371, + "c3": 1.4100785945446148, + "c4": 1.128062875635691, + "c5": 0.8460471567267686, + "c6": 0.5640314378178461, + "c7": 0.28201571890892246 }, "rgb": [77, 76, 132] }, @@ -86244,23 +86244,23 @@ "year": 1729, "resistanceReported": true, "duration": 32054400, - "curveSeeds": { - "c1": -8.510882615939437, - "c2": 22.09680226261871, - "c3": -37.18214508493186, - "c4": 44.944775743491576, - "c5": 13.212770132527204, - "c6": 0.7113215248849443, - "c7": 16.274140567962085 + "points": { + "c1": -30.76006521228034, + "c2": -9.64858122036938, + "c3": -19.75265477080273, + "c4": 0.9048985442178576, + "c5": -33.451176976977436, + "c6": -31.994797759626504, + "c7": 19.450868066230285 }, - "vertexSeeds": { - "c1": 5.940913514637957, - "c2": 6.672886444081537, - "c3": 5.786935958192272, - "c4": 6.351848923480283, - "c5": 6.937238318396519, - "c6": 5.742623855628576, - "c7": 4.16506306269543 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456309, + "c3": 10.032362459546926, + "c4": 8.02588996763754, + "c5": 6.019417475728156, + "c6": 4.01294498381877, + "c7": 2.0064724919093835 }, "rgb": [238, 201, 159] }, @@ -86271,23 +86271,23 @@ "year": 1729, "resistanceReported": false, "duration": 43718400, - "curveSeeds": { - "c1": 3.287413855742649, - "c2": -12.028754579014333, - "c3": -0.9719208282487557, - "c4": 11.180549953986223, - "c5": -25.844355931163264, - "c6": 20.546313248393552, - "c7": -19.992610657368402 + "points": { + "c1": 44.290552749412505, + "c2": -26.355816000345683, + "c3": 53.55625866244696, + "c4": 37.733108250780994, + "c5": 47.96358744514887, + "c6": -28.19413612907455, + "c7": 11.537760460628284 }, - "vertexSeeds": { - "c1": 0.5381953198930113, - "c2": 0.5031649785180231, - "c3": 0.49674728537253776, - "c4": 0.5674265953218061, - "c5": 0.574804388550783, - "c6": 0.5518818564323746, - "c7": 0.4762785657870546 + "offsets": { + "c1": 1.0032362459546926, + "c2": 0.8599167822468792, + "c3": 0.7165973185390663, + "c4": 0.5732778548312528, + "c5": 0.42995839112343986, + "c6": 0.2866389274156264, + "c7": 0.1433194637078129 }, "rgb": [238, 201, 159] }, @@ -86298,23 +86298,23 @@ "year": 1728, "resistanceReported": true, "duration": 21945600, - "curveSeeds": { - "c1": -32.27500299275687, - "c2": -4.420118793376517, - "c3": -24.984652458640202, - "c4": 0.4453618634615637, - "c5": -24.0640636997148, - "c6": -17.533292968482222, - "c7": 28.970878646703163 + "points": { + "c1": -30.59624065798767, + "c2": 34.533646611478545, + "c3": 15.156937745693739, + "c4": -8.143639989418187, + "c5": 10.693243212553291, + "c6": 4.898882448475284, + "c7": 30.89163653199887 }, - "vertexSeeds": { - "c1": 4.047042858280171, - "c2": 3.9672962195415273, - "c3": 4.046625826500665, - "c4": 4.052527725961507, - "c5": 3.93181232333784, - "c6": 3.937934685095315, - "c7": 3.9505241200969103 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038842, + "c4": 3.8834951456310782, + "c5": 2.9126213592232904, + "c6": 1.941747572815527, + "c7": 0.9708737864077635 }, "rgb": [86, 146, 138] }, @@ -86325,23 +86325,23 @@ "year": 1728, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -16.17805121629713, - "c2": -8.134225806208896, - "c3": -13.108428838378964, - "c4": -22.997442547395064, - "c5": 3.6524131202632795, - "c6": 19.114683679131375, - "c7": 9.395638416674572 + "points": { + "c1": 27.326359699255576, + "c2": 3.43506050833064, + "c3": 27.591235767720327, + "c4": 3.78028352646243, + "c5": 17.31408148215381, + "c6": 25.680070741685782, + "c7": 12.176135119952086 }, - "vertexSeeds": { - "c1": 6.952608190221611, - "c2": 7.326852528205309, - "c3": 7.354587471277856, - "c4": 7.170215692466482, - "c5": 7.224709814075878, - "c6": 7.711513633043078, - "c7": 7.084856474814705 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.246417013407308, + "c4": 7.39713361072585, + "c5": 5.547850208044375, + "c6": 3.6985668053629173, + "c7": 1.8492834026814586 }, "rgb": [222, 0, 59] }, @@ -86352,23 +86352,23 @@ "year": 1728, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -14.13131765705442, - "c2": 4.2810510327689855, - "c3": -14.965837220393173, - "c4": -4.346415115725215, - "c5": -19.034977642328037, - "c6": -16.71265356249763, - "c7": -15.016567835704379 + "points": { + "c1": 20.602318371774217, + "c2": -28.836728964957004, + "c3": 0.062124991380827055, + "c4": 29.15832399583944, + "c5": -10.375791801939009, + "c6": -29.21931194113712, + "c7": 28.341688021674877 }, - "vertexSeeds": { - "c1": 5.597107418728398, - "c2": 5.271088096765852, - "c3": 5.278951680088831, - "c4": 5.150577451973607, - "c5": 5.296916251303459, - "c6": 5.394031296779561, - "c7": 5.04612256025908 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872392, + "c6": 2.699953767914937, + "c7": 1.3499768839574684 }, "rgb": [238, 201, 159] }, @@ -86379,23 +86379,23 @@ "year": 1729, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -29.05952202286203, - "c2": -24.128663155175317, - "c3": -36.03246768028236, - "c4": 10.69011109326292, - "c5": -41.89664864181384, - "c6": 43.926999576113104, - "c7": 21.73340571763393 + "points": { + "c1": 1.5147726833640078, + "c2": -43.201741924545715, + "c3": -16.58600047040236, + "c4": -29.645735662910095, + "c5": 20.910312080705694, + "c6": 15.808163171033641, + "c7": 42.66926349752572 }, - "vertexSeeds": { - "c1": 11.674486019223197, - "c2": 12.17466816530464, - "c3": 11.899281761795097, - "c4": 11.8627310868439, - "c5": 11.709509457555553, - "c6": 12.000453794184407, - "c7": 12.470286361921623 + "offsets": { + "c1": 20.87378640776699, + "c2": 17.891816920943132, + "c3": 14.909847434119278, + "c4": 11.927877947295421, + "c5": 8.945908460471566, + "c6": 5.963938973647711, + "c7": 2.9819694868238553 }, "rgb": [58, 15, 49] }, @@ -86406,23 +86406,23 @@ "year": 1728, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 22.958375123817174, - "c2": -20.512782077062372, - "c3": -25.285146053844848, - "c4": 26.048201134134526, - "c5": -7.8279622678488145, - "c6": 27.35254486267664, - "c7": 30.43224723898216 + "points": { + "c1": 5.466329920067807, + "c2": -9.06284689371704, + "c3": 3.5283382167097628, + "c4": 24.486703209342743, + "c5": -25.49778064999156, + "c6": -27.901377511292537, + "c7": 33.11604345287715 }, - "vertexSeeds": { - "c1": 3.7720589057187044, - "c2": 3.788850349891729, - "c3": 3.737451724620517, - "c4": 3.9912543306718677, - "c5": 3.6215756884824057, - "c6": 3.594743751187851, - "c7": 3.8511020654240413 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366162, + "c3": 4.808136846971799, + "c4": 3.8465094775774413, + "c5": 2.8848821081830773, + "c6": 1.9232547387887207, + "c7": 0.9616273693943637 }, "rgb": [222, 0, 59] }, @@ -86433,23 +86433,23 @@ "year": 1728, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -4.975357705112373, - "c2": -6.635715449586105, - "c3": -1.301948358437663, - "c4": 6.259242227400421, - "c5": 17.739517096611905, - "c6": -6.250293913473964, - "c7": 25.26822686966902 + "points": { + "c1": 21.82900594145388, + "c2": -0.9200135554488753, + "c3": -21.82147894330674, + "c4": 2.562688435236538, + "c5": 8.123464901371626, + "c6": -22.335653128081812, + "c7": 17.1152772843975 }, - "vertexSeeds": { - "c1": 4.834016985343601, - "c2": 4.643961251633286, - "c3": 4.857813516169073, - "c4": 5.266004054845707, - "c5": 4.603431194703951, - "c6": 4.808130130214331, - "c7": 4.6530653190021845 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -86460,23 +86460,23 @@ "year": 1728, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -28.443462625162738, - "c2": -7.166517850460007, - "c3": 19.216667716617742, - "c4": -28.647222171302985, - "c5": -26.644592752364797, - "c6": 16.759603106665523, - "c7": 27.87111569166254 + "points": { + "c1": 1.1346357440535755, + "c2": 0.18033955557933723, + "c3": 15.77093633177899, + "c4": -24.068224660471508, + "c5": -22.363456981464893, + "c6": 8.531479576078262, + "c7": 7.5888747833486505 }, - "vertexSeeds": { - "c1": 5.563049762035181, - "c2": 5.444704348798484, - "c3": 4.984293038280915, - "c4": 4.999178243968383, - "c5": 5.138903930166451, - "c6": 4.8211516672914145, - "c7": 4.783179312828967 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267682, + "c3": 7.050392972723066, + "c4": 5.64031437817846, + "c5": 4.230235783633845, + "c6": 2.82015718908923, + "c7": 1.410078594544615 }, "rgb": [222, 0, 59] }, @@ -86487,23 +86487,23 @@ "year": 1728, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -22.939613166759514, - "c2": -7.451457663943469, - "c3": 31.112800911875695, - "c4": 22.33039837341714, - "c5": -11.554497321570029, - "c6": 5.184563696039497, - "c7": -15.580468847029724 + "points": { + "c1": 13.560132370274722, + "c2": 11.900621476794996, + "c3": 2.6879537214471085, + "c4": 35.39282871941606, + "c5": -11.846588056356588, + "c6": 6.78899304650615, + "c7": 17.068168363652177 }, - "vertexSeeds": { - "c1": 7.321120493487745, - "c2": 6.477087799404709, - "c3": 6.341957094698562, - "c4": 5.879279765937603, - "c5": 7.012025859922978, - "c6": 7.131583153442111, - "c7": 6.096796148494255 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203888, + "c3": 8.7378640776699, + "c4": 6.9902912621359246, + "c5": 5.242718446601939, + "c6": 3.4951456310679623, + "c7": 1.7475728155339767 }, "rgb": [238, 201, 159] }, @@ -86514,23 +86514,23 @@ "year": 1728, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -17.031925433275738, - "c2": -17.771844123498646, - "c3": -32.24114329564675, - "c4": 8.6118664121636, - "c5": -20.863188368707714, - "c6": 6.126825098283035, - "c7": -27.778774274465867 + "points": { + "c1": 10.357927062928269, + "c2": -34.3326688378212, + "c3": 11.035873956894427, + "c4": 26.241233262634324, + "c5": -16.971734350155593, + "c6": 22.950855594860847, + "c7": 20.78244346286128 }, - "vertexSeeds": { - "c1": 9.674117823016934, - "c2": 9.728510662101286, - "c3": 9.63957819659224, - "c4": 9.087921911002063, - "c5": 8.774536116585518, - "c6": 8.743532395192322, - "c7": 9.814383006986525 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513177, + "c3": 11.789181692094315, + "c4": 9.431345353675452, + "c5": 7.0735090152565885, + "c6": 4.715672676837726, + "c7": 2.357836338418863 }, "rgb": [58, 15, 49] }, @@ -86541,23 +86541,23 @@ "year": 1729, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -27.312513700476927, - "c2": 12.591405115671705, - "c3": -5.420013441312154, - "c4": -28.84839214823478, - "c5": -29.054574264166973, - "c6": -17.43816367909414, - "c7": -30.982804257430427 + "points": { + "c1": 19.7886658457138, + "c2": -20.234496750266736, + "c3": 6.663240548692876, + "c4": -28.973803770487358, + "c5": -18.424567242612024, + "c6": -21.207704178833115, + "c7": 18.210505158524562 }, - "vertexSeeds": { - "c1": 6.643697641130091, - "c2": 7.736480108284923, - "c3": 7.1070145648504095, - "c4": 6.949099378317021, - "c5": 7.823553215237251, - "c6": 6.436490798108549, - "c7": 7.351114076787971 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571425, + "c3": 9.523809523809526, + "c4": 7.619047619047618, + "c5": 5.714285714285717, + "c6": 3.809523809523809, + "c7": 1.9047619047618995 }, "rgb": [222, 0, 59] }, @@ -86568,23 +86568,23 @@ "year": 1728, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 10.863009603468452, - "c2": -12.693093378643573, - "c3": 5.833955057050215, - "c4": 6.18872656759331, - "c5": 18.817488848096286, - "c6": -3.250796595420031, - "c7": 5.700756230206498 + "points": { + "c1": 20.284549642825244, + "c2": -15.83503312819507, + "c3": -10.961121714430249, + "c4": -18.781545031270312, + "c5": 29.146718381574654, + "c6": 7.336694029986486, + "c7": 24.69513064542561 }, - "vertexSeeds": { - "c1": 6.18808266889896, - "c2": 6.331218685357674, - "c3": 6.731272758847724, - "c4": 5.58504637590054, - "c5": 5.766738931884405, - "c6": 6.118744848755079, - "c7": 6.516304447072682 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [86, 146, 138] }, @@ -86595,23 +86595,23 @@ "year": 1728, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 3.655593609880473, - "c2": 17.26464489494406, - "c3": 0.08863902681742886, - "c4": 17.320368878247404, - "c5": -4.981665478305825, - "c6": -9.128271608510437, - "c7": 7.9746656219089225 + "points": { + "c1": 22.6110076539027, + "c2": -20.296202008127878, + "c3": -9.238977110144205, + "c4": 7.487128336987798, + "c5": -23.058471820858045, + "c6": -11.162296297255086, + "c7": 4.372432201123662 }, - "vertexSeeds": { - "c1": 5.136404483959121, - "c2": 5.16037909371176, - "c3": 4.95832904816314, - "c4": 4.3251235289718055, - "c5": 4.9808388472175835, - "c6": 4.355770199180401, - "c7": 4.525142141849568 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -86622,23 +86622,23 @@ "year": 1729, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -4.527031045037944, - "c2": -4.807682414462146, - "c3": 19.81801512992625, - "c4": -18.782691380843083, - "c5": -3.001566688191854, - "c6": -6.581600515142764, - "c7": -7.293179719073411 + "points": { + "c1": -27.31855208546189, + "c2": 10.070724813889662, + "c3": 14.037021615271058, + "c4": 21.34172273199116, + "c5": -2.3413576265627256, + "c6": 27.92873288874423, + "c7": 8.079500496175484 }, - "vertexSeeds": { - "c1": 4.988938622497363, - "c2": 5.216103335140515, - "c3": 5.156690066803006, - "c4": 4.749457596397005, - "c5": 4.8887382640583015, - "c6": 4.628326092408832, - "c7": 5.26536996146331 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -86649,23 +86649,23 @@ "year": 1729, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -19.440797266481347, - "c2": -3.528583676061814, - "c3": -41.977670309112334, - "c4": 36.59610644594292, - "c5": -14.528533933090198, - "c6": 21.662996508519946, - "c7": -10.291954353056653 + "points": { + "c1": 8.103973131155207, + "c2": -36.36684501536929, + "c3": 42.6448573443821, + "c4": 15.336723758371647, + "c5": 7.178763758257041, + "c6": -3.023729260852754, + "c7": 24.655212049997843 }, - "vertexSeeds": { - "c1": 5.176384043243895, - "c2": 4.903824625568428, - "c3": 4.955793768366232, - "c4": 5.0455957358710775, - "c5": 4.6515250898646485, - "c6": 4.652277267441027, - "c7": 5.027283815154946 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -86676,23 +86676,23 @@ "year": 1728, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 22.991207844357724, - "c2": -14.514316214578466, - "c3": 27.541636045750444, - "c4": 20.902419615975866, - "c5": 20.961179305873664, - "c6": -26.57241042582563, - "c7": -14.978063481397736 + "points": { + "c1": 9.386125470753747, + "c2": 18.89895205600319, + "c3": 6.116011840114993, + "c4": -12.469571655662111, + "c5": 11.191398339150489, + "c6": 12.463691696246038, + "c7": -1.084541400752368 }, - "vertexSeeds": { - "c1": 6.978574718431038, - "c2": 6.5733218314503254, - "c3": 6.388215104974343, - "c4": 6.865407033738641, - "c5": 6.542352089376666, - "c6": 7.359541152879729, - "c7": 7.342204242790302 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407306, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814633 }, "rgb": [77, 76, 132] }, @@ -86703,23 +86703,23 @@ "year": 1729, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -17.781589440429922, - "c2": 30.233111199630144, - "c3": 27.73457124727083, - "c4": 5.407163954309986, - "c5": 6.906216579235938, - "c6": 11.48514500443823, - "c7": 21.08398361727108 + "points": { + "c1": -31.493720924039266, + "c2": -25.48001152656549, + "c3": 17.85462078796968, + "c4": -1.3847358353053991, + "c5": 10.334171749162088, + "c6": 0.04268589424351177, + "c7": 21.490969652071783 }, - "vertexSeeds": { - "c1": 7.357251158815981, - "c2": 8.388722658821228, - "c3": 8.462445270292148, - "c4": 7.868274560774882, - "c5": 8.055160025869583, - "c6": 7.625700138867127, - "c7": 7.066806947384194 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059637, + "c3": 10.379103097549695, + "c4": 8.303282478039762, + "c5": 6.227461858529819, + "c6": 4.151641239019876, + "c7": 2.0758206195099427 }, "rgb": [222, 0, 59] }, @@ -86730,23 +86730,23 @@ "year": 1729, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -35.78991428599107, - "c2": 5.665568403603423, - "c3": -18.757088870988756, - "c4": -10.385604839227348, - "c5": -34.00169357327486, - "c6": 37.87518173216443, - "c7": -32.67078911646426 + "points": { + "c1": -26.944175936775068, + "c2": 34.514003760223424, + "c3": -19.25390940990674, + "c4": -35.64369997616319, + "c5": -18.26938619052207, + "c6": 33.063807443330326, + "c7": 10.001047867848442 }, - "vertexSeeds": { - "c1": 6.049833710850903, - "c2": 6.445937215842789, - "c3": 5.9958861865053015, - "c4": 6.2216268384624716, - "c5": 6.331297808548731, - "c6": 6.158162936797431, - "c7": 6.3089992755293665 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795655, + "c4": 6.23208506703652, + "c5": 4.674063800277396, + "c6": 3.11604253351826, + "c7": 1.5580212667591244 }, "rgb": [86, 146, 138] }, @@ -86757,23 +86757,23 @@ "year": 1729, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -23.772148333846275, - "c2": 8.7614472631928, - "c3": 35.14007819155451, - "c4": 18.965717123779505, - "c5": -12.176381578036278, - "c6": 27.350761686584626, - "c7": 34.16937941921236 + "points": { + "c1": -17.50068463731632, + "c2": 30.53407077756519, + "c3": -35.84893220747319, + "c4": -21.495712104898516, + "c5": -36.42919870176188, + "c6": -3.0471750360451892, + "c7": 28.8180488449063 }, - "vertexSeeds": { - "c1": 8.587731741003703, - "c2": 9.824364696174106, - "c3": 9.682987139067217, - "c4": 8.582964540425971, - "c5": 9.659969097214947, - "c6": 9.292912305452028, - "c7": 9.67846302848693 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392511, + "c3": 11.719833564493761, + "c4": 9.375866851595012, + "c5": 7.031900138696261, + "c6": 4.687933425797511, + "c7": 2.3439667128987605 }, "rgb": [86, 146, 138] }, @@ -86784,23 +86784,23 @@ "year": 1729, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 20.364416161018706, - "c2": -4.144169764822969, - "c3": 1.7326411311973438, - "c4": 20.53405388993698, - "c5": -27.023881292318556, - "c6": 18.035108861589027, - "c7": -30.255871676593916 + "points": { + "c1": -5.206328740000874, + "c2": -0.24540641511154604, + "c3": 17.20005851978099, + "c4": 10.462175822298946, + "c5": -31.67834586908979, + "c6": -23.74280722613807, + "c7": -10.845628863406812 }, - "vertexSeeds": { - "c1": 8.629065738590585, - "c2": 8.760943314721791, - "c3": 8.766313671906945, - "c4": 8.721030453191032, - "c5": 8.952385623526954, - "c6": 8.964587716056286, - "c7": 8.635825433514443 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984757, + "c3": 10.910772075820615, + "c4": 8.728617660656505, + "c5": 6.546463245492363, + "c6": 4.364308830328253, + "c7": 2.1821544151641104 }, "rgb": [86, 146, 138] }, @@ -86811,23 +86811,23 @@ "year": 1728, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 0.9169406543846925, - "c2": 0.4685050102897321, - "c3": 25.381683169100132, - "c4": -24.202111219254196, - "c5": -5.339460625405874, - "c6": -15.855401670609325, - "c7": -22.035920537972608 + "points": { + "c1": -8.62024656723246, + "c2": 13.489279865684107, + "c3": -19.519390113742695, + "c4": -2.3910160757539245, + "c5": 2.2157460666058455, + "c6": -9.9635725001732, + "c7": 18.500240879802238 }, - "vertexSeeds": { - "c1": 5.6037635986570935, - "c2": 5.73723019447203, - "c3": 5.491007734788467, - "c4": 5.839924080135006, - "c5": 5.225487167752587, - "c6": 6.052697276042079, - "c7": 5.211517570226227 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710128, + "c3": 7.30466944059177, + "c4": 5.843735552473419, + "c5": 4.3828016643550605, + "c6": 2.9218677762367093, + "c7": 1.4609338881183547 }, "rgb": [58, 15, 49] }, @@ -86838,23 +86838,23 @@ "year": 1729, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 19.33421917340773, - "c2": -30.157178329068167, - "c3": -24.25188132466455, - "c4": -9.753862110340798, - "c5": 30.548764233963624, - "c6": -13.010547413086751, - "c7": 26.72705362726849 + "points": { + "c1": 15.770426529483686, + "c2": 24.973487985347568, + "c3": 25.187538873855033, + "c4": -3.7974796483703557, + "c5": 23.867881864289593, + "c6": -18.351342971437308, + "c7": 18.816743297967733 }, - "vertexSeeds": { - "c1": 2.811624187287491, - "c2": 2.5998457056508024, - "c3": 2.62046464320305, - "c4": 2.52924533493395, - "c5": 2.501229513362564, - "c6": 2.3966723476541856, - "c7": 2.497762725088834 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.3749422098936646, + "c4": 2.699953767914935, + "c5": 2.0249653259362006, + "c6": 1.3499768839574662, + "c7": 0.6749884419787344 }, "rgb": [77, 76, 132] }, @@ -86865,23 +86865,23 @@ "year": 1728, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -20.9330810279499, - "c2": -0.6918644603168076, - "c3": -16.470355182737354, - "c4": -21.85632867464696, - "c5": -13.029974260122518, - "c6": -10.807529064719368, - "c7": 12.446284329576415 + "points": { + "c1": 3.9200382811339836, + "c2": -15.77145235672175, + "c3": 13.62940356070149, + "c4": -26.7705382987666, + "c5": -14.564475898659374, + "c6": 14.279525496707116, + "c7": -3.3710497244598336 }, - "vertexSeeds": { - "c1": 7.284752377854172, - "c2": 6.72860846950483, - "c3": 6.306009006135162, - "c4": 6.443194164301798, - "c5": 7.011515709784787, - "c6": 6.919687599289704, - "c7": 7.0382514445401405 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404994, + "c3": 8.853444290337498, + "c4": 7.082755432269989, + "c5": 5.312066574202492, + "c6": 3.5413777161349946, + "c7": 1.7706888580674973 }, "rgb": [222, 0, 59] }, @@ -86892,23 +86892,23 @@ "year": 1728, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -17.65097944632919, - "c2": 0.3390971649379324, - "c3": 3.6640536968312034, - "c4": -1.8278081548560117, - "c5": 7.031747307857966, - "c6": -1.7114360804486601, - "c7": 23.222773972077075 + "points": { + "c1": -22.72062105627569, + "c2": 4.519657836841276, + "c3": 15.528952988259089, + "c4": -17.53550002104713, + "c5": 8.337761619581958, + "c6": 22.877793884891897, + "c7": 8.218204029293208 }, - "vertexSeeds": { - "c1": 6.151187069685345, - "c2": 6.2301337770009555, - "c3": 5.1202894742817096, - "c4": 5.8125356599397, - "c5": 6.049163231277321, - "c6": 5.878662841245245, - "c7": 5.205071084208121 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072123, + "c3": 7.512713823393437, + "c4": 6.010171058714743, + "c5": 4.507628294036057, + "c6": 3.0050855293573715, + "c7": 1.5025427646786857 }, "rgb": [77, 76, 132] }, @@ -86919,23 +86919,23 @@ "year": 1729, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -5.887504906161293, - "c2": 10.485192751075466, - "c3": 27.968038964984792, - "c4": -5.844622202519311, - "c5": 25.25555276038508, - "c6": -22.827185161874255, - "c7": -24.31346143931364 + "points": { + "c1": 5.165205595457806, + "c2": -9.547488479869706, + "c3": 13.782286782768246, + "c4": 11.885397756276845, + "c5": 2.906676336858162, + "c6": 6.3128232291347075, + "c7": -15.654069789219985 }, - "vertexSeeds": { - "c1": 5.5116397061739235, - "c2": 4.660603258072556, - "c3": 4.762360458184363, - "c4": 5.2993353118658195, - "c5": 5.126524393072119, - "c6": 4.735366131766728, - "c7": 5.224022250692186 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664359, + "c3": 6.703652334720293, + "c4": 5.362921867776238, + "c5": 4.022191400832171, + "c6": 2.681460933888116, + "c7": 1.3407304669440607 }, "rgb": [238, 201, 159] }, @@ -86946,23 +86946,23 @@ "year": 1729, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 31.26975492626675, - "c2": 23.463516915454612, - "c3": -23.947321900104107, - "c4": 3.1403995408661274, - "c5": -31.498502182049908, - "c6": 12.889910477786025, - "c7": 4.984058334757648 + "points": { + "c1": 28.141078802848348, + "c2": -19.486950512374392, + "c3": -21.77488934281555, + "c4": -15.680298097704053, + "c5": -3.2295614186742263, + "c6": -28.842315598200226, + "c7": -24.28484703880533 }, - "vertexSeeds": { - "c1": 4.793913222576782, - "c2": 5.730192731599855, - "c3": 4.923441330510226, - "c4": 4.942738629872984, - "c5": 5.735283756583834, - "c6": 5.084323055509697, - "c7": 5.1808661759762105 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945908, + "c3": 6.865464632454924, + "c4": 5.492371705963939, + "c5": 4.119278779472954, + "c6": 2.7461858529819696, + "c7": 1.3730929264909848 }, "rgb": [86, 146, 138] }, @@ -86973,23 +86973,23 @@ "year": 1729, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 13.726788495033219, - "c2": -16.476126726496176, - "c3": -0.16176277550756168, - "c4": -28.287267940017838, - "c5": -24.93317987404763, - "c6": 22.23538304373168, - "c7": 20.503132412348386 + "points": { + "c1": -19.223349871153808, + "c2": -32.822174656805004, + "c3": -26.096235684287407, + "c4": 12.774848365670294, + "c5": -18.826599718677578, + "c6": 25.533290781511063, + "c7": -13.812119049491667 }, - "vertexSeeds": { - "c1": 6.575524006259617, - "c2": 8.206850556005124, - "c3": 8.272720563580934, - "c4": 6.422940761513566, - "c5": 7.379571651825151, - "c6": 8.299300605121271, - "c7": 7.537948162130357 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496536, + "c3": 10.055478502080442, + "c4": 8.044382801664359, + "c5": 6.0332871012482645, + "c6": 4.022191400832179, + "c7": 2.0110957004160857 }, "rgb": [58, 15, 49] }, @@ -87000,23 +87000,23 @@ "year": 1729, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -17.496720998644342, - "c2": -10.216485088477288, - "c3": -12.7624916815773, - "c4": 1.4261518497270842, - "c5": -24.489505443698643, - "c6": -2.130474485479997, - "c7": -24.49401064857929 + "points": { + "c1": 1.2999725767773498, + "c2": -1.3065416856650636, + "c3": 10.094778331833986, + "c4": 18.142412582084603, + "c5": -24.108640836788588, + "c6": -26.41795879941241, + "c7": -8.003020824625978 }, - "vertexSeeds": { - "c1": 5.702520161844183, - "c2": 4.90210961451677, - "c3": 5.861723162820676, - "c4": 5.086649009242916, - "c5": 5.003012524747678, - "c6": 5.762658768065226, - "c7": 5.695023510546917 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924182, + "c4": 5.751271382339343, + "c5": 4.313453536754513, + "c6": 2.875635691169674, + "c7": 1.4378178455848347 }, "rgb": [238, 201, 159] }, @@ -87027,23 +87027,23 @@ "year": 1728, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 7.951487073105216, - "c2": 3.229103332475084, - "c3": -18.403260094197766, - "c4": -1.6488153244720607, - "c5": -7.341449061373581, - "c6": -23.820939811458338, - "c7": -4.25076004314991 + "points": { + "c1": -10.498254512610202, + "c2": 28.532240609039494, + "c3": -6.41841712979015, + "c4": 1.6945773568705071, + "c5": -3.9792885161702785, + "c6": 5.95165178570522, + "c7": -25.75718084617639 }, - "vertexSeeds": { - "c1": 0.7278104502107334, - "c2": 0.7080893952983536, - "c3": 0.7713008947150499, - "c4": 0.7685039056678629, - "c5": 0.7637317488959873, - "c6": 0.7538281683681536, - "c7": 0.7365936791710452 + "offsets": { + "c1": 1.3268608414239482, + "c2": 1.137309292649099, + "c3": 0.9477577438742477, + "c4": 0.7582061950993987, + "c5": 0.5686546463245495, + "c6": 0.3791030975497005, + "c7": 0.18955154877484906 }, "rgb": [238, 201, 159] }, @@ -87054,23 +87054,23 @@ "year": 1729, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -28.485211651854144, - "c2": -33.00845241180373, - "c3": -27.85224791440739, - "c4": -9.219876538742508, - "c5": -7.0733559526919905, - "c6": -6.823214536178135, - "c7": 32.60893026012296 + "points": { + "c1": 8.037440093200118, + "c2": 31.377452458573813, + "c3": 27.746239813003143, + "c4": -6.997536666118073, + "c5": -32.11484037910033, + "c6": -36.51835944387528, + "c7": -33.48159422660751 }, - "vertexSeeds": { - "c1": 10.551034750645758, - "c2": 10.665414692899445, - "c3": 11.500389297201124, - "c4": 10.409683019598168, - "c5": 10.846731633603031, - "c6": 11.144819925446303, - "c7": 10.428668768066299 + "offsets": { + "c1": 19.48220064724919, + "c2": 16.699029126213595, + "c3": 13.915857605178006, + "c4": 11.132686084142392, + "c5": 8.349514563106798, + "c6": 5.566343042071207, + "c7": 2.7831715210355923 }, "rgb": [77, 76, 132] }, @@ -87081,23 +87081,23 @@ "year": 1729, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 3.5417295598597534, - "c2": -23.178473871377694, - "c3": -25.217188341930278, - "c4": 2.298599335518258, - "c5": 27.54271173442502, - "c6": -26.117542566389535, - "c7": -19.138861089396418 + "points": { + "c1": -3.9695402185099056, + "c2": 5.736181635190633, + "c3": 10.358717008472404, + "c4": -18.876142901287885, + "c5": 10.557985796605024, + "c6": -23.30124198390557, + "c7": -3.8673716904461877 }, - "vertexSeeds": { - "c1": 3.1508219134981776, - "c2": 2.848877182129491, - "c3": 2.8992318135867, - "c4": 3.447802759393515, - "c5": 3.4089990219270776, - "c6": 2.9845596351064416, - "c7": 3.2990394322612664 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199722, + "c3": 4.137771613499769, + "c4": 3.3102172907998146, + "c5": 2.482662968099861, + "c6": 1.6551086453999073, + "c7": 0.8275543226999537 }, "rgb": [86, 146, 138] }, @@ -87108,23 +87108,23 @@ "year": 1729, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -8.787962241197501, - "c2": 27.59014865207695, - "c3": 23.777753037405464, - "c4": 8.042678817839455, - "c5": 17.442277578182047, - "c6": -29.340340790938303, - "c7": -24.03464326289938 + "points": { + "c1": -12.059986205679305, + "c2": -24.27914522225305, + "c3": 3.055313483125129, + "c4": 12.11176302709858, + "c5": -20.758881466454085, + "c6": 21.941954629561504, + "c7": 27.64882235975617 }, - "vertexSeeds": { - "c1": 4.441724642124062, - "c2": 4.434854896507689, - "c3": 4.860179406917253, - "c4": 4.960308695143247, - "c5": 4.95159050929546, - "c6": 4.773171261867235, - "c7": 4.3150261612558625 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -87135,23 +87135,23 @@ "year": 1729, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -28.17073828718429, - "c2": 19.87850314167985, - "c3": -18.436207031441235, - "c4": 16.776977837414982, - "c5": -11.215164799991111, - "c6": -9.441278032691361, - "c7": 17.543123727939253 + "points": { + "c1": 22.484427748700213, + "c2": 32.463139545999724, + "c3": 26.065935123233103, + "c4": 9.599899887451656, + "c5": 5.486505088816287, + "c6": -26.27879829677578, + "c7": 12.544871663586612 }, - "vertexSeeds": { - "c1": 5.3988392486607735, - "c2": 5.926723591560584, - "c3": 5.838960100932414, - "c4": 6.062937355325191, - "c5": 5.999884739734796, - "c6": 6.055970932745007, - "c7": 5.847224637239529 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750343, + "c3": 7.327785483125295, + "c4": 5.862228386500234, + "c5": 4.396671289875171, + "c6": 2.9311141932501235, + "c7": 1.4655570966250617 }, "rgb": [222, 0, 59] }, @@ -87162,23 +87162,23 @@ "year": 1729, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -14.709615127917374, - "c2": 13.643301322785515, - "c3": 6.8247149335514585, - "c4": 13.639524059460758, - "c5": 19.925514687939806, - "c6": -4.398218465067625, - "c7": 6.704002882373107 + "points": { + "c1": -4.679595556899724, + "c2": -24.063776245162973, + "c3": 14.086076692888685, + "c4": -5.849900214230068, + "c5": -22.898681467582605, + "c6": -6.1025106949622305, + "c7": 9.770378579628268 }, - "vertexSeeds": { - "c1": 5.250623703199399, - "c2": 4.744207999177689, - "c3": 4.671972104322595, - "c4": 4.618184914409829, - "c5": 5.25029422956957, - "c6": 4.585182399293005, - "c7": 5.128577026149542 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -87189,23 +87189,23 @@ "year": 1729, "resistanceReported": true, "duration": 23500800, - "curveSeeds": { - "c1": 32.080920477398436, - "c2": -32.20576241786195, - "c3": -3.366780354456516, - "c4": -30.462175090656856, - "c5": -22.64163662306811, - "c6": 10.538687388993935, - "c7": -9.070709375306379 + "points": { + "c1": -34.25422443328446, + "c2": 28.278856464831705, + "c3": 30.297296937338956, + "c4": 33.13148367093491, + "c5": 5.794120698743363, + "c6": 29.551745795385912, + "c7": 14.678609816711798 }, - "vertexSeeds": { - "c1": 7.905081419026332, - "c2": 7.862127320935701, - "c3": 8.171023073484255, - "c4": 7.78493641616251, - "c5": 7.800487254694982, - "c6": 8.018474170696345, - "c7": 7.904725052485526 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.56588072122053, + "c3": 10.47156726768378, + "c4": 8.37725381414701, + "c5": 6.282940360610257, + "c6": 4.188626907073505, + "c7": 2.0943134535367527 }, "rgb": [86, 146, 138] }, @@ -87216,23 +87216,23 @@ "year": 1729, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 6.8325772723350084, - "c2": -9.895100162605196, - "c3": -0.48883550105119156, - "c4": 25.982325602670798, - "c5": -12.428338241930298, - "c6": -12.297005176660221, - "c7": 25.2588317273432 + "points": { + "c1": -13.315315651278144, + "c2": 14.668825270241207, + "c3": -13.931470960459954, + "c4": 23.006441801050066, + "c5": -29.028356155779328, + "c6": -30.11597286294354, + "c7": 31.599564566316353 }, - "vertexSeeds": { - "c1": 4.103597990974209, - "c2": 4.0975295930544435, - "c3": 4.4888101268629415, - "c4": 4.554627201675476, - "c5": 4.461254045838282, - "c6": 3.7774889993537877, - "c7": 4.58505538648618 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693482, + "c3": 5.570966250577903, + "c4": 4.456773000462324, + "c5": 3.3425797503467436, + "c6": 2.228386500231159, + "c7": 1.1141932501155842 }, "rgb": [86, 146, 138] }, @@ -87243,23 +87243,23 @@ "year": 1729, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 6.134249841492917, - "c2": 7.323611779485979, - "c3": -30.164803134252416, - "c4": 32.19202314008173, - "c5": -12.358865568599889, - "c6": -0.3927509973452956, - "c7": -6.923857528995683 + "points": { + "c1": -32.5902843015566, + "c2": -28.029277678179234, + "c3": 15.380600793275505, + "c4": -32.173980740269805, + "c5": -32.73628879984958, + "c6": 13.33601346070089, + "c7": 29.411573991782504 }, - "vertexSeeds": { - "c1": 9.310896382980264, - "c2": 9.217124638901804, - "c3": 8.70131011636635, - "c4": 9.143382463358673, - "c5": 9.393872469658687, - "c6": 8.726231848137184, - "c7": 8.713761485124046 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.78640776699029, + "c3": 11.488673139158577, + "c4": 9.190938511326861, + "c5": 6.893203883495145, + "c6": 4.5954692556634305, + "c7": 2.2977346278317152 }, "rgb": [58, 15, 49] }, @@ -87270,23 +87270,23 @@ "year": 1729, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -16.125254954966152, - "c2": -35.06412843341363, - "c3": 18.338658635749262, - "c4": -6.797288453865541, - "c5": 24.830740764478286, - "c6": -30.724515948295863, - "c7": -4.2518378012818445 + "points": { + "c1": 13.687891756125744, + "c2": -37.30735539038914, + "c3": -6.656390631439731, + "c4": -33.60364438352187, + "c5": -18.448246313346772, + "c6": 10.164192774822496, + "c7": -33.724383093505665 }, - "vertexSeeds": { - "c1": 4.284327523873844, - "c2": 4.320468649118379, - "c3": 4.265553973682575, - "c4": 4.304339087511293, - "c5": 4.266872442909156, - "c6": 4.328651693863192, - "c7": 4.304767846379703 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009697, + "c3": 5.177993527508108, + "c4": 4.142394822006478, + "c5": 3.1067961165048485, + "c6": 2.0711974110032183, + "c7": 1.03559870550163 }, "rgb": [77, 76, 132] }, @@ -87297,23 +87297,23 @@ "year": 1729, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -2.345047376252424, - "c2": -21.83058334274849, - "c3": 7.540675090830991, - "c4": 19.011565375956568, - "c5": -22.5485848386848, - "c6": -16.443305264073146, - "c7": 24.433112575548723 + "points": { + "c1": -27.368081812600607, + "c2": 0.4605222822353383, + "c3": -16.07240583994583, + "c4": 26.27924489026393, + "c5": 13.391428209511187, + "c6": 15.067432820628387, + "c7": 21.13005923552284 }, - "vertexSeeds": { - "c1": 6.152567300808098, - "c2": 5.654919814219601, - "c3": 6.356731793903899, - "c4": 5.665931615917485, - "c5": 5.888283160285603, - "c6": 5.662188559291122, - "c7": 6.384794115891084 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951457, + "c3": 7.766990291262134, + "c4": 6.213592233009712, + "c5": 4.660194174757278, + "c6": 3.106796116504856, + "c7": 1.553398058252435 }, "rgb": [238, 201, 159] }, @@ -87324,23 +87324,23 @@ "year": 1729, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -16.817607876897476, - "c2": -14.928141029575603, - "c3": -4.184675638839188, - "c4": -25.553908439360654, - "c5": -32.52630248977981, - "c6": -17.93130704458651, - "c7": 8.897220663500505 + "points": { + "c1": -16.7210578284661, + "c2": -15.198409651566287, + "c3": 12.349216470157614, + "c4": 3.338512114181576, + "c5": 9.85952623118532, + "c6": 3.506000047426298, + "c7": -30.855995218899885 }, - "vertexSeeds": { - "c1": 6.473502410639448, - "c2": 6.479528493594539, - "c3": 6.377542871367703, - "c4": 7.534040060249553, - "c5": 6.620849785964734, - "c6": 6.519448218429851, - "c7": 6.397212382392765 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.98474341192788, + "c3": 9.153952843273235, + "c4": 7.32316227461859, + "c5": 5.4923717059639445, + "c6": 3.6615811373093003, + "c7": 1.8307905686546555 }, "rgb": [238, 201, 159] }, @@ -87351,23 +87351,23 @@ "year": 1729, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -9.06729791921148, - "c2": 23.54835886834053, - "c3": -8.942251283704643, - "c4": -23.375868055308395, - "c5": 6.952952596846167, - "c6": -19.067080443538806, - "c7": -5.553315670323347 + "points": { + "c1": -14.134248215955093, + "c2": 0.44214917710336366, + "c3": 20.081609834474946, + "c4": 19.30608714181208, + "c5": 20.75136719290647, + "c6": -9.354126533492781, + "c7": 5.364406454826074 }, - "vertexSeeds": { - "c1": 7.117035168204795, - "c2": 6.1093716365127495, - "c3": 7.020642647809606, - "c4": 7.059141938221212, - "c5": 6.83799267577089, - "c6": 6.2625140297360575, - "c7": 6.090908010253646 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [238, 201, 159] }, @@ -87378,23 +87378,23 @@ "year": 1729, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -33.07695207295843, - "c2": 32.505976779150814, - "c3": -36.748587700232484, - "c4": 31.2101706800928, - "c5": -7.7971761548547995, - "c6": -12.000627755327624, - "c7": -28.492793987258473 + "points": { + "c1": 24.493960944349332, + "c2": 11.196409520917179, + "c3": 14.225913326872309, + "c4": -14.926535579538758, + "c5": 26.917158343369152, + "c6": -31.94629661737, + "c7": -15.015850319432381 }, - "vertexSeeds": { - "c1": 8.697768407171086, - "c2": 7.079456448758836, - "c3": 7.764442318347328, - "c4": 7.16366475157322, - "c5": 7.071137537466382, - "c6": 8.433252486906262, - "c7": 7.296336880837094 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059637, + "c3": 10.379103097549695, + "c4": 8.303282478039762, + "c5": 6.227461858529819, + "c6": 4.151641239019876, + "c7": 2.0758206195099427 }, "rgb": [77, 76, 132] }, @@ -87405,23 +87405,23 @@ "year": 1728, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 9.439924501906845, - "c2": -15.230460207751838, - "c3": 23.040467612496414, - "c4": 19.186388417644608, - "c5": -16.8572968495976, - "c6": -6.989441465183752, - "c7": 12.442549209727062 + "points": { + "c1": 14.41722758048251, + "c2": -17.567687365842914, + "c3": 20.43943842547, + "c4": -14.070347341254955, + "c5": -11.179848584778954, + "c6": -12.957386099107433, + "c7": 6.435845518223836 }, - "vertexSeeds": { - "c1": 4.417818940899844, - "c2": 5.308514276221437, - "c3": 5.43754080032612, - "c4": 4.904523309564531, - "c5": 4.590033286689101, - "c6": 5.295641409030982, - "c7": 5.402926505508384 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302358, + "c3": 6.4956079519186325, + "c4": 5.196486361534905, + "c5": 3.897364771151179, + "c6": 2.5982431807674526, + "c7": 1.2991215903837263 }, "rgb": [77, 76, 132] }, @@ -87432,23 +87432,23 @@ "year": 1729, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -23.369999989702297, - "c2": -12.040973817088375, - "c3": 26.182519103722825, - "c4": 10.52861148529405, - "c5": 6.0561134056844494, - "c6": -24.029811310817937, - "c7": -2.8015155478200207 + "points": { + "c1": -10.49297637878691, + "c2": -0.9403462539083236, + "c3": -17.44098484235404, + "c4": 15.384360705599292, + "c5": -5.821673414324096, + "c6": -4.384214878604148, + "c7": -10.589221450894048 }, - "vertexSeeds": { - "c1": 4.567962106176234, - "c2": 5.115426702111221, - "c3": 5.1160507168157485, - "c4": 5.243169356852263, - "c5": 5.258942296558641, - "c6": 4.457874248357229, - "c7": 4.895684820798843 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061029, + "c3": 6.35691169671752, + "c4": 5.0855293573740195, + "c5": 3.8141470180305146, + "c6": 2.5427646786870097, + "c7": 1.2713823393435049 }, "rgb": [222, 0, 59] }, @@ -87459,23 +87459,23 @@ "year": 1729, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 8.600814771494662, - "c2": 4.124812593217463, - "c3": 30.811300200763554, - "c4": 13.671925996600756, - "c5": -32.67959525198134, - "c6": 31.91939696547827, - "c7": -7.368089672269942 + "points": { + "c1": 28.024302537487543, + "c2": -37.31430752396327, + "c3": 34.54637347271532, + "c4": 36.76868948019731, + "c5": 38.69925938195263, + "c6": -10.7447493573918, + "c7": 16.150168455051116 }, - "vertexSeeds": { - "c1": 5.540863346895654, - "c2": 6.031626318381502, - "c3": 6.165631717538013, - "c4": 5.731202143192281, - "c5": 5.814010914440042, - "c6": 5.818092555315277, - "c7": 5.955681066734168 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.93203883495145, + "c3": 7.443365695792887, + "c4": 5.954692556634306, + "c5": 4.466019417475725, + "c6": 2.977346278317145, + "c7": 1.4886731391585808 }, "rgb": [222, 0, 59] }, @@ -87486,23 +87486,23 @@ "year": 1729, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -9.883135510918617, - "c2": 19.550929338280362, - "c3": -13.647862413107356, - "c4": 21.970686808244906, - "c5": 20.5192371835129, - "c6": -14.20125293157661, - "c7": 11.180889742303371 + "points": { + "c1": 4.866602700149578, + "c2": 18.717410109096583, + "c3": 18.44949112777659, + "c4": -7.825912752018361, + "c5": 1.656437916084478, + "c6": -10.057519882964272, + "c7": -19.966716255561245 }, - "vertexSeeds": { - "c1": 4.159792834181826, - "c2": 3.869535789085877, - "c3": 3.816869028529722, - "c4": 3.957859918960526, - "c5": 4.097317377870063, - "c6": 4.584899623416998, - "c7": 3.983926535881107 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.7128987517337055, + "c3": 5.594082293111418, + "c4": 4.475265834489137, + "c5": 3.35644937586685, + "c6": 2.2376329172445684, + "c7": 1.1188164586222864 }, "rgb": [238, 201, 159] }, @@ -87513,23 +87513,23 @@ "year": 1729, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -16.994096018229843, - "c2": -26.67987887846194, - "c3": -30.434274026346234, - "c4": 16.32669133809985, - "c5": 14.163695333084, - "c6": -24.146434012806463, - "c7": -27.303423483105426 + "points": { + "c1": -9.259373481466877, + "c2": -31.084049887999786, + "c3": -18.89611203137697, + "c4": -18.194885272283557, + "c5": 10.282599116557869, + "c6": -2.9322205165249215, + "c7": 13.924576556666345 }, - "vertexSeeds": { - "c1": 13.559730193735609, - "c2": 13.29917250590175, - "c3": 13.20629292693826, - "c4": 13.255246592406024, - "c5": 13.494050509510439, - "c6": 13.186986839874603, - "c7": 13.213494962993664 + "offsets": { + "c1": 22.944983818770226, + "c2": 19.667128987517327, + "c3": 16.38927415626442, + "c4": 13.111419325011521, + "c5": 9.83356449375862, + "c6": 6.5557096625058024, + "c7": 3.2778548312529012 }, "rgb": [222, 0, 59] }, @@ -87540,23 +87540,23 @@ "year": 1729, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -11.97733428330828, - "c2": -19.343491581837448, - "c3": 1.20081951589842, - "c4": -8.343942659145656, - "c5": 12.826901696267978, - "c6": 9.575103402591711, - "c7": 13.500089972147283 + "points": { + "c1": -10.696058942119576, + "c2": -10.488352823171613, + "c3": -7.444882441052165, + "c4": 18.493025612457355, + "c5": 8.980666833827623, + "c6": 22.383837525126996, + "c7": 4.784245985020679 }, - "vertexSeeds": { - "c1": 6.60820980516468, - "c2": 6.450108384021293, - "c3": 6.302493336415139, - "c4": 5.874680045136256, - "c5": 6.648716682220238, - "c6": 6.972865033066197, - "c7": 7.022126341127553 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203888, + "c3": 8.7378640776699, + "c4": 6.9902912621359246, + "c5": 5.242718446601939, + "c6": 3.4951456310679623, + "c7": 1.7475728155339767 }, "rgb": [238, 201, 159] }, @@ -87567,23 +87567,23 @@ "year": 1729, "resistanceReported": true, "duration": 24624000, - "curveSeeds": { - "c1": 0.6681917855259556, - "c2": -36.366412788157405, - "c3": 36.53872765676926, - "c4": -20.054020618771265, - "c5": -30.988135069591074, - "c6": -7.933890246565674, - "c7": 36.285801428878905 + "points": { + "c1": -15.70712595448952, + "c2": 34.56822775342767, + "c3": 7.077901665586623, + "c4": 38.61861166389237, + "c5": 36.76129900322508, + "c6": 0.17872454650473912, + "c7": 16.23963881390719 }, - "vertexSeeds": { - "c1": 4.605456645717121, - "c2": 4.527328594461397, - "c3": 4.687283531374957, - "c4": 4.481902741815035, - "c5": 4.754763412027211, - "c6": 4.70262048335274, - "c7": 4.728647333743241 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130372, + "c3": 5.247341655108646, + "c4": 4.197873324086914, + "c5": 3.1484049930651894, + "c6": 2.098936662043457, + "c7": 1.0494683310217248 }, "rgb": [77, 76, 132] }, @@ -87594,23 +87594,23 @@ "year": 1729, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -7.440569144834299, - "c2": -2.8146526220709376, - "c3": -10.639689589125709, - "c4": 39.142790090536124, - "c5": 27.444821851137945, - "c6": -30.342129974135055, - "c7": -27.263910238059182 + "points": { + "c1": 16.507127785661147, + "c2": -37.09282460686746, + "c3": 37.81555258004212, + "c4": -4.707580488017932, + "c5": -25.732349132826105, + "c6": 18.835529026266094, + "c7": -1.6949614017530834 }, - "vertexSeeds": { - "c1": 2.7280515263617193, - "c2": 2.8697205866290636, - "c3": 2.805320245248661, - "c4": 2.800255910407333, - "c5": 2.5199783323733227, - "c6": 2.9862594116534273, - "c7": 2.551317972506539 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395284, + "c3": 3.6754507628294038, + "c4": 2.940360610263523, + "c5": 2.205270457697642, + "c6": 1.4701803051317615, + "c7": 0.7350901525658807 }, "rgb": [86, 146, 138] }, @@ -87621,23 +87621,23 @@ "year": 1729, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 8.861559672137851, - "c2": -12.12459751651463, - "c3": -21.658325023715413, - "c4": 14.244870333364254, - "c5": 15.936244478328788, - "c6": -13.623851123640762, - "c7": -18.22440856741742 + "points": { + "c1": 3.5719933232748318, + "c2": 15.34820392362326, + "c3": -6.011135659260411, + "c4": 10.613648380155972, + "c5": 7.568769320962687, + "c6": 10.798948619457462, + "c7": 29.853757266880557 }, - "vertexSeeds": { - "c1": 3.803051635585415, - "c2": 4.067348350168911, - "c3": 3.593650041007074, - "c4": 3.9513449402579814, - "c5": 3.6727644102636527, - "c6": 4.175945007257984, - "c7": 4.012740119131494 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.2011095700416075, + "c4": 4.160887656033288, + "c5": 3.1206657420249635, + "c6": 2.080443828016644, + "c7": 1.0402219140083242 }, "rgb": [77, 76, 132] }, @@ -87648,23 +87648,23 @@ "year": 1729, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 10.034500017080724, - "c2": 12.190768189108113, - "c3": 35.0355679427215, - "c4": 22.251672944289055, - "c5": 4.927074836398944, - "c6": 9.745151754181151, - "c7": -14.708574914668532 + "points": { + "c1": 9.430860972266245, + "c2": -3.337984622396114, + "c3": -15.743902138446145, + "c4": -17.84983795231561, + "c5": -17.937510453975396, + "c6": 14.657925795948096, + "c7": -24.12460376790589 }, - "vertexSeeds": { - "c1": 1.8036320659734424, - "c2": 1.935873971997508, - "c3": 1.9155093590695242, - "c4": 1.9874115519470907, - "c5": 1.7480113463869023, - "c6": 1.7348839012666015, - "c7": 1.8247686971679398 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.427184466019417, + "c4": 1.941747572815535, + "c5": 1.4563106796116496, + "c6": 0.9708737864077674, + "c7": 0.4854368932038821 }, "rgb": [238, 201, 159] }, @@ -87675,23 +87675,23 @@ "year": 1729, "resistanceReported": true, "duration": 21772800, - "curveSeeds": { - "c1": -19.98476024447112, - "c2": 12.78421702042835, - "c3": -4.145608400118867, - "c4": -21.853198599243065, - "c5": 19.128832244036055, - "c6": 12.651571732895079, - "c7": -31.949019247895556 + "points": { + "c1": 11.63531049413293, + "c2": -15.365282188008777, + "c3": 1.1189644058208046, + "c4": -17.996105496606273, + "c5": -11.85868664905534, + "c6": 35.451398214911904, + "c7": 16.085674647731672 }, - "vertexSeeds": { - "c1": 2.7129213564565795, - "c2": 2.6686390201644046, - "c3": 2.9897692775398363, - "c4": 3.089030797222611, - "c5": 2.9756132690658337, - "c6": 3.0466908801247112, - "c7": 3.0302300891571687 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.5214979195561735, + "c3": 3.7679149329634796, + "c4": 3.0143319463707803, + "c5": 2.2607489597780868, + "c6": 1.5071659731853928, + "c7": 0.7535829865926937 }, "rgb": [58, 15, 49] }, @@ -87702,23 +87702,23 @@ "year": 1729, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 7.555452724273735, - "c2": -20.107592293737703, - "c3": -13.454219751090218, - "c4": 21.269844939023294, - "c5": 10.060547760074584, - "c6": 4.234178021401945, - "c7": -7.668375565233603 + "points": { + "c1": -3.7736901211054317, + "c2": 19.19762895161002, + "c3": 18.56540492146464, + "c4": 33.3751444006097, + "c5": -29.07793205741579, + "c6": -24.861911336363235, + "c7": 8.20447212008002 }, - "vertexSeeds": { - "c1": 3.0790308043388586, - "c2": 3.6921005019610074, - "c3": 3.5394893130436964, - "c4": 3.5923860893158386, - "c5": 3.5400406645520532, - "c6": 3.2610800298471836, - "c7": 3.205500786835919 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843272, + "c3": 4.507628294036062, + "c4": 3.606102635228847, + "c5": 2.7045769764216376, + "c6": 1.8030513176144236, + "c7": 0.9015256588072095 }, "rgb": [238, 201, 159] }, @@ -87729,23 +87729,23 @@ "year": 1729, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 23.430526837576846, - "c2": 13.683767340636624, - "c3": -27.135324754311895, - "c4": 10.600509988178796, - "c5": 8.390486722073451, - "c6": -20.234503157750204, - "c7": -2.684880631194396 + "points": { + "c1": -8.55097410701778, + "c2": -3.044091171962279, + "c3": -26.01444685737276, + "c4": 25.270241704429363, + "c5": -27.04684170914443, + "c6": 4.191425503644407, + "c7": -6.703261804226138 }, - "vertexSeeds": { - "c1": 4.260174246067799, - "c2": 5.238431817652815, - "c3": 5.131174643883138, - "c4": 5.24103230858308, - "c5": 4.3125500663951, - "c6": 4.211178234139157, - "c7": 4.93978786159176 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -87756,23 +87756,23 @@ "year": 1729, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 6.691643669824764, - "c2": -4.948319216581972, - "c3": 27.95901736795213, - "c4": -16.378094215132172, - "c5": 26.217113065306464, - "c6": -4.410283351706301, - "c7": 19.882739397453335 + "points": { + "c1": 9.878734200867818, + "c2": -2.5808193610619092, + "c3": -9.112346537709843, + "c4": -11.08390489595299, + "c5": 5.723769168399315, + "c6": 0.7214279659911966, + "c7": 20.223581922610755 }, - "vertexSeeds": { - "c1": 4.650960710220318, - "c2": 4.778079744711295, - "c3": 5.225203111673698, - "c4": 4.579078063011282, - "c5": 4.608568567549451, - "c6": 4.619575803576485, - "c7": 5.146188752015724 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -87783,23 +87783,23 @@ "year": 1729, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -10.115996906791185, - "c2": -12.189589614191771, - "c3": 10.899032089541969, - "c4": -15.424081943423431, - "c5": -11.416445429649096, - "c6": 18.998669731978488, - "c7": -14.928105745794724 + "points": { + "c1": -9.224748969283976, + "c2": -25.435619897482013, + "c3": 1.6707904055625207, + "c4": -19.61189816257567, + "c5": -22.53615151096219, + "c6": 11.022601648184143, + "c7": 27.220521357672773 }, - "vertexSeeds": { - "c1": 7.358533564967268, - "c2": 6.613387807235092, - "c3": 7.188285276433394, - "c4": 6.445093144757202, - "c5": 6.893049690217311, - "c6": 6.579455709998346, - "c7": 7.26881892964173 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [77, 76, 132] }, @@ -87810,23 +87810,23 @@ "year": 1729, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 13.918680435687548, - "c2": -20.643418162243105, - "c3": -25.67514622035743, - "c4": -21.797828820041296, - "c5": -27.326147448740546, - "c6": 21.025883055416195, - "c7": 9.36818234711621 + "points": { + "c1": 8.059638347007535, + "c2": 3.2420777884399214, + "c3": 6.771952313256996, + "c4": -10.794811072974817, + "c5": 12.986977446624074, + "c6": -33.437511252211024, + "c7": 20.90232300327115 }, - "vertexSeeds": { - "c1": 5.174220880906253, - "c2": 5.08303166111273, - "c3": 5.4175909754816995, - "c4": 5.217014436052195, - "c5": 5.470841165128924, - "c6": 5.089595093135813, - "c7": 5.094096396484222 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [58, 15, 49] }, @@ -87837,23 +87837,23 @@ "year": 1729, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": -0.41398938801450313, - "c2": -12.608405805114387, - "c3": -4.968636769934109, - "c4": 7.902235903347005, - "c5": 0.3939628405058535, - "c6": 6.602067498822596, - "c7": 2.0919283878950665 + "points": { + "c1": -11.746389806575873, + "c2": 18.128943792231134, + "c3": -5.268303958818102, + "c4": 15.86786373489305, + "c5": 10.540081612464633, + "c6": 6.013637145211067, + "c7": -18.233892685100958 }, - "vertexSeeds": { - "c1": 4.605866038746098, - "c2": 4.447137397689535, - "c3": 3.9556750335426396, - "c4": 3.8089212043748533, - "c5": 4.325657283483123, - "c6": 3.840212807553992, - "c7": 4.384883139653116 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -87864,23 +87864,23 @@ "year": 1729, "resistanceReported": false, "duration": 8985600, - "curveSeeds": { - "c1": -18.24453045073509, - "c2": 3.1812445417778683, - "c3": 18.759171216035647, - "c4": 18.241312192133876, - "c5": -13.436481166725653, - "c6": 17.24342414607137, - "c7": 0.3853832992403632 + "points": { + "c1": -10.182268277976123, + "c2": 1.5794935179210796, + "c3": 10.84220694228307, + "c4": 12.352859323093796, + "c5": 21.616498454022995, + "c6": 13.66600118946485, + "c7": 10.706883923338296 }, - "vertexSeeds": { - "c1": 1.7972036590915863, - "c2": 1.4787383780722922, - "c3": 1.4665591606664425, - "c4": 1.7761943223262704, - "c5": 1.6962610692439977, - "c6": 1.557652418528827, - "c7": 1.638266442508453 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210815, + "c3": 2.1960240406842355, + "c4": 1.7568192325473881, + "c5": 1.3176144244105408, + "c6": 0.8784096162736951, + "c7": 0.43920480813684754 }, "rgb": [77, 76, 132] }, @@ -87891,23 +87891,23 @@ "year": 1729, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 40.159094790910316, - "c2": 1.7875251696631977, - "c3": -39.47672976883047, - "c4": 14.007904967744018, - "c5": 43.68446156241589, - "c6": -44.832412396607396, - "c7": 10.77914090868424 + "points": { + "c1": 6.393153398580964, + "c2": -39.57614338871757, + "c3": 38.87119798705551, + "c4": 38.72039337198281, + "c5": 19.695588726601898, + "c6": 13.501122509426189, + "c7": 19.92070098992184 }, - "vertexSeeds": { - "c1": 3.337059121294914, - "c2": 3.4135308133686566, - "c3": 3.8501721757396354, - "c4": 3.6661261458438905, - "c5": 3.7534287660270964, - "c6": 3.263998156827626, - "c7": 3.3019992888266563 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703652, + "c4": 3.6985668053629213, + "c5": 2.773925104022191, + "c6": 1.8492834026814606, + "c7": 0.9246417013407303 }, "rgb": [86, 146, 138] }, @@ -87918,23 +87918,23 @@ "year": 1729, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -38.392473352654996, - "c2": -1.5927117073714712, - "c3": 7.361315270965683, - "c4": 5.751923220259428, - "c5": -31.33505586356393, - "c6": -27.774376622396574, - "c7": -11.90039722878354 + "points": { + "c1": -30.517996952397773, + "c2": 9.594153383375023, + "c3": -40.72709531472739, + "c4": -31.53771229134228, + "c5": 37.56242431358112, + "c6": 0.8141828311638974, + "c7": 37.81785117352493 }, - "vertexSeeds": { - "c1": 6.381172503882524, - "c2": 7.082566216835139, - "c3": 7.0172754545710525, - "c4": 6.868970469365366, - "c5": 6.611804363001812, - "c6": 7.170828647446093, - "c7": 7.04169129569841 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922334, + "c3": 8.576051779935268, + "c4": 6.8608414239482185, + "c5": 5.145631067961167, + "c6": 3.4304207119741017, + "c7": 1.7152103559870508 }, "rgb": [77, 76, 132] }, @@ -87945,23 +87945,23 @@ "year": 1729, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -12.99517077200932, - "c2": 3.2279524146069534, - "c3": -18.80261045364587, - "c4": 15.240140056336301, - "c5": -12.088057643644682, - "c6": -17.18286154930765, - "c7": 0.35619257047923014 + "points": { + "c1": 2.760185487965124, + "c2": 11.40545863557739, + "c3": 11.827751399311843, + "c4": -5.856846846786457, + "c5": 32.94321335776233, + "c6": -18.027973621207614, + "c7": 20.67494943982569 }, - "vertexSeeds": { - "c1": 8.31427663846435, - "c2": 7.900039673741897, - "c3": 7.4474800178084735, - "c4": 7.31728816570874, - "c5": 7.785706419815421, - "c6": 7.5936269551435025, - "c7": 7.485705037693019 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737859, + "c3": 10.194174757281555, + "c4": 8.155339805825239, + "c5": 6.1165048543689355, + "c6": 4.0776699029126195, + "c7": 2.0388349514563036 }, "rgb": [238, 201, 159] }, @@ -87972,23 +87972,23 @@ "year": 1729, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -20.470560507119295, - "c2": -23.759714102248626, - "c3": -0.2860358708282611, - "c4": 7.134247008433086, - "c5": 4.648726043303256, - "c6": 4.970448489103667, - "c7": -29.4518514867927 + "points": { + "c1": 28.762692641977054, + "c2": 28.95861294934857, + "c3": -18.79712380788162, + "c4": -6.019924691417682, + "c5": -0.07527274373796189, + "c6": -5.6587102904272015, + "c7": -28.230107357514097 }, - "vertexSeeds": { - "c1": 4.789612817097403, - "c2": 4.894143995753735, - "c3": 4.5278660593686775, - "c4": 4.656476240561817, - "c5": 4.826541809490791, - "c6": 4.513100884336767, - "c7": 4.85035065385997 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176147, + "c3": 5.8483587609801155, + "c4": 4.678687008784095, + "c5": 3.5090152565880737, + "c6": 2.3393435043920525, + "c7": 1.1696717521960214 }, "rgb": [238, 201, 159] }, @@ -87999,23 +87999,23 @@ "year": 1729, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 5.881242226102053, - "c2": 8.548740816290241, - "c3": 15.11020756060833, - "c4": 8.94219237281753, - "c5": -12.584860510696654, - "c6": -32.63055590819435, - "c7": -27.884673328632594 + "points": { + "c1": 7.2351815786906, + "c2": 11.779884263174765, + "c3": 31.888166969966, + "c4": -41.40422012666442, + "c5": -35.67274499981625, + "c6": 30.388706226288456, + "c7": -11.806958013988623 }, - "vertexSeeds": { - "c1": 14.302285579560332, - "c2": 14.718435196601337, - "c3": 12.090849646875816, - "c4": 12.483305767092984, - "c5": 14.849653320546228, - "c6": 13.044154339075243, - "c7": 14.634039108201453 + "offsets": { + "c1": 25.210355987055017, + "c2": 21.608876560332867, + "c3": 18.00739713361073, + "c4": 14.405917706888578, + "c5": 10.80443828016644, + "c6": 7.202958853444289, + "c7": 3.601479426722136 }, "rgb": [58, 15, 49] }, @@ -88026,23 +88026,23 @@ "year": 1729, "resistanceReported": false, "duration": 8035200, - "curveSeeds": { - "c1": 2.2969759600106805, - "c2": 11.415767218564763, - "c3": -0.16730088180409197, - "c4": -3.1431867952836967, - "c5": -5.257284987695284, - "c6": -17.268516847924158, - "c7": 6.155943426394689 + "points": { + "c1": 0.4291321086860229, + "c2": -10.523148197345344, + "c3": -3.6795932192450067, + "c4": 1.4772076678411707, + "c5": 9.549953292068164, + "c6": 13.335028222403714, + "c7": 18.728522422417825 }, - "vertexSeeds": { - "c1": 2.461757313026315, - "c2": 2.777754985038458, - "c3": 2.6389106696902247, - "c4": 2.579577124372221, - "c5": 2.7486137021262054, - "c6": 2.4724304768245484, - "c7": 2.4683010151621483 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [222, 0, 59] }, @@ -88053,23 +88053,23 @@ "year": 1729, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -25.338019986478976, - "c2": 29.84231256152343, - "c3": -28.65215186832308, - "c4": 12.840820646153546, - "c5": -11.600501398995391, - "c6": -35.9531397143918, - "c7": 5.163970122166454 + "points": { + "c1": 19.6987360237924, + "c2": -27.313369848453277, + "c3": 24.37693379828186, + "c4": 34.63255422384563, + "c5": 11.631843407024874, + "c6": 33.702330636827455, + "c7": -28.254064220844718 }, - "vertexSeeds": { - "c1": 6.703692229393246, - "c2": 6.476876261451247, - "c3": 6.296765471189274, - "c4": 5.567902462747765, - "c5": 6.310631914558652, - "c6": 5.712993818182778, - "c7": 6.4685132771101586 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997224, + "c3": 8.044382801664351, + "c4": 6.435506241331479, + "c5": 4.826629680998616, + "c6": 3.2177531206657446, + "c7": 1.6088765603328723 }, "rgb": [222, 0, 59] }, @@ -88080,23 +88080,23 @@ "year": 1729, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -2.2565264794558857, - "c2": 5.648867051767496, - "c3": -16.212792755916755, - "c4": 2.8691155643897233, - "c5": 15.417081680221727, - "c6": 2.2921232629008017, - "c7": 29.77795492859419 + "points": { + "c1": 17.84335962817206, + "c2": 3.9611670985544407, + "c3": -28.505205133828888, + "c4": 18.20354327262838, + "c5": -14.497040405969898, + "c6": -24.14814600064964, + "c7": -31.999366591363565 }, - "vertexSeeds": { - "c1": 6.72441701707249, - "c2": 6.648770739559649, - "c3": 6.915768435341692, - "c4": 6.538229427891368, - "c5": 6.704372829522526, - "c6": 6.920858191660322, - "c7": 7.115847988561475 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041613, + "c6": 3.467406380027742, + "c7": 1.733703190013871 }, "rgb": [77, 76, 132] }, @@ -88107,23 +88107,23 @@ "year": 1729, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 3.8452436608868723, - "c2": 12.43353317798011, - "c3": -17.777010313166805, - "c4": 11.65506232642909, - "c5": 7.812120196058714, - "c6": 21.152687289804057, - "c7": -20.599205310304924 + "points": { + "c1": 10.496707473041901, + "c2": -4.297831925565575, + "c3": -7.654873663544951, + "c4": -15.237110841514044, + "c5": 24.406344785973417, + "c6": -11.174455787659273, + "c7": -3.8623122521429103 }, - "vertexSeeds": { - "c1": 4.486373136351406, - "c2": 3.925244473365566, - "c3": 4.4723399624438205, - "c4": 4.602852858261978, - "c5": 4.237930594516991, - "c6": 3.9182779807003194, - "c7": 4.6350411789043715 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934813, + "c3": 5.709662505779013, + "c4": 4.567730004623208, + "c5": 3.4257975034674066, + "c6": 2.283865002311606, + "c7": 1.1419325011558055 }, "rgb": [238, 201, 159] }, @@ -88134,23 +88134,23 @@ "year": 1729, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": 6.327034790641715, - "c2": 15.807694161646339, - "c3": 7.893009466272517, - "c4": 2.7487722456208523, - "c5": 2.1883331920697238, - "c6": -5.891728811764931, - "c7": -0.4185321655721026 + "points": { + "c1": -3.4532664729021505, + "c2": 3.5392211683397896, + "c3": 16.450988035776028, + "c4": -15.599806257840136, + "c5": -18.552894010057233, + "c6": -10.30067896406758, + "c7": 13.076384771429154 }, - "vertexSeeds": { - "c1": 3.1925889071383025, - "c2": 3.239266748810145, - "c3": 3.1337249971975742, - "c4": 2.934748239995968, - "c5": 3.1542466758109806, - "c6": 3.2529334004663344, - "c7": 3.0677719641545633 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -88161,23 +88161,23 @@ "year": 1729, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": -1.6756659340579176, - "c2": -3.0631512916657346, - "c3": 15.662510435149368, - "c4": -5.4364894346825245, - "c5": 6.937732506630038, - "c6": 3.7224646900931866, - "c7": 1.404407596528742 + "points": { + "c1": 6.634635776036838, + "c2": 6.014585026192268, + "c3": -11.171515612498453, + "c4": -7.940406052916316, + "c5": -7.671986929210972, + "c6": 15.712178504447987, + "c7": 10.763017483301109 }, - "vertexSeeds": { - "c1": 4.696242070039181, - "c2": 4.883783372004999, - "c3": 4.831774548100345, - "c4": 4.650648287636409, - "c5": 4.848104024344887, - "c6": 4.827887507021422, - "c7": 4.76068879796093 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -88188,23 +88188,23 @@ "year": 1729, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -13.046180861052317, - "c2": 13.188107725032346, - "c3": 18.52593923055563, - "c4": -9.54779407038917, - "c5": -6.100762767657553, - "c6": -4.8719565021733615, - "c7": -11.236965605694262 + "points": { + "c1": 17.606033664098014, + "c2": -36.16204719670925, + "c3": -9.319532578991442, + "c4": 19.28746398947201, + "c5": 17.560201313667854, + "c6": 29.26970704681544, + "c7": 16.313404759075496 }, - "vertexSeeds": { - "c1": 3.178167201770493, - "c2": 3.0140010779345827, - "c3": 3.062749025911509, - "c4": 3.117195372371951, - "c5": 3.216016169328983, - "c6": 3.1184822406978623, - "c7": 3.114858608623762 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -88215,23 +88215,23 @@ "year": 1729, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 31.12228601909426, - "c2": 22.51270682450305, - "c3": 19.418945890425363, - "c4": 3.873427064378234, - "c5": -26.218615747523554, - "c6": 25.67893136527548, - "c7": -10.694370858309629 + "points": { + "c1": -29.54397140089911, + "c2": -2.27585015861726, + "c3": 9.797970628159646, + "c4": -1.5753966356636084, + "c5": 34.320411542600766, + "c6": -18.33473185984322, + "c7": -4.123172493640794 }, - "vertexSeeds": { - "c1": 5.566076319944688, - "c2": 6.432716514555068, - "c3": 5.268567722433578, - "c4": 6.791030500326309, - "c5": 6.808423890315692, - "c6": 5.909916496762781, - "c7": 6.165576935665689 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198337, + "c3": 8.159963014331948, + "c4": 6.52797041146556, + "c5": 4.895977808599165, + "c6": 3.2639852057327765, + "c7": 1.6319926028663883 }, "rgb": [238, 201, 159] }, @@ -88242,23 +88242,23 @@ "year": 1729, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 2.797116243290059, - "c2": -10.720812439671569, - "c3": 17.605413401357236, - "c4": 17.75426242478316, - "c5": 4.545767009187987, - "c6": -17.481305042176878, - "c7": -7.17400978900006 + "points": { + "c1": -3.059610739696385, + "c2": -5.245097086982721, + "c3": -1.7925944824369857, + "c4": -6.75697122423135, + "c5": 10.596226665550248, + "c6": -10.923594629570982, + "c7": -21.875331350145306 }, - "vertexSeeds": { - "c1": 8.598233706043661, - "c2": 7.999322039725237, - "c3": 8.87371825937174, - "c4": 8.129057376275162, - "c5": 7.861059689589413, - "c6": 7.471271569313033, - "c7": 7.534218332634882 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346745, + "c3": 11.118816458622282, + "c4": 8.89505316689783, + "c5": 6.671289875173377, + "c6": 4.447526583448915, + "c7": 2.223763291724462 }, "rgb": [238, 201, 159] }, @@ -88269,23 +88269,23 @@ "year": 1729, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -17.811905161224793, - "c2": 18.20919505076055, - "c3": 31.812435821039443, - "c4": 17.46676218249759, - "c5": 29.488288325282127, - "c6": -20.98379433270371, - "c7": -24.416302096764547 + "points": { + "c1": -3.58705219093158, + "c2": -13.677953090922344, + "c3": 17.99244167239916, + "c4": 16.374019434217814, + "c5": 4.235464816902301, + "c6": 16.039382913640488, + "c7": -4.226831953253978 }, - "vertexSeeds": { - "c1": 5.896508038087706, - "c2": 6.214668289727414, - "c3": 6.101931723318242, - "c4": 6.333407078726784, - "c5": 5.9094476542903305, - "c6": 6.609268128141375, - "c7": 6.642477910300433 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.51456310679612, + "c3": 7.928802588996768, + "c4": 6.343042071197417, + "c5": 4.757281553398052, + "c6": 3.171521035598701, + "c7": 1.5857605177993506 }, "rgb": [238, 201, 159] }, @@ -88296,23 +88296,23 @@ "year": 1729, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -13.001714516592465, - "c2": 3.659376025967447, - "c3": -23.07119446916624, - "c4": 1.5138897309602726, - "c5": 12.468702680433417, - "c6": 14.132044295559105, - "c7": -4.372628604286813 + "points": { + "c1": 22.457311189645146, + "c2": -1.1431007026420374, + "c3": 14.697375616007129, + "c4": 10.233422175853512, + "c5": -12.700722714357283, + "c6": -21.16102369591853, + "c7": -22.553045635599744 }, - "vertexSeeds": { - "c1": 8.825570512529122, - "c2": 7.109791902395651, - "c3": 8.37356347377635, - "c4": 8.205644551756851, - "c5": 8.356421600998633, - "c6": 7.531219448961024, - "c7": 8.6802716804771 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.64909847434119, + "c3": 10.540915395284326, + "c4": 8.43273231622746, + "c5": 6.324549237170595, + "c6": 4.21636615811373, + "c7": 2.108183079056865 }, "rgb": [58, 15, 49] }, @@ -88323,23 +88323,23 @@ "year": 1729, "resistanceReported": false, "duration": 6220800, - "curveSeeds": { - "c1": 16.30675852172827, - "c2": -16.24727494325991, - "c3": -11.607195440610573, - "c4": -10.99878568822871, - "c5": 2.226160445006549, - "c6": -14.912079416243971, - "c7": -12.912147565724927 + "points": { + "c1": -9.62744225335512, + "c2": 14.212969439136941, + "c3": -10.800316254063675, + "c4": 0.42454969620482785, + "c5": -5.364473619765969, + "c6": 13.408534698425264, + "c7": -2.7041365401470046 }, - "vertexSeeds": { - "c1": 4.709069103801285, - "c2": 4.260229791139194, - "c3": 4.610874779670456, - "c4": 4.908973255331411, - "c5": 4.339632174469464, - "c6": 4.406094122750453, - "c7": 4.29902728343728 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -88350,23 +88350,23 @@ "year": 1729, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 26.96051890772716, - "c2": 30.74231467587536, - "c3": -18.325806871399863, - "c4": -22.826106315895586, - "c5": -1.0668957994710588, - "c6": -4.559713460692915, - "c7": 20.429049170041463 + "points": { + "c1": 17.40881432604182, + "c2": 14.939292524904445, + "c3": 11.462567275572738, + "c4": 12.932523290094508, + "c5": 11.330781576558039, + "c6": -3.148527558607359, + "c7": 17.292719665476753 }, - "vertexSeeds": { - "c1": 4.057577353587947, - "c2": 3.8772228588916677, - "c3": 3.9018103873989047, - "c4": 4.235613006135362, - "c5": 4.0857166263302, - "c6": 4.285739282265093, - "c7": 4.213654666843026 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [86, 146, 138] }, @@ -88377,23 +88377,23 @@ "year": 1729, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 16.405985785980008, - "c2": 33.635403666612234, - "c3": -3.9952634351777796, - "c4": -15.264105580938917, - "c5": 7.692174966875342, - "c6": 29.56076487664795, - "c7": -21.667667340141776 + "points": { + "c1": 14.43407400595354, + "c2": 28.485549967709858, + "c3": 30.104319787308242, + "c4": -18.299275669789562, + "c5": -10.67263398936107, + "c6": -35.21109724878783, + "c7": 14.182607058954652 }, - "vertexSeeds": { - "c1": 5.923285713571877, - "c2": 5.876544225726506, - "c3": 5.884220962726145, - "c4": 5.839095133042212, - "c5": 5.925698738311142, - "c6": 5.873514039776519, - "c7": 5.9287543956200635 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348168, + "c3": 7.096625057790093, + "c4": 5.677300046232112, + "c5": 4.257975034674037, + "c6": 2.838650023116056, + "c7": 1.4193250115579807 }, "rgb": [58, 15, 49] }, @@ -88404,23 +88404,23 @@ "year": 1729, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 7.2407498957124865, - "c2": 1.4186875547207336, - "c3": -4.045270404733358, - "c4": -11.409470189640128, - "c5": -23.459062756321774, - "c6": 4.417949019199572, - "c7": -4.6634096407555035 + "points": { + "c1": 20.759672287343655, + "c2": -14.004022838831652, + "c3": 5.781150208825331, + "c4": -3.606161206509828, + "c5": -21.774767478476576, + "c6": -17.821158198629703, + "c7": 24.984164567368865 }, - "vertexSeeds": { - "c1": 5.502463138603798, - "c2": 5.988500815714493, - "c3": 5.284740267990982, - "c4": 5.752041014945254, - "c5": 5.362506050094797, - "c6": 5.410146275686212, - "c7": 5.194255924178385 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951456, + "c3": 7.766990291262139, + "c4": 6.213592233009709, + "c5": 4.660194174757279, + "c6": 3.106796116504856, + "c7": 1.5533980582524263 }, "rgb": [238, 201, 159] }, @@ -88431,23 +88431,23 @@ "year": 1730, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": -1.9169233067336506, - "c2": -23.461868818747075, - "c3": 38.374374560829224, - "c4": -24.887463101461513, - "c5": 43.29163741621805, - "c6": 8.662992801160051, - "c7": -12.81287968356419 + "points": { + "c1": 2.06046224629236, + "c2": 31.851486200023686, + "c3": -1.8099041900876571, + "c4": -36.0335931505753, + "c5": 27.174921825423056, + "c6": -5.906509088376893, + "c7": -21.31580477077776 }, - "vertexSeeds": { - "c1": 10.484584319554632, - "c2": 10.442558403876534, - "c3": 10.622395731719116, - "c4": 10.348282318444882, - "c5": 10.540975462671438, - "c6": 10.622367319770051, - "c7": 10.654504534319297 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122097, + "c3": 12.713823393435028, + "c4": 10.171058714748066, + "c5": 7.628294036060995, + "c6": 5.085529357374033, + "c7": 2.5427646786870692 }, "rgb": [222, 0, 59] }, @@ -88458,23 +88458,23 @@ "year": 1729, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 32.58224668947757, - "c2": 23.73717313151684, - "c3": 45.951167606179766, - "c4": -19.030965970141356, - "c5": -35.824186998788804, - "c6": 28.286212080063265, - "c7": 35.75674015595904 + "points": { + "c1": 23.178504974694135, + "c2": -26.65406268024241, + "c3": -4.170791917540775, + "c4": 1.1313295085454627, + "c5": -28.508237432221488, + "c6": -15.73318126494646, + "c7": 0.7430554076722089 }, - "vertexSeeds": { - "c1": 4.242542630238259, - "c2": 4.163122892301514, - "c3": 4.3108169481606495, - "c4": 4.310827709068786, - "c5": 4.169529200660946, - "c6": 4.051898355292844, - "c7": 4.053880968950569 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090159, + "c3": 5.224225612575126, + "c4": 4.1793804900601055, + "c5": 3.134535367545073, + "c6": 2.0896902450300527, + "c7": 1.0448451225150326 }, "rgb": [77, 76, 132] }, @@ -88485,23 +88485,23 @@ "year": 1729, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 11.935456862889456, - "c2": 11.892682963744281, - "c3": 19.744273893433725, - "c4": 16.34031115474802, - "c5": -5.370866068457872, - "c6": -8.695014583196933, - "c7": 20.09989990673594 + "points": { + "c1": -30.87008618801084, + "c2": 30.272162855154107, + "c3": 6.096172744499306, + "c4": -6.81247858373715, + "c5": -30.939434343986235, + "c6": -19.489163435746065, + "c7": 20.63503843622516 }, - "vertexSeeds": { - "c1": 4.4605674863152425, - "c2": 3.955649753220549, - "c3": 3.7410791418628926, - "c4": 4.535585618771053, - "c5": 4.133745279670437, - "c6": 4.116053400879308, - "c7": 4.480896693864543 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492373, + "c3": 5.4553860379103085, + "c4": 4.364308830328247, + "c5": 3.2732316227461866, + "c6": 2.182154415164126, + "c7": 1.0910772075820605 }, "rgb": [238, 201, 159] }, @@ -88512,23 +88512,23 @@ "year": 1729, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -29.954181229385874, - "c2": 20.144995492641637, - "c3": -0.5639761898488125, - "c4": 28.72282969506845, - "c5": 27.62590409611308, - "c6": 4.650942866102358, - "c7": 2.6763492159214017 + "points": { + "c1": -10.882638030391526, + "c2": 6.0202939194532235, + "c3": 14.050722368804458, + "c4": -14.37116496238793, + "c5": 24.64442907178892, + "c6": -26.92660048457725, + "c7": -7.317519643312547 }, - "vertexSeeds": { - "c1": 4.74242137040543, - "c2": 4.635402366800161, - "c3": 4.7846468122155645, - "c4": 4.825578101965109, - "c5": 4.510196829575103, - "c6": 4.799569112164434, - "c7": 4.6663131623020915 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256586, + "c3": 5.8945908460471585, + "c4": 4.715672676837723, + "c5": 3.5367545076282965, + "c6": 2.3578363384188616, + "c7": 1.1789181692094344 }, "rgb": [238, 201, 159] }, @@ -88539,23 +88539,23 @@ "year": 1729, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -7.61727446832149, - "c2": 2.0036467990461873, - "c3": -5.368453388317157, - "c4": -11.460971559224632, - "c5": 16.142791902406042, - "c6": 14.82822924870693, - "c7": -18.54022719779485 + "points": { + "c1": -16.025542178604862, + "c2": -3.2558854453554034, + "c3": 8.860541076677872, + "c4": 15.762695914564215, + "c5": 23.70214061868251, + "c6": 3.064980493632074, + "c7": -11.953820986608292 }, - "vertexSeeds": { - "c1": 4.171334906457362, - "c2": 4.177116977587599, - "c3": 4.062968730311483, - "c4": 4.146482671575339, - "c5": 4.1280545604344265, - "c6": 4.064954272428096, - "c7": 4.139529343035267 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687929, + "c3": 4.993065187239935, + "c4": 3.994452149791942, + "c5": 2.995839112343948, + "c6": 1.9972260748959876, + "c7": 0.9986130374479938 }, "rgb": [222, 0, 59] }, @@ -88566,23 +88566,23 @@ "year": 1729, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 25.682134674588816, - "c2": -14.557411340213182, - "c3": 20.01133453060124, - "c4": -18.659072549750938, - "c5": 1.2442248818412978, - "c6": 18.554286982922214, - "c7": 1.1631406627275105 + "points": { + "c1": -2.286710293888163, + "c2": 15.391881741356364, + "c3": -16.963128252082914, + "c4": 12.904518642876347, + "c5": 10.24654972395306, + "c6": -6.089269716641979, + "c7": 15.767951758274776 }, - "vertexSeeds": { - "c1": 4.134359187058223, - "c2": 4.133345373029928, - "c3": 3.9458201818517655, - "c4": 4.5256373151642695, - "c5": 3.964866884380346, - "c6": 4.498545570633693, - "c7": 3.7779331014925774 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.7128987517337055, + "c3": 5.594082293111418, + "c4": 4.475265834489137, + "c5": 3.35644937586685, + "c6": 2.2376329172445684, + "c7": 1.1188164586222864 }, "rgb": [86, 146, 138] }, @@ -88593,23 +88593,23 @@ "year": 1729, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -19.04853080907434, - "c2": -21.43060615564616, - "c3": 2.897890751066523, - "c4": -21.81508961654954, - "c5": 6.10325527641232, - "c6": 7.9747066907358075, - "c7": -10.368657346792862 + "points": { + "c1": 19.804101357710366, + "c2": -17.152906634985378, + "c3": 6.523055665960953, + "c4": -22.941267897896928, + "c5": 0.9641998741580977, + "c6": -16.32434282906486, + "c7": -12.412962202265714 }, - "vertexSeeds": { - "c1": 4.703938670302112, - "c2": 4.435435421898333, - "c3": 4.072119186558838, - "c4": 4.1043831871422585, - "c5": 4.284589569002101, - "c6": 4.579003290650312, - "c7": 4.60070115380257 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [222, 0, 59] }, @@ -88620,23 +88620,23 @@ "year": 1729, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -16.205138374403194, - "c2": -14.77506694126567, - "c3": 29.091859858225703, - "c4": 3.945219389229223, - "c5": 15.20424413878311, - "c6": 16.527288898386082, - "c7": 16.556516789382208 + "points": { + "c1": 28.00891874601436, + "c2": -1.7105760115552116, + "c3": -33.58183175081373, + "c4": 15.273847514961368, + "c5": -31.089068536860243, + "c6": -36.234948782001226, + "c7": -16.140446855402057 }, - "vertexSeeds": { - "c1": 3.036126173015828, - "c2": 2.849569802973083, - "c3": 2.9516734545405727, - "c4": 2.99004393530368, - "c5": 3.325551870702753, - "c6": 2.9512532160632117, - "c7": 3.3860010043357778 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239945, + "c3": 4.160887656033289, + "c4": 3.328710124826627, + "c5": 2.4965325936199703, + "c6": 1.6643550624133134, + "c7": 0.8321775312066567 }, "rgb": [77, 76, 132] }, @@ -88647,23 +88647,23 @@ "year": 1729, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -10.691373603867774, - "c2": 21.758591426617045, - "c3": -33.23627668935762, - "c4": -5.637920690157564, - "c5": -25.515815553078365, - "c6": -27.54230963924351, - "c7": -28.117366550122476 + "points": { + "c1": -18.17757471854531, + "c2": 3.7334204336251915, + "c3": 18.079824150098773, + "c4": 22.29958381633979, + "c5": -36.098022535850724, + "c6": -2.5364116052493983, + "c7": 12.836690081718537 }, - "vertexSeeds": { - "c1": 1.6302786028341552, - "c2": 1.6516132539071644, - "c3": 1.5722145550620283, - "c4": 1.50172658991726, - "c5": 1.7038537138903118, - "c6": 1.520644396089347, - "c7": 1.7348944049295523 + "offsets": { + "c1": 3.0097087378640777, + "c2": 2.579750346740639, + "c3": 2.149791955617198, + "c4": 1.7198335644937597, + "c5": 1.2898751733703182, + "c6": 0.8599167822468798, + "c7": 0.42995839112344125 }, "rgb": [77, 76, 132] }, @@ -88674,23 +88674,23 @@ "year": 1731, "resistanceReported": false, "duration": 73440000, - "curveSeeds": { - "c1": -79.87086770134621, - "c2": -53.79690793763083, - "c3": -88.59509494429483, - "c4": 74.997588706468, - "c5": 34.89382444247224, - "c6": -3.517648107933681, - "c7": -8.300016057824749 + "points": { + "c1": 70.80198282736326, + "c2": -65.81846920386785, + "c3": 72.55650503958593, + "c4": 42.76510718464378, + "c5": -64.55691772421672, + "c6": 11.98526591040715, + "c7": -61.20771047747695 }, - "vertexSeeds": { - "c1": 2.5941024915572446, - "c2": 2.850993274935501, - "c3": 2.733358987675486, - "c4": 2.915459578916983, - "c5": 2.9160190270107225, - "c6": 3.0914392079482504, - "c7": 2.939768671215842 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299603, + "c4": 2.995839112343967, + "c5": 2.2468793342579745, + "c6": 1.4979195561719814, + "c7": 0.748959778085993 }, "rgb": [86, 146, 138] }, @@ -88701,23 +88701,23 @@ "year": 1730, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 35.469537782962604, - "c2": 10.310165835221397, - "c3": 7.330968494072977, - "c4": -26.475913257496533, - "c5": 11.05857755913432, - "c6": 40.263468301917214, - "c7": -40.61955340839339 + "points": { + "c1": -15.52606550145222, + "c2": 4.149982875502715, + "c3": -6.7360485670994805, + "c4": -13.140568780926664, + "c5": 33.130505585051296, + "c6": 18.675946017309528, + "c7": 32.07918133206891 }, - "vertexSeeds": { - "c1": 4.350087909125977, - "c2": 5.186369204115691, - "c3": 4.235610685237092, - "c4": 4.684160736693625, - "c5": 5.207336984628691, - "c6": 4.842446134667873, - "c7": 5.1803416633477095 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -88728,23 +88728,23 @@ "year": 1729, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 22.59161511200578, - "c2": -25.866307168976764, - "c3": -30.27953574496036, - "c4": 8.56529652472052, - "c5": 31.499665582605974, - "c6": -5.791384814136045, - "c7": 6.734141743048259 + "points": { + "c1": 17.06956375703377, + "c2": 1.0243007119895466, + "c3": -16.620029786149985, + "c4": -29.996626765508108, + "c5": 28.972163517739084, + "c6": -10.397282746085448, + "c7": -3.3629106784097402 }, - "vertexSeeds": { - "c1": 6.47771453792887, - "c2": 6.161099581133819, - "c3": 5.5342598496716775, - "c4": 5.697586080050117, - "c5": 6.021116377887719, - "c6": 5.388053480489682, - "c7": 5.348568110548802 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554788, + "c3": 7.79010633379565, + "c4": 6.232085067036521, + "c5": 4.674063800277394, + "c6": 3.1160425335182564, + "c7": 1.5580212667591282 }, "rgb": [238, 201, 159] }, @@ -88755,23 +88755,23 @@ "year": 1730, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -26.12969918241675, - "c2": 30.18929055889737, - "c3": -11.905879011453578, - "c4": -19.07493671787714, - "c5": -38.41065440035297, - "c6": 25.533529191517076, - "c7": -28.076983513644123 + "points": { + "c1": -8.461367580235809, + "c2": -47.03069018447645, + "c3": 17.13336725631021, + "c4": 29.12266748238541, + "c5": -26.267208090523628, + "c6": -9.488370003710003, + "c7": -18.68837927700533 }, - "vertexSeeds": { - "c1": 3.968145410800126, - "c2": 4.128966727293758, - "c3": 3.6310082004941986, - "c4": 3.9916297565997434, - "c5": 4.018659385784342, - "c6": 3.9390693229164633, - "c7": 4.019560634119138 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607492, + "c3": 4.946833102172907, + "c4": 3.9574664817383285, + "c5": 2.9680998613037426, + "c6": 1.9787332408691642, + "c7": 0.9893666204345853 }, "rgb": [77, 76, 132] }, @@ -88782,23 +88782,23 @@ "year": 1730, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 24.79486560122765, - "c2": 23.489009822158458, - "c3": -35.849687681663696, - "c4": -10.382808727462866, - "c5": -46.75319530956515, - "c6": -1.9812195664718075, - "c7": 41.70413190566337 + "points": { + "c1": -27.46143273078048, + "c2": 6.629865675449828, + "c3": -13.17926815416292, + "c4": -13.759914528539213, + "c5": -4.619591339090967, + "c6": 7.974347642666906, + "c7": -41.78593783555158 }, - "vertexSeeds": { - "c1": 6.250164232828727, - "c2": 6.482986483225803, - "c3": 6.340722125213482, - "c4": 6.977344116701489, - "c5": 7.1422191832361985, - "c6": 6.2127132164003696, - "c7": 6.807295854267685 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882114, + "c3": 8.552935737401754, + "c4": 6.842348589921409, + "c5": 5.13176144244105, + "c6": 3.4211742949607045, + "c7": 1.7105871474803456 }, "rgb": [222, 0, 59] }, @@ -88809,23 +88809,23 @@ "year": 1730, "resistanceReported": false, "duration": 54345600, - "curveSeeds": { - "c1": -4.204944201304201, - "c2": 55.14549224958343, - "c3": 44.47915464844985, - "c4": 52.00558144896837, - "c5": -20.29176920201497, - "c6": 48.407047439343586, - "c7": 7.351343260765063 + "points": { + "c1": 70.70493752587362, + "c2": 4.062246090312016, + "c3": -54.133807663168426, + "c4": -5.712807467894592, + "c5": -47.66923000274187, + "c6": -56.184676329806884, + "c7": -4.135220939656961 }, - "vertexSeeds": { - "c1": 4.996964707140799, - "c2": 5.027218929344489, - "c3": 5.672360454962673, - "c4": 5.197970929226625, - "c5": 4.556600926615975, - "c6": 5.140690895332116, - "c7": 4.891385374026802 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187238, + "c3": 7.00416088765603, + "c4": 5.6033287101248295, + "c5": 4.202496532593621, + "c6": 2.8016643550624125, + "c7": 1.4008321775312045 }, "rgb": [77, 76, 132] }, @@ -88836,23 +88836,23 @@ "year": 1729, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -8.39473394082804, - "c2": 15.729522182050417, - "c3": -23.493483219345762, - "c4": 5.968522008062145, - "c5": -10.250479652749664, - "c6": 24.277870598953584, - "c7": 37.42381523515434 + "points": { + "c1": -28.66998906028979, + "c2": -30.66119872084934, + "c3": 38.553693353645905, + "c4": -7.32255786985759, + "c5": -9.066819111705243, + "c6": 38.873376769400316, + "c7": -3.876651229977405 }, - "vertexSeeds": { - "c1": 5.85649981167639, - "c2": 5.8784151584744535, - "c3": 5.854823374345249, - "c4": 5.62196959030776, - "c5": 5.603026451612927, - "c6": 5.5837894494949545, - "c7": 5.9951104712233025 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.71012482662968, + "c3": 7.258437355524734, + "c4": 5.806749884419787, + "c5": 4.35506241331484, + "c6": 2.9033749422098936, + "c7": 1.4516874711049468 }, "rgb": [77, 76, 132] }, @@ -88863,23 +88863,23 @@ "year": 1730, "resistanceReported": false, "duration": 55123200, - "curveSeeds": { - "c1": 38.70459610044013, - "c2": 15.419174201591531, - "c3": -49.30652774113108, - "c4": 33.051268871346466, - "c5": 55.386372583301835, - "c6": -21.800641127726983, - "c7": 67.2937907561128 + "points": { + "c1": -44.646116301033736, + "c2": -55.93872005683856, + "c3": -4.290038635961139, + "c4": -29.38524607678486, + "c5": -54.30511948716848, + "c6": 52.343514822851446, + "c7": -11.758094941020488 }, - "vertexSeeds": { - "c1": 4.369354860158719, - "c2": 5.294451535147044, - "c3": 4.841274640738957, - "c4": 4.930039004284516, - "c5": 5.121964224578242, - "c6": 4.782599473155882, - "c7": 4.3519049626840784 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -88890,23 +88890,23 @@ "year": 1730, "resistanceReported": false, "duration": 55123200, - "curveSeeds": { - "c1": 64.89463363167764, - "c2": 13.543433880545223, - "c3": 9.639389275123847, - "c4": 13.781413806847155, - "c5": -59.54896041933242, - "c6": -62.55233239252329, - "c7": -32.94314670583657 + "points": { + "c1": 3.9154692865376717, + "c2": 8.448158600488483, + "c3": 11.138296610619008, + "c4": -66.03100687216495, + "c5": 46.58003153492726, + "c6": 0.4259665618359776, + "c7": -53.05976022129178 }, - "vertexSeeds": { - "c1": 9.940650537299554, - "c2": 9.49233440470295, - "c3": 9.870301666019218, - "c4": 10.102799262070892, - "c5": 10.00690144033086, - "c6": 9.970714409281781, - "c7": 9.523593615570574 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995856, + "c3": 12.066574202496525, + "c4": 9.653259361997238, + "c5": 7.239944521497928, + "c6": 4.826629680998619, + "c7": 2.4133148404993094 }, "rgb": [86, 146, 138] }, @@ -88917,23 +88917,23 @@ "year": 1730, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 41.97647230626168, - "c2": -39.19918212458124, - "c3": -27.66091482679762, - "c4": 17.07966059450279, - "c5": -15.002542363611894, - "c6": 49.92325701374242, - "c7": -9.363659640091498 + "points": { + "c1": 35.889041679594406, + "c2": 54.23847217224553, + "c3": 39.0882021649548, + "c4": -45.22975795051309, + "c5": -16.68647771220288, + "c6": 17.935544831687984, + "c7": 21.20338416842423 }, - "vertexSeeds": { - "c1": 3.9031091894320866, - "c2": 3.5822158061554124, - "c3": 3.782668055467432, - "c4": 3.6385073716372145, - "c5": 3.8771066168259134, - "c6": 3.5956172358723406, - "c7": 3.8146200351268185 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.6033287101248295, + "c3": 4.6694405917706945, + "c4": 3.73555247341655, + "c5": 2.8016643550624147, + "c6": 1.867776236708279, + "c7": 0.9338881183541439 }, "rgb": [238, 201, 159] }, @@ -88944,23 +88944,23 @@ "year": 1729, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -33.660262685470684, - "c2": 19.05251728760991, - "c3": -24.448638556326983, - "c4": -13.004969515239335, - "c5": -15.46844385742487, - "c6": 6.1929161921597995, - "c7": -42.44011285689552 + "points": { + "c1": 15.561414896363175, + "c2": -19.850703554344904, + "c3": 16.86253926189312, + "c4": -9.994386295459805, + "c5": 23.369489731282975, + "c6": -22.6544817175304, + "c7": -40.669612069085346 }, - "vertexSeeds": { - "c1": 6.161502350692583, - "c2": 5.0879258229032605, - "c3": 4.838072929931922, - "c4": 5.564902248471037, - "c5": 6.207714994665008, - "c6": 5.173479636590494, - "c7": 5.429539080955421 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911236, + "c3": 7.420249653259367, + "c4": 5.936199722607488, + "c5": 4.452149791955618, + "c6": 2.968099861303748, + "c7": 1.484049930651874 }, "rgb": [86, 146, 138] }, @@ -88971,23 +88971,23 @@ "year": 1730, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 20.483771440737414, - "c2": 22.375886188878795, - "c3": -43.38942291559345, - "c4": 15.544940323787884, - "c5": -39.86337953124989, - "c6": 43.71273145121884, - "c7": -19.00530124179303 + "points": { + "c1": 1.0518713913292146, + "c2": 45.07612932008885, + "c3": 24.02320197068424, + "c4": 22.870853761052643, + "c5": 27.50750048592417, + "c6": -38.61295101561187, + "c7": -37.09876044358119 }, - "vertexSeeds": { - "c1": 7.500949093350134, - "c2": 8.02453032478807, - "c3": 7.71648379294175, - "c4": 7.508321061274284, - "c5": 6.573746930592851, - "c6": 6.768966636896747, - "c7": 7.06297208042185 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576976, + "c3": 10.101710587147478, + "c4": 8.081368469717981, + "c5": 6.061026352288484, + "c6": 4.040684234858986, + "c7": 2.0203421174294895 }, "rgb": [77, 76, 132] }, @@ -88998,23 +88998,23 @@ "year": 1730, "resistanceReported": false, "duration": 60566400, - "curveSeeds": { - "c1": 56.607424415617416, - "c2": 35.061210074564684, - "c3": 38.018858353951245, - "c4": 52.09222985899929, - "c5": 20.065860198620996, - "c6": -61.357379129205256, - "c7": 21.008010391050135 + "points": { + "c1": 76.8336063531972, + "c2": 53.63186790488059, + "c3": -56.93339605689434, + "c4": -9.094711950502429, + "c5": 17.572287180149118, + "c6": 23.42941507944829, + "c7": 7.2922452132006725 }, - "vertexSeeds": { - "c1": 1.401988121170354, - "c2": 1.3997487515086648, - "c3": 1.4023169140906906, - "c4": 1.3579569963517293, - "c5": 1.4003708782321245, - "c6": 1.520091806668136, - "c7": 1.413254167074615 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.3300970873786397, + "c3": 1.9417475728155345, + "c4": 1.5533980582524265, + "c5": 1.1650485436893212, + "c6": 0.7766990291262132, + "c7": 0.3883495145631078 }, "rgb": [238, 201, 159] }, @@ -89025,23 +89025,23 @@ "year": 1729, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -10.661517283219222, - "c2": 15.599611601884533, - "c3": -4.471086881740266, - "c4": 6.75516481838325, - "c5": -7.485378627222406, - "c6": -7.460093939499668, - "c7": 12.884793954512105 + "points": { + "c1": -20.01835228319242, + "c2": 26.62901055575366, + "c3": 18.202707851111995, + "c4": -15.455943913680812, + "c5": 22.307686964749372, + "c6": 33.31325260532654, + "c7": -4.933433757054203 }, - "vertexSeeds": { - "c1": 10.061323043291377, - "c2": 9.411617092127244, - "c3": 10.181063634264387, - "c4": 8.845550860096719, - "c5": 10.012780021780229, - "c6": 9.222632958460297, - "c7": 9.758895516494258 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [238, 201, 159] }, @@ -89052,23 +89052,23 @@ "year": 1730, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -21.54467344281583, - "c2": -35.16022557123508, - "c3": 11.289778140129116, - "c4": 31.222699033145645, - "c5": 9.381989419318934, - "c6": -40.04408329898583, - "c7": 16.905418553357393 + "points": { + "c1": 21.39796371040967, + "c2": 37.50367651703547, + "c3": -10.971022890178851, + "c4": -17.612234534996812, + "c5": -36.07482578964939, + "c6": -40.27078291903858, + "c7": 20.14751370296669 }, - "vertexSeeds": { - "c1": 5.173444672601419, - "c2": 5.175372798658444, - "c3": 4.5906629020865966, - "c4": 4.578124745765079, - "c5": 4.708331392479562, - "c6": 5.137854650009145, - "c7": 5.040814088098713 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -89079,23 +89079,23 @@ "year": 1729, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 13.741246457708336, - "c2": 0.741870247507471, - "c3": 23.879245502179877, - "c4": 13.671063667211548, - "c5": -36.64644118015674, - "c6": 20.34304283537184, - "c7": -34.51105086198086 + "points": { + "c1": -7.713812183338852, + "c2": 17.366679983626128, + "c3": 7.750671557162725, + "c4": 29.507289475383672, + "c5": 24.485532367410244, + "c6": 18.784899296446667, + "c7": -28.844586651063665 }, - "vertexSeeds": { - "c1": 6.764323847089058, - "c2": 6.751683390361584, - "c3": 6.102302286845573, - "c4": 5.25681991800956, - "c5": 5.893682683362433, - "c6": 6.828180875104962, - "c7": 5.516508161843847 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319002, + "c3": 8.229311141932502, + "c4": 6.583448913546001, + "c5": 4.937586685159501, + "c6": 3.2917244567730006, + "c7": 1.6458622283865003 }, "rgb": [58, 15, 49] }, @@ -89106,23 +89106,23 @@ "year": 1730, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -1.527664436933975, - "c2": 9.74913471858131, - "c3": -13.306854491166376, - "c4": 18.19559533379566, - "c5": 32.285828572793534, - "c6": -34.50089333726369, - "c7": -3.7071106875537723 + "points": { + "c1": -3.891990374715057, + "c2": 43.27552072071019, + "c3": 24.097484864604667, + "c4": -34.75953259577449, + "c5": 0.9067718202104729, + "c6": -12.145504258630517, + "c7": 34.23136599316666 }, - "vertexSeeds": { - "c1": 5.165577095364117, - "c2": 4.604539488481594, - "c3": 5.010046148011948, - "c4": 5.283561006257527, - "c5": 5.2188383509449965, - "c6": 4.809282433215062, - "c7": 5.026466538948849 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -89133,23 +89133,23 @@ "year": 1729, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 21.330984205677225, - "c2": -9.456057741979652, - "c3": 36.68842158211713, - "c4": -31.044983665783832, - "c5": 16.11030048449488, - "c6": -13.082258498765512, - "c7": -33.577030487519224 + "points": { + "c1": -32.24474666382299, + "c2": -1.3460494458429793, + "c3": -23.356797185545428, + "c4": 23.400968999683293, + "c5": -3.3573648903997864, + "c6": -15.239845593913564, + "c7": 32.18276135701956 }, - "vertexSeeds": { - "c1": 3.99031976926382, - "c2": 3.945251094130787, - "c3": 4.498664838131148, - "c4": 4.546011866023099, - "c5": 4.25567896747483, - "c6": 4.071878833852439, - "c7": 3.8224693773526837 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [77, 76, 132] }, @@ -89160,23 +89160,23 @@ "year": 1729, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 0.9172304724132374, - "c2": -2.6735120448017753, - "c3": 18.990739417003667, - "c4": 13.091431418224651, - "c5": 20.194187189736837, - "c6": -15.08380850149015, - "c7": 26.166721670175818 + "points": { + "c1": 20.062351917400647, + "c2": -29.429948297689783, + "c3": -0.8052803974204394, + "c4": 23.617540117262166, + "c5": -25.646483855867686, + "c6": -30.9201790113912, + "c7": 38.133460583789486 }, - "vertexSeeds": { - "c1": 7.624201154946908, - "c2": 7.729235307339018, - "c3": 7.402673396473267, - "c4": 6.596966452023644, - "c5": 7.243946993717751, - "c6": 6.900769289131703, - "c7": 6.420475553556009 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531207, + "c3": 9.500693481276006, + "c4": 7.600554785020805, + "c5": 5.7004160887656035, + "c6": 3.8002773925104023, + "c7": 1.9001386962552012 }, "rgb": [238, 201, 159] }, @@ -89187,23 +89187,23 @@ "year": 1729, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 29.256135504699905, - "c2": -38.773157182928884, - "c3": -27.284285171816258, - "c4": -23.206969359130735, - "c5": 37.13969228927342, - "c6": -8.652953886052629, - "c7": -6.3226399418116515 + "points": { + "c1": 29.3216125768708, + "c2": -35.78480195107785, + "c3": 27.74717001800237, + "c4": -22.14650157327474, + "c5": -20.801315966962132, + "c6": 29.76226403412698, + "c7": -1.1980825587899417 }, - "vertexSeeds": { - "c1": 4.326624928667063, - "c2": 3.9779583899062305, - "c3": 3.7495195729000517, - "c4": 3.791170430285377, - "c5": 4.379944613408589, - "c6": 3.719717774631747, - "c7": 4.5534970809288575 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.4785020804438265, + "c4": 4.3828016643550605, + "c5": 3.287101248266294, + "c6": 2.191400832177528, + "c7": 1.0957004160887618 }, "rgb": [86, 146, 138] }, @@ -89214,23 +89214,23 @@ "year": 1730, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 32.61140195404309, - "c2": -17.44673146012916, - "c3": -28.572968146065975, - "c4": 4.919087517092244, - "c5": -10.679342807914523, - "c6": 26.453136551257828, - "c7": 19.083197850192356 + "points": { + "c1": 17.33032419372536, + "c2": 5.074838595963037, + "c3": -26.577138182518517, + "c4": 20.527115151042892, + "c5": 39.507389466425664, + "c6": 45.35609259093556, + "c7": 3.6714794559648567 }, - "vertexSeeds": { - "c1": 4.843413176962082, - "c2": 5.239879886555816, - "c3": 4.958728209047715, - "c4": 5.184967283056356, - "c5": 5.0381433615225095, - "c6": 5.049504127231871, - "c7": 5.088447157489934 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -89241,23 +89241,23 @@ "year": 1729, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 23.376657936756374, - "c2": -2.8338407965718453, - "c3": -11.110253910961113, - "c4": 31.885883625286162, - "c5": -4.158806341648791, - "c6": -9.786118746202277, - "c7": -14.580053577510633 + "points": { + "c1": 11.525757625347872, + "c2": 13.010458106216376, + "c3": 14.564916790181861, + "c4": 30.576602996527768, + "c5": 13.070635302009613, + "c6": 19.852448258846152, + "c7": -32.1319143291887 }, - "vertexSeeds": { - "c1": 2.622651033691235, - "c2": 2.8331254767428646, - "c3": 2.8357761451124324, - "c4": 2.6563381938423882, - "c5": 2.414084016307921, - "c6": 2.774764411180528, - "c7": 2.5916202837911166 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.398058252427182, + "c4": 2.718446601941747, + "c5": 2.038834951456311, + "c6": 1.3592233009708734, + "c7": 0.6796116504854355 }, "rgb": [238, 201, 159] }, @@ -89268,23 +89268,23 @@ "year": 1730, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 34.82801870190485, - "c2": -26.521911596815215, - "c3": 0.4743099775987787, - "c4": 35.93870364147118, - "c5": 1.20346602019994, - "c6": -18.67269752620148, - "c7": -39.16864814820714 + "points": { + "c1": -42.919629910154995, + "c2": 16.998450052631412, + "c3": -0.1417382216098062, + "c4": -9.710241521326068, + "c5": -13.622453977503888, + "c6": 6.5125443506715825, + "c7": 35.90187974514187 }, - "vertexSeeds": { - "c1": 4.057852301588927, - "c2": 4.483909515848006, - "c3": 4.37417671888327, - "c4": 4.3608350289303655, - "c5": 4.122067135737784, - "c6": 4.4648627504406795, - "c7": 4.467703838647591 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.6851595006934845, + "c3": 5.570966250577903, + "c4": 4.45677300046232, + "c5": 3.3425797503467423, + "c6": 2.228386500231165, + "c7": 1.1141932501155825 }, "rgb": [222, 0, 59] }, @@ -89295,23 +89295,23 @@ "year": 1729, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 5.36964801507294, - "c2": 17.393019248828914, - "c3": -11.517176463915682, - "c4": -8.209582963396162, - "c5": 33.39103377693017, - "c6": -31.723433381145686, - "c7": 14.30153430892259 + "points": { + "c1": 26.066047659773993, + "c2": 6.718844222092649, + "c3": 22.519780880327907, + "c4": -29.860707841965354, + "c5": -33.646309680168116, + "c6": 15.622905339537681, + "c7": -25.202149684904846 }, - "vertexSeeds": { - "c1": 8.205372607772809, - "c2": 8.086198310970397, - "c3": 6.97771043356159, - "c4": 8.360735753749887, - "c5": 7.175578202339852, - "c6": 8.525774228360804, - "c7": 8.670676814566653 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059637, + "c3": 10.379103097549695, + "c4": 8.303282478039762, + "c5": 6.227461858529819, + "c6": 4.151641239019876, + "c7": 2.0758206195099427 }, "rgb": [222, 0, 59] }, @@ -89322,23 +89322,23 @@ "year": 1730, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 19.780313321462394, - "c2": -31.07950697308228, - "c3": -14.361828734380829, - "c4": 42.85877389259425, - "c5": 32.82722812256228, - "c6": 37.957779025052666, - "c7": 41.96836755624252 + "points": { + "c1": 37.87136054127186, + "c2": -35.6727462829011, + "c3": 42.6425180441307, + "c4": 44.30160158305714, + "c5": 43.402015275579636, + "c6": 3.930159454484375, + "c7": 1.6612870749898292 }, - "vertexSeeds": { - "c1": 5.861494206843071, - "c2": 6.373019272880879, - "c3": 5.7855429465560215, - "c4": 5.870558731023726, - "c5": 5.803840641730125, - "c6": 4.924374337663519, - "c7": 5.136749755852844 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [77, 76, 132] }, @@ -89349,23 +89349,23 @@ "year": 1730, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": 39.823669132068304, - "c2": -36.414742174245404, - "c3": -30.656941743099367, - "c4": 36.18618807988911, - "c5": 26.252072476473998, - "c6": -15.41730340672364, - "c7": -16.79152962158733 + "points": { + "c1": -0.36382087392899365, + "c2": -35.955997916825126, + "c3": 6.978060958376332, + "c4": 33.59610793237772, + "c5": 10.460058533718687, + "c6": 37.63122414955268, + "c7": -35.266323264986866 }, - "vertexSeeds": { - "c1": 7.013609859355974, - "c2": 6.942077340313968, - "c3": 7.105510166012498, - "c4": 6.700950542231046, - "c5": 6.935852382765162, - "c6": 6.99233638429486, - "c7": 7.081681395268723 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334714, + "c4": 6.8053629218677685, + "c5": 5.104022191400821, + "c6": 3.402681460933894, + "c7": 1.701340730466947 }, "rgb": [222, 0, 59] }, @@ -89376,23 +89376,23 @@ "year": 1730, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 38.97251166926707, - "c2": -46.828384808087485, - "c3": -18.64571910341064, - "c4": 6.738630257206658, - "c5": 2.064360359606411, - "c6": 37.31576304002714, - "c7": 10.006945347786377 + "points": { + "c1": -3.870915701209732, + "c2": -33.49309012111878, + "c3": -19.29683460612204, + "c4": 41.97650911071856, + "c5": -33.65913171384041, + "c6": -49.11718131880345, + "c7": 33.049642515733375 }, - "vertexSeeds": { - "c1": 5.777465699657504, - "c2": 5.77124060037254, - "c3": 5.921648523214163, - "c4": 5.48647818403423, - "c5": 6.206392204499959, - "c6": 5.989368454889078, - "c7": 5.4978303992735915 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [238, 201, 159] }, @@ -89403,23 +89403,23 @@ "year": 1730, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 17.35880652714775, - "c2": -1.9674413302606268, - "c3": -49.32884045050024, - "c4": 18.275279671414495, - "c5": 9.708324955246923, - "c6": 36.28040631078794, - "c7": -33.221227939961494 + "points": { + "c1": -28.04067586957771, + "c2": 38.416458551287946, + "c3": -31.225124279434862, + "c4": 7.018203261538758, + "c5": -26.739935688278848, + "c6": -22.706157972557126, + "c7": -40.1049763841502 }, - "vertexSeeds": { - "c1": 4.777908803032971, - "c2": 5.264738429198634, - "c3": 4.8741197325835275, - "c4": 5.169372151199356, - "c5": 5.085590938090557, - "c6": 5.217368921672076, - "c7": 5.052180492339455 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -89430,23 +89430,23 @@ "year": 1730, "resistanceReported": false, "duration": 54000000, - "curveSeeds": { - "c1": -60.36249451179517, - "c2": 44.74012019703996, - "c3": 41.54284941473753, - "c4": -56.37583750790539, - "c5": -29.865078803889276, - "c6": -13.237903235392793, - "c7": -51.42202820155736 + "points": { + "c1": -61.155798012279504, + "c2": -23.47105314944522, + "c3": 50.530153306558205, + "c4": 27.197605133326647, + "c5": -10.762902821505854, + "c6": 59.36405045232553, + "c7": 49.79405420999599 }, - "vertexSeeds": { - "c1": 4.784969480269617, - "c2": 4.7708013877487945, - "c3": 4.830539533492479, - "c4": 4.771574896972176, - "c5": 4.585943170990059, - "c6": 4.939984864959538, - "c7": 4.896615147282053 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296813, + "c3": 5.91770688858067, + "c4": 4.734165510864538, + "c5": 3.5506241331484065, + "c6": 2.3670827554322744, + "c7": 1.183541377716132 }, "rgb": [77, 76, 132] }, @@ -89457,23 +89457,23 @@ "year": 1730, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -48.72911441210002, - "c2": 45.13985707581735, - "c3": -15.829157490241798, - "c4": -6.363650335000543, - "c5": 14.975778331426945, - "c6": -1.1508782880042503, - "c7": 22.834545889688037 + "points": { + "c1": -36.7787818693736, + "c2": 1.5651449865670415, + "c3": -31.738559486088878, + "c4": -1.8678373537354673, + "c5": 33.35270855849418, + "c6": -7.360178236085083, + "c7": 3.090104383201073 }, - "vertexSeeds": { - "c1": 3.687637572132741, - "c2": 3.6582578208627594, - "c3": 3.612196257062805, - "c4": 3.7121739470905215, - "c5": 3.412914786934468, - "c6": 3.4238035713017387, - "c7": 3.7820017728910353 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923716, + "c3": 4.553860379103096, + "c4": 3.6430883032824832, + "c5": 2.732316227461862, + "c6": 1.8215441516412416, + "c7": 0.9107720758206208 }, "rgb": [77, 76, 132] }, @@ -89484,23 +89484,23 @@ "year": 1729, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -35.1430153294893, - "c2": 3.536064793923771, - "c3": 19.244467060371868, - "c4": 7.6078939121595965, - "c5": 33.073918181922345, - "c6": -19.327868516493552, - "c7": -24.813041679760143 + "points": { + "c1": -20.628550846253177, + "c2": -40.30202601504087, + "c3": -35.794074340617186, + "c4": -13.029175428407392, + "c5": 39.03804604033838, + "c6": -19.131197281481512, + "c7": 28.469136611095628 }, - "vertexSeeds": { - "c1": 6.787885644023184, - "c2": 6.784001316978616, - "c3": 6.784727887584336, - "c4": 6.7908451637507605, - "c5": 6.79625801875371, - "c6": 6.782083430956349, - "c7": 6.781163837447949 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117614, + "c3": 8.113730929265001, + "c4": 6.490984743411743, + "c5": 4.86823855755913, + "c6": 3.2454923717058715, + "c7": 1.6227461858532586 }, "rgb": [86, 146, 138] }, @@ -89511,23 +89511,23 @@ "year": 1729, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -23.257467253177296, - "c2": -10.895132683788763, - "c3": 41.41375022074189, - "c4": 19.904368389266516, - "c5": -17.326615409594595, - "c6": 40.834224502912235, - "c7": 32.972682205310576 + "points": { + "c1": -41.54526574083247, + "c2": -10.99532523487104, + "c3": 17.14487943126054, + "c4": -4.346004217970247, + "c5": -24.736556169757026, + "c6": 9.186224543471155, + "c7": -26.67397671731729 }, - "vertexSeeds": { - "c1": 6.771552551696715, - "c2": 6.125949219774511, - "c3": 6.666990570095757, - "c4": 6.691837283535488, - "c5": 5.6440509382081485, - "c6": 6.074999961545588, - "c7": 5.743257177572534 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238559, + "c3": 8.183079056865468, + "c4": 6.546463245492375, + "c5": 4.909847434119276, + "c6": 3.273231622746184, + "c7": 1.636615811373092 }, "rgb": [77, 76, 132] }, @@ -89538,23 +89538,23 @@ "year": 1730, "resistanceReported": false, "duration": 52531200, - "curveSeeds": { - "c1": -13.230952667029364, - "c2": -33.35746983376388, - "c3": -32.212066690846704, - "c4": -12.047400534490137, - "c5": 15.200240665593867, - "c6": -21.69503096409492, - "c7": -8.653289480708096 + "points": { + "c1": -62.66922500987325, + "c2": -35.338911083051485, + "c3": 56.99836408075063, + "c4": 40.25779629430447, + "c5": -59.32610048385843, + "c6": -30.943468522272944, + "c7": 18.730758272517022 }, - "vertexSeeds": { - "c1": 4.2147454878218715, - "c2": 5.29669081384731, - "c3": 4.90963961971703, - "c4": 4.2296799317421625, - "c5": 5.1689944013970734, - "c6": 4.058071747694909, - "c7": 4.914686646702463 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -89565,23 +89565,23 @@ "year": 1731, "resistanceReported": false, "duration": 75859200, - "curveSeeds": { - "c1": 59.22432630883577, - "c2": 7.633890808292875, - "c3": -32.78057126501112, - "c4": 17.181858986196573, - "c5": 20.099194676517584, - "c6": 86.78005949465745, - "c7": -55.51016538442135 + "points": { + "c1": 1.9961824934540005, + "c2": 30.491401217327123, + "c3": -2.4363599552549715, + "c4": 70.48088209389448, + "c5": 61.77981141707417, + "c6": -69.49780185793307, + "c7": 6.484343749235137 }, - "vertexSeeds": { - "c1": 3.8872581876948753, - "c2": 4.144418422303176, - "c3": 3.9030180128968524, - "c4": 3.912229807804141, - "c5": 4.141406294784115, - "c6": 3.8726175370937765, - "c7": 3.879560293979455 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090152, + "c3": 5.224225612575125, + "c4": 4.1793804900601055, + "c5": 3.1345353675450798, + "c6": 2.0896902450300527, + "c7": 1.0448451225150264 }, "rgb": [77, 76, 132] }, @@ -89592,23 +89592,23 @@ "year": 1729, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -9.578369637027418, - "c2": -10.351407385034232, - "c3": 12.381927262090848, - "c4": 29.522456149564633, - "c5": -9.274592486769311, - "c6": -5.797910353376281, - "c7": 29.470382217728172 + "points": { + "c1": 28.59366727180428, + "c2": 22.581489726230394, + "c3": 27.966629336604953, + "c4": -39.85420534520897, + "c5": -34.7639207910135, + "c6": 15.480228349633656, + "c7": -15.409086212054806 }, - "vertexSeeds": { - "c1": 4.737981253752409, - "c2": 4.535601768532907, - "c3": 4.663506670609921, - "c4": 4.6132570218545474, - "c5": 4.510150344700026, - "c6": 4.9748408345001955, - "c7": 5.193079172404271 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -89619,23 +89619,23 @@ "year": 1730, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 18.989707051957247, - "c2": 41.49649373625834, - "c3": 46.788612357141496, - "c4": 32.741619122233665, - "c5": 38.26602794346851, - "c6": 10.70325404634766, - "c7": -1.8911767657268186 + "points": { + "c1": -48.32621850782679, + "c2": 44.27391789072724, + "c3": -21.994636494359867, + "c4": -31.576411674192254, + "c5": -48.30443632994953, + "c6": 34.545323319623954, + "c7": -12.705693304670405 }, - "vertexSeeds": { - "c1": 3.1797461762445587, - "c2": 3.1455649360451208, - "c3": 2.931274924343842, - "c4": 2.9792067877611292, - "c5": 3.1671324661335833, - "c6": 3.0614021336058075, - "c7": 3.2781946782250455 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.022191400832173, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328679, + "c7": 0.8044382801664307 }, "rgb": [58, 15, 49] }, @@ -89646,23 +89646,23 @@ "year": 1730, "resistanceReported": true, "duration": 37670400, - "curveSeeds": { - "c1": 8.589000256656625, - "c2": 40.6692786232273, - "c3": -25.83657160408859, - "c4": 47.055547676504005, - "c5": 42.052383591044205, - "c6": 43.691415767067326, - "c7": 14.834983408662424 + "points": { + "c1": 6.0466851839233655, + "c2": 18.700235510476972, + "c3": -27.15130572952478, + "c4": 48.53133149315522, + "c5": 2.6514247170361926, + "c6": 51.398184473531046, + "c7": 52.991627033242494 }, - "vertexSeeds": { - "c1": 5.092207282744205, - "c2": 4.622364830237774, - "c3": 4.43408823750502, - "c4": 4.916064116900989, - "c5": 5.131488327483635, - "c6": 4.12482713261601, - "c7": 4.180291018546696 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -89673,23 +89673,23 @@ "year": 1729, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": 14.317364987355056, - "c2": 12.091003273635906, - "c3": 4.425872730546072, - "c4": 6.148485039082249, - "c5": 15.76306983986121, - "c6": 3.5346584237748218, - "c7": -7.56274535985194 + "points": { + "c1": 7.065775645398922, + "c2": -5.154558954319281, + "c3": 11.494663290005214, + "c4": -1.3757450865362095, + "c5": -7.80457205903582, + "c6": -8.261247806585288, + "c7": -9.142463817271693 }, - "vertexSeeds": { - "c1": 2.503737657615583, - "c2": 2.457983248312667, - "c3": 2.329856466359293, - "c4": 2.426995223250447, - "c5": 2.5360908370047346, - "c6": 2.4013581050108255, - "c7": 2.465403030012275 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092915, + "c3": 3.051317614424408, + "c4": 2.441054091539529, + "c5": 1.8307905686546457, + "c6": 1.2205270457697621, + "c7": 0.6102635228848835 }, "rgb": [77, 76, 132] }, @@ -89700,23 +89700,23 @@ "year": 1729, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 15.994860163247345, - "c2": 11.810825390432, - "c3": 9.763354014890929, - "c4": -6.31940167744278, - "c5": 24.297505621189323, - "c6": 18.268909809143622, - "c7": 0.013086950936447295 + "points": { + "c1": 10.654383551514826, + "c2": -3.2829617980635035, + "c3": 19.502023850778997, + "c4": 14.243076801309847, + "c5": -29.698278319669182, + "c6": 21.715450500541948, + "c7": 31.926882828009063 }, - "vertexSeeds": { - "c1": 3.4378039794750737, - "c2": 3.396167294485788, - "c3": 3.1484708838477693, - "c4": 3.5226087841581886, - "c5": 3.2765667488483574, - "c6": 3.6338412414842374, - "c7": 3.3840051829288913 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601941, + "c3": 4.368932038834951, + "c4": 3.495145631067961, + "c5": 2.6213592233009706, + "c6": 1.7475728155339805, + "c7": 0.8737864077669902 }, "rgb": [86, 146, 138] }, @@ -89727,23 +89727,23 @@ "year": 1729, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -6.8167195279712125, - "c2": -1.8958159085217083, - "c3": -7.059547843615947, - "c4": -0.9775571182753389, - "c5": 7.783549007494287, - "c6": -16.098900026474997, - "c7": -3.2139805112134194 + "points": { + "c1": -18.01269058422609, + "c2": 7.002279727515877, + "c3": -10.735579091154746, + "c4": 4.887678378853003, + "c5": -8.446497128123465, + "c6": -16.29126092727573, + "c7": 11.033122935281934 }, - "vertexSeeds": { - "c1": 4.829223912265708, - "c2": 4.498266035374127, - "c3": 4.715481225690241, - "c4": 4.73846948163802, - "c5": 4.601167986731523, - "c6": 4.009860767079063, - "c7": 3.885403242778133 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [58, 15, 49] }, @@ -89754,23 +89754,23 @@ "year": 1729, "resistanceReported": true, "duration": 13305600, - "curveSeeds": { - "c1": -7.817399440328128, - "c2": -22.627448814789037, - "c3": -13.616485972019928, - "c4": -1.4315052322492399, - "c5": 14.721335996427698, - "c6": 19.478186440057996, - "c7": 23.988394904406228 + "points": { + "c1": 22.594647638233035, + "c2": 26.118581783086206, + "c3": -23.63410759416836, + "c4": -21.549709730593843, + "c5": 7.016551913117944, + "c6": -8.222912317656078, + "c7": 11.554681056161108 }, - "vertexSeeds": { - "c1": 5.788116498934913, - "c2": 5.385913899162705, - "c3": 5.687537176654145, - "c4": 5.625927199641197, - "c5": 5.786704466858475, - "c6": 5.468895238904514, - "c7": 5.694224063746156 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066562, + "c3": 6.934812760055482, + "c4": 5.547850208044376, + "c5": 4.160887656033294, + "c6": 2.773925104022188, + "c7": 1.3869625520111062 }, "rgb": [86, 146, 138] }, @@ -89781,23 +89781,23 @@ "year": 1729, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": 8.694125447969249, - "c2": 0.6221228491742288, - "c3": 13.428476451951617, - "c4": 8.552534073612492, - "c5": -17.84674679064178, - "c6": -3.364195486233921, - "c7": -11.445822017373393 + "points": { + "c1": -21.01636480121805, + "c2": -17.97221492793163, + "c3": -1.6891669427581242, + "c4": 23.307351181594612, + "c5": 3.976087792583961, + "c6": 10.239320088988514, + "c7": -14.521724642313352 }, - "vertexSeeds": { - "c1": 7.911196187490745, - "c2": 8.374768559071596, - "c3": 8.090925752162077, - "c4": 8.248457806922021, - "c5": 8.35246939454789, - "c6": 7.212687170585212, - "c7": 7.629577116206542 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099863, + "c3": 10.402219140083213, + "c4": 8.321775312066572, + "c5": 6.241331484049931, + "c6": 4.160887656033291, + "c7": 2.080443828016641 }, "rgb": [77, 76, 132] }, @@ -89808,23 +89808,23 @@ "year": 1729, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 28.379949027025184, - "c2": 8.11063597116447, - "c3": -8.399639942824798, - "c4": 8.086459082637361, - "c5": 17.47435954915933, - "c6": -21.152623353902854, - "c7": 25.00260164715433 + "points": { + "c1": 7.7616017093527105, + "c2": 20.31946577062488, + "c3": 4.505468935115417, + "c4": 6.696143910706169, + "c5": -20.697207014103164, + "c6": -20.307564309379863, + "c7": 20.886422720345777 }, - "vertexSeeds": { - "c1": 7.2696223247858685, - "c2": 6.815839086735912, - "c3": 7.05412193139877, - "c4": 7.433121100598684, - "c5": 6.669164463366224, - "c6": 7.493340749003447, - "c7": 6.6450941410221 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.09570041608876, + "c3": 9.24641701340731, + "c4": 7.397133610725845, + "c5": 5.54785020804438, + "c6": 3.6985668053629164, + "c7": 1.8492834026814642 }, "rgb": [222, 0, 59] }, @@ -89835,23 +89835,23 @@ "year": 1729, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 17.637427967306238, - "c2": -33.27505262410102, - "c3": 24.001609910094587, - "c4": -21.62416180066337, - "c5": 0.16117545420667767, - "c6": 22.483945588139512, - "c7": -3.972930154161439 + "points": { + "c1": -16.318144887619304, + "c2": 27.997970502897147, + "c3": -11.476133282506055, + "c4": 34.15706286325667, + "c5": -30.62557687940397, + "c6": 2.214092057647335, + "c7": -26.234024693886173 }, - "vertexSeeds": { - "c1": 3.9966246428947794, - "c2": 3.914665832695272, - "c3": 3.2585722194908535, - "c4": 3.97552343135989, - "c5": 3.2890992210020005, - "c6": 3.01279558791401, - "c7": 2.9205520459287815 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379564, + "c4": 4.6232085067036515, + "c5": 3.467406380027739, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [238, 201, 159] }, @@ -89862,23 +89862,23 @@ "year": 1730, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": -25.87083754962946, - "c2": 26.77328454926821, - "c3": 40.025965329052994, - "c4": 44.97462875548726, - "c5": 25.975606944023042, - "c6": -44.16500793866243, - "c7": -37.97245896625935 + "points": { + "c1": -32.35861149351781, + "c2": -12.634017754853112, + "c3": 42.98427258532155, + "c4": 20.882364151490577, + "c5": 7.878473874493061, + "c6": -34.39435286060184, + "c7": -37.14383841720248 }, - "vertexSeeds": { - "c1": 7.755883040366035, - "c2": 8.172023953917481, - "c3": 8.53749071841707, - "c4": 8.39304782647655, - "c5": 8.473736057072541, - "c6": 8.497880139778731, - "c7": 8.531761950432534 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.399445214979192, + "c3": 10.33287101248267, + "c4": 8.266296809986134, + "c5": 6.199722607489596, + "c6": 4.133148404993059, + "c7": 2.0665742024965374 }, "rgb": [58, 15, 49] }, @@ -89889,23 +89889,23 @@ "year": 1730, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -33.260182138580895, - "c2": -29.279819845090717, - "c3": 13.041939813464879, - "c4": 38.69503167809954, - "c5": -32.264405291070936, - "c6": 30.631036617833857, - "c7": -41.3564302285704 + "points": { + "c1": 3.332720050917054, + "c2": 9.580063124740455, + "c3": -13.987177809051659, + "c4": 17.269713136530697, + "c5": -42.34740364543975, + "c6": 43.559783479225544, + "c7": 10.08536772738988 }, - "vertexSeeds": { - "c1": 5.633380676961319, - "c2": 5.9099614351486265, - "c3": 5.363705470835884, - "c4": 6.214905350922848, - "c5": 5.798452084234302, - "c6": 5.905956625499149, - "c7": 6.14040847924871 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951456, + "c3": 7.44336569579288, + "c4": 5.954692556634304, + "c5": 4.466019417475728, + "c6": 2.977346278317152, + "c7": 1.488673139158576 }, "rgb": [222, 0, 59] }, @@ -89916,23 +89916,23 @@ "year": 1729, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 14.960675085241242, - "c2": -29.00597396459259, - "c3": -33.253885737424945, - "c4": 0.9287867864484696, - "c5": 31.404352557477452, - "c6": 17.586720664324368, - "c7": 14.41581889570407 + "points": { + "c1": 35.3152607276199, + "c2": 34.54976559820632, + "c3": -38.90319660596713, + "c4": -28.91545198038402, + "c5": 22.733116769805832, + "c6": -20.54111009426235, + "c7": -11.184896194082086 }, - "vertexSeeds": { - "c1": 3.298653485233777, - "c2": 3.2516896840973826, - "c3": 3.217442259198633, - "c4": 3.206602825560629, - "c5": 3.2789926057929955, - "c6": 3.242782215032343, - "c7": 3.2826532658482686 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -89943,23 +89943,23 @@ "year": 1729, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -31.740371776716955, - "c2": 8.370554407502382, - "c3": 17.802004449231994, - "c4": 15.778320504558529, - "c5": -31.91293877013413, - "c6": -16.103142054500548, - "c7": 27.057414510167476 + "points": { + "c1": -32.29870076135225, + "c2": -4.176371494839323, + "c3": 17.624336844155835, + "c4": 27.463172795402215, + "c5": 5.640051544711092, + "c6": -6.285888997925973, + "c7": 27.63098578515178 }, - "vertexSeeds": { - "c1": 3.6495939858342106, - "c2": 3.2817792631007014, - "c3": 3.1114627113869444, - "c4": 3.1999184663857965, - "c5": 3.324539833686919, - "c6": 3.597323964525641, - "c7": 3.6242256075627903 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682384, + "c3": 4.415164123901989, + "c4": 3.532131299121589, + "c5": 2.6490984743411943, + "c6": 1.7660656495607945, + "c7": 0.883032824780395 }, "rgb": [77, 76, 132] }, @@ -89970,23 +89970,23 @@ "year": 1729, "resistanceReported": true, "duration": 20995200, - "curveSeeds": { - "c1": -30.451800688645438, - "c2": 21.724616304308633, - "c3": 22.244788472873694, - "c4": 14.687194193456364, - "c5": -26.95695797018554, - "c6": 30.07091280866596, - "c7": -2.3803197455736083 + "points": { + "c1": 34.68361613128751, + "c2": -4.260071377535823, + "c3": 29.441472749948204, + "c4": -20.01970026762451, + "c5": -17.13052110156696, + "c6": -26.928873494990775, + "c7": -22.23823332067348 }, - "vertexSeeds": { - "c1": 13.22401289113486, - "c2": 12.657807485678395, - "c3": 12.746014843161573, - "c4": 12.86417922657427, - "c5": 13.578152978360478, - "c6": 13.484541361780288, - "c7": 12.426350337186886 + "offsets": { + "c1": 22.9126213592233, + "c2": 19.639389736477124, + "c3": 16.366158113730915, + "c4": 13.092926490984738, + "c5": 9.819694868238562, + "c6": 6.546463245492351, + "c7": 3.2732316227461755 }, "rgb": [86, 146, 138] }, @@ -89997,23 +89997,23 @@ "year": 1730, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 3.35333667665779, - "c2": -4.705927356114614, - "c3": -3.3790018494058884, - "c4": -27.25752637713593, - "c5": -27.33765592593182, - "c6": -29.21869322786631, - "c7": 13.835684607937814 + "points": { + "c1": -33.80848678898094, + "c2": -26.9398758075834, + "c3": 1.5480334916059633, + "c4": -28.770510612170412, + "c5": 21.368714639639876, + "c6": 20.04412672349971, + "c7": 8.215777921014976 }, - "vertexSeeds": { - "c1": 6.7277909842167825, - "c2": 6.020946681039556, - "c3": 6.632491717352261, - "c4": 6.071226259342554, - "c5": 6.085692469513037, - "c6": 6.7751193177026225, - "c7": 6.114209859466632 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077666, + "c3": 8.090614886731395, + "c4": 6.472491909385109, + "c5": 4.85436893203884, + "c6": 3.2362459546925546, + "c7": 1.6181229773462704 }, "rgb": [77, 76, 132] }, @@ -90024,23 +90024,23 @@ "year": 1730, "resistanceReported": false, "duration": 50544000, - "curveSeeds": { - "c1": -4.887921118155887, - "c2": -50.12727058302637, - "c3": -0.5153048356926035, - "c4": 58.446323665836616, - "c5": 23.62295273631041, - "c6": -29.625323144210213, - "c7": 57.752033571274524 + "points": { + "c1": -35.278606029314595, + "c2": -21.544060157358864, + "c3": 56.42632702635889, + "c4": 64.7129326290904, + "c5": -44.977902520250254, + "c6": 12.511804518961313, + "c7": 16.479918763609817 }, - "vertexSeeds": { - "c1": 7.43976641457863, - "c2": 7.159962096147198, - "c3": 6.874310522010983, - "c4": 7.293743968498972, - "c5": 7.094678227933002, - "c6": 7.286642597077344, - "c7": 7.32915436017514 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -90051,23 +90051,23 @@ "year": 1730, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -40.04616154831389, - "c2": 41.01058897457517, - "c3": -13.522028623512448, - "c4": 9.801613747727153, - "c5": -31.32432687487287, - "c6": 17.259906856853064, - "c7": 8.228443355981476 + "points": { + "c1": -38.6153984575616, + "c2": 16.16228406815049, + "c3": 13.490350317242054, + "c4": 35.71159408714148, + "c5": -1.1335032355645183, + "c6": 38.4857531702652, + "c7": 36.62220025564018 }, - "vertexSeeds": { - "c1": 7.513392958113104, - "c2": 7.737054583322633, - "c3": 8.23176686137654, - "c4": 7.125734044874122, - "c5": 7.930507910481182, - "c6": 7.5222680196036364, - "c7": 7.173465457540609 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.7877947295423, + "c3": 10.656495607951914, + "c4": 8.525196486361537, + "c5": 6.39389736477115, + "c6": 4.262598243180764, + "c7": 2.131299121590386 }, "rgb": [86, 146, 138] }, @@ -90078,23 +90078,23 @@ "year": 1730, "resistanceReported": false, "duration": 40089600, - "curveSeeds": { - "c1": -37.389016020270354, - "c2": -47.13196262871067, - "c3": -18.24753486134516, - "c4": 24.83315827314862, - "c5": -5.6816588519790585, - "c6": -20.80228558576107, - "c7": 47.76820055987397 + "points": { + "c1": 5.6980858107818975, + "c2": -4.019775918608367, + "c3": 16.57029392012472, + "c4": -19.94874183854718, + "c5": -16.103110644859747, + "c6": 19.564519591480042, + "c7": 7.35189758859854 }, - "vertexSeeds": { - "c1": 6.132836733192088, - "c2": 5.695408566410236, - "c3": 5.884456173245189, - "c4": 5.955604719209254, - "c5": 5.8887316625392, - "c6": 5.539923238361533, - "c7": 5.823437315583956 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871016, + "c3": 7.39713361072585, + "c4": 5.917706888580683, + "c5": 4.4382801664355, + "c6": 2.958853444290333, + "c7": 1.4794267221451665 }, "rgb": [222, 0, 59] }, @@ -90105,23 +90105,23 @@ "year": 1730, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": -27.69957976797077, - "c2": 10.709065685249556, - "c3": 40.75945864065645, - "c4": -9.237115303853564, - "c5": -30.775025478183608, - "c6": 24.858269536915188, - "c7": -42.79571983196742 + "points": { + "c1": 7.012718431098577, + "c2": -59.24602534675784, + "c3": 24.328379326958526, + "c4": -3.9935932376134033, + "c5": 58.21857231525199, + "c6": -40.716340888554925, + "c7": -12.827635891043869 }, - "vertexSeeds": { - "c1": 5.097985936147407, - "c2": 4.7787285151219505, - "c3": 5.339419316820611, - "c4": 5.15805113414415, - "c5": 5.117223332821432, - "c6": 4.86627353986017, - "c7": 5.15949741077417 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784565, + "c4": 5.122515025427641, + "c5": 3.841886269070733, + "c6": 2.5612575127138246, + "c7": 1.2806287563569163 }, "rgb": [77, 76, 132] }, @@ -90132,23 +90132,23 @@ "year": 1730, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -17.714776946740805, - "c2": -24.10013087174805, - "c3": 13.777352814467001, - "c4": 7.874507490015063, - "c5": -21.698601771632227, - "c6": -14.271504520927284, - "c7": 21.249908671322956 + "points": { + "c1": -17.78952342528741, + "c2": -7.947579722827555, + "c3": -36.34571221458432, + "c4": 25.986130580653537, + "c5": -10.697544451799779, + "c6": 11.058738162406016, + "c7": -10.631086298279314 }, - "vertexSeeds": { - "c1": 12.55181347150259, - "c2": 12.55181347150259, - "c3": 12.55181347150259, - "c4": 12.55181347150259, - "c5": 12.55181347150259, - "c6": 12.55181347150259, - "c7": 12.55181347150259 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -90159,23 +90159,23 @@ "year": 1730, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -33.740388609106766, - "c2": -0.6631599909484862, - "c3": 5.1714340890888835, - "c4": 29.43728191138773, - "c5": -6.128841323634546, - "c6": 5.6766419806579975, - "c7": -8.116249934547344 + "points": { + "c1": -10.136664903364775, + "c2": 13.75742011841465, + "c3": 35.73889292332703, + "c4": -11.867023377598247, + "c5": 18.52380064038379, + "c6": 18.01617955181814, + "c7": -11.17096110355519 }, - "vertexSeeds": { - "c1": 9.067253885301605, - "c2": 8.86814729215847, - "c3": 8.774290116501106, - "c4": 8.969598211850581, - "c5": 8.728748843208756, - "c6": 8.858718383033615, - "c7": 9.039292550699264 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904317, + "c3": 10.864539990753576, + "c4": 8.691631992602879, + "c5": 6.518723994452137, + "c6": 4.3458159963014396, + "c7": 2.1729079981506976 }, "rgb": [86, 146, 138] }, @@ -90186,23 +90186,23 @@ "year": 1730, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 16.01940309213162, - "c2": 25.656882929077796, - "c3": -8.807938964187695, - "c4": -19.18136615536646, - "c5": -30.554405499455747, - "c6": -34.46209597393994, - "c7": -9.291359202904232 + "points": { + "c1": -32.95511987660435, + "c2": 5.062543577267604, + "c3": 26.73505992931979, + "c4": -31.93795933700151, + "c5": -4.38017253374769, + "c6": -3.7480924160154103, + "c7": -36.16934877347936 }, - "vertexSeeds": { - "c1": 8.924133915320063, - "c2": 9.041396464585729, - "c3": 10.413524560896661, - "c4": 9.268352346195108, - "c5": 8.856658807923118, - "c6": 10.497176098787294, - "c7": 9.395114838631711 + "offsets": { + "c1": 17.928802588996763, + "c2": 15.367545076282942, + "c3": 12.806287563569123, + "c4": 10.245030050855293, + "c5": 7.683772538141471, + "c6": 5.122515025427641, + "c7": 2.5612575127138206 }, "rgb": [238, 201, 159] }, @@ -90213,23 +90213,23 @@ "year": 1730, "resistanceReported": false, "duration": 50284800, - "curveSeeds": { - "c1": -21.13991492063328, - "c2": -20.959187381997737, - "c3": 30.38212044924549, - "c4": -57.393021315974465, - "c5": -45.556669901391146, - "c6": -31.94538515027582, - "c7": -59.18242646763129 + "points": { + "c1": 54.19069722833487, + "c2": 8.412078784871383, + "c3": -32.045675000317324, + "c4": -29.33957971432531, + "c5": -63.47240718960213, + "c6": 15.934976075394587, + "c7": 1.959787492950369 }, - "vertexSeeds": { - "c1": 6.289858207466217, - "c2": 6.451033051544741, - "c3": 6.540733814226477, - "c4": 6.180296133196403, - "c5": 7.000271277406017, - "c6": 6.58355263651208, - "c7": 6.603876364849023 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [77, 76, 132] }, @@ -90240,23 +90240,23 @@ "year": 1730, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -3.856661396441382, - "c2": 15.937248906008996, - "c3": -33.236042357497766, - "c4": 30.494695767278756, - "c5": -26.232302116493436, - "c6": -37.16805300795272, - "c7": 14.491648422044953 + "points": { + "c1": 31.25465503584128, + "c2": -13.598488025800453, + "c3": 17.97520720014151, + "c4": 24.534570126915227, + "c5": -29.89547169673383, + "c6": -33.10316761978167, + "c7": -3.8859465839114335 }, - "vertexSeeds": { - "c1": 5.6467134782913435, - "c2": 5.6856208846307315, - "c3": 5.6871181646742155, - "c4": 5.909131913988004, - "c5": 6.050522087951638, - "c6": 5.775168368180851, - "c7": 5.6559418313017105 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830781, + "c3": 7.374017568192327, + "c4": 5.899214054553854, + "c5": 4.424410540915401, + "c6": 2.949607027276927, + "c7": 1.4748035136384738 }, "rgb": [77, 76, 132] }, @@ -90267,23 +90267,23 @@ "year": 1729, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -19.406960327943246, - "c2": -3.212083615296674, - "c3": 22.06961753519029, - "c4": -15.206151955836667, - "c5": -3.1295007584049763, - "c6": -9.019877690791029, - "c7": 9.641102825113052 + "points": { + "c1": -14.976995870102678, + "c2": -16.826317614436697, + "c3": -12.761112378266883, + "c4": 13.769075451676883, + "c5": -1.7114414243765275, + "c6": 6.4915408029177115, + "c7": -12.104542485725151 }, - "vertexSeeds": { - "c1": 7.5668864299323735, - "c2": 7.750693974390749, - "c3": 7.7426695226679945, - "c4": 7.58062219819742, - "c5": 7.488673401437689, - "c6": 7.460961415033171, - "c7": 7.633155031730243 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088752, + "c3": 9.246417013407322, + "c4": 7.39713361072585, + "c5": 5.547850208044376, + "c6": 3.6985668053629026, + "c7": 1.8492834026814733 }, "rgb": [77, 76, 132] }, @@ -90294,23 +90294,23 @@ "year": 1730, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -12.197331510184505, - "c2": -1.0782911150569987, - "c3": 20.65446980522521, - "c4": 28.551363144483744, - "c5": 12.975312651049009, - "c6": -10.057867706458996, - "c7": 23.27392337276936 + "points": { + "c1": 4.447561575055488, + "c2": 1.2012839375484816, + "c3": -5.338375735069722, + "c4": 31.40774951739077, + "c5": -19.321845265529376, + "c6": 30.18036014536061, + "c7": -26.217519217825878 }, - "vertexSeeds": { - "c1": 6.899549495445045, - "c2": 5.63491883422511, - "c3": 6.832295851354554, - "c4": 6.304890536458424, - "c5": 5.648455528659078, - "c6": 5.959597722731166, - "c7": 6.887724341324892 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760056, + "c3": 8.391123439667128, + "c4": 6.712898751733706, + "c5": 5.034674063800275, + "c6": 3.356449375866853, + "c7": 1.6782246879334304 }, "rgb": [58, 15, 49] }, @@ -90321,23 +90321,23 @@ "year": 1731, "resistanceReported": false, "duration": 57628800, - "curveSeeds": { - "c1": 23.911259470867165, - "c2": 13.101301899498068, - "c3": 27.472853394190977, - "c4": -18.18155806493271, - "c5": 41.990034320002906, - "c6": -15.604478253891088, - "c7": -43.655072231461574 + "points": { + "c1": -37.34449566153622, + "c2": -74.06883197919133, + "c3": 10.640516728507492, + "c4": 46.18511573643741, + "c5": 42.54183854213156, + "c6": -31.489217819880466, + "c7": 5.100723287888599 }, - "vertexSeeds": { - "c1": 1.894219081039781, - "c2": 2.13390171701383, - "c3": 1.9702172950383932, - "c4": 1.963182885399261, - "c5": 1.9072096261490743, - "c6": 2.1108901089242518, - "c7": 1.9647255322273676 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.0790568654646306, + "c3": 2.5658807212205272, + "c4": 2.0527045769764203, + "c5": 1.5395284327323173, + "c6": 1.0263522884882101, + "c7": 0.5131761442441032 }, "rgb": [222, 0, 59] }, @@ -90348,23 +90348,23 @@ "year": 1730, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 19.298657531380343, - "c2": -20.354045665774137, - "c3": 22.84296625100977, - "c4": 15.538355138519023, - "c5": 0.3780142829144211, - "c6": 21.956310336010986, - "c7": 25.66690120736898 + "points": { + "c1": 11.884393570375828, + "c2": -7.746551663061624, + "c3": -13.819588884439334, + "c4": -14.32165502423167, + "c5": -40.45256303042388, + "c6": -1.412303782264523, + "c7": -35.620582732440724 }, - "vertexSeeds": { - "c1": 7.569323606447903, - "c2": 7.815235268476968, - "c3": 7.778938379402988, - "c4": 7.4897239028864835, - "c5": 7.700833613176294, - "c6": 7.265114099295415, - "c7": 7.5985803160017165 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.34535367545076, + "c3": 9.454461396208979, + "c4": 7.563569116967178, + "c5": 5.67267683772538, + "c6": 3.7817845584835994, + "c7": 1.8908922792417997 }, "rgb": [238, 201, 159] }, @@ -90375,23 +90375,23 @@ "year": 1731, "resistanceReported": false, "duration": 50803200, - "curveSeeds": { - "c1": 12.682769209316675, - "c2": -32.86097052151573, - "c3": 17.84957338237095, - "c4": -62.81596328529119, - "c5": 8.664246337883625, - "c6": -53.955587801777654, - "c7": 14.902008466090422 + "points": { + "c1": 28.27825509472322, + "c2": 19.81973113804864, + "c3": -52.626319212016284, + "c4": 36.319934486473215, + "c5": -31.364171936862107, + "c6": 5.274556370417088, + "c7": 10.054354550151857 }, - "vertexSeeds": { - "c1": 9.715967573938812, - "c2": 10.301039551607891, - "c3": 9.846708742168698, - "c4": 9.593445371216392, - "c5": 9.578980230283854, - "c6": 9.414926420074218, - "c7": 8.906071042455693 + "offsets": { + "c1": 17.702265372168284, + "c2": 15.173370319001394, + "c3": 12.64447526583448, + "c4": 10.115580212667588, + "c5": 7.586685159500697, + "c6": 5.057790106333794, + "c7": 2.5288950531668912 }, "rgb": [222, 0, 59] }, @@ -90402,23 +90402,23 @@ "year": 1731, "resistanceReported": false, "duration": 60566400, - "curveSeeds": { - "c1": -45.84095187737863, - "c2": -53.29221468781485, - "c3": -59.87537744155917, - "c4": -2.366557487384881, - "c5": -20.249870268114343, - "c6": -26.46946144663113, - "c7": 16.11407036347812 + "points": { + "c1": 58.985324143437325, + "c2": 73.21590458994665, + "c3": 73.39503476091001, + "c4": 77.07458994077147, + "c5": 2.8082044649424063, + "c6": 72.24625005228417, + "c7": -18.304293701924124 }, - "vertexSeeds": { - "c1": 4.418287814149839, - "c2": 4.7094234174831735, - "c3": 4.540778053761691, - "c4": 4.587024187888619, - "c5": 4.464282162924028, - "c6": 4.334341989986544, - "c7": 4.3860475488078645 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934815, + "c3": 5.70966250577901, + "c4": 4.56773000462321, + "c5": 3.4257975034674035, + "c6": 2.283865002311605, + "c7": 1.1419325011558066 }, "rgb": [58, 15, 49] }, @@ -90429,23 +90429,23 @@ "year": 1730, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 19.02683426709919, - "c2": 27.48726604874029, - "c3": 24.61963404748103, - "c4": -25.747974872263832, - "c5": 1.660780335004958, - "c6": 3.0353616540356256, - "c7": 11.738141169437206 + "points": { + "c1": -3.042918700849796, + "c2": 30.375740821194093, + "c3": -6.867128218793393, + "c4": -28.016087505301066, + "c5": 22.44394735932213, + "c6": 22.890946178504777, + "c7": -22.52551998238215 }, - "vertexSeeds": { - "c1": 9.51496703722018, - "c2": 10.144044478460964, - "c3": 10.135542544057769, - "c4": 10.029103538171187, - "c5": 9.677921459437027, - "c6": 8.79379100868924, - "c7": 9.312828788586431 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076294, + "c3": 12.112806287563567, + "c4": 9.69024503005085, + "c5": 7.267683772538136, + "c6": 4.845122515025419, + "c7": 2.422561257512703 }, "rgb": [222, 0, 59] }, @@ -90456,23 +90456,23 @@ "year": 1730, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -8.0452473886279, - "c2": -1.4484529355117957, - "c3": 26.167751580337253, - "c4": 10.018431700916274, - "c5": -2.7682192231709344, - "c6": -30.375204408106573, - "c7": 12.583552229919803 + "points": { + "c1": -23.877387406790056, + "c2": 12.930512816636863, + "c3": 25.391040596127084, + "c4": -9.335556793998691, + "c5": -15.381262055707126, + "c6": -17.59933961179486, + "c7": 30.150849198204625 }, - "vertexSeeds": { - "c1": 4.87656760891975, - "c2": 4.959887551794771, - "c3": 4.916867942374798, - "c4": 5.089106873236366, - "c5": 4.890339182274992, - "c6": 4.972316988892482, - "c7": 5.396234335709169 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262137, + "c3": 6.472491909385116, + "c4": 5.177993527508094, + "c5": 3.883495145631072, + "c6": 2.588996763754044, + "c7": 1.294498381877022 }, "rgb": [58, 15, 49] }, @@ -90483,23 +90483,23 @@ "year": 1730, "resistanceReported": false, "duration": 40348800, - "curveSeeds": { - "c1": 48.29813490329433, - "c2": -0.5272164187055282, - "c3": -29.291393286881885, - "c4": -29.279223606755778, - "c5": 28.997270264384575, - "c6": -2.035547740115895, - "c7": 11.995167547399895 + "points": { + "c1": 6.700973093487953, + "c2": -14.231061510380613, + "c3": -19.724578549334673, + "c4": 21.893356111502875, + "c5": -22.41468502026793, + "c6": -31.28001165067054, + "c7": -31.772101972956552 }, - "vertexSeeds": { - "c1": 6.536570933623554, - "c2": 6.750146470120401, - "c3": 6.634117720001275, - "c4": 6.612501261784051, - "c5": 6.449816787790285, - "c6": 6.903558702391442, - "c7": 6.627550414562648 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.01386962552012, + "c3": 8.34489135460009, + "c4": 6.67591308368008, + "c5": 5.006934812760051, + "c6": 3.33795654184004, + "c7": 1.6689782709200298 }, "rgb": [58, 15, 49] }, @@ -90510,23 +90510,23 @@ "year": 1730, "resistanceReported": true, "duration": 25315200, - "curveSeeds": { - "c1": -4.185593017695659, - "c2": -25.448028217501303, - "c3": -21.07097249278049, - "c4": -21.56281930097031, - "c5": -20.609820645834965, - "c6": 7.779919376003043, - "c7": -33.19903742064581 + "points": { + "c1": 10.214354396391428, + "c2": -0.543386295855889, + "c3": -4.452672514198532, + "c4": -29.25722493295895, + "c5": -18.768517973737485, + "c6": 12.149765305598379, + "c7": -33.920292467256786 }, - "vertexSeeds": { - "c1": 6.503566298053859, - "c2": 6.648441863433114, - "c3": 6.617663089347242, - "c4": 6.497891270057175, - "c5": 6.662547629802093, - "c6": 6.590190482592815, - "c7": 6.615194237313949 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876544, + "c3": 7.975034674063829, + "c4": 6.380027739251051, + "c5": 4.785020804438272, + "c6": 3.190013869625493, + "c7": 1.5950069348127784 }, "rgb": [238, 201, 159] }, @@ -90537,23 +90537,23 @@ "year": 1730, "resistanceReported": true, "duration": 25315200, - "curveSeeds": { - "c1": -13.368339661479876, - "c2": -36.35916038037927, - "c3": 22.157529986146564, - "c4": -0.733343722598633, - "c5": -0.27570353676062354, - "c6": -10.346181847219626, - "c7": -2.6611823443519356 + "points": { + "c1": -8.613600993530774, + "c2": 30.105436487102423, + "c3": 14.817825514724476, + "c4": -27.658806031389013, + "c5": 20.61278663562144, + "c6": -0.8717306768759698, + "c7": -35.158896940016376 }, - "vertexSeeds": { - "c1": 6.790405216538221, - "c2": 6.800566360912009, - "c3": 6.89033727008186, - "c4": 6.788339463326504, - "c5": 6.8899380297344885, - "c6": 6.759707850411234, - "c7": 6.745143807882433 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359205, + "c3": 8.252427184466047, + "c4": 6.601941747572825, + "c5": 4.951456310679602, + "c6": 3.3009708737864454, + "c7": 1.6504854368932227 }, "rgb": [77, 76, 132] }, @@ -90564,23 +90564,23 @@ "year": 1730, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 5.9675079002501406, - "c2": -20.54128581381987, - "c3": -6.865845635614399, - "c4": -11.186357156841893, - "c5": -0.9779770120120901, - "c6": 28.602984846513017, - "c7": 11.714675045011667 + "points": { + "c1": 24.567084871001178, + "c2": -3.4682254113735134, + "c3": 7.551666063403708, + "c4": -8.563531939220574, + "c5": -11.930848678975153, + "c6": -12.914030426736026, + "c7": 13.090739860252185 }, - "vertexSeeds": { - "c1": 7.723048980248011, - "c2": 7.729321425174538, - "c3": 7.438067660320782, - "c4": 7.145665346066368, - "c5": 7.137961301645074, - "c6": 7.156069773687691, - "c7": 7.898922692152752 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410545, + "c3": 9.431345353675455, + "c4": 7.545076282940367, + "c5": 5.658807212205279, + "c6": 3.772538141470177, + "c7": 1.8862690707351015 }, "rgb": [58, 15, 49] }, @@ -90591,23 +90591,23 @@ "year": 1730, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -3.1018051784742724, - "c2": 24.75701957775219, - "c3": -22.528617545989313, - "c4": -26.502658323116364, - "c5": -34.32005892893437, - "c6": 16.030255105866168, - "c7": -21.415166145592984 + "points": { + "c1": 10.363020589194363, + "c2": 21.344550489915356, + "c3": -31.1187371437997, + "c4": -24.517132619121735, + "c5": 37.43497546411773, + "c6": 37.20466340532897, + "c7": 25.226105456649776 }, - "vertexSeeds": { - "c1": 4.070681362915556, - "c2": 4.431098656209716, - "c3": 4.259588132515828, - "c4": 4.142234352649733, - "c5": 4.592052182226122, - "c6": 4.335424900083738, - "c7": 4.565009565523253 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572813, + "c3": 5.501618122977348, + "c4": 4.401294498381875, + "c5": 3.30097087378641, + "c6": 2.2006472491909377, + "c7": 1.1003236245954722 }, "rgb": [77, 76, 132] }, @@ -90618,23 +90618,23 @@ "year": 1730, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -2.3986085564633903, - "c2": 26.160575514402467, - "c3": -4.87812002072258, - "c4": 14.391911225579939, - "c5": -10.299404027328762, - "c6": -30.83199240377294, - "c7": -9.995223544845121 + "points": { + "c1": -13.132869511366486, + "c2": 3.0430074850354316, + "c3": 15.7133714504456, + "c4": 12.473004423475025, + "c5": 8.361944481497837, + "c6": 13.299147693954225, + "c7": 0.7677244604158631 }, - "vertexSeeds": { - "c1": 8.10342414926096, - "c2": 7.670751593784422, - "c3": 7.571188111979576, - "c4": 7.733725159809045, - "c5": 7.686461876007662, - "c6": 7.712072592977782, - "c7": 8.11291889429124 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255205, + "c3": 9.916782246879324, + "c4": 7.933425797503463, + "c5": 5.950069348127602, + "c6": 3.966712898751742, + "c7": 1.9833564493758606 }, "rgb": [86, 146, 138] }, @@ -90645,23 +90645,23 @@ "year": 1730, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -2.5218492057883246, - "c2": -17.15040580242443, - "c3": 2.3293368820918943, - "c4": -6.640930198192667, - "c5": -10.918440550768148, - "c6": -22.658920438265593, - "c7": -8.63290184033193 + "points": { + "c1": -2.698097503383348, + "c2": 9.989014369859923, + "c3": -23.13321796695514, + "c4": 0.0325677727555842, + "c5": -20.98698046520188, + "c6": -20.77575202544932, + "c7": -7.413913669578196 }, - "vertexSeeds": { - "c1": 4.475483783622491, - "c2": 5.134134850537365, - "c3": 4.941856966671291, - "c4": 5.286110829858375, - "c5": 4.827733798292648, - "c6": 5.053022112755663, - "c7": 4.1859593295125235 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -90672,23 +90672,23 @@ "year": 1730, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -38.28215884164725, - "c2": 20.473005486631706, - "c3": -5.250802049125454, - "c4": 20.665555933287507, - "c5": -19.066611459645912, - "c6": -21.46011842054, - "c7": -37.61428110908035 + "points": { + "c1": -34.691331828335834, + "c2": 10.406293751374868, + "c3": 10.602738225963307, + "c4": -3.5155291742568338, + "c5": 35.082265418732526, + "c6": 29.41030107765065, + "c7": 30.516321001837547 }, - "vertexSeeds": { - "c1": 5.416362780454706, - "c2": 5.411017049334964, - "c3": 5.414173458913575, - "c4": 5.40540434205679, - "c5": 5.40504013563149, - "c6": 5.402489628988669, - "c7": 5.403125484234973 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291261916, + "c3": 6.472491909385187, + "c4": 5.177993527507944, + "c5": 3.8834951456312155, + "c6": 2.588996763753972, + "c7": 1.2944983818772435 }, "rgb": [238, 201, 159] }, @@ -90699,23 +90699,23 @@ "year": 1730, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -40.26588718048137, - "c2": -6.736126243224106, - "c3": 18.61564089500628, - "c4": 14.860044313986961, - "c5": -36.17617362963892, - "c6": 11.970893473462418, - "c7": -36.68111102872068 + "points": { + "c1": 10.5939942102844, + "c2": 36.32692557016715, + "c3": -32.04136291293657, + "c4": -34.62050657623285, + "c5": -7.689676329312867, + "c6": -2.6063116731717955, + "c7": 18.5077628288618 }, - "vertexSeeds": { - "c1": 6.1478177204756985, - "c2": 6.691610756228192, - "c3": 6.739034990024944, - "c4": 6.405691457667029, - "c5": 6.344812357642115, - "c6": 6.66825083417796, - "c7": 6.142345956754937 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997227, + "c3": 8.044382801664359, + "c4": 6.43550624133149, + "c5": 4.826629680998622, + "c6": 3.217753120665754, + "c7": 1.6088765603328852 }, "rgb": [86, 146, 138] }, @@ -90726,23 +90726,23 @@ "year": 1730, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -23.543415705224884, - "c2": -8.863548153852527, - "c3": -20.315102469577667, - "c4": 6.29963217983169, - "c5": -37.280292553054586, - "c6": 30.448712321857776, - "c7": -35.08108278096477 + "points": { + "c1": -8.135451837541424, + "c2": 13.426218209466029, + "c3": -21.843880857915902, + "c4": 3.6694124376288713, + "c5": -24.80807607810622, + "c6": -19.837569604648838, + "c7": -28.80536291645125 }, - "vertexSeeds": { - "c1": 8.46481134108451, - "c2": 9.444600241943231, - "c3": 10.149144385394974, - "c4": 9.443771327915659, - "c5": 9.676556911303999, - "c6": 9.59876127015596, - "c7": 8.601745317742699 + "offsets": { + "c1": 17.60517799352751, + "c2": 15.090152565880722, + "c3": 12.575127138233933, + "c4": 10.060101710587142, + "c5": 7.5450762829403555, + "c6": 5.030050855293568, + "c7": 2.515025427646779 }, "rgb": [77, 76, 132] }, @@ -90753,23 +90753,23 @@ "year": 1730, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -16.091839573447306, - "c2": 14.622028471382887, - "c3": 1.8264107417068587, - "c4": 18.591357139491254, - "c5": -28.154051054580446, - "c6": -24.587546719854934, - "c7": 26.517881075629983 + "points": { + "c1": -1.1898775023002983, + "c2": -7.837956936522659, + "c3": -10.750170103340714, + "c4": -4.0201090847234795, + "c5": -9.31502012350802, + "c6": 19.868225434930903, + "c7": -18.36511132019266 }, - "vertexSeeds": { - "c1": 5.940510670771128, - "c2": 5.632082540072631, - "c3": 5.862033972715174, - "c4": 5.697457651434023, - "c5": 5.836874747657781, - "c6": 5.930436520274968, - "c7": 5.6369316638725655 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388358, + "c3": 7.119741100323642, + "c4": 5.695792880258895, + "c5": 4.271844660194179, + "c6": 2.8478964401294635, + "c7": 1.423948220064716 }, "rgb": [238, 201, 159] }, @@ -90780,23 +90780,23 @@ "year": 1730, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 19.693562295719403, - "c2": 25.48334747279805, - "c3": 31.208762017787656, - "c4": -4.066943277115065, - "c5": -14.184863373571496, - "c6": 1.3577886005022322, - "c7": -31.805291000771472 + "points": { + "c1": -30.25256860740134, + "c2": 14.787267517223206, + "c3": 12.387660248139625, + "c4": -21.177250721173717, + "c5": 16.556668523099212, + "c6": -35.02910350886288, + "c7": -24.93956567195996 }, - "vertexSeeds": { - "c1": 2.519830143788894, - "c2": 2.5879135669450726, - "c3": 2.894081753066237, - "c4": 3.118008574513791, - "c5": 2.8896981057690274, - "c6": 2.844227182510279, - "c7": 2.511221689797152 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299603, + "c4": 2.995839112343967, + "c5": 2.2468793342579745, + "c6": 1.4979195561719814, + "c7": 0.748959778085993 }, "rgb": [222, 0, 59] }, @@ -90807,23 +90807,23 @@ "year": 1730, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -5.311677467674098, - "c2": -32.36086282735128, - "c3": 5.591384222520347, - "c4": 12.342102197039374, - "c5": 25.0333755088201, - "c6": 27.89764141481823, - "c7": 18.77832455830547 + "points": { + "c1": 23.016398901006, + "c2": -6.461905406295184, + "c3": 30.821967352484577, + "c4": 24.743549752293134, + "c5": -14.259621568658961, + "c6": -7.034323852287841, + "c7": 8.835415605529384 }, - "vertexSeeds": { - "c1": 2.6664399266091547, - "c2": 2.8722695442911395, - "c3": 2.8628543067511267, - "c4": 2.915641988746377, - "c5": 2.8689674015931637, - "c6": 2.589002846163302, - "c7": 2.957486395066087 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274617, + "c3": 3.60610263522885, + "c4": 2.8848821081830787, + "c5": 2.163661581137307, + "c6": 1.4424410540915404, + "c7": 0.7212205270457691 }, "rgb": [77, 76, 132] }, @@ -90834,23 +90834,23 @@ "year": 1730, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -27.565660584942115, - "c2": -11.582548395000423, - "c3": -32.63014842725168, - "c4": -11.295654508606258, - "c5": 3.84593466312176, - "c6": 23.878636743207053, - "c7": -21.818101997510354 + "points": { + "c1": -2.376286911766705, + "c2": 22.037316820152142, + "c3": -18.460298591254478, + "c4": -28.46591605942022, + "c5": -37.79019659594449, + "c6": 16.940553903226082, + "c7": -16.90765686737223 }, - "vertexSeeds": { - "c1": 2.3322135880536057, - "c2": 2.027183492261512, - "c3": 2.129055687022539, - "c4": 2.195750669979824, - "c5": 2.1019286426582267, - "c6": 2.087997011973537, - "c7": 2.1092901084786186 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188627, + "c3": 2.981969486823856, + "c4": 2.385575589459083, + "c5": 1.7891816920943124, + "c6": 1.1927877947295416, + "c7": 0.5963938973647708 }, "rgb": [77, 76, 132] }, @@ -90861,23 +90861,23 @@ "year": 1730, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -4.781042704542685, - "c2": 19.07770393805953, - "c3": -10.713217379505931, - "c4": 0.18904766280483187, - "c5": 19.366126949552317, - "c6": -24.924641611015005, - "c7": -17.267513560994285 + "points": { + "c1": 29.462215063799917, + "c2": -38.320233266822356, + "c3": 7.626624249843331, + "c4": -9.539247983091574, + "c5": -19.276689957730955, + "c6": -23.886293982139023, + "c7": 38.116086099125894 }, - "vertexSeeds": { - "c1": 5.854010407723533, - "c2": 5.432464520189928, - "c3": 5.425304061219326, - "c4": 5.985408940529722, - "c5": 5.921940263929389, - "c6": 5.441199532917513, - "c7": 5.422012466136839 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509015, + "c3": 7.1890892279241765, + "c4": 5.751271382339351, + "c5": 4.313453536754513, + "c6": 2.8756356911696757, + "c7": 1.4378178455848378 }, "rgb": [86, 146, 138] }, @@ -90888,23 +90888,23 @@ "year": 1730, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -24.14505487678389, - "c2": 30.785556358383012, - "c3": 18.34103522701222, - "c4": -10.661471012505906, - "c5": -31.617248799135695, - "c6": -26.762565359992887, - "c7": 10.622771003886754 + "points": { + "c1": -35.63288041496037, + "c2": -23.60690708183395, + "c3": 47.09430631671464, + "c4": -0.8549015212421196, + "c5": -9.692289280520356, + "c6": 12.362007795518416, + "c7": -17.939524456079553 }, - "vertexSeeds": { - "c1": 4.5042787926791545, - "c2": 4.679714034292862, - "c3": 4.202541580347633, - "c4": 4.599777063619452, - "c5": 5.16830546866572, - "c6": 5.007103812341721, - "c7": 4.5686185253528 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -90915,23 +90915,23 @@ "year": 1730, "resistanceReported": false, "duration": 7516800, - "curveSeeds": { - "c1": 14.883955169232024, - "c2": 2.2084969896496673, - "c3": -0.5522573798538488, - "c4": -17.819715936862607, - "c5": -4.784830082800953, - "c6": 17.821415367355513, - "c7": -11.213207443428047 + "points": { + "c1": -13.88017820337938, + "c2": -9.716608143616712, + "c3": -9.817528831686634, + "c4": 3.2724177596242896, + "c5": 14.84474389764236, + "c6": 2.7051176672514465, + "c7": -1.3378356642575113 }, - "vertexSeeds": { - "c1": 4.845687988490016, - "c2": 4.568270461295069, - "c3": 4.721545633744802, - "c4": 5.210528208839909, - "c5": 4.656815223219402, - "c6": 4.67927299167579, - "c7": 4.815188692639548 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -90942,23 +90942,23 @@ "year": 1730, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 9.97469229594519, - "c2": -29.795976262461892, - "c3": -39.0345888330274, - "c4": -22.977202447946464, - "c5": -41.89285277497284, - "c6": 5.274107598234444, - "c7": -42.89982664749493 + "points": { + "c1": -1.9191893535844429, + "c2": -38.72736586001057, + "c3": -25.655219346390645, + "c4": 26.895434413337355, + "c5": 25.656999543696287, + "c6": 12.49244922348224, + "c7": 3.1843690437492143 }, - "vertexSeeds": { - "c1": 6.552226032821592, - "c2": 6.736724217168785, - "c3": 6.830202219427991, - "c4": 6.228863148626485, - "c5": 5.98929032375852, - "c6": 6.849380869748162, - "c7": 6.418155800128859 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066578, + "c4": 6.657420249653264, + "c5": 4.993065187239951, + "c6": 3.3287101248266384, + "c7": 1.6643550624133254 }, "rgb": [77, 76, 132] }, @@ -90969,23 +90969,23 @@ "year": 1730, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -29.650012882842425, - "c2": 14.175587027246081, - "c3": 21.809357525050977, - "c4": -4.456406243979526, - "c5": 4.991002181598297, - "c6": 18.39296393211505, - "c7": -21.111510188767056 + "points": { + "c1": -4.523152860741433, + "c2": -9.922742523634188, + "c3": 6.88414724319302, + "c4": -32.130852188415986, + "c5": 15.73552566161991, + "c6": 32.70420806579787, + "c7": 30.07197184622862 }, - "vertexSeeds": { - "c1": 8.047157147503246, - "c2": 8.024638620005188, - "c3": 8.237905713005965, - "c4": 8.04536163705483, - "c5": 8.039621221609393, - "c6": 8.178273246391985, - "c7": 8.136453241008919 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214956, + "c3": 9.893666204345823, + "c4": 7.914932963476638, + "c5": 5.936199722607505, + "c6": 3.957466481738319, + "c7": 1.9787332408691858 }, "rgb": [222, 0, 59] }, @@ -90996,23 +90996,23 @@ "year": 1730, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 14.260291905272311, - "c2": -22.30027360136868, - "c3": 32.02058797502043, - "c4": -5.494521980054021, - "c5": -34.47015680561849, - "c6": 22.666538443273183, - "c7": -8.853121706227821 + "points": { + "c1": 19.044974181825623, + "c2": -4.039644015444075, + "c3": -13.425314797427276, + "c4": 29.65692662657125, + "c5": -18.953200757912718, + "c6": 3.2599585254434302, + "c7": 17.793969796448074 }, - "vertexSeeds": { - "c1": 1.1852331606217616, - "c2": 1.1852331606217616, - "c3": 1.1852331606217616, - "c4": 1.1852331606217616, - "c5": 1.1852331606217616, - "c6": 1.1852331606217616, - "c7": 1.1852331606217616 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -91023,23 +91023,23 @@ "year": 1730, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 2.493760158777242, - "c2": 26.984939891130566, - "c3": 10.460329637959909, - "c4": 19.786019845189777, - "c5": 21.574917618956412, - "c6": 17.55755481235049, - "c7": 28.603910467515526 + "points": { + "c1": -8.749797596605518, + "c2": -33.585217583334604, + "c3": 20.294336057527623, + "c4": -26.182349204702636, + "c5": 18.093369275767884, + "c6": 31.81824654208522, + "c7": -28.950062785653415 }, - "vertexSeeds": { - "c1": 5.347666905584857, - "c2": 5.525059762645103, - "c3": 5.453280712096601, - "c4": 5.523056245861104, - "c5": 5.30876934715614, - "c6": 5.34249260578374, - "c7": 5.268689674794841 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543675, + "c3": 6.634304207119747, + "c4": 5.307443365695784, + "c5": 3.9805825242718553, + "c6": 2.653721682847892, + "c7": 1.3268608414239635 }, "rgb": [86, 146, 138] }, @@ -91050,23 +91050,23 @@ "year": 1730, "resistanceReported": true, "duration": 23587200, - "curveSeeds": { - "c1": 9.675488368524604, - "c2": -34.60545583864801, - "c3": -27.457974210505657, - "c4": -25.045788667354834, - "c5": -2.1395033674807706, - "c6": -27.165006622510212, - "c7": 24.013559456438827 + "points": { + "c1": -19.392523979455333, + "c2": -37.673414086190384, + "c3": 8.330671913007734, + "c4": -37.190926885691574, + "c5": -36.61868564853478, + "c6": -12.296844120944662, + "c7": 31.17235320789419 }, - "vertexSeeds": { - "c1": 8.606156840790193, - "c2": 8.573641961067743, - "c3": 8.212849494416481, - "c4": 8.879897473697001, - "c5": 8.471731394850146, - "c6": 8.387364983779838, - "c7": 8.698502988998193 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306515, + "c3": 11.09570041608876, + "c4": 8.876560332871007, + "c5": 6.657420249653251, + "c6": 4.438280166435496, + "c7": 2.2191400832177415 }, "rgb": [222, 0, 59] }, @@ -91077,23 +91077,23 @@ "year": 1730, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -22.197527167994963, - "c2": 7.079837372435691, - "c3": 23.07041009966627, - "c4": -25.132246643353685, - "c5": -17.028744854056786, - "c6": -23.62939687849026, - "c7": 31.15606211281571 + "points": { + "c1": -44.25949396517879, + "c2": -24.068979553293563, + "c3": 20.2253641805114, + "c4": 6.548450943946925, + "c5": -25.27959745371497, + "c6": -13.187752256492956, + "c7": 3.5431886896595515 }, - "vertexSeeds": { - "c1": 3.6115957538910375, - "c2": 3.5771901606833847, - "c3": 3.6687965238834446, - "c4": 3.841527234705131, - "c5": 3.8369337262828886, - "c6": 3.743654963500659, - "c7": 3.6950707528990936 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044387, + "c3": 4.623208506703651, + "c4": 3.698566805362925, + "c5": 2.773925104022188, + "c6": 1.8492834026814624, + "c7": 0.9246417013407366 }, "rgb": [58, 15, 49] }, @@ -91104,23 +91104,23 @@ "year": 1730, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -14.791538589578408, - "c2": 13.328726233995447, - "c3": 14.603560997752503, - "c4": -6.666994031242226, - "c5": 15.120919994459022, - "c6": -25.337955192011634, - "c7": -32.152600265393 + "points": { + "c1": -5.751645016256873, + "c2": 29.958889323729267, + "c3": -38.89348590793255, + "c4": -22.98755783834556, + "c5": 13.997233106098939, + "c6": 38.9782229043101, + "c7": -34.27032557080284 }, - "vertexSeeds": { - "c1": 6.6927065922408815, - "c2": 6.541584908722322, - "c3": 6.028957763508443, - "c4": 6.135885821973048, - "c5": 6.876179094773487, - "c6": 5.8920075396715115, - "c7": 6.649363218422628 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278775, + "c3": 8.206195099398988, + "c4": 6.564956079519188, + "c5": 4.9237170596393875, + "c6": 3.2824780397596, + "c7": 1.6412390198798 }, "rgb": [58, 15, 49] }, @@ -91131,23 +91131,23 @@ "year": 1730, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 34.25676326542656, - "c2": 18.830091406286947, - "c3": 31.429818776923867, - "c4": -10.432554462713174, - "c5": -0.13465164059736878, - "c6": 28.116421250059517, - "c7": 1.5985223937030923 + "points": { + "c1": 14.055116106618357, + "c2": -19.567264325014733, + "c3": -33.451519035329504, + "c4": 30.227618146490016, + "c5": -2.177766008750808, + "c6": 17.43885766922635, + "c7": 10.683568437287882 }, - "vertexSeeds": { - "c1": 7.4850086783728225, - "c2": 7.46201068088094, - "c3": 7.511147938780642, - "c4": 7.56256998539502, - "c5": 8.08149278605881, - "c6": 7.555532362265098, - "c7": 7.74897126523396 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812755, + "c3": 9.662505779010642, + "c4": 7.73000462320851, + "c5": 5.7975034674063775, + "c6": 3.865002311604265, + "c7": 1.9325011558021326 }, "rgb": [222, 0, 59] }, @@ -91158,23 +91158,23 @@ "year": 1730, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -3.8250360809208033, - "c2": 39.421557955711584, - "c3": -40.12705938198286, - "c4": -37.404852312277015, - "c5": -44.94434553931357, - "c6": 40.69398061282977, - "c7": 7.304566021502353 + "points": { + "c1": 6.275048242779945, + "c2": 16.320763668731722, + "c3": 14.173312176097632, + "c4": -20.642429558108194, + "c5": 14.336028682067003, + "c6": 3.1387705507379167, + "c7": 37.43432279519619 }, - "vertexSeeds": { - "c1": 4.765394351865313, - "c2": 4.744212565759047, - "c3": 4.626082978863138, - "c4": 4.65184287458619, - "c5": 5.093754100224807, - "c6": 5.094514988688845, - "c7": 4.836466882129687 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -91185,23 +91185,23 @@ "year": 1730, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 15.073585477305052, - "c2": 22.482914124984312, - "c3": 15.955373109387878, - "c4": -2.4485684887603654, - "c5": -1.538403406751634, - "c6": 23.575053123870788, - "c7": -0.9978963840729769 + "points": { + "c1": 10.719877038539046, + "c2": -8.44512713724719, + "c3": 22.573413498062912, + "c4": 14.885179383239873, + "c5": -3.3052853408482257, + "c6": 23.67324709160639, + "c7": -6.713732137787801 }, - "vertexSeeds": { - "c1": 7.135540327493771, - "c2": 7.111726579021948, - "c3": 6.996200799097115, - "c4": 6.991005218355159, - "c5": 7.09320177412271, - "c6": 7.1213801238770085, - "c7": 7.297571255409026 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -91212,23 +91212,23 @@ "year": 1730, "resistanceReported": false, "duration": 3628800, - "curveSeeds": { - "c1": 1.1082001964843666, - "c2": 2.0176325563113675, - "c3": 5.289165366861855, - "c4": 9.1564655063228, - "c5": 1.327795580793687, - "c6": -6.66281398658296, - "c7": 9.089232823111473 + "points": { + "c1": -3.2776131936619066, + "c2": -6.338211110037065, + "c3": 5.510216711344206, + "c4": -0.6966676642091088, + "c5": -1.0929436651867679, + "c6": 14.307514441905816, + "c7": -5.751131259946362 }, - "vertexSeeds": { - "c1": 4.475702920581395, - "c2": 4.911578166726006, - "c3": 4.557721088985131, - "c4": 5.16557873111663, - "c5": 5.053647017028831, - "c6": 4.257106336930917, - "c7": 5.026004187712241 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -91239,23 +91239,23 @@ "year": 1731, "resistanceReported": false, "duration": 45964800, - "curveSeeds": { - "c1": 31.791339174289917, - "c2": 39.34560730789039, - "c3": -19.60053210293446, - "c4": -6.8703431247693985, - "c5": 4.125807557628306, - "c6": -52.78822661349832, - "c7": 20.819984902794218 + "points": { + "c1": 7.373653113425533, + "c2": -49.66886060282074, + "c3": -31.043186491433456, + "c4": -44.911525341495775, + "c5": -10.45752739885264, + "c6": -20.609949763176324, + "c7": 57.56073867394814 }, - "vertexSeeds": { - "c1": 4.402912119730471, - "c2": 4.254488449956691, - "c3": 4.405018059701775, - "c4": 4.478193220302026, - "c5": 4.52799744516423, - "c6": 4.1736051385514665, - "c7": 4.123371901359617 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532597, + "c3": 5.478502080443827, + "c4": 4.382801664355065, + "c5": 3.2871012482662945, + "c6": 2.1914008321775325, + "c7": 1.0957004160887702 }, "rgb": [58, 15, 49] }, @@ -91266,23 +91266,23 @@ "year": 1730, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -21.222688161240626, - "c2": -33.82402345314238, - "c3": 6.292676250751491, - "c4": 17.86197948122362, - "c5": -28.995299864026304, - "c6": 27.209017924245885, - "c7": -15.276287266190838 + "points": { + "c1": -22.21759761876002, + "c2": 12.699101204740153, + "c3": -13.912217489163307, + "c4": -35.83548520457847, + "c5": -3.290816432169919, + "c6": -0.8513317311538344, + "c7": 24.920810185729977 }, - "vertexSeeds": { - "c1": 4.693423567366352, - "c2": 4.831271387067381, - "c3": 5.07656694684485, - "c4": 5.5606278103637425, - "c5": 4.882214044773265, - "c6": 5.42971310600478, - "c7": 4.525885698809192 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704577, + "c3": 6.726768377253814, + "c4": 5.381414701803049, + "c5": 4.036061026352286, + "c6": 2.6907073509015222, + "c7": 1.3453536754507636 }, "rgb": [77, 76, 132] }, @@ -91293,23 +91293,23 @@ "year": 1730, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -10.258362243384752, - "c2": -30.43271411026614, - "c3": -4.553307639056968, - "c4": 2.694688870718771, - "c5": 34.92601566171397, - "c6": -15.03678381928152, - "c7": -24.591607145850357 + "points": { + "c1": 38.74273288153483, + "c2": -6.213480474361255, + "c3": -1.5028225183779185, + "c4": -13.697931626821294, + "c5": -8.93254442099962, + "c6": -19.971015488100413, + "c7": -11.228916534071061 }, - "vertexSeeds": { - "c1": 7.720797659969395, - "c2": 8.125103950078831, - "c3": 7.7787723599682, - "c4": 8.421364627867659, - "c5": 8.105772148745562, - "c6": 8.068898392698905, - "c7": 7.665947341044626 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.17105871474803, + "c4": 8.13684697179844, + "c5": 6.102635228848828, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [86, 146, 138] }, @@ -91320,23 +91320,23 @@ "year": 1730, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": -0.38735468967356823, - "c2": 13.187781197658751, - "c3": -12.463798531352262, - "c4": 18.118955614961386, - "c5": 3.012177035789726, - "c6": 14.662194294709373, - "c7": 1.3375355124343002 + "points": { + "c1": 9.006077454543362, + "c2": -7.896173881193697, + "c3": 7.9000435154760495, + "c4": -5.8737982826289805, + "c5": -13.01328916162084, + "c6": -17.0162431529327, + "c7": -6.791725965458218 }, - "vertexSeeds": { - "c1": 2.410548604985899, - "c2": 2.0760139625535805, - "c3": 2.0835205753842816, - "c4": 2.267979689560941, - "c5": 2.2425664342424354, - "c6": 2.123473379795415, - "c7": 2.491513833808551 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288503, + "c3": 3.0050855293573737, + "c4": 2.4040684234859, + "c5": 1.8030513176144238, + "c6": 1.20203421174295, + "c7": 0.6010171058714762 }, "rgb": [222, 0, 59] }, @@ -91347,23 +91347,23 @@ "year": 1730, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -12.819335066879017, - "c2": -4.520982176031566, - "c3": 8.715324349455607, - "c4": 12.458474617109133, - "c5": 25.00025073840831, - "c6": -36.92012379550498, - "c7": -35.24675051843392 + "points": { + "c1": -24.400202586984037, + "c2": -33.76400652128616, + "c3": -30.828799694832824, + "c4": 32.10644251146962, + "c5": 18.067905701159354, + "c6": -14.670204474446827, + "c7": -18.32098546586431 }, - "vertexSeeds": { - "c1": 9.745597117534446, - "c2": 10.476896282266495, - "c3": 10.329933606477242, - "c4": 9.851778560684703, - "c5": 9.68439016653449, - "c6": 10.536616458306069, - "c7": 10.600803299379308 + "offsets": { + "c1": 17.702265372168284, + "c2": 15.173370319001382, + "c3": 12.64447526583448, + "c4": 10.115580212667576, + "c5": 7.586685159500709, + "c6": 5.057790106333806, + "c7": 2.528895053166903 }, "rgb": [77, 76, 132] }, @@ -91374,23 +91374,23 @@ "year": 1730, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -19.061672632477457, - "c2": -11.662607832633032, - "c3": 19.608376780259483, - "c4": -7.729515862367101, - "c5": -13.328384946583153, - "c6": -16.99479444416886, - "c7": -16.106892719666778 + "points": { + "c1": 13.894186942974976, + "c2": -22.721752712330716, + "c3": -9.996389226953184, + "c4": -34.71261994644289, + "c5": 10.231835787030306, + "c6": 17.276996065374846, + "c7": 33.75058665789068 }, - "vertexSeeds": { - "c1": 6.08613447416174, - "c2": 5.843629164465169, - "c3": 5.568112137373357, - "c4": 5.984031656009831, - "c5": 6.090620390093913, - "c6": 5.729725938092354, - "c7": 5.6626767612232705 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -91401,23 +91401,23 @@ "year": 1731, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -31.66135012737757, - "c2": 15.979631007049548, - "c3": 44.720162929603944, - "c4": 26.84644435578697, - "c5": 45.70644466846285, - "c6": -10.754500468287553, - "c7": -39.2923956967928 + "points": { + "c1": -10.723107183126238, + "c2": 28.402215303891964, + "c3": 44.30194864472308, + "c4": 27.933083899732054, + "c5": 41.07913383124125, + "c6": -17.45941245332171, + "c7": -10.912283063078952 }, - "vertexSeeds": { - "c1": 2.39907079765815, - "c2": 2.7692183970292654, - "c3": 2.5583830459953782, - "c4": 2.371090034857374, - "c5": 2.325225490571422, - "c6": 2.5979606972555183, - "c7": 2.802791232709934 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.467406380027737, + "c4": 2.7739251040221906, + "c5": 2.080443828016644, + "c6": 1.3869625520110977, + "c7": 0.6934812760055465 }, "rgb": [58, 15, 49] }, @@ -91428,23 +91428,23 @@ "year": 1730, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -40.244325706504455, - "c2": 36.11916873282612, - "c3": -4.14198049818458, - "c4": 7.356598550598449, - "c5": -37.09201472748338, - "c6": 13.79623507031446, - "c7": 3.1774756682713203 + "points": { + "c1": -20.976850500487167, + "c2": -23.742203815850033, + "c3": 37.9798719948873, + "c4": 14.401048942563477, + "c5": -31.656710362891275, + "c6": -43.37131371032624, + "c7": -26.603565246379564 }, - "vertexSeeds": { - "c1": 7.14950722483588, - "c2": 6.765376677872577, - "c3": 6.908232001293641, - "c4": 6.551744580577916, - "c5": 6.56409287332847, - "c6": 7.0940113791641055, - "c7": 6.393042972107976 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962551, + "c3": 8.599167822468793, + "c4": 6.879334257975034, + "c5": 5.1595006934812755, + "c6": 3.439667128987517, + "c7": 1.7198335644937586 }, "rgb": [77, 76, 132] }, @@ -91455,23 +91455,23 @@ "year": 1730, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -24.112709359805464, - "c2": 26.954342082712063, - "c3": -20.88184668485279, - "c4": -21.480724161150814, - "c5": -4.817083469670109, - "c6": -11.261210269408714, - "c7": -20.604123052438396 + "points": { + "c1": 6.036712312895695, + "c2": 7.243270729264488, + "c3": 13.88727496352341, + "c4": 28.56414702363452, + "c5": -19.028457331674694, + "c6": -29.71093138001771, + "c7": 28.421624932725628 }, - "vertexSeeds": { - "c1": 2.412415093205357, - "c2": 2.453235109064555, - "c3": 2.5634578491643523, - "c4": 2.5329977066276745, - "c5": 2.6009091230128, - "c6": 2.4686938472152775, - "c7": 2.417964325296677 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429953, + "c3": 3.1206657420249666, + "c4": 2.496532593619969, + "c5": 1.8723994452149824, + "c6": 1.2482662968099845, + "c7": 0.6241331484049922 }, "rgb": [86, 146, 138] }, @@ -91482,23 +91482,23 @@ "year": 1731, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -43.37402767701952, - "c2": 21.92327378561461, - "c3": 2.431329463190089, - "c4": 39.73346207327269, - "c5": 28.715400797702472, - "c6": 14.79775978358586, - "c7": 36.22382246861281 + "points": { + "c1": 44.27464740640451, + "c2": -44.41637240216939, + "c3": -6.578880625721077, + "c4": -21.312899346256525, + "c5": 3.7734742072630354, + "c6": -12.231701128953162, + "c7": 42.11599993022355 }, - "vertexSeeds": { - "c1": 6.337264769067488, - "c2": 6.388992527161412, - "c3": 7.067368831732079, - "c4": 6.676344584389277, - "c5": 7.134688049559185, - "c6": 6.333473143815567, - "c7": 7.061057296533885 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962551, + "c3": 8.599167822468793, + "c4": 6.879334257975034, + "c5": 5.1595006934812755, + "c6": 3.439667128987517, + "c7": 1.7198335644937586 }, "rgb": [58, 15, 49] }, @@ -91509,23 +91509,23 @@ "year": 1730, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 31.530699833663398, - "c2": 9.348490429423457, - "c3": 14.940643151342464, - "c4": -24.14688524840123, - "c5": 37.93940689777434, - "c6": -17.91890210675937, - "c7": 31.369045776082977 + "points": { + "c1": 27.297911055701924, + "c2": -22.93260544345837, + "c3": 5.317006701139455, + "c4": -16.485847995637833, + "c5": -33.72410335010137, + "c6": -31.427844542104232, + "c7": 35.51953087530688 }, - "vertexSeeds": { - "c1": 5.815573493382121, - "c2": 5.634944664588676, - "c3": 5.794129603581466, - "c4": 5.701845370676952, - "c5": 5.973784856897593, - "c6": 5.404675426638426, - "c7": 5.481027474065645 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629675, + "c3": 7.258437355524737, + "c4": 5.806749884419784, + "c5": 4.355062413314844, + "c6": 2.903374942209892, + "c7": 1.4516874711049388 }, "rgb": [77, 76, 132] }, @@ -91536,23 +91536,23 @@ "year": 1731, "resistanceReported": false, "duration": 49075200, - "curveSeeds": { - "c1": -2.117783418411946, - "c2": -0.26755238113052826, - "c3": 10.792708449940967, - "c4": 37.681861211494855, - "c5": -54.34878523077634, - "c6": -8.193263875883993, - "c7": -55.83467060364948 + "points": { + "c1": 64.13782495685865, + "c2": -39.708271910679386, + "c3": -9.346995693077936, + "c4": -26.690248368872155, + "c5": -7.017647490626857, + "c6": -47.2014621974962, + "c7": 2.757990229348408 }, - "vertexSeeds": { - "c1": 1.412670845766483, - "c2": 1.3012599176287443, - "c3": 1.3394349162769856, - "c4": 1.3745758312826952, - "c5": 1.424971912541478, - "c6": 1.4194458300518429, - "c7": 1.3453798225726044 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166417, + "c3": 1.73370319001387, + "c4": 1.3869625520110946, + "c5": 1.0402219140083226, + "c6": 0.6934812760055473, + "c7": 0.34674063800277194 }, "rgb": [77, 76, 132] }, @@ -91563,23 +91563,23 @@ "year": 1730, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 16.64231563537112, - "c2": -4.339032387400046, - "c3": -24.76229386373867, - "c4": 40.16655881465515, - "c5": -3.334590738618573, - "c6": -20.63895132226113, - "c7": 32.895880681284424 + "points": { + "c1": 17.841498170176934, + "c2": 37.28283745383506, + "c3": -2.1226864199934354, + "c4": -34.55524753573769, + "c5": -24.49431172708508, + "c6": 29.630646529555264, + "c7": 14.971971254250462 }, - "vertexSeeds": { - "c1": 8.30528815592006, - "c2": 8.006557825700803, - "c3": 8.062219538217843, - "c4": 8.547162453428053, - "c5": 8.46474012624007, - "c6": 8.289923000806645, - "c7": 8.538897460265044 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461862, + "c3": 10.610263522884887, + "c4": 8.488210818307913, + "c5": 6.366158113730938, + "c6": 4.244105409153949, + "c7": 2.1220527045769746 }, "rgb": [238, 201, 159] }, @@ -91590,23 +91590,23 @@ "year": 1731, "resistanceReported": false, "duration": 57110400, - "curveSeeds": { - "c1": -36.127213217779705, - "c2": 63.38020760955354, - "c3": 20.93948005743127, - "c4": -28.875091370855472, - "c5": 51.727554430882506, - "c6": -29.412103060648597, - "c7": 32.08570600619338 + "points": { + "c1": -17.85110736423121, + "c2": -40.486227712245196, + "c3": 30.41740190395177, + "c4": -58.28320011740266, + "c5": -6.669939462206145, + "c6": 10.357827704630367, + "c7": -54.8923277950786 }, - "vertexSeeds": { - "c1": 6.8423245837967706, - "c2": 6.843308964280274, - "c3": 6.575347073476293, - "c4": 6.920048386982492, - "c5": 6.954079047100294, - "c6": 6.644808452843119, - "c7": 6.926404176415406 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485434, + "c3": 8.899676375404537, + "c4": 7.119741100323627, + "c5": 5.339805825242717, + "c6": 3.5598705501618064, + "c7": 1.7799352750809103 }, "rgb": [222, 0, 59] }, @@ -91617,23 +91617,23 @@ "year": 1731, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": 42.90948098826808, - "c2": -11.32813718098479, - "c3": -22.186789007161966, - "c4": 1.8730965676548408, - "c5": -0.500746399303992, - "c6": -22.21853675092439, - "c7": 25.629984173136286 + "points": { + "c1": 5.503315069704051, + "c2": 19.30616688964985, + "c3": -30.68965079317984, + "c4": 1.4618616837357905, + "c5": -0.3676942715178626, + "c6": 38.370289035725555, + "c7": -27.62644729456484 }, - "vertexSeeds": { - "c1": 4.189620737548316, - "c2": 4.326807595466315, - "c3": 4.35451221965347, - "c4": 4.48132554632787, - "c5": 4.129686689429919, - "c6": 3.9952739974753078, - "c7": 4.505569916249045 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644935, + "c4": 4.493758668515952, + "c5": 3.370319001386964, + "c6": 2.246879334257976, + "c7": 1.123439667128988 }, "rgb": [77, 76, 132] }, @@ -91644,23 +91644,23 @@ "year": 1731, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -31.490128928356278, - "c2": 22.901383256103514, - "c3": 8.921754808920582, - "c4": -20.158152611886393, - "c5": -8.439696988363018, - "c6": -17.977637263566432, - "c7": 19.26306301311135 + "points": { + "c1": 10.333841241573857, + "c2": -17.66102999906478, + "c3": 18.772550201315752, + "c4": -34.30907954028217, + "c5": -36.18535590350511, + "c6": 30.03053788299438, + "c7": 34.11225833613727 }, - "vertexSeeds": { - "c1": 4.441661550466817, - "c2": 4.303489103111695, - "c3": 4.64521397474803, - "c4": 4.240864360611249, - "c5": 4.4306432104470845, - "c6": 5.100842052939526, - "c7": 5.191730851263869 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -91671,23 +91671,23 @@ "year": 1731, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 16.48079004453445, - "c2": -41.398044307594844, - "c3": 42.9029452553793, - "c4": -29.22539985029596, - "c5": 6.6833937301960304, - "c6": -8.915771037827696, - "c7": -42.761997002519706 + "points": { + "c1": -18.245177811005266, + "c2": -25.729575401645103, + "c3": 26.246647533650453, + "c4": 15.965507797394828, + "c5": 12.483538709466814, + "c6": 20.91895503889446, + "c7": 35.19533381953604 }, - "vertexSeeds": { - "c1": 5.387818043844692, - "c2": 5.030034716635496, - "c3": 5.436497899332932, - "c4": 5.228813818300199, - "c5": 4.882273543108073, - "c6": 5.419260198447869, - "c7": 4.96332672813837 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342579, + "c3": 6.51872399445215, + "c4": 5.214979195561719, + "c5": 3.9112343966712895, + "c6": 2.6074895977808596, + "c7": 1.3037447988904298 }, "rgb": [238, 201, 159] }, @@ -91698,23 +91698,23 @@ "year": 1730, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 20.640829974456615, - "c2": 13.490441210171518, - "c3": 4.336755622188875, - "c4": -3.898150381198956, - "c5": 26.688717130987875, - "c6": -13.35552043888806, - "c7": 30.18583756214636 + "points": { + "c1": 32.919275211895524, + "c2": -9.891798972292605, + "c3": 21.333212962202644, + "c4": 13.461636078666409, + "c5": 16.74028079202322, + "c6": 20.134994215870748, + "c7": -11.287068201818435 }, - "vertexSeeds": { - "c1": 3.261302479620092, - "c2": 3.269711112207228, - "c3": 3.2886340627859685, - "c4": 3.259556670451536, - "c5": 3.357403156275793, - "c6": 3.3979013290121247, - "c7": 3.323711801365395 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.8821081830790645, + "c3": 4.0684234858992125, + "c4": 3.2547387887193766, + "c5": 2.4410540915395242, + "c6": 1.6273693943596883, + "c7": 0.8136846971798521 }, "rgb": [77, 76, 132] }, @@ -91725,23 +91725,23 @@ "year": 1730, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -12.576261111702767, - "c2": -10.198974699576034, - "c3": 14.261679547243311, - "c4": -10.724918071145552, - "c5": 32.5928064006842, - "c6": -10.745602182775492, - "c7": -27.501220740121838 + "points": { + "c1": -20.81992991056156, + "c2": -2.1443347969164748, + "c3": 21.697513579856746, + "c4": 35.721055524505566, + "c5": -15.41787981906985, + "c6": 10.458023389330037, + "c7": -6.667885119137246 }, - "vertexSeeds": { - "c1": 2.92118905539247, - "c2": 3.1063815114763456, - "c3": 2.660037905583726, - "c4": 2.5943822685823235, - "c5": 3.100750330228932, - "c6": 2.816238582304917, - "c7": 2.8844637696098485 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.49375866851595, + "c3": 3.744798890429957, + "c4": 2.99583911234397, + "c5": 2.2468793342579776, + "c6": 1.497919556171985, + "c7": 0.7489597780859925 }, "rgb": [58, 15, 49] }, @@ -91752,23 +91752,23 @@ "year": 1730, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 20.915968381517956, - "c2": 29.134841495115488, - "c3": 33.55218504513683, - "c4": 21.37963518049424, - "c5": 17.22852774818309, - "c6": -21.558790206296308, - "c7": -28.49727366498709 + "points": { + "c1": 13.338461443169933, + "c2": -2.214873592182414, + "c3": -5.1126175579680435, + "c4": 1.4690211716536012, + "c5": -17.002618759217373, + "c6": 23.657731995560425, + "c7": 10.713108813654586 }, - "vertexSeeds": { - "c1": 3.5205885320098855, - "c2": 3.611229132512252, - "c3": 3.462311767505606, - "c4": 3.3861722116074797, - "c5": 3.4054429069090277, - "c6": 3.376306931486066, - "c7": 3.608065256326682 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843275, + "c3": 4.507628294036057, + "c4": 3.6061026352288477, + "c5": 2.7045769764216376, + "c6": 1.80305131761442, + "c7": 0.90152565880721 }, "rgb": [238, 201, 159] }, @@ -91779,23 +91779,23 @@ "year": 1730, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 15.173789167181383, - "c2": 6.596759521791348, - "c3": -21.306099571192583, - "c4": 17.734828411838954, - "c5": 8.785264507905026, - "c6": 14.454347685393834, - "c7": -39.07551604586398 + "points": { + "c1": -28.587319747454195, + "c2": 39.86627087689243, + "c3": -4.1730268383238, + "c4": 0.10608695073291585, + "c5": -35.76944348695672, + "c6": 1.2090546332700782, + "c7": 21.65218072436373 }, - "vertexSeeds": { - "c1": 7.128655599991923, - "c2": 7.5007141893251115, - "c3": 7.2675392262325875, - "c4": 7.547623397292814, - "c5": 6.669590719260748, - "c6": 7.977537093078477, - "c7": 8.054581627040173 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.011095700416092, + "c3": 10.009246417013406, + "c4": 8.007397133610729, + "c5": 6.005547850208051, + "c6": 4.003698566805364, + "c7": 2.001849283402686 }, "rgb": [222, 0, 59] }, @@ -91806,23 +91806,23 @@ "year": 1730, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -38.31865900222559, - "c2": -7.45447066204391, - "c3": 7.399585244846968, - "c4": -35.641505272026244, - "c5": -4.523811734757473, - "c6": -37.68282048449008, - "c7": 27.697125470415706 + "points": { + "c1": -0.6423574305575528, + "c2": 27.88838144876072, + "c3": -19.131170505448747, + "c4": 26.06239207315617, + "c5": 41.66636693466953, + "c6": 23.325040930475488, + "c7": -24.46995947376991 }, - "vertexSeeds": { - "c1": 7.743600686117814, - "c2": 8.717944163737652, - "c3": 8.038111569367896, - "c4": 8.805475713910898, - "c5": 8.610554732006623, - "c6": 7.8115759905802475, - "c7": 7.751609520072074 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300972, + "c3": 10.517799352750812, + "c4": 8.414239482200644, + "c5": 6.310679611650482, + "c6": 4.207119741100322, + "c7": 2.103559870550161 }, "rgb": [222, 0, 59] }, @@ -91833,23 +91833,23 @@ "year": 1730, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 20.23275744648524, - "c2": 20.472905115343504, - "c3": -19.596231816692914, - "c4": -13.905748090876031, - "c5": 9.641941314322612, - "c6": -9.523686121886822, - "c7": -5.629239587838679 + "points": { + "c1": 5.250235989557009, + "c2": 2.9830646543762676, + "c3": 13.496340320883537, + "c4": 12.712782750288259, + "c5": -24.060600503449844, + "c6": -10.453514902233781, + "c7": -16.959128081322667 }, - "vertexSeeds": { - "c1": 5.888472672243155, - "c2": 6.155738250891676, - "c3": 5.65369968080553, - "c4": 5.566965730762297, - "c5": 6.3083432309540415, - "c6": 6.3056576053172035, - "c7": 6.096355531022202 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -91860,23 +91860,23 @@ "year": 1731, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 34.66017095034349, - "c2": -26.40643740228017, - "c3": 37.54533355340718, - "c4": -36.806811018544856, - "c5": 4.689585683044257, - "c6": 40.42429046004512, - "c7": -28.763789192860152 + "points": { + "c1": -12.150831620050965, + "c2": -35.06242918875677, + "c3": 7.233421241909454, + "c4": 22.927354706784605, + "c5": -21.704332316135446, + "c6": 36.57615534869068, + "c7": 7.385527259982673 }, - "vertexSeeds": { - "c1": 2.9242185248470705, - "c2": 3.148763748654288, - "c3": 3.044594795918703, - "c4": 3.1481622342774456, - "c5": 3.0045021539263495, - "c6": 2.791864079391943, - "c7": 2.9741816238823926 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.60471567267684, + "c3": 3.8372630605640303, + "c4": 3.0698104484512267, + "c5": 2.302357836338417, + "c6": 1.5349052242256134, + "c7": 0.7674526121128101 }, "rgb": [77, 76, 132] }, @@ -91887,23 +91887,23 @@ "year": 1731, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -40.43258413177391, - "c2": 50.073603715479734, - "c3": -28.465032726821693, - "c4": 1.2821843157748276, - "c5": 39.58326677475647, - "c6": 16.545689354181732, - "c7": 16.71616726077049 + "points": { + "c1": -39.692944077991854, + "c2": 41.84196412257499, + "c3": 52.55630869482752, + "c4": -53.239099668301485, + "c5": -35.75090169667467, + "c6": 49.31410871092338, + "c7": -48.483839441810574 }, - "vertexSeeds": { - "c1": 9.000711968395066, - "c2": 9.067834609303333, - "c3": 8.474810535826974, - "c4": 8.27528783818238, - "c5": 8.76190135601951, - "c6": 8.328253182275596, - "c7": 8.89556210029141 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507626, + "c3": 11.21128062875635, + "c4": 8.969024503005087, + "c5": 6.726768377253813, + "c6": 4.484512251502538, + "c7": 2.2422561257512745 }, "rgb": [238, 201, 159] }, @@ -91914,23 +91914,23 @@ "year": 1730, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -20.9780228399627, - "c2": -4.157157439649936, - "c3": -8.944591653669693, - "c4": 3.7544459071005463, - "c5": -31.8812061046656, - "c6": -19.839220320634496, - "c7": 33.337383347304865 + "points": { + "c1": -31.110412943521816, + "c2": 26.030603415780703, + "c3": 33.780472068809814, + "c4": 26.24656721274573, + "c5": -5.609407991202083, + "c6": -25.064188587557062, + "c7": -37.87916916934987 }, - "vertexSeeds": { - "c1": 2.2939103966565964, - "c2": 2.158012473815459, - "c3": 2.26957297164388, - "c4": 2.184543397570238, - "c5": 2.2480311118037175, - "c6": 2.2026376949573034, - "c7": 2.2484071847268083 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [77, 76, 132] }, @@ -91941,23 +91941,23 @@ "year": 1730, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -2.1564036536231654, - "c2": -25.862582105546828, - "c3": -18.760043185071705, - "c4": 16.031689138914814, - "c5": 2.578587732788563, - "c6": 21.337837986005383, - "c7": 19.207275795726765 + "points": { + "c1": -9.073807324034412, + "c2": 2.6966826088413924, + "c3": 11.870533510227745, + "c4": 2.672154415148988, + "c5": 6.91141065183038, + "c6": 9.05346546486929, + "c7": -33.52651996989917 }, - "vertexSeeds": { - "c1": 11.63192490951793, - "c2": 11.254834527312653, - "c3": 12.33181232416857, - "c4": 12.34926067062282, - "c5": 10.95524934591342, - "c6": 10.783968696372806, - "c7": 12.451148090842718 + "offsets": { + "c1": 21.488673139158575, + "c2": 18.418862690707357, + "c3": 15.349052242256137, + "c4": 12.279241793804896, + "c5": 9.209431345353678, + "c6": 6.139620896902459, + "c7": 3.0698104484512396 }, "rgb": [238, 201, 159] }, @@ -91968,23 +91968,23 @@ "year": 1730, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 29.829428813260336, - "c2": 15.780004003321444, - "c3": 26.494552959370075, - "c4": 26.501829548908, - "c5": 11.157564550550632, - "c6": -9.27926916513968, - "c7": 3.8453118237004986 + "points": { + "c1": 28.86586474032923, + "c2": -5.019417079987285, + "c3": -5.962526046174084, + "c4": 1.2955658997620887, + "c5": -13.682049779178556, + "c6": 18.35924206350265, + "c7": 13.033408551451984 }, - "vertexSeeds": { - "c1": 4.980888187739753, - "c2": 4.567038320575356, - "c3": 5.108325035131967, - "c4": 4.83581668813472, - "c5": 5.150925202177708, - "c6": 4.9386424860327995, - "c7": 4.9017569502564795 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -91995,23 +91995,23 @@ "year": 1731, "resistanceReported": false, "duration": 57283200, - "curveSeeds": { - "c1": 50.42137639630671, - "c2": 69.62116004279356, - "c3": 59.13746339357668, - "c4": -19.434734966756672, - "c5": 27.77311465916233, - "c6": -2.9190409447824663, - "c7": 21.52915800842885 + "points": { + "c1": -43.14155869514056, + "c2": -11.845641212970989, + "c3": -22.391689182600444, + "c4": -55.12028937970052, + "c5": -50.8006838998259, + "c6": 3.35984527601957, + "c7": 51.442772931686974 }, - "vertexSeeds": { - "c1": 4.506620570674446, - "c2": 4.266423767976627, - "c3": 4.397459000827634, - "c4": 4.093985847736987, - "c5": 4.142090255641346, - "c6": 4.24932563174232, - "c7": 4.095888159665854 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492373, + "c3": 5.455386037910312, + "c4": 4.364308830328242, + "c5": 3.273231622746182, + "c6": 2.182154415164121, + "c7": 1.0910772075820605 }, "rgb": [77, 76, 132] }, @@ -92022,23 +92022,23 @@ "year": 1730, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 11.65250915811125, - "c2": -27.53895107885849, - "c3": 20.688142477050597, - "c4": -9.280121816650379, - "c5": 1.0377059422362152, - "c6": -5.4738496243889685, - "c7": -28.431504208569667 + "points": { + "c1": 26.586588430821955, + "c2": 32.567339742669, + "c3": -1.8060830293222239, + "c4": -10.741395255819437, + "c5": -31.716386028365395, + "c6": 13.367624532984244, + "c7": 6.309105078932959 }, - "vertexSeeds": { - "c1": 7.675791364845977, - "c2": 7.998773740473338, - "c3": 8.204030458680911, - "c4": 7.744927812251776, - "c5": 7.8557014027908805, - "c6": 8.265816388717257, - "c7": 7.616800249505089 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335649, + "c3": 9.963014331946376, + "c4": 7.9704114655570875, + "c5": 5.977808599167815, + "c6": 3.9852057327785437, + "c7": 1.9926028663892719 }, "rgb": [86, 146, 138] }, @@ -92049,23 +92049,23 @@ "year": 1730, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -26.105758482020427, - "c2": -5.045208715657289, - "c3": 19.287990241200788, - "c4": 14.256907807033237, - "c5": 15.08991005958542, - "c6": -12.49982485954026, - "c7": 23.545741920294667 + "points": { + "c1": -2.588688682016471, + "c2": 28.50264907375452, + "c3": 0.6638551329233024, + "c4": 4.492034790066526, + "c5": -19.45990144196105, + "c6": -0.44828699066665223, + "c7": -25.06159219531053 }, - "vertexSeeds": { - "c1": 5.040028620062111, - "c2": 4.4172896917173246, - "c3": 5.034076053421787, - "c4": 4.71324106251256, - "c5": 4.250301708987446, - "c6": 4.401874462217651, - "c7": 4.717744680402313 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -92076,23 +92076,23 @@ "year": 1730, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 18.628520264347664, - "c2": 12.527861983286392, - "c3": 2.5995618893472994, - "c4": 7.753394283269039, - "c5": 16.133335467261638, - "c6": -28.231406013626966, - "c7": 32.41753280980883 + "points": { + "c1": 24.374351541130622, + "c2": -24.59488880265501, + "c3": -15.863157075875321, + "c4": -10.408875509805508, + "c5": 29.59523821829299, + "c6": 8.31107487341444, + "c7": -27.579157665990476 }, - "vertexSeeds": { - "c1": 4.948750008903141, - "c2": 4.752513427227604, - "c3": 4.690649157277229, - "c4": 5.452388675030509, - "c5": 5.3549598735716675, - "c6": 5.580963595065249, - "c7": 5.0868437289551816 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026352, + "c3": 6.91169671752196, + "c4": 5.529357374017567, + "c5": 4.147018030513174, + "c6": 2.7646786870087814, + "c7": 1.3823393435043927 }, "rgb": [222, 0, 59] }, @@ -92103,23 +92103,23 @@ "year": 1730, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 11.826554714295447, - "c2": -35.63663901388777, - "c3": 5.739675737067223, - "c4": -37.007272388264134, - "c5": -28.425778560602208, - "c6": -36.25262388044986, - "c7": -36.40644827702985 + "points": { + "c1": 23.120954757611294, + "c2": 28.400497845972986, + "c3": 18.143748694045343, + "c4": 22.015473415170604, + "c5": -31.927949649358744, + "c6": 13.411204430114502, + "c7": -4.790952441274264 }, - "vertexSeeds": { - "c1": 3.922682859862192, - "c2": 4.30497908722432, - "c3": 3.923291508293501, - "c4": 3.8010878125500556, - "c5": 4.188442397103668, - "c6": 4.235878030340562, - "c7": 4.297823898509145 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009709, + "c3": 5.17799352750809, + "c4": 4.142394822006472, + "c5": 3.1067961165048543, + "c6": 2.071197411003236, + "c7": 1.035598705501618 }, "rgb": [222, 0, 59] }, @@ -92130,23 +92130,23 @@ "year": 1731, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": 2.1179314617913008, - "c2": 44.23857902152914, - "c3": 37.7915213510339, - "c4": 12.540143387858919, - "c5": -36.4541732262702, - "c6": 29.08781585822141, - "c7": 48.224579629370474 + "points": { + "c1": 16.537471636062598, + "c2": -14.440583204391174, + "c3": 25.61981337763587, + "c4": -0.2599549716629639, + "c5": 19.124954059174335, + "c6": 40.451134191965146, + "c7": -13.002017900062945 }, - "vertexSeeds": { - "c1": 5.493583787611402, - "c2": 5.875184736410235, - "c3": 5.5985299393526295, - "c4": 5.682617905863768, - "c5": 5.739932218910177, - "c6": 5.88661273044752, - "c7": 6.060520891836465 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -92157,23 +92157,23 @@ "year": 1731, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 32.977832449559486, - "c2": 29.65970306319788, - "c3": -32.776942425381115, - "c4": -29.355597915070717, - "c5": 11.549689441630854, - "c6": 11.130779850957765, - "c7": -21.36503386096816 + "points": { + "c1": -19.888183585316067, + "c2": -17.307877112326356, + "c3": -11.630428463002524, + "c4": 6.4269479551352475, + "c5": 32.26652205209321, + "c6": 14.694177639955342, + "c7": 24.486720381651963 }, - "vertexSeeds": { - "c1": 2.710725162521097, - "c2": 3.0187656412306776, - "c3": 2.565106378995065, - "c4": 2.775086910843458, - "c5": 2.9791775635815285, - "c6": 3.2448699117771342, - "c7": 3.042426786506283 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877947, + "c3": 3.952843273231622, + "c4": 3.162274618585301, + "c5": 2.3717059639389753, + "c6": 1.5811373092926504, + "c7": 0.7905686546463252 }, "rgb": [86, 146, 138] }, @@ -92184,23 +92184,23 @@ "year": 1731, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 0.8738182020249994, - "c2": -13.397145186133606, - "c3": -30.08191140590315, - "c4": 26.654099094749853, - "c5": -35.31936772455703, - "c6": 10.664844882030316, - "c7": 30.258719811350616 + "points": { + "c1": -9.100739113372079, + "c2": -39.13735766226278, + "c3": -11.729186249695061, + "c4": 17.86125511270486, + "c5": -38.16117474183395, + "c6": 14.084974368402463, + "c7": -40.29803434907291 }, - "vertexSeeds": { - "c1": 2.7205530609884754, - "c2": 2.7391850425734425, - "c3": 2.621634116546498, - "c4": 2.6617427722945246, - "c5": 2.7958064759825345, - "c6": 2.6458330585734906, - "c7": 2.804675028724365 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.4674063800277373, + "c4": 2.773925104022189, + "c5": 2.0804438280166457, + "c6": 1.386962552011097, + "c7": 0.6934812760055485 }, "rgb": [222, 0, 59] }, @@ -92211,23 +92211,23 @@ "year": 1730, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -6.515454761596544, - "c2": 23.09415978454026, - "c3": 7.796821149837676, - "c4": -12.064441920953456, - "c5": 8.688916665237372, - "c6": -27.269492368507013, - "c7": 22.97610082653496 + "points": { + "c1": 0.14764195886722575, + "c2": 6.002716482637943, + "c3": -31.467599658884133, + "c4": 16.310418554471873, + "c5": -18.14736481775472, + "c6": -6.352068728648398, + "c7": -5.260624103785517 }, - "vertexSeeds": { - "c1": 4.299211111142697, - "c2": 4.294200046256028, - "c3": 4.0967028199049285, - "c4": 4.050245183048779, - "c5": 4.271261428346287, - "c6": 4.1601613694407655, - "c7": 4.196858847550428 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009708, + "c3": 5.177993527508088, + "c4": 4.142394822006469, + "c5": 3.1067961165048485, + "c6": 2.071197411003239, + "c7": 1.0355987055016196 }, "rgb": [222, 0, 59] }, @@ -92238,23 +92238,23 @@ "year": 1731, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 14.713968788215894, - "c2": 17.26569916993985, - "c3": -37.90135945745276, - "c4": 11.07723063530009, - "c5": 41.278797602222475, - "c6": 32.940113729562235, - "c7": 31.411630323775817 + "points": { + "c1": 11.223655888061323, + "c2": 24.585814321671656, + "c3": 21.162183667415313, + "c4": 34.49422631046588, + "c5": 26.327804299717577, + "c6": 38.15941032325005, + "c7": -37.32574356156688 }, - "vertexSeeds": { - "c1": 4.394214561805005, - "c2": 4.278253582367525, - "c3": 4.556532256962843, - "c4": 5.055821381564161, - "c5": 4.93815834538051, - "c6": 4.307615442733111, - "c7": 4.900236248070057 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -92265,23 +92265,23 @@ "year": 1731, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -9.245943111529861, - "c2": -27.030888749261432, - "c3": -18.105465519199356, - "c4": -1.0804845720698708, - "c5": 28.335995367519935, - "c6": 31.77061252579673, - "c7": -16.382974058368646 + "points": { + "c1": -36.24695909965033, + "c2": -6.049541860779257, + "c3": 21.46093623248911, + "c4": 13.248520270184635, + "c5": 42.21518791657214, + "c6": 39.74841183626207, + "c7": -24.2005512989667 }, - "vertexSeeds": { - "c1": 4.205668686090466, - "c2": 3.9761193321363333, - "c3": 4.218343136802359, - "c4": 4.002125957676105, - "c5": 4.42564102119009, - "c6": 4.241688532355747, - "c7": 3.9782054632292874 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934813, + "c3": 5.709662505779013, + "c4": 4.567730004623208, + "c5": 3.4257975034674066, + "c6": 2.283865002311606, + "c7": 1.1419325011558055 }, "rgb": [238, 201, 159] }, @@ -92292,23 +92292,23 @@ "year": 1731, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 39.42255191683357, - "c2": 1.5591278866008125, - "c3": 36.65322436702617, - "c4": 8.979171207333707, - "c5": -33.461476889247876, - "c6": -39.67773724006012, - "c7": 15.05769663281449 + "points": { + "c1": -39.74644682034764, + "c2": -8.30050749504877, + "c3": -32.36911365126768, + "c4": 18.91044144225443, + "c5": 13.145382753286647, + "c6": 24.68730142808363, + "c7": 19.237474792656556 }, - "vertexSeeds": { - "c1": 2.2081274371628616, - "c2": 1.9601828338466953, - "c3": 2.147296805924312, - "c4": 2.019250186822808, - "c5": 2.2316884113584488, - "c6": 2.0635304932048184, - "c7": 1.9128887236588041 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.2177531206657415, + "c3": 2.6814609338881175, + "c4": 2.1451687471104965, + "c5": 1.6088765603328723, + "c6": 1.0725843735552483, + "c7": 0.5362921867776241 }, "rgb": [58, 15, 49] }, @@ -92319,23 +92319,23 @@ "year": 1730, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 15.552838227736132, - "c2": 8.005367970541819, - "c3": 15.093800454016709, - "c4": 32.736103640845215, - "c5": 28.079902334628528, - "c6": -11.431444094993669, - "c7": -14.419354572188585 + "points": { + "c1": -4.152794824448371, + "c2": -14.499784863684468, + "c3": 5.405838696494975, + "c4": -26.065243575076735, + "c5": 18.040593815661794, + "c6": -27.457452180314462, + "c7": 12.46078940341976 }, - "vertexSeeds": { - "c1": 8.518390994847655, - "c2": 8.31387164621787, - "c3": 7.484055737638429, - "c4": 7.870091793542489, - "c5": 7.456556567793806, - "c6": 8.199878906520608, - "c7": 7.292253233323181 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.81553398058253, + "c3": 10.679611650485436, + "c4": 8.543689320388353, + "c5": 6.407766990291259, + "c6": 4.271844660194176, + "c7": 2.1359223300970926 }, "rgb": [58, 15, 49] }, @@ -92346,23 +92346,23 @@ "year": 1731, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -6.951858757709498, - "c2": 4.584287356848812, - "c3": 23.88524655471776, - "c4": 17.66053026367767, - "c5": 12.702047391629861, - "c6": 16.117853036767904, - "c7": 16.913234525574715 + "points": { + "c1": -3.8936379336298828, + "c2": -25.985027677725732, + "c3": -5.762705241998113, + "c4": -4.375863802934283, + "c5": -18.479081349614344, + "c6": 11.132894492988498, + "c7": -20.476955340226965 }, - "vertexSeeds": { - "c1": 4.995759138465558, - "c2": 5.2038820085167306, - "c3": 5.026531980350723, - "c4": 5.238113713843763, - "c5": 5.078300267574202, - "c6": 4.729314261120732, - "c7": 5.114361810917765 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -92373,23 +92373,23 @@ "year": 1731, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 24.057593066593597, - "c2": 48.91484349596841, - "c3": 38.08404174905807, - "c4": -38.8765768265645, - "c5": 22.30575830953144, - "c6": -39.5421488609305, - "c7": 35.79870218018408 + "points": { + "c1": 50.04916113860254, + "c2": 44.420238061743845, + "c3": 33.49903630207017, + "c4": 3.2774884254492562, + "c5": 51.28911231675005, + "c6": -11.869193827445706, + "c7": -15.034257313529693 }, - "vertexSeeds": { - "c1": 6.574485947065406, - "c2": 6.670557853859008, - "c3": 6.192029084865137, - "c4": 6.171322520589246, - "c5": 6.478074345133171, - "c6": 6.8181995671965225, - "c7": 6.273501554707475 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [222, 0, 59] }, @@ -92400,23 +92400,23 @@ "year": 1731, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -20.731095836832463, - "c2": -44.48165002640443, - "c3": 16.315940829539862, - "c4": -13.493707863002186, - "c5": 36.52568731126691, - "c6": -32.37562469823493, - "c7": 5.654173572990828 + "points": { + "c1": -41.740469227564034, + "c2": 29.402205842960242, + "c3": -27.426176235817508, + "c4": 4.256076661397074, + "c5": -30.325102721560672, + "c6": 42.85338534460854, + "c7": 45.51445226597605 }, - "vertexSeeds": { - "c1": 3.653268149748631, - "c2": 3.7459708070309485, - "c3": 3.69842869481057, - "c4": 3.639582364635203, - "c5": 3.7662167033897034, - "c6": 3.465287502448878, - "c7": 3.602635082765013 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703653, + "c4": 3.6985668053629244, + "c5": 2.773925104022195, + "c6": 1.8492834026814589, + "c7": 0.9246417013407294 }, "rgb": [77, 76, 132] }, @@ -92427,23 +92427,23 @@ "year": 1731, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": -42.89609294140858, - "c2": -39.19624983844109, - "c3": 52.64066701496047, - "c4": 11.95367436662633, - "c5": -5.226078657194172, - "c6": 5.545251947698979, - "c7": -42.48350263659705 + "points": { + "c1": 43.45756620452215, + "c2": -33.368200936431286, + "c3": 0.11447784161838825, + "c4": 28.82729323350334, + "c5": -46.59399062758822, + "c6": -30.889778868082974, + "c7": -3.380316071351693 }, - "vertexSeeds": { - "c1": 11.445121325750895, - "c2": 12.145204542032086, - "c3": 13.284185708427438, - "c4": 10.207282271960207, - "c5": 11.344187189708128, - "c6": 10.193081562402108, - "c7": 14.191355931735398 + "offsets": { + "c1": 24.368932038834952, + "c2": 20.887656033287097, + "c3": 17.406380027739257, + "c4": 13.925104022191404, + "c5": 10.443828016643549, + "c6": 6.962552011095707, + "c7": 3.4812760055478535 }, "rgb": [77, 76, 132] }, @@ -92454,23 +92454,23 @@ "year": 1731, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 27.694882153978455, - "c2": 24.434268633654384, - "c3": 7.812402392024055, - "c4": 3.633741953416873, - "c5": -33.713455092868266, - "c6": -21.666208867882055, - "c7": -39.390890729075494 + "points": { + "c1": 32.03383850334164, + "c2": -25.66764884754414, + "c3": -39.8191037911059, + "c4": 38.60919628678319, + "c5": -36.77417545772177, + "c6": -2.6740443736483357, + "c7": -23.097278041183724 }, - "vertexSeeds": { - "c1": 4.95290488418415, - "c2": 5.003845749837918, - "c3": 4.626131280218728, - "c4": 4.588324851154987, - "c5": 4.620107699345609, - "c6": 4.970087323495796, - "c7": 4.662657698671918 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -92481,23 +92481,23 @@ "year": 1731, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -33.600026157356915, - "c2": -21.412339416898543, - "c3": -16.255191825921113, - "c4": 13.038302109358597, - "c5": 10.801248900418074, - "c6": 25.93472887749291, - "c7": -4.766149740711516 + "points": { + "c1": -30.9495766793404, + "c2": 11.048432630284047, + "c3": 32.967780119413476, + "c4": 19.02053945497476, + "c5": 21.732343846226435, + "c6": -33.16623587651721, + "c7": 15.064019158520857 }, - "vertexSeeds": { - "c1": 7.952778051335152, - "c2": 8.475272354009096, - "c3": 8.641736197986098, - "c4": 8.197149251221573, - "c5": 7.889466806288753, - "c6": 8.036382487766241, - "c7": 8.082696934064135 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220525, + "c3": 10.471567267683781, + "c4": 8.377253814147021, + "c5": 6.2829403606102625, + "c6": 4.188626907073517, + "c7": 2.0943134535367585 }, "rgb": [86, 146, 138] }, @@ -92508,23 +92508,23 @@ "year": 1731, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": -5.607672634681194, - "c2": 33.41434521258714, - "c3": -7.096683151317791, - "c4": -3.661348077413656, - "c5": -13.63871049022952, - "c6": 6.810314656916226, - "c7": -19.45393345243171 + "points": { + "c1": 50.65162027573589, + "c2": -4.727474591851191, + "c3": -15.057742495962778, + "c4": 34.9628559615691, + "c5": -3.178111466759809, + "c6": -11.27025228500731, + "c7": -19.187077433296558 }, - "vertexSeeds": { - "c1": 8.131126913845108, - "c2": 7.792504874251791, - "c3": 7.793118695329901, - "c4": 8.0957481420107, - "c5": 7.8878661620624495, - "c6": 8.38184188024502, - "c7": 8.359982535985068 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059634, + "c3": 10.379103097549702, + "c4": 8.303282478039756, + "c5": 6.227461858529823, + "c6": 4.151641239019878, + "c7": 2.0758206195099325 }, "rgb": [77, 76, 132] }, @@ -92535,23 +92535,23 @@ "year": 1730, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -0.11575015997687998, - "c2": 29.066114122648322, - "c3": -15.951954086503768, - "c4": -15.902370760437213, - "c5": 12.496898070933348, - "c6": -20.190934666219185, - "c7": -21.393949897816682 + "points": { + "c1": -13.335441618425705, + "c2": 4.140218236441385, + "c3": -8.101512944492413, + "c4": -18.620458007547676, + "c5": -8.515919566170659, + "c6": 6.826925087852061, + "c7": 12.155501479495541 }, - "vertexSeeds": { - "c1": 4.74112907436264, - "c2": 4.588209862137578, - "c3": 4.56410815392447, - "c4": 5.273058942228428, - "c5": 4.053176583047105, - "c6": 5.194547661782255, - "c7": 5.118920563245113 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -92562,23 +92562,23 @@ "year": 1731, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 21.21942019570283, - "c2": 18.764375460236856, - "c3": 8.439473659470764, - "c4": 17.87033512357263, - "c5": 31.51973404664298, - "c6": 30.899805328428826, - "c7": 14.068014875151775 + "points": { + "c1": 19.568407999614898, + "c2": 15.984553751267818, + "c3": 38.1446509644709, + "c4": -12.000744287154976, + "c5": -32.45447508678441, + "c6": 15.522950605399835, + "c7": -33.02156030009689 }, - "vertexSeeds": { - "c1": 6.000277693341675, - "c2": 6.211107556151745, - "c3": 6.212187369506021, - "c4": 6.239169031349662, - "c5": 6.037507014174824, - "c6": 6.2500114690272754, - "c7": 6.306235468031803 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -92589,23 +92589,23 @@ "year": 1731, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": -50.127841388898716, - "c2": 47.88420767710085, - "c3": -26.471300667363924, - "c4": 34.20138932297964, - "c5": -44.361121470719546, - "c6": -49.92746507915887, - "c7": -25.234905469158395 + "points": { + "c1": -8.118187998749754, + "c2": -31.38436388408305, + "c3": 48.9588146236358, + "c4": -48.87105315569082, + "c5": 45.69751464630147, + "c6": 23.291755376008666, + "c7": 39.91100349578208 }, - "vertexSeeds": { - "c1": 7.157272484124326, - "c2": 7.429616609400283, - "c3": 7.062679961202417, - "c4": 7.784962160247552, - "c5": 7.3809176960392655, - "c6": 7.4963710551986225, - "c7": 7.0908849065160835 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330105, + "c3": 9.38511326860841, + "c4": 7.508090614886736, + "c5": 5.631067961165043, + "c6": 3.754045307443368, + "c7": 1.8770226537216752 }, "rgb": [222, 0, 59] }, @@ -92616,23 +92616,23 @@ "year": 1731, "resistanceReported": false, "duration": 48988800, - "curveSeeds": { - "c1": -26.848817289279076, - "c2": -60.27604253864772, - "c3": 63.67209343630605, - "c4": 3.795260960672586, - "c5": -40.281854187503086, - "c6": 25.43648833820864, - "c7": -39.59337936565166 + "points": { + "c1": -1.917289452951195, + "c2": 52.280176992141165, + "c3": -11.239394104587873, + "c4": 64.15754977692148, + "c5": -54.432331924140954, + "c6": 12.064844919179464, + "c7": 36.97819421570054 }, - "vertexSeeds": { - "c1": 5.915706988810874, - "c2": 6.515848716264888, - "c3": 6.336298536287847, - "c4": 5.693114571651355, - "c5": 5.980924325674751, - "c6": 5.650804704516193, - "c7": 5.785009598083414 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635228, + "c3": 7.836338418862691, + "c4": 6.269070735090152, + "c5": 4.701803051317614, + "c6": 3.134535367545076, + "c7": 1.567267683772538 }, "rgb": [86, 146, 138] }, @@ -92643,23 +92643,23 @@ "year": 1731, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -11.359304117053068, - "c2": -12.306242093585997, - "c3": 11.386901444127432, - "c4": -22.584128949206193, - "c5": 10.893728306296595, - "c6": 17.704441183410715, - "c7": -16.362750472564457 + "points": { + "c1": -24.221291049511855, + "c2": -0.8124521566551977, + "c3": -11.126466506466826, + "c4": -30.091062264509503, + "c5": -22.140521304155634, + "c6": -34.85160398698014, + "c7": 34.14675547358634 }, - "vertexSeeds": { - "c1": 9.155456507034426, - "c2": 9.319127338015875, - "c3": 8.869876327593015, - "c4": 9.011779280237764, - "c5": 8.978199608957663, - "c6": 8.510046982364644, - "c7": 9.014553903793805 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346731, + "c3": 11.118816458622288, + "c4": 8.895053166897823, + "c5": 6.671289875173376, + "c6": 4.447526583448911, + "c7": 2.223763291724445 }, "rgb": [238, 201, 159] }, @@ -92670,23 +92670,23 @@ "year": 1731, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 17.535338141193513, - "c2": 12.337351644150047, - "c3": 6.934371358513374, - "c4": 11.89916799622791, - "c5": -35.46365770927384, - "c6": -37.59189943225594, - "c7": 18.466710104413487 + "points": { + "c1": -20.07312981070474, + "c2": 8.813270936821517, + "c3": -12.651476004068961, + "c4": 44.295610474139345, + "c5": -27.253318395461747, + "c6": 8.203105346642424, + "c7": 6.040643397353492 }, - "vertexSeeds": { - "c1": 6.5176525843155755, - "c2": 6.7526934664870595, - "c3": 6.631623344669752, - "c4": 6.569542888119896, - "c5": 6.451846782157013, - "c6": 6.338115162536628, - "c7": 6.54618534393254 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077674, + "c3": 8.090614886731386, + "c4": 6.472491909385112, + "c5": 4.854368932038837, + "c6": 3.2362459546925493, + "c7": 1.6181229773462746 }, "rgb": [58, 15, 49] }, @@ -92697,23 +92697,23 @@ "year": 1731, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -16.22955252192924, - "c2": 17.083829626794838, - "c3": 20.14082471388909, - "c4": 15.354021547212973, - "c5": -1.829489340261226, - "c6": 11.244058829243386, - "c7": 29.555553279265148 + "points": { + "c1": -8.869441280048353, + "c2": -6.176802506561181, + "c3": -23.018108522865056, + "c4": -17.661877525316626, + "c5": 20.108488671865906, + "c6": 16.019570425231336, + "c7": -16.798581767422235 }, - "vertexSeeds": { - "c1": 7.213991509877702, - "c2": 7.152138045895011, - "c3": 7.405828525072638, - "c4": 6.848214577196029, - "c5": 7.272854329893858, - "c6": 6.876960028108348, - "c7": 7.017672091762743 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -92724,23 +92724,23 @@ "year": 1731, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 31.32250872255871, - "c2": -31.93508497692435, - "c3": -20.16950960659921, - "c4": 9.736802411777596, - "c5": 13.590539904086434, - "c6": -16.12962088473376, - "c7": 1.2201811935814248 + "points": { + "c1": 9.617309936146079, + "c2": -7.714783577622214, + "c3": -28.22728514780663, + "c4": 30.000675268638247, + "c5": -39.311509235892636, + "c6": -23.067226691455247, + "c7": 7.708741013481998 }, - "vertexSeeds": { - "c1": 2.9626734983279817, - "c2": 2.7284408030411162, - "c3": 3.1226891517605164, - "c4": 2.83102076079561, - "c5": 3.007930082044641, - "c6": 3.0885495528709885, - "c7": 2.7698635909303566 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299603, + "c4": 2.995839112343967, + "c5": 2.2468793342579745, + "c6": 1.4979195561719814, + "c7": 0.748959778085993 }, "rgb": [77, 76, 132] }, @@ -92751,23 +92751,23 @@ "year": 1731, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 6.693245101060697, - "c2": -37.77363109025851, - "c3": 15.757839874068026, - "c4": -22.93645656541581, - "c5": -4.623843456014157, - "c6": -41.21868836581873, - "c7": 21.592625413748756 + "points": { + "c1": 12.955021086084145, + "c2": -15.414498040958616, + "c3": -27.502806886331268, + "c4": 36.47777507967536, + "c5": -27.730300902005293, + "c6": 15.75066136429377, + "c7": -31.483374078386014 }, - "vertexSeeds": { - "c1": 6.338319979912655, - "c2": 5.5439046790343935, - "c3": 6.280860135156433, - "c4": 5.771284307166546, - "c5": 6.323737044204562, - "c6": 5.760277959985719, - "c7": 6.038501400495183 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951456, + "c3": 7.766990291262141, + "c4": 6.213592233009711, + "c5": 4.66019417475728, + "c6": 3.1067961165048494, + "c7": 1.5533980582524307 }, "rgb": [238, 201, 159] }, @@ -92778,23 +92778,23 @@ "year": 1730, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -16.846997853433486, - "c2": 0.4173914797223297, - "c3": -15.114645300894805, - "c4": -18.551796688651596, - "c5": -8.146686491065754, - "c6": -8.053964255557892, - "c7": 8.81444249324677 + "points": { + "c1": -15.900813624823344, + "c2": 20.747685596764896, + "c3": 21.56050801005314, + "c4": 6.722635373263536, + "c5": 4.000188650641835, + "c6": 6.515582072396089, + "c7": -10.873044581520533 }, - "vertexSeeds": { - "c1": 9.695200683132308, - "c2": 9.80989479267807, - "c3": 9.803733865468438, - "c4": 8.569201726768803, - "c5": 9.655093377621922, - "c6": 8.89087808933402, - "c7": 9.731481089067191 + "offsets": { + "c1": 16.601941747572816, + "c2": 14.23023578363384, + "c3": 11.858529819694866, + "c4": 9.486823855755889, + "c5": 7.115117891816913, + "c6": 4.743411927877938, + "c7": 2.3717059639389624 }, "rgb": [58, 15, 49] }, @@ -92805,23 +92805,23 @@ "year": 1731, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -1.6907577913597933, - "c2": 11.887381080087906, - "c3": 5.193481921376261, - "c4": 7.972467831442742, - "c5": 21.111941526725786, - "c6": 1.0679657952606263, - "c7": -3.808806950176674 + "points": { + "c1": 31.375395018212714, + "c2": -6.811768149885189, + "c3": 32.93407695737737, + "c4": -34.377023621384815, + "c5": -19.516441973261866, + "c6": 3.7563808252155226, + "c7": -36.71730656108629 }, - "vertexSeeds": { - "c1": 4.098110512048301, - "c2": 4.2951259853517, - "c3": 3.9841712277586145, - "c4": 4.525412281103905, - "c5": 4.083060597467192, - "c6": 4.282331009967641, - "c7": 4.5241809094236585 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -92832,23 +92832,23 @@ "year": 1731, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 1.4359790913149908, - "c2": -18.238452135017443, - "c3": -15.753542851354453, - "c4": 8.471475616503199, - "c5": 22.858144670719717, - "c6": 22.335083893336368, - "c7": -48.31077264375898 + "points": { + "c1": 3.278968228386475, + "c2": 15.97706455912789, + "c3": -21.247973147293685, + "c4": 6.230159110313295, + "c5": -8.606348841572306, + "c6": 43.93893718703129, + "c7": 33.868231335460926 }, - "vertexSeeds": { - "c1": 4.66023775391165, - "c2": 4.7475663386951945, - "c3": 4.567146065736457, - "c4": 4.687905574253655, - "c5": 4.583645564445094, - "c6": 4.374425549325003, - "c7": 4.550292038371145 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176146, + "c3": 5.8483587609801235, + "c4": 4.6786870087841, + "c5": 3.5090152565880772, + "c6": 2.339343504392046, + "c7": 1.1696717521960316 }, "rgb": [238, 201, 159] }, @@ -92859,23 +92859,23 @@ "year": 1731, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 34.07967417151281, - "c2": 27.118642452958163, - "c3": 16.74858032015029, - "c4": -8.579518552223803, - "c5": -22.509635194195358, - "c6": 27.65274075475761, - "c7": 45.16104719700089 + "points": { + "c1": -21.788464201988564, + "c2": -12.077614851788837, + "c3": -27.030929254764622, + "c4": -19.43792519675398, + "c5": 40.59860487396302, + "c6": 37.37535198289668, + "c7": -2.9377581719986807 }, - "vertexSeeds": { - "c1": 3.9672717675864826, - "c2": 4.439173238690956, - "c3": 4.597804160343033, - "c4": 3.982153966456404, - "c5": 4.333246753022584, - "c6": 4.004304522870624, - "c7": 4.384381663253794 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -92886,23 +92886,23 @@ "year": 1731, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -9.987462488352058, - "c2": 31.551356626633137, - "c3": -3.748497565448776, - "c4": -27.386664554042646, - "c5": -1.6990247142353994, - "c6": -8.133589956144515, - "c7": -27.671731627152315 + "points": { + "c1": 21.86586012114553, + "c2": 37.064762607002294, + "c3": 12.258841079618627, + "c4": -35.70946738814695, + "c5": 11.226875447123277, + "c6": 4.839086933638399, + "c7": -5.307428424661403 }, - "vertexSeeds": { - "c1": 4.830803351069829, - "c2": 5.4091026640030755, - "c3": 5.703194339259386, - "c4": 5.638898732469099, - "c5": 5.546660411270495, - "c6": 5.61446480581354, - "c7": 5.539882184537848 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.81923254738789, + "c4": 5.455386037910309, + "c5": 4.091539528432728, + "c6": 2.727693018955157, + "c7": 1.363846509477576 }, "rgb": [58, 15, 49] }, @@ -92913,23 +92913,23 @@ "year": 1731, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -28.67453666931887, - "c2": -17.136686489206394, - "c3": -23.20614981298278, - "c4": -0.725627392892882, - "c5": 10.424114941510972, - "c6": -13.92720082137863, - "c7": -1.710605924750837 + "points": { + "c1": 12.888686389113452, + "c2": -21.150700968158183, + "c3": -31.737955155915877, + "c4": -2.502995134951199, + "c5": -16.993788504208855, + "c6": -22.65626787505434, + "c7": -14.011773554328986 }, - "vertexSeeds": { - "c1": 4.980703282431994, - "c2": 4.852879339687531, - "c3": 4.931396709119579, - "c4": 4.279415696113418, - "c5": 4.3110482757270265, - "c6": 4.734953520641999, - "c7": 4.545235143320329 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -92940,23 +92940,23 @@ "year": 1731, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": 44.45929978970323, - "c2": -21.720291820314962, - "c3": 47.443943933143295, - "c4": 16.078241833573152, - "c5": 30.984339820803505, - "c6": 4.154693025171866, - "c7": -26.567682456651895 + "points": { + "c1": -50.062317181847746, + "c2": -10.501333420982675, + "c3": 7.4896106870830295, + "c4": -1.9024530727097755, + "c5": 34.022285779335114, + "c6": 18.625966549177868, + "c7": 45.328081958563466 }, - "vertexSeeds": { - "c1": 5.668713796592963, - "c2": 5.721973196109117, - "c3": 5.756087318143743, - "c4": 5.856182133950274, - "c5": 5.817285105010885, - "c6": 5.532806744764185, - "c7": 5.365902625656725 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187238, + "c3": 7.004160887656027, + "c4": 5.603328710124818, + "c5": 4.202496532593629, + "c6": 2.8016643550624196, + "c7": 1.4008321775312098 }, "rgb": [222, 0, 59] }, @@ -92967,23 +92967,23 @@ "year": 1731, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": -22.088724357662233, - "c2": 35.893422662397576, - "c3": 3.370566965323185, - "c4": -5.965370074587433, - "c5": -18.585810593673337, - "c6": -28.262585100303365, - "c7": 26.816714587391267 + "points": { + "c1": -10.064090732585555, + "c2": 4.428906849815, + "c3": -12.675219713335032, + "c4": 36.787422574469154, + "c5": -42.29245880757914, + "c6": -29.315357585326893, + "c7": -40.47660888809801 }, - "vertexSeeds": { - "c1": 4.627499978070862, - "c2": 4.6135069248223965, - "c3": 4.710628092379049, - "c4": 4.4771261945290926, - "c5": 4.7633530789249425, - "c6": 4.612663203897955, - "c7": 4.5930857671714325 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618582, + "c3": 6.10263522884882, + "c4": 4.882108183079058, + "c5": 3.661581137309291, + "c6": 2.441054091539523, + "c7": 1.2205270457697615 }, "rgb": [222, 0, 59] }, @@ -92994,23 +92994,23 @@ "year": 1730, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": 5.417589895118056, - "c2": 0.0555326500557527, - "c3": -6.387016775868339, - "c4": 2.42786985115762, - "c5": 8.225422803108945, - "c6": -5.08880509173059, - "c7": 15.225270815616732 + "points": { + "c1": 21.891548501874418, + "c2": 10.813202571380323, + "c3": -3.622310783441012, + "c4": 10.485355647858341, + "c5": -8.67102144047609, + "c6": -10.58731091752305, + "c7": -12.99509873158582 }, - "vertexSeeds": { - "c1": 7.295336873610677, - "c2": 6.896054214683343, - "c3": 6.989323402866412, - "c4": 7.269099445200432, - "c5": 7.16316551547439, - "c6": 7.312034871059453, - "c7": 7.421969638924836 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -93021,23 +93021,23 @@ "year": 1731, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 34.654542371996406, - "c2": -6.631504309669978, - "c3": 32.85000625986296, - "c4": 32.6979077976597, - "c5": 34.18669084017703, - "c6": -34.289189868781556, - "c7": 17.08695559352224 + "points": { + "c1": -49.76924898442359, + "c2": 10.11585992946523, + "c3": 23.426442145263472, + "c4": 7.396940890991033, + "c5": -40.70704305392155, + "c6": 13.087264763933184, + "c7": -12.16234659924779 }, - "vertexSeeds": { - "c1": 6.8127077671270495, - "c2": 6.628954508774893, - "c3": 6.612776362923592, - "c4": 6.892788266793442, - "c5": 6.789761959134683, - "c6": 6.808703955550049, - "c7": 6.746235952732143 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319008, + "c3": 8.229311141932513, + "c4": 6.583448913546019, + "c5": 4.937586685159483, + "c6": 3.291724456772989, + "c7": 1.6458622283864945 }, "rgb": [86, 146, 138] }, @@ -93048,23 +93048,23 @@ "year": 1731, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 9.539533301178118, - "c2": 25.91907903780651, - "c3": 1.60203694326254, - "c4": -23.126460059234716, - "c5": -4.685459378249256, - "c6": -29.08239514398509, - "c7": 22.282878125346897 + "points": { + "c1": 33.28502653720973, + "c2": -5.824281241950974, + "c3": 28.768818336253766, + "c4": -32.37921742301904, + "c5": -23.100617317546018, + "c6": -14.042285595776832, + "c7": 2.573852581876352 }, - "vertexSeeds": { - "c1": 5.825079844519447, - "c2": 5.489148755876758, - "c3": 6.329031971163516, - "c4": 6.055271071265727, - "c5": 5.873305858738897, - "c6": 6.100512170037201, - "c7": 5.961194833348489 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -93075,23 +93075,23 @@ "year": 1730, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -5.181371042352275, - "c2": -20.29203635534906, - "c3": -1.7056283207701242, - "c4": 4.878114766892875, - "c5": -5.420827235779985, - "c6": 11.574935328913224, - "c7": -19.162069634974205 + "points": { + "c1": 5.554469462649433, + "c2": 15.840231440384382, + "c3": -18.30768855730114, + "c4": -27.93652382457354, + "c5": 9.549457408802862, + "c6": -13.443774209190801, + "c7": 4.646876930457896 }, - "vertexSeeds": { - "c1": 2.6465433879941993, - "c2": 2.50600768576491, - "c3": 2.7453328392012484, - "c4": 2.510237758341359, - "c5": 2.493908600952366, - "c6": 2.8004154602423905, - "c7": 2.5640612044273388 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.3749422098936646, + "c4": 2.699953767914935, + "c5": 2.0249653259362006, + "c6": 1.3499768839574662, + "c7": 0.6749884419787344 }, "rgb": [58, 15, 49] }, @@ -93102,23 +93102,23 @@ "year": 1731, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -3.561187388944141, - "c2": 39.48370318998427, - "c3": -11.181987215965165, - "c4": -20.698030839634576, - "c5": 29.86624194833142, - "c6": -33.927550923239174, - "c7": 19.544207671796656 + "points": { + "c1": 46.719836232603356, + "c2": 30.02955732376239, + "c3": -34.924962152253364, + "c4": 13.850438559638349, + "c5": 14.767004719204529, + "c6": -7.565720226098136, + "c7": -3.12833470782563 }, - "vertexSeeds": { - "c1": 3.9408461151195167, - "c2": 6.094563916752933, - "c3": 2.044010305304522, - "c4": 1.7814435542450737, - "c5": 3.456790880085376, - "c6": 4.2279509839069505, - "c7": 5.188678469666845 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445214, + "c3": 8.876560332871012, + "c4": 7.1012482662968095, + "c5": 5.325936199722607, + "c6": 3.5506241331484047, + "c7": 1.7753120665742024 }, "rgb": [222, 0, 59] }, @@ -93129,23 +93129,23 @@ "year": 1731, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 29.81679960079044, - "c2": 11.97854839728457, - "c3": -6.9336601159491735, - "c4": 38.15775863063757, - "c5": 22.86584733719816, - "c6": -28.680693762920797, - "c7": -5.7929582115625635 + "points": { + "c1": -4.823137967135246, + "c2": -1.3791585981610126, + "c3": -17.481323836793315, + "c4": -34.191289043012354, + "c5": 14.793586255776212, + "c6": 12.018063892503775, + "c7": 13.40143022935348 }, - "vertexSeeds": { - "c1": 3.6093250602744336, - "c2": 3.6868184540713402, - "c3": 3.6644417351646816, - "c4": 3.7268632024163284, - "c5": 3.6230017678626627, - "c6": 3.799158969963234, - "c7": 3.610470023347192 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.5755894590846005, + "c3": 4.646324549237173, + "c4": 3.717059639389734, + "c5": 2.7877947295423056, + "c6": 1.858529819694867, + "c7": 0.9292649098474387 }, "rgb": [58, 15, 49] }, @@ -93156,23 +93156,23 @@ "year": 1731, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": 19.415094576496685, - "c2": 9.306349948303144, - "c3": 32.89004588849234, - "c4": 16.41341172451142, - "c5": 6.888309498483473, - "c6": 12.338887812740559, - "c7": 9.67537637166673 + "points": { + "c1": 24.74509857339362, + "c2": 47.9114610453847, + "c3": -34.43354856597107, + "c4": -34.27522166945528, + "c5": -47.73899238868327, + "c6": 12.597784179694116, + "c7": 26.900469675622205 }, - "vertexSeeds": { - "c1": 11.73657161881653, - "c2": 11.791852443003894, - "c3": 11.309892235361549, - "c4": 11.120639272689914, - "c5": 11.061998951560616, - "c6": 11.403193279263341, - "c7": 11.025715419877336 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.198335644937586, + "c3": 14.331946370781322, + "c4": 11.465557096625057, + "c5": 8.599167822468793, + "c6": 5.732778548312528, + "c7": 2.866389274156264 }, "rgb": [86, 146, 138] }, @@ -93183,23 +93183,23 @@ "year": 1731, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -13.815792971493918, - "c2": -4.071821778828529, - "c3": -7.135126348407734, - "c4": -11.658206800552524, - "c5": 20.646422821625695, - "c6": -17.82359436473552, - "c7": -2.7728286722913857 + "points": { + "c1": -11.055618367275045, + "c2": 17.728288276237304, + "c3": 4.419124887083928, + "c4": -9.080376471471784, + "c5": 9.73075872574702, + "c6": -7.460156252010659, + "c7": 27.328190335313952 }, - "vertexSeeds": { - "c1": 5.376746116585644, - "c2": 5.672154317558569, - "c3": 6.014634148951871, - "c4": 6.170854722864857, - "c5": 5.690278733454126, - "c6": 6.029005973248862, - "c7": 5.616541669121535 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951452, + "c3": 7.443365695792874, + "c4": 5.954692556634306, + "c5": 4.466019417475726, + "c6": 2.977346278317147, + "c7": 1.4886731391585672 }, "rgb": [86, 146, 138] }, @@ -93210,23 +93210,23 @@ "year": 1731, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -22.91785105983988, - "c2": -4.2486721821207, - "c3": -38.44412135070725, - "c4": -31.70506020135835, - "c5": 41.38454033043951, - "c6": 13.18545436508716, - "c7": 13.458712569268052 + "points": { + "c1": 13.954194494752407, + "c2": 1.8335604736535274, + "c3": 29.00671510065424, + "c4": 17.600512595829706, + "c5": 5.765509164912068, + "c6": -13.187726994812909, + "c7": -17.11512342724315 }, - "vertexSeeds": { - "c1": 3.9179455255652345, - "c2": 3.557506845114001, - "c3": 3.596513680223464, - "c4": 3.7114040363859644, - "c5": 3.566323754927737, - "c6": 3.3243645992582405, - "c7": 3.321915215118132 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406378, + "c3": 4.8312528895053175, + "c4": 3.865002311604252, + "c5": 2.8987517337031914, + "c6": 1.932501155802126, + "c7": 0.9662505779010605 }, "rgb": [238, 201, 159] }, @@ -93237,23 +93237,23 @@ "year": 1731, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -14.438459375313794, - "c2": -17.581993105345113, - "c3": 24.85413498399315, - "c4": -28.11875764366868, - "c5": -16.65815627748838, - "c6": -20.069878455275475, - "c7": -6.809564474561629 + "points": { + "c1": -19.177604601070627, + "c2": 14.008225346674138, + "c3": 26.231896706430113, + "c4": 29.485119852412886, + "c5": -11.671050901597575, + "c6": 10.371193342078563, + "c7": 24.757921583337485 }, - "vertexSeeds": { - "c1": 0.333892618091787, - "c2": 0.34149409072993786, - "c3": 0.3529445037648042, - "c4": 0.3434162492387663, - "c5": 0.36406404975282897, - "c6": 0.3649280791852859, - "c7": 0.35219902509989837 + "offsets": { + "c1": 0.6472491909385114, + "c2": 0.5547850208044387, + "c3": 0.4623208506703648, + "c4": 0.36985668053629206, + "c5": 0.27739251040221935, + "c6": 0.1849283402681466, + "c7": 0.09246417013407272 }, "rgb": [86, 146, 138] }, @@ -93264,23 +93264,23 @@ "year": 1731, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 16.645089208524777, - "c2": 5.946797980792102, - "c3": 15.071406054536158, - "c4": 20.79614248598674, - "c5": 19.120085197519717, - "c6": 13.385785800655317, - "c7": 27.75818482065996 + "points": { + "c1": -27.071817238828583, + "c2": -8.51194800451885, + "c3": -4.184304209119276, + "c4": -10.618606492107897, + "c5": -10.193420362803696, + "c6": -3.439061841534425, + "c7": -16.807802244867545 }, - "vertexSeeds": { - "c1": 5.163807528359571, - "c2": 4.639461910735085, - "c3": 4.786603575614638, - "c4": 5.2848269163447075, - "c5": 5.102619298112198, - "c6": 5.026064484622033, - "c7": 4.9934666288330245 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -93291,23 +93291,23 @@ "year": 1731, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": 21.84643647288739, - "c2": 1.9821807205776523, - "c3": 9.944185159397804, - "c4": 24.034283573018698, - "c5": -30.923656030780887, - "c6": 35.02370858378809, - "c7": -38.64230228640975 + "points": { + "c1": -46.17484401183929, + "c2": -4.838632644785086, + "c3": -4.6407126144171755, + "c4": 30.887799373470855, + "c5": -26.9703897620434, + "c6": 52.402401700285765, + "c7": -53.64092835527717 }, - "vertexSeeds": { - "c1": 5.248084609836173, - "c2": 5.476013192367392, - "c3": 5.218954203531941, - "c4": 5.792456735216879, - "c5": 5.876641185311257, - "c6": 5.620755367902992, - "c7": 5.236147922970205 + "offsets": { + "c1": 10, + "c2": 8.571428571428568, + "c3": 7.142857142857149, + "c4": 5.714285714285716, + "c5": 4.285714285714284, + "c6": 2.8571428571428643, + "c7": 1.4285714285714322 }, "rgb": [238, 201, 159] }, @@ -93318,23 +93318,23 @@ "year": 1732, "resistanceReported": false, "duration": 53654400, - "curveSeeds": { - "c1": 46.47399817117643, - "c2": 38.20592063423901, - "c3": 50.320644032386625, - "c4": 8.339271565582266, - "c5": -23.536142578185178, - "c6": -67.80495659718585, - "c7": 0.14752182451012175 + "points": { + "c1": 45.270076243478954, + "c2": 13.875030975297207, + "c3": -36.19550375451153, + "c4": -3.38985073235645, + "c5": -35.41194529447571, + "c6": -13.123011684481767, + "c7": 6.811448207132528 }, - "vertexSeeds": { - "c1": 6.394591757355279, - "c2": 6.1498414198534626, - "c3": 6.428165468490309, - "c4": 6.603520795898196, - "c5": 6.413591130621522, - "c6": 6.412948375138197, - "c7": 6.793283000523181 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117887, + "c3": 8.113730929264905, + "c4": 6.490984743411937, + "c5": 4.868238557558953, + "c6": 3.2454923717059687, + "c7": 1.6227461858529844 }, "rgb": [86, 146, 138] }, @@ -93345,23 +93345,23 @@ "year": 1731, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -16.499687182744932, - "c2": 19.759551596010787, - "c3": -10.504911030816405, - "c4": -0.825253235273987, - "c5": 21.749617987728804, - "c6": 4.562253957481374, - "c7": -5.841653151656381 + "points": { + "c1": 30.5617880557217, + "c2": -24.038901791798168, + "c3": -21.293422053197354, + "c4": -11.474412799060772, + "c5": 19.750257271684042, + "c6": -11.601686418878685, + "c7": 19.151463041983256 }, - "vertexSeeds": { - "c1": 3.7177677875336674, - "c2": 3.3546994078484658, - "c3": 3.505827246230643, - "c4": 3.4454973254168526, - "c5": 3.5184966229144967, - "c6": 3.802839159677828, - "c7": 3.7069129114744346 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325937, + "c3": 4.785020804438278, + "c4": 3.828016643550623, + "c5": 2.8710124826629686, + "c6": 1.914008321775314, + "c7": 0.9570041608876545 }, "rgb": [86, 146, 138] }, @@ -93372,23 +93372,23 @@ "year": 1731, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 17.75821646307471, - "c2": -43.65352056976516, - "c3": -6.505101949577323, - "c4": 28.31315785594702, - "c5": 1.8246423327796961, - "c6": 24.627854515972153, - "c7": -3.625032449874773 + "points": { + "c1": -7.084093257091432, + "c2": -3.1186024005786166, + "c3": -10.994468281549068, + "c4": 12.597098043181482, + "c5": -21.188413025408657, + "c6": -0.7431372614438772, + "c7": -25.262139598822326 }, - "vertexSeeds": { - "c1": 2.652075175128703, - "c2": 2.6097673376915758, - "c3": 2.5056906572387208, - "c4": 2.627589207817841, - "c5": 2.542827385044946, - "c6": 2.6013653400488796, - "c7": 2.5127127408525776 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791959, + "c3": 3.328710124826628, + "c4": 2.662968099861306, + "c5": 1.9972260748959751, + "c6": 1.331484049930653, + "c7": 0.6657420249653309 }, "rgb": [77, 76, 132] }, @@ -93399,23 +93399,23 @@ "year": 1731, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 16.062978275588105, - "c2": 11.817933082760295, - "c3": -25.635221951658558, - "c4": -4.506243846908671, - "c5": 22.767938881777173, - "c6": 19.335637332730858, - "c7": 22.844768482357683 + "points": { + "c1": -13.11182236078536, + "c2": -15.999575010799365, + "c3": 14.350830718472807, + "c4": 10.282198500130782, + "c5": -18.28781776476052, + "c6": 16.152407234920588, + "c7": -11.263779399728861 }, - "vertexSeeds": { - "c1": 6.273919908476268, - "c2": 5.835799209742717, - "c3": 6.2872021505496996, - "c4": 5.895332959628486, - "c5": 6.132272055885609, - "c6": 5.5461873962410495, - "c7": 5.637347560497708 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -93426,23 +93426,23 @@ "year": 1732, "resistanceReported": false, "duration": 49161600, - "curveSeeds": { - "c1": -45.2354914263778, - "c2": 61.928168852576846, - "c3": -7.176414625717321, - "c4": -13.148551523416842, - "c5": -27.57139929763912, - "c6": 15.669682490662908, - "c7": -44.50823999492431 + "points": { + "c1": -6.833168543842433, + "c2": -16.959191503061056, + "c3": 50.15182536167764, + "c4": -61.73672430495406, + "c5": -63.84134453267007, + "c6": 31.27529609647202, + "c7": 21.271575603402567 }, - "vertexSeeds": { - "c1": 5.261747562475595, - "c2": 5.121903514386262, - "c3": 5.2813875939742445, - "c4": 5.270869747136147, - "c5": 5.158721311432711, - "c6": 5.254595326419268, - "c7": 5.2259954512512765 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061019, + "c3": 6.35691169671751, + "c4": 5.085529357374042, + "c5": 3.814147018030531, + "c6": 2.542764678687021, + "c7": 1.2713823393435104 }, "rgb": [77, 76, 132] }, @@ -93453,23 +93453,23 @@ "year": 1731, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": -5.672197171611877, - "c2": -0.44079232385611533, - "c3": -17.917323726897106, - "c4": 39.13704968956054, - "c5": 40.629820471636364, - "c6": 14.828524868446927, - "c7": 4.866846440977682 + "points": { + "c1": 1.0564779915356013, + "c2": -37.06526908921909, + "c3": -28.059898747463954, + "c4": -29.380123551159464, + "c5": 45.19054169831688, + "c6": 0.2965935576475971, + "c7": 2.92948396430247 }, - "vertexSeeds": { - "c1": 4.589786166694296, - "c2": 4.250514765804306, - "c3": 3.899543083047435, - "c4": 3.9862671472576228, - "c5": 4.510206836643696, - "c6": 4.631816240652748, - "c7": 3.973132646752191 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -93480,23 +93480,23 @@ "year": 1731, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -29.72625313471174, - "c2": -8.831997316275931, - "c3": -21.41100345253031, - "c4": -27.322342682171136, - "c5": 32.14546299388302, - "c6": 30.727153508935352, - "c7": -0.9352360583425181 + "points": { + "c1": -16.364497489932, + "c2": -9.811450395348729, + "c3": -23.624168967494093, + "c4": 22.695148953280047, + "c5": -27.00049303374803, + "c6": -10.556321825430707, + "c7": -12.640735505987852 }, - "vertexSeeds": { - "c1": 6.627882642069332, - "c2": 5.974848776086709, - "c3": 5.582814329144657, - "c4": 5.9538868922030925, - "c5": 6.371998432589408, - "c6": 6.298428395450348, - "c7": 5.887111797402384 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [238, 201, 159] }, @@ -93507,23 +93507,23 @@ "year": 1731, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -9.671827575951099, - "c2": 3.4996825294328033, - "c3": 4.684713316510027, - "c4": 5.1136934818725095, - "c5": -6.821047729151079, - "c6": 3.896872209462394, - "c7": 25.972130676648504 + "points": { + "c1": -24.43610571231155, + "c2": -30.348741556562906, + "c3": -30.884425721495194, + "c4": 14.088456195050682, + "c5": -20.70666122628845, + "c6": 32.90780489196106, + "c7": 11.80164938339604 }, - "vertexSeeds": { - "c1": 6.690870188630629, - "c2": 5.82002717325169, - "c3": 6.60744999054017, - "c4": 5.97263949560936, - "c5": 6.3703268087394775, - "c6": 6.4468285716359475, - "c7": 6.801660335545266 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359222, + "c3": 8.252427184466018, + "c4": 6.601941747572814, + "c5": 4.951456310679611, + "c6": 3.300970873786407, + "c7": 1.6504854368932036 }, "rgb": [58, 15, 49] }, @@ -93534,23 +93534,23 @@ "year": 1731, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 4.453622630312211, - "c2": -32.8739777601529, - "c3": -36.61507414516006, - "c4": -41.8952016882113, - "c5": 12.697622606166462, - "c6": -32.166024229160925, - "c7": -21.251247929338813 + "points": { + "c1": -27.8760696909957, + "c2": -3.9974930116748837, + "c3": 43.045201771817354, + "c4": -40.97399198248161, + "c5": 14.310165626987583, + "c6": 19.31808149100022, + "c7": 15.752251822519753 }, - "vertexSeeds": { - "c1": 2.128003812795398, - "c2": 2.248399336669651, - "c3": 2.2450372558677967, - "c4": 2.1634581925772753, - "c5": 2.2920517279354966, - "c6": 2.191528913140566, - "c7": 2.1401287400401743 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [77, 76, 132] }, @@ -93561,23 +93561,23 @@ "year": 1731, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 24.13256536875498, - "c2": -10.959784535488627, - "c3": -5.84564864999448, - "c4": -33.27975203807139, - "c5": 0.5510513999729909, - "c6": -21.066463317900023, - "c7": -11.808337237912504 + "points": { + "c1": 39.214373818252795, + "c2": -20.286566700451846, + "c3": 26.096832141450292, + "c4": 26.23041692996317, + "c5": -21.97093617676255, + "c6": -24.081976206117773, + "c7": 29.614770613391272 }, - "vertexSeeds": { - "c1": 6.030568120965854, - "c2": 6.622825599941877, - "c3": 6.914701016029251, - "c4": 6.136825923380864, - "c5": 5.934761107859649, - "c6": 6.441442286085783, - "c7": 7.54323021118891 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968097, + "c3": 9.17706888580675, + "c4": 7.341655108645398, + "c5": 5.506241331484052, + "c6": 3.670827554322699, + "c7": 1.835413777161353 }, "rgb": [86, 146, 138] }, @@ -93588,23 +93588,23 @@ "year": 1731, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 2.7301267215150276, - "c2": 4.842347376865668, - "c3": -3.254445606986856, - "c4": -1.8477444551982813, - "c5": 13.084997888484736, - "c6": 5.080347801396833, - "c7": -5.977006342532523 + "points": { + "c1": 15.802464719751718, + "c2": 11.749972997974183, + "c3": -1.3560996187525802, + "c4": -13.3901559479995, + "c5": -4.232892362654987, + "c6": -19.0428207393616, + "c7": -0.7120208992140675 }, - "vertexSeeds": { - "c1": 6.393461014319724, - "c2": 5.98868130027282, - "c3": 5.734598095413278, - "c4": 6.055149075414691, - "c5": 6.219051126168229, - "c6": 5.787998714806214, - "c7": 6.18215629686724 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.9981507165973165, + "c4": 6.3985205732778585, + "c5": 4.798890429958387, + "c6": 3.1992602866389293, + "c7": 1.599630143319471 }, "rgb": [238, 201, 159] }, @@ -93615,23 +93615,23 @@ "year": 1731, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -17.415697444718152, - "c2": 10.682007601394481, - "c3": -19.299710583495887, - "c4": -10.281662674383648, - "c5": -14.119289172791152, - "c6": 17.47072739220433, - "c7": 3.352556716297112 + "points": { + "c1": 4.835748965846307, + "c2": -3.457493719268058, + "c3": -0.4009838247381694, + "c4": -3.9997748762137704, + "c5": -14.462188730807297, + "c6": -20.981585263700488, + "c7": -23.580218271391892 }, - "vertexSeeds": { - "c1": 4.6799600095063285, - "c2": 4.890302642017008, - "c3": 5.089442072011087, - "c4": 5.145542202550872, - "c5": 5.035201746181519, - "c6": 5.211228619508797, - "c7": 5.032588129301172 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -93642,23 +93642,23 @@ "year": 1731, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -20.744293756097125, - "c2": -14.289630090215862, - "c3": 3.6041961372301827, - "c4": 13.495475271285557, - "c5": 19.787843260210792, - "c6": 26.05241104927196, - "c7": 27.161153686814693 + "points": { + "c1": -4.0017729233932755, + "c2": 9.756531279051572, + "c3": -19.59972527937414, + "c4": 25.680833664080403, + "c5": -38.181958068506084, + "c6": -12.484774629493913, + "c7": 31.614685336780248 }, - "vertexSeeds": { - "c1": 6.147827155010837, - "c2": 6.10279796216315, - "c3": 5.710890963140595, - "c4": 5.987334154015865, - "c5": 6.079454935583374, - "c6": 6.250707162791286, - "c7": 5.734646613438795 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -93669,23 +93669,23 @@ "year": 1731, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 16.05890182681376, - "c2": -3.0208633909573095, - "c3": -17.381864659354633, - "c4": 3.143279944247716, - "c5": -26.96853341743767, - "c6": -39.82861409895925, - "c7": 13.169756851777422 + "points": { + "c1": -34.24686859582381, + "c2": -4.438261015392861, + "c3": 4.590720744340928, + "c4": 39.48579791895389, + "c5": 23.689981133366373, + "c6": 16.68607921880797, + "c7": -22.202181836172993 }, - "vertexSeeds": { - "c1": 4.755574712251576, - "c2": 4.888291614985391, - "c3": 4.871470298334816, - "c4": 4.586670806206276, - "c5": 5.227717453898796, - "c6": 4.094763303062235, - "c7": 4.125591981561767 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -93696,23 +93696,23 @@ "year": 1731, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -5.39061056872778, - "c2": 0.9290172110014367, - "c3": 17.544097590287492, - "c4": -21.275952370279896, - "c5": 0.24982299158511978, - "c6": 19.813811289169095, - "c7": 16.503234333728273 + "points": { + "c1": 22.372201793077494, + "c2": -39.69172305075425, + "c3": 31.844144269738294, + "c4": -8.615686632792745, + "c5": 30.338304067604952, + "c6": -31.322989256197936, + "c7": -21.324319292281636 }, - "vertexSeeds": { - "c1": 6.040094045444775, - "c2": 5.916825700755038, - "c3": 6.159582391931084, - "c4": 6.01234640203997, - "c5": 5.53755464856573, - "c6": 5.969133233616699, - "c7": 5.675052357856779 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112349, + "c3": 7.535829865926951, + "c4": 6.028663892741566, + "c5": 4.521497919556168, + "c6": 3.014331946370783, + "c7": 1.507165973185398 }, "rgb": [86, 146, 138] }, @@ -93723,23 +93723,23 @@ "year": 1731, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": -23.126133346368807, - "c2": 4.559481976929035, - "c3": 38.92585068779828, - "c4": 16.770289148067583, - "c5": 34.01541106187313, - "c6": -17.65689748056741, - "c7": -39.738213565614885 + "points": { + "c1": 36.41389168506307, + "c2": 19.1916363530786, + "c3": 49.63413088169647, + "c4": -47.73559864985053, + "c5": -28.64041960402434, + "c6": 17.418755661255837, + "c7": 23.470318680558016 }, - "vertexSeeds": { - "c1": 3.8594639569594, - "c2": 3.484414080885033, - "c3": 3.864290178971611, - "c4": 3.423256126100704, - "c5": 3.309853338341589, - "c6": 3.3053544287525027, - "c7": 3.874504402293968 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124824, + "c3": 4.66944059177069, + "c4": 3.7355524734165493, + "c5": 2.801664355062415, + "c6": 1.8677762367082746, + "c7": 0.9338881183541401 }, "rgb": [238, 201, 159] }, @@ -93750,23 +93750,23 @@ "year": 1731, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -13.714126238880478, - "c2": -31.114231532955028, - "c3": 11.885935979646007, - "c4": 21.16519695275896, - "c5": -33.7818664820489, - "c6": 19.564042027464737, - "c7": 8.207172861019721 + "points": { + "c1": -1.8028340293473022, + "c2": 36.15119044445086, + "c3": -9.66713453412791, + "c4": -31.984851435042877, + "c5": -23.723074895694506, + "c6": -11.548204745172228, + "c7": 36.33306844845167 }, - "vertexSeeds": { - "c1": 7.028651390065843, - "c2": 7.324203229340296, - "c3": 7.235292728825913, - "c4": 7.0245737562550765, - "c5": 7.34832931195306, - "c6": 7.33660623908461, - "c7": 7.250770290737815 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284342, + "c3": 8.784096162736935, + "c4": 7.027276930189562, + "c5": 5.270457697642154, + "c6": 3.513638465094781, + "c7": 1.756819232547408 }, "rgb": [222, 0, 59] }, @@ -93777,23 +93777,23 @@ "year": 1731, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 34.1153350227299, - "c2": -11.171500335555603, - "c3": 33.31597720862326, - "c4": 5.391493604983509, - "c5": 19.96054931411716, - "c6": 10.910951413855997, - "c7": -14.37081593075191 + "points": { + "c1": 35.231641994041446, + "c2": -3.3134657984650246, + "c3": 22.435051934697725, + "c4": -21.88872729869898, + "c5": -11.759232812341963, + "c6": 7.78903607961869, + "c7": -10.550424720915565 }, - "vertexSeeds": { - "c1": 5.964478209577157, - "c2": 5.5077496992485795, - "c3": 5.8624518138859605, - "c4": 6.060304894848635, - "c5": 6.058928098106188, - "c6": 6.018064926152028, - "c7": 5.976549549526185 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -93804,23 +93804,23 @@ "year": 1731, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -33.20929036710859, - "c2": -7.391409576448684, - "c3": -5.8907234506908175, - "c4": -25.464671967932297, - "c5": 30.449638849784563, - "c6": 26.279009687614383, - "c7": -33.58964456835787 + "points": { + "c1": -30.501271111963902, + "c2": 26.799789019006553, + "c3": 20.466401377834337, + "c4": -9.430355683023151, + "c5": -21.661551673506228, + "c6": 8.321948595813609, + "c7": -11.927784381931929 }, - "vertexSeeds": { - "c1": 2.13182670752629, - "c2": 1.947051193723252, - "c3": 2.161190267313407, - "c4": 2.0093860396898693, - "c5": 1.9259126477088846, - "c6": 2.161437824479973, - "c7": 2.1135030206612972 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300527, + "c5": 1.5672676837725366, + "c6": 1.0448451225150244, + "c7": 0.5224225612575122 }, "rgb": [58, 15, 49] }, @@ -93831,23 +93831,23 @@ "year": 1731, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -9.72495827093135, - "c2": 16.045589178574588, - "c3": 11.87570077852547, - "c4": 15.947186411456222, - "c5": -12.489420832245457, - "c6": -9.99369557998104, - "c7": -14.296886817922367 + "points": { + "c1": 13.528335212376184, + "c2": 19.675720233822645, + "c3": -11.797116858003484, + "c4": 13.514913385183867, + "c5": 15.773589977996856, + "c6": 16.389662113517936, + "c7": 9.316596349449831 }, - "vertexSeeds": { - "c1": 5.147214788837946, - "c2": 4.258240616900715, - "c3": 4.282357126553815, - "c4": 4.795038115257147, - "c5": 4.478625337467105, - "c6": 4.257220864597392, - "c7": 4.450873568833567 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -93858,23 +93858,23 @@ "year": 1731, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 25.033550419380774, - "c2": -4.081757319761259, - "c3": 16.68637628698007, - "c4": 23.77052787157679, - "c5": -9.9496966542806, - "c6": 27.309158400147638, - "c7": 29.302538628824045 + "points": { + "c1": 21.2909518083276, + "c2": 11.9109508377244, + "c3": 18.777357504755166, + "c4": 27.14407072670656, + "c5": -25.683163932505526, + "c6": -21.06084168048529, + "c7": 6.201985497539646 }, - "vertexSeeds": { - "c1": 3.139973915035119, - "c2": 2.979300235118237, - "c3": 3.0091027441226905, - "c4": 3.074563073925888, - "c5": 2.9567030436305366, - "c6": 3.3055792456776123, - "c7": 3.2811964706483394 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -93885,23 +93885,23 @@ "year": 1731, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -53.14195953363827, - "c2": 34.08700332960996, - "c3": 8.221838161045731, - "c4": -6.3758209308753635, - "c5": 53.372774658752114, - "c6": 51.0823817151605, - "c7": -19.837633077570054 + "points": { + "c1": 41.03705169275741, + "c2": 10.814783309519235, + "c3": -49.999935862452396, + "c4": 31.733221812695923, + "c5": -37.55138942394056, + "c6": -10.92284960295649, + "c7": -15.765922164102712 }, - "vertexSeeds": { - "c1": 5.55699481865285, - "c2": 5.55699481865285, - "c3": 5.55699481865285, - "c4": 5.55699481865285, - "c5": 5.55699481865285, - "c6": 5.55699481865285, - "c7": 5.55699481865285 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -93912,23 +93912,23 @@ "year": 1731, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 8.33295689611618, - "c2": -19.170259232064677, - "c3": -30.423772745290492, - "c4": -29.687792738947238, - "c5": 37.07874112873886, - "c6": -34.759394270551134, - "c7": -25.311856511654845 + "points": { + "c1": -18.34032144164651, + "c2": -3.0396550892756835, + "c3": 19.021179890684003, + "c4": -23.484755247092032, + "c5": 39.19109069337221, + "c6": -9.754606019933416, + "c7": -6.779603442868961 }, - "vertexSeeds": { - "c1": 2.683558095723383, - "c2": 2.5778380497430957, - "c3": 2.802040965018487, - "c4": 2.6159964333656296, - "c5": 2.5636655560378476, - "c6": 2.7862455275347116, - "c7": 2.552862472714147 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274617, + "c3": 3.606102635228849, + "c4": 2.8848821081830773, + "c5": 2.1636615811373106, + "c6": 1.4424410540915387, + "c7": 0.7212205270457667 }, "rgb": [77, 76, 132] }, @@ -93939,23 +93939,23 @@ "year": 1731, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 21.608968974427157, - "c2": -14.940216214105003, - "c3": -0.0967750401358316, - "c4": 32.91811160275593, - "c5": 4.033832375089929, - "c6": -6.081150248251326, - "c7": -24.899367900122087 + "points": { + "c1": -26.75616859481984, + "c2": 29.688922416835638, + "c3": -32.042601528425045, + "c4": -18.042609236178258, + "c5": 5.024812912315319, + "c6": -12.278650576089873, + "c7": -21.06158916329133 }, - "vertexSeeds": { - "c1": 5.747258700875337, - "c2": 5.991613321905773, - "c3": 6.371561353681022, - "c4": 6.3105476562610185, - "c5": 5.958486786717118, - "c6": 5.914061645118227, - "c7": 6.139105506675025 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -93966,23 +93966,23 @@ "year": 1731, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -10.834939094018935, - "c2": -27.845334700441, - "c3": -11.141973541575286, - "c4": -5.95597960478975, - "c5": 17.006256283981372, - "c6": 31.98248657053498, - "c7": -28.77613392844188 + "points": { + "c1": 0.2231059446476351, + "c2": 26.290148464721938, + "c3": -18.748406283831894, + "c4": 7.009860305438757, + "c5": -13.275079114896094, + "c6": -18.160728729130742, + "c7": 33.88541944811258 }, - "vertexSeeds": { - "c1": 0.8613472703878322, - "c2": 0.881533873030646, - "c3": 0.9348690345769245, - "c4": 0.9127828214357347, - "c5": 0.9050662561778444, - "c6": 0.8730909012373108, - "c7": 0.9133885553148748 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.3869625520110953, + "c3": 1.1558021266759122, + "c4": 0.9246417013407294, + "c5": 0.6934812760055488, + "c6": 0.4623208506703659, + "c7": 0.23116042533518294 }, "rgb": [58, 15, 49] }, @@ -93993,23 +93993,23 @@ "year": 1731, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 0.9175229145411237, - "c2": -10.884061056551808, - "c3": 3.5450864486729543, - "c4": -12.469280804625896, - "c5": -8.964293081034704, - "c6": -8.288476621932293, - "c7": -26.092147127376442 + "points": { + "c1": 28.161933074211063, + "c2": -37.20954559961888, + "c3": -34.838491939754164, + "c4": -25.773697813543883, + "c5": -34.10611476937022, + "c6": -16.983055108859745, + "c7": -5.698952938495722 }, - "vertexSeeds": { - "c1": 5.233681686585938, - "c2": 4.624854063419642, - "c3": 5.243644113302289, - "c4": 4.660372741071875, - "c5": 4.698017086843539, - "c6": 5.204729260508999, - "c7": 4.725358952743925 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -94020,23 +94020,23 @@ "year": 1731, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -13.791225091409796, - "c2": 11.118675613936837, - "c3": 14.418273235717258, - "c4": -6.394872902459063, - "c5": 17.907223289048325, - "c6": 7.602586514988353, - "c7": -29.81283113288383 + "points": { + "c1": -14.745086875669088, + "c2": 27.061777484439673, + "c3": -5.361078308683371, + "c4": -9.139951510887233, + "c5": -9.003208780189901, + "c6": -17.97530697211949, + "c7": -14.255573794206295 }, - "vertexSeeds": { - "c1": 5.912120427425922, - "c2": 6.3800883152643335, - "c3": 5.995274818354403, - "c4": 6.139354277221769, - "c5": 5.8333052273361155, - "c6": 5.812596373537969, - "c7": 5.715196099417412 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -94047,23 +94047,23 @@ "year": 1731, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 32.87119184084986, - "c2": 12.505022621064583, - "c3": 10.579474719249973, - "c4": -27.086576248650815, - "c5": 19.618677454047734, - "c6": -7.157444585468735, - "c7": -2.446209376140189 + "points": { + "c1": 10.600704317427706, + "c2": -16.141286797540864, + "c3": 17.515627178060562, + "c4": -36.00703384600222, + "c5": -23.306851949760638, + "c6": 22.323375676276285, + "c7": 28.837560279034363 }, - "vertexSeeds": { - "c1": 6.7097775257071826, - "c2": 7.20782375776192, - "c3": 6.934067033248044, - "c4": 7.18891829328422, - "c5": 6.954170128552737, - "c6": 7.158947518183494, - "c7": 7.29802937701133 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203882, + "c3": 8.737864077669903, + "c4": 6.990291262135922, + "c5": 5.242718446601941, + "c6": 3.495145631067961, + "c7": 1.7475728155339805 }, "rgb": [58, 15, 49] }, @@ -94074,23 +94074,23 @@ "year": 1731, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -43.30034295443941, - "c2": 36.866569382190974, - "c3": 11.19930214622672, - "c4": -28.208794369697184, - "c5": 5.688539743958636, - "c6": 47.29282562077624, - "c7": 26.081386285173863 + "points": { + "c1": -33.34267243592202, + "c2": 1.4374942916078837, + "c3": 31.057614856325173, + "c4": -8.431088905488416, + "c5": -44.16921753143345, + "c6": -10.62768764900266, + "c7": -39.36066900430552 }, - "vertexSeeds": { - "c1": 4.512115846237015, - "c2": 5.096958730878499, - "c3": 4.607250156983652, - "c4": 4.4880228976522885, - "c5": 4.92531147881122, - "c6": 4.285196476051101, - "c7": 4.812861327271827 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980583, + "c3": 6.310679611650486, + "c4": 5.048543689320389, + "c5": 3.7864077669902914, + "c6": 2.5242718446601944, + "c7": 1.2621359223300972 }, "rgb": [58, 15, 49] }, @@ -94101,23 +94101,23 @@ "year": 1732, "resistanceReported": false, "duration": 42854400, - "curveSeeds": { - "c1": -46.907899050390796, - "c2": 1.801463916958916, - "c3": -50.139903107595295, - "c4": 35.88733951913573, - "c5": -9.757336033842527, - "c6": 22.720066476328903, - "c7": 26.149084530371418 + "points": { + "c1": -29.377062831653898, + "c2": -33.1140142840498, + "c3": 9.00478384762652, + "c4": 34.829820132429965, + "c5": -32.01993740713688, + "c6": -36.70442959985079, + "c7": -28.35511382379021 }, - "vertexSeeds": { - "c1": 12.562878126289448, - "c2": 11.956284463658971, - "c3": 11.188658869826032, - "c4": 11.726585338798989, - "c5": 10.963134450154739, - "c6": 11.793738154750057, - "c7": 11.283998476495022 + "offsets": { + "c1": 21.003236245954692, + "c2": 18.00277392510402, + "c3": 15.002311604253352, + "c4": 12.00184928340268, + "c5": 9.00138696255201, + "c6": 6.00092464170134, + "c7": 3.00046232085067 }, "rgb": [77, 76, 132] }, @@ -94128,23 +94128,23 @@ "year": 1731, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -2.620661618528885, - "c2": 18.50544356444515, - "c3": 29.45144737644482, - "c4": 29.467862916725153, - "c5": -33.93193251311015, - "c6": 31.818014855646908, - "c7": -31.59608784783887 + "points": { + "c1": 22.27671688314959, + "c2": 34.00626050498562, + "c3": -14.711463534124409, + "c4": -9.437508132017808, + "c5": 27.98879968498821, + "c6": -24.717095631980087, + "c7": 5.561496967288946 }, - "vertexSeeds": { - "c1": 3.3214014204978097, - "c2": 3.5475475743173686, - "c3": 3.6494377291580817, - "c4": 3.568827571695847, - "c5": 3.337770105697791, - "c6": 3.3962162097681863, - "c7": 3.6859484805326552 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762827, + "c3": 4.461396208969028, + "c4": 3.569116967175221, + "c5": 2.6768377253814135, + "c6": 1.7845584835876147, + "c7": 0.8922792417938074 }, "rgb": [77, 76, 132] }, @@ -94155,23 +94155,23 @@ "year": 1731, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": 29.075275278939117, - "c2": -43.92442598569916, - "c3": -0.7336797293497455, - "c4": 21.548891215264362, - "c5": -6.346214332192055, - "c6": 10.694759256544316, - "c7": 44.352349615180785 + "points": { + "c1": -54.865111627520655, + "c2": 8.18168609249652, + "c3": -15.48860254847883, + "c4": -19.723342402814865, + "c5": -39.02852833585422, + "c6": 12.641503941745981, + "c7": 17.530093427769813 }, - "vertexSeeds": { - "c1": 8.604779462137191, - "c2": 8.192138280211847, - "c3": 8.190157318388843, - "c4": 8.212857264743352, - "c5": 8.669575197940189, - "c6": 8.174227392412975, - "c7": 8.56339158615011 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.56588072122053, + "c3": 10.47156726768378, + "c4": 8.377253814147027, + "c5": 6.282940360610256, + "c6": 4.1886269070735045, + "c7": 2.0943134535367522 }, "rgb": [238, 201, 159] }, @@ -94182,23 +94182,23 @@ "year": 1731, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -15.447927764120251, - "c2": -27.391042888358754, - "c3": 20.773927417156877, - "c4": -24.48056764609282, - "c5": 9.846168022929518, - "c6": 3.2686874631315845, - "c7": 8.811510764040449 + "points": { + "c1": 42.904765155006466, + "c2": -18.286112268030354, + "c3": -35.774779299571165, + "c4": 12.090254200217686, + "c5": -28.911551470025273, + "c6": 47.15006231225335, + "c7": -43.54940133038292 }, - "vertexSeeds": { - "c1": 6.176101065034048, - "c2": 5.83448222011352, - "c3": 6.466659889495065, - "c4": 6.036918937872276, - "c5": 6.066336231862308, - "c6": 6.396132234459797, - "c7": 6.020945217649319 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123437, + "c3": 8.691631992602863, + "c4": 6.9533055940822885, + "c5": 5.214979195561715, + "c6": 3.4766527970411487, + "c7": 1.7383263985205653 }, "rgb": [77, 76, 132] }, @@ -94209,23 +94209,23 @@ "year": 1731, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": -44.301579507630656, - "c2": -14.484346752882011, - "c3": -46.53592886951626, - "c4": 40.481279314932074, - "c5": 47.98545059622713, - "c6": -3.369694175667952, - "c7": -9.799288066078027 + "points": { + "c1": -52.03829166628444, + "c2": -23.913643141994584, + "c3": 9.90090260979649, + "c4": 18.611616501300766, + "c5": 52.04497434130861, + "c6": 35.004743201132236, + "c7": -38.67921127346436 }, - "vertexSeeds": { - "c1": 2.2206216097132994, - "c2": 2.2990146289051405, - "c3": 2.168238910585347, - "c4": 2.392907026994178, - "c5": 2.5062305007235253, - "c6": 2.2599518784820942, - "c7": 2.2740550014123655 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690682, + "c3": 3.0282015718908926, + "c4": 2.422561257512714, + "c5": 1.8169209431345354, + "c6": 1.211280628756357, + "c7": 0.6056403143781784 }, "rgb": [77, 76, 132] }, @@ -94236,23 +94236,23 @@ "year": 1731, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -11.348792519784537, - "c2": 0.4651145714139062, - "c3": -14.686421918373178, - "c4": 7.626779708127941, - "c5": 2.6043045554053954, - "c6": -15.696403482198548, - "c7": 11.214788069184046 + "points": { + "c1": -6.267551610810367, + "c2": -16.637137367326385, + "c3": -1.257861939582682, + "c4": 5.190578279554391, + "c5": -18.469757598988704, + "c6": 17.11756329323247, + "c7": 11.966891971349938 }, - "vertexSeeds": { - "c1": 5.779232675755729, - "c2": 6.2265411729644695, - "c3": 6.529460841392447, - "c4": 6.446312165148504, - "c5": 6.335842863614635, - "c6": 6.511452931290517, - "c7": 6.216841804379965 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359222, + "c3": 8.252427184466018, + "c4": 6.601941747572814, + "c5": 4.951456310679611, + "c6": 3.300970873786407, + "c7": 1.6504854368932036 }, "rgb": [58, 15, 49] }, @@ -94263,23 +94263,23 @@ "year": 1731, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": -6.255595294839868, - "c2": -16.006284835221287, - "c3": -0.41835754924195356, - "c4": 10.962589910947294, - "c5": -9.082641349380477, - "c6": 15.292492230379835, - "c7": -14.510522105150345 + "points": { + "c1": 7.846761740116026, + "c2": 10.967670749828862, + "c3": -18.17171092061932, + "c4": -16.724294363364695, + "c5": -18.66153829243686, + "c6": 9.626923436394659, + "c7": 20.920481383975094 }, - "vertexSeeds": { - "c1": 4.660331699905648, - "c2": 4.7728494791154, - "c3": 4.303861747234665, - "c4": 4.664344717064188, - "c5": 4.797959470260912, - "c6": 4.659324831478966, - "c7": 4.9993790302834284 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -94290,23 +94290,23 @@ "year": 1731, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 2.1568303751070914, - "c2": 3.1634951633024286, - "c3": -8.856542706551444, - "c4": 41.78101145910608, - "c5": -19.77873261943814, - "c6": -33.01622344278311, - "c7": 36.349045531728734 + "points": { + "c1": 43.35728521969253, + "c2": 42.68543704845288, + "c3": 17.10057024999317, + "c4": -2.4891416648547207, + "c5": 40.991414573506276, + "c6": 43.86634779494072, + "c7": -34.45193765394052 }, - "vertexSeeds": { - "c1": 5.442378864260717, - "c2": 5.436815266958736, - "c3": 5.409375502535796, - "c4": 5.459366587403617, - "c5": 5.45093504894281, - "c6": 5.418705432001742, - "c7": 5.402954782398135 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382839, + "c3": 6.5418400369856124, + "c4": 5.2334720295885155, + "c5": 3.9251040221914195, + "c6": 2.616736014794193, + "c7": 1.3083680073970965 }, "rgb": [77, 76, 132] }, @@ -94317,23 +94317,23 @@ "year": 1731, "resistanceReported": true, "duration": 27216000, - "curveSeeds": { - "c1": -16.788821576788052, - "c2": 22.961927324400087, - "c3": 34.62626905339259, - "c4": 25.219458392496875, - "c5": 33.56188664313446, - "c6": -33.71421148684094, - "c7": 14.364280069936214 + "points": { + "c1": -23.793824635173564, + "c2": 17.88045949049649, + "c3": -12.2695276530347, + "c4": 1.1679784814404783, + "c5": 2.89997555310741, + "c6": -27.704868036732833, + "c7": -4.634183895987924 }, - "vertexSeeds": { - "c1": 11.931165815665063, - "c2": 11.999345401690949, - "c3": 11.204697184304194, - "c4": 11.210136910585037, - "c5": 11.44289873886677, - "c6": 11.576259660716408, - "c7": 11.874377409684904 + "offsets": { + "c1": 20.355987055016183, + "c2": 17.447988904299574, + "c3": 14.539990753582993, + "c4": 11.631992602866381, + "c5": 8.723994452149801, + "c6": 5.815996301433191, + "c7": 2.9079981507165797 }, "rgb": [238, 201, 159] }, @@ -94344,23 +94344,23 @@ "year": 1731, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -33.344815692823246, - "c2": -3.408236443196671, - "c3": 0.090657261697487, - "c4": 24.462241868804384, - "c5": 8.826177151282955, - "c6": -3.64320471302052, - "c7": 23.56144040960458 + "points": { + "c1": -32.657147151259714, + "c2": -9.968488605731082, + "c3": -30.347845460769193, + "c4": 4.6499799993214594, + "c5": 25.47975210996887, + "c6": 35.11106715048771, + "c7": -30.36087780319245 }, - "vertexSeeds": { - "c1": 6.8902907005101754, - "c2": 6.521344545388054, - "c3": 6.828623491889776, - "c4": 6.402647081832993, - "c5": 6.304245938629156, - "c6": 6.0902422741526046, - "c7": 6.574480153821648 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841889, + "c3": 8.529819694868232, + "c4": 6.823855755894589, + "c5": 5.117891816920944, + "c6": 3.4119278779473, + "c7": 1.7059639389736443 }, "rgb": [86, 146, 138] }, @@ -94371,23 +94371,23 @@ "year": 1732, "resistanceReported": false, "duration": 39916800, - "curveSeeds": { - "c1": 13.403622554985098, - "c2": 46.870592583116355, - "c3": -51.24233091686959, - "c4": 13.76263952868721, - "c5": 30.53182727517899, - "c6": 50.430530387042815, - "c7": -42.104791189610914 + "points": { + "c1": -40.36908406719696, + "c2": -34.76830520568396, + "c3": -18.842344013908118, + "c4": -22.565418905074466, + "c5": 10.402493594989828, + "c6": 31.526847968841132, + "c7": -5.24105140060464 }, - "vertexSeeds": { - "c1": 8.918301321150057, - "c2": 9.571420713864484, - "c3": 8.765023057306871, - "c4": 9.151346251763863, - "c5": 9.273706021453973, - "c6": 9.71743620140465, - "c7": 9.292934776543182 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593624, + "c3": 11.835413777161342, + "c4": 9.468331021729076, + "c5": 7.101248266296812, + "c6": 4.734165510864547, + "c7": 2.3670827554322655 }, "rgb": [77, 76, 132] }, @@ -94398,23 +94398,23 @@ "year": 1731, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -23.82508395542856, - "c2": 18.737291124768504, - "c3": 4.721168576819203, - "c4": -28.78212186637993, - "c5": -0.06724416524716759, - "c6": -1.8934193506715964, - "c7": 21.167518081649114 + "points": { + "c1": -13.622593797043741, + "c2": 9.619281061094952, + "c3": -1.9218198792552883, + "c4": 13.824536106056307, + "c5": 13.319219435614997, + "c6": 22.074578732821678, + "c7": -29.846842034302508 }, - "vertexSeeds": { - "c1": 4.425862918547332, - "c2": 4.629192624582022, - "c3": 4.317400638361647, - "c4": 4.7847433803038495, - "c5": 4.690280920192887, - "c6": 4.732014002911606, - "c7": 4.380447325280565 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -94425,23 +94425,23 @@ "year": 1731, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -19.652572285811225, - "c2": -10.14530818152932, - "c3": -18.245761162338386, - "c4": -27.63454831914518, - "c5": 28.250606917768444, - "c6": 2.2440125663477275, - "c7": 5.367773345650569 + "points": { + "c1": -16.957969218970597, + "c2": -11.11047385465858, + "c3": -11.629959682565481, + "c4": -19.376296150687338, + "c5": 27.465118369982584, + "c6": 29.555594976272268, + "c7": 10.761879861592725 }, - "vertexSeeds": { - "c1": 1.9901568987922695, - "c2": 1.809847233997244, - "c3": 1.89662907483578, - "c4": 1.8198544302679507, - "c5": 1.8090514085703613, - "c6": 1.933131770826342, - "c7": 1.8764227635483206 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233015, + "c3": 2.4271844660194186, + "c4": 1.9417475728155356, + "c5": 1.4563106796116527, + "c6": 0.9708737864077658, + "c7": 0.4854368932038829 }, "rgb": [77, 76, 132] }, @@ -94452,23 +94452,23 @@ "year": 1731, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 10.341724762790655, - "c2": -16.67212647423421, - "c3": 25.049605651774286, - "c4": -12.914248297278498, - "c5": 12.797117665896003, - "c6": 14.7223659594695, - "c7": 32.42201720428663 + "points": { + "c1": -7.459284579743873, + "c2": -29.831877259636588, + "c3": 41.43163141039034, + "c4": 25.28157008669797, + "c5": -30.772140365301894, + "c6": -20.970490496295298, + "c7": 20.936798450106316 }, - "vertexSeeds": { - "c1": 4.969342860590473, - "c2": 4.975607148818218, - "c3": 4.851717985533005, - "c4": 5.145628264880091, - "c5": 4.812722000821938, - "c6": 5.211025538770801, - "c7": 5.259611751300836 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020813, + "c3": 6.3337956541840015, + "c4": 5.067036523347208, + "c5": 3.8002773925103974, + "c6": 2.5335182616735956, + "c7": 1.2667591308367934 }, "rgb": [238, 201, 159] }, @@ -94479,23 +94479,23 @@ "year": 1731, "resistanceReported": false, "duration": 3801600, - "curveSeeds": { - "c1": -8.583746167374949, - "c2": -10.57879887054574, - "c3": -5.718116172852369, - "c4": -11.42221695533618, - "c5": -11.239278039867532, - "c6": -1.7093503316959708, - "c7": -4.993124581372015 + "points": { + "c1": -15.265313603787142, + "c2": -12.255236886147447, + "c3": 0.8028179181827149, + "c4": 13.967609190619545, + "c5": -6.752720621715262, + "c6": -8.141326345730958, + "c7": 14.416192836632401 }, - "vertexSeeds": { - "c1": 4.584976364220266, - "c2": 5.048523529787104, - "c3": 4.2003947976306355, - "c4": 4.562974813909813, - "c5": 4.265053121149657, - "c6": 4.5125934351414205, - "c7": 4.3760895920135425 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -94506,23 +94506,23 @@ "year": 1731, "resistanceReported": false, "duration": 3283200, - "curveSeeds": { - "c1": 11.61712549383548, - "c2": 4.229098144995195, - "c3": -2.826854772741312, - "c4": -8.281541415246743, - "c5": 6.65445197219389, - "c6": 12.514174520809739, - "c7": -10.567691256051587 + "points": { + "c1": 7.085737613545813, + "c2": 9.381143755250267, + "c3": -8.932157936889226, + "c4": 2.1647898290269723, + "c5": -5.579691651365533, + "c6": 6.675410231656027, + "c7": 0.7704824720724446 }, - "vertexSeeds": { - "c1": 5.946920051899513, - "c2": 6.202249777781376, - "c3": 5.712025366694552, - "c4": 5.655719580445942, - "c5": 5.833787867367455, - "c6": 5.779419638513766, - "c7": 5.873299995744436 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -94533,23 +94533,23 @@ "year": 1731, "resistanceReported": true, "duration": 31968000, - "curveSeeds": { - "c1": -17.668215250305114, - "c2": -34.053271017056495, - "c3": -35.8923573965859, - "c4": -8.437650124727398, - "c5": -10.430367748793302, - "c6": -4.70022953095777, - "c7": 39.02543540412031 + "points": { + "c1": -41.192431714007064, + "c2": 11.557968269445666, + "c3": -23.996840407794963, + "c4": 14.152211149741305, + "c5": -4.53138911650796, + "c6": 11.48851345292924, + "c7": -34.72742298171848 }, - "vertexSeeds": { - "c1": 1.8809130020939435, - "c2": 1.8603005872422638, - "c3": 1.7962312772185658, - "c4": 1.8489350695421127, - "c5": 1.7339937326219454, - "c6": 1.7690719716793377, - "c7": 1.9030648988510237 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981969, + "c3": 2.2884882108183078, + "c4": 1.8307905686546462, + "c5": 1.3730929264909846, + "c6": 0.9153952843273231, + "c7": 0.45769764216366154 }, "rgb": [222, 0, 59] }, @@ -94560,23 +94560,23 @@ "year": 1731, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 25.525198235473184, - "c2": -9.732559858493499, - "c3": 10.251090329991065, - "c4": 11.487205766890419, - "c5": 1.8916590458136326, - "c6": -23.746651102518882, - "c7": -24.013295027987756 + "points": { + "c1": 15.930852110319137, + "c2": 18.731261749116534, + "c3": -17.871319205824804, + "c4": 11.019160457346565, + "c5": 17.79343130931631, + "c6": 25.80170914554278, + "c7": -9.741028073906858 }, - "vertexSeeds": { - "c1": 3.961924344825723, - "c2": 4.386046883905452, - "c3": 4.598519717572376, - "c4": 3.99139565128978, - "c5": 4.1069207810952095, - "c6": 4.351779967798988, - "c7": 3.8582239250551775 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [86, 146, 138] }, @@ -94587,23 +94587,23 @@ "year": 1731, "resistanceReported": false, "duration": 3024000, - "curveSeeds": { - "c1": 7.928378038262752, - "c2": -3.3235304303639754, - "c3": -11.348224794310056, - "c4": -8.295567210535442, - "c5": -0.15422987204928162, - "c6": 4.732248050889014, - "c7": -1.3884873430961466 + "points": { + "c1": 9.661960155147225, + "c2": 11.874648363731593, + "c3": -14.198632770367666, + "c4": 3.8005466771000957, + "c5": 1.2278808382406634, + "c6": -7.02403345373412, + "c7": -14.567595391204925 }, - "vertexSeeds": { - "c1": 6.178358717877492, - "c2": 6.107684706322151, - "c3": 6.360747986635191, - "c4": 6.104692148459646, - "c5": 6.039650253373589, - "c6": 5.608025209939995, - "c7": 6.20341928967096 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -94614,23 +94614,23 @@ "year": 1731, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 9.889938225664228, - "c2": 2.553801782792288, - "c3": 13.01914768577355, - "c4": -18.638451825061548, - "c5": -23.580891258672008, - "c6": 21.347594797485005, - "c7": -2.04241896881431 + "points": { + "c1": 14.948815323022416, + "c2": 23.472102207066577, + "c3": 29.363367785846727, + "c4": -4.599643795302391, + "c5": -23.30336995634594, + "c6": 1.7262418585762163, + "c7": 16.267014111347578 }, - "vertexSeeds": { - "c1": 3.4799080591713105, - "c2": 3.2999979710307117, - "c3": 3.518646955380543, - "c4": 3.4413179078424423, - "c5": 3.421615696310533, - "c6": 3.3359231422030082, - "c7": 3.507491800353276 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [238, 201, 159] }, @@ -94641,23 +94641,23 @@ "year": 1731, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 2.183157913206717, - "c2": -3.947243697680051, - "c3": 0.7782250550705747, - "c4": -3.6684818407419613, - "c5": -9.883745577264719, - "c6": 21.886345729147557, - "c7": -18.001287665649606 + "points": { + "c1": 18.426327685081944, + "c2": -19.176284109894834, + "c3": -17.363742849522446, + "c4": 24.857597681910292, + "c5": 16.641419762987937, + "c6": -15.489840773469084, + "c7": 6.197974325492126 }, - "vertexSeeds": { - "c1": 6.7810880829015545, - "c2": 6.7810880829015545, - "c3": 6.7810880829015545, - "c4": 6.7810880829015545, - "c5": 6.7810880829015545, - "c6": 6.7810880829015545, - "c7": 6.7810880829015545 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -94668,23 +94668,23 @@ "year": 1731, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 6.066131571646181, - "c2": 14.384355871513186, - "c3": -17.614721199120456, - "c4": -30.944689317988434, - "c5": -1.9591185370724986, - "c6": -21.61978357196531, - "c7": -36.53757366914817 + "points": { + "c1": -44.621605758994626, + "c2": -22.24197731339066, + "c3": 33.12574606803768, + "c4": -24.480694266066482, + "c5": 25.77749107149487, + "c6": 32.65128998997111, + "c7": 12.501343018875318 }, - "vertexSeeds": { - "c1": 7.98984647501617, - "c2": 7.836167544409542, - "c3": 7.730101779978578, - "c4": 7.83861246622079, - "c5": 8.391967034453009, - "c6": 8.458478494775862, - "c7": 7.8528870468799825 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.17753120665742, + "c3": 10.147942672214517, + "c4": 8.118354137771613, + "c5": 6.08876560332871, + "c6": 4.059177068885806, + "c7": 2.029588534442903 }, "rgb": [86, 146, 138] }, @@ -94695,23 +94695,23 @@ "year": 1731, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -0.4978040391124523, - "c2": -16.548910967143172, - "c3": -23.14110591950358, - "c4": 13.384033533805194, - "c5": 11.014909896301404, - "c6": -15.407707733655236, - "c7": -13.240376061462062 + "points": { + "c1": -36.276603069447226, + "c2": -21.747950219461657, + "c3": 10.322968980622413, + "c4": 19.126186558071588, + "c5": -8.968535465336423, + "c6": -25.9455753912711, + "c7": 32.85381957470241 }, - "vertexSeeds": { - "c1": 9.335143340077789, - "c2": 9.622381559375214, - "c3": 9.201616677818167, - "c4": 9.002249102477908, - "c5": 9.122360511379966, - "c6": 8.96053287111264, - "c7": 9.07510622233347 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110962, + "c3": 11.558021266759122, + "c4": 9.246417013407301, + "c5": 6.934812760055481, + "c6": 4.62320850670366, + "c7": 2.3116042533518204 }, "rgb": [86, 146, 138] }, @@ -94722,23 +94722,23 @@ "year": 1732, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 18.69083916823964, - "c2": 3.0328871332133502, - "c3": -34.51458235500372, - "c4": -10.094245979023178, - "c5": -45.18782982791548, - "c6": 45.09935269366306, - "c7": -27.060732333508177 + "points": { + "c1": -36.1092867992484, + "c2": -12.799689292781373, + "c3": 1.5827048651061233, + "c4": 9.706452229243176, + "c5": -6.844810781186567, + "c6": 34.450957391762195, + "c7": -21.146992047949734 }, - "vertexSeeds": { - "c1": 0.4780856853441979, - "c2": 1.460105128509947, - "c3": 2.4832643166208173, - "c4": 0.36964991711171014, - "c5": 2.3796951361508474, - "c6": 0.7918099757337704, - "c7": 0.7734766982807185 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388355, + "c3": 4.045307443365696, + "c4": 3.2362459546925573, + "c5": 2.4271844660194177, + "c6": 1.6181229773462786, + "c7": 0.8090614886731398 }, "rgb": [238, 201, 159] }, @@ -94749,23 +94749,23 @@ "year": 1731, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 12.511471500247538, - "c2": 22.608897248333626, - "c3": -27.92424566685577, - "c4": 4.138746867538131, - "c5": -7.72558359674256, - "c6": -33.10546471200328, - "c7": -7.425645043398365 + "points": { + "c1": -1.1052100879761042, + "c2": 20.988554225339193, + "c3": 33.51946561807526, + "c4": 12.233033380337474, + "c5": 0.3938032022704121, + "c6": -9.649864722084029, + "c7": 24.860648626096584 }, - "vertexSeeds": { - "c1": 2.9271577824427677, - "c2": 3.1438134003933285, - "c3": 2.9872027772127434, - "c4": 3.16649007036363, - "c5": 3.3429014292631645, - "c6": 3.205194688961367, - "c7": 3.304506074523704 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [238, 201, 159] }, @@ -94776,23 +94776,23 @@ "year": 1731, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 11.334081305965405, - "c2": 35.560956923011645, - "c3": -0.20161298711768438, - "c4": 4.603731263181906, - "c5": 39.76780005845973, - "c6": -22.471812405192374, - "c7": 16.29819699965155 + "points": { + "c1": -7.350310170103441, + "c2": 9.57818757379961, + "c3": 11.749641042184159, + "c4": 23.33127195931783, + "c5": 11.15452432059574, + "c6": 0.9644350279993787, + "c7": 28.568301274614328 }, - "vertexSeeds": { - "c1": 11.69233230946992, - "c2": 11.844837205535795, - "c3": 11.745940080430808, - "c4": 11.674007983073981, - "c5": 11.382498557838339, - "c6": 11.611314354638825, - "c7": 11.453831231011394 + "offsets": { + "c1": 20.22653721682848, + "c2": 17.3370319001387, + "c3": 14.447526583448925, + "c4": 11.55802126675915, + "c5": 8.66851595006933, + "c6": 5.779010633379553, + "c7": 2.8895053166897764 }, "rgb": [58, 15, 49] }, @@ -94803,23 +94803,23 @@ "year": 1731, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 40.161729225145415, - "c2": -32.516305809808934, - "c3": -31.640176595324384, - "c4": -31.901846059027825, - "c5": -31.44128715795862, - "c6": -6.267600327884132, - "c7": -19.9985341785761 + "points": { + "c1": 27.628323858188388, + "c2": -32.76994128041297, + "c3": 32.277456588134136, + "c4": -41.88701871889003, + "c5": -25.008768737125525, + "c6": 36.46789341265758, + "c7": -35.383262388318954 }, - "vertexSeeds": { - "c1": 12.265519559341323, - "c2": 12.875082339779688, - "c3": 12.514621516126264, - "c4": 13.378511903906832, - "c5": 12.861831415374922, - "c6": 13.269592911683112, - "c7": 12.731935469295674 + "offsets": { + "c1": 22.815533980582526, + "c2": 19.556171983356457, + "c3": 16.296809986130366, + "c4": 13.037447988904297, + "c5": 9.778085991678228, + "c6": 6.51872399445216, + "c7": 3.2593619972260686 }, "rgb": [238, 201, 159] }, @@ -94830,23 +94830,23 @@ "year": 1731, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -27.262428355026685, - "c2": -16.515024271276737, - "c3": -25.898720249453284, - "c4": 21.259838814208656, - "c5": -27.36448802430374, - "c6": -34.62456924766852, - "c7": 25.186652956866773 + "points": { + "c1": 2.7857973929109576, + "c2": -8.9749255964459, + "c3": 17.14261688363238, + "c4": 1.1859834347602103, + "c5": 28.832317341083723, + "c6": -25.313183380286343, + "c7": 24.314726329266506 }, - "vertexSeeds": { - "c1": 4.998841796041817, - "c2": 5.240601484939949, - "c3": 5.387028303018134, - "c4": 4.891055112700749, - "c5": 4.957506721881031, - "c6": 5.347262575842435, - "c7": 5.559559374494529 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.2122052704577, + "c4": 5.769764216366157, + "c5": 4.327323162274614, + "c6": 2.884882108183081, + "c7": 1.4424410540915382 }, "rgb": [58, 15, 49] }, @@ -94857,23 +94857,23 @@ "year": 1731, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 17.02611487628407, - "c2": -28.188779338006963, - "c3": -8.795905197373887, - "c4": -8.7715072525355, - "c5": -25.401939757983357, - "c6": -21.279450196246053, - "c7": 11.624439536677741 + "points": { + "c1": -11.608665202932432, + "c2": -31.95578978543292, + "c3": 2.8551831084653045, + "c4": 16.562190631569926, + "c5": -2.615040851439339, + "c6": -31.233028846826628, + "c7": -21.797020988675534 }, - "vertexSeeds": { - "c1": 6.915496116884455, - "c2": 5.080305882333759, - "c3": 6.4231742970055805, - "c4": 4.380054385096736, - "c5": 6.167165395796623, - "c6": 5.6940698803982555, - "c7": 7.539884502825018 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.397133610725845, + "c5": 5.547850208044381, + "c6": 3.698566805362922, + "c7": 1.8492834026814624 }, "rgb": [77, 76, 132] }, @@ -94884,23 +94884,23 @@ "year": 1731, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 23.236306047289773, - "c2": 2.4535556626441846, - "c3": 26.295933877088267, - "c4": -10.054600659771474, - "c5": 29.503051630390445, - "c6": 5.420538872015321, - "c7": 14.393734724939684 + "points": { + "c1": 23.265804316167845, + "c2": 17.364442320744615, + "c3": -29.49950984634783, + "c4": 26.75371242669098, + "c5": 26.71661061011858, + "c6": -2.75648070155475, + "c7": 7.183686699552737 }, - "vertexSeeds": { - "c1": 2.870693242835447, - "c2": 2.7746426239601654, - "c3": 2.679093299218363, - "c4": 2.6324254693172318, - "c5": 2.5721729256651282, - "c6": 2.6390211624720004, - "c7": 2.6837074807153347 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [86, 146, 138] }, @@ -94911,23 +94911,23 @@ "year": 1732, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -1.4752551368981415, - "c2": 24.17077016942376, - "c3": 12.97221379718414, - "c4": -13.4479509796287, - "c5": 0.5889214949677708, - "c6": 35.67077953472925, - "c7": -43.693528574879466 + "points": { + "c1": 3.119038948685592, + "c2": -34.574130681045084, + "c3": -32.27150443989892, + "c4": -45.82690978537124, + "c5": -7.893263331145114, + "c6": -46.94299867164013, + "c7": -19.037646346100072 }, - "vertexSeeds": { - "c1": 8.340505481804234, - "c2": 8.197528369289232, - "c3": 8.291868686063943, - "c4": 8.52959345782859, - "c5": 8.654477256152385, - "c6": 8.728065784362437, - "c7": 7.923152644137878 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140076, + "c3": 10.425335182616736, + "c4": 8.340268146093383, + "c5": 6.255201109570047, + "c6": 4.170134073046691, + "c7": 2.0850670365233546 }, "rgb": [58, 15, 49] }, @@ -94938,23 +94938,23 @@ "year": 1732, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": 36.523651264342035, - "c2": 54.115871354239815, - "c3": 54.73887998554001, - "c4": -25.667329203749045, - "c5": -2.7773096370925785, - "c6": -36.9571389973279, - "c7": 47.450459063839475 + "points": { + "c1": -40.907878319501634, + "c2": 48.5883806628172, + "c3": -22.32747292440463, + "c4": 51.99946847916834, + "c5": -1.7039167699216264, + "c6": -52.13254946418762, + "c7": 10.0025459119569 }, - "vertexSeeds": { - "c1": 0.4656172041416324, - "c2": 0.45106901964650736, - "c3": 0.4566890632531487, - "c4": 0.46276066757815737, - "c5": 0.44094053470081734, - "c6": 0.44670234754947596, - "c7": 0.45155730297581687 + "offsets": { + "c1": 0.8090614886731391, + "c2": 0.6934812760055482, + "c3": 0.5779010633379559, + "c4": 0.462320850670365, + "c5": 0.3467406380027741, + "c6": 0.23116042533518322, + "c7": 0.11558021266759089 }, "rgb": [238, 201, 159] }, @@ -94965,23 +94965,23 @@ "year": 1731, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 42.109876033768266, - "c2": 42.23550369320872, - "c3": -2.9933464382828916, - "c4": -16.39452546539124, - "c5": 1.7171470847060633, - "c6": 34.87971000961347, - "c7": 16.210477184239508 + "points": { + "c1": 28.61097108310377, + "c2": -15.32550741500437, + "c3": -11.05097168294671, + "c4": -41.63409331225427, + "c5": -24.001171654576442, + "c6": -10.037188175938297, + "c7": -11.057070597530547 }, - "vertexSeeds": { - "c1": 7.077218339838938, - "c2": 6.944226875989224, - "c3": 6.531429224321804, - "c4": 7.430793904766884, - "c5": 7.356632272165367, - "c6": 6.706758097833697, - "c7": 7.280041852004047 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525658, + "c3": 8.922792417938044, + "c4": 7.138233934350433, + "c5": 5.353675450762822, + "c6": 3.56911696717521, + "c7": 1.784558483587598 }, "rgb": [58, 15, 49] }, @@ -94992,23 +94992,23 @@ "year": 1732, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -9.78220711452051, - "c2": -17.277754030529234, - "c3": -0.9746332307536179, - "c4": 11.050588125093164, - "c5": -43.618248486832904, - "c6": 13.501194795333817, - "c7": -16.72403618724875 + "points": { + "c1": 10.823444362703356, + "c2": -9.788851022224797, + "c3": 19.894349683115927, + "c4": 20.94907927815239, + "c5": 14.324666005239564, + "c6": 1.172195702910912, + "c7": -33.3300651396652 }, - "vertexSeeds": { - "c1": 5.045247146631403, - "c2": 4.6355827997005115, - "c3": 5.1450640302083634, - "c4": 5.07798826440433, - "c5": 4.767033735499454, - "c6": 5.243289051762519, - "c7": 5.238544503885511 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -95019,23 +95019,23 @@ "year": 1731, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -26.28634577989597, - "c2": 13.535621295746218, - "c3": 24.902024435397507, - "c4": -4.285047075774877, - "c5": -21.733525015572425, - "c6": 16.37487507970698, - "c7": -14.37395714737102 + "points": { + "c1": -33.54268335722492, + "c2": 37.03513720736319, + "c3": -23.70919773382906, + "c4": -25.78536132019457, + "c5": -7.525979612782045, + "c6": -8.43793102973516, + "c7": 4.158135585391491 }, - "vertexSeeds": { - "c1": 3.9216977216138207, - "c2": 3.4991084654119198, - "c3": 3.913157839768003, - "c4": 3.6607271457590445, - "c5": 3.914909604769215, - "c6": 3.8423014246936793, - "c7": 3.6063476523176052 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165045, + "c3": 4.692556634304208, + "c4": 3.754045307443363, + "c5": 2.815533980582526, + "c6": 1.8770226537216814, + "c7": 0.9385113268608444 }, "rgb": [86, 146, 138] }, @@ -95046,23 +95046,23 @@ "year": 1731, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 8.066041838952625, - "c2": 21.435533830899793, - "c3": -5.504277303000556, - "c4": -1.5364333736229057, - "c5": 17.149194149564316, - "c6": 13.658254600641392, - "c7": 9.913157713488602 + "points": { + "c1": -22.311361105438557, + "c2": 16.386510599429293, + "c3": -19.646303283918403, + "c4": -7.883034663975309, + "c5": -19.97094418940428, + "c6": -1.8897612562882458, + "c7": 0.2094962007774761 }, - "vertexSeeds": { - "c1": 3.0034317691771837, - "c2": 3.071225200582794, - "c3": 3.207702256899087, - "c4": 3.0814803781159767, - "c5": 3.0302811070086055, - "c6": 3.1740845721890203, - "c7": 3.25473687707643 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -95073,23 +95073,23 @@ "year": 1731, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -19.81232161831698, - "c2": 22.365564847471603, - "c3": 26.80506826503008, - "c4": -5.418730974119896, - "c5": -24.885211797344034, - "c6": 24.18010638149439, - "c7": 33.262670487118626 + "points": { + "c1": -24.155074074366407, + "c2": -6.877935262532379, + "c3": 1.9239875787058338, + "c4": -7.263225507512086, + "c5": 16.62628373548253, + "c6": -34.21183018692704, + "c7": 23.65998894572423 }, - "vertexSeeds": { - "c1": 7.012834090390905, - "c2": 6.97522924317078, - "c3": 7.231206821766391, - "c4": 7.124960581857972, - "c5": 6.992189323492383, - "c6": 7.092892491139376, - "c7": 6.193139102855555 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042997, + "c3": 8.64539990753583, + "c4": 6.916319926028664, + "c5": 5.187239944521498, + "c6": 3.458159963014332, + "c7": 1.729079981507166 }, "rgb": [238, 201, 159] }, @@ -95100,23 +95100,23 @@ "year": 1732, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -34.826001828519665, - "c2": 38.97835340324491, - "c3": -18.486497921346785, - "c4": 37.771275632836776, - "c5": 28.505016349325018, - "c6": -20.22737237442058, - "c7": -21.635653143994066 + "points": { + "c1": 18.402417487037468, + "c2": -28.44504531438307, + "c3": 18.4225134272522, + "c4": -43.189242547347405, + "c5": 39.62699034496998, + "c6": -2.0928171951739785, + "c7": 42.17135049757695 }, - "vertexSeeds": { - "c1": 6.224380900804118, - "c2": 6.017408054583981, - "c3": 6.219783610243258, - "c4": 5.961324757950663, - "c5": 5.89007799172764, - "c6": 5.541295277286173, - "c7": 5.652501542977431 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -95127,23 +95127,23 @@ "year": 1732, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -7.174522844157956, - "c2": 19.711733507568873, - "c3": -22.922924901022192, - "c4": 7.819081481497648, - "c5": 26.07133072993109, - "c6": 0.4660949337404219, - "c7": -37.511368387688336 + "points": { + "c1": -10.936303953569613, + "c2": -33.86296003865936, + "c3": -14.402428144196229, + "c4": -5.82329169173606, + "c5": 31.272369560211132, + "c6": -7.198058018978216, + "c7": 23.149527940587333 }, - "vertexSeeds": { - "c1": 4.080310880829016, - "c2": 4.080310880829016, - "c3": 4.080310880829016, - "c4": 4.080310880829016, - "c5": 4.080310880829016, - "c6": 4.080310880829016, - "c7": 4.080310880829016 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -95154,23 +95154,23 @@ "year": 1731, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 26.881129306050493, - "c2": 25.880305840050223, - "c3": -12.026976056275625, - "c4": 6.242661492926008, - "c5": 20.95294495631951, - "c6": 16.992642912625772, - "c7": -27.326332803464368 + "points": { + "c1": 26.51747276316489, + "c2": 20.43550405681227, + "c3": -1.6866828063487844, + "c4": -31.070951719643027, + "c5": -13.364129535231292, + "c6": 29.642397337098686, + "c7": -19.45946948126667 }, - "vertexSeeds": { - "c1": 5.617679364796019, - "c2": 6.071520987547905, - "c3": 5.74654857419115, - "c4": 5.637866014762163, - "c5": 5.498163745261029, - "c6": 5.589078099069342, - "c7": 5.752187218433967 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -95181,23 +95181,23 @@ "year": 1732, "resistanceReported": false, "duration": 42336000, - "curveSeeds": { - "c1": 54.0387849799874, - "c2": 36.57843733790061, - "c3": 17.90396254962336, - "c4": 4.206727271740519, - "c5": 52.15593515138039, - "c6": -50.67711821764307, - "c7": -37.134939479455035 + "points": { + "c1": 33.53118141348325, + "c2": -0.7144064648053856, + "c3": 5.292351636065732, + "c4": -55.84874600271847, + "c5": -14.349643649803099, + "c6": -33.287125130775735, + "c7": 0.8556748785438373 }, - "vertexSeeds": { - "c1": 6.932553753047419, - "c2": 6.636930139697938, - "c3": 6.690230725767962, - "c4": 7.053494242563934, - "c5": 6.848502400536267, - "c6": 7.00701325059844, - "c7": 7.1712754286583 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203882, + "c3": 8.737864077669903, + "c4": 6.990291262135922, + "c5": 5.242718446601941, + "c6": 3.495145631067961, + "c7": 1.7475728155339805 }, "rgb": [238, 201, 159] }, @@ -95208,23 +95208,23 @@ "year": 1731, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 20.054658885253154, - "c2": -4.614908546721757, - "c3": -35.51487661975116, - "c4": -15.182423745511919, - "c5": -26.424128065974493, - "c6": -24.35218051673084, - "c7": 2.8405464049600937 + "points": { + "c1": -14.914898836099258, + "c2": -3.2992174797786262, + "c3": 29.565707014234, + "c4": -8.966777011662696, + "c5": 13.294137681551632, + "c6": -21.10606007526195, + "c7": 6.058559476559992 }, - "vertexSeeds": { - "c1": 5.323834196891191, - "c2": 5.323834196891191, - "c3": 5.323834196891191, - "c4": 5.323834196891191, - "c5": 5.323834196891191, - "c6": 5.323834196891191, - "c7": 5.323834196891191 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -95235,23 +95235,23 @@ "year": 1732, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -8.736130414508942, - "c2": -23.379418312963427, - "c3": -23.361509286356828, - "c4": -16.657371240073022, - "c5": -37.867068077918084, - "c6": -34.91767588882422, - "c7": -27.619346743374702 + "points": { + "c1": 25.27185161333307, + "c2": 9.10999925731877, + "c3": -37.36084804806507, + "c4": -15.514504723286692, + "c5": 26.609238375328047, + "c6": 29.623735083279257, + "c7": -23.235677912585864 }, - "vertexSeeds": { - "c1": 2.405364715052253, - "c2": 2.311728147077559, - "c3": 2.323750973124858, - "c4": 2.498356761607839, - "c5": 2.3236098034158053, - "c6": 2.1034101904874603, - "c7": 2.4532857198304305 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690705, + "c3": 3.0282015718908912, + "c4": 2.4225612575127142, + "c5": 1.8169209431345352, + "c6": 1.211280628756356, + "c7": 0.6056403143781792 }, "rgb": [222, 0, 59] }, @@ -95262,23 +95262,23 @@ "year": 1731, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -30.5935541729659, - "c2": -8.222337454663055, - "c3": 7.206146799161601, - "c4": -23.42388599041314, - "c5": 23.303352942944784, - "c6": 18.18718279827116, - "c7": 0.1059681251243596 + "points": { + "c1": 30.395961592542882, + "c2": 20.979688251150385, + "c3": 8.215818151576286, + "c4": -19.314705039830816, + "c5": -8.041309506786419, + "c6": 12.317858762284878, + "c7": 26.594375293075792 }, - "vertexSeeds": { - "c1": 5.499383484477891, - "c2": 5.217859870151941, - "c3": 5.383326453577018, - "c4": 5.107367431742912, - "c5": 4.994829586712321, - "c6": 5.2987404219659116, - "c7": 5.649394586805847 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787331, + "c4": 5.39990753582987, + "c5": 4.049930651872403, + "c6": 2.699953767914935, + "c7": 1.3499768839574675 }, "rgb": [86, 146, 138] }, @@ -95289,23 +95289,23 @@ "year": 1732, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": 33.78022348379003, - "c2": 13.279160323940125, - "c3": 25.079443629413454, - "c4": 0.48977187718706006, - "c5": -46.46338815886758, - "c6": -27.584639760011587, - "c7": -54.85368020018681 + "points": { + "c1": -28.893536588490583, + "c2": 30.931169689295977, + "c3": -27.275260271885866, + "c4": -47.36721413974496, + "c5": 46.35558849314564, + "c6": -41.14470365012667, + "c7": -18.53750022388771 }, - "vertexSeeds": { - "c1": 1.8028814628708782, - "c2": 1.821389370632735, - "c3": 1.696179321468214, - "c4": 1.6733840783612908, - "c5": 1.6552960787185254, - "c6": 1.6041121691411007, - "c7": 1.717070731237958 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.6907073509015245, + "c3": 2.242256125751272, + "c4": 1.7938049006010164, + "c5": 1.345353675450764, + "c6": 0.8969024503005082, + "c7": 0.4484512251502557 }, "rgb": [77, 76, 132] }, @@ -95316,23 +95316,23 @@ "year": 1731, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -29.093648025184894, - "c2": 15.283051475038292, - "c3": 24.08475476372808, - "c4": -1.334557916960133, - "c5": 2.806934659251624, - "c6": 14.26451321618707, - "c7": -24.20672730875337 + "points": { + "c1": 25.739595975597894, + "c2": 26.188160312727106, + "c3": -23.617748212563406, + "c4": -25.673400127160594, + "c5": 2.35963081855391, + "c6": 8.600089641069928, + "c7": -11.535467293182158 }, - "vertexSeeds": { - "c1": 6.468959479170856, - "c2": 6.221985829181308, - "c3": 6.286222471081374, - "c4": 6.126350636708768, - "c5": 6.355096401347802, - "c6": 6.050199370462125, - "c7": 6.433376172902452 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434106, + "c3": 7.720758206195103, + "c4": 6.176606564956072, + "c5": 4.632454923717067, + "c6": 3.088303282478036, + "c7": 1.544151641239004 }, "rgb": [86, 146, 138] }, @@ -95343,23 +95343,23 @@ "year": 1732, "resistanceReported": false, "duration": 44409600, - "curveSeeds": { - "c1": 30.55648576749578, - "c2": 32.078794721984984, - "c3": -49.137358734906925, - "c4": -25.1364386116189, - "c5": 12.412241415998956, - "c6": 28.677478451336363, - "c7": 29.850037289835875 + "points": { + "c1": 11.74139091830569, + "c2": 28.49977149713866, + "c3": 32.47917132029601, + "c4": -39.989972937544096, + "c5": -58.31273684518815, + "c6": -58.92169661563998, + "c7": -44.90433020905691 }, - "vertexSeeds": { - "c1": 7.594548923293757, - "c2": 7.155984594288043, - "c3": 7.900307661434349, - "c4": 7.321654401433174, - "c5": 7.442391738321724, - "c6": 7.230203738679539, - "c7": 8.088928490978457 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054086, + "c3": 9.801202034211745, + "c4": 7.840961627369391, + "c5": 5.880721220527049, + "c6": 3.9204808136846956, + "c7": 1.9602404068423416 }, "rgb": [238, 201, 159] }, @@ -95370,23 +95370,23 @@ "year": 1731, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 13.099305235803868, - "c2": 22.165584673491153, - "c3": 31.386640421752872, - "c4": 30.528986670151035, - "c5": -3.5116143917571776, - "c6": 3.779181003311713, - "c7": 27.637498110339394 + "points": { + "c1": -34.38566411239571, + "c2": -17.431752525525276, + "c3": 12.055156066651485, + "c4": 32.50284684200244, + "c5": -6.213606639145969, + "c6": -20.752136861235538, + "c7": -1.5748549981285294 }, - "vertexSeeds": { - "c1": 6.0488336863412835, - "c2": 6.276852764218593, - "c3": 6.22894711749655, - "c4": 5.708041769858018, - "c5": 5.5871477935854506, - "c6": 6.385188101329839, - "c7": 6.376332041582688 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393891, + "c3": 7.697642163661582, + "c4": 6.15811373092926, + "c5": 4.618585298196953, + "c6": 3.07905686546463, + "c7": 1.5395284327323082 }, "rgb": [238, 201, 159] }, @@ -95397,23 +95397,23 @@ "year": 1732, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -10.638544192717411, - "c2": 43.53537330010518, - "c3": 11.79793159616419, - "c4": 35.54008206816046, - "c5": -18.96576361801433, - "c6": -18.48154726503413, - "c7": 16.32228659240124 + "points": { + "c1": -36.81418857151499, + "c2": -32.422855319983135, + "c3": -28.32000717643491, + "c4": -40.54976178793105, + "c5": 31.46831059587879, + "c6": -3.493483392275621, + "c7": -20.980162049415213 }, - "vertexSeeds": { - "c1": 4.154798882211618, - "c2": 2.8258672922715706, - "c3": 5.439239168216071, - "c4": 7.248695378008585, - "c5": 6.32697296977023, - "c6": 4.668035207746112, - "c7": 6.486881424122865 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847435, + "c3": 9.107720758206195, + "c4": 7.286176606564956, + "c5": 5.464632454923717, + "c6": 3.643088303282478, + "c7": 1.8215441516412376 }, "rgb": [222, 0, 59] }, @@ -95424,23 +95424,23 @@ "year": 1732, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -32.27372948114056, - "c2": 14.115441174926751, - "c3": 31.484857142141742, - "c4": 0.8894108977056732, - "c5": -22.480470821418123, - "c6": 30.04785806445137, - "c7": -32.73990267773466 + "points": { + "c1": 9.159208464307262, + "c2": -12.932614455115583, + "c3": 15.7967202746783, + "c4": -35.064356786657754, + "c5": 20.460361701304755, + "c6": 26.756438176894463, + "c7": -3.067137569013255 }, - "vertexSeeds": { - "c1": 4.4851417631267285, - "c2": 4.401621794592483, - "c3": 4.246041395293281, - "c4": 4.345014437161848, - "c5": 4.25468727897674, - "c6": 4.560470466276014, - "c7": 4.627980105004608 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653261, + "c3": 5.547850208044379, + "c4": 4.438280166435504, + "c5": 3.3287101248266304, + "c6": 2.219140083217756, + "c7": 1.1095700416088745 }, "rgb": [222, 0, 59] }, @@ -95451,23 +95451,23 @@ "year": 1732, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 33.07203437418119, - "c2": -10.95564763921114, - "c3": 7.810096812813178, - "c4": 6.989648152362179, - "c5": -8.95038107508168, - "c6": -10.95637386085626, - "c7": 33.21643283903622 + "points": { + "c1": 32.43115961689184, + "c2": -33.18809580095503, + "c3": 31.96128434213599, + "c4": 16.226788584990445, + "c5": -12.543749868045499, + "c6": -3.868007529494456, + "c7": -13.02154846201562 }, - "vertexSeeds": { - "c1": 8.64346842980755, - "c2": 9.044844817896571, - "c3": 8.520555783700276, - "c4": 8.83545646590947, - "c5": 8.81704072317514, - "c6": 9.052662088992385, - "c7": 8.917285942861389 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105412, + "c3": 10.980120203421182, + "c4": 8.784096162736926, + "c5": 6.588072122052695, + "c6": 4.392048081368463, + "c7": 2.1960240406842315 }, "rgb": [77, 76, 132] }, @@ -95478,23 +95478,23 @@ "year": 1732, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 18.301618429367316, - "c2": -16.978051211366882, - "c3": 7.763481707434472, - "c4": 5.787377330664889, - "c5": 5.53308988406576, - "c6": 16.42943641372498, - "c7": 30.533587311572568 + "points": { + "c1": 23.395188771589446, + "c2": 14.531671693568995, + "c3": 4.43017429132189, + "c4": 21.60524386124669, + "c5": -15.899642795175364, + "c6": -14.62579033214369, + "c7": 17.18115903339688 }, - "vertexSeeds": { - "c1": 5.982208289220152, - "c2": 5.421843910395307, - "c3": 4.108153479071125, - "c4": 5.091770838762658, - "c5": 4.574114742712344, - "c6": 5.338787926637476, - "c7": 5.4043900016250594 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750346, + "c3": 7.327785483125289, + "c4": 5.862228386500229, + "c5": 4.396671289875173, + "c6": 2.9311141932501146, + "c7": 1.4655570966250586 }, "rgb": [222, 0, 59] }, @@ -95505,23 +95505,23 @@ "year": 1732, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 34.607655329090285, - "c2": 37.085066530882024, - "c3": -4.075573072350409, - "c4": 42.53413060638929, - "c5": -1.594302461966798, - "c6": -15.862300072344738, - "c7": -10.87120776763917 + "points": { + "c1": 24.845925596679827, + "c2": -4.308985325053172, + "c3": 2.6618448585531453, + "c4": 26.92151411224392, + "c5": 31.331206444464108, + "c6": 20.502253775045027, + "c7": 38.43139168042138 }, - "vertexSeeds": { - "c1": 4.434045038019845, - "c2": 4.65455520049513, - "c3": 4.461060926031724, - "c4": 4.540718581254586, - "c5": 4.940663524888145, - "c6": 4.5292893145696205, - "c7": 5.030996903156323 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -95532,23 +95532,23 @@ "year": 1732, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": -17.85931565740794, - "c2": -10.02894070917899, - "c3": -11.0666298129658, - "c4": 48.50217113758513, - "c5": -39.076559626918936, - "c6": -25.50689369884299, - "c7": 49.81389122610407 + "points": { + "c1": -27.20282780843816, + "c2": -43.90432725832798, + "c3": 21.773837221925994, + "c4": 28.276624355867746, + "c5": -50.68732710145679, + "c6": -14.062521986048097, + "c7": -18.83044189140532 }, - "vertexSeeds": { - "c1": 2.8971136051228554, - "c2": 3.2968889689195247, - "c3": 3.290827660005508, - "c4": 3.0254284412726626, - "c5": 3.137507577196633, - "c6": 2.971543365100146, - "c7": 3.013850685043586 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958388, + "c3": 3.99907535829866, + "c4": 3.1992602866389253, + "c5": 2.3994452149791976, + "c6": 1.5996301433194626, + "c7": 0.7998150716597348 }, "rgb": [222, 0, 59] }, @@ -95559,23 +95559,23 @@ "year": 1732, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -22.747563158963416, - "c2": -5.134311875510761, - "c3": -0.2342702282070448, - "c4": -27.210759425299564, - "c5": 33.60187260405772, - "c6": -31.30961168816969, - "c7": -4.436759313892779 + "points": { + "c1": 8.319899883681437, + "c2": 19.810707508372545, + "c3": -28.468671560177846, + "c4": -18.09242424501982, + "c5": -32.81423281427704, + "c6": 14.194288028428836, + "c7": -8.616553275736333 }, - "vertexSeeds": { - "c1": 2.0590739755435243, - "c2": 2.159116421256746, - "c3": 2.4034476309420016, - "c4": 2.3976431662600923, - "c5": 1.975450416584089, - "c6": 2.2095639151942357, - "c7": 2.2112817341867212 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.49514563106796, + "c3": 2.9126213592233015, + "c4": 2.33009708737864, + "c5": 1.747572815533979, + "c6": 1.16504854368932, + "c7": 0.5825242718446589 }, "rgb": [58, 15, 49] }, @@ -95586,23 +95586,23 @@ "year": 1732, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 9.390989767557862, - "c2": -16.460755359710888, - "c3": -30.010409439939195, - "c4": 15.60403707932268, - "c5": 13.878119235342943, - "c6": 28.63448362809727, - "c7": 29.48138703571722 + "points": { + "c1": 21.551562349330986, + "c2": 21.39254339353394, + "c3": 17.757916613097812, + "c4": -35.70078238521872, + "c5": -28.881703635399305, + "c6": -5.013716653649574, + "c7": 10.919278626909644 }, - "vertexSeeds": { - "c1": 5.051197650671168, - "c2": 4.635530303415957, - "c3": 5.008706803428773, - "c4": 4.615267185853779, - "c5": 4.784499295665264, - "c6": 5.029175694441113, - "c7": 5.004609893293422 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -95613,23 +95613,23 @@ "year": 1732, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 31.517077827158147, - "c2": -4.203774658569614, - "c3": 11.615651428781781, - "c4": 0.14992427494874505, - "c5": -21.795571451828202, - "c6": 37.436106286808936, - "c7": 14.005400679558377 + "points": { + "c1": -37.44737767506105, + "c2": 10.285896782742867, + "c3": 36.299671883164734, + "c4": 38.26539081022118, + "c5": 6.133196314503408, + "c6": 35.99220232440122, + "c7": 11.073980491057462 }, - "vertexSeeds": { - "c1": 4.304278049569997, - "c2": 4.451044560802057, - "c3": 4.643234627614147, - "c4": 4.996716068384979, - "c5": 4.631126724859122, - "c6": 4.66570755139713, - "c7": 4.484805848689286 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -95640,23 +95640,23 @@ "year": 1732, "resistanceReported": false, "duration": 45360000, - "curveSeeds": { - "c1": -45.17693701964356, - "c2": 46.36686044505699, - "c3": 38.590938055503464, - "c4": -8.024318899266575, - "c5": 33.51377947100624, - "c6": 15.98653398529192, - "c7": 27.86517528673206 + "points": { + "c1": 29.286073771868395, + "c2": 2.0059788696890806, + "c3": 59.498672462017105, + "c4": 54.89639138202873, + "c5": -24.9429571993361, + "c6": -2.7573835456818543, + "c7": -26.6505306514442 }, - "vertexSeeds": { - "c1": 2.9045559467674917, - "c2": 2.6867186029761023, - "c3": 2.7293146871813025, - "c4": 2.892102133742624, - "c5": 3.0594554423944236, - "c6": 2.6920373933646307, - "c7": 2.788076855766215 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435508, + "c3": 3.698566805362924, + "c4": 2.9588534442903405, + "c5": 2.2191400832177504, + "c6": 1.4794267221451671, + "c7": 0.7397133610725836 }, "rgb": [238, 201, 159] }, @@ -95667,23 +95667,23 @@ "year": 1732, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -30.068932300286576, - "c2": -13.527799223862615, - "c3": -31.429880416368686, - "c4": 14.366259347868656, - "c5": -29.788837611708598, - "c6": 4.915736109983413, - "c7": -29.674533100788935 + "points": { + "c1": -34.980122203192664, + "c2": -27.964254043292236, + "c3": -4.029262565501881, + "c4": 35.174523583090675, + "c5": 38.4222655396254, + "c6": 26.22624344021085, + "c7": 24.529786223061564 }, - "vertexSeeds": { - "c1": 4.841219609309108, - "c2": 4.938478355677491, - "c3": 4.81784180241077, - "c4": 4.785834529773075, - "c5": 4.902733169708978, - "c6": 4.9286125572860024, - "c7": 4.942525198988823 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.1012482662968175, + "c3": 5.917706888580663, + "c4": 4.7341655108645355, + "c5": 3.5506241331484087, + "c6": 2.367082755432281, + "c7": 1.1835413777161274 }, "rgb": [238, 201, 159] }, @@ -95694,23 +95694,23 @@ "year": 1733, "resistanceReported": false, "duration": 50025600, - "curveSeeds": { - "c1": 28.059005932154662, - "c2": -33.518645577819925, - "c3": -54.987202118201594, - "c4": 50.593769127091846, - "c5": 58.103434634365584, - "c6": -41.811480151551294, - "c7": 10.73720955514041 + "points": { + "c1": -7.195160677259544, + "c2": 25.22205788689341, + "c3": -7.405598961465522, + "c4": -25.051154961266576, + "c5": -26.08037694645754, + "c6": 42.49338168428274, + "c7": 63.39818639192286 }, - "vertexSeeds": { - "c1": 5.644365154688745, - "c2": 5.834203667771458, - "c3": 5.564393019714004, - "c4": 5.694565091797743, - "c5": 5.734289203780881, - "c6": 5.704192838516771, - "c7": 5.468794032340587 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [86, 146, 138] }, @@ -95721,23 +95721,23 @@ "year": 1732, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -15.462790485608764, - "c2": 26.976822816090113, - "c3": -20.077850096799366, - "c4": -24.330915920812465, - "c5": 25.62505577899538, - "c6": -29.457381200751392, - "c7": -1.7108001159228117 + "points": { + "c1": 8.077699179623927, + "c2": -30.715609205980858, + "c3": -0.4068695884242146, + "c4": -6.729731265052017, + "c5": -21.93024684805367, + "c6": 12.853947069743732, + "c7": -1.02212559295371 }, - "vertexSeeds": { - "c1": 5.520188437858856, - "c2": 5.642647586977981, - "c3": 6.091331645718735, - "c4": 5.606427734311596, - "c5": 5.490214748680316, - "c6": 6.0713694456163525, - "c7": 6.275893744171174 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -95748,23 +95748,23 @@ "year": 1732, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 12.457597080496782, - "c2": 40.34456156457414, - "c3": -16.134077518113017, - "c4": -15.337800329578847, - "c5": 12.593406613021514, - "c6": -21.185899445413064, - "c7": -20.098174875654696 + "points": { + "c1": 39.693009338513896, + "c2": 26.689579728145524, + "c3": 17.55290443961364, + "c4": -10.194702366864448, + "c5": 36.594741986911465, + "c6": -4.376994537768368, + "c7": 20.236642901197648 }, - "vertexSeeds": { - "c1": 7.950863516353075, - "c2": 7.651054746964338, - "c3": 7.6011743897225825, - "c4": 8.202976125713548, - "c5": 8.174458849546973, - "c6": 7.90721789759961, - "c7": 7.616277104013126 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134544, + "c3": 9.847434119278777, + "c4": 7.877947295423031, + "c5": 5.908460471567261, + "c6": 3.9389736477115154, + "c7": 1.9694868238557457 }, "rgb": [86, 146, 138] }, @@ -95775,23 +95775,23 @@ "year": 1732, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 15.341732225014276, - "c2": -11.736903359822161, - "c3": 10.661384447635257, - "c4": 17.7517473637718, - "c5": -11.9367559196459, - "c6": 10.570425709613296, - "c7": -8.566344172991112 + "points": { + "c1": 12.154589795672926, + "c2": 32.37756649862146, + "c3": -17.403657633616668, + "c4": -15.116883072790866, + "c5": -32.361614062878864, + "c6": -35.074018825651834, + "c7": 18.302335075234488 }, - "vertexSeeds": { - "c1": 7.070433255354859, - "c2": 6.955417017061622, - "c3": 6.946941250514247, - "c4": 6.979469143163609, - "c5": 7.2128052979111255, - "c6": 6.974620964021521, - "c7": 7.130140628751096 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002755, + "c3": 8.622283865002318, + "c4": 6.897827092001837, + "c5": 5.1733703190014, + "c6": 3.4489135460009184, + "c7": 1.724456773000482 }, "rgb": [222, 0, 59] }, @@ -95802,23 +95802,23 @@ "year": 1732, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -35.53971728410745, - "c2": -29.07964864900081, - "c3": -18.831803666051858, - "c4": -27.820657969518184, - "c5": -14.424060265489938, - "c6": -24.988942374539842, - "c7": 35.99450065564392 + "points": { + "c1": -31.223099337433442, + "c2": 2.354354474946895, + "c3": -33.81200905748814, + "c4": -13.933302408686146, + "c5": 11.958272453335319, + "c6": -4.011703164649795, + "c7": 22.738755761488967 }, - "vertexSeeds": { - "c1": 6.472816562789691, - "c2": 6.639256407648732, - "c3": 6.980802361608144, - "c4": 6.5088061386910505, - "c5": 6.653237469796536, - "c6": 6.770699965851054, - "c7": 6.847366740343714 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560337, + "c3": 8.368007397133601, + "c4": 6.694405917706885, + "c5": 5.020804438280169, + "c6": 3.347202958853453, + "c7": 1.673601479426716 }, "rgb": [86, 146, 138] }, @@ -95829,23 +95829,23 @@ "year": 1732, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 37.25483948637854, - "c2": -50.126408070336474, - "c3": 3.1796088457478575, - "c4": -16.091845493478495, - "c5": 1.9250987413720964, - "c6": -20.60741830724505, - "c7": -39.0166170561581 + "points": { + "c1": 19.156824407998158, + "c2": -6.831814881150478, + "c3": 41.02784875800917, + "c4": 19.459165760446098, + "c5": -23.587239740393432, + "c6": -15.732571670852103, + "c7": -25.454000821243397 }, - "vertexSeeds": { - "c1": 6.982421379052794, - "c2": 7.494001269258115, - "c3": 7.042270454798114, - "c4": 7.1450238574781, - "c5": 6.963336131475703, - "c6": 7.179093739382267, - "c7": 6.53845101366977 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.3971336107258425, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [86, 146, 138] }, @@ -95856,23 +95856,23 @@ "year": 1732, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -26.597755163963843, - "c2": -37.57045348279612, - "c3": -41.300506824287396, - "c4": 12.247332786885195, - "c5": 44.68303094095915, - "c6": -25.17708479225878, - "c7": 36.53844334356936 + "points": { + "c1": -38.75992064089612, + "c2": 20.15339629577165, + "c3": 42.142001346515535, + "c4": -2.2995591292222883, + "c5": -9.258668852093528, + "c6": -5.773764093285415, + "c7": -34.253034209030886 }, - "vertexSeeds": { - "c1": 4.169190636376925, - "c2": 4.212384240789139, - "c3": 4.183421260255678, - "c4": 3.9885389466444465, - "c5": 3.9241146906620683, - "c6": 3.877946925432149, - "c7": 4.146845037994663 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848819, + "c3": 5.08552935737402, + "c4": 4.068423485899215, + "c5": 3.0513176144244096, + "c6": 2.0342117429496036, + "c7": 1.0171058714748056 }, "rgb": [86, 146, 138] }, @@ -95883,23 +95883,23 @@ "year": 1732, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 26.246177226793037, - "c2": 25.54700193258249, - "c3": -4.259652782022421, - "c4": -17.130728627369862, - "c5": 5.087453485464856, - "c6": 16.824532995279327, - "c7": -26.666324114792637 + "points": { + "c1": 8.58662109692657, + "c2": 2.7900024351030766, + "c3": 26.543708576103946, + "c4": -9.427905618689895, + "c5": 21.993410646306856, + "c6": -29.919607006944883, + "c7": -16.854172692233682 }, - "vertexSeeds": { - "c1": 5.620171567735856, - "c2": 6.021289153379452, - "c3": 5.803839126138016, - "c4": 5.533593069867864, - "c5": 5.770348722422534, - "c6": 5.547129477142373, - "c7": 6.182097048877613 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -95910,23 +95910,23 @@ "year": 1731, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -24.101603504473935, - "c2": 23.597034212870476, - "c3": 20.592573952358805, - "c4": -3.227643462606686, - "c5": 19.56577338437991, - "c6": 9.72681414922637, - "c7": -22.70219472769216 + "points": { + "c1": -9.192643106489353, + "c2": 5.029654478740625, + "c3": 9.202686899102204, + "c4": 27.571616842318797, + "c5": -13.913039693457597, + "c6": -26.786181194041426, + "c7": -24.988503161854844 }, - "vertexSeeds": { - "c1": 2.76838222362766, - "c2": 2.840822569615234, - "c3": 2.7904819984102645, - "c4": 2.8569108482557617, - "c5": 2.884588189578036, - "c6": 2.8148308772943214, - "c7": 2.837827360563914 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.467406380027744, + "c4": 2.773925104022193, + "c5": 2.0804438280166417, + "c6": 1.3869625520110906, + "c7": 0.6934812760055511 }, "rgb": [77, 76, 132] }, @@ -95937,23 +95937,23 @@ "year": 1732, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 10.189739872355204, - "c2": -7.22073449562544, - "c3": 4.717962865163507, - "c4": -11.38216821238905, - "c5": 24.375719093922932, - "c6": -25.89581692102216, - "c7": 9.816182833001776 + "points": { + "c1": 5.01779258132747, + "c2": 30.812558162313046, + "c3": -2.0572450428377067, + "c4": -3.173052591184998, + "c5": 17.787358741204443, + "c6": 24.057696190011477, + "c7": -15.886208664321995 }, - "vertexSeeds": { - "c1": 5.588845157790205, - "c2": 4.53245594969239, - "c3": 5.406146224620362, - "c4": 5.281359387622788, - "c5": 5.060819996889245, - "c6": 4.549146335750427, - "c7": 4.392663103815903 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.888580674988442, + "c4": 5.510864539990758, + "c5": 4.133148404993065, + "c6": 2.7554322699953766, + "c7": 1.3777161349976883 }, "rgb": [238, 201, 159] }, @@ -95964,23 +95964,23 @@ "year": 1732, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 31.195099689574974, - "c2": 4.593791001983604, - "c3": -4.196552678554486, - "c4": -18.968654525679234, - "c5": -8.30260389865419, - "c6": -2.2315264159336508, - "c7": 27.172934845786614 + "points": { + "c1": 12.51210379925599, + "c2": 1.134937737672736, + "c3": 36.15775035965062, + "c4": 14.330892173829909, + "c5": -35.2114645756373, + "c6": -11.584328341374004, + "c7": -9.539258582620807 }, - "vertexSeeds": { - "c1": 4.773708611829406, - "c2": 4.107936890979614, - "c3": 4.240822744514862, - "c4": 3.8707465620669392, - "c5": 4.799819013570042, - "c6": 4.625680363676467, - "c7": 3.9584509813939746 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296809, + "c3": 5.917706888580674, + "c4": 4.734165510864538, + "c5": 3.5506241331484025, + "c6": 2.367082755432271, + "c7": 1.1835413777161354 }, "rgb": [222, 0, 59] }, @@ -95991,23 +95991,23 @@ "year": 1732, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -1.5731756398783823, - "c2": 14.632540021523674, - "c3": 23.483307926940448, - "c4": -27.55647080262057, - "c5": -31.603913325338812, - "c6": -13.356018563308659, - "c7": -0.5014308864464034 + "points": { + "c1": -18.52755284635016, + "c2": -4.426710060284485, + "c3": -24.965404228043234, + "c4": 2.867914864472418, + "c5": 28.009702006753848, + "c6": -31.822598652279744, + "c7": 17.062099091783033 }, - "vertexSeeds": { - "c1": 3.0713809273296935, - "c2": 3.135051057760312, - "c3": 3.0115175130884833, - "c4": 2.925481085246587, - "c5": 2.7690288481029373, - "c6": 2.6605026869818, - "c7": 3.037549431757601 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837724, + "c3": 3.9297272306981035, + "c4": 3.1437817845584863, + "c5": 2.3578363384188648, + "c6": 1.5718908922792432, + "c7": 0.7859454461396216 }, "rgb": [58, 15, 49] }, @@ -96018,23 +96018,23 @@ "year": 1732, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 7.182983455754012, - "c2": 19.857017764814394, - "c3": -18.96732796849693, - "c4": -21.213590500310346, - "c5": 1.725766687191065, - "c6": -22.64598249683448, - "c7": 24.0340371238468 + "points": { + "c1": 22.35672226666552, + "c2": -8.558428200394744, + "c3": -5.769047981349821, + "c4": 9.219910501552064, + "c5": -25.658434188396107, + "c6": 0.5878275147343679, + "c7": -17.01192423202766 }, - "vertexSeeds": { - "c1": 5.759500019073692, - "c2": 5.77593141245498, - "c3": 5.739417608567386, - "c4": 5.776898493868255, - "c5": 5.52061308791639, - "c6": 5.406462794068724, - "c7": 5.42311749025616 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [222, 0, 59] }, @@ -96045,23 +96045,23 @@ "year": 1732, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -35.73295356166941, - "c2": -8.097387893016421, - "c3": 25.198697787234337, - "c4": 23.62606428518911, - "c5": 32.41359081161458, - "c6": -20.811228180563415, - "c7": 16.52087966405587 + "points": { + "c1": -21.293028077648383, + "c2": -0.3481647251438744, + "c3": 7.939763916484836, + "c4": 21.40381012702916, + "c5": -32.116942111128296, + "c6": 35.39678356237354, + "c7": -39.054103808995286 }, - "vertexSeeds": { - "c1": 4.209015354299491, - "c2": 4.734022461461922, - "c3": 4.777684980559132, - "c4": 4.485940537701321, - "c5": 4.606113165844834, - "c6": 4.217800972391023, - "c7": 4.331578129291592 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -96072,23 +96072,23 @@ "year": 1732, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -33.101931954577594, - "c2": -10.890748869347462, - "c3": 20.368953593142173, - "c4": 20.081837823923088, - "c5": 29.375497939243715, - "c6": -14.855120421576341, - "c7": 20.828645258946608 + "points": { + "c1": 4.896446750284028, + "c2": -31.11631843671241, + "c3": -35.47480262649177, + "c4": -29.561691717313053, + "c5": 7.478939880160141, + "c6": 7.155459695263552, + "c7": 6.264481236035081 }, - "vertexSeeds": { - "c1": 4.1239808423765165, - "c2": 3.2100569073981045, - "c3": 4.830038161951379, - "c4": 3.497177687129957, - "c5": 4.977095335614591, - "c6": 3.9257484083672693, - "c7": 4.381084628610744 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055478, + "c4": 5.547850208044381, + "c5": 4.160887656033288, + "c6": 2.7739251040221906, + "c7": 1.3869625520110953 }, "rgb": [222, 0, 59] }, @@ -96099,23 +96099,23 @@ "year": 1732, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 26.80986180226091, - "c2": 1.0855370864216454, - "c3": -4.857977393666772, - "c4": 12.87040633968354, - "c5": 37.25493764583179, - "c6": 30.38251171755246, - "c7": 8.148553399051906 + "points": { + "c1": -33.556507822822574, + "c2": -6.592309979234464, + "c3": 23.1243869358877, + "c4": 35.02725125845039, + "c5": -17.35958425626084, + "c6": -18.505635567855297, + "c7": 34.873841386162255 }, - "vertexSeeds": { - "c1": 11.157344592559586, - "c2": 11.51964216169239, - "c3": 11.248365344612901, - "c4": 11.572032549825968, - "c5": 10.998608851679, - "c6": 11.181835514148107, - "c7": 11.330569283816436 + "offsets": { + "c1": 19.320388349514563, + "c2": 16.56033287101249, + "c3": 13.800277392510422, + "c4": 11.04022191400835, + "c5": 8.280166435506281, + "c6": 5.520110957004141, + "c7": 2.7600554785020703 }, "rgb": [222, 0, 59] }, @@ -96126,23 +96126,23 @@ "year": 1732, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -0.8387913988966176, - "c2": -15.575699763633558, - "c3": 20.016984019608888, - "c4": 6.43048294600899, - "c5": -18.25299532090091, - "c6": -6.343811380253285, - "c7": 14.262613068338933 + "points": { + "c1": -0.9125606019620136, + "c2": 11.567027765509554, + "c3": -0.8428923727887252, + "c4": -24.469630881590096, + "c5": -6.344523060188841, + "c6": -15.417490448505248, + "c7": 23.173136414185347 }, - "vertexSeeds": { - "c1": 2.6035208181483824, - "c2": 2.308897422965221, - "c3": 2.7351771234659834, - "c4": 2.54448638884525, - "c5": 2.848331625982236, - "c6": 2.847856253853757, - "c7": 2.414516279947045 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033285, + "c3": 3.467406380027737, + "c4": 2.7739251040221915, + "c5": 2.0804438280166426, + "c6": 1.386962552011094, + "c7": 0.693481276005547 }, "rgb": [238, 201, 159] }, @@ -96153,23 +96153,23 @@ "year": 1732, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 26.532024207285644, - "c2": -11.290119214665385, - "c3": 13.907812855175017, - "c4": 39.44479048558148, - "c5": 22.26919517013353, - "c6": 2.1397113764456392, - "c7": 25.969368581107915 + "points": { + "c1": -3.011714131270402, + "c2": -3.3624544470164963, + "c3": 40.219893781870155, + "c4": 40.80001952864505, + "c5": 32.128281607999014, + "c6": -11.951583682047524, + "c7": -19.110804969182112 }, - "vertexSeeds": { - "c1": 4.802501362085373, - "c2": 5.340532049638016, - "c3": 4.869236236780389, - "c4": 4.969559099950763, - "c5": 5.19999044545446, - "c6": 4.886434615811548, - "c7": 4.877707747075558 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262138, + "c3": 6.472491909385116, + "c4": 5.177993527508095, + "c5": 3.883495145631073, + "c6": 2.5889967637540514, + "c7": 1.2944983818770217 }, "rgb": [77, 76, 132] }, @@ -96180,23 +96180,23 @@ "year": 1732, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -26.492750454580953, - "c2": 10.092188011849256, - "c3": 17.09807273110201, - "c4": -25.390306340198823, - "c5": -0.6963610949225263, - "c6": 8.335899257287533, - "c7": -1.638511971156376 + "points": { + "c1": 13.102591968178988, + "c2": 25.743644132644203, + "c3": 9.966353203042441, + "c4": -14.795928917594853, + "c5": -6.720492229185858, + "c6": -6.302809677532018, + "c7": 0.14092698680309113 }, - "vertexSeeds": { - "c1": 3.209876822501824, - "c2": 3.2825224288912627, - "c3": 3.266794646813672, - "c4": 2.91919896584261, - "c5": 3.1913265761454452, - "c6": 3.034227099877551, - "c7": 2.839821195590932 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918171, + "c3": 3.9759593157651376, + "c4": 3.1807674526121117, + "c5": 2.3855755894590853, + "c6": 1.590383726306059, + "c7": 0.7951918631530264 }, "rgb": [222, 0, 59] }, @@ -96207,23 +96207,23 @@ "year": 1732, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -6.21543661772693, - "c2": 21.860879334876017, - "c3": 20.865242919821114, - "c4": -3.578448573350556, - "c5": 18.57464183989164, - "c6": -3.3848730724508513, - "c7": -20.840141840783563 + "points": { + "c1": -17.096746853979333, + "c2": 12.474508643171099, + "c3": 23.044982572191728, + "c4": 24.914714135157382, + "c5": 24.40663721505331, + "c6": -26.13344860994044, + "c7": -14.266444153664368 }, - "vertexSeeds": { - "c1": 4.131129482762559, - "c2": 4.5648634364565375, - "c3": 5.1794479349717015, - "c4": 4.948385402651007, - "c5": 4.713247080514833, - "c6": 4.936326430020875, - "c7": 4.4684482410511865 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -96234,23 +96234,23 @@ "year": 1732, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -37.82047614182888, - "c2": 54.700176445169895, - "c3": 41.462372379176834, - "c4": -50.40100858264702, - "c5": 25.817702671259774, - "c6": 44.57030719059804, - "c7": -16.002677329171632 + "points": { + "c1": 47.16655394557885, + "c2": -17.376275683125137, + "c3": -43.65987312282109, + "c4": -30.014788056418602, + "c5": -29.45230285651021, + "c6": -45.12962031087175, + "c7": 12.474820297050876 }, - "vertexSeeds": { - "c1": 7.900333630874261, - "c2": 7.859497772302021, - "c3": 7.847556441082324, - "c4": 8.031716538605338, - "c5": 7.662593468026369, - "c6": 7.640225223985936, - "c7": 7.525387967663786 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255198, + "c3": 9.916782246879329, + "c4": 7.9334257975034586, + "c5": 5.950069348127607, + "c6": 3.9667128987517386, + "c7": 1.9833564493758693 }, "rgb": [222, 0, 59] }, @@ -96261,23 +96261,23 @@ "year": 1732, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -16.33149329194877, - "c2": -6.541780504973595, - "c3": 8.600329110953012, - "c4": 26.23430124841269, - "c5": -6.751887356041333, - "c6": 16.960350926389488, - "c7": -8.100700737976936 + "points": { + "c1": -23.183515280867475, + "c2": 12.216223698262894, + "c3": -12.847081723527655, + "c4": -28.85608568497095, + "c5": 25.37865330180255, + "c6": 3.9908845435405667, + "c7": 12.440084292060313 }, - "vertexSeeds": { - "c1": 4.62956813195795, - "c2": 4.944671381368924, - "c3": 5.070850953288316, - "c4": 4.424085037416884, - "c5": 4.211594365782367, - "c6": 4.504452601743535, - "c7": 5.198155517624623 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -96288,23 +96288,23 @@ "year": 1732, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -12.49860268194405, - "c2": -19.955475951888637, - "c3": -22.13680210041477, - "c4": -15.243798350094675, - "c5": -2.723906632216604, - "c6": 6.848022937750407, - "c7": 21.078096136035512 + "points": { + "c1": 23.59236684699576, + "c2": -13.916727411986582, + "c3": -13.131055538430083, + "c4": 6.715367259965198, + "c5": -29.644074363057573, + "c6": -14.31684146978375, + "c7": -24.80557228031858 }, - "vertexSeeds": { - "c1": 4.229923843459737, - "c2": 4.200876251100728, - "c3": 4.64364276843805, - "c4": 4.483657739748803, - "c5": 4.840490405091538, - "c6": 4.538544248396224, - "c7": 4.8641974835440385 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -96315,23 +96315,23 @@ "year": 1732, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -28.835603521091958, - "c2": -24.99394859214988, - "c3": -4.16360272383028, - "c4": 17.671560789641504, - "c5": -18.762806730152345, - "c6": -11.954288472724489, - "c7": -13.177083995080231 + "points": { + "c1": -35.46767923018677, + "c2": 22.763986396211003, + "c3": 15.024980740984326, + "c4": 1.577485627174397, + "c5": 18.098738823883906, + "c6": -33.80988964862732, + "c7": -23.286762958334876 }, - "vertexSeeds": { - "c1": 4.206362639431529, - "c2": 4.210936481468624, - "c3": 3.936351048937277, - "c4": 4.349618602640171, - "c5": 4.11255439776367, - "c6": 4.14261019207955, - "c7": 4.3961287395823705 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [86, 146, 138] }, @@ -96342,23 +96342,23 @@ "year": 1732, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -0.09813734307227406, - "c2": 40.213813485494526, - "c3": -15.191064504943892, - "c4": -24.04172521470055, - "c5": 29.180407918546365, - "c6": 33.55972413891243, - "c7": -27.44931373704968 + "points": { + "c1": 24.911834120562446, + "c2": 35.33948999435303, + "c3": -10.675609887506326, + "c4": 24.920550702429907, + "c5": -15.257921259595925, + "c6": 30.12885685301272, + "c7": 8.646876624228902 }, - "vertexSeeds": { - "c1": 5.5098497405735065, - "c2": 5.712851866339346, - "c3": 5.382202511400332, - "c4": 5.4467199742972925, - "c5": 5.808246813753076, - "c6": 5.593018935308102, - "c7": 5.111746758378463 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [86, 146, 138] }, @@ -96369,23 +96369,23 @@ "year": 1732, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 30.1232487330629, - "c2": -11.117361739870248, - "c3": -28.59909667161616, - "c4": -16.54055663134067, - "c5": 22.942945438967108, - "c6": -25.567009744765613, - "c7": 3.2367056645440186 + "points": { + "c1": 27.001255247748425, + "c2": -21.539454425895617, + "c3": 27.68023727934324, + "c4": 27.13885111172167, + "c5": -49.50198964504379, + "c6": -34.33701252574219, + "c7": 40.74705089321463 }, - "vertexSeeds": { - "c1": 2.841870470606522, - "c2": 2.8034603487744896, - "c3": 2.921115121993176, - "c4": 2.9301243452717, - "c5": 2.516571182182541, - "c6": 2.672270561961861, - "c7": 2.475348801746132 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.5136384650947767, + "c4": 2.8109107720758195, + "c5": 2.1081830790568667, + "c6": 1.4054553860379098, + "c7": 0.7027276930189549 }, "rgb": [86, 146, 138] }, @@ -96396,23 +96396,23 @@ "year": 1732, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 16.35119826750595, - "c2": -35.77406917809295, - "c3": -28.162090116550484, - "c4": 19.140100665311138, - "c5": -10.926074317914303, - "c6": 31.799174911282748, - "c7": 27.222919576901447 + "points": { + "c1": -4.767225231251025, + "c2": -24.33805959334694, + "c3": 29.917821875765043, + "c4": -15.568037269902014, + "c5": -11.42387232449352, + "c6": -16.11081060063143, + "c7": 1.5325348097808984 }, - "vertexSeeds": { - "c1": 5.1990867050930785, - "c2": 5.567146158373432, - "c3": 5.389964700727566, - "c4": 5.438918298487636, - "c5": 5.230552145729839, - "c6": 5.031831911106909, - "c7": 5.023899044795396 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387893, + "c4": 5.455386037910311, + "c5": 4.0915395284327305, + "c6": 2.7276930189551494, + "c7": 1.3638465094775811 }, "rgb": [77, 76, 132] }, @@ -96423,23 +96423,23 @@ "year": 1732, "resistanceReported": true, "duration": 22118400, - "curveSeeds": { - "c1": -23.206174776472714, - "c2": -18.534170277833766, - "c3": -12.610322434204335, - "c4": -12.474656731327197, - "c5": 30.90587989932242, - "c6": -14.784835906759287, - "c7": 3.412385893079694 + "points": { + "c1": 14.709532549310126, + "c2": -13.64592906326201, + "c3": 30.307239110650237, + "c4": 3.011159351505647, + "c5": 6.436033195114348, + "c6": 33.497206912829974, + "c7": 0.6481835142348089 }, - "vertexSeeds": { - "c1": 5.281025011901804, - "c2": 5.052600848661333, - "c3": 5.123069653720005, - "c4": 4.97963692911032, - "c5": 5.175817746114071, - "c6": 4.582851538789803, - "c7": 4.6136961340988325 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -96450,23 +96450,23 @@ "year": 1732, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 9.450738274487058, - "c2": -4.728749942250676, - "c3": 15.631839250633547, - "c4": 9.636861693117439, - "c5": 8.39448100412001, - "c6": -0.9791837564289168, - "c7": -5.843074112641187 + "points": { + "c1": -27.45302727096565, + "c2": 26.5354683648049, + "c3": -22.266580679649024, + "c4": 23.72463041509836, + "c5": -14.910033009450009, + "c6": -9.8655104757437, + "c7": -17.580669468522103 }, - "vertexSeeds": { - "c1": 5.944575603781578, - "c2": 6.028507693573725, - "c3": 6.1573316387778645, - "c4": 6.3079473181802115, - "c5": 6.3572607011024544, - "c6": 5.623257615157378, - "c7": 6.162240898038161 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -96477,23 +96477,23 @@ "year": 1732, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 15.906515714429837, - "c2": 0.4448374356598599, - "c3": 22.845132683721538, - "c4": -27.00991146530363, - "c5": 20.11654422556284, - "c6": -9.01404243878001, - "c7": -9.227644723970883 + "points": { + "c1": 17.76686596157804, + "c2": 12.144378434727962, + "c3": -2.9459430619096985, + "c4": 20.90408110509884, + "c5": -4.1584617487512645, + "c6": -11.422230977874737, + "c7": 21.095986357641408 }, - "vertexSeeds": { - "c1": 4.6945021299155565, - "c2": 4.452886635822396, - "c3": 5.218680045794072, - "c4": 4.321356399976049, - "c5": 4.944628552371852, - "c6": 4.574884951776976, - "c7": 5.177249790674794 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -96504,23 +96504,23 @@ "year": 1732, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -9.837807987563224, - "c2": -39.991765663437405, - "c3": -36.11061903452088, - "c4": -13.665851550654736, - "c5": -41.66568185190077, - "c6": -47.1585631069749, - "c7": -27.704041573214873 + "points": { + "c1": 51.97155710318076, + "c2": 12.001598751136456, + "c3": -28.038892924487108, + "c4": -41.84584893110653, + "c5": -37.27463402173784, + "c6": 33.39514535849392, + "c7": 48.854089044731666 }, - "vertexSeeds": { - "c1": 9.154324210649742, - "c2": 9.891228752648358, - "c3": 8.972632976026334, - "c4": 9.413194490298226, - "c5": 9.029088597277399, - "c6": 9.661683958441323, - "c7": 9.405276985851883 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754512, + "c3": 11.92787794729543, + "c4": 9.542302357836336, + "c5": 7.156726768377256, + "c6": 4.771151178918175, + "c7": 2.385575589459081 }, "rgb": [238, 201, 159] }, @@ -96531,23 +96531,23 @@ "year": 1733, "resistanceReported": false, "duration": 44755200, - "curveSeeds": { - "c1": 16.672486370641487, - "c2": 54.44783047987665, - "c3": 26.00803812884552, - "c4": 16.619026012393142, - "c5": -18.704139319550137, - "c6": -28.905933072564803, - "c7": 31.363388225932987 + "points": { + "c1": -15.62690260048219, + "c2": 32.469325980880136, + "c3": 26.768747905916932, + "c4": 45.853644427749934, + "c5": 49.049299356207804, + "c6": -18.70218868317641, + "c7": 20.56184548180901 }, - "vertexSeeds": { - "c1": 6.492000685640385, - "c2": 7.053485241623073, - "c3": 7.140260206682164, - "c4": 6.756584400547646, - "c5": 7.599172423281143, - "c6": 7.834633034333041, - "c7": 7.288303715503103 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732316, + "c3": 9.616273693943603, + "c4": 7.693018955154879, + "c5": 5.769764216366158, + "c6": 3.8465094775774444, + "c7": 1.9232547387887222 }, "rgb": [58, 15, 49] }, @@ -96558,23 +96558,23 @@ "year": 1732, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -33.08057941232885, - "c2": -22.73133957294217, - "c3": 31.401317884601113, - "c4": 20.878161259832027, - "c5": -9.528505807672374, - "c6": 10.712343125286274, - "c7": -11.979107330054557 + "points": { + "c1": 7.0925331483993475, + "c2": 3.559937481888511, + "c3": -7.7504691040787215, + "c4": 5.857439863622162, + "c5": 20.927930003941704, + "c6": 10.343236776943243, + "c7": 13.317938143453794 }, - "vertexSeeds": { - "c1": 5.767775209914849, - "c2": 6.511344697287959, - "c3": 6.288055643753677, - "c4": 6.638200694290547, - "c5": 6.608776579840382, - "c6": 6.613318924489446, - "c7": 6.6585173441408765 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359222, + "c3": 8.252427184466018, + "c4": 6.601941747572814, + "c5": 4.951456310679611, + "c6": 3.300970873786407, + "c7": 1.6504854368932036 }, "rgb": [58, 15, 49] }, @@ -96585,23 +96585,23 @@ "year": 1732, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 0.7809394701786871, - "c2": -26.615603142490347, - "c3": -30.314035337557538, - "c4": 15.12923633544456, - "c5": -11.522573851219061, - "c6": 24.9334992731535, - "c7": -26.174990853858 + "points": { + "c1": -27.81816123248224, + "c2": -15.87787928453723, + "c3": 10.595533754023698, + "c4": 15.995134090365248, + "c5": 11.728259904814273, + "c6": -31.28106244556345, + "c7": -4.278786981400298 }, - "vertexSeeds": { - "c1": 6.217719627732616, - "c2": 5.867469552316341, - "c3": 5.792459187905294, - "c4": 6.315414267456418, - "c5": 5.889627214286895, - "c6": 5.8088835569188655, - "c7": 5.840576591889356 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -96612,23 +96612,23 @@ "year": 1732, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": -12.127929357363744, - "c2": 12.56139571144055, - "c3": 12.482973436658671, - "c4": 13.627862842534729, - "c5": 6.278436642071696, - "c6": -9.674868355517601, - "c7": -15.553237971774333 + "points": { + "c1": -9.54541431302119, + "c2": -8.06091433334864, + "c3": 7.1550181098258605, + "c4": 9.114456845052846, + "c5": -17.681838927131075, + "c6": -11.622369396667825, + "c7": 3.473539119634509 }, - "vertexSeeds": { - "c1": 5.094480856835676, - "c2": 5.215774662603429, - "c3": 4.769682123356637, - "c4": 4.949306367390971, - "c5": 4.784501889286165, - "c6": 4.563800547080117, - "c7": 4.772024904579716 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -96639,23 +96639,23 @@ "year": 1732, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -27.096934807152923, - "c2": 6.342531511514004, - "c3": -4.504265903098208, - "c4": 26.193969812965122, - "c5": 13.040279213773218, - "c6": -21.333156989430186, - "c7": -4.36111867638807 + "points": { + "c1": -23.621871137262538, + "c2": 2.46554104361649, + "c3": 21.08250016676351, + "c4": 4.510617530335487, + "c5": -26.144418783464587, + "c6": 3.719491246806939, + "c7": 19.657663421670044 }, - "vertexSeeds": { - "c1": 2.1020424445671746, - "c2": 2.249453032206424, - "c3": 2.113232596093586, - "c4": 2.165344079817633, - "c5": 2.2950491267151096, - "c6": 2.199979267483168, - "c7": 2.1197694090046806 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070747, + "c3": 2.8201571890892265, + "c4": 2.256125751271382, + "c5": 1.6920943134535373, + "c6": 1.128062875635689, + "c7": 0.5640314378178445 }, "rgb": [222, 0, 59] }, @@ -96666,23 +96666,23 @@ "year": 1732, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -37.36339121584042, - "c2": 10.86861302083458, - "c3": -30.63351940661665, - "c4": 19.650572721931177, - "c5": -24.32827761441065, - "c6": 29.451883186271374, - "c7": -24.291885767822148 + "points": { + "c1": 24.444657992052754, + "c2": -37.474623216169995, + "c3": 36.76459980517045, + "c4": -33.207647059556415, + "c5": 9.00903039576535, + "c6": -11.512974176153602, + "c7": 5.684672792915308 }, - "vertexSeeds": { - "c1": 4.478346532710872, - "c2": 4.192022452251269, - "c3": 4.087407656972569, - "c4": 4.519894223274752, - "c5": 4.16397996279494, - "c6": 3.947598917882387, - "c7": 4.320301134444766 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.5187239944521504, + "c3": 5.432269995376793, + "c4": 4.345815996301436, + "c5": 3.2593619972260783, + "c6": 2.1729079981507144, + "c7": 1.0864539990753637 }, "rgb": [58, 15, 49] }, @@ -96693,23 +96693,23 @@ "year": 1732, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -4.157638438890359, - "c2": 19.843765363688274, - "c3": -3.1565255626212654, - "c4": 19.93554663213676, - "c5": 20.45403555638814, - "c6": -19.725414815406005, - "c7": -7.353761566967249 + "points": { + "c1": -13.115065129243433, + "c2": 7.498785270051513, + "c3": -11.441816116476957, + "c4": -22.77975246852831, + "c5": -16.575580120085036, + "c6": -10.468956244957543, + "c7": 10.33314224425585 }, - "vertexSeeds": { - "c1": 4.635959888409258, - "c2": 5.189731707074965, - "c3": 4.955111616510326, - "c4": 5.182191675588757, - "c5": 4.571214329492283, - "c6": 4.577296565285378, - "c7": 5.075071493296871 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -96720,23 +96720,23 @@ "year": 1732, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 32.368710131954906, - "c2": -11.821130707778178, - "c3": 36.02487702581646, - "c4": 5.370733341982444, - "c5": -5.6613662637726705, - "c6": -12.699868676582451, - "c7": -6.329395717869957 + "points": { + "c1": 10.923385615671556, + "c2": -40.89768088098009, + "c3": -5.703811260099101, + "c4": 3.555660853732306, + "c5": 27.34458003926745, + "c6": -0.6632310411387365, + "c7": 16.322355191650047 }, - "vertexSeeds": { - "c1": 5.4107737650183525, - "c2": 5.380945986802198, - "c3": 4.690362666795893, - "c4": 5.573480042657513, - "c5": 4.5970975185282645, - "c6": 4.754900429864086, - "c7": 5.3521696724464265 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704577, + "c3": 6.726768377253814, + "c4": 5.381414701803049, + "c5": 4.036061026352286, + "c6": 2.6907073509015222, + "c7": 1.3453536754507636 }, "rgb": [222, 0, 59] }, @@ -96747,23 +96747,23 @@ "year": 1732, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 1.387551535788731, - "c2": 24.35020186103155, - "c3": -36.163027502572135, - "c4": 31.065198935621822, - "c5": -35.29372289499183, - "c6": -13.165047045277106, - "c7": 12.548585046822176 + "points": { + "c1": -35.260303995706074, + "c2": -26.093519271489356, + "c3": -4.684697682893869, + "c4": 37.64023646662933, + "c5": 6.992158935538541, + "c6": 16.654894260022225, + "c7": 26.042857279638795 }, - "vertexSeeds": { - "c1": 4.241360703180984, - "c2": 4.2854167380625245, - "c3": 4.354781361095717, - "c4": 3.948541001701795, - "c5": 4.309107749347569, - "c6": 3.8739544576880176, - "c7": 4.277608748423216 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.6019417475728135, + "c3": 5.501618122977348, + "c4": 4.401294498381876, + "c5": 3.3009708737864094, + "c6": 2.200647249190938, + "c7": 1.1003236245954664 }, "rgb": [222, 0, 59] }, @@ -96774,23 +96774,23 @@ "year": 1732, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 15.14772341928321, - "c2": -13.84940807028261, - "c3": -25.70879296052962, - "c4": -4.1274819744458995, - "c5": 15.187624454072271, - "c6": -15.136251628347157, - "c7": 32.28010811848172 + "points": { + "c1": 6.639600009979858, + "c2": -26.742226247182092, + "c3": 34.79481517012955, + "c4": -8.018536088158122, + "c5": -28.668091106127992, + "c6": -14.436231891264786, + "c7": -4.751247040718738 }, - "vertexSeeds": { - "c1": 7.295555686875326, - "c2": 8.202627688061924, - "c3": 7.853057098367273, - "c4": 7.541843741853925, - "c5": 7.38002855899858, - "c6": 8.079190033158447, - "c7": 7.513259529678672 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295423, + "c3": 9.939898289412852, + "c4": 7.9519186315302814, + "c5": 5.9639389736477115, + "c6": 3.9759593157651407, + "c7": 1.9879796578825704 }, "rgb": [222, 0, 59] }, @@ -96801,23 +96801,23 @@ "year": 1732, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 25.943106806491496, - "c2": -14.509032263965594, - "c3": 13.758776438706601, - "c4": 1.5994376952418428, - "c5": 6.319090240689068, - "c6": -23.565822718784993, - "c7": -18.43070380186387 + "points": { + "c1": -30.50678697008718, + "c2": -33.013098705831545, + "c3": -4.3745270122476825, + "c4": 18.08822909018263, + "c5": 25.93978208643658, + "c6": 14.809208083377676, + "c7": 32.388437376968795 }, - "vertexSeeds": { - "c1": 5.921696379851354, - "c2": 5.943665798072882, - "c3": 5.59595555639173, - "c4": 5.5166252289045525, - "c5": 6.3742843300846594, - "c6": 6.0716073536107835, - "c7": 6.3332905998701134 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -96828,23 +96828,23 @@ "year": 1732, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": 3.1049182840358753, - "c2": -5.362287604597476, - "c3": 13.729272318920955, - "c4": -9.701129328433733, - "c5": 12.314432341195754, - "c6": 13.921383633422742, - "c7": 5.86328326340568 + "points": { + "c1": -16.980947227325895, + "c2": 9.730730067719545, + "c3": 20.68713865999848, + "c4": -2.2817550576622416, + "c5": 18.56191887629152, + "c6": 8.296948108509067, + "c7": -2.022270864417198 }, - "vertexSeeds": { - "c1": 3.8433261420156724, - "c2": 3.850581804889332, - "c3": 4.159304265155527, - "c4": 3.893108431041788, - "c5": 4.588830800940162, - "c6": 4.320759602109568, - "c7": 3.8637862427698857 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -96855,23 +96855,23 @@ "year": 1732, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -28.885684103538427, - "c2": -10.954737115885429, - "c3": -10.907498136365383, - "c4": 4.561895857795861, - "c5": -6.988780059554966, - "c6": -23.902433840796682, - "c7": 26.590654910661904 + "points": { + "c1": 14.591239317676433, + "c2": 3.9695439433587865, + "c3": -4.242750748851183, + "c4": -26.757556218952907, + "c5": 21.724299173376544, + "c6": -21.63819880973865, + "c7": -15.697056823083287 }, - "vertexSeeds": { - "c1": 5.375861737027385, - "c2": 5.447999269999777, - "c3": 5.280114271830892, - "c4": 5.7626435580108755, - "c5": 4.975999100554131, - "c6": 5.551659965067778, - "c7": 5.398596079533433 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.37725381414701, + "c3": 6.981044845122513, + "c4": 5.584835876098016, + "c5": 4.188626907073505, + "c6": 2.7924179380489953, + "c7": 1.3962089690244976 }, "rgb": [222, 0, 59] }, @@ -96882,23 +96882,23 @@ "year": 1732, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -11.6068191398837, - "c2": -26.061302305887327, - "c3": -4.470746890851874, - "c4": -20.759965397122652, - "c5": -20.158567006862302, - "c6": -26.216463385255928, - "c7": -0.22311031577574525 + "points": { + "c1": 21.710603993091013, + "c2": 20.591181863801744, + "c3": 5.21415183228131, + "c4": -1.5967344000501562, + "c5": -27.491413251791865, + "c6": 23.560233611486225, + "c7": 24.909822772113436 }, - "vertexSeeds": { - "c1": 5.511859969887428, - "c2": 6.16804496164759, - "c3": 5.582498095381401, - "c4": 6.138721694789512, - "c5": 5.506141582527302, - "c6": 5.597223940800264, - "c7": 6.408838183115247 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -96909,23 +96909,23 @@ "year": 1732, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -2.7830630403552306, - "c2": 6.493351025182307, - "c3": -6.882322809282147, - "c4": -28.29751617941013, - "c5": 28.386163078087982, - "c6": -22.793030276659714, - "c7": 15.816499917952562 + "points": { + "c1": 36.920991029086935, + "c2": -13.021697381130796, + "c3": 13.596291885784254, + "c4": -21.370281086684066, + "c5": -3.2227387025758674, + "c6": 0.5781990937906372, + "c7": -14.231334433487905 }, - "vertexSeeds": { - "c1": 3.8793608412189604, - "c2": 3.5011228498528797, - "c3": 3.993556175000193, - "c4": 3.497736865068925, - "c5": 3.8731377169578742, - "c6": 3.4842686655700263, - "c7": 3.894576426754984 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.85298196948682, + "c3": 4.877484974572353, + "c4": 3.9019879796578802, + "c5": 2.9264909847434133, + "c6": 1.9509939898289401, + "c7": 0.9754969949144668 }, "rgb": [58, 15, 49] }, @@ -96936,23 +96936,23 @@ "year": 1732, "resistanceReported": true, "duration": 7948800, - "curveSeeds": { - "c1": -13.718431039942605, - "c2": -7.499972302419241, - "c3": -17.691044508585843, - "c4": -10.048733522882479, - "c5": -4.537426572083815, - "c6": -9.18681557209218, - "c7": -16.042717688141046 + "points": { + "c1": 9.7013030066876, + "c2": 6.483312629776947, + "c3": -1.6362992927064042, + "c4": 12.184868922053731, + "c5": 12.692149061507862, + "c6": -1.8482855795214554, + "c7": -15.314403841374887 }, - "vertexSeeds": { - "c1": 4.3107679233150105, - "c2": 4.024460270764093, - "c3": 4.311958171586929, - "c4": 4.068170518375389, - "c5": 3.952932079680165, - "c6": 3.8762039842461995, - "c7": 4.0654957893766985 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -96963,23 +96963,23 @@ "year": 1732, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -7.286165898560796, - "c2": -19.939728555601903, - "c3": -18.683419783333353, - "c4": 39.40119490373131, - "c5": 4.892182329837411, - "c6": 23.748306090333756, - "c7": -21.29659652423069 + "points": { + "c1": 36.33011298265731, + "c2": -15.487013771292709, + "c3": -33.13145252406005, + "c4": -21.975734737457735, + "c5": 6.369548239122295, + "c6": 22.69787056012956, + "c7": -44.13522012457535 }, - "vertexSeeds": { - "c1": 5.782174428873345, - "c2": 5.948217758574135, - "c3": 6.1088201971996705, - "c4": 6.110528918026404, - "c5": 5.486823044004633, - "c6": 5.537841353691963, - "c7": 5.5920535845539785 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -96990,23 +96990,23 @@ "year": 1732, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 22.51009349655662, - "c2": -19.48217043495703, - "c3": -6.863635504458092, - "c4": -12.870913628171316, - "c5": 24.2300027385943, - "c6": 11.410097243098221, - "c7": -22.24419459382959 + "points": { + "c1": -32.11916177823987, + "c2": 20.897459134798595, + "c3": 0.5592518709954248, + "c4": -1.6232400122250041, + "c5": 20.092983330348787, + "c6": -25.250751936055096, + "c7": -36.23636602586321 }, - "vertexSeeds": { - "c1": 5.228073929961859, - "c2": 4.282169355805056, - "c3": 5.140859359372565, - "c4": 5.136973596170018, - "c5": 4.496390230373391, - "c6": 4.764218816894395, - "c7": 5.010603185897217 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -97017,23 +97017,23 @@ "year": 1732, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 17.39565033061799, - "c2": -9.24219930491758, - "c3": 26.78035149946807, - "c4": -38.403732810130094, - "c5": -9.803750383527422, - "c6": 13.459856344692597, - "c7": 31.205275288131915 + "points": { + "c1": -39.76418147044655, + "c2": -19.23836365084353, + "c3": -26.697559299437806, + "c4": 8.099036400855859, + "c5": 23.07101437865812, + "c6": -36.365634684643325, + "c7": 40.94031894317425 }, - "vertexSeeds": { - "c1": 4.471558015363915, - "c2": 4.997422855377368, - "c3": 4.272172170298854, - "c4": 4.503789581684922, - "c5": 4.462087184667, - "c6": 4.364077146119518, - "c7": 4.873175690552543 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -97044,23 +97044,23 @@ "year": 1732, "resistanceReported": false, "duration": 6393600, - "curveSeeds": { - "c1": 9.533010034859, - "c2": 12.319352630708742, - "c3": -16.110146459665636, - "c4": -2.177244016964183, - "c5": 10.812615521368471, - "c6": -11.031167396351094, - "c7": 7.382664275560817 + "points": { + "c1": -0.14900268555599894, + "c2": -4.340152747728302, + "c3": -5.880337200216669, + "c4": 13.58348787480239, + "c5": -18.029207015924218, + "c6": 1.014522045483801, + "c7": 15.53243339928714 }, - "vertexSeeds": { - "c1": 4.817698897283626, - "c2": 4.739592197548015, - "c3": 5.204057361516058, - "c4": 4.763830700058312, - "c5": 4.790209186937313, - "c6": 4.490390040776962, - "c7": 4.713024572709653 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -97071,23 +97071,23 @@ "year": 1732, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -15.048240434436664, - "c2": -25.28693647289035, - "c3": -6.801496066120187, - "c4": -8.493400895921557, - "c5": 9.132390779950441, - "c6": -30.30521189132748, - "c7": -9.241062234735818 + "points": { + "c1": 2.2957165331782363, + "c2": -1.8873285227452072, + "c3": -19.22367224479618, + "c4": 16.021947965580992, + "c5": 23.424779893293163, + "c6": -16.676842964420114, + "c7": 0.10375915875614083 }, - "vertexSeeds": { - "c1": 5.132192850786591, - "c2": 4.993644038699442, - "c3": 5.047523181660248, - "c4": 4.878180634438163, - "c5": 4.6926466857572935, - "c6": 5.064391972858525, - "c7": 4.213880500523688 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -97098,23 +97098,23 @@ "year": 1732, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -7.287973703762198, - "c2": 1.8892261824525605, - "c3": 21.732362663089134, - "c4": 25.076784527614038, - "c5": -14.605358657399268, - "c6": 24.806388658280582, - "c7": 26.28910627976699 + "points": { + "c1": 19.247926796680566, + "c2": 7.424683870673796, + "c3": -0.6494408144112427, + "c4": 22.372039626468542, + "c5": 21.005384559571304, + "c6": 7.562939058346544, + "c7": -21.639575639431783 }, - "vertexSeeds": { - "c1": 7.833458633955341, - "c2": 7.842227391938103, - "c3": 7.837612599202282, - "c4": 7.833487350161845, - "c5": 7.842224602020689, - "c6": 7.840717734223443, - "c7": 7.843291259365415 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289556, + "c3": 9.361997226075003, + "c4": 7.489597780859704, + "c5": 5.617198335645151, + "c6": 3.744798890429852, + "c7": 1.8723994452152986 }, "rgb": [86, 146, 138] }, @@ -97125,23 +97125,23 @@ "year": 1732, "resistanceReported": false, "duration": 6134400, - "curveSeeds": { - "c1": -10.915337829511982, - "c2": -0.3456541734999625, - "c3": 14.55287493370253, - "c4": -0.3209156798164514, - "c5": 1.113092219745706, - "c6": -6.125271241068125, - "c7": 5.615692349385768 + "points": { + "c1": -11.633310166544488, + "c2": 4.213883467034307, + "c3": -10.375214854408858, + "c4": -18.46315446143036, + "c5": -13.713803624036926, + "c6": -15.904962561080463, + "c7": 3.269170584986881 }, - "vertexSeeds": { - "c1": 4.755414802438104, - "c2": 4.311397557251195, - "c3": 4.452478834735994, - "c4": 4.559415858068552, - "c5": 4.868183984683646, - "c6": 5.1343119589346955, - "c7": 5.2320890606500265 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -97152,23 +97152,23 @@ "year": 1732, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -23.471662580267143, - "c2": 11.145760053278892, - "c3": 23.621465318628708, - "c4": 21.050666399480797, - "c5": -13.695829943525883, - "c6": 7.925559991884491, - "c7": 17.012011100553963 + "points": { + "c1": 3.373587481976678, + "c2": -2.0341359214470387, + "c3": -27.38647007599651, + "c4": -16.493391171292306, + "c5": 29.11052945500726, + "c6": -1.0046095893058578, + "c7": 17.162262425347755 }, - "vertexSeeds": { - "c1": 4.689989086893364, - "c2": 4.760192604036122, - "c3": 5.221191868280682, - "c4": 4.5899657770033855, - "c5": 4.725615874885539, - "c6": 4.762118116679931, - "c7": 4.883925762200618 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -97179,23 +97179,23 @@ "year": 1733, "resistanceReported": false, "duration": 41731200, - "curveSeeds": { - "c1": 5.624046215193928, - "c2": -49.690733363637676, - "c3": -28.63975845815933, - "c4": -25.624443589712694, - "c5": -23.21627570166804, - "c6": -48.80514084279723, - "c7": -40.97510798836642 + "points": { + "c1": 39.829159675156696, + "c2": 39.89408353565988, + "c3": 18.417644429537738, + "c4": 45.470610715625504, + "c5": 44.43184951621544, + "c6": -20.442560910581903, + "c7": -16.722639147664353 }, - "vertexSeeds": { - "c1": 2.231566852846036, - "c2": 2.6634192442440754, - "c3": 2.487664463993969, - "c4": 2.505907344366304, - "c5": 2.502840199584758, - "c6": 2.350754004497831, - "c7": 2.395347358385429 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791956, + "c3": 3.3287101248266318, + "c4": 2.6629680998613017, + "c5": 1.9972260748959771, + "c6": 1.3314840499306522, + "c7": 0.6657420249653272 }, "rgb": [77, 76, 132] }, @@ -97206,23 +97206,23 @@ "year": 1732, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 4.926186896121706, - "c2": -19.451676951034838, - "c3": -27.267217759162243, - "c4": -13.841730200397308, - "c5": 31.015308763937988, - "c6": 6.033797283640638, - "c7": 25.156717069631178 + "points": { + "c1": 4.100310160319459, + "c2": 8.007512435586214, + "c3": -25.305195447457166, + "c4": -27.979039880213403, + "c5": 33.05217977714259, + "c6": -30.565028627373813, + "c7": -26.57650633392457 }, - "vertexSeeds": { - "c1": 8.884968261279045, - "c2": 7.5471338122075515, - "c3": 8.726857288729006, - "c4": 7.6842546685929545, - "c5": 7.236733935180643, - "c6": 8.458003494213475, - "c7": 8.70817583866036 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502085, + "c3": 10.633379565418403, + "c4": 8.50670365233472, + "c5": 6.380027739251043, + "c6": 4.253351826167368, + "c7": 2.126675913083684 }, "rgb": [238, 201, 159] }, @@ -97233,23 +97233,23 @@ "year": 1733, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -34.14383208721439, - "c2": -12.645816407143215, - "c3": -30.52205122987723, - "c4": -7.70937161096429, - "c5": 28.90421714279293, - "c6": 37.820271411004384, - "c7": -28.00033674902344 + "points": { + "c1": -28.139267773016325, + "c2": -33.910306706110454, + "c3": 44.96913209692893, + "c4": 6.658349439962237, + "c5": -49.47887405082555, + "c6": 13.218157792295983, + "c7": 5.212895895681697 }, - "vertexSeeds": { - "c1": 5.850924922409791, - "c2": 6.099550810850949, - "c3": 6.1523148961975185, - "c4": 5.937148378190925, - "c5": 6.095624765623105, - "c6": 5.941197482291671, - "c7": 6.197634016657444 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [58, 15, 49] }, @@ -97260,23 +97260,23 @@ "year": 1732, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -7.5310517409524, - "c2": 16.896910561203732, - "c3": 4.546632148179992, - "c4": -14.657513353592346, - "c5": -12.70446418705051, - "c6": 4.24560000999454, - "c7": 5.529588196922987 + "points": { + "c1": 17.447608944770103, + "c2": -22.055021068758577, + "c3": 0.8065031928855788, + "c4": -22.246641445136106, + "c5": 24.718039991018102, + "c6": 19.198672863979027, + "c7": -8.993973001007525 }, - "vertexSeeds": { - "c1": 4.8757393795911685, - "c2": 5.104770093390147, - "c3": 5.084370485608121, - "c4": 5.1671978305447235, - "c5": 4.47342622118046, - "c6": 4.5688696190553, - "c7": 4.922641791158144 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -97287,23 +97287,23 @@ "year": 1732, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 18.72058302602307, - "c2": -8.465321607690033, - "c3": -25.364825713728738, - "c4": 0.6968517882466188, - "c5": -27.895135532689217, - "c6": -0.900206479445778, - "c7": -10.980602075955826 + "points": { + "c1": 23.45181165892702, + "c2": 28.953727724389537, + "c3": -29.541004300820532, + "c4": -6.0721733819084776, + "c5": 5.966030766985654, + "c6": -24.75914206747362, + "c7": -12.131764830064359 }, - "vertexSeeds": { - "c1": 4.55405818499052, - "c2": 4.754598209845547, - "c3": 4.100748222629518, - "c4": 4.647993867607315, - "c5": 4.997020322723894, - "c6": 4.7793687037475685, - "c7": 5.086382393113146 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181693, + "c3": 6.426259824318078, + "c4": 5.141007859454463, + "c5": 3.8557558945908483, + "c6": 2.5705039297272334, + "c7": 1.2852519648636147 }, "rgb": [238, 201, 159] }, @@ -97314,23 +97314,23 @@ "year": 1732, "resistanceReported": true, "duration": 23932800, - "curveSeeds": { - "c1": 34.90561985852762, - "c2": -1.3298619670123557, - "c3": -5.169989038068714, - "c4": -28.317323774409545, - "c5": -10.929670076072295, - "c6": -29.53356748964112, - "c7": 20.99200896622216 + "points": { + "c1": -3.8124449830193754, + "c2": 33.139609081202074, + "c3": -17.205272299974148, + "c4": -8.68889954139366, + "c5": 19.737730396366402, + "c6": 3.896391324082927, + "c7": -13.557590589980723 }, - "vertexSeeds": { - "c1": 11.220267264376107, - "c2": 11.08820656085748, - "c3": 12.383553298078622, - "c4": 12.381616619020324, - "c5": 12.1597011501133, - "c6": 11.241281947779562, - "c7": 12.478200943245191 + "offsets": { + "c1": 20.93851132686084, + "c2": 17.947295423023572, + "c3": 14.956079519186325, + "c4": 11.964863615349056, + "c5": 8.973647711511786, + "c6": 5.982431807674517, + "c7": 2.99121590383727 }, "rgb": [86, 146, 138] }, @@ -97341,23 +97341,23 @@ "year": 1732, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 31.76433160424631, - "c2": 0.5433670960053831, - "c3": 12.952775027997937, - "c4": 7.125889602657686, - "c5": -0.9230526317620189, - "c6": 5.472711714352052, - "c7": -31.57999774763575 + "points": { + "c1": 25.210879139209, + "c2": 0.9781053310446666, + "c3": -12.506775688879674, + "c4": 16.507008309007638, + "c5": 7.578180329621098, + "c6": 23.60688095613262, + "c7": -5.94002704672365 }, - "vertexSeeds": { - "c1": 4.936978623010937, - "c2": 4.72255639627895, - "c3": 4.78497070876894, - "c4": 4.519310078853391, - "c5": 4.954014459831338, - "c6": 4.674881541296724, - "c7": 4.287322519354164 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -97368,23 +97368,23 @@ "year": 1732, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -27.793313725700052, - "c2": -31.549611403957478, - "c3": -33.80532529301583, - "c4": -7.449380722628881, - "c5": -10.824509536863488, - "c6": 24.7029032089159, - "c7": 3.958484953523829 + "points": { + "c1": -15.60898352953932, + "c2": -10.364434987907885, + "c3": -10.838564484083342, + "c4": 4.92576214312637, + "c5": -31.362249896111837, + "c6": 39.46835896450831, + "c7": -5.621183582940482 }, - "vertexSeeds": { - "c1": 6.619893097462079, - "c2": 6.949773483922345, - "c3": 7.116954785187474, - "c4": 6.542228204887573, - "c5": 6.887027286032928, - "c6": 6.805156808822036, - "c7": 7.085230039419002 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962546, + "c3": 8.599167822468795, + "c4": 6.87933425797503, + "c5": 5.159500693481266, + "c6": 3.439667128987515, + "c7": 1.7198335644937501 }, "rgb": [222, 0, 59] }, @@ -97395,23 +97395,23 @@ "year": 1732, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 13.798741022417836, - "c2": -9.499399836797707, - "c3": 16.15873777624764, - "c4": -3.488886913420153, - "c5": -19.52370818883495, - "c6": 38.70742096487799, - "c7": 4.19007071266973 + "points": { + "c1": 21.87669044716322, + "c2": 5.491708114011033, + "c3": 27.65623027702552, + "c4": 44.400771465304565, + "c5": -5.002982643401374, + "c6": 41.86002297198092, + "c7": -23.07659339169025 }, - "vertexSeeds": { - "c1": 2.274249184010721, - "c2": 2.2859349617537448, - "c3": 2.3070605362407544, - "c4": 2.1736535306701184, - "c5": 2.082706049417959, - "c6": 2.21373224307033, - "c7": 2.2567803668360096 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [77, 76, 132] }, @@ -97422,23 +97422,23 @@ "year": 1732, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 5.792705213979687, - "c2": 10.91723037813194, - "c3": -36.75303203634467, - "c4": -25.074489354780162, - "c5": 16.986140071053782, - "c6": -2.411931358439766, - "c7": -20.003762877979494 + "points": { + "c1": 9.46498548637799, + "c2": -8.980912856697941, + "c3": -34.502353588607846, + "c4": 22.886648737812287, + "c5": 22.592067582712772, + "c6": 17.11192761796663, + "c7": 22.353730778412185 }, - "vertexSeeds": { - "c1": 5.318250343760594, - "c2": 5.119633322053084, - "c3": 4.719489955444539, - "c4": 5.30596857819772, - "c5": 4.148948351128664, - "c6": 4.072732217455158, - "c7": 5.2924514062469585 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -97449,23 +97449,23 @@ "year": 1732, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -5.865544338054093, - "c2": -13.136843968814105, - "c3": 0.9037591522697213, - "c4": -17.53649158598438, - "c5": -0.9718047510547123, - "c6": -1.0394037821641575, - "c7": -31.985440306920765 + "points": { + "c1": 31.12555237066796, + "c2": 20.008957449685575, + "c3": -14.328426568935125, + "c4": 37.32277755014256, + "c5": -24.467945627138704, + "c6": -20.698157723821325, + "c7": 37.108619048614855 }, - "vertexSeeds": { - "c1": 4.25401509324503, - "c2": 4.962738391902641, - "c3": 5.135553999580288, - "c4": 4.433727240159518, - "c5": 5.049155958404885, - "c6": 4.95289201991797, - "c7": 4.60333087831162 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -97476,23 +97476,23 @@ "year": 1732, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 3.923329766625045, - "c2": 0.15730489447661, - "c3": 19.193354267524498, - "c4": 19.537897341600818, - "c5": -33.79270347927418, - "c6": -20.497746452343147, - "c7": 7.52694336861812 + "points": { + "c1": -32.050156577926465, + "c2": -9.187867036081531, + "c3": -40.61450934495938, + "c4": -15.654163753068083, + "c5": 2.4599386518215454, + "c6": 20.280080130663656, + "c7": 26.045401067975718 }, - "vertexSeeds": { - "c1": 4.319352554941306, - "c2": 3.8737905745112045, - "c3": 4.013840380849897, - "c4": 4.173851505623449, - "c5": 4.530838413238624, - "c6": 4.360748233788803, - "c7": 4.534193893332224 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -97503,23 +97503,23 @@ "year": 1732, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -26.12387330176651, - "c2": 0.19910100080058157, - "c3": -16.92422651414219, - "c4": -23.195069621296188, - "c5": -17.274831984948158, - "c6": -26.935562943501548, - "c7": -6.676189563617179 + "points": { + "c1": 2.8040960895991347, + "c2": 19.86940107430592, + "c3": -1.6159471881159284, + "c4": -21.997454632031577, + "c5": -15.45173637510764, + "c6": 12.095650842648254, + "c7": -19.151946291504373 }, - "vertexSeeds": { - "c1": 3.947385571380622, - "c2": 4.330366610019914, - "c3": 4.528415513206193, - "c4": 4.2543514111793845, - "c5": 4.0714752368058456, - "c6": 4.533042471544909, - "c7": 4.460110647235977 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -97530,23 +97530,23 @@ "year": 1732, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 1.436456145176738, - "c2": 18.497787831901114, - "c3": 16.503886383731647, - "c4": -18.861094795504087, - "c5": 21.462237015363023, - "c6": -18.16877164666193, - "c7": -6.095778360169291 + "points": { + "c1": -21.3536989682069, + "c2": 30.156087342040408, + "c3": -18.14456938297645, + "c4": -6.895072750306845, + "c5": 5.251810798028423, + "c6": 16.72583357489787, + "c7": -10.935767549510349 }, - "vertexSeeds": { - "c1": 10.055215732158324, - "c2": 9.927642836119555, - "c3": 9.715930699385801, - "c4": 9.735632290092996, - "c5": 10.073382811512223, - "c6": 9.556125856451633, - "c7": 10.010339816694069 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.507628294036069, + "c3": 12.089690245030068, + "c4": 9.671752196024036, + "c5": 7.253814147018034, + "c6": 4.835876098012033, + "c7": 2.4179380490060014 }, "rgb": [238, 201, 159] }, @@ -97557,23 +97557,23 @@ "year": 1732, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -15.96096847401462, - "c2": -25.906168122697352, - "c3": 9.322818360966899, - "c4": 22.19713268360519, - "c5": 21.544169093104223, - "c6": -15.879412765454536, - "c7": -20.8389174403467 + "points": { + "c1": 11.853762376728483, + "c2": 16.527708105259265, + "c3": -9.838112280002349, + "c4": 25.49833551612096, + "c5": -19.749557276131846, + "c6": -18.79274194408033, + "c7": -21.37469946848576 }, - "vertexSeeds": { - "c1": 2.2828040754397754, - "c2": 2.46214278393347, - "c3": 2.3129934555098615, - "c4": 2.3162628599136066, - "c5": 2.4460938434392787, - "c6": 2.298375514289565, - "c7": 2.357343571301938 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.550624133148404, + "c3": 2.9588534442903356, + "c4": 2.3670827554322673, + "c5": 1.7753120665742048, + "c6": 1.1835413777161368, + "c7": 0.5917706888580684 }, "rgb": [58, 15, 49] }, @@ -97584,23 +97584,23 @@ "year": 1732, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 18.312581427776124, - "c2": 10.266380460615188, - "c3": -22.47889327592111, - "c4": 13.897661405004882, - "c5": -16.567274126329952, - "c6": 25.18692822375656, - "c7": 31.830264646279424 + "points": { + "c1": -36.218999629507806, + "c2": -1.1924240547431921, + "c3": -2.364063197256506, + "c4": 44.09873271247694, + "c5": 4.6739634231166605, + "c6": 42.69122483240803, + "c7": 24.982004308702976 }, - "vertexSeeds": { - "c1": 9.227796990748391, - "c2": 8.740351659800229, - "c3": 8.805411113690111, - "c4": 9.295232282566603, - "c5": 8.831035279263853, - "c6": 9.219595866213448, - "c7": 8.60068225264395 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.6754507628294, + "c3": 11.396208969024498, + "c4": 9.116967175219594, + "c5": 6.837725381414708, + "c6": 4.558483587609806, + "c7": 2.279241793804903 }, "rgb": [77, 76, 132] }, @@ -97611,23 +97611,23 @@ "year": 1732, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 6.32614587096284, - "c2": 32.48261455174296, - "c3": -34.49122675133977, - "c4": 1.6856559339079027, - "c5": -24.11484122748358, - "c6": 24.159149355890072, - "c7": -36.61849831039639 + "points": { + "c1": -10.152924657666851, + "c2": 10.56071291592346, + "c3": 33.71107161238471, + "c4": 26.86207998585723, + "c5": 40.21756984209238, + "c6": -17.383075509924673, + "c7": -16.76957805386678 }, - "vertexSeeds": { - "c1": 4.686251440404243, - "c2": 4.532915735746937, - "c3": 4.969677654504746, - "c4": 5.019142965890403, - "c5": 5.030467521916189, - "c6": 5.214220826904273, - "c7": 4.950543951234532 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -97638,23 +97638,23 @@ "year": 1732, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 21.676556633598768, - "c2": -3.5021425463956497, - "c3": -19.570399454517176, - "c4": 11.861782303961792, - "c5": 22.283493118043683, - "c6": 19.022405125496174, - "c7": -11.07595610478442 + "points": { + "c1": 0.7150388224189044, + "c2": -28.631703726280396, + "c3": 28.905228238571045, + "c4": -4.904992956369373, + "c5": -5.308870902495045, + "c6": -22.539246612944225, + "c7": -1.7862596229237724 }, - "vertexSeeds": { - "c1": 3.5138229120874986, - "c2": 3.2036107013391484, - "c3": 3.411145680587651, - "c4": 3.1113512602715, - "c5": 3.5187461912164277, - "c6": 3.1272874067486356, - "c7": 3.254442091168919 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [77, 76, 132] }, @@ -97665,23 +97665,23 @@ "year": 1733, "resistanceReported": true, "duration": 47520000, - "curveSeeds": { - "c1": -0.7281224086789422, - "c2": 53.749329022049054, - "c3": 23.12333355695658, - "c4": -53.29662829859576, - "c5": 53.16019248066108, - "c6": -38.82034007479394, - "c7": 19.414910441359098 + "points": { + "c1": 4.090405038550458, + "c2": 46.79766564657059, + "c3": -58.91481506095175, + "c4": 49.67947237859852, + "c5": 0.21377404864641392, + "c6": 48.51240039412245, + "c7": -11.13216185151991 }, - "vertexSeeds": { - "c1": 9.09578346606569, - "c2": 7.8236912777968755, - "c3": 7.85932420389785, - "c4": 6.946007198445315, - "c5": 7.0083165573009945, - "c6": 6.17519228803933, - "c7": 6.343891744072786 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513177, + "c3": 11.789181692094315, + "c4": 9.431345353675452, + "c5": 7.0735090152565885, + "c6": 4.715672676837726, + "c7": 2.357836338418867 }, "rgb": [222, 0, 59] }, @@ -97692,23 +97692,23 @@ "year": 1732, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 20.79590962413309, - "c2": 11.931406911616513, - "c3": 41.17437721189789, - "c4": 7.18554377555526, - "c5": -28.668116783874304, - "c6": -43.32224725725187, - "c7": 7.470231563926973 + "points": { + "c1": -43.05150128446899, + "c2": 10.140242131930329, + "c3": 3.871210888670028, + "c4": -29.617913991935296, + "c5": -43.469328791233345, + "c6": 15.5059902026481, + "c7": 25.90960806333395 }, - "vertexSeeds": { - "c1": 3.1969787828141722, - "c2": 3.109044585507708, - "c3": 2.9412361249830012, - "c4": 2.942579408000614, - "c5": 3.1008040493446654, - "c6": 3.078553923378804, - "c7": 3.2567567247265394 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -97719,23 +97719,23 @@ "year": 1732, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 4.219175414663788, - "c2": 42.28483732174221, - "c3": 13.230908191575232, - "c4": 29.03097633867798, - "c5": -17.225856268483334, - "c6": -6.377784499060525, - "c7": 27.524316205766006 + "points": { + "c1": -22.52423675364528, + "c2": -12.351105678265576, + "c3": -38.366092172741915, + "c4": -34.838800295300544, + "c5": -26.966416384383706, + "c6": 12.58989288406751, + "c7": -8.261536778552859 }, - "vertexSeeds": { - "c1": 4.884050557372223, - "c2": 4.447480330094917, - "c3": 5.208538879203402, - "c4": 5.061060049619794, - "c5": 4.33074721009772, - "c6": 4.439512730079028, - "c7": 5.116284453598988 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -97746,23 +97746,23 @@ "year": 1732, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -9.773921894998477, - "c2": -35.162093375923014, - "c3": -34.998823731423464, - "c4": -27.456801123146285, - "c5": -33.43239482025555, - "c6": -24.454527560339933, - "c7": 6.843957718658977 + "points": { + "c1": 5.145040917120703, + "c2": -19.299730213547132, + "c3": 33.87674680510936, + "c4": 8.96862602722208, + "c5": 12.41640034346721, + "c6": -4.180307185591651, + "c7": -15.849633383619103 }, - "vertexSeeds": { - "c1": 4.848347302201366, - "c2": 4.87684018355949, - "c3": 4.9197663792582125, - "c4": 4.827559413389768, - "c5": 5.072579136418858, - "c6": 4.494349938810936, - "c7": 4.711225114586032 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -97773,23 +97773,23 @@ "year": 1733, "resistanceReported": false, "duration": 43372800, - "curveSeeds": { - "c1": 28.32262695470267, - "c2": -34.282426298488886, - "c3": 12.390183815022326, - "c4": -46.8427922168913, - "c5": -0.6002088982329212, - "c6": 26.812071875312924, - "c7": -3.6631830611826857 + "points": { + "c1": 52.51622697538147, + "c2": 31.85781428120012, + "c3": -11.281562255420667, + "c4": -22.555472166615004, + "c5": -51.60063219468236, + "c6": -47.44328853887807, + "c7": 1.65341188610995 }, - "vertexSeeds": { - "c1": 8.837209485325323, - "c2": 9.304965799060767, - "c3": 9.136177228098042, - "c4": 8.744526576300396, - "c5": 9.557081296005853, - "c6": 8.927384446148297, - "c7": 8.843911067540326 + "offsets": { + "c1": 15.987055016181229, + "c2": 13.703190013869621, + "c3": 11.419325011558016, + "c4": 9.135460009246408, + "c5": 6.851595006934802, + "c6": 4.567730004623195, + "c7": 2.283865002311589 }, "rgb": [238, 201, 159] }, @@ -97800,23 +97800,23 @@ "year": 1734, "resistanceReported": false, "duration": 78278400, - "curveSeeds": { - "c1": -85.94841536916543, - "c2": -22.716027206060346, - "c3": 92.68770224752367, - "c4": -8.624477329766336, - "c5": -3.824969523363606, - "c6": 26.85659537491371, - "c7": -15.937714798080819 + "points": { + "c1": 54.29000245153745, + "c2": 35.19736835402338, + "c3": 47.02369267187015, + "c4": 21.873619794256967, + "c5": 96.66090254160193, + "c6": -21.942045018463517, + "c7": -75.17204899689699 }, - "vertexSeeds": { - "c1": 8.594422903601519, - "c2": 8.516408595106062, - "c3": 8.668776015648977, - "c4": 8.770220061012683, - "c5": 8.991590724917351, - "c6": 8.602293558973319, - "c7": 8.855896063682039 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.20388349514563, + "c3": 11.003236245954694, + "c4": 8.802588996763754, + "c5": 6.601941747572815, + "c6": 4.401294498381877, + "c7": 2.2006472491909386 }, "rgb": [77, 76, 132] }, @@ -97827,23 +97827,23 @@ "year": 1732, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": 11.764363785998547, - "c2": -7.6713934772020735, - "c3": -8.031021886179508, - "c4": 2.824057578703833, - "c5": -20.96823084235604, - "c6": 17.72789131911413, - "c7": 7.032137759110078 + "points": { + "c1": -15.275473707290956, + "c2": 22.527824464393333, + "c3": -3.7574405708005507, + "c4": 21.57846720990478, + "c5": 11.079668536950223, + "c6": -11.794305916741255, + "c7": 3.7439976631609326 }, - "vertexSeeds": { - "c1": 2.753075272703901, - "c2": 2.363519417515298, - "c3": 2.482037847783466, - "c4": 2.545672446894618, - "c5": 2.6908418377953813, - "c6": 2.269495816112394, - "c7": 2.620753226581604 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033285, + "c3": 3.467406380027737, + "c4": 2.7739251040221915, + "c5": 2.0804438280166426, + "c6": 1.386962552011094, + "c7": 0.693481276005547 }, "rgb": [86, 146, 138] }, @@ -97854,23 +97854,23 @@ "year": 1732, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -23.78049682771799, - "c2": 13.364424513519467, - "c3": 4.17362895768288, - "c4": -24.931326342694778, - "c5": 19.769096958249065, - "c6": -13.970162488417834, - "c7": -1.0895152296858939 + "points": { + "c1": -23.703379847975526, + "c2": -23.495575695098033, + "c3": -4.650980460055944, + "c4": 1.7278465136503058, + "c5": 23.051708144504254, + "c6": 16.634316765990746, + "c7": 16.960379815449762 }, - "vertexSeeds": { - "c1": 2.8628148191506093, - "c2": 2.817003801357958, - "c3": 3.090899955577927, - "c4": 2.7893197761686794, - "c5": 2.7687295785854578, - "c6": 2.753053430017609, - "c7": 2.8698733529694618 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596395, + "c3": 3.791030975496992, + "c4": 3.032824780397595, + "c5": 2.2746185852981977, + "c6": 1.5164123901988005, + "c7": 0.7582061950993971 }, "rgb": [222, 0, 59] }, @@ -97881,23 +97881,23 @@ "year": 1733, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 11.617247119059591, - "c2": 38.77848324551979, - "c3": -22.53756214799122, - "c4": 29.152477546626137, - "c5": 24.792758539827567, - "c6": 33.16692588182057, - "c7": -23.073925640826022 + "points": { + "c1": 31.465225453840795, + "c2": 1.9097739912589518, + "c3": 18.23720630598479, + "c4": -29.8098117787899, + "c5": 11.39476729256647, + "c6": 27.773361944889636, + "c7": 36.01608520451958 }, - "vertexSeeds": { - "c1": 10.708561363911606, - "c2": 10.741858236782328, - "c3": 9.819812098219929, - "c4": 10.115790549608965, - "c5": 10.818267109112842, - "c6": 11.014640515877463, - "c7": 11.050236398756434 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.97780859916782, + "c3": 13.314840499306518, + "c4": 10.651872399445214, + "c5": 7.98890429958391, + "c6": 5.325936199722607, + "c7": 2.6629680998613035 }, "rgb": [58, 15, 49] }, @@ -97908,23 +97908,23 @@ "year": 1732, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -20.74322438498072, - "c2": -34.51266180532116, - "c3": 4.051465896425412, - "c4": -33.89211073117611, - "c5": -4.5980166419523165, - "c6": 3.3296776289078664, - "c7": 34.23471492786712 + "points": { + "c1": 27.7202920111, + "c2": 26.12310755699125, + "c3": 32.646033054521865, + "c4": 10.539890317487469, + "c5": -20.600534381600923, + "c6": 17.236141182550853, + "c7": 1.196425808563383 }, - "vertexSeeds": { - "c1": 4.34819413149247, - "c2": 4.093337097485734, - "c3": 4.366371793554341, - "c4": 4.289096663285153, - "c5": 4.406340865615752, - "c6": 4.056155047151438, - "c7": 4.577810779445082 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -97935,23 +97935,23 @@ "year": 1732, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 12.692324880798886, - "c2": -33.0017985900091, - "c3": -15.725594353302174, - "c4": -11.718258090826154, - "c5": -16.182874906879206, - "c6": 4.716208914552205, - "c7": -8.108373333860538 + "points": { + "c1": -2.0127984277701856, + "c2": 8.07492026656162, + "c3": 20.950666671117702, + "c4": 16.68824094312376, + "c5": 15.449690606325198, + "c6": -0.8408105459087736, + "c7": 8.260608567054426 }, - "vertexSeeds": { - "c1": 4.711539018389946, - "c2": 4.652249204066702, - "c3": 4.82824508419676, - "c4": 4.54471881555526, - "c5": 4.334812705936513, - "c6": 4.704727381640009, - "c7": 4.391491461118423 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -97962,23 +97962,23 @@ "year": 1732, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -23.552653415459176, - "c2": -22.798848841454117, - "c3": 22.92595434276508, - "c4": -18.229882950338265, - "c5": -24.593655896291374, - "c6": -32.770469207754886, - "c7": -24.383314984721103 + "points": { + "c1": -11.181612497699707, + "c2": -32.458748160581706, + "c3": -23.651035054053168, + "c4": -15.523808106513851, + "c5": -24.45575311943044, + "c6": -34.14634205568123, + "c7": -33.96264370681658 }, - "vertexSeeds": { - "c1": 7.312768862036873, - "c2": 7.321176493025153, - "c3": 7.053465104102524, - "c4": 6.91696722442868, - "c5": 7.095999264049817, - "c6": 7.289466782032363, - "c7": 6.9070600511085285 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -97989,23 +97989,23 @@ "year": 1733, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -41.61333870538563, - "c2": 19.85174330359734, - "c3": -40.09769958230633, - "c4": -38.64692248500596, - "c5": 22.17525740129377, - "c6": 9.13946292466607, - "c7": 29.491262694042454 + "points": { + "c1": -35.716357231926864, + "c2": -47.16744865581725, + "c3": 33.24815594432926, + "c4": -25.352240581239624, + "c5": 31.20400023572892, + "c6": -44.06502326230162, + "c7": -48.49904150135641 }, - "vertexSeeds": { - "c1": 6.349697855934912, - "c2": 6.320614485748104, - "c3": 6.092988262803451, - "c4": 6.346699331132261, - "c5": 6.203432277498646, - "c6": 6.197136884100584, - "c7": 6.198690609536845 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957007, + "c3": 8.021266759130842, + "c4": 6.417013407304677, + "c5": 4.812760055478495, + "c6": 3.2085067036523296, + "c7": 1.6042533518261648 }, "rgb": [77, 76, 132] }, @@ -98016,23 +98016,23 @@ "year": 1733, "resistanceReported": false, "duration": 41299200, - "curveSeeds": { - "c1": -44.955926896468384, - "c2": -1.3056814168795228, - "c3": 36.53653199323139, - "c4": 42.8302961483798, - "c5": 29.015427928073294, - "c6": -23.644628271100114, - "c7": -5.122843595711252 + "points": { + "c1": -21.78078236595053, + "c2": 8.76706219250292, + "c3": -35.34245830580936, + "c4": 13.688523148658092, + "c5": 19.897637821666066, + "c6": 44.45089329551786, + "c7": -28.269286584195804 }, - "vertexSeeds": { - "c1": 9.440164515443575, - "c2": 8.660354583308228, - "c3": 8.636378080355168, - "c4": 9.149866450790743, - "c5": 9.494993497849013, - "c6": 8.767627705771694, - "c7": 9.444631609464432 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.6754507628294, + "c3": 11.396208969024498, + "c4": 9.116967175219594, + "c5": 6.8377253814147085, + "c6": 4.558483587609806, + "c7": 2.279241793804903 }, "rgb": [77, 76, 132] }, @@ -98043,23 +98043,23 @@ "year": 1732, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 25.011701628249185, - "c2": 25.161217308509045, - "c3": 0.8368016994730709, - "c4": 33.17147098932705, - "c5": -12.223593431150913, - "c6": 8.310235161822284, - "c7": 26.642410339584075 + "points": { + "c1": -22.09003331996042, + "c2": 13.288879699478457, + "c3": 23.811981805457698, + "c4": -18.94507723417376, + "c5": 31.2922896632421, + "c6": -7.362468244350378, + "c7": 34.07945336949565 }, - "vertexSeeds": { - "c1": 6.222321369207104, - "c2": 6.062138805337004, - "c3": 6.159196167473085, - "c4": 6.7619907868843026, - "c5": 6.278559220559458, - "c6": 6.041694158665665, - "c7": 5.511440157104456 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [222, 0, 59] }, @@ -98070,23 +98070,23 @@ "year": 1732, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -28.159623944698453, - "c2": -5.656962498494263, - "c3": 31.767956578665114, - "c4": -4.300048364001906, - "c5": -23.08741275208358, - "c6": 28.896661244317094, - "c7": 5.268702803080494 + "points": { + "c1": 18.324418291583143, + "c2": -1.9151950239330766, + "c3": 31.542761297931555, + "c4": 1.19356499985728, + "c5": -10.535630169846844, + "c6": 10.22403591109542, + "c7": -33.606404261680964 }, - "vertexSeeds": { - "c1": 3.8513946073171446, - "c2": 4.3983868965808846, - "c3": 4.267718334760685, - "c4": 4.006810056610032, - "c5": 3.844546150094001, - "c6": 4.1427279871096125, - "c7": 4.490689243186423 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -98097,23 +98097,23 @@ "year": 1732, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -16.22647602847207, - "c2": 4.94985173218425, - "c3": -26.291058430955047, - "c4": 20.045004305690497, - "c5": -15.344242351338483, - "c6": 6.040788812381123, - "c7": 32.70560482424324 + "points": { + "c1": 24.576155591804813, + "c2": 20.62801788431039, + "c3": 31.503849974985982, + "c4": -13.000229248342492, + "c5": -30.88790544736353, + "c6": -22.707572681419492, + "c7": -16.702557014114998 }, - "vertexSeeds": { - "c1": 3.63928708613292, - "c2": 3.73244543431542, - "c3": 3.373174263749099, - "c4": 3.4739977425856394, - "c5": 3.391142932201653, - "c6": 3.404618638474437, - "c7": 3.6507783454361658 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703653, + "c4": 3.6985668053629244, + "c5": 2.773925104022195, + "c6": 1.8492834026814589, + "c7": 0.9246417013407294 }, "rgb": [86, 146, 138] }, @@ -98124,23 +98124,23 @@ "year": 1732, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 14.125307099221665, - "c2": 5.216085699695604, - "c3": -4.836217211667602, - "c4": 27.06029710225213, - "c5": 1.9410504745614858, - "c6": 25.264037121658596, - "c7": -26.44480826075341 + "points": { + "c1": 22.023715309884977, + "c2": 12.199410700060682, + "c3": 5.604140081149318, + "c4": -23.50693576400071, + "c5": 11.680265817903965, + "c6": -20.798721596353893, + "c7": -6.86399763791303 }, - "vertexSeeds": { - "c1": 5.043993296476717, - "c2": 4.671313100955328, - "c3": 4.2850761361781835, - "c4": 5.2088354547459135, - "c5": 4.836998100539903, - "c6": 4.562848813020847, - "c7": 4.831823395069449 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -98151,23 +98151,23 @@ "year": 1732, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -11.958064291810821, - "c2": -30.39412369097456, - "c3": 32.032212427020596, - "c4": -35.616073971549476, - "c5": 8.45732212184987, - "c6": -30.243301378041565, - "c7": -19.405019900582715 + "points": { + "c1": 12.215565024058932, + "c2": -29.223077439032004, + "c3": -9.367117503654903, + "c4": 10.260582848833366, + "c5": -21.276359650921687, + "c6": -22.938084828816393, + "c7": 11.231038421126733 }, - "vertexSeeds": { - "c1": 5.074159594037086, - "c2": 4.983335881144742, - "c3": 5.091730693117896, - "c4": 4.67860530411293, - "c5": 5.2697399226376485, - "c6": 4.638097087865593, - "c7": 5.028821347455446 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -98178,23 +98178,23 @@ "year": 1733, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 34.80817662705786, - "c2": -50.34349294044979, - "c3": -53.33326436634397, - "c4": -3.6390058304657487, - "c5": -32.82302215764124, - "c6": -26.579895882937752, - "c7": -13.896672365073023 + "points": { + "c1": 31.132656763031335, + "c2": 22.494348408632987, + "c3": 38.9111716204998, + "c4": 3.221483603705096, + "c5": 1.6669613746135639, + "c6": 55.82199397657453, + "c7": -50.07495663278599 }, - "vertexSeeds": { - "c1": 6.7907043350902105, - "c2": 7.107319302291402, - "c3": 6.95280937209501, - "c4": 6.588339404739368, - "c5": 6.633982101196938, - "c6": 6.841698256208425, - "c7": 6.69312475748848 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882105, + "c3": 8.552935737401752, + "c4": 6.842348589921399, + "c5": 5.1317614424410465, + "c6": 3.4211742949607062, + "c7": 1.7105871474803405 }, "rgb": [238, 201, 159] }, @@ -98205,23 +98205,23 @@ "year": 1733, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 35.78283443673843, - "c2": -37.62185534769364, - "c3": 10.264023404761488, - "c4": -32.01085938334944, - "c5": 33.86930605747852, - "c6": -33.36244721695047, - "c7": -25.217969532789002 + "points": { + "c1": 24.394985291494628, + "c2": -28.385269820473088, + "c3": -14.126655209284444, + "c4": -26.6431256033476, + "c5": -12.850385678232822, + "c6": 1.7221202952897627, + "c7": 7.832458682970611 }, - "vertexSeeds": { - "c1": 4.835885307809903, - "c2": 4.224769213268123, - "c3": 4.706269935508747, - "c4": 4.226675613850001, - "c5": 5.023118860537455, - "c6": 4.433282411945194, - "c7": 4.893924925195083 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -98232,23 +98232,23 @@ "year": 1732, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 1.5921292124085902, - "c2": -26.68818980944681, - "c3": -12.271368451993744, - "c4": 24.162654739255093, - "c5": -0.46772430065589177, - "c6": -28.144789034789653, - "c7": -13.785178341694136 + "points": { + "c1": -0.8334278383088112, + "c2": -30.348077038060637, + "c3": -10.258536775339337, + "c4": 0.5278442547323436, + "c5": -4.809888028098726, + "c6": 9.662212593837491, + "c7": 24.994486051235814 }, - "vertexSeeds": { - "c1": 3.9578424390164013, - "c2": 3.8894746245899943, - "c3": 4.025905481174736, - "c4": 4.045385874708658, - "c5": 4.353411878781523, - "c6": 4.136887562273414, - "c7": 4.3970132612808275 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -98259,23 +98259,23 @@ "year": 1733, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -27.259669748923784, - "c2": 3.143237157226679, - "c3": -14.322860992452846, - "c4": 2.9882967944031975, - "c5": 19.509209118219736, - "c6": -35.922525727043364, - "c7": -5.350027438257918 + "points": { + "c1": -22.568869507394584, + "c2": -17.775830779304744, + "c3": -6.717862408092401, + "c4": 17.14973610822961, + "c5": -3.3507700199716055, + "c6": -16.97480550658953, + "c7": 25.330598358732473 }, - "vertexSeeds": { - "c1": 6.050333861844505, - "c2": 6.020757343839625, - "c3": 5.891687008508885, - "c4": 5.838053063137112, - "c5": 6.307476375283294, - "c6": 5.587889858098387, - "c7": 5.517770337081324 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -98286,23 +98286,23 @@ "year": 1732, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 16.011729732893805, - "c2": -23.40235703437713, - "c3": 1.2936685845263263, - "c4": -8.98838642735046, - "c5": 14.522247712130252, - "c6": 14.831301204911568, - "c7": 26.55658618644805 + "points": { + "c1": 4.877774938197149, + "c2": 24.563504983873976, + "c3": -26.47696449556272, + "c4": -17.82014928776425, + "c5": 0.6233878100527228, + "c6": -11.290718441781138, + "c7": -10.797087130861584 }, - "vertexSeeds": { - "c1": 3.623873728794072, - "c2": 3.5687620427705897, - "c3": 3.584422080335354, - "c4": 3.737149594848205, - "c5": 3.8584784477901497, - "c6": 3.7469365347462067, - "c7": 3.8447991200642737 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044387, + "c3": 4.623208506703651, + "c4": 3.698566805362925, + "c5": 2.773925104022188, + "c6": 1.8492834026814624, + "c7": 0.9246417013407366 }, "rgb": [77, 76, 132] }, @@ -98313,23 +98313,23 @@ "year": 1733, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": 13.095799873095551, - "c2": -37.38165222127265, - "c3": -21.542678915143874, - "c4": 18.972712987628697, - "c5": -24.08176224702088, - "c6": 20.08648119515884, - "c7": 44.0975497015918 + "points": { + "c1": -45.61344886088647, + "c2": 8.207494480479298, + "c3": 21.326208996134582, + "c4": 21.2262268820281, + "c5": 48.79844446322251, + "c6": -4.48475105227876, + "c7": 34.72090940914066 }, - "vertexSeeds": { - "c1": 3.165813509532593, - "c2": 2.747606034430104, - "c3": 2.9946088258051757, - "c4": 3.043792682888913, - "c5": 2.7721280001975552, - "c6": 3.1633054316561653, - "c7": 2.9995988102654763 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877949, + "c3": 3.952843273231624, + "c4": 3.162274618585301, + "c5": 2.3717059639389766, + "c6": 1.5811373092926477, + "c7": 0.7905686546463239 }, "rgb": [77, 76, 132] }, @@ -98340,23 +98340,23 @@ "year": 1732, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -25.618292322696, - "c2": -21.873207774911798, - "c3": 1.3771089922468676, - "c4": -16.122178003305965, - "c5": -27.5496510575642, - "c6": -13.371444198144317, - "c7": -0.6447271405289605 + "points": { + "c1": 16.104864003008874, + "c2": -17.380773013014533, + "c3": 29.347649974040007, + "c4": -30.936793204856027, + "c5": -14.900389577512339, + "c6": 12.298507737603568, + "c7": -13.293493317301813 }, - "vertexSeeds": { - "c1": 7.761247004475417, - "c2": 7.549435427476808, - "c3": 6.446805272666748, - "c4": 6.449098694665842, - "c5": 7.601425352998987, - "c6": 7.488563594555206, - "c7": 6.790040087615048 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128986, + "c3": 9.269533055940828, + "c4": 7.41562644475266, + "c5": 5.561719833564493, + "c6": 3.707813222376335, + "c7": 1.8539066111881675 }, "rgb": [77, 76, 132] }, @@ -98367,23 +98367,23 @@ "year": 1733, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -8.310125444782617, - "c2": 14.670860871734881, - "c3": -1.7571509589559398, - "c4": -33.78847292540959, - "c5": -13.08186917908293, - "c6": -1.9918922647353412, - "c7": 37.81086125286322 + "points": { + "c1": -3.132701240675914, + "c2": -23.306213590631312, + "c3": 12.591524706370024, + "c4": -3.2271027131593257, + "c5": -26.75913415160104, + "c6": -25.281903631977663, + "c7": 31.935901769559536 }, - "vertexSeeds": { - "c1": 10.129648547504164, - "c2": 10.789079925296702, - "c3": 9.916973476722536, - "c4": 10.855771977650633, - "c5": 10.26760977504226, - "c6": 10.0788355911083, - "c7": 10.875536520936338 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644943, + "c3": 13.014331946370792, + "c4": 10.411465557096642, + "c5": 7.808599167822452, + "c6": 5.205732778548302, + "c7": 2.602866389274151 }, "rgb": [238, 201, 159] }, @@ -98394,23 +98394,23 @@ "year": 1732, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -24.509885030004902, - "c2": -7.545654050104627, - "c3": 29.34973159116325, - "c4": 16.465267973317438, - "c5": 31.13093363958005, - "c6": -11.378777183223292, - "c7": -24.57228841601235 + "points": { + "c1": 1.926386149203978, + "c2": 12.167380003252283, + "c3": -5.520888461394879, + "c4": 15.073538788112813, + "c5": -3.4607351473046393, + "c6": 20.546223812725252, + "c7": 11.811293325782131 }, - "vertexSeeds": { - "c1": 13.224055670402299, - "c2": 12.724717473276199, - "c3": 12.4480118012898, - "c4": 13.03771472738491, - "c5": 12.034028432453697, - "c6": 12.556150750707852, - "c7": 12.366716518037585 + "offsets": { + "c1": 22.330097087378643, + "c2": 19.140083217753112, + "c3": 15.950069348127606, + "c4": 12.760055478502073, + "c5": 9.570041608876569, + "c6": 6.3800277392510365, + "c7": 3.1900138696255316 }, "rgb": [77, 76, 132] }, @@ -98421,23 +98421,23 @@ "year": 1733, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": -28.119454665436763, - "c2": -33.84310991631379, - "c3": -13.76439143187551, - "c4": 7.596613399493798, - "c5": 39.28951252374548, - "c6": 9.73460731134579, - "c7": -40.74701346980912 + "points": { + "c1": -4.920062638638399, + "c2": -8.881960984952734, + "c3": -18.25874218752297, + "c4": 29.75951404672481, + "c5": -30.603530224423125, + "c6": 3.881744016302818, + "c7": -41.43440788091936 }, - "vertexSeeds": { - "c1": 7.3192326650973385, - "c2": 7.385386148757711, - "c3": 7.711282496711426, - "c4": 7.544064227259323, - "c5": 7.262696614412466, - "c6": 7.493791602724481, - "c7": 7.539437531507495 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732316, + "c3": 9.616273693943594, + "c4": 7.693018955154872, + "c5": 5.769764216366151, + "c6": 3.8465094775774293, + "c7": 1.9232547387887076 }, "rgb": [77, 76, 132] }, @@ -98448,23 +98448,23 @@ "year": 1733, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -17.53202194908166, - "c2": -11.69316614806938, - "c3": 19.764489757934022, - "c4": 34.406137805967965, - "c5": -32.77804438745271, - "c6": 27.93821794342447, - "c7": -9.052473556515658 + "points": { + "c1": -4.955301996727329, + "c2": 39.01236176454092, + "c3": -43.212089199733505, + "c4": -43.62108378666971, + "c5": -33.88052733795547, + "c6": 43.18132181700235, + "c7": 18.067461860963157 }, - "vertexSeeds": { - "c1": 9.462590157359388, - "c2": 9.505907208904295, - "c3": 9.36264807335457, - "c4": 10.493975701730744, - "c5": 10.423194284988202, - "c6": 10.418436505195507, - "c7": 10.640149658939894 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081828, + "c3": 12.690707350901523, + "c4": 10.152565880721214, + "c5": 7.614424410540907, + "c6": 5.0762829403606, + "c7": 2.5381414701802933 }, "rgb": [77, 76, 132] }, @@ -98475,23 +98475,23 @@ "year": 1732, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -29.35265427707796, - "c2": -27.182595225835936, - "c3": -27.92022063712913, - "c4": 3.5699973439826778, - "c5": -19.14823884081123, - "c6": -3.049807392947571, - "c7": -10.477051285530166 + "points": { + "c1": 32.31327829300881, + "c2": 32.11567561688655, + "c3": 29.87332439779486, + "c4": 19.10615461370896, + "c5": 4.335233276244821, + "c6": -24.610346996300482, + "c7": 30.25934197808158 }, - "vertexSeeds": { - "c1": 4.759467079558088, - "c2": 4.797820800458851, - "c3": 4.286949840658897, - "c4": 4.369489550421578, - "c5": 4.685260909881719, - "c6": 5.158862542711153, - "c7": 4.380384393487021 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -98502,23 +98502,23 @@ "year": 1733, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -32.821713257993956, - "c2": 25.617015752137902, - "c3": -21.27841686865768, - "c4": 16.472461787169266, - "c5": 21.66017331509572, - "c6": 6.52515908984433, - "c7": -16.351380007799186 + "points": { + "c1": -32.96666494393, + "c2": -31.722439323306464, + "c3": 32.69372527086961, + "c4": 35.56888134433797, + "c5": -29.317498388918807, + "c6": -5.319660540170183, + "c7": -18.660972450393444 }, - "vertexSeeds": { - "c1": 5.053564949598222, - "c2": 5.15013638369282, - "c3": 5.2270910980908925, - "c4": 5.010069411710145, - "c5": 5.252550885123767, - "c6": 4.87620133639288, - "c7": 4.670308910860632 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -98529,23 +98529,23 @@ "year": 1732, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -22.56212370292704, - "c2": 28.21893866288439, - "c3": -8.773766778896356, - "c4": -14.7427555389147, - "c5": -20.32356160789245, - "c6": -12.208543639954723, - "c7": 2.921018057144593 + "points": { + "c1": -23.218849349085502, + "c2": 18.407101144279487, + "c3": 28.13985238489233, + "c4": 2.4013645974682873, + "c5": 0.11502895935031177, + "c6": 8.709940007507761, + "c7": 26.277233844669937 }, - "vertexSeeds": { - "c1": 4.648064545870881, - "c2": 5.161084523471502, - "c3": 4.636475286763513, - "c4": 4.5740326913089016, - "c5": 4.663315837623717, - "c6": 4.963474299487404, - "c7": 4.711729896551658 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -98556,23 +98556,23 @@ "year": 1732, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -11.623635602794955, - "c2": 7.019788752694158, - "c3": 18.374997834019997, - "c4": -19.534652320905273, - "c5": -15.285054630925858, - "c6": 3.9475128047516854, - "c7": 13.106552832523885 + "points": { + "c1": -18.865171402318726, + "c2": -2.5485682783675756, + "c3": 9.4568395023867, + "c4": -18.28892501290366, + "c5": -18.91518252037647, + "c6": 22.271404844980843, + "c7": -11.497480844346391 }, - "vertexSeeds": { - "c1": 4.889878382711085, - "c2": 4.983324757607002, - "c3": 4.669543945231081, - "c4": 4.679708924005754, - "c5": 4.790337118354659, - "c6": 5.278628244468284, - "c7": 5.229321280363111 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -98583,23 +98583,23 @@ "year": 1732, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 14.226687295603426, - "c2": 24.862468308190515, - "c3": 26.751822809562228, - "c4": -11.755789581689502, - "c5": 21.856254110487157, - "c6": 3.4879040738787097, - "c7": -6.789401108059664 + "points": { + "c1": 2.8346215154560213, + "c2": -4.811938760111865, + "c3": -10.123786954925716, + "c4": 3.8654757220586475, + "c5": -23.873260154227278, + "c6": -14.064962820554829, + "c7": 17.77526989265005 }, - "vertexSeeds": { - "c1": 4.589521057461062, - "c2": 4.459198924032438, - "c3": 4.236273959507086, - "c4": 4.334309717722287, - "c5": 3.90031435279907, - "c6": 3.906994558678438, - "c7": 4.0340599153967 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -98610,23 +98610,23 @@ "year": 1733, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -9.65892312618221, - "c2": 2.8479542522190684, - "c3": -35.851743428393064, - "c4": 15.330769581268356, - "c5": -42.3845597130267, - "c6": 11.175218815096905, - "c7": 23.08049234202941 + "points": { + "c1": -3.8046109729671116, + "c2": -1.494921393115341, + "c3": -32.94524568583182, + "c4": 37.346922663674796, + "c5": 27.73154334097095, + "c6": -10.834558739149635, + "c7": 4.775734882115408 }, - "vertexSeeds": { - "c1": 3.724509869498461, - "c2": 3.6349419863885384, - "c3": 3.6914658480587974, - "c4": 3.193119829473666, - "c5": 3.507865412228469, - "c6": 3.5129147960318012, - "c7": 3.3942743488685205 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044383, + "c3": 4.623208506703653, + "c4": 3.6985668053629186, + "c5": 2.773925104022189, + "c6": 1.8492834026814593, + "c7": 0.9246417013407296 }, "rgb": [58, 15, 49] }, @@ -98637,23 +98637,23 @@ "year": 1733, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -20.66129733418957, - "c2": -42.05793045677301, - "c3": 41.197461023206436, - "c4": -37.03367533560435, - "c5": -14.218949707019775, - "c6": 12.832926634919907, - "c7": -28.53445925162306 + "points": { + "c1": 26.74921318708183, + "c2": -4.1837845512396115, + "c3": -27.81227896379674, + "c4": -29.582319559388527, + "c5": 22.927944872678502, + "c6": -11.104624749902456, + "c7": 21.17847369285517 }, - "vertexSeeds": { - "c1": 7.028822005249733, - "c2": 6.927722080078894, - "c3": 7.259820751549739, - "c4": 7.121939793732325, - "c5": 7.000955819922179, - "c6": 7.063482383999761, - "c7": 7.343898430955539 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -98664,23 +98664,23 @@ "year": 1732, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 7.7662279428779115, - "c2": -17.618533047416037, - "c3": -11.184879860399839, - "c4": 9.763979514054654, - "c5": 30.31717267482871, - "c6": -15.539308787817061, - "c7": -31.023449820866027 + "points": { + "c1": 9.874470738363279, + "c2": 12.581234881306997, + "c3": 26.430169358564697, + "c4": -1.8098054819963636, + "c5": 31.87945702373844, + "c6": -27.309494076188095, + "c7": -11.671344842400998 }, - "vertexSeeds": { - "c1": 11.7284048820901, - "c2": 12.22413887534674, - "c3": 12.020905948689366, - "c4": 11.36851912530553, - "c5": 10.717627281754229, - "c6": 11.303514860186063, - "c7": 11.178910108133667 + "offsets": { + "c1": 20.51779935275081, + "c2": 17.586685159500696, + "c3": 14.655570966250586, + "c4": 11.724456773000474, + "c5": 8.79334257975036, + "c6": 5.86222838650025, + "c7": 2.9311141932501372 }, "rgb": [86, 146, 138] }, @@ -98691,23 +98691,23 @@ "year": 1733, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -42.210997927014006, - "c2": -22.127470786155047, - "c3": 29.769634162554127, - "c4": 30.27111261688684, - "c5": 25.52078293990401, - "c6": -0.6215697311093393, - "c7": -14.228322270239332 + "points": { + "c1": -44.0111858477514, + "c2": 27.150766941213817, + "c3": 20.41392564146176, + "c4": -46.11392008461227, + "c5": -8.276747012145556, + "c6": -29.092864887006865, + "c7": 15.006344886758797 }, - "vertexSeeds": { - "c1": 4.298445965120799, - "c2": 4.1024485205046215, - "c3": 4.581959584490871, - "c4": 4.812465615284781, - "c5": 4.758361475969151, - "c6": 5.097207806285649, - "c7": 4.549823945061279 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -98718,23 +98718,23 @@ "year": 1733, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 28.82974723997596, - "c2": -7.0675354168511895, - "c3": -28.837415497963306, - "c4": -30.741046694181502, - "c5": -17.643844013089062, - "c6": -19.185005714663728, - "c7": 27.488831531791945 + "points": { + "c1": 24.76683541872464, + "c2": 17.42459125409121, + "c3": 3.9119228958022703, + "c4": 30.111073750351892, + "c5": -12.645806478178894, + "c6": -25.265105839898307, + "c7": -16.246528412606523 }, - "vertexSeeds": { - "c1": 5.7782558849992505, - "c2": 6.27125887103216, - "c3": 6.220066859374947, - "c4": 5.555257120812742, - "c5": 6.359869366795449, - "c6": 5.969943129426764, - "c7": 5.859691245639235 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -98745,23 +98745,23 @@ "year": 1733, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 10.067796681381871, - "c2": -10.747719015905009, - "c3": -20.778469360980868, - "c4": -14.364355670610468, - "c5": 27.434406786040718, - "c6": 28.600572989184933, - "c7": -12.089948609116103 + "points": { + "c1": 6.139782964410685, + "c2": 1.0397977871793032, + "c3": -25.05872066601476, + "c4": 27.864450816725224, + "c5": -26.662614286501512, + "c6": -8.023430571862882, + "c7": -10.63387258194324 }, - "vertexSeeds": { - "c1": 6.189525948360132, - "c2": 6.035002090072015, - "c3": 5.818649823905853, - "c4": 5.932511313975658, - "c5": 6.10526945767461, - "c6": 6.330831917828143, - "c7": 5.7168677448396545 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -98772,23 +98772,23 @@ "year": 1732, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -15.521080903518282, - "c2": 5.352039452774726, - "c3": -12.159923018912671, - "c4": 18.187364002643385, - "c5": -4.25053974507799, - "c6": -18.227800220637278, - "c7": 6.290785925388153 + "points": { + "c1": -16.52236698574928, + "c2": -20.9154341368047, + "c3": -15.80362329872045, + "c4": -2.9243409230211377, + "c5": -26.340063228856593, + "c6": -20.745936808153473, + "c7": -26.937969793113165 }, - "vertexSeeds": { - "c1": 2.215628334394496, - "c2": 2.1943361619316324, - "c3": 2.2899590931462157, - "c4": 2.226528621881176, - "c5": 2.0819828858118057, - "c6": 2.213362095323925, - "c7": 2.2907648133444196 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [238, 201, 159] }, @@ -98799,23 +98799,23 @@ "year": 1733, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -12.150720790008005, - "c2": -16.91392603051526, - "c3": -17.723686545259664, - "c4": -0.3310078417021032, - "c5": 20.956372867160262, - "c6": 24.817831720661438, - "c7": -9.008396801524686 + "points": { + "c1": 10.417304838469605, + "c2": -26.18782556426423, + "c3": 20.067428017780202, + "c4": -2.332794204158567, + "c5": -4.051532215615104, + "c6": -6.1184853458104485, + "c7": 6.997808081864655 }, - "vertexSeeds": { - "c1": 3.1854098837274143, - "c2": 3.226261145726565, - "c3": 3.2210052581450723, - "c4": 3.2563347634350617, - "c5": 3.169513086612006, - "c6": 3.1419049349523163, - "c7": 3.10231019715408 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -98826,23 +98826,23 @@ "year": 1733, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -23.58654617958844, - "c2": -16.387416404668393, - "c3": 30.04481210335232, - "c4": -18.14944836753515, - "c5": -5.978856674484177, - "c6": -29.656573544124413, - "c7": 18.62827615364536 + "points": { + "c1": -8.503851591965606, + "c2": 11.861798574153632, + "c3": -19.26497533497677, + "c4": -10.076499600416039, + "c5": -30.61291769015164, + "c6": 20.561953420918215, + "c7": -13.441344008488809 }, - "vertexSeeds": { - "c1": 2.726901243805535, - "c2": 2.6839811486794116, - "c3": 2.8127703990882535, - "c4": 2.5368075770037066, - "c5": 2.7154678738070426, - "c6": 2.5194450887573443, - "c7": 2.6618281863305944 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [77, 76, 132] }, @@ -98853,23 +98853,23 @@ "year": 1733, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 13.43954102883525, - "c2": 4.541950261691731, - "c3": 17.405777012234743, - "c4": 24.92630341138009, - "c5": 18.425613802426, - "c6": -10.521882323470756, - "c7": -12.074277642100167 + "points": { + "c1": -24.114958523096124, + "c2": 33.87093890259626, + "c3": 29.78956278581383, + "c4": 27.343325801104307, + "c5": 20.26835287707825, + "c6": 4.922542609306284, + "c7": 24.91693037058139 }, - "vertexSeeds": { - "c1": 7.575448026100249, - "c2": 7.781017866322495, - "c3": 7.5445001297738115, - "c4": 7.852735448154644, - "c5": 7.694801854702299, - "c6": 7.675454490608824, - "c7": 7.655733258810062 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490969, + "c3": 9.477577438742491, + "c4": 7.582061950993981, + "c5": 5.686546463245502, + "c6": 3.7910309754969904, + "c7": 1.895515487748478 }, "rgb": [58, 15, 49] }, @@ -98880,23 +98880,23 @@ "year": 1733, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -22.864182793542774, - "c2": 23.960346928705157, - "c3": -12.055299098350677, - "c4": -4.085065272161714, - "c5": 2.242506585338674, - "c6": -0.45689070985022084, - "c7": 9.537097341894487 + "points": { + "c1": -4.6328885137209355, + "c2": -37.73363076519918, + "c3": -29.753588559676007, + "c4": 22.9762390862863, + "c5": -37.49870054206358, + "c6": 13.464168213620987, + "c7": 3.8000147083516183 }, - "vertexSeeds": { - "c1": 7.735678441841399, - "c2": 7.810946923974908, - "c3": 7.850784753920108, - "c4": 7.811703595832328, - "c5": 7.760654856054376, - "c6": 7.759225691957699, - "c7": 7.884655674612279 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410555, + "c3": 9.431345353675475, + "c4": 7.545076282940314, + "c5": 5.658807212205235, + "c6": 3.772538141470157, + "c7": 1.8862690707350784 }, "rgb": [238, 201, 159] }, @@ -98907,23 +98907,23 @@ "year": 1733, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -7.331667253246479, - "c2": -13.574532253246666, - "c3": 1.1284592496729786, - "c4": -3.815433515005381, - "c5": 1.7890859369026835, - "c6": -1.0636993076727599, - "c7": 14.362913968757539 + "points": { + "c1": -3.3785555310617177, + "c2": 31.185079200348923, + "c3": 22.978940348711113, + "c4": -5.982958735571952, + "c5": 11.2847539781432, + "c6": -10.533066452272482, + "c7": -27.946664138766018 }, - "vertexSeeds": { - "c1": 4.472451600718283, - "c2": 4.368603077548144, - "c3": 4.236720797476895, - "c4": 4.331376790758458, - "c5": 4.424908467460584, - "c6": 4.362992025946857, - "c7": 4.18623813193704 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.6851595006934845, + "c3": 5.570966250577903, + "c4": 4.45677300046232, + "c5": 3.3425797503467423, + "c6": 2.228386500231165, + "c7": 1.1141932501155825 }, "rgb": [77, 76, 132] }, @@ -98934,23 +98934,23 @@ "year": 1732, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 9.918895682184317, - "c2": -19.32371389092038, - "c3": -2.5102151782231914, - "c4": -13.024658979490203, - "c5": 18.58152109283328, - "c6": -9.184045575488568, - "c7": 11.328975384605602 + "points": { + "c1": 8.701408484168166, + "c2": 17.025058630841176, + "c3": 9.865069516867191, + "c4": -23.348379830849385, + "c5": -24.029716181345275, + "c6": -5.366016106610861, + "c7": 17.875876547772297 }, - "vertexSeeds": { - "c1": 4.990446478664601, - "c2": 4.403559723302404, - "c3": 5.407020312277399, - "c4": 5.620528025440961, - "c5": 4.910256821085214, - "c6": 5.7206199076733535, - "c7": 4.714947827676686 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.888580674988442, + "c4": 5.510864539990758, + "c5": 4.133148404993065, + "c6": 2.7554322699953766, + "c7": 1.3777161349976883 }, "rgb": [86, 146, 138] }, @@ -98961,23 +98961,23 @@ "year": 1733, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -15.62357645291017, - "c2": -16.40093141665519, - "c3": -11.629258390735533, - "c4": 21.700579572718894, - "c5": -25.95641595567166, - "c6": 4.973406701761448, - "c7": 8.83367384492157 + "points": { + "c1": 1.1686985201175162, + "c2": 11.811661611517657, + "c3": 19.48572638377962, + "c4": -14.411120546992144, + "c5": 10.650545859035915, + "c6": 28.263386584942573, + "c7": 5.726473528951431 }, - "vertexSeeds": { - "c1": 4.791094040231256, - "c2": 5.193544274840222, - "c3": 4.919233677439978, - "c4": 5.1778123450583236, - "c5": 5.007668626940287, - "c6": 5.199735269358465, - "c7": 5.236089361222968 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -98988,23 +98988,23 @@ "year": 1732, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 1.1297027552421248, - "c2": -8.564910010035408, - "c3": -0.5562604839653886, - "c4": 12.411515058707963, - "c5": 25.03997348490902, - "c6": 12.344047854656345, - "c7": 7.3250114966801405 + "points": { + "c1": 11.419121894418012, + "c2": 24.98862102785297, + "c3": -24.896636698247683, + "c4": -0.6787271709477132, + "c5": -19.13695618947054, + "c6": 5.56233323451751, + "c7": 5.6180555932460905 }, - "vertexSeeds": { - "c1": 4.1979998860506065, - "c2": 4.644768536470794, - "c3": 4.970135320536792, - "c4": 4.569712178378091, - "c5": 4.949204850308673, - "c6": 4.955117524674482, - "c7": 4.839570432701217 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -99015,23 +99015,23 @@ "year": 1732, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 13.34843075982085, - "c2": -15.39931887803174, - "c3": -9.569652472814795, - "c4": 13.025233566492304, - "c5": 22.889776434663496, - "c6": 6.605252543054782, - "c7": -6.58643882140656 + "points": { + "c1": -15.316573649588594, + "c2": -16.410421185743733, + "c3": 18.297001354987025, + "c4": 1.1245731382096622, + "c5": 6.238397326220657, + "c6": -0.5733223978018351, + "c7": -16.932625827663628 }, - "vertexSeeds": { - "c1": 4.656870922578994, - "c2": 4.804886908063438, - "c3": 4.847460317757767, - "c4": 5.118212240120892, - "c5": 4.623112692787526, - "c6": 5.284965196162139, - "c7": 4.785354067822888 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -99042,23 +99042,23 @@ "year": 1733, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 8.97710550263082, - "c2": -4.787788813043591, - "c3": 21.205679573703442, - "c4": 2.5151336306515404, - "c5": -36.02392833455551, - "c6": -8.19567785204692, - "c7": -8.69627465606251 + "points": { + "c1": -32.689764576349454, + "c2": 31.314175449293202, + "c3": -23.548764354297756, + "c4": 19.067558271720237, + "c5": 9.049256727098346, + "c6": -9.357037470973864, + "c7": 8.723774761681199 }, - "vertexSeeds": { - "c1": 4.560866647087494, - "c2": 4.521908378288748, - "c3": 4.185017278725945, - "c4": 4.198283364842904, - "c5": 4.19593215436777, - "c6": 4.037481005404213, - "c7": 4.060030567095552 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.6851595006934845, + "c3": 5.570966250577903, + "c4": 4.45677300046232, + "c5": 3.3425797503467423, + "c6": 2.228386500231165, + "c7": 1.1141932501155825 }, "rgb": [238, 201, 159] }, @@ -99069,23 +99069,23 @@ "year": 1733, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 24.66548545811994, - "c2": 19.035500668571864, - "c3": 7.8070450533789355, - "c4": 5.857189506032171, - "c5": -9.794214420621962, - "c6": 0.5753469271702016, - "c7": 4.874312529740614 + "points": { + "c1": 17.235952650853832, + "c2": -17.684300260989744, + "c3": -0.6954293837355792, + "c4": -10.957411108813815, + "c5": 12.430509092328066, + "c6": 0.2915454466788887, + "c7": -22.062453905790754 }, - "vertexSeeds": { - "c1": 2.572804417445227, - "c2": 2.6809575847198186, - "c3": 2.5619901618252947, - "c4": 2.7573636495277696, - "c5": 2.8048657324355597, - "c6": 2.6697312240052695, - "c7": 2.551848657967606 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [238, 201, 159] }, @@ -99096,23 +99096,23 @@ "year": 1733, "resistanceReported": true, "duration": 30844800, - "curveSeeds": { - "c1": -38.15829428024281, - "c2": 7.296959574893876, - "c3": 4.823937059458153, - "c4": -4.325195163709388, - "c5": -42.268909102673184, - "c6": -11.480845767184086, - "c7": 21.80285009020742 + "points": { + "c1": 29.715141882757543, + "c2": -17.288044053134758, + "c3": -5.72426694130295, + "c4": -30.137612802246096, + "c5": 37.47567198009697, + "c6": -35.835519627227164, + "c7": 0.3788133208097051 }, - "vertexSeeds": { - "c1": 5.952883098305009, - "c2": 5.891729952680208, - "c3": 5.8102666636693145, - "c4": 5.799298473094128, - "c5": 5.982440156375092, - "c6": 5.713883351833222, - "c7": 5.734934139468978 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710114, + "c3": 7.304669440591774, + "c4": 5.84373555247341, + "c5": 4.38280166435507, + "c6": 2.921867776236705, + "c7": 1.4609338881183391 }, "rgb": [58, 15, 49] }, @@ -99123,23 +99123,23 @@ "year": 1733, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -20.791433335687046, - "c2": 3.4008911158461537, - "c3": -23.06117517004504, - "c4": 22.32080057519317, - "c5": -14.325364690283857, - "c6": 1.7487400577044951, - "c7": -13.49614542854325 + "points": { + "c1": -9.074366509314352, + "c2": -0.1946963700499751, + "c3": -0.751010825942874, + "c4": -26.89801647034996, + "c5": -18.651670969042396, + "c6": 16.552838512336304, + "c7": -9.180872450772437 }, - "vertexSeeds": { - "c1": 4.640642324888933, - "c2": 5.201723105405189, - "c3": 4.459667412423304, - "c4": 5.104112378117782, - "c5": 4.83793161442658, - "c6": 4.656722430596603, - "c7": 5.165949321860278 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -99150,23 +99150,23 @@ "year": 1733, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -19.35241669117192, - "c2": -30.06232589380356, - "c3": -17.560653464482712, - "c4": -28.591864542351413, - "c5": -27.404689529417862, - "c6": 22.343851543015766, - "c7": -19.369929817570885 + "points": { + "c1": 23.40068976424528, + "c2": -27.628201685707957, + "c3": -11.970295270812997, + "c4": 32.17068010114835, + "c5": -34.0931995585947, + "c6": 10.687100498619664, + "c7": -28.16411750075838 }, - "vertexSeeds": { - "c1": 5.092696567578562, - "c2": 4.590808343203916, - "c3": 5.025540446121804, - "c4": 5.0161400248145815, - "c5": 4.620511261176413, - "c6": 4.28682997337946, - "c7": 4.332949731401868 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -99177,23 +99177,23 @@ "year": 1733, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -18.632384628619988, - "c2": 8.318982787904943, - "c3": 8.72419391613753, - "c4": -27.149808693210865, - "c5": 4.109642887895351, - "c6": -27.0019611442954, - "c7": -23.025585384636724 + "points": { + "c1": 26.574996103077126, + "c2": 14.492046358156166, + "c3": 19.105028735762616, + "c4": -13.766110925129931, + "c5": -11.596452050088999, + "c6": -10.919841315179994, + "c7": 1.5272436273760484 }, - "vertexSeeds": { - "c1": 4.002891370441532, - "c2": 4.04039309672745, - "c3": 4.19347276450395, - "c4": 4.094166885893596, - "c5": 4.456936506618078, - "c6": 3.990351179504447, - "c7": 3.87383716988845 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -99204,23 +99204,23 @@ "year": 1734, "resistanceReported": false, "duration": 47520000, - "curveSeeds": { - "c1": -23.2057915738865, - "c2": -21.10962890805451, - "c3": 13.508224330615533, - "c4": -16.917384979231358, - "c5": -11.776919499072562, - "c6": -18.237503267892393, - "c7": -46.56283499315671 + "points": { + "c1": 36.46457598217128, + "c2": 0.37570535658154824, + "c3": -46.58948436040834, + "c4": -45.8379806940044, + "c5": -57.51773748908633, + "c6": 63.00179406703816, + "c7": 61.76072524853595 }, - "vertexSeeds": { - "c1": 7.602502299396597, - "c2": 8.507057196943421, - "c3": 7.543651280962293, - "c4": 7.6812782051650155, - "c5": 8.147583182876923, - "c6": 7.328121144428156, - "c7": 8.303109217065828 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657425, + "c3": 10.147942672214525, + "c4": 8.118354137771613, + "c5": 6.088765603328713, + "c6": 4.059177068885813, + "c7": 2.0295885344428997 }, "rgb": [58, 15, 49] }, @@ -99231,23 +99231,23 @@ "year": 1733, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -25.168146284605502, - "c2": 10.255652634861832, - "c3": 26.00854310338982, - "c4": -8.354384363477301, - "c5": 38.61808392150227, - "c6": -24.36971784182898, - "c7": 15.27788409391944 + "points": { + "c1": -2.5659996985314137, + "c2": -27.20920079749568, + "c3": 35.74307375700038, + "c4": -30.833162525635025, + "c5": 6.509913343465833, + "c6": -37.36531800805716, + "c7": -6.912241836107256 }, - "vertexSeeds": { - "c1": 13.57751179952644, - "c2": 13.849787003112345, - "c3": 13.61379764713062, - "c4": 13.677247211427746, - "c5": 13.721119683698742, - "c6": 13.291119345400109, - "c7": 13.804516577683538 + "offsets": { + "c1": 23.106796116504853, + "c2": 19.805825242718427, + "c3": 16.504854368932065, + "c4": 13.20388349514564, + "c5": 9.902912621359214, + "c6": 6.601941747572788, + "c7": 3.300970873786426 }, "rgb": [86, 146, 138] }, @@ -99258,23 +99258,23 @@ "year": 1733, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -3.3460657530318194, - "c2": -2.404109618314177, - "c3": -5.889312443397458, - "c4": -5.362532850409345, - "c5": -11.606544216127833, - "c6": -22.976512966887615, - "c7": 22.11464415175672 + "points": { + "c1": -3.601377097101352, + "c2": 26.456765402405075, + "c3": 5.312035381147922, + "c4": -3.512068166267639, + "c5": -23.90619703700402, + "c6": -10.896333100509949, + "c7": -4.1185161039379174 }, - "vertexSeeds": { - "c1": 6.269751470532672, - "c2": 6.3028233908404445, - "c3": 5.8649371686187335, - "c4": 5.858648243512016, - "c5": 6.228689235506308, - "c6": 5.500585151286481, - "c7": 5.609338336563088 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -99285,23 +99285,23 @@ "year": 1733, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 29.441914749075117, - "c2": 29.582741645832776, - "c3": -26.17222767997918, - "c4": -11.002869628519992, - "c5": -34.347596665412425, - "c6": 1.8024123725631327, - "c7": -27.74585145971408 + "points": { + "c1": -33.096836620826366, + "c2": -13.647091471785334, + "c3": -1.0769615317352503, + "c4": -6.561770582228647, + "c5": 24.956716760078812, + "c6": 3.8118064149656234, + "c7": 3.2470747864580716 }, - "vertexSeeds": { - "c1": 4.2842052151242624, - "c2": 4.517094315887382, - "c3": 4.77995036956448, - "c4": 4.25059644903423, - "c5": 4.410970510142241, - "c6": 4.79448333576214, - "c7": 4.356249736695697 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497918, + "c3": 6.033287101248265, + "c4": 4.826629680998612, + "c5": 3.619972260748959, + "c6": 2.413314840499306, + "c7": 1.206657420249653 }, "rgb": [238, 201, 159] }, @@ -99312,23 +99312,23 @@ "year": 1734, "resistanceReported": false, "duration": 51667200, - "curveSeeds": { - "c1": -9.739285760089643, - "c2": 13.527950592654832, - "c3": -31.728326246696525, - "c4": 32.51394812759129, - "c5": -41.14706185060318, - "c6": -18.402692512474665, - "c7": 63.069616670061635 + "points": { + "c1": 21.805029484603054, + "c2": 63.55647221730894, + "c3": -58.27510236690288, + "c4": -59.45685446307744, + "c5": -11.334543222789442, + "c6": -30.749176088108072, + "c7": 62.591001361029384 }, - "vertexSeeds": { - "c1": 7.749745475751465, - "c2": 7.587375240572626, - "c3": 11.30772372736564, - "c4": 9.173771727237055, - "c5": 13.485993621342818, - "c6": 10.353908352593505, - "c7": 9.726425779616747 + "offsets": { + "c1": 23.171521035598705, + "c2": 19.861303744798885, + "c3": 16.551086453999076, + "c4": 13.240869163199257, + "c5": 9.930651872399446, + "c6": 6.620434581599628, + "c7": 3.310217290799814 }, "rgb": [86, 146, 138] }, @@ -99339,23 +99339,23 @@ "year": 1733, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -12.106478105229282, - "c2": -22.02083619945673, - "c3": 4.161112554084703, - "c4": -24.397575636910855, - "c5": 5.005774683357686, - "c6": 11.922273700503922, - "c7": 0.7789979928061932 + "points": { + "c1": 8.560180931172702, + "c2": 1.3987951849221076, + "c3": 15.733350488426609, + "c4": -30.01132836417343, + "c5": -14.078040664737252, + "c6": 25.747477228752324, + "c7": 11.751969003773574 }, - "vertexSeeds": { - "c1": 3.1607909200245485, - "c2": 3.1518506059059046, - "c3": 3.167680637599903, - "c4": 3.178902038176882, - "c5": 3.185049013714708, - "c6": 3.0252173596117165, - "c7": 3.087631448953542 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [222, 0, 59] }, @@ -99366,23 +99366,23 @@ "year": 1733, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -38.44567190952644, - "c2": -28.590175551714694, - "c3": -21.772831460468236, - "c4": 29.11038156376604, - "c5": -13.514413516439163, - "c6": 32.51098165279723, - "c7": 34.43385810889802 + "points": { + "c1": 6.73453928643719, + "c2": 8.159244808962164, + "c3": -14.994505311661772, + "c4": 1.9812900488246399, + "c5": -29.288177722322544, + "c6": -39.92844688007481, + "c7": 42.13357015221527 }, - "vertexSeeds": { - "c1": 4.5378146739149345, - "c2": 5.029581752858069, - "c3": 4.258314791355089, - "c4": 4.950719773415619, - "c5": 4.848208491751778, - "c6": 4.523376594532195, - "c7": 5.018936169126577 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497918, + "c3": 6.033287101248265, + "c4": 4.826629680998612, + "c5": 3.619972260748959, + "c6": 2.413314840499306, + "c7": 1.206657420249653 }, "rgb": [58, 15, 49] }, @@ -99393,23 +99393,23 @@ "year": 1733, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -17.097862826674938, - "c2": 17.335787492287885, - "c3": 34.28886330219761, - "c4": -2.039894662389912, - "c5": 8.822139062982458, - "c6": -30.146975683364293, - "c7": -17.7077295506646 + "points": { + "c1": -9.105143157663836, + "c2": 3.151430759963617, + "c3": -8.217696451667827, + "c4": 18.374309453508744, + "c5": 1.108404812806782, + "c6": -23.43555838946161, + "c7": -8.788424273400533 }, - "vertexSeeds": { - "c1": 5.8187547362494225, - "c2": 5.343948877751708, - "c3": 5.061114848961944, - "c4": 5.514626389073369, - "c5": 5.127135537680795, - "c6": 5.102715145638008, - "c7": 5.4095147531373255 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710123, + "c3": 7.304669440591769, + "c4": 5.843735552473422, + "c5": 4.382801664355066, + "c6": 2.921867776236711, + "c7": 1.4609338881183556 }, "rgb": [77, 76, 132] }, @@ -99420,23 +99420,23 @@ "year": 1733, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 17.03849689403102, - "c2": -34.294266273315976, - "c3": 43.017591784324075, - "c4": -20.76133468024967, - "c5": -46.39752490741686, - "c6": 15.26143572813293, - "c7": 38.347661394135905 + "points": { + "c1": 42.484925599596174, + "c2": 17.897258242429636, + "c3": 11.66556371936803, + "c4": -24.164581182022065, + "c5": 30.411208190627327, + "c6": 22.667603281427837, + "c7": -41.7656313629231 }, - "vertexSeeds": { - "c1": 4.790732611234972, - "c2": 4.4358630775632655, - "c3": 4.3631327133592315, - "c4": 4.978502219462511, - "c5": 4.4078786495273174, - "c6": 5.1703231787071084, - "c7": 4.552501710182325 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980581, + "c3": 6.31067961165049, + "c4": 5.0485436893203905, + "c5": 3.7864077669902905, + "c6": 2.5242718446601953, + "c7": 1.2621359223300999 }, "rgb": [238, 201, 159] }, @@ -99447,23 +99447,23 @@ "year": 1733, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 0.761898932408414, - "c2": 30.041294834717604, - "c3": -13.75905537131025, - "c4": 6.604760222953892, - "c5": 8.811597984710438, - "c6": 28.97834155474088, - "c7": -30.411175890204564 + "points": { + "c1": 22.100349283015937, + "c2": 7.368136835300049, + "c3": 32.84015970967831, + "c4": 12.603102408388153, + "c5": -18.77801913855437, + "c6": 16.20927752774937, + "c7": 9.069801467865183 }, - "vertexSeeds": { - "c1": 4.2322109614598755, - "c2": 5.100558613344273, - "c3": 4.605380471185539, - "c4": 4.388398568272543, - "c5": 4.21576798929762, - "c6": 4.46924851349349, - "c7": 4.482957915312648 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -99474,23 +99474,23 @@ "year": 1732, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": 19.125939588225357, - "c2": 10.187748737242664, - "c3": -4.261716153867294, - "c4": -9.452307423801997, - "c5": -11.908296745223677, - "c6": -16.92932116844405, - "c7": 13.59256945823821 + "points": { + "c1": -11.788145474106637, + "c2": -11.006101387410197, + "c3": 1.8091635487371498, + "c4": 9.304606850857859, + "c5": 14.308010717644706, + "c6": -8.627325759853498, + "c7": 23.377019913070768 }, - "vertexSeeds": { - "c1": 1.8638896389811812, - "c2": 1.788031393951114, - "c3": 1.8276863602856335, - "c4": 1.9258532284987138, - "c5": 1.79958013347486, - "c6": 1.8024412058912558, - "c7": 1.9617396650592296 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [222, 0, 59] }, @@ -99501,23 +99501,23 @@ "year": 1733, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 6.480557722201276, - "c2": 15.213583258869996, - "c3": 37.13363139035626, - "c4": 30.194193861597398, - "c5": 5.747076260931891, - "c6": -13.719927268112933, - "c7": 36.41527892286946 + "points": { + "c1": 30.796725563534466, + "c2": 23.900799629032612, + "c3": 12.484843502615625, + "c4": 16.685496791025905, + "c5": -4.812955610483392, + "c6": -32.05239546493295, + "c7": -39.087379975132684 }, - "vertexSeeds": { - "c1": 5.416393424769129, - "c2": 5.3786738940883785, - "c3": 5.768205943266868, - "c4": 5.739605282945231, - "c5": 5.652746084136819, - "c6": 5.508708152360098, - "c7": 5.846200530922504 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [222, 0, 59] }, @@ -99528,23 +99528,23 @@ "year": 1733, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -27.28086676295565, - "c2": 28.30897818792272, - "c3": -3.4483374381656304, - "c4": 12.314431649971873, - "c5": 3.2512494918872648, - "c6": -26.37987814115376, - "c7": 33.19974989200223 + "points": { + "c1": 30.603319588430253, + "c2": -5.918158010002056, + "c3": 12.014690079559735, + "c4": -27.611800396981103, + "c5": -7.96112560195218, + "c6": 21.12378435297839, + "c7": 34.440854247148536 }, - "vertexSeeds": { - "c1": 5.647764598595201, - "c2": 5.105727358971957, - "c3": 6.032094402133863, - "c4": 5.062576373051298, - "c5": 5.778187689254739, - "c6": 5.669783776437112, - "c7": 5.436799604544895 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.93203883495146, + "c3": 7.443365695792876, + "c4": 5.954692556634303, + "c5": 4.46601941747573, + "c6": 2.977346278317147, + "c7": 1.4886731391585735 }, "rgb": [86, 146, 138] }, @@ -99555,23 +99555,23 @@ "year": 1733, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 15.573705902267921, - "c2": -13.99771895508925, - "c3": -19.663163674811468, - "c4": 2.822499605157713, - "c5": 19.414646779919646, - "c6": -0.7883492816166076, - "c7": 11.590411082446526 + "points": { + "c1": -22.75346176022844, + "c2": 7.674283430651965, + "c3": 6.157574254585164, + "c4": -22.546978165663873, + "c5": -13.284150099670201, + "c6": -13.815158998314633, + "c7": 18.709554955296387 }, - "vertexSeeds": { - "c1": 4.795223243061685, - "c2": 4.738433260117221, - "c3": 4.417464601686696, - "c4": 4.444065199587785, - "c5": 5.255651671092116, - "c6": 4.978463600900907, - "c7": 4.553993240632138 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101242, + "c3": 6.38002773925104, + "c4": 5.104022191400832, + "c5": 3.8280166435506238, + "c6": 2.552011095700416, + "c7": 1.276005547850208 }, "rgb": [77, 76, 132] }, @@ -99582,23 +99582,23 @@ "year": 1733, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 26.662809460144988, - "c2": 3.0167342958036762, - "c3": -13.185922804578102, - "c4": 15.762825554154883, - "c5": 24.160574248760124, - "c6": -25.55595851067443, - "c7": 20.831540317255037 + "points": { + "c1": -26.14481917385273, + "c2": -16.16431880184495, + "c3": -10.376952438187242, + "c4": -28.88722049853353, + "c5": 2.3000365271636554, + "c6": 14.250594553034787, + "c7": -7.762444550259783 }, - "vertexSeeds": { - "c1": 5.65272224451159, - "c2": 5.6055737031079635, - "c3": 5.553077022062421, - "c4": 5.325496030094062, - "c5": 5.230942697157415, - "c6": 5.282596358835903, - "c7": 5.597370662788871 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.48821081830791, + "c3": 7.073509015256587, + "c4": 5.658807212205275, + "c5": 4.24410540915395, + "c6": 2.8294036061026375, + "c7": 1.414701803051325 }, "rgb": [238, 201, 159] }, @@ -99609,23 +99609,23 @@ "year": 1733, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 18.19646464516657, - "c2": -11.393030269385324, - "c3": -29.583857600660806, - "c4": -1.7998331471260727, - "c5": -17.955999749729045, - "c6": -24.57458689112402, - "c7": -0.46164987431703963 + "points": { + "c1": 5.062256295505115, + "c2": -9.91775727970288, + "c3": 20.027155674745764, + "c4": -25.385791866136284, + "c5": -26.612911093886623, + "c6": -28.039594377573078, + "c7": 6.069569772921021 }, - "vertexSeeds": { - "c1": 9.763412923885681, - "c2": 9.878816195267003, - "c3": 9.770842488257763, - "c4": 9.932388316519406, - "c5": 9.959493256430102, - "c6": 9.782675921805199, - "c7": 9.820201141824425 + "offsets": { + "c1": 16.666666666666664, + "c2": 14.285714285714233, + "c3": 11.90476190476192, + "c4": 9.523809523809549, + "c5": 7.142857142857176, + "c6": 4.761904761904804, + "c7": 2.3809523809524316 }, "rgb": [238, 201, 159] }, @@ -99636,23 +99636,23 @@ "year": 1733, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -14.727339269482094, - "c2": 23.85590789830283, - "c3": -18.18148204856048, - "c4": -6.836275988649458, - "c5": 9.853099450161032, - "c6": -32.360859946626974, - "c7": -16.024228456077275 + "points": { + "c1": 20.395075214864264, + "c2": 23.999083288296333, + "c3": -20.113286366287824, + "c4": 26.026460546299433, + "c5": 32.859552648408325, + "c6": -7.580228198769333, + "c7": -2.9984834866754113 }, - "vertexSeeds": { - "c1": 5.151186925916528, - "c2": 4.7564772952563885, - "c3": 4.78701384238355, - "c4": 4.463128724912898, - "c5": 4.213662379550918, - "c6": 5.144662029149378, - "c7": 5.193448406551644 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -99663,23 +99663,23 @@ "year": 1733, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -20.12298584796451, - "c2": 18.300926049248233, - "c3": 28.789224410721317, - "c4": 4.628369373602752, - "c5": -16.776247036531288, - "c6": -32.358815188677184, - "c7": -11.830181981942577 + "points": { + "c1": 6.211396456205037, + "c2": -0.8070442991244562, + "c3": 22.468877903016313, + "c4": -30.908337549242198, + "c5": 19.510519341836904, + "c6": 24.304344320038624, + "c7": 18.01978416576673 }, - "vertexSeeds": { - "c1": 1.873995638724159, - "c2": 1.8839120631601012, - "c3": 1.8502790648510703, - "c4": 2.0385168952706136, - "c5": 1.9064716238540265, - "c6": 1.9626865492441035, - "c7": 2.041643162627269 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037453, + "c3": 2.473416551086455, + "c4": 1.978733240869165, + "c5": 1.4840499306518704, + "c6": 0.9893666204345803, + "c7": 0.4946833102172902 }, "rgb": [58, 15, 49] }, @@ -99690,23 +99690,23 @@ "year": 1733, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 16.008277506114766, - "c2": 8.66617458490397, - "c3": -5.6427358981707965, - "c4": -2.3866663555740075, - "c5": -19.242656466947885, - "c6": -17.139405891848135, - "c7": 0.8633269992450678 + "points": { + "c1": -4.022478578235813, + "c2": 6.721193939160152, + "c3": -16.790159945756333, + "c4": 2.684325359346399, + "c5": 22.21445898515509, + "c6": 10.960058070738903, + "c7": 17.24274506221046 }, - "vertexSeeds": { - "c1": 2.6724259928193566, - "c2": 2.5173788749143653, - "c3": 2.62921409145263, - "c4": 2.515459222174157, - "c5": 2.7948015630175993, - "c6": 2.707333370829408, - "c7": 2.8726291140916707 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033289, + "c3": 3.467406380027738, + "c4": 2.7739251040221933, + "c5": 2.0804438280166417, + "c6": 1.3869625520110966, + "c7": 0.6934812760055514 }, "rgb": [86, 146, 138] }, @@ -99717,23 +99717,23 @@ "year": 1734, "resistanceReported": false, "duration": 51062400, - "curveSeeds": { - "c1": -59.633851768794095, - "c2": -3.8859278410277085, - "c3": -52.2526056776493, - "c4": -39.4578889300453, - "c5": -24.196438246710265, - "c6": -33.992073017126934, - "c7": -42.99857798988555 + "points": { + "c1": 20.302128365647505, + "c2": -10.038136084302295, + "c3": -48.80693077850011, + "c4": -39.90362069321695, + "c5": -34.70676721842172, + "c6": -43.02746428138802, + "c7": -30.323676348442035 }, - "vertexSeeds": { - "c1": 11.47558921861074, - "c2": 12.457079988212826, - "c3": 11.37306801113952, - "c4": 11.245806459727277, - "c5": 11.478441147774483, - "c6": 13.01933436507889, - "c7": 13.04402297523806 + "offsets": { + "c1": 21.844660194174757, + "c2": 18.72399445214979, + "c3": 15.60332871012482, + "c4": 12.48266296809985, + "c5": 9.361997226074907, + "c6": 6.241331484049938, + "c7": 3.120665742024969 }, "rgb": [77, 76, 132] }, @@ -99744,23 +99744,23 @@ "year": 1734, "resistanceReported": false, "duration": 56764800, - "curveSeeds": { - "c1": 65.90875418201668, - "c2": -6.117837776582434, - "c3": -16.645938047189645, - "c4": 54.13468122981865, - "c5": -56.42281630424302, - "c6": -50.082376437012314, - "c7": -22.64182353297788 + "points": { + "c1": -22.274990601077874, + "c2": -11.581389703536026, + "c3": -23.93483263641992, + "c4": 11.736888765236003, + "c5": -46.27368890416804, + "c6": 51.17661815106702, + "c7": 30.7059827476062 }, - "vertexSeeds": { - "c1": 18.449811866687167, - "c2": 17.259766024435223, - "c3": 18.036964364041285, - "c4": 16.453132173374307, - "c5": 17.195087026185945, - "c6": 16.540734487989265, - "c7": 17.234203405419553 + "offsets": { + "c1": 31.132686084142396, + "c2": 26.68515950069347, + "c3": 22.23763291724457, + "c4": 17.790106333795645, + "c5": 13.342579750346749, + "c6": 8.895053166897823, + "c7": 4.4475265834489255 }, "rgb": [222, 0, 59] }, @@ -99771,23 +99771,23 @@ "year": 1733, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 34.11823689411362, - "c2": -1.4797305873625533, - "c3": 30.19842550775526, - "c4": 29.85872448666717, - "c5": 24.30638424167983, - "c6": 19.144902629434405, - "c7": -0.25031885979906576 + "points": { + "c1": -22.677314997727237, + "c2": -31.754711435468035, + "c3": 4.43455090810351, + "c4": -9.971192633225616, + "c5": 16.744584022230498, + "c6": 17.837850186361017, + "c7": 34.81550691893888 }, - "vertexSeeds": { - "c1": 4.513690929877231, - "c2": 4.189632227515116, - "c3": 4.046564859496308, - "c4": 4.046619295832574, - "c5": 3.818899680795689, - "c6": 4.639864649623702, - "c7": 3.9219390284805797 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [222, 0, 59] }, @@ -99798,23 +99798,23 @@ "year": 1733, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 1.352806839268112, - "c2": 32.61711169516236, - "c3": 24.340185358291066, - "c4": -12.273064984694596, - "c5": -10.002198610145431, - "c6": 30.74925506543014, - "c7": -5.574892543021967 + "points": { + "c1": 6.686645405871857, + "c2": -35.676868310853806, + "c3": 36.998728610790714, + "c4": -6.065013626332124, + "c5": -27.985361443726465, + "c6": 39.56525490434144, + "c7": 30.797416264465106 }, - "vertexSeeds": { - "c1": 4.790276295803757, - "c2": 4.678559373909311, - "c3": 4.626124384736887, - "c4": 4.648748965126499, - "c5": 4.755363536031364, - "c6": 4.868949663183171, - "c7": 4.660179927444333 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337029, + "c3": 5.940822931114186, + "c4": 4.752658344891356, + "c5": 3.5644937586685144, + "c6": 2.376329172445672, + "c7": 1.1881645862228298 }, "rgb": [58, 15, 49] }, @@ -99825,23 +99825,23 @@ "year": 1733, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 22.74296217546862, - "c2": -25.063879659762645, - "c3": 6.364582115125806, - "c4": 12.343130187360458, - "c5": 6.342926506164559, - "c6": 15.043310147253052, - "c7": 32.765708015771224 + "points": { + "c1": -9.565715697665453, + "c2": -1.365535314771087, + "c3": 34.06414791819499, + "c4": 29.212386909925968, + "c5": -27.093254328246687, + "c6": -7.436866650712503, + "c7": 39.331497659767535 }, - "vertexSeeds": { - "c1": 5.009585756377559, - "c2": 4.681380403894909, - "c3": 4.644674712825894, - "c4": 5.02826804994883, - "c5": 4.658674965391788, - "c6": 4.8512837383026035, - "c7": 4.332264994073014 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -99852,23 +99852,23 @@ "year": 1733, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 14.531708871950201, - "c2": 23.67501592712631, - "c3": -24.80299152666148, - "c4": 4.033300703949628, - "c5": -0.5503127946987405, - "c6": 4.729340190516609, - "c7": 5.580764987379844 + "points": { + "c1": -30.765928498926783, + "c2": 29.36007954888099, + "c3": -3.575909119844745, + "c4": 7.8052101864754775, + "c5": 2.0506525699395866, + "c6": 7.920579180993258, + "c7": -7.156409132868365 }, - "vertexSeeds": { - "c1": 4.734891785124568, - "c2": 5.182215336989824, - "c3": 4.720024560667863, - "c4": 4.981468996843523, - "c5": 4.670540137232272, - "c6": 4.931070342052006, - "c7": 4.6642673950554645 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -99879,23 +99879,23 @@ "year": 1733, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -1.5857583811197955, - "c2": 9.879556730489554, - "c3": 27.182033684359837, - "c4": -4.079160098045698, - "c5": -7.898545011095333, - "c6": 25.79332791567574, - "c7": 25.859022766044298 + "points": { + "c1": -28.549479157712494, + "c2": 3.6640787189042427, + "c3": -2.968673430501667, + "c4": 23.477084091748388, + "c5": 34.87419741425551, + "c6": 23.965749971575164, + "c7": 3.319743153874043 }, - "vertexSeeds": { - "c1": 3.1265335547777604, - "c2": 3.115090667640549, - "c3": 3.230633115253603, - "c4": 3.041962183582303, - "c5": 3.1311565517417557, - "c6": 3.09977326819162, - "c7": 3.0135853169349462 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -99906,23 +99906,23 @@ "year": 1733, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -2.5922429795559196, - "c2": 0.35419510118134667, - "c3": 19.605275339790854, - "c4": 0.0870419642686997, - "c5": 5.005711123285341, - "c6": -22.411220598929646, - "c7": -18.113810811056574 + "points": { + "c1": 9.806061573534471, + "c2": -22.436530370912777, + "c3": -12.67373866388322, + "c4": -29.13761478481568, + "c5": 25.227353590853134, + "c6": -9.795876713603445, + "c7": 31.5045640577262 }, - "vertexSeeds": { - "c1": 4.144629156098263, - "c2": 4.7369418432705235, - "c3": 4.867772707646103, - "c4": 4.831160149990359, - "c5": 4.51487990814962, - "c6": 4.91569265412741, - "c7": 4.787897973965723 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779471, + "c3": 6.195099398982894, + "c4": 4.956079519186314, + "c5": 3.7170596393897357, + "c6": 2.478039759593157, + "c7": 1.2390198797965786 }, "rgb": [77, 76, 132] }, @@ -99933,23 +99933,23 @@ "year": 1733, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -26.285961574269916, - "c2": 28.290527464209106, - "c3": 27.971486594784622, - "c4": 14.909190572709974, - "c5": 17.003300877759294, - "c6": -11.530251437660642, - "c7": 12.849726177845035 + "points": { + "c1": -12.888304730943503, + "c2": -6.485543880101957, + "c3": 3.9805770864761314, + "c4": 9.267161732638378, + "c5": -29.572723531467048, + "c6": 10.594914257457546, + "c7": 22.55118758823737 }, - "vertexSeeds": { - "c1": 4.969706505360494, - "c2": 4.923413764407479, - "c3": 5.207085803450444, - "c4": 4.49956866080692, - "c5": 4.796137997251415, - "c6": 4.48641036887011, - "c7": 5.183635742397705 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -99960,23 +99960,23 @@ "year": 1733, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -11.156262514752033, - "c2": 37.004470220276005, - "c3": 35.32638829899399, - "c4": -32.95313144893932, - "c5": -11.550759756161675, - "c6": 27.807671251016615, - "c7": 2.04995861478902 + "points": { + "c1": -14.863122286048455, + "c2": -38.98339628313213, + "c3": 22.413408156076457, + "c4": 7.410224420292984, + "c5": 27.53919940016327, + "c6": -13.053964642191225, + "c7": 29.66042750856336 }, - "vertexSeeds": { - "c1": 2.6427821926496122, - "c2": 2.6860281029892428, - "c3": 2.7752886680080433, - "c4": 2.8288017944110377, - "c5": 2.547808515689321, - "c6": 2.859878120568952, - "c7": 2.742278429485105 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [77, 76, 132] }, @@ -99987,23 +99987,23 @@ "year": 1733, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": 5.518469015588131, - "c2": 41.69276060423172, - "c3": 5.582507663674008, - "c4": -24.8797185525943, - "c5": -16.846834496805414, - "c6": -26.51005019708874, - "c7": 2.021070091023276 + "points": { + "c1": -8.425968281886462, + "c2": -38.78691145798909, + "c3": -13.82073790697352, + "c4": -4.396811088867054, + "c5": 42.45506591481849, + "c6": -25.011103280146422, + "c7": -32.88313975581205 }, - "vertexSeeds": { - "c1": 1.036490657869241, - "c2": 1.0698605391157034, - "c3": 1.1978722966671134, - "c4": 1.0044884850791098, - "c5": 1.1278226352242045, - "c6": 1.0872304646686743, - "c7": 1.1605191018804548 + "offsets": { + "c1": 2.0388349514563107, + "c2": 1.7475728155339805, + "c3": 1.45631067961165, + "c4": 1.1650485436893212, + "c5": 0.8737864077669908, + "c6": 0.5825242718446606, + "c7": 0.2912621359223303 }, "rgb": [222, 0, 59] }, @@ -100014,23 +100014,23 @@ "year": 1733, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -5.849227466683544, - "c2": 0.16198453690216752, - "c3": -3.4604805085210018, - "c4": 18.686238837046545, - "c5": 16.376246945180057, - "c6": 39.53365472031918, - "c7": -15.098977229517104 + "points": { + "c1": -13.163062937066606, + "c2": 30.035428622358353, + "c3": 28.576860397242356, + "c4": -32.531713163776736, + "c5": 1.1318618287036912, + "c6": -41.80475926887555, + "c7": 38.48127454138073 }, - "vertexSeeds": { - "c1": 1.9942438637503062, - "c2": 2.100231388384831, - "c3": 2.0381460127022173, - "c4": 2.003405616570719, - "c5": 2.0066541613105815, - "c6": 1.9688293347832282, - "c7": 2.0797256952729986 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300527, + "c5": 1.567267683772541, + "c6": 1.0448451225150241, + "c7": 0.5224225612575121 }, "rgb": [222, 0, 59] }, @@ -100041,23 +100041,23 @@ "year": 1733, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 36.586109274429745, - "c2": 29.726891517374426, - "c3": -23.782342746201323, - "c4": 0.934390813192735, - "c5": -2.7883871386569226, - "c6": -11.699095112129285, - "c7": 28.493673568709866 + "points": { + "c1": -28.38452594348901, + "c2": -23.51548114403855, + "c3": 3.283402543439081, + "c4": -23.25050095646737, + "c5": 10.275178885014697, + "c6": 24.97686214863691, + "c7": -7.539198912461721 }, - "vertexSeeds": { - "c1": 4.001275745084301, - "c2": 4.233387495256607, - "c3": 4.349229445896862, - "c4": 4.473227137556762, - "c5": 4.026942652608473, - "c6": 4.507229440017863, - "c7": 4.097117219310719 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613041, + "c3": 5.524734165510863, + "c4": 4.419787332408693, + "c5": 3.314840499306517, + "c6": 2.2098936662043465, + "c7": 1.1049468331021703 }, "rgb": [77, 76, 132] }, @@ -100068,23 +100068,23 @@ "year": 1734, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 45.56135090000745, - "c2": -51.85351513144021, - "c3": 1.136217226462037, - "c4": 14.317035287678642, - "c5": 50.55469622959999, - "c6": -43.71890511678063, - "c7": 24.673053855867487 + "points": { + "c1": -4.655587614034523, + "c2": 50.280694351020806, + "c3": 39.64893472832325, + "c4": -39.35157396376678, + "c5": -40.634575568348964, + "c6": 27.223458950745986, + "c7": 33.55375269706777 }, - "vertexSeeds": { - "c1": 4.164615540864004, - "c2": 4.257466977123685, - "c3": 4.263503141990401, - "c4": 4.290876944374777, - "c5": 4.054322643416437, - "c6": 4.176813518097767, - "c7": 4.0839249374463416 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969482, + "c3": 5.154877484974574, + "c4": 4.123901987979655, + "c5": 3.092926490984747, + "c6": 2.0619509939898273, + "c7": 1.030975496994908 }, "rgb": [86, 146, 138] }, @@ -100095,23 +100095,23 @@ "year": 1733, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 0.8046097292271455, - "c2": -10.845165798206938, - "c3": -27.429553988061848, - "c4": 6.880560442787008, - "c5": 10.996009764210214, - "c6": 11.111821276026845, - "c7": 26.068932562447827 + "points": { + "c1": -11.677939890661492, + "c2": 30.02672129247125, + "c3": -22.671093564444867, + "c4": 19.261660040933073, + "c5": 16.184906847535423, + "c6": -24.332792054445967, + "c7": -33.28480458792048 }, - "vertexSeeds": { - "c1": 3.7595281286386895, - "c2": 4.478562253353656, - "c3": 3.757035644677485, - "c4": 4.189989316134485, - "c5": 4.04094537839289, - "c6": 4.2651754408254865, - "c7": 3.8276780898123297 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.7128987517337055, + "c3": 5.594082293111418, + "c4": 4.475265834489137, + "c5": 3.35644937586685, + "c6": 2.2376329172445684, + "c7": 1.1188164586222864 }, "rgb": [222, 0, 59] }, @@ -100122,23 +100122,23 @@ "year": 1733, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -31.611900841230522, - "c2": -3.6830328987592367, - "c3": 8.449492407944987, - "c4": 29.482684435174328, - "c5": 26.24601450066961, - "c6": 8.926589134800814, - "c7": -22.77262851970368 + "points": { + "c1": -2.9024065707133673, + "c2": -20.22040919587979, + "c3": 28.31418780559703, + "c4": -19.97401849172262, + "c5": -6.6410293674931395, + "c6": -8.316857999498733, + "c7": -17.327240805410554 }, - "vertexSeeds": { - "c1": 2.5688921899588784, - "c2": 2.3245691144726717, - "c3": 2.4484044351338126, - "c4": 2.5496431644765654, - "c5": 2.5627901784232425, - "c6": 2.7540450672079158, - "c7": 2.5202774144926043 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.3749422098936646, + "c4": 2.699953767914935, + "c5": 2.0249653259362006, + "c6": 1.3499768839574662, + "c7": 0.6749884419787344 }, "rgb": [222, 0, 59] }, @@ -100149,23 +100149,23 @@ "year": 1733, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 18.577019476814193, - "c2": 20.603051925417688, - "c3": -11.79904037206617, - "c4": -13.190669573516846, - "c5": -15.135683389547559, - "c6": -32.72074687731232, - "c7": 7.013108741904219 + "points": { + "c1": -7.34711365263324, + "c2": -38.662730901586876, + "c3": 27.504233704501694, + "c4": -4.298747459818891, + "c5": 37.83362537343873, + "c6": -1.169714096818005, + "c7": -34.38380428131174 }, - "vertexSeeds": { - "c1": 0.9138396838240449, - "c2": 0.8251049002491379, - "c3": 0.8681487020409556, - "c4": 0.8752515096109996, - "c5": 0.8902682789071671, - "c6": 0.8370098008793436, - "c7": 0.8299185605842551 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.3869625520110955, + "c3": 1.155802126675913, + "c4": 0.9246417013407303, + "c5": 0.6934812760055478, + "c6": 0.46232085067036516, + "c7": 0.23116042533518258 }, "rgb": [222, 0, 59] }, @@ -100176,23 +100176,23 @@ "year": 1733, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -6.587208557726388, - "c2": 18.865274144132293, - "c3": 19.30644265007026, - "c4": -12.616288036575401, - "c5": 37.12055070762335, - "c6": 20.92467202718167, - "c7": -10.13464373887141 + "points": { + "c1": -23.16626903955524, + "c2": -17.365400116360217, + "c3": -1.132030423057138, + "c4": 1.9716990457195465, + "c5": -23.882262350716882, + "c6": 37.0398378317947, + "c7": -3.9597926245443773 }, - "vertexSeeds": { - "c1": 8.762953367875648, - "c2": 8.762953367875648, - "c3": 8.762953367875648, - "c4": 8.762953367875648, - "c5": 8.762953367875648, - "c6": 8.762953367875648, - "c7": 8.762953367875648 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -100203,23 +100203,23 @@ "year": 1733, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 33.86879643134885, - "c2": -2.1571125574225647, - "c3": -6.705023365104399, - "c4": 14.012797028879817, - "c5": 2.5223174707254117, - "c6": -35.062832441229055, - "c7": -24.983383365953216 + "points": { + "c1": 20.454888380893244, + "c2": -37.08177049057943, + "c3": -17.99513491921262, + "c4": 20.756676846230377, + "c5": -23.378890759149158, + "c6": -37.928371204010624, + "c7": -35.2061128634331 }, - "vertexSeeds": { - "c1": 6.048304469349487, - "c2": 5.795308752455739, - "c3": 5.658278623984748, - "c4": 5.690811610456463, - "c5": 6.288221271496537, - "c6": 6.39428868932122, - "c7": 6.151131070703676 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -100230,23 +100230,23 @@ "year": 1733, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 21.92050164645557, - "c2": -29.228601726279457, - "c3": -15.475603160798222, - "c4": -29.077862772222634, - "c5": -32.40321366381682, - "c6": -4.788815428617198, - "c7": -29.142556448425452 + "points": { + "c1": -9.002407136077164, + "c2": -30.236494638873673, + "c3": -4.380351337935259, + "c4": 10.634938832254768, + "c5": 6.722385115053875, + "c6": -19.20662537285231, + "c7": -11.156841989391612 }, - "vertexSeeds": { - "c1": 13.189593722126032, - "c2": 13.763832904414894, - "c3": 15.526634596484366, - "c4": 11.881072676136421, - "c5": 14.185383192739735, - "c6": 14.155903016195253, - "c7": 15.582640281091981 + "offsets": { + "c1": 28.02588996763754, + "c2": 24.02219140083217, + "c3": 20.018492834026812, + "c4": 16.014794267221454, + "c5": 12.011095700416085, + "c6": 8.007397133610715, + "c7": 4.003698566805357 }, "rgb": [77, 76, 132] }, @@ -100257,23 +100257,23 @@ "year": 1733, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": -8.66838441044494, - "c2": -6.215414336179581, - "c3": -13.249996647533651, - "c4": -14.141106658764185, - "c5": 9.782323538470838, - "c6": 11.730386830010133, - "c7": 1.4030756441096432 + "points": { + "c1": 4.877342632069428, + "c2": -13.912453216178275, + "c3": 0.9074893904954955, + "c4": -4.904405346668122, + "c5": 4.238634233743145, + "c6": -11.850241687800247, + "c7": 8.579372482084704 }, - "vertexSeeds": { - "c1": 5.172011751314582, - "c2": 4.878918352472264, - "c3": 4.577602018959797, - "c4": 5.200534148787137, - "c5": 5.2163973351007416, - "c6": 4.51355943501088, - "c7": 4.283849185845318 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -100284,23 +100284,23 @@ "year": 1733, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 35.30023700904535, - "c2": -8.631385221030271, - "c3": 17.794645845841778, - "c4": 39.47165425233605, - "c5": -32.92131034779463, - "c6": 33.91234899609219, - "c7": -32.56008541425378 + "points": { + "c1": -29.059517170231285, + "c2": 22.777469254821156, + "c3": 32.64105163948169, + "c4": -4.915896846774487, + "c5": 40.435628442486816, + "c6": -7.216333430857368, + "c7": 29.01950728371756 }, - "vertexSeeds": { - "c1": 7.763768804322886, - "c2": 7.553002917398459, - "c3": 6.875157699078761, - "c4": 7.659035196016702, - "c5": 7.5783820242298745, - "c6": 6.605258091731232, - "c7": 6.762166335153484 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335645, + "c3": 9.963014331946372, + "c4": 7.970411465557096, + "c5": 5.9778085991678225, + "c6": 3.985205732778548, + "c7": 1.992602866389274 }, "rgb": [77, 76, 132] }, @@ -100311,23 +100311,23 @@ "year": 1733, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 33.24476465032838, - "c2": -8.1861008684393, - "c3": 12.353018104123699, - "c4": 29.949905132273514, - "c5": -5.433787261039605, - "c6": 17.486265916604587, - "c7": 17.588051874564833 + "points": { + "c1": -39.13627271953948, + "c2": -28.938637074301127, + "c3": 26.68458588947287, + "c4": 37.676859936802046, + "c5": -36.31367817185944, + "c6": 29.65405626294934, + "c7": 29.487206936316753 }, - "vertexSeeds": { - "c1": 3.4341936852320787, - "c2": 3.472955530784581, - "c3": 3.613045172842835, - "c4": 3.719488855314409, - "c5": 3.6606255187018144, - "c6": 3.8166902566897196, - "c7": 3.851033499910293 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105873, + "c4": 3.9204808136846996, + "c5": 2.9403606102635207, + "c6": 1.9602404068423473, + "c7": 0.9801202034211737 }, "rgb": [77, 76, 132] }, @@ -100338,23 +100338,23 @@ "year": 1734, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 41.48254581090416, - "c2": 12.659080679625134, - "c3": -32.949081915795844, - "c4": 33.9256624068611, - "c5": 46.31158533968195, - "c6": -39.72410141798179, - "c7": 9.352740113447865 + "points": { + "c1": 9.312120264161578, + "c2": 39.049364185583435, + "c3": 15.874665672414444, + "c4": 34.33951507639441, + "c5": -2.3331505785426216, + "c6": -25.731544598512237, + "c7": -21.51874653032535 }, - "vertexSeeds": { - "c1": 5.159742390218913, - "c2": 5.270784457022659, - "c3": 5.0321071194456835, - "c4": 5.092608826959919, - "c5": 5.077035652488752, - "c6": 5.29742892350438, - "c7": 5.318865670894606 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -100365,23 +100365,23 @@ "year": 1733, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -10.380504710631229, - "c2": 20.048083638794544, - "c3": -19.955517507530445, - "c4": 1.0609441711280851, - "c5": -6.365052558942775, - "c6": -15.030703816851789, - "c7": 2.3080673513730403 + "points": { + "c1": -16.727936801195437, + "c2": 30.108833364198645, + "c3": -18.749742455056747, + "c4": -20.095129925795966, + "c5": 7.736218922374569, + "c6": -16.57888365674892, + "c7": -21.6810928853887 }, - "vertexSeeds": { - "c1": 5.886163311774606, - "c2": 5.9445692888775366, - "c3": 6.110198740540079, - "c4": 5.84061988583127, - "c5": 5.871385846395814, - "c6": 6.1731288647141245, - "c7": 6.082945573535161 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -100392,23 +100392,23 @@ "year": 1733, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 31.425896072655895, - "c2": 14.647617930907785, - "c3": 15.235809283450145, - "c4": -18.614362080496853, - "c5": -8.725365202475338, - "c6": 14.646997376540938, - "c7": 3.1016664949407513 + "points": { + "c1": -16.03856366613224, + "c2": -20.91490331548928, + "c3": -0.7221342824524655, + "c4": 26.09380232772225, + "c5": 1.4898710955048244, + "c6": 32.25743786476776, + "c7": 17.847521950214748 }, - "vertexSeeds": { - "c1": 1.5016775117025642, - "c2": 1.506640674052627, - "c3": 1.359852139031734, - "c4": 1.3056382419974517, - "c5": 1.4224428826321907, - "c6": 1.415059921230782, - "c7": 1.3400106521989699 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217755, + "c3": 1.8492834026814606, + "c4": 1.4794267221451698, + "c5": 1.1095700416088758, + "c6": 0.7397133610725849, + "c7": 0.369856680536294 }, "rgb": [238, 201, 159] }, @@ -100419,23 +100419,23 @@ "year": 1734, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 25.277838950937365, - "c2": -13.522886981917232, - "c3": -24.068750641418156, - "c4": 34.94078191814573, - "c5": 44.445509659368454, - "c6": 28.613923473566317, - "c7": 4.0299047485682635 + "points": { + "c1": 44.15838076394088, + "c2": 31.649100400450394, + "c3": -43.992554611283765, + "c4": -45.31880079685477, + "c5": -6.92845509504334, + "c6": 13.84827203665398, + "c7": 27.620143223693773 }, - "vertexSeeds": { - "c1": 10.354437322834025, - "c2": 10.657512404991888, - "c3": 11.797404279521901, - "c4": 11.555143068062037, - "c5": 11.140352882883592, - "c6": 10.600560270232911, - "c7": 9.74448384653116 + "offsets": { + "c1": 20, + "c2": 17.14285714285714, + "c3": 14.285714285714278, + "c4": 11.428571428571434, + "c5": 8.571428571428575, + "c6": 5.714285714285713, + "c7": 2.857142857142852 }, "rgb": [58, 15, 49] }, @@ -100446,23 +100446,23 @@ "year": 1733, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -13.009595647593134, - "c2": -1.4947223831829675, - "c3": -1.9702379764183178, - "c4": 21.211348680386415, - "c5": 36.48818807249182, - "c6": 11.00647466435207, - "c7": 3.487013446714691 + "points": { + "c1": 24.21575592493764, + "c2": -23.519928112253787, + "c3": -28.77283491030038, + "c4": 35.81787641807789, + "c5": 33.095803220663285, + "c6": 16.331988891115024, + "c7": 30.662899115209797 }, - "vertexSeeds": { - "c1": 6.235721797551666, - "c2": 5.953016949303596, - "c3": 5.870856819777041, - "c4": 6.29628642517981, - "c5": 6.276416819329147, - "c6": 6.642603457202473, - "c7": 6.153961965343314 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [58, 15, 49] }, @@ -100473,23 +100473,23 @@ "year": 1733, "resistanceReported": true, "duration": 22636800, - "curveSeeds": { - "c1": -34.415534435422934, - "c2": -9.887751909493456, - "c3": -33.146204266215406, - "c4": -29.894836165982877, - "c5": -26.941741089671904, - "c6": -24.342473025916647, - "c7": 18.96019331513729 + "points": { + "c1": 4.473746432370632, + "c2": 17.991817320451005, + "c3": 2.238138150092965, + "c4": 33.663112465447995, + "c5": 6.94715083556283, + "c6": 20.632846891611003, + "c7": 21.92135914771665 }, - "vertexSeeds": { - "c1": 1.094389235619048, - "c2": 1.2623434586072035, - "c3": 1.1737423356474432, - "c4": 1.1678873987309464, - "c5": 1.26973654666782, - "c6": 1.1141136163155887, - "c7": 1.273080652939016 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948685, + "c3": 1.5487748497457228, + "c4": 1.2390198797965783, + "c5": 0.9292649098474343, + "c6": 0.6195099398982886, + "c7": 0.3097549699491443 }, "rgb": [86, 146, 138] }, @@ -100500,23 +100500,23 @@ "year": 1733, "resistanceReported": false, "duration": 777600, - "curveSeeds": { - "c1": -6.350149372285885, - "c2": -2.3344206308630913, - "c3": -1.7561353978710734, - "c4": 4.105882240509274, - "c5": 5.2345369614250075, - "c6": -3.1857721124355587, - "c7": -1.0544975832186498 + "points": { + "c1": 12.59822871022542, + "c2": -9.10424847027754, + "c3": -11.501994924654333, + "c4": -3.780261118164839, + "c5": -6.717383210903798, + "c6": 4.859684260304416, + "c7": 6.7127069240258415 }, - "vertexSeeds": { - "c1": 4.058943899037333, - "c2": 4.098992928118588, - "c3": 3.8994549988088485, - "c4": 4.441304792109376, - "c5": 4.271705173991759, - "c6": 4.000574940152762, - "c7": 4.19172378784872 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -100527,23 +100527,23 @@ "year": 1734, "resistanceReported": false, "duration": 53049600, - "curveSeeds": { - "c1": 34.0989437323378, - "c2": -10.302034729437253, - "c3": -28.837397769543195, - "c4": 51.06989858753563, - "c5": 8.107397450036302, - "c6": 6.713431050232543, - "c7": 46.17746993852401 + "points": { + "c1": 68.31321741457938, + "c2": 6.238248031370659, + "c3": -55.47528272004506, + "c4": 28.9797337911735, + "c5": -69.48885027266235, + "c6": 39.81117408361327, + "c7": -30.0248886581684 }, - "vertexSeeds": { - "c1": 5.289399044358367, - "c2": 6.315714432499831, - "c3": 6.341547350558451, - "c4": 5.235675737145032, - "c5": 6.024958790705027, - "c6": 5.6357641094398, - "c7": 5.243001362706963 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661579, + "c4": 6.15811373092926, + "c5": 4.618585298196953, + "c6": 3.079056865464635, + "c7": 1.5395284327323175 }, "rgb": [238, 201, 159] }, @@ -100554,23 +100554,23 @@ "year": 1733, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -34.36343586392815, - "c2": 17.22692087718614, - "c3": 19.626520342120024, - "c4": -4.641484642149287, - "c5": 38.22801939579235, - "c6": 0.7094629647008404, - "c7": 8.67227946371164 + "points": { + "c1": -6.042044598934751, + "c2": 40.024407414348964, + "c3": 20.42943925678204, + "c4": 33.05994474171893, + "c5": 39.5886158701224, + "c6": -2.2951393695421984, + "c7": 29.0920931859497 }, - "vertexSeeds": { - "c1": 5.391566130197901, - "c2": 4.8985826595312565, - "c3": 5.4097090798443705, - "c4": 4.873786775005171, - "c5": 5.382854813068491, - "c6": 5.298129046419749, - "c7": 5.467718541542877 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423026, + "c3": 6.564956079519191, + "c4": 5.251964863615339, + "c5": 3.938973647711505, + "c6": 2.6259824318076697, + "c7": 1.3129912159038348 }, "rgb": [58, 15, 49] }, @@ -100581,23 +100581,23 @@ "year": 1734, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 46.637253143614046, - "c2": -13.55058440795571, - "c3": 36.77660904798874, - "c4": 48.77498382411409, - "c5": -44.26908894373358, - "c6": -48.409559898577605, - "c7": -18.762688054662632 + "points": { + "c1": -38.14326338895766, + "c2": 28.400122277952548, + "c3": 49.155773000863775, + "c4": 4.264373380524937, + "c5": -17.39371273918057, + "c6": 19.140910907912158, + "c7": 24.466707256936104 }, - "vertexSeeds": { - "c1": 8.167973601338407, - "c2": 8.72244717246578, - "c3": 7.954458604228314, - "c4": 8.802406027244704, - "c5": 7.894430064220733, - "c6": 8.209990117799872, - "c7": 8.746995052086694 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300969, + "c3": 10.517799352750805, + "c4": 8.41423948220064, + "c5": 6.310679611650493, + "c6": 4.207119741100328, + "c7": 2.103559870550164 }, "rgb": [86, 146, 138] }, @@ -100608,23 +100608,23 @@ "year": 1733, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 17.818508701381013, - "c2": -18.416917583312422, - "c3": 34.42713855169937, - "c4": -34.115299725932296, - "c5": -18.57360664807233, - "c6": 21.429668366353795, - "c7": 20.518741520877157 + "points": { + "c1": -16.120222399935106, + "c2": 6.239189605636831, + "c3": 37.069266000637555, + "c4": 24.346750451741805, + "c5": 5.858531337376654, + "c6": 28.203102496343277, + "c7": -20.158358995806843 }, - "vertexSeeds": { - "c1": 10.75730801351688, - "c2": 10.986791543165909, - "c3": 10.887268595969939, - "c4": 10.283325479763057, - "c5": 10.498045081817391, - "c6": 10.445126182022749, - "c7": 10.731072998637448 + "offsets": { + "c1": 18.7378640776699, + "c2": 16.061026352288494, + "c3": 13.384188626907083, + "c4": 10.707350901525672, + "c5": 8.030513176144229, + "c6": 5.353675450762819, + "c7": 2.6768377253814095 }, "rgb": [238, 201, 159] }, @@ -100635,23 +100635,23 @@ "year": 1734, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": 45.70106111352435, - "c2": -50.527747484849165, - "c3": 34.393228915076506, - "c4": -28.881067068927237, - "c5": 50.366701074606496, - "c6": 23.55263607027463, - "c7": 31.746012664177755 + "points": { + "c1": -16.567846517364664, + "c2": 36.72898511150012, + "c3": -37.607827930849325, + "c4": 43.918784570099646, + "c5": 40.4106638529405, + "c6": 0.005551323125345675, + "c7": -13.895141166037192 }, - "vertexSeeds": { - "c1": 10.141678509782782, - "c2": 10.120255031501424, - "c3": 9.554243429956836, - "c4": 10.237393865956971, - "c5": 10.313101193806855, - "c6": 10.127239655572758, - "c7": 9.372067211896027 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.84049930651873, + "c3": 12.367082755432286, + "c4": 9.893666204345822, + "c5": 7.420249653259357, + "c6": 4.946833102172911, + "c7": 2.473416551086464 }, "rgb": [86, 146, 138] }, @@ -100662,23 +100662,23 @@ "year": 1735, "resistanceReported": false, "duration": 63072000, - "curveSeeds": { - "c1": -78.56402468366895, - "c2": -60.89755428819093, - "c3": -17.706747611505833, - "c4": 3.269638154231032, - "c5": -70.4223225208168, - "c6": 73.16806473249497, - "c7": -28.63841578196758 + "points": { + "c1": 72.1951780004789, + "c2": 0.3484504085749194, + "c3": -23.080125606922024, + "c4": -79.56400324947562, + "c5": 72.8349150845738, + "c6": 18.93013836029718, + "c7": -56.95987553383582 }, - "vertexSeeds": { - "c1": 5.886420815998773, - "c2": 5.775354098710914, - "c3": 5.723841340076424, - "c4": 6.344847429574374, - "c5": 6.056152582561046, - "c6": 5.947379245192744, - "c7": 6.132558498120623 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353668, + "c3": 7.674526121128065, + "c4": 6.139620896902445, + "c5": 4.604715672676842, + "c6": 3.0698104484512223, + "c7": 1.5349052242256194 }, "rgb": [58, 15, 49] }, @@ -100689,23 +100689,23 @@ "year": 1734, "resistanceReported": false, "duration": 62294400, - "curveSeeds": { - "c1": -75.81238650107397, - "c2": -10.612375584138746, - "c3": 77.5810968650352, - "c4": 17.578736354871324, - "c5": 67.82207372608401, - "c6": 73.92366523015828, - "c7": -10.017981540509453 + "points": { + "c1": 60.2413838588413, + "c2": 59.184719090319376, + "c3": -43.42267036325122, + "c4": 56.72126037942935, + "c5": -33.245875404130395, + "c6": 63.86500852530956, + "c7": 60.05137552514175 }, - "vertexSeeds": { - "c1": 9.647037378098961, - "c2": 10.097023114164111, - "c3": 9.334652445672878, - "c4": 9.182913672401371, - "c5": 10.07044492564436, - "c6": 9.90524007963053, - "c7": 9.359412055629214 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.6740638002774, + "c3": 12.228386500231162, + "c4": 9.782709200184923, + "c5": 7.3370319001387, + "c6": 4.891354600092476, + "c7": 2.445677300046238 }, "rgb": [58, 15, 49] }, @@ -100716,23 +100716,23 @@ "year": 1733, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -11.462188258792974, - "c2": -26.338329625877055, - "c3": 19.654369212620907, - "c4": -14.812406644440708, - "c5": -23.794976207904014, - "c6": 25.374388447152022, - "c7": 10.433601080715306 + "points": { + "c1": -21.77400776100515, + "c2": -30.28529621983247, + "c3": 29.331085632115425, + "c4": -11.688052707020073, + "c5": -3.9062683120788293, + "c6": -3.873974858057437, + "c7": 26.361552147521834 }, - "vertexSeeds": { - "c1": 3.2037534360790993, - "c2": 3.019346514882385, - "c3": 2.961797224602784, - "c4": 2.910661409036532, - "c5": 3.2007689666672006, - "c6": 3.01861277539962, - "c7": 3.0678183058352135 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -100743,23 +100743,23 @@ "year": 1734, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -41.706458966351626, - "c2": -38.75362905779288, - "c3": 23.8728531615563, - "c4": 13.584413257659918, - "c5": -8.310495144107392, - "c6": 23.518145446590474, - "c7": -37.20434575181876 + "points": { + "c1": 41.204161813750055, + "c2": 33.279657564668945, + "c3": -25.214062565620022, + "c4": -8.218130907801388, + "c5": -18.42413053474597, + "c6": 28.647420518430472, + "c7": -40.70828016135277 }, - "vertexSeeds": { - "c1": 2.5686693937475455, - "c2": 2.487564541949124, - "c3": 2.3623848025945584, - "c4": 2.553558660942565, - "c5": 2.5226753822116588, - "c6": 2.5051614091622447, - "c7": 2.5202961516751796 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [58, 15, 49] }, @@ -100770,23 +100770,23 @@ "year": 1734, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -7.1733791507571, - "c2": -36.26396782195205, - "c3": 42.307871451669726, - "c4": 14.187222724698195, - "c5": -10.317616633932559, - "c6": -37.946056732502, - "c7": 11.533187930576624 + "points": { + "c1": -28.30608553821658, + "c2": -36.96161198630911, + "c3": -25.514255226379824, + "c4": -31.354671328407186, + "c5": -6.684319501378845, + "c6": 16.75763792154647, + "c7": -15.472994584464423 }, - "vertexSeeds": { - "c1": 2.9379850724709113, - "c2": 3.0242291142523983, - "c3": 3.2082307810750663, - "c4": 3.144453153451989, - "c5": 3.13817009967722, - "c6": 3.225679187447363, - "c7": 3.2494326609167654 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [58, 15, 49] }, @@ -100797,23 +100797,23 @@ "year": 1733, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -23.90604227101516, - "c2": 31.190730467957806, - "c3": -11.011364903510856, - "c4": 9.428464992775034, - "c5": 21.293888295654682, - "c6": -16.90886165950334, - "c7": 10.496301771318606 + "points": { + "c1": 41.50383008490907, + "c2": 3.2198377216572425, + "c3": 10.624407332028966, + "c4": -21.1281880384183, + "c5": 28.365007304642035, + "c6": -13.803964545029384, + "c7": -7.015706646298973 }, - "vertexSeeds": { - "c1": 6.941899605535803, - "c2": 6.81771814648879, - "c3": 6.799679821263013, - "c4": 6.825000918666471, - "c5": 6.844935230174483, - "c6": 6.9454321413783315, - "c7": 6.889191992810231 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447987, + "c3": 8.321775312066602, + "c4": 6.65742024965327, + "c5": 4.993065187239935, + "c6": 3.328710124826601, + "c7": 1.6643550624133339 }, "rgb": [77, 76, 132] }, @@ -100824,23 +100824,23 @@ "year": 1733, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -1.2240706373341155, - "c2": 32.42378366773602, - "c3": -10.181042655873785, - "c4": -7.8724669602327, - "c5": 25.67776821535295, - "c6": -31.333291040210273, - "c7": -25.012922589425195 + "points": { + "c1": -4.072931907572119, + "c2": 26.282943128760863, + "c3": 20.529187819577302, + "c4": 23.27538898230805, + "c5": -12.871212448736685, + "c6": 26.70427741876992, + "c7": -7.134407292294185 }, - "vertexSeeds": { - "c1": 12.932944913164686, - "c2": 12.163927368799595, - "c3": 12.076331175098113, - "c4": 13.038138699596619, - "c5": 13.162965157791763, - "c6": 12.683182142848214, - "c7": 12.307869642381473 + "offsets": { + "c1": 22.265372168284788, + "c2": 19.084604715672686, + "c3": 15.903837263060558, + "c4": 12.72306981044846, + "c5": 9.542302357836359, + "c6": 6.36153490522423, + "c7": 3.180767452612129 }, "rgb": [58, 15, 49] }, @@ -100851,23 +100851,23 @@ "year": 1734, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": 30.99037445248033, - "c2": 17.06262015301288, - "c3": 48.355715920303616, - "c4": 21.39020762896596, - "c5": 50.05614093621211, - "c6": -18.222589136056754, - "c7": -18.711230074367663 + "points": { + "c1": 44.56402480843045, + "c2": -4.559281144367574, + "c3": -25.897010016783824, + "c4": -16.149559758647385, + "c5": 41.027622364196965, + "c6": -56.97744535659015, + "c7": -34.320938089989426 }, - "vertexSeeds": { - "c1": 1.8781708942125563, - "c2": 2.121555821760929, - "c3": 2.1530738348233966, - "c4": 1.8780115399897412, - "c5": 1.8274703007491602, - "c6": 2.137553398935986, - "c7": 2.0156458807396502 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048548, + "c3": 2.588996763754046, + "c4": 2.0711974110032374, + "c5": 1.553398058252426, + "c6": 1.0355987055016174, + "c7": 0.5177993527508087 }, "rgb": [58, 15, 49] }, @@ -100878,23 +100878,23 @@ "year": 1735, "resistanceReported": false, "duration": 62553600, - "curveSeeds": { - "c1": -64.4554593484336, - "c2": 21.964245836036454, - "c3": -25.60557771490022, - "c4": -38.04951852130602, - "c5": 30.54580811027067, - "c6": -73.18388277392438, - "c7": -12.774999965240042 + "points": { + "c1": 58.70858798716077, + "c2": 50.64781800849454, + "c3": -23.875161975041458, + "c4": 37.62974067847162, + "c5": -57.28439124113113, + "c6": 78.96231883185914, + "c7": -25.95270181974024 }, - "vertexSeeds": { - "c1": 0.0859957579625684, - "c2": 0.09379645742546466, - "c3": 0.09493015519977502, - "c4": 0.08506906461583408, - "c5": 0.09225973558425074, - "c6": 0.07972093313317796, - "c7": 0.08482143430306567 + "offsets": { + "c1": 0.1941747572815534, + "c2": 0.16643550624133144, + "c3": 0.13869625520110954, + "c4": 0.11095700416088758, + "c5": 0.08321775312066564, + "c6": 0.05547850208044388, + "c7": 0.027739251040221766 }, "rgb": [77, 76, 132] }, @@ -100905,23 +100905,23 @@ "year": 1733, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 26.492005916617195, - "c2": 10.72155734044248, - "c3": -27.13290981445779, - "c4": -10.460055351822533, - "c5": 8.591380503001211, - "c6": 25.145061704495937, - "c7": 7.036227382283151 + "points": { + "c1": 15.213712372002576, + "c2": -12.522683343356167, + "c3": 5.337794947784133, + "c4": 23.445454751563375, + "c5": 22.612129885686237, + "c6": 13.376001508578781, + "c7": -10.184898682566995 }, - "vertexSeeds": { - "c1": 4.984427009397368, - "c2": 4.421270061844091, - "c3": 5.211276264698525, - "c4": 4.254133328588606, - "c5": 4.630937083165704, - "c6": 5.019538650594856, - "c7": 4.448902996735068 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -100932,23 +100932,23 @@ "year": 1734, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 5.791748145822453, - "c2": 1.0935010324468806, - "c3": 28.66659306812197, - "c4": -10.0426725410951, - "c5": 29.149820851334, - "c6": 26.16125213187911, - "c7": -21.767128466996645 + "points": { + "c1": -30.491313289950927, + "c2": 18.723346438554408, + "c3": -34.01118538982339, + "c4": -10.33576430316149, + "c5": -34.075270038995654, + "c6": 15.500407294208117, + "c7": -34.74262744998991 }, - "vertexSeeds": { - "c1": 5.124858623073419, - "c2": 4.273093010753863, - "c3": 4.302411103813041, - "c4": 4.555178979813539, - "c5": 4.916092656758699, - "c6": 4.246386197265673, - "c7": 4.395486688594974 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -100959,23 +100959,23 @@ "year": 1734, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 11.233134725846583, - "c2": -13.64352094447963, - "c3": -23.591875411658272, - "c4": -13.790252727538409, - "c5": -20.28034125419134, - "c6": -0.7486093961292539, - "c7": 9.409788657463906 + "points": { + "c1": -21.578429890632897, + "c2": -15.231064684315687, + "c3": 25.613241249028405, + "c4": 14.048921928350246, + "c5": -12.95011221850719, + "c6": -20.252434992522385, + "c7": 11.704579580504593 }, - "vertexSeeds": { - "c1": 15.709627302832315, - "c2": 15.75477442035635, - "c3": 15.788097232941993, - "c4": 15.036554572912294, - "c5": 15.308990662739442, - "c6": 14.873775661899248, - "c7": 15.215174150721694 + "offsets": { + "c1": 26.407766990291265, + "c2": 22.635228848821097, + "c3": 18.862690707350882, + "c4": 15.090152565880716, + "c5": 11.317614424410548, + "c6": 7.545076282940381, + "c7": 3.772538141470167 }, "rgb": [238, 201, 159] }, @@ -100986,23 +100986,23 @@ "year": 1734, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -12.912772426610914, - "c2": 7.433114611687074, - "c3": -7.32723193688965, - "c4": -9.49750386762469, - "c5": 21.76668098701206, - "c6": 3.627558422597609, - "c7": -10.951692399240155 + "points": { + "c1": -39.44888012021076, + "c2": -27.48993147396294, + "c3": -26.063645990215754, + "c4": 26.439257181916474, + "c5": -8.709073552966082, + "c6": 29.9521690915674, + "c7": -22.090355811122333 }, - "vertexSeeds": { - "c1": 2.954687126578856, - "c2": 3.0848944410945354, - "c3": 3.0695595909242757, - "c4": 3.155020148883183, - "c5": 2.8675624598332536, - "c6": 3.369430543562517, - "c7": 3.1847318622775047 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159503, + "c3": 4.114655570966254, + "c4": 3.2917244567729997, + "c5": 2.4687933425797515, + "c6": 1.6458622283865025, + "c7": 0.8229311141932538 }, "rgb": [222, 0, 59] }, @@ -101013,23 +101013,23 @@ "year": 1734, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -25.137781174373153, - "c2": 1.9027282871305005, - "c3": 25.569472354614895, - "c4": 23.423841474382122, - "c5": -28.20288081453852, - "c6": -4.114515728353091, - "c7": 4.2466144996252595 + "points": { + "c1": 13.810182830461706, + "c2": -4.811654118755541, + "c3": -37.16023612500867, + "c4": 12.681949813867789, + "c5": -19.152288186224304, + "c6": 11.2920408436471, + "c7": 28.77692677909846 }, - "vertexSeeds": { - "c1": 8.949056103029228, - "c2": 9.232058066694334, - "c3": 9.087227543567185, - "c4": 9.301511940689426, - "c5": 9.101150434771263, - "c6": 9.101162806964274, - "c7": 9.866542501453527 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156717, + "c3": 12.159038372630613, + "c4": 9.727230698104481, + "c5": 7.295423023578365, + "c6": 4.863615349052248, + "c7": 2.4318076745261177 }, "rgb": [238, 201, 159] }, @@ -101040,23 +101040,23 @@ "year": 1734, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -25.591532046781925, - "c2": -37.50600928727329, - "c3": 17.249020052177052, - "c4": 32.48566026337547, - "c5": 41.15874602897325, - "c6": -38.5390325392068, - "c7": 3.1182214536165134 + "points": { + "c1": -33.07266920594815, + "c2": 33.38556279474613, + "c3": 13.51528300891573, + "c4": 43.82705987148528, + "c5": -36.65107378232, + "c6": -13.88701909609857, + "c7": 27.112225885428224 }, - "vertexSeeds": { - "c1": 2.8847694695224284, - "c2": 2.8808813940950175, - "c3": 2.887287708283278, - "c4": 3.0233983654208036, - "c5": 3.066767033044362, - "c6": 3.0020366758176515, - "c7": 2.98690221819895 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299554, + "c4": 2.995839112343974, + "c5": 2.24687933425798, + "c6": 1.497919556171987, + "c7": 0.7489597780859935 }, "rgb": [238, 201, 159] }, @@ -101067,23 +101067,23 @@ "year": 1734, "resistanceReported": true, "duration": 23241600, - "curveSeeds": { - "c1": 3.7330991337612858, - "c2": 16.76032387325715, - "c3": 30.439675165894208, - "c4": -14.789766089186447, - "c5": -34.82530114519269, - "c6": -21.95392927142882, - "c7": -22.438698710770694 + "points": { + "c1": -1.2688898798541928, + "c2": -34.29881402046369, + "c3": 15.171634995252624, + "c4": -0.5896404910449462, + "c5": -27.001717319012617, + "c6": 25.663936417365512, + "c7": -2.689197408169605 }, - "vertexSeeds": { - "c1": 5.921717578764344, - "c2": 6.051771155858793, - "c3": 5.869434118052228, - "c4": 6.000302628921469, - "c5": 5.971078130222339, - "c6": 6.0267790805054045, - "c7": 5.902023700081016 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589478, + "c3": 7.23532131299121, + "c4": 5.788257050392986, + "c5": 4.341192787794718, + "c6": 2.894128525196493, + "c7": 1.4470642625982244 }, "rgb": [58, 15, 49] }, @@ -101094,23 +101094,23 @@ "year": 1734, "resistanceReported": true, "duration": 29462400, - "curveSeeds": { - "c1": -38.605690676441256, - "c2": -12.126334246256423, - "c3": -8.129815932398522, - "c4": -16.75499588931641, - "c5": -12.200867019289202, - "c6": 3.403301545306803, - "c7": 38.302138272327355 + "points": { + "c1": 31.000181555229474, + "c2": 18.700379995399025, + "c3": 22.816652827021187, + "c4": 26.360698971107595, + "c5": -14.792186235375947, + "c6": -5.943184718814678, + "c7": 24.980582435582704 }, - "vertexSeeds": { - "c1": 1.9974550392503412, - "c2": 2.241463550869323, - "c3": 1.9455609020378608, - "c4": 2.093523723364842, - "c5": 1.9521842681001946, - "c6": 2.145930022228919, - "c7": 2.194638023540892 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266295, + "c3": 2.773925104022192, + "c4": 2.219140083217754, + "c5": 1.6643550624133163, + "c6": 1.1095700416088783, + "c7": 0.5547850208044406 }, "rgb": [86, 146, 138] }, @@ -101121,23 +101121,23 @@ "year": 1734, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 14.59153208028015, - "c2": 26.316351314072644, - "c3": 20.930797686648948, - "c4": -29.123418213323973, - "c5": -13.93534759892789, - "c6": -17.102892753051194, - "c7": -19.23537462203336 + "points": { + "c1": -18.02912721982159, + "c2": -8.961598022556228, + "c3": 20.480732347107583, + "c4": -4.416619345202768, + "c5": -13.39524614072915, + "c6": 23.180909689409994, + "c7": 13.281202436125817 }, - "vertexSeeds": { - "c1": 6.114395874007372, - "c2": 5.661033177886533, - "c3": 6.053929638642544, - "c4": 5.757635194177175, - "c5": 6.279121573894051, - "c6": 5.869674384750416, - "c7": 5.8215607181519 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -101148,23 +101148,23 @@ "year": 1734, "resistanceReported": false, "duration": 48816000, - "curveSeeds": { - "c1": 46.23874747767824, - "c2": 54.200313870205015, - "c3": 39.36385502382519, - "c4": -39.04451709102051, - "c5": 24.778272690710743, - "c6": -31.97107863247174, - "c7": 15.773409169504369 + "points": { + "c1": 47.01395166688289, + "c2": -25.72593173997516, + "c3": 53.00436099902049, + "c4": -6.865486722851742, + "c5": 18.079026682437842, + "c6": -0.43239635856052416, + "c7": 37.22337262594334 }, - "vertexSeeds": { - "c1": 4.90632587528807, - "c2": 4.79440848465874, - "c3": 5.039877020352645, - "c4": 4.92030144372214, - "c5": 5.022305287154861, - "c6": 5.166079472920282, - "c7": 4.698826299863428 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819695, + "c3": 6.2182154415164135, + "c4": 4.97457235321313, + "c5": 3.7309292649098476, + "c6": 2.487286176606565, + "c7": 1.2436430883032825 }, "rgb": [222, 0, 59] }, @@ -101175,23 +101175,23 @@ "year": 1734, "resistanceReported": true, "duration": 22809600, - "curveSeeds": { - "c1": -31.812219021461388, - "c2": 34.488824630808566, - "c3": 5.745094145385664, - "c4": -31.88280005374859, - "c5": -33.969920243107076, - "c6": -14.13311862236009, - "c7": 18.178990364021914 + "points": { + "c1": 25.970796935224044, + "c2": -30.651172153892382, + "c3": -33.07270639050106, + "c4": 30.94937588195242, + "c5": 31.053464420446204, + "c6": -4.676461653645262, + "c7": -28.28915100385313 }, - "vertexSeeds": { - "c1": 6.907099027678811, - "c2": 7.518146262864803, - "c3": 6.614519682678538, - "c4": 6.857082923036099, - "c5": 6.71151732913906, - "c6": 7.132036935157994, - "c7": 6.7999986037470945 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.09570041608876, + "c3": 9.24641701340731, + "c4": 7.397133610725845, + "c5": 5.54785020804438, + "c6": 3.6985668053629164, + "c7": 1.8492834026814642 }, "rgb": [238, 201, 159] }, @@ -101202,23 +101202,23 @@ "year": 1734, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 6.488197817155381, - "c2": 1.1419912221315798, - "c3": -24.490404888347772, - "c4": 30.328143666895187, - "c5": -24.056283651866146, - "c6": -27.234465942620634, - "c7": -4.040904636525113 + "points": { + "c1": 33.56949080784695, + "c2": -34.880119951650116, + "c3": 10.340349943936594, + "c4": -29.58337050184354, + "c5": -8.195325070355043, + "c6": -25.532939930971473, + "c7": 28.50857792298531 }, - "vertexSeeds": { - "c1": 7.714717083581271, - "c2": 7.561620290051485, - "c3": 7.539799814014409, - "c4": 7.610292398420658, - "c5": 7.551907707795003, - "c6": 7.516028326257106, - "c7": 7.644699334124089 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169206, + "c3": 9.29264909847433, + "c4": 7.434119278779457, + "c5": 5.575589459084623, + "c6": 3.717059639389748, + "c7": 1.858529819694874 }, "rgb": [58, 15, 49] }, @@ -101229,23 +101229,23 @@ "year": 1734, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -10.905140666578102, - "c2": -27.12218825512393, - "c3": 10.33157686922561, - "c4": 0.40757285076971783, - "c5": -18.915589488895684, - "c6": -0.7851279380116551, - "c7": -13.640693092996688 + "points": { + "c1": 2.6774165565078043, + "c2": 30.655244030874282, + "c3": -30.86084871699272, + "c4": 26.334799297495177, + "c5": -25.42159471756828, + "c6": 8.787264745388395, + "c7": -16.252245942347514 }, - "vertexSeeds": { - "c1": 4.469632885889049, - "c2": 4.79522685902195, - "c3": 4.483244288879089, - "c4": 5.056369523570299, - "c5": 5.05949248023707, - "c6": 4.935522238833066, - "c7": 4.976786817225917 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -101256,23 +101256,23 @@ "year": 1734, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 18.144337952057306, - "c2": -0.37178708186581844, - "c3": -23.35204980735594, - "c4": 9.373077188194905, - "c5": -1.066361468063178, - "c6": -15.784321666620988, - "c7": -11.694172541079553 + "points": { + "c1": 28.598648448030723, + "c2": -27.489453053837522, + "c3": 16.289668245505432, + "c4": 21.229507828602202, + "c5": -21.645495966399682, + "c6": 19.02769337504143, + "c7": 19.883299865785254 }, - "vertexSeeds": { - "c1": 2.607952313503383, - "c2": 2.5024275181578335, - "c3": 2.645492282335917, - "c4": 2.4210564751676027, - "c5": 2.85455623544435, - "c6": 2.7908876638473936, - "c7": 2.677117844746368 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.467406380027737, + "c4": 2.7739251040221906, + "c5": 2.080443828016644, + "c6": 1.3869625520110977, + "c7": 0.6934812760055465 }, "rgb": [77, 76, 132] }, @@ -101283,23 +101283,23 @@ "year": 1735, "resistanceReported": false, "duration": 59702400, - "curveSeeds": { - "c1": 8.768126176168266, - "c2": -74.25499153664167, - "c3": -0.5568696269487532, - "c4": 48.429464788306674, - "c5": 32.3013589857827, - "c6": 53.980220377719704, - "c7": 12.157111068508328 + "points": { + "c1": 49.846817671810285, + "c2": 48.18402990364744, + "c3": 16.152170740927346, + "c4": 38.667357152537775, + "c5": 62.91729526495082, + "c6": -4.088381943680574, + "c7": 24.793848537778217 }, - "vertexSeeds": { - "c1": 4.989508226033303, - "c2": 5.0791431488010215, - "c3": 5.328540484523151, - "c4": 5.164501017024776, - "c5": 5.248579274212422, - "c6": 5.058417006912499, - "c7": 5.01513485935553 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101246, + "c3": 6.380027739251034, + "c4": 5.104022191400843, + "c5": 3.828016643550632, + "c6": 2.5520110957004216, + "c7": 1.2760055478502108 }, "rgb": [222, 0, 59] }, @@ -101310,23 +101310,23 @@ "year": 1734, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -11.220261731863365, - "c2": 6.471463526908099, - "c3": 8.195487670261667, - "c4": 11.97463553977283, - "c5": 19.142172328523916, - "c6": -14.884987865367114, - "c7": 24.212080133930638 + "points": { + "c1": -28.16672731855469, + "c2": 15.624506925725793, + "c3": -13.31443805711325, + "c4": -6.480420724435419, + "c5": -17.285581710059358, + "c6": -8.15231644874023, + "c7": 27.35342640863063 }, - "vertexSeeds": { - "c1": 2.6214134306236216, - "c2": 2.7638156328343153, - "c3": 2.6320519579378474, - "c4": 2.601945491806237, - "c5": 2.7490314625839436, - "c6": 2.5907981432235156, - "c7": 2.725733249060615 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [58, 15, 49] }, @@ -101337,23 +101337,23 @@ "year": 1734, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -13.32645514008248, - "c2": -5.649995631001488, - "c3": 5.4065110577965285, - "c4": -6.023289837541597, - "c5": -14.220538426699797, - "c6": -19.51033373050548, - "c7": -17.035054694789935 + "points": { + "c1": 29.757571090134007, + "c2": -8.235153174184298, + "c3": -36.92433329381931, + "c4": 23.616693138259762, + "c5": -15.65244643943397, + "c6": 26.54239616339092, + "c7": -15.218926008600867 }, - "vertexSeeds": { - "c1": 5.9883825585557915, - "c2": 6.351336324842743, - "c3": 5.753457764575596, - "c4": 6.244956781899527, - "c5": 5.6141427220979265, - "c6": 5.85740421836074, - "c7": 6.01043291559494 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -101364,23 +101364,23 @@ "year": 1734, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 12.281218679083942, - "c2": 8.586708195403652, - "c3": -18.82460611788585, - "c4": 12.244839177036575, - "c5": -34.49145093359817, - "c6": -34.9761166133828, - "c7": 26.94197039459084 + "points": { + "c1": -11.985588382266084, + "c2": -16.86753992076233, + "c3": 10.157325805994311, + "c4": -35.823600575829225, + "c5": -12.542766404523249, + "c6": -27.167527779857153, + "c7": 7.815932930033874 }, - "vertexSeeds": { - "c1": 1.119302434898833, - "c2": 0.8869162279317786, - "c3": 0.9950730826921446, - "c4": 1.0200003353801244, - "c5": 0.9285238581452351, - "c6": 1.1234856977370304, - "c7": 0.9114864770397393 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.6366158113730924, + "c3": 1.3638465094775776, + "c4": 1.0910772075820616, + "c5": 0.8183079056865468, + "c6": 0.5455386037910308, + "c7": 0.27276930189551496 }, "rgb": [238, 201, 159] }, @@ -101391,23 +101391,23 @@ "year": 1734, "resistanceReported": true, "duration": 27129600, - "curveSeeds": { - "c1": -27.055802326752193, - "c2": 32.642363539201476, - "c3": -19.590320295479472, - "c4": -20.71874356735686, - "c5": -33.00806095625718, - "c6": 22.59414946247243, - "c7": 14.01425484472881 + "points": { + "c1": 9.465489667100613, + "c2": -17.859940663243197, + "c3": -32.69199362209887, + "c4": 20.154364913067035, + "c5": 36.62097401352846, + "c6": -34.73075655518846, + "c7": -14.35628914977136 }, - "vertexSeeds": { - "c1": 7.818560363650715, - "c2": 7.598303286906704, - "c3": 7.537484680717884, - "c4": 7.443606416234644, - "c5": 7.561476300756055, - "c6": 7.437588066342214, - "c7": 7.462268214406363 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249666, + "c3": 9.338881183541373, + "c4": 7.47110494683311, + "c5": 5.603328710124819, + "c6": 3.735552473416555, + "c7": 1.8677762367082915 }, "rgb": [77, 76, 132] }, @@ -101418,23 +101418,23 @@ "year": 1734, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 16.727573844114623, - "c2": 24.046119583545327, - "c3": -29.358623747771617, - "c4": -26.042566205848928, - "c5": -36.56742928778858, - "c6": -8.096467106419702, - "c7": -13.160393579754373 + "points": { + "c1": -13.338337916898478, + "c2": 20.75242909734567, + "c3": -12.586579376852729, + "c4": -34.55197958271981, + "c5": -39.90148533758613, + "c6": 23.211036738874164, + "c7": 1.6840222522356214 }, - "vertexSeeds": { - "c1": 7.857056593651111, - "c2": 8.103403591918134, - "c3": 8.289986450828973, - "c4": 8.89891104468853, - "c5": 8.173040998086352, - "c6": 8.190393077482014, - "c7": 8.04762596665509 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.78779472954231, + "c3": 10.656495607951918, + "c4": 8.525196486361539, + "c5": 6.3938973647711475, + "c6": 4.262598243180769, + "c7": 2.1312991215903914 }, "rgb": [77, 76, 132] }, @@ -101445,23 +101445,23 @@ "year": 1734, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": 54.486525806272454, - "c2": -7.131733239261941, - "c3": -30.12713245057365, - "c4": 11.394143036110492, - "c5": 6.794257314298022, - "c6": 21.8933860320072, - "c7": 49.49813080151034 + "points": { + "c1": 59.21132523506124, + "c2": 46.85869355199932, + "c3": -43.14154549792311, + "c4": 15.143679172003331, + "c5": 11.800753371761232, + "c6": -59.19038466108602, + "c7": -38.30052896373179 }, - "vertexSeeds": { - "c1": 6.4795671895278435, - "c2": 7.104051357323935, - "c3": 6.795065607135032, - "c4": 6.80047586862628, - "c5": 6.737331197708798, - "c6": 6.655307843040815, - "c7": 6.635045440043428 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002773, + "c3": 8.622283865002313, + "c4": 6.897827092001849, + "c5": 5.173370319001386, + "c6": 3.4489135460009246, + "c7": 1.7244567730004623 }, "rgb": [238, 201, 159] }, @@ -101472,23 +101472,23 @@ "year": 1734, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -27.44294578517587, - "c2": -14.05209821203653, - "c3": -3.2861003470811774, - "c4": 31.374535093351255, - "c5": 9.041740693523742, - "c6": 17.649729639038178, - "c7": -0.7590235591085701 + "points": { + "c1": 1.5018896125583225, + "c2": 27.539659687355382, + "c3": -29.176837958048512, + "c4": -17.748417470867338, + "c5": -9.063989417257115, + "c6": -30.586969332643676, + "c7": -20.361939488475873 }, - "vertexSeeds": { - "c1": 2.836899306835213, - "c2": 2.6306362774808942, - "c3": 2.5599040323787645, - "c4": 2.7655538101023307, - "c5": 2.5975905617967605, - "c6": 2.6631860407865524, - "c7": 2.6417922486008423 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [238, 201, 159] }, @@ -101499,23 +101499,23 @@ "year": 1734, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -1.4438658954835049, - "c2": 5.918580996401502, - "c3": 2.794702508744969, - "c4": -14.195174386876783, - "c5": 24.34815994817822, - "c6": 21.54463359349195, - "c7": -29.452492439909328 + "points": { + "c1": 13.566247671761829, + "c2": -27.846478441677398, + "c3": 39.94526726136141, + "c4": -13.004293465843261, + "c5": 38.16229385879218, + "c6": -31.47579007141273, + "c7": -2.1573972961518635 }, - "vertexSeeds": { - "c1": 4.053475763317697, - "c2": 4.0421138226337465, - "c3": 4.391226124415612, - "c4": 3.992548634700642, - "c5": 4.036128329015889, - "c6": 4.451276707898926, - "c7": 4.414394262359196 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -101526,23 +101526,23 @@ "year": 1734, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -0.30642896546186904, - "c2": -39.116644993928006, - "c3": -24.66406234423229, - "c4": -4.5328260745920375, - "c5": -7.035180424536385, - "c6": 19.5877560864483, - "c7": -3.242876131839182 + "points": { + "c1": 24.75583479084556, + "c2": -26.791026635720783, + "c3": -34.28584615477082, + "c4": 41.78490597542706, + "c5": 44.22462071213457, + "c6": 7.054550581277169, + "c7": -15.525587793987683 }, - "vertexSeeds": { - "c1": 11.63356428403246, - "c2": 11.028086396697798, - "c3": 11.240093748032976, - "c4": 11.040857248458884, - "c5": 11.526772514560866, - "c6": 11.695395716415884, - "c7": 11.09448669378211 + "offsets": { + "c1": 19.644012944983817, + "c2": 16.83772538141468, + "c3": 14.03143781784559, + "c4": 11.225150254276453, + "c5": 8.418862690707366, + "c6": 5.612575127138227, + "c7": 2.8062875635690876 }, "rgb": [222, 0, 59] }, @@ -101553,23 +101553,23 @@ "year": 1734, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 5.4596952735054245, - "c2": -29.558437506651213, - "c3": 15.107313697773101, - "c4": 26.243103506778738, - "c5": -17.016518305794662, - "c6": -22.824364063184156, - "c7": 29.40922931661072 + "points": { + "c1": 3.3994300760107876, + "c2": 14.90255843973597, + "c3": -10.39142010680872, + "c4": 20.09958207337685, + "c5": -15.556249435416039, + "c6": 10.740645954412258, + "c7": 2.544056133598559 }, - "vertexSeeds": { - "c1": 4.464096307414831, - "c2": 5.063274157726058, - "c3": 4.487906487984772, - "c4": 4.894624746654521, - "c5": 4.524869242761112, - "c6": 4.530146456221371, - "c7": 4.958446249165662 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900137, + "c3": 6.264447526583446, + "c4": 5.01155802126676, + "c5": 3.7586685159500686, + "c6": 2.5057790106333773, + "c7": 1.252889505316691 }, "rgb": [86, 146, 138] }, @@ -101580,23 +101580,23 @@ "year": 1734, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 15.193645594878326, - "c2": 14.86424464157568, - "c3": -21.898246230985087, - "c4": 22.655232996286216, - "c5": -28.154244980279103, - "c6": -36.945974065943574, - "c7": 1.1409879349810268 + "points": { + "c1": 6.378367501809116, + "c2": 33.72019647407545, + "c3": 15.875200977453659, + "c4": -12.98432080767104, + "c5": 5.568467936097846, + "c6": -31.538376844057964, + "c7": 9.099961486075173 }, - "vertexSeeds": { - "c1": 1.5081466752457398, - "c2": 1.3612616823775208, - "c3": 1.5069317882287239, - "c4": 1.3675417489873019, - "c5": 1.4646033855024514, - "c6": 1.4200625288915125, - "c7": 1.4941530228609246 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.191400832177532, + "c3": 1.8261673601479438, + "c4": 1.4609338881183516, + "c5": 1.0957004160887638, + "c6": 0.7304669440591758, + "c7": 0.3652334720295879 }, "rgb": [77, 76, 132] }, @@ -101607,23 +101607,23 @@ "year": 1734, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 14.567333241883745, - "c2": -4.141572559110621, - "c3": -19.719946503957875, - "c4": 2.9685298178940656, - "c5": 5.006290431940595, - "c6": -10.630304836693062, - "c7": 18.834210104533355 + "points": { + "c1": 9.653713998581075, + "c2": -9.904163950643719, + "c3": 23.749130471787325, + "c4": 15.290339571931838, + "c5": 18.833002218724232, + "c6": 15.921780339115422, + "c7": 17.855529782620728 }, - "vertexSeeds": { - "c1": 4.268758335026896, - "c2": 4.305031965136163, - "c3": 4.762510683726512, - "c4": 5.1645986749601995, - "c5": 4.251424861631547, - "c6": 4.40490627681504, - "c7": 4.623614414846297 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -101634,23 +101634,23 @@ "year": 1734, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 16.53936871003399, - "c2": 17.15442915006254, - "c3": 29.08876750759699, - "c4": -22.715091095140497, - "c5": 12.727177196084455, - "c6": 23.925708881355085, - "c7": -0.9768632668085715 + "points": { + "c1": -9.224734067865185, + "c2": -37.83174622229423, + "c3": 41.54902301423268, + "c4": -2.6995350429841807, + "c5": 32.414588214964674, + "c6": -27.586174351059444, + "c7": 16.365824984166416 }, - "vertexSeeds": { - "c1": 5.512439863622619, - "c2": 6.251078240774389, - "c3": 6.047888050429208, - "c4": 5.975367658622793, - "c5": 6.167083398135696, - "c6": 5.869837034518344, - "c7": 6.063792839282901 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.9875173370319, + "c3": 7.489597780859917, + "c4": 5.991678224687933, + "c5": 4.49375866851595, + "c6": 2.9958391123439667, + "c7": 1.4979195561719834 }, "rgb": [238, 201, 159] }, @@ -101661,23 +101661,23 @@ "year": 1734, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 27.259846530921294, - "c2": 11.775332630769597, - "c3": 37.2199159855147, - "c4": 12.222789165372866, - "c5": -37.34978293000893, - "c6": -22.534755060340085, - "c7": -10.217949587923144 + "points": { + "c1": 26.621242632097875, + "c2": -22.30151126551754, + "c3": 37.15237916211751, + "c4": 33.84880436425192, + "c5": -0.090620968230823, + "c6": -14.315882796175924, + "c7": 28.360325932497247 }, - "vertexSeeds": { - "c1": 4.466532887807828, - "c2": 4.0529323838803055, - "c3": 3.902554459098208, - "c4": 3.9009159321006, - "c5": 4.554009622389547, - "c6": 3.9721208948839246, - "c7": 4.61661473230871 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -101688,23 +101688,23 @@ "year": 1734, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -23.058292972943438, - "c2": 31.96116828210556, - "c3": -9.155558757060398, - "c4": -23.570973728810575, - "c5": 32.13641662785351, - "c6": -30.812085043550315, - "c7": -27.49733823138576 + "points": { + "c1": 15.05319390248546, + "c2": -7.9266958041664, + "c3": 34.02755116562871, + "c4": -18.812058648714327, + "c5": -32.06658495598417, + "c6": -37.8880097449269, + "c7": -24.70956933761813 }, - "vertexSeeds": { - "c1": 9.848756864290847, - "c2": 9.88720991683304, - "c3": 9.800692893582939, - "c4": 9.809507404322876, - "c5": 9.827669418004708, - "c6": 9.884826494351925, - "c7": 9.83589727340436 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.14701803051315, + "c3": 11.789181692094262, + "c4": 9.43134535367537, + "c5": 7.073509015256669, + "c6": 4.715672676837779, + "c7": 2.3578363384188896 }, "rgb": [238, 201, 159] }, @@ -101715,23 +101715,23 @@ "year": 1734, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 9.944174012507602, - "c2": 21.66330750555906, - "c3": 1.7276751026002586, - "c4": 20.077146948911945, - "c5": 21.418656518423376, - "c6": 13.190372753701915, - "c7": -6.366969451382836 + "points": { + "c1": 11.600210456673516, + "c2": -26.72775119477886, + "c3": -21.418039847726355, + "c4": 18.703674057558224, + "c5": 23.69278032910421, + "c6": 19.878552004386933, + "c7": 16.908743956889992 }, - "vertexSeeds": { - "c1": 6.888387502535744, - "c2": 7.160086756443751, - "c3": 6.944116629472328, - "c4": 7.059794823335228, - "c5": 7.25452896919637, - "c6": 6.9027667005108055, - "c7": 6.847058504068568 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485436, + "c3": 8.899676375404532, + "c4": 7.119741100323624, + "c5": 5.339805825242718, + "c6": 3.559870550161812, + "c7": 1.779935275080906 }, "rgb": [58, 15, 49] }, @@ -101742,23 +101742,23 @@ "year": 1735, "resistanceReported": false, "duration": 53136000, - "curveSeeds": { - "c1": -29.572272280951324, - "c2": 14.346590575036402, - "c3": 57.56370573352136, - "c4": -61.142042417484795, - "c5": 66.67545819517329, - "c6": 62.09741342149391, - "c7": 52.090081939250425 + "points": { + "c1": 54.26628101033293, + "c2": -0.7549112924233441, + "c3": 42.09122297852903, + "c4": 61.889230167396505, + "c5": -14.570650008794878, + "c6": -51.96142433561768, + "c7": -55.00030857664636 }, - "vertexSeeds": { - "c1": 8.747365453255183, - "c2": 8.335747372246228, - "c3": 8.530669119677814, - "c4": 7.760247455353106, - "c5": 8.894942606731888, - "c6": 8.09778966084181, - "c7": 8.19428002185585 + "offsets": { + "c1": 15.436893203883495, + "c2": 13.231622746185854, + "c3": 11.026352288488214, + "c4": 8.821081830790574, + "c5": 6.615811373092922, + "c6": 4.4105409153952815, + "c7": 2.2052704576976407 }, "rgb": [77, 76, 132] }, @@ -101769,23 +101769,23 @@ "year": 1734, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -7.739866091383657, - "c2": -16.506260970072084, - "c3": 35.00579560006473, - "c4": -12.69643985211334, - "c5": -17.873837346492515, - "c6": -25.446185636257475, - "c7": 9.520399109864016 + "points": { + "c1": -9.107569422273869, + "c2": 11.048273505271865, + "c3": 30.010004070795816, + "c4": -3.3057386086577907, + "c5": -38.43102915319331, + "c6": 0.059072298912738574, + "c7": 6.658453380150561 }, - "vertexSeeds": { - "c1": 3.8518042087465525, - "c2": 4.448195199725085, - "c3": 4.448846942152601, - "c4": 4.042347330064199, - "c5": 3.973137837767619, - "c6": 4.038297844826505, - "c7": 4.25393439654797 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.6851595006934845, + "c3": 5.570966250577903, + "c4": 4.45677300046232, + "c5": 3.3425797503467423, + "c6": 2.228386500231165, + "c7": 1.1141932501155825 }, "rgb": [77, 76, 132] }, @@ -101796,23 +101796,23 @@ "year": 1734, "resistanceReported": false, "duration": 8985600, - "curveSeeds": { - "c1": 3.0033709147952763, - "c2": 3.0301382067869547, - "c3": 1.3614855260646443, - "c4": -4.949342086096538, - "c5": -18.76744215263059, - "c6": -11.338494060584901, - "c7": -5.920955294221926 + "points": { + "c1": -9.009695952099786, + "c2": -1.2460702140968571, + "c3": 18.201053267947707, + "c4": 10.265685222548171, + "c5": 19.865414211551986, + "c6": -16.180134719907237, + "c7": -10.109970630041833 }, - "vertexSeeds": { - "c1": 2.7135130813513815, - "c2": 2.7364611940415453, - "c3": 2.6685737301155807, - "c4": 2.6586346126957734, - "c5": 2.6830543504385553, - "c6": 2.5229082278186645, - "c7": 2.5250929428198696 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751733, + "c3": 3.305594082293111, + "c4": 2.6444752658344886, + "c5": 1.9833564493758664, + "c6": 1.3222376329172443, + "c7": 0.6611188164586221 }, "rgb": [86, 146, 138] }, @@ -101823,23 +101823,23 @@ "year": 1734, "resistanceReported": true, "duration": 29289600, - "curveSeeds": { - "c1": 16.27905355694932, - "c2": -29.5760685483368, - "c3": 20.495457165561106, - "c4": 15.450998565831746, - "c5": 34.156441569978, - "c6": 21.363256476836412, - "c7": -27.466488033759617 + "points": { + "c1": -2.099342503308769, + "c2": -19.46061792282159, + "c3": -28.249325058390475, + "c4": -31.95464701739113, + "c5": 18.817943873009085, + "c6": 31.825681441087426, + "c7": -2.7205885319863157 }, - "vertexSeeds": { - "c1": 8.23608933684429, - "c2": 8.541668034204443, - "c3": 8.127850430895405, - "c4": 8.686210656567322, - "c5": 8.062130194541002, - "c6": 8.982605288073591, - "c7": 8.441731964627255 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306516, + "c3": 11.095700416088764, + "c4": 8.87656033287101, + "c5": 6.657420249653258, + "c6": 4.438280166435505, + "c7": 2.2191400832177526 }, "rgb": [86, 146, 138] }, @@ -101850,23 +101850,23 @@ "year": 1734, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 28.32181264770672, - "c2": 20.168443123716095, - "c3": 8.509591604938393, - "c4": -24.584307851684084, - "c5": 20.237168137774248, - "c6": 10.52566804779434, - "c7": 31.529754476463424 + "points": { + "c1": -30.84594354027923, + "c2": -13.120296118936526, + "c3": -0.14377588924940454, + "c4": -19.70938156044129, + "c5": 4.599655346928614, + "c6": 10.119262368846947, + "c7": 30.111846213743775 }, - "vertexSeeds": { - "c1": 4.641198705897289, - "c2": 4.9490077846537925, - "c3": 4.655573200448301, - "c4": 4.593840126981785, - "c5": 4.563824892056069, - "c6": 4.5969504306878015, - "c7": 4.867534150735362 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.2676837725381365, + "c3": 6.056403143781785, + "c4": 4.845122515025428, + "c5": 3.633841886269071, + "c6": 2.422561257512714, + "c7": 1.211280628756357 }, "rgb": [238, 201, 159] }, @@ -101877,23 +101877,23 @@ "year": 1734, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -8.666910121510643, - "c2": 13.027600306130822, - "c3": -23.743766545350773, - "c4": 3.145012198555726, - "c5": -20.393649476515726, - "c6": -9.685514025154028, - "c7": -5.973506789589429 + "points": { + "c1": 17.52314747732163, + "c2": 24.29682801669133, + "c3": 13.321348113810217, + "c4": -7.569801529288835, + "c5": 13.704212336465673, + "c6": 16.545043195699563, + "c7": -24.885373814027986 }, - "vertexSeeds": { - "c1": 5.892434561762473, - "c2": 5.487726163559167, - "c3": 5.870558830823721, - "c4": 5.700891487577984, - "c5": 6.046810226599774, - "c6": 5.550238991551473, - "c7": 5.746483639946255 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -101904,23 +101904,23 @@ "year": 1734, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": 12.55173783955733, - "c2": 4.191473211275174, - "c3": 9.242302911010047, - "c4": 14.858254931185968, - "c5": 4.641681466702501, - "c6": -7.377445235186665, - "c7": 15.24758326181832 + "points": { + "c1": 13.611869559459507, + "c2": -2.103321980543342, + "c3": -16.440478604519097, + "c4": -2.653351633566025, + "c5": 14.00443953220546, + "c6": -13.185321282738613, + "c7": 3.3601298078963104 }, - "vertexSeeds": { - "c1": 5.7011587107323285, - "c2": 5.539994582426704, - "c3": 5.544343296355194, - "c4": 5.689834871989591, - "c5": 5.749750797633712, - "c6": 5.813221052960422, - "c7": 5.858493232762879 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [222, 0, 59] }, @@ -101931,23 +101931,23 @@ "year": 1734, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -29.36719281235165, - "c2": -12.670391644724624, - "c3": 0.678151980694615, - "c4": -9.599482332524406, - "c5": 9.07329657461127, - "c6": 22.9374108088208, - "c7": 8.763912457840767 + "points": { + "c1": -12.450755061349636, + "c2": 31.87755879228635, + "c3": 11.291551266700544, + "c4": 24.59729054305084, + "c5": -32.3657143784764, + "c6": 22.52372384769496, + "c7": 20.48431561317239 }, - "vertexSeeds": { - "c1": 2.020870784767265, - "c2": 2.169236755511122, - "c3": 2.1631772122536215, - "c4": 2.175471375981621, - "c5": 2.1332538174563895, - "c6": 2.054624301961102, - "c7": 2.151201981225214 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.1900138696255214, + "c3": 2.6583448913546026, + "c4": 2.12667591308368, + "c5": 1.5950069348127607, + "c6": 1.063337956541842, + "c7": 0.531668978270923 }, "rgb": [77, 76, 132] }, @@ -101958,23 +101958,23 @@ "year": 1734, "resistanceReported": false, "duration": 8121600, - "curveSeeds": { - "c1": 3.8033517564796, - "c2": -10.392898945165115, - "c3": 8.881758645936099, - "c4": 11.728192269792281, - "c5": 6.331005114759449, - "c6": 18.00682478007418, - "c7": -18.744383932774333 + "points": { + "c1": 7.290964411086289, + "c2": 4.470632195421366, + "c3": 3.354247309063691, + "c4": 8.493649130654727, + "c5": 1.0216546143899023, + "c6": -0.178610041124589, + "c7": -0.38053165726778104 }, - "vertexSeeds": { - "c1": 5.424395927277148, - "c2": 5.721907200340634, - "c3": 5.71620648734707, - "c4": 5.52365513208679, - "c5": 5.866041576350653, - "c6": 5.785766054962157, - "c7": 5.751454208165454 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [86, 146, 138] }, @@ -101985,23 +101985,23 @@ "year": 1734, "resistanceReported": false, "duration": 8035200, - "curveSeeds": { - "c1": -8.013725380707768, - "c2": 5.656994432389517, - "c3": 3.5770804608442006, - "c4": 5.612858647951079, - "c5": -8.195728131964612, - "c6": 6.228570400701198, - "c7": 0.7079402048206802 + "points": { + "c1": 0.14510956699885114, + "c2": -14.280185028877765, + "c3": -16.82063147129604, + "c4": 13.333308829500176, + "c5": -5.526896639874932, + "c6": -7.076456156511092, + "c7": -20.278791611091112 }, - "vertexSeeds": { - "c1": 4.40437094830114, - "c2": 3.958225201679457, - "c3": 4.234523759298289, - "c4": 4.10100626697637, - "c5": 3.946681378261245, - "c6": 4.080716090089086, - "c7": 4.273485060154617 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [86, 146, 138] }, @@ -102012,23 +102012,23 @@ "year": 1734, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -29.02964979557036, - "c2": -28.113938694010862, - "c3": -6.8838908170471385, - "c4": 18.792970363851936, - "c5": -12.299765343075322, - "c6": 10.219671942047249, - "c7": 0.6158175966538693 + "points": { + "c1": 7.399205432275899, + "c2": 23.883370240083693, + "c3": 3.034555785909511, + "c4": -24.8400700824387, + "c5": 3.9352719375426304, + "c6": 3.6490919287876338, + "c7": -28.638622248968453 }, - "vertexSeeds": { - "c1": 6.325858763188467, - "c2": 6.132580795146215, - "c3": 6.155911484328662, - "c4": 6.733995141640489, - "c5": 6.118365644141304, - "c6": 6.618160925504309, - "c7": 6.507283291578686 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [222, 0, 59] }, @@ -102039,23 +102039,23 @@ "year": 1734, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 31.158011573916838, - "c2": 7.862638127225644, - "c3": 37.675249166180635, - "c4": -18.80970791026714, - "c5": -14.826569501306597, - "c6": -40.466401224415065, - "c7": 44.359843152708805 + "points": { + "c1": -26.812838828143185, + "c2": -4.450386600162517, + "c3": 0.28807925849815064, + "c4": -24.824748121821603, + "c5": 25.37614253650908, + "c6": 19.301274599068435, + "c7": 28.45413522909422 }, - "vertexSeeds": { - "c1": 5.892001959838269, - "c2": 6.244492095335234, - "c3": 6.154011146231081, - "c4": 6.10159627874892, - "c5": 6.010269852709897, - "c6": 6.107329057731613, - "c7": 6.334198916073008 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [238, 201, 159] }, @@ -102066,23 +102066,23 @@ "year": 1734, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 14.26325563274927, - "c2": 29.01660961985609, - "c3": 24.10969717086917, - "c4": -1.6764509515675137, - "c5": 24.799513016329726, - "c6": 19.532747482267666, - "c7": -3.2788421392850466 + "points": { + "c1": 24.26914217886487, + "c2": -9.078550761050934, + "c3": -9.706431410927575, + "c4": 11.263857279742183, + "c5": -10.584279409689003, + "c6": -18.72147629514071, + "c7": 3.3701907038408123 }, - "vertexSeeds": { - "c1": 7.100539401682001, - "c2": 7.044126959777665, - "c3": 7.342973278082598, - "c4": 7.048974972046271, - "c5": 6.8346929322895535, - "c6": 6.999516326036119, - "c7": 7.25619197085556 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -102093,23 +102093,23 @@ "year": 1734, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": -7.216786959241041, - "c2": 7.719736863113486, - "c3": -17.202950927377557, - "c4": -17.311856864107714, - "c5": -16.104835805630987, - "c6": 2.1963726894143925, - "c7": -15.91089051683416 + "points": { + "c1": 4.07205779205534, + "c2": -9.967470656535442, + "c3": 5.842214375427343, + "c4": 19.269905492187704, + "c5": 9.449186972230805, + "c6": 7.667307931166082, + "c7": -10.159305836634948 }, - "vertexSeeds": { - "c1": 0.13691002039570335, - "c2": 0.14059916654049004, - "c3": 0.14617671473209873, - "c4": 0.1524994172072126, - "c5": 0.13715624319271905, - "c6": 0.14417507998290482, - "c7": 0.1382006514952445 + "offsets": { + "c1": 0.2912621359223301, + "c2": 0.24965325936199728, + "c3": 0.20804438280166448, + "c4": 0.16643550624133116, + "c5": 0.12482662968099839, + "c6": 0.08321775312066558, + "c7": 0.04160887656033279 }, "rgb": [222, 0, 59] }, @@ -102120,23 +102120,23 @@ "year": 1734, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -33.78017291025038, - "c2": 24.82037787059565, - "c3": 23.153997657989635, - "c4": -13.295289649902276, - "c5": -32.76187204109313, - "c6": -32.243631983525525, - "c7": -26.37839578355655 + "points": { + "c1": 36.44164391908764, + "c2": 18.28144388408598, + "c3": -9.844138315592275, + "c4": -12.186018537911352, + "c5": -28.89537751018187, + "c6": -31.045490309414458, + "c7": 32.34766960090995 }, - "vertexSeeds": { - "c1": 0.22772040430780824, - "c2": 0.24651200343669513, - "c3": 0.24580306036807317, - "c4": 0.2407326030073125, - "c5": 0.22085546349902402, - "c6": 0.2379098411101374, - "c7": 0.24573102078442835 + "offsets": { + "c1": 0.45307443365695793, + "c2": 0.3883495145631067, + "c3": 0.3236245954692558, + "c4": 0.25889967637540456, + "c5": 0.19417475728155334, + "c6": 0.1294498381877021, + "c7": 0.06472491909385124 }, "rgb": [222, 0, 59] }, @@ -102147,23 +102147,23 @@ "year": 1734, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 2.6018636048731807, - "c2": 19.657294922115035, - "c3": -3.9151107387924284, - "c4": -1.8544843183671986, - "c5": -15.822786052873314, - "c6": 6.6622093798260735, - "c7": 20.199994028343667 + "points": { + "c1": -9.114398381056546, + "c2": -20.69854538107094, + "c3": 14.54852640247249, + "c4": -17.73386606603991, + "c5": 5.925187079566776, + "c6": -12.501114520051821, + "c7": 26.191174082730058 }, - "vertexSeeds": { - "c1": 5.911461724677012, - "c2": 5.704000329419463, - "c3": 5.562141624680919, - "c4": 6.168152338167101, - "c5": 5.527567009455665, - "c6": 6.3936831126535125, - "c7": 5.714920733703161 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -102174,23 +102174,23 @@ "year": 1734, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 27.386712087360905, - "c2": 14.848634737770666, - "c3": 32.38533685810256, - "c4": 13.153947001662416, - "c5": -18.91914845741116, - "c6": -10.073370333502265, - "c7": -1.1087949910129424 + "points": { + "c1": 24.808004595593793, + "c2": 11.19969289729444, + "c3": -15.772776336809947, + "c4": -10.30022786612231, + "c5": -30.219905981560615, + "c6": -5.41246010112701, + "c7": 10.083488353629008 }, - "vertexSeeds": { - "c1": 4.767409097522747, - "c2": 4.220621314975739, - "c3": 4.364557131191223, - "c4": 4.383798411824322, - "c5": 4.4762788283334505, - "c6": 5.087329817848245, - "c7": 4.828396239379921 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -102201,23 +102201,23 @@ "year": 1734, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -12.287320362893578, - "c2": 13.435207335344835, - "c3": -24.243591201199944, - "c4": -30.676907816625857, - "c5": -21.206612305008868, - "c6": 28.14945950501165, - "c7": 31.73434579639101 + "points": { + "c1": -31.73019614085971, + "c2": 22.874248654159693, + "c3": -5.650685802628338, + "c4": -21.45903259662478, + "c5": -35.669476987133706, + "c6": -26.937424412119256, + "c7": -15.15271969248273 }, - "vertexSeeds": { - "c1": 6.811190391850156, - "c2": 6.954087331337215, - "c3": 7.223765823439999, - "c4": 7.179719521816601, - "c5": 6.948784768203252, - "c6": 7.027834127950558, - "c7": 6.836640317424855 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203893, + "c3": 8.7378640776699, + "c4": 6.990291262135929, + "c5": 5.242718446601936, + "c6": 3.4951456310679645, + "c7": 1.7475728155339925 }, "rgb": [222, 0, 59] }, @@ -102228,23 +102228,23 @@ "year": 1734, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 5.83656895594563, - "c2": -34.0000796044507, - "c3": 23.386723393147683, - "c4": 32.139169053423075, - "c5": -33.42938714019164, - "c6": 26.11784405258245, - "c7": 36.24116919961499 + "points": { + "c1": 11.130399416637637, + "c2": -23.683018546969286, + "c3": -18.218393197157194, + "c4": 15.069946863892696, + "c5": -15.905441251406408, + "c6": -36.891878344304125, + "c7": 35.16606186856504 }, - "vertexSeeds": { - "c1": 3.9977206142532364, - "c2": 3.9820390220564392, - "c3": 4.10610195852408, - "c4": 3.8136287746740365, - "c5": 3.8842360838479806, - "c6": 4.1654980979998575, - "c7": 4.064957932250243 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [222, 0, 59] }, @@ -102255,23 +102255,23 @@ "year": 1734, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 10.130845675391846, - "c2": -19.154788610508227, - "c3": -5.885194232769123, - "c4": 15.026005118206562, - "c5": 30.87470771342978, - "c6": -5.577357486741697, - "c7": -11.287220967047737 + "points": { + "c1": 26.824577141937887, + "c2": 20.754250972246474, + "c3": -9.73739063844657, + "c4": 5.790820862017355, + "c5": -11.021353545975483, + "c6": -7.05067939534533, + "c7": -1.275036661645622 }, - "vertexSeeds": { - "c1": 4.109034640437851, - "c2": 4.216392496963398, - "c3": 4.601429127117686, - "c4": 4.358101916735533, - "c5": 3.9276063415176066, - "c6": 4.6423262992213425, - "c7": 3.920786286353328 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -102282,23 +102282,23 @@ "year": 1734, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 10.998852029972376, - "c2": 25.162948736619235, - "c3": -7.058330488726519, - "c4": -26.528647309506326, - "c5": -34.4809551128394, - "c6": 2.2954335355086855, - "c7": -24.866605650133003 + "points": { + "c1": -25.607153299035318, + "c2": 15.864742639102225, + "c3": -11.625578599549574, + "c4": 3.604473050556649, + "c5": 35.24531344769781, + "c6": -4.164922116696793, + "c7": 1.9871118105809629 }, - "vertexSeeds": { - "c1": 2.3212806851541234, - "c2": 2.2210255866547337, - "c3": 2.135436007257688, - "c4": 2.183070536292788, - "c5": 2.29425150885203, - "c6": 2.2596158017978194, - "c7": 2.1369725441937124 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.411927877947297, + "c3": 2.843273231622746, + "c4": 2.274618585298198, + "c5": 1.7059639389736467, + "c6": 1.137309292649099, + "c7": 0.5686546463245513 }, "rgb": [58, 15, 49] }, @@ -102309,23 +102309,23 @@ "year": 1734, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 39.42734453755806, - "c2": 18.822193294442485, - "c3": 16.4788749483749, - "c4": 7.760348892661781, - "c5": 16.587049852972577, - "c6": -23.805671791210692, - "c7": -23.08627725837286 + "points": { + "c1": 25.802152780015007, + "c2": 32.07310412053681, + "c3": 32.34564117790477, + "c4": -13.872398407281423, + "c5": 32.24579835432161, + "c6": -44.90297066656664, + "c7": -3.9708571426289865 }, - "vertexSeeds": { - "c1": 5.935269541671503, - "c2": 6.322960776863665, - "c3": 6.351416075704455, - "c4": 5.618315566356881, - "c5": 6.170216485134445, - "c6": 5.722874651794647, - "c7": 5.742332520811287 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -102336,23 +102336,23 @@ "year": 1734, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -9.741570361350647, - "c2": 34.23855785284294, - "c3": 30.05474002150232, - "c4": 38.829169203891375, - "c5": 3.4994802295330487, - "c6": 20.179760677853032, - "c7": -24.031858015248915 + "points": { + "c1": 5.883214097589864, + "c2": -44.296667639623436, + "c3": 0.5661379800800788, + "c4": 21.21276218618754, + "c5": 20.893598956618213, + "c6": 19.008227300750626, + "c7": 4.020267500711171 }, - "vertexSeeds": { - "c1": 0.8550150037113587, - "c2": 0.8831841223090477, - "c3": 0.8641151760728796, - "c4": 0.8424189246750031, - "c5": 0.8204684829503605, - "c6": 0.8188049625035241, - "c7": 0.8349720112303218 + "offsets": { + "c1": 1.5210355987055015, + "c2": 1.3037447988904307, + "c3": 1.086453999075357, + "c4": 0.8691631992602862, + "c5": 0.6518723994452154, + "c6": 0.4345815996301445, + "c7": 0.21729079981507088 }, "rgb": [58, 15, 49] }, @@ -102363,23 +102363,23 @@ "year": 1734, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -1.4827076363824467, - "c2": -16.58233633618523, - "c3": -25.349846667056358, - "c4": 16.411909691722776, - "c5": 18.332604691413813, - "c6": 11.978414147449826, - "c7": 4.388111729655201 + "points": { + "c1": 29.13512238775793, + "c2": 3.9170379067175105, + "c3": 11.704673375359263, + "c4": 10.929554811263479, + "c5": -1.9309110455980019, + "c6": -20.003370314399692, + "c7": 5.4103794141083625 }, - "vertexSeeds": { - "c1": 2.0748756803275796, - "c2": 2.115328570498944, - "c3": 2.1027186547031667, - "c4": 2.055592454857639, - "c5": 2.0590833818876315, - "c6": 2.00739953014798, - "c7": 2.026632599534678 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.051317614424408, + "c3": 2.5427646786870097, + "c4": 2.0342117429496054, + "c5": 1.5256588072122068, + "c6": 1.0171058714748027, + "c7": 0.5085529357374042 }, "rgb": [238, 201, 159] }, @@ -102390,23 +102390,23 @@ "year": 1735, "resistanceReported": false, "duration": 46483200, - "curveSeeds": { - "c1": 35.71499133613582, - "c2": -53.792091990393935, - "c3": -2.0586344410478645, - "c4": -43.39580929606592, - "c5": 16.217822498505136, - "c6": 3.374064966553398, - "c7": 46.54099494970735 + "points": { + "c1": -18.182739573261706, + "c2": 43.62613718277557, + "c3": -56.34656639663307, + "c4": -44.21494153552551, + "c5": -50.30716991105008, + "c6": -11.64836981382419, + "c7": 13.813106469789595 }, - "vertexSeeds": { - "c1": 6.416533095488253, - "c2": 6.137532215332046, - "c3": 6.531763167735706, - "c4": 6.306633755169102, - "c5": 6.594627046144147, - "c6": 6.304011106002621, - "c7": 6.413240935712049 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876558, + "c3": 7.975034674063795, + "c4": 6.380027739251033, + "c5": 4.78502080443827, + "c6": 3.190013869625526, + "c7": 1.595006934812763 }, "rgb": [238, 201, 159] }, @@ -102417,23 +102417,23 @@ "year": 1735, "resistanceReported": false, "duration": 46915200, - "curveSeeds": { - "c1": -26.213288867009403, - "c2": -3.194262932495846, - "c3": 30.1296181393567, - "c4": 57.26315253563801, - "c5": -32.88635927379259, - "c6": -60.491831782943066, - "c7": 45.56412371872363 + "points": { + "c1": -2.2168395363451907, + "c2": 23.006130016815753, + "c3": -43.88294641076769, + "c4": -32.350927801433656, + "c5": 7.287387873779629, + "c6": 20.73034534769574, + "c7": -0.816514722296148 }, - "vertexSeeds": { - "c1": 9.420571251539789, - "c2": 8.75920647941346, - "c3": 8.723724979224809, - "c4": 9.039653198893582, - "c5": 9.024666615664014, - "c6": 8.633992693622051, - "c7": 9.826003744376594 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.174757281553394, + "c3": 11.812297734627837, + "c4": 9.449838187702266, + "c5": 7.087378640776697, + "c6": 4.72491909385114, + "c7": 2.36245954692557 }, "rgb": [238, 201, 159] }, @@ -102444,23 +102444,23 @@ "year": 1734, "resistanceReported": false, "duration": 1900800, - "curveSeeds": { - "c1": 0.2268419037660312, - "c2": -8.151939348309885, - "c3": -2.504268235838696, - "c4": -2.5055938455458566, - "c5": -11.176040541356171, - "c6": -2.247998366000729, - "c7": 0.030946151836614533 + "points": { + "c1": 3.777706545263687, + "c2": 9.234723696059895, + "c3": 1.3839248516207245, + "c4": 3.1377336983163673, + "c5": -4.101405047041499, + "c6": 9.071444038612093, + "c7": 5.004354650657888 }, - "vertexSeeds": { - "c1": 2.2018451946785023, - "c2": 2.251915555246917, - "c3": 2.197898564126248, - "c4": 2.1165754439657043, - "c5": 2.0949769945970056, - "c6": 2.199397149338443, - "c7": 2.207929524753747 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [86, 146, 138] }, @@ -102471,23 +102471,23 @@ "year": 1734, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -27.682206295873485, - "c2": 31.641427881650444, - "c3": -3.276316319698388, - "c4": 16.979066037183628, - "c5": -32.76033269166513, - "c6": 20.753968854413444, - "c7": -23.29376079958272 + "points": { + "c1": 3.409010787470777, + "c2": 12.022203278438027, + "c3": -3.1948453979280913, + "c4": 24.791285201679486, + "c5": -35.00689465180449, + "c6": -20.324501642929953, + "c7": 17.181546775632626 }, - "vertexSeeds": { - "c1": 2.682797274999937, - "c2": 2.5416236967619463, - "c3": 2.8359787862557413, - "c4": 2.497383853669471, - "c5": 2.4665091655565674, - "c6": 2.8417528246524637, - "c7": 2.8378651428079267 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [58, 15, 49] }, @@ -102498,23 +102498,23 @@ "year": 1734, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -3.7826604808717263, - "c2": 5.090813591991505, - "c3": 30.983415531859976, - "c4": -1.0447236097972166, - "c5": -14.809373729863779, - "c6": 3.96782760447325, - "c7": -0.8918827435059882 + "points": { + "c1": -2.1790949426041593, + "c2": 30.598226960948054, + "c3": 7.886721073650364, + "c4": -14.084616505826176, + "c5": -31.19218128724591, + "c6": 24.641634193530216, + "c7": 31.60435554473662 }, - "vertexSeeds": { - "c1": 3.3078334808461274, - "c2": 3.3357583194649396, - "c3": 3.0385693485868064, - "c4": 3.2752157998104567, - "c5": 3.460915280716084, - "c6": 3.4551279833711326, - "c7": 3.1506114512279133 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320387, + "c3": 4.207119741100321, + "c4": 3.3656957928802558, + "c5": 2.524271844660197, + "c6": 1.6828478964401312, + "c7": 0.8414239482200656 }, "rgb": [58, 15, 49] }, @@ -102525,23 +102525,23 @@ "year": 1734, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 23.11629429206192, - "c2": 21.37909041746676, - "c3": 24.01836406587144, - "c4": -12.103720261659987, - "c5": -24.50242584265932, - "c6": -12.756293419447848, - "c7": 14.995971235264289 + "points": { + "c1": -0.3639044732781258, + "c2": -24.034778252035554, + "c3": 12.702746689366283, + "c4": -26.0464018580618, + "c5": -25.65083317177777, + "c6": 24.626982379332414, + "c7": -25.03606034180543 }, - "vertexSeeds": { - "c1": 3.054047076430386, - "c2": 3.1504855047971096, - "c3": 3.1340553164229936, - "c4": 2.6532949435529027, - "c5": 2.879888140100204, - "c6": 2.9969057089827604, - "c7": 3.022485271513291 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676839, + "c3": 3.8372630605640343, + "c4": 3.069810448451224, + "c5": 2.3023578363384196, + "c6": 1.5349052242256147, + "c7": 0.7674526121128099 }, "rgb": [86, 146, 138] }, @@ -102552,23 +102552,23 @@ "year": 1734, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 32.73711011623199, - "c2": -39.697235493666525, - "c3": 4.573018240478547, - "c4": -22.84751462834421, - "c5": 29.299400412172716, - "c6": -29.580958692539337, - "c7": -4.76623637217493 + "points": { + "c1": 41.36633833219598, + "c2": -14.237321623221856, + "c3": 24.20301172579923, + "c4": -4.518023228146255, + "c5": 22.20578649761306, + "c6": 35.967673955735634, + "c7": 1.015418150256238 }, - "vertexSeeds": { - "c1": 9.712269558322822, - "c2": 9.739367716395828, - "c3": 9.548210875726417, - "c4": 10.283149863340068, - "c5": 9.137426669676454, - "c6": 9.598219490763848, - "c7": 9.949697234253383 + "offsets": { + "c1": 17.184466019417478, + "c2": 14.729542302357826, + "c3": 12.274618585298203, + "c4": 9.819694868238564, + "c5": 7.364771151178927, + "c6": 4.909847434119289, + "c7": 2.4549237170596516 }, "rgb": [222, 0, 59] }, @@ -102579,23 +102579,23 @@ "year": 1734, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -4.469413428098225, - "c2": 12.33529609171189, - "c3": 8.87412792344385, - "c4": 2.1885616075215495, - "c5": -28.54821519083891, - "c6": -0.8471577245749096, - "c7": 26.212318458288685 + "points": { + "c1": -23.903961528223284, + "c2": -19.453969467226067, + "c3": 11.711049475711285, + "c4": -3.872515337720035, + "c5": 13.865123537143567, + "c6": -10.431519712763372, + "c7": -23.834081106753747 }, - "vertexSeeds": { - "c1": 1.9815970263855966, - "c2": 2.1259062841886234, - "c3": 2.098566866412297, - "c4": 2.050805447393801, - "c5": 1.9504610533917492, - "c6": 2.0052172735330234, - "c7": 2.03287528353644 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300527, + "c5": 1.5672676837725366, + "c6": 1.0448451225150244, + "c7": 0.5224225612575122 }, "rgb": [238, 201, 159] }, @@ -102606,23 +102606,23 @@ "year": 1734, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -12.115737716595671, - "c2": -31.09252743158704, - "c3": -2.3049957910729653, - "c4": 27.949946462236795, - "c5": 26.73843335742898, - "c6": -28.344271795027876, - "c7": -26.522866459440735 + "points": { + "c1": 24.33138615281328, + "c2": -10.510757501920601, + "c3": -16.336720541307933, + "c4": 25.886655975898655, + "c5": -11.201694543427951, + "c6": -22.521682543515915, + "c7": -28.930427331927472 }, - "vertexSeeds": { - "c1": 0.6359360114268504, - "c2": 0.666483281493292, - "c3": 0.6717204543299972, - "c4": 0.6567818680084906, - "c5": 0.6914182348620904, - "c6": 0.594387562709396, - "c7": 0.6222462680939054 + "offsets": { + "c1": 1.197411003236246, + "c2": 1.0263522884882106, + "c3": 0.8552935737401753, + "c4": 0.68423485899214, + "c5": 0.513176144244106, + "c6": 0.34211742949607066, + "c7": 0.17105871474803533 }, "rgb": [238, 201, 159] }, @@ -102633,23 +102633,23 @@ "year": 1734, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -24.55874767256519, - "c2": -1.2061726846486351, - "c3": -19.601496074217703, - "c4": 38.39370584595658, - "c5": -28.006894979216234, - "c6": 9.975057454849015, - "c7": 5.79696261028878 + "points": { + "c1": 35.00025834658782, + "c2": -11.721666328279582, + "c3": -35.68531767882626, + "c4": -15.38108134417363, + "c5": -15.50150506672809, + "c6": 42.07805876318513, + "c7": 7.846430264119071 }, - "vertexSeeds": { - "c1": 3.181285009262192, - "c2": 3.0211500896282537, - "c3": 3.2258756100362294, - "c4": 3.0019278707794954, - "c5": 3.186614133339343, - "c6": 2.802384065178514, - "c7": 3.0771848169055516 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837724, + "c3": 3.929727230698101, + "c4": 3.1437817845584846, + "c5": 2.357836338418862, + "c6": 1.5718908922792392, + "c7": 0.7859454461396164 }, "rgb": [86, 146, 138] }, @@ -102660,23 +102660,23 @@ "year": 1734, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 2.4851824203173045, - "c2": 11.081394732274713, - "c3": 25.315338173924584, - "c4": -13.646381415482649, - "c5": -6.47164430434696, - "c6": 11.961064129900311, - "c7": 6.919085420196968 + "points": { + "c1": -24.470309723411194, + "c2": -2.424728219549948, + "c3": -12.286398454370396, + "c4": -15.601433647426406, + "c5": 6.18152130478482, + "c6": 23.548352521490248, + "c7": -4.521411261843717 }, - "vertexSeeds": { - "c1": 5.889833013081424, - "c2": 5.789773204766572, - "c3": 5.844583281049679, - "c4": 5.740899488490419, - "c5": 5.725295863939237, - "c6": 5.955163070513651, - "c7": 5.623453982850482 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750348, + "c3": 7.327785483125293, + "c4": 5.862228386500237, + "c5": 4.39667128987518, + "c6": 2.931114193250125, + "c7": 1.4655570966250686 }, "rgb": [238, 201, 159] }, @@ -102687,23 +102687,23 @@ "year": 1734, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -25.94224446177152, - "c2": 13.459390029953056, - "c3": -22.935736845924218, - "c4": -5.297118641806389, - "c5": -25.445051674966894, - "c6": 12.904395875953746, - "c7": -5.280690923472726 + "points": { + "c1": 4.54687299087729, + "c2": 21.20941496977126, + "c3": -17.821060085386012, + "c4": -5.93191546722646, + "c5": -10.365360246606958, + "c6": -2.780128395159185, + "c7": 9.46289879865541 }, - "vertexSeeds": { - "c1": 5.220436339047137, - "c2": 5.132798500253869, - "c3": 4.158835259217562, - "c4": 4.57244632110319, - "c5": 5.125674249990755, - "c6": 4.8236460063698035, - "c7": 4.090717652567054 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061023, + "c3": 6.356911696717525, + "c4": 5.085529357374018, + "c5": 3.8141470180305115, + "c6": 2.542764678687009, + "c7": 1.2713823393435064 }, "rgb": [58, 15, 49] }, @@ -102714,23 +102714,23 @@ "year": 1735, "resistanceReported": false, "duration": 50716800, - "curveSeeds": { - "c1": 29.98705337091249, - "c2": 36.654678763196884, - "c3": -26.34795190820426, - "c4": 47.88269074757457, - "c5": -53.29815084138348, - "c6": -8.156103911766031, - "c7": 10.88299698588412 + "points": { + "c1": -32.42019554106043, + "c2": -24.32369389293877, + "c3": -3.619957734626823, + "c4": 40.58302677117011, + "c5": 22.61550696349279, + "c6": -16.37373655181994, + "c7": -12.019763637153993 }, - "vertexSeeds": { - "c1": 3.649964489143489, - "c2": 3.7837148381090175, - "c3": 3.721920907931629, - "c4": 3.6685474493042927, - "c5": 3.7936044483716698, - "c6": 3.5623186976380494, - "c7": 3.6710631876068134 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703649, + "c4": 3.6985668053629177, + "c5": 2.773925104022195, + "c6": 1.8492834026814635, + "c7": 0.9246417013407318 }, "rgb": [77, 76, 132] }, @@ -102741,23 +102741,23 @@ "year": 1735, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -37.59831613939707, - "c2": 9.842669269341442, - "c3": -44.20310574282331, - "c4": -6.240759407196407, - "c5": -41.20548597614454, - "c6": -45.165642663851315, - "c7": -23.80942066401183 + "points": { + "c1": 39.57249960690447, + "c2": -20.384500988243495, + "c3": -41.48012934856202, + "c4": 49.42150265675829, + "c5": -29.615740844418227, + "c6": 49.29748674839121, + "c7": 11.696296917760868 }, - "vertexSeeds": { - "c1": 1.8016588200294257, - "c2": 1.620409624491055, - "c3": 1.8091265852354852, - "c4": 1.6398808470770567, - "c5": 1.7903705515735555, - "c6": 1.5710477253379636, - "c7": 1.5742494813046657 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.662968099861303, + "c3": 2.2191400832177517, + "c4": 1.7753120665742028, + "c5": 1.3314840499306515, + "c6": 0.8876560332871003, + "c7": 0.44382801664355126 }, "rgb": [58, 15, 49] }, @@ -102768,23 +102768,23 @@ "year": 1735, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": -36.72309977995541, - "c2": 43.496621978341736, - "c3": -16.870929150364148, - "c4": 8.132910414560648, - "c5": 11.701512601098493, - "c6": -44.03848541549918, - "c7": -51.27047876693599 + "points": { + "c1": 38.90854271632446, + "c2": -18.37005801472631, + "c3": -18.979536473209933, + "c4": -12.973270852139898, + "c5": -6.5146175450453185, + "c6": 35.56029137353107, + "c7": -31.182906086855393 }, - "vertexSeeds": { - "c1": 3.799031815077477, - "c2": 3.3101910905213994, - "c3": 3.653835996687271, - "c4": 3.6028712417012385, - "c5": 3.5924946263092083, - "c6": 3.7748314857756977, - "c7": 3.6494885295340174 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [222, 0, 59] }, @@ -102795,23 +102795,23 @@ "year": 1734, "resistanceReported": true, "duration": 19353600, - "curveSeeds": { - "c1": 10.511679478631638, - "c2": 6.012487594016317, - "c3": -11.318966683394837, - "c4": -24.788638479765492, - "c5": 6.623841644466562, - "c6": -13.00095013781387, - "c7": -12.191050106488017 + "points": { + "c1": -9.613703536944076, + "c2": 30.85730985445133, + "c3": -28.15238784794535, + "c4": -13.08947318489383, + "c5": -19.340082540323046, + "c6": -16.926628568650298, + "c7": -24.52452961392465 }, - "vertexSeeds": { - "c1": 3.9703115805902263, - "c2": 4.24969756028871, - "c3": 3.8914575462293874, - "c4": 4.008226118907832, - "c5": 3.8382643219095014, - "c6": 3.8898156030359905, - "c7": 4.041435057706987 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929264, + "c3": 5.131761442441054, + "c4": 4.105409153952842, + "c5": 3.079056865464632, + "c6": 2.052704576976421, + "c7": 1.0263522884882106 }, "rgb": [58, 15, 49] }, @@ -102822,23 +102822,23 @@ "year": 1734, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 31.585195504428924, - "c2": -21.467835155374765, - "c3": -2.8013542896534673, - "c4": -17.092827661982405, - "c5": 9.358899418106084, - "c6": -19.969547296184228, - "c7": -21.02110402698232 + "points": { + "c1": -3.911018997452441, + "c2": -6.484421352033326, + "c3": -7.950056888423468, + "c4": -23.017072072103765, + "c5": 1.7031353433781788, + "c6": -30.60077040335819, + "c7": 14.239206770138217 }, - "vertexSeeds": { - "c1": 2.6631714689193076, - "c2": 2.870036789734942, - "c3": 2.739780965665577, - "c4": 2.5396025815168675, - "c5": 2.377028412783412, - "c6": 2.858746415417646, - "c7": 2.7721324942193846 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993064, + "c3": 3.4442903374942233, + "c4": 2.755432269995378, + "c5": 2.066574202496532, + "c6": 1.3777161349976863, + "c7": 0.6888580674988432 }, "rgb": [86, 146, 138] }, @@ -102849,23 +102849,23 @@ "year": 1735, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -14.403121562219027, - "c2": 15.748592908547032, - "c3": -7.805481110878212, - "c4": 31.284993270443955, - "c5": 33.54207694017433, - "c6": -25.22063515302543, - "c7": -8.573660981963833 + "points": { + "c1": -42.143576325064025, + "c2": 18.54591680460762, + "c3": 24.32619397065401, + "c4": -28.89880267407363, + "c5": 8.227457332085613, + "c6": 45.37409148283535, + "c7": -29.962491692570072 }, - "vertexSeeds": { - "c1": 10.72997661260877, - "c2": 10.563944159646931, - "c3": 10.300924799015199, - "c4": 10.124108887993234, - "c5": 10.733553022888492, - "c6": 10.617992766564667, - "c7": 10.33176547719928 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363384, + "c3": 12.852519648636154, + "c4": 10.282015718908923, + "c5": 7.711511789181692, + "c6": 5.1410078594544615, + "c7": 2.5705039297272307 }, "rgb": [238, 201, 159] }, @@ -102876,23 +102876,23 @@ "year": 1735, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 29.139685795751063, - "c2": 7.230076358785098, - "c3": -46.48858700483564, - "c4": -29.85548512755495, - "c5": 41.87923279249159, - "c6": -8.934181043494753, - "c7": -40.18416622671784 + "points": { + "c1": -48.02201140079444, + "c2": -48.46337680529952, + "c3": 15.002271497153671, + "c4": -5.427649715562232, + "c5": -11.606653270120844, + "c6": 31.706804501548476, + "c7": 21.934951430630107 }, - "vertexSeeds": { - "c1": 1.1940958533380917, - "c2": 1.114482660883941, - "c3": 1.1729447994611266, - "c4": 1.1539893734311726, - "c5": 1.1044888887028381, - "c6": 1.113805222157515, - "c7": 1.1513159848388572 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948687, + "c3": 1.5487748497457232, + "c4": 1.239019879796579, + "c5": 0.9292649098474336, + "c6": 0.6195099398982895, + "c7": 0.30975496994914414 }, "rgb": [86, 146, 138] }, @@ -102903,23 +102903,23 @@ "year": 1735, "resistanceReported": false, "duration": 59875200, - "curveSeeds": { - "c1": 71.465541620854, - "c2": -69.81458265074737, - "c3": -30.00591004870178, - "c4": 16.161467961652463, - "c5": 60.36132032897834, - "c6": -12.204501544454118, - "c7": 44.442064520293414 + "points": { + "c1": 57.713039932483696, + "c2": 5.914220744607576, + "c3": -63.39326510443085, + "c4": -7.918584210557, + "c5": 54.15935139540241, + "c6": 24.082828168216537, + "c7": 47.331709564845184 }, - "vertexSeeds": { - "c1": 2.8006955586588678, - "c2": 2.9594586211816845, - "c3": 2.7690520268212713, - "c4": 3.38780282681666, - "c5": 3.168749408296886, - "c6": 3.127883786117135, - "c7": 3.0071101810452823 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.9098474341192775, + "c3": 4.09153952843273, + "c4": 3.273231622746186, + "c5": 2.4549237170596387, + "c6": 1.6366158113730909, + "c7": 0.8183079056865479 }, "rgb": [77, 76, 132] }, @@ -102930,23 +102930,23 @@ "year": 1734, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -20.00981544077063, - "c2": 2.3073684983229654, - "c3": -19.210144425588425, - "c4": 17.736674877915306, - "c5": -1.8954474330765159, - "c6": 10.801549926322068, - "c7": -27.47559240529546 + "points": { + "c1": 20.300401018614068, + "c2": 15.930704683784114, + "c3": -22.65025433256266, + "c4": 22.30981302581602, + "c5": 17.4124269809466, + "c6": 0.43600471294061904, + "c7": 11.032071969446257 }, - "vertexSeeds": { - "c1": 1.700727478203359, - "c2": 1.7390579158353685, - "c3": 1.6695748623612428, - "c4": 1.7899457294179402, - "c5": 1.7722496760662323, - "c6": 1.832268267896124, - "c7": 1.8242030644770573 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.662968099861303, + "c3": 2.219140083217752, + "c4": 1.7753120665742048, + "c5": 1.3314840499306535, + "c6": 0.8876560332871024, + "c7": 0.4438280166435512 }, "rgb": [58, 15, 49] }, @@ -102957,23 +102957,23 @@ "year": 1734, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -30.741327787943163, - "c2": -18.40441739603256, - "c3": -31.281215511194493, - "c4": -19.359819262928397, - "c5": -33.958901360808454, - "c6": 31.127330850612438, - "c7": 13.565063374393198 + "points": { + "c1": -1.3786272931642856, + "c2": 20.813333448520588, + "c3": -21.705869999875517, + "c4": 8.820864338956099, + "c5": -8.06575752423187, + "c6": 22.058539234339378, + "c7": -19.941158072842804 }, - "vertexSeeds": { - "c1": 4.974108695010074, - "c2": 6.17428281000621, - "c3": 5.302930401524953, - "c4": 5.063819906805855, - "c5": 5.121473155955901, - "c6": 5.5654254708414195, - "c7": 5.209613145019174 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830787, + "c3": 7.374017568192328, + "c4": 5.899214054553861, + "c5": 4.424410540915393, + "c6": 2.9496070272769357, + "c7": 1.4748035136384678 }, "rgb": [77, 76, 132] }, @@ -102984,23 +102984,23 @@ "year": 1735, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -8.394376631213017, - "c2": -4.881481698340799, - "c3": 0.03693802852401262, - "c4": -13.497175342366667, - "c5": -28.507705324398604, - "c6": 13.882993127634371, - "c7": -25.287090815145127 + "points": { + "c1": -13.809475439694491, + "c2": -18.545462735431162, + "c3": 19.80240383667254, + "c4": -11.515203569134322, + "c5": -10.04454293127781, + "c6": 33.92248410273726, + "c7": 12.929478217327741 }, - "vertexSeeds": { - "c1": 5.518196632981827, - "c2": 7.221577550843988, - "c3": 6.286658348328536, - "c4": 5.295733302143429, - "c5": 6.955561996502249, - "c6": 5.350849482770276, - "c7": 6.006132933971177 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [77, 76, 132] }, @@ -103011,23 +103011,23 @@ "year": 1735, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -34.09923106189977, - "c2": -11.721509479271713, - "c3": -9.514415912646193, - "c4": 12.055656727186914, - "c5": 15.167606456054862, - "c6": 9.07279365978605, - "c7": 3.6302915839060717 + "points": { + "c1": -27.120902770931647, + "c2": 37.91848620591225, + "c3": -21.229578330412316, + "c4": -34.421848005782984, + "c5": 29.607294377521534, + "c6": -8.137014129256535, + "c7": -30.616949723964616 }, - "vertexSeeds": { - "c1": 6.84459452573311, - "c2": 6.613753309865937, - "c3": 7.1697122614758975, - "c4": 6.565750139849715, - "c5": 6.675150590463131, - "c6": 6.949822931409213, - "c7": 6.423987814143755 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.54091539528433, + "c3": 8.784096162736944, + "c4": 7.027276930189557, + "c5": 5.270457697642171, + "c6": 3.5136384650947723, + "c7": 1.7568192325473861 }, "rgb": [222, 0, 59] }, @@ -103038,23 +103038,23 @@ "year": 1735, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 38.56253566200241, - "c2": -15.438906325045739, - "c3": -42.34301174146744, - "c4": -11.773752828085058, - "c5": -31.902903634166513, - "c6": 13.58942995665268, - "c7": 14.447589605732048 + "points": { + "c1": -22.883141443240355, + "c2": 37.04951853325672, + "c3": -13.381428087620122, + "c4": -25.014383972954548, + "c5": -34.31872653341476, + "c6": -12.145386434058963, + "c7": 31.762607119895115 }, - "vertexSeeds": { - "c1": 5.485387289670729, - "c2": 5.528970540283268, - "c3": 5.6529031244618615, - "c4": 5.362052292122189, - "c5": 6.047475030690296, - "c6": 5.412237889775402, - "c7": 6.061936568682575 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589464, + "c3": 7.2353213129912115, + "c4": 5.788257050392972, + "c5": 4.341192787794732, + "c6": 2.89412852519648, + "c7": 1.44706426259824 }, "rgb": [58, 15, 49] }, @@ -103065,23 +103065,23 @@ "year": 1735, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 12.828653176500389, - "c2": -29.417983685835928, - "c3": -18.342322466352783, - "c4": -42.6541758084468, - "c5": 42.22146193257709, - "c6": 19.443950793121452, - "c7": 11.517538909706808 + "points": { + "c1": 41.27661915191893, + "c2": -45.937227884884976, + "c3": 3.104844604100677, + "c4": 6.2280554653110585, + "c5": -25.73587312387726, + "c6": -32.65940469054263, + "c7": 13.532836313605642 }, - "vertexSeeds": { - "c1": 8.432950482200795, - "c2": 10.357253468762552, - "c3": 12.840239581968474, - "c4": 12.974915762271355, - "c5": 9.987555237343912, - "c6": 13.855946139107047, - "c7": 10.41624650916684 + "offsets": { + "c1": 24.59546925566343, + "c2": 21.081830790568656, + "c3": 17.568192325473877, + "c4": 14.054553860379103, + "c5": 10.540915395284328, + "c6": 7.027276930189552, + "c7": 3.5136384650947736 }, "rgb": [86, 146, 138] }, @@ -103092,23 +103092,23 @@ "year": 1734, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 4.023244921934872, - "c2": 4.827702105269015, - "c3": 14.926502800686425, - "c4": 29.180202633398476, - "c5": -14.509199887723891, - "c6": -15.568006237623331, - "c7": 11.740104052903352 + "points": { + "c1": 25.89848215762874, + "c2": 8.619066599804633, + "c3": -30.254396967093623, + "c4": 17.53028430070693, + "c5": 24.55805940656495, + "c6": -30.32923138688459, + "c7": -11.865938730030994 }, - "vertexSeeds": { - "c1": 4.488532203374999, - "c2": 3.9090082576461267, - "c3": 4.437191719892381, - "c4": 4.811785174433682, - "c5": 4.09586142490206, - "c6": 4.388235447590272, - "c7": 4.443381261167963 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.99029126213592, + "c3": 5.825242718446603, + "c4": 4.66019417475728, + "c5": 3.495145631067958, + "c6": 2.33009708737864, + "c7": 1.1650485436893179 }, "rgb": [222, 0, 59] }, @@ -103119,23 +103119,23 @@ "year": 1735, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -6.797427374429297, - "c2": -3.7897001376289623, - "c3": 6.761589358207715, - "c4": 11.062214123385303, - "c5": -17.112020072231488, - "c6": 13.193488871093507, - "c7": -8.921175330949449 + "points": { + "c1": 12.581779557247941, + "c2": -24.87872180017561, + "c3": -37.1072543563271, + "c4": -30.986981469497774, + "c5": 3.551859165084842, + "c6": -17.831205222909293, + "c7": 38.026443658400915 }, - "vertexSeeds": { - "c1": 7.752179241241382, - "c2": 7.4942972947402, - "c3": 7.534164451000042, - "c4": 7.522143172003118, - "c5": 7.516913836393228, - "c6": 7.482035894085237, - "c7": 7.596228335073318 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.3971336107258425, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [238, 201, 159] }, @@ -103146,23 +103146,23 @@ "year": 1735, "resistanceReported": false, "duration": 49161600, - "curveSeeds": { - "c1": 29.152361306746656, - "c2": 0.0050924997498498215, - "c3": -45.856111298485146, - "c4": -50.12891011369288, - "c5": -7.211217117888339, - "c6": -2.1614238456144435, - "c7": 11.923671335680055 + "points": { + "c1": 51.83980652357188, + "c2": -6.056953031733052, + "c3": -40.18646038132219, + "c4": -28.311375201958, + "c5": 31.432130251266784, + "c6": 15.42029497503286, + "c7": 13.724988762576757 }, - "vertexSeeds": { - "c1": 7.902568245213794, - "c2": 7.872019571748296, - "c3": 8.278274766470902, - "c4": 8.08300853132949, - "c5": 7.831099014745754, - "c6": 9.264411128554867, - "c7": 8.281556822285204 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226074, + "c3": 11.049468331021728, + "c4": 8.839574664817382, + "c5": 6.629680998613037, + "c6": 4.419787332408691, + "c7": 2.2098936662043456 }, "rgb": [86, 146, 138] }, @@ -103173,23 +103173,23 @@ "year": 1736, "resistanceReported": false, "duration": 55123200, - "curveSeeds": { - "c1": -48.81381223316977, - "c2": -41.53427545472175, - "c3": -61.84544975275111, - "c4": 49.39897308912087, - "c5": 18.51281467144993, - "c6": -2.3918159505414707, - "c7": 5.35266064236734 + "points": { + "c1": 70.38462994394624, + "c2": -14.96948403832505, + "c3": 38.361020169824414, + "c4": 69.41072830209683, + "c5": -55.76549770517255, + "c6": 45.410749587146626, + "c7": 3.4685504354558816 }, - "vertexSeeds": { - "c1": 10.963772025198862, - "c2": 11.849256175458953, - "c3": 10.81195759671978, - "c4": 10.519131418413634, - "c5": 10.364123196599545, - "c6": 10.78073639083488, - "c7": 11.396340299350758 + "offsets": { + "c1": 20, + "c2": 17.14285714285714, + "c3": 14.285714285714272, + "c4": 11.428571428571432, + "c5": 8.57142857142857, + "c6": 5.714285714285705, + "c7": 2.8571428571428408 }, "rgb": [77, 76, 132] }, @@ -103200,23 +103200,23 @@ "year": 1735, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 6.535868352459165, - "c2": 1.4517745649735936, - "c3": 20.937365208949036, - "c4": -23.921426412231106, - "c5": 16.385007615115445, - "c6": 15.829589003682575, - "c7": -2.302790719469588 + "points": { + "c1": -23.577788984942817, + "c2": -4.2575732889237585, + "c3": 17.685031872908645, + "c4": 25.575497797945324, + "c5": 4.6026867127577376, + "c6": 21.966051666127505, + "c7": 24.405758815605324 }, - "vertexSeeds": { - "c1": 4.738643431154343, - "c2": 5.052661627121141, - "c3": 4.448797281859991, - "c4": 4.458504567155316, - "c5": 4.780275265170676, - "c6": 4.633287692629721, - "c7": 5.0932891856915 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -103227,23 +103227,23 @@ "year": 1734, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 2.3260558494963384, - "c2": 2.43572768727131, - "c3": 5.983919604747932, - "c4": 21.926760908417037, - "c5": -28.908917971845284, - "c6": 1.1830315246557248, - "c7": 15.317821000965573 + "points": { + "c1": -11.13411285765438, + "c2": 18.34796454946766, + "c3": -18.492420934232094, + "c4": -10.927713913286059, + "c5": -13.356357527535863, + "c6": -7.690306189982941, + "c7": -27.722700887332387 }, - "vertexSeeds": { - "c1": 3.1050230450944745, - "c2": 3.337313758399333, - "c3": 3.3533104072114703, - "c4": 3.016154848580938, - "c5": 3.1780995722831, - "c6": 3.332872902398907, - "c7": 3.0942121586967186 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998608, + "c3": 4.022191400832178, + "c4": 3.217753120665739, + "c5": 2.413314840499309, + "c6": 1.6088765603328694, + "c7": 0.8044382801664304 }, "rgb": [86, 146, 138] }, @@ -103254,23 +103254,23 @@ "year": 1735, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 3.3771172056714818, - "c2": 31.566970073067438, - "c3": 19.806157140241915, - "c4": 29.46232070152776, - "c5": 11.224361531992045, - "c6": -12.731156461584337, - "c7": 12.531737370150957 + "points": { + "c1": -9.896840679027932, + "c2": 35.85782089686134, + "c3": -28.90614542683967, + "c4": -17.866938807548113, + "c5": -28.016680311971527, + "c6": 16.279101662272794, + "c7": 22.294314028152478 }, - "vertexSeeds": { - "c1": 4.802066149801809, - "c2": 4.623804277832509, - "c3": 4.927740706894407, - "c4": 4.961006386066314, - "c5": 4.613703970041532, - "c6": 4.623372828685051, - "c7": 4.87110515552482 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739256, + "c3": 6.171983356449375, + "c4": 4.937586685159504, + "c5": 3.703190013869628, + "c6": 2.468793342579752, + "c7": 1.234396671289876 }, "rgb": [86, 146, 138] }, @@ -103281,23 +103281,23 @@ "year": 1735, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 27.67875358832908, - "c2": -4.318185080847343, - "c3": 20.279548768794363, - "c4": -14.15836467615381, - "c5": -0.8769660604671259, - "c6": 15.547924284269357, - "c7": 15.325748417701291 + "points": { + "c1": -39.774663315156104, + "c2": -30.759531656036096, + "c3": 2.2335044722965307, + "c4": 3.2701251220526757, + "c5": 7.965069351227086, + "c6": 37.64146083963889, + "c7": -4.871138561874105 }, - "vertexSeeds": { - "c1": 4.0256124679464325, - "c2": 4.221062601901483, - "c3": 3.9231076133441607, - "c4": 4.2371735419150705, - "c5": 3.9234063764826717, - "c6": 3.8945313853204695, - "c7": 4.041235068723511 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374018, + "c4": 4.068423485899213, + "c5": 3.05131761442441, + "c6": 2.0342117429496067, + "c7": 1.0171058714748034 }, "rgb": [222, 0, 59] }, @@ -103308,23 +103308,23 @@ "year": 1735, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -4.920886136576204, - "c2": -17.131073312717895, - "c3": 9.30164913256516, - "c4": -3.9216605070582062, - "c5": 17.17451301172347, - "c6": -30.84291129436466, - "c7": -6.006855720927565 + "points": { + "c1": -35.29273218040984, + "c2": -12.423351558930275, + "c3": -3.0714774620401073, + "c4": 22.82028794222881, + "c5": -12.138792929264213, + "c6": -32.18082796730411, + "c7": 20.735455211162424 }, - "vertexSeeds": { - "c1": 3.8127662996491183, - "c2": 3.750412086374273, - "c3": 3.8505932879054345, - "c4": 3.687749573254008, - "c5": 3.434737161124809, - "c6": 3.6386935948693773, - "c7": 3.8273447465628965 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084605, + "c3": 4.646324549237171, + "c4": 3.7170596393897366, + "c5": 2.7877947295423025, + "c6": 1.8585298196948683, + "c7": 0.9292649098474342 }, "rgb": [86, 146, 138] }, @@ -103335,23 +103335,23 @@ "year": 1735, "resistanceReported": true, "duration": 36892800, - "curveSeeds": { - "c1": 44.05203812415184, - "c2": -14.389413666270883, - "c3": -40.184078395059046, - "c4": -48.5539943632985, - "c5": 15.03119541372913, - "c6": 29.084389262497062, - "c7": -17.687512499088264 + "points": { + "c1": -45.39277128044846, + "c2": -1.772703700856276, + "c3": 12.822834892406838, + "c4": -23.907113121183983, + "c5": 24.128848635024077, + "c6": -36.68644081568398, + "c7": -32.9199263252369 }, - "vertexSeeds": { - "c1": 6.95234256100581, - "c2": 6.893242560700642, - "c3": 7.0928382258289755, - "c4": 6.881512965756291, - "c5": 6.464352007797803, - "c6": 6.9220052179620835, - "c7": 6.45233159176914 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882114, + "c3": 8.552935737401754, + "c4": 6.842348589921409, + "c5": 5.13176144244105, + "c6": 3.4211742949607045, + "c7": 1.7105871474803456 }, "rgb": [86, 146, 138] }, @@ -103362,23 +103362,23 @@ "year": 1735, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 7.988472595119298, - "c2": -34.35524045921394, - "c3": 11.70430500101287, - "c4": 2.095381066714033, - "c5": 21.42811651375726, - "c6": 9.228943192943078, - "c7": -11.237931381905994 + "points": { + "c1": -12.345625286759674, + "c2": -28.614136135934604, + "c3": 18.30719081977758, + "c4": 8.205133782816539, + "c5": 30.226065119440662, + "c6": 33.6118768221817, + "c7": 12.00265198149085 }, - "vertexSeeds": { - "c1": 4.677171384519054, - "c2": 4.568469114201071, - "c3": 4.578125963312167, - "c4": 4.636795907719295, - "c5": 4.663753509800479, - "c6": 4.890682269533468, - "c7": 4.478186027214544 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296807, + "c3": 5.917706888580676, + "c4": 4.734165510864538, + "c5": 3.5506241331484065, + "c6": 2.367082755432269, + "c7": 1.183541377716132 }, "rgb": [222, 0, 59] }, @@ -103389,23 +103389,23 @@ "year": 1736, "resistanceReported": false, "duration": 60566400, - "curveSeeds": { - "c1": -24.19011515582389, - "c2": -21.344341201353068, - "c3": 47.68252054806298, - "c4": 19.765364303693204, - "c5": 69.717654160299, - "c6": -75.67204475981285, - "c7": -23.796745503193982 + "points": { + "c1": -66.07032009674971, + "c2": -71.12484844705135, + "c3": -53.994179856266754, + "c4": 0.49797742632370046, + "c5": 15.0923398614256, + "c6": 33.819790803459455, + "c7": 10.044892877540278 }, - "vertexSeeds": { - "c1": 10.295778843440317, - "c2": 9.641206821629872, - "c3": 9.766610678825518, - "c4": 9.973258539210192, - "c5": 9.689349535314882, - "c6": 10.01941423370609, - "c7": 10.186408171020318 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599158, + "c3": 12.413314840499323, + "c4": 9.930651872399451, + "c5": 7.447988904299579, + "c6": 4.965325936199726, + "c7": 2.482662968099854 }, "rgb": [238, 201, 159] }, @@ -103416,23 +103416,23 @@ "year": 1735, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -26.023894497854577, - "c2": 29.359719248631556, - "c3": 16.350982115424742, - "c4": 31.410457209112728, - "c5": -25.215784631837135, - "c6": -17.809707998881233, - "c7": -19.076206606598426 + "points": { + "c1": -19.589879737742585, + "c2": -31.364880742504496, + "c3": -1.860167912735612, + "c4": -11.240321818156914, + "c5": 21.245171567589466, + "c6": 0.7900271538903638, + "c7": -11.124695984076116 }, - "vertexSeeds": { - "c1": 3.2763457156098443, - "c2": 3.449753873144499, - "c3": 3.535587933484515, - "c4": 3.465134733090986, - "c5": 3.7625607003086223, - "c6": 3.311970687663409, - "c7": 3.2300861961969947 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.40915395284327, + "c3": 4.50762829403606, + "c4": 3.60610263522885, + "c5": 2.704576976421635, + "c6": 1.80305131761442, + "c7": 0.90152565880721 }, "rgb": [58, 15, 49] }, @@ -103443,23 +103443,23 @@ "year": 1735, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 18.88557432916261, - "c2": 0.25917877216890517, - "c3": -15.726909197665957, - "c4": 18.00673064442119, - "c5": 13.106038985349358, - "c6": 0.190144121764817, - "c7": 15.553166242250938 + "points": { + "c1": -24.132716559305017, + "c2": -3.337298521622337, + "c3": -17.50936566988316, + "c4": -7.769168834412309, + "c5": 10.355234278612699, + "c6": -6.992283387494538, + "c7": 15.782388904696447 }, - "vertexSeeds": { - "c1": 4.703437192710988, - "c2": 4.800097211505472, - "c3": 5.178365394333916, - "c4": 4.770292473020391, - "c5": 4.59324177934218, - "c6": 4.7347472833601545, - "c7": 4.904202699001884 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -103470,23 +103470,23 @@ "year": 1736, "resistanceReported": false, "duration": 49939200, - "curveSeeds": { - "c1": 21.88271321526024, - "c2": 24.43148312295635, - "c3": 39.493433430334335, - "c4": -15.872850491354242, - "c5": -22.158818064186875, - "c6": -21.0196056516577, - "c7": 25.699547895952534 + "points": { + "c1": 52.70513359801029, + "c2": 0.9804126614971977, + "c3": -57.16395094872286, + "c4": -35.70742034492619, + "c5": -53.76786266022165, + "c6": 33.15298937535388, + "c7": 54.996144641456425 }, - "vertexSeeds": { - "c1": 4.319108269455805, - "c2": 4.651989287896985, - "c3": 4.2857653840349235, - "c4": 4.449771080586001, - "c5": 4.495375722256774, - "c6": 4.659791112794911, - "c7": 4.651961875909249 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814149, + "c3": 5.640314378178453, + "c4": 4.512251502542764, + "c5": 3.3841886269070747, + "c6": 2.256125751271378, + "c7": 1.128062875635689 }, "rgb": [222, 0, 59] }, @@ -103497,23 +103497,23 @@ "year": 1735, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": 34.948584033362096, - "c2": -1.3245268881004009, - "c3": 26.45641606439304, - "c4": -55.50600205214105, - "c5": 11.950573799584717, - "c6": 46.956172503571054, - "c7": -48.52211993953122 + "points": { + "c1": -19.799512161330377, + "c2": -59.45756134813458, + "c3": -10.628534893576635, + "c4": -37.47467791873083, + "c5": -11.851630094428941, + "c6": 9.167352708045371, + "c7": -30.065830892787066 }, - "vertexSeeds": { - "c1": 9.333534478046172, - "c2": 10.522889006288441, - "c3": 11.795345835644664, - "c4": 11.128048840237398, - "c5": 6.157958238867329, - "c6": 10.479467165432112, - "c7": 6.870275266841523 + "offsets": { + "c1": 20.87378640776699, + "c2": 17.891816920943135, + "c3": 14.90984743411928, + "c4": 11.927877947295425, + "c5": 8.945908460471566, + "c6": 5.963938973647712, + "c7": 2.981969486823857 }, "rgb": [238, 201, 159] }, @@ -103524,23 +103524,23 @@ "year": 1735, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -39.90982992674979, - "c2": -25.031283604867767, - "c3": -6.1352389622989065, - "c4": 13.745773271384707, - "c5": 17.16503120267501, - "c6": 17.658137571554832, - "c7": 16.36978941824499 + "points": { + "c1": 21.99419036347875, + "c2": -44.30859590402583, + "c3": 4.474147369430405, + "c4": -31.2740924024253, + "c5": -33.81840539201252, + "c6": 28.892456454550143, + "c7": 41.216539764786106 }, - "vertexSeeds": { - "c1": 1.3660757895648523, - "c2": 1.2690523273649827, - "c3": 1.3514331032882019, - "c4": 1.3616737083084078, - "c5": 1.326379541051216, - "c6": 1.2941360969309619, - "c7": 1.3019426289659488 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959776, + "c3": 1.6643550624133148, + "c4": 1.3314840499306517, + "c5": 0.9986130374479888, + "c6": 0.6657420249653259, + "c7": 0.33287101248266293 }, "rgb": [222, 0, 59] }, @@ -103551,23 +103551,23 @@ "year": 1735, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -33.18492307775134, - "c2": -14.187962361970886, - "c3": -2.442889221963952, - "c4": -24.21718661783118, - "c5": -32.56090388072163, - "c6": -33.37467737710848, - "c7": 26.035982073262907 + "points": { + "c1": 25.215875264769238, + "c2": 33.384450731732755, + "c3": 25.118927010998107, + "c4": 3.7835199256725645, + "c5": 13.420683357035472, + "c6": -6.59836328079739, + "c7": -30.225458667798474 }, - "vertexSeeds": { - "c1": 4.852957626213665, - "c2": 4.852573036668036, - "c3": 4.847005486569041, - "c4": 4.856932253254108, - "c5": 5.0516380889587715, - "c6": 4.940340135938358, - "c7": 5.2634418561993925 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101242, + "c3": 6.380027739251045, + "c4": 5.104022191400831, + "c5": 3.828016643550633, + "c6": 2.5520110957004194, + "c7": 1.276005547850214 }, "rgb": [86, 146, 138] }, @@ -103578,23 +103578,23 @@ "year": 1735, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -20.7439544481062, - "c2": -18.35230912656828, - "c3": 1.0488283910095504, - "c4": -15.479175124295288, - "c5": -7.664210036413815, - "c6": 21.72648751261145, - "c7": 0.16511614128758367 + "points": { + "c1": -22.949505625257153, + "c2": 19.95979251294319, + "c3": 3.526242410463464, + "c4": -23.57211628290969, + "c5": -12.367203021757309, + "c6": 6.4967969962602545, + "c7": 20.01855362919065 }, - "vertexSeeds": { - "c1": 5.2639751339249745, - "c2": 5.2865178944850095, - "c3": 5.771330659212907, - "c4": 5.218589974898226, - "c5": 5.555595725785892, - "c6": 5.842104577675049, - "c7": 6.214160596943186 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072123, + "c3": 7.512713823393437, + "c4": 6.010171058714743, + "c5": 4.507628294036057, + "c6": 3.0050855293573715, + "c7": 1.5025427646786857 }, "rgb": [238, 201, 159] }, @@ -103605,23 +103605,23 @@ "year": 1735, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 28.600046731751956, - "c2": -27.613744835267447, - "c3": 29.154805540891214, - "c4": -4.257892783314148, - "c5": -5.828312628725612, - "c6": -19.972732490392563, - "c7": -4.8502481949022425 + "points": { + "c1": 30.54912639636848, + "c2": 4.515086668376604, + "c3": 14.747232635853493, + "c4": -0.6726274291142076, + "c5": -11.360232727611933, + "c6": 22.27875669402873, + "c7": 28.081187196099265 }, - "vertexSeeds": { - "c1": 6.1647086647486145, - "c2": 6.286943690232256, - "c3": 5.552765586642404, - "c4": 5.642093827705091, - "c5": 5.574887653191465, - "c6": 5.764784075618876, - "c7": 6.014743534667346 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.20943134535368, + "c3": 7.674526121128061, + "c4": 6.1396208969024535, + "c5": 4.604715672676834, + "c6": 3.0698104484512267, + "c7": 1.5349052242256198 }, "rgb": [238, 201, 159] }, @@ -103632,23 +103632,23 @@ "year": 1735, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -31.78826078566826, - "c2": 6.3949020982982105, - "c3": -22.348827026783717, - "c4": -4.416203183304777, - "c5": 13.963296356123301, - "c6": 0.3775659049405178, - "c7": 11.827299048875027 + "points": { + "c1": -27.036365386174037, + "c2": -12.684340970689739, + "c3": 15.009547808402068, + "c4": -2.998757937423292, + "c5": 26.183719899836113, + "c6": -31.228032918807653, + "c7": 1.6683765054441295 }, - "vertexSeeds": { - "c1": 3.611642636822762, - "c2": 3.3654859735571323, - "c3": 3.284324838517483, - "c4": 3.6113359629495436, - "c5": 3.4174196577728235, - "c6": 3.815002590401731, - "c7": 3.814845849162242 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170135, + "c4": 3.6800739713361055, + "c5": 2.760055478502082, + "c6": 1.8400369856680527, + "c7": 0.9200184928340243 }, "rgb": [86, 146, 138] }, @@ -103659,23 +103659,23 @@ "year": 1735, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -16.53859596150986, - "c2": 10.329501372640415, - "c3": 8.873628983842224, - "c4": 19.164395440611713, - "c5": 4.420705139948446, - "c6": -26.401673387664168, - "c7": 19.476463236814546 + "points": { + "c1": -11.132214976757492, + "c2": 14.110569646840183, + "c3": -12.127646861035771, + "c4": -18.558404906382954, + "c5": 24.56431349279542, + "c6": 29.03309081529293, + "c7": -25.747150437503752 }, - "vertexSeeds": { - "c1": 6.363825660310068, - "c2": 6.9185689952596, - "c3": 6.635759420490624, - "c4": 6.476032453316434, - "c5": 6.945682565686787, - "c6": 6.615722712809853, - "c7": 6.407623754482287 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439673, + "c3": 8.298659269533047, + "c4": 6.6389274156264415, + "c5": 4.979195561719837, + "c6": 3.3194637078132105, + "c7": 1.6597318539066053 }, "rgb": [222, 0, 59] }, @@ -103686,23 +103686,23 @@ "year": 1735, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 3.2359650800154753, - "c2": -30.311803156428997, - "c3": 21.581291313983947, - "c4": -18.57576351601067, - "c5": 25.041498891924142, - "c6": 1.1040918314265724, - "c7": -19.798861061321553 + "points": { + "c1": -0.8901546273003191, + "c2": 1.209522216813383, + "c3": 26.125211868806105, + "c4": 13.109983680726366, + "c5": 7.977069043282597, + "c6": 0.09766658185694155, + "c7": -24.53507807559656 }, - "vertexSeeds": { - "c1": 5.987958208336589, - "c2": 5.459680280548364, - "c3": 6.138840640780028, - "c4": 6.05452506337228, - "c5": 6.224954972187285, - "c6": 5.6667313735892675, - "c7": 6.099807871757007 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061022, + "c4": 6.102635228848817, + "c5": 4.576976421636609, + "c6": 3.051317614424403, + "c7": 1.5256588072121964 }, "rgb": [222, 0, 59] }, @@ -103713,23 +103713,23 @@ "year": 1735, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -29.394856463688313, - "c2": -26.681365822996103, - "c3": -11.425224442942877, - "c4": 10.370102863490658, - "c5": 16.076026453074924, - "c6": -20.529501903477875, - "c7": -7.2290938718069455 + "points": { + "c1": -37.38514425855792, + "c2": 31.06743774951444, + "c3": 11.266692012843713, + "c4": 4.705727463324145, + "c5": -23.860612099659058, + "c6": -27.996876908277677, + "c7": -32.216396781545114 }, - "vertexSeeds": { - "c1": 6.29656086176362, - "c2": 6.006194419087212, - "c3": 5.2537989198429935, - "c4": 5.475377083771468, - "c5": 6.109458451807131, - "c6": 5.312540982952417, - "c7": 6.203935488510041 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514566, + "c3": 7.7669902912621325, + "c4": 6.213592233009708, + "c5": 4.660194174757283, + "c6": 3.1067961165048494, + "c7": 1.5533980582524247 }, "rgb": [238, 201, 159] }, @@ -103740,23 +103740,23 @@ "year": 1735, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 20.816708049343738, - "c2": 36.04167999307791, - "c3": 11.605213784348265, - "c4": 7.062518822870786, - "c5": 30.286644870455113, - "c6": -24.177512577394094, - "c7": -29.980608794890763 + "points": { + "c1": 1.2172780592401296, + "c2": 26.191083399290385, + "c3": -22.397961931521568, + "c4": -1.8085326741481325, + "c5": 28.647403291730903, + "c6": 31.18215135753332, + "c7": 11.4764561319259 }, - "vertexSeeds": { - "c1": 5.536989752139652, - "c2": 5.358121212278663, - "c3": 5.580202660220929, - "c4": 5.167089959821602, - "c5": 5.269186189641473, - "c6": 5.744243363411546, - "c7": 5.329155618613613 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055474, + "c4": 5.547850208044376, + "c5": 4.160887656033278, + "c6": 2.7739251040221955, + "c7": 1.3869625520110977 }, "rgb": [77, 76, 132] }, @@ -103767,23 +103767,23 @@ "year": 1735, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 5.606305612979213, - "c2": -26.644084079763324, - "c3": -3.4302696347839223, - "c4": -19.837030794768214, - "c5": -17.11448515255628, - "c6": -9.093759726252177, - "c7": 14.286094995077406 + "points": { + "c1": -6.940515669313005, + "c2": -0.3469043331119295, + "c3": -22.65580837386514, + "c4": 20.532635990972842, + "c5": 18.562801576895886, + "c6": 13.818302638462484, + "c7": 21.355628238446073 }, - "vertexSeeds": { - "c1": 3.3772129644838786, - "c2": 3.266013301534335, - "c3": 3.546707866684737, - "c4": 3.482615045112596, - "c5": 3.355182221029981, - "c6": 3.412374825381031, - "c7": 3.470412419125828 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561716, + "c3": 4.345815996301434, + "c4": 3.4766527970411443, + "c5": 2.607489597780862, + "c6": 1.7383263985205721, + "c7": 0.8691631992602901 }, "rgb": [58, 15, 49] }, @@ -103794,23 +103794,23 @@ "year": 1736, "resistanceReported": false, "duration": 42854400, - "curveSeeds": { - "c1": 16.62909314681759, - "c2": 54.44470021492619, - "c3": 9.373201884073474, - "c4": 5.6185690159257575, - "c5": 30.44907448865697, - "c6": 6.592416051315119, - "c7": -16.41380999197513 + "points": { + "c1": 49.58001238692116, + "c2": 8.267231613999947, + "c3": 6.181167076586597, + "c4": -21.47705058785592, + "c5": 26.530686836509098, + "c6": 20.28658114920507, + "c7": 9.800617466357345 }, - "vertexSeeds": { - "c1": 1.6411853481399254, - "c2": 1.621292162552738, - "c3": 1.6637948263197904, - "c4": 1.522940528577683, - "c5": 1.6414699461733746, - "c6": 1.4128495004071826, - "c7": 1.4213110944787015 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797515, + "c3": 2.057327785483127, + "c4": 1.6458622283864999, + "c5": 1.2343966712898757, + "c6": 0.8229311141932513, + "c7": 0.4114655570966269 }, "rgb": [222, 0, 59] }, @@ -103821,23 +103821,23 @@ "year": 1735, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 23.814255022762183, - "c2": 0.9863894209281554, - "c3": 7.803543322264794, - "c4": 9.235047378770055, - "c5": -10.120348040500726, - "c6": -32.9490998973829, - "c7": -23.83686208496717 + "points": { + "c1": 35.21627868420913, + "c2": 7.779514373852969, + "c3": -30.85728175248339, + "c4": 10.91919361689299, + "c5": -5.680030093200056, + "c6": 12.829511562470572, + "c7": -9.94092984041339 }, - "vertexSeeds": { - "c1": 5.3025542208329055, - "c2": 5.408086942541709, - "c3": 4.82704672130407, - "c4": 5.320247680614249, - "c5": 5.176240991005432, - "c6": 5.527995724785084, - "c7": 5.185472103697915 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.04438280166436, + "c3": 6.703652334720291, + "c4": 5.362921867776238, + "c5": 4.022191400832183, + "c6": 2.6814609338881157, + "c7": 1.340730466944061 }, "rgb": [222, 0, 59] }, @@ -103848,23 +103848,23 @@ "year": 1735, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -19.782063648947446, - "c2": -22.212611334177296, - "c3": -15.647639049916972, - "c4": -27.265013885137442, - "c5": -20.100965228796515, - "c6": 10.134647411413916, - "c7": -33.146988287417635 + "points": { + "c1": 23.287366135385092, + "c2": -19.676171422056296, + "c3": -33.34903314717671, + "c4": -28.300928272074977, + "c5": -7.066578626854341, + "c6": -19.813325072497886, + "c7": -30.73589151914431 }, - "vertexSeeds": { - "c1": 4.983201900968487, - "c2": 5.113298309408619, - "c3": 4.828921925408249, - "c4": 5.012264964444659, - "c5": 5.097696614872478, - "c6": 4.712802973602955, - "c7": 4.74039262189401 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900137, + "c3": 6.264447526583446, + "c4": 5.01155802126676, + "c5": 3.7586685159500686, + "c6": 2.5057790106333773, + "c7": 1.252889505316691 }, "rgb": [58, 15, 49] }, @@ -103875,23 +103875,23 @@ "year": 1735, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 38.473845797503095, - "c2": 28.50911735224191, - "c3": -8.089447463467359, - "c4": -3.1927943097628244, - "c5": -3.1416736700761163, - "c6": -25.233142597376766, - "c7": -26.83230195152381 + "points": { + "c1": 40.856691565385965, + "c2": -22.052799327989263, + "c3": 3.324152044026718, + "c4": 12.709432220293074, + "c5": 37.26090994607127, + "c6": -35.752130886028475, + "c7": -26.192775010434293 }, - "vertexSeeds": { - "c1": 6.176574783989134, - "c2": 6.521761660206563, - "c3": 6.60168438813473, - "c4": 6.146041247261769, - "c5": 6.638899129288158, - "c6": 6.3271088598244525, - "c7": 6.596626445102741 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.9981507165973165, + "c4": 6.3985205732778585, + "c5": 4.798890429958387, + "c6": 3.1992602866389293, + "c7": 1.599630143319471 }, "rgb": [86, 146, 138] }, @@ -103902,23 +103902,23 @@ "year": 1735, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 20.025456125091196, - "c2": 24.03534077160672, - "c3": -32.80910736022925, - "c4": 17.78030485548738, - "c5": 18.626778220806017, - "c6": -13.693246662564267, - "c7": 12.008410755954436 + "points": { + "c1": 2.639113271315331, + "c2": 0.6379836431877806, + "c3": 8.759042418515762, + "c4": 10.646674959031003, + "c5": 38.197931485188725, + "c6": -22.393684777143264, + "c7": 29.728315758351975 }, - "vertexSeeds": { - "c1": 1.3951305863544656, - "c2": 1.3372930997399108, - "c3": 1.4483373264467054, - "c4": 1.3168383887704727, - "c5": 1.287892932047182, - "c6": 1.3156979735857948, - "c7": 1.2374491348407302 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097088, + "c3": 1.7799352750809059, + "c4": 1.4239482200647255, + "c5": 1.067961165048543, + "c6": 0.7119741100323628, + "c7": 0.3559870550161802 }, "rgb": [77, 76, 132] }, @@ -103929,23 +103929,23 @@ "year": 1735, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -6.06392202014618, - "c2": 5.726216042269208, - "c3": 22.48229123024, - "c4": -13.803122701373695, - "c5": -0.20130854185205038, - "c6": -31.68242758581294, - "c7": -31.376085262584418 + "points": { + "c1": 22.12273269772888, + "c2": 7.926219888893456, + "c3": -1.8603425582464794, + "c4": 29.1078029898282, + "c5": 39.70080057046019, + "c6": 5.087777863141511, + "c7": -10.144705648184903 }, - "vertexSeeds": { - "c1": 4.995811451214925, - "c2": 5.206501495984039, - "c3": 5.161917679155535, - "c4": 4.977820467250608, - "c5": 4.960298806528127, - "c6": 5.783583154763171, - "c7": 5.661313447184719 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227458, + "c3": 7.027276930189554, + "c4": 5.621821544151641, + "c5": 4.216366158113737, + "c6": 2.8109107720758226, + "c7": 1.4054553860379089 }, "rgb": [86, 146, 138] }, @@ -103956,23 +103956,23 @@ "year": 1735, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": -14.852213699326601, - "c2": -5.264767202213935, - "c3": 14.604073197544992, - "c4": 12.644659545153662, - "c5": -6.103264270324129, - "c6": -5.193669624782917, - "c7": 1.4962744457338317 + "points": { + "c1": 12.78563881593308, + "c2": 14.291026982223123, + "c3": 12.308721218397192, + "c4": 4.5490920048472, + "c5": 10.566264745701798, + "c6": 0.15701004395174678, + "c7": 16.327887782215136 }, - "vertexSeeds": { - "c1": 5.6769724817188205, - "c2": 5.854044948818942, - "c3": 5.730915098732277, - "c4": 5.525720615465454, - "c5": 5.8063113173464975, - "c6": 5.7382430759942995, - "c7": 5.7240906687753 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [77, 76, 132] }, @@ -103983,23 +103983,23 @@ "year": 1735, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -5.296168377781793, - "c2": -23.163774515496698, - "c3": -0.5779377150472627, - "c4": 20.16990693772776, - "c5": -1.6931196233632129, - "c6": -19.08991403949664, - "c7": -5.88850710157951 + "points": { + "c1": -3.6548836134566116, + "c2": 24.061519679187285, + "c3": 16.938753721585947, + "c4": 0.32463462698633805, + "c5": 13.431204918878969, + "c6": -0.14900932802623146, + "c7": 5.220254879343109 }, - "vertexSeeds": { - "c1": 7.689518468078209, - "c2": 7.470127540830304, - "c3": 7.96334506493549, - "c4": 7.953792941587569, - "c5": 8.155056053350515, - "c6": 7.6689551007139745, - "c7": 7.572313424534484 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858535, + "c3": 10.263522884882105, + "c4": 8.21081830790569, + "c5": 6.158113730929261, + "c6": 4.105409153952845, + "c7": 2.052704576976429 }, "rgb": [77, 76, 132] }, @@ -104010,23 +104010,23 @@ "year": 1735, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 14.942906511771561, - "c2": 13.170277077688596, - "c3": -30.146677731234874, - "c4": -20.647339382823247, - "c5": -31.707993376029986, - "c6": 19.069771383105476, - "c7": -28.426822269159775 + "points": { + "c1": -14.506918654067587, + "c2": -0.9176977432358271, + "c3": 6.1389496812446325, + "c4": 16.34798814415003, + "c5": 11.91649490190079, + "c6": 18.115765803970298, + "c7": 22.17556882924754 }, - "vertexSeeds": { - "c1": 2.4405776353078985, - "c2": 2.4807745752690584, - "c3": 2.5824202949754085, - "c4": 2.4875864818652005, - "c5": 2.3206704451387092, - "c6": 2.4264502554748413, - "c7": 2.502202814540208 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [86, 146, 138] }, @@ -104037,23 +104037,23 @@ "year": 1735, "resistanceReported": false, "duration": 4838400, - "curveSeeds": { - "c1": -8.79411264908946, - "c2": 10.820024093109414, - "c3": -10.087733508876315, - "c4": 9.480101836149395, - "c5": -3.58692576308262, - "c6": -10.440309431356674, - "c7": 11.871557749523888 + "points": { + "c1": 0.9867547676459267, + "c2": 8.233786531581547, + "c3": 7.375933058075848, + "c4": -8.05138654958048, + "c5": 1.6469095608466802, + "c6": 7.23752477644523, + "c7": 3.8165000733699976 }, - "vertexSeeds": { - "c1": 4.293888593773259, - "c2": 4.734228994232905, - "c3": 4.548792091984689, - "c4": 4.3882815464364455, - "c5": 4.96635912769175, - "c6": 4.7649776564911, - "c7": 4.705428344336568 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -104064,23 +104064,23 @@ "year": 1735, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -19.012956811707735, - "c2": 26.462949893885757, - "c3": 44.49031030830472, - "c4": -4.5018580604979235, - "c5": -36.19424171076126, - "c6": 41.459049826230846, - "c7": -17.36147694262074 + "points": { + "c1": -12.31245166658126, + "c2": -37.88697649178824, + "c3": -37.22856937713332, + "c4": -23.21024246338454, + "c5": 34.97011865194745, + "c6": 44.8343411747561, + "c7": -38.179808375422084 }, - "vertexSeeds": { - "c1": 2.956857430360747, - "c2": 2.7704404961690683, - "c3": 3.00778306005264, - "c4": 2.8903592790690213, - "c5": 2.910489052638554, - "c6": 2.911033597194542, - "c7": 2.9811510128754195 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.3273231622746176, + "c3": 3.6061026352288486, + "c4": 2.8848821081830787, + "c5": 2.1636615811373088, + "c6": 1.4424410540915393, + "c7": 0.7212205270457697 }, "rgb": [238, 201, 159] }, @@ -104091,23 +104091,23 @@ "year": 1735, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -13.0464021757444, - "c2": 3.2952674686975314, - "c3": -19.358610530745906, - "c4": -15.171265000157497, - "c5": -16.010689062351087, - "c6": -30.161507484606894, - "c7": 13.369322593763272 + "points": { + "c1": -22.565505890825943, + "c2": 33.44223143904337, + "c3": 37.33671362153102, + "c4": 25.240271496603654, + "c5": -1.2162162335646087, + "c6": 34.22641972152152, + "c7": 2.699771605616448 }, - "vertexSeeds": { - "c1": 5.413179691568389, - "c2": 4.995561072214134, - "c3": 5.114165464320955, - "c4": 5.152528933276499, - "c5": 4.965825425257962, - "c6": 5.302559956946196, - "c7": 5.5498980658208215 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.15533980582524, + "c3": 6.796116504854369, + "c4": 5.4368932038834945, + "c5": 4.07766990291262, + "c6": 2.7184466019417473, + "c7": 1.3592233009708736 }, "rgb": [222, 0, 59] }, @@ -104118,23 +104118,23 @@ "year": 1735, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -11.758897112464254, - "c2": 20.463228118628273, - "c3": 6.96130736565739, - "c4": 27.167158331013944, - "c5": -28.381359381131418, - "c6": -2.9134562165047484, - "c7": -17.51313371089779 + "points": { + "c1": 29.491220928898592, + "c2": 27.28708996204159, + "c3": -3.2987324369198383, + "c4": 0.18006703251140976, + "c5": -0.6593659551953728, + "c6": 2.872676722690713, + "c7": 25.86410624946801 }, - "vertexSeeds": { - "c1": 7.4974143372309054, - "c2": 7.504796222016515, - "c3": 7.535386354441368, - "c4": 7.405996303195595, - "c5": 7.551904930028647, - "c6": 7.481160646033465, - "c7": 7.550137912570385 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.90152565880723, + "c3": 9.084604715672649, + "c4": 7.267683772538132, + "c5": 5.450762829403615, + "c6": 3.6338418862690327, + "c7": 1.8169209431345164 }, "rgb": [238, 201, 159] }, @@ -104145,23 +104145,23 @@ "year": 1735, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -37.979525925881475, - "c2": -15.800578354471046, - "c3": 28.554533314484473, - "c4": -21.912675981785224, - "c5": 2.743652591998895, - "c6": -16.951702757227743, - "c7": -21.250231036574192 + "points": { + "c1": -27.434343178608884, + "c2": -7.636166294855798, + "c3": 19.709215140983147, + "c4": -21.058839355538826, + "c5": -16.558302804900524, + "c6": 19.98758934350913, + "c7": -7.370410222724367 }, - "vertexSeeds": { - "c1": 3.733949247181147, - "c2": 4.307598959602403, - "c3": 4.337984398338291, - "c4": 4.183467747570431, - "c5": 3.777954496890442, - "c6": 3.7746763680538136, - "c7": 4.260226738506609 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251041, + "c3": 5.316689782709199, + "c4": 4.253351826167363, + "c5": 3.1900138696255222, + "c6": 2.1266759130836816, + "c7": 1.0633379565418408 }, "rgb": [58, 15, 49] }, @@ -104172,23 +104172,23 @@ "year": 1735, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 26.96525079275287, - "c2": 0.7430209093634303, - "c3": 31.374374598139255, - "c4": -7.697317521361288, - "c5": -6.81417226854736, - "c6": -15.011415165605907, - "c7": -30.6267057550822 + "points": { + "c1": 19.426459531260058, + "c2": 22.289387168862262, + "c3": 24.64918725711867, + "c4": 17.461899488327276, + "c5": 14.530849043678224, + "c6": -29.440547470014884, + "c7": -32.61828272173922 }, - "vertexSeeds": { - "c1": 8.339509991792143, - "c2": 8.034956179162833, - "c3": 7.812071559490866, - "c4": 7.9349430343054195, - "c5": 8.355147947984797, - "c6": 8.045220937294975, - "c7": 7.872704579979644 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [86, 146, 138] }, @@ -104199,23 +104199,23 @@ "year": 1735, "resistanceReported": false, "duration": 691200, - "curveSeeds": { - "c1": -2.0941855964103375, - "c2": 8.831509029256269, - "c3": -0.09709992512826204, - "c4": 8.175156903661088, - "c5": 0.9670801383907932, - "c6": -5.50578918328535, - "c7": -0.14890079164175063 + "points": { + "c1": -3.1729914424264543, + "c2": -1.3399020658338774, + "c3": -8.117870263132414, + "c4": -7.42938356873068, + "c5": 10.867901851296343, + "c6": 4.055696750903019, + "c7": 8.93441278528111 }, - "vertexSeeds": { - "c1": 4.362595643520162, - "c2": 4.252975434989384, - "c3": 5.006704514172708, - "c4": 5.126614344527907, - "c5": 4.882311659858598, - "c6": 4.54424970574976, - "c7": 4.851644119831246 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -104226,23 +104226,23 @@ "year": 1736, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 34.011636832391105, - "c2": 20.509566788409543, - "c3": 11.696719319144748, - "c4": -44.12805017650085, - "c5": 42.40806406192961, - "c6": -17.42966124968029, - "c7": -37.872520554564225 + "points": { + "c1": -39.391727230182916, + "c2": -13.125686447408249, + "c3": 3.4940720359020645, + "c4": -2.4403054310224377, + "c5": 5.728221799486519, + "c6": 29.667181013009795, + "c7": -15.48998853855586 }, - "vertexSeeds": { - "c1": 3.652248338341172, - "c2": 3.761888758170106, - "c3": 3.8129603170106927, - "c4": 3.5862230620152085, - "c5": 3.835928267337146, - "c6": 3.795012595823861, - "c7": 3.513975611439791 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703652, + "c4": 3.6985668053629213, + "c5": 2.773925104022191, + "c6": 1.8492834026814606, + "c7": 0.9246417013407303 }, "rgb": [238, 201, 159] }, @@ -104253,23 +104253,23 @@ "year": 1735, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 2.2963220227321983, - "c2": -30.71813891518106, - "c3": 25.5478343162559, - "c4": 39.07068778941178, - "c5": 22.082173667973663, - "c6": -4.921160924578103, - "c7": 10.572199770402769 + "points": { + "c1": 18.369312043428664, + "c2": 22.005937402636214, + "c3": 38.40963805953304, + "c4": 15.112491265947966, + "c5": -35.43525425855224, + "c6": 33.18733244277065, + "c7": -20.171966836040447 }, - "vertexSeeds": { - "c1": 5.413752705187829, - "c2": 5.735869683829716, - "c3": 5.483722093470706, - "c4": 5.438679166157658, - "c5": 5.454901296774146, - "c6": 5.61995396793102, - "c7": 5.337671851914815 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802588989, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605177904 }, "rgb": [238, 201, 159] }, @@ -104280,23 +104280,23 @@ "year": 1735, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -17.888399024921327, - "c2": -0.7896018288723283, - "c3": -30.820079853987494, - "c4": -16.90511493216152, - "c5": 1.6837887660355761, - "c6": -10.608075258713829, - "c7": 3.180520018331464 + "points": { + "c1": -4.200396470804215, + "c2": 28.765022524584076, + "c3": 6.48849219109308, + "c4": 25.25796508110345, + "c5": -8.635470721097473, + "c6": 8.55445579817767, + "c7": 6.925582897296472 }, - "vertexSeeds": { - "c1": 3.250750696227754, - "c2": 3.108246936692195, - "c3": 2.816370655828863, - "c4": 2.839385527953918, - "c5": 3.178058170408492, - "c6": 3.370228091411027, - "c7": 2.7875160939050234 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079056, + "c3": 4.068423485899217, + "c4": 3.254738788719372, + "c5": 2.441054091539528, + "c6": 1.6273693943596885, + "c7": 0.8136846971798443 }, "rgb": [238, 201, 159] }, @@ -104307,23 +104307,23 @@ "year": 1735, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 6.274313814720884, - "c2": 9.805993815551858, - "c3": -16.95856449094697, - "c4": -6.980324971405238, - "c5": 3.550107762605755, - "c6": 14.02163434369421, - "c7": -6.601794202052588 + "points": { + "c1": -7.082477111269686, + "c2": -11.324762029779386, + "c3": -14.520232605851007, + "c4": -16.260354317136755, + "c5": -4.4163193675901695, + "c6": 23.13880724934448, + "c7": 21.350820558986115 }, - "vertexSeeds": { - "c1": 5.14792258864331, - "c2": 5.1063510354942485, - "c3": 4.994214966818408, - "c4": 5.688712472574905, - "c5": 5.22530526418557, - "c6": 5.4106886326107855, - "c7": 5.0570511420318764 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.888580674988445, + "c4": 5.510864539990753, + "c5": 4.133148404993062, + "c6": 2.755432269995379, + "c7": 1.377716134997687 }, "rgb": [77, 76, 132] }, @@ -104334,23 +104334,23 @@ "year": 1735, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 0.03134239350989887, - "c2": -5.8258341843340595, - "c3": 9.376611929648647, - "c4": -22.06114026179236, - "c5": 12.475684828011708, - "c6": 12.67351111137598, - "c7": 14.708990974130053 + "points": { + "c1": 8.519292944835406, + "c2": -10.793562042013864, + "c3": -25.105927666574615, + "c4": -6.980407817112653, + "c5": 6.262414089721538, + "c6": -27.818816295121582, + "c7": -5.4571354591337595 }, - "vertexSeeds": { - "c1": 8.871735468185216, - "c2": 8.392409120878998, - "c3": 8.408183826187637, - "c4": 8.4675382528481, - "c5": 9.328797859003135, - "c6": 8.457450997122596, - "c7": 8.949593999133157 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467411, + "c3": 11.188164586222832, + "c4": 8.950531668978268, + "c5": 6.7128987517337055, + "c6": 4.475265834489128, + "c7": 2.237632917244564 }, "rgb": [58, 15, 49] }, @@ -104361,23 +104361,23 @@ "year": 1735, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -10.858807093175063, - "c2": 11.535491411302655, - "c3": 3.2285011853689376, - "c4": 12.98663325419874, - "c5": -8.193039538100194, - "c6": -24.818310711600397, - "c7": 24.198114834875415 + "points": { + "c1": 8.185127583970168, + "c2": 23.39398272055576, + "c3": 22.314175367211224, + "c4": -18.697937096778826, + "c5": -23.840430514403764, + "c6": -11.477313517409467, + "c7": 17.368483774631205 }, - "vertexSeeds": { - "c1": 3.066653405170909, - "c2": 3.052443076062838, - "c3": 2.8982733439162494, - "c4": 3.025461558910621, - "c5": 3.0302922286729714, - "c6": 3.094622909288295, - "c7": 2.857233923208291 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556174, + "c3": 3.7679149329634756, + "c4": 3.014331946370783, + "c5": 2.260748959778084, + "c6": 1.5071659731853915, + "c7": 0.753582986592699 }, "rgb": [77, 76, 132] }, @@ -104388,23 +104388,23 @@ "year": 1735, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -26.238697679635095, - "c2": -25.185622206551294, - "c3": 21.822496355415, - "c4": 12.4198078315972, - "c5": -11.827089063379198, - "c6": -22.537469411853795, - "c7": -8.61402077294694 + "points": { + "c1": 28.058121149851655, + "c2": -6.036101546783261, + "c3": 16.959752313249883, + "c4": 4.416911661434387, + "c5": -28.711895104662517, + "c6": -27.730989375019945, + "c7": 28.380396146923868 }, - "vertexSeeds": { - "c1": 7.065489711105748, - "c2": 7.06916327494037, - "c3": 7.066736648495081, - "c4": 7.068737238057012, - "c5": 7.0652250178473235, - "c6": 7.062743595322936, - "c7": 7.068375666736136 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.12482662968071, + "c3": 8.437355524734262, + "c4": 6.749884419787141, + "c5": 5.062413314840691, + "c6": 3.3749422098935704, + "c7": 1.687471104947121 }, "rgb": [58, 15, 49] }, @@ -104415,23 +104415,23 @@ "year": 1735, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 24.32461255217645, - "c2": -13.004264640878542, - "c3": 25.668831307211985, - "c4": 30.74026239464178, - "c5": 22.542232944250205, - "c6": -22.110168429626995, - "c7": 30.29338615305844 + "points": { + "c1": -9.946428220556463, + "c2": -12.485053960748523, + "c3": -30.922410160445295, + "c4": -10.32460612125984, + "c5": -14.582804342191714, + "c6": -1.0564911912249428, + "c7": -2.808428360878093 }, - "vertexSeeds": { - "c1": 5.10547940444711, - "c2": 5.2030569905881, - "c3": 5.289446945926725, - "c4": 5.309282871792873, - "c5": 5.353764126356521, - "c6": 5.089457091769613, - "c7": 5.097088817315064 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141475, + "c3": 6.403143781784568, + "c4": 5.122515025427629, + "c5": 3.8418862690707214, + "c6": 2.5612575127138144, + "c7": 1.2806287563569072 }, "rgb": [238, 201, 159] }, @@ -104442,23 +104442,23 @@ "year": 1735, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -25.75943695141804, - "c2": -4.953999604813035, - "c3": -22.867010783565448, - "c4": 7.491085053643076, - "c5": -9.937266542044728, - "c6": -30.656198598472756, - "c7": 14.742575167666374 + "points": { + "c1": 13.613654331400092, + "c2": -34.43117389563878, + "c3": -2.7023618330367896, + "c4": -15.048975151898265, + "c5": 11.368215849933698, + "c6": 0.8888731513390695, + "c7": 14.501572754714296 }, - "vertexSeeds": { - "c1": 5.696939406753462, - "c2": 5.864221570823212, - "c3": 5.914173500659289, - "c4": 5.852686188228372, - "c5": 5.965333197565645, - "c6": 6.201131285874791, - "c7": 5.521298437643591 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -104469,23 +104469,23 @@ "year": 1736, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 33.193056776293425, - "c2": -26.930155132175525, - "c3": -39.95364399834782, - "c4": 22.90102388021645, - "c5": 19.129883226646292, - "c6": -4.707861855642584, - "c7": 43.73202611831481 + "points": { + "c1": 36.58548025545965, + "c2": -20.892678422411613, + "c3": -33.834685573824075, + "c4": 1.0620028888593396, + "c5": -31.76194984915675, + "c6": -9.8210659015256, + "c7": -22.34148080472159 }, - "vertexSeeds": { - "c1": 12.245726388096388, - "c2": 12.155154749273466, - "c3": 13.321123061654657, - "c4": 12.584703316026342, - "c5": 12.349600975430214, - "c6": 12.060654878841255, - "c7": 12.804232983707934 + "offsets": { + "c1": 22.97734627831715, + "c2": 19.694868238557554, + "c3": 16.412390198797958, + "c4": 13.129912159038385, + "c5": 9.84743411927879, + "c6": 6.564956079519193, + "c7": 3.2824780397595963 }, "rgb": [238, 201, 159] }, @@ -104496,23 +104496,23 @@ "year": 1735, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 7.381831720124822, - "c2": 6.64333642546427, - "c3": 17.927974035076637, - "c4": 22.85280992464147, - "c5": -6.5202027772071744, - "c6": 20.209509864846623, - "c7": 7.5186793279850335 + "points": { + "c1": -23.06342710968809, + "c2": -17.588815508129755, + "c3": 23.812288768611545, + "c4": 22.212857192368794, + "c5": -10.534366835508827, + "c6": 2.4413648212880297, + "c7": -19.33472619933358 }, - "vertexSeeds": { - "c1": 3.332459272746688, - "c2": 3.2722485018381384, - "c3": 3.3063377139523644, - "c4": 3.152893287997299, - "c5": 3.3444122297278387, - "c6": 3.099943940704105, - "c7": 3.4611476317959835 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280164, + "c3": 4.184003698566808, + "c4": 3.3472029588534453, + "c5": 2.510402219140082, + "c6": 1.6736014794267193, + "c7": 0.8368007397133629 }, "rgb": [77, 76, 132] }, @@ -104523,23 +104523,23 @@ "year": 1736, "resistanceReported": false, "duration": 44496000, - "curveSeeds": { - "c1": -42.17525244045491, - "c2": 54.36457954385175, - "c3": -28.466772271440973, - "c4": -16.522051327179, - "c5": -36.403752442471514, - "c6": 40.239358257524316, - "c7": 31.938453900576263 + "points": { + "c1": -22.630049076594666, + "c2": 49.935904632971386, + "c3": -56.228785728251026, + "c4": 60.26948572184206, + "c5": 22.08086663543523, + "c6": -19.637389183493788, + "c7": 6.265166730554384 }, - "vertexSeeds": { - "c1": 5.8882792554719305, - "c2": 6.284978743387629, - "c3": 6.810584359434445, - "c4": 7.342722170533612, - "c5": 6.610198453721608, - "c6": 6.076828125352319, - "c7": 6.5484034469413785 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450767, + "c3": 9.454461396208968, + "c4": 7.563569116967176, + "c5": 5.672676837725383, + "c6": 3.7817845584835843, + "c7": 1.8908922792417922 }, "rgb": [77, 76, 132] }, @@ -104550,23 +104550,23 @@ "year": 1736, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -5.639793652037291, - "c2": 20.171750905931525, - "c3": 24.156322152045774, - "c4": 2.862500523877806, - "c5": 31.53463347274031, - "c6": -26.81621250128795, - "c7": 10.82327221670397 + "points": { + "c1": -9.08792032690561, + "c2": 15.275253210989554, + "c3": -4.5499181971566145, + "c4": 8.645621818921903, + "c5": -7.9936272723354875, + "c6": 30.763434931430027, + "c7": -36.49482613309584 }, - "vertexSeeds": { - "c1": 6.303240868324872, - "c2": 7.295936208629171, - "c3": 6.701313678089163, - "c4": 6.545710511680104, - "c5": 7.19930283601037, - "c6": 7.121119334480201, - "c7": 7.0529846855163045 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364768, + "c3": 8.830328247803982, + "c4": 7.064262598243184, + "c5": 5.298196948682384, + "c6": 3.532131299121586, + "c7": 1.766065649560799 }, "rgb": [238, 201, 159] }, @@ -104577,23 +104577,23 @@ "year": 1735, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -14.527509730469232, - "c2": -7.910026899778863, - "c3": -25.009791477817863, - "c4": -25.011315612828348, - "c5": 15.301076889534087, - "c6": 15.188962617714388, - "c7": 4.382674679684172 + "points": { + "c1": 4.349021345490193, + "c2": -11.95569657510897, + "c3": -19.214211773512417, + "c4": 12.698276259677783, + "c5": -8.164227977809027, + "c6": 19.932051252023626, + "c7": -14.416255057256404 }, - "vertexSeeds": { - "c1": 4.238739407671496, - "c2": 4.663579125551116, - "c3": 4.43528855990492, - "c4": 5.0197233692324215, - "c5": 5.06929650838732, - "c6": 5.089612860413405, - "c7": 4.544419720996989 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -104604,23 +104604,23 @@ "year": 1736, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -7.704404029603026, - "c2": -9.860225576969796, - "c3": -33.330935187426356, - "c4": 5.35628007882157, - "c5": 5.021833530339386, - "c6": -7.200770318745345, - "c7": -30.314812385109192 + "points": { + "c1": 34.660160388536035, + "c2": -31.36498730863815, + "c3": 16.98397834633616, + "c4": 5.1797220500232015, + "c5": 20.652016375309785, + "c6": 15.021953613442449, + "c7": -14.33255478970704 }, - "vertexSeeds": { - "c1": 8.227791878430029, - "c2": 8.687971565735884, - "c3": 8.444806503981859, - "c4": 8.504479028388596, - "c5": 8.5086504291106, - "c6": 8.190594864154129, - "c7": 8.36158499501892 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.370319001386964, + "c3": 11.141932501155807, + "c4": 8.913546000924635, + "c5": 6.685159500693476, + "c6": 4.456773000462317, + "c7": 2.2283865002311587 }, "rgb": [222, 0, 59] }, @@ -104631,23 +104631,23 @@ "year": 1735, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 24.138216241415734, - "c2": -9.49694693577704, - "c3": 10.543513136638197, - "c4": 26.716342345664557, - "c5": 8.829431524953101, - "c6": 13.182580293810368, - "c7": 28.030625398140806 + "points": { + "c1": -1.1318756449357856, + "c2": 7.844693779219909, + "c3": -23.758736976250844, + "c4": -11.901502783276634, + "c5": -24.685192227705986, + "c6": -27.54695204973365, + "c7": 16.79718950201555 }, - "vertexSeeds": { - "c1": 5.427451099716288, - "c2": 5.389609163490829, - "c3": 4.836542238546955, - "c4": 4.659551836688389, - "c5": 5.126496189144476, - "c6": 5.031935526577536, - "c7": 4.712230930862621 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710128, + "c3": 7.30466944059177, + "c4": 5.843735552473419, + "c5": 4.3828016643550605, + "c6": 2.9218677762367093, + "c7": 1.4609338881183547 }, "rgb": [222, 0, 59] }, @@ -104658,23 +104658,23 @@ "year": 1735, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -3.0233132006913124, - "c2": -7.256286481917595, - "c3": -2.6148542450741736, - "c4": -19.3922509814496, - "c5": -20.353533833566132, - "c6": -5.574250884704643, - "c7": 9.659040427754295 + "points": { + "c1": -14.934314097447082, + "c2": -19.774334228219715, + "c3": 4.835603247766631, + "c4": -1.5195934713613255, + "c5": -17.3916703981312, + "c6": -13.36178324250027, + "c7": 12.28888490156849 }, - "vertexSeeds": { - "c1": 4.541091235301954, - "c2": 4.001428197505229, - "c3": 4.6147926827635075, - "c4": 3.866597655548851, - "c5": 4.1933525027075085, - "c6": 4.628121886195556, - "c7": 4.1781319120441704 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -104685,23 +104685,23 @@ "year": 1736, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 6.261695204467113, - "c2": 13.73271819620842, - "c3": 14.57093000970448, - "c4": -9.099577191215111, - "c5": -4.093928162247646, - "c6": 28.342013374785775, - "c7": 1.6946482577916235 + "points": { + "c1": -6.52325433563318, + "c2": -21.528529732606785, + "c3": 10.243836169916825, + "c4": -1.1300654257606126, + "c5": 31.576898403837774, + "c6": 18.908992957412508, + "c7": -25.111431659084467 }, - "vertexSeeds": { - "c1": 5.809724470148283, - "c2": 5.796580128056334, - "c3": 5.860339304315965, - "c4": 5.577114719032626, - "c5": 5.565442952453185, - "c6": 5.274054227970871, - "c7": 5.213440275582878 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307905, + "c3": 7.073509015256586, + "c4": 5.658807212205266, + "c5": 4.244105409153958, + "c6": 2.829403606102639, + "c7": 1.4147018030513194 }, "rgb": [77, 76, 132] }, @@ -104712,23 +104712,23 @@ "year": 1735, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 7.9791175755927775, - "c2": 26.681848409585587, - "c3": 27.360723856787754, - "c4": -5.7098241983222415, - "c5": -18.138233559804405, - "c6": 2.11634803669261, - "c7": -26.12940878990585 + "points": { + "c1": 29.258840489421775, + "c2": -11.212113530623721, + "c3": -23.975525618448074, + "c4": 3.6971036003842634, + "c5": 25.25037334480503, + "c6": -31.474312680777224, + "c7": 14.722417238421603 }, - "vertexSeeds": { - "c1": 14.867324756443864, - "c2": 14.670674070394744, - "c3": 14.713060316621608, - "c4": 14.901475500318721, - "c5": 14.671643307993909, - "c6": 14.600212637861224, - "c7": 14.895957142768115 + "offsets": { + "c1": 24.854368932038835, + "c2": 21.303744798890374, + "c3": 17.753120665742042, + "c4": 14.202496532593585, + "c5": 10.65187239944525, + "c6": 7.101248266296793, + "c7": 3.550624133148335 }, "rgb": [222, 0, 59] }, @@ -104739,23 +104739,23 @@ "year": 1736, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 3.0285899776569636, - "c2": -3.428861660504001, - "c3": -21.421797746138253, - "c4": -11.820072399158693, - "c5": -16.430220346353728, - "c6": 4.276725410455256, - "c7": -2.9355268912088626 + "points": { + "c1": 25.613374078619728, + "c2": 23.95224489842706, + "c3": -26.225201940181833, + "c4": 4.662437276658025, + "c5": 20.81838210439114, + "c6": -24.369087120704386, + "c7": 24.743708011434876 }, - "vertexSeeds": { - "c1": 3.310779235003264, - "c2": 3.168565056479917, - "c3": 2.9796057847819717, - "c4": 3.15790141680426, - "c5": 3.3218560792252685, - "c6": 3.0806755280651164, - "c7": 3.1656621225089223 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [222, 0, 59] }, @@ -104766,23 +104766,23 @@ "year": 1736, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 5.140014619486486, - "c2": -29.526291424353325, - "c3": 5.980156307023037, - "c4": -12.532630991375235, - "c5": -7.623415088229823, - "c6": 1.7289496578470391, - "c7": -4.659608449022638 + "points": { + "c1": 17.839563980768794, + "c2": -5.826448334286102, + "c3": -11.008208304446121, + "c4": -12.488680537719397, + "c5": 14.1891963914264, + "c6": -10.67555217667734, + "c7": 21.177995935287704 }, - "vertexSeeds": { - "c1": 4.175250655748756, - "c2": 4.303419626494167, - "c3": 4.450712223265548, - "c4": 4.595416070323169, - "c5": 4.365036654002163, - "c6": 4.304663137562799, - "c7": 4.43333559420211 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613035, + "c3": 5.524734165510868, + "c4": 4.419787332408693, + "c5": 3.3148404993065177, + "c6": 2.209893666204342, + "c7": 1.1049468331021752 }, "rgb": [238, 201, 159] }, @@ -104793,23 +104793,23 @@ "year": 1735, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -5.264744470739117, - "c2": -9.53357740769626, - "c3": 4.528978625194551, - "c4": 22.58836242548636, - "c5": 22.862112440106117, - "c6": -5.0627246654605464, - "c7": 19.99317150186573 + "points": { + "c1": 14.333104066405518, + "c2": 16.78294066977994, + "c3": -20.503578011203125, + "c4": -12.236907780693539, + "c5": -7.904371968472677, + "c6": -5.49606165748737, + "c7": 17.532792414686313 }, - "vertexSeeds": { - "c1": 8.643734210115516, - "c2": 8.225762394858876, - "c3": 8.441260890065353, - "c4": 8.780566353143168, - "c5": 8.154355490449873, - "c6": 8.222521399940133, - "c7": 8.415868694078998 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220537, + "c3": 10.47156726768377, + "c4": 8.377253814147025, + "c5": 6.282940360610258, + "c6": 4.1886269070735125, + "c7": 2.094313453536746 }, "rgb": [222, 0, 59] }, @@ -104820,23 +104820,23 @@ "year": 1736, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 6.9102245076507245, - "c2": 6.26804771244317, - "c3": 25.90929523713544, - "c4": 25.943465596317246, - "c5": 25.272696186049288, - "c6": 2.7678780528408033, - "c7": -9.329256850493245 + "points": { + "c1": -10.070439809423487, + "c2": -23.91226146099813, + "c3": -26.904885696042253, + "c4": -6.322679899201262, + "c5": 12.0566241136533, + "c6": 14.373123395900663, + "c7": -9.33490141308203 }, - "vertexSeeds": { - "c1": 4.629577384852867, - "c2": 4.774968010721917, - "c3": 4.459842869824912, - "c4": 5.159408934455, - "c5": 4.778280986084289, - "c6": 5.107330901598729, - "c7": 5.061627325034593 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -104847,23 +104847,23 @@ "year": 1736, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 17.27943832143781, - "c2": 25.70621194604152, - "c3": 26.072209501481865, - "c4": 13.159448094962315, - "c5": 24.83600244171481, - "c6": 11.29167819282953, - "c7": -6.5930935476772135 + "points": { + "c1": 2.2202974332679517, + "c2": 20.52392026529582, + "c3": -17.241024509700026, + "c4": -6.176722606899421, + "c5": 20.975299360471006, + "c6": -19.277839283229685, + "c7": -28.125529199748225 }, - "vertexSeeds": { - "c1": 5.15928209366647, - "c2": 4.513461212722941, - "c3": 5.175694018792816, - "c4": 4.71959535810831, - "c5": 4.453014132021307, - "c6": 4.650445269727777, - "c7": 4.877735246873721 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262135, + "c3": 6.472491909385111, + "c4": 5.177993527508087, + "c5": 3.8834951456310676, + "c6": 2.5889967637540434, + "c7": 1.2944983818770242 }, "rgb": [86, 146, 138] }, @@ -104874,23 +104874,23 @@ "year": 1736, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 16.063880813458383, - "c2": -22.337469084225315, - "c3": 32.236692855327064, - "c4": -1.2430024286928756, - "c5": 0.373731802715632, - "c6": 26.249084460188833, - "c7": 11.352234698296954 + "points": { + "c1": 15.45995245060611, + "c2": 3.9852908468641175, + "c3": -3.6475822170327064, + "c4": 32.188565822082126, + "c5": -36.45139168765471, + "c6": -4.086243206131655, + "c7": -36.391291166264786 }, - "vertexSeeds": { - "c1": 8.553799671544082, - "c2": 8.455691847856562, - "c3": 8.67577990047421, - "c4": 7.993154028544845, - "c5": 9.082964558039915, - "c6": 7.977957816089786, - "c7": 8.423936241939042 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864072, + "c3": 10.841423948220067, + "c4": 8.67313915857605, + "c5": 6.504854368932043, + "c6": 4.336569579288025, + "c7": 2.1682847896440194 }, "rgb": [86, 146, 138] }, @@ -104901,23 +104901,23 @@ "year": 1736, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -23.4692590373715, - "c2": -9.711785845023421, - "c3": 5.8685477232167, - "c4": 16.13379496655122, - "c5": 16.43619531585921, - "c6": 0.8440933418087582, - "c7": -21.08240762042375 + "points": { + "c1": -25.408801709043498, + "c2": 31.742237674493616, + "c3": 20.576845707942546, + "c4": 20.21758591527042, + "c5": 23.083795808523853, + "c6": -7.964523556301202, + "c7": -32.93258946501562 }, - "vertexSeeds": { - "c1": 10.622512857420386, - "c2": 10.412053229394946, - "c3": 10.64830880734877, - "c4": 10.06500543436344, - "c5": 9.790291540837027, - "c6": 10.216194087602867, - "c7": 9.68872463577288 + "offsets": { + "c1": 18.54368932038835, + "c2": 15.894590846047146, + "c3": 13.245492371705968, + "c4": 10.596393897364765, + "c5": 7.947295423023585, + "c6": 5.298196948682382, + "c7": 2.649098474341191 }, "rgb": [58, 15, 49] }, @@ -104928,23 +104928,23 @@ "year": 1736, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -25.931970197302164, - "c2": 35.08304261840292, - "c3": 5.562142259564418, - "c4": 7.3196923418809305, - "c5": 26.00615461313368, - "c6": -10.607782178452211, - "c7": -21.760014220380427 + "points": { + "c1": -29.69407051841884, + "c2": -40.300442476755926, + "c3": -6.066272060431977, + "c4": -4.476687411499228, + "c5": 15.98158722240003, + "c6": 28.44545610720153, + "c7": 19.234473829756652 }, - "vertexSeeds": { - "c1": 3.453069059751123, - "c2": 3.4952881884639124, - "c3": 3.492104332185696, - "c4": 3.779435800089863, - "c5": 3.898368852314118, - "c6": 3.940202341929873, - "c7": 3.857053010093981 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406378, + "c3": 4.8312528895053175, + "c4": 3.865002311604252, + "c5": 2.8987517337031914, + "c6": 1.932501155802126, + "c7": 0.9662505779010605 }, "rgb": [238, 201, 159] }, @@ -104955,23 +104955,23 @@ "year": 1736, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 5.911847475752236, - "c2": 20.141840518224242, - "c3": 5.16248056095564, - "c4": 17.377247417727716, - "c5": 12.814082933998513, - "c6": -16.407660952410204, - "c7": -5.103733480047488 + "points": { + "c1": -1.2493240129600665, + "c2": 22.93587740744063, + "c3": -19.46362834582274, + "c4": 2.31368082741637, + "c5": 2.165490176761857, + "c6": -13.209252783138217, + "c7": 4.292352320472272 }, - "vertexSeeds": { - "c1": 9.228546097339864, - "c2": 9.533263023849427, - "c3": 9.739983784801904, - "c4": 9.811741186739447, - "c5": 7.977577590880398, - "c6": 9.782027043361849, - "c7": 8.77503170764651 + "offsets": { + "c1": 17.055016181229774, + "c2": 14.618585298196953, + "c3": 12.18215441516412, + "c4": 9.745723532131299, + "c5": 7.309292649098476, + "c6": 4.872861766065646, + "c7": 2.436430883032823 }, "rgb": [238, 201, 159] }, @@ -104982,23 +104982,23 @@ "year": 1736, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -3.22984101609023, - "c2": 20.16329614210778, - "c3": 2.941130196157925, - "c4": -13.65307119422553, - "c5": -14.106764207683424, - "c6": -20.019513537304128, - "c7": 0.7749621901344916 + "points": { + "c1": -7.153724131951144, + "c2": -24.523479916705302, + "c3": 21.274882100765648, + "c4": -18.677401483102194, + "c5": -7.6975743495818065, + "c6": -2.8932447621855495, + "c7": -16.160853768997548 }, - "vertexSeeds": { - "c1": 1.5129304678949702, - "c2": 1.3140825673889402, - "c3": 1.6098643697862527, - "c4": 1.5112644255071868, - "c5": 1.3748371440507363, - "c6": 1.4664679647445602, - "c7": 1.4336783324007703 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.357836338418862, + "c3": 1.9648636153490517, + "c4": 1.5718908922792432, + "c5": 1.1789181692094324, + "c6": 0.7859454461396216, + "c7": 0.3929727230698108 }, "rgb": [58, 15, 49] }, @@ -105009,23 +105009,23 @@ "year": 1736, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -24.9025145874685, - "c2": 23.78682581138913, - "c3": 30.231923457174055, - "c4": -14.335022168546327, - "c5": -14.32254813982593, - "c6": -7.140410881552953, - "c7": -9.22570770613018 + "points": { + "c1": -24.481713721722794, + "c2": -37.603594006552946, + "c3": 28.537262562292206, + "c4": 37.60140887720505, + "c5": -1.8586439131206305, + "c6": 1.842367739375291, + "c7": 12.995290583296232 }, - "vertexSeeds": { - "c1": 6.519066897850059, - "c2": 6.967591690440364, - "c3": 6.756230215133716, - "c4": 7.042220826901677, - "c5": 6.814636476276742, - "c6": 6.980898911785231, - "c7": 6.353453895405721 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.57605177993528, + "c4": 6.860841423948222, + "c5": 5.145631067961164, + "c6": 3.4304207119741044, + "c7": 1.7152103559870586 }, "rgb": [238, 201, 159] }, @@ -105036,23 +105036,23 @@ "year": 1736, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 8.974823871952221, - "c2": 5.4336916962442, - "c3": 3.102956951615756, - "c4": 10.576938792937813, - "c5": 6.206490500196434, - "c6": 18.903108707255033, - "c7": 19.73635880493686 + "points": { + "c1": 20.27878068377314, + "c2": 23.8120273362093, + "c3": -20.474945323337828, + "c4": 14.112650483231473, + "c5": -15.020829474292213, + "c6": -12.081419130478569, + "c7": 9.457826571989937 }, - "vertexSeeds": { - "c1": 5.436314894826639, - "c2": 5.700444843220046, - "c3": 5.679922849286564, - "c4": 5.700995862586186, - "c5": 5.851780492146433, - "c6": 5.64065534410004, - "c7": 5.585269048343418 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [222, 0, 59] }, @@ -105063,23 +105063,23 @@ "year": 1736, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 28.232880629563553, - "c2": -37.27355204910157, - "c3": -18.854412473224, - "c4": 28.539725133576354, - "c5": 35.83462248689109, - "c6": -6.15007213563203, - "c7": 29.98581876595982 + "points": { + "c1": -22.50503125897361, + "c2": 25.65963684929453, + "c3": 22.201084802989946, + "c4": 10.724090169105601, + "c5": 24.086236754217964, + "c6": -7.209305168368772, + "c7": -22.273443223467467 }, - "vertexSeeds": { - "c1": 2.6814281033977885, - "c2": 2.4893104987464856, - "c3": 2.604253900491075, - "c4": 2.7389741905828773, - "c5": 2.5051772510594024, - "c6": 2.716695598235085, - "c7": 2.845562309186242 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.5136384650947767, + "c4": 2.8109107720758195, + "c5": 2.108183079056867, + "c6": 1.4054553860379098, + "c7": 0.7027276930189574 }, "rgb": [58, 15, 49] }, @@ -105090,23 +105090,23 @@ "year": 1736, "resistanceReported": true, "duration": 17798400, - "curveSeeds": { - "c1": -2.2999779412350136, - "c2": -25.737875805223393, - "c3": 20.358931081661176, - "c4": 3.6646599987766493, - "c5": -8.2802305016735, - "c6": -3.315336677484357, - "c7": -15.373221729657363 + "points": { + "c1": -4.2551490200698865, + "c2": 8.642521337336625, + "c3": 24.87656655389238, + "c4": -24.24548792669227, + "c5": 13.094758629107965, + "c6": 3.113872993192068, + "c7": 3.2972547284805884 }, - "vertexSeeds": { - "c1": 9.285689458695247, - "c2": 9.279116780346119, - "c3": 9.216343243373206, - "c4": 9.2614490605112, - "c5": 9.24870108777956, - "c6": 9.284134715980562, - "c7": 9.243591128592529 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266358, + "c3": 11.072584373555225, + "c4": 8.858067498844239, + "c5": 6.643550624133106, + "c6": 4.4290337494221195, + "c7": 2.214516874711133 }, "rgb": [58, 15, 49] }, @@ -105117,23 +105117,23 @@ "year": 1736, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 31.6210870176905, - "c2": 35.77127172784954, - "c3": -47.73216359612287, - "c4": -44.51064237096063, - "c5": -12.502036260733696, - "c6": -22.087599811904255, - "c7": -48.45045378168947 + "points": { + "c1": -16.947288885362347, + "c2": -19.760124968110766, + "c3": -52.06755589127309, + "c4": 43.65006419356625, + "c5": -39.905406920511375, + "c6": 18.076615989824504, + "c7": 35.55083050599684 }, - "vertexSeeds": { - "c1": 7.562298447598968, - "c2": 7.517828288339268, - "c3": 7.312412525912368, - "c4": 8.05087686115406, - "c5": 7.524327034934108, - "c6": 7.302920455809665, - "c7": 7.409835959073785 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732325, + "c3": 9.616273693943596, + "c4": 7.693018955154884, + "c5": 5.769764216366154, + "c6": 3.846509477577442, + "c7": 1.9232547387887295 }, "rgb": [222, 0, 59] }, @@ -105144,23 +105144,23 @@ "year": 1736, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 22.481297642912622, - "c2": -6.430153602950192, - "c3": -14.355917021752933, - "c4": -34.79688218100358, - "c5": 34.423539832614324, - "c6": 32.70681785570622, - "c7": -25.58087425890611 + "points": { + "c1": -9.232835777512712, + "c2": -16.199887012088936, + "c3": 3.1626599961981086, + "c4": -28.8801216537449, + "c5": 13.796358926443887, + "c6": 38.20041838453166, + "c7": 39.08160929358367 }, - "vertexSeeds": { - "c1": 5.49344598390558, - "c2": 6.115356400793824, - "c3": 6.000922184166278, - "c4": 6.261656799978311, - "c5": 5.856172574581853, - "c6": 5.894829955352358, - "c7": 5.6960451196692965 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112338, + "c3": 7.535829865926955, + "c4": 6.028663892741559, + "c5": 4.521497919556175, + "c6": 3.0143319463707794, + "c7": 1.5071659731853833 }, "rgb": [58, 15, 49] }, @@ -105171,23 +105171,23 @@ "year": 1736, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 30.689255673895154, - "c2": -1.3119370416197214, - "c3": -24.82622003093186, - "c4": 8.680650806735258, - "c5": -31.566551773604928, - "c6": -28.263562714969723, - "c7": -13.418757724718187 + "points": { + "c1": -21.600715491460182, + "c2": 4.234083690692316, + "c3": 13.422034709746384, + "c4": 29.141088968497222, + "c5": -9.175216724547568, + "c6": 13.3007598794824, + "c7": -0.039102771561829286 }, - "vertexSeeds": { - "c1": 9.090545663872152, - "c2": 8.045400045214663, - "c3": 8.548013244581004, - "c4": 8.41429276310469, - "c5": 8.326484097697227, - "c6": 8.14104887275168, - "c7": 7.869014840846785 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.536754507628297, + "c3": 11.280628756356919, + "c4": 9.024503005085528, + "c5": 6.7683772538141485, + "c6": 4.512251502542769, + "c7": 2.2561257512713797 }, "rgb": [238, 201, 159] }, @@ -105198,23 +105198,23 @@ "year": 1736, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -15.155472540901545, - "c2": -14.729846094502651, - "c3": -18.021323981476513, - "c4": -24.408502742742684, - "c5": -1.9486272920909116, - "c6": -32.878611893695705, - "c7": -24.188881921902244 + "points": { + "c1": 12.032257956499791, + "c2": 9.174498956505118, + "c3": 11.062097698958688, + "c4": 35.4269572449527, + "c5": 24.23929072785519, + "c6": -36.593960021169586, + "c7": -15.349378724098202 }, - "vertexSeeds": { - "c1": 1.188520684296247, - "c2": 1.2571351997459046, - "c3": 1.191201638164762, - "c4": 1.2429542013834052, - "c5": 1.2266386538109957, - "c6": 1.2370371495982824, - "c7": 1.2616181715754076 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948665, + "c3": 1.5487748497457257, + "c4": 1.2390198797965795, + "c5": 0.9292649098474359, + "c6": 0.6195099398982897, + "c7": 0.30975496994914614 }, "rgb": [77, 76, 132] }, @@ -105225,23 +105225,23 @@ "year": 1736, "resistanceReported": true, "duration": 34819200, - "curveSeeds": { - "c1": 13.60936605897301, - "c2": 7.824668323861587, - "c3": 4.484215920514792, - "c4": -5.079234416824164, - "c5": -39.39638095002621, - "c6": 7.417953877837121, - "c7": 35.15511891372033 + "points": { + "c1": 49.496818369013624, + "c2": -40.97901418462486, + "c3": -34.51127046732477, + "c4": 27.19912909691449, + "c5": -26.29511725399007, + "c6": 16.124126538486195, + "c7": -0.8594238362613709 }, - "vertexSeeds": { - "c1": 8.20009082158274, - "c2": 8.12398774258904, - "c3": 7.6004456823932545, - "c4": 6.935351825607653, - "c5": 8.316360983893963, - "c6": 7.533201750810426, - "c7": 7.577650014649601 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295418, + "c3": 9.939898289412852, + "c4": 7.951918631530285, + "c5": 5.963938973647709, + "c6": 3.9759593157651323, + "c7": 1.9879796578825661 }, "rgb": [86, 146, 138] }, @@ -105252,23 +105252,23 @@ "year": 1736, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 17.475648290887648, - "c2": 30.127612979286567, - "c3": -19.816611576959318, - "c4": -28.367713405025352, - "c5": -2.149654469044954, - "c6": -32.86392109114769, - "c7": -19.126294028966104 + "points": { + "c1": 11.248098117584078, + "c2": -36.19493318026661, + "c3": 16.55641469747414, + "c4": 17.93882156779921, + "c5": 32.42603743039594, + "c6": -15.259417406273208, + "c7": -29.041658035393468 }, - "vertexSeeds": { - "c1": 6.919759291118808, - "c2": 6.931531536270639, - "c3": 6.320910999804728, - "c4": 7.147578288011457, - "c5": 6.752573561174712, - "c6": 6.867346109939827, - "c7": 6.978495717247782 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962546, + "c3": 8.599167822468795, + "c4": 6.87933425797503, + "c5": 5.159500693481266, + "c6": 3.439667128987515, + "c7": 1.7198335644937501 }, "rgb": [86, 146, 138] }, @@ -105279,23 +105279,23 @@ "year": 1736, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 23.609980155031508, - "c2": -19.08327776156883, - "c3": -38.963852110324844, - "c4": 14.690413748364598, - "c5": 21.41399232855955, - "c6": -16.927870010927556, - "c7": -18.802700203777515 + "points": { + "c1": -29.12040910672789, + "c2": 12.484128675883454, + "c3": -13.537587128276396, + "c4": 13.487535957359356, + "c5": -15.833022703345438, + "c6": -38.37100767630932, + "c7": -31.049563243378877 }, - "vertexSeeds": { - "c1": 8.497424769469077, - "c2": 8.794166886785938, - "c3": 8.727084401379472, - "c4": 7.897556273313053, - "c5": 7.757733308280516, - "c6": 8.652057373138101, - "c7": 8.553268034709008 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260745, + "c3": 10.494683310217296, + "c4": 8.395746648173834, + "c5": 6.296809986130373, + "c6": 4.197873324086923, + "c7": 2.0989366620434615 }, "rgb": [222, 0, 59] }, @@ -105306,23 +105306,23 @@ "year": 1736, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 12.85465492056625, - "c2": -25.462943401885155, - "c3": -10.085487705752094, - "c4": 29.651704809171104, - "c5": -20.299862354836293, - "c6": 3.3227918396308205, - "c7": -21.781303427119806 + "points": { + "c1": -19.081971158976636, + "c2": 5.045723514646113, + "c3": -5.211985067217245, + "c4": 22.301524653591997, + "c5": -30.041679840461175, + "c6": 31.336694649836147, + "c7": 28.680469494966438 }, - "vertexSeeds": { - "c1": 2.1221715895639806, - "c2": 2.297081093852484, - "c3": 2.192647469746751, - "c4": 2.175685262787786, - "c5": 2.252584121254809, - "c6": 2.0929066252002344, - "c7": 2.3252182971009017 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [86, 146, 138] }, @@ -105333,23 +105333,23 @@ "year": 1736, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 14.450578829820316, - "c2": 13.76472904924102, - "c3": -20.43387120784609, - "c4": 7.869316047784693, - "c5": 13.950319083528498, - "c6": 19.919098960193715, - "c7": -12.847915220182163 + "points": { + "c1": -6.845269092132522, + "c2": 3.276790251489615, + "c3": -16.795126033496274, + "c4": -27.80686755765507, + "c5": 20.721671627354695, + "c6": 25.463014795971105, + "c7": 25.762649007957116 }, - "vertexSeeds": { - "c1": 4.59502236445276, - "c2": 4.4330756788443715, - "c3": 4.676918128660787, - "c4": 4.332177768288252, - "c5": 4.667596128734085, - "c6": 5.085354706807821, - "c7": 4.488427276233136 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -105360,23 +105360,23 @@ "year": 1736, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -31.825613802813628, - "c2": 28.875221235296777, - "c3": -30.271717040254643, - "c4": -2.234567665965841, - "c5": -1.9497726837056817, - "c6": 15.552674056378159, - "c7": -34.57988041383152 + "points": { + "c1": 20.90938920585534, + "c2": 0.06771758213768919, + "c3": 25.11482977736498, + "c4": 17.863940337156073, + "c5": 16.382898851824848, + "c6": -4.168211795072871, + "c7": 32.5519710819419 }, - "vertexSeeds": { - "c1": 4.873189433418032, - "c2": 5.376906206180487, - "c3": 5.530206505815133, - "c4": 5.097022341717776, - "c5": 5.7835592200357855, - "c6": 5.681816239086461, - "c7": 4.743553199808581 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055474, + "c4": 5.547850208044381, + "c5": 4.160887656033288, + "c6": 2.7739251040221955, + "c7": 1.386962552011093 }, "rgb": [86, 146, 138] }, @@ -105387,23 +105387,23 @@ "year": 1736, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -16.73708100442146, - "c2": 18.44243810013603, - "c3": 13.939426383870156, - "c4": 28.34180357099453, - "c5": 11.132856021078773, - "c6": -6.0429193251898035, - "c7": -0.14426530854456132 + "points": { + "c1": 14.352308301545271, + "c2": 14.117432786031415, + "c3": 23.848964800302284, + "c4": 12.177147676346422, + "c5": -37.1048120602426, + "c6": -9.355087393097136, + "c7": 30.695684461236596 }, - "vertexSeeds": { - "c1": 2.5728367526233358, - "c2": 2.5141336091495288, - "c3": 2.524026816059349, - "c4": 2.563244398199571, - "c5": 2.6729541309153046, - "c6": 2.583675994503574, - "c7": 2.538174226577518 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115105, + "c3": 3.28247803975959, + "c4": 2.62598243180767, + "c5": 1.9694868238557601, + "c6": 1.3129912159038402, + "c7": 0.6564956079519201 }, "rgb": [238, 201, 159] }, @@ -105414,23 +105414,23 @@ "year": 1736, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -18.600525925634138, - "c2": 26.995286612339868, - "c3": -2.336023513780461, - "c4": 31.376431432776997, - "c5": 13.637184119058809, - "c6": -19.69390457455932, - "c7": 8.350841703646289 + "points": { + "c1": 15.072226624253567, + "c2": -14.44787736174618, + "c3": -12.499979015178063, + "c4": -3.4062832144318236, + "c5": 27.662447222832682, + "c6": -14.095213107122298, + "c7": 21.643675180265824 }, - "vertexSeeds": { - "c1": 3.1199494999527566, - "c2": 3.414113364028025, - "c3": 3.3788582593446557, - "c4": 3.113157340598496, - "c5": 3.103740748875966, - "c6": 3.5656900437121193, - "c7": 3.450968540468991 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [222, 0, 59] }, @@ -105441,23 +105441,23 @@ "year": 1736, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -23.845175580531567, - "c2": 14.672208882442597, - "c3": -26.38797162602996, - "c4": -27.57523929443446, - "c5": -23.12578416247186, - "c6": 10.756535967086265, - "c7": 7.68659311240561 + "points": { + "c1": 0.7217465495364905, + "c2": 16.375915762514886, + "c3": -11.033127412077345, + "c4": 21.69703597910577, + "c5": -21.62452188935194, + "c6": 31.91314694943256, + "c7": -21.185111134291244 }, - "vertexSeeds": { - "c1": 6.1400496726208065, - "c2": 6.227877498546743, - "c3": 6.119906769112477, - "c4": 6.383323464764996, - "c5": 5.838791169639302, - "c6": 6.130207410715641, - "c7": 5.995580136870565 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [222, 0, 59] }, @@ -105468,23 +105468,23 @@ "year": 1736, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 9.625703217169086, - "c2": -8.267286578672284, - "c3": 17.55605832352452, - "c4": -16.807532153689575, - "c5": -1.406827529036324, - "c6": -5.971505592131113, - "c7": 5.241526314339705 + "points": { + "c1": -12.875560800573979, + "c2": -16.64266548039944, + "c3": 18.19305310744608, + "c4": 15.377930941422878, + "c5": -28.596431983144466, + "c6": 28.59357502976984, + "c7": 12.529664596675108 }, - "vertexSeeds": { - "c1": 5.996930568556972, - "c2": 6.735915652245798, - "c3": 6.382710657591064, - "c4": 6.722558159711945, - "c5": 5.742098313123277, - "c6": 6.277104257441786, - "c7": 5.982433351573246 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319006, + "c3": 8.229311141932508, + "c4": 6.5834489135459995, + "c5": 4.937586685159503, + "c6": 3.291724456773005, + "c7": 1.6458622283865076 }, "rgb": [86, 146, 138] }, @@ -105495,23 +105495,23 @@ "year": 1736, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": -1.313229698540681, - "c2": 14.976197457199774, - "c3": 3.779375152482544, - "c4": -27.74466785176853, - "c5": 0.6695089143694517, - "c6": -20.714791567878823, - "c7": 12.132667863596119 + "points": { + "c1": -47.098297133033626, + "c2": -4.76104328840951, + "c3": -3.6986673597779074, + "c4": -45.357737256024045, + "c5": -4.078581521411593, + "c6": 46.028306691913826, + "c7": -16.847151741100184 }, - "vertexSeeds": { - "c1": 8.007064352365806, - "c2": 6.221678456577844, - "c3": 8.086277398390736, - "c4": 8.153040522340751, - "c5": 7.667924525913743, - "c6": 7.614172036720219, - "c7": 8.190584576278448 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496533, + "c3": 10.055478502080442, + "c4": 8.044382801664353, + "c5": 6.033287101248263, + "c6": 4.022191400832173, + "c7": 2.0110957004160896 }, "rgb": [86, 146, 138] }, @@ -105522,23 +105522,23 @@ "year": 1736, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 7.984694087601305, - "c2": 27.877528528931997, - "c3": -23.112739946862607, - "c4": -5.165885474156674, - "c5": 16.845278185461005, - "c6": 32.646778752982186, - "c7": -12.54524107957642 + "points": { + "c1": 23.60271698989449, + "c2": -23.812332442454355, + "c3": 15.881898581176237, + "c4": -23.143419279864645, + "c5": 35.17543050199127, + "c6": 6.751045021219369, + "c7": -4.0741880535401584 }, - "vertexSeeds": { - "c1": 4.986920220214065, - "c2": 4.665767189707418, - "c3": 4.898308573584602, - "c4": 4.72114047237265, - "c5": 4.845095196771818, - "c6": 4.907606314574573, - "c7": 4.499215627030836 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658805, + "c3": 6.1257512713823425, + "c4": 4.900601017105872, + "c5": 3.6754507628294024, + "c6": 2.4503005085529392, + "c7": 1.2251502542764696 }, "rgb": [58, 15, 49] }, @@ -105549,23 +105549,23 @@ "year": 1736, "resistanceReported": true, "duration": 17193600, - "curveSeeds": { - "c1": 1.2886022906321557, - "c2": -8.824449051310495, - "c3": -18.408412687269745, - "c4": -20.923166194822322, - "c5": -25.220451701420366, - "c6": 26.927740569924666, - "c7": 5.005546416248073 + "points": { + "c1": -4.576829507762568, + "c2": 30.248193825422575, + "c3": -18.702400678834906, + "c4": 20.543744946093433, + "c5": -2.0615025117079533, + "c6": 5.42273287991933, + "c7": 16.400213702675295 }, - "vertexSeeds": { - "c1": 5.2247833125104455, - "c2": 5.7416929844302045, - "c3": 5.707400127204664, - "c4": 5.008598562912798, - "c5": 5.235864786973337, - "c6": 4.9701610800010725, - "c7": 5.155596190821589 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307909, + "c3": 7.073509015256593, + "c4": 5.658807212205267, + "c5": 4.244105409153952, + "c6": 2.8294036061026366, + "c7": 1.4147018030513208 }, "rgb": [222, 0, 59] }, @@ -105576,23 +105576,23 @@ "year": 1736, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -12.735626421899486, - "c2": 28.87666135889683, - "c3": 12.674953263527048, - "c4": -21.577206093010197, - "c5": -11.091646368904584, - "c6": 14.301266673737768, - "c7": -10.191614869915433 + "points": { + "c1": 12.9963762560496, + "c2": -17.83464677133138, + "c3": 11.39329225019494, + "c4": 21.396098896523334, + "c5": -28.57083402865301, + "c6": -27.890750830269578, + "c7": -12.212754306775139 }, - "vertexSeeds": { - "c1": 6.466098878521655, - "c2": 6.729261181637529, - "c3": 6.196862012737771, - "c4": 6.005929648545648, - "c5": 7.040377575778673, - "c6": 5.707841836720669, - "c7": 6.443623852316199 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721223, + "c3": 8.460471567267684, + "c4": 6.768377253814149, + "c5": 5.076282940360607, + "c6": 3.3841886269070747, + "c7": 1.6920943134535327 }, "rgb": [58, 15, 49] }, @@ -105603,23 +105603,23 @@ "year": 1736, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": 8.971927875888984, - "c2": -2.1971564236872005, - "c3": -4.290938740303879, - "c4": 4.8783206140265705, - "c5": -10.304276711409122, - "c6": 8.988643339954216, - "c7": 11.452267152478498 + "points": { + "c1": -21.112869672096394, + "c2": 5.8278451336761385, + "c3": -17.65150245006167, + "c4": 1.1797794077592236, + "c5": 11.403967918817287, + "c6": 12.848416732250392, + "c7": -19.237044996831404 }, - "vertexSeeds": { - "c1": 4.751120344741466, - "c2": 4.880853812805301, - "c3": 4.898625721833642, - "c4": 4.674270033377017, - "c5": 4.647845145789906, - "c6": 5.2051553559878405, - "c7": 5.238282836924585 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -105630,23 +105630,23 @@ "year": 1736, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -4.154279726853257, - "c2": 15.720822893248922, - "c3": 21.07826834563336, - "c4": -30.102336317459244, - "c5": -6.166821078368454, - "c6": 26.10872820975569, - "c7": -23.956654930640937 + "points": { + "c1": -12.08185381982329, + "c2": -14.894005505359218, + "c3": -21.927648503229214, + "c4": -33.5183537511913, + "c5": -5.592265057528447, + "c6": -2.579008819197682, + "c7": 7.521430752759493 }, - "vertexSeeds": { - "c1": 6.906972515254575, - "c2": 7.033445462129583, - "c3": 6.837706260844583, - "c4": 6.321940228108603, - "c5": 6.2603005128391525, - "c6": 6.859886647524456, - "c7": 6.858356750741436 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042995, + "c3": 8.645399907535827, + "c4": 6.916319926028659, + "c5": 5.187239944521491, + "c6": 3.458159963014323, + "c7": 1.7290799815071551 }, "rgb": [86, 146, 138] }, @@ -105657,23 +105657,23 @@ "year": 1736, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -33.43369184828857, - "c2": 10.639560981788598, - "c3": 19.259824717935963, - "c4": -28.906142046680518, - "c5": -16.929666062569815, - "c6": -40.26708662457006, - "c7": -36.423377558235295 + "points": { + "c1": 22.127060379813628, + "c2": 16.431594897093547, + "c3": 10.94341706425417, + "c4": -37.79218504323386, + "c5": -25.155825973020445, + "c6": -29.546660481187715, + "c7": -29.670663751375265 }, - "vertexSeeds": { - "c1": 4.442599572632757, - "c2": 4.716473296785848, - "c3": 4.22348491561487, - "c4": 4.456318328422478, - "c5": 3.806379288819546, - "c6": 4.486458744025726, - "c7": 3.9306076866894086 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [222, 0, 59] }, @@ -105684,23 +105684,23 @@ "year": 1736, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 0.12647607451969023, - "c2": 2.4147702931375896, - "c3": 8.129321061240827, - "c4": -11.158188449787442, - "c5": 22.02438708223787, - "c6": 10.210655169349113, - "c7": 20.2638761468891 + "points": { + "c1": -23.01410943278733, + "c2": -20.18191386533226, + "c3": -4.285494848135613, + "c4": -12.928746471629424, + "c5": 21.65469858074635, + "c6": -17.48330912365246, + "c7": 11.74851411196525 }, - "vertexSeeds": { - "c1": 2.707061029574456, - "c2": 2.8983273637984506, - "c3": 2.926408250888921, - "c4": 2.6948593094607443, - "c5": 2.801427539014989, - "c6": 2.8127957119945317, - "c7": 2.86881598897901 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194176, + "c3": 3.5598705501618144, + "c4": 2.8478964401294533, + "c5": 2.135922330097092, + "c6": 1.4239482200647227, + "c7": 0.7119741100323613 }, "rgb": [238, 201, 159] }, @@ -105711,23 +105711,23 @@ "year": 1736, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -7.928272174638792, - "c2": -5.442737079332371, - "c3": -10.402401339937047, - "c4": -17.143405242901483, - "c5": -3.3569639516986545, - "c6": 9.532832553962113, - "c7": 15.273331395597708 + "points": { + "c1": 11.498586961799923, + "c2": 20.15681701171775, + "c3": -19.901819654620883, + "c4": -0.2145811346996247, + "c5": -18.41130643447262, + "c6": 17.425844931604843, + "c7": 11.248757800717623 }, - "vertexSeeds": { - "c1": 2.7722178866856497, - "c2": 2.5741354952651108, - "c3": 2.8023472809210435, - "c4": 2.610148308722128, - "c5": 2.7217376252816075, - "c6": 2.6801721728842347, - "c7": 2.7976996471780797 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.7739251040221893, + "c5": 2.0804438280166453, + "c6": 1.3869625520110946, + "c7": 0.6934812760055439 }, "rgb": [222, 0, 59] }, @@ -105738,23 +105738,23 @@ "year": 1737, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": -28.190981672135813, - "c2": -51.0144120118953, - "c3": -23.164555463811652, - "c4": 24.56552481787184, - "c5": -43.154787837612915, - "c6": 21.227117643236987, - "c7": -37.908658829395264 + "points": { + "c1": -29.964925154219525, + "c2": 53.899977038631484, + "c3": 38.56295082212005, + "c4": -17.6498797792068, + "c5": 49.062765319353765, + "c6": 3.7423380484329627, + "c7": -3.8443211914836226 }, - "vertexSeeds": { - "c1": 7.923548742363658, - "c2": 8.167359423813744, - "c3": 8.630915725480541, - "c4": 8.204217911342552, - "c5": 8.064595900797643, - "c6": 8.502088220104866, - "c7": 8.370573517915712 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099866, + "c3": 10.40221914008321, + "c4": 8.321775312066572, + "c5": 6.241331484049933, + "c6": 4.160887656033277, + "c7": 2.0804438280166386 }, "rgb": [58, 15, 49] }, @@ -105765,23 +105765,23 @@ "year": 1736, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 2.361582570311299, - "c2": -4.432254770273026, - "c3": 12.783249027693032, - "c4": -5.561353607209622, - "c5": -18.524969445502563, - "c6": 21.995821625139733, - "c7": -32.33649867414558 + "points": { + "c1": -8.988580138133308, + "c2": -18.37310826594854, + "c3": 1.2083683687408353, + "c4": 25.953705150174052, + "c5": -23.220092034897455, + "c6": -21.561093753126457, + "c7": 13.214934069216746 }, - "vertexSeeds": { - "c1": 3.1975440220097058, - "c2": 2.8175210053305872, - "c3": 3.0626997605630186, - "c4": 3.1968949324959968, - "c5": 3.220225837553582, - "c6": 3.0566683287941716, - "c7": 3.154002055615142 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958391, + "c3": 3.999075358298659, + "c4": 3.199260286638927, + "c5": 2.3994452149791954, + "c6": 1.5996301433194635, + "c7": 0.7998150716597318 }, "rgb": [238, 201, 159] }, @@ -105792,23 +105792,23 @@ "year": 1736, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -13.434223687671011, - "c2": -31.065124554102006, - "c3": -33.65405876231293, - "c4": -10.647961852907528, - "c5": -29.333780057846518, - "c6": -17.684642502871554, - "c7": 12.738759035317642 + "points": { + "c1": 4.044240236504137, + "c2": -38.54417838123701, + "c3": 38.02056842386904, + "c4": 33.31937366458014, + "c5": -2.1531676479798563, + "c6": -14.66218500716424, + "c7": 10.82053316160549 }, - "vertexSeeds": { - "c1": 7.6126773798642, - "c2": 7.549302525865619, - "c3": 7.777310836043584, - "c4": 7.735505527528118, - "c5": 7.613149393880877, - "c6": 7.668303046037631, - "c7": 7.726436728785744 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289883, + "c3": 9.361997226074909, + "c4": 7.48959778085989, + "c5": 5.617198335644918, + "c6": 3.744798890429945, + "c7": 1.8723994452149726 }, "rgb": [238, 201, 159] }, @@ -105819,23 +105819,23 @@ "year": 1736, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 7.206970312459006, - "c2": -6.6933326244363585, - "c3": 30.96976481716483, - "c4": 41.99374151712239, - "c5": -8.87343354239026, - "c6": 10.978336758681088, - "c7": -9.768841534546944 + "points": { + "c1": 7.760572761330664, + "c2": 33.93023074863555, + "c3": 32.01289870787754, + "c4": -3.8487391701295337, + "c5": -23.927602493727658, + "c6": 34.87535920552351, + "c7": -26.469835697440452 }, - "vertexSeeds": { - "c1": 3.1446816971353218, - "c2": 3.0443835878182237, - "c3": 2.918722028492206, - "c4": 3.0997131443654165, - "c5": 3.0880144365576774, - "c6": 2.9389462991398214, - "c7": 3.032299115327557 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636616, + "c3": 3.814147018030516, + "c4": 3.051317614424415, + "c5": 2.2884882108183033, + "c6": 1.5256588072122024, + "c7": 0.7628294036061012 }, "rgb": [86, 146, 138] }, @@ -105846,23 +105846,23 @@ "year": 1736, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -28.27928097212604, - "c2": -29.82471009303765, - "c3": -26.38064713850446, - "c4": -13.586852814199794, - "c5": 27.406224151565837, - "c6": 3.2312245615682897, - "c7": -17.19911831452381 + "points": { + "c1": 16.456118865899228, + "c2": -35.189341474252515, + "c3": 16.80272267182704, + "c4": 33.73269679127429, + "c5": -20.36512653537694, + "c6": 3.116348547998278, + "c7": -25.052236861171032 }, - "vertexSeeds": { - "c1": 9.223273140922036, - "c2": 9.80518536491398, - "c3": 10.072990251100354, - "c4": 9.788623314557904, - "c5": 10.229219088133863, - "c6": 10.548760145799683, - "c7": 9.628903858384744 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122057, + "c3": 12.713823393435053, + "c4": 10.171058714748032, + "c5": 7.628294036061028, + "c6": 5.085529357374025, + "c7": 2.5427646786870124 }, "rgb": [238, 201, 159] }, @@ -105873,23 +105873,23 @@ "year": 1736, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 19.059338422730107, - "c2": -25.38555124339787, - "c3": -22.74992673780171, - "c4": 31.21122774511108, - "c5": -6.352912769188187, - "c6": 21.862167611872415, - "c7": -11.921270579454657 + "points": { + "c1": -36.04785277325243, + "c2": 22.142153348720434, + "c3": -38.64936867510647, + "c4": 29.240306377964522, + "c5": 5.116005669989427, + "c6": -36.19105817083997, + "c7": -38.78000923399514 }, - "vertexSeeds": { - "c1": 10.47772866026941, - "c2": 10.128100237423963, - "c3": 9.711504119220066, - "c4": 10.098466489477971, - "c5": 11.017970223490138, - "c6": 10.977482157427378, - "c7": 10.569869889524727 + "offsets": { + "c1": 18.478964401294498, + "c2": 15.839112343966702, + "c3": 13.199260286638927, + "c4": 10.55940822931115, + "c5": 7.919556171983356, + "c6": 5.27970411465557, + "c7": 2.639852057327785 }, "rgb": [222, 0, 59] }, @@ -105900,23 +105900,23 @@ "year": 1736, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -8.503729319321238, - "c2": 16.935162903227415, - "c3": -30.30307577447897, - "c4": -2.300775851000438, - "c5": -1.0766407450373023, - "c6": 32.31599279181002, - "c7": 6.8096202976849725 + "points": { + "c1": -28.93503793218018, + "c2": -21.35972143777286, + "c3": 17.65714410029296, + "c4": -33.83752733570907, + "c5": 3.3051070333548935, + "c6": 2.0030189780124843, + "c7": 36.86415073512076 }, - "vertexSeeds": { - "c1": 11.411195253550567, - "c2": 8.923940339000303, - "c3": 9.008750688697521, - "c4": 9.777036056180135, - "c5": 11.018609693051589, - "c6": 10.417991785500934, - "c7": 11.718425503593323 + "offsets": { + "c1": 19.902912621359224, + "c2": 17.05963938973648, + "c3": 14.216366158113736, + "c4": 11.373092926490992, + "c5": 8.529819694868248, + "c6": 5.686546463245496, + "c7": 2.8432732316227516 }, "rgb": [58, 15, 49] }, @@ -105927,23 +105927,23 @@ "year": 1736, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -18.350385452319703, - "c2": -34.01142976056455, - "c3": -33.859018295899084, - "c4": 32.4371037988945, - "c5": -3.7569005325361218, - "c6": 27.246866187035025, - "c7": -15.49931186163715 + "points": { + "c1": -37.183056753609165, + "c2": -40.00986789142077, + "c3": -22.729723758462352, + "c4": 7.660163692888489, + "c5": -32.37296534143198, + "c6": 22.884630702795874, + "c7": 5.477043760177516 }, - "vertexSeeds": { - "c1": 7.302627238879696, - "c2": 6.494206417031703, - "c3": 7.202452677195483, - "c4": 6.519154130010349, - "c5": 6.693303546973871, - "c6": 7.21510261868193, - "c7": 7.177615852839272 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525661, + "c3": 8.922792417938052, + "c4": 7.138233934350445, + "c5": 5.353675450762837, + "c6": 3.569116967175216, + "c7": 1.784558483587608 }, "rgb": [222, 0, 59] }, @@ -105954,23 +105954,23 @@ "year": 1736, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 11.346531357298439, - "c2": 9.61041512202921, - "c3": 21.979947862516795, - "c4": -30.394461010316245, - "c5": 22.88237055777592, - "c6": -28.83162667860126, - "c7": -10.879420816697134 + "points": { + "c1": 0.396366407479654, + "c2": -29.733020452278854, + "c3": 14.381236518015236, + "c4": 14.13142764320942, + "c5": 12.516165116413283, + "c6": -34.587103077110825, + "c7": 25.438763540861856 }, - "vertexSeeds": { - "c1": 6.119554941959328, - "c2": 6.26225169801676, - "c3": 6.632590603167301, - "c4": 6.794771373395253, - "c5": 6.331666606689791, - "c6": 6.157971528398243, - "c7": 6.103825097504532 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479888, + "c3": 8.32177531206657, + "c4": 6.657420249653254, + "c5": 4.993065187239937, + "c6": 3.3287101248266198, + "c7": 1.6643550624133168 }, "rgb": [238, 201, 159] }, @@ -105981,23 +105981,23 @@ "year": 1736, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 8.044989017725069, - "c2": -23.643967020711873, - "c3": 30.851754776266237, - "c4": -3.202666380430774, - "c5": -12.476499767673829, - "c6": 1.687263665876909, - "c7": 28.289941536148138 + "points": { + "c1": -0.5052609537122024, + "c2": 31.419578808838708, + "c3": 27.732592750822235, + "c4": 17.098055708673392, + "c5": 10.833616738557076, + "c6": -1.5778767522443005, + "c7": 16.606466593195563 }, - "vertexSeeds": { - "c1": 4.558410900402986, - "c2": 5.481898780566069, - "c3": 4.525328422007093, - "c4": 5.102940559374029, - "c5": 4.653259173666828, - "c6": 4.870311330022726, - "c7": 5.208825828210028 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387889, + "c4": 5.455386037910309, + "c5": 4.091539528432732, + "c6": 2.727693018955156, + "c7": 1.3638465094775762 }, "rgb": [77, 76, 132] }, @@ -106008,23 +106008,23 @@ "year": 1737, "resistanceReported": false, "duration": 57888000, - "curveSeeds": { - "c1": -35.25310558937122, - "c2": -60.74585976933908, - "c3": -54.40788007335681, - "c4": 71.95065475034004, - "c5": 16.81825085238775, - "c6": 34.51727757796995, - "c7": -8.043169379334131 + "points": { + "c1": -66.87439669106479, + "c2": 38.50765066940902, + "c3": 2.6132149445814434, + "c4": 62.38803762382254, + "c5": -25.211438019121175, + "c6": -39.02106704288273, + "c7": -58.67654544294918 }, - "vertexSeeds": { - "c1": 5.7685572655925865, - "c2": 6.380645183885494, - "c3": 6.306514273073747, - "c4": 6.051805054328033, - "c5": 6.300045648472871, - "c6": 5.73331435150934, - "c7": 6.254560699687415 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -106035,23 +106035,23 @@ "year": 1736, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -33.99661309689036, - "c2": 9.33490100443602, - "c3": 32.202236183963734, - "c4": 22.57117504428951, - "c5": 30.516333428037328, - "c6": 21.28914467163586, - "c7": 15.77534122131759 + "points": { + "c1": -25.675588110740023, + "c2": -31.281755338877634, + "c3": 28.74934019229586, + "c4": 0.5015264946477771, + "c5": 32.07931063215074, + "c6": -11.66323271189005, + "c7": 15.383321260467405 }, - "vertexSeeds": { - "c1": 4.246784403271967, - "c2": 3.9106714998907828, - "c3": 4.71873510082591, - "c4": 4.0359386638152515, - "c5": 4.08683575743676, - "c6": 4.513963637483208, - "c7": 4.5311738441835585 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.641701340730465, + "c5": 3.4812760055478487, + "c6": 2.3208506703652323, + "c7": 1.1604253351826161 }, "rgb": [77, 76, 132] }, @@ -106062,23 +106062,23 @@ "year": 1736, "resistanceReported": false, "duration": 2073600, - "curveSeeds": { - "c1": 6.391350701012584, - "c2": -3.8394327659730028, - "c3": 3.9718577126148986, - "c4": -1.175849389921181, - "c5": 5.546032421675207, - "c6": 3.5163494823152135, - "c7": 6.695757798700704 + "points": { + "c1": 5.839828219139584, + "c2": 7.984092647218535, + "c3": -8.011061435656995, + "c4": -3.4033183270557466, + "c5": -12.092091609916334, + "c6": -2.5702949711642677, + "c7": -7.452066577165613 }, - "vertexSeeds": { - "c1": 5.028141827016914, - "c2": 4.619464116137434, - "c3": 4.784355478510921, - "c4": 5.182775206264784, - "c5": 5.053275949329313, - "c6": 4.8245882287723525, - "c7": 4.5323099737919375 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -106089,23 +106089,23 @@ "year": 1736, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -5.091847052482429, - "c2": -5.907613675483937, - "c3": -14.402846433101143, - "c4": 14.171476392708833, - "c5": -9.189384952777843, - "c6": 8.807681819585063, - "c7": -18.78896037752439 + "points": { + "c1": -23.23921724002622, + "c2": 1.6060686632900705, + "c3": 17.829794349613806, + "c4": 24.66818716416411, + "c5": -10.224140917707697, + "c6": 26.69835001120616, + "c7": 25.012569794782344 }, - "vertexSeeds": { - "c1": 4.003785864177554, - "c2": 4.157943077407037, - "c3": 4.135423232762221, - "c4": 4.272618715130063, - "c5": 4.158259516410063, - "c6": 4.194022470147758, - "c7": 4.119732841503964 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090156, + "c3": 5.224225612575127, + "c4": 4.179380490060105, + "c5": 3.134535367545075, + "c6": 2.0896902450300523, + "c7": 1.0448451225150228 }, "rgb": [222, 0, 59] }, @@ -106116,23 +106116,23 @@ "year": 1736, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 15.82520911779854, - "c2": 18.05249653299578, - "c3": 11.033744225005957, - "c4": 22.122747240734025, - "c5": 4.942431887856191, - "c6": 24.89212271341096, - "c7": -13.622023778637907 + "points": { + "c1": 28.997156964312577, + "c2": 4.580933251560875, + "c3": 20.804151953091623, + "c4": 9.59065890784819, + "c5": 3.3993873806155044, + "c6": 5.6751721932296455, + "c7": -3.7818379829348707 }, - "vertexSeeds": { - "c1": 3.347595424236245, - "c2": 3.3440045898697943, - "c3": 3.4968974534052673, - "c4": 3.386252324384256, - "c5": 3.4876250761047687, - "c6": 3.4568466009885523, - "c7": 3.7190075159138454 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803049, + "c3": 4.484512251502544, + "c4": 3.5876098012020328, + "c5": 2.690707350901528, + "c6": 1.7938049006010164, + "c7": 0.8969024503005114 }, "rgb": [86, 146, 138] }, @@ -106143,23 +106143,23 @@ "year": 1737, "resistanceReported": false, "duration": 62035200, - "curveSeeds": { - "c1": 61.75009578679406, - "c2": -23.70527569943409, - "c3": -32.10173992282993, - "c4": -38.378379171960475, - "c5": 42.96403606701037, - "c6": -28.797293923083615, - "c7": 20.57760096126397 + "points": { + "c1": 18.17939773388197, + "c2": -32.27839249755779, + "c3": -45.184152214945286, + "c4": 40.68574143251243, + "c5": 24.387076572231294, + "c6": -38.49415707814832, + "c7": -40.06542129581788 }, - "vertexSeeds": { - "c1": 4.283218856208773, - "c2": 3.974438273646002, - "c3": 4.519919127816506, - "c4": 4.547923674525737, - "c5": 4.2092565485636735, - "c6": 3.9773972097037245, - "c7": 4.115163101444184 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [222, 0, 59] }, @@ -106170,23 +106170,23 @@ "year": 1736, "resistanceReported": true, "duration": 17798400, - "curveSeeds": { - "c1": 26.831692360519774, - "c2": -12.054762461912969, - "c3": -18.035077549426347, - "c4": -15.3426205189105, - "c5": 13.304190843064127, - "c6": -0.47295144679338463, - "c7": -19.784678026719824 + "points": { + "c1": -22.46940096576183, + "c2": -4.558593733248394, + "c3": -26.13539113014555, + "c4": -5.422909358998254, + "c5": 24.00868849772929, + "c6": 18.691877242956252, + "c7": -7.450518311005094 }, - "vertexSeeds": { - "c1": 3.5777606447711907, - "c2": 3.9833112026264237, - "c3": 3.9370498023654985, - "c4": 4.004179385630215, - "c5": 3.862537886559303, - "c6": 3.7164143679585235, - "c7": 3.8334563517339753 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.85298196948682, + "c3": 4.877484974572353, + "c4": 3.9019879796578802, + "c5": 2.9264909847434133, + "c6": 1.9509939898289401, + "c7": 0.9754969949144668 }, "rgb": [222, 0, 59] }, @@ -106197,23 +106197,23 @@ "year": 1736, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -11.591283102150328, - "c2": -7.9748095180244505, - "c3": -26.902199966711816, - "c4": -26.639703961963285, - "c5": 15.968243743846493, - "c6": 11.879237186657654, - "c7": -11.572894852786817 + "points": { + "c1": -22.436618174556823, + "c2": -28.201881715906786, + "c3": -6.8227900860035255, + "c4": -7.0513676942512795, + "c5": -22.51988143956531, + "c6": 31.693731455824775, + "c7": 28.628620460758647 }, - "vertexSeeds": { - "c1": 5.688673092034164, - "c2": 6.003919082274129, - "c3": 5.846596302286986, - "c4": 6.153156030933012, - "c5": 5.8092382633443815, - "c6": 5.888149976181286, - "c7": 5.719636987958193 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951458, + "c3": 7.443365695792884, + "c4": 5.95469255663431, + "c5": 4.466019417475735, + "c6": 2.9773462783171487, + "c7": 1.4886731391585744 }, "rgb": [238, 201, 159] }, @@ -106224,23 +106224,23 @@ "year": 1736, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 35.35961660665337, - "c2": -10.314632509120688, - "c3": -12.575270625368592, - "c4": -27.644205114219254, - "c5": -29.540573477284916, - "c6": -6.683857495328155, - "c7": -10.070845332791759 + "points": { + "c1": -36.81319406656414, + "c2": -14.85880836348801, + "c3": -25.624385406995973, + "c4": -13.572160180532233, + "c5": -39.328517652870666, + "c6": 19.80088585055126, + "c7": -6.288538534087543 }, - "vertexSeeds": { - "c1": 7.504615203662305, - "c2": 7.195504497430719, - "c3": 7.065790301918124, - "c4": 7.308465678576368, - "c5": 7.144023232744702, - "c6": 7.2550913492464995, - "c7": 7.704827543845999 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008313, + "c3": 9.20018492834027, + "c4": 7.360147942672208, + "c5": 5.520110957004167, + "c6": 3.680073971336104, + "c7": 1.840036985668042 }, "rgb": [238, 201, 159] }, @@ -106251,23 +106251,23 @@ "year": 1736, "resistanceReported": false, "duration": 864000, - "curveSeeds": { - "c1": 3.1654585441274676, - "c2": 9.819964966657713, - "c3": 2.9465389507901953, - "c4": -4.302004360395055, - "c5": -4.4676316046963045, - "c6": 0.5294896590366793, - "c7": 2.5567280840237636 + "points": { + "c1": -8.692470102623291, + "c2": 5.396545870404514, + "c3": -4.257577525400395, + "c4": -0.7241096849171829, + "c5": -4.6733604220398295, + "c6": 1.533180009259972, + "c7": -8.69973172247299 }, - "vertexSeeds": { - "c1": 4.538952343615413, - "c2": 5.059810532615025, - "c3": 4.540369157818633, - "c4": 4.356627994053781, - "c5": 5.165813437903823, - "c6": 5.136967103913519, - "c7": 4.608550264080138 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -106278,23 +106278,23 @@ "year": 1736, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -13.917711224927189, - "c2": -16.86022691600568, - "c3": 32.09490803232663, - "c4": -16.979645485676627, - "c5": -29.056535749384118, - "c6": 23.407186888567963, - "c7": -33.20325561192816 + "points": { + "c1": -3.2131853772494807, + "c2": -27.47041741319382, + "c3": -25.785716334935692, + "c4": 35.547715085876675, + "c5": -5.802261090682066, + "c6": 34.05961726178403, + "c7": -24.502855809405307 }, - "vertexSeeds": { - "c1": 5.699928380436315, - "c2": 5.819018292744499, - "c3": 6.096843500117108, - "c4": 6.108298698889067, - "c5": 5.966626195306342, - "c6": 5.65121187402675, - "c7": 6.0394794884353065 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790561, + "c3": 7.35090152565881, + "c4": 5.8807212205270405, + "c5": 4.41054091539529, + "c6": 2.9403606102635202, + "c7": 1.4701803051317703 }, "rgb": [238, 201, 159] }, @@ -106305,23 +106305,23 @@ "year": 1736, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 0.028844200769295725, - "c2": 22.71998500579333, - "c3": -4.7879678817600535, - "c4": 19.144556825448856, - "c5": 10.38617807909392, - "c6": 4.229806421801282, - "c7": -9.34296519319534 + "points": { + "c1": 8.055690362794376, + "c2": -13.967642469280769, + "c3": -10.21664328736085, + "c4": 10.730119200538372, + "c5": -24.092644610507264, + "c6": 0.8887858113775842, + "c7": -4.92101614470829 }, - "vertexSeeds": { - "c1": 1.9032524495925276, - "c2": 2.09862006518465, - "c3": 1.9034142267721157, - "c4": 2.0221415974651453, - "c5": 1.7391252534845563, - "c6": 1.7704093146848519, - "c7": 2.0776004480444 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.542764678687008, + "c4": 2.0342117429496063, + "c5": 1.5256588072122037, + "c6": 1.0171058714748016, + "c7": 0.5085529357373996 }, "rgb": [58, 15, 49] }, @@ -106332,23 +106332,23 @@ "year": 1737, "resistanceReported": false, "duration": 56505600, - "curveSeeds": { - "c1": -56.756329703254835, - "c2": 32.50611519692791, - "c3": 71.49892689478663, - "c4": 19.998226858640763, - "c5": -65.27730802260575, - "c6": 55.488831225635764, - "c7": 16.10712329019873 + "points": { + "c1": 41.66612042326847, + "c2": -1.9223776351460344, + "c3": -30.45479938125183, + "c4": 66.92224631659901, + "c5": 56.51488841247867, + "c6": -54.73507065834868, + "c7": -48.914880344724274 }, - "vertexSeeds": { - "c1": 7.4443609146481595, - "c2": 7.3420576862038045, - "c3": 7.049796665644505, - "c4": 7.3516030858306, - "c5": 6.995365770673693, - "c6": 7.490733163806136, - "c7": 7.296191527889474 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807213, + "c3": 9.084604715672683, + "c4": 7.267683772538149, + "c5": 5.450762829403617, + "c6": 3.6338418862690647, + "c7": 1.8169209431345323 }, "rgb": [238, 201, 159] }, @@ -106359,23 +106359,23 @@ "year": 1737, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": -28.470675779756082, - "c2": -25.371282435160154, - "c3": 49.3717244245872, - "c4": -19.99392312125469, - "c5": 50.06628111661546, - "c6": 25.492570921369918, - "c7": -5.421167257782415 + "points": { + "c1": -43.25663582338916, + "c2": 50.11313859940148, + "c3": -30.452884574106474, + "c4": 19.14945213781708, + "c5": 20.870508188503393, + "c6": 47.35391502877353, + "c7": -52.82503195262807 }, - "vertexSeeds": { - "c1": 1.498774730982061, - "c2": 1.5373399517667445, - "c3": 1.5236980626913623, - "c4": 1.4432382351248494, - "c5": 1.478495691518175, - "c6": 1.4029996030151717, - "c7": 1.4602872476447688 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590853, + "c3": 1.9879796578825693, + "c4": 1.5903837263060558, + "c5": 1.1927877947295427, + "c6": 0.7951918631530264, + "c7": 0.3975959315765132 }, "rgb": [222, 0, 59] }, @@ -106386,23 +106386,23 @@ "year": 1737, "resistanceReported": false, "duration": 43286400, - "curveSeeds": { - "c1": -33.380894486494185, - "c2": 38.381524813730685, - "c3": -3.5818856850137877, - "c4": 20.45377907958207, - "c5": 15.44896686662522, - "c6": 49.672878983014506, - "c7": -30.280542439855978 + "points": { + "c1": -44.30151940301557, + "c2": 48.75118748495404, + "c3": -13.714068709197853, + "c4": -4.485796547656463, + "c5": 55.49311779402597, + "c6": 46.3107177334014, + "c7": 13.520301028127243 }, - "vertexSeeds": { - "c1": 8.486295157176425, - "c2": 8.359808240070508, - "c3": 8.336306158784687, - "c4": 8.06949085236688, - "c5": 8.844649863475093, - "c6": 8.220427294969586, - "c7": 8.056001713290417 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461855, + "c3": 10.61026352288489, + "c4": 8.488210818307909, + "c5": 6.366158113730927, + "c6": 4.2441054091539625, + "c7": 2.1220527045769813 }, "rgb": [238, 201, 159] }, @@ -106413,23 +106413,23 @@ "year": 1737, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 0.5210575163823989, - "c2": -20.989374260763192, - "c3": -15.377569076809074, - "c4": 13.523662974134623, - "c5": 39.766907445576805, - "c6": -22.660318033516457, - "c7": -24.761243517891355 + "points": { + "c1": 15.011541596790124, + "c2": 18.64072192929946, + "c3": 48.86437882243489, + "c4": -50.097901267565916, + "c5": 26.83472730844551, + "c6": -19.4001847852593, + "c7": -20.799374314443234 }, - "vertexSeeds": { - "c1": 9.24110223534669, - "c2": 10.068628863549172, - "c3": 9.576321329866099, - "c4": 9.912451685914183, - "c5": 9.836257505797544, - "c6": 9.555101025399162, - "c7": 9.965914832659761 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156726, + "c3": 12.159038372630604, + "c4": 9.727230698104483, + "c5": 7.295423023578363, + "c6": 4.863615349052242, + "c7": 2.431807674526121 }, "rgb": [77, 76, 132] }, @@ -106440,23 +106440,23 @@ "year": 1736, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 15.649031240100527, - "c2": -8.383861869591566, - "c3": -3.810172196768672, - "c4": -23.566833493788337, - "c5": 6.115438867988281, - "c6": -1.3860996532905077, - "c7": 5.101513922409474 + "points": { + "c1": 24.4224252907605, + "c2": 4.326626958262075, + "c3": 1.0131499293084119, + "c4": 5.7962717326391555, + "c5": -4.936318666503091, + "c6": -7.135460828426222, + "c7": 5.835181979322641 }, - "vertexSeeds": { - "c1": 4.038989605170537, - "c2": 3.8024727462897814, - "c3": 3.72971704421932, - "c4": 3.977605937591071, - "c5": 3.7797440803499804, - "c6": 3.9827638929641256, - "c7": 3.650527241692099 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.85298196948682, + "c3": 4.877484974572353, + "c4": 3.9019879796578802, + "c5": 2.9264909847434133, + "c6": 1.9509939898289401, + "c7": 0.9754969949144668 }, "rgb": [58, 15, 49] }, @@ -106467,23 +106467,23 @@ "year": 1736, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 33.17222087769129, - "c2": -17.077275249377575, - "c3": -4.059691346171665, - "c4": 28.635453030985033, - "c5": -19.569964849193994, - "c6": 7.915429689118888, - "c7": -15.604003397317381 + "points": { + "c1": -15.050146060590986, + "c2": -12.646667634915069, + "c3": -5.185871035882123, + "c4": 14.725169307430043, + "c5": 17.50700249186861, + "c6": -1.0510201870219404, + "c7": 15.032764126698744 }, - "vertexSeeds": { - "c1": 6.6183511562225, - "c2": 6.65821293358182, - "c3": 6.390458457856194, - "c4": 6.49329533574473, - "c5": 6.748970796480421, - "c6": 7.122081965799427, - "c7": 7.0133256035657325 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042995, + "c3": 8.645399907535827, + "c4": 6.916319926028659, + "c5": 5.187239944521491, + "c6": 3.458159963014323, + "c7": 1.7290799815071551 }, "rgb": [77, 76, 132] }, @@ -106494,23 +106494,23 @@ "year": 1737, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 9.869957874786458, - "c2": 24.51667623310479, - "c3": -7.04954739835253, - "c4": -32.32420656666157, - "c5": -22.882238797805588, - "c6": 3.5077323639900797, - "c7": -31.519817230320758 + "points": { + "c1": -17.64884640797934, + "c2": 6.122363933758926, + "c3": -9.535960363828316, + "c4": 26.832050218724717, + "c5": 10.239821939824118, + "c6": 13.698367861549421, + "c7": -17.59903200725363 }, - "vertexSeeds": { - "c1": 3.145686348563985, - "c2": 3.0838818796142706, - "c3": 3.2006591010067185, - "c4": 2.975522074133581, - "c5": 3.075921644069335, - "c6": 3.113417168262826, - "c7": 3.02719157366843 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [222, 0, 59] }, @@ -106521,23 +106521,23 @@ "year": 1736, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -16.329476533718125, - "c2": -3.681737370773824, - "c3": -22.103934418005338, - "c4": 21.412869735312363, - "c5": -2.603800218595726, - "c6": 7.553652882578643, - "c7": 11.091210018576994 + "points": { + "c1": 19.20488219780121, + "c2": 7.143892730093633, + "c3": 22.1566305218425, + "c4": 17.945383674118688, + "c5": -7.826173979511854, + "c6": 7.631450559025247, + "c7": 7.222536889516441 }, - "vertexSeeds": { - "c1": 4.286894610837921, - "c2": 4.437552499153731, - "c3": 4.227501053083526, - "c4": 3.9756529595645507, - "c5": 4.012941334693671, - "c6": 4.350021547517321, - "c7": 4.232124495072059 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532597, + "c3": 5.478502080443827, + "c4": 4.382801664355064, + "c5": 3.287101248266295, + "c6": 2.191400832177532, + "c7": 1.095700416088763 }, "rgb": [58, 15, 49] }, @@ -106548,23 +106548,23 @@ "year": 1737, "resistanceReported": false, "duration": 44496000, - "curveSeeds": { - "c1": -57.75086468400527, - "c2": -32.06156732345987, - "c3": 41.11843515365443, - "c4": -24.36811534231635, - "c5": -47.65932664978476, - "c6": 57.676983662361806, - "c7": 21.388424051256607 + "points": { + "c1": -44.99904449611006, + "c2": -27.550253747728334, + "c3": -4.802862123148174, + "c4": -37.84321761593533, + "c5": 58.91157089294623, + "c6": -38.62903120645727, + "c7": -34.35785441121007 }, - "vertexSeeds": { - "c1": 1.8863336995563476, - "c2": 1.8378010235566904, - "c3": 1.8278045536953071, - "c4": 1.772388503673532, - "c5": 1.7158592708940617, - "c6": 1.8371494215620323, - "c7": 1.8234296537190713 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.8294036061026344, + "c3": 2.3578363384188634, + "c4": 1.8862690707350895, + "c5": 1.4147018030513185, + "c6": 0.9431345353675448, + "c7": 0.47156726768377394 }, "rgb": [222, 0, 59] }, @@ -106575,23 +106575,23 @@ "year": 1737, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": 3.43222228148246, - "c2": -27.33024511483211, - "c3": 20.98863669312074, - "c4": -44.32316615359408, - "c5": -14.313894617051794, - "c6": -25.836813488771032, - "c7": 24.39295584116664 + "points": { + "c1": -42.51955078797879, + "c2": 38.22081991017879, + "c3": 18.401673140480256, + "c4": 37.51805423143968, + "c5": 12.261319887471942, + "c6": -3.549463372889683, + "c7": 20.064460156796244 }, - "vertexSeeds": { - "c1": 8.55323429983348, - "c2": 8.228687971318761, - "c3": 8.151063426847813, - "c4": 8.116371646689872, - "c5": 7.592611163762307, - "c6": 7.071907921312837, - "c7": 7.532760759247269 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938977, + "c3": 10.309754969949141, + "c4": 8.247803975959314, + "c5": 6.1858529819694885, + "c6": 4.123901987979653, + "c7": 2.0619509939898264 }, "rgb": [238, 201, 159] }, @@ -106602,23 +106602,23 @@ "year": 1737, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -16.080037312739364, - "c2": 7.997736609115705, - "c3": -34.38107082987146, - "c4": -3.9208963859326715, - "c5": 45.57346189919347, - "c6": 45.16182152977323, - "c7": -26.51200318159523 + "points": { + "c1": -6.658394787420946, + "c2": 25.441072099778758, + "c3": -29.201348076544935, + "c4": 24.91937537510467, + "c5": -43.26918277574746, + "c6": 44.94312082471608, + "c7": 35.224593175280056 }, - "vertexSeeds": { - "c1": 4.099740932642487, - "c2": 4.099740932642487, - "c3": 4.099740932642487, - "c4": 4.099740932642487, - "c5": 4.099740932642487, - "c6": 4.099740932642487, - "c7": 4.099740932642487 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -106629,23 +106629,23 @@ "year": 1737, "resistanceReported": false, "duration": 50198400, - "curveSeeds": { - "c1": -15.235849855202524, - "c2": -18.51771995975303, - "c3": 64.81894134836313, - "c4": 52.52895066821233, - "c5": -38.42826911549231, - "c6": 10.752417806254854, - "c7": 43.61883625730496 + "points": { + "c1": 6.107168467133107, + "c2": -57.51938468270106, + "c3": -11.659592524926616, + "c4": -21.084745344014898, + "c5": -20.203899179870106, + "c6": 0.4212500930938461, + "c7": 45.66454030658295 }, - "vertexSeeds": { - "c1": 2.445872310702408, - "c2": 2.856038582683083, - "c3": 2.4948811395631973, - "c4": 2.8370828487128756, - "c5": 2.5436594727147286, - "c6": 2.6825030867872153, - "c7": 2.4840164470989565 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073508, + "c3": 3.4905224225612543, + "c4": 2.792417938049007, + "c5": 2.094313453536754, + "c6": 1.3962089690245008, + "c7": 0.698104484512253 }, "rgb": [86, 146, 138] }, @@ -106656,23 +106656,23 @@ "year": 1737, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": 27.056031934518636, - "c2": -30.992317124309533, - "c3": 27.719516029713922, - "c4": 37.72385443221807, - "c5": -5.375078047019905, - "c6": -19.85802004148458, - "c7": 27.69788512601405 + "points": { + "c1": -40.22100822992332, + "c2": 25.768391437808894, + "c3": -3.0965492821867784, + "c4": -47.171081124606296, + "c5": -8.773311138332879, + "c6": 15.217231814013509, + "c7": -40.75418649038404 }, - "vertexSeeds": { - "c1": 7.130895720823007, - "c2": 6.803297062232994, - "c3": 7.182927780599899, - "c4": 7.445572151368027, - "c5": 7.034999765521841, - "c6": 6.829791370351122, - "c7": 6.975960412708384 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -106683,23 +106683,23 @@ "year": 1736, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 29.308363966400726, - "c2": 2.257673452790172, - "c3": 20.157492069447706, - "c4": -27.61742267653004, - "c5": 20.81001056386058, - "c6": -29.733965219099943, - "c7": -17.735010137989935 + "points": { + "c1": -23.047655073455175, + "c2": 9.54946011547002, + "c3": -15.406218824495834, + "c4": 28.336155753444444, + "c5": -29.74624189495917, + "c6": -0.47973308070441334, + "c7": -17.000985628285978 }, - "vertexSeeds": { - "c1": 6.134474995287817, - "c2": 6.04479140619204, - "c3": 5.76444926550961, - "c4": 6.222192142729254, - "c5": 5.735973518369225, - "c6": 5.652100265227841, - "c7": 5.487471370028507 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152565, + "c3": 7.558945908460472, + "c4": 6.047156726768376, + "c5": 4.535367545076283, + "c6": 3.023578363384188, + "c7": 1.511789181692094 }, "rgb": [222, 0, 59] }, @@ -106710,23 +106710,23 @@ "year": 1736, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -17.220652773006805, - "c2": -20.085003188201284, - "c3": -4.5363545060962345, - "c4": 10.878121727888729, - "c5": 6.00783249632585, - "c6": -21.78557365078553, - "c7": -25.864258387561996 + "points": { + "c1": -22.37255979115171, + "c2": 15.620003543153704, + "c3": -12.154301974900367, + "c4": 18.049438489892975, + "c5": 18.582319135987493, + "c6": 23.610052585819826, + "c7": -13.087917460390297 }, - "vertexSeeds": { - "c1": 12.731462116548025, - "c2": 12.72160330891098, - "c3": 12.454240170365603, - "c4": 12.601020691561985, - "c5": 12.66012830877804, - "c6": 12.546232904176714, - "c7": 12.619321277046737 + "offsets": { + "c1": 21.68284789644013, + "c2": 18.58529819694867, + "c3": 15.487748497457211, + "c4": 12.390198797965754, + "c5": 9.292649098474376, + "c6": 6.195099398982917, + "c7": 3.0975496994914584 }, "rgb": [58, 15, 49] }, @@ -106737,23 +106737,23 @@ "year": 1736, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 5.115626048600667, - "c2": -22.372772597361593, - "c3": -33.05515905582206, - "c4": 15.256707986145592, - "c5": 9.368532510727128, - "c6": 20.197950544068696, - "c7": 21.35000549004618 + "points": { + "c1": -12.615521838486579, + "c2": -5.782213609507256, + "c3": 15.10211420921118, + "c4": -5.0345079035869205, + "c5": 23.841915582650998, + "c6": 4.715983411234063, + "c7": -11.650591753501818 }, - "vertexSeeds": { - "c1": 12.201988548930315, - "c2": 12.126103351468778, - "c3": 12.19985529949505, - "c4": 12.08988001784884, - "c5": 11.872701107166304, - "c6": 12.175451138267478, - "c7": 11.99732312624367 + "offsets": { + "c1": 20.355987055016183, + "c2": 17.447988904299567, + "c3": 14.53999075358295, + "c4": 11.631992602866331, + "c5": 8.723994452149851, + "c6": 5.815996301433234, + "c7": 2.907998150716617 }, "rgb": [77, 76, 132] }, @@ -106764,23 +106764,23 @@ "year": 1737, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -37.60543676477721, - "c2": 20.85185043596377, - "c3": 14.212173015099658, - "c4": -19.36355226689249, - "c5": 10.546953945705454, - "c6": -32.47074839700174, - "c7": 21.13571422199942 + "points": { + "c1": -40.46173739054746, + "c2": 46.91921308494719, + "c3": -41.691355476179126, + "c4": 39.94577508778089, + "c5": 0.3762980745489557, + "c6": 25.83865144653572, + "c7": 14.56288877332458 }, - "vertexSeeds": { - "c1": 8.41683481379105, - "c2": 7.947357802480255, - "c3": 8.526805317270167, - "c4": 8.46194825718457, - "c5": 8.284354016074824, - "c6": 8.259769066035675, - "c7": 8.046830151267164 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938972, + "c3": 10.30975496994914, + "c4": 8.247803975959329, + "c5": 6.185852981969496, + "c6": 4.123901987979664, + "c7": 2.061950993989832 }, "rgb": [77, 76, 132] }, @@ -106791,23 +106791,23 @@ "year": 1737, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -29.41292144186182, - "c2": -9.510880741684481, - "c3": 16.9907781605756, - "c4": -4.070132587231136, - "c5": -20.343420375707144, - "c6": -3.894673238431224, - "c7": -29.01196871205891 + "points": { + "c1": -16.282478655057876, + "c2": 21.55391081664785, + "c3": 23.041764525416987, + "c4": -42.83873417621983, + "c5": -9.461471877238502, + "c6": 36.801415039540124, + "c7": 44.611522475703644 }, - "vertexSeeds": { - "c1": 4.501239692647717, - "c2": 4.47777561083348, - "c3": 4.829910116580237, - "c4": 4.359451024161154, - "c5": 4.3795805072690825, - "c6": 4.982744222354827, - "c7": 4.228132398090846 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -106818,23 +106818,23 @@ "year": 1737, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 29.678570297010637, - "c2": -26.935826858420082, - "c3": -1.9567387167315644, - "c4": 37.03888347951843, - "c5": 33.25734287300661, - "c6": -33.4103237320155, - "c7": -28.695004532735652 + "points": { + "c1": 38.115344449432854, + "c2": -3.9010386544726288, + "c3": -1.7392852658376796, + "c4": -23.87457719510388, + "c5": 36.036082555738076, + "c6": -4.103069002208329, + "c7": -11.090794069117276 }, - "vertexSeeds": { - "c1": 4.266419524353745, - "c2": 4.333412152226078, - "c3": 4.01373245186409, - "c4": 4.418219431869257, - "c5": 4.207504585557001, - "c6": 4.503918401223089, - "c7": 4.421526193127568 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -106845,23 +106845,23 @@ "year": 1736, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 18.25718444430234, - "c2": 10.943518973705864, - "c3": 23.604843639433966, - "c4": -31.34898202523686, - "c5": 5.400288520849173, - "c6": -35.765223356886416, - "c7": -30.048450253274027 + "points": { + "c1": -36.39782758332436, + "c2": 31.702084041312986, + "c3": 10.325773282965677, + "c4": -9.082174030160107, + "c5": -14.85098437029988, + "c6": 21.502801317482508, + "c7": -10.108834745163293 }, - "vertexSeeds": { - "c1": 6.65808658496786, - "c2": 6.49041336383064, - "c3": 6.361798667520355, - "c4": 6.655309381503006, - "c5": 6.5110489678969925, - "c6": 6.755863466377083, - "c7": 6.842191763375164 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479895, + "c3": 8.321775312066565, + "c4": 6.657420249653256, + "c5": 4.993065187239948, + "c6": 3.328710124826618, + "c7": 1.664355062413309 }, "rgb": [222, 0, 59] }, @@ -106872,23 +106872,23 @@ "year": 1737, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 8.030226543045558, - "c2": -32.472819420766875, - "c3": 33.513073678203355, - "c4": 26.191734027181866, - "c5": -33.8929047662925, - "c6": -6.371801991832122, - "c7": 29.767762745423994 + "points": { + "c1": -13.862452962919722, + "c2": -13.637610094110837, + "c3": 20.287725650506502, + "c4": 34.765788220291114, + "c5": -31.99659677618108, + "c6": 30.17742824412744, + "c7": -2.0023108533736362 }, - "vertexSeeds": { - "c1": 7.555086071181606, - "c2": 7.322847040882406, - "c3": 7.874287316530259, - "c4": 7.623693405293331, - "c5": 7.967325509647132, - "c6": 7.882701170337992, - "c7": 7.308586981712297 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571429, + "c3": 9.523809523809524, + "c4": 7.619047619047619, + "c5": 5.714285714285714, + "c6": 3.8095238095238093, + "c7": 1.9047619047619047 }, "rgb": [58, 15, 49] }, @@ -106899,23 +106899,23 @@ "year": 1737, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -22.78497479453475, - "c2": 41.975836483290045, - "c3": 40.18917034954713, - "c4": -4.055295342623943, - "c5": 35.512167093366564, - "c6": 9.675908151609974, - "c7": 19.41633020099365 + "points": { + "c1": -31.395303302236826, + "c2": -11.471697559353906, + "c3": 12.963686219770317, + "c4": -40.39406082140498, + "c5": -16.734533961137384, + "c6": -12.772538124192877, + "c7": 43.40199133469806 }, - "vertexSeeds": { - "c1": 4.287827774873642, - "c2": 4.797324861740371, - "c3": 4.562957963121447, - "c4": 4.2953512409429075, - "c5": 4.603170411113055, - "c6": 4.315315620623655, - "c7": 4.491220284533275 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -106926,23 +106926,23 @@ "year": 1737, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 0.9251200822204098, - "c2": -14.992445643784166, - "c3": -0.703430185123473, - "c4": 20.49059999723945, - "c5": -7.402483542778043, - "c6": 30.170220166020833, - "c7": -1.5408778321191008 + "points": { + "c1": -1.4139893891187256, + "c2": -28.088971333562732, + "c3": -14.876307079110553, + "c4": 40.7573128461574, + "c5": 23.42993201501566, + "c6": 27.1628993733546, + "c7": -26.530878493287535 }, - "vertexSeeds": { - "c1": 5.0996053602324185, - "c2": 4.674664343589535, - "c3": 4.51515392841053, - "c4": 4.823948948175092, - "c5": 4.630553616869617, - "c6": 4.221892599617822, - "c7": 4.4452973634425295 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -106953,23 +106953,23 @@ "year": 1736, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -4.504317918220025, - "c2": 26.436358861053293, - "c3": -8.264043666119939, - "c4": 25.44301945220495, - "c5": -14.396784338256154, - "c6": 24.35822788936523, - "c7": 32.87419506606376 + "points": { + "c1": 29.16365785984658, + "c2": 4.739399261873089, + "c3": -17.048028805627393, + "c4": 2.2215493095763392, + "c5": 11.182777621096456, + "c6": -36.968029362832546, + "c7": -29.24217331333984 }, - "vertexSeeds": { - "c1": 3.260089724636853, - "c2": 3.2811458888732634, - "c3": 3.1704714768806843, - "c4": 3.272338220074878, - "c5": 2.982580618698283, - "c6": 3.3130936635572494, - "c7": 3.078452175254575 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918167, + "c3": 3.9759593157651425, + "c4": 3.180767452612113, + "c5": 2.3855755894590835, + "c6": 1.5903837263060543, + "c7": 0.7951918631530295 }, "rgb": [86, 146, 138] }, @@ -106980,23 +106980,23 @@ "year": 1737, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 5.160004368728316, - "c2": -31.465562203222074, - "c3": 6.94364294546066, - "c4": -31.6301385674845, - "c5": -31.547098805943076, - "c6": -6.552801658812964, - "c7": -34.99811883078654 + "points": { + "c1": 32.98390551830721, + "c2": 25.32211270391751, + "c3": 31.696700621343837, + "c4": 35.28043589707295, + "c5": 9.059618489187407, + "c6": 10.300091582476874, + "c7": 7.769163389768927 }, - "vertexSeeds": { - "c1": 4.292536213232059, - "c2": 4.610779889964381, - "c3": 4.59135537041848, - "c4": 4.448167119944163, - "c5": 5.008831666811919, - "c6": 4.438999534330916, - "c7": 4.338174520529105 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -107007,23 +107007,23 @@ "year": 1738, "resistanceReported": false, "duration": 60393600, - "curveSeeds": { - "c1": 64.9104103754775, - "c2": -18.598755140418618, - "c3": 59.467592667585095, - "c4": -64.80421211124141, - "c5": 69.41616679297603, - "c6": -56.0283842064222, - "c7": -40.85613216197522 + "points": { + "c1": -28.207322029026912, + "c2": 20.335548422206273, + "c3": -53.47966841354297, + "c4": -40.0216240238383, + "c5": -21.070755821570707, + "c6": 2.829252727565276, + "c7": 9.654315560398103 }, - "vertexSeeds": { - "c1": 0.893829233761285, - "c2": 0.7991311915677813, - "c3": 0.8421276244575704, - "c4": 0.8865063699368136, - "c5": 0.8785513055005548, - "c6": 0.7971497415953922, - "c7": 0.8719729309144476 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.3314840499306526, + "c3": 1.1095700416088763, + "c4": 0.8876560332871017, + "c5": 0.6657420249653254, + "c6": 0.44382801664355087, + "c7": 0.22191400832177638 }, "rgb": [238, 201, 159] }, @@ -107034,23 +107034,23 @@ "year": 1737, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -32.420635437025304, - "c2": 0.9463727697843041, - "c3": -12.804151661210291, - "c4": -19.331898999470035, - "c5": 33.65394782840316, - "c6": 20.39598378843484, - "c7": 10.897267462815691 + "points": { + "c1": 4.699642167943878, + "c2": -17.546357041548426, + "c3": 25.34895404970542, + "c4": -3.889611549496891, + "c5": -34.10407600082216, + "c6": 36.64878714463697, + "c7": 23.038472229658034 }, - "vertexSeeds": { - "c1": 4.537237922999416, - "c2": 4.260901891759315, - "c3": 4.119660961913511, - "c4": 3.907718754700911, - "c5": 4.4580614331634845, - "c6": 4.231766371652911, - "c7": 4.385971130412988 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -107061,23 +107061,23 @@ "year": 1736, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 6.735258601373772, - "c2": -21.141876256402306, - "c3": 0.44995797974107177, - "c4": -4.37500744551625, - "c5": 11.898787049918148, - "c6": -14.20777395849369, - "c7": -2.2724025461041286 + "points": { + "c1": 4.617322279964888, + "c2": 9.516903352486374, + "c3": 2.0282145596784176, + "c4": 29.01144715167228, + "c5": -17.42807254395199, + "c6": 25.558153999143144, + "c7": -17.02905468894101 }, - "vertexSeeds": { - "c1": 7.111936934410152, - "c2": 6.656596141995954, - "c3": 6.380572339632229, - "c4": 6.421004457765232, - "c5": 6.851763099994999, - "c6": 7.273377335362893, - "c7": 6.931386373905082 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203882, + "c3": 8.737864077669903, + "c4": 6.990291262135922, + "c5": 5.242718446601941, + "c6": 3.495145631067961, + "c7": 1.7475728155339805 }, "rgb": [86, 146, 138] }, @@ -107088,23 +107088,23 @@ "year": 1737, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -16.172454331847728, - "c2": 36.33889755799695, - "c3": 8.382534248317185, - "c4": -23.802555963380236, - "c5": -43.53510064893174, - "c6": -1.2431657736160275, - "c7": 6.945960343042181 + "points": { + "c1": 26.495675371455796, + "c2": 41.26580214534781, + "c3": 33.89300781481308, + "c4": 8.671923989806764, + "c5": -27.430594213180918, + "c6": 10.165154633776709, + "c7": -35.576811625750906 }, - "vertexSeeds": { - "c1": 6.794408111017101, - "c2": 4.65944682425392, - "c3": 8.933168112467914, - "c4": 7.400267947042174, - "c5": 8.270679163056306, - "c6": 5.477195302048811, - "c7": 9.816519737615092 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754508, + "c3": 11.927877947295423, + "c4": 9.542302357836336, + "c5": 7.156726768377255, + "c6": 4.771151178918168, + "c7": 2.385575589459084 }, "rgb": [238, 201, 159] }, @@ -107115,23 +107115,23 @@ "year": 1737, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 18.148800487984346, - "c2": -40.03046279020347, - "c3": 9.356595984109326, - "c4": -26.053969515167175, - "c5": -4.30217196034274, - "c6": 28.770507097081826, - "c7": -10.089797019193995 + "points": { + "c1": 43.70278349347735, + "c2": -10.65191743309061, + "c3": -23.190903246036214, + "c4": -28.478829037873822, + "c5": -17.49917599137879, + "c6": 6.384149835126095, + "c7": 3.8910474235215986 }, - "vertexSeeds": { - "c1": 8.838631318407513, - "c2": 9.85713600101884, - "c3": 9.134665484164032, - "c4": 8.953259363677004, - "c5": 9.170472580771834, - "c6": 9.195569810507184, - "c7": 8.473101690939723 + "offsets": { + "c1": 16.601941747572816, + "c2": 14.230235783633844, + "c3": 11.858529819694876, + "c4": 9.486823855755892, + "c5": 7.115117891816922, + "c6": 4.743411927877953, + "c7": 2.3717059639389704 }, "rgb": [86, 146, 138] }, @@ -107142,23 +107142,23 @@ "year": 1737, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 16.461118870885564, - "c2": -36.32146923049945, - "c3": 20.4243337296338, - "c4": -3.42627485677221, - "c5": 14.88571283389107, - "c6": -16.767599010775005, - "c7": -36.98409733679728 + "points": { + "c1": 6.038136743918052, + "c2": -22.65140447167303, + "c3": -29.579910375669392, + "c4": 17.838061203840866, + "c5": 21.669140897755213, + "c6": -14.227579748380204, + "c7": -24.82393027589303 }, - "vertexSeeds": { - "c1": 5.899613287651955, - "c2": 5.616861026387239, - "c3": 5.725228916182266, - "c4": 6.00139705565582, - "c5": 5.89746442586993, - "c6": 6.473698849106811, - "c7": 6.464382193162212 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715676, + "c3": 7.88257050392973, + "c4": 6.306056403143787, + "c5": 4.729542302357842, + "c6": 3.1530282015718876, + "c7": 1.5765141007859542 }, "rgb": [58, 15, 49] }, @@ -107169,23 +107169,23 @@ "year": 1737, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -4.4082560651905, - "c2": -20.545806397957925, - "c3": -0.3453175705516358, - "c4": 2.5244429528825876, - "c5": 6.508223826233369, - "c6": 6.256622121920813, - "c7": 11.056786299510883 + "points": { + "c1": -36.47143561867232, + "c2": 18.543648219827332, + "c3": -3.455349889026941, + "c4": -5.433409954294721, + "c5": 12.297767638728068, + "c6": -28.18464424843853, + "c7": 9.518026046826648 }, - "vertexSeeds": { - "c1": 7.520929715052784, - "c2": 7.525395407423401, - "c3": 7.8178947336703315, - "c4": 7.900967464615417, - "c5": 7.598325086657164, - "c6": 7.627674395115134, - "c7": 7.987187848863722 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.53952843273232, + "c3": 9.616273693943604, + "c4": 7.693018955154887, + "c5": 5.76976421636615, + "c6": 3.846509477577433, + "c7": 1.9232547387887164 }, "rgb": [77, 76, 132] }, @@ -107196,23 +107196,23 @@ "year": 1737, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 10.006720640334542, - "c2": -13.030693328468207, - "c3": 32.16014212066521, - "c4": -35.48596852931869, - "c5": 3.0770465427568965, - "c6": 34.29168831948607, - "c7": -7.075034838275524 + "points": { + "c1": 10.683803827027312, + "c2": 29.201623810368687, + "c3": 8.828762464348891, + "c4": 8.958915824877437, + "c5": 33.947712087398074, + "c6": -28.48859580173224, + "c7": 23.54241943745668 }, - "vertexSeeds": { - "c1": 2.9333483912770655, - "c2": 2.873173713956284, - "c3": 2.7881888985065104, - "c4": 3.031232671735114, - "c5": 2.824889028169858, - "c6": 2.886566100634674, - "c7": 3.053211498563198 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395286, + "c3": 3.675450762829407, + "c4": 2.9403606102635274, + "c5": 2.205270457697648, + "c6": 1.4701803051317588, + "c7": 0.7350901525658794 }, "rgb": [238, 201, 159] }, @@ -107223,23 +107223,23 @@ "year": 1737, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 3.8852081399130824, - "c2": 13.89533003154228, - "c3": -27.273608006641254, - "c4": 28.342689738312714, - "c5": -33.62802617175141, - "c6": 10.677651320934736, - "c7": -1.3280900915038316 + "points": { + "c1": -7.012643651515653, + "c2": 35.42293299367789, + "c3": -4.9139076913234305, + "c4": -1.297709579479971, + "c5": -38.14561006273392, + "c6": -20.165900928668048, + "c7": -28.282108259858276 }, - "vertexSeeds": { - "c1": 5.646089637220454, - "c2": 5.857283214981022, - "c3": 5.881387297040552, - "c4": 5.712132457048222, - "c5": 5.735545843894835, - "c6": 5.6714102165676685, - "c7": 5.306218086007751 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388344, + "c3": 7.119741100323627, + "c4": 5.695792880258896, + "c5": 4.271844660194179, + "c6": 2.847896440129448, + "c7": 1.4239482200647164 }, "rgb": [238, 201, 159] }, @@ -107250,23 +107250,23 @@ "year": 1737, "resistanceReported": true, "duration": 24537600, - "curveSeeds": { - "c1": 11.867579315884981, - "c2": 4.90205870228921, - "c3": -2.749952725627274, - "c4": -6.513134786143077, - "c5": -25.539692677750118, - "c6": -31.655666279808372, - "c7": 18.00328232506547 + "points": { + "c1": -37.7468246702502, + "c2": -22.357448533516198, + "c3": -3.4718003023300597, + "c4": -28.704326147589605, + "c5": 12.409715895204876, + "c6": -28.241369612618005, + "c7": 9.08598130964382 }, - "vertexSeeds": { - "c1": 4.515008281270436, - "c2": 5.120804876325802, - "c3": 4.2593492742482, - "c4": 4.7658706156122985, - "c5": 5.060294107784788, - "c6": 4.963322147457596, - "c7": 4.945754940948013 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -107277,23 +107277,23 @@ "year": 1737, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 41.47756907556809, - "c2": 40.319017945652114, - "c3": -15.88462549990421, - "c4": 32.14484611263634, - "c5": 27.0929190649665, - "c6": 38.941142094586674, - "c7": 25.707229401203172 + "points": { + "c1": 23.93532105745833, + "c2": -10.950627163772921, + "c3": 7.98464132851349, + "c4": -34.926419782285265, + "c5": 12.250634986890326, + "c6": -42.17904671088402, + "c7": -12.272428141108541 }, - "vertexSeeds": { - "c1": 3.720709385743938, - "c2": 3.860362484551236, - "c3": 3.8911322120418306, - "c4": 3.8104999990914834, - "c5": 3.6909215655729173, - "c6": 3.834193007547923, - "c7": 3.798927576869426 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285719, + "c3": 4.761904761904761, + "c4": 3.8095238095238124, + "c5": 2.8571428571428545, + "c6": 1.9047619047619062, + "c7": 0.9523809523809484 }, "rgb": [238, 201, 159] }, @@ -107304,23 +107304,23 @@ "year": 1736, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 17.412532529903267, - "c2": 12.661240196367977, - "c3": -2.195509173294873, - "c4": 20.904442189955432, - "c5": 14.167485118937506, - "c6": -1.3006817804170936, - "c7": -16.675868217557888 + "points": { + "c1": -5.897145911056654, + "c2": -13.914715610571358, + "c3": -9.34152266963779, + "c4": 5.894615559130294, + "c5": -20.37031698778977, + "c6": 20.439556287022434, + "c7": -1.912711532114411 }, - "vertexSeeds": { - "c1": 6.40378036701101, - "c2": 5.773791975178741, - "c3": 6.691078132650773, - "c4": 6.023511243739569, - "c5": 5.8925997317583585, - "c6": 6.1273366331358154, - "c7": 6.116149914647863 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.81969486823856, + "c3": 8.18307905686547, + "c4": 6.546463245492371, + "c5": 4.90984743411928, + "c6": 3.27323162274619, + "c7": 1.6366158113731002 }, "rgb": [86, 146, 138] }, @@ -107331,23 +107331,23 @@ "year": 1737, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -2.7497625218769883, - "c2": 34.106623685932135, - "c3": 26.851774742807976, - "c4": 17.62467436390598, - "c5": -14.034307424037703, - "c6": 15.056140213792197, - "c7": 34.762043523173745 + "points": { + "c1": -5.163610884979278, + "c2": 3.3721621899545937, + "c3": 29.386659138946357, + "c4": -25.428780948287, + "c5": -34.24292135219458, + "c6": -5.5116436939096545, + "c7": -40.15389630157576 }, - "vertexSeeds": { - "c1": 10.360303926256636, - "c2": 10.485332721729852, - "c3": 10.8901500255146, - "c4": 10.5718729732207, - "c5": 9.954602394325253, - "c6": 9.998050405871675, - "c7": 10.86075574110135 + "offsets": { + "c1": 18.7378640776699, + "c2": 16.061026352288486, + "c3": 13.384188626907077, + "c4": 10.707350901525663, + "c5": 8.03051317614425, + "c6": 5.353675450762838, + "c7": 2.6768377253814126 }, "rgb": [222, 0, 59] }, @@ -107358,23 +107358,23 @@ "year": 1737, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 49.36278632431279, - "c2": -16.354577619941885, - "c3": -50.232752269796755, - "c4": -51.77797959323216, - "c5": 15.000781861466422, - "c6": 25.67146748732536, - "c7": 6.9208533630596705 + "points": { + "c1": -29.45965580279809, + "c2": -1.8081142162089208, + "c3": 33.24087688374226, + "c4": 25.64741178292836, + "c5": -7.686795958411167, + "c6": 30.647253468148946, + "c7": -12.216953245716851 }, - "vertexSeeds": { - "c1": 6.228241191468839, - "c2": 5.608185800694155, - "c3": 6.2913025437266965, - "c4": 6.2614528072815, - "c5": 5.562819237290374, - "c6": 5.704912594798459, - "c7": 6.253235722827073 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -107385,23 +107385,23 @@ "year": 1736, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -25.454532771681016, - "c2": -16.367299438391534, - "c3": -5.996175615808248, - "c4": -22.199036570313243, - "c5": 15.573452228191478, - "c6": -17.603522858558442, - "c7": 23.17172438836522 + "points": { + "c1": 10.251151532567896, + "c2": 0.9031344344211121, + "c3": 10.148665700338562, + "c4": -3.3000386318679844, + "c5": -21.823103871795762, + "c6": -4.871984289311314, + "c7": 26.636503090049303 }, - "vertexSeeds": { - "c1": 3.827432563496319, - "c2": 4.435468357168247, - "c3": 4.064588071151313, - "c4": 3.8110150248485692, - "c5": 4.52161948296366, - "c6": 4.4272641909917505, - "c7": 3.9604086665225853 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -107412,23 +107412,23 @@ "year": 1737, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -41.60521541150713, - "c2": -8.596515542151153, - "c3": 3.0208813492136386, - "c4": -20.004511944923728, - "c5": -8.090521339001945, - "c6": -35.00208487087381, - "c7": 35.93889946498941 + "points": { + "c1": -1.770698790629531, + "c2": 11.140987009881918, + "c3": 45.01503952709991, + "c4": 15.494694579084886, + "c5": 18.942642394795065, + "c6": 47.00445092795237, + "c7": 48.04313724429395 }, - "vertexSeeds": { - "c1": 8.669605597600496, - "c2": 8.113769343589428, - "c3": 8.172573341634552, - "c4": 9.040471639003476, - "c5": 8.726206925170066, - "c6": 8.249297517835085, - "c7": 8.084197938343221 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226073, + "c3": 11.049468331021725, + "c4": 8.839574664817377, + "c5": 6.62968099861303, + "c6": 4.419787332408696, + "c7": 2.209893666204335 }, "rgb": [222, 0, 59] }, @@ -107439,23 +107439,23 @@ "year": 1737, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 9.535915655029086, - "c2": 7.9975370703368895, - "c3": 6.615949881219343, - "c4": -15.710171810657142, - "c5": -28.512900744202476, - "c6": -6.703566012412399, - "c7": 2.2650224067278693 + "points": { + "c1": 27.86422688078131, + "c2": -24.045644413310953, + "c3": 18.59654811123776, + "c4": -16.469508361879054, + "c5": -29.490437477642946, + "c6": -15.408492024401678, + "c7": -20.66632581697722 }, - "vertexSeeds": { - "c1": 3.137614263050444, - "c2": 3.0197447361829712, - "c3": 2.9595345089155143, - "c4": 3.056659932786299, - "c5": 3.0448498285341166, - "c6": 3.0423701538734136, - "c7": 3.0840362775766996 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -107466,23 +107466,23 @@ "year": 1737, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": -3.220481212866453, - "c2": -46.8435381800595, - "c3": 8.56378763618656, - "c4": -21.85830786223101, - "c5": 22.85849810772374, - "c6": 45.73411183152394, - "c7": -37.38271901005507 + "points": { + "c1": 13.55205124993558, + "c2": 41.669307197822526, + "c3": -46.98457101828312, + "c4": 10.656695720514556, + "c5": 48.42467369658946, + "c6": -13.561413156461477, + "c7": 49.782924983701285 }, - "vertexSeeds": { - "c1": 0.3111667987854285, - "c2": 0.30097322900818474, - "c3": 0.2960739495359252, - "c4": 0.30937350324086355, - "c5": 0.29344309980576205, - "c6": 0.3116173246950553, - "c7": 0.29897200962365905 + "offsets": { + "c1": 0.5825242718446602, + "c2": 0.49930651872399456, + "c3": 0.41608876560332897, + "c4": 0.3328710124826623, + "c5": 0.24965325936199678, + "c6": 0.16643550624133116, + "c7": 0.08321775312066558 }, "rgb": [77, 76, 132] }, @@ -107493,23 +107493,23 @@ "year": 1737, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 17.128205127714452, - "c2": -2.7693626563758187, - "c3": 10.020931760810164, - "c4": -9.177486835623412, - "c5": -26.15893321548078, - "c6": 33.15707060116422, - "c7": 31.73898730764141 + "points": { + "c1": -18.470721276958482, + "c2": -19.455112284966617, + "c3": -35.318325521629724, + "c4": -6.840975862213035, + "c5": -5.4826070800585995, + "c6": -4.1279337163674015, + "c7": -15.082360778757103 }, - "vertexSeeds": { - "c1": 6.558054847088327, - "c2": 7.5209802123251555, - "c3": 7.252206081922385, - "c4": 7.159265074312157, - "c5": 7.373971231750874, - "c6": 7.0726155607001875, - "c7": 6.588450448654292 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.3971336107258425, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [86, 146, 138] }, @@ -107520,23 +107520,23 @@ "year": 1737, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -22.30105852843079, - "c2": 32.124605712709084, - "c3": 28.151791618814137, - "c4": -9.42452852629554, - "c5": 2.4072338365467303, - "c6": 22.447373235439677, - "c7": 5.732883659542011 + "points": { + "c1": -25.503974926468707, + "c2": 14.603294014664485, + "c3": 8.226957183268567, + "c4": 12.75052855209806, + "c5": 3.6623646325449783, + "c6": 1.9249124052494935, + "c7": 8.898238374047075 }, - "vertexSeeds": { - "c1": 15.040494346423776, - "c2": 15.506421445826454, - "c3": 15.397918269220764, - "c4": 15.383159848269091, - "c5": 15.444849258541833, - "c6": 15.473523280577822, - "c7": 15.254268776071145 + "offsets": { + "c1": 25.88996763754045, + "c2": 22.191400832177546, + "c3": 18.49283402681464, + "c4": 14.794267221451737, + "c5": 11.095700416088714, + "c6": 7.39713361072581, + "c7": 3.698566805362905 }, "rgb": [77, 76, 132] }, @@ -107547,23 +107547,23 @@ "year": 1737, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -7.069549918335902, - "c2": 5.941938446418618, - "c3": -2.6521303037364348, - "c4": -3.2599526991820973, - "c5": -3.336890548487709, - "c6": 21.444126160036014, - "c7": 18.394174645451756 + "points": { + "c1": -12.505398827842473, + "c2": -26.07417100933214, + "c3": 25.98013024117963, + "c4": -11.159463146622883, + "c5": 17.916863688816655, + "c6": 14.103488398463341, + "c7": 6.729960344314492 }, - "vertexSeeds": { - "c1": 2.9905723277964436, - "c2": 2.9905455030406425, - "c3": 2.898423827314774, - "c4": 3.1724562264707443, - "c5": 3.2172922261666685, - "c6": 2.9497132323654864, - "c7": 3.2156210004362333 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -107574,23 +107574,23 @@ "year": 1737, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -4.597968411620798, - "c2": -6.680292854646911, - "c3": 32.374451562430096, - "c4": -29.984361753003352, - "c5": -6.67541969901761, - "c6": 5.143755093033796, - "c7": 2.0481803477181373 + "points": { + "c1": -16.32486111489149, + "c2": -16.966011294851505, + "c3": 29.00453533274279, + "c4": 10.705025346041218, + "c5": 17.25715922730111, + "c6": -19.299278390536728, + "c7": -4.23947005599209 }, - "vertexSeeds": { - "c1": 3.281720036028821, - "c2": 3.1920036766151902, - "c3": 3.019228672509378, - "c4": 3.2189090641818177, - "c5": 3.1403088882258627, - "c6": 3.0701241024440105, - "c7": 3.1398876480919715 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [58, 15, 49] }, @@ -107601,23 +107601,23 @@ "year": 1737, "resistanceReported": false, "duration": 45532800, - "curveSeeds": { - "c1": -35.012992238771886, - "c2": 30.08468175116206, - "c3": -23.834778504535194, - "c4": -28.27260736901869, - "c5": 46.10431323679823, - "c6": -29.318009527423015, - "c7": 50.58738393542496 + "points": { + "c1": -6.93106749740582, + "c2": -43.74750273596226, + "c3": -14.049468383858276, + "c4": 23.17345875712106, + "c5": -31.444046224954164, + "c6": 7.517108768149406, + "c7": 56.291469991994425 }, - "vertexSeeds": { - "c1": 8.597111009576688, - "c2": 8.668525770511994, - "c3": 8.342796991316458, - "c4": 8.66575417333947, - "c5": 8.722068944420645, - "c6": 8.333224276004085, - "c7": 8.453853351214189 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.14840499306519, + "c3": 10.957004160887662, + "c4": 8.765603328710133, + "c5": 6.574202496532604, + "c6": 4.382801664355057, + "c7": 2.1914008321775285 }, "rgb": [77, 76, 132] }, @@ -107628,23 +107628,23 @@ "year": 1737, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -20.01856870131516, - "c2": -4.988640391334229, - "c3": 17.69666583045209, - "c4": 7.814567950175572, - "c5": -20.124433850914482, - "c6": -20.257919720126022, - "c7": -4.484244843104612 + "points": { + "c1": 18.34587682297223, + "c2": 23.77557806228328, + "c3": -24.28938459912876, + "c4": 25.309001770674598, + "c5": -5.5551809398395235, + "c6": -22.261143669546378, + "c7": -1.5610083505216643 }, - "vertexSeeds": { - "c1": 5.182631294982293, - "c2": 4.854460206559667, - "c3": 5.2085292765060345, - "c4": 4.845456975841164, - "c5": 5.2291674897773515, - "c6": 4.8207073698343885, - "c7": 4.738523321362592 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -107655,23 +107655,23 @@ "year": 1737, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 14.858732383729233, - "c2": -39.56590224811007, - "c3": -17.32248454521616, - "c4": -39.37299962960126, - "c5": 29.559091553819684, - "c6": -14.837613617170827, - "c7": -14.977806211326918 + "points": { + "c1": 2.966471508058717, + "c2": 15.124502304537259, + "c3": -34.640293258106894, + "c4": -17.96695998786287, + "c5": -42.57610479345316, + "c6": -8.466722287986734, + "c7": 2.941372238543785 }, - "vertexSeeds": { - "c1": 4.9027816756849685, - "c2": 5.095144818568054, - "c3": 4.611717171839926, - "c4": 5.120136376762415, - "c5": 4.638426995458686, - "c6": 4.91974032382106, - "c7": 4.648248271486167 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -107682,23 +107682,23 @@ "year": 1737, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 0.5535084311550662, - "c2": 15.819357164718959, - "c3": 4.443930693673266, - "c4": -5.904771884865752, - "c5": -34.35972004120836, - "c6": -23.88012087224753, - "c7": 4.850426193240139 + "points": { + "c1": -6.194197705605006, + "c2": -14.601446934743706, + "c3": 0.35285847990561336, + "c4": -40.17741291200995, + "c5": -31.8711539820978, + "c6": -23.010964920547835, + "c7": -0.47149955151374456 }, - "vertexSeeds": { - "c1": 5.072003473975121, - "c2": 5.098986891574877, - "c3": 5.336478398410753, - "c4": 5.0083153532781495, - "c5": 5.521695810476016, - "c6": 5.150760465875296, - "c7": 4.971786244513211 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872392, + "c6": 2.699953767914937, + "c7": 1.3499768839574684 }, "rgb": [77, 76, 132] }, @@ -107709,23 +107709,23 @@ "year": 1737, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -4.7681730147383945, - "c2": -28.477589792009383, - "c3": -30.841223959995606, - "c4": -23.030995812974503, - "c5": 5.950929578489159, - "c6": 23.410182182368153, - "c7": 8.67872563846688 + "points": { + "c1": 16.238120489107658, + "c2": 31.506325006799116, + "c3": 21.639204905050477, + "c4": 17.538398311119465, + "c5": -8.766734228523198, + "c6": -11.375037912307373, + "c7": -28.345258289313648 }, - "vertexSeeds": { - "c1": 4.4102666613928205, - "c2": 4.295873780229113, - "c3": 5.050810842429059, - "c4": 4.9861707508618816, - "c5": 4.4229792091215305, - "c6": 5.032770752712013, - "c7": 4.7533226413865854 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -107736,23 +107736,23 @@ "year": 1737, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -23.28129304592062, - "c2": -0.531097852443871, - "c3": -3.442698330158219, - "c4": 2.210507162190382, - "c5": -17.858646161907654, - "c6": -1.2967483812201124, - "c7": 2.4154892539589596 + "points": { + "c1": 8.850776963238651, + "c2": 22.4016436105318, + "c3": 8.011068269323438, + "c4": 15.387229636898951, + "c5": 4.843047017622844, + "c6": 7.370297946059203, + "c7": 24.538699965586346 }, - "vertexSeeds": { - "c1": 4.471334091939565, - "c2": 3.81066500839372, - "c3": 4.615153434492569, - "c4": 4.029740473367107, - "c5": 4.017800339273076, - "c6": 4.457490360234957, - "c7": 4.507880649083876 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -107763,23 +107763,23 @@ "year": 1737, "resistanceReported": false, "duration": 44064000, - "curveSeeds": { - "c1": 50.16130088304498, - "c2": -54.166934420606225, - "c3": 57.635578498918385, - "c4": -54.05038714889067, - "c5": -1.6223057325970842, - "c6": -42.56880689312982, - "c7": -57.924795909776506 + "points": { + "c1": 55.93023732883521, + "c2": 46.354196173358936, + "c3": 30.607205519490456, + "c4": -38.86243788911354, + "c5": 0.6668416284248764, + "c6": 58.3334034975781, + "c7": 10.528688004949153 }, - "vertexSeeds": { - "c1": 2.5197854946554585, - "c2": 2.43056547941635, - "c3": 2.4294954313402446, - "c4": 2.354456883371247, - "c5": 2.467411692538878, - "c6": 2.524348478372719, - "c7": 2.546381601633272 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.68932038834951, + "c3": 3.0744336569579302, + "c4": 2.45954692556634, + "c5": 1.8446601941747607, + "c6": 1.22977346278317, + "c7": 0.614886731391585 }, "rgb": [86, 146, 138] }, @@ -107790,23 +107790,23 @@ "year": 1737, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 15.87290472072413, - "c2": -16.25933941968797, - "c3": 9.645753209810564, - "c4": 17.16822024068668, - "c5": 6.952383972480007, - "c6": 2.581038558699408, - "c7": 22.962386382890863 + "points": { + "c1": -0.5817064948770785, + "c2": 10.98099697527109, + "c3": -7.523101270565796, + "c4": 10.021505686346316, + "c5": -23.981473637764804, + "c6": 0.6786429745965847, + "c7": 7.194136101465276 }, - "vertexSeeds": { - "c1": 4.411907778261475, - "c2": 4.4716793992756605, - "c3": 5.0315783304160835, - "c4": 5.043147404597343, - "c5": 5.113943744220593, - "c6": 4.890445826553775, - "c7": 5.092093127076952 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -107817,23 +107817,23 @@ "year": 1737, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -20.49845241968023, - "c2": 20.41617752415178, - "c3": -16.80683179969126, - "c4": 6.807163233287721, - "c5": -25.763250722127438, - "c6": 1.2117291475585112, - "c7": -14.230399999545972 + "points": { + "c1": 20.03119485162408, + "c2": -11.835479944971311, + "c3": 30.861251527478856, + "c4": 6.146632464518881, + "c5": 10.107544832709273, + "c6": -1.062198681213541, + "c7": -14.261657465888987 }, - "vertexSeeds": { - "c1": 4.483536334498858, - "c2": 4.347861649987306, - "c3": 5.204411354603655, - "c4": 5.121867546141958, - "c5": 5.160134737099522, - "c6": 4.522541724503474, - "c7": 4.594891762276632 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -107844,23 +107844,23 @@ "year": 1737, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -5.7540475080937625, - "c2": 5.024029019807948, - "c3": 13.68901637309645, - "c4": 11.981428345222454, - "c5": -6.787300468336529, - "c6": 5.92335976638369, - "c7": 15.28627647772533 + "points": { + "c1": -25.272159904035455, + "c2": -25.24438142945685, + "c3": -23.68722133818148, + "c4": -26.955283742181557, + "c5": -4.685834701303879, + "c6": 16.060767665481826, + "c7": 25.607383292342945 }, - "vertexSeeds": { - "c1": 3.1140535325286245, - "c2": 3.0184453236915183, - "c3": 3.3038209770736304, - "c4": 3.2345014339468614, - "c5": 3.3030841391621406, - "c6": 3.292352731553344, - "c7": 3.2738162132840847 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -107871,23 +107871,23 @@ "year": 1737, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 35.99520039976511, - "c2": -32.35367230910079, - "c3": -1.9615402259832564, - "c4": -29.891211241618002, - "c5": -16.883916388088785, - "c6": -26.82453224616986, - "c7": 20.310636445158394 + "points": { + "c1": -26.718961200790645, + "c2": -32.131278168062806, + "c3": -7.3564155333549195, + "c4": -25.878209169788743, + "c5": -39.60972554349922, + "c6": -36.50721940456498, + "c7": 38.01761073558184 }, - "vertexSeeds": { - "c1": 6.165956720039654, - "c2": 6.338520177692195, - "c3": 5.73279823836176, - "c4": 5.613749013346202, - "c5": 6.39509913116065, - "c6": 6.123603081015565, - "c7": 5.490095647209465 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -107898,23 +107898,23 @@ "year": 1737, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -1.4419688878152073, - "c2": 32.96207973849587, - "c3": -20.66790612131829, - "c4": -3.1122637045762076, - "c5": -13.328159262776367, - "c6": -0.2855961444100714, - "c7": -37.35802755785389 + "points": { + "c1": -32.237409963645376, + "c2": -21.58688562319349, + "c3": -2.2889847921864046, + "c4": 20.453139166254772, + "c5": -0.1422722737644122, + "c6": -3.6082561977467336, + "c7": -25.010486514914884 }, - "vertexSeeds": { - "c1": 6.297902963592298, - "c2": 6.922690864800547, - "c3": 6.771565912154905, - "c4": 6.587326867533024, - "c5": 6.996845568866274, - "c6": 6.573796548381621, - "c7": 6.969329421097186 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [222, 0, 59] }, @@ -107925,23 +107925,23 @@ "year": 1737, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -5.274787693948603, - "c2": 23.44784308209032, - "c3": -9.536845908997979, - "c4": -2.9298379850682146, - "c5": -11.788404288950394, - "c6": -13.880823012036954, - "c7": 26.700107800052987 + "points": { + "c1": 17.545539943193067, + "c2": 6.491858490134003, + "c3": -24.10628283754214, + "c4": 15.127067541835682, + "c5": 5.54665961972788, + "c6": 1.1816987756622268, + "c7": 27.301052159409398 }, - "vertexSeeds": { - "c1": 3.029307680086549, - "c2": 3.0320724344920436, - "c3": 3.077175335074504, - "c4": 3.2516460789749884, - "c5": 3.295370428600612, - "c6": 3.2848614501476328, - "c7": 3.1860527402218493 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [238, 201, 159] }, @@ -107952,23 +107952,23 @@ "year": 1737, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": 47.354423407505024, - "c2": -42.93849702222487, - "c3": -28.91356010391687, - "c4": -17.565600983534004, - "c5": -17.98902456369997, - "c6": 35.60398519203834, - "c7": 24.75441788284357 + "points": { + "c1": 55.68878456042097, + "c2": 22.642746373515138, + "c3": -7.493445781806301, + "c4": 1.9397892377973918, + "c5": -45.29412717655924, + "c6": -30.68468465262637, + "c7": -8.435673900463641 }, - "vertexSeeds": { - "c1": 1.951036997881527, - "c2": 1.9430108708628782, - "c3": 1.9946085324375074, - "c4": 1.8954542350479526, - "c5": 2.1105086206147785, - "c6": 1.9373196979781406, - "c7": 2.0173846619566027 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244114, + "c3": 2.5427646786870066, + "c4": 2.0342117429496063, + "c5": 1.5256588072122057, + "c6": 1.0171058714748011, + "c7": 0.5085529357374006 }, "rgb": [222, 0, 59] }, @@ -107979,23 +107979,23 @@ "year": 1737, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -25.913869865256842, - "c2": 5.1210617421832545, - "c3": 24.900186097012213, - "c4": 9.688712933390473, - "c5": -24.22150835028113, - "c6": 11.938365717485905, - "c7": -6.715320212130358 + "points": { + "c1": 4.564813241595541, + "c2": -24.129652831713106, + "c3": 16.78168123322494, + "c4": -19.172623320454086, + "c5": -21.48950293967149, + "c6": -13.600046355135198, + "c7": -11.518016274567081 }, - "vertexSeeds": { - "c1": 5.962466847994404, - "c2": 5.509590180675877, - "c3": 5.746856315686105, - "c4": 6.327473783427885, - "c5": 6.158196370018167, - "c6": 5.89776460540155, - "c7": 6.28604695923198 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -108006,23 +108006,23 @@ "year": 1737, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 14.55087290349482, - "c2": -1.5148108112596859, - "c3": -17.218458246003507, - "c4": 2.0642070368934533, - "c5": -1.6168424361948723, - "c6": 15.967445428697218, - "c7": 7.359251942817419 + "points": { + "c1": 12.303759193413264, + "c2": -9.400893006199388, + "c3": 24.054843551291874, + "c4": -14.941720736181956, + "c5": 11.506434385448763, + "c6": -5.344877623005935, + "c7": 6.184367699499877 }, - "vertexSeeds": { - "c1": 4.7988578925974945, - "c2": 4.657108431178167, - "c3": 4.488532556218524, - "c4": 5.073027650482619, - "c5": 5.218931785637683, - "c6": 4.596946094894553, - "c7": 4.443806359192079 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -108033,23 +108033,23 @@ "year": 1737, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 26.875134560880184, - "c2": 12.873956438990199, - "c3": 1.7145876603721675, - "c4": 20.87523953808069, - "c5": -44.01862890377079, - "c6": -25.089529779989963, - "c7": 4.499603944831321 + "points": { + "c1": -11.512940362519025, + "c2": -24.414262978207105, + "c3": 33.77630875212718, + "c4": -29.89790101200462, + "c5": -11.656658047595904, + "c6": 39.200201872490155, + "c7": -7.0488343701243465 }, - "vertexSeeds": { - "c1": 4.946182220437192, - "c2": 5.050490886665662, - "c3": 4.519274445906546, - "c4": 5.167948484839092, - "c5": 4.304103873484071, - "c6": 4.6269153592032275, - "c7": 4.802708760467602 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -108060,23 +108060,23 @@ "year": 1737, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -12.680399951069791, - "c2": 32.396799006206905, - "c3": 21.988114000405012, - "c4": -11.35897617808352, - "c5": -34.393284387238246, - "c6": -6.523898627028352, - "c7": -1.357132822014421 + "points": { + "c1": 22.231930744993065, + "c2": -13.503288486605783, + "c3": -4.077864485639417, + "c4": -20.469134498201978, + "c5": -38.9159259954572, + "c6": 31.920476889848743, + "c7": 34.729520216188874 }, - "vertexSeeds": { - "c1": 5.196159148400681, - "c2": 5.3404591303112845, - "c3": 4.950083829204352, - "c4": 5.260451262722096, - "c5": 5.116966542277256, - "c6": 5.139669523196285, - "c7": 5.0278684499700415 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262142, + "c3": 6.472491909385105, + "c4": 5.177993527508088, + "c5": 3.883495145631071, + "c6": 2.5889967637540336, + "c7": 1.2944983818770168 }, "rgb": [86, 146, 138] }, @@ -108087,23 +108087,23 @@ "year": 1737, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 19.571237396272657, - "c2": 15.467392447663336, - "c3": 0.5825808193564406, - "c4": -4.2291409679990934, - "c5": -11.944319544182381, - "c6": -10.06678006097009, - "c7": -4.20405078589134 + "points": { + "c1": 16.685540850891698, + "c2": -9.385650339048436, + "c3": -19.664660973966924, + "c4": -10.634710689073593, + "c5": -0.5890172277473695, + "c6": 23.218251453142685, + "c7": -25.239433502839514 }, - "vertexSeeds": { - "c1": 6.086156451515207, - "c2": 5.845539359990568, - "c3": 5.916955502511644, - "c4": 6.117272207995775, - "c5": 6.040971572033758, - "c6": 5.81405170095652, - "c7": 5.917591227459163 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -108114,23 +108114,23 @@ "year": 1737, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": 6.528383795625665, - "c2": -2.7217450224591886, - "c3": 20.054454222161038, - "c4": -11.141201927674437, - "c5": -10.698766787570031, - "c6": 16.125752906604763, - "c7": -1.3879219560011435 + "points": { + "c1": -7.7944441417565, + "c2": -1.420515169301087, + "c3": -17.26543600764759, + "c4": -22.116713668395466, + "c5": 21.613794868737155, + "c6": -5.882193818034722, + "c7": 10.522784884540787 }, - "vertexSeeds": { - "c1": 4.358428289865613, - "c2": 3.8876269605331975, - "c3": 4.312797777323926, - "c4": 4.591657786389092, - "c5": 4.138873302862345, - "c6": 4.523075684255361, - "c7": 4.29594472648009 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [222, 0, 59] }, @@ -108141,23 +108141,23 @@ "year": 1737, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 17.263504866701275, - "c2": -26.186336089424977, - "c3": 18.59167547334978, - "c4": 5.407902276571221, - "c5": 16.639608735211077, - "c6": 11.021050573712095, - "c7": 9.82218561565692 + "points": { + "c1": 21.383060185222455, + "c2": -5.909478047680842, + "c3": 23.452102395152544, + "c4": 20.084736664935704, + "c5": 5.857394644390524, + "c6": 21.496566147975834, + "c7": 13.374485130076998 }, - "vertexSeeds": { - "c1": 3.071492758049085, - "c2": 2.781432499406285, - "c3": 2.8101631999878403, - "c4": 3.0709546256255114, - "c5": 2.791978204623825, - "c6": 2.934832594814558, - "c7": 2.9720940696361575 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435507, + "c3": 3.6985668053629226, + "c4": 2.958853444290338, + "c5": 2.2191400832177535, + "c6": 1.479426722145169, + "c7": 0.7397133610725845 }, "rgb": [58, 15, 49] }, @@ -108168,23 +108168,23 @@ "year": 1737, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 3.719954965351242, - "c2": -35.23664977604736, - "c3": -32.26370826674524, - "c4": 39.236740852512796, - "c5": -28.80778860137003, - "c6": 12.547918987615596, - "c7": 35.285615679763325 + "points": { + "c1": -46.518342039168324, + "c2": 1.7929446651985046, + "c3": -22.90788357772495, + "c4": 17.892878546766184, + "c5": 33.730238391312454, + "c6": -13.120462008047191, + "c7": 30.751698093448084 }, - "vertexSeeds": { - "c1": 5.572176144178789, - "c2": 6.802072202055895, - "c3": 3.2985504813023363, - "c4": 5.42362136727344, - "c5": 3.7354776791776643, - "c6": 2.9182268692904683, - "c7": 3.4288228304441373 + "offsets": { + "c1": 17.57281553398058, + "c2": 15.062413314840498, + "c3": 12.552011095700413, + "c4": 10.041608876560334, + "c5": 7.531206657420247, + "c6": 5.020804438280167, + "c7": 2.5104022191400834 }, "rgb": [58, 15, 49] }, @@ -108195,23 +108195,23 @@ "year": 1737, "resistanceReported": true, "duration": 16848000, - "curveSeeds": { - "c1": -17.896421711089225, - "c2": 16.087633858662677, - "c3": 24.25508508078898, - "c4": 11.072550687507565, - "c5": 1.145013645256988, - "c6": -1.637276934900516, - "c7": 10.165094192008048 + "points": { + "c1": 15.983658802188586, + "c2": -29.994962501926526, + "c3": -7.98738243760371, + "c4": 9.306867323802486, + "c5": 16.78002956732046, + "c6": -24.003329983312724, + "c7": -30.30482696653108 }, - "vertexSeeds": { - "c1": 6.8842128152913356, - "c2": 6.952123436441873, - "c3": 5.491293911799271, - "c4": 5.533557198182761, - "c5": 5.866532953029337, - "c6": 6.390548753093823, - "c7": 6.72860519456875 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479888, + "c3": 8.321775312066574, + "c4": 6.657420249653259, + "c5": 4.993065187239944, + "c6": 3.3287101248266295, + "c7": 1.6643550624133148 }, "rgb": [86, 146, 138] }, @@ -108222,23 +108222,23 @@ "year": 1737, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 17.152488057395004, - "c2": -30.16798040132668, - "c3": -5.404026118244484, - "c4": -30.274578249582163, - "c5": -14.594390791686031, - "c6": 18.83062244932028, - "c7": 26.11507329933241 + "points": { + "c1": 1.5816741872163576, + "c2": 35.36486818207635, + "c3": -29.78652926209459, + "c4": 24.343420621454335, + "c5": 29.045804480499015, + "c6": 15.061883263074485, + "c7": -17.246802504556886 }, - "vertexSeeds": { - "c1": 4.445873194740653, - "c2": 5.123530549238013, - "c3": 5.0888095221403855, - "c4": 4.969789839395526, - "c5": 4.368419343492479, - "c6": 5.127408245716811, - "c7": 5.205978527693702 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -108249,23 +108249,23 @@ "year": 1737, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 18.289322228119275, - "c2": -32.78193422417622, - "c3": -28.06455134719001, - "c4": 0.21860803559088993, - "c5": 2.5076765731962425, - "c6": -36.783828833793756, - "c7": -6.78229940876933 + "points": { + "c1": -22.28360846968795, + "c2": -4.5522990268879795, + "c3": 1.1607059181286772, + "c4": 14.929911758506755, + "c5": -5.817409796372139, + "c6": 27.936913167921162, + "c7": 3.629920342763924 }, - "vertexSeeds": { - "c1": 5.752949504407374, - "c2": 5.69142060545247, - "c3": 5.618709056743986, - "c4": 5.511505396647452, - "c5": 5.706421947877554, - "c6": 5.565929664808667, - "c7": 5.705644659545732 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [77, 76, 132] }, @@ -108276,23 +108276,23 @@ "year": 1737, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 27.4111702825288, - "c2": 8.415682060707184, - "c3": -19.15123083019416, - "c4": 18.374610472231723, - "c5": -17.984394195995165, - "c6": 23.915615093417784, - "c7": 39.15292006552109 + "points": { + "c1": 41.60457813380519, + "c2": 6.462970795653085, + "c3": -36.69978867660131, + "c4": 28.229197040270407, + "c5": 34.28064455893772, + "c6": -22.85289051479531, + "c7": -30.410740085558764 }, - "vertexSeeds": { - "c1": 5.844766790827559, - "c2": 5.896583104707366, - "c3": 5.625592018871845, - "c4": 5.817601733028277, - "c5": 5.808535373342315, - "c6": 6.063015600595484, - "c7": 5.99338850973769 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710117, + "c3": 7.304669440591773, + "c4": 5.843735552473412, + "c5": 4.382801664355068, + "c6": 2.921867776236706, + "c7": 1.4609338881183445 }, "rgb": [238, 201, 159] }, @@ -108303,23 +108303,23 @@ "year": 1737, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 14.19978095843095, - "c2": -19.88078599150746, - "c3": 10.444057509661128, - "c4": 35.21727699404741, - "c5": 34.275401581519645, - "c6": 31.4463683069624, - "c7": -4.297778498726551 + "points": { + "c1": -13.354726384228304, + "c2": 35.765107496912776, + "c3": 30.96997850961675, + "c4": -8.456293284781964, + "c5": 40.53876293532103, + "c6": -5.171180304926821, + "c7": 0.2939519361071845 }, - "vertexSeeds": { - "c1": 1.2537397859132113, - "c2": 1.2143197241788029, - "c3": 1.1298244609425647, - "c4": 1.2624524183726011, - "c5": 1.2549954072854839, - "c6": 1.2405237579712425, - "c7": 1.2551395089449693 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948694, + "c3": 1.548774849745722, + "c4": 1.2390198797965788, + "c5": 0.9292649098474337, + "c6": 0.6195099398982885, + "c7": 0.3097549699491452 }, "rgb": [77, 76, 132] }, @@ -108330,23 +108330,23 @@ "year": 1737, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 14.938346123715867, - "c2": -10.766708964374722, - "c3": -5.508668579996446, - "c4": 12.002692536676285, - "c5": 11.44661722195864, - "c6": 27.987373574650746, - "c7": -43.24917054607052 + "points": { + "c1": 34.65341623576853, + "c2": -8.474293526429271, + "c3": -12.190714737449014, + "c4": -20.15527000585873, + "c5": -23.876219414182067, + "c6": -16.943281256386182, + "c7": 14.548779097299871 }, - "vertexSeeds": { - "c1": 8.750191656762818, - "c2": 8.37448938091267, - "c3": 7.856750505807341, - "c4": 8.57076230702489, - "c5": 8.772745547417108, - "c6": 8.494005220611339, - "c7": 7.780498597888756 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220534, + "c3": 10.471567267683772, + "c4": 8.377253814147023, + "c5": 6.282940360610261, + "c6": 4.188626907073512, + "c7": 2.0943134535367487 }, "rgb": [222, 0, 59] }, @@ -108357,23 +108357,23 @@ "year": 1737, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": 9.058340109690317, - "c2": -15.956123938882703, - "c3": 3.655963463382278, - "c4": -19.454732860899668, - "c5": 10.555563352251898, - "c6": -9.566428724641899, - "c7": 10.911236802684947 + "points": { + "c1": 7.872256304281976, + "c2": -20.637076375419962, + "c3": 15.695672639754605, + "c4": -8.612966886769275, + "c5": -4.683732945207815, + "c6": 2.8592088615901936, + "c7": -18.448479715239685 }, - "vertexSeeds": { - "c1": 4.808105987315572, - "c2": 4.382059276695455, - "c3": 4.625972427616502, - "c4": 4.537453268669539, - "c5": 5.054449576824449, - "c6": 4.7358292980956955, - "c7": 4.956588250038638 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -108384,23 +108384,23 @@ "year": 1737, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 21.147604971225576, - "c2": 27.35723505987557, - "c3": 30.909754507177944, - "c4": -11.210135596224763, - "c5": -15.43963712721408, - "c6": -12.556930229086952, - "c7": -33.58271847111228 + "points": { + "c1": 10.582917105632113, + "c2": -28.39145933957767, + "c3": 9.126234437366683, + "c4": -38.68464860455593, + "c5": 40.213818791543936, + "c6": 21.054908528002592, + "c7": -9.158820840002633 }, - "vertexSeeds": { - "c1": 7.694319264248711, - "c2": 7.065900741117936, - "c3": 7.001374039887876, - "c4": 7.72129651212594, - "c5": 7.568740366461544, - "c6": 7.179454508047352, - "c7": 7.7250288996399 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128984, + "c3": 9.269533055940832, + "c4": 7.415626444752661, + "c5": 5.561719833564492, + "c6": 3.7078132223763394, + "c7": 1.8539066111881697 }, "rgb": [58, 15, 49] }, @@ -108411,23 +108411,23 @@ "year": 1737, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 0.2919396243677497, - "c2": -19.62894700740233, - "c3": 7.231150557764973, - "c4": -12.84698342905609, - "c5": 15.34021191907344, - "c6": 7.24122076776262, - "c7": -4.908269943023582 + "points": { + "c1": -17.622206126590115, + "c2": 0.6799244840815852, + "c3": 13.221606120253675, + "c4": 13.320242387382258, + "c5": 4.59717966068472, + "c6": -7.568011243031078, + "c7": -10.757924732768318 }, - "vertexSeeds": { - "c1": 5.852034821666039, - "c2": 5.852501477714035, - "c3": 5.8803200684505645, - "c4": 5.855347465816757, - "c5": 5.882044350231108, - "c6": 5.873199806273643, - "c7": 5.879434927196804 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227503, + "c3": 7.027276930189632, + "c4": 5.621821544151762, + "c5": 4.216366158113611, + "c6": 2.810910772075741, + "c7": 1.4054553860378705 }, "rgb": [238, 201, 159] }, @@ -108438,23 +108438,23 @@ "year": 1737, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -14.63582328062785, - "c2": -19.33287536431937, - "c3": 35.77994937079859, - "c4": 4.621591413436121, - "c5": 19.851119389580425, - "c6": -1.0507467344011943, - "c7": -29.591519210990114 + "points": { + "c1": 18.59421539164979, + "c2": -0.534947512800791, + "c3": 26.41408792485113, + "c4": -32.40762434210896, + "c5": -23.891160651993495, + "c6": -9.331938900294492, + "c7": -8.617380840832357 }, - "vertexSeeds": { - "c1": 6.224129244155083, - "c2": 6.248328176167291, - "c3": 6.255070622088219, - "c4": 6.264724640582456, - "c5": 6.2732867152158835, - "c6": 6.247518622761175, - "c7": 6.274685167105701 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031845, + "c3": 7.489597780860002, + "c4": 5.991678224687963, + "c5": 4.493758668515922, + "c6": 2.995839112343882, + "c7": 1.4979195561720402 }, "rgb": [222, 0, 59] }, @@ -108465,23 +108465,23 @@ "year": 1737, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 26.881567997308064, - "c2": -22.406286570476716, - "c3": 4.474942855320638, - "c4": 18.646806443474315, - "c5": 19.773583201958946, - "c6": -4.8302436070979375, - "c7": 24.39498588118143 + "points": { + "c1": 4.646403193166748, + "c2": 25.021535264519144, + "c3": 9.552406371197563, + "c4": -4.380010821074116, + "c5": -17.063872085869022, + "c6": 22.77686800097971, + "c7": 17.36130038492999 }, - "vertexSeeds": { - "c1": 4.898885849869984, - "c2": 4.81718578554436, - "c3": 4.669901977784442, - "c4": 4.748351845341032, - "c5": 4.956498157589089, - "c6": 4.857239807046922, - "c7": 4.806536136406526 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417479, + "c3": 5.987055016181225, + "c4": 4.789644012944983, + "c5": 3.5922330097087394, + "c6": 2.3948220064724963, + "c7": 1.197411003236243 }, "rgb": [77, 76, 132] }, @@ -108492,23 +108492,23 @@ "year": 1737, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 2.431855098477051, - "c2": 7.33216357116293, - "c3": 5.282395972525379, - "c4": 36.069598394427544, - "c5": 6.19427269582863, - "c6": 27.85580695685526, - "c7": 35.70777976652214 + "points": { + "c1": -24.84020549371596, + "c2": 10.315610618915848, + "c3": 25.38144527477276, + "c4": 31.592009162948386, + "c5": -23.976963048767516, + "c6": 43.083266457229925, + "c7": 44.50364962035701 }, - "vertexSeeds": { - "c1": 5.42231793237608, - "c2": 5.071463434278712, - "c3": 5.259904488002782, - "c4": 5.2495601869248025, - "c5": 5.148567921819399, - "c6": 5.489951605778003, - "c7": 5.328629925530376 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503464, + "c3": 6.611188164586216, + "c4": 5.288950531668969, + "c5": 3.9667128987517417, + "c6": 2.6444752658344948, + "c7": 1.3222376329172474 }, "rgb": [77, 76, 132] }, @@ -108519,23 +108519,23 @@ "year": 1738, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": -21.123362158040365, - "c2": -52.72793779656442, - "c3": 4.023330722638697, - "c4": -40.21482273698044, - "c5": -12.78979142239924, - "c6": -23.77124293032011, - "c7": 40.58612407657865 + "points": { + "c1": 51.24403356936059, + "c2": -33.23904383849201, + "c3": -39.3027893885103, + "c4": -49.74869817785635, + "c5": 50.039213196065596, + "c6": 33.09917709204513, + "c7": -39.71017493899176 }, - "vertexSeeds": { - "c1": 2.9769546957397193, - "c2": 3.1700012856578654, - "c3": 3.276337507694476, - "c4": 2.894534737929007, - "c5": 3.356967569091663, - "c6": 3.3046938668016335, - "c7": 3.0041998346076064 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079056, + "c3": 4.068423485899217, + "c4": 3.254738788719372, + "c5": 2.441054091539528, + "c6": 1.6273693943596834, + "c7": 0.8136846971798443 }, "rgb": [58, 15, 49] }, @@ -108546,23 +108546,23 @@ "year": 1738, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": -49.08471453529409, - "c2": 24.99884180683192, - "c3": 31.09274860108779, - "c4": -47.60282595299249, - "c5": 50.26040366535646, - "c6": 41.316448045796164, - "c7": 38.65324759664776 + "points": { + "c1": 49.24405361901427, + "c2": -33.54630035570017, + "c3": -20.83897051630509, + "c4": 36.107488011078146, + "c5": 30.48235052726359, + "c6": -7.846156230364144, + "c7": 19.771876551041814 }, - "vertexSeeds": { - "c1": 6.544292138315561, - "c2": 7.397782786533753, - "c3": 6.945753596219975, - "c4": 6.370399104847679, - "c5": 7.256467994699364, - "c6": 6.917362113242342, - "c7": 6.723921883559571 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871017, + "c4": 7.101248266296812, + "c5": 5.325936199722606, + "c6": 3.5506241331484123, + "c7": 1.7753120665742061 }, "rgb": [238, 201, 159] }, @@ -108573,23 +108573,23 @@ "year": 1738, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": 22.889453610189015, - "c2": 21.392915069242697, - "c3": 37.703125848719885, - "c4": 42.085973843371, - "c5": -29.29163996415585, - "c6": -49.25140796169971, - "c7": 17.08723256672645 + "points": { + "c1": -4.805059929482837, + "c2": 52.952429875366654, + "c3": 43.48027424312399, + "c4": 28.942155213831064, + "c5": 52.72804768315212, + "c6": 25.159965143142294, + "c7": -2.915686700367111 }, - "vertexSeeds": { - "c1": 9.25831956405293, - "c2": 10.347847455667992, - "c3": 10.63322786757876, - "c4": 10.861360961395546, - "c5": 10.05862062359094, - "c6": 11.488705527060121, - "c7": 9.792195751647004 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.532593619972253, + "c3": 13.777161349976888, + "c4": 11.021729079981503, + "c5": 8.266296809986136, + "c6": 5.51086453999076, + "c7": 2.7554322699953837 }, "rgb": [58, 15, 49] }, @@ -108600,23 +108600,23 @@ "year": 1737, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 11.65303109937247, - "c2": -31.421352455825197, - "c3": 2.2570071783384336, - "c4": 23.243548961875504, - "c5": -5.703304745845905, - "c6": 21.84015829026184, - "c7": -18.884167482796315 + "points": { + "c1": -11.531183273098154, + "c2": 25.666111597439254, + "c3": 4.282041419679452, + "c4": 1.1846049337424063, + "c5": 22.37788131400591, + "c6": -14.4313783931402, + "c7": -0.6925985569295463 }, - "vertexSeeds": { - "c1": 15.173027195827812, - "c2": 15.254398118161033, - "c3": 13.989334457878796, - "c4": 14.059747896276674, - "c5": 14.293752060201244, - "c6": 14.98681963012157, - "c7": 15.450094466522284 + "offsets": { + "c1": 25.88996763754045, + "c2": 22.191400832177536, + "c3": 18.492834026814617, + "c4": 14.7942672214517, + "c5": 11.09570041608875, + "c6": 7.3971336107258345, + "c7": 3.6985668053629173 }, "rgb": [77, 76, 132] }, @@ -108627,23 +108627,23 @@ "year": 1737, "resistanceReported": false, "duration": 5616000, - "curveSeeds": { - "c1": -2.119078564999924, - "c2": 6.0214088547727265, - "c3": 4.720267086647436, - "c4": -6.485964185691294, - "c5": -7.400816428923431, - "c6": 9.438921014612013, - "c7": 1.0122143642548167 + "points": { + "c1": 12.897999047163278, + "c2": -7.577605413224031, + "c3": 16.22053189852355, + "c4": -5.643515009153491, + "c5": 7.862374539621932, + "c6": 9.4911371291515, + "c7": -13.247518270565624 }, - "vertexSeeds": { - "c1": 5.237339298691962, - "c2": 5.063988548806813, - "c3": 4.931853339009151, - "c4": 4.684412862387134, - "c5": 4.655368029983645, - "c6": 4.2642402138236175, - "c7": 4.663704092540507 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -108654,23 +108654,23 @@ "year": 1737, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 33.22926725978493, - "c2": -1.2637005878225196, - "c3": -15.709098855296833, - "c4": -30.017098780905464, - "c5": 7.13004534353081, - "c6": -8.732528974822515, - "c7": 36.8902470740493 + "points": { + "c1": -15.846330033589599, + "c2": -12.89338266983004, + "c3": -35.31359994869357, + "c4": 33.972307109326124, + "c5": -31.700199166987666, + "c6": -7.906292533741915, + "c7": -4.701351256209811 }, - "vertexSeeds": { - "c1": 8.117955250292042, - "c2": 8.393024614112342, - "c3": 8.08931060692713, - "c4": 8.393826624320917, - "c5": 8.371674212856997, - "c6": 8.354461286855868, - "c7": 8.217017559632643 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456296, + "c3": 10.032362459546945, + "c4": 8.025889967637548, + "c5": 6.019417475728148, + "c6": 4.012944983818749, + "c7": 2.0064724919093986 }, "rgb": [222, 0, 59] }, @@ -108681,23 +108681,23 @@ "year": 1737, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -23.648980794042288, - "c2": -8.260762854934079, - "c3": -2.6337218601262506, - "c4": 12.73694454834974, - "c5": -9.561823843452377, - "c6": 17.449306082797712, - "c7": 9.980089874682193 + "points": { + "c1": 8.876667239160582, + "c2": 33.456499790444056, + "c3": -5.30222655309543, + "c4": -20.518415684037677, + "c5": -11.06567578941052, + "c6": -22.50229089595317, + "c7": 24.23737875886261 }, - "vertexSeeds": { - "c1": 1.9234786910515456, - "c2": 2.029777353328546, - "c3": 2.062178859219544, - "c4": 2.0325230925349356, - "c5": 1.9439549490347416, - "c6": 2.0803508316535524, - "c7": 1.9667767567176002 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.02357836338419, + "c3": 2.5196486361534896, + "c4": 2.015718908922793, + "c5": 1.511789181692093, + "c6": 1.0078594544613966, + "c7": 0.5039297272307005 }, "rgb": [58, 15, 49] }, @@ -108708,23 +108708,23 @@ "year": 1737, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 4.465119607082123, - "c2": 27.915789492246752, - "c3": -11.647647773646593, - "c4": 25.792079008714303, - "c5": -7.080450754627265, - "c6": -24.634406805822813, - "c7": 16.158413041783525 + "points": { + "c1": 32.23499952328304, + "c2": 36.54970347466862, + "c3": -23.470865955234064, + "c4": -24.604448480785436, + "c5": -35.553257559486774, + "c6": 29.629141414112, + "c7": -2.3152449870315337 }, - "vertexSeeds": { - "c1": 2.9272054177526825, - "c2": 3.030498495644286, - "c3": 2.925684448652051, - "c4": 2.9524156768989607, - "c5": 2.969553154243592, - "c6": 3.0047791381135442, - "c7": 2.9111206945198664 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.35506241331484, + "c3": 3.629218677762367, + "c4": 2.9033749422098936, + "c5": 2.17753120665742, + "c6": 1.4516874711049468, + "c7": 0.7258437355524734 }, "rgb": [222, 0, 59] }, @@ -108735,23 +108735,23 @@ "year": 1737, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 38.69688789048012, - "c2": -38.29860669331542, - "c3": 26.529106598480617, - "c4": -24.849743073816573, - "c5": -19.19780047128108, - "c6": 0.6638374452682072, - "c7": 1.3531486472963365 + "points": { + "c1": 29.225023705099936, + "c2": -0.9792136401855487, + "c3": -7.449445513522946, + "c4": 33.84916086156415, + "c5": 14.96462860711361, + "c6": 14.725920877584258, + "c7": -4.295254964818469 }, - "vertexSeeds": { - "c1": 4.3916462697223535, - "c2": 4.702990155499733, - "c3": 4.482667117950209, - "c4": 4.606607808801599, - "c5": 5.145751340278417, - "c6": 4.56967760614883, - "c7": 4.459276814215771 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -108762,23 +108762,23 @@ "year": 1737, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -15.03723673371395, - "c2": 14.728239804288492, - "c3": 28.249739095676425, - "c4": 32.01179966397592, - "c5": 5.54956359827564, - "c6": 9.56203325984032, - "c7": 32.04868870269401 + "points": { + "c1": -7.481309060367693, + "c2": -0.43938233339397925, + "c3": -24.851912405811255, + "c4": -26.98564704540653, + "c5": 3.550537463435546, + "c6": -0.6740252190291685, + "c7": -10.711338827122994 }, - "vertexSeeds": { - "c1": 4.9999263884559975, - "c2": 4.57670492520288, - "c3": 5.0695224968202215, - "c4": 5.043250423412605, - "c5": 4.49832747349857, - "c6": 4.544105689721012, - "c7": 4.565333455551445 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.51733703190014, + "c3": 6.264447526583453, + "c4": 5.011558021266758, + "c5": 3.75866851595007, + "c6": 2.505779010633376, + "c7": 1.252889505316688 }, "rgb": [238, 201, 159] }, @@ -108789,23 +108789,23 @@ "year": 1737, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 32.693377564665745, - "c2": -7.2230966506148775, - "c3": 33.147051264417875, - "c4": 20.95939474819084, - "c5": 34.06144530297576, - "c6": -25.169886538994824, - "c7": -27.619106360374772 + "points": { + "c1": -6.044013429678664, + "c2": -18.148610384834416, + "c3": -29.626133110246222, + "c4": -2.042401945923231, + "c5": -8.328438701772178, + "c6": 7.616873671911954, + "c7": 28.69933398144895 }, - "vertexSeeds": { - "c1": 5.670275299657447, - "c2": 5.699070469283342, - "c3": 5.116195001969362, - "c4": 5.039071064293967, - "c5": 5.38091668905604, - "c6": 5.563004641507106, - "c7": 5.182889952926041 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187238, + "c3": 7.00416088765603, + "c4": 5.6033287101248295, + "c5": 4.202496532593621, + "c6": 2.8016643550624125, + "c7": 1.4008321775312045 }, "rgb": [86, 146, 138] }, @@ -108816,23 +108816,23 @@ "year": 1737, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 21.459442100924946, - "c2": -6.107090552811449, - "c3": -9.66525647053205, - "c4": -15.85138608081559, - "c5": 25.287437358181705, - "c6": 12.535502508667548, - "c7": 7.817368214872012 + "points": { + "c1": -20.59909209832473, + "c2": 23.93721904193781, + "c3": 9.708500901855878, + "c4": -9.572553512337134, + "c5": -24.382663080906877, + "c6": -7.907866851410912, + "c7": -21.526535122308097 }, - "vertexSeeds": { - "c1": 2.5816498059752693, - "c2": 2.6635575207540367, - "c3": 2.762592308023047, - "c4": 2.7670741899348523, - "c5": 2.4866970036385787, - "c6": 2.793202868858564, - "c7": 2.5798604727257737 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [238, 201, 159] }, @@ -108843,23 +108843,23 @@ "year": 1737, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 11.783391391806418, - "c2": 6.230724753353648, - "c3": 35.425263951988775, - "c4": 38.652540879317336, - "c5": -17.96622209214862, - "c6": 20.809890083227245, - "c7": 26.60333215191212 + "points": { + "c1": -2.389670911549807, + "c2": 23.779422198782136, + "c3": -0.25315834147642136, + "c4": 9.574328939891807, + "c5": -36.64626926921544, + "c6": -21.048565546236617, + "c7": -23.23227946973848 }, - "vertexSeeds": { - "c1": 5.757267440512358, - "c2": 5.557890244918145, - "c3": 5.913593814159744, - "c4": 6.063652382580861, - "c5": 5.910718980461176, - "c6": 5.603132071486829, - "c7": 5.7817169441613006 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -108870,23 +108870,23 @@ "year": 1737, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 15.341309934476413, - "c2": -25.640085586559195, - "c3": -24.13488945891863, - "c4": 24.42531878619173, - "c5": -20.361924300435994, - "c6": -16.92620883108291, - "c7": 2.461494935341136 + "points": { + "c1": 21.376814577973576, + "c2": -12.12167636162733, + "c3": 16.648302961469966, + "c4": -5.388315575370957, + "c5": -17.748303067578334, + "c6": -23.502260225705953, + "c7": 7.823992039717602 }, - "vertexSeeds": { - "c1": 4.474019149467912, - "c2": 4.830424900645308, - "c3": 5.133137874994564, - "c4": 5.018426845051752, - "c5": 4.544850501802707, - "c6": 4.576880906827749, - "c7": 4.998318084319455 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -108897,23 +108897,23 @@ "year": 1737, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -28.75091747038467, - "c2": 19.299808174444223, - "c3": -7.464669727588031, - "c4": 2.2101573858389827, - "c5": -12.389917722227747, - "c6": -13.395475902901524, - "c7": 7.453776578424183 + "points": { + "c1": 16.282384520682463, + "c2": -10.45797081760788, + "c3": 30.652956712224793, + "c4": -11.490448783691122, + "c5": 17.461664918655153, + "c6": 1.324357960819171, + "c7": -17.026817899609465 }, - "vertexSeeds": { - "c1": 4.117071269506437, - "c2": 3.755474723591595, - "c3": 4.015068224284681, - "c4": 4.050167869918073, - "c5": 4.215282587369469, - "c6": 4.133935788268976, - "c7": 3.709089182731174 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [238, 201, 159] }, @@ -108924,23 +108924,23 @@ "year": 1737, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -32.98469045471169, - "c2": -2.0910358877029864, - "c3": 3.2958830827254175, - "c4": -7.249175329872003, - "c5": 36.185383811721394, - "c6": -37.47305377695641, - "c7": -5.335911974365622 + "points": { + "c1": -5.618900901612605, + "c2": 27.985098809385548, + "c3": -27.07791413421539, + "c4": 41.147729085041576, + "c5": 40.62639027194133, + "c6": -40.56233380839839, + "c7": 39.59538820100771 }, - "vertexSeeds": { - "c1": 3.763909466869488, - "c2": 3.5557330734577, - "c3": 3.577551357137732, - "c4": 3.75065037800658, - "c5": 4.224641488359042, - "c6": 3.9453015597844674, - "c7": 3.510167234582911 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.1086453999075365, + "c4": 4.0869163199260266, + "c5": 3.065187239944523, + "c6": 2.0434581599630133, + "c7": 1.0217290799815093 }, "rgb": [58, 15, 49] }, @@ -108951,23 +108951,23 @@ "year": 1737, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -7.578275748104808, - "c2": 6.317086041396401, - "c3": 16.20044573497706, - "c4": 4.793290255915345, - "c5": -7.3016111893578, - "c6": 38.08022656570334, - "c7": 15.555540968395732 + "points": { + "c1": -27.972184562429224, + "c2": -31.30884475682273, + "c3": 22.976243554712113, + "c4": -9.941017855702988, + "c5": -18.938794999247634, + "c6": -26.846780843703648, + "c7": -44.50382767467891 }, - "vertexSeeds": { - "c1": 7.058742573594688, - "c2": 6.513088018640761, - "c3": 6.174523237636878, - "c4": 6.644626357471415, - "c5": 6.983162374324465, - "c6": 6.525513524891149, - "c7": 6.7046372194844315 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962555, + "c3": 8.599167822468798, + "c4": 6.879334257975027, + "c5": 5.15950069348127, + "c6": 3.4396671289875136, + "c7": 1.7198335644937568 }, "rgb": [238, 201, 159] }, @@ -108978,23 +108978,23 @@ "year": 1737, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -16.07664171278794, - "c2": 2.950696538982264, - "c3": 21.47549157288062, - "c4": 4.540585046136904, - "c5": 39.04565134591207, - "c6": 9.931543141862889, - "c7": 24.69413154298713 + "points": { + "c1": 38.03554628199645, + "c2": -37.16001678692766, + "c3": 13.04311473597322, + "c4": 21.05124107072659, + "c5": -21.768448813972743, + "c6": 19.87636550708139, + "c7": -32.88824036061318 }, - "vertexSeeds": { - "c1": 9.239873159959474, - "c2": 8.60877655324106, - "c3": 9.622239726666539, - "c4": 10.670559142243045, - "c5": 8.751865028678546, - "c6": 10.713309184266041, - "c7": 9.137104320999757 + "offsets": { + "c1": 17.89644012944984, + "c2": 15.339805825242722, + "c3": 12.783171521035607, + "c4": 10.226537216828483, + "c5": 7.669902912621358, + "c6": 5.113268608414241, + "c7": 2.556634304207125 }, "rgb": [77, 76, 132] }, @@ -109005,23 +109005,23 @@ "year": 1737, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -4.890899895894094, - "c2": -8.867648465741091, - "c3": 22.921989912595073, - "c4": -15.41604710194715, - "c5": -39.75739642592747, - "c6": 3.2815817817278017, - "c7": 37.08739726468695 + "points": { + "c1": 32.3162409844846, + "c2": -39.766773552740034, + "c3": -11.119319964593515, + "c4": -33.83576327518884, + "c5": -38.27420628240989, + "c6": 16.03681681705016, + "c7": -24.808484051542223 }, - "vertexSeeds": { - "c1": 10.980907188289041, - "c2": 11.239515870427164, - "c3": 10.51480106392848, - "c4": 11.327688634436742, - "c5": 10.83566320728885, - "c6": 11.261909932926569, - "c7": 10.95571922196296 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.53259361997228, + "c3": 13.777161349976879, + "c4": 11.02172907998152, + "c5": 8.26629680998612, + "c6": 5.51086453999076, + "c7": 2.7554322699953597 }, "rgb": [77, 76, 132] }, @@ -109032,23 +109032,23 @@ "year": 1738, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -37.84039736307014, - "c2": 3.8181058680076276, - "c3": 6.091399542176617, - "c4": -35.207893888074715, - "c5": 41.98955328967796, - "c6": -13.99634585446746, - "c7": -26.98844161406539 + "points": { + "c1": 11.018856450599507, + "c2": -35.81130732642884, + "c3": -7.469630920320348, + "c4": -45.85456494753013, + "c5": 25.988537382008417, + "c6": -5.82759532637543, + "c7": -44.835918775736495 }, - "vertexSeeds": { - "c1": 1.6522941697487474, - "c2": 1.6794822533748592, - "c3": 1.6328545658278024, - "c4": 1.7547749327694442, - "c5": 1.7090659577682619, - "c6": 1.7120424016189757, - "c7": 1.4995607007908283 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.690707350901525, + "c3": 2.242256125751272, + "c4": 1.7938049006010164, + "c5": 1.3453536754507636, + "c6": 0.8969024503005082, + "c7": 0.448451225150253 }, "rgb": [77, 76, 132] }, @@ -109059,23 +109059,23 @@ "year": 1738, "resistanceReported": false, "duration": 61171200, - "curveSeeds": { - "c1": -41.64106274554537, - "c2": 73.76207303177748, - "c3": 58.14918835386217, - "c4": -75.26301384046724, - "c5": 58.0813944940372, - "c6": 0.6771153774599838, - "c7": -61.85466207821926 + "points": { + "c1": -2.1018302153421757, + "c2": 43.59438863205631, + "c3": -45.615413180557695, + "c4": 1.237180016553765, + "c5": 61.95516706800697, + "c6": -24.62038068214727, + "c7": 53.93086571063307 }, - "vertexSeeds": { - "c1": 8.809681274207504, - "c2": 8.895692908199086, - "c3": 8.966421607617102, - "c4": 8.933909113552986, - "c5": 9.022758631364571, - "c6": 8.789405193106466, - "c7": 8.770581238819474 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743388, + "c3": 10.77207582061952, + "c4": 8.617660656495593, + "c5": 6.463245492371723, + "c6": 4.308830328247796, + "c7": 2.1544151641239266 }, "rgb": [238, 201, 159] }, @@ -109086,23 +109086,23 @@ "year": 1738, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": -19.781374849056157, - "c2": 38.80390671928497, - "c3": -19.73302526668858, - "c4": -49.27478067612899, - "c5": -17.240271469593083, - "c6": 0.5915998424856426, - "c7": 22.682665259935206 + "points": { + "c1": 60.741248193735004, + "c2": 5.470243663082599, + "c3": 37.58984778019942, + "c4": -58.96521839853226, + "c5": 22.859614594091397, + "c6": -57.971160996298494, + "c7": -25.13401663775499 }, - "vertexSeeds": { - "c1": 9.08077615155734, - "c2": 8.897569434464542, - "c3": 8.713477826996638, - "c4": 8.960122078750846, - "c5": 8.00526428807967, - "c6": 8.6304615929987, - "c7": 8.176415364889017 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.00970873786408, + "c3": 10.841423948220068, + "c4": 8.673139158576058, + "c5": 6.5048543689320475, + "c6": 4.336569579288036, + "c7": 2.168284789644025 }, "rgb": [77, 76, 132] }, @@ -109113,23 +109113,23 @@ "year": 1738, "resistanceReported": false, "duration": 49161600, - "curveSeeds": { - "c1": 37.18511598218522, - "c2": 56.86332576103521, - "c3": 55.70326105693046, - "c4": 36.93998285992147, - "c5": -5.97373479675781, - "c6": -55.93314228631926, - "c7": 2.1156023682648595 + "points": { + "c1": -56.14990813998358, + "c2": 63.76816493948756, + "c3": -58.75303961066669, + "c4": -7.876227698801941, + "c5": -33.03909864571613, + "c6": -23.80432291356488, + "c7": -64.39267197246062 }, - "vertexSeeds": { - "c1": 15.121033751896231, - "c2": 16.76390182614031, - "c3": 15.778931234985784, - "c4": 16.520303921122505, - "c5": 15.912943117065632, - "c6": 15.08910735976183, - "c7": 17.286723556039252 + "offsets": { + "c1": 28.867313915857608, + "c2": 24.743411927877954, + "c3": 20.619509939898297, + "c4": 16.495607951918643, + "c5": 12.37170596393899, + "c6": 8.247803975959338, + "c7": 4.123901987979682 }, "rgb": [58, 15, 49] }, @@ -109140,23 +109140,23 @@ "year": 1737, "resistanceReported": false, "duration": 5097600, - "curveSeeds": { - "c1": -13.605695852095261, - "c2": -2.8762018665619653, - "c3": -3.601428734896345, - "c4": -12.321669517998627, - "c5": -1.8327527540229571, - "c6": -11.259047654334998, - "c7": -2.606631388982102 + "points": { + "c1": -13.295852793712939, + "c2": 17.179247958960453, + "c3": 5.218583029087242, + "c4": -4.026292884434396, + "c5": -12.187623762897665, + "c6": 14.056837296890578, + "c7": 15.30318357691111 }, - "vertexSeeds": { - "c1": 4.7688953968761965, - "c2": 4.598320809735791, - "c3": 4.647974517790185, - "c4": 4.987434821004902, - "c5": 4.720836835832985, - "c6": 5.028418616367448, - "c7": 4.753771386314084 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -109167,23 +109167,23 @@ "year": 1737, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -23.9735765518645, - "c2": 22.534479331898815, - "c3": 1.4172437444657362, - "c4": -7.810577597939911, - "c5": -13.13482193685692, - "c6": 17.292074429135297, - "c7": -19.516710806968533 + "points": { + "c1": 5.875368948234289, + "c2": -12.239230120628243, + "c3": -17.151245948515395, + "c4": -10.695624306226541, + "c5": -17.064064976480694, + "c6": -0.8272425629794817, + "c7": -16.831224412391613 }, - "vertexSeeds": { - "c1": 2.4076564307041814, - "c2": 2.47502305267651, - "c3": 2.624292637973514, - "c4": 2.488912750931868, - "c5": 2.8833581759154434, - "c6": 2.869110984550856, - "c7": 2.693101131346736 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.18862690707351, + "c3": 3.4905224225612597, + "c4": 2.792417938049004, + "c5": 2.094313453536754, + "c6": 1.3962089690245034, + "c7": 0.6981044845122529 }, "rgb": [238, 201, 159] }, @@ -109194,23 +109194,23 @@ "year": 1737, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 14.912901072466958, - "c2": 4.904007155407314, - "c3": 0.9561088410595175, - "c4": -27.368537595886835, - "c5": 30.392119942970822, - "c6": -11.577266075530801, - "c7": 7.830543125333023 + "points": { + "c1": -4.42032335818303, + "c2": -14.320666053064592, + "c3": 4.869018888694946, + "c4": -26.387673794380376, + "c5": 18.601376643376675, + "c6": 33.118293941797845, + "c7": 2.0491084692119514 }, - "vertexSeeds": { - "c1": 4.584232236345555, - "c2": 5.402123841959735, - "c3": 5.7016246394877195, - "c4": 4.619917346066778, - "c5": 5.6327348892460956, - "c6": 4.896668529910999, - "c7": 5.1765668368854545 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387891, + "c4": 5.455386037910311, + "c5": 4.0915395284327305, + "c6": 2.7276930189551556, + "c7": 1.36384650947758 }, "rgb": [222, 0, 59] }, @@ -109221,23 +109221,23 @@ "year": 1738, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": 55.611999254655984, - "c2": 2.324582729487581, - "c3": 15.048546804677486, - "c4": 24.232705222299543, - "c5": 23.91726898428891, - "c6": 57.061392980898106, - "c7": 3.2101991199127298 + "points": { + "c1": -4.220655614759174, + "c2": 40.764194706992654, + "c3": 15.572624015898128, + "c4": -27.965934828720364, + "c5": -9.966864345064806, + "c6": 36.64468124298584, + "c7": 49.493432612483616 }, - "vertexSeeds": { - "c1": 3.084859039377277, - "c2": 3.2909408835972607, - "c3": 3.144255180498165, - "c4": 3.030335730770187, - "c5": 2.963811958191519, - "c6": 3.0169008624040234, - "c7": 2.9424097857414657 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159499, + "c3": 4.114655570966254, + "c4": 3.291724456773002, + "c5": 2.4687933425797497, + "c6": 1.645862228386504, + "c7": 0.822931114193252 }, "rgb": [58, 15, 49] }, @@ -109248,23 +109248,23 @@ "year": 1737, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -18.9316207118314, - "c2": 18.569343192765686, - "c3": -10.484997301636916, - "c4": -24.994864578183435, - "c5": -23.44064711840518, - "c6": 22.504663557638004, - "c7": -25.100445857131295 + "points": { + "c1": 7.239832700264415, + "c2": -15.876936239010842, + "c3": -6.417719995844493, + "c4": -4.488845467848979, + "c5": -31.06442112039298, + "c6": 9.56757586565189, + "c7": 9.451505606696351 }, - "vertexSeeds": { - "c1": 8.648837499717388, - "c2": 8.981711945006284, - "c3": 9.709073470971852, - "c4": 8.852543361965958, - "c5": 9.322347533882704, - "c6": 8.520711290661, - "c7": 9.038192095319523 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151183, + "c3": 11.581137309292645, + "c4": 9.264909847434122, + "c5": 6.948682385575585, + "c6": 4.632454923717061, + "c7": 2.3162274618585377 }, "rgb": [238, 201, 159] }, @@ -109275,23 +109275,23 @@ "year": 1738, "resistanceReported": false, "duration": 52790400, - "curveSeeds": { - "c1": 45.86253377503023, - "c2": 20.22326903144014, - "c3": -6.57469176322445, - "c4": 17.905567968022638, - "c5": -49.8851571738563, - "c6": 36.881122191882696, - "c7": -64.69858770545416 + "points": { + "c1": -36.472042426216504, + "c2": 37.416378516959895, + "c3": 62.454713964033616, + "c4": 27.99255068733538, + "c5": 30.329831331167583, + "c6": 54.841010052384405, + "c7": -45.00258209468227 }, - "vertexSeeds": { - "c1": 8.910635419420823, - "c2": 8.981804462117898, - "c3": 9.458817517610235, - "c4": 8.62413905945299, - "c5": 9.057794329752243, - "c6": 8.680532360193872, - "c7": 9.32424176786009 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423946, + "c4": 9.061488673139163, + "c5": 6.796116504854365, + "c6": 4.530744336569581, + "c7": 2.2653721682847974 }, "rgb": [58, 15, 49] }, @@ -109302,23 +109302,23 @@ "year": 1737, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -15.83359634303957, - "c2": -8.304012767662684, - "c3": 31.648073428051454, - "c4": -24.890672617060766, - "c5": 14.964489847586478, - "c6": -4.187369641453682, - "c7": 27.292884198206764 + "points": { + "c1": -30.148268132343034, + "c2": -24.347931015379025, + "c3": 20.375702923718592, + "c4": 3.056325281293205, + "c5": -19.21607134904071, + "c6": -20.039083009619755, + "c7": -27.49380440247233 }, - "vertexSeeds": { - "c1": 4.172527268654518, - "c2": 3.0044467941134854, - "c3": 3.19095872863502, - "c4": 3.7931565777140874, - "c5": 4.097374314077149, - "c6": 3.1202646877085223, - "c7": 3.0789650181526986 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [86, 146, 138] }, @@ -109329,23 +109329,23 @@ "year": 1738, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 19.748992324524117, - "c2": -14.791947246747107, - "c3": -42.15001316193292, - "c4": 28.83929649539254, - "c5": 12.050390253161972, - "c6": 30.757586392487376, - "c7": -2.468374476650041 + "points": { + "c1": -27.217044218434683, + "c2": 36.96223706160986, + "c3": -32.757298332161355, + "c4": -41.70388739730421, + "c5": -36.385311136722365, + "c6": -43.79646762508658, + "c7": -8.58119179943565 }, - "vertexSeeds": { - "c1": 12.37500814654004, - "c2": 10.642698141511076, - "c3": 11.621549284382109, - "c4": 12.037210348619372, - "c5": 11.347112798633228, - "c6": 11.504625297843152, - "c7": 10.454183093496216 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.753120665742028, + "c3": 14.79426722145169, + "c4": 11.835413777161351, + "c5": 8.876560332871014, + "c6": 5.917706888580676, + "c7": 2.958853444290338 }, "rgb": [77, 76, 132] }, @@ -109356,23 +109356,23 @@ "year": 1737, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 11.821360208150764, - "c2": 31.635313505030638, - "c3": 6.074667144732565, - "c4": -28.41766273551891, - "c5": 22.24464980192723, - "c6": 3.9154629452001473, - "c7": 30.665773770765625 + "points": { + "c1": 12.142174572046315, + "c2": 2.375578074449436, + "c3": -8.286387975192305, + "c4": -13.247097438192636, + "c5": -12.787752134874168, + "c6": 1.2278721143621354, + "c7": -27.97083444386049 }, - "vertexSeeds": { - "c1": 4.8376414199841165, - "c2": 4.965078097821822, - "c3": 4.8189635073020085, - "c4": 4.920147873011787, - "c5": 4.4206925383994164, - "c6": 5.0309889126651015, - "c7": 4.228735569807083 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -109383,23 +109383,23 @@ "year": 1737, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -8.865110664062847, - "c2": 35.809183659432804, - "c3": -22.24390028237682, - "c4": 14.1749912176494, - "c5": -22.534528687930212, - "c6": 18.888491693262573, - "c7": -5.08893774000218 + "points": { + "c1": -8.853776774296644, + "c2": 2.501549512395087, + "c3": -9.492056949897037, + "c4": 18.034688972387656, + "c5": 20.086688614873736, + "c6": 11.46903584884437, + "c7": -28.892717758772996 }, - "vertexSeeds": { - "c1": 3.605493845943779, - "c2": 3.5623215371453236, - "c3": 3.7083662912878324, - "c4": 3.5100320465369337, - "c5": 3.4404109243137966, - "c6": 3.4586428202170936, - "c7": 3.6736642031380837 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883491, + "c3": 4.53074433656958, + "c4": 3.6245954692556612, + "c5": 2.718446601941749, + "c6": 1.8122977346278306, + "c7": 0.9061488673139187 }, "rgb": [58, 15, 49] }, @@ -109410,23 +109410,23 @@ "year": 1737, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -25.462582331598576, - "c2": -8.169728258043438, - "c3": -1.7670483702320858, - "c4": 11.50452638582055, - "c5": -18.219768803287675, - "c6": 26.323295738017823, - "c7": -12.52835202024961 + "points": { + "c1": 20.975347173036628, + "c2": 7.600838471522561, + "c3": 15.879031905151567, + "c4": -5.537274096450076, + "c5": 21.74377984347341, + "c6": 7.015457050781361, + "c7": 22.568580578574053 }, - "vertexSeeds": { - "c1": 5.009490682079817, - "c2": 4.464690128946353, - "c3": 4.629775286462123, - "c4": 4.728563401074984, - "c5": 4.655327237992893, - "c6": 4.885872076364027, - "c7": 5.037520281444786 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -109437,23 +109437,23 @@ "year": 1737, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 16.329109014881283, - "c2": 10.86295238349743, - "c3": 10.940197467194558, - "c4": -11.192984009602636, - "c5": 13.97203746184325, - "c6": -4.920244255613774, - "c7": -21.071808051484584 + "points": { + "c1": -17.660954505243986, + "c2": 33.10985010225153, + "c3": 22.85497229055003, + "c4": 1.6312045049178963, + "c5": 4.869372797981178, + "c6": -8.372160583669512, + "c7": 26.24405671815996 }, - "vertexSeeds": { - "c1": 7.449829315377891, - "c2": 7.329430876210614, - "c3": 7.2100528699952315, - "c4": 7.060407935937246, - "c5": 7.266578904150517, - "c6": 6.897423027504177, - "c7": 7.328030522489537 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -109464,23 +109464,23 @@ "year": 1738, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -22.31990047924549, - "c2": -13.335114123040945, - "c3": -30.051563692599213, - "c4": -25.501700115976988, - "c5": 28.79169016900564, - "c6": -9.27492572372601, - "c7": 7.645262131392144 + "points": { + "c1": 4.44713923557368, + "c2": 39.74004990128311, + "c3": -13.250670749311315, + "c4": -5.853037323614906, + "c5": 38.82436525222105, + "c6": -31.20297313056409, + "c7": -36.96254199932058 }, - "vertexSeeds": { - "c1": 9.505278141027123, - "c2": 8.97869650776468, - "c3": 9.41839117820111, - "c4": 9.037563943909973, - "c5": 8.386370583515298, - "c6": 8.799100095281151, - "c7": 9.359085927369605 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.84188626907073, + "c3": 11.534905224225618, + "c4": 9.22792417938049, + "c5": 6.920943134535365, + "c6": 4.6139620896902525, + "c7": 2.3069810448451262 }, "rgb": [58, 15, 49] }, @@ -109491,23 +109491,23 @@ "year": 1738, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 28.345178539372355, - "c2": 31.44486708526034, - "c3": 7.62022204257039, - "c4": 4.555345539059772, - "c5": -0.32078977276042053, - "c6": 26.334350933200668, - "c7": -5.773131601640749 + "points": { + "c1": -24.601837550660665, + "c2": -14.042882682784068, + "c3": -10.038666906535607, + "c4": 40.10283743662788, + "c5": 28.71869802982755, + "c6": -27.12119745932433, + "c7": -33.64919815907143 }, - "vertexSeeds": { - "c1": 4.9741937412924315, - "c2": 4.500519315442921, - "c3": 4.490411969890427, - "c4": 4.346193750373796, - "c5": 4.6753062491120625, - "c6": 4.293497404827233, - "c7": 4.529954409587871 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -109518,23 +109518,23 @@ "year": 1738, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 29.011171698793497, - "c2": -27.277246566841356, - "c3": -0.06028064938279698, - "c4": -16.968852676885234, - "c5": -0.9159411472500878, - "c6": -19.082885337481624, - "c7": -4.506834455035296 + "points": { + "c1": -0.38011627853720853, + "c2": -23.21156900019955, + "c3": 15.46193889048304, + "c4": 30.468849819192478, + "c5": 27.50900939846887, + "c6": 22.322795547272392, + "c7": 36.817300957107186 }, - "vertexSeeds": { - "c1": 9.918489279681559, - "c2": 4.859511002142098, - "c3": 6.134163832213104, - "c4": 1.9584396410285256, - "c5": 13.58132924381453, - "c6": 3.668632069862535, - "c7": 10.092069288217074 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155342, + "c3": 16.181229773462785, + "c4": 12.944983818770227, + "c5": 9.708737864077671, + "c6": 6.472491909385114, + "c7": 3.236245954692557 }, "rgb": [222, 0, 59] }, @@ -109545,23 +109545,23 @@ "year": 1738, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -31.24559736744306, - "c2": 17.63775288959684, - "c3": 5.665143973680202, - "c4": -9.988514684771431, - "c5": -22.132645901217213, - "c6": 29.32281895259473, - "c7": 12.348730017944355 + "points": { + "c1": 26.475489591732213, + "c2": 11.225179586547128, + "c3": -46.19207182898002, + "c4": -34.14516779311856, + "c5": -37.0967640199529, + "c6": 36.88707660077638, + "c7": 25.931884879568898 }, - "vertexSeeds": { - "c1": 6.139572315201903, - "c2": 6.568506511781573, - "c3": 6.29533494525129, - "c4": 6.749239411284778, - "c5": 6.541701621664138, - "c6": 6.790621882969362, - "c7": 6.77726250925819 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.29865926953306, + "c4": 6.63892741562645, + "c5": 4.979195561719828, + "c6": 3.319463707813218, + "c7": 1.659731853906609 }, "rgb": [238, 201, 159] }, @@ -109572,23 +109572,23 @@ "year": 1738, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 6.289849373539454, - "c2": 16.851888577373444, - "c3": -21.819721595684342, - "c4": -38.631482174324915, - "c5": -13.449669470812182, - "c6": -19.513822020969553, - "c7": -1.9555297422285207 + "points": { + "c1": 21.711458993173565, + "c2": -23.34809526770069, + "c3": 0.9914698404328064, + "c4": -16.002385907618056, + "c5": -4.301368580535964, + "c6": 12.38689944455411, + "c7": 18.321921458680457 }, - "vertexSeeds": { - "c1": 5.253326215538822, - "c2": 4.229410087682596, - "c3": 5.419735923056116, - "c4": 4.134756634126702, - "c5": 3.8413692163065587, - "c6": 5.602813195873246, - "c7": 5.589739044121054 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147018, + "c3": 6.9810448451225176, + "c4": 5.58483587609801, + "c5": 4.188626907073508, + "c6": 2.7924179380490064, + "c7": 1.3962089690245045 }, "rgb": [86, 146, 138] }, @@ -109599,23 +109599,23 @@ "year": 1738, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": -31.66812232459503, - "c2": 8.093655958488128, - "c3": 3.5737799028798065, - "c4": 36.40136506026423, - "c5": -2.056357813954385, - "c6": 8.616304884755714, - "c7": 22.53635570664739 + "points": { + "c1": -50.25160596032285, + "c2": 15.99785505306344, + "c3": 6.388915867250432, + "c4": -14.683588104102562, + "c5": 33.06856887543572, + "c6": -28.17994707504058, + "c7": 19.34403900633078 }, - "vertexSeeds": { - "c1": 4.633695231603589, - "c2": 4.615577965137296, - "c3": 4.750477238213527, - "c4": 4.631960891508487, - "c5": 4.634212925078028, - "c6": 4.602231190721519, - "c7": 4.766866993759454 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934821, + "c3": 5.709662505779007, + "c4": 4.567730004623215, + "c5": 3.4257975034673995, + "c6": 2.2838650023116074, + "c7": 1.1419325011557921 }, "rgb": [77, 76, 132] }, @@ -109626,23 +109626,23 @@ "year": 1738, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -7.2250070079396345, - "c2": 26.432815936204925, - "c3": -29.95681242535487, - "c4": -6.423408248033319, - "c5": 7.629066864719981, - "c6": -4.563781006678504, - "c7": -30.048467751384933 + "points": { + "c1": 31.691043997622344, + "c2": 34.434871622263586, + "c3": -20.908714584686738, + "c4": 13.506503471737261, + "c5": 9.380753686334806, + "c6": 37.13105813524611, + "c7": -34.367630970666404 }, - "vertexSeeds": { - "c1": 4.40810468630048, - "c2": 5.03294407227705, - "c3": 4.513630660620977, - "c4": 4.7677835025768145, - "c5": 4.422868989437007, - "c6": 4.199016719248896, - "c7": 4.411804177598696 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -109653,23 +109653,23 @@ "year": 1738, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 16.743345526019432, - "c2": -5.67766915919988, - "c3": -15.719047241494234, - "c4": 8.089736527198518, - "c5": -11.966940223264512, - "c6": -4.464514261967459, - "c7": 13.4824052069647 + "points": { + "c1": 34.500846794908725, + "c2": -36.87597022687107, + "c3": 4.124343227013178, + "c4": 34.79082828956247, + "c5": -4.615842473101004, + "c6": 17.874587809693153, + "c7": 2.7621590806588827 }, - "vertexSeeds": { - "c1": 1.0525853634993967, - "c2": 1.0750425388267681, - "c3": 1.0686280648568507, - "c4": 1.0136714226387697, - "c5": 1.1372350634848225, - "c6": 1.0697158328752232, - "c7": 1.1403192584961754 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535371, + "c3": 1.4100785945446146, + "c4": 1.128062875635692, + "c5": 0.8460471567267694, + "c6": 0.5640314378178451, + "c7": 0.2820157189089243 }, "rgb": [238, 201, 159] }, @@ -109680,23 +109680,23 @@ "year": 1737, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -12.159307186083613, - "c2": 30.13757942755317, - "c3": 13.191538099627046, - "c4": 15.196450319333216, - "c5": -14.659161520500923, - "c6": -6.344082996117301, - "c7": -9.41571310517752 + "points": { + "c1": 29.451795671784332, + "c2": 20.506234530126797, + "c3": -28.553063742023888, + "c4": 27.26175997971888, + "c5": -2.308736603305622, + "c6": -20.082262080159015, + "c7": -3.0913365858549753 }, - "vertexSeeds": { - "c1": 4.877894700134709, - "c2": 4.782607313673433, - "c3": 4.527714437950998, - "c4": 5.127558060255763, - "c5": 4.441873153489657, - "c6": 5.160280367332294, - "c7": 4.4933174381669 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -109707,23 +109707,23 @@ "year": 1737, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 28.782472192012406, - "c2": -33.244036137835124, - "c3": -13.36920902847864, - "c4": 15.476461722899366, - "c5": -17.174413107193505, - "c6": 28.082098567420587, - "c7": -20.078340033132953 + "points": { + "c1": 23.867211438371783, + "c2": 23.13864083793962, + "c3": 36.1146634446863, + "c4": 32.21971195513632, + "c5": 32.15006545418868, + "c6": 32.22978161196097, + "c7": -10.92747039134396 }, - "vertexSeeds": { - "c1": 5.598403708987953, - "c2": 6.359559478486559, - "c3": 5.862621340413624, - "c4": 5.572333589585195, - "c5": 5.545485692532536, - "c6": 5.506218559984584, - "c7": 5.627538925367245 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -109734,23 +109734,23 @@ "year": 1737, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 14.261751144967839, - "c2": -28.148731971436575, - "c3": 10.769126516079197, - "c4": -13.92708292698595, - "c5": 23.44724353324179, - "c6": -2.7493091415418576, - "c7": 9.39728730008192 + "points": { + "c1": 1.5610199147671793, + "c2": 5.199855623673869, + "c3": 14.38108015931762, + "c4": -34.83285037669408, + "c5": 17.904422348229012, + "c6": 34.90081674136046, + "c7": -6.85376452261189 }, - "vertexSeeds": { - "c1": 6.259027915248531, - "c2": 6.338453525117107, - "c3": 6.041478833738357, - "c4": 5.814040960054507, - "c5": 6.403407534161556, - "c6": 6.198509847111875, - "c7": 6.181315065683566 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595005, + "c3": 7.813222376329178, + "c4": 6.25057790106334, + "c5": 4.687933425797502, + "c6": 3.1252889505316763, + "c7": 1.5626444752658382 }, "rgb": [77, 76, 132] }, @@ -109761,23 +109761,23 @@ "year": 1738, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 11.99763480901305, - "c2": 5.665340740349734, - "c3": -28.702171889622274, - "c4": -38.74916371656986, - "c5": -0.7826814206508388, - "c6": -25.833309123796415, - "c7": -20.368919434684 + "points": { + "c1": -0.2066931341793179, + "c2": -23.793286024871264, + "c3": 18.239514425577475, + "c4": 19.754776218132605, + "c5": -7.9810183549793905, + "c6": -21.756122514187496, + "c7": 3.6396539343069705 }, - "vertexSeeds": { - "c1": 3.100767892836077, - "c2": 2.975280941908276, - "c3": 3.0739827805913404, - "c4": 2.884651463743253, - "c5": 3.000260246597901, - "c6": 3.214754447158584, - "c7": 3.0777191256186764 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388355, + "c3": 4.045307443365696, + "c4": 3.236245954692557, + "c5": 2.4271844660194177, + "c6": 1.6181229773462784, + "c7": 0.8090614886731392 }, "rgb": [58, 15, 49] }, @@ -109788,23 +109788,23 @@ "year": 1737, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -4.065060975222934, - "c2": 9.128935879525724, - "c3": -18.979885999904134, - "c4": -9.203526325991835, - "c5": 26.171042720620985, - "c6": -6.8403390913548385, - "c7": -15.06509700008035 + "points": { + "c1": 5.763429915332988, + "c2": 17.074657276659618, + "c3": 0.7249613429491184, + "c4": 17.825801001850525, + "c5": -14.631518631051474, + "c6": -0.7983516352825077, + "c7": 21.90739534237225 }, - "vertexSeeds": { - "c1": 5.731804188203597, - "c2": 6.171630835405764, - "c3": 6.40234853581084, - "c4": 6.169774939481616, - "c5": 5.58533292110159, - "c6": 5.6808860726357295, - "c7": 5.892598335075256 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -109815,23 +109815,23 @@ "year": 1738, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -21.21930159442739, - "c2": 34.13462372805397, - "c3": 30.5396748945644, - "c4": 21.9654278830997, - "c5": 8.288606372433648, - "c6": 13.265342817662123, - "c7": 7.84337658028803 + "points": { + "c1": -37.00457189351048, + "c2": 26.716562295681896, + "c3": 16.469862863607354, + "c4": -25.844923479076222, + "c5": -27.65453338474756, + "c6": 7.788397231727728, + "c7": 4.424073347505207 }, - "vertexSeeds": { - "c1": 9.59154271754497, - "c2": 8.882380182519308, - "c3": 9.460559394819162, - "c4": 9.2224428867352, - "c5": 8.922126917518288, - "c6": 9.387006232347643, - "c7": 9.187424807959157 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055477, + "c6": 4.6232085067036515, + "c7": 2.3116042533518257 }, "rgb": [77, 76, 132] }, @@ -109842,23 +109842,23 @@ "year": 1738, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -31.148778741251142, - "c2": 34.48073903590371, - "c3": 33.408010635882576, - "c4": -30.685429181677332, - "c5": 1.120432648327835, - "c6": 40.881777305111754, - "c7": -3.8622175426612557 + "points": { + "c1": 23.81833379213515, + "c2": 19.417238239409443, + "c3": 3.8658969079503933, + "c4": 32.68485298069915, + "c5": -45.55309259915599, + "c6": -33.5261727903898, + "c7": -39.71509793229944 }, - "vertexSeeds": { - "c1": 7.450288396219464, - "c2": 7.877478179070809, - "c3": 7.502475740638703, - "c4": 8.119757554411109, - "c5": 8.151086308612161, - "c6": 7.08891039756802, - "c7": 7.490825622855675 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094312, + "c3": 9.824318076745259, + "c4": 7.859454461396204, + "c5": 5.894590846047162, + "c6": 3.9297272306981084, + "c7": 1.9648636153490542 }, "rgb": [238, 201, 159] }, @@ -109869,23 +109869,23 @@ "year": 1738, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -17.98230999150253, - "c2": 7.354075129667585, - "c3": 24.820165345545398, - "c4": 26.017287803120972, - "c5": -8.341217359497243, - "c6": -15.031730529683301, - "c7": -39.58179500300348 + "points": { + "c1": 27.232054405203847, + "c2": -23.929807535158634, + "c3": 20.31414634539481, + "c4": -17.673951426745575, + "c5": -18.614198165350643, + "c6": -29.32840314874428, + "c7": -5.5858180174737555 }, - "vertexSeeds": { - "c1": 7.44502861075496, - "c2": 7.351315938013429, - "c3": 7.228568799694958, - "c4": 7.517805065762142, - "c5": 7.579788792630613, - "c6": 7.5673727624142915, - "c7": 7.337479939171169 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927868, + "c3": 9.153952843273235, + "c4": 7.323162274618579, + "c5": 5.4923717059639445, + "c6": 3.6615811373092897, + "c7": 1.830790568654655 }, "rgb": [222, 0, 59] }, @@ -109896,23 +109896,23 @@ "year": 1737, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 24.358270280498225, - "c2": 4.836078882002596, - "c3": 3.31631775661857, - "c4": 6.033886323274796, - "c5": 21.970795640523242, - "c6": 6.2773522887307855, - "c7": 20.758463009848924 + "points": { + "c1": 11.040706232883004, + "c2": -22.737726661418016, + "c3": -13.924118613948067, + "c4": 11.162895627565412, + "c5": -14.263676886810272, + "c6": 24.008832685629997, + "c7": -18.923096775074868 }, - "vertexSeeds": { - "c1": 7.330408605486904, - "c2": 6.966064382187239, - "c3": 6.811914013092882, - "c4": 6.996489094270251, - "c5": 6.999935119197201, - "c6": 6.954064879731886, - "c7": 6.917971981722278 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -109923,23 +109923,23 @@ "year": 1737, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 4.529863350645968, - "c2": -22.585201728103865, - "c3": -20.744440273839807, - "c4": -24.396419302017364, - "c5": 10.82306660003588, - "c6": -2.15634948090419, - "c7": -19.5050071394744 + "points": { + "c1": 20.28030711581267, + "c2": 19.72705038832244, + "c3": -23.387507514336463, + "c4": -21.12540157020366, + "c5": 5.32704822108651, + "c6": 9.537737371649825, + "c7": -0.29335130671487875 }, - "vertexSeeds": { - "c1": 4.245759491431337, - "c2": 4.477705717971109, - "c3": 4.819064964205082, - "c4": 4.968762694488751, - "c5": 4.496043528992703, - "c6": 5.222628644281082, - "c7": 4.6891691325198135 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -109950,23 +109950,23 @@ "year": 1737, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 14.831574475312067, - "c2": -12.770667316776544, - "c3": -27.12807461430683, - "c4": 6.796963171016166, - "c5": -27.127929359713736, - "c6": -4.679140483999305, - "c7": -21.78521025550007 + "points": { + "c1": -19.93708643050016, + "c2": -6.187782345214785, + "c3": 6.364300766452665, + "c4": -14.375897649786204, + "c5": 11.944508289856039, + "c6": -16.63488167520564, + "c7": -23.433342162390893 }, - "vertexSeeds": { - "c1": 4.13301303216069, - "c2": 3.8505064917083667, - "c3": 4.484822447479377, - "c4": 3.9062291674747103, - "c5": 4.027831357221531, - "c6": 4.1374407948221705, - "c7": 4.615847394474144 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -109977,23 +109977,23 @@ "year": 1738, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 39.391922884650974, - "c2": -44.76850155167731, - "c3": -33.24857333941983, - "c4": 7.880096991329168, - "c5": 44.505505211636354, - "c6": 36.769387680695225, - "c7": 19.493686625619723 + "points": { + "c1": -22.484445386132037, + "c2": -7.537897536048895, + "c3": 4.344054693545935, + "c4": 19.840919745807888, + "c5": 15.079202611138662, + "c6": -18.294063688613456, + "c7": -12.778676556507271 }, - "vertexSeeds": { - "c1": 12.551708640641309, - "c2": 11.2972165245787, - "c3": 12.28782730058033, - "c4": 12.408609643244137, - "c5": 12.032269914883688, - "c6": 11.62018595634581, - "c7": 11.4350249130968 + "offsets": { + "c1": 21.067961165048544, + "c2": 18.05825242718447, + "c3": 15.048543689320397, + "c4": 12.038834951456321, + "c5": 9.02912621359225, + "c6": 6.019417475728148, + "c7": 3.0097087378641016 }, "rgb": [58, 15, 49] }, @@ -110004,23 +110004,23 @@ "year": 1738, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -25.55660207279968, - "c2": 10.29926784223052, - "c3": 28.092069918123343, - "c4": 45.4375388909999, - "c5": 10.77054042664551, - "c6": 41.3422357169233, - "c7": -31.620712559713795 + "points": { + "c1": 32.99080117766178, + "c2": 9.180266712440385, + "c3": 35.43779986032253, + "c4": 30.9273573240652, + "c5": 5.710345787828537, + "c6": -43.14477570191146, + "c7": -16.409576901381033 }, - "vertexSeeds": { - "c1": 4.668054790268684, - "c2": 4.744837355781192, - "c3": 5.346535505382407, - "c4": 4.595419459966427, - "c5": 5.157285721784666, - "c6": 4.476598536182393, - "c7": 5.3558048458460075 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262135, + "c3": 6.472491909385111, + "c4": 5.177993527508087, + "c5": 3.8834951456310676, + "c6": 2.5889967637540434, + "c7": 1.2944983818770242 }, "rgb": [58, 15, 49] }, @@ -110031,23 +110031,23 @@ "year": 1738, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 17.701464876881992, - "c2": -3.2133449938011793, - "c3": -31.944583254604623, - "c4": -4.925644461871393, - "c5": 6.026665110224329, - "c6": -0.9874409590732327, - "c7": 25.59976893806204 + "points": { + "c1": -3.6834208463365528, + "c2": -26.05756889441135, + "c3": 18.04815083993668, + "c4": 22.345707458016413, + "c5": -15.425602000847267, + "c6": 25.900386131976305, + "c7": 31.741337941983787 }, - "vertexSeeds": { - "c1": 6.082045982596291, - "c2": 6.176521009030869, - "c3": 6.115888579776967, - "c4": 6.2408572908328415, - "c5": 6.020749825655678, - "c6": 6.059979904777431, - "c7": 6.068541340342186 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [222, 0, 59] }, @@ -110058,23 +110058,23 @@ "year": 1738, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 7.833271790173892, - "c2": -17.175318488982064, - "c3": -25.510703028714754, - "c4": 23.946938548286777, - "c5": 23.813599258612346, - "c6": 9.107585391305602, - "c7": -12.688763867871401 + "points": { + "c1": 26.006852506544664, + "c2": -22.91675620880337, + "c3": -25.61259899533482, + "c4": -1.1049775231572205, + "c5": -30.144082277124436, + "c6": 17.28005529218728, + "c7": 1.8500916079005272 }, - "vertexSeeds": { - "c1": 3.2584014255366207, - "c2": 3.1867253048010014, - "c3": 3.008992441790552, - "c4": 3.2951048348428698, - "c5": 3.2619724104809222, - "c6": 3.195393125625013, - "c7": 3.1041428328208163 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [222, 0, 59] }, @@ -110085,23 +110085,23 @@ "year": 1738, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 16.886959280545597, - "c2": 13.440589696744006, - "c3": -33.739269256458186, - "c4": -18.3631390063423, - "c5": -33.12298570934435, - "c6": -33.34140958441249, - "c7": -4.637635643318458 + "points": { + "c1": 26.150547387865018, + "c2": -13.97408506636765, + "c3": -32.28859102240489, + "c4": 18.76501804300053, + "c5": 3.3365604337634736, + "c6": -20.757434761349494, + "c7": -29.56286159480988 }, - "vertexSeeds": { - "c1": 6.164733369342654, - "c2": 6.2117750646703, - "c3": 6.168892482998705, - "c4": 5.971823128483683, - "c5": 6.401800615244482, - "c6": 5.624571887961332, - "c7": 6.1913494730563325 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -110112,23 +110112,23 @@ "year": 1739, "resistanceReported": false, "duration": 52963200, - "curveSeeds": { - "c1": 50.72548859515359, - "c2": -38.64305989442944, - "c3": 63.42756635557086, - "c4": -35.60267755107491, - "c5": 5.353797344869207, - "c6": 20.46598769974942, - "c7": 31.66137378107014 + "points": { + "c1": 5.657508797603484, + "c2": 38.15283508609481, + "c3": -64.67319819739608, + "c4": -8.547137354392937, + "c5": 65.08014847967112, + "c6": 23.228140732019483, + "c7": -62.746533285052976 }, - "vertexSeeds": { - "c1": 0.5901756917356102, - "c2": 0.4712291722653821, - "c3": 0.7607741826790484, - "c4": 0.463112626877185, - "c5": 0.5972957697412995, - "c6": 0.5914793429520171, - "c7": 0.7653367870101859 + "offsets": { + "c1": 1.3592233009708738, + "c2": 1.1650485436893203, + "c3": 0.970873786407767, + "c4": 0.7766990291262136, + "c5": 0.5825242718446602, + "c6": 0.3883495145631068, + "c7": 0.1941747572815534 }, "rgb": [238, 201, 159] }, @@ -110139,23 +110139,23 @@ "year": 1738, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -33.93429732676269, - "c2": 22.816052029510757, - "c3": -31.182517186754843, - "c4": 8.015820124502696, - "c5": -1.4372277850665824, - "c6": 0.751996009750485, - "c7": -17.31561931695078 + "points": { + "c1": 30.850489766446742, + "c2": 22.343504475820097, + "c3": -22.639026631747896, + "c4": -3.4039839532959135, + "c5": 7.243681776689009, + "c6": -43.162689865240246, + "c7": 4.1899440046005125 }, - "vertexSeeds": { - "c1": 6.294501714155946, - "c2": 6.168441510359054, - "c3": 6.38680483599961, - "c4": 6.105385376297334, - "c5": 6.135263026424401, - "c6": 6.115164761980086, - "c7": 6.333147054470301 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514566, + "c3": 7.766990291262142, + "c4": 6.213592233009718, + "c5": 4.660194174757273, + "c6": 3.106796116504849, + "c7": 1.5533980582524245 }, "rgb": [77, 76, 132] }, @@ -110166,23 +110166,23 @@ "year": 1738, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -22.787320616886362, - "c2": -25.376879017138965, - "c3": -29.37223401620684, - "c4": -37.604385343455704, - "c5": 8.916863073862302, - "c6": -20.193710950139405, - "c7": -20.273624356277704 + "points": { + "c1": 19.363813955796104, + "c2": 38.05561772484212, + "c3": 37.70814810558805, + "c4": 2.258844426980069, + "c5": -41.75735434608076, + "c6": 20.3743884969481, + "c7": -39.32095581391327 }, - "vertexSeeds": { - "c1": 7.1547298540498545, - "c2": 7.27815353176259, - "c3": 7.147809733904822, - "c4": 7.0852707038847855, - "c5": 7.072630250420139, - "c6": 7.1587602224963245, - "c7": 7.105970878356858 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123419, + "c3": 8.691631992602872, + "c4": 6.9533055940822805, + "c5": 5.214979195561733, + "c6": 3.4766527970411403, + "c7": 1.738326398520593 }, "rgb": [222, 0, 59] }, @@ -110193,23 +110193,23 @@ "year": 1738, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -27.70694687723915, - "c2": -34.44562816919313, - "c3": 13.080515288430824, - "c4": -28.09993662704845, - "c5": 7.681415401382601, - "c6": 25.981864289479674, - "c7": 23.714389975705046 + "points": { + "c1": -16.8748582822787, + "c2": -18.889307546386792, + "c3": 31.742418505164196, + "c4": 18.607484531753684, + "c5": -41.20994774548682, + "c6": 39.49002046921616, + "c7": -5.2726453200108025 }, - "vertexSeeds": { - "c1": 6.370907604660587, - "c2": 6.956439461894604, - "c3": 6.8558312883620145, - "c4": 6.21779661338286, - "c5": 6.080892061667597, - "c6": 5.676743488877484, - "c7": 6.1557733206807725 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479888, + "c3": 8.32177531206657, + "c4": 6.65742024965326, + "c5": 4.993065187239944, + "c6": 3.328710124826627, + "c7": 1.6643550624133099 }, "rgb": [58, 15, 49] }, @@ -110220,23 +110220,23 @@ "year": 1738, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": -38.11917877987978, - "c2": 37.332150214724315, - "c3": -17.659315179751566, - "c4": -39.01536029499783, - "c5": 26.79613284970602, - "c6": -11.423640048957381, - "c7": 8.093670017627524 + "points": { + "c1": -53.40117839781798, + "c2": 21.880635109511424, + "c3": 26.484004315050193, + "c4": -10.25214633427246, + "c5": 11.16957733513194, + "c6": 12.288451467897453, + "c7": 14.831815383816853 }, - "vertexSeeds": { - "c1": 6.922354320090503, - "c2": 6.063750420307479, - "c3": 6.9411561456160795, - "c4": 6.521903022586093, - "c5": 6.811597532909162, - "c6": 6.953638226794212, - "c7": 6.621904450902678 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [58, 15, 49] }, @@ -110247,23 +110247,23 @@ "year": 1738, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -16.362882582273297, - "c2": 27.16314009752329, - "c3": 21.07497313426935, - "c4": -13.685421090006681, - "c5": 3.978956491699819, - "c6": -8.629349622417422, - "c7": -25.696546277016907 + "points": { + "c1": 21.507349465765024, + "c2": 24.820655474911774, + "c3": -3.3372439577061357, + "c4": -29.70770087916866, + "c5": -6.950783764815451, + "c6": -24.8516239900676, + "c7": 24.789774084770087 }, - "vertexSeeds": { - "c1": 4.725249377780884, - "c2": 4.3577564431095475, - "c3": 4.846110558966608, - "c4": 4.783628164834898, - "c5": 4.414034694170573, - "c6": 4.29493659132508, - "c7": 4.263428859126904 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -110274,23 +110274,23 @@ "year": 1738, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 18.658538185138582, - "c2": 24.419055234100213, - "c3": -6.556502756961045, - "c4": -22.5817973670416, - "c5": 33.882856697320534, - "c6": -38.05650017147339, - "c7": -13.977835776678635 + "points": { + "c1": 7.4704568002410525, + "c2": -16.933608860233253, + "c3": -39.634462864004874, + "c4": -7.201360303173672, + "c5": 21.989551086248284, + "c6": -5.3602506340453, + "c7": 18.149398983724232 }, - "vertexSeeds": { - "c1": 5.733978847728638, - "c2": 6.014409991009283, - "c3": 5.792097253955208, - "c4": 5.8765459609711135, - "c5": 5.896634010494205, - "c6": 6.253360082084075, - "c7": 6.046455715001679 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233004, + "c3": 7.605177993527498, + "c4": 6.084142394822009, + "c5": 4.563106796116502, + "c6": 3.042071197410996, + "c7": 1.521035598705489 }, "rgb": [77, 76, 132] }, @@ -110301,23 +110301,23 @@ "year": 1738, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -0.1303401511243436, - "c2": -21.895392219669915, - "c3": 7.0357325571123965, - "c4": -24.8091868134287, - "c5": 26.40412843830739, - "c6": 9.604022092556072, - "c7": 31.540269372929203 + "points": { + "c1": -15.578845045252201, + "c2": 27.502270414015392, + "c3": 23.257243088152045, + "c4": -24.797046030783893, + "c5": 33.90079073446523, + "c6": -17.098812564658193, + "c7": 22.43512603900409 }, - "vertexSeeds": { - "c1": 4.874215403122283, - "c2": 4.752124557656399, - "c3": 5.257986242250724, - "c4": 5.119841971255269, - "c5": 4.5794013807300065, - "c6": 4.873263906037342, - "c7": 5.037438625910987 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -110328,23 +110328,23 @@ "year": 1738, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -6.034737882869955, - "c2": -15.815174863160486, - "c3": -23.222588956470837, - "c4": -25.055404260203996, - "c5": -17.721581958903172, - "c6": 8.483255424553708, - "c7": 6.9855856458978955 + "points": { + "c1": -28.74292731480334, + "c2": -0.8843452093041115, + "c3": 5.771992451790364, + "c4": -14.056778741024843, + "c5": 2.3447685729781647, + "c6": 9.825997511754498, + "c7": -5.17322013606967 }, - "vertexSeeds": { - "c1": 5.983271919594685, - "c2": 5.960696461874782, - "c3": 6.079586083424827, - "c4": 6.079230958946827, - "c5": 5.778500661864252, - "c6": 5.747936756769392, - "c7": 6.299276991925224 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -110355,23 +110355,23 @@ "year": 1738, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 19.130540955230266, - "c2": 11.031400649273564, - "c3": -24.76296858951013, - "c4": 20.193739405542033, - "c5": 25.978068964426264, - "c6": -19.614678721428042, - "c7": 29.369405524786757 + "points": { + "c1": -2.916196358942507, + "c2": 5.734537179105004, + "c3": 31.438919482148833, + "c4": -20.022471604046427, + "c5": -36.514198211787864, + "c6": 15.779721723158808, + "c7": -31.131285098086664 }, - "vertexSeeds": { - "c1": 3.9059957006397954, - "c2": 4.097608518977395, - "c3": 4.100512556303738, - "c4": 3.723896578009849, - "c5": 3.9550177780389375, - "c6": 3.8705051148066967, - "c7": 3.844754514540204 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [86, 146, 138] }, @@ -110382,23 +110382,23 @@ "year": 1738, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -13.441020140217326, - "c2": -32.09831761309703, - "c3": 31.082792663735127, - "c4": 39.58470896224849, - "c5": 37.005596605798694, - "c6": -39.97275770500812, - "c7": -6.2679142336156985 + "points": { + "c1": -31.809126665903815, + "c2": -32.283861193143025, + "c3": 3.769208234836327, + "c4": 46.87611549775428, + "c5": -23.2369844025367, + "c6": 10.913194567680662, + "c7": 7.683794490372797 }, - "vertexSeeds": { - "c1": 6.820775068054711, - "c2": 7.846827257780562, - "c3": 7.269352670125363, - "c4": 7.439688178689672, - "c5": 7.608690935496385, - "c6": 6.910463729005241, - "c7": 6.779390558533289 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370314, + "c3": 9.408229311141925, + "c4": 7.526583448913548, + "c5": 5.644937586685157, + "c6": 3.7632917244567676, + "c7": 1.88164586222839 }, "rgb": [222, 0, 59] }, @@ -110409,23 +110409,23 @@ "year": 1738, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 15.517951229522396, - "c2": -11.493734427706613, - "c3": -27.29655815321738, - "c4": 30.591526372821036, - "c5": -29.811317034438847, - "c6": 3.657868592625036, - "c7": -13.440891814607703 + "points": { + "c1": 31.45662393571294, + "c2": -18.535362868046956, + "c3": 24.197033258696152, + "c4": -1.5969043960588856, + "c5": 31.38609816315237, + "c6": 10.088483476418972, + "c7": 20.97922460269551 }, - "vertexSeeds": { - "c1": 6.419727726044051, - "c2": 6.326403707626425, - "c3": 6.4535786078633075, - "c4": 6.098939146586766, - "c5": 6.485184646714706, - "c6": 7.162485882917054, - "c7": 7.510280199354899 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407305, + "c4": 7.397133610725838, + "c5": 5.5478502080443794, + "c6": 3.698566805362919, + "c7": 1.8492834026814595 }, "rgb": [77, 76, 132] }, @@ -110436,23 +110436,23 @@ "year": 1738, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 37.29292530800672, - "c2": -24.505311164301887, - "c3": -33.16022021504689, - "c4": -14.797105223675263, - "c5": -36.284210608851275, - "c6": -3.3211896096363063, - "c7": -16.001619918687897 + "points": { + "c1": -8.936517051690569, + "c2": 17.207278500304348, + "c3": -2.222039685291911, + "c4": 29.7617946368811, + "c5": 2.2269933757821576, + "c6": 25.76178882425946, + "c7": -35.30605769940032 }, - "vertexSeeds": { - "c1": 5.756997411981222, - "c2": 5.749370134954007, - "c3": 5.765423297437151, - "c4": 5.72375720209109, - "c5": 5.71928774059695, - "c6": 5.748621336716817, - "c7": 5.726310110936196 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986079, + "c3": 6.88858067498852, + "c4": 5.510864539990781, + "c5": 4.133148404993039, + "c6": 2.755432269995481, + "c7": 1.3777161349977405 }, "rgb": [77, 76, 132] }, @@ -110463,23 +110463,23 @@ "year": 1738, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -28.340471919369982, - "c2": -17.01401803284271, - "c3": -32.06956476433669, - "c4": -23.120765423868413, - "c5": 19.334824472374784, - "c6": 11.895019193650242, - "c7": 29.642568177784106 + "points": { + "c1": -15.323034795611527, + "c2": 8.013227402380757, + "c3": 19.400435563629856, + "c4": -6.153961491254499, + "c5": -12.48907245159338, + "c6": -4.074087127258622, + "c7": 8.331221860643957 }, - "vertexSeeds": { - "c1": 1.7175802362059578, - "c2": 1.7949706234576825, - "c3": 1.7353009136129112, - "c4": 1.7890336417131243, - "c5": 1.7615088237957628, - "c6": 1.816097951754396, - "c7": 1.7937935898676964 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210798, + "c3": 2.196024040684238, + "c4": 1.7568192325473888, + "c5": 1.3176144244105399, + "c6": 0.8784096162736982, + "c7": 0.4392048081368491 }, "rgb": [77, 76, 132] }, @@ -110490,23 +110490,23 @@ "year": 1739, "resistanceReported": false, "duration": 53136000, - "curveSeeds": { - "c1": 23.56944613262992, - "c2": 64.98385338006742, - "c3": -32.53174306481953, - "c4": -40.523374289347615, - "c5": 3.423681219646838, - "c6": -44.330866063692625, - "c7": 26.415758185179413 + "points": { + "c1": 57.94767818052017, + "c2": 34.80226990673117, + "c3": -37.41848704955421, + "c4": 36.05792423417722, + "c5": -44.63332624604971, + "c6": -9.420341271671695, + "c7": -4.6026063005855775 }, - "vertexSeeds": { - "c1": 6.3436015083034105, - "c2": 6.675160902086332, - "c3": 6.330683824407949, - "c4": 7.000391130551381, - "c5": 6.9463163031577215, - "c6": 6.500363074310439, - "c7": 6.744238339219309 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640783, + "c3": 8.414239482200644, + "c4": 6.731391585760522, + "c5": 5.048543689320401, + "c6": 3.365695792880261, + "c7": 1.6828478964401394 }, "rgb": [222, 0, 59] }, @@ -110517,23 +110517,23 @@ "year": 1738, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 12.076789789810718, - "c2": -14.385099271246272, - "c3": 16.32616644551959, - "c4": -21.504649067687335, - "c5": 22.4832774567765, - "c6": -2.9915524732766237, - "c7": -19.17106269032 + "points": { + "c1": 16.43711184236554, + "c2": 3.292086196955143, + "c3": 3.8873386657868636, + "c4": 7.206333507886654, + "c5": -26.344836291208388, + "c6": 7.828906601272379, + "c7": -8.747095394381347 }, - "vertexSeeds": { - "c1": 4.655578856072416, - "c2": 4.2945865856524215, - "c3": 4.811184366537722, - "c4": 5.067812116808463, - "c5": 5.098278306106895, - "c6": 4.800158279793894, - "c7": 4.545159647045467 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -110544,23 +110544,23 @@ "year": 1738, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 8.201502248289614, - "c2": 23.21052874045069, - "c3": 20.582575653606014, - "c4": -23.989003337037822, - "c5": -14.304956239893416, - "c6": 10.671801842674377, - "c7": -6.5303320853783084 + "points": { + "c1": -2.312090694463947, + "c2": 6.7490087372029635, + "c3": -12.674015189047674, + "c4": 11.967623923377886, + "c5": -10.890723101705724, + "c6": -15.294772655370458, + "c7": -22.072845347020312 }, - "vertexSeeds": { - "c1": 4.340667239620409, - "c2": 4.457483712353158, - "c3": 3.9720674656463495, - "c4": 4.482916392386477, - "c5": 4.513507445566445, - "c6": 3.9127449317065937, - "c7": 3.9444436879037936 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [222, 0, 59] }, @@ -110571,23 +110571,23 @@ "year": 1738, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 19.008864236334567, - "c2": 34.55565422711427, - "c3": 30.881648277731948, - "c4": -14.382701139888802, - "c5": 43.3872049899036, - "c6": -19.063084289875484, - "c7": -7.103280229775407 + "points": { + "c1": 18.011863479950698, + "c2": -0.105897456943147, + "c3": 5.990966784786401, + "c4": 35.29732923614592, + "c5": -42.57513690923225, + "c6": 32.4707392243775, + "c7": -10.99650256285743 }, - "vertexSeeds": { - "c1": 7.882715934486836, - "c2": 8.154886060322001, - "c3": 8.292257077043955, - "c4": 7.8155534531878486, - "c5": 7.339368047071954, - "c6": 7.681084402260251, - "c7": 7.486439165571031 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.011095700416085, + "c3": 10.009246417013403, + "c4": 8.00739713361072, + "c5": 6.005547850208036, + "c6": 4.003698566805366, + "c7": 2.001849283402683 }, "rgb": [77, 76, 132] }, @@ -110598,23 +110598,23 @@ "year": 1737, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -11.758193291290732, - "c2": -14.634499314379262, - "c3": -8.682328387629607, - "c4": 19.060883673433715, - "c5": -12.790258770805572, - "c6": 24.391593604213163, - "c7": -6.804127584944421 + "points": { + "c1": 25.23601509662032, + "c2": -6.382050238503144, + "c3": -17.185596603686694, + "c4": -8.33147335003519, + "c5": -5.698208055382306, + "c6": 19.23019238257018, + "c7": -21.269952609462205 }, - "vertexSeeds": { - "c1": 7.227763061773267, - "c2": 6.877610981029224, - "c3": 7.723082940483694, - "c4": 7.916519116888592, - "c5": 6.717254328454767, - "c6": 7.643314103102789, - "c7": 7.461223195619431 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732322, + "c3": 9.616273693943597, + "c4": 7.693018955154881, + "c5": 5.769764216366166, + "c6": 3.8465094775774404, + "c7": 1.9232547387887255 }, "rgb": [77, 76, 132] }, @@ -110625,23 +110625,23 @@ "year": 1738, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 17.234416513666503, - "c2": 2.7366657981356006, - "c3": -11.536249990263567, - "c4": -10.578685431928154, - "c5": -13.718651910932824, - "c6": -13.531930948484868, - "c7": 20.52823978164472 + "points": { + "c1": 13.890473888274158, + "c2": 6.947148965161162, + "c3": -20.495965495177813, + "c4": 14.91924942086581, + "c5": -8.73657490336841, + "c6": -16.66379071938987, + "c7": 19.028626972913877 }, - "vertexSeeds": { - "c1": 2.99344100570729, - "c2": 3.2262033180643126, - "c3": 3.1374109111021795, - "c4": 3.102479243459854, - "c5": 3.0577599669886135, - "c6": 3.228408471482791, - "c7": 3.0677887992729374 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -110652,23 +110652,23 @@ "year": 1738, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": -28.364890799020685, - "c2": 31.683235389375604, - "c3": 8.822971453578752, - "c4": 28.67004663512811, - "c5": 4.420489187734674, - "c6": -17.496452331646793, - "c7": 6.690978064581813 + "points": { + "c1": 19.264644000357656, + "c2": 27.11987846630658, + "c3": -34.04390867416248, + "c4": -20.17868754273354, + "c5": -28.364549047527408, + "c6": -9.616714940424238, + "c7": -35.151087832951376 }, - "vertexSeeds": { - "c1": 6.962903033586702, - "c2": 6.30469324339059, - "c3": 6.462349976412451, - "c4": 6.690245023564703, - "c5": 6.55133874292736, - "c6": 6.705037632243864, - "c7": 7.08669274405142 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163657, + "c3": 8.714748035136386, + "c4": 6.971798428109104, + "c5": 5.228848821081835, + "c6": 3.485899214054552, + "c7": 1.7429496070272696 }, "rgb": [86, 146, 138] }, @@ -110679,23 +110679,23 @@ "year": 1738, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -7.279921333728485, - "c2": 19.921315672677956, - "c3": -5.756020912126466, - "c4": -22.11374912215961, - "c5": -21.998064115323707, - "c6": 3.945655649139212, - "c7": 5.59110846419129 + "points": { + "c1": 14.226826049620193, + "c2": 14.729957042589, + "c3": -2.435444892090338, + "c4": -19.487055501973405, + "c5": 22.198105308624598, + "c6": 1.8047938196970392, + "c7": -18.29230542177569 }, - "vertexSeeds": { - "c1": 4.140940504334093, - "c2": 4.46665345835659, - "c3": 4.051804833072561, - "c4": 3.8729764073690447, - "c5": 4.0327264753660375, - "c6": 3.8119171655200206, - "c7": 3.9676115426183682 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -110706,23 +110706,23 @@ "year": 1738, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -11.566551268205947, - "c2": -17.113890709790365, - "c3": -13.300387150050407, - "c4": -23.19266671444312, - "c5": 14.751933765276974, - "c6": 2.6174085238049294, - "c7": -10.030781658841118 + "points": { + "c1": -2.1343655767053207, + "c2": -2.7964097689048266, + "c3": 16.6991527984853, + "c4": -26.23237714784633, + "c5": -13.82617670288753, + "c6": -12.087701792941546, + "c7": -21.929457619491284 }, - "vertexSeeds": { - "c1": 3.9080570955020795, - "c2": 4.213266670712165, - "c3": 4.441506092012733, - "c4": 4.316384215597106, - "c5": 3.8328808464509923, - "c6": 4.254021346132995, - "c7": 4.583011042287444 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -110733,23 +110733,23 @@ "year": 1738, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": -11.432214506403866, - "c2": -31.154313714502166, - "c3": -3.1945658405693322, - "c4": 39.49714929928248, - "c5": 20.92912300697978, - "c6": -17.1433273169004, - "c7": -35.92232102234087 + "points": { + "c1": -22.761720686954334, + "c2": -18.676450861496182, + "c3": -23.719439140243324, + "c4": -18.062872791133906, + "c5": -23.377471639776072, + "c6": 46.30094019432018, + "c7": -8.476658307009707 }, - "vertexSeeds": { - "c1": 3.665054534982924, - "c2": 3.600141962342062, - "c3": 3.4204049519147017, - "c4": 3.641833721606589, - "c5": 3.5570741652712807, - "c6": 3.510171915240939, - "c7": 3.4447223257324233 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722612, + "c3": 4.438280166435505, + "c4": 3.5506241331484083, + "c5": 2.662968099861301, + "c6": 1.7753120665742042, + "c7": 0.8876560332870967 }, "rgb": [238, 201, 159] }, @@ -110760,23 +110760,23 @@ "year": 1738, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -32.31688479672887, - "c2": 17.031531339265484, - "c3": -31.49849538037219, - "c4": 1.8642235940060772, - "c5": -10.652077719524662, - "c6": 20.37132016298385, - "c7": -32.92062202983507 + "points": { + "c1": 8.139547562320239, + "c2": 21.639918526703042, + "c3": 6.287515437617884, + "c4": -22.770712125691595, + "c5": 34.10714760601788, + "c6": 15.378853717091658, + "c7": 7.460247115996829 }, - "vertexSeeds": { - "c1": 3.304644879720699, - "c2": 3.293662657142418, - "c3": 3.289969360939654, - "c4": 3.3223135795602903, - "c5": 2.967502830724359, - "c6": 3.0567436928361187, - "c7": 3.132974110381478 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -110787,23 +110787,23 @@ "year": 1738, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -20.621624715677296, - "c2": 27.42163241388883, - "c3": -15.050575203155837, - "c4": -3.1066996931879487, - "c5": -21.53641801160075, - "c6": -15.749960408260321, - "c7": 30.331380271200793 + "points": { + "c1": -26.906268653983215, + "c2": 0.936406500176254, + "c3": 12.732964620446872, + "c4": 8.051464619414759, + "c5": 15.514972158903497, + "c6": -34.061026038600275, + "c7": -12.14292493709182 }, - "vertexSeeds": { - "c1": 8.463695892368854, - "c2": 8.94259593216865, - "c3": 9.083332409956938, - "c4": 8.978362006011583, - "c5": 9.104967278436874, - "c6": 9.209859373518059, - "c7": 7.979079263479742 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266298, + "c3": 11.072584373555243, + "c4": 8.858067498844196, + "c5": 6.643550624133149, + "c6": 4.429033749422093, + "c7": 2.2145168747110464 }, "rgb": [58, 15, 49] }, @@ -110814,23 +110814,23 @@ "year": 1738, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -16.496785445426838, - "c2": -0.8790278864997845, - "c3": 11.009706998353774, - "c4": -20.492378487786915, - "c5": 10.009806240156795, - "c6": -1.9797766795266192, - "c7": -22.15922019296821 + "points": { + "c1": 3.51746194861348, + "c2": -20.017212020848895, + "c3": -24.333774373824944, + "c4": -17.501076645297122, + "c5": 10.219060564344158, + "c6": 8.110276740239048, + "c7": -6.904764959116616 }, - "vertexSeeds": { - "c1": 5.662563413766621, - "c2": 5.4397373086220036, - "c3": 5.631357561563507, - "c4": 5.603812421574728, - "c5": 5.588602292124682, - "c6": 5.648718077861612, - "c7": 5.4604108951009485 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [222, 0, 59] }, @@ -110841,23 +110841,23 @@ "year": 1738, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 28.868783080354227, - "c2": -21.24865889111258, - "c3": -21.535366765109146, - "c4": -17.496679296805542, - "c5": 19.674399111809308, - "c6": -8.664383174186604, - "c7": 4.0277020032248885 + "points": { + "c1": 12.420772520290477, + "c2": 23.563324192901263, + "c3": -23.366009148524917, + "c4": 22.85819202820622, + "c5": -38.00773612802866, + "c6": 38.787239099687575, + "c7": -24.140006361353016 }, - "vertexSeeds": { - "c1": 7.502954534804164, - "c2": 7.316154004814077, - "c3": 7.494236775806673, - "c4": 7.637807510226469, - "c5": 7.315536866002396, - "c6": 6.9019177669353855, - "c7": 7.214482901891845 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.09570041608876, + "c3": 9.246417013407312, + "c4": 7.397133610725845, + "c5": 5.54785020804438, + "c6": 3.698566805362915, + "c7": 1.8492834026814653 }, "rgb": [77, 76, 132] }, @@ -110868,23 +110868,23 @@ "year": 1738, "resistanceReported": false, "duration": 37843200, - "curveSeeds": { - "c1": -37.22410860942088, - "c2": 16.966379210052274, - "c3": 30.09394062367614, - "c4": 31.40115014877636, - "c5": -41.79835232067898, - "c6": -20.47685789161878, - "c7": -26.03200659211122 + "points": { + "c1": 12.165578689751193, + "c2": -29.509658409942794, + "c3": 39.34553047783255, + "c4": -42.83699026886374, + "c5": -14.161333026487952, + "c6": -45.939076706990306, + "c7": 2.960806525398546 }, - "vertexSeeds": { - "c1": 6.790600726363808, - "c2": 5.451373659053226, - "c3": 5.414731895548565, - "c4": 5.192896125938904, - "c5": 4.693779392378534, - "c6": 4.249090144302789, - "c7": 6.271568620945715 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117893, + "c3": 8.113730929264909, + "c4": 6.4909847434119285, + "c5": 4.868238557558944, + "c6": 3.2454923717059643, + "c7": 1.6227461858529821 }, "rgb": [77, 76, 132] }, @@ -110895,23 +110895,23 @@ "year": 1738, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 15.865691988437597, - "c2": -9.021815148597689, - "c3": -32.263248862169775, - "c4": -33.775313906559, - "c5": -7.80214745057939, - "c6": -28.42817928454473, - "c7": 2.0112700772328225 + "points": { + "c1": 21.298462954749006, + "c2": 28.283085533464636, + "c3": -42.51543568320861, + "c4": -36.669886388317934, + "c5": 6.113315682332086, + "c6": 23.099431597770867, + "c7": -2.603006610252301 }, - "vertexSeeds": { - "c1": 6.538616908754421, - "c2": 6.204322900171462, - "c3": 6.23083208117284, - "c4": 6.4351961093035825, - "c5": 5.955268777134286, - "c6": 6.643934444454813, - "c7": 6.590442795424033 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158115, + "c3": 8.136846971798429, + "c4": 6.509477577438743, + "c5": 4.882108183079057, + "c6": 3.2547387887193713, + "c7": 1.6273693943596856 }, "rgb": [238, 201, 159] }, @@ -110922,23 +110922,23 @@ "year": 1738, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": -13.524679788897481, - "c2": 17.860798013687706, - "c3": 7.642589875603544, - "c4": 17.56550082363018, - "c5": -17.461858229312494, - "c6": -9.140657292349639, - "c7": -3.6774483949534975 + "points": { + "c1": 2.8129180589098084, + "c2": -17.714151325874006, + "c3": 5.504936442694216, + "c4": 3.4883764413384064, + "c5": 15.626463892439318, + "c6": 20.272470967069104, + "c7": 19.63742001519781 }, - "vertexSeeds": { - "c1": 3.2295842513356563, - "c2": 3.156897549803989, - "c3": 3.242888950745459, - "c4": 2.9826841817548226, - "c5": 3.224697392942642, - "c6": 3.250860865067414, - "c7": 3.1148148776569955 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -110949,23 +110949,23 @@ "year": 1738, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -20.93292887191551, - "c2": -16.25327696130394, - "c3": 10.258919436098097, - "c4": -20.645133686787773, - "c5": 20.86066079379286, - "c6": -9.38595050159678, - "c7": -16.544858557258607 + "points": { + "c1": -11.280014123917965, + "c2": -18.844646384353734, + "c3": 20.90707392182479, + "c4": 9.97439289832797, + "c5": -8.8936459607984, + "c6": 17.471930527543776, + "c7": 2.1232526283892668 }, - "vertexSeeds": { - "c1": 4.84016846611095, - "c2": 4.561347969010483, - "c3": 5.190634440607069, - "c4": 4.497342892704993, - "c5": 4.7461026000909845, - "c6": 5.128577974889278, - "c7": 4.3685100242603 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -110976,23 +110976,23 @@ "year": 1738, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -32.52337290651928, - "c2": -30.37380422511145, - "c3": 37.65398796910213, - "c4": 23.397633631776714, - "c5": 36.00539069275186, - "c6": -29.859356279774, - "c7": 12.475337275215828 + "points": { + "c1": -3.151777589525942, + "c2": 40.41629366171519, + "c3": -40.51610292150785, + "c4": -30.97559435831033, + "c5": -22.50642272490672, + "c6": 7.979581019644762, + "c7": 1.7835141894456612 }, - "vertexSeeds": { - "c1": 4.939151016523404, - "c2": 5.150328991733349, - "c3": 4.793399529324905, - "c4": 4.696674420228, - "c5": 5.333593651396121, - "c6": 4.64639850850626, - "c7": 5.031764190695753 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664359, + "c3": 6.703652334720293, + "c4": 5.362921867776238, + "c5": 4.022191400832181, + "c6": 2.681460933888116, + "c7": 1.3407304669440607 }, "rgb": [58, 15, 49] }, @@ -111003,23 +111003,23 @@ "year": 1738, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": -8.69920623418708, - "c2": -0.7735472590610577, - "c3": 10.055045173550585, - "c4": -5.5605389306722675, - "c5": -3.1737918398765324, - "c6": -15.097134513723693, - "c7": 2.80978994680671 + "points": { + "c1": -3.402828544694465, + "c2": 9.181392369194274, + "c3": 15.493253208754993, + "c4": -15.726282769759722, + "c5": 11.809248470534115, + "c6": 8.880086762235386, + "c7": -13.895525746075887 }, - "vertexSeeds": { - "c1": 4.70705753583579, - "c2": 4.845458810597318, - "c3": 4.674295312901608, - "c4": 4.672214281748578, - "c5": 5.119127445793948, - "c6": 4.203411908414016, - "c7": 4.248212694349417 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -111030,23 +111030,23 @@ "year": 1739, "resistanceReported": false, "duration": 62985600, - "curveSeeds": { - "c1": 65.39186915223635, - "c2": 39.07972359723456, - "c3": -3.128098948000826, - "c4": -54.53902970628897, - "c5": -49.471149342982514, - "c6": -43.41413940734447, - "c7": -63.77685724772316 + "points": { + "c1": -49.578414375402744, + "c2": -51.12357222708919, + "c3": -22.990112678397317, + "c4": 68.83154563572779, + "c5": 25.74541062340539, + "c6": 61.055312160372154, + "c7": -69.68021279062461 }, - "vertexSeeds": { - "c1": 3.729185243682512, - "c2": 3.1835121713764543, - "c3": 3.6480813606044475, - "c4": 3.736549785199626, - "c5": 3.215261684876923, - "c6": 3.597041059196256, - "c7": 3.4927353041345888 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883497, + "c3": 4.530744336569578, + "c4": 3.6245954692556643, + "c5": 2.7184466019417455, + "c6": 1.8122977346278322, + "c7": 0.9061488673139136 }, "rgb": [238, 201, 159] }, @@ -111057,23 +111057,23 @@ "year": 1738, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -10.322677683548214, - "c2": 9.385517322501393, - "c3": -0.4404826397571746, - "c4": 5.13691164391555, - "c5": 8.867028389873735, - "c6": -7.258029578835659, - "c7": -3.8445290138972297 + "points": { + "c1": -7.959465729187357, + "c2": -10.41362744417959, + "c3": -7.935902816430847, + "c4": -16.204146105104172, + "c5": 9.388553184743358, + "c6": -3.977421113330294, + "c7": 20.482263383931283 }, - "vertexSeeds": { - "c1": 4.718352685310121, - "c2": 4.920435805949221, - "c3": 5.130918623604955, - "c4": 4.304765852275588, - "c5": 4.204036467556051, - "c6": 5.192979223199668, - "c7": 4.377407330421348 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -111084,23 +111084,23 @@ "year": 1738, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -2.6397777403587526, - "c2": 34.85710614269891, - "c3": -33.67198807904622, - "c4": 28.181327420961424, - "c5": 11.851493113756028, - "c6": 30.116826357710764, - "c7": 31.167698568399132 + "points": { + "c1": -31.617465296738672, + "c2": 38.01245135671354, + "c3": 9.522877547822134, + "c4": 0.6665460776441847, + "c5": -40.26226753636681, + "c6": -18.494419444629106, + "c7": -11.879054711267901 }, - "vertexSeeds": { - "c1": 7.546134091445705, - "c2": 7.774941551835278, - "c3": 7.734250002733416, - "c4": 7.642601553919613, - "c5": 7.921822258669566, - "c6": 7.915107217752596, - "c7": 7.838438157834106 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.48404993065188, + "c3": 9.570041608876547, + "c4": 7.656033287101243, + "c5": 5.74202496532594, + "c6": 3.8280166435506064, + "c7": 1.9140083217753032 }, "rgb": [77, 76, 132] }, @@ -111111,23 +111111,23 @@ "year": 1738, "resistanceReported": false, "duration": 9244800, - "curveSeeds": { - "c1": -10.388196349703163, - "c2": -1.477162698927156, - "c3": 7.603027127148913, - "c4": 1.0632891064458825, - "c5": 18.804130030404167, - "c6": -19.428164201443906, - "c7": -16.810462881765535 + "points": { + "c1": -18.501642988481247, + "c2": -1.2531082869116936, + "c3": 2.0041054382007566, + "c4": 0.6362546319975486, + "c5": 20.74089142021772, + "c6": -19.885687640863015, + "c7": -5.426886504854139 }, - "vertexSeeds": { - "c1": 4.803825403066741, - "c2": 4.581333040659234, - "c3": 4.931733373196612, - "c4": 4.296799901424584, - "c5": 4.355188343864386, - "c6": 4.5287046682923995, - "c7": 4.500755664713562 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -111138,23 +111138,23 @@ "year": 1738, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 22.82221228527527, - "c2": -25.114350693251673, - "c3": 17.886997975441787, - "c4": -16.99239859028663, - "c5": -16.686725666984543, - "c6": -2.7479744825384707, - "c7": -10.839400803193854 + "points": { + "c1": 20.514376062752113, + "c2": -26.629188579673983, + "c3": 10.439992687584684, + "c4": 19.73605305710423, + "c5": 19.95318638146201, + "c6": 12.737918703085043, + "c7": 27.188260736043162 }, - "vertexSeeds": { - "c1": 4.939243724769594, - "c2": 5.126900783872927, - "c3": 4.75733296562283, - "c4": 5.265365150457522, - "c5": 4.869834679325868, - "c6": 4.728783282556481, - "c7": 4.955428108266535 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -111165,23 +111165,23 @@ "year": 1738, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 3.1835427163039327, - "c2": -33.19526661683947, - "c3": -34.35515150350305, - "c4": -24.13224679286933, - "c5": -41.568729724035045, - "c6": 16.37406301511438, - "c7": -9.029976188623436 + "points": { + "c1": 0.3859683146334376, + "c2": -24.195905393342574, + "c3": -33.72335365382296, + "c4": -41.20071058366109, + "c5": 41.4488268839435, + "c6": -7.112384785751971, + "c7": -32.3809305770974 }, - "vertexSeeds": { - "c1": 8.697381434979674, - "c2": 4.979700330108636, - "c3": 8.154622194079527, - "c4": 8.48423665908227, - "c5": 7.817480369121997, - "c6": 8.311481490443708, - "c7": 5.704422239246517 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099861, + "c3": 10.402219140083218, + "c4": 8.321775312066574, + "c5": 6.241331484049932, + "c6": 4.16088765603329, + "c7": 2.080443828016643 }, "rgb": [77, 76, 132] }, @@ -111192,23 +111192,23 @@ "year": 1738, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -24.360953897728262, - "c2": -18.585794939400408, - "c3": 13.180128064067176, - "c4": 36.09526105262962, - "c5": 5.933567683544894, - "c6": 24.11320542935166, - "c7": 1.6317361156378425 + "points": { + "c1": -24.105077452050487, + "c2": 31.354269413165447, + "c3": -14.240448068630066, + "c4": -36.388863034266116, + "c5": -7.809883008451507, + "c6": -34.56956937725298, + "c7": 47.75985855519183 }, - "vertexSeeds": { - "c1": 3.775816572941049, - "c2": 3.6386899800067343, - "c3": 3.401727068419902, - "c4": 3.425219933927151, - "c5": 3.528835504237993, - "c6": 3.5148460212728123, - "c7": 3.599530772444842 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963938, + "c3": 4.5769764216366156, + "c4": 3.6615811373092924, + "c5": 2.746185852981969, + "c6": 1.8307905686546462, + "c7": 0.9153952843273231 }, "rgb": [58, 15, 49] }, @@ -111219,23 +111219,23 @@ "year": 1738, "resistanceReported": false, "duration": 7516800, - "curveSeeds": { - "c1": 4.637949081283381, - "c2": 9.79470465115639, - "c3": 15.630746908254977, - "c4": 7.436276153124709, - "c5": 2.605594275612358, - "c6": 15.497724556985894, - "c7": 13.8745556907353 + "points": { + "c1": 17.14270944355136, + "c2": -7.1417971735552594, + "c3": -2.1311465149919435, + "c4": 1.8317100263850996, + "c5": 0.16014456702409774, + "c6": -13.244286032644606, + "c7": 8.796985194339292 }, - "vertexSeeds": { - "c1": 4.528293895946314, - "c2": 4.554624140451995, - "c3": 4.592845630579533, - "c4": 4.013591828164903, - "c5": 4.493769223813958, - "c6": 4.625096032671533, - "c7": 3.9242384748268915 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -111246,23 +111246,23 @@ "year": 1738, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 15.213594296889408, - "c2": -3.5229080317650165, - "c3": -4.341887021598563, - "c4": 10.5415034855118, - "c5": -6.975700532320122, - "c6": 7.083211475889332, - "c7": -4.393433113304823 + "points": { + "c1": 17.40817337064468, + "c2": -0.2428129067637954, + "c3": -20.83284070389862, + "c4": 18.271279699037674, + "c5": 20.27802726892541, + "c6": -15.593650974795244, + "c7": -30.02889489744043 }, - "vertexSeeds": { - "c1": 4.989168554882936, - "c2": 5.487639139941324, - "c3": 5.274137154004992, - "c4": 5.102514477383939, - "c5": 5.520662745355347, - "c6": 4.650372412529271, - "c7": 4.480571687266819 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119746, + "c4": 5.30744336569579, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.326860841423951 }, "rgb": [238, 201, 159] }, @@ -111273,23 +111273,23 @@ "year": 1738, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 28.40376472766856, - "c2": -13.383596740054525, - "c3": 36.18993397702168, - "c4": -24.33368003741154, - "c5": -5.873939518560533, - "c6": -3.8200339606140545, - "c7": -27.863147997893357 + "points": { + "c1": -7.064906265469993, + "c2": -37.28652167416336, + "c3": -9.343464023235931, + "c4": -29.970785514471178, + "c5": 38.48638808598548, + "c6": 0.4169545780249564, + "c7": 7.967243993447461 }, - "vertexSeeds": { - "c1": 5.686203068460232, - "c2": 5.275941248342742, - "c3": 5.440685091729181, - "c4": 5.711586663563908, - "c5": 5.594186002528052, - "c6": 5.388187450260238, - "c7": 5.481307764502302 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.26629680998614, + "c3": 6.8885806749884395, + "c4": 5.51086453999076, + "c5": 4.13314840499306, + "c6": 2.75543226999538, + "c7": 1.3777161349976799 }, "rgb": [238, 201, 159] }, @@ -111300,23 +111300,23 @@ "year": 1738, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 21.31316370317183, - "c2": 14.576146717203265, - "c3": -41.140515783832576, - "c4": 39.909828001185836, - "c5": 37.374659482090216, - "c6": -39.95836082610694, - "c7": -31.853017335352515 + "points": { + "c1": -26.914023185343172, + "c2": -6.243697592444818, + "c3": 39.56073251001333, + "c4": 23.453916675338952, + "c5": 33.51236389724948, + "c6": -31.204855944150765, + "c7": 50.62102093759507 }, - "vertexSeeds": { - "c1": 7.8781967867843345, - "c2": 7.304831577803354, - "c3": 6.10317500530559, - "c4": 9.503213448685894, - "c5": 6.574661307635784, - "c6": 9.401024885377609, - "c7": 9.36081435085569 + "offsets": { + "c1": 15.987055016181229, + "c2": 13.703190013869623, + "c3": 11.419325011558021, + "c4": 9.135460009246415, + "c5": 6.851595006934813, + "c6": 4.567730004623208, + "c7": 2.2838650023116016 }, "rgb": [77, 76, 132] }, @@ -111327,23 +111327,23 @@ "year": 1738, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": -34.049901740181404, - "c2": -27.900869514647873, - "c3": 2.1254894223482097, - "c4": -7.082729863932663, - "c5": 22.95022277141541, - "c6": 17.979638649795888, - "c7": -21.512008830296597 + "points": { + "c1": -36.3441990859008, + "c2": -25.67214672888146, + "c3": 30.798893961280854, + "c4": 31.658159166467655, + "c5": -27.902874178163607, + "c6": 43.52410926843223, + "c7": 19.480643912155074 }, - "vertexSeeds": { - "c1": 4.392760383780573, - "c2": 3.3197867122381024, - "c3": 3.6780429181419194, - "c4": 4.897090485027896, - "c5": 4.906277354287209, - "c6": 4.787719261954105, - "c7": 4.111483115178251 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911236, + "c3": 7.4202496532593605, + "c4": 5.936199722607489, + "c5": 4.452149791955618, + "c6": 2.9680998613037444, + "c7": 1.4840499306518715 }, "rgb": [77, 76, 132] }, @@ -111354,23 +111354,23 @@ "year": 1738, "resistanceReported": false, "duration": 5702400, - "curveSeeds": { - "c1": -15.28424452955549, - "c2": 13.411907279064383, - "c3": 8.832340795882804, - "c4": 6.549673053108673, - "c5": -7.527375453136818, - "c6": -6.829378954260971, - "c7": -6.1534778043184755 + "points": { + "c1": -17.065943764241783, + "c2": 7.446403194762102, + "c3": -10.709977254004542, + "c4": 7.874119339468685, + "c5": 9.782180353638822, + "c6": 13.111161758148263, + "c7": -7.134445723073005 }, - "vertexSeeds": { - "c1": 4.8199659913394095, - "c2": 5.010722890476926, - "c3": 4.429132908040521, - "c4": 4.586574867599074, - "c5": 5.136581907061981, - "c6": 4.595951050847985, - "c7": 4.281593477450536 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -111381,23 +111381,23 @@ "year": 1738, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -9.921531004397497, - "c2": 14.504416083502033, - "c3": 7.216438207798465, - "c4": 14.97750648599117, - "c5": -8.40009915767159, - "c6": 6.23399770691103, - "c7": -8.902713558523992 + "points": { + "c1": -7.037564809078429, + "c2": -3.3670061419150876, + "c3": -7.330472951311384, + "c4": -10.094619383954063, + "c5": 4.358386250652686, + "c6": 8.167327369953199, + "c7": 16.000598268521404 }, - "vertexSeeds": { - "c1": 4.771981588471871, - "c2": 4.237473421160001, - "c3": 5.205933401544607, - "c4": 4.379933882435048, - "c5": 4.945789781281523, - "c6": 4.917094065084255, - "c7": 4.728198417875961 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -111408,23 +111408,23 @@ "year": 1739, "resistanceReported": false, "duration": 39225600, - "curveSeeds": { - "c1": 50.1686295507543, - "c2": -1.9466102552469735, - "c3": -31.20562074328636, - "c4": 11.702904532658373, - "c5": 17.07149821770394, - "c6": -1.3769879428841776, - "c7": 50.456161815636314 + "points": { + "c1": 36.37401236429597, + "c2": 43.38894986633755, + "c3": -54.42387560270894, + "c4": 23.396498735437113, + "c5": -7.5480031387642725, + "c6": -43.225326750749225, + "c7": -37.304213872961284 }, - "vertexSeeds": { - "c1": 5.221868413567564, - "c2": 5.105784432563703, - "c3": 5.65261965266168, - "c4": 4.926434557059698, - "c5": 5.095144730907258, - "c6": 4.99358623972264, - "c7": 5.317825442239178 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865463, + "c3": 6.819232547387884, + "c4": 5.455386037910304, + "c5": 4.091539528432725, + "c6": 2.7276930189551583, + "c7": 1.3638465094775791 }, "rgb": [58, 15, 49] }, @@ -111435,23 +111435,23 @@ "year": 1738, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 30.06406183365454, - "c2": 9.435182905012425, - "c3": 11.435653891490006, - "c4": -14.287302052908753, - "c5": -30.835197232816974, - "c6": 15.953936664469673, - "c7": -12.809326246330397 + "points": { + "c1": 5.220190179205133, + "c2": 30.089879719882155, + "c3": 0.9198557785414252, + "c4": -18.829339199753473, + "c5": 23.029988265802295, + "c6": -39.65332740000862, + "c7": 34.00872530769262 }, - "vertexSeeds": { - "c1": 4.559279285963008, - "c2": 4.702465821944132, - "c3": 4.58845208334269, - "c4": 4.386007286108778, - "c5": 4.599492466304053, - "c6": 4.319058329248741, - "c7": 4.698355185698639 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854372, + "c3": 5.663430420711969, + "c4": 4.530744336569578, + "c5": 3.398058252427186, + "c6": 2.265372168284784, + "c7": 1.132686084142392 }, "rgb": [86, 146, 138] }, @@ -111462,23 +111462,23 @@ "year": 1738, "resistanceReported": false, "duration": 3542400, - "curveSeeds": { - "c1": -10.975940511916836, - "c2": 8.386981579450298, - "c3": -9.483579464652355, - "c4": 0.31684592682340096, - "c5": -7.122392408713063, - "c6": -0.06896186408283889, - "c7": -4.425309835848552 + "points": { + "c1": 3.310435882726763, + "c2": -4.155170474695918, + "c3": -14.747834856757553, + "c4": -14.069400922046064, + "c5": -0.741691263267743, + "c6": -9.469893364520878, + "c7": -8.652184438770233 }, - "vertexSeeds": { - "c1": 4.6011583155774085, - "c2": 4.765673037774171, - "c3": 4.510499097167332, - "c4": 4.882249981694272, - "c5": 4.934939836706677, - "c6": 4.71012225396156, - "c7": 5.077993616640618 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -111489,23 +111489,23 @@ "year": 1738, "resistanceReported": false, "duration": 3542400, - "curveSeeds": { - "c1": 11.790547437513071, - "c2": -8.215327100285567, - "c3": 6.118542028344704, - "c4": -4.831453642097907, - "c5": 7.738759153812177, - "c6": -4.534381108367377, - "c7": 11.52697396915484 + "points": { + "c1": 10.94711922353583, + "c2": 8.461360195354528, + "c3": 7.792780542505364, + "c4": -4.718216355387138, + "c5": 7.6128614500349325, + "c6": -13.307932733475113, + "c7": 4.633642759735745 }, - "vertexSeeds": { - "c1": 4.721359471651015, - "c2": 5.0007692854514545, - "c3": 4.559915965876168, - "c4": 4.800891037804095, - "c5": 4.392246105617063, - "c6": 4.932132942263848, - "c7": 4.601732006619772 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -111516,23 +111516,23 @@ "year": 1738, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -3.1323751209279145, - "c2": 18.90725091884091, - "c3": 17.13040601883644, - "c4": -18.69561041076699, - "c5": -12.000158772008994, - "c6": -18.293872836252298, - "c7": 18.3705220997946 + "points": { + "c1": -17.928755422262537, + "c2": 26.736486938044877, + "c3": 11.415530479336596, + "c4": 31.557848733468603, + "c5": 24.376071176917605, + "c6": -27.94279576704524, + "c7": -28.63428551045038 }, - "vertexSeeds": { - "c1": 2.7843228677749297, - "c2": 2.3582109989159097, - "c3": 2.396023791265887, - "c4": 2.716294276291016, - "c5": 2.4133091782513314, - "c6": 2.5070547979637374, - "c7": 2.529718974705098 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952841, + "c3": 3.421174294960703, + "c4": 2.736939435968561, + "c5": 2.052704576976423, + "c6": 1.3684697179842804, + "c7": 0.6842348589921428 }, "rgb": [222, 0, 59] }, @@ -111543,23 +111543,23 @@ "year": 1738, "resistanceReported": false, "duration": 3196800, - "curveSeeds": { - "c1": 11.06305604885994, - "c2": -1.826370716086, - "c3": -8.116090168045627, - "c4": -1.4298428774331917, - "c5": -12.056359724089381, - "c6": -2.7643048264231336, - "c7": 13.33580457572121 + "points": { + "c1": -11.714737283920082, + "c2": -8.432977909082577, + "c3": -7.731745165912853, + "c4": -0.39782396819372856, + "c5": -0.6626157479477062, + "c6": -5.87261875343828, + "c7": -8.39395760779717 }, - "vertexSeeds": { - "c1": 4.554946767196215, - "c2": 4.436395531508657, - "c3": 5.2361235266455814, - "c4": 4.766119507567248, - "c5": 5.034394065395814, - "c6": 4.388608552707335, - "c7": 4.77713068706026 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -111570,23 +111570,23 @@ "year": 1738, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 23.72998188682768, - "c2": 31.67626567703129, - "c3": 12.568870300748685, - "c4": 2.871434823717898, - "c5": 33.13540947028449, - "c6": -9.407955697390761, - "c7": 18.31730109516281 + "points": { + "c1": 26.315408312263266, + "c2": 25.951584596554447, + "c3": -18.590771698482115, + "c4": 41.006013258564074, + "c5": -33.45264373417447, + "c6": -40.64031155066737, + "c7": -38.67976427089849 }, - "vertexSeeds": { - "c1": 1.8616835415148236, - "c2": 1.9728763878816753, - "c3": 1.8909227498943133, - "c4": 1.8845202432624535, - "c5": 1.963461196383963, - "c6": 1.8864192248727052, - "c7": 1.9919271330888884 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.884882108183077, + "c3": 2.4040684234859, + "c4": 1.923254738788718, + "c5": 1.4424410540915413, + "c6": 0.961627369394359, + "c7": 0.4808136846971822 }, "rgb": [222, 0, 59] }, @@ -111597,23 +111597,23 @@ "year": 1738, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 15.89021813667732, - "c2": -38.90944601937004, - "c3": 40.09473341158365, - "c4": -12.159175344045657, - "c5": 0.2305382585672362, - "c6": -18.016570314204806, - "c7": -21.54007180313233 + "points": { + "c1": 15.488324295984242, + "c2": 29.545101719697414, + "c3": -8.440727949982723, + "c4": -30.124505170935148, + "c5": -41.21406195959645, + "c6": -31.922890211533876, + "c7": 35.63406274467738 }, - "vertexSeeds": { - "c1": 4.804923293885698, - "c2": 5.166052693881577, - "c3": 4.995910601853996, - "c4": 4.725876795923844, - "c5": 5.240900589739245, - "c6": 5.124353024990696, - "c7": 5.143811264351413 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980585, + "c3": 6.31067961165049, + "c4": 5.048543689320395, + "c5": 3.7864077669902927, + "c6": 2.5242718446601975, + "c7": 1.262135922330095 }, "rgb": [222, 0, 59] }, @@ -111624,23 +111624,23 @@ "year": 1738, "resistanceReported": false, "duration": 7516800, - "curveSeeds": { - "c1": 7.380548933799851, - "c2": 6.106883512123865, - "c3": 9.051089470406986, - "c4": 3.0776706398483284, - "c5": 15.216145350063556, - "c6": -9.060604987858103, - "c7": 0.3244057515742078 + "points": { + "c1": 7.829521222791687, + "c2": 11.226504939237234, + "c3": 0.2340547099233916, + "c4": -7.45452915394292, + "c5": -15.310211175939815, + "c6": 2.6730729224715155, + "c7": -18.182701118526456 }, - "vertexSeeds": { - "c1": 8.282257113242862, - "c2": 8.298444237901613, - "c3": 8.056025701326694, - "c4": 8.183317585159172, - "c5": 8.078768381125045, - "c6": 8.176960014197242, - "c7": 8.195364185081663 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496549, + "c3": 10.055478502080438, + "c4": 8.044382801664367, + "c5": 6.033287101248255, + "c6": 4.022191400832184, + "c7": 2.0110957004160714 }, "rgb": [58, 15, 49] }, @@ -111651,23 +111651,23 @@ "year": 1738, "resistanceReported": false, "duration": 1641600, - "curveSeeds": { - "c1": 0.25584448453811426, - "c2": -6.339641634873736, - "c3": -5.481388034004462, - "c4": 2.0385391410151374, - "c5": -10.34539960143211, - "c6": 6.655101084244112, - "c7": 0.821749147736524 + "points": { + "c1": -3.5769091244811015, + "c2": -13.70564537737613, + "c3": -8.28386745890815, + "c4": 11.812027974668766, + "c5": 12.78997105159737, + "c6": -8.714753679525256, + "c7": 12.926340556492352 }, - "vertexSeeds": { - "c1": 4.374998271104552, - "c2": 4.419084192762635, - "c3": 4.2628392472947025, - "c4": 4.1786621995913045, - "c5": 4.189849325236508, - "c6": 4.401569217339408, - "c7": 4.334595115049629 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -111678,23 +111678,23 @@ "year": 1738, "resistanceReported": false, "duration": 1209600, - "curveSeeds": { - "c1": 4.469517826425848, - "c2": -7.140397918655753, - "c3": -5.596757636340142, - "c4": 7.425905954713757, - "c5": 4.868114011831407, - "c6": 3.281942128556368, - "c7": 10.461597911832301 + "points": { + "c1": -1.9957616437578132, + "c2": 12.544627432439805, + "c3": -5.179264934054393, + "c4": -2.7277521530782405, + "c5": 3.8993952881085026, + "c6": 1.7737326751188291, + "c7": 9.050341548558388 }, - "vertexSeeds": { - "c1": 5.058678506763696, - "c2": 4.605756898263386, - "c3": 4.33267008882763, - "c4": 5.118994580478266, - "c5": 4.7272297778367225, - "c6": 5.017736788458939, - "c7": 4.662038336202634 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -111705,23 +111705,23 @@ "year": 1738, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 17.530431057675827, - "c2": 5.67113454213213, - "c3": 4.213555381595718, - "c4": -23.751115559911646, - "c5": 30.681319839965916, - "c6": -7.918869192991952, - "c7": 1.570087746989877 + "points": { + "c1": -20.85821628051813, + "c2": -23.185986873763152, + "c3": -26.81055487015778, + "c4": 21.5531984982236, + "c5": -3.00727210739619, + "c6": -30.067613938465268, + "c7": 30.99415793627294 }, - "vertexSeeds": { - "c1": 8.026052500630868, - "c2": 8.000578065831858, - "c3": 8.136794681167427, - "c4": 7.385813909621326, - "c5": 7.747497558405416, - "c6": 8.244609285858047, - "c7": 8.29225469302562 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778082, + "c3": 10.217290799815064, + "c4": 8.173832639852058, + "c5": 6.130374479889041, + "c6": 4.086916319926023, + "c7": 2.0434581599630053 }, "rgb": [222, 0, 59] }, @@ -111732,23 +111732,23 @@ "year": 1739, "resistanceReported": false, "duration": 44928000, - "curveSeeds": { - "c1": -31.746112022513028, - "c2": 25.847332724420184, - "c3": -25.85236889469853, - "c4": 3.955734952863594, - "c5": 18.455844682097734, - "c6": 36.83319484851491, - "c7": 3.8230509560274086 + "points": { + "c1": 49.460851438055286, + "c2": 40.501099457789735, + "c3": -4.536187577416456, + "c4": 32.95521340257925, + "c5": 34.12093819807383, + "c6": 39.59568153507357, + "c7": 39.18876709137051 }, - "vertexSeeds": { - "c1": 4.1804354737808485, - "c2": 4.271142292336195, - "c3": 4.719949669914475, - "c4": 4.299099122293027, - "c5": 4.008686328673356, - "c6": 4.61083436985606, - "c7": 4.928904903311202 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377253, + "c3": 5.9639389736477115, + "c4": 4.771151178918169, + "c5": 3.5783633841886267, + "c6": 2.3855755894590844, + "c7": 1.1927877947295422 }, "rgb": [222, 0, 59] }, @@ -111759,23 +111759,23 @@ "year": 1739, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -36.04200961904445, - "c2": 12.69988186577968, - "c3": 10.016378452466888, - "c4": 34.32382124867131, - "c5": 27.328880509560463, - "c6": 31.962683016048118, - "c7": 13.55076909263164 + "points": { + "c1": -42.84299054723349, + "c2": -35.876728688731205, + "c3": 24.862355974627036, + "c4": 15.571544128409442, + "c5": -7.900030401264438, + "c6": 1.8385734640457585, + "c7": 37.040506933301785 }, - "vertexSeeds": { - "c1": 6.871316174715263, - "c2": 7.249715340363501, - "c3": 7.26831498597108, - "c4": 7.261746845958527, - "c5": 7.042088243211175, - "c6": 7.363791037615067, - "c7": 7.158281506187292 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -111786,23 +111786,23 @@ "year": 1738, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -10.784787605211033, - "c2": 9.27069552793855, - "c3": -17.507997496189912, - "c4": -25.60655367967341, - "c5": -32.02372388231391, - "c6": 4.742511332652398, - "c7": -29.33594969349067 + "points": { + "c1": -11.66016627908622, + "c2": 9.51341671916169, + "c3": 28.35522256798957, + "c4": 1.930975653398363, + "c5": -14.682305305129354, + "c6": 32.00329570526202, + "c7": 16.589171529398925 }, - "vertexSeeds": { - "c1": 2.6155903524151976, - "c2": 2.3237703941779753, - "c3": 2.5991589847862295, - "c4": 2.640884390697297, - "c5": 2.010528902807897, - "c6": 1.9851238359098111, - "c7": 2.122188470024619 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.374942209893667, + "c4": 2.6999537679149324, + "c5": 2.0249653259361993, + "c6": 1.3499768839574662, + "c7": 0.6749884419787331 }, "rgb": [58, 15, 49] }, @@ -111813,23 +111813,23 @@ "year": 1738, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 4.5242428619778465, - "c2": -41.65250851387547, - "c3": 29.942419651464476, - "c4": 1.5640365326262184, - "c5": 3.161045516425034, - "c6": 16.444951160627973, - "c7": -24.04915926869706 + "points": { + "c1": 18.33598711754224, + "c2": -42.552963147742744, + "c3": -41.50347577704934, + "c4": 35.966035288242, + "c5": -4.850231393694955, + "c6": -9.033216585675945, + "c7": -7.467648075006721 }, - "vertexSeeds": { - "c1": 12.337889784524721, - "c2": 12.632002375090526, - "c3": 11.524410240067102, - "c4": 12.997242446842495, - "c5": 11.359162674463764, - "c6": 12.977686719625618, - "c7": 12.173627978391032 + "offsets": { + "c1": 22.62135922330097, + "c2": 19.38973647711511, + "c3": 16.158113730929276, + "c4": 12.926490984743417, + "c5": 9.694868238557556, + "c6": 6.463245492371697, + "c7": 3.2316227461858595 }, "rgb": [238, 201, 159] }, @@ -111840,23 +111840,23 @@ "year": 1738, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 33.20552952459517, - "c2": 28.56524707540681, - "c3": 18.129915960708644, - "c4": 22.010681064004295, - "c5": -36.49518318772374, - "c6": 42.344121968156166, - "c7": -8.22625301096648 + "points": { + "c1": 38.291901854065635, + "c2": 27.678706332693913, + "c3": -7.214754607910308, + "c4": -19.653575798046482, + "c5": -14.588956443819303, + "c6": 29.91380423039339, + "c7": -40.24655037790539 }, - "vertexSeeds": { - "c1": 8.724405195899402, - "c2": 8.281437174752192, - "c3": 8.49215614798747, - "c4": 8.920904549040088, - "c5": 8.337187143580248, - "c6": 8.18690901564002, - "c7": 8.631865954377567 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703183, + "c3": 10.748959778085993, + "c4": 8.599167822468788, + "c5": 6.449375866851599, + "c6": 4.299583911234394, + "c7": 2.149791955617188 }, "rgb": [86, 146, 138] }, @@ -111867,23 +111867,23 @@ "year": 1739, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 30.055056933975578, - "c2": -20.453164278803005, - "c3": -39.23581726201882, - "c4": -21.560298353326697, - "c5": -16.0408967848186, - "c6": 4.985417345823059, - "c7": 21.059424039708887 + "points": { + "c1": -43.4860707849078, + "c2": -40.184211639554114, + "c3": -36.104990050193244, + "c4": 7.080936723370414, + "c5": -33.429247616901336, + "c6": 1.3928647194255745, + "c7": 31.24781543830393 }, - "vertexSeeds": { - "c1": 6.015030395821312, - "c2": 5.9995409585200035, - "c3": 5.996114949073105, - "c4": 5.924089427506816, - "c5": 5.836189031376761, - "c6": 6.306424063736067, - "c7": 6.316943364182333 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -111894,23 +111894,23 @@ "year": 1739, "resistanceReported": false, "duration": 54518400, - "curveSeeds": { - "c1": 15.812184238050378, - "c2": -29.97450414013253, - "c3": 56.66866931948813, - "c4": 59.345799476490726, - "c5": -28.08434694068753, - "c6": 19.912420450287968, - "c7": 8.770188451819322 + "points": { + "c1": -20.74224857495509, + "c2": -48.79427889260134, + "c3": 5.472040101416255, + "c4": 18.603260789047937, + "c5": 52.89664065414944, + "c6": 34.56623853409111, + "c7": -8.28898560823042 }, - "vertexSeeds": { - "c1": 8.67994848941696, - "c2": 8.51214305685941, - "c3": 9.049067804255174, - "c4": 8.608250260677991, - "c5": 8.433436674204314, - "c6": 9.066479306165014, - "c7": 8.550481098376846 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.398058252427182, + "c3": 11.165048543689316, + "c4": 8.932038834951467, + "c5": 6.6990291262136, + "c6": 4.466019417475733, + "c7": 2.2330097087378666 }, "rgb": [238, 201, 159] }, @@ -111921,23 +111921,23 @@ "year": 1739, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": 21.04667421035667, - "c2": 3.2871213723113115, - "c3": 43.17887529980794, - "c4": -28.92382656285456, - "c5": -50.366209346449985, - "c6": -3.7675328838048685, - "c7": -31.918858759598912 + "points": { + "c1": -32.9440840897255, + "c2": 31.021879929762278, + "c3": -6.128435627732124, + "c4": -28.93591174772196, + "c5": 12.079437741892775, + "c6": -26.563692602940954, + "c7": 11.871488220351239 }, - "vertexSeeds": { - "c1": 8.830719907042164, - "c2": 8.505378653764458, - "c3": 8.039046316067001, - "c4": 8.094783838070493, - "c5": 7.641348581050228, - "c6": 8.208206973020728, - "c7": 8.759277237474016 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783632, + "c3": 10.795191863153022, + "c4": 8.636153490522425, + "c5": 6.477115117891816, + "c6": 4.318076745261207, + "c7": 2.159038372630609 }, "rgb": [238, 201, 159] }, @@ -111948,23 +111948,23 @@ "year": 1738, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 7.8816158978175395, - "c2": -10.68174997432762, - "c3": -17.898585491824363, - "c4": 31.536632172398015, - "c5": -9.647796813033501, - "c6": -0.22885089543550663, - "c7": -16.68647895583728 + "points": { + "c1": -26.37192143630582, + "c2": 21.84063510556841, + "c3": -23.814825058162654, + "c4": 1.171548696120965, + "c5": -22.527616550812724, + "c6": -32.973568817990575, + "c7": 36.37249167999505 }, - "vertexSeeds": { - "c1": 4.899134542258796, - "c2": 5.474327191636337, - "c3": 4.703323398435689, - "c4": 4.641359943794326, - "c5": 5.308790029971097, - "c6": 5.484092911863587, - "c7": 5.044479188197584 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463242, + "c3": 6.588072122052706, + "c4": 5.270457697642161, + "c5": 3.952843273231626, + "c6": 2.6352288488210807, + "c7": 1.3176144244105403 }, "rgb": [77, 76, 132] }, @@ -111975,23 +111975,23 @@ "year": 1739, "resistanceReported": true, "duration": 31622400, - "curveSeeds": { - "c1": -5.535422542551402, - "c2": 14.297137086298527, - "c3": 29.873256338422124, - "c4": 40.956819502406475, - "c5": 3.027062340784923, - "c6": 39.94282624046127, - "c7": 34.991696592480835 + "points": { + "c1": -37.82390457061314, + "c2": 27.418401994553918, + "c3": -17.12951308752293, + "c4": -3.0613622076471074, + "c5": -5.261451926447293, + "c6": -28.75867706506858, + "c7": 34.48977750818037 }, - "vertexSeeds": { - "c1": 8.512257486446284, - "c2": 5.9887403311237595, - "c3": 7.434843542537717, - "c4": 5.240369220271038, - "c5": 4.811869891649165, - "c6": 8.71205912346482, - "c7": 4.232564393396129 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.55802126675913, + "c4": 9.246417013407301, + "c5": 6.934812760055479, + "c6": 4.623208506703651, + "c7": 2.3116042533518253 }, "rgb": [222, 0, 59] }, @@ -112002,23 +112002,23 @@ "year": 1738, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 14.466778344918907, - "c2": -24.77031953325212, - "c3": 34.80542358474599, - "c4": -6.09362031925798, - "c5": -1.5219334171767542, - "c6": -20.431366062758606, - "c7": -39.166241799073106 + "points": { + "c1": 16.97712526783419, + "c2": 24.18133794821312, + "c3": -41.6377600574045, + "c4": -0.15527649205044725, + "c5": -41.88844954831627, + "c6": -14.578654786128478, + "c7": 18.6537935030208 }, - "vertexSeeds": { - "c1": 1.9475194974044248, - "c2": 2.112107927583523, - "c3": 2.057814250814517, - "c4": 2.093976073469777, - "c5": 2.0611963885610525, - "c6": 2.0857435261027293, - "c7": 2.0016230672635107 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.19001386962552, + "c3": 2.6583448913545995, + "c4": 2.126675913083679, + "c5": 1.5950069348127582, + "c6": 1.0633379565418377, + "c7": 0.5316689782709173 }, "rgb": [238, 201, 159] }, @@ -112029,23 +112029,23 @@ "year": 1738, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 5.851848820927181, - "c2": -22.99834534555686, - "c3": 3.687040449917056, - "c4": -28.026431070967348, - "c5": -6.479876779504629, - "c6": 33.540409691936496, - "c7": 37.04728554799822 + "points": { + "c1": 0.2180588309642033, + "c2": -24.297094944275393, + "c3": 35.03868441208201, + "c4": -36.059931756445536, + "c5": -7.1718521299170845, + "c6": 1.4619569359697167, + "c7": 3.288853975994904 }, - "vertexSeeds": { - "c1": 5.679821855737937, - "c2": 5.764955483775244, - "c3": 5.7615076071183555, - "c4": 5.869552312736797, - "c5": 5.794731375336918, - "c6": 5.7985944548582085, - "c7": 5.694780586692315 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [222, 0, 59] }, @@ -112056,23 +112056,23 @@ "year": 1738, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -27.31494845042694, - "c2": -41.01749212109023, - "c3": -14.748957500183689, - "c4": -6.006987450327493, - "c5": -16.822239357650403, - "c6": 22.232536928168713, - "c7": -27.964254933499745 + "points": { + "c1": -37.37487403312801, + "c2": 40.98787320885888, + "c3": -1.4701093781497576, + "c4": -31.526596351691175, + "c5": -21.605310911879876, + "c6": -12.582993028301473, + "c7": -25.340143639314142 }, - "vertexSeeds": { - "c1": 9.269695164457946, - "c2": 10.094379764626781, - "c3": 8.940290266680575, - "c4": 9.464017512420828, - "c5": 8.300492640763961, - "c6": 10.027898384846166, - "c7": 9.605188895243593 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599174, + "c3": 12.413314840499307, + "c4": 9.930651872399443, + "c5": 7.447988904299587, + "c6": 4.965325936199721, + "c7": 2.4826629680998566 }, "rgb": [77, 76, 132] }, @@ -112083,23 +112083,23 @@ "year": 1739, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": 14.759062138520179, - "c2": -20.524881981821586, - "c3": 6.046763134695851, - "c4": -10.475914972227727, - "c5": -18.310876982228947, - "c6": -1.191071589450189, - "c7": -46.818232819032815 + "points": { + "c1": 0.7709380747256276, + "c2": -20.335169761403137, + "c3": -27.702623680064242, + "c4": 9.798152376359866, + "c5": 28.793108068780782, + "c6": 8.588819543971425, + "c7": -27.97051527737196 }, - "vertexSeeds": { - "c1": 12.710275297636468, - "c2": 12.65610375882681, - "c3": 7.980545571345619, - "c4": 10.452093127932855, - "c5": 10.353726041187162, - "c6": 12.11549438183646, - "c7": 11.919493224196057 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155342, + "c3": 16.181229773462782, + "c4": 12.944983818770227, + "c5": 9.70873786407767, + "c6": 6.472491909385111, + "c7": 3.2362459546925573 }, "rgb": [77, 76, 132] }, @@ -112110,23 +112110,23 @@ "year": 1738, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -7.529397815919705, - "c2": 20.647996468705465, - "c3": -0.14053046149588155, - "c4": 19.647419293140217, - "c5": -8.80556928372786, - "c6": 7.439930449918478, - "c7": -10.557912951642376 + "points": { + "c1": -23.644491582294158, + "c2": 7.474171854222199, + "c3": 24.8012992046136, + "c4": -18.022233074652277, + "c5": 8.062199625198225, + "c6": 7.86358116961086, + "c7": 3.6762667466103025 }, - "vertexSeeds": { - "c1": 1.4665150783308816, - "c2": 1.433738602533577, - "c3": 1.5105834928887398, - "c4": 1.3689049996027118, - "c5": 1.4109792462305855, - "c6": 1.5396086967013145, - "c7": 1.3507538616807366 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.2746185852981977, + "c3": 1.895515487748496, + "c4": 1.5164123901987976, + "c5": 1.1373092926490989, + "c6": 0.7582061950994002, + "c7": 0.37910309754969856 }, "rgb": [238, 201, 159] }, @@ -112137,23 +112137,23 @@ "year": 1738, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -3.473826256844127, - "c2": -13.385734649865785, - "c3": -2.512066488904992, - "c4": -25.88378838954221, - "c5": -22.94211603264072, - "c6": -39.10257717808469, - "c7": 5.887516686534013 + "points": { + "c1": 20.502474041924486, + "c2": -10.867161800740341, + "c3": -29.49026844569765, + "c4": -27.744614466101854, + "c5": 20.562426225133898, + "c6": -2.6590994588039294, + "c7": -7.710616523364493 }, - "vertexSeeds": { - "c1": 9.957969208993015, - "c2": 10.426842288401241, - "c3": 9.81856009370791, - "c4": 9.905748367056052, - "c5": 9.38067936170861, - "c6": 9.794405021276704, - "c7": 10.104613685355455 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679617, + "c3": 12.459546925566354, + "c4": 9.96763754045309, + "c5": 7.475728155339809, + "c6": 4.983818770226527, + "c7": 2.4919093851132637 }, "rgb": [222, 0, 59] }, @@ -112164,23 +112164,23 @@ "year": 1738, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 7.36438198696332, - "c2": 12.283340574266422, - "c3": 11.917007845085532, - "c4": 18.074343526759197, - "c5": 14.441492446675458, - "c6": -19.785831578366476, - "c7": 0.2723965922111624 + "points": { + "c1": -8.2304312775995, + "c2": 6.5052197207833835, + "c3": -5.248871656598173, + "c4": -24.111369556485236, + "c5": -8.792005863031076, + "c6": 20.8922752083494, + "c7": 19.551680694352275 }, - "vertexSeeds": { - "c1": 5.265743940769526, - "c2": 4.692273189279658, - "c3": 5.06196888487887, - "c4": 4.747891596336707, - "c5": 5.156651670988797, - "c6": 5.275680901459686, - "c7": 5.09730422924505 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.5728155339805845, + "c3": 6.31067961165049, + "c4": 5.048543689320387, + "c5": 3.7864077669902922, + "c6": 2.524271844660191, + "c7": 1.2621359223300954 }, "rgb": [58, 15, 49] }, @@ -112191,23 +112191,23 @@ "year": 1738, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 10.347647609451272, - "c2": 6.505667043336594, - "c3": -5.857227080937346, - "c4": -0.30279546729064677, - "c5": -7.592684428237014, - "c6": 7.88987142235068, - "c7": -21.939201241336242 + "points": { + "c1": 0.9187045494074333, + "c2": 15.044268125866552, + "c3": -6.8320112844737935, + "c4": -15.709501985177548, + "c5": -8.747409284370324, + "c6": -16.87901009650085, + "c7": -1.5900133652526875 }, - "vertexSeeds": { - "c1": 2.0762474203738384, - "c2": 2.399660841850096, - "c3": 2.4547769676207025, - "c4": 2.3652300251765412, - "c5": 2.0520586276262844, - "c6": 2.2139767825033836, - "c7": 2.279464621354612 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484034, + "c3": 2.958853444290338, + "c4": 2.367082755432269, + "c5": 1.7753120665742033, + "c6": 1.1835413777161345, + "c7": 0.591770688858066 }, "rgb": [238, 201, 159] }, @@ -112218,23 +112218,23 @@ "year": 1739, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 7.029760539966993, - "c2": 27.379580010006194, - "c3": -32.25665549385468, - "c4": 30.15782830576856, - "c5": 26.861199623634448, - "c6": -25.147358033879964, - "c7": -22.28735444751294 + "points": { + "c1": -21.487209400321365, + "c2": -29.496178380964388, + "c3": -25.81372367008983, + "c4": -3.82931518683629, + "c5": -26.972966119796546, + "c6": 27.668637651159628, + "c7": -21.56053055557574 }, - "vertexSeeds": { - "c1": 3.020189767194053, - "c2": 3.1745396406191753, - "c3": 3.090708112446944, - "c4": 3.1130101691476875, - "c5": 3.1967125471044873, - "c6": 3.1521792970605564, - "c7": 3.0345699280700127 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -112245,23 +112245,23 @@ "year": 1739, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 0.6942940643558515, - "c2": -8.152005422676968, - "c3": -18.481427783525465, - "c4": 21.38926448889208, - "c5": -24.3363165288081, - "c6": -29.826433222647026, - "c7": 29.27032787642161 + "points": { + "c1": -36.56951864909642, + "c2": 12.99410227554472, + "c3": -8.47759103967001, + "c4": -19.27937884835835, + "c5": -14.562560462491366, + "c6": 20.23915639512, + "c7": 24.928932479265576 }, - "vertexSeeds": { - "c1": 5.034280428096931, - "c2": 4.724892014649029, - "c3": 5.239145656288389, - "c4": 5.121382050758475, - "c5": 4.901381190624115, - "c6": 4.86217041930665, - "c7": 4.259256765423201 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -112272,23 +112272,23 @@ "year": 1739, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -19.75660850701032, - "c2": 24.163544508875958, - "c3": 2.1809110120143984, - "c4": -2.389306155880263, - "c5": 29.990079996951593, - "c6": 8.307315705296077, - "c7": -25.234749943644616 + "points": { + "c1": -38.477603561669994, + "c2": -3.977976636351123, + "c3": -14.21716435821888, + "c4": -37.140560088675684, + "c5": 17.13357229305803, + "c6": -38.424861686128395, + "c7": 32.550515988008414 }, - "vertexSeeds": { - "c1": 5.108655753611794, - "c2": 5.341785157530051, - "c3": 5.188979078898835, - "c4": 5.228394177195916, - "c5": 4.989955935885071, - "c6": 5.456703095391196, - "c7": 4.984903408605389 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342573, + "c3": 6.518723994452151, + "c4": 5.214979195561715, + "c5": 3.9112343966712944, + "c6": 2.6074895977808574, + "c7": 1.3037447988904287 }, "rgb": [86, 146, 138] }, @@ -112299,23 +112299,23 @@ "year": 1739, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -14.93777894416915, - "c2": -4.614843827253296, - "c3": 35.06372083728185, - "c4": 37.97689565585439, - "c5": 8.201502951000414, - "c6": 10.732583841735135, - "c7": 31.63946949638685 + "points": { + "c1": 14.874350099192093, + "c2": -25.538985646050165, + "c3": 14.271539744445711, + "c4": -27.045777205850115, + "c5": 17.071992285450932, + "c6": 35.99250024815862, + "c7": -18.46528000520299 }, - "vertexSeeds": { - "c1": 5.069431773647205, - "c2": 5.135998965985403, - "c3": 5.121971563285677, - "c4": 4.69535565833693, - "c5": 4.762056724138894, - "c6": 4.7310441533519665, - "c7": 4.288182608317664 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -112326,23 +112326,23 @@ "year": 1739, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 22.896906435251587, - "c2": -14.547776893317483, - "c3": 33.810566468356456, - "c4": -23.184842644853294, - "c5": -7.806332262721831, - "c6": 32.54264526286917, - "c7": -9.446833984395518 + "points": { + "c1": -22.102803486420367, + "c2": -0.4488598092438636, + "c3": -30.94179425495205, + "c4": -24.02286177083834, + "c5": -19.90257355872074, + "c6": 20.522220190260583, + "c7": 7.128661465430007 }, - "vertexSeeds": { - "c1": 4.5592588040614075, - "c2": 4.611772242468185, - "c3": 4.428088341741896, - "c4": 4.877702503493404, - "c5": 4.934608107726726, - "c6": 4.348721186848488, - "c7": 4.786634397945051 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -112353,23 +112353,23 @@ "year": 1739, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": -47.145699988521066, - "c2": 42.40842786564125, - "c3": 12.470484791968474, - "c4": 30.05786336297252, - "c5": 41.2141472711665, - "c6": 9.06881610421484, - "c7": -7.945009571775316 + "points": { + "c1": 22.89293611768732, + "c2": -50.01742763859839, + "c3": -29.82937872780233, + "c4": -8.942689074411284, + "c5": -44.9179526761877, + "c6": 1.5506174176853378, + "c7": -46.372528615685894 }, - "vertexSeeds": { - "c1": 6.851133892069283, - "c2": 6.871937319945116, - "c3": 7.37048613872142, - "c4": 7.374021392639756, - "c5": 6.874530191833428, - "c6": 6.997306432618941, - "c7": 6.9826030041896825 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -112380,23 +112380,23 @@ "year": 1739, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 21.813720798511852, - "c2": -25.967774628753148, - "c3": 13.350694672749022, - "c4": 0.508824021535375, - "c5": -29.002224594913002, - "c6": -30.415941999071407, - "c7": -16.588272384185505 + "points": { + "c1": 29.01309594018921, + "c2": 7.536234333663394, + "c3": 37.53838059154638, + "c4": -14.538011041658837, + "c5": 9.08304992657525, + "c6": -24.320898325267784, + "c7": 37.457346169194686 }, - "vertexSeeds": { - "c1": 8.535186647944094, - "c2": 8.948276720995715, - "c3": 10.025270046508075, - "c4": 8.624186345921547, - "c5": 9.943717664949729, - "c6": 9.602735164506342, - "c7": 9.141600836079414 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076287, + "c3": 12.112806287563576, + "c4": 9.690245030050855, + "c5": 7.267683772538144, + "c6": 4.845122515025432, + "c7": 2.4225612575127204 }, "rgb": [86, 146, 138] }, @@ -112407,23 +112407,23 @@ "year": 1739, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": -20.511610149859848, - "c2": -20.39252115618498, - "c3": -48.17718193829296, - "c4": -30.323925890379684, - "c5": 3.6748618530660337, - "c6": 4.9031161214582255, - "c7": -25.36448303545929 + "points": { + "c1": 39.00145110426269, + "c2": -30.9813708276418, + "c3": 7.415630665347059, + "c4": 17.03984501481228, + "c5": 48.479840743468365, + "c6": -31.886868747197134, + "c7": -0.02072742121428206 }, - "vertexSeeds": { - "c1": 7.948572977850995, - "c2": 8.639203081792111, - "c3": 8.801046066650304, - "c4": 9.038357274727867, - "c5": 7.758558536629604, - "c6": 9.087438472939327, - "c7": 8.71467434534063 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065187, + "c3": 10.957004160887653, + "c4": 8.765603328710121, + "c5": 6.574202496532588, + "c6": 4.382801664355056, + "c7": 2.1914008321775236 }, "rgb": [238, 201, 159] }, @@ -112434,23 +112434,23 @@ "year": 1739, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 39.96479629867904, - "c2": 0.7520715261689617, - "c3": 5.14937041639751, - "c4": 1.0467096128238822, - "c5": -37.480162002551495, - "c6": 36.722964088321824, - "c7": -29.941793112999797 + "points": { + "c1": -21.406451469483958, + "c2": -21.506785897268227, + "c3": -26.81558116807115, + "c4": -17.502716340515217, + "c5": -37.7202998119538, + "c6": -27.44640313066395, + "c7": -4.355375247191361 }, - "vertexSeeds": { - "c1": 4.948956064837943, - "c2": 4.824909850731826, - "c3": 5.0618461518455815, - "c4": 4.723438257785712, - "c5": 4.754410052968745, - "c6": 5.107187944096761, - "c7": 5.187409658905496 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900134, + "c3": 6.264447526583454, + "c4": 5.011558021266758, + "c5": 3.758668515950071, + "c6": 2.505779010633383, + "c7": 1.2528895053166875 }, "rgb": [238, 201, 159] }, @@ -112461,23 +112461,23 @@ "year": 1739, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -23.162394238790263, - "c2": -20.46011474017305, - "c3": -0.32398406338157315, - "c4": 25.058260627444113, - "c5": -2.7993163601619813, - "c6": 14.092547407240147, - "c7": 15.700099584893742 + "points": { + "c1": 37.00228128643079, + "c2": -1.203144645502313, + "c3": -1.407911259796066, + "c4": 17.000822671361178, + "c5": -10.448257040157067, + "c6": 33.30627624085285, + "c7": 38.52355214996274 }, - "vertexSeeds": { - "c1": 6.129261266263188, - "c2": 5.668989471886748, - "c3": 6.143457292831373, - "c4": 5.816218084734851, - "c5": 5.567465526559618, - "c6": 5.899370605271808, - "c7": 5.702811893749569 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -112488,23 +112488,23 @@ "year": 1739, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -24.007648416734916, - "c2": 25.65600086055268, - "c3": 0.8957343024349385, - "c4": -8.385766540985092, - "c5": -5.387780223460915, - "c6": 27.21853599418572, - "c7": -33.923009343499004 + "points": { + "c1": -37.01700980979603, + "c2": -6.3235420576154056, + "c3": 26.77187884781837, + "c4": 8.244209935548334, + "c5": -33.899363073645894, + "c6": -10.590038438023036, + "c7": -13.989859736622392 }, - "vertexSeeds": { - "c1": 5.594212239549477, - "c2": 6.093366469744117, - "c3": 6.129882016904618, - "c4": 5.669329347065715, - "c5": 6.337766101763736, - "c6": 5.837719325290457, - "c7": 5.684006563200154 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -112515,23 +112515,23 @@ "year": 1739, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": -31.9824090374658, - "c2": 22.225755790957805, - "c3": -47.246915343204876, - "c4": 43.50726521661788, - "c5": 32.56128957250283, - "c6": 45.62095446386839, - "c7": -5.303059298844026 + "points": { + "c1": -17.767808820373823, + "c2": -48.5241078701618, + "c3": -43.561287256574566, + "c4": -43.75181607785559, + "c5": -33.840009825576225, + "c6": 19.556511482106472, + "c7": -22.996132102988014 }, - "vertexSeeds": { - "c1": 3.583986425128691, - "c2": 3.547724229111294, - "c3": 3.568807207811047, - "c4": 3.5802424720662454, - "c5": 3.58130398062674, - "c6": 3.357543593780137, - "c7": 3.8019509193986423 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124824, + "c3": 4.66944059177069, + "c4": 3.7355524734165493, + "c5": 2.801664355062415, + "c6": 1.8677762367082746, + "c7": 0.9338881183541341 }, "rgb": [77, 76, 132] }, @@ -112542,23 +112542,23 @@ "year": 1739, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -8.587561919240596, - "c2": -16.995557342219655, - "c3": 18.541040525371315, - "c4": -9.718904493335831, - "c5": -10.752812849563266, - "c6": 10.238557469467395, - "c7": 34.020591927322 + "points": { + "c1": -13.545167692700225, + "c2": 2.4060873296336, + "c3": 12.351921766957744, + "c4": 31.415750801874452, + "c5": -27.64302670919475, + "c6": 15.687698406496224, + "c7": -32.05949241818328 }, - "vertexSeeds": { - "c1": 4.473343588716182, - "c2": 4.586344379041176, - "c3": 4.471365063859629, - "c4": 4.434895275718727, - "c5": 4.528252236633304, - "c6": 4.504233683634738, - "c7": 4.3716404770480946 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728154, + "c3": 5.016181229773463, + "c4": 4.01294498381877, + "c5": 3.009708737864077, + "c6": 2.006472491909385, + "c7": 1.0032362459546924 }, "rgb": [77, 76, 132] }, @@ -112569,23 +112569,23 @@ "year": 1739, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 19.992735268004395, - "c2": -42.01246603730463, - "c3": 23.988782257870675, - "c4": 11.602935425530553, - "c5": -21.323639072402017, - "c6": 5.3598758136805955, - "c7": 9.309225048121448 + "points": { + "c1": 18.12726384906925, + "c2": -17.839294777911302, + "c3": -23.00828251582837, + "c4": -38.72916565834901, + "c5": 29.377860819823447, + "c6": 44.796879004211924, + "c7": -40.991020797754096 }, - "vertexSeeds": { - "c1": 7.1534818415578965, - "c2": 6.766125218586618, - "c3": 7.084953620612814, - "c4": 7.108841513241904, - "c5": 7.699040975504871, - "c6": 7.401738253337275, - "c7": 7.435152630749216 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128986, + "c3": 9.269533055940819, + "c4": 7.415626444752653, + "c5": 5.561719833564486, + "c6": 3.7078132223763194, + "c7": 1.8539066111881528 }, "rgb": [86, 146, 138] }, @@ -112596,23 +112596,23 @@ "year": 1739, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 8.879097046924954, - "c2": -38.980122943584476, - "c3": -4.991959230875331, - "c4": -17.069089232380996, - "c5": -44.90711530503782, - "c6": 31.172203024775477, - "c7": -47.12855922523535 + "points": { + "c1": -11.569251443513423, + "c2": -19.32043739991859, + "c3": -31.07640206671229, + "c4": -4.742111330508955, + "c5": -12.87080453680774, + "c6": 17.511005122072454, + "c7": 26.013845648678505 }, - "vertexSeeds": { - "c1": 8.227869068104823, - "c2": 6.470487968051674, - "c3": 7.586181451963448, - "c4": 7.4854235911673435, - "c5": 7.430035720250418, - "c6": 6.33991881071716, - "c7": 8.393201859537163 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.011095700416085, + "c3": 10.009246417013408, + "c4": 8.007397133610723, + "c5": 6.005547850208045, + "c6": 4.003698566805362, + "c7": 2.001849283402678 }, "rgb": [77, 76, 132] }, @@ -112623,23 +112623,23 @@ "year": 1739, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 25.145688445892716, - "c2": -30.47256110112755, - "c3": -31.260897037940516, - "c4": 0.7722629283613429, - "c5": 19.412940631533743, - "c6": 26.91609662837522, - "c7": -8.153871887622689 + "points": { + "c1": 20.952068515616894, + "c2": 32.46847318783154, + "c3": -30.48136127218195, + "c4": 33.74744220392386, + "c5": 22.203454547898623, + "c6": -25.136857412784323, + "c7": 25.602395684710444 }, - "vertexSeeds": { - "c1": 4.4517576464234265, - "c2": 4.103961885916498, - "c3": 4.126174456796667, - "c4": 4.637738758833107, - "c5": 5.197281683592709, - "c6": 4.96444119451443, - "c7": 4.897171251871757 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -112650,23 +112650,23 @@ "year": 1739, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 28.52243651095239, - "c2": -5.9227255369616, - "c3": -9.871929563619812, - "c4": 11.841824489315655, - "c5": 8.325392203427015, - "c6": -30.442890792148727, - "c7": -4.456200373675319 + "points": { + "c1": 23.791377827001348, + "c2": 24.170852588782772, + "c3": -3.336747717478879, + "c4": -4.303960157610366, + "c5": 6.331595522581964, + "c6": -16.31649535934018, + "c7": -27.721693576482277 }, - "vertexSeeds": { - "c1": 6.1207400279834925, - "c2": 5.631261967524298, - "c3": 6.364793539694049, - "c4": 5.8223971883132855, - "c5": 6.296346221237565, - "c6": 6.098998207118731, - "c7": 6.0866416838390185 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -112677,23 +112677,23 @@ "year": 1739, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -17.115383115549285, - "c2": 30.01787929033199, - "c3": -19.744528635380437, - "c4": -6.331091638506095, - "c5": -3.4656579114207062, - "c6": -17.232965511613845, - "c7": 16.614649052293686 + "points": { + "c1": 3.304854608646103, + "c2": 24.615900807973887, + "c3": -14.08016821929695, + "c4": 5.741381225868054, + "c5": 29.30862881962632, + "c6": -26.073479902771503, + "c7": -37.342456091773 }, - "vertexSeeds": { - "c1": 2.5187071421335636, - "c2": 2.3604686371707504, - "c3": 2.3001133628211208, - "c4": 2.566468832988411, - "c5": 2.388429139836082, - "c6": 2.313262504332114, - "c7": 2.33250355798743 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506215, + "c3": 3.19001386962552, + "c4": 2.552011095700416, + "c5": 1.9140083217753119, + "c6": 1.276005547850208, + "c7": 0.638002773925104 }, "rgb": [238, 201, 159] }, @@ -112704,23 +112704,23 @@ "year": 1739, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 28.969788793758653, - "c2": -28.230612558543612, - "c3": -0.6905851398334306, - "c4": 30.960594276919544, - "c5": -23.455329084370177, - "c6": 7.393665879907026, - "c7": -21.646064854408095 + "points": { + "c1": -26.138528475464902, + "c2": 18.619076678418544, + "c3": 17.47973484256444, + "c4": 28.47815464629695, + "c5": -33.69511048892523, + "c6": 32.817754210632685, + "c7": 21.595255090709145 }, - "vertexSeeds": { - "c1": 7.220198146423184, - "c2": 7.223934673639386, - "c3": 7.1851476486593215, - "c4": 7.033296289311959, - "c5": 7.079205972377895, - "c6": 7.431862523746713, - "c7": 7.050771212186692 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -112731,23 +112731,23 @@ "year": 1739, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 2.940285200334202, - "c2": 10.17360649603178, - "c3": 19.95317358670863, - "c4": 27.798490475437873, - "c5": -25.250828917552745, - "c6": 6.807258331920714, - "c7": -25.499129657556942 + "points": { + "c1": 19.936939606132277, + "c2": -11.279953502827585, + "c3": -8.805902092988642, + "c4": 19.187451165997253, + "c5": 7.994186622997994, + "c6": 19.04020038145385, + "c7": -6.113762628445198 }, - "vertexSeeds": { - "c1": 6.282341706047163, - "c2": 6.375882795515321, - "c3": 6.055114224105352, - "c4": 5.79144040748007, - "c5": 6.003645780809026, - "c6": 5.72819101449034, - "c7": 6.050994755318325 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -112758,23 +112758,23 @@ "year": 1739, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 34.69483595030454, - "c2": -29.55413204223818, - "c3": -1.2411180665789274, - "c4": -33.19716904748723, - "c5": -37.16139760900392, - "c6": -35.057278952824745, - "c7": 35.54374168879066 + "points": { + "c1": -39.87372768654518, + "c2": -10.655177527411333, + "c3": -15.064692517959223, + "c4": 18.862917212248767, + "c5": 18.400766090429407, + "c6": -14.300198902986597, + "c7": -37.697351201942624 }, - "vertexSeeds": { - "c1": 8.948523411921833, - "c2": 8.670480274742944, - "c3": 9.532234672280921, - "c4": 8.578949818667393, - "c5": 8.831475923482989, - "c6": 9.603522607295174, - "c7": 9.662496836087357 + "offsets": { + "c1": 16.472491909385116, + "c2": 14.11927877947295, + "c3": 11.7660656495608, + "c4": 9.412852519648634, + "c5": 7.059639389736482, + "c6": 4.706426259824317, + "c7": 2.353213129912152 }, "rgb": [58, 15, 49] }, @@ -112785,23 +112785,23 @@ "year": 1739, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": -25.475093476370038, - "c2": 5.128868697164393, - "c3": 1.7845154556244154, - "c4": -24.310491959300315, - "c5": 16.819995951476486, - "c6": 29.84483988213097, - "c7": 38.441187944334644 + "points": { + "c1": 4.771835002916575, + "c2": -42.02826712038207, + "c3": -50.12026919419756, + "c4": 40.306295133189764, + "c5": 17.56323567225479, + "c6": -45.25002419663241, + "c7": -25.7523336862517 }, - "vertexSeeds": { - "c1": 5.868059039985255, - "c2": 5.679470952777587, - "c3": 5.954995544545449, - "c4": 6.108061277386766, - "c5": 5.51753587383087, - "c6": 5.658571679029682, - "c7": 5.69609424440119 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830785, + "c3": 7.374017568192326, + "c4": 5.899214054553856, + "c5": 4.424410540915399, + "c6": 2.949607027276928, + "c7": 1.4748035136384579 }, "rgb": [222, 0, 59] }, @@ -112812,23 +112812,23 @@ "year": 1739, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 26.23110536672438, - "c2": 14.070996048483053, - "c3": -26.47270168448712, - "c4": -24.993871306198745, - "c5": -15.187775564146364, - "c6": 25.314739055673286, - "c7": 25.03729244708147 + "points": { + "c1": 32.429003286640494, + "c2": 8.266524301049401, + "c3": 28.065345350575726, + "c4": -38.97136159764675, + "c5": -36.53307156317732, + "c6": 15.302176011449276, + "c7": 18.82707620622164 }, - "vertexSeeds": { - "c1": 4.951374761804559, - "c2": 4.543834583460109, - "c3": 5.06021604735961, - "c4": 5.138174998847296, - "c5": 5.032850395897781, - "c6": 4.318374105757884, - "c7": 5.0367807082928575 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -112839,23 +112839,23 @@ "year": 1739, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -36.53452690077985, - "c2": -41.94366912317936, - "c3": 40.390034601177696, - "c4": -8.400434800413848, - "c5": -19.55104290753873, - "c6": 36.879806689351106, - "c7": 6.710535278101098 + "points": { + "c1": -33.74460644582083, + "c2": 30.866417853107244, + "c3": 29.240547657995045, + "c4": 28.11766478360301, + "c5": 32.705315121508626, + "c6": -20.605783012671235, + "c7": 22.185503840660026 }, - "vertexSeeds": { - "c1": 0.679904549749722, - "c2": 0.6595254956661537, - "c3": 0.6273556331532826, - "c4": 0.6741624886903322, - "c5": 0.6575932237122188, - "c6": 0.6096048311457192, - "c7": 0.6289169621028328 + "offsets": { + "c1": 1.197411003236246, + "c2": 1.0263522884882104, + "c3": 0.8552935737401748, + "c4": 0.6842348589921408, + "c5": 0.5131761442441052, + "c6": 0.3421174294960695, + "c7": 0.17105871474803394 }, "rgb": [222, 0, 59] }, @@ -112866,23 +112866,23 @@ "year": 1739, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 0.8717444022300427, - "c2": 26.12233423137446, - "c3": -30.175271768473188, - "c4": -27.074046044917928, - "c5": 5.5592632543752885, - "c6": 13.628444934392093, - "c7": 31.3569243419579 + "points": { + "c1": 29.643136607972828, + "c2": -21.70650076089142, + "c3": -43.78027607218323, + "c4": -9.730449504303543, + "c5": 14.842956627637427, + "c6": 13.724873595522986, + "c7": -31.544459018020873 }, - "vertexSeeds": { - "c1": 4.784712553818233, - "c2": 4.751594745186169, - "c3": 5.134583101635783, - "c4": 4.550488944863636, - "c5": 4.3684910510238355, - "c6": 4.556306274301857, - "c7": 5.017285391257396 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -112893,23 +112893,23 @@ "year": 1739, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -14.968186401133746, - "c2": -18.17885505732285, - "c3": -14.716883345549576, - "c4": -2.5261989484627314, - "c5": -15.220528542648932, - "c6": -11.079538606683823, - "c7": 24.785925225898193 + "points": { + "c1": 0.7108529367218068, + "c2": -31.191892495527945, + "c3": 21.323503422377115, + "c4": -24.916305691635692, + "c5": -3.7276384860067218, + "c6": 24.724762008884213, + "c7": -5.8997422333985945 }, - "vertexSeeds": { - "c1": 7.29547898878789, - "c2": 6.99636138227981, - "c3": 7.1735597122399355, - "c4": 6.827967992340199, - "c5": 6.9180576949066, - "c6": 7.377362864863888, - "c7": 6.961808830592603 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -112920,23 +112920,23 @@ "year": 1739, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 13.361849201769054, - "c2": -24.734738058896788, - "c3": -20.973355503949744, - "c4": -0.8976651495032293, - "c5": -25.061930776961688, - "c6": -6.651133589693856, - "c7": 16.98084793816581 + "points": { + "c1": 18.865191537996687, + "c2": -32.16809683317318, + "c3": 3.814439704944732, + "c4": 28.058320654784502, + "c5": 11.828064368609411, + "c6": -0.295227693824927, + "c7": 10.70011456503088 }, - "vertexSeeds": { - "c1": 5.165276567333892, - "c2": 4.684431283421025, - "c3": 4.999125651093091, - "c4": 4.386681639546621, - "c5": 5.030370387448146, - "c6": 4.405408463526955, - "c7": 4.684909352281855 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -112947,23 +112947,23 @@ "year": 1739, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 16.40576482775927, - "c2": -15.018826892833305, - "c3": 14.98161546051, - "c4": 22.10559527229006, - "c5": 15.759182065207803, - "c6": -24.911226063421786, - "c7": 20.453174547510173 + "points": { + "c1": -3.8995960352768613, + "c2": -25.3309307483971, + "c3": -5.195293711055957, + "c4": 22.154082755438097, + "c5": -1.501024992339456, + "c6": -5.036435742598556, + "c7": -2.797225517555038 }, - "vertexSeeds": { - "c1": 4.6841666882225965, - "c2": 5.1404628907183865, - "c3": 5.209622708624399, - "c4": 5.083360103840116, - "c5": 4.893869634163066, - "c6": 5.23203455304988, - "c7": 4.9711072878714235 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -112974,23 +112974,23 @@ "year": 1739, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -1.638650323767827, - "c2": -10.578659264412408, - "c3": -6.852284356572838, - "c4": 29.64599037995722, - "c5": -36.87138359901458, - "c6": 29.63390655284217, - "c7": 3.864757705907536 + "points": { + "c1": -30.218579517762105, + "c2": -31.825269590775505, + "c3": 37.61176808227962, + "c4": 15.175685642104128, + "c5": 15.773450454919356, + "c6": 36.03565380511039, + "c7": 21.11159674374958 }, - "vertexSeeds": { - "c1": 4.26402373899917, - "c2": 5.176252355609635, - "c3": 5.129142771813638, - "c4": 5.056564248427932, - "c5": 4.939283408806515, - "c6": 5.043772088234962, - "c7": 4.653536077633082 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -113001,23 +113001,23 @@ "year": 1739, "resistanceReported": true, "duration": 31795200, - "curveSeeds": { - "c1": 29.880728276009137, - "c2": -14.696845765130202, - "c3": -38.848960875765556, - "c4": 30.761530798977347, - "c5": 22.219323747858027, - "c6": 33.50000817997369, - "c7": 21.772875679876563 + "points": { + "c1": 18.147435260834513, + "c2": -4.252356528176399, + "c3": -19.180939883857267, + "c4": 25.299242159513625, + "c5": 31.622050823157068, + "c6": 4.893117232297982, + "c7": -2.4946758978538597 }, - "vertexSeeds": { - "c1": 7.508006382504424, - "c2": 7.288588420628298, - "c3": 6.626976428200758, - "c4": 8.171724754969265, - "c5": 6.9748590565233775, - "c6": 7.775642052591765, - "c7": 6.77925335587949 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973648, + "c3": 9.75496994914471, + "c4": 7.803975959315762, + "c5": 5.852981969486824, + "c6": 3.9019879796578865, + "c7": 1.9509939898289477 }, "rgb": [238, 201, 159] }, @@ -113028,23 +113028,23 @@ "year": 1739, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 36.661629852542696, - "c2": 8.509424375147432, - "c3": 31.449790124623583, - "c4": 21.511204263662286, - "c5": -28.631789067774257, - "c6": 33.42273775483097, - "c7": 28.971860291749728 + "points": { + "c1": 13.960072310671741, + "c2": -32.4134323202633, + "c3": 9.422490851408199, + "c4": -21.041299930712167, + "c5": 34.94501167138406, + "c6": -32.345611487830055, + "c7": 28.292574809376397 }, - "vertexSeeds": { - "c1": 7.2254598310319285, - "c2": 7.770501473662211, - "c3": 5.756447106628544, - "c4": 6.456242663181742, - "c5": 7.650835804098909, - "c6": 6.814834464262917, - "c7": 5.903921707262851 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140081, + "c3": 10.425335182616736, + "c4": 8.340268146093388, + "c5": 6.255201109570041, + "c6": 4.170134073046694, + "c7": 2.085067036523347 }, "rgb": [86, 146, 138] }, @@ -113055,23 +113055,23 @@ "year": 1739, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -23.520675575254977, - "c2": -26.19514918440283, - "c3": -7.648712165159388, - "c4": -28.292750148238305, - "c5": -29.412220328398234, - "c6": -10.169301010897428, - "c7": 23.894575102014798 + "points": { + "c1": 26.234279713104357, + "c2": 28.496983749264928, + "c3": -19.099110836112587, + "c4": -4.964755052544547, + "c5": 2.361584782439138, + "c6": 33.37000771016625, + "c7": 6.108673960835091 }, - "vertexSeeds": { - "c1": 4.5468471540111315, - "c2": 5.1122034800580085, - "c3": 5.171814613213302, - "c4": 4.395970165837888, - "c5": 4.660130216535978, - "c6": 4.978675375541905, - "c7": 4.4952411769846465 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -113082,23 +113082,23 @@ "year": 1739, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -23.150259456422496, - "c2": 24.46234496920908, - "c3": -25.431020758446994, - "c4": 14.105601592678074, - "c5": -10.692839880172514, - "c6": -4.049469313765595, - "c7": -0.7281366602206063 + "points": { + "c1": 3.7283514277605114, + "c2": -5.972697725325631, + "c3": 25.143585278884036, + "c4": 25.76351297644401, + "c5": 23.474159904267257, + "c6": 11.001007522159075, + "c7": -30.929296481745084 }, - "vertexSeeds": { - "c1": 5.682655224538843, - "c2": 6.196963651917641, - "c3": 6.260946603922967, - "c4": 5.989230486986934, - "c5": 6.370735229837729, - "c6": 6.116929008842062, - "c7": 5.571051216354116 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -113109,23 +113109,23 @@ "year": 1739, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 28.03758143937172, - "c2": 6.496829891703634, - "c3": -14.916430125529047, - "c4": -17.535549467314176, - "c5": 1.3678364784669803, - "c6": 20.977960292840855, - "c7": -0.9833728850848438 + "points": { + "c1": -6.2204012428253, + "c2": -24.60908374279887, + "c3": 13.30446504182079, + "c4": 22.14585239472686, + "c5": 19.258836519446405, + "c6": -8.411284430169683, + "c7": 9.599247044545152 }, - "vertexSeeds": { - "c1": 5.539936196483474, - "c2": 5.566879110030197, - "c3": 5.949765373824455, - "c4": 6.37282382406298, - "c5": 6.182958367860321, - "c6": 5.68584807117308, - "c7": 6.0941101091472465 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -113136,23 +113136,23 @@ "year": 1739, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -7.160700198198484, - "c2": -2.482489793036784, - "c3": 6.915906652971099, - "c4": 12.657722411951692, - "c5": -27.60141209293242, - "c6": 19.026841251426216, - "c7": 14.702031041416735 + "points": { + "c1": -13.647313462798447, + "c2": 9.54020347200007, + "c3": -22.47721827855749, + "c4": 27.07924291882382, + "c5": -4.364354970411355, + "c6": -18.182588733905536, + "c7": -23.770974482880398 }, - "vertexSeeds": { - "c1": 4.878964120692865, - "c2": 5.117880879433931, - "c3": 4.9168188582339045, - "c4": 4.74606011224705, - "c5": 4.545716652204737, - "c6": 4.783683344040257, - "c7": 4.725138376320373 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -113163,23 +113163,23 @@ "year": 1739, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -12.650342621583688, - "c2": 18.169851227374437, - "c3": -3.4042854554966766, - "c4": 6.828422914799667, - "c5": -17.355910419374325, - "c6": 21.25878515342037, - "c7": 24.298013330795627 + "points": { + "c1": -20.32812335240906, + "c2": -24.22510793916442, + "c3": 28.067399246553514, + "c4": -24.833721819613235, + "c5": 13.165526181207397, + "c6": -24.693628389987232, + "c7": -8.093076027551508 }, - "vertexSeeds": { - "c1": 4.092281474577113, - "c2": 4.528634688913099, - "c3": 4.031497201256215, - "c4": 4.12767394798373, - "c5": 4.129719132868161, - "c6": 4.420848190594079, - "c7": 4.605012814069015 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [86, 146, 138] }, @@ -113190,23 +113190,23 @@ "year": 1739, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 8.218400194517521, - "c2": 25.290413495880443, - "c3": 17.995287279146574, - "c4": 8.073084103401087, - "c5": -10.575089815210212, - "c6": -11.403343996426866, - "c7": -23.87332462397642 + "points": { + "c1": -21.728605751745015, + "c2": -9.520968236506455, + "c3": -22.695076472099842, + "c4": 6.63921107995931, + "c5": -24.12527803747708, + "c6": 27.883501040537837, + "c7": -26.699612684663514 }, - "vertexSeeds": { - "c1": 5.220339055471377, - "c2": 4.8181617387312325, - "c3": 4.612721287504533, - "c4": 4.686418653246295, - "c5": 5.236152340717364, - "c6": 5.16935522197016, - "c7": 4.566979245513395 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -113217,23 +113217,23 @@ "year": 1739, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -3.538915717258675, - "c2": 20.716262325180892, - "c3": 0.9788265923107886, - "c4": -9.941504165991134, - "c5": -7.168721179510587, - "c6": 20.5887803982041, - "c7": 9.364185751391815 + "points": { + "c1": -4.966812827055293, + "c2": 0.8556108135283402, + "c3": 13.18716554607203, + "c4": -25.871470031764304, + "c5": 4.3253173659843895, + "c6": 5.624527410548559, + "c7": 10.740399293425725 }, - "vertexSeeds": { - "c1": 4.625555082453112, - "c2": 5.103944363377653, - "c3": 4.229018958955366, - "c4": 4.868357554281172, - "c5": 4.552343805525002, - "c6": 4.906133200167976, - "c7": 4.66038673322856 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -113244,23 +113244,23 @@ "year": 1739, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -13.344490999974106, - "c2": 27.896395996864342, - "c3": 40.8079737052408, - "c4": 26.192011500095262, - "c5": 7.419319285582326, - "c6": 20.69225508130411, - "c7": 30.261926396191853 + "points": { + "c1": -28.064906334002913, + "c2": 22.88819433093373, + "c3": 25.895801619206495, + "c4": -9.433228906941459, + "c5": -32.740976556662666, + "c6": -15.039514767383718, + "c7": 36.93232877285509 }, - "vertexSeeds": { - "c1": 4.535810769280125, - "c2": 4.491195715526687, - "c3": 4.323640707648395, - "c4": 5.06726443114334, - "c5": 5.210097692275958, - "c6": 4.812335798704028, - "c7": 4.432843688885968 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -113271,23 +113271,23 @@ "year": 1739, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -3.6115113669196575, - "c2": 8.1739874656245, - "c3": 37.67859042736798, - "c4": 34.98690507860407, - "c5": -8.772780336416105, - "c6": -1.27290454473885, - "c7": -11.901509655449612 + "points": { + "c1": 14.21551109434165, + "c2": -34.056276830938366, + "c3": 11.500082616520402, + "c4": -30.757284410855256, + "c5": 15.359997337811286, + "c6": 29.600060904103117, + "c7": 26.02557913104802 }, - "vertexSeeds": { - "c1": 3.9277587691986486, - "c2": 4.053491924509698, - "c3": 4.136684639739861, - "c4": 4.362388166874587, - "c5": 4.227945381637942, - "c6": 4.2528779138954205, - "c7": 4.035617570635532 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894593, + "c3": 5.686546463245492, + "c4": 4.549237170596395, + "c5": 3.411927877947294, + "c6": 2.2746185852981977, + "c7": 1.137309292649101 }, "rgb": [238, 201, 159] }, @@ -113298,23 +113298,23 @@ "year": 1739, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -25.34734280072105, - "c2": 5.5287285813971, - "c3": 0.8535132464043755, - "c4": -25.09573427718586, - "c5": -15.921323988720498, - "c6": 22.20760082288741, - "c7": 18.6991790816574 + "points": { + "c1": -7.180258471960631, + "c2": 4.56476884154355, + "c3": 19.858635832625726, + "c4": -13.867201815315328, + "c5": -18.697072779752226, + "c6": -14.883426106741167, + "c7": -17.527368431219926 }, - "vertexSeeds": { - "c1": 4.560259617645801, - "c2": 4.751091334677226, - "c3": 5.080011599453251, - "c4": 5.214698455466328, - "c5": 4.7542564893867, - "c6": 5.025743354866648, - "c7": 5.208258995080795 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -113325,23 +113325,23 @@ "year": 1739, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 9.35291361581191, - "c2": -14.7575076762302, - "c3": -24.659583165115972, - "c4": -14.291673808826353, - "c5": -2.070312363595608, - "c6": 0.42745203542929033, - "c7": -24.548465379810466 + "points": { + "c1": 22.493984233620882, + "c2": 12.698006273813913, + "c3": 1.5919612171132584, + "c4": 19.57832837729426, + "c5": -7.847231923476347, + "c6": -1.1434318907818088, + "c7": -26.834602739217008 }, - "vertexSeeds": { - "c1": 3.114016023891188, - "c2": 3.0540907409353952, - "c3": 3.0600853407482544, - "c4": 3.049843477460912, - "c5": 3.03720626829837, - "c6": 3.0400090918041505, - "c7": 3.1117625418876877 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -113352,23 +113352,23 @@ "year": 1739, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -19.864588104244095, - "c2": 12.79969252504296, - "c3": 4.668224213082322, - "c4": 1.763495902591604, - "c5": -17.767678488369178, - "c6": -19.612456371968033, - "c7": 10.270571616617264 + "points": { + "c1": 22.71839002049481, + "c2": -22.090602301222113, + "c3": -13.47553888059409, + "c4": 7.404915152049142, + "c5": 26.72595629555824, + "c6": -0.19060527300442232, + "c7": 25.560193037179374 }, - "vertexSeeds": { - "c1": 14.783917859444065, - "c2": 15.213207168538357, - "c3": 15.674212613095929, - "c4": 15.293284484400116, - "c5": 14.974106526832793, - "c6": 14.520952005294525, - "c7": 15.460174869082902 + "offsets": { + "c1": 26.181229773462782, + "c2": 22.441054091539513, + "c3": 18.70087840961629, + "c4": 14.960702727693024, + "c5": 11.220527045769757, + "c6": 7.480351363846533, + "c7": 3.7401756819232665 }, "rgb": [77, 76, 132] }, @@ -113379,23 +113379,23 @@ "year": 1739, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 20.643168367431265, - "c2": -25.602119180412124, - "c3": 15.181971324684767, - "c4": -18.868404265840564, - "c5": 23.024433909086724, - "c6": -16.674301958097285, - "c7": -4.9142114038373705 + "points": { + "c1": -33.7312727660788, + "c2": 3.852989366158141, + "c3": 0.80033738501686, + "c4": 20.602614218258907, + "c5": -1.9812392160760837, + "c6": -0.10710221301236089, + "c7": -20.657839916059043 }, - "vertexSeeds": { - "c1": 9.869459317385884, - "c2": 9.60512603965363, - "c3": 8.276691608767328, - "c4": 9.758124757264294, - "c5": 9.224853060422705, - "c6": 9.171368521457303, - "c7": 8.779833804946735 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.507628294036062, + "c3": 12.089690245030052, + "c4": 9.671752196024034, + "c5": 7.253814147018026, + "c6": 4.835876098012017, + "c7": 2.4179380490060085 }, "rgb": [77, 76, 132] }, @@ -113406,23 +113406,23 @@ "year": 1739, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -0.8041343200514994, - "c2": -3.671952100218796, - "c3": -24.92293036394077, - "c4": -20.12407419554981, - "c5": 16.68572649408494, - "c6": 6.88392317932486, - "c7": -19.63175084557101 + "points": { + "c1": -14.965434364016913, + "c2": -27.748890256508677, + "c3": 23.864732515260286, + "c4": 1.9567534162499776, + "c5": 7.579180432139239, + "c6": 27.36756022439215, + "c7": 1.0093276160010056 }, - "vertexSeeds": { - "c1": 6.102614001265357, - "c2": 6.285944590880529, - "c3": 6.18990120344355, - "c4": 5.666014080672525, - "c5": 5.713639718770595, - "c6": 5.726946422103416, - "c7": 6.325360953892874 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -113433,23 +113433,23 @@ "year": 1739, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 36.227806498587114, - "c2": -1.6886216338537139, - "c3": 26.38814035836485, - "c4": 34.65504896001424, - "c5": -38.77245434187263, - "c6": 8.246783759769862, - "c7": 1.517269844049686 + "points": { + "c1": -38.27724760917083, + "c2": 27.333478648195936, + "c3": 38.32864890471566, + "c4": -5.927646890327026, + "c5": -14.455323943887908, + "c6": -32.40416859266161, + "c7": -5.411230949648257 }, - "vertexSeeds": { - "c1": 12.73617815842273, - "c2": 12.38179134831372, - "c3": 12.56278578548176, - "c4": 12.716015726597883, - "c5": 12.28705663675584, - "c6": 11.906962565509529, - "c7": 13.272531520107693 + "offsets": { + "c1": 22.52427184466019, + "c2": 19.306518723994454, + "c3": 16.088765603328717, + "c4": 12.87101248266295, + "c5": 9.653259361997213, + "c6": 6.435506241331475, + "c7": 3.2177531206657375 }, "rgb": [86, 146, 138] }, @@ -113460,23 +113460,23 @@ "year": 1739, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 13.501466044440875, - "c2": -3.4619387111671003, - "c3": -2.975348923901425, - "c4": 15.862197814229852, - "c5": -3.713263046875724, - "c6": 0.5759825359419004, - "c7": -7.471357483322002 + "points": { + "c1": 1.4986467392400762, + "c2": 6.800929383628834, + "c3": 0.4938727518630195, + "c4": 4.880202670397175, + "c5": -4.163315350687309, + "c6": 3.713222735208099, + "c7": 1.211678522579934 }, - "vertexSeeds": { - "c1": 4.381141643302212, - "c2": 4.56043882498029, - "c3": 4.804860586478942, - "c4": 4.336863719963681, - "c5": 4.797856927611546, - "c6": 5.103592435195087, - "c7": 4.909652562103376 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -113487,23 +113487,23 @@ "year": 1740, "resistanceReported": false, "duration": 51840000, - "curveSeeds": { - "c1": 31.273114067105595, - "c2": -55.96648989886262, - "c3": 63.05919639782475, - "c4": -63.65541743230779, - "c5": -43.35827712931045, - "c6": -4.206528282706984, - "c7": 12.899320431718863 + "points": { + "c1": 67.11296012876666, + "c2": -4.526995973162414, + "c3": -16.302729291542775, + "c4": -27.1443392507761, + "c5": 7.203440941390994, + "c6": 6.943542743333623, + "c7": -64.22134674913904 }, - "vertexSeeds": { - "c1": 7.168115808828183, - "c2": 7.44012728079387, - "c3": 7.078678064352653, - "c4": 7.2010168517013735, - "c5": 7.275046930001383, - "c6": 7.3988790156023585, - "c7": 7.2529393172709895 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485445, + "c3": 8.899676375404548, + "c4": 7.11974110032362, + "c5": 5.339805825242722, + "c6": 3.5598705501618246, + "c7": 1.779935275080898 }, "rgb": [77, 76, 132] }, @@ -113514,23 +113514,23 @@ "year": 1739, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -12.208077467858176, - "c2": -20.102934010508715, - "c3": -3.886613811926015, - "c4": 21.912560922224394, - "c5": 9.718007230585172, - "c6": 3.7725819810759553, - "c7": 17.182692876964772 + "points": { + "c1": 2.1443359152072965, + "c2": 11.394149662362693, + "c3": -9.701742643485439, + "c4": 13.416094801361744, + "c5": -26.88162821647601, + "c6": -9.24524509607377, + "c7": 10.322479535739902 }, - "vertexSeeds": { - "c1": 3.2736296970951466, - "c2": 3.2516661952509383, - "c3": 3.0512381113373843, - "c4": 3.298883236563571, - "c5": 3.264323542918048, - "c6": 3.0903168369224274, - "c7": 3.072711476305856 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -113541,23 +113541,23 @@ "year": 1739, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -4.99820601963857, - "c2": -15.21500562924498, - "c3": 7.62632749917481, - "c4": -2.3800656118173897, - "c5": -12.177119375265454, - "c6": -23.833717597237328, - "c7": -12.213931923579352 + "points": { + "c1": 6.826175118800638, + "c2": 24.25203284221097, + "c3": 25.429622835966033, + "c4": -11.29546900389197, + "c5": 24.920685130003807, + "c6": 15.542700099328865, + "c7": -6.079715580808287 }, - "vertexSeeds": { - "c1": 7.187899055404122, - "c2": 7.204355346483044, - "c3": 6.980558068161113, - "c4": 6.8527490072001145, - "c5": 7.261204116376471, - "c6": 6.870215608259262, - "c7": 6.971870499147856 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -113568,23 +113568,23 @@ "year": 1739, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -6.003673124685726, - "c2": -9.416737574294956, - "c3": 21.992392630151564, - "c4": -25.18399786462265, - "c5": 22.298940312244675, - "c6": -4.506351577705921, - "c7": 28.58758407333935 + "points": { + "c1": -27.079387284576, + "c2": -15.602864295171102, + "c3": 29.222712746423532, + "c4": -11.454802495057312, + "c5": 28.52365157892207, + "c6": 11.181799033986046, + "c7": -16.37978235446434 }, - "vertexSeeds": { - "c1": 3.017878060731927, - "c2": 3.2406118633806043, - "c3": 2.9795856523586486, - "c4": 3.0890104915540206, - "c5": 2.966137778079005, - "c6": 3.2534019718726546, - "c7": 3.101862290937062 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [238, 201, 159] }, @@ -113595,23 +113595,23 @@ "year": 1739, "resistanceReported": false, "duration": 45360000, - "curveSeeds": { - "c1": -13.91096834572749, - "c2": -37.850149058261565, - "c3": 39.817416755328544, - "c4": 7.711605774665195, - "c5": -21.674284026376213, - "c6": 2.629544464734238, - "c7": 37.76096572881985 + "points": { + "c1": 11.67577148905756, + "c2": -0.9769643269717463, + "c3": -52.10396304352774, + "c4": -42.08253416961999, + "c5": -57.252771360230945, + "c6": 21.976334362239008, + "c7": 37.72752092882657 }, - "vertexSeeds": { - "c1": 6.2349920992048045, - "c2": 6.3350935134084505, - "c3": 5.879502031396991, - "c4": 5.9331078213881945, - "c5": 5.535916805770854, - "c6": 5.611891212344248, - "c7": 5.96096218166852 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -113622,23 +113622,23 @@ "year": 1739, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 10.146912251659543, - "c2": -11.349294402849067, - "c3": -10.118919122251672, - "c4": -9.81127918420865, - "c5": 16.910830716775948, - "c6": -1.9596404302667878, - "c7": -22.12022554880866 + "points": { + "c1": 14.013004253999902, + "c2": -14.409428908193725, + "c3": -0.6115745658567207, + "c4": 20.006960390524306, + "c5": -5.572785912210307, + "c6": -3.4638462695045042, + "c7": 16.481934985337205 }, - "vertexSeeds": { - "c1": 6.168123117526655, - "c2": 6.226847176090531, - "c3": 6.296798751408928, - "c4": 5.5280986120297175, - "c5": 6.370832894185946, - "c6": 5.703783540628857, - "c7": 6.396143285504125 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -113649,23 +113649,23 @@ "year": 1739, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 2.616550696064941, - "c2": -8.773757246307891, - "c3": 16.28189601889924, - "c4": 12.458407973954856, - "c5": 20.36210877972163, - "c6": 4.132348360823144, - "c7": 6.284073415099638 + "points": { + "c1": 15.69788811097115, + "c2": 1.6828265683858845, + "c3": -24.771685650010465, + "c4": 6.466070049479875, + "c5": -9.618319764404202, + "c6": -25.866877914922124, + "c7": -16.65796384523796 }, - "vertexSeeds": { - "c1": 5.5649950249370095, - "c2": 5.896781737227745, - "c3": 5.86962725214863, - "c4": 6.04094746971735, - "c5": 6.3631812788186775, - "c6": 5.985434511881601, - "c7": 6.301552797302155 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -113676,23 +113676,23 @@ "year": 1739, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -19.696439872792126, - "c2": -18.96653734567345, - "c3": -20.346693902042855, - "c4": -15.940518717261906, - "c5": 19.047943957003127, - "c6": 0.4280200754425003, - "c7": -5.614167920495753 + "points": { + "c1": 11.05054627466916, + "c2": -11.645732161752427, + "c3": 4.778051839558934, + "c4": -8.645872701784423, + "c5": -6.2445547173908444, + "c6": 16.974406297661332, + "c7": 12.605314577201725 }, - "vertexSeeds": { - "c1": 2.9560038541955276, - "c2": 2.9564426860769917, - "c3": 2.9964682418871127, - "c4": 3.318694570870404, - "c5": 3.0891037546566964, - "c6": 3.0646666614726197, - "c7": 3.2366721563515872 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [238, 201, 159] }, @@ -113703,23 +113703,23 @@ "year": 1739, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": -12.137472916866756, - "c2": 19.374213088833947, - "c3": 40.71874595848441, - "c4": -36.49275653128504, - "c5": 43.1481065592051, - "c6": 11.309786425622555, - "c7": -39.24925051830162 + "points": { + "c1": -46.940084758506266, + "c2": 25.74979080407079, + "c3": 53.770836893354776, + "c4": 27.32364746470727, + "c5": -34.10939019306917, + "c6": -4.006454959315377, + "c7": 53.116840522754195 }, - "vertexSeeds": { - "c1": 6.6912971584324925, - "c2": 7.425050254845495, - "c3": 7.90268553218978, - "c4": 7.694543738808975, - "c5": 5.88817837808652, - "c6": 4.868361727566009, - "c7": 4.617328705270001 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450761, + "c3": 9.45446139620897, + "c4": 7.563569116967178, + "c5": 5.672676837725382, + "c6": 3.7817845584835856, + "c7": 1.890892279241794 }, "rgb": [238, 201, 159] }, @@ -113730,23 +113730,23 @@ "year": 1739, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -0.5239077605432385, - "c2": 4.768132980084037, - "c3": -13.959366282956136, - "c4": 10.67429841176634, - "c5": -4.002458799221291, - "c6": -2.587944639855852, - "c7": -6.417169924556681 + "points": { + "c1": 4.909422768606344, + "c2": 18.858278181680678, + "c3": 23.517915067220375, + "c4": 21.290014073649548, + "c5": -18.740479617736657, + "c6": 6.113536344024862, + "c7": -6.392596579553299 }, - "vertexSeeds": { - "c1": 3.2989596520358715, - "c2": 3.0744049285315977, - "c3": 3.017941339018844, - "c4": 3.054184087571735, - "c5": 3.0770390797810845, - "c6": 3.023381312176662, - "c7": 3.053501157373048 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [222, 0, 59] }, @@ -113757,23 +113757,23 @@ "year": 1739, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -12.979681803020323, - "c2": -31.175764865409803, - "c3": 26.210190817595965, - "c4": -3.5859685468589433, - "c5": 30.662220871122173, - "c6": -32.400978398075424, - "c7": 5.320558404069423 + "points": { + "c1": -14.962486925059022, + "c2": -3.9577524665343944, + "c3": -6.806519374660198, + "c4": -17.82083909965164, + "c5": -33.08285195624821, + "c6": -21.845284310002523, + "c7": -0.5599819106127697 }, - "vertexSeeds": { - "c1": 5.3184635009189165, - "c2": 5.185560005285558, - "c3": 5.4117570294227875, - "c4": 5.165695947327595, - "c5": 5.690450640675364, - "c6": 5.930627725601014, - "c7": 5.214326670915567 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509015, + "c3": 7.1890892279241765, + "c4": 5.751271382339351, + "c5": 4.313453536754513, + "c6": 2.8756356911696757, + "c7": 1.4378178455848378 }, "rgb": [238, 201, 159] }, @@ -113784,23 +113784,23 @@ "year": 1739, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -8.228231062393402, - "c2": 1.9134018315286525, - "c3": -13.84116178330084, - "c4": 20.963128809880168, - "c5": -0.2796581614635514, - "c6": -15.174808049490622, - "c7": 18.310144426949485 + "points": { + "c1": -9.75309389118901, + "c2": 15.038339015434701, + "c3": -27.19087353884008, + "c4": 3.7578883767676814, + "c5": 28.33569987628877, + "c6": 29.93710961968263, + "c7": -18.070771144685256 }, - "vertexSeeds": { - "c1": 6.022192011627874, - "c2": 6.361925536899596, - "c3": 6.277517896939107, - "c4": 6.42715905598669, - "c5": 6.2584315714679395, - "c6": 6.002278763203659, - "c7": 6.115542107938315 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393891, + "c3": 7.697642163661589, + "c4": 6.158113730929268, + "c5": 4.618585298196946, + "c6": 3.079056865464624, + "c7": 1.5395284327323218 }, "rgb": [222, 0, 59] }, @@ -113811,23 +113811,23 @@ "year": 1739, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": 45.629020126650445, - "c2": -38.26706274356227, - "c3": -22.6901306843685, - "c4": 11.373971217443774, - "c5": 14.259583393015902, - "c6": 20.305401070412742, - "c7": -14.165436099946206 + "points": { + "c1": -50.22716828080725, + "c2": -26.14859193008857, + "c3": -44.060004487313265, + "c4": 35.79189163717969, + "c5": -1.5217038749069403, + "c6": 13.82897461687557, + "c7": -23.130741997336123 }, - "vertexSeeds": { - "c1": 5.07517113870146, - "c2": 4.3513771358621725, - "c3": 4.6593415853075895, - "c4": 4.395149708459182, - "c5": 4.812028375475809, - "c6": 4.869203892878499, - "c7": 5.220725813507746 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -113838,23 +113838,23 @@ "year": 1740, "resistanceReported": false, "duration": 45619200, - "curveSeeds": { - "c1": 28.99563078809784, - "c2": 26.874315761228175, - "c3": 57.16707006655298, - "c4": 3.8107621258755273, - "c5": -25.237756848156863, - "c6": -51.43017620708298, - "c7": 45.343471420979554 + "points": { + "c1": -22.38202667609697, + "c2": -38.81199871677073, + "c3": -61.295092968740065, + "c4": -4.22392463969711, + "c5": -57.66883723304506, + "c6": 21.671877730180228, + "c7": 61.0725460972845 }, - "vertexSeeds": { - "c1": 3.278969810645111, - "c2": 3.1202959447322023, - "c3": 3.1625094250705605, - "c4": 3.0035970045544502, - "c5": 3.2982099918623327, - "c6": 3.041713222781192, - "c7": 3.1892962972862335 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -113865,23 +113865,23 @@ "year": 1739, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": -22.222795729540795, - "c2": 3.1456319368674173, - "c3": -12.682932037599276, - "c4": -10.711590141921716, - "c5": -10.713015930444547, - "c6": 8.025172125683277, - "c7": -11.18509474787964 + "points": { + "c1": -2.8670890839037604, + "c2": -18.788406413229378, + "c3": -14.18342076260193, + "c4": -13.270629243768495, + "c5": 16.775308978154598, + "c6": -12.781632135534512, + "c7": -14.137820856219777 }, - "vertexSeeds": { - "c1": 3.1716464693998563, - "c2": 2.988522517644702, - "c3": 3.2316788280259208, - "c4": 3.033280996791273, - "c5": 3.0889674123683597, - "c6": 3.277945706411197, - "c7": 3.208712967197123 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -113892,23 +113892,23 @@ "year": 1739, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -18.607131213709323, - "c2": 36.157764284093886, - "c3": -23.971827765827847, - "c4": 32.2125070126677, - "c5": 8.708380409312241, - "c6": 5.547239412345931, - "c7": -14.027113582573527 + "points": { + "c1": -17.616449248625457, + "c2": -15.450225348808193, + "c3": -21.422878727034924, + "c4": 31.047135475324836, + "c5": -0.4165839179513142, + "c6": 14.402031014689761, + "c7": -30.981943435834218 }, - "vertexSeeds": { - "c1": 6.880527394143162, - "c2": 6.890830440543233, - "c3": 7.20126508916353, - "c4": 6.766276073004398, - "c5": 6.703430420219624, - "c6": 6.7070945075842285, - "c7": 6.832977466958901 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002784, + "c3": 8.62228386500231, + "c4": 6.897827092001855, + "c5": 5.173370319001381, + "c6": 3.4489135460009277, + "c7": 1.724456773000474 }, "rgb": [222, 0, 59] }, @@ -113919,23 +113919,23 @@ "year": 1739, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -8.904975248428672, - "c2": 20.37779669985744, - "c3": -10.965624101687704, - "c4": -17.724886455375362, - "c5": -8.015828750472018, - "c6": -19.614191390604155, - "c7": 2.7347011633413594 + "points": { + "c1": -5.87958762712039, + "c2": -15.230885143132982, + "c3": -17.6373876970217, + "c4": 6.2553920810013395, + "c5": -15.079175154367272, + "c6": -9.967437523488492, + "c7": 22.352440535460858 }, - "vertexSeeds": { - "c1": 5.220587303132104, - "c2": 4.291134475490284, - "c3": 5.120032773177326, - "c4": 5.178152981821821, - "c5": 4.73140851570051, - "c6": 4.990062354742736, - "c7": 4.385740662492939 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -113946,23 +113946,23 @@ "year": 1739, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 19.893662241806304, - "c2": -2.065296612792938, - "c3": 7.942008043160705, - "c4": 10.292593034960962, - "c5": 1.8234331859400186, - "c6": 4.708606001373223, - "c7": -15.12629896588616 + "points": { + "c1": 23.201433263789454, + "c2": -17.480580301831907, + "c3": 14.1549469275691, + "c4": 9.293829322734425, + "c5": -9.642527355130978, + "c6": -14.244626330497793, + "c7": 18.38399743272111 }, - "vertexSeeds": { - "c1": 4.812435294922765, - "c2": 4.568027286241, - "c3": 4.655498160471071, - "c4": 4.67299909735075, - "c5": 4.609082851228948, - "c6": 4.200229257487615, - "c7": 4.354032344320771 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -113973,23 +113973,23 @@ "year": 1739, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 28.913673792465104, - "c2": 30.646514852923573, - "c3": 28.09170123500688, - "c4": 16.883845489327356, - "c5": -34.78327859453412, - "c6": 15.881201464142386, - "c7": -33.6229891244055 + "points": { + "c1": 7.326839508565165, + "c2": -0.9041277858273489, + "c3": -40.90864356970145, + "c4": -9.260302210300864, + "c5": 9.662372486324244, + "c6": 0.5878827670901288, + "c7": -16.585512909548427 }, - "vertexSeeds": { - "c1": 6.517633431923224, - "c2": 6.502634013901081, - "c3": 5.887658388972073, - "c4": 6.623976010075118, - "c5": 6.478847466941575, - "c6": 6.014995382569871, - "c7": 6.881280357939506 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319004, + "c3": 8.229311141932508, + "c4": 6.5834489135459995, + "c5": 4.937586685159502, + "c6": 3.291724456773004, + "c7": 1.645862228386498 }, "rgb": [58, 15, 49] }, @@ -114000,23 +114000,23 @@ "year": 1739, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 16.468450036694193, - "c2": 7.696596674823198, - "c3": 40.199831124875566, - "c4": -11.653678803952083, - "c5": -11.313243038917427, - "c6": 16.77507947910923, - "c7": 33.701809195746016 + "points": { + "c1": 22.556449182376618, + "c2": -18.67920359051972, + "c3": 26.379760492343188, + "c4": 14.752712881681852, + "c5": 39.55673372840511, + "c6": -31.737322999019998, + "c7": 4.612412186606825 }, - "vertexSeeds": { - "c1": 8.865694547324846, - "c2": 8.968651801983393, - "c3": 7.976495490133901, - "c4": 8.297797042167074, - "c5": 9.308158586391897, - "c6": 8.357481234238934, - "c7": 9.159643777919019 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.370319001386964, + "c3": 11.141932501155807, + "c4": 8.913546000924647, + "c5": 6.685159500693476, + "c6": 4.456773000462317, + "c7": 2.2283865002311587 }, "rgb": [238, 201, 159] }, @@ -114027,23 +114027,23 @@ "year": 1739, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 44.30003228050511, - "c2": 52.76760575368486, - "c3": 50.87255367233213, - "c4": -24.46594533665844, - "c5": -40.24248817103796, - "c6": 46.50158028398327, - "c7": -12.914456848983349 + "points": { + "c1": 17.95921826431136, + "c2": -24.764838765943804, + "c3": -44.89677801195942, + "c4": 46.410841140232804, + "c5": -22.15748324168674, + "c6": 44.74358770762967, + "c7": 3.9746209675093453 }, - "vertexSeeds": { - "c1": 5.757657539585888, - "c2": 6.3111286095376675, - "c3": 6.383239232399625, - "c4": 5.9901297039684325, - "c5": 6.072608356654383, - "c6": 6.196961578683798, - "c7": 6.298428196307228 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -114054,23 +114054,23 @@ "year": 1739, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -38.90970780981654, - "c2": -3.570645850637966, - "c3": -39.49819526460527, - "c4": -37.67755671975864, - "c5": -5.317474135995553, - "c6": 33.23999052532439, - "c7": 31.76263076632516 + "points": { + "c1": -10.403070813959381, + "c2": -13.917349097490188, + "c3": 33.7324206368654, + "c4": 39.54740121408575, + "c5": 30.341496373122126, + "c6": -31.49450276634144, + "c7": -9.826713812485607 }, - "vertexSeeds": { - "c1": 3.001858021805613, - "c2": 3.1560346790731377, - "c3": 3.1573051918226356, - "c4": 3.0626001209468128, - "c5": 3.31752276867249, - "c6": 3.0457330500574127, - "c7": 3.194466931715286 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -114081,23 +114081,23 @@ "year": 1739, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 27.55827002794269, - "c2": 6.996003611733741, - "c3": 22.65623227072971, - "c4": -3.211030493099102, - "c5": 40.75043422663837, - "c6": 43.12257359082876, - "c7": -31.11274992966557 + "points": { + "c1": 27.66978662224259, + "c2": 27.885180625563216, + "c3": -21.426949103598147, + "c4": 40.467017923800775, + "c5": -30.822215348283088, + "c6": 3.1640211848068063, + "c7": -34.674427575128014 }, - "vertexSeeds": { - "c1": 7.973017964759938, - "c2": 7.416055722784778, - "c3": 7.408857019899015, - "c4": 7.251492646117801, - "c5": 7.868011532583278, - "c6": 7.318353834791346, - "c7": 6.997585251991933 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571434, + "c3": 9.523809523809524, + "c4": 7.619047619047623, + "c5": 5.714285714285711, + "c6": 3.8095238095238115, + "c7": 1.9047619047618989 }, "rgb": [222, 0, 59] }, @@ -114108,23 +114108,23 @@ "year": 1739, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -14.232395149281565, - "c2": 40.464002667009105, - "c3": -4.716940488733606, - "c4": 8.125768108790922, - "c5": -7.240201967122161, - "c6": -1.9684627971501953, - "c7": -8.353752567718196 + "points": { + "c1": 21.190460456742805, + "c2": -38.01109761168793, + "c3": 22.178610710673105, + "c4": 22.82934693775153, + "c5": -32.293393248268316, + "c6": 39.62727825904813, + "c7": -41.20398347404246 }, - "vertexSeeds": { - "c1": 3.6075194727700546, - "c2": 3.8248038270951876, - "c3": 3.7008274606094003, - "c4": 4.989837913251058, - "c5": 4.4874663812787015, - "c6": 5.08343404743564, - "c7": 4.835690456149232 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779472, + "c3": 6.195099398982893, + "c4": 4.956079519186314, + "c5": 3.717059639389736, + "c6": 2.478039759593156, + "c7": 1.239019879796578 }, "rgb": [238, 201, 159] }, @@ -114135,23 +114135,23 @@ "year": 1739, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 31.438821985430494, - "c2": -0.9536882528847883, - "c3": 2.2036007298153635, - "c4": -4.286847663073594, - "c5": 16.377995903085605, - "c6": -19.448234371224174, - "c7": 33.74556548899328 + "points": { + "c1": 3.276359783107857, + "c2": -26.43051425587856, + "c3": -15.082764319181248, + "c4": -18.354025615595255, + "c5": 19.04170317910566, + "c6": 25.030065353169363, + "c7": 17.12012451747777 }, - "vertexSeeds": { - "c1": 0.049845387930563784, - "c2": 0.05730384045524402, - "c3": 0.04382824296130405, - "c4": 0.04328374850050195, - "c5": 0.049413701887872495, - "c6": 0.04591505668458185, - "c7": 0.05088049348061068 + "offsets": { + "c1": 0.12944983818770225, + "c2": 0.11095700416088765, + "c3": 0.09246417013407306, + "c4": 0.07397133610725845, + "c5": 0.05547850208044386, + "c6": 0.0369856680536292, + "c7": 0.0184928340268146 }, "rgb": [58, 15, 49] }, @@ -114162,23 +114162,23 @@ "year": 1739, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -13.961739259896358, - "c2": 10.609152183393242, - "c3": 40.28128734168412, - "c4": -0.9377243251705067, - "c5": 41.49661029468588, - "c6": 28.535643191399643, - "c7": 26.67634443161886 + "points": { + "c1": 28.360730074814356, + "c2": -36.96007807959482, + "c3": 19.79672609138983, + "c4": 41.20149730614966, + "c5": -43.43783952653759, + "c6": 15.074034712551892, + "c7": 4.593312355585894 }, - "vertexSeeds": { - "c1": 6.6641864864901805, - "c2": 5.942130210765225, - "c3": 6.833482415837424, - "c4": 5.887089215994482, - "c5": 6.92664897051764, - "c6": 6.94611151216447, - "c7": 6.073037231307181 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066578, + "c4": 6.657420249653258, + "c5": 4.993065187239946, + "c6": 3.3287101248266326, + "c7": 1.6643550624133125 }, "rgb": [86, 146, 138] }, @@ -114189,23 +114189,23 @@ "year": 1739, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -29.47012700666938, - "c2": -30.075904913756787, - "c3": 24.373257385204525, - "c4": 37.129595368945076, - "c5": -31.6248081231504, - "c6": -4.120612920671121, - "c7": 26.022068904896656 + "points": { + "c1": -40.77043110026741, + "c2": -36.64714386254394, + "c3": -32.839977104253755, + "c4": -4.831339628879562, + "c5": -28.44868515734533, + "c6": 7.3801524509977625, + "c7": 10.448941992411093 }, - "vertexSeeds": { - "c1": 4.015687961632379, - "c2": 4.6031317632705235, - "c3": 4.515916042654271, - "c4": 4.478747603419076, - "c5": 4.313575532934625, - "c6": 4.035776714680583, - "c7": 4.674116777998214 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.7683772538141485, + "c3": 5.640314378178459, + "c4": 4.512251502542764, + "c5": 3.3841886269070742, + "c6": 2.2561257512713846, + "c7": 1.1280628756356899 }, "rgb": [77, 76, 132] }, @@ -114216,23 +114216,23 @@ "year": 1739, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": 5.204751912486415, - "c2": -20.607408976717693, - "c3": 39.52137941839306, - "c4": -16.850627072700544, - "c5": 30.40247339573066, - "c6": 27.61348190027197, - "c7": 5.859992946463322 + "points": { + "c1": -6.471212071473559, + "c2": 30.85075062458659, + "c3": 24.22724732960024, + "c4": -30.79254580031699, + "c5": -34.76261198539122, + "c6": -21.471675131869805, + "c7": -29.473920136697185 }, - "vertexSeeds": { - "c1": 13.42252740378846, - "c2": 12.893949335732012, - "c3": 12.361636881049101, - "c4": 12.290392910818142, - "c5": 12.883044210409588, - "c6": 13.833286387831649, - "c7": 12.545103613624502 + "offsets": { + "c1": 23.20388349514563, + "c2": 19.889042995839105, + "c3": 16.57420249653258, + "c4": 13.259361997226078, + "c5": 9.944521497919553, + "c6": 6.629680998613027, + "c7": 3.314840499306502 }, "rgb": [77, 76, 132] }, @@ -114243,23 +114243,23 @@ "year": 1739, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -30.027937945542803, - "c2": 1.151362578439283, - "c3": -10.514613227652646, - "c4": -2.4366166574293473, - "c5": -11.30846029267606, - "c6": 19.417002486001756, - "c7": -16.065398179935553 + "points": { + "c1": -19.437058094122342, + "c2": -13.436550619252756, + "c3": 14.74919237596562, + "c4": -0.3020935569619638, + "c5": -17.98797819693764, + "c6": -27.79241880509909, + "c7": 6.005857002027128 }, - "vertexSeeds": { - "c1": 2.157925684016661, - "c2": 2.478583054979822, - "c3": 2.2085296229502323, - "c4": 2.2353417962391, - "c5": 2.3225653912952824, - "c6": 2.457698649194348, - "c7": 2.349812394510394 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188626, + "c3": 2.9819694868238544, + "c4": 2.385575589459085, + "c5": 1.789181692094313, + "c6": 1.1927877947295413, + "c7": 0.5963938973647719 }, "rgb": [86, 146, 138] }, @@ -114270,23 +114270,23 @@ "year": 1739, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 3.345573128210468, - "c2": -39.01901346208853, - "c3": -38.92761303558285, - "c4": -38.932432173016615, - "c5": 34.407745835539785, - "c6": -7.675946621207469, - "c7": 5.107953792594863 + "points": { + "c1": -15.614619232658505, + "c2": 11.179993596541358, + "c3": -3.384313244835056, + "c4": 30.00998954426551, + "c5": 0.6464579084568882, + "c6": 26.923602141216577, + "c7": -22.255265568553092 }, - "vertexSeeds": { - "c1": 6.677677516881731, - "c2": 6.361726363743694, - "c3": 6.384913189491382, - "c4": 6.762315229261905, - "c5": 7.065007248542032, - "c6": 6.212291139820636, - "c7": 7.04730146633298 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [77, 76, 132] }, @@ -114297,23 +114297,23 @@ "year": 1739, "resistanceReported": true, "duration": 30585600, - "curveSeeds": { - "c1": -22.704005765921575, - "c2": -39.40446519766983, - "c3": 21.48731962069742, - "c4": -23.85415908400748, - "c5": 23.149637852799884, - "c6": 35.453737566727725, - "c7": -29.433297398074494 + "points": { + "c1": -26.53268059811246, + "c2": -33.864317683422115, + "c3": 7.784326448995827, + "c4": -4.396504259947278, + "c5": 9.790316863977594, + "c6": -26.548094994433512, + "c7": -29.191653718231667 }, - "vertexSeeds": { - "c1": 5.23564758886012, - "c2": 5.851507549646504, - "c3": 5.998861287198441, - "c4": 6.186554108705715, - "c5": 5.729282716665299, - "c6": 5.472492415334949, - "c7": 6.079892973853139 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.43134535367545, + "c3": 7.859454461396207, + "c4": 6.287563569116965, + "c5": 4.715672676837729, + "c6": 3.143781784558486, + "c7": 1.571890892279243 }, "rgb": [238, 201, 159] }, @@ -114324,23 +114324,23 @@ "year": 1739, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": -23.444774439765848, - "c2": 5.5352058689452335, - "c3": 40.67915726897093, - "c4": -43.43437659965433, - "c5": 12.04032775774428, - "c6": 9.002695238590952, - "c7": -20.40785641762424 + "points": { + "c1": 4.869143717735675, + "c2": 18.557845249206117, + "c3": 3.8381049032861156, + "c4": -10.599070427088904, + "c5": 32.08990900883325, + "c6": -49.96093167691238, + "c7": 38.88209447419009 }, - "vertexSeeds": { - "c1": 4.710075378068165, - "c2": 4.477648072858926, - "c3": 4.218437253641895, - "c4": 4.737160087563088, - "c5": 5.00323754972056, - "c6": 4.530013682332995, - "c7": 5.155126460632278 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -114351,23 +114351,23 @@ "year": 1739, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 19.951029383906324, - "c2": 4.339647991925986, - "c3": -37.05122514836845, - "c4": -30.650943771392846, - "c5": -3.649916886735774, - "c6": -30.43324478476856, - "c7": 0.7971719677621891 + "points": { + "c1": 2.9632544876947193, + "c2": -17.79231976438216, + "c3": -29.69020840846685, + "c4": 24.7791621360225, + "c5": -1.7433091847019568, + "c6": 40.26171183564936, + "c7": 8.726704222039366 }, - "vertexSeeds": { - "c1": 3.026181515856829, - "c2": 3.2573170595932033, - "c3": 2.9805665150307363, - "c4": 3.2864601675850467, - "c5": 3.015828807239701, - "c6": 3.0994228899880567, - "c7": 3.3103632937170175 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -114378,23 +114378,23 @@ "year": 1739, "resistanceReported": false, "duration": 7689600, - "curveSeeds": { - "c1": 18.250354953722958, - "c2": -5.487186804097542, - "c3": -2.115692967727412, - "c4": 18.257623108870934, - "c5": 8.729317452075918, - "c6": -12.750578483484574, - "c7": -5.521055037521299 + "points": { + "c1": 1.3732061427383329, + "c2": 0.30893415509769184, + "c3": -1.9380244618030957, + "c4": 18.061804109811465, + "c5": 7.993080741296094, + "c6": 16.739768287949975, + "c7": 0.28066759408528696 }, - "vertexSeeds": { - "c1": 5.1114905792328145, - "c2": 5.017192283179405, - "c3": 5.064588058245859, - "c4": 5.117494198997994, - "c5": 4.758906364234569, - "c6": 5.054527350556872, - "c7": 5.089852850135026 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -114405,23 +114405,23 @@ "year": 1739, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 3.284910061573072, - "c2": -9.939216569600514, - "c3": 30.64399506211862, - "c4": -3.775877438746548, - "c5": -36.458190712699164, - "c6": 11.22681744828688, - "c7": -27.934766035222278 + "points": { + "c1": -35.111822916886624, + "c2": -21.104613438640587, + "c3": -32.74003479863282, + "c4": -40.72075852561374, + "c5": -17.146650422038803, + "c6": -12.758206860664782, + "c7": -1.9248039251454898 }, - "vertexSeeds": { - "c1": 1.5593758253925598, - "c2": 1.4983570100195158, - "c3": 1.4313321212817303, - "c4": 1.5766861035474817, - "c5": 1.472550501804561, - "c6": 1.4211793905951569, - "c7": 1.6235593080891078 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.357836338418862, + "c3": 1.9648636153490513, + "c4": 1.5718908922792438, + "c5": 1.1789181692094328, + "c6": 0.7859454461396219, + "c7": 0.39297272306981096 }, "rgb": [58, 15, 49] }, @@ -114432,23 +114432,23 @@ "year": 1739, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -2.1410023896240062, - "c2": -42.17518612381363, - "c3": 8.295088956659754, - "c4": 22.760768846367505, - "c5": 25.055579358685343, - "c6": -45.86569313503609, - "c7": 26.087152602339337 + "points": { + "c1": -12.785559980122713, + "c2": -7.621777614196674, + "c3": -45.694304298061645, + "c4": 3.4086655535481327, + "c5": 5.653836145186851, + "c6": 36.62277888854829, + "c7": 37.743178000133746 }, - "vertexSeeds": { - "c1": 4.922891671470287, - "c2": 4.984854522211759, - "c3": 5.1051516772703405, - "c4": 4.639138249554027, - "c5": 4.83191280027594, - "c6": 4.93904622959939, - "c7": 4.991567064298033 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -114459,23 +114459,23 @@ "year": 1739, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": -21.307674611380087, - "c2": 48.8578229837288, - "c3": 29.947828986523525, - "c4": 40.262305902658916, - "c5": -25.77318968054923, - "c6": 1.166125825580849, - "c7": 42.80991887716443 + "points": { + "c1": 29.94586699945976, + "c2": -27.66941526515735, + "c3": 44.901932278578975, + "c4": 5.481099559281233, + "c5": -33.9607646954546, + "c6": 43.81834741278548, + "c7": 20.897899299113725 }, - "vertexSeeds": { - "c1": 4.94262728572941, - "c2": 6.727932831054167, - "c3": 5.737685902370004, - "c4": 7.28442284510659, - "c5": 7.8291059457858925, - "c6": 7.409563856480612, - "c7": 6.999232275301998 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778088, + "c3": 10.217290799815071, + "c4": 8.173832639852057, + "c5": 6.130374479889044, + "c6": 4.08691631992603, + "c7": 2.043458159963013 }, "rgb": [222, 0, 59] }, @@ -114486,23 +114486,23 @@ "year": 1739, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": 18.707736708787756, - "c2": -45.896683252102676, - "c3": -4.42479520179829, - "c4": -25.582888413626236, - "c5": -13.936903097129523, - "c6": 44.04655248902241, - "c7": 1.108187666852551 + "points": { + "c1": -46.13599834816716, + "c2": -23.03410144807955, + "c3": -37.24250801829271, + "c4": 32.135960521526975, + "c5": 49.43263669487667, + "c6": -11.996682036371425, + "c7": 23.001920158375803 }, - "vertexSeeds": { - "c1": 4.352330355045606, - "c2": 4.263024009191636, - "c3": 4.0603816005878635, - "c4": 4.110510909863134, - "c5": 3.820413781962967, - "c6": 3.8901725460736234, - "c7": 3.814836172559809 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -114513,23 +114513,23 @@ "year": 1741, "resistanceReported": false, "duration": 72316800, - "curveSeeds": { - "c1": -36.12483171626313, - "c2": 81.8307926331002, - "c3": -20.739918785661885, - "c4": -31.648741229975897, - "c5": -60.852555431619834, - "c6": 20.02107510937165, - "c7": 52.914943813239745 + "points": { + "c1": 40.04755240009345, + "c2": 89.49503253731953, + "c3": 88.41236102954639, + "c4": 57.55363582137295, + "c5": -72.90321663854553, + "c6": -73.57234492106429, + "c7": 77.56877653131733 }, - "vertexSeeds": { - "c1": 4.282489241978647, - "c2": 5.0848298190318495, - "c3": 4.837380813372726, - "c4": 4.317170757377571, - "c5": 5.04906055375182, - "c6": 5.00327715032004, - "c7": 5.174289748270473 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -114540,23 +114540,23 @@ "year": 1739, "resistanceReported": false, "duration": 6480000, - "curveSeeds": { - "c1": -16.711780682506095, - "c2": 6.347041087019669, - "c3": -5.718904030762447, - "c4": -4.717312095990039, - "c5": -15.239399500726348, - "c6": 6.5713122222844795, - "c7": -9.26218906371582 + "points": { + "c1": 12.882143558954592, + "c2": -18.858243037364925, + "c3": 16.447671909089365, + "c4": -0.405191406078945, + "c5": 2.625141198021602, + "c6": -13.246081457383532, + "c7": -12.405699203370034 }, - "vertexSeeds": { - "c1": 4.673863222864643, - "c2": 5.176973946617112, - "c3": 4.632257067791794, - "c4": 4.296469779179662, - "c5": 4.958688654497612, - "c6": 5.003630308969521, - "c7": 4.379744202074323 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -114567,23 +114567,23 @@ "year": 1739, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": 2.6064575258449487, - "c2": 4.045362623951814, - "c3": -8.97702277797411, - "c4": -14.680620576335283, - "c5": 14.82328077727433, - "c6": 16.02984536738568, - "c7": -3.1241240274356343 + "points": { + "c1": 10.544441741401354, + "c2": 5.180467691023626, + "c3": -2.9429070967727586, + "c4": 11.433736443302529, + "c5": 15.071801025346137, + "c6": 5.521039325726878, + "c7": 4.920532176176618 }, - "vertexSeeds": { - "c1": 4.443665023167402, - "c2": 5.127909211966256, - "c3": 4.934734715837524, - "c4": 4.614650621103119, - "c5": 4.612876715957462, - "c6": 4.778656392418391, - "c7": 4.394941261421272 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -114594,23 +114594,23 @@ "year": 1739, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": -11.764960243763435, - "c2": -15.153863367369446, - "c3": 12.354596216854816, - "c4": -15.694799042612157, - "c5": 15.576024984492317, - "c6": 1.3620407066172646, - "c7": 11.319979192664256 + "points": { + "c1": 11.640667141719753, + "c2": -15.178922373338793, + "c3": 16.552757614195567, + "c4": -7.889894953020072, + "c5": 17.20595930384994, + "c6": -2.696113243944124, + "c7": -7.9717149184581135 }, - "vertexSeeds": { - "c1": 3.1408070105679196, - "c2": 3.0709140843331992, - "c3": 3.1933001573954645, - "c4": 3.0055974633632343, - "c5": 2.965724945299895, - "c6": 3.217228261433123, - "c7": 3.2682528036483967 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [222, 0, 59] }, @@ -114621,23 +114621,23 @@ "year": 1739, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 7.551478869351207, - "c2": -20.392125307886097, - "c3": 16.128062886982725, - "c4": -22.24465217557837, - "c5": -32.20794519818996, - "c6": -35.93050763555055, - "c7": 1.447100487402892 + "points": { + "c1": 23.928237576665047, + "c2": -40.97879176788981, + "c3": 5.856892643000542, + "c4": 13.042896875470895, + "c5": 3.010816077620781, + "c6": 3.8516770068940858, + "c7": -11.532580404236807 }, - "vertexSeeds": { - "c1": 4.433686000841688, - "c2": 4.4874564448377, - "c3": 4.199467529441443, - "c4": 4.946908471370129, - "c5": 4.612049741600151, - "c6": 4.076739649894323, - "c7": 4.815867851438276 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.10124826629681, + "c3": 5.917706888580673, + "c4": 4.734165510864539, + "c5": 3.550624133148405, + "c6": 2.3670827554322673, + "c7": 1.1835413777161337 }, "rgb": [77, 76, 132] }, @@ -114648,23 +114648,23 @@ "year": 1739, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 29.17996381333058, - "c2": 31.836657456068117, - "c3": -30.880316972351782, - "c4": 46.471734335356196, - "c5": 8.34773386649124, - "c6": -42.508497629575636, - "c7": 2.3082697893778388 + "points": { + "c1": 37.07027197588382, + "c2": -4.753768130865971, + "c3": 17.697706002174193, + "c4": -31.503372500640435, + "c5": 43.227257556187844, + "c6": 9.938229278901467, + "c7": 30.943147547817226 }, - "vertexSeeds": { - "c1": 4.926160656109392, - "c2": 4.448829130181342, - "c3": 5.162690613325461, - "c4": 4.50609350279971, - "c5": 4.489019763703537, - "c6": 4.978561768102387, - "c7": 4.998228833315143 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -114675,23 +114675,23 @@ "year": 1739, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -13.53910560223165, - "c2": 14.179080710612098, - "c3": 26.114435889844543, - "c4": 30.461871876934424, - "c5": -30.6494205021057, - "c6": 29.403281423542367, - "c7": 2.049335078563054 + "points": { + "c1": -0.10246152786615426, + "c2": -4.903526647871708, + "c3": -19.340983150435992, + "c4": -21.393812496544342, + "c5": -20.42689033265119, + "c6": 19.860981944453847, + "c7": 18.180304141698343 }, - "vertexSeeds": { - "c1": 2.687963291308451, - "c2": 2.705797174447558, - "c3": 2.612550781543408, - "c4": 2.7159227657618095, - "c5": 2.6433610163647447, - "c6": 2.6732281715203596, - "c7": 2.656981343687666 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712864, + "c3": 3.2593619972260686, + "c4": 2.6074895977808503, + "c5": 1.955617198335654, + "c6": 1.303744798890436, + "c7": 0.651872399445218 }, "rgb": [238, 201, 159] }, @@ -114702,23 +114702,23 @@ "year": 1740, "resistanceReported": false, "duration": 61257600, - "curveSeeds": { - "c1": -14.024593937688756, - "c2": 16.044624331781662, - "c3": 15.782440031106432, - "c4": -6.690637176359672, - "c5": 66.32453218933759, - "c6": 13.70172129718489, - "c7": 5.071648539492614 + "points": { + "c1": -58.15231328780929, + "c2": 34.9711718075461, + "c3": 34.61233985448355, + "c4": -22.24244588408464, + "c5": 65.82023778283036, + "c6": 58.26860559784245, + "c7": -29.539512259190445 }, - "vertexSeeds": { - "c1": 1.3103715742277566, - "c2": 1.2526108630704116, - "c3": 1.3583900357078553, - "c4": 1.2810641491159767, - "c5": 1.3424749605817121, - "c6": 1.2823032063626252, - "c7": 1.3561732107074682 + "offsets": { + "c1": 2.2977346278317152, + "c2": 1.9694868238557544, + "c3": 1.641239019879799, + "c4": 1.312991215903838, + "c5": 0.9847434119278772, + "c6": 0.6564956079519217, + "c7": 0.3282478039759609 }, "rgb": [77, 76, 132] }, @@ -114729,23 +114729,23 @@ "year": 1739, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": 19.37009000306814, - "c2": 15.847871265015154, - "c3": -4.299373921425968, - "c4": 14.5783382146254, - "c5": 17.901406492868343, - "c6": -11.261303621375449, - "c7": 2.697544204349118 + "points": { + "c1": -8.055667708719742, + "c2": 3.6107734862629854, + "c3": 20.598670784730455, + "c4": -13.872091801858932, + "c5": 11.015547684079035, + "c6": 10.452466046523046, + "c7": 11.003253944282779 }, - "vertexSeeds": { - "c1": 9.686046774426613, - "c2": 9.40867665494813, - "c3": 9.67667521400841, - "c4": 9.350926410819659, - "c5": 9.186135814409752, - "c6": 9.328553634026225, - "c7": 9.369517758888962 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110942, + "c3": 11.558021266759134, + "c4": 9.246417013407294, + "c5": 6.934812760055488, + "c6": 4.623208506703647, + "c7": 2.311604253351808 }, "rgb": [77, 76, 132] }, @@ -114756,23 +114756,23 @@ "year": 1739, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -37.070165963094134, - "c2": 32.38758743052807, - "c3": 11.533463791932476, - "c4": -2.5876236136979855, - "c5": -6.033775795220819, - "c6": 19.76255652347045, - "c7": 36.825201052296705 + "points": { + "c1": 31.443196334269118, + "c2": 39.270605517003986, + "c3": -21.175383002518643, + "c4": -27.23042462181674, + "c5": 39.86864257710927, + "c6": 18.76556266343168, + "c7": -18.180517654514563 }, - "vertexSeeds": { - "c1": 5.103489667694736, - "c2": 4.692892201410296, - "c3": 4.742925229480541, - "c4": 4.730811180833087, - "c5": 5.131643969607008, - "c6": 5.267013142672542, - "c7": 5.060774719360747 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -114783,23 +114783,23 @@ "year": 1739, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": -4.127327365139484, - "c2": 5.620209077163654, - "c3": 5.662299261132048, - "c4": 13.499206488802361, - "c5": 5.067236946831784, - "c6": -3.0705103715076056, - "c7": -9.746793939280064 + "points": { + "c1": 4.470765936325478, + "c2": -15.246074504962106, + "c3": 3.593972419734012, + "c4": -13.355465918400938, + "c5": -9.567378388191488, + "c6": -7.053530812846807, + "c7": 8.815422194418328 }, - "vertexSeeds": { - "c1": 5.437363888290551, - "c2": 5.470665292072725, - "c3": 5.5725666821142585, - "c4": 5.451554137154257, - "c5": 5.684129146678424, - "c6": 5.4682696223808, - "c7": 5.636413142038764 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [238, 201, 159] }, @@ -114810,23 +114810,23 @@ "year": 1739, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -39.42815781596514, - "c2": -23.0387682588404, - "c3": 22.35899047820576, - "c4": -36.953381491922805, - "c5": 16.489263804859135, - "c6": -23.803857572338238, - "c7": -34.36997696056243 + "points": { + "c1": 41.77352911130089, + "c2": 17.01434374275724, + "c3": 20.23136977691678, + "c4": -33.56740240718321, + "c5": 8.945645921550287, + "c6": -5.956829358533199, + "c7": -36.92931662365891 }, - "vertexSeeds": { - "c1": 8.047380968252272, - "c2": 8.126305431806813, - "c3": 8.216951878722988, - "c4": 8.070231500137963, - "c5": 8.184184497075947, - "c6": 8.002436250429252, - "c7": 8.101305492268462 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094292, + "c3": 9.82431807674527, + "c4": 7.859454461396195, + "c5": 5.894590846047172, + "c6": 3.9297272306980977, + "c7": 1.9648636153490748 }, "rgb": [86, 146, 138] }, @@ -114837,23 +114837,23 @@ "year": 1739, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -2.23063141471966, - "c2": 34.21516408364972, - "c3": 36.56341040886537, - "c4": -39.97751131997856, - "c5": 25.80324061740543, - "c6": 37.789860676279055, - "c7": -9.449148887352848 + "points": { + "c1": -37.197536451505144, + "c2": 39.13904773981155, + "c3": -10.390832933814771, + "c4": -24.61461414111572, + "c5": 5.197127850105467, + "c6": 45.66924741913544, + "c7": -2.24698791095868 }, - "vertexSeeds": { - "c1": 9.523944302569905, - "c2": 9.722973885232474, - "c3": 10.013551538548606, - "c4": 9.288409168599697, - "c5": 9.0259764987684, - "c6": 9.966545093920377, - "c7": 9.318765029816529 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116497, + "c3": 12.135922330097086, + "c4": 9.708737864077674, + "c5": 7.281553398058248, + "c6": 4.854368932038837, + "c7": 2.4271844660194257 }, "rgb": [238, 201, 159] }, @@ -114864,23 +114864,23 @@ "year": 1739, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -24.70167932756852, - "c2": -23.29342214241851, - "c3": -12.143182288001906, - "c4": -27.789737923505072, - "c5": 29.843860389442394, - "c6": 6.551324985197024, - "c7": 2.3584761018552705 + "points": { + "c1": -19.83135400740398, + "c2": -6.948594496898622, + "c3": 32.84822222898906, + "c4": -13.279757945869918, + "c5": -31.516738736447394, + "c6": 14.2807541037104, + "c7": 15.709633982587846 }, - "vertexSeeds": { - "c1": 7.3010860008671905, - "c2": 7.000328836349697, - "c3": 6.141822799530085, - "c4": 7.291633534004694, - "c5": 7.0914506587622785, - "c6": 6.590328355875695, - "c7": 6.823769337014355 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736938, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.513638465094777, + "c7": 1.7568192325473933 }, "rgb": [58, 15, 49] }, @@ -114891,23 +114891,23 @@ "year": 1739, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 26.094040834527135, - "c2": -18.81204514806997, - "c3": -3.6220734706879867, - "c4": 17.569226447870733, - "c5": 21.758502625881604, - "c6": 21.758702588350488, - "c7": 19.398624536134704 + "points": { + "c1": 20.09332956743235, + "c2": 14.011901866125555, + "c3": 5.8098538278681815, + "c4": 33.75167792781886, + "c5": -0.14718715097916402, + "c6": 13.569427414959236, + "c7": -33.01258362020451 }, - "vertexSeeds": { - "c1": 10.555288519524586, - "c2": 10.654164744457548, - "c3": 10.57027283702818, - "c4": 10.489727225134715, - "c5": 10.611128787746862, - "c6": 10.5350144820671, - "c7": 10.596689378295201 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122124, + "c3": 12.71382339343502, + "c4": 10.171058714748083, + "c5": 7.628294036060978, + "c6": 5.085529357374042, + "c7": 2.5427646786871048 }, "rgb": [86, 146, 138] }, @@ -114918,23 +114918,23 @@ "year": 1740, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": 18.03392124787883, - "c2": 24.319475438349365, - "c3": 0.8344992069697099, - "c4": 47.49514307778514, - "c5": -12.679102483170588, - "c6": -33.83099136825829, - "c7": 23.577781863882898 + "points": { + "c1": 5.329159747121331, + "c2": 20.58550390919823, + "c3": 27.547713108359382, + "c4": -51.3694588732099, + "c5": 27.183595980499938, + "c6": 12.418111530335509, + "c7": 23.791472307144637 }, - "vertexSeeds": { - "c1": 6.763955665710161, - "c2": 6.950025985067675, - "c3": 8.148744305818536, - "c4": 7.496550786701161, - "c5": 7.9315353729673115, - "c6": 7.941181462026229, - "c7": 7.7453923259111335 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933422, + "c3": 9.731853906611182, + "c4": 7.785483125288952, + "c5": 5.839112343966711, + "c6": 3.892741562644471, + "c7": 1.946370781322231 }, "rgb": [222, 0, 59] }, @@ -114945,23 +114945,23 @@ "year": 1740, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": -42.34923499776479, - "c2": 37.048415606985074, - "c3": 24.710933770301892, - "c4": -41.57827244352668, - "c5": -33.22046209613529, - "c6": 26.957959242411846, - "c7": -7.748354606365673 + "points": { + "c1": 36.019857281807035, + "c2": 22.496997862204722, + "c3": 48.290548726683156, + "c4": -4.838756545997185, + "c5": 20.28217879318491, + "c6": -1.6473632527392184, + "c7": -7.234922139468573 }, - "vertexSeeds": { - "c1": 5.214968081330657, - "c2": 5.0145514080415525, - "c3": 5.141615302121568, - "c4": 4.640035282457913, - "c5": 4.694461415151411, - "c6": 4.45158184303735, - "c7": 4.279218733567772 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -114972,23 +114972,23 @@ "year": 1739, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 1.2909538191378758, - "c2": 23.01903162332924, - "c3": -25.077876483193887, - "c4": 24.033527135528857, - "c5": -7.017046752333314, - "c6": 20.780977472844036, - "c7": -19.345137670960113 + "points": { + "c1": 26.509493104583356, + "c2": -31.85014462466931, + "c3": -15.497636491842037, + "c4": 19.755555872994584, + "c5": 14.436518858199335, + "c6": 5.225406294280106, + "c7": -9.445776074738575 }, - "vertexSeeds": { - "c1": 6.087296352910572, - "c2": 4.799702192255114, - "c3": 4.8336077602979355, - "c4": 4.9929101112736545, - "c5": 5.167081539486492, - "c6": 5.460604247523942, - "c7": 4.86794141436331 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871014, + "c3": 7.397133610725845, + "c4": 5.917706888580676, + "c5": 4.438280166435507, + "c6": 2.958853444290338, + "c7": 1.479426722145169 }, "rgb": [58, 15, 49] }, @@ -114999,23 +114999,23 @@ "year": 1739, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -11.834409321271437, - "c2": -26.631147526755477, - "c3": -29.396941991985955, - "c4": -11.746509228801969, - "c5": 2.415956598940369, - "c6": 37.88962311870206, - "c7": 16.72148892569497 + "points": { + "c1": -11.180848327551711, + "c2": -36.03515246711975, + "c3": -37.591586529971735, + "c4": 9.671315664464167, + "c5": -5.1878949611630105, + "c6": 21.636799026941873, + "c7": -17.0760627939726 }, - "vertexSeeds": { - "c1": 5.399564239490351, - "c2": 5.52719833271471, - "c3": 5.430093497810224, - "c4": 5.539536637745807, - "c5": 5.810355993204043, - "c6": 5.566290491712104, - "c7": 5.636403857283055 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227472, + "c3": 7.027276930189549, + "c4": 5.621821544151648, + "c5": 4.2163661581137255, + "c6": 2.810910772075824, + "c7": 1.4054553860379222 }, "rgb": [58, 15, 49] }, @@ -115026,23 +115026,23 @@ "year": 1740, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -6.075160728192699, - "c2": -21.669259187060455, - "c3": -25.655942631925505, - "c4": -15.664202900154997, - "c5": 5.81424215540703, - "c6": -30.640666191040523, - "c7": -21.681022833619327 + "points": { + "c1": 5.340992792516914, + "c2": 19.178651770419165, + "c3": -44.133866484175904, + "c4": -43.03867879048159, + "c5": 40.11293925934544, + "c6": -9.221794500771807, + "c7": -42.68067740280127 }, - "vertexSeeds": { - "c1": 4.545238712604632, - "c2": 4.809848616111675, - "c3": 4.432337079442963, - "c4": 4.707679796291651, - "c5": 5.153399419664119, - "c6": 4.255996203261154, - "c7": 5.204219797960772 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -115053,23 +115053,23 @@ "year": 1739, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -27.220150878046812, - "c2": 32.971826132911524, - "c3": 22.83717725054965, - "c4": 10.639354054769058, - "c5": -9.085651364272636, - "c6": 44.860291159788396, - "c7": 39.31715916462783 + "points": { + "c1": -4.02569951186657, + "c2": -45.86409885477198, + "c3": 45.979812483450424, + "c4": 47.01838719370131, + "c5": 19.022369120354874, + "c6": 2.5200247516463037, + "c7": -39.833779136576695 }, - "vertexSeeds": { - "c1": 7.412609440690901, - "c2": 8.915373604478631, - "c3": 7.855623643312408, - "c4": 7.609591553898965, - "c5": 9.649337451888801, - "c6": 9.19218268919934, - "c7": 9.398459343509746 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231622, + "c3": 11.627369394359686, + "c4": 9.301895515487747, + "c5": 6.9764216366158145, + "c6": 4.650947757743873, + "c7": 2.325473878871933 }, "rgb": [58, 15, 49] }, @@ -115080,23 +115080,23 @@ "year": 1739, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -25.664210698995227, - "c2": 40.73750521189293, - "c3": -26.35686902950903, - "c4": 37.7863281604182, - "c5": 20.902528745012454, - "c6": 4.405325152166633, - "c7": -22.269509562017813 + "points": { + "c1": 37.810944950799744, + "c2": -8.037750527024286, + "c3": 32.584004654424966, + "c4": 34.900218350804614, + "c5": 28.00449135836167, + "c6": 17.230695766440974, + "c7": 17.656892836403003 }, - "vertexSeeds": { - "c1": 2.526604375643893, - "c2": 2.401626018029609, - "c3": 2.3703381714029215, - "c4": 2.802243747769252, - "c5": 2.510368178068296, - "c6": 2.4827012833862776, - "c7": 2.343653478212234 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.3749422098936646, + "c4": 2.699953767914935, + "c5": 2.0249653259362006, + "c6": 1.3499768839574662, + "c7": 0.6749884419787344 }, "rgb": [86, 146, 138] }, @@ -115107,23 +115107,23 @@ "year": 1739, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -19.735218898923804, - "c2": 24.424801977945336, - "c3": 18.75468778103194, - "c4": 12.26331796983866, - "c5": 21.430400211551635, - "c6": -2.63490998033107, - "c7": -12.878020432268954 + "points": { + "c1": -25.06111116283818, + "c2": 25.71813689805426, + "c3": 27.982254867620412, + "c4": 24.75730372893066, + "c5": 29.66382545288195, + "c6": 29.99378143874454, + "c7": 29.30655214454653 }, - "vertexSeeds": { - "c1": 5.028120852491136, - "c2": 4.663813396176968, - "c3": 4.894114256301169, - "c4": 5.025855343885699, - "c5": 4.241995673989633, - "c6": 5.169650249758038, - "c7": 5.223258163848518 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -115134,23 +115134,23 @@ "year": 1739, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -11.284755421031196, - "c2": -28.56112561566943, - "c3": -15.004723153737952, - "c4": 21.069877882850726, - "c5": 20.517456863338538, - "c6": 12.168511425143798, - "c7": 16.932102995264657 + "points": { + "c1": -16.19076553450952, + "c2": 12.117389315099828, + "c3": -25.245330851410746, + "c4": 8.35708464646433, + "c5": -30.85755695256119, + "c6": -23.22401527529404, + "c7": 15.010510082291795 }, - "vertexSeeds": { - "c1": 7.1146687318959705, - "c2": 6.452014316868404, - "c3": 6.833177407363287, - "c4": 6.563155126924044, - "c5": 7.015847348688901, - "c6": 6.798174312768751, - "c7": 6.277738224741555 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.40221914008322, + "c3": 8.668515950069352, + "c4": 6.934812760055472, + "c5": 5.201109570041604, + "c6": 3.467406380027736, + "c7": 1.733703190013868 }, "rgb": [238, 201, 159] }, @@ -115161,23 +115161,23 @@ "year": 1739, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 14.86843620008785, - "c2": 19.524563742347127, - "c3": -20.422710387460363, - "c4": -22.982134502007625, - "c5": -19.035886670057316, - "c6": -26.66586492310919, - "c7": 21.826392183013894 + "points": { + "c1": 9.299123905608361, + "c2": -0.7516287043682084, + "c3": 13.264092992347663, + "c4": -15.36827000188099, + "c5": 11.774486192352711, + "c6": 17.283494591323525, + "c7": 19.8678481722717 }, - "vertexSeeds": { - "c1": 6.215281885302507, - "c2": 5.83625317172214, - "c3": 5.766185467216461, - "c4": 6.148261188415249, - "c5": 5.773634033070933, - "c6": 5.912998823004505, - "c7": 5.605888331810958 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -115188,23 +115188,23 @@ "year": 1740, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": 8.532250675252712, - "c2": 52.926787016365864, - "c3": -17.57216820317879, - "c4": -32.468218481094254, - "c5": 16.01947003433679, - "c6": -23.471476377608404, - "c7": -20.393692682153635 + "points": { + "c1": -45.70105212044089, + "c2": 13.699271173372892, + "c3": 31.64642409195359, + "c4": -44.793905814064324, + "c5": 20.9567582898042, + "c6": -39.06415752458709, + "c7": 15.068584528095485 }, - "vertexSeeds": { - "c1": 6.082030265988205, - "c2": 5.842041304511989, - "c3": 5.798328245409307, - "c4": 6.117883240737504, - "c5": 6.376259456955035, - "c6": 6.178910860684576, - "c7": 6.296033198662342 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -115215,23 +115215,23 @@ "year": 1739, "resistanceReported": false, "duration": 2332800, - "curveSeeds": { - "c1": 5.419490935233606, - "c2": 3.8717939917539557, - "c3": -12.203288729465188, - "c4": -6.862020290731958, - "c5": -10.634247972246467, - "c6": -3.989413242473736, - "c7": 11.43102264652895 + "points": { + "c1": 4.998505656688119, + "c2": 7.980422347026652, + "c3": -7.397538444084388, + "c4": -6.039475638313409, + "c5": 1.2053240418564073, + "c6": -1.2749321137171794, + "c7": -8.762675636862621 }, - "vertexSeeds": { - "c1": 4.908203477725913, - "c2": 5.147952313809871, - "c3": 4.7410015802722025, - "c4": 4.451839271069179, - "c5": 4.6430924840001415, - "c6": 4.542997803846861, - "c7": 4.258062302396494 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -115242,23 +115242,23 @@ "year": 1739, "resistanceReported": false, "duration": 2246400, - "curveSeeds": { - "c1": -2.777421677660829, - "c2": -3.5114583522432596, - "c3": -8.37663398745774, - "c4": -10.930317786355255, - "c5": 12.368461450068896, - "c6": 11.347410320323977, - "c7": -12.344184316981156 + "points": { + "c1": -0.11219619627252442, + "c2": 2.1305622229142784, + "c3": 7.256817795524906, + "c4": 0.8042398884674196, + "c5": -9.991354061231455, + "c6": 5.468850412821492, + "c7": -2.5633952712409602 }, - "vertexSeeds": { - "c1": 5.2222464086926985, - "c2": 4.70100651856745, - "c3": 5.213077682433743, - "c4": 4.492718527006648, - "c5": 4.949186201278738, - "c6": 4.500787993839378, - "c7": 4.451776287234306 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -115269,23 +115269,23 @@ "year": 1739, "resistanceReported": false, "duration": 1728000, - "curveSeeds": { - "c1": 3.3556152019540235, - "c2": 1.7923281163960514, - "c3": 7.953354184629465, - "c4": 10.449074917418805, - "c5": -7.429387078103307, - "c6": -1.1516705092156627, - "c7": -8.465755675594272 + "points": { + "c1": -12.24893260974882, + "c2": 1.6010296030731972, + "c3": 2.4723724228474353, + "c4": -3.6978741376379958, + "c5": -7.153480895236991, + "c6": 5.862183613487989, + "c7": -8.77979878943569 }, - "vertexSeeds": { - "c1": 4.8810795457866885, - "c2": 4.4154559136986755, - "c3": 4.9188468584198315, - "c4": 5.621172190486439, - "c5": 5.503776615807991, - "c6": 5.024871736233756, - "c7": 5.123786528367387 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026352, + "c3": 6.91169671752196, + "c4": 5.529357374017567, + "c5": 4.147018030513174, + "c6": 2.7646786870087814, + "c7": 1.3823393435043927 }, "rgb": [86, 146, 138] }, @@ -115296,23 +115296,23 @@ "year": 1739, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -11.517044537527056, - "c2": 32.57362582897389, - "c3": 29.686022515576965, - "c4": 34.27901798071258, - "c5": 1.7009260494900005, - "c6": -21.090027429547774, - "c7": -6.286905136052248 + "points": { + "c1": 37.55520012451932, + "c2": 4.188987119901164, + "c3": 21.777548517943018, + "c4": -3.40087644307399, + "c5": 7.74175068393523, + "c6": 7.178428215502258, + "c7": 15.073458381667152 }, - "vertexSeeds": { - "c1": 4.7603977736806025, - "c2": 5.071199937174726, - "c3": 4.520321330783669, - "c4": 4.22845647645435, - "c5": 4.880865322569042, - "c6": 4.490926563840666, - "c7": 5.085122273872411 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -115323,23 +115323,23 @@ "year": 1739, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 28.36850145947703, - "c2": 20.7230143369777, - "c3": 1.9087393597198954, - "c4": 32.07690471341188, - "c5": -15.04026969934391, - "c6": 27.93487883420795, - "c7": 2.394763459082924 + "points": { + "c1": 2.8006243433626636, + "c2": -32.2758733697715, + "c3": -25.46493967262324, + "c4": 27.25637597284593, + "c5": 37.180256008833595, + "c6": 19.206961421673967, + "c7": 30.81478317005616 }, - "vertexSeeds": { - "c1": 6.137528579411837, - "c2": 6.187106488644338, - "c3": 6.218005176980374, - "c4": 6.233104054517265, - "c5": 6.1936710739662875, - "c6": 6.139816228631114, - "c7": 6.146617465874264 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951499, + "c3": 7.443365695792867, + "c4": 5.954692556634333, + "c5": 4.4660194174757, + "c6": 2.9773462783171665, + "c7": 1.4886731391585337 }, "rgb": [222, 0, 59] }, @@ -115350,23 +115350,23 @@ "year": 1739, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -34.454167146581, - "c2": 27.482739564013727, - "c3": 34.89408330810589, - "c4": 20.471356171925024, - "c5": 34.33377138649227, - "c6": 24.630450637366522, - "c7": -40.16344103427995 + "points": { + "c1": -19.648217664843944, + "c2": -31.568208305752606, + "c3": -11.669803443381646, + "c4": -35.77982110364381, + "c5": 38.42625512787602, + "c6": 25.163716552838864, + "c7": -24.706201104716317 }, - "vertexSeeds": { - "c1": 4.763249860001426, - "c2": 5.018961619916338, - "c3": 4.981021070951019, - "c4": 4.90121173062186, - "c5": 4.338738160289855, - "c6": 4.9277663967287655, - "c7": 5.1564024965749615 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -115377,23 +115377,23 @@ "year": 1740, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": -48.648390136736765, - "c2": 12.430454009511507, - "c3": 34.67059165682811, - "c4": -50.19355534355587, - "c5": -34.44728400758975, - "c6": -24.988780969927785, - "c7": 19.25212930592781 + "points": { + "c1": -26.03467177910939, + "c2": 45.32481946149743, + "c3": 13.8990341679647, + "c4": -15.003318149901538, + "c5": -51.230107281140285, + "c6": 6.700539214466467, + "c7": 16.946216091147505 }, - "vertexSeeds": { - "c1": 3.4108061894834987, - "c2": 3.487564314853508, - "c3": 3.408310189377019, - "c4": 3.0625067301618167, - "c5": 4.091803936163927, - "c6": 3.174123290292289, - "c7": 3.8782417670250657 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653259, + "c3": 5.547850208044383, + "c4": 4.438280166435507, + "c5": 3.328710124826631, + "c6": 2.219140083217755, + "c7": 1.109570041608876 }, "rgb": [77, 76, 132] }, @@ -115404,23 +115404,23 @@ "year": 1740, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 1.6184131298682232, - "c2": -29.423696505960223, - "c3": 16.900227330003496, - "c4": 25.31357608131205, - "c5": -3.6951222658018565, - "c6": -39.31024766138115, - "c7": -31.094796798831467 + "points": { + "c1": 13.807323316905176, + "c2": 27.573567158402184, + "c3": 44.97004890241283, + "c4": 32.467068011384, + "c5": 17.997582640262664, + "c6": -26.3558782174404, + "c7": -40.31365066589181 }, - "vertexSeeds": { - "c1": 6.562774710743326, - "c2": 6.809427601777652, - "c3": 7.030515813683765, - "c4": 6.444207974257228, - "c5": 6.962691779046705, - "c6": 6.221007767627186, - "c7": 6.660717622275238 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324546, + "c3": 8.807212205270451, + "c4": 7.0457697642163675, + "c5": 5.284327323162273, + "c6": 3.522884882108179, + "c7": 1.7614424410540945 }, "rgb": [238, 201, 159] }, @@ -115431,23 +115431,23 @@ "year": 1739, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -9.068775371505232, - "c2": 3.42982320389158, - "c3": -29.034550088639207, - "c4": 2.4249749339784046, - "c5": -11.138698797823778, - "c6": 2.3930051194636874, - "c7": 2.9765069907419175 + "points": { + "c1": 11.540590691214533, + "c2": -32.680197426903504, + "c3": -36.45174385107794, + "c4": 0.6701337881301015, + "c5": 27.90329221847164, + "c6": 37.90288732314992, + "c7": -33.126147156513795 }, - "vertexSeeds": { - "c1": 1.2188073057740432, - "c2": 1.1837095668285393, - "c3": 1.1455536503104373, - "c4": 1.1797736702684225, - "c5": 1.0213897197154669, - "c6": 1.0153471566757166, - "c7": 1.0135223561469417 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742026, + "c3": 1.479426722145168, + "c4": 1.1835413777161345, + "c5": 0.8876560332871013, + "c6": 0.5917706888580679, + "c7": 0.29588534442903336 }, "rgb": [222, 0, 59] }, @@ -115458,23 +115458,23 @@ "year": 1739, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 26.170818805146876, - "c2": -24.690292673127885, - "c3": 22.070314362679806, - "c4": -16.593363465543867, - "c5": 0.9024818085393882, - "c6": -18.922556514350262, - "c7": -12.599891226010358 + "points": { + "c1": 19.412717624167147, + "c2": 25.462852390664676, + "c3": -26.47714423117096, + "c4": 26.491214286489818, + "c5": -9.426802385779293, + "c6": 5.713735405958278, + "c7": 11.314799483870797 }, - "vertexSeeds": { - "c1": 3.290645979072999, - "c2": 3.126753228276294, - "c3": 3.0183180612586678, - "c4": 3.3105499020654516, - "c5": 3.041388202105938, - "c6": 3.2747990175796673, - "c7": 3.2512847841542536 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719367, + "c5": 2.441054091539525, + "c6": 1.6273693943596834, + "c7": 0.8136846971798417 }, "rgb": [77, 76, 132] }, @@ -115485,23 +115485,23 @@ "year": 1740, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": 16.444401182860588, - "c2": -7.357815764663343, - "c3": 51.705873249389555, - "c4": -17.396163211202442, - "c5": -52.81634521924624, - "c6": -51.10316671151525, - "c7": 32.92881641442351 + "points": { + "c1": -18.62384983267811, + "c2": 41.7115356284242, + "c3": -16.81343734663983, + "c4": 37.54067716726176, + "c5": 28.955142947937233, + "c6": 37.46153964433226, + "c7": -14.550594983019266 }, - "vertexSeeds": { - "c1": 6.125046754215602, - "c2": 5.962396986578439, - "c3": 5.873041834318584, - "c4": 5.640255489664471, - "c5": 5.849882979694319, - "c6": 5.831183676192254, - "c7": 6.401920710603376 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -115512,23 +115512,23 @@ "year": 1739, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -12.98466597636451, - "c2": 13.83098039761321, - "c3": 0.45006976933430565, - "c4": -17.91335607500688, - "c5": -4.804437058351876, - "c6": -13.758940785179158, - "c7": -6.2431820776984175 + "points": { + "c1": -16.54533732483244, + "c2": 27.60216892613034, + "c3": 12.61314765357585, + "c4": -25.84722450380662, + "c5": 3.711767400005442, + "c6": -0.4580284400989605, + "c7": -1.5880883673247972 }, - "vertexSeeds": { - "c1": 2.859875864570563, - "c2": 2.8568085105266423, - "c3": 2.7713270759236175, - "c4": 2.5821353574598884, - "c5": 2.820800152240203, - "c6": 2.847486678838544, - "c7": 2.7076107542894214 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [238, 201, 159] }, @@ -115539,23 +115539,23 @@ "year": 1739, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 29.270206107392, - "c2": 26.46858001045421, - "c3": -1.7540605156864757, - "c4": 10.749408087247154, - "c5": 7.435467129978015, - "c6": 1.5498009592541209, - "c7": 26.860157283463224 + "points": { + "c1": 14.40263753841333, + "c2": -7.2655627732927, + "c3": 3.134080502593214, + "c4": -19.209720650875468, + "c5": 19.37268037707308, + "c6": -14.884115098551483, + "c7": -17.577102467963854 }, - "vertexSeeds": { - "c1": 3.872824165773244, - "c2": 3.9042195121384995, - "c3": 3.911011916114354, - "c4": 3.867990442575425, - "c5": 3.839012859334267, - "c6": 3.738119444600288, - "c7": 3.85237719313222 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165056, + "c3": 4.6925566343042036, + "c4": 3.754045307443371, + "c5": 2.8155339805825186, + "c6": 1.8770226537216854, + "c7": 0.9385113268608333 }, "rgb": [58, 15, 49] }, @@ -115566,23 +115566,23 @@ "year": 1739, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -5.046464385100535, - "c2": 20.106126348364498, - "c3": -14.133629904169709, - "c4": -7.0526012722186735, - "c5": 4.741380812272524, - "c6": 9.693419972553436, - "c7": -26.464641150155252 + "points": { + "c1": 6.256310662149815, + "c2": -13.348552437308019, + "c3": -26.382394098280358, + "c4": -26.96987551625081, + "c5": 16.160432216572588, + "c6": -8.706033462841418, + "c7": -24.44655625011864 }, - "vertexSeeds": { - "c1": 5.793200340960531, - "c2": 6.280689718766589, - "c3": 6.3781256544595335, - "c4": 5.655279567467814, - "c5": 5.692645365383356, - "c6": 5.983657485137524, - "c7": 6.1751722740897925 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -115593,23 +115593,23 @@ "year": 1740, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -11.846764258615512, - "c2": -8.516324036935558, - "c3": 6.359034621216814, - "c4": 14.64639971941348, - "c5": 16.739016744443347, - "c6": -8.62052587499278, - "c7": -6.993232520252796 + "points": { + "c1": 10.795460251989589, + "c2": 27.345066116725334, + "c3": 21.01335963919138, + "c4": 1.2659325440031282, + "c5": 8.320830840820037, + "c6": 7.439925102406498, + "c7": -25.40658679004361 }, - "vertexSeeds": { - "c1": 4.45444298555824, - "c2": 4.94738244600191, - "c3": 4.489535069209346, - "c4": 4.5308231241127395, - "c5": 4.7939370594747235, - "c6": 4.802743712656245, - "c7": 4.423220864628646 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -115620,23 +115620,23 @@ "year": 1740, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": -31.236080619292835, - "c2": -0.42342904832621997, - "c3": -34.99334825509291, - "c4": -12.662816224519645, - "c5": -41.27448038413636, - "c6": 1.7349233215756783, - "c7": -1.463163741029696 + "points": { + "c1": 41.22267177900091, + "c2": -12.032827648996701, + "c3": -5.318887169535131, + "c4": 2.0345176102899103, + "c5": 53.307873626955036, + "c6": 32.67094850329455, + "c7": -33.582523783365275 }, - "vertexSeeds": { - "c1": 6.529611385736103, - "c2": 6.773822943510673, - "c3": 6.208770157552091, - "c4": 6.301869513749389, - "c5": 6.860885515748632, - "c6": 6.779379706213237, - "c7": 6.64510437484356 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [222, 0, 59] }, @@ -115647,23 +115647,23 @@ "year": 1741, "resistanceReported": false, "duration": 71452800, - "curveSeeds": { - "c1": -84.0863311203254, - "c2": 76.5427788944083, - "c3": 33.92402591153366, - "c4": 41.57704104041564, - "c5": -60.26190421214665, - "c6": -70.44973156880955, - "c7": -56.21232781269853 + "points": { + "c1": 16.362470686196147, + "c2": 48.237148277361015, + "c3": -43.16758984501949, + "c4": -16.057140853050072, + "c5": -44.8652851137511, + "c6": -23.9845818550763, + "c7": 8.616772826234026 }, - "vertexSeeds": { - "c1": 1.7145202136329087, - "c2": 0.3221648874843517, - "c3": 0.8779038542542993, - "c4": 0.3271830057291038, - "c5": 0.13617415447200118, - "c6": 1.4382765823830745, - "c7": 0.998532305532473 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022191, + "c3": 2.311604253351826, + "c4": 1.8492834026814606, + "c5": 1.3869625520110955, + "c6": 0.9246417013407303, + "c7": 0.4623208506703649 }, "rgb": [86, 146, 138] }, @@ -115674,23 +115674,23 @@ "year": 1740, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 4.478256865427966, - "c2": 20.784057724246082, - "c3": 30.602630199232387, - "c4": -29.48399295160222, - "c5": 27.5130060999903, - "c6": 29.785106929030825, - "c7": -35.96197574721836 + "points": { + "c1": -7.080738088548301, + "c2": 28.63695762751201, + "c3": 0.7780339499533255, + "c4": 26.723792629834612, + "c5": -3.9521750668760944, + "c6": 33.78533935483427, + "c7": -28.12146567008896 }, - "vertexSeeds": { - "c1": 4.531859798487499, - "c2": 5.23099616472683, - "c3": 4.403731777368867, - "c4": 4.514715805373547, - "c5": 4.2098263516107695, - "c6": 4.988212450307591, - "c7": 4.203580035576178 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -115701,23 +115701,23 @@ "year": 1739, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 26.769965122231625, - "c2": 34.559637638994175, - "c3": -23.19649277651313, - "c4": 1.147373439784431, - "c5": 23.118344907904138, - "c6": 19.914262669319555, - "c7": -27.31713883360063 + "points": { + "c1": -29.47832663184682, + "c2": -5.477819920724777, + "c3": 26.84330804862755, + "c4": -35.873296079678724, + "c5": 26.892594925095622, + "c6": -8.744385599321433, + "c7": -14.032069850049119 }, - "vertexSeeds": { - "c1": 5.722586224760157, - "c2": 6.225193722014808, - "c3": 5.604135323731855, - "c4": 5.880440745721169, - "c5": 5.646818381305283, - "c6": 6.13562744159532, - "c7": 5.562695432008095 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -115728,23 +115728,23 @@ "year": 1740, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 14.116362420763735, - "c2": 5.342768853047261, - "c3": 6.4558988215924344, - "c4": -14.785547458457955, - "c5": -20.570722973541134, - "c6": 16.53859007003208, - "c7": 10.659141493652434 + "points": { + "c1": 27.780931381660466, + "c2": 15.461585434721108, + "c3": 2.6264355325086797, + "c4": -5.245635563626593, + "c5": 22.978429272343554, + "c6": -5.43198699214998, + "c7": -40.218323913609034 }, - "vertexSeeds": { - "c1": 4.393769826782892, - "c2": 4.367731598091792, - "c3": 5.041564999845276, - "c4": 4.80854743076079, - "c5": 4.804249076228286, - "c6": 4.987184716230314, - "c7": 4.333454058950379 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -115755,23 +115755,23 @@ "year": 1739, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 11.367146428453452, - "c2": -9.657882258454556, - "c3": 10.14913130748112, - "c4": -3.77875126003806, - "c5": -24.326073680985644, - "c6": -3.6990650320980016, - "c7": -17.16247209700101 + "points": { + "c1": 30.54095359507855, + "c2": -6.627561953217185, + "c3": 5.028307879750649, + "c4": 26.255223813621058, + "c5": -0.8531081298910479, + "c6": 20.388533690223014, + "c7": 16.59207820313837 }, - "vertexSeeds": { - "c1": 3.369543173107486, - "c2": 3.262513171777174, - "c3": 3.3895454520985453, - "c4": 3.3016391372627107, - "c5": 3.351726322811052, - "c6": 3.364288264692686, - "c7": 3.315031000462976 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.9098474341192855, + "c3": 4.09153952843273, + "c4": 3.2732316227461906, + "c5": 2.4549237170596347, + "c6": 1.6366158113730953, + "c7": 0.8183079056865559 }, "rgb": [58, 15, 49] }, @@ -115782,23 +115782,23 @@ "year": 1740, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 12.293058788319286, - "c2": 27.719108373859378, - "c3": -2.1279827207055106, - "c4": -26.19646129032521, - "c5": 29.39982703113524, - "c6": -36.32128312269453, - "c7": -23.227480463011734 + "points": { + "c1": 33.28318553419921, + "c2": -37.80149947356453, + "c3": 22.14459923053628, + "c4": 11.016852027250792, + "c5": 7.907692621314375, + "c6": 15.187469618754662, + "c7": 40.59769153410229 }, - "vertexSeeds": { - "c1": 2.7153057701772454, - "c2": 1.796167169741432, - "c3": 1.8158507881803383, - "c4": 2.7905477744965426, - "c5": 1.675759768752722, - "c6": 3.037887162561616, - "c7": 2.4247503961008063 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435508, + "c3": 3.6985668053629217, + "c4": 2.9588534442903383, + "c5": 2.2191400832177526, + "c6": 1.4794267221451691, + "c7": 0.7397133610725846 }, "rgb": [238, 201, 159] }, @@ -115809,23 +115809,23 @@ "year": 1739, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -28.286598658502115, - "c2": 10.185089538648995, - "c3": 29.845034520735823, - "c4": 30.481740642841473, - "c5": -10.119349979014675, - "c6": 5.631659441952436, - "c7": 18.7786402261803 + "points": { + "c1": -16.930684130797673, + "c2": -36.92795123423414, + "c3": -23.01357622801811, + "c4": 12.143525465669349, + "c5": -15.192937942335558, + "c6": 3.634151982628538, + "c7": 35.238678309626934 }, - "vertexSeeds": { - "c1": 4.634369412122539, - "c2": 4.4720153722859735, - "c3": 4.699012764965676, - "c4": 4.668868552873581, - "c5": 4.7996528140055705, - "c6": 4.807451223019286, - "c7": 4.834197030985669 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055476, + "c3": 5.779010633379562, + "c4": 4.623208506703647, + "c5": 3.467406380027744, + "c6": 2.3116042533518293, + "c7": 1.1558021266759146 }, "rgb": [222, 0, 59] }, @@ -115836,23 +115836,23 @@ "year": 1739, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -17.841396343737443, - "c2": 9.661958415547737, - "c3": -7.788102418793219, - "c4": 21.836227043027925, - "c5": 3.2156034561099887, - "c6": -13.111037748481728, - "c7": -22.626048664997512 + "points": { + "c1": 34.72164772831262, + "c2": 0.8119002269006046, + "c3": -18.986747474614113, + "c4": -29.15461371621871, + "c5": -22.225324793014597, + "c6": 22.047761579651734, + "c7": 15.680729908870049 }, - "vertexSeeds": { - "c1": 7.266839378238342, - "c2": 7.266839378238342, - "c3": 7.266839378238342, - "c4": 7.266839378238342, - "c5": 7.266839378238342, - "c6": 7.266839378238342, - "c7": 7.266839378238342 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -115863,23 +115863,23 @@ "year": 1740, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 2.1815794185410127, - "c2": -31.61214311849986, - "c3": 21.95015127003326, - "c4": -37.31702565603318, - "c5": -11.841670202619127, - "c6": 23.151421900606394, - "c7": 31.1756848638107 + "points": { + "c1": -35.08341653284398, + "c2": 29.75350551059256, + "c3": -42.9146044201919, + "c4": -36.43859649056137, + "c5": 3.9118029371241505, + "c6": -12.406542101889574, + "c7": 1.9860805448695587 }, - "vertexSeeds": { - "c1": 7.27072878328647, - "c2": 6.614209466615344, - "c3": 6.514665530930862, - "c4": 7.092307503244684, - "c5": 6.540349137447585, - "c6": 7.2400960797852125, - "c7": 7.402725293841163 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169206, + "c3": 9.292649098474346, + "c4": 7.434119278779475, + "c5": 5.575589459084603, + "c6": 3.7170596393897424, + "c7": 1.8585298196948712 }, "rgb": [86, 146, 138] }, @@ -115890,23 +115890,23 @@ "year": 1740, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 40.62546571849313, - "c2": -21.44270673437115, - "c3": 14.32690398605532, - "c4": 35.76346448971664, - "c5": -10.867503878670867, - "c6": -14.358813934037364, - "c7": 16.56070572563428 + "points": { + "c1": 27.399244318523145, + "c2": 17.502820550094576, + "c3": -16.15873743549818, + "c4": -42.41132711712667, + "c5": 41.53183099645683, + "c6": -39.577464402900056, + "c7": 41.41420147192888 }, - "vertexSeeds": { - "c1": 6.550520828084295, - "c2": 6.633928812902387, - "c3": 7.611939833051084, - "c4": 7.134143868732775, - "c5": 7.0472805127588, - "c6": 7.467399735515625, - "c7": 7.531384975267233 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048542, + "c3": 9.223300970873785, + "c4": 7.378640776699028, + "c5": 5.533980582524271, + "c6": 3.689320388349514, + "c7": 1.844660194174757 }, "rgb": [77, 76, 132] }, @@ -115917,23 +115917,23 @@ "year": 1740, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": 22.44635065999033, - "c2": -44.345956910107226, - "c3": -21.944774647001495, - "c4": -0.06288236264440883, - "c5": 23.72559739099067, - "c6": -43.26994291065581, - "c7": 18.992698931235026 + "points": { + "c1": 19.47284727528863, + "c2": -35.8751425309255, + "c3": -30.02045001664381, + "c4": 8.692213055992184, + "c5": -1.444226701695733, + "c6": 47.804230673016136, + "c7": -0.6345259810115991 }, - "vertexSeeds": { - "c1": 9.693025076844267, - "c2": 10.12960343597797, - "c3": 7.9485078628268795, - "c4": 7.1794098254213035, - "c5": 9.653794644728084, - "c6": 9.73270994105642, - "c7": 7.013034116045049 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644938, + "c3": 13.014331946370781, + "c4": 10.411465557096625, + "c5": 7.808599167822469, + "c6": 5.205732778548312, + "c7": 2.602866389274156 }, "rgb": [58, 15, 49] }, @@ -115944,23 +115944,23 @@ "year": 1740, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 9.191354511156597, - "c2": -21.75969021670199, - "c3": 17.34291161809869, - "c4": -2.063486661056203, - "c5": -32.08068182307673, - "c6": -20.44957279455244, - "c7": 18.449891436618174 + "points": { + "c1": 23.653275383868227, + "c2": -11.48579528433677, + "c3": -20.862755329487328, + "c4": -23.75898673031581, + "c5": 38.49249731984611, + "c6": -28.21996015195398, + "c7": 2.9636118919109578 }, - "vertexSeeds": { - "c1": 3.8455224957443375, - "c2": 4.117565696229634, - "c3": 4.472305114602006, - "c4": 4.631100555812864, - "c5": 4.236947049307379, - "c6": 3.94229340929557, - "c7": 3.9245021608975534 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [222, 0, 59] }, @@ -115971,23 +115971,23 @@ "year": 1739, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -22.1344146780972, - "c2": 6.477434469269024, - "c3": 21.80022433891544, - "c4": -2.659748595222151, - "c5": 15.050950046576425, - "c6": 4.4799655613036755, - "c7": -10.159660698208196 + "points": { + "c1": 25.825518797202335, + "c2": 1.43102531067116, + "c3": -15.843493573557831, + "c4": -27.126258269921404, + "c5": 3.4239831110586465, + "c6": -6.0275913345814764, + "c7": -25.215584635017294 }, - "vertexSeeds": { - "c1": 4.647994614347477, - "c2": 5.176913931407322, - "c3": 4.418099394821379, - "c4": 4.437753031470953, - "c5": 4.587013598453736, - "c6": 5.125543104355829, - "c7": 4.846920172040041 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -115998,23 +115998,23 @@ "year": 1740, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": 8.594922940748688, - "c2": 29.02697153124992, - "c3": 43.97827674297901, - "c4": -41.670291061526264, - "c5": 27.630579107874176, - "c6": 33.47949105583687, - "c7": -20.856201785967066 + "points": { + "c1": -11.672795669362515, + "c2": 33.51713697143449, + "c3": -14.664559935068624, + "c4": -38.038768810954394, + "c5": -46.808297974526795, + "c6": -10.569529643888224, + "c7": -28.992403206957306 }, - "vertexSeeds": { - "c1": 1.1309593443757167, - "c2": 1.1958557097089741, - "c3": 1.0312707317193226, - "c4": 1.1874288786786285, - "c5": 1.2315830429393724, - "c6": 1.2303029373490788, - "c7": 1.2236840002726355 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144252, + "c3": 1.5025427646786869, + "c4": 1.20203421174295, + "c5": 0.9015256588072131, + "c6": 0.601017105871475, + "c7": 0.3005085529357381 }, "rgb": [58, 15, 49] }, @@ -116025,23 +116025,23 @@ "year": 1740, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 28.340258474102782, - "c2": 21.278347760228527, - "c3": 2.343025764812019, - "c4": -4.412514904479551, - "c5": -24.577691754055095, - "c6": -12.701325749966944, - "c7": 2.3769882380113856 + "points": { + "c1": 19.685549387077558, + "c2": -0.46282170896613195, + "c3": -37.767900298443976, + "c4": 35.93637609558181, + "c5": 30.72102885806717, + "c6": 1.4005585615418994, + "c7": -16.44870953053044 }, - "vertexSeeds": { - "c1": 12.747694933240764, - "c2": 12.890613666105319, - "c3": 12.704205086885695, - "c4": 12.828232148780529, - "c5": 12.836670957178468, - "c6": 12.606611454455225, - "c7": 12.59671010058631 + "offsets": { + "c1": 21.553398058252426, + "c2": 18.47434119278778, + "c3": 15.395284327323134, + "c4": 12.316227461858588, + "c5": 9.237170596393941, + "c6": 6.158113730929294, + "c7": 3.079056865464647 }, "rgb": [222, 0, 59] }, @@ -116052,23 +116052,23 @@ "year": 1740, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 2.4357649287940433, - "c2": 36.62044423163728, - "c3": 0.698283021430818, - "c4": -37.26998865742017, - "c5": -28.1371543430133, - "c6": 32.27018752838042, - "c7": -12.345487296985695 + "points": { + "c1": -16.287353237982906, + "c2": -22.593578189257006, + "c3": -33.444499128371895, + "c4": 27.199794107537784, + "c5": -1.6924638112930452, + "c6": -18.075857247718183, + "c7": -18.911557955131133 }, - "vertexSeeds": { - "c1": 5.126853764562015, - "c2": 4.4747194559021395, - "c3": 4.428702792985797, - "c4": 4.314202184286082, - "c5": 4.863249036566971, - "c6": 4.797190770702209, - "c7": 4.3256923649719585 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -116079,23 +116079,23 @@ "year": 1739, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -7.11116922721753, - "c2": -22.639644901161496, - "c3": -14.761072848725295, - "c4": -9.365375112719757, - "c5": -24.73164901903548, - "c6": 13.493837117319032, - "c7": 10.216118677634604 + "points": { + "c1": 15.891682972810472, + "c2": 23.643060626948056, + "c3": 3.2385633316537934, + "c4": 9.996070471947839, + "c5": 20.320566021101207, + "c6": 27.694368816005515, + "c7": -24.436171488640042 }, - "vertexSeeds": { - "c1": 3.8220776111863444, - "c2": 3.7299672628668485, - "c3": 3.7207764414940474, - "c4": 3.7327585973940347, - "c5": 3.7403864090504797, - "c6": 3.8563282129126413, - "c7": 3.7982809169661635 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044386, + "c3": 4.623208506703659, + "c4": 3.6985668053629315, + "c5": 2.7739251040221813, + "c6": 1.8492834026814542, + "c7": 0.9246417013407271 }, "rgb": [77, 76, 132] }, @@ -116106,23 +116106,23 @@ "year": 1739, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 14.58542337842508, - "c2": -7.567319943740927, - "c3": 12.04757978044093, - "c4": 15.45298895661561, - "c5": -15.597392621339596, - "c6": -10.33097723954318, - "c7": 22.10700699437211 + "points": { + "c1": -26.003169673492387, + "c2": -25.368991537175923, + "c3": 27.328887573193647, + "c4": 4.638805971424496, + "c5": 30.76556645500822, + "c6": 27.537120362745682, + "c7": 16.609380436070893 }, - "vertexSeeds": { - "c1": 6.156422955592106, - "c2": 6.264917780912843, - "c3": 5.592598853165243, - "c4": 6.200930152108364, - "c5": 5.919439245263998, - "c6": 5.814151035775286, - "c7": 5.616038033816751 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -116133,23 +116133,23 @@ "year": 1740, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -16.893914294615897, - "c2": -21.396507352883923, - "c3": 22.307034641847878, - "c4": 2.830435313741944, - "c5": 17.74835922151984, - "c6": -19.945230066207557, - "c7": -2.8969992462876704 + "points": { + "c1": -34.531646033488904, + "c2": 9.208999028656997, + "c3": -7.800749682606181, + "c4": 12.42423582784555, + "c5": 32.47376565116854, + "c6": -17.030766328758066, + "c7": -40.680633902314746 }, - "vertexSeeds": { - "c1": 8.024808237707155, - "c2": 7.900521197629074, - "c3": 8.012148191843252, - "c4": 7.985577923724413, - "c5": 8.471795108351326, - "c6": 8.521460509774327, - "c7": 8.457495918897468 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300978, + "c3": 10.517799352750806, + "c4": 8.414239482200651, + "c5": 6.310679611650481, + "c6": 4.207119741100326, + "c7": 2.1035598705501712 }, "rgb": [58, 15, 49] }, @@ -116160,23 +116160,23 @@ "year": 1740, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -12.91363954463431, - "c2": -28.587065449996896, - "c3": 8.294583504114044, - "c4": -16.78443885630335, - "c5": -16.822933677585997, - "c6": -19.79215273828445, - "c7": -22.86056846837617 + "points": { + "c1": 2.9508962022497442, + "c2": -9.323429986696024, + "c3": -20.01894723089314, + "c4": -2.2096357272903973, + "c5": 19.70158184402662, + "c6": -28.78462915222338, + "c7": -29.38428722010689 }, - "vertexSeeds": { - "c1": 4.3936059826157665, - "c2": 4.721958812877086, - "c3": 4.217187411930153, - "c4": 4.589088820747229, - "c5": 5.069075423545721, - "c6": 4.4278474031378225, - "c7": 4.782903989895635 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -116187,23 +116187,23 @@ "year": 1740, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 25.932051788278798, - "c2": -1.5982189988149358, - "c3": -27.361485145036593, - "c4": 20.054641623010347, - "c5": 35.301794893794195, - "c6": -20.588407952625488, - "c7": 36.40686563902359 + "points": { + "c1": -22.0594588060764, + "c2": -38.701342780112654, + "c3": 17.41681355815205, + "c4": -8.721770429476187, + "c5": 14.449444170676927, + "c6": 20.843354313827483, + "c7": 25.886563414417452 }, - "vertexSeeds": { - "c1": 4.62325048500781, - "c2": 4.451539853735389, - "c3": 3.89093017882874, - "c4": 4.441250471548295, - "c5": 4.29499377399621, - "c6": 4.065810783393533, - "c7": 3.849217128484229 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -116214,23 +116214,23 @@ "year": 1740, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -1.8462045565280398, - "c2": -23.4301824800799, - "c3": -0.7616310025742976, - "c4": 30.14429871865002, - "c5": 23.52298217357783, - "c6": -27.120332358209296, - "c7": 17.647829793875736 + "points": { + "c1": -18.367516981826643, + "c2": 20.142029954875255, + "c3": -29.301860547005354, + "c4": -5.238842688180714, + "c5": -13.33196397262287, + "c6": -10.876660285228748, + "c7": 26.412513647771796 }, - "vertexSeeds": { - "c1": 4.8311006913596914, - "c2": 5.1183353105438645, - "c3": 5.239758511282368, - "c4": 4.3561602764092004, - "c5": 4.3971905306009536, - "c6": 5.232172634984195, - "c7": 4.321829938394464 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -116241,23 +116241,23 @@ "year": 1740, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -15.460197175742067, - "c2": 27.77711726266655, - "c3": -29.06276242339728, - "c4": 18.267869646832487, - "c5": -22.208017048625432, - "c6": -14.797607729236027, - "c7": 6.3971712074016835 + "points": { + "c1": 26.93709979004629, + "c2": -28.392625489319265, + "c3": -0.9913525462418562, + "c4": 11.603522801148102, + "c5": 11.227631058004, + "c6": -14.24473474200905, + "c7": -4.937557989429589 }, - "vertexSeeds": { - "c1": 6.026640368091861, - "c2": 6.148011678915409, - "c3": 5.8917702241765495, - "c4": 5.548774732411015, - "c5": 6.13573367174434, - "c6": 6.285216232957778, - "c7": 5.719873287230556 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.20943134535368, + "c3": 7.674526121128061, + "c4": 6.1396208969024535, + "c5": 4.604715672676834, + "c6": 3.0698104484512267, + "c7": 1.5349052242256198 }, "rgb": [58, 15, 49] }, @@ -116268,23 +116268,23 @@ "year": 1740, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 39.71330905551349, - "c2": 18.67677357701426, - "c3": 21.569033288427605, - "c4": 2.572553346106723, - "c5": 14.342029978403296, - "c6": 7.8572704954405665, - "c7": 25.832036270027842 + "points": { + "c1": 3.853867925633743, + "c2": -6.180002306549319, + "c3": 17.19981489295678, + "c4": 29.130026942028252, + "c5": -16.111978484544494, + "c6": 37.61979189231651, + "c7": 12.912379500613753 }, - "vertexSeeds": { - "c1": 6.072673030071284, - "c2": 5.82516834130364, - "c3": 6.307255386229682, - "c4": 6.1815621944644485, - "c5": 6.033254562134842, - "c6": 6.0054054834889445, - "c7": 5.898881516538021 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [238, 201, 159] }, @@ -116295,23 +116295,23 @@ "year": 1740, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -25.441494418404268, - "c2": 8.237821414472236, - "c3": 29.98516304419543, - "c4": -29.216674742429024, - "c5": 8.479332517840376, - "c6": 8.419826512274, - "c7": -2.007221242314099 + "points": { + "c1": -31.138609732796244, + "c2": -25.15714858087241, + "c3": -32.75353122446945, + "c4": -10.498490003589417, + "c5": -27.186849756095356, + "c6": 19.494869812114196, + "c7": -9.265907881358551 }, - "vertexSeeds": { - "c1": 4.592815726063997, - "c2": 4.602078531009161, - "c3": 4.50804428935691, - "c4": 4.516213838788444, - "c5": 4.706877384678866, - "c6": 4.720950038308391, - "c7": 4.45311254534898 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -116322,23 +116322,23 @@ "year": 1740, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -30.783726408118987, - "c2": 17.168999337153735, - "c3": 4.48893418734653, - "c4": -30.274968298641383, - "c5": -1.3517786742256668, - "c6": 22.79184385443927, - "c7": -27.648690356475974 + "points": { + "c1": 22.039139051189004, + "c2": -29.160567072180772, + "c3": 13.355570153638602, + "c4": -17.82568239350913, + "c5": 27.10674893624126, + "c6": 20.02699181647094, + "c7": -13.34952959056244 }, - "vertexSeeds": { - "c1": 5.1332596929084975, - "c2": 4.3284471451233975, - "c3": 4.698956534864055, - "c4": 4.481209351111898, - "c5": 4.6626095741495615, - "c6": 5.023283998841478, - "c7": 4.50990739622526 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -116349,23 +116349,23 @@ "year": 1740, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 0.4357628682466128, - "c2": -7.387666213889254, - "c3": 34.14466206394716, - "c4": 10.764010228368733, - "c5": -7.961158570782949, - "c6": -33.70455123083594, - "c7": -9.683301496037615 + "points": { + "c1": 12.078488768890203, + "c2": -21.85789460438376, + "c3": -24.07064147002408, + "c4": 33.28357726435876, + "c5": 17.711726939586008, + "c6": 6.631363409321409, + "c7": 26.208294884009412 }, - "vertexSeeds": { - "c1": 5.936329937299713, - "c2": 6.2558185328426825, - "c3": 6.056889930896656, - "c4": 5.862636729414009, - "c5": 5.746971161350693, - "c6": 5.803983721304172, - "c7": 5.879014976600988 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -116376,23 +116376,23 @@ "year": 1740, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 14.89744293755534, - "c2": -31.44618329259296, - "c3": -27.019976119875338, - "c4": 0.4489242111159797, - "c5": -22.443861853251942, - "c6": 27.934897409157116, - "c7": 16.071311734028207 + "points": { + "c1": -35.872812228531, + "c2": 23.280352347778276, + "c3": 18.747048048367958, + "c4": -6.5540218191589155, + "c5": -10.156204267626151, + "c6": 5.932952486206595, + "c7": -6.593710926083304 }, - "vertexSeeds": { - "c1": 5.667979987027347, - "c2": 6.379138057830439, - "c3": 6.254152739973588, - "c4": 5.607451849298393, - "c5": 6.273845225422395, - "c6": 6.186236557964084, - "c7": 6.0048178662036245 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -116403,23 +116403,23 @@ "year": 1740, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 17.41790409609972, - "c2": -1.1185208316975306, - "c3": -15.179939332624311, - "c4": -22.230000865803653, - "c5": -18.10830675478794, - "c6": -12.928683954981391, - "c7": 4.374635751181785 + "points": { + "c1": 20.979809063818855, + "c2": 27.194816638828556, + "c3": 31.941065630721603, + "c4": -14.778007780528437, + "c5": 5.551406475759713, + "c6": 32.05166483406476, + "c7": 9.119065218663394 }, - "vertexSeeds": { - "c1": 2.9892888378614213, - "c2": 2.9861276048252976, - "c3": 3.3117831980622587, - "c4": 3.145059940715529, - "c5": 3.0342568582501426, - "c6": 3.10943261134953, - "c7": 3.1643932912578996 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [222, 0, 59] }, @@ -116430,23 +116430,23 @@ "year": 1739, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 22.511432092265164, - "c2": 25.05975063755918, - "c3": -11.397252107952468, - "c4": 12.323305558820326, - "c5": 15.544758995810614, - "c6": 17.08342700506321, - "c7": -28.13917420406176 + "points": { + "c1": 20.69609877022837, + "c2": 4.438488844140476, + "c3": 28.555156378387718, + "c4": -27.98462424719366, + "c5": 1.9750831693220299, + "c6": 22.20941941784046, + "c7": -3.7674266787475332 }, - "vertexSeeds": { - "c1": 1.9891891941814435, - "c2": 1.6340010100269347, - "c3": 1.7294870095963466, - "c4": 1.7954812438063148, - "c5": 1.7266974684501586, - "c6": 1.9140277997958302, - "c7": 1.8503733989405664 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.884882108183079, + "c3": 2.404068423485898, + "c4": 1.9232547387887198, + "c5": 1.4424410540915396, + "c6": 0.9616273693943588, + "c7": 0.4808136846971806 }, "rgb": [222, 0, 59] }, @@ -116457,23 +116457,23 @@ "year": 1740, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 22.869063780708963, - "c2": -25.993318327937097, - "c3": 22.897279431624675, - "c4": -9.359122198821812, - "c5": -11.111246111357275, - "c6": 23.388193181367534, - "c7": -29.5246589584244 + "points": { + "c1": -17.80218038705959, + "c2": 26.818080152818332, + "c3": 9.409992569511424, + "c4": 15.140146604342469, + "c5": -11.64299981441204, + "c6": 32.93336489638354, + "c7": 5.532276518297259 }, - "vertexSeeds": { - "c1": 4.437002825644588, - "c2": 4.227392144945813, - "c3": 4.5434543835593635, - "c4": 4.434632925383571, - "c5": 5.178652715841574, - "c6": 4.251159126228894, - "c7": 4.69728361030369 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -116484,23 +116484,23 @@ "year": 1739, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 34.11187490266574, - "c2": 20.663751507845582, - "c3": -16.02730200304138, - "c4": 20.53507732540597, - "c5": -6.717108274865893, - "c6": -10.54832203585213, - "c7": -26.41815903157173 + "points": { + "c1": -13.332346386603167, + "c2": 33.05350469340073, + "c3": -6.0959606734024305, + "c4": -4.579384987510139, + "c5": 33.31107979871771, + "c6": -11.580556925346112, + "c7": 17.69492601317156 }, - "vertexSeeds": { - "c1": 3.9358371447060776, - "c2": 4.063179826104858, - "c3": 4.067471691635382, - "c4": 4.086295216126219, - "c5": 4.537004969971583, - "c6": 3.995381502834386, - "c7": 4.205759484637193 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -116511,23 +116511,23 @@ "year": 1740, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": -27.013536580018226, - "c2": -15.519072581770317, - "c3": -27.629904569519102, - "c4": 48.97431304623594, - "c5": -0.1022981479376881, - "c6": 7.611641472185596, - "c7": -27.703235214685932 + "points": { + "c1": -27.2337435155829, + "c2": 30.031055564534746, + "c3": -11.078255434250728, + "c4": -52.461759975050796, + "c5": -22.75884655550401, + "c6": -5.909407829308137, + "c7": 9.856411843029996 }, - "vertexSeeds": { - "c1": 3.543048463108892, - "c2": 3.7211317111687108, - "c3": 3.4861726419085772, - "c4": 3.692395331718899, - "c5": 3.568910747978181, - "c6": 3.4793482845878203, - "c7": 3.447460560317444 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [86, 146, 138] }, @@ -116538,23 +116538,23 @@ "year": 1739, "resistanceReported": true, "duration": 10195200, - "curveSeeds": { - "c1": 9.80379818448466, - "c2": -16.71900844256578, - "c3": -3.318975884969028, - "c4": 18.708976789377477, - "c5": 15.867332223378416, - "c6": 18.976118352385175, - "c7": 3.2884004030011624 + "points": { + "c1": 2.815865119617108, + "c2": 0.72849127303191, + "c3": 13.554269695320738, + "c4": -7.063690713050441, + "c5": -12.474362650946722, + "c6": 18.869957353581118, + "c7": 11.257477479076424 }, - "vertexSeeds": { - "c1": 11.172593278650918, - "c2": 11.601400789203256, - "c3": 11.232394877045634, - "c4": 11.159441152362014, - "c5": 11.409036557865573, - "c6": 10.742382370352628, - "c7": 10.815918280547413 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.64355062413317, + "c3": 13.869625520110949, + "c4": 11.095700416088778, + "c5": 8.32177531206656, + "c6": 5.547850208044389, + "c7": 2.773925104022218 }, "rgb": [58, 15, 49] }, @@ -116565,23 +116565,23 @@ "year": 1740, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -5.279281892941093, - "c2": -4.522028367758608, - "c3": -34.739858513110455, - "c4": 9.661363301529853, - "c5": -7.682829311968398, - "c6": 32.13437700905817, - "c7": -35.58560617210619 + "points": { + "c1": -30.290348318226847, + "c2": -27.48941624419763, + "c3": 24.546753191963134, + "c4": 32.55615712990274, + "c5": 37.53626090617401, + "c6": 2.470946095088877, + "c7": 1.5571995325241517 }, - "vertexSeeds": { - "c1": 6.113304167933704, - "c2": 5.859868877130481, - "c3": 5.738338590904986, - "c4": 5.80947365959192, - "c5": 5.587944601665139, - "c6": 5.489085800946684, - "c7": 5.594834849381846 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -116592,23 +116592,23 @@ "year": 1740, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 42.46378339146839, - "c2": -35.76849508124003, - "c3": -32.49719209529508, - "c4": 31.363308033939283, - "c5": -30.105367284975102, - "c6": 31.23726249838233, - "c7": -44.37155588478787 + "points": { + "c1": -31.474025694738227, + "c2": -31.22247368450349, + "c3": -16.990295941677452, + "c4": 37.069301081465944, + "c5": -39.44870927565543, + "c6": 40.357052586736195, + "c7": 13.861280570395351 }, - "vertexSeeds": { - "c1": 7.273303222346807, - "c2": 7.82094822709306, - "c3": 7.250418037237913, - "c4": 7.168713145587639, - "c5": 6.905523418332074, - "c6": 7.58665218606183, - "c7": 7.0349844753960475 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370318, + "c3": 9.408229311141932, + "c4": 7.526583448913545, + "c5": 5.644937586685159, + "c6": 3.7632917244567725, + "c7": 1.8816458622283863 }, "rgb": [58, 15, 49] }, @@ -116619,23 +116619,23 @@ "year": 1740, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 1.15905096735586, - "c2": -16.124362757014595, - "c3": 23.17909539710412, - "c4": 28.56354904694613, - "c5": -20.97960741454319, - "c6": 16.849425085832173, - "c7": -10.795549385307886 + "points": { + "c1": 31.214775120819915, + "c2": -17.03996800936375, + "c3": -1.0138898862618149, + "c4": 25.73695631983034, + "c5": -30.779152420776544, + "c6": 29.545158543190418, + "c7": -0.419497875849018 }, - "vertexSeeds": { - "c1": 9.29256346388997, - "c2": 9.016027671576163, - "c3": 9.62206827393226, - "c4": 9.106425494072273, - "c5": 9.465799423003942, - "c6": 9.320900562544571, - "c7": 9.536544203774927 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.78640776699029, + "c3": 11.488673139158577, + "c4": 9.190938511326861, + "c5": 6.893203883495145, + "c6": 4.5954692556634305, + "c7": 2.2977346278317152 }, "rgb": [77, 76, 132] }, @@ -116646,23 +116646,23 @@ "year": 1740, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 12.127148518048159, - "c2": -3.103065757830567, - "c3": 9.57253345476201, - "c4": 10.273871458533925, - "c5": -12.65651707066047, - "c6": 27.06687814816584, - "c7": -23.335635980057344 + "points": { + "c1": 5.015352191744377, + "c2": -20.114649906944997, + "c3": 30.873621725556276, + "c4": 5.789962458862199, + "c5": -12.467581310600469, + "c6": 19.813891241014588, + "c7": 6.010778655352929 }, - "vertexSeeds": { - "c1": 1.7108584358821686, - "c2": 2.011371431906718, - "c3": 1.90597177223967, - "c4": 1.8963471873939861, - "c5": 1.8551033016564582, - "c6": 1.9702138513023435, - "c7": 1.7194196343597796 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233015, + "c3": 2.427184466019418, + "c4": 1.9417475728155322, + "c5": 1.4563106796116492, + "c6": 0.9708737864077661, + "c7": 0.48543689320388306 }, "rgb": [58, 15, 49] }, @@ -116673,23 +116673,23 @@ "year": 1740, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -3.3061378246154547, - "c2": -14.892799568961003, - "c3": 12.897495833348408, - "c4": 18.454228712798134, - "c5": -1.602913119086228, - "c6": 23.914245299666035, - "c7": 7.409538877903522 + "points": { + "c1": 5.776959852660902, + "c2": 31.30415244920922, + "c3": -31.38221490198717, + "c4": 29.542010939129653, + "c5": -0.7700447945099498, + "c6": 12.873496141370978, + "c7": -0.67441150808164 }, - "vertexSeeds": { - "c1": 4.355131662504404, - "c2": 4.993613368226786, - "c3": 4.431527067286283, - "c4": 5.06552993767709, - "c5": 4.665852734610343, - "c6": 5.231872255719259, - "c7": 4.773369065110423 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -116700,23 +116700,23 @@ "year": 1740, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -32.220758777580244, - "c2": 13.070043333546003, - "c3": 32.831778655330254, - "c4": 28.369044416176195, - "c5": -26.51189570622875, - "c6": -20.196323029668452, - "c7": -17.27035426197072 + "points": { + "c1": 2.4662582044093213, + "c2": -29.895521093085783, + "c3": -37.86518589794099, + "c4": -14.437879818434514, + "c5": -38.71041016189141, + "c6": -35.13437489718494, + "c7": -34.27360985970506 }, - "vertexSeeds": { - "c1": 2.3265621528385414, - "c2": 2.172271410496856, - "c3": 2.3577889280072224, - "c4": 2.1739806506465325, - "c5": 2.1269835175656144, - "c6": 2.473658665879251, - "c7": 2.2969093722724225 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897375, + "c3": 3.0975496994914464, + "c4": 2.478039759593158, + "c5": 1.8585298196948672, + "c6": 1.239019879796579, + "c7": 0.6195099398982883 }, "rgb": [77, 76, 132] }, @@ -116727,23 +116727,23 @@ "year": 1740, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -25.180386026857622, - "c2": -2.8129217563740845, - "c3": -26.450400131530657, - "c4": -10.345264530792775, - "c5": 3.365089817359845, - "c6": 12.253977629462007, - "c7": 1.0486649785914288 + "points": { + "c1": 29.44965428038384, + "c2": 6.207754649103379, + "c3": -4.948261709398878, + "c4": -19.979942016835118, + "c5": 6.4557409390822755, + "c6": -0.32109402977038215, + "c7": 7.998158697211387 }, - "vertexSeeds": { - "c1": 5.21691546330554, - "c2": 4.480207621330314, - "c3": 5.206354391550784, - "c4": 4.916386616873136, - "c5": 4.487095854792751, - "c6": 4.3277817502088824, - "c7": 4.3280523557223844 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -116754,23 +116754,23 @@ "year": 1740, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -18.086301877375252, - "c2": -5.562136365636977, - "c3": -26.751480228985184, - "c4": 16.32910284389383, - "c5": 18.975719000119504, - "c6": 26.107078993244016, - "c7": -28.110525631995202 + "points": { + "c1": -8.806550967638298, + "c2": 0.42724244776412945, + "c3": 1.0021976767289047, + "c4": 4.1227003735786525, + "c5": -0.5961938523759187, + "c6": 22.137105246286495, + "c7": 25.84512244622094 }, - "vertexSeeds": { - "c1": 4.059469839900591, - "c2": 4.764324372831148, - "c3": 4.282157489822289, - "c4": 4.87682764610725, - "c5": 4.355970511057326, - "c6": 4.174610286781644, - "c7": 4.594446892004692 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457701, + "c3": 6.010171058714747, + "c4": 4.8081368469718, + "c5": 3.6061026352288477, + "c6": 2.4040684234859, + "c7": 1.2020342117429523 }, "rgb": [222, 0, 59] }, @@ -116781,23 +116781,23 @@ "year": 1740, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -6.578676997411453, - "c2": 11.767231059553211, - "c3": -4.428726868330781, - "c4": 15.165311444513044, - "c5": 23.70509055622167, - "c6": -20.659746075072995, - "c7": 24.200463959436192 + "points": { + "c1": 6.924904280369887, + "c2": -3.533834999782112, + "c3": -7.710512964552596, + "c4": -3.586124677959173, + "c5": 23.965572560219854, + "c6": -2.258761406757692, + "c7": 1.2704884642113683 }, - "vertexSeeds": { - "c1": 3.7736574990695777, - "c2": 3.2945470534325674, - "c3": 3.7523321417080036, - "c4": 3.40566207946164, - "c5": 3.1946921300592113, - "c6": 3.3807104554805214, - "c7": 3.7640321659875355 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084603, + "c3": 4.646324549237172, + "c4": 3.7170596393897353, + "c5": 2.787794729542304, + "c6": 1.8585298196948676, + "c7": 0.9292649098474316 }, "rgb": [222, 0, 59] }, @@ -116808,23 +116808,23 @@ "year": 1740, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 6.688227928884302, - "c2": -30.55797580237627, - "c3": -35.325575083069005, - "c4": -29.784323843220164, - "c5": 41.89346416087787, - "c6": -30.26563408973568, - "c7": -9.078968186173732 + "points": { + "c1": 41.786264216445716, + "c2": -44.49690085541027, + "c3": -43.27526995514243, + "c4": 39.13085161271674, + "c5": 42.969994447236914, + "c6": 20.28732161614552, + "c7": 3.8761805481298524 }, - "vertexSeeds": { - "c1": 6.160815443197983, - "c2": 6.519307179237909, - "c3": 6.411439490152801, - "c4": 6.581924404232793, - "c5": 6.364067929603454, - "c6": 6.1820420496162365, - "c7": 6.17068161166715 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675448, + "c3": 7.859454461396202, + "c4": 6.2875635691169816, + "c5": 4.715672676837736, + "c6": 3.1437817845584908, + "c7": 1.5718908922792454 }, "rgb": [86, 146, 138] }, @@ -116835,23 +116835,23 @@ "year": 1740, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -5.309572412331647, - "c2": -27.43440715834074, - "c3": 14.211203880565616, - "c4": 24.046875798818935, - "c5": -12.593510133230769, - "c6": -2.474678937965603, - "c7": 2.459121024945123 + "points": { + "c1": -20.718204104255257, + "c2": -17.063506961470473, + "c3": -29.271263108046686, + "c4": 15.226848207463409, + "c5": -26.54775912617705, + "c6": -6.431534696215667, + "c7": 17.450516348332403 }, - "vertexSeeds": { - "c1": 5.9048784816189475, - "c2": 6.293963844120146, - "c3": 6.136172572444884, - "c4": 6.353673150233233, - "c5": 5.927680393910287, - "c6": 5.530712489351658, - "c7": 5.888929591801914 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -116862,23 +116862,23 @@ "year": 1740, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 7.259148503401136, - "c2": 34.71074897286341, - "c3": -28.291261387273522, - "c4": 4.328771054052233, - "c5": 39.33868232426856, - "c6": -49.735988762428775, - "c7": -47.4332044874694 + "points": { + "c1": -14.97113954916945, + "c2": -50.36061037769876, + "c3": -17.93272197817059, + "c4": 38.75824540683905, + "c5": -13.137063894841503, + "c6": -37.78348055645218, + "c7": 21.678429072875005 }, - "vertexSeeds": { - "c1": 4.197952977846142, - "c2": 5.135322807872296, - "c3": 5.235056435841776, - "c4": 4.303389092935797, - "c5": 4.6439358415197995, - "c6": 4.21214340227334, - "c7": 4.834516628402251 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -116889,23 +116889,23 @@ "year": 1740, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -20.520294910614854, - "c2": -10.178315666716173, - "c3": 10.283709087918552, - "c4": -7.954233277245333, - "c5": -24.392191408007942, - "c6": -25.157615747437482, - "c7": 26.241638360860712 + "points": { + "c1": 20.868686110295805, + "c2": 4.150367569695895, + "c3": -7.253445150964907, + "c4": -9.509775777722599, + "c5": -3.24768225664069, + "c6": -24.817871064709973, + "c7": -28.15104655658244 }, - "vertexSeeds": { - "c1": 3.154783117688081, - "c2": 3.2613157375586685, - "c3": 3.1231773963322507, - "c4": 3.2860253240046298, - "c5": 3.2297431032667268, - "c6": 3.158815510827617, - "c7": 3.173053784804435 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -116916,23 +116916,23 @@ "year": 1740, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 37.300872805085866, - "c2": 37.69354625001531, - "c3": 34.4798158242132, - "c4": 23.529413199673975, - "c5": -4.90284566083529, - "c6": -39.602468554900625, - "c7": 41.09313497263113 + "points": { + "c1": 23.309105652174033, + "c2": 31.221266262942017, + "c3": -24.064992887456583, + "c4": -1.273632311689184, + "c5": -21.95662811303612, + "c6": 21.25825111549431, + "c7": 3.6001188617170783 }, - "vertexSeeds": { - "c1": 5.0703920727424645, - "c2": 5.0629198449119, - "c3": 5.0292251526029315, - "c4": 5.006570328710541, - "c5": 5.0298669439480355, - "c6": 5.053476085266739, - "c7": 5.015265579899522 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538176, + "c3": 6.056403143781734, + "c4": 4.845122515025411, + "c5": 3.633841886269088, + "c6": 2.4225612575127657, + "c7": 1.2112806287563227 }, "rgb": [86, 146, 138] }, @@ -116943,23 +116943,23 @@ "year": 1740, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -4.901065768048106, - "c2": 14.735494194458752, - "c3": 17.550000248006533, - "c4": -6.505774640306512, - "c5": 31.069342486069353, - "c6": -42.08048296015903, - "c7": -35.349777724442895 + "points": { + "c1": -20.016817749720662, + "c2": 28.2980870304959, + "c3": -10.968470979674578, + "c4": -18.81634587247407, + "c5": -2.9487712905727435, + "c6": 13.995690714851001, + "c7": -28.76590937293161 }, - "vertexSeeds": { - "c1": 8.177766065994525, - "c2": 7.800312030508414, - "c3": 7.747531294116634, - "c4": 7.865279384020096, - "c5": 8.139033311340263, - "c6": 7.645228913976796, - "c7": 7.970248703736802 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013866, + "c3": 9.778085991678214, + "c4": 7.822468793342583, + "c5": 5.866851595006933, + "c6": 3.911234396671282, + "c7": 1.9556171983356307 }, "rgb": [77, 76, 132] }, @@ -116970,23 +116970,23 @@ "year": 1740, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -21.9738700557754, - "c2": -16.541766454453246, - "c3": 20.18486026450202, - "c4": -24.04756605577489, - "c5": -19.834372581261825, - "c6": 10.501131967828236, - "c7": 2.603785341358641 + "points": { + "c1": -26.458035727912435, + "c2": 16.799250204907068, + "c3": -12.499589293733163, + "c4": -10.313921398689015, + "c5": -27.01338850245396, + "c6": 26.404012966208974, + "c7": -10.705286491447058 }, - "vertexSeeds": { - "c1": 4.8732193173191884, - "c2": 4.377701155601306, - "c3": 5.043606187767689, - "c4": 4.321507260323632, - "c5": 5.061180612665064, - "c6": 4.669456475267853, - "c7": 4.48412099390894 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -116997,23 +116997,23 @@ "year": 1740, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -28.702180495053266, - "c2": -10.644646351975705, - "c3": -16.25553270604332, - "c4": 15.960688041509464, - "c5": 29.7563537995521, - "c6": -19.380298720543593, - "c7": -27.197085195002416 + "points": { + "c1": -4.942612677664641, + "c2": -4.9904116621707395, + "c3": 27.243507755828126, + "c4": -24.612425559750122, + "c5": -26.069093282320292, + "c6": 12.614388215599341, + "c7": 5.854322867208694 }, - "vertexSeeds": { - "c1": 5.843998820310937, - "c2": 6.431973943595084, - "c3": 5.699801106301032, - "c4": 6.31437914195063, - "c5": 5.951831048137923, - "c6": 5.678688434606347, - "c7": 5.701499718755228 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479885, + "c3": 8.321775312066576, + "c4": 6.657420249653256, + "c5": 4.993065187239948, + "c6": 3.328710124826628, + "c7": 1.6643550624133097 }, "rgb": [86, 146, 138] }, @@ -117024,23 +117024,23 @@ "year": 1740, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 10.028292517807728, - "c2": -15.821662210708364, - "c3": -7.030987193259762, - "c4": -4.565041586565648, - "c5": -31.715666606055017, - "c6": 5.566069168153774, - "c7": 17.48528846533992 + "points": { + "c1": -7.976671065216756, + "c2": -26.80586548601646, + "c3": -19.93635625475498, + "c4": -24.84609862574832, + "c5": -31.385581915188904, + "c6": -6.874777393923438, + "c7": -18.368614431615285 }, - "vertexSeeds": { - "c1": 6.138329178314855, - "c2": 6.1312381535123155, - "c3": 5.502610330333867, - "c4": 6.148037874707938, - "c5": 5.570593423026221, - "c6": 5.956106242250467, - "c7": 6.317338516410924 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -117051,23 +117051,23 @@ "year": 1740, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": 34.452193772048105, - "c2": -12.883605855418779, - "c3": -11.417792947608078, - "c4": -1.3683602827924233, - "c5": -24.976456688028463, - "c6": 3.6825380382370128, - "c7": 42.22339459355335 + "points": { + "c1": -25.43197858411478, + "c2": 15.271611810756184, + "c3": -25.81502859907788, + "c4": -29.423808084702667, + "c5": -35.04380593418265, + "c6": 18.628842109122473, + "c7": -27.686253560958267 }, - "vertexSeeds": { - "c1": 4.606778827509682, - "c2": 4.615421791540741, - "c3": 4.653635048691288, - "c4": 4.664119450157664, - "c5": 4.559719294163425, - "c6": 4.733009480968938, - "c7": 4.529750829697634 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457695, + "c3": 6.010171058714752, + "c4": 4.8081368469718, + "c5": 3.6061026352288477, + "c6": 2.4040684234858953, + "c7": 1.2020342117429523 }, "rgb": [58, 15, 49] }, @@ -117078,23 +117078,23 @@ "year": 1740, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 31.638132521523303, - "c2": 33.12589814166002, - "c3": -15.652454653109984, - "c4": -20.584168437400404, - "c5": -3.25572387565186, - "c6": 13.43405947187562, - "c7": 19.548970382903185 + "points": { + "c1": 8.137035649422266, + "c2": -40.84327040027824, + "c3": 14.586733999854602, + "c4": -34.03528443115948, + "c5": -13.79315968466404, + "c6": 0.6122078025241962, + "c7": -29.615653734943308 }, - "vertexSeeds": { - "c1": 5.8126754141376376, - "c2": 5.610715886669359, - "c3": 5.534684667886062, - "c4": 5.744744689617933, - "c5": 5.192121980859048, - "c6": 5.769704024222918, - "c7": 5.735436842640212 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [222, 0, 59] }, @@ -117105,23 +117105,23 @@ "year": 1740, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 11.743007669772695, - "c2": 14.099308247766885, - "c3": -8.001576126838224, - "c4": 29.523649815255546, - "c5": 35.305896176587616, - "c6": -38.963791149455375, - "c7": 1.8752754249528678 + "points": { + "c1": 0.17432392757927317, + "c2": -15.662847545881874, + "c3": 42.098513935883325, + "c4": 11.935574078428154, + "c5": -33.844105273535156, + "c6": -31.614146928082516, + "c7": 37.15298464792095 }, - "vertexSeeds": { - "c1": 5.04844543239484, - "c2": 4.927779122090774, - "c3": 5.009936113467994, - "c4": 5.081429799362272, - "c5": 5.170829703451789, - "c6": 4.257107588126576, - "c7": 4.849159220803702 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -117132,23 +117132,23 @@ "year": 1740, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -3.6982499389539925, - "c2": -7.143197226488962, - "c3": -32.79739649305626, - "c4": 26.160873725084656, - "c5": 6.355487138225051, - "c6": 14.996482599603823, - "c7": -29.92194856141567 + "points": { + "c1": -33.87767338351621, + "c2": 17.759369504434794, + "c3": 29.647915003783538, + "c4": -19.722513714642634, + "c5": -29.243659069814903, + "c6": -28.93193512371988, + "c7": -9.056624151892656 }, - "vertexSeeds": { - "c1": 5.8999633709182, - "c2": 5.730678048706654, - "c3": 5.706181603859768, - "c4": 5.515011469024187, - "c5": 6.395326849161617, - "c6": 6.226003629422903, - "c7": 5.909283387266547 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -117159,23 +117159,23 @@ "year": 1740, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -25.13253756545221, - "c2": 23.280398820307077, - "c3": -10.532680971971342, - "c4": -21.75667267285084, - "c5": 8.871254382755701, - "c6": 26.295073755243934, - "c7": 9.994753935997252 + "points": { + "c1": -19.974554102770398, + "c2": -28.258524164857107, + "c3": -14.275663669913317, + "c4": -29.816046145935005, + "c5": 30.823720215312697, + "c6": 17.5129392130155, + "c7": -19.544182121592687 }, - "vertexSeeds": { - "c1": 7.2510495617046775, - "c2": 7.07339447191933, - "c3": 7.1155665611693015, - "c4": 7.2373281969888295, - "c5": 7.406892088139058, - "c6": 7.097309575831482, - "c7": 7.445748181134747 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485452, + "c3": 8.899676375404525, + "c4": 7.119741100323635, + "c5": 5.339805825242708, + "c6": 3.5598705501618175, + "c7": 1.7799352750808908 }, "rgb": [238, 201, 159] }, @@ -117186,23 +117186,23 @@ "year": 1740, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -23.996819931937516, - "c2": -13.017218745765579, - "c3": 18.173602910630834, - "c4": -10.482992404722703, - "c5": -3.0327886191776514, - "c6": 5.300108495880451, - "c7": -13.313483462445426 + "points": { + "c1": 11.701948948101965, + "c2": -12.521816209001202, + "c3": -16.08071421526008, + "c4": 18.558784807560464, + "c5": -20.738732554785702, + "c6": 0.03558798985502776, + "c7": -17.810173464786345 }, - "vertexSeeds": { - "c1": 4.230555402107471, - "c2": 5.1782919134558565, - "c3": 4.590730166523418, - "c4": 5.118990178118012, - "c5": 5.160742539665118, - "c6": 4.999447278535399, - "c7": 4.3930656277791575 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -117213,23 +117213,23 @@ "year": 1740, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -19.175552920072654, - "c2": 25.99401462316861, - "c3": 8.718989605447717, - "c4": -18.811590193186046, - "c5": -4.042460314722977, - "c6": 7.566014348758138, - "c7": 3.548685944910435 + "points": { + "c1": 25.974159633575773, + "c2": -17.59128832043352, + "c3": -21.12467510341957, + "c4": 25.78212282055196, + "c5": 13.62125239327844, + "c6": -10.090301391651057, + "c7": -27.462953946857642 }, - "vertexSeeds": { - "c1": 5.234985230048877, - "c2": 4.330482582530118, - "c3": 5.195876793372798, - "c4": 5.245247102182921, - "c5": 5.041984623067376, - "c6": 4.990836740212065, - "c7": 4.729932231269526 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -117240,23 +117240,23 @@ "year": 1740, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 39.99929592995798, - "c2": -47.47507543015814, - "c3": -48.621898350429284, - "c4": -45.884573847606916, - "c5": 13.880697462004576, - "c6": 44.09839065373441, - "c7": -2.0467871805551994 + "points": { + "c1": 46.9987533634941, + "c2": 6.91042074673264, + "c3": -19.677639563757804, + "c4": -34.696972996144495, + "c5": 28.560907868145307, + "c6": 32.18704486099608, + "c7": -14.07763126216905 }, - "vertexSeeds": { - "c1": 1.399482794648916, - "c2": 1.567716891506021, - "c3": 1.4508665250073651, - "c4": 1.4425172440781724, - "c5": 1.419707469734978, - "c6": 1.4784491097015187, - "c7": 1.431345182061982 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.2746185852981977, + "c3": 1.895515487748496, + "c4": 1.5164123901987976, + "c5": 1.1373092926490989, + "c6": 0.7582061950994002, + "c7": 0.37910309754969856 }, "rgb": [238, 201, 159] }, @@ -117267,23 +117267,23 @@ "year": 1740, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 1.206117967666632, - "c2": 3.7591096971181948, - "c3": 23.94682046178474, - "c4": -9.379702820820604, - "c5": -17.49600603228256, - "c6": -18.10793472265183, - "c7": -11.639546549558558 + "points": { + "c1": -14.950978644830391, + "c2": 4.959247456651752, + "c3": -17.71677981920584, + "c4": 9.813067531124574, + "c5": 14.052171172990285, + "c6": 12.973600311940906, + "c7": 17.66106377901916 }, - "vertexSeeds": { - "c1": 3.298596175801211, - "c2": 2.969822107728525, - "c3": 3.111870412152303, - "c4": 3.2674180639760446, - "c5": 3.296218293582749, - "c6": 3.1679938932589025, - "c7": 2.9901437759246474 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [58, 15, 49] }, @@ -117294,23 +117294,23 @@ "year": 1740, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 21.873224328047222, - "c2": -1.9189207099486865, - "c3": 34.1108388229247, - "c4": -38.14555014309357, - "c5": 17.06427205380281, - "c6": 41.18233794417123, - "c7": 12.761163166697429 + "points": { + "c1": -45.32026502109569, + "c2": 7.538183195384875, + "c3": -20.318937339472196, + "c4": -29.876796958527027, + "c5": 10.022884560035841, + "c6": -25.280220890614522, + "c7": 26.183146987327596 }, - "vertexSeeds": { - "c1": 6.3575858989025384, - "c2": 5.614335697115161, - "c3": 5.733715637072614, - "c4": 5.600421765967849, - "c5": 6.077224081354655, - "c6": 6.331337805417675, - "c7": 5.9295781154203535 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -117321,23 +117321,23 @@ "year": 1740, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 3.9858148636035757, - "c2": 14.34062235590492, - "c3": 9.442208216416823, - "c4": -21.089318151336386, - "c5": 1.4258964330152715, - "c6": -10.297407803206626, - "c7": -15.535945728933987 + "points": { + "c1": -11.363048147694037, + "c2": -6.667441969600034, + "c3": 9.576301582169386, + "c4": -5.79601231792968, + "c5": -24.844977009880765, + "c6": -12.59910881119637, + "c7": 7.306010517491366 }, - "vertexSeeds": { - "c1": 4.319521474442366, - "c2": 4.923446771055042, - "c3": 5.108067196245721, - "c4": 5.180666972232643, - "c5": 4.676179195137125, - "c6": 4.3883546783606295, - "c7": 4.215558995838677 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -117348,23 +117348,23 @@ "year": 1740, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -20.731445930164927, - "c2": -13.322784474041933, - "c3": 8.115286864767334, - "c4": 17.63050929036865, - "c5": 22.89288623866115, - "c6": 13.57347504863997, - "c7": -6.346105922576477 + "points": { + "c1": 19.89140674946048, + "c2": -14.255248427667581, + "c3": 3.226231252754822, + "c4": -18.0137394036679, + "c5": -25.51289704143708, + "c6": -12.933818343239004, + "c7": -15.931923026040382 }, - "vertexSeeds": { - "c1": 3.1397323315637937, - "c2": 2.9593033982323753, - "c3": 3.266027111085561, - "c4": 3.012145378075725, - "c5": 3.2808718187592993, - "c6": 3.160712212598686, - "c7": 3.067011845232254 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [238, 201, 159] }, @@ -117375,23 +117375,23 @@ "year": 1740, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -10.26016374276754, - "c2": 1.9229464394040932, - "c3": 19.291855109204214, - "c4": 14.728192147039834, - "c5": 4.121548355651974, - "c6": 9.086783146736146, - "c7": -13.38018440303819 + "points": { + "c1": 6.553838968277059, + "c2": 7.113430548179224, + "c3": -24.871194674945922, + "c4": 4.402968587633691, + "c5": -16.552624630548713, + "c6": -18.901104473904958, + "c7": -10.149329147234502 }, - "vertexSeeds": { - "c1": 4.912492097004602, - "c2": 5.066758212487154, - "c3": 4.734718734704291, - "c4": 4.937484594902145, - "c5": 4.443237558639394, - "c6": 5.086376683770307, - "c7": 4.343300168150668 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -117402,23 +117402,23 @@ "year": 1740, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -12.36525523950422, - "c2": 15.676772492917749, - "c3": 7.272312147256294, - "c4": -4.578833684950087, - "c5": 3.4429658856262115, - "c6": 0.5333331672913602, - "c7": 18.072833374959096 + "points": { + "c1": -15.285529347117095, + "c2": -9.615954580918844, + "c3": -11.652943474896333, + "c4": 19.956828826185436, + "c5": -9.50761990880898, + "c6": -7.670098842652951, + "c7": 1.7887793549593383 }, - "vertexSeeds": { - "c1": 3.2545410842365268, - "c2": 3.0161691355807623, - "c3": 2.960725234906438, - "c4": 3.297546183046597, - "c5": 3.307489592723709, - "c6": 2.991330891780587, - "c7": 3.150876646199448 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -117429,23 +117429,23 @@ "year": 1740, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 24.805946304881473, - "c2": -14.375671990999635, - "c3": -33.58186478182322, - "c4": -14.45335253275801, - "c5": 31.35380681946107, - "c6": -48.35844892181628, - "c7": 20.790378362263795 + "points": { + "c1": 31.171142591100846, + "c2": 7.168904365869551, + "c3": 43.22004009639815, + "c4": 15.277829331644341, + "c5": -20.95906697760453, + "c6": 2.7058353174572787, + "c7": -37.33711816043186 }, - "vertexSeeds": { - "c1": 5.113374964710382, - "c2": 4.322177983417127, - "c3": 4.74733492491877, - "c4": 4.318353257708676, - "c5": 4.778577785671052, - "c6": 5.192581662620195, - "c7": 5.0433592122998245 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -117456,23 +117456,23 @@ "year": 1740, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 40.80421617000158, - "c2": -20.47291769486174, - "c3": 33.40550114103402, - "c4": -6.6963396367153365, - "c5": -0.13921753043567264, - "c6": 15.694422957225797, - "c7": -17.528893177776766 + "points": { + "c1": 4.455920409151645, + "c2": -47.871214170821794, + "c3": -28.22577594628638, + "c4": -50.9471639934423, + "c5": -31.651567441943612, + "c6": 38.63155890651416, + "c7": 21.973961753426195 }, - "vertexSeeds": { - "c1": 5.157052095088819, - "c2": 4.714329390774295, - "c3": 4.48741088666178, - "c4": 4.291125930650829, - "c5": 4.474407902687915, - "c6": 4.736865541195402, - "c7": 5.123240760530214 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -117483,23 +117483,23 @@ "year": 1739, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": 5.0191915568805925, - "c2": -10.699862085789858, - "c3": -7.936039401985424, - "c4": -14.718462082218094, - "c5": 5.19998976456467, - "c6": -19.265387545740737, - "c7": -9.543512513627944 + "points": { + "c1": 15.746980916959842, + "c2": 5.455629942239241, + "c3": -10.093398412466033, + "c4": 15.401986554839539, + "c5": -14.10227873693288, + "c6": -13.89510487800333, + "c7": 9.238598798841 }, - "vertexSeeds": { - "c1": 10.591760146833233, - "c2": 10.595404481239166, - "c3": 10.478491891477798, - "c4": 10.47663301896803, - "c5": 10.510736327576875, - "c6": 10.544851360049172, - "c7": 10.409306350285549 + "offsets": { + "c1": 17.864077669902912, + "c2": 15.312066574202442, + "c3": 12.760055478502098, + "c4": 10.208044382801628, + "c5": 7.656033287101284, + "c6": 5.104022191400814, + "c7": 2.5520110957004705 }, "rgb": [222, 0, 59] }, @@ -117510,23 +117510,23 @@ "year": 1740, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -24.793191828235827, - "c2": 15.36843862782402, - "c3": -0.5293650889323729, - "c4": 13.212829895477256, - "c5": -6.468394143073734, - "c6": 33.13102432171779, - "c7": -24.642377509358333 + "points": { + "c1": -17.232779201557545, + "c2": 27.827403250885965, + "c3": -8.3324420248474, + "c4": 35.940755565955996, + "c5": -36.81723993787495, + "c6": -35.19084818474821, + "c7": 4.895455243136986 }, - "vertexSeeds": { - "c1": 5.412574961324682, - "c2": 5.354180139453451, - "c3": 5.471890078848271, - "c4": 5.527073270583245, - "c5": 5.253667895000892, - "c6": 5.481042593653064, - "c7": 5.362689644271484 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186769, + "c4": 5.34442903374941, + "c5": 4.008321775312079, + "c6": 2.6722145168747193, + "c7": 1.3361072584373597 }, "rgb": [58, 15, 49] }, @@ -117537,23 +117537,23 @@ "year": 1740, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -11.749859331433669, - "c2": 32.13189210050953, - "c3": -2.5708155267401764, - "c4": 28.32069341616816, - "c5": 14.619138250665294, - "c6": -33.62533258708297, - "c7": 18.319591741285997 + "points": { + "c1": -21.093788796307976, + "c2": -12.454045942913016, + "c3": -8.268132820298124, + "c4": 12.783216488191748, + "c5": 9.435356928906138, + "c6": -3.914694991583456, + "c7": 5.64236861438323 }, - "vertexSeeds": { - "c1": 4.747449243577767, - "c2": 4.38200160799458, - "c3": 4.681976582677063, - "c4": 4.859884018914308, - "c5": 5.032106452590904, - "c6": 4.685341313130676, - "c7": 4.8215894324893265 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -117564,23 +117564,23 @@ "year": 1740, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": -1.7773441137909671, - "c2": 51.64270075403177, - "c3": 50.01317436097512, - "c4": 15.320338527600889, - "c5": 3.8088531827703704, - "c6": 19.86357059294952, - "c7": 15.632772391870965 + "points": { + "c1": -11.727917398308215, + "c2": 50.874181464502804, + "c3": 1.7320572720658731, + "c4": -1.4395781015084026, + "c5": 54.9286974558591, + "c6": 9.179474579857306, + "c7": -31.84080345176416 }, - "vertexSeeds": { - "c1": 5.209097885350183, - "c2": 5.300025402145023, - "c3": 5.007448076049131, - "c4": 5.190714405661413, - "c5": 5.065617403297226, - "c6": 4.706461959171343, - "c7": 5.075871436005635 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020804, + "c3": 6.333795654184001, + "c4": 5.067036523347198, + "c5": 3.800277392510402, + "c6": 2.533518261673599, + "c7": 1.2667591308368027 }, "rgb": [58, 15, 49] }, @@ -117591,23 +117591,23 @@ "year": 1740, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -32.81088406999842, - "c2": 25.106880528013733, - "c3": 42.607303282354295, - "c4": 7.699397990897275, - "c5": 8.117548150636004, - "c6": -10.960289952878398, - "c7": -2.624672973181248 + "points": { + "c1": -43.80831549902289, + "c2": -34.38813193542888, + "c3": 39.07882785849179, + "c4": -37.36381771769267, + "c5": -4.935400175435433, + "c6": 34.142855457841165, + "c7": -19.208575167393597 }, - "vertexSeeds": { - "c1": 6.119350045451782, - "c2": 6.314426688456562, - "c3": 6.0455734665836065, - "c4": 6.152651915056538, - "c5": 6.109164416311905, - "c6": 6.063997700289046, - "c7": 5.550228698526948 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -117618,23 +117618,23 @@ "year": 1740, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 45.84064897603915, - "c2": -21.92113698532201, - "c3": 19.618017923472635, - "c4": -29.37604721791812, - "c5": 34.63722009703045, - "c6": 22.382899853007245, - "c7": 14.717493114666098 + "points": { + "c1": 9.752879816888324, + "c2": -30.60191880366068, + "c3": -19.44379998566169, + "c4": 45.67570806825687, + "c5": -10.549823614200989, + "c6": -3.5636424767671215, + "c7": 40.442466264610616 }, - "vertexSeeds": { - "c1": 4.21521524911449, - "c2": 5.177061835784205, - "c3": 4.530678422199914, - "c4": 4.962613726876934, - "c5": 4.561245887265802, - "c6": 4.4970768259610026, - "c7": 4.538266166294771 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -117645,23 +117645,23 @@ "year": 1740, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": 4.9582997510045566, - "c2": 13.526101350472032, - "c3": 10.836436986405776, - "c4": 0.08622659686247047, - "c5": -14.701679007134587, - "c6": -18.93187833834525, - "c7": 13.8587142242134 + "points": { + "c1": -6.804661602579401, + "c2": -21.607575665330074, + "c3": 22.15999656219787, + "c4": -13.58379683830169, + "c5": -4.480722455603811, + "c6": -20.149720345520066, + "c7": -7.792863811150141 }, - "vertexSeeds": { - "c1": 2.9979610859869, - "c2": 2.9867088373944877, - "c3": 3.3050827115964356, - "c4": 3.1842643889902584, - "c5": 3.062068092295241, - "c6": 3.3068620739827437, - "c7": 3.154177811481172 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [222, 0, 59] }, @@ -117672,23 +117672,23 @@ "year": 1740, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": -3.477830057506644, - "c2": 6.94910087947537, - "c3": -1.4546295272416678, - "c4": -16.812994997188937, - "c5": -7.183198918732156, - "c6": 2.2617731005277726, - "c7": -6.0015749638038915 + "points": { + "c1": 17.531193476257375, + "c2": 7.6316328990571165, + "c3": -19.787878361418585, + "c4": -8.460851117758489, + "c5": 9.510926066137241, + "c6": 5.337200300582449, + "c7": 16.844294281207272 }, - "vertexSeeds": { - "c1": 3.039383846492036, - "c2": 3.243315204402413, - "c3": 2.9630111724222266, - "c4": 3.1139429576232467, - "c5": 3.1587188706797416, - "c6": 3.0040346265311944, - "c7": 3.1387100597956437 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -117699,23 +117699,23 @@ "year": 1740, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 11.551303935337245, - "c2": -6.596853204981343, - "c3": 33.689459728326895, - "c4": 15.722141429828397, - "c5": -9.980573269010563, - "c6": 39.98966811634709, - "c7": 18.30031334028191 + "points": { + "c1": -30.738906816224116, + "c2": -41.20884694766692, + "c3": -12.182949477025439, + "c4": 40.597732672360365, + "c5": 16.917779265505295, + "c6": -24.506195416632057, + "c7": 24.351309114294963 }, - "vertexSeeds": { - "c1": 4.087798345353121, - "c2": 3.7934513922389383, - "c3": 4.19860731798715, - "c4": 3.945828625334549, - "c5": 4.423865073332837, - "c6": 3.737616271129783, - "c7": 3.6534335792119683 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291265, + "c3": 5.339805825242718, + "c4": 4.271844660194176, + "c5": 3.2038834951456296, + "c6": 2.135922330097088, + "c7": 1.0679611650485463 }, "rgb": [58, 15, 49] }, @@ -117726,23 +117726,23 @@ "year": 1740, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -25.62488830464154, - "c2": 5.387317514104822, - "c3": -6.317233957663063, - "c4": 0.8951887422395686, - "c5": 31.358906427820777, - "c6": -15.79274268680836, - "c7": 3.737713740713751 + "points": { + "c1": -12.117317718764934, + "c2": 4.206996946841677, + "c3": -8.5267114258696, + "c4": -1.5333799446536673, + "c5": 12.375688185560321, + "c6": 15.02434241332498, + "c7": -27.993480748263497 }, - "vertexSeeds": { - "c1": 6.779966702851988, - "c2": 6.247149575854239, - "c3": 7.10778442162199, - "c4": 6.393115238347126, - "c5": 6.279195274013501, - "c6": 6.943858145029008, - "c7": 6.1830544310343525 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [222, 0, 59] }, @@ -117753,23 +117753,23 @@ "year": 1740, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 23.72790239459463, - "c2": -14.095675269729814, - "c3": -38.460149454563, - "c4": 36.38408036933144, - "c5": -10.903672426110884, - "c6": -20.983421155377915, - "c7": 36.70642558303429 + "points": { + "c1": -33.00145210239144, + "c2": -37.95131171606264, + "c3": -19.066250113140278, + "c4": 4.01034963723, + "c5": -20.66880355841318, + "c6": -24.23527181673448, + "c7": 29.160026835160096 }, - "vertexSeeds": { - "c1": 6.803165953390308, - "c2": 6.804551222763296, - "c3": 6.704375441888356, - "c4": 6.76837970753977, - "c5": 6.823419423432972, - "c6": 6.7117287879208485, - "c7": 6.803331213486894 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318983, + "c3": 8.22931114193253, + "c4": 6.583448913546011, + "c5": 4.937586685159491, + "c6": 3.2917244567730384, + "c7": 1.6458622283865192 }, "rgb": [77, 76, 132] }, @@ -117780,23 +117780,23 @@ "year": 1740, "resistanceReported": true, "duration": 23846400, - "curveSeeds": { - "c1": 3.080331415251024, - "c2": 24.2623879360642, - "c3": 20.708733637502263, - "c4": -12.299514781936256, - "c5": -5.111915231167629, - "c6": 25.80088165826971, - "c7": -11.146903788336108 + "points": { + "c1": 5.239240924334624, + "c2": -24.04671077928245, + "c3": -21.15697119822455, + "c4": -6.740449818864047, + "c5": -28.854368623749068, + "c6": 15.286196152209293, + "c7": -28.587513991610955 }, - "vertexSeeds": { - "c1": 2.4178158048189196, - "c2": 2.2409283361049717, - "c3": 2.308694223185445, - "c4": 2.3856854648857637, - "c5": 2.3647665420898667, - "c6": 2.085737994832216, - "c7": 2.160518910848751 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886258, + "c3": 2.981969486823856, + "c4": 2.385575589459084, + "c5": 1.7891816920943115, + "c6": 1.192787794729542, + "c7": 0.5963938973647696 }, "rgb": [58, 15, 49] }, @@ -117807,23 +117807,23 @@ "year": 1740, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -28.304694061633754, - "c2": 2.0066522965223754, - "c3": -11.040682225528062, - "c4": -24.54401619505729, - "c5": -25.232855345812084, - "c6": 11.227144858296562, - "c7": -20.292340426375354 + "points": { + "c1": 6.905927438346964, + "c2": 18.754355272163203, + "c3": -11.133465608212077, + "c4": -3.572221773836432, + "c5": -13.061859160168652, + "c6": 32.20793679547735, + "c7": -13.791803108905825 }, - "vertexSeeds": { - "c1": 4.999119179787591, - "c2": 4.527608902843113, - "c3": 5.188092369379018, - "c4": 5.656922848960711, - "c5": 5.007830864440541, - "c6": 4.988478553756111, - "c7": 5.623558721379773 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785023, + "c3": 6.773000462320852, + "c4": 5.418400369856684, + "c5": 4.063800277392511, + "c6": 2.7092001849283376, + "c7": 1.3546000924641688 }, "rgb": [222, 0, 59] }, @@ -117834,23 +117834,23 @@ "year": 1740, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -18.232820901616282, - "c2": -5.096762270740719, - "c3": 1.4307379049008695, - "c4": 19.918764198448123, - "c5": 20.260199467129894, - "c6": 10.932484831719691, - "c7": 19.23225093680196 + "points": { + "c1": -17.37530751073171, + "c2": 16.972748817643698, + "c3": 19.533400024077828, + "c4": 5.126913396101369, + "c5": -7.059521265138461, + "c6": -1.2708097316919975, + "c7": -21.21962649199608 }, - "vertexSeeds": { - "c1": 6.746465490470317, - "c2": 6.594103961402554, - "c3": 6.515394835387965, - "c4": 6.498519181110579, - "c5": 6.88370351069549, - "c6": 6.4714396189514805, - "c7": 6.433144539723614 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962546, + "c3": 8.599167822468795, + "c4": 6.87933425797503, + "c5": 5.159500693481266, + "c6": 3.439667128987515, + "c7": 1.7198335644937501 }, "rgb": [77, 76, 132] }, @@ -117861,23 +117861,23 @@ "year": 1740, "resistanceReported": true, "duration": 28857600, - "curveSeeds": { - "c1": -39.121548604055405, - "c2": -2.3202034555546405, - "c3": -24.0112861752534, - "c4": -5.774155631407503, - "c5": -24.10690899080454, - "c6": 34.38689812335406, - "c7": -3.258087040290256 + "points": { + "c1": 15.06692984959632, + "c2": 17.761408509690888, + "c3": -37.18513934331623, + "c4": 29.941580166351926, + "c5": 28.90559235926861, + "c6": -0.36258615136529926, + "c7": 16.988358759801386 }, - "vertexSeeds": { - "c1": 6.052240539736033, - "c2": 5.856142588107079, - "c3": 6.0562246040146315, - "c4": 5.910049113076874, - "c5": 5.888996796514857, - "c6": 6.004567869138645, - "c7": 6.0408981754696125 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589475, + "c3": 7.235321312991195, + "c4": 5.788257050392966, + "c5": 4.341192787794737, + "c6": 2.894128525196509, + "c7": 1.4470642625982284 }, "rgb": [86, 146, 138] }, @@ -117888,23 +117888,23 @@ "year": 1740, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 26.80044540340517, - "c2": -2.817566462796947, - "c3": -7.542686247212501, - "c4": -9.014683646334134, - "c5": 17.308843294352435, - "c6": 34.81088533582545, - "c7": 35.142243261083614 + "points": { + "c1": -8.425643098631923, + "c2": -38.275669358496586, + "c3": -32.049836365545524, + "c4": 7.1335339476376305, + "c5": -25.611877640074912, + "c6": -8.595659954899553, + "c7": -34.9136906662873 }, - "vertexSeeds": { - "c1": 3.2340651364190527, - "c2": 3.101822670479512, - "c3": 3.4971304340576106, - "c4": 3.213939912679017, - "c5": 2.9021161078711177, - "c6": 2.970119469288093, - "c7": 2.9199921869497967 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.1317614424410545, + "c3": 4.276467868700876, + "c4": 3.421174294960702, + "c5": 2.5658807212205272, + "c6": 1.7105871474803531, + "c7": 0.8552935737401742 }, "rgb": [86, 146, 138] }, @@ -117915,23 +117915,23 @@ "year": 1741, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 18.29790430722006, - "c2": -27.22617975330833, - "c3": -46.91867223018254, - "c4": -39.7296788790037, - "c5": 36.657378038738564, - "c6": -33.793262868622136, - "c7": -4.459076501494607 + "points": { + "c1": 21.618401379101492, + "c2": 53.39394652400832, + "c3": -18.646477321053794, + "c4": -31.00183950935675, + "c5": -6.354711041270669, + "c6": -46.70257919178047, + "c7": 38.79799293784654 }, - "vertexSeeds": { - "c1": 5.8614482291036465, - "c2": 6.131364475681785, - "c3": 5.983761352143803, - "c4": 5.963735363006758, - "c5": 5.8505522493492546, - "c6": 6.270392791323532, - "c7": 5.948356831532566 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152576, + "c3": 7.558945908460468, + "c4": 6.0471567267683835, + "c5": 4.5353675450762765, + "c6": 3.0235783633841917, + "c7": 1.5117891816921072 }, "rgb": [222, 0, 59] }, @@ -117942,23 +117942,23 @@ "year": 1740, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -11.93522855569875, - "c2": 25.231020362844312, - "c3": -8.539814846999452, - "c4": -6.47747201334737, - "c5": 36.52147002114549, - "c6": 28.43510406865522, - "c7": -26.112515582442597 + "points": { + "c1": 20.730692746214878, + "c2": -1.0496818245700723, + "c3": -22.168471181640797, + "c4": 14.203230882535316, + "c5": -4.803877751113809, + "c6": 33.477767754335076, + "c7": -17.24897468872437 }, - "vertexSeeds": { - "c1": 4.516952947379358, - "c2": 4.608145957765334, - "c3": 4.3955183493447025, - "c4": 4.783838391164594, - "c5": 4.777720546612097, - "c6": 4.7430699271622645, - "c7": 4.533293587378056 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.1567267683772515, + "c3": 5.963938973647714, + "c4": 4.77115117891817, + "c5": 3.5783633841886258, + "c6": 2.3855755894590884, + "c7": 1.1927877947295442 }, "rgb": [222, 0, 59] }, @@ -117969,23 +117969,23 @@ "year": 1740, "resistanceReported": true, "duration": 6480000, - "curveSeeds": { - "c1": -4.379859310981889, - "c2": -0.9205607059102938, - "c3": 5.5106882856386505, - "c4": 10.468578230866694, - "c5": -1.0144146222574584, - "c6": 7.451195517455979, - "c7": -6.229886768042213 + "points": { + "c1": -18.708342907880844, + "c2": 11.034405178752781, + "c3": -8.609254682975115, + "c4": -7.695558538381155, + "c5": 10.96542120783958, + "c6": 2.24280071839112, + "c7": -4.9238096018275215 }, - "vertexSeeds": { - "c1": 2.580160624887232, - "c2": 3.3976723091255874, - "c3": 1.830034669060772, - "c4": 2.9586809718819467, - "c5": 3.142777936422427, - "c6": 2.578181130339727, - "c7": 1.8306108876761606 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.39204808136847, + "c4": 3.5136384650947763, + "c5": 2.6352288488210824, + "c6": 1.756819232547388, + "c7": 0.878409616273694 }, "rgb": [58, 15, 49] }, @@ -117996,23 +117996,23 @@ "year": 1740, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -8.38652920272311, - "c2": -32.20027959994114, - "c3": -18.90223501541413, - "c4": -39.87366213866261, - "c5": -17.966022457146742, - "c6": -35.32538463542852, - "c7": 25.175801649228518 + "points": { + "c1": 4.453190477902972, + "c2": 42.15425516906164, + "c3": -41.12825765429354, + "c4": -36.42775952935175, + "c5": -32.678765424613026, + "c6": 17.883448560121884, + "c7": 41.49727467108012 }, - "vertexSeeds": { - "c1": 3.847145315915329, - "c2": 3.8119860985841805, - "c3": 3.6791399846147717, - "c4": 3.865902026567762, - "c5": 3.693396216252109, - "c6": 3.8035592499228676, - "c7": 3.576209945758127 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703656, + "c4": 3.698566805362927, + "c5": 2.773925104022186, + "c6": 1.8492834026814575, + "c7": 0.9246417013407288 }, "rgb": [222, 0, 59] }, @@ -118023,23 +118023,23 @@ "year": 1740, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 15.685269582351083, - "c2": -2.5826480250720394, - "c3": -2.677565448280454, - "c4": 21.984108014939267, - "c5": 23.958898154829228, - "c6": 32.405290742092035, - "c7": -8.210774993182866 + "points": { + "c1": 24.74563421199673, + "c2": 2.660309819391884, + "c3": 1.3672271843909911, + "c4": 31.423513812818726, + "c5": 28.97073523538124, + "c6": -23.48999138307605, + "c7": 39.39129137123723 }, - "vertexSeeds": { - "c1": 7.884219877179381, - "c2": 7.844588484502253, - "c3": 7.88635785856426, - "c4": 7.8652590653330545, - "c5": 7.795194835422811, - "c6": 7.804060183060646, - "c7": 7.869565714897381 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812748, + "c3": 9.662505779010653, + "c4": 7.730004623208514, + "c5": 5.797503467406374, + "c6": 3.8650023116042798, + "c7": 1.9325011558021399 }, "rgb": [58, 15, 49] }, @@ -118050,23 +118050,23 @@ "year": 1740, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -4.424764989622922, - "c2": 23.426203061743408, - "c3": -23.059420179421952, - "c4": -1.3381974234466227, - "c5": -20.93905092957164, - "c6": -29.56013480171702, - "c7": 15.84403701349634 + "points": { + "c1": 6.572454167087898, + "c2": 4.867092105368982, + "c3": -27.48171674430766, + "c4": -30.484510985179675, + "c5": 22.576167297747077, + "c6": 5.46895617381783, + "c7": -30.62920531855789 }, - "vertexSeeds": { - "c1": 4.370783325958181, - "c2": 4.928094591872618, - "c3": 4.363682972511846, - "c4": 4.358182963250176, - "c5": 5.037872588465027, - "c6": 4.540408169923243, - "c7": 4.5294149038329605 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -118077,23 +118077,23 @@ "year": 1740, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -2.2116608572550973, - "c2": 35.100346027814496, - "c3": 37.201623717349065, - "c4": 36.65588705323158, - "c5": -35.5013411744223, - "c6": 27.241896379735536, - "c7": 13.067193779709847 + "points": { + "c1": -5.623945835877862, + "c2": -14.182504866478993, + "c3": -1.8044850481227783, + "c4": -17.26652788022413, + "c5": 16.91485116292567, + "c6": 16.335325562392192, + "c7": -10.921430539974416 }, - "vertexSeeds": { - "c1": 4.465724564270259, - "c2": 4.9724604592636545, - "c3": 5.167250256772572, - "c4": 4.598445004731803, - "c5": 4.578252385133846, - "c6": 4.784749318887089, - "c7": 4.875256843845156 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -118104,23 +118104,23 @@ "year": 1740, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -11.237131547127902, - "c2": 20.46776715167504, - "c3": -23.869511559626638, - "c4": -14.141831518542624, - "c5": 22.223167060246816, - "c6": -17.537532595828385, - "c7": 9.78732273429602 + "points": { + "c1": -17.077106339098517, + "c2": 35.570360340157606, + "c3": 29.315966852189163, + "c4": -13.277059426826693, + "c5": -3.6755083794519123, + "c6": 32.670302135054996, + "c7": -26.644316852309757 }, - "vertexSeeds": { - "c1": 3.8445951726152745, - "c2": 4.353745670550387, - "c3": 3.929804482489387, - "c4": 4.16528380725613, - "c5": 4.613992565659335, - "c6": 4.299353670695228, - "c7": 3.9235231807006894 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -118131,23 +118131,23 @@ "year": 1740, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -29.67755222402166, - "c2": 36.593001874436936, - "c3": -34.08030149261452, - "c4": 27.542501003993365, - "c5": 29.683227835671048, - "c6": 22.561883380943137, - "c7": -17.9856959169732 + "points": { + "c1": -26.714291859656477, + "c2": -38.53851195723461, + "c3": -15.860761069666317, + "c4": 5.663851653371573, + "c5": 5.951987133015081, + "c6": -27.246711897875237, + "c7": 24.157536403461705 }, - "vertexSeeds": { - "c1": 4.392203334431828, - "c2": 4.141012927205189, - "c3": 4.639242603308525, - "c4": 4.14469113870669, - "c5": 4.411045355146024, - "c6": 4.251185306914491, - "c7": 4.020940233373811 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -118158,23 +118158,23 @@ "year": 1740, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 10.835665148785722, - "c2": 23.416193244857375, - "c3": 28.759414882011207, - "c4": 15.578089231160568, - "c5": 11.313922776443647, - "c6": -35.39603309541666, - "c7": 19.59570801749353 + "points": { + "c1": -21.495629527968017, + "c2": 38.12030005814017, + "c3": -36.700239349071815, + "c4": -21.157026533285418, + "c5": -13.998429882975518, + "c6": 38.17937070966709, + "c7": 34.62568262919297 }, - "vertexSeeds": { - "c1": 2.455452619174925, - "c2": 2.5222119900839193, - "c3": 2.643344114559061, - "c4": 2.625835708716322, - "c5": 2.6526715265711194, - "c6": 2.652258024077447, - "c7": 2.5043577154478482 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692556, + "c4": 2.5889967637540443, + "c5": 1.9417475728155322, + "c6": 1.2944983818770204, + "c7": 0.6472491909385085 }, "rgb": [222, 0, 59] }, @@ -118185,23 +118185,23 @@ "year": 1740, "resistanceReported": false, "duration": 1900800, - "curveSeeds": { - "c1": -7.455012707156892, - "c2": -10.21404200725289, - "c3": -4.142340925064986, - "c4": -7.031455626549889, - "c5": -1.1059597447015843, - "c6": -10.809602240330497, - "c7": -11.379129920513574 + "points": { + "c1": 6.96916908086062, + "c2": 7.107071668644355, + "c3": 3.221335104004659, + "c4": -13.676726291143007, + "c5": -0.9237711498688501, + "c6": 6.029732386054867, + "c7": 8.046865486345219 }, - "vertexSeeds": { - "c1": 5.60834430608277, - "c2": 6.2152514115966655, - "c3": 5.616399676066529, - "c4": 6.098502701106958, - "c5": 6.131127253773808, - "c6": 5.818404144097663, - "c7": 6.200529583710709 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -118212,23 +118212,23 @@ "year": 1742, "resistanceReported": false, "duration": 66355200, - "curveSeeds": { - "c1": 48.781159671312224, - "c2": -77.80437517492945, - "c3": 0.7649018961511302, - "c4": -32.20487251895357, - "c5": 38.756756739606146, - "c6": 70.03577844163013, - "c7": -24.805115285993097 + "points": { + "c1": 46.80468203044407, + "c2": -77.98024779458984, + "c3": -12.50833310515128, + "c4": 73.6941451027653, + "c5": 66.52207060486273, + "c6": 54.77480887458245, + "c7": -3.1066678858707775 }, - "vertexSeeds": { - "c1": 6.103636469966438, - "c2": 6.032496523824032, - "c3": 6.049841088626522, - "c4": 5.857789960243417, - "c5": 6.185653490508682, - "c6": 5.944556649650183, - "c7": 6.330510840516538 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595003, + "c3": 7.813222376329175, + "c4": 6.250577901063335, + "c5": 4.687933425797508, + "c6": 3.1252889505316674, + "c7": 1.5626444752658406 }, "rgb": [222, 0, 59] }, @@ -118239,23 +118239,23 @@ "year": 1740, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -8.418728987982288, - "c2": -21.163479867904364, - "c3": -11.534404582455405, - "c4": 17.74435254769702, - "c5": -32.510859669239046, - "c6": 28.736725580901812, - "c7": -12.11198801098811 + "points": { + "c1": 2.8979394985425415, + "c2": 14.577073589430718, + "c3": 11.311925410301896, + "c4": -22.75152499461673, + "c5": 6.391494374778048, + "c6": 26.992197465743203, + "c7": -20.66256673246646 }, - "vertexSeeds": { - "c1": 3.9431307560736273, - "c2": 3.9804345275359103, - "c3": 4.624068953940245, - "c4": 4.325121406345652, - "c5": 4.421054174295671, - "c6": 3.88111824438378, - "c7": 3.896443207647872 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -118266,23 +118266,23 @@ "year": 1740, "resistanceReported": false, "duration": 1209600, - "curveSeeds": { - "c1": 5.115772787523076, - "c2": -1.2957518524981868, - "c3": -9.695321483358383, - "c4": -9.633690137871532, - "c5": -1.1946525511490282, - "c6": -8.831348883120198, - "c7": -3.6882105496498294 + "points": { + "c1": 7.219518282276441, + "c2": -8.057104551031511, + "c3": 7.058786878095114, + "c4": 2.208156729380457, + "c5": 7.081854252926787, + "c6": 10.906048928060867, + "c7": 2.778792181023002 }, - "vertexSeeds": { - "c1": 4.033057433552207, - "c2": 4.5435110553933455, - "c3": 4.002333366101485, - "c4": 3.8457030941567902, - "c5": 4.2258078217145965, - "c6": 4.130033446185671, - "c7": 4.440900556938203 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -118293,23 +118293,23 @@ "year": 1740, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 1.9254191920899757, - "c2": 20.63062169029223, - "c3": 10.900155245219374, - "c4": 0.7779789212646833, - "c5": 6.319338706797289, - "c6": 7.559234758595402, - "c7": -18.461117208793098 + "points": { + "c1": 27.005858921837664, + "c2": 31.45082335715287, + "c3": -3.59376417237506, + "c4": -30.764044722771995, + "c5": 26.224666058732737, + "c6": -15.336816786339053, + "c7": 29.702759201495404 }, - "vertexSeeds": { - "c1": 4.472472424621214, - "c2": 4.637220101301775, - "c3": 4.743736563054309, - "c4": 4.719651554004898, - "c5": 4.650467543541658, - "c6": 4.797577933574352, - "c7": 4.678276248629868 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819698, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.243643088303281 }, "rgb": [222, 0, 59] }, @@ -118320,23 +118320,23 @@ "year": 1740, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -31.07614081755526, - "c2": 7.456531081766613, - "c3": 16.04246888416276, - "c4": 3.2878093532084094, - "c5": 28.761290927527163, - "c6": 4.682552464631307, - "c7": 28.77413717425589 + "points": { + "c1": 31.127911691174276, + "c2": 4.980331339064939, + "c3": 21.916778318273288, + "c4": -8.3770341824644, + "c5": -21.748829405886376, + "c6": 16.495723481808568, + "c7": -32.46037925084442 }, - "vertexSeeds": { - "c1": 4.77468674590477, - "c2": 4.794261937699905, - "c3": 5.020678123108036, - "c4": 4.810703303932312, - "c5": 4.878701119141926, - "c6": 4.377884656386147, - "c7": 4.318398544581239 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -118347,23 +118347,23 @@ "year": 1740, "resistanceReported": false, "duration": 864000, - "curveSeeds": { - "c1": 1.7558693531189977, - "c2": 6.701401994301223, - "c3": 6.137912724175704, - "c4": 0.16731199244775397, - "c5": -4.987396910175234, - "c6": 8.931331100359069, - "c7": 9.656670376313281 + "points": { + "c1": 4.064025220760785, + "c2": 4.140192506008491, + "c3": -1.1474702965499617, + "c4": 5.858823692647549, + "c5": 1.576542060913571, + "c6": -8.155925285517842, + "c7": -5.386937653857692 }, - "vertexSeeds": { - "c1": 4.982771857803236, - "c2": 4.2631724722059054, - "c3": 5.202307154090727, - "c4": 4.555521483250015, - "c5": 4.405920995231636, - "c6": 5.241960379558973, - "c7": 5.096512528162085 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -118374,23 +118374,23 @@ "year": 1740, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -9.96965459219961, - "c2": 17.09957032561696, - "c3": 11.102776861624449, - "c4": -8.066925743892476, - "c5": -9.18190130734974, - "c6": 18.3037806621117, - "c7": -37.307076633677795 + "points": { + "c1": 37.51355400052476, + "c2": -6.0834027842721525, + "c3": 7.397816806490802, + "c4": 5.6607776286315, + "c5": 2.073309723682094, + "c6": 36.604242999942244, + "c7": 22.578675564915116 }, - "vertexSeeds": { - "c1": 2.687228595222535, - "c2": 2.699114569839905, - "c3": 2.6961978499300963, - "c4": 2.6822759083207712, - "c5": 2.6880122070983177, - "c6": 2.6915901656834746, - "c7": 2.693069620363211 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310867, + "c3": 3.2362459546925937, + "c4": 2.5889967637541007, + "c5": 1.941747572815479, + "c6": 1.294498381876986, + "c7": 0.647249190938493 }, "rgb": [222, 0, 59] }, @@ -118401,23 +118401,23 @@ "year": 1740, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -34.08080017442662, - "c2": -41.628726429257064, - "c3": -22.50984259419451, - "c4": -0.42623872030353027, - "c5": -4.886750379879338, - "c6": -25.53144819152916, - "c7": -13.7118426287361 + "points": { + "c1": 17.305298620194733, + "c2": -31.444243076230713, + "c3": 32.24008809044419, + "c4": 32.272022121630556, + "c5": 5.636564086186304, + "c6": -24.417608195780247, + "c7": 10.711606496343393 }, - "vertexSeeds": { - "c1": 8.309802104575343, - "c2": 8.062588394701086, - "c3": 7.941083384803674, - "c4": 7.971876514232151, - "c5": 8.13500555232146, - "c6": 8.313303188439711, - "c7": 7.950483139750786 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375874, + "c3": 9.986130374479899, + "c4": 7.988904299583927, + "c5": 5.991678224687954, + "c6": 3.9944521497919463, + "c7": 1.9972260748959731 }, "rgb": [86, 146, 138] }, @@ -118428,23 +118428,23 @@ "year": 1741, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 16.41628922871756, - "c2": -39.903055161907815, - "c3": 6.479360395801663, - "c4": 43.91536985959354, - "c5": 10.570478928314067, - "c6": 36.72079921621861, - "c7": -36.93407659270014 + "points": { + "c1": -38.059278603933116, + "c2": 19.669189347814168, + "c3": 37.485779144584754, + "c4": -17.454282306088444, + "c5": -15.414851847833305, + "c6": -40.1666294767496, + "c7": -37.90736366137258 }, - "vertexSeeds": { - "c1": 4.5673613005592015, - "c2": 5.166844641735395, - "c3": 4.829852983456032, - "c4": 4.994284072321514, - "c5": 4.537247424996364, - "c6": 4.90644842087211, - "c7": 5.147446238943523 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940361, + "c3": 6.287563569116967, + "c4": 5.030050855293574, + "c5": 3.7725381414701804, + "c6": 2.515025427646787, + "c7": 1.2575127138233935 }, "rgb": [222, 0, 59] }, @@ -118455,23 +118455,23 @@ "year": 1741, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 16.01754291945624, - "c2": 37.381962571967506, - "c3": -46.35874904980681, - "c4": -5.711665934639868, - "c5": 28.02754486901513, - "c6": 43.87634222324611, - "c7": -21.871437033293496 + "points": { + "c1": -4.422832891110183, + "c2": 21.386487139281556, + "c3": 1.891825701730049, + "c4": 17.109420339304535, + "c5": 25.51993176768785, + "c6": -31.089111226887404, + "c7": -17.702037852901174 }, - "vertexSeeds": { - "c1": 4.492659140570653, - "c2": 4.873804935272256, - "c3": 4.34591127911317, - "c4": 4.2146191852220936, - "c5": 5.013905956954342, - "c6": 4.823225593097866, - "c7": 4.814455114887057 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -118482,23 +118482,23 @@ "year": 1740, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -23.461931337614498, - "c2": 40.704256638277656, - "c3": -24.1611501815777, - "c4": 41.13103679533735, - "c5": 1.1003470817245642, - "c6": 14.489826181555685, - "c7": 7.48492265258291 + "points": { + "c1": 39.15333560452426, + "c2": -3.2577788112215345, + "c3": -44.48755925864712, + "c4": 10.187568307829707, + "c5": -10.298083529415706, + "c6": 34.23289894326899, + "c7": 35.416621120795796 }, - "vertexSeeds": { - "c1": 4.5181295262109735, - "c2": 5.035019245852514, - "c3": 5.052799860732798, - "c4": 4.772404915311269, - "c5": 4.320157587369506, - "c6": 4.203995268199646, - "c7": 4.390393750938702 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -118509,23 +118509,23 @@ "year": 1740, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 16.805314393672262, - "c2": 27.28232631191129, - "c3": 21.54574147810777, - "c4": 17.468067134829127, - "c5": 9.794853584270406, - "c6": -3.564202980804282, - "c7": 32.01045066021314 + "points": { + "c1": -16.402905881888586, + "c2": -27.942567952042275, + "c3": -36.442781774457394, + "c4": 18.755257715757466, + "c5": -33.93615692345132, + "c6": 7.017977763107936, + "c7": -15.686238260522284 }, - "vertexSeeds": { - "c1": 5.485288599169662, - "c2": 6.33037695657471, - "c3": 5.599841022379158, - "c4": 5.585955690430711, - "c5": 6.176519043240804, - "c6": 5.824569023853632, - "c7": 6.114384273303326 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -118536,23 +118536,23 @@ "year": 1740, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -17.46963197182403, - "c2": 24.45389476137814, - "c3": 0.31465538240910007, - "c4": -28.181488978423218, - "c5": -4.641579603022034, - "c6": 27.829363660362947, - "c7": -23.299436838565452 + "points": { + "c1": -14.776808707236626, + "c2": -1.4348121777115423, + "c3": -1.345682019520062, + "c4": -25.178163642454898, + "c5": -0.6796227842335298, + "c6": -4.82042355210455, + "c7": 13.035150884657707 }, - "vertexSeeds": { - "c1": 10.535415173942736, - "c2": 10.514808989059539, - "c3": 10.662463797386119, - "c4": 10.583985080457897, - "c5": 10.29595195298208, - "c6": 10.61219267386908, - "c7": 10.600525646442081 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122014, + "c3": 12.713823393435055, + "c4": 10.17105871474801, + "c5": 7.628294036061051, + "c6": 5.085529357374005, + "c7": 2.5427646786870466 }, "rgb": [77, 76, 132] }, @@ -118563,23 +118563,23 @@ "year": 1741, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -45.2892044765382, - "c2": 21.878406858154086, - "c3": 8.819214830930314, - "c4": -37.70218634986534, - "c5": -25.07024834431438, - "c6": -29.892041443641983, - "c7": 3.908109132611621 + "points": { + "c1": -42.18692274504557, + "c2": 50.042657335313756, + "c3": -30.795947436403992, + "c4": -16.84272442782619, + "c5": -9.961364542218575, + "c6": -14.66893503130212, + "c7": 50.89224895905125 }, - "vertexSeeds": { - "c1": 3.458149351658961, - "c2": 3.4764627098748213, - "c3": 3.862710086766257, - "c4": 3.517193881877637, - "c5": 4.19579153471021, - "c6": 4.008211027806522, - "c7": 3.9541485862725136 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374018, + "c4": 4.068423485899213, + "c5": 3.05131761442441, + "c6": 2.0342117429496067, + "c7": 1.0171058714748034 }, "rgb": [86, 146, 138] }, @@ -118590,23 +118590,23 @@ "year": 1740, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 12.022757544180777, - "c2": 24.588660434926837, - "c3": 25.87457593538671, - "c4": -26.26112232690674, - "c5": -19.98005619912949, - "c6": -25.923591373077638, - "c7": -35.84210039120047 + "points": { + "c1": 35.99274212342245, + "c2": -28.455577500378368, + "c3": -9.514063527328155, + "c4": 11.462165896831536, + "c5": 26.621409851246547, + "c6": 34.81419374972007, + "c7": 27.79924373466806 }, - "vertexSeeds": { - "c1": 2.565984846655314, - "c2": 2.429751882556321, - "c3": 2.4785988633890876, - "c4": 2.4313682154498006, - "c5": 2.5030903195773133, - "c6": 2.581422109289399, - "c7": 2.507353893539974 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.7447988904299634, + "c3": 3.1206657420249635, + "c4": 2.496532593619976, + "c5": 1.8723994452149757, + "c6": 1.248266296809988, + "c7": 0.624133148404994 }, "rgb": [222, 0, 59] }, @@ -118617,23 +118617,23 @@ "year": 1741, "resistanceReported": false, "duration": 55641600, - "curveSeeds": { - "c1": 12.961920165695702, - "c2": -1.3705652335550553, - "c3": 57.61483316645766, - "c4": 2.91825593325936, - "c5": 62.94099218377474, - "c6": -7.515550932415401, - "c7": -32.77965405056714 + "points": { + "c1": -21.88769312699486, + "c2": 16.028524126126825, + "c3": 53.50450368339321, + "c4": 24.097026464619532, + "c5": -29.87229402084796, + "c6": -37.16002328858005, + "c7": 39.65517282583677 }, - "vertexSeeds": { - "c1": 8.732389213857592, - "c2": 7.922829801679151, - "c3": 7.9769639894173805, - "c4": 7.981875245236325, - "c5": 8.232965177789694, - "c6": 8.486433146105384, - "c7": 8.361020220768793 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260756, + "c3": 10.494683310217289, + "c4": 8.395746648173837, + "c5": 6.296809986130369, + "c6": 4.197873324086919, + "c7": 2.098936662043468 }, "rgb": [58, 15, 49] }, @@ -118644,23 +118644,23 @@ "year": 1741, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 5.930552592831511, - "c2": 0.48748326954357424, - "c3": 3.079372027940593, - "c4": 40.00052604007421, - "c5": -29.50799844108417, - "c6": 1.317619541191334, - "c7": -11.364198249596157 + "points": { + "c1": -12.88903535525149, + "c2": -33.656034820304235, + "c3": 37.12931399874277, + "c4": 29.00697612441484, + "c5": 14.564742278922324, + "c6": -20.17374987597878, + "c7": -30.132514435953624 }, - "vertexSeeds": { - "c1": 6.727166336713993, - "c2": 7.126412522441136, - "c3": 6.6128082129874155, - "c4": 6.768144221565867, - "c5": 6.634860893583792, - "c6": 6.584447467541289, - "c7": 6.605520544621738 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962546, + "c3": 8.599167822468795, + "c4": 6.87933425797503, + "c5": 5.159500693481266, + "c6": 3.439667128987515, + "c7": 1.7198335644937501 }, "rgb": [238, 201, 159] }, @@ -118671,23 +118671,23 @@ "year": 1740, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": 3.2720274395431197, - "c2": 13.512411301879808, - "c3": -13.566841279714792, - "c4": -14.67207579572753, - "c5": -12.790898375171398, - "c6": -12.591189298608198, - "c7": -9.662501098655731 + "points": { + "c1": 15.524119263571144, + "c2": -2.1487761346030005, + "c3": 17.77567294259608, + "c4": -11.301780976708617, + "c5": 9.539390053410909, + "c6": -7.689085202917099, + "c7": 8.482880213727888 }, - "vertexSeeds": { - "c1": 1.4509607100206847, - "c2": 1.393845030443812, - "c3": 1.4533652941134132, - "c4": 1.3924117444659865, - "c5": 1.3346611415039171, - "c6": 1.3733543364151832, - "c7": 1.4307824002797012 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097089, + "c3": 1.7799352750809057, + "c4": 1.4239482200647262, + "c5": 1.0679611650485423, + "c6": 0.7119741100323631, + "c7": 0.3559870550161838 }, "rgb": [222, 0, 59] }, @@ -118698,23 +118698,23 @@ "year": 1740, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 29.45086957975061, - "c2": -33.08881980181574, - "c3": 24.753449416058153, - "c4": -3.996698177052579, - "c5": 10.397285379724757, - "c6": -18.095527240435466, - "c7": 9.492253545263225 + "points": { + "c1": -4.355657091577164, + "c2": -37.12549738791299, + "c3": 5.112765602678358, + "c4": 29.61165267907196, + "c5": 12.098709615731543, + "c6": -9.609927599714986, + "c7": 8.629181096593754 }, - "vertexSeeds": { - "c1": 7.6524509983747295, - "c2": 8.191494044938677, - "c3": 8.39295898661962, - "c4": 8.251741352294232, - "c5": 8.174024329656437, - "c6": 8.778427203372946, - "c7": 8.525556953680123 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.59361997226075, + "c3": 10.494683310217294, + "c4": 8.395746648173837, + "c5": 6.296809986130381, + "c6": 4.197873324086924, + "c7": 2.0989366620434673 }, "rgb": [238, 201, 159] }, @@ -118725,23 +118725,23 @@ "year": 1741, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -7.848499536469959, - "c2": -25.348772374357914, - "c3": -26.337239783822813, - "c4": -38.75725361926602, - "c5": -12.533201050447694, - "c6": -35.40281982949001, - "c7": 9.291141372380046 + "points": { + "c1": 11.720828753481285, + "c2": 5.312678065521084, + "c3": 28.26061890569875, + "c4": -18.830654423129403, + "c5": -43.43726671444777, + "c6": -11.728341814704955, + "c7": 34.433749223035676 }, - "vertexSeeds": { - "c1": 4.5198302644256385, - "c2": 4.3898829089482545, - "c3": 5.240567898591248, - "c4": 4.5105411193232845, - "c5": 4.278658301410912, - "c6": 4.467982571476295, - "c7": 4.476266924825358 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -118752,23 +118752,23 @@ "year": 1741, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 5.053085032177833, - "c2": -4.2927224110388025, - "c3": -4.441610918882425, - "c4": 38.0717421042161, - "c5": 2.8130520356765487, - "c6": -37.93790353504989, - "c7": -12.03458775533823 + "points": { + "c1": -28.738424665000494, + "c2": -0.6832932229288176, + "c3": -43.602290117929904, + "c4": -42.073778209098855, + "c5": -22.27371751130469, + "c6": 0.3880896664200577, + "c7": 31.065142696519914 }, - "vertexSeeds": { - "c1": 4.927848537729312, - "c2": 4.4707807426002315, - "c3": 4.720073779788128, - "c4": 5.229571513887985, - "c5": 4.735614793683491, - "c6": 5.202723685799045, - "c7": 4.971877784692142 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -118779,23 +118779,23 @@ "year": 1741, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -15.666820495754752, - "c2": 36.74768578470442, - "c3": -11.410454612907767, - "c4": 32.87149632237732, - "c5": 15.43272421124577, - "c6": 6.746512617193552, - "c7": -30.760254973235487 + "points": { + "c1": -6.321262905669286, + "c2": -7.175992599022074, + "c3": -21.39260785418022, + "c4": -3.2214732284805834, + "c5": -37.35636405800387, + "c6": 13.694153928995462, + "c7": 35.63328188519014 }, - "vertexSeeds": { - "c1": 5.454155703467233, - "c2": 5.753166199451273, - "c3": 5.576190532046078, - "c4": 5.4676493002283415, - "c5": 5.784256248036453, - "c6": 5.559256933216588, - "c7": 5.533049898429069 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [58, 15, 49] }, @@ -118806,23 +118806,23 @@ "year": 1741, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -12.355527972259896, - "c2": 29.686421031136078, - "c3": 27.59724264046079, - "c4": -36.37139814285009, - "c5": 33.45405603070243, - "c6": 34.097038601660316, - "c7": 4.539288146755048 + "points": { + "c1": 21.795231563925213, + "c2": 0.1619841428738411, + "c3": -25.7436494841286, + "c4": 13.783554447115108, + "c5": -7.944828521150242, + "c6": 24.79953660732835, + "c7": -34.92698691084738 }, - "vertexSeeds": { - "c1": 4.21467946667826, - "c2": 5.0486680567684585, - "c3": 4.537482975505941, - "c4": 4.953210945995322, - "c5": 4.562327178569642, - "c6": 5.2139601807467155, - "c7": 4.917157960448513 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -118833,23 +118833,23 @@ "year": 1740, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 6.626787919572763, - "c2": -24.46579476021733, - "c3": -8.117611625786907, - "c4": -1.1933564096647231, - "c5": 11.939495889255141, - "c6": -23.045485670848887, - "c7": -0.3284470407105715 + "points": { + "c1": -14.03243757256891, + "c2": 15.806721919547797, + "c3": 10.049499727040661, + "c4": -22.395421778869228, + "c5": -29.356743869984182, + "c6": -7.639709102564211, + "c7": -9.719199251558774 }, - "vertexSeeds": { - "c1": 2.9313840049001803, - "c2": 2.8921400120596497, - "c3": 2.861541153526278, - "c4": 2.951846874327212, - "c5": 2.7968833057457725, - "c6": 2.902264770415213, - "c7": 2.852370084115631 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556174, + "c3": 3.7679149329634756, + "c4": 3.014331946370783, + "c5": 2.260748959778084, + "c6": 1.5071659731853915, + "c7": 0.753582986592699 }, "rgb": [58, 15, 49] }, @@ -118860,23 +118860,23 @@ "year": 1740, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 22.482524606959068, - "c2": 2.6885376248263384, - "c3": -26.72364244251334, - "c4": -13.634045429555837, - "c5": -18.934732107209747, - "c6": -9.008436445436207, - "c7": -11.15385767203227 + "points": { + "c1": -29.308762051648547, + "c2": -1.4360450102873195, + "c3": -19.811624144982886, + "c4": -29.80833838501193, + "c5": -22.35966790252664, + "c6": 5.311802400679248, + "c7": 9.252339330323373 }, - "vertexSeeds": { - "c1": 4.629929951876895, - "c2": 4.546540791276422, - "c3": 4.858262724063183, - "c4": 4.630649035642432, - "c5": 4.928097131774981, - "c6": 4.5307528199174865, - "c7": 4.836642005896249 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -118887,23 +118887,23 @@ "year": 1740, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 11.245900612231686, - "c2": -32.77303959486361, - "c3": 17.96076245201759, - "c4": 15.989156827750257, - "c5": -0.7246059547223211, - "c6": 9.985590991043772, - "c7": -6.283417808530896 + "points": { + "c1": -30.22485588071943, + "c2": 34.59433971020371, + "c3": -11.364784462125836, + "c4": -20.01825288759919, + "c5": -26.305545458988625, + "c6": -29.662522063223708, + "c7": 17.84600248527905 }, - "vertexSeeds": { - "c1": 5.586596194385782, - "c2": 5.953577660619275, - "c3": 5.960140500169874, - "c4": 6.210902564614543, - "c5": 5.780106866384538, - "c6": 5.844818396061428, - "c7": 5.6152616719345785 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -118914,23 +118914,23 @@ "year": 1741, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 22.13437743067135, - "c2": -13.617550307006066, - "c3": -27.161012297638237, - "c4": 30.19743570051172, - "c5": 31.446182500816377, - "c6": 6.616997317188826, - "c7": 2.2168648996645786 + "points": { + "c1": -25.339963694060415, + "c2": 28.327361008455952, + "c3": 36.73058438011017, + "c4": -21.312452942449788, + "c5": -13.608763195156211, + "c6": -34.68778639567365, + "c7": 1.7539187428337968 }, - "vertexSeeds": { - "c1": 4.933545634754712, - "c2": 4.745601658491165, - "c3": 5.102501323567728, - "c4": 4.694614781383795, - "c5": 4.921479752865305, - "c6": 4.84091874658608, - "c7": 4.43089207779089 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -118941,23 +118941,23 @@ "year": 1741, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 3.6836607433911936, - "c2": -37.586555696026586, - "c3": 8.777543510298706, - "c4": -20.048976786623697, - "c5": -22.94214145981754, - "c6": -13.949113510335426, - "c7": 2.361774615109745 + "points": { + "c1": 32.404345235899484, + "c2": -38.31722307720296, + "c3": -11.512459045283155, + "c4": 11.12081371048739, + "c5": 10.77243496648753, + "c6": -30.523188150490235, + "c7": 1.703933937868321 }, - "vertexSeeds": { - "c1": 3.76683925480853, - "c2": 3.4135126467627885, - "c3": 3.472792964211536, - "c4": 3.782275428465164, - "c5": 3.729682040740591, - "c6": 3.5021914642991314, - "c7": 3.591394148309894 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [238, 201, 159] }, @@ -118968,23 +118968,23 @@ "year": 1740, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -17.237736711836448, - "c2": -3.848628248313272, - "c3": -15.259509372772062, - "c4": -31.759522382406875, - "c5": -32.53699836910834, - "c6": 32.34867776571716, - "c7": -21.495885052681498 + "points": { + "c1": 17.817787391166355, + "c2": -13.325665744976796, + "c3": 35.315964430907336, + "c4": 15.039082194772142, + "c5": 27.85973030780071, + "c6": -33.63146942734189, + "c7": -5.607883095220544 }, - "vertexSeeds": { - "c1": 4.251220415020484, - "c2": 4.398135509248303, - "c3": 4.652959127343615, - "c4": 5.176074649867788, - "c5": 4.46839928453846, - "c6": 5.000814700072419, - "c7": 4.577348708223026 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -118995,23 +118995,23 @@ "year": 1740, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -30.57263741805562, - "c2": 29.98884371403892, - "c3": -13.784901711554873, - "c4": -31.94135890461766, - "c5": -3.6850462540006355, - "c6": -15.80607367442061, - "c7": 31.489028896250673 + "points": { + "c1": -35.173161372578384, + "c2": 12.877029242340875, + "c3": 17.600350277102024, + "c4": -18.373132525264353, + "c5": -24.84639673690169, + "c6": -30.129213413129186, + "c7": 32.508212126317744 }, - "vertexSeeds": { - "c1": 2.6641704893385785, - "c2": 2.6233172520458847, - "c3": 2.6801652108427576, - "c4": 2.645886456736663, - "c5": 2.667249370744759, - "c6": 2.6770924943043592, - "c7": 2.677513690578565 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310547, + "c3": 3.2362459546925613, + "c4": 2.5889967637540363, + "c5": 1.9417475728155433, + "c6": 1.2944983818770182, + "c7": 0.647249190938493 }, "rgb": [222, 0, 59] }, @@ -119022,23 +119022,23 @@ "year": 1741, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -35.3713114138621, - "c2": -15.500437712838753, - "c3": 31.02909282582918, - "c4": 13.974930465179867, - "c5": -24.53359273867135, - "c6": 31.862922155926768, - "c7": -36.53192411563786 + "points": { + "c1": 4.136904030707356, + "c2": -28.12892528403053, + "c3": 4.525008745746447, + "c4": -32.864354264941724, + "c5": -26.67715493092138, + "c6": 28.224135052477266, + "c7": 39.5085741119683 }, - "vertexSeeds": { - "c1": 12.119170505286759, - "c2": 12.66193220537036, - "c3": 12.624090912470336, - "c4": 12.771080144864849, - "c5": 11.610682164459881, - "c6": 12.563654634073442, - "c7": 11.93074497953779 + "offsets": { + "c1": 21.68284789644013, + "c2": 18.58529819694867, + "c3": 15.487748497457238, + "c4": 12.39019879796578, + "c5": 9.29264909847435, + "c6": 6.19509939898289, + "c7": 3.097549699491459 }, "rgb": [222, 0, 59] }, @@ -119049,23 +119049,23 @@ "year": 1740, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 9.690908938158671, - "c2": -0.3724026101643574, - "c3": -6.715810822846578, - "c4": -3.0088443049263667, - "c5": 15.292887024687502, - "c6": 4.328900438905237, - "c7": -22.299427671026503 + "points": { + "c1": -3.277938483447972, + "c2": -0.3161076143176693, + "c3": 21.49899722517685, + "c4": 15.15287210000642, + "c5": -7.119227502628977, + "c6": 13.038066642882477, + "c7": -13.426305790393167 }, - "vertexSeeds": { - "c1": 1.37469696525328, - "c2": 1.2148492033530405, - "c3": 1.3482032402353181, - "c4": 1.2081719374266964, - "c5": 1.366732500495309, - "c6": 1.2690657705046862, - "c7": 1.2783259463292744 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361997, + "c3": 1.6874711049468327, + "c4": 1.349976883957466, + "c5": 1.012482662968099, + "c6": 0.6749884419787352, + "c7": 0.3374942209893669 }, "rgb": [238, 201, 159] }, @@ -119076,23 +119076,23 @@ "year": 1741, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -23.845806848033313, - "c2": 4.881164980563817, - "c3": -34.64640193633888, - "c4": -7.398886536016182, - "c5": 10.763319159646414, - "c6": 24.551045670649295, - "c7": -29.056724195146934 + "points": { + "c1": -25.139977884973966, + "c2": -1.3965054364779803, + "c3": -18.310679623010163, + "c4": -6.883597668527894, + "c5": -37.143886269264655, + "c6": 16.113352938062825, + "c7": 28.596341479298488 }, - "vertexSeeds": { - "c1": 6.999444577728008, - "c2": 6.890622515797936, - "c3": 6.856721456224462, - "c4": 6.904760748203153, - "c5": 7.129926733180241, - "c6": 6.9487179137274895, - "c7": 6.786225646809824 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801676, + "c3": 8.506703652334705, + "c4": 6.805362921867771, + "c5": 5.104022191400838, + "c6": 3.402681460933867, + "c7": 1.7013407304669335 }, "rgb": [238, 201, 159] }, @@ -119103,23 +119103,23 @@ "year": 1741, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -22.311966621020975, - "c2": 16.11108464738249, - "c3": -32.5858686731172, - "c4": -7.974650182106828, - "c5": -23.720544060820018, - "c6": -4.2085521480227435, - "c7": -30.20779962990764 + "points": { + "c1": -18.823734487314237, + "c2": 26.81054872528354, + "c3": 34.50725434117118, + "c4": -29.914762217110894, + "c5": 16.000868780739864, + "c6": -15.7433377256141, + "c7": -31.503141579775086 }, - "vertexSeeds": { - "c1": 5.606925442519555, - "c2": 5.498549850560322, - "c3": 5.527917838655374, - "c4": 6.3916870660891405, - "c5": 6.3456691602132045, - "c6": 6.032883830786441, - "c7": 6.1815808544538084 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -119130,23 +119130,23 @@ "year": 1741, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 20.486273907701786, - "c2": -9.438337342307896, - "c3": 29.987642201789107, - "c4": 9.116724447502335, - "c5": 21.95169569963091, - "c6": 18.110771806100935, - "c7": -41.23223918626875 + "points": { + "c1": -2.439149530392619, + "c2": 17.854561970865028, + "c3": -22.253213021899537, + "c4": 40.082300152749816, + "c5": 2.0673016299631826, + "c6": -7.000028091403429, + "c7": 16.57824887499477 }, - "vertexSeeds": { - "c1": 7.476287013978582, - "c2": 7.551531283194607, - "c3": 7.7165416495343475, - "c4": 7.581103326912189, - "c5": 7.6886968809182195, - "c6": 7.396354200160176, - "c7": 7.360173133831939 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.3971336107258425, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [86, 146, 138] }, @@ -119157,23 +119157,23 @@ "year": 1741, "resistanceReported": false, "duration": 42422400, - "curveSeeds": { - "c1": 39.40716235587629, - "c2": -5.899817365283681, - "c3": -26.95465612839245, - "c4": 5.676305462718702, - "c5": -0.8714637415852167, - "c6": 53.925575620742414, - "c7": -13.749436144500798 + "points": { + "c1": -1.8317850110517355, + "c2": -36.46306202231492, + "c3": -30.17193869209086, + "c4": 46.73107943435647, + "c5": 50.65296523710213, + "c6": -48.49563994491059, + "c7": 29.185183845642662 }, - "vertexSeeds": { - "c1": 3.744314803153636, - "c2": 3.5002505696935526, - "c3": 3.538633574785372, - "c4": 3.493116931058533, - "c5": 3.7877119765681346, - "c6": 3.6636107367633923, - "c7": 3.5768794490500113 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [238, 201, 159] }, @@ -119184,23 +119184,23 @@ "year": 1740, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 7.875454968891624, - "c2": 8.408773097054691, - "c3": -1.3603240108189887, - "c4": 6.05207262302374, - "c5": 6.658530426213986, - "c6": 13.654601760518261, - "c7": -10.369305974353956 + "points": { + "c1": -19.830028320711975, + "c2": 25.680911509886208, + "c3": -23.384432862947158, + "c4": -17.650010908953437, + "c5": 23.81775474051851, + "c6": -3.246020118654446, + "c7": 25.264342879890478 }, - "vertexSeeds": { - "c1": 3.0995109016939075, - "c2": 3.226064087876993, - "c3": 3.095858767649069, - "c4": 3.0448551267700856, - "c5": 3.1190954662483383, - "c6": 3.13900617713055, - "c7": 3.067834436838994 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -119211,23 +119211,23 @@ "year": 1741, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -22.09659270181797, - "c2": -11.198888704427404, - "c3": 23.907714959104702, - "c4": -2.954429814973217, - "c5": -15.522287052982303, - "c6": 13.454519707245353, - "c7": -14.519945580978664 + "points": { + "c1": -21.504340497575583, + "c2": -10.559530759756509, + "c3": 27.663348832102656, + "c4": -3.8485508919081326, + "c5": 12.412037844372236, + "c6": 14.75318193583059, + "c7": 30.63758800497962 }, - "vertexSeeds": { - "c1": 5.1313329910949586, - "c2": 5.082399127941816, - "c3": 4.606662840201608, - "c4": 4.331143778081625, - "c5": 4.689322406927428, - "c6": 4.8332971024083236, - "c7": 5.178415512524003 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -119238,23 +119238,23 @@ "year": 1741, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 14.711937601222765, - "c2": -3.4115501206545495, - "c3": -18.82676490117429, - "c4": -19.055168789050207, - "c5": -20.116949324353484, - "c6": 6.078802635507579, - "c7": 10.526979834289044 + "points": { + "c1": 1.1393295389770444, + "c2": 17.690442740407732, + "c3": 0.4000723936123549, + "c4": -4.644264053667698, + "c5": 33.64803349153387, + "c6": -17.313038895625805, + "c7": 28.611301866295257 }, - "vertexSeeds": { - "c1": 5.000045158447602, - "c2": 4.710933796942893, - "c3": 4.784585127577835, - "c4": 4.7398744739389596, - "c5": 4.973382702328961, - "c6": 4.544479517627441, - "c7": 4.647046256409437 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -119265,23 +119265,23 @@ "year": 1740, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 19.160831707236916, - "c2": 27.836497774188253, - "c3": 24.79513015963572, - "c4": 15.613991363226887, - "c5": 27.2898614683374, - "c6": 20.37676050856392, - "c7": -13.933462786313575 + "points": { + "c1": -4.651077854704042, + "c2": -22.510924079256707, + "c3": 13.791089148381964, + "c4": -9.353361551318958, + "c5": 12.636894749631914, + "c6": -3.3639013212297186, + "c7": 16.31183839445002 }, - "vertexSeeds": { - "c1": 5.105046061975435, - "c2": 5.179785906373452, - "c3": 4.699470294342201, - "c4": 5.198762472068908, - "c5": 4.5865912765366526, - "c6": 5.186058512245991, - "c7": 5.142065133825959 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -119292,23 +119292,23 @@ "year": 1741, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -35.4703476143254, - "c2": 13.938314496505207, - "c3": 36.11059698375204, - "c4": -7.515202950213155, - "c5": 16.52940684821597, - "c6": -7.232461694020746, - "c7": -35.77211538893102 + "points": { + "c1": 38.5730843515716, + "c2": 13.498552727751601, + "c3": 8.597312514776547, + "c4": 11.411745917630185, + "c5": -20.557625166033475, + "c6": -17.788251706261455, + "c7": -13.540101473750369 }, - "vertexSeeds": { - "c1": 3.0479218782970885, - "c2": 3.289686813902266, - "c3": 3.1080400006605933, - "c4": 3.0696046869337814, - "c5": 3.1100805732786783, - "c6": 3.069067192089911, - "c7": 3.238475811043629 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -119319,23 +119319,23 @@ "year": 1741, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 10.194546606175834, - "c2": -35.36393282985242, - "c3": -3.8906511877174523, - "c4": 16.45953410149032, - "c5": 28.96106702317376, - "c6": -30.014130400276184, - "c7": -12.847900727080404 + "points": { + "c1": 4.589973997271883, + "c2": 5.475546914336128, + "c3": 7.4976835895731355, + "c4": 0.8703102681358956, + "c5": 37.0585066177264, + "c6": -37.805350875201945, + "c7": 21.136642725023748 }, - "vertexSeeds": { - "c1": 4.48192752933189, - "c2": 4.922514837393203, - "c3": 4.678044113934182, - "c4": 5.049239631250488, - "c5": 4.688018924757368, - "c6": 4.625445852984606, - "c7": 4.447355608352636 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -119346,23 +119346,23 @@ "year": 1741, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 30.623285241503424, - "c2": 1.503830437071123, - "c3": 29.21410581167474, - "c4": 8.314548194762097, - "c5": -25.530106899055575, - "c6": -18.941039188947855, - "c7": -25.087986858410844 + "points": { + "c1": -33.61085253012142, + "c2": -7.480604381087787, + "c3": 23.190742855835175, + "c4": 21.22016215509678, + "c5": -23.976352264459663, + "c6": 35.950633303356696, + "c7": 0.504552949896734 }, - "vertexSeeds": { - "c1": 4.628270800868713, - "c2": 5.058227994006144, - "c3": 4.815004252502262, - "c4": 5.0708194997641, - "c5": 4.303350140433213, - "c6": 5.202898888288866, - "c7": 4.562382964377402 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -119373,23 +119373,23 @@ "year": 1741, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 7.829854635547093, - "c2": -32.95561853246978, - "c3": 21.998826243696627, - "c4": 10.675086123602348, - "c5": -8.559925118291751, - "c6": 12.006271052962006, - "c7": -22.652589186147797 + "points": { + "c1": 13.216611214441528, + "c2": -14.724899754278233, + "c3": 31.94022642953999, + "c4": -2.1071139178918585, + "c5": -32.9504933169771, + "c6": -3.5771868340960005, + "c7": -21.065621621022977 }, - "vertexSeeds": { - "c1": 5.106008165255744, - "c2": 4.578106400657648, - "c3": 4.684510657034778, - "c4": 4.787018558364537, - "c5": 5.218901839760415, - "c6": 4.281297772470371, - "c7": 4.713963640484653 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -119400,23 +119400,23 @@ "year": 1740, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 16.475461308351463, - "c2": 5.488574555876635, - "c3": -18.08153544012185, - "c4": -3.7868490692546892, - "c5": -4.138994338414186, - "c6": 9.171675558521429, - "c7": 15.194009792861912 + "points": { + "c1": -24.080751328576806, + "c2": -5.220277881797312, + "c3": -12.483144252025653, + "c4": -17.12891381155655, + "c5": 0.09118969817355804, + "c6": -23.703122054775385, + "c7": -3.428249106889055 }, - "vertexSeeds": { - "c1": 5.470913501142953, - "c2": 5.467692607956977, - "c3": 5.5131766236721775, - "c4": 5.596756268889731, - "c5": 5.548710043929895, - "c6": 5.409980924936425, - "c7": 5.7978874853638915 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066567, + "c3": 6.934812760055488, + "c4": 5.547850208044386, + "c5": 4.1608876560332835, + "c6": 2.7739251040221813, + "c7": 1.3869625520111022 }, "rgb": [238, 201, 159] }, @@ -119427,23 +119427,23 @@ "year": 1741, "resistanceReported": true, "duration": 27734400, - "curveSeeds": { - "c1": -13.755933865021632, - "c2": -17.186645285026966, - "c3": -34.715535321954974, - "c4": 10.145734354675852, - "c5": 15.506151286101009, - "c6": 20.23558252499584, - "c7": -4.886236074767481 + "points": { + "c1": -41.32706904581856, + "c2": -21.048902959695585, + "c3": 10.04347061969252, + "c4": -31.491966707600778, + "c5": 17.50681299694162, + "c6": -8.768189247172813, + "c7": -17.062143696940844 }, - "vertexSeeds": { - "c1": 3.6934654388477615, - "c2": 3.7256846427604144, - "c3": 3.772059801785834, - "c4": 3.692623587537359, - "c5": 3.7032402469304078, - "c6": 3.7198592941879056, - "c7": 3.771816794559201 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004168, + "c3": 4.600092464170132, + "c4": 3.680073971336113, + "c5": 2.760055478502075, + "c6": 1.8400369856680565, + "c7": 0.9200184928340374 }, "rgb": [86, 146, 138] }, @@ -119454,23 +119454,23 @@ "year": 1741, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -27.519220294548212, - "c2": -31.747043096427873, - "c3": -3.2599058862811106, - "c4": -1.0382993396299014, - "c5": 2.366240874739489, - "c6": -31.964525159330762, - "c7": -29.297105086196694 + "points": { + "c1": -31.35200334599096, + "c2": -38.292472146992466, + "c3": -10.177817093398744, + "c4": -13.212666327479436, + "c5": 37.84681793906206, + "c6": -17.48327791292039, + "c7": 23.098992503362922 }, - "vertexSeeds": { - "c1": 3.6923546230428355, - "c2": 3.8792164534789304, - "c3": 3.7031315086896854, - "c4": 3.7952435952188086, - "c5": 3.7858743118760105, - "c6": 3.7400583342507856, - "c7": 3.7634903371914015 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165051, + "c3": 4.692556634304202, + "c4": 3.7540453074433637, + "c5": 2.8155339805825257, + "c6": 1.877022653721676, + "c7": 0.938511326860838 }, "rgb": [77, 76, 132] }, @@ -119481,23 +119481,23 @@ "year": 1741, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 34.432931434093526, - "c2": 41.12980044299167, - "c3": -32.608206585497975, - "c4": 4.710144337448234, - "c5": 18.634637798181323, - "c6": -2.8082157095942932, - "c7": 9.479839328874377 + "points": { + "c1": -35.48346812372406, + "c2": -2.3452687902492997, + "c3": -37.730521595041616, + "c4": 45.009773912477435, + "c5": 14.338219490704233, + "c6": -25.111810203459704, + "c7": -8.797898273096216 }, - "vertexSeeds": { - "c1": 2.8075061014478635, - "c2": 2.52362536035395, - "c3": 2.5562616424254796, - "c4": 2.5649929149313544, - "c5": 2.77810547658244, - "c6": 2.512670823344236, - "c7": 2.572249142122204 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.3980582524271865, + "c4": 2.718446601941751, + "c5": 2.038834951456307, + "c6": 1.3592233009708714, + "c7": 0.6796116504854357 }, "rgb": [238, 201, 159] }, @@ -119508,23 +119508,23 @@ "year": 1741, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 40.69556459479935, - "c2": 19.051224840654704, - "c3": 37.39992406755073, - "c4": 12.765256581309409, - "c5": 20.57462925895978, - "c6": 36.5873137762173, - "c7": -4.622436934011404 + "points": { + "c1": -31.01877560513674, + "c2": 22.557224824889616, + "c3": 36.96343955836184, + "c4": -37.38940275808726, + "c5": 42.82301275961872, + "c6": -35.96220380935211, + "c7": 29.273208068175776 }, - "vertexSeeds": { - "c1": 5.124101710306272, - "c2": 5.14624698296513, - "c3": 4.9787438846637855, - "c4": 4.463862779344922, - "c5": 4.441963488371629, - "c6": 4.6121744603703885, - "c7": 5.00001898517461 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -119535,23 +119535,23 @@ "year": 1741, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 31.447207727393902, - "c2": 0.08208876478065008, - "c3": -2.923412498448375, - "c4": -20.06187997954725, - "c5": -17.480150076703193, - "c6": 0.8939929064765622, - "c7": -0.7401846232701459 + "points": { + "c1": 18.597761399792454, + "c2": -14.528314255932525, + "c3": -10.217160948989964, + "c4": -2.8872189061501388, + "c5": 30.929216815408537, + "c6": -1.40006113495199, + "c7": -26.21641811105025 }, - "vertexSeeds": { - "c1": 5.182783456505651, - "c2": 4.980714657742534, - "c3": 4.57008063108292, - "c4": 4.830481207852542, - "c5": 5.0875658890829625, - "c6": 4.220375453102016, - "c7": 4.835739672385289 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -119562,23 +119562,23 @@ "year": 1741, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 30.96883951223016, - "c2": 26.276558161297537, - "c3": 9.063038289656056, - "c4": -25.37571963281713, - "c5": -6.445126577547089, - "c6": 30.970702909586862, - "c7": -16.62388075427195 + "points": { + "c1": 8.694700605115145, + "c2": 19.695844239542062, + "c3": 9.925367244877634, + "c4": 9.387990788316692, + "c5": -12.322750593800038, + "c6": -13.017754947996185, + "c7": -9.37849335392605 }, - "vertexSeeds": { - "c1": 3.4546732040093917, - "c2": 3.3759607119183364, - "c3": 3.1960177748830456, - "c4": 3.4583110869766647, - "c5": 3.094094234063979, - "c6": 3.411512196120337, - "c7": 3.3088482204574516 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [58, 15, 49] }, @@ -119589,23 +119589,23 @@ "year": 1741, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 7.382583939301185, - "c2": -22.94615362998902, - "c3": 9.424611311466698, - "c4": -8.90596982909317, - "c5": -30.931243976985577, - "c6": 9.891684943167533, - "c7": -15.250358914863384 + "points": { + "c1": 15.309074867752436, + "c2": -10.877495153405437, + "c3": 4.879604858626649, + "c4": -15.873712870996819, + "c5": 2.865751919192803, + "c6": 34.07794484402823, + "c7": 11.346869859189447 }, - "vertexSeeds": { - "c1": 3.2472078762286203, - "c2": 3.1090548010505095, - "c3": 3.1555696262585204, - "c4": 3.2407458699743663, - "c5": 3.1379226588973257, - "c6": 3.161240179179822, - "c7": 3.055897493728965 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -119616,23 +119616,23 @@ "year": 1741, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 2.504455947873062, - "c2": 12.175811999999048, - "c3": -18.18133179057419, - "c4": -16.32699003197582, - "c5": -4.311132394228046, - "c6": 30.867791840433597, - "c7": 8.928818242812461 + "points": { + "c1": -13.761031350643893, + "c2": -20.40522527005765, + "c3": 16.758514125756165, + "c4": 1.1444978612282313, + "c5": -2.100360813018497, + "c6": 24.103508590120228, + "c7": 8.60105326568776 }, - "vertexSeeds": { - "c1": 2.784217820513597, - "c2": 2.4947965021748355, - "c3": 2.728587399603766, - "c4": 2.4733019059282975, - "c5": 2.6970147529422905, - "c6": 2.8214847046328035, - "c7": 2.4733882509990304 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -119643,23 +119643,23 @@ "year": 1741, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 38.485477240499904, - "c2": -18.00161600503295, - "c3": 36.15376263200703, - "c4": -22.02595772172892, - "c5": 2.9913457209911343, - "c6": 35.130460710687586, - "c7": 18.745510759733214 + "points": { + "c1": 35.557733711958434, + "c2": -1.411636522032694, + "c3": 21.025348575695936, + "c4": 22.92109477243757, + "c5": -20.4026994420584, + "c6": 16.2952850721573, + "c7": -3.9348557380087 }, - "vertexSeeds": { - "c1": 5.5628866212474515, - "c2": 5.429999661318116, - "c3": 5.578287687427302, - "c4": 5.220787771060561, - "c5": 5.562552839749472, - "c6": 5.4829527386033305, - "c7": 5.670353632127254 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710123, + "c3": 7.304669440591775, + "c4": 5.843735552473419, + "c5": 4.382801664355061, + "c6": 2.9218677762367036, + "c7": 1.4609338881183576 }, "rgb": [77, 76, 132] }, @@ -119670,23 +119670,23 @@ "year": 1741, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": -38.39247995274771, - "c2": -13.705212436777408, - "c3": 43.32484689595934, - "c4": 24.396261624817143, - "c5": -35.55668489840582, - "c6": -27.442213290344885, - "c7": 52.481034674460545 + "points": { + "c1": 23.226639192556874, + "c2": 6.843293259084604, + "c3": 11.12467312232792, + "c4": 39.36344422818023, + "c5": -29.506792260070316, + "c6": -49.8216495998843, + "c7": 29.643295687538753 }, - "vertexSeeds": { - "c1": 4.442597032770908, - "c2": 4.514193363255684, - "c3": 4.504966636275288, - "c4": 4.874606676990317, - "c5": 4.973487593465565, - "c6": 4.696608667462012, - "c7": 4.622068623847136 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -119697,23 +119697,23 @@ "year": 1741, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 35.563330185255296, - "c2": -32.8834469376708, - "c3": 8.269796274149776, - "c4": -16.141166046447523, - "c5": 20.907713906506174, - "c6": -12.2396872265533, - "c7": 9.261061694186424 + "points": { + "c1": -0.7904487196082286, + "c2": 14.018503188274785, + "c3": -16.101514314140097, + "c4": 7.75629931783331, + "c5": 31.616654370753636, + "c6": 30.764237008632037, + "c7": 16.435755138760854 }, - "vertexSeeds": { - "c1": 2.9803384207105106, - "c2": 3.538745596652803, - "c3": 3.4470115934011263, - "c4": 2.9351193158463027, - "c5": 3.190028898781518, - "c6": 3.2361151613573274, - "c7": 3.386449158756317 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.392048081368471, + "c4": 3.5136384650947776, + "c5": 2.635228848821084, + "c6": 1.7568192325473906, + "c7": 0.8784096162736972 }, "rgb": [58, 15, 49] }, @@ -119724,23 +119724,23 @@ "year": 1741, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -14.368283675656237, - "c2": 4.4802783870406415, - "c3": -26.857820730367305, - "c4": -9.309348729080813, - "c5": 4.466205793185708, - "c6": 0.9628557763670607, - "c7": -8.984916294971278 + "points": { + "c1": -7.207742458441462, + "c2": 27.808178019492168, + "c3": -18.71171438730963, + "c4": -14.427857248902287, + "c5": -14.20469663004765, + "c6": -14.432815731697543, + "c7": -24.123572326580756 }, - "vertexSeeds": { - "c1": 1.9186641761149488, - "c2": 1.953875964693034, - "c3": 1.974777493391794, - "c4": 1.9662702688627196, - "c5": 1.9577651188823246, - "c6": 1.912318175336314, - "c7": 1.9104647489228284 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142859, + "c3": 2.3809523809523845, + "c4": 1.904761904761898, + "c5": 1.4285714285714235, + "c6": 0.952380952380949, + "c7": 0.4761904761904745 }, "rgb": [77, 76, 132] }, @@ -119751,23 +119751,23 @@ "year": 1741, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -24.587146332008725, - "c2": -22.99254041698933, - "c3": -5.067901859489144, - "c4": -1.3975357888866498, - "c5": -10.73034251551693, - "c6": 1.1961431677524814, - "c7": 16.491063788334174 + "points": { + "c1": 17.65404068184123, + "c2": -19.280385989772572, + "c3": -17.39622770764767, + "c4": 27.49404552889088, + "c5": 17.943060955013763, + "c6": -13.698421832432032, + "c7": 12.933427892693807 }, - "vertexSeeds": { - "c1": 4.350761509158558, - "c2": 4.459577893193889, - "c3": 4.341053505245331, - "c4": 4.487757263693814, - "c5": 4.4805679521780055, - "c6": 4.412711150495842, - "c7": 4.335163196533212 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532592, + "c3": 5.478502080443823, + "c4": 4.382801664355055, + "c5": 3.2871012482662874, + "c6": 2.1914008321775365, + "c7": 1.0957004160887682 }, "rgb": [222, 0, 59] }, @@ -119778,23 +119778,23 @@ "year": 1741, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 10.984160661207, - "c2": 16.730123396847233, - "c3": 10.928705870798403, - "c4": -11.684456982116656, - "c5": -2.972588999489272, - "c6": -22.402643448613656, - "c7": -23.744428392573557 + "points": { + "c1": -6.125098740992854, + "c2": 25.218897853762734, + "c3": 1.8100259632182123, + "c4": -12.857559025133803, + "c5": 13.902298136619706, + "c6": -21.846839006879502, + "c7": 12.276160489108427 }, - "vertexSeeds": { - "c1": 4.616017021945741, - "c2": 3.8783872273469684, - "c3": 4.0279170178112205, - "c4": 4.3945104978080645, - "c5": 4.373755923795269, - "c6": 4.414492509175632, - "c7": 4.641859129696882 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -119805,23 +119805,23 @@ "year": 1741, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 36.38912819350511, - "c2": -37.09540008339136, - "c3": 10.744894757797077, - "c4": 18.27038725306908, - "c5": -37.75381194153147, - "c6": -3.174118840721192, - "c7": 13.512056384040697 + "points": { + "c1": -32.86276550771771, + "c2": -17.800444319602413, + "c3": -6.566354175860091, + "c4": 29.23039523802435, + "c5": 13.529677669428068, + "c6": -36.32096230145518, + "c7": -22.033885762644474 }, - "vertexSeeds": { - "c1": 4.3834752048660555, - "c2": 4.0518704963744065, - "c3": 4.0874168090435585, - "c4": 4.5532862966709535, - "c5": 4.459088845062851, - "c6": 4.2703588226629945, - "c7": 4.472699195141012 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894588, + "c3": 5.686546463245492, + "c4": 4.549237170596395, + "c5": 3.411927877947294, + "c6": 2.274618585298192, + "c7": 1.137309292649096 }, "rgb": [86, 146, 138] }, @@ -119832,23 +119832,23 @@ "year": 1741, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 17.0004268883135, - "c2": 29.339218082070765, - "c3": 4.716432384294762, - "c4": -18.965707276046416, - "c5": -24.170093845202544, - "c6": 11.415493716056993, - "c7": 20.44470571835064 + "points": { + "c1": -26.46143469928592, + "c2": -42.62926267509117, + "c3": -21.511907129029602, + "c4": -42.53053086672227, + "c5": 13.019043547931226, + "c6": 0.6184480592830184, + "c7": -6.854157633382769 }, - "vertexSeeds": { - "c1": 4.063971139392003, - "c2": 3.321041564984696, - "c3": 3.404415768356842, - "c4": 3.637096035479519, - "c5": 3.6257300583593532, - "c6": 3.5368740766404656, - "c7": 3.7221176972304217 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105873, + "c4": 3.9204808136846996, + "c5": 2.9403606102635207, + "c6": 1.9602404068423473, + "c7": 0.9801202034211737 }, "rgb": [222, 0, 59] }, @@ -119859,23 +119859,23 @@ "year": 1741, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 37.31201851692447, - "c2": -28.78607867387218, - "c3": -36.10378629858156, - "c4": 38.78100414449344, - "c5": -44.585113445927604, - "c6": 12.3738328989009, - "c7": 5.543933086318553 + "points": { + "c1": 38.30598497793723, + "c2": 20.93851056524008, + "c3": 9.860896993777374, + "c4": -24.153091434439176, + "c5": 31.32557374930316, + "c6": -46.68191896564425, + "c7": -28.70501604385859 }, - "vertexSeeds": { - "c1": 5.131731598609501, - "c2": 5.034238584016303, - "c3": 4.508299334252582, - "c4": 4.377040454613202, - "c5": 4.720927001388941, - "c6": 5.145673285097529, - "c7": 5.106806022124704 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -119886,23 +119886,23 @@ "year": 1741, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -8.61851752186585, - "c2": 24.34405010133503, - "c3": -2.6303074666510646, - "c4": 11.541931079341346, - "c5": -24.162846566412963, - "c6": -9.631419938439075, - "c7": -23.996411717252236 + "points": { + "c1": 3.040637756128337, + "c2": 7.202611168264504, + "c3": -2.255818826257652, + "c4": -0.7244016785989835, + "c5": 11.909680016843495, + "c6": -6.015862724839316, + "c7": -9.365073471921345 }, - "vertexSeeds": { - "c1": 6.965674230551421, - "c2": 7.01132017046765, - "c3": 7.123827882995399, - "c4": 7.129746309975212, - "c5": 7.4130382630850145, - "c6": 6.979473337544224, - "c7": 7.338297614797533 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -119913,23 +119913,23 @@ "year": 1741, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 0.6485529354218045, - "c2": 0.9233149625586421, - "c3": 16.29957706684425, - "c4": -39.00309958286011, - "c5": 2.7043313756844114, - "c6": -33.403431244968445, - "c7": 1.8346256423163396 + "points": { + "c1": 22.070477582330092, + "c2": -26.91834208245266, + "c3": 35.22557511492368, + "c4": 31.142383879080278, + "c5": 20.615638650117504, + "c6": -33.89103336121875, + "c7": 17.287338874590155 }, - "vertexSeeds": { - "c1": 2.7627164355961638, - "c2": 2.9222428421623525, - "c3": 2.9253169332372186, - "c4": 2.8128892722369767, - "c5": 2.825077856167588, - "c6": 2.9285429436062156, - "c7": 2.8164490932982114 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113727, + "c3": 3.5136384650947807, + "c4": 2.810910772075822, + "c5": 2.1081830790568636, + "c6": 1.405455386037917, + "c7": 0.7027276930189585 }, "rgb": [238, 201, 159] }, @@ -119940,23 +119940,23 @@ "year": 1741, "resistanceReported": false, "duration": 37843200, - "curveSeeds": { - "c1": -44.913742402171714, - "c2": -1.0589239204345162, - "c3": -36.96684578336618, - "c4": -41.451794818741426, - "c5": -50.9246906611085, - "c6": 21.59461488376379, - "c7": 26.612500996511038 + "points": { + "c1": 36.75295438387156, + "c2": 50.825907004821595, + "c3": -5.061398591785618, + "c4": -30.981128011779077, + "c5": -18.352115581083595, + "c6": -42.7763147862785, + "c7": -39.98125417468847 }, - "vertexSeeds": { - "c1": 6.00981462133275, - "c2": 6.330795414172971, - "c3": 6.717080229332308, - "c4": 6.720702954761899, - "c5": 6.536404939202519, - "c6": 6.565661813270051, - "c7": 6.421728566516815 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.68099861303745, + "c3": 8.067498844197878, + "c4": 6.453999075358305, + "c5": 4.8404993065187325, + "c6": 3.226999537679159, + "c7": 1.6134997688395727 }, "rgb": [222, 0, 59] }, @@ -119967,23 +119967,23 @@ "year": 1741, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -27.482853736800088, - "c2": -24.699995596268714, - "c3": 28.922583511776025, - "c4": -11.112021917868809, - "c5": -24.939925883667197, - "c6": 31.17572026498621, - "c7": 20.189782625873008 + "points": { + "c1": -30.29973600718037, + "c2": 28.91198752234351, + "c3": 26.48285360123024, + "c4": 30.477409713560718, + "c5": 16.959428117261034, + "c6": 19.854012548720142, + "c7": 7.682006395371197 }, - "vertexSeeds": { - "c1": 8.913251075991962, - "c2": 9.093815706350997, - "c3": 9.600048883365023, - "c4": 9.165796512851829, - "c5": 9.208627419430115, - "c6": 8.841109851722402, - "c7": 9.666894867122844 + "offsets": { + "c1": 16.472491909385116, + "c2": 14.119278779472964, + "c3": 11.766065649560796, + "c4": 9.412852519648643, + "c5": 7.059639389736473, + "c6": 4.706426259824322, + "c7": 2.3532131299121524 }, "rgb": [238, 201, 159] }, @@ -119994,23 +119994,23 @@ "year": 1741, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -12.498227109566471, - "c2": -1.447963331409646, - "c3": -25.47206916462922, - "c4": 37.52427633537417, - "c5": 34.53090129600342, - "c6": -27.59022469216255, - "c7": -36.5978111425513 + "points": { + "c1": 11.813262979757923, + "c2": -41.315271041605136, + "c3": -9.01736297944256, + "c4": 33.41089194541223, + "c5": -28.64216181918195, + "c6": -39.022933687833614, + "c7": -23.70891800889037 }, - "vertexSeeds": { - "c1": 2.792685455517755, - "c2": 2.543442019425607, - "c3": 2.79108230155964, - "c4": 2.7610856638790513, - "c5": 2.6394025964510237, - "c6": 2.799495961770112, - "c7": 2.7364089873046242 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [77, 76, 132] }, @@ -120021,23 +120021,23 @@ "year": 1741, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 1.6949225799870788, - "c2": -33.63687109968508, - "c3": 4.349703785319889, - "c4": 22.408262324830815, - "c5": -35.72394518239503, - "c6": 4.976551496184129, - "c7": -12.304750673640758 + "points": { + "c1": 15.226433407289633, + "c2": -6.244396950140839, + "c3": -36.461259637494116, + "c4": -14.455107265359718, + "c5": -35.218374191317935, + "c6": 43.03283617961447, + "c7": 41.230699626758884 }, - "vertexSeeds": { - "c1": 3.2796113350062277, - "c2": 3.266493140467422, - "c3": 3.265504443535238, - "c4": 3.2712635482489354, - "c5": 3.2647292631551212, - "c6": 3.2657048877166965, - "c7": 3.2805041322507007 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837747, + "c3": 3.929727230698149, + "c4": 3.1437817845585507, + "c5": 2.3578363384187955, + "c6": 1.5718908922791972, + "c7": 0.7859454461395986 }, "rgb": [86, 146, 138] }, @@ -120048,23 +120048,23 @@ "year": 1741, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -14.685543882741964, - "c2": 23.368558771382645, - "c3": -27.198242045720825, - "c4": 17.066680599353482, - "c5": -14.594870317459694, - "c6": 16.259318231836865, - "c7": -20.525488166952435 + "points": { + "c1": 3.781692868400633, + "c2": 1.9295127181883416, + "c3": 31.790039474372378, + "c4": 2.7672907842043486, + "c5": 28.500317476411723, + "c6": 35.998380423928296, + "c7": -10.204728644778193 }, - "vertexSeeds": { - "c1": 3.1197390395155584, - "c2": 3.144348645038817, - "c3": 2.966938062523203, - "c4": 3.1904818327794096, - "c5": 3.2169630877939617, - "c6": 3.1740621489730527, - "c7": 3.1802032932390802 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [238, 201, 159] }, @@ -120075,23 +120075,23 @@ "year": 1741, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": -18.932356968089074, - "c2": -20.701005138252604, - "c3": 19.594063009169183, - "c4": 17.569183980110537, - "c5": -10.743541018179219, - "c6": -12.903179547903479, - "c7": -10.763027562606405 + "points": { + "c1": 24.028798622241617, + "c2": -1.1526193697462546, + "c3": 23.887954995028295, + "c4": 17.595115706092734, + "c5": 23.71017382382474, + "c6": -13.251288966303294, + "c7": 6.238996515306901 }, - "vertexSeeds": { - "c1": 4.5200364247276505, - "c2": 5.1453144656723016, - "c3": 4.488403387178197, - "c4": 4.570576799580291, - "c5": 5.223728052287921, - "c6": 5.202360434053803, - "c7": 4.621383672854085 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -120102,23 +120102,23 @@ "year": 1741, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -20.85077839001318, - "c2": 4.225615966387032, - "c3": 35.83342781241384, - "c4": 32.31455377053728, - "c5": 7.526950684549632, - "c6": 30.580847331088172, - "c7": 14.896610303563854 + "points": { + "c1": 30.69534759857202, + "c2": -27.269935366881064, + "c3": 28.13732708648427, + "c4": 40.24479387751223, + "c5": -16.480933338931266, + "c6": -6.681971892227303, + "c7": 5.640941525382942 }, - "vertexSeeds": { - "c1": 4.1800639235292865, - "c2": 3.6929701135332302, - "c3": 4.007675405973002, - "c4": 4.176670695366175, - "c5": 4.280425512133874, - "c6": 3.9043732163547493, - "c7": 4.10730247128013 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929262, + "c3": 5.1317614424410545, + "c4": 4.1054091539528415, + "c5": 3.0790568654646338, + "c6": 2.0527045769764207, + "c7": 1.0263522884882128 }, "rgb": [77, 76, 132] }, @@ -120129,23 +120129,23 @@ "year": 1741, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -3.4590398243857123, - "c2": -38.23175190313106, - "c3": -30.59528672980216, - "c4": -20.890729504186254, - "c5": -9.917747463547851, - "c6": -38.3550978369754, - "c7": 13.474012827721076 + "points": { + "c1": -19.561829142184987, + "c2": -14.347566806059351, + "c3": 39.758149626808276, + "c4": 6.926976159544871, + "c5": 18.68750943391872, + "c6": 2.3715360559756746, + "c7": -0.7738673350973642 }, - "vertexSeeds": { - "c1": 4.6812771266650355, - "c2": 4.728342793284901, - "c3": 4.802011027326244, - "c4": 4.827581335329912, - "c5": 4.758313741884858, - "c6": 4.809274246099173, - "c7": 4.696149438622566 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055472, + "c3": 5.779010633379573, + "c4": 4.623208506703654, + "c5": 3.467406380027736, + "c6": 2.3116042533518177, + "c7": 1.1558021266759186 }, "rgb": [86, 146, 138] }, @@ -120156,23 +120156,23 @@ "year": 1741, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 24.81454002381873, - "c2": 37.57771886363208, - "c3": -7.878895066022018, - "c4": -28.429477541731167, - "c5": 4.124071045925653, - "c6": -7.707578864429195, - "c7": 39.61045763883386 + "points": { + "c1": 1.7725573593162949, + "c2": 38.235213215229585, + "c3": -37.25721481225969, + "c4": 29.836541382843883, + "c5": 21.54898763289402, + "c6": -47.971174444005705, + "c7": 15.749474946538193 }, - "vertexSeeds": { - "c1": 4.384374094043738, - "c2": 4.040147350994169, - "c3": 4.790182872996328, - "c4": 4.777650709438723, - "c5": 4.553746491055765, - "c6": 4.651059908173797, - "c7": 4.278875957973133 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913083, + "c4": 4.6417013407304655, + "c5": 3.4812760055478478, + "c6": 2.32085067036523, + "c7": 1.1604253351826126 }, "rgb": [238, 201, 159] }, @@ -120183,23 +120183,23 @@ "year": 1741, "resistanceReported": true, "duration": 26524800, - "curveSeeds": { - "c1": -13.079794558223252, - "c2": 10.973363274103107, - "c3": -11.790110382173406, - "c4": -28.82956576683973, - "c5": -19.909285027056832, - "c6": 30.19921794172761, - "c7": 0.7062942192777371 + "points": { + "c1": -24.08281567056035, + "c2": 11.825533634689968, + "c3": 34.36234408681952, + "c4": 14.74483929793849, + "c5": -28.801949705888575, + "c6": -31.377744377369858, + "c7": -27.326950363887715 }, - "vertexSeeds": { - "c1": 8.956232955501179, - "c2": 7.28519802764374, - "c3": 9.0999618903999, - "c4": 8.412141443785357, - "c5": 8.15983994339047, - "c6": 7.007247896526426, - "c7": 7.026073440405947 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904297, + "c3": 10.864539990753581, + "c4": 8.69163199260287, + "c5": 6.518723994452152, + "c6": 4.345815996301435, + "c7": 2.1729079981507176 }, "rgb": [58, 15, 49] }, @@ -120210,23 +120210,23 @@ "year": 1741, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 17.87685559397189, - "c2": -9.942639661116296, - "c3": -43.75170363170144, - "c4": 21.067566757052127, - "c5": -23.825768492616856, - "c6": 43.57213344624544, - "c7": -43.89550015224513 + "points": { + "c1": 25.51046516634505, + "c2": 33.17618893767162, + "c3": -29.725763251385487, + "c4": 26.833665714865013, + "c5": 0.48215038608986305, + "c6": 40.43557375088323, + "c7": -18.64447090295767 }, - "vertexSeeds": { - "c1": 5.182162714734341, - "c2": 5.003843057989832, - "c3": 4.746582438889892, - "c4": 5.058010527416467, - "c5": 5.333789803881734, - "c6": 4.891032722259001, - "c7": 4.919589897547949 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -120237,23 +120237,23 @@ "year": 1741, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 2.2680781508425696, - "c2": -32.500898356148696, - "c3": -0.17351236061654873, - "c4": -24.45905745176465, - "c5": -32.81183345184346, - "c6": 32.52534472005851, - "c7": -13.172335681000074 + "points": { + "c1": 7.109756994800321, + "c2": 31.92670739232372, + "c3": 31.353436929541218, + "c4": -29.523487604991427, + "c5": 13.75916242530559, + "c6": -31.581126365421245, + "c7": -2.579663747181648 }, - "vertexSeeds": { - "c1": 3.175246315598609, - "c2": 3.016337772376951, - "c3": 3.258363892227184, - "c4": 2.989156464590503, - "c5": 3.1587270284706257, - "c6": 2.985590254478977, - "c7": 2.983046162715796 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -120264,23 +120264,23 @@ "year": 1741, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -27.552033962308123, - "c2": -35.79779303619382, - "c3": 35.632779099598864, - "c4": 37.24792191561032, - "c5": 26.640064876941153, - "c6": -22.19073371870492, - "c7": -12.525483583361442 + "points": { + "c1": 0.2676214055879953, + "c2": -13.715723085299828, + "c3": 37.17545098262342, + "c4": -0.7312828443445056, + "c5": -15.47388412857547, + "c6": 14.490854843883923, + "c7": -7.386465042342643 }, - "vertexSeeds": { - "c1": 5.935464039623201, - "c2": 5.820448882526891, - "c3": 5.467117477853375, - "c4": 4.989223989143371, - "c5": 5.144097457934171, - "c6": 5.788567846853952, - "c7": 4.955747364083887 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669904, + "c3": 7.2815533980582545, + "c4": 5.8252427184466065, + "c5": 4.368932038834957, + "c6": 2.912621359223298, + "c7": 1.456310679611649 }, "rgb": [222, 0, 59] }, @@ -120291,23 +120291,23 @@ "year": 1741, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": 15.336091460663546, - "c2": 7.253043638270249, - "c3": -18.862199464237722, - "c4": -11.906217903828674, - "c5": 10.372937529411558, - "c6": 15.285535464421471, - "c7": -12.690616017761204 + "points": { + "c1": 11.746415757711148, + "c2": 20.471654463863302, + "c3": 9.877286998028175, + "c4": -9.86329799058815, + "c5": -4.576787763300601, + "c6": 19.549692334725876, + "c7": -2.146395285493078 }, - "vertexSeeds": { - "c1": 6.161597743820188, - "c2": 6.5910101142623105, - "c3": 6.84518634865499, - "c4": 6.6279853116015515, - "c5": 7.366940417884011, - "c6": 6.202378289784372, - "c7": 7.127542852370742 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [238, 201, 159] }, @@ -120318,23 +120318,23 @@ "year": 1741, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 25.259340804138894, - "c2": -6.515985824071528, - "c3": 10.065663441097513, - "c4": -42.529913067484614, - "c5": -33.30770149394551, - "c6": 5.018760196007932, - "c7": -41.38599995136228 + "points": { + "c1": 9.082572434308226, + "c2": -38.479194503984914, + "c3": -39.658705651516605, + "c4": -32.15800144478484, + "c5": -13.100295251799153, + "c6": 43.658624797300284, + "c7": 35.58413286803073 }, - "vertexSeeds": { - "c1": 5.956314464697521, - "c2": 6.391105429263848, - "c3": 6.232986652923023, - "c4": 5.85185721643873, - "c5": 5.796031098803906, - "c6": 6.029869211669042, - "c7": 5.51042679158383 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -120345,23 +120345,23 @@ "year": 1741, "resistanceReported": false, "duration": 41040000, - "curveSeeds": { - "c1": -54.92464791178015, - "c2": -16.55265168642461, - "c3": -51.25156793713759, - "c4": -13.210522591837915, - "c5": -33.57400717512137, - "c6": -15.273580640693716, - "c7": 47.10389901089554 + "points": { + "c1": 36.00832252358689, + "c2": -11.37800218978689, + "c3": 35.834032345636224, + "c4": 19.660218433374972, + "c5": -50.83200682230453, + "c6": 2.0428751896878197, + "c7": -4.746357457267202 }, - "vertexSeeds": { - "c1": 7.791450777202072, - "c2": 7.791450777202072, - "c3": 7.791450777202072, - "c4": 7.791450777202072, - "c5": 7.791450777202072, - "c6": 7.791450777202072, - "c7": 7.791450777202072 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -120372,23 +120372,23 @@ "year": 1741, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -19.17715323653291, - "c2": 1.7775988930769273, - "c3": 0.13301332861882997, - "c4": 15.455358327461902, - "c5": 32.03120328583667, - "c6": 2.2412949398436908, - "c7": -31.407480635116105 + "points": { + "c1": -14.123266740789582, + "c2": 34.37846122668469, + "c3": -32.76583047175339, + "c4": 25.711218037567086, + "c5": -20.559840412706585, + "c6": -15.644123764914731, + "c7": 1.0146483630632517 }, - "vertexSeeds": { - "c1": 3.264005575029274, - "c2": 3.023902231468486, - "c3": 3.164253197969408, - "c4": 3.0440581630716723, - "c5": 3.2840670733076145, - "c6": 2.9878006879316747, - "c7": 2.9906625732393604 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -120399,23 +120399,23 @@ "year": 1741, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -13.792787664636695, - "c2": 8.819380767527221, - "c3": -18.089195186272118, - "c4": -29.081812007278753, - "c5": -0.9175132372103434, - "c6": -27.217866717477662, - "c7": 1.7967598317488012 + "points": { + "c1": -1.1022404329596043, + "c2": -23.128441160325217, + "c3": 0.6251642981775021, + "c4": -1.7923387981197934, + "c5": -24.697305666139044, + "c6": -3.877587943641416, + "c7": -5.6895561666645555 }, - "vertexSeeds": { - "c1": 4.612744067904308, - "c2": 4.313525119989033, - "c3": 4.220817816759533, - "c4": 4.011028731124738, - "c5": 4.3693802213951045, - "c6": 4.581152942735956, - "c7": 3.866940819205015 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -120426,23 +120426,23 @@ "year": 1741, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": 51.720537173613565, - "c2": 46.85719891799393, - "c3": 33.46618391698908, - "c4": -48.088641570497344, - "c5": 51.10986854929598, - "c6": 47.845518696072176, - "c7": 44.670032443729696 + "points": { + "c1": 33.67059839637746, + "c2": -46.66732753078789, + "c3": -44.8048202935685, + "c4": -5.099670933357487, + "c5": -0.34096448162414816, + "c6": 17.005174015686904, + "c7": 23.94796170058258 }, - "vertexSeeds": { - "c1": 0.38900365301292616, - "c2": 0.3986014216884181, - "c3": 0.3810011524792749, - "c4": 0.405372015481535, - "c5": 0.38013962538709634, - "c6": 0.37173311349447874, - "c7": 0.40142700099377165 + "offsets": { + "c1": 0.7119741100323626, + "c2": 0.6102635228848825, + "c3": 0.5085529357374012, + "c4": 0.4068423485899213, + "c5": 0.30513176144244125, + "c6": 0.20342117429496126, + "c7": 0.10171058714748 }, "rgb": [238, 201, 159] }, @@ -120453,23 +120453,23 @@ "year": 1741, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -2.583381876236764, - "c2": -8.564802596166079, - "c3": -5.534257155812291, - "c4": -16.595701868550936, - "c5": -27.89396433425137, - "c6": -33.708275368605705, - "c7": 23.780351227129174 + "points": { + "c1": -24.17592381376702, + "c2": 28.132707650614982, + "c3": 30.65200870573964, + "c4": -0.7513531874995323, + "c5": 7.635590053293512, + "c6": -38.41167128684435, + "c7": -35.73758191171561 }, - "vertexSeeds": { - "c1": 1.9338419904023405, - "c2": 1.9232339331089088, - "c3": 1.9140236469927459, - "c4": 1.9200751043747943, - "c5": 2.016176220964433, - "c6": 1.9970548793909275, - "c7": 2.0286855876228795 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.940360610263523, + "c3": 2.4503005085529357, + "c4": 1.9602404068423485, + "c5": 1.4701803051317615, + "c6": 0.9801202034211742, + "c7": 0.4900601017105871 }, "rgb": [58, 15, 49] }, @@ -120480,23 +120480,23 @@ "year": 1741, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 8.681431813437293, - "c2": 36.06965106137838, - "c3": -25.97853858814731, - "c4": 19.390246068395484, - "c5": -8.524269704831244, - "c6": -7.491281201442536, - "c7": -22.820575339686812 + "points": { + "c1": -29.70094064584333, + "c2": 0.05953756008737798, + "c3": 33.3439165950077, + "c4": -14.662080389308233, + "c5": 4.028499833993699, + "c6": -14.679913940372462, + "c7": -34.901887813729346 }, - "vertexSeeds": { - "c1": 3.9178023921080034, - "c2": 4.0407419389914745, - "c3": 3.9482010284478486, - "c4": 4.054596102848202, - "c5": 3.7445157099649844, - "c6": 3.6630924394754327, - "c7": 3.9721250371174626 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.9084604715672695, + "c3": 4.923717059639394, + "c4": 3.9389736477115105, + "c5": 2.9542302357836348, + "c6": 1.969486823855759, + "c7": 0.9847434119278755 }, "rgb": [222, 0, 59] }, @@ -120507,23 +120507,23 @@ "year": 1741, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -8.491362507828018, - "c2": -13.231384809036623, - "c3": 23.202880533548047, - "c4": 2.197339691406981, - "c5": -32.989683137603514, - "c6": -11.292022313084022, - "c7": -11.094970709747148 + "points": { + "c1": 18.796622160626853, + "c2": 23.127390681441995, + "c3": 1.5598995322977416, + "c4": 5.8204752444332115, + "c5": -1.4715895648662212, + "c6": 7.992079646796292, + "c7": 3.8152996935894166 }, - "vertexSeeds": { - "c1": 6.051425030549105, - "c2": 6.396896593680457, - "c3": 5.925696735806749, - "c4": 6.144951189225791, - "c5": 5.920312861557036, - "c6": 6.474397725706874, - "c7": 5.879864327419958 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554784, + "c3": 7.790106333795654, + "c4": 6.232085067036523, + "c5": 4.674063800277392, + "c6": 3.1160425335182613, + "c7": 1.5580212667591307 }, "rgb": [238, 201, 159] }, @@ -120534,23 +120534,23 @@ "year": 1741, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -25.628566230537324, - "c2": -16.647696330144854, - "c3": -26.424231492728264, - "c4": 20.034627639780453, - "c5": -18.571727780426425, - "c6": 20.719741636568912, - "c7": -9.06423699685373 + "points": { + "c1": -22.99489887566403, + "c2": -10.023936384439693, + "c3": -19.36654081128181, + "c4": 25.507927475115494, + "c5": -0.5666629065539155, + "c6": -10.752297318234099, + "c7": 25.94321527919398 }, - "vertexSeeds": { - "c1": 5.861262465323009, - "c2": 6.126900075548846, - "c3": 6.0510161654300685, - "c4": 5.934647184415202, - "c5": 6.089295886682113, - "c6": 5.9958324848265105, - "c7": 6.076162590807385 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750338, + "c3": 7.327785483125305, + "c4": 5.862228386500237, + "c5": 4.396671289875169, + "c6": 2.9311141932501354, + "c7": 1.4655570966250677 }, "rgb": [222, 0, 59] }, @@ -120561,23 +120561,23 @@ "year": 1741, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -12.940988640724903, - "c2": 10.344495565880017, - "c3": 0.5188906718199178, - "c4": 30.389830189314267, - "c5": -2.897031183755125, - "c6": -10.346581240659155, - "c7": 38.73193329396938 + "points": { + "c1": 18.265859543193628, + "c2": -30.93715475905823, + "c3": -12.426345297304138, + "c4": 32.91162381774633, + "c5": -30.354485993211295, + "c6": -27.49789374322789, + "c7": 11.842413232936906 }, - "vertexSeeds": { - "c1": 7.255599259033759, - "c2": 7.996146460461025, - "c3": 7.724516719380304, - "c4": 6.413926532909444, - "c5": 7.592612752011091, - "c6": 8.04329280728635, - "c7": 7.716929649950735 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335643, + "c3": 9.963014331946367, + "c4": 7.970411465557098, + "c5": 5.977808599167822, + "c6": 3.985205732778545, + "c7": 1.9926028663892765 }, "rgb": [222, 0, 59] }, @@ -120588,23 +120588,23 @@ "year": 1741, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -24.523956503557848, - "c2": 34.26051236389259, - "c3": 28.018319413540674, - "c4": -20.80768268936732, - "c5": -4.783016394087703, - "c6": -21.585145390202612, - "c7": 13.765735267245056 + "points": { + "c1": 7.137551571627675, + "c2": -35.508041491322274, + "c3": 31.920266132586192, + "c4": 17.205957240623306, + "c5": 10.634173464418595, + "c6": 30.626010625602362, + "c7": -3.794622416671359 }, - "vertexSeeds": { - "c1": 9.834647644171147, - "c2": 9.800565800383586, - "c3": 9.511008435022974, - "c4": 9.603539760261878, - "c5": 9.314715152352651, - "c6": 10.170728044356666, - "c7": 9.810231345056401 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.674063800277379, + "c3": 12.228386500231169, + "c4": 9.782709200184925, + "c5": 7.337031900138697, + "c6": 4.891354600092471, + "c7": 2.445677300046227 }, "rgb": [77, 76, 132] }, @@ -120615,23 +120615,23 @@ "year": 1741, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 32.23670027496718, - "c2": 33.77949250546813, - "c3": 0.583437921433628, - "c4": -10.369438286433372, - "c5": -13.976236886597313, - "c6": 30.032995357202154, - "c7": 27.25902811125411 + "points": { + "c1": -30.945333004384096, + "c2": -26.998182836733513, + "c3": -23.57199818113496, + "c4": -27.153103271339397, + "c5": -4.129243260854686, + "c6": 1.0040242711227805, + "c7": -39.108986311699205 }, - "vertexSeeds": { - "c1": 4.117925235539732, - "c2": 4.0719132382266325, - "c3": 4.043944039434177, - "c4": 4.014681118014847, - "c5": 4.031239769027565, - "c6": 3.9373779360559737, - "c7": 4.148057795522333 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687936, + "c3": 4.9930651872399485, + "c4": 3.994452149791962, + "c5": 2.9958391123439747, + "c6": 1.9972260748959743, + "c7": 0.9986130374479871 }, "rgb": [238, 201, 159] }, @@ -120642,23 +120642,23 @@ "year": 1741, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -23.304668920965337, - "c2": -40.21617961520819, - "c3": -3.0948693149216027, - "c4": -19.200784490123343, - "c5": -44.703602068218636, - "c6": 42.019792718251566, - "c7": 16.77131549046028 + "points": { + "c1": -8.100159367844796, + "c2": -28.119815833419732, + "c3": -24.049394871491888, + "c4": -28.113940262136815, + "c5": -9.875889955367903, + "c6": 41.77483846951844, + "c7": -33.614640605035135 }, - "vertexSeeds": { - "c1": 7.451188234243135, - "c2": 6.817066576991973, - "c3": 6.696791197073935, - "c4": 7.13494408078068, - "c5": 7.1993208952526775, - "c6": 6.864309896028255, - "c7": 6.7700354889586345 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766989, + "c3": 9.061488673139158, + "c4": 7.249190938511326, + "c5": 5.4368932038834945, + "c6": 3.624595469255663, + "c7": 1.8122977346278315 }, "rgb": [238, 201, 159] }, @@ -120669,23 +120669,23 @@ "year": 1742, "resistanceReported": false, "duration": 46396800, - "curveSeeds": { - "c1": -50.792532089880744, - "c2": -53.4008353392819, - "c3": -13.08220590701442, - "c4": 18.52059168422545, - "c5": -22.67824617229121, - "c6": 35.95717152390432, - "c7": -6.186993334634444 + "points": { + "c1": 20.207486234654198, + "c2": -22.48745427772606, + "c3": 35.15348836597687, + "c4": 25.624405260751416, + "c5": 46.94207176816154, + "c6": 2.9671100059551634, + "c7": 16.73385661913531 }, - "vertexSeeds": { - "c1": 6.19454589408643, - "c2": 6.337490192984323, - "c3": 6.100191330024436, - "c4": 5.887154615933596, - "c5": 6.07224830183063, - "c6": 6.211334231891178, - "c7": 6.379380472173455 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434124, + "c3": 7.720758206195094, + "c4": 6.176606564956078, + "c5": 4.632454923717062, + "c6": 3.088303282478032, + "c7": 1.544151641239016 }, "rgb": [238, 201, 159] }, @@ -120696,23 +120696,23 @@ "year": 1741, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": 7.5256803650140505, - "c2": -3.1338037161658363, - "c3": 18.891612496071723, - "c4": 1.4636974553826967, - "c5": 17.84484681041679, - "c6": -9.694260420472041, - "c7": -10.146034561402091 + "points": { + "c1": 14.880609752731402, + "c2": -11.576712803537925, + "c3": -11.363761234202064, + "c4": 14.65470151170885, + "c5": 18.72983939916257, + "c6": 2.6655125082826245, + "c7": 3.9434565681137563 }, - "vertexSeeds": { - "c1": 4.157210772235198, - "c2": 4.065522445598481, - "c3": 3.994322812714988, - "c4": 4.120183666047457, - "c5": 4.106310608408781, - "c6": 4.154238290743949, - "c7": 4.568909443744834 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -120723,23 +120723,23 @@ "year": 1741, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 45.456849043163025, - "c2": 13.611934654673192, - "c3": 11.261498107187819, - "c4": 33.12640673203827, - "c5": 17.22803159100401, - "c6": 7.132437865554884, - "c7": 25.56175113389225 + "points": { + "c1": -43.07312544994465, + "c2": -4.344192420868339, + "c3": 27.817683076634545, + "c4": -46.99666351989039, + "c5": -22.946908898331706, + "c6": -44.33752758099854, + "c7": 23.037774458228306 }, - "vertexSeeds": { - "c1": 11.495026269097691, - "c2": 11.410760665938346, - "c3": 11.268163367726434, - "c4": 11.321184608781483, - "c5": 11.612457475375816, - "c6": 11.153742185008147, - "c7": 11.26659756427641 + "offsets": { + "c1": 19.54692556634304, + "c2": 16.754507628294004, + "c3": 13.96208969024504, + "c4": 11.169671752196004, + "c5": 8.37725381414704, + "c6": 5.584835876098002, + "c7": 2.792417938049038 }, "rgb": [58, 15, 49] }, @@ -120750,23 +120750,23 @@ "year": 1741, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 4.072513874904878, - "c2": -21.78021450375675, - "c3": 5.375172448185921, - "c4": 5.0748565566218815, - "c5": -9.955709020732503, - "c6": 9.11407148838638, - "c7": -7.761016114073179 + "points": { + "c1": -2.100836119666866, + "c2": 38.61619740963027, + "c3": -8.363894853416998, + "c4": -39.16134180695445, + "c5": -4.0721227604790755, + "c6": -23.547444272898183, + "c7": 28.691677581439798 }, - "vertexSeeds": { - "c1": 4.6986270601762605, - "c2": 4.777309255980982, - "c3": 4.962586793623258, - "c4": 4.909409014630299, - "c5": 4.682746989527044, - "c6": 4.89202430572142, - "c7": 4.43106049307467 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859918, + "c3": 6.241331484049933, + "c4": 4.993065187239943, + "c5": 3.744798890429959, + "c6": 2.496532593619969, + "c7": 1.2482662968099845 }, "rgb": [58, 15, 49] }, @@ -120777,23 +120777,23 @@ "year": 1741, "resistanceReported": true, "duration": 24192000, - "curveSeeds": { - "c1": -19.191316843415365, - "c2": -8.719359887473722, - "c3": 21.02117644812381, - "c4": -31.278528862558673, - "c5": -17.028233822606612, - "c6": 8.908966114322311, - "c7": 16.2855504042914 + "points": { + "c1": -23.587199943371917, + "c2": 17.601298383567205, + "c3": -27.39297610944817, + "c4": -35.57855439389288, + "c5": 17.60084422869572, + "c6": -23.68728220174528, + "c7": -2.683045251251947 }, - "vertexSeeds": { - "c1": 5.819691107253498, - "c2": 5.82408021125121, - "c3": 5.591463309553835, - "c4": 5.617616221155104, - "c5": 5.930469510973826, - "c6": 5.760073476932111, - "c7": 5.7120096459695295 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388362, + "c3": 7.11974110032362, + "c4": 5.695792880258908, + "c5": 4.271844660194167, + "c6": 2.847896440129454, + "c7": 1.423948220064741 }, "rgb": [77, 76, 132] }, @@ -120804,23 +120804,23 @@ "year": 1741, "resistanceReported": true, "duration": 28339200, - "curveSeeds": { - "c1": -7.540503168916928, - "c2": -8.85712561942809, - "c3": 19.923853150295763, - "c4": -5.9343073866658145, - "c5": -11.495878627054008, - "c6": 21.61795747621148, - "c7": 7.485461690202719 + "points": { + "c1": -24.344209113838694, + "c2": -21.349292850660888, + "c3": -37.6069747220065, + "c4": -21.910468009540907, + "c5": -34.92647551522369, + "c6": -1.5970404604169204, + "c7": -8.391227578348499 }, - "vertexSeeds": { - "c1": 3.803975835189055, - "c2": 3.519504780886502, - "c3": 3.8088507687937376, - "c4": 3.7569764275313204, - "c5": 3.6680533384396568, - "c6": 3.732706169382033, - "c7": 3.8508575311231015 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.5478502080443794, + "c3": 4.623208506703652, + "c4": 3.698566805362919, + "c5": 2.7739251040221933, + "c6": 1.8492834026814595, + "c7": 0.9246417013407262 }, "rgb": [222, 0, 59] }, @@ -120831,23 +120831,23 @@ "year": 1741, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -30.680826346538836, - "c2": 13.740014599237242, - "c3": 34.45426920789947, - "c4": -12.281717786687597, - "c5": 6.111081762167558, - "c6": 13.367648746819654, - "c7": -23.988627396168816 + "points": { + "c1": -5.030192799826793, + "c2": -34.41661839351567, + "c3": -33.35456681431306, + "c4": 18.96396375307029, + "c5": 18.412113123341427, + "c6": -3.807069791848363, + "c7": 5.981472419488881 }, - "vertexSeeds": { - "c1": 3.683458623402575, - "c2": 3.5914022130522976, - "c3": 3.4995073266195162, - "c4": 3.433746443334073, - "c5": 3.7088308300265744, - "c6": 3.477639464757575, - "c7": 3.688991728627153 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762832, + "c3": 4.46139620896902, + "c4": 3.5691169671752183, + "c5": 2.676837725381416, + "c6": 1.7845584835876036, + "c7": 0.8922792417938018 }, "rgb": [222, 0, 59] }, @@ -120858,23 +120858,23 @@ "year": 1741, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 10.983260016977468, - "c2": 5.703515669120893, - "c3": -17.46978573287481, - "c4": -4.578787662465793, - "c5": -18.73041409378643, - "c6": 15.745380071110446, - "c7": -14.907742205687747 + "points": { + "c1": 21.004276103348076, + "c2": -8.60316318358258, + "c3": -6.606623876870561, + "c4": 1.0110990337477226, + "c5": 21.628861760450953, + "c6": -2.563827763268133, + "c7": 1.7585557371458727 }, - "vertexSeeds": { - "c1": 6.580332415335793, - "c2": 6.862210953246557, - "c3": 6.735240584625361, - "c4": 6.541818699459526, - "c5": 6.779949806774948, - "c6": 6.585918132336728, - "c7": 6.520877206666212 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962546, + "c3": 8.599167822468795, + "c4": 6.87933425797503, + "c5": 5.159500693481266, + "c6": 3.439667128987515, + "c7": 1.7198335644937501 }, "rgb": [86, 146, 138] }, @@ -120885,23 +120885,23 @@ "year": 1741, "resistanceReported": false, "duration": 6134400, - "curveSeeds": { - "c1": -3.685807815197922, - "c2": -13.114117978148563, - "c3": -2.363358012569053, - "c4": -11.040819529569685, - "c5": -6.712707470571148, - "c6": 9.630623077640667, - "c7": -4.953623996506117 + "points": { + "c1": -3.8822408472351846, + "c2": 8.725771558294788, + "c3": -17.5382658828261, + "c4": 14.824352508689586, + "c5": 4.751540866086266, + "c6": 17.189000718486326, + "c7": -2.742292272514039 }, - "vertexSeeds": { - "c1": 4.717671469626985, - "c2": 4.633716386782563, - "c3": 4.856290895081766, - "c4": 4.205939117126468, - "c5": 5.035370004435686, - "c6": 5.065719799197711, - "c7": 5.081054711190402 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -120912,23 +120912,23 @@ "year": 1741, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 5.481131520266004, - "c2": 28.10188325671666, - "c3": -31.040627259794327, - "c4": 26.298933623547825, - "c5": 27.64344523835996, - "c6": -9.104921994982693, - "c7": 10.591896217839697 + "points": { + "c1": -12.154341529597264, + "c2": 4.14377523759174, + "c3": -28.95205351102876, + "c4": 17.691257749732678, + "c5": -15.253561844362011, + "c6": 30.275293443074744, + "c7": -30.546963545842786 }, - "vertexSeeds": { - "c1": 5.009775452045726, - "c2": 4.387492227218554, - "c3": 4.4491513027174525, - "c4": 5.2198612955937005, - "c5": 5.034494539958963, - "c6": 4.915634589668607, - "c7": 4.740901287234841 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -120939,23 +120939,23 @@ "year": 1741, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 4.810569175803508, - "c2": -17.25720151131761, - "c3": 6.213204034036238, - "c4": 9.077518421695707, - "c5": 22.855203968874548, - "c6": 15.868074698229215, - "c7": -8.617521117153323 + "points": { + "c1": -7.581511221753104, + "c2": 15.592211240776635, + "c3": -3.1352002738832034, + "c4": -14.83543957628428, + "c5": 29.80059258851678, + "c6": -32.12143454846795, + "c7": -13.254524996116498 }, - "vertexSeeds": { - "c1": 3.553606921373812, - "c2": 3.6882453215856073, - "c3": 3.383079731768649, - "c4": 3.594088657324618, - "c5": 3.3078715467618753, - "c6": 3.288232641391512, - "c7": 3.1878141266415736 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682386, + "c3": 4.415164123901988, + "c4": 3.5321312991215903, + "c5": 2.649098474341193, + "c6": 1.7660656495607951, + "c7": 0.8830328247803976 }, "rgb": [86, 146, 138] }, @@ -120966,23 +120966,23 @@ "year": 1741, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 7.644001262136012, - "c2": 0.21159776190347301, - "c3": -30.99056410003625, - "c4": 28.953919767732966, - "c5": 13.150717088256062, - "c6": 3.741024621776706, - "c7": 4.838381124337072 + "points": { + "c1": 9.210130841016621, + "c2": -15.476135473933383, + "c3": -15.700460938233416, + "c4": 24.85660597495012, + "c5": -14.220457357597692, + "c6": -7.812536607066626, + "c7": -19.031169373148884 }, - "vertexSeeds": { - "c1": 4.832199340201403, - "c2": 4.878852254398269, - "c3": 4.889022090749184, - "c4": 4.782622088973168, - "c5": 4.75927920530563, - "c6": 4.745718154855487, - "c7": 4.761189504377414 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176148, + "c3": 5.848358760980129, + "c4": 4.678687008784109, + "c5": 3.50901525658806, + "c6": 2.3393435043920396, + "c7": 1.1696717521960198 }, "rgb": [86, 146, 138] }, @@ -120993,23 +120993,23 @@ "year": 1741, "resistanceReported": true, "duration": 23673600, - "curveSeeds": { - "c1": -31.840002907223003, - "c2": -1.8684000691559532, - "c3": -26.762049653326947, - "c4": -28.262974842676485, - "c5": -17.848932008454085, - "c6": -4.3501645224719425, - "c7": -16.36579896091714 + "points": { + "c1": -32.23451868297876, + "c2": 13.861480545445808, + "c3": -6.782246346043188, + "c4": -20.689347175743038, + "c5": 14.104594765811783, + "c6": -24.28554905016724, + "c7": 37.03257846748164 }, - "vertexSeeds": { - "c1": 4.19856089680313, - "c2": 4.439116636386942, - "c3": 4.031201634369977, - "c4": 4.418589008515375, - "c5": 3.784979069399385, - "c6": 4.297912605960107, - "c7": 4.004460921387951 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331484, + "c3": 5.362921867776238, + "c4": 4.290337494220991, + "c5": 3.2177531206657446, + "c6": 2.145168747110498, + "c7": 1.0725843735552514 }, "rgb": [58, 15, 49] }, @@ -121020,23 +121020,23 @@ "year": 1741, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -27.926725827603185, - "c2": 10.601705827021732, - "c3": -2.8316878156174354, - "c4": -17.741409207497515, - "c5": -4.595371926221631, - "c6": 4.155672223027466, - "c7": -33.17084855011521 + "points": { + "c1": -32.05507587069733, + "c2": -31.349461912871867, + "c3": 12.455868240779893, + "c4": -17.394112719602788, + "c5": -13.640392214271614, + "c6": -13.36702255191867, + "c7": -25.0724736550356 }, - "vertexSeeds": { - "c1": 4.877837463227574, - "c2": 5.2576029649328415, - "c3": 4.849448577226691, - "c4": 5.449953782725591, - "c5": 5.221315022549811, - "c6": 4.915308806412071, - "c7": 5.400887140507692 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348127, + "c3": 7.096625057790106, + "c4": 5.677300046232085, + "c5": 4.257975034674064, + "c6": 2.8386500231160423, + "c7": 1.4193250115580212 }, "rgb": [77, 76, 132] }, @@ -121047,23 +121047,23 @@ "year": 1741, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 12.643441281798502, - "c2": -27.821681289754682, - "c3": 24.374357272128783, - "c4": -11.955516430772775, - "c5": 34.1963203572436, - "c6": 17.69891862032825, - "c7": -37.421657708011715 + "points": { + "c1": 19.395094362976486, + "c2": -10.482400273833349, + "c3": -18.51701450102251, + "c4": -22.074960152044397, + "c5": 34.20132487532228, + "c6": 19.962472243314487, + "c7": 4.68817728847894 }, - "vertexSeeds": { - "c1": 6.051218850786448, - "c2": 5.881475321290955, - "c3": 5.594675928532519, - "c4": 6.454960643144334, - "c5": 6.148163476098956, - "c6": 5.769307218824908, - "c7": 6.059711437556126 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514568, + "c3": 7.766990291262135, + "c4": 6.213592233009712, + "c5": 4.660194174757279, + "c6": 3.106796116504856, + "c7": 1.5533980582524227 }, "rgb": [77, 76, 132] }, @@ -121074,23 +121074,23 @@ "year": 1741, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 9.023205956879664, - "c2": -30.291473943770175, - "c3": -29.10273738566353, - "c4": 13.344875745049485, - "c5": 21.055365749480053, - "c6": -24.73856927574439, - "c7": -42.74963379033588 + "points": { + "c1": -18.786888388563323, + "c2": 27.727196478937678, + "c3": -23.732493895849913, + "c4": 33.23678816392893, + "c5": 4.136335610067128, + "c6": 18.790879068401246, + "c7": 10.161110084727063 }, - "vertexSeeds": { - "c1": 11.24959355823002, - "c2": 11.123229386348706, - "c3": 11.173124279879993, - "c4": 11.117842187294269, - "c5": 11.20584983251614, - "c6": 11.21621752587347, - "c7": 11.097288309134079 + "offsets": { + "c1": 18.83495145631068, + "c2": 16.144244105409125, + "c3": 13.453536754507569, + "c4": 10.762829403606226, + "c5": 8.07212205270467, + "c6": 5.381414701803113, + "c7": 2.6907073509015564 }, "rgb": [238, 201, 159] }, @@ -121101,23 +121101,23 @@ "year": 1741, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 11.613124542595145, - "c2": -13.072267930358453, - "c3": 13.959216529884586, - "c4": -32.64661144793605, - "c5": -15.480538008155655, - "c6": -21.28173684290554, - "c7": 3.1755801000727004 + "points": { + "c1": 6.902246378519365, + "c2": -28.937083484390065, + "c3": -28.63656009014899, + "c4": 29.827744638245896, + "c5": 34.644996309912536, + "c6": 21.688829947390765, + "c7": -24.60480450310329 }, - "vertexSeeds": { - "c1": 5.719275764688201, - "c2": 5.511941255311788, - "c3": 5.275683760750829, - "c4": 5.710176246651359, - "c5": 5.278708429672411, - "c6": 5.622214323461777, - "c7": 5.273050241781931 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945908, + "c3": 6.865464632454924, + "c4": 5.492371705963939, + "c5": 4.119278779472954, + "c6": 2.7461858529819696, + "c7": 1.3730929264909848 }, "rgb": [58, 15, 49] }, @@ -121128,23 +121128,23 @@ "year": 1741, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 18.707579183102744, - "c2": 5.540867223318372, - "c3": 11.557463407033921, - "c4": -22.083066907917615, - "c5": 13.941100102552447, - "c6": 22.144541103542856, - "c7": 21.33087328856707 + "points": { + "c1": -27.211186667258367, + "c2": 24.200585849773738, + "c3": -31.315291909379503, + "c4": 31.852972140160368, + "c5": -5.332658233830465, + "c6": -21.672099457940046, + "c7": -36.49784443779674 }, - "vertexSeeds": { - "c1": 2.981641545680884, - "c2": 3.3028897235414476, - "c3": 2.996462271673435, - "c4": 3.0124268962238996, - "c5": 3.1095056686958227, - "c6": 3.214901615216698, - "c7": 2.8926382812588693 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.77115117891817, + "c3": 3.9759593157651425, + "c4": 3.1807674526121157, + "c5": 2.3855755894590813, + "c6": 1.5903837263060543, + "c7": 0.7951918631530271 }, "rgb": [77, 76, 132] }, @@ -121155,23 +121155,23 @@ "year": 1742, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": -45.814381922531744, - "c2": 16.596477217583626, - "c3": 22.446015262408338, - "c4": 23.40096647298111, - "c5": 10.143560142605438, - "c6": 13.948867218090797, - "c7": -42.254069841907636 + "points": { + "c1": 25.019706772865987, + "c2": -30.09029683904776, + "c3": -35.92480712620784, + "c4": 29.600756110119562, + "c5": -39.906933950008025, + "c6": 16.47668191360654, + "c7": 21.144046571082953 }, - "vertexSeeds": { - "c1": 4.792104199520914, - "c2": 4.522985543908247, - "c3": 4.969305613460958, - "c4": 4.743550892894038, - "c5": 4.637980467819851, - "c6": 4.6215332032047485, - "c7": 4.776798191786683 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337036, + "c3": 5.940822931114191, + "c4": 4.752658344891357, + "c5": 3.5644937586685126, + "c6": 2.3763291724456783, + "c7": 1.1881645862228443 }, "rgb": [58, 15, 49] }, @@ -121182,23 +121182,23 @@ "year": 1743, "resistanceReported": false, "duration": 73353600, - "curveSeeds": { - "c1": -33.33649050228557, - "c2": 48.04184328367943, - "c3": 86.5488456361601, - "c4": 9.505060018369761, - "c5": -15.909452218860451, - "c6": -45.70953639785396, - "c7": -87.65389641343846 + "points": { + "c1": 24.634504981709938, + "c2": -10.072312041089788, + "c3": -36.74828609903031, + "c4": -63.02678578157705, + "c5": 76.1777016255612, + "c6": -13.249348257638161, + "c7": -6.754062072519275 }, - "vertexSeeds": { - "c1": 4.125475418105858, - "c2": 4.1834445908023445, - "c3": 3.9908002047403226, - "c4": 4.184270146387425, - "c5": 3.7930264603326322, - "c6": 3.8562713814653433, - "c7": 3.9359271230920663 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848823, + "c3": 5.085529357374013, + "c4": 4.0684234858992125, + "c5": 3.0513176144244114, + "c6": 2.0342117429496023, + "c7": 1.0171058714748011 }, "rgb": [86, 146, 138] }, @@ -121209,23 +121209,23 @@ "year": 1741, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -5.38873091247045, - "c2": 21.176710242265955, - "c3": -29.303219060655998, - "c4": 26.08133838823558, - "c5": 20.064432435711062, - "c6": -17.315533463759504, - "c7": -15.89888040154463 + "points": { + "c1": 17.493003736997835, + "c2": 14.796201059025854, + "c3": -15.088797117610909, + "c4": -25.148254221451058, + "c5": -6.529659333793212, + "c6": -25.181539662861695, + "c7": 14.683393552882272 }, - "vertexSeeds": { - "c1": 5.015846334993748, - "c2": 5.013605606543943, - "c3": 4.906184024719327, - "c4": 5.028287857286168, - "c5": 4.953421521573599, - "c6": 5.0632307113090524, - "c7": 5.013459044648978 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699045, + "c3": 6.1488673139158525, + "c4": 4.919093851132698, + "c5": 3.689320388349504, + "c6": 2.459546925566349, + "c7": 1.2297734627831745 }, "rgb": [238, 201, 159] }, @@ -121236,23 +121236,23 @@ "year": 1742, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -39.58261606805871, - "c2": -30.32445693674609, - "c3": 44.05038741022145, - "c4": -39.443713441378286, - "c5": -17.97465523302754, - "c6": 39.473771450183236, - "c7": -16.47556860798761 + "points": { + "c1": -41.49150151178601, + "c2": 9.029093820185388, + "c3": 39.77444696580112, + "c4": 11.76348588006094, + "c5": 41.46528306528289, + "c6": -20.292224790408984, + "c7": -30.361380041021658 }, - "vertexSeeds": { - "c1": 6.446540082229456, - "c2": 6.2558261537637225, - "c3": 6.266874591835756, - "c4": 6.538421594130744, - "c5": 6.432202476081342, - "c6": 6.385371854122254, - "c7": 6.577557451248577 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715668, + "c3": 7.882570503929718, + "c4": 6.306056403143768, + "c5": 4.729542302357817, + "c6": 3.1530282015719004, + "c7": 1.5765141007859502 }, "rgb": [77, 76, 132] }, @@ -121263,23 +121263,23 @@ "year": 1742, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 34.55639566722603, - "c2": 30.251855469006173, - "c3": 18.274112723891875, - "c4": -7.829003575404535, - "c5": -12.737741857659742, - "c6": 36.076564628453355, - "c7": 24.174762240648818 + "points": { + "c1": -48.58453017264398, + "c2": 2.5148565924104034, + "c3": -8.92320425536191, + "c4": 28.81008936674114, + "c5": -18.387908810472005, + "c6": 12.884671563902373, + "c7": 46.29243592125671 }, - "vertexSeeds": { - "c1": 3.8528833436515213, - "c2": 3.951872551720924, - "c3": 3.896953623753304, - "c4": 3.7007414358580877, - "c5": 3.727243765088057, - "c6": 3.8386814360449195, - "c7": 3.900537831283145 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366158, + "c3": 4.808136846971796, + "c4": 3.846509477577435, + "c5": 2.8848821081830742, + "c6": 1.9232547387887224, + "c7": 0.9616273693943516 }, "rgb": [238, 201, 159] }, @@ -121290,23 +121290,23 @@ "year": 1742, "resistanceReported": false, "duration": 54086400, - "curveSeeds": { - "c1": 31.061457683399993, - "c2": -60.66166523151676, - "c3": 12.319237515899204, - "c4": -47.89527859237594, - "c5": -29.981565840035344, - "c6": 57.1861614680538, - "c7": -68.56437929575654 + "points": { + "c1": -17.235773069413597, + "c2": -11.084330324923904, + "c3": 9.264083872013245, + "c4": 18.610150420813127, + "c5": 42.03474980456588, + "c6": -15.103934886854987, + "c7": -54.752507725783545 }, - "vertexSeeds": { - "c1": 4.4568703122267, - "c2": 4.813902508383896, - "c3": 5.204820829229801, - "c4": 5.235819720890041, - "c5": 4.676328053386938, - "c6": 4.3689064346173385, - "c7": 4.39456460166859 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -121317,23 +121317,23 @@ "year": 1741, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -23.688735213130983, - "c2": -31.8322356236469, - "c3": -17.52322261539989, - "c4": 13.263357909772964, - "c5": 3.3870994867918114, - "c6": -7.986622850881929, - "c7": -10.782423679416613 + "points": { + "c1": 25.072547060480545, + "c2": -5.082482510720954, + "c3": -21.459692888224744, + "c4": 23.173964311235736, + "c5": -7.622358676768357, + "c6": 22.45739748853226, + "c7": -33.530817097510365 }, - "vertexSeeds": { - "c1": 4.516764814286266, - "c2": 4.302528063443829, - "c3": 4.877278362386353, - "c4": 5.167612512649491, - "c5": 5.05678110028235, - "c6": 4.681994397437588, - "c7": 4.465232349525356 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -121344,23 +121344,23 @@ "year": 1742, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 31.06318852884204, - "c2": -35.080339275411994, - "c3": 10.57492751907202, - "c4": 3.951930008707457, - "c5": 16.646203619982252, - "c6": 37.005235064750245, - "c7": 10.182960932957904 + "points": { + "c1": 10.343969337414556, + "c2": 46.46187498052435, + "c3": 2.6592649865469795, + "c4": 0.10199161933818601, + "c5": 52.891400227371726, + "c6": 5.928168849007868, + "c7": -19.80839671631535 }, - "vertexSeeds": { - "c1": 2.711468152232819, - "c2": 2.6878885234737764, - "c3": 2.416019515025409, - "c4": 2.61457493526487, - "c5": 2.774308598825524, - "c6": 2.594210978128666, - "c7": 2.448192419454992 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791955, + "c3": 3.3287101248266286, + "c4": 2.6629680998613026, + "c5": 1.9972260748959758, + "c6": 1.3314840499306493, + "c7": 0.665742024965323 }, "rgb": [58, 15, 49] }, @@ -121371,23 +121371,23 @@ "year": 1741, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -4.208956686464415, - "c2": -20.166008975335636, - "c3": -12.28100367026218, - "c4": 22.628534045929747, - "c5": -21.455427233151987, - "c6": 7.624704779326116, - "c7": -2.595841982341806 + "points": { + "c1": 34.15036795810745, + "c2": -1.0578575805002544, + "c3": 2.3552254910088735, + "c4": -17.0027647328393, + "c5": -24.203468397758133, + "c6": -25.939394829427407, + "c7": -18.588709121948497 }, - "vertexSeeds": { - "c1": 5.994802177110676, - "c2": 6.682357000686467, - "c3": 6.851259293575628, - "c4": 6.8730430056845, - "c5": 6.201060476117336, - "c6": 6.564167628108823, - "c7": 6.66371478322935 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519181, + "c5": 4.923717059639394, + "c6": 3.2824780397595905, + "c7": 1.6412390198797886 }, "rgb": [77, 76, 132] }, @@ -121398,23 +121398,23 @@ "year": 1742, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": 47.44419028643042, - "c2": 53.780783411934586, - "c3": -16.490530462575563, - "c4": 29.733506032317443, - "c5": -33.05361259090389, - "c6": -13.193347899308343, - "c7": -39.37833115254959 + "points": { + "c1": 27.13963438674144, + "c2": -52.325828133773136, + "c3": -25.808891875958253, + "c4": 8.393055444953582, + "c5": 28.740786714695552, + "c6": -11.275549508049515, + "c7": -40.33331870760317 }, - "vertexSeeds": { - "c1": 5.073448702599583, - "c2": 5.041810390883837, - "c3": 4.925181196675872, - "c4": 5.119983726205066, - "c5": 4.773880685725023, - "c6": 5.078429251544219, - "c7": 4.714684425266331 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221915, + "c3": 6.4493758668515975, + "c4": 5.159500693481279, + "c5": 3.869625520110961, + "c6": 2.579750346740643, + "c7": 1.289875173370325 }, "rgb": [86, 146, 138] }, @@ -121425,23 +121425,23 @@ "year": 1742, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": 30.430928311193107, - "c2": -50.03818465338735, - "c3": 45.06955184103381, - "c4": 40.051674313125865, - "c5": 38.92828149557983, - "c6": 8.758704295934798, - "c7": 42.93585556276896 + "points": { + "c1": -11.38761190119913, + "c2": -39.46438062314573, + "c3": 2.2455679407163984, + "c4": -14.243234998381325, + "c5": -6.219977924055499, + "c6": -12.33841666845781, + "c7": 6.924996559383089 }, - "vertexSeeds": { - "c1": 5.479799623886108, - "c2": 4.907867718946396, - "c3": 4.97179152692408, - "c4": 5.511992028379359, - "c5": 5.129241374025676, - "c6": 5.220040238970333, - "c7": 5.372955666342051 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583917, + "c3": 6.657420249653257, + "c4": 5.325936199722611, + "c5": 3.9944521497919516, + "c6": 2.6629680998613057, + "c7": 1.3314840499306528 }, "rgb": [222, 0, 59] }, @@ -121452,23 +121452,23 @@ "year": 1742, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 3.6636157553341917, - "c2": -9.903175665655375, - "c3": 28.797897768213147, - "c4": -12.854180081610746, - "c5": -7.483893319709637, - "c6": -25.57845905885566, - "c7": 26.18485453179717 + "points": { + "c1": -27.942221974334572, + "c2": 22.39805502850669, + "c3": 43.390113965778326, + "c4": -31.391185052269265, + "c5": 35.00047448231159, + "c6": -33.94588629085497, + "c7": 7.13792631041153 }, - "vertexSeeds": { - "c1": 3.8137231381786636, - "c2": 4.056605947191838, - "c3": 3.872952284889793, - "c4": 3.838944197051186, - "c5": 4.352537012136435, - "c6": 4.084772819307081, - "c7": 4.06145570709169 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -121479,23 +121479,23 @@ "year": 1742, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -38.35362803337462, - "c2": -4.994507234829001, - "c3": 23.59091451082581, - "c4": -23.334559402012545, - "c5": -9.061603940938113, - "c6": -17.17141265070114, - "c7": -35.683518282591294 + "points": { + "c1": 0.20787090776072148, + "c2": -24.363439029563132, + "c3": -30.654977921172936, + "c4": -32.59586174220034, + "c5": -18.139105162045308, + "c6": -44.43223159723845, + "c7": 11.133883293718199 }, - "vertexSeeds": { - "c1": 5.068561476687108, - "c2": 5.418069232310289, - "c3": 5.401770023354567, - "c4": 5.1942932484955495, - "c5": 5.206747570117, - "c6": 5.322047060526075, - "c7": 5.263285914623805 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262148, + "c3": 6.47249190938511, + "c4": 5.177993527508098, + "c5": 3.883495145631061, + "c6": 2.588996763754049, + "c7": 1.2944983818770375 }, "rgb": [77, 76, 132] }, @@ -121506,23 +121506,23 @@ "year": 1742, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": 34.90743962233263, - "c2": 31.281182845885468, - "c3": -2.3540456385481434, - "c4": 29.73409776997424, - "c5": 2.418318402570499, - "c6": 53.37738032729618, - "c7": 14.07041379450176 + "points": { + "c1": -24.706289804052606, + "c2": -34.240570146552734, + "c3": -18.266544708954868, + "c4": -2.6554307175709724, + "c5": -47.395199782503454, + "c6": -50.92838166422546, + "c7": 43.8807809762566 }, - "vertexSeeds": { - "c1": 4.891516342110574, - "c2": 4.658935309223368, - "c3": 5.034664681001909, - "c4": 5.038254030771213, - "c5": 4.730591694410081, - "c6": 4.835215122500953, - "c7": 5.122861551133328 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658813, + "c3": 6.125751271382331, + "c4": 4.900601017105869, + "c5": 3.6754507628294064, + "c6": 2.4503005085529344, + "c7": 1.225150254276472 }, "rgb": [77, 76, 132] }, @@ -121533,23 +121533,23 @@ "year": 1741, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 6.115794800936733, - "c2": 5.105018972198959, - "c3": 16.250144252964574, - "c4": -23.280647239920736, - "c5": -24.85270369794808, - "c6": 2.271861373479048, - "c7": -22.13241371304258 + "points": { + "c1": -16.457144607130246, + "c2": 5.2905826872407715, + "c3": 28.117103096668764, + "c4": 23.780804726127357, + "c5": 15.100066805744433, + "c6": -14.095775764498951, + "c7": 23.963630725903386 }, - "vertexSeeds": { - "c1": 9.53610464050129, - "c2": 9.202373722098807, - "c3": 9.666686158950588, - "c4": 9.055816701160854, - "c5": 9.097171367514262, - "c6": 9.562047916101372, - "c7": 8.90129142735053 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110953, + "c3": 11.558021266759125, + "c4": 9.246417013407312, + "c5": 6.934812760055485, + "c6": 4.623208506703656, + "c7": 2.311604253351828 }, "rgb": [77, 76, 132] }, @@ -121560,23 +121560,23 @@ "year": 1741, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -28.440268891899386, - "c2": -9.337692031601339, - "c3": 29.656580570202337, - "c4": 9.649640154357286, - "c5": 15.047122277832678, - "c6": 28.290677434196596, - "c7": -32.14565993876034 + "points": { + "c1": 11.317299354966195, + "c2": -30.92653898222327, + "c3": 19.08530770852463, + "c4": -21.009347819067532, + "c5": 17.115567317545654, + "c6": -28.02780449541374, + "c7": -33.315656457783504 }, - "vertexSeeds": { - "c1": 6.7043724208794675, - "c2": 6.84967789112962, - "c3": 6.81915068282788, - "c4": 6.756344888989372, - "c5": 6.945198685332836, - "c6": 6.0262860090976, - "c7": 6.4166891824612655 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169213, + "c3": 9.292649098474339, + "c4": 7.434119278779473, + "c5": 5.575589459084607, + "c6": 3.7170596393897397, + "c7": 1.8585298196948665 }, "rgb": [238, 201, 159] }, @@ -121587,23 +121587,23 @@ "year": 1743, "resistanceReported": false, "duration": 75600000, - "curveSeeds": { - "c1": -84.72705720391775, - "c2": -58.906984306164986, - "c3": 47.17777088111772, - "c4": -7.4998967169221515, - "c5": -63.447022048641955, - "c6": -23.39666275983579, - "c7": -0.5345886838541247 + "points": { + "c1": 1.6789561773990158, + "c2": -65.6534848883955, + "c3": -58.94736579455506, + "c4": -12.281055092488216, + "c5": 11.520289054026861, + "c6": 12.519806261133496, + "c7": -52.92660173995139 }, - "vertexSeeds": { - "c1": 6.260533675329529, - "c2": 6.174892310389798, - "c3": 6.095703801534475, - "c4": 6.102571804335599, - "c5": 6.375275672427719, - "c6": 6.173680576011172, - "c7": 6.318581420015476 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273226, + "c3": 7.628294036061016, + "c4": 6.102635228848807, + "c5": 4.576976421636597, + "c6": 3.0513176144244194, + "c7": 1.5256588072122097 }, "rgb": [222, 0, 59] }, @@ -121614,23 +121614,23 @@ "year": 1742, "resistanceReported": false, "duration": 53222400, - "curveSeeds": { - "c1": 14.71357472224335, - "c2": 47.63488806683674, - "c3": -6.083219868236782, - "c4": -23.739906059294334, - "c5": 67.77700359214784, - "c6": 41.42940542897162, - "c7": 35.155322425549755 + "points": { + "c1": 2.394510636329187, + "c2": -5.242704749182451, + "c3": -65.98494947297803, + "c4": -65.12562374485529, + "c5": -33.29926766502817, + "c6": -11.070360819471425, + "c7": 67.68649343180074 }, - "vertexSeeds": { - "c1": 6.558745747833966, - "c2": 6.6850877034100575, - "c3": 6.396966377950353, - "c4": 7.086381711621852, - "c5": 6.392178424835873, - "c6": 6.903503642100565, - "c7": 6.557375967438827 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123442, + "c3": 8.69163199260286, + "c4": 6.953305594082291, + "c5": 5.214979195561721, + "c6": 3.4766527970411523, + "c7": 1.7383263985205695 }, "rgb": [58, 15, 49] }, @@ -121641,23 +121641,23 @@ "year": 1742, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 2.9253117028393447, - "c2": 36.18587081056886, - "c3": -34.36694924151106, - "c4": -39.48823526056709, - "c5": -42.01341311836047, - "c6": 18.468279422532788, - "c7": 20.645874076878705 + "points": { + "c1": -32.121442430269134, + "c2": -7.034018610186408, + "c3": -22.099964124787782, + "c4": 0.1870393784774933, + "c5": -16.589567928170826, + "c6": 34.49764916122649, + "c7": -5.887663721644628 }, - "vertexSeeds": { - "c1": 11.890485915860747, - "c2": 12.095866186340306, - "c3": 11.684057370633699, - "c4": 12.726028432472758, - "c5": 12.516569740042899, - "c6": 12.10486112284203, - "c7": 12.126209419764852 + "offsets": { + "c1": 21.262135922330096, + "c2": 18.22468793342579, + "c3": 15.187239944521485, + "c4": 12.14979195561718, + "c5": 9.112343966712915, + "c6": 6.07489597780861, + "c7": 3.037447988904305 }, "rgb": [77, 76, 132] }, @@ -121668,23 +121668,23 @@ "year": 1741, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 23.536982006275785, - "c2": 15.078224720515351, - "c3": 5.881846500612937, - "c4": 13.37751374640662, - "c5": -31.83284249893934, - "c6": 33.12416742626435, - "c7": -36.25202949424012 + "points": { + "c1": 36.49700021455257, + "c2": 2.55992138199408, + "c3": -6.063783271974351, + "c4": -2.166254990367534, + "c5": -15.756843968383308, + "c6": -10.13968599254731, + "c7": -22.9594249045304 }, - "vertexSeeds": { - "c1": 5.485569768538743, - "c2": 5.823127642895892, - "c3": 5.926102277150512, - "c4": 6.024310509475455, - "c5": 5.152391412148648, - "c6": 5.7613068758309804, - "c7": 5.1980528922367135 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871017, + "c3": 7.397133610725843, + "c4": 5.917706888580679, + "c5": 4.438280166435503, + "c6": 2.9588534442903396, + "c7": 1.4794267221451751 }, "rgb": [58, 15, 49] }, @@ -121695,23 +121695,23 @@ "year": 1741, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -29.24356623387454, - "c2": -18.73588049292776, - "c3": -8.669223032167288, - "c4": 3.6530777302483983, - "c5": -5.42054953200978, - "c6": -23.050264050572164, - "c7": 16.046658033077883 + "points": { + "c1": -16.350159472491423, + "c2": -27.997583310581884, + "c3": -1.1623896866806547, + "c4": 26.62507216579575, + "c5": 30.701879231373667, + "c6": -7.760193269647122, + "c7": -34.282664789620455 }, - "vertexSeeds": { - "c1": 6.043245556058769, - "c2": 6.065466013288977, - "c3": 5.7735873608291834, - "c4": 5.9463328214177675, - "c5": 6.292434061017015, - "c6": 5.855910957696108, - "c7": 5.872383581829949 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072122, + "c3": 7.512713823393435, + "c4": 6.010171058714747, + "c5": 4.507628294036061, + "c6": 3.0050855293573737, + "c7": 1.5025427646786869 }, "rgb": [77, 76, 132] }, @@ -121722,23 +121722,23 @@ "year": 1742, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -29.9059123899043, - "c2": 37.65752101938173, - "c3": 46.46475374811415, - "c4": -9.775413741868597, - "c5": -3.083838618930514, - "c6": 13.85973912955707, - "c7": 11.43806247854863 + "points": { + "c1": 22.411828748685394, + "c2": -25.903074513802203, + "c3": 29.17664094870095, + "c4": 4.765628289076602, + "c5": -51.435056463868975, + "c6": -33.260210906224515, + "c7": -31.351571448456813 }, - "vertexSeeds": { - "c1": 6.621431975206219, - "c2": 6.708126942602742, - "c3": 6.776424308049038, - "c4": 7.126660336775206, - "c5": 6.848989610122732, - "c6": 6.924239326156312, - "c7": 7.085041503973623 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244099, + "c3": 8.760980120203424, + "c4": 7.008784096162732, + "c5": 5.256588072122058, + "c6": 3.504392048081366, + "c7": 1.7521960240406917 }, "rgb": [58, 15, 49] }, @@ -121749,23 +121749,23 @@ "year": 1742, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -39.36647783079936, - "c2": -5.112867571812664, - "c3": -23.546658201177127, - "c4": -23.810945430903296, - "c5": -29.11849669291032, - "c6": -30.544847476236406, - "c7": -16.54787293191739 + "points": { + "c1": -22.41603384185675, + "c2": 9.30737830118349, + "c3": -29.327633398552116, + "c4": 32.72765186291407, + "c5": -21.079501452325555, + "c6": -7.38442286969066, + "c7": 35.49560654417007 }, - "vertexSeeds": { - "c1": 7.094397049722567, - "c2": 6.041047889210869, - "c3": 5.398725822738507, - "c4": 6.513540471499944, - "c5": 5.8359274269403905, - "c6": 5.454509791744451, - "c7": 6.241243370688178 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370318, + "c3": 9.40822931114193, + "c4": 7.526583448913548, + "c5": 5.644937586685161, + "c6": 3.763291724456774, + "c7": 1.881645862228387 }, "rgb": [86, 146, 138] }, @@ -121776,23 +121776,23 @@ "year": 1741, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -26.646298025769596, - "c2": -1.5864911230279048, - "c3": -29.68192726656414, - "c4": 6.3719855748229435, - "c5": -15.353209954052176, - "c6": 30.950807940153368, - "c7": 21.478077186215152 + "points": { + "c1": -10.53950617252033, + "c2": -8.962370348781764, + "c3": 32.060277871766544, + "c4": -11.196980879391909, + "c5": 11.699966894721307, + "c6": 28.993092156220584, + "c7": 26.09332880486673 }, - "vertexSeeds": { - "c1": 7.669716748508588, - "c2": 7.387859512299155, - "c3": 6.721656673939798, - "c4": 7.546595704714257, - "c5": 6.675003272842827, - "c6": 7.139050252253832, - "c7": 7.066357540820345 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.17753120665742, + "c3": 10.147942672214517, + "c4": 8.118354137771613, + "c5": 6.08876560332871, + "c6": 4.059177068885806, + "c7": 2.029588534442903 }, "rgb": [238, 201, 159] }, @@ -121803,23 +121803,23 @@ "year": 1741, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -28.909594436234375, - "c2": -6.309193398200019, - "c3": 10.763580409899205, - "c4": 5.065906811495381, - "c5": 23.403921655083607, - "c6": 27.93415035335091, - "c7": -27.124110696226474 + "points": { + "c1": 3.063072098943522, + "c2": 1.8174088682591218, + "c3": 11.848604007544978, + "c4": -18.114256534264392, + "c5": -13.857564174645944, + "c6": -18.497138853427927, + "c7": -16.283798791044802 }, - "vertexSeeds": { - "c1": 3.9295998407272514, - "c2": 3.5921546259265384, - "c3": 3.9531966558380196, - "c4": 4.0241999027325095, - "c5": 4.099818470426827, - "c6": 3.594579279576969, - "c7": 3.5718731059900484 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567267, + "c3": 4.923717059639389, + "c4": 3.9389736477115114, + "c5": 2.9542302357836334, + "c6": 1.9694868238557557, + "c7": 0.9847434119278778 }, "rgb": [77, 76, 132] }, @@ -121830,23 +121830,23 @@ "year": 1742, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -27.010984384143324, - "c2": -8.294056652553888, - "c3": -9.139701341499968, - "c4": -14.321472965098938, - "c5": -22.767141592324556, - "c6": 21.545070978236907, - "c7": -11.920652199404834 + "points": { + "c1": -29.24548394319883, + "c2": -31.21822724721889, + "c3": -23.931972368972914, + "c4": 32.65201950464481, + "c5": -16.19726432945627, + "c6": -0.9580098673886113, + "c7": 29.14877390335647 }, - "vertexSeeds": { - "c1": 5.9604767076185246, - "c2": 5.569119306074402, - "c3": 6.181891560525878, - "c4": 5.681104578563658, - "c5": 5.508663394764461, - "c6": 6.23510642913468, - "c7": 6.3620662796799765 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -121857,23 +121857,23 @@ "year": 1741, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -15.82700140890617, - "c2": 21.734130280877693, - "c3": 33.22156973333506, - "c4": -21.327658541820114, - "c5": -22.736027689969404, - "c6": 32.36225603585717, - "c7": -23.381451142626826 + "points": { + "c1": 30.23409813258658, + "c2": -34.010881995936565, + "c3": -33.206818280209085, + "c4": -22.926679896177333, + "c5": 7.410716170504948, + "c6": 19.48862025681815, + "c7": 20.4231089554633 }, - "vertexSeeds": { - "c1": 2.875778769429059, - "c2": 3.0568093043777185, - "c3": 2.9764263481602504, - "c4": 2.9379878187615214, - "c5": 2.9863973750597217, - "c6": 2.871228495707026, - "c7": 2.7556368032547436 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435506, + "c3": 3.69856680536292, + "c4": 2.9588534442903347, + "c5": 2.2191400832177566, + "c6": 1.4794267221451711, + "c7": 0.7397133610725856 }, "rgb": [86, 146, 138] }, @@ -121884,23 +121884,23 @@ "year": 1742, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 10.655753685518675, - "c2": 24.94498233755757, - "c3": -33.919935699707565, - "c4": 4.140254692363278, - "c5": 34.189352436414936, - "c6": -3.0329181947578334, - "c7": -21.10911210109921 + "points": { + "c1": -12.788284591078295, + "c2": 13.329715733665807, + "c3": -0.8322970628432032, + "c4": 2.106975797948813, + "c5": -6.362375466176282, + "c6": 29.705110900182575, + "c7": -35.20848729589905 }, - "vertexSeeds": { - "c1": 7.428765204794359, - "c2": 6.870787234687949, - "c3": 7.180218838335107, - "c4": 7.218832537344602, - "c5": 7.394135190595468, - "c6": 6.933634987587364, - "c7": 7.350194392089387 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -121911,23 +121911,23 @@ "year": 1742, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": -43.75626089684437, - "c2": -3.7446489675534593, - "c3": 17.659112956371104, - "c4": 29.112680694211676, - "c5": 42.47598641350875, - "c6": -34.70374911548743, - "c7": 34.19156626146358 + "points": { + "c1": -18.244751125285774, + "c2": -14.486867490868015, + "c3": -8.506063613642759, + "c4": 25.753857550014217, + "c5": -44.71763586513657, + "c6": -11.406152271111033, + "c7": -26.710845334292962 }, - "vertexSeeds": { - "c1": 4.257336323735348, - "c2": 4.230723902336533, - "c3": 4.838146071513651, - "c4": 4.6613663814604465, - "c5": 4.899942500241508, - "c6": 5.20341281441308, - "c7": 5.084901675388464 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -121938,23 +121938,23 @@ "year": 1742, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -4.899870400415182, - "c2": -42.492370655111756, - "c3": -3.148190964393656, - "c4": -31.9571882121679, - "c5": -1.8579443673658318, - "c6": 27.409181711351813, - "c7": -20.20420267257818 + "points": { + "c1": 21.232228234092666, + "c2": 21.010995763042665, + "c3": 34.50362624964007, + "c4": -36.40158205205667, + "c5": -8.840612930724134, + "c6": 19.656660658734516, + "c7": -45.149740662786066 }, - "vertexSeeds": { - "c1": 8.137254407853748, - "c2": 8.129748364230359, - "c3": 8.058414752538905, - "c4": 8.708243618736706, - "c5": 8.52807978830716, - "c6": 8.21553295353296, - "c7": 8.812392195774814 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.20388349514564, + "c3": 11.003236245954696, + "c4": 8.80258899676375, + "c5": 6.60194174757282, + "c6": 4.401294498381889, + "c7": 2.2006472491909443 }, "rgb": [58, 15, 49] }, @@ -121965,23 +121965,23 @@ "year": 1741, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -8.8192994114371, - "c2": -23.991010626804183, - "c3": 15.625256941176907, - "c4": -13.61657583146231, - "c5": 6.245132338607618, - "c6": -26.19127061237164, - "c7": -9.974001006696799 + "points": { + "c1": -24.601152560972093, + "c2": 7.085340398254097, + "c3": -28.661526693108044, + "c4": -26.6839617625133, + "c5": 1.497662078389638, + "c6": 18.196475518774648, + "c7": -11.509897378957156 }, - "vertexSeeds": { - "c1": 6.690182920344488, - "c2": 6.591144721316814, - "c3": 6.652533543379424, - "c4": 6.550724064717782, - "c5": 6.8423544215666094, - "c6": 6.459095214837969, - "c7": 6.489466967884486 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278764, + "c3": 8.206195099398986, + "c4": 6.5649560795191775, + "c5": 4.923717059639398, + "c6": 3.2824780397595887, + "c7": 1.6412390198797795 }, "rgb": [86, 146, 138] }, @@ -121992,23 +121992,23 @@ "year": 1742, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -3.2075731077284786, - "c2": 30.926678381316734, - "c3": 22.67133497256446, - "c4": -14.722625636642789, - "c5": 3.9609699599263095, - "c6": 1.2417662846822566, - "c7": 5.709416897783875 + "points": { + "c1": 10.267615071175378, + "c2": 3.849868568851285, + "c3": -24.210856375887346, + "c4": 15.918204099133803, + "c5": 11.30875502932151, + "c6": 10.815145535403722, + "c7": 30.080584093155892 }, - "vertexSeeds": { - "c1": 4.406437759215347, - "c2": 4.373850382045847, - "c3": 4.705616528130436, - "c4": 4.428823221724672, - "c5": 4.280315033163403, - "c6": 4.797852750040454, - "c7": 4.444799356846794 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -122019,23 +122019,23 @@ "year": 1742, "resistanceReported": false, "duration": 46051200, - "curveSeeds": { - "c1": -40.73713119543922, - "c2": 58.8191578446148, - "c3": 8.488420416080253, - "c4": 49.45569624930895, - "c5": -52.53287142818381, - "c6": -13.195520436233963, - "c7": -59.65093799497152 + "points": { + "c1": 39.05316324747697, + "c2": -29.918808787853415, + "c3": -11.84176731297643, + "c4": -55.62056343229925, + "c5": -6.76105731844514, + "c6": -38.04807498152172, + "c7": 25.753387126996778 }, - "vertexSeeds": { - "c1": 4.810211077519742, - "c2": 4.782638639938114, - "c3": 4.875880235260702, - "c4": 4.8167490767633385, - "c5": 4.9599213008692535, - "c6": 4.73223792921453, - "c7": 4.947204200352202 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538139, + "c3": 6.056403143781778, + "c4": 4.84512251502543, + "c5": 3.6338418862690696, + "c6": 2.4225612575127213, + "c7": 1.2112806287563607 }, "rgb": [222, 0, 59] }, @@ -122046,23 +122046,23 @@ "year": 1742, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -14.463700470643111, - "c2": -16.038803538228777, - "c3": 19.39491397577462, - "c4": 48.904655556603096, - "c5": -42.126888109575475, - "c6": -25.019172185699468, - "c7": -34.18179351724406 + "points": { + "c1": 34.400277824912116, + "c2": 20.979513052401238, + "c3": 4.493181315907222, + "c4": 44.79589827100454, + "c5": -46.30856833526088, + "c6": -5.827811461850267, + "c7": -28.814569240481866 }, - "vertexSeeds": { - "c1": 4.98401662878764, - "c2": 4.373036374473067, - "c3": 4.509181786026781, - "c4": 4.399124276953998, - "c5": 4.995999148823491, - "c6": 5.082182454662811, - "c7": 5.105256504768332 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -122073,23 +122073,23 @@ "year": 1742, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -5.3929296471057455, - "c2": 21.387752550157074, - "c3": 34.42078770387221, - "c4": 12.778506052427105, - "c5": 10.90613521821576, - "c6": -0.7721831138175972, - "c7": -1.3659290360940446 + "points": { + "c1": 28.941064862497853, + "c2": -3.3837381419975756, + "c3": 28.63691019725148, + "c4": 14.211017537690239, + "c5": 31.228461029450415, + "c6": 30.589279216288887, + "c7": 12.83837851031361 }, - "vertexSeeds": { - "c1": 4.114247111540757, - "c2": 4.779760144287028, - "c3": 4.052080802841073, - "c4": 4.78949884536622, - "c5": 4.766301168180973, - "c6": 4.277371569458787, - "c7": 4.491125668825107 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -122100,23 +122100,23 @@ "year": 1742, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -28.77195785266654, - "c2": -13.906463405874945, - "c3": 5.733143927208673, - "c4": 34.440635273064345, - "c5": 26.95891568644076, - "c6": -8.020534439811193, - "c7": 32.456140770606666 + "points": { + "c1": -34.430576611401236, + "c2": 18.95979276768967, + "c3": -27.888513695795012, + "c4": -38.16745956510105, + "c5": 9.92025549833184, + "c6": 2.56943395951167, + "c7": 24.048029620711546 }, - "vertexSeeds": { - "c1": 3.381568976446972, - "c2": 3.746085598746932, - "c3": 3.6424919893777026, - "c4": 3.4912330151686413, - "c5": 3.387876596480483, - "c6": 3.6342949078683073, - "c7": 3.689704173763944 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [222, 0, 59] }, @@ -122127,23 +122127,23 @@ "year": 1742, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": -14.132430463527271, - "c2": 6.944704120940401, - "c3": 46.64355460717866, - "c4": 35.32659400381512, - "c5": 25.247148230891682, - "c6": -34.78181958610506, - "c7": 19.33583664611109 + "points": { + "c1": -22.9363931080457, + "c2": 48.208136102224174, + "c3": -0.4522222218738037, + "c4": -41.261416006685664, + "c5": 40.83201367378231, + "c6": -50.107378175677084, + "c7": 50.11445960872214 }, - "vertexSeeds": { - "c1": 4.838601844104668, - "c2": 4.733698592733614, - "c3": 5.513586420204026, - "c4": 5.547465936655239, - "c5": 6.066802914822519, - "c6": 4.7973105839362296, - "c7": 6.830742378204148 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893204, + "c3": 9.708737864077671, + "c4": 7.766990291262137, + "c5": 5.825242718446605, + "c6": 3.8834951456310707, + "c7": 1.9417475728155333 }, "rgb": [238, 201, 159] }, @@ -122154,23 +122154,23 @@ "year": 1742, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 26.56070545452218, - "c2": 16.932151914515046, - "c3": -21.117791398599692, - "c4": 11.669134932298519, - "c5": -28.67177669387302, - "c6": -29.27226634044348, - "c7": -31.170849073185313 + "points": { + "c1": -28.409330156215184, + "c2": 2.2153959427635854, + "c3": 0.7028175437457378, + "c4": -31.120073932844633, + "c5": -31.06452026492504, + "c6": 3.7719464255513557, + "c7": 22.6362084099939 }, - "vertexSeeds": { - "c1": 4.362362498736189, - "c2": 4.384295109798692, - "c3": 4.439916801333811, - "c4": 4.343803804471739, - "c5": 4.4193749967213405, - "c6": 4.370963402140317, - "c7": 4.455197279322809 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291266, + "c3": 5.339805825242726, + "c4": 4.271844660194186, + "c5": 3.2038834951456465, + "c6": 2.1359223300970798, + "c7": 1.0679611650485399 }, "rgb": [238, 201, 159] }, @@ -122181,23 +122181,23 @@ "year": 1742, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -17.1948765835987, - "c2": -19.486642155469255, - "c3": -21.58962135982312, - "c4": -12.926209633443953, - "c5": 4.836886490756662, - "c6": -21.801998431120932, - "c7": 21.505670905432858 + "points": { + "c1": -24.89572002452527, + "c2": 17.759016968154548, + "c3": 27.829726613914545, + "c4": -3.53141644876494, + "c5": -20.030436246020113, + "c6": -18.952870326429533, + "c7": -24.57962495949156 }, - "vertexSeeds": { - "c1": 7.157179466805772, - "c2": 7.018318685046537, - "c3": 7.155165568625751, - "c4": 7.202055903055889, - "c5": 7.068654080272055, - "c6": 6.997339863972783, - "c7": 7.139037666206769 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002796, + "c3": 8.622283865002304, + "c4": 6.897827092001865, + "c5": 5.173370319001372, + "c6": 3.4489135460009326, + "c7": 1.7244567730004399 }, "rgb": [222, 0, 59] }, @@ -122208,23 +122208,23 @@ "year": 1742, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -11.372362875545981, - "c2": -0.6531282580921172, - "c3": -9.509064154751137, - "c4": -22.61769877562492, - "c5": 25.754311884401503, - "c6": 34.082038825514104, - "c7": -29.439609836125555 + "points": { + "c1": -29.230444463511517, + "c2": -37.9867937262233, + "c3": -22.468814257999387, + "c4": -30.129997592558027, + "c5": 23.811596042943435, + "c6": 35.54885414156496, + "c7": -27.908457112139022 }, - "vertexSeeds": { - "c1": 4.127076559735704, - "c2": 4.172742733384009, - "c3": 4.021659210419338, - "c4": 4.095789314694783, - "c5": 4.153541584579095, - "c6": 4.119732643567223, - "c7": 4.032426538884251 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808595, + "c3": 5.062413314840507, + "c4": 4.049930651872402, + "c5": 3.0374479889042973, + "c6": 2.0249653259361926, + "c7": 1.0124826629681047 }, "rgb": [86, 146, 138] }, @@ -122235,23 +122235,23 @@ "year": 1742, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": 6.061704829036657, - "c2": -49.76652871646727, - "c3": 50.23626898860295, - "c4": -8.351961745853053, - "c5": 35.54064939528964, - "c6": 22.247923025866392, - "c7": 41.150932429000385 + "points": { + "c1": -33.32578744600613, + "c2": 6.068100777311834, + "c3": 7.363106020653888, + "c4": 18.14585208347352, + "c5": -18.29922013712259, + "c6": -21.829256232675178, + "c7": -47.36479423277731 }, - "vertexSeeds": { - "c1": 4.923641935624108, - "c2": 5.19265624091359, - "c3": 4.474079065381186, - "c4": 5.06050474378976, - "c5": 4.9255887915400915, - "c6": 4.821659705554303, - "c7": 5.034825101915879 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -122262,23 +122262,23 @@ "year": 1742, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -13.933285933884603, - "c2": -2.7988662847073655, - "c3": 13.093259436619388, - "c4": -13.90827933454957, - "c5": 22.510578097345448, - "c6": 23.935163169754208, - "c7": 14.60309998445835 + "points": { + "c1": 27.648095721984856, + "c2": -3.872515448715024, + "c3": -22.47052040335729, + "c4": -8.796805361718793, + "c5": -15.516959872706293, + "c6": -15.027009681280484, + "c7": -29.696893391068834 }, - "vertexSeeds": { - "c1": 5.155361765632946, - "c2": 4.381182926443565, - "c3": 5.0407945488748505, - "c4": 4.621276746745528, - "c5": 4.675069325464939, - "c6": 4.673905799847056, - "c7": 4.7135012200923825 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -122289,23 +122289,23 @@ "year": 1742, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 34.88841818915871, - "c2": -5.226314119019708, - "c3": 26.85989834315164, - "c4": 5.513303115258736, - "c5": 23.837154296831777, - "c6": -28.526770604816903, - "c7": 20.1330119330539 + "points": { + "c1": -37.51290053328961, + "c2": -34.95329801944368, + "c3": -26.299343777972677, + "c4": -13.59080867684364, + "c5": 26.60477890372384, + "c6": -23.26992311317258, + "c7": -38.43328686083815 }, - "vertexSeeds": { - "c1": 7.417514727647031, - "c2": 7.419340356135628, - "c3": 7.167986986525753, - "c4": 7.403655688523241, - "c5": 7.048905043779813, - "c6": 7.396183594395508, - "c7": 7.201091924185372 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -122316,23 +122316,23 @@ "year": 1742, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -10.797764006540945, - "c2": -22.861546849495138, - "c3": -23.526469021698198, - "c4": 21.19850828870895, - "c5": -17.121315187520395, - "c6": 14.247145472549711, - "c7": -17.526586349283853 + "points": { + "c1": 26.034146145250347, + "c2": 19.507208592464174, + "c3": -17.943168995753236, + "c4": 11.18391957873665, + "c5": 10.530018718207224, + "c6": -22.12900581128397, + "c7": -23.896934035187932 }, - "vertexSeeds": { - "c1": 3.017908429171618, - "c2": 3.0633362095825554, - "c3": 3.007532321400741, - "c4": 2.954467404838967, - "c5": 3.093047389472175, - "c6": 3.162781219172985, - "c7": 2.9701928066477357 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [58, 15, 49] }, @@ -122343,23 +122343,23 @@ "year": 1742, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 31.35822075798054, - "c2": 9.695466795343599, - "c3": 31.013661046575272, - "c4": -26.296857388020225, - "c5": -45.26490107400562, - "c6": -27.897993207238454, - "c7": -15.952529977629116 + "points": { + "c1": -14.321458751908146, + "c2": -27.61891677100348, + "c3": -39.34200431296957, + "c4": 19.22696570791758, + "c5": -21.382162983750266, + "c6": 30.396836214847504, + "c7": -20.03211715902059 }, - "vertexSeeds": { - "c1": 7.124864386510074, - "c2": 7.308935146680455, - "c3": 7.2692955437491245, - "c4": 7.485668502752981, - "c5": 7.3390821298490465, - "c6": 7.526231727767131, - "c7": 7.450009272890978 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407298, + "c4": 7.397133610725835, + "c5": 5.54785020804439, + "c6": 3.698566805362927, + "c7": 1.8492834026814635 }, "rgb": [58, 15, 49] }, @@ -122370,23 +122370,23 @@ "year": 1742, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -10.53257403514701, - "c2": -4.781155874696378, - "c3": 6.476946532091709, - "c4": 15.221211688720658, - "c5": 24.173348763988145, - "c6": 23.314197280914556, - "c7": 14.158463924118223 + "points": { + "c1": 20.397658638345092, + "c2": 12.86720219454699, + "c3": -10.539620500513571, + "c4": 15.783589472699674, + "c5": -16.08967938699116, + "c6": -18.596934992981225, + "c7": 24.019736939916037 }, - "vertexSeeds": { - "c1": 5.984574964959953, - "c2": 5.838676409087526, - "c3": 5.58722170694051, - "c4": 5.995949778991525, - "c5": 6.078421869785191, - "c6": 5.9826855677936175, - "c7": 5.606727407941119 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -122397,23 +122397,23 @@ "year": 1742, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -5.631526684067833, - "c2": -16.224331417604823, - "c3": -4.4443121378376915, - "c4": -0.7597536680208528, - "c5": -9.35967400628035, - "c6": -19.50841126389087, - "c7": 17.08704154329493 + "points": { + "c1": 13.510082025981738, + "c2": 23.35862004056903, + "c3": 17.569172715106582, + "c4": -1.383812620075016, + "c5": -2.2430163805641925, + "c6": 9.131917734076147, + "c7": -5.186488131664053 }, - "vertexSeeds": { - "c1": 5.12590107970147, - "c2": 4.986088033684007, - "c3": 5.033223693113484, - "c4": 4.814616304697397, - "c5": 4.769381896384896, - "c6": 4.633744955756041, - "c7": 4.764054755758204 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -122424,23 +122424,23 @@ "year": 1742, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 21.32158826845422, - "c2": -15.13748525448321, - "c3": 0.12497706249330776, - "c4": 1.7499603184488421, - "c5": -2.5768994901226847, - "c6": 9.883614507843376, - "c7": 1.8983484464251674 + "points": { + "c1": -16.25023284591419, + "c2": 32.884203490504035, + "c3": 14.928051104035255, + "c4": 8.690115804719866, + "c5": 16.357312528539843, + "c6": -27.516028614306087, + "c7": -1.1812192838057385 }, - "vertexSeeds": { - "c1": 5.8926226298666355, - "c2": 5.708771058119749, - "c3": 5.522970033452907, - "c4": 5.563261922444743, - "c5": 5.519390491890274, - "c6": 6.290950367897188, - "c7": 5.9096330234706915 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072125, + "c3": 7.512713823393429, + "c4": 6.010171058714746, + "c5": 4.507628294036063, + "c6": 3.005085529357366, + "c7": 1.502542764678683 }, "rgb": [222, 0, 59] }, @@ -122451,23 +122451,23 @@ "year": 1742, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 16.154726583329488, - "c2": 2.38845937972906, - "c3": 12.00577195257026, - "c4": -6.294858681560388, - "c5": 20.465660663869247, - "c6": 23.03240202437087, - "c7": 4.287819418840783 + "points": { + "c1": 22.0967169470313, + "c2": 22.82810456986697, + "c3": 24.946517668474367, + "c4": -12.22882283434893, + "c5": 13.986723163658038, + "c6": 8.305617571655286, + "c7": 18.565517787500585 }, - "vertexSeeds": { - "c1": 4.279223757947995, - "c2": 4.555385415562148, - "c3": 5.009734156813158, - "c4": 5.072253758814167, - "c5": 4.93147035481826, - "c6": 5.082840807209534, - "c7": 4.522117821789139 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -122478,23 +122478,23 @@ "year": 1742, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -0.7654203583211654, - "c2": 21.325344157229885, - "c3": -23.19810564504192, - "c4": 10.820607350974399, - "c5": 7.161566571520137, - "c6": 7.234460275970225, - "c7": 13.553392018346003 + "points": { + "c1": 5.58403103647402, + "c2": -12.481179774943081, + "c3": 13.280387075568875, + "c4": 13.517086223781902, + "c5": -8.199409757539236, + "c6": -3.7146984508591494, + "c7": -5.419513700012093 }, - "vertexSeeds": { - "c1": 2.6090875477429383, - "c2": 2.5863788425804497, - "c3": 2.6793223456111033, - "c4": 2.785889949469637, - "c5": 2.742896990086488, - "c6": 2.6798630582104668, - "c7": 2.7877734086451587 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [222, 0, 59] }, @@ -122505,23 +122505,23 @@ "year": 1742, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -33.98625291095406, - "c2": -12.177140640122534, - "c3": 3.456678508516042, - "c4": -10.799841320946921, - "c5": 13.940493433024422, - "c6": -37.654775741857506, - "c7": -14.219679165985895 + "points": { + "c1": 25.024355324366176, + "c2": 16.801151880357537, + "c3": -4.780598677709428, + "c4": 14.139291680303579, + "c5": -18.347501776698486, + "c6": -33.8212204496006, + "c7": -10.91505491585503 }, - "vertexSeeds": { - "c1": 4.200639432096908, - "c2": 4.155679499773077, - "c3": 4.3872482229420955, - "c4": 4.01996458775708, - "c5": 4.240669980255994, - "c6": 4.387346323149058, - "c7": 4.069321321279699 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170593, + "c3": 5.270457697642164, + "c4": 4.216366158113729, + "c5": 3.1622746185853, + "c6": 2.1081830790568645, + "c7": 1.0540915395284354 }, "rgb": [58, 15, 49] }, @@ -122532,23 +122532,23 @@ "year": 1742, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -35.19036037685282, - "c2": 1.177082494212378, - "c3": -35.42880105579988, - "c4": 20.165035837076317, - "c5": 9.871734608418059, - "c6": -26.18612970128291, - "c7": 34.689830997791276 + "points": { + "c1": 13.79989170586839, + "c2": -7.744410073790547, + "c3": -31.292342846307115, + "c4": 4.227953754243693, + "c5": 26.47317357168272, + "c6": 8.3857862157829, + "c7": 16.986273202465128 }, - "vertexSeeds": { - "c1": 4.128000372697518, - "c2": 4.160341521406732, - "c3": 4.196137902034363, - "c4": 4.112205133399617, - "c5": 4.196107856141013, - "c6": 4.60272703919843, - "c7": 4.563254945901036 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044385, + "c4": 4.438280166435506, + "c5": 3.328710124826628, + "c6": 2.2191400832177504, + "c7": 1.1095700416088783 }, "rgb": [238, 201, 159] }, @@ -122559,23 +122559,23 @@ "year": 1742, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -4.909779611115276, - "c2": -9.181524362178681, - "c3": -17.673009873986103, - "c4": 13.87099751766424, - "c5": 9.022900432073254, - "c6": 6.4702408987357956, - "c7": 0.7507269687899836 + "points": { + "c1": 21.78718580336299, + "c2": 10.44106292761921, + "c3": -4.772915017360116, + "c4": 4.897593629940644, + "c5": -15.01478084494231, + "c6": -20.09297715843542, + "c7": -11.222198501315544 }, - "vertexSeeds": { - "c1": 2.522528330755584, - "c2": 2.83591490380479, - "c3": 2.7164520521981625, - "c4": 2.721535175946199, - "c5": 2.5569565961605343, - "c6": 2.4841547863207456, - "c7": 2.727401567384856 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952846, + "c3": 3.421174294960702, + "c4": 2.736939435968564, + "c5": 2.05270457697642, + "c6": 1.368469717984282, + "c7": 0.6842348589921441 }, "rgb": [58, 15, 49] }, @@ -122586,23 +122586,23 @@ "year": 1742, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 6.433153345761895, - "c2": 8.139347102354407, - "c3": 24.987173214234822, - "c4": -6.645516682974538, - "c5": 1.3894327955965622, - "c6": -28.926958222423455, - "c7": -4.391087467699091 + "points": { + "c1": -4.798141410868297, + "c2": -31.241210377824952, + "c3": 4.205851264436454, + "c4": 22.899811036284525, + "c5": 27.068433724011015, + "c6": -33.86652665928667, + "c7": 29.450858366184747 }, - "vertexSeeds": { - "c1": 5.2213983185441055, - "c2": 4.908151055195191, - "c3": 4.230645669874648, - "c4": 5.129421588376234, - "c5": 4.326835165403942, - "c6": 4.786965377032277, - "c7": 5.1596643822881685 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -122613,23 +122613,23 @@ "year": 1742, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 4.408835439023928, - "c2": -0.7833292644983239, - "c3": -22.346157863536128, - "c4": 11.728420651896304, - "c5": -14.782002897276465, - "c6": 5.602086316578607, - "c7": 18.506356741626615 + "points": { + "c1": 0.5835600780011703, + "c2": -7.800896711811575, + "c3": -21.059546955207935, + "c4": -20.430124183124736, + "c5": -20.168633090773845, + "c6": 14.80439859429961, + "c7": 10.235491135862919 }, - "vertexSeeds": { - "c1": 12.603774420205816, - "c2": 13.342897969968202, - "c3": 13.350933696660102, - "c4": 13.4195523054631, - "c5": 12.599181086105363, - "c6": 13.387799165802745, - "c7": 12.532970526239838 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155328, + "c3": 16.181229773462803, + "c4": 12.944983818770234, + "c5": 9.708737864077664, + "c6": 6.472491909385093, + "c7": 3.2362459546925706 }, "rgb": [238, 201, 159] }, @@ -122640,23 +122640,23 @@ "year": 1742, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 22.96175831792501, - "c2": 35.48381349821404, - "c3": -41.461932254868586, - "c4": 12.24059331092949, - "c5": 13.190733340038875, - "c6": -11.556117319374323, - "c7": -8.70829051614151 + "points": { + "c1": -11.082501320997828, + "c2": -2.6848233981120018, + "c3": -1.54782591334385, + "c4": 5.77707262135489, + "c5": 6.85645889487926, + "c6": 18.340649533460756, + "c7": -25.609894598644896 }, - "vertexSeeds": { - "c1": 6.953552909905717, - "c2": 7.1342481962330915, - "c3": 6.711742265394584, - "c4": 8.493764167463972, - "c5": 8.218597995215504, - "c6": 7.8870790097132355, - "c7": 6.322696827907665 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748034, + "c4": 8.136846971798429, + "c5": 6.102635228848821, + "c6": 4.068423485899213, + "c7": 2.034211742949606 }, "rgb": [77, 76, 132] }, @@ -122667,23 +122667,23 @@ "year": 1742, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -4.210928007232546, - "c2": -3.7868266983405405, - "c3": -14.241980273837106, - "c4": -13.428912884168732, - "c5": -7.810481855931458, - "c6": 1.378938181176789, - "c7": -5.146896112731312 + "points": { + "c1": -10.117070351772957, + "c2": -4.762622727962274, + "c3": -17.78582947322721, + "c4": 15.569197597010572, + "c5": -17.074905391353408, + "c6": 18.01280784253119, + "c7": 5.4203677357163365 }, - "vertexSeeds": { - "c1": 5.9660804200094875, - "c2": 6.3675908933055725, - "c3": 5.513205805818591, - "c4": 5.763167253407108, - "c5": 6.128545186279312, - "c6": 5.945416133089456, - "c7": 5.549745928128672 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -122694,23 +122694,23 @@ "year": 1742, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -14.151079037286284, - "c2": 0.8052285244360249, - "c3": -16.080087723671944, - "c4": 17.05578888837907, - "c5": -19.157614503931306, - "c6": 26.399189016305584, - "c7": -28.649239476882983 + "points": { + "c1": 26.691985752901232, + "c2": -13.134958582889269, + "c3": -7.187219265925407, + "c4": -34.611840095718264, + "c5": 6.039962257099198, + "c6": -9.785352063810386, + "c7": 23.43165165704275 }, - "vertexSeeds": { - "c1": 5.248884322545254, - "c2": 5.260948318564725, - "c3": 5.140257485238459, - "c4": 5.459542008670996, - "c5": 5.2034579370126, - "c6": 5.488376495652203, - "c7": 5.343739749580598 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.9611650485436956, + "c3": 6.634304207119732, + "c4": 5.30744336569579, + "c5": 3.9805825242718478, + "c6": 2.6537216828479058, + "c7": 1.3268608414239424 }, "rgb": [86, 146, 138] }, @@ -122721,23 +122721,23 @@ "year": 1742, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 1.9059807496430992, - "c2": 23.075608671987617, - "c3": 10.719626883677257, - "c4": 3.9166851662795636, - "c5": -37.433613496945895, - "c6": 42.11451530610912, - "c7": -15.770317024790973 + "points": { + "c1": -8.31038971023164, + "c2": 10.110014656483486, + "c3": -40.06889029787957, + "c4": -26.2334903109269, + "c5": -34.98504718885526, + "c6": -7.346175295634374, + "c7": 26.37940334350879 }, - "vertexSeeds": { - "c1": 7.033250116462438, - "c2": 6.311021150439171, - "c3": 6.1700298982576305, - "c4": 6.268355030910575, - "c5": 6.4678767819063605, - "c6": 6.930639038116953, - "c7": 6.321540279954474 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [77, 76, 132] }, @@ -122748,23 +122748,23 @@ "year": 1742, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -7.1756561956974, - "c2": 19.23382271639484, - "c3": -17.879634956540137, - "c4": 8.06090127296008, - "c5": 28.677339593641953, - "c6": -20.218727236021138, - "c7": -13.505357615397646 + "points": { + "c1": -8.66770099908998, + "c2": 24.025996329869763, + "c3": -27.16313573965317, + "c4": 9.23261391917525, + "c5": 31.675269903028294, + "c6": 29.600083579932416, + "c7": -2.3175293212605794 }, - "vertexSeeds": { - "c1": 2.874097104031151, - "c2": 2.856146913828673, - "c3": 2.835017320105272, - "c4": 2.871614475706508, - "c5": 2.922821049193291, - "c6": 3.132231793434837, - "c7": 2.9225337016238577 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.5214979195561735, + "c3": 3.7679149329634787, + "c4": 3.014331946370785, + "c5": 2.260748959778091, + "c6": 1.5071659731853881, + "c7": 0.7535829865926941 }, "rgb": [77, 76, 132] }, @@ -122775,23 +122775,23 @@ "year": 1742, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 22.114178801804925, - "c2": 14.242572784552046, - "c3": 31.205304551467556, - "c4": -30.65045747736187, - "c5": 8.65056015446784, - "c6": -33.06649921793245, - "c7": 23.48882761525781 + "points": { + "c1": 5.94102358878505, + "c2": 13.686505512934936, + "c3": -23.61273923469585, + "c4": 26.801557995091535, + "c5": -14.523117924341634, + "c6": -6.770339821596437, + "c7": -36.26811344591917 }, - "vertexSeeds": { - "c1": 7.716251891089805, - "c2": 7.727579625120892, - "c3": 7.596442592064168, - "c4": 7.510897816958218, - "c5": 7.617778638666696, - "c6": 7.552390208627514, - "c7": 7.537591699161122 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088745, + "c3": 9.246417013407312, + "c4": 7.39713361072583, + "c5": 5.547850208044396, + "c6": 3.698566805362915, + "c7": 1.849283402681482 }, "rgb": [86, 146, 138] }, @@ -122802,23 +122802,23 @@ "year": 1742, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 22.264686232695162, - "c2": -24.074300838774864, - "c3": -27.057802960582485, - "c4": 13.577954129746765, - "c5": -22.10151789362913, - "c6": -1.1529763558546051, - "c7": -21.477646383528768 + "points": { + "c1": 42.866234310093326, + "c2": 14.143272784977405, + "c3": -44.39342149837805, + "c4": -16.77235123855391, + "c5": -10.472264231543548, + "c6": -7.574767779869809, + "c7": 11.245970341809745 }, - "vertexSeeds": { - "c1": 7.265926570145286, - "c2": 7.965085163985336, - "c3": 7.534687941806197, - "c4": 8.030330224168539, - "c5": 7.682912033982035, - "c6": 6.441001186255005, - "c7": 7.64410822321368 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893204, + "c3": 9.708737864077671, + "c4": 7.766990291262138, + "c5": 5.8252427184465985, + "c6": 3.8834951456310662, + "c7": 1.9417475728155331 }, "rgb": [58, 15, 49] }, @@ -122829,23 +122829,23 @@ "year": 1742, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 14.40106651963805, - "c2": 3.912856469853466, - "c3": -25.156206549099757, - "c4": 25.989150365622855, - "c5": -29.20475304987515, - "c6": -5.019473140468513, - "c7": 28.300064315935863 + "points": { + "c1": 35.81776064125267, + "c2": 13.90439642796003, + "c3": 37.5493898229226, + "c4": 32.88961144931833, + "c5": 14.821502954122636, + "c6": -24.4903098747383, + "c7": -41.426614159306126 }, - "vertexSeeds": { - "c1": 4.285413688616014, - "c2": 4.239464179581958, - "c3": 4.497990972628242, - "c4": 4.525664072004686, - "c5": 4.576681145861051, - "c6": 4.412834974747014, - "c7": 3.90925020300291 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613036, + "c3": 5.524734165510865, + "c4": 4.419787332408692, + "c5": 3.314840499306518, + "c6": 2.2098936662043474, + "c7": 1.1049468331021737 }, "rgb": [222, 0, 59] }, @@ -122856,23 +122856,23 @@ "year": 1742, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 23.22012787877287, - "c2": -23.01810849385965, - "c3": -10.845081156392709, - "c4": -12.644211574721233, - "c5": 10.940510931811062, - "c6": 32.757851181842454, - "c7": 16.668634068074574 + "points": { + "c1": -3.0721486123379336, + "c2": -29.771058209178776, + "c3": 31.592258710331606, + "c4": 33.18408049897326, + "c5": -25.31137925108466, + "c6": 0.7514876755217159, + "c7": -17.51880513357611 }, - "vertexSeeds": { - "c1": 9.999020004540327, - "c2": 9.543224113926025, - "c3": 10.009333857511505, - "c4": 8.802540085424171, - "c5": 10.036562977309316, - "c6": 9.068940484508481, - "c7": 9.25090019006593 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156717, + "c3": 12.159038372630613, + "c4": 9.727230698104481, + "c5": 7.295423023578365, + "c6": 4.863615349052248, + "c7": 2.4318076745261177 }, "rgb": [238, 201, 159] }, @@ -122883,23 +122883,23 @@ "year": 1742, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": 6.058637960697926, - "c2": -4.140354246304936, - "c3": 8.761490959555694, - "c4": 11.206747194237675, - "c5": -3.371790619645859, - "c6": 5.90792675967338, - "c7": 1.3665485200424605 + "points": { + "c1": 5.529281846321027, + "c2": 5.53991095527557, + "c3": 9.407623622251275, + "c4": -18.708357114517025, + "c5": -3.214040325973908, + "c6": 15.55922343288671, + "c7": -20.031034440171396 }, - "vertexSeeds": { - "c1": 5.512205930257676, - "c2": 5.981717904398835, - "c3": 6.096125111873858, - "c4": 6.03173292285856, - "c5": 6.146232486984841, - "c6": 5.720348376270421, - "c7": 5.866868392205829 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -122910,23 +122910,23 @@ "year": 1742, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 35.15861098731034, - "c2": -5.88552166079457, - "c3": 26.515483577245632, - "c4": -25.983272733309484, - "c5": 25.29721646887348, - "c6": 8.28824264192773, - "c7": 34.138595934514456 + "points": { + "c1": 18.58179037597968, + "c2": -15.354768626146665, + "c3": -18.531655898347836, + "c4": 31.57545341187506, + "c5": -24.735115940843897, + "c6": 14.87371193384881, + "c7": 25.05637019927981 }, - "vertexSeeds": { - "c1": 7.462283141776727, - "c2": 6.803439320664647, - "c3": 6.732827947587903, - "c4": 7.36340669580635, - "c5": 7.010662572725514, - "c6": 6.631787432773164, - "c7": 6.479208270288892 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407308, + "c4": 7.397133610725844, + "c5": 5.547850208044381, + "c6": 3.6985668053629177, + "c7": 1.8492834026814635 }, "rgb": [238, 201, 159] }, @@ -122937,23 +122937,23 @@ "year": 1742, "resistanceReported": false, "duration": 7516800, - "curveSeeds": { - "c1": -11.848596702620831, - "c2": 3.5909548847418336, - "c3": -16.34912161946099, - "c4": 9.710006274349869, - "c5": 3.254857134409047, - "c6": -17.483486900223134, - "c7": -12.484572169639115 + "points": { + "c1": 19.80506372033782, + "c2": 8.450911355717288, + "c3": 20.02960335454329, + "c4": -17.8121350354377, + "c5": 2.7490880503605766, + "c6": 18.377516626258334, + "c7": 12.935861318034625 }, - "vertexSeeds": { - "c1": 4.671769450978565, - "c2": 4.694019067100464, - "c3": 5.084326564203665, - "c4": 4.95054188786804, - "c5": 4.7394893383385694, - "c6": 4.588223223648133, - "c7": 5.113954959498656 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -122964,23 +122964,23 @@ "year": 1742, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 1.9303793648936178, - "c2": 20.477764914820817, - "c3": 11.70284617132922, - "c4": 2.5909697962777827, - "c5": -37.37816338078202, - "c6": -46.378558207213814, - "c7": -31.335809404922077 + "points": { + "c1": -21.61956735704011, + "c2": 9.430846885754129, + "c3": 0.020500120628248908, + "c4": -42.558646523584535, + "c5": -33.85801603875434, + "c6": 5.823326811969324, + "c7": -42.155458274030465 }, - "vertexSeeds": { - "c1": 5.634604667692717, - "c2": 4.884269652231098, - "c3": 5.401923316033479, - "c4": 5.482765516008541, - "c5": 5.529426547723133, - "c6": 5.502890604488698, - "c7": 5.2288760179923255 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872392, + "c6": 2.699953767914937, + "c7": 1.3499768839574684 }, "rgb": [58, 15, 49] }, @@ -122991,23 +122991,23 @@ "year": 1742, "resistanceReported": false, "duration": 6048000, - "curveSeeds": { - "c1": -10.317298826045251, - "c2": 15.571348636719549, - "c3": -10.357803964557792, - "c4": 2.342026489507365, - "c5": -0.3158763071054125, - "c6": 0.12617434455362542, - "c7": 8.416618896012807 + "points": { + "c1": -15.55935563900696, + "c2": 17.87281472504735, + "c3": 4.782439223149936, + "c4": 18.016179393189695, + "c5": 14.59335962720673, + "c6": 15.097622588057114, + "c7": -8.41439023472926 }, - "vertexSeeds": { - "c1": 4.296357286324085, - "c2": 4.351897076373232, - "c3": 4.235810275090386, - "c4": 4.322763977223259, - "c5": 4.4891489549108545, - "c6": 4.421769637214489, - "c7": 4.5124459699985815 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411925, + "c3": 5.409153952843279, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.163661581137305, + "c7": 1.081830790568658 }, "rgb": [86, 146, 138] }, @@ -123018,23 +123018,23 @@ "year": 1743, "resistanceReported": false, "duration": 39052800, - "curveSeeds": { - "c1": 13.85881201442568, - "c2": -15.945682539725048, - "c3": 0.8810496470202338, - "c4": 46.36213475480392, - "c5": -20.247592037393353, - "c6": 37.31644197911616, - "c7": 34.44991577511328 + "points": { + "c1": 42.705475028443615, + "c2": 43.64939040009662, + "c3": -44.04242402967003, + "c4": -50.67835100809785, + "c5": 32.938607919636695, + "c6": 52.17466791572892, + "c7": 33.38387583559914 }, - "vertexSeeds": { - "c1": 7.626666219168918, - "c2": 7.403390648005863, - "c3": 7.173269807299637, - "c4": 7.49007689932798, - "c5": 7.507309576675014, - "c6": 7.62962567362906, - "c7": 7.375811812355429 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048539, + "c3": 9.223300970873778, + "c4": 7.378640776699041, + "c5": 5.533980582524281, + "c6": 3.6893203883495205, + "c7": 1.8446601941747602 }, "rgb": [58, 15, 49] }, @@ -123045,23 +123045,23 @@ "year": 1742, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": -15.368135789995527, - "c2": -27.332338806506378, - "c3": -22.951021396204492, - "c4": 22.703645018358472, - "c5": -16.10019797803165, - "c6": -20.403868641504623, - "c7": -20.819204708004794 + "points": { + "c1": -48.210246046909994, + "c2": -36.359585007036856, + "c3": 13.094662252974445, + "c4": -25.890190710164084, + "c5": 32.02953313471802, + "c6": 41.376425179805125, + "c7": -28.87550063327626 }, - "vertexSeeds": { - "c1": 8.732895678574152, - "c2": 7.293216440617804, - "c3": 7.691508275917748, - "c4": 8.914662330727399, - "c5": 8.804487823747094, - "c6": 8.896785832573759, - "c7": 7.059018488783563 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662966, + "c3": 10.725843735552468, + "c4": 8.580674988441979, + "c5": 6.435506241331483, + "c6": 4.290337494220986, + "c7": 2.145168747110497 }, "rgb": [58, 15, 49] }, @@ -123072,23 +123072,23 @@ "year": 1742, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -35.517464247821955, - "c2": -3.638305572487326, - "c3": -43.08414653051859, - "c4": -38.27387046563317, - "c5": 5.498781644935349, - "c6": -42.993338882171166, - "c7": 40.1357715977989 + "points": { + "c1": 8.676507391394622, + "c2": 22.065340211530064, + "c3": -31.914476680781917, + "c4": 37.212760416270875, + "c5": -10.026245243822999, + "c6": 38.63662829755771, + "c7": -16.826300187636544 }, - "vertexSeeds": { - "c1": 6.295336787564767, - "c2": 6.295336787564767, - "c3": 6.295336787564767, - "c4": 6.295336787564767, - "c5": 6.295336787564767, - "c6": 6.295336787564767, - "c7": 6.295336787564767 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -123099,23 +123099,23 @@ "year": 1742, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -41.788636219377, - "c2": -8.83011305557558, - "c3": 23.55291051007397, - "c4": 13.364995634213813, - "c5": 23.09649130642579, - "c6": -23.224789999577624, - "c7": -44.261467746971114 + "points": { + "c1": -40.25170580298223, + "c2": -32.20553953916638, + "c3": 7.493725419435741, + "c4": -11.981508082459264, + "c5": -5.390971614409331, + "c6": 36.29968125024982, + "c7": 7.585616446334718 }, - "vertexSeeds": { - "c1": 6.829696652253778, - "c2": 7.269761276851493, - "c3": 6.850241305512742, - "c4": 6.8935351111861625, - "c5": 7.39893744623314, - "c6": 7.359152373396982, - "c7": 7.297382921280111 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -123126,23 +123126,23 @@ "year": 1742, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": 1.4740399460979603, - "c2": 11.778191074616455, - "c3": 15.078071653056934, - "c4": -3.1848318758342042, - "c5": -4.998109384013706, - "c6": -8.93497037429341, - "c7": -6.626059802656426 + "points": { + "c1": 14.898408137795641, + "c2": 4.343543076200451, + "c3": -17.175087203540134, + "c4": -10.06151974425426, + "c5": -4.536509558485003, + "c6": -7.874413554099911, + "c7": 9.242838701542588 }, - "vertexSeeds": { - "c1": 2.984683980833611, - "c2": 3.247968670730514, - "c3": 3.062685906078275, - "c4": 3.280226578619096, - "c5": 2.9583920599242592, - "c6": 3.0892833979754974, - "c7": 3.016212720347604 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [222, 0, 59] }, @@ -123153,23 +123153,23 @@ "year": 1742, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -30.18430797115772, - "c2": 4.389336145979485, - "c3": -21.520795642350762, - "c4": 27.882594654197547, - "c5": 24.984092224051622, - "c6": -37.87438241610549, - "c7": -1.4801811122864947 + "points": { + "c1": 33.5218480474328, + "c2": 20.768013621617847, + "c3": -20.816866610686137, + "c4": -10.233845987144683, + "c5": 27.122117436485837, + "c6": -13.784736094989444, + "c7": -42.28352209047188 }, - "vertexSeeds": { - "c1": 4.479617424923634, - "c2": 4.472560027787486, - "c3": 4.4725856413943115, - "c4": 4.48932790319766, - "c5": 4.499342770481111, - "c6": 4.478849358171064, - "c7": 4.503130476127764 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371737, + "c3": 5.386037910309709, + "c4": 4.308830328247789, + "c5": 3.2316227461858684, + "c6": 2.154415164123948, + "c7": 1.0772075820619205 }, "rgb": [58, 15, 49] }, @@ -123180,23 +123180,23 @@ "year": 1742, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -34.37088385416905, - "c2": -13.399476179088069, - "c3": -25.7939111059273, - "c4": 18.450892337079416, - "c5": 16.31247795239876, - "c6": 30.918245060090705, - "c7": -38.367413843799014 + "points": { + "c1": 15.66008090443988, + "c2": 16.74491736723644, + "c3": -38.85954345931521, + "c4": -2.784434973423025, + "c5": 35.17180512129172, + "c6": -39.906872956604424, + "c7": 28.41971568435934 }, - "vertexSeeds": { - "c1": 5.368201668987357, - "c2": 5.30299512674874, - "c3": 5.5839249208019766, - "c4": 5.783837421288191, - "c5": 5.561596156421236, - "c6": 5.585831136843714, - "c7": 5.535017950107613 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187245, + "c3": 7.004160887656026, + "c4": 5.603328710124824, + "c5": 4.2024965325936225, + "c6": 2.80166435506242, + "c7": 1.400832177531202 }, "rgb": [77, 76, 132] }, @@ -123207,23 +123207,23 @@ "year": 1742, "resistanceReported": true, "duration": 31190400, - "curveSeeds": { - "c1": 31.35831104463478, - "c2": -7.791739723213709, - "c3": -28.72617613997357, - "c4": -5.037065865726987, - "c5": 7.3483847481797895, - "c6": -13.488082142231345, - "c7": 39.400863934506596 + "points": { + "c1": -15.92337085915834, + "c2": 8.441773117853373, + "c3": 4.576962558560197, + "c4": -5.933847685381501, + "c5": -33.791313074758, + "c6": 36.87641419323635, + "c7": 44.245752122047996 }, - "vertexSeeds": { - "c1": 7.517420433490673, - "c2": 7.897955243427569, - "c3": 7.610986115648508, - "c4": 7.156059339926996, - "c5": 7.49310158696294, - "c6": 7.629105543609272, - "c7": 7.873624791705633 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.37309292649098, + "c3": 9.477577438742477, + "c4": 7.582061950993992, + "c5": 5.68654646324549, + "c6": 3.7910309754969873, + "c7": 1.8955154877484848 }, "rgb": [58, 15, 49] }, @@ -123234,23 +123234,23 @@ "year": 1742, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -1.325421749609351, - "c2": -7.362260054165162, - "c3": -14.377203058217262, - "c4": 29.74201572304029, - "c5": 28.489992500116614, - "c6": -2.9209982836443196, - "c7": 4.788001868412287 + "points": { + "c1": -18.22321075610718, + "c2": 4.389806382007507, + "c3": 26.544414698381345, + "c4": -9.57565414466146, + "c5": -17.080547852372412, + "c6": 22.205980953311524, + "c7": 26.271651410021363 }, - "vertexSeeds": { - "c1": 2.9329634722963904, - "c2": 2.803005531320049, - "c3": 2.71721057975312, - "c4": 2.9500881383794524, - "c5": 2.95035551612449, - "c6": 2.845995865094318, - "c7": 2.7905852569122835 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355065, + "c3": 3.6523347202958822, + "c4": 2.921867776236707, + "c5": 2.1914008321775325, + "c6": 1.4609338881183576, + "c7": 0.7304669440591748 }, "rgb": [222, 0, 59] }, @@ -123261,23 +123261,23 @@ "year": 1743, "resistanceReported": true, "duration": 54432000, - "curveSeeds": { - "c1": 29.43793214397739, - "c2": -26.29587317768003, - "c3": -17.165825179323576, - "c4": -28.988040951142608, - "c5": 44.215691486050176, - "c6": -39.64566552847009, - "c7": 5.42585625138085 + "points": { + "c1": 51.24018774935658, + "c2": -47.25009892677886, + "c3": 13.993955702783339, + "c4": 30.122600713928875, + "c5": 50.625728076022995, + "c6": 45.47151747180122, + "c7": -27.1136500904477 }, - "vertexSeeds": { - "c1": 0.3691709844559586, - "c2": 0.3691709844559586, - "c3": 0.3691709844559586, - "c4": 0.3691709844559586, - "c5": 0.3691709844559586, - "c6": 0.3691709844559586, - "c7": 0.3691709844559586 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -123288,23 +123288,23 @@ "year": 1742, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -19.911065511785765, - "c2": -0.767304004484707, - "c3": 1.6351840548555927, - "c4": -12.377261808417721, - "c5": 6.514250713573809, - "c6": 22.946606270409568, - "c7": -33.40625260273931 + "points": { + "c1": -10.059767182035522, + "c2": 7.434134660898074, + "c3": 4.6194070580753035, + "c4": -35.464630432859124, + "c5": 39.32868471737885, + "c6": -5.433049726632511, + "c7": -4.9152074882286385 }, - "vertexSeeds": { - "c1": 4.8505771938685776, - "c2": 4.7988739267930915, - "c3": 4.843415814981837, - "c4": 4.544149680574469, - "c5": 4.81175002047883, - "c6": 4.31158975421895, - "c7": 5.07128450855153 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -123315,23 +123315,23 @@ "year": 1742, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -9.631317406560854, - "c2": -33.60548367685568, - "c3": 6.455971466723582, - "c4": 4.725361405721188, - "c5": 12.782933183209451, - "c6": 32.64197462244276, - "c7": -23.664697961570578 + "points": { + "c1": 44.22242929782735, + "c2": 15.142933956985615, + "c3": 31.966432117085745, + "c4": -43.456786004318516, + "c5": 34.24490565280337, + "c6": -37.992979409113225, + "c7": 2.7904544585515225 }, - "vertexSeeds": { - "c1": 3.542934434281544, - "c2": 3.56213230423073, - "c3": 3.8748518149585696, - "c4": 3.407501698829112, - "c5": 3.4158142744817868, - "c6": 3.6579724031093863, - "c7": 3.4970002872444645 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.6310679611650505, + "c3": 4.692556634304206, + "c4": 3.7540453074433673, + "c5": 2.815533980582522, + "c6": 1.8770226537216836, + "c7": 0.9385113268608384 }, "rgb": [238, 201, 159] }, @@ -123342,23 +123342,23 @@ "year": 1742, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 6.38827879303858, - "c2": 3.716556619633124, - "c3": 16.4574280621353, - "c4": -25.306946382641605, - "c5": 13.931467994472172, - "c6": 10.117666760615784, - "c7": -26.091770353385236 + "points": { + "c1": 28.274451754687988, + "c2": 31.121317157037183, + "c3": -13.097254553415823, + "c4": 1.1863625005907892, + "c5": 29.030186622590897, + "c6": 1.0214347844098626, + "c7": -16.49938358624831 }, - "vertexSeeds": { - "c1": 5.16643045442529, - "c2": 5.248634625890524, - "c3": 5.329513912639642, - "c4": 5.199276346306626, - "c5": 5.269746061232424, - "c6": 4.923334271813772, - "c7": 5.3415516848493905 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181686, + "c3": 6.426259824318086, + "c4": 5.141007859454464, + "c5": 3.855755894590843, + "c6": 2.5705039297272214, + "c7": 1.2852519648636216 }, "rgb": [58, 15, 49] }, @@ -123369,23 +123369,23 @@ "year": 1742, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -29.824827500087018, - "c2": -18.21052579024038, - "c3": -20.852943234888592, - "c4": -3.541371217129928, - "c5": 21.566846478288845, - "c6": -13.163404403959504, - "c7": -17.655931186706745 + "points": { + "c1": 12.115755652396714, + "c2": 15.972519155596189, + "c3": 18.693746780266196, + "c4": -23.54095676075317, + "c5": -23.77047848879475, + "c6": 26.269625598612357, + "c7": -36.19855765600019 }, - "vertexSeeds": { - "c1": 9.412341737106287, - "c2": 10.514335907682176, - "c3": 10.727801246958204, - "c4": 10.765615364982805, - "c5": 10.29821265541852, - "c6": 10.514585205754894, - "c7": 9.325029590849871 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725373, + "c3": 13.06056403143782, + "c4": 10.448451225150249, + "c5": 7.836338418862698, + "c6": 5.224225612575135, + "c7": 2.6121128062875734 }, "rgb": [58, 15, 49] }, @@ -123396,23 +123396,23 @@ "year": 1742, "resistanceReported": true, "duration": 24796800, - "curveSeeds": { - "c1": -8.613703067856392, - "c2": -8.920862466396411, - "c3": -27.664629475261066, - "c4": -9.276286375932393, - "c5": 33.12344890165238, - "c6": -32.16801818195174, - "c7": 32.10053886941425 + "points": { + "c1": -37.49102154014335, + "c2": 4.904108693555578, + "c3": 6.4018665296392925, + "c4": 30.329379883212454, + "c5": 14.963367446781952, + "c6": 14.822584269620641, + "c7": -37.755803901061746 }, - "vertexSeeds": { - "c1": 7.186335522613631, - "c2": 8.021744790778742, - "c3": 8.29279024859791, - "c4": 8.115491655655777, - "c5": 7.395387967458363, - "c6": 8.045201314502696, - "c7": 7.836072077824533 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375874, + "c3": 9.986130374479888, + "c4": 7.988904299583916, + "c5": 5.991678224687931, + "c6": 3.994452149791958, + "c7": 1.9972260748959851 }, "rgb": [58, 15, 49] }, @@ -123423,23 +123423,23 @@ "year": 1742, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -35.88812232201434, - "c2": -24.12733995266562, - "c3": -22.936728451254563, - "c4": 35.331504299641274, - "c5": -38.9432076503734, - "c6": 20.03713299517237, - "c7": 35.77591965375249 + "points": { + "c1": 44.87541206837306, + "c2": -17.189479272467096, + "c3": -41.82791654488789, + "c4": -33.7419162494798, + "c5": -42.829038250812935, + "c6": -34.44557612984809, + "c7": 31.71881546863549 }, - "vertexSeeds": { - "c1": 3.5212817688490956, - "c2": 3.49877589897391, - "c3": 3.5684647731513492, - "c4": 3.5202634741995644, - "c5": 3.522050933030112, - "c6": 3.490246110061071, - "c7": 3.5005608159016823 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441044, + "c3": 4.276467868700893, + "c4": 3.4211742949607076, + "c5": 2.565880721220522, + "c6": 1.7105871474803709, + "c7": 0.8552935737401854 }, "rgb": [58, 15, 49] }, @@ -123450,23 +123450,23 @@ "year": 1742, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 42.830006863565046, - "c2": 7.958721364376146, - "c3": 25.060699806875505, - "c4": -18.549173791042264, - "c5": -41.732266762269, - "c6": 27.179677375949424, - "c7": -21.935892597245402 + "points": { + "c1": 15.590562021191865, + "c2": -37.80667846718069, + "c3": 43.195571276722205, + "c4": -1.1832670341954525, + "c5": -5.230825533419122, + "c6": -3.548247922929953, + "c7": 27.78511010354711 }, - "vertexSeeds": { - "c1": 5.472496194650275, - "c2": 5.516577218477594, - "c3": 5.6197915376512455, - "c4": 5.373864784445289, - "c5": 5.289669078994842, - "c6": 5.665031576433873, - "c7": 5.425397643891701 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825236, + "c3": 6.796116504854378, + "c4": 5.436893203883498, + "c5": 4.077669902912618, + "c6": 2.718446601941738, + "c7": 1.3592233009708803 }, "rgb": [222, 0, 59] }, @@ -123477,23 +123477,23 @@ "year": 1742, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -23.132785024163375, - "c2": -27.224269439224333, - "c3": -11.755940810958222, - "c4": -31.04565077374711, - "c5": 7.643009159972699, - "c6": -4.2424035990972015, - "c7": -4.184303148690127 + "points": { + "c1": -8.844096774102212, + "c2": -34.868734168275566, + "c3": 33.720738212389335, + "c4": 9.843776819981493, + "c5": 30.618160592001985, + "c6": 6.9850547732529975, + "c7": -5.9990377966562605 }, - "vertexSeeds": { - "c1": 8.488255213636293, - "c2": 8.457638752625071, - "c3": 8.40189841203456, - "c4": 8.335518682111552, - "c5": 8.45622679736234, - "c6": 8.485652551848665, - "c7": 8.431445978327611 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617156, + "c3": 10.124826629681014, + "c4": 8.09986130374477, + "c5": 6.0748959778086284, + "c6": 4.049930651872385, + "c7": 2.024965325936243 }, "rgb": [77, 76, 132] }, @@ -123504,23 +123504,23 @@ "year": 1742, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 20.894879490517702, - "c2": -12.030303929139981, - "c3": 19.858643189291023, - "c4": -3.9529029142037047, - "c5": -8.049964322021879, - "c6": -3.876778600988203, - "c7": 6.669908501876641 + "points": { + "c1": 12.749878518032347, + "c2": -10.99539736899978, + "c3": 16.46840370501492, + "c4": 5.968943280057616, + "c5": 13.72581361845878, + "c6": -19.827905660202866, + "c7": -2.8391876671414202 }, - "vertexSeeds": { - "c1": 0.9924877829523401, - "c2": 1.0095799192686348, - "c3": 0.9770306574100076, - "c4": 0.996201888350055, - "c5": 0.9981514080884298, - "c6": 1.0044281277420968, - "c7": 0.9796694921412213 + "offsets": { + "c1": 1.715210355987055, + "c2": 1.4701803051317623, + "c3": 1.2251502542764696, + "c4": 0.9801202034211708, + "c5": 0.7350901525658782, + "c6": 0.4900601017105854, + "c7": 0.2450300508552927 }, "rgb": [77, 76, 132] }, @@ -123531,23 +123531,23 @@ "year": 1742, "resistanceReported": false, "duration": 518400, - "curveSeeds": { - "c1": -7.7691072678899395, - "c2": 5.251814937652139, - "c3": -10.038667922601487, - "c4": -6.519290761056757, - "c5": 3.17587895412745, - "c6": 0.22186603804448168, - "c7": -2.749957536061144 + "points": { + "c1": -9.82336200330641, + "c2": -10.712819445537168, + "c3": 3.152594598235929, + "c4": 4.164869558940511, + "c5": -8.576498843282145, + "c6": -8.380948099357875, + "c7": 6.1636736106425385 }, - "vertexSeeds": { - "c1": 3.9364208510842356, - "c2": 4.483670500922393, - "c3": 4.1834516246042694, - "c4": 4.082516409353968, - "c5": 4.204547446306254, - "c6": 4.522893484984161, - "c7": 4.450670719339824 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [222, 0, 59] }, @@ -123558,23 +123558,23 @@ "year": 1742, "resistanceReported": false, "duration": 518400, - "curveSeeds": { - "c1": 3.2235811769330898, - "c2": 2.2453219727575053, - "c3": -8.009320575825136, - "c4": 8.140455094401306, - "c5": -4.067706822880215, - "c6": -2.845788424554522, - "c7": 4.924881981711588 + "points": { + "c1": 10.916588907893866, + "c2": 7.190704353709444, + "c3": -5.772895607123081, + "c4": 5.6946851114623005, + "c5": 12.081186707153533, + "c6": 2.934116850855629, + "c7": 6.417437584208637 }, - "vertexSeeds": { - "c1": 6.366580380723147, - "c2": 5.936084235696966, - "c3": 5.809462805042479, - "c4": 6.254471479232071, - "c5": 5.992899460994444, - "c6": 5.500930446369956, - "c7": 5.5377267108568615 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -123585,23 +123585,23 @@ "year": 1743, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 26.29192926773881, - "c2": 20.716029847896323, - "c3": 35.089575516981284, - "c4": 13.795735320422466, - "c5": 25.45809371709784, - "c6": 11.216519875521847, - "c7": 33.337573888661325 + "points": { + "c1": -32.46601488407813, + "c2": 39.53181050723754, + "c3": -32.73248541462063, + "c4": -47.718946695846, + "c5": -14.99193185618536, + "c6": 17.92658594720001, + "c7": -25.51877181805076 }, - "vertexSeeds": { - "c1": 4.909741376813243, - "c2": 5.283098816441084, - "c3": 4.7226075862152666, - "c4": 5.170208409338942, - "c5": 4.765535974183076, - "c6": 4.6213822877961, - "c7": 5.153991590084985 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -123612,23 +123612,23 @@ "year": 1742, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -33.80394212511096, - "c2": 36.51160167020916, - "c3": 20.664127441850617, - "c4": -34.58454714258604, - "c5": -20.280949920925227, - "c6": -18.36657677262625, - "c7": -26.17498300870426 + "points": { + "c1": -7.529921056088199, + "c2": -36.86205970261728, + "c3": 22.266792384314748, + "c4": -0.13542931596023067, + "c5": -29.139060652244275, + "c6": -3.1197246241911216, + "c7": -4.450235467184953 }, - "vertexSeeds": { - "c1": 3.2231853115394595, - "c2": 3.187173273885241, - "c3": 3.295373665946183, - "c4": 3.1413289354311646, - "c5": 3.149118769693036, - "c6": 3.1579573087024744, - "c7": 3.1819360583792267 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.7434119278779505, + "c3": 3.9528432732316188, + "c4": 3.162274618585297, + "c5": 2.3717059639389753, + "c6": 1.5811373092926533, + "c7": 0.7905686546463218 }, "rgb": [86, 146, 138] }, @@ -123639,23 +123639,23 @@ "year": 1743, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -2.0164077552226303, - "c2": 7.253399707976115, - "c3": 26.407628428315462, - "c4": 29.312577469683347, - "c5": -30.55831761518018, - "c6": 12.26213117400627, - "c7": -43.02949014751956 + "points": { + "c1": -44.131727363176445, + "c2": 11.246846638896017, + "c3": 6.298268590257088, + "c4": -5.920140990748557, + "c5": -6.081575162391353, + "c6": 34.29361402515782, + "c7": 27.92228820742811 }, - "vertexSeeds": { - "c1": 4.272398827280827, - "c2": 4.429804169848479, - "c3": 5.129196513867742, - "c4": 4.412115984750605, - "c5": 4.915673096808925, - "c6": 5.0622589369314746, - "c7": 4.554848126840987 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -123666,23 +123666,23 @@ "year": 1743, "resistanceReported": false, "duration": 60652800, - "curveSeeds": { - "c1": 53.776935012616576, - "c2": -49.48686027584317, - "c3": -26.162675398222746, - "c4": -35.73166357929088, - "c5": 10.338715465280032, - "c6": 33.072713839153835, - "c7": -53.886360571891146 + "points": { + "c1": -46.59672192342683, + "c2": 12.432421062694772, + "c3": 70.03504050081398, + "c4": -46.96679898654191, + "c5": -71.2135382041773, + "c6": -9.20119318274304, + "c7": -36.98740873552736 }, - "vertexSeeds": { - "c1": 8.351848442639826, - "c2": 7.863435484917502, - "c3": 8.693015036746829, - "c4": 8.047376227291844, - "c5": 8.506128704910463, - "c6": 8.468721029040939, - "c7": 7.636997105935417 + "offsets": { + "c1": 14.627831715210357, + "c2": 12.538141470180303, + "c3": 10.44845122515025, + "c4": 8.358760980120211, + "c5": 6.2690707350901596, + "c6": 4.1793804900601055, + "c7": 2.0896902450300527 }, "rgb": [58, 15, 49] }, @@ -123693,23 +123693,23 @@ "year": 1742, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -19.639929795758814, - "c2": -32.77417959868458, - "c3": 32.36377963359308, - "c4": 18.320729023301745, - "c5": 27.929852819974798, - "c6": -20.838788734393688, - "c7": -6.628753894002394 + "points": { + "c1": 6.952312157689931, + "c2": -35.280465187558846, + "c3": -3.1683915713695683, + "c4": 6.674424488324483, + "c5": -3.027506054851621, + "c6": 15.716727610814203, + "c7": -10.483842734801172 }, - "vertexSeeds": { - "c1": 8.47337179751996, - "c2": 7.334971373979382, - "c3": 8.037485814041792, - "c4": 7.350290863402856, - "c5": 7.803723506871531, - "c6": 7.722755703450175, - "c7": 7.577836577570769 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697647, + "c3": 10.171058714748034, + "c4": 8.136846971798432, + "c5": 6.1026352288488175, + "c6": 4.068423485899216, + "c7": 2.034211742949602 }, "rgb": [238, 201, 159] }, @@ -123720,23 +123720,23 @@ "year": 1742, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -28.620739670015947, - "c2": 5.897961794992277, - "c3": -29.099663566811635, - "c4": -31.232711448465338, - "c5": -23.839457957167447, - "c6": -16.3673300318436, - "c7": -16.515883030711073 + "points": { + "c1": 9.406834765498012, + "c2": 33.5330868255308, + "c3": 40.323298136796, + "c4": 6.158733733710214, + "c5": 38.577362148662644, + "c6": -21.550391315727595, + "c7": -34.56816080283044 }, - "vertexSeeds": { - "c1": 3.228395475927921, - "c2": 3.0349675388843664, - "c3": 3.0048637864569314, - "c4": 3.1948584605102965, - "c5": 3.1821975709797528, - "c6": 2.9954639409182127, - "c7": 3.023540997605505 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.02219140083218, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328672, + "c7": 0.8044382801664377 }, "rgb": [58, 15, 49] }, @@ -123747,23 +123747,23 @@ "year": 1742, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -2.2887525565824873, - "c2": -8.31592332172351, - "c3": -17.26970714176405, - "c4": -18.875340309444052, - "c5": -15.018384987868238, - "c6": -25.802419848562394, - "c7": -19.379248377805077 + "points": { + "c1": 39.71590308484197, + "c2": -16.43685542576391, + "c3": -6.385808612446276, + "c4": -20.642388901978865, + "c5": 37.49622680533571, + "c6": -21.049817918537578, + "c7": 41.59888008310364 }, - "vertexSeeds": { - "c1": 5.74302533299631, - "c2": 5.877013780473605, - "c3": 6.002043297283427, - "c4": 5.955115640177317, - "c5": 5.3380674982773115, - "c6": 5.626485309351487, - "c7": 5.442852080316826 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750348, + "c3": 7.327785483125293, + "c4": 5.862228386500237, + "c5": 4.39667128987518, + "c6": 2.931114193250125, + "c7": 1.4655570966250686 }, "rgb": [58, 15, 49] }, @@ -123774,23 +123774,23 @@ "year": 1742, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 24.36382127315362, - "c2": 3.182157086218446, - "c3": 3.6379154993195826, - "c4": -31.081760584035308, - "c5": -27.697541850542628, - "c6": -5.011270215111928, - "c7": 12.994843110196705 + "points": { + "c1": 5.09376091147449, + "c2": 32.44627123838491, + "c3": -16.69071573263658, + "c4": 40.41569986701123, + "c5": 36.36577673296047, + "c6": -33.799044427801995, + "c7": 27.497162047572587 }, - "vertexSeeds": { - "c1": 4.3405787063229555, - "c2": 4.2521383803964845, - "c3": 4.16653715545935, - "c4": 4.147418353255497, - "c5": 3.916321526163315, - "c6": 3.970870830050602, - "c7": 3.979026163188543 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.201109570041606, + "c4": 4.160887656033286, + "c5": 3.120665742024966, + "c6": 2.0804438280166466, + "c7": 1.0402219140083195 }, "rgb": [86, 146, 138] }, @@ -123801,23 +123801,23 @@ "year": 1743, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 16.79292845818724, - "c2": -8.719597057632068, - "c3": 11.151290076876364, - "c4": 10.031986469828212, - "c5": -11.535139014674773, - "c6": 12.711034086320389, - "c7": -16.208310703996762 + "points": { + "c1": 33.61120238263203, + "c2": -41.67918837474639, + "c3": 22.545305416269144, + "c4": -14.79695989442802, + "c5": -23.078410556783677, + "c6": 15.208137288213493, + "c7": 31.151186824527116 }, - "vertexSeeds": { - "c1": 5.07269115261498, - "c2": 5.4213699262390485, - "c3": 5.093090839978792, - "c4": 5.263480071871665, - "c5": 5.36559088330797, - "c6": 5.389184642455148, - "c7": 5.207093190432154 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342583, + "c3": 6.518723994452156, + "c4": 5.214979195561707, + "c5": 3.9112343966712797, + "c6": 2.6074895977808534, + "c7": 1.3037447988904267 }, "rgb": [77, 76, 132] }, @@ -123828,23 +123828,23 @@ "year": 1743, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 23.196364234890254, - "c2": 41.96362982168293, - "c3": 19.832956962997123, - "c4": -12.575852940882907, - "c5": -15.759900319780485, - "c6": 15.090317377373509, - "c7": 0.7753498745654639 + "points": { + "c1": -40.07857677969351, + "c2": 6.79837291910534, + "c3": 32.778880630129805, + "c4": 29.567104642488886, + "c5": -39.112557898387834, + "c6": 30.505696662052344, + "c7": 6.7540671146079205 }, - "vertexSeeds": { - "c1": 9.387877531465266, - "c2": 9.652096175129776, - "c3": 9.47126072456123, - "c4": 9.369374228483386, - "c5": 9.453165461517496, - "c6": 9.8443771947272, - "c7": 9.20171813038512 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.25797503467407, + "c3": 11.881645862228376, + "c4": 9.505316689782706, + "c5": 7.128987517337035, + "c6": 4.752658344891364, + "c7": 2.3763291724456717 }, "rgb": [86, 146, 138] }, @@ -123855,23 +123855,23 @@ "year": 1742, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -20.736288220340022, - "c2": -13.169664558391563, - "c3": -17.209878778656325, - "c4": -3.249870194272205, - "c5": -0.8575883611455986, - "c6": 15.01595003433967, - "c7": -11.001803605398674 + "points": { + "c1": -30.216704787652155, + "c2": 26.818664187415795, + "c3": -18.323145493454707, + "c4": -22.64123287789592, + "c5": -5.370620269043904, + "c6": 14.6555700686128, + "c7": 9.856680996657946 }, - "vertexSeeds": { - "c1": 9.004829061347756, - "c2": 8.90119699554948, - "c3": 9.622848019178184, - "c4": 9.095919658859692, - "c5": 8.64916544785718, - "c6": 9.480982711856399, - "c7": 8.840512045314114 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110953, + "c3": 11.558021266759125, + "c4": 9.246417013407312, + "c5": 6.934812760055485, + "c6": 4.623208506703656, + "c7": 2.311604253351828 }, "rgb": [238, 201, 159] }, @@ -123882,23 +123882,23 @@ "year": 1743, "resistanceReported": true, "duration": 27302400, - "curveSeeds": { - "c1": 1.910985411835398, - "c2": 35.27741966531292, - "c3": 22.85816726966621, - "c4": 29.55595141631072, - "c5": -23.61928847697974, - "c6": 35.150646149571386, - "c7": -16.611457812554676 + "points": { + "c1": 16.904448576019412, + "c2": -27.54601832661723, + "c3": -18.82339148999927, + "c4": 12.523328631501364, + "c5": -18.21490754125961, + "c6": 10.458526152340262, + "c7": 16.54903712759318 }, - "vertexSeeds": { - "c1": 5.065763798727906, - "c2": 5.282019275298813, - "c3": 5.144754712634471, - "c4": 4.90807922251427, - "c5": 4.852349447442656, - "c6": 4.9963236575371, - "c7": 5.060851786318437 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650477, + "c4": 5.048543689320385, + "c5": 3.786407766990294, + "c6": 2.5242718446601926, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -123909,23 +123909,23 @@ "year": 1742, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -7.156082854679131, - "c2": -23.16744853912146, - "c3": 8.742062167727532, - "c4": -14.657744499138214, - "c5": 15.287487788750745, - "c6": 32.74957719724033, - "c7": 2.50836162468692 + "points": { + "c1": 25.64114254576903, + "c2": 26.010985392151795, + "c3": 16.70854631348233, + "c4": -18.906801600787816, + "c5": 27.373272334240276, + "c6": -17.995784534530355, + "c7": 25.664984172739054 }, - "vertexSeeds": { - "c1": 3.7451521335149156, - "c2": 4.347158248740913, - "c3": 4.2238030826909965, - "c4": 4.187076575985198, - "c5": 3.879372715845861, - "c6": 3.734574364340348, - "c7": 4.517980382885737 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843273, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.16366158113731, + "c7": 1.0818307905686575 }, "rgb": [86, 146, 138] }, @@ -123936,23 +123936,23 @@ "year": 1742, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 22.730899350601504, - "c2": 0.636310910886678, - "c3": -8.66153000088892, - "c4": 16.031511603101713, - "c5": -3.026863653203776, - "c6": -5.153879623739382, - "c7": -18.781996030269973 + "points": { + "c1": 17.383035187243415, + "c2": 27.568496458736078, + "c3": -18.484519792857984, + "c4": 15.001428057840904, + "c5": 37.55314797789214, + "c6": 0.6705704730210158, + "c7": -14.22035619944084 }, - "vertexSeeds": { - "c1": 5.581052573375908, - "c2": 5.68349831723917, - "c3": 6.140405020132032, - "c4": 5.352845976361557, - "c5": 5.378793556923346, - "c6": 6.113756054835769, - "c7": 5.647543075580551 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830785, + "c3": 7.374017568192326, + "c4": 5.899214054553856, + "c5": 4.424410540915399, + "c6": 2.949607027276928, + "c7": 1.4748035136384579 }, "rgb": [238, 201, 159] }, @@ -123963,23 +123963,23 @@ "year": 1743, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -15.963856260750827, - "c2": 23.476626076792527, - "c3": 9.041458082740235, - "c4": 25.61793712150795, - "c5": 34.6588997669712, - "c6": -2.4874581754445586, - "c7": -32.78666534963568 + "points": { + "c1": -34.62590123387943, + "c2": 37.596001562408475, + "c3": -12.346927417845105, + "c4": 39.56681342719352, + "c5": 7.1358689004816185, + "c6": 3.751152658194485, + "c7": -13.533320041634884 }, - "vertexSeeds": { - "c1": 2.12651009965877, - "c2": 2.0756964539397718, - "c3": 2.063695015152451, - "c4": 2.0064135841802435, - "c5": 2.0970519734486195, - "c6": 2.1113671463147643, - "c7": 1.9966220141933912 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.0790568654646315, + "c3": 2.5658807212205255, + "c4": 2.0527045769764194, + "c5": 1.5395284327323133, + "c6": 1.0263522884882124, + "c7": 0.5131761442441062 }, "rgb": [222, 0, 59] }, @@ -123990,23 +123990,23 @@ "year": 1742, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -4.084282763858443, - "c2": -11.335679810090436, - "c3": -29.627057762618957, - "c4": -11.556703417138632, - "c5": 17.530193301122416, - "c6": 29.17893815382044, - "c7": -6.651310991938093 + "points": { + "c1": 9.669911905997523, + "c2": -24.242415314321555, + "c3": 22.233229113642423, + "c4": 12.001969265324277, + "c5": -12.978770929380726, + "c6": -21.466896137178594, + "c7": -23.547454336905822 }, - "vertexSeeds": { - "c1": 6.977654832808533, - "c2": 6.71726883133746, - "c3": 6.266286399458404, - "c4": 6.725489156075533, - "c5": 7.117583095795736, - "c6": 6.719816733229321, - "c7": 6.967203709553862 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.45769764216366, + "c3": 8.714748035136385, + "c4": 6.971798428109107, + "c5": 5.22884882108183, + "c6": 3.4858992140545535, + "c7": 1.7429496070272767 }, "rgb": [86, 146, 138] }, @@ -124017,23 +124017,23 @@ "year": 1743, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 40.75813392174602, - "c2": -32.75686547082063, - "c3": -28.381522385020208, - "c4": -13.130477078164141, - "c5": 44.4357440599596, - "c6": -17.636720805582424, - "c7": 27.59404071462758 + "points": { + "c1": -10.497691438374432, + "c2": 14.383528569165478, + "c3": 24.209388650790643, + "c4": 34.256479890369505, + "c5": 3.2779426227025183, + "c6": -5.393210272077276, + "c7": 14.834575423580063 }, - "vertexSeeds": { - "c1": 4.906086704006821, - "c2": 5.417515329318817, - "c3": 5.495574547227329, - "c4": 5.384046978235566, - "c5": 5.143718059844206, - "c6": 5.433765874654537, - "c7": 5.2785975646735315 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423026, + "c3": 6.564956079519191, + "c4": 5.251964863615339, + "c5": 3.938973647711505, + "c6": 2.6259824318076697, + "c7": 1.3129912159038348 }, "rgb": [86, 146, 138] }, @@ -124044,23 +124044,23 @@ "year": 1743, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -26.899637326915794, - "c2": 37.72251137461127, - "c3": 29.01323599875684, - "c4": 3.913317289263283, - "c5": -1.497776945081263, - "c6": -44.823438980037935, - "c7": 12.748664789219191 + "points": { + "c1": -7.112558105380323, + "c2": 39.00516316580082, + "c3": -18.149414494163373, + "c4": -2.6221587217364757, + "c5": 30.089672226874754, + "c6": -50.6819040224441, + "c7": -0.8343888749945307 }, - "vertexSeeds": { - "c1": 7.221250650748091, - "c2": 7.2561836804992765, - "c3": 7.074925040101385, - "c4": 7.005131000080967, - "c5": 7.057112100756486, - "c6": 7.389905939575044, - "c7": 7.038092751098121 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -124071,23 +124071,23 @@ "year": 1743, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -14.181347186821558, - "c2": -7.923350803959842, - "c3": -9.807031961985068, - "c4": -7.862764585838004, - "c5": -23.16461775778025, - "c6": 33.91436634798508, - "c7": -10.258268989363138 + "points": { + "c1": 0.7729647114917668, + "c2": -21.799412274998197, + "c3": -3.8439891638235792, + "c4": 17.926400338301875, + "c5": 13.940513515925382, + "c6": -26.325966361255784, + "c7": 3.921314641952115 }, - "vertexSeeds": { - "c1": 8.910692522499888, - "c2": 9.089758474683736, - "c3": 8.919266433000509, - "c4": 9.395270408935827, - "c5": 9.018567676581954, - "c6": 9.261371978537657, - "c7": 9.073068670508972 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909843, + "c3": 11.442441054091551, + "c4": 9.153952843273236, + "c5": 6.865464632454922, + "c6": 4.576976421636628, + "c7": 2.288488210818314 }, "rgb": [238, 201, 159] }, @@ -124098,23 +124098,23 @@ "year": 1742, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -26.74414793868498, - "c2": 14.833919864545745, - "c3": -1.321746682675009, - "c4": 14.220123559981484, - "c5": -10.823067630451554, - "c6": 2.4030609615137806, - "c7": -4.707361367667438 + "points": { + "c1": -26.163450244007485, + "c2": 18.330177113208574, + "c3": 17.425477959362293, + "c4": -27.959445899912538, + "c5": -9.961584102043403, + "c6": -9.115647538321689, + "c7": -24.267530477636033 }, - "vertexSeeds": { - "c1": 4.216006323387942, - "c2": 4.191808051999984, - "c3": 4.165943683805276, - "c4": 4.181858536448401, - "c5": 4.22623006945663, - "c6": 4.247155848927734, - "c7": 4.229842380676642 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.1026352288488095, + "c3": 5.0855293573740346, + "c4": 4.06842348589922, + "c5": 3.0513176144244047, + "c6": 2.0342117429496303, + "c7": 1.0171058714748151 }, "rgb": [238, 201, 159] }, @@ -124125,23 +124125,23 @@ "year": 1743, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 7.791969592202975, - "c2": -25.33354030464134, - "c3": -18.5793034629683, - "c4": -2.9719619340489913, - "c5": 31.167127610475234, - "c6": -22.29496391192675, - "c7": -20.68283029665689 + "points": { + "c1": -21.88495761419608, + "c2": -32.31534939302142, + "c3": 4.660740274668456, + "c4": 30.45611394203071, + "c5": 9.616972475358018, + "c6": -0.12425174579372822, + "c7": 32.501762974797344 }, - "vertexSeeds": { - "c1": 9.770718016590665, - "c2": 9.813543452739484, - "c3": 9.826182937991272, - "c4": 9.774274978881083, - "c5": 9.814400418114449, - "c6": 9.780399091271054, - "c7": 9.727369969725899 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.09153952843268, + "c3": 11.742949607027292, + "c4": 9.394359685621787, + "c5": 7.045769764216399, + "c6": 4.697179842810893, + "c7": 2.3485899214053885 }, "rgb": [222, 0, 59] }, @@ -124152,23 +124152,23 @@ "year": 1742, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -1.1210993493656858, - "c2": -0.16514806799754211, - "c3": -16.3831607453795, - "c4": 24.854761682070855, - "c5": -22.54255272418915, - "c6": -1.725377675023534, - "c7": 4.3568012392013635 + "points": { + "c1": 4.5536468038651705, + "c2": 16.935863147386804, + "c3": -14.53852242287747, + "c4": -20.136598873024344, + "c5": -4.445964032033068, + "c6": -24.84261041631139, + "c7": -21.711286374705317 }, - "vertexSeeds": { - "c1": 4.788807070953349, - "c2": 5.050752447780036, - "c3": 5.043555473502557, - "c4": 4.959007825521592, - "c5": 4.8232939384008136, - "c6": 4.8853091640203585, - "c7": 4.543295481826238 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342579, + "c3": 6.51872399445215, + "c4": 5.214979195561719, + "c5": 3.9112343966712895, + "c6": 2.6074895977808596, + "c7": 1.3037447988904298 }, "rgb": [238, 201, 159] }, @@ -124179,23 +124179,23 @@ "year": 1743, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -1.1072898337996477, - "c2": 4.859961403747214, - "c3": 14.626325225961317, - "c4": -11.333318787789374, - "c5": -23.365811892385366, - "c6": -27.291000726142006, - "c7": 20.71272442311404 + "points": { + "c1": -21.800015779521853, + "c2": 14.5179407681238, + "c3": -9.814513292885778, + "c4": -29.384794057139537, + "c5": -12.561721631206797, + "c6": -23.227443961712098, + "c7": 24.286071702518164 }, - "vertexSeeds": { - "c1": 1.8065741387567622, - "c2": 1.7827604786032394, - "c3": 1.910534164232946, - "c4": 1.8419031207770158, - "c5": 1.9402883248521485, - "c6": 1.8338588135964782, - "c7": 1.840699405364947 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.801664355062411, + "c3": 2.334720295885345, + "c4": 1.867776236708274, + "c5": 1.4008321775312083, + "c6": 0.933888118354137, + "c7": 0.46694405917706594 }, "rgb": [222, 0, 59] }, @@ -124206,23 +124206,23 @@ "year": 1743, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 28.0765496484065, - "c2": 6.210640289501669, - "c3": -15.906075792560241, - "c4": -5.596541879861064, - "c5": -13.241149247556827, - "c6": 31.774780409415058, - "c7": 35.35709485765611 + "points": { + "c1": 33.681141981285066, + "c2": 7.763648760730334, + "c3": -39.88582659342107, + "c4": 43.36605010301476, + "c5": 0.8399197425222127, + "c6": 27.55805258352487, + "c7": 39.454417420487374 }, - "vertexSeeds": { - "c1": 3.5166058972723095, - "c2": 3.35603019929599, - "c3": 3.753551254250385, - "c4": 3.584644617644355, - "c5": 3.608670166409224, - "c6": 3.7506128339450466, - "c7": 3.5343819481621495 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.49237170596394, + "c3": 4.576976421636614, + "c4": 3.6615811373092915, + "c5": 2.74618585298197, + "c6": 1.8307905686546484, + "c7": 0.9153952843273216 }, "rgb": [77, 76, 132] }, @@ -124233,23 +124233,23 @@ "year": 1743, "resistanceReported": false, "duration": 45187200, - "curveSeeds": { - "c1": -53.178775174678826, - "c2": -32.36951227724684, - "c3": -34.99319286869003, - "c4": 24.496983531216507, - "c5": -17.63550897917645, - "c6": 56.89051983819649, - "c7": 45.53691890549029 + "points": { + "c1": -16.100121512896735, + "c2": -24.186989379153978, + "c3": 54.10508506076628, + "c4": -22.25801177202726, + "c5": 31.0985154043287, + "c6": -50.398837335076124, + "c7": -11.520142349635698 }, - "vertexSeeds": { - "c1": 8.45497342988555, - "c2": 8.47497336578478, - "c3": 9.011782337911093, - "c4": 8.531314294513251, - "c5": 9.358044941727854, - "c6": 8.53920555426171, - "c7": 9.242944048946175 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588075, + "c3": 11.257512713823386, + "c4": 9.006010171058712, + "c5": 6.7545076282940375, + "c6": 4.503005085529365, + "c7": 2.2515025427646735 }, "rgb": [58, 15, 49] }, @@ -124260,23 +124260,23 @@ "year": 1743, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -36.00111830294955, - "c2": -41.47710349532958, - "c3": -32.22268405737184, - "c4": 1.4837526373027359, - "c5": 43.50119481303386, - "c6": 28.152326866542126, - "c7": -12.327991039845465 + "points": { + "c1": -46.41052227266772, + "c2": 19.298029267654854, + "c3": -21.5366416741518, + "c4": -29.942123982317536, + "c5": -5.425707939629596, + "c6": 28.01787081314187, + "c7": 26.86833741975252 }, - "vertexSeeds": { - "c1": 6.889409173791106, - "c2": 6.612178608575133, - "c3": 6.715778391019704, - "c4": 6.4955765268472065, - "c5": 6.712565296167978, - "c6": 6.762054652842899, - "c7": 6.327798314843607 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399444, + "c3": 8.275543226999538, + "c4": 6.620434581599629, + "c5": 4.965325936199722, + "c6": 3.3102172907998146, + "c7": 1.6551086453999073 }, "rgb": [86, 146, 138] }, @@ -124287,23 +124287,23 @@ "year": 1743, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 26.64847522117755, - "c2": -15.615875404629602, - "c3": 23.36337163012788, - "c4": 3.7783004056354557, - "c5": 13.67501359388821, - "c6": 0.9500587159096128, - "c7": -5.883276889550686 + "points": { + "c1": 25.162963382978717, + "c2": -17.50794005046289, + "c3": -27.19101328521474, + "c4": -18.106207073228358, + "c5": -34.18567888907425, + "c6": -34.23226439743344, + "c7": 24.18642651971956 }, - "vertexSeeds": { - "c1": 5.452344015296144, - "c2": 5.664017258189935, - "c3": 5.617777786802452, - "c4": 5.7969033846800375, - "c5": 5.7319636827766525, - "c6": 5.915764227489035, - "c7": 5.7743094014531335 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.79334257975035, + "c3": 7.327785483125283, + "c4": 5.86222838650023, + "c5": 4.396671289875175, + "c6": 2.931114193250109, + "c7": 1.4655570966250544 }, "rgb": [86, 146, 138] }, @@ -124314,23 +124314,23 @@ "year": 1742, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -5.730511378777489, - "c2": 29.786809914913135, - "c3": 21.136868640670954, - "c4": -14.70013915273564, - "c5": -4.44480412489041, - "c6": 6.901007335066041, - "c7": 7.569575599763972 + "points": { + "c1": -13.121375831919394, + "c2": 24.51756508073302, + "c3": 21.64113851593806, + "c4": 18.393700759923064, + "c5": -27.901675669242493, + "c6": -6.083137275511678, + "c7": -23.50525469599875 }, - "vertexSeeds": { - "c1": 7.560446004857155, - "c2": 7.178674531027137, - "c3": 6.77634432326294, - "c4": 7.688429662393034, - "c5": 7.639651435715097, - "c6": 7.438794655457015, - "c7": 7.604509547984713 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330092, + "c3": 9.38511326860842, + "c4": 7.508090614886734, + "c5": 5.631067961165046, + "c6": 3.75404530744336, + "c7": 1.8770226537216863 }, "rgb": [222, 0, 59] }, @@ -124341,23 +124341,23 @@ "year": 1744, "resistanceReported": false, "duration": 58665600, - "curveSeeds": { - "c1": -1.767339675252913, - "c2": 68.67612697217989, - "c3": 10.384341930571495, - "c4": -58.344393054526954, - "c5": 29.006968384129692, - "c6": 73.96366625473432, - "c7": -38.9193437465514 + "points": { + "c1": 69.07247219180341, + "c2": -6.195062049243688, + "c3": -60.505818663822716, + "c4": 48.03698687418952, + "c5": -35.92823295872197, + "c6": -46.45750126304389, + "c7": -20.912103077221765 }, - "vertexSeeds": { - "c1": 9.370102455693573, - "c2": 9.01751662809207, - "c3": 8.722002558152592, - "c4": 9.204080451422534, - "c5": 9.229220464889117, - "c6": 8.738811155381729, - "c7": 8.921020946757881 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708735, + "c3": 11.32686084142394, + "c4": 9.06148867313916, + "c5": 6.796116504854368, + "c6": 4.530744336569574, + "c7": 2.265372168284793 }, "rgb": [77, 76, 132] }, @@ -124368,23 +124368,23 @@ "year": 1743, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -23.81282646935396, - "c2": -2.2921658600951247, - "c3": 1.8622427863387188, - "c4": -5.346152707399067, - "c5": 26.47025796167216, - "c6": 16.305043841117623, - "c7": -3.382868159613352 + "points": { + "c1": -13.695784142886392, + "c2": -33.252715294429734, + "c3": -35.954655165517764, + "c4": -21.83260149868495, + "c5": 9.279923466516188, + "c6": 14.015388278236578, + "c7": -12.274969612077715 }, - "vertexSeeds": { - "c1": 7.889053562476431, - "c2": 7.593582605394716, - "c3": 7.442254531756117, - "c4": 8.254668812614753, - "c5": 7.9241198909692425, - "c6": 7.742198831848297, - "c7": 7.591736847002155 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.81692094313454, + "c3": 9.847434119278772, + "c4": 7.877947295423021, + "c5": 5.90846047156727, + "c6": 3.9389736477115016, + "c7": 1.9694868238557508 }, "rgb": [238, 201, 159] }, @@ -124395,23 +124395,23 @@ "year": 1743, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -22.9600765719687, - "c2": 27.741255467027678, - "c3": -19.306468295803988, - "c4": 17.38130766915416, - "c5": 0.338049779544221, - "c6": -7.686326412022179, - "c7": 3.3939937184391127 + "points": { + "c1": -4.43168469425342, + "c2": 4.719309902750233, + "c3": 3.65939407785433, + "c4": 12.277777043358867, + "c5": 31.810546250237266, + "c6": 20.18748847849843, + "c7": -26.497088215770603 }, - "vertexSeeds": { - "c1": 5.073544911137866, - "c2": 5.061575079554357, - "c3": 4.65860640454273, - "c4": 4.630513038351405, - "c5": 4.576525847061802, - "c6": 4.561422272376202, - "c7": 4.842195551043361 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578361, + "c3": 6.079519186315307, + "c4": 4.863615349052243, + "c5": 3.6477115117891805, + "c6": 2.4318076745261172, + "c7": 1.215903837263063 }, "rgb": [238, 201, 159] }, @@ -124422,23 +124422,23 @@ "year": 1744, "resistanceReported": false, "duration": 58060800, - "curveSeeds": { - "c1": -36.644125985297656, - "c2": -2.696206767628709, - "c3": 44.12317571599222, - "c4": 4.141325708372619, - "c5": -13.70116059778912, - "c6": -35.07316277285073, - "c7": -12.575186639831102 + "points": { + "c1": -20.237922290853213, + "c2": -43.0822211099097, + "c3": -19.865071513516938, + "c4": -23.154904419637866, + "c5": 23.07490030244388, + "c6": -32.01819515375477, + "c7": -65.37796524904007 }, - "vertexSeeds": { - "c1": 10.608808290155439, - "c2": 10.608808290155439, - "c3": 10.608808290155439, - "c4": 10.608808290155439, - "c5": 10.608808290155439, - "c6": 10.608808290155439, - "c7": 10.608808290155439 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -124449,23 +124449,23 @@ "year": 1743, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -38.41512188917177, - "c2": -19.00166141848413, - "c3": 11.286601932149054, - "c4": -7.3859027557024675, - "c5": 11.019056130003243, - "c6": 29.849619785901282, - "c7": -21.8214389449461 + "points": { + "c1": -8.017434325690488, + "c2": -17.429174114003057, + "c3": 29.601391480558902, + "c4": 21.578160340602153, + "c5": 32.92257119566463, + "c6": -20.451115058936463, + "c7": 40.288351984228555 }, - "vertexSeeds": { - "c1": 5.613747997792471, - "c2": 5.707627066043563, - "c3": 5.496252772490225, - "c4": 6.22751245779932, - "c5": 5.672303976913264, - "c6": 5.581205211010358, - "c7": 6.053280627395051 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152565, + "c3": 7.558945908460472, + "c4": 6.047156726768376, + "c5": 4.535367545076283, + "c6": 3.023578363384188, + "c7": 1.511789181692094 }, "rgb": [86, 146, 138] }, @@ -124476,23 +124476,23 @@ "year": 1743, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 11.830914887115178, - "c2": -7.336345527578082, - "c3": 10.749792606243417, - "c4": 30.22660686038178, - "c5": 12.030422676899121, - "c6": -20.69774342386411, - "c7": -38.35591373754658 + "points": { + "c1": -0.7755727125217433, + "c2": 37.42946319414317, + "c3": -23.389331343994524, + "c4": -24.36699561530895, + "c5": 34.49792336303568, + "c6": 16.502991881426496, + "c7": 15.058102255032324 }, - "vertexSeeds": { - "c1": 4.290857377922943, - "c2": 4.130200640652223, - "c3": 3.930502959663517, - "c4": 4.197925301936016, - "c5": 3.8360263594901425, - "c6": 4.0051677142474595, - "c7": 4.179454658822219 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049929, + "c3": 5.201109570041607, + "c4": 4.1608876560332835, + "c5": 3.1206657420249684, + "c6": 2.0804438280166457, + "c7": 1.0402219140083229 }, "rgb": [58, 15, 49] }, @@ -124503,23 +124503,23 @@ "year": 1743, "resistanceReported": true, "duration": 29635200, - "curveSeeds": { - "c1": 17.04920586761441, - "c2": -10.686759069281312, - "c3": -26.543672280331442, - "c4": -15.057825501146095, - "c5": 11.54129795939982, - "c6": -14.596848760543182, - "c7": 9.6428814494028 + "points": { + "c1": -28.15591725997288, + "c2": 12.842918119159727, + "c3": 22.274246172932898, + "c4": 34.15053872598045, + "c5": -42.105581377663555, + "c6": -25.938901929539004, + "c7": 23.407879616224214 }, - "vertexSeeds": { - "c1": 3.4448471871647044, - "c2": 3.651461930643886, - "c3": 3.5405712817280444, - "c4": 3.843368928154472, - "c5": 3.731142884578464, - "c6": 3.474711233013129, - "c7": 3.6602155764784894 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245495, + "c3": 4.738788719371243, + "c4": 3.791030975496997, + "c5": 2.843273231622744, + "c6": 1.8955154877484985, + "c7": 0.9477577438742459 }, "rgb": [77, 76, 132] }, @@ -124530,23 +124530,23 @@ "year": 1743, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -14.938462419573185, - "c2": -25.94260170044302, - "c3": -4.3979784506665105, - "c4": 10.373083468747652, - "c5": 27.28731962501996, - "c6": -18.05832063331711, - "c7": 0.876608029663295 + "points": { + "c1": 23.031392652599642, + "c2": 12.906472569476385, + "c3": -29.398617202137732, + "c4": 12.38929391378764, + "c5": -23.709032547852587, + "c6": -18.492783031052888, + "c7": -29.37022814571923 }, - "vertexSeeds": { - "c1": 0.7784968865744054, - "c2": 0.8544424235782684, - "c3": 0.8332132884795296, - "c4": 0.8288717849492063, - "c5": 0.7986572739832023, - "c6": 0.7986897507988523, - "c7": 0.790137261008776 + "offsets": { + "c1": 1.4563106796116505, + "c2": 1.248266296809987, + "c3": 1.0402219140083206, + "c4": 0.832177531206657, + "c5": 0.6241331484049935, + "c6": 0.41608876560332725, + "c7": 0.20804438280166362 }, "rgb": [77, 76, 132] }, @@ -124557,23 +124557,23 @@ "year": 1743, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -25.62588763585015, - "c2": 21.916138110753934, - "c3": 21.966441630185052, - "c4": 6.913103145946998, - "c5": -9.705660448435008, - "c6": -16.019337943974282, - "c7": -0.8382462072214025 + "points": { + "c1": 13.19651521526879, + "c2": -1.4944092562983258, + "c3": -14.098705082459343, + "c4": 7.153442566619717, + "c5": 24.319591199644442, + "c6": -13.77109403944312, + "c7": 28.468814203453547 }, - "vertexSeeds": { - "c1": 7.992531153873241, - "c2": 8.048394465049663, - "c3": 8.413775350380217, - "c4": 8.058252547819594, - "c5": 8.121127222457758, - "c6": 8.390525756292424, - "c7": 8.303184154033476 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496541, + "c3": 10.05547850208043, + "c4": 8.04438280166435, + "c5": 6.033287101248271, + "c6": 4.02219140083216, + "c7": 2.01109570041608 }, "rgb": [77, 76, 132] }, @@ -124584,23 +124584,23 @@ "year": 1743, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -28.145593731658018, - "c2": -1.8775264738192234, - "c3": 14.224659202325228, - "c4": -11.744736377622274, - "c5": -7.047431241375346, - "c6": 14.086093681491278, - "c7": 15.71026161726921 + "points": { + "c1": 6.935784131618391, + "c2": 26.337651913817474, + "c3": -10.784967883291898, + "c4": 12.72480441197228, + "c5": -6.08009890397647, + "c6": 3.117030992638348, + "c7": 9.686458053062125 }, - "vertexSeeds": { - "c1": 5.30024008082982, - "c2": 4.972668031280515, - "c3": 5.16446940686417, - "c4": 4.951288274758824, - "c5": 5.136581368851784, - "c6": 5.021473774189901, - "c7": 4.863127573525674 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423026, + "c3": 6.564956079519191, + "c4": 5.251964863615339, + "c5": 3.938973647711505, + "c6": 2.6259824318076697, + "c7": 1.3129912159038348 }, "rgb": [77, 76, 132] }, @@ -124611,23 +124611,23 @@ "year": 1743, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -5.650600184293371, - "c2": -2.219745103338596, - "c3": 24.32924827881036, - "c4": 15.903559644050077, - "c5": -19.28218650860809, - "c6": 20.067033603895908, - "c7": 30.11861991783462 + "points": { + "c1": -10.085762297761509, + "c2": 22.291033217112286, + "c3": 26.67088035689266, + "c4": -24.720542259445388, + "c5": 16.14188555043897, + "c6": 7.702652994648886, + "c7": -28.05003236605328 }, - "vertexSeeds": { - "c1": 5.079703114801407, - "c2": 4.788191653414628, - "c3": 4.758874239529114, - "c4": 4.722483498157824, - "c5": 4.635179452645468, - "c6": 4.73779382211433, - "c7": 4.803649889820972 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578367, + "c3": 6.079519186315304, + "c4": 4.86361534905224, + "c5": 3.6477115117891836, + "c6": 2.43180767452612, + "c7": 1.215903837263064 }, "rgb": [58, 15, 49] }, @@ -124638,23 +124638,23 @@ "year": 1743, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 37.257895656814675, - "c2": -7.198516780565662, - "c3": -27.05577517655754, - "c4": 3.2589936385154985, - "c5": -15.373065607837198, - "c6": 34.45347322847069, - "c7": 33.165561461459724 + "points": { + "c1": 21.81833742999485, + "c2": 49.43855369167243, + "c3": -29.53022196027555, + "c4": 19.90992037868812, + "c5": 14.38106407837855, + "c6": -47.66270914616697, + "c7": 38.6430260874591 }, - "vertexSeeds": { - "c1": 3.608690371529364, - "c2": 3.4573470699812114, - "c3": 3.7621401267046504, - "c4": 3.398397342268056, - "c5": 3.7027306444393657, - "c6": 3.6239440286919757, - "c7": 3.4733760378033276 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [58, 15, 49] }, @@ -124665,23 +124665,23 @@ "year": 1743, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -32.313260252504655, - "c2": -18.64049571433368, - "c3": 18.656758485582728, - "c4": -17.604026069568917, - "c5": -40.167694139160226, - "c6": -32.56686570449857, - "c7": 34.25046154339995 + "points": { + "c1": 31.482550219275296, + "c2": 25.353728562295373, + "c3": -22.819273907426165, + "c4": -34.946297177859236, + "c5": -42.0051143518849, + "c6": -26.58181934489279, + "c7": 26.790694187571006 }, - "vertexSeeds": { - "c1": 4.063672285907614, - "c2": 4.473186789963596, - "c3": 4.467769584576907, - "c4": 3.8989433956053747, - "c5": 4.418423099984567, - "c6": 4.517729369432583, - "c7": 3.9382473159609916 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [77, 76, 132] }, @@ -124692,23 +124692,23 @@ "year": 1743, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 6.437267951122841, - "c2": 16.736557625507032, - "c3": 17.46826014185968, - "c4": 3.78121299493257, - "c5": -21.282019399135912, - "c6": -3.2450513391783105, - "c7": 10.884303641982136 + "points": { + "c1": 16.60610590534874, + "c2": -18.6487006563494, + "c3": -13.654687789975142, + "c4": 12.574875193642143, + "c5": 22.26871036386894, + "c6": 11.875980874363165, + "c7": -16.876342687427154 }, - "vertexSeeds": { - "c1": 10.58094266085542, - "c2": 10.29179011611011, - "c3": 10.07897789120869, - "c4": 10.39142928232105, - "c5": 9.170873665184802, - "c6": 9.401023741453596, - "c7": 10.508056558242735 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122051, + "c3": 12.713823393435042, + "c4": 10.171058714748034, + "c5": 7.628294036061026, + "c6": 5.085529357374017, + "c7": 2.5427646786870084 }, "rgb": [58, 15, 49] }, @@ -124719,23 +124719,23 @@ "year": 1743, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 16.045646399369744, - "c2": -38.545914165219116, - "c3": -12.768243651584552, - "c4": 40.28759800560975, - "c5": 19.449582537067066, - "c6": -25.303660227214962, - "c7": 25.382292464517008 + "points": { + "c1": 36.02876211712193, + "c2": -11.909605183673023, + "c3": 35.936678637893976, + "c4": 1.0475466296721478, + "c5": -13.73917835463821, + "c6": 12.102128938490885, + "c7": -19.97472015407015 }, - "vertexSeeds": { - "c1": 2.4867686297080716, - "c2": 2.650064341083774, - "c3": 2.8160490482268115, - "c4": 2.5654402876800315, - "c5": 2.4866972339837, - "c6": 2.52266327600671, - "c7": 2.792894925117761 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -124746,23 +124746,23 @@ "year": 1743, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 18.199857387641654, - "c2": -12.019412742916519, - "c3": -6.566513750052394, - "c4": 20.949025713866316, - "c5": 1.828837777378304, - "c6": -17.183737595093824, - "c7": 8.87774769089079 + "points": { + "c1": -3.8907411103570873, + "c2": 18.747109046893225, + "c3": -15.847112232551114, + "c4": -22.43636093820733, + "c5": -15.299110821450943, + "c6": -10.84492221536516, + "c7": -22.586826598808845 }, - "vertexSeeds": { - "c1": 4.126967380908297, - "c2": 4.120665618413152, - "c3": 4.126028898557553, - "c4": 4.150016148474776, - "c5": 4.084124706401371, - "c6": 4.172136288195314, - "c7": 4.054221671330971 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687929, + "c3": 4.993065187239935, + "c4": 3.994452149791958, + "c5": 2.9958391123439645, + "c6": 1.997226074895971, + "c7": 0.998613037447977 }, "rgb": [58, 15, 49] }, @@ -124773,23 +124773,23 @@ "year": 1743, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -28.094189543077896, - "c2": 29.8396255561307, - "c3": 9.225154523485955, - "c4": 32.06355462674095, - "c5": 19.916362692206697, - "c6": -32.07665623814687, - "c7": 19.469737953413677 + "points": { + "c1": 30.564094312338298, + "c2": 24.20466418927883, + "c3": 3.1233961615157995, + "c4": 28.782968450773197, + "c5": -7.4185167265258976, + "c6": 24.23441453854985, + "c7": -36.30277493524999 }, - "vertexSeeds": { - "c1": 3.47832361913231, - "c2": 3.9698438697312493, - "c3": 3.590531404593314, - "c4": 3.982089060962121, - "c5": 3.792186860930522, - "c6": 3.9639083693516945, - "c7": 4.009549705003769 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.79750346740638, + "c3": 4.831252889505317, + "c4": 3.865002311604253, + "c5": 2.89875173370319, + "c6": 1.9325011558021266, + "c7": 0.9662505779010633 }, "rgb": [238, 201, 159] }, @@ -124800,23 +124800,23 @@ "year": 1743, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -3.6242703118058444, - "c2": 3.7396009127841623, - "c3": 8.247962482772621, - "c4": 37.4340331080504, - "c5": 4.659032940199182, - "c6": 33.88008138364583, - "c7": -7.554038881485447 + "points": { + "c1": -24.317364796421266, + "c2": 40.33263097555165, + "c3": -10.887896407989906, + "c4": 21.824475032319896, + "c5": 7.962063361925956, + "c6": -17.60685092084266, + "c7": 39.97287883050758 }, - "vertexSeeds": { - "c1": 6.594555376493519, - "c2": 7.195790960706709, - "c3": 6.165075856740024, - "c4": 6.409877308247184, - "c5": 7.117078727570693, - "c6": 6.542270405458846, - "c7": 7.173729835009542 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565878, + "c3": 8.945908460471562, + "c4": 7.156726768377255, + "c5": 5.367545076282939, + "c6": 3.5783633841886227, + "c7": 1.7891816920943062 }, "rgb": [77, 76, 132] }, @@ -124827,23 +124827,23 @@ "year": 1742, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -17.07986100597594, - "c2": -18.31133965844379, - "c3": -19.068928606417913, - "c4": 14.50717659098295, - "c5": -17.96359812988186, - "c6": 16.199489877706235, - "c7": 11.364277320259035 + "points": { + "c1": 3.6592233265322633, + "c2": -10.015114234458837, + "c3": 8.263298751020244, + "c4": -2.4936826073726372, + "c5": -19.510738426730477, + "c6": -4.189938416608957, + "c7": -2.7416470694396793 }, - "vertexSeeds": { - "c1": 9.954213277325106, - "c2": 9.921771853944014, - "c3": 10.083178339561329, - "c4": 10.643032130406413, - "c5": 10.668603499035745, - "c6": 9.889736936034378, - "c7": 10.632765274245562 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.284327323162287, + "c3": 12.736939435968543, + "c4": 10.189551548774844, + "c5": 7.642163661581144, + "c6": 5.094775774387446, + "c7": 2.547387887193699 }, "rgb": [222, 0, 59] }, @@ -124854,23 +124854,23 @@ "year": 1743, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -21.18911506014199, - "c2": -18.003961371757903, - "c3": -10.085510858185982, - "c4": -16.138515441560386, - "c5": -8.953588462192178, - "c6": 0.060779722195988484, - "c7": 9.113065246459527 + "points": { + "c1": 0.5559875066959883, + "c2": -6.288388695072808, + "c3": 1.738298022735254, + "c4": -21.29199023914248, + "c5": -22.015772290483678, + "c6": -23.05219946958081, + "c7": 17.561544018726458 }, - "vertexSeeds": { - "c1": 1.923575129533679, - "c2": 1.923575129533679, - "c3": 1.923575129533679, - "c4": 1.923575129533679, - "c5": 1.923575129533679, - "c6": 1.923575129533679, - "c7": 1.923575129533679 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -124881,23 +124881,23 @@ "year": 1743, "resistanceReported": true, "duration": 25056000, - "curveSeeds": { - "c1": -5.5123873229500475, - "c2": 20.42498521880568, - "c3": -5.126071871533391, - "c4": 3.7255109645467925, - "c5": 28.823317138015163, - "c6": 28.110349627481405, - "c7": 8.505993864847305 + "points": { + "c1": -15.521761928406402, + "c2": 18.537686693487416, + "c3": -7.463944523955753, + "c4": -31.285910158303984, + "c5": 10.775362269736434, + "c6": 3.4398337300661623, + "c7": 23.005620859538368 }, - "vertexSeeds": { - "c1": 5.741933777904708, - "c2": 5.946778330165449, - "c3": 6.194201238603755, - "c4": 6.166824791185224, - "c5": 5.838987082815975, - "c6": 6.14841157662285, - "c7": 6.260361530888914 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233004, + "c3": 7.6051779935275166, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.0420711974109955, + "c7": 1.5210355987055069 }, "rgb": [86, 146, 138] }, @@ -124908,23 +124908,23 @@ "year": 1744, "resistanceReported": false, "duration": 63331200, - "curveSeeds": { - "c1": -48.5144692318721, - "c2": 61.264707171199504, - "c3": -32.0430731396578, - "c4": 7.359244663892952, - "c5": -18.05067335914123, - "c6": -66.72805940813979, - "c7": -33.325440856359194 + "points": { + "c1": -31.52114968910834, + "c2": 4.439651893115979, + "c3": -77.27695597821305, + "c4": -27.07513908267684, + "c5": 55.05527969259053, + "c6": 60.38734047475192, + "c7": 5.509128295000949 }, - "vertexSeeds": { - "c1": 5.2229901901462785, - "c2": 4.838168156347277, - "c3": 4.936159769778076, - "c4": 5.075471045304717, - "c5": 4.914246133371616, - "c6": 5.074775953219006, - "c7": 4.439317793894533 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -124935,23 +124935,23 @@ "year": 1743, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -27.413857116264943, - "c2": 15.284104840102465, - "c3": 6.687158374369652, - "c4": -0.1363427097155281, - "c5": -34.94970218107168, - "c6": -25.849456936318937, - "c7": -17.265986825552645 + "points": { + "c1": -23.639039641801773, + "c2": 35.996958638898974, + "c3": -10.250716159308787, + "c4": -9.439182141011116, + "c5": -29.480690622741037, + "c6": 21.409950525534818, + "c7": -29.88236971138145 }, - "vertexSeeds": { - "c1": 4.490945103728045, - "c2": 4.629337801401537, - "c3": 4.818349593410549, - "c4": 4.788054320299861, - "c5": 4.694560567919401, - "c6": 4.4003973947899855, - "c7": 4.630475030566437 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095697, + "c3": 5.802126675913086, + "c4": 4.641701340730465, + "c5": 3.4812760055478535, + "c6": 2.3208506703652323, + "c7": 1.1604253351826117 }, "rgb": [222, 0, 59] }, @@ -124962,23 +124962,23 @@ "year": 1743, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 29.366743331545464, - "c2": 5.445752666803408, - "c3": 2.142474094838093, - "c4": 36.94906061764246, - "c5": 29.799719889108943, - "c6": 20.11196136746566, - "c7": -32.52613464889026 + "points": { + "c1": 17.793725752442143, + "c2": -37.053557896287316, + "c3": -35.45474405967098, + "c4": 30.323895446385706, + "c5": -26.96474308354972, + "c6": -14.004100131734297, + "c7": -2.398768203842792 }, - "vertexSeeds": { - "c1": 8.734606418013643, - "c2": 9.121803599679204, - "c3": 8.61172294398718, - "c4": 9.358105332613315, - "c5": 9.398246008531702, - "c6": 8.414398918129786, - "c7": 8.63896468931145 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708734, + "c3": 11.326860841423954, + "c4": 9.061488673139161, + "c5": 6.796116504854367, + "c6": 4.5307443365695885, + "c7": 2.2653721682847943 }, "rgb": [77, 76, 132] }, @@ -124989,23 +124989,23 @@ "year": 1743, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -16.268801500945056, - "c2": 8.262160189007005, - "c3": 27.948933302479986, - "c4": -25.212680971108366, - "c5": 13.8148800877632, - "c6": 8.267205001027484, - "c7": -10.633474060456294 + "points": { + "c1": -18.482179594824775, + "c2": 15.212310204270842, + "c3": 0.8286792106350944, + "c4": -38.319457452445356, + "c5": 18.486132421607678, + "c6": 14.04399312381964, + "c7": 5.7859390767351115 }, - "vertexSeeds": { - "c1": 4.408982938171016, - "c2": 4.141546605697914, - "c3": 4.2154330412685175, - "c4": 4.572726915573598, - "c5": 4.2916602719617, - "c6": 4.884000591848343, - "c7": 5.173176296379172 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.2413314840499305, + "c4": 4.993065187239944, + "c5": 3.744798890429958, + "c6": 2.496532593619972, + "c7": 1.248266296809986 }, "rgb": [238, 201, 159] }, @@ -125016,23 +125016,23 @@ "year": 1743, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -2.37493854495132, - "c2": 23.659663318678156, - "c3": -34.729886639949655, - "c4": -39.100162878180384, - "c5": -5.934090841035541, - "c6": -9.545147827756239, - "c7": -34.16811625190424 + "points": { + "c1": 10.954397046293977, + "c2": 40.27818485186586, + "c3": 50.92590998986476, + "c4": -7.345022698578923, + "c5": 37.84404099900658, + "c6": 42.15264728725752, + "c7": 8.096010544072016 }, - "vertexSeeds": { - "c1": 7.027649839542277, - "c2": 7.359826144962459, - "c3": 7.159947016071658, - "c4": 7.361650333353712, - "c5": 7.433463714443881, - "c6": 7.469570204250548, - "c7": 7.053920246147059 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807211, + "c3": 9.084604715672675, + "c4": 7.26768377253814, + "c5": 5.4507628294036055, + "c6": 3.63384188626907, + "c7": 1.816920943134535 }, "rgb": [58, 15, 49] }, @@ -125043,23 +125043,23 @@ "year": 1743, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 15.580196677420886, - "c2": -33.71983118894849, - "c3": -27.131606296470054, - "c4": 5.230799548983548, - "c5": 21.56784144305655, - "c6": -33.84098081547886, - "c7": 26.840424302175748 + "points": { + "c1": -29.352694919019726, + "c2": 17.757557979622035, + "c3": -8.284656504497171, + "c4": 29.451376013798395, + "c5": -30.754876537286783, + "c6": -16.300647250817313, + "c7": -3.829976128906921 }, - "vertexSeeds": { - "c1": 5.90872921335409, - "c2": 6.379093069832846, - "c3": 6.580496759137503, - "c4": 6.129232851084222, - "c5": 5.865338372573374, - "c6": 6.419079702138531, - "c7": 5.8726378864760065 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037447, + "c3": 8.067498844197875, + "c4": 6.453999075358299, + "c5": 4.840499306518724, + "c6": 3.2269995376791494, + "c7": 1.6134997688395747 }, "rgb": [58, 15, 49] }, @@ -125070,23 +125070,23 @@ "year": 1743, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 15.360333716575397, - "c2": 7.271947730339178, - "c3": -16.272887285109796, - "c4": 6.4182967891178535, - "c5": -4.116402229554154, - "c6": -21.447946411632465, - "c7": -33.993542168307286 + "points": { + "c1": 37.28808440934967, + "c2": -13.398932344052042, + "c3": 8.325777152622123, + "c4": -5.535203065602538, + "c5": -35.952058807527905, + "c6": 17.298346466233838, + "c7": -35.28394696223994 }, - "vertexSeeds": { - "c1": 6.981175907655611, - "c2": 6.3799121863236055, - "c3": 7.026103501822852, - "c4": 6.43411606593512, - "c5": 6.147258402105809, - "c6": 6.440470795079722, - "c7": 6.327238551591971 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801672, + "c3": 8.506703652334723, + "c4": 6.805362921867774, + "c5": 5.104022191400836, + "c6": 3.4026814609338993, + "c7": 1.7013407304669497 }, "rgb": [58, 15, 49] }, @@ -125097,23 +125097,23 @@ "year": 1743, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 3.539386536567143, - "c2": -6.0204109694861, - "c3": -15.051057459147795, - "c4": 22.945513052780193, - "c5": -20.972003712868382, - "c6": -27.64422599362313, - "c7": -26.40558488311629 + "points": { + "c1": -36.95161283430883, + "c2": -20.431476296134907, + "c3": 3.7265575533661277, + "c4": -17.980256567893775, + "c5": -22.98117039858757, + "c6": 38.451708687189225, + "c7": 35.123852620378855 }, - "vertexSeeds": { - "c1": 5.975031747012087, - "c2": 6.615367364902555, - "c3": 6.462395068526953, - "c4": 6.320117786338419, - "c5": 5.994021336596573, - "c6": 6.097788241386613, - "c7": 6.648043429705522 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.73647711511789, + "c3": 8.113730929264905, + "c4": 6.490984743411922, + "c5": 4.868238557558938, + "c6": 3.2454923717059674, + "c7": 1.6227461858529837 }, "rgb": [77, 76, 132] }, @@ -125124,23 +125124,23 @@ "year": 1743, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -3.596286522414033, - "c2": -20.323511950202995, - "c3": 19.182920812918262, - "c4": -30.188564685189913, - "c5": -33.58494133743135, - "c6": 19.148438088628247, - "c7": -26.727369498871475 + "points": { + "c1": 4.830036633824058, + "c2": -9.778317717281276, + "c3": -30.093388918394755, + "c4": -22.007833742727062, + "c5": -20.978113977391985, + "c6": 27.14678545606492, + "c7": 6.924586772014315 }, - "vertexSeeds": { - "c1": 5.853321151274242, - "c2": 5.882817445467798, - "c3": 5.967597039982182, - "c4": 6.013152314887049, - "c5": 5.693290481022964, - "c6": 6.035227527277654, - "c7": 5.6824934005222 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589471, + "c3": 7.235321312991212, + "c4": 5.788257050392982, + "c5": 4.341192787794722, + "c6": 2.894128525196491, + "c7": 1.4470642625982308 }, "rgb": [238, 201, 159] }, @@ -125151,23 +125151,23 @@ "year": 1743, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 34.801100553752676, - "c2": -25.678167217940725, - "c3": 2.6379537919680374, - "c4": -20.962494696541206, - "c5": -13.301331576565318, - "c6": 0.7764983372104055, - "c7": -35.187654703077605 + "points": { + "c1": 35.12558875608656, + "c2": -20.997352699105548, + "c3": 2.428637551351798, + "c4": 21.515899813552743, + "c5": -32.60948305451379, + "c6": 25.09589045803692, + "c7": 22.214288596367552 }, - "vertexSeeds": { - "c1": 5.094523509638313, - "c2": 4.932511804905992, - "c3": 4.792016258953291, - "c4": 4.927280595959519, - "c5": 5.071148639489575, - "c6": 5.090982373689993, - "c7": 4.777279586128705 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.4341192787794625, + "c3": 6.195099398982896, + "c4": 4.956079519186309, + "c5": 3.7170596393897313, + "c6": 2.4780397595931545, + "c7": 1.2390198797965772 }, "rgb": [58, 15, 49] }, @@ -125178,23 +125178,23 @@ "year": 1743, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 10.449140385585594, - "c2": 21.87594084161225, - "c3": 11.663200289950929, - "c4": -22.753728288515028, - "c5": 30.09013776604369, - "c6": 23.185280108370215, - "c7": 27.524516968050072 + "points": { + "c1": 1.9214408962133618, + "c2": 33.603404829707905, + "c3": -6.666180323719445, + "c4": 22.743568212672464, + "c5": -13.860429571047344, + "c6": 23.011890350616213, + "c7": -15.143067444668162 }, - "vertexSeeds": { - "c1": 5.714573210032273, - "c2": 5.790186228174905, - "c3": 5.811494024710039, - "c4": 5.3525547022629985, - "c5": 5.264848937671987, - "c6": 5.770662173648849, - "c7": 5.708657455990641 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605178032 }, "rgb": [86, 146, 138] }, @@ -125205,23 +125205,23 @@ "year": 1744, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": 51.842040850766566, - "c2": -20.466165779664003, - "c3": 27.442629694975125, - "c4": 2.7397276187708712, - "c5": -10.48490538313974, - "c6": 5.468247597205533, - "c7": 45.02541494475122 + "points": { + "c1": 33.099981641712475, + "c2": -33.19171467486633, + "c3": 2.6879177250267077, + "c4": 48.19422602034085, + "c5": 10.734566455059323, + "c6": -59.9682847843926, + "c7": 34.910461893316025 }, - "vertexSeeds": { - "c1": 4.956881544327781, - "c2": 4.8464734762954365, - "c3": 4.800577303394171, - "c4": 5.130852642802332, - "c5": 4.747559524158135, - "c6": 4.963729145989532, - "c7": 4.903975773237295 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -125232,23 +125232,23 @@ "year": 1743, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 8.586957868592211, - "c2": 19.222081296599214, - "c3": -19.597157250501652, - "c4": 18.0424562860822, - "c5": 9.201668507529504, - "c6": 16.39988205098834, - "c7": -7.964165444600765 + "points": { + "c1": 19.671479378019164, + "c2": -4.481083773439234, + "c3": -1.8613343149438073, + "c4": 20.191064403146825, + "c5": -11.34920299861977, + "c6": -22.525125974731885, + "c7": -19.303994250057073 }, - "vertexSeeds": { - "c1": 4.38076323650372, - "c2": 4.469873075059586, - "c3": 4.226740420215004, - "c4": 4.471502937466081, - "c5": 4.242237529757802, - "c6": 4.5775185130626275, - "c7": 4.1826052879555755 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [86, 146, 138] }, @@ -125259,23 +125259,23 @@ "year": 1743, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 9.367792581440618, - "c2": -7.764886385639905, - "c3": -13.755121035317426, - "c4": 22.63042439189246, - "c5": 36.328727590854776, - "c6": -5.378110468642937, - "c7": -39.72697008513028 + "points": { + "c1": -1.0636555439245754, + "c2": 4.8558049103925995, + "c3": 20.303893309342953, + "c4": -20.41501000550034, + "c5": -2.3759309941561852, + "c6": -36.54681096648105, + "c7": -25.348544137790693 }, - "vertexSeeds": { - "c1": 4.454458590513361, - "c2": 4.787285138999764, - "c3": 4.762444980816099, - "c4": 4.639389311374714, - "c5": 4.595945798002618, - "c6": 4.354949519495315, - "c7": 4.313839534292173 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379567, + "c4": 4.623208506703648, + "c5": 3.467406380027736, + "c6": 2.311604253351824, + "c7": 1.155802126675912 }, "rgb": [86, 146, 138] }, @@ -125286,23 +125286,23 @@ "year": 1743, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -8.829471682235624, - "c2": -7.035696006706754, - "c3": -17.176942866133164, - "c4": -2.802326683869648, - "c5": -30.123649759633576, - "c6": 10.779273253398173, - "c7": -26.774948427976298 + "points": { + "c1": 14.691615779096892, + "c2": 21.730790288613747, + "c3": -24.822615673616816, + "c4": -32.79791218373322, + "c5": -8.143135713949633, + "c6": -27.565543332655945, + "c7": -27.46841517838829 }, - "vertexSeeds": { - "c1": 3.533693181223559, - "c2": 3.3375118348933897, - "c3": 3.266109032024124, - "c4": 3.5793750325790934, - "c5": 3.4986012609575963, - "c6": 3.3571825604040613, - "c7": 3.4287385789698055 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682383, + "c3": 4.415164123901992, + "c4": 3.532131299121592, + "c5": 2.6490984743411916, + "c6": 1.7660656495607918, + "c7": 0.8830328247804 }, "rgb": [77, 76, 132] }, @@ -125313,23 +125313,23 @@ "year": 1743, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": 19.09441469186669, - "c2": 19.098638376380038, - "c3": 9.168825772526276, - "c4": 1.4916972615837523, - "c5": -3.8043677113060888, - "c6": -6.837479954293249, - "c7": 14.041090985309104 + "points": { + "c1": -13.005911482504416, + "c2": 1.993340659237134, + "c3": -13.357014065246451, + "c4": 9.995370953975765, + "c5": -1.6852731767426725, + "c6": -17.03416026967306, + "c7": -21.399342262256035 }, - "vertexSeeds": { - "c1": 5.639275538826557, - "c2": 5.839717649686384, - "c3": 6.008694512906263, - "c4": 5.69151286754227, - "c5": 6.190519884610286, - "c6": 6.094900040617608, - "c7": 5.881902358303427 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -125340,23 +125340,23 @@ "year": 1743, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -8.931012397327919, - "c2": 11.616416998547948, - "c3": 1.865926032505989, - "c4": 5.10286970026408, - "c5": -37.366132393641955, - "c6": 17.598039714381535, - "c7": 3.6747331054839236 + "points": { + "c1": 38.66109245102077, + "c2": -9.678698806383402, + "c3": 40.74817946765909, + "c4": -26.5130328110285, + "c5": -2.4579929429487777, + "c6": 5.743258587776758, + "c7": -40.27135912942586 }, - "vertexSeeds": { - "c1": 6.347628458075098, - "c2": 7.068762044301393, - "c3": 6.979390395243665, - "c4": 6.365929977533968, - "c5": 6.533816997789794, - "c6": 6.39041043958308, - "c7": 6.630928225496587 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962546, + "c3": 8.599167822468795, + "c4": 6.87933425797503, + "c5": 5.159500693481266, + "c6": 3.439667128987515, + "c7": 1.7198335644937501 }, "rgb": [222, 0, 59] }, @@ -125367,23 +125367,23 @@ "year": 1743, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 12.421737475927898, - "c2": 20.487621860571863, - "c3": 32.66928842454223, - "c4": -11.098838778979474, - "c5": -11.971457040387996, - "c6": -19.191717771524143, - "c7": 20.785647485390882 + "points": { + "c1": 10.659930199447764, + "c2": 9.125741078346962, + "c3": -15.059502570478475, + "c4": -16.57223559395613, + "c5": -23.729061214441373, + "c6": 4.853573746339478, + "c7": 9.575366369645174 }, - "vertexSeeds": { - "c1": 4.764793827515008, - "c2": 4.689124131371327, - "c3": 4.956244892650352, - "c4": 4.645287703806619, - "c5": 5.166396995770362, - "c6": 5.204107161485029, - "c7": 4.787235543070536 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819695, + "c3": 6.2182154415164135, + "c4": 4.97457235321313, + "c5": 3.7309292649098476, + "c6": 2.487286176606565, + "c7": 1.2436430883032825 }, "rgb": [58, 15, 49] }, @@ -125394,23 +125394,23 @@ "year": 1743, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -21.79636608208117, - "c2": 22.25169108929875, - "c3": -10.584942480761647, - "c4": -0.7644892373590473, - "c5": 9.960330887354385, - "c6": -6.516114126824814, - "c7": -28.518598690597887 + "points": { + "c1": 5.94753945071648, + "c2": 6.122941280719775, + "c3": -10.952486699413349, + "c4": -0.5143708569398378, + "c5": 0.8102591730101558, + "c6": 2.460310875168556, + "c7": 20.2152810414248 }, - "vertexSeeds": { - "c1": 5.982103938043512, - "c2": 5.969929986897607, - "c3": 5.972998969411697, - "c4": 5.984393252854262, - "c5": 5.9797867568883865, - "c6": 5.978283316772655, - "c7": 5.969148006511536 + "offsets": { + "c1": 10, + "c2": 8.571428571428328, + "c3": 7.142857142857224, + "c4": 5.714285714285552, + "c5": 4.285714285714448, + "c6": 2.857142857142776, + "c7": 1.4285714285716722 }, "rgb": [238, 201, 159] }, @@ -125421,23 +125421,23 @@ "year": 1744, "resistanceReported": false, "duration": 46828800, - "curveSeeds": { - "c1": 28.308426742180714, - "c2": 59.40619208290437, - "c3": -60.99800442345281, - "c4": -10.434168063954374, - "c5": -10.567068078316609, - "c6": -47.742613268009315, - "c7": 25.802632231444562 + "points": { + "c1": 1.531036823713464, + "c2": -22.257706192756466, + "c3": 47.42492397545165, + "c4": -10.82248214533275, + "c5": 14.17927269634059, + "c6": 29.971435940506723, + "c7": -43.30089609275708 }, - "vertexSeeds": { - "c1": 10.684247245179565, - "c2": 10.436936368636413, - "c3": 10.309038592214861, - "c4": 9.54395311177272, - "c5": 9.721798247367962, - "c6": 9.682248247697167, - "c7": 10.492585560736176 + "offsets": { + "c1": 18.349514563106798, + "c2": 15.728155339805832, + "c3": 13.106796116504867, + "c4": 10.485436893203874, + "c5": 7.86407766990291, + "c6": 5.242718446601944, + "c7": 2.6213592233009653 }, "rgb": [222, 0, 59] }, @@ -125448,23 +125448,23 @@ "year": 1743, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 31.542493782172805, - "c2": 21.468269841094475, - "c3": 17.986959468147376, - "c4": 15.942359249079452, - "c5": 16.21197220339483, - "c6": -12.104353062344124, - "c7": 14.47943449553393 + "points": { + "c1": -10.281912684146981, + "c2": -2.943674863020412, + "c3": -21.175461528384375, + "c4": 19.40762562938233, + "c5": 32.39203803410972, + "c6": -4.462936122615435, + "c7": 29.89779195850423 }, - "vertexSeeds": { - "c1": 3.5084581731605358, - "c2": 3.7079941341714546, - "c3": 3.5285512847214355, - "c4": 3.5850645900239466, - "c5": 3.7589268446236197, - "c6": 3.1817118933183988, - "c7": 3.608276785819399 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044383, + "c3": 4.623208506703653, + "c4": 3.6985668053629186, + "c5": 2.773925104022189, + "c6": 1.8492834026814593, + "c7": 0.9246417013407296 }, "rgb": [77, 76, 132] }, @@ -125475,23 +125475,23 @@ "year": 1743, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -26.030403225568985, - "c2": 29.713866875604552, - "c3": 30.724477754644795, - "c4": -22.255101146475468, - "c5": -14.737503298227331, - "c6": 14.979252544563657, - "c7": 8.917006754312169 + "points": { + "c1": 7.243041405838085, + "c2": 14.197315986304744, + "c3": -20.59713406617513, + "c4": 25.622630382011998, + "c5": -3.8122961486103435, + "c6": 16.201626312656906, + "c7": -11.043124283658013 }, - "vertexSeeds": { - "c1": 8.647258744000007, - "c2": 7.569537111296175, - "c3": 7.165925327590363, - "c4": 8.074465210794894, - "c5": 8.289332334020113, - "c6": 7.878231702510441, - "c7": 8.180622681770076 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140081, + "c3": 10.425335182616733, + "c4": 8.340268146093385, + "c5": 6.255201109570045, + "c6": 4.170134073046698, + "c7": 2.085067036523349 }, "rgb": [238, 201, 159] }, @@ -125502,23 +125502,23 @@ "year": 1743, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -4.867152163863054, - "c2": 19.173260566021533, - "c3": 5.424148256550559, - "c4": 25.308512328719836, - "c5": 2.778315354684011, - "c6": 10.913197545755828, - "c7": 15.329121571176913 + "points": { + "c1": -32.72725148888959, + "c2": 24.76561876255952, + "c3": -6.017086534019178, + "c4": -38.74651891708399, + "c5": 21.496681067893796, + "c6": 20.236281458932176, + "c7": -31.189403867517786 }, - "vertexSeeds": { - "c1": 4.9524041423858005, - "c2": 6.015468153791362, - "c3": 5.167399940043398, - "c4": 5.030119989118897, - "c5": 5.090479068508111, - "c6": 5.891788699953982, - "c7": 5.658551739647969 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509015, + "c3": 7.18908922792418, + "c4": 5.751271382339343, + "c5": 4.3134535367545075, + "c6": 2.8756356911696717, + "c7": 1.4378178455848358 }, "rgb": [58, 15, 49] }, @@ -125529,23 +125529,23 @@ "year": 1743, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 6.139824593856744, - "c2": -28.765051713705816, - "c3": 4.616797855454408, - "c4": 27.685356870300083, - "c5": 25.59420282199592, - "c6": 3.765859375023652, - "c7": -8.726368120604672 + "points": { + "c1": -8.946823919392415, + "c2": 38.455835117178296, + "c3": -31.65332909844297, + "c4": 23.384212805213224, + "c5": 1.9214769836464143, + "c6": 22.610213068705157, + "c7": -13.030794983143796 }, - "vertexSeeds": { - "c1": 2.827634908552094, - "c2": 2.6796272609593235, - "c3": 2.7830883169162686, - "c4": 2.639121023838384, - "c5": 2.664311168548917, - "c6": 2.7014306114377216, - "c7": 2.607680514063321 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [58, 15, 49] }, @@ -125556,23 +125556,23 @@ "year": 1743, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -31.466929036690672, - "c2": -15.85254183933872, - "c3": -28.78439423906549, - "c4": 5.480819469965638, - "c5": -0.36849006189682854, - "c6": 36.34274342179522, - "c7": -36.63754560022299 + "points": { + "c1": -22.799658588892857, + "c2": -13.4007718202825, + "c3": 19.23545105220324, + "c4": 4.846693693002429, + "c5": 8.1726879713353, + "c6": 1.9600923613614967, + "c7": 2.412632566152574 }, - "vertexSeeds": { - "c1": 4.510661952418776, - "c2": 4.879850727014104, - "c3": 4.6008937016799605, - "c4": 4.536822227354518, - "c5": 4.891808639233518, - "c6": 5.042900414095378, - "c7": 4.643637270308426 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538144, + "c3": 6.056403143781783, + "c4": 4.845122515025428, + "c5": 3.633841886269072, + "c6": 2.4225612575127164, + "c7": 1.2112806287563558 }, "rgb": [222, 0, 59] }, @@ -125583,23 +125583,23 @@ "year": 1743, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 20.874545390959224, - "c2": 10.489832731145956, - "c3": -9.849721558673629, - "c4": -14.606376799880158, - "c5": 1.3257870275047523, - "c6": 18.186263228113486, - "c7": 30.488877303994872 + "points": { + "c1": 27.000858510236732, + "c2": 32.234746062088135, + "c3": -25.30747004027694, + "c4": 6.551726421282346, + "c5": 11.502396837626577, + "c6": 26.724935688166482, + "c7": -1.7430951486233042 }, - "vertexSeeds": { - "c1": 4.3043221795007165, - "c2": 4.322127130118726, - "c3": 4.257500883338501, - "c4": 4.5483464971034575, - "c5": 4.3234906987525665, - "c6": 4.547867366172404, - "c7": 4.520913634022863 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.65742024965326, + "c3": 5.547850208044384, + "c4": 4.438280166435509, + "c5": 3.3287101248266264, + "c6": 2.2191400832177512, + "c7": 1.1095700416088756 }, "rgb": [222, 0, 59] }, @@ -125610,23 +125610,23 @@ "year": 1743, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -42.312065881368284, - "c2": -39.18267014399162, - "c3": 43.05017467204571, - "c4": 21.563978332455463, - "c5": -13.93843401210503, - "c6": -13.506699733979396, - "c7": -7.402516155845035 + "points": { + "c1": -0.11870792758085713, + "c2": 25.145620629057092, + "c3": 6.073953867687905, + "c4": -4.544083951197358, + "c5": -33.933957215131215, + "c6": -29.218303485574925, + "c7": 5.014141198091053 }, - "vertexSeeds": { - "c1": 5.150450981190644, - "c2": 5.4738532853934245, - "c3": 5.059334679170129, - "c4": 5.669177452790086, - "c5": 5.321651751162058, - "c6": 5.089759607125597, - "c7": 5.278430761168736 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.8885806749884475, + "c4": 5.510864539990756, + "c5": 4.133148404993063, + "c6": 2.7554322699953713, + "c7": 1.377716134997692 }, "rgb": [58, 15, 49] }, @@ -125637,23 +125637,23 @@ "year": 1743, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -8.371901443649943, - "c2": 15.895422053595613, - "c3": -5.171446579716722, - "c4": -28.897968226846643, - "c5": -18.278677171257772, - "c6": 15.243690455570057, - "c7": 11.020437771405039 + "points": { + "c1": -14.428983752306532, + "c2": -29.775180988090543, + "c3": 25.138635076961947, + "c4": -30.05863155046783, + "c5": -5.692321427991352, + "c6": 6.894899391373478, + "c7": 18.03602899199516 }, - "vertexSeeds": { - "c1": 5.6799785520144574, - "c2": 5.186841734491309, - "c3": 5.044790968548647, - "c4": 5.255514162193659, - "c5": 4.935026485607752, - "c6": 5.305318269066579, - "c7": 5.7575988603585495 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055482, + "c4": 5.547850208044377, + "c5": 4.160887656033283, + "c6": 2.7739251040221884, + "c7": 1.3869625520110942 }, "rgb": [86, 146, 138] }, @@ -125664,23 +125664,23 @@ "year": 1744, "resistanceReported": false, "duration": 44323200, - "curveSeeds": { - "c1": -55.15846849453831, - "c2": 11.702534205355178, - "c3": -7.157374867534038, - "c4": 53.834217734147614, - "c5": -57.22987296651067, - "c6": -50.68825247969052, - "c7": -4.745183914776298 + "points": { + "c1": -28.310503005792185, + "c2": -25.698815280450233, + "c3": -13.791938857687455, + "c4": 2.6024636344388057, + "c5": 60.07485659062982, + "c6": -59.187255003600455, + "c7": 4.697354986432714 }, - "vertexSeeds": { - "c1": 4.240336402431961, - "c2": 4.452654765187566, - "c3": 4.465771251304578, - "c4": 4.585682357410151, - "c5": 4.488014957471985, - "c6": 4.443572277833404, - "c7": 4.70085936595101 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -125691,23 +125691,23 @@ "year": 1743, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -28.39369926137647, - "c2": -26.212337899548274, - "c3": -11.91743879473346, - "c4": 4.411902812989737, - "c5": -26.918871328914186, - "c6": -9.984572469825018, - "c7": 9.457197683624386 + "points": { + "c1": -6.432344108883395, + "c2": 0.7285045111951689, + "c3": 2.586895125485654, + "c4": -26.26660854495796, + "c5": -1.7259633666926248, + "c6": -24.586094540582465, + "c7": 29.325843941343976 }, - "vertexSeeds": { - "c1": 10.108193229753379, - "c2": 10.078093470880331, - "c3": 10.173747023074, - "c4": 10.164233661147055, - "c5": 10.145485855066418, - "c6": 10.074912695077828, - "c7": 10.180877553735701 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116575, + "c3": 12.135922330096983, + "c4": 9.708737864077635, + "c5": 7.281553398058287, + "c6": 4.8543689320389385, + "c7": 2.4271844660193485 }, "rgb": [222, 0, 59] }, @@ -125718,23 +125718,23 @@ "year": 1743, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 16.491822824569105, - "c2": -12.89736386462912, - "c3": 30.381873434961967, - "c4": -31.431053931991727, - "c5": 30.1425677978419, - "c6": 28.012477376355058, - "c7": 32.8368228357181 + "points": { + "c1": 20.879751995093677, + "c2": -8.972092183572485, + "c3": -8.551167692683165, + "c4": 4.570991168292899, + "c5": 17.229160803991995, + "c6": 35.82015643227469, + "c7": 13.962266832378049 }, - "vertexSeeds": { - "c1": 4.871131413285458, - "c2": 4.631845454772791, - "c3": 5.175255949600484, - "c4": 4.2068128737733606, - "c5": 4.362521266132628, - "c6": 4.406383721552952, - "c7": 4.47254003470034 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -125745,23 +125745,23 @@ "year": 1743, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 11.688243104810631, - "c2": -13.719425759419007, - "c3": 19.873317109718563, - "c4": -13.11894444892014, - "c5": 15.641542701169044, - "c6": -13.483626492673395, - "c7": 12.15091867454911 + "points": { + "c1": 9.267992287603533, + "c2": 0.45649383500243346, + "c3": -4.690768501282584, + "c4": -17.729484059989034, + "c5": 28.56258757196099, + "c6": -18.3234281615062, + "c7": -9.079622847590084 }, - "vertexSeeds": { - "c1": 4.523982768896046, - "c2": 4.302695195969654, - "c3": 5.000945483625864, - "c4": 4.692191630720391, - "c5": 4.391169253924634, - "c6": 4.716993432855004, - "c7": 4.10690555941269 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417476, + "c3": 5.987055016181231, + "c4": 4.789644012944986, + "c5": 3.592233009708741, + "c6": 2.3948220064724905, + "c7": 1.1974110032362504 }, "rgb": [77, 76, 132] }, @@ -125772,23 +125772,23 @@ "year": 1743, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -5.402624806277625, - "c2": 21.421215040292896, - "c3": -15.29084864091558, - "c4": 26.535789510674118, - "c5": -1.2496092298699857, - "c6": -17.499686876510815, - "c7": 20.099283055620692 + "points": { + "c1": 27.570021825436438, + "c2": -7.607695656756121, + "c3": -28.673851315583473, + "c4": -19.770532547226132, + "c5": 3.005464127681595, + "c6": -7.793142747178969, + "c7": -8.992549517563624 }, - "vertexSeeds": { - "c1": 4.393083607686194, - "c2": 4.436455293698182, - "c3": 4.4310208566595435, - "c4": 4.019930126912208, - "c5": 4.433857168872001, - "c6": 4.387777147198446, - "c7": 4.37171810323006 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331487, + "c3": 5.362921867776235, + "c4": 4.290337494220991, + "c5": 3.2177531206657397, + "c6": 2.1451687471104957, + "c7": 1.0725843735552523 }, "rgb": [238, 201, 159] }, @@ -125799,23 +125799,23 @@ "year": 1744, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 26.996225043079193, - "c2": -1.3696963926491676, - "c3": 3.8952744531281027, - "c4": 20.4180783579437, - "c5": 30.217357388656694, - "c6": 19.34797781079527, - "c7": -9.612452094353642 + "points": { + "c1": 0.7866499941192018, + "c2": 47.00865142331082, + "c3": 25.15580664213124, + "c4": 31.955858356655327, + "c5": -9.557610477743935, + "c6": -20.373233833371042, + "c7": 33.56847766696107 }, - "vertexSeeds": { - "c1": 5.28397569158959, - "c2": 5.242306525118959, - "c3": 4.575039786342639, - "c4": 4.743775736759288, - "c5": 4.936083244173421, - "c6": 4.897762483606533, - "c7": 5.094169372880402 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -125826,23 +125826,23 @@ "year": 1743, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 19.764405057416788, - "c2": -19.116276870179473, - "c3": -5.351384100388589, - "c4": 5.8267466768941105, - "c5": 32.17087587407387, - "c6": -16.825189797755687, - "c7": -4.636646977988846 + "points": { + "c1": -12.760940081834182, + "c2": 17.552718378676893, + "c3": -29.080976220275133, + "c4": -7.870770474599347, + "c5": 3.6609579850920753, + "c6": 11.823978046023711, + "c7": -28.530245350858056 }, - "vertexSeeds": { - "c1": 3.099958021998043, - "c2": 2.8999278802798427, - "c3": 2.8658802946474755, - "c4": 2.9235006266303776, - "c5": 3.0839497279120476, - "c6": 2.9665295193077377, - "c7": 2.9710848226710556 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.52149791955617, + "c3": 3.7679149329634742, + "c4": 3.0143319463707856, + "c5": 2.2607489597780894, + "c6": 1.5071659731853928, + "c7": 0.7535829865926964 }, "rgb": [77, 76, 132] }, @@ -125853,23 +125853,23 @@ "year": 1743, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -26.20659385654341, - "c2": 10.340344458013192, - "c3": 11.870701600977746, - "c4": -31.91916953270549, - "c5": -33.07250585440633, - "c6": -32.30061541697873, - "c7": 11.672079543321274 + "points": { + "c1": -5.1305716502347, + "c2": 5.047387572846084, + "c3": -6.76697214182785, + "c4": 17.044857138204506, + "c5": 32.34103260596849, + "c6": -28.302040989372866, + "c7": -14.061515096567298 }, - "vertexSeeds": { - "c1": 9.366549126340699, - "c2": 9.179786120334349, - "c3": 9.18698990005533, - "c4": 9.340728646572156, - "c5": 9.268007144263457, - "c6": 9.243347798555453, - "c7": 9.275837572477425 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467429, + "c3": 11.188164586222804, + "c4": 8.95053166897826, + "c5": 6.712898751733714, + "c6": 4.47526583448917, + "c7": 2.2376329172445444 }, "rgb": [238, 201, 159] }, @@ -125880,23 +125880,23 @@ "year": 1743, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -6.00192804049426, - "c2": 7.275240759985252, - "c3": 24.451042853872075, - "c4": 19.53459367608974, - "c5": 4.327272876248848, - "c6": -23.675951499527045, - "c7": -13.563807141437309 + "points": { + "c1": -13.54678527141861, + "c2": -30.730943938783454, + "c3": 20.781845859601276, + "c4": 5.673112766555121, + "c5": -33.94142291026881, + "c6": -8.820390558136044, + "c7": -24.66629394862128 }, - "vertexSeeds": { - "c1": 9.363283734730526, - "c2": 9.188923621109934, - "c3": 9.28289883502744, - "c4": 9.354669542233871, - "c5": 9.22781636359931, - "c6": 9.229483604907955, - "c7": 9.361546453940653 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467429, + "c3": 11.188164586222804, + "c4": 8.95053166897826, + "c5": 6.712898751733714, + "c6": 4.47526583448917, + "c7": 2.2376329172445444 }, "rgb": [77, 76, 132] }, @@ -125907,23 +125907,23 @@ "year": 1744, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": 19.270115111916205, - "c2": 44.85831459723777, - "c3": -7.153415659281521, - "c4": -47.14093740293416, - "c5": -16.125265660915474, - "c6": -19.897730633927296, - "c7": 49.49261285901327 + "points": { + "c1": 53.14121381948373, + "c2": 19.017474238363597, + "c3": 14.122034892165765, + "c4": -61.44128908898376, + "c5": -24.037215850954098, + "c6": -36.05822316111218, + "c7": 5.183847910165618 }, - "vertexSeeds": { - "c1": 1.3048562963782528, - "c2": 1.22509969347381, - "c3": 1.200250012707939, - "c4": 1.172400823002223, - "c5": 1.3312896027886854, - "c6": 1.1867390325651541, - "c7": 1.3307725643186719 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.941747572815534, + "c3": 1.6181229773462784, + "c4": 1.2944983818770226, + "c5": 0.970873786407767, + "c6": 0.6472491909385113, + "c7": 0.32362459546925565 }, "rgb": [86, 146, 138] }, @@ -125934,23 +125934,23 @@ "year": 1743, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 33.95659992266264, - "c2": -30.211526282069492, - "c3": 8.675925635992591, - "c4": 16.495773068253698, - "c5": 39.166293932684404, - "c6": 19.48966998937162, - "c7": -12.688500659659994 + "points": { + "c1": -22.523743337887602, + "c2": 32.719070875449894, + "c3": 22.104551442575236, + "c4": 40.72044384527316, + "c5": 28.78932435784838, + "c6": -36.81257842462677, + "c7": -7.320210273498766 }, - "vertexSeeds": { - "c1": 8.78341813050473, - "c2": 8.77078263626362, - "c3": 8.567407432925476, - "c4": 8.718969828000755, - "c5": 8.54219989294875, - "c6": 8.577496372670923, - "c7": 8.777482135958149 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300948, + "c3": 10.517799352750817, + "c4": 8.414239482200632, + "c5": 6.310679611650501, + "c6": 4.207119741100316, + "c7": 2.10355987055013 }, "rgb": [238, 201, 159] }, @@ -125961,23 +125961,23 @@ "year": 1744, "resistanceReported": false, "duration": 50112000, - "curveSeeds": { - "c1": 56.765401878874, - "c2": 60.22157777627412, - "c3": -14.640201020805357, - "c4": 2.7470240927616203, - "c5": -7.581172764949443, - "c6": 60.108680950801045, - "c7": 47.50579236678557 + "points": { + "c1": -25.34714966652625, + "c2": 43.961389013188835, + "c3": 31.05932132691389, + "c4": -40.334084280342076, + "c5": 3.4193090970506006, + "c6": -12.5080886757764, + "c7": -41.89673134723055 }, - "vertexSeeds": { - "c1": 2.054063673979977, - "c2": 2.0456260654596794, - "c3": 1.9692348962573234, - "c4": 1.8299486358772594, - "c5": 1.775482351199214, - "c6": 1.889702549697874, - "c7": 1.8685553606018246 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.968099861303744, + "c3": 2.4734165510864523, + "c4": 1.9787332408691634, + "c5": 1.484049930651872, + "c6": 0.9893666204345802, + "c7": 0.4946833102172916 }, "rgb": [86, 146, 138] }, @@ -125988,23 +125988,23 @@ "year": 1743, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -33.87617714687088, - "c2": 10.567715413883583, - "c3": -11.28813636948112, - "c4": 15.267790169557152, - "c5": -9.84630672566022, - "c6": 35.09932562687366, - "c7": -40.78973607337473 + "points": { + "c1": -24.361100491064917, + "c2": 0.5591238928900779, + "c3": -1.8046228542815328, + "c4": 41.73811297182133, + "c5": 14.53794865460538, + "c6": 37.83784433557708, + "c7": 33.9906465027292 }, - "vertexSeeds": { - "c1": 5.614464409497879, - "c2": 5.372652623035066, - "c3": 5.513190367130237, - "c4": 5.657193344962675, - "c5": 5.083379885250972, - "c6": 5.302077595211587, - "c7": 5.634576521262141 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147023, + "c3": 6.981044845122513, + "c4": 5.584835876098016, + "c5": 4.188626907073505, + "c6": 2.792417938049008, + "c7": 1.3962089690244974 }, "rgb": [77, 76, 132] }, @@ -126015,23 +126015,23 @@ "year": 1744, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": -49.58710826847043, - "c2": 31.548440871945104, - "c3": -8.825662750132565, - "c4": 1.717321564906456, - "c5": 1.6747091665779692, - "c6": -34.70957425547195, - "c7": 17.95740516446527 + "points": { + "c1": -2.5389918159336986, + "c2": 32.87451263189118, + "c3": 2.020137569234329, + "c4": 9.697160341130932, + "c5": -35.44217989633634, + "c6": -1.851363627285373, + "c7": 35.26959630665107 }, - "vertexSeeds": { - "c1": 3.2057495592796186, - "c2": 3.143537750102705, - "c3": 3.1856008773367415, - "c4": 3.039171019947882, - "c5": 3.3549299439500455, - "c6": 3.1036268460077823, - "c7": 3.038244782153189 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719367, + "c5": 2.441054091539525, + "c6": 1.6273693943596834, + "c7": 0.8136846971798417 }, "rgb": [77, 76, 132] }, @@ -126042,23 +126042,23 @@ "year": 1744, "resistanceReported": false, "duration": 56246400, - "curveSeeds": { - "c1": -22.37793945718925, - "c2": 38.87248441465354, - "c3": 27.39024368003244, - "c4": 33.60166896410465, - "c5": -55.02541287711425, - "c6": -1.1087935303929015, - "c7": -25.134355068612294 + "points": { + "c1": -10.946270514793447, + "c2": -32.77994711918683, + "c3": -62.39358367015612, + "c4": -26.73808422687015, + "c5": 24.443270532126007, + "c6": 49.9242499667063, + "c7": 48.37801207555397 }, - "vertexSeeds": { - "c1": 5.745936043000511, - "c2": 5.6324792246715205, - "c3": 5.523310259517342, - "c4": 5.894868167561502, - "c5": 5.752264331547501, - "c6": 5.682685627643633, - "c7": 5.719699148582785 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.5991678224688, + "c3": 7.165973185390651, + "c4": 5.732778548312526, + "c5": 4.2995839112344, + "c6": 2.8663892741562518, + "c7": 1.4331946370781259 }, "rgb": [238, 201, 159] }, @@ -126069,23 +126069,23 @@ "year": 1744, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 50.37358410511008, - "c2": -38.601073576457594, - "c3": 48.07523936319791, - "c4": -17.592582091787328, - "c5": -43.435360554147394, - "c6": -9.784993167159726, - "c7": 31.61557616241889 + "points": { + "c1": -18.857701427172856, + "c2": -52.75099097240844, + "c3": -46.75666841158302, + "c4": -17.524849437837787, + "c5": -17.222339213890216, + "c6": 19.32489284058758, + "c7": -1.60540054387058 }, - "vertexSeeds": { - "c1": 5.002853277135548, - "c2": 5.224445701273802, - "c3": 5.342523337422619, - "c4": 5.014022349059932, - "c5": 4.901927732294439, - "c6": 5.307116686728174, - "c7": 4.683665284850416 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302355, + "c3": 6.495607951918625, + "c4": 5.196486361534908, + "c5": 3.8973647711511776, + "c6": 2.5982431807674478, + "c7": 1.2991215903837239 }, "rgb": [58, 15, 49] }, @@ -126096,23 +126096,23 @@ "year": 1743, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -3.442478734314996, - "c2": -27.320107538878776, - "c3": 6.225510684158628, - "c4": 20.613528360291404, - "c5": 1.2808817484346946, - "c6": -12.370003483662863, - "c7": -23.166680027697453 + "points": { + "c1": -20.182299478348156, + "c2": 4.167315066410914, + "c3": -17.03267209354812, + "c4": 6.372071735355426, + "c5": -24.881276224732915, + "c6": -26.618850396612274, + "c7": -32.03809531616844 }, - "vertexSeeds": { - "c1": 8.982494954236989, - "c2": 9.108331430539447, - "c3": 8.688788734350346, - "c4": 8.829453112683321, - "c5": 8.559706220834556, - "c6": 8.82670745098017, - "c7": 8.94370956210728 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306515, + "c3": 11.095700416088757, + "c4": 8.876560332871025, + "c5": 6.657420249653268, + "c6": 4.438280166435512, + "c7": 2.219140083217756 }, "rgb": [77, 76, 132] }, @@ -126123,23 +126123,23 @@ "year": 1743, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -4.7674521617429235, - "c2": 24.99650615684955, - "c3": -9.283664723362374, - "c4": -37.00694643495087, - "c5": -31.131883339453477, - "c6": 12.762668683648855, - "c7": -34.86514577220019 + "points": { + "c1": 11.519367976652347, + "c2": 18.99807568201892, + "c3": 14.152438165783678, + "c4": -34.35125543934069, + "c5": 26.860161383551258, + "c6": -22.412264827053082, + "c7": 4.017728788514589 }, - "vertexSeeds": { - "c1": 8.604937399734995, - "c2": 8.32633701892264, - "c3": 8.417664513369159, - "c4": 8.333888188413868, - "c5": 8.592311345569595, - "c6": 8.541895579489962, - "c7": 8.389617536754292 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938988, + "c3": 10.309754969949172, + "c4": 8.24780397595931, + "c5": 6.185852981969494, + "c6": 4.123901987979678, + "c7": 2.061950993989862 }, "rgb": [86, 146, 138] }, @@ -126150,23 +126150,23 @@ "year": 1744, "resistanceReported": false, "duration": 45532800, - "curveSeeds": { - "c1": 51.458213207136716, - "c2": 31.994408668268896, - "c3": -19.258833394462407, - "c4": -28.21287930757117, - "c5": 7.394878604888298, - "c6": 41.0837992555443, - "c7": -54.95556761777275 + "points": { + "c1": -54.37815005046555, + "c2": 6.866347417514781, + "c3": -46.802371248141725, + "c4": -31.064905845002762, + "c5": -28.85620789158383, + "c6": 8.368295588405026, + "c7": 25.68988053210665 }, - "vertexSeeds": { - "c1": 8.201969094880917, - "c2": 8.497674663822771, - "c3": 7.843726711449052, - "c4": 8.099150901205173, - "c5": 7.797612639472018, - "c6": 7.784654819245567, - "c7": 7.6611737061798255 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657424, + "c3": 10.147942672214521, + "c4": 8.118354137771606, + "c5": 6.088765603328705, + "c6": 4.059177068885803, + "c7": 2.0295885344429014 }, "rgb": [77, 76, 132] }, @@ -126177,23 +126177,23 @@ "year": 1743, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 18.41226766233565, - "c2": -5.048070666734283, - "c3": -3.698002373832118, - "c4": 3.871335285060887, - "c5": 11.712344749544116, - "c6": 20.40640859287941, - "c7": 18.017576458293732 + "points": { + "c1": -35.14734825018935, + "c2": 5.2061849868089, + "c3": -35.47049723356953, + "c4": 0.9930073400112605, + "c5": -36.33123849081952, + "c6": -25.94690852672956, + "c7": 38.54732406003687 }, - "vertexSeeds": { - "c1": 4.094882578522602, - "c2": 4.1236921827872735, - "c3": 4.094592094773244, - "c4": 4.009548446179799, - "c5": 4.133055405475736, - "c6": 4.048817220595286, - "c7": 4.08145970130172 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [77, 76, 132] }, @@ -126204,23 +126204,23 @@ "year": 1743, "resistanceReported": true, "duration": 8294400, - "curveSeeds": { - "c1": -12.613767068399056, - "c2": -2.1128925873722366, - "c3": -1.3789353012106567, - "c4": 7.100936657597995, - "c5": -5.233597561680876, - "c6": -8.42484727012254, - "c7": 5.508967190877684 + "points": { + "c1": -18.207031245592162, + "c2": 14.011655074909932, + "c3": -8.884286697923724, + "c4": -14.269740240572883, + "c5": -1.1208203508997912, + "c6": -14.581874563018372, + "c7": 7.707534724864782 }, - "vertexSeeds": { - "c1": 8.033245590818703, - "c2": 8.530423658805155, - "c3": 7.771057092845806, - "c4": 8.453409205394918, - "c5": 7.921509105717011, - "c6": 7.912049359473335, - "c7": 7.775301434553249 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099868, + "c3": 10.402219140083213, + "c4": 8.321775312066578, + "c5": 6.241331484049926, + "c6": 4.160887656033289, + "c7": 2.0804438280166364 }, "rgb": [77, 76, 132] }, @@ -126231,23 +126231,23 @@ "year": 1743, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 16.18027271236616, - "c2": -28.22753252995607, - "c3": 31.731032045448046, - "c4": 30.209312445253772, - "c5": 31.068027835483633, - "c6": -9.25109908490617, - "c7": 22.596790096178083 + "points": { + "c1": 8.119946042388833, + "c2": -29.200081734294848, + "c3": 18.24616508622377, + "c4": -5.335240429079175, + "c5": -8.886091854785004, + "c6": 6.638707188492766, + "c7": 6.179382878023674 }, - "vertexSeeds": { - "c1": 6.651319262575774, - "c2": 6.900550394762662, - "c3": 6.637082617269759, - "c4": 6.96344036615346, - "c5": 6.971710548050676, - "c6": 6.690404583124756, - "c7": 6.936730502603209 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560346, + "c3": 8.368007397133605, + "c4": 6.694405917706898, + "c5": 5.020804438280156, + "c6": 3.347202958853449, + "c7": 1.6736014794267076 }, "rgb": [222, 0, 59] }, @@ -126258,23 +126258,23 @@ "year": 1743, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 25.624301626507567, - "c2": 28.399985512380802, - "c3": -3.098437253617689, - "c4": -5.071581159508941, - "c5": 1.0722264320566879, - "c6": -17.86955170518068, - "c7": -31.21486298010544 + "points": { + "c1": -30.675820228068226, + "c2": -21.538495520428054, + "c3": 16.18171478774127, + "c4": 2.680636369115277, + "c5": -9.35627302439094, + "c6": 21.573785459430447, + "c7": 22.890438462059407 }, - "vertexSeeds": { - "c1": 3.0644228809955467, - "c2": 3.011160627529394, - "c3": 2.824168021722887, - "c4": 2.9879716573052, - "c5": 3.1581444677279236, - "c6": 3.2897986080538693, - "c7": 3.0202189396677106 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.90984743411928, + "c3": 4.091539528432735, + "c4": 3.2732316227461853, + "c5": 2.45492371705964, + "c6": 1.636615811373095, + "c7": 0.8183079056865501 }, "rgb": [77, 76, 132] }, @@ -126285,23 +126285,23 @@ "year": 1743, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 7.5673981849106156, - "c2": 24.91695348474162, - "c3": -17.42567460405029, - "c4": -3.915800199152308, - "c5": -26.887494594161602, - "c6": -23.375450169041706, - "c7": 34.111975513486854 + "points": { + "c1": -5.815278935051161, + "c2": 33.14867666588002, + "c3": -25.522130585117367, + "c4": -2.2777849189348274, + "c5": -32.473178297908206, + "c6": -6.852168194628, + "c7": -4.2453610648105595 }, - "vertexSeeds": { - "c1": 6.490245189053933, - "c2": 6.938607889633852, - "c3": 6.682483174454188, - "c4": 7.327171125963336, - "c5": 6.839630650206766, - "c6": 6.553095554676048, - "c7": 7.05735251231067 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471568, + "c4": 7.156726768377254, + "c5": 5.367545076282941, + "c6": 3.578363384188627, + "c7": 1.7891816920943135 }, "rgb": [86, 146, 138] }, @@ -126312,23 +126312,23 @@ "year": 1744, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -19.292327053521127, - "c2": -7.9637084332017665, - "c3": 25.778654584312207, - "c4": 26.466079016489658, - "c5": 17.274547036397614, - "c6": -19.35822012545358, - "c7": 15.837891357055824 + "points": { + "c1": -0.3709080886267344, + "c2": 13.49652686910558, + "c3": 25.815362298494705, + "c4": 21.6318746554621, + "c5": -0.5867040176276959, + "c6": -30.890844767386113, + "c7": -11.997071350758002 }, - "vertexSeeds": { - "c1": 4.1058415418191485, - "c2": 4.234305370451289, - "c3": 4.1740982416072026, - "c4": 3.954507616691536, - "c5": 3.8708430831955596, - "c6": 3.858985080471044, - "c7": 4.239238698964127 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [86, 146, 138] }, @@ -126339,23 +126339,23 @@ "year": 1744, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -32.84682604287262, - "c2": 29.537848517454464, - "c3": -6.234344576316914, - "c4": 12.030335959530007, - "c5": 13.293944843487928, - "c6": 31.903114895259293, - "c7": 17.489995268746185 + "points": { + "c1": 3.4934063944240634, + "c2": 16.627958273640452, + "c3": 2.6785905079727, + "c4": 12.041146420428824, + "c5": -5.798356561445409, + "c6": -16.176788091443473, + "c7": -10.004220988079872 }, - "vertexSeeds": { - "c1": 8.998915936939273, - "c2": 9.161970790762998, - "c3": 8.366481127196675, - "c4": 8.392880698036949, - "c5": 8.358133672147428, - "c6": 9.0798894729876, - "c7": 8.693600741646822 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105418, + "c3": 10.980120203421176, + "c4": 8.784096162736937, + "c5": 6.588072122052709, + "c6": 4.392048081368481, + "c7": 2.1960240406842404 }, "rgb": [238, 201, 159] }, @@ -126366,23 +126366,23 @@ "year": 1743, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -23.197388687475385, - "c2": -18.943550197676792, - "c3": -21.295900886705027, - "c4": 25.61991932307182, - "c5": -25.096558956892984, - "c6": -3.406480940173193, - "c7": -31.784056619376205 + "points": { + "c1": -14.1444667111057, + "c2": 14.099690068007583, + "c3": 34.467426610275396, + "c4": -28.533139116413505, + "c5": -4.600776711341442, + "c6": 0.15042154786659978, + "c7": -17.244620735567228 }, - "vertexSeeds": { - "c1": 8.13687989931803, - "c2": 8.057121586496825, - "c3": 7.961928024617008, - "c4": 7.983337338563069, - "c5": 8.125732006197945, - "c6": 8.126903135312764, - "c7": 7.96612444170585 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893229, + "c3": 9.70873786407766, + "c4": 7.766990291262153, + "c5": 5.825242718446585, + "c6": 3.8834951456310765, + "c7": 1.9417475728155085 }, "rgb": [222, 0, 59] }, @@ -126393,23 +126393,23 @@ "year": 1743, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 0.017524355917025503, - "c2": 36.354574007481446, - "c3": -13.514600271842983, - "c4": -20.84619943997461, - "c5": 8.416093514637446, - "c6": 13.52788683956122, - "c7": 10.8451174971742 + "points": { + "c1": 4.069816543558602, + "c2": 12.08774178174886, + "c3": 20.460021708331475, + "c4": -14.337441919879392, + "c5": 11.462526658506825, + "c6": -36.16365941973121, + "c7": -18.77811144601676 }, - "vertexSeeds": { - "c1": 8.47052627323022, - "c2": 8.135478868960861, - "c3": 8.28192449443706, - "c4": 8.837560859687638, - "c5": 8.49269487239933, - "c6": 8.740700311082463, - "c7": 8.921854050481747 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467411, + "c3": 11.188164586222832, + "c4": 8.950531668978268, + "c5": 6.7128987517337055, + "c6": 4.475265834489128, + "c7": 2.237632917244564 }, "rgb": [77, 76, 132] }, @@ -126420,23 +126420,23 @@ "year": 1744, "resistanceReported": false, "duration": 53136000, - "curveSeeds": { - "c1": -14.312511746308495, - "c2": -45.80394664210543, - "c3": 24.368127838274972, - "c4": -41.40689170809273, - "c5": 36.883007978242745, - "c6": -15.835531402914818, - "c7": -10.125704178925837 + "points": { + "c1": -41.91113432974497, + "c2": 49.50703540407038, + "c3": 30.582237365769544, + "c4": 52.1374768834161, + "c5": -29.080238374728147, + "c6": 44.853715929735415, + "c7": -69.26352929618885 }, - "vertexSeeds": { - "c1": 6.3387583908645, - "c2": 6.009594415114386, - "c3": 6.1562385146857945, - "c4": 6.68036805530525, - "c5": 6.555817385670152, - "c6": 6.242368681275419, - "c7": 6.434672079287432 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.73647711511789, + "c3": 8.113730929264905, + "c4": 6.490984743411922, + "c5": 4.868238557558938, + "c6": 3.2454923717059674, + "c7": 1.6227461858529837 }, "rgb": [238, 201, 159] }, @@ -126447,23 +126447,23 @@ "year": 1743, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 20.717276782611798, - "c2": -29.641314792638703, - "c3": 15.376107352672015, - "c4": -23.23040860722529, - "c5": -26.36379252041244, - "c6": -27.826237240233482, - "c7": 7.6783908044659555 + "points": { + "c1": -39.70483085376498, + "c2": 6.321129164772373, + "c3": -20.995211149418, + "c4": 8.879321138306103, + "c5": 32.77934533570882, + "c6": -17.475262343809632, + "c7": 20.27519135486989 }, - "vertexSeeds": { - "c1": 4.272757596248503, - "c2": 4.340232992944483, - "c3": 4.528468490949444, - "c4": 4.954414982342989, - "c5": 4.4180492033108845, - "c6": 4.391961520400535, - "c7": 4.791195464150662 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.12898751733703, + "c3": 5.940822931114194, + "c4": 4.752658344891353, + "c5": 3.5644937586685175, + "c6": 2.3763291724456765, + "c7": 1.188164586222841 }, "rgb": [86, 146, 138] }, @@ -126474,23 +126474,23 @@ "year": 1743, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -8.824368251834386, - "c2": 18.220331582724338, - "c3": 6.4828409556850275, - "c4": -13.289874228544452, - "c5": -11.673942383054378, - "c6": 16.082270071888775, - "c7": -7.675792748122863 + "points": { + "c1": 3.7188669399729477, + "c2": 20.654601592223667, + "c3": 2.616932323049568, + "c4": 14.351143779038697, + "c5": 5.663155538707745, + "c6": 24.444453433867796, + "c7": 22.21258040658711 }, - "vertexSeeds": { - "c1": 4.417320942624649, - "c2": 4.484105843773618, - "c3": 4.443619662408557, - "c4": 3.9586097896772987, - "c5": 4.00788211144215, - "c6": 3.895258439896429, - "c7": 4.367335015930157 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309753, + "c4": 4.3088303282478035, + "c5": 3.2316227461858538, + "c6": 2.1544151641239044, + "c7": 1.0772075820619496 }, "rgb": [222, 0, 59] }, @@ -126501,23 +126501,23 @@ "year": 1743, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -5.172505863470107, - "c2": -1.987546077397802, - "c3": 30.190868812195546, - "c4": 23.602579649311842, - "c5": -18.463995514592384, - "c6": -12.742372114419123, - "c7": 27.701343052134433 + "points": { + "c1": -22.372171218294213, + "c2": -17.883580382993124, + "c3": 25.4276425387486, + "c4": -17.09089666122977, + "c5": 13.556320185094052, + "c6": 28.794685813683273, + "c7": -19.13168781403182 }, - "vertexSeeds": { - "c1": 9.885942830344021, - "c2": 9.461135684425981, - "c3": 9.904613896868108, - "c4": 9.248598649759119, - "c5": 9.37261911882307, - "c6": 9.93973338742852, - "c7": 10.019694562524574 + "offsets": { + "c1": 17.702265372168284, + "c2": 15.173370319001382, + "c3": 12.644475265834478, + "c4": 10.1155802126676, + "c5": 7.586685159500697, + "c6": 5.057790106333793, + "c7": 2.5288950531668903 }, "rgb": [58, 15, 49] }, @@ -126528,23 +126528,23 @@ "year": 1743, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 28.916407920859584, - "c2": -22.600676090412612, - "c3": 11.919114175291902, - "c4": -31.25648954763116, - "c5": -12.162731094099872, - "c6": -6.543951195719483, - "c7": -28.424887906796638 + "points": { + "c1": 8.135223361033347, + "c2": 23.583417511203955, + "c3": -10.064323645545436, + "c4": -21.005261258370282, + "c5": 35.05935009276682, + "c6": 22.098333355009615, + "c7": 4.378619370670037 }, - "vertexSeeds": { - "c1": 5.747890158197055, - "c2": 5.744553443664605, - "c3": 5.709115109439354, - "c4": 5.652300930804774, - "c5": 5.751041547727906, - "c6": 5.68462625386236, - "c7": 5.7288508587537725 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.26629680998614, + "c3": 6.88858067498846, + "c4": 5.510864539990781, + "c5": 4.133148404993039, + "c6": 2.7554322699953597, + "c7": 1.3777161349976799 }, "rgb": [58, 15, 49] }, @@ -126555,23 +126555,23 @@ "year": 1743, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 22.597375922273024, - "c2": -24.683543927606376, - "c3": -22.691022783793642, - "c4": -19.056687841368216, - "c5": -15.262581600150794, - "c6": -16.521683363973697, - "c7": 17.12795138846161 + "points": { + "c1": -18.420460631649043, + "c2": -3.8202708176680993, + "c3": 22.393635747394335, + "c4": -26.11706385725755, + "c5": -1.3768875220868253, + "c6": 8.416133913787057, + "c7": 27.302046213064266 }, - "vertexSeeds": { - "c1": 3.717183997396412, - "c2": 4.232484245263183, - "c3": 4.20967371307062, - "c4": 4.246625023905055, - "c5": 4.1446498673344925, - "c6": 4.155189491724692, - "c7": 4.249576009909585 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374015, + "c4": 4.068423485899212, + "c5": 3.0513176144244065, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [58, 15, 49] }, @@ -126582,23 +126582,23 @@ "year": 1744, "resistanceReported": false, "duration": 46656000, - "curveSeeds": { - "c1": -50.729020393679775, - "c2": 31.98649336460933, - "c3": -21.29332205387147, - "c4": -48.84463700472355, - "c5": 34.01991354642122, - "c6": -17.26130243695102, - "c7": -54.15699921141148 + "points": { + "c1": 36.38143499360028, + "c2": -46.66907363642659, + "c3": 4.119411341607304, + "c4": -25.226675113256505, + "c5": 61.099456751679625, + "c6": -37.45196527517612, + "c7": -51.316591201937726 }, - "vertexSeeds": { - "c1": 9.803687759657802, - "c2": 9.311207560606633, - "c3": 10.45522445852891, - "c4": 10.06094934014266, - "c5": 10.447739365812922, - "c6": 10.122402224620707, - "c7": 9.910823098146277 + "offsets": { + "c1": 17.702265372168284, + "c2": 15.173370319001382, + "c3": 12.644475265834481, + "c4": 10.11558021266758, + "c5": 7.586685159500691, + "c6": 5.05779010633379, + "c7": 2.5288950531669014 }, "rgb": [58, 15, 49] }, @@ -126609,23 +126609,23 @@ "year": 1743, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -7.638599333426075, - "c2": 11.9418087205594, - "c3": 16.501920243013494, - "c4": 6.071331247414754, - "c5": -8.882965802743872, - "c6": 19.541155826640797, - "c7": -27.10018575144156 + "points": { + "c1": -1.0219864401933307, + "c2": -32.17815946830696, + "c3": -4.940167573053046, + "c4": -31.633323179471077, + "c5": 23.90909804167547, + "c6": 7.439273242265443, + "c7": -19.94871487556998 }, - "vertexSeeds": { - "c1": 6.043149414491073, - "c2": 6.236539696414545, - "c3": 5.773218880561695, - "c4": 5.4415680772361, - "c5": 5.367896163362308, - "c6": 5.967588996164421, - "c7": 5.435806826203501 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031903, + "c3": 7.489597780859921, + "c4": 5.99167822468794, + "c5": 4.493758668515958, + "c6": 2.995839112343963, + "c7": 1.4979195561719945 }, "rgb": [77, 76, 132] }, @@ -126636,23 +126636,23 @@ "year": 1744, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 36.171125320818945, - "c2": 31.44078061183137, - "c3": -30.753288900661808, - "c4": 21.47503621116074, - "c5": 23.451681185401227, - "c6": 26.58314148839834, - "c7": 34.26615533652098 + "points": { + "c1": -4.575264106886735, + "c2": -30.4533016487238, + "c3": 11.98396665093913, + "c4": 30.54919333383188, + "c5": -12.709951571124545, + "c6": -38.073963269207475, + "c7": -35.6932328748157 }, - "vertexSeeds": { - "c1": 10.459628123362455, - "c2": 9.590332533775937, - "c3": 9.178661558931056, - "c4": 10.19684929268417, - "c5": 9.457073354386013, - "c6": 10.497164324260956, - "c7": 9.978916865080105 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.25658807212204, + "c3": 12.713823393435048, + "c4": 10.171058714748028, + "c5": 7.628294036061034, + "c6": 5.085529357374014, + "c7": 2.5427646786870195 }, "rgb": [77, 76, 132] }, @@ -126663,23 +126663,23 @@ "year": 1743, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -16.97017383933327, - "c2": -17.27720136594845, - "c3": -19.02828440996028, - "c4": -20.990756119100237, - "c5": -16.31582008767421, - "c6": -1.3479059375248106, - "c7": 26.945436748986253 + "points": { + "c1": 8.126561954267473, + "c2": -31.328624844346315, + "c3": -24.565502924929014, + "c4": 15.535836695955268, + "c5": 30.560817168555637, + "c6": -24.466713761187933, + "c7": -15.261650483230909 }, - "vertexSeeds": { - "c1": 5.030215680971866, - "c2": 5.81994987191192, - "c3": 5.546115427140025, - "c4": 5.6692167881768, - "c5": 5.5219959771990785, - "c6": 5.228654851439589, - "c7": 5.7352408501339465 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509015, + "c3": 7.18908922792418, + "c4": 5.751271382339343, + "c5": 4.3134535367545075, + "c6": 2.8756356911696717, + "c7": 1.4378178455848358 }, "rgb": [222, 0, 59] }, @@ -126690,23 +126690,23 @@ "year": 1743, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -5.257663284673878, - "c2": 31.627831450943937, - "c3": 8.383388633971961, - "c4": 9.50345812867895, - "c5": -18.593954924912083, - "c6": 26.399252265402282, - "c7": -28.437907974106437 + "points": { + "c1": -18.863646598824324, + "c2": -0.4000890386974021, + "c3": -30.877169873234024, + "c4": -4.846871692161116, + "c5": 16.300835553039953, + "c6": -0.565408977715343, + "c7": 0.034744116065574815 }, - "vertexSeeds": { - "c1": 3.6056860083017477, - "c2": 3.916575995770137, - "c3": 3.5506291470375007, - "c4": 3.338568234830688, - "c5": 3.4736933436266035, - "c6": 3.9981140555831, - "c7": 3.9517981298498794 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325937, + "c3": 4.785020804438278, + "c4": 3.828016643550623, + "c5": 2.8710124826629686, + "c6": 1.914008321775314, + "c7": 0.9570041608876545 }, "rgb": [222, 0, 59] }, @@ -126717,23 +126717,23 @@ "year": 1744, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -9.710025373186351, - "c2": 9.576622012609342, - "c3": 28.11462676771579, - "c4": -22.895943089462783, - "c5": -26.093334644856334, - "c6": 27.43469024122674, - "c7": 24.799452833115865 + "points": { + "c1": -22.638771352136168, + "c2": -17.728927732485612, + "c3": 14.184734882299097, + "c4": 26.846856036190246, + "c5": -5.455281329709109, + "c6": -22.477972161673364, + "c7": 30.753969668851113 }, - "vertexSeeds": { - "c1": 4.213456928541721, - "c2": 4.673811772767254, - "c3": 5.186824628868486, - "c4": 4.987694719727716, - "c5": 4.341711475680006, - "c6": 4.633967196002322, - "c7": 4.266409465021714 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -126744,23 +126744,23 @@ "year": 1743, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 12.465107887223631, - "c2": 11.520473165633902, - "c3": -21.446253980723373, - "c4": -6.765317077847101, - "c5": 18.895266767882084, - "c6": 27.929841496228406, - "c7": -18.86172505849867 + "points": { + "c1": -10.960214659828189, + "c2": 6.552440871962148, + "c3": 23.3438633632682, + "c4": 20.02957665072745, + "c5": -9.000758308222572, + "c6": 13.030238913074243, + "c7": -2.591724434633921 }, - "vertexSeeds": { - "c1": 8.3523589932062, - "c2": 8.267279369454352, - "c3": 8.077581133646914, - "c4": 8.125969289918906, - "c5": 8.269186479317431, - "c6": 8.202632465278642, - "c7": 8.315739538231217 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697653, + "c3": 10.171058714748032, + "c4": 8.136846971798436, + "c5": 6.102635228848814, + "c6": 4.068423485899218, + "c7": 2.0342117429495965 }, "rgb": [222, 0, 59] }, @@ -126771,23 +126771,23 @@ "year": 1744, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -8.172123084037224, - "c2": -9.380467500513763, - "c3": -16.847556689466415, - "c4": 5.257806167130219, - "c5": 9.778379431286957, - "c6": 17.74639351618808, - "c7": 31.297169133368342 + "points": { + "c1": 14.528530434476593, + "c2": -39.28723151614774, + "c3": -13.403238882311165, + "c4": -35.27706291635978, + "c5": 36.91026661335924, + "c6": -24.093368030787765, + "c7": 17.892706547814683 }, - "vertexSeeds": { - "c1": 6.755692496847178, - "c2": 6.681330480602067, - "c3": 6.409818289693613, - "c4": 6.320159216657921, - "c5": 6.292683643917606, - "c6": 6.7413977954017685, - "c7": 6.707204852326458 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117895, + "c3": 8.113730929264916, + "c4": 6.490984743411916, + "c5": 4.868238557558937, + "c6": 3.245492371705958, + "c7": 1.622746185852979 }, "rgb": [86, 146, 138] }, @@ -126798,23 +126798,23 @@ "year": 1744, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -25.907700601003405, - "c2": -20.178119320892364, - "c3": -35.59044494347278, - "c4": 7.259605454073792, - "c5": -32.16574253284516, - "c6": -0.04366410539936538, - "c7": -35.13863954168721 + "points": { + "c1": 15.276443912688869, + "c2": -8.139705751732052, + "c3": 5.821818672920273, + "c4": -12.088006856153331, + "c5": -10.24717361999835, + "c6": 41.201641174146005, + "c7": 0.2878910302180415 }, - "vertexSeeds": { - "c1": 4.335146522756089, - "c2": 4.228132442687977, - "c3": 4.098254967538898, - "c4": 4.255592847970344, - "c5": 4.42031752373588, - "c6": 4.239167817564143, - "c7": 4.19638886096899 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331486, + "c3": 5.362921867776233, + "c4": 4.290337494220988, + "c5": 3.217753120665743, + "c6": 2.1451687471104983, + "c7": 1.072584373555245 }, "rgb": [222, 0, 59] }, @@ -126825,23 +126825,23 @@ "year": 1744, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -7.047679786312624, - "c2": 28.27994735311708, - "c3": 8.211840671630995, - "c4": 29.708048600465247, - "c5": -35.200954942763, - "c6": -14.12037410447217, - "c7": -12.054538157130569 + "points": { + "c1": -8.558322802755058, + "c2": 15.965072891286056, + "c3": -18.50455037915831, + "c4": 19.206560717106704, + "c5": 0.622729674383514, + "c6": 34.073877668211324, + "c7": 14.28002579573657 }, - "vertexSeeds": { - "c1": 4.810721783746121, - "c2": 4.974899484189436, - "c3": 4.918099224865179, - "c4": 4.3712249381749935, - "c5": 4.686841092072775, - "c6": 4.566752572892435, - "c7": 4.879415629818265 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -126852,23 +126852,23 @@ "year": 1743, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 27.498182535100455, - "c2": -3.8758657009464805, - "c3": 21.367418061061635, - "c4": -7.094784651671805, - "c5": 7.0298601604811495, - "c6": 24.11540347331053, - "c7": -14.704162395381093 + "points": { + "c1": 5.1350354734792205, + "c2": 11.099606811757788, + "c3": -7.317117786788334, + "c4": 25.61150607362078, + "c5": -5.59526418035686, + "c6": 16.95357371259731, + "c7": -7.083612204702952 }, - "vertexSeeds": { - "c1": 6.965097068782234, - "c2": 7.60756184729077, - "c3": 7.159290290304845, - "c4": 7.258604985908976, - "c5": 7.739904530569708, - "c6": 7.367673393588989, - "c7": 7.404827016258228 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.15117891816921, + "c3": 9.292649098474342, + "c4": 7.434119278779473, + "c5": 5.575589459084605, + "c6": 3.7170596393897366, + "c7": 1.8585298196948683 }, "rgb": [77, 76, 132] }, @@ -126879,23 +126879,23 @@ "year": 1744, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -35.268703551469585, - "c2": -4.959675696007864, - "c3": 29.18552865283108, - "c4": 24.655162502811493, - "c5": 33.955622162778326, - "c6": 35.31954828148342, - "c7": -20.31356421397025 + "points": { + "c1": -28.96403324687128, + "c2": 26.44879493498837, + "c3": -3.50361417119052, + "c4": -4.834307232246985, + "c5": 7.579263855780546, + "c6": -19.846657676834912, + "c7": -25.77804560751178 }, - "vertexSeeds": { - "c1": 4.118480169510016, - "c2": 3.9417167171538208, - "c3": 4.353188687305301, - "c4": 4.651261270326759, - "c5": 4.084473626038812, - "c6": 4.608664500449236, - "c7": 3.9072473390378053 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693484, + "c3": 5.570966250577901, + "c4": 4.456773000462323, + "c5": 3.3425797503467445, + "c6": 2.2283865002311614, + "c7": 1.1141932501155833 }, "rgb": [86, 146, 138] }, @@ -126906,23 +126906,23 @@ "year": 1744, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -9.944045355175891, - "c2": 30.84486262304904, - "c3": 39.149517442115766, - "c4": 23.657236685409984, - "c5": 12.565728947959073, - "c6": 27.98732426417051, - "c7": 13.982333461141401 + "points": { + "c1": 6.925686836513449, + "c2": 42.767357043588035, + "c3": -1.0896093514050307, + "c4": -3.1283098316432714, + "c5": -4.9755018542933485, + "c6": 38.56192321214057, + "c7": 19.14364250156705 }, - "vertexSeeds": { - "c1": 9.066972497239856, - "c2": 8.810058422288986, - "c3": 8.901693647070179, - "c4": 9.278964736968573, - "c5": 8.539817209730407, - "c6": 8.86670870152634, - "c7": 9.156355002510855 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231624, + "c3": 11.627369394359686, + "c4": 9.301895515487749, + "c5": 6.976421636615812, + "c6": 4.650947757743874, + "c7": 2.325473878871937 }, "rgb": [77, 76, 132] }, @@ -126933,23 +126933,23 @@ "year": 1744, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 7.887063767666049, - "c2": 12.793936899437291, - "c3": -18.54739630428249, - "c4": -17.55764614981119, - "c5": -15.320139724054286, - "c6": -19.459711273835783, - "c7": 6.258507985838534 + "points": { + "c1": -10.50745684236486, + "c2": -1.6247975485482087, + "c3": -6.798193151010089, + "c4": -38.22985568561548, + "c5": 29.190818733194966, + "c6": 11.836667233256868, + "c7": 13.026438045323076 }, - "vertexSeeds": { - "c1": 9.625272782858554, - "c2": 9.24009718152308, - "c3": 9.22590209405409, - "c4": 9.346858213611185, - "c5": 9.682355487418167, - "c6": 9.5982784561725, - "c7": 9.17658760821261 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110972, + "c3": 11.558021266759125, + "c4": 9.246417013407314, + "c5": 6.934812760055468, + "c6": 4.623208506703657, + "c7": 2.3116042533518115 }, "rgb": [238, 201, 159] }, @@ -126960,23 +126960,23 @@ "year": 1744, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 8.106196017968472, - "c2": -22.48221158500708, - "c3": -32.04894275838083, - "c4": -25.957315598193862, - "c5": 21.0285003819344, - "c6": 8.569656853752264, - "c7": 16.57455139840158 + "points": { + "c1": 22.885794146387795, + "c2": 21.604274773515428, + "c3": 28.943760928268617, + "c4": -30.7532062205524, + "c5": 9.385749991917137, + "c6": 20.921892493159845, + "c7": -11.62645494154157 }, - "vertexSeeds": { - "c1": 7.358205557588104, - "c2": 7.563705045714782, - "c3": 7.424955525752577, - "c4": 7.633860098748424, - "c5": 7.606354034959649, - "c6": 7.419638554670945, - "c7": 7.63491965459457 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128974, + "c3": 9.269533055940828, + "c4": 7.41562644475265, + "c5": 5.561719833564504, + "c6": 3.707813222376325, + "c7": 1.8539066111881455 }, "rgb": [222, 0, 59] }, @@ -126987,23 +126987,23 @@ "year": 1744, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 16.235310462891803, - "c2": -18.223894683493352, - "c3": 33.4013961738963, - "c4": -7.908198849018092, - "c5": -37.92752706228738, - "c6": -3.14239105141975, - "c7": -22.978699680123274 + "points": { + "c1": 26.211922937548167, + "c2": -24.666007870180856, + "c3": -2.1839401990303244, + "c4": 32.70733045626541, + "c5": -19.416789015519775, + "c6": -10.214778842463161, + "c7": 23.78672533232718 }, - "vertexSeeds": { - "c1": 4.788269851697022, - "c2": 4.448030082704412, - "c3": 4.501222035712088, - "c4": 4.973100287987412, - "c5": 4.788953721673116, - "c6": 4.3154062752526405, - "c7": 4.279629020356414 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -127014,23 +127014,23 @@ "year": 1744, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -22.338066405648053, - "c2": -39.82217575758498, - "c3": -30.05920927459603, - "c4": 32.66599590404164, - "c5": 21.190811721288732, - "c6": -18.914206693745953, - "c7": -7.9170252448503575 + "points": { + "c1": -37.80963282193167, + "c2": -25.26471007180875, + "c3": -7.641095639283257, + "c4": 7.427475665609656, + "c5": -32.07445327179407, + "c6": -24.505315456142643, + "c7": 3.3424417454077755 }, - "vertexSeeds": { - "c1": 5.4649824849205855, - "c2": 5.483325301288613, - "c3": 5.467094852338408, - "c4": 5.543630195804471, - "c5": 5.263551669223878, - "c6": 5.478586280544739, - "c7": 5.255297912049867 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664351, + "c3": 6.703652334720288, + "c4": 5.362921867776225, + "c5": 4.0221914008321615, + "c6": 2.6814609338881263, + "c7": 1.3407304669440632 }, "rgb": [86, 146, 138] }, @@ -127041,23 +127041,23 @@ "year": 1744, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 10.946217991693239, - "c2": 36.11477221208472, - "c3": 37.617146424844684, - "c4": 28.307265288044924, - "c5": 9.419104208376673, - "c6": -27.66150546159594, - "c7": -30.98714406535455 + "points": { + "c1": -0.29239996347666874, + "c2": 36.975603533379704, + "c3": 2.090504584925064, + "c4": -19.656397423548466, + "c5": -33.314255091759364, + "c6": -14.42007914432628, + "c7": -37.38443039108225 }, - "vertexSeeds": { - "c1": 7.826649643951013, - "c2": 7.794943937633559, - "c3": 7.784965633816807, - "c4": 7.796826886625843, - "c5": 7.80042321449342, - "c6": 7.778440102799746, - "c7": 7.798543024320408 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249583, + "c3": 9.338881183541483, + "c4": 7.4711049468331385, + "c5": 5.603328710124791, + "c6": 3.735552473416445, + "c7": 1.8677762367083461 }, "rgb": [86, 146, 138] }, @@ -127068,23 +127068,23 @@ "year": 1744, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 36.417904424318024, - "c2": -27.246035315055202, - "c3": 19.386647099307574, - "c4": -2.9421552130376654, - "c5": 20.24291850292972, - "c6": -0.2832230012064372, - "c7": 23.172480025875053 + "points": { + "c1": -15.088420411423819, + "c2": 29.475365901573596, + "c3": 26.078602284299706, + "c4": 18.58821139833175, + "c5": 31.779555055855795, + "c6": 18.178601231879604, + "c7": 34.94331056815629 }, - "vertexSeeds": { - "c1": 6.8548117705517, - "c2": 6.4129209938809675, - "c3": 6.168393634311977, - "c4": 6.3614384092595655, - "c5": 6.823254024342799, - "c6": 6.867884407417714, - "c7": 6.187833144479384 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533058, + "c4": 6.638927415626439, + "c5": 4.97919556171983, + "c6": 3.3194637078132194, + "c7": 1.6597318539066097 }, "rgb": [222, 0, 59] }, @@ -127095,23 +127095,23 @@ "year": 1744, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": 41.664622766412336, - "c2": 8.486997840777832, - "c3": 34.99444292698054, - "c4": -9.590486597068733, - "c5": -9.370701887292896, - "c6": 43.24423981548796, - "c7": -43.89952142513392 + "points": { + "c1": 31.2128965563233, + "c2": 27.603350622427968, + "c3": -41.359994049775736, + "c4": -12.672334438994127, + "c5": 25.730016525282522, + "c6": 5.860607088397799, + "c7": 23.644381242791468 }, - "vertexSeeds": { - "c1": 11.243274756799037, - "c2": 11.795471813787278, - "c3": 11.873942979859144, - "c4": 11.461563344571262, - "c5": 11.81592898495574, - "c6": 11.001606784326436, - "c7": 11.924119356962747 + "offsets": { + "c1": 20.58252427184466, + "c2": 17.642163661581137, + "c3": 14.701803051317615, + "c4": 11.761442441054092, + "c5": 8.821081830790568, + "c6": 5.880721220527046, + "c7": 2.940360610263523 }, "rgb": [58, 15, 49] }, @@ -127122,23 +127122,23 @@ "year": 1743, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 23.433286655134566, - "c2": -23.749788807965338, - "c3": -2.7505483703909164, - "c4": -31.75385218467823, - "c5": 29.617897598060864, - "c6": -24.53962534257893, - "c7": 0.5613473480205897 + "points": { + "c1": -33.60503077240112, + "c2": 16.294562046595267, + "c3": 25.32285063946221, + "c4": 28.063152100195154, + "c5": -18.39619774806154, + "c6": 8.199890901104759, + "c7": 5.722374090277029 }, - "vertexSeeds": { - "c1": 9.002391473906563, - "c2": 8.986195566056645, - "c3": 9.373391660986098, - "c4": 9.240976207197324, - "c5": 8.991954070498496, - "c6": 9.648633688158274, - "c7": 9.119258519607829 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392517, + "c3": 11.719833564493749, + "c4": 9.375866851595005, + "c5": 7.031900138696258, + "c6": 4.687933425797492, + "c7": 2.343966712898746 }, "rgb": [86, 146, 138] }, @@ -127149,23 +127149,23 @@ "year": 1743, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 10.628224949248668, - "c2": -14.742872373540937, - "c3": 1.8354950699956163, - "c4": -23.755455845686335, - "c5": 16.827066739297493, - "c6": 26.84536291978585, - "c7": -23.16762469407864 + "points": { + "c1": 24.857985389928714, + "c2": -21.386551374295045, + "c3": 25.603297989700422, + "c4": -33.29001740834473, + "c5": 16.10958587714439, + "c6": 27.513958882210495, + "c7": -25.898148976961423 }, - "vertexSeeds": { - "c1": 1.2434426047142977, - "c2": 1.1673505911541069, - "c3": 1.161522455044434, - "c4": 1.128099422448547, - "c5": 1.069588740535836, - "c6": 1.2175938711663272, - "c7": 1.045080581244389 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144245, + "c3": 1.502542764678687, + "c4": 1.2020342117429497, + "c5": 0.9015256588072122, + "c6": 0.6010171058714748, + "c7": 0.3005085529357374 }, "rgb": [77, 76, 132] }, @@ -127176,23 +127176,23 @@ "year": 1744, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 16.84697615089589, - "c2": -28.541243564404134, - "c3": 34.63022557728107, - "c4": -0.7151587558293571, - "c5": -19.13317615021088, - "c6": -11.295702458783396, - "c7": 41.835453930113246 + "points": { + "c1": -14.335176849452953, + "c2": 6.056480262660138, + "c3": 5.279831043300504, + "c4": -6.1522343415008365, + "c5": -11.274455687457362, + "c6": 8.147798290500923, + "c7": -31.325884821452455 }, - "vertexSeeds": { - "c1": 9.503478043668343, - "c2": 9.507240977644217, - "c3": 9.737669160090668, - "c4": 9.333596121134365, - "c5": 8.997050145830876, - "c6": 9.739414599901973, - "c7": 8.594078428757673 + "offsets": { + "c1": 16.310679611650485, + "c2": 13.980582524271849, + "c3": 11.650485436893199, + "c4": 9.32038834951456, + "c5": 6.9902912621359246, + "c6": 4.660194174757274, + "c7": 2.330097087378637 }, "rgb": [77, 76, 132] }, @@ -127203,23 +127203,23 @@ "year": 1744, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 25.46914840363329, - "c2": 24.03233069465935, - "c3": 2.4954711231244744, - "c4": 10.89685174515008, - "c5": -12.85696824593726, - "c6": 33.904533487106285, - "c7": -29.084662081171913 + "points": { + "c1": 0.24525371076366298, + "c2": -35.52626998552951, + "c3": -20.58340137834229, + "c4": 19.5588768362232, + "c5": -33.749426362919586, + "c6": 6.372919790445081, + "c7": 15.201754008254483 }, - "vertexSeeds": { - "c1": 4.464577930038769, - "c2": 4.555455738757641, - "c3": 4.72401285026223, - "c4": 4.678726681142603, - "c5": 4.806223709266537, - "c6": 4.8204392146235495, - "c7": 4.730390968718942 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055479, + "c3": 5.779010633379568, + "c4": 4.623208506703656, + "c5": 3.467406380027734, + "c6": 2.311604253351823, + "c7": 1.1558021266759115 }, "rgb": [77, 76, 132] }, @@ -127230,23 +127230,23 @@ "year": 1744, "resistanceReported": true, "duration": 25142400, - "curveSeeds": { - "c1": 20.909166796576443, - "c2": -10.391691022447105, - "c3": -10.538364329192127, - "c4": 36.420848207267085, - "c5": -13.912033455379792, - "c6": -0.5255417259431354, - "c7": 4.796951055860447 + "points": { + "c1": -2.4488236532426626, + "c2": -34.638708131475056, + "c3": 32.61428186528887, + "c4": -34.26888628255808, + "c5": 26.1332309237212, + "c6": -30.867541521242245, + "c7": -15.619354454088061 }, - "vertexSeeds": { - "c1": 5.972575821475843, - "c2": 5.651607166442409, - "c3": 5.9316260646885, - "c4": 5.779010958027629, - "c5": 5.744165112057737, - "c6": 5.836899551464972, - "c7": 6.195094704226928 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951452, + "c3": 7.443365695792874, + "c4": 5.954692556634306, + "c5": 4.466019417475726, + "c6": 2.977346278317147, + "c7": 1.4886731391585672 }, "rgb": [238, 201, 159] }, @@ -127257,23 +127257,23 @@ "year": 1744, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -1.066139519300755, - "c2": -16.380627266037628, - "c3": -7.455952367783901, - "c4": -5.200744051575654, - "c5": -12.108237459369061, - "c6": -17.27879899003624, - "c7": -25.44840243269275 + "points": { + "c1": 3.484810767759818, + "c2": 32.83962024332928, + "c3": -34.139700897840505, + "c4": -37.76406132659689, + "c5": -1.3812650409644363, + "c6": 32.423165681656045, + "c7": -3.248596198072768 }, - "vertexSeeds": { - "c1": 5.780883666780595, - "c2": 5.631815294265817, - "c3": 5.5662825058542165, - "c4": 5.863938766732276, - "c5": 5.709832522619775, - "c6": 5.7214675030927395, - "c7": 5.508454724126749 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267682, + "c3": 7.050392972723069, + "c4": 5.640314378178455, + "c5": 4.230235783633841, + "c6": 2.8201571890892274, + "c7": 1.4100785945446137 }, "rgb": [222, 0, 59] }, @@ -127284,23 +127284,23 @@ "year": 1744, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 17.20605566882481, - "c2": -1.827689780158778, - "c3": -9.370514129261618, - "c4": 16.869812262462297, - "c5": 18.097748421090742, - "c6": -19.730442121355026, - "c7": 23.93934129557993 + "points": { + "c1": -11.970075044024775, + "c2": 29.97721852766101, + "c3": -25.99774026602052, + "c4": 3.1610915436898352, + "c5": 27.689215880930412, + "c6": -17.7151502189851, + "c7": -21.284418492706294 }, - "vertexSeeds": { - "c1": 5.16857109076546, - "c2": 4.951601376889741, - "c3": 5.150139163144683, - "c4": 5.277680488632839, - "c5": 4.671020172965318, - "c6": 5.274606001044933, - "c7": 4.679231256597039 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -127311,23 +127311,23 @@ "year": 1743, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -25.096217036167268, - "c2": -10.367158461713636, - "c3": 0.9999853274659323, - "c4": 3.4845516253474393, - "c5": -5.725524302400487, - "c6": 12.47171907126344, - "c7": 26.374114060317464 + "points": { + "c1": -1.3040757374754648, + "c2": -11.55317803483306, + "c3": -30.44955634811722, + "c4": 16.94781818683204, + "c5": -11.120458231794593, + "c6": -12.96804930215566, + "c7": 1.5339028087705593 }, - "vertexSeeds": { - "c1": 5.240173429035456, - "c2": 5.451052783395754, - "c3": 5.363781237089032, - "c4": 4.79360129595935, - "c5": 4.608759023728251, - "c6": 5.097639484857804, - "c7": 5.16587008088114 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543688, + "c3": 6.634304207119746, + "c4": 5.307443365695796, + "c5": 3.980582524271844, + "c6": 2.653721682847898, + "c7": 1.3268608414239513 }, "rgb": [58, 15, 49] }, @@ -127338,23 +127338,23 @@ "year": 1744, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 22.967997439062962, - "c2": 2.5274055650169984, - "c3": 17.84656426700265, - "c4": 30.422829753196012, - "c5": -3.896987732583831, - "c6": -19.44014195083288, - "c7": 25.917276150730423 + "points": { + "c1": -29.90659236863235, + "c2": 22.266628041805113, + "c3": -6.169533487980541, + "c4": 20.538179199023567, + "c5": 0.9846458251926933, + "c6": -30.877982990210114, + "c7": 24.88416719545156 }, - "vertexSeeds": { - "c1": 8.612585219151958, - "c2": 9.263581026815176, - "c3": 9.042647645532456, - "c4": 9.505215930715236, - "c5": 9.795801907385004, - "c6": 9.891190357255374, - "c7": 8.92719424292135 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.1747572815534, + "c3": 11.812297734627835, + "c4": 9.449838187702257, + "c5": 7.087378640776693, + "c6": 4.7249190938511285, + "c7": 2.3624595469255643 }, "rgb": [238, 201, 159] }, @@ -127365,23 +127365,23 @@ "year": 1744, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 34.97042328195799, - "c2": 12.457910467000566, - "c3": -11.83165255827836, - "c4": -28.24261303750192, - "c5": 4.349610011024225, - "c6": -20.02008261062751, - "c7": -10.68006019001584 + "points": { + "c1": 23.895019164258088, + "c2": -39.182673830275846, + "c3": -7.248043495420781, + "c4": 5.022934909061256, + "c5": -14.445173477387232, + "c6": -31.944888772983163, + "c7": -28.702882447769 }, - "vertexSeeds": { - "c1": 6.798494030372353, - "c2": 6.568236976745812, - "c3": 6.706807432931345, - "c4": 6.700059247946376, - "c5": 6.60515851935204, - "c6": 6.8274727377339435, - "c7": 6.638014438244828 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278784, + "c3": 8.206195099398993, + "c4": 6.564956079519162, + "c5": 4.923717059639372, + "c6": 3.282478039759581, + "c7": 1.6412390198797906 }, "rgb": [86, 146, 138] }, @@ -127392,23 +127392,23 @@ "year": 1744, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 21.60008634190215, - "c2": 15.669774778236373, - "c3": -8.196182516537501, - "c4": -1.5420400115746595, - "c5": -17.128604617354846, - "c6": 26.31359341767199, - "c7": -11.641238586615781 + "points": { + "c1": 5.991555133480517, + "c2": -9.568350642771996, + "c3": 14.728104202769622, + "c4": 6.193269614602464, + "c5": 4.057068221737708, + "c6": 17.14821305098434, + "c7": -5.868605603071231 }, - "vertexSeeds": { - "c1": 5.211635720817634, - "c2": 4.737902866279503, - "c3": 4.832642061920381, - "c4": 5.269685319243736, - "c5": 4.474231271075985, - "c6": 5.321108714631297, - "c7": 5.31980421253146 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141467, + "c3": 6.403143781784562, + "c4": 5.122515025427647, + "c5": 3.8418862690707356, + "c6": 2.5612575127138255, + "c7": 1.28062875635691 }, "rgb": [222, 0, 59] }, @@ -127419,23 +127419,23 @@ "year": 1744, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -6.565901575882844, - "c2": 25.25226030553011, - "c3": -24.886220058859376, - "c4": 25.51137175240189, - "c5": 0.698555508801153, - "c6": -5.869897375173895, - "c7": 2.7780268327582966 + "points": { + "c1": 18.12862689841094, + "c2": -31.061617227990045, + "c3": -23.867845017070877, + "c4": -20.18306281199689, + "c5": 17.483581745102793, + "c6": 4.488132155802848, + "c7": -23.54832125124596 }, - "vertexSeeds": { - "c1": 4.509893221957731, - "c2": 4.6772886719897, - "c3": 5.201816031750412, - "c4": 5.003862061026359, - "c5": 4.468624759486945, - "c6": 5.122722850075956, - "c7": 4.674987396189848 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -127446,23 +127446,23 @@ "year": 1744, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -9.30790473685672, - "c2": 18.099030111973608, - "c3": -11.858921355475083, - "c4": -13.299577739453742, - "c5": -15.826887373215646, - "c6": 28.215828557580377, - "c7": -0.9712663577922065 + "points": { + "c1": 14.173793354181374, + "c2": -6.25389390234556, + "c3": 29.772788131102967, + "c4": 22.7052264080023, + "c5": 16.505047364664645, + "c6": -20.695387950809177, + "c7": 10.31024013345186 }, - "vertexSeeds": { - "c1": 6.358614956069457, - "c2": 5.815854413007644, - "c3": 6.07708802892993, - "c4": 5.932901865134676, - "c5": 5.942921167837132, - "c6": 5.8698488725892854, - "c7": 6.260715862905274 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -127473,23 +127473,23 @@ "year": 1744, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 19.58676868670767, - "c2": 39.87596833540667, - "c3": -37.25016166821676, - "c4": -14.208050774401048, - "c5": 38.74161480842676, - "c6": 30.772304502576034, - "c7": 16.370879185278085 + "points": { + "c1": 29.664707648457522, + "c2": 43.81234229793408, + "c3": 29.092826254349532, + "c4": -44.32675110275107, + "c5": -26.978140417604273, + "c6": 23.24633750421131, + "c7": 8.816077309725735 }, - "vertexSeeds": { - "c1": 6.499763412047764, - "c2": 6.134230148377912, - "c3": 6.387766606558178, - "c4": 6.1616623537355375, - "c5": 6.508989170714074, - "c6": 6.581432692889026, - "c7": 6.230175226927596 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [58, 15, 49] }, @@ -127500,23 +127500,23 @@ "year": 1743, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -22.21036466175424, - "c2": 1.8527109580063978, - "c3": 27.85360456659746, - "c4": 2.21169081440231, - "c5": -14.941973848217446, - "c6": 2.667215687360759, - "c7": 9.433442885667205 + "points": { + "c1": -29.82333969447374, + "c2": 11.085594878718197, + "c3": 19.311540946408044, + "c4": -14.97943214968871, + "c5": 28.416529880659716, + "c6": -13.68714150082511, + "c7": -12.791984913774204 }, - "vertexSeeds": { - "c1": 2.7589783044741414, - "c2": 2.6645521012505786, - "c3": 2.756580913340699, - "c4": 2.8170530654554815, - "c5": 2.759000987570726, - "c6": 2.7072393307135956, - "c7": 2.623223749477887 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.4674063800277413, + "c4": 2.7739251040221866, + "c5": 2.08044382801664, + "c6": 1.3869625520110933, + "c7": 0.6934812760055467 }, "rgb": [86, 146, 138] }, @@ -127527,23 +127527,23 @@ "year": 1744, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -29.49121351033855, - "c2": 22.258768665589585, - "c3": 19.892088097428463, - "c4": -22.50728053662315, - "c5": 32.93924098670676, - "c6": 19.01551357730481, - "c7": 39.61652719148078 + "points": { + "c1": 27.42850697375267, + "c2": -11.871187215963058, + "c3": -37.247802015603455, + "c4": 25.354940606386215, + "c5": -31.77300764662873, + "c6": 12.969810042215315, + "c7": 6.936360607002882 }, - "vertexSeeds": { - "c1": 7.094541003294928, - "c2": 6.707987767840086, - "c3": 7.254715939077714, - "c4": 6.384466802602627, - "c5": 6.319783612441537, - "c6": 7.162189210966862, - "c7": 6.799035412048368 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163664, + "c3": 8.714748035136388, + "c4": 6.971798428109101, + "c5": 5.228848821081825, + "c6": 3.4858992140545504, + "c7": 1.7429496070272752 }, "rgb": [77, 76, 132] }, @@ -127554,23 +127554,23 @@ "year": 1744, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -11.919194408086625, - "c2": -20.16810731217571, - "c3": -0.5636440384865082, - "c4": 35.47550216214308, - "c5": 25.260810582751823, - "c6": -43.439389565404184, - "c7": -13.957218094166212 + "points": { + "c1": 40.14008306710223, + "c2": 1.4655646309430637, + "c3": 4.549984039409416, + "c4": -31.085954390813605, + "c5": 29.951755796385477, + "c6": 13.538830109044014, + "c7": 36.091180015653954 }, - "vertexSeeds": { - "c1": 7.393595878016915, - "c2": 7.221965674628064, - "c3": 7.165208420672525, - "c4": 7.4059474062527695, - "c5": 7.302711506278674, - "c6": 7.533087927868617, - "c7": 7.545717647419739 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807207, + "c3": 9.084604715672668, + "c4": 7.267683772538129, + "c5": 5.4507628294035895, + "c6": 3.6338418862690784, + "c7": 1.8169209431345392 }, "rgb": [58, 15, 49] }, @@ -127581,23 +127581,23 @@ "year": 1744, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 19.454900801344984, - "c2": -15.171874155514843, - "c3": -22.20530007335352, - "c4": -24.121391147712448, - "c5": 24.7996921142945, - "c6": 19.445741667720462, - "c7": 1.8799454164113527 + "points": { + "c1": 9.023621865165367, + "c2": -8.385626957451038, + "c3": -28.476953211546284, + "c4": 36.38452110121851, + "c5": -9.543828111446832, + "c6": -21.546320725231883, + "c7": -21.029806712550887 }, - "vertexSeeds": { - "c1": 3.2984677602993564, - "c2": 3.172319646057136, - "c3": 3.293056068537794, - "c4": 3.2255808253766807, - "c5": 3.067010877261411, - "c6": 2.9237837202521164, - "c7": 2.674076131579118 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877946, + "c3": 3.952843273231625, + "c4": 3.1622746185852986, + "c5": 2.371705963938973, + "c6": 1.5811373092926473, + "c7": 0.7905686546463259 }, "rgb": [58, 15, 49] }, @@ -127608,23 +127608,23 @@ "year": 1744, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -5.439332914846208, - "c2": 23.479682343060674, - "c3": 13.200225696927056, - "c4": 2.576745783061547, - "c5": 14.038069606724385, - "c6": 0.42195564944771036, - "c7": -16.013006278921576 + "points": { + "c1": 2.4496095570206435, + "c2": -1.9191190972297107, + "c3": -15.591410640339086, + "c4": 7.136437475896834, + "c5": 17.694654025274772, + "c6": -13.282323288592952, + "c7": 4.02859734678303 }, - "vertexSeeds": { - "c1": 4.048771074403552, - "c2": 3.8285311937730038, - "c3": 4.410531510434393, - "c4": 4.2579077901738245, - "c5": 4.052087850254269, - "c6": 4.148106536696164, - "c7": 3.950115342647842 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -127635,23 +127635,23 @@ "year": 1744, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 24.359824196779744, - "c2": 26.026217619126417, - "c3": 24.09535304690426, - "c4": -3.2470100436250284, - "c5": 27.37495509855061, - "c6": -26.184118687677127, - "c7": -15.638776363951932 + "points": { + "c1": -21.258755075162355, + "c2": -2.890986102806732, + "c3": 4.0202501407914255, + "c4": 12.8472189291587, + "c5": 28.258322589776455, + "c6": -19.721683646152655, + "c7": -11.545097599705983 }, - "vertexSeeds": { - "c1": 5.109104031820495, - "c2": 5.060527363496207, - "c3": 5.112425937289575, - "c4": 5.038710358533529, - "c5": 5.05449604380635, - "c6": 5.055433150638211, - "c7": 5.073176291490324 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658793, + "c3": 6.1257512713823115, + "c4": 4.90060101710583, + "c5": 3.6754507628294455, + "c6": 2.4503005085529637, + "c7": 1.2251502542764818 }, "rgb": [238, 201, 159] }, @@ -127662,23 +127662,23 @@ "year": 1744, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 36.31965933375045, - "c2": 0.22528911889234848, - "c3": -14.61191027648896, - "c4": 9.770929866828588, - "c5": 29.210102021108483, - "c6": -34.819401427982115, - "c7": -34.08021875331554 + "points": { + "c1": -17.824858839368225, + "c2": -27.04297506332742, + "c3": -16.797722095744806, + "c4": -4.174406356686276, + "c5": 14.270298127469047, + "c6": 25.828690801151808, + "c7": 20.136243468766374 }, - "vertexSeeds": { - "c1": 6.359741846057506, - "c2": 6.196552654094426, - "c3": 6.33371511619621, - "c4": 6.509673254820537, - "c5": 6.510795443452662, - "c6": 6.541173639389713, - "c7": 6.593420711748548 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549239, + "c3": 7.212205270457702, + "c4": 5.769764216366148, + "c5": 4.3273231622746104, + "c6": 2.884882108183074, + "c7": 1.442441054091537 }, "rgb": [77, 76, 132] }, @@ -127689,23 +127689,23 @@ "year": 1744, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -29.343314581927082, - "c2": 8.755393635951208, - "c3": 3.921632784128306, - "c4": -17.363405894687602, - "c5": -7.714237956357817, - "c6": 7.686380834204805, - "c7": 31.95871097902203 + "points": { + "c1": 17.55794859403904, + "c2": -2.8148269860556, + "c3": 32.75595291889867, + "c4": -34.4166798397351, + "c5": 30.592588569209028, + "c6": 32.30254064745483, + "c7": -7.662604996481349 }, - "vertexSeeds": { - "c1": 4.804205884817826, - "c2": 4.499841665054235, - "c3": 4.729686008166917, - "c4": 4.506579104274722, - "c5": 4.373660169910292, - "c6": 4.5047189979229625, - "c7": 4.567642565513426 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [86, 146, 138] }, @@ -127716,23 +127716,23 @@ "year": 1744, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 12.149760335729052, - "c2": -23.531461029007556, - "c3": -22.353638018964144, - "c4": 23.70963013349081, - "c5": 6.895637401520528, - "c6": 21.588155636761936, - "c7": -1.736030945300211 + "points": { + "c1": -17.7864705401625, + "c2": -20.976756709992678, + "c3": 20.70757050365113, + "c4": 23.794138803193267, + "c5": 5.826484175314267, + "c6": 0.6283380254487199, + "c7": -21.887615017251406 }, - "vertexSeeds": { - "c1": 4.204075588614882, - "c2": 4.06721442218442, - "c3": 4.408025980270393, - "c4": 5.011799811432196, - "c5": 4.771491804292561, - "c6": 4.981743195458035, - "c7": 5.0321192320819765 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -127743,23 +127743,23 @@ "year": 1744, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -5.658611525412859, - "c2": -20.920930184710457, - "c3": -12.328578298465974, - "c4": -13.817129972346194, - "c5": 13.912630577443785, - "c6": -19.52944303236302, - "c7": -22.80857807635978 + "points": { + "c1": -17.466694861161972, + "c2": 10.107547501127172, + "c3": 15.509346808466923, + "c4": -25.112396762171525, + "c5": 24.33750592508151, + "c6": -10.43263154236562, + "c7": 2.362365317311582 }, - "vertexSeeds": { - "c1": 2.5774968659402306, - "c2": 2.6610251314040565, - "c3": 2.506720343039334, - "c4": 2.561145095673374, - "c5": 2.548450651984385, - "c6": 2.7524375977443443, - "c7": 2.6856562831374826 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073508, + "c3": 3.4905224225612543, + "c4": 2.792417938049007, + "c5": 2.094313453536754, + "c6": 1.3962089690245008, + "c7": 0.698104484512253 }, "rgb": [77, 76, 132] }, @@ -127770,23 +127770,23 @@ "year": 1744, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 18.04141246467044, - "c2": 8.332067944094955, - "c3": -24.564240840067775, - "c4": -2.803531882378575, - "c5": 11.594480724053074, - "c6": 9.434740621737948, - "c7": 23.36646089432858 + "points": { + "c1": -11.422691303900848, + "c2": -13.385392552800127, + "c3": 22.800519885936797, + "c4": -12.890586392099966, + "c5": -9.7453292108255, + "c6": -19.78455773122655, + "c7": 9.262546295264915 }, - "vertexSeeds": { - "c1": 4.805040644089526, - "c2": 4.747335763655712, - "c3": 4.867010461664689, - "c4": 4.625097916348009, - "c5": 4.923360013026565, - "c6": 5.206883323159696, - "c7": 4.943266988672807 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -127797,23 +127797,23 @@ "year": 1744, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -0.8358378666629775, - "c2": 5.171306735630129, - "c3": -6.672186585318727, - "c4": -0.5422784402569114, - "c5": 17.43309141875143, - "c6": 2.371479647481671, - "c7": -15.332618302929005 + "points": { + "c1": 5.477727629744919, + "c2": 13.786579566091184, + "c3": 18.25950560542784, + "c4": 7.417398126069031, + "c5": -6.039622547333735, + "c6": -18.774672190811543, + "c7": -1.5146222982897761 }, - "vertexSeeds": { - "c1": 5.248968963789547, - "c2": 4.49943577421056, - "c3": 4.055129180561705, - "c4": 5.107977204665696, - "c5": 4.717061829959106, - "c6": 5.118309792701643, - "c7": 4.723876219978363 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -127824,23 +127824,23 @@ "year": 1744, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": 28.381401535203963, - "c2": 41.015047232194235, - "c3": -38.03169766653186, - "c4": -27.47414717782481, - "c5": -43.22706545770703, - "c6": -5.767804840517833, - "c7": -21.07653978152124 + "points": { + "c1": -18.84171499370521, + "c2": -18.635879741381586, + "c3": -33.5811599337443, + "c4": -52.99942345988958, + "c5": -48.041935199831144, + "c6": 38.88920217714933, + "c7": 57.94234894102698 }, - "vertexSeeds": { - "c1": 7.627510749639119, - "c2": 7.433222704241567, - "c3": 7.832964675200486, - "c4": 7.384230197240403, - "c5": 7.620128601591882, - "c6": 7.621751620060863, - "c7": 7.597042481773163 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295421, + "c3": 9.939898289412849, + "c4": 7.951918631530289, + "c5": 5.963938973647718, + "c6": 3.9759593157651447, + "c7": 1.9879796578825724 }, "rgb": [86, 146, 138] }, @@ -127851,23 +127851,23 @@ "year": 1744, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -22.730281302934998, - "c2": 24.01119741423767, - "c3": 3.7454473114432716, - "c4": 19.560121440213194, - "c5": -9.813196012996602, - "c6": 7.446237725269029, - "c7": 4.712851596756906 + "points": { + "c1": -17.078876107787835, + "c2": 7.539286216227076, + "c3": -10.82061762882535, + "c4": 33.820566992463874, + "c5": 11.770547796071462, + "c6": 15.003553972849858, + "c7": -19.12397351640914 }, - "vertexSeeds": { - "c1": 6.892607375722176, - "c2": 6.915067327710267, - "c3": 6.897782350447433, - "c4": 6.955974910063453, - "c5": 6.973280426675914, - "c6": 6.923843785581537, - "c7": 6.959479283591589 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447987, + "c3": 8.321775312066537, + "c4": 6.657420249653202, + "c5": 4.993065187240001, + "c6": 3.3287101248266677, + "c7": 1.6643550624133339 }, "rgb": [238, 201, 159] }, @@ -127878,23 +127878,23 @@ "year": 1744, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -22.908767076548564, - "c2": -17.131736896168604, - "c3": -41.88902816854172, - "c4": 43.804519799964034, - "c5": 14.258709856990421, - "c6": -7.661392208114769, - "c7": 35.0406479844172 + "points": { + "c1": -16.334039719200305, + "c2": -34.693353729679764, + "c3": -41.81993660975898, + "c4": -42.890567724246715, + "c5": -35.85426177487776, + "c6": 28.176373649117444, + "c7": 36.95066560829489 }, - "vertexSeeds": { - "c1": 2.3942375935307627, - "c2": 2.2221454210633733, - "c3": 2.3082692888848255, - "c4": 2.266813470581501, - "c5": 2.3819441818813023, - "c6": 2.2185749878062606, - "c7": 2.0504032354228565 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269072, + "c3": 3.0282015718908917, + "c4": 2.422561257512714, + "c5": 1.816920943134536, + "c6": 1.2112806287563582, + "c7": 0.6056403143781779 }, "rgb": [222, 0, 59] }, @@ -127905,23 +127905,23 @@ "year": 1744, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -21.30431081966171, - "c2": 11.057233215976439, - "c3": -11.225085362537076, - "c4": -10.327587451944291, - "c5": 17.21339371477938, - "c6": 17.73358307522014, - "c7": -19.140689203018148 + "points": { + "c1": 17.17275628952887, + "c2": 10.724893921359353, + "c3": 2.388531432441983, + "c4": -24.604094432455593, + "c5": 14.349600014775248, + "c6": 21.79806128624019, + "c7": -15.036717376822029 }, - "vertexSeeds": { - "c1": 4.179636283176565, - "c2": 4.623046911574131, - "c3": 4.5151533480519745, - "c4": 5.334547606193531, - "c5": 4.710739271837568, - "c6": 5.008920729592225, - "c7": 4.26359486906009 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -127932,23 +127932,23 @@ "year": 1744, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 11.645212571033333, - "c2": -27.76206041220705, - "c3": 22.306948522248383, - "c4": -35.502270777772, - "c5": 27.703345373782412, - "c6": -13.323816029284231, - "c7": -24.572482141976277 + "points": { + "c1": 30.561763802918748, + "c2": -24.26123352965824, + "c3": -7.972753667539191, + "c4": 34.375374185851555, + "c5": 8.974849324526296, + "c6": 7.65778265152246, + "c7": -15.012560173902717 }, - "vertexSeeds": { - "c1": 6.935570966108003, - "c2": 6.9417634253596665, - "c3": 6.526992281569509, - "c4": 5.988354422859343, - "c5": 6.624635603960958, - "c6": 6.082881519511233, - "c7": 6.368852079245942 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533058, + "c4": 6.638927415626439, + "c5": 4.97919556171983, + "c6": 3.3194637078132194, + "c7": 1.6597318539066097 }, "rgb": [222, 0, 59] }, @@ -127959,23 +127959,23 @@ "year": 1744, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 24.937953736620948, - "c2": -18.11071629699923, - "c3": -6.825047379443411, - "c4": 25.306149285452193, - "c5": -24.2604227327988, - "c6": 3.4587702971729684, - "c7": -8.606422740201776 + "points": { + "c1": 9.743839204623363, + "c2": 33.613447702829745, + "c3": 3.2419689116839834, + "c4": 35.78763377688405, + "c5": -10.958490074290342, + "c6": 1.7450707256380582, + "c7": -23.245459185613566 }, - "vertexSeeds": { - "c1": 8.592318011542561, - "c2": 8.62798620816491, - "c3": 8.750088357142738, - "c4": 8.936720326774779, - "c5": 8.738650064464332, - "c6": 8.607107809410296, - "c7": 8.1754020217451 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984752, + "c3": 10.91077207582062, + "c4": 8.728617660656491, + "c5": 6.546463245492376, + "c6": 4.36430883032826, + "c7": 2.18215441516413 }, "rgb": [238, 201, 159] }, @@ -127986,23 +127986,23 @@ "year": 1744, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 23.51763391555383, - "c2": -15.461402135775892, - "c3": -21.448179918794892, - "c4": 1.2737835182934276, - "c5": 4.7751810934579595, - "c6": 27.45012196311115, - "c7": -9.656114115564012 + "points": { + "c1": 9.604561257993367, + "c2": 4.053425664132938, + "c3": -20.074025307597566, + "c4": 31.13249536965634, + "c5": -12.046558807043965, + "c6": -18.372219711303842, + "c7": -10.196847549886037 }, - "vertexSeeds": { - "c1": 4.5411968989244205, - "c2": 4.5778278751219315, - "c3": 4.426606210161196, - "c4": 4.543252743766977, - "c5": 4.307653271119243, - "c6": 4.418955578012046, - "c7": 4.775435252283828 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934815, + "c3": 5.70966250577901, + "c4": 4.56773000462321, + "c5": 3.4257975034674035, + "c6": 2.283865002311605, + "c7": 1.1419325011558066 }, "rgb": [58, 15, 49] }, @@ -128013,23 +128013,23 @@ "year": 1744, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -21.404670741850733, - "c2": 33.430293689208966, - "c3": 34.17707052944827, - "c4": -22.070542780416496, - "c5": 25.298752830089363, - "c6": -12.082167279912994, - "c7": 33.980829414830126 + "points": { + "c1": -28.19386811805187, + "c2": -33.46023275561944, + "c3": 34.914675149758395, + "c4": 2.2901293131100076, + "c5": 12.745939478412346, + "c6": 25.06612746536439, + "c7": 9.752005143854262 }, - "vertexSeeds": { - "c1": 3.3157254747014218, - "c2": 3.209752560077042, - "c3": 3.433579191322478, - "c4": 3.282084255726766, - "c5": 3.281698820050522, - "c6": 3.375034266680612, - "c7": 3.5705935696548456 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481278, + "c3": 4.299583911234393, + "c4": 3.4396671289875163, + "c5": 2.579750346740639, + "c6": 1.719833564493754, + "c7": 0.859916782246877 }, "rgb": [86, 146, 138] }, @@ -128040,23 +128040,23 @@ "year": 1744, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 16.487392886441185, - "c2": -5.756483030603022, - "c3": 14.986809210155727, - "c4": 16.952622509083845, - "c5": 19.70744318294706, - "c6": -1.9474208297675624, - "c7": -7.439113042624026 + "points": { + "c1": -23.14282003647907, + "c2": -25.915081386920363, + "c3": 4.902170281694101, + "c4": 0.8524465765592808, + "c5": 13.066700939266639, + "c6": -11.104272856880456, + "c7": -17.159483240876572 }, - "vertexSeeds": { - "c1": 5.659393659236092, - "c2": 5.66016905225409, - "c3": 5.88219559721502, - "c4": 6.3066947597788605, - "c5": 5.760013424287147, - "c6": 5.784963498199388, - "c7": 6.164418486477474 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -128067,23 +128067,23 @@ "year": 1745, "resistanceReported": false, "duration": 47606400, - "curveSeeds": { - "c1": 61.78483083018197, - "c2": 31.866996234447335, - "c3": -2.5975885024818126, - "c4": 17.15534026288089, - "c5": 6.2528336405609295, - "c6": -6.534919974658912, - "c7": -5.757354454042769 + "points": { + "c1": -2.9092589570258838, + "c2": -3.1935885933192836, + "c3": 42.973975308720995, + "c4": -43.250692352173914, + "c5": 45.80169617778466, + "c6": -31.91379130399403, + "c7": -35.72286673430189 }, - "vertexSeeds": { - "c1": 2.079571350414865, - "c2": 2.120387757614948, - "c3": 2.297534498437707, - "c4": 2.3192496385719608, - "c5": 2.3326937689634066, - "c6": 2.165892477269288, - "c7": 2.3102205983124695 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070747, + "c3": 2.8201571890892265, + "c4": 2.256125751271382, + "c5": 1.6920943134535373, + "c6": 1.128062875635689, + "c7": 0.5640314378178445 }, "rgb": [77, 76, 132] }, @@ -128094,23 +128094,23 @@ "year": 1744, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 14.792524856362952, - "c2": 28.505423500412036, - "c3": 24.57472567918589, - "c4": 14.405576620968823, - "c5": 18.17054448031648, - "c6": 25.68820029987669, - "c7": -7.049662498768473 + "points": { + "c1": -34.43427683858122, + "c2": -7.676220771411831, + "c3": 13.480702105313028, + "c4": -8.692803643860579, + "c5": 1.3279281259902405, + "c6": -0.362591418613988, + "c7": -37.23263262441531 }, - "vertexSeeds": { - "c1": 11.842369160467088, - "c2": 11.537737183688291, - "c3": 11.32683729710705, - "c4": 11.740302249448535, - "c5": 12.710263319893864, - "c6": 11.38003378552038, - "c7": 13.235997551406728 + "offsets": { + "c1": 22.103559870550164, + "c2": 18.945908460471568, + "c3": 15.788257050392975, + "c4": 12.630605640314378, + "c5": 9.472954230235784, + "c6": 6.315302820157189, + "c7": 3.1576514100785946 }, "rgb": [238, 201, 159] }, @@ -128121,23 +128121,23 @@ "year": 1744, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 19.984153077660373, - "c2": -21.10890032747595, - "c3": 5.0760060655440356, - "c4": 32.50981069940434, - "c5": 16.70568615072103, - "c6": -14.286872260038354, - "c7": -0.6679238342181577 + "points": { + "c1": -17.31526420111111, + "c2": 21.37587787405191, + "c3": -12.380763075196942, + "c4": 30.441115696226262, + "c5": 39.33990580183435, + "c6": -36.7698099770541, + "c7": -22.943939327411698 }, - "vertexSeeds": { - "c1": 4.71980434249107, - "c2": 5.271673874535237, - "c3": 4.601491625482448, - "c4": 5.098825935767497, - "c5": 5.250349720243709, - "c6": 5.090936532154536, - "c7": 4.827301048860392 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -128148,23 +128148,23 @@ "year": 1744, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -16.41007091450824, - "c2": -19.935717569399536, - "c3": -12.114774564184517, - "c4": 21.221653758008678, - "c5": -0.19604259092929155, - "c6": 18.008106895855292, - "c7": -14.588241230553683 + "points": { + "c1": -17.86196557998972, + "c2": -10.349390220445128, + "c3": -24.50999985130742, + "c4": 14.562731978490454, + "c5": -22.144423635751398, + "c6": -9.790239714997973, + "c7": 9.736592570976974 }, - "vertexSeeds": { - "c1": 4.610371150588088, - "c2": 4.77420043324908, - "c3": 4.729547601721541, - "c4": 4.831865323354593, - "c5": 4.402339236177495, - "c6": 5.041883516124477, - "c7": 4.280169892678138 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -128175,23 +128175,23 @@ "year": 1744, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -0.8120864133714818, - "c2": -2.640942660465221, - "c3": -22.44251187100686, - "c4": -21.352029434064576, - "c5": -41.086507625685556, - "c6": -33.0648766569617, - "c7": 0.9605891875268071 + "points": { + "c1": -18.19787372074302, + "c2": -27.17878411354818, + "c3": -39.03168135939748, + "c4": 41.11225207805913, + "c5": -3.0193045409153356, + "c6": -33.306794034471615, + "c7": -29.50393873425916 }, - "vertexSeeds": { - "c1": 0.41771270791053366, - "c2": 0.4500805608768585, - "c3": 0.44909759404106186, - "c4": 0.4522467246899519, - "c5": 0.4812249494961453, - "c6": 0.4658678065313276, - "c7": 0.4829510132770191 + "offsets": { + "c1": 0.8414239482200648, + "c2": 0.7212205270457701, + "c3": 0.6010171058714748, + "c4": 0.48081368469718005, + "c5": 0.3606102635228848, + "c6": 0.24040684234859003, + "c7": 0.12020342117429532 }, "rgb": [238, 201, 159] }, @@ -128202,23 +128202,23 @@ "year": 1744, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 38.75649585882676, - "c2": -2.8336577821472346, - "c3": -8.756761537367119, - "c4": -11.610474712867202, - "c5": 7.699822358033131, - "c6": 35.13300193504397, - "c7": 41.40941305516805 + "points": { + "c1": 40.27253597149919, + "c2": 9.294850792444741, + "c3": 6.062523527968814, + "c4": 25.629098861583934, + "c5": -28.500140052454118, + "c6": -27.181171837052467, + "c7": 18.090970135720944 }, - "vertexSeeds": { - "c1": 6.234633089032537, - "c2": 5.591318537260918, - "c3": 5.765941955129021, - "c4": 6.263405981349296, - "c5": 5.350994226861529, - "c6": 6.314253644351973, - "c7": 5.945429650409458 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [77, 76, 132] }, @@ -128229,23 +128229,23 @@ "year": 1744, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 27.1643668743654, - "c2": 24.25936513551222, - "c3": -24.06245374828606, - "c4": -25.572004693589445, - "c5": 17.10181228366359, - "c6": -4.998387820511098, - "c7": 33.60053590581411 + "points": { + "c1": -6.081501425816228, + "c2": 22.580788324651024, + "c3": 38.55100280002931, + "c4": 35.90819417697466, + "c5": 25.392409991631993, + "c6": 12.839356909223028, + "c7": 8.115169483356048 }, - "vertexSeeds": { - "c1": 6.089966210466515, - "c2": 5.6298743928666335, - "c3": 5.598811709511789, - "c4": 5.956670408691316, - "c5": 5.7986001226165245, - "c6": 6.36535596837073, - "c7": 5.984025120361619 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -128256,23 +128256,23 @@ "year": 1744, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -13.899960724077147, - "c2": -1.612376735638648, - "c3": 21.103883255108954, - "c4": 9.917902842384422, - "c5": 17.75443607793258, - "c6": -20.603807782127983, - "c7": -13.938222005913303 + "points": { + "c1": 13.693574946455257, + "c2": 0.5715448652239132, + "c3": 2.407572835807219, + "c4": 7.585848373837749, + "c5": -23.553838798596967, + "c6": -11.29639350760875, + "c7": 13.050392426173808 }, - "vertexSeeds": { - "c1": 3.29955940435952, - "c2": 3.024384877169437, - "c3": 3.0854009079725886, - "c4": 3.240030974151255, - "c5": 3.3187189292116077, - "c6": 3.1484693899126253, - "c7": 3.198682249925124 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -128283,23 +128283,23 @@ "year": 1744, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 25.793850539943975, - "c2": -9.755730666385897, - "c3": -9.88448265036325, - "c4": -18.176653554942238, - "c5": -14.151102639923053, - "c6": 30.00558089234005, - "c7": -26.95495190015105 + "points": { + "c1": -5.538622895945487, + "c2": -34.454767038726914, + "c3": -23.10697465010621, + "c4": -34.07792563017492, + "c5": -5.544549561971731, + "c6": -7.15342536571195, + "c7": -25.97200273869733 }, - "vertexSeeds": { - "c1": 3.278231292897648, - "c2": 3.331835901852695, - "c3": 3.2548362749832136, - "c4": 3.1522135733070766, - "c5": 3.3954349915232447, - "c6": 3.395355130485987, - "c7": 3.1820478273298023 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400835, + "c3": 4.253351826167357, + "c4": 3.4026814609338873, + "c5": 2.5520110957004176, + "c6": 1.7013407304669477, + "c7": 0.8506703652334697 }, "rgb": [238, 201, 159] }, @@ -128310,23 +128310,23 @@ "year": 1744, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 7.218820382841621, - "c2": -32.839793108097496, - "c3": -20.088174662840405, - "c4": -16.442466257122597, - "c5": 10.664876640812906, - "c6": -9.655806553189315, - "c7": 19.460144542836062 + "points": { + "c1": -38.43137033619255, + "c2": 42.3230124123504, + "c3": 27.00921827380288, + "c4": 32.35968169943464, + "c5": 28.008605167227692, + "c6": 9.910522232426423, + "c7": 11.475919794877825 }, - "vertexSeeds": { - "c1": 5.255730793197696, - "c2": 5.132519071301585, - "c3": 4.802539863907549, - "c4": 4.6367998246821305, - "c5": 5.1748327082493475, - "c6": 5.11432714625674, - "c7": 5.154483898498233 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181692, + "c3": 6.426259824318075, + "c4": 5.141007859454459, + "c5": 3.8557558945908488, + "c6": 2.5705039297272325, + "c7": 1.2852519648636163 }, "rgb": [77, 76, 132] }, @@ -128337,23 +128337,23 @@ "year": 1744, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 37.83770958498252, - "c2": 14.41309531607822, - "c3": 24.429206445756606, - "c4": -27.68748407518636, - "c5": -0.043417746198073814, - "c6": -21.75857687933146, - "c7": 40.72198487778135 + "points": { + "c1": 15.32078075886956, + "c2": 23.778184258568345, + "c3": -29.67600394132972, + "c4": 43.56908950580021, + "c5": 42.41401574619839, + "c6": -15.105209572466535, + "c7": -3.8569993175819945 }, - "vertexSeeds": { - "c1": 7.451972610646595, - "c2": 7.348727178928857, - "c3": 8.245070829706554, - "c4": 7.281228977535798, - "c5": 7.8791370201913935, - "c6": 8.428966797408304, - "c7": 8.074965814832199 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496536, + "c3": 10.055478502080438, + "c4": 8.044382801664353, + "c5": 6.033287101248268, + "c6": 4.02219140083217, + "c7": 2.011095700416085 }, "rgb": [86, 146, 138] }, @@ -128364,23 +128364,23 @@ "year": 1744, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -8.677796115133539, - "c2": -4.798702706627349, - "c3": 22.46972124778464, - "c4": -10.725101680504078, - "c5": 5.5205454706769395, - "c6": 10.297639243021678, - "c7": -21.099010661735274 + "points": { + "c1": 23.256682635223875, + "c2": -8.266458385257152, + "c3": -23.89626287474334, + "c4": -17.465874144675418, + "c5": 22.76722054842398, + "c6": 9.330951296749298, + "c7": -13.551332852762968 }, - "vertexSeeds": { - "c1": 4.382878668688802, - "c2": 4.941180209940446, - "c3": 4.648863807663392, - "c4": 4.2218087855669255, - "c5": 4.39858482026762, - "c6": 4.787273467045767, - "c7": 4.625209328777409 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -128391,23 +128391,23 @@ "year": 1744, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 32.10897322080055, - "c2": 11.327043665941723, - "c3": -16.932599879259772, - "c4": 38.2434351412945, - "c5": -35.617029478721925, - "c6": -10.889819414541037, - "c7": -15.20292312911781 + "points": { + "c1": 48.459968356476224, + "c2": 44.42450538938749, + "c3": 0.5118894585018197, + "c4": -28.420449623174665, + "c5": 4.180554259427424, + "c6": -22.855149812405298, + "c7": 35.63024499088314 }, - "vertexSeeds": { - "c1": 2.8102678114513004, - "c2": 2.760934435970191, - "c3": 2.7760825557088245, - "c4": 2.771358537092538, - "c5": 2.456632263170598, - "c6": 2.6033039500767536, - "c7": 2.7643404089572057 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073512, + "c3": 3.4905224225612574, + "c4": 2.7924179380490086, + "c5": 2.0943134535367545, + "c6": 1.3962089690245054, + "c7": 0.6981044845122515 }, "rgb": [238, 201, 159] }, @@ -128418,23 +128418,23 @@ "year": 1744, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 22.76711454488651, - "c2": 39.539488583628454, - "c3": -36.22988688203421, - "c4": 16.707098433326443, - "c5": -19.468663960430696, - "c6": 22.486247424522716, - "c7": -1.3031417686308657 + "points": { + "c1": -4.059317209032635, + "c2": 3.967440868847852, + "c3": 25.187161386868226, + "c4": -13.27694905237228, + "c5": -12.581657556701266, + "c6": 1.2104500008617123, + "c7": -31.563303892887077 }, - "vertexSeeds": { - "c1": 4.030011416254588, - "c2": 4.147968843275582, - "c3": 4.192634560331297, - "c4": 4.230683317266135, - "c5": 3.970555937484196, - "c6": 3.930913521372935, - "c7": 4.011393947601061 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929263, + "c3": 5.131761442441051, + "c4": 4.105409153952839, + "c5": 3.0790568654646266, + "c6": 2.0527045769764247, + "c7": 1.0263522884882124 }, "rgb": [222, 0, 59] }, @@ -128445,23 +128445,23 @@ "year": 1744, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -21.871007034735605, - "c2": -7.673438472250158, - "c3": -32.466994532962666, - "c4": -15.21666765629772, - "c5": -23.323541695077374, - "c6": -12.639480166734973, - "c7": 22.579992979192625 + "points": { + "c1": 6.2745730615699316, + "c2": 11.826288337258681, + "c3": -32.16623207033749, + "c4": -2.756778282046561, + "c5": -26.68079421340343, + "c6": 11.827507232163583, + "c7": 36.40442876541633 }, - "vertexSeeds": { - "c1": 10.72855188867679, - "c2": 10.379956627039977, - "c3": 10.312033034411694, - "c4": 11.540441777881801, - "c5": 10.610629272940356, - "c6": 10.921811543843921, - "c7": 10.759722327014114 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133155, + "c3": 13.869625520110944, + "c4": 11.09570041608876, + "c5": 8.321775312066578, + "c6": 5.547850208044395, + "c7": 2.773925104022183 }, "rgb": [222, 0, 59] }, @@ -128472,23 +128472,23 @@ "year": 1744, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 2.7267336228916363, - "c2": 34.10515805826879, - "c3": -5.342609063292635, - "c4": 27.109010884026084, - "c5": 29.218191603200317, - "c6": 21.10544585178679, - "c7": -31.230381299526865 + "points": { + "c1": 16.748927318799126, + "c2": 12.297826574232644, + "c3": -16.24864218943113, + "c4": -39.0465505475886, + "c5": -2.8108270905151898, + "c6": 15.329419522582505, + "c7": -8.866374425874312 }, - "vertexSeeds": { - "c1": 8.703399246710553, - "c2": 8.772087036358815, - "c3": 7.492057184393852, - "c4": 7.456320215663379, - "c5": 8.599673951831528, - "c6": 7.919685028030571, - "c7": 7.901158161682398 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502082, + "c3": 10.633379565418402, + "c4": 8.506703652334721, + "c5": 6.380027739251041, + "c6": 4.253351826167361, + "c7": 2.1266759130836803 }, "rgb": [58, 15, 49] }, @@ -128499,23 +128499,23 @@ "year": 1744, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -15.102434072775878, - "c2": -14.35935062861955, - "c3": 3.6195857897491095, - "c4": -14.709415388987676, - "c5": -20.037589976519108, - "c6": -1.1377421657607307, - "c7": 2.3167680242924042 + "points": { + "c1": 24.030181630494482, + "c2": -14.138227874504501, + "c3": -7.374010750932975, + "c4": 13.178937723216471, + "c5": 15.768775206026383, + "c6": -8.743922327590521, + "c7": -10.747347799995834 }, - "vertexSeeds": { - "c1": 6.258701439930528, - "c2": 5.660871714337484, - "c3": 5.736163041982955, - "c4": 5.643572377086789, - "c5": 5.618964980121325, - "c6": 5.6138452554434695, - "c7": 5.560229970074927 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -128526,23 +128526,23 @@ "year": 1744, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 20.051014859944488, - "c2": -2.8191763257928883, - "c3": -0.20492649864681667, - "c4": -6.071446794878728, - "c5": 8.700958316648162, - "c6": -11.701982660865788, - "c7": -14.797966040050479 + "points": { + "c1": -6.045915118580567, + "c2": 3.6402580692514306, + "c3": 18.487337196578274, + "c4": 19.795552253628514, + "c5": 21.839026290299508, + "c6": 0.9164761668689465, + "c7": -11.25471625926572 }, - "vertexSeeds": { - "c1": 9.560414786677741, - "c2": 9.74716666105895, - "c3": 9.599992574809368, - "c4": 10.100456586420696, - "c5": 10.048072506215506, - "c6": 9.945729611376319, - "c7": 10.379626126387477 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.25658807212205, + "c3": 12.713823393435037, + "c4": 10.171058714748028, + "c5": 7.628294036061017, + "c6": 5.085529357374022, + "c7": 2.542764678687011 }, "rgb": [77, 76, 132] }, @@ -128553,23 +128553,23 @@ "year": 1744, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": -20.761522828636224, - "c2": 8.397167182404846, - "c3": 17.791121200791792, - "c4": -13.640485117225305, - "c5": -4.107835440512925, - "c6": 0.6557493634707505, - "c7": 13.669127900210597 + "points": { + "c1": -13.397211618737561, + "c2": 8.175666890034513, + "c3": 12.943044594992656, + "c4": 8.666801838500149, + "c5": 14.631481078868845, + "c6": -9.718220217123516, + "c7": -4.300144955872902 }, - "vertexSeeds": { - "c1": 4.442296905914889, - "c2": 5.104727350956973, - "c3": 4.364627444303967, - "c4": 4.872115601666784, - "c5": 4.319764633695442, - "c6": 5.112427127668353, - "c7": 4.551449708153118 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -128580,23 +128580,23 @@ "year": 1744, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -34.19720411177049, - "c2": -1.597051773389623, - "c3": 20.79802646019074, - "c4": 1.514459546753237, - "c5": 25.898818713299406, - "c6": 26.090401033699173, - "c7": -20.234277230627644 + "points": { + "c1": -7.644577112688243, + "c2": -19.897157784644605, + "c3": 33.90617173356806, + "c4": -31.099842297099137, + "c5": 27.603251691773295, + "c6": -21.335334576838175, + "c7": 25.00107042951427 }, - "vertexSeeds": { - "c1": 5.253095830543986, - "c2": 4.720714135715515, - "c3": 4.466110289959588, - "c4": 4.629417743088107, - "c5": 4.838687925198128, - "c6": 4.838328641565734, - "c7": 4.3486183537188605 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980579, + "c3": 6.310679611650489, + "c4": 5.048543689320389, + "c5": 3.7864077669902922, + "c6": 2.5242718446601966, + "c7": 1.2621359223300956 }, "rgb": [222, 0, 59] }, @@ -128607,23 +128607,23 @@ "year": 1744, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -5.19862427846051, - "c2": -6.206528956024254, - "c3": -1.0601176541174233, - "c4": -10.624663360374715, - "c5": 0.3737250628917934, - "c6": 29.804920442809475, - "c7": 10.398055131742794 + "points": { + "c1": 23.21471784545824, + "c2": -23.488637218749133, + "c3": 25.42402877802848, + "c4": -31.38698789729431, + "c5": 22.137959900797703, + "c6": -25.296875501419596, + "c7": -12.506715037616967 }, - "vertexSeeds": { - "c1": 10.686972147620535, - "c2": 11.06653556218703, - "c3": 10.77528518299226, - "c4": 11.382221045404147, - "c5": 11.695229738588202, - "c6": 10.41661896088919, - "c7": 10.763997295734843 + "offsets": { + "c1": 19.70873786407767, + "c2": 16.893203883495143, + "c3": 14.077669902912612, + "c4": 11.262135922330085, + "c5": 8.446601941747584, + "c6": 5.631067961165057, + "c7": 2.8155339805825284 }, "rgb": [222, 0, 59] }, @@ -128634,23 +128634,23 @@ "year": 1744, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 23.43290869151484, - "c2": -3.1001190372616563, - "c3": 18.895367000173266, - "c4": 15.53501750113658, - "c5": -35.01885570999654, - "c6": -11.19445297912857, - "c7": -45.329953178258215 + "points": { + "c1": -1.101026580641033, + "c2": -14.711831392135245, + "c3": 19.961480556347922, + "c4": -42.160604500619826, + "c5": -46.37394872482345, + "c6": -36.60662695337074, + "c7": -13.48486583668128 }, - "vertexSeeds": { - "c1": 5.221945422631002, - "c2": 4.95899249391843, - "c3": 4.646668195499518, - "c4": 5.417359302641424, - "c5": 5.3189350268059075, - "c6": 5.401382156310908, - "c7": 4.867453160584585 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302355, + "c3": 6.495607951918625, + "c4": 5.196486361534908, + "c5": 3.8973647711511776, + "c6": 2.5982431807674478, + "c7": 1.2991215903837239 }, "rgb": [222, 0, 59] }, @@ -128661,23 +128661,23 @@ "year": 1744, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": 9.608702961077196, - "c2": -15.599268674185232, - "c3": 20.80014499441181, - "c4": 16.862075509927962, - "c5": 8.744974056831627, - "c6": -12.908975561922436, - "c7": 17.839339511758645 + "points": { + "c1": -18.060509248779923, + "c2": -20.49469129325481, + "c3": -5.865009729514988, + "c4": -15.885249202945458, + "c5": -18.283217178529974, + "c6": 3.706086506318595, + "c7": 18.62497319842958 }, - "vertexSeeds": { - "c1": 4.753072553878453, - "c2": 4.8638979682487635, - "c3": 5.2678370528519975, - "c4": 4.8310243042558465, - "c5": 5.114944413303465, - "c6": 4.920852563876996, - "c7": 4.71398785373935 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -128688,23 +128688,23 @@ "year": 1744, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": 8.548751080854828, - "c2": -14.767294101945897, - "c3": -4.354882407371182, - "c4": -2.8904149463582947, - "c5": -5.3926262235364035, - "c6": 10.673024893895676, - "c7": 12.819679826751326 + "points": { + "c1": 12.495787756878258, + "c2": 16.668712704352764, + "c3": 8.254610878699477, + "c4": -4.080421057638041, + "c5": -19.342449735800233, + "c6": 12.101753709417103, + "c7": -2.873176492149632 }, - "vertexSeeds": { - "c1": 4.6767831998276765, - "c2": 4.24731663211187, - "c3": 4.956636274959662, - "c4": 4.802895014756822, - "c5": 4.449557793774063, - "c6": 4.455053804546938, - "c7": 4.6092052278347175 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -128715,23 +128715,23 @@ "year": 1744, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -31.90562435173085, - "c2": -42.32866834088928, - "c3": -23.217480458318526, - "c4": -42.54114314088846, - "c5": 39.55558627770011, - "c6": -27.29288814046892, - "c7": 26.145183543774728 + "points": { + "c1": -33.26637941405761, + "c2": 8.089592539678222, + "c3": -4.5816319573047934, + "c4": -42.613688898860715, + "c5": -6.811716499500932, + "c6": 34.29307652422988, + "c7": -22.153003745674916 }, - "vertexSeeds": { - "c1": 6.796598836328951, - "c2": 6.8580623285529585, - "c3": 6.471108496936624, - "c4": 6.308260754206895, - "c5": 6.642325800114804, - "c6": 6.091947870436498, - "c7": 6.795026155552492 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600556, + "c3": 8.39112343966713, + "c4": 6.712898751733704, + "c5": 5.034674063800278, + "c6": 3.356449375866852, + "c7": 1.678224687933426 }, "rgb": [222, 0, 59] }, @@ -128742,23 +128742,23 @@ "year": 1744, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 22.49922425785205, - "c2": 18.426188122276344, - "c3": 27.52047480854248, - "c4": 21.729019258190114, - "c5": 30.282630078746884, - "c6": -22.393453536352546, - "c7": 11.155270125461008 + "points": { + "c1": 18.919278444064524, + "c2": -34.12921176915719, + "c3": 18.900658047023192, + "c4": -12.307091136455842, + "c5": 2.5165234588304273, + "c6": 19.832972575874166, + "c7": -38.69036173138554 }, - "vertexSeeds": { - "c1": 6.2579944375805105, - "c2": 6.266661668305835, - "c3": 6.071628960703715, - "c4": 7.398170089032815, - "c5": 7.311221952899088, - "c6": 7.075819686025776, - "c7": 6.742494210804552 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404994, + "c3": 8.853444290337498, + "c4": 7.082755432269989, + "c5": 5.312066574202492, + "c6": 3.5413777161349946, + "c7": 1.7706888580674973 }, "rgb": [58, 15, 49] }, @@ -128769,23 +128769,23 @@ "year": 1745, "resistanceReported": false, "duration": 46915200, - "curveSeeds": { - "c1": -29.377109006694234, - "c2": 14.045207912340693, - "c3": 20.60524008444117, - "c4": 6.22724897108899, - "c5": -60.644249348305735, - "c6": 48.35712255491374, - "c7": 44.34136497732326 + "points": { + "c1": 51.577506466879676, + "c2": 55.86479071232264, + "c3": 17.71906325076302, + "c4": 12.730721445582923, + "c5": -61.775526859776484, + "c6": 25.894912617228435, + "c7": -47.08547825264429 }, - "vertexSeeds": { - "c1": 4.506157789589107, - "c2": 4.514093572261792, - "c3": 4.499647130564303, - "c4": 4.504549680297599, - "c5": 4.517387711633732, - "c6": 4.470827636697468, - "c7": 4.464387022708547 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251018, + "c3": 5.316689782709209, + "c4": 4.2533518261673455, + "c5": 3.1900138696255356, + "c6": 2.1266759130836728, + "c7": 1.06333795654181 }, "rgb": [86, 146, 138] }, @@ -128796,23 +128796,23 @@ "year": 1744, "resistanceReported": true, "duration": 27388800, - "curveSeeds": { - "c1": 10.26501404931782, - "c2": -28.689852846099235, - "c3": 36.50170155868067, - "c4": 26.350985403045065, - "c5": 5.28242483322024, - "c6": -31.091736365712684, - "c7": 16.442050230926 + "points": { + "c1": 30.076280791392854, + "c2": 38.891921524458134, + "c3": 2.4820424077201864, + "c4": -25.83538422254017, + "c5": 16.194719343121747, + "c6": -32.62593257254869, + "c7": -32.22030631846738 }, - "vertexSeeds": { - "c1": 4.834251904394131, - "c2": 4.823343934987262, - "c3": 5.455908480966233, - "c4": 5.202739077387985, - "c5": 5.133959388473873, - "c6": 4.543455698851608, - "c7": 5.124163760579099 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785023, + "c3": 6.773000462320848, + "c4": 5.4184003698566805, + "c5": 4.0638002773925095, + "c6": 2.7092001849283385, + "c7": 1.354600092464171 }, "rgb": [77, 76, 132] }, @@ -128823,23 +128823,23 @@ "year": 1744, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 40.73240652777771, - "c2": 23.829603209247892, - "c3": 32.56829647136347, - "c4": 1.4323744901862199, - "c5": -2.0038244168417236, - "c6": -23.869358635273876, - "c7": 0.27166570590396333 + "points": { + "c1": -17.566256207524113, + "c2": -1.754156600065123, + "c3": -1.3509436088858777, + "c4": -14.793832761742276, + "c5": 29.915070746187112, + "c6": -21.532603677008513, + "c7": -33.30138065505816 }, - "vertexSeeds": { - "c1": 7.224027984027605, - "c2": 7.433199839332837, - "c3": 6.955393678458651, - "c4": 7.316644110747468, - "c5": 6.941742109632005, - "c6": 7.177529310523029, - "c7": 7.346471590616018 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -128850,23 +128850,23 @@ "year": 1744, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -25.503611331599192, - "c2": 23.158831356713996, - "c3": -29.825585627662132, - "c4": 31.383893460720977, - "c5": -3.3224397271113943, - "c6": -27.26427634540628, - "c7": -16.12557080195971 + "points": { + "c1": -29.22593915956656, + "c2": -7.294204673795591, + "c3": 3.6664103313828633, + "c4": -7.30881397787374, + "c5": 27.37366759480995, + "c6": -19.34654310894175, + "c7": 26.74264533459624 }, - "vertexSeeds": { - "c1": 7.220918400303963, - "c2": 7.560224559668505, - "c3": 7.585849408058016, - "c4": 7.020363466390059, - "c5": 7.46957962221105, - "c6": 7.0926364795107695, - "c7": 7.233607697772703 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807214, + "c3": 9.08460471567267, + "c4": 7.267683772538139, + "c5": 5.450762829403607, + "c6": 3.633841886269076, + "c7": 1.8169209431345317 }, "rgb": [238, 201, 159] }, @@ -128877,23 +128877,23 @@ "year": 1744, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -11.651888296467035, - "c2": -33.02362654987665, - "c3": -18.325957344942456, - "c4": -33.498982885090214, - "c5": -42.25640226989638, - "c6": -7.617907727780199, - "c7": 43.71249836593171 + "points": { + "c1": 22.03745166565814, + "c2": 46.06503350924248, + "c3": 47.38171896220814, + "c4": 12.278753424634345, + "c5": -7.32150122114097, + "c6": -46.19355103225739, + "c7": -2.785869386485814 }, - "vertexSeeds": { - "c1": 5.921062593166125, - "c2": 5.640211714592699, - "c3": 5.545457175729034, - "c4": 5.976086687566184, - "c5": 5.872339141789631, - "c6": 5.819909068086781, - "c7": 5.689750912191345 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.71012482662968, + "c3": 7.258437355524734, + "c4": 5.806749884419787, + "c5": 4.35506241331484, + "c6": 2.9033749422098936, + "c7": 1.4516874711049468 }, "rgb": [238, 201, 159] }, @@ -128904,23 +128904,23 @@ "year": 1744, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -14.05520577571238, - "c2": -14.247707537609223, - "c3": -32.37503877036839, - "c4": -21.28021393838116, - "c5": 12.109812475992818, - "c6": -6.912439277700301, - "c7": -37.01276807215294 + "points": { + "c1": 35.67381641682111, + "c2": -39.2252351760353, + "c3": 31.846458173423457, + "c4": -18.805551215172763, + "c5": 39.161624075899326, + "c6": -29.07151493077697, + "c7": -27.508296218745663 }, - "vertexSeeds": { - "c1": 6.993233771537232, - "c2": 6.877481392878265, - "c3": 7.006468812793958, - "c4": 6.8163600977887775, - "c5": 6.790276423267967, - "c6": 6.671824439517544, - "c7": 6.135885789249336 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244103, + "c3": 8.760980120203415, + "c4": 7.008784096162738, + "c5": 5.256588072122051, + "c6": 3.5043920480813644, + "c7": 1.7521960240406873 }, "rgb": [222, 0, 59] }, @@ -128931,23 +128931,23 @@ "year": 1744, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 42.6628858717204, - "c2": 32.05209201312035, - "c3": -5.5526378295146515, - "c4": 37.42819939657846, - "c5": -12.435351517750213, - "c6": -22.350899667303306, - "c7": 10.158013438001376 + "points": { + "c1": -25.74123817434969, + "c2": -34.52344462724055, + "c3": 6.5852254585868835, + "c4": 32.33787084811731, + "c5": -40.845388295096086, + "c6": 30.441962273049946, + "c7": 42.874801329464624 }, - "vertexSeeds": { - "c1": 2.0234214010693115, - "c2": 2.186716047548795, - "c3": 2.0523542243159874, - "c4": 2.0775786981421356, - "c5": 2.2133667965540926, - "c6": 2.1610960316512986, - "c7": 2.01531968915953 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.1900138696255205, + "c3": 2.6583448913546004, + "c4": 2.1266759130836803, + "c5": 1.5950069348127602, + "c6": 1.0633379565418402, + "c7": 0.5316689782709201 }, "rgb": [222, 0, 59] }, @@ -128958,23 +128958,23 @@ "year": 1744, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": -18.28837272538839, - "c2": 11.016260550852184, - "c3": 19.74550729463681, - "c4": -15.984567934315923, - "c5": 14.122635438463256, - "c6": 6.456404631704409, - "c7": -13.53806576828083 + "points": { + "c1": 16.968724252355287, + "c2": 1.4613026966815923, + "c3": -6.037279619897813, + "c4": -1.2963572111590125, + "c5": -18.475738831702277, + "c6": -13.644454770296605, + "c7": 7.179932743938849 }, - "vertexSeeds": { - "c1": 5.024817515041477, - "c2": 5.265733450866045, - "c3": 4.820280693759042, - "c4": 4.28800322953898, - "c5": 4.568718997222449, - "c6": 4.0928642387170795, - "c7": 4.367377341748048 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -128985,23 +128985,23 @@ "year": 1744, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -2.3715953416058824, - "c2": -46.1256799836862, - "c3": 13.603253893227716, - "c4": -7.773944214426869, - "c5": 14.53244595996803, - "c6": -0.7372859459048584, - "c7": -17.785374599127103 + "points": { + "c1": -29.156206318221322, + "c2": -28.802476885671243, + "c3": 4.7519083643875035, + "c4": 33.84256495795286, + "c5": 52.72614557342615, + "c6": 49.651330441381546, + "c7": 19.084836797016976 }, - "vertexSeeds": { - "c1": 6.634733666105023, - "c2": 6.987931027869496, - "c3": 6.902357806792825, - "c4": 7.114169398234877, - "c5": 7.101376281775976, - "c6": 6.9575895947452, - "c7": 6.997178952675895 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.26352288488211, + "c3": 8.552935737401762, + "c4": 6.842348589921415, + "c5": 5.131761442441044, + "c6": 3.4211742949606965, + "c7": 1.7105871474803482 }, "rgb": [222, 0, 59] }, @@ -129012,23 +129012,23 @@ "year": 1744, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -29.23599293271316, - "c2": -36.97707406348431, - "c3": 16.136482855292662, - "c4": -20.257612668123233, - "c5": -1.8539277120026298, - "c6": 9.613020080669713, - "c7": -27.32436468385651 + "points": { + "c1": 36.82936176977847, + "c2": 39.05552623631304, + "c3": 15.278070444073784, + "c4": 2.7241529024756375, + "c5": 1.8663079882894777, + "c6": -14.344923687541897, + "c7": -10.17021152565166 }, - "vertexSeeds": { - "c1": 5.325287237701213, - "c2": 5.492313415091295, - "c3": 5.282435039558731, - "c4": 5.372260027558984, - "c5": 5.570578758363002, - "c6": 5.312830559194753, - "c7": 5.515875403858829 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744792, + "c3": 6.749884419787342, + "c4": 5.399907535829869, + "c5": 4.049930651872396, + "c6": 2.6999537679149235, + "c7": 1.349976883957473 }, "rgb": [238, 201, 159] }, @@ -129039,23 +129039,23 @@ "year": 1744, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 2.4762245907039215, - "c2": 11.924271913495161, - "c3": 45.857427313633266, - "c4": -18.66727859332852, - "c5": 3.5219406058512845, - "c6": 12.096803789910446, - "c7": 26.45290968033582 + "points": { + "c1": -0.6021907595398872, + "c2": -26.17777402855122, + "c3": 25.56324897261341, + "c4": 18.092111449838, + "c5": -11.604031415578525, + "c6": -19.378513453389285, + "c7": -2.9530597665490035 }, - "vertexSeeds": { - "c1": 6.526811626725158, - "c2": 6.21332797566318, - "c3": 6.239934957817464, - "c4": 6.278433449344088, - "c5": 6.272304607325309, - "c6": 6.25001128949139, - "c7": 6.310631394828341 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -129066,23 +129066,23 @@ "year": 1744, "resistanceReported": false, "duration": 8121600, - "curveSeeds": { - "c1": -6.269533686884387, - "c2": -6.0062049433814355, - "c3": -3.516946371132626, - "c4": -14.309545501307124, - "c5": -12.98623832506772, - "c6": 9.5612792576709, - "c7": 3.8737602256003605 + "points": { + "c1": 7.9530430226665985, + "c2": -13.842883052065922, + "c3": 7.347978289980343, + "c4": -15.855141811358383, + "c5": 9.493594227522493, + "c6": -15.586323941331578, + "c7": 3.1974696702744083 }, - "vertexSeeds": { - "c1": 12.470074668585559, - "c2": 11.863989860987418, - "c3": 12.409668319913619, - "c4": 12.341658386000248, - "c5": 12.508439023909126, - "c6": 12.538557536645433, - "c7": 12.244835195428372 + "offsets": { + "c1": 21.294498381877023, + "c2": 18.252427184466015, + "c3": 15.210355987055005, + "c4": 12.168284789644037, + "c5": 9.126213592233027, + "c6": 6.084142394822019, + "c7": 3.0420711974110093 }, "rgb": [77, 76, 132] }, @@ -129093,23 +129093,23 @@ "year": 1744, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -12.006133457689852, - "c2": 14.6709615942498, - "c3": 27.733365603922667, - "c4": -6.225998049467535, - "c5": 24.773637747945028, - "c6": 0.6167285792859687, - "c7": -0.627272299750949 + "points": { + "c1": -30.738588105224093, + "c2": -30.550316095396454, + "c3": -25.362605571977056, + "c4": -11.298528128398178, + "c5": -4.72791705484779, + "c6": 28.77563503032586, + "c7": 9.76680039051476 }, - "vertexSeeds": { - "c1": 1.8589100426807228, - "c2": 1.8877888158631806, - "c3": 1.9203778346417546, - "c4": 1.920336114660397, - "c5": 1.868938316964121, - "c6": 1.8345344480188805, - "c7": 1.8600306938836708 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022195, + "c3": 2.3116042533518244, + "c4": 1.8492834026814635, + "c5": 1.386962552011093, + "c6": 0.9246417013407318, + "c7": 0.4623208506703612 }, "rgb": [222, 0, 59] }, @@ -129120,23 +129120,23 @@ "year": 1744, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -13.666963603059612, - "c2": -6.76364826343295, - "c3": 8.628185722287594, - "c4": 0.19862993185360267, - "c5": -16.034288336379166, - "c6": -14.64199067177149, - "c7": -3.6529108946502316 + "points": { + "c1": 0.5085296270046946, + "c2": -1.7830786271470807, + "c3": 15.733598862101772, + "c4": 1.6340303504054567, + "c5": -8.6788887297872, + "c6": -13.131701584467155, + "c7": 14.970844857172239 }, - "vertexSeeds": { - "c1": 6.0417868586286705, - "c2": 6.027781512688398, - "c3": 6.0241359901407705, - "c4": 6.092217430281958, - "c5": 6.117671308250108, - "c6": 5.982908915110501, - "c7": 6.087918427648633 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [86, 146, 138] }, @@ -129147,23 +129147,23 @@ "year": 1744, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 28.57577698464187, - "c2": -7.34893568651276, - "c3": 29.483177999663297, - "c4": -21.686683309155647, - "c5": -5.951058146128389, - "c6": -14.300077520269488, - "c7": 18.071388503859794 + "points": { + "c1": -5.656996995950077, + "c2": -11.481103793517004, + "c3": -29.712895114635085, + "c4": 29.29107535720167, + "c5": 27.248924900003793, + "c6": 17.140709787991447, + "c7": 2.6593289030637592 }, - "vertexSeeds": { - "c1": 5.485677480097777, - "c2": 5.371116479248939, - "c3": 5.3398238372657705, - "c4": 5.482547707894739, - "c5": 5.2734495164662, - "c6": 5.429294360612767, - "c7": 5.2047978662365315 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583917, + "c3": 6.657420249653257, + "c4": 5.325936199722611, + "c5": 3.9944521497919516, + "c6": 2.6629680998613057, + "c7": 1.3314840499306528 }, "rgb": [58, 15, 49] }, @@ -129174,23 +129174,23 @@ "year": 1744, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -8.15812707558434, - "c2": -13.308429263758384, - "c3": 29.50494322377528, - "c4": 37.66909399698849, - "c5": -38.62319966306306, - "c6": 1.3503759548756875, - "c7": 27.185424470069044 + "points": { + "c1": -10.809612749693006, + "c2": -1.2028263153224898, + "c3": 41.02704630048658, + "c4": -35.9678970994035, + "c5": -33.47744986817639, + "c6": -6.907310389682166, + "c7": -33.21341272202175 }, - "vertexSeeds": { - "c1": 4.852411834181248, - "c2": 4.7386612112745, - "c3": 4.902799484232338, - "c4": 4.96002797046658, - "c5": 4.612073804179483, - "c6": 4.53172842967627, - "c7": 4.5548845560235804 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.1844660194174805, + "c3": 5.987055016181231, + "c4": 4.789644012944982, + "c5": 3.5922330097087403, + "c6": 2.3948220064724977, + "c7": 1.1974110032362488 }, "rgb": [86, 146, 138] }, @@ -129201,23 +129201,23 @@ "year": 1744, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 4.172371450915776, - "c2": -6.242200343286662, - "c3": 26.75797143654806, - "c4": -23.678213212650423, - "c5": -24.028398039120383, - "c6": -15.66104096279847, - "c7": 10.277035958520614 + "points": { + "c1": 24.201523296647622, + "c2": -7.056809786536647, + "c3": 28.890921293043633, + "c4": -3.621282836844557, + "c5": 43.33981388192949, + "c6": -40.60232939561244, + "c7": 26.279918144009258 }, - "vertexSeeds": { - "c1": 3.2207289692329555, - "c2": 3.416133397667516, - "c3": 3.4293324999706436, - "c4": 3.556142796042301, - "c5": 3.3876743143469774, - "c6": 3.4727838854800304, - "c7": 3.3737270985631107 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481278, + "c3": 4.299583911234393, + "c4": 3.4396671289875163, + "c5": 2.579750346740639, + "c6": 1.719833564493754, + "c7": 0.859916782246877 }, "rgb": [222, 0, 59] }, @@ -129228,23 +129228,23 @@ "year": 1744, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": 22.53138788372778, - "c2": 29.61667031646892, - "c3": 42.55837970968498, - "c4": -3.4818785242507957, - "c5": 10.043529282467986, - "c6": -29.653266532835712, - "c7": -21.603182580228435 + "points": { + "c1": -47.96341674163738, + "c2": 29.307097665724875, + "c3": 21.0525851601412, + "c4": -24.924872863631855, + "c5": 15.672683024605654, + "c6": 41.51194667842973, + "c7": -12.014018111543983 }, - "vertexSeeds": { - "c1": 6.897272803430774, - "c2": 6.561821731128408, - "c3": 7.033932010141175, - "c4": 6.9752605745087575, - "c5": 7.0024898917006135, - "c6": 6.028826217326558, - "c7": 7.26528302050658 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.40221914008322, + "c3": 8.668515950069354, + "c4": 6.934812760055477, + "c5": 5.20110957004161, + "c6": 3.4674063800277435, + "c7": 1.7337031900138669 }, "rgb": [238, 201, 159] }, @@ -129255,23 +129255,23 @@ "year": 1745, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": -6.506761841502417, - "c2": -54.63171867600119, - "c3": 9.495244517764931, - "c4": 32.20075145319471, - "c5": 32.56083258368116, - "c6": 22.906179947520343, - "c7": 3.7309077866103877 + "points": { + "c1": 28.131522449272097, + "c2": 4.240952160569755, + "c3": 39.41941440844519, + "c4": 31.350465454062302, + "c5": 12.219869163655616, + "c6": -31.191764391197776, + "c7": 19.19731829949869 }, - "vertexSeeds": { - "c1": 7.793337047504907, - "c2": 8.549850198774148, - "c3": 8.222623248993898, - "c4": 7.928195226904968, - "c5": 7.932495890301045, - "c6": 8.149130272852206, - "c7": 8.704009713839438 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582527, + "c3": 10.679611650485441, + "c4": 8.543689320388342, + "c5": 6.407766990291256, + "c6": 4.271844660194171, + "c7": 2.1359223300970855 }, "rgb": [58, 15, 49] }, @@ -129282,23 +129282,23 @@ "year": 1744, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": -37.301333363433514, - "c2": 2.772115949337497, - "c3": -25.76791428675368, - "c4": 17.767243900090477, - "c5": 38.38798132947291, - "c6": 21.408479795033927, - "c7": -12.112237866472768 + "points": { + "c1": -33.57907143317891, + "c2": 30.413228704953227, + "c3": 4.371042662320178, + "c4": 48.2001832049027, + "c5": -14.300862058316305, + "c6": 33.71588631448337, + "c7": -27.00208937651631 }, - "vertexSeeds": { - "c1": 4.919498813016461, - "c2": 5.2449231387881055, - "c3": 4.510964305077793, - "c4": 4.198454367962319, - "c5": 4.418735383518596, - "c6": 4.542013992227995, - "c7": 5.231614378625175 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -129309,23 +129309,23 @@ "year": 1744, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -4.017353062515149, - "c2": -26.205818247792365, - "c3": 27.71015236458068, - "c4": -10.156400104060332, - "c5": 20.406765112549614, - "c6": 15.463741703573326, - "c7": -1.3028618832257521 + "points": { + "c1": 0.7752671580119923, + "c2": 25.18309842729846, + "c3": -10.205227912361583, + "c4": -8.267502906619619, + "c5": 20.66741308703859, + "c6": 22.319301954500034, + "c7": 37.32392409950327 }, - "vertexSeeds": { - "c1": 10.493470206422911, - "c2": 10.565761220083518, - "c3": 10.607243128498945, - "c4": 10.801712556710203, - "c5": 10.790471098079623, - "c6": 10.763586711318801, - "c7": 10.410617194499142 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.53398058252426, + "c3": 12.944983818770204, + "c4": 10.355987055016145, + "c5": 7.766990291262088, + "c6": 5.177993527508116, + "c7": 2.588996763754058 }, "rgb": [222, 0, 59] }, @@ -129336,23 +129336,23 @@ "year": 1744, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -32.190131310266224, - "c2": 26.11126423744882, - "c3": 6.589763863443444, - "c4": 16.70484579472577, - "c5": 17.61771664071167, - "c6": -2.227193514314216, - "c7": 31.272026056666988 + "points": { + "c1": 17.8569473914699, + "c2": 46.9349103086154, + "c3": 27.904171190165613, + "c4": -0.9032165601467952, + "c5": -12.201098152253167, + "c6": -1.6951597882956833, + "c7": 5.207644886794974 }, - "vertexSeeds": { - "c1": 5.020715993440838, - "c2": 5.018087191598761, - "c3": 4.9309535800778965, - "c4": 5.145633539535497, - "c5": 5.072363493065791, - "c6": 4.938844225233352, - "c7": 5.054715048921709 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [222, 0, 59] }, @@ -129363,23 +129363,23 @@ "year": 1744, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 28.680282869910783, - "c2": 34.81460327487501, - "c3": 31.296871562199797, - "c4": -34.425614924860916, - "c5": -32.87485916573585, - "c6": 1.7445823136985723, - "c7": -17.94816860444831 + "points": { + "c1": 27.50355235681407, + "c2": -8.075304625032711, + "c3": 31.07355981927978, + "c4": 11.145615931010582, + "c5": 16.569590965997854, + "c6": -1.5570532194010482, + "c7": 28.796293394030002 }, - "vertexSeeds": { - "c1": 5.095836363482533, - "c2": 5.51489160897982, - "c3": 5.127867483444999, - "c4": 5.134536228300132, - "c5": 4.883864495712299, - "c6": 5.3537596997047805, - "c7": 5.303604733494555 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872406, + "c6": 2.6999537679149372, + "c7": 1.3499768839574686 }, "rgb": [58, 15, 49] }, @@ -129390,23 +129390,23 @@ "year": 1744, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": -9.537874928396938, - "c2": -11.83618198750547, - "c3": 10.934123817073417, - "c4": -5.989666684247599, - "c5": -12.056275124058502, - "c6": 4.934306329045459, - "c7": -5.716987270109561 + "points": { + "c1": -3.6007265848483616, + "c2": 7.740916899659794, + "c3": 11.595656844262688, + "c4": 9.163822630689651, + "c5": -12.623753243581593, + "c6": 11.853568265932118, + "c7": 0.8605226104336587 }, - "vertexSeeds": { - "c1": 5.039820630506332, - "c2": 4.0699961925002635, - "c3": 4.258633474374089, - "c4": 4.37243605258978, - "c5": 4.500506833875871, - "c6": 4.622850617645731, - "c7": 4.621236805873215 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -129417,23 +129417,23 @@ "year": 1744, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 28.58327493345491, - "c2": 7.466101062509026, - "c3": -10.62186582980949, - "c4": 7.269253922800857, - "c5": 7.771107758375095, - "c6": -5.723628216322048, - "c7": -27.537075671266713 + "points": { + "c1": -7.6514351749521055, + "c2": -26.622604846560705, + "c3": -5.326986716665203, + "c4": -29.117230100106525, + "c5": 36.161548949091774, + "c6": -38.07198416480568, + "c7": 40.723138225756564 }, - "vertexSeeds": { - "c1": 5.669771797296656, - "c2": 5.853529186061212, - "c3": 5.508692266137192, - "c4": 5.525275832724729, - "c5": 6.049761965609394, - "c6": 6.194465917376889, - "c7": 6.275414067278222 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [77, 76, 132] }, @@ -129444,23 +129444,23 @@ "year": 1744, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 3.9319577171416995, - "c2": 20.529490379310417, - "c3": -11.729456533708294, - "c4": -1.8880074125979505, - "c5": 10.135803521841503, - "c6": -19.626668767170433, - "c7": -10.72545185772217 + "points": { + "c1": 0.47065885951572994, + "c2": 40.44385206711698, + "c3": 3.917486398137818, + "c4": -1.112178086753616, + "c5": 12.791564448343507, + "c6": -2.2124371763569144, + "c7": -32.943783920261005 }, - "vertexSeeds": { - "c1": 2.7245911684992103, - "c2": 2.83666329673842, - "c3": 2.7125365821923, - "c4": 2.6604643059643776, - "c5": 2.6508562098376625, - "c6": 2.680247074428632, - "c7": 2.6053257791218924 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912618, + "c3": 3.398058252427189, + "c4": 2.718446601941749, + "c5": 2.038834951456309, + "c6": 1.359223300970869, + "c7": 0.6796116504854401 }, "rgb": [58, 15, 49] }, @@ -129471,23 +129471,23 @@ "year": 1744, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -34.2771605907279, - "c2": 28.64993538116334, - "c3": 38.576123086747195, - "c4": -40.76491371740811, - "c5": 21.15634907802147, - "c6": -12.695761621305806, - "c7": 34.95303561466999 + "points": { + "c1": 44.664128174609594, + "c2": 13.184326997665586, + "c3": -9.151260239443772, + "c4": 13.362340663684982, + "c5": 44.365574753589776, + "c6": 46.56597839906673, + "c7": 34.957443356009456 }, - "vertexSeeds": { - "c1": 5.295414280229028, - "c2": 6.187096203775511, - "c3": 6.430000111889578, - "c4": 6.089853303671203, - "c5": 6.054462911944563, - "c6": 6.304930258321467, - "c7": 5.621893672758432 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595012, + "c3": 7.81322237632917, + "c4": 6.250577901063337, + "c5": 4.687933425797506, + "c6": 3.1252889505316643, + "c7": 1.5626444752658322 }, "rgb": [238, 201, 159] }, @@ -129498,23 +129498,23 @@ "year": 1744, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 11.732350414662118, - "c2": -9.35922488320314, - "c3": 2.7365741598190247, - "c4": 1.731836179767484, - "c5": 21.720004066742693, - "c6": 6.818571044441441, - "c7": -11.15748929136487 + "points": { + "c1": -0.19338324872673596, + "c2": 6.698853902847862, + "c3": 0.7625880715599074, + "c4": 12.99033788279488, + "c5": 22.98368061335726, + "c6": -7.709258227426506, + "c7": -9.954307600616463 }, - "vertexSeeds": { - "c1": 1.6580972230994293, - "c2": 1.805524138468788, - "c3": 1.5582025055728255, - "c4": 1.8042978578601003, - "c5": 1.785794100095766, - "c6": 1.7585968444111693, - "c7": 1.5525542628602478 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210815, + "c3": 2.1960240406842355, + "c4": 1.7568192325473881, + "c5": 1.3176144244105408, + "c6": 0.8784096162736951, + "c7": 0.43920480813684754 }, "rgb": [58, 15, 49] }, @@ -129525,23 +129525,23 @@ "year": 1744, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 7.837568438027958, - "c2": 18.522644469360266, - "c3": -27.648361758924953, - "c4": 1.9590457296079435, - "c5": -22.59617806642595, - "c6": 12.968866261548207, - "c7": -5.980013932549742 + "points": { + "c1": 34.933751270061705, + "c2": -32.71031156549977, + "c3": 14.762574981821672, + "c4": -28.302213471796037, + "c5": 9.514924837078638, + "c6": 11.791332413311899, + "c7": -31.39406221917429 }, - "vertexSeeds": { - "c1": 5.398857568601309, - "c2": 4.850564583691248, - "c3": 4.866742523771887, - "c4": 5.289793881171384, - "c5": 4.708685259087186, - "c6": 4.942059466088539, - "c7": 5.419230476824728 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.87794729542302, + "c3": 6.564956079519192, + "c4": 5.251964863615351, + "c5": 3.93897364771151, + "c6": 2.6259824318076754, + "c7": 1.3129912159038346 }, "rgb": [58, 15, 49] }, @@ -129552,23 +129552,23 @@ "year": 1744, "resistanceReported": true, "duration": 30585600, - "curveSeeds": { - "c1": 31.9872239501085, - "c2": -12.484917898783593, - "c3": -33.287310367442295, - "c4": 20.767463874086815, - "c5": 30.440277282755247, - "c6": 9.334710256708753, - "c7": 39.30717404095655 + "points": { + "c1": -23.07246333592235, + "c2": 29.263755336391668, + "c3": -13.16028540203969, + "c4": -2.910499839950546, + "c5": -36.06489748225313, + "c6": -11.488138891283434, + "c7": -30.259000445896117 }, - "vertexSeeds": { - "c1": 9.420714268134393, - "c2": 8.498384654395332, - "c3": 8.113934614562108, - "c4": 9.686550116855972, - "c5": 9.147192461551775, - "c6": 8.77811682877084, - "c7": 9.668910986480489 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055477, + "c6": 4.6232085067036515, + "c7": 2.3116042533518257 }, "rgb": [222, 0, 59] }, @@ -129579,23 +129579,23 @@ "year": 1744, "resistanceReported": false, "duration": 1987200, - "curveSeeds": { - "c1": 5.5444114984038, - "c2": 1.590874305388862, - "c3": 4.612908547489024, - "c4": 5.1807745265241, - "c5": 0.9639511322956622, - "c6": -8.646991180369065, - "c7": 11.509358675709123 + "points": { + "c1": 8.063432588297928, + "c2": 11.074827581544596, + "c3": -9.103146696876813, + "c4": 10.159945628931258, + "c5": -2.422712087315025, + "c6": -11.387833728443587, + "c7": -4.654973120012988 }, - "vertexSeeds": { - "c1": 3.190444975018073, - "c2": 3.2873864233315993, - "c3": 3.0165514521280987, - "c4": 3.2435890415530317, - "c5": 3.2482838872017035, - "c6": 3.1887693913042323, - "c7": 3.227011385257655 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -129606,23 +129606,23 @@ "year": 1744, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -12.129090704947238, - "c2": -24.75867074807661, - "c3": 29.603438004640445, - "c4": -28.658606415211977, - "c5": -11.07441685332812, - "c6": 41.17920233249091, - "c7": -16.99761765050555 + "points": { + "c1": -10.800464110432635, + "c2": -33.38160829653536, + "c3": -6.573119709428802, + "c4": 32.558423024526995, + "c5": -32.423112461662306, + "c6": -0.8911465672839967, + "c7": -11.29149814048624 }, - "vertexSeeds": { - "c1": 8.019822341774274, - "c2": 7.936487158898618, - "c3": 7.831885231659631, - "c4": 8.164081483236767, - "c5": 8.385854726691901, - "c6": 8.272294625354732, - "c7": 8.648060893027846 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.981969486823864, + "c3": 10.818307905686549, + "c4": 8.654646324549233, + "c5": 6.490984743411932, + "c6": 4.327323162274629, + "c7": 2.1636615811373145 }, "rgb": [77, 76, 132] }, @@ -129633,23 +129633,23 @@ "year": 1744, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -12.19167614382139, - "c2": 19.303694595309892, - "c3": -16.442348813359104, - "c4": 12.724724632175274, - "c5": 23.4061630975541, - "c6": 7.430098732754246, - "c7": -18.960198251985137 + "points": { + "c1": -12.672528548152172, + "c2": -26.037179080752548, + "c3": 6.118456661035225, + "c4": 6.907374634521133, + "c5": -11.37513380976242, + "c6": -23.90087447744882, + "c7": -17.120545146668213 }, - "vertexSeeds": { - "c1": 3.609384932943799, - "c2": 3.730565714934894, - "c3": 4.079313266146865, - "c4": 3.9013307232942043, - "c5": 4.149117453000781, - "c6": 3.666816839235884, - "c7": 3.6017979186387143 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768377, + "c3": 5.039297272306982, + "c4": 4.031437817845586, + "c5": 3.023578363384186, + "c6": 2.015718908922791, + "c7": 1.0078594544613955 }, "rgb": [77, 76, 132] }, @@ -129660,23 +129660,23 @@ "year": 1744, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 5.954625924898998, - "c2": 31.47656214964431, - "c3": -21.313204309083776, - "c4": 12.01569615777646, - "c5": 38.85927387203711, - "c6": 8.342873268417321, - "c7": -28.47300621458502 + "points": { + "c1": 7.763947829757839, + "c2": -32.574777752330114, + "c3": -4.704764689404286, + "c4": -12.232310653353455, + "c5": 36.48248615065526, + "c6": -3.3608189207172643, + "c7": 30.72992637408784 }, - "vertexSeeds": { - "c1": 4.751928249490411, - "c2": 4.856493932829438, - "c3": 5.006142794167616, - "c4": 4.617592661522984, - "c5": 4.211058753798863, - "c6": 4.889430585786638, - "c7": 4.28682247324786 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -129687,23 +129687,23 @@ "year": 1745, "resistanceReported": true, "duration": 36892800, - "curveSeeds": { - "c1": 36.76120472570171, - "c2": -45.55380609512878, - "c3": 18.07969744235347, - "c4": -17.25685987130329, - "c5": -32.17567307701199, - "c6": -3.8759152182384966, - "c7": -44.598714796115935 + "points": { + "c1": -51.6022436241355, + "c2": -43.18926253987354, + "c3": -0.41660309169688503, + "c4": 25.56819188864315, + "c5": -31.994536727217206, + "c6": 19.34429777123821, + "c7": -37.47178082515251 }, - "vertexSeeds": { - "c1": 6.302089665175623, - "c2": 5.99572648919986, - "c3": 6.039465422758719, - "c4": 6.020082876476268, - "c5": 6.111965746637363, - "c6": 5.891659607245028, - "c7": 6.291955997496352 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514571, + "c3": 7.766990291262134, + "c4": 6.213592233009713, + "c5": 4.660194174757277, + "c6": 3.1067961165048565, + "c7": 1.5533980582524198 }, "rgb": [77, 76, 132] }, @@ -129714,23 +129714,23 @@ "year": 1744, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -19.117165290695247, - "c2": -1.2279147653111764, - "c3": -11.196782917190273, - "c4": 27.437295971053423, - "c5": 16.810783269189137, - "c6": 30.877248783136686, - "c7": 13.830634040890125 + "points": { + "c1": 37.32299683647704, + "c2": 28.526550206802547, + "c3": -0.15747080036223338, + "c4": 37.16589835916128, + "c5": 32.7827762560517, + "c6": -5.945638355359165, + "c7": 16.43009127427485 }, - "vertexSeeds": { - "c1": 2.414969095867973, - "c2": 2.3489954869616, - "c3": 2.3875077686033435, - "c4": 2.296491853518754, - "c5": 2.1956779519872285, - "c6": 2.2732377145368323, - "c7": 2.21850967859892 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886284, + "c3": 2.9819694868238553, + "c4": 2.3855755894590858, + "c5": 1.7891816920943124, + "c6": 1.1927877947295429, + "c7": 0.5963938973647694 }, "rgb": [86, 146, 138] }, @@ -129741,23 +129741,23 @@ "year": 1744, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 4.382096493976086, - "c2": -29.710944599071695, - "c3": 36.60040163606544, - "c4": 10.318426150259938, - "c5": 4.8097256153520505, - "c6": 26.08750136137418, - "c7": 28.42515166557942 + "points": { + "c1": 11.780818944132811, + "c2": 0.5960858405596099, + "c3": -30.546008360264373, + "c4": -31.049959372026656, + "c5": -28.118581570957396, + "c6": -22.115280911592503, + "c7": -32.30096797376641 }, - "vertexSeeds": { - "c1": 4.341750250066055, - "c2": 4.756436469570949, - "c3": 4.2654000241003125, - "c4": 4.216678085517157, - "c5": 4.824212277334659, - "c6": 4.739602840683218, - "c7": 4.402116789938074 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699024, + "c3": 6.148867313915858, + "c4": 4.919093851132686, + "c5": 3.6893203883495147, + "c6": 2.459546925566343, + "c7": 1.2297734627831716 }, "rgb": [77, 76, 132] }, @@ -129768,23 +129768,23 @@ "year": 1745, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 36.65430099057235, - "c2": -32.07208227209449, - "c3": -15.85712294467821, - "c4": 44.07241519130288, - "c5": 18.50182383741624, - "c6": -1.4543730144011846, - "c7": -26.729990987516345 + "points": { + "c1": -45.51613560492949, + "c2": 42.39813243075466, + "c3": -35.64473724217293, + "c4": -45.212072187534396, + "c5": 21.82369121370452, + "c6": -4.980541471558944, + "c7": -24.947733664180433 }, - "vertexSeeds": { - "c1": 2.7231632222574484, - "c2": 2.823542029000358, - "c3": 2.8209981190046225, - "c4": 2.6877100647052603, - "c5": 2.80520974586194, - "c6": 2.8285183769099445, - "c7": 2.7628552197269474 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [58, 15, 49] }, @@ -129795,23 +129795,23 @@ "year": 1744, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 37.65603981752881, - "c2": -17.02095175136499, - "c3": -35.66256590130664, - "c4": 8.99172279007422, - "c5": -19.072847833579335, - "c6": 20.296812140445226, - "c7": 7.166760722827426 + "points": { + "c1": -41.676758275952615, + "c2": -19.501423064525223, + "c3": -15.446034477102799, + "c4": 7.184941695004937, + "c5": 20.504143623169355, + "c6": -32.72395841475983, + "c7": 38.78290371836674 }, - "vertexSeeds": { - "c1": 6.716084844364296, - "c2": 6.700547131162088, - "c3": 6.770717348477291, - "c4": 7.038359386414424, - "c5": 6.859268586057732, - "c6": 6.681778577974489, - "c7": 6.686583498103959 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244097, + "c3": 8.760980120203424, + "c4": 7.0087840961627315, + "c5": 5.256588072122058, + "c6": 3.5043920480813657, + "c7": 1.7521960240406733 }, "rgb": [86, 146, 138] }, @@ -129822,23 +129822,23 @@ "year": 1745, "resistanceReported": false, "duration": 45100800, - "curveSeeds": { - "c1": -45.89020357256017, - "c2": 3.7794667015216064, - "c3": 49.437291180109476, - "c4": -51.37958892455138, - "c5": 9.458945922525167, - "c6": -33.64905797811167, - "c7": 15.976888857493641 + "points": { + "c1": 16.255486275331698, + "c2": -47.45085688636585, + "c3": 53.99479353004663, + "c4": -2.2863012089736046, + "c5": 12.117039036945265, + "c6": 24.353621923939777, + "c7": -38.75286491426408 }, - "vertexSeeds": { - "c1": 9.403214101684092, - "c2": 10.087328250384834, - "c3": 9.735394714086288, - "c4": 9.72971758083282, - "c5": 9.51295746816249, - "c6": 9.118141677680812, - "c7": 9.58500817427855 + "offsets": { + "c1": 17.216828478964402, + "c2": 14.75728155339806, + "c3": 12.29773462783172, + "c4": 9.838187702265378, + "c5": 7.378640776699037, + "c6": 4.919093851132697, + "c7": 2.459546925566355 }, "rgb": [238, 201, 159] }, @@ -129849,23 +129849,23 @@ "year": 1744, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 26.289744744652126, - "c2": 18.26926614604284, - "c3": -23.785969827601626, - "c4": 13.716881081104503, - "c5": -17.002982749764655, - "c6": 11.27234404106462, - "c7": -15.026253198923875 + "points": { + "c1": -10.331494000787934, + "c2": 26.05355952441245, + "c3": 24.272389551408295, + "c4": -10.819838684258276, + "c5": -20.35799227854234, + "c6": -28.631665597557085, + "c7": -32.89898867141245 }, - "vertexSeeds": { - "c1": 5.821410978458007, - "c2": 5.807356464181306, - "c3": 5.548673759226972, - "c4": 5.558187666055091, - "c5": 5.5818776557255365, - "c6": 6.2448838381838465, - "c7": 5.556007772711791 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072125, + "c3": 7.512713823393429, + "c4": 6.010171058714746, + "c5": 4.507628294036063, + "c6": 3.00508552935738, + "c7": 1.5025427646786826 }, "rgb": [58, 15, 49] }, @@ -129876,23 +129876,23 @@ "year": 1745, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": -27.444865447293527, - "c2": 20.88155106259179, - "c3": 25.098463683653968, - "c4": -23.371810087190255, - "c5": -24.84481509039337, - "c6": -3.0471750572281877, - "c7": 29.947291360647675 + "points": { + "c1": -56.220237540619216, + "c2": 35.02926561005223, + "c3": -32.389889390783765, + "c4": 15.619199658632745, + "c5": 42.77054281905773, + "c6": -39.22305436922021, + "c7": -42.86118926334168 }, - "vertexSeeds": { - "c1": 4.835377895195639, - "c2": 4.323787624891826, - "c3": 4.244384761235685, - "c4": 3.7618217124077673, - "c5": 3.9299236235412467, - "c6": 4.737038388304594, - "c7": 4.321359512337903 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038836, + "c3": 4.0453074433656955, + "c4": 3.2362459546925573, + "c5": 2.4271844660194173, + "c6": 1.6181229773462786, + "c7": 0.8090614886731403 }, "rgb": [86, 146, 138] }, @@ -129903,23 +129903,23 @@ "year": 1744, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 17.055590902336988, - "c2": -10.782077224856959, - "c3": -32.33681791514487, - "c4": 20.99119727046449, - "c5": -24.771132542111204, - "c6": 11.554802871736456, - "c7": -34.49744959790151 + "points": { + "c1": -1.4948427539634181, + "c2": -26.727745618707857, + "c3": 3.691033025701813, + "c4": 29.83190883483836, + "c5": -40.83485374183118, + "c6": -13.744538415091665, + "c7": -14.57139930684001 }, - "vertexSeeds": { - "c1": 3.825678317845641, - "c2": 3.6141766355053226, - "c3": 3.920138363181323, - "c4": 3.76640971876564, - "c5": 3.9595386625272746, - "c6": 3.771475264831297, - "c7": 3.6313085453759775 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245492, + "c3": 4.738788719371241, + "c4": 3.7910309754969997, + "c5": 2.84327323162275, + "c6": 1.8955154877484999, + "c7": 0.9477577438742499 }, "rgb": [222, 0, 59] }, @@ -129930,23 +129930,23 @@ "year": 1744, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -17.48786604534779, - "c2": -29.060840443207102, - "c3": -36.86196893444731, - "c4": 8.367599564530146, - "c5": -26.3862267200272, - "c6": 29.589341243769, - "c7": -3.0506666883577864 + "points": { + "c1": 21.738569295031652, + "c2": 2.860738084265911, + "c3": -2.022454387484963, + "c4": 13.83776092497098, + "c5": 28.558289877458932, + "c6": -19.974143684073375, + "c7": -11.363059267877034 }, - "vertexSeeds": { - "c1": 4.128045597465549, - "c2": 4.47815090252805, - "c3": 4.609039755484175, - "c4": 4.953182136872033, - "c5": 4.51938019530021, - "c6": 4.693491444533661, - "c7": 4.23031788841206 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457698, + "c3": 6.010171058714748, + "c4": 4.808136846971799, + "c5": 3.606102635228849, + "c6": 2.4040684234858993, + "c7": 1.2020342117429497 }, "rgb": [238, 201, 159] }, @@ -129957,23 +129957,23 @@ "year": 1744, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -0.03433902431292779, - "c2": -7.968275007752336, - "c3": 1.9622533725251579, - "c4": 7.7483284962176775, - "c5": 11.395865820971327, - "c6": 25.865682338896793, - "c7": -1.519266775945912 + "points": { + "c1": 24.709537556409327, + "c2": 6.038033726430445, + "c3": 24.255243862819857, + "c4": -2.296861677109966, + "c5": 5.58975972240631, + "c6": -26.682965360978937, + "c7": 22.516827414076207 }, - "vertexSeeds": { - "c1": 3.359245088210919, - "c2": 3.3808343531649205, - "c3": 3.3017148770728078, - "c4": 3.0681236562977197, - "c5": 3.034866680283354, - "c6": 3.3358908410471795, - "c7": 3.0521132635224504 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280164, + "c3": 4.184003698566808, + "c4": 3.3472029588534453, + "c5": 2.510402219140082, + "c6": 1.6736014794267193, + "c7": 0.8368007397133629 }, "rgb": [238, 201, 159] }, @@ -129984,23 +129984,23 @@ "year": 1745, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -35.7484732634465, - "c2": 46.020709374978274, - "c3": 9.414079109774143, - "c4": 0.8435277090882565, - "c5": -28.98268456213098, - "c6": -35.818176540826684, - "c7": -45.80010833810307 + "points": { + "c1": -10.845929747912287, + "c2": 36.18702605219985, + "c3": 20.289262382133593, + "c4": -47.279518285021446, + "c5": 47.293100123312406, + "c6": 47.22639778856118, + "c7": -33.347131527636506 }, - "vertexSeeds": { - "c1": 3.436481494675641, - "c2": 3.4774890675226833, - "c3": 3.445670946720719, - "c4": 3.421732486648648, - "c5": 3.440112793724721, - "c6": 3.4549303145578056, - "c7": 3.474229554578745 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239968, + "c3": 4.16088765603328, + "c4": 3.3287101248266455, + "c5": 2.4965325936199565, + "c6": 1.6643550624133228, + "c7": 0.8321775312066337 }, "rgb": [58, 15, 49] }, @@ -130011,23 +130011,23 @@ "year": 1744, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -37.779883895226035, - "c2": 42.9656282790642, - "c3": 9.630707161873694, - "c4": 38.069722587154565, - "c5": 14.78490153075004, - "c6": -27.67688152856821, - "c7": 4.8020401843835145 + "points": { + "c1": -5.789369773493732, + "c2": -22.283084422110058, + "c3": -17.377176339788907, + "c4": -34.14759896176092, + "c5": 4.20065682668173, + "c6": -23.056883679526234, + "c7": -24.398013843297427 }, - "vertexSeeds": { - "c1": 8.110084797206971, - "c2": 8.10925107052312, - "c3": 8.16362443693947, - "c4": 8.133315242928544, - "c5": 8.209007764299127, - "c6": 8.234379536150007, - "c7": 8.200108373551295 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094314, + "c3": 9.824318076745262, + "c4": 7.859454461396209, + "c5": 5.894590846047157, + "c6": 3.9297272306981044, + "c7": 1.9648636153490522 }, "rgb": [238, 201, 159] }, @@ -130038,23 +130038,23 @@ "year": 1744, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 19.863496383894855, - "c2": -13.993245283113513, - "c3": 22.607181018405967, - "c4": -6.255047895896112, - "c5": 29.321384854795355, - "c6": -25.361189545351436, - "c7": 33.666642431156646 + "points": { + "c1": -32.486795448772625, + "c2": -5.45988533206129, + "c3": 36.526532496562766, + "c4": -42.16705664027597, + "c5": 30.489756624746406, + "c6": -5.129042366630905, + "c7": -2.679185335113992 }, - "vertexSeeds": { - "c1": 4.895311781378291, - "c2": 5.149799380631018, - "c3": 5.026304722481945, - "c4": 4.68299355777497, - "c5": 4.850429845159737, - "c6": 5.1301067267179485, - "c7": 4.71138023695129 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -130065,23 +130065,23 @@ "year": 1745, "resistanceReported": false, "duration": 42508800, - "curveSeeds": { - "c1": -10.053577562542827, - "c2": 48.0827994838601, - "c3": -36.9770827822555, - "c4": -18.56290006124211, - "c5": -4.181821808935837, - "c6": 54.97083511737321, - "c7": 33.65041974927904 + "points": { + "c1": 36.83921637009131, + "c2": 39.70924025007649, + "c3": 38.84610606880601, + "c4": 39.08225334207336, + "c5": -42.004731760648475, + "c6": 39.84240781260701, + "c7": 4.004870920379403 }, - "vertexSeeds": { - "c1": 4.19127325236166, - "c2": 4.035741001610701, - "c3": 4.668878329134908, - "c4": 4.481709382900183, - "c5": 4.6507670630107985, - "c6": 4.600013962312495, - "c7": 4.538621135571772 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.7128987517337055, + "c3": 5.594082293111416, + "c4": 4.475265834489134, + "c5": 3.3564493758668528, + "c6": 2.237632917244564, + "c7": 1.118816458622282 }, "rgb": [222, 0, 59] }, @@ -130092,23 +130092,23 @@ "year": 1744, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 28.68763449848006, - "c2": -23.27153468162673, - "c3": -27.226106570758194, - "c4": 19.27025845126327, - "c5": -12.984221548391854, - "c6": 24.733432467784258, - "c7": -29.542437378008028 + "points": { + "c1": -17.683554775378287, + "c2": 22.308518005705285, + "c3": 13.264319061935328, + "c4": -12.143362032417205, + "c5": -31.30275321790806, + "c6": 4.540703665438034, + "c7": 25.061422113847623 }, - "vertexSeeds": { - "c1": 2.9166940159859984, - "c2": 3.3201013757354216, - "c3": 3.1070366120991117, - "c4": 3.0849834107447673, - "c5": 3.268610156498698, - "c6": 2.9242042904588454, - "c7": 2.939655152605252 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958393, + "c3": 3.9990753582986582, + "c4": 3.1992602866389293, + "c5": 2.3994452149791936, + "c6": 1.5996301433194646, + "c7": 0.7998150716597355 }, "rgb": [86, 146, 138] }, @@ -130119,23 +130119,23 @@ "year": 1744, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -11.686705300722021, - "c2": -27.29226907895933, - "c3": -35.82705335786953, - "c4": -24.485550860509733, - "c5": -17.144351850782453, - "c6": 19.98667411737175, - "c7": 1.1650716565931845 + "points": { + "c1": 34.6796494695389, + "c2": 14.624735659935219, + "c3": -16.64479560403231, + "c4": -6.766618866282236, + "c5": 26.69941584305606, + "c6": -8.617269571526247, + "c7": -21.103907747941342 }, - "vertexSeeds": { - "c1": 2.222202329915409, - "c2": 2.191823835784792, - "c3": 2.278726337384175, - "c4": 2.2705288861455895, - "c5": 2.1914895739868894, - "c6": 2.2462913525423103, - "c7": 2.13048158764219 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.678224687933424, + "c6": 1.1188164586222826, + "c7": 0.5594082293111413 }, "rgb": [58, 15, 49] }, @@ -130146,23 +130146,23 @@ "year": 1744, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -10.526087025429959, - "c2": -12.527756480933434, - "c3": 25.849739122331393, - "c4": -11.918119268673955, - "c5": -12.532909342772975, - "c6": -14.337180197245164, - "c7": 17.450909842817836 + "points": { + "c1": 9.241043299121223, + "c2": 30.649405399808373, + "c3": 23.324078925312378, + "c4": -30.233500246036552, + "c5": 31.692145998862088, + "c6": -2.2507454366908917, + "c7": 21.82905050411646 }, - "vertexSeeds": { - "c1": 4.65689968861501, - "c2": 5.099548865337948, - "c3": 4.904430601675815, - "c4": 5.000898813625465, - "c5": 4.818266389544734, - "c6": 5.626605954402098, - "c7": 5.546588010084243 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785024, + "c3": 6.773000462320847, + "c4": 5.4184003698566805, + "c5": 4.063800277392504, + "c6": 2.7092001849283376, + "c7": 1.3546000924641715 }, "rgb": [77, 76, 132] }, @@ -130173,23 +130173,23 @@ "year": 1744, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -16.056338427968647, - "c2": -22.875671102904416, - "c3": -16.746264924293424, - "c4": -29.820764479873013, - "c5": -1.225048717128459, - "c6": -3.1345928091657953, - "c7": 24.818362560115084 + "points": { + "c1": 27.226838541200145, + "c2": 9.065448145940245, + "c3": -8.088389013196096, + "c4": -29.178489740702013, + "c5": 14.877354846166895, + "c6": 16.730528290264985, + "c7": 20.404025693740323 }, - "vertexSeeds": { - "c1": 5.747842957572913, - "c2": 5.915728845231237, - "c3": 5.7961851848155215, - "c4": 5.877747975794922, - "c5": 5.723962214753097, - "c6": 5.802427648334728, - "c7": 5.943070660911679 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348127, + "c3": 7.096625057790106, + "c4": 5.677300046232085, + "c5": 4.257975034674064, + "c6": 2.8386500231160423, + "c7": 1.4193250115580212 }, "rgb": [222, 0, 59] }, @@ -130200,23 +130200,23 @@ "year": 1745, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 20.905009197471173, - "c2": -24.631786871438358, - "c3": -16.4481313806113, - "c4": -35.55719297388402, - "c5": -12.558726385355133, - "c6": 33.64489667370051, - "c7": -9.044040194095764 + "points": { + "c1": 41.61551267051872, + "c2": 28.287812918829893, + "c3": 41.99236682320487, + "c4": 41.59103858677528, + "c5": -30.86466370346303, + "c6": -18.247711848823393, + "c7": 1.9780864511235876 }, - "vertexSeeds": { - "c1": 5.237836739554689, - "c2": 5.36538283733308, - "c3": 5.510345910439181, - "c4": 5.538937878844453, - "c5": 5.218087328420373, - "c6": 5.398689342447856, - "c7": 5.240198449948753 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.726768377253824, + "c4": 5.381414701803054, + "c5": 4.036061026352285, + "c6": 2.6907073509015387, + "c7": 1.3453536754507693 }, "rgb": [77, 76, 132] }, @@ -130227,23 +130227,23 @@ "year": 1744, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -16.54646785514674, - "c2": 8.676361334220921, - "c3": 21.000726567590604, - "c4": 18.574651684703575, - "c5": -18.486998100475738, - "c6": 15.2462647195807, - "c7": -3.218217762981535 + "points": { + "c1": 20.282759578360178, + "c2": 24.02282671785821, + "c3": 34.4468242443193, + "c4": 15.953387174770178, + "c5": 8.77244546955474, + "c6": -2.975730009015649, + "c7": 24.169200911462326 }, - "vertexSeeds": { - "c1": 3.683358145256554, - "c2": 3.63623906659326, - "c3": 3.822695780793252, - "c4": 3.6007494917292786, - "c5": 3.6004927979734376, - "c6": 3.620841901632642, - "c7": 3.745075800261238 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963934, + "c3": 4.576976421636617, + "c4": 3.6615811373092897, + "c5": 2.7461858529819723, + "c6": 1.8307905686546448, + "c7": 0.9153952843273275 }, "rgb": [86, 146, 138] }, @@ -130254,23 +130254,23 @@ "year": 1744, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 32.18335129889317, - "c2": -24.802978488905545, - "c3": -33.61984977392703, - "c4": -14.393895573701162, - "c5": -17.543873600036868, - "c6": -7.624294667823719, - "c7": 29.60558038715847 + "points": { + "c1": -33.740586432887085, + "c2": -18.272949088469836, + "c3": -15.466906137107376, + "c4": 2.8370308838188976, + "c5": -32.457089703897246, + "c6": -2.333159138643147, + "c7": -14.604258984202644 }, - "vertexSeeds": { - "c1": 2.555677629397152, - "c2": 2.8337257952708286, - "c3": 2.7283016799284354, - "c4": 2.813814171300818, - "c5": 2.5669767666221204, - "c6": 2.657350754692007, - "c7": 2.786890685452152 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [238, 201, 159] }, @@ -130281,23 +130281,23 @@ "year": 1745, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 29.568518910653673, - "c2": 15.628699808746923, - "c3": -3.3348236614934237, - "c4": -31.372598409341297, - "c5": -27.97133412033592, - "c6": -42.93973553932889, - "c7": 10.386254085783307 + "points": { + "c1": -2.0665798401060727, + "c2": -45.999829870979596, + "c3": -30.56805781580071, + "c4": 38.346006101190646, + "c5": -28.941246655344298, + "c6": -23.245198572435633, + "c7": -46.79579069167458 }, - "vertexSeeds": { - "c1": 4.766505300026448, - "c2": 5.3713881442176366, - "c3": 4.813837112865847, - "c4": 5.375845585329202, - "c5": 5.217663169241702, - "c6": 4.780543865027004, - "c7": 5.122332050973055 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382795, + "c3": 6.541840036985668, + "c4": 5.233472029588541, + "c5": 3.9251040221914004, + "c6": 2.616736014794267, + "c7": 1.3083680073971335 }, "rgb": [77, 76, 132] }, @@ -130308,23 +130308,23 @@ "year": 1745, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 38.99818997191804, - "c2": -28.090831755659252, - "c3": 31.821751410693153, - "c4": -1.0039276738977634, - "c5": 17.022863398910836, - "c6": -33.790932843095426, - "c7": -12.021969126168571 + "points": { + "c1": 20.39022530538881, + "c2": 33.74538680917621, + "c3": -33.19701714438209, + "c4": 10.911936624827206, + "c5": 43.12103295291651, + "c6": 14.312794370980093, + "c7": -3.780272080104119 }, - "vertexSeeds": { - "c1": 1.9676631136239509, - "c2": 2.1052291003771697, - "c3": 2.131578550395986, - "c4": 2.041735156870492, - "c5": 1.980762360797372, - "c6": 2.0087563264612673, - "c7": 2.0199920627429058 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450753, + "c3": 2.6121128062875614, + "c4": 2.089690245030052, + "c5": 1.5672676837725377, + "c6": 1.0448451225150237, + "c7": 0.522422561257514 }, "rgb": [86, 146, 138] }, @@ -130335,23 +130335,23 @@ "year": 1745, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": -21.854079802845376, - "c2": -11.068150066417566, - "c3": -39.686724137826054, - "c4": 2.5665457541913312, - "c5": -30.191612131596912, - "c6": 33.62993238645108, - "c7": -15.16866786289864 + "points": { + "c1": -26.170197775622235, + "c2": 34.55802601331225, + "c3": 2.717720063949457, + "c4": 33.824324542397854, + "c5": 37.82393111257445, + "c6": 38.80906644400749, + "c7": -38.141578173624204 }, - "vertexSeeds": { - "c1": 5.227180439688665, - "c2": 5.135640569931771, - "c3": 5.2436331327768935, - "c4": 5.060416721869789, - "c5": 5.055945932900603, - "c6": 5.361993681561806, - "c7": 5.258164567270059 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872392, + "c6": 2.699953767914937, + "c7": 1.3499768839574684 }, "rgb": [86, 146, 138] }, @@ -130362,23 +130362,23 @@ "year": 1745, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -29.634812141277095, - "c2": -21.237388562037573, - "c3": -15.173177217172633, - "c4": 40.59656621253385, - "c5": 27.20631625963005, - "c6": -13.849461368721045, - "c7": -34.88409075611815 + "points": { + "c1": -14.47568662392817, + "c2": -22.418322727931947, + "c3": 36.40973617659889, + "c4": 18.19367171944193, + "c5": 16.10792671394922, + "c6": 16.443347513933155, + "c7": -17.090912328574465 }, - "vertexSeeds": { - "c1": 9.526688732623212, - "c2": 9.554944517142689, - "c3": 9.618020687216344, - "c4": 9.653592743023607, - "c5": 9.663813836344438, - "c6": 9.564482404136777, - "c7": 9.517010114686457 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110944, + "c3": 11.55802126675911, + "c4": 9.246417013407271, + "c5": 6.934812760055511, + "c6": 4.623208506703675, + "c7": 2.3116042533518373 }, "rgb": [58, 15, 49] }, @@ -130389,23 +130389,23 @@ "year": 1745, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -1.462364523509386, - "c2": 27.599448425237135, - "c3": 8.432278796848472, - "c4": -24.727839847362326, - "c5": 20.89817109301491, - "c6": 37.93472271517995, - "c7": -35.028061116026365 + "points": { + "c1": -20.942663215703725, + "c2": -7.081013251529548, + "c3": -11.591455903734257, + "c4": -42.86476123981412, + "c5": 5.957426103621437, + "c6": -23.039385178743423, + "c7": -0.6601329033281331 }, - "vertexSeeds": { - "c1": 6.439481191719062, - "c2": 6.581033525175655, - "c3": 6.876667123857878, - "c4": 6.594344510866582, - "c5": 6.436253558592578, - "c6": 6.8033620777476225, - "c7": 6.695029276876212 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359228, + "c3": 8.25242718446601, + "c4": 6.601941747572813, + "c5": 4.951456310679614, + "c6": 3.3009708737864165, + "c7": 1.6504854368931978 }, "rgb": [86, 146, 138] }, @@ -130416,23 +130416,23 @@ "year": 1744, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 6.670270492308397, - "c2": -20.211067773247752, - "c3": 28.116417514272364, - "c4": 23.02753475879102, - "c5": -6.35538425705618, - "c6": -31.415909961415323, - "c7": -14.347286961861467 + "points": { + "c1": -18.58466604583659, + "c2": 32.870202503181034, + "c3": -27.757055223709685, + "c4": 3.101048233986944, + "c5": 32.52480132273334, + "c6": 35.55131125380056, + "c7": 0.5424060648650126 }, - "vertexSeeds": { - "c1": 3.688556952021056, - "c2": 3.8115179762947173, - "c3": 3.6212430946244876, - "c4": 3.375865791155035, - "c5": 3.8310655013325396, - "c6": 3.8113614124541697, - "c7": 3.7932152032503392 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [238, 201, 159] }, @@ -130443,23 +130443,23 @@ "year": 1745, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -2.949404728113109, - "c2": 7.910044074150072, - "c3": 28.69740858568546, - "c4": -8.311392844064152, - "c5": 18.728478319484353, - "c6": -12.060636082904107, - "c7": -13.970488762850731 + "points": { + "c1": -26.845812846449856, + "c2": 2.381225101404631, + "c3": 22.24994432728478, + "c4": 26.516784840143956, + "c5": 4.742746071910112, + "c6": -30.83722812646178, + "c7": -22.45882900433059 }, - "vertexSeeds": { - "c1": 5.432658731299926, - "c2": 5.563365863179159, - "c3": 5.613626831485264, - "c4": 5.493276476331858, - "c5": 5.5325598038414565, - "c6": 5.73926380485574, - "c7": 5.633749465811812 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267689, + "c3": 7.050392972723059, + "c4": 5.640314378178451, + "c5": 4.2302357836338444, + "c6": 2.820157189089215, + "c7": 1.4100785945446075 }, "rgb": [58, 15, 49] }, @@ -130470,23 +130470,23 @@ "year": 1745, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": 40.353115186659075, - "c2": 22.59286918512452, - "c3": -20.394059776375748, - "c4": -19.674161333241145, - "c5": 43.68012224528798, - "c6": -53.6226364023464, - "c7": 52.23168988221473 + "points": { + "c1": 43.535776014344485, + "c2": -9.879036756830608, + "c3": -31.65815179654951, + "c4": 8.539382283589298, + "c5": 17.505176606702896, + "c6": 55.205175300243816, + "c7": -37.26104982492709 }, - "vertexSeeds": { - "c1": 6.866675958023373, - "c2": 7.036296731360344, - "c3": 7.284150681685671, - "c4": 6.9056529434721226, - "c5": 6.839635561885406, - "c6": 6.76605680903322, - "c7": 6.716171742847497 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284319, + "c3": 8.784096162736942, + "c4": 7.027276930189546, + "c5": 5.270457697642169, + "c6": 3.513638465094773, + "c7": 1.756819232547377 }, "rgb": [58, 15, 49] }, @@ -130497,23 +130497,23 @@ "year": 1746, "resistanceReported": false, "duration": 52704000, - "curveSeeds": { - "c1": -0.9924756455802566, - "c2": -22.012132466608797, - "c3": -23.160863224371404, - "c4": -40.135748431235776, - "c5": -2.513474857506438, - "c6": -4.833065819631912, - "c7": -20.17352841613433 + "points": { + "c1": -43.670907679464456, + "c2": -32.59770464466062, + "c3": -41.92006237181184, + "c4": -61.533596499053324, + "c5": -21.904551555025392, + "c6": -58.26568560280221, + "c7": 11.726451400805075 }, - "vertexSeeds": { - "c1": 9.656591673342856, - "c2": 9.421628127799941, - "c3": 8.717691410973124, - "c4": 9.735702787141069, - "c5": 9.824835973680553, - "c6": 9.710068862057343, - "c7": 9.829344962502073 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593615, + "c3": 11.835413777161346, + "c4": 9.468331021729087, + "c5": 7.101248266296816, + "c6": 4.7341655108645435, + "c7": 2.3670827554322718 }, "rgb": [58, 15, 49] }, @@ -130524,23 +130524,23 @@ "year": 1745, "resistanceReported": false, "duration": 43632000, - "curveSeeds": { - "c1": 12.624174604223036, - "c2": 23.615112690815273, - "c3": 45.6011902031176, - "c4": -54.597638302046434, - "c5": -21.84543690679223, - "c6": -7.798913105452463, - "c7": 43.391808487435206 + "points": { + "c1": 8.052778046869172, + "c2": 36.96970773842772, + "c3": 44.456726895044646, + "c4": -53.0111235602275, + "c5": -12.307364391010573, + "c6": 39.93686213681439, + "c7": 31.149617910873495 }, - "vertexSeeds": { - "c1": 10.405472349846196, - "c2": 10.596219221327924, - "c3": 10.536778268804841, - "c4": 10.536256042697985, - "c5": 10.40016049066012, - "c6": 9.769483410399463, - "c7": 10.177095576808302 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725385, + "c3": 13.060564031437828, + "c4": 10.448451225150267, + "c5": 7.836338418862679, + "c6": 5.224225612575133, + "c7": 2.6121128062875596 }, "rgb": [238, 201, 159] }, @@ -130551,23 +130551,23 @@ "year": 1745, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 11.848163712542451, - "c2": 25.987044905269677, - "c3": -17.41919412783555, - "c4": 23.09714685044387, - "c5": -16.956287478319542, - "c6": 13.218380012766104, - "c7": -33.397082975564444 + "points": { + "c1": 25.477555793561493, + "c2": 6.366595681941469, + "c3": -34.499177102527554, + "c4": -20.38718144462769, + "c5": -4.844160220505373, + "c6": 0.866370604881304, + "c7": -32.38613385559076 }, - "vertexSeeds": { - "c1": 10.746443784114055, - "c2": 9.798654153421003, - "c3": 10.831701312968985, - "c4": 9.584123754866335, - "c5": 10.85857780124317, - "c6": 10.4120235961172, - "c7": 10.27321598640918 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725376, + "c3": 13.06056403143783, + "c4": 10.448451225150258, + "c5": 7.836338418862688, + "c6": 5.224225612575129, + "c7": 2.6121128062875707 }, "rgb": [238, 201, 159] }, @@ -130578,23 +130578,23 @@ "year": 1745, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 18.20732024385962, - "c2": -44.7791630490948, - "c3": 40.92729766692285, - "c4": -28.084534042121817, - "c5": -3.0588538111466974, - "c6": 21.843602827514708, - "c7": -8.216725323617034 + "points": { + "c1": -11.899295392042013, + "c2": -30.720432397496143, + "c3": 29.29192865170686, + "c4": 6.044638925744664, + "c5": 11.673902900544341, + "c6": -11.564730712235324, + "c7": -16.475502903004628 }, - "vertexSeeds": { - "c1": 11.605921496867472, - "c2": 11.591594206589333, - "c3": 11.607863839387555, - "c4": 11.413108513332906, - "c5": 11.54763197716825, - "c6": 11.705611483554879, - "c7": 11.428262433289344 + "offsets": { + "c1": 19.611650485436893, + "c2": 16.80998613037448, + "c3": 14.008321775312067, + "c4": 11.206657420249654, + "c5": 8.40499306518724, + "c6": 5.603328710124827, + "c7": 2.8016643550624134 }, "rgb": [58, 15, 49] }, @@ -130605,23 +130605,23 @@ "year": 1745, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -0.803694198898647, - "c2": 34.5050458703692, - "c3": 19.9509283727608, - "c4": -23.73582652368851, - "c5": -2.187034099671088, - "c6": -32.419443174343506, - "c7": -3.6891751742070937 + "points": { + "c1": 9.020529373343166, + "c2": 24.368425162112175, + "c3": 20.782533279211677, + "c4": -2.1975405842281788, + "c5": 11.361307413136402, + "c6": -20.187537449131256, + "c7": -33.550272650017035 }, - "vertexSeeds": { - "c1": 4.822072450170265, - "c2": 4.750967453753846, - "c3": 4.578301866856295, - "c4": 4.8491658155727695, - "c5": 4.359723200711538, - "c6": 4.722195219059252, - "c7": 4.727223216824937 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900137, + "c3": 6.264447526583446, + "c4": 5.01155802126676, + "c5": 3.7586685159500686, + "c6": 2.5057790106333773, + "c7": 1.252889505316691 }, "rgb": [238, 201, 159] }, @@ -130632,23 +130632,23 @@ "year": 1745, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -34.2476772204728, - "c2": -35.351470061170396, - "c3": -31.499108905165812, - "c4": 3.8039839136598133, - "c5": 34.51081040782758, - "c6": 29.44984086936026, - "c7": 31.53274202797219 + "points": { + "c1": 14.725573533113739, + "c2": -36.18216094536934, + "c3": 29.429973757626527, + "c4": -4.988910909536926, + "c5": 8.076346372385387, + "c6": -27.77148347031369, + "c7": 12.296015591175447 }, - "vertexSeeds": { - "c1": 10.5421373675255, - "c2": 9.059498461614314, - "c3": 9.760848316132554, - "c4": 9.158948957032841, - "c5": 8.970087301554834, - "c6": 10.137754236635239, - "c7": 10.949735886749465 + "offsets": { + "c1": 19.223300970873787, + "c2": 16.477115117891813, + "c3": 13.730929264909841, + "c4": 10.98474341192788, + "c5": 8.238557558945907, + "c6": 5.492371705963935, + "c7": 2.7461858529819674 }, "rgb": [77, 76, 132] }, @@ -130659,23 +130659,23 @@ "year": 1745, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 23.840581893794692, - "c2": 14.17855498611722, - "c3": -17.542330365423858, - "c4": 22.342784249199006, - "c5": -10.805181688243664, - "c6": 12.855807666648985, - "c7": 28.887831005875967 + "points": { + "c1": -17.543045408370055, + "c2": -24.286503116850056, + "c3": 31.480203834772155, + "c4": -0.8670158941341235, + "c5": 6.370571920007784, + "c6": -17.58123395615106, + "c7": -26.83290374915032 }, - "vertexSeeds": { - "c1": 8.710286260222405, - "c2": 8.472529684257603, - "c3": 8.421825129439336, - "c4": 8.611128636710854, - "c5": 8.537021630345627, - "c6": 8.34415052112957, - "c7": 8.604560845186555 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099865, + "c3": 10.402219140083226, + "c4": 8.321775312066558, + "c5": 6.241331484049918, + "c6": 4.160887656033279, + "c7": 2.0804438280166395 }, "rgb": [222, 0, 59] }, @@ -130686,23 +130686,23 @@ "year": 1745, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 27.600913281693735, - "c2": 8.467982441396614, - "c3": -19.04903794127118, - "c4": 18.06519221156853, - "c5": -11.241218333825927, - "c6": -12.61278648255302, - "c7": 13.16700232404191 + "points": { + "c1": -10.474682096811861, + "c2": 17.87630491222042, + "c3": 23.084746944329623, + "c4": 4.757946097073933, + "c5": 21.25902771589395, + "c6": -22.414194955139795, + "c7": 25.3448328886913 }, - "vertexSeeds": { - "c1": 5.84095704927156, - "c2": 6.244023246383017, - "c3": 5.798870341834769, - "c4": 6.119327827457695, - "c5": 5.97260318636199, - "c6": 6.340888587813907, - "c7": 6.291428534260865 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.20943134535368, + "c3": 7.674526121128061, + "c4": 6.1396208969024535, + "c5": 4.604715672676834, + "c6": 3.0698104484512267, + "c7": 1.5349052242256198 }, "rgb": [58, 15, 49] }, @@ -130713,23 +130713,23 @@ "year": 1745, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -12.391645105953554, - "c2": 0.3343556671132575, - "c3": -22.940503868384084, - "c4": 11.60503748107461, - "c5": -34.9462279196424, - "c6": -8.108016563045755, - "c7": 37.33761160445323 + "points": { + "c1": 36.2190800074258, + "c2": 3.547724705378343, + "c3": 0.5138568166408746, + "c4": -22.035056123080476, + "c5": 2.891131012211382, + "c6": 9.938970070262059, + "c7": 17.731632006241846 }, - "vertexSeeds": { - "c1": 7.045594609344259, - "c2": 6.866807191937646, - "c3": 6.483285854202718, - "c4": 6.474798867444498, - "c5": 6.863918267527538, - "c6": 6.25452881252316, - "c7": 7.0149689681138145 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801672, + "c3": 8.506703652334723, + "c4": 6.805362921867774, + "c5": 5.104022191400836, + "c6": 3.4026814609338993, + "c7": 1.7013407304669497 }, "rgb": [77, 76, 132] }, @@ -130740,23 +130740,23 @@ "year": 1746, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": -24.867796750861153, - "c2": -5.081848446706957, - "c3": -23.68566545724829, - "c4": 0.5968404101756022, - "c5": -34.50075218227096, - "c6": -50.36921594626826, - "c7": 4.3002969228551535 + "points": { + "c1": -29.39322865443348, + "c2": 62.17015289660462, + "c3": -57.54355567513417, + "c4": -50.22557770120076, + "c5": -53.00594364552276, + "c6": -13.126156933684676, + "c7": 36.35004274742795 }, - "vertexSeeds": { - "c1": 7.035250343530884, - "c2": 6.7905255194967, - "c3": 6.693153518417926, - "c4": 6.492783954685333, - "c5": 6.40719147991447, - "c6": 6.897328960580835, - "c7": 6.719966856460166 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640776, + "c3": 8.414239482200648, + "c4": 6.731391585760517, + "c5": 5.048543689320388, + "c6": 3.3656957928802584, + "c7": 1.6828478964401292 }, "rgb": [86, 146, 138] }, @@ -130767,23 +130767,23 @@ "year": 1745, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -46.6526075953337, - "c2": 30.519199489490546, - "c3": -2.5068556138806173, - "c4": 35.96077237831106, - "c5": -24.278077229947446, - "c6": 39.32285910961582, - "c7": 2.2334144924527877 + "points": { + "c1": 42.77237972342098, + "c2": -55.65150456168211, + "c3": -44.774408030163826, + "c4": 31.976224652007346, + "c5": -24.061572441018356, + "c6": 34.587661690469545, + "c7": 24.284511647457137 }, - "vertexSeeds": { - "c1": 8.737870963075945, - "c2": 8.616937669758496, - "c3": 8.390854675995675, - "c4": 8.578999677569497, - "c5": 8.451221990573705, - "c6": 9.270869964483529, - "c7": 9.049826126355034 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467406, + "c3": 11.188164586222838, + "c4": 8.95053166897827, + "c5": 6.712898751733703, + "c6": 4.475265834489135, + "c7": 2.2376329172445675 }, "rgb": [222, 0, 59] }, @@ -130794,23 +130794,23 @@ "year": 1745, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -40.56339082243643, - "c2": -1.284714289657721, - "c3": 34.19125111766664, - "c4": 25.049283230893636, - "c5": -3.0677484955026557, - "c6": -29.85844493150449, - "c7": -37.06221009932393 + "points": { + "c1": -4.408010879079988, + "c2": 7.26342792011053, + "c3": -8.42940757579754, + "c4": -4.579455502037291, + "c5": 8.304394459446094, + "c6": 8.349983364106613, + "c7": 3.936249051803678 }, - "vertexSeeds": { - "c1": 3.026845965955364, - "c2": 2.9134498600427716, - "c3": 3.1037924564054538, - "c4": 2.897834692325506, - "c5": 3.103466490417961, - "c6": 3.193489503828181, - "c7": 3.2148978163949122 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717063, + "c3": 3.8603791030975487, + "c4": 3.088303282478042, + "c5": 2.3162274618585275, + "c6": 1.544151641239021, + "c7": 0.7720758206195145 }, "rgb": [222, 0, 59] }, @@ -130821,23 +130821,23 @@ "year": 1746, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": 12.414014007471899, - "c2": -10.377124676633898, - "c3": -30.593755828747366, - "c4": 31.96462025957299, - "c5": 25.566990611907194, - "c6": 22.61194385748592, - "c7": -52.56346427520167 + "points": { + "c1": 36.23517703002191, + "c2": -21.15100851226901, + "c3": 36.47978940290644, + "c4": 21.971683520434333, + "c5": 4.885144050422099, + "c6": -47.34391060245464, + "c7": 17.4918484467753 }, - "vertexSeeds": { - "c1": 4.997968283847125, - "c2": 5.090728659408245, - "c3": 4.842728266349412, - "c4": 4.827696297776831, - "c5": 5.0173488401701345, - "c6": 5.402057527238857, - "c7": 4.903020568425247 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342585, + "c3": 6.518723994452148, + "c4": 5.214979195561724, + "c5": 3.911234396671286, + "c6": 2.607489597780862, + "c7": 1.303744798890424 }, "rgb": [86, 146, 138] }, @@ -130848,23 +130848,23 @@ "year": 1745, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 29.41656459470584, - "c2": 35.920184068469204, - "c3": 33.96515786689512, - "c4": 4.748022467339766, - "c5": 7.84995349250358, - "c6": 18.969884529872353, - "c7": -3.2353908779809757 + "points": { + "c1": 33.90062970891778, + "c2": -11.264578276276318, + "c3": 31.673696039837814, + "c4": 12.50223842310156, + "c5": -8.776425141942092, + "c6": 30.967042135456133, + "c7": -16.925812505231 }, - "vertexSeeds": { - "c1": 7.6574465737914394, - "c2": 7.587064470043315, - "c3": 7.845881087751338, - "c4": 8.005286390369303, - "c5": 7.626799849880459, - "c6": 7.708198092799985, - "c7": 7.462211080768767 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651882, + "c3": 9.570041608876558, + "c4": 7.656033287101255, + "c5": 5.74202496532593, + "c6": 3.8280166435506273, + "c7": 1.914008321775325 }, "rgb": [222, 0, 59] }, @@ -130875,23 +130875,23 @@ "year": 1746, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": -46.10331245109662, - "c2": 28.677095056669536, - "c3": 22.16049852382988, - "c4": -34.98294550560297, - "c5": 39.37735113769509, - "c6": 52.79774327286555, - "c7": 49.410823469185665 + "points": { + "c1": 53.50810257851585, + "c2": 2.2006669512211587, + "c3": -33.83049106274596, + "c4": 4.20577887448556, + "c5": 24.52236508706502, + "c6": -37.21645246674642, + "c7": -46.403871941190374 }, - "vertexSeeds": { - "c1": 9.546287868544209, - "c2": 10.598703582437397, - "c3": 9.968128210293878, - "c4": 10.442060707316262, - "c5": 9.86200382819433, - "c6": 9.852552920051151, - "c7": 9.505872989391813 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.45076282940361, + "c3": 12.875635691169682, + "c4": 10.300508552935726, + "c5": 7.725381414701798, + "c6": 5.15025427646787, + "c7": 2.5751271382339422 }, "rgb": [77, 76, 132] }, @@ -130902,23 +130902,23 @@ "year": 1745, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -22.943389793982462, - "c2": -32.222536814996, - "c3": 11.724152540996876, - "c4": -27.056293633864037, - "c5": 5.398435698305057, - "c6": 35.961047919905695, - "c7": -18.932655882413886 + "points": { + "c1": -6.941377719321039, + "c2": -3.2567916346189136, + "c3": 18.87350974359144, + "c4": -21.58158145526528, + "c5": -35.20005543115501, + "c6": -38.78981228744474, + "c7": -14.827577917161843 }, - "vertexSeeds": { - "c1": 2.984483527306552, - "c2": 2.6053754769818425, - "c3": 2.6950524280382084, - "c4": 3.022729404101438, - "c5": 2.9822749633074426, - "c6": 2.9389481369195924, - "c7": 2.956037177657796 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395284, + "c3": 3.6754507628294038, + "c4": 2.940360610263523, + "c5": 2.205270457697642, + "c6": 1.4701803051317615, + "c7": 0.7350901525658807 }, "rgb": [222, 0, 59] }, @@ -130929,23 +130929,23 @@ "year": 1745, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 9.128955318747849, - "c2": 23.643243964846008, - "c3": 5.717265743098302, - "c4": 23.499528100084838, - "c5": 2.4901715430665092, - "c6": 0.6366200415358989, - "c7": 28.61024732184935 + "points": { + "c1": 33.65082330868744, + "c2": -11.713980257390514, + "c3": -23.327669763154386, + "c4": -29.63302947971085, + "c5": 33.31320330922633, + "c6": -33.95078045113069, + "c7": 14.289990125224996 }, - "vertexSeeds": { - "c1": 2.7656670837643325, - "c2": 3.2829944156397235, - "c3": 2.786819204321406, - "c4": 2.7631591539604363, - "c5": 2.8419403447341156, - "c6": 2.9671952924916747, - "c7": 2.870935396162186 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877949, + "c3": 3.952843273231624, + "c4": 3.162274618585301, + "c5": 2.3717059639389766, + "c6": 1.5811373092926477, + "c7": 0.7905686546463239 }, "rgb": [222, 0, 59] }, @@ -130956,23 +130956,23 @@ "year": 1746, "resistanceReported": false, "duration": 48124800, - "curveSeeds": { - "c1": 13.44764753324067, - "c2": 9.190477154201474, - "c3": -45.291365402481034, - "c4": 37.42063481216847, - "c5": -20.19881397280586, - "c6": 55.490296325434244, - "c7": -45.758381467942854 + "points": { + "c1": 37.04858171758039, + "c2": 33.84657692801299, + "c3": -42.171133650753525, + "c4": -58.79186758928622, + "c5": -24.681405703056036, + "c6": 50.96812046556916, + "c7": -19.84658400336663 }, - "vertexSeeds": { - "c1": 6.056168572660517, - "c2": 6.032615839927562, - "c3": 6.549381004091805, - "c4": 6.627857388520264, - "c5": 5.843727575213275, - "c6": 6.2075786194975935, - "c7": 5.859606964982777 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [238, 201, 159] }, @@ -130983,23 +130983,23 @@ "year": 1746, "resistanceReported": false, "duration": 52272000, - "curveSeeds": { - "c1": -3.499502739822468, - "c2": -6.421835866698963, - "c3": 45.7555367007113, - "c4": 65.49211585238942, - "c5": -58.21927494415394, - "c6": 52.36530022918022, - "c7": -18.49039031447743 + "points": { + "c1": -49.342189176278865, + "c2": -69.21135541731454, + "c3": -61.943980811014356, + "c4": -30.08027002300041, + "c5": -44.30266149999487, + "c6": -19.497810770541797, + "c7": 66.14781663837965 }, - "vertexSeeds": { - "c1": 3.3135101815490198, - "c2": 3.009785860352444, - "c3": 2.9750342547598856, - "c4": 3.1627022425535403, - "c5": 3.335620953659963, - "c6": 3.3385441454618565, - "c7": 3.042403803304305 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958388, + "c3": 3.99907535829866, + "c4": 3.1992602866389253, + "c5": 2.3994452149791976, + "c6": 1.5996301433194626, + "c7": 0.7998150716597348 }, "rgb": [222, 0, 59] }, @@ -131010,23 +131010,23 @@ "year": 1746, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 43.78739445819139, - "c2": -27.84298751097811, - "c3": 25.624166195519926, - "c4": 18.237629477837437, - "c5": 49.9964123007229, - "c6": 0.5692143154369447, - "c7": -45.2086776379996 + "points": { + "c1": -11.973179114179409, + "c2": -8.809892020313434, + "c3": 30.919352100768215, + "c4": 8.514912071250698, + "c5": -3.854680268357889, + "c6": 45.5615745226392, + "c7": 44.6645506098314 }, - "vertexSeeds": { - "c1": 9.195905383457827, - "c2": 9.126967410726264, - "c3": 8.958070572317773, - "c4": 8.903538772034068, - "c5": 8.881949564246689, - "c6": 9.267228584313251, - "c7": 9.089835503611173 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467415, + "c3": 11.188164586222854, + "c4": 8.950531668978266, + "c5": 6.712898751733707, + "c6": 4.475265834489147, + "c7": 2.2376329172445875 }, "rgb": [77, 76, 132] }, @@ -131037,23 +131037,23 @@ "year": 1746, "resistanceReported": false, "duration": 44323200, - "curveSeeds": { - "c1": -26.568760794864854, - "c2": -52.059838345249474, - "c3": -13.729591941447225, - "c4": 45.92283804734407, - "c5": 41.388949301763176, - "c6": 53.8426883578355, - "c7": 57.42089398851704 + "points": { + "c1": 45.27149399867963, + "c2": -13.893928617251511, + "c3": 49.352787401403006, + "c4": -23.797414063183908, + "c5": 41.87353986559633, + "c6": -9.678985913893705, + "c7": 17.55818233604272 }, - "vertexSeeds": { - "c1": 8.80051496939621, - "c2": 8.737540571358757, - "c3": 9.134151015842216, - "c4": 9.274456444332314, - "c5": 8.924589299504236, - "c6": 8.761292774262218, - "c7": 8.867202905842325 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306522, + "c3": 11.095700416088773, + "c4": 8.876560332871025, + "c5": 6.657420249653247, + "c6": 4.438280166435498, + "c7": 2.219140083217749 }, "rgb": [58, 15, 49] }, @@ -131064,23 +131064,23 @@ "year": 1746, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": -12.833302936064676, - "c2": -24.289447307877797, - "c3": -13.725832280927563, - "c4": -33.283661108454055, - "c5": 9.586913176149018, - "c6": -18.404208950557873, - "c7": 4.070243932438288 + "points": { + "c1": 22.21912903572808, + "c2": 47.32953535364795, + "c3": -42.44599093327814, + "c4": -17.901039184956964, + "c5": -34.66139897187765, + "c6": 40.48093795739958, + "c7": -28.91373749753854 }, - "vertexSeeds": { - "c1": 5.507477584797375, - "c2": 5.894572255984915, - "c3": 5.536485455058847, - "c4": 5.894786095422049, - "c5": 5.609433997405774, - "c6": 5.804317077592115, - "c7": 5.676164147135186 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267689, + "c3": 7.050392972723059, + "c4": 5.640314378178451, + "c5": 4.2302357836338444, + "c6": 2.820157189089215, + "c7": 1.4100785945446075 }, "rgb": [58, 15, 49] }, @@ -131091,23 +131091,23 @@ "year": 1746, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": 36.275901637094435, - "c2": -20.12185753896621, - "c3": -17.548919686214695, - "c4": -42.779783182970206, - "c5": 47.014271532048625, - "c6": -29.17503168427473, - "c7": 42.964947679361416 + "points": { + "c1": -16.87372307334403, + "c2": -45.414616157889604, + "c3": -2.409276666002164, + "c4": 30.159829706972772, + "c5": 22.516980084609912, + "c6": 34.87397237036308, + "c7": 44.687076064636145 }, - "vertexSeeds": { - "c1": 6.931129364870585, - "c2": 6.7972425816224895, - "c3": 6.854980554673961, - "c4": 6.803710181199448, - "c5": 6.732832413349875, - "c6": 6.873654543693876, - "c7": 6.68286571204622 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042991, + "c3": 8.645399907535817, + "c4": 6.916319926028668, + "c5": 5.187239944521496, + "c6": 3.4581599630143227, + "c7": 1.7290799815071722 }, "rgb": [77, 76, 132] }, @@ -131118,23 +131118,23 @@ "year": 1747, "resistanceReported": false, "duration": 64108800, - "curveSeeds": { - "c1": -72.16944089553287, - "c2": -67.64215993247943, - "c3": 74.9942917842432, - "c4": 20.206821936240786, - "c5": -63.001666135326786, - "c6": -6.700141819489886, - "c7": -4.438907574364251 + "points": { + "c1": -43.24568592593669, + "c2": 49.48073103383253, + "c3": -37.84106630433965, + "c4": -78.39490360217701, + "c5": 79.91006028238557, + "c6": -32.092380753150515, + "c7": 42.204864093563714 }, - "vertexSeeds": { - "c1": 7.211964345653493, - "c2": 6.796095937385447, - "c3": 7.051103490332948, - "c4": 7.071384488552855, - "c5": 7.057276060329359, - "c6": 6.978440738024086, - "c7": 7.104182300383716 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324545, + "c3": 8.807212205270444, + "c4": 7.04576976421637, + "c5": 5.284327323162272, + "c6": 3.5228848821081735, + "c7": 1.761442441054098 }, "rgb": [77, 76, 132] }, @@ -131145,23 +131145,23 @@ "year": 1746, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 43.46088329213836, - "c2": -8.308678585856178, - "c3": -22.71468378688796, - "c4": 6.67349185510556, - "c5": -41.9560392084798, - "c6": -0.781941404704547, - "c7": 44.29102434419909 + "points": { + "c1": 5.867894118529129, + "c2": 38.970458024379056, + "c3": 35.525247962421204, + "c4": -36.652754613566955, + "c5": -34.26016289912471, + "c6": -24.40575708103941, + "c7": -34.845196150272194 }, - "vertexSeeds": { - "c1": 5.6311875172698205, - "c2": 5.866680327064306, - "c3": 5.768206110466149, - "c4": 5.5471461812989835, - "c5": 5.669627774922842, - "c6": 5.6315324325877665, - "c7": 5.589645161267769 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [222, 0, 59] }, @@ -131172,23 +131172,23 @@ "year": 1745, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -34.012468357064776, - "c2": -25.504683764485954, - "c3": 8.60191344631015, - "c4": 4.706544719123549, - "c5": -5.581908519274712, - "c6": 38.667778897920826, - "c7": -8.716770389740446 + "points": { + "c1": -36.92688725711246, + "c2": -5.631929193701403, + "c3": 25.285097807695664, + "c4": 40.243956513533405, + "c5": 34.85413182166454, + "c6": -18.317161513024367, + "c7": 0.26966929083984326 }, - "vertexSeeds": { - "c1": 6.096614334795798, - "c2": 5.852034583505174, - "c3": 6.0525880910595395, - "c4": 5.848001976794301, - "c5": 5.6218034169301445, - "c6": 5.972568384740272, - "c7": 5.758278692212921 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710123, + "c3": 7.3046694405917645, + "c4": 5.84373555247343, + "c5": 4.382801664355072, + "c6": 2.921867776236715, + "c7": 1.4609338881183576 }, "rgb": [77, 76, 132] }, @@ -131199,23 +131199,23 @@ "year": 1746, "resistanceReported": false, "duration": 45360000, - "curveSeeds": { - "c1": 39.43233863216458, - "c2": 41.03143894997361, - "c3": 32.065716186515466, - "c4": 48.05422059181526, - "c5": -41.13933064839945, - "c6": 55.778637468562415, - "c7": 17.628289438620378 + "points": { + "c1": 36.00099064927745, + "c2": 36.49443111276539, + "c3": 16.64823461517195, + "c4": -6.703928533072428, + "c5": -53.16447922429222, + "c6": 13.595181678377195, + "c7": 50.07095534755312 }, - "vertexSeeds": { - "c1": 9.334986863657367, - "c2": 9.323479438780652, - "c3": 9.720607247341917, - "c4": 9.702021602054781, - "c5": 9.423812375446103, - "c6": 9.197111448581682, - "c7": 9.180363050393103 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915405, + "c3": 12.020342117429498, + "c4": 9.616273693943594, + "c5": 7.212205270457702, + "c6": 4.80813684697181, + "c7": 2.404068423485905 }, "rgb": [222, 0, 59] }, @@ -131226,23 +131226,23 @@ "year": 1747, "resistanceReported": false, "duration": 74390400, - "curveSeeds": { - "c1": -47.70889204091119, - "c2": -34.825049640470134, - "c3": -64.12910483568389, - "c4": -80.52064117309831, - "c5": -38.98641338416922, - "c6": 24.095953094684845, - "c7": -78.08237254019099 + "points": { + "c1": -61.69571974973111, + "c2": -71.84961025534878, + "c3": 21.46110129099975, + "c4": 24.45088080340463, + "c5": -68.40057196174638, + "c6": -34.88417691797912, + "c7": 32.27085478091308 }, - "vertexSeeds": { - "c1": 1.9523388624937223, - "c2": 2.161964428877704, - "c3": 2.308308107591568, - "c4": 2.2207419600313325, - "c5": 2.007319626298316, - "c6": 2.0108994147844284, - "c7": 2.02835705130093 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266295, + "c3": 2.773925104022192, + "c4": 2.219140083217754, + "c5": 1.6643550624133163, + "c6": 1.1095700416088783, + "c7": 0.5547850208044406 }, "rgb": [58, 15, 49] }, @@ -131253,23 +131253,23 @@ "year": 1746, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": -11.767673503140472, - "c2": -9.920677396387369, - "c3": -30.400720954584568, - "c4": -52.89895500360451, - "c5": 14.248423210276258, - "c6": -44.35785859200768, - "c7": -20.397734573243035 + "points": { + "c1": 7.601368861578166, + "c2": -49.695504826324566, + "c3": -24.4809257919907, + "c4": 46.1892182776856, + "c5": -45.13437716147449, + "c6": 1.2401803797015418, + "c7": 51.56916083911132 }, - "vertexSeeds": { - "c1": 7.642272040845509, - "c2": 7.467800078703492, - "c3": 7.289884670621736, - "c4": 7.526347406242955, - "c5": 8.028300182236924, - "c6": 7.372770690768674, - "c7": 7.309809426872301 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174754, + "c3": 9.87055016181229, + "c4": 7.89644012944984, + "c5": 5.922330097087377, + "c6": 3.9482200647249135, + "c7": 1.9741100323624499 }, "rgb": [77, 76, 132] }, @@ -131280,23 +131280,23 @@ "year": 1745, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 21.849180896707324, - "c2": 25.687297635628454, - "c3": 2.554708651630925, - "c4": -20.972005975288944, - "c5": -31.575968644614797, - "c6": -7.802294186367305, - "c7": 34.37072615490342 + "points": { + "c1": 18.54968682288473, + "c2": -28.552986237933936, + "c3": 14.55780174332157, + "c4": -1.5083275813441617, + "c5": -9.464820085596276, + "c6": 10.362313775636721, + "c7": 19.334057742100313 }, - "vertexSeeds": { - "c1": 9.4298683037857, - "c2": 9.407701382860841, - "c3": 9.586839564744697, - "c4": 9.318707774610715, - "c5": 9.54008906175342, - "c6": 9.558934809872271, - "c7": 9.353564259213286 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.758668515950067, + "c3": 11.46555709662505, + "c4": 9.172445677300063, + "c5": 6.879334257975048, + "c6": 4.586222838650031, + "c7": 2.2931114193250157 }, "rgb": [222, 0, 59] }, @@ -131307,23 +131307,23 @@ "year": 1745, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -4.885947305511593, - "c2": 0.1630088293657792, - "c3": 18.628128137626675, - "c4": 17.930940772454292, - "c5": -15.730306321817068, - "c6": -30.087576703989726, - "c7": -14.087833539603889 + "points": { + "c1": 27.10035407447201, + "c2": -23.498127799188183, + "c3": 29.638523193781822, + "c4": 27.404390335728536, + "c5": -26.611638990216427, + "c6": -23.629924781046256, + "c7": -27.405444633790946 }, - "vertexSeeds": { - "c1": 5.62428091406106, - "c2": 5.921209700493835, - "c3": 6.056106021983256, - "c4": 5.577748047302712, - "c5": 5.628597327173474, - "c6": 5.796928047990483, - "c7": 5.7252402955902735 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589457, + "c3": 7.23532131299121, + "c4": 5.788257050392964, + "c5": 4.341192787794739, + "c6": 2.894128525196493, + "c7": 1.4470642625982466 }, "rgb": [222, 0, 59] }, @@ -131334,23 +131334,23 @@ "year": 1745, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -33.99449375145045, - "c2": 21.134398954908846, - "c3": -11.480849654825128, - "c4": 38.99711423263646, - "c5": -4.2042934744441, - "c6": -33.383350035783685, - "c7": -20.02759775404741 + "points": { + "c1": 3.2212467680543284, + "c2": -42.056467841777184, + "c3": 20.84292137187721, + "c4": -2.8870883035915327, + "c5": 23.15248310660425, + "c6": 31.52005970417467, + "c7": -23.4149685028578 }, - "vertexSeeds": { - "c1": 6.397228928832619, - "c2": 6.4964548368270965, - "c3": 6.2464626236802205, - "c4": 6.312709001709738, - "c5": 6.368142193973071, - "c6": 6.2432129870192705, - "c7": 6.368583960082403 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715672, + "c3": 7.882570503929728, + "c4": 6.306056403143781, + "c5": 4.729542302357836, + "c6": 3.1530282015718907, + "c7": 1.5765141007859453 }, "rgb": [222, 0, 59] }, @@ -131361,23 +131361,23 @@ "year": 1745, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 8.305753423061873, - "c2": 22.470777550812798, - "c3": -15.004066888735, - "c4": -28.893017377614086, - "c5": 29.99353283525413, - "c6": 0.8588028858461882, - "c7": 18.579481705353672 + "points": { + "c1": -38.480771604507304, + "c2": -18.734134317278077, + "c3": -24.602726604094517, + "c4": 39.250233242046505, + "c5": -12.901423615792663, + "c6": 8.96651351465254, + "c7": -37.638111737603126 }, - "vertexSeeds": { - "c1": 5.517006994333668, - "c2": 5.247302767255287, - "c3": 5.607576929575516, - "c4": 5.518949834311775, - "c5": 5.496599579631851, - "c6": 5.547584794232904, - "c7": 5.5109989185797765 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.726768377253824, + "c4": 5.381414701803054, + "c5": 4.036061026352285, + "c6": 2.6907073509015387, + "c7": 1.3453536754507693 }, "rgb": [77, 76, 132] }, @@ -131388,23 +131388,23 @@ "year": 1746, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": -18.069823244966884, - "c2": 36.60429948770575, - "c3": 29.62557877625502, - "c4": 16.897629929919283, - "c5": 35.4939801564828, - "c6": -39.71767475154029, - "c7": 16.55443834367542 + "points": { + "c1": 9.667172112191913, + "c2": 17.566753843931885, + "c3": -13.656319507096399, + "c4": -23.45458508146237, + "c5": 4.369183486088225, + "c6": 11.80895469714347, + "c7": -35.622216102255955 }, - "vertexSeeds": { - "c1": 7.620493561619744, - "c2": 8.217629524276454, - "c3": 7.581949659852501, - "c4": 8.36682149883548, - "c5": 8.189120570191477, - "c6": 7.885777916173308, - "c7": 8.496468906980283 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059645, + "c3": 10.379103097549693, + "c4": 8.303282478039758, + "c5": 6.227461858529822, + "c6": 4.151641239019872, + "c7": 2.075820619509936 }, "rgb": [77, 76, 132] }, @@ -131415,23 +131415,23 @@ "year": 1745, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 20.633931216979292, - "c2": 11.440654079134575, - "c3": 23.193549958140473, - "c4": 25.450689464049887, - "c5": -6.517842651153149, - "c6": 0.6214667706430532, - "c7": 16.144085248058126 + "points": { + "c1": 12.309158447779375, + "c2": -6.895566272938158, + "c3": 31.707169270943645, + "c4": 19.668011741697093, + "c5": 32.002652201795364, + "c6": -29.652617841794807, + "c7": 11.949124435620334 }, - "vertexSeeds": { - "c1": 4.657907657228144, - "c2": 4.278237121249829, - "c3": 4.723135477795571, - "c4": 4.526857113111193, - "c5": 5.0514803457160165, - "c6": 4.446949656213494, - "c7": 4.892851943488286 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578363, + "c3": 6.079519186315302, + "c4": 4.863615349052242, + "c5": 3.6477115117891814, + "c6": 2.431807674526121, + "c7": 1.2159038372630604 }, "rgb": [222, 0, 59] }, @@ -131442,23 +131442,23 @@ "year": 1745, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -13.082606067530492, - "c2": 4.781640516606725, - "c3": 4.632433463619858, - "c4": -2.4291997157921763, - "c5": 23.76995273385774, - "c6": -23.869930411597505, - "c7": 12.900575207756734 + "points": { + "c1": -0.05136165497935963, + "c2": 19.686864393489454, + "c3": 9.92331678551206, + "c4": 5.133345395005161, + "c5": -6.003292792228535, + "c6": -8.198701288464477, + "c7": 1.3062835817390699 }, - "vertexSeeds": { - "c1": 4.3350092199312815, - "c2": 4.095709045253808, - "c3": 3.9294566542902554, - "c4": 4.06161472126634, - "c5": 4.140531123808653, - "c6": 3.856895196463586, - "c7": 3.8598078262067377 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170596, + "c3": 5.270457697642165, + "c4": 4.216366158113733, + "c5": 3.1622746185853012, + "c6": 2.108183079056864, + "c7": 1.0540915395284371 }, "rgb": [77, 76, 132] }, @@ -131469,23 +131469,23 @@ "year": 1745, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -8.413271468421282, - "c2": 15.299388877830538, - "c3": 10.32919915009343, - "c4": 24.45861129335372, - "c5": -12.867901623432351, - "c6": -5.150722824795363, - "c7": 26.06402686014802 + "points": { + "c1": -7.835851390081949, + "c2": 0.09884498072380765, + "c3": 3.312177995462747, + "c4": -16.15049297086053, + "c5": -3.0538913625321413, + "c6": -23.91698450437373, + "c7": 21.79551034187763 }, - "vertexSeeds": { - "c1": 3.6049405525574474, - "c2": 3.979287579544133, - "c3": 3.7455400596914066, - "c4": 3.9997401429050528, - "c5": 3.79267340428997, - "c6": 4.006709830310611, - "c7": 3.8686546579018866 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406379, + "c3": 4.831252889505315, + "c4": 3.8650023116042505, + "c5": 2.8987517337031856, + "c6": 1.932501155802121, + "c7": 0.9662505779010566 }, "rgb": [77, 76, 132] }, @@ -131496,23 +131496,23 @@ "year": 1746, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -13.34822907354426, - "c2": 9.689517453095696, - "c3": 30.39064270168278, - "c4": -40.0887599934688, - "c5": 14.808920813600828, - "c6": 31.60958167013777, - "c7": 1.7081143284130675 + "points": { + "c1": -33.7333921437147, + "c2": -45.97769941503253, + "c3": 29.16242932536727, + "c4": -36.95717434272674, + "c5": 22.62074683028375, + "c6": -17.603182573467564, + "c7": 27.538908838657335 }, - "vertexSeeds": { - "c1": 8.265858843412305, - "c2": 8.118449107381787, - "c3": 8.989714938542637, - "c4": 9.050289529215313, - "c5": 8.151391295226027, - "c6": 8.497961170743967, - "c7": 8.720124371074704 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668512, + "c3": 11.303744798890424, + "c4": 9.042995839112345, + "c5": 6.782246879334256, + "c6": 4.521497919556166, + "c7": 2.26074895977809 }, "rgb": [86, 146, 138] }, @@ -131523,23 +131523,23 @@ "year": 1745, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 26.247826246629685, - "c2": -17.459207248500505, - "c3": -15.191656504225826, - "c4": 4.412079543334002, - "c5": -16.963492921939316, - "c6": -10.517482414623696, - "c7": 29.8161440550943 + "points": { + "c1": 29.761092220295993, + "c2": -33.605812404987525, + "c3": 25.33134144381382, + "c4": 26.64659939000188, + "c5": 32.41834494827364, + "c6": -13.791462489013107, + "c7": 34.94491737142958 }, - "vertexSeeds": { - "c1": 8.035730309983139, - "c2": 8.315415272933913, - "c3": 7.728518370774974, - "c4": 8.670155026128409, - "c5": 8.416586083842567, - "c6": 7.8912965037865375, - "c7": 7.963884344432162 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542302, + "c3": 10.65649560795192, + "c4": 8.525196486361535, + "c5": 6.393897364771151, + "c6": 4.262598243180768, + "c7": 2.131299121590384 }, "rgb": [222, 0, 59] }, @@ -131550,23 +131550,23 @@ "year": 1746, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -34.30754655625199, - "c2": 37.913832072057104, - "c3": 2.771726190945337, - "c4": 25.453490738988904, - "c5": 29.499735205807838, - "c6": 34.71214881416283, - "c7": 3.787575140008876 + "points": { + "c1": 26.080660454014478, + "c2": -28.947609003792934, + "c3": -37.46541162932613, + "c4": -5.453666609179201, + "c5": 19.599129349055566, + "c6": -1.2684085111561885, + "c7": 9.679927081367381 }, - "vertexSeeds": { - "c1": 7.145934354243355, - "c2": 7.151027172856237, - "c3": 7.157685067958794, - "c4": 7.474396873230585, - "c5": 7.343858366942573, - "c6": 7.737416186343308, - "c7": 7.271110086074835 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651876, + "c3": 9.570041608876567, + "c4": 7.656033287101246, + "c5": 5.742024965325938, + "c6": 3.8280166435506295, + "c7": 1.9140083217753212 }, "rgb": [86, 146, 138] }, @@ -131577,23 +131577,23 @@ "year": 1746, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 12.55557283512313, - "c2": -32.59584603502306, - "c3": -38.04867056967475, - "c4": -31.741261336691352, - "c5": -35.92236085511203, - "c6": 19.480469851892387, - "c7": 15.849787430327474 + "points": { + "c1": 28.033434208780278, + "c2": 13.762010195386573, + "c3": 13.752749594977189, + "c4": -8.409267648382844, + "c5": -40.92393626015218, + "c6": -19.712245671355834, + "c7": 7.800600855049019 }, - "vertexSeeds": { - "c1": 2.880375730392342, - "c2": 2.8225814900289112, - "c3": 3.167784556432361, - "c4": 2.89396788385019, - "c5": 3.049964076022784, - "c6": 2.9394273141396963, - "c7": 2.9937249308681957 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636616, + "c3": 3.8141470180305146, + "c4": 3.051317614424407, + "c5": 2.288488210818305, + "c6": 1.5256588072122035, + "c7": 0.7628294036061017 }, "rgb": [86, 146, 138] }, @@ -131604,23 +131604,23 @@ "year": 1746, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -7.903576156840629, - "c2": -31.937969220874606, - "c3": -22.78581794765408, - "c4": 28.272856106727957, - "c5": 8.965603756764885, - "c6": 32.86602374923159, - "c7": 30.13834755752454 + "points": { + "c1": -31.84340036789358, + "c2": 11.699140519662357, + "c3": 32.67608471604996, + "c4": 25.6690391942859, + "c5": -35.05130774621591, + "c6": 33.53943025479482, + "c7": 27.08018177653703 }, - "vertexSeeds": { - "c1": 7.060137575431577, - "c2": 7.066071326128928, - "c3": 7.255580796913446, - "c4": 7.483288159514633, - "c5": 7.185337637212605, - "c6": 7.546943421302943, - "c7": 7.08776593907995 + "offsets": { + "c1": 12.653721682847896, + "c2": 10.846047156726767, + "c3": 9.038372630605636, + "c4": 7.23069810448452, + "c5": 5.42302357836339, + "c6": 3.61534905224226, + "c7": 1.80767452612113 }, "rgb": [58, 15, 49] }, @@ -131631,23 +131631,23 @@ "year": 1746, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -3.055556495504856, - "c2": -8.113812729476443, - "c3": -19.171097439437638, - "c4": 16.1442885901642, - "c5": 18.47236415318517, - "c6": 21.691188703435877, - "c7": -31.932597242944617 + "points": { + "c1": 7.6439790237192895, + "c2": -35.14120177230894, + "c3": -19.396872455958484, + "c4": 31.248825708181606, + "c5": 34.00260616177183, + "c6": -23.47170933423574, + "c7": 3.927063082224315 }, - "vertexSeeds": { - "c1": 4.55444637317385, - "c2": 4.906250333287451, - "c3": 5.0346897276224825, - "c4": 4.375148601303795, - "c5": 4.524310691188461, - "c6": 4.748479528576826, - "c7": 4.845702280780143 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.2676837725381445, + "c3": 6.056403143781784, + "c4": 4.84512251502543, + "c5": 3.6338418862690696, + "c6": 2.422561257512715, + "c7": 1.21128062875636 }, "rgb": [77, 76, 132] }, @@ -131658,23 +131658,23 @@ "year": 1746, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 16.79380687921212, - "c2": 25.19669351524113, - "c3": -3.029606538732203, - "c4": 37.25192257785678, - "c5": 41.46559948818918, - "c6": -46.27189151486051, - "c7": -47.770039283961026 + "points": { + "c1": -2.709248611996685, + "c2": -23.92056132021176, + "c3": -21.720240283476762, + "c4": -53.29132150670701, + "c5": 52.013389603334595, + "c6": 29.52329237660377, + "c7": -28.525684316712635 }, - "vertexSeeds": { - "c1": 6.582646214097725, - "c2": 7.130439181013838, - "c3": 6.630782218203699, - "c4": 6.993129973733295, - "c5": 6.55552103022306, - "c6": 7.255353878730885, - "c7": 6.770511766312786 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.42995839112344, + "c3": 8.69163199260287, + "c4": 6.953305594082297, + "c5": 5.214979195561726, + "c6": 3.476652797041143, + "c7": 1.7383263985205715 }, "rgb": [222, 0, 59] }, @@ -131685,23 +131685,23 @@ "year": 1746, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -30.739315471257687, - "c2": -30.33294224435154, - "c3": -30.163340039964613, - "c4": 12.706131832854226, - "c5": -14.034482884412736, - "c6": -0.9779293740304738, - "c7": 20.046400820083562 + "points": { + "c1": -17.60296367132323, + "c2": -15.027860695281952, + "c3": -37.585704076497684, + "c4": -21.856253665681088, + "c5": -13.45450810959344, + "c6": 12.396952230266123, + "c7": -27.329107751840183 }, - "vertexSeeds": { - "c1": 11.595578791672787, - "c2": 10.116946589883119, - "c3": 11.620147292672502, - "c4": 10.129975518289536, - "c5": 10.605723174307919, - "c6": 10.312089609787312, - "c7": 10.797426180959603 + "offsets": { + "c1": 19.676375404530745, + "c2": 16.865464632454923, + "c3": 14.054553860379103, + "c4": 11.243643088303282, + "c5": 8.432732316227462, + "c6": 5.621821544151641, + "c7": 2.8109107720758204 }, "rgb": [86, 146, 138] }, @@ -131712,23 +131712,23 @@ "year": 1746, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 30.23289166126819, - "c2": 16.106490313486404, - "c3": 19.73079234743905, - "c4": -21.950382640333217, - "c5": -3.6695930873392406, - "c6": 23.963072753220608, - "c7": -25.59597910553784 + "points": { + "c1": 22.502430266410705, + "c2": 2.5227566823449408, + "c3": -4.883923469811197, + "c4": 26.717178198222555, + "c5": 32.25102387586539, + "c6": -3.557469972339991, + "c7": 12.92654561900897 }, - "vertexSeeds": { - "c1": 4.286701978532635, - "c2": 4.2259640594235135, - "c3": 4.519151344113445, - "c4": 4.204013563128534, - "c5": 4.674611299840432, - "c6": 4.834004824552846, - "c7": 4.349709252918862 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [58, 15, 49] }, @@ -131739,23 +131739,23 @@ "year": 1746, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": -41.2153622606427, - "c2": 51.6414328365417, - "c3": 16.570476066100902, - "c4": 39.36411749902354, - "c5": -27.327495150854553, - "c6": -40.010952352332566, - "c7": 3.1297629716207567 + "points": { + "c1": -50.39566311940218, + "c2": 21.578512782708437, + "c3": 42.46213119534007, + "c4": 26.963966767351856, + "c5": -43.9913271180241, + "c6": 34.069220881207066, + "c7": -8.851256829718793 }, - "vertexSeeds": { - "c1": 9.069656973263266, - "c2": 9.549860093796765, - "c3": 9.248413579909565, - "c4": 9.192749350418957, - "c5": 9.666625550611203, - "c6": 8.697096473280686, - "c7": 8.763945418782942 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392508, + "c3": 11.719833564493754, + "c4": 9.375866851595015, + "c5": 7.031900138696261, + "c6": 4.687933425797508, + "c7": 2.343966712898754 }, "rgb": [77, 76, 132] }, @@ -131766,23 +131766,23 @@ "year": 1746, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": -25.533332808412705, - "c2": 3.508841177260429, - "c3": -17.048540069522353, - "c4": -28.144093470364776, - "c5": 10.48486022442647, - "c6": 0.9860426456449503, - "c7": -36.805974190657324 + "points": { + "c1": -27.8690131936849, + "c2": 11.004030293727837, + "c3": 24.49463607722725, + "c4": 46.04798388917603, + "c5": 11.846844829476773, + "c6": 51.22795606859102, + "c7": -6.659192464139025 }, - "vertexSeeds": { - "c1": 6.298652937728123, - "c2": 5.8573499399199624, - "c3": 6.190654861735288, - "c4": 6.299540245676216, - "c5": 6.1317281014780995, - "c6": 6.22000582455921, - "c7": 5.945908698823815 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233013, + "c3": 7.605177993527504, + "c4": 6.084142394822005, + "c5": 4.563106796116506, + "c6": 3.0420711974109973, + "c7": 1.5210355987054986 }, "rgb": [77, 76, 132] }, @@ -131793,23 +131793,23 @@ "year": 1746, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -5.950877748348702, - "c2": -37.80306569214509, - "c3": 31.113026930446473, - "c4": 35.60862047409744, - "c5": -22.9141678361663, - "c6": -37.40333780852064, - "c7": -1.3317904037250798 + "points": { + "c1": -1.5406058232321485, + "c2": 24.370488879448537, + "c3": 42.77876545489661, + "c4": 41.200251116074206, + "c5": 21.628639953152607, + "c6": -4.1212626525068, + "c7": -36.08409890586352 }, - "vertexSeeds": { - "c1": 5.991254571665181, - "c2": 5.305707264181631, - "c3": 5.730509832470714, - "c4": 5.372415050757523, - "c5": 6.002212259784971, - "c6": 5.380288736106336, - "c7": 5.297808848939287 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468797, + "c3": 7.165973185390657, + "c4": 5.7327785483125275, + "c5": 4.299583911234398, + "c6": 2.866389274156259, + "c7": 1.4331946370781294 }, "rgb": [58, 15, 49] }, @@ -131820,23 +131820,23 @@ "year": 1746, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -36.72208988164403, - "c2": -15.605837904692372, - "c3": -4.287918345728649, - "c4": 32.375624725125824, - "c5": -11.76868390159521, - "c6": 9.61192553532198, - "c7": -0.42752001582312005 + "points": { + "c1": -18.28249282276472, + "c2": 38.864879748069306, + "c3": -6.395958562051206, + "c4": 28.118494354979582, + "c5": -10.212279498285312, + "c6": 12.335269766341732, + "c7": -20.32516137474135 }, - "vertexSeeds": { - "c1": 9.802881535534617, - "c2": 10.696744846589018, - "c3": 10.035411629241588, - "c4": 10.563813746659568, - "c5": 10.019138270378967, - "c6": 9.826462177708077, - "c7": 10.65913102251913 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644948, + "c3": 13.014331946370778, + "c4": 10.411465557096633, + "c5": 7.808599167822462, + "c6": 5.205732778548317, + "c7": 2.6028663892741446 }, "rgb": [222, 0, 59] }, @@ -131847,23 +131847,23 @@ "year": 1747, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": -36.522362677618524, - "c2": 35.60939496409215, - "c3": -11.176580402577393, - "c4": 25.730091685803856, - "c5": 51.74344893836188, - "c6": 37.19293317387212, - "c7": 1.9103787724969337 + "points": { + "c1": -53.37437147399562, + "c2": 30.15650008269654, + "c3": -22.49043217505153, + "c4": -20.63964951762616, + "c5": -35.69876147976397, + "c6": 5.059754851953812, + "c7": -12.095320732231187 }, - "vertexSeeds": { - "c1": 6.499230639379492, - "c2": 6.628386059365437, - "c3": 6.3849150960419925, - "c4": 5.96379161879848, - "c5": 6.320793508332386, - "c6": 5.912672431670965, - "c7": 5.839599148367905 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.73647711511789, + "c3": 8.113730929264905, + "c4": 6.490984743411922, + "c5": 4.868238557558938, + "c6": 3.2454923717059674, + "c7": 1.6227461858529837 }, "rgb": [77, 76, 132] }, @@ -131874,23 +131874,23 @@ "year": 1746, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 13.392973405403161, - "c2": 28.155311957127118, - "c3": -29.73578245406352, - "c4": -1.1242157803615882, - "c5": -28.11222162756764, - "c6": -27.561288353618995, - "c7": -19.338825170583235 + "points": { + "c1": 18.95945657469241, + "c2": 22.304262454887507, + "c3": 8.668582720430344, + "c4": -16.223024668571494, + "c5": 12.878944502380989, + "c6": -22.9991343000217, + "c7": 21.88117750259012 }, - "vertexSeeds": { - "c1": 5.829121273930307, - "c2": 5.995533614845989, - "c3": 5.522505327015325, - "c4": 5.720825595003185, - "c5": 5.41610802912554, - "c6": 5.5911848043618715, - "c7": 5.63519880208152 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549235, + "c3": 7.212205270457697, + "c4": 5.769764216366157, + "c5": 4.3273231622746176, + "c6": 2.8848821081830787, + "c7": 1.4424410540915393 }, "rgb": [86, 146, 138] }, @@ -131901,23 +131901,23 @@ "year": 1746, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -13.246090250602734, - "c2": 32.75852846017313, - "c3": -19.289923255633393, - "c4": -37.08131158851402, - "c5": -34.2362007161497, - "c6": 37.98390082806484, - "c7": 28.5253761350154 + "points": { + "c1": 34.28378372969248, + "c2": 32.71591280745121, + "c3": 20.38006340374178, + "c4": 37.187248864503026, + "c5": 40.45444087540884, + "c6": 25.47141832486046, + "c7": -6.513739482411751 }, - "vertexSeeds": { - "c1": 4.729284779559507, - "c2": 4.373541186227944, - "c3": 4.542474158598719, - "c4": 4.423799756347449, - "c5": 4.92625089041461, - "c6": 4.519180972322364, - "c7": 4.6159199724896265 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256586, + "c3": 5.8945908460471585, + "c4": 4.715672676837723, + "c5": 3.5367545076282965, + "c6": 2.3578363384188616, + "c7": 1.1789181692094268 }, "rgb": [77, 76, 132] }, @@ -131928,23 +131928,23 @@ "year": 1746, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 29.611571240803357, - "c2": -29.53005376768634, - "c3": -31.278813126749032, - "c4": -21.69997280328767, - "c5": -14.514602424412843, - "c6": -0.4270613929932665, - "c7": 34.204482557347745 + "points": { + "c1": -11.681350145098875, + "c2": 35.10123065927796, + "c3": -10.715047640120336, + "c4": -20.318755109317628, + "c5": -14.755484183737806, + "c6": -7.230690096111196, + "c7": -10.495537970726748 }, - "vertexSeeds": { - "c1": 4.92236508120912, - "c2": 4.846792613507592, - "c3": 4.596483345446307, - "c4": 4.810415997898268, - "c5": 4.924254513529358, - "c6": 4.248226761369378, - "c7": 4.455219619645675 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256591, + "c3": 5.894590846047157, + "c4": 4.715672676837728, + "c5": 3.536754507628293, + "c6": 2.357836338418864, + "c7": 1.1789181692094293 }, "rgb": [58, 15, 49] }, @@ -131955,23 +131955,23 @@ "year": 1746, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 24.370503152201785, - "c2": 13.481233866076664, - "c3": 1.285133929239656, - "c4": 32.61670005465049, - "c5": -36.90391726167398, - "c6": -8.831847407962329, - "c7": 20.24994591752121 + "points": { + "c1": 4.281706198025375, + "c2": -41.54764138090582, + "c3": -37.148772400212536, + "c4": -9.835127239052952, + "c5": 20.721356067476414, + "c6": 39.141776077234276, + "c7": 7.981962826793854 }, - "vertexSeeds": { - "c1": 6.117433275465674, - "c2": 6.9388488862685715, - "c3": 6.266526684261556, - "c4": 5.970020231126046, - "c5": 6.463915010214759, - "c6": 6.825614229265247, - "c7": 6.54520296507547 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066569, + "c4": 6.657420249653258, + "c5": 4.993065187239946, + "c6": 3.3287101248266353, + "c7": 1.6643550624133112 }, "rgb": [222, 0, 59] }, @@ -131982,23 +131982,23 @@ "year": 1746, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 35.58872666411044, - "c2": -15.583976445479756, - "c3": 30.602236210705442, - "c4": 29.186418314540347, - "c5": 33.946473741626576, - "c6": 33.0684309823727, - "c7": -29.97014196314486 + "points": { + "c1": -26.86206225892019, + "c2": 6.704500884264554, + "c3": 12.267687873952191, + "c4": 19.935584777995345, + "c5": -24.966867251349427, + "c6": -19.418089067999638, + "c7": -32.66866818514377 }, - "vertexSeeds": { - "c1": 3.908896931036965, - "c2": 4.099627808819487, - "c3": 4.219784824281577, - "c4": 3.901081468861878, - "c5": 3.9460807822807773, - "c6": 3.9939114954914845, - "c7": 3.962946798786287 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130375, + "c3": 5.247341655108647, + "c4": 4.197873324086913, + "c5": 3.148404993065185, + "c6": 2.0989366620434566, + "c7": 1.0494683310217283 }, "rgb": [222, 0, 59] }, @@ -132009,23 +132009,23 @@ "year": 1746, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 14.660755914880703, - "c2": -39.842089810255565, - "c3": -0.003869445418168027, - "c4": -29.09570928306904, - "c5": 35.014419498756816, - "c6": 20.126371689242568, - "c7": 0.6393301580136281 + "points": { + "c1": -43.068050742543285, + "c2": 13.444466841262496, + "c3": 5.355111250079929, + "c4": 23.18350338051976, + "c5": -22.98799160017597, + "c6": -12.004090062609485, + "c7": 38.209320593063346 }, - "vertexSeeds": { - "c1": 7.976076318063214, - "c2": 8.4268050738865, - "c3": 7.736573394659803, - "c4": 8.091806152343272, - "c5": 7.640483540352471, - "c6": 8.408942969486317, - "c7": 7.630349019284987 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502078, + "c3": 10.633379565418407, + "c4": 8.506703652334723, + "c5": 6.380027739251039, + "c6": 4.253351826167355, + "c7": 2.126675913083684 }, "rgb": [86, 146, 138] }, @@ -132036,23 +132036,23 @@ "year": 1746, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -31.669452396811206, - "c2": -32.83466069031344, - "c3": -28.3783155407492, - "c4": -41.93646344522248, - "c5": 33.45426894214824, - "c6": 18.02547744749799, - "c7": -3.803816361083342 + "points": { + "c1": -2.464929596784444, + "c2": 40.19373233431126, + "c3": 25.572143484723107, + "c4": 34.45304438655058, + "c5": -29.91379400841924, + "c6": -2.9892661992092613, + "c7": 36.352750069454196 }, - "vertexSeeds": { - "c1": 1.6012624549530319, - "c2": 1.6505135073923067, - "c3": 1.552392790571128, - "c4": 1.6333740301739956, - "c5": 1.4711747668087805, - "c6": 1.4629758900397911, - "c7": 1.3990664281133838 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.441054091539528, + "c3": 2.0342117429496085, + "c4": 1.627369394359686, + "c5": 1.220527045769764, + "c6": 0.8136846971798417, + "c7": 0.40684234858992213 }, "rgb": [238, 201, 159] }, @@ -132063,23 +132063,23 @@ "year": 1746, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -2.951746495140327, - "c2": -31.12557421320196, - "c3": -1.6080089241316173, - "c4": -2.3578138186545985, - "c5": -24.942101509977395, - "c6": -5.346351986555998, - "c7": -7.756843483150714 + "points": { + "c1": -2.298996723997547, + "c2": -13.240420281447445, + "c3": -9.638323823836156, + "c4": -4.092516950540038, + "c5": 23.710358216153196, + "c6": 29.08687784805521, + "c7": -11.448263348286378 }, - "vertexSeeds": { - "c1": 5.874237687068288, - "c2": 6.154344059559391, - "c3": 6.402674640618011, - "c4": 5.701189241852179, - "c5": 6.033792151716653, - "c6": 6.190044480262828, - "c7": 6.252682888958352 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -132090,23 +132090,23 @@ "year": 1746, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -33.8650427769094, - "c2": -24.09535400606063, - "c3": 34.938624198900534, - "c4": 21.162569432681494, - "c5": 13.332286487307577, - "c6": 22.791919563670533, - "c7": -16.225063103221135 + "points": { + "c1": 32.10677760871747, + "c2": 37.51595434336995, + "c3": -23.56675033601737, + "c4": -22.65271987682467, + "c5": 29.627565527923515, + "c6": -8.930020871885723, + "c7": -12.36884133890274 }, - "vertexSeeds": { - "c1": 7.761610052806426, - "c2": 7.171125358440185, - "c3": 7.560459403497358, - "c4": 8.135788303973083, - "c5": 7.609156699583028, - "c6": 7.603523846882845, - "c7": 7.022377403816472 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933424, + "c3": 9.731853906611189, + "c4": 7.78548312528895, + "c5": 5.839112343966712, + "c6": 3.892741562644475, + "c7": 1.9463707813222375 }, "rgb": [238, 201, 159] }, @@ -132117,23 +132117,23 @@ "year": 1747, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": 31.187958350159825, - "c2": -19.422639978716184, - "c3": 47.765965581211994, - "c4": -21.847180589732503, - "c5": -46.84143084779754, - "c6": -38.74463638355271, - "c7": -34.50082318883291 + "points": { + "c1": 8.720039243830492, + "c2": -50.81163324227099, + "c3": 39.58881164570365, + "c4": -53.94192547776099, + "c5": 8.656745014569928, + "c6": -35.80419110309302, + "c7": 33.61577669977206 }, - "vertexSeeds": { - "c1": 3.9553051199415394, - "c2": 4.16468492696511, - "c3": 3.9331621070578344, - "c4": 4.118404838111794, - "c5": 4.040534294220474, - "c6": 3.7483874733699474, - "c7": 4.174562933733157 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374018, + "c4": 4.068423485899213, + "c5": 3.05131761442441, + "c6": 2.0342117429496067, + "c7": 1.0171058714748034 }, "rgb": [86, 146, 138] }, @@ -132144,23 +132144,23 @@ "year": 1747, "resistanceReported": false, "duration": 61948800, - "curveSeeds": { - "c1": -51.67489146706955, - "c2": 71.42762417792129, - "c3": -51.394184633184146, - "c4": 33.9443305534715, - "c5": -71.090245013998, - "c6": 15.181993705614403, - "c7": 59.50899096293368 + "points": { + "c1": -23.33044946477917, + "c2": 69.6173646222875, + "c3": 39.50166720142941, + "c4": 25.95163671327839, + "c5": 28.731558886463077, + "c6": -13.75431644787534, + "c7": -4.976712675752296 }, - "vertexSeeds": { - "c1": 4.007741626998898, - "c2": 4.129770108460608, - "c3": 3.978435637979262, - "c4": 4.0559279979527965, - "c5": 4.198476374766677, - "c6": 3.996969404497382, - "c7": 4.086026216393847 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [58, 15, 49] }, @@ -132171,23 +132171,23 @@ "year": 1746, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 18.51878088141403, - "c2": -3.717539588796889, - "c3": 6.721216156053096, - "c4": 42.09744509984821, - "c5": -10.296369699806554, - "c6": -36.90515767592736, - "c7": 31.733950618778614 + "points": { + "c1": -13.079548751249614, + "c2": -44.24966240383389, + "c3": -14.665468860745584, + "c4": 13.491371827079888, + "c5": -13.794686926996906, + "c6": -24.035540083579964, + "c7": -29.8554777711138 }, - "vertexSeeds": { - "c1": 5.480889281265305, - "c2": 5.745160667677852, - "c3": 5.476409896518506, - "c4": 5.556946201105379, - "c5": 5.684033443558508, - "c6": 5.442834656126963, - "c7": 5.7463370051049605 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026365, + "c3": 6.911696717521957, + "c4": 5.529357374017577, + "c5": 4.147018030513169, + "c6": 2.7646786870087885, + "c7": 1.382339343504408 }, "rgb": [86, 146, 138] }, @@ -132198,23 +132198,23 @@ "year": 1747, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": 32.090710780915856, - "c2": -44.67800000470535, - "c3": 3.097093353545233, - "c4": -57.96533829870795, - "c5": -9.736460796303547, - "c6": -9.15293136305614, - "c7": -53.463075007387324 + "points": { + "c1": 19.666289747074586, + "c2": -21.068373838737465, + "c3": -0.32677635025165586, + "c4": -6.547571396074936, + "c5": 15.323583554651037, + "c6": 22.901755379937086, + "c7": 10.59210560123823 }, - "vertexSeeds": { - "c1": 6.393290272026316, - "c2": 6.6413911019177885, - "c3": 6.521298288619669, - "c4": 5.2185700611346695, - "c5": 5.756441507423389, - "c6": 5.391655763812175, - "c7": 5.871053214147599 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957003, + "c3": 8.021266759130835, + "c4": 6.417013407304666, + "c5": 4.812760055478505, + "c6": 3.208506703652337, + "c7": 1.6042533518261686 }, "rgb": [86, 146, 138] }, @@ -132225,23 +132225,23 @@ "year": 1747, "resistanceReported": false, "duration": 52531200, - "curveSeeds": { - "c1": -25.753434223832727, - "c2": 45.84896484717399, - "c3": -42.90157128452479, - "c4": -34.411307680810914, - "c5": 22.915158209549872, - "c6": -32.207274701122955, - "c7": -29.391824137311367 + "points": { + "c1": 46.89843884174522, + "c2": -40.34751150461952, + "c3": -54.954072588092004, + "c4": 55.09351761711392, + "c5": 51.4409633089501, + "c6": -54.52336580232783, + "c7": 50.11016856540965 }, - "vertexSeeds": { - "c1": 11.025172868042796, - "c2": 11.810960923313152, - "c3": 10.957155051660166, - "c4": 11.142781003050938, - "c5": 11.495269518552105, - "c6": 11.008863519478982, - "c7": 11.759977459326423 + "offsets": { + "c1": 20.323624595469255, + "c2": 17.42024965325935, + "c3": 14.516874711049473, + "c4": 11.613499768839567, + "c5": 8.710124826629688, + "c6": 5.806749884419784, + "c7": 2.903374942209878 }, "rgb": [222, 0, 59] }, @@ -132252,23 +132252,23 @@ "year": 1747, "resistanceReported": false, "duration": 59875200, - "curveSeeds": { - "c1": -22.650646745821867, - "c2": 64.42622926341562, - "c3": 3.7863108914286556, - "c4": -4.345386327089457, - "c5": 8.467324320663963, - "c6": -16.875132947382795, - "c7": -59.250640275303184 + "points": { + "c1": -19.71829568128115, + "c2": 21.776083266579903, + "c3": -24.50440267448527, + "c4": 68.07539841668358, + "c5": 46.85777227976787, + "c6": 43.17878778192494, + "c7": -60.12712466596456 }, - "vertexSeeds": { - "c1": 4.780339370858208, - "c2": 4.609692278712828, - "c3": 4.272180542015973, - "c4": 4.53914851613453, - "c5": 4.2392688882591605, - "c6": 4.623182614024207, - "c7": 4.666500227366354 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015259, + "c3": 5.75589459084605, + "c4": 4.604715672676842, + "c5": 3.4535367545076325, + "c6": 2.302357836338424, + "c7": 1.1511789181692154 }, "rgb": [77, 76, 132] }, @@ -132279,23 +132279,23 @@ "year": 1747, "resistanceReported": false, "duration": 60912000, - "curveSeeds": { - "c1": -72.23552780902487, - "c2": -26.744034000416775, - "c3": -46.07454646749159, - "c4": -32.065362415841285, - "c5": -64.38311540932816, - "c6": 19.2667957875898, - "c7": 67.83143340873227 + "points": { + "c1": -31.336788498725376, + "c2": 16.852146545614048, + "c3": 45.94649060823288, + "c4": -24.223936257957945, + "c5": 57.36188584827329, + "c6": 78.31771766639241, + "c7": 60.07155800546434 }, - "vertexSeeds": { - "c1": 4.586771431446514, - "c2": 4.662259568106253, - "c3": 4.623757647947186, - "c4": 4.391889133145775, - "c5": 4.584919099074488, - "c6": 4.33310179375867, - "c7": 4.470510642749772 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814146, + "c3": 5.640314378178453, + "c4": 4.51225150254276, + "c5": 3.384188626907067, + "c6": 2.256125751271386, + "c7": 1.128062875635693 }, "rgb": [86, 146, 138] }, @@ -132306,23 +132306,23 @@ "year": 1747, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": -51.322140301685025, - "c2": 44.090060708606046, - "c3": -19.569911340097576, - "c4": -17.012838722158925, - "c5": -20.77372263321532, - "c6": 50.76166808030705, - "c7": -52.021715567989595 + "points": { + "c1": 34.11421190346594, + "c2": -4.858013166978758, + "c3": 29.27478963891251, + "c4": 37.99480162709756, + "c5": 34.69874699713411, + "c6": -6.3674459622731945, + "c7": 48.13630744108917 }, - "vertexSeeds": { - "c1": 6.791777657004392, - "c2": 6.945950323643365, - "c3": 6.800444190371449, - "c4": 7.035149784158164, - "c5": 7.025489269317699, - "c6": 6.8718928543272275, - "c7": 7.051591127990565 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083226, + "c3": 8.668515950069336, + "c4": 6.9348127600554745, + "c5": 5.201109570041613, + "c6": 3.467406380027724, + "c7": 1.733703190013862 }, "rgb": [222, 0, 59] }, @@ -132333,23 +132333,23 @@ "year": 1747, "resistanceReported": false, "duration": 57628800, - "curveSeeds": { - "c1": -28.56943153867047, - "c2": 71.44256954240032, - "c3": -6.75543558555249, - "c4": 56.56212688758265, - "c5": 71.15362979820111, - "c6": -28.588785282328566, - "c7": 0.5204275722011715 + "points": { + "c1": 11.989872927588351, + "c2": -46.78993742104643, + "c3": -61.48092005997567, + "c4": -14.350697042525326, + "c5": 31.95876035165975, + "c6": -17.646061807196105, + "c7": 27.63420899570194 }, - "vertexSeeds": { - "c1": 4.2655819642505115, - "c2": 4.071703648444492, - "c3": 4.1452605932772215, - "c4": 4.320401083643149, - "c5": 4.291483356880584, - "c6": 4.339019656063023, - "c7": 4.325009682094355 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.3522884882108155, + "c3": 5.293573740175686, + "c4": 4.234858992140547, + "c5": 3.1761442441054077, + "c6": 2.117429496070268, + "c7": 1.0587147480351395 }, "rgb": [222, 0, 59] }, @@ -132360,23 +132360,23 @@ "year": 1747, "resistanceReported": false, "duration": 50803200, - "curveSeeds": { - "c1": 9.616560227010993, - "c2": 24.376343688744086, - "c3": -45.99477745360852, - "c4": 52.906663944771594, - "c5": -22.235314461231162, - "c6": 14.423403059467631, - "c7": 62.83553274371599 + "points": { + "c1": -32.5676757367229, + "c2": 19.479511317054317, + "c3": 59.418887943475085, + "c4": -14.212425460117515, + "c5": 60.967221324354654, + "c6": 55.79094532823321, + "c7": 65.39828059017191 }, - "vertexSeeds": { - "c1": 6.851073891459539, - "c2": 6.857072016312805, - "c3": 7.141168313559995, - "c4": 7.051976780913367, - "c5": 6.86470705618777, - "c6": 7.09522259062188, - "c7": 7.127203255536759 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083226, + "c3": 8.668515950069336, + "c4": 6.9348127600554745, + "c5": 5.201109570041613, + "c6": 3.467406380027724, + "c7": 1.733703190013862 }, "rgb": [222, 0, 59] }, @@ -132387,23 +132387,23 @@ "year": 1747, "resistanceReported": false, "duration": 48556800, - "curveSeeds": { - "c1": 0.13203008976862662, - "c2": -29.162922656009954, - "c3": -59.42255071807008, - "c4": 14.960285928144899, - "c5": 60.91034286892675, - "c6": -24.105844265805047, - "c7": 28.31477212301047 + "points": { + "c1": 26.18438022346936, + "c2": -43.83363268563266, + "c3": 27.44397631633356, + "c4": -59.617351685499095, + "c5": -58.35840150924115, + "c6": 25.728172493459624, + "c7": 53.3665921239172 }, - "vertexSeeds": { - "c1": 5.040054283401346, - "c2": 5.025692695034142, - "c3": 5.315617944312634, - "c4": 5.103347067696979, - "c5": 5.62066462672736, - "c6": 5.338645349319039, - "c7": 5.261794873922816 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744799, + "c3": 6.749884419787333, + "c4": 5.399907535829866, + "c5": 4.049930651872399, + "c6": 2.699953767914933, + "c7": 1.3499768839574664 }, "rgb": [222, 0, 59] }, @@ -132414,23 +132414,23 @@ "year": 1747, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": -9.202939919337702, - "c2": -18.75109518851859, - "c3": 43.649800153700184, - "c4": -2.5202040456049346, - "c5": -22.529191684622464, - "c6": 50.09990549143228, - "c7": 25.75773503857542 + "points": { + "c1": -6.421086378411161, + "c2": -12.169301617439842, + "c3": -7.3904227188781775, + "c4": 19.320050220336313, + "c5": -50.02231891752381, + "c6": -23.824331040499665, + "c7": 49.750798074742804 }, - "vertexSeeds": { - "c1": 6.026099006771194, - "c2": 6.036184378467436, - "c3": 5.776494384009724, - "c4": 6.411532261999641, - "c5": 6.165069670697727, - "c6": 6.41868912013037, - "c7": 5.7842028748727 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.859454461396207, + "c4": 6.28756356911697, + "c5": 4.7156726768377215, + "c6": 3.143781784558485, + "c7": 1.5718908922792358 }, "rgb": [222, 0, 59] }, @@ -132441,23 +132441,23 @@ "year": 1747, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": -0.5701369172084156, - "c2": 48.48647626683722, - "c3": 2.7395726030248326, - "c4": 36.7072732361275, - "c5": 26.753154110000004, - "c6": -21.44473995073653, - "c7": 24.915668682720643 + "points": { + "c1": -2.1956813379985505, + "c2": -0.35972494393080723, + "c3": -33.181605310671785, + "c4": -21.382469180023755, + "c5": -45.66002832056907, + "c6": -34.28703790097235, + "c7": 50.08247637015217 }, - "vertexSeeds": { - "c1": 9.321997045860462, - "c2": 9.812867721163887, - "c3": 9.884464620543962, - "c4": 10.002888022565273, - "c5": 9.725259712936149, - "c6": 9.005617800335193, - "c7": 8.835482676512814 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156717, + "c3": 12.159038372630613, + "c4": 9.727230698104481, + "c5": 7.295423023578365, + "c6": 4.863615349052248, + "c7": 2.4318076745261177 }, "rgb": [222, 0, 59] }, @@ -132468,23 +132468,23 @@ "year": 1747, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": -16.370469913792057, - "c2": 0.17125218383220897, - "c3": 2.350143253310513, - "c4": -21.500774868626568, - "c5": -17.66159669153963, - "c6": 19.741673467744164, - "c7": 26.478170747413984 + "points": { + "c1": -31.030879578155627, + "c2": 1.6427443162684838, + "c3": -29.003010566234586, + "c4": 5.094973368862426, + "c5": 19.570807226241058, + "c6": 4.869138848365502, + "c7": 36.07226260713068 }, - "vertexSeeds": { - "c1": 1.4043845259862082, - "c2": 1.4169126551067586, - "c3": 1.4341098300482993, - "c4": 1.404051800441746, - "c5": 1.4489736944727623, - "c6": 1.4815136452550939, - "c7": 1.4399016982664476 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257977, + "c3": 1.8723994452149788, + "c4": 1.4979195561719845, + "c5": 1.1234396671289864, + "c6": 0.7489597780859922, + "c7": 0.3744798890429941 }, "rgb": [238, 201, 159] }, @@ -132495,23 +132495,23 @@ "year": 1747, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": 20.15845335396064, - "c2": -3.8683446298710464, - "c3": 37.188630809722596, - "c4": -32.23362699295336, - "c5": -27.845802019664525, - "c6": -21.156264966999274, - "c7": 15.758710319960883 + "points": { + "c1": -55.78282885859901, + "c2": 55.29953252289789, + "c3": 4.249965322871233, + "c4": -19.134944987368243, + "c5": -6.76658235740198, + "c6": -15.63741568389814, + "c7": -21.717929061645528 }, - "vertexSeeds": { - "c1": 6.093160351279543, - "c2": 5.852980794672755, - "c3": 5.758411652656237, - "c4": 6.236329998480107, - "c5": 5.9103643991385875, - "c6": 5.874138755914689, - "c7": 6.061718392802481 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072116, + "c3": 7.512713823393443, + "c4": 6.010171058714751, + "c5": 4.507628294036058, + "c6": 3.0050855293573653, + "c7": 1.5025427646786924 }, "rgb": [86, 146, 138] }, @@ -132522,23 +132522,23 @@ "year": 1746, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 6.5239406778946645, - "c2": -6.0522011779119325, - "c3": -34.1444869331549, - "c4": 8.344516266022467, - "c5": -13.530501840588798, - "c6": 38.408468646990265, - "c7": 41.770547675305075 + "points": { + "c1": -3.526051537979548, + "c2": 25.61394979433826, + "c3": 1.02486994380061, + "c4": 27.93417789550167, + "c5": 0.9662411677079419, + "c6": 40.39853354316504, + "c7": 30.938703476284225 }, - "vertexSeeds": { - "c1": 10.61572299525725, - "c2": 10.19367785305099, - "c3": 10.871800563269444, - "c4": 10.14632436843246, - "c5": 9.790719257036773, - "c6": 9.9563054182125, - "c7": 10.219708398222222 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.811373092926505, + "c3": 13.17614424410541, + "c4": 10.540915395284342, + "c5": 7.9056865464632455, + "c6": 5.270457697642178, + "c7": 2.635228848821082 }, "rgb": [238, 201, 159] }, @@ -132549,23 +132549,23 @@ "year": 1746, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 8.209678369977944, - "c2": 6.618052465289892, - "c3": 13.921826433251972, - "c4": 40.270755954951, - "c5": 25.890119998700328, - "c6": 42.13981670784817, - "c7": -4.036761774861532 + "points": { + "c1": 22.44240910883255, + "c2": 18.11772131067393, + "c3": 19.280435495708474, + "c4": 32.6853147333171, + "c5": 42.732429596605144, + "c6": -12.116777745358775, + "c7": 24.587986948206336 }, - "vertexSeeds": { - "c1": 6.044727132328818, - "c2": 5.501065553366505, - "c3": 5.537870526820581, - "c4": 5.170774166201002, - "c5": 5.469260675594464, - "c6": 5.124337429195122, - "c7": 5.417343114439131 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790565, + "c3": 7.350901525658809, + "c4": 5.880721220527043, + "c5": 4.410540915395288, + "c6": 2.9403606102635216, + "c7": 1.4701803051317557 }, "rgb": [77, 76, 132] }, @@ -132576,23 +132576,23 @@ "year": 1746, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 4.331744368291631, - "c2": 35.862191401692755, - "c3": -13.340876676502738, - "c4": -8.067734946024675, - "c5": 2.243287146420464, - "c6": -4.776486653239232, - "c7": -36.82986566604828 + "points": { + "c1": 28.105724622674714, + "c2": 35.15468078480053, + "c3": -33.55347528417425, + "c4": -32.88150134017723, + "c5": -38.329424364777296, + "c6": 9.531830268814474, + "c7": -31.585620285953812 }, - "vertexSeeds": { - "c1": 4.932752796946011, - "c2": 4.179052046527992, - "c3": 4.261377399291496, - "c4": 4.538433392823907, - "c5": 4.833612730529018, - "c6": 5.0298325666176495, - "c7": 4.4394986658318505 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497919, + "c3": 6.033287101248266, + "c4": 4.826629680998609, + "c5": 3.6199722607489573, + "c6": 2.4133148404993046, + "c7": 1.2066574202496523 }, "rgb": [238, 201, 159] }, @@ -132603,23 +132603,23 @@ "year": 1747, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": 43.927307827572925, - "c2": 34.41259578738575, - "c3": 18.750912274269332, - "c4": 15.271644292905869, - "c5": 10.357347703911373, - "c6": -43.36925592233664, - "c7": -43.67606573070778 + "points": { + "c1": -49.29207534220165, + "c2": 6.013301715598168, + "c3": 33.53395309628116, + "c4": 18.97925640154535, + "c5": -2.259111837320738, + "c6": -41.5861361301698, + "c7": 14.08399094757781 }, - "vertexSeeds": { - "c1": 7.498378536727468, - "c2": 7.058398237587972, - "c3": 7.922864622930756, - "c4": 8.493651286527214, - "c5": 7.320578915863717, - "c6": 7.344720913917322, - "c7": 7.95045864645967 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657417, + "c3": 10.14794267221452, + "c4": 8.118354137771611, + "c5": 6.088765603328714, + "c6": 4.0591770688858055, + "c7": 2.0295885344428974 }, "rgb": [58, 15, 49] }, @@ -132630,23 +132630,23 @@ "year": 1747, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 2.6202609397957133, - "c2": -19.074576279319228, - "c3": 35.295759385778254, - "c4": 25.533549003849373, - "c5": 25.4431323935313, - "c6": 30.104478306097477, - "c7": -17.07286079818329 + "points": { + "c1": -3.21403461436082, + "c2": 37.92696185309677, + "c3": -40.10070242161188, + "c4": -24.774288294329107, + "c5": 7.413400526131355, + "c6": 9.942489641748644, + "c7": -2.7230042425977317 }, - "vertexSeeds": { - "c1": 4.081708555409911, - "c2": 3.8359952611788786, - "c3": 4.4155324391111455, - "c4": 4.491231283973646, - "c5": 4.302628659568503, - "c6": 4.258642786300566, - "c7": 4.252468557459285 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -132657,23 +132657,23 @@ "year": 1747, "resistanceReported": false, "duration": 58320000, - "curveSeeds": { - "c1": -8.714942380619064, - "c2": 52.728752180746255, - "c3": -68.6379369998017, - "c4": 67.0147844597527, - "c5": -52.943000788540914, - "c6": 8.421305731848179, - "c7": -21.265644918514404 + "points": { + "c1": 4.757140389092058, + "c2": -43.01154154010593, + "c3": -20.89868303524404, + "c4": 46.22570926407596, + "c5": -18.22811861924341, + "c6": -49.97645337439846, + "c7": 20.6168080618841 }, - "vertexSeeds": { - "c1": 4.768864089176681, - "c2": 5.481762694257844, - "c3": 5.541562124307205, - "c4": 4.759517780561994, - "c5": 5.715621264008613, - "c6": 5.072043097567292, - "c7": 5.496879651927401 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.29403606102635, + "c3": 6.9116967175219655, + "c4": 5.529357374017571, + "c5": 4.147018030513175, + "c6": 2.76467868700878, + "c7": 1.3823393435043951 }, "rgb": [238, 201, 159] }, @@ -132684,23 +132684,23 @@ "year": 1747, "resistanceReported": false, "duration": 58320000, - "curveSeeds": { - "c1": -19.89980085605074, - "c2": -30.75609732804419, - "c3": -52.914388434668105, - "c4": -18.741917527947606, - "c5": 21.982981308440884, - "c6": 69.84594631293523, - "c7": 51.499004185351836 + "points": { + "c1": 28.580957190180627, + "c2": -13.796262382219929, + "c3": 40.43342636538742, + "c4": -52.22266190004114, + "c5": -55.3519888047252, + "c6": 1.8309147983895429, + "c7": -44.52290989812478 }, - "vertexSeeds": { - "c1": 4.268302940386683, - "c2": 4.317338826556046, - "c3": 4.411882585616004, - "c4": 4.019195891205526, - "c5": 4.237394118032317, - "c6": 4.470464371776805, - "c7": 4.54495910223467 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532597, + "c3": 5.478502080443827, + "c4": 4.382801664355064, + "c5": 3.287101248266295, + "c6": 2.191400832177532, + "c7": 1.095700416088763 }, "rgb": [77, 76, 132] }, @@ -132711,23 +132711,23 @@ "year": 1747, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -8.942474435542572, - "c2": 14.149586048032795, - "c3": -17.135893050103004, - "c4": 15.161321694565743, - "c5": 33.309842877346426, - "c6": -12.41740753706732, - "c7": 0.2952036062578429 + "points": { + "c1": 1.0530310471798714, + "c2": 7.3711612334511685, + "c3": 22.50183890711915, + "c4": -38.97295889665067, + "c5": 18.36561765211873, + "c6": -21.27117196485617, + "c7": -12.924870060037527 }, - "vertexSeeds": { - "c1": 6.272462577794214, - "c2": 6.24287806416194, - "c3": 6.4106735504049395, - "c4": 5.989813183228943, - "c5": 6.046420776308552, - "c6": 5.593908615253341, - "c7": 5.570904498944336 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -132738,23 +132738,23 @@ "year": 1747, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -14.72981840269767, - "c2": -1.2119703883185764, - "c3": -6.487250670730695, - "c4": 7.783995602020418, - "c5": -43.27874665602701, - "c6": -22.49232224462779, - "c7": 3.6051411014164287 + "points": { + "c1": -6.607294896907767, + "c2": 5.149757405120333, + "c3": -39.35997284094225, + "c4": 26.00231237906501, + "c5": 10.134353703997952, + "c6": -9.73401214403249, + "c7": -0.6186355647485655 }, - "vertexSeeds": { - "c1": 5.844477490496988, - "c2": 5.943136147953648, - "c3": 5.160473754158224, - "c4": 5.449949267689245, - "c5": 5.210729898576706, - "c6": 5.212824758585294, - "c7": 5.781015923536154 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750348, + "c3": 7.327785483125291, + "c4": 5.862228386500226, + "c5": 4.39667128987517, + "c6": 2.931114193250113, + "c7": 1.4655570966250564 }, "rgb": [238, 201, 159] }, @@ -132765,23 +132765,23 @@ "year": 1747, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": -28.39595292970874, - "c2": 11.329600060849202, - "c3": -4.351525473290536, - "c4": -49.06191913512789, - "c5": 26.58181226448032, - "c6": 51.170029599558575, - "c7": -8.8521745348501 + "points": { + "c1": 19.557272176648553, + "c2": -38.676951431593636, + "c3": -48.723521349839984, + "c4": 1.8838254392628926, + "c5": 13.008579010665713, + "c6": -41.24201568898397, + "c7": -26.250069183849778 }, - "vertexSeeds": { - "c1": 12.197492094804781, - "c2": 13.034530172393652, - "c3": 12.306362563716487, - "c4": 12.484225927463763, - "c5": 12.5056115444523, - "c6": 11.810769605411604, - "c7": 12.6250330422327 + "offsets": { + "c1": 21.877022653721685, + "c2": 18.751733703190006, + "c3": 15.62644475265835, + "c4": 12.50115580212667, + "c5": 9.375866851595015, + "c6": 6.250577901063335, + "c7": 3.125288950531681 }, "rgb": [77, 76, 132] }, @@ -132792,23 +132792,23 @@ "year": 1747, "resistanceReported": false, "duration": 41299200, - "curveSeeds": { - "c1": 37.01317149483471, - "c2": 7.9267903465553005, - "c3": -34.67980572672795, - "c4": -37.47863996075384, - "c5": -9.014011538618071, - "c6": 36.86059464479365, - "c7": 33.18281052588648 + "points": { + "c1": -15.568836801138232, + "c2": 11.27098466982882, + "c3": -3.1250406064667047, + "c4": 39.997016151631996, + "c5": 24.600384211037706, + "c6": 45.15471955260993, + "c7": 21.55527795787944 }, - "vertexSeeds": { - "c1": 9.610511051242147, - "c2": 10.354899904066004, - "c3": 9.902254181613168, - "c4": 9.458747532217782, - "c5": 9.32890317089388, - "c6": 9.321442246738693, - "c7": 9.929917256969748 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081828, + "c3": 12.690707350901523, + "c4": 10.152565880721214, + "c5": 7.614424410540907, + "c6": 5.0762829403606, + "c7": 2.5381414701802933 }, "rgb": [77, 76, 132] }, @@ -132819,23 +132819,23 @@ "year": 1747, "resistanceReported": false, "duration": 46224000, - "curveSeeds": { - "c1": -25.184978508030603, - "c2": -59.69278767601304, - "c3": -8.92750869609484, - "c4": 58.94405881720348, - "c5": 36.7109447332112, - "c6": 30.773015953171118, - "c7": 56.692438667586124 + "points": { + "c1": -62.55607963516584, + "c2": -8.062443168125782, + "c3": 48.60829886466724, + "c4": 18.857774633265315, + "c5": -42.30095857321737, + "c6": 17.67306435368817, + "c7": 56.45739034271775 }, - "vertexSeeds": { - "c1": 11.449054749143182, - "c2": 11.140272873462903, - "c3": 10.483068360621365, - "c4": 11.013067299377557, - "c5": 11.78656942776289, - "c6": 11.883056899023721, - "c7": 11.179322385696123 + "offsets": { + "c1": 19.967637540453072, + "c2": 17.115117891816933, + "c3": 14.262598243180761, + "c4": 11.41007859454462, + "c5": 8.557558945908452, + "c6": 5.70503929727231, + "c7": 2.8525196486361692 }, "rgb": [77, 76, 132] }, @@ -132846,23 +132846,23 @@ "year": 1747, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 31.329272921596633, - "c2": 24.56313448885094, - "c3": 18.040460445479624, - "c4": -24.832671876893922, - "c5": 41.094692214668974, - "c6": -15.765657930430454, - "c7": -1.9270043857329 + "points": { + "c1": 5.893195060278394, + "c2": 29.49064037574977, + "c3": -23.900111180834042, + "c4": -10.076899787273113, + "c5": -22.732349365727938, + "c6": -2.2264667442627513, + "c7": 19.810499853842337 }, - "vertexSeeds": { - "c1": 7.342379773410429, - "c2": 7.259726519628663, - "c3": 6.894160002888449, - "c4": 7.863181099761772, - "c5": 7.741401830386902, - "c6": 7.336821343359593, - "c7": 7.10939218351351 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450768, + "c3": 9.454461396208965, + "c4": 7.563569116967174, + "c5": 5.672676837725384, + "c6": 3.7817845584835803, + "c7": 1.8908922792417902 }, "rgb": [222, 0, 59] }, @@ -132873,23 +132873,23 @@ "year": 1746, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 8.515890862418026, - "c2": 15.830400265505013, - "c3": 21.12510195497598, - "c4": -12.373653828808727, - "c5": 8.617984406846375, - "c6": 10.506145940264311, - "c7": 14.165005621256903 + "points": { + "c1": -8.295777295157794, + "c2": -15.468548150602079, + "c3": -2.6436418371734938, + "c4": -23.34040137445202, + "c5": 1.4692871168778439, + "c6": 6.383258021968906, + "c7": 17.16895382157498 }, - "vertexSeeds": { - "c1": 5.375263577009689, - "c2": 5.618049645294529, - "c3": 5.46113571234092, - "c4": 5.287863297110702, - "c5": 5.109925740566343, - "c6": 5.151560633574951, - "c7": 5.638186012339513 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872392, + "c6": 2.699953767914937, + "c7": 1.3499768839574684 }, "rgb": [238, 201, 159] }, @@ -132900,23 +132900,23 @@ "year": 1747, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 26.559580459520248, - "c2": 6.63798479035956, - "c3": -28.584010884236832, - "c4": -13.821891574453872, - "c5": -23.583119176040118, - "c6": 9.326125234079171, - "c7": -16.69343769819329 + "points": { + "c1": 35.06137130703122, + "c2": 44.157943829818635, + "c3": 10.793375146254988, + "c4": 9.59421498363254, + "c5": -24.46942981908845, + "c6": 44.1258676617026, + "c7": 32.76209774799932 }, - "vertexSeeds": { - "c1": 9.23865780342912, - "c2": 9.594728999115002, - "c3": 8.751368862595758, - "c4": 9.69967552474902, - "c5": 8.724590736935323, - "c6": 9.669314038712905, - "c7": 9.285269701596524 + "offsets": { + "c1": 16.310679611650485, + "c2": 13.980582524271849, + "c3": 11.650485436893199, + "c4": 9.32038834951456, + "c5": 6.9902912621359246, + "c6": 4.660194174757274, + "c7": 2.330097087378637 }, "rgb": [77, 76, 132] }, @@ -132927,23 +132927,23 @@ "year": 1747, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 25.77072950278918, - "c2": -8.012324550605626, - "c3": 18.640886103089834, - "c4": 10.804455705871412, - "c5": -26.80125890742131, - "c6": 1.7958582753732628, - "c7": -24.105718819691845 + "points": { + "c1": 40.24948217743105, + "c2": 16.573316664539313, + "c3": -36.93228923942203, + "c4": 43.75142412224426, + "c5": -34.1527034974565, + "c6": 44.14139569075017, + "c7": -21.001379404868793 }, - "vertexSeeds": { - "c1": 6.1755567278856045, - "c2": 5.993634695672785, - "c3": 5.577381329668173, - "c4": 6.318407392173434, - "c5": 5.531049967150479, - "c6": 6.022703553785078, - "c7": 5.986207007996146 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -132954,23 +132954,23 @@ "year": 1746, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -6.181965447076596, - "c2": -4.006795770403929, - "c3": -4.877055864011464, - "c4": 0.6286492811698707, - "c5": 11.339068870619911, - "c6": 5.612598583995499, - "c7": -5.901178308005001 + "points": { + "c1": 26.277183288211454, + "c2": 31.04158712108034, + "c3": 28.42823384060064, + "c4": 6.231685427133769, + "c5": -3.456576774192335, + "c6": -7.02721798594056, + "c7": -24.92221304137056 }, - "vertexSeeds": { - "c1": 0.20585724045813533, - "c2": 0.20218412243358252, - "c3": 0.21220238965204716, - "c4": 0.19474369998983038, - "c5": 0.19454664885980363, - "c6": 0.20035159391688726, - "c7": 0.1958292599468172 + "offsets": { + "c1": 0.3883495145631068, + "c2": 0.33287101248266315, + "c3": 0.2773925104022195, + "c4": 0.2219140083217752, + "c5": 0.16643550624133158, + "c6": 0.11095700416088795, + "c7": 0.05547850208044363 }, "rgb": [77, 76, 132] }, @@ -132981,23 +132981,23 @@ "year": 1746, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 26.666767168892918, - "c2": 18.725494367697543, - "c3": 16.222724966392448, - "c4": 22.299849110410925, - "c5": 18.575158091672698, - "c6": -24.78472747772017, - "c7": -1.156534920714762 + "points": { + "c1": 27.25593067430173, + "c2": -14.05116972011854, + "c3": 3.406007036234165, + "c4": 6.79028848284679, + "c5": -25.5104192597052, + "c6": -12.307018666879898, + "c7": -19.858884523095448 }, - "vertexSeeds": { - "c1": 7.699239387340601, - "c2": 7.073059098543863, - "c3": 7.0001592772817425, - "c4": 7.7310162272519065, - "c5": 7.59615217982415, - "c6": 7.716346217151574, - "c7": 7.7780759317695285 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.2621359223301, + "c3": 9.385113268608416, + "c4": 7.508090614886723, + "c5": 5.6310679611650425, + "c6": 3.7540453074433615, + "c7": 1.8770226537216808 }, "rgb": [77, 76, 132] }, @@ -133008,23 +133008,23 @@ "year": 1747, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 27.932577721539815, - "c2": 31.01194497043133, - "c3": -8.636888709729178, - "c4": 6.085202305305195, - "c5": -17.22750369399688, - "c6": 23.52355723861077, - "c7": 10.189366739115407 + "points": { + "c1": -20.221959293036512, + "c2": -37.80602388829581, + "c3": 6.4946816299314065, + "c4": -35.48814339252902, + "c5": 8.525862968151422, + "c6": 2.7225248754607776, + "c7": -12.025379770249465 }, - "vertexSeeds": { - "c1": 1.7136256443615774, - "c2": 1.8595669254128246, - "c3": 1.7065083256982263, - "c4": 1.791729052298974, - "c5": 1.7761962701676013, - "c6": 1.7346489904008218, - "c7": 1.8276380779672474 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.690707350901526, + "c3": 2.2422561257512714, + "c4": 1.793804900601017, + "c5": 1.345353675450763, + "c6": 0.8969024503005085, + "c7": 0.44845122515025426 }, "rgb": [77, 76, 132] }, @@ -133035,23 +133035,23 @@ "year": 1747, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": 27.230749408350363, - "c2": -26.311276972730813, - "c3": 8.946868748679464, - "c4": -43.949557221430126, - "c5": -22.301870329075275, - "c6": 41.45125916441137, - "c7": 4.171911443330529 + "points": { + "c1": 4.279283423510421, + "c2": 36.82087706144891, + "c3": 19.723973629047947, + "c4": -29.284243290294174, + "c5": -3.158831447689444, + "c6": -20.82868287994146, + "c7": 20.461127395439803 }, - "vertexSeeds": { - "c1": 6.433643564149526, - "c2": 6.32574038515326, - "c3": 6.474354570146514, - "c4": 6.35322131272639, - "c5": 6.539213564549149, - "c6": 6.696631620802341, - "c7": 6.587531212217112 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117895, + "c3": 8.113730929264916, + "c4": 6.490984743411916, + "c5": 4.868238557558937, + "c6": 3.245492371705958, + "c7": 1.622746185852979 }, "rgb": [238, 201, 159] }, @@ -133062,23 +133062,23 @@ "year": 1747, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 2.7460894855465128, - "c2": 23.33238405883524, - "c3": 6.368187543421641, - "c4": -31.00636948805232, - "c5": 36.20618808649189, - "c6": 19.857277423024776, - "c7": -15.427172475911824 + "points": { + "c1": 32.86249829426515, + "c2": -22.32721955749399, + "c3": 5.249888135176249, + "c4": -5.061978529663669, + "c5": -18.69178641528101, + "c6": -19.75496514662893, + "c7": -21.649495893289757 }, - "vertexSeeds": { - "c1": 4.632996620099665, - "c2": 4.4991135457591165, - "c3": 5.120063376952037, - "c4": 4.468078450008014, - "c5": 5.0034215164768305, - "c6": 5.061077128110225, - "c7": 4.698173427222494 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819698, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.243643088303281 }, "rgb": [77, 76, 132] }, @@ -133089,23 +133089,23 @@ "year": 1747, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 4.421496444963431, - "c2": 24.979913209205087, - "c3": 13.205033956486723, - "c4": 19.121693420190837, - "c5": 13.288271755400622, - "c6": -18.6812710503708, - "c7": -5.922477001503548 + "points": { + "c1": -21.71346264343582, + "c2": -27.050658990201494, + "c3": -12.972887265055192, + "c4": 32.05647734828449, + "c5": 17.709150235143284, + "c6": 28.273008668523644, + "c7": -24.024692920824098 }, - "vertexSeeds": { - "c1": 5.038677806772656, - "c2": 5.678566218144018, - "c3": 5.087144760406997, - "c4": 5.699182535549754, - "c5": 5.256854083119864, - "c6": 5.036296443374749, - "c7": 5.248538864812724 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026357, + "c3": 6.911696717521956, + "c4": 5.529357374017567, + "c5": 4.147018030513179, + "c6": 2.7646786870087774, + "c7": 1.3823393435043887 }, "rgb": [58, 15, 49] }, @@ -133116,23 +133116,23 @@ "year": 1747, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -34.319189905582725, - "c2": -1.8125645241302735, - "c3": -25.542795036581502, - "c4": 26.66051739583385, - "c5": -36.51670084957124, - "c6": -0.03182231575124206, - "c7": -21.766682192154942 + "points": { + "c1": -10.240421189831231, + "c2": 33.56726539465011, + "c3": -30.916582801170648, + "c4": 14.070707054344162, + "c5": -7.261291421780712, + "c6": -9.087337349734987, + "c7": 20.830408081571548 }, - "vertexSeeds": { - "c1": 0.6744242008810953, - "c2": 0.7054295482840678, - "c3": 0.6445972329934821, - "c4": 0.6562825650870041, - "c5": 0.6513413181030473, - "c6": 0.6838079125574817, - "c7": 0.6440443043225574 + "offsets": { + "c1": 1.2297734627831716, + "c2": 1.0540915395284325, + "c3": 0.8784096162736934, + "c4": 0.7027276930189562, + "c5": 0.5270457697642171, + "c6": 0.3513638465094781, + "c7": 0.17568192325473905 }, "rgb": [222, 0, 59] }, @@ -133143,23 +133143,23 @@ "year": 1747, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": 36.1942726308556, - "c2": 21.03734367373938, - "c3": 17.386594714252332, - "c4": -48.174561977204874, - "c5": -25.996441478422675, - "c6": 0.5931369451358393, - "c7": -8.188441936856762 + "points": { + "c1": 19.763428869473138, + "c2": 14.309152999576504, + "c3": 12.010064807733151, + "c4": 36.685187048338456, + "c5": 17.90082186129755, + "c6": -2.5157560719848036, + "c7": -12.379320366313529 }, - "vertexSeeds": { - "c1": 12.827885317504043, - "c2": 13.478004542018283, - "c3": 13.776056064926664, - "c4": 12.949555994390904, - "c5": 12.900249904290783, - "c6": 12.131652706428493, - "c7": 12.710803343922361 + "offsets": { + "c1": 23.042071197411005, + "c2": 19.75034674063801, + "c3": 16.45862228386499, + "c4": 13.166897827091999, + "c5": 9.875173370319006, + "c6": 6.583448913546014, + "c7": 3.2917244567729926 }, "rgb": [86, 146, 138] }, @@ -133170,23 +133170,23 @@ "year": 1747, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 21.241230153046118, - "c2": 26.510312016000043, - "c3": -6.049623259773146, - "c4": 29.262981457399462, - "c5": -15.576807099000042, - "c6": -1.6421154249497434, - "c7": 1.8368678541695829 + "points": { + "c1": -25.322260241496508, + "c2": 9.373867656296895, + "c3": 32.69091003019376, + "c4": 15.838501092920687, + "c5": 25.496703366978124, + "c6": -23.989374613482077, + "c7": -37.69851027178573 }, - "vertexSeeds": { - "c1": 5.761915199668693, - "c2": 6.148703574979511, - "c3": 6.133937364541433, - "c4": 6.199099020015178, - "c5": 5.995457797791532, - "c6": 6.20817733347447, - "c7": 5.7508943671930055 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072123, + "c3": 7.5127138233934385, + "c4": 6.01017105871474, + "c5": 4.5076282940360555, + "c6": 3.00508552935737, + "c7": 1.502542764678685 }, "rgb": [238, 201, 159] }, @@ -133197,23 +133197,23 @@ "year": 1747, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -12.992145863603438, - "c2": -17.759615853603748, - "c3": 8.92173878164343, - "c4": -5.8248293166478575, - "c5": -5.735838178623045, - "c6": -17.274128308833752, - "c7": -27.434570991833887 + "points": { + "c1": -15.800180135895895, + "c2": 6.725387537963048, + "c3": -20.63600777640073, + "c4": -25.11420745706788, + "c5": -24.307505570604896, + "c6": 25.687391359088732, + "c7": -6.841948890160648 }, - "vertexSeeds": { - "c1": 4.340019055113912, - "c2": 4.729528492884894, - "c3": 4.727759964950918, - "c4": 4.574461866911992, - "c5": 4.594190576143873, - "c6": 4.863237290982279, - "c7": 4.976113857627047 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -133224,23 +133224,23 @@ "year": 1747, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": -28.230969719119976, - "c2": -22.523158188360952, - "c3": -26.13364009087239, - "c4": -5.029853786937984, - "c5": -15.109005589144644, - "c6": -23.291665501839645, - "c7": -34.82942632368156 + "points": { + "c1": -42.6076875670199, + "c2": -15.92723390132059, + "c3": 26.10740422971152, + "c4": 7.846910537401008, + "c5": 7.500504945523602, + "c6": -44.546904268087154, + "c7": 18.753459797423616 }, - "vertexSeeds": { - "c1": 5.641738527281494, - "c2": 5.834746657758878, - "c3": 6.217395046143972, - "c4": 5.814466254641718, - "c5": 6.370767690603605, - "c6": 5.855415805661755, - "c7": 6.227460607100242 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635228, + "c3": 7.836338418862691, + "c4": 6.269070735090152, + "c5": 4.701803051317614, + "c6": 3.134535367545076, + "c7": 1.567267683772538 }, "rgb": [77, 76, 132] }, @@ -133251,23 +133251,23 @@ "year": 1747, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -32.19291630084162, - "c2": -29.626865522537962, - "c3": -29.51730490654103, - "c4": -8.64173527049702, - "c5": -10.18501826380015, - "c6": -15.196384222832592, - "c7": -2.4305492006221456 + "points": { + "c1": -28.746214446346855, + "c2": 1.3723766915739262, + "c3": -3.021616592435578, + "c4": -39.470057408472144, + "c5": 13.611757914254518, + "c6": -40.05657694000229, + "c7": 7.373081917902461 }, - "vertexSeeds": { - "c1": 4.074500552224693, - "c2": 4.265820051181904, - "c3": 4.160972228934353, - "c4": 4.8398329073523385, - "c5": 4.3142196731454066, - "c6": 4.89075304563218, - "c7": 4.234518876503126 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216365, + "c3": 5.871474803513638, + "c4": 4.69717984281091, + "c5": 3.5228848821081824, + "c6": 2.348589921405455, + "c7": 1.1742949607027275 }, "rgb": [86, 146, 138] }, @@ -133278,23 +133278,23 @@ "year": 1747, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 17.247034138805677, - "c2": 24.48217853807026, - "c3": 15.190873031680407, - "c4": 19.676516939309867, - "c5": 0.6567202730985606, - "c6": 22.45992878104369, - "c7": -11.854250813343238 + "points": { + "c1": 3.673377662209031, + "c2": 18.726251293723795, + "c3": 13.887965494245162, + "c4": -12.705366603719305, + "c5": 12.333096160358867, + "c6": 9.744337367924661, + "c7": -18.09261806418373 }, - "vertexSeeds": { - "c1": 7.816403138524484, - "c2": 8.270558068168816, - "c3": 9.352460973696546, - "c4": 9.284818721139366, - "c5": 9.670472973649773, - "c6": 8.614138132992661, - "c7": 8.301984900963463 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070736, + "c3": 11.534905224225614, + "c4": 9.227924179380494, + "c5": 6.9209431345353725, + "c6": 4.6139620896902525, + "c7": 2.3069810448451307 }, "rgb": [238, 201, 159] }, @@ -133305,23 +133305,23 @@ "year": 1747, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 27.626419906904943, - "c2": 19.641984194252792, - "c3": -23.607998563818796, - "c4": 22.934900810246596, - "c5": -5.506505483157365, - "c6": -10.654968795844045, - "c7": 2.791719829157742 + "points": { + "c1": -10.686537614402976, + "c2": -11.558574528312135, + "c3": -11.713728709794772, + "c4": -2.0025954488438167, + "c5": -26.465131547113913, + "c6": -24.0988215417309, + "c7": 5.004550238862755 }, - "vertexSeeds": { - "c1": 7.02532439824961, - "c2": 7.0665938641963395, - "c3": 7.105377020103848, - "c4": 6.4615810538816545, - "c5": 6.956028512488919, - "c6": 6.753171131025673, - "c7": 7.066135365473297 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244099, + "c3": 8.760980120203422, + "c4": 7.008784096162734, + "c5": 5.256588072122057, + "c6": 3.504392048081367, + "c7": 1.752196024040677 }, "rgb": [238, 201, 159] }, @@ -133332,23 +133332,23 @@ "year": 1747, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 22.0766597937725, - "c2": 16.74150519542527, - "c3": -32.82193500292046, - "c4": -31.83664274652206, - "c5": 17.210858193112045, - "c6": -6.178753768665459, - "c7": 0.4069281414630552 + "points": { + "c1": -1.1696313932086397, + "c2": 6.812935936195544, + "c3": 7.693288613283414, + "c4": 7.849283521838522, + "c5": -34.129365367000574, + "c6": -13.079413302454181, + "c7": -21.901714484784524 }, - "vertexSeeds": { - "c1": 5.577805221525741, - "c2": 6.724924170899184, - "c3": 6.677293008805999, - "c4": 6.1108773661966085, - "c5": 6.504610639202022, - "c6": 6.1650378691238865, - "c7": 5.745392234779385 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [86, 146, 138] }, @@ -133359,23 +133359,23 @@ "year": 1747, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -4.661193200909906, - "c2": 11.159661566038416, - "c3": -1.911963067205214, - "c4": 3.5155648270066777, - "c5": -27.20897693629252, - "c6": -8.589441260468604, - "c7": -11.402024050756207 + "points": { + "c1": 6.69614710283642, + "c2": 13.563398296948876, + "c3": -17.73830388363016, + "c4": -0.20510972322818333, + "c5": -29.321092126487137, + "c6": 18.976892000483858, + "c7": 32.646949221207606 }, - "vertexSeeds": { - "c1": 5.604691123061545, - "c2": 5.620730515353796, - "c3": 5.267041718248662, - "c4": 5.00193781555021, - "c5": 4.995864478669951, - "c6": 4.952688519511088, - "c7": 5.0885714978590695 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387893, + "c4": 5.455386037910311, + "c5": 4.0915395284327305, + "c6": 2.7276930189551494, + "c7": 1.3638465094775811 }, "rgb": [58, 15, 49] }, @@ -133386,23 +133386,23 @@ "year": 1747, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 20.703694163607516, - "c2": -18.841347046272755, - "c3": -27.592879813522988, - "c4": 14.717323834659325, - "c5": -16.829899352677245, - "c6": 9.706192837317921, - "c7": 6.963591209315091 + "points": { + "c1": -2.9091706128544317, + "c2": -14.264824504355907, + "c3": 0.17888475274501303, + "c4": 19.304007296490425, + "c5": 15.863965578123022, + "c6": 32.67724671454097, + "c7": -38.02970862028398 }, - "vertexSeeds": { - "c1": 3.5198898703063053, - "c2": 3.368680092195319, - "c3": 3.4964805093751656, - "c4": 3.5919103680157343, - "c5": 3.390126229966633, - "c6": 3.3069107032476914, - "c7": 3.7715676214479306 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084604, + "c3": 4.646324549237169, + "c4": 3.7170596393897397, + "c5": 2.787794729542305, + "c6": 1.8585298196948699, + "c7": 0.9292649098474349 }, "rgb": [58, 15, 49] }, @@ -133413,23 +133413,23 @@ "year": 1747, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 38.04933757285538, - "c2": -12.405228552968072, - "c3": 15.87202320781359, - "c4": 37.784098896786034, - "c5": 24.265911656872596, - "c6": 3.4713671895739893, - "c7": 22.04767502775283 + "points": { + "c1": 18.31335698833137, + "c2": 2.172263281672315, + "c3": -4.066278907214638, + "c4": 6.830800079025465, + "c5": -36.24808168292954, + "c6": 16.607618411796153, + "c7": -12.405022964339594 }, - "vertexSeeds": { - "c1": 7.360552425400299, - "c2": 7.575530344282192, - "c3": 8.035822310554632, - "c4": 7.632057800281037, - "c5": 7.6240165142060885, - "c6": 7.534872978750017, - "c7": 8.05077524259102 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933424, + "c3": 9.731853906611189, + "c4": 7.78548312528895, + "c5": 5.839112343966712, + "c6": 3.892741562644475, + "c7": 1.9463707813222375 }, "rgb": [58, 15, 49] }, @@ -133440,23 +133440,23 @@ "year": 1747, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": 36.51031648598332, - "c2": 49.49507047838264, - "c3": 28.975810294099524, - "c4": 21.478288631420817, - "c5": -5.648625928037767, - "c6": 5.980478104092086, - "c7": 23.489393679578193 + "points": { + "c1": -11.965346854493148, + "c2": 6.0023603500448885, + "c3": 31.594658808826658, + "c4": 47.502611908602454, + "c5": 35.53240082374739, + "c6": -36.11589932092672, + "c7": 1.1186365603869461 }, - "vertexSeeds": { - "c1": 6.058097596893034, - "c2": 6.510393153922822, - "c3": 6.207441801526907, - "c4": 6.674155243554737, - "c5": 6.477810160537693, - "c6": 6.1889463873053225, - "c7": 5.971782005783491 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399444, + "c3": 8.275543226999538, + "c4": 6.620434581599629, + "c5": 4.965325936199722, + "c6": 3.3102172907998146, + "c7": 1.6551086453999073 }, "rgb": [86, 146, 138] }, @@ -133467,23 +133467,23 @@ "year": 1747, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 26.877043958007448, - "c2": 33.479799908851405, - "c3": -19.826465361431275, - "c4": 14.116332674358446, - "c5": -12.746915702490394, - "c6": -21.03662585216222, - "c7": -37.548382650926115 + "points": { + "c1": 32.37013452755167, + "c2": -14.905324857281482, + "c3": -8.051022120651623, + "c4": -0.5997612412765463, + "c5": -17.25322224469414, + "c6": -42.20699756757422, + "c7": 1.567547136320897 }, - "vertexSeeds": { - "c1": 4.191586138055427, - "c2": 4.094732463793751, - "c3": 4.266453203545603, - "c4": 4.137692644233858, - "c5": 4.274706817977124, - "c6": 4.212345539023084, - "c7": 4.262752871993221 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [58, 15, 49] }, @@ -133494,23 +133494,23 @@ "year": 1748, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -18.773542853793835, - "c2": 30.86373412863039, - "c3": -9.141690634590553, - "c4": -18.437021911507564, - "c5": 42.595898631300635, - "c6": -51.53273036856967, - "c7": 11.883405904038518 + "points": { + "c1": -35.989754698478734, + "c2": -53.09863446353465, + "c3": -27.7281793916314, + "c4": 54.081576163348736, + "c5": -46.609349607978416, + "c6": -9.361155660569018, + "c7": 50.24876071379554 }, - "vertexSeeds": { - "c1": 11.830490655010902, - "c2": 11.686190489173837, - "c3": 11.660191852517519, - "c4": 10.983726664730481, - "c5": 11.739694221805111, - "c6": 10.960868270941193, - "c7": 11.640013746758255 + "offsets": { + "c1": 20.22653721682848, + "c2": 17.33703190013869, + "c3": 14.447526583448925, + "c4": 11.558021266759134, + "c5": 8.668515950069345, + "c6": 5.779010633379554, + "c7": 2.8895053166897906 }, "rgb": [58, 15, 49] }, @@ -133521,23 +133521,23 @@ "year": 1747, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": 18.13859402666904, - "c2": -29.550772916382815, - "c3": -37.72380315060653, - "c4": 29.17248066598362, - "c5": 27.75056630812376, - "c6": -17.966138540938807, - "c7": 9.422735893922237 + "points": { + "c1": -0.4421675889227288, + "c2": -45.18177385260609, + "c3": 1.7770671811607528, + "c4": 37.09531673184534, + "c5": 40.96686634600557, + "c6": 26.688059466788737, + "c7": -39.87925874616066 }, - "vertexSeeds": { - "c1": 8.567854546487228, - "c2": 8.064736929005385, - "c3": 7.910458006603964, - "c4": 8.506080394200204, - "c5": 8.428990426762635, - "c6": 7.991741061456084, - "c7": 8.518709353238586 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.288488210818306, + "c3": 10.24040684234859, + "c4": 8.19232547387887, + "c5": 6.144244105409153, + "c6": 4.096162736939435, + "c7": 2.0480813684697177 }, "rgb": [58, 15, 49] }, @@ -133548,23 +133548,23 @@ "year": 1748, "resistanceReported": false, "duration": 69206400, - "curveSeeds": { - "c1": -13.38266660164166, - "c2": 19.92513857351676, - "c3": 80.14237480183088, - "c4": -46.723703817604395, - "c5": -20.284752340049707, - "c6": 71.51817743295847, - "c7": 84.69865054839316 + "points": { + "c1": -61.81875581444959, + "c2": -37.433688038719026, + "c3": 3.5673204026732606, + "c4": 70.87459730701609, + "c5": 4.226687386309308, + "c6": -54.24009427197992, + "c7": -73.0087510836866 }, - "vertexSeeds": { - "c1": 4.010682015065248, - "c2": 3.42956725277981, - "c3": 4.087063297657798, - "c4": 3.558770817474726, - "c5": 4.674379920888031, - "c6": 3.5351913102591443, - "c7": 4.407293378064822 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216365, + "c3": 5.871474803513637, + "c4": 4.697179842810912, + "c5": 3.5228848821081837, + "c6": 2.348589921405456, + "c7": 1.174294960702728 }, "rgb": [77, 76, 132] }, @@ -133575,23 +133575,23 @@ "year": 1747, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -32.846070292817295, - "c2": 31.107033317277434, - "c3": -27.27529756947298, - "c4": 10.499454776745068, - "c5": -13.375802959686286, - "c6": -1.5140896966789725, - "c7": 37.24258804024824 + "points": { + "c1": -36.42488214402062, + "c2": 18.950045389632365, + "c3": 18.48350936013167, + "c4": 38.47177041125449, + "c5": -22.201717284073883, + "c6": 35.38662353230411, + "c7": -17.841722187205544 }, - "vertexSeeds": { - "c1": 9.387672364564155, - "c2": 8.710329856614601, - "c3": 8.666303905661668, - "c4": 8.664509621873966, - "c5": 8.834804871099372, - "c6": 9.078796157410249, - "c7": 8.347272546392958 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507635, + "c3": 11.211280628756356, + "c4": 8.96902450300509, + "c5": 6.72676837725381, + "c6": 4.484512251502545, + "c7": 2.2422561257512785 }, "rgb": [77, 76, 132] }, @@ -133602,23 +133602,23 @@ "year": 1747, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -31.41180911342047, - "c2": -4.513388101762814, - "c3": 18.797283503894924, - "c4": 12.858881160818974, - "c5": -6.497641939438381, - "c6": -1.4190934729397569, - "c7": -36.36358750072782 + "points": { + "c1": -20.123043310581075, + "c2": 7.173916402969397, + "c3": 28.918022502759555, + "c4": -6.1910503259331335, + "c5": 20.13014029537483, + "c6": 24.854730940125208, + "c7": 1.0919735054854058 }, - "vertexSeeds": { - "c1": 9.409445396682704, - "c2": 9.600074510535165, - "c3": 9.451551502788288, - "c4": 10.287028063389586, - "c5": 9.25860821996067, - "c6": 9.046588783538226, - "c7": 9.100859279869873 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.034674063800274, + "c3": 12.52889505316689, + "c4": 10.02311604253352, + "c5": 7.517337031900137, + "c6": 5.011558021266767, + "c7": 2.5057790106333835 }, "rgb": [86, 146, 138] }, @@ -133629,23 +133629,23 @@ "year": 1747, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -9.589750536435957, - "c2": 0.9658760748350517, - "c3": 1.1986586945267383, - "c4": 3.4012498054707585, - "c5": 10.48241633516994, - "c6": 1.2409725037620198, - "c7": 18.403348873002837 + "points": { + "c1": -11.453101450847683, + "c2": -2.9891302424378203, + "c3": -11.48816277196459, + "c4": 25.72704837469599, + "c5": -5.327518708222414, + "c6": 6.608295386539446, + "c7": 13.709770432946748 }, - "vertexSeeds": { - "c1": 3.626257013631419, - "c2": 3.618642733738043, - "c3": 3.850416124471114, - "c4": 3.563429672624153, - "c5": 3.5095858269677622, - "c6": 3.8686220061962246, - "c7": 3.840266590516398 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124824, + "c3": 4.66944059177069, + "c4": 3.7355524734165493, + "c5": 2.801664355062415, + "c6": 1.8677762367082746, + "c7": 0.9338881183541341 }, "rgb": [58, 15, 49] }, @@ -133656,23 +133656,23 @@ "year": 1747, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": 2.602145570447881, - "c2": 5.70396689304674, - "c3": 0.4186006368559596, - "c4": 5.240622386800105, - "c5": -1.670747212653719, - "c6": -7.320913140945727, - "c7": -8.083328612382626 + "points": { + "c1": -2.466242189292137, + "c2": 16.639775236903027, + "c3": -6.945521607737703, + "c4": 1.9607199734554968, + "c5": -14.284168410132033, + "c6": -9.356630024675272, + "c7": 5.779948172691686 }, - "vertexSeeds": { - "c1": 8.014631412880213, - "c2": 8.197755665070833, - "c3": 8.164944315613344, - "c4": 8.411009129836838, - "c5": 8.805556492208355, - "c6": 8.81508748636331, - "c7": 8.340906641491381 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.89875173370319, + "c3": 10.748959778085991, + "c4": 8.599167822468793, + "c5": 6.449375866851595, + "c6": 4.2995839112343965, + "c7": 2.1497919556171983 }, "rgb": [86, 146, 138] }, @@ -133683,23 +133683,23 @@ "year": 1747, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 8.006137168067788, - "c2": 13.034959767331713, - "c3": -33.90813214801449, - "c4": -3.6253040289275447, - "c5": 27.091193453718297, - "c6": -16.721964026740878, - "c7": -19.9943865753239 + "points": { + "c1": -17.490806484332452, + "c2": -16.1127174402538, + "c3": 12.208161696297147, + "c4": 35.88720391636012, + "c5": 28.23571272761211, + "c6": -0.7801152917152123, + "c7": -2.232857048196614 }, - "vertexSeeds": { - "c1": 13.568405116900793, - "c2": 13.096085465528825, - "c3": 13.80935944568189, - "c4": 12.311344688283748, - "c5": 13.857919016549507, - "c6": 12.46717365640321, - "c7": 14.011525517660484 + "offsets": { + "c1": 25.210355987055017, + "c2": 21.608876560332874, + "c3": 18.007397133610734, + "c4": 14.40591770688857, + "c5": 10.804438280166428, + "c6": 7.202958853444285, + "c7": 3.6014794267221424 }, "rgb": [238, 201, 159] }, @@ -133710,23 +133710,23 @@ "year": 1747, "resistanceReported": false, "duration": 3628800, - "curveSeeds": { - "c1": 2.1562662966675816, - "c2": 11.35172883591212, - "c3": -9.002295740631638, - "c4": -4.5845638647945215, - "c5": -2.521032451659698, - "c6": 13.839340567370275, - "c7": 12.23077275961921 + "points": { + "c1": -1.2163905247861866, + "c2": 2.527747215770262, + "c3": -12.400616914826296, + "c4": 4.051563690922755, + "c5": -0.1995614070962013, + "c6": -2.048640485327418, + "c7": -11.946624105455832 }, - "vertexSeeds": { - "c1": 4.830315819497148, - "c2": 4.635530209807848, - "c3": 4.798859787445267, - "c4": 4.757718894164345, - "c5": 4.545605129829431, - "c6": 4.506305114175097, - "c7": 4.853669333864201 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176142, + "c3": 5.8483587609801235, + "c4": 4.678687008784097, + "c5": 3.509015256588071, + "c6": 2.3393435043920454, + "c7": 1.169671752196026 }, "rgb": [222, 0, 59] }, @@ -133737,23 +133737,23 @@ "year": 1747, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -22.293090807093076, - "c2": -7.3165849039244435, - "c3": 16.76157304538262, - "c4": 36.150947804325995, - "c5": -26.214432695534292, - "c6": -37.90725480498624, - "c7": 1.671802262679961 + "points": { + "c1": 33.50867101927693, + "c2": -12.323762538651813, + "c3": 11.93380495185427, + "c4": 26.001085784156643, + "c5": 7.539949549491489, + "c6": 4.8630585096588135, + "c7": 20.049117139342634 }, - "vertexSeeds": { - "c1": 5.5587202031528395, - "c2": 5.554833228443546, - "c3": 5.5236761146152205, - "c4": 5.704243876150825, - "c5": 5.52935984979008, - "c6": 5.398632413126895, - "c7": 6.649566983492369 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957002, + "c3": 8.021266759130839, + "c4": 6.417013407304666, + "c5": 4.812760055478504, + "c6": 3.208506703652333, + "c7": 1.604253351826171 }, "rgb": [58, 15, 49] }, @@ -133764,23 +133764,23 @@ "year": 1747, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -17.598324037165263, - "c2": 16.560820039118745, - "c3": -31.385994962908587, - "c4": 32.10048755146184, - "c5": -16.57446686172708, - "c6": -21.6550136444029, - "c7": 5.824371258459571 + "points": { + "c1": 33.862985234279236, + "c2": -5.7752505808427514, + "c3": 0.7815751599004699, + "c4": -21.896331879432232, + "c5": -2.159070774101423, + "c6": -3.97065650674881, + "c7": -30.10968392392918 }, - "vertexSeeds": { - "c1": 12.121501741383076, - "c2": 12.09489467967749, - "c3": 12.359471984595016, - "c4": 11.387626523655099, - "c5": 11.68598225199905, - "c6": 12.546518586847574, - "c7": 11.062363671398431 + "offsets": { + "c1": 21.262135922330096, + "c2": 18.22468793342579, + "c3": 15.187239944521489, + "c4": 12.149791955617186, + "c5": 9.112343966712883, + "c6": 6.074895977808579, + "c7": 3.0374479889042756 }, "rgb": [58, 15, 49] }, @@ -133791,23 +133791,23 @@ "year": 1748, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": 35.68554268442805, - "c2": -42.795329764266455, - "c3": -36.260250342796866, - "c4": 44.00311242274373, - "c5": -42.64661413398101, - "c6": 39.85056276572386, - "c7": 49.60298955628473 + "points": { + "c1": 33.838062835495315, + "c2": 55.369888585042936, + "c3": 12.509864178303978, + "c4": 4.571172936037996, + "c5": -2.023893465235439, + "c6": 14.594601720712, + "c7": -27.69185941772198 }, - "vertexSeeds": { - "c1": 11.236559499965702, - "c2": 10.39809595116049, - "c3": 10.446294042330681, - "c4": 10.859717432766857, - "c5": 10.595772704764908, - "c6": 11.176271551059777, - "c7": 11.318745587420068 + "offsets": { + "c1": 19.902912621359224, + "c2": 17.059639389736482, + "c3": 14.216366158113738, + "c4": 11.373092926490969, + "c5": 8.529819694868227, + "c6": 5.6865464632454845, + "c7": 2.8432732316227423 }, "rgb": [86, 146, 138] }, @@ -133818,23 +133818,23 @@ "year": 1747, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -28.349356575495246, - "c2": 2.3359390403474904, - "c3": 22.453347981686086, - "c4": 34.23242972599438, - "c5": -24.125999825007277, - "c6": 24.261840444461612, - "c7": -24.89574031238306 + "points": { + "c1": -19.275760812559028, + "c2": -14.674179359788152, + "c3": 17.691170315708007, + "c4": -10.920220544622136, + "c5": 19.77748633609255, + "c6": 30.261056478073357, + "c7": -15.306602783516166 }, - "vertexSeeds": { - "c1": 4.336108056703361, - "c2": 3.977528869750495, - "c3": 4.151540288940286, - "c4": 4.382844159291615, - "c5": 4.0815953174499535, - "c6": 4.398649644927998, - "c7": 4.2784298185554555 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331483, + "c3": 5.362921867776235, + "c4": 4.290337494220993, + "c5": 3.2177531206657446, + "c6": 2.1451687471104965, + "c7": 1.0725843735552483 }, "rgb": [77, 76, 132] }, @@ -133845,23 +133845,23 @@ "year": 1748, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -1.0110942075924072, - "c2": 4.637644399849805, - "c3": -16.28421868734956, - "c4": 41.15676202156938, - "c5": 14.19954782401554, - "c6": -18.80722561420655, - "c7": 14.938738059907905 + "points": { + "c1": 44.56245162444641, + "c2": 26.33537175816855, + "c3": 20.233309780529467, + "c4": 10.239092372336046, + "c5": 43.653381668571285, + "c6": 33.01477832526125, + "c7": -27.753380610695135 }, - "vertexSeeds": { - "c1": 8.619855492295764, - "c2": 8.684314878454105, - "c3": 8.054781570214038, - "c4": 7.776841671151197, - "c5": 8.818974255387348, - "c6": 8.841735970963633, - "c7": 8.31262709098967 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502078, + "c3": 10.633379565418409, + "c4": 8.506703652334725, + "c5": 6.380027739251039, + "c6": 4.253351826167354, + "c7": 2.1266759130836843 }, "rgb": [58, 15, 49] }, @@ -133872,23 +133872,23 @@ "year": 1748, "resistanceReported": false, "duration": 48124800, - "curveSeeds": { - "c1": 2.816400415984276, - "c2": 38.537798301402006, - "c3": -21.26842218526339, - "c4": -0.4545188005022993, - "c5": -50.39378002405046, - "c6": -43.66598783912774, - "c7": 2.793344455329887 + "points": { + "c1": -25.207057618807198, + "c2": -61.336271182513286, + "c3": -13.479513857615487, + "c4": 33.75622334444985, + "c5": 56.33566271787767, + "c6": 14.54888506736603, + "c7": -22.618336341379056 }, - "vertexSeeds": { - "c1": 5.978639873602412, - "c2": 6.1626498486532615, - "c3": 6.273889167367153, - "c4": 5.9865035459373015, - "c5": 6.177812474561149, - "c6": 6.125699646904707, - "c7": 6.024557079135435 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192775, + "c3": 7.582061950993993, + "c4": 6.065649560795184, + "c5": 4.549237170596402, + "c6": 3.032824780397592, + "c7": 1.5164123901988096 }, "rgb": [58, 15, 49] }, @@ -133899,23 +133899,23 @@ "year": 1747, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -27.462681386664876, - "c2": 7.071411606489512, - "c3": 4.557239471400798, - "c4": 11.488101683795144, - "c5": -7.5006202452032795, - "c6": 23.30948288512444, - "c7": -21.789942474949036 + "points": { + "c1": 40.37249054881022, + "c2": -19.960518736664685, + "c3": 29.73881224873375, + "c4": -14.697672058866637, + "c5": -22.566748444848688, + "c6": -15.622627629344255, + "c7": -0.042635054199266165 }, - "vertexSeeds": { - "c1": 5.533177834976234, - "c2": 5.572213805540736, - "c3": 5.324681557091945, - "c4": 5.301271490364149, - "c5": 5.3202161888904165, - "c6": 5.627029947534208, - "c7": 5.343247549568706 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744799, + "c3": 6.749884419787333, + "c4": 5.399907535829866, + "c5": 4.049930651872399, + "c6": 2.699953767914933, + "c7": 1.3499768839574664 }, "rgb": [222, 0, 59] }, @@ -133926,23 +133926,23 @@ "year": 1748, "resistanceReported": false, "duration": 50716800, - "curveSeeds": { - "c1": -20.171988550428303, - "c2": 55.513364906309846, - "c3": 4.53424340674907, - "c4": -6.247766776623067, - "c5": -14.589436601964131, - "c6": -45.83474104825885, - "c7": 59.54567225233721 + "points": { + "c1": 31.25764552789559, + "c2": -19.26949570190766, + "c3": 9.358453806478238, + "c4": -52.150869360289775, + "c5": 7.651164862946359, + "c6": 25.27395191266575, + "c7": 48.331479278361044 }, - "vertexSeeds": { - "c1": 5.979218266484306, - "c2": 5.810311584349005, - "c3": 5.912735472997487, - "c4": 5.667434375180173, - "c5": 5.68491490606161, - "c6": 5.725431214936622, - "c7": 5.825551182906595 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549235, + "c3": 7.212205270457697, + "c4": 5.769764216366157, + "c5": 4.3273231622746176, + "c6": 2.8848821081830787, + "c7": 1.4424410540915393 }, "rgb": [77, 76, 132] }, @@ -133953,23 +133953,23 @@ "year": 1748, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -42.105222888882096, - "c2": 47.26022325696575, - "c3": -38.40631896678463, - "c4": -3.434654571263586, - "c5": 0.4274045494212828, - "c6": -48.659834556041325, - "c7": -40.19614954830972 + "points": { + "c1": 5.216019427434503, + "c2": 25.361908197428356, + "c3": -45.33667945412219, + "c4": 48.567619039608594, + "c5": -27.833562906664678, + "c6": -50.92106965455204, + "c7": 7.415294726398024 }, - "vertexSeeds": { - "c1": 6.112886566850497, - "c2": 5.8253905303395195, - "c3": 6.170665119289131, - "c4": 6.012899753111669, - "c5": 5.861892098803548, - "c6": 6.049146486638352, - "c7": 5.920572557969704 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152576, + "c3": 7.558945908460468, + "c4": 6.0471567267683835, + "c5": 4.5353675450762765, + "c6": 3.0235783633841917, + "c7": 1.5117891816921072 }, "rgb": [238, 201, 159] }, @@ -133980,23 +133980,23 @@ "year": 1748, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -27.735649274800835, - "c2": 19.044100643423263, - "c3": -30.808284495802617, - "c4": 40.55685676052191, - "c5": -1.378804885918541, - "c6": -37.22660616991961, - "c7": -0.8589967231098186 + "points": { + "c1": 19.40854922160453, + "c2": -10.457318843424403, + "c3": 21.78012027422386, + "c4": -22.66087632690154, + "c5": 18.10150263032699, + "c6": 3.121724891190567, + "c7": 25.332945658806153 }, - "vertexSeeds": { - "c1": 5.884498353998537, - "c2": 5.966073385005412, - "c3": 5.697602415735534, - "c4": 5.6395711096449865, - "c5": 5.744947923471781, - "c6": 5.975067149410624, - "c7": 5.440336558306331 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750346, + "c3": 7.3277854831252895, + "c4": 5.862228386500231, + "c5": 4.396671289875173, + "c6": 2.9311141932501155, + "c7": 1.4655570966250577 }, "rgb": [86, 146, 138] }, @@ -134007,23 +134007,23 @@ "year": 1748, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": 39.27424729708058, - "c2": 39.33566598258993, - "c3": 47.60266121461416, - "c4": -5.249444776981761, - "c5": 57.19729956156823, - "c6": 31.920105516692757, - "c7": 56.29006081500931 + "points": { + "c1": -17.733240087916236, + "c2": 52.825839235581554, + "c3": -42.23395685387918, + "c4": 4.986276655351361, + "c5": 1.2811046874316077, + "c6": -18.634457528117494, + "c7": -5.533066109727841 }, - "vertexSeeds": { - "c1": 4.8689423118058, - "c2": 4.592660668411625, - "c3": 4.5310620352426225, - "c4": 4.486098537339485, - "c5": 4.743277200083818, - "c6": 4.7148440345323355, - "c7": 4.470298539217932 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135922, + "c3": 5.825242718446602, + "c4": 4.660194174757281, + "c5": 3.495145631067961, + "c6": 2.3300970873786406, + "c7": 1.1650485436893203 }, "rgb": [222, 0, 59] }, @@ -134034,23 +134034,23 @@ "year": 1748, "resistanceReported": false, "duration": 58406400, - "curveSeeds": { - "c1": -65.60232169191224, - "c2": -22.49210051450993, - "c3": -46.909207531505395, - "c4": -19.635926719521557, - "c5": 4.3446617371066765, - "c6": -22.892948199955995, - "c7": -58.008004541235195 + "points": { + "c1": -55.55358160990051, + "c2": -63.52273825840042, + "c3": -73.23639886205702, + "c4": -38.63736128549436, + "c5": -55.538541047881495, + "c6": 12.935233988649927, + "c7": -37.240349452558775 }, - "vertexSeeds": { - "c1": 5.637131279857576, - "c2": 5.723128871542286, - "c3": 5.792811646507061, - "c4": 5.429809900874493, - "c5": 5.699644078378461, - "c6": 5.766213777267945, - "c7": 5.483964554905663 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [86, 146, 138] }, @@ -134061,23 +134061,23 @@ "year": 1747, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -32.565971126304376, - "c2": 9.52728966583468, - "c3": -19.34862302822326, - "c4": 6.449690508502691, - "c5": 29.0886437905435, - "c6": -15.84114340742357, - "c7": -7.5259523579738286 + "points": { + "c1": -41.40321983660901, + "c2": -7.705254481191055, + "c3": -39.08737662137731, + "c4": 10.625878105549909, + "c5": -9.763961248190569, + "c6": -13.638732310570791, + "c7": -17.532060769953667 }, - "vertexSeeds": { - "c1": 11.206228602885567, - "c2": 11.013414356731914, - "c3": 11.419371257266178, - "c4": 11.218661601615516, - "c5": 11.347925124086903, - "c6": 11.451093347330785, - "c7": 11.621414631317046 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.64355062413317, + "c3": 13.869625520110947, + "c4": 11.095700416088782, + "c5": 8.321775312066558, + "c6": 5.547850208044391, + "c7": 2.7739251040221675 }, "rgb": [86, 146, 138] }, @@ -134088,23 +134088,23 @@ "year": 1748, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 26.598087326764166, - "c2": 6.5563631369134825, - "c3": -2.3129484577783757, - "c4": -51.91112411193993, - "c5": 29.35027065234629, - "c6": 47.65482754541646, - "c7": -31.176058846463334 + "points": { + "c1": 28.975683095288126, + "c2": -41.45158149407754, + "c3": -53.147318068180056, + "c4": 27.5783732220247, + "c5": 29.14139180629143, + "c6": -39.3330478280366, + "c7": 4.517011989973703 }, - "vertexSeeds": { - "c1": 1.646258419715691, - "c2": 1.6955846863516117, - "c3": 1.7379110335240395, - "c4": 1.7269392798792351, - "c5": 1.6905190596435098, - "c6": 1.744619200779282, - "c7": 1.576194846429745 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.524271844660192, + "c3": 2.1035598705501624, + "c4": 1.6828478964401279, + "c5": 1.2621359223300985, + "c6": 0.8414239482200639, + "c7": 0.4207119741100297 }, "rgb": [77, 76, 132] }, @@ -134115,23 +134115,23 @@ "year": 1748, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -7.651810341252343, - "c2": 11.301236919126808, - "c3": 24.910019623592262, - "c4": -23.452263460150814, - "c5": -53.415069152337516, - "c6": -29.36067873081451, - "c7": 22.482775270858312 + "points": { + "c1": 36.274206894308605, + "c2": 20.729860887614393, + "c3": -19.467191568479713, + "c4": -47.935014927134986, + "c5": 23.38605990592474, + "c6": -47.313985321516924, + "c7": 33.15693959745849 }, - "vertexSeeds": { - "c1": 9.058181347381057, - "c2": 9.549765101493882, - "c3": 8.873653164489374, - "c4": 9.283022832903532, - "c5": 8.9282952150348, - "c6": 9.315024940834736, - "c7": 9.843674804475882 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593615, + "c3": 11.835413777161346, + "c4": 9.468331021729087, + "c5": 7.101248266296816, + "c6": 4.7341655108645435, + "c7": 2.3670827554322718 }, "rgb": [86, 146, 138] }, @@ -134142,23 +134142,23 @@ "year": 1748, "resistanceReported": false, "duration": 40003200, - "curveSeeds": { - "c1": 6.874327737629258, - "c2": -15.652422533705554, - "c3": -40.55108239480391, - "c4": 19.084411196197976, - "c5": 40.49823149339373, - "c6": 28.832371970323265, - "c7": 9.202251230525704 + "points": { + "c1": -51.85893605545783, + "c2": -39.08875580714039, + "c3": -4.441888169036936, + "c4": 39.03859327026251, + "c5": -32.73145704869462, + "c6": -19.399840906639916, + "c7": 24.04264370260279 }, - "vertexSeeds": { - "c1": 15.476627899402057, - "c2": 15.408223710896742, - "c3": 14.8046737208886, - "c4": 16.02811069940119, - "c5": 15.666805365071069, - "c6": 14.073949775478733, - "c7": 15.271666392979308 + "offsets": { + "c1": 26.763754045307444, + "c2": 22.94036061026353, + "c3": 19.11696717521961, + "c4": 15.293573740175667, + "c5": 11.470180305131748, + "c6": 7.646786870087833, + "c7": 3.8233934350439167 }, "rgb": [58, 15, 49] }, @@ -134169,23 +134169,23 @@ "year": 1747, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -5.514364530230928, - "c2": 14.440167374191304, - "c3": 24.74094906218538, - "c4": -16.099854105225745, - "c5": -13.567927670695937, - "c6": 5.314603126938756, - "c7": 21.97588535879504 + "points": { + "c1": 20.028510680869914, + "c2": -14.829737163347612, + "c3": -1.3910228534450368, + "c4": 20.824586812816356, + "c5": -0.04357894276849805, + "c6": -26.934909773854105, + "c7": 26.231257763210763 }, - "vertexSeeds": { - "c1": 8.37086835233399, - "c2": 8.104729026196603, - "c3": 8.436542780278112, - "c4": 8.147860400604912, - "c5": 8.502160413353725, - "c6": 7.60474843286852, - "c7": 7.7824334881205965 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657425, + "c3": 10.147942672214525, + "c4": 8.118354137771613, + "c5": 6.088765603328713, + "c6": 4.059177068885813, + "c7": 2.0295885344428997 }, "rgb": [238, 201, 159] }, @@ -134196,23 +134196,23 @@ "year": 1748, "resistanceReported": false, "duration": 52185600, - "curveSeeds": { - "c1": -44.086134998337144, - "c2": -7.5707291865625805, - "c3": 46.95422668200274, - "c4": 26.28350047224164, - "c5": -58.968883529025476, - "c6": 7.633300933373619, - "c7": 42.474850955425836 + "points": { + "c1": -25.979356014322356, + "c2": -44.45294953565839, + "c3": 32.177029613540455, + "c4": -62.73758335623536, + "c5": -53.26301581893394, + "c6": 20.399756602850005, + "c7": 62.87069452512941 }, - "vertexSeeds": { - "c1": 3.694992599526887, - "c2": 4.118729663147503, - "c3": 3.909575899309354, - "c4": 3.661146668631526, - "c5": 3.5685874161424502, - "c6": 4.053866098301396, - "c7": 3.9618785251241198 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374016, + "c4": 4.0684234858992125, + "c5": 3.0513176144244074, + "c6": 2.034211742949603, + "c7": 1.0171058714747991 }, "rgb": [86, 146, 138] }, @@ -134223,23 +134223,23 @@ "year": 1748, "resistanceReported": false, "duration": 44236800, - "curveSeeds": { - "c1": -39.98267071613369, - "c2": 27.013867295002463, - "c3": 36.4984041657598, - "c4": 16.68030931474943, - "c5": 6.350209342246025, - "c6": -28.204202942596787, - "c7": -1.0751744872416609 + "points": { + "c1": -4.522537338616601, + "c2": 29.627703353261417, + "c3": 4.200011690601492, + "c4": 39.79621948374692, + "c5": -9.453157826764134, + "c6": -9.984248065463383, + "c7": 18.791922938464644 }, - "vertexSeeds": { - "c1": 3.527348244101354, - "c2": 3.4588207100987254, - "c3": 3.566820580926801, - "c4": 3.2588213006799647, - "c5": 3.4123274873828815, - "c6": 3.4744598894693444, - "c7": 3.511538185714592 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682383, + "c3": 4.415164123901989, + "c4": 3.532131299121589, + "c5": 2.6490984743411947, + "c6": 1.7660656495607945, + "c7": 0.8830328247804003 }, "rgb": [58, 15, 49] }, @@ -134250,23 +134250,23 @@ "year": 1748, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -4.61749858306915, - "c2": 22.78624871805799, - "c3": 37.13707554619049, - "c4": 41.72779265285091, - "c5": -7.093795235502434, - "c6": -44.35286821350834, - "c7": -16.24496722496755 + "points": { + "c1": -15.210225070528242, + "c2": 21.783936854058837, + "c3": 41.30251971907691, + "c4": -5.851549169461762, + "c5": -30.911264948353345, + "c6": 31.278620542247623, + "c7": -31.78187054321243 }, - "vertexSeeds": { - "c1": 4.219114295241152, - "c2": 4.62953182342311, - "c3": 4.010430232053649, - "c4": 4.5314258978195925, - "c5": 4.165608559443469, - "c6": 4.013044972120816, - "c7": 4.63641953740789 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [222, 0, 59] }, @@ -134277,23 +134277,23 @@ "year": 1748, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": 25.40703091314191, - "c2": 7.361239559673031, - "c3": 19.931022048513654, - "c4": 18.341328893650243, - "c5": 25.198921904733837, - "c6": -31.008360731290313, - "c7": -40.17654482792706 + "points": { + "c1": -51.7759523685167, + "c2": -40.46169835947151, + "c3": 23.892200151192853, + "c4": 48.78746232705579, + "c5": -54.085094259815634, + "c6": 14.977214764516518, + "c7": 24.12041744960547 }, - "vertexSeeds": { - "c1": 5.641565566829388, - "c2": 6.203911851120186, - "c3": 5.684540461889281, - "c4": 6.378832929415724, - "c5": 5.548343507051729, - "c6": 6.263580233381486, - "c7": 5.737033898629857 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -134304,23 +134304,23 @@ "year": 1747, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 11.978469895516167, - "c2": 20.358131861864255, - "c3": -5.228871085440225, - "c4": 4.215400924035816, - "c5": -29.25421323341406, - "c6": -2.3058607989132014, - "c7": 30.54703729522343 + "points": { + "c1": -4.388110168423019, + "c2": -3.4139371842167634, + "c3": -0.9339615488303039, + "c4": 7.998048711497766, + "c5": 29.38122316949616, + "c6": -16.424352734271103, + "c7": -5.860732207147699 }, - "vertexSeeds": { - "c1": 4.140550815259533, - "c2": 3.951910050266625, - "c3": 4.09167347855416, - "c4": 4.461334353225767, - "c5": 4.450450082725401, - "c6": 4.457129920904764, - "c7": 3.707946544574347 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309753, + "c4": 4.3088303282478035, + "c5": 3.2316227461858538, + "c6": 2.1544151641239044, + "c7": 1.0772075820619496 }, "rgb": [222, 0, 59] }, @@ -134331,23 +134331,23 @@ "year": 1747, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -3.2794689118747087, - "c2": -5.689538573506631, - "c3": -34.2898398256106, - "c4": 16.586794757259447, - "c5": 5.050440104512013, - "c6": -8.144515173313316, - "c7": 35.08325506344394 + "points": { + "c1": -6.014333046613018, + "c2": -36.22053273619104, + "c3": -7.241113805281017, + "c4": 14.135095557763691, + "c5": -22.93521021188291, + "c6": -35.50037942808545, + "c7": -15.731555445063044 }, - "vertexSeeds": { - "c1": 4.439372752550599, - "c2": 4.498093809417596, - "c3": 4.704112375080182, - "c4": 4.387260935026622, - "c5": 5.073790072449859, - "c6": 5.115516996053469, - "c7": 4.530553803662663 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -134358,23 +134358,23 @@ "year": 1747, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 20.401892626494075, - "c2": 0.19474223528013823, - "c3": -1.2454426640846208, - "c4": -2.0205655677880614, - "c5": 12.432662140071272, - "c6": -29.441033711757562, - "c7": -21.74396363838718 + "points": { + "c1": 11.764208217923937, + "c2": 19.8121915936496, + "c3": -34.23100126344762, + "c4": -38.680910629873765, + "c5": -28.07933706568291, + "c6": 28.733436248695256, + "c7": 40.99677719668199 }, - "vertexSeeds": { - "c1": 6.423286683915543, - "c2": 6.539532324063682, - "c3": 5.7289273965665535, - "c4": 6.08910898027023, - "c5": 6.421394416668574, - "c6": 6.51440666094634, - "c7": 5.44550521953841 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715676, + "c3": 7.88257050392973, + "c4": 6.306056403143787, + "c5": 4.729542302357842, + "c6": 3.1530282015718876, + "c7": 1.5765141007859542 }, "rgb": [86, 146, 138] }, @@ -134385,23 +134385,23 @@ "year": 1748, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": 20.668554817044033, - "c2": 13.535564837848106, - "c3": -7.369689851019096, - "c4": 24.462432143590426, - "c5": 22.737096091503297, - "c6": 53.4712885311909, - "c7": -45.33585975003615 + "points": { + "c1": -6.697050708632439, + "c2": -49.008584592060885, + "c3": -20.85843586802534, + "c4": 49.377034710924285, + "c5": 27.432053691245592, + "c6": -20.651335577935512, + "c7": -15.168105860796153 }, - "vertexSeeds": { - "c1": 5.768452873201819, - "c2": 5.368573399244096, - "c3": 5.4438118288498485, - "c4": 5.516047355466839, - "c5": 6.2222330372303984, - "c6": 5.577936249277493, - "c7": 5.35001396622184 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951458, + "c3": 7.443365695792884, + "c4": 5.95469255663431, + "c5": 4.466019417475735, + "c6": 2.9773462783171487, + "c7": 1.4886731391585744 }, "rgb": [238, 201, 159] }, @@ -134412,23 +134412,23 @@ "year": 1747, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 20.37616006327412, - "c2": -10.85506718669285, - "c3": -18.198642745081127, - "c4": 38.76333245896148, - "c5": 31.687116141647287, - "c6": -28.378553302046832, - "c7": 9.528468575671369 + "points": { + "c1": 9.324497006006006, + "c2": 27.052548132494273, + "c3": 8.9755123197722, + "c4": 40.578735526964174, + "c5": 11.760625399097862, + "c6": 32.822099987582256, + "c7": 8.626379123401733 }, - "vertexSeeds": { - "c1": 3.4555775905532102, - "c2": 3.1120254739572877, - "c3": 3.2835818862483706, - "c4": 3.4109164567629993, - "c5": 3.4934729316377253, - "c6": 3.340544096519645, - "c7": 3.2828419514286473 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320386, + "c3": 4.2071197411003265, + "c4": 3.3656957928802598, + "c5": 2.524271844660193, + "c6": 1.6828478964401339, + "c7": 0.8414239482200669 }, "rgb": [77, 76, 132] }, @@ -134439,23 +134439,23 @@ "year": 1747, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -9.39445315369258, - "c2": 25.748496279190356, - "c3": -17.862744167532444, - "c4": -26.703369584247405, - "c5": -26.18868625525466, - "c6": 13.771055035429526, - "c7": -19.983469989930626 + "points": { + "c1": 0.05695190574832765, + "c2": -20.58809045790683, + "c3": -3.0752354471560146, + "c4": 34.058788912997905, + "c5": 13.259140177980143, + "c6": -18.297203682919044, + "c7": 29.44361705838164 }, - "vertexSeeds": { - "c1": 3.985688283926703, - "c2": 3.9798592362519836, - "c3": 3.809000193846016, - "c4": 4.538562704411567, - "c5": 4.454023073059397, - "c6": 4.596671120558495, - "c7": 4.213863675543848 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -134466,23 +134466,23 @@ "year": 1748, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -2.8587544711283357, - "c2": 21.053862085083246, - "c3": -34.211636974076136, - "c4": -26.298785453436835, - "c5": 12.051088195184427, - "c6": -35.797482518458565, - "c7": -22.473433713629888 + "points": { + "c1": 10.971123175315647, + "c2": 22.008323881862836, + "c3": 30.629159798921506, + "c4": 37.134014504357495, + "c5": 42.540024587741, + "c6": 1.8239250818530977, + "c7": 24.258499918412497 }, - "vertexSeeds": { - "c1": 7.111528684576744, - "c2": 7.466493272428813, - "c3": 7.1873348398558825, - "c4": 6.959777864433832, - "c5": 7.034437458295933, - "c6": 6.861960307250759, - "c7": 7.40514290366489 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -134493,23 +134493,23 @@ "year": 1748, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 37.60984648891336, - "c2": -20.003784118925296, - "c3": 42.42421309712701, - "c4": 1.8284297940676666, - "c5": 29.571242872640497, - "c6": -15.780994567833353, - "c7": 26.887293898612214 + "points": { + "c1": -24.115781335652642, + "c2": 4.7586099512744084, + "c3": -15.501554686785425, + "c4": -10.1791431482267, + "c5": -1.7598285433825396, + "c6": -10.622970403332033, + "c7": 36.90210757587788 }, - "vertexSeeds": { - "c1": 11.177445251147613, - "c2": 10.430051224865041, - "c3": 11.003158723702708, - "c4": 10.026101799227728, - "c5": 11.189570786927684, - "c6": 11.293624368390763, - "c7": 10.910940196223086 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.532593619972253, + "c3": 13.777161349976895, + "c4": 11.021729079981512, + "c5": 8.266296809986127, + "c6": 5.5108645399907425, + "c7": 2.755432269995384 }, "rgb": [86, 146, 138] }, @@ -134520,23 +134520,23 @@ "year": 1747, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -10.533007983691647, - "c2": -27.297707939276165, - "c3": -30.922255324912065, - "c4": -11.002830789029591, - "c5": -16.446368155331285, - "c6": -0.7920183953563011, - "c7": -26.733160436137403 + "points": { + "c1": 0.6140591660922468, + "c2": -14.044071579470767, + "c3": -24.792673852910184, + "c4": -11.592331629633545, + "c5": -26.199837601357643, + "c6": 18.573876871414555, + "c7": 39.18405518528672 }, - "vertexSeeds": { - "c1": 13.81446017308234, - "c2": 15.801086875830999, - "c3": 13.913250608199078, - "c4": 14.164228695934325, - "c5": 14.832236806507693, - "c6": 15.797578088431823, - "c7": 14.168666839945882 + "offsets": { + "c1": 26.375404530744333, + "c2": 22.607489597780862, + "c3": 18.839574664817388, + "c4": 15.071659731853916, + "c5": 11.303744798890442, + "c6": 7.535829865926971, + "c7": 3.7679149329634978 }, "rgb": [86, 146, 138] }, @@ -134547,23 +134547,23 @@ "year": 1747, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -17.045364319848765, - "c2": 19.821996924287824, - "c3": 24.85277715140856, - "c4": 6.331527487598862, - "c5": -2.236635330211115, - "c6": -25.08220729566648, - "c7": -17.22157363204189 + "points": { + "c1": -14.692217665389279, + "c2": -14.475110074114959, + "c3": 5.8527605969771415, + "c4": -14.689690900337887, + "c5": -14.723657003246984, + "c6": -23.081994024473723, + "c7": -23.26759923234021 }, - "vertexSeeds": { - "c1": 1.096412374091872, - "c2": 1.0100623923677814, - "c3": 0.99801557027768, - "c4": 0.9767144744186591, - "c5": 0.9998397718586405, - "c6": 0.997729475428472, - "c7": 0.953310625323734 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535371, + "c3": 1.4100785945446148, + "c4": 1.128062875635691, + "c5": 0.8460471567267686, + "c6": 0.5640314378178461, + "c7": 0.28201571890892246 }, "rgb": [222, 0, 59] }, @@ -134574,23 +134574,23 @@ "year": 1747, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 27.82543345936235, - "c2": 29.14019888086677, - "c3": 6.7392270888328625, - "c4": 12.487330195462285, - "c5": 2.849045281432545, - "c6": -0.8530910536053327, - "c7": -5.851944984492743 + "points": { + "c1": 25.314471305658834, + "c2": 8.337905246950946, + "c3": -20.649135682713585, + "c4": -3.379860575580345, + "c5": -29.845447510753697, + "c6": 25.392857463165846, + "c7": 13.433834257550707 }, - "vertexSeeds": { - "c1": 6.2367114063143685, - "c2": 6.585303052441776, - "c3": 6.119236426858757, - "c4": 6.34466686598436, - "c5": 6.57519601124146, - "c6": 6.02126918175986, - "c7": 5.812404715204056 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037447, + "c3": 8.067498844197875, + "c4": 6.453999075358299, + "c5": 4.840499306518724, + "c6": 3.2269995376791494, + "c7": 1.6134997688395747 }, "rgb": [222, 0, 59] }, @@ -134601,23 +134601,23 @@ "year": 1747, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -18.554684409789964, - "c2": -3.3576042473745993, - "c3": 2.5669008642005693, - "c4": -22.766269822591074, - "c5": 13.255319440947439, - "c6": -22.98092865073165, - "c7": -9.657217654313591 + "points": { + "c1": 1.0219950106279327, + "c2": -18.373858404823135, + "c3": -14.324656036262372, + "c4": -15.794094177565047, + "c5": 23.091236229083975, + "c6": -24.122917210068255, + "c7": -2.384078543986462 }, - "vertexSeeds": { - "c1": 3.860303765331291, - "c2": 3.851728895926885, - "c3": 3.849143116147763, - "c4": 3.8520069152456125, - "c5": 3.857746975904142, - "c6": 3.863203633030295, - "c7": 3.8633562413362976 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044409, + "c3": 4.623208506703705, + "c4": 3.6985668053630003, + "c5": 2.7739251040221125, + "c6": 1.8492834026814082, + "c7": 0.9246417013407041 }, "rgb": [86, 146, 138] }, @@ -134628,23 +134628,23 @@ "year": 1748, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": -39.99977003318051, - "c2": -8.993319390225572, - "c3": 28.122290610966104, - "c4": -16.247489411905022, - "c5": -27.310257533465666, - "c6": -36.56204728980631, - "c7": -28.35645020142702 + "points": { + "c1": 4.184184246589453, + "c2": 41.587860324998886, + "c3": -41.43175130152832, + "c4": -16.403699153585485, + "c5": 19.91287806684906, + "c6": -50.67268232303059, + "c7": 11.588931237132286 }, - "vertexSeeds": { - "c1": 7.140096712516052, - "c2": 7.514669226662102, - "c3": 6.923756429985268, - "c4": 7.510339968019645, - "c5": 7.236883346363048, - "c6": 7.207311760908152, - "c7": 6.944859045464148 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.81830790568655, + "c3": 9.015256588072114, + "c4": 7.212205270457695, + "c5": 5.409153952843275, + "c6": 3.606102635228856, + "c7": 1.8030513176144194 }, "rgb": [77, 76, 132] }, @@ -134655,23 +134655,23 @@ "year": 1748, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 38.201318179116065, - "c2": 19.30251182819027, - "c3": -15.370771063936246, - "c4": 24.25508707889675, - "c5": -18.027550227999566, - "c6": -7.702615074102077, - "c7": -11.548280543963052 + "points": { + "c1": 4.458553885941932, + "c2": -0.7749581084266595, + "c3": -25.196176890734826, + "c4": -21.42352785346007, + "c5": -32.57822942670648, + "c6": 23.82627997045811, + "c7": 12.216736047166094 }, - "vertexSeeds": { - "c1": 5.09076342016002, - "c2": 6.043393113438103, - "c3": 5.7404960867058845, - "c4": 5.3971016285425915, - "c5": 5.7559350604065305, - "c6": 5.201195983319434, - "c7": 5.074779098018357 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750348, + "c3": 7.327785483125291, + "c4": 5.862228386500226, + "c5": 4.39667128987517, + "c6": 2.931114193250113, + "c7": 1.4655570966250564 }, "rgb": [222, 0, 59] }, @@ -134682,23 +134682,23 @@ "year": 1747, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -15.602012501164099, - "c2": 23.675501211691866, - "c3": -24.85253802198437, - "c4": 30.136475382541384, - "c5": 15.275695360930065, - "c6": 5.055222059781535, - "c7": -12.508258418442928 + "points": { + "c1": 27.303857426331575, + "c2": -13.24189479376452, + "c3": 27.072137645303968, + "c4": -16.89545741846379, + "c5": -23.079276620560726, + "c6": 2.5586482757316418, + "c7": 8.914111864291527 }, - "vertexSeeds": { - "c1": 10.323249287163032, - "c2": 10.532134892363311, - "c3": 10.357756913145058, - "c4": 11.80229735693214, - "c5": 10.713927957588009, - "c6": 11.576449324004761, - "c7": 11.617878383326739 + "offsets": { + "c1": 19.870550161812297, + "c2": 17.031900138696248, + "c3": 14.193250115580197, + "c4": 11.354600092464173, + "c5": 8.515950069348124, + "c6": 5.677300046232073, + "c7": 2.8386500231160494 }, "rgb": [238, 201, 159] }, @@ -134709,23 +134709,23 @@ "year": 1747, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 32.20478723179309, - "c2": -7.575506902026451, - "c3": -12.960046929492435, - "c4": -31.332721641808778, - "c5": -26.189110213171737, - "c6": 4.286833272500587, - "c7": -33.197019615145685 + "points": { + "c1": -22.586359093180747, + "c2": -28.232054047039796, + "c3": -0.5048634905563816, + "c4": -32.211715698260925, + "c5": 7.161593838642233, + "c6": 30.141089178641167, + "c7": 1.647594593582454 }, - "vertexSeeds": { - "c1": 4.390833378176945, - "c2": 4.379746548439378, - "c3": 4.523381076531611, - "c4": 5.05462516516103, - "c5": 4.228912446486342, - "c6": 4.599469974314227, - "c7": 4.544563579865916 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578363, + "c3": 6.079519186315302, + "c4": 4.863615349052242, + "c5": 3.6477115117891814, + "c6": 2.431807674526121, + "c7": 1.2159038372630604 }, "rgb": [238, 201, 159] }, @@ -134736,23 +134736,23 @@ "year": 1747, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 31.224304446545972, - "c2": 18.614395835562213, - "c3": 21.7941798895908, - "c4": -8.561327293721408, - "c5": -16.225571340038933, - "c6": 5.46261344356197, - "c7": 4.279550155549494 + "points": { + "c1": -18.58049914486039, + "c2": 0.7818140653758405, + "c3": 14.642813072041058, + "c4": 12.945586957327436, + "c5": 19.471310556047648, + "c6": 30.62373434301952, + "c7": -32.85337103346066 }, - "vertexSeeds": { - "c1": 5.644520444231674, - "c2": 5.082714549641416, - "c3": 5.387062123364653, - "c4": 5.309900135359067, - "c5": 5.5308788994944535, - "c6": 5.4853016780864365, - "c7": 5.964127010043714 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589457, + "c3": 7.235321312991221, + "c4": 5.788257050392975, + "c5": 4.3411927877947285, + "c6": 2.894128525196482, + "c7": 1.4470642625982464 }, "rgb": [238, 201, 159] }, @@ -134763,23 +134763,23 @@ "year": 1747, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -24.077932528720773, - "c2": -25.90161214763429, - "c3": -29.019601733517916, - "c4": 26.163142727579192, - "c5": 21.604448943410922, - "c6": -15.533376237573625, - "c7": 7.112198670809043 + "points": { + "c1": -25.252292602855647, + "c2": 3.8701504826956494, + "c3": -4.482231109718885, + "c4": 24.62721113370428, + "c5": 23.060878033568436, + "c6": 18.905898799748357, + "c7": -23.291572135471732 }, - "vertexSeeds": { - "c1": 8.004116739286786, - "c2": 9.014954974104207, - "c3": 9.06278954437901, - "c4": 8.33241978803729, - "c5": 8.946987539679089, - "c6": 7.928932352640781, - "c7": 8.157222659220338 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.981969486823864, + "c3": 10.818307905686549, + "c4": 8.654646324549233, + "c5": 6.490984743411932, + "c6": 4.327323162274629, + "c7": 2.1636615811373145 }, "rgb": [77, 76, 132] }, @@ -134790,23 +134790,23 @@ "year": 1748, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 25.497195884397037, - "c2": 9.682348119280384, - "c3": -22.937589365838562, - "c4": 4.071443465705819, - "c5": 9.594628079417262, - "c6": -29.51008483306097, - "c7": -9.444004243071724 + "points": { + "c1": -12.354127902007846, + "c2": -19.543779697508178, + "c3": -5.186889547456623, + "c4": 32.092402462567314, + "c5": 38.62780089913998, + "c6": -21.00912015684765, + "c7": 27.652635499575787 }, - "vertexSeeds": { - "c1": 4.949896411785374, - "c2": 5.0056778034702605, - "c3": 4.804737956958674, - "c4": 5.016078823392202, - "c5": 4.663189021325256, - "c6": 4.777145863895179, - "c7": 4.523953552656788 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.4341192787794705, + "c3": 6.195099398982892, + "c4": 4.956079519186312, + "c5": 3.7170596393897326, + "c6": 2.478039759593153, + "c7": 1.2390198797965732 }, "rgb": [77, 76, 132] }, @@ -134817,23 +134817,23 @@ "year": 1748, "resistanceReported": false, "duration": 43891200, - "curveSeeds": { - "c1": -57.43695998724932, - "c2": 46.4352908908312, - "c3": 50.34012468546504, - "c4": -10.920465797501578, - "c5": 30.34474095053322, - "c6": 28.01356379142713, - "c7": -13.553111428996957 + "points": { + "c1": -32.21123881913617, + "c2": -4.100428620722681, + "c3": -59.095929616987966, + "c4": 59.170622807556725, + "c5": 2.9980778551105516, + "c6": -39.50863046230125, + "c7": -41.26762129455824 }, - "vertexSeeds": { - "c1": 8.501051107809625, - "c2": 8.709276976034364, - "c3": 8.3965549944905, - "c4": 8.825770958116307, - "c5": 8.619406019885762, - "c6": 8.295872080181093, - "c7": 8.601609341508045 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346735, + "c3": 11.118816458622286, + "c4": 8.895053166897823, + "c5": 6.6712898751733745, + "c6": 4.447526583448911, + "c7": 2.2237632917244627 }, "rgb": [77, 76, 132] }, @@ -134844,23 +134844,23 @@ "year": 1748, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 1.731298877591854, - "c2": 5.5628895403068555, - "c3": 34.908321941353485, - "c4": 6.655140759364549, - "c5": -41.79588708598629, - "c6": -13.080821056066018, - "c7": -14.737523996584603 + "points": { + "c1": -16.432045727190307, + "c2": 39.60164914065357, + "c3": -37.32894751744667, + "c4": 32.66322474165117, + "c5": 31.31460806472581, + "c6": -7.8417768541874935, + "c7": 16.72368028317719 }, - "vertexSeeds": { - "c1": 4.282242778204304, - "c2": 4.2737787636520315, - "c3": 4.272235546189797, - "c4": 4.198667778018744, - "c5": 4.235219333756974, - "c6": 4.429532896568049, - "c7": 4.296507246585847 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371706, + "c3": 5.386037910309752, + "c4": 4.308830328247811, + "c5": 3.2316227461858578, + "c6": 2.1544151641239053, + "c7": 1.0772075820619527 }, "rgb": [222, 0, 59] }, @@ -134871,23 +134871,23 @@ "year": 1748, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -7.421131337561583, - "c2": -24.496483628957396, - "c3": 26.14426720737758, - "c4": -9.930143402610824, - "c5": 1.7593376808075476, - "c6": -26.714172633550902, - "c7": -4.03620174331558 + "points": { + "c1": -24.47306111987502, + "c2": 11.920145064144954, + "c3": 12.499794278254896, + "c4": -24.171725816725985, + "c5": -25.567126102575294, + "c6": -18.460314607529085, + "c7": -27.953031079130916 }, - "vertexSeeds": { - "c1": 4.573187315546374, - "c2": 4.9425491683629845, - "c3": 4.236552629249407, - "c4": 4.354776015307395, - "c5": 4.938150771207556, - "c6": 5.095033641382171, - "c7": 4.571897266460258 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -134898,23 +134898,23 @@ "year": 1748, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": 36.71697717624669, - "c2": 53.10365855509434, - "c3": -13.085955048516581, - "c4": -25.305959340488528, - "c5": -10.453944874391816, - "c6": 17.043285844670194, - "c7": 26.35290625216774 + "points": { + "c1": 16.29845337125225, + "c2": 22.502316284373578, + "c3": 52.462763040735084, + "c4": -1.2793015171218372, + "c5": -27.50353066903826, + "c6": 18.255029131996665, + "c7": 13.963755278064909 }, - "vertexSeeds": { - "c1": 3.1405432088829595, - "c2": 3.157567490388027, - "c3": 3.1258721078512677, - "c4": 3.1695824264631502, - "c5": 2.971990703185234, - "c6": 3.117678958824027, - "c7": 3.112482884403614 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.6047156726768375, + "c3": 3.837263060564031, + "c4": 3.069810448451225, + "c5": 2.3023578363384187, + "c6": 1.5349052242256125, + "c7": 0.7674526121128062 }, "rgb": [77, 76, 132] }, @@ -134925,23 +134925,23 @@ "year": 1748, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -23.991504626526286, - "c2": 6.646717230886484, - "c3": -6.0159671669937325, - "c4": 29.600589852578754, - "c5": -7.7640565748330275, - "c6": -8.071549785130259, - "c7": 29.661005817206085 + "points": { + "c1": -5.412983284535354, + "c2": 19.492839266118946, + "c3": 21.04820558780312, + "c4": 1.92433957433121, + "c5": -10.000330129982682, + "c6": -25.968104734763937, + "c7": 23.59313596931946 }, - "vertexSeeds": { - "c1": 7.9286237591878255, - "c2": 8.50803464884908, - "c3": 8.051297490214274, - "c4": 8.142869303401703, - "c5": 7.4221859796273835, - "c6": 7.989142003069636, - "c7": 7.3897916993622665 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858535, + "c3": 10.263522884882105, + "c4": 8.21081830790569, + "c5": 6.158113730929261, + "c6": 4.105409153952845, + "c7": 2.052704576976429 }, "rgb": [77, 76, 132] }, @@ -134952,23 +134952,23 @@ "year": 1748, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -37.9640566377373, - "c2": 31.77368494749978, - "c3": -8.516711733771587, - "c4": 15.857608038278208, - "c5": 17.472420406072025, - "c6": -35.78060616933126, - "c7": -2.4107767011773475 + "points": { + "c1": 26.7944601609665, + "c2": -12.635190600327384, + "c3": 3.216019734911427, + "c4": 7.060992877308173, + "c5": 38.85141290351687, + "c6": -3.885429961487617, + "c7": -40.603597889575894 }, - "vertexSeeds": { - "c1": 5.961315979874764, - "c2": 5.555248331289526, - "c3": 6.191297090318256, - "c4": 5.297378593423774, - "c5": 6.309386403471798, - "c6": 5.536544063880969, - "c7": 6.13731668190384 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233013, + "c3": 7.605177993527504, + "c4": 6.084142394822005, + "c5": 4.563106796116506, + "c6": 3.0420711974109973, + "c7": 1.5210355987054986 }, "rgb": [222, 0, 59] }, @@ -134979,23 +134979,23 @@ "year": 1748, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 37.11747522860827, - "c2": -28.65265775143165, - "c3": 12.555029988680957, - "c4": 4.9986668338789215, - "c5": 9.445969222525086, - "c6": 32.77897990970334, - "c7": -20.260075633174555 + "points": { + "c1": 22.55800728500384, + "c2": 4.679101798570876, + "c3": 0.3545285696563525, + "c4": -19.867778455483226, + "c5": 39.04977430090119, + "c6": 28.959427409761076, + "c7": -3.3344509812563174 }, - "vertexSeeds": { - "c1": 3.4254904999797646, - "c2": 3.485389738184394, - "c3": 3.520541671632803, - "c4": 3.4558357343114428, - "c5": 3.517693563738035, - "c6": 3.6186821787218473, - "c7": 3.509280473099603 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682383, + "c3": 4.415164123901992, + "c4": 3.532131299121592, + "c5": 2.6490984743411916, + "c6": 1.7660656495607918, + "c7": 0.8830328247804 }, "rgb": [58, 15, 49] }, @@ -135006,23 +135006,23 @@ "year": 1748, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -12.535554783665745, - "c2": 11.699778910594429, - "c3": 24.069780780738544, - "c4": -4.697448508104198, - "c5": -24.617115485368906, - "c6": -13.751016621621632, - "c7": 15.204330921702326 + "points": { + "c1": -4.498233945462378, + "c2": -9.40713093361244, + "c3": 24.964690664551792, + "c4": -2.031998987366034, + "c5": -2.7399358749362897, + "c6": -20.15928940019525, + "c7": 7.059957060539663 }, - "vertexSeeds": { - "c1": 5.311577764123989, - "c2": 4.978564011372263, - "c3": 4.971746189544403, - "c4": 4.47634125360759, - "c5": 4.473561111908949, - "c6": 5.269562386799002, - "c7": 5.195510326555718 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -135033,23 +135033,23 @@ "year": 1748, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 18.017132693519926, - "c2": -0.3484643073423861, - "c3": 24.379376488907972, - "c4": -10.754330048217962, - "c5": -8.149022904077285, - "c6": 18.90284341070614, - "c7": -22.465523631174747 + "points": { + "c1": 24.43534382279296, + "c2": 14.634758519204645, + "c3": -22.095260966625716, + "c4": -24.764908816310275, + "c5": 23.61692405972957, + "c6": 4.555975997226874, + "c7": -9.141186966467739 }, - "vertexSeeds": { - "c1": 7.712074496647884, - "c2": 8.165047622265595, - "c3": 7.371072822178372, - "c4": 7.430827037783712, - "c5": 7.312249357289174, - "c6": 7.505405700437253, - "c7": 7.9924483526518175 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174761, + "c3": 9.870550161812291, + "c4": 7.896440129449836, + "c5": 5.9223300970873805, + "c6": 3.948220064724924, + "c7": 1.9741100323624559 }, "rgb": [222, 0, 59] }, @@ -135060,23 +135060,23 @@ "year": 1748, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -31.60668727837895, - "c2": 14.136471663229251, - "c3": -14.101700464888552, - "c4": -16.54308354163464, - "c5": -2.6122266624501442, - "c6": -8.003937775279933, - "c7": 11.216937621570807 + "points": { + "c1": -35.401750165974484, + "c2": 0.9077969367736785, + "c3": 15.965908500930048, + "c4": -33.07709014282841, + "c5": 6.447122198737681, + "c6": 21.704099811306705, + "c7": -35.70954830623191 }, - "vertexSeeds": { - "c1": 5.131462970934435, - "c2": 5.896757039270157, - "c3": 5.864661334706031, - "c4": 5.337895474880668, - "c5": 5.316419815451515, - "c6": 5.303226256526602, - "c7": 5.683293278431739 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267687, + "c3": 7.050392972723068, + "c4": 5.640314378178458, + "c5": 4.230235783633838, + "c6": 2.820157189089229, + "c7": 1.4100785945446197 }, "rgb": [238, 201, 159] }, @@ -135087,23 +135087,23 @@ "year": 1748, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 14.273634845578904, - "c2": -4.891878251245863, - "c3": 20.30521678703476, - "c4": -7.22188399385729, - "c5": 27.386075070764534, - "c6": -7.295895562955231, - "c7": -19.304738002804655 + "points": { + "c1": -10.264041984301528, + "c2": 8.229109652571587, + "c3": -25.5961903069329, + "c4": -8.647516168719072, + "c5": -17.700897363242422, + "c6": -18.226991254754054, + "c7": 36.66908036753989 }, - "vertexSeeds": { - "c1": 5.6096845892821126, - "c2": 5.390339801654983, - "c3": 5.182864096116731, - "c4": 5.4481944088922765, - "c5": 5.254515563123793, - "c6": 5.0385616967363065, - "c7": 5.633877828771759 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785024, + "c3": 6.773000462320847, + "c4": 5.4184003698566805, + "c5": 4.063800277392504, + "c6": 2.7092001849283376, + "c7": 1.3546000924641715 }, "rgb": [86, 146, 138] }, @@ -135114,23 +135114,23 @@ "year": 1748, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -39.942125292751804, - "c2": -20.785080796912, - "c3": 5.997965269862377, - "c4": 39.90483810014917, - "c5": 8.911340332343315, - "c6": 35.05617374496067, - "c7": 18.88919990525993 + "points": { + "c1": 1.5597754143400024, + "c2": 42.657716131220916, + "c3": 36.61319584806332, + "c4": -19.464934717230136, + "c5": -44.655698009958975, + "c6": -5.617666605349072, + "c7": 22.26757612110773 }, - "vertexSeeds": { - "c1": 6.938134672183706, - "c2": 6.872767493514093, - "c3": 6.12741482825378, - "c4": 6.145185989764949, - "c5": 7.0470980003869155, - "c6": 6.362558867216243, - "c7": 6.099614836218069 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721218, + "c3": 8.460471567267687, + "c4": 6.768377253814148, + "c5": 5.076282940360609, + "c6": 3.384188626907079, + "c7": 1.6920943134535396 }, "rgb": [77, 76, 132] }, @@ -135141,23 +135141,23 @@ "year": 1748, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -0.40903976941181597, - "c2": 4.066060394723248, - "c3": 22.06026364384165, - "c4": -16.83671766999409, - "c5": 21.395781684466264, - "c6": 10.053421305391538, - "c7": 10.501967087330804 + "points": { + "c1": -1.7529311857965375, + "c2": 22.481719192879595, + "c3": 7.454200629546008, + "c4": 5.571453518415918, + "c5": -17.696872703103512, + "c6": 0.6305815420259719, + "c7": -7.216134439505559 }, - "vertexSeeds": { - "c1": 4.88452362897587, - "c2": 4.842804380252123, - "c3": 4.671600722433838, - "c4": 5.196684227105811, - "c5": 5.2730652808989005, - "c6": 4.861789474340986, - "c7": 5.021977391835448 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980585, + "c3": 6.31067961165049, + "c4": 5.048543689320395, + "c5": 3.7864077669902927, + "c6": 2.5242718446601975, + "c7": 1.262135922330095 }, "rgb": [238, 201, 159] }, @@ -135168,23 +135168,23 @@ "year": 1748, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -17.275812099569233, - "c2": -0.259439021463713, - "c3": 15.760794598992014, - "c4": 18.247884173791725, - "c5": -19.3395802772048, - "c6": 21.940838299751903, - "c7": -8.384554293643482 + "points": { + "c1": 1.932838897245997, + "c2": 22.62058862025593, + "c3": 0.7046989327978572, + "c4": 4.938825926493966, + "c5": 20.841901818905036, + "c6": 8.288487468057589, + "c7": -15.095603422631399 }, - "vertexSeeds": { - "c1": 7.663380524253164, - "c2": 4.425283251193885, - "c3": 5.848046979349645, - "c4": 7.148981872128065, - "c5": 4.85737998569083, - "c6": 5.726170566919949, - "c7": 7.486605416112717 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330094, + "c3": 9.385113268608414, + "c4": 7.508090614886729, + "c5": 5.63106796116505, + "c6": 3.7540453074433646, + "c7": 1.8770226537216823 }, "rgb": [222, 0, 59] }, @@ -135195,23 +135195,23 @@ "year": 1748, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 7.740656977356686, - "c2": 20.592389799771233, - "c3": 23.977874591612057, - "c4": 25.32637225235792, - "c5": 13.199255507316337, - "c6": -20.624777988904928, - "c7": -10.332668050273455 + "points": { + "c1": -24.425894308531248, + "c2": -7.927402267862572, + "c3": 1.8189494181500194, + "c4": -3.7476490453869147, + "c5": -3.0982205785549866, + "c6": -25.4883599189791, + "c7": 3.2114723887114565 }, - "vertexSeeds": { - "c1": 4.437524184730852, - "c2": 3.972443921907357, - "c3": 4.253772275186391, - "c4": 4.083388602089816, - "c5": 4.000568217762908, - "c6": 3.9498124970498503, - "c7": 4.149402477160233 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.478502080443828, + "c4": 4.382801664355062, + "c5": 3.2871012482662967, + "c6": 2.191400832177531, + "c7": 1.0957004160887656 }, "rgb": [77, 76, 132] }, @@ -135222,23 +135222,23 @@ "year": 1747, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": 0.5858676320465399, - "c2": -10.080401780002335, - "c3": 8.370984474720935, - "c4": -8.725784831800919, - "c5": 5.1750817454176286, - "c6": -4.839383571650782, - "c7": 13.581916216745125 + "points": { + "c1": 5.637399798752472, + "c2": -8.650891352835176, + "c3": 12.081293472448696, + "c4": -8.215124774006648, + "c5": 7.015144727542019, + "c6": -4.053286371936977, + "c7": -17.16966846344055 }, - "vertexSeeds": { - "c1": 12.47056653945966, - "c2": 13.368357850770723, - "c3": 12.476121365866573, - "c4": 13.721947912840388, - "c5": 14.03977000130596, - "c6": 13.986406049979143, - "c7": 13.22244990500795 + "offsets": { + "c1": 23.462783171521036, + "c2": 20.1109570041609, + "c3": 16.759130836800736, + "c4": 13.407304669440599, + "c5": 10.055478502080437, + "c6": 6.703652334720299, + "c7": 3.3518261673601626 }, "rgb": [58, 15, 49] }, @@ -135249,23 +135249,23 @@ "year": 1748, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -30.90057083546907, - "c2": -18.049827209376165, - "c3": 36.376250398881666, - "c4": 37.20294464790824, - "c5": 29.016047199712403, - "c6": -8.239700316158238, - "c7": -3.9405881769442814 + "points": { + "c1": 3.9360423987901, + "c2": -39.63582993586138, + "c3": 7.519682558992649, + "c4": 23.917480459981945, + "c5": 34.63921804018355, + "c6": 8.588877643434039, + "c7": 9.345403890171859 }, - "vertexSeeds": { - "c1": 8.532946919387776, - "c2": 7.91764120187454, - "c3": 8.701983095297752, - "c4": 8.435926421902824, - "c5": 8.608031351507298, - "c6": 8.123728592091384, - "c7": 8.194939406171038 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.649098474341185, + "c3": 10.540915395284328, + "c4": 8.432732316227458, + "c5": 6.3245492371706, + "c6": 4.216366158113729, + "c7": 2.1081830790568707 }, "rgb": [86, 146, 138] }, @@ -135276,23 +135276,23 @@ "year": 1748, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 7.653111101071779, - "c2": -9.17409416969451, - "c3": -19.677812496532155, - "c4": 1.6983285996293205, - "c5": -13.664138564618462, - "c6": 16.444981451552742, - "c7": 26.893195429825674 + "points": { + "c1": -27.582701745166368, + "c2": -17.574813715588732, + "c3": -33.489634729025866, + "c4": -24.582703753975608, + "c5": -6.650559523384821, + "c6": 24.098811898282634, + "c7": -4.220465297750319 }, - "vertexSeeds": { - "c1": 4.390130961354379, - "c2": 4.774775486301511, - "c3": 4.6617768344284345, - "c4": 4.971242443524398, - "c5": 4.628609262621273, - "c6": 4.641434458077613, - "c7": 4.2096500913607375 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.2676837725381445, + "c3": 6.056403143781784, + "c4": 4.84512251502543, + "c5": 3.6338418862690696, + "c6": 2.422561257512715, + "c7": 1.21128062875636 }, "rgb": [238, 201, 159] }, @@ -135303,23 +135303,23 @@ "year": 1748, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 27.540253863116483, - "c2": 16.66910672837193, - "c3": 18.346573505486774, - "c4": 13.910771119894413, - "c5": -21.91701357482578, - "c6": -17.947469844254606, - "c7": 1.9277028710472237 + "points": { + "c1": 7.94931462643769, + "c2": -7.206680235420798, + "c3": -14.276884011687677, + "c4": 25.524700437049745, + "c5": -19.378401785690357, + "c6": -26.349680365090542, + "c7": -8.363807476280257 }, - "vertexSeeds": { - "c1": 3.992897094770989, - "c2": 4.250483098488643, - "c3": 4.195874503014762, - "c4": 3.874981451029095, - "c5": 3.9255710174923153, - "c6": 4.498331223840084, - "c7": 4.5115946800995 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.7683772538141485, + "c3": 5.640314378178459, + "c4": 4.512251502542764, + "c5": 3.3841886269070742, + "c6": 2.2561257512713846, + "c7": 1.1280628756356899 }, "rgb": [77, 76, 132] }, @@ -135330,23 +135330,23 @@ "year": 1748, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -19.717754991820573, - "c2": -23.449657759748973, - "c3": -24.569329596900523, - "c4": 25.296880232847244, - "c5": -3.6692393533082495, - "c6": -12.633093910786016, - "c7": -6.070448871714419 + "points": { + "c1": 1.1654130725671834, + "c2": 38.671301622755216, + "c3": 32.63803592669519, + "c4": -4.803652994007528, + "c5": -10.518485191440114, + "c6": 23.933055468966806, + "c7": 22.792680522889803 }, - "vertexSeeds": { - "c1": 6.0483692304817485, - "c2": 5.249187470067286, - "c3": 5.427190759465609, - "c4": 5.385762190461291, - "c5": 5.477023029944184, - "c6": 5.659104493726874, - "c7": 6.000637130076606 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192786, + "c3": 7.582061950993986, + "c4": 6.065649560795188, + "c5": 4.549237170596388, + "c6": 3.0328247803975987, + "c7": 1.5164123901987994 }, "rgb": [58, 15, 49] }, @@ -135357,23 +135357,23 @@ "year": 1748, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 14.317857513359925, - "c2": 15.02433722109069, - "c3": -13.071543247582749, - "c4": 24.02337027280433, - "c5": -30.817052799283992, - "c6": -14.668783854173142, - "c7": -30.850052921078742 + "points": { + "c1": 30.551757830891546, + "c2": 10.517885966027947, + "c3": 28.13088666888526, + "c4": 23.61795619125929, + "c5": -23.575158328655583, + "c6": -15.601654439231908, + "c7": -26.886464450397366 }, - "vertexSeeds": { - "c1": 7.486573851563764, - "c2": 6.74884109545954, - "c3": 6.863360669659942, - "c4": 7.0568260051170375, - "c5": 7.45255768464372, - "c6": 6.764358313358666, - "c7": 7.162094856334107 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471568, + "c4": 7.156726768377254, + "c5": 5.367545076282941, + "c6": 3.578363384188627, + "c7": 1.7891816920943135 }, "rgb": [222, 0, 59] }, @@ -135384,23 +135384,23 @@ "year": 1748, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 20.353457643838297, - "c2": -11.357394300631341, - "c3": -12.89941309895379, - "c4": 0.9597566586347561, - "c5": 21.18151781572862, - "c6": 19.315569976779933, - "c7": 23.983352219180134 + "points": { + "c1": -6.427466288695971, + "c2": 10.36875820428802, + "c3": -9.882035601487704, + "c4": -11.045130161764796, + "c5": -8.62485078264617, + "c6": -19.661943718488732, + "c7": 11.03348442924652 }, - "vertexSeeds": { - "c1": 9.288804425174725, - "c2": 7.935890545876677, - "c3": 9.422161330408139, - "c4": 8.221786515902789, - "c5": 9.355942981214948, - "c6": 10.03199058790844, - "c7": 10.102579741095536 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076284, + "c3": 12.11280628756357, + "c4": 9.690245030050855, + "c5": 7.267683772538142, + "c6": 4.845122515025428, + "c7": 2.422561257512714 }, "rgb": [58, 15, 49] }, @@ -135411,23 +135411,23 @@ "year": 1748, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -18.539642913120385, - "c2": -8.378490188197418, - "c3": 18.716698704682365, - "c4": -4.432370761859211, - "c5": -1.5838099074956844, - "c6": 21.1788970990457, - "c7": 21.79731100572767 + "points": { + "c1": -32.002525987682176, + "c2": -24.7324184601398, + "c3": 4.608417948615518, + "c4": -9.5163011679996, + "c5": -17.062636316089776, + "c6": -14.68967634212854, + "c7": -12.202376826280766 }, - "vertexSeeds": { - "c1": 6.632633684270315, - "c2": 6.013803286070274, - "c3": 6.09912229563278, - "c4": 6.918678577875861, - "c5": 6.262153718581641, - "c6": 6.422271386584907, - "c7": 5.9761949015466564 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399444, + "c3": 8.275543226999538, + "c4": 6.620434581599629, + "c5": 4.965325936199722, + "c6": 3.3102172907998146, + "c7": 1.6551086453999073 }, "rgb": [238, 201, 159] }, @@ -135438,23 +135438,23 @@ "year": 1748, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -16.80260725042989, - "c2": 30.07000561797998, - "c3": -35.41270225696341, - "c4": -40.98079150488836, - "c5": -35.02423741199982, - "c6": 15.949473805535973, - "c7": 1.501755143880608 + "points": { + "c1": -20.55163424547845, + "c2": 40.241326300541054, + "c3": -12.975987536718993, + "c4": -20.870959800023137, + "c5": -3.485472027471978, + "c6": 12.30600541519101, + "c7": 3.1806397713559917 }, - "vertexSeeds": { - "c1": 5.02128103336731, - "c2": 5.099497501234983, - "c3": 4.528589860935419, - "c4": 4.450019507854389, - "c5": 4.771053592640047, - "c6": 4.545450719485249, - "c7": 4.992351657080299 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819698, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.243643088303281 }, "rgb": [86, 146, 138] }, @@ -135465,23 +135465,23 @@ "year": 1749, "resistanceReported": false, "duration": 55728000, - "curveSeeds": { - "c1": -47.439758290784035, - "c2": 58.72126768798421, - "c3": 41.68853971816536, - "c4": -27.418589850388322, - "c5": -23.109852857957378, - "c6": 46.99490723718601, - "c7": -23.51285444599774 + "points": { + "c1": -42.75726780162674, + "c2": 4.514669165895043, + "c3": 15.818908487595394, + "c4": -63.92955932986071, + "c5": 54.70857914674259, + "c6": 18.83088318103438, + "c7": -62.8013533870675 }, - "vertexSeeds": { - "c1": 3.9528063877856057, - "c2": 3.799635204062247, - "c3": 3.8749950805339797, - "c4": 3.7872131950306316, - "c5": 3.9107352080319426, - "c6": 3.8612677973144067, - "c7": 4.053250677661521 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567262, + "c3": 4.923717059639391, + "c4": 3.9389736477115083, + "c5": 2.954230235783637, + "c6": 1.9694868238557541, + "c7": 0.9847434119278826 }, "rgb": [238, 201, 159] }, @@ -135492,23 +135492,23 @@ "year": 1748, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 32.10909074643993, - "c2": 20.832145042395545, - "c3": 19.856073594705684, - "c4": 29.418517906404645, - "c5": 34.744415447186256, - "c6": 26.966467490622257, - "c7": -22.43375218355537 + "points": { + "c1": 6.290912261235611, + "c2": -36.3867590596686, + "c3": -18.91536948439106, + "c4": 17.234135888272718, + "c5": -37.03478165896331, + "c6": 37.103056260182626, + "c7": 19.638754057477136 }, - "vertexSeeds": { - "c1": 4.331929079887799, - "c2": 4.4226594223239815, - "c3": 4.439995003023515, - "c4": 4.425198443932002, - "c5": 4.491800000958764, - "c6": 4.646086905476252, - "c7": 5.185827649989972 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.4895977808599135, + "c3": 6.241331484049933, + "c4": 4.993065187239944, + "c5": 3.744798890429959, + "c6": 2.4965325936199743, + "c7": 1.2482662968099845 }, "rgb": [77, 76, 132] }, @@ -135519,23 +135519,23 @@ "year": 1748, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": 29.808724129543457, - "c2": -1.3149294851007411, - "c3": 10.746609687423579, - "c4": -10.825483357424012, - "c5": -25.340506393929676, - "c6": -28.59348518276802, - "c7": 15.895601159014468 + "points": { + "c1": 13.500517659078085, + "c2": 0.6674193878343502, + "c3": 11.203301488890752, + "c4": -26.361329369914916, + "c5": -24.12075307114161, + "c6": 38.094000083555876, + "c7": 3.721043273138349 }, - "vertexSeeds": { - "c1": 9.960943137697997, - "c2": 9.465746055451358, - "c3": 10.25563166127095, - "c4": 9.847995102213456, - "c5": 10.056966431543836, - "c6": 10.212617951882955, - "c7": 10.052858065674178 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.034674063800274, + "c3": 12.52889505316689, + "c4": 10.02311604253352, + "c5": 7.517337031900137, + "c6": 5.011558021266767, + "c7": 2.5057790106333835 }, "rgb": [86, 146, 138] }, @@ -135546,23 +135546,23 @@ "year": 1748, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -25.14080314319702, - "c2": -3.8870080274292036, - "c3": -37.04677654519026, - "c4": 36.127196949987955, - "c5": -12.6876230415523, - "c6": -24.39636490483159, - "c7": 13.985808676571374 + "points": { + "c1": -39.61074461909412, + "c2": -38.648966265245065, + "c3": -0.30452709212333673, + "c4": -40.8553141358983, + "c5": -11.58337582798643, + "c6": -20.22323841308707, + "c7": 31.57895982329378 }, - "vertexSeeds": { - "c1": 8.413268711226618, - "c2": 9.588376507489764, - "c3": 9.389931430233153, - "c4": 9.143985517450298, - "c5": 9.589570677485263, - "c6": 9.254855026657198, - "c7": 8.527604947955737 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231625, + "c3": 11.62736939435969, + "c4": 9.301895515487754, + "c5": 6.976421636615819, + "c6": 4.650947757743871, + "c7": 2.3254738788719482 }, "rgb": [222, 0, 59] }, @@ -135573,23 +135573,23 @@ "year": 1749, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": 14.470180949245872, - "c2": -20.785170258300557, - "c3": 25.795082785262295, - "c4": 17.323094908065144, - "c5": -28.920854239166633, - "c6": -6.977944433542909, - "c7": -18.56841068108163 + "points": { + "c1": -31.8693716886669, + "c2": -13.733559768757146, + "c3": -35.49449458590852, + "c4": -50.88008951661052, + "c5": -48.185866660725594, + "c6": -35.87489398986479, + "c7": 1.5533398380438683 }, - "vertexSeeds": { - "c1": 4.863573623571428, - "c2": 4.38145469963968, - "c3": 5.16874584392511, - "c4": 4.725147369229738, - "c5": 5.08553183654022, - "c6": 5.146832881097084, - "c7": 4.883638614635417 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [58, 15, 49] }, @@ -135600,23 +135600,23 @@ "year": 1748, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -3.6918108932632308, - "c2": -4.50421725108842, - "c3": 17.54401572662392, - "c4": 14.264861365399469, - "c5": -4.284599100045007, - "c6": -29.617775329325244, - "c7": -5.859833409548543 + "points": { + "c1": 11.525304042446443, + "c2": -6.511371538347731, + "c3": -35.348822714480484, + "c4": 35.025867333958246, + "c5": -36.50096822524365, + "c6": -20.52401421899378, + "c7": 36.671452320033936 }, - "vertexSeeds": { - "c1": 4.040514021605378, - "c2": 3.7417305240224255, - "c3": 3.6449008723817653, - "c4": 3.9867732442868804, - "c5": 3.7307353616340984, - "c6": 3.867809607401105, - "c7": 3.6400970221315507 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.8834951456310707, + "c5": 2.9126213592232983, + "c6": 1.9417475728155353, + "c7": 0.970873786407772 }, "rgb": [77, 76, 132] }, @@ -135627,23 +135627,23 @@ "year": 1748, "resistanceReported": true, "duration": 24710400, - "curveSeeds": { - "c1": 26.17893415678042, - "c2": 26.062956504507945, - "c3": 36.606512099966835, - "c4": -19.508490760088495, - "c5": -2.7196193218838687, - "c6": 2.790475788618103, - "c7": -10.599899008676868 + "points": { + "c1": 34.45889720809822, + "c2": 13.205821692766648, + "c3": -12.562801130074547, + "c4": 31.5854885613756, + "c5": 2.153649551296702, + "c6": 21.866176583739183, + "c7": -16.591854859632715 }, - "vertexSeeds": { - "c1": 6.107751976890629, - "c2": 6.2158788761592, - "c3": 5.9602003899323, - "c4": 5.705590000823119, - "c5": 6.241448513340162, - "c6": 6.077637968640413, - "c7": 5.794826833260275 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.09847434119278, + "c3": 7.582061950993992, + "c4": 6.065649560795187, + "c5": 4.549237170596399, + "c6": 3.0328247803975934, + "c7": 1.5164123901988056 }, "rgb": [58, 15, 49] }, @@ -135654,23 +135654,23 @@ "year": 1748, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -24.574982817414316, - "c2": 6.629488511066683, - "c3": -2.1064367888054534, - "c4": 36.348650557724916, - "c5": -8.444395111685907, - "c6": 33.67927424874343, - "c7": -12.692685553050737 + "points": { + "c1": 12.23981909561774, + "c2": -24.936202297533065, + "c3": 40.551321595946185, + "c4": -14.461638026330863, + "c5": -2.9101626767716127, + "c6": -29.968396813381254, + "c7": 35.65234090245473 }, - "vertexSeeds": { - "c1": 5.250110062562418, - "c2": 4.67358575104247, - "c3": 4.788733303403355, - "c4": 4.784218950662754, - "c5": 4.172622426922757, - "c6": 4.100677367851085, - "c7": 5.159472432757851 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -135681,23 +135681,23 @@ "year": 1749, "resistanceReported": false, "duration": 48470400, - "curveSeeds": { - "c1": -58.62558478674042, - "c2": 42.825677747586184, - "c3": 39.394870815335025, - "c4": -52.370684716181174, - "c5": -25.429065021729457, - "c6": -49.96980978014028, - "c7": 61.0292095906962 + "points": { + "c1": 52.510934385573606, + "c2": -1.5748437322079383, + "c3": 35.803507186212556, + "c4": -6.627424353781258, + "c5": 1.7335221008981705, + "c6": 40.73084541067183, + "c7": 37.035218336459295 }, - "vertexSeeds": { - "c1": 8.692017116551396, - "c2": 8.625472562443992, - "c3": 9.180206735806216, - "c4": 8.281266647901472, - "c5": 9.109076601735179, - "c6": 8.55918490093933, - "c7": 8.875212783896378 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.20388349514564, + "c3": 11.003236245954696, + "c4": 8.80258899676375, + "c5": 6.60194174757282, + "c6": 4.401294498381889, + "c7": 2.2006472491909443 }, "rgb": [58, 15, 49] }, @@ -135708,23 +135708,23 @@ "year": 1748, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -19.551822585520295, - "c2": -16.13334761788543, - "c3": -33.87368232929291, - "c4": -26.124650939412213, - "c5": 14.632391736809097, - "c6": -6.260077214424555, - "c7": -31.34279097252405 + "points": { + "c1": -32.85485611591854, + "c2": 22.453002254690254, + "c3": -10.113194801161207, + "c4": 13.432759062595778, + "c5": 26.227423675990778, + "c6": -15.327707661077493, + "c7": 1.0255248243199162 }, - "vertexSeeds": { - "c1": 8.423426304807382, - "c2": 8.518224925656533, - "c3": 8.008035076852403, - "c4": 8.591536119819805, - "c5": 8.219826935951444, - "c6": 7.867544289584363, - "c7": 8.082671263119261 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065187, + "c3": 10.957004160887656, + "c4": 8.765603328710124, + "c5": 6.574202496532593, + "c6": 4.382801664355062, + "c7": 2.191400832177531 }, "rgb": [222, 0, 59] }, @@ -135735,23 +135735,23 @@ "year": 1748, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 19.558360779007785, - "c2": -12.660156849813731, - "c3": -19.895491629515206, - "c4": 12.865588195385428, - "c5": 11.215055702180017, - "c6": -20.957655901111327, - "c7": 9.108445397024532 + "points": { + "c1": -33.29781319710318, + "c2": -9.883010648044653, + "c3": 18.362958958703217, + "c4": -30.285506691768738, + "c5": -20.49423585506291, + "c6": 7.299689476589734, + "c7": 30.638604213551353 }, - "vertexSeeds": { - "c1": 8.681124325532064, - "c2": 8.70376620569949, - "c3": 8.235164138807969, - "c4": 8.049595839767202, - "c5": 8.634237976554072, - "c6": 8.136740583028267, - "c7": 8.672588485219253 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306511, + "c3": 11.095700416088766, + "c4": 8.876560332871007, + "c5": 6.657420249653263, + "c6": 4.438280166435503, + "c7": 2.219140083217746 }, "rgb": [58, 15, 49] }, @@ -135762,23 +135762,23 @@ "year": 1748, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -25.788721466158993, - "c2": -19.202942530545336, - "c3": -27.185485974548367, - "c4": -20.2816172508604, - "c5": -4.952939216783513, - "c6": 1.4134624179122461, - "c7": 0.9994878482804772 + "points": { + "c1": -13.246779768267363, + "c2": -11.690083331457362, + "c3": 17.701519989228668, + "c4": 13.68281773041868, + "c5": -26.975886554772295, + "c6": -23.95116424347742, + "c7": -1.4001111197996572 }, - "vertexSeeds": { - "c1": 4.992429470702308, - "c2": 4.533629468810027, - "c3": 4.187527992947423, - "c4": 3.368435895253812, - "c5": 3.8767248158395144, - "c6": 3.336442218330486, - "c7": 3.952783819831838 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457696, + "c3": 6.010171058714747, + "c4": 4.8081368469717995, + "c5": 3.606102635228848, + "c6": 2.404068423485897, + "c7": 1.2020342117429486 }, "rgb": [238, 201, 159] }, @@ -135789,23 +135789,23 @@ "year": 1748, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -4.202585566807205, - "c2": -13.562890426676322, - "c3": -14.183849533568736, - "c4": 29.6014020017752, - "c5": -1.466575343061571, - "c6": 10.568270783574832, - "c7": -21.02264791066745 + "points": { + "c1": -15.34401428211492, + "c2": -24.83867877747676, + "c3": 8.965501426426215, + "c4": -8.578382335899803, + "c5": -7.3129945534362015, + "c6": -1.6622112523302093, + "c7": 16.305935843341523 }, - "vertexSeeds": { - "c1": 7.415936889630482, - "c2": 7.950710255084459, - "c3": 8.436689057637116, - "c4": 7.807499178744132, - "c5": 7.2881897500373345, - "c6": 7.566988057300305, - "c7": 8.187203020975826 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536758, + "c3": 10.078594544613955, + "c4": 8.062875635691167, + "c5": 6.047156726768379, + "c6": 4.031437817845577, + "c7": 2.0157189089227887 }, "rgb": [238, 201, 159] }, @@ -135816,23 +135816,23 @@ "year": 1749, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": 27.312300563872185, - "c2": 31.32273667403105, - "c3": -28.978462844276905, - "c4": -19.300743353707475, - "c5": -0.9438329342387419, - "c6": 6.849960342954368, - "c7": -16.865685851509312 + "points": { + "c1": 49.714347460443165, + "c2": -39.27201418255915, + "c3": 24.338000379979846, + "c4": -18.117607306374516, + "c5": 53.811532033431746, + "c6": -48.93369735597423, + "c7": 14.805796787823226 }, - "vertexSeeds": { - "c1": 10.109932762686599, - "c2": 10.178395022038899, - "c3": 9.886567770507632, - "c4": 10.440009329054922, - "c5": 10.468632927065368, - "c6": 10.123751342143382, - "c7": 10.183169608159801 + "offsets": { + "c1": 17.57281553398058, + "c2": 15.062413314840514, + "c3": 12.552011095700392, + "c4": 10.041608876560323, + "c5": 7.531206657420257, + "c6": 5.020804438280135, + "c7": 2.5104022191400674 }, "rgb": [238, 201, 159] }, @@ -135843,23 +135843,23 @@ "year": 1749, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -28.83298931211828, - "c2": 35.892004324773495, - "c3": -22.42173710665094, - "c4": 40.737534442763746, - "c5": -40.88137162019113, - "c6": 12.900469418541412, - "c7": 19.882019919599202 + "points": { + "c1": 31.15628175264311, + "c2": 18.34436765844957, + "c3": -18.023383370396648, + "c4": 0.6445865342099921, + "c5": 41.74205310251193, + "c6": -31.01621143343803, + "c7": 41.27428401234833 }, - "vertexSeeds": { - "c1": 4.929557295216657, - "c2": 4.990140254376705, - "c3": 5.178124008187627, - "c4": 5.080440234646804, - "c5": 4.892258373640135, - "c6": 4.868620902803552, - "c7": 4.994978633588694 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940351, + "c3": 6.28756356911697, + "c4": 5.030050855293568, + "c5": 3.772538141470187, + "c6": 2.515025427646784, + "c7": 1.257512713823392 }, "rgb": [77, 76, 132] }, @@ -135870,23 +135870,23 @@ "year": 1749, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 16.872998315713986, - "c2": 12.341009100274825, - "c3": 12.718218576048343, - "c4": -17.094983610393484, - "c5": 33.721392276569105, - "c6": 5.595992313831779, - "c7": -12.149613277898908 + "points": { + "c1": 5.881945174170312, + "c2": 3.101511252038037, + "c3": -38.94110561274, + "c4": 4.081786366128952, + "c5": 32.291179911149186, + "c6": 35.611526046561295, + "c7": 30.48625869988544 }, - "vertexSeeds": { - "c1": 9.935084371862924, - "c2": 9.645840811545835, - "c3": 9.802720124793698, - "c4": 10.147838039189185, - "c5": 9.710282954064668, - "c6": 9.767190252878915, - "c7": 9.985202065160806 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.923717059639408, + "c3": 12.436430883032827, + "c4": 9.949144706426278, + "c5": 7.461858529819695, + "c6": 4.97457235321313, + "c7": 2.487286176606565 }, "rgb": [238, 201, 159] }, @@ -135897,23 +135897,23 @@ "year": 1749, "resistanceReported": false, "duration": 50630400, - "curveSeeds": { - "c1": 53.750446673966266, - "c2": 38.680078569572416, - "c3": 30.336349942321007, - "c4": 44.80196343319871, - "c5": -59.27572553788378, - "c6": 17.315101454932545, - "c7": 53.44841929914344 + "points": { + "c1": -28.650294004286124, + "c2": -28.578459799011817, + "c3": -14.377230264832185, + "c4": -9.358340863962354, + "c5": -7.79607095726324, + "c6": 48.35788182694155, + "c7": -60.58648653589249 }, - "vertexSeeds": { - "c1": 5.847043469586735, - "c2": 5.708896223286931, - "c3": 5.644677859085613, - "c4": 5.9829880993872235, - "c5": 5.971775060834375, - "c6": 5.609081694271258, - "c7": 5.560178255337726 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390654, + "c4": 5.732778548312527, + "c5": 4.299583911234399, + "c6": 2.8663892741562544, + "c7": 1.4331946370781272 }, "rgb": [58, 15, 49] }, @@ -135924,23 +135924,23 @@ "year": 1749, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 24.051169701301433, - "c2": -39.34564700067265, - "c3": 25.620595865983006, - "c4": 33.69447186139722, - "c5": -17.516462608747915, - "c6": 22.19875413780997, - "c7": 42.984386260431606 + "points": { + "c1": -36.90824126856164, + "c2": -45.02842389322612, + "c3": -35.44941509653577, + "c4": -3.110184099184764, + "c5": 12.884835559220775, + "c6": 37.452556641792356, + "c7": -24.16173057780523 }, - "vertexSeeds": { - "c1": 7.720256924580435, - "c2": 7.730657049637879, - "c3": 7.617443882033258, - "c4": 7.653633819199927, - "c5": 7.529636948967102, - "c6": 7.6412209382751834, - "c7": 7.692283202921573 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667129, + "c3": 9.269533055940807, + "c4": 7.415626444752653, + "c5": 5.5617198335645, + "c6": 3.7078132223763474, + "c7": 1.853906611188153 }, "rgb": [222, 0, 59] }, @@ -135951,23 +135951,23 @@ "year": 1749, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": -32.283651694863735, - "c2": 9.133101782004388, - "c3": 55.21364171790229, - "c4": 23.483440060955587, - "c5": -27.283020107391078, - "c6": 46.65698865168362, - "c7": 46.78423235073481 + "points": { + "c1": 49.037441993341204, + "c2": -8.414286485549553, + "c3": -47.792298310980875, + "c4": 25.71675318971205, + "c5": -29.505598922519795, + "c6": -44.21380136848848, + "c7": -29.04849680770358 }, - "vertexSeeds": { - "c1": 5.254266354047878, - "c2": 5.567913978800188, - "c3": 5.5343273981557894, - "c4": 5.395907136895361, - "c5": 5.498879169683052, - "c6": 5.73112701799512, - "c7": 5.354765570317762 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605178032 }, "rgb": [238, 201, 159] }, @@ -135978,23 +135978,23 @@ "year": 1749, "resistanceReported": false, "duration": 46915200, - "curveSeeds": { - "c1": -58.573337076191166, - "c2": 49.67902813794948, - "c3": -7.32727641250564, - "c4": -38.71575141003853, - "c5": -51.18900338221422, - "c6": 22.4021197554276, - "c7": -34.66966392224993 + "points": { + "c1": 54.24920762469136, + "c2": 52.195958690748775, + "c3": -59.6936247636161, + "c4": -46.4612482748059, + "c5": 27.318340877507048, + "c6": -0.6103805720978741, + "c7": -17.059154631030033 }, - "vertexSeeds": { - "c1": 9.584882177160901, - "c2": 9.352862824255668, - "c3": 10.353687334164878, - "c4": 10.499473710916236, - "c5": 9.561961216119897, - "c6": 9.767076445362909, - "c7": 9.271455580465302 + "offsets": { + "c1": 17.89644012944984, + "c2": 15.339805825242731, + "c3": 12.783171521035596, + "c4": 10.226537216828486, + "c5": 7.669902912621352, + "c6": 5.113268608414243, + "c7": 2.5566343042071082 }, "rgb": [222, 0, 59] }, @@ -136005,23 +136005,23 @@ "year": 1749, "resistanceReported": false, "duration": 47779200, - "curveSeeds": { - "c1": 44.024418487061965, - "c2": 23.87606496289554, - "c3": -34.301074048863754, - "c4": -2.994967077642052, - "c5": 56.80483636741384, - "c6": -15.887394961207463, - "c7": 8.211760619022627 + "points": { + "c1": 16.902820624516465, + "c2": 8.33253559807197, + "c3": 25.057867392638983, + "c4": -2.5124488475091837, + "c5": -40.86683535332398, + "c6": 44.73096787477158, + "c7": 58.90192154440426 }, - "vertexSeeds": { - "c1": 10.960935211486888, - "c2": 10.710793897174076, - "c3": 11.043214147039349, - "c4": 9.98082741538756, - "c5": 10.118831582758922, - "c6": 10.687780394452588, - "c7": 11.063561870884833 + "offsets": { + "c1": 18.51132686084142, + "c2": 15.866851595006928, + "c3": 13.222376329172432, + "c4": 10.577901063337965, + "c5": 7.93342579750347, + "c6": 5.288950531668975, + "c7": 2.644475265834481 }, "rgb": [77, 76, 132] }, @@ -136032,23 +136032,23 @@ "year": 1748, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -4.0398189326127465, - "c2": 42.54533059714007, - "c3": 3.38897910131908, - "c4": 29.44651191271449, - "c5": -1.7576272545370557, - "c6": 4.849840280090625, - "c7": 31.017414763899573 + "points": { + "c1": -5.004583744601959, + "c2": 20.887010680205755, + "c3": 23.751159446280447, + "c4": 12.982278367621397, + "c5": 43.31765531139926, + "c6": -10.593802230063083, + "c7": -44.04591852028761 }, - "vertexSeeds": { - "c1": 8.051429604488632, - "c2": 8.036792812098067, - "c3": 7.412252313315864, - "c4": 7.620679199055225, - "c5": 8.207763340019612, - "c6": 8.273685517764552, - "c7": 8.159923674737648 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335643, + "c3": 9.963014331946367, + "c4": 7.97041146555709, + "c5": 5.9778085991678145, + "c6": 3.985205732778552, + "c7": 1.992602866389276 }, "rgb": [86, 146, 138] }, @@ -136059,23 +136059,23 @@ "year": 1749, "resistanceReported": false, "duration": 51062400, - "curveSeeds": { - "c1": -6.983785569769388, - "c2": -56.3889148974317, - "c3": 50.01701543675445, - "c4": 27.19866505408271, - "c5": 14.089167922523714, - "c6": 26.612437264622073, - "c7": 17.522459268315657 + "points": { + "c1": 49.8842645245508, + "c2": 33.15961418677266, + "c3": 52.979085484628925, + "c4": -18.859015523940855, + "c5": 42.89180747778077, + "c6": -53.08133659437988, + "c7": 45.051329342828495 }, - "vertexSeeds": { - "c1": 7.9703642496094, - "c2": 8.276969722340558, - "c3": 8.453438064114128, - "c4": 8.075628628369802, - "c5": 8.83784362610167, - "c6": 8.76393737413457, - "c7": 8.641666256214128 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.95423023578364, + "c3": 10.795191863153027, + "c4": 8.636153490522426, + "c5": 6.477115117891813, + "c6": 4.318076745261213, + "c7": 2.1590383726305995 }, "rgb": [77, 76, 132] }, @@ -136086,23 +136086,23 @@ "year": 1749, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": -13.720421519374483, - "c2": -50.82312230939625, - "c3": -24.840385946262735, - "c4": -9.925974006423239, - "c5": -14.665604089304622, - "c6": 38.535298023362195, - "c7": -16.411260471139713 + "points": { + "c1": -30.356682633914584, + "c2": 14.470735722909247, + "c3": 1.4323796288754096, + "c4": -35.00456297548885, + "c5": -14.84485400169509, + "c6": 22.0502129754343, + "c7": -42.519030453838994 }, - "vertexSeeds": { - "c1": 10.592835939569264, - "c2": 9.842730582332262, - "c3": 9.989843489524711, - "c4": 10.520035399315681, - "c5": 10.653355701454714, - "c6": 10.140904194293325, - "c7": 9.579898042545631 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644948, + "c3": 13.014331946370778, + "c4": 10.411465557096633, + "c5": 7.808599167822462, + "c6": 5.205732778548317, + "c7": 2.6028663892741446 }, "rgb": [58, 15, 49] }, @@ -136113,23 +136113,23 @@ "year": 1749, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 10.550900792408264, - "c2": 36.962850260981455, - "c3": 39.94645345016126, - "c4": -30.11250253569328, - "c5": 39.960002398259036, - "c6": -21.172583655238487, - "c7": -19.28770575427575 + "points": { + "c1": -38.04778078449449, + "c2": 15.73724106112958, + "c3": 35.81491974667114, + "c4": 41.59288623546871, + "c5": 40.02365104393613, + "c6": -5.986249768688289, + "c7": -12.361797108040548 }, - "vertexSeeds": { - "c1": 5.814253367491556, - "c2": 5.7317346121538, - "c3": 5.9052695973260185, - "c4": 6.406497736445693, - "c5": 5.910680440552162, - "c6": 5.932741926100124, - "c7": 5.929914570777219 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -136140,23 +136140,23 @@ "year": 1749, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 23.927756508967548, - "c2": 27.732887071128204, - "c3": 25.835128847027548, - "c4": 42.08424667329139, - "c5": 11.819219315126986, - "c6": -33.51080225371875, - "c7": -28.039803542249324 + "points": { + "c1": 32.24275766586871, + "c2": 32.667756462926704, + "c3": 10.333856844443744, + "c4": 24.032404351471456, + "c5": 17.299135721205744, + "c6": -0.14021368998115236, + "c7": -3.800856866517023 }, - "vertexSeeds": { - "c1": 1.415427234496895, - "c2": 1.5442579628782558, - "c3": 1.4729009803661228, - "c4": 1.506810966510998, - "c5": 1.5196101714005115, - "c6": 1.5664950444037025, - "c7": 1.4531941828737445 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.2746185852981964, + "c3": 1.8955154877484963, + "c4": 1.516412390198796, + "c5": 1.137309292649096, + "c6": 0.7582061950994001, + "c7": 0.37910309754970006 }, "rgb": [77, 76, 132] }, @@ -136167,23 +136167,23 @@ "year": 1749, "resistanceReported": true, "duration": 51062400, - "curveSeeds": { - "c1": 43.04260580477778, - "c2": -60.701325692730435, - "c3": 43.992684901446665, - "c4": 37.22238470412212, - "c5": -4.984876798478339, - "c6": 35.82441435150092, - "c7": 12.202055850030561 + "points": { + "c1": -52.47145228128022, + "c2": 34.01597139056673, + "c3": 18.842051009356638, + "c4": 4.565287704903184, + "c5": 20.862461947008896, + "c6": 15.662284272447167, + "c7": 6.805761006896304 }, - "vertexSeeds": { - "c1": 3.838857015845073, - "c2": 3.1927713766194494, - "c3": 3.942768102424491, - "c4": 3.2962215492171723, - "c5": 3.0212572980245227, - "c6": 3.772548994620374, - "c7": 3.319668273228542 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768378, + "c3": 5.039297272306982, + "c4": 4.0314378178455845, + "c5": 3.023578363384189, + "c6": 2.0157189089227936, + "c7": 1.0078594544613952 }, "rgb": [58, 15, 49] }, @@ -136194,23 +136194,23 @@ "year": 1749, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -23.638202846176778, - "c2": 4.2551682575658845, - "c3": 39.280915581508495, - "c4": -0.6105044362547147, - "c5": -16.421423716143526, - "c6": -25.891012740172126, - "c7": 26.430644641744166 + "points": { + "c1": 28.38483075391312, + "c2": 2.2859440523101995, + "c3": 10.659244284611361, + "c4": 13.101007379123189, + "c5": -40.51574771480307, + "c6": -35.44253860214873, + "c7": 11.749875419096433 }, - "vertexSeeds": { - "c1": 4.258684781290414, - "c2": 4.136503366436547, - "c3": 3.9060274891008517, - "c4": 3.829162750071949, - "c5": 3.980356629167162, - "c6": 4.073938343075795, - "c7": 4.568119001262698 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -136221,23 +136221,23 @@ "year": 1749, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -10.522835666307806, - "c2": -1.5875121575949436, - "c3": -36.00792803412154, - "c4": -12.849964640177348, - "c5": -43.87289070686151, - "c6": 31.061537081446204, - "c7": 33.10516748188343 + "points": { + "c1": -32.327651715824395, + "c2": 5.521670358280922, + "c3": 1.5150995831289862, + "c4": -45.82305376274092, + "c5": -12.954940821369455, + "c6": -39.15707915494279, + "c7": 41.14938164523869 }, - "vertexSeeds": { - "c1": 2.993139078223534, - "c2": 3.270158496582237, - "c3": 3.077599368737268, - "c4": 3.2933952314007993, - "c5": 3.075514167052596, - "c6": 3.1276551672290633, - "c7": 3.119864348902956 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [86, 146, 138] }, @@ -136248,23 +136248,23 @@ "year": 1750, "resistanceReported": false, "duration": 65750400, - "curveSeeds": { - "c1": 79.73667356307391, - "c2": 31.696467647228474, - "c3": 53.27152930749844, - "c4": 5.685559154553616, - "c5": 76.4505026896995, - "c6": -73.13379761109815, - "c7": -20.910555455207238 + "points": { + "c1": -53.93670556895479, + "c2": 72.95441193495915, + "c3": 10.21871437268723, + "c4": -51.116869863545624, + "c5": -5.615386215447856, + "c6": 61.580511558319955, + "c7": 37.61448113360696 }, - "vertexSeeds": { - "c1": 3.850688614532206, - "c2": 3.9284587335598005, - "c3": 3.81395283943631, - "c4": 3.6686720903323637, - "c5": 3.373103093256689, - "c6": 3.5313474415439314, - "c7": 3.7013088425570912 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205273, + "c3": 4.715672676837725, + "c4": 3.7725381414701817, + "c5": 2.829403606102634, + "c6": 1.8862690707350909, + "c7": 0.9431345353675429 }, "rgb": [238, 201, 159] }, @@ -136275,23 +136275,23 @@ "year": 1749, "resistanceReported": false, "duration": 46828800, - "curveSeeds": { - "c1": 39.231472446524776, - "c2": -22.680525326081835, - "c3": -0.3028982508507525, - "c4": 41.66184782752052, - "c5": 59.83430915741161, - "c6": -4.123025892848531, - "c7": -48.16737462398113 + "points": { + "c1": 61.050642308744756, + "c2": 0.9307651523050566, + "c3": -30.530336964582524, + "c4": -31.787866898052876, + "c5": -60.98998003321201, + "c6": 40.1492285049882, + "c7": -22.251295138872337 }, - "vertexSeeds": { - "c1": 4.181791857573023, - "c2": 4.12665847312886, - "c3": 4.128836924861158, - "c4": 4.150429399028195, - "c5": 3.960795750339933, - "c6": 4.164517981838906, - "c7": 4.0288538389205995 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [58, 15, 49] }, @@ -136302,23 +136302,23 @@ "year": 1750, "resistanceReported": false, "duration": 74908800, - "curveSeeds": { - "c1": 10.079279725763172, - "c2": 38.362949784801074, - "c3": 86.09984537136462, - "c4": 88.51057058591691, - "c5": -31.47643084556759, - "c6": -86.81906403922895, - "c7": -32.184507961843 + "points": { + "c1": 21.40708957264782, + "c2": -52.29093668156019, + "c3": -76.92251189509247, + "c4": 61.2530270827077, + "c5": 61.7059730284803, + "c6": -91.64149901261347, + "c7": 84.32763399639101 }, - "vertexSeeds": { - "c1": 3.9291326077207294, - "c2": 3.64278236391716, - "c3": 3.5953964603890625, - "c4": 3.505014868959636, - "c5": 3.5315754155756225, - "c6": 3.579432358326802, - "c7": 3.7164876646428215 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366162, + "c3": 4.808136846971799, + "c4": 3.8465094775774413, + "c5": 2.8848821081830773, + "c6": 1.9232547387887207, + "c7": 0.9616273693943637 }, "rgb": [58, 15, 49] }, @@ -136329,23 +136329,23 @@ "year": 1748, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 12.599175161590495, - "c2": 15.460726925805872, - "c3": 17.602496665372428, - "c4": -14.594860315247942, - "c5": -32.836081285636986, - "c6": -1.3715975585829057, - "c7": 8.74059747154459 + "points": { + "c1": 33.43659505138254, + "c2": 11.396397898025448, + "c3": 20.123911201545454, + "c4": -27.487140891140573, + "c5": 28.2573227833157, + "c6": 11.522189940459981, + "c7": 5.733851817791177 }, - "vertexSeeds": { - "c1": 4.841327572743673, - "c2": 5.344037011186485, - "c3": 5.157471316643175, - "c4": 5.377541931559969, - "c5": 4.511517492270462, - "c6": 4.90705609622563, - "c7": 4.5852173304517585 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382806, + "c3": 6.541840036985666, + "c4": 5.233472029588537, + "c5": 3.925104022191403, + "c6": 2.6167360147942684, + "c7": 1.3083680073971342 }, "rgb": [238, 201, 159] }, @@ -136356,23 +136356,23 @@ "year": 1748, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 16.245421822240374, - "c2": -21.41274115772525, - "c3": -23.87312889306586, - "c4": -30.125972925553828, - "c5": 4.502633971233784, - "c6": -24.76310042368054, - "c7": -2.4854599751330753 + "points": { + "c1": -29.285063896296407, + "c2": 1.8708500076075651, + "c3": 9.099777246073437, + "c4": -5.193378566228603, + "c5": -8.11290322310381, + "c6": 27.82406191834847, + "c7": 28.774099376251435 }, - "vertexSeeds": { - "c1": 3.9788322916093493, - "c2": 4.485084340014997, - "c3": 4.23435694862148, - "c4": 4.402669191200571, - "c5": 3.8586983701738213, - "c6": 4.5275924804370655, - "c7": 4.3556208487921975 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572816, + "c3": 5.501618122977348, + "c4": 4.40129449838188, + "c5": 3.3009708737864107, + "c6": 2.2006472491909372, + "c7": 1.1003236245954737 }, "rgb": [58, 15, 49] }, @@ -136383,23 +136383,23 @@ "year": 1748, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 7.820197605216713, - "c2": 30.840353321492586, - "c3": -3.9252367079911146, - "c4": -2.6113792475093973, - "c5": -28.532742082425422, - "c6": 26.52909537940821, - "c7": 10.773410163497402 + "points": { + "c1": 20.44856172876448, + "c2": -5.377642772260742, + "c3": -4.929319058364811, + "c4": -19.575479657572075, + "c5": 24.932749492515043, + "c6": -27.174048716096753, + "c7": -33.17094280579501 }, - "vertexSeeds": { - "c1": 6.069479480379544, - "c2": 6.790768793337506, - "c3": 6.304691261739358, - "c4": 6.3042132094204435, - "c5": 6.5153876527085535, - "c6": 7.1808092592837784, - "c7": 6.750227444511194 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123435, + "c3": 8.691631992602867, + "c4": 6.953305594082289, + "c5": 5.214979195561712, + "c6": 3.4766527970411447, + "c7": 1.7383263985205673 }, "rgb": [58, 15, 49] }, @@ -136410,23 +136410,23 @@ "year": 1748, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 17.397053963838804, - "c2": 0.22964258564068984, - "c3": -18.35088099977266, - "c4": 28.484189897145786, - "c5": 20.378471683757656, - "c6": 20.862286022823657, - "c7": -2.5221196766648895 + "points": { + "c1": -18.78930424065768, + "c2": -19.24300465789719, + "c3": 23.719201409365247, + "c4": 6.785907678569586, + "c5": 14.422253798842647, + "c6": 25.671099357468904, + "c7": 30.082348285845363 }, - "vertexSeeds": { - "c1": 3.2895778901249364, - "c2": 3.1983419654341674, - "c3": 2.732273683903011, - "c4": 2.834508743191526, - "c5": 3.174509200615908, - "c6": 3.198546230153364, - "c7": 3.1911469244252926 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877949, + "c3": 3.952843273231624, + "c4": 3.162274618585301, + "c5": 2.3717059639389766, + "c6": 1.5811373092926477, + "c7": 0.7905686546463239 }, "rgb": [238, 201, 159] }, @@ -136437,23 +136437,23 @@ "year": 1748, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -8.13504996383891, - "c2": 27.20433727071635, - "c3": 30.73186408901927, - "c4": 35.3331965415035, - "c5": 6.277197330223764, - "c6": 18.916482521126348, - "c7": -7.836113987170819 + "points": { + "c1": 13.930550315542284, + "c2": 29.778629443086643, + "c3": -7.51209207271161, + "c4": -25.464683743604915, + "c5": 15.784731408236837, + "c6": -22.45013353247926, + "c7": -25.882397885526046 }, - "vertexSeeds": { - "c1": 3.9573376499140034, - "c2": 4.156867979653749, - "c3": 4.289468763476649, - "c4": 4.637389330154203, - "c5": 4.665735639964117, - "c6": 4.415451150488628, - "c7": 4.460447938099488 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.7683772538141485, + "c3": 5.640314378178459, + "c4": 4.512251502542764, + "c5": 3.3841886269070742, + "c6": 2.2561257512713846, + "c7": 1.1280628756356899 }, "rgb": [77, 76, 132] }, @@ -136464,23 +136464,23 @@ "year": 1749, "resistanceReported": false, "duration": 46310400, - "curveSeeds": { - "c1": 27.963478593734607, - "c2": 57.936210316592565, - "c3": 45.78025990791953, - "c4": 11.00591090846406, - "c5": -59.26986777892106, - "c6": -7.8155500368030815, - "c7": 53.283716971585136 + "points": { + "c1": 2.1959840172360714, + "c2": -51.9395055232948, + "c3": 46.19749986811358, + "c4": 51.00720332522043, + "c5": 57.023653559408615, + "c6": 51.658384901821705, + "c7": -12.001280751662804 }, - "vertexSeeds": { - "c1": 2.5138066504640095, - "c2": 2.3851593923347814, - "c3": 2.51186799274933, - "c4": 2.316211136499516, - "c5": 2.4783389511844107, - "c6": 2.289983129075117, - "c7": 2.544032958644664 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349516, + "c3": 3.0744336569579316, + "c4": 2.4595469255663427, + "c5": 1.844660194174758, + "c6": 1.2297734627831733, + "c7": 0.6148867313915888 }, "rgb": [86, 146, 138] }, @@ -136491,23 +136491,23 @@ "year": 1749, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -35.57778653808389, - "c2": -27.04614696517689, - "c3": -29.17587600860019, - "c4": -17.132043916194505, - "c5": -15.39857700840603, - "c6": 15.42903970458481, - "c7": 26.19301779869558 + "points": { + "c1": 12.606136589681732, + "c2": 25.934539101373332, + "c3": -4.636980292359574, + "c4": -1.560852784583659, + "c5": -50.56759952782374, + "c6": -4.97626593472652, + "c7": 45.935229970707724 }, - "vertexSeeds": { - "c1": 9.55859199332587, - "c2": 10.676354431961611, - "c3": 9.547198935725676, - "c4": 9.881528431915541, - "c5": 9.760424936693845, - "c6": 10.361948775077694, - "c7": 10.869007434848985 + "offsets": { + "c1": 18.25242718446602, + "c2": 15.644937586685163, + "c3": 13.037447988904312, + "c4": 10.429958391123428, + "c5": 7.822468793342576, + "c6": 5.214979195561721, + "c7": 2.6074895977808676 }, "rgb": [58, 15, 49] }, @@ -136518,23 +136518,23 @@ "year": 1748, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -19.744574214631196, - "c2": -21.693368445703733, - "c3": 16.895533265163216, - "c4": -28.926069568846156, - "c5": 12.520205458112926, - "c6": 5.000574868928602, - "c7": 2.8291292838890953 + "points": { + "c1": -6.320416144662907, + "c2": 25.702721620260576, + "c3": -38.46966728170166, + "c4": -28.820772456343796, + "c5": 3.819329964516328, + "c6": -2.127087469568089, + "c7": 29.09226547664133 }, - "vertexSeeds": { - "c1": 5.4610444682205435, - "c2": 5.231219203227244, - "c3": 5.6284230361071135, - "c4": 5.2871100434436755, - "c5": 5.281846419433658, - "c6": 5.678512303876111, - "c7": 5.534888936608877 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.21081830790569, + "c3": 6.842348589921411, + "c4": 5.4738788719371225, + "c5": 4.105409153952845, + "c6": 2.7369394359685666, + "c7": 1.3684697179842833 }, "rgb": [238, 201, 159] }, @@ -136545,23 +136545,23 @@ "year": 1748, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 23.904801847868974, - "c2": 27.346936916245447, - "c3": -12.80966728308923, - "c4": -27.871593778832064, - "c5": 9.454630738094615, - "c6": 1.0496232574516355, - "c7": -28.139739306251126 + "points": { + "c1": -19.86162996574994, + "c2": -12.504944338935953, + "c3": 26.784023734710487, + "c4": 3.2414572523233574, + "c5": 20.53235808689473, + "c6": -6.689759018206743, + "c7": 31.779724694728955 }, - "vertexSeeds": { - "c1": 4.525556906270271, - "c2": 4.501849444880789, - "c3": 4.649839470692004, - "c4": 5.070411795322487, - "c5": 4.802924053060029, - "c6": 4.932859252238292, - "c7": 4.59230810452796 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -136572,23 +136572,23 @@ "year": 1748, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -26.70336118485885, - "c2": 19.60458234906096, - "c3": -20.998745261221824, - "c4": -24.226614906487818, - "c5": 12.648780673402289, - "c6": -6.592140467727869, - "c7": 9.136963725698205 + "points": { + "c1": -16.748257550102778, + "c2": -19.232057598384984, + "c3": -27.6973239152238, + "c4": 29.80967142815398, + "c5": -28.315789923947467, + "c6": 9.51391334415035, + "c7": 0.035662392335709114 }, - "vertexSeeds": { - "c1": 4.921113201602808, - "c2": 4.982401503560197, - "c3": 5.244882723127184, - "c4": 4.952996792552188, - "c5": 5.16246163094431, - "c6": 4.889417850360739, - "c7": 4.290164982574999 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -136599,23 +136599,23 @@ "year": 1748, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -23.844791175419566, - "c2": 6.431147802515696, - "c3": -30.930953749815636, - "c4": -17.278616219733912, - "c5": 0.746320703340956, - "c6": 4.2280934952302545, - "c7": -32.3742024856352 + "points": { + "c1": 9.640852828258723, + "c2": 11.72528651208421, + "c3": -27.10034946522671, + "c4": -22.052882258254673, + "c5": -17.502460821288242, + "c6": -10.887202270788151, + "c7": -10.170367554885722 }, - "vertexSeeds": { - "c1": 6.218894386491038, - "c2": 6.93725711696818, - "c3": 6.912662156042362, - "c4": 6.559590582844267, - "c5": 6.462006065387589, - "c6": 7.145562659172943, - "c7": 6.9028868030248525 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882114, + "c3": 8.552935737401754, + "c4": 6.842348589921409, + "c5": 5.13176144244105, + "c6": 3.4211742949607045, + "c7": 1.7105871474803456 }, "rgb": [238, 201, 159] }, @@ -136626,23 +136626,23 @@ "year": 1748, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 18.964099366215393, - "c2": 3.5561391700633393, - "c3": 30.46042117425165, - "c4": -7.611079285414281, - "c5": -18.040291163671196, - "c6": -17.62228902462569, - "c7": 0.35074986452786305 + "points": { + "c1": 4.946147735200732, + "c2": -27.432644317090556, + "c3": -16.730534393221618, + "c4": -25.214311401005006, + "c5": 2.020078254132173, + "c6": -0.8125211857072472, + "c7": -1.2725637742383356 }, - "vertexSeeds": { - "c1": 4.655737293692603, - "c2": 4.941687447020371, - "c3": 4.9187519136542655, - "c4": 4.925726694602369, - "c5": 5.115102987534355, - "c6": 4.5201972694118515, - "c7": 5.061832613855999 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658814, + "c3": 6.12575127138234, + "c4": 4.900601017105871, + "c5": 3.6754507628294033, + "c6": 2.4503005085529357, + "c7": 1.2251502542764678 }, "rgb": [238, 201, 159] }, @@ -136653,23 +136653,23 @@ "year": 1748, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 10.357552791992852, - "c2": -22.053475522761858, - "c3": 8.615600947337875, - "c4": 22.16514878220623, - "c5": 14.62147476480353, - "c6": 19.532185602045857, - "c7": -3.7529105583341433 + "points": { + "c1": 28.234063578836192, + "c2": -23.32365982669655, + "c3": -15.74039395045486, + "c4": -22.977553094155788, + "c5": 24.720551796258256, + "c6": 20.831182737106246, + "c7": 4.041187604081188 }, - "vertexSeeds": { - "c1": 9.69202891392435, - "c2": 9.519047201298587, - "c3": 10.465880641713902, - "c4": 9.734648532171096, - "c5": 9.12316987004929, - "c6": 10.43212661156944, - "c7": 10.092973499174912 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.979195561719845, + "c3": 12.482662968099854, + "c4": 9.98613037447989, + "c5": 7.489597780859914, + "c6": 4.993065187239938, + "c7": 2.496532593619976 }, "rgb": [86, 146, 138] }, @@ -136680,23 +136680,23 @@ "year": 1748, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 7.015256355925999, - "c2": 2.5682504179238137, - "c3": -7.734596004321947, - "c4": 6.4152019370534035, - "c5": -32.65897913812445, - "c6": 34.08921675016569, - "c7": -5.3226937353173795 + "points": { + "c1": -22.467299188183198, + "c2": -22.19624656374349, + "c3": 14.395619522130154, + "c4": 14.827533667059932, + "c5": 33.64447950348256, + "c6": -8.228236165474335, + "c7": 33.039154914883824 }, - "vertexSeeds": { - "c1": 4.046945387975169, - "c2": 3.6192765306687043, - "c3": 4.047084906090831, - "c4": 3.726174623018881, - "c5": 3.655881584248428, - "c6": 4.134086646855608, - "c7": 3.787191799382258 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.2135922330097095, + "c3": 5.177993527508092, + "c4": 4.142394822006475, + "c5": 3.106796116504852, + "c6": 2.0711974110032347, + "c7": 1.0355987055016174 }, "rgb": [58, 15, 49] }, @@ -136707,23 +136707,23 @@ "year": 1749, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -37.19572280730411, - "c2": -22.48248198993781, - "c3": 37.36148301268844, - "c4": 11.522861554738157, - "c5": 18.64252326931033, - "c6": -8.34002163972212, - "c7": -21.338374010151373 + "points": { + "c1": -21.015358424947195, + "c2": 34.45090511487929, + "c3": -19.813183309535635, + "c4": -28.059794879288688, + "c5": 8.734710952770762, + "c6": -16.751932163696985, + "c7": 18.306798749984175 }, - "vertexSeeds": { - "c1": 8.818215259365804, - "c2": 8.7835612273445, - "c3": 8.592746977345165, - "c4": 8.640602788388088, - "c5": 8.577214485506618, - "c6": 9.21159281637507, - "c7": 9.023589855341084 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.42579750346741, + "c3": 11.188164586222843, + "c4": 8.950531668978279, + "c5": 6.712898751733714, + "c6": 4.47526583448913, + "c7": 2.237632917244565 }, "rgb": [86, 146, 138] }, @@ -136734,23 +136734,23 @@ "year": 1748, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -7.173615119814748, - "c2": 34.73859201402372, - "c3": 25.18861675321442, - "c4": -29.235901728289686, - "c5": -18.767315577796513, - "c6": 16.049005065428275, - "c7": 7.059952217549103 + "points": { + "c1": 33.93099830792178, + "c2": -0.7988829036450511, + "c3": -1.3973505857516955, + "c4": -6.154177670585405, + "c5": -14.129769998964385, + "c6": -25.185524102810543, + "c7": -29.372784325256212 }, - "vertexSeeds": { - "c1": 3.930952422099276, - "c2": 4.145717610905487, - "c3": 3.593431829669008, - "c4": 3.9464654791321436, - "c5": 4.01729985646596, - "c6": 3.893379240920288, - "c7": 3.5530691317685066 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969486, + "c3": 5.154877484974575, + "c4": 4.123901987979659, + "c5": 3.092926490984743, + "c6": 2.061950993989832, + "c7": 1.030975496994916 }, "rgb": [58, 15, 49] }, @@ -136761,23 +136761,23 @@ "year": 1748, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 24.5098822402963, - "c2": 7.665697138722088, - "c3": 24.42409941736493, - "c4": 28.6762030200605, - "c5": -15.331840981715047, - "c6": -10.969039388395007, - "c7": -12.255809521065437 + "points": { + "c1": 27.764433686285102, + "c2": 17.011373255345468, + "c3": 33.22944473044576, + "c4": 26.213897555019443, + "c5": 9.210417662116562, + "c6": -24.50791306901089, + "c7": 30.57496323036598 }, - "vertexSeeds": { - "c1": 4.682262575856314, - "c2": 4.121392260749677, - "c3": 4.747919352346344, - "c4": 4.733815032114455, - "c5": 4.907234378019783, - "c6": 4.861677249006826, - "c7": 4.138555842173043 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296807, + "c3": 5.917706888580676, + "c4": 4.734165510864538, + "c5": 3.5506241331484065, + "c6": 2.367082755432269, + "c7": 1.183541377716132 }, "rgb": [58, 15, 49] }, @@ -136788,23 +136788,23 @@ "year": 1749, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -25.785336168812627, - "c2": -30.82165189835855, - "c3": -15.38482678148246, - "c4": 20.557989420001647, - "c5": 13.098610177944508, - "c6": 2.754431453576551, - "c7": -23.256740503985583 + "points": { + "c1": 12.296512498439164, + "c2": 29.31493649959107, + "c3": 30.41151918129441, + "c4": 35.77345243952999, + "c5": 6.258477647917701, + "c6": 28.667668945737063, + "c7": -23.531643555156585 }, - "vertexSeeds": { - "c1": 4.64220896236737, - "c2": 4.162782075098239, - "c3": 4.259670670758639, - "c4": 4.250807234829753, - "c5": 4.142243649976297, - "c6": 4.376466987838614, - "c7": 3.821669691107095 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -136815,23 +136815,23 @@ "year": 1749, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -16.16846300515035, - "c2": -34.322627441941414, - "c3": -3.6428225466718516, - "c4": -4.696284871387352, - "c5": -10.98101599903924, - "c6": 29.274700150523117, - "c7": 3.7415088401817798 + "points": { + "c1": 11.607843698983721, + "c2": 22.837094791025763, + "c3": 8.978946658400822, + "c4": 15.595534439852386, + "c5": 13.427486615465035, + "c6": 34.88752292327675, + "c7": 15.696227715851556 }, - "vertexSeeds": { - "c1": 9.398445688627199, - "c2": 9.61362179175701, - "c3": 10.666064013530153, - "c4": 9.202928747885457, - "c5": 9.739065167775045, - "c6": 10.556455149505682, - "c7": 10.366258967355545 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.25658807212204, + "c3": 12.713823393435048, + "c4": 10.171058714748028, + "c5": 7.628294036061034, + "c6": 5.085529357374014, + "c7": 2.5427646786870195 }, "rgb": [238, 201, 159] }, @@ -136842,23 +136842,23 @@ "year": 1748, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -0.21330322999355644, - "c2": 1.7281278671589106, - "c3": 5.30469155069126, - "c4": -25.425586712066085, - "c5": -11.88178688350418, - "c6": -30.36956425048909, - "c7": 18.149961834254704 + "points": { + "c1": -25.172372803081743, + "c2": 2.642113666831321, + "c3": -31.38406786756383, + "c4": 16.05652848524049, + "c5": 21.931840142740555, + "c6": 17.347968808904433, + "c7": 10.722351668868868 }, - "vertexSeeds": { - "c1": 6.745464534599633, - "c2": 6.762307992401972, - "c3": 7.132600582698391, - "c4": 6.411255244623889, - "c5": 7.087134695732758, - "c6": 6.61196301140221, - "c7": 6.837599378677565 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525661, + "c3": 8.922792417938052, + "c4": 7.138233934350445, + "c5": 5.353675450762837, + "c6": 3.569116967175216, + "c7": 1.784558483587608 }, "rgb": [222, 0, 59] }, @@ -136869,23 +136869,23 @@ "year": 1749, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 10.77758724210792, - "c2": 32.984671219532984, - "c3": -23.18533215058546, - "c4": -17.329232928722714, - "c5": 0.9298832460556312, - "c6": -19.536922654588782, - "c7": 29.88883828715464 + "points": { + "c1": -22.092351707131737, + "c2": 39.20899343914617, + "c3": 10.1569655473793, + "c4": 35.04437782474878, + "c5": -21.130775075973403, + "c6": 33.78940369149599, + "c7": 6.590664805408764 }, - "vertexSeeds": { - "c1": 4.988070811945956, - "c2": 5.116772778187529, - "c3": 5.260360526280999, - "c4": 4.579916094248532, - "c5": 4.588761682233927, - "c6": 4.570294463215209, - "c7": 4.399666989149236 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940357, + "c3": 6.287563569116972, + "c4": 5.030050855293576, + "c5": 3.7725381414701786, + "c6": 2.515025427646788, + "c7": 1.2575127138233964 }, "rgb": [58, 15, 49] }, @@ -136896,23 +136896,23 @@ "year": 1749, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 27.983457342749695, - "c2": 33.92484473100351, - "c3": 33.598550472146165, - "c4": 7.905394189910943, - "c5": 29.366777557490288, - "c6": 51.896108141401406, - "c7": -19.154540366674276 + "points": { + "c1": 18.971318713560017, + "c2": 50.055639211215784, + "c3": 40.7957197951718, + "c4": 9.53041657568533, + "c5": -42.87988342275192, + "c6": -19.639982694021583, + "c7": 53.61777923525613 }, - "vertexSeeds": { - "c1": 6.283127568681385, - "c2": 6.2713019631513935, - "c3": 6.798480351137337, - "c4": 6.24338361833764, - "c5": 6.6221750517442866, - "c6": 6.578137012589073, - "c7": 6.8251356209929295 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238566, + "c3": 8.183079056865463, + "c4": 6.546463245492378, + "c5": 4.909847434119274, + "c6": 3.273231622746189, + "c7": 1.636615811373104 }, "rgb": [222, 0, 59] }, @@ -136923,23 +136923,23 @@ "year": 1749, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 13.528760295999113, - "c2": -30.792263259319114, - "c3": -33.762626496097546, - "c4": 6.882962457491047, - "c5": -15.818724766836294, - "c6": 12.409003832598607, - "c7": 34.32889974894999 + "points": { + "c1": 28.39612457957908, + "c2": 11.043410694233735, + "c3": -25.22141398689265, + "c4": -32.698279467335524, + "c5": -8.34483395343176, + "c6": -20.53041475941389, + "c7": -8.351389207539121 }, - "vertexSeeds": { - "c1": 5.908086212927195, - "c2": 5.5413975102753215, - "c3": 6.489204470905586, - "c4": 6.052027677943395, - "c5": 6.350236639183555, - "c6": 6.603717298958242, - "c7": 5.534328953528468 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715676, + "c3": 7.88257050392973, + "c4": 6.306056403143787, + "c5": 4.729542302357842, + "c6": 3.1530282015718876, + "c7": 1.5765141007859542 }, "rgb": [222, 0, 59] }, @@ -136950,23 +136950,23 @@ "year": 1749, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 25.42087643753569, - "c2": -3.6333690885512198, - "c3": 0.09513401021651191, - "c4": 29.73412043460189, - "c5": -15.68346543253508, - "c6": 4.564687192375459, - "c7": -17.40243805078206 + "points": { + "c1": -33.929065456203006, + "c2": 18.750832798137658, + "c3": -30.485197012398572, + "c4": 17.104275065497447, + "c5": -2.3963191046046717, + "c6": 18.971310398014353, + "c7": -10.70599154248978 }, - "vertexSeeds": { - "c1": 4.2461266352833, - "c2": 4.843929658505707, - "c3": 4.956231717747159, - "c4": 4.581850633344393, - "c5": 5.161569528181231, - "c6": 4.371448206972496, - "c7": 4.6993135344749675 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -136977,23 +136977,23 @@ "year": 1749, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -28.72409056671265, - "c2": 0.6417699011116653, - "c3": 11.073327526074294, - "c4": 21.128587672337424, - "c5": 24.959603280384314, - "c6": 5.360079525373983, - "c7": -5.911731283374348 + "points": { + "c1": -25.97001754977626, + "c2": 32.45925350438097, + "c3": -32.56412767811532, + "c4": 27.08758788335141, + "c5": 11.837315523555823, + "c6": -34.42190996611846, + "c7": -28.544545732822407 }, - "vertexSeeds": { - "c1": 6.423544638985147, - "c2": 7.093166573262939, - "c3": 6.924592111406319, - "c4": 6.336294449463285, - "c5": 6.808835466028552, - "c6": 6.234250599834841, - "c7": 6.934802887045293 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [58, 15, 49] }, @@ -137004,23 +137004,23 @@ "year": 1749, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 10.798999889972102, - "c2": -12.94932374660748, - "c3": -37.73748137259207, - "c4": -5.174038643831707, - "c5": -37.58001409892525, - "c6": -4.783756937015127, - "c7": -16.43568006728519 + "points": { + "c1": 41.19789043529889, + "c2": -37.73136853996507, + "c3": -18.402060578750163, + "c4": 17.907160209963997, + "c5": -0.0512559879599479, + "c6": -20.505062454123774, + "c7": 24.32488831736613 }, - "vertexSeeds": { - "c1": 7.0751103136665074, - "c2": 7.488020897320226, - "c3": 7.4315522009050365, - "c4": 6.8326660889964455, - "c5": 7.066997370758682, - "c6": 7.397081231748352, - "c7": 7.501908241496736 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766994, + "c3": 9.061488673139156, + "c4": 7.24919093851133, + "c5": 5.436893203883491, + "c6": 3.624595469255665, + "c7": 1.8122977346278262 }, "rgb": [58, 15, 49] }, @@ -137031,23 +137031,23 @@ "year": 1749, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -10.294243178412508, - "c2": -1.112255853613835, - "c3": -9.36753463280587, - "c4": 11.134773853541407, - "c5": 4.060331710743686, - "c6": -21.226755087187776, - "c7": 23.203232258264475 + "points": { + "c1": 27.18538805223433, + "c2": 6.796858860874124, + "c3": -16.597559913134056, + "c4": 11.872292233415635, + "c5": 25.1746060132065, + "c6": 23.17994425403372, + "c7": 1.527211254948476 }, - "vertexSeeds": { - "c1": 4.041241402021933, - "c2": 4.203940942451136, - "c3": 4.299038900044646, - "c4": 4.396034399679073, - "c5": 4.186881568671413, - "c6": 4.637027342877748, - "c7": 4.088597685937108 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -137058,23 +137058,23 @@ "year": 1749, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -16.591378472582203, - "c2": -19.665970732730067, - "c3": 23.51608774822309, - "c4": -0.13366280281828224, - "c5": -5.916000846279349, - "c6": -3.3952710262532584, - "c7": -25.450596593104343 + "points": { + "c1": 5.846381528759991, + "c2": 2.8178330603951594, + "c3": 31.734464482929965, + "c4": 13.832383226089625, + "c5": 8.960347927639326, + "c6": 31.674684710178127, + "c7": 1.0594796842946295 }, - "vertexSeeds": { - "c1": 2.571310726439987, - "c2": 2.7980686045041816, - "c3": 2.5780073581617278, - "c4": 2.824937362627408, - "c5": 2.6644831987134454, - "c6": 2.713711446130406, - "c7": 2.7197117498883965 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [222, 0, 59] }, @@ -137085,23 +137085,23 @@ "year": 1749, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 37.56963416184183, - "c2": -14.260912536736345, - "c3": 21.93105980061722, - "c4": -14.251196606176773, - "c5": 17.297503980031358, - "c6": 0.13945705628105998, - "c7": 19.65902757879153 + "points": { + "c1": 29.788093668229507, + "c2": 26.74943144154885, + "c3": -34.953280305094985, + "c4": 33.20938853967709, + "c5": 20.23256092934797, + "c6": -18.07987994491323, + "c7": -4.724584822213082 }, - "vertexSeeds": { - "c1": 9.182426476567333, - "c2": 9.030562219751127, - "c3": 8.626572474647578, - "c4": 9.06557176225859, - "c5": 8.556382600039969, - "c6": 9.005132365376479, - "c7": 9.047703174801036 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105405, + "c3": 10.98012020342118, + "c4": 8.78409616273694, + "c5": 6.5880721220527025, + "c6": 4.392048081368477, + "c7": 2.1960240406842386 }, "rgb": [238, 201, 159] }, @@ -137112,23 +137112,23 @@ "year": 1749, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -45.757510781383715, - "c2": 12.399951761565099, - "c3": -6.897383757419085, - "c4": -17.232939020917986, - "c5": -46.92823599314624, - "c6": -37.79325050521934, - "c7": -14.908553511801543 + "points": { + "c1": -2.0161026623968112, + "c2": -24.020531507719465, + "c3": 38.99721139217896, + "c4": 17.958380363789338, + "c5": -28.292389106301947, + "c6": -22.795932974887116, + "c7": -9.097138731070231 }, - "vertexSeeds": { - "c1": 4.3988736140264955, - "c2": 4.221067364697729, - "c3": 4.417631531591752, - "c4": 4.274215547158473, - "c5": 4.081202755753071, - "c6": 4.196189673170362, - "c7": 4.317705745050091 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [86, 146, 138] }, @@ -137139,23 +137139,23 @@ "year": 1749, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 12.770004776619587, - "c2": 26.570508901219803, - "c3": -10.737184658361404, - "c4": 21.760262611659854, - "c5": 31.10442140350318, - "c6": 15.491536892693198, - "c7": 3.671457479898585 + "points": { + "c1": -31.409541536487012, + "c2": 17.410909829001653, + "c3": -33.31044925126053, + "c4": -29.74319114229819, + "c5": -22.173495975556165, + "c6": -32.84408051079777, + "c7": 25.585272271876228 }, - "vertexSeeds": { - "c1": 7.071453113534279, - "c2": 7.180843571785708, - "c3": 6.722398092480255, - "c4": 6.757455299709898, - "c5": 7.19179101294068, - "c6": 6.897321542970292, - "c7": 7.021992569249062 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008319, + "c3": 9.200184928340262, + "c4": 7.360147942672217, + "c5": 5.520110957004159, + "c6": 3.680073971336102, + "c7": 1.8400369856680572 }, "rgb": [77, 76, 132] }, @@ -137166,23 +137166,23 @@ "year": 1749, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 12.001772026655743, - "c2": -9.63451951665931, - "c3": 10.15939971507337, - "c4": 8.109094834101214, - "c5": -34.047696570340115, - "c6": -4.125352934298146, - "c7": 20.917512540385097 + "points": { + "c1": 19.02925931012804, + "c2": -6.199512177101596, + "c3": -20.67896155963768, + "c4": 13.763237737193109, + "c5": -27.863675594083197, + "c6": 14.770428462683988, + "c7": 13.901999845457098 }, - "vertexSeeds": { - "c1": 4.572213787786242, - "c2": 4.853273437462482, - "c3": 4.224775230414701, - "c4": 4.788411399634513, - "c5": 4.188137228927512, - "c6": 4.531100143617734, - "c7": 4.170208072142915 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296807, + "c3": 5.917706888580676, + "c4": 4.734165510864538, + "c5": 3.5506241331484065, + "c6": 2.367082755432269, + "c7": 1.183541377716132 }, "rgb": [238, 201, 159] }, @@ -137193,23 +137193,23 @@ "year": 1749, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -21.593522237456092, - "c2": 11.059211807040619, - "c3": -25.446719610217357, - "c4": -8.330313836507301, - "c5": 2.1150974291698432, - "c6": -27.2805332421786, - "c7": 6.212035417256253 + "points": { + "c1": 29.056029829632756, + "c2": 10.02329166710431, + "c3": -12.360980098811087, + "c4": -15.34035790293764, + "c5": 22.08443205584136, + "c6": 20.393498618424523, + "c7": -31.398040686200808 }, - "vertexSeeds": { - "c1": 4.197911255495247, - "c2": 3.9130542436116365, - "c3": 4.576716754841241, - "c4": 3.848025426975694, - "c5": 4.12861391304321, - "c6": 4.516148454615504, - "c7": 3.926083593045733 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [77, 76, 132] }, @@ -137220,23 +137220,23 @@ "year": 1749, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -26.5084546197677, - "c2": 20.05169508931065, - "c3": -8.560000989692842, - "c4": -26.06143279518443, - "c5": -17.30726052679026, - "c6": 31.426342147450782, - "c7": 16.271841190323613 + "points": { + "c1": -25.186667745180504, + "c2": -20.959825744602675, + "c3": -6.536054953446648, + "c4": -28.939220127407395, + "c5": -20.316723164596915, + "c6": 3.411265810237296, + "c7": 32.92294907646561 }, - "vertexSeeds": { - "c1": 3.5865346571908727, - "c2": 4.027268641658544, - "c3": 4.106291632977208, - "c4": 3.5473387375527343, - "c5": 3.515309586087906, - "c6": 4.089971894209429, - "c7": 3.7166356123776603 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374016, + "c4": 4.0684234858992125, + "c5": 3.0513176144244074, + "c6": 2.034211742949603, + "c7": 1.0171058714747991 }, "rgb": [222, 0, 59] }, @@ -137247,23 +137247,23 @@ "year": 1749, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -3.79032666138297, - "c2": 33.0223795000136, - "c3": -24.839180544697054, - "c4": 26.199555489527526, - "c5": -34.00689279206943, - "c6": -31.114217247087353, - "c7": -8.952531237859858 + "points": { + "c1": -9.802680500195748, + "c2": -29.351642890889252, + "c3": -40.9605080015231, + "c4": 23.18722586218294, + "c5": 32.51500158829903, + "c6": 17.613612326306942, + "c7": -24.597598877210164 }, - "vertexSeeds": { - "c1": 3.036165043197774, - "c2": 3.593133583506425, - "c3": 3.115357871698571, - "c4": 3.1930719953436038, - "c5": 3.4619583996658676, - "c6": 3.3611348212488688, - "c7": 3.61377025566154 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.2981969486823886, + "c3": 4.415164123901988, + "c4": 3.532131299121592, + "c5": 2.6490984743411916, + "c6": 1.766065649560796, + "c7": 0.8830328247804006 }, "rgb": [86, 146, 138] }, @@ -137274,23 +137274,23 @@ "year": 1749, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -14.172675569805278, - "c2": 33.95231208476217, - "c3": 19.30391074232535, - "c4": -9.018957961741872, - "c5": -3.4821794028613127, - "c6": 1.8109942682162554, - "c7": -1.8573167293990664 + "points": { + "c1": 33.74203158284767, + "c2": 17.19345423562762, + "c3": -28.437220732961478, + "c4": -34.590524202625694, + "c5": 13.940272314995084, + "c6": 9.794050425699652, + "c7": 19.557400551310778 }, - "vertexSeeds": { - "c1": 6.106302793249419, - "c2": 6.535199386603759, - "c3": 6.200292684097092, - "c4": 6.466331358893807, - "c5": 6.5272710703453996, - "c6": 6.735045009561608, - "c7": 6.044376320982273 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.73647711511789, + "c3": 8.113730929264905, + "c4": 6.490984743411922, + "c5": 4.868238557558938, + "c6": 3.2454923717059674, + "c7": 1.6227461858529837 }, "rgb": [238, 201, 159] }, @@ -137301,23 +137301,23 @@ "year": 1749, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 38.99637536809824, - "c2": -19.31109950056594, - "c3": 38.070429057666104, - "c4": -5.473311031882574, - "c5": 25.177949788791963, - "c6": -1.7670256491459284, - "c7": 5.8147264565654595 + "points": { + "c1": 9.643566610080633, + "c2": -37.5317360320931, + "c3": 14.73091594936782, + "c4": 23.80080691244264, + "c5": 41.408809380857946, + "c6": -20.603105087114194, + "c7": -4.5804330013276555 }, - "vertexSeeds": { - "c1": 7.618556751989855, - "c2": 7.5695455376436795, - "c3": 7.624186241000239, - "c4": 6.855620072504793, - "c5": 7.011181656985501, - "c6": 6.820211718238714, - "c7": 7.292877522190432 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887662, + "c3": 9.130836800739708, + "c4": 7.30466944059177, + "c5": 5.478502080443831, + "c6": 3.652334720295876, + "c7": 1.826167360147938 }, "rgb": [222, 0, 59] }, @@ -137328,23 +137328,23 @@ "year": 1749, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 34.94538021961131, - "c2": -21.578631371242952, - "c3": -21.631346628956592, - "c4": -4.429439429718315, - "c5": 37.55730621870107, - "c6": 16.729341636668245, - "c7": 34.06490198179044 + "points": { + "c1": -29.790844513842558, + "c2": 2.677123195078522, + "c3": -32.12027220491877, + "c4": -10.740850202982113, + "c5": -34.69901678868166, + "c6": -40.00694175107624, + "c7": 32.128013909534886 }, - "vertexSeeds": { - "c1": 4.327622524398704, - "c2": 5.005412602241678, - "c3": 5.017566516050055, - "c4": 5.016513695892441, - "c5": 4.655472897216655, - "c6": 4.320683316868966, - "c7": 4.3875867358840095 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.4895977808599135, + "c3": 6.241331484049933, + "c4": 4.993065187239944, + "c5": 3.744798890429959, + "c6": 2.4965325936199743, + "c7": 1.2482662968099845 }, "rgb": [58, 15, 49] }, @@ -137355,23 +137355,23 @@ "year": 1749, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 14.984238296176628, - "c2": 4.962149209246405, - "c3": -21.593050967904738, - "c4": 31.258920329025486, - "c5": 3.9898765697229237, - "c6": 0.5735180773725688, - "c7": 7.674824862804293 + "points": { + "c1": -28.783004832134466, + "c2": 15.502628877701106, + "c3": 9.372355786547566, + "c4": -18.514299651986693, + "c5": -16.74459110330617, + "c6": 32.39633178412659, + "c7": 17.433410536688527 }, - "vertexSeeds": { - "c1": 5.143512445949382, - "c2": 5.225325042944376, - "c3": 4.995410042319443, - "c4": 5.200223500301226, - "c5": 5.210186962331607, - "c6": 4.475411891603017, - "c7": 5.250283532915283 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980579, + "c3": 6.310679611650489, + "c4": 5.048543689320389, + "c5": 3.7864077669902922, + "c6": 2.5242718446601966, + "c7": 1.2621359223300956 }, "rgb": [238, 201, 159] }, @@ -137382,23 +137382,23 @@ "year": 1749, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -11.1317294454762, - "c2": -24.435880201985494, - "c3": -0.36379400982847443, - "c4": -5.370603708182234, - "c5": 11.936369577205753, - "c6": 27.61668597679315, - "c7": -5.699052883352525 + "points": { + "c1": 18.55400467817047, + "c2": 15.199059507564428, + "c3": 16.084914547380464, + "c4": 36.353628207783146, + "c5": 13.182029310904838, + "c6": 5.606511273946573, + "c7": -24.801921320445736 }, - "vertexSeeds": { - "c1": 7.279401302587856, - "c2": 6.943856543489761, - "c3": 7.296648361519132, - "c4": 7.633325740587333, - "c5": 7.59089477063637, - "c6": 6.956293989995745, - "c7": 6.894093565061852 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968099, + "c3": 9.177068885806744, + "c4": 7.3416551086453925, + "c5": 5.5062413314840395, + "c6": 3.670827554322688, + "c7": 1.8354137771613348 }, "rgb": [222, 0, 59] }, @@ -137409,23 +137409,23 @@ "year": 1749, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -13.731768871910418, - "c2": -28.898913537923292, - "c3": 37.04364667193912, - "c4": -24.660121903675947, - "c5": -44.95379882234271, - "c6": -10.917506180945281, - "c7": 32.897245731987034 + "points": { + "c1": -27.144656204766438, + "c2": 11.428965256784345, + "c3": 33.611811096628706, + "c4": -21.293024460051345, + "c5": 41.76148222225485, + "c6": 36.10804458464411, + "c7": 6.0366815164309955 }, - "vertexSeeds": { - "c1": 10.405089149405885, - "c2": 9.66553869370465, - "c3": 10.86949897797509, - "c4": 9.991384181244685, - "c5": 9.89840223390002, - "c6": 10.14264324777143, - "c7": 10.559304032303164 + "offsets": { + "c1": 18.54368932038835, + "c2": 15.894590846047146, + "c3": 13.245492371705968, + "c4": 10.596393897364763, + "c5": 7.947295423023586, + "c6": 5.2981969486823814, + "c7": 2.6490984743412045 }, "rgb": [86, 146, 138] }, @@ -137436,23 +137436,23 @@ "year": 1749, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 18.25847765799012, - "c2": -12.927144067000736, - "c3": 24.415130931094673, - "c4": -32.37690701714772, - "c5": 28.8813193204345, - "c6": -24.096080364142423, - "c7": 16.572444854088666 + "points": { + "c1": -18.542291345214807, + "c2": -24.31079796177462, + "c3": 2.435420008206222, + "c4": 20.823975840971855, + "c5": 25.215847135157567, + "c6": -7.725912969985327, + "c7": -28.96511632115227 }, - "vertexSeeds": { - "c1": 9.18503356604707, - "c2": 8.073944890219334, - "c3": 8.611021840302206, - "c4": 8.934748057250024, - "c5": 8.819203484191283, - "c6": 8.720853299759723, - "c7": 8.911565799064594 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065187, + "c3": 10.957004160887656, + "c4": 8.765603328710124, + "c5": 6.574202496532593, + "c6": 4.382801664355062, + "c7": 2.191400832177531 }, "rgb": [222, 0, 59] }, @@ -137463,23 +137463,23 @@ "year": 1749, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -17.398143533510133, - "c2": -11.726360077653354, - "c3": -12.270518487143429, - "c4": -11.15370340615029, - "c5": -4.022176255594168, - "c6": 17.614191328533295, - "c7": -12.588831395074292 + "points": { + "c1": -4.880898353978807, + "c2": 2.7842265795954546, + "c3": 8.386508585912729, + "c4": 10.989868426605256, + "c5": 24.006136593286584, + "c6": -18.55060622929699, + "c7": 6.8988705028587844 }, - "vertexSeeds": { - "c1": 4.315163708610095, - "c2": 4.694273771386556, - "c3": 4.9856322922842615, - "c4": 4.315935051803089, - "c5": 4.23665256978769, - "c6": 4.804083208891279, - "c7": 4.174791580801656 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -137490,23 +137490,23 @@ "year": 1749, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -24.817771147796062, - "c2": 13.759939342824275, - "c3": -15.273615368970386, - "c4": -20.533141156929016, - "c5": -14.525564151785215, - "c6": -4.845967738913689, - "c7": 22.098362074785925 + "points": { + "c1": 13.40161764378098, + "c2": 9.819433303403514, + "c3": -16.06877016502575, + "c4": -26.89912094330828, + "c5": -6.921832270328263, + "c6": 20.69651537083338, + "c7": -4.242032635360324 }, - "vertexSeeds": { - "c1": 7.6828591436204015, - "c2": 7.435069801517239, - "c3": 6.627636130571341, - "c4": 6.659504100868814, - "c5": 7.677631781791517, - "c6": 6.536325683022531, - "c7": 6.811866556644462 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289872, + "c3": 9.361997226074891, + "c4": 7.489597780859918, + "c5": 5.617198335644936, + "c6": 3.744798890429954, + "c7": 1.872399445214972 }, "rgb": [77, 76, 132] }, @@ -137517,23 +137517,23 @@ "year": 1749, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -16.885005346712408, - "c2": 3.0475861470548935, - "c3": 31.86945602351919, - "c4": 0.9476246086632898, - "c5": 1.6901239060928788, - "c6": -3.6712968049725347, - "c7": 27.67867405148133 + "points": { + "c1": 24.366673887361166, + "c2": -11.49922026676343, + "c3": -36.39454857819007, + "c4": -12.913486508232275, + "c5": 27.68630008843263, + "c6": -17.063290597199558, + "c7": 27.56194773922566 }, - "vertexSeeds": { - "c1": 5.055068065276624, - "c2": 4.251860302838516, - "c3": 5.324021691444944, - "c4": 4.45082024569386, - "c5": 4.318390261014199, - "c6": 4.108767474431744, - "c7": 4.43905310018955 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -137544,23 +137544,23 @@ "year": 1749, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 14.753416148873114, - "c2": -18.516862045681, - "c3": -16.25325015689308, - "c4": 24.602613853128616, - "c5": 9.021158068120144, - "c6": 1.572730040807059, - "c7": -5.703535553831546 + "points": { + "c1": 26.134236282355403, + "c2": 17.753799792356105, + "c3": 8.58870355699134, + "c4": -19.328462870328813, + "c5": -2.7303641411479873, + "c6": 26.75305119303588, + "c7": 2.8930444449941817 }, - "vertexSeeds": { - "c1": 1.5015714867542371, - "c2": 1.4866164145999394, - "c3": 1.4712074494318133, - "c4": 1.4816657599443923, - "c5": 1.5023203332851682, - "c6": 1.4630746579602427, - "c7": 1.3969170498353343 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217755, + "c3": 1.8492834026814593, + "c4": 1.4794267221451682, + "c5": 1.1095700416088774, + "c6": 0.7397133610725865, + "c7": 0.3698566805362909 }, "rgb": [77, 76, 132] }, @@ -137571,23 +137571,23 @@ "year": 1749, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": -22.985765742698746, - "c2": -35.42842169642824, - "c3": 18.642663850873596, - "c4": 4.463882552085806, - "c5": -4.860081579669952, - "c6": -47.82624548905138, - "c7": -50.027944725500596 + "points": { + "c1": 28.81617265645243, + "c2": 14.893746953494222, + "c3": 37.984581469822494, + "c4": 54.27391574290575, + "c5": -38.79412739210416, + "c6": -34.704272461032005, + "c7": -44.28825203609438 }, - "vertexSeeds": { - "c1": 10.695227610781222, - "c2": 11.88022580943493, - "c3": 11.619598543198222, - "c4": 11.172455579217495, - "c5": 11.641240149170363, - "c6": 11.993273422072896, - "c7": 11.887093982938394 + "offsets": { + "c1": 20.51779935275081, + "c2": 17.586685159500696, + "c3": 14.655570966250586, + "c4": 11.724456773000476, + "c5": 8.793342579750336, + "c6": 5.862228386500223, + "c7": 2.9311141932501115 }, "rgb": [58, 15, 49] }, @@ -137598,23 +137598,23 @@ "year": 1750, "resistanceReported": false, "duration": 46051200, - "curveSeeds": { - "c1": 19.587891864906204, - "c2": 42.90719787185785, - "c3": -3.377166336131957, - "c4": -37.08563571257413, - "c5": -35.42547147878497, - "c6": 3.81468118456268, - "c7": -38.98241386600162 + "points": { + "c1": -18.897606101664728, + "c2": 62.065342637671314, + "c3": 4.258125612047714, + "c4": 30.97960245396974, + "c5": 60.50558413090152, + "c6": -61.68791851716978, + "c7": -12.074024082390444 }, - "vertexSeeds": { - "c1": 5.150579057239957, - "c2": 4.843681637775503, - "c3": 4.692909705439121, - "c4": 4.928132255310563, - "c5": 5.170366472464234, - "c6": 5.097646572516766, - "c7": 4.791222235000963 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -137625,23 +137625,23 @@ "year": 1750, "resistanceReported": false, "duration": 64800000, - "curveSeeds": { - "c1": 7.482563505244613, - "c2": -33.91718259604068, - "c3": 33.16890006766644, - "c4": -48.84156974042368, - "c5": -27.8584441780516, - "c6": 57.44510565264096, - "c7": 16.672543302813438 + "points": { + "c1": 30.887648289187652, + "c2": 75.47593965225687, + "c3": 54.32262722068114, + "c4": -34.3275375964841, + "c5": 52.956221811103234, + "c6": 1.6879864072999027, + "c7": -35.40734408723919 }, - "vertexSeeds": { - "c1": 4.0023922507364915, - "c2": 3.880662479934965, - "c3": 3.9836000663711877, - "c4": 3.7664217059942997, - "c5": 3.811563535732799, - "c6": 3.8634697632022816, - "c7": 3.791693966473184 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.85298196948682, + "c3": 4.877484974572357, + "c4": 3.9019879796578834, + "c5": 2.92649098474341, + "c6": 1.950993989828947, + "c7": 0.9754969949144735 }, "rgb": [222, 0, 59] }, @@ -137652,23 +137652,23 @@ "year": 1749, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 23.477717928940848, - "c2": -8.203252141721027, - "c3": -16.618339895418586, - "c4": -1.2688482179911311, - "c5": 1.176147552454374, - "c6": 18.493932554043376, - "c7": 12.849314774662432 + "points": { + "c1": 15.07064395230698, + "c2": 20.464679291585853, + "c3": -8.809854494676408, + "c4": -8.277065875509297, + "c5": -20.16802266306108, + "c6": -0.21483127795205448, + "c7": 6.551488532398004 }, - "vertexSeeds": { - "c1": 2.8443109784694802, - "c2": 2.6201213408516972, - "c3": 2.628730475980612, - "c4": 2.7740338457371214, - "c5": 2.775409747177549, - "c6": 2.7755247035858703, - "c7": 2.639968398777575 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [222, 0, 59] }, @@ -137679,23 +137679,23 @@ "year": 1749, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 33.47623857527462, - "c2": -23.52018230080392, - "c3": 6.504281588640524, - "c4": -24.879100731208574, - "c5": -9.313624409902047, - "c6": 30.100010553386127, - "c7": -19.991285887002974 + "points": { + "c1": 0.883671261843844, + "c2": 15.397271294254082, + "c3": -15.50179085432094, + "c4": 21.134957219894538, + "c5": -36.367239018221156, + "c6": 17.58760201982672, + "c7": 15.957935726766507 }, - "vertexSeeds": { - "c1": 7.207911846808795, - "c2": 7.502220328150202, - "c3": 6.885922219336097, - "c4": 7.785106812959216, - "c5": 7.5903328959500165, - "c6": 7.270510883030639, - "c7": 7.899031580706591 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450768, + "c3": 9.454461396208965, + "c4": 7.563569116967174, + "c5": 5.672676837725384, + "c6": 3.7817845584835803, + "c7": 1.8908922792417902 }, "rgb": [86, 146, 138] }, @@ -137706,23 +137706,23 @@ "year": 1749, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -15.05392163749763, - "c2": 22.624764617589648, - "c3": -15.43911405331863, - "c4": 19.537080526870426, - "c5": 12.027064686221038, - "c6": 21.3716522459397, - "c7": -14.108705031592152 + "points": { + "c1": 28.875228779993023, + "c2": 8.285313753530893, + "c3": 3.00570104433384, + "c4": 2.3692731590369718, + "c5": -28.815927001132145, + "c6": -11.01346095225136, + "c7": -21.412763140273967 }, - "vertexSeeds": { - "c1": 4.753549390042021, - "c2": 4.567405261009926, - "c3": 4.533170401563368, - "c4": 4.376275310849381, - "c5": 4.57771624502702, - "c6": 4.5395882833613275, - "c7": 4.655980837540559 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975037, + "c3": 5.732778548312532, + "c4": 4.586222838650028, + "c5": 3.439667128987524, + "c6": 2.293111419325009, + "c7": 1.1465557096625147 }, "rgb": [58, 15, 49] }, @@ -137733,23 +137733,23 @@ "year": 1749, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -3.8418438259214156, - "c2": 3.4327624613532066, - "c3": 11.873819434793646, - "c4": -26.238866157069737, - "c5": -33.54348430948345, - "c6": 32.220354051687906, - "c7": 19.93687441359286 + "points": { + "c1": 33.674795008454225, + "c2": 32.412977069737664, + "c3": -27.057150693558043, + "c4": 8.664305938404326, + "c5": 20.545724063972067, + "c6": -15.953458149869029, + "c7": -38.08296071276454 }, - "vertexSeeds": { - "c1": 2.5172473936412545, - "c2": 2.5973493119379283, - "c3": 2.9297738348662015, - "c4": 2.8025409360140245, - "c5": 2.904556109447324, - "c6": 2.7613246684003125, - "c7": 2.542211454830898 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [222, 0, 59] }, @@ -137760,23 +137760,23 @@ "year": 1749, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 5.825725388412472, - "c2": 20.541822583093058, - "c3": 0.9580974133723288, - "c4": -20.43141091848618, - "c5": 40.13617364946449, - "c6": -9.525804672060879, - "c7": -16.867091892216884 + "points": { + "c1": 4.624612117845018, + "c2": 24.671467767110165, + "c3": -42.13487880821602, + "c4": 21.48407489691342, + "c5": 14.250394975790229, + "c6": 15.865927464858366, + "c7": -44.14588431847433 }, - "vertexSeeds": { - "c1": 5.645671635139145, - "c2": 5.990897774236876, - "c3": 5.512996138984109, - "c4": 5.79632870753845, - "c5": 6.191915657229682, - "c6": 6.334152214737061, - "c7": 6.042311664913802 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [222, 0, 59] }, @@ -137787,23 +137787,23 @@ "year": 1749, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 28.53833178843675, - "c2": -9.045054836392389, - "c3": -28.731116756282898, - "c4": 40.673312322126236, - "c5": -21.179715989388118, - "c6": -36.42216023897226, - "c7": -14.719643723584593 + "points": { + "c1": 20.69028404294157, + "c2": 24.081401942766746, + "c3": -22.236292482677285, + "c4": -41.71481461247396, + "c5": 21.330190586859473, + "c6": 31.37445987777906, + "c7": 7.278802820029064 }, - "vertexSeeds": { - "c1": 4.050707125623576, - "c2": 3.929068479255468, - "c3": 3.9993459827602122, - "c4": 3.978613535325868, - "c5": 3.688215990516185, - "c6": 3.543651859302635, - "c7": 4.095608649195431 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728154, + "c3": 5.016181229773463, + "c4": 4.01294498381877, + "c5": 3.009708737864077, + "c6": 2.006472491909385, + "c7": 1.0032362459546924 }, "rgb": [58, 15, 49] }, @@ -137814,23 +137814,23 @@ "year": 1749, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -13.510447457526933, - "c2": 6.333215110500181, - "c3": 7.965543119132018, - "c4": -4.3231526852624675, - "c5": -11.861831336073724, - "c6": 0.6329295715234551, - "c7": 15.099009338358435 + "points": { + "c1": 19.722737300497123, + "c2": 17.61291632555961, + "c3": -18.36950892138379, + "c4": 6.1234264717591, + "c5": -10.139877767891733, + "c6": -17.31855114529565, + "c7": -14.375388597841079 }, - "vertexSeeds": { - "c1": 5.5176466397005814, - "c2": 6.077635638019726, - "c3": 5.765043650295007, - "c4": 5.947841952570736, - "c5": 6.321181070928784, - "c6": 6.359870412565691, - "c7": 5.69028092989512 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -137841,23 +137841,23 @@ "year": 1749, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 35.86797086407255, - "c2": -22.91878852018056, - "c3": -35.07955422134785, - "c4": -32.792542093606734, - "c5": 24.80498741323092, - "c6": 40.44665148414195, - "c7": -36.487949779706035 + "points": { + "c1": 19.771951842680934, + "c2": -30.052615959357983, + "c3": -34.516518797488345, + "c4": 14.558166191490095, + "c5": 42.93158780197362, + "c6": 17.366852066714344, + "c7": 0.21896615321119128 }, - "vertexSeeds": { - "c1": 4.344970270378787, - "c2": 4.389092054520643, - "c3": 4.1041059556441475, - "c4": 4.288876218917013, - "c5": 4.271884870900671, - "c6": 4.279216316663336, - "c7": 4.36220491449847 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130377, + "c3": 5.24734165510865, + "c4": 4.197873324086923, + "c5": 3.148404993065195, + "c6": 2.0989366620434544, + "c7": 1.0494683310217272 }, "rgb": [238, 201, 159] }, @@ -137868,23 +137868,23 @@ "year": 1749, "resistanceReported": false, "duration": 39916800, - "curveSeeds": { - "c1": -8.412250938371443, - "c2": -11.66714586382031, - "c3": -4.329034711867955, - "c4": 5.452950570471188, - "c5": -1.4712334380390502, - "c6": -10.196343047405776, - "c7": -28.188756517644276 + "points": { + "c1": 37.16909032159743, + "c2": -40.26568713782384, + "c3": -46.513011272515826, + "c4": 3.5960932625281785, + "c5": 17.836349300613584, + "c6": 44.15395602135005, + "c7": 51.787699377364355 }, - "vertexSeeds": { - "c1": 4.943911392715192, - "c2": 4.360483087720982, - "c3": 5.106344119150818, - "c4": 4.3057503323914705, - "c5": 4.567168951767615, - "c6": 4.970261525437581, - "c7": 4.869455329823951 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859919, + "c3": 6.2413314840499305, + "c4": 4.993065187239943, + "c5": 3.7447988904299594, + "c6": 2.4965325936199716, + "c7": 1.2482662968099836 }, "rgb": [58, 15, 49] }, @@ -137895,23 +137895,23 @@ "year": 1749, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -12.789139499344344, - "c2": -34.88799478520627, - "c3": -5.1124858492055125, - "c4": 4.839153221734314, - "c5": -28.018914743221057, - "c6": 11.346361866628143, - "c7": 35.52816157897192 + "points": { + "c1": 36.589079669213646, + "c2": 9.321478497642175, + "c3": -5.055019242915016, + "c4": -35.5013256386368, + "c5": 32.64204403880572, + "c6": -8.081499412908677, + "c7": -8.897060578453335 }, - "vertexSeeds": { - "c1": 7.03059084424439, - "c2": 7.164084400886664, - "c3": 7.416561526674758, - "c4": 7.302648586647498, - "c5": 7.003984009055303, - "c6": 6.837202761850118, - "c7": 7.256183052395693 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -137922,23 +137922,23 @@ "year": 1749, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 34.26589288295041, - "c2": -16.46021668110715, - "c3": 0.8540888238195592, - "c4": 2.405845366598321, - "c5": 31.27103849884618, - "c6": 23.762007516522225, - "c7": 28.467460455201262 + "points": { + "c1": -21.60493906172299, + "c2": 19.682566748254217, + "c3": -31.90433439246529, + "c4": -18.25133747418512, + "c5": 11.892122516620837, + "c6": 1.844369733075112, + "c7": -7.4540173718269465 }, - "vertexSeeds": { - "c1": 5.136515601531182, - "c2": 5.261631376083842, - "c3": 5.503246871365286, - "c4": 5.37080064806325, - "c5": 5.024374697408259, - "c6": 5.341447649864937, - "c7": 5.0119206941581025 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583909, + "c3": 6.657420249653254, + "c4": 5.325936199722612, + "c5": 3.9944521497919574, + "c6": 2.662968099861303, + "c7": 1.3314840499306546 }, "rgb": [58, 15, 49] }, @@ -137949,23 +137949,23 @@ "year": 1749, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 37.976902991804955, - "c2": 0.7627286836310816, - "c3": 31.00679687403575, - "c4": -23.48883386487595, - "c5": -27.2191686866868, - "c6": 11.930783312330803, - "c7": 1.9569575118975635 + "points": { + "c1": -18.708169084849168, + "c2": -37.41142766284235, + "c3": 22.78733462452771, + "c4": 15.251055531957881, + "c5": 18.8377005609872, + "c6": -29.307541820683717, + "c7": -19.717957675717944 }, - "vertexSeeds": { - "c1": 10.270193059783525, - "c2": 10.336896111205244, - "c3": 10.03819750130394, - "c4": 9.773897132427303, - "c5": 10.003646168231748, - "c6": 10.0812098054463, - "c7": 10.795713997489338 + "offsets": { + "c1": 18.09061488673139, + "c2": 15.506241331484052, + "c3": 12.921867776236713, + "c4": 10.337494220989374, + "c5": 7.753120665742034, + "c6": 5.168747110494695, + "c7": 2.584373555247339 }, "rgb": [86, 146, 138] }, @@ -137976,23 +137976,23 @@ "year": 1749, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -4.996457172253237, - "c2": -4.505730725286437, - "c3": 17.552878857717097, - "c4": 17.26439006943413, - "c5": 0.2754206697445234, - "c6": 10.034624249409472, - "c7": -2.187855187605148 + "points": { + "c1": 21.75480081605643, + "c2": 7.846636455305113, + "c3": 19.68616519899755, + "c4": 22.568263552153205, + "c5": -22.064862266380143, + "c6": 20.14998928970759, + "c7": -7.167729102003754 }, - "vertexSeeds": { - "c1": 4.670282557270066, - "c2": 5.26274791972276, - "c3": 4.534383301789974, - "c4": 4.830941566412233, - "c5": 4.474935425686214, - "c6": 4.129901435731584, - "c7": 4.406599441657122 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -138003,23 +138003,23 @@ "year": 1749, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -1.585994153045121, - "c2": 17.383993343082917, - "c3": 1.5185559891692897, - "c4": 28.72138844666698, - "c5": -24.40276069019275, - "c6": -14.420196234377842, - "c7": 0.25119098685904007 + "points": { + "c1": -0.5601619800350512, + "c2": 30.359684282915584, + "c3": -10.020099318683258, + "c4": 21.34713821026757, + "c5": 7.640278102695138, + "c6": 5.243695934995021, + "c7": 12.9829493690515 }, - "vertexSeeds": { - "c1": 5.924544073887426, - "c2": 5.899310265067568, - "c3": 5.569933628886058, - "c4": 5.757618017478649, - "c5": 5.943104349154934, - "c6": 5.525287851316084, - "c7": 5.455557044529404 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.54368932038835, + "c3": 7.119741100323624, + "c4": 5.6957928802588995, + "c5": 4.271844660194175, + "c6": 2.8478964401294498, + "c7": 1.4239482200647249 }, "rgb": [58, 15, 49] }, @@ -138030,23 +138030,23 @@ "year": 1749, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -3.1815293171896073, - "c2": 25.320578536189664, - "c3": -11.553832376111579, - "c4": 19.444299424851984, - "c5": 1.1093754492781258, - "c6": 22.08704269840714, - "c7": 9.611980167216196 + "points": { + "c1": -13.93526315519592, + "c2": 22.044379321247924, + "c3": -4.857219649657836, + "c4": -31.984729701081633, + "c5": 11.352089243297733, + "c6": 2.125723358284759, + "c7": -40.324588871459376 }, - "vertexSeeds": { - "c1": 4.580302856868263, - "c2": 4.703313345461175, - "c3": 5.1025910118225895, - "c4": 4.687092855661001, - "c5": 5.17891447288703, - "c6": 4.65506500592874, - "c7": 4.256956413983009 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [86, 146, 138] }, @@ -138057,23 +138057,23 @@ "year": 1749, "resistanceReported": true, "duration": 26784000, - "curveSeeds": { - "c1": 7.56331724492194, - "c2": 12.26733076320781, - "c3": 28.987070210014608, - "c4": 16.803087434117508, - "c5": -36.907447084339914, - "c6": -19.84535197172478, - "c7": -8.338840092194264 + "points": { + "c1": 34.59111063939645, + "c2": 31.1454570364493, + "c3": 6.692340284782318, + "c4": 13.929387816926926, + "c5": -13.757508884056563, + "c6": 6.939397888451495, + "c7": 18.71912505053502 }, - "vertexSeeds": { - "c1": 4.130589359985388, - "c2": 4.1758862122909, - "c3": 4.404846934867549, - "c4": 4.615010629734936, - "c5": 4.642548542563343, - "c6": 4.030042846055192, - "c7": 4.694970869341731 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644935, + "c4": 4.493758668515952, + "c5": 3.370319001386964, + "c6": 2.246879334257976, + "c7": 1.123439667128988 }, "rgb": [238, 201, 159] }, @@ -138084,23 +138084,23 @@ "year": 1749, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -28.018558626903577, - "c2": -0.6237277795450566, - "c3": 19.557159664320963, - "c4": -10.390491717997477, - "c5": -4.83100115510706, - "c6": -36.341108612431654, - "c7": 29.231576865048268 + "points": { + "c1": -5.177612833831098, + "c2": -34.19979736875135, + "c3": 23.25060623503427, + "c4": -1.647519053843311, + "c5": 51.78194494588941, + "c6": -45.76417300173041, + "c7": -36.52115740602972 }, - "vertexSeeds": { - "c1": 4.8555196955045385, - "c2": 4.79148044818613, - "c3": 4.663522942251177, - "c4": 4.901769781298461, - "c5": 4.919609131386427, - "c6": 4.01212365778785, - "c7": 4.809616680033173 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457698, + "c3": 6.010171058714747, + "c4": 4.808136846971797, + "c5": 3.6061026352288468, + "c6": 2.4040684234859007, + "c7": 1.2020342117429503 }, "rgb": [86, 146, 138] }, @@ -138111,23 +138111,23 @@ "year": 1749, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 18.83287942008443, - "c2": -30.943639304832416, - "c3": 35.81205882228878, - "c4": 34.40031933734263, - "c5": -3.1184002369987027, - "c6": -33.758683967568736, - "c7": -37.5790840671986 + "points": { + "c1": -4.531789206269735, + "c2": -33.657678006417015, + "c3": -26.425843616064178, + "c4": 30.588444578490645, + "c5": -36.43195705938485, + "c6": -5.861039360364714, + "c7": 10.124212041644988 }, - "vertexSeeds": { - "c1": 9.590649108115706, - "c2": 9.388836521419645, - "c3": 9.486842427374656, - "c4": 9.127404648980201, - "c5": 9.230225033201174, - "c6": 9.64715707190794, - "c7": 8.938669882565202 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231618, + "c3": 11.627369394359697, + "c4": 9.301895515487752, + "c5": 6.976421636615809, + "c6": 4.650947757743886, + "c7": 2.325473878871943 }, "rgb": [77, 76, 132] }, @@ -138138,23 +138138,23 @@ "year": 1749, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -22.943960453127314, - "c2": 1.1734547803717987, - "c3": -17.51282246366555, - "c4": -28.45235397300908, - "c5": -0.7002651093294858, - "c6": -18.251691610367494, - "c7": -30.03900546529226 + "points": { + "c1": -14.7052622711503, + "c2": -12.030831086433103, + "c3": -35.31386752545781, + "c4": 20.379945120749944, + "c5": 36.976618849784785, + "c6": -30.76877746920387, + "c7": -36.901715219333624 }, - "vertexSeeds": { - "c1": 2.929566729948954, - "c2": 2.7582498260313493, - "c3": 3.0215191917244395, - "c4": 2.89932010797281, - "c5": 2.8869018540768634, - "c6": 3.036502158050979, - "c7": 2.9463878517258424 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355065, + "c3": 3.6523347202958822, + "c4": 2.921867776236707, + "c5": 2.1914008321775325, + "c6": 1.4609338881183576, + "c7": 0.7304669440591748 }, "rgb": [238, 201, 159] }, @@ -138165,23 +138165,23 @@ "year": 1749, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -0.47279558959588996, - "c2": -15.25866140344423, - "c3": 7.377356716564492, - "c4": -25.669337217321832, - "c5": 6.213445429722661, - "c6": 8.126344324557877, - "c7": 10.598901597428387 + "points": { + "c1": -9.251756560847745, + "c2": -18.844338687205056, + "c3": -30.782972027639453, + "c4": 24.78065505098111, + "c5": 7.910549189922797, + "c6": 28.511290438273434, + "c7": 1.3650715584722661 }, - "vertexSeeds": { - "c1": 5.835532015371049, - "c2": 5.890985851097538, - "c3": 6.5616263508119435, - "c4": 6.259137628109578, - "c5": 5.870143416433565, - "c6": 6.427995665763996, - "c7": 6.2606159399973995 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715676, + "c3": 7.88257050392973, + "c4": 6.306056403143787, + "c5": 4.729542302357842, + "c6": 3.1530282015718876, + "c7": 1.5765141007859542 }, "rgb": [222, 0, 59] }, @@ -138192,23 +138192,23 @@ "year": 1749, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 13.051475783954103, - "c2": -32.38651907958672, - "c3": 21.295658217277293, - "c4": 20.54792360825318, - "c5": 14.48191993944151, - "c6": -21.390682415611053, - "c7": 5.0163749290405875 + "points": { + "c1": 18.07462072133523, + "c2": -31.54646219936812, + "c3": -34.25812014799056, + "c4": -14.12689382859038, + "c5": -1.5992001569191814, + "c6": -30.960141529344984, + "c7": 1.2493272866570138 }, - "vertexSeeds": { - "c1": 6.111601625114987, - "c2": 6.229131820763532, - "c3": 6.209531628623104, - "c4": 6.390675998733151, - "c5": 6.272415387250837, - "c6": 6.335776139274514, - "c7": 6.3700194594584465 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [77, 76, 132] }, @@ -138219,23 +138219,23 @@ "year": 1750, "resistanceReported": false, "duration": 42854400, - "curveSeeds": { - "c1": -12.262579833474483, - "c2": 24.247954329467937, - "c3": -12.514130061193114, - "c4": -1.84235767710652, - "c5": -31.315414885266275, - "c6": -6.104406051850674, - "c7": -39.31996742885227 + "points": { + "c1": -27.55760335993887, + "c2": 22.40028620924827, + "c3": -54.800589455826795, + "c4": 31.62060141471509, + "c5": -45.39250826702551, + "c6": 20.416672838374772, + "c7": -10.937401573451304 }, - "vertexSeeds": { - "c1": 7.34973904346763, - "c2": 7.03809396366205, - "c3": 6.927058787296383, - "c4": 7.156209815927758, - "c5": 7.131722931686414, - "c6": 7.260213591681303, - "c7": 7.378391830765175 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.62413314840499, + "c3": 8.853444290337485, + "c4": 7.082755432269984, + "c5": 5.312066574202481, + "c6": 3.5413777161350057, + "c7": 1.7706888580675029 }, "rgb": [77, 76, 132] }, @@ -138246,23 +138246,23 @@ "year": 1749, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 38.94504619445758, - "c2": 17.38573607194126, - "c3": -32.14337193547668, - "c4": 37.88563837326033, - "c5": 6.264137197925045, - "c6": 42.67456330914907, - "c7": 9.459812559442575 + "points": { + "c1": -18.3494059986652, + "c2": -13.583146621934887, + "c3": 14.946597810941185, + "c4": -31.05899361617124, + "c5": 14.799614558747393, + "c6": 0.061405520635226196, + "c7": -45.6622922143831 }, - "vertexSeeds": { - "c1": 0.33181621066507166, - "c2": 0.37840923498274837, - "c3": 0.37009864983742463, - "c4": 0.3334943441250828, - "c5": 0.3898190121191156, - "c6": 0.3720669852740285, - "c7": 0.3376403744482866 + "offsets": { + "c1": 0.7119741100323626, + "c2": 0.610263522884882, + "c3": 0.5085529357374021, + "c4": 0.4068423485899215, + "c5": 0.305131761442441, + "c6": 0.20342117429496043, + "c7": 0.10171058714748053 }, "rgb": [222, 0, 59] }, @@ -138273,23 +138273,23 @@ "year": 1749, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 48.907723351967846, - "c2": -17.255989175931937, - "c3": -48.958309986861366, - "c4": -11.62071653611789, - "c5": -17.24862754431753, - "c6": -39.12322772200275, - "c7": -14.076375481152233 + "points": { + "c1": -38.19048175893398, + "c2": -8.59794463925202, + "c3": 20.907958573066523, + "c4": 1.9060919619702048, + "c5": -16.67160618942424, + "c6": 30.0398042050725, + "c7": -1.7367724670750704 }, - "vertexSeeds": { - "c1": 2.1114513885994124, - "c2": 2.1104545344973302, - "c3": 2.1131418821943773, - "c4": 2.108833918394483, - "c5": 2.1065625698275148, - "c6": 2.1104282893493633, - "c7": 2.105435010222768 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244247, + "c3": 2.542764678686987, + "c4": 2.0342117429495996, + "c5": 1.5256588072122124, + "c6": 1.0171058714748251, + "c7": 0.5085529357373872 }, "rgb": [77, 76, 132] }, @@ -138300,23 +138300,23 @@ "year": 1749, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -32.02887107739884, - "c2": -17.265640598910196, - "c3": 15.167196360579645, - "c4": -11.699685804153091, - "c5": -3.8609727137179206, - "c6": -22.713948186947146, - "c7": 44.74832540207975 + "points": { + "c1": 46.84903257780653, + "c2": -5.005376686202709, + "c3": -32.21924044460693, + "c4": 14.648105026665455, + "c5": 12.775041904890351, + "c6": -37.30504647389568, + "c7": 36.137637308257005 }, - "vertexSeeds": { - "c1": 4.931624175941374, - "c2": 4.679660138885008, - "c3": 4.635706879337374, - "c4": 4.911878335030812, - "c5": 4.732714529679061, - "c6": 4.662924969054891, - "c7": 5.016700524566021 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -138327,23 +138327,23 @@ "year": 1749, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 10.035993482904779, - "c2": -6.585649924901446, - "c3": -8.576745495826891, - "c4": -9.593972460372015, - "c5": 28.467114028677372, - "c6": 10.669285843486584, - "c7": 3.819201961010606 + "points": { + "c1": 11.312752119076222, + "c2": -21.405106870421363, + "c3": 30.67214616622215, + "c4": 30.952389106399167, + "c5": 7.552107253894988, + "c6": 29.384310621487685, + "c7": -17.67783652852864 }, - "vertexSeeds": { - "c1": 5.250056279781084, - "c2": 5.577651263004881, - "c3": 5.56890715966661, - "c4": 5.668683626513172, - "c5": 5.6481786845899125, - "c6": 5.357201136088773, - "c7": 5.568759578003998 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387893, + "c4": 5.455386037910311, + "c5": 4.0915395284327305, + "c6": 2.7276930189551494, + "c7": 1.3638465094775811 }, "rgb": [58, 15, 49] }, @@ -138354,23 +138354,23 @@ "year": 1749, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 8.403559468607419, - "c2": -34.07410382016944, - "c3": -22.420176429844634, - "c4": -10.609058842186844, - "c5": 22.468926655232693, - "c6": -13.880090685015258, - "c7": -12.247262201758396 + "points": { + "c1": 0.9543559680337026, + "c2": 17.679163306523314, + "c3": 25.02063963605761, + "c4": 17.580416540589148, + "c5": 7.478914326520588, + "c6": 22.51348678995585, + "c7": 34.65136974678968 }, - "vertexSeeds": { - "c1": 5.757023715679705, - "c2": 5.994619771202055, - "c3": 5.5384410217368, - "c4": 5.697972136305953, - "c5": 5.505498322342159, - "c6": 6.230321226846684, - "c7": 6.108057238003761 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.20943134535368, + "c3": 7.674526121128061, + "c4": 6.1396208969024535, + "c5": 4.604715672676834, + "c6": 3.0698104484512267, + "c7": 1.5349052242256198 }, "rgb": [58, 15, 49] }, @@ -138381,23 +138381,23 @@ "year": 1749, "resistanceReported": false, "duration": 7084800, - "curveSeeds": { - "c1": 11.414413687394088, - "c2": -15.077649725178825, - "c3": 15.091831938124816, - "c4": -14.032547328892067, - "c5": -3.999457464867181, - "c6": -16.663727725321017, - "c7": 10.707348426931539 + "points": { + "c1": -18.276261003865933, + "c2": 18.50286818955706, + "c3": 4.776520309686873, + "c4": 3.5916177763218116, + "c5": 8.829262357692933, + "c6": 14.1561361463739, + "c7": -10.423994009975608 }, - "vertexSeeds": { - "c1": 7.806571651215457, - "c2": 8.270550433487971, - "c3": 7.596454268821771, - "c4": 7.7967736189030425, - "c5": 7.194690695338009, - "c6": 7.252267428119976, - "c7": 8.247239787516575 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576976, + "c3": 10.101710587147481, + "c4": 8.081368469717985, + "c5": 6.061026352288488, + "c6": 4.040684234858992, + "c7": 2.020342117429496 }, "rgb": [238, 201, 159] }, @@ -138408,23 +138408,23 @@ "year": 1749, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -24.072637117824033, - "c2": -27.558814706381444, - "c3": 19.222835494150026, - "c4": -9.349172135351758, - "c5": -8.930495927930664, - "c6": 20.446674754162437, - "c7": -33.57376064173279 + "points": { + "c1": -19.17022481889869, + "c2": 22.707099732340403, + "c3": 20.111643756606448, + "c4": -26.446552689978944, + "c5": -43.81156981875312, + "c6": -11.077284933059026, + "c7": 43.612971364679986 }, - "vertexSeeds": { - "c1": 7.618903742328903, - "c2": 7.848948236903993, - "c3": 7.727724317290222, - "c4": 7.723246367034539, - "c5": 7.856539889058472, - "c6": 8.116447257879008, - "c7": 8.08171743823076 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099866, + "c3": 10.402219140083215, + "c4": 8.321775312066576, + "c5": 6.241331484049927, + "c6": 4.160887656033288, + "c7": 2.0804438280166506 }, "rgb": [222, 0, 59] }, @@ -138435,23 +138435,23 @@ "year": 1749, "resistanceReported": true, "duration": 32745600, - "curveSeeds": { - "c1": -37.85594418545287, - "c2": 11.038141898693326, - "c3": -0.5531694064429971, - "c4": 5.0754269598884605, - "c5": -2.043082410706745, - "c6": 18.536844421542234, - "c7": 24.585024361796762 + "points": { + "c1": 1.4191097325072448, + "c2": -0.3829861915016224, + "c3": -43.972345441243625, + "c4": -20.866584606624592, + "c5": 29.340295867675017, + "c6": -2.8864759650260936, + "c7": -13.413447677329714 }, - "vertexSeeds": { - "c1": 5.571408642533922, - "c2": 5.617369024109063, - "c3": 5.6098925288078885, - "c4": 5.735144696638891, - "c5": 5.588637627375706, - "c6": 5.618387033710651, - "c7": 5.610795395016366 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986148, + "c3": 6.888580674988436, + "c4": 5.5108645399907665, + "c5": 4.133148404993054, + "c6": 2.7554322699953833, + "c7": 1.3777161349976705 }, "rgb": [222, 0, 59] }, @@ -138462,23 +138462,23 @@ "year": 1749, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -20.218525426879395, - "c2": 11.91741395687292, - "c3": 26.564953801860447, - "c4": -19.06429411684648, - "c5": 13.259316772794449, - "c6": -20.21567546630054, - "c7": -0.7261750322951528 + "points": { + "c1": -6.5663837546265675, + "c2": 7.0747012786022125, + "c3": 17.545011104638043, + "c4": 27.460263215671063, + "c5": 7.63419767830591, + "c6": 0.43739741608730043, + "c7": 24.675704827264546 }, - "vertexSeeds": { - "c1": 5.321417107907755, - "c2": 4.728861051508091, - "c3": 4.62181312939037, - "c4": 4.254724428530865, - "c5": 4.737257949491486, - "c6": 4.628949580248317, - "c7": 4.069853331633001 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -138489,23 +138489,23 @@ "year": 1749, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": -0.5292817083402639, - "c2": 9.73969312829679, - "c3": -12.145501373278567, - "c4": 0.5718399469809157, - "c5": -13.198109161890901, - "c6": 13.077984708472162, - "c7": 15.718048379758958 + "points": { + "c1": -18.632918493849658, + "c2": 14.73477941814718, + "c3": -4.777007423350961, + "c4": -1.6853399719788769, + "c5": -13.645238829804555, + "c6": 4.698597325244542, + "c7": -3.4338147364933054 }, - "vertexSeeds": { - "c1": 5.6612833831092, - "c2": 6.221248454821881, - "c3": 5.70795644641134, - "c4": 6.106623715588885, - "c5": 6.26119132366277, - "c6": 6.085438601927871, - "c7": 6.297174427444011 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -138516,23 +138516,23 @@ "year": 1749, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 31.232950926225833, - "c2": -23.73668242172166, - "c3": -18.3638725527468, - "c4": 6.588105314594749, - "c5": -14.926156064547282, - "c6": -13.864928161228594, - "c7": -33.42658042921275 + "points": { + "c1": 35.88052160163364, + "c2": 8.558342738990753, + "c3": -26.241332440468803, + "c4": -10.285923015641334, + "c5": 6.18875000819655, + "c6": 36.131113125978764, + "c7": 31.23560787965294 }, - "vertexSeeds": { - "c1": 4.036432216756791, - "c2": 3.7016988884467144, - "c3": 4.273515144219164, - "c4": 4.029970882226645, - "c5": 3.617774135767568, - "c6": 4.068626548725287, - "c7": 3.8753558316383394 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.2690707350901524, + "c3": 5.224225612575128, + "c4": 4.179380490060102, + "c5": 3.1345353675450762, + "c6": 2.089690245030051, + "c7": 1.0448451225150255 }, "rgb": [86, 146, 138] }, @@ -138543,23 +138543,23 @@ "year": 1749, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -22.618813199162293, - "c2": 7.794984966847892, - "c3": 17.42964614955799, - "c4": -14.388859654578937, - "c5": -18.619335293652863, - "c6": 3.9532970404547427, - "c7": -18.33355394185836 + "points": { + "c1": -19.307760636379342, + "c2": 40.017029285568256, + "c3": -38.30378859296855, + "c4": 20.456181049619715, + "c5": 1.0959432583291644, + "c6": 20.251258310968765, + "c7": 14.337895638566728 }, - "vertexSeeds": { - "c1": 7.156518789739176, - "c2": 7.269088354827357, - "c3": 7.9837326983594625, - "c4": 6.945561905282361, - "c5": 7.851411500806423, - "c6": 7.807692174977886, - "c7": 7.631742961241157 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732316, + "c3": 9.616273693943599, + "c4": 7.693018955154878, + "c5": 5.769764216366158, + "c6": 3.846509477577439, + "c7": 1.9232547387887196 }, "rgb": [58, 15, 49] }, @@ -138570,23 +138570,23 @@ "year": 1749, "resistanceReported": true, "duration": 33782400, - "curveSeeds": { - "c1": -8.074726460502411, - "c2": -24.608875343108796, - "c3": -41.33113230355874, - "c4": -40.98710260155022, - "c5": 33.78723247983256, - "c6": -35.17044473830301, - "c7": -16.073128263730727 + "points": { + "c1": -4.7142408791157, + "c2": 46.48285350243271, + "c3": 28.216324236560645, + "c4": -2.411403544105916, + "c5": 2.596808791591293, + "c6": 33.5088666878159, + "c7": 14.033658133765762 }, - "vertexSeeds": { - "c1": 10.077253532962391, - "c2": 9.989579296836476, - "c3": 9.896554091950014, - "c4": 9.972574840221004, - "c5": 9.621690704752417, - "c6": 10.191931804784694, - "c7": 9.813376337823085 + "offsets": { + "c1": 17.57281553398058, + "c2": 15.062413314840498, + "c3": 12.552011095700415, + "c4": 10.041608876560332, + "c5": 7.531206657420249, + "c6": 5.020804438280166, + "c7": 2.510402219140083 }, "rgb": [238, 201, 159] }, @@ -138597,23 +138597,23 @@ "year": 1749, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 0.7480580053664241, - "c2": -30.12235093235664, - "c3": 6.89822070517932, - "c4": 5.775927198670864, - "c5": 0.1308147513115543, - "c6": 8.876481469087622, - "c7": -7.34033713203981 + "points": { + "c1": 26.72570320206897, + "c2": -17.358083622009254, + "c3": -7.999658977754528, + "c4": 34.24550840325966, + "c5": 7.420964437276396, + "c6": 19.3823099977566, + "c7": -36.79342573879259 }, - "vertexSeeds": { - "c1": 5.48103166452472, - "c2": 5.719641470925794, - "c3": 5.032876511414214, - "c4": 5.536502517871549, - "c5": 5.408317703174474, - "c6": 5.0517654821680775, - "c7": 5.301654921321213 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605178032 }, "rgb": [222, 0, 59] }, @@ -138624,23 +138624,23 @@ "year": 1749, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -26.141335783189845, - "c2": -4.391460435659447, - "c3": 29.636430595177217, - "c4": 30.72665905320865, - "c5": 4.057438677901352, - "c6": 31.740786711491253, - "c7": 36.83677061391167 + "points": { + "c1": -7.620469436066706, + "c2": 24.144466615438425, + "c3": 4.403946817617189, + "c4": -7.237647417533459, + "c5": -26.37525923906246, + "c6": 3.5824481140398348, + "c7": -2.273237098096679 }, - "vertexSeeds": { - "c1": 5.312662119046015, - "c2": 5.356744492420927, - "c3": 5.381741925664365, - "c4": 5.328317738439497, - "c5": 5.300938264475407, - "c6": 5.211910429056582, - "c7": 5.221804879169943 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342569, + "c3": 6.518723994452152, + "c4": 5.214979195561713, + "c5": 3.9112343966712966, + "c6": 2.6074895977808565, + "c7": 1.30374479889044 }, "rgb": [238, 201, 159] }, @@ -138651,23 +138651,23 @@ "year": 1749, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 25.980940875362847, - "c2": 30.81035665473412, - "c3": -16.912160847675363, - "c4": 17.4417662097445, - "c5": 18.165190919328502, - "c6": 10.959689489735979, - "c7": -29.323158095675947 + "points": { + "c1": -11.567297482988707, + "c2": 6.0063898731317025, + "c3": 34.717611609676865, + "c4": 21.683523156713868, + "c5": -15.017379684320343, + "c6": 17.29549044676387, + "c7": -4.3923068152721925 }, - "vertexSeeds": { - "c1": 2.05828115688948, - "c2": 2.1028007638049853, - "c3": 1.929096046807035, - "c4": 1.6836581172448262, - "c5": 2.0459131898375835, - "c6": 1.8443161537197845, - "c7": 2.3017745213964784 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266295, + "c3": 2.77392510402219, + "c4": 2.2191400832177526, + "c5": 1.6643550624133148, + "c6": 1.1095700416088756, + "c7": 0.5547850208044378 }, "rgb": [77, 76, 132] }, @@ -138678,23 +138678,23 @@ "year": 1749, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 35.46539767019649, - "c2": -32.59232002619651, - "c3": 35.629634966962776, - "c4": 32.53682220761643, - "c5": -11.851326195633547, - "c6": 36.052913478286335, - "c7": 3.2298607954388032 + "points": { + "c1": 11.96863947563449, + "c2": 33.521330104589175, + "c3": 19.219935700325074, + "c4": -2.532441736903955, + "c5": 15.896546345915304, + "c6": -22.82758427037981, + "c7": -11.257959758774014 }, - "vertexSeeds": { - "c1": 1.2020223702073156, - "c2": 1.2122867414274545, - "c3": 1.250818390382814, - "c4": 1.1349800461730313, - "c5": 1.1866323844364406, - "c6": 1.1527711098629276, - "c7": 1.084165434769112 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.886269070735091, + "c3": 1.5718908922792412, + "c4": 1.2575127138233937, + "c5": 0.9431345353675449, + "c6": 0.6287563569116962, + "c7": 0.3143781784558487 }, "rgb": [222, 0, 59] }, @@ -138705,23 +138705,23 @@ "year": 1750, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": 6.471125652244304, - "c2": -18.245922058720343, - "c3": -29.50215847159857, - "c4": 48.88699572521019, - "c5": 5.396575764467052, - "c6": -19.512027021985308, - "c7": 31.526822263482124 + "points": { + "c1": 45.914229372590164, + "c2": 48.013849971440415, + "c3": -38.589380957092864, + "c4": 27.830887138334937, + "c5": -12.918965341486249, + "c6": 23.567053210972155, + "c7": 21.474368971858034 }, - "vertexSeeds": { - "c1": 5.130765580520324, - "c2": 5.221991925288448, - "c3": 5.22504655164714, - "c4": 4.603478028558684, - "c5": 5.226850922330684, - "c6": 4.828510002818071, - "c7": 5.112529107937803 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -138732,23 +138732,23 @@ "year": 1749, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 15.840287358578898, - "c2": 19.359344409471333, - "c3": 0.741005960425337, - "c4": 21.05358287673299, - "c5": 1.7324727959001152, - "c6": -16.10250951597607, - "c7": 25.01697773378652 + "points": { + "c1": -21.543593953198016, + "c2": -11.344960737101545, + "c3": 20.699276278684174, + "c4": 16.665591012407702, + "c5": -15.504241519050767, + "c6": -18.28639734339274, + "c7": 3.1381343720732815 }, - "vertexSeeds": { - "c1": 2.8176094613944977, - "c2": 2.8071833996850946, - "c3": 2.8003728560074768, - "c4": 2.7995048369942266, - "c5": 2.8304772386149786, - "c6": 2.8248917010862047, - "c7": 2.830585142604594 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.07766990291264, + "c3": 3.398058252427223, + "c4": 2.718446601941738, + "c5": 2.03883495145632, + "c6": 1.3592233009709027, + "c7": 0.6796116504854175 }, "rgb": [86, 146, 138] }, @@ -138759,23 +138759,23 @@ "year": 1749, "resistanceReported": false, "duration": 3974400, - "curveSeeds": { - "c1": 12.875620117790401, - "c2": 5.897122051671179, - "c3": 11.813418522572768, - "c4": -2.1347320156270904, - "c5": -4.260066701607608, - "c6": -12.015304607419372, - "c7": -6.50790118590853 + "points": { + "c1": 5.41406823075538, + "c2": 15.450361978630681, + "c3": 5.197975408280925, + "c4": 5.734919553674018, + "c5": -13.765181303659652, + "c6": 2.123601829882194, + "c7": 8.184449726165454 }, - "vertexSeeds": { - "c1": 3.673925742933501, - "c2": 3.5787857063694926, - "c3": 3.6174555974713494, - "c4": 3.512853706236902, - "c5": 3.605753686309002, - "c6": 3.09020650086214, - "c7": 3.0441175708975674 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435503, + "c4": 3.5506241331484056, + "c5": 2.662968099861303, + "c6": 1.7753120665742006, + "c7": 0.8876560332871025 }, "rgb": [86, 146, 138] }, @@ -138786,23 +138786,23 @@ "year": 1749, "resistanceReported": false, "duration": 3888000, - "curveSeeds": { - "c1": -0.7792326020197642, - "c2": 8.526584851602143, - "c3": 6.975357558354835, - "c4": 13.774631712878138, - "c5": 6.432369122993672, - "c6": -9.921695692710923, - "c7": -5.603457776486184 + "points": { + "c1": -2.77986505675066, + "c2": -6.9423230005456755, + "c3": 2.609252693689534, + "c4": 0.06421929488818634, + "c5": -6.992329834861016, + "c6": -6.721872988694521, + "c7": 11.655974829037948 }, - "vertexSeeds": { - "c1": 4.828141581533022, - "c2": 4.922054738196933, - "c3": 4.589962308179415, - "c4": 4.903135700532374, - "c5": 5.270894411500829, - "c6": 4.879878929147102, - "c7": 4.619143179673108 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -138813,23 +138813,23 @@ "year": 1749, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -1.3554371937508733, - "c2": -4.730107339004121, - "c3": 4.796471569728801, - "c4": 4.929952449871109, - "c5": 35.36834494831376, - "c6": 34.87096514855831, - "c7": 10.90291048158332 + "points": { + "c1": -29.497910307238538, + "c2": -38.3620778496629, + "c3": -44.15166805828335, + "c4": 32.33582404363378, + "c5": 28.321099645570726, + "c6": -4.2298974759031225, + "c7": -25.988489249915443 }, - "vertexSeeds": { - "c1": 4.181400261994948, - "c2": 4.184342223064765, - "c3": 4.1611129145378305, - "c4": 4.275464359829259, - "c5": 4.131434556347099, - "c6": 4.131035970123098, - "c7": 3.944278608741599 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.1858529819694885, + "c3": 5.154877484974575, + "c4": 4.123901987979653, + "c5": 3.0929264909847394, + "c6": 2.0619509939898264, + "c7": 1.0309754969949132 }, "rgb": [238, 201, 159] }, @@ -138840,23 +138840,23 @@ "year": 1750, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -34.38121837771737, - "c2": -18.151392098487587, - "c3": 26.93590819398426, - "c4": 9.172358387660829, - "c5": -13.182882589283615, - "c6": 4.247282023829442, - "c7": -20.940284763684144 + "points": { + "c1": 6.144426194567572, + "c2": 33.05211631915587, + "c3": -40.34538601322153, + "c4": -25.80933826226212, + "c5": -39.201927993276136, + "c6": -13.92594409366962, + "c7": -39.4075273437767 }, - "vertexSeeds": { - "c1": 2.798197263438166, - "c2": 2.469304784650106, - "c3": 2.4448686347302946, - "c4": 2.616145684642463, - "c5": 2.7703574760059397, - "c6": 2.6329742443905877, - "c7": 2.6104996127081943 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [77, 76, 132] }, @@ -138867,23 +138867,23 @@ "year": 1749, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 10.35041153825447, - "c2": -16.14793326991572, - "c3": -36.06082684519136, - "c4": -30.1659362658056, - "c5": -25.452600252133962, - "c6": -9.848430326764007, - "c7": 12.86217563916238 + "points": { + "c1": -7.32588872361864, + "c2": -8.653390747307611, + "c3": -26.777591158736577, + "c4": 0.6139518614876351, + "c5": -31.148439310518626, + "c6": 36.27106735298524, + "c7": -34.11797614484181 }, - "vertexSeeds": { - "c1": 1.7441448321435205, - "c2": 1.8999883379655036, - "c3": 1.7996394068880317, - "c4": 1.7121214491852168, - "c5": 1.922875219947505, - "c6": 1.9197272651382808, - "c7": 1.7335558780084506 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022192, + "c3": 2.311604253351827, + "c4": 1.8492834026814624, + "c5": 1.3869625520110938, + "c6": 0.9246417013407293, + "c7": 0.46232085067036466 }, "rgb": [222, 0, 59] }, @@ -138894,23 +138894,23 @@ "year": 1749, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -8.833279784143542, - "c2": -22.97899253023428, - "c3": -4.894077023671734, - "c4": -26.62994973243255, - "c5": 28.735616769624983, - "c6": -0.8414850262295417, - "c7": 4.417172863751219 + "points": { + "c1": -33.00386841457554, + "c2": 3.843722244961704, + "c3": -9.35662549410478, + "c4": 36.346681797056775, + "c5": 34.7854807983763, + "c6": 6.232119964380637, + "c7": 22.80707401898082 }, - "vertexSeeds": { - "c1": 7.080596073053084, - "c2": 7.209785905117618, - "c3": 6.92448911172187, - "c4": 6.592652034058016, - "c5": 7.023642267832223, - "c6": 6.780511891134782, - "c7": 7.0593459005261 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766994, + "c3": 9.061488673139156, + "c4": 7.24919093851133, + "c5": 5.436893203883491, + "c6": 3.624595469255665, + "c7": 1.8122977346278262 }, "rgb": [58, 15, 49] }, @@ -138921,23 +138921,23 @@ "year": 1750, "resistanceReported": false, "duration": 45878400, - "curveSeeds": { - "c1": 57.29977805146074, - "c2": 0.5220824098493821, - "c3": 23.92938957532109, - "c4": -27.989413616770918, - "c5": 46.54992594195553, - "c6": -25.742612313741873, - "c7": -18.836177502854774 + "points": { + "c1": -40.313761453991276, + "c2": -14.959431733785316, + "c3": -18.784403994040744, + "c4": 51.37198644093083, + "c5": 56.1851923515465, + "c6": 44.43956100172415, + "c7": -20.544750230028484 }, - "vertexSeeds": { - "c1": 2.8900888553165087, - "c2": 3.228553891328703, - "c3": 3.0014512816674386, - "c4": 3.046442863603812, - "c5": 3.0551745302768603, - "c6": 2.8580716936648796, - "c7": 3.0864031114666033 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797506, + "c3": 3.9066111881645837, + "c4": 3.1252889505316683, + "c5": 2.343966712898753, + "c6": 1.5626444752658375, + "c7": 0.7813222376329154 }, "rgb": [222, 0, 59] }, @@ -138948,23 +138948,23 @@ "year": 1750, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 25.674253751498156, - "c2": 7.464237018257997, - "c3": -9.314403813671618, - "c4": 3.5150860161570066, - "c5": 14.84286405546937, - "c6": -19.67668281091485, - "c7": 22.924617028514092 + "points": { + "c1": 21.77281306686912, + "c2": -2.1596305244423206, + "c3": -3.8074349457157695, + "c4": 33.66483192772941, + "c5": -14.727618267498535, + "c6": 14.420948385430478, + "c7": 40.53493222326006 }, - "vertexSeeds": { - "c1": 5.887645292859854, - "c2": 5.9651885115328085, - "c3": 6.033922626767982, - "c4": 5.486401146221428, - "c5": 6.022131755185002, - "c6": 5.6251030046145045, - "c7": 5.945936471070695 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [86, 146, 138] }, @@ -138975,23 +138975,23 @@ "year": 1751, "resistanceReported": false, "duration": 64540800, - "curveSeeds": { - "c1": -58.58528484878728, - "c2": 40.86850347555088, - "c3": 32.11890610477326, - "c4": 35.59286841787967, - "c5": 56.097165817685294, - "c6": 76.72350710854221, - "c7": -65.7341886627418 + "points": { + "c1": -63.038955796235584, + "c2": 42.0594296802351, + "c3": -43.21005903052222, + "c4": -66.92541943258173, + "c5": 56.429395246574245, + "c6": 77.26034332521027, + "c7": 11.371673145058267 }, - "vertexSeeds": { - "c1": 4.572363320851491, - "c2": 5.070932685290014, - "c3": 4.603212566676712, - "c4": 4.609665856126984, - "c5": 5.216637914397887, - "c6": 4.945869488660732, - "c7": 4.651699833827065 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.5450762829403635, + "c3": 6.287563569116974, + "c4": 5.0300508552935685, + "c5": 3.772538141470178, + "c6": 2.515025427646788, + "c7": 1.2575127138233904 }, "rgb": [77, 76, 132] }, @@ -139002,23 +139002,23 @@ "year": 1751, "resistanceReported": false, "duration": 68860800, - "curveSeeds": { - "c1": -70.80411160965262, - "c2": -31.335524121608977, - "c3": 77.79556838259691, - "c4": -27.530158093288776, - "c5": 54.41043123473864, - "c6": 14.87369025596901, - "c7": -57.113493605826726 + "points": { + "c1": 17.953063745747244, + "c2": -63.85532827544584, + "c3": -5.0959842796427495, + "c4": -27.24508115110323, + "c5": -60.52426639234185, + "c6": -74.40048070034004, + "c7": 22.797728813175524 }, - "vertexSeeds": { - "c1": 4.493563138366426, - "c2": 4.0971726476364925, - "c3": 3.944759589587025, - "c4": 4.440670329966805, - "c5": 4.466649782866489, - "c6": 3.9373050246887566, - "c7": 4.393102451031991 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452149, + "c3": 5.4322699953767914, + "c4": 4.3458159963014324, + "c5": 3.2593619972260743, + "c6": 2.1729079981507162, + "c7": 1.0864539990753581 }, "rgb": [58, 15, 49] }, @@ -139029,23 +139029,23 @@ "year": 1750, "resistanceReported": false, "duration": 49334400, - "curveSeeds": { - "c1": 41.89919743758088, - "c2": 61.753946340459095, - "c3": -29.277411734436342, - "c4": 54.33990737922005, - "c5": 17.061640097866032, - "c6": 38.59677421426234, - "c7": -39.322231586700866 + "points": { + "c1": -22.39082308352601, + "c2": 39.15318023293702, + "c3": 40.78183544327848, + "c4": 49.18629074318578, + "c5": 20.62304242583015, + "c6": -2.1206067197829555, + "c7": 11.042416520974058 }, - "vertexSeeds": { - "c1": 3.6899033560360746, - "c2": 3.3495793287491704, - "c3": 3.801444988565987, - "c4": 3.6587710480248217, - "c5": 3.403841140372739, - "c6": 3.7899575994845907, - "c7": 3.8287710757566034 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.62320850670365, + "c4": 3.6985668053629186, + "c5": 2.773925104022194, + "c6": 1.8492834026814629, + "c7": 0.9246417013407314 }, "rgb": [77, 76, 132] }, @@ -139056,23 +139056,23 @@ "year": 1751, "resistanceReported": true, "duration": 66614400, - "curveSeeds": { - "c1": -16.63452137782241, - "c2": -40.405490905129234, - "c3": 21.910398526953443, - "c4": 60.081883289327266, - "c5": 44.391301785560714, - "c6": -35.12836863560257, - "c7": 40.57738502532365 + "points": { + "c1": 53.16409379760745, + "c2": -71.8185662194445, + "c3": -69.7691608899343, + "c4": 82.32667684309214, + "c5": 23.293579802221643, + "c6": -82.31549903735933, + "c7": 12.226563793593186 }, - "vertexSeeds": { - "c1": 3.936606319876489, - "c2": 1.6960197128864856, - "c3": 4.3717815015661765, - "c4": 1.7722429860657531, - "c5": 1.037310768181809, - "c6": 5.110344474456608, - "c7": 1.0885537937816965 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.3509015256588075, + "c3": 6.12575127138234, + "c4": 4.900601017105871, + "c5": 3.6754507628294033, + "c6": 2.4503005085529357, + "c7": 1.2251502542764665 }, "rgb": [58, 15, 49] }, @@ -139083,23 +139083,23 @@ "year": 1750, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 3.2213421670317146, - "c2": -25.36231515835373, - "c3": 38.668526421417944, - "c4": 41.94758077939033, - "c5": 36.53590576538803, - "c6": 27.995160574817454, - "c7": 28.187018204428888 + "points": { + "c1": -46.18614303520477, + "c2": -40.564160854424166, + "c3": -21.049915821725936, + "c4": -6.102344565802511, + "c5": -7.763862209177383, + "c6": 24.86041607371738, + "c7": 13.164752169423288 }, - "vertexSeeds": { - "c1": 5.778846254349414, - "c2": 5.827434045787345, - "c3": 5.46580501292286, - "c4": 5.643055684493852, - "c5": 5.732189729697006, - "c6": 5.7354365897538875, - "c7": 5.843195318948 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [238, 201, 159] }, @@ -139110,23 +139110,23 @@ "year": 1751, "resistanceReported": false, "duration": 67132800, - "curveSeeds": { - "c1": 22.16680757360794, - "c2": -7.54901527609799, - "c3": 81.53968378139683, - "c4": 28.429322549466036, - "c5": -24.488336952797233, - "c6": -36.91827933267573, - "c7": -19.81494397093047 + "points": { + "c1": -48.835221411251425, + "c2": 41.94770447621434, + "c3": 4.159716949907036, + "c4": 19.391971848466255, + "c5": -70.56038663993284, + "c6": -45.07234568929162, + "c7": 53.79854017783421 }, - "vertexSeeds": { - "c1": 4.832412534738336, - "c2": 4.537834167621152, - "c3": 4.63892734328279, - "c4": 4.59150973616649, - "c5": 4.808631609479479, - "c6": 4.645412615156237, - "c7": 4.830000890658413 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [222, 0, 59] }, @@ -139137,23 +139137,23 @@ "year": 1750, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -42.612697856447966, - "c2": 43.04789806241986, - "c3": -31.881022150843958, - "c4": -39.41658954629797, - "c5": -11.180105962960916, - "c6": -2.395085785757182, - "c7": -20.082228582296892 + "points": { + "c1": 12.909559663523346, + "c2": 2.8139586011458135, + "c3": 8.437235087484964, + "c4": 20.342414440547188, + "c5": 6.100346062274831, + "c6": -41.96194968537901, + "c7": -33.8314938009798 }, - "vertexSeeds": { - "c1": 5.831314822416552, - "c2": 5.741087604907576, - "c3": 5.501538117535929, - "c4": 5.647122788068801, - "c5": 5.731181216180913, - "c6": 5.4140919777884715, - "c7": 5.722532550751824 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [238, 201, 159] }, @@ -139164,23 +139164,23 @@ "year": 1751, "resistanceReported": false, "duration": 66960000, - "curveSeeds": { - "c1": -3.9849361370865637, - "c2": 5.1812326632054635, - "c3": 45.11561497561969, - "c4": -52.58717507353403, - "c5": 36.84171035614406, - "c6": -70.78666517452082, - "c7": -67.89669003796142 + "points": { + "c1": 67.8377952283143, + "c2": 1.753869597898543, + "c3": -21.226716963004947, + "c4": 4.489580817243791, + "c5": -11.203964793999674, + "c6": 54.04078138043006, + "c7": -41.64581303736874 }, - "vertexSeeds": { - "c1": 3.877711939271346, - "c2": 3.951624203450336, - "c3": 4.334815528374963, - "c4": 4.305373889996052, - "c5": 4.0560591936566865, - "c6": 4.3973834767507665, - "c7": 4.177853839063137 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [222, 0, 59] }, @@ -139191,23 +139191,23 @@ "year": 1750, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": 10.657346682916732, - "c2": 47.257323855069906, - "c3": -56.351196745609776, - "c4": 4.28017044495882, - "c5": -40.64409211285741, - "c6": 33.2847816593656, - "c7": 42.189474993885334 + "points": { + "c1": 40.39604222279211, + "c2": 20.974427765615168, + "c3": 39.57053617076719, + "c4": -60.408202389582655, + "c5": 56.78765221062354, + "c6": 31.67270619234929, + "c7": 29.55686570567439 }, - "vertexSeeds": { - "c1": 6.279081409825466, - "c2": 6.214898314809772, - "c3": 6.426622648501623, - "c4": 6.306402365169266, - "c5": 6.1826123096771015, - "c6": 6.237915095851973, - "c7": 6.1917192755454815 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353662, + "c3": 7.674526121128066, + "c4": 6.139620896902443, + "c5": 4.6047156726768455, + "c6": 3.0698104484512214, + "c7": 1.5349052242255965 }, "rgb": [222, 0, 59] }, @@ -139218,23 +139218,23 @@ "year": 1749, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 9.589152829309668, - "c2": 16.833535809343026, - "c3": -10.149543198033019, - "c4": -25.948010510153743, - "c5": 5.6989857997080975, - "c6": 12.537586283218772, - "c7": -17.709814103142023 + "points": { + "c1": -0.31255049319593553, + "c2": -26.010570168400157, + "c3": -11.738490053675406, + "c4": 21.219312713213093, + "c5": -29.794166773255448, + "c6": -18.34852786562464, + "c7": 37.02769582524674 }, - "vertexSeeds": { - "c1": 5.823621125639522, - "c2": 5.8702188354647005, - "c3": 6.22851417424243, - "c4": 5.961683085604751, - "c5": 5.966359005530134, - "c6": 5.890276296220223, - "c7": 6.206655904670024 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951443, + "c3": 7.443365695792884, + "c4": 5.954692556634297, + "c5": 4.466019417475736, + "c6": 2.9773462783171487, + "c7": 1.4886731391585875 }, "rgb": [77, 76, 132] }, @@ -139245,23 +139245,23 @@ "year": 1750, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -8.05880338630385, - "c2": -4.642383113665765, - "c3": 6.144397039508313, - "c4": -35.98641646136865, - "c5": -39.989932009897906, - "c6": 13.385625440075081, - "c7": -3.317909296883812 + "points": { + "c1": 1.2345762318371172, + "c2": 38.967580695839516, + "c3": -24.725542728874025, + "c4": -25.215890425410787, + "c5": -16.875316344265297, + "c6": 17.68046999801561, + "c7": 28.363278603137147 }, - "vertexSeeds": { - "c1": 5.518567098043707, - "c2": 5.603427813551153, - "c3": 5.6780461110558385, - "c4": 5.864444478478722, - "c5": 5.805256751773006, - "c6": 5.851573644355805, - "c7": 5.713999762671901 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [58, 15, 49] }, @@ -139272,23 +139272,23 @@ "year": 1750, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 3.965804331285945, - "c2": 3.8612838222855785, - "c3": -22.80109757879402, - "c4": 17.13856301001725, - "c5": -41.637823041329256, - "c6": -12.600451634130778, - "c7": 21.07152283153046 + "points": { + "c1": 17.147452127253764, + "c2": 36.74706927592456, + "c3": 22.73004254355675, + "c4": 18.036586675526863, + "c5": -10.1820858965743, + "c6": -34.00349887615793, + "c7": -19.72618906609211 }, - "vertexSeeds": { - "c1": 4.425095971574007, - "c2": 4.7496971030710355, - "c3": 4.59378496093309, - "c4": 4.710516394063776, - "c5": 4.2093927882876505, - "c6": 4.992210186493807, - "c7": 4.955938793575464 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -139299,23 +139299,23 @@ "year": 1749, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -15.518328292738023, - "c2": -25.586290083557927, - "c3": 24.6538072955069, - "c4": 1.9477006253624438, - "c5": 16.392838099966, - "c6": -28.597098389052572, - "c7": 16.50991848618567 + "points": { + "c1": -24.74589540339138, + "c2": -7.6488284102169715, + "c3": 28.890631824431544, + "c4": 6.248771253684367, + "c5": 15.096269565886402, + "c6": -16.97477073256392, + "c7": -20.291919893691713 }, - "vertexSeeds": { - "c1": 3.1214351616960245, - "c2": 2.916209734788964, - "c3": 2.8596072024900634, - "c4": 3.20096875279489, - "c5": 3.1734439166649393, - "c6": 2.6912485637854546, - "c7": 3.161521702594265 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797502, + "c3": 3.9066111881645873, + "c4": 3.125288950531668, + "c5": 2.3439667128987534, + "c6": 1.562644475265834, + "c7": 0.7813222376329194 }, "rgb": [86, 146, 138] }, @@ -139326,23 +139326,23 @@ "year": 1749, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 37.70980477408498, - "c2": 15.297095569168249, - "c3": -6.132903228526175, - "c4": -11.091327242072744, - "c5": -33.15429165971638, - "c6": -31.4827227152574, - "c7": 10.734386200347195 + "points": { + "c1": 23.096110915959237, + "c2": -3.054379851710891, + "c3": -14.92020971843667, + "c4": -35.10148595610737, + "c5": 43.48568905393977, + "c6": 6.22413959392086, + "c7": 41.09755803546191 }, - "vertexSeeds": { - "c1": 3.7658635408787293, - "c2": 3.5515386266838056, - "c3": 3.737492681869452, - "c4": 3.79625951177141, - "c5": 3.8398307701677012, - "c6": 3.5609777143061505, - "c7": 3.487799048316472 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044385, + "c3": 4.623208506703649, + "c4": 3.698566805362921, + "c5": 2.7739251040221924, + "c6": 1.8492834026814642, + "c7": 0.9246417013407282 }, "rgb": [238, 201, 159] }, @@ -139353,23 +139353,23 @@ "year": 1750, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": -43.44217820011437, - "c2": -24.576143275251496, - "c3": 27.946554948926696, - "c4": 12.21600480616194, - "c5": -26.891695035976493, - "c6": -40.1446572969504, - "c7": 12.053950862253835 + "points": { + "c1": -2.299980853618507, + "c2": 48.105550102977865, + "c3": 7.374892066406481, + "c4": 53.64338687208362, + "c5": 51.60775719965766, + "c6": -1.27261308554084, + "c7": 13.628225242172299 }, - "vertexSeeds": { - "c1": 10.528859141288303, - "c2": 9.97040190499372, - "c3": 10.784576480350557, - "c4": 10.544976783331846, - "c5": 10.175700680169745, - "c6": 9.93059735707294, - "c7": 10.29067965286183 + "offsets": { + "c1": 18.41423948220065, + "c2": 15.783633841886262, + "c3": 13.153028201571901, + "c4": 10.522422561257512, + "c5": 7.891816920943124, + "c6": 5.261211280628763, + "c7": 2.630605640314375 }, "rgb": [222, 0, 59] }, @@ -139380,23 +139380,23 @@ "year": 1750, "resistanceReported": false, "duration": 46137600, - "curveSeeds": { - "c1": -8.999458092245419, - "c2": -4.790545839626901, - "c3": 38.46671401242475, - "c4": 56.24285757911482, - "c5": -42.23864976606272, - "c6": 49.37324311751146, - "c7": 37.081701170136704 + "points": { + "c1": 60.42114862678368, + "c2": -54.95236423966343, + "c3": 29.875826018469972, + "c4": 9.381507369177548, + "c5": -25.14036646688121, + "c6": -19.546517582569237, + "c7": 9.168558195104445 }, - "vertexSeeds": { - "c1": 6.138921883007327, - "c2": 6.073539854169893, - "c3": 6.022896319840561, - "c4": 6.190862822750975, - "c5": 5.872542331930419, - "c6": 5.884146351508578, - "c7": 6.074395967735759 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [58, 15, 49] }, @@ -139407,23 +139407,23 @@ "year": 1750, "resistanceReported": false, "duration": 43286400, - "curveSeeds": { - "c1": 1.8859106097749745, - "c2": 51.912395100233375, - "c3": 56.47070718008465, - "c4": -31.981092141071414, - "c5": 42.390915546807385, - "c6": -49.960196044130576, - "c7": -36.6408390374513 + "points": { + "c1": 42.404293211268445, + "c2": 7.580238988154598, + "c3": 8.837734831973343, + "c4": -50.322175631177686, + "c5": -7.755132929483338, + "c6": 10.398795784914718, + "c7": -14.280859870098766 }, - "vertexSeeds": { - "c1": 11.6677573728395, - "c2": 11.358629353092194, - "c3": 12.32351765783248, - "c4": 11.23782238141974, - "c5": 12.106581349450929, - "c6": 11.173019728494813, - "c7": 12.532512151668033 + "offsets": { + "c1": 21.35922330097087, + "c2": 18.30790568654646, + "c3": 15.256588072122044, + "c4": 12.205270457697628, + "c5": 9.153952843273242, + "c6": 6.102635228848828, + "c7": 3.051317614424414 }, "rgb": [77, 76, 132] }, @@ -139434,23 +139434,23 @@ "year": 1750, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": -4.269638769791719, - "c2": 18.82013311030959, - "c3": 8.613775745298618, - "c4": -55.010980798353366, - "c5": 3.3208809078152868, - "c6": -10.194608346793665, - "c7": 5.464236390348837 + "points": { + "c1": -54.500381655163736, + "c2": -19.171346113210994, + "c3": -6.474407797674864, + "c4": 13.425847663802479, + "c5": -34.48656487170941, + "c6": 45.09244862456469, + "c7": 53.03488625551825 }, - "vertexSeeds": { - "c1": 7.823082785537609, - "c2": 7.842024928434444, - "c3": 7.964563907557995, - "c4": 8.550148108625153, - "c5": 8.299951243112565, - "c6": 7.79883242158506, - "c7": 7.798549317843742 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.843273231622742, + "c3": 10.70272769301895, + "c4": 8.562182154415158, + "c5": 6.421636615811365, + "c6": 4.281091077207572, + "c7": 2.1405455386037793 }, "rgb": [86, 146, 138] }, @@ -139461,23 +139461,23 @@ "year": 1751, "resistanceReported": false, "duration": 63072000, - "curveSeeds": { - "c1": -68.97625603626514, - "c2": 15.434520078909785, - "c3": 56.78660283843675, - "c4": 5.039283781042371, - "c5": 8.54061874317, - "c6": 46.94646790256503, - "c7": -39.10812425596174 + "points": { + "c1": -3.131124770750688, + "c2": 57.64029273885319, + "c3": 15.890192706237698, + "c4": -42.85017745739806, + "c5": -47.64091604778348, + "c6": 69.70768840373051, + "c7": -47.144799052661966 }, - "vertexSeeds": { - "c1": 4.305489137453822, - "c2": 4.108862527384707, - "c3": 4.224293060952145, - "c4": 3.885635809750587, - "c5": 4.410845395656555, - "c6": 4.317860293195374, - "c7": 3.926003295960848 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -139488,23 +139488,23 @@ "year": 1749, "resistanceReported": true, "duration": 29808000, - "curveSeeds": { - "c1": -30.589645016905358, - "c2": -41.62227008458752, - "c3": 7.643432137421044, - "c4": 20.289489427043478, - "c5": -15.907954772461643, - "c6": -12.991215751617855, - "c7": -28.46930113461678 + "points": { + "c1": 12.044611651910685, + "c2": 32.685029792095776, + "c3": -28.60933339829557, + "c4": 33.05735534782606, + "c5": 19.416749408473763, + "c6": 37.812945014653096, + "c7": -40.58232781418238 }, - "vertexSeeds": { - "c1": 2.242584482762382, - "c2": 2.0878859191767365, - "c3": 2.2175807553263436, - "c4": 2.0625769229561293, - "c5": 2.270885494717799, - "c6": 2.2462316566019314, - "c7": 1.9888187761409255 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679614, + "c3": 2.9126213592233015, + "c4": 2.3300970873786393, + "c5": 1.7475728155339796, + "c6": 1.1650485436893196, + "c7": 0.5825242718446598 }, "rgb": [77, 76, 132] }, @@ -139515,23 +139515,23 @@ "year": 1749, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -1.2778347894244746, - "c2": -35.33993530776921, - "c3": -30.145508759284475, - "c4": 10.458219467431505, - "c5": -17.51509088815449, - "c6": -21.913312817079852, - "c7": 1.2350357696549992 + "points": { + "c1": 11.646306104453998, + "c2": -18.666822333023873, + "c3": 17.755850324616752, + "c4": 25.971200661932613, + "c5": 13.788603038855122, + "c6": 24.789082196732053, + "c7": -29.725222664348706 }, - "vertexSeeds": { - "c1": 4.244102749607167, - "c2": 3.836706090472247, - "c3": 4.510327487587199, - "c4": 4.375053101762941, - "c5": 4.051067235863503, - "c6": 4.278978162975855, - "c7": 4.374238388576711 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [86, 146, 138] }, @@ -139542,23 +139542,23 @@ "year": 1750, "resistanceReported": false, "duration": 51148800, - "curveSeeds": { - "c1": -37.17152099527281, - "c2": -60.95468672671765, - "c3": 8.377442264620214, - "c4": -33.360797288670575, - "c5": 16.65115956377973, - "c6": 47.005343822754284, - "c7": 0.7640582878753293 + "points": { + "c1": -60.13035179540528, + "c2": 29.6873649776404, + "c3": 8.654694751028742, + "c4": 2.396927954544836, + "c5": -9.463181195588533, + "c6": -21.882006278992215, + "c7": -3.2485537768858848 }, - "vertexSeeds": { - "c1": 3.4846307217007526, - "c2": 3.667335053669531, - "c3": 3.910530894745608, - "c4": 3.822135204702531, - "c5": 4.2453796581147545, - "c6": 3.770495609488559, - "c7": 3.7730306038911534 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374016, + "c4": 4.0684234858992125, + "c5": 3.0513176144244074, + "c6": 2.034211742949603, + "c7": 1.0171058714747991 }, "rgb": [58, 15, 49] }, @@ -139569,23 +139569,23 @@ "year": 1750, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": -42.74220733568042, - "c2": -32.70855893521282, - "c3": 27.821648106073162, - "c4": 3.785076080163627, - "c5": -25.279809333616324, - "c6": -8.22045246393408, - "c7": 49.21753659371516 + "points": { + "c1": -35.130886380742155, + "c2": -18.129429673666635, + "c3": -35.042852455675146, + "c4": 30.35333467881697, + "c5": -37.68494735729821, + "c6": -34.37985998714542, + "c7": -24.499147704426367 }, - "vertexSeeds": { - "c1": 6.844800046310407, - "c2": 7.134709136202017, - "c3": 6.880807442185363, - "c4": 6.7055606576474664, - "c5": 6.754865696428143, - "c6": 6.65555304942533, - "c7": 7.594136783997435 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410074, + "c4": 7.674526121128067, + "c5": 5.755894590846051, + "c6": 3.8372630605640334, + "c7": 1.9186315302820167 }, "rgb": [238, 201, 159] }, @@ -139596,23 +139596,23 @@ "year": 1750, "resistanceReported": false, "duration": 57024000, - "curveSeeds": { - "c1": -29.02786473804722, - "c2": -31.26422275681361, - "c3": 65.75907588258909, - "c4": 51.982966409388865, - "c5": 8.542376391185243, - "c6": 58.47034949842188, - "c7": -67.60871033184083 + "points": { + "c1": 35.518715935286295, + "c2": -59.623782622900606, + "c3": 22.305229015579812, + "c4": -11.105545237729345, + "c5": -51.73647455801748, + "c6": 58.50874843571523, + "c7": -12.812602272855173 }, - "vertexSeeds": { - "c1": 3.324247945134913, - "c2": 3.4062191265424295, - "c3": 3.246947515625491, - "c4": 3.1420818142900115, - "c5": 3.4967972860101386, - "c6": 3.3562843854475597, - "c7": 3.1650104644379415 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320386, + "c3": 4.2071197411003265, + "c4": 3.3656957928802598, + "c5": 2.524271844660193, + "c6": 1.6828478964401339, + "c7": 0.8414239482200669 }, "rgb": [58, 15, 49] }, @@ -139623,23 +139623,23 @@ "year": 1750, "resistanceReported": false, "duration": 54950400, - "curveSeeds": { - "c1": -53.17563115534032, - "c2": -20.92288839930508, - "c3": 56.76251201333615, - "c4": 14.407544937478306, - "c5": 0.9732869105103532, - "c6": 30.063497126912125, - "c7": 3.9306990518461333 + "points": { + "c1": -7.597588915179514, + "c2": 51.06155430368442, + "c3": 25.656567781395225, + "c4": -44.44514866073102, + "c5": 45.19612335130468, + "c6": -64.4416490379954, + "c7": 35.777852449655896 }, - "vertexSeeds": { - "c1": 2.760360061632145, - "c2": 2.979609013403217, - "c3": 2.6333417503893903, - "c4": 2.5740297022080996, - "c5": 3.0618558910715636, - "c6": 2.808020944402434, - "c7": 2.7971342224689617 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.49375866851595, + "c3": 3.744798890429957, + "c4": 2.99583911234397, + "c5": 2.2468793342579776, + "c6": 1.497919556171985, + "c7": 0.7489597780859925 }, "rgb": [58, 15, 49] }, @@ -139650,23 +139650,23 @@ "year": 1750, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -16.393700289918662, - "c2": -2.1034169001332543, - "c3": -16.55330503348342, - "c4": 40.67501676706276, - "c5": -29.2920709115957, - "c6": -22.260630110970904, - "c7": -41.16173169344182 + "points": { + "c1": -25.54643345007026, + "c2": 1.1197601041546648, + "c3": 37.76234685079014, + "c4": 31.020077051726204, + "c5": -37.62042839713846, + "c6": 26.337809006627808, + "c7": 3.773063093198502 }, - "vertexSeeds": { - "c1": 4.45427174118287, - "c2": 4.398754895350839, - "c3": 4.340691312270107, - "c4": 4.430507676982579, - "c5": 3.979058429595802, - "c6": 4.257232051249057, - "c7": 3.7667397069355686 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309753, + "c4": 4.3088303282478035, + "c5": 3.2316227461858538, + "c6": 2.1544151641239044, + "c7": 1.0772075820619496 }, "rgb": [222, 0, 59] }, @@ -139677,23 +139677,23 @@ "year": 1750, "resistanceReported": false, "duration": 46051200, - "curveSeeds": { - "c1": 24.127718940346618, - "c2": -21.720478257371617, - "c3": 4.841720519095283, - "c4": -36.31516603143221, - "c5": -52.86904075312182, - "c6": -41.75138709149275, - "c7": -22.71642891702841 + "points": { + "c1": -40.69710936087748, + "c2": -38.08323851836647, + "c3": 17.699898329808384, + "c4": 0.054949970275529836, + "c5": -34.46652395850395, + "c6": 49.25705576019285, + "c7": 0.33483514514060175 }, - "vertexSeeds": { - "c1": 1.8893834621803662, - "c2": 1.7815300138582213, - "c3": 1.8199189340331614, - "c4": 1.7551656313769526, - "c5": 1.856811206978061, - "c6": 1.8706677878281899, - "c7": 1.870528200747397 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022192, + "c3": 2.311604253351827, + "c4": 1.8492834026814624, + "c5": 1.3869625520110938, + "c6": 0.9246417013407293, + "c7": 0.46232085067036466 }, "rgb": [77, 76, 132] }, @@ -139704,23 +139704,23 @@ "year": 1750, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 42.467449947235764, - "c2": -36.807989463293374, - "c3": -29.951663226359926, - "c4": 21.410998591761924, - "c5": 1.8046600143504392, - "c6": 19.004722997091264, - "c7": -23.24669111869428 + "points": { + "c1": 41.640012233084136, + "c2": -26.687455922937218, + "c3": 23.478591296406435, + "c4": -32.72614103645777, + "c5": -31.570242235375865, + "c6": -45.83465901490079, + "c7": 6.624032912759503 }, - "vertexSeeds": { - "c1": 3.785684225308624, - "c2": 3.5675781004094964, - "c3": 3.7559449449670437, - "c4": 3.5304044275055317, - "c5": 3.4789694076604243, - "c6": 3.629401826486459, - "c7": 3.568973102632967 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [86, 146, 138] }, @@ -139731,23 +139731,23 @@ "year": 1750, "resistanceReported": false, "duration": 50284800, - "curveSeeds": { - "c1": 37.40738714640203, - "c2": 36.89356736235908, - "c3": -22.73401779585852, - "c4": 55.23408553545106, - "c5": -8.110394642753086, - "c6": 12.742402499939303, - "c7": -41.07685406514345 + "points": { + "c1": -41.847989726264885, + "c2": 6.368048444676148, + "c3": -31.81658138317369, + "c4": -20.8569984514898, + "c5": -57.60140161396604, + "c6": -42.478077142812126, + "c7": 16.431591420732957 }, - "vertexSeeds": { - "c1": 9.620590328680988, - "c2": 8.96606474167891, - "c3": 9.132994715267069, - "c4": 9.414827471354117, - "c5": 9.448099372635273, - "c6": 9.24768035014421, - "c7": 8.534871378039147 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.558021266759134, + "c4": 9.246417013407296, + "c5": 6.934812760055472, + "c6": 4.623208506703648, + "c7": 2.311604253351824 }, "rgb": [86, 146, 138] }, @@ -139758,23 +139758,23 @@ "year": 1750, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 26.765938898388903, - "c2": 17.26922431077022, - "c3": 39.44463464291942, - "c4": -19.34954178857944, - "c5": 33.85173162079477, - "c6": -17.86378437454318, - "c7": 17.489796645009086 + "points": { + "c1": -21.416075761600545, + "c2": -42.532824344288855, + "c3": 24.080504456489216, + "c4": -38.577410614127416, + "c5": 45.74283117523331, + "c6": 30.698581689794274, + "c7": -28.435348036871392 }, - "vertexSeeds": { - "c1": 1.4627700845287799, - "c2": 1.3255650289537153, - "c3": 1.4551428380569524, - "c4": 1.3899597723193007, - "c5": 1.3444930954085705, - "c6": 1.4851187461963768, - "c7": 1.4940891203776325 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.16366158113731, + "c3": 1.8030513176144225, + "c4": 1.4424410540915387, + "c5": 1.081830790568655, + "c6": 0.7212205270457713, + "c7": 0.3606102635228837 }, "rgb": [77, 76, 132] }, @@ -139785,23 +139785,23 @@ "year": 1750, "resistanceReported": false, "duration": 50284800, - "curveSeeds": { - "c1": 28.720539951589288, - "c2": -40.57994786374699, - "c3": 52.49759970703457, - "c4": -25.286914720847342, - "c5": -53.96976257409602, - "c6": 36.77226432040031, - "c7": 47.904807975551606 + "points": { + "c1": -59.33303757142534, + "c2": -61.66675591169287, + "c3": 45.741681121512514, + "c4": -56.507149749071544, + "c5": -19.582616984477454, + "c6": -26.3771115068063, + "c7": -23.584606295198363 }, - "vertexSeeds": { - "c1": 2.4766642140228914, - "c2": 2.361646528434094, - "c3": 2.3862465563891755, - "c4": 2.4367158024600357, - "c5": 2.565044717176099, - "c6": 2.195530246821007, - "c7": 2.249667935393565 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550621, + "c3": 3.19001386962552, + "c4": 2.552011095700416, + "c5": 1.9140083217753119, + "c6": 1.276005547850208, + "c7": 0.638002773925104 }, "rgb": [222, 0, 59] }, @@ -139812,23 +139812,23 @@ "year": 1750, "resistanceReported": false, "duration": 46483200, - "curveSeeds": { - "c1": 30.88881869513437, - "c2": -19.91045486028184, - "c3": 52.744441590338305, - "c4": -52.03035599070699, - "c5": -31.615500045577857, - "c6": -17.70139105390973, - "c7": -60.26242787431623 + "points": { + "c1": 11.3746427428894, + "c2": -46.84873655849522, + "c3": 62.02736283370367, + "c4": -15.66147792489302, + "c5": -29.676646748258655, + "c6": -21.187541351882608, + "c7": 3.206670750132126 }, - "vertexSeeds": { - "c1": 3.325059579142759, - "c2": 2.985058945723201, - "c3": 2.876158547039256, - "c4": 3.1071375543701913, - "c5": 3.158348103537706, - "c6": 2.7801106339854704, - "c7": 3.2668755340111852 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079056, + "c3": 4.068423485899217, + "c4": 3.254738788719372, + "c5": 2.441054091539528, + "c6": 1.6273693943596834, + "c7": 0.8136846971798443 }, "rgb": [58, 15, 49] }, @@ -139839,23 +139839,23 @@ "year": 1750, "resistanceReported": false, "duration": 45792000, - "curveSeeds": { - "c1": 45.67038522744283, - "c2": 15.64022841587299, - "c3": 52.94174533863548, - "c4": 49.89208073506827, - "c5": -23.639487883537292, - "c6": -30.858880171771673, - "c7": 7.779800232585906 + "points": { + "c1": 10.962602225271574, + "c2": 56.985483768721885, + "c3": 48.82542799757157, + "c4": -7.127208261769326, + "c5": -4.626046790754138, + "c6": 45.979945905158665, + "c7": 54.71389128044215 }, - "vertexSeeds": { - "c1": 2.367652281887114, - "c2": 2.440651071286238, - "c3": 2.3660665013571274, - "c4": 2.388331618135011, - "c5": 2.5389754262746402, - "c6": 2.3535161678914376, - "c7": 2.4426577927785393 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.7725381414701826, + "c3": 3.14378178455848, + "c4": 2.5150254276467856, + "c5": 1.8862690707350913, + "c6": 1.2575127138233928, + "c7": 0.6287563569116985 }, "rgb": [222, 0, 59] }, @@ -139866,23 +139866,23 @@ "year": 1751, "resistanceReported": false, "duration": 63072000, - "curveSeeds": { - "c1": 64.6544249924489, - "c2": -26.15444043661268, - "c3": -43.406257647819736, - "c4": 35.552482415423, - "c5": 15.693338238450991, - "c6": 43.00040758152443, - "c7": -12.300591498334569 + "points": { + "c1": -33.886702319645714, + "c2": -0.9565230340730437, + "c3": 62.752840008984094, + "c4": -25.297016656620002, + "c5": -16.846988492309578, + "c6": 28.520945809646335, + "c7": 53.095683505116284 }, - "vertexSeeds": { - "c1": 2.1979102290926615, - "c2": 2.0094587895636495, - "c3": 2.1310191589361343, - "c4": 1.9475536519257386, - "c5": 2.0333841930064485, - "c6": 1.9875724162196298, - "c7": 1.981534789128391 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705966, + "c3": 2.704576976421637, + "c4": 2.1636615811373083, + "c5": 1.622746185852983, + "c6": 1.0818307905686573, + "c7": 0.5409153952843286 }, "rgb": [222, 0, 59] }, @@ -139893,23 +139893,23 @@ "year": 1750, "resistanceReported": false, "duration": 54864000, - "curveSeeds": { - "c1": 48.75605146031367, - "c2": -68.16269431339384, - "c3": 54.90688482788396, - "c4": -17.478911235116662, - "c5": -68.32624407415709, - "c6": -61.51320744187875, - "c7": -19.434982795508297 + "points": { + "c1": -44.30037143232042, + "c2": -2.0242776973694703, + "c3": -37.45108286488721, + "c4": -42.406042799479096, + "c5": 2.4810667487292193, + "c6": 5.489007246853902, + "c7": -42.54337121789582 }, - "vertexSeeds": { - "c1": 2.99440063298768, - "c2": 2.7459006325460606, - "c3": 2.989023977743358, - "c4": 3.231436724073318, - "c5": 3.1902942217812127, - "c6": 2.782175978649232, - "c7": 3.234460408602523 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877949, + "c3": 3.952843273231624, + "c4": 3.162274618585301, + "c5": 2.3717059639389766, + "c6": 1.5811373092926477, + "c7": 0.7905686546463239 }, "rgb": [222, 0, 59] }, @@ -139920,23 +139920,23 @@ "year": 1750, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -2.9753663299558823, - "c2": -39.53491056013735, - "c3": -44.48546055076362, - "c4": -47.14671866433128, - "c5": -41.394872627467606, - "c6": -32.28920923824026, - "c7": 27.778148043466047 + "points": { + "c1": -38.15165107206001, + "c2": -49.668376745024645, + "c3": 54.72675400986661, + "c4": -50.67637887843012, + "c5": -12.41333992538771, + "c6": 30.589117684809466, + "c7": 51.16258513634709 }, - "vertexSeeds": { - "c1": 6.44514738166511, - "c2": 6.689924874798183, - "c3": 6.314153459522034, - "c4": 6.165064280816866, - "c5": 5.8801175590211185, - "c6": 6.129547670483172, - "c7": 6.294185212573667 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.73647711511789, + "c3": 8.113730929264905, + "c4": 6.490984743411922, + "c5": 4.868238557558938, + "c6": 3.2454923717059674, + "c7": 1.6227461858529837 }, "rgb": [86, 146, 138] }, @@ -139947,23 +139947,23 @@ "year": 1750, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 6.9696584394460075, - "c2": 22.042051708250554, - "c3": 11.68355144030312, - "c4": -23.929551086367965, - "c5": -45.39979427553619, - "c6": 2.0943958417682325, - "c7": -2.805858173465957 + "points": { + "c1": 25.74982444997886, + "c2": -12.127091410300771, + "c3": -34.117090367535376, + "c4": 42.459186390781625, + "c5": 28.746366636037834, + "c6": 17.867219092431824, + "c7": -5.189025964939681 }, - "vertexSeeds": { - "c1": 8.788490932683352, - "c2": 8.95085331147461, - "c3": 9.825487664630437, - "c4": 9.519294887429304, - "c5": 10.129505252889432, - "c6": 8.9735797600504, - "c7": 10.073339611357003 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116495, + "c3": 12.135922330097092, + "c4": 9.708737864077664, + "c5": 7.281553398058247, + "c6": 4.854368932038832, + "c7": 2.427184466019416 }, "rgb": [58, 15, 49] }, @@ -139974,23 +139974,23 @@ "year": 1750, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": 32.64194563485548, - "c2": -30.30577720318418, - "c3": 36.98297458489552, - "c4": -10.419334611931973, - "c5": 25.61764996581966, - "c6": -11.567491661441814, - "c7": 40.91505254577755 + "points": { + "c1": -3.7316732178505845, + "c2": 13.450572153318625, + "c3": -41.28663046351261, + "c4": 4.856692381151035, + "c5": -18.661903546694006, + "c6": -2.188261655430459, + "c7": 12.542135823402226 }, - "vertexSeeds": { - "c1": 5.50997092932401, - "c2": 5.96011996752339, - "c3": 5.703970205065006, - "c4": 6.158550244487209, - "c5": 6.386164278223217, - "c6": 6.100666549635085, - "c7": 6.1877738757890555 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -140001,23 +140001,23 @@ "year": 1750, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 12.777744475599015, - "c2": -36.29557924821863, - "c3": -39.24554804474916, - "c4": 24.56649762287919, - "c5": -22.254362087216887, - "c6": 26.168538572690004, - "c7": 35.961579451413606 + "points": { + "c1": 3.3397886256586915, + "c2": -21.81522812782497, + "c3": 29.80125952486045, + "c4": -34.82885649527519, + "c5": -16.833563765444577, + "c6": 5.031006450588464, + "c7": 13.301594868717189 }, - "vertexSeeds": { - "c1": 3.143911612972225, - "c2": 3.1710579717001717, - "c3": 3.2433275561546067, - "c4": 3.1916735229685904, - "c5": 3.0097519190746187, - "c6": 3.1557833338613097, - "c7": 3.0935251488466893 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.77115117891817, + "c3": 3.9759593157651425, + "c4": 3.1807674526121157, + "c5": 2.3855755894590884, + "c6": 1.5903837263060543, + "c7": 0.7951918631530271 }, "rgb": [58, 15, 49] }, @@ -140028,23 +140028,23 @@ "year": 1749, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -18.945538374408645, - "c2": 22.54091459048471, - "c3": 29.37816590582895, - "c4": -8.903968872520132, - "c5": -18.991696410633104, - "c6": 23.349820341327508, - "c7": 22.668293866657535 + "points": { + "c1": -10.812425144134039, + "c2": -38.221430778807424, + "c3": -10.603285587200169, + "c4": -28.24671741973914, + "c5": -2.391784917322447, + "c6": 36.44602929879329, + "c7": 0.3448796830807197 }, - "vertexSeeds": { - "c1": 7.256821932060099, - "c2": 6.883012417872769, - "c3": 7.203185677608565, - "c4": 7.060715402299294, - "c5": 7.271176699561261, - "c6": 7.094619854046768, - "c7": 6.977584177883359 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -140055,23 +140055,23 @@ "year": 1749, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -18.53390091703081, - "c2": -15.015062891115189, - "c3": -25.757765794461974, - "c4": -1.4514801324223399, - "c5": -15.305687013146436, - "c6": 14.718676341005363, - "c7": 30.857603526447818 + "points": { + "c1": 24.96846329922066, + "c2": 12.571355761421096, + "c3": -13.300287286348144, + "c4": 15.780906532424872, + "c5": -38.03029456556384, + "c6": 41.22665883927634, + "c7": 24.80401079970079 }, - "vertexSeeds": { - "c1": 4.838082901554404, - "c2": 4.838082901554404, - "c3": 4.838082901554404, - "c4": 4.838082901554404, - "c5": 4.838082901554404, - "c6": 4.838082901554404, - "c7": 4.838082901554404 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -140082,23 +140082,23 @@ "year": 1750, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -27.266859599043872, - "c2": 37.01034421901272, - "c3": -4.998736328051216, - "c4": 28.727138484667748, - "c5": -5.376592308302698, - "c6": 12.135414584039296, - "c7": 16.505916848159856 + "points": { + "c1": -5.050119771057766, + "c2": -36.2428995253955, + "c3": 31.577036522004022, + "c4": -41.04482571214194, + "c5": -4.283171271425438, + "c6": -21.472416675938437, + "c7": 9.931322925091223 }, - "vertexSeeds": { - "c1": 4.250140692103566, - "c2": 4.365173430106853, - "c3": 4.307689603022548, - "c4": 4.083678746268449, - "c5": 4.7647596169066055, - "c6": 4.875764760321652, - "c7": 5.218392916479596 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -140109,23 +140109,23 @@ "year": 1749, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 19.161362002884466, - "c2": 30.61811065299284, - "c3": -35.336144565721746, - "c4": 26.10517505715366, - "c5": -15.495856560354468, - "c6": -9.394085251774136, - "c7": -24.35862797195236 + "points": { + "c1": -11.708622837257298, + "c2": 25.305791546390594, + "c3": 38.539069817566016, + "c4": -16.46005131758834, + "c5": 9.783437092195058, + "c6": -9.07469111784058, + "c7": 34.26293609854892 }, - "vertexSeeds": { - "c1": 7.09748714120361, - "c2": 6.79085061378131, - "c3": 6.785660838876966, - "c4": 7.172502790428966, - "c5": 7.00435690894978, - "c6": 7.115999946499037, - "c7": 7.033970862112249 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922338, + "c3": 8.576051779935263, + "c4": 6.860841423948216, + "c5": 5.145631067961169, + "c6": 3.4304207119741217, + "c7": 1.7152103559870473 }, "rgb": [77, 76, 132] }, @@ -140136,23 +140136,23 @@ "year": 1750, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": 40.31878716684364, - "c2": 0.8434830944784011, - "c3": -12.058134503191212, - "c4": 41.8085618746528, - "c5": -12.20810508481447, - "c6": -45.46848344576818, - "c7": -28.667164661338187 + "points": { + "c1": -3.13157965900281, + "c2": -24.811311359791013, + "c3": -37.494145584244585, + "c4": 23.599168566886455, + "c5": -20.679622196439595, + "c6": -29.40714383072917, + "c7": -28.78390332826001 }, - "vertexSeeds": { - "c1": 0.6974619607709482, - "c2": 0.7228707589121021, - "c3": 0.7347885829306087, - "c4": 0.65436184266247, - "c5": 0.6875606376955468, - "c6": 0.7307960290501466, - "c7": 0.7171781280111503 + "offsets": { + "c1": 1.262135922330097, + "c2": 1.0818307905686542, + "c3": 0.9015256588072128, + "c4": 0.7212205270457699, + "c5": 0.5409153952843271, + "c6": 0.36061026352288406, + "c7": 0.18030513176144294 }, "rgb": [238, 201, 159] }, @@ -140163,23 +140163,23 @@ "year": 1750, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -14.570922390770601, - "c2": 39.85476806964382, - "c3": 27.523744854514455, - "c4": 8.416046983722964, - "c5": 6.728994877909763, - "c6": 15.437492619678942, - "c7": 34.17717426504591 + "points": { + "c1": -30.425479384949305, + "c2": -13.305118535322855, + "c3": 29.442840136251043, + "c4": 18.24757220794485, + "c5": -6.747021777604438, + "c6": 12.002851620659527, + "c7": -12.804338855039013 }, - "vertexSeeds": { - "c1": 7.7175794282818835, - "c2": 7.44591310288059, - "c3": 7.644176234405203, - "c4": 7.661722572223829, - "c5": 7.760613789172293, - "c6": 7.768476542764661, - "c7": 7.382538877104726 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169196, + "c3": 9.292649098474346, + "c4": 7.434119278779464, + "c5": 5.575589459084615, + "c6": 3.717059639389732, + "c7": 1.8585298196948492 }, "rgb": [86, 146, 138] }, @@ -140190,23 +140190,23 @@ "year": 1750, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 20.174345119081366, - "c2": -39.394248338522964, - "c3": 30.61395943619793, - "c4": 13.931185832237077, - "c5": 1.2095924629370458, - "c6": -40.68673174336033, - "c7": -37.732202787123654 + "points": { + "c1": -17.992599580868585, + "c2": 7.173599454824625, + "c3": -0.16992050756194743, + "c4": -21.484330756661386, + "c5": -10.431309151453355, + "c6": 43.45339985042244, + "c7": 16.370945173645737 }, - "vertexSeeds": { - "c1": 3.2586766695130813, - "c2": 2.0361087687387687, - "c3": 3.8844179569158674, - "c4": 3.017124040060178, - "c5": 3.638426256425367, - "c6": 3.5281745881150064, - "c7": 3.859503777101992 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848821, + "c3": 5.085529357374018, + "c4": 4.068423485899214, + "c5": 3.05131761442441, + "c6": 2.034211742949607, + "c7": 1.0171058714748045 }, "rgb": [77, 76, 132] }, @@ -140217,23 +140217,23 @@ "year": 1750, "resistanceReported": false, "duration": 51148800, - "curveSeeds": { - "c1": 28.707172329371403, - "c2": 34.7819090032562, - "c3": 60.283126433108166, - "c4": 26.843686408111694, - "c5": 25.24251807723877, - "c6": -53.74091638942129, - "c7": 21.246944859178242 + "points": { + "c1": -9.429810564203493, + "c2": 64.06966439386397, + "c3": 12.745804139684722, + "c4": 17.769128592491015, + "c5": 30.895041608414118, + "c6": -7.121414887914668, + "c7": -37.59517818286835 }, - "vertexSeeds": { - "c1": 4.643986482780454, - "c2": 4.561185724124694, - "c3": 4.662224676152726, - "c4": 4.572272558099811, - "c5": 4.400988514989695, - "c6": 4.4922494030703275, - "c7": 4.560240456765303 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485437, + "c3": 5.663430420711976, + "c4": 4.530744336569583, + "c5": 3.3980582524271905, + "c6": 2.2653721682847867, + "c7": 1.1326860841423934 }, "rgb": [222, 0, 59] }, @@ -140244,23 +140244,23 @@ "year": 1750, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 40.275023529364404, - "c2": -36.92814301087542, - "c3": 45.78655037298144, - "c4": -42.14391643267229, - "c5": 25.70894153529244, - "c6": 41.97132725016212, - "c7": -36.552650713380714 + "points": { + "c1": -44.95128751618756, + "c2": -42.304536541167195, + "c3": 43.19756782211634, + "c4": 48.67062171206942, + "c5": -38.45449354117284, + "c6": -5.440354946028059, + "c7": -45.421247037272856 }, - "vertexSeeds": { - "c1": 4.394111612894059, - "c2": 4.405249024387493, - "c3": 4.724119142339921, - "c4": 4.36297802731688, - "c5": 4.8432219012372855, - "c6": 5.074926883976679, - "c7": 4.942094324600017 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -140271,23 +140271,23 @@ "year": 1749, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 11.153927448837585, - "c2": -2.3419568627488587, - "c3": 18.155293807842078, - "c4": 1.5788942014511846, - "c5": 25.156003807074264, - "c6": 24.983627182257607, - "c7": 14.618569687838317 + "points": { + "c1": 10.288119231645474, + "c2": -24.862000649408493, + "c3": -20.68782100430782, + "c4": -27.731574078316566, + "c5": -0.2598110366801407, + "c6": 33.583917922067904, + "c7": 9.74915142934681 }, - "vertexSeeds": { - "c1": 5.2440030107244535, - "c2": 5.102244123262097, - "c3": 4.783857614015912, - "c4": 4.978024340470749, - "c5": 4.550926975396289, - "c6": 4.772920665747635, - "c7": 5.006746946144361 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -140298,23 +140298,23 @@ "year": 1750, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": -26.234623276531288, - "c2": 15.11706754902334, - "c3": -22.299885339297504, - "c4": 28.190500077781685, - "c5": -35.379380928462275, - "c6": 11.282222461000437, - "c7": -28.33524729372836 + "points": { + "c1": 4.046210983387276, + "c2": 23.94534009673533, + "c3": 32.541060518232605, + "c4": -48.17946716449014, + "c5": -7.402329931844271, + "c6": -7.5550002099054225, + "c7": 10.250246441402027 }, - "vertexSeeds": { - "c1": 9.183712592587469, - "c2": 8.544254978382993, - "c3": 8.598109968435503, - "c4": 10.204204618257503, - "c5": 11.194690641449009, - "c6": 7.94654260425771, - "c7": 9.812655593788325 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133145, + "c3": 13.869625520110953, + "c4": 11.095700416088771, + "c5": 8.321775312066572, + "c6": 5.547850208044386, + "c7": 2.773925104022193 }, "rgb": [86, 146, 138] }, @@ -140325,23 +140325,23 @@ "year": 1749, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -35.68336455707836, - "c2": -5.244487550468353, - "c3": -16.68084545062181, - "c4": -3.758861366369942, - "c5": -18.670864515548118, - "c6": 31.689299659044543, - "c7": 13.47493268924562 + "points": { + "c1": 26.21344663043059, + "c2": -1.0128722103939864, + "c3": 33.99208095213441, + "c4": -0.1177171222416078, + "c5": -14.38106454875016, + "c6": 28.05014035889824, + "c7": -6.754490690425605 }, - "vertexSeeds": { - "c1": 5.2209244788909395, - "c2": 4.534807158844495, - "c3": 4.966573956192425, - "c4": 4.899660702887644, - "c5": 4.557711596894789, - "c6": 5.2296538951955815, - "c7": 5.002656777130891 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -140352,23 +140352,23 @@ "year": 1750, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -17.267567295963833, - "c2": -26.997020649862783, - "c3": -11.492651210753543, - "c4": -35.090390846370106, - "c5": -31.47377509203246, - "c6": 8.349741526526088, - "c7": 4.3363658493594315 + "points": { + "c1": -11.37682730549362, + "c2": -22.926333935204223, + "c3": 35.550687419686334, + "c4": 45.67788221918082, + "c5": -32.89448760511357, + "c6": -25.88639656967736, + "c7": -9.236933127454002 }, - "vertexSeeds": { - "c1": 2.2986368509267763, - "c2": 2.296658692338276, - "c3": 2.425992904448339, - "c4": 2.510253697137184, - "c5": 2.4704871804571695, - "c6": 2.3885646699858283, - "c7": 2.5574417508072917 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590844, + "c3": 3.213129912159039, + "c4": 2.5705039297272316, + "c5": 1.9278779472954244, + "c6": 1.2852519648636145, + "c7": 0.6426259824318098 }, "rgb": [222, 0, 59] }, @@ -140379,23 +140379,23 @@ "year": 1749, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 8.254486904591971, - "c2": -21.936420915812953, - "c3": -17.98718210921954, - "c4": 25.578184668037288, - "c5": 5.048341215269502, - "c6": 12.526086828185292, - "c7": 14.665934848209275 + "points": { + "c1": 26.913751988537463, + "c2": -29.626544119135858, + "c3": 20.83220948651246, + "c4": -8.67262578090033, + "c5": 4.817748172369328, + "c6": 24.4251018117438, + "c7": 0.04136358430526599 }, - "vertexSeeds": { - "c1": 4.6394993815998875, - "c2": 4.55982218640012, - "c3": 4.760853050061577, - "c4": 4.7451231329133385, - "c5": 4.623316655520087, - "c6": 4.07557714016223, - "c7": 5.2623682590907555 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -140406,23 +140406,23 @@ "year": 1750, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -13.182622595285281, - "c2": 42.30716935687168, - "c3": 21.6942346477975, - "c4": -31.91498167339113, - "c5": -15.908124158647507, - "c6": -38.02190819090738, - "c7": -6.441368364303351 + "points": { + "c1": -0.5724454640489967, + "c2": -17.505442088078702, + "c3": 9.444252313565244, + "c4": 5.59570848661086, + "c5": -46.417407047759305, + "c6": -1.1672360955861762, + "c7": 44.16442559284663 }, - "vertexSeeds": { - "c1": 7.346177577540285, - "c2": 8.193499896440963, - "c3": 8.402966559918472, - "c4": 7.744022320001209, - "c5": 8.069860657971487, - "c6": 7.839680151012068, - "c7": 8.094332261485276 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576982, + "c3": 10.10171058714748, + "c4": 8.081368469717988, + "c5": 6.061026352288484, + "c6": 4.040684234858994, + "c7": 2.02034211742949 }, "rgb": [86, 146, 138] }, @@ -140433,23 +140433,23 @@ "year": 1750, "resistanceReported": false, "duration": 49248000, - "curveSeeds": { - "c1": 5.601948742931782, - "c2": 10.382146412990977, - "c3": 62.946246883282654, - "c4": 54.95385631914516, - "c5": -34.55141154541646, - "c6": -17.495276439127622, - "c7": -35.73388730929702 + "points": { + "c1": -62.013667902570425, + "c2": 23.68010053162429, + "c3": -13.611982590131419, + "c4": -32.49790585580593, + "c5": 59.678744958219326, + "c6": -41.53382505981854, + "c7": 54.29466880270729 }, - "vertexSeeds": { - "c1": 12.376330534485737, - "c2": 11.402556315947907, - "c3": 12.056963413932973, - "c4": 12.344241012894464, - "c5": 12.303716010527479, - "c6": 12.139458412057463, - "c7": 10.831698312130296 + "offsets": { + "c1": 21.003236245954692, + "c2": 18.00277392510402, + "c3": 15.002311604253352, + "c4": 12.00184928340268, + "c5": 9.00138696255201, + "c6": 6.00092464170134, + "c7": 3.00046232085067 }, "rgb": [58, 15, 49] }, @@ -140460,23 +140460,23 @@ "year": 1750, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -28.439855189525627, - "c2": 29.675024384176666, - "c3": 0.3997045996900326, - "c4": 1.1093625631947006, - "c5": 21.187856708851953, - "c6": 18.077073352592848, - "c7": -38.69874327728901 + "points": { + "c1": 6.949406411073674, + "c2": -11.714475215989488, + "c3": -26.076959185935298, + "c4": 4.128449002485553, + "c5": 27.920044069223025, + "c6": -11.976369844536386, + "c7": 27.563876528023755 }, - "vertexSeeds": { - "c1": 4.491511296607457, - "c2": 4.879051081842893, - "c3": 5.0605997785906265, - "c4": 5.149908009359693, - "c5": 4.495662801851188, - "c6": 5.103175811052917, - "c7": 4.716555405799391 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -140487,23 +140487,23 @@ "year": 1750, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -33.84417153600671, - "c2": -43.55255817800357, - "c3": 12.27465241377896, - "c4": -41.92362351023716, - "c5": 21.506075431637484, - "c6": 45.72793576589777, - "c7": -12.664453810157688 + "points": { + "c1": 6.151667262490832, + "c2": -42.92660832296628, + "c3": -20.949934479637538, + "c4": -41.050068152665176, + "c5": -33.91550503163644, + "c6": 31.367444100711978, + "c7": 38.05043225201776 }, - "vertexSeeds": { - "c1": 6.572035328190831, - "c2": 6.7602648236457625, - "c3": 6.087639089100779, - "c4": 6.538601340804548, - "c5": 6.291937714449234, - "c6": 6.248662173609543, - "c7": 6.14315358776512 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [77, 76, 132] }, @@ -140514,23 +140514,23 @@ "year": 1750, "resistanceReported": false, "duration": 41731200, - "curveSeeds": { - "c1": -30.67747351686204, - "c2": -49.83158045379149, - "c3": 28.439037047215116, - "c4": 40.223638965649194, - "c5": -35.52882074361766, - "c6": 45.276995863058694, - "c7": 41.60670380556454 + "points": { + "c1": 50.412942380954895, + "c2": 31.176701001038175, + "c3": -14.133372836618747, + "c4": -40.92870382084951, + "c5": -15.047532556920522, + "c6": 0.7687900185237879, + "c7": -21.992894456219467 }, - "vertexSeeds": { - "c1": 1.5538680841253292, - "c2": 1.646642471780324, - "c3": 1.6865711099606433, - "c4": 1.592562114513931, - "c5": 1.6857909306934202, - "c6": 1.6728180600505893, - "c7": 1.71581065093458 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.5242718446601953, + "c3": 2.103559870550164, + "c4": 1.682847896440129, + "c5": 1.2621359223300976, + "c6": 0.8414239482200663, + "c7": 0.42071197411003125 }, "rgb": [222, 0, 59] }, @@ -140541,23 +140541,23 @@ "year": 1750, "resistanceReported": false, "duration": 45878400, - "curveSeeds": { - "c1": 52.290836065041866, - "c2": 33.914946017562805, - "c3": 2.9576472408201724, - "c4": 38.61225180277872, - "c5": -41.287907730552, - "c6": 45.52875140050357, - "c7": 10.078049041337316 + "points": { + "c1": -18.594697156952613, + "c2": 22.16641097061987, + "c3": 51.11996473841008, + "c4": -9.16000840855503, + "c5": 13.802794059167077, + "c6": 29.72012357372443, + "c7": -41.86294779752406 }, - "vertexSeeds": { - "c1": 13.069226464639012, - "c2": 13.262248620708753, - "c3": 12.45987886094063, - "c4": 13.389242399458507, - "c5": 13.673641934685618, - "c6": 12.428778060325142, - "c7": 13.711078914259986 + "offsets": { + "c1": 23.106796116504853, + "c2": 19.805825242718438, + "c3": 16.504854368932023, + "c4": 13.203883495145634, + "c5": 9.902912621359219, + "c6": 6.601941747572803, + "c7": 3.3009708737863876 }, "rgb": [86, 146, 138] }, @@ -140568,23 +140568,23 @@ "year": 1750, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": -37.49473150324465, - "c2": 44.67302610259506, - "c3": -42.01669865957865, - "c4": 9.700377403361728, - "c5": 19.808974709146838, - "c6": 1.909604683302156, - "c7": 5.862494577280195 + "points": { + "c1": -5.047883498851576, + "c2": -15.556145458046942, + "c3": 54.71777518728952, + "c4": 10.174002204683674, + "c5": 19.240468403433226, + "c6": 41.885999606460004, + "c7": -1.3858002706846193 }, - "vertexSeeds": { - "c1": 7.272711118814838, - "c2": 7.009405980104335, - "c3": 7.31196882287477, - "c4": 6.876517299672977, - "c5": 6.817091198079419, - "c6": 7.243700759626186, - "c7": 6.857568117830833 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -140595,23 +140595,23 @@ "year": 1750, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -10.589808942575843, - "c2": 18.18612261064952, - "c3": -36.43151999668149, - "c4": 2.436298618875263, - "c5": 20.36500619024349, - "c6": -46.610978327781616, - "c7": -45.12087229589012 + "points": { + "c1": 34.25895057849387, + "c2": 4.666423324050307, + "c3": -46.40969548121357, + "c4": 41.78114790826149, + "c5": -3.0286394208065985, + "c6": 36.227130612869715, + "c7": 12.773077778023598 }, - "vertexSeeds": { - "c1": 8.609379163121185, - "c2": 8.555928834435198, - "c3": 9.16663211132625, - "c4": 7.920196029915945, - "c5": 7.896587345873373, - "c6": 7.841044348776496, - "c7": 9.208547668267363 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789186, + "c3": 11.373092926490983, + "c4": 9.09847434119279, + "c5": 6.823855755894588, + "c6": 4.549237170596395, + "c7": 2.274618585298202 }, "rgb": [58, 15, 49] }, @@ -140622,23 +140622,23 @@ "year": 1750, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -4.3738588481588465, - "c2": 25.719549303921163, - "c3": 6.016717546871384, - "c4": 45.43022568396106, - "c5": -41.758254447194595, - "c6": 5.671316930662677, - "c7": 31.055649148520793 + "points": { + "c1": -46.46803900549631, + "c2": -15.270884569625892, + "c3": 8.205122058675087, + "c4": 23.015545547684063, + "c5": -40.82051969395441, + "c6": 15.83803617901895, + "c7": -22.204202630792174 }, - "vertexSeeds": { - "c1": 7.232201375577286, - "c2": 7.22903137352211, - "c3": 7.13922644492648, - "c4": 7.281735314960798, - "c5": 6.838292953299298, - "c6": 7.01666497202491, - "c7": 7.030000343611518 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -140649,23 +140649,23 @@ "year": 1751, "resistanceReported": false, "duration": 56764800, - "curveSeeds": { - "c1": 32.15418400616899, - "c2": 11.643958770242733, - "c3": -25.224055855189746, - "c4": 64.26356208382563, - "c5": 65.42563708147705, - "c6": 59.027392051006274, - "c7": 18.605218907690244 + "points": { + "c1": -57.50125614600424, + "c2": 0.31237355998568717, + "c3": -70.12842787324375, + "c4": -6.309414670539695, + "c5": -10.082666238947766, + "c6": 9.467554319216063, + "c7": -71.48329631626115 }, - "vertexSeeds": { - "c1": 7.861131797020544, - "c2": 7.941878117894269, - "c3": 7.4156562238987815, - "c4": 7.768768000531165, - "c5": 8.132009252962897, - "c6": 7.781198983024943, - "c7": 7.924247169305171 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094319, + "c3": 9.824318076745254, + "c4": 7.859454461396208, + "c5": 5.894590846047159, + "c6": 3.929727230698112, + "c7": 1.9648636153490473 }, "rgb": [58, 15, 49] }, @@ -140676,23 +140676,23 @@ "year": 1750, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -21.298513072449204, - "c2": 35.060353760828875, - "c3": 13.715955149154944, - "c4": 28.745863512401982, - "c5": -38.41435818185871, - "c6": 21.117678854510743, - "c7": 39.18746831943329 + "points": { + "c1": -26.526242180746035, + "c2": 35.83073906144415, + "c3": -32.922405297066824, + "c4": -25.919231237100814, + "c5": 31.147308709619054, + "c6": 23.30861663263927, + "c7": -29.49004618670599 }, - "vertexSeeds": { - "c1": 4.707062963566405, - "c2": 4.35314318159628, - "c3": 5.235204698260532, - "c4": 5.142000760335915, - "c5": 4.625120376508817, - "c6": 5.270098781799654, - "c7": 4.732236553019008 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -140703,23 +140703,23 @@ "year": 1750, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": -2.827643873097145, - "c2": -34.99740428110205, - "c3": 31.610851792547848, - "c4": 10.612948125962554, - "c5": 47.33450787604572, - "c6": 9.894720203231245, - "c7": 19.24804515393818 + "points": { + "c1": -7.65357802964143, + "c2": 51.406162207063616, + "c3": 19.195723439043945, + "c4": 0.06323571728418642, + "c5": 42.89167723201818, + "c6": -27.12662531131212, + "c7": 38.09894900746306 }, - "vertexSeeds": { - "c1": 4.9586728214810725, - "c2": 5.002095794214228, - "c3": 4.684837667802765, - "c4": 4.789722105091566, - "c5": 4.683090659209215, - "c6": 5.199578083863314, - "c7": 5.120703918446189 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -140730,23 +140730,23 @@ "year": 1750, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 33.27420695508182, - "c2": 13.700654891613794, - "c3": 22.119456063651512, - "c4": 21.28036066328218, - "c5": -39.79622707399358, - "c6": 41.05100513886367, - "c7": 17.709793739839398 + "points": { + "c1": 2.846304170485311, + "c2": -44.412649882533536, + "c3": -19.45272292330805, + "c4": 18.5361190163731, + "c5": 41.98910514584138, + "c6": 34.87761393689712, + "c7": -32.020794926844886 }, - "vertexSeeds": { - "c1": 9.627920178794191, - "c2": 9.281711607873163, - "c3": 9.75452416942691, - "c4": 8.734512900475112, - "c5": 9.529292341516504, - "c6": 9.57955995591981, - "c7": 9.70832863148595 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593614, + "c3": 11.835413777161355, + "c4": 9.46833102172908, + "c5": 7.101248266296807, + "c6": 4.734165510864534, + "c7": 2.367082755432274 }, "rgb": [222, 0, 59] }, @@ -140757,23 +140757,23 @@ "year": 1750, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": 36.781559062236546, - "c2": -12.630875597499895, - "c3": 28.535085126314634, - "c4": 44.33867439765661, - "c5": 26.07666545326851, - "c6": 40.8688455372428, - "c7": -27.937333707875215 + "points": { + "c1": 47.39350432818902, + "c2": -25.027523592074253, + "c3": 33.932818692839994, + "c4": 38.41441533250542, + "c5": 11.465070060183429, + "c6": -1.8554270123170937, + "c7": 2.2581387845383745 }, - "vertexSeeds": { - "c1": 3.913373101176299, - "c2": 4.011140321674068, - "c3": 3.7579481900661698, - "c4": 4.0055769039109235, - "c5": 3.8272148371833614, - "c6": 4.178534544223937, - "c7": 3.6300648528292565 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768379, + "c3": 5.03929727230698, + "c4": 4.031437817845586, + "c5": 3.0235783633841864, + "c6": 2.015718908922793, + "c7": 1.0078594544613935 }, "rgb": [77, 76, 132] }, @@ -140784,23 +140784,23 @@ "year": 1750, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 23.7159883879455, - "c2": 22.48795659408242, - "c3": 18.2713402067141, - "c4": -18.11461197423869, - "c5": -16.907459044658978, - "c6": 26.34920255920305, - "c7": -7.972512014410498 + "points": { + "c1": -18.55387536831041, + "c2": 14.551766538904026, + "c3": -29.897310053132045, + "c4": 21.350246219697098, + "c5": -17.666631771149703, + "c6": -10.468747156611137, + "c7": -44.18023475155607 }, - "vertexSeeds": { - "c1": 4.879288265993565, - "c2": 5.243182007809586, - "c3": 5.129931967066572, - "c4": 5.209484545626322, - "c5": 4.73250359743401, - "c6": 4.7510030565802515, - "c7": 4.950097256598743 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -140811,23 +140811,23 @@ "year": 1750, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -0.6041444968230927, - "c2": -22.607060483510146, - "c3": -20.98348935499321, - "c4": 7.848776741666413, - "c5": -15.679933820524191, - "c6": 20.202882981418853, - "c7": 1.1075375522141186 + "points": { + "c1": 32.52175939168748, + "c2": 4.089069901551738, + "c3": 18.494663229570634, + "c4": 0.8082536566869365, + "c5": -31.583060795184743, + "c6": -14.801021769265077, + "c7": -27.716063033313443 }, - "vertexSeeds": { - "c1": 4.3182763505375945, - "c2": 3.882456932469389, - "c3": 3.8728809952678027, - "c4": 4.389641311483938, - "c5": 3.90921591342779, - "c6": 4.631116780691662, - "c7": 3.9217637231140463 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [58, 15, 49] }, @@ -140838,23 +140838,23 @@ "year": 1750, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 35.28314691695746, - "c2": 10.524841067014236, - "c3": -38.747295366468656, - "c4": 12.085703210239785, - "c5": -31.66613348939933, - "c6": 32.235091038425125, - "c7": -37.60835281184851 + "points": { + "c1": -35.8299917132348, + "c2": -1.688680107891436, + "c3": -28.78583491122693, + "c4": 26.106613655889163, + "c5": 28.6805517058217, + "c6": -4.625274387644829, + "c7": 1.8726027156454847 }, - "vertexSeeds": { - "c1": 3.9470959495175135, - "c2": 4.054927655769454, - "c3": 3.9332183717588185, - "c4": 3.912475880309186, - "c5": 4.086846933916139, - "c6": 3.961876267839979, - "c7": 3.949643706601241 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.90846047156726, + "c3": 4.923717059639392, + "c4": 3.938973647711507, + "c5": 2.9542302357836387, + "c6": 1.9694868238557535, + "c7": 0.9847434119278855 }, "rgb": [238, 201, 159] }, @@ -140865,23 +140865,23 @@ "year": 1750, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": 25.035486417392335, - "c2": -27.79215360235552, - "c3": -46.508667959634984, - "c4": -36.07577276294692, - "c5": 8.793391752618994, - "c6": -22.699304231882326, - "c7": 29.489563725195453 + "points": { + "c1": 17.199456215860337, + "c2": -27.853710520791918, + "c3": 32.738558954156275, + "c4": 6.378854011285775, + "c5": 47.57020809947595, + "c6": 3.559416297586232, + "c7": 24.074948995948844 }, - "vertexSeeds": { - "c1": 3.977838198859681, - "c2": 4.1380795944345685, - "c3": 4.102612955741114, - "c4": 3.9875286562373438, - "c5": 3.94719626033901, - "c6": 4.121368788196422, - "c7": 3.9879649387043377 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889043, + "c3": 5.108645399907536, + "c4": 4.086916319926028, + "c5": 3.0651872399445215, + "c6": 2.043458159963014, + "c7": 1.021729079981507 }, "rgb": [86, 146, 138] }, @@ -140892,23 +140892,23 @@ "year": 1749, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 3.309322683477859, - "c2": 27.478684607038886, - "c3": 11.899939016030146, - "c4": -15.382351726285567, - "c5": -17.465966582095664, - "c6": -10.76972823273837, - "c7": -28.362528082518928 + "points": { + "c1": -27.356002148684986, + "c2": 30.44789920320801, + "c3": 5.50486028440487, + "c4": -29.404407607492853, + "c5": -31.323486466982168, + "c6": -19.094193065123918, + "c7": -5.781550794553663 }, - "vertexSeeds": { - "c1": 6.429150869011191, - "c2": 6.949087566377776, - "c3": 7.378784527331794, - "c4": 6.526803310795878, - "c5": 6.966353271132579, - "c6": 7.27572432429245, - "c7": 6.9432009821891185 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169208, + "c3": 9.292649098474339, + "c4": 7.434119278779479, + "c5": 5.57558945908461, + "c6": 3.7170596393897397, + "c7": 1.8585298196948699 }, "rgb": [58, 15, 49] }, @@ -140919,23 +140919,23 @@ "year": 1750, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 2.0194448933612676, - "c2": -11.320199260361232, - "c3": 24.042926692311383, - "c4": -28.935199809885766, - "c5": -23.32251264859495, - "c6": -12.053538640974875, - "c7": 32.962538226136246 + "points": { + "c1": -15.655601093463456, + "c2": -42.25370563997255, + "c3": -43.72474745548882, + "c4": -21.266583879562734, + "c5": -21.52089680910738, + "c6": -11.561875026115246, + "c7": -25.984484967633165 }, - "vertexSeeds": { - "c1": 9.153284345478948, - "c2": 9.216960997718108, - "c3": 9.237275328495127, - "c4": 9.07579454209655, - "c5": 9.534386660064511, - "c6": 8.977769075257912, - "c7": 8.801009434951293 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.89736477115117, + "c3": 11.581137309292648, + "c4": 9.264909847434112, + "c5": 6.9486823855755935, + "c6": 4.632454923717056, + "c7": 2.316227461858519 }, "rgb": [222, 0, 59] }, @@ -140946,23 +140946,23 @@ "year": 1750, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 1.0447225481570328, - "c2": 18.10386028158692, - "c3": -23.90685571762039, - "c4": 40.59897144892646, - "c5": -26.04641430781471, - "c6": -38.96883667510335, - "c7": 4.024052434466128 + "points": { + "c1": 8.15653086013782, + "c2": -30.839051412343327, + "c3": -44.214744679671306, + "c4": 32.409446365408016, + "c5": -39.66154051087885, + "c6": 43.03652657855993, + "c7": 8.996540059672888 }, - "vertexSeeds": { - "c1": 2.0550251115383222, - "c2": 1.996508203875916, - "c3": 2.1011025029343693, - "c4": 2.074256008491456, - "c5": 1.9661822665629027, - "c6": 2.004794873274367, - "c7": 2.0297331760412014 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504855, + "c3": 2.5889967637540465, + "c4": 2.0711974110032383, + "c5": 1.5533980582524298, + "c6": 1.035598705501617, + "c7": 0.5177993527508085 }, "rgb": [77, 76, 132] }, @@ -140973,23 +140973,23 @@ "year": 1750, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": 20.001812532653837, - "c2": -31.352922783799325, - "c3": 30.1228759468786, - "c4": -33.51430112103635, - "c5": 6.797913192510229, - "c6": -34.22305374142194, - "c7": -22.90513897413183 + "points": { + "c1": -33.40600764886076, + "c2": -1.5449533912210782, + "c3": -21.595240249421156, + "c4": -16.198814682932902, + "c5": -15.831144356148315, + "c6": 1.1859925881491407, + "c7": -16.6752462591163 }, - "vertexSeeds": { - "c1": 2.2293712204387743, - "c2": 2.5559302409707256, - "c3": 2.1933570057876572, - "c4": 2.313334288791608, - "c5": 2.4865210970083904, - "c6": 2.3764683457672806, - "c7": 2.4829199342552672 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897375, + "c3": 3.0975496994914464, + "c4": 2.478039759593158, + "c5": 1.8585298196948672, + "c6": 1.239019879796579, + "c7": 0.6195099398982883 }, "rgb": [238, 201, 159] }, @@ -141000,23 +141000,23 @@ "year": 1750, "resistanceReported": false, "duration": 47433600, - "curveSeeds": { - "c1": 56.17083642546656, - "c2": 4.798677207450808, - "c3": -11.212743677849758, - "c4": -52.726633511866595, - "c5": 34.01622144148628, - "c6": -10.686183296396159, - "c7": -29.18258395622218 + "points": { + "c1": 8.935206464492367, + "c2": 60.08929731470768, + "c3": -25.530127914716843, + "c4": 48.619501144514075, + "c5": -26.30009086766878, + "c6": -27.921338940419375, + "c7": 45.703672891964786 }, - "vertexSeeds": { - "c1": 10.875325667908434, - "c2": 11.370337356637194, - "c3": 10.111996226523953, - "c4": 9.689922913492904, - "c5": 9.268257734083697, - "c6": 9.339150412963784, - "c7": 9.8290949492547 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.588072122052708, + "c3": 13.823393435043926, + "c4": 11.058714748035133, + "c5": 8.294036061026352, + "c6": 5.529357374017569, + "c7": 2.764678687008787 }, "rgb": [86, 146, 138] }, @@ -141027,23 +141027,23 @@ "year": 1750, "resistanceReported": true, "duration": 29980800, - "curveSeeds": { - "c1": -2.6320141286830463, - "c2": -6.940021347500156, - "c3": -26.18618607929239, - "c4": 36.88525552235157, - "c5": -38.31667593411767, - "c6": 19.34729734391744, - "c7": 2.6437517207483126 + "points": { + "c1": 33.377429548123345, + "c2": 0.5135795448369862, + "c3": 35.02158999889731, + "c4": 24.281440720285104, + "c5": 27.717004127788144, + "c6": 24.00619570770759, + "c7": -35.51355106867912 }, - "vertexSeeds": { - "c1": 4.793565658932232, - "c2": 4.114103418124319, - "c3": 4.3446078830853905, - "c4": 4.604229415050278, - "c5": 4.565009283003057, - "c6": 5.311792371394953, - "c7": 4.417877099539766 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -141054,23 +141054,23 @@ "year": 1750, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 9.111135042398928, - "c2": 22.588544868020037, - "c3": -25.77714634028077, - "c4": -17.881670397080782, - "c5": -16.428991308465065, - "c6": 17.972538184317607, - "c7": 23.45220646120557 + "points": { + "c1": -29.027639997762865, + "c2": -12.926626586762168, + "c3": 10.022147761396525, + "c4": -9.743758379178804, + "c5": -29.810671122951554, + "c6": 29.648786674918554, + "c7": -16.11054747250391 }, - "vertexSeeds": { - "c1": 4.635389421741924, - "c2": 5.152203524291815, - "c3": 4.740684168790503, - "c4": 4.6396372502824885, - "c5": 4.670865575977073, - "c6": 5.180832988920684, - "c7": 5.042925271090291 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -141081,23 +141081,23 @@ "year": 1750, "resistanceReported": false, "duration": 42336000, - "curveSeeds": { - "c1": -29.531051655168422, - "c2": -21.436474588775397, - "c3": -40.63361458710223, - "c4": -34.63842191752978, - "c5": 32.110393068740606, - "c6": 21.718032058658736, - "c7": -46.82219576056809 + "points": { + "c1": 46.93244681986499, + "c2": -4.277249820492678, + "c3": -54.208327079835534, + "c4": 5.408542537948826, + "c5": 9.250545336363302, + "c6": -9.810076712605152, + "c7": 57.385055798249 }, - "vertexSeeds": { - "c1": 5.779324350952757, - "c2": 5.910104795104918, - "c3": 5.893537156628967, - "c4": 6.010736700073264, - "c5": 6.329685761657761, - "c6": 5.775205771225019, - "c7": 6.082343476649919 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434124, + "c3": 7.720758206195094, + "c4": 6.176606564956078, + "c5": 4.632454923717062, + "c6": 3.088303282478032, + "c7": 1.544151641239016 }, "rgb": [238, 201, 159] }, @@ -141108,23 +141108,23 @@ "year": 1750, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 35.41753199333657, - "c2": -33.50692691691695, - "c3": 24.360472608211026, - "c4": 30.002956135197053, - "c5": -9.64309766417555, - "c6": 11.71967881110217, - "c7": 14.497599429203412 + "points": { + "c1": 4.400310444578373, + "c2": -23.348146056207568, + "c3": -8.706464999940295, + "c4": 31.1334261748315, + "c5": 12.315041162423363, + "c6": -17.853418627766466, + "c7": 3.6084234732243416 }, - "vertexSeeds": { - "c1": 4.868167711128193, - "c2": 5.002916292473716, - "c3": 5.221133042430361, - "c4": 5.051839344326286, - "c5": 4.68521251557322, - "c6": 4.9830884833584665, - "c7": 4.410136145991296 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [77, 76, 132] }, @@ -141135,23 +141135,23 @@ "year": 1750, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 11.832283672951473, - "c2": -3.9258520169881166, - "c3": -17.41883731210383, - "c4": 25.666697766372895, - "c5": 15.94959644321931, - "c6": -5.223673930082178, - "c7": -14.5840497258757 + "points": { + "c1": 3.6838001695974363, + "c2": 26.46732895678876, + "c3": 21.61918992762371, + "c4": 3.887387024028758, + "c5": -7.811924714613809, + "c6": -7.641240741597898, + "c7": 0.985430645040136 }, - "vertexSeeds": { - "c1": 7.182865266056223, - "c2": 7.43338722114272, - "c3": 6.811890698362555, - "c4": 7.339418037408622, - "c5": 7.144126240234545, - "c6": 6.879080828384056, - "c7": 7.3047846042866205 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -141162,23 +141162,23 @@ "year": 1750, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 4.731544806740736, - "c2": 1.9992562939787533, - "c3": -24.8219078333767, - "c4": -26.272775039102083, - "c5": -29.187947582586258, - "c6": 8.313156751186042, - "c7": -24.309411529865898 + "points": { + "c1": 5.814778056354903, + "c2": 30.393710169652337, + "c3": -2.088376385446658, + "c4": 16.76602231573984, + "c5": -13.780906794989583, + "c6": 23.977332362878407, + "c7": -31.90281151274508 }, - "vertexSeeds": { - "c1": 5.850141125748054, - "c2": 5.957759817594091, - "c3": 5.866869132489629, - "c4": 5.264514046479556, - "c5": 5.709768542474699, - "c6": 5.877199585639244, - "c7": 5.997182905254712 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152564, + "c3": 7.5589459084604655, + "c4": 6.047156726768379, + "c5": 4.535367545076282, + "c6": 3.023578363384184, + "c7": 1.5117891816920868 }, "rgb": [77, 76, 132] }, @@ -141189,23 +141189,23 @@ "year": 1750, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 13.1258051148004, - "c2": 30.90758735599735, - "c3": 24.890733771589638, - "c4": -39.262758010286895, - "c5": 38.35066575618575, - "c6": 8.366497247171615, - "c7": -5.872173711556961 + "points": { + "c1": 0.8475447460453296, + "c2": 8.19195615044302, + "c3": -23.395848390102213, + "c4": -1.3157765324392372, + "c5": 45.05598651814938, + "c6": -36.94936462368699, + "c7": -17.463884550981643 }, - "vertexSeeds": { - "c1": 6.96109207353175, - "c2": 5.678902543358605, - "c3": 6.146074309303476, - "c4": 4.775981316909055, - "c5": 6.659378517453967, - "c6": 5.052010925138983, - "c7": 5.264797538048647 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479888, + "c3": 8.321775312066576, + "c4": 6.657420249653259, + "c5": 4.993065187239947, + "c6": 3.328710124826631, + "c7": 1.664355062413314 }, "rgb": [77, 76, 132] }, @@ -141216,23 +141216,23 @@ "year": 1750, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 23.775075856089217, - "c2": 21.733139420682917, - "c3": 1.570233634225616, - "c4": 8.107432925266124, - "c5": 7.54233247238362, - "c6": -0.957257828250782, - "c7": -9.538825869243258 + "points": { + "c1": 19.969818043379682, + "c2": -22.517490006600433, + "c3": 17.464495450920076, + "c4": -25.43892096369572, + "c5": 26.989995334461803, + "c6": 1.636653770903763, + "c7": -16.436914387291033 }, - "vertexSeeds": { - "c1": 4.066895638474765, - "c2": 4.431794746666844, - "c3": 4.194441208202414, - "c4": 3.8673091857475326, - "c5": 4.2031785393928764, - "c6": 4.494400340294424, - "c7": 4.186043897279989 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653256, + "c3": 5.547850208044383, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217752, + "c7": 1.1095700416088785 }, "rgb": [238, 201, 159] }, @@ -141243,23 +141243,23 @@ "year": 1750, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": 2.2147196217055694, - "c2": -30.048275717507128, - "c3": 5.814230580663519, - "c4": -11.743720677901614, - "c5": 22.71439201246264, - "c6": -4.323783760871876, - "c7": -29.581534506637038 + "points": { + "c1": -20.4958421363171, + "c2": 43.998578194971614, + "c3": -26.81611683455154, + "c4": -10.277447080063482, + "c5": 42.1375732401623, + "c6": 39.88453863671279, + "c7": 3.934474465801493 }, - "vertexSeeds": { - "c1": 2.601503678574751, - "c2": 2.52491229408569, - "c3": 2.558772589698741, - "c4": 2.3934554264533103, - "c5": 2.327976280764328, - "c6": 2.642919556408209, - "c7": 2.253268689548211 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550621, + "c3": 3.19001386962552, + "c4": 2.552011095700416, + "c5": 1.9140083217753119, + "c6": 1.276005547850208, + "c7": 0.638002773925104 }, "rgb": [58, 15, 49] }, @@ -141270,23 +141270,23 @@ "year": 1750, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 24.407360206233342, - "c2": 22.68344010775548, - "c3": -21.46082206487036, - "c4": -2.947685300283318, - "c5": -7.8217479288519485, - "c6": 10.467330184440414, - "c7": 16.982003864666176 + "points": { + "c1": 31.943078820875527, + "c2": 31.565127599272657, + "c3": 34.1319861409644, + "c4": -25.098750218079665, + "c5": 15.244043949688788, + "c6": -35.51603429826248, + "c7": -29.975201025476466 }, - "vertexSeeds": { - "c1": 5.827961559177553, - "c2": 6.297763887414055, - "c3": 5.689979758641342, - "c4": 5.39156533122353, - "c5": 5.625392609342747, - "c6": 6.399953078857929, - "c7": 6.16344526300624 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [86, 146, 138] }, @@ -141297,23 +141297,23 @@ "year": 1751, "resistanceReported": false, "duration": 46569600, - "curveSeeds": { - "c1": -32.02614659804586, - "c2": 24.45860170923438, - "c3": 43.04465990037182, - "c4": -56.01327656357093, - "c5": -18.553453601149563, - "c6": 48.4843915524314, - "c7": 48.728333176686924 + "points": { + "c1": 11.719872440745938, + "c2": -56.66024121203426, + "c3": 15.74569663307097, + "c4": 2.2813896484004133, + "c5": 4.895601530195982, + "c6": -2.28641534912245, + "c7": 30.879395455199493 }, - "vertexSeeds": { - "c1": 6.1596436349389245, - "c2": 6.873126730262456, - "c3": 6.414073285600132, - "c4": 6.4816741374312725, - "c5": 6.800492120090597, - "c6": 6.669475697560664, - "c7": 6.2341319235483175 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [58, 15, 49] }, @@ -141324,23 +141324,23 @@ "year": 1750, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -8.311162989071999, - "c2": -22.17727968895699, - "c3": -17.85311557014301, - "c4": 20.429096550464095, - "c5": 23.120532280478955, - "c6": -24.3400404856507, - "c7": -34.583121694518404 + "points": { + "c1": 3.4405618014488226, + "c2": 16.681124078177845, + "c3": 13.148507705537149, + "c4": 35.231105902045, + "c5": 29.930945789839598, + "c6": 3.5811571491117675, + "c7": -2.3649225743158624 }, - "vertexSeeds": { - "c1": 1.7780095664370803, - "c2": 1.5780351642472157, - "c3": 1.7625717857603977, - "c4": 1.707995517001177, - "c5": 1.7528670747103758, - "c6": 1.8168735901848243, - "c7": 1.6798117179849705 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.718446601941747, + "c3": 2.265372168284789, + "c4": 1.812297734627833, + "c5": 1.3592233009708747, + "c6": 0.9061488673139165, + "c7": 0.45307443365695826 }, "rgb": [222, 0, 59] }, @@ -141351,23 +141351,23 @@ "year": 1751, "resistanceReported": false, "duration": 51494400, - "curveSeeds": { - "c1": -20.04364141194708, - "c2": -53.93597958448867, - "c3": 61.594901342272266, - "c4": -64.07859596022469, - "c5": 25.254140095903907, - "c6": -14.770893003070448, - "c7": 33.19360604570062 + "points": { + "c1": 1.0316689852174932, + "c2": -13.643129308936892, + "c3": 44.56461366321237, + "c4": 20.34056967535514, + "c5": 32.345920850048, + "c6": 27.335931714839617, + "c7": -37.14081574107456 }, - "vertexSeeds": { - "c1": 0.7707041856093467, - "c2": 0.6999923520280209, - "c3": 0.7188666978504455, - "c4": 0.7548944045374357, - "c5": 0.6953241909793451, - "c6": 0.678011050716139, - "c7": 0.7577106815805348 + "offsets": { + "c1": 1.3915857605177993, + "c2": 1.1927877947295418, + "c3": 0.9939898289412854, + "c4": 0.7951918631530278, + "c5": 0.5963938973647714, + "c6": 0.3975959315765139, + "c7": 0.19879796578825634 }, "rgb": [58, 15, 49] }, @@ -141378,23 +141378,23 @@ "year": 1750, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -0.930163704461215, - "c2": -25.644755500715355, - "c3": 24.182293042137566, - "c4": 25.614211537997406, - "c5": -3.0730686343014, - "c6": 29.92560059993113, - "c7": 2.726612217839204 + "points": { + "c1": 19.799426508945558, + "c2": 28.238539974907567, + "c3": 24.784677697381817, + "c4": 28.83932576503362, + "c5": 9.221630505721372, + "c6": -2.815064971518339, + "c7": 14.103403196166376 }, - "vertexSeeds": { - "c1": 4.075210802776948, - "c2": 5.2219702542757425, - "c3": 4.103297781129115, - "c4": 4.322316668841069, - "c5": 5.065986894987997, - "c6": 4.407585618282397, - "c7": 4.114881904674512 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -141405,23 +141405,23 @@ "year": 1750, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -8.994932588748853, - "c2": 24.593727917419557, - "c3": 22.418926384276887, - "c4": -21.06162769723073, - "c5": -11.639344987783893, - "c6": -11.359943897567227, - "c7": 29.881499862471742 + "points": { + "c1": 9.754729205324296, + "c2": 40.911517267558324, + "c3": -32.38680800716519, + "c4": 34.58639707955986, + "c5": 20.090819649204846, + "c6": -8.2991066872722, + "c7": 32.100729817194605 }, - "vertexSeeds": { - "c1": 2.703718750079496, - "c2": 2.6122779547077855, - "c3": 2.5370168536298303, - "c4": 2.7662220053365685, - "c5": 2.6745060936698217, - "c6": 2.570331664667871, - "c7": 2.4750023021042025 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -141432,23 +141432,23 @@ "year": 1750, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 22.65135466223946, - "c2": 10.606946238582186, - "c3": 12.422103427918618, - "c4": -17.863524393113828, - "c5": -3.3501055152849375, - "c6": 7.552430620508787, - "c7": 10.052915409205522 + "points": { + "c1": 20.985503714148745, + "c2": -13.101533880655742, + "c3": 18.903215047523812, + "c4": 16.73884678584594, + "c5": -7.758688541366869, + "c6": 24.654179446847213, + "c7": 2.3605693940769967 }, - "vertexSeeds": { - "c1": 4.98691479133943, - "c2": 5.185796206590508, - "c3": 5.205531314130634, - "c4": 5.007258925600761, - "c5": 5.005618030439399, - "c6": 4.7033761576470665, - "c7": 5.10538764260324 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -141459,23 +141459,23 @@ "year": 1750, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -3.9794293811520234, - "c2": -7.480520992300146, - "c3": 13.853191690633722, - "c4": 13.695799912588214, - "c5": -11.532191049734791, - "c6": -22.16963471614104, - "c7": 5.967439740580311 + "points": { + "c1": -31.12174659380343, + "c2": -5.6968490296205125, + "c3": -19.897051887850957, + "c4": -5.667832954156939, + "c5": -17.259072925046237, + "c6": -3.6369216595513905, + "c7": 26.19696664158986 }, - "vertexSeeds": { - "c1": 4.973889220742507, - "c2": 4.526586104570059, - "c3": 5.235149711359304, - "c4": 4.376675101084913, - "c5": 5.154505423997243, - "c6": 4.891626102337372, - "c7": 4.499918353935392 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -141486,23 +141486,23 @@ "year": 1750, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -12.154938638965419, - "c2": -8.72859263463846, - "c3": -35.197403104460285, - "c4": -34.42575451713783, - "c5": -25.831963483348815, - "c6": -29.644559538769553, - "c7": 22.402537323321944 + "points": { + "c1": 28.579919355446933, + "c2": -9.268726699517352, + "c3": 0.7630633560206093, + "c4": -14.45080028940836, + "c5": 9.168384210874628, + "c6": 4.687456896354995, + "c7": -16.930829390719335 }, - "vertexSeeds": { - "c1": 4.557646522820298, - "c2": 4.5195767918423675, - "c3": 4.35310132579356, - "c4": 4.2582750207126505, - "c5": 4.667343060173222, - "c6": 4.4897105670434865, - "c7": 4.531133994199023 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [222, 0, 59] }, @@ -141513,23 +141513,23 @@ "year": 1750, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 26.09581772614117, - "c2": -25.715882446199743, - "c3": -40.6018824246424, - "c4": -25.42570895069639, - "c5": -10.379437344721197, - "c6": 11.514126084034821, - "c7": -7.021682814417197 + "points": { + "c1": -47.60375147238508, + "c2": -6.469548973025098, + "c3": 28.869353372677004, + "c4": -15.65864958458998, + "c5": 16.26555048542803, + "c6": 30.34654727980523, + "c7": -8.729740564782944 }, - "vertexSeeds": { - "c1": 3.7485453115135705, - "c2": 3.812475628027327, - "c3": 3.8166463553364975, - "c4": 4.377606310265845, - "c5": 3.562265923366271, - "c6": 3.8409410302499243, - "c7": 3.6936319967983264 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251041, + "c3": 5.316689782709201, + "c4": 4.253351826167361, + "c5": 3.1900138696255205, + "c6": 2.1266759130836803, + "c7": 1.0633379565418402 }, "rgb": [86, 146, 138] }, @@ -141540,23 +141540,23 @@ "year": 1750, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": 44.2232281571712, - "c2": 46.76181879921511, - "c3": -25.951863986724412, - "c4": 15.027837619141032, - "c5": 7.344527035698896, - "c6": -1.16069344084152, - "c7": 49.68730651621957 + "points": { + "c1": -2.876804107337385, + "c2": 42.91850189002901, + "c3": 7.433505788517657, + "c4": 11.634791011937587, + "c5": -43.78666100240801, + "c6": -11.599795007240978, + "c7": 29.025065704199186 }, - "vertexSeeds": { - "c1": 3.161357050728807, - "c2": 3.181660851355853, - "c3": 3.4112707257323347, - "c4": 3.603131422441899, - "c5": 3.729666769037918, - "c6": 3.6751588873760888, - "c7": 3.699540254338383 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.49237170596394, + "c3": 4.576976421636614, + "c4": 3.6615811373092915, + "c5": 2.74618585298197, + "c6": 1.8307905686546484, + "c7": 0.9153952843273216 }, "rgb": [222, 0, 59] }, @@ -141567,23 +141567,23 @@ "year": 1750, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -9.343868275622931, - "c2": 0.8625213142872639, - "c3": -25.746887015704615, - "c4": 32.23686990025609, - "c5": -1.4046435199898895, - "c6": -22.19601422487685, - "c7": -0.8089521653127747 + "points": { + "c1": 23.431409174195302, + "c2": -8.917268140386703, + "c3": 38.236346638310614, + "c4": -13.583361045097178, + "c5": 31.106147241767353, + "c6": -29.37232777922159, + "c7": 17.684063552376223 }, - "vertexSeeds": { - "c1": 8.227102512758364, - "c2": 8.603694437844727, - "c3": 8.833376948026594, - "c4": 8.758238662807283, - "c5": 8.479667804811553, - "c6": 8.445278780880676, - "c7": 8.657617884115385 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421645, + "c3": 10.58714748035136, + "c4": 8.469717984281097, + "c5": 6.352288488210812, + "c6": 4.234858992140548, + "c7": 2.1174294960702844 }, "rgb": [58, 15, 49] }, @@ -141594,23 +141594,23 @@ "year": 1751, "resistanceReported": false, "duration": 52531200, - "curveSeeds": { - "c1": 24.850912875707593, - "c2": 18.38197448780349, - "c3": 62.32310767817836, - "c4": -10.26522268098391, - "c5": 36.848056771790965, - "c6": -16.713305484342875, - "c7": 30.705285202758944 + "points": { + "c1": 45.41424023721575, + "c2": -52.34399395661565, + "c3": 17.084762659086735, + "c4": 20.34194618039004, + "c5": -2.327284981140366, + "c6": 38.65296411793136, + "c7": -19.570323538071136 }, - "vertexSeeds": { - "c1": 3.7502206975625705, - "c2": 3.981608548441809, - "c3": 3.9781897332008938, - "c4": 4.304964282539267, - "c5": 3.813366918374492, - "c6": 4.171108056254373, - "c7": 4.345578361347615 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049931, + "c3": 5.20110957004161, + "c4": 4.16088765603329, + "c5": 3.1206657420249684, + "c6": 2.0804438280166475, + "c7": 1.040221914008327 }, "rgb": [86, 146, 138] }, @@ -141621,23 +141621,23 @@ "year": 1750, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": -31.46980460391595, - "c2": -53.8362030395181, - "c3": -7.180408982755331, - "c4": -31.031179559318428, - "c5": 53.94017215443693, - "c6": -40.966672220604465, - "c7": 27.207309862247577 + "points": { + "c1": -18.211122915087778, + "c2": -12.720638088721095, + "c3": -33.821824017099146, + "c4": 31.034898157044346, + "c5": 39.11703678990522, + "c6": -41.54981645087676, + "c7": -21.12279304840861 }, - "vertexSeeds": { - "c1": 3.654769000226801, - "c2": 3.998843538782354, - "c3": 3.7374065479525154, - "c4": 3.9843933437343195, - "c5": 3.936974622233617, - "c6": 3.6866123747789326, - "c7": 3.736636908802473 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406379, + "c3": 4.831252889505315, + "c4": 3.8650023116042505, + "c5": 2.8987517337031856, + "c6": 1.932501155802121, + "c7": 0.9662505779010566 }, "rgb": [77, 76, 132] }, @@ -141648,23 +141648,23 @@ "year": 1750, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 28.811801577468447, - "c2": 15.654805271619015, - "c3": -20.136721581756504, - "c4": 12.118850331919308, - "c5": -13.915876612213964, - "c6": 10.594829444999515, - "c7": 10.799808740966153 + "points": { + "c1": -7.239247115119646, + "c2": -14.647795192198107, + "c3": -20.112942793299865, + "c4": 28.55986727741426, + "c5": 24.449006954040296, + "c6": -9.87563396507101, + "c7": -17.08692650442648 }, - "vertexSeeds": { - "c1": 8.509676222785599, - "c2": 8.35467840081966, - "c3": 8.403478919969979, - "c4": 8.458564911916184, - "c5": 8.408898941432131, - "c6": 8.351971002126959, - "c7": 8.434638907578213 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.34396671289873, + "c3": 10.286638927415636, + "c4": 8.229311141932486, + "c5": 6.171983356449392, + "c6": 4.114655570966243, + "c7": 2.057327785483149 }, "rgb": [238, 201, 159] }, @@ -141675,23 +141675,23 @@ "year": 1751, "resistanceReported": true, "duration": 51753600, - "curveSeeds": { - "c1": 8.165232204344534, - "c2": -11.607156528154881, - "c3": 23.46906841326178, - "c4": 18.675053601102164, - "c5": 59.32838081416753, - "c6": 65.67651066251973, - "c7": -46.48492192605555 + "points": { + "c1": 13.361641179824517, + "c2": 5.324667289722953, + "c3": 4.4564363859335, + "c4": 1.638855548568813, + "c5": 55.35900188014422, + "c6": -22.870524117523928, + "c7": -15.088410356645603 }, - "vertexSeeds": { - "c1": 1.420837322437987, - "c2": 1.4229310338760282, - "c3": 1.436445322280952, - "c4": 1.4111763110697018, - "c5": 1.3990773035868769, - "c6": 1.4182602425939541, - "c7": 1.415607958894863 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.080443828016636, + "c3": 1.733703190013872, + "c4": 1.3869625520110906, + "c5": 1.0402219140083266, + "c6": 0.6934812760055453, + "c7": 0.34674063800276406 }, "rgb": [222, 0, 59] }, @@ -141702,23 +141702,23 @@ "year": 1750, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": -46.17651147310403, - "c2": -20.864078693862623, - "c3": -33.88085142124032, - "c4": 43.267351198423924, - "c5": 25.663376390299362, - "c6": 19.525815968859078, - "c7": -26.18140050872954 + "points": { + "c1": 45.477097752120784, + "c2": 10.748294991954921, + "c3": -55.29176933055256, + "c4": -45.08465472855949, + "c5": 17.15387157497652, + "c6": -5.2135817018754835, + "c7": -1.777088776681886 }, - "vertexSeeds": { - "c1": 5.047596631061947, - "c2": 4.568320218392228, - "c3": 4.69864694832574, - "c4": 4.982785734141768, - "c5": 5.159512779945984, - "c6": 5.132079481061504, - "c7": 4.902399989378043 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -141729,23 +141729,23 @@ "year": 1750, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -7.742697928237369, - "c2": 15.86705006326168, - "c3": -36.42465209100188, - "c4": -33.130117478118656, - "c5": -21.766068810002448, - "c6": -53.13786397638809, - "c7": -4.994972256015835 + "points": { + "c1": 43.6413837043084, + "c2": 53.592493060315796, + "c3": 13.678722941212023, + "c4": -42.86203664118443, + "c5": -48.182972581517085, + "c6": 19.55966855625271, + "c7": 2.4809668669255416 }, - "vertexSeeds": { - "c1": 5.23421114247616, - "c2": 5.256190341491068, - "c3": 5.075165042747379, - "c4": 5.123867181893285, - "c5": 4.647672941560299, - "c6": 4.62561328452898, - "c7": 4.618458992245276 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -141756,23 +141756,23 @@ "year": 1751, "resistanceReported": false, "duration": 53222400, - "curveSeeds": { - "c1": 66.59631134450028, - "c2": -67.78344040279566, - "c3": 10.122627651242496, - "c4": -54.7265353153134, - "c5": 55.95247138962145, - "c6": 42.040783507351875, - "c7": 63.86989123188049 + "points": { + "c1": -52.89187194930873, + "c2": -70.03014864596634, + "c3": -57.425598211245855, + "c4": -60.56276741091823, + "c5": -34.15573464761304, + "c6": 45.44797024578541, + "c7": 21.853222893387 }, - "vertexSeeds": { - "c1": 4.098047213664333, - "c2": 4.3727035698222725, - "c3": 3.880318613838494, - "c4": 4.145153265258662, - "c5": 4.1501920588434364, - "c6": 4.041638322899207, - "c7": 4.220967426888221 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251042, + "c3": 5.316689782709203, + "c4": 4.253351826167357, + "c5": 3.190013869625518, + "c6": 2.1266759130836785, + "c7": 1.0633379565418393 }, "rgb": [86, 146, 138] }, @@ -141783,23 +141783,23 @@ "year": 1751, "resistanceReported": false, "duration": 46051200, - "curveSeeds": { - "c1": -31.255257419848636, - "c2": 56.2023395924819, - "c3": 25.146071751698038, - "c4": -30.297285052235598, - "c5": -59.843729499653016, - "c6": -19.623269968605925, - "c7": 14.026459421139911 + "points": { + "c1": 56.329752330364904, + "c2": 38.14184265537937, + "c3": 41.66389678625132, + "c4": 42.889489656503635, + "c5": -25.958540306315655, + "c6": -62.45281729344551, + "c7": -52.242576469624694 }, - "vertexSeeds": { - "c1": 6.006020297364147, - "c2": 5.85369191999752, - "c3": 5.872752421715955, - "c4": 5.911897697033091, - "c5": 4.58894952636035, - "c6": 5.473059728733028, - "c7": 5.034641000317765 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669904, + "c3": 7.281553398058254, + "c4": 5.825242718446603, + "c5": 4.368932038834953, + "c6": 2.9126213592233032, + "c7": 1.45631067961165 }, "rgb": [58, 15, 49] }, @@ -141810,23 +141810,23 @@ "year": 1751, "resistanceReported": false, "duration": 43891200, - "curveSeeds": { - "c1": 17.394326084257457, - "c2": 46.88712967353153, - "c3": 5.89591146562455, - "c4": 49.114944775117124, - "c5": 51.87988684076899, - "c6": -22.54934753184115, - "c7": 33.30269932533541 + "points": { + "c1": -3.705791507369568, + "c2": -4.062272159106655, + "c3": 4.135398963674206, + "c4": 58.35260525732237, + "c5": 56.8520732430956, + "c6": 51.93358944017142, + "c7": -28.12306344391238 }, - "vertexSeeds": { - "c1": 6.123244003617718, - "c2": 6.318445265583666, - "c3": 6.148513031817613, - "c4": 6.8923325291944195, - "c5": 6.4827553990243745, - "c6": 6.549800996125813, - "c7": 6.425271408054354 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [58, 15, 49] }, @@ -141837,23 +141837,23 @@ "year": 1750, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 16.71677261480326, - "c2": 34.18026634855239, - "c3": 22.1874198089005, - "c4": 16.617020949520445, - "c5": -36.23301271877234, - "c6": -4.77408112012467, - "c7": 37.810196882929766 + "points": { + "c1": -34.34753191092169, + "c2": 37.28633607489146, + "c3": 34.6124801150635, + "c4": 23.777081120483764, + "c5": 2.6488434677139168, + "c6": 37.46015059107763, + "c7": 10.364707701278874 }, - "vertexSeeds": { - "c1": 4.654354696080818, - "c2": 5.062022976869595, - "c3": 4.127867146355596, - "c4": 4.5494689683088225, - "c5": 4.960841392064793, - "c6": 4.905010509445961, - "c7": 4.868853546548572 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -141864,23 +141864,23 @@ "year": 1751, "resistanceReported": false, "duration": 44496000, - "curveSeeds": { - "c1": 28.97569992063434, - "c2": 21.41341341135879, - "c3": -12.534436348487603, - "c4": 37.6134571438232, - "c5": 8.019868043788264, - "c6": -12.123366320832034, - "c7": 41.32569249083531 + "points": { + "c1": -23.778794192595207, + "c2": -10.57274621416014, + "c3": 6.273396718754398, + "c4": 56.94328752133619, + "c5": 26.852609063259806, + "c6": -59.31850446234944, + "c7": 13.878541751575384 }, - "vertexSeeds": { - "c1": 3.774674065194645, - "c2": 3.7063995928107514, - "c3": 3.7769563711614884, - "c4": 4.083274928045116, - "c5": 3.6040133431042833, - "c6": 3.7480835029813697, - "c7": 3.7997278120314766 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441053, + "c4": 4.105409153952844, + "c5": 3.079056865464631, + "c6": 2.052704576976422, + "c7": 1.026352288488209 }, "rgb": [58, 15, 49] }, @@ -141891,23 +141891,23 @@ "year": 1750, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 2.9592312524231303, - "c2": -32.15000834160583, - "c3": 28.848251024480724, - "c4": -27.090702852010576, - "c5": -7.926630135919471, - "c6": 2.324880426668777, - "c7": 4.5920891161193325 + "points": { + "c1": -24.318309801451782, + "c2": 25.11452730638453, + "c3": 27.43042399136388, + "c4": 1.902849725163442, + "c5": 30.74750561210775, + "c6": -7.660108512619594, + "c7": -6.141408314904833 }, - "vertexSeeds": { - "c1": 7.782925220679874, - "c2": 6.730537939748199, - "c3": 7.290519125273039, - "c4": 6.555893310924295, - "c5": 7.172312812946645, - "c6": 6.839879537254896, - "c7": 7.531518176039044 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477112, + "c4": 7.711511789181697, + "c5": 5.783633841886273, + "c6": 3.8557558945908483, + "c7": 1.9278779472954242 }, "rgb": [86, 146, 138] }, @@ -141918,23 +141918,23 @@ "year": 1751, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": 14.059650384942188, - "c2": 25.65912786884573, - "c3": -7.410073107720628, - "c4": 33.010501135211854, - "c5": 42.41753518199464, - "c6": -42.75015627485891, - "c7": -9.982261405422612 + "points": { + "c1": -49.232732992241836, + "c2": -7.368841126150443, + "c3": 39.446505691245164, + "c4": 20.030000460982478, + "c5": -2.587979927444536, + "c6": 23.451899733331175, + "c7": -17.741049705379346 }, - "vertexSeeds": { - "c1": 5.2669636507450015, - "c2": 4.682099477106855, - "c3": 4.5875669378167325, - "c4": 4.763922032245366, - "c5": 4.9479248076800975, - "c6": 5.020351099344022, - "c7": 4.831651349855937 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -141945,23 +141945,23 @@ "year": 1750, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -30.158386252742872, - "c2": -0.17414941620270952, - "c3": -20.975915824611455, - "c4": -30.340926594128206, - "c5": 26.444633172659888, - "c6": 23.185698962101657, - "c7": 12.3527203946791 + "points": { + "c1": -20.13276606783944, + "c2": 27.792819518196374, + "c3": -7.08115387711808, + "c4": -21.732756899803867, + "c5": 19.88281799171478, + "c6": 15.736088997722327, + "c7": 23.273385493012547 }, - "vertexSeeds": { - "c1": 6.147048792582797, - "c2": 5.958658741050495, - "c3": 6.303523610461671, - "c4": 5.676890441902368, - "c5": 5.672550799544495, - "c6": 5.44084996105862, - "c7": 5.75226539273846 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152565, + "c3": 7.558945908460472, + "c4": 6.047156726768376, + "c5": 4.535367545076283, + "c6": 3.023578363384188, + "c7": 1.511789181692094 }, "rgb": [238, 201, 159] }, @@ -141972,23 +141972,23 @@ "year": 1751, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 19.14388862811917, - "c2": -7.066344557382571, - "c3": -38.29962039406253, - "c4": -12.832029800274825, - "c5": 41.683373731140165, - "c6": 33.08279725441818, - "c7": 16.59404141818449 + "points": { + "c1": 37.65469376262391, + "c2": 49.80638214043553, + "c3": 26.97377133507291, + "c4": -11.752843830136904, + "c5": -50.52419332838693, + "c6": -28.102264293318168, + "c7": 3.5630758153119046 }, - "vertexSeeds": { - "c1": 8.581256255528476, - "c2": 7.430607778931513, - "c3": 8.526437813547718, - "c4": 8.164563634994696, - "c5": 8.807799985964573, - "c6": 7.916776295618542, - "c7": 8.193127064678329 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.34257975034674, + "c3": 11.118816458622284, + "c4": 8.895053166897826, + "c5": 6.67128987517337, + "c6": 4.447526583448913, + "c7": 2.2237632917244565 }, "rgb": [77, 76, 132] }, @@ -141999,23 +141999,23 @@ "year": 1750, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 21.468927661334973, - "c2": -36.154660980426414, - "c3": 28.922116007766917, - "c4": 20.310891704753793, - "c5": -2.195686646324667, - "c6": -1.4941497975372329, - "c7": 10.953682696065073 + "points": { + "c1": -11.764636925839085, + "c2": -14.53850213747565, + "c3": 18.832065575072555, + "c4": -11.333156874197261, + "c5": 24.762619817917425, + "c6": -40.43974459338497, + "c7": 24.531150377387064 }, - "vertexSeeds": { - "c1": 8.170238737025615, - "c2": 8.071832820206986, - "c3": 9.31255168547055, - "c4": 9.068057837380312, - "c5": 8.831305161383517, - "c6": 7.899517770970942, - "c7": 7.829736369083103 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352288, + "c3": 11.69671752196024, + "c4": 9.357374017568189, + "c5": 7.018030513176147, + "c6": 4.678687008784099, + "c7": 2.3393435043920494 }, "rgb": [77, 76, 132] }, @@ -142026,23 +142026,23 @@ "year": 1750, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 35.161010885222694, - "c2": -11.0918180915913, - "c3": 5.36026357695269, - "c4": 30.886017996106446, - "c5": 24.62469427143921, - "c6": 30.174427491524355, - "c7": -35.96654440222616 + "points": { + "c1": -21.960928821164682, + "c2": 21.511103481434567, + "c3": -9.52980914451145, + "c4": 12.105762348417429, + "c5": 36.415618196967756, + "c6": -35.5555671917644, + "c7": 7.640024005543054 }, - "vertexSeeds": { - "c1": 3.1031295089097295, - "c2": 3.081978152283028, - "c3": 3.2901357166482974, - "c4": 3.3139377830401164, - "c5": 3.332979123042264, - "c6": 3.1398461082929336, - "c7": 3.1084476999014576 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.02219140083218, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328672, + "c7": 0.8044382801664377 }, "rgb": [58, 15, 49] }, @@ -142053,23 +142053,23 @@ "year": 1750, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": -39.22799083998509, - "c2": 8.355141009610755, - "c3": 43.99917036933535, - "c4": 23.007377280722643, - "c5": 24.001675827090814, - "c6": -39.7898639552315, - "c7": 28.068558725915587 + "points": { + "c1": -14.923183973429921, + "c2": -26.12708330472563, + "c3": -42.249325464311944, + "c4": 13.926338065785217, + "c5": -4.986477416375507, + "c6": -10.465123814842343, + "c7": -43.425320940822964 }, - "vertexSeeds": { - "c1": 7.319917415311516, - "c2": 7.331441599431169, - "c3": 7.396078977318518, - "c4": 7.398561852692369, - "c5": 7.326296667358474, - "c6": 7.328162386989836, - "c7": 6.848373601550944 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -142080,23 +142080,23 @@ "year": 1750, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -6.270637494878887, - "c2": -11.369309475976344, - "c3": 13.94265912617007, - "c4": 10.982967866708051, - "c5": 25.371650276893618, - "c6": 30.699691741536924, - "c7": -3.5956147610936426 + "points": { + "c1": -18.68398918629569, + "c2": -3.6081453162142765, + "c3": 36.87225054670415, + "c4": 12.398951627308023, + "c5": -36.192958943699985, + "c6": 18.50166601084217, + "c7": -3.954553643194437 }, - "vertexSeeds": { - "c1": 6.567371470568341, - "c2": 5.953223797996293, - "c3": 5.865421296909793, - "c4": 6.064891808816492, - "c5": 5.924062047691161, - "c6": 6.330126082068677, - "c7": 5.867982324004949 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715676, + "c3": 7.88257050392973, + "c4": 6.306056403143787, + "c5": 4.729542302357842, + "c6": 3.1530282015718876, + "c7": 1.5765141007859542 }, "rgb": [58, 15, 49] }, @@ -142107,23 +142107,23 @@ "year": 1750, "resistanceReported": true, "duration": 35424000, - "curveSeeds": { - "c1": 5.343441144749377, - "c2": -46.63363349239904, - "c3": 20.42122371638105, - "c4": -24.54285161246743, - "c5": -43.63780760213131, - "c6": -27.390240747453756, - "c7": 26.45464587225983 + "points": { + "c1": 42.87908149894902, + "c2": 3.641948280269503, + "c3": -19.752425277877226, + "c4": 32.341950459539305, + "c5": -35.54008612424387, + "c6": 9.72067048098829, + "c7": 40.732925113064084 }, - "vertexSeeds": { - "c1": 5.30412831176077, - "c2": 5.055611877553193, - "c3": 5.325434722445085, - "c4": 6.059222601739569, - "c5": 5.360663070070762, - "c6": 5.035924111167344, - "c7": 5.2045460139988675 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876558, + "c3": 7.975034674063803, + "c4": 6.380027739251039, + "c5": 4.7850208044382825, + "c6": 3.1900138696255196, + "c7": 1.5950069348127633 }, "rgb": [238, 201, 159] }, @@ -142134,23 +142134,23 @@ "year": 1751, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": 54.26776331684077, - "c2": 42.90672957786343, - "c3": 45.24423304692873, - "c4": -49.834391407953305, - "c5": 32.324543969736425, - "c6": -36.5156340029328, - "c7": -21.413729811239513 + "points": { + "c1": 55.98388683433892, + "c2": -3.5407010161510044, + "c3": 36.258543332765825, + "c4": -55.96986884390537, + "c5": 0.6922917669670383, + "c6": -20.73047258305744, + "c7": -3.459628271747114 }, - "vertexSeeds": { - "c1": 3.4146661657445376, - "c2": 3.756983107123659, - "c3": 3.4289308159254728, - "c4": 3.937112315501215, - "c5": 3.799719206829136, - "c6": 3.779756986548667, - "c7": 3.841670452350317 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285715, + "c3": 4.761904761904764, + "c4": 3.8095238095238066, + "c5": 2.857142857142855, + "c6": 1.9047619047619033, + "c7": 0.9523809523809517 }, "rgb": [222, 0, 59] }, @@ -142161,23 +142161,23 @@ "year": 1750, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -30.535606920457727, - "c2": 39.016519198199035, - "c3": 9.571016569398694, - "c4": -37.554128285224735, - "c5": -18.502358316679285, - "c6": -12.825854097004083, - "c7": 18.590992209179362 + "points": { + "c1": -14.581235274841497, + "c2": -22.004868300756552, + "c3": 7.813167054787456, + "c4": -26.65163382126964, + "c5": -21.67459001468275, + "c6": 16.0739370995627, + "c7": 7.400774627365038 }, - "vertexSeeds": { - "c1": 10.583208628756008, - "c2": 11.060295341108596, - "c3": 10.754573547683789, - "c4": 11.537094831602486, - "c5": 11.552898371458802, - "c6": 11.19169691300599, - "c7": 10.805561872754508 + "offsets": { + "c1": 19.449838187702266, + "c2": 16.671289875173354, + "c3": 13.89274156264448, + "c4": 11.11419325011557, + "c5": 8.335644937586697, + "c6": 5.557096625057785, + "c7": 2.7785483125288732 }, "rgb": [77, 76, 132] }, @@ -142188,23 +142188,23 @@ "year": 1750, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 13.518936587900875, - "c2": 43.99554464184608, - "c3": 2.2590631209544654, - "c4": -12.354479916097773, - "c5": -32.81655032897239, - "c6": 28.146350430404823, - "c7": -45.37248620256904 + "points": { + "c1": 26.19328859170095, + "c2": -20.234061523274743, + "c3": -39.56491019288641, + "c4": -6.486684959245075, + "c5": -17.593222810305583, + "c6": -9.932528504702631, + "c7": 23.844629155334474 }, - "vertexSeeds": { - "c1": 6.836101029881095, - "c2": 6.307803355081019, - "c3": 7.165939809915926, - "c4": 6.192601298384856, - "c5": 6.807126224498408, - "c6": 6.936165836800473, - "c7": 6.215382225599629 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.31900138696255, + "c3": 8.59916782246879, + "c4": 6.879334257975029, + "c5": 5.159500693481281, + "c6": 3.439667128987521, + "c7": 1.7198335644937606 }, "rgb": [222, 0, 59] }, @@ -142215,23 +142215,23 @@ "year": 1751, "resistanceReported": true, "duration": 37929600, - "curveSeeds": { - "c1": -20.884943213498097, - "c2": -41.82943807859246, - "c3": -17.06102836331835, - "c4": 50.26227169139041, - "c5": 43.34930458412107, - "c6": 37.29156176860674, - "c7": 37.35515769392846 + "points": { + "c1": 47.3955518612171, + "c2": 6.929674518608245, + "c3": -45.35524073085633, + "c4": 41.32987225973221, + "c5": -21.83802628171779, + "c6": 51.4049231252275, + "c7": 0.7032852744298026 }, - "vertexSeeds": { - "c1": 1.1976990022558625, - "c2": 6.539336908243341, - "c3": 5.208542401409251, - "c4": 5.9274809044154155, - "c5": 5.2613723757185005, - "c6": 1.939236826236622, - "c7": 2.8760134821440957 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.43134535367545, + "c3": 7.859454461396209, + "c4": 6.2875635691169665, + "c5": 4.715672676837725, + "c6": 3.1437817845584832, + "c7": 1.5718908922792416 }, "rgb": [77, 76, 132] }, @@ -142242,23 +142242,23 @@ "year": 1751, "resistanceReported": false, "duration": 48556800, - "curveSeeds": { - "c1": -50.44708126658449, - "c2": -49.36292718188694, - "c3": -14.202567597601401, - "c4": 29.390598933228304, - "c5": -0.7956964691545352, - "c6": -50.22519400958225, - "c7": 33.219662474906045 + "points": { + "c1": 33.86789341690066, + "c2": -29.45404485795862, + "c3": -12.872229159521822, + "c4": -63.61901278298922, + "c5": -56.232628490924114, + "c6": 35.01119853085572, + "c7": -34.45581580901193 }, - "vertexSeeds": { - "c1": 2.250077326282111, - "c2": 2.336435887089376, - "c3": 2.497868275693375, - "c4": 2.2331147211628473, - "c5": 2.2682435522252735, - "c6": 2.5084711978511796, - "c7": 2.303785243162104 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495134, + "c3": 3.0744336569579294, + "c4": 2.4595469255663422, + "c5": 1.8446601941747582, + "c6": 1.2297734627831711, + "c7": 0.614886731391584 }, "rgb": [238, 201, 159] }, @@ -142269,23 +142269,23 @@ "year": 1750, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -33.6068655132951, - "c2": -1.257850697532973, - "c3": -27.674602036647684, - "c4": -25.23487688734275, - "c5": -22.104632281700354, - "c6": -14.607730865771398, - "c7": -10.990237033151995 + "points": { + "c1": 2.036316655247539, + "c2": 8.342664979400588, + "c3": -6.534366269355488, + "c4": 18.799012748713267, + "c5": -27.330091475555115, + "c6": -33.38037164089141, + "c7": 26.514909670610514 }, - "vertexSeeds": { - "c1": 1.368321189151504, - "c2": 1.369928682984121, - "c3": 1.3656607485820946, - "c4": 1.3767007612669098, - "c5": 1.377788662012295, - "c6": 1.361351635033285, - "c7": 1.3690974039706767 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959871, + "c3": 1.6643550624133006, + "c4": 1.331484049930647, + "c5": 0.9986130374479936, + "c6": 0.6657420249653401, + "c7": 0.3328710124826535 }, "rgb": [77, 76, 132] }, @@ -142296,23 +142296,23 @@ "year": 1750, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 8.44069191837842, - "c2": 7.427871397721944, - "c3": 15.579482140045215, - "c4": 3.728164845854419, - "c5": 5.5123694425811856, - "c6": 17.30632939256523, - "c7": -12.2149567387187 + "points": { + "c1": -26.545061824759717, + "c2": 21.908778998343685, + "c3": -15.266531706657345, + "c4": 13.649740086419463, + "c5": 23.581243874808003, + "c6": -0.7928174903394805, + "c7": -17.320625150152296 }, - "vertexSeeds": { - "c1": 1.9635006521649274, - "c2": 1.985812498977878, - "c3": 2.056901599043825, - "c4": 1.9327130412153761, - "c5": 2.221805514272841, - "c6": 2.093561445206351, - "c7": 2.175197968360389 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705966, + "c3": 2.704576976421637, + "c4": 2.1636615811373083, + "c5": 1.622746185852983, + "c6": 1.0818307905686573, + "c7": 0.5409153952843286 }, "rgb": [58, 15, 49] }, @@ -142323,23 +142323,23 @@ "year": 1750, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -20.613068668547438, - "c2": 32.21401162490841, - "c3": 1.060204543565824, - "c4": 0.29011904905489416, - "c5": -19.052302913961512, - "c6": -32.48930891330932, - "c7": 27.911015599063333 + "points": { + "c1": 30.031163362458997, + "c2": 27.100425797378932, + "c3": 2.8754991931206746, + "c4": 6.3903882960987275, + "c5": 16.987694415333557, + "c6": -20.716415718218546, + "c7": -31.663298150706655 }, - "vertexSeeds": { - "c1": 5.1517236031625355, - "c2": 5.304241493306989, - "c3": 5.3192745402727715, - "c4": 5.151408836550865, - "c5": 5.166709532878514, - "c6": 5.369034579916281, - "c7": 5.4018785848824615 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262122, + "c3": 6.472491909385119, + "c4": 5.1779935275080815, + "c5": 3.8834951456310782, + "c6": 2.5889967637540408, + "c7": 1.294498381877003 }, "rgb": [238, 201, 159] }, @@ -142350,23 +142350,23 @@ "year": 1750, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 21.27242953409712, - "c2": 1.575708401409507, - "c3": -30.74474265988787, - "c4": -10.704350463104063, - "c5": -18.614563037984652, - "c6": -13.120798895477886, - "c7": 16.764914431202605 + "points": { + "c1": 2.970172210598186, + "c2": 0.5943592495955059, + "c3": 29.404634828134803, + "c4": 19.329254507277334, + "c5": 9.24189963428146, + "c6": 11.251214095412934, + "c7": 31.544949290617495 }, - "vertexSeeds": { - "c1": 2.986201067410128, - "c2": 3.2221074625837347, - "c3": 3.2371362578639054, - "c4": 2.9736301216595145, - "c5": 3.247898702474116, - "c6": 3.05210463846433, - "c7": 3.538788302888282 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521498, + "c3": 4.322699953767915, + "c4": 3.458159963014332, + "c5": 2.593619972260749, + "c6": 1.729079981507166, + "c7": 0.864539990753583 }, "rgb": [86, 146, 138] }, @@ -142377,23 +142377,23 @@ "year": 1750, "resistanceReported": false, "duration": 1468800, - "curveSeeds": { - "c1": -7.256025780895372, - "c2": 8.170752447209413, - "c3": -0.8122782633613017, - "c4": -6.047024569158701, - "c5": -2.2233317646409176, - "c6": -9.207838331961728, - "c7": 6.275547267152156 + "points": { + "c1": 9.155184839658563, + "c2": 6.527544242168979, + "c3": 5.81470158302945, + "c4": 10.534655315862626, + "c5": 3.1707235840318475, + "c6": -7.7211235722269045, + "c7": 9.745285055294218 }, - "vertexSeeds": { - "c1": 4.804020786535561, - "c2": 4.191188095481415, - "c3": 4.652474431465763, - "c4": 5.114693314428682, - "c5": 5.3040114465703105, - "c6": 4.497124389933083, - "c7": 5.250818183319573 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -142404,23 +142404,23 @@ "year": 1750, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -30.96038167457549, - "c2": -9.767271968441836, - "c3": -35.56131170312108, - "c4": -30.714958747383832, - "c5": -35.71490840658034, - "c6": 17.104151107112514, - "c7": -21.877551778231776 + "points": { + "c1": 27.21685282559138, + "c2": -22.392911872520614, + "c3": -8.000786706853262, + "c4": 27.600525869958823, + "c5": -20.766464082496295, + "c6": 15.549330976544312, + "c7": -29.290911033274597 }, - "vertexSeeds": { - "c1": 5.11202091218763, - "c2": 4.233658855601557, - "c3": 5.243380756307373, - "c4": 4.122835667054587, - "c5": 5.1490276978696565, - "c6": 4.681053709304002, - "c7": 5.0444594020419995 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -142431,23 +142431,23 @@ "year": 1751, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": 5.384384487406372, - "c2": -10.753607099962402, - "c3": 34.69745630782138, - "c4": -44.82175900311361, - "c5": 36.17809432393548, - "c6": -30.51338825366953, - "c7": -41.63802559286025 + "points": { + "c1": 32.32017784858044, + "c2": 9.697645193700176, + "c3": -22.896973048238564, + "c4": 27.07248379345218, + "c5": 26.93045014695194, + "c6": 40.52635898905325, + "c7": -8.578596263065023 }, - "vertexSeeds": { - "c1": 5.377977534737214, - "c2": 6.11980190712275, - "c3": 5.837357587560896, - "c4": 6.143678631805772, - "c5": 5.04770469870369, - "c6": 5.576923101610812, - "c7": 5.008257131884326 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991678, + "c3": 7.4664817383264, + "c4": 5.973185390661121, + "c5": 4.479889042995843, + "c6": 2.9865926953305566, + "c7": 1.4932963476652863 }, "rgb": [58, 15, 49] }, @@ -142458,23 +142458,23 @@ "year": 1750, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -12.53553573116373, - "c2": 23.874839783564795, - "c3": -27.308631615052438, - "c4": 7.828068743129933, - "c5": -0.6398560580003902, - "c6": 29.717053825802566, - "c7": 23.68471459577944 + "points": { + "c1": -40.47938838419809, + "c2": -10.147507924179536, + "c3": 40.90463069337639, + "c4": 37.77324663530369, + "c5": 30.8684198445536, + "c6": 7.006404027391433, + "c7": -24.71504762406319 }, - "vertexSeeds": { - "c1": 6.118605260223262, - "c2": 6.148878553010611, - "c3": 6.181678601507274, - "c4": 6.01261213888246, - "c5": 6.013957911909046, - "c6": 6.130326029572892, - "c7": 6.073467421240866 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332870998, + "c3": 7.39713361072587, + "c4": 5.9177068885806845, + "c5": 4.438280166435499, + "c6": 2.9588534442903125, + "c7": 1.4794267221451858 }, "rgb": [58, 15, 49] }, @@ -142485,23 +142485,23 @@ "year": 1750, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 29.934640953629838, - "c2": -21.40295494501666, - "c3": 26.60379778839568, - "c4": 3.926067309809163, - "c5": -34.413358786910656, - "c6": 21.520610842100098, - "c7": 23.09798206206078 + "points": { + "c1": -16.73526224871669, + "c2": -31.492985163830074, + "c3": 31.19939596500778, + "c4": -20.760347900881076, + "c5": 34.415994229401406, + "c6": -14.956630003367525, + "c7": 35.73393061888052 }, - "vertexSeeds": { - "c1": 3.767496543677255, - "c2": 3.7654594136898076, - "c3": 3.7841484861462895, - "c4": 3.3926588511841644, - "c5": 3.6445955091053897, - "c6": 3.484803163780834, - "c7": 3.6444427397873547 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [86, 146, 138] }, @@ -142512,23 +142512,23 @@ "year": 1751, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -30.198051731475257, - "c2": -17.077544262738137, - "c3": -21.013965783107317, - "c4": 34.17831547733536, - "c5": 43.24541401260437, - "c6": 30.397514586531898, - "c7": -27.61057533958318 + "points": { + "c1": -13.550691842808959, + "c2": 30.185830415816426, + "c3": 32.76231600690639, + "c4": -9.666529596861757, + "c5": -4.709503740391909, + "c6": -44.4916762766218, + "c7": 30.326917236297675 }, - "vertexSeeds": { - "c1": 4.267921997104603, - "c2": 4.3474897196848685, - "c3": 3.1980538803068077, - "c4": 3.5307097743791824, - "c5": 3.483249834832269, - "c6": 3.7389785495962795, - "c7": 3.5426761538353144 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331484, + "c3": 5.362921867776237, + "c4": 4.2903374942209895, + "c5": 3.2177531206657415, + "c6": 2.1451687471104948, + "c7": 1.0725843735552485 }, "rgb": [86, 146, 138] }, @@ -142539,23 +142539,23 @@ "year": 1751, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 36.35623214912685, - "c2": 23.8229599787889, - "c3": -23.43278306088716, - "c4": 31.797425913814152, - "c5": 20.758582754270265, - "c6": -15.964230306000978, - "c7": 34.026748352185834 + "points": { + "c1": 12.169474207879432, + "c2": -9.290429609285411, + "c3": 1.591678390259844, + "c4": 39.68407038256892, + "c5": 0.8337232503530458, + "c6": -11.801481618589783, + "c7": -17.725878625728072 }, - "vertexSeeds": { - "c1": 5.174517097809925, - "c2": 5.32977298462713, - "c3": 5.108239944026324, - "c4": 5.188296007650035, - "c5": 5.330633717553917, - "c6": 5.338856897003744, - "c7": 5.095915139726182 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221911, + "c3": 6.449375866851588, + "c4": 5.159500693481265, + "c5": 3.869625520110942, + "c6": 2.579750346740646, + "c7": 1.289875173370323 }, "rgb": [77, 76, 132] }, @@ -142566,23 +142566,23 @@ "year": 1751, "resistanceReported": true, "duration": 43977600, - "curveSeeds": { - "c1": 23.685219122730906, - "c2": -27.924047231597488, - "c3": -7.239977091148383, - "c4": -0.9784079594185613, - "c5": -41.67919756024366, - "c6": 9.016903979438531, - "c7": 15.175635515322178 + "points": { + "c1": -21.288684575441998, + "c2": -3.5112004096791694, + "c3": 30.617857987256237, + "c4": 15.23735338168212, + "c5": 54.61125333004049, + "c6": -12.127003442569986, + "c7": 17.13688539512612 }, - "vertexSeeds": { - "c1": 4.994004034179341, - "c2": 4.005365488290202, - "c3": 3.9047317296312505, - "c4": 4.583398800166151, - "c5": 4.601225480123113, - "c6": 4.201884012195711, - "c7": 3.972696003996828 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457698, + "c3": 6.010171058714747, + "c4": 4.808136846971797, + "c5": 3.6061026352288468, + "c6": 2.4040684234859007, + "c7": 1.2020342117429503 }, "rgb": [222, 0, 59] }, @@ -142593,23 +142593,23 @@ "year": 1751, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": -32.453936911857554, - "c2": 37.587337745956674, - "c3": 23.00246999008715, - "c4": -40.07870607913183, - "c5": -23.895428544999156, - "c6": -24.027129433354574, - "c7": -17.5257545290384 + "points": { + "c1": 27.153345873485762, + "c2": 32.80023931569902, + "c3": -41.50415137538998, + "c4": -29.590422085994636, + "c5": 26.00325506205047, + "c6": 50.47506514551047, + "c7": -52.62900260660158 }, - "vertexSeeds": { - "c1": 1.0181859517904386, - "c2": 1.0406638855961368, - "c3": 1.0434034363523752, - "c4": 1.0319161684600757, - "c5": 0.8753949131400529, - "c6": 0.8880129601836884, - "c7": 1.044644849139156 + "offsets": { + "c1": 1.779935275080906, + "c2": 1.5256588072122046, + "c3": 1.2713823393435046, + "c4": 1.0171058714748031, + "c5": 0.762829403606103, + "c6": 0.5085529357374016, + "c7": 0.25427646786870145 }, "rgb": [86, 146, 138] }, @@ -142620,23 +142620,23 @@ "year": 1751, "resistanceReported": false, "duration": 47952000, - "curveSeeds": { - "c1": 15.349526482702835, - "c2": 31.07151440140148, - "c3": 5.283997816708187, - "c4": 18.725719561899318, - "c5": -22.242168790483014, - "c6": 50.01340355696801, - "c7": 54.10626271822786 + "points": { + "c1": -4.623421336368075, + "c2": -51.88136258206461, + "c3": 31.072524810905705, + "c4": -12.649486119240663, + "c5": -39.743498863323865, + "c6": 61.2057523315911, + "c7": 18.63970973924671 }, - "vertexSeeds": { - "c1": 3.10864787323411, - "c2": 3.038946093994719, - "c3": 3.1328816125836005, - "c4": 2.9877275071581644, - "c5": 3.101162204936012, - "c6": 2.9865541928332417, - "c7": 3.0251777919802456 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596387, + "c3": 3.7910309754969966, + "c4": 3.032824780397592, + "c5": 2.274618585298201, + "c6": 1.516412390198796, + "c7": 0.7582061950994048 }, "rgb": [222, 0, 59] }, @@ -142647,23 +142647,23 @@ "year": 1751, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -16.94137811994003, - "c2": -34.53950531848006, - "c3": 39.868043822611966, - "c4": 11.42957115193093, - "c5": 6.62141033590737, - "c6": 14.862944595630715, - "c7": 1.1612488471747184 + "points": { + "c1": 34.63458342227817, + "c2": -13.957374034749584, + "c3": -34.28988532094571, + "c4": -47.21571738599793, + "c5": 18.172062684123915, + "c6": -22.25169717154799, + "c7": 44.645970431554986 }, - "vertexSeeds": { - "c1": 3.061800058739157, - "c2": 3.286946110900403, - "c3": 3.080364819651208, - "c4": 3.3777968366457354, - "c5": 3.2422519587936103, - "c6": 3.0144499841279107, - "c7": 2.993852525547268 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033284, + "c4": 3.328710124826629, + "c5": 2.496532593619973, + "c6": 1.6643550624133177, + "c7": 0.8321775312066556 }, "rgb": [238, 201, 159] }, @@ -142674,23 +142674,23 @@ "year": 1751, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 41.95121957607304, - "c2": -20.510001051080135, - "c3": 42.41385919912436, - "c4": 4.837341148774428, - "c5": -34.513366903230406, - "c6": -12.630472968901753, - "c7": -7.241522128605162 + "points": { + "c1": 8.177282183937663, + "c2": -33.76058060498244, + "c3": -8.841907125040436, + "c4": -21.91042673755739, + "c5": 5.996578437811465, + "c6": 12.372433894395414, + "c7": 34.73159140188656 }, - "vertexSeeds": { - "c1": 5.3268448340248336, - "c2": 4.1223889954870145, - "c3": 5.273082221477303, - "c4": 4.164587834132865, - "c5": 4.20618028830543, - "c6": 4.397329965762248, - "c7": 4.468781387511411 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -142701,23 +142701,23 @@ "year": 1750, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -31.98369948901337, - "c2": -23.88627533150317, - "c3": 0.1719619294003607, - "c4": -31.191002124151368, - "c5": 5.299673603302274, - "c6": 20.367782856322194, - "c7": -27.803741611620122 + "points": { + "c1": -2.7051237537638, + "c2": -26.97714626643646, + "c3": 25.573927302237962, + "c4": 33.60466422720242, + "c5": 0.3527340963597396, + "c6": 16.420125341697265, + "c7": -18.1965204771363 }, - "vertexSeeds": { - "c1": 7.8997449704087215, - "c2": 8.231926492503206, - "c3": 7.886970668000602, - "c4": 7.843855686337932, - "c5": 7.875746688857405, - "c6": 7.741690737902921, - "c7": 7.877064011775296 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214985, + "c3": 9.893666204345807, + "c4": 7.914932963476649, + "c5": 5.936199722607492, + "c6": 3.957466481738335, + "c7": 1.9787332408691574 }, "rgb": [58, 15, 49] }, @@ -142728,23 +142728,23 @@ "year": 1751, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 28.381534871205517, - "c2": -32.86594510003131, - "c3": -30.20684274988896, - "c4": -34.58604970177882, - "c5": -40.26212182815003, - "c6": 26.1158045906611, - "c7": 0.9956490288589634 + "points": { + "c1": 2.117832102772411, + "c2": 19.344800258028414, + "c3": -39.07420119127561, + "c4": -38.21832824672867, + "c5": 11.528196083971494, + "c6": -22.146218175044172, + "c7": 44.015761174721206 }, - "vertexSeeds": { - "c1": 3.073395280664275, - "c2": 2.9430865149835856, - "c3": 3.3973731096156627, - "c4": 2.94949450448899, - "c5": 3.2044849893584098, - "c6": 3.2151488484561868, - "c7": 3.3411054668199482 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.07628294036061, + "c3": 4.230235783633841, + "c4": 3.3841886269070716, + "c5": 2.5381414701803022, + "c6": 1.6920943134535382, + "c7": 0.8460471567267641 }, "rgb": [238, 201, 159] }, @@ -142755,23 +142755,23 @@ "year": 1751, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": -4.802967365120217, - "c2": 30.436491344871044, - "c3": 26.790433443012233, - "c4": 9.42229430554545, - "c5": -41.104878751737544, - "c6": 53.41664554639986, - "c7": 16.880092439890916 + "points": { + "c1": 4.863292531154023, + "c2": -40.19060783245841, + "c3": -36.41999610280755, + "c4": 29.197609461030368, + "c5": -14.47569132230312, + "c6": 53.949328305411655, + "c7": -7.584365148398533 }, - "vertexSeeds": { - "c1": 0.1820672315299768, - "c2": 0.17526237918742882, - "c3": 0.1872522217283947, - "c4": 0.1760467462170596, - "c5": 0.17642492623991268, - "c6": 0.1878122584502034, - "c7": 0.1899815211242409 + "offsets": { + "c1": 0.3559870550161813, + "c2": 0.30513176144244125, + "c3": 0.2542764678687006, + "c4": 0.20342117429496065, + "c5": 0.15256588072122063, + "c6": 0.10171058714748063, + "c7": 0.05085529357374 }, "rgb": [77, 76, 132] }, @@ -142782,23 +142782,23 @@ "year": 1750, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -11.427598402638598, - "c2": 34.77220051234643, - "c3": -0.38399761836769386, - "c4": -22.487304203059065, - "c5": -31.35996928084156, - "c6": 22.517627272894877, - "c7": 21.799836027843426 + "points": { + "c1": 23.725094269250604, + "c2": 17.07740827083746, + "c3": -12.403313570029049, + "c4": -1.2119176469246895, + "c5": 27.852420267183803, + "c6": 32.38978877231706, + "c7": -35.66746696274438 }, - "vertexSeeds": { - "c1": 6.651337433201963, - "c2": 7.069078914977576, - "c3": 6.834921104343754, - "c4": 7.0967418036232015, - "c5": 6.550052826499482, - "c6": 6.902522743681708, - "c7": 7.13661434878394 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882107, + "c3": 8.552935737401757, + "c4": 6.8423485899214045, + "c5": 5.131761442441054, + "c6": 3.4211742949607022, + "c7": 1.7105871474803511 }, "rgb": [86, 146, 138] }, @@ -142809,23 +142809,23 @@ "year": 1750, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 17.659402224284158, - "c2": -25.207816275295237, - "c3": 9.730308643663712, - "c4": 0.29226273372185574, - "c5": 25.899899612037167, - "c6": -7.7097845397411895, - "c7": 7.414413246808721 + "points": { + "c1": 28.53183034894026, + "c2": 24.39449841251021, + "c3": -25.4333132337973, + "c4": -14.741695746990835, + "c5": 4.878693621577703, + "c6": 26.916172621755003, + "c7": -27.895574409467102 }, - "vertexSeeds": { - "c1": 3.4006573400127813, - "c2": 2.951980302038642, - "c3": 2.902040110322145, - "c4": 3.2249688271863914, - "c5": 4.008817241826988, - "c6": 3.4973691728288454, - "c7": 3.2951770430855722 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374018, + "c4": 4.068423485899213, + "c5": 3.05131761442441, + "c6": 2.0342117429496067, + "c7": 1.0171058714748034 }, "rgb": [222, 0, 59] }, @@ -142836,23 +142836,23 @@ "year": 1750, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -16.78875510719803, - "c2": 28.75444646589112, - "c3": -36.43002746901137, - "c4": 2.5723380303838894, - "c5": -40.611199591439906, - "c6": 10.541134460468768, - "c7": 31.55470229293512 + "points": { + "c1": -3.5973314948301365, + "c2": -24.62642684726819, + "c3": 22.847045774020373, + "c4": 33.41000019365157, + "c5": 2.0138788090757345, + "c6": 21.985847696466976, + "c7": -7.207551582989517 }, - "vertexSeeds": { - "c1": 10.159566298925473, - "c2": 10.88569327809469, - "c3": 10.677878821819023, - "c4": 9.86867965453689, - "c5": 10.468634378957368, - "c6": 10.436379507854083, - "c7": 11.105675933898551 + "offsets": { + "c1": 18.83495145631068, + "c2": 16.144244105409157, + "c3": 13.453536754507637, + "c4": 10.762829403606116, + "c5": 8.072122052704565, + "c6": 5.381414701803044, + "c7": 2.690707350901522 }, "rgb": [222, 0, 59] }, @@ -142863,23 +142863,23 @@ "year": 1751, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": 50.78023465299624, - "c2": -11.884769502278296, - "c3": -16.587618647851983, - "c4": -8.614835145889714, - "c5": 21.79959304621903, - "c6": 40.59081016572178, - "c7": -32.389017074386174 + "points": { + "c1": 2.1920536265654817, + "c2": -45.70670132340442, + "c3": -28.637140629933537, + "c4": 16.031053491191102, + "c5": 40.193063894619215, + "c6": -36.27656532669529, + "c7": 17.9148667589113 }, - "vertexSeeds": { - "c1": 9.727058890344253, - "c2": 9.682246090611311, - "c3": 10.077293932003284, - "c4": 9.634109373908238, - "c5": 10.38093344945067, - "c6": 9.86544221332744, - "c7": 9.935505187990355 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.92371705963941, + "c3": 12.436430883032827, + "c4": 9.94914470642628, + "c5": 7.461858529819695, + "c6": 4.97457235321313, + "c7": 2.487286176606565 }, "rgb": [58, 15, 49] }, @@ -142890,23 +142890,23 @@ "year": 1750, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 19.05409984195707, - "c2": 1.1550510921790575, - "c3": 2.2282570991855764, - "c4": 1.423548085671385, - "c5": -28.762522551147416, - "c6": -3.8608303398229005, - "c7": -13.60944596912055 + "points": { + "c1": -18.41623232426005, + "c2": -26.163392484430197, + "c3": 14.418321490956167, + "c4": 4.117607352152454, + "c5": 5.144005065792605, + "c6": -8.18993691585252, + "c7": 34.790586941239624 }, - "vertexSeeds": { - "c1": 2.3876126636713804, - "c2": 2.303055707772156, - "c3": 2.3414837514729507, - "c4": 2.3391969376078445, - "c5": 2.368995923992834, - "c6": 2.287978256090754, - "c7": 2.1946723290012518 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288494, + "c3": 3.005085529357375, + "c4": 2.404068423485897, + "c5": 1.8030513176144232, + "c6": 1.2020342117429486, + "c7": 0.6010171058714743 }, "rgb": [58, 15, 49] }, @@ -142917,23 +142917,23 @@ "year": 1751, "resistanceReported": false, "duration": 50976000, - "curveSeeds": { - "c1": -10.992627220397381, - "c2": 4.373999524574373, - "c3": 25.533958818797032, - "c4": 22.956648120063136, - "c5": -65.173594309556, - "c6": 29.996427384640015, - "c7": -59.875631129263596 + "points": { + "c1": -56.041757429603216, + "c2": 46.36183558763699, + "c3": -59.287433938585814, + "c4": 33.654940745497, + "c5": -28.923908479560566, + "c6": 27.05275176473434, + "c7": 45.55151048730812 }, - "vertexSeeds": { - "c1": 3.2865236919023064, - "c2": 3.091107327423338, - "c3": 3.1313271706229604, - "c4": 3.156805126339305, - "c5": 3.217366340925706, - "c6": 3.2857678868839404, - "c7": 3.1322375902491575 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079062, + "c3": 4.068423485899213, + "c4": 3.254738788719375, + "c5": 2.441054091539526, + "c6": 1.6273693943596874, + "c7": 0.8136846971798387 }, "rgb": [238, 201, 159] }, @@ -142944,23 +142944,23 @@ "year": 1751, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": 54.60695329679585, - "c2": -11.455637689086053, - "c3": -19.96122576809666, - "c4": -13.098973871948758, - "c5": 54.79253045127243, - "c6": 14.170153902056157, - "c7": -51.16998261734532 + "points": { + "c1": 25.236451647562745, + "c2": -14.297735127437932, + "c3": -19.24081784909152, + "c4": 25.438483849415903, + "c5": -4.914902883828553, + "c6": -2.8277475887331533, + "c7": 45.773714506573015 }, - "vertexSeeds": { - "c1": 3.9966405105183624, - "c2": 4.126698261181056, - "c3": 4.088173730508826, - "c4": 4.108353713469706, - "c5": 4.0166571427965465, - "c6": 4.254696800006606, - "c7": 4.136566169333845 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [77, 76, 132] }, @@ -142971,23 +142971,23 @@ "year": 1751, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": 11.846184534888877, - "c2": 20.06377494351522, - "c3": -14.609730774020626, - "c4": 8.585304273969669, - "c5": -31.720452010352524, - "c6": -21.413076033972533, - "c7": 28.8220695357004 + "points": { + "c1": -4.744644984488154, + "c2": -8.51662589015497, + "c3": -36.83812028049534, + "c4": -3.7578805726952, + "c5": -42.56856410605902, + "c6": 5.057215305538946, + "c7": 35.38300263064162 }, - "vertexSeeds": { - "c1": 4.024668382657129, - "c2": 4.800751916205139, - "c3": 3.5881096886026733, - "c4": 4.396254192629633, - "c5": 3.133652175399045, - "c6": 4.379673758758095, - "c7": 4.437547938512539 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -142998,23 +142998,23 @@ "year": 1751, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": -4.170351387063548, - "c2": -13.415987122021548, - "c3": 14.13700688431868, - "c4": -10.405233707101686, - "c5": 2.2621105228180625, - "c6": -46.04727114550511, - "c7": -48.19516190995191 + "points": { + "c1": -43.29274250409936, + "c2": 3.8671565265178174, + "c3": -50.49036880332623, + "c4": 5.365711012486258, + "c5": -51.53704379678519, + "c6": 57.517257342983356, + "c7": -36.86124490441633 }, - "vertexSeeds": { - "c1": 3.879843206879656, - "c2": 3.8556899803277016, - "c3": 3.8418783399518137, - "c4": 3.9805474635587927, - "c5": 3.6397022876346528, - "c6": 3.659392554694289, - "c7": 3.9478051813014496 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325934, + "c3": 4.7850208044382745, + "c4": 3.828016643550625, + "c5": 2.871012482662967, + "c6": 1.9140083217753079, + "c7": 0.9570041608876589 }, "rgb": [77, 76, 132] }, @@ -143025,23 +143025,23 @@ "year": 1751, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -3.462507518490412, - "c2": 43.438528588911794, - "c3": -17.837059560816503, - "c4": 22.287622486757158, - "c5": -38.88970410695764, - "c6": 43.11618160395912, - "c7": -8.833432373674235 + "points": { + "c1": -18.33836158490634, + "c2": -28.109897946987285, + "c3": 37.861683468888074, + "c4": 27.75304864766676, + "c5": 47.20073419503757, + "c6": 13.818978346777364, + "c7": 1.3086072713283627 }, - "vertexSeeds": { - "c1": 2.113202748862635, - "c2": 2.100486882639102, - "c3": 2.131867591060893, - "c4": 2.124565057735565, - "c5": 1.9962350097313748, - "c6": 2.029151554621364, - "c7": 1.9700034280000067 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.1900138696255214, + "c3": 2.6583448913546026, + "c4": 2.12667591308368, + "c5": 1.5950069348127607, + "c6": 1.063337956541842, + "c7": 0.531668978270923 }, "rgb": [86, 146, 138] }, @@ -143052,23 +143052,23 @@ "year": 1751, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 17.68370843859688, - "c2": -27.71160665684488, - "c3": 45.8473730586216, - "c4": 16.365626810039828, - "c5": -1.9396256241257106, - "c6": -5.400570657243996, - "c7": 29.982075189612544 + "points": { + "c1": -10.900911474887437, + "c2": -54.546250376601186, + "c3": 3.527995567457019, + "c4": 2.7743868246333463, + "c5": 21.783834580102123, + "c6": -1.3885788604179794, + "c7": 50.57072073500338 }, - "vertexSeeds": { - "c1": 5.161234072238729, - "c2": 5.311173625438886, - "c3": 4.905565625988079, - "c4": 4.705306083536641, - "c5": 4.12486884749158, - "c6": 5.248196308951497, - "c7": 5.2697781152441925 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -143079,23 +143079,23 @@ "year": 1750, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -3.266560829289965, - "c2": 13.459291602141327, - "c3": -3.8927282248967536, - "c4": 2.2788519480465936, - "c5": 2.2776244406550106, - "c6": -18.339866243275274, - "c7": 19.479862319456252 + "points": { + "c1": 19.168990196628087, + "c2": 29.513874802179885, + "c3": 18.27413115065368, + "c4": 17.554296498741877, + "c5": 5.928934758783747, + "c6": 10.909297133004067, + "c7": -25.918360228321305 }, - "vertexSeeds": { - "c1": 4.695175436067687, - "c2": 4.828355359842733, - "c3": 4.606869240623368, - "c4": 4.848199615958238, - "c5": 4.274893640865159, - "c6": 4.29677233699252, - "c7": 4.517973908232747 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [222, 0, 59] }, @@ -143106,23 +143106,23 @@ "year": 1751, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 22.571792673328304, - "c2": -20.52477944557938, - "c3": 16.413420435197636, - "c4": -8.190705068609613, - "c5": -20.289469932952283, - "c6": -28.398152066432623, - "c7": -3.6059431947253415 + "points": { + "c1": 7.600742956915816, + "c2": 2.856274344710883, + "c3": 38.43039551345283, + "c4": 5.005240263430721, + "c5": 18.753837231781432, + "c6": -10.13463401055797, + "c7": -17.892938614550538 }, - "vertexSeeds": { - "c1": 4.981966607936135, - "c2": 4.767384456179251, - "c3": 4.752209378995626, - "c4": 4.934024516267783, - "c5": 4.8737899387344825, - "c6": 5.160677613316166, - "c7": 5.055901038410377 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -143133,23 +143133,23 @@ "year": 1751, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": -29.64616089202494, - "c2": 15.125552352528238, - "c3": 24.10183597743997, - "c4": -21.003676741064346, - "c5": -3.1746665812347103, - "c6": -32.19485221747323, - "c7": 37.02436808126598 + "points": { + "c1": 23.26479877442987, + "c2": 15.20882601204179, + "c3": 50.42531906539481, + "c4": -26.044000543956525, + "c5": 25.69539475834096, + "c6": -7.57696307053817, + "c7": -12.592494350839381 }, - "vertexSeeds": { - "c1": 9.229219846616225, - "c2": 9.750618952611742, - "c3": 10.159352460361253, - "c4": 10.119223424241808, - "c5": 10.135874141534359, - "c6": 9.995972161402015, - "c7": 9.344554078832193 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156726, + "c3": 12.159038372630604, + "c4": 9.727230698104483, + "c5": 7.295423023578363, + "c6": 4.863615349052242, + "c7": 2.431807674526121 }, "rgb": [58, 15, 49] }, @@ -143160,23 +143160,23 @@ "year": 1750, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 28.242653430213476, - "c2": -13.625367864156289, - "c3": -1.263425872650135, - "c4": -0.5904363984493841, - "c5": 23.8906239450592, - "c6": -7.711907666975744, - "c7": 17.723082222221738 + "points": { + "c1": -1.2818646728158498, + "c2": -25.386361064280912, + "c3": -20.882244122519484, + "c4": 30.890961155229093, + "c5": 19.35133550487852, + "c6": 17.58525150802035, + "c7": 28.769217865725402 }, - "vertexSeeds": { - "c1": 4.923841475382654, - "c2": 4.111313336790372, - "c3": 5.136618118323184, - "c4": 4.666190231406346, - "c5": 4.914333836412211, - "c6": 4.722890235207398, - "c7": 4.452317200698468 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -143187,23 +143187,23 @@ "year": 1750, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -7.285379470402983, - "c2": -11.687326079937716, - "c3": -13.483726979037755, - "c4": 8.761195821866629, - "c5": 4.889751673986993, - "c6": -8.584261675949165, - "c7": -14.708753469550054 + "points": { + "c1": -16.096382227273313, + "c2": 21.13684178389667, + "c3": 17.310490574867053, + "c4": 2.968891725863962, + "c5": -24.84556585258421, + "c6": 7.127275610671504, + "c7": 23.07869598052534 }, - "vertexSeeds": { - "c1": 4.286795835970395, - "c2": 5.084027809440581, - "c3": 4.802842771025848, - "c4": 5.113237621974041, - "c5": 4.923118561200341, - "c6": 5.1116319104722665, - "c7": 4.125023446811399 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -143214,23 +143214,23 @@ "year": 1751, "resistanceReported": true, "duration": 33350400, - "curveSeeds": { - "c1": 38.252502611764854, - "c2": 19.283886096290274, - "c3": 35.688853556921345, - "c4": -11.485092810435908, - "c5": -0.7859674896142792, - "c6": 45.52558117560241, - "c7": -40.94045922346372 + "points": { + "c1": -47.49160398292433, + "c2": -0.5753993328966018, + "c3": 8.043638419845287, + "c4": 24.447199627991722, + "c5": -35.7970003563305, + "c6": 32.057177070615225, + "c7": -39.980945421998854 }, - "vertexSeeds": { - "c1": 7.5072693134389175, - "c2": 7.542458233261631, - "c3": 7.582191207419685, - "c4": 7.601229295111346, - "c5": 7.609528833471753, - "c6": 7.56243983374418, - "c7": 7.702871418866951 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565872, + "c3": 8.945908460471552, + "c4": 7.156726768377228, + "c5": 5.367545076282966, + "c6": 3.5783633841886444, + "c7": 1.7891816920943222 }, "rgb": [222, 0, 59] }, @@ -143241,23 +143241,23 @@ "year": 1751, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 39.88691736953432, - "c2": 2.5937425308278463, - "c3": -33.10903164848861, - "c4": -25.146669569731596, - "c5": -17.943740591327643, - "c6": -33.82653859977643, - "c7": -5.632950615647644 + "points": { + "c1": 11.605624011349178, + "c2": 23.35796799142495, + "c3": -27.102879496709186, + "c4": -27.997872660107213, + "c5": 22.569652071134477, + "c6": -22.229210609272936, + "c7": -12.743559766563639 }, - "vertexSeeds": { - "c1": 6.518978504378622, - "c2": 6.404089479725556, - "c3": 6.5046970155090005, - "c4": 6.330616898552867, - "c5": 6.4492355616605614, - "c6": 6.3109743294802865, - "c7": 6.316972812706481 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [86, 146, 138] }, @@ -143268,23 +143268,23 @@ "year": 1751, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -9.489681752497475, - "c2": 42.078065683109266, - "c3": -34.20409787312394, - "c4": 11.61795444278632, - "c5": -17.554069654141305, - "c6": 26.69640147892273, - "c7": -35.59175879305403 + "points": { + "c1": -19.339544792981837, + "c2": 19.837055548535098, + "c3": 10.81423768618155, + "c4": -43.83310412541724, + "c5": 27.27989665846801, + "c6": 0.8560959388771465, + "c7": -6.201167009037071 }, - "vertexSeeds": { - "c1": 9.13004678314566, - "c2": 8.72649607071732, - "c3": 8.457843714949323, - "c4": 9.149621469184378, - "c5": 8.90263577480574, - "c6": 8.457145789361414, - "c7": 8.472624196374218 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984743, + "c3": 10.910772075820619, + "c4": 8.728617660656495, + "c5": 6.5464632454923715, + "c6": 4.364308830328247, + "c7": 2.1821544151641237 }, "rgb": [222, 0, 59] }, @@ -143295,23 +143295,23 @@ "year": 1751, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": -3.118983259974172, - "c2": 40.71588882518506, - "c3": 33.06086916801466, - "c4": -41.276818809212294, - "c5": 13.14378036567993, - "c6": 9.327541164808906, - "c7": 36.427530797890185 + "points": { + "c1": -8.827683020474694, + "c2": -29.13392065793533, + "c3": -54.470593885357715, + "c4": 54.787586538659326, + "c5": 34.483928313187434, + "c6": 32.10090443118831, + "c7": 24.759367471786376 }, - "vertexSeeds": { - "c1": 2.9781462382323642, - "c2": 2.950913548155681, - "c3": 2.896438251880956, - "c4": 3.191620718729456, - "c5": 2.975817060853106, - "c6": 3.1671611885931124, - "c7": 3.1518823647686047 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -143322,23 +143322,23 @@ "year": 1750, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 15.284134471060483, - "c2": 4.144139485738357, - "c3": 11.318058768463274, - "c4": 15.115296064435938, - "c5": -12.552082582437961, - "c6": 22.38054781052955, - "c7": 10.614375042018914 + "points": { + "c1": 28.969981589398955, + "c2": -18.193619750653742, + "c3": -29.02562967080953, + "c4": -0.20798382230918833, + "c5": 3.4733484364264484, + "c6": 23.98489971877433, + "c7": 3.9945391826852585 }, - "vertexSeeds": { - "c1": 5.416784401324027, - "c2": 4.782954084319072, - "c3": 5.069629049577058, - "c4": 5.54826176924379, - "c5": 5.239181281228763, - "c6": 5.600967229681438, - "c7": 4.78224791229964 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704582, + "c3": 6.726768377253812, + "c4": 5.381414701803054, + "c5": 4.036061026352286, + "c6": 2.690707350901527, + "c7": 1.3453536754507636 }, "rgb": [58, 15, 49] }, @@ -143349,23 +143349,23 @@ "year": 1751, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 22.38478571965799, - "c2": -9.325355203431613, - "c3": 19.78277716817928, - "c4": -11.023759136522688, - "c5": -22.89793915212538, - "c6": 19.30074638724109, - "c7": 15.091754537414985 + "points": { + "c1": 34.7876435566928, + "c2": 35.4052175164436, + "c3": -29.72684064340035, + "c4": 14.903939710132605, + "c5": 34.35759696619061, + "c6": 0.6323459872475894, + "c7": 7.046635826180633 }, - "vertexSeeds": { - "c1": 6.923333768458613, - "c2": 7.166190536602716, - "c3": 7.208836924504205, - "c4": 7.084317959486157, - "c5": 8.170114519008463, - "c6": 7.5435554623781815, - "c7": 6.925459143547866 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295423, + "c3": 9.939898289412852, + "c4": 7.9519186315302814, + "c5": 5.9639389736477115, + "c6": 3.9759593157651407, + "c7": 1.9879796578825704 }, "rgb": [222, 0, 59] }, @@ -143376,23 +143376,23 @@ "year": 1750, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -3.3521107737013445, - "c2": 25.117705787081242, - "c3": 18.502814272231177, - "c4": -7.700031808456931, - "c5": -14.254905785437959, - "c6": -1.6464789282650365, - "c7": 23.42952460879078 + "points": { + "c1": -14.755584663530515, + "c2": 15.354657575460934, + "c3": -14.640786909940283, + "c4": 2.948430181657333, + "c5": 2.547487150267216, + "c6": -22.67520447225536, + "c7": -4.479025431810147 }, - "vertexSeeds": { - "c1": 2.499012173000049, - "c2": 2.7221688820024177, - "c3": 2.363388245372628, - "c4": 2.4136726782329063, - "c5": 2.748088611952384, - "c6": 2.3386191826830784, - "c7": 2.672588776182779 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791955, + "c3": 3.3287101248266295, + "c4": 2.6629680998613035, + "c5": 1.9972260748959776, + "c6": 1.3314840499306517, + "c7": 0.6657420249653259 }, "rgb": [77, 76, 132] }, @@ -143403,23 +143403,23 @@ "year": 1751, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -12.655215524789046, - "c2": 20.36469855795744, - "c3": 11.65739603189678, - "c4": 13.573328600065409, - "c5": 19.216501259204414, - "c6": -27.376579971255474, - "c7": 15.480446086248953 + "points": { + "c1": 8.262323041192204, + "c2": 3.672574239282028, + "c3": 23.664133639565463, + "c4": 3.574151893517943, + "c5": -27.48409130413406, + "c6": 2.050132489821266, + "c7": 15.98025850965832 }, - "vertexSeeds": { - "c1": 4.425238605619009, - "c2": 4.142091538120994, - "c3": 4.273054471865392, - "c4": 4.095683836983491, - "c5": 4.107494914630011, - "c6": 4.060647487275834, - "c7": 4.328709827843788 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -143430,23 +143430,23 @@ "year": 1751, "resistanceReported": false, "duration": 44496000, - "curveSeeds": { - "c1": 18.11142608499165, - "c2": 51.024355336012604, - "c3": 50.20179377636731, - "c4": 10.712833931332568, - "c5": -36.98852595405269, - "c6": 14.279735712467144, - "c7": -12.479130009083278 + "points": { + "c1": -32.694938649627886, + "c2": -43.833158469114714, + "c3": -23.383016245706152, + "c4": -16.207612472639383, + "c5": 22.73628277337575, + "c6": -56.48457174357704, + "c7": 1.1626787298931873 }, - "vertexSeeds": { - "c1": 2.1640210253016217, - "c2": 1.9545246011228152, - "c3": 2.335302361499161, - "c4": 2.296058592798109, - "c5": 2.034559393574365, - "c6": 2.12231936375876, - "c7": 1.9433375167927633 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779472952, + "c3": 2.8432732316227454, + "c4": 2.274618585298196, + "c5": 1.7059639389736465, + "c6": 1.137309292649099, + "c7": 0.5686546463245473 }, "rgb": [222, 0, 59] }, @@ -143457,23 +143457,23 @@ "year": 1751, "resistanceReported": false, "duration": 51148800, - "curveSeeds": { - "c1": 50.049035269932176, - "c2": 14.568459570037348, - "c3": -59.226333830648585, - "c4": -31.997344649368138, - "c5": 16.993579029117626, - "c6": 41.82292221793642, - "c7": 10.292237912421427 + "points": { + "c1": 52.69261081530169, + "c2": -31.626668194430387, + "c3": -2.7378971962398566, + "c4": -49.61838005952066, + "c5": -38.86836340645172, + "c6": 55.89270617212037, + "c7": 7.84475632920585 }, - "vertexSeeds": { - "c1": 2.744713267946742, - "c2": 2.9889854720382676, - "c3": 2.9581906212585483, - "c4": 2.682339703995095, - "c5": 3.050579592405656, - "c6": 2.9057663838673093, - "c7": 2.869524381095265 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435508, + "c3": 3.698566805362924, + "c4": 2.9588534442903405, + "c5": 2.2191400832177504, + "c6": 1.4794267221451671, + "c7": 0.7397133610725836 }, "rgb": [222, 0, 59] }, @@ -143484,23 +143484,23 @@ "year": 1751, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -18.194890213797656, - "c2": 5.616795857081975, - "c3": -22.34284723067836, - "c4": -30.542628473482797, - "c5": -22.256528831439393, - "c6": -45.151950501230864, - "c7": 12.872202028669783 + "points": { + "c1": -27.006544045688216, + "c2": 36.587790738843744, + "c3": -32.594774801040444, + "c4": 39.04485682718991, + "c5": 11.759846178105697, + "c6": 8.879509231354724, + "c7": -13.364959289834907 }, - "vertexSeeds": { - "c1": 4.711158774318131, - "c2": 4.1325091064732655, - "c3": 4.4057962996506435, - "c4": 4.3886830635068526, - "c5": 4.09143878008948, - "c6": 4.456140237008053, - "c7": 4.717306932658785 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -143511,23 +143511,23 @@ "year": 1751, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -31.1510919748353, - "c2": -35.98845081466748, - "c3": 30.597274663511186, - "c4": 0.06108558366744887, - "c5": -5.902585828808142, - "c6": 29.788164568895937, - "c7": -4.703871615429513 + "points": { + "c1": -4.882825381492893, + "c2": 27.973035871427044, + "c3": -34.53290822704868, + "c4": -38.7803399938461, + "c5": 5.016285008841791, + "c6": 6.256773068142117, + "c7": -23.193078715303336 }, - "vertexSeeds": { - "c1": 6.6748615423122555, - "c2": 6.561061408379062, - "c3": 6.5259503944614865, - "c4": 6.557732375723203, - "c5": 6.719843956550328, - "c6": 6.7612654747086545, - "c7": 6.7302461240850295 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.68099861303746, + "c3": 8.067498844197859, + "c4": 6.453999075358293, + "c5": 4.84049930651873, + "c6": 3.2269995376791294, + "c7": 1.6134997688395647 }, "rgb": [86, 146, 138] }, @@ -143538,23 +143538,23 @@ "year": 1751, "resistanceReported": true, "duration": 26438400, - "curveSeeds": { - "c1": -4.925167204400154, - "c2": -25.66805688059702, - "c3": 30.93435684937193, - "c4": -38.194833041197136, - "c5": 31.581919839355017, - "c6": -20.875864432367912, - "c7": 36.60517402551286 + "points": { + "c1": 12.371135886249505, + "c2": -11.777675426346995, + "c3": 7.5468417160315795, + "c4": 12.855523795879286, + "c5": -39.88023519845942, + "c6": 27.081026380494585, + "c7": -7.398459222090963 }, - "vertexSeeds": { - "c1": 1.662997592565902, - "c2": 1.530473923787358, - "c3": 1.6829192719793977, - "c4": 1.8343799370293403, - "c5": 1.833941060781385, - "c6": 1.7662876895762332, - "c7": 1.823236314696801 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.0790568654646324, + "c3": 2.5658807212205264, + "c4": 2.052704576976421, + "c5": 1.5395284327323155, + "c6": 1.0263522884882106, + "c7": 0.5131761442441055 }, "rgb": [86, 146, 138] }, @@ -143565,23 +143565,23 @@ "year": 1750, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 25.837872459648025, - "c2": -4.1296572472802815, - "c3": -26.448684941230415, - "c4": -31.878733700331097, - "c5": 20.583228494213508, - "c6": -20.708584547909958, - "c7": -20.314286941096597 + "points": { + "c1": -32.238756534686395, + "c2": -29.771624247934042, + "c3": 22.1839555614537, + "c4": -23.02376066102458, + "c5": 21.594941119322932, + "c6": 21.70657424154095, + "c7": 15.984198276686016 }, - "vertexSeeds": { - "c1": 6.889587755540018, - "c2": 6.740418613064737, - "c3": 6.468644814350153, - "c4": 6.310416493732904, - "c5": 6.130161339920807, - "c6": 6.533328139571683, - "c7": 6.297972629153628 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.54091539528433, + "c3": 8.784096162736942, + "c4": 7.027276930189546, + "c5": 5.2704576976421595, + "c6": 3.513638465094773, + "c7": 1.7568192325473866 }, "rgb": [58, 15, 49] }, @@ -143592,23 +143592,23 @@ "year": 1751, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -7.834554828907276, - "c2": -32.810336409424096, - "c3": -22.647452908245086, - "c4": -14.56108862920808, - "c5": -18.87675959929578, - "c6": -16.449334146962723, - "c7": 21.189959734009648 + "points": { + "c1": -14.218031181544756, + "c2": 34.734732245923084, + "c3": 12.094309287908892, + "c4": 24.20345630716715, + "c5": 9.385275347583367, + "c6": -29.813707759312614, + "c7": 32.96297705963879 }, - "vertexSeeds": { - "c1": 4.556427673610378, - "c2": 4.855886367797459, - "c3": 4.358943433881024, - "c4": 4.4535076532178826, - "c5": 4.615145310042309, - "c6": 4.605104961991321, - "c7": 4.607973986676044 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296812, + "c3": 5.917706888580674, + "c4": 4.734165510864541, + "c5": 3.550624133148403, + "c6": 2.3670827554322704, + "c7": 1.1835413777161385 }, "rgb": [58, 15, 49] }, @@ -143619,23 +143619,23 @@ "year": 1750, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -1.3348428256513003, - "c2": -6.462488220881475, - "c3": -8.229072776657251, - "c4": -6.6870569719732345, - "c5": -8.713546260599713, - "c6": -3.9593695429524516, - "c7": -4.868105639928007 + "points": { + "c1": -28.42779211265063, + "c2": 8.44638757240267, + "c3": -22.23863844954769, + "c4": -18.01145943800146, + "c5": 17.337748375836163, + "c6": 16.888194433076826, + "c7": 21.54170075166737 }, - "vertexSeeds": { - "c1": 4.71925801726465, - "c2": 4.322583055576163, - "c3": 4.506336471267956, - "c4": 4.679566129840413, - "c5": 5.17749128893792, - "c6": 4.316618564425925, - "c7": 4.2998360174399 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900136, + "c3": 6.264447526583448, + "c4": 5.011558021266761, + "c5": 3.758668515950068, + "c6": 2.5057790106333804, + "c7": 1.2528895053166924 }, "rgb": [238, 201, 159] }, @@ -143646,23 +143646,23 @@ "year": 1751, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -33.878646863233065, - "c2": 19.79440151906156, - "c3": -38.27692753882668, - "c4": -0.2755051942973026, - "c5": -5.308274476051231, - "c6": 1.5490555826008077, - "c7": 24.27831208690192 + "points": { + "c1": -37.9245773245149, + "c2": 30.58749519872366, + "c3": -25.05132624492373, + "c4": 21.48313433819653, + "c5": -15.45010155304552, + "c6": -33.40979800006624, + "c7": -18.504163168923945 }, - "vertexSeeds": { - "c1": 4.192120308398187, - "c2": 4.501002566574481, - "c3": 4.163275316161787, - "c4": 4.845907422648759, - "c5": 4.41985837740261, - "c6": 4.491367231244741, - "c7": 5.202855337703691 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -143673,23 +143673,23 @@ "year": 1750, "resistanceReported": true, "duration": 18144000, - "curveSeeds": { - "c1": 27.267383975254454, - "c2": 12.376175026187411, - "c3": -20.522332952936377, - "c4": -0.07792991012289008, - "c5": -13.225001032893374, - "c6": -16.761318279818816, - "c7": -21.495433900197767 + "points": { + "c1": -11.885107098917072, + "c2": -13.658140424864687, + "c3": -18.48252113982546, + "c4": 13.337143556135928, + "c5": 23.002665472256083, + "c6": -13.981151491272001, + "c7": 21.781181620776962 }, - "vertexSeeds": { - "c1": 5.3876392524537655, - "c2": 7.002687565415362, - "c3": 6.932368246247283, - "c4": 7.1233904703707145, - "c5": 5.69644407820116, - "c6": 7.11023707919421, - "c7": 6.189027362345533 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.3971336107258425, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [58, 15, 49] }, @@ -143700,23 +143700,23 @@ "year": 1751, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -20.61178916546323, - "c2": 6.72664317501669, - "c3": 19.210970292821102, - "c4": -31.86026290767701, - "c5": -16.516864793131475, - "c6": -4.732596917152499, - "c7": -0.6170550671826405 + "points": { + "c1": -12.194679759747782, + "c2": -11.372035985909356, + "c3": 9.08471275095743, + "c4": -27.808028714972643, + "c5": -12.106144892754138, + "c6": 4.477670973172614, + "c7": -1.4676939217680882 }, - "vertexSeeds": { - "c1": 2.5956208041250015, - "c2": 2.8222266130518414, - "c3": 2.632475173777356, - "c4": 2.691449573150311, - "c5": 2.8127055298044485, - "c6": 2.458213164056562, - "c7": 2.815456623634118 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [58, 15, 49] }, @@ -143727,23 +143727,23 @@ "year": 1751, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 15.712581404293118, - "c2": 26.04906889899548, - "c3": 33.863527543301224, - "c4": -36.51258574439555, - "c5": 43.68780653406433, - "c6": -10.170583287133788, - "c7": 21.888240380989068 + "points": { + "c1": 10.833883988206772, + "c2": 26.83402476965876, + "c3": -17.225259712300275, + "c4": -37.07824568387481, + "c5": 33.0653568119428, + "c6": 9.435015525701992, + "c7": 44.854946909673 }, - "vertexSeeds": { - "c1": 9.620243048235144, - "c2": 9.66141085813615, - "c3": 9.656066375308601, - "c4": 9.634158831596219, - "c5": 9.63984598768361, - "c6": 9.672812317183155, - "c7": 9.679425712798686 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520111022, + "c3": 11.558021266759031, + "c4": 9.246417013407271, + "c5": 6.934812760055511, + "c6": 4.623208506703751, + "c7": 2.3116042533517605 }, "rgb": [222, 0, 59] }, @@ -143754,23 +143754,23 @@ "year": 1751, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 13.60923808125834, - "c2": -30.341522972778005, - "c3": 28.323080699668914, - "c4": 22.84254280289825, - "c5": -26.73360793485738, - "c6": -22.556474641289277, - "c7": -29.30691839696912 + "points": { + "c1": 25.64832584998657, + "c2": 22.6315442135233, + "c3": 15.216757349264945, + "c4": 22.734729297137285, + "c5": 3.0971667299313097, + "c6": 0.7953410424980234, + "c7": 10.757065224870296 }, - "vertexSeeds": { - "c1": 4.8436438251761516, - "c2": 4.541828620588927, - "c3": 4.2932516119080075, - "c4": 5.300989980219236, - "c5": 4.838036821528228, - "c6": 5.007770639995448, - "c7": 4.952844042636519 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -143781,23 +143781,23 @@ "year": 1751, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -11.097116908962189, - "c2": 31.146291780567978, - "c3": -14.863191402067095, - "c4": 10.181939084216076, - "c5": -13.67614425902488, - "c6": 30.68189273504335, - "c7": 15.911460480226623 + "points": { + "c1": 7.2859635036978005, + "c2": -7.182153601507327, + "c3": 6.979666369429424, + "c4": 6.063193518873568, + "c5": -33.43550386524618, + "c6": 10.470317411531788, + "c7": 21.36207237151678 }, - "vertexSeeds": { - "c1": 4.583717992612022, - "c2": 5.309587959228961, - "c3": 5.183172110533441, - "c4": 4.627325937747296, - "c5": 4.960091424948912, - "c6": 4.889070950142156, - "c7": 4.8161006797156976 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -143808,23 +143808,23 @@ "year": 1751, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 0.3723000570459831, - "c2": -27.626989597869212, - "c3": -14.039650458105132, - "c4": 18.34708610473293, - "c5": -9.23945589982116, - "c6": 0.4686366638631796, - "c7": 0.48869671180652574 + "points": { + "c1": 34.471429006272146, + "c2": -43.71065408594292, + "c3": -38.0570448526214, + "c4": 18.023378824708928, + "c5": -10.1142396019087, + "c6": -16.83020591596305, + "c7": -16.09281187870494 }, - "vertexSeeds": { - "c1": 7.773459899806711, - "c2": 7.975603747678363, - "c3": 7.655631086216377, - "c4": 7.434603158329547, - "c5": 7.599014204709648, - "c6": 7.792578024794836, - "c7": 7.775960509845479 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772544, + "c3": 9.639389736477108, + "c4": 7.7115117891816904, + "c5": 5.783633841886272, + "c6": 3.8557558945908355, + "c7": 1.9278779472954177 }, "rgb": [222, 0, 59] }, @@ -143835,23 +143835,23 @@ "year": 1751, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 22.14733916086368, - "c2": 18.901533373301298, - "c3": 13.255023351020078, - "c4": 24.509697045559953, - "c5": 8.119147020123336, - "c6": 17.952301231994447, - "c7": -17.70586602372026 + "points": { + "c1": 23.778215876606026, + "c2": -13.019012128917147, + "c3": -1.8966715206433449, + "c4": -2.080154292292608, + "c5": -0.362135719951894, + "c6": 7.163161893838598, + "c7": -9.728861391422619 }, - "vertexSeeds": { - "c1": 5.672529093058145, - "c2": 5.801090052222774, - "c3": 5.021728453399526, - "c4": 5.0794692667126675, - "c5": 5.0949426571293435, - "c6": 4.848520492049052, - "c7": 5.170613534000685 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227458, + "c3": 7.027276930189554, + "c4": 5.621821544151641, + "c5": 4.216366158113737, + "c6": 2.8109107720758226, + "c7": 1.4054553860379089 }, "rgb": [58, 15, 49] }, @@ -143862,23 +143862,23 @@ "year": 1751, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 19.424297886892546, - "c2": 1.2438777477283693, - "c3": 2.374929261150399, - "c4": 1.249796107298792, - "c5": -47.87062715248322, - "c6": 5.386818385592363, - "c7": 47.71680963473494 + "points": { + "c1": -2.7258322342998866, + "c2": 4.551484351896704, + "c3": 11.81020860961545, + "c4": -26.828454601012158, + "c5": -39.91701264775071, + "c6": -22.48550566902893, + "c7": -19.963166139042144 }, - "vertexSeeds": { - "c1": 8.358789744023909, - "c2": 8.693535609074129, - "c3": 8.150531441324173, - "c4": 8.471157518822476, - "c5": 8.468421890230653, - "c6": 8.774650135592367, - "c7": 8.223727483117937 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.67683772538142, + "c3": 10.564031437817837, + "c4": 8.451225150254274, + "c5": 6.33841886269071, + "c6": 4.225612575127128, + "c7": 2.112806287563564 }, "rgb": [77, 76, 132] }, @@ -143889,23 +143889,23 @@ "year": 1750, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 11.18595026287711, - "c2": 19.326258712805487, - "c3": -6.798024549179388, - "c4": 4.609274192777914, - "c5": 8.646102772935823, - "c6": -14.31249083646052, - "c7": -24.242724845152743 + "points": { + "c1": -20.47105086128558, + "c2": -10.329693663993996, + "c3": 5.712895926554385, + "c4": 6.210566031893801, + "c5": 5.760919346722144, + "c6": -24.536456003191653, + "c7": 25.114125791424623 }, - "vertexSeeds": { - "c1": 5.36790493516258, - "c2": 5.5226274203181385, - "c3": 5.574541796380915, - "c4": 5.196556236516054, - "c5": 5.712920878633269, - "c6": 5.921563470965699, - "c7": 5.071333665120431 + "offsets": { + "c1": 10, + "c2": 8.57142857142857, + "c3": 7.14285714285714, + "c4": 5.71428571428571, + "c5": 4.28571428571429, + "c6": 2.8571428571428603, + "c7": 1.4285714285714302 }, "rgb": [222, 0, 59] }, @@ -143916,23 +143916,23 @@ "year": 1751, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -1.9534458995785258, - "c2": -5.538339184807128, - "c3": 29.767891277254897, - "c4": 34.512303616176304, - "c5": 5.820353902068383, - "c6": 2.973221767874847, - "c7": -22.60971276818635 + "points": { + "c1": 41.520228250200596, + "c2": 23.68267106461375, + "c3": 5.326819920466761, + "c4": -31.933820543687737, + "c5": -25.550863208223504, + "c6": 18.712454366555058, + "c7": 8.424056776366633 }, - "vertexSeeds": { - "c1": 8.182390831233128, - "c2": 8.650913118373605, - "c3": 8.30510904692772, - "c4": 8.829280912111086, - "c5": 8.63217348446776, - "c6": 8.396856563244071, - "c7": 8.261834801942761 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.76005547850209, + "c3": 10.633379565418398, + "c4": 8.506703652334727, + "c5": 6.380027739251035, + "c6": 4.253351826167363, + "c7": 2.1266759130836923 }, "rgb": [222, 0, 59] }, @@ -143943,23 +143943,23 @@ "year": 1751, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -2.3637754190086717, - "c2": 23.62149557523683, - "c3": -23.267212699786242, - "c4": -18.83814374215978, - "c5": -7.881883961575461, - "c6": -21.182004701102336, - "c7": 33.00447623752967 + "points": { + "c1": 1.480968025494839, + "c2": -8.343935870301689, + "c3": -11.210042370650285, + "c4": 27.445356922555213, + "c5": 21.457972238006846, + "c6": -35.62947159271066, + "c7": 4.237548833568731 }, - "vertexSeeds": { - "c1": 4.287329176052288, - "c2": 4.292475005508445, - "c3": 4.008564053653029, - "c4": 4.053497705533365, - "c5": 4.049355113739875, - "c6": 4.03169339570894, - "c7": 4.034700826387696 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -143970,23 +143970,23 @@ "year": 1751, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 16.026240481440425, - "c2": 31.677976155647883, - "c3": 14.027734804717817, - "c4": 0.39021175535745556, - "c5": -9.343394442666273, - "c6": -1.1029550731967532, - "c7": -1.4483810312308094 + "points": { + "c1": -19.526169209911526, + "c2": -19.335075867896258, + "c3": -2.5267674783871783, + "c4": -2.2879485872270564, + "c5": 28.4210959330359, + "c6": -2.6512750274107404, + "c7": -18.285193210081925 }, - "vertexSeeds": { - "c1": 5.713692834260914, - "c2": 6.184163364654028, - "c3": 5.82725829151353, - "c4": 5.681777298004707, - "c5": 5.683956276198026, - "c6": 5.976203568878921, - "c7": 6.629209916665777 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -143997,23 +143997,23 @@ "year": 1751, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 11.22437286970008, - "c2": -25.993074049530247, - "c3": -12.674707414298384, - "c4": 5.652442789942231, - "c5": -17.953369093315004, - "c6": 2.046327071914977, - "c7": 10.349121871813072 + "points": { + "c1": -9.106625018710961, + "c2": -4.4882301471743205, + "c3": 4.834885987232834, + "c4": 27.325315916437756, + "c5": 10.183547400685935, + "c6": 26.69425965332052, + "c7": -29.63098036658015 }, - "vertexSeeds": { - "c1": 6.5518000631606865, - "c2": 5.5812310441185975, - "c3": 6.487189581239141, - "c4": 6.376540674149553, - "c5": 5.917889553618069, - "c6": 5.869721866573446, - "c7": 5.7352389015097724 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -144024,23 +144024,23 @@ "year": 1751, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -0.8868708299541481, - "c2": 16.605368435707852, - "c3": -6.126522549723077, - "c4": 8.895590388463916, - "c5": 25.222936989827154, - "c6": -29.374862709871945, - "c7": -24.110997342561603 + "points": { + "c1": -8.35071983600972, + "c2": -22.46979717401181, + "c3": -8.150074552205506, + "c4": 11.173382035909796, + "c5": -32.06472292631885, + "c6": -14.577575402429112, + "c7": 16.525230674862584 }, - "vertexSeeds": { - "c1": 3.075040677600305, - "c2": 3.2621928892994987, - "c3": 3.177809226678754, - "c4": 3.32186389101354, - "c5": 3.119924958253948, - "c6": 3.3135917790876093, - "c7": 3.0419686775074117 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918167, + "c3": 3.9759593157651385, + "c4": 3.1807674526121086, + "c5": 2.3855755894590884, + "c6": 1.5903837263060587, + "c7": 0.7951918631530294 }, "rgb": [77, 76, 132] }, @@ -144051,23 +144051,23 @@ "year": 1751, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -4.0681890044445055, - "c2": -7.72778591949, - "c3": 0.4173054773279574, - "c4": 8.655182596804238, - "c5": 17.022097315785523, - "c6": 32.64846607970186, - "c7": 27.976749348698704 + "points": { + "c1": -36.37217556915779, + "c2": -3.6443435873558556, + "c3": -7.390747010351998, + "c4": -30.034835670063618, + "c5": -18.49325803572762, + "c6": -27.667775130325154, + "c7": -25.65608899911452 }, - "vertexSeeds": { - "c1": 5.881994448682858, - "c2": 5.654171804947341, - "c3": 5.599106664283075, - "c4": 5.876921272738708, - "c5": 5.678434315152044, - "c6": 5.509363202599444, - "c7": 5.612852077391767 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622746, + "c3": 7.0272769301895455, + "c4": 5.621821544151633, + "c5": 4.21636615811374, + "c6": 2.810910772075827, + "c7": 1.4054553860379135 }, "rgb": [238, 201, 159] }, @@ -144078,23 +144078,23 @@ "year": 1751, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -30.68485350671552, - "c2": -23.419815844649403, - "c3": 27.80772831027101, - "c4": 27.738990057139098, - "c5": -27.871405770740537, - "c6": 19.79215444613054, - "c7": -15.445019424486052 + "points": { + "c1": 10.339074432528136, + "c2": 6.530827893845412, + "c3": -9.01168529976431, + "c4": -37.495092960233364, + "c5": 20.381645075464895, + "c6": 7.20641304078471, + "c7": -5.829910413436544 }, - "vertexSeeds": { - "c1": 0.9304128381524255, - "c2": 0.8687543296151901, - "c3": 0.9319038989511318, - "c4": 0.9309206770611356, - "c5": 0.9089405120804767, - "c6": 0.8531770080752088, - "c7": 0.9107851143863364 + "offsets": { + "c1": 1.5857605177993526, + "c2": 1.3592233009708743, + "c3": 1.132686084142396, + "c4": 0.9061488673139153, + "c5": 0.6796116504854371, + "c6": 0.4530744336569588, + "c7": 0.2265372168284783 }, "rgb": [58, 15, 49] }, @@ -144105,23 +144105,23 @@ "year": 1751, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 22.796900789971655, - "c2": -5.049343542121779, - "c3": -5.036125560092582, - "c4": -14.623544943705337, - "c5": 1.7843885724479591, - "c6": -3.7789840625057387, - "c7": 1.9015506905443544 + "points": { + "c1": -3.322419783696809, + "c2": 0.832692230911622, + "c3": -3.7402926788273483, + "c4": -11.094689732664822, + "c5": -4.359582062591862, + "c6": -25.439168562388602, + "c7": 26.665597570298043 }, - "vertexSeeds": { - "c1": 3.8974151354733695, - "c2": 4.007782854719744, - "c3": 4.1256101214498795, - "c4": 4.448516463734021, - "c5": 3.997704835544157, - "c6": 3.9338117265558434, - "c7": 4.236472888861581 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -144132,23 +144132,23 @@ "year": 1751, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 7.846074367792056, - "c2": -25.594185347172843, - "c3": 3.888839059283292, - "c4": 21.568368051307907, - "c5": -7.123480466297863, - "c6": -22.507678497681624, - "c7": 1.678983933505684 + "points": { + "c1": 10.831163218491774, + "c2": -30.081172938891434, + "c3": 24.5788021733958, + "c4": -21.38280271973039, + "c5": 15.744368374786838, + "c6": -17.543285363024133, + "c7": 12.031934599689983 }, - "vertexSeeds": { - "c1": 4.15019850952725, - "c2": 3.912268262878865, - "c3": 3.8018984801207996, - "c4": 4.050788370290847, - "c5": 4.134258141679728, - "c6": 3.8103788588860312, - "c7": 4.232508361103665 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [86, 146, 138] }, @@ -144159,23 +144159,23 @@ "year": 1751, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -16.432454014510785, - "c2": 0.6755392822589883, - "c3": 14.949100485977574, - "c4": -20.63467875689792, - "c5": -9.484205899747646, - "c6": 6.906856428465943, - "c7": -33.70575333551652 + "points": { + "c1": -5.615698306121352, + "c2": -29.818404548715424, + "c3": 31.52725830742518, + "c4": 26.939138029214213, + "c5": 12.086543218683559, + "c6": -7.222348596144805, + "c7": 7.952663778111521 }, - "vertexSeeds": { - "c1": 7.178347972043464, - "c2": 7.171857881554624, - "c3": 7.301316252563162, - "c4": 7.231811103654961, - "c5": 7.1948071651170515, - "c6": 7.218504804422409, - "c7": 7.244948876356612 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.45769764216366, + "c3": 8.714748035136385, + "c4": 6.971798428109107, + "c5": 5.22884882108183, + "c6": 3.4858992140545535, + "c7": 1.7429496070272767 }, "rgb": [86, 146, 138] }, @@ -144186,23 +144186,23 @@ "year": 1751, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -18.688991217745137, - "c2": -21.26372210172969, - "c3": 19.976927100612414, - "c4": 3.429554167546076, - "c5": 7.2372779188758045, - "c6": -5.836525460760569, - "c7": -1.748904518435868 + "points": { + "c1": 7.445440760927205, + "c2": -8.622895267848506, + "c3": 13.288140950557171, + "c4": -1.5447071149960472, + "c5": 22.721766036463144, + "c6": 22.901590172349522, + "c7": 16.046677624516455 }, - "vertexSeeds": { - "c1": 5.686894198959053, - "c2": 6.750047641882052, - "c3": 6.043215372709898, - "c4": 5.608329007606126, - "c5": 6.3999815516322105, - "c6": 6.649807137523303, - "c7": 5.830143529326928 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -144213,23 +144213,23 @@ "year": 1751, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": -42.50288973618837, - "c2": 8.497637180977478, - "c3": -16.48286182799165, - "c4": -50.71187269012136, - "c5": 17.53603383199978, - "c6": 37.366426742331065, - "c7": 18.28846638860535 + "points": { + "c1": -7.344342563930461, + "c2": -5.711754669513468, + "c3": -9.109305327450834, + "c4": 21.05069980682685, + "c5": -50.87797171344901, + "c6": -7.078099370881603, + "c7": 15.765595724869122 }, - "vertexSeeds": { - "c1": 5.793511438324916, - "c2": 5.250596712865814, - "c3": 5.5060771527994925, - "c4": 5.4997234956471175, - "c5": 5.313932125502266, - "c6": 5.724011181383059, - "c7": 5.41609135663693 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [77, 76, 132] }, @@ -144240,23 +144240,23 @@ "year": 1751, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 15.652449446800027, - "c2": 24.42969604370422, - "c3": 17.846829750075308, - "c4": -15.834211313886513, - "c5": 4.4785725403116565, - "c6": -21.467647402057082, - "c7": 8.918264881786257 + "points": { + "c1": 16.01587022860675, + "c2": -26.620056597778305, + "c3": -21.13741713083431, + "c4": -4.5557169791893095, + "c5": -12.459314675823022, + "c6": -1.205828104881821, + "c7": -20.499061710552485 }, - "vertexSeeds": { - "c1": 4.1989261101277116, - "c2": 4.660219857921402, - "c3": 4.698639596362238, - "c4": 4.732530726804575, - "c5": 4.69186463856731, - "c6": 4.636978118290765, - "c7": 4.335957698771527 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -144267,23 +144267,23 @@ "year": 1751, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 18.660583279269936, - "c2": -17.80796572281013, - "c3": 5.247198675216325, - "c4": -10.837079069170944, - "c5": 29.907210430893777, - "c6": 18.705685246362854, - "c7": -0.9838461696319563 + "points": { + "c1": -20.75280211827377, + "c2": -12.7072744083546, + "c3": -3.8698217358850187, + "c4": 2.261125308783683, + "c5": -9.043385455170696, + "c6": 21.34949854670125, + "c7": -16.84276883439162 }, - "vertexSeeds": { - "c1": 5.298161363061075, - "c2": 5.997139977290322, - "c3": 5.63167042824822, - "c4": 5.602146532559465, - "c5": 5.318238553358874, - "c6": 5.382248699023014, - "c7": 5.2940501546618295 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594546, + "c4": 6.121128062875633, + "c5": 4.59084604715673, + "c6": 3.0605640314378166, + "c7": 1.5302820157189134 }, "rgb": [77, 76, 132] }, @@ -144294,23 +144294,23 @@ "year": 1751, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -32.87488506838294, - "c2": 4.889177219374652, - "c3": -26.331903758921513, - "c4": 4.791718283543908, - "c5": 45.61040050756145, - "c6": 39.33631123427226, - "c7": -19.814360217696592 + "points": { + "c1": 47.62224627566664, + "c2": 31.834488854244626, + "c3": 34.50146871398678, + "c4": 42.51216298811924, + "c5": 20.127771177140303, + "c6": 4.937254622470526, + "c7": -18.424209128683067 }, - "vertexSeeds": { - "c1": 6.8488408631570294, - "c2": 7.080264204811973, - "c3": 5.988587301867195, - "c4": 6.0548099647651465, - "c5": 6.962434693908471, - "c6": 6.620023944775442, - "c7": 6.967435275747337 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083224, + "c3": 8.668515950069347, + "c4": 6.934812760055482, + "c5": 5.201109570041607, + "c6": 3.467406380027741, + "c7": 1.7337031900138655 }, "rgb": [222, 0, 59] }, @@ -144321,23 +144321,23 @@ "year": 1751, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 0.33999918976767063, - "c2": -12.945457745584452, - "c3": -16.58887750942884, - "c4": 23.68097316901104, - "c5": -12.005403545258542, - "c6": -8.444047740108909, - "c7": 16.490369933407585 + "points": { + "c1": -0.21232422380272098, + "c2": 12.341267072785683, + "c3": -7.692062666967576, + "c4": 1.6324723565036194, + "c5": -1.3934164511797995, + "c6": 2.6143541734886604, + "c7": -7.601222916075965 }, - "vertexSeeds": { - "c1": 0.8023075177092556, - "c2": 0.7640252124515675, - "c3": 0.8006323546166427, - "c4": 0.8353114164019413, - "c5": 0.8114602930675798, - "c6": 0.7491972558156926, - "c7": 0.9403665055622864 + "offsets": { + "c1": 1.650485436893204, + "c2": 1.414701803051318, + "c3": 1.178918169209431, + "c4": 0.9431345353675451, + "c5": 0.7073509015256582, + "c6": 0.4715672676837721, + "c7": 0.23578363384188605 }, "rgb": [77, 76, 132] }, @@ -144348,23 +144348,23 @@ "year": 1751, "resistanceReported": true, "duration": 12700800, - "curveSeeds": { - "c1": 14.40105852803076, - "c2": 20.686763110503534, - "c3": -14.527010312167661, - "c4": -6.6790394961621615, - "c5": 16.70998778846274, - "c6": 23.033518239426797, - "c7": -4.4468180242890405 + "points": { + "c1": 17.12877512295112, + "c2": -12.074574959989864, + "c3": 22.709336166728768, + "c4": 8.747064254094887, + "c5": 17.27821930503152, + "c6": 23.44568193619437, + "c7": -5.287479584156802 }, - "vertexSeeds": { - "c1": 5.725847589517799, - "c2": 5.586919479509784, - "c3": 6.070591043808386, - "c4": 6.14082633565429, - "c5": 6.638034019586469, - "c6": 5.8500676793652415, - "c7": 5.6190377878387165 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -144375,23 +144375,23 @@ "year": 1751, "resistanceReported": true, "duration": 28166400, - "curveSeeds": { - "c1": 24.60347551836216, - "c2": -24.62289035225443, - "c3": -38.70710300885937, - "c4": 25.48641133162694, - "c5": -14.75170313455665, - "c6": 3.295269759829779, - "c7": 8.416317104399333 + "points": { + "c1": 7.689079503871575, + "c2": -36.321391337838165, + "c3": 27.445626909299378, + "c4": -8.57903712469804, + "c5": 16.956434134919945, + "c6": 39.65698822430599, + "c7": 19.832618369934586 }, - "vertexSeeds": { - "c1": 3.0042734533745805, - "c2": 2.941403792228326, - "c3": 3.0007506507687456, - "c4": 2.9866758148162442, - "c5": 3.010775538321834, - "c6": 2.971152341724075, - "c7": 2.9003298965507733 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274624, + "c3": 3.6061026352288463, + "c4": 2.884882108183083, + "c5": 2.1636615811373052, + "c6": 1.4424410540915416, + "c7": 0.7212205270457634 }, "rgb": [86, 146, 138] }, @@ -144402,23 +144402,23 @@ "year": 1751, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -10.584779212383854, - "c2": -1.2721837299781953, - "c3": -23.203099222666218, - "c4": -2.2216494235363484, - "c5": -4.948451063211394, - "c6": 19.90116294754295, - "c7": -26.64162691741096 + "points": { + "c1": 35.63315363957615, + "c2": -20.694714059848067, + "c3": 32.670182456407716, + "c4": -21.80907566150386, + "c5": -27.613300092784677, + "c6": -35.222932401585545, + "c7": 13.741310657427327 }, - "vertexSeeds": { - "c1": 8.110698758942096, - "c2": 8.062981277426827, - "c3": 7.596484290427465, - "c4": 8.005136608039649, - "c5": 7.920355115800511, - "c6": 7.375679936906711, - "c7": 7.849462813947827 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.6504854368932, + "c3": 9.708737864077664, + "c4": 7.766990291262148, + "c5": 5.82524271844661, + "c6": 3.883495145631074, + "c7": 1.941747572815537 }, "rgb": [86, 146, 138] }, @@ -144429,23 +144429,23 @@ "year": 1751, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -23.30806244794057, - "c2": -48.15252091188489, - "c3": 3.8404943753747673, - "c4": -5.884806073393399, - "c5": -19.89041326163237, - "c6": 50.08953336557299, - "c7": -3.6247741092864842 + "points": { + "c1": -47.27481241374395, + "c2": 3.1271745759200726, + "c3": 32.01016075773285, + "c4": -7.407269074898849, + "c5": 15.355625225050488, + "c6": -4.961794075489152, + "c7": -24.462995292432797 }, - "vertexSeeds": { - "c1": 5.260569057295466, - "c2": 5.014348553882558, - "c3": 5.146918774350208, - "c4": 5.033668726602778, - "c5": 5.297509600493016, - "c6": 5.250938185840405, - "c7": 4.994350781218512 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.65603328710125, + "c3": 6.380027739251045, + "c4": 5.10402219140084, + "c5": 3.8280166435506335, + "c6": 2.55201109570042, + "c7": 1.2760055478502141 }, "rgb": [86, 146, 138] }, @@ -144456,23 +144456,23 @@ "year": 1751, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": -14.260571134418917, - "c2": -8.791726849393285, - "c3": 21.01919335338873, - "c4": 43.39982631525997, - "c5": 35.73133330929505, - "c6": -5.484264271547524, - "c7": 10.194303680670693 + "points": { + "c1": 38.227582152916966, + "c2": 3.4442203068886386, + "c3": 51.06207253432066, + "c4": 2.546442314961652, + "c5": 51.641851957501345, + "c6": -44.2696582800637, + "c7": -38.6596212886792 }, - "vertexSeeds": { - "c1": 4.756331703470546, - "c2": 7.576308584390153, - "c3": 7.412908153546084, - "c4": 5.6548821867634365, - "c5": 5.388956823754354, - "c6": 5.810930971762838, - "c7": 5.638101406772186 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407305, + "c4": 7.39713361072584, + "c5": 5.547850208044385, + "c6": 3.69856680536292, + "c7": 1.84928340268146 }, "rgb": [77, 76, 132] }, @@ -144483,23 +144483,23 @@ "year": 1751, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -0.7725846961789813, - "c2": -22.22515799459915, - "c3": -29.528315133031782, - "c4": 6.805417733657961, - "c5": 15.171895126326028, - "c6": -6.271525563895189, - "c7": -29.194248691426722 + "points": { + "c1": -18.595377163186782, + "c2": -7.210181937721433, + "c3": -13.609067269113389, + "c4": 19.3899627629226, + "c5": -19.934325232845318, + "c6": -7.810226718925598, + "c7": 9.273231894433287 }, - "vertexSeeds": { - "c1": 3.5042980508601023, - "c2": 3.5250585475434253, - "c3": 3.563497647587006, - "c4": 3.572092407694724, - "c5": 3.2487425833207233, - "c6": 3.417251407266864, - "c7": 3.6132849440480554 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561719, + "c3": 4.345815996301433, + "c4": 3.476652797041146, + "c5": 2.6074895977808596, + "c6": 1.738326398520573, + "c7": 0.8691631992602865 }, "rgb": [86, 146, 138] }, @@ -144510,23 +144510,23 @@ "year": 1751, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -13.750023336129694, - "c2": 28.829944690652397, - "c3": -16.469464204769455, - "c4": 14.732342526485063, - "c5": 27.893285227613504, - "c6": -7.7827810640031, - "c7": 22.36176359310825 + "points": { + "c1": -21.95072545019197, + "c2": 27.29913919013336, + "c3": -6.149285164892397, + "c4": -26.74950336106161, + "c5": -38.569500252744746, + "c6": -27.19674749237616, + "c7": 37.47475535830246 }, - "vertexSeeds": { - "c1": 5.185793191321456, - "c2": 5.139874226683064, - "c3": 5.05308596059473, - "c4": 5.071077065389743, - "c5": 5.0115101657619965, - "c6": 5.14768574808645, - "c7": 5.008925950734899 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.46185852981969, + "c3": 6.218215441516402, + "c4": 4.974572353213113, + "c5": 3.7309292649098658, + "c6": 2.487286176606577, + "c7": 1.2436430883032885 }, "rgb": [86, 146, 138] }, @@ -144537,23 +144537,23 @@ "year": 1751, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 23.11188449627719, - "c2": 23.89690841782661, - "c3": 0.22819091359199462, - "c4": -0.8394540309869996, - "c5": 10.674629648181991, - "c6": 8.584755275128948, - "c7": 19.248573930834567 + "points": { + "c1": -8.532788094669044, + "c2": 8.522204813490028, + "c3": 17.11474388591276, + "c4": -33.711834025968685, + "c5": -29.365696945304727, + "c6": 11.711621242900947, + "c7": 12.462436370409094 }, - "vertexSeeds": { - "c1": 4.6741160779457, - "c2": 5.225716649620707, - "c3": 4.736869402511732, - "c4": 4.949025829965722, - "c5": 4.509659403818527, - "c6": 5.01203078786121, - "c7": 5.099372273795758 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -144564,23 +144564,23 @@ "year": 1751, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -17.790094902254978, - "c2": 30.426212183614325, - "c3": 8.13671036046538, - "c4": -13.764150980340766, - "c5": 28.71158711248804, - "c6": 12.683261739424033, - "c7": 6.392459539520949 + "points": { + "c1": 3.383375592360032, + "c2": -15.322969208477307, + "c3": 9.133459842316384, + "c4": 12.638837525503924, + "c5": 11.352157019802291, + "c6": 23.915444319144775, + "c7": -21.38801033624558 }, - "vertexSeeds": { - "c1": 8.718760469886254, - "c2": 8.054925534475318, - "c3": 7.951573557696132, - "c4": 8.863371079858325, - "c5": 9.524158009783667, - "c6": 9.417264450502739, - "c7": 9.395670116869836 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.675450762829405, + "c3": 11.396208969024508, + "c4": 9.1169671752196, + "c5": 6.837725381414702, + "c6": 4.558483587609805, + "c7": 2.2792417938048977 }, "rgb": [86, 146, 138] }, @@ -144591,23 +144591,23 @@ "year": 1751, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 34.537184824198036, - "c2": 26.37417662861533, - "c3": 24.35929785410984, - "c4": 0.5476304986890455, - "c5": -22.2798944075327, - "c6": -7.488311802705329, - "c7": 18.344100211411067 + "points": { + "c1": 0.5179318191678846, + "c2": -12.899662479658584, + "c3": 2.0550154065808, + "c4": -29.39987018941354, + "c5": -0.5354158040774379, + "c6": -8.075458416772186, + "c7": -30.130600595491032 }, - "vertexSeeds": { - "c1": 9.130476158239368, - "c2": 9.123931919394495, - "c3": 9.08497774748503, - "c4": 9.074439076237757, - "c5": 9.125694283062362, - "c6": 9.09391888182169, - "c7": 9.111479584939989 + "offsets": { + "c1": 15.242718446601941, + "c2": 13.06518723994444, + "c3": 10.887656033287225, + "c4": 8.710124826629723, + "c5": 6.53259361997222, + "c6": 4.355062413314717, + "c7": 2.1775312066575023 }, "rgb": [238, 201, 159] }, @@ -144618,23 +144618,23 @@ "year": 1751, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 5.4628914303187415, - "c2": -11.689099077180792, - "c3": 14.024964172693686, - "c4": -27.750294346494137, - "c5": -25.96018015679434, - "c6": 27.272157501237764, - "c7": 8.429453724959544 + "points": { + "c1": 11.353273503505832, + "c2": -11.795647565483357, + "c3": 24.222937507429165, + "c4": -25.357144770259236, + "c5": -24.169489435692217, + "c6": -11.716686244670374, + "c7": -28.729568985139707 }, - "vertexSeeds": { - "c1": 2.3121761658031086, - "c2": 2.3121761658031086, - "c3": 2.3121761658031086, - "c4": 2.3121761658031086, - "c5": 2.3121761658031086, - "c6": 2.3121761658031086, - "c7": 2.3121761658031086 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -144645,23 +144645,23 @@ "year": 1751, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 21.80126230664321, - "c2": -37.49234060459612, - "c3": -7.534304086234769, - "c4": 23.811907161644605, - "c5": 12.732033803099725, - "c6": -35.120879974409036, - "c7": 33.42765357021478 + "points": { + "c1": 16.241860448903303, + "c2": 6.59067791055741, + "c3": -9.71156289557431, + "c4": 16.550125968098712, + "c5": -9.095987192788805, + "c6": 3.1348385634178655, + "c7": -3.530366808905093 }, - "vertexSeeds": { - "c1": 6.973797494610584, - "c2": 6.7857856403841845, - "c3": 6.1240487320177515, - "c4": 5.7376186449647975, - "c5": 6.583939750979584, - "c6": 5.8058246939536415, - "c7": 6.7379472512019385 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560337, + "c3": 8.368007397133608, + "c4": 6.694405917706891, + "c5": 5.020804438280163, + "c6": 3.3472029588534453, + "c7": 1.6736014794267178 }, "rgb": [238, 201, 159] }, @@ -144672,23 +144672,23 @@ "year": 1751, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 40.04959998234668, - "c2": -11.594971372140606, - "c3": 25.759126203784902, - "c4": -42.49706439435793, - "c5": -42.98057190662652, - "c6": 42.737094893374575, - "c7": -39.19997236409222 + "points": { + "c1": 3.547219807227613, + "c2": 31.57676853487152, + "c3": -33.19959453451705, + "c4": -24.458292280545386, + "c5": 17.16190665034157, + "c6": 10.940322791651049, + "c7": 27.977011726870387 }, - "vertexSeeds": { - "c1": 6.448929313729925, - "c2": 5.856212461306962, - "c3": 6.182974323868242, - "c4": 6.483671622718106, - "c5": 6.4645784434146885, - "c6": 6.58969739269568, - "c7": 6.093193560995863 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077667, + "c3": 8.090614886731398, + "c4": 6.472491909385116, + "c5": 4.854368932038834, + "c6": 3.2362459546925644, + "c7": 1.6181229773462822 }, "rgb": [86, 146, 138] }, @@ -144699,23 +144699,23 @@ "year": 1751, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 13.316001543310293, - "c2": 4.438235569329077, - "c3": -17.032205714923325, - "c4": -13.90609478823761, - "c5": 1.9024446880101848, - "c6": -18.572546664410357, - "c7": 17.860237303504135 + "points": { + "c1": 9.53686774836742, + "c2": 16.574473226626424, + "c3": 19.358670835275454, + "c4": 23.142664121632173, + "c5": 5.870605503118188, + "c6": 4.357400045449172, + "c7": -9.140692511452372 }, - "vertexSeeds": { - "c1": 4.181735733485921, - "c2": 3.926646905815578, - "c3": 4.329284592558201, - "c4": 4.213860483996953, - "c5": 4.378894019741111, - "c6": 4.016439933721879, - "c7": 4.231509002192099 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -144726,23 +144726,23 @@ "year": 1751, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 20.818739018328642, - "c2": -6.512517441867981, - "c3": 21.20692640022604, - "c4": -34.85022916239984, - "c5": 5.142867527646715, - "c6": 16.160802698137857, - "c7": -2.493881487977987 + "points": { + "c1": -17.964232507635618, + "c2": 33.028200227032215, + "c3": 22.292425266503265, + "c4": -36.19994592079609, + "c5": -12.835577282086827, + "c6": -4.25955020935325, + "c7": 10.528634580666761 }, - "vertexSeeds": { - "c1": 5.019885751071054, - "c2": 4.9710257422843265, - "c3": 5.165362414794455, - "c4": 5.074690738741628, - "c5": 4.927963753496004, - "c6": 4.853956244388163, - "c7": 4.973645771233638 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739243, + "c3": 6.171983356449389, + "c4": 4.937586685159506, + "c5": 3.7031900138696217, + "c6": 2.468793342579753, + "c7": 1.2343966712898835 }, "rgb": [77, 76, 132] }, @@ -144753,23 +144753,23 @@ "year": 1752, "resistanceReported": false, "duration": 48211200, - "curveSeeds": { - "c1": 8.40050230045739, - "c2": -12.549580936370482, - "c3": 18.941049797125913, - "c4": -11.150191053563049, - "c5": 47.1954179059196, - "c6": -48.850622937047426, - "c7": -24.727214640415227 + "points": { + "c1": -26.810381864432358, + "c2": -61.40216546085333, + "c3": -26.58853089013118, + "c4": 34.91291218584119, + "c5": -36.887238898298385, + "c6": -14.014548534199307, + "c7": 47.72283067270972 }, - "vertexSeeds": { - "c1": 9.328390151975798, - "c2": 9.409921584811208, - "c3": 9.749184527513364, - "c4": 9.321676098667918, - "c5": 9.58349304327833, - "c6": 9.40731754409983, - "c7": 9.199299559423787 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352284, + "c3": 11.696717521960231, + "c4": 9.357374017568208, + "c5": 7.018030513176157, + "c6": 4.678687008784104, + "c7": 2.339343504392052 }, "rgb": [222, 0, 59] }, @@ -144780,23 +144780,23 @@ "year": 1751, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 5.443681881612932, - "c2": -33.17703583043263, - "c3": -40.59301642911264, - "c4": 42.06965300771226, - "c5": 8.756075977483064, - "c6": 30.08848808453824, - "c7": -11.001031168968822 + "points": { + "c1": -15.335892829755736, + "c2": -3.6013440019959546, + "c3": 50.948845534139835, + "c4": -9.535820637436792, + "c5": -26.4737675749765, + "c6": 47.06616734727895, + "c7": -4.8330347482581 }, - "vertexSeeds": { - "c1": 5.261660168986808, - "c2": 5.38188571248904, - "c3": 5.087979678248399, - "c4": 4.983565585247346, - "c5": 5.534056159978824, - "c6": 5.472544137547467, - "c7": 5.099485726487578 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583917, + "c3": 6.657420249653257, + "c4": 5.325936199722611, + "c5": 3.9944521497919516, + "c6": 2.6629680998613057, + "c7": 1.3314840499306528 }, "rgb": [222, 0, 59] }, @@ -144807,23 +144807,23 @@ "year": 1751, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 0.5061955524063642, - "c2": -26.202223108431944, - "c3": 6.613707246834391, - "c4": 5.01942611665201, - "c5": 18.92411430273307, - "c6": 29.518687780711236, - "c7": -1.5897796898574121 + "points": { + "c1": 18.8575440973883, + "c2": 2.19980253144157, + "c3": 14.317121969234101, + "c4": -29.61979863595814, + "c5": 23.611996569568547, + "c6": -31.556270982326325, + "c7": 29.767710994133054 }, - "vertexSeeds": { - "c1": 4.427598392858705, - "c2": 5.020348510767269, - "c3": 4.093015569043384, - "c4": 5.222281365056542, - "c5": 4.092024446012776, - "c6": 4.779044501331974, - "c7": 4.86358699635256 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -144834,23 +144834,23 @@ "year": 1750, "resistanceReported": true, "duration": 9676800, - "curveSeeds": { - "c1": 7.458568562068173, - "c2": 11.386525427634481, - "c3": -16.527029573539565, - "c4": -8.042755363289423, - "c5": 10.51428965444714, - "c6": -14.231369874359562, - "c7": 3.699425154776641 + "points": { + "c1": 20.49907402736452, + "c2": -14.791513837360004, + "c3": 21.048250979432332, + "c4": 13.215844090893277, + "c5": -20.545552642284797, + "c6": 14.88257349631634, + "c7": 13.450394092787548 }, - "vertexSeeds": { - "c1": 11.123404009916301, - "c2": 10.978043833245525, - "c3": 10.329515015332511, - "c4": 10.72988974416367, - "c5": 10.568926394983324, - "c6": 10.01820507992236, - "c7": 10.236104693336852 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.977808599167835, + "c3": 13.314840499306515, + "c4": 10.651872399445224, + "c5": 7.988904299583901, + "c6": 5.325936199722612, + "c7": 2.662968099861322 }, "rgb": [58, 15, 49] }, @@ -144861,23 +144861,23 @@ "year": 1751, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": -6.802391768163082, - "c2": -16.52916193987977, - "c3": 14.637682009557139, - "c4": -9.89816298455735, - "c5": -14.036416893149347, - "c6": 14.17660866422954, - "c7": -20.272381850376576 + "points": { + "c1": -17.53259425782173, + "c2": 2.1399755504030544, + "c3": 19.79492186890824, + "c4": -19.13233827136016, + "c5": 1.1496270463569083, + "c6": 1.110423442987365, + "c7": 17.65931997811547 }, - "vertexSeeds": { - "c1": 3.2122528956097143, - "c2": 3.0995591509618077, - "c3": 3.1603809207604714, - "c4": 3.1294543500880994, - "c5": 3.10624849848205, - "c6": 3.2372023074317893, - "c7": 3.064896859118109 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [77, 76, 132] }, @@ -144888,23 +144888,23 @@ "year": 1751, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -16.404065067146853, - "c2": 20.779182291356477, - "c3": 27.37906241497464, - "c4": 23.918168905745723, - "c5": -8.860999889010998, - "c6": 0.3402424129821462, - "c7": 24.447486401653464 + "points": { + "c1": 5.991419718805872, + "c2": 20.484592112796122, + "c3": -14.338569541099382, + "c4": -9.836608560765125, + "c5": -14.932204030807885, + "c6": -3.815982810181062, + "c7": -26.42060378940653 }, - "vertexSeeds": { - "c1": 7.565473883815022, - "c2": 7.8251681849772305, - "c3": 7.623395468867029, - "c4": 8.146842928952937, - "c5": 7.784095364978702, - "c6": 8.160617464851295, - "c7": 7.549108904400712 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.81692094313454, + "c3": 9.847434119278772, + "c4": 7.877947295423021, + "c5": 5.90846047156727, + "c6": 3.9389736477115016, + "c7": 1.9694868238557508 }, "rgb": [238, 201, 159] }, @@ -144915,23 +144915,23 @@ "year": 1751, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -32.9626897062207, - "c2": -23.28115547442477, - "c3": 41.25219786262971, - "c4": 22.202130119310475, - "c5": 19.01282799824176, - "c6": 19.810978874582688, - "c7": -4.295269861296326 + "points": { + "c1": 41.6524107589537, + "c2": -2.044037447223481, + "c3": 23.66649689123151, + "c4": -38.153031433657986, + "c5": -2.9247325387937906, + "c6": -35.32047566684659, + "c7": 25.226262409368324 }, - "vertexSeeds": { - "c1": 5.598885181149636, - "c2": 5.679127094241593, - "c3": 5.694270596820121, - "c4": 5.576338031409879, - "c5": 5.479286069691905, - "c6": 5.840869651061586, - "c7": 5.709891739888521 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227469, + "c3": 7.02727693018955, + "c4": 5.621821544151647, + "c5": 4.2163661581137255, + "c6": 2.8109107720758235, + "c7": 1.4054553860379204 }, "rgb": [58, 15, 49] }, @@ -144942,23 +144942,23 @@ "year": 1751, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": -43.98439139419188, - "c2": 6.860280877884598, - "c3": -43.397136758927545, - "c4": 26.58476934551102, - "c5": 40.593508018544185, - "c6": 41.40565064724464, - "c7": 33.10412546976474 + "points": { + "c1": -44.554308186338915, + "c2": 8.342630130366722, + "c3": 18.129540747391005, + "c4": 42.99208976187511, + "c5": -31.645078522443363, + "c6": 28.021373801316315, + "c7": 31.64427292068217 }, - "vertexSeeds": { - "c1": 9.828367447324775, - "c2": 9.266809575981522, - "c3": 9.128919489921474, - "c4": 9.598999157414843, - "c5": 9.409430192831117, - "c6": 9.301221974286094, - "c7": 9.551984520580788 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116513, + "c3": 12.13592233009709, + "c4": 9.708737864077667, + "c5": 7.281553398058256, + "c6": 4.854368932038834, + "c7": 2.4271844660194106 }, "rgb": [58, 15, 49] }, @@ -144969,23 +144969,23 @@ "year": 1751, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -0.16460282735360465, - "c2": -20.758574969239454, - "c3": 8.932464553879264, - "c4": -32.86045130889585, - "c5": -18.464430888986417, - "c6": 11.5762685568589, - "c7": -12.489798543338093 + "points": { + "c1": 14.659903162965513, + "c2": 21.789554211302544, + "c3": -15.919362295866605, + "c4": -10.176290404738783, + "c5": 31.09800501394119, + "c6": -10.724194815226511, + "c7": -3.644662868108597 }, - "vertexSeeds": { - "c1": 7.480106805342976, - "c2": 6.842827751889941, - "c3": 7.185163198178677, - "c4": 7.190211793278439, - "c5": 7.082431503080269, - "c6": 6.961067619831615, - "c7": 7.066338174015574 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -144996,23 +144996,23 @@ "year": 1751, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -38.05953520899756, - "c2": -34.89302075781683, - "c3": 8.652469669319188, - "c4": 18.14072327275216, - "c5": 30.567758988236406, - "c6": 9.274189914488574, - "c7": 8.244664860342162 + "points": { + "c1": -12.36994316974372, + "c2": -33.549388110795064, + "c3": -44.82048434759233, + "c4": 23.702594019272993, + "c5": 42.222059732452564, + "c6": 6.0808525045834045, + "c7": 31.233621549524145 }, - "vertexSeeds": { - "c1": 5.685459538840149, - "c2": 5.4365814692443495, - "c3": 5.487509537763912, - "c4": 5.690567283510168, - "c5": 5.438925144524967, - "c6": 5.297061896791855, - "c7": 5.42103335143878 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945912, + "c3": 6.8654646324549295, + "c4": 5.492371705963947, + "c5": 4.119278779472946, + "c6": 2.7461858529819647, + "c7": 1.3730929264909824 }, "rgb": [222, 0, 59] }, @@ -145023,23 +145023,23 @@ "year": 1751, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 34.00302855988423, - "c2": 8.618306271272182, - "c3": -2.6871385588519345, - "c4": -2.9059077462592953, - "c5": -26.137712061000332, - "c6": 25.514088266077408, - "c7": -14.847204720798736 + "points": { + "c1": 3.6308319061258416, + "c2": -3.105098270046753, + "c3": 13.334321788179892, + "c4": -3.9557924527753556, + "c5": 16.94417632486308, + "c6": -9.868124123947752, + "c7": 10.511204008768772 }, - "vertexSeeds": { - "c1": 2.0656021073742687, - "c2": 2.331614659834257, - "c3": 2.017547846820295, - "c4": 2.182058251420982, - "c5": 2.201170001556132, - "c6": 2.2526009099540643, - "c7": 2.0552244202958834 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779472952, + "c3": 2.8432732316227463, + "c4": 2.274618585298197, + "c5": 1.7059639389736476, + "c6": 1.1373092926490984, + "c7": 0.5686546463245492 }, "rgb": [58, 15, 49] }, @@ -145050,23 +145050,23 @@ "year": 1751, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 38.07237493430236, - "c2": 23.443277582247546, - "c3": 15.611835769992815, - "c4": -18.303797814839466, - "c5": -41.330136483155016, - "c6": -38.59153374570401, - "c7": -31.083220385182607 + "points": { + "c1": 44.79214866764306, + "c2": 36.569428496086005, + "c3": 42.1479857611598, + "c4": 11.865339173440503, + "c5": 5.9190765492388095, + "c6": 0.3399073880637715, + "c7": 20.297568941712186 }, - "vertexSeeds": { - "c1": 4.824973218061764, - "c2": 4.917109768816884, - "c3": 5.245670433238505, - "c4": 5.652137931363976, - "c5": 5.659919901814318, - "c6": 5.050912703283365, - "c7": 4.088992529852551 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055476, + "c4": 5.547850208044386, + "c5": 4.160887656033289, + "c6": 2.773925104022193, + "c7": 1.3869625520110964 }, "rgb": [238, 201, 159] }, @@ -145077,23 +145077,23 @@ "year": 1751, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": -2.9463580604162942, - "c2": 13.136318786078625, - "c3": -48.88213094385968, - "c4": 17.209287435830824, - "c5": -5.582099495427201, - "c6": 12.032302352270293, - "c7": -2.908232986327789 + "points": { + "c1": -48.66765233158901, + "c2": 16.706548901031063, + "c3": 47.777203041472596, + "c4": 31.41610340837486, + "c5": -9.043779575742434, + "c6": 52.97488038112531, + "c7": 47.61404956950721 }, - "vertexSeeds": { - "c1": 7.2826421395191705, - "c2": 6.998242044570354, - "c3": 6.899354722274907, - "c4": 7.049492870798608, - "c5": 7.067060244235255, - "c6": 7.30679764847045, - "c7": 7.278160760971213 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -145104,23 +145104,23 @@ "year": 1751, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 43.8029617622461, - "c2": -39.162451063874734, - "c3": -8.951699258093981, - "c4": -32.01124838168916, - "c5": -21.514114472571695, - "c6": 33.73764397578776, - "c7": -26.73428179679899 + "points": { + "c1": -25.268368084923647, + "c2": 44.9029594219307, + "c3": 26.183711735334057, + "c4": -19.77361883100272, + "c5": -12.45494128828797, + "c6": 18.55526403144117, + "c7": 5.71243108888072 }, - "vertexSeeds": { - "c1": 7.216321684137893, - "c2": 7.160062374665717, - "c3": 7.131808503759526, - "c4": 7.217151148352106, - "c5": 7.271920305221731, - "c6": 7.359938775793689, - "c7": 7.402460009727878 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364752, + "c3": 8.830328247803983, + "c4": 7.064262598243169, + "c5": 5.298196948682399, + "c6": 3.5321312991215845, + "c7": 1.7660656495607685 }, "rgb": [77, 76, 132] }, @@ -145131,23 +145131,23 @@ "year": 1751, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -20.613871320065684, - "c2": -29.685657080535123, - "c3": 18.774457733138306, - "c4": -20.906335150833854, - "c5": -10.852885243775226, - "c6": -5.305955703781336, - "c7": 22.93568265463407 + "points": { + "c1": -18.268218587933557, + "c2": -13.479121702051035, + "c3": 5.380699670027482, + "c4": 9.172699577763574, + "c5": -16.171959113652214, + "c6": -14.443300698858742, + "c7": 32.902197319226275 }, - "vertexSeeds": { - "c1": 7.8818999621128185, - "c2": 7.720843846086811, - "c3": 7.745324451918879, - "c4": 7.503075402398807, - "c5": 7.917906697285678, - "c6": 7.585327225304246, - "c7": 7.881184222204754 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812755, + "c3": 9.662505779010642, + "c4": 7.73000462320851, + "c5": 5.7975034674063775, + "c6": 3.865002311604265, + "c7": 1.9325011558021326 }, "rgb": [222, 0, 59] }, @@ -145158,23 +145158,23 @@ "year": 1751, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": -33.13912059075584, - "c2": 23.67092877439559, - "c3": 16.553871905366435, - "c4": 30.920065306005, - "c5": 12.31756611124517, - "c6": -49.79130203378403, - "c7": -37.365089976238636 + "points": { + "c1": 10.269173376193486, + "c2": -11.774749120033903, + "c3": -24.570311467821792, + "c4": 6.681394405358851, + "c5": 20.552614071188017, + "c6": -36.25455316027562, + "c7": -15.423212423445001 }, - "vertexSeeds": { - "c1": 0.32965332113660895, - "c2": 0.36620417295284724, - "c3": 0.36649259954088464, - "c4": 0.316178796834332, - "c5": 0.33130662704313424, - "c6": 0.35204548276536757, - "c7": 0.34491327699940394 + "offsets": { + "c1": 0.6472491909385114, + "c2": 0.5547850208044387, + "c3": 0.46232085067036516, + "c4": 0.36985668053629245, + "c5": 0.27739251040221896, + "c6": 0.18492834026814622, + "c7": 0.0924641701340735 }, "rgb": [222, 0, 59] }, @@ -145185,23 +145185,23 @@ "year": 1752, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": 20.050657654848266, - "c2": 10.763369143762901, - "c3": -42.443096142631056, - "c4": -34.37515074092657, - "c5": 25.217518447699405, - "c6": -32.927529341605805, - "c7": 21.8396143466679 + "points": { + "c1": -1.734230865806346, + "c2": 50.62015630914361, + "c3": 23.4951439576446, + "c4": -52.776556448473286, + "c5": -51.295738765317665, + "c6": -49.40779933589854, + "c7": -4.849380599131784 }, - "vertexSeeds": { - "c1": 6.845062283886973, - "c2": 7.34479720700068, - "c3": 6.85819879802372, - "c4": 7.299187343127189, - "c5": 6.893710353118406, - "c6": 7.340004028667182, - "c7": 7.235163973097745 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284332, + "c3": 8.784096162736947, + "c4": 7.027276930189562, + "c5": 5.270457697642177, + "c6": 3.5136384650947696, + "c7": 1.7568192325473848 }, "rgb": [222, 0, 59] }, @@ -145212,23 +145212,23 @@ "year": 1752, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": -53.43774791131167, - "c2": -33.66245383405208, - "c3": -51.522059568767745, - "c4": -36.39627883420881, - "c5": 22.052213511576056, - "c6": 4.669440673944138, - "c7": -40.71301753213991 + "points": { + "c1": 30.740668417434648, + "c2": 4.054917832206108, + "c3": 24.294309033146703, + "c4": -55.05001861073292, + "c5": 36.30371899560559, + "c6": 10.56002331880704, + "c7": -25.30101686893559 }, - "vertexSeeds": { - "c1": 4.268801760929811, - "c2": 4.151762743796154, - "c3": 4.243563573977018, - "c4": 4.435778311603655, - "c5": 4.160413103215695, - "c6": 4.361286452744472, - "c7": 4.43040804535078 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.38002773925104, + "c3": 5.316689782709197, + "c4": 4.253351826167367, + "c5": 3.190013869625525, + "c6": 2.1266759130836834, + "c7": 1.0633379565418417 }, "rgb": [77, 76, 132] }, @@ -145239,23 +145239,23 @@ "year": 1751, "resistanceReported": true, "duration": 11318400, - "curveSeeds": { - "c1": 11.786438021940956, - "c2": 4.691437974718227, - "c3": -18.42070170082235, - "c4": 12.403076397708379, - "c5": -3.6417904695125287, - "c6": -10.220615917799574, - "c7": -2.348935880902392 + "points": { + "c1": -8.461499606614941, + "c2": -2.34805319015371, + "c3": -9.36618531423855, + "c4": -13.54688531742102, + "c5": 11.406341605258806, + "c6": 20.066977527810938, + "c7": -0.7685911793154112 }, - "vertexSeeds": { - "c1": 4.96525370271809, - "c2": 5.125771040004929, - "c3": 5.225357820957582, - "c4": 5.155745958900658, - "c5": 5.387276998503672, - "c6": 5.003250737582166, - "c7": 5.334979901775776 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221918, + "c3": 6.449375866851603, + "c4": 5.159500693481271, + "c5": 3.869625520110955, + "c6": 2.5797503467406395, + "c7": 1.2898751733703238 }, "rgb": [77, 76, 132] }, @@ -145266,23 +145266,23 @@ "year": 1751, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -8.592632090567683, - "c2": -9.576730011574785, - "c3": 30.548544151194818, - "c4": 30.80819309194601, - "c5": 26.875992101587777, - "c6": -27.75777134562644, - "c7": -13.699620291452586 + "points": { + "c1": -8.35903092796045, + "c2": -0.7009019934927494, + "c3": -33.77301126767738, + "c4": 34.21186596029585, + "c5": 8.470213657185234, + "c6": 2.3635373816314527, + "c7": -14.714615195314295 }, - "vertexSeeds": { - "c1": 2.012588973316726, - "c2": 2.0544526872906146, - "c3": 2.1271108669566363, - "c4": 2.0212288025507017, - "c5": 2.090092740528808, - "c6": 2.095094956884684, - "c7": 2.058359388426768 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450776, + "c3": 2.6121128062875654, + "c4": 2.0896902450300505, + "c5": 1.5672676837725388, + "c6": 1.0448451225150268, + "c7": 0.5224225612575151 }, "rgb": [238, 201, 159] }, @@ -145293,23 +145293,23 @@ "year": 1751, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 41.11651186896904, - "c2": -9.221923862426763, - "c3": 37.171273173545686, - "c4": -23.817318666304978, - "c5": -29.9550436043883, - "c6": -13.140172008330786, - "c7": -28.545744698897764 + "points": { + "c1": -5.375941120684196, + "c2": 34.19521875156191, + "c3": -7.1856348884396155, + "c4": -44.04088736094145, + "c5": -44.535950900592034, + "c6": -11.809360291820319, + "c7": -10.46673450838022 }, - "vertexSeeds": { - "c1": 5.014288315405113, - "c2": 4.805445398301969, - "c3": 4.757231112488508, - "c4": 4.588424911545903, - "c5": 4.736804021867991, - "c6": 5.048996239256871, - "c7": 4.804352185233949 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -145320,23 +145320,23 @@ "year": 1751, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -22.00914432284668, - "c2": 23.6479828160683, - "c3": 17.747498652807295, - "c4": -36.33039496942433, - "c5": 7.1809721197977225, - "c6": -1.3314667528047295, - "c7": 35.44133037297774 + "points": { + "c1": 6.3656412797439685, + "c2": -1.653158729311187, + "c3": 31.766663799108663, + "c4": -4.366940307866216, + "c5": -21.190861658436397, + "c6": -41.18276380146005, + "c7": 28.3961015604227 }, - "vertexSeeds": { - "c1": 1.4468814625277888, - "c2": 1.321779919592299, - "c3": 1.3986470600614083, - "c4": 1.6031753969436062, - "c5": 1.3350605286407458, - "c6": 1.3764017433496702, - "c7": 1.3072321850359154 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619972, + "c3": 2.080443828016643, + "c4": 1.664355062413314, + "c5": 1.2482662968099851, + "c6": 0.832177531206656, + "c7": 0.4160887656033271 }, "rgb": [222, 0, 59] }, @@ -145347,23 +145347,23 @@ "year": 1751, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -9.50156730187582, - "c2": 12.840346322339393, - "c3": -16.346862236631548, - "c4": -29.68421286294562, - "c5": -23.193378241822828, - "c6": -27.49618215886816, - "c7": -2.5469970657220102 + "points": { + "c1": 19.574251494273753, + "c2": -13.412106353867948, + "c3": -10.116414421976305, + "c4": 7.665053900876337, + "c5": -27.74606689824259, + "c6": 21.309864893235954, + "c7": 16.367508219222273 }, - "vertexSeeds": { - "c1": 6.094756965303743, - "c2": 6.39781371152214, - "c3": 6.235960770894382, - "c4": 6.111815444648042, - "c5": 6.294141735642395, - "c6": 6.423684529453345, - "c7": 6.362678180350552 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353686, + "c3": 7.674526121128048, + "c4": 6.139620896902445, + "c5": 4.604715672676843, + "c6": 3.0698104484512396, + "c7": 1.534905224225603 }, "rgb": [238, 201, 159] }, @@ -145374,23 +145374,23 @@ "year": 1751, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 17.300765470531235, - "c2": 21.46977376871067, - "c3": 14.304045513813296, - "c4": 21.751096711820704, - "c5": 16.85620554852832, - "c6": -24.62340344549707, - "c7": -15.555480233353384 + "points": { + "c1": -15.982765325737464, + "c2": 29.29323470551133, + "c3": -6.244906129779391, + "c4": -18.72090254515817, + "c5": -19.96974711758508, + "c6": -9.606214302658085, + "c7": -3.3633777130286404 }, - "vertexSeeds": { - "c1": 4.729111502547732, - "c2": 4.5026540841487, - "c3": 4.7690627742216884, - "c4": 5.259181733720123, - "c5": 4.690592420954844, - "c6": 4.762746734781273, - "c7": 4.676959354727185 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -145401,23 +145401,23 @@ "year": 1751, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 36.44245833267596, - "c2": -28.24109527879915, - "c3": -32.00332694769979, - "c4": 37.91795973726175, - "c5": -43.42641281112164, - "c6": -43.26038543907514, - "c7": 33.633070519116096 + "points": { + "c1": 11.791363356490749, + "c2": -0.7132052819969559, + "c3": 36.70074439091031, + "c4": -8.73390681746968, + "c5": -28.27365899207062, + "c6": 6.66164427868749, + "c7": -3.9305907619373173 }, - "vertexSeeds": { - "c1": 11.178796127153108, - "c2": 11.446896383198707, - "c3": 11.943659640053765, - "c4": 11.3749888948155, - "c5": 11.824341704667518, - "c6": 11.714127921323298, - "c7": 11.677061910478928 + "offsets": { + "c1": 20, + "c2": 17.142857142857142, + "c3": 14.285714285714286, + "c4": 11.428571428571427, + "c5": 8.571428571428571, + "c6": 5.7142857142857135, + "c7": 2.8571428571428568 }, "rgb": [86, 146, 138] }, @@ -145428,23 +145428,23 @@ "year": 1751, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 27.381635089642742, - "c2": 0.560904473047735, - "c3": -9.483597391989484, - "c4": -1.8375950540496788, - "c5": 27.28189729089815, - "c6": -8.009686654379301, - "c7": 27.706779859685625 + "points": { + "c1": -27.042244597396017, + "c2": 22.639219654216937, + "c3": -8.077176497565429, + "c4": -18.271707640549824, + "c5": -21.399739976437434, + "c6": 12.465444271751934, + "c7": -1.6901378765646626 }, - "vertexSeeds": { - "c1": 7.139763025905477, - "c2": 7.210268378317864, - "c3": 7.41878441070259, - "c4": 7.475650675471267, - "c5": 7.105925313391109, - "c6": 7.190360883460965, - "c7": 7.166361958017095 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -145455,23 +145455,23 @@ "year": 1751, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 29.073566360354825, - "c2": 21.771295447416044, - "c3": 3.042059391193497, - "c4": -27.888466025902403, - "c5": -27.774930886230315, - "c6": 10.66658514532223, - "c7": -17.889776728381456 + "points": { + "c1": -34.89405105991416, + "c2": 32.013391605287495, + "c3": -8.278901163104859, + "c4": 4.783268284228768, + "c5": -14.44437644400061, + "c6": -26.92333788406119, + "c7": 13.952571956417138 }, - "vertexSeeds": { - "c1": 1.4965135809126777, - "c2": 1.5922932225822204, - "c3": 1.4821061720160973, - "c4": 1.5264360087813251, - "c5": 1.5686807710256647, - "c6": 1.502566585851922, - "c7": 1.3879355730039278 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [77, 76, 132] }, @@ -145482,23 +145482,23 @@ "year": 1751, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -19.137959000148417, - "c2": 21.96599344624777, - "c3": -26.002814769738865, - "c4": 3.2776012711886686, - "c5": 10.651251113180404, - "c6": 5.070067913667611, - "c7": -15.397033852134015 + "points": { + "c1": -8.722461923922666, + "c2": -9.901856730324635, + "c3": -26.483046868747522, + "c4": 19.04435262343593, + "c5": -16.71915274520518, + "c6": 4.084924522955159, + "c7": -17.882854538015536 }, - "vertexSeeds": { - "c1": 2.2081165632468895, - "c2": 2.1931811306373574, - "c3": 2.1799087637376564, - "c4": 2.211430463454966, - "c5": 2.304329044788331, - "c6": 2.2297386756526825, - "c7": 2.3420871729277124 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070747, + "c3": 2.8201571890892265, + "c4": 2.256125751271382, + "c5": 1.6920943134535373, + "c6": 1.128062875635689, + "c7": 0.5640314378178445 }, "rgb": [86, 146, 138] }, @@ -145509,23 +145509,23 @@ "year": 1751, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -28.883027196991446, - "c2": -1.1425981745366798, - "c3": 7.440452750812895, - "c4": -27.10630118312902, - "c5": -15.037260707964109, - "c6": 7.644723244928969, - "c7": -12.338421869136756 + "points": { + "c1": -38.808529306202644, + "c2": 35.60019075459182, + "c3": 15.861929901973568, + "c4": 8.05793790606237, + "c5": -17.10833346652293, + "c6": 6.319125553060033, + "c7": -32.83581907701608 }, - "vertexSeeds": { - "c1": 6.50605547704623, - "c2": 6.36207012983745, - "c3": 6.5243576405837995, - "c4": 6.359259401198783, - "c5": 6.364604292253418, - "c6": 6.501962343998567, - "c7": 6.462766619882212 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554767, + "c3": 7.790106333795681, + "c4": 6.232085067036532, + "c5": 4.674063800277383, + "c6": 3.116042533518297, + "c7": 1.5580212667591484 }, "rgb": [222, 0, 59] }, @@ -145536,23 +145536,23 @@ "year": 1751, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -11.384791721849783, - "c2": -3.735264282376935, - "c3": 32.360169332840044, - "c4": -11.728005038784637, - "c5": -26.969910436916656, - "c6": 4.285059269202506, - "c7": 1.569656006705472 + "points": { + "c1": -9.9936595967668, + "c2": -26.644270907640575, + "c3": -1.1009576750186767, + "c4": -6.908952718804443, + "c5": 22.742200831127136, + "c6": 13.078867166458323, + "c7": -35.74777147113124 }, - "vertexSeeds": { - "c1": 2.7910918196193957, - "c2": 2.640354510026293, - "c3": 2.833846719945775, - "c4": 2.574820057155254, - "c5": 2.736127931723135, - "c6": 2.7026872705877505, - "c7": 2.708316111199965 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [58, 15, 49] }, @@ -145563,23 +145563,23 @@ "year": 1751, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -38.56145700793445, - "c2": 16.321358638132928, - "c3": -0.5716041539889076, - "c4": 4.3852724246440005, - "c5": 27.611940467320558, - "c6": -34.828308034137876, - "c7": 41.1534483931439 + "points": { + "c1": -13.014516575908793, + "c2": 15.240407278396567, + "c3": -44.007336941787855, + "c4": -45.21377412112332, + "c5": 15.30826848591645, + "c6": -16.93307419120885, + "c7": -14.825383721743364 }, - "vertexSeeds": { - "c1": 2.1145968086270175, - "c2": 1.9520439361740887, - "c3": 2.1483344002590803, - "c4": 1.9817808174765859, - "c5": 2.0134707264864296, - "c6": 2.1090680589288153, - "c7": 1.933515779321699 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.588996763754045, + "c4": 2.071197411003236, + "c5": 1.5533980582524272, + "c6": 1.035598705501618, + "c7": 0.517799352750809 }, "rgb": [77, 76, 132] }, @@ -145590,23 +145590,23 @@ "year": 1752, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": -44.99777592853524, - "c2": 41.71178768858328, - "c3": 0.12575833391991154, - "c4": -43.06230550445799, - "c5": 43.83108766803165, - "c6": 41.56634477290172, - "c7": 1.3149600412165938 + "points": { + "c1": -41.53700264326048, + "c2": 39.68388311296217, + "c3": -39.62479570194717, + "c4": -31.43860209136852, + "c5": -14.297502854852418, + "c6": -21.54693177379817, + "c7": -34.7413103309561 }, - "vertexSeeds": { - "c1": 5.010586323183327, - "c2": 4.895264765996971, - "c3": 4.764930719008457, - "c4": 4.699901079760873, - "c5": 4.541981679155698, - "c6": 4.519749922480333, - "c7": 4.975863558837828 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.2676837725381365, + "c3": 6.056403143781785, + "c4": 4.845122515025428, + "c5": 3.633841886269071, + "c6": 2.422561257512714, + "c7": 1.211280628756357 }, "rgb": [77, 76, 132] }, @@ -145617,23 +145617,23 @@ "year": 1751, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 29.709740335116436, - "c2": 31.553641090657436, - "c3": -0.9045555599183999, - "c4": -0.6713241592056747, - "c5": 19.869183011469516, - "c6": -29.001586547509778, - "c7": -23.892988914787573 + "points": { + "c1": 38.77297259974395, + "c2": 27.640412942061403, + "c3": -39.37617250084617, + "c4": -32.631430461731696, + "c5": 33.41030792357664, + "c6": 20.600131691776845, + "c7": 16.31066668440954 }, - "vertexSeeds": { - "c1": 3.204880875475263, - "c2": 3.2575055719338577, - "c3": 3.2532580602547685, - "c4": 3.216033322411838, - "c5": 3.2475255020461478, - "c6": 3.2493634948676586, - "c7": 3.2584302701637693 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.6879334257975, + "c3": 3.9066111881645793, + "c4": 3.125288950531658, + "c5": 2.3439667128987374, + "c6": 1.5626444752658422, + "c7": 0.7813222376329211 }, "rgb": [58, 15, 49] }, @@ -145644,23 +145644,23 @@ "year": 1751, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -34.98742605994091, - "c2": -26.922147645531304, - "c3": -25.60490978670115, - "c4": 9.773753098128068, - "c5": 37.47260562715307, - "c6": 16.844410398742554, - "c7": 21.938381305511363 + "points": { + "c1": -37.85728220175397, + "c2": -30.01367867913236, + "c3": -33.40266310454988, + "c4": 36.93281361461062, + "c5": 26.584019996217677, + "c6": -30.23585154243714, + "c7": -16.40871951547556 }, - "vertexSeeds": { - "c1": 2.5488715320541435, - "c2": 2.887111846856159, - "c3": 2.6530769237136993, - "c4": 2.501188167063067, - "c5": 2.753440127283475, - "c6": 2.663497228215753, - "c7": 2.8918475464969156 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.2718446601941755, + "c3": 3.5598705501618135, + "c4": 2.847896440129452, + "c5": 2.1359223300970904, + "c6": 1.4239482200647233, + "c7": 0.7119741100323617 }, "rgb": [58, 15, 49] }, @@ -145671,23 +145671,23 @@ "year": 1751, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -28.0265921358953, - "c2": 6.926847378394939, - "c3": -19.344806323035062, - "c4": 13.640566954765035, - "c5": -20.46724055463831, - "c6": -28.30534140030425, - "c7": -16.90351799056528 + "points": { + "c1": 1.7511928801150916, + "c2": 0.5878701861713509, + "c3": -22.41250171878859, + "c4": -29.865656922855607, + "c5": 9.639688415420238, + "c6": -37.397728560519994, + "c7": 12.32436851743359 }, - "vertexSeeds": { - "c1": 4.8214988896652375, - "c2": 4.90687240035739, - "c3": 4.658254319764584, - "c4": 5.2553126138717365, - "c5": 4.877705107111678, - "c6": 5.079210257436817, - "c7": 5.14911336783572 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -145698,23 +145698,23 @@ "year": 1751, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -13.845286459793662, - "c2": 11.253512775707591, - "c3": 7.1458942608134635, - "c4": 16.298247074020352, - "c5": 6.6343518392228304, - "c6": -16.64654219336453, - "c7": -7.666366019181439 + "points": { + "c1": 26.192376259040245, + "c2": 13.500869615119043, + "c3": 24.829066110041317, + "c4": 17.985907366774292, + "c5": -16.38795042457579, + "c6": 8.003393198387627, + "c7": -5.908370704883541 }, - "vertexSeeds": { - "c1": 4.2245779291220575, - "c2": 4.742011074607046, - "c3": 4.441696798856787, - "c4": 4.964846594349917, - "c5": 4.4921507909342555, - "c6": 4.241616751339431, - "c7": 4.817312601250036 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -145725,23 +145725,23 @@ "year": 1751, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 23.895063894821234, - "c2": -10.39126052886143, - "c3": 0.9741379823026222, - "c4": -26.01916079347799, - "c5": 23.815161713452305, - "c6": -27.963377134638105, - "c7": 9.91848541579283 + "points": { + "c1": 7.099763062661658, + "c2": -25.77077019144135, + "c3": -29.349376906846285, + "c4": 5.444355354191735, + "c5": -6.317149027075253, + "c6": 17.672306346483353, + "c7": -14.79961921948387 }, - "vertexSeeds": { - "c1": 2.8699228322999777, - "c2": 2.64412409913228, - "c3": 2.8006608929999546, - "c4": 2.6030237794566684, - "c5": 2.763502305267439, - "c6": 2.6765887864229714, - "c7": 2.7143208364511624 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073506, + "c3": 3.490522422561261, + "c4": 2.792417938049007, + "c5": 2.094313453536753, + "c6": 1.3962089690245074, + "c7": 0.6981044845122537 }, "rgb": [238, 201, 159] }, @@ -145752,23 +145752,23 @@ "year": 1752, "resistanceReported": false, "duration": 44841600, - "curveSeeds": { - "c1": 1.0358879270243477, - "c2": -7.343281792697901, - "c3": 55.630448903487135, - "c4": -36.00182205111298, - "c5": 21.721021094651974, - "c6": -1.5280651419387041, - "c7": -42.79611170229742 + "points": { + "c1": 24.908302308149942, + "c2": -58.7978461219728, + "c3": -32.274623875118614, + "c4": 31.801552525350175, + "c5": 29.9194572653181, + "c6": 33.84016550294176, + "c7": -9.784845401401391 }, - "vertexSeeds": { - "c1": 5.799828033019514, - "c2": 5.832554294283542, - "c3": 5.249923857961163, - "c4": 5.20394189141697, - "c5": 5.148942466629523, - "c6": 5.440600301278436, - "c7": 5.662277354538562 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147016, + "c3": 6.9810448451225104, + "c4": 5.584835876098019, + "c5": 4.188626907073514, + "c6": 2.7924179380490095, + "c7": 1.3962089690245048 }, "rgb": [238, 201, 159] }, @@ -145779,23 +145779,23 @@ "year": 1752, "resistanceReported": false, "duration": 60393600, - "curveSeeds": { - "c1": -47.64595263895326, - "c2": 32.8598235066373, - "c3": 23.596032474218063, - "c4": -34.64314402026981, - "c5": -45.195736610744646, - "c6": 44.58567682059889, - "c7": -6.301668081241672 + "points": { + "c1": -10.52346250365305, + "c2": -70.82113302458086, + "c3": 50.26385666803414, + "c4": -55.21271741086887, + "c5": -58.334315253570715, + "c6": 41.039652411104655, + "c7": 47.65587155617084 }, - "vertexSeeds": { - "c1": 4.459849293391353, - "c2": 4.256301422757833, - "c3": 4.336838589610454, - "c4": 4.4289852230160385, - "c5": 4.368011173176594, - "c6": 4.562973783430078, - "c7": 4.314773915612926 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.68515950069348, + "c3": 5.570966250577899, + "c4": 4.456773000462317, + "c5": 3.3425797503467445, + "c6": 2.228386500231163, + "c7": 1.1141932501155816 }, "rgb": [222, 0, 59] }, @@ -145806,23 +145806,23 @@ "year": 1752, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": -46.69837169461164, - "c2": -26.991343237931964, - "c3": 20.207213205160556, - "c4": -20.184302626376514, - "c5": -2.778312239297243, - "c6": 20.035170539321285, - "c7": -27.8804983344446 + "points": { + "c1": -29.028268618451463, + "c2": -39.097893253914066, + "c3": 17.1370882437688, + "c4": 16.060141328175504, + "c5": 26.50322808038628, + "c6": 7.452944778531972, + "c7": 18.063440231880307 }, - "vertexSeeds": { - "c1": 6.666040409293203, - "c2": 6.051146893217692, - "c3": 6.55015750020424, - "c4": 6.321325214376877, - "c5": 5.992979222422907, - "c6": 6.375404092456962, - "c7": 6.674455816407171 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876561, + "c3": 7.975034674063801, + "c4": 6.380027739251041, + "c5": 4.785020804438281, + "c6": 3.1900138696255205, + "c7": 1.5950069348127602 }, "rgb": [58, 15, 49] }, @@ -145833,23 +145833,23 @@ "year": 1751, "resistanceReported": false, "duration": 5097600, - "curveSeeds": { - "c1": 9.020708586206574, - "c2": 2.0482586152406164, - "c3": -4.747710554052551, - "c4": -11.931347237891066, - "c5": 11.932513198063354, - "c6": -3.726605336303546, - "c7": -2.461566916300235 + "points": { + "c1": 3.1332909710487016, + "c2": 2.3837488750064715, + "c3": -10.674745954569268, + "c4": -14.81779511949381, + "c5": 13.062068540194005, + "c6": -1.2351417010524273, + "c7": -2.222697343455156 }, - "vertexSeeds": { - "c1": 2.0484042305109784, - "c2": 2.1932166072563666, - "c3": 2.11990143067516, - "c4": 1.9991831436049832, - "c5": 2.243383711243362, - "c6": 2.0455044763939534, - "c7": 2.032095921497335 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779472952, + "c3": 2.8432732316227463, + "c4": 2.274618585298197, + "c5": 1.7059639389736476, + "c6": 1.1373092926490984, + "c7": 0.5686546463245492 }, "rgb": [58, 15, 49] }, @@ -145860,23 +145860,23 @@ "year": 1752, "resistanceReported": false, "duration": 45964800, - "curveSeeds": { - "c1": 16.025291288902665, - "c2": -35.855818682930824, - "c3": 60.214154998275234, - "c4": -46.46012532303983, - "c5": 58.098987635239496, - "c6": -36.24459609113049, - "c7": -43.05226097751286 + "points": { + "c1": -56.07097533575749, + "c2": 45.85807792755136, + "c3": -9.678653088659303, + "c4": -40.8900478796329, + "c5": 20.296043500996362, + "c6": 9.047536531948637, + "c7": -44.53012031873976 }, - "vertexSeeds": { - "c1": 1.1224824780200082, - "c2": 1.2037989045695603, - "c3": 1.0901381273417208, - "c4": 1.1646447397017181, - "c5": 1.1247041477591995, - "c6": 1.1299082677392909, - "c7": 1.1332430694258229 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144236, + "c3": 1.5025427646786873, + "c4": 1.2020342117429492, + "c5": 0.9015256588072127, + "c6": 0.6010171058714746, + "c7": 0.3005085529357381 }, "rgb": [86, 146, 138] }, @@ -145887,23 +145887,23 @@ "year": 1752, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": 9.647294950128426, - "c2": -15.199161330136008, - "c3": -1.8008341943309532, - "c4": 21.658138954375943, - "c5": 12.551578545504157, - "c6": 10.727208646849022, - "c7": -3.5453869365903117 + "points": { + "c1": 22.056728664568226, + "c2": -10.089661249047545, + "c3": 42.90881480706946, + "c4": -17.586178715823372, + "c5": -28.549714837537948, + "c6": -1.356164889577407, + "c7": 25.107495794589354 }, - "vertexSeeds": { - "c1": 1.1714899985785772, - "c2": 1.1601153867186482, - "c3": 1.141656293985927, - "c4": 0.9558028714073601, - "c5": 1.0029738770334704, - "c6": 1.1268135861467492, - "c7": 1.0631791430779467 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742022, + "c3": 1.4794267221451687, + "c4": 1.1835413777161348, + "c5": 0.8876560332871011, + "c6": 0.5917706888580674, + "c7": 0.2958853444290337 }, "rgb": [77, 76, 132] }, @@ -145914,23 +145914,23 @@ "year": 1752, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -44.0767961445754, - "c2": -1.4925499977922172, - "c3": -6.835345695947936, - "c4": -12.97712317448628, - "c5": -21.563908349097883, - "c6": 18.286210007948497, - "c7": -9.577981058481335 + "points": { + "c1": 5.806794375112716, + "c2": 32.81570914473737, + "c3": -23.00356889956952, + "c4": -5.115779033266648, + "c5": 5.14308413257902, + "c6": 33.090734272983596, + "c7": 5.103448638770828 }, - "vertexSeeds": { - "c1": 0.7998828449341121, - "c2": 0.7610844172102358, - "c3": 0.806999074220725, - "c4": 0.8618408896354605, - "c5": 0.8577306498293974, - "c6": 0.7575076181738194, - "c7": 0.7421016914852171 + "offsets": { + "c1": 1.5210355987055015, + "c2": 1.3037447988904294, + "c3": 1.0864539990753574, + "c4": 0.8691631992602867, + "c5": 0.6518723994452147, + "c6": 0.4345815996301427, + "c7": 0.21729079981507202 }, "rgb": [222, 0, 59] }, @@ -145941,23 +145941,23 @@ "year": 1752, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": 28.556695786260434, - "c2": -39.01891231917154, - "c3": -6.230913336722402, - "c4": -29.33118837888562, - "c5": -9.801346378756655, - "c6": -1.5120603456021158, - "c7": -3.9280529576411922 + "points": { + "c1": -33.186496855000556, + "c2": 23.231263863845797, + "c3": -52.76142570135272, + "c4": 5.035152711955618, + "c5": -26.55318933800738, + "c6": 13.943353187787281, + "c7": -28.349543798830616 }, - "vertexSeeds": { - "c1": 2.4356227206370824, - "c2": 2.3319993979501907, - "c3": 2.2903712389621496, - "c4": 2.3360599738514387, - "c5": 2.2989950094824563, - "c6": 2.3539880757609346, - "c7": 2.474432513949144 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288477, + "c3": 3.005085529357372, + "c4": 2.4040684234859, + "c5": 1.8030513176144238, + "c6": 1.202034211742948, + "c7": 0.601017105871472 }, "rgb": [222, 0, 59] }, @@ -145968,23 +145968,23 @@ "year": 1752, "resistanceReported": false, "duration": 45964800, - "curveSeeds": { - "c1": -9.295256194800615, - "c2": -8.300832516733053, - "c3": -46.94285069404379, - "c4": 31.60562321689109, - "c5": -42.92529569125794, - "c6": -6.930750773455671, - "c7": 18.098866317006824 + "points": { + "c1": 27.286356665958465, + "c2": -17.35428447411548, + "c3": 38.36722376693831, + "c4": 12.23070264732678, + "c5": 56.61974513456222, + "c6": 54.86039858724499, + "c7": 38.88338291506264 }, - "vertexSeeds": { - "c1": 5.738781793607927, - "c2": 5.639344464752598, - "c3": 5.932491456988005, - "c4": 5.892840329668283, - "c5": 5.482542263797442, - "c6": 5.980636704712665, - "c7": 5.509111519335166 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [238, 201, 159] }, @@ -145995,23 +145995,23 @@ "year": 1752, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": -33.80669386094479, - "c2": -37.84634216686401, - "c3": 36.508963108210075, - "c4": 39.20386389645697, - "c5": -9.214635293917993, - "c6": 58.49263267300605, - "c7": 23.644598790203837 + "points": { + "c1": -24.85279573025808, + "c2": 55.128217357465026, + "c3": 59.31237146521644, + "c4": -14.008228981525498, + "c5": -44.21327177913444, + "c6": 54.984095638202014, + "c7": 40.9451764407112 }, - "vertexSeeds": { - "c1": 1.3510546236284322, - "c2": 1.505012633113524, - "c3": 1.528966441480391, - "c4": 1.4943023757041936, - "c5": 1.450523906995671, - "c6": 1.3666015057968819, - "c7": 1.4516740765953462 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [238, 201, 159] }, @@ -146022,23 +146022,23 @@ "year": 1752, "resistanceReported": true, "duration": 31363200, - "curveSeeds": { - "c1": 27.428321116164682, - "c2": -35.40623065846814, - "c3": -15.44239499704629, - "c4": -35.10877507247646, - "c5": -10.64353089356402, - "c6": -35.381705281117576, - "c7": -0.11729684253762684 + "points": { + "c1": 10.006780933560783, + "c2": 0.6930221790513684, + "c3": 44.39704559426505, + "c4": -18.090339270618312, + "c5": -35.001374915753146, + "c6": 2.108672322571138, + "c7": -45.41295599057113 }, - "vertexSeeds": { - "c1": 5.3428360324481226, - "c2": 5.3123343031232535, - "c3": 5.371627751806342, - "c4": 5.3241089382902125, - "c5": 5.5561970942833865, - "c6": 5.467890053090807, - "c7": 5.4469672805575815 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624138, + "c3": 6.680536292186787, + "c4": 5.344429033749403, + "c5": 4.008321775312052, + "c6": 2.6722145168747016, + "c7": 1.3361072584373508 }, "rgb": [58, 15, 49] }, @@ -146049,23 +146049,23 @@ "year": 1751, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 12.042839912400776, - "c2": -4.2011103511356005, - "c3": 23.4321765458475, - "c4": 10.608346147639754, - "c5": -17.733927617744964, - "c6": -24.39070406384235, - "c7": 12.804754883866554 + "points": { + "c1": 18.111994871624038, + "c2": 19.179505261635274, + "c3": 2.0253758793952237, + "c4": -25.632884290528068, + "c5": 7.352779774329964, + "c6": 15.024053567520024, + "c7": -3.442830790925271 }, - "vertexSeeds": { - "c1": 8.47121898474871, - "c2": 8.49630479449782, - "c3": 8.454044689469352, - "c4": 8.467635546336405, - "c5": 8.454298454579641, - "c6": 8.505076030076424, - "c7": 8.463215392780572 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657346, + "c3": 10.147942672214633, + "c4": 8.118354137771654, + "c5": 6.088765603328673, + "c6": 4.059177068885692, + "c7": 2.0295885344429805 }, "rgb": [222, 0, 59] }, @@ -146076,23 +146076,23 @@ "year": 1752, "resistanceReported": false, "duration": 54777600, - "curveSeeds": { - "c1": -20.24429352913085, - "c2": 25.361520307573187, - "c3": 4.424552167361668, - "c4": 9.339179699435121, - "c5": 34.654371800687386, - "c6": 48.54043757167662, - "c7": 42.8611581370957 + "points": { + "c1": 52.228806254559586, + "c2": -26.343825969423975, + "c3": 46.675541267525475, + "c4": -45.506408578250216, + "c5": 26.3850369261219, + "c6": 51.45539439416666, + "c7": -69.31109596181217 }, - "vertexSeeds": { - "c1": 10.169175709428714, - "c2": 9.505192195858454, - "c3": 9.307860766158583, - "c4": 9.66526678149233, - "c5": 10.314227987244891, - "c6": 10.215522718825115, - "c7": 10.17486258936941 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438297, + "c3": 12.320850670365227, + "c4": 9.856680536292178, + "c5": 7.39251040221913, + "c6": 4.928340268146081, + "c7": 2.464170134073031 }, "rgb": [238, 201, 159] }, @@ -146103,23 +146103,23 @@ "year": 1751, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -12.846825377929047, - "c2": 31.866373805379055, - "c3": 9.156791874725279, - "c4": -31.34134785990367, - "c5": -1.3865227176382398, - "c6": 27.519560383035852, - "c7": 27.976278421480416 + "points": { + "c1": 9.258621798503988, + "c2": 21.789773954368897, + "c3": 14.43373891188513, + "c4": 9.664039773699798, + "c5": -4.78977863124031, + "c6": 34.65349976820117, + "c7": 21.621733828940087 }, - "vertexSeeds": { - "c1": 4.9241871498148, - "c2": 5.121739462126784, - "c3": 5.137330931387375, - "c4": 4.73276302892431, - "c5": 5.055586122520825, - "c6": 4.630382181670966, - "c7": 4.431047637860692 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -146130,23 +146130,23 @@ "year": 1751, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -31.769782560976086, - "c2": -9.96567165887538, - "c3": 30.10511815401221, - "c4": 31.679190216112524, - "c5": 16.035268361739114, - "c6": 1.6296567631164578, - "c7": 16.302784760164855 + "points": { + "c1": 32.40785999434468, + "c2": 24.70046816806063, + "c3": -21.315302814525445, + "c4": 44.08678524154748, + "c5": 10.324694275080361, + "c6": 22.034144145288543, + "c7": 37.60837590642745 }, - "vertexSeeds": { - "c1": 2.8310543388341176, - "c2": 2.507928799214334, - "c3": 2.57799737746901, - "c4": 2.6039208809554624, - "c5": 2.8055933294823703, - "c6": 2.721524404404898, - "c7": 2.689442725299247 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073512, + "c3": 3.4905224225612566, + "c4": 2.792417938049008, + "c5": 2.0943134535367527, + "c6": 1.396208969024504, + "c7": 0.6981044845122487 }, "rgb": [222, 0, 59] }, @@ -146157,23 +146157,23 @@ "year": 1752, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 32.48119955619738, - "c2": 4.9161176495220715, - "c3": -17.308966481503454, - "c4": 32.98844727738526, - "c5": -41.80052862666344, - "c6": -8.788401776324378, - "c7": -27.985385456988624 + "points": { + "c1": 18.761624157599584, + "c2": 50.0973070216037, + "c3": 27.478205544063215, + "c4": -19.327210598132282, + "c5": -43.518667761931795, + "c6": -49.22237108156841, + "c7": -6.444299368704996 }, - "vertexSeeds": { - "c1": 2.5593341731608685, - "c2": 2.643028327562832, - "c3": 2.562854672988349, - "c4": 2.5104842930555726, - "c5": 2.646774188722407, - "c6": 2.4457575883842497, - "c7": 2.5610746076279343 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692556, + "c4": 2.5889967637540443, + "c5": 1.9417475728155322, + "c6": 1.2944983818770204, + "c7": 0.6472491909385085 }, "rgb": [86, 146, 138] }, @@ -146184,23 +146184,23 @@ "year": 1752, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 46.42866873064172, - "c2": 42.72022325739073, - "c3": 35.00484735122694, - "c4": -7.171041721400542, - "c5": 7.129092785460131, - "c6": -24.90784694077242, - "c7": -48.06082341687618 + "points": { + "c1": -37.47475838275164, + "c2": -15.506421684788265, + "c3": 3.7337750710807995, + "c4": -15.469021567954478, + "c5": -32.51733039643857, + "c6": -26.223087458320986, + "c7": -39.13798249304054 }, - "vertexSeeds": { - "c1": 4.764490783376332, - "c2": 5.145989052928533, - "c3": 4.668222622591837, - "c4": 5.206252235888984, - "c5": 5.0404973690840755, - "c6": 4.6972316090822055, - "c7": 4.902529508862211 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819704, + "c3": 6.2182154415164135, + "c4": 4.974572353213139, + "c5": 3.7309292649098476, + "c6": 2.487286176606565, + "c7": 1.2436430883032825 }, "rgb": [86, 146, 138] }, @@ -146211,23 +146211,23 @@ "year": 1751, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -23.86721294606173, - "c2": 11.901770068968808, - "c3": 17.272358670923737, - "c4": 11.998210551824862, - "c5": 13.914465651368758, - "c6": 11.209188056206798, - "c7": 6.91365116643717 + "points": { + "c1": 20.354426386022432, + "c2": 13.440314497206444, + "c3": -3.978399072767843, + "c4": -19.097119451946206, + "c5": 27.187610170861078, + "c6": -29.761735853446133, + "c7": 30.555331716783385 }, - "vertexSeeds": { - "c1": 5.165691012303408, - "c2": 4.203076798188928, - "c3": 4.342571380451119, - "c4": 4.234132718930108, - "c5": 5.190605541916533, - "c6": 4.179829043320508, - "c7": 4.229432880713125 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382805, + "c3": 6.541840036985668, + "c4": 5.233472029588534, + "c5": 3.9251040221914004, + "c6": 2.616736014794267, + "c7": 1.3083680073971335 }, "rgb": [222, 0, 59] }, @@ -146238,23 +146238,23 @@ "year": 1751, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -9.495052014017407, - "c2": 6.645069750085298, - "c3": -7.807382238810703, - "c4": -2.66514428035385, - "c5": -29.127648788110207, - "c6": 10.186003689763034, - "c7": -6.087569519711948 + "points": { + "c1": 4.047522873101066, + "c2": 20.961259304668985, + "c3": -20.26702452266668, + "c4": -3.205907785037045, + "c5": -0.04232223430329185, + "c6": -6.3194657797229965, + "c7": -27.204141443311322 }, - "vertexSeeds": { - "c1": 4.403126507603945, - "c2": 4.190387613229088, - "c3": 4.022503659833321, - "c4": 4.158187399634906, - "c5": 4.711629531529693, - "c6": 4.553095222619625, - "c7": 4.343595971780068 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -146265,23 +146265,23 @@ "year": 1751, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 7.804201395330487, - "c2": -29.52632905802775, - "c3": 8.73215933404191, - "c4": -28.05586965533447, - "c5": -1.1934433482301685, - "c6": 33.10015484144651, - "c7": 33.033446171001984 + "points": { + "c1": -29.317081045012188, + "c2": 9.61189302001425, + "c3": 2.3460787836419144, + "c4": 32.98099643354578, + "c5": -14.293370525082906, + "c6": 32.88271375241423, + "c7": 11.466366088299644 }, - "vertexSeeds": { - "c1": 3.458459113949308, - "c2": 3.6443241886385875, - "c3": 3.217415585980226, - "c4": 3.7384869894161463, - "c5": 3.732520532342143, - "c6": 3.5151108892806193, - "c7": 3.4507985058453197 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803049, + "c3": 4.484512251502544, + "c4": 3.5876098012020328, + "c5": 2.690707350901528, + "c6": 1.7938049006010164, + "c7": 0.8969024503005114 }, "rgb": [77, 76, 132] }, @@ -146292,23 +146292,23 @@ "year": 1751, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 18.824657967393666, - "c2": -22.958312390850704, - "c3": 25.726503353637302, - "c4": 6.159368594896538, - "c5": -15.683258625441683, - "c6": 18.115220045399735, - "c7": 22.716491648423176 + "points": { + "c1": -15.066957368767493, + "c2": -19.197856375405223, + "c3": -3.7164389265858624, + "c4": 14.493507804991982, + "c5": 25.34331823231366, + "c6": 5.825878757255939, + "c7": -10.914704498751792 }, - "vertexSeeds": { - "c1": 2.309585371161728, - "c2": 2.251856336544037, - "c3": 2.272937097867986, - "c4": 2.0434340488141913, - "c5": 2.273981426557878, - "c6": 2.048960543764783, - "c7": 2.1769660895571734 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826631, + "c3": 2.7739251040221906, + "c4": 2.219140083217754, + "c5": 1.6643550624133134, + "c6": 1.109570041608877, + "c7": 0.5547850208044405 }, "rgb": [238, 201, 159] }, @@ -146319,23 +146319,23 @@ "year": 1751, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 8.337866819362013, - "c2": 8.080057001291706, - "c3": -27.16810584704561, - "c4": -24.92127846097882, - "c5": 19.062075595471192, - "c6": -23.913117700438256, - "c7": -28.45156833001772 + "points": { + "c1": 29.211506646401702, + "c2": -33.85780336951067, + "c3": 40.3337539630986, + "c4": -17.725554656547995, + "c5": -22.585108809727735, + "c6": 31.390296157738987, + "c7": 1.955531987417828 }, - "vertexSeeds": { - "c1": 5.1658305883713265, - "c2": 4.60179760995138, - "c3": 5.075810233016002, - "c4": 4.906895863816407, - "c5": 4.9578608504423505, - "c6": 4.491166952410993, - "c7": 4.942883028381972 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.6282940360610265, + "c3": 6.356911696717523, + "c4": 5.0855293573740195, + "c5": 3.8141470180305106, + "c6": 2.542764678687007, + "c7": 1.2713823393435035 }, "rgb": [238, 201, 159] }, @@ -146346,23 +146346,23 @@ "year": 1752, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 34.8718706760087, - "c2": -1.9281689093386163, - "c3": -13.409754125515189, - "c4": -23.519052387372497, - "c5": 8.875649314123656, - "c6": 25.756052638630308, - "c7": 3.271919539206074 + "points": { + "c1": -19.213933998382196, + "c2": 22.45250093782579, + "c3": -38.93743615790397, + "c4": 4.956952388378248, + "c5": 29.184789324404875, + "c6": -27.754324676274376, + "c7": -36.03014563526795 }, - "vertexSeeds": { - "c1": 5.323834196891191, - "c2": 5.323834196891191, - "c3": 5.323834196891191, - "c4": 5.323834196891191, - "c5": 5.323834196891191, - "c6": 5.323834196891191, - "c7": 5.323834196891191 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -146373,23 +146373,23 @@ "year": 1752, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 13.171164666934686, - "c2": -17.210340145063753, - "c3": 16.047733318337457, - "c4": 39.30933832978836, - "c5": -19.351032584486806, - "c6": 43.882523714856035, - "c7": -25.789181412477944 + "points": { + "c1": -44.087876349675895, + "c2": -40.41988958412558, + "c3": -7.030844513721739, + "c4": 29.705638257114515, + "c5": -24.164086555904866, + "c6": 37.556967764735006, + "c7": 4.3827643947698505 }, - "vertexSeeds": { - "c1": 7.187487429778758, - "c2": 6.833505850886419, - "c3": 6.855664129081381, - "c4": 7.4703455000213586, - "c5": 7.020783074093504, - "c6": 7.105297800192271, - "c7": 6.869062050659383 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -146400,23 +146400,23 @@ "year": 1752, "resistanceReported": true, "duration": 28425600, - "curveSeeds": { - "c1": -27.953271882577432, - "c2": 34.3954169037719, - "c3": -10.14719992583396, - "c4": 29.394752720691585, - "c5": 17.248006565058823, - "c6": 10.948324704071553, - "c7": 11.819308052959165 + "points": { + "c1": -25.277909318804426, + "c2": 39.22269796025762, + "c3": 42.29827893649883, + "c4": 25.070781214274533, + "c5": -3.816450920304497, + "c6": 3.755311046707156, + "c7": -39.93435262776552 }, - "vertexSeeds": { - "c1": 4.182776774869619, - "c2": 4.207647629974845, - "c3": 4.342337527644411, - "c4": 4.174567864095583, - "c5": 4.206503217576424, - "c6": 4.2394343780656625, - "c7": 4.260875668526918 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.4355062413314785, + "c3": 5.3629218677762385, + "c4": 4.290337494220986, + "c5": 3.2177531206657455, + "c6": 2.145168747110493, + "c7": 1.0725843735552525 }, "rgb": [58, 15, 49] }, @@ -146427,23 +146427,23 @@ "year": 1752, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 11.596878573260994, - "c2": 14.383978436728157, - "c3": -25.362040116608178, - "c4": 22.76850184663858, - "c5": 28.824421344115322, - "c6": -3.414496492109329, - "c7": 5.782928951933819 + "points": { + "c1": -17.93762510473971, + "c2": -40.475503574419676, + "c3": -26.304575029676172, + "c4": -32.485865364874364, + "c5": -0.9875527796052381, + "c6": 29.881559992797733, + "c7": 33.60275697511186 }, - "vertexSeeds": { - "c1": 5.947726510414826, - "c2": 5.467485052857806, - "c3": 5.477338525970717, - "c4": 5.87976138696091, - "c5": 5.785494001372949, - "c6": 5.97670295933609, - "c7": 5.89504866412037 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549239, + "c3": 7.212205270457702, + "c4": 5.769764216366148, + "c5": 4.3273231622746104, + "c6": 2.884882108183074, + "c7": 1.442441054091537 }, "rgb": [86, 146, 138] }, @@ -146454,23 +146454,23 @@ "year": 1752, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -24.037510117201084, - "c2": -27.43876771225588, - "c3": -40.56377897389195, - "c4": -37.55305361680136, - "c5": -30.045321916832734, - "c6": -30.482752302463112, - "c7": -23.142489124252137 + "points": { + "c1": 4.6436716632913715, + "c2": 26.884806902979108, + "c3": -25.9266526281036, + "c4": 24.318754001123025, + "c5": 2.9184267603406724, + "c6": -14.462451099087492, + "c7": 33.93596373071311 }, - "vertexSeeds": { - "c1": 6.981779694202982, - "c2": 7.005617467070986, - "c3": 7.0414062989427, - "c4": 7.212543852457019, - "c5": 7.3088917260162525, - "c6": 7.100891927984128, - "c7": 7.208537674031606 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -146481,23 +146481,23 @@ "year": 1752, "resistanceReported": false, "duration": 40348800, - "curveSeeds": { - "c1": 33.24208896154408, - "c2": -43.05406647137633, - "c3": -19.222102974255336, - "c4": 42.79669711287118, - "c5": -44.854980973965574, - "c6": 6.055305058600446, - "c7": 42.92088987376045 + "points": { + "c1": 0.5875093306503061, + "c2": 6.916283689214858, + "c3": 3.877278239941461, + "c4": -10.929726073632231, + "c5": -47.182696195568234, + "c6": 1.670009399418113, + "c7": -11.458608342435355 }, - "vertexSeeds": { - "c1": 4.507230355493314, - "c2": 4.029282725238687, - "c3": 4.350226313827535, - "c4": 3.9790883090365123, - "c5": 4.0312557644151275, - "c6": 4.03522187308322, - "c7": 4.329103826910329 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854367, + "c3": 5.6634304207119746, + "c4": 4.530744336569578, + "c5": 3.398058252427186, + "c6": 2.265372168284789, + "c7": 1.1326860841423916 }, "rgb": [86, 146, 138] }, @@ -146508,23 +146508,23 @@ "year": 1752, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 33.70086819620596, - "c2": 5.87488449719433, - "c3": -12.223668482454631, - "c4": 19.95283248344645, - "c5": -19.881567112834812, - "c6": -7.464954232440952, - "c7": 24.114366727621572 + "points": { + "c1": 10.698108876743547, + "c2": 37.72695322718127, + "c3": -30.06968085155364, + "c4": 3.8605749511886103, + "c5": 5.045923003622832, + "c6": 38.96659866690102, + "c7": 27.887531402482452 }, - "vertexSeeds": { - "c1": 5.796408689498089, - "c2": 5.8178570528394875, - "c3": 5.835138677714907, - "c4": 5.783176623876547, - "c5": 5.803393239876587, - "c6": 5.804860212574629, - "c7": 5.8056498802727 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147002, + "c3": 6.981044845122484, + "c4": 5.584835876097964, + "c5": 4.188626907073445, + "c6": 2.792417938049038, + "c7": 1.396208969024519 }, "rgb": [222, 0, 59] }, @@ -146535,23 +146535,23 @@ "year": 1752, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -10.280793864006586, - "c2": 14.537620706900078, - "c3": 2.721468343791628, - "c4": 0.3116934772781761, - "c5": 9.337279271071985, - "c6": -18.372825054550884, - "c7": 11.043847145544476 + "points": { + "c1": -12.382482191618408, + "c2": 9.253208839726717, + "c3": 8.32650150579019, + "c4": -20.872554483491005, + "c5": -36.33115268998001, + "c6": -18.94155584701008, + "c7": -5.423783687105605 }, - "vertexSeeds": { - "c1": 5.230096551535011, - "c2": 5.445582928073973, - "c3": 5.221280011310349, - "c4": 5.2205820795682385, - "c5": 5.64631256790432, - "c6": 6.032751930420155, - "c7": 5.5105983502540345 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589455, + "c3": 7.235321312991218, + "c4": 5.78825705039297, + "c5": 4.341192787794734, + "c6": 2.894128525196485, + "c7": 1.4470642625982488 }, "rgb": [238, 201, 159] }, @@ -146562,23 +146562,23 @@ "year": 1752, "resistanceReported": true, "duration": 26092800, - "curveSeeds": { - "c1": -37.66363929752145, - "c2": 10.800445175988656, - "c3": -13.85841833503946, - "c4": 30.34535731432996, - "c5": 12.436810267177883, - "c6": -14.927339929396123, - "c7": -23.905033197607906 + "points": { + "c1": 32.31739854475869, + "c2": -12.055019207303108, + "c3": -36.57477963926889, + "c4": 36.1532177821078, + "c5": 35.94339617531783, + "c6": -39.94057032291302, + "c7": -2.3300117140145247 }, - "vertexSeeds": { - "c1": 2.215025906735751, - "c2": 2.215025906735751, - "c3": 2.215025906735751, - "c4": 2.215025906735751, - "c5": 2.215025906735751, - "c6": 2.215025906735751, - "c7": 2.215025906735751 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -146589,23 +146589,23 @@ "year": 1751, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 7.675037356262642, - "c2": -24.979942581127503, - "c3": -22.541989493452174, - "c4": 0.3007241640105818, - "c5": 6.050222076206197, - "c6": -9.741742789371177, - "c7": -5.636881625820088 + "points": { + "c1": 4.772661392500254, + "c2": 4.643302563324404, + "c3": -30.6527064160203, + "c4": -10.814629755098089, + "c5": -7.7642031524544315, + "c6": -28.45341620332971, + "c7": -29.741452528142844 }, - "vertexSeeds": { - "c1": 6.534282549053535, - "c2": 6.756477555104302, - "c3": 6.911329623795819, - "c4": 6.683013525195641, - "c5": 6.573034041308298, - "c6": 7.526686143575647, - "c7": 6.544282803461397 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766989, + "c3": 9.061488673139158, + "c4": 7.249190938511326, + "c5": 5.4368932038834945, + "c6": 3.624595469255663, + "c7": 1.8122977346278315 }, "rgb": [222, 0, 59] }, @@ -146616,23 +146616,23 @@ "year": 1752, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 26.692968631261223, - "c2": 24.864761372388145, - "c3": 8.707588684129966, - "c4": -38.11794221153215, - "c5": 35.438477754626746, - "c6": 37.97093454727482, - "c7": 18.409707159556397 + "points": { + "c1": 19.66575737814486, + "c2": 41.5101867451439, + "c3": 7.824021653639434, + "c4": 41.892587730908446, + "c5": -46.05760410523811, + "c6": -23.729491372442038, + "c7": -30.879131269296867 }, - "vertexSeeds": { - "c1": 5.697845247332067, - "c2": 5.780843184004695, - "c3": 5.62943826277687, - "c4": 5.533910709037475, - "c5": 5.7607676803168735, - "c6": 5.601368579405774, - "c7": 5.66247747650597 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066558, + "c3": 6.934812760055483, + "c4": 5.547850208044372, + "c5": 4.160887656033298, + "c6": 2.773925104022186, + "c7": 1.3869625520111115 }, "rgb": [77, 76, 132] }, @@ -146643,23 +146643,23 @@ "year": 1752, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -32.98531194406728, - "c2": 35.199487428944394, - "c3": 6.125203771767971, - "c4": -41.552675703685516, - "c5": 16.351334366171685, - "c6": -32.47131518629524, - "c7": -34.970082768596704 + "points": { + "c1": 10.522370793103612, + "c2": 0.7131278113802466, + "c3": -38.058621689940125, + "c4": -44.79907789175507, + "c5": -37.238731668835584, + "c6": 31.323954667663955, + "c7": -39.86230896523683 }, - "vertexSeeds": { - "c1": 2.6308124474062167, - "c2": 2.6825601161457246, - "c3": 2.7528445748836616, - "c4": 2.671276660841353, - "c5": 2.755952369218683, - "c6": 2.6833451278584235, - "c7": 2.740591188360704 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153955, + "c3": 3.5367545076282907, + "c4": 2.8294036061026344, + "c5": 2.1220527045769777, + "c6": 1.414701803051313, + "c7": 0.7073509015256565 }, "rgb": [86, 146, 138] }, @@ -146670,23 +146670,23 @@ "year": 1752, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -0.3108501652770954, - "c2": -15.429640254767737, - "c3": 28.47894662215397, - "c4": 8.5543382599433, - "c5": 30.385688757008523, - "c6": 4.440356459931323, - "c7": 6.518022876636124 + "points": { + "c1": -28.900488757302107, + "c2": 24.13719775513818, + "c3": -0.944043980196426, + "c4": 28.56418438465451, + "c5": -6.103294788951239, + "c6": 11.105107384918604, + "c7": 33.88974476836296 }, - "vertexSeeds": { - "c1": 2.16916971930747, - "c2": 2.127410416857198, - "c3": 2.1702785848916144, - "c4": 2.1455867074428454, - "c5": 2.14431324329484, - "c6": 2.1473955852717426, - "c7": 2.1511537829844363 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545074, + "c3": 2.612112806287559, + "c4": 2.0896902450300434, + "c5": 1.5672676837725283, + "c6": 1.0448451225150306, + "c7": 0.5224225612575153 }, "rgb": [77, 76, 132] }, @@ -146697,23 +146697,23 @@ "year": 1752, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 20.91283868569309, - "c2": 6.748366121378325, - "c3": 35.00207715525242, - "c4": -3.9246511531623227, - "c5": 29.52705303276629, - "c6": -25.31676903263993, - "c7": 21.320416053141727 + "points": { + "c1": -11.37979143956316, + "c2": -35.479035975843516, + "c3": 35.07169188358721, + "c4": -38.76166566819582, + "c5": -20.318877375541025, + "c6": 4.073885919170351, + "c7": -26.64410455848627 }, - "vertexSeeds": { - "c1": 12.765544041450777, - "c2": 12.765544041450777, - "c3": 12.765544041450777, - "c4": 12.765544041450777, - "c5": 12.765544041450777, - "c6": 12.765544041450777, - "c7": 12.765544041450777 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -146724,23 +146724,23 @@ "year": 1752, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 5.834619807349796, - "c2": 18.33532205106669, - "c3": 10.355070141074059, - "c4": 39.860407007243076, - "c5": 2.654069474773898, - "c6": -4.071708418134776, - "c7": 10.310741173167813 + "points": { + "c1": -37.49195872924688, + "c2": -23.72680258743588, + "c3": -8.073236588260812, + "c4": 45.394359790163186, + "c5": 30.724412295724314, + "c6": 11.211946871576444, + "c7": -18.095629398530996 }, - "vertexSeeds": { - "c1": 11.802709018276095, - "c2": 11.289181655528935, - "c3": 11.45452548180033, - "c4": 10.936612222180006, - "c5": 11.97995774992263, - "c6": 11.76634058733055, - "c7": 11.993503790545006 + "offsets": { + "c1": 20.097087378640776, + "c2": 17.226074895977806, + "c3": 14.35506241331484, + "c4": 11.48404993065187, + "c5": 8.613037447988903, + "c6": 5.742024965325935, + "c7": 2.8710124826629677 }, "rgb": [86, 146, 138] }, @@ -146751,23 +146751,23 @@ "year": 1752, "resistanceReported": false, "duration": 52099200, - "curveSeeds": { - "c1": 33.070386776007425, - "c2": 20.265906652826317, - "c3": 8.746088320575979, - "c4": 34.40729457629821, - "c5": 50.99668793916064, - "c6": 7.282366283897844, - "c7": -57.297491940157144 + "points": { + "c1": -62.92632327961171, + "c2": 65.10226186785664, + "c3": 51.157534129465574, + "c4": 16.237286804615906, + "c5": 23.003727329917794, + "c6": 7.881108338071826, + "c7": -43.32719103093702 }, - "vertexSeeds": { - "c1": 7.918410215192837, - "c2": 7.842474445086131, - "c3": 7.78206359961702, - "c4": 7.826314907930302, - "c5": 7.759759348816182, - "c6": 7.774843146498141, - "c7": 7.828146568404651 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450777, + "c3": 9.454461396208993, + "c4": 7.563569116967212, + "c5": 5.6726768377254295, + "c6": 3.7817845584835643, + "c7": 1.8908922792417822 }, "rgb": [58, 15, 49] }, @@ -146778,23 +146778,23 @@ "year": 1752, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": -8.551037464594621, - "c2": 25.335335609949077, - "c3": -13.182125413229727, - "c4": 24.17959242016014, - "c5": 39.5942729248897, - "c6": -2.798621176302099, - "c7": -45.81340395161182 + "points": { + "c1": 13.389610821889157, + "c2": -7.850011327474725, + "c3": 25.00148816259499, + "c4": 6.266888003970955, + "c5": -18.770503053185884, + "c6": -47.91796159200765, + "c7": 18.665271332193804 }, - "vertexSeeds": { - "c1": 14.636421286259555, - "c2": 14.62604464907879, - "c3": 14.987752725105187, - "c4": 15.059154873295391, - "c5": 15.25862759090036, - "c6": 14.16266069224762, - "c7": 15.016057328204118 + "offsets": { + "c1": 25.98705501618123, + "c2": 22.274618585298192, + "c3": 18.562182154415154, + "c4": 14.849745723532154, + "c5": 11.137309292649114, + "c6": 7.424872861766077, + "c7": 3.7124364308830384 }, "rgb": [238, 201, 159] }, @@ -146805,23 +146805,23 @@ "year": 1751, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 11.735779551452232, - "c2": 6.41194944574098, - "c3": 11.671553065434502, - "c4": 5.748426908902324, - "c5": 16.80480070183114, - "c6": 26.823478239960423, - "c7": 23.48236106485308 + "points": { + "c1": -33.02207963699017, + "c2": 4.536942356670544, + "c3": 34.20622678877261, + "c4": 31.00248410858285, + "c5": -17.96162133321723, + "c6": -25.27165063999935, + "c7": 30.48283916301301 }, - "vertexSeeds": { - "c1": 5.026640546969058, - "c2": 4.837636833999721, - "c3": 4.82678787419961, - "c4": 4.922505258469937, - "c5": 5.013169617378173, - "c6": 5.019965185202924, - "c7": 4.98211174222825 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877947, + "c3": 6.195099398982888, + "c4": 4.956079519186315, + "c5": 3.717059639389735, + "c6": 2.478039759593154, + "c7": 1.239019879796581 }, "rgb": [222, 0, 59] }, @@ -146832,23 +146832,23 @@ "year": 1751, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 1.781871044470435, - "c2": -7.13773421865281, - "c3": -15.686004540762951, - "c4": 12.298083833643894, - "c5": 3.471973304587138, - "c6": -3.135399444197141, - "c7": 22.848401810609758 + "points": { + "c1": -16.131294825440563, + "c2": -23.665871783882416, + "c3": 0.1912998831469821, + "c4": -4.2887924903463315, + "c5": 19.101709861280924, + "c6": 36.016384283817025, + "c7": -35.49900589209884 }, - "vertexSeeds": { - "c1": 4.815878761132486, - "c2": 4.428161360340998, - "c3": 4.5184946652370135, - "c4": 4.047675783288863, - "c5": 4.112364514523263, - "c6": 4.308575472271744, - "c7": 4.246159384221855 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -146859,23 +146859,23 @@ "year": 1752, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -29.425829692157784, - "c2": -30.053807594636723, - "c3": -4.2466752068354765, - "c4": 11.20146570725943, - "c5": 16.846668246993644, - "c6": 14.16652381753729, - "c7": -32.98114992725478 + "points": { + "c1": 11.106441467166064, + "c2": -13.438281311689831, + "c3": 21.676547911115193, + "c4": -17.867359624725125, + "c5": 6.2961674503412866, + "c6": -4.937312969869112, + "c7": 12.258309605747563 }, - "vertexSeeds": { - "c1": 6.292901543338318, - "c2": 6.63351044701818, - "c3": 6.853987684140954, - "c4": 7.465422369486683, - "c5": 6.8634224788501275, - "c6": 7.5130805516629104, - "c7": 6.745947068079771 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.81830790568654, + "c3": 9.01525658807212, + "c4": 7.2122052704577, + "c5": 5.40915395284327, + "c6": 3.60610263522884, + "c7": 1.80305131761442 }, "rgb": [222, 0, 59] }, @@ -146886,23 +146886,23 @@ "year": 1752, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 31.271484061225046, - "c2": 9.691879680069086, - "c3": 42.12988691057543, - "c4": -32.89144952331599, - "c5": -22.02452025588114, - "c6": 18.551217352536412, - "c7": 1.9329441450302838 + "points": { + "c1": 13.704030207825596, + "c2": 2.8787225826045955, + "c3": -20.57783087429404, + "c4": -28.189828637577502, + "c5": -20.478005547736853, + "c6": -33.48951329560386, + "c7": -11.289404916899962 }, - "vertexSeeds": { - "c1": 8.283322301256153, - "c2": 6.140148039275679, - "c3": 9.12464340314281, - "c4": 10.10321627362573, - "c5": 5.183743223156447, - "c6": 8.498821902485066, - "c7": 8.973053605515123 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116504, + "c3": 12.135922330097088, + "c4": 9.70873786407767, + "c5": 7.281553398058252, + "c6": 4.854368932038835, + "c7": 2.4271844660194173 }, "rgb": [222, 0, 59] }, @@ -146913,23 +146913,23 @@ "year": 1752, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 12.447934120575297, - "c2": 16.588107178049924, - "c3": 10.754611039749506, - "c4": 34.67939775280519, - "c5": -20.02285805506899, - "c6": 6.351737646605898, - "c7": 45.99096293825416 + "points": { + "c1": 28.374850441437857, + "c2": -2.9625732949448746, + "c3": -28.119575997968578, + "c4": -46.28073157282089, + "c5": -41.52453512080678, + "c6": -52.25566876421758, + "c7": -27.72469447249438 }, - "vertexSeeds": { - "c1": 16.192907266422388, - "c2": 16.2387704324448, - "c3": 16.35026421996354, - "c4": 17.606724447783208, - "c5": 17.275239175344744, - "c6": 17.12605267184995, - "c7": 16.744771107284777 + "offsets": { + "c1": 30.032362459546924, + "c2": 25.742024965325932, + "c3": 21.451687471104947, + "c4": 17.161349976883955, + "c5": 12.871012482662966, + "c6": 8.580674988441977, + "c7": 4.290337494220989 }, "rgb": [77, 76, 132] }, @@ -146940,23 +146940,23 @@ "year": 1752, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -19.315046605993324, - "c2": 17.52303708111541, - "c3": 28.487598993720233, - "c4": -29.376255947490613, - "c5": 34.261860223715665, - "c6": -30.77097039467003, - "c7": -9.025475888167914 + "points": { + "c1": 34.54418246157949, + "c2": 10.538002009786844, + "c3": 36.18495407981349, + "c4": 7.0600519180299415, + "c5": -12.756698784953649, + "c6": 1.1174579239874802, + "c7": 27.760265734458223 }, - "vertexSeeds": { - "c1": 5.335008469716104, - "c2": 5.401613502413641, - "c3": 5.732163625018885, - "c4": 5.862326440515001, - "c5": 5.2848330455382415, - "c6": 5.604535996399504, - "c7": 5.7861021830944 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [77, 76, 132] }, @@ -146967,23 +146967,23 @@ "year": 1752, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": 34.651168385632744, - "c2": -20.681788838856047, - "c3": -11.694053440780515, - "c4": -19.045001625116832, - "c5": 15.654033372976713, - "c6": 43.06775034250069, - "c7": -29.899978263840538 + "points": { + "c1": -29.33608749946795, + "c2": -24.60280999071634, + "c3": -23.198098356859923, + "c4": 26.812868316525027, + "c5": 48.02529057225223, + "c6": 10.389886181464782, + "c7": 25.492444066811444 }, - "vertexSeeds": { - "c1": 12.927542409533304, - "c2": 12.420583316247933, - "c3": 12.879843798304751, - "c4": 12.797353840534397, - "c5": 12.912616914203017, - "c6": 13.01096475582384, - "c7": 11.996371540317206 + "offsets": { + "c1": 21.715210355987054, + "c2": 18.613037447988898, + "c3": 15.510864539990743, + "c4": 12.408691631992587, + "c5": 9.306518723994467, + "c6": 6.204345815996311, + "c7": 3.1021729079981557 }, "rgb": [77, 76, 132] }, @@ -146994,23 +146994,23 @@ "year": 1752, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -14.711759713743213, - "c2": -9.996769427680878, - "c3": -15.020114517843854, - "c4": -32.78701917440679, - "c5": 11.059151323542913, - "c6": -24.07500296402217, - "c7": 10.67479769695749 + "points": { + "c1": -6.731976754064959, + "c2": 18.819188311938532, + "c3": 0.4152636733797124, + "c4": 0.3670416437426738, + "c5": 16.425643727374414, + "c6": 14.13525101679516, + "c7": -15.098155852632683 }, - "vertexSeeds": { - "c1": 7.311725533694319, - "c2": 6.494861429109382, - "c3": 6.531107528351581, - "c4": 7.309169873229475, - "c5": 6.090463310401447, - "c6": 7.180017227478405, - "c7": 6.347477617764043 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.95700416088766, + "c3": 9.130836800739718, + "c4": 7.304669440591771, + "c5": 5.47850208044383, + "c6": 3.652334720295889, + "c7": 1.8261673601479407 }, "rgb": [86, 146, 138] }, @@ -147021,23 +147021,23 @@ "year": 1752, "resistanceReported": false, "duration": 42422400, - "curveSeeds": { - "c1": 53.1276128744307, - "c2": 11.786575106063985, - "c3": -0.566416241102786, - "c4": -31.725508016409854, - "c5": 31.716383891570054, - "c6": 46.026858392121305, - "c7": 2.2909934646689223 + "points": { + "c1": -29.188103142340633, + "c2": -28.775462332900798, + "c3": 4.79667632271638, + "c4": 10.261070402460724, + "c5": 36.347578590063556, + "c6": 0.21554735442533968, + "c7": -43.90609724035665 }, - "vertexSeeds": { - "c1": 3.823114874009011, - "c2": 4.147383679523586, - "c3": 3.876773272233971, - "c4": 4.207032886633413, - "c5": 3.9066880355412006, - "c6": 3.9831201725340266, - "c7": 3.937120090711232 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -147048,23 +147048,23 @@ "year": 1751, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 6.707702731633958, - "c2": 20.222064743666117, - "c3": 10.850387315390606, - "c4": -0.3507816415905758, - "c5": -13.646349751724259, - "c6": -19.737466948332028, - "c7": -18.1861294386781 + "points": { + "c1": -15.513511081067268, + "c2": -6.174266337601232, + "c3": -22.28899707543635, + "c4": 7.9426569267055385, + "c5": 17.92803930658914, + "c6": -20.220173500591223, + "c7": -26.050032533211205 }, - "vertexSeeds": { - "c1": 4.422304325487467, - "c2": 4.252979243882682, - "c3": 4.338546854422112, - "c4": 4.63970339333524, - "c5": 4.368652528036338, - "c6": 4.821841089160815, - "c7": 4.804374173230052 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -147075,23 +147075,23 @@ "year": 1752, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 22.983244104843436, - "c2": 39.789570310332536, - "c3": 5.536870556872984, - "c4": 4.194156928637639, - "c5": -30.088052984805614, - "c6": 39.65743996494865, - "c7": 30.76724186287798 + "points": { + "c1": 1.814882447322688, + "c2": -35.107315058586934, + "c3": -35.2460824971151, + "c4": -15.482773955142903, + "c5": 17.683374175048144, + "c6": 39.35762711197418, + "c7": 21.94381452113018 }, - "vertexSeeds": { - "c1": 3.9495435834757537, - "c2": 3.7167290629901477, - "c3": 3.9497182638382036, - "c4": 3.611375481616644, - "c5": 3.6497032732996852, - "c6": 4.0796722685850675, - "c7": 3.659691169599113 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486821, + "c3": 4.877484974572353, + "c4": 3.901987979657881, + "c5": 2.9264909847434124, + "c6": 1.9509939898289406, + "c7": 0.9754969949144722 }, "rgb": [58, 15, 49] }, @@ -147102,23 +147102,23 @@ "year": 1752, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 30.65138095098353, - "c2": 33.37019149795076, - "c3": 37.8703203185601, - "c4": -20.202275902584415, - "c5": -17.88844324066064, - "c6": 13.975334076486995, - "c7": -25.270259854771908 + "points": { + "c1": -0.09911758713759866, + "c2": 36.427035032145945, + "c3": -33.568651317979224, + "c4": -28.281400584093486, + "c5": 40.92237726067827, + "c6": -9.155166402116954, + "c7": 29.690919619366916 }, - "vertexSeeds": { - "c1": 3.495518417358943, - "c2": 3.767042553095406, - "c3": 3.662746583536379, - "c4": 3.704559454710949, - "c5": 3.786707687441945, - "c6": 3.7953343892085485, - "c7": 3.608912853061427 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703653, + "c4": 3.6985668053629244, + "c5": 2.773925104022195, + "c6": 1.8492834026814589, + "c7": 0.9246417013407294 }, "rgb": [77, 76, 132] }, @@ -147129,23 +147129,23 @@ "year": 1751, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 11.94097558430223, - "c2": -24.256838467753944, - "c3": -11.382270714543012, - "c4": 3.307202080017433, - "c5": -9.767305821894425, - "c6": 10.453682003666422, - "c7": 18.373595343717838 + "points": { + "c1": -6.906547402745851, + "c2": -5.6528730439666575, + "c3": 20.24894399195378, + "c4": 27.630391094979203, + "c5": 3.3728684875747845, + "c6": -14.321453666114053, + "c7": 17.36624166328874 }, - "vertexSeeds": { - "c1": 4.10730350426126, - "c2": 4.626802311635957, - "c3": 4.363241441041322, - "c4": 4.394915847614051, - "c5": 4.382182549864968, - "c6": 4.553808459767564, - "c7": 4.611105628642522 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773928, + "c3": 5.617198335644938, + "c4": 4.493758668515947, + "c5": 3.370319001386964, + "c6": 2.2468793342579803, + "c7": 1.1234396671289901 }, "rgb": [222, 0, 59] }, @@ -147156,23 +147156,23 @@ "year": 1753, "resistanceReported": false, "duration": 54604800, - "curveSeeds": { - "c1": -69.08127885561294, - "c2": -64.06836834520134, - "c3": 55.35518425756632, - "c4": -47.56804057837009, - "c5": -48.17964077351127, - "c6": 68.59075078018633, - "c7": -33.59987335154905 + "points": { + "c1": 41.49415648725477, + "c2": 69.62726812062017, + "c3": 51.13855496147639, + "c4": -22.59216113459042, + "c5": -32.081226085414656, + "c6": 12.314306418511919, + "c7": 31.21907849797897 }, - "vertexSeeds": { - "c1": 6.209488190797709, - "c2": 6.4542477932301985, - "c3": 5.9703294839894525, - "c4": 6.546164493568848, - "c5": 5.6746239426679805, - "c6": 5.524995234948304, - "c7": 5.947486720346239 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037445, + "c3": 8.067498844197878, + "c4": 6.4539990753583, + "c5": 4.840499306518723, + "c6": 3.226999537679145, + "c7": 1.6134997688395776 }, "rgb": [86, 146, 138] }, @@ -147183,23 +147183,23 @@ "year": 1752, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -3.44614264446313, - "c2": -17.506893100101294, - "c3": -6.741540065011726, - "c4": -34.73070751267923, - "c5": -21.29066452641215, - "c6": -4.027366287367251, - "c7": 20.603655144992352 + "points": { + "c1": -2.3735017057611003, + "c2": 3.071762181668646, + "c3": -24.56028844851052, + "c4": -11.204594184514363, + "c5": 18.04420827159317, + "c6": 17.822499577312414, + "c7": -2.0133935896095636 }, - "vertexSeeds": { - "c1": 5.978834051407016, - "c2": 5.990897700566289, - "c3": 5.922404777748848, - "c4": 6.18602978875437, - "c5": 6.392503944874918, - "c6": 6.446124244592079, - "c7": 6.524592839633062 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.76421636615812, + "c3": 8.136846971798427, + "c4": 6.509477577438747, + "c5": 4.882108183079054, + "c6": 3.2547387887193735, + "c7": 1.6273693943596803 }, "rgb": [86, 146, 138] }, @@ -147210,23 +147210,23 @@ "year": 1752, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -0.9976885658838484, - "c2": -22.01450939986279, - "c3": -24.035709139845043, - "c4": 12.225006422489255, - "c5": 3.4175042399657265, - "c6": -12.571161734246441, - "c7": 28.07307607026119 + "points": { + "c1": -23.85612498342865, + "c2": 11.158855595763931, + "c3": -12.38586992960255, + "c4": 4.117892819816419, + "c5": 15.169570187516356, + "c6": 32.62372107769704, + "c7": -8.704951057158269 }, - "vertexSeeds": { - "c1": 3.9175935389785996, - "c2": 3.8512846290241036, - "c3": 4.404383308934974, - "c4": 4.409196120038441, - "c5": 4.4465773724428805, - "c6": 4.390638061121208, - "c7": 4.094424178125985 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -147237,23 +147237,23 @@ "year": 1752, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -11.716584586669875, - "c2": 33.00941005254113, - "c3": -13.96919104230465, - "c4": -17.870599901145493, - "c5": 14.341181852036506, - "c6": 28.693157342602632, - "c7": -26.06769801101975 + "points": { + "c1": 3.33993584615326, + "c2": 12.863663110618361, + "c3": -9.09803751740277, + "c4": -9.877007650125869, + "c5": 35.535045697602555, + "c6": -18.33568610007865, + "c7": -38.113308650159375 }, - "vertexSeeds": { - "c1": 5.492770394526717, - "c2": 6.204058205225955, - "c3": 5.95008905308746, - "c4": 5.228240991956808, - "c5": 5.535267326812742, - "c6": 6.050151578591672, - "c7": 5.734360931134896 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.93203883495145, + "c3": 7.443365695792879, + "c4": 5.954692556634307, + "c5": 4.466019417475725, + "c6": 2.9773462783171434, + "c7": 1.4886731391585717 }, "rgb": [58, 15, 49] }, @@ -147264,23 +147264,23 @@ "year": 1752, "resistanceReported": true, "duration": 29462400, - "curveSeeds": { - "c1": -19.763408957003914, - "c2": -36.51973925498777, - "c3": 6.486811278818358, - "c4": -4.024618927330657, - "c5": 25.94943165042477, - "c6": -39.3400987924133, - "c7": 16.265331946709175 + "points": { + "c1": 14.243569444035629, + "c2": 30.089442608731773, + "c3": -12.820864227452855, + "c4": -13.027753912163508, + "c5": -20.564279563487908, + "c6": 5.1581271879379855, + "c7": -14.63658864894844 }, - "vertexSeeds": { - "c1": 9.49896987711265, - "c2": 10.41435204742581, - "c3": 10.78998355846695, - "c4": 8.888722127305222, - "c5": 8.778962845791517, - "c6": 8.717390015497612, - "c7": 10.48266093379344 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524272, + "c3": 12.944983818770227, + "c4": 10.35598705501618, + "c5": 7.766990291262136, + "c6": 5.17799352750809, + "c7": 2.588996763754045 }, "rgb": [238, 201, 159] }, @@ -147291,23 +147291,23 @@ "year": 1752, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 31.424054575446327, - "c2": -28.99666704711555, - "c3": 23.49872567437459, - "c4": -21.5179259669963, - "c5": -20.56401650720572, - "c6": -25.24081996648767, - "c7": 9.620321556179135 + "points": { + "c1": 14.361781015901798, + "c2": 29.927004189092365, + "c3": 10.443699784541273, + "c4": -25.551479281076553, + "c5": 17.61392059647416, + "c6": 35.40093343159911, + "c7": -23.366248485774978 }, - "vertexSeeds": { - "c1": 2.9497026734561187, - "c2": 3.2582097908780128, - "c3": 3.095146325013857, - "c4": 2.931410032557771, - "c5": 2.902627227074504, - "c6": 2.9418597347677746, - "c7": 2.893421828284473 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998615, + "c3": 4.022191400832176, + "c4": 3.2177531206657433, + "c5": 2.4133148404993046, + "c6": 1.6088765603328716, + "c7": 0.8044382801664391 }, "rgb": [77, 76, 132] }, @@ -147318,23 +147318,23 @@ "year": 1752, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 5.036765339571673, - "c2": -31.195118487046102, - "c3": 20.401688943993044, - "c4": 4.049448325385228, - "c5": 20.57179603838911, - "c6": 37.25984160996574, - "c7": -35.249828010471646 + "points": { + "c1": -12.979498296374775, + "c2": -22.95871502142261, + "c3": 24.259894766063944, + "c4": -30.174403434372657, + "c5": -12.88551623850232, + "c6": 18.72846736897035, + "c7": -4.210851631448179 }, - "vertexSeeds": { - "c1": 6.813703805734885, - "c2": 6.711100698804811, - "c3": 5.915299595253407, - "c4": 7.032257553739234, - "c5": 7.069805006683916, - "c6": 6.540212899153375, - "c7": 6.912872029587179 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [86, 146, 138] }, @@ -147345,23 +147345,23 @@ "year": 1752, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 30.781812150823903, - "c2": -12.870256278045023, - "c3": 36.05661857669538, - "c4": -20.16472295726376, - "c5": -2.207050191803809, - "c6": -43.909543277958214, - "c7": 17.123212559989874 + "points": { + "c1": 17.357804154759243, + "c2": 44.592776146818544, + "c3": -31.59139067702433, + "c4": -41.476152379013286, + "c5": 10.104106373498524, + "c6": 37.05376055622195, + "c7": -45.58309819555407 }, - "vertexSeeds": { - "c1": 10.56267753667087, - "c2": 10.013539738550401, - "c3": 9.252593977296106, - "c4": 9.94861516277788, - "c5": 9.95479147865605, - "c6": 10.071475756724091, - "c7": 10.56023285897257 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363386, + "c3": 12.852519648636157, + "c4": 10.282015718908928, + "c5": 7.711511789181687, + "c6": 5.141007859454458, + "c7": 2.570503929727229 }, "rgb": [238, 201, 159] }, @@ -147372,23 +147372,23 @@ "year": 1752, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -41.855985218047486, - "c2": -23.614038827657115, - "c3": -38.25661715148207, - "c4": 18.63579950018807, - "c5": -24.22398511576895, - "c6": 4.6843696732775015, - "c7": 7.090735547417637 + "points": { + "c1": 11.016475474314305, + "c2": -18.974708011947655, + "c3": -32.87649560847565, + "c4": 4.2216075778221835, + "c5": 6.176513491310992, + "c6": -44.01374033805166, + "c7": 12.667094674876445 }, - "vertexSeeds": { - "c1": 3.043120107179089, - "c2": 3.0187464220468905, - "c3": 3.0250033699624868, - "c4": 3.262338682632091, - "c5": 3.0835935160900645, - "c6": 3.060245315089849, - "c7": 3.3641335427739154 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280164, + "c3": 4.184003698566808, + "c4": 3.3472029588534453, + "c5": 2.510402219140082, + "c6": 1.6736014794267193, + "c7": 0.8368007397133629 }, "rgb": [238, 201, 159] }, @@ -147399,23 +147399,23 @@ "year": 1751, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 23.92656167630937, - "c2": 20.092146400314896, - "c3": 16.661103243488036, - "c4": 5.1114390004795105, - "c5": -9.491613183637174, - "c6": 7.411430046730796, - "c7": -11.223457195638831 + "points": { + "c1": -6.211576266031592, + "c2": 20.177090875941296, + "c3": -23.489837916625056, + "c4": 19.175784750530276, + "c5": -22.264408247791685, + "c6": -23.322934622438382, + "c7": -17.258240428954398 }, - "vertexSeeds": { - "c1": 7.36557852360157, - "c2": 7.480777178620109, - "c3": 7.414728085487352, - "c4": 7.6176749499619, - "c5": 7.39532885796296, - "c6": 7.504517585604761, - "c7": 7.522199957639227 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.178918169209428, + "c3": 9.315765141007851, + "c4": 7.452612112806276, + "c5": 5.589459084604699, + "c6": 3.726306056403152, + "c7": 1.863153028201576 }, "rgb": [222, 0, 59] }, @@ -147426,23 +147426,23 @@ "year": 1752, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -17.439720365629324, - "c2": 27.459357454328952, - "c3": -15.051297470981009, - "c4": 33.967724011908516, - "c5": -8.08354221313376, - "c6": -31.37158301087998, - "c7": -28.024043087911707 + "points": { + "c1": 38.73874520032898, + "c2": 16.983375702470084, + "c3": 28.33271021991736, + "c4": -35.3227794019648, + "c5": -36.182767542076185, + "c6": 18.6598147471614, + "c7": 10.40194992426143 }, - "vertexSeeds": { - "c1": 4.455079651020428, - "c2": 4.532493313387615, - "c3": 4.666465621588352, - "c4": 4.79705630613939, - "c5": 4.37258489424097, - "c6": 4.184255633187957, - "c7": 4.229367288024108 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377253, + "c3": 5.96393897364771, + "c4": 4.771151178918167, + "c5": 3.578363384188624, + "c6": 2.3855755894590858, + "c7": 1.192787794729538 }, "rgb": [77, 76, 132] }, @@ -147453,23 +147453,23 @@ "year": 1752, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -7.441288544152634, - "c2": 34.56117437543901, - "c3": -34.38519953610693, - "c4": 15.714939275760848, - "c5": 37.457495424478466, - "c6": -39.02825245621903, - "c7": -3.651510825978889 + "points": { + "c1": -20.13572887922793, + "c2": 14.685597901243732, + "c3": -34.551270731236116, + "c4": -37.372709642211944, + "c5": -3.146387362142349, + "c6": 30.765026071706217, + "c7": -40.22811476007931 }, - "vertexSeeds": { - "c1": 4.278269008226242, - "c2": 4.683966931739898, - "c3": 4.0957624707228915, - "c4": 4.120433820932872, - "c5": 4.473656102138335, - "c6": 4.27799278244605, - "c7": 4.628285467483708 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.7961165048543695, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271816, + "c6": 2.2653721682847876, + "c7": 1.1326860841423938 }, "rgb": [77, 76, 132] }, @@ -147480,23 +147480,23 @@ "year": 1752, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 23.405960491659116, - "c2": 1.2957095874173419, - "c3": -1.2047148546539788, - "c4": 15.888238274756795, - "c5": 3.725318454364448, - "c6": 24.2457151487393, - "c7": -16.85259219393923 + "points": { + "c1": 4.828898130069014, + "c2": 7.577352220044077, + "c3": 8.18715558216494, + "c4": 19.8629852024879, + "c5": 12.71878721950543, + "c6": -31.30049672099522, + "c7": 5.182424555374716 }, - "vertexSeeds": { - "c1": 4.304828016055413, - "c2": 4.074503642075619, - "c3": 4.647552362062906, - "c4": 4.5045353579811, - "c5": 4.360901075156287, - "c6": 4.65538805489912, - "c7": 4.228739274279969 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.7128987517337055, + "c3": 5.594082293111416, + "c4": 4.475265834489134, + "c5": 3.3564493758668528, + "c6": 2.237632917244564, + "c7": 1.118816458622282 }, "rgb": [77, 76, 132] }, @@ -147507,23 +147507,23 @@ "year": 1752, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 11.944490054918134, - "c2": 23.633790783631902, - "c3": 9.408875430960713, - "c4": 26.624849233306726, - "c5": -26.971836206905103, - "c6": 21.597694066321118, - "c7": -24.4509066410842 + "points": { + "c1": 13.5165408194038, + "c2": -21.620746454103987, + "c3": -17.832361219535322, + "c4": 14.514346728852928, + "c5": 4.439812033292803, + "c6": -10.312226777218651, + "c7": 6.476852870821389 }, - "vertexSeeds": { - "c1": 4.612652820766492, - "c2": 5.165583360483974, - "c3": 4.9920358324342855, - "c4": 5.1952335079669485, - "c5": 4.51748176434299, - "c6": 4.230121927887296, - "c7": 4.887767755325715 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -147534,23 +147534,23 @@ "year": 1752, "resistanceReported": true, "duration": 25574400, - "curveSeeds": { - "c1": 33.69762071563567, - "c2": 35.414260778767535, - "c3": -33.71854382590618, - "c4": 8.555905959329301, - "c5": 5.882036339665802, - "c6": -9.942132901899274, - "c7": -19.825631405282266 + "points": { + "c1": 28.525198820972655, + "c2": 23.130468109736576, + "c3": -2.5716316741539416, + "c4": -0.7650913841852258, + "c5": -31.555417271963545, + "c6": -12.774895292459874, + "c7": 15.860131418685874 }, - "vertexSeeds": { - "c1": 6.413744976726376, - "c2": 7.64314791042466, - "c3": 5.807772230652736, - "c4": 7.725313461786553, - "c5": 6.310248728485124, - "c6": 6.782662409665254, - "c7": 6.329385833382032 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.0374479889043, + "c3": 10.864539990753585, + "c4": 8.691631992602867, + "c5": 6.518723994452151, + "c6": 4.345815996301436, + "c7": 2.172907998150716 }, "rgb": [77, 76, 132] }, @@ -147561,23 +147561,23 @@ "year": 1752, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -5.488972356285316, - "c2": -35.11038328638611, - "c3": -18.674527666397218, - "c4": 28.426567988446266, - "c5": 25.605552292161335, - "c6": 22.110348629067772, - "c7": 24.00879558339291 + "points": { + "c1": 3.67431470755664, + "c2": 27.07726884678108, + "c3": -16.61162191539291, + "c4": 42.26651420956905, + "c5": -2.9791217871130797, + "c6": 7.291233836803208, + "c7": 33.76427668954297 }, - "vertexSeeds": { - "c1": 6.085586919878978, - "c2": 6.255398270792977, - "c3": 6.105199940622165, - "c4": 6.191920609507028, - "c5": 5.588575142894474, - "c6": 6.1286400689865825, - "c7": 5.6941790736524664 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.2371705963939, + "c3": 7.697642163661575, + "c4": 6.158113730929263, + "c5": 4.61858529819695, + "c6": 3.0790568654646377, + "c7": 1.5395284327323124 }, "rgb": [77, 76, 132] }, @@ -147588,23 +147588,23 @@ "year": 1752, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 3.037953218212987, - "c2": -24.78272134791776, - "c3": 8.68678078450997, - "c4": -20.701457616183784, - "c5": 4.537214601252266, - "c6": -23.05931602003425, - "c7": -26.39457545347749 + "points": { + "c1": -6.4277020895740336, + "c2": -7.909514477843381, + "c3": -11.898149551464353, + "c4": 5.505711948894579, + "c5": -6.493407796061938, + "c6": 0.637309084924329, + "c7": -8.517423793928103 }, - "vertexSeeds": { - "c1": 4.383693313077262, - "c2": 3.945353893489494, - "c3": 4.384281278778685, - "c4": 4.225332847808316, - "c5": 3.864765002203608, - "c6": 3.875392155051085, - "c7": 4.035028656644847 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -147615,23 +147615,23 @@ "year": 1752, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -39.984095150464505, - "c2": 18.547047175433867, - "c3": -32.66896487544224, - "c4": -32.67939643919609, - "c5": -30.48409492756461, - "c6": 32.98662423600368, - "c7": 21.33638119332886 + "points": { + "c1": -17.25765778189546, + "c2": -23.239647870748353, + "c3": -0.30745949040030496, + "c4": 14.603906141232798, + "c5": 21.103493921933563, + "c6": 7.2636317768752505, + "c7": -27.432195074793466 }, - "vertexSeeds": { - "c1": 2.9234935241780997, - "c2": 2.614175005933099, - "c3": 2.9243520571946506, - "c4": 2.624933099084905, - "c5": 2.8445919363169474, - "c6": 2.6085900462762113, - "c7": 2.8660472903864522 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.2995839112343965, + "c3": 3.5829865926953306, + "c4": 2.866389274156264, + "c5": 2.1497919556171983, + "c6": 1.433194637078132, + "c7": 0.716597318539066 }, "rgb": [222, 0, 59] }, @@ -147642,23 +147642,23 @@ "year": 1752, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -20.773123691536746, - "c2": -4.375229723390689, - "c3": -21.941787252284726, - "c4": -5.8047066007344625, - "c5": 29.14867326267386, - "c6": 12.29962180821584, - "c7": 7.3018455337266275 + "points": { + "c1": -19.548295530587136, + "c2": -12.3672930131664, + "c3": -30.28754247135573, + "c4": 20.210602342267087, + "c5": 22.3077401692181, + "c6": 10.261069726816686, + "c7": 31.62503090847627 }, - "vertexSeeds": { - "c1": 5.737973529735319, - "c2": 5.454660198287892, - "c3": 5.349691225964654, - "c4": 5.165142753742839, - "c5": 5.564333343384801, - "c6": 5.226139266195825, - "c7": 5.407213027966069 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945905, + "c3": 6.865464632454916, + "c4": 5.492371705963941, + "c5": 4.119278779472952, + "c6": 2.746185852981964, + "c7": 1.3730929264909884 }, "rgb": [58, 15, 49] }, @@ -147669,23 +147669,23 @@ "year": 1752, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 14.87214110343367, - "c2": 6.783128782385582, - "c3": -12.956266071505588, - "c4": 31.74389049018251, - "c5": -16.896519990211928, - "c6": -1.5419600167784182, - "c7": -18.500861774328047 + "points": { + "c1": 29.846418120143625, + "c2": 10.317166862576755, + "c3": 17.52895937658129, + "c4": 22.491072512780804, + "c5": 10.753678663834528, + "c6": -35.643644370796686, + "c7": 34.114248649152614 }, - "vertexSeeds": { - "c1": 3.4120922925377264, - "c2": 3.3196706296249294, - "c3": 3.1272582770093837, - "c4": 3.440324254691961, - "c5": 3.2583743491683403, - "c6": 3.523027198533781, - "c7": 3.5845859762092136 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [86, 146, 138] }, @@ -147696,23 +147696,23 @@ "year": 1752, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -22.414253453834103, - "c2": -36.311404526947875, - "c3": -16.747027713592324, - "c4": -30.807576418266606, - "c5": -6.401455398666521, - "c6": 27.160867128339248, - "c7": 41.2733127037185 + "points": { + "c1": -37.22906985427053, + "c2": -23.040653882065126, + "c3": -17.053424226274608, + "c4": 33.01979543028499, + "c5": 8.247408899146826, + "c6": -15.033423631915099, + "c7": -7.3406774763620035 }, - "vertexSeeds": { - "c1": 7.043689671792139, - "c2": 7.358944942081402, - "c3": 7.000493159990843, - "c4": 6.782163779216553, - "c5": 6.974663778878761, - "c6": 7.159477416021878, - "c7": 6.905727085889382 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324559, + "c3": 8.807212205270456, + "c4": 7.045769764216373, + "c5": 5.28432732316227, + "c6": 3.5228848821081864, + "c7": 1.7614424410540825 }, "rgb": [58, 15, 49] }, @@ -147723,23 +147723,23 @@ "year": 1752, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -25.133213112805173, - "c2": -6.240537137795272, - "c3": 12.830645436501669, - "c4": 16.809911663504614, - "c5": 10.141629317344595, - "c6": 1.7982402815452119, - "c7": -21.45207716140726 + "points": { + "c1": -5.201711571815544, + "c2": -11.92697706430328, + "c3": -11.884769673420053, + "c4": -31.130958546256068, + "c5": -22.125009137013034, + "c6": 4.122347736359977, + "c7": -38.12072336613736 }, - "vertexSeeds": { - "c1": 4.4642813858395645, - "c2": 4.1326569949995795, - "c3": 4.673657987676057, - "c4": 4.004113536520646, - "c5": 4.312946316811336, - "c6": 4.341471056221794, - "c7": 4.746731489822454 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.64170134073047, + "c5": 3.4812760055478487, + "c6": 2.3208506703652323, + "c7": 1.1604253351826161 }, "rgb": [86, 146, 138] }, @@ -147750,23 +147750,23 @@ "year": 1752, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 30.610915661343213, - "c2": 13.1200376958816, - "c3": -34.12045932363183, - "c4": -1.6246217734002784, - "c5": 34.49154743126839, - "c6": -1.315945323057349, - "c7": -8.435937761220561 + "points": { + "c1": 30.526787081364418, + "c2": 1.118164714351515, + "c3": -30.564123503162683, + "c4": -30.57260607176098, + "c5": 1.3555776932160555, + "c6": 24.624348993345308, + "c7": -29.358401884501923 }, - "vertexSeeds": { - "c1": 4.040113277883905, - "c2": 4.548313180132995, - "c3": 4.536951323718219, - "c4": 4.554871446247262, - "c5": 4.606171561797531, - "c6": 4.264819115075042, - "c7": 4.512434205404385 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -147777,23 +147777,23 @@ "year": 1752, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -42.834744141071056, - "c2": 34.09400117578285, - "c3": -20.29321309089587, - "c4": -32.50343959150347, - "c5": 13.975050569356789, - "c6": -13.49114293479132, - "c7": -5.943852982265682 + "points": { + "c1": 17.64893394086066, + "c2": -37.550869062125756, + "c3": 38.90623417065598, + "c4": -46.49230720614616, + "c5": -31.82435859524235, + "c6": 34.64221107299775, + "c7": -43.869408683141025 }, - "vertexSeeds": { - "c1": 6.325071810728809, - "c2": 6.339533733304196, - "c3": 6.366261337823335, - "c4": 6.344982494006818, - "c5": 6.328239605599606, - "c6": 6.345052385623787, - "c7": 6.327130096405938 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592232952, + "c3": 7.605177993527595, + "c4": 6.0841423948220354, + "c5": 4.563106796116476, + "c6": 3.042071197410917, + "c7": 1.5210355987055593 }, "rgb": [58, 15, 49] }, @@ -147804,23 +147804,23 @@ "year": 1752, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -26.574991754068034, - "c2": 32.452980985092594, - "c3": -15.275863336260908, - "c4": 16.138845239606816, - "c5": 1.2039527978244138, - "c6": 21.888844672715337, - "c7": -21.03983438320052 + "points": { + "c1": 0.2990442977035954, + "c2": -14.27753791555299, + "c3": 22.2185235416164, + "c4": -4.6327015926662085, + "c5": -20.8921733685064, + "c6": -6.630518006045026, + "c7": -18.02782693441099 }, - "vertexSeeds": { - "c1": 5.007503524458851, - "c2": 6.196022206820096, - "c3": 4.853450008860669, - "c4": 5.292312579648258, - "c5": 5.945067764613717, - "c6": 4.956307757252277, - "c7": 5.858095691392854 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233007, + "c3": 7.605177993527504, + "c4": 6.084142394822008, + "c5": 4.563106796116504, + "c6": 3.0420711974110004, + "c7": 1.521035598705504 }, "rgb": [238, 201, 159] }, @@ -147831,23 +147831,23 @@ "year": 1752, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 9.833664635562236, - "c2": 1.9211019361971964, - "c3": 22.92300755844122, - "c4": -11.558345529354686, - "c5": 11.70418271168895, - "c6": 6.625714972139839, - "c7": -8.179571105132581 + "points": { + "c1": 39.033444867868276, + "c2": -1.048215377092795, + "c3": 38.308447178247754, + "c4": 3.6739183361486596, + "c5": -36.48013891916219, + "c6": -33.46304349068329, + "c7": 25.84119502808229 }, - "vertexSeeds": { - "c1": 5.881540595139569, - "c2": 5.139493985773587, - "c3": 5.197471737980736, - "c4": 5.708309981008431, - "c5": 5.104348220191763, - "c6": 5.325317952850611, - "c7": 5.610718837735586 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [58, 15, 49] }, @@ -147858,23 +147858,23 @@ "year": 1752, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -12.744095404135798, - "c2": -30.586635511337164, - "c3": -16.325063542045417, - "c4": -19.186175486116067, - "c5": -6.891656022978339, - "c6": 37.39695871515209, - "c7": -2.443683590713512 + "points": { + "c1": 6.669714001253745, + "c2": 46.97558539000526, + "c3": -44.817604538226234, + "c4": -46.514621855677674, + "c5": 14.986756919899065, + "c6": 20.349363037404665, + "c7": 1.2239603440848938 }, - "vertexSeeds": { - "c1": 6.511969832681087, - "c2": 6.603202533629142, - "c3": 7.08311322582241, - "c4": 6.9391691386869105, - "c5": 7.041719140945051, - "c6": 6.762032487850184, - "c7": 6.7417289297610505 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841882, + "c3": 8.529819694868232, + "c4": 6.823855755894582, + "c5": 5.117891816920931, + "c6": 3.411927877947301, + "c7": 1.7059639389736505 }, "rgb": [222, 0, 59] }, @@ -147885,23 +147885,23 @@ "year": 1752, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 5.300101610391835, - "c2": 34.76492837578862, - "c3": 39.17135476890687, - "c4": -27.617370783687242, - "c5": 35.76568764573735, - "c6": -5.461575790089803, - "c7": 15.515597486394938 + "points": { + "c1": 13.774697048222784, + "c2": -11.131353197600554, + "c3": -17.492834782434723, + "c4": 19.5372127346606, + "c5": -40.07068358430133, + "c6": 3.8139773067707736, + "c7": -28.152098426919864 }, - "vertexSeeds": { - "c1": 4.644370769897382, - "c2": 4.237696139280505, - "c3": 4.512363367364321, - "c4": 4.7538138121197555, - "c5": 4.446453071217882, - "c6": 4.26324360061915, - "c7": 4.7781251666617965 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379567, + "c4": 4.623208506703648, + "c5": 3.467406380027736, + "c6": 2.311604253351824, + "c7": 1.155802126675912 }, "rgb": [86, 146, 138] }, @@ -147912,23 +147912,23 @@ "year": 1752, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -41.076856475326444, - "c2": 30.450471462244323, - "c3": -34.365553728008855, - "c4": -27.652285055577227, - "c5": -31.30171444101399, - "c6": -30.433424649009478, - "c7": -24.478688717091245 + "points": { + "c1": 38.82309973210626, + "c2": 42.292644361566005, + "c3": 15.56765566559875, + "c4": 12.900423161595512, + "c5": 6.551036253332086, + "c6": 39.77070525197719, + "c7": -30.977961752012586 }, - "vertexSeeds": { - "c1": 1.2147642736567608, - "c2": 1.1992253517450322, - "c3": 1.3056856868120013, - "c4": 1.3467524412962328, - "c5": 1.474262940768321, - "c6": 1.4108897657076231, - "c7": 1.2382978603436106 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.1359223300970873, + "c3": 1.779935275080906, + "c4": 1.4239482200647249, + "c5": 1.0679611650485437, + "c6": 0.7119741100323624, + "c7": 0.3559870550161812 }, "rgb": [77, 76, 132] }, @@ -147939,23 +147939,23 @@ "year": 1752, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 35.56768015167226, - "c2": -28.721989363869845, - "c3": 30.45857942230883, - "c4": 0.37988724660075945, - "c5": 4.111420299049634, - "c6": 4.5144142236565585, - "c7": 18.502404010749565 + "points": { + "c1": 33.09309310469776, + "c2": 33.0992382565872, + "c3": 34.82924161209259, + "c4": -36.99182728246529, + "c5": 30.632790077430116, + "c6": 9.32520333393154, + "c7": 4.12880054488501 }, - "vertexSeeds": { - "c1": 3.0297908861640455, - "c2": 2.765825866027294, - "c3": 2.8885691304647594, - "c4": 2.95338446763047, - "c5": 2.9845259792808974, - "c6": 2.991841883327532, - "c7": 2.931887475432327 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596395, + "c3": 3.791030975496992, + "c4": 3.032824780397595, + "c5": 2.2746185852981977, + "c6": 1.5164123901988005, + "c7": 0.7582061950993971 }, "rgb": [238, 201, 159] }, @@ -147966,23 +147966,23 @@ "year": 1752, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 8.91972956395474, - "c2": 12.689135315678875, - "c3": -6.819233946408197, - "c4": 13.432439103734424, - "c5": -2.0734350038182257, - "c6": 34.751367945728624, - "c7": 35.75671135432109 + "points": { + "c1": -19.699249367015316, + "c2": -7.901098483248518, + "c3": 7.02859583547653, + "c4": 39.80575190000874, + "c5": 14.38247221569695, + "c6": 20.779140958683513, + "c7": 1.1260335581620993 }, - "vertexSeeds": { - "c1": 3.5236375880974804, - "c2": 3.0315686691088937, - "c3": 3.0498218757239712, - "c4": 2.9594128038891734, - "c5": 3.3632552515261698, - "c6": 3.0649988470387894, - "c7": 3.2842874397318744 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.253351826167362, + "c4": 3.4026814609338887, + "c5": 2.5520110957004154, + "c6": 1.7013407304669421, + "c7": 0.8506703652334735 }, "rgb": [86, 146, 138] }, @@ -147993,23 +147993,23 @@ "year": 1752, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 26.004579648625636, - "c2": 27.767960033086638, - "c3": -34.32239670736312, - "c4": -27.739035355482642, - "c5": 9.658072551095195, - "c6": -0.7544058333847801, - "c7": 35.50623820331809 + "points": { + "c1": -12.020761435953077, + "c2": 21.919887063134183, + "c3": 27.88336485486471, + "c4": 27.453287303961787, + "c5": 6.174160704734398, + "c6": 14.752433709292312, + "c7": -24.377434978769376 }, - "vertexSeeds": { - "c1": 5.079339747674428, - "c2": 5.664691776231448, - "c3": 4.987850829957841, - "c4": 4.93890479869633, - "c5": 4.844018465893718, - "c6": 5.102889281181363, - "c7": 4.898905467097755 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883499, + "c5": 4.077669902912622, + "c6": 2.718446601941747, + "c7": 1.3592233009708707 }, "rgb": [77, 76, 132] }, @@ -148020,23 +148020,23 @@ "year": 1752, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -28.053919493788225, - "c2": 17.756231452488535, - "c3": -30.85453262666111, - "c4": -21.049106736524614, - "c5": -39.82805394980483, - "c6": 39.16689396393666, - "c7": -35.20037942786068 + "points": { + "c1": 6.557747790538286, + "c2": 5.831141381383759, + "c3": -36.115676244424264, + "c4": 13.840282174525086, + "c5": -42.68012122692008, + "c6": 25.780442356597845, + "c7": -16.197027261716485 }, - "vertexSeeds": { - "c1": 3.616829549256624, - "c2": 3.721415374908983, - "c3": 3.5917107687547003, - "c4": 3.3525203267115, - "c5": 3.5330697284034516, - "c6": 3.385981552458526, - "c7": 3.8158783034074464 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703652, + "c4": 3.6985668053629213, + "c5": 2.773925104022191, + "c6": 1.8492834026814606, + "c7": 0.9246417013407303 }, "rgb": [238, 201, 159] }, @@ -148047,23 +148047,23 @@ "year": 1752, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -12.245554758488144, - "c2": -5.842622308801154, - "c3": -25.412873616691364, - "c4": -15.970394203953155, - "c5": 34.07187452942841, - "c6": 12.711264299678703, - "c7": -20.91669033580635 + "points": { + "c1": -0.7141572670537073, + "c2": 36.278488171719346, + "c3": 15.875338283616458, + "c4": 8.998884943832081, + "c5": 19.426140872250855, + "c6": 9.76407716286927, + "c7": 17.074464038756616 }, - "vertexSeeds": { - "c1": 3.8120639836324086, - "c2": 3.561093247487402, - "c3": 4.294748409090693, - "c4": 3.7385547513024644, - "c5": 4.3302661775011595, - "c6": 3.437402495808791, - "c7": 3.504893974985939 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.38002773925104, + "c3": 5.316689782709201, + "c4": 4.25335182616736, + "c5": 3.1900138696255214, + "c6": 2.12667591308368, + "c7": 1.0633379565418384 }, "rgb": [58, 15, 49] }, @@ -148074,23 +148074,23 @@ "year": 1752, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": 20.715613470432388, - "c2": -10.77967594119614, - "c3": 12.168486815089267, - "c4": -16.62478736625064, - "c5": -8.970175897176315, - "c6": 4.600347497032807, - "c7": 18.605899894684313 + "points": { + "c1": -6.446658181748855, + "c2": 7.690007861268757, + "c3": -8.135373358443857, + "c4": -24.08639257948842, + "c5": 23.67074101043093, + "c6": 16.859794352857506, + "c7": -14.291854990320438 }, - "vertexSeeds": { - "c1": 2.604736258487288, - "c2": 2.540393754212516, - "c3": 2.439911761604812, - "c4": 2.6605868182391377, - "c5": 2.59717432057399, - "c6": 2.338178608390407, - "c7": 2.5380949344625043 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590844, + "c3": 3.213129912159039, + "c4": 2.570503929727229, + "c5": 1.927877947295422, + "c6": 1.2852519648636145, + "c7": 0.6426259824318072 }, "rgb": [222, 0, 59] }, @@ -148101,23 +148101,23 @@ "year": 1752, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -26.430151587379257, - "c2": -31.468468577945202, - "c3": -18.725896669198477, - "c4": 21.410722332558038, - "c5": 3.2257741858216846, - "c6": -40.45979397604453, - "c7": -15.687878642951539 + "points": { + "c1": 32.22269160342819, + "c2": 28.10469371493106, + "c3": -18.333768499135587, + "c4": -38.589933236081, + "c5": 42.39779929576082, + "c6": 3.923075295685763, + "c7": 37.38037632450842 }, - "vertexSeeds": { - "c1": 7.938061029983565, - "c2": 7.387071224871326, - "c3": 7.207564065318412, - "c4": 6.188719119243695, - "c5": 7.620435046732352, - "c6": 6.902139951657327, - "c7": 5.044976183409109 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.03883495145631, + "c3": 10.032362459546924, + "c4": 8.02588996763754, + "c5": 6.019417475728153, + "c6": 4.012944983818769, + "c7": 2.0064724919093857 }, "rgb": [86, 146, 138] }, @@ -148128,23 +148128,23 @@ "year": 1752, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 24.432054733186035, - "c2": -29.149271571652765, - "c3": 22.511981653146997, - "c4": -8.69301040841582, - "c5": -22.197510770078388, - "c6": -22.05278067740231, - "c7": 11.039761365703228 + "points": { + "c1": -20.350982400098303, + "c2": 20.36692917746749, + "c3": -3.709096267706208, + "c4": -19.93673366592056, + "c5": -33.47902936227103, + "c6": 21.290772519995784, + "c7": -30.22377844718001 }, - "vertexSeeds": { - "c1": 5.092979347082277, - "c2": 4.856646858696346, - "c3": 4.809623030017412, - "c4": 5.131964286292361, - "c5": 5.1731639096671405, - "c6": 4.941601052401222, - "c7": 5.019172662514018 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900147, + "c3": 6.264447526583446, + "c4": 5.011558021266764, + "c5": 3.7586685159500735, + "c6": 2.505779010633382, + "c7": 1.252889505316691 }, "rgb": [238, 201, 159] }, @@ -148155,23 +148155,23 @@ "year": 1752, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -39.69134332111537, - "c2": 31.32933091529901, - "c3": -31.972800362921777, - "c4": 18.6019864362788, - "c5": 19.495748820871526, - "c6": -27.49921577944295, - "c7": -4.825997606879156 + "points": { + "c1": -15.970503109780157, + "c2": 22.162147315410508, + "c3": -41.565611981665256, + "c4": 23.67410100254162, + "c5": -41.96706157704807, + "c6": -33.72740795992827, + "c7": -20.659280586568972 }, - "vertexSeeds": { - "c1": 1.7835848237725105, - "c2": 2.0623643514518495, - "c3": 1.6321473850834631, - "c4": 1.6107265130469528, - "c5": 2.02053512850488, - "c6": 1.6665703749227283, - "c7": 2.080981286370002 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244105, + "c3": 2.5427646786870093, + "c4": 2.0342117429496063, + "c5": 1.5256588072122044, + "c6": 1.0171058714748031, + "c7": 0.5085529357374016 }, "rgb": [58, 15, 49] }, @@ -148182,23 +148182,23 @@ "year": 1752, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -45.403931028360624, - "c2": 28.296523290064002, - "c3": 42.675553423817476, - "c4": 18.10639813897386, - "c5": -4.8905428506720625, - "c6": 15.866246830685313, - "c7": -42.05371940053028 + "points": { + "c1": -11.36765880094486, + "c2": -32.77737263960117, + "c3": -6.083074780885148, + "c4": 26.76731198810866, + "c5": -16.305677254141273, + "c6": -3.5489128925098044, + "c7": -47.67622417286332 }, - "vertexSeeds": { - "c1": 3.1197193590899515, - "c2": 3.1460125322424037, - "c3": 3.0924482607716715, - "c4": 3.2417377431745282, - "c5": 3.5804074131152785, - "c6": 3.1737057568021005, - "c7": 3.390432345033193 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [77, 76, 132] }, @@ -148209,23 +148209,23 @@ "year": 1752, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 23.85168309827332, - "c2": -10.676454225379715, - "c3": -16.38353466007714, - "c4": 32.27429904230058, - "c5": -27.093057994741905, - "c6": 26.79971193283034, - "c7": 18.79826543136994 + "points": { + "c1": 13.93866044147321, + "c2": -0.7912169538055025, + "c3": -9.38450032804355, + "c4": -11.331262508578245, + "c5": -33.28631388302107, + "c6": 12.098828337412492, + "c7": -28.329962538288672 }, - "vertexSeeds": { - "c1": 3.015340226129327, - "c2": 3.1114459869560602, - "c3": 3.0622000037577632, - "c4": 2.794507453643829, - "c5": 3.2027555830484697, - "c6": 2.889825474895999, - "c7": 2.8269207495517676 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.6601941747572795, + "c3": 3.883495145631069, + "c4": 3.1067961165048525, + "c5": 2.330097087378643, + "c6": 1.5533980582524263, + "c7": 0.7766990291262165 }, "rgb": [58, 15, 49] }, @@ -148236,23 +148236,23 @@ "year": 1752, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 35.68314569915215, - "c2": -3.1965302687681785, - "c3": 25.82056265282506, - "c4": 12.689108444394137, - "c5": 1.1885140152698526, - "c6": 40.313436949984435, - "c7": 44.6661946318189 + "points": { + "c1": -46.767033200870614, + "c2": -31.279839973701225, + "c3": -37.7098869389073, + "c4": -28.65334887257401, + "c5": -40.842865152779915, + "c6": -16.252576808087547, + "c7": -20.1132421634311 }, - "vertexSeeds": { - "c1": 9.436407944303753, - "c2": 10.519086477840624, - "c3": 8.998478245521884, - "c4": 9.079545667252178, - "c5": 10.187538861301006, - "c6": 10.264805601291584, - "c7": 9.109087229774017 + "offsets": { + "c1": 17.57281553398058, + "c2": 15.062413314840494, + "c3": 12.552011095700408, + "c4": 10.041608876560334, + "c5": 7.531206657420247, + "c6": 5.020804438280173, + "c7": 2.5104022191400865 }, "rgb": [238, 201, 159] }, @@ -148263,23 +148263,23 @@ "year": 1752, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -32.54763418899286, - "c2": 7.70624160837837, - "c3": 32.90964596346211, - "c4": -14.992148026199402, - "c5": -15.113470839500664, - "c6": 14.01438905339495, - "c7": -14.265887322490755 + "points": { + "c1": 24.77247709466836, + "c2": -19.079780327148384, + "c3": -19.75630974781133, + "c4": -29.074183591915347, + "c5": -22.74479820902841, + "c6": 10.457165743616159, + "c7": 5.4808868145569605 }, - "vertexSeeds": { - "c1": 2.0102724389550146, - "c2": 2.014485107981868, - "c3": 2.098070111288974, - "c4": 2.211223968350005, - "c5": 2.280278631673109, - "c6": 2.1173010530562353, - "c7": 2.012558683193968 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266304, + "c3": 2.773925104022193, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.1095700416088778, + "c7": 0.5547850208044374 }, "rgb": [238, 201, 159] }, @@ -148290,23 +148290,23 @@ "year": 1752, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 0.5412582678545874, - "c2": 8.530764197621487, - "c3": 34.34365446932715, - "c4": 2.7884628096237662, - "c5": 34.45283103829078, - "c6": 20.88767263528166, - "c7": -32.14446684834412 + "points": { + "c1": -22.485444566759753, + "c2": 14.1102162376162, + "c3": 9.326180399524873, + "c4": -9.043080477758899, + "c5": -18.257278462555632, + "c6": 33.6903770031287, + "c7": -23.536198473524124 }, - "vertexSeeds": { - "c1": 1.5002916054324738, - "c2": 1.5077341680715877, - "c3": 1.5289073211498319, - "c4": 1.5471827299522793, - "c5": 1.5193593755179555, - "c6": 1.5101663101261864, - "c7": 1.542809793444482 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257973, + "c3": 1.872399445214976, + "c4": 1.4979195561719907, + "c5": 1.123439667128993, + "c6": 0.7489597780859953, + "c7": 0.37447988904299767 }, "rgb": [86, 146, 138] }, @@ -148317,23 +148317,23 @@ "year": 1752, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 14.606622344840567, - "c2": -21.918640989716792, - "c3": 3.426440519846196, - "c4": -39.17388276194502, - "c5": 37.92794595704253, - "c6": -7.572605483505384, - "c7": 22.497799568116058 + "points": { + "c1": 35.753293114850685, + "c2": 4.378691095978503, + "c3": 38.52578804977802, + "c4": -16.63266083484696, + "c5": 11.277450565465045, + "c6": 39.43141715942425, + "c7": 30.615192414390712 }, - "vertexSeeds": { - "c1": 8.088240366369243, - "c2": 8.256978244101443, - "c3": 8.150729283724822, - "c4": 7.728938454807044, - "c5": 9.176116890640992, - "c6": 7.797810257358582, - "c7": 9.04311736594119 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.20388349514563, + "c3": 11.00323624595469, + "c4": 8.80258899676375, + "c5": 6.601941747572811, + "c6": 4.40129449838188, + "c7": 2.2006472491909306 }, "rgb": [77, 76, 132] }, @@ -148344,23 +148344,23 @@ "year": 1752, "resistanceReported": false, "duration": 8208000, - "curveSeeds": { - "c1": 13.695315953310775, - "c2": -17.3345884189717, - "c3": -15.910635541803869, - "c4": -12.840527980508572, - "c5": -16.693801149469365, - "c6": 11.153294029799039, - "c7": 17.561601926043416 + "points": { + "c1": -2.332859960979455, + "c2": 7.082605452669682, + "c3": 14.209201262899477, + "c4": 20.291054154173423, + "c5": 17.801867206226504, + "c6": 12.29195252652245, + "c7": 8.049536458078599 }, - "vertexSeeds": { - "c1": 4.383662653839743, - "c2": 4.418617607336847, - "c3": 3.811933866932277, - "c4": 4.128027370478475, - "c5": 3.9936378601626217, - "c6": 4.327124095406008, - "c7": 3.8166447277125575 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -148371,23 +148371,23 @@ "year": 1752, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": 30.579357562023425, - "c2": -34.80972246564009, - "c3": 32.39650275417946, - "c4": 9.276865947950988, - "c5": 1.2432342256407836, - "c6": -15.325702762029067, - "c7": -18.447610142713575 + "points": { + "c1": -0.9748167246582113, + "c2": -25.946892604919398, + "c3": 26.899103775102226, + "c4": -24.931406404297476, + "c5": 35.22651395984294, + "c6": -51.96419877725776, + "c7": -10.374771178152393 }, - "vertexSeeds": { - "c1": 4.2366475077855075, - "c2": 4.218194633781924, - "c3": 4.233261593415347, - "c4": 4.2470839789265185, - "c5": 4.227892793106596, - "c6": 4.240048426288976, - "c7": 4.235070943855462 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.1026352288488495, + "c3": 5.085529357373974, + "c4": 4.068423485899199, + "c5": 3.0513176144244247, + "c6": 2.0342117429496502, + "c7": 1.0171058714747745 }, "rgb": [77, 76, 132] }, @@ -148398,23 +148398,23 @@ "year": 1752, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": 27.699422538315147, - "c2": -19.135216107679916, - "c3": -26.211280935558733, - "c4": -0.6506501881845779, - "c5": -25.253776496274355, - "c6": 10.03255653476932, - "c7": -17.87258192513979 + "points": { + "c1": -25.30253120573241, + "c2": -13.464935525245089, + "c3": -27.650406436047664, + "c4": 46.322819166956364, + "c5": 21.618529748962573, + "c6": -23.63730071976363, + "c7": 32.816049860547935 }, - "vertexSeeds": { - "c1": 4.3257798614654535, - "c2": 4.3149673861201645, - "c3": 4.291889036854507, - "c4": 4.3351420997834085, - "c5": 4.273788367434221, - "c6": 4.343808227406267, - "c7": 4.3331724005611365 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.1026352288488095, + "c3": 5.0855293573740346, + "c4": 4.06842348589922, + "c5": 3.0513176144244047, + "c6": 2.0342117429496303, + "c7": 1.0171058714748151 }, "rgb": [86, 146, 138] }, @@ -148425,23 +148425,23 @@ "year": 1752, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 17.21928932614668, - "c2": 22.04277599991063, - "c3": -33.99671554484401, - "c4": -7.378966623910127, - "c5": 31.895174437900288, - "c6": 0.4552710132920552, - "c7": -1.0109374880556032 + "points": { + "c1": 35.12513309757053, + "c2": 10.552326744982565, + "c3": 35.68493062810517, + "c4": -20.828511697131507, + "c5": -34.30272244554451, + "c6": -4.465182278127543, + "c7": -17.373065808754628 }, - "vertexSeeds": { - "c1": 5.02768979879268, - "c2": 4.568664966883236, - "c3": 4.410252569129926, - "c4": 4.060559394055241, - "c5": 3.821289336891179, - "c6": 4.313813279428837, - "c7": 4.173113866626582 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457696, + "c3": 6.010171058714748, + "c4": 4.808136846971798, + "c5": 3.6061026352288503, + "c6": 2.404068423485899, + "c7": 1.2020342117429474 }, "rgb": [86, 146, 138] }, @@ -148452,23 +148452,23 @@ "year": 1752, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": -18.580902446408807, - "c2": -12.63997705360304, - "c3": 23.02991794237859, - "c4": 22.43647241038248, - "c5": 2.9024003436143815, - "c6": 16.454326027905225, - "c7": 43.70728050819936 + "points": { + "c1": -46.69273488235791, + "c2": 49.1641832849094, + "c3": 46.061473185518636, + "c4": -35.162894429260604, + "c5": 30.125142429726964, + "c6": -7.066889038710919, + "c7": -12.892485630778566 }, - "vertexSeeds": { - "c1": 5.581947119865798, - "c2": 5.8667918211068555, - "c3": 5.916634472626735, - "c4": 5.897639935057804, - "c5": 5.994757309669851, - "c6": 6.061034123680811, - "c7": 6.0036860156277125 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871021, + "c3": 7.3971336107258425, + "c4": 5.917706888580681, + "c5": 4.438280166435502, + "c6": 2.9588534442903405, + "c7": 1.479426722145179 }, "rgb": [77, 76, 132] }, @@ -148479,23 +148479,23 @@ "year": 1752, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 31.979596544723954, - "c2": -33.699222449226134, - "c3": -9.700938193519384, - "c4": -9.427769555597244, - "c5": 22.12028318786753, - "c6": 28.087870480664243, - "c7": 19.276352237792345 + "points": { + "c1": -8.227603860708218, + "c2": -32.618402874459825, + "c3": 13.746917787159141, + "c4": 23.63839868998255, + "c5": -18.58195571536044, + "c6": -21.55495885480421, + "c7": 3.812845171574189 }, - "vertexSeeds": { - "c1": 3.9383218470573547, - "c2": 4.473019962543995, - "c3": 4.57253659112412, - "c4": 4.248286758032741, - "c5": 4.584863265812984, - "c6": 4.023138807137586, - "c7": 4.559416898398705 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015259, + "c3": 5.7558945908460455, + "c4": 4.6047156726768375, + "c5": 3.4535367545076294, + "c6": 2.3023578363384165, + "c7": 1.1511789181692083 }, "rgb": [238, 201, 159] }, @@ -148506,23 +148506,23 @@ "year": 1752, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 11.996133369470904, - "c2": -41.24875515099828, - "c3": -0.01576580918174386, - "c4": -17.86925573991037, - "c5": 29.142692382769567, - "c6": 17.00371215841671, - "c7": 4.316451045187215 + "points": { + "c1": -43.63961921204255, + "c2": -34.04184598984996, + "c3": -32.69636550579803, + "c4": -25.204504641721893, + "c5": -14.080743162726627, + "c6": 16.50210874937803, + "c7": 35.62929025881975 }, - "vertexSeeds": { - "c1": 3.727324270364743, - "c2": 4.063687732630393, - "c3": 3.79558124684772, - "c4": 4.1313018616978905, - "c5": 4.131238690623265, - "c6": 3.6616473180704134, - "c7": 4.212958712910789 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808602, + "c3": 5.062413314840496, + "c4": 4.0499306518723985, + "c5": 3.037447988904301, + "c6": 2.024965325936203, + "c7": 1.012482662968098 }, "rgb": [77, 76, 132] }, @@ -148533,23 +148533,23 @@ "year": 1752, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 1.4037307731658828, - "c2": 22.59295386897577, - "c3": 9.404681680509071, - "c4": -17.10674655347415, - "c5": -0.23152577705459976, - "c6": -24.93287314650646, - "c7": 4.041206540317823 + "points": { + "c1": -15.272264449297786, + "c2": -5.322955431976023, + "c3": 18.42072472873116, + "c4": 14.189113772216842, + "c5": -23.202499868684484, + "c6": 8.96061742407359, + "c7": -25.6096263307404 }, - "vertexSeeds": { - "c1": 2.4889081585201867, - "c2": 2.2993383659305353, - "c3": 2.5468228782867866, - "c4": 2.513644694793676, - "c5": 2.543861687294239, - "c6": 2.4059847663752505, - "c7": 2.4704089532141036 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495134, + "c3": 3.0744336569579294, + "c4": 2.4595469255663422, + "c5": 1.8446601941747582, + "c6": 1.2297734627831711, + "c7": 0.614886731391584 }, "rgb": [222, 0, 59] }, @@ -148560,23 +148560,23 @@ "year": 1752, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -27.27456170533034, - "c2": -17.57502067717202, - "c3": 28.022908598453398, - "c4": -12.831230791543561, - "c5": -23.477521706845653, - "c6": 10.018010723160401, - "c7": -27.447876451808387 + "points": { + "c1": -18.696751835207383, + "c2": 25.86976268727785, + "c3": 11.507808666716137, + "c4": 23.856021260041878, + "c5": 27.33706328650719, + "c6": 0.8644147591484383, + "c7": 7.890623851923387 }, - "vertexSeeds": { - "c1": 5.440448140355386, - "c2": 5.9330434317780725, - "c3": 6.740008255149501, - "c4": 4.733796423966126, - "c5": 6.827761920211472, - "c6": 6.985971573501878, - "c7": 8.160761789523306 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.011095700416089, + "c3": 10.009246417013408, + "c4": 8.007397133610727, + "c5": 6.005547850208046, + "c6": 4.003698566805365, + "c7": 2.001849283402681 }, "rgb": [222, 0, 59] }, @@ -148587,23 +148587,23 @@ "year": 1752, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -21.304870292847923, - "c2": 22.67126890443061, - "c3": -32.32195825491439, - "c4": -18.978422093600397, - "c5": -34.90338322350404, - "c6": -26.639274796426044, - "c7": 13.512466060193347 + "points": { + "c1": -33.02101361123985, + "c2": -33.25802144744479, + "c3": 12.99574691364979, + "c4": -8.042338238752308, + "c5": -19.797093165514926, + "c6": -13.966107073822762, + "c7": -11.019291223974307 }, - "vertexSeeds": { - "c1": 4.8857777310475665, - "c2": 5.085902493085517, - "c3": 5.2425428718069345, - "c4": 4.770572565000812, - "c5": 4.997716592795783, - "c6": 5.155406468670804, - "c7": 5.052632217244369 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -148614,23 +148614,23 @@ "year": 1752, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": -4.684869052237232, - "c2": 10.07420797154884, - "c3": 15.215870380464164, - "c4": 5.704201309457591, - "c5": -12.941727583416542, - "c6": -12.541379678243064, - "c7": -8.529176597180241 + "points": { + "c1": 6.037927858806238, + "c2": -4.496693230121055, + "c3": -2.082138328825703, + "c4": 12.428751597340884, + "c5": -5.987914296014722, + "c6": 12.878252455956236, + "c7": 6.993707287815177 }, - "vertexSeeds": { - "c1": 13.37070161615517, - "c2": 13.426229547271422, - "c3": 11.372111408394561, - "c4": 10.530917502565744, - "c5": 11.080823778484179, - "c6": 12.978906168142814, - "c7": 9.835018444041165 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155342, + "c3": 16.18122977346279, + "c4": 12.944983818770229, + "c5": 9.708737864077674, + "c6": 6.472491909385118, + "c7": 3.2362459546925617 }, "rgb": [58, 15, 49] }, @@ -148641,23 +148641,23 @@ "year": 1752, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -14.397849696004151, - "c2": -12.684508487815695, - "c3": -5.201127677566038, - "c4": 7.957164775443879, - "c5": -17.00190128592541, - "c6": 34.302934067489204, - "c7": 20.034967501219576 + "points": { + "c1": 6.62644915974775, + "c2": -0.6435963342716207, + "c3": 12.520133828265337, + "c4": -34.56237576231591, + "c5": -23.458047182562417, + "c6": -2.575046105606326, + "c7": 21.171481604694193 }, - "vertexSeeds": { - "c1": 4.987899488231348, - "c2": 4.565722563928677, - "c3": 5.04923925442308, - "c4": 4.816307290203972, - "c5": 4.442847443621893, - "c6": 4.329560040932619, - "c7": 4.500184935594873 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497917, + "c3": 6.033287101248268, + "c4": 4.826629680998613, + "c5": 3.6199722607489586, + "c6": 2.4133148404993037, + "c7": 1.206657420249655 }, "rgb": [222, 0, 59] }, @@ -148668,23 +148668,23 @@ "year": 1753, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": -18.3412282086815, - "c2": -31.41686260910553, - "c3": -50.293021540118964, - "c4": 23.958296185012458, - "c5": -39.132253505207814, - "c6": 20.344368601072546, - "c7": -49.15984814470652 + "points": { + "c1": -13.653898889679915, + "c2": 3.211612519764735, + "c3": -34.63765092965278, + "c4": -39.392209214576425, + "c5": 24.748947680257828, + "c6": -47.221494294345284, + "c7": -42.633063239050514 }, - "vertexSeeds": { - "c1": 7.452314357507189, - "c2": 7.022766084026784, - "c3": 6.984253462008389, - "c4": 7.175469938060239, - "c5": 7.214616674851607, - "c6": 7.178201783289879, - "c7": 7.144569301254735 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -148695,23 +148695,23 @@ "year": 1752, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 0.18596251049860513, - "c2": 1.170360612611944, - "c3": 4.867340533400679, - "c4": 5.520671121366696, - "c5": 23.52077576857321, - "c6": 35.055658809893146, - "c7": 7.457628114865315 + "points": { + "c1": 29.738937347549665, + "c2": -29.261521100403424, + "c3": 8.817414027677628, + "c4": -5.428764261505698, + "c5": -27.54574394176585, + "c6": -25.789424345765127, + "c7": 20.67277740485209 }, - "vertexSeeds": { - "c1": 3.7691027876428476, - "c2": 3.5721465701073742, - "c3": 3.765379185965838, - "c4": 3.5533635093938125, - "c5": 3.606020884482392, - "c6": 3.3974306702647947, - "c7": 3.294042325481461 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703654, + "c4": 3.698566805362922, + "c5": 2.7739251040221906, + "c6": 1.8492834026814589, + "c7": 0.9246417013407318 }, "rgb": [222, 0, 59] }, @@ -148722,23 +148722,23 @@ "year": 1752, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 33.22990572318707, - "c2": 34.945738619149154, - "c3": 31.83054161326895, - "c4": -10.498078927489239, - "c5": -23.925095236594203, - "c6": -17.129198579734126, - "c7": 22.509311959838513 + "points": { + "c1": 38.45620622646936, + "c2": 24.971865633569138, + "c3": -46.106152621108016, + "c4": -47.86333684757, + "c5": -15.433669882044285, + "c6": 42.176471556554716, + "c7": 47.05866456888029 }, - "vertexSeeds": { - "c1": 7.913834788611509, - "c2": 7.902549736555587, - "c3": 8.003112067405915, - "c4": 8.426838716420626, - "c5": 7.633072189718268, - "c6": 7.513013952373715, - "c7": 8.421881819904748 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059634, + "c3": 10.379103097549702, + "c4": 8.303282478039756, + "c5": 6.227461858529823, + "c6": 4.151641239019878, + "c7": 2.0758206195099325 }, "rgb": [58, 15, 49] }, @@ -148749,23 +148749,23 @@ "year": 1752, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": -2.863921612147424, - "c2": 3.114170678166875, - "c3": -7.893251358516128, - "c4": 9.126831574741068, - "c5": -11.088305537049553, - "c6": -3.7553726585612885, - "c7": 5.385786232227979 + "points": { + "c1": -14.686597883796018, + "c2": -8.831162100711463, + "c3": 2.8965802568869528, + "c4": 12.068805411554376, + "c5": 11.154708790849437, + "c6": -12.191340687753048, + "c7": 10.901353178800036 }, - "vertexSeeds": { - "c1": 5.565196234337638, - "c2": 5.972146317344909, - "c3": 5.481781611614966, - "c4": 5.663053609169355, - "c5": 5.71983042549824, - "c6": 5.440802638615861, - "c7": 5.51062038348452 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390655, + "c4": 5.732778548312527, + "c5": 4.299583911234399, + "c6": 2.8663892741562553, + "c7": 1.4331946370781277 }, "rgb": [58, 15, 49] }, @@ -148776,23 +148776,23 @@ "year": 1752, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -28.445308574141475, - "c2": -33.84612521750276, - "c3": 10.677341810306423, - "c4": -33.22959077416956, - "c5": -35.567974068822174, - "c6": -15.995403385089546, - "c7": -32.49176354227035 + "points": { + "c1": 30.26161237827104, + "c2": 11.359783889892412, + "c3": -33.27863911569027, + "c4": 17.209414975582213, + "c5": 14.525950545482708, + "c6": 10.41209124613026, + "c7": -25.288080706941667 }, - "vertexSeeds": { - "c1": 3.3216019109559993, - "c2": 3.277188476341856, - "c3": 3.1099129435088377, - "c4": 3.3747682703850677, - "c5": 3.3372780714300303, - "c6": 3.233850598451803, - "c7": 3.100009796534944 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159502, + "c3": 4.114655570966254, + "c4": 3.291724456773004, + "c5": 2.468793342579755, + "c6": 1.6458622283865063, + "c7": 0.8229311141932572 }, "rgb": [86, 146, 138] }, @@ -148803,23 +148803,23 @@ "year": 1752, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -21.776931172677365, - "c2": 20.500073223990505, - "c3": 21.399009647283343, - "c4": -29.644612901604468, - "c5": 7.08249181346536, - "c6": -33.03204886910497, - "c7": -26.9502395809083 + "points": { + "c1": -23.086589944429477, + "c2": 38.263194216783866, + "c3": -14.057295229028405, + "c4": -3.5945533976359343, + "c5": 42.462463932210134, + "c6": 45.199228244679865, + "c7": 22.44906479264545 }, - "vertexSeeds": { - "c1": 2.9051348883254504, - "c2": 3.039122279009831, - "c3": 3.179447191204277, - "c4": 2.8554355899148818, - "c5": 3.076721747470979, - "c6": 3.089934684347092, - "c7": 3.1859888823012987 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837722, + "c3": 3.9297272306981053, + "c4": 3.1437817845584815, + "c5": 2.3578363384188643, + "c6": 1.5718908922792407, + "c7": 0.7859454461396235 }, "rgb": [222, 0, 59] }, @@ -148830,23 +148830,23 @@ "year": 1752, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -32.604078939059995, - "c2": 0.11450960030208535, - "c3": 14.685123261386053, - "c4": -16.7084448997218, - "c5": 6.9691544855912895, - "c6": 18.641767290958484, - "c7": 32.913945452057135 + "points": { + "c1": -19.6677719758715, + "c2": 7.22082528192238, + "c3": -13.625729878408684, + "c4": 30.221763977215005, + "c5": 33.57665630609529, + "c6": 4.318962914041052, + "c7": -29.84567762353226 }, - "vertexSeeds": { - "c1": 2.152332545098678, - "c2": 2.130061428758354, - "c3": 2.150530214563612, - "c4": 2.0548561602438635, - "c5": 2.1244301718054066, - "c6": 2.010548666306489, - "c7": 2.1431685722177876 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746185, + "c3": 2.7276930189551565, + "c4": 2.1821544151641246, + "c5": 1.6366158113730924, + "c6": 1.0910772075820603, + "c7": 0.545538603791032 }, "rgb": [58, 15, 49] }, @@ -148857,23 +148857,23 @@ "year": 1752, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 28.312552280499276, - "c2": -30.43304800288039, - "c3": 12.412585460995004, - "c4": 33.97417129553223, - "c5": -25.968075823701973, - "c6": 21.58369114711352, - "c7": 6.1255115066214785 + "points": { + "c1": -29.30148043024409, + "c2": -13.978442798897959, + "c3": 3.9091269196951686, + "c4": -16.52402702237457, + "c5": 39.229944229411714, + "c6": 8.599727678330865, + "c7": 2.9332621129634404 }, - "vertexSeeds": { - "c1": 3.559149450295087, - "c2": 3.886853460384684, - "c3": 3.7994936179061956, - "c4": 3.711438785424034, - "c5": 4.015747086846428, - "c6": 3.8222086642162503, - "c7": 3.889136319064913 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647709, + "c3": 4.969949144706427, + "c4": 3.9759593157651394, + "c5": 2.9819694868238575, + "c6": 1.9879796578825697, + "c7": 0.993989828941288 }, "rgb": [222, 0, 59] }, @@ -148884,23 +148884,23 @@ "year": 1753, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": -12.897784165426778, - "c2": -29.195448395424165, - "c3": 38.85045526397281, - "c4": 45.734636538852364, - "c5": -19.94691317870019, - "c6": 47.342411506738294, - "c7": -15.425229482105529 + "points": { + "c1": -34.18954500806835, + "c2": 33.87711831818124, + "c3": -7.066963684917646, + "c4": -33.68756396177791, + "c5": 42.51394170260348, + "c6": 27.47273243263414, + "c7": -40.12648573428975 }, - "vertexSeeds": { - "c1": 5.707208606150956, - "c2": 6.046778082954032, - "c3": 5.806486602322203, - "c4": 6.562412581034668, - "c5": 6.00582700377622, - "c6": 6.716632536568522, - "c7": 6.181162806702966 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439672, + "c3": 8.298659269533054, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132243, + "c7": 1.6597318539066068 }, "rgb": [58, 15, 49] }, @@ -148911,23 +148911,23 @@ "year": 1752, "resistanceReported": false, "duration": 2678400, - "curveSeeds": { - "c1": 3.5510208903818477, - "c2": 7.775017727635296, - "c3": 2.3785940487008617, - "c4": -3.307067853171647, - "c5": 11.46424659380657, - "c6": 12.076509121054867, - "c7": -8.650100118358017 + "points": { + "c1": -11.031828480066807, + "c2": 11.282967997558272, + "c3": 13.405285303270707, + "c4": -2.0496157428403095, + "c5": 9.215685911736665, + "c6": 11.413017282329436, + "c7": -4.41460617767086 }, - "vertexSeeds": { - "c1": 5.0990579773731985, - "c2": 5.144690162352731, - "c3": 5.030250408279538, - "c4": 5.486948560636472, - "c5": 5.234380092774512, - "c6": 5.005281593009014, - "c7": 5.259008300997884 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423026, + "c3": 6.564956079519191, + "c4": 5.251964863615339, + "c5": 3.938973647711505, + "c6": 2.6259824318076697, + "c7": 1.3129912159038348 }, "rgb": [86, 146, 138] }, @@ -148938,23 +148938,23 @@ "year": 1752, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -25.969233009068116, - "c2": -16.47810371413395, - "c3": -37.59966774038022, - "c4": -13.178275652608253, - "c5": 11.08751170843685, - "c6": 18.17593632952702, - "c7": 25.221882654808127 + "points": { + "c1": 13.94084641025227, + "c2": 38.76034232644183, + "c3": 27.069035551856942, + "c4": 11.417248160413536, + "c5": 40.179077792388895, + "c6": -19.3884768389838, + "c7": 23.186454546093643 }, - "vertexSeeds": { - "c1": 4.219078918621755, - "c2": 3.6251690359466604, - "c3": 3.905526059136619, - "c4": 4.120490116153421, - "c5": 3.6188929800731255, - "c6": 3.642253195378062, - "c7": 3.730216119387987 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.1858529819694885, + "c3": 5.154877484974571, + "c4": 4.123901987979657, + "c5": 3.0929264909847443, + "c6": 2.0619509939898264, + "c7": 1.0309754969949132 }, "rgb": [238, 201, 159] }, @@ -148965,23 +148965,23 @@ "year": 1752, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 20.82306394984419, - "c2": 28.953582924972814, - "c3": -5.5529965042584415, - "c4": 17.913641831283655, - "c5": -20.00666835984611, - "c6": 14.161778523523957, - "c7": 12.128537255159891 + "points": { + "c1": 15.062491271550236, + "c2": -21.814321982506446, + "c3": 17.9084902777333, + "c4": -5.614452294220726, + "c5": -7.24092541833053, + "c6": -32.14761006698182, + "c7": 1.7701217910994842 }, - "vertexSeeds": { - "c1": 5.527150463307623, - "c2": 6.020540743764301, - "c3": 6.1269857318621055, - "c4": 5.946894528772585, - "c5": 6.447922731251149, - "c6": 5.952802857128894, - "c7": 6.461432810558646 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474339, + "c3": 7.743874248728622, + "c4": 6.1950993989828955, + "c5": 4.646324549237169, + "c6": 3.097549699491443, + "c7": 1.5487748497457265 }, "rgb": [58, 15, 49] }, @@ -148992,23 +148992,23 @@ "year": 1752, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -14.666331810472052, - "c2": 14.7688670118241, - "c3": -6.958741463924735, - "c4": 14.897804461135884, - "c5": -1.4526198192350819, - "c6": 22.398108279757096, - "c7": -14.964548595387111 + "points": { + "c1": 20.819881936529313, + "c2": 12.601496610241853, + "c3": -2.106017428112672, + "c4": 16.67289283453914, + "c5": 12.341950959111031, + "c6": -8.474362297620267, + "c7": -12.801747022604737 }, - "vertexSeeds": { - "c1": 3.7347768056537993, - "c2": 3.4626634605628843, - "c3": 3.704169627288247, - "c4": 3.5330086351728527, - "c5": 3.774440214378298, - "c6": 3.415518393693351, - "c7": 3.5827426167415353 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [222, 0, 59] }, @@ -149019,23 +149019,23 @@ "year": 1752, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -16.41720704442295, - "c2": -31.06270924441796, - "c3": -6.691507797718657, - "c4": 37.704228311978355, - "c5": 7.220178342572375, - "c6": 11.299229656640286, - "c7": -6.846162924788523 + "points": { + "c1": -19.917784604061097, + "c2": 3.917434994025136, + "c3": 23.997435591252525, + "c4": -37.80865102008787, + "c5": -20.163189897842816, + "c6": -9.946945884447508, + "c7": -21.636062997502354 }, - "vertexSeeds": { - "c1": 11.808805470657463, - "c2": 11.714912543824502, - "c3": 11.716542750087491, - "c4": 11.41513022952167, - "c5": 11.433630167394158, - "c6": 11.489241700075365, - "c7": 11.353927458331846 + "offsets": { + "c1": 19.70873786407767, + "c2": 16.89320388349513, + "c3": 14.077669902912595, + "c4": 11.262135922330057, + "c5": 8.446601941747613, + "c6": 5.631067961165075, + "c7": 2.8155339805825377 }, "rgb": [238, 201, 159] }, @@ -149046,23 +149046,23 @@ "year": 1752, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 11.38775897031956, - "c2": 3.7362139445321603, - "c3": 24.36454099169528, - "c4": 11.342814070565055, - "c5": -34.27596475486943, - "c6": 28.143355037410032, - "c7": -8.574440646294576 + "points": { + "c1": 40.26761578429192, + "c2": -4.9135265632654, + "c3": 27.486779455486797, + "c4": -29.112025853384655, + "c5": -37.553158717187436, + "c6": 21.381726470610282, + "c7": -11.045136685348972 }, - "vertexSeeds": { - "c1": 3.4218820366509823, - "c2": 3.547201355965948, - "c3": 3.525353993361817, - "c4": 3.4773729249802035, - "c5": 3.3769810234417004, - "c6": 3.4030940705109387, - "c7": 3.3569875819647983 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435504, + "c4": 3.5506241331484096, + "c5": 2.662968099861307, + "c6": 1.7753120665742048, + "c7": 0.8876560332871024 }, "rgb": [77, 76, 132] }, @@ -149073,23 +149073,23 @@ "year": 1752, "resistanceReported": false, "duration": 1900800, - "curveSeeds": { - "c1": -10.083627907192945, - "c2": 9.609929956131701, - "c3": 9.373312953100331, - "c4": -4.936483321117934, - "c5": 0.349992716520763, - "c6": -6.730183332707467, - "c7": -6.655282819177868 + "points": { + "c1": -10.236029848454635, + "c2": -8.755799369437494, + "c3": -10.533365149189914, + "c4": 8.627268633565976, + "c5": 7.927003468735144, + "c6": 4.37837141125339, + "c7": -7.071113281507589 }, - "vertexSeeds": { - "c1": 2.7571010478865627, - "c2": 2.773065117856834, - "c3": 2.8027290439531765, - "c4": 2.841439042672087, - "c5": 2.644219786271312, - "c6": 2.8018183623672592, - "c7": 2.6855611236553614 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113733, + "c3": 3.5136384650947785, + "c4": 2.810910772075825, + "c5": 2.1081830790568614, + "c6": 1.4054553860379078, + "c7": 0.7027276930189539 }, "rgb": [58, 15, 49] }, @@ -149100,23 +149100,23 @@ "year": 1752, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 6.82292299279225, - "c2": 22.838682588801106, - "c3": -10.497591450860558, - "c4": -26.138142545005124, - "c5": 38.225038469276186, - "c6": 32.58575166407738, - "c7": -23.590210714860934 + "points": { + "c1": -9.429527948627104, + "c2": -37.28270716067688, + "c3": 39.777351659277585, + "c4": -15.820928876116476, + "c5": 30.961533030241597, + "c6": 0.31708444015463755, + "c7": 18.38081954842788 }, - "vertexSeeds": { - "c1": 4.790684532277545, - "c2": 4.802589730125432, - "c3": 4.885894446072511, - "c4": 4.8547274229039505, - "c5": 4.750821784954642, - "c6": 4.843005210783316, - "c7": 4.83739623540591 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.1012482662968, + "c3": 5.917706888580677, + "c4": 4.734165510864534, + "c5": 3.550624133148411, + "c6": 2.367082755432267, + "c7": 1.183541377716144 }, "rgb": [77, 76, 132] }, @@ -149127,23 +149127,23 @@ "year": 1753, "resistanceReported": false, "duration": 40089600, - "curveSeeds": { - "c1": 23.373162846839243, - "c2": -43.62335330396599, - "c3": -12.374019828083583, - "c4": -13.712918408434184, - "c5": 50.09038369429687, - "c6": -34.7349610883947, - "c7": -25.10291938643274 + "points": { + "c1": 24.663339782410638, + "c2": 33.34065680602051, + "c3": 21.881251635831894, + "c4": -9.139156600480717, + "c5": 9.056883209623358, + "c6": 17.8934691264327, + "c7": -21.2093560490882 }, - "vertexSeeds": { - "c1": 8.176085825114095, - "c2": 8.173827083935933, - "c3": 8.384105109574246, - "c4": 8.13334670422159, - "c5": 8.116571470699853, - "c6": 8.151326531213991, - "c7": 8.245072803477255 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.17753120665741, + "c3": 10.147942672214521, + "c4": 8.118354137771606, + "c5": 6.088765603328719, + "c6": 4.059177068885803, + "c7": 2.0295885344428877 }, "rgb": [58, 15, 49] }, @@ -149154,23 +149154,23 @@ "year": 1753, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 20.507426335416426, - "c2": 25.637136124749034, - "c3": 14.828805157052798, - "c4": 42.37652470698134, - "c5": -41.44313511041593, - "c6": -13.296505636394187, - "c7": -29.98451180431828 + "points": { + "c1": 24.924267770645415, + "c2": 16.486551736758116, + "c3": 3.079364627950291, + "c4": -23.540791106020272, + "c5": 11.113114913038544, + "c6": 28.36231318282951, + "c7": 15.259034119009016 }, - "vertexSeeds": { - "c1": 5.464686334366462, - "c2": 5.671478919207077, - "c3": 5.408319814246506, - "c4": 5.942776611015748, - "c5": 5.618161445463484, - "c6": 5.631824179124959, - "c7": 5.716787893212682 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [58, 15, 49] }, @@ -149181,23 +149181,23 @@ "year": 1752, "resistanceReported": false, "duration": 1209600, - "curveSeeds": { - "c1": -2.214031765380218, - "c2": 4.545600198158857, - "c3": 10.680588919828407, - "c4": 5.522837320465593, - "c5": -0.3608543038599805, - "c6": 9.687477226829197, - "c7": 8.383573726303046 + "points": { + "c1": 2.6426845863464994, + "c2": 5.361844774564114, + "c3": 12.900993423148767, + "c4": -11.868410697176131, + "c5": -3.310114117151574, + "c6": -12.08678020397242, + "c7": 0.5647434688378823 }, - "vertexSeeds": { - "c1": 2.7612451398269, - "c2": 2.606399897337456, - "c3": 2.6001809640705447, - "c4": 2.7222889251245235, - "c5": 2.7774692004737287, - "c6": 2.818132387082814, - "c7": 2.7804688543974394 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [238, 201, 159] }, @@ -149208,23 +149208,23 @@ "year": 1752, "resistanceReported": true, "duration": 22982400, - "curveSeeds": { - "c1": 6.226988766517678, - "c2": -8.224316246369721, - "c3": 23.47055282712431, - "c4": -11.39503263670547, - "c5": 9.6345549679327, - "c6": 1.545837258816185, - "c7": -32.20181267136229 + "points": { + "c1": 36.82891189798549, + "c2": -23.84680836612697, + "c3": -28.571125460825144, + "c4": 6.845390271916784, + "c5": 26.823388222847484, + "c6": 34.26049261511196, + "c7": -3.127840066429826 }, - "vertexSeeds": { - "c1": 2.2218270037197625, - "c2": 2.393011120867482, - "c3": 3.3852158307922, - "c4": 3.707297974397312, - "c5": 3.722674261111967, - "c6": 3.5659318524304773, - "c7": 3.730278423377208 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044383, + "c3": 4.6232085067036515, + "c4": 3.6985668053629213, + "c5": 2.7739251040221915, + "c6": 1.8492834026814595, + "c7": 0.9246417013407298 }, "rgb": [222, 0, 59] }, @@ -149235,23 +149235,23 @@ "year": 1753, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -6.133768525931302, - "c2": 14.714037635769735, - "c3": -46.60161518907549, - "c4": -25.263665062519344, - "c5": 14.137336328316408, - "c6": -2.7581161216666175, - "c7": 46.25509527255852 + "points": { + "c1": -25.540152967777843, + "c2": 32.720110132288156, + "c3": -36.611520912768945, + "c4": -15.824756624267707, + "c5": 40.128440652904615, + "c6": -43.02645036612469, + "c7": 18.66732068463064 }, - "vertexSeeds": { - "c1": 9.506445954227713, - "c2": 9.102472245573182, - "c3": 9.044467321052775, - "c4": 9.444602131228084, - "c5": 8.973259884297374, - "c6": 9.060326368864136, - "c7": 9.463795160732158 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748968, + "c3": 11.349976883957483, + "c4": 9.07998150716597, + "c5": 6.809986130374484, + "c6": 4.539990753582998, + "c7": 2.2699953767915133 }, "rgb": [77, 76, 132] }, @@ -149262,23 +149262,23 @@ "year": 1753, "resistanceReported": false, "duration": 49248000, - "curveSeeds": { - "c1": -14.675802142476002, - "c2": -8.75876393842642, - "c3": 31.926908632556845, - "c4": -36.41142458022834, - "c5": -4.326371230418097, - "c6": -3.996501788254754, - "c7": 41.909320709312325 + "points": { + "c1": -44.65869212154294, + "c2": 65.43745887444081, + "c3": -56.83358284720957, + "c4": -54.872620334601635, + "c5": 1.9997369903006614, + "c6": -9.641650779424168, + "c7": 64.41941643057373 }, - "vertexSeeds": { - "c1": 4.9882210183157785, - "c2": 5.5735458614710085, - "c3": 5.040181951977403, - "c4": 5.265802690709585, - "c5": 5.7451465956168635, - "c6": 5.2194615412619925, - "c7": 5.09656779396401 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.23855755894591, + "c3": 6.865464632454929, + "c4": 5.492371705963945, + "c5": 4.119278779472962, + "c6": 2.7461858529819656, + "c7": 1.3730929264909828 }, "rgb": [58, 15, 49] }, @@ -149289,23 +149289,23 @@ "year": 1753, "resistanceReported": false, "duration": 52185600, - "curveSeeds": { - "c1": 1.9569987840974647, - "c2": 5.086970429188696, - "c3": -57.16512204127828, - "c4": -3.199762451211818, - "c5": 15.273195171896063, - "c6": 8.204944310813218, - "c7": -24.342149033846837 + "points": { + "c1": -50.26593139590099, + "c2": 17.661275702844762, + "c3": -57.664161986461735, + "c4": 25.08811713207305, + "c5": 65.81543633545294, + "c6": -44.59148312994991, + "c7": 21.587240709193665 }, - "vertexSeeds": { - "c1": 3.1007289785891525, - "c2": 3.2603161206564595, - "c3": 3.3223207688068923, - "c4": 3.360481257140075, - "c5": 3.3359504952254704, - "c6": 3.3541187417502947, - "c7": 3.174766348629527 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [238, 201, 159] }, @@ -149316,23 +149316,23 @@ "year": 1753, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -22.398130794650992, - "c2": 26.980079311542752, - "c3": 13.10963372711737, - "c4": 8.849639862614517, - "c5": -30.378102841582745, - "c6": 34.24290549168846, - "c7": 12.804706872781779 + "points": { + "c1": -11.75716488855327, + "c2": -5.890803628462159, + "c3": -14.942824496351964, + "c4": -29.776898154006968, + "c5": -35.153133339692154, + "c6": -23.83869329576322, + "c7": -11.10929439428029 }, - "vertexSeeds": { - "c1": 4.5487002774227685, - "c2": 4.4703810754451005, - "c3": 4.799330428657589, - "c4": 4.0879183614577075, - "c5": 4.4415491476971605, - "c6": 4.219227261896908, - "c7": 4.3670237339212585 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -149343,23 +149343,23 @@ "year": 1752, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -21.318041399478382, - "c2": 17.98558796207402, - "c3": 15.397974703663273, - "c4": 27.24719927500407, - "c5": -27.970932113519805, - "c6": -25.290890811237787, - "c7": 14.600250107092407 + "points": { + "c1": -33.00861472212494, + "c2": -8.263242278195865, + "c3": 33.7542279434858, + "c4": 2.8862781933478914, + "c5": 11.85346633198607, + "c6": -4.179996687246415, + "c7": -28.159356054215824 }, - "vertexSeeds": { - "c1": 1.503575885173846, - "c2": 1.5308221211386386, - "c3": 1.6164254829687255, - "c4": 1.4948229033827054, - "c5": 1.6013754193723595, - "c6": 1.4506915130398013, - "c7": 1.6044190467287707 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166435, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033278 }, "rgb": [77, 76, 132] }, @@ -149370,23 +149370,23 @@ "year": 1752, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 10.525107943327164, - "c2": -10.711341360203484, - "c3": -14.904242059240271, - "c4": -1.1138728746539712, - "c5": -28.748284036092848, - "c6": -17.88070714785764, - "c7": 19.74875136023026 + "points": { + "c1": -3.4493935737008847, + "c2": -29.09733614680279, + "c3": -17.024640176892287, + "c4": -32.10120333372674, + "c5": 10.281530886542171, + "c6": 21.782664438207867, + "c7": 31.68576980650043 }, - "vertexSeeds": { - "c1": 8.845839839041636, - "c2": 7.851364559957125, - "c3": 8.966818695937864, - "c4": 8.665623449257428, - "c5": 8.8015022793392, - "c6": 8.39440683636314, - "c7": 7.852767264766604 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.84327323162274, + "c3": 10.702727693018955, + "c4": 8.562182154415162, + "c5": 6.421636615811376, + "c6": 4.281091077207581, + "c7": 2.1405455386037855 }, "rgb": [222, 0, 59] }, @@ -149397,23 +149397,23 @@ "year": 1752, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 29.701789198117282, - "c2": 10.813981244671616, - "c3": 9.11893190958991, - "c4": -16.185502553161164, - "c5": 10.273585663901123, - "c6": 25.99993990353861, - "c7": 22.729987383886673 + "points": { + "c1": -20.89491490088568, + "c2": -14.414558370342696, + "c3": 17.709370837690365, + "c4": -30.540779691380568, + "c5": -1.844026671984686, + "c6": 8.966518735292311, + "c7": -20.528931266647863 }, - "vertexSeeds": { - "c1": 6.423731932236184, - "c2": 5.561374118999459, - "c3": 6.238280771841763, - "c4": 5.655101468556267, - "c5": 6.038436760384805, - "c6": 6.274229102340108, - "c7": 6.382084695040355 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957007, + "c3": 8.021266759130832, + "c4": 6.417013407304668, + "c5": 4.8127600554785035, + "c6": 3.208506703652339, + "c7": 1.6042533518261646 }, "rgb": [222, 0, 59] }, @@ -149424,23 +149424,23 @@ "year": 1753, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 41.55878884378383, - "c2": -19.56591872931302, - "c3": 45.981570978158885, - "c4": -1.1468753098850968, - "c5": 8.62845610009498, - "c6": -6.702553119234032, - "c7": -38.01014149540458 + "points": { + "c1": -37.54454121076878, + "c2": -20.427236073983273, + "c3": -47.04731977525294, + "c4": 31.52821883219157, + "c5": -19.051116848668624, + "c6": 30.103745910110035, + "c7": -34.434395211975634 }, - "vertexSeeds": { - "c1": 6.480520150235844, - "c2": 6.144683161475531, - "c3": 5.991960454174719, - "c4": 5.811101732604628, - "c5": 6.054956450284054, - "c6": 5.795260982160489, - "c7": 6.551161769120781 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.859454461396207, + "c4": 6.28756356911697, + "c5": 4.7156726768377215, + "c6": 3.143781784558485, + "c7": 1.5718908922792358 }, "rgb": [222, 0, 59] }, @@ -149451,23 +149451,23 @@ "year": 1752, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 20.721796300304348, - "c2": 19.988158619151818, - "c3": -4.8306413663475, - "c4": -22.213316648526664, - "c5": -28.31159463157502, - "c6": 5.249578117168447, - "c7": 10.670771078458344 + "points": { + "c1": -27.182706469339635, + "c2": -8.049315558818517, + "c3": 34.62238757888616, + "c4": -25.80761294454804, + "c5": -5.3413606564688685, + "c6": -0.5075114272556789, + "c7": -31.697655715812534 }, - "vertexSeeds": { - "c1": 2.764230202437621, - "c2": 3.0678908986329616, - "c3": 3.083007620875482, - "c4": 2.9007078171233225, - "c5": 3.1404246505082827, - "c6": 2.609736525441183, - "c7": 2.5307060699682284 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.6047156726768375, + "c3": 3.8372630605640308, + "c4": 3.069810448451224, + "c5": 2.302357836338418, + "c6": 1.5349052242256112, + "c7": 0.7674526121128047 }, "rgb": [238, 201, 159] }, @@ -149478,23 +149478,23 @@ "year": 1752, "resistanceReported": false, "duration": 6393600, - "curveSeeds": { - "c1": -16.74530955898256, - "c2": -12.594475823997655, - "c3": -9.661549988317795, - "c4": -8.63387621189551, - "c5": 12.593852709465345, - "c6": -4.972592638179764, - "c7": 7.225373496086444 + "points": { + "c1": 10.995144570026493, + "c2": -8.763413740786083, + "c3": -14.00325747245013, + "c4": -9.103256093133957, + "c5": 9.59639349198033, + "c6": 3.7087481023227546, + "c7": 16.300413117820977 }, - "vertexSeeds": { - "c1": 9.678163584804164, - "c2": 9.689429092851283, - "c3": 9.530439856075564, - "c4": 9.459962112985114, - "c5": 9.495255585625296, - "c6": 9.505565384091021, - "c7": 9.551533211217354 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011093, + "c3": 11.55802126675914, + "c4": 9.246417013407287, + "c5": 6.934812760055496, + "c6": 4.6232085067036435, + "c7": 2.3116042533518524 }, "rgb": [86, 146, 138] }, @@ -149505,23 +149505,23 @@ "year": 1752, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -27.228932923734007, - "c2": -7.550857722717797, - "c3": 20.97103419896039, - "c4": -11.06921669974566, - "c5": 10.103928897277747, - "c6": -12.298539833272958, - "c7": -21.20915315785659 + "points": { + "c1": -24.16271103318235, + "c2": -20.155378114950615, + "c3": 22.812517197339865, + "c4": 27.380888885586927, + "c5": -8.32151816422127, + "c6": -21.526809001580432, + "c7": 0.7222108278625257 }, - "vertexSeeds": { - "c1": 1.6922186495452571, - "c2": 1.9417099756254619, - "c3": 1.6674310788308508, - "c4": 1.9093744125096315, - "c5": 1.584032592668412, - "c6": 1.7426842257051596, - "c7": 1.7246420923637453 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.5427646786870097, + "c4": 2.034211742949607, + "c5": 1.525658807212205, + "c6": 1.017105871474803, + "c7": 0.5085529357374022 }, "rgb": [238, 201, 159] }, @@ -149532,23 +149532,23 @@ "year": 1752, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 9.149030981554404, - "c2": -14.467664975469122, - "c3": 2.803409507675081, - "c4": -8.169362653729511, - "c5": -13.980099376393689, - "c6": -11.213697292781962, - "c7": 18.85001709083364 + "points": { + "c1": 0.34587605354953155, + "c2": 7.8746612668445195, + "c3": -21.864674677133706, + "c4": -2.190955472565168, + "c5": 6.837028874434061, + "c6": 6.123936942072866, + "c7": 2.9552418448180333 }, - "vertexSeeds": { - "c1": 2.5247505702638997, - "c2": 2.6792699461511353, - "c3": 2.7853659578522905, - "c4": 2.6585926617751126, - "c5": 2.705545248534446, - "c6": 2.5658523025070914, - "c7": 2.830906191176413 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.7739251040221893, + "c5": 2.0804438280166453, + "c6": 1.3869625520110946, + "c7": 0.6934812760055439 }, "rgb": [238, 201, 159] }, @@ -149559,23 +149559,23 @@ "year": 1753, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -0.9715656310493586, - "c2": 34.91823992030594, - "c3": 9.129772252243477, - "c4": -16.645170003946408, - "c5": -7.567376003370725, - "c6": -25.129621521988646, - "c7": 16.583244569884755 + "points": { + "c1": 21.25013805548037, + "c2": 29.027407949780674, + "c3": 14.65701020237924, + "c4": 33.22495039901303, + "c5": -33.161024260910665, + "c6": -31.590558405563637, + "c7": 40.55802068305318 }, - "vertexSeeds": { - "c1": 4.112378744298643, - "c2": 4.205203192388276, - "c3": 4.4301847599626685, - "c4": 4.141425526803874, - "c5": 4.509249502074629, - "c6": 4.3913284040686325, - "c7": 4.424322947679257 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411924, + "c3": 5.409153952843274, + "c4": 4.327323162274616, + "c5": 3.2454923717059665, + "c6": 2.163661581137308, + "c7": 1.08183079056865 }, "rgb": [86, 146, 138] }, @@ -149586,23 +149586,23 @@ "year": 1753, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 39.762705659799366, - "c2": -21.10491525433687, - "c3": 8.820492142229526, - "c4": -0.23866784499470128, - "c5": 19.24426201271949, - "c6": -25.237401936911027, - "c7": -21.96306580916379 + "points": { + "c1": -0.4742200402433454, + "c2": -21.38044493073201, + "c3": -4.8771162176669804, + "c4": -30.02460839055153, + "c5": 19.70075466941188, + "c6": 11.828608033880073, + "c7": 40.10300217686742 }, - "vertexSeeds": { - "c1": 8.825040778612205, - "c2": 8.89835017984621, - "c3": 9.2722258703668, - "c4": 9.166523438557697, - "c5": 8.636657769245112, - "c6": 8.650298228626916, - "c7": 8.300687355853858 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306515, + "c3": 11.095700416088759, + "c4": 8.876560332871005, + "c5": 6.657420249653266, + "c6": 4.4382801664355105, + "c7": 2.2191400832177552 }, "rgb": [58, 15, 49] }, @@ -149613,23 +149613,23 @@ "year": 1753, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 39.345127239831996, - "c2": -17.325397277527067, - "c3": -16.40351320788962, - "c4": 1.5438334760482917, - "c5": 21.245208705460634, - "c6": -10.259317598635079, - "c7": -34.677226691805345 + "points": { + "c1": 22.306138605368446, + "c2": 22.417318854228625, + "c3": -28.46425251605129, + "c4": -25.914946840490284, + "c5": -29.98404107421584, + "c6": 27.805358045778775, + "c7": -23.71048826541412 }, - "vertexSeeds": { - "c1": 6.559993049992803, - "c2": 7.088378577253209, - "c3": 7.271431970724522, - "c4": 7.311547161955405, - "c5": 6.397483004846771, - "c6": 7.305710705776089, - "c7": 6.9451124527862 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284326, + "c3": 8.784096162736937, + "c4": 7.02727693018956, + "c5": 5.270457697642169, + "c6": 3.51363846509478, + "c7": 1.75681923254739 }, "rgb": [238, 201, 159] }, @@ -149640,23 +149640,23 @@ "year": 1752, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -19.971834724797546, - "c2": -9.875167745927818, - "c3": -29.877220130545506, - "c4": 18.45762083646568, - "c5": 19.872829535274462, - "c6": -2.956296394381308, - "c7": -11.64687100674206 + "points": { + "c1": -13.95115962384736, + "c2": 29.268106469323, + "c3": -30.033893346748357, + "c4": -22.680596408073463, + "c5": 28.226420771048772, + "c6": 13.760233169106236, + "c7": -6.95449409558238 }, - "vertexSeeds": { - "c1": 1.1952287196973599, - "c2": 1.2926693519903136, - "c3": 1.2189574100815617, - "c4": 1.2802141260450242, - "c5": 1.2757150032791795, - "c6": 1.2213590684761744, - "c7": 1.2905317439063648 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350902, + "c3": 1.5718908922792418, + "c4": 1.2575127138233935, + "c5": 0.9431345353675451, + "c6": 0.6287563569116967, + "c7": 0.31437817845584837 }, "rgb": [77, 76, 132] }, @@ -149667,23 +149667,23 @@ "year": 1752, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -5.535658713803873, - "c2": -1.9620511506954799, - "c3": 20.1470678130197, - "c4": 0.7794755199227019, - "c5": -25.07600090022116, - "c6": -3.9814797784912557, - "c7": 16.931816948290656 + "points": { + "c1": -24.65194839263373, + "c2": -3.9773676709600885, + "c3": 25.85849260856718, + "c4": 25.203373644975304, + "c5": 6.459967550866022, + "c6": 16.989962681647572, + "c7": -10.270318729524718 }, - "vertexSeeds": { - "c1": 0.36393407158069374, - "c2": 0.3426907447212721, - "c3": 0.3240843566062354, - "c4": 0.367754685190657, - "c5": 0.3546615493153796, - "c6": 0.32499550247421466, - "c7": 0.3135821768062339 + "offsets": { + "c1": 0.6796116504854369, + "c2": 0.5825242718446604, + "c3": 0.48543689320388367, + "c4": 0.38834951456310707, + "c5": 0.29126213592232986, + "c6": 0.19417475728155326, + "c7": 0.09708737864077663 }, "rgb": [58, 15, 49] }, @@ -149694,23 +149694,23 @@ "year": 1752, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -34.133271921213215, - "c2": 35.08939452561918, - "c3": 20.940617173607173, - "c4": 22.823009170753473, - "c5": -21.8078838161268, - "c6": -7.0484634908764825, - "c7": 11.420490477265368 + "points": { + "c1": 6.168156608051866, + "c2": 10.211544931556276, + "c3": 15.81602778906354, + "c4": -33.95521281816195, + "c5": -4.606172533431419, + "c6": 20.40071803875484, + "c7": -7.09461692564409 }, - "vertexSeeds": { - "c1": 7.0786015219134475, - "c2": 7.665718527052268, - "c3": 6.97049052006479, - "c4": 7.103485161183966, - "c5": 7.463299526408269, - "c6": 7.145010110735992, - "c7": 6.842101289811619 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968099, + "c3": 9.17706888580675, + "c4": 7.3416551086454, + "c5": 5.506241331484049, + "c6": 3.6708275543227, + "c7": 1.83541377716135 }, "rgb": [86, 146, 138] }, @@ -149721,23 +149721,23 @@ "year": 1752, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -16.21000940569374, - "c2": 31.858170988108057, - "c3": -11.812087053660328, - "c4": -34.874232762389454, - "c5": 19.805754053711148, - "c6": -33.84021812135753, - "c7": -1.6981964970396035 + "points": { + "c1": 29.397294909388933, + "c2": 19.4574687094209, + "c3": 33.12834392027332, + "c4": -12.378246870128233, + "c5": 26.531843108969994, + "c6": 4.514811104875243, + "c7": 15.514542892459438 }, - "vertexSeeds": { - "c1": 5.5041528191262135, - "c2": 5.81644299527167, - "c3": 6.057844516975635, - "c4": 5.550079225776955, - "c5": 5.084561156438404, - "c6": 4.869902276136174, - "c7": 5.2856340111103535 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233007, + "c3": 7.605177993527504, + "c4": 6.084142394822008, + "c5": 4.563106796116504, + "c6": 3.0420711974110004, + "c7": 1.521035598705504 }, "rgb": [77, 76, 132] }, @@ -149748,23 +149748,23 @@ "year": 1753, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": 39.91752532446761, - "c2": -25.995008820050252, - "c3": 58.10740947822108, - "c4": -50.945198531997725, - "c5": -13.262927157005244, - "c6": 0.45661590289672915, - "c7": 37.385563472128574 + "points": { + "c1": 27.85011982667708, + "c2": -58.5676746851151, + "c3": -21.231962527811667, + "c4": -22.64793136056725, + "c5": 1.9238748903612688, + "c6": 21.900018177322373, + "c7": 60.3264330053488 }, - "vertexSeeds": { - "c1": 3.6287578561888707, - "c2": 3.585502637017119, - "c3": 3.4233176844458963, - "c4": 3.540930868631899, - "c5": 3.572529101927124, - "c6": 3.294012027869386, - "c7": 3.4356345998395 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.39204808136847, + "c4": 3.513638465094776, + "c5": 2.635228848821082, + "c6": 1.756819232547388, + "c7": 0.878409616273694 }, "rgb": [238, 201, 159] }, @@ -149775,23 +149775,23 @@ "year": 1753, "resistanceReported": true, "duration": 33436800, - "curveSeeds": { - "c1": 10.345068819321199, - "c2": 35.00975838312662, - "c3": -2.5286697784116186, - "c4": -42.996629749341885, - "c5": 22.684338387315776, - "c6": -46.100434290015436, - "c7": -11.354979252617106 + "points": { + "c1": -27.81485417696542, + "c2": 23.810482108787184, + "c3": 13.919187232396709, + "c4": 42.23180649347238, + "c5": 36.61919111589677, + "c6": -45.88280046440636, + "c7": 21.897553332686385 }, - "vertexSeeds": { - "c1": 6.540139182385375, - "c2": 5.956902902446927, - "c3": 5.560872265039731, - "c4": 6.1534794202597, - "c5": 5.683055881294877, - "c6": 6.360717488947593, - "c7": 5.809568092895795 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635232, + "c3": 7.8363384188626855, + "c4": 6.269070735090151, + "c5": 4.701803051317616, + "c6": 3.13453536754508, + "c7": 1.5672676837725352 }, "rgb": [58, 15, 49] }, @@ -149802,23 +149802,23 @@ "year": 1753, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -4.9587467177321045, - "c2": -15.368214867975759, - "c3": -12.119304172412669, - "c4": 40.36423464149318, - "c5": 6.771617036874346, - "c6": 11.600468585020913, - "c7": 17.51241073406208 + "points": { + "c1": 49.680846617447706, + "c2": -14.61168333861059, + "c3": -26.258291208105963, + "c4": 36.810920797122115, + "c5": 33.32398381917549, + "c6": 34.13636745092666, + "c7": 23.17654630087332 }, - "vertexSeeds": { - "c1": 1.818749914025051, - "c2": 1.8968512148204546, - "c3": 1.7415419808723926, - "c4": 1.7328271144059122, - "c5": 1.8683368778061296, - "c6": 1.8948861091690843, - "c7": 1.7792447912084532 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022192, + "c3": 2.311604253351827, + "c4": 1.8492834026814624, + "c5": 1.3869625520110938, + "c6": 0.9246417013407293, + "c7": 0.46232085067036466 }, "rgb": [77, 76, 132] }, @@ -149829,23 +149829,23 @@ "year": 1752, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -5.464954455156647, - "c2": -31.103658866933664, - "c3": 26.277441130259902, - "c4": -10.54236954452206, - "c5": -3.5905584017263266, - "c6": -35.837599453110506, - "c7": 17.456190830788792 + "points": { + "c1": 33.82055578782723, + "c2": 1.8838952861272134, + "c3": 15.318020317060707, + "c4": 32.82601999523132, + "c5": -27.375681564712153, + "c6": -30.658990653779142, + "c7": 35.269708732802115 }, - "vertexSeeds": { - "c1": 6.095942222009512, - "c2": 6.333340827209415, - "c3": 5.937353940638554, - "c4": 6.153037022512136, - "c5": 6.660614812825166, - "c6": 5.974026395945697, - "c7": 5.885093248502247 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077667, + "c3": 8.090614886731398, + "c4": 6.472491909385116, + "c5": 4.854368932038834, + "c6": 3.2362459546925644, + "c7": 1.6181229773462822 }, "rgb": [238, 201, 159] }, @@ -149856,23 +149856,23 @@ "year": 1752, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 0.5491902211546886, - "c2": 32.34516759668833, - "c3": 8.590961839613257, - "c4": -26.97551424888681, - "c5": 3.5950151106442476, - "c6": -26.435263274507463, - "c7": -12.265876083237103 + "points": { + "c1": -14.225375736056623, + "c2": 7.200436039789146, + "c3": -3.5111650595133597, + "c4": -11.010401417013568, + "c5": -20.405694977343067, + "c6": 33.649680491745315, + "c7": 25.53407488903438 }, - "vertexSeeds": { - "c1": 8.802500361537225, - "c2": 8.63921559191305, - "c3": 7.735949082062359, - "c4": 8.810166370333647, - "c5": 8.093794104830911, - "c6": 8.520990883669063, - "c7": 8.235811583145473 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461862, + "c3": 10.610263522884887, + "c4": 8.488210818307913, + "c5": 6.366158113730925, + "c6": 4.24410540915395, + "c7": 2.122052704576975 }, "rgb": [86, 146, 138] }, @@ -149883,23 +149883,23 @@ "year": 1753, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": 28.708591632189425, - "c2": 17.825127221811528, - "c3": 39.612781103466375, - "c4": 41.411152286265946, - "c5": 35.87664719672108, - "c6": 18.619298013735786, - "c7": 9.648665911352552 + "points": { + "c1": -34.51767279033626, + "c2": -27.008906339117498, + "c3": 44.95925936324646, + "c4": -36.83333405848413, + "c5": -22.44220488202582, + "c6": -37.30262612701357, + "c7": -43.9003705808049 }, - "vertexSeeds": { - "c1": 1.1150360668383408, - "c2": 1.0927467187338737, - "c3": 1.1485157071442964, - "c4": 1.095954289269464, - "c5": 1.1638053972588094, - "c6": 1.1549652818337395, - "c7": 1.1334694422173965 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535378, + "c3": 1.4100785945446126, + "c4": 1.1280628756356907, + "c5": 0.8460471567267689, + "c6": 0.5640314378178436, + "c7": 0.2820157189089218 }, "rgb": [222, 0, 59] }, @@ -149910,23 +149910,23 @@ "year": 1753, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -20.616816243852387, - "c2": -6.698704871235137, - "c3": -2.03274665880506, - "c4": 18.49077901411819, - "c5": 17.676007153633755, - "c6": -14.954247977361746, - "c7": -17.60620160091058 + "points": { + "c1": 10.771228464858282, + "c2": 8.430098709969087, + "c3": 7.586441668629938, + "c4": -13.092476817903016, + "c5": 35.296780010760074, + "c6": -10.711506423536662, + "c7": 30.851387592953543 }, - "vertexSeeds": { - "c1": 6.902575599988265, - "c2": 7.181878509124343, - "c3": 6.9337921121780655, - "c4": 7.369393623010893, - "c5": 7.276134772541654, - "c6": 7.196561879082817, - "c7": 7.263984422672073 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -149937,23 +149937,23 @@ "year": 1753, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 21.150405006175554, - "c2": 11.596564694494496, - "c3": 46.78909490961123, - "c4": -3.758972959458653, - "c5": -4.745424216319812, - "c6": 27.6438181716048, - "c7": 6.110327956635238 + "points": { + "c1": -15.901023325301047, + "c2": 11.500442655526044, + "c3": -22.896491777849285, + "c4": -48.834661536641285, + "c5": -38.822038676583546, + "c6": 17.306915385422535, + "c7": -0.9830729519884258 }, - "vertexSeeds": { - "c1": 7.267761147058948, - "c2": 6.887969344588049, - "c3": 7.210935834867817, - "c4": 7.412643963741595, - "c5": 6.755197202879492, - "c6": 7.233891778115955, - "c7": 7.0369505233815515 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766984, + "c3": 9.061488673139149, + "c4": 7.249190938511329, + "c5": 5.436893203883492, + "c6": 3.6245954692556563, + "c7": 1.8122977346278202 }, "rgb": [86, 146, 138] }, @@ -149964,23 +149964,23 @@ "year": 1752, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -13.429623839881025, - "c2": 29.717584924164285, - "c3": -5.217151279227661, - "c4": -22.82599971556463, - "c5": -28.669780287561146, - "c6": -6.330737187940898, - "c7": 18.05101983194232 + "points": { + "c1": -19.132305653107267, + "c2": -28.169815574920236, + "c3": -5.267987117791439, + "c4": -12.08353797313018, + "c5": -7.4485525079559025, + "c6": -1.1950013458407795, + "c7": 0.19672917109287624 }, - "vertexSeeds": { - "c1": 6.059092453161508, - "c2": 5.673607056438656, - "c3": 5.561027139066009, - "c4": 5.323562405955886, - "c5": 5.683691068826921, - "c6": 6.03091139570199, - "c7": 5.431126076999212 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871017, + "c3": 7.397133610725839, + "c4": 5.917706888580674, + "c5": 4.438280166435509, + "c6": 2.9588534442903436, + "c7": 1.4794267221451654 }, "rgb": [86, 146, 138] }, @@ -149991,23 +149991,23 @@ "year": 1753, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -5.85061116449797, - "c2": 13.808900704970391, - "c3": -37.70877731512341, - "c4": 18.95120550382169, - "c5": -31.499689010497573, - "c6": 14.415282953788406, - "c7": -23.033817013736808 + "points": { + "c1": -2.6466586217278802, + "c2": -9.68256956077736, + "c3": -44.04078529950736, + "c4": 19.7634407835017, + "c5": -16.891776218946518, + "c6": 21.18470535416926, + "c7": 15.716357529899518 }, - "vertexSeeds": { - "c1": 4.6667510809085115, - "c2": 4.38545653064709, - "c3": 4.770421403332571, - "c4": 4.684728158613708, - "c5": 4.56669083069502, - "c6": 4.2170296804798335, - "c7": 4.1902925560457005 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.8793342579750325, + "c3": 5.73277854831253, + "c4": 4.586222838650022, + "c5": 3.4396671289875194, + "c6": 2.293111419325011, + "c7": 1.1465557096625085 }, "rgb": [238, 201, 159] }, @@ -150018,23 +150018,23 @@ "year": 1753, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -27.442024169983107, - "c2": -16.792263371638782, - "c3": -36.4524699053606, - "c4": -2.7583652710201676, - "c5": 10.093916137085785, - "c6": 22.679427492183287, - "c7": -2.4741356340522245 + "points": { + "c1": 23.551629607780832, + "c2": -11.599928365601794, + "c3": -31.43149075303214, + "c4": 35.31374638021212, + "c5": -19.49313277822225, + "c6": -28.629797274261016, + "c7": 9.342637738848602 }, - "vertexSeeds": { - "c1": 4.904187629315701, - "c2": 5.847622040951445, - "c3": 5.955303564850936, - "c4": 5.586587300277827, - "c5": 5.988976411382871, - "c6": 5.096644798273479, - "c7": 5.220025749677859 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468795, + "c3": 7.165973185390666, + "c4": 5.732778548312526, + "c5": 4.299583911234396, + "c6": 2.8663892741562655, + "c7": 1.4331946370781352 }, "rgb": [222, 0, 59] }, @@ -150045,23 +150045,23 @@ "year": 1752, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 27.24264568286496, - "c2": -31.669839628432797, - "c3": -19.52005326608235, - "c4": -29.345875973584313, - "c5": 5.699313454116869, - "c6": 3.166687058179363, - "c7": 14.734770784716126 + "points": { + "c1": -0.6225470753455582, + "c2": -22.025695053811152, + "c3": 25.04663360666318, + "c4": -21.34337491593447, + "c5": -17.68180625555118, + "c6": -9.750577760702662, + "c7": -32.34460420291592 }, - "vertexSeeds": { - "c1": 4.037136724941207, - "c2": 4.189170937045267, - "c3": 4.150036531718994, - "c4": 4.406105907460853, - "c5": 3.7952974790032554, - "c6": 4.040600976979664, - "c7": 4.342379732605748 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170593, + "c3": 5.270457697642164, + "c4": 4.216366158113729, + "c5": 3.1622746185853, + "c6": 2.1081830790568645, + "c7": 1.0540915395284354 }, "rgb": [238, 201, 159] }, @@ -150072,23 +150072,23 @@ "year": 1753, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 16.43887425237184, - "c2": 3.9332803913870293, - "c3": -17.63681601945762, - "c4": 26.113054472932035, - "c5": 6.073217274890304, - "c6": 36.01503972421949, - "c7": 21.57865356937127 + "points": { + "c1": -11.299267048385722, + "c2": 12.397251366493428, + "c3": -5.720833904594009, + "c4": 19.19361885091638, + "c5": -43.87926887646059, + "c6": 2.419894696875545, + "c7": -24.50822594799184 }, - "vertexSeeds": { - "c1": 9.132124352331607, - "c2": 9.132124352331607, - "c3": 9.132124352331607, - "c4": 9.132124352331607, - "c5": 9.132124352331607, - "c6": 9.132124352331607, - "c7": 9.132124352331607 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -150099,23 +150099,23 @@ "year": 1752, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -7.163988833725984, - "c2": -2.517767077750797, - "c3": 26.240470729180252, - "c4": 24.785179073518123, - "c5": 10.546642145859437, - "c6": 25.661253316047542, - "c7": -1.3206427497579902 + "points": { + "c1": 11.640060412309374, + "c2": -12.626903494685394, + "c3": -5.40075794804563, + "c4": 0.3629457791296389, + "c5": -18.452905556004502, + "c6": -15.965977791634913, + "c7": -29.778153868379547 }, - "vertexSeeds": { - "c1": 2.1735621724088303, - "c2": 2.2867754896484667, - "c3": 2.248051572800898, - "c4": 2.4144161236904047, - "c5": 2.300195033940341, - "c6": 2.1976479564234905, - "c7": 2.271586181689508 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288494, + "c3": 3.005085529357375, + "c4": 2.404068423485897, + "c5": 1.8030513176144232, + "c6": 1.2020342117429486, + "c7": 0.6010171058714743 }, "rgb": [77, 76, 132] }, @@ -150126,23 +150126,23 @@ "year": 1753, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -22.712516716612576, - "c2": 2.9058802759722724, - "c3": 35.030536153626656, - "c4": 10.040796907917361, - "c5": -34.113293371618546, - "c6": -5.080106975677957, - "c7": -14.59620247831382 + "points": { + "c1": 5.760905096003562, + "c2": 36.35306540695453, + "c3": 0.6293243120602412, + "c4": 34.72945319489121, + "c5": -2.525707053522126, + "c6": 18.017980890391904, + "c7": -19.490425789331983 }, - "vertexSeeds": { - "c1": 9.51914902820478, - "c2": 9.22370834429426, - "c3": 9.376314535615029, - "c4": 9.404365039489017, - "c5": 9.33854613505023, - "c6": 9.579400475401634, - "c7": 9.547067293343607 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909848, + "c3": 11.442441054091542, + "c4": 9.153952843273233, + "c5": 6.865464632454924, + "c6": 4.576976421636616, + "c7": 2.288488210818308 }, "rgb": [238, 201, 159] }, @@ -150153,23 +150153,23 @@ "year": 1752, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 23.201907553176028, - "c2": 8.154598692919237, - "c3": -15.897015831678026, - "c4": -4.529785087666607, - "c5": -10.42692214558155, - "c6": -18.63742626435669, - "c7": -8.998107688332716 + "points": { + "c1": 9.782278028216531, + "c2": 0.4519798562975694, + "c3": -7.2873413047601865, + "c4": -5.420174790508188, + "c5": 9.807955788299019, + "c6": -31.567839065078054, + "c7": 21.560712852053896 }, - "vertexSeeds": { - "c1": 2.9140706859523577, - "c2": 3.2847655960727287, - "c3": 2.9705093777712857, - "c4": 3.2399127567282537, - "c5": 3.363526925465234, - "c6": 3.0009120226138473, - "c7": 3.0876001276444818 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.07628294036061, + "c3": 4.230235783633841, + "c4": 3.3841886269070716, + "c5": 2.5381414701803022, + "c6": 1.6920943134535382, + "c7": 0.8460471567267641 }, "rgb": [86, 146, 138] }, @@ -150180,23 +150180,23 @@ "year": 1752, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -5.839075469198839, - "c2": 19.938957309099067, - "c3": 18.339386667505195, - "c4": -25.932835836867444, - "c5": 9.036431753051964, - "c6": 17.517877203125416, - "c7": 1.93157653967112 + "points": { + "c1": 20.828653185065562, + "c2": -5.5749894950608585, + "c3": 15.12479696249624, + "c4": -8.902448090250829, + "c5": -10.743318763091352, + "c6": -32.14339278705245, + "c7": -18.7744403809334 }, - "vertexSeeds": { - "c1": 1.713581279690004, - "c2": 1.7958338356023174, - "c3": 1.7446176625527248, - "c4": 1.6576357962868369, - "c5": 1.7232894684953795, - "c6": 1.743874950105739, - "c7": 1.7334832458240288 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808574, + "c3": 2.172907998150717, + "c4": 1.7383263985205717, + "c5": 1.3037447988904314, + "c6": 0.8691631992602858, + "c7": 0.43458159963014537 }, "rgb": [222, 0, 59] }, @@ -150207,23 +150207,23 @@ "year": 1753, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": -18.32748405583348, - "c2": -27.690357302077587, - "c3": 46.645522122571734, - "c4": -47.039151708120585, - "c5": 17.653013839050118, - "c6": 51.68602205773634, - "c7": 33.26535327205421 + "points": { + "c1": -14.611271719921127, + "c2": -0.7463464543499114, + "c3": -21.799828327973763, + "c4": -47.80581382399866, + "c5": 22.822142473130384, + "c6": -50.3504021244905, + "c7": 16.59768817934578 }, - "vertexSeeds": { - "c1": 4.036288737582969, - "c2": 3.890944628036264, - "c3": 3.644289510126487, - "c4": 3.935888990789893, - "c5": 3.557598840404936, - "c6": 3.9933313622229925, - "c7": 3.9889055472088835 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406379, + "c3": 4.831252889505315, + "c4": 3.865002311604257, + "c5": 2.898751733703193, + "c6": 1.9325011558021286, + "c7": 0.9662505779010643 }, "rgb": [238, 201, 159] }, @@ -150234,23 +150234,23 @@ "year": 1752, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -15.880763855816792, - "c2": 29.4556723476758, - "c3": -13.134053933480232, - "c4": -31.023528938947138, - "c5": -29.552934630939003, - "c6": -6.924485957600087, - "c7": -9.736440673668803 + "points": { + "c1": 0.7064357081343218, + "c2": 23.610441880358707, + "c3": 12.262834536265615, + "c4": -29.20383220147864, + "c5": -32.06055423948851, + "c6": -6.839358627950169, + "c7": 3.8698942740223856 }, - "vertexSeeds": { - "c1": 7.401217456567096, - "c2": 7.53354595754657, - "c3": 7.21871473307694, - "c4": 7.094228885380474, - "c5": 6.780965360474167, - "c6": 6.782846050917106, - "c7": 6.76884788299751 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766989, + "c3": 9.061488673139158, + "c4": 7.249190938511326, + "c5": 5.4368932038834945, + "c6": 3.624595469255663, + "c7": 1.8122977346278315 }, "rgb": [58, 15, 49] }, @@ -150261,23 +150261,23 @@ "year": 1753, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 29.30628743652428, - "c2": -30.62106517784874, - "c3": -30.982674735028805, - "c4": 32.87630308594166, - "c5": -18.63361125252227, - "c6": 27.044406542892858, - "c7": 28.785167528048405 + "points": { + "c1": 21.929154359140327, + "c2": 3.3227383530746337, + "c3": -11.287216126614773, + "c4": -20.575976405364273, + "c5": -22.099630055545646, + "c6": -3.1224494386806327, + "c7": -19.913422566359454 }, - "vertexSeeds": { - "c1": 2.3291840562941615, - "c2": 2.271248411240743, - "c3": 2.2273789650631564, - "c4": 2.277441102295211, - "c5": 2.412653804319384, - "c6": 2.4153942882843933, - "c7": 2.5526875866108907 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495174, + "c3": 3.074433656957929, + "c4": 2.459546925566343, + "c5": 1.8446601941747574, + "c6": 1.2297734627831716, + "c7": 0.6148867313915858 }, "rgb": [222, 0, 59] }, @@ -150288,23 +150288,23 @@ "year": 1753, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -22.91767392258818, - "c2": 10.125963489657103, - "c3": -35.19166748679601, - "c4": 16.771450827334654, - "c5": 35.950107858010256, - "c6": 24.326130977794094, - "c7": 6.1172203259041495 + "points": { + "c1": 15.877926640478627, + "c2": 19.24911472170089, + "c3": -36.555678308439745, + "c4": -16.395252514476933, + "c5": 18.26240848261355, + "c6": -36.045332814803025, + "c7": 13.31447100453893 }, - "vertexSeeds": { - "c1": 2.56405188150952, - "c2": 2.7909633559757463, - "c3": 2.542054783224875, - "c4": 2.695959902710701, - "c5": 2.5337793793474233, - "c6": 2.692308707339593, - "c7": 2.6706400627497193 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.467406380027739, + "c4": 2.773925104022191, + "c5": 2.080443828016643, + "c6": 1.3869625520110955, + "c7": 0.6934812760055478 }, "rgb": [86, 146, 138] }, @@ -150315,23 +150315,23 @@ "year": 1752, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -2.316605842975985, - "c2": 3.538543884795839, - "c3": 15.809575856677153, - "c4": 17.054019885707707, - "c5": -28.749203654607417, - "c6": 28.41976943316715, - "c7": -23.958128985758062 + "points": { + "c1": -18.340524937300508, + "c2": 19.305894174967754, + "c3": -25.757410241910748, + "c4": 32.81100160081819, + "c5": -5.2683314233414364, + "c6": 11.96301877663435, + "c7": -31.240111659231648 }, - "vertexSeeds": { - "c1": 4.94340287713606, - "c2": 4.771094971290252, - "c3": 4.883240278041201, - "c4": 4.881611138587833, - "c5": 5.051404916547559, - "c6": 5.403379269452306, - "c7": 5.050125650966988 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385112, + "c4": 5.177993527508089, + "c5": 3.8834951456310645, + "c6": 2.5889967637540408, + "c7": 1.294498381877017 }, "rgb": [86, 146, 138] }, @@ -150342,23 +150342,23 @@ "year": 1753, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -2.5848400841471957, - "c2": 6.30674511519689, - "c3": -10.320389861073409, - "c4": 37.641227745265006, - "c5": 26.255740630865212, - "c6": 43.552733313874604, - "c7": -4.109543322989424 + "points": { + "c1": 21.907927730767817, + "c2": 44.435804328168736, + "c3": 31.529805800056074, + "c4": -6.513351838704736, + "c5": -23.895304082784822, + "c6": 36.24379147739952, + "c7": -4.907665647770926 }, - "vertexSeeds": { - "c1": 1.4168713524841368, - "c2": 1.4531373589049823, - "c3": 1.3898783182822727, - "c4": 1.5750797670888492, - "c5": 1.5739993366429144, - "c6": 1.4115488903758204, - "c7": 1.471069705727127 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.3300970873786397, + "c3": 1.9417475728155345, + "c4": 1.5533980582524263, + "c5": 1.1650485436893214, + "c6": 0.7766990291262131, + "c7": 0.38834951456310823 }, "rgb": [77, 76, 132] }, @@ -150369,23 +150369,23 @@ "year": 1753, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 22.32419841365416, - "c2": 28.760376540763986, - "c3": 28.19568760424285, - "c4": -13.275889049126256, - "c5": -4.904474405885956, - "c6": -3.216211885463281, - "c7": 0.7637257970795375 + "points": { + "c1": -25.157545146169955, + "c2": 36.23258239369899, + "c3": -28.967681584784977, + "c4": -7.653891503372055, + "c5": 38.96594125849555, + "c6": -28.21855550007125, + "c7": 23.109580969766654 }, - "vertexSeeds": { - "c1": 1.5951106704801719, - "c2": 1.6650245354406017, - "c3": 1.7690598122620504, - "c4": 1.6979312453590147, - "c5": 1.6731878824329138, - "c6": 1.7337405849976042, - "c7": 1.5548326827113959 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808588, + "c3": 2.172907998150715, + "c4": 1.7383263985205735, + "c5": 1.3037447988904294, + "c6": 0.8691631992602854, + "c7": 0.43458159963014403 }, "rgb": [77, 76, 132] }, @@ -150396,23 +150396,23 @@ "year": 1753, "resistanceReported": false, "duration": 50976000, - "curveSeeds": { - "c1": -48.20447783757004, - "c2": 26.868557943832215, - "c3": 57.33030671432745, - "c4": 39.43096967452412, - "c5": 62.395417278099714, - "c6": -5.491729628796833, - "c7": 63.9569219452283 + "points": { + "c1": 41.44134276581444, + "c2": -57.48939846171554, + "c3": -17.001290336474867, + "c4": 41.77012166124018, + "c5": -54.764117402595524, + "c6": -0.6395118155583077, + "c7": -57.2771305429254 }, - "vertexSeeds": { - "c1": 1.4676274532974478, - "c2": 1.5721246377388416, - "c3": 1.7024862156885208, - "c4": 1.6446201405840153, - "c5": 1.6943694922075738, - "c6": 1.585439246129338, - "c7": 1.6119918695546083 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797493, + "c3": 2.057327785483126, + "c4": 1.6458622283864996, + "c5": 1.234396671289876, + "c6": 0.8229311141932498, + "c7": 0.4114655570966235 }, "rgb": [86, 146, 138] }, @@ -150423,23 +150423,23 @@ "year": 1753, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 10.103873896919389, - "c2": 21.27616823170434, - "c3": -9.317535396129916, - "c4": 9.989153073135434, - "c5": -34.65342495371181, - "c6": -11.958005860229402, - "c7": -28.610272438866705 + "points": { + "c1": 33.417780329351515, + "c2": -32.15085840563007, + "c3": 19.760783997096183, + "c4": -36.95384419778365, + "c5": 0.16215765020492512, + "c6": -7.918326731515084, + "c7": 2.9916955337700415 }, - "vertexSeeds": { - "c1": 8.390604707549903, - "c2": 8.5173858586789, - "c3": 8.137824364631834, - "c4": 8.131192464792992, - "c5": 8.257217437387487, - "c6": 8.677693148183666, - "c7": 7.972825662213746 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099858, + "c3": 10.402219140083211, + "c4": 8.321775312066565, + "c5": 6.241331484049918, + "c6": 4.160887656033293, + "c7": 2.0804438280166466 }, "rgb": [222, 0, 59] }, @@ -150450,23 +150450,23 @@ "year": 1753, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -13.81918305811001, - "c2": 29.73938524182126, - "c3": 26.87841281579842, - "c4": -12.773690681079042, - "c5": 6.17835439410355, - "c6": -30.75453252185708, - "c7": -0.7907736180162388 + "points": { + "c1": 14.640423886218024, + "c2": -20.741934372976086, + "c3": -4.56965872620826, + "c4": -31.547971778957145, + "c5": -17.574085147270868, + "c6": 11.879396699628984, + "c7": 45.150510915890614 }, - "vertexSeeds": { - "c1": 5.163139869088767, - "c2": 5.858470312886065, - "c3": 5.901297839731996, - "c4": 6.015789989758499, - "c5": 5.461234975174098, - "c6": 5.25778064030027, - "c7": 5.751855622500315 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549235, + "c3": 7.212205270457697, + "c4": 5.769764216366157, + "c5": 4.3273231622746176, + "c6": 2.8848821081830787, + "c7": 1.4424410540915393 }, "rgb": [86, 146, 138] }, @@ -150477,23 +150477,23 @@ "year": 1753, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 5.819747893234975, - "c2": -18.16806895972171, - "c3": 3.294032656633739, - "c4": -20.11761125927307, - "c5": -18.91400003325767, - "c6": -9.97470677730945, - "c7": -28.601365181060416 + "points": { + "c1": 36.22879268983603, + "c2": 15.951108814923693, + "c3": -30.29249603335616, + "c4": 37.475465523117364, + "c5": 0.6359257009231953, + "c6": 16.26995290569304, + "c7": 18.37061278111736 }, - "vertexSeeds": { - "c1": 6.005899715343933, - "c2": 5.999636002614118, - "c3": 6.0269539352420365, - "c4": 6.0641617842863065, - "c5": 6.077273359713976, - "c6": 6.051150023535867, - "c7": 6.0423146842511155 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710124, + "c3": 7.304669440591771, + "c4": 5.843735552473416, + "c5": 4.382801664355062, + "c6": 2.921867776236708, + "c7": 1.460933888118354 }, "rgb": [238, 201, 159] }, @@ -150504,23 +150504,23 @@ "year": 1753, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 36.081232977784296, - "c2": 45.8259710252963, - "c3": -14.720047325873225, - "c4": 12.558958986759855, - "c5": -30.48460255585197, - "c6": -3.119374563867673, - "c7": 27.103451174059273 + "points": { + "c1": -7.458816375944856, + "c2": -30.479309646503427, + "c3": -22.873077306258345, + "c4": -47.801353741867395, + "c5": -37.04073532936902, + "c6": 8.964571390690523, + "c7": -33.20320849114114 }, - "vertexSeeds": { - "c1": 11.860212137342609, - "c2": 11.731548684499623, - "c3": 11.875634793417758, - "c4": 11.76392922300968, - "c5": 11.8387219179861, - "c6": 12.08971873705921, - "c7": 11.848315954166152 + "offsets": { + "c1": 20.29126213592233, + "c2": 17.392510402219155, + "c3": 14.493758668515946, + "c4": 11.595006934812771, + "c5": 8.696255201109597, + "c6": 5.7975034674063854, + "c7": 2.898751733703211 }, "rgb": [222, 0, 59] }, @@ -150531,23 +150531,23 @@ "year": 1753, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 22.763699543145478, - "c2": 32.27810540693945, - "c3": -34.00028820443702, - "c4": -31.06651718776849, - "c5": 33.942855000515344, - "c6": -17.703932627869865, - "c7": -27.6965914473894 + "points": { + "c1": -14.56010114229576, + "c2": 41.14729408112246, + "c3": 28.75941042952956, + "c4": -11.410579570080472, + "c5": 13.95439002123775, + "c6": 42.81126778692518, + "c7": -24.706409248143288 }, - "vertexSeeds": { - "c1": 10.67300752400154, - "c2": 10.726461660978847, - "c3": 10.46072448982392, - "c4": 10.461131432436158, - "c5": 10.390576069558449, - "c6": 11.079035448891922, - "c7": 10.410577032509966 + "offsets": { + "c1": 18.802588996763753, + "c2": 16.11650485436892, + "c3": 13.430420711974124, + "c4": 10.744336569579293, + "c5": 8.05825242718446, + "c6": 5.372168284789664, + "c7": 2.686084142394832 }, "rgb": [222, 0, 59] }, @@ -150558,23 +150558,23 @@ "year": 1753, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": -22.101862108555775, - "c2": 46.50345102000358, - "c3": 23.638034528470342, - "c4": -15.169492629352291, - "c5": 7.936742720808589, - "c6": -25.22957157962065, - "c7": 1.4094482968983115 + "points": { + "c1": 37.580971498416744, + "c2": 21.35781925821773, + "c3": -2.843634302877007, + "c4": -4.883848574662792, + "c5": -15.829218627499102, + "c6": 7.7359087681905265, + "c7": 47.674757840110644 }, - "vertexSeeds": { - "c1": 4.8351932548232295, - "c2": 4.353774508113809, - "c3": 4.522179805129442, - "c4": 4.320771970054852, - "c5": 4.769424454257527, - "c6": 4.023101989439384, - "c7": 4.433410716451282 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -150585,23 +150585,23 @@ "year": 1753, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": -51.172463220139434, - "c2": 26.405343802351872, - "c3": -10.285643565461584, - "c4": 13.470357779961454, - "c5": -21.604442206250383, - "c6": -27.150481092819994, - "c7": -13.462687907228059 + "points": { + "c1": -38.978963656118395, + "c2": 24.30775522636076, + "c3": 33.673622474502274, + "c4": -50.51616916996208, + "c5": 7.9357756954801815, + "c6": 38.86763308262713, + "c7": 53.69462515941979 }, - "vertexSeeds": { - "c1": 6.629060957111128, - "c2": 6.326161359444713, - "c3": 6.179236558029335, - "c4": 6.2572930028097264, - "c5": 7.083717873316511, - "c6": 6.563660017160389, - "c7": 6.785145493272139 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [238, 201, 159] }, @@ -150612,23 +150612,23 @@ "year": 1753, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -27.514282173806688, - "c2": -21.18694289320141, - "c3": 7.156496334659906, - "c4": -30.13403758445482, - "c5": 15.046907634341004, - "c6": -27.111239363269974, - "c7": -24.20278969619536 + "points": { + "c1": -20.46227742275481, + "c2": -38.15304855171112, + "c3": -27.99645032588237, + "c4": -10.266492984188734, + "c5": 4.17936218116148, + "c6": 27.458349966473648, + "c7": 28.421489597773828 }, - "vertexSeeds": { - "c1": 14.248897548696524, - "c2": 14.891488694052152, - "c3": 15.153595095186757, - "c4": 14.450750346597312, - "c5": 15.090844225063597, - "c6": 15.04083794500664, - "c7": 14.328214423309715 + "offsets": { + "c1": 25.307443365695793, + "c2": 21.69209431345353, + "c3": 18.07674526121127, + "c4": 14.461396208969004, + "c5": 10.846047156726788, + "c6": 7.230698104484526, + "c7": 3.615349052242263 }, "rgb": [222, 0, 59] }, @@ -150639,23 +150639,23 @@ "year": 1753, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 23.109701978381317, - "c2": -12.908024662501095, - "c3": -23.038009772451783, - "c4": 29.278332247066288, - "c5": 34.68975064977832, - "c6": -4.877988659506716, - "c7": -35.49870870014695 + "points": { + "c1": -7.631027959086264, + "c2": -13.415551947004893, + "c3": -6.558644408318557, + "c4": 37.259299896945535, + "c5": -18.437520187173856, + "c6": -19.65935501158864, + "c7": 21.902123691087084 }, - "vertexSeeds": { - "c1": 6.772865339248186, - "c2": 6.030568194936333, - "c3": 6.534796837193738, - "c4": 6.422867996863742, - "c5": 5.641582417305155, - "c6": 6.510914333897525, - "c7": 6.061654827241516 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.20619509939898, + "c4": 6.564956079519189, + "c5": 4.923717059639396, + "c6": 3.2824780397595945, + "c7": 1.6412390198798021 }, "rgb": [58, 15, 49] }, @@ -150666,23 +150666,23 @@ "year": 1753, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -39.697644983124924, - "c2": -21.927850043488743, - "c3": -34.224821750414264, - "c4": -36.617703250832875, - "c5": 2.8739051933329947, - "c6": 29.77039398060122, - "c7": -14.395855453644014 + "points": { + "c1": -38.31392637965685, + "c2": -46.94009924012634, + "c3": -36.762732562791456, + "c4": -44.72093549027541, + "c5": 24.815849699858184, + "c6": -24.156852723653536, + "c7": 30.40859646356237 }, - "vertexSeeds": { - "c1": 3.185988812377862, - "c2": 3.036309663780279, - "c3": 3.2188365304234625, - "c4": 3.3848225912646046, - "c5": 3.296051880041479, - "c6": 3.3131229946146825, - "c7": 3.1293218450183193 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.2547387887193753, + "c5": 2.4410540915395256, + "c6": 1.6273693943596834, + "c7": 0.8136846971798417 }, "rgb": [222, 0, 59] }, @@ -150693,23 +150693,23 @@ "year": 1753, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 10.026524692863674, - "c2": 19.814484858802764, - "c3": -25.83669938149962, - "c4": -25.30980720515618, - "c5": -18.747077703373634, - "c6": -10.964298840310235, - "c7": -1.8887145444231308 + "points": { + "c1": 37.01607403529136, + "c2": 5.327373683069425, + "c3": -10.363843704991783, + "c4": -36.71368476266148, + "c5": 19.63091015138795, + "c6": -7.842483389425411, + "c7": -38.611860738094606 }, - "vertexSeeds": { - "c1": 11.992812012384409, - "c2": 12.014532235537631, - "c3": 12.51228930021569, - "c4": 12.62803150568613, - "c5": 12.116092153400697, - "c6": 11.29803158454575, - "c7": 10.87889222157781 + "offsets": { + "c1": 21.22977346278317, + "c2": 18.196948682385575, + "c3": 15.16412390198798, + "c4": 12.131299121590382, + "c5": 9.098474341192787, + "c6": 6.065649560795191, + "c7": 3.0328247803975956 }, "rgb": [58, 15, 49] }, @@ -150720,23 +150720,23 @@ "year": 1753, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 42.36305268201275, - "c2": -2.0902729714140236, - "c3": 21.385293911053708, - "c4": -15.375025393529967, - "c5": -26.698295893966225, - "c6": 18.42885245534709, - "c7": -41.842846152054335 + "points": { + "c1": -5.032931160639052, + "c2": -34.803130076477665, + "c3": -33.76866434733484, + "c4": 30.743298324348075, + "c5": -14.174790173152097, + "c6": -43.98111707422873, + "c7": 38.10603477950097 }, - "vertexSeeds": { - "c1": 6.512957666050933, - "c2": 6.288147856449437, - "c3": 6.568009598158069, - "c4": 6.309020322648462, - "c5": 6.407603383796169, - "c6": 6.475193032630907, - "c7": 6.591805286617167 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715663, + "c3": 7.882570503929744, + "c4": 6.306056403143788, + "c5": 4.729542302357832, + "c6": 3.1530282015718747, + "c7": 1.576514100785956 }, "rgb": [58, 15, 49] }, @@ -150747,23 +150747,23 @@ "year": 1753, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": 2.03583173233703, - "c2": -39.78612423913383, - "c3": 22.401195835618786, - "c4": -50.527798685694336, - "c5": 38.79987296328141, - "c6": -17.41176773749625, - "c7": -53.2150537068527 + "points": { + "c1": -56.9384521460371, + "c2": 16.949191380164656, + "c3": 7.086320259917308, + "c4": -53.00903773509885, + "c5": -8.437287809174443, + "c6": 48.099441156079614, + "c7": 24.264540399178863 }, - "vertexSeeds": { - "c1": 0.9231853727455139, - "c2": 0.8014280097399681, - "c3": 0.8475038776785212, - "c4": 0.8728256832757257, - "c5": 0.787047581882845, - "c6": 0.8376089777921789, - "c7": 0.8977232489243122 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.386962552011096, + "c3": 1.1558021266759124, + "c4": 0.9246417013407302, + "c5": 0.693481276005548, + "c6": 0.4623208506703656, + "c7": 0.23116042533518233 }, "rgb": [238, 201, 159] }, @@ -150774,23 +150774,23 @@ "year": 1753, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 23.630578060224465, - "c2": 6.322532984801413, - "c3": -17.98654703154533, - "c4": -25.599417749378524, - "c5": 5.267487400155424, - "c6": 29.260074333080446, - "c7": -11.236059528371694 + "points": { + "c1": -13.712713862901275, + "c2": -14.452858615941857, + "c3": 23.814643222364175, + "c4": 31.188827828255185, + "c5": 6.293716325360968, + "c6": 33.94652576171282, + "c7": -33.91246685872173 }, - "vertexSeeds": { - "c1": 7.085061840379942, - "c2": 6.877246990417575, - "c3": 6.424647384645227, - "c4": 6.179544516537152, - "c5": 7.257728432400874, - "c6": 6.713778900794192, - "c7": 7.144290697594187 + "offsets": { + "c1": 12.653721682847896, + "c2": 10.84604715672677, + "c3": 9.038372630605636, + "c4": 7.23069810448451, + "c5": 5.423023578363385, + "c6": 3.61534905224226, + "c7": 1.8076745261211251 }, "rgb": [77, 76, 132] }, @@ -150801,23 +150801,23 @@ "year": 1752, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 0.949762828954853, - "c2": 1.5684673902191442, - "c3": 25.527239340286858, - "c4": -16.594279352575313, - "c5": 19.88779071927954, - "c6": -1.421627163326022, - "c7": 15.584682522973882 + "points": { + "c1": 3.096268740901639, + "c2": 7.170015087125112, + "c3": -15.559786998527763, + "c4": 16.662403878572047, + "c5": 16.95047709931458, + "c6": 8.63941120151291, + "c7": 10.5149675288062 }, - "vertexSeeds": { - "c1": 5.3023647183539255, - "c2": 5.470036829345646, - "c3": 5.169693120539048, - "c4": 5.276307865567888, - "c5": 5.039566607356803, - "c6": 5.226132827497996, - "c7": 5.20708185352988 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503471, + "c3": 6.611188164586214, + "c4": 5.288950531668975, + "c5": 3.9667128987517355, + "c6": 2.6444752658344965, + "c7": 1.3222376329172392 }, "rgb": [58, 15, 49] }, @@ -150828,23 +150828,23 @@ "year": 1753, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 37.195083635575045, - "c2": -12.585181730752161, - "c3": 22.723217798644143, - "c4": -3.7724219795292484, - "c5": 41.61143233201082, - "c6": -46.46672493155497, - "c7": -7.963416387683104 + "points": { + "c1": -27.10522714598117, + "c2": 6.9238808664245255, + "c3": -44.37607419447806, + "c4": -41.1186676145511, + "c5": 21.935901338888314, + "c6": -3.915348044724169, + "c7": -46.745936224562875 }, - "vertexSeeds": { - "c1": 0.6779344632647857, - "c2": 0.5540915656953648, - "c3": 0.6415092768879962, - "c4": 0.5436562862092585, - "c5": 0.6182084171279062, - "c6": 0.6788541025894916, - "c7": 0.6122106768562076 + "offsets": { + "c1": 1.1650485436893203, + "c2": 0.9986130374479893, + "c3": 0.8321775312066573, + "c4": 0.6657420249653262, + "c5": 0.4993065187239947, + "c6": 0.3328710124826631, + "c7": 0.16643550624133155 }, "rgb": [58, 15, 49] }, @@ -150855,23 +150855,23 @@ "year": 1753, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 29.542752290721978, - "c2": 9.810028337282851, - "c3": 9.2597458996268, - "c4": 12.100117589041545, - "c5": -27.69446915569028, - "c6": 23.24816105280413, - "c7": 35.288155386276884 + "points": { + "c1": -22.864459978873242, + "c2": 26.55222842943003, + "c3": 32.747417337507656, + "c4": -1.3696526625954704, + "c5": -11.551568536521469, + "c6": -12.75142663868391, + "c7": 31.814612782982806 }, - "vertexSeeds": { - "c1": 5.827548413296936, - "c2": 6.013141042888231, - "c3": 5.781659536134544, - "c4": 5.818745166503252, - "c5": 6.228647452262391, - "c6": 5.615184660090195, - "c7": 6.029926007323398 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326395, + "c4": 5.973185390661112, + "c5": 4.479889042995831, + "c6": 2.9865926953305495, + "c7": 1.4932963476652679 }, "rgb": [86, 146, 138] }, @@ -150882,23 +150882,23 @@ "year": 1753, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": 19.475411522756993, - "c2": 7.86236050351804, - "c3": 19.38307098590814, - "c4": -14.851260966266025, - "c5": 26.158236755805923, - "c6": 22.732589756677932, - "c7": -49.301454594925104 + "points": { + "c1": -21.653602292653414, + "c2": 27.657223043129015, + "c3": -43.56987941128312, + "c4": 8.19106916951479, + "c5": 3.683320018231889, + "c6": 4.484523440387122, + "c7": -5.272586823128343 }, - "vertexSeeds": { - "c1": 5.1679551733301885, - "c2": 5.452468926780419, - "c3": 5.01634479238335, - "c4": 4.761292411734465, - "c5": 5.245551483136121, - "c6": 5.113842276998337, - "c7": 5.245146574329779 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342585, + "c3": 6.518723994452148, + "c4": 5.214979195561724, + "c5": 3.911234396671286, + "c6": 2.607489597780862, + "c7": 1.303744798890424 }, "rgb": [58, 15, 49] }, @@ -150909,23 +150909,23 @@ "year": 1752, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": -5.026303216616322, - "c2": 7.972413293376871, - "c3": -16.77785059881329, - "c4": 6.640354383305407, - "c5": -5.1776726668931445, - "c6": -4.606158181974909, - "c7": 1.337652603645477 + "points": { + "c1": 10.091805805237314, + "c2": 16.953099705627068, + "c3": 12.536924336200705, + "c4": 10.259250555786537, + "c5": -20.251868510317202, + "c6": -22.226524913009197, + "c7": -15.510374063650158 }, - "vertexSeeds": { - "c1": 5.733248366010963, - "c2": 5.597233775773755, - "c3": 5.595002947901311, - "c4": 5.61039630385305, - "c5": 5.672132077122085, - "c6": 5.559517666573719, - "c7": 5.787020112042717 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055488, + "c4": 5.547850208044397, + "c5": 4.160887656033307, + "c6": 2.7739251040221813, + "c7": 1.3869625520110906 }, "rgb": [58, 15, 49] }, @@ -150936,23 +150936,23 @@ "year": 1753, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 32.04176091577969, - "c2": -0.04956419664817702, - "c3": -10.814689276916162, - "c4": 33.8518728537604, - "c5": -3.8253360388592377, - "c6": -31.24393792939669, - "c7": -31.443529910127985 + "points": { + "c1": 12.407295276178097, + "c2": 25.642670427650224, + "c3": -9.15962605471644, + "c4": 33.63088946610759, + "c5": -25.03432056884229, + "c6": 5.252881611689588, + "c7": 9.019305354883194 }, - "vertexSeeds": { - "c1": 7.758984949913532, - "c2": 7.977671960268445, - "c3": 7.403079733035549, - "c4": 7.7716567595643244, - "c5": 7.822980314250822, - "c6": 7.824443953765086, - "c7": 7.8461505639976385 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611653, + "c3": 9.546925566343047, + "c4": 7.6375404530744415, + "c5": 5.728155339805836, + "c6": 3.8187702265372105, + "c7": 1.9093851132686053 }, "rgb": [58, 15, 49] }, @@ -150963,23 +150963,23 @@ "year": 1753, "resistanceReported": true, "duration": 32054400, - "curveSeeds": { - "c1": -13.023007169459227, - "c2": -36.97194792101531, - "c3": -12.342004607783494, - "c4": 14.395386305666719, - "c5": -28.866478604723888, - "c6": 36.483940226807775, - "c7": -24.7565487866877 + "points": { + "c1": 29.776611671902188, + "c2": -41.227907247044215, + "c3": -2.629377675830767, + "c4": -46.72451016222994, + "c5": 6.277051634444916, + "c6": 8.807509429606903, + "c7": 34.27735783292742 }, - "vertexSeeds": { - "c1": 4.780733032713397, - "c2": 4.257195926135051, - "c3": 4.445489643542267, - "c4": 4.186026879688731, - "c5": 4.69744380589587, - "c6": 4.551961702741673, - "c7": 4.401261796037049 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337033, + "c3": 5.940822931114196, + "c4": 4.752658344891354, + "c5": 3.5644937586685166, + "c6": 2.376329172445679, + "c7": 1.1881645862228423 }, "rgb": [238, 201, 159] }, @@ -150990,23 +150990,23 @@ "year": 1753, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 31.114745706698386, - "c2": -10.797067781030933, - "c3": 0.5908834052028809, - "c4": -13.016238036814194, - "c5": 29.015817786596443, - "c6": 6.641251223690098, - "c7": -23.459195912672328 + "points": { + "c1": -18.40746372705058, + "c2": -37.33829157456154, + "c3": 6.1760018256013325, + "c4": 18.70274791101145, + "c5": -11.209563152233336, + "c6": -23.54502334667445, + "c7": 35.07840036857944 }, - "vertexSeeds": { - "c1": 5.197360169059454, - "c2": 4.844488559951405, - "c3": 5.538567531165742, - "c4": 5.5862807731249315, - "c5": 5.058819279094273, - "c6": 5.019931994621242, - "c7": 4.802312496793989 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883499, + "c5": 4.077669902912622, + "c6": 2.718446601941747, + "c7": 1.3592233009708707 }, "rgb": [77, 76, 132] }, @@ -151017,23 +151017,23 @@ "year": 1753, "resistanceReported": true, "duration": 29116800, - "curveSeeds": { - "c1": 10.926203118921869, - "c2": -31.00837654828825, - "c3": 29.71550522824367, - "c4": -37.169068552479914, - "c5": 8.348605547940707, - "c6": -37.8871732353194, - "c7": 33.477556641298676 + "points": { + "c1": 23.10670509178435, + "c2": -41.75773081566266, + "c3": -5.532668689798335, + "c4": -28.97462799482289, + "c5": 35.63166204985319, + "c6": 29.754992751427707, + "c7": -20.023929313764178 }, - "vertexSeeds": { - "c1": 3.3282461557239587, - "c2": 3.5497486168984707, - "c3": 3.358050323244345, - "c4": 3.5853886930301613, - "c5": 3.7175411569982746, - "c6": 3.907473260598117, - "c7": 3.5675624240307076 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325937, + "c3": 4.785020804438278, + "c4": 3.828016643550623, + "c5": 2.8710124826629686, + "c6": 1.914008321775314, + "c7": 0.9570041608876546 }, "rgb": [77, 76, 132] }, @@ -151044,23 +151044,23 @@ "year": 1753, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": -46.596106739975625, - "c2": -20.745231328270883, - "c3": -19.145955207234664, - "c4": 28.081097935044596, - "c5": 28.313612356461718, - "c6": 25.838257634405878, - "c7": -0.27972812673127834 + "points": { + "c1": -50.366584091274845, + "c2": 27.434035426240754, + "c3": -5.133409281243026, + "c4": 40.961360760526006, + "c5": -61.71180303298016, + "c6": 33.7803499022949, + "c7": 33.781364939220595 }, - "vertexSeeds": { - "c1": 1.1298675073233209, - "c2": 1.1249538752897623, - "c3": 1.132755938226531, - "c4": 1.160232565402765, - "c5": 1.1306538543385491, - "c6": 1.161815422109354, - "c7": 1.188882353562392 + "offsets": { + "c1": 2.0388349514563107, + "c2": 1.747572815533981, + "c3": 1.4563106796116498, + "c4": 1.16504854368932, + "c5": 0.8737864077669905, + "c6": 0.5825242718446608, + "c7": 0.29126213592232963 }, "rgb": [86, 146, 138] }, @@ -151071,23 +151071,23 @@ "year": 1754, "resistanceReported": false, "duration": 53049600, - "curveSeeds": { - "c1": 63.95895645488241, - "c2": 7.5134465024613775, - "c3": 10.11381771522909, - "c4": 32.247312598868035, - "c5": 59.93232934199679, - "c6": -14.991052589640603, - "c7": -4.877130455853639 + "points": { + "c1": -2.944725421418511, + "c2": -51.47814136154658, + "c3": 42.659807815650325, + "c4": 58.159301982992304, + "c5": -60.79551565207322, + "c6": 37.32696370012319, + "c7": 59.84042684516817 }, - "vertexSeeds": { - "c1": 3.991024700153648, - "c2": 4.490821424024995, - "c3": 3.880841931401452, - "c4": 3.9784270038092093, - "c5": 4.4672113463349055, - "c6": 4.428257358859837, - "c7": 3.912617705529753 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [58, 15, 49] }, @@ -151098,23 +151098,23 @@ "year": 1753, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 7.040038116901989, - "c2": 4.417219605373951, - "c3": 26.61176384348456, - "c4": 10.565898746480123, - "c5": -7.774121403002766, - "c6": 2.859824922827741, - "c7": 3.2825847782362274 + "points": { + "c1": -17.275065954059706, + "c2": -22.952532738616707, + "c3": -9.371655389203653, + "c4": 38.1349216093786, + "c5": 4.787362068587441, + "c6": -32.97372935513262, + "c7": -29.587824073455423 }, - "vertexSeeds": { - "c1": 6.425724403300259, - "c2": 6.73269204303771, - "c3": 5.63422005677012, - "c4": 5.520010106101718, - "c5": 6.3621867039373825, - "c6": 5.243015583800057, - "c7": 6.085806760285298 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238559, + "c3": 8.183079056865468, + "c4": 6.546463245492375, + "c5": 4.909847434119276, + "c6": 3.273231622746184, + "c7": 1.636615811373092 }, "rgb": [77, 76, 132] }, @@ -151125,23 +151125,23 @@ "year": 1754, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": 19.104847827988287, - "c2": -6.17081142510105, - "c3": -54.40065997709719, - "c4": -27.131016176224115, - "c5": 15.367358801624128, - "c6": -61.287386419366264, - "c7": -57.80278767959845 + "points": { + "c1": 35.92512776199879, + "c2": -17.612818641697245, + "c3": 54.788114852476646, + "c4": 39.583778976475124, + "c5": 21.11441272885535, + "c6": -16.47315262153443, + "c7": 38.885233525436114 }, - "vertexSeeds": { - "c1": 5.06375339515229, - "c2": 4.256829565801384, - "c3": 4.425130261046506, - "c4": 4.521750097249588, - "c5": 5.06617279724107, - "c6": 4.3134895311696635, - "c7": 4.049701359412246 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -151152,23 +151152,23 @@ "year": 1753, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 7.840098379531305, - "c2": 32.74976436270265, - "c3": -27.77488729457227, - "c4": -0.11697079187194248, - "c5": -44.47041625626264, - "c6": 10.408921955773899, - "c7": -52.34872292516707 + "points": { + "c1": 51.76013782869077, + "c2": -23.36272431856857, + "c3": -29.778045756833727, + "c4": 4.841444327274559, + "c5": -24.84859160212024, + "c6": -39.11205449908709, + "c7": 38.88988789977124 }, - "vertexSeeds": { - "c1": 4.378087460058843, - "c2": 3.9313030433208747, - "c3": 3.990299089320764, - "c4": 3.8900293969191635, - "c5": 4.264282222750508, - "c6": 4.239671384468537, - "c7": 3.82406380433797 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -151179,23 +151179,23 @@ "year": 1753, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -0.23538764821491043, - "c2": -5.126591504037766, - "c3": 14.297833175484683, - "c4": -21.40484554573289, - "c5": 8.831533552412317, - "c6": -3.2937598106913306, - "c7": -29.680832696646437 + "points": { + "c1": -11.292479457607662, + "c2": -24.46849079699897, + "c3": 0.5715963089690703, + "c4": 30.108993041831795, + "c5": 2.5277588058288245, + "c6": 12.446369970912208, + "c7": 28.695605862187165 }, - "vertexSeeds": { - "c1": 7.319734089573582, - "c2": 6.829674643741121, - "c3": 7.151002062809855, - "c4": 6.8062644960566905, - "c5": 7.471346535530284, - "c6": 6.851963708589841, - "c7": 7.051610500971611 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -151206,23 +151206,23 @@ "year": 1753, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 4.193779279785403, - "c2": 14.904429920040847, - "c3": -32.062352685123884, - "c4": 11.962284744037298, - "c5": 6.9406235816163, - "c6": -34.80346700553101, - "c7": 22.230830712327503 + "points": { + "c1": 13.805022427575494, + "c2": 25.2156393746709, + "c3": -26.006166066872222, + "c4": 12.453976715174043, + "c5": 25.743199084897086, + "c6": 25.76091450888873, + "c7": -18.979704933793407 }, - "vertexSeeds": { - "c1": 7.426114470759828, - "c2": 6.876060208134545, - "c3": 6.928091146472989, - "c4": 7.384046473359975, - "c5": 7.3948247108136504, - "c6": 7.478724503531172, - "c7": 6.903821529112763 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -151233,23 +151233,23 @@ "year": 1752, "resistanceReported": true, "duration": 9072000, - "curveSeeds": { - "c1": 2.6384382193932936, - "c2": -16.042027510485955, - "c3": -10.647693006442417, - "c4": 9.81177871804812, - "c5": -11.684257192271934, - "c6": 15.267148256590893, - "c7": 8.774394382903441 + "points": { + "c1": 16.52867875019983, + "c2": -20.04882978510363, + "c3": 21.24934496360381, + "c4": 7.25198179264676, + "c5": 0.354088730381136, + "c6": 10.827586042020947, + "c7": 4.234034759254854 }, - "vertexSeeds": { - "c1": 1.2289748578121868, - "c2": 1.2414763606251864, - "c3": 1.3017072214329073, - "c4": 1.3480091631788371, - "c5": 1.250316173464649, - "c6": 1.2698637372763373, - "c7": 1.316464733786729 + "offsets": { + "c1": 2.2977346278317152, + "c2": 1.969486823855757, + "c3": 1.641239019879796, + "c4": 1.3129912159038375, + "c5": 0.9847434119278792, + "c6": 0.656495607951918, + "c7": 0.32824780397595976 }, "rgb": [238, 201, 159] }, @@ -151260,23 +151260,23 @@ "year": 1753, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": -6.089274424137145, - "c2": -25.675931859897624, - "c3": -14.951601066000919, - "c4": 12.843708365041401, - "c5": -10.99769951167211, - "c6": 35.49418036767481, - "c7": 31.92568708891644 + "points": { + "c1": -25.99871585753888, + "c2": -25.041287948024575, + "c3": -0.08598059824293358, + "c4": 34.87502142807997, + "c5": 0.5080265521849796, + "c6": -6.297843055046073, + "c7": 34.854278026038266 }, - "vertexSeeds": { - "c1": 4.802975668042517, - "c2": 4.9484086485556045, - "c3": 5.004856301116417, - "c4": 4.922024419122328, - "c5": 4.556106069823421, - "c6": 4.62875420664673, - "c7": 4.4847450578483645 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699027, + "c3": 6.148867313915859, + "c4": 4.9190938511326845, + "c5": 3.6893203883495165, + "c6": 2.4595469255663422, + "c7": 1.229773462783168 }, "rgb": [86, 146, 138] }, @@ -151287,23 +151287,23 @@ "year": 1753, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 25.44631721520645, - "c2": 23.864621725609354, - "c3": 13.7628215596242, - "c4": -24.20907207685955, - "c5": -36.8478646191524, - "c6": -4.331248774002219, - "c7": -6.869324012469477 + "points": { + "c1": -3.9764697678733754, + "c2": -21.041690715338813, + "c3": -9.020589169215611, + "c4": 31.57509379724449, + "c5": 17.44699757323282, + "c6": 20.487305578765522, + "c7": 35.156896699992146 }, - "vertexSeeds": { - "c1": 9.112064913770553, - "c2": 9.08769016142294, - "c3": 9.127789139699853, - "c4": 9.753827434639375, - "c5": 9.697546833478958, - "c6": 9.29654090337219, - "c7": 9.788798398207607 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593626, + "c3": 11.83541377716134, + "c4": 9.468331021729076, + "c5": 7.101248266296813, + "c6": 4.734165510864549, + "c7": 2.367082755432264 }, "rgb": [238, 201, 159] }, @@ -151314,23 +151314,23 @@ "year": 1753, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 24.552067137924034, - "c2": 41.68247488312132, - "c3": -2.9231201786442753, - "c4": -1.9119710129760605, - "c5": -21.63057088634715, - "c6": 23.22811285339285, - "c7": 33.79494041841081 + "points": { + "c1": 21.344646436117507, + "c2": 8.647967296693402, + "c3": 12.034496956773609, + "c4": 28.169060107717875, + "c5": -29.805536565708636, + "c6": -28.53153904616817, + "c7": 31.142634185578224 }, - "vertexSeeds": { - "c1": 7.87498699531717, - "c2": 7.899336030872471, - "c3": 7.999287241330727, - "c4": 8.224583937915769, - "c5": 8.695070657721432, - "c6": 8.59395937853306, - "c7": 8.664383771734483 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502082, + "c3": 10.633379565418402, + "c4": 8.506703652334721, + "c5": 6.380027739251041, + "c6": 4.253351826167361, + "c7": 2.1266759130836803 }, "rgb": [238, 201, 159] }, @@ -151341,23 +151341,23 @@ "year": 1753, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 39.89882238115191, - "c2": -46.602810739285246, - "c3": 40.32374277153257, - "c4": 3.308752208404698, - "c5": -35.508471391951794, - "c6": -6.067473759865997, - "c7": -21.690610772131325 + "points": { + "c1": 7.4903093027589875, + "c2": -44.06369328984156, + "c3": -44.3551257153955, + "c4": 13.47024958023497, + "c5": 14.786910401539167, + "c6": 13.994624307618686, + "c7": 25.44593582531038 }, - "vertexSeeds": { - "c1": 2.1106290397763203, - "c2": 2.1868850019757913, - "c3": 2.1930846975317864, - "c4": 2.3306339739378523, - "c5": 2.3678890054708512, - "c6": 2.286117795929407, - "c7": 2.1519606965366385 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.495145631067962, + "c3": 2.9126213592232997, + "c4": 2.33009708737864, + "c5": 1.747572815533981, + "c6": 1.1650485436893216, + "c7": 0.5825242718446593 }, "rgb": [58, 15, 49] }, @@ -151368,23 +151368,23 @@ "year": 1753, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -10.599968620926798, - "c2": -38.61306698325014, - "c3": 0.6519424906681834, - "c4": 5.564393408980202, - "c5": -24.378622049759706, - "c6": -32.67388896544552, - "c7": -20.845078084275247 + "points": { + "c1": -19.513406740890048, + "c2": 18.854791495861583, + "c3": -38.43548599764319, + "c4": -32.47723721438197, + "c5": 19.248750489056498, + "c6": 6.026072556575812, + "c7": 10.385641320018436 }, - "vertexSeeds": { - "c1": 5.462656717763045, - "c2": 5.434592598026019, - "c3": 5.4827163177883715, - "c4": 5.728762319630633, - "c5": 6.239944858397465, - "c6": 5.461963142018445, - "c7": 5.663525834552145 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554784, + "c3": 7.790106333795654, + "c4": 6.232085067036523, + "c5": 4.674063800277392, + "c6": 3.1160425335182613, + "c7": 1.5580212667591307 }, "rgb": [77, 76, 132] }, @@ -151395,23 +151395,23 @@ "year": 1753, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -13.989438716567214, - "c2": -31.155360637632143, - "c3": -38.59397028173598, - "c4": 4.896501197826595, - "c5": -10.583358952814272, - "c6": -39.53342852880199, - "c7": 17.25210028455396 + "points": { + "c1": -4.182418433154858, + "c2": 22.97441064172159, + "c3": 17.52552823169958, + "c4": -6.963010178159294, + "c5": -40.703014841449516, + "c6": -24.03387884484482, + "c7": 10.030287193190986 }, - "vertexSeeds": { - "c1": 2.660792803055718, - "c2": 2.7195469869688598, - "c3": 2.8768244912691405, - "c4": 2.8204268214075157, - "c5": 2.6768015600959205, - "c6": 2.6211159411670883, - "c7": 2.5450022509581904 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.467406380027739, + "c4": 2.773925104022191, + "c5": 2.080443828016643, + "c6": 1.3869625520110955, + "c7": 0.6934812760055478 }, "rgb": [238, 201, 159] }, @@ -151422,23 +151422,23 @@ "year": 1753, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 32.64985405114223, - "c2": -37.31228648134086, - "c3": -26.260170506321305, - "c4": -18.747102111412236, - "c5": 11.527200992913656, - "c6": 42.97654719575182, - "c7": -0.8137107271785808 + "points": { + "c1": 11.57760344186859, + "c2": -41.16462656740888, + "c3": -18.458171568813093, + "c4": 3.4465754987708053, + "c5": 3.8259576720393866, + "c6": -10.093370461313313, + "c7": 23.8300393695571 }, - "vertexSeeds": { - "c1": 7.844604838087038, - "c2": 8.061424494456501, - "c3": 7.636066931215889, - "c4": 8.043670122537854, - "c5": 7.889042752971026, - "c6": 7.648402464518074, - "c7": 7.699677926559456 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812751, + "c3": 9.662505779010647, + "c4": 7.730004623208511, + "c5": 5.797503467406376, + "c6": 3.865002311604272, + "c7": 1.932501155802136 }, "rgb": [86, 146, 138] }, @@ -151449,23 +151449,23 @@ "year": 1753, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -8.271692343665528, - "c2": -10.285345611786756, - "c3": 18.1515277627605, - "c4": -32.74406360776376, - "c5": -3.8994991014841887, - "c6": -27.24403947935227, - "c7": 0.34480741399979564 + "points": { + "c1": -21.449131927410942, + "c2": 19.88943972062912, + "c3": 29.336487032149932, + "c4": -21.284319227546323, + "c5": -19.80419439552059, + "c6": 24.6655118515301, + "c7": -19.448968503185693 }, - "vertexSeeds": { - "c1": 4.749238326147182, - "c2": 5.115989332927762, - "c3": 4.605567460791426, - "c4": 4.960075705178867, - "c5": 4.745415277100005, - "c6": 4.622090958821804, - "c7": 4.677859107100739 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -151476,23 +151476,23 @@ "year": 1753, "resistanceReported": false, "duration": 44236800, - "curveSeeds": { - "c1": 58.32232249455732, - "c2": -35.603475309392735, - "c3": 44.19698349708158, - "c4": -7.0706946158987165, - "c5": 39.03925942742759, - "c6": -36.78222837662511, - "c7": 14.676550548527366 + "points": { + "c1": 38.90101097187374, + "c2": -43.92662163788977, + "c3": -32.77448516364532, + "c4": -38.15409241754147, + "c5": 19.818586056673347, + "c6": 28.64657371450128, + "c7": -27.164072570198655 }, - "vertexSeeds": { - "c1": 2.559733824790131, - "c2": 2.7650619147358295, - "c3": 2.6543428779166818, - "c4": 2.581027325525268, - "c5": 2.749680761873104, - "c6": 2.594183686868289, - "c7": 2.5678900049909275 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.3980582524271865, + "c4": 2.718446601941751, + "c5": 2.038834951456307, + "c6": 1.3592233009708714, + "c7": 0.6796116504854357 }, "rgb": [238, 201, 159] }, @@ -151503,23 +151503,23 @@ "year": 1753, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -23.899958823652423, - "c2": -27.954525433296677, - "c3": -5.260094941060558, - "c4": -44.07998543485382, - "c5": -35.499165944325775, - "c6": -21.9830230618721, - "c7": 31.774605945151826 + "points": { + "c1": -20.325156793428206, + "c2": 9.591238374436784, + "c3": -31.89944885337423, + "c4": 26.401285595163934, + "c5": -44.70517009556293, + "c6": 22.66593150831384, + "c7": -36.628492524369676 }, - "vertexSeeds": { - "c1": 4.186366607638078, - "c2": 3.9176100856322065, - "c3": 4.232132092666193, - "c4": 4.244597142633954, - "c5": 4.231071413658781, - "c6": 3.9674671924244, - "c7": 4.125053516015276 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331485, + "c3": 5.362921867776239, + "c4": 4.290337494220988, + "c5": 3.2177531206657424, + "c6": 2.1451687471104965, + "c7": 1.0725843735552458 }, "rgb": [238, 201, 159] }, @@ -151530,23 +151530,23 @@ "year": 1753, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 0.6935101157769665, - "c2": -11.000828471630278, - "c3": 21.12855597549364, - "c4": -6.879600317459563, - "c5": -26.75268254815356, - "c6": 6.9587911165914065, - "c7": 11.084333514532908 + "points": { + "c1": 11.537168733398453, + "c2": 18.919501516321695, + "c3": 30.958841578286894, + "c4": -26.48469474086319, + "c5": 16.606799494738354, + "c6": -15.194201139103715, + "c7": 22.727989755072542 }, - "vertexSeeds": { - "c1": 6.046375354122961, - "c2": 6.282343575107445, - "c3": 5.340860550494742, - "c4": 5.652794106878817, - "c5": 5.462985399998103, - "c6": 5.998017108590459, - "c7": 6.131832758773459 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.582061950993988, + "c4": 6.065649560795197, + "c5": 4.549237170596397, + "c6": 3.0328247803975983, + "c7": 1.5164123901987991 }, "rgb": [86, 146, 138] }, @@ -151557,23 +151557,23 @@ "year": 1753, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -2.534603300709655, - "c2": 11.025629085365274, - "c3": -21.85746517802795, - "c4": -12.989912860835101, - "c5": -28.477931074265594, - "c6": 30.921736699515932, - "c7": -25.07304954456535 + "points": { + "c1": -31.771663407386978, + "c2": -10.293054772586327, + "c3": -35.81234090256836, + "c4": 20.515758958108066, + "c5": 4.570707264290313, + "c6": -23.933091709305977, + "c7": 18.792065819806282 }, - "vertexSeeds": { - "c1": 4.249940353798058, - "c2": 4.315734128549778, - "c3": 4.222891995233411, - "c4": 4.285942328319053, - "c5": 4.196894578235286, - "c6": 4.3421227993232465, - "c7": 4.268617646512139 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.2413314840499385, + "c3": 5.201109570041606, + "c4": 4.160887656033293, + "c5": 3.120665742024959, + "c6": 2.0804438280166466, + "c7": 1.0402219140083335 }, "rgb": [86, 146, 138] }, @@ -151584,23 +151584,23 @@ "year": 1753, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -39.14948479586497, - "c2": 12.12900009108904, - "c3": -38.35330485469147, - "c4": -28.55523671338472, - "c5": 25.723214069459672, - "c6": -7.650198228439159, - "c7": -7.912628102033715 + "points": { + "c1": -29.75820152238962, + "c2": 28.47422753096953, + "c3": 35.9640656546965, + "c4": -22.051516460842198, + "c5": -25.386187153184757, + "c6": 40.561333336036526, + "c7": 10.043068032878011 }, - "vertexSeeds": { - "c1": 5.052940168897254, - "c2": 5.247608818636053, - "c3": 5.456075726431624, - "c4": 5.371569480817782, - "c5": 4.853187865656597, - "c6": 5.192660517881119, - "c7": 5.133345965556573 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [86, 146, 138] }, @@ -151611,23 +151611,23 @@ "year": 1753, "resistanceReported": false, "duration": 40089600, - "curveSeeds": { - "c1": -37.50062050806704, - "c2": -53.4710452666701, - "c3": 35.01170309543529, - "c4": -18.37293771460797, - "c5": -42.01248895464681, - "c6": -51.883760903315185, - "c7": -3.9082323490394018 + "points": { + "c1": 45.20365076933319, + "c2": -29.183413638438918, + "c3": -27.96022563804926, + "c4": -33.244667189348476, + "c5": -27.091980898531403, + "c6": 45.11612716108659, + "c7": 12.111386784398341 }, - "vertexSeeds": { - "c1": 4.936318686761076, - "c2": 4.556367699610558, - "c3": 5.015807785261228, - "c4": 4.9174567818241135, - "c5": 4.561065335800183, - "c6": 4.576220394770845, - "c7": 4.771355965393932 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457702, + "c3": 6.010171058714749, + "c4": 4.808136846971797, + "c5": 3.606102635228851, + "c6": 2.404068423485905, + "c7": 1.2020342117429526 }, "rgb": [222, 0, 59] }, @@ -151638,23 +151638,23 @@ "year": 1753, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -28.365722821378018, - "c2": 12.164529886639933, - "c3": 12.466577631788738, - "c4": 25.469757787196485, - "c5": -18.30257080376574, - "c6": 9.54608448288311, - "c7": 1.2095421284006065 + "points": { + "c1": -31.880517488274364, + "c2": -23.534706696140265, + "c3": 12.160501059598118, + "c4": 14.11352071570468, + "c5": -33.034407433011204, + "c6": 18.17218226413148, + "c7": 14.019294910289346 }, - "vertexSeeds": { - "c1": 3.4769034191986568, - "c2": 3.376193716231846, - "c3": 3.3222855824837803, - "c4": 3.3824293024285255, - "c5": 3.1806323835402206, - "c6": 3.387939237318627, - "c7": 3.115919205537058 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [222, 0, 59] }, @@ -151665,23 +151665,23 @@ "year": 1753, "resistanceReported": false, "duration": 41644800, - "curveSeeds": { - "c1": -53.770662444363126, - "c2": 8.991154646491466, - "c3": -46.71971292559809, - "c4": 30.53198446713799, - "c5": -9.259951608704675, - "c6": -54.21135209945674, - "c7": -49.60521895079645 + "points": { + "c1": -9.793390152909453, + "c2": -17.913702159165616, + "c3": 41.67126281546311, + "c4": -29.617938683434915, + "c5": 45.73391320614027, + "c6": -28.063749520838552, + "c7": -50.158039545221 }, - "vertexSeeds": { - "c1": 1.4720726022845247, - "c2": 1.521418429694908, - "c3": 1.5061881730990656, - "c4": 1.4601338883237267, - "c5": 1.5106429193853148, - "c6": 1.4828028693890691, - "c7": 1.4658129577079362 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177517, + "c3": 1.8492834026814617, + "c4": 1.4794267221451678, + "c5": 1.1095700416088778, + "c6": 0.7397133610725839, + "c7": 0.3698566805362899 }, "rgb": [77, 76, 132] }, @@ -151692,23 +151692,23 @@ "year": 1754, "resistanceReported": true, "duration": 43977600, - "curveSeeds": { - "c1": 7.173204781007094, - "c2": -1.3778593558433343, - "c3": 6.688827131001126, - "c4": -17.683155794130542, - "c5": -36.02444633178571, - "c6": -50.39480695678007, - "c7": -15.63210341602398 + "points": { + "c1": -20.427289825676887, + "c2": -15.990081751023617, + "c3": 33.87548898499474, + "c4": -17.430972601391147, + "c5": 45.38919151708499, + "c6": -55.911197563582775, + "c7": -47.46751333749535 }, - "vertexSeeds": { - "c1": 4.200034902272627, - "c2": 4.218974966390988, - "c3": 4.231796083668662, - "c4": 4.235781953074454, - "c5": 4.2333022324086444, - "c6": 4.213409391723956, - "c7": 4.235018448461958 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.1026352288488495, + "c3": 5.085529357374008, + "c4": 4.068423485899234, + "c5": 3.0513176144243914, + "c6": 2.034211742949617, + "c7": 1.017105871474842 }, "rgb": [86, 146, 138] }, @@ -151719,23 +151719,23 @@ "year": 1753, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -34.88256522463529, - "c2": -13.94205447361282, - "c3": -13.838101516846958, - "c4": 29.18150389151903, - "c5": 13.659401831171387, - "c6": 6.455936219115621, - "c7": 0.4685469602945176 + "points": { + "c1": 7.126705069928299, + "c2": 35.72489380867435, + "c3": -30.604136187381584, + "c4": -19.521602253514278, + "c5": -2.6208269053977844, + "c6": -7.155054377720106, + "c7": -0.864375977806354 }, - "vertexSeeds": { - "c1": 2.3470929578386883, - "c2": 2.15543440903538, - "c3": 2.313573393351821, - "c4": 2.1773647735845603, - "c5": 2.229043806704909, - "c6": 2.3168330411387625, - "c7": 2.31375427022983 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.4674063800277386, + "c3": 2.8895053166897826, + "c4": 2.3116042533518257, + "c5": 1.7337031900138693, + "c6": 1.1558021266759129, + "c7": 0.5779010633379564 }, "rgb": [58, 15, 49] }, @@ -151746,23 +151746,23 @@ "year": 1753, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -48.180750619538884, - "c2": -8.23177738787033, - "c3": 14.894355385361159, - "c4": 48.12098446297566, - "c5": 27.183712453820256, - "c6": 43.60167954520987, - "c7": -33.27633710464621 + "points": { + "c1": 51.1929840317594, + "c2": -8.275972788556189, + "c3": -7.060179309905422, + "c4": 36.799123318153555, + "c5": -12.566245385992616, + "c6": -51.59286778673729, + "c7": -14.542042021051351 }, - "vertexSeeds": { - "c1": 4.420453997025453, - "c2": 4.417110722125988, - "c3": 4.795299838763388, - "c4": 4.522372787947811, - "c5": 4.40219879029867, - "c6": 4.33456471396482, - "c7": 4.325081896085936 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [58, 15, 49] }, @@ -151773,23 +151773,23 @@ "year": 1753, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 12.340889784258117, - "c2": -16.01431870080801, - "c3": -1.7596264084782192, - "c4": 40.150321576026194, - "c5": -3.91370428838961, - "c6": -12.473193778243317, - "c7": 14.82898961027648 + "points": { + "c1": 11.989707530033535, + "c2": -30.529653280546963, + "c3": -29.070544079695363, + "c4": 21.759149063324465, + "c5": -20.210479856839875, + "c6": -11.098198396277823, + "c7": -27.690194403374942 }, - "vertexSeeds": { - "c1": 5.590010267506006, - "c2": 5.3158501413777355, - "c3": 5.410569927654947, - "c4": 5.341335454423041, - "c5": 5.851531172975519, - "c6": 5.7946668016607354, - "c7": 5.583417542782341 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.7378640776699, + "c3": 7.281553398058249, + "c4": 5.825242718446596, + "c5": 4.368932038834957, + "c6": 2.9126213592233046, + "c7": 1.4563106796116523 }, "rgb": [222, 0, 59] }, @@ -151800,23 +151800,23 @@ "year": 1753, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 12.551967200243787, - "c2": 25.796792386987953, - "c3": 23.741025225976884, - "c4": 32.18239128493079, - "c5": 22.781463115606833, - "c6": -26.91222260927628, - "c7": -34.00942775082538 + "points": { + "c1": 27.482464309232114, + "c2": 28.995955803972805, + "c3": 18.319180282548047, + "c4": -13.453428060065352, + "c5": 8.858754763856219, + "c6": 26.819563785542528, + "c7": 33.960195949851624 }, - "vertexSeeds": { - "c1": 3.8950887259206817, - "c2": 4.197083200620761, - "c3": 4.15316365649709, - "c4": 4.120166324168255, - "c5": 4.107320908167959, - "c6": 4.069800601042298, - "c7": 3.788977289507976 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.201109570041606, + "c4": 4.160887656033286, + "c5": 3.120665742024966, + "c6": 2.0804438280166395, + "c7": 1.0402219140083198 }, "rgb": [86, 146, 138] }, @@ -151827,23 +151827,23 @@ "year": 1753, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -26.687392129864936, - "c2": -3.372410813451367, - "c3": 23.50510344847624, - "c4": 20.292384219683, - "c5": 35.37193597081251, - "c6": -33.04060405971792, - "c7": 27.908151925060587 + "points": { + "c1": -41.3754983394488, + "c2": -13.291437872967862, + "c3": -36.5672978972032, + "c4": -22.169337120142888, + "c5": 33.679498932402105, + "c6": -27.841588151640007, + "c7": -24.758111502970223 }, - "vertexSeeds": { - "c1": 4.04170811138971, - "c2": 3.8148434381273426, - "c3": 4.256760541724887, - "c4": 4.208646845866589, - "c5": 4.150286001524787, - "c6": 3.98669854894716, - "c7": 4.282727651814175 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -151854,23 +151854,23 @@ "year": 1753, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -23.258648935382414, - "c2": 34.85378676222544, - "c3": 16.60911307743649, - "c4": 35.66680835061389, - "c5": 24.592549177224214, - "c6": -3.6931040717191834, - "c7": 5.086376617484177 + "points": { + "c1": -16.672585305161725, + "c2": 15.873128653338128, + "c3": 5.673128529769997, + "c4": 8.33667980284411, + "c5": 14.795297555691803, + "c6": -23.083499953278572, + "c7": -25.822229571462294 }, - "vertexSeeds": { - "c1": 5.840198487167624, - "c2": 5.698785174842828, - "c3": 5.676444001276779, - "c4": 5.608078727761342, - "c5": 5.358134003723357, - "c6": 5.508502213064082, - "c7": 5.677973439665723 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594546, + "c4": 6.121128062875633, + "c5": 4.59084604715673, + "c6": 3.0605640314378166, + "c7": 1.5302820157189134 }, "rgb": [86, 146, 138] }, @@ -151881,23 +151881,23 @@ "year": 1753, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 45.137195971525564, - "c2": 35.68367692447165, - "c3": -9.238108605663818, - "c4": 32.531526800156065, - "c5": -9.036791507776655, - "c6": -13.330850133025926, - "c7": -20.389345878025768 + "points": { + "c1": 13.686087479449718, + "c2": -6.6090479318566935, + "c3": 7.6469931112569896, + "c4": -38.08085101899861, + "c5": -5.405762217264289, + "c6": 30.70773431753063, + "c7": 25.218417474503603 }, - "vertexSeeds": { - "c1": 2.5590449090359253, - "c2": 2.3372640840174337, - "c3": 2.5521831086011058, - "c4": 2.3496379438512696, - "c5": 2.563016359310067, - "c6": 2.632347631119722, - "c7": 2.5634379007768984 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692556, + "c4": 2.5889967637540443, + "c5": 1.9417475728155322, + "c6": 1.2944983818770204, + "c7": 0.6472491909385085 }, "rgb": [222, 0, 59] }, @@ -151908,23 +151908,23 @@ "year": 1753, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -17.124806325859666, - "c2": 14.366839750356291, - "c3": -20.75470139084295, - "c4": 23.914149469661837, - "c5": -24.7839869793052, - "c6": 3.972419922267612, - "c7": 4.860991704083965 + "points": { + "c1": 20.710196823111474, + "c2": 29.274625344549555, + "c3": 6.2102200306321365, + "c4": -15.859495587839117, + "c5": -10.295532468004339, + "c6": -0.8435770246709495, + "c7": 13.344555312456876 }, - "vertexSeeds": { - "c1": 3.336116244738903, - "c2": 3.2358268130988095, - "c3": 3.1614142732264057, - "c4": 3.234410529966074, - "c5": 3.083275793415516, - "c6": 3.0236874593582352, - "c7": 3.159835630066423 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998615, + "c3": 4.022191400832176, + "c4": 3.2177531206657433, + "c5": 2.4133148404993046, + "c6": 1.6088765603328716, + "c7": 0.8044382801664391 }, "rgb": [238, 201, 159] }, @@ -151935,23 +151935,23 @@ "year": 1753, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": -48.54251078532115, - "c2": -45.70605206570945, - "c3": -21.152959408627705, - "c4": 22.26279660415689, - "c5": 12.455736978962392, - "c6": 24.479043923989124, - "c7": 27.70163536875262 + "points": { + "c1": -44.767636172332914, + "c2": -27.66425056397977, + "c3": -35.97720609050313, + "c4": -24.28813110011373, + "c5": -21.10040226921884, + "c6": 32.47021301436261, + "c7": -6.8844796729823585 }, - "vertexSeeds": { - "c1": 2.734368390667602, - "c2": 2.40501521909263, - "c3": 2.7889389835105587, - "c4": 2.746734076308119, - "c5": 2.87948067797343, - "c6": 2.7974454598740963, - "c7": 2.931922568161062 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.513638465094777, + "c4": 2.8109107720758204, + "c5": 2.1081830790568685, + "c6": 1.4054553860379113, + "c7": 0.7027276930189544 }, "rgb": [86, 146, 138] }, @@ -151962,23 +151962,23 @@ "year": 1753, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -4.446540464979954, - "c2": -6.670950217401469, - "c3": 5.739081381253563, - "c4": 21.962727598411334, - "c5": 7.852794605661835, - "c6": -11.615325345356148, - "c7": 3.1785308610491185 + "points": { + "c1": 10.732316623246831, + "c2": 21.405150341064186, + "c3": -24.903077099234913, + "c4": -1.5972105617029229, + "c5": 7.062174064910565, + "c6": 5.598797418798462, + "c7": -13.99750783221494 }, - "vertexSeeds": { - "c1": 4.197754033377421, - "c2": 4.2665416819603115, - "c3": 5.050932859169669, - "c4": 5.208060987946698, - "c5": 5.3426147641441775, - "c6": 5.337964087280061, - "c7": 4.9810908132428455 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -151989,23 +151989,23 @@ "year": 1753, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 36.66047108107587, - "c2": 9.528020694569904, - "c3": -16.3703211567088, - "c4": 25.374795088231238, - "c5": 29.339110741889314, - "c6": -34.45536715737795, - "c7": 24.17982673670113 + "points": { + "c1": -8.384783130947696, + "c2": -41.432583142217254, + "c3": 16.920853274190044, + "c4": 27.029546925328447, + "c5": -38.5921180708854, + "c6": -41.045136420805825, + "c7": -26.648901643888436 }, - "vertexSeeds": { - "c1": 5.484405732823486, - "c2": 5.691815150750388, - "c3": 5.804461509464834, - "c4": 5.748387157611108, - "c5": 5.740146575505967, - "c6": 5.452413012660462, - "c7": 5.260086399123354 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589455, + "c3": 7.235321312991218, + "c4": 5.78825705039297, + "c5": 4.341192787794734, + "c6": 2.894128525196485, + "c7": 1.4470642625982488 }, "rgb": [86, 146, 138] }, @@ -152016,23 +152016,23 @@ "year": 1753, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -40.6261363452474, - "c2": -5.63546784494585, - "c3": -2.865041074543811, - "c4": -10.51190274033953, - "c5": 20.6359370254662, - "c6": 30.380431658515725, - "c7": 28.626272021595376 + "points": { + "c1": -36.98837748373542, + "c2": -0.1257027275643381, + "c3": -15.195046957406799, + "c4": -7.049215928913789, + "c5": -38.25050013183695, + "c6": 11.541339019056927, + "c7": -35.48089138054843 }, - "vertexSeeds": { - "c1": 3.5974727106508784, - "c2": 3.424626919223455, - "c3": 3.5283680238879542, - "c4": 3.3710570352181923, - "c5": 3.501059153170244, - "c6": 3.701974317080051, - "c7": 3.556061521869946 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435504, + "c4": 3.5506241331484096, + "c5": 2.662968099861307, + "c6": 1.7753120665742048, + "c7": 0.8876560332871024 }, "rgb": [77, 76, 132] }, @@ -152043,23 +152043,23 @@ "year": 1753, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 9.930119412932939, - "c2": -6.961251493820477, - "c3": 34.090731522053815, - "c4": -37.308190533308675, - "c5": -36.39434827657326, - "c6": -26.15555865988984, - "c7": 19.649716534468098 + "points": { + "c1": 33.04892690466794, + "c2": 32.82936965203744, + "c3": 12.639444634313193, + "c4": 33.0274513307528, + "c5": -32.27859686947536, + "c6": -7.864556658037813, + "c7": 41.5719351368425 }, - "vertexSeeds": { - "c1": 2.0845230932634222, - "c2": 1.9584758189034424, - "c3": 2.0881545214906643, - "c4": 2.233360422698455, - "c5": 2.0474178197851223, - "c6": 1.9780480692007414, - "c7": 1.9537266019222337 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746187, + "c3": 2.727693018955154, + "c4": 2.1821544151641232, + "c5": 1.6366158113730935, + "c6": 1.0910772075820634, + "c7": 0.5455386037910301 }, "rgb": [77, 76, 132] }, @@ -152070,23 +152070,23 @@ "year": 1753, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": 16.006355246206375, - "c2": 18.189382876165517, - "c3": 8.904497205955273, - "c4": 0.8692262357809817, - "c5": -20.170347431702638, - "c6": 2.7132596705899914, - "c7": 8.529472732567054 + "points": { + "c1": 9.71148963512396, + "c2": -3.1477738836766633, + "c3": -3.524371405673616, + "c4": -7.484808135113438, + "c5": -20.437735314592963, + "c6": 13.26945404420151, + "c7": 15.308269912953094 }, - "vertexSeeds": { - "c1": 2.829423021081223, - "c2": 2.7611961938812053, - "c3": 2.7379975196057273, - "c4": 2.619516353399835, - "c5": 2.563808019256555, - "c6": 2.6504690494508996, - "c7": 2.819019978452203 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -152097,23 +152097,23 @@ "year": 1754, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": 6.584737994693427, - "c2": -26.384700226121463, - "c3": -53.3152814198535, - "c4": -51.82033448210922, - "c5": 50.43350063839884, - "c6": 46.15095606763249, - "c7": -16.04484678339849 + "points": { + "c1": -0.3367426257236801, + "c2": -33.027153769348175, + "c3": -27.322589155400536, + "c4": -37.61723080866646, + "c5": -51.71829367042308, + "c6": 11.059420325382575, + "c7": 20.321502719514214 }, - "vertexSeeds": { - "c1": 5.737378578898599, - "c2": 5.742918141267538, - "c3": 5.39580630744043, - "c4": 5.85093011084728, - "c5": 5.925729253175886, - "c6": 5.899126253577093, - "c7": 5.716595749761599 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [77, 76, 132] }, @@ -152124,23 +152124,23 @@ "year": 1753, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": 36.41180123943195, - "c2": -8.63595164916702, - "c3": 36.92596337450209, - "c4": 33.14990401808842, - "c5": -40.57522760304798, - "c6": 14.869899470799936, - "c7": 27.237039400050577 + "points": { + "c1": 16.16387308572581, + "c2": 34.83724704660564, + "c3": 53.342362211659434, + "c4": -11.306187626256502, + "c5": -44.735242500124144, + "c6": 27.61662809379277, + "c7": 32.12181801792785 }, - "vertexSeeds": { - "c1": 4.042845795831906, - "c2": 3.835479911190703, - "c3": 3.7626123138575744, - "c4": 3.6341716463934506, - "c5": 3.992372891825389, - "c6": 3.5364118051584694, - "c7": 3.66634745525971 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [238, 201, 159] }, @@ -152151,23 +152151,23 @@ "year": 1754, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": 10.563448120367006, - "c2": -46.370187779141595, - "c3": -42.89528348628299, - "c4": -49.714978406772, - "c5": -41.479229911988284, - "c6": -3.336495349012175, - "c7": -44.099990163442875 + "points": { + "c1": 41.55385807983746, + "c2": -11.617187815014034, + "c3": 6.850042951843186, + "c4": 57.20318222345137, + "c5": 19.45446726954905, + "c6": 54.81264342850424, + "c7": 39.36076931599849 }, - "vertexSeeds": { - "c1": 3.47018317027324, - "c2": 3.9361401884690874, - "c3": 3.7665848227199654, - "c4": 3.955733127887223, - "c5": 4.008275912194246, - "c6": 4.059675720744654, - "c7": 3.462930900630733 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728154, + "c3": 5.016181229773463, + "c4": 4.01294498381877, + "c5": 3.009708737864077, + "c6": 2.006472491909385, + "c7": 1.0032362459546924 }, "rgb": [238, 201, 159] }, @@ -152178,23 +152178,23 @@ "year": 1753, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 24.630226983734495, - "c2": -17.77973545501772, - "c3": -25.802919885197973, - "c4": 16.547019835711822, - "c5": -17.044264265219027, - "c6": -10.392375474778042, - "c7": 3.0706014670658703 + "points": { + "c1": 38.496496809744535, + "c2": 8.279877306291645, + "c3": 22.945994751900635, + "c4": 38.77212611267675, + "c5": -27.20338086399193, + "c6": -3.338987087797676, + "c7": 24.447395137779047 }, - "vertexSeeds": { - "c1": 4.973194153696922, - "c2": 4.992442425607962, - "c3": 4.999406765353659, - "c4": 5.00842225397712, - "c5": 4.959670356476529, - "c6": 5.004391478846148, - "c7": 5.007882103832167 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457732, + "c3": 6.010171058714697, + "c4": 4.808136846971782, + "c5": 3.606102635228866, + "c6": 2.4040684234859504, + "c7": 1.2020342117429155 }, "rgb": [86, 146, 138] }, @@ -152205,23 +152205,23 @@ "year": 1753, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -0.22342890280467742, - "c2": 31.40438497766931, - "c3": -31.26268454578254, - "c4": 12.81665887269417, - "c5": -4.548791660664545, - "c6": -26.557542147245247, - "c7": -20.72554747156585 + "points": { + "c1": -32.03477720401147, + "c2": -26.877845159536925, + "c3": -33.482731799457056, + "c4": 25.273961552563144, + "c5": -7.312990988696139, + "c6": -17.48281227671819, + "c7": -31.05032680970055 }, - "vertexSeeds": { - "c1": 4.417260403372084, - "c2": 4.615218051307221, - "c3": 4.160326031694694, - "c4": 4.2827068190855115, - "c5": 4.183033092893764, - "c6": 4.729405924021423, - "c7": 4.465884287883929 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -152232,23 +152232,23 @@ "year": 1753, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 29.59182038569574, - "c2": 21.127863363900374, - "c3": 38.107729916279155, - "c4": 25.511617595218993, - "c5": -27.210402036798886, - "c6": -18.916760742870675, - "c7": 20.478860325386798 + "points": { + "c1": -22.835747684820053, + "c2": 8.443576441847718, + "c3": 36.17294526891217, + "c4": 11.400345573001488, + "c5": -32.95437677977757, + "c6": 33.68174877464672, + "c7": 36.04776173744217 }, - "vertexSeeds": { - "c1": 2.4260617659592043, - "c2": 2.4463048756168613, - "c3": 2.7625583141293895, - "c4": 2.6552917130032485, - "c5": 2.4004706399755205, - "c6": 2.633588219887173, - "c7": 2.6620170898508446 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791955, + "c3": 3.3287101248266286, + "c4": 2.6629680998613026, + "c5": 1.9972260748959758, + "c6": 1.3314840499306493, + "c7": 0.665742024965323 }, "rgb": [86, 146, 138] }, @@ -152259,23 +152259,23 @@ "year": 1753, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 37.41909391520781, - "c2": -0.9178294853267062, - "c3": -29.74642400224632, - "c4": -11.898020961764367, - "c5": 26.834073706805654, - "c6": 29.491460354187296, - "c7": 9.370871573022114 + "points": { + "c1": -11.998549872572077, + "c2": 23.252071417024716, + "c3": 9.142917004756399, + "c4": 8.024962620571166, + "c5": -8.614093098830935, + "c6": -8.373976247043867, + "c7": 23.012780104495036 }, - "vertexSeeds": { - "c1": 6.561915175642766, - "c2": 6.487018043135267, - "c3": 6.459764769829673, - "c4": 6.434202416736382, - "c5": 6.234297915836062, - "c6": 6.4948505801852, - "c7": 6.3553421438552204 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675464, + "c3": 7.859454461396204, + "c4": 6.287563569116976, + "c5": 4.715672676837716, + "c6": 3.143781784558488, + "c7": 1.5718908922792596 }, "rgb": [77, 76, 132] }, @@ -152286,23 +152286,23 @@ "year": 1753, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -29.594007747866883, - "c2": 20.884260628679712, - "c3": -18.20515829409189, - "c4": 27.98235713685125, - "c5": 16.48307705614493, - "c6": 7.731465674570323, - "c7": -25.532593865375148 + "points": { + "c1": 21.46643740788263, + "c2": -30.59450128198737, + "c3": 6.805502257458876, + "c4": -27.341527278038633, + "c5": -27.839409394514522, + "c6": -37.93562504905809, + "c7": -8.026057961877747 }, - "vertexSeeds": { - "c1": 2.027113426530514, - "c2": 2.054968080430728, - "c3": 2.0242672055926554, - "c4": 2.0477607086637106, - "c5": 2.024448923533664, - "c6": 2.031798996847264, - "c7": 2.030147407174884 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.968099861303734, + "c3": 2.4734165510864576, + "c4": 1.978733240869156, + "c5": 1.4840499306518795, + "c6": 0.989366620434578, + "c7": 0.49468331021730133 }, "rgb": [222, 0, 59] }, @@ -152313,23 +152313,23 @@ "year": 1753, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": 28.94262838618222, - "c2": 22.737492721426904, - "c3": 9.998297726737711, - "c4": -28.788402141390854, - "c5": 21.841772258697517, - "c6": -1.627708508767725, - "c7": -2.872672657510172 + "points": { + "c1": 12.093719947354188, + "c2": 2.6177432904433147, + "c3": 24.91684895616791, + "c4": -47.99551733641884, + "c5": -46.296424328072796, + "c6": -6.002127092123111, + "c7": -31.586057355433116 }, - "vertexSeeds": { - "c1": 8.007277968850556, - "c2": 7.945791961179563, - "c3": 8.235971991478031, - "c4": 8.37173477548164, - "c5": 8.28557462604288, - "c6": 8.599866338423238, - "c7": 8.24337420109093 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220523, + "c3": 10.471567267683781, + "c4": 8.377253814147021, + "c5": 6.282940360610262, + "c6": 4.18862690707352, + "c7": 2.09431345353676 }, "rgb": [77, 76, 132] }, @@ -152340,23 +152340,23 @@ "year": 1754, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -40.969847755458716, - "c2": 28.822480918452023, - "c3": 8.972980736334243, - "c4": -15.336708593850645, - "c5": -13.019563815635735, - "c6": -19.605946905214303, - "c7": -43.445940921661965 + "points": { + "c1": -36.58902994710546, + "c2": -10.319338703987746, + "c3": -18.75157641947056, + "c4": -4.644666483967434, + "c5": 42.18679893087607, + "c6": -14.856646109995964, + "c7": 33.28410475436572 }, - "vertexSeeds": { - "c1": 4.805348387072982, - "c2": 4.247596108517672, - "c3": 4.422120766838346, - "c4": 4.38578795746568, - "c5": 4.3493700890420435, - "c6": 4.286390654612976, - "c7": 4.231566806856595 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -152367,23 +152367,23 @@ "year": 1753, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": -21.639437742790005, - "c2": -26.144212387850956, - "c3": -24.49566786977007, - "c4": 6.154472379902039, - "c5": -13.32308067629328, - "c6": -17.71081117195522, - "c7": -23.681410732834575 + "points": { + "c1": 23.665524884016634, + "c2": 3.988660270112426, + "c3": 6.861170736299044, + "c4": 5.529110769427753, + "c5": 30.42538636652074, + "c6": -47.84806855239644, + "c7": 6.529830944236302 }, - "vertexSeeds": { - "c1": 0.7328569393113198, - "c2": 0.7013395862655895, - "c3": 0.7319642364434757, - "c4": 0.7360692306471199, - "c5": 0.7056411485372452, - "c6": 0.7253660691655701, - "c7": 0.6656014825216796 + "offsets": { + "c1": 1.262135922330097, + "c2": 1.0818307905686537, + "c3": 0.9015256588072125, + "c4": 0.7212205270457691, + "c5": 0.540915395284328, + "c6": 0.36061026352288456, + "c7": 0.18030513176144114 }, "rgb": [77, 76, 132] }, @@ -152394,23 +152394,23 @@ "year": 1753, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 17.038693704187885, - "c2": -9.373678122606524, - "c3": -3.0751777759348613, - "c4": -10.383506342267633, - "c5": -24.7276022559556, - "c6": 14.607878118274144, - "c7": 10.985288241623905 + "points": { + "c1": 14.307313994475692, + "c2": 12.642899251327563, + "c3": -6.90914353903268, + "c4": -10.48161921731863, + "c5": -21.720726359155904, + "c6": -26.230172142054514, + "c7": -4.893524597644593 }, - "vertexSeeds": { - "c1": 2.8192953372309004, - "c2": 2.740336477197973, - "c3": 2.6229611475614707, - "c4": 2.6504976858752025, - "c5": 2.8303119615791648, - "c6": 2.742016058875045, - "c7": 2.8438625868890783 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.4674063800277417, + "c4": 2.7739251040221955, + "c5": 2.0804438280166395, + "c6": 1.386962552011093, + "c7": 0.6934812760055465 }, "rgb": [58, 15, 49] }, @@ -152421,23 +152421,23 @@ "year": 1753, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -15.218431877746589, - "c2": 2.9679245159764953, - "c3": 15.42328630400893, - "c4": 11.16262439440926, - "c5": 4.5866293836774865, - "c6": 2.1308903647330553, - "c7": 19.40519937620139 + "points": { + "c1": -12.569243464143522, + "c2": -3.8982761359846307, + "c3": 13.296379391255368, + "c4": -3.982662469469364, + "c5": 5.799650255108194, + "c6": 25.083471810330092, + "c7": -26.48663392973865 }, - "vertexSeeds": { - "c1": 1.4589374181711734, - "c2": 1.5864969763539454, - "c3": 1.7020374625231585, - "c4": 1.6116678455401665, - "c5": 1.6295235979613003, - "c6": 1.547175222477737, - "c7": 1.6161261737817416 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797515, + "c3": 2.057327785483127, + "c4": 1.6458622283864999, + "c5": 1.2343966712898757, + "c6": 0.8229311141932513, + "c7": 0.4114655570966269 }, "rgb": [77, 76, 132] }, @@ -152448,23 +152448,23 @@ "year": 1754, "resistanceReported": false, "duration": 48902400, - "curveSeeds": { - "c1": -26.83495950048765, - "c2": 40.09530370530757, - "c3": 62.679521088182895, - "c4": 55.30255233790501, - "c5": -45.376179366761725, - "c6": -11.187335559814727, - "c7": -4.573509105116415 + "points": { + "c1": 24.919767669416018, + "c2": 19.745396034946637, + "c3": -56.312115350250814, + "c4": -44.73276742433042, + "c5": 20.28465790835564, + "c6": 28.30960569470342, + "c7": 22.243708242993918 }, - "vertexSeeds": { - "c1": 3.068896059290495, - "c2": 3.0443899706054838, - "c3": 3.0499538114635802, - "c4": 3.197678941563336, - "c5": 3.2291301133152235, - "c6": 3.056257160197707, - "c7": 3.0092062969968287 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -152475,23 +152475,23 @@ "year": 1753, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 11.223262459568865, - "c2": 35.30535005992189, - "c3": 15.670911593822659, - "c4": -9.255733025209611, - "c5": -26.132546241636323, - "c6": -32.27697354420039, - "c7": -6.536129154527902 + "points": { + "c1": -11.99103691475539, + "c2": 5.0100200183011125, + "c3": -3.707104506481201, + "c4": -10.079465605883595, + "c5": 19.537756323108283, + "c6": 19.855378703904456, + "c7": -15.368368113049026 }, - "vertexSeeds": { - "c1": 1.986829628229216, - "c2": 1.9023418270148145, - "c3": 1.8303957193863079, - "c4": 1.9505160933119075, - "c5": 1.9931051013891823, - "c6": 2.1113942247383823, - "c7": 2.0134446691412773 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.588996763754045, + "c4": 2.071197411003236, + "c5": 1.5533980582524272, + "c6": 1.035598705501618, + "c7": 0.517799352750809 }, "rgb": [86, 146, 138] }, @@ -152502,23 +152502,23 @@ "year": 1753, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 27.5225445338439, - "c2": -10.177191588145362, - "c3": 5.819861462459841, - "c4": -22.225051622837015, - "c5": -18.612727062916107, - "c6": 7.629849003381651, - "c7": 17.860493329522903 + "points": { + "c1": -19.25356314094931, + "c2": 0.20590630920779063, + "c3": 12.758036124722906, + "c4": -7.904570145929323, + "c5": -6.504577690227713, + "c6": -26.794168459768912, + "c7": -3.154285568527378 }, - "vertexSeeds": { - "c1": 8.854663591362474, - "c2": 7.866047791084439, - "c3": 8.875964658351137, - "c4": 9.385099405614323, - "c5": 8.033523311819204, - "c6": 9.190467493226485, - "c7": 8.931589835800269 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.59223300970874, + "c3": 11.326860841423942, + "c4": 9.061488673139156, + "c5": 6.79611650485437, + "c6": 4.530744336569583, + "c7": 2.2653721682847867 }, "rgb": [77, 76, 132] }, @@ -152529,23 +152529,23 @@ "year": 1754, "resistanceReported": false, "duration": 46310400, - "curveSeeds": { - "c1": -12.631338399093082, - "c2": -30.76799159846963, - "c3": -4.4410378199098375, - "c4": -0.17582595056084216, - "c5": -7.483986266109255, - "c6": 36.40281573179453, - "c7": 12.909988144061614 + "points": { + "c1": -4.45850617697986, + "c2": 13.145399538045481, + "c3": 26.699031649529772, + "c4": -40.07372303716387, + "c5": -13.993734100533594, + "c6": 21.024369453134085, + "c7": -15.0881907298688 }, - "vertexSeeds": { - "c1": 4.15122255676945, - "c2": 4.563826643466749, - "c3": 4.4298162537063375, - "c4": 4.448903609388656, - "c5": 4.750145663160967, - "c6": 4.443807568079969, - "c7": 4.561446114801234 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [86, 146, 138] }, @@ -152556,23 +152556,23 @@ "year": 1753, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -23.19074262719437, - "c2": -8.208074207299973, - "c3": 47.92271323951424, - "c4": -10.474447689872626, - "c5": -8.747656980291055, - "c6": -24.74918897703883, - "c7": -8.775240650866678 + "points": { + "c1": 2.1160133041590967, + "c2": -24.208385344982297, + "c3": -44.54399368633259, + "c4": 19.498470372247738, + "c5": 32.841280808769895, + "c6": 9.625827691234612, + "c7": -12.996988062945796 }, - "vertexSeeds": { - "c1": 6.767805039452456, - "c2": 5.830469617689434, - "c3": 6.477143580999599, - "c4": 5.787588709584166, - "c5": 6.371547540050704, - "c6": 6.1089251454214395, - "c7": 6.1027919838808895 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439672, + "c3": 8.298659269533054, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132243, + "c7": 1.6597318539066068 }, "rgb": [58, 15, 49] }, @@ -152583,23 +152583,23 @@ "year": 1753, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -32.662581102182486, - "c2": 15.337277262839152, - "c3": 29.956648459570815, - "c4": -9.686204957434235, - "c5": 1.9991036446009005, - "c6": -3.6781122197622196, - "c7": -28.939671762077587 + "points": { + "c1": 34.315775189959524, + "c2": -28.698671009669216, + "c3": 38.01379284099447, + "c4": -2.849429733236562, + "c5": -5.697698342583351, + "c6": -39.745433751146614, + "c7": 17.519342298678552 }, - "vertexSeeds": { - "c1": 3.498607604484687, - "c2": 3.139359794349598, - "c3": 3.3292388931942414, - "c4": 3.3985133674808785, - "c5": 3.1478366501153228, - "c6": 3.1347048432730666, - "c7": 3.168007032833168 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [58, 15, 49] }, @@ -152610,23 +152610,23 @@ "year": 1753, "resistanceReported": false, "duration": 6480000, - "curveSeeds": { - "c1": -2.7513462409835245, - "c2": -8.251030687119467, - "c3": -6.174537902338066, - "c4": -3.6847036775732604, - "c5": -15.861305362799602, - "c6": -2.5237879920992192, - "c7": 9.099566627610866 + "points": { + "c1": 9.044249512187395, + "c2": -11.476186145291189, + "c3": -14.920228313045683, + "c4": 10.912156107141655, + "c5": -17.32943558611066, + "c6": -11.018053197469866, + "c7": -1.7972217784047118 }, - "vertexSeeds": { - "c1": 4.009156745229983, - "c2": 3.7805701926685673, - "c3": 2.995405123870475, - "c4": 2.689819741341476, - "c5": 2.4762441345279282, - "c6": 3.2444231129789873, - "c7": 3.4222748735855846 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446602, + "c3": 4.8543689320388355, + "c4": 3.8834951456310667, + "c5": 2.9126213592233, + "c6": 1.9417475728155333, + "c7": 0.9708737864077667 }, "rgb": [86, 146, 138] }, @@ -152637,23 +152637,23 @@ "year": 1753, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -22.27484181064548, - "c2": -30.24457865072909, - "c3": -23.523369473646937, - "c4": 4.789954384570933, - "c5": 17.721904472212046, - "c6": 30.133009697105237, - "c7": 31.04029688463993 + "points": { + "c1": 3.7099166666303063, + "c2": 13.842009227308608, + "c3": -14.310291774765357, + "c4": 32.15508733333746, + "c5": -31.346538091923154, + "c6": 17.75692165357416, + "c7": -8.773814260703539 }, - "vertexSeeds": { - "c1": 3.520596036341433, - "c2": 3.4832021834805076, - "c3": 3.926571401760505, - "c4": 3.862133157041229, - "c5": 3.85447822780758, - "c6": 3.7180337740600597, - "c7": 3.7185943607055894 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.85298196948682, + "c3": 4.877484974572353, + "c4": 3.9019879796578802, + "c5": 2.9264909847434133, + "c6": 1.9509939898289401, + "c7": 0.9754969949144668 }, "rgb": [86, 146, 138] }, @@ -152664,23 +152664,23 @@ "year": 1753, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -36.12510778005226, - "c2": -32.28753346871329, - "c3": -35.83793268326916, - "c4": -34.2453574253866, - "c5": -33.13053917904699, - "c6": -18.564199264451247, - "c7": 4.336151753617422 + "points": { + "c1": -36.45189618289399, + "c2": 46.672586634848074, + "c3": 23.33256855647582, + "c4": -23.035277018787056, + "c5": 38.14715152039189, + "c6": 3.084978973689644, + "c7": -25.657080722323688 }, - "vertexSeeds": { - "c1": 10.54002861814437, - "c2": 10.53113138305685, - "c3": 10.52421815614457, - "c4": 9.85056120267231, - "c5": 10.322388566615805, - "c6": 10.05488347768775, - "c7": 10.717620785669503 + "offsets": { + "c1": 17.928802588996763, + "c2": 15.367545076282948, + "c3": 12.806287563569134, + "c4": 10.24503005085528, + "c5": 7.683772538141465, + "c6": 5.122515025427649, + "c7": 2.5612575127138335 }, "rgb": [238, 201, 159] }, @@ -152691,23 +152691,23 @@ "year": 1753, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -35.134481835641886, - "c2": 24.188637258546905, - "c3": -37.84337021209214, - "c4": -2.5022929154809432, - "c5": 11.726942707931215, - "c6": -14.874787200376563, - "c7": -16.6360951702535 + "points": { + "c1": 30.258243001165795, + "c2": 9.536651160019261, + "c3": 18.808316382939452, + "c4": -17.530325407399136, + "c5": -10.665655423211625, + "c6": -35.41385068147907, + "c7": -25.859399530527604 }, - "vertexSeeds": { - "c1": 9.840996232194803, - "c2": 9.611640130700989, - "c3": 9.771832103928038, - "c4": 10.11234345225874, - "c5": 9.657283156581192, - "c6": 9.598109607747643, - "c7": 9.88442467685017 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076292, + "c3": 12.112806287563567, + "c4": 9.690245030050862, + "c5": 7.267683772538137, + "c6": 4.845122515025431, + "c7": 2.4225612575127244 }, "rgb": [77, 76, 132] }, @@ -152718,23 +152718,23 @@ "year": 1753, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -17.55320924718434, - "c2": 28.322990714438475, - "c3": 33.99483946178559, - "c4": -1.9571854918844025, - "c5": 0.8760362832966209, - "c6": -2.9124317898501673, - "c7": -23.526580754994388 + "points": { + "c1": 4.387296571420201, + "c2": 20.54941073600721, + "c3": 3.2758471417964117, + "c4": 31.676327271531733, + "c5": -10.743850041263912, + "c6": 11.420392428602241, + "c7": -28.81618024430915 }, - "vertexSeeds": { - "c1": 5.346079993958754, - "c2": 5.4670060765718285, - "c3": 5.303502773918117, - "c4": 5.056359220423223, - "c5": 5.215306324414212, - "c6": 5.038219632649271, - "c7": 5.039161979223867 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543683, + "c3": 6.634304207119742, + "c4": 5.307443365695787, + "c5": 3.9805825242718447, + "c6": 2.6537216828478902, + "c7": 1.3268608414239482 }, "rgb": [77, 76, 132] }, @@ -152745,23 +152745,23 @@ "year": 1754, "resistanceReported": true, "duration": 39830400, - "curveSeeds": { - "c1": -44.50955479828578, - "c2": 8.713149298549325, - "c3": 23.22012122140447, - "c4": 35.818970830385226, - "c5": -12.014149788664916, - "c6": 30.30242200936243, - "c7": 40.105302608330945 + "points": { + "c1": 11.856441709706985, + "c2": -9.134834690472097, + "c3": 29.17876553931869, + "c4": 29.718245119137507, + "c5": 30.327450138463192, + "c6": 47.14100235194435, + "c7": -11.68780950132198 }, - "vertexSeeds": { - "c1": 1.3358570121870583, - "c2": 1.2131429961402558, - "c3": 1.1913462230245109, - "c4": 1.3104932094388266, - "c5": 1.2129093312222905, - "c6": 1.2589570636757912, - "c7": 1.3117486241836713 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155345, + "c3": 1.618122977346279, + "c4": 1.2944983818770237, + "c5": 0.9708737864077682, + "c6": 0.6472491909385129, + "c7": 0.3236245954692554 }, "rgb": [77, 76, 132] }, @@ -152772,23 +152772,23 @@ "year": 1754, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": -19.062426302658714, - "c2": -43.69013953976526, - "c3": 36.475091490828405, - "c4": -12.5492683900639, - "c5": -34.391880261110714, - "c6": 14.417392512030517, - "c7": -47.036940018624236 + "points": { + "c1": -50.05793015599739, + "c2": 25.656979936019624, + "c3": -29.68422854529092, + "c4": 14.035675266843029, + "c5": -51.616525198254486, + "c6": 26.64538475361134, + "c7": 12.871064811053017 }, - "vertexSeeds": { - "c1": 2.871375165642042, - "c2": 3.0154818497620735, - "c3": 2.9814590850597615, - "c4": 3.02972204757002, - "c5": 2.8836783480888726, - "c6": 2.9868926003943086, - "c7": 2.823589529566297 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435509, + "c3": 3.6985668053629253, + "c4": 2.9588534442903422, + "c5": 2.2191400832177495, + "c6": 1.4794267221451662, + "c7": 0.7397133610725831 }, "rgb": [77, 76, 132] }, @@ -152799,23 +152799,23 @@ "year": 1753, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 27.701887040821305, - "c2": -28.98262985876171, - "c3": 21.727108737678222, - "c4": -10.289933741965854, - "c5": -15.272302301156916, - "c6": 5.958695000594446, - "c7": -29.38211810953976 + "points": { + "c1": 31.353106301111495, + "c2": 31.834909487382248, + "c3": -4.902051697518317, + "c4": 10.086343284157607, + "c5": -3.5553311673917705, + "c6": -39.937340174374995, + "c7": -28.89356922365466 }, - "vertexSeeds": { - "c1": 4.674314796120813, - "c2": 4.673287369785627, - "c3": 4.675557804352361, - "c4": 4.581093476019509, - "c5": 4.128939911972827, - "c6": 4.411833773010814, - "c7": 4.062284009608035 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -152826,23 +152826,23 @@ "year": 1753, "resistanceReported": false, "duration": 5616000, - "curveSeeds": { - "c1": 15.131984116471578, - "c2": 4.689980726909063, - "c3": 15.21553849831156, - "c4": -8.647749034914149, - "c5": -3.044314688433932, - "c6": 8.523526477980493, - "c7": 0.9487778020972328 + "points": { + "c1": -3.399460313588488, + "c2": -8.762132663134617, + "c3": 0.6011957082996418, + "c4": -11.910255123517334, + "c5": -5.071749531797444, + "c6": -7.266479242231281, + "c7": 14.58029959084838 }, - "vertexSeeds": { - "c1": 5.886198671798711, - "c2": 5.779325283534188, - "c3": 5.38691052995304, - "c4": 6.2367469118118715, - "c5": 5.298413683902488, - "c6": 6.003281382019158, - "c7": 5.326852436932654 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152569, + "c3": 7.558945908460477, + "c4": 6.0471567267683755, + "c5": 4.5353675450762845, + "c6": 3.023578363384193, + "c7": 1.511789181692102 }, "rgb": [86, 146, 138] }, @@ -152853,23 +152853,23 @@ "year": 1753, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -1.4165004803182981, - "c2": -21.515183077998056, - "c3": 4.932205548336384, - "c4": 8.383255117792885, - "c5": 1.8180845834160024, - "c6": 1.4894776829793628, - "c7": 31.98507131720953 + "points": { + "c1": -10.285550260233144, + "c2": 5.893991652420048, + "c3": 12.073918060813952, + "c4": 33.55626224000265, + "c5": -5.58517666224963, + "c6": -5.549122074422755, + "c7": 4.6040207957953925 }, - "vertexSeeds": { - "c1": 7.18957967577955, - "c2": 6.797748328236531, - "c3": 7.240928336610088, - "c4": 6.94224002552712, - "c5": 7.0101392576421855, - "c6": 7.32502236811477, - "c7": 7.402200470697389 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.62413314840499, + "c3": 8.853444290337487, + "c4": 7.082755432269987, + "c5": 5.312066574202484, + "c6": 3.5413777161350035, + "c7": 1.7706888580675018 }, "rgb": [77, 76, 132] }, @@ -152880,23 +152880,23 @@ "year": 1754, "resistanceReported": false, "duration": 39052800, - "curveSeeds": { - "c1": 4.077122419818295, - "c2": 27.286264901878624, - "c3": -4.270390875636259, - "c4": -46.734006483206834, - "c5": 51.85129761219498, - "c6": -19.834368503662063, - "c7": 26.3458090962002 + "points": { + "c1": -7.829877756338043, + "c2": -1.8861492215111113, + "c3": 17.70993547737926, + "c4": 36.7834416524785, + "c5": -44.88754468637402, + "c6": -52.01130558189531, + "c7": 39.50404944542204 }, - "vertexSeeds": { - "c1": 1.5277976480594293, - "c2": 1.5675269822711864, - "c3": 1.496649148971139, - "c4": 1.5802550054807003, - "c5": 1.5437626116204997, - "c6": 1.5780391693555647, - "c7": 1.4326631056954198 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820163, + "c4": 1.5349052242256112, + "c5": 1.1511789181692107, + "c6": 0.7674526121128056, + "c7": 0.38372630605640495 }, "rgb": [238, 201, 159] }, @@ -152907,23 +152907,23 @@ "year": 1753, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 13.102654813487703, - "c2": 36.485655255768904, - "c3": -16.2007721368145, - "c4": 14.12318787104504, - "c5": 34.9109281678231, - "c6": -27.028262090224626, - "c7": -8.969594735563234 + "points": { + "c1": -33.21428090319001, + "c2": -38.16592322653131, + "c3": 8.017278728762015, + "c4": 30.167726601875287, + "c5": -4.482713181554615, + "c6": 5.078020549376177, + "c7": 25.623416505955475 }, - "vertexSeeds": { - "c1": 5.4891301719909595, - "c2": 5.40432635571098, - "c3": 5.252443809562484, - "c4": 5.77822111177354, - "c5": 5.240939394826629, - "c6": 5.890575932756452, - "c7": 6.168797770303602 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594546, + "c4": 6.121128062875633, + "c5": 4.59084604715673, + "c6": 3.0605640314378166, + "c7": 1.5302820157189134 }, "rgb": [77, 76, 132] }, @@ -152934,23 +152934,23 @@ "year": 1753, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -13.334154578788276, - "c2": 9.103901070915839, - "c3": 18.493521414185714, - "c4": 3.6109479888317253, - "c5": 23.716646718814978, - "c6": -29.26504397208363, - "c7": 2.8328742433582406 + "points": { + "c1": -12.53513626953119, + "c2": -28.163004308885263, + "c3": -14.071657074196587, + "c4": 20.464081661294507, + "c5": 34.88214731157444, + "c6": 20.05430605380696, + "c7": -2.4911281118939783 }, - "vertexSeeds": { - "c1": 4.492680046479836, - "c2": 4.314800944313723, - "c3": 4.1526659307920495, - "c4": 4.681054728427335, - "c5": 4.119927174783088, - "c6": 4.334561140434666, - "c7": 4.253375990158259 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -152961,23 +152961,23 @@ "year": 1753, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -11.314418251614537, - "c2": -20.882125840945868, - "c3": 0.9567734515588597, - "c4": 27.199143128909533, - "c5": 19.43254564272072, - "c6": -17.36357627554227, - "c7": -13.595691440886032 + "points": { + "c1": -23.558941553187417, + "c2": 15.798542198724498, + "c3": -29.245291084635735, + "c4": 30.524557860827343, + "c5": 22.147115138863803, + "c6": -29.719085162736036, + "c7": 32.9299590089682 }, - "vertexSeeds": { - "c1": 3.6930673045565836, - "c2": 3.5868068049261757, - "c3": 3.999896981393882, - "c4": 3.9647144861841013, - "c5": 3.719020262363456, - "c6": 3.634739826296397, - "c7": 3.710712176235904 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768375, + "c3": 5.039297272306982, + "c4": 4.031437817845583, + "c5": 3.0235783633841895, + "c6": 2.0157189089227914, + "c7": 1.0078594544613932 }, "rgb": [222, 0, 59] }, @@ -152988,23 +152988,23 @@ "year": 1754, "resistanceReported": false, "duration": 49420800, - "curveSeeds": { - "c1": 43.22293661878889, - "c2": 61.76013283640667, - "c3": 56.201900198434885, - "c4": 37.68404264870405, - "c5": 28.2737692451515, - "c6": -55.50192120384807, - "c7": 31.201755112340777 + "points": { + "c1": 20.524466586564827, + "c2": -2.965410580194934, + "c3": -40.950605373025894, + "c4": 58.15254457505064, + "c5": -5.654731268595967, + "c6": -46.95244100558966, + "c7": 10.512699820563412 }, - "vertexSeeds": { - "c1": 0.3946138437759775, - "c2": 0.46124299631779575, - "c3": 0.3784854612967192, - "c4": 0.3710414966045771, - "c5": 0.4401175884839881, - "c6": 0.3734754099990701, - "c7": 0.4609921763020746 + "offsets": { + "c1": 0.8414239482200648, + "c2": 0.7212205270457699, + "c3": 0.6010171058714749, + "c4": 0.48081368469718017, + "c5": 0.3606102635228852, + "c6": 0.2404068423485898, + "c7": 0.12020342117429542 }, "rgb": [77, 76, 132] }, @@ -153015,23 +153015,23 @@ "year": 1753, "resistanceReported": true, "duration": 33868800, - "curveSeeds": { - "c1": 14.97481734625731, - "c2": 2.409343757279153, - "c3": 19.194337666394873, - "c4": 1.7875047509953959, - "c5": 33.685987090157965, - "c6": 5.769282922222722, - "c7": 44.319260033269146 + "points": { + "c1": -9.947830111820295, + "c2": -46.14747051316455, + "c3": 5.965225634791317, + "c4": 7.623594541249176, + "c5": -18.85738718994663, + "c6": 19.139866115382617, + "c7": -8.376613979815758 }, - "vertexSeeds": { - "c1": 4.564308415963492, - "c2": 2.8346659170744695, - "c3": 4.807728196008114, - "c4": 4.889787650621146, - "c5": 3.387558556479284, - "c6": 4.852341525383951, - "c7": 5.088354235905159 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061025, + "c3": 6.356911696717523, + "c4": 5.085529357374017, + "c5": 3.8141470180305133, + "c6": 2.5427646786870093, + "c7": 1.2713823393435038 }, "rgb": [77, 76, 132] }, @@ -153042,23 +153042,23 @@ "year": 1754, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": -15.0266227784971, - "c2": -19.615793929389625, - "c3": 46.0736465749815, - "c4": -20.505387994792176, - "c5": -2.606967597130634, - "c6": -7.923775424222121, - "c7": -1.0362180732587731 + "points": { + "c1": 45.41226356979309, + "c2": 31.375412997708843, + "c3": -40.07339555965562, + "c4": -31.015192649212988, + "c5": 4.914047852850011, + "c6": -32.304851511034094, + "c7": 26.667932299968605 }, - "vertexSeeds": { - "c1": 2.0254603076701394, - "c2": 1.9875793197464786, - "c3": 2.207145917766743, - "c4": 2.035085925032818, - "c5": 2.259105427304067, - "c6": 2.2404043449608477, - "c7": 2.060637995539649 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.439667128987519, + "c3": 2.866389274156264, + "c4": 2.2931114193250126, + "c5": 1.7198335644937581, + "c6": 1.1465557096625063, + "c7": 0.5732778548312518 }, "rgb": [77, 76, 132] }, @@ -153069,23 +153069,23 @@ "year": 1753, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 13.780885281836078, - "c2": -2.843596573547174, - "c3": 36.590012237761485, - "c4": -13.665651302538617, - "c5": 12.399428764726977, - "c6": 20.087612035255027, - "c7": -20.162371659644926 + "points": { + "c1": 17.493890961080638, + "c2": -22.57900670113493, + "c3": 9.179902173780938, + "c4": -36.15584366017595, + "c5": -23.454235170642256, + "c6": 6.52525243264747, + "c7": 7.543233018857002 }, - "vertexSeeds": { - "c1": 5.447803119636989, - "c2": 5.073064731215496, - "c3": 4.868415067083218, - "c4": 5.525765214843194, - "c5": 5.4752065739389675, - "c6": 5.753438921527165, - "c7": 5.213394889017085 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [77, 76, 132] }, @@ -153096,23 +153096,23 @@ "year": 1753, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 1.5592238215983159, - "c2": 20.019684482574878, - "c3": -26.654914997041125, - "c4": 23.103649171210936, - "c5": 27.734634560356174, - "c6": 22.087114666741012, - "c7": 19.529660314677198 + "points": { + "c1": -10.611866616687117, + "c2": -24.0834841620814, + "c3": 30.392703504271392, + "c4": 18.7115505766289, + "c5": 21.64885892459588, + "c6": 22.656890621230833, + "c7": -16.721236463855202 }, - "vertexSeeds": { - "c1": 4.787948794190184, - "c2": 4.057170938771387, - "c3": 4.783853827288905, - "c4": 4.200004996606427, - "c5": 4.772135614426558, - "c6": 4.194206014404046, - "c7": 4.066667981408054 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -153123,23 +153123,23 @@ "year": 1753, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": 12.071221216693758, - "c2": -3.9633217253528574, - "c3": -1.4647507741745738, - "c4": 4.982836451438395, - "c5": -8.397718753215297, - "c6": -11.663844880213283, - "c7": -5.710623157269611 + "points": { + "c1": 15.230016229814563, + "c2": 1.8891440052332662, + "c3": -6.858929998172519, + "c4": -10.66175782637434, + "c5": -8.189422633331965, + "c6": 2.1832319921361822, + "c7": 10.019356134295023 }, - "vertexSeeds": { - "c1": 6.1634845418186375, - "c2": 5.907210348726735, - "c3": 6.041346950382707, - "c4": 6.728911444144009, - "c5": 6.261134537423762, - "c6": 6.527522149661004, - "c7": 5.717420338770378 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -153150,23 +153150,23 @@ "year": 1753, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": -1.679061194618047, - "c2": 1.8834377530982067, - "c3": 1.4940060399943906, - "c4": -4.765898428478538, - "c5": -0.4908400777051085, - "c6": -1.141777110231649, - "c7": 6.774798141431344 + "points": { + "c1": 9.875610792813095, + "c2": 9.275394859141866, + "c3": -0.849288172549727, + "c4": 7.849412444363697, + "c5": 10.089865667888368, + "c6": 7.991541102719204, + "c7": -6.039861109874863 }, - "vertexSeeds": { - "c1": 5.783046618305901, - "c2": 6.548358420467821, - "c3": 6.453073472809251, - "c4": 6.27708440406129, - "c5": 5.847867236493641, - "c6": 5.66358917131665, - "c7": 6.201986695514958 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -153177,23 +153177,23 @@ "year": 1754, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": 28.185050073997793, - "c2": -28.736277284250566, - "c3": -46.42857756000922, - "c4": -48.65682040603474, - "c5": -45.5207659350492, - "c6": -32.33699388788175, - "c7": -6.792328095338881 + "points": { + "c1": 20.072979563456023, + "c2": 34.96254145348602, + "c3": 44.81688579540231, + "c4": -26.998273204535458, + "c5": 3.3390055554621227, + "c6": -2.6186442556588148, + "c7": -20.309699284015252 }, - "vertexSeeds": { - "c1": 4.1963934561744125, - "c2": 4.148847002509362, - "c3": 4.256541490423488, - "c4": 4.251684581082144, - "c5": 4.226046307613132, - "c6": 4.275473910664271, - "c7": 4.194485050793169 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969494, + "c3": 5.154877484974586, + "c4": 4.123901987979655, + "c5": 3.092926490984747, + "c6": 2.061950993989839, + "c7": 1.030975496994931 }, "rgb": [86, 146, 138] }, @@ -153204,23 +153204,23 @@ "year": 1754, "resistanceReported": false, "duration": 50284800, - "curveSeeds": { - "c1": 16.481769039835086, - "c2": 58.118178873511894, - "c3": -37.74131617089991, - "c4": 31.693019205157498, - "c5": -28.13140280140896, - "c6": 49.10320505429459, - "c7": -45.139317757957016 + "points": { + "c1": -37.2326233211495, + "c2": -21.45998853761356, + "c3": -63.66146503220946, + "c4": 43.51158220721193, + "c5": -23.89039672101122, + "c6": -45.00170577031855, + "c7": -53.947412846352414 }, - "vertexSeeds": { - "c1": 7.446633603178272, - "c2": 4.883367948614606, - "c3": 5.0126232332162415, - "c4": 7.428781744228192, - "c5": 7.448010457948678, - "c6": 5.542628007368324, - "c7": 6.198055352428505 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.73509015256588, + "c3": 8.94590846047157, + "c4": 7.156726768377255, + "c5": 5.36754507628294, + "c6": 3.578363384188625, + "c7": 1.7891816920943149 }, "rgb": [58, 15, 49] }, @@ -153231,23 +153231,23 @@ "year": 1753, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -9.097690730129614, - "c2": -18.48641713039215, - "c3": 8.675986513460813, - "c4": 1.2304074216410186, - "c5": 1.6309362646317425, - "c6": 6.714515091525705, - "c7": -30.46188868780463 + "points": { + "c1": 33.34880727607044, + "c2": 25.839719612330235, + "c3": -22.210468894368525, + "c4": -4.060897471865811, + "c5": 8.54277039027162, + "c6": -4.162928518011572, + "c7": -1.8236561008744907 }, - "vertexSeeds": { - "c1": 4.960177246552594, - "c2": 5.272191325077095, - "c3": 4.1219288147086965, - "c4": 4.579969955201138, - "c5": 5.161754932440876, - "c6": 4.049318310385866, - "c7": 4.053252979828912 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -153258,23 +153258,23 @@ "year": 1754, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 39.56043423013985, - "c2": 20.351088410479335, - "c3": 20.798118927612904, - "c4": 44.56544908651496, - "c5": 26.91267789105845, - "c6": 19.870076298463715, - "c7": 0.2048714159449574 + "points": { + "c1": 33.81379611764166, + "c2": 1.315185423860882, + "c3": 31.852121885017553, + "c4": -5.763938347362341, + "c5": -3.215037468567907, + "c6": -44.49214986873258, + "c7": -45.853932855899615 }, - "vertexSeeds": { - "c1": 8.911530107151489, - "c2": 8.39979321399066, - "c3": 8.679839887891166, - "c4": 8.728654974770757, - "c5": 9.14534848714411, - "c6": 8.768618800086823, - "c7": 9.451773097019823 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231627, + "c3": 11.62736939435968, + "c4": 9.301895515487747, + "c5": 6.976421636615814, + "c6": 4.65094775774388, + "c7": 2.3254738788719336 }, "rgb": [58, 15, 49] }, @@ -153285,23 +153285,23 @@ "year": 1754, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": -13.396031324084703, - "c2": -11.220599477893131, - "c3": -15.745578434436418, - "c4": 8.644883052851789, - "c5": -41.13540702331626, - "c6": 8.092222593102711, - "c7": -45.697463506613694 + "points": { + "c1": -11.312867534951572, + "c2": 5.179424913375719, + "c3": -37.52879932026788, + "c4": -44.55938834381201, + "c5": -34.34795030863786, + "c6": 14.85713507610918, + "c7": -41.311047347929225 }, - "vertexSeeds": { - "c1": 4.2891584812865, - "c2": 4.990642030102995, - "c3": 4.84155071325175, - "c4": 4.737805818879153, - "c5": 4.576606377254161, - "c6": 4.395707921055366, - "c7": 4.633661044354366 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385113, + "c4": 5.177993527508089, + "c5": 3.8834951456310702, + "c6": 2.588996763754047, + "c7": 1.2944983818770235 }, "rgb": [58, 15, 49] }, @@ -153312,23 +153312,23 @@ "year": 1753, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 15.812994428556706, - "c2": 8.915825277925137, - "c3": -32.2662427865175, - "c4": 18.5071223443954, - "c5": -34.62494780288854, - "c6": 17.299959592803155, - "c7": -28.413730501196365 + "points": { + "c1": -18.624372623544, + "c2": 31.246040914382817, + "c3": 30.49246077449365, + "c4": 11.952183776667376, + "c5": -44.22178971058191, + "c6": -19.240983052261353, + "c7": 3.379120053817246 }, - "vertexSeeds": { - "c1": 2.996920373645747, - "c2": 3.2523379449072185, - "c3": 3.265034118405503, - "c4": 3.1575772104021147, - "c5": 2.918275745871786, - "c6": 2.859841479476891, - "c7": 3.068362648173882 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958393, + "c3": 3.9990753582986582, + "c4": 3.1992602866389293, + "c5": 2.3994452149791936, + "c6": 1.5996301433194646, + "c7": 0.7998150716597355 }, "rgb": [86, 146, 138] }, @@ -153339,23 +153339,23 @@ "year": 1753, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -29.140162368915476, - "c2": 30.634134437131287, - "c3": 26.417777443290355, - "c4": 31.223838722382858, - "c5": 29.020517402903643, - "c6": -26.460764488634197, - "c7": -5.811296092045481 + "points": { + "c1": 15.983470037287397, + "c2": -39.49014780004859, + "c3": -20.059307377554365, + "c4": 19.897759006156896, + "c5": -33.555263276517046, + "c6": 23.32563929679332, + "c7": -34.985400244453906 }, - "vertexSeeds": { - "c1": 2.5737425004388097, - "c2": 2.5350841744026944, - "c3": 2.4939595184850716, - "c4": 2.5139506911404377, - "c5": 2.4302610466209167, - "c6": 2.3024108302080943, - "c7": 2.4755160916374463 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.717059639389739, + "c3": 3.097549699491446, + "c4": 2.478039759593156, + "c5": 1.8585298196948663, + "c6": 1.2390198797965797, + "c7": 0.6195099398982865 }, "rgb": [86, 146, 138] }, @@ -153366,23 +153366,23 @@ "year": 1753, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -35.91482262214057, - "c2": 29.210975596258606, - "c3": -28.58548939259425, - "c4": 0.6763327333406295, - "c5": -14.551520682483009, - "c6": 16.931672694787117, - "c7": 9.98848186125602 + "points": { + "c1": -11.156040541597267, + "c2": 19.045071995198256, + "c3": 24.353016392088406, + "c4": 23.369767515604252, + "c5": 16.303942021961866, + "c6": 19.309770720893468, + "c7": -19.13523666763138 }, - "vertexSeeds": { - "c1": 0.583583234387263, - "c2": 0.5502249770563227, - "c3": 0.5478327090887051, - "c4": 0.5949566767744807, - "c5": 0.5738700491467484, - "c6": 0.5697656708993377, - "c7": 0.5733926031002257 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.9708737864077672, + "c3": 0.8090614886731397, + "c4": 0.647249190938512, + "c5": 0.4854368932038836, + "c6": 0.3236245954692553, + "c7": 0.16181229773462766 }, "rgb": [222, 0, 59] }, @@ -153393,23 +153393,23 @@ "year": 1754, "resistanceReported": false, "duration": 47001600, - "curveSeeds": { - "c1": 14.579689489930608, - "c2": 59.417929367153626, - "c3": -35.11023596308661, - "c4": -26.524807907089745, - "c5": 7.343117665407995, - "c6": -22.417803220493894, - "c7": -10.049193789701235 + "points": { + "c1": -53.02266499450114, + "c2": 32.25166535673842, + "c3": 39.19193600015617, + "c4": -56.9856213779434, + "c5": 17.12766940423736, + "c6": 11.30290243681636, + "c7": 62.124571464372 }, - "vertexSeeds": { - "c1": 5.7355102006734215, - "c2": 5.2437170298133395, - "c3": 5.217224643040256, - "c4": 5.873818552957003, - "c5": 5.283880192954421, - "c6": 5.3691235016422505, - "c7": 5.5442397803719565 + "offsets": { + "c1": 10, + "c2": 8.571428571428568, + "c3": 7.142857142857149, + "c4": 5.714285714285716, + "c5": 4.285714285714284, + "c6": 2.8571428571428514, + "c7": 1.4285714285714324 }, "rgb": [77, 76, 132] }, @@ -153420,23 +153420,23 @@ "year": 1754, "resistanceReported": false, "duration": 41731200, - "curveSeeds": { - "c1": -39.475126835447966, - "c2": -42.23885571692941, - "c3": -1.4631218426860215, - "c4": 17.53644884389164, - "c5": -17.668764265421693, - "c6": -47.01615261507164, - "c7": -42.42623883629733 + "points": { + "c1": -16.66087109484991, + "c2": -8.18614335911085, + "c3": 24.208818152408277, + "c4": -8.560865309587143, + "c5": -12.342371056734372, + "c6": -4.9834867934903, + "c7": 32.76404221243185 }, - "vertexSeeds": { - "c1": 5.646529903466029, - "c2": 5.437054295644898, - "c3": 5.243512421353199, - "c4": 5.155810673525302, - "c5": 4.975739112484696, - "c6": 5.32685465901154, - "c7": 5.228457993279151 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883499, + "c5": 4.077669902912622, + "c6": 2.718446601941747, + "c7": 1.3592233009708707 }, "rgb": [238, 201, 159] }, @@ -153447,23 +153447,23 @@ "year": 1753, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 31.82053045432582, - "c2": -0.4173385349252925, - "c3": -7.0545971068608, - "c4": -27.41749754815757, - "c5": -10.249935997749159, - "c6": -30.317527747482682, - "c7": -26.919917946986665 + "points": { + "c1": -19.353805371427704, + "c2": -25.754127070277534, + "c3": 35.44456781318941, + "c4": -18.70752349254063, + "c5": -1.303850742586377, + "c6": -31.029570480169973, + "c7": 32.65354772123894 }, - "vertexSeeds": { - "c1": 3.1377828027267434, - "c2": 2.9918976088046674, - "c3": 2.9262197975889057, - "c4": 2.99566021590228, - "c5": 3.0744349572842378, - "c6": 3.068235169334867, - "c7": 2.8984398631652786 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [222, 0, 59] }, @@ -153474,23 +153474,23 @@ "year": 1753, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -30.41214843161061, - "c2": 20.302572947185645, - "c3": -0.3751696895081409, - "c4": -33.81909324196172, - "c5": 27.960256987155617, - "c6": -22.201321852656626, - "c7": 7.357506271004226 + "points": { + "c1": 6.068082136458337, + "c2": -20.58127875562956, + "c3": -9.217584585133661, + "c4": -36.16978691749079, + "c5": 28.109244655395756, + "c6": 36.73059278562738, + "c7": -6.129570666852633 }, - "vertexSeeds": { - "c1": 6.67925719399371, - "c2": 6.3538247770903045, - "c3": 6.814913118495464, - "c4": 6.199406742935904, - "c5": 6.804637017087201, - "c6": 6.6434964059646235, - "c7": 6.236489270359183 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.76421636615812, + "c3": 8.13684697179842, + "c4": 6.509477577438741, + "c5": 4.88210818307906, + "c6": 3.25473878871938, + "c7": 1.62736939435968 }, "rgb": [58, 15, 49] }, @@ -153501,23 +153501,23 @@ "year": 1754, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 29.00839261746242, - "c2": 8.668877144131422, - "c3": -5.0574604110368355, - "c4": -35.292751883300696, - "c5": -37.42787606667339, - "c6": 45.082546438938536, - "c7": -8.768237262454349 + "points": { + "c1": -41.49520688271714, + "c2": 4.648077222136912, + "c3": 12.382866207927883, + "c4": -35.03324523187856, + "c5": 2.6306582765678, + "c6": -26.76382234344204, + "c7": -40.56681997862212 }, - "vertexSeeds": { - "c1": 4.383684491526801, - "c2": 4.452300754703126, - "c3": 4.085912120468709, - "c4": 4.47666120581715, - "c5": 4.3503405020721635, - "c6": 4.089367344373319, - "c7": 4.253693462054844 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.4355062413314865, + "c3": 5.362921867776232, + "c4": 4.290337494220988, + "c5": 3.2177531206657433, + "c6": 2.1451687471104894, + "c7": 1.0725843735552447 }, "rgb": [58, 15, 49] }, @@ -153528,23 +153528,23 @@ "year": 1754, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 26.457423001720343, - "c2": 23.352491336949498, - "c3": 9.603585907096239, - "c4": 31.102742853108907, - "c5": -27.904473222915346, - "c6": -45.543045553698825, - "c7": -36.43275410644872 + "points": { + "c1": -31.306925584921498, + "c2": -35.612410672561, + "c3": 36.86437774540926, + "c4": 49.334073087742, + "c5": -0.297117426680785, + "c6": 11.836241909398183, + "c7": 9.149210111101183 }, - "vertexSeeds": { - "c1": 2.298497955917951, - "c2": 2.1395828664851946, - "c3": 2.3251819054570104, - "c4": 2.2978590250346613, - "c5": 2.2844012579076507, - "c6": 2.0619390954454664, - "c7": 2.2626641346264162 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668514, + "c3": 2.7970411465557095, + "c4": 2.2376329172445675, + "c5": 1.6782246879334257, + "c6": 1.1188164586222837, + "c7": 0.5594082293111419 }, "rgb": [86, 146, 138] }, @@ -153555,23 +153555,23 @@ "year": 1753, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 16.174058209753404, - "c2": 9.383051817250944, - "c3": -11.4860179920564, - "c4": 1.3257782498222284, - "c5": -13.81112126947625, - "c6": 25.38602030065028, - "c7": 22.87848743922558 + "points": { + "c1": 10.620181337604187, + "c2": -10.419879335476473, + "c3": -11.228481530089852, + "c4": 0.4608905161332473, + "c5": 9.544585307508278, + "c6": 12.362067899141984, + "c7": -22.751544356808125 }, - "vertexSeeds": { - "c1": 5.6901695634465295, - "c2": 5.526430804867633, - "c3": 5.88545502042815, - "c4": 5.461390679531783, - "c5": 5.596952567465775, - "c6": 5.459288782630779, - "c7": 5.600086366318429 + "offsets": { + "c1": 10, + "c2": 8.571428571428566, + "c3": 7.142857142857144, + "c4": 5.714285714285711, + "c5": 4.285714285714289, + "c6": 2.8571428571428554, + "c7": 1.4285714285714215 }, "rgb": [77, 76, 132] }, @@ -153582,23 +153582,23 @@ "year": 1754, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -3.453361172263328, - "c2": -15.071038440617386, - "c3": -4.856819640341314, - "c4": -2.1759085056990486, - "c5": -2.807259383766848, - "c6": 40.08628919590108, - "c7": -9.145966570177805 + "points": { + "c1": -6.04609054605347, + "c2": -49.65175174525398, + "c3": -52.97649360502507, + "c4": 4.893882246727806, + "c5": 21.159000197170364, + "c6": -11.598529191130908, + "c7": -48.62174307424942 }, - "vertexSeeds": { - "c1": 5.51308277182514, - "c2": 5.873027480556253, - "c3": 5.476017188048951, - "c4": 5.423213178744829, - "c5": 5.491465632239148, - "c6": 5.570879023510138, - "c7": 5.358384063987876 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [238, 201, 159] }, @@ -153609,23 +153609,23 @@ "year": 1754, "resistanceReported": false, "duration": 60566400, - "curveSeeds": { - "c1": -61.33942188673967, - "c2": -22.718859358686146, - "c3": -26.915824791032662, - "c4": -41.57665075192948, - "c5": -20.170459937433996, - "c6": 39.90968188327709, - "c7": 40.761208852651336 + "points": { + "c1": -38.01825878183112, + "c2": -37.862535830823575, + "c3": 50.067074999907575, + "c4": -6.4297717668709, + "c5": 1.7496175029647105, + "c6": 75.40119526736193, + "c7": -62.33667115902015 }, - "vertexSeeds": { - "c1": 6.282413173327663, - "c2": 6.461562012085763, - "c3": 6.420432370261931, - "c4": 6.406986029793927, - "c5": 6.019171630639353, - "c6": 6.493786139363746, - "c7": 6.207289631034936 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997224, + "c3": 8.044382801664355, + "c4": 6.435506241331483, + "c5": 4.826629680998612, + "c6": 3.2177531206657415, + "c7": 1.6088765603328707 }, "rgb": [238, 201, 159] }, @@ -153636,23 +153636,23 @@ "year": 1754, "resistanceReported": false, "duration": 43113600, - "curveSeeds": { - "c1": 17.121061603033894, - "c2": -50.17295477790405, - "c3": -14.223428066849173, - "c4": 40.20634686913297, - "c5": 21.7078940970801, - "c6": 26.574608439789387, - "c7": -2.4236233110116956 + "points": { + "c1": -6.006763606485272, + "c2": 5.203928476711042, + "c3": 1.7880580256966212, + "c4": -21.399667853715584, + "c5": -5.857694310398514, + "c6": -10.585115953208884, + "c7": 39.02507489250449 }, - "vertexSeeds": { - "c1": 6.22297401419189, - "c2": 6.1374608130587385, - "c3": 5.9863253612727, - "c4": 6.111543990432697, - "c5": 6.287889750590422, - "c6": 6.302372170405467, - "c7": 6.089050887313045 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152553, + "c3": 7.558945908460475, + "c4": 6.04715672676837, + "c5": 4.535367545076291, + "c6": 3.023578363384185, + "c7": 1.5117891816921059 }, "rgb": [86, 146, 138] }, @@ -153663,23 +153663,23 @@ "year": 1754, "resistanceReported": false, "duration": 46051200, - "curveSeeds": { - "c1": -13.157325840507937, - "c2": -11.759459744375363, - "c3": 4.151272025519198, - "c4": -20.710313751163284, - "c5": 46.165991838711726, - "c6": -32.13223865954855, - "c7": 32.63965015687048 + "points": { + "c1": 36.929991979510454, + "c2": -24.473873840741064, + "c3": 26.38821942658094, + "c4": -4.8977831113899555, + "c5": -59.1911697828446, + "c6": 6.006563952306131, + "c7": 52.80291584436387 }, - "vertexSeeds": { - "c1": 6.531928502817196, - "c2": 6.150361080670069, - "c3": 6.073278772561324, - "c4": 6.001495906280272, - "c5": 6.402566623759477, - "c6": 6.595992124604342, - "c7": 5.86473574336663 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [238, 201, 159] }, @@ -153690,23 +153690,23 @@ "year": 1754, "resistanceReported": false, "duration": 50803200, - "curveSeeds": { - "c1": 13.462651290624152, - "c2": 39.25628314827085, - "c3": -60.69685700595831, - "c4": 48.459951116512784, - "c5": -0.849835083248621, - "c6": -24.66651678273015, - "c7": -10.764541759933103 + "points": { + "c1": 36.83098650595397, + "c2": 31.84486462195963, + "c3": -57.59243283991765, + "c4": 3.644812915594187, + "c5": -6.019896730982168, + "c6": -18.31423487717924, + "c7": 33.59672328165786 }, - "vertexSeeds": { - "c1": 1.721683608205813, - "c2": 1.667773809786722, - "c3": 1.5451956799993587, - "c4": 1.699990227433813, - "c5": 1.6426172177132234, - "c6": 1.6148051628933782, - "c7": 1.6211378246371626 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [58, 15, 49] }, @@ -153717,23 +153717,23 @@ "year": 1754, "resistanceReported": false, "duration": 53049600, - "curveSeeds": { - "c1": 20.52594584874494, - "c2": -56.49630729990593, - "c3": -0.05333914068579304, - "c4": -48.97026661380833, - "c5": -45.43592098521343, - "c6": 29.568516770600297, - "c7": -58.52570411069928 + "points": { + "c1": -57.99719141219346, + "c2": 48.04156025838964, + "c3": 4.122421466137297, + "c4": 4.531440177644441, + "c5": 16.58712151997105, + "c6": -26.403710348904816, + "c7": -17.12581254850265 }, - "vertexSeeds": { - "c1": 1.1455984319365666, - "c2": 1.0988893094985963, - "c3": 1.11625601462164, - "c4": 1.101413921178087, - "c5": 1.2456333639190842, - "c6": 1.2200403425036725, - "c7": 1.0467642527055805 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753123, + "c3": 1.595006934812761, + "c4": 1.2760055478502084, + "c5": 0.9570041608876557, + "c6": 0.6380027739251042, + "c7": 0.3190013869625526 }, "rgb": [222, 0, 59] }, @@ -153744,23 +153744,23 @@ "year": 1754, "resistanceReported": false, "duration": 61084800, - "curveSeeds": { - "c1": 68.85409438450006, - "c2": 24.876495796602285, - "c3": 20.17104769752136, - "c4": -28.927568543429345, - "c5": -70.15993388493342, - "c6": -4.806600043013177, - "c7": -23.83216952511355 + "points": { + "c1": 42.499228759939996, + "c2": -42.58824940450926, + "c3": 3.606401657399914, + "c4": -71.91250664227293, + "c5": -57.526170304354686, + "c6": -55.9128360190861, + "c7": -38.131894217806746 }, - "vertexSeeds": { - "c1": 2.7013745610761717, - "c2": 2.624672438793977, - "c3": 2.704455567154256, - "c4": 2.6086309105787002, - "c5": 2.678291960506181, - "c6": 2.639663637840849, - "c7": 2.6294174629096547 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.938973647711513, + "c3": 3.2824780397595954, + "c4": 2.625982431807678, + "c5": 1.9694868238557526, + "c6": 1.3129912159038348, + "c7": 0.6564956079519174 }, "rgb": [86, 146, 138] }, @@ -153771,23 +153771,23 @@ "year": 1753, "resistanceReported": true, "duration": 6912000, - "curveSeeds": { - "c1": -12.106026514096108, - "c2": -5.102439258393252, - "c3": 8.593451069553716, - "c4": 7.70985990111777, - "c5": 5.387650559944127, - "c6": 15.977000110196194, - "c7": -6.287899035838182 + "points": { + "c1": 6.761533382937735, + "c2": 3.4238680943971964, + "c3": -1.063359832700982, + "c4": -15.768856093378497, + "c5": 1.2524499288147162, + "c6": -16.464613657020447, + "c7": -15.073566517938996 }, - "vertexSeeds": { - "c1": 6.350583284256949, - "c2": 6.592514714627973, - "c3": 6.114495893872872, - "c4": 6.2946663648292684, - "c5": 6.621770168549903, - "c6": 6.057874000951875, - "c7": 6.032118499188198 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916782, + "c3": 7.998150716597318, + "c4": 6.398520573277854, + "c5": 4.798890429958391, + "c6": 3.199260286638927, + "c7": 1.5996301433194635 }, "rgb": [58, 15, 49] }, @@ -153798,23 +153798,23 @@ "year": 1754, "resistanceReported": false, "duration": 52876800, - "curveSeeds": { - "c1": 61.33877026306506, - "c2": -10.682835725757542, - "c3": -17.48485762682163, - "c4": -8.813502481582553, - "c5": -66.66902737995315, - "c6": 67.43438439752812, - "c7": 30.788352699839848 + "points": { + "c1": -66.9982114304003, + "c2": -36.03584397438006, + "c3": 57.655513591200986, + "c4": -35.50597481526238, + "c5": -32.552461131264224, + "c6": -53.90653139040815, + "c7": 0.37491202482030417 }, - "vertexSeeds": { - "c1": 1.1864327765878964, - "c2": 1.2258623606292558, - "c3": 1.2160193663554022, - "c4": 1.2015221209392584, - "c5": 1.214125107644763, - "c6": 1.1866096821458973, - "c7": 1.2053490531025488 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350895, + "c3": 1.5718908922792407, + "c4": 1.2575127138233915, + "c5": 0.943134535367547, + "c6": 0.6287563569116981, + "c7": 0.31437817845584903 }, "rgb": [77, 76, 132] }, @@ -153825,23 +153825,23 @@ "year": 1754, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -4.75643882553716, - "c2": -6.264014793830356, - "c3": 30.38336441069565, - "c4": 1.321103325466531, - "c5": -52.78576421139856, - "c6": 1.6284787116688832, - "c7": 29.060327583112837 + "points": { + "c1": -35.41704916076786, + "c2": 52.415432784474575, + "c3": -13.321091700737838, + "c4": -24.71797012031712, + "c5": -45.884365138280906, + "c6": -4.527133248626512, + "c7": -33.46906621864812 }, - "vertexSeeds": { - "c1": 2.874807558548396, - "c2": 3.3615449714936467, - "c3": 3.158391915153267, - "c4": 2.798157928585684, - "c5": 3.15151995730401, - "c6": 3.101957776798555, - "c7": 2.823330606783538 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079056, + "c3": 4.068423485899217, + "c4": 3.254738788719372, + "c5": 2.441054091539528, + "c6": 1.6273693943596834, + "c7": 0.8136846971798443 }, "rgb": [77, 76, 132] }, @@ -153852,23 +153852,23 @@ "year": 1753, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 3.3103574433242713, - "c2": -32.07332656870741, - "c3": -2.6071627775897426, - "c4": 11.934812556439098, - "c5": -21.326546725944254, - "c6": -4.272202617837777, - "c7": -27.081342454336713 + "points": { + "c1": -34.36916642520297, + "c2": 32.12948161481722, + "c3": -15.852891478407244, + "c4": -5.658756477958221, + "c5": 2.0564000436360104, + "c6": -33.37410212474132, + "c7": -32.59360175517885 }, - "vertexSeeds": { - "c1": 4.006842976373813, - "c2": 4.464461396751946, - "c3": 4.193506316380709, - "c4": 4.0486140024824335, - "c5": 4.056485019889413, - "c6": 4.485452344667968, - "c7": 4.000850266042155 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [222, 0, 59] }, @@ -153879,23 +153879,23 @@ "year": 1754, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": -41.063041426890294, - "c2": 27.70142967575054, - "c3": -28.91157480503077, - "c4": -46.174173003048416, - "c5": -15.349462780776648, - "c6": -46.297449616999145, - "c7": -35.01523746440003 + "points": { + "c1": 23.531861402968993, + "c2": 10.568361831071662, + "c3": 45.73662233000034, + "c4": 24.21014170804971, + "c5": -32.93647223031189, + "c6": -1.7601843280536826, + "c7": 6.225522090042297 }, - "vertexSeeds": { - "c1": 3.9847389829472344, - "c2": 3.692324048645651, - "c3": 3.9987420089631387, - "c4": 4.112935676340934, - "c5": 3.681928125046843, - "c6": 4.178838833518544, - "c7": 4.031661353745319 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [238, 201, 159] }, @@ -153906,23 +153906,23 @@ "year": 1754, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": 5.553319382863101, - "c2": 47.22283704253847, - "c3": 39.479522731111715, - "c4": 43.276478145359036, - "c5": -17.662750749895153, - "c6": -46.44899841644272, - "c7": 42.81151998446086 + "points": { + "c1": -22.606061376450167, + "c2": 30.690545104313614, + "c3": 26.293549138932406, + "c4": -9.300172725532484, + "c5": -38.87371860052491, + "c6": 30.667683374944247, + "c7": -42.56544289006557 }, - "vertexSeeds": { - "c1": 6.58013589241894, - "c2": 6.377830099131099, - "c3": 6.61173452953555, - "c4": 5.9779627002575975, - "c5": 6.757596130953156, - "c6": 5.787502622529554, - "c7": 6.442757478612665 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680996, + "c3": 8.437355524734162, + "c4": 6.749884419787328, + "c5": 5.062413314840503, + "c6": 3.3749422098936694, + "c7": 1.6874711049468347 }, "rgb": [86, 146, 138] }, @@ -153933,23 +153933,23 @@ "year": 1753, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -10.759533291964662, - "c2": -10.291668744800063, - "c3": 19.2925753054039, - "c4": -27.037389438992903, - "c5": 14.361629951905925, - "c6": 38.04013864143681, - "c7": -19.052864764461965 + "points": { + "c1": -39.293581056458706, + "c2": 11.503170674716507, + "c3": 41.48754602488876, + "c4": 33.20621632428323, + "c5": -21.48618402893885, + "c6": 33.42873188569796, + "c7": 0.3332504549793498 }, - "vertexSeeds": { - "c1": 6.9573758340285465, - "c2": 6.484138856930742, - "c3": 6.674904984211095, - "c4": 6.437021899831256, - "c5": 6.708386948170433, - "c6": 7.115405404087921, - "c7": 6.0368582663032 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [238, 201, 159] }, @@ -153960,23 +153960,23 @@ "year": 1753, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -19.601918599717184, - "c2": 3.082730526106708, - "c3": 29.953519297926405, - "c4": 23.813152057467192, - "c5": -11.049348345415574, - "c6": 7.131351758085408, - "c7": 21.785529447547674 + "points": { + "c1": 29.455897578983198, + "c2": 26.9459264715168, + "c3": 23.414155794020104, + "c4": -40.56883811493975, + "c5": 34.439244877895774, + "c6": 24.98355452225445, + "c7": -3.515676993483524 }, - "vertexSeeds": { - "c1": 3.6274464886834177, - "c2": 3.528991941981078, - "c3": 4.007610959147323, - "c4": 3.903864818685975, - "c5": 3.623902985209561, - "c6": 3.5666126538027805, - "c7": 4.0131972366567386 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [238, 201, 159] }, @@ -153987,23 +153987,23 @@ "year": 1754, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 10.708425760146056, - "c2": 19.9832845802281, - "c3": 8.618003214731488, - "c4": 2.937138541261163, - "c5": 1.4835880862968551, - "c6": 7.423910862940971, - "c7": 19.54899517520721 + "points": { + "c1": -48.26132604475666, + "c2": -47.77141620144345, + "c3": -33.042748589312666, + "c4": 29.612837699015984, + "c5": -30.903566034331366, + "c6": 18.612796240379453, + "c7": 13.302993954176522 }, - "vertexSeeds": { - "c1": 6.823868711645243, - "c2": 6.965149803026389, - "c3": 7.383439834844805, - "c4": 6.852361513943058, - "c5": 7.261083114216607, - "c6": 6.812053267647882, - "c7": 7.1325206792815745 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -154014,23 +154014,23 @@ "year": 1754, "resistanceReported": false, "duration": 57628800, - "curveSeeds": { - "c1": -65.33636337657254, - "c2": -26.71566202703702, - "c3": -23.016955931480616, - "c4": 67.56535827232625, - "c5": 15.158891919461169, - "c6": -63.22292335787873, - "c7": -52.55489537014222 + "points": { + "c1": 68.43037896854113, + "c2": -52.749389138206375, + "c3": 37.80890818336431, + "c4": 64.0757218810748, + "c5": 60.619231203496014, + "c6": -8.571770144755973, + "c7": 61.799906953113066 }, - "vertexSeeds": { - "c1": 3.555090574246107, - "c2": 3.6064843878576403, - "c3": 3.6333686387376916, - "c4": 3.4956866540023515, - "c5": 3.670807200955447, - "c6": 3.750514502384952, - "c7": 3.494925236587643 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [86, 146, 138] }, @@ -154041,23 +154041,23 @@ "year": 1753, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -5.1017240553201475, - "c2": -2.7875151774133435, - "c3": -17.15639650141372, - "c4": -3.175330900047623, - "c5": 0.8630716020043252, - "c6": -18.03367050454859, - "c7": -4.2460195611539895 + "points": { + "c1": -9.230292040650905, + "c2": 20.00047919348204, + "c3": 0.5862459099601232, + "c4": -22.849484757119626, + "c5": -25.280087893708814, + "c6": 0.7171553036525573, + "c7": -28.26328317629192 }, - "vertexSeeds": { - "c1": 2.9939099330880974, - "c2": 2.9946516412320383, - "c3": 3.0544098190389315, - "c4": 3.196297260951698, - "c5": 2.9862134471397828, - "c6": 3.0372802044773124, - "c7": 3.1361298053165028 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [222, 0, 59] }, @@ -154068,23 +154068,23 @@ "year": 1753, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -32.911931968808595, - "c2": -13.006860888884617, - "c3": -10.00997607669844, - "c4": 17.331594815073245, - "c5": -15.270407112528709, - "c6": 17.524406527743658, - "c7": 31.801608808944792 + "points": { + "c1": -29.86344013757477, + "c2": -8.672302508196129, + "c3": 19.00011804097511, + "c4": -23.185950487161072, + "c5": -0.9098629335067798, + "c6": 17.356419402419576, + "c7": 25.07298368772402 }, - "vertexSeeds": { - "c1": 1.0502383908599178, - "c2": 0.9022413912193555, - "c3": 0.9564721266573168, - "c4": 0.9174401852305981, - "c5": 0.8981172743698651, - "c6": 0.9996338598201683, - "c7": 0.9091441353680048 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.5533980582524276, + "c3": 1.2944983818770226, + "c4": 1.0355987055016185, + "c5": 0.7766990291262131, + "c6": 0.5177993527508092, + "c7": 0.2588996763754039 }, "rgb": [58, 15, 49] }, @@ -154095,23 +154095,23 @@ "year": 1754, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 5.286696220899991, - "c2": 4.818800891304363, - "c3": 31.00947720058533, - "c4": 22.34611669549536, - "c5": -20.552403508889963, - "c6": -7.064320966669868, - "c7": 10.200125684459536 + "points": { + "c1": -26.28379799949121, + "c2": -19.64347146612651, + "c3": 32.33576031520416, + "c4": -15.741695752767733, + "c5": -22.977264360928004, + "c6": 43.40849894075844, + "c7": 12.509798941327851 }, - "vertexSeeds": { - "c1": 5.416428964457842, - "c2": 5.520358810173375, - "c3": 5.359544807294464, - "c4": 5.373691302712141, - "c5": 4.871427735620086, - "c6": 5.127079982892193, - "c7": 4.892477291534024 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872392, + "c6": 2.699953767914937, + "c7": 1.3499768839574684 }, "rgb": [86, 146, 138] }, @@ -154122,23 +154122,23 @@ "year": 1754, "resistanceReported": false, "duration": 46742400, - "curveSeeds": { - "c1": -42.92350276970275, - "c2": 6.076983091827351, - "c3": 27.40066651737164, - "c4": 59.73111509248525, - "c5": -56.942882730488776, - "c6": -9.858617093236191, - "c7": -20.35891777606895 + "points": { + "c1": 7.29210099794863, + "c2": 62.429115018740596, + "c3": -55.27737799508026, + "c4": -11.72887160879852, + "c5": 47.59000591536144, + "c6": 53.193860105435654, + "c7": -18.539167530919357 }, - "vertexSeeds": { - "c1": 6.532616909009228, - "c2": 8.962409314524752, - "c3": 9.974141252876503, - "c4": 5.314373929709141, - "c5": 6.976940343190785, - "c6": 8.36179893369234, - "c7": 5.747107845498871 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156727, + "c3": 12.159038372630604, + "c4": 9.727230698104485, + "c5": 7.2954230235783655, + "c6": 4.863615349052244, + "c7": 2.4318076745261203 }, "rgb": [86, 146, 138] }, @@ -154149,23 +154149,23 @@ "year": 1753, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -12.283619694895691, - "c2": -39.38759769569615, - "c3": 30.639964421090994, - "c4": 33.86458117510182, - "c5": -4.662847177045599, - "c6": 6.029442288891893, - "c7": -34.245812086635766 + "points": { + "c1": 12.668017999857845, + "c2": 17.78919976957735, + "c3": 38.54832927632708, + "c4": -33.22165638680483, + "c5": -30.013121657571798, + "c6": -21.642917264979282, + "c7": 12.757398292728816 }, - "vertexSeeds": { - "c1": 7.6175434568950635, - "c2": 7.916686725223471, - "c3": 7.477079927865888, - "c4": 7.130295936789495, - "c5": 8.076580736189328, - "c6": 7.590881917316466, - "c7": 7.94885851303648 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054093, + "c3": 9.801202034211746, + "c4": 7.840961627369399, + "c5": 5.880721220527041, + "c6": 3.9204808136846947, + "c7": 1.9602404068423473 }, "rgb": [58, 15, 49] }, @@ -154176,23 +154176,23 @@ "year": 1754, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 4.087360899738577, - "c2": 30.138743320532825, - "c3": -29.857267336531095, - "c4": -19.7082578648995, - "c5": 7.1354498944323055, - "c6": -43.52090906412115, - "c7": 15.252959476381406 + "points": { + "c1": -37.8382016244708, + "c2": -27.679600499410224, + "c3": -28.543680357525865, + "c4": -3.9304865184264486, + "c5": -36.6058525004334, + "c6": 33.987520861601595, + "c7": -27.775474360372865 }, - "vertexSeeds": { - "c1": 2.722380748453801, - "c2": 2.4504983362497996, - "c3": 2.742647297532007, - "c4": 2.5496914536141597, - "c5": 2.6440138122297947, - "c6": 2.713747191353578, - "c7": 2.38232564099234 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.9667128987517337, + "c3": 3.305594082293112, + "c4": 2.6444752658344903, + "c5": 1.9833564493758682, + "c6": 1.3222376329172436, + "c7": 0.6611188164586218 }, "rgb": [238, 201, 159] }, @@ -154203,23 +154203,23 @@ "year": 1754, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -9.432194815933848, - "c2": -39.040979424041566, - "c3": -3.6047000154009368, - "c4": 0.19772278734063775, - "c5": 30.05233346103323, - "c6": 41.97338200694627, - "c7": -4.917094708166481 + "points": { + "c1": 4.786704991570325, + "c2": -22.742376735962328, + "c3": -22.665856765450293, + "c4": -43.16495115467821, + "c5": -0.9890534342371566, + "c6": 30.735095760658808, + "c7": 33.74740267920261 }, - "vertexSeeds": { - "c1": 6.458534655224724, - "c2": 6.512250946710945, - "c3": 6.006310085370544, - "c4": 5.995319254358548, - "c5": 6.235957072709832, - "c6": 5.956765854967728, - "c7": 6.409510209031352 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [238, 201, 159] }, @@ -154230,23 +154230,23 @@ "year": 1753, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 4.657973159976599, - "c2": -17.450733976925704, - "c3": -32.011279130413094, - "c4": 26.07973016217113, - "c5": -3.8828807225051634, - "c6": 22.704068173499593, - "c7": 6.391414574238766 + "points": { + "c1": -33.136807823913955, + "c2": -35.0881064540862, + "c3": 11.213254421920958, + "c4": 22.656463456032455, + "c5": 6.66831939213057, + "c6": 33.70797119877902, + "c7": 22.653991565730614 }, - "vertexSeeds": { - "c1": 6.114537261022249, - "c2": 6.259668073278526, - "c3": 6.611771658343401, - "c4": 6.673553898537168, - "c5": 6.060801831289859, - "c6": 6.009008756620713, - "c7": 6.012897562630935 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359226, + "c3": 8.252427184466015, + "c4": 6.6019417475728135, + "c5": 4.951456310679613, + "c6": 3.300970873786413, + "c7": 1.6504854368932003 }, "rgb": [222, 0, 59] }, @@ -154257,23 +154257,23 @@ "year": 1754, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 29.11133720588637, - "c2": 24.157901815479548, - "c3": -35.12093412388059, - "c4": -10.669121172343072, - "c5": -10.829279189332343, - "c6": -33.830188071553096, - "c7": -17.218160907911752 + "points": { + "c1": -5.638180593173253, + "c2": -25.02336443822008, + "c3": 28.404375275570104, + "c4": 4.112612785374253, + "c5": 17.668537947337462, + "c6": 42.90014239326844, + "c7": 22.93047669531613 }, - "vertexSeeds": { - "c1": 2.2719314384190437, - "c2": 2.3534394456002397, - "c3": 2.3485749595466587, - "c4": 2.505502591051228, - "c5": 2.2708775283265226, - "c6": 2.466392972815003, - "c7": 2.5086930389861335 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269072, + "c3": 3.0282015718908935, + "c4": 2.422561257512716, + "c5": 1.816920943134538, + "c6": 1.2112806287563558, + "c7": 0.6056403143781779 }, "rgb": [58, 15, 49] }, @@ -154284,23 +154284,23 @@ "year": 1753, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -14.00414890632452, - "c2": 24.82955897379844, - "c3": 35.198158255230744, - "c4": -18.446839902787996, - "c5": -22.33228840348753, - "c6": 32.05947247239168, - "c7": 36.77299111335649 + "points": { + "c1": -23.11010263708846, + "c2": -18.057636380884613, + "c3": 22.416330905984516, + "c4": 16.171912197136308, + "c5": 15.629286198634055, + "c6": -2.070966897583858, + "c7": -27.074955211366635 }, - "vertexSeeds": { - "c1": 1.7861554297822118, - "c2": 1.7104870086226367, - "c3": 1.7785240614281281, - "c4": 1.7619295162720248, - "c5": 1.7662800112244745, - "c6": 1.9226969183161369, - "c7": 1.8184167244071228 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022193, + "c3": 2.3116042533518253, + "c4": 1.8492834026814617, + "c5": 1.3869625520110944, + "c6": 0.9246417013407309, + "c7": 0.46232085067036743 }, "rgb": [77, 76, 132] }, @@ -154311,23 +154311,23 @@ "year": 1754, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": -31.153214835922366, - "c2": 17.181363843353104, - "c3": 18.884531433208004, - "c4": 0.03114612694914598, - "c5": 2.5279466978277085, - "c6": -20.912590865093406, - "c7": 45.016337784516885 + "points": { + "c1": -5.815690986803553, + "c2": 50.27423018604622, + "c3": 32.17941267915088, + "c4": 32.06537742432854, + "c5": 47.54805547907166, + "c6": -47.33556106065858, + "c7": 48.80216492458309 }, - "vertexSeeds": { - "c1": 2.2089594089541222, - "c2": 2.3476426384480313, - "c3": 2.5393081905908774, - "c4": 2.3062544415036563, - "c5": 2.5061855454871167, - "c6": 2.5026793288677323, - "c7": 2.550424915435868 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495134, + "c3": 3.0744336569579294, + "c4": 2.4595469255663422, + "c5": 1.8446601941747582, + "c6": 1.2297734627831711, + "c7": 0.614886731391584 }, "rgb": [222, 0, 59] }, @@ -154338,23 +154338,23 @@ "year": 1753, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 31.95439171872274, - "c2": -12.266519165512324, - "c3": -22.10874712107212, - "c4": -25.59305953792753, - "c5": -13.553604199751039, - "c6": -13.857951610972275, - "c7": 32.22682293887505 + "points": { + "c1": 1.119978970187681, + "c2": 18.512445678931655, + "c3": 36.58204213342726, + "c4": 30.00039371596241, + "c5": -8.131013939800333, + "c6": -31.748507004072607, + "c7": -13.1339638147773 }, - "vertexSeeds": { - "c1": 1.0103937613351839, - "c2": 1.1302740791951562, - "c3": 1.0508057361080219, - "c4": 1.099960698541059, - "c5": 0.9803764526197136, - "c6": 1.1658489909067264, - "c7": 1.129017090067531 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144238, + "c3": 1.5025427646786869, + "c4": 1.20203421174295, + "c5": 0.9015256588072119, + "c6": 0.6010171058714738, + "c7": 0.3005085529357369 }, "rgb": [58, 15, 49] }, @@ -154365,23 +154365,23 @@ "year": 1754, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 1.8269986981694828, - "c2": 40.73088589415049, - "c3": -41.554419223736296, - "c4": 1.1302059197218455, - "c5": -8.056539407202287, - "c6": -28.06684041548438, - "c7": 37.36044612785611 + "points": { + "c1": 3.8938627369024488, + "c2": 34.48792898944086, + "c3": 42.721176560173916, + "c4": -19.023150400527395, + "c5": 30.629358325397575, + "c6": 27.78862129861355, + "c7": 7.078169973141961 }, - "vertexSeeds": { - "c1": 7.969383076233917, - "c2": 7.447620471557984, - "c3": 7.156105267328757, - "c4": 6.85644139174972, - "c5": 8.213359420170077, - "c6": 7.2918160547006945, - "c7": 7.196751517516133 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054093, + "c3": 9.801202034211746, + "c4": 7.840961627369399, + "c5": 5.880721220527041, + "c6": 3.9204808136846947, + "c7": 1.9602404068423473 }, "rgb": [238, 201, 159] }, @@ -154392,23 +154392,23 @@ "year": 1753, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 7.147833534942979, - "c2": 7.827246051861675, - "c3": -22.22223691293609, - "c4": -7.23032127871857, - "c5": 23.8356320436768, - "c6": -19.64151490978995, - "c7": -21.137651977678104 + "points": { + "c1": 10.72990513470225, + "c2": 0.5603622429313759, + "c3": 11.713977829045682, + "c4": 12.636508470294487, + "c5": -11.263134791199963, + "c6": -10.597489438511346, + "c7": -8.591811531576425 }, - "vertexSeeds": { - "c1": 5.9574051671973915, - "c2": 7.09358121747875, - "c3": 6.577776498585227, - "c4": 7.184743189422576, - "c5": 6.144536820766086, - "c6": 7.094754554067885, - "c7": 6.942284484451866 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083224, + "c3": 8.668515950069347, + "c4": 6.934812760055482, + "c5": 5.201109570041607, + "c6": 3.467406380027741, + "c7": 1.7337031900138655 }, "rgb": [238, 201, 159] }, @@ -154419,23 +154419,23 @@ "year": 1754, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -23.675593040652355, - "c2": -33.544944717246864, - "c3": -3.0021314305474505, - "c4": -6.507000295323472, - "c5": 28.308574651533625, - "c6": 25.895274853005724, - "c7": 18.138199938267014 + "points": { + "c1": 41.16050878814453, + "c2": 40.575455070604725, + "c3": 32.70322697897853, + "c4": 30.174661017877774, + "c5": 32.26851492291073, + "c6": 34.78360525295381, + "c7": 41.22184783670408 }, - "vertexSeeds": { - "c1": 2.283061370479987, - "c2": 2.013467325592481, - "c3": 2.2671382979746584, - "c4": 2.3161441784693237, - "c5": 2.358241701401475, - "c6": 2.2291959430627806, - "c7": 2.109287854047818 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779472952, + "c3": 2.8432732316227463, + "c4": 2.274618585298197, + "c5": 1.7059639389736476, + "c6": 1.1373092926490984, + "c7": 0.5686546463245492 }, "rgb": [238, 201, 159] }, @@ -154446,23 +154446,23 @@ "year": 1754, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": 53.41245603059551, - "c2": 52.73961878524936, - "c3": -16.517298109017695, - "c4": 21.63579918037972, - "c5": 37.4454618173811, - "c6": 42.85254939597735, - "c7": -39.29190022782146 + "points": { + "c1": 56.39028708006441, + "c2": 21.3140780552026, + "c3": -49.606047460788524, + "c4": 40.38518257341269, + "c5": 36.48827110520102, + "c6": -36.76514993356338, + "c7": 50.19985981877154 }, - "vertexSeeds": { - "c1": 3.8763712207475516, - "c2": 3.952791621150701, - "c3": 3.890199765046755, - "c4": 3.7555316346960996, - "c5": 3.553803244839511, - "c6": 3.9526216519674193, - "c7": 4.00555396446411 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366162, + "c3": 4.808136846971799, + "c4": 3.8465094775774413, + "c5": 2.8848821081830773, + "c6": 1.9232547387887207, + "c7": 0.9616273693943637 }, "rgb": [86, 146, 138] }, @@ -154473,23 +154473,23 @@ "year": 1754, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -40.86140205799586, - "c2": 23.453797605189408, - "c3": 38.908988260142536, - "c4": -45.38364996682323, - "c5": 21.91982248768008, - "c6": 43.76482395107834, - "c7": 0.25195511484109545 + "points": { + "c1": 48.61185383584623, + "c2": 10.638730129127808, + "c3": -18.42867681747351, + "c4": -18.75701333661994, + "c5": -16.26560255002508, + "c6": 42.6461610371657, + "c7": 31.443964065367396 }, - "vertexSeeds": { - "c1": 6.768302077262568, - "c2": 7.228180711992305, - "c3": 7.1711998315508, - "c4": 6.9571879297219335, - "c5": 7.18229722884004, - "c6": 7.32673371858569, - "c7": 7.119460531287858 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148405003, + "c3": 8.85344429033749, + "c4": 7.082755432270002, + "c5": 5.312066574202491, + "c6": 3.541377716135001, + "c7": 1.7706888580675106 }, "rgb": [238, 201, 159] }, @@ -154500,23 +154500,23 @@ "year": 1754, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -14.851614232826464, - "c2": 20.828520032876185, - "c3": -29.59187907754938, - "c4": 10.926950429959028, - "c5": 10.512987990605303, - "c6": -24.349894645520113, - "c7": -33.807643262111945 + "points": { + "c1": -34.532911435382594, + "c2": 3.346939560137436, + "c3": 37.22610560653162, + "c4": 11.543789312734987, + "c5": -29.140262837266796, + "c6": -22.228012361585037, + "c7": -39.831208355017765 }, - "vertexSeeds": { - "c1": 6.9781567770003905, - "c2": 6.896147411316237, - "c3": 6.853763446028672, - "c4": 6.856085679449343, - "c5": 6.8170515513474434, - "c6": 6.973892944819486, - "c7": 6.964647259902672 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117884, + "c3": 8.113730929264895, + "c4": 6.490984743411905, + "c5": 4.868238557558969, + "c6": 3.2454923717059794, + "c7": 1.6227461858529897 }, "rgb": [86, 146, 138] }, @@ -154527,23 +154527,23 @@ "year": 1754, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": 35.0825025816688, - "c2": 35.86645999323297, - "c3": 0.932855181466401, - "c4": 5.732937221191271, - "c5": 9.591094805540344, - "c6": -14.420556472485867, - "c7": -16.66703639949301 + "points": { + "c1": 38.853624256764526, + "c2": -3.3080290449134466, + "c3": -38.02812836367506, + "c4": 32.84609799774423, + "c5": -30.399554604472, + "c6": 11.194675597051067, + "c7": -21.298069024681 }, - "vertexSeeds": { - "c1": 2.6978276800335195, - "c2": 2.7319342643677684, - "c3": 2.6454142836978902, - "c4": 2.838328908818535, - "c5": 2.8340030077160763, - "c6": 2.652557685382095, - "c7": 2.663322286562533 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.4211742949607076, + "c4": 2.7369394359685635, + "c5": 2.05270457697642, + "c6": 1.3684697179842762, + "c7": 0.6842348589921439 }, "rgb": [86, 146, 138] }, @@ -154554,23 +154554,23 @@ "year": 1754, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": -34.55215488514904, - "c2": 18.730371457881986, - "c3": -21.595422515531716, - "c4": -25.42729871179045, - "c5": 20.955508134595334, - "c6": 48.61891814017494, - "c7": 22.694473568282774 + "points": { + "c1": -19.90384928027167, + "c2": 4.113555939761746, + "c3": -23.926075084166822, + "c4": 45.830301310318134, + "c5": 32.65380870789875, + "c6": 44.45392616687917, + "c7": -40.03470017329919 }, - "vertexSeeds": { - "c1": 3.0043339525105313, - "c2": 3.077293898765145, - "c3": 3.011885537055131, - "c4": 3.031240212274497, - "c5": 3.1007048470330734, - "c6": 2.890127754807096, - "c7": 2.933027252959837 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556174, + "c3": 3.7679149329634725, + "c4": 3.01433194637078, + "c5": 2.260748959778087, + "c6": 1.5071659731853853, + "c7": 0.7535829865926926 }, "rgb": [77, 76, 132] }, @@ -154581,23 +154581,23 @@ "year": 1753, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -20.200260604964036, - "c2": -30.279068799499168, - "c3": 34.499490799681084, - "c4": -27.706332582494586, - "c5": -8.405224551383398, - "c6": 35.41258845714209, - "c7": -19.221174211867265 + "points": { + "c1": -28.25736160741074, + "c2": 21.88868450517176, + "c3": -2.6877757680948946, + "c4": -37.05556252363303, + "c5": -38.07397171246068, + "c6": -29.157858099553437, + "c7": 32.58303847511215 }, - "vertexSeeds": { - "c1": 14.354881963280693, - "c2": 12.841218492613855, - "c3": 12.953453174737643, - "c4": 14.060711169974267, - "c5": 13.579863004675788, - "c6": 12.671152296111972, - "c7": 14.176665963686577 + "offsets": { + "c1": 24.07766990291262, + "c2": 20.638002773925095, + "c3": 17.19833564493757, + "c4": 13.758668515950074, + "c5": 10.319001386962547, + "c6": 6.879334257975022, + "c7": 3.439667128987496 }, "rgb": [238, 201, 159] }, @@ -154608,23 +154608,23 @@ "year": 1754, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -1.5912549331220092, - "c2": -34.70270283411772, - "c3": 32.93105423516388, - "c4": 3.674229263539999, - "c5": 1.1395045145230611, - "c6": -15.972825484819857, - "c7": 22.787789982454534 + "points": { + "c1": 1.5363575556045745, + "c2": 38.90047541137216, + "c3": -34.0425381720551, + "c4": 39.02421996576074, + "c5": -4.216242588446583, + "c6": 11.026064763571995, + "c7": -16.376394392129214 }, - "vertexSeeds": { - "c1": 6.863585006483071, - "c2": 6.706381253278419, - "c3": 7.037004652103788, - "c4": 7.001014996608815, - "c5": 6.772171331365908, - "c6": 6.638153054475785, - "c7": 6.674298932093657 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043002, + "c3": 8.645399907535822, + "c4": 6.916319926028661, + "c5": 5.187239944521501, + "c6": 3.4581599630143414, + "c7": 1.7290799815071598 }, "rgb": [238, 201, 159] }, @@ -154635,23 +154635,23 @@ "year": 1754, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -37.992545225237016, - "c2": -34.64945894201462, - "c3": 8.664523765475337, - "c4": 1.0080187723691338, - "c5": 28.849157393445097, - "c6": 37.18358899138941, - "c7": 2.935823901162813 + "points": { + "c1": 36.40969345713569, + "c2": -0.06936632849842539, + "c3": -12.12360757253617, + "c4": -39.480626506865406, + "c5": 24.38791920843677, + "c6": -32.026674667680076, + "c7": -41.49941198563827 }, - "vertexSeeds": { - "c1": 4.2595715045148905, - "c2": 4.590873231798401, - "c3": 4.054836338567798, - "c4": 4.308098553839151, - "c5": 4.471950560089003, - "c6": 4.035202347189093, - "c7": 4.5508737839632944 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -154662,23 +154662,23 @@ "year": 1754, "resistanceReported": false, "duration": 54345600, - "curveSeeds": { - "c1": -9.27452225698184, - "c2": 16.272710384061824, - "c3": -66.19074110969883, - "c4": 54.930736814898125, - "c5": 9.03540254709813, - "c6": -6.691214642758155, - "c7": -19.245662351276238 + "points": { + "c1": -35.80703600500277, + "c2": -15.325050303419012, + "c3": 2.5984558902612918, + "c4": -58.49084841649645, + "c5": -22.642235084212018, + "c6": -8.525800131637837, + "c7": -36.6820482859423 }, - "vertexSeeds": { - "c1": 6.752763385891912, - "c2": 6.131906086331056, - "c3": 6.674859357550208, - "c4": 6.053205200678221, - "c5": 6.485971001885069, - "c6": 6.676555154771258, - "c7": 6.604118760424242 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077664, + "c3": 8.090614886731395, + "c4": 6.472491909385109, + "c5": 4.85436893203884, + "c6": 3.2362459546925546, + "c7": 1.6181229773462693 }, "rgb": [238, 201, 159] }, @@ -154689,23 +154689,23 @@ "year": 1754, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -18.472264520105572, - "c2": 27.55400639353904, - "c3": -8.222626933701616, - "c4": 25.467995021378727, - "c5": 23.841775041054063, - "c6": 31.362511952924137, - "c7": -14.039546565012298 + "points": { + "c1": -2.804473652464658, + "c2": -0.7735837047837535, + "c3": 29.318082973470155, + "c4": -34.52046740472017, + "c5": -10.523820993793212, + "c6": -3.017207147512636, + "c7": -12.817984790327564 }, - "vertexSeeds": { - "c1": 4.344511242281751, - "c2": 4.746368687005724, - "c3": 4.664083788821573, - "c4": 4.3017736693642, - "c5": 4.487733148267105, - "c6": 4.399612883552159, - "c7": 4.273616613174329 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894587, + "c3": 5.686546463245493, + "c4": 4.549237170596391, + "c5": 3.411927877947298, + "c6": 2.2746185852981955, + "c7": 1.1373092926490935 }, "rgb": [238, 201, 159] }, @@ -154716,23 +154716,23 @@ "year": 1754, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 30.065300308168872, - "c2": -9.249104143235488, - "c3": 20.741338925142195, - "c4": -32.08129919421953, - "c5": 36.374647323396744, - "c6": -31.453916034970337, - "c7": 5.991917538192432 + "points": { + "c1": 28.818535226079305, + "c2": -9.287117799114665, + "c3": 11.527426903364422, + "c4": 34.22486328564915, + "c5": -26.787503607901478, + "c6": 15.125063274475096, + "c7": -23.197005709375354 }, - "vertexSeeds": { - "c1": 5.6850794680730035, - "c2": 5.680428071983098, - "c3": 5.475119429591456, - "c4": 5.852879807658954, - "c5": 5.441580789167416, - "c6": 5.6373178742182475, - "c7": 5.847556754008165 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [58, 15, 49] }, @@ -154743,23 +154743,23 @@ "year": 1754, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 5.049522172151882, - "c2": 44.235291847915576, - "c3": 39.04801656413311, - "c4": -11.505461547384385, - "c5": -18.871554732192724, - "c6": -36.56587817511455, - "c7": 33.93365846009067 + "points": { + "c1": -33.91583305054917, + "c2": -9.270907757088395, + "c3": 23.47352354546331, + "c4": -11.943867427560086, + "c5": 18.867453887806334, + "c6": 9.890603797533586, + "c7": -17.37766690552087 }, - "vertexSeeds": { - "c1": 7.244630667597316, - "c2": 7.1258646470927305, - "c3": 7.163788044676767, - "c4": 7.216031871413537, - "c5": 6.921250055588017, - "c6": 7.408052586473287, - "c7": 6.999197597445911 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -154770,23 +154770,23 @@ "year": 1753, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -1.9650652148755157, - "c2": -30.2426836399267, - "c3": 16.0176207925552, - "c4": 30.398004863828923, - "c5": -10.854644228500355, - "c6": -21.70574726111218, - "c7": -23.715700604707507 + "points": { + "c1": -9.018171105990437, + "c2": -5.063636571233182, + "c3": -2.7186185425172518, + "c4": -3.249900966799757, + "c5": 28.796315288024758, + "c6": -0.4432918325467696, + "c7": -21.164652688855938 }, - "vertexSeeds": { - "c1": 3.274391144367746, - "c2": 3.192897033437055, - "c3": 3.0140621453571987, - "c4": 2.9738855485406477, - "c5": 3.1331337800831984, - "c6": 3.249187276987868, - "c7": 3.3083605742739017 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [58, 15, 49] }, @@ -154797,23 +154797,23 @@ "year": 1754, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 11.494564054941357, - "c2": -32.606471898292405, - "c3": 35.21457058184335, - "c4": -30.61417231295914, - "c5": -14.046087270141147, - "c6": 8.903591770612351, - "c7": -22.81810663055994 + "points": { + "c1": -23.62326882146942, + "c2": 18.197288895997765, + "c3": -26.53302257746696, + "c4": 12.050183201922358, + "c5": -13.344738659832725, + "c6": 33.1114483752003, + "c7": 29.107973116911822 }, - "vertexSeeds": { - "c1": 4.192685875836717, - "c2": 4.291668103536536, - "c3": 4.344665836782635, - "c4": 5.071455698730963, - "c5": 4.969580586002964, - "c6": 4.360042691802852, - "c7": 4.363245693040033 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -154824,23 +154824,23 @@ "year": 1754, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -33.72960547162875, - "c2": 28.662165741973745, - "c3": 33.1033179126318, - "c4": -4.918406194536807, - "c5": 12.898600606649076, - "c6": -24.105820320651198, - "c7": -29.627142797684336 + "points": { + "c1": -22.13293638522141, + "c2": 25.85635823951231, + "c3": 22.581226683882036, + "c4": 8.941699555743746, + "c5": 18.242318942957738, + "c6": 19.07227013705848, + "c7": 25.133636265179625 }, - "vertexSeeds": { - "c1": 4.249110243598735, - "c2": 4.593610574642406, - "c3": 4.259783864480022, - "c4": 4.765172395643542, - "c5": 4.582206937768531, - "c6": 4.362160596390038, - "c7": 4.473768028227062 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [238, 201, 159] }, @@ -154851,23 +154851,23 @@ "year": 1754, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": -13.251301101321069, - "c2": -23.23085506155348, - "c3": 11.227077191808284, - "c4": -13.416961066561754, - "c5": -41.36644465463893, - "c6": 15.847376307170705, - "c7": -20.69944441108425 + "points": { + "c1": 24.943692365947427, + "c2": 14.908982857482783, + "c3": -24.41932677889537, + "c4": 24.190351267651437, + "c5": -24.601731848527024, + "c6": -18.190902233173805, + "c7": -44.56260746925297 }, - "vertexSeeds": { - "c1": 8.72710596649331, - "c2": 8.877523996800619, - "c3": 8.814179275703166, - "c4": 8.231438545064965, - "c5": 8.710039977613025, - "c6": 8.587556444445239, - "c7": 8.234326200944858 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.31484049930652, + "c3": 11.095700416088768, + "c4": 8.876560332871017, + "c5": 6.657420249653267, + "c6": 4.438280166435517, + "c7": 2.219140083217766 }, "rgb": [238, 201, 159] }, @@ -154878,23 +154878,23 @@ "year": 1754, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": -36.13415783634352, - "c2": 44.49851430554243, - "c3": 7.7182263968283635, - "c4": -42.72840229714706, - "c5": 48.88412656010061, - "c6": 5.772976445572581, - "c7": 19.96156350793059 + "points": { + "c1": 21.202448820904053, + "c2": 43.01495070304313, + "c3": 47.77370192660777, + "c4": -33.959590781299795, + "c5": 28.371468118915715, + "c6": -22.654630838524675, + "c7": 25.5649039606556 }, - "vertexSeeds": { - "c1": 3.153155261745747, - "c2": 2.533334287586809, - "c3": 2.5313929496761047, - "c4": 3.168687712094666, - "c5": 3.0488816188044807, - "c6": 2.6771528475442516, - "c7": 2.906636875319784 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228847, + "c3": 3.0050855293573746, + "c4": 2.4040684234858984, + "c5": 1.8030513176144254, + "c6": 1.2020342117429492, + "c7": 0.6010171058714762 }, "rgb": [86, 146, 138] }, @@ -154905,23 +154905,23 @@ "year": 1753, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 20.796760234737384, - "c2": 4.052671557956948, - "c3": 3.6183709289356116, - "c4": 9.259128149009193, - "c5": 21.535158018469623, - "c6": -26.58586064843946, - "c7": -27.175941368189665 + "points": { + "c1": 7.163871589947888, + "c2": 7.866044320721741, + "c3": -25.09162359650901, + "c4": 20.525831549547526, + "c5": -31.151896345202154, + "c6": -27.74411983168139, + "c7": 13.131640514680917 }, - "vertexSeeds": { - "c1": 6.4070061101986715, - "c2": 6.734211449986071, - "c3": 6.380281434877711, - "c4": 6.296954446714873, - "c5": 7.324486506645834, - "c6": 6.493791279270746, - "c7": 7.321975949237528 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284323, + "c3": 8.784096162736942, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947745, + "c7": 1.7568192325473924 }, "rgb": [238, 201, 159] }, @@ -154932,23 +154932,23 @@ "year": 1754, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -15.810909683872385, - "c2": -26.71766268685903, - "c3": 13.571665746047714, - "c4": 33.47299531412288, - "c5": 22.559859669391614, - "c6": 21.09524816648375, - "c7": -36.05529258959052 + "points": { + "c1": -27.979644429165564, + "c2": -17.794152431940404, + "c3": 35.500995291316585, + "c4": -12.5346561455592, + "c5": 1.389867719930379, + "c6": -1.077666413745959, + "c7": 17.22577943256986 }, - "vertexSeeds": { - "c1": 6.267276283743776, - "c2": 6.633341954929895, - "c3": 6.614703935328795, - "c4": 5.8569256666088325, - "c5": 6.507629994468253, - "c6": 5.925896098571762, - "c7": 6.736627449845731 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.20619509939898, + "c4": 6.564956079519189, + "c5": 4.923717059639396, + "c6": 3.2824780397595945, + "c7": 1.6412390198798021 }, "rgb": [77, 76, 132] }, @@ -154959,23 +154959,23 @@ "year": 1754, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": -31.550754937844818, - "c2": 1.2991086951270319, - "c3": 21.91577092642723, - "c4": -24.798609599459848, - "c5": -24.291928707475314, - "c6": 26.747397719921068, - "c7": -2.210828335331243 + "points": { + "c1": 38.34125905124523, + "c2": 18.491368543536936, + "c3": -16.520497745936005, + "c4": 28.78075053801085, + "c5": 30.80981152506118, + "c6": -12.288521200961675, + "c7": -18.18508159923472 }, - "vertexSeeds": { - "c1": 7.048356995299142, - "c2": 7.060599341805897, - "c3": 7.0841095341335185, - "c4": 7.342311341595345, - "c5": 6.962279986787629, - "c6": 6.880731429477594, - "c7": 6.941654660410517 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -154986,23 +154986,23 @@ "year": 1753, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -16.142127595289644, - "c2": -15.611647885000163, - "c3": 5.116692325404166, - "c4": 23.596427997928124, - "c5": 10.97466330577064, - "c6": 17.548244949421402, - "c7": -13.587582605317772 + "points": { + "c1": -23.575921009084198, + "c2": -21.517937488170283, + "c3": 21.459216426459292, + "c4": -0.7548797096325686, + "c5": -2.869312403217787, + "c6": -14.862445759934857, + "c7": 1.8241521701994117 }, - "vertexSeeds": { - "c1": 4.654788650343541, - "c2": 4.690705614432442, - "c3": 4.707444493145732, - "c4": 4.729739500008223, - "c5": 4.669623992926059, - "c6": 4.944221874338101, - "c7": 5.022011925671758 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699035, + "c3": 6.148867313915851, + "c4": 4.9190938511326845, + "c5": 3.6893203883495174, + "c6": 2.4595469255663422, + "c7": 1.2297734627831756 }, "rgb": [238, 201, 159] }, @@ -155013,23 +155013,23 @@ "year": 1754, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 2.5077685018751907, - "c2": 32.16627363684067, - "c3": -40.746762974376914, - "c4": 5.1315838487882885, - "c5": -7.933348182396358, - "c6": -25.528016041603628, - "c7": 4.114791565523696 + "points": { + "c1": -16.816928018484703, + "c2": 33.003830995083774, + "c3": 26.952223001182574, + "c4": -43.476525947431526, + "c5": 43.39808950405914, + "c6": -39.81741591817416, + "c7": -40.78577178512392 }, - "vertexSeeds": { - "c1": 4.356059853271254, - "c2": 4.389023978012103, - "c3": 4.408499065253179, - "c4": 4.154383946383249, - "c5": 4.306432050960272, - "c6": 4.424008575042853, - "c7": 4.352166090292663 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251041, + "c3": 5.316689782709201, + "c4": 4.253351826167361, + "c5": 3.1900138696255205, + "c6": 2.1266759130836803, + "c7": 1.0633379565418402 }, "rgb": [77, 76, 132] }, @@ -155040,23 +155040,23 @@ "year": 1753, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -11.029661534608298, - "c2": -8.868401761188952, - "c3": 28.709270233327324, - "c4": 26.400198823038274, - "c5": -3.1339447425206757, - "c6": -17.05534756305326, - "c7": 5.712513405565375 + "points": { + "c1": 27.920295224076476, + "c2": 13.197519704664558, + "c3": -30.437291792055564, + "c4": 9.370442722994945, + "c5": -29.80904772697903, + "c6": -32.098656933694016, + "c7": 25.831336208954262 }, - "vertexSeeds": { - "c1": 8.24549203918436, - "c2": 7.323851890267397, - "c3": 6.970175699296655, - "c4": 7.728875558034283, - "c5": 7.307572722613445, - "c6": 7.980623832548867, - "c7": 8.12361095266 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [238, 201, 159] }, @@ -155067,23 +155067,23 @@ "year": 1754, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 1.268938901862846, - "c2": -34.76697108677098, - "c3": 14.333156927006236, - "c4": 30.524682645463713, - "c5": -21.78081355050834, - "c6": 18.38341269824756, - "c7": -3.7785289708278498 + "points": { + "c1": -35.080620541118925, + "c2": 9.397928890031473, + "c3": -2.1992213398839837, + "c4": 34.27461081762816, + "c5": -19.63878961463058, + "c6": 10.08678200744415, + "c7": 1.1853549461354902 }, - "vertexSeeds": { - "c1": 3.379281162421331, - "c2": 3.5259925675954285, - "c3": 3.1664627037487096, - "c4": 3.2659098726064166, - "c5": 3.307771395718753, - "c6": 3.4898615680665594, - "c7": 3.4184375240685534 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400835, + "c3": 4.253351826167357, + "c4": 3.4026814609338873, + "c5": 2.5520110957004176, + "c6": 1.7013407304669477, + "c7": 0.8506703652334697 }, "rgb": [238, 201, 159] }, @@ -155094,23 +155094,23 @@ "year": 1754, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -19.470219907969113, - "c2": -3.298331617304413, - "c3": -24.335238740732382, - "c4": 35.151168902626566, - "c5": -27.15563699086784, - "c6": 4.530140975239284, - "c7": 4.306806403166064 + "points": { + "c1": -26.08402451202661, + "c2": 31.67768659205086, + "c3": -16.083876254135927, + "c4": -6.237465062541801, + "c5": 5.382186290978545, + "c6": 35.20249666408036, + "c7": -19.622064708071605 }, - "vertexSeeds": { - "c1": 0.6929019605458416, - "c2": 0.775882904469277, - "c3": 0.7688554592359915, - "c4": 0.7517180261512381, - "c5": 0.7678897664293889, - "c6": 0.7650194119943902, - "c7": 0.6857935650323649 + "offsets": { + "c1": 1.3268608414239482, + "c2": 1.1373092926490984, + "c3": 0.9477577438742487, + "c4": 0.7582061950993989, + "c5": 0.5686546463245492, + "c6": 0.37910309754969945, + "c7": 0.18955154877484973 }, "rgb": [222, 0, 59] }, @@ -155121,23 +155121,23 @@ "year": 1754, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 27.72121250535276, - "c2": -11.14354437712213, - "c3": -11.76619063999097, - "c4": 15.186318398939676, - "c5": -6.347944616347263, - "c6": -25.42063596395773, - "c7": 19.46703128502739 + "points": { + "c1": -0.8975530744002711, + "c2": -15.243832793279125, + "c3": 14.431216696862485, + "c4": 36.61425735319078, + "c5": 28.788812300139355, + "c6": -11.234650508405622, + "c7": 8.852560571557206 }, - "vertexSeeds": { - "c1": 5.823376045987453, - "c2": 5.579406837287116, - "c3": 5.634782484469335, - "c4": 5.829699064492977, - "c5": 5.806907122576737, - "c6": 5.700458927486347, - "c7": 5.847574828317851 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147002, + "c3": 6.98104484512252, + "c4": 5.584835876098002, + "c5": 4.18862690707352, + "c6": 2.792417938049001, + "c7": 1.396208969024519 }, "rgb": [222, 0, 59] }, @@ -155148,23 +155148,23 @@ "year": 1754, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 23.82140782076518, - "c2": 22.15782506221158, - "c3": 31.500867920024284, - "c4": -11.525044472866135, - "c5": 39.21475875976652, - "c6": 4.304891547177455, - "c7": 32.59369486512656 + "points": { + "c1": 36.4572915767502, + "c2": -22.761801665792273, + "c3": 18.870817838263683, + "c4": 6.5895455420492866, + "c5": -26.424121146367757, + "c6": -47.426165818670796, + "c7": -33.47742362928793 }, - "vertexSeeds": { - "c1": 4.799226995908532, - "c2": 4.759969951068812, - "c3": 4.406416075855592, - "c4": 4.406999037509174, - "c5": 4.830858627884009, - "c6": 4.7881013986303955, - "c7": 4.13094226368013 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -155175,23 +155175,23 @@ "year": 1754, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 40.17087799293494, - "c2": 45.06197333303928, - "c3": -13.076958390854138, - "c4": -5.10816157046478, - "c5": 16.496779822826348, - "c6": 22.68937080248491, - "c7": -42.671161185098164 + "points": { + "c1": -24.13526973118412, + "c2": 46.45529811264159, + "c3": -26.879812521052692, + "c4": 32.11093083516149, + "c5": -43.72654604000582, + "c6": -20.67799589642973, + "c7": 20.29814385976558 }, - "vertexSeeds": { - "c1": 6.2483472846817145, - "c2": 5.8710762354480055, - "c3": 5.452761610194701, - "c4": 5.944893914090631, - "c5": 5.402301930622451, - "c6": 5.904629427626035, - "c7": 5.573686831227551 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514566, + "c3": 7.766990291262139, + "c4": 6.213592233009713, + "c5": 4.660194174757278, + "c6": 3.106796116504852, + "c7": 1.553398058252426 }, "rgb": [238, 201, 159] }, @@ -155202,23 +155202,23 @@ "year": 1754, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -14.841118312536356, - "c2": -15.063569562671574, - "c3": -12.275328546909954, - "c4": -31.833456871351032, - "c5": -15.2345760295532, - "c6": -10.919360131208556, - "c7": 33.75643923340536 + "points": { + "c1": 13.929470999688895, + "c2": 32.10832050132926, + "c3": -35.25615279604232, + "c4": 21.020574070592204, + "c5": 5.730227916774567, + "c6": 16.028090186891887, + "c7": 0.10211284055782244 }, - "vertexSeeds": { - "c1": 5.333017633842411, - "c2": 5.911192266556472, - "c3": 5.246152786388209, - "c4": 5.461257860798499, - "c5": 6.108915975064773, - "c6": 5.90633842769134, - "c7": 5.326014921936422 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192324, + "c4": 5.899214054553863, + "c5": 4.4244105409153915, + "c6": 2.9496070272769317, + "c7": 1.4748035136384605 }, "rgb": [86, 146, 138] }, @@ -155229,23 +155229,23 @@ "year": 1754, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -21.752808275210395, - "c2": 29.011287396388198, - "c3": 33.195741580053806, - "c4": 7.225738081486682, - "c5": -32.66762092844399, - "c6": 25.161917865356067, - "c7": 6.993990890064488 + "points": { + "c1": -29.436451394824363, + "c2": 17.002030546814588, + "c3": -31.463229209637653, + "c4": 1.0906483533854114, + "c5": 9.753145033804408, + "c6": -22.137574570658124, + "c7": 3.481753406121989 }, - "vertexSeeds": { - "c1": 5.6458645869030075, - "c2": 4.962007404142964, - "c3": 4.974687815018377, - "c4": 5.207443880406538, - "c5": 4.967672261187299, - "c6": 5.321809243963031, - "c7": 5.225921200500722 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872392, + "c6": 2.699953767914937, + "c7": 1.3499768839574684 }, "rgb": [58, 15, 49] }, @@ -155256,23 +155256,23 @@ "year": 1754, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -2.81167642508532, - "c2": -26.688514371569063, - "c3": 24.87653287884273, - "c4": 11.259513615562604, - "c5": -31.08880455152672, - "c6": 31.002066476808373, - "c7": 12.108903565047818 + "points": { + "c1": 15.890879745654388, + "c2": -11.219270527053112, + "c3": 24.470667454265786, + "c4": 29.538556518628802, + "c5": -14.355952428841345, + "c6": 24.635431851758355, + "c7": 28.255311061763052 }, - "vertexSeeds": { - "c1": 4.2201708727788, - "c2": 3.692524392880897, - "c3": 3.6776733894932985, - "c4": 3.6714840890878744, - "c5": 3.6871441999988868, - "c6": 3.734301192388041, - "c7": 3.5388216157920542 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572817, + "c3": 5.501618122977346, + "c4": 4.401294498381879, + "c5": 3.3009708737864067, + "c6": 2.2006472491909395, + "c7": 1.1003236245954715 }, "rgb": [222, 0, 59] }, @@ -155283,23 +155283,23 @@ "year": 1754, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": -36.291534420877866, - "c2": -19.89031544813895, - "c3": -0.8378626451456483, - "c4": -52.10960282210151, - "c5": -31.170794247980155, - "c6": 27.644456867020637, - "c7": -23.39316503302065 + "points": { + "c1": 6.402463756843858, + "c2": 54.219066309603036, + "c3": 30.82291926324517, + "c4": -25.476621074602477, + "c5": -32.20703844157282, + "c6": -54.209748325222, + "c7": 52.208102173278434 }, - "vertexSeeds": { - "c1": 4.4983666855723445, - "c2": 5.3349239641811925, - "c3": 4.729737056396576, - "c4": 4.489807066305196, - "c5": 6.095410179568937, - "c6": 5.257151338765564, - "c7": 5.972747974687302 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.81969486823856, + "c3": 8.183079056865465, + "c4": 6.546463245492372, + "c5": 4.909847434119276, + "c6": 3.2732316227461853, + "c7": 1.6366158113730935 }, "rgb": [222, 0, 59] }, @@ -155310,23 +155310,23 @@ "year": 1754, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -17.57494984027555, - "c2": -1.463336377366744, - "c3": 10.716246932126523, - "c4": 1.3143995147745926, - "c5": 35.365886762396016, - "c6": -25.882287949953387, - "c7": 2.537622658812097 + "points": { + "c1": -20.701299430643722, + "c2": -19.376779920218127, + "c3": -5.610264830323381, + "c4": -30.32363972114525, + "c5": 38.26876422073806, + "c6": -31.223102479996896, + "c7": 25.00498389016552 }, - "vertexSeeds": { - "c1": 5.958878211367768, - "c2": 6.092637787438992, - "c3": 5.995865428326937, - "c4": 6.646723804411566, - "c5": 6.421889264943232, - "c6": 6.1582567475793475, - "c7": 5.750950053587445 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.9981507165973165, + "c4": 6.3985205732778585, + "c5": 4.798890429958387, + "c6": 3.1992602866389293, + "c7": 1.599630143319471 }, "rgb": [86, 146, 138] }, @@ -155337,23 +155337,23 @@ "year": 1754, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -10.209954932071145, - "c2": -29.422174628505985, - "c3": 17.72114316885356, - "c4": -7.727124478952611, - "c5": -2.1515549031819603, - "c6": -30.42115530368, - "c7": -20.78304129390215 + "points": { + "c1": 32.63933313242377, + "c2": -19.970109360592183, + "c3": 12.714699296875388, + "c4": -32.02180236641094, + "c5": -33.77298988844415, + "c6": 5.897643594512459, + "c7": -35.1365658571171 }, - "vertexSeeds": { - "c1": 3.1088082901554404, - "c2": 3.1088082901554404, - "c3": 3.1088082901554404, - "c4": 3.1088082901554404, - "c5": 3.1088082901554404, - "c6": 3.1088082901554404, - "c7": 3.1088082901554404 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -155364,23 +155364,23 @@ "year": 1754, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": -29.80323175487607, - "c2": 53.10084661171629, - "c3": 42.501340749178766, - "c4": -16.081324968026998, - "c5": 52.85133321730689, - "c6": -26.26659286506093, - "c7": 3.9729050560142127 + "points": { + "c1": 34.68578954944664, + "c2": 44.60008745184494, + "c3": -34.94676355286473, + "c4": -20.108343124265872, + "c5": -19.16030345871264, + "c6": 37.59726840758795, + "c7": 51.12715870678849 }, - "vertexSeeds": { - "c1": 7.523176161522513, - "c2": 7.479286176554263, - "c3": 7.572806079164131, - "c4": 6.809011607243435, - "c5": 7.0373406434984505, - "c6": 7.77011715803383, - "c7": 8.027301390217803 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893204, + "c3": 9.708737864077673, + "c4": 7.766990291262131, + "c5": 5.825242718446598, + "c6": 3.8834951456310653, + "c7": 1.9417475728155327 }, "rgb": [58, 15, 49] }, @@ -155391,23 +155391,23 @@ "year": 1754, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 23.023114561175554, - "c2": -11.179986800223826, - "c3": -25.647681985252945, - "c4": 15.123628659048244, - "c5": 2.440170590105943, - "c6": -2.716469491614376, - "c7": -40.79588208616659 + "points": { + "c1": -14.93407033847581, + "c2": -38.43818218415533, + "c3": 27.354459321965486, + "c4": -19.006496599546534, + "c5": 25.20586046681189, + "c6": 12.345484400590848, + "c7": 9.082767952071592 }, - "vertexSeeds": { - "c1": 4.3004262077648745, - "c2": 4.093365099173429, - "c3": 4.607890220062285, - "c4": 3.9967893299190753, - "c5": 4.37100818401195, - "c6": 4.053855646223348, - "c7": 4.5897370398846045 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.62968099861304, + "c3": 5.524734165510862, + "c4": 4.41978733240869, + "c5": 3.31484049930652, + "c6": 2.209893666204342, + "c7": 1.104946833102171 }, "rgb": [77, 76, 132] }, @@ -155418,23 +155418,23 @@ "year": 1754, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -8.83635720023069, - "c2": 31.865170641724745, - "c3": 9.12373769307515, - "c4": -9.571110045354178, - "c5": -7.549196292868842, - "c6": -3.451841835807407, - "c7": -21.43873359696777 + "points": { + "c1": 42.406921986361226, + "c2": -21.175589952807083, + "c3": -9.701480793290017, + "c4": -1.0370996059312034, + "c5": -27.991186149250858, + "c6": -6.075213815833763, + "c7": 21.217061029755698 }, - "vertexSeeds": { - "c1": 4.548254966637968, - "c2": 4.239523777826373, - "c3": 4.534188306546577, - "c4": 4.064124093433073, - "c5": 4.114136641387899, - "c6": 4.576548678931915, - "c7": 4.089082007039545 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572815, + "c3": 5.501618122977347, + "c4": 4.401294498381877, + "c5": 3.3009708737864076, + "c6": 2.2006472491909386, + "c7": 1.1003236245954693 }, "rgb": [222, 0, 59] }, @@ -155445,23 +155445,23 @@ "year": 1754, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 27.90167201259718, - "c2": -31.32224197973855, - "c3": -35.740445712116625, - "c4": 42.121708418425946, - "c5": -31.570244368345797, - "c6": -32.51486650081754, - "c7": -31.32042124530539 + "points": { + "c1": -28.64038656028503, + "c2": -39.05289352662931, + "c3": 0.5881180004941129, + "c4": 17.33752654903381, + "c5": 31.584022664440262, + "c6": 3.799309007568283, + "c7": 41.35015515695519 }, - "vertexSeeds": { - "c1": 4.652656987984045, - "c2": 4.141418179567657, - "c3": 4.381922011305824, - "c4": 4.482035426826634, - "c5": 5.04956603796047, - "c6": 4.61949461354288, - "c7": 4.809870038128102 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538142, + "c3": 6.056403143781783, + "c4": 4.845122515025431, + "c5": 3.633841886269073, + "c6": 2.4225612575127156, + "c7": 1.2112806287563578 }, "rgb": [86, 146, 138] }, @@ -155472,23 +155472,23 @@ "year": 1754, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 8.988593166826583, - "c2": -27.604354118854378, - "c3": -5.608911439916859, - "c4": 16.870671130272072, - "c5": -38.51991917052533, - "c6": -8.31318368768774, - "c7": 2.780105158485817 + "points": { + "c1": 24.609499875662117, + "c2": 40.48955242977737, + "c3": 12.79333458213511, + "c4": -41.043647230566265, + "c5": -0.3564300595161285, + "c6": -34.78006808536175, + "c7": -2.325967987908122 }, - "vertexSeeds": { - "c1": 4.015045581148545, - "c2": 4.025014334932737, - "c3": 4.136645263957297, - "c4": 4.203518510482812, - "c5": 4.230846420706322, - "c6": 4.063402218054974, - "c7": 4.1527311985449975 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808602, + "c3": 5.062413314840503, + "c4": 4.049930651872406, + "c5": 3.0374479889042942, + "c6": 2.024965325936196, + "c7": 1.012482662968098 }, "rgb": [58, 15, 49] }, @@ -155499,23 +155499,23 @@ "year": 1754, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 36.69142463681279, - "c2": 31.080836398265994, - "c3": -8.834318124519449, - "c4": 6.085841906328994, - "c5": -37.73102340806762, - "c6": 3.1399127756225127, - "c7": -2.2815619421376 + "points": { + "c1": 23.601362538028134, + "c2": 22.182513157135027, + "c3": 10.49017690762954, + "c4": 32.21060664634229, + "c5": -4.9491452588713685, + "c6": -35.30512205964169, + "c7": -28.591804309836625 }, - "vertexSeeds": { - "c1": 1.6481464003196387, - "c2": 1.7046339723272284, - "c3": 1.6636686725552714, - "c4": 1.7887489101623246, - "c5": 1.6000438848663239, - "c6": 1.6148854970299171, - "c7": 1.6905704061552274 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.662968099861303, + "c3": 2.2191400832177544, + "c4": 1.775312066574203, + "c5": 1.3314840499306515, + "c6": 0.8876560332871031, + "c7": 0.44382801664355154 }, "rgb": [86, 146, 138] }, @@ -155526,23 +155526,23 @@ "year": 1754, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -7.135805066398582, - "c2": 10.971991305924192, - "c3": 12.94341134505941, - "c4": -35.34624641208359, - "c5": 25.078318355186603, - "c6": -7.499978721702199, - "c7": -9.424928469611473 + "points": { + "c1": -11.12472900466998, + "c2": 34.87265699137017, + "c3": 10.835662330851981, + "c4": 26.001612235317474, + "c5": -43.83934526441403, + "c6": -24.61166215629854, + "c7": 8.14822973683723 }, - "vertexSeeds": { - "c1": 4.709688768178351, - "c2": 5.2241539703824795, - "c3": 5.224748495692365, - "c4": 4.747476644739677, - "c5": 5.129988155889833, - "c6": 5.799148508881543, - "c7": 5.108326302662067 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187243, + "c3": 7.004160887656029, + "c4": 5.603328710124825, + "c5": 4.202496532593622, + "c6": 2.8016643550624174, + "c7": 1.400832177531204 }, "rgb": [222, 0, 59] }, @@ -155553,23 +155553,23 @@ "year": 1754, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 23.036876618579072, - "c2": 5.453703051039568, - "c3": 0.960716381721376, - "c4": 28.03168874540669, - "c5": 19.769241417475854, - "c6": -11.140845032011438, - "c7": 18.675490143151364 + "points": { + "c1": -31.54451685807411, + "c2": -14.870133381122479, + "c3": -21.06041760944252, + "c4": -28.210990703533252, + "c5": -25.042057579811697, + "c6": 19.752527784651896, + "c7": -12.04868347710244 }, - "vertexSeeds": { - "c1": 3.967904951876427, - "c2": 3.8204796656044935, - "c3": 4.070748599729768, - "c4": 4.247979461947333, - "c5": 4.11547409651912, - "c6": 3.9544931785429718, - "c7": 3.8344969706142007 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.201109570041606, + "c4": 4.160887656033286, + "c5": 3.120665742024966, + "c6": 2.0804438280166395, + "c7": 1.0402219140083198 }, "rgb": [86, 146, 138] }, @@ -155580,23 +155580,23 @@ "year": 1754, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -38.472016507867835, - "c2": 22.48327089137434, - "c3": 24.674336881615055, - "c4": -41.57271087912985, - "c5": -15.933920599929607, - "c6": 25.423825554043795, - "c7": -41.42362907189478 + "points": { + "c1": -33.431934405251184, + "c2": -43.29254687363497, + "c3": 6.235984891154679, + "c4": -26.285616553912313, + "c5": 13.036837855509546, + "c6": -15.913916073716692, + "c7": -40.818396274990675 }, - "vertexSeeds": { - "c1": 6.527798397880215, - "c2": 6.684843640143116, - "c3": 6.464025201744774, - "c4": 6.704033749544945, - "c5": 6.661282694204328, - "c6": 6.752092510513756, - "c7": 6.739809368707074 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.70873786407766, + "c3": 8.090614886731409, + "c4": 6.47249190938512, + "c5": 4.85436893203883, + "c6": 3.2362459546925404, + "c7": 1.6181229773462893 }, "rgb": [77, 76, 132] }, @@ -155607,23 +155607,23 @@ "year": 1754, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -21.735923911184596, - "c2": 10.942873237993865, - "c3": -0.8960552970642439, - "c4": 30.605841379629425, - "c5": -31.106047354123, - "c6": -2.825261598529572, - "c7": -9.72433799184552 + "points": { + "c1": -26.838784178970894, + "c2": 21.751986451486445, + "c3": -3.059474050351959, + "c4": -2.233232748966799, + "c5": 15.604043191682486, + "c6": 9.02076552015987, + "c7": -8.271485362416932 }, - "vertexSeeds": { - "c1": 2.5035143716295014, - "c2": 2.38181971681607, - "c3": 2.2613732627856837, - "c4": 2.4469936721389205, - "c5": 2.25679166625808, - "c6": 2.4018368043297054, - "c7": 2.573105280506709 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.800277392510402, + "c3": 3.1668978270920003, + "c4": 2.533518261673599, + "c5": 1.900138696255201, + "c6": 1.2667591308367996, + "c7": 0.6333795654184013 }, "rgb": [86, 146, 138] }, @@ -155634,23 +155634,23 @@ "year": 1754, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 20.04155549985054, - "c2": -26.67622879841409, - "c3": 11.410870172113434, - "c4": -31.170160866358692, - "c5": -11.524291055620317, - "c6": 17.022590589396607, - "c7": 0.21187603437547864 + "points": { + "c1": -32.091902671988976, + "c2": 4.771333309186268, + "c3": -1.6358011439119835, + "c4": -26.263599124826747, + "c5": -13.82310672420141, + "c6": -0.9609058072369763, + "c7": -17.286090018391157 }, - "vertexSeeds": { - "c1": 4.371605076346902, - "c2": 4.600594464280426, - "c3": 4.655879335029134, - "c4": 4.606945459743995, - "c5": 4.662512116503529, - "c6": 4.596454303218173, - "c7": 4.386592905563179 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733703, + "c3": 5.594082293111419, + "c4": 4.475265834489135, + "c5": 3.3564493758668514, + "c6": 2.2376329172445675, + "c7": 1.1188164586222837 }, "rgb": [222, 0, 59] }, @@ -155661,23 +155661,23 @@ "year": 1754, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -0.8296243685774698, - "c2": 39.603533414478335, - "c3": -27.92603358376133, - "c4": -38.87380719229002, - "c5": 6.356179060461599, - "c6": -4.432894848554838, - "c7": 7.374654437120569 + "points": { + "c1": 5.660344877108898, + "c2": 26.249575218688847, + "c3": -29.777045884085922, + "c4": 42.05240865829292, + "c5": -4.959491414104974, + "c6": 27.82783282210592, + "c7": 34.12229279296497 }, - "vertexSeeds": { - "c1": 6.506246814537077, - "c2": 6.585800327575878, - "c3": 6.251818561817375, - "c4": 5.453346562830102, - "c5": 5.80007103661191, - "c6": 5.448371026962352, - "c7": 6.353525340487574 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.48682385575589, + "c3": 7.905686546463247, + "c4": 6.324549237170594, + "c5": 4.7434119278779505, + "c6": 3.162274618585297, + "c7": 1.5811373092926435 }, "rgb": [222, 0, 59] }, @@ -155688,23 +155688,23 @@ "year": 1754, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 30.04968199910821, - "c2": 0.3756243067832088, - "c3": -46.35389060912337, - "c4": -24.530590887165367, - "c5": -15.834913335748595, - "c6": 43.80649102567562, - "c7": -4.221648887622287 + "points": { + "c1": 40.05472360528808, + "c2": 41.81314600856661, + "c3": 34.58695737250812, + "c4": 11.52190959760646, + "c5": 45.30905480285876, + "c6": 21.019117214501286, + "c7": 28.57374985217242 }, - "vertexSeeds": { - "c1": 5.491043612081686, - "c2": 5.457760614518524, - "c3": 5.096140911362659, - "c4": 5.040701825333142, - "c5": 5.302606798017779, - "c6": 5.057687054388465, - "c7": 5.337128978834837 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.87794729542302, + "c3": 6.564956079519192, + "c4": 5.251964863615351, + "c5": 3.93897364771151, + "c6": 2.6259824318076754, + "c7": 1.3129912159038346 }, "rgb": [222, 0, 59] }, @@ -155715,23 +155715,23 @@ "year": 1754, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -9.793038751638264, - "c2": 40.20076985448273, - "c3": -39.76777410168004, - "c4": 22.158242372636906, - "c5": -23.521622040637894, - "c6": 19.6350061617961, - "c7": 11.099854513341718 + "points": { + "c1": -29.234056265766974, + "c2": -28.739877110206685, + "c3": 33.8493102039498, + "c4": -10.320852709869591, + "c5": 38.002645203706834, + "c6": 21.50329700846538, + "c7": 26.00693095424141 }, - "vertexSeeds": { - "c1": 3.776552112216756, - "c2": 3.501459127760159, - "c3": 3.5789945953496933, - "c4": 3.507838485588719, - "c5": 3.912891572291046, - "c6": 3.6973026451382713, - "c7": 3.702554803992401 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304204, + "c4": 3.7540453074433624, + "c5": 2.8155339805825275, + "c6": 1.8770226537216852, + "c7": 0.9385113268608426 }, "rgb": [86, 146, 138] }, @@ -155742,23 +155742,23 @@ "year": 1754, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -32.025404416014865, - "c2": 34.354310916264396, - "c3": -7.092721613991252, - "c4": 4.627155836356941, - "c5": 13.624576374914021, - "c6": 2.491129408646401, - "c7": 33.859087155369025 + "points": { + "c1": -25.194821209412666, + "c2": 23.11375492108874, + "c3": -39.37682837318471, + "c4": 27.784762859359674, + "c5": 23.2166954077718, + "c6": -8.098744720353864, + "c7": 18.60997053624594 }, - "vertexSeeds": { - "c1": 2.459026599154704, - "c2": 2.5531772393842003, - "c3": 2.5714897059139146, - "c4": 2.337843853089557, - "c5": 2.3796192517718175, - "c6": 2.6486034633604403, - "c7": 2.320868684850061 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590848, + "c3": 3.213129912159037, + "c4": 2.570503929727231, + "c5": 1.9278779472954226, + "c6": 1.2852519648636143, + "c7": 0.6426259824318084 }, "rgb": [238, 201, 159] }, @@ -155769,23 +155769,23 @@ "year": 1754, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -4.8887028954576195, - "c2": 18.963976947983014, - "c3": -24.91144702404451, - "c4": 10.64324670555699, - "c5": -20.36074363474212, - "c6": 4.503767725042515, - "c7": -32.07985759011862 + "points": { + "c1": 31.124228731766173, + "c2": 1.078445352955697, + "c3": 14.299374632563186, + "c4": -30.854242370756182, + "c5": 25.243505185436042, + "c6": 27.674261174494838, + "c7": 35.02764107387606 }, - "vertexSeeds": { - "c1": 13.461558548364792, - "c2": 12.447725363075882, - "c3": 12.087734818858316, - "c4": 14.468961607003761, - "c5": 12.425068649414472, - "c6": 12.471801815112347, - "c7": 13.977265163618462 + "offsets": { + "c1": 24.466019417475728, + "c2": 20.97087378640776, + "c3": 17.4757281553398, + "c4": 13.980582524271835, + "c5": 10.485436893203893, + "c6": 6.990291262135927, + "c7": 3.4951456310679636 }, "rgb": [86, 146, 138] }, @@ -155796,23 +155796,23 @@ "year": 1754, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 34.95390981138969, - "c2": 27.21739995530193, - "c3": 38.682295779102006, - "c4": 23.27313319839714, - "c5": -6.7854110305015425, - "c6": -22.687306987956553, - "c7": -36.332581513068206 + "points": { + "c1": -17.597049454550312, + "c2": -11.97056948951331, + "c3": -18.035360872439668, + "c4": -6.780873451779534, + "c5": 38.23676092308264, + "c6": -1.5026473437938037, + "c7": -8.486923656545088 }, - "vertexSeeds": { - "c1": 9.501092776582853, - "c2": 9.564801123850907, - "c3": 9.402134145021824, - "c4": 9.01580633837622, - "c5": 9.365658905687308, - "c6": 9.092923955495706, - "c7": 9.077664847996054 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392506, + "c3": 11.719833564493765, + "c4": 9.37586685159501, + "c5": 7.031900138696253, + "c6": 4.687933425797514, + "c7": 2.343966712898757 }, "rgb": [86, 146, 138] }, @@ -155823,23 +155823,23 @@ "year": 1754, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 0.6026082965421224, - "c2": -4.615164791468409, - "c3": -24.657910648356836, - "c4": 40.628973015830205, - "c5": -29.494077180460277, - "c6": -52.582031041104784, - "c7": -6.180045951411316 + "points": { + "c1": -22.156570621399716, + "c2": 21.143345088112177, + "c3": -20.42884103525573, + "c4": 21.66111194417656, + "c5": -7.413965202231402, + "c6": -51.832460307415715, + "c7": -29.08110114238904 }, - "vertexSeeds": { - "c1": 13.304015555388442, - "c2": 12.798565525924623, - "c3": 12.438042057989882, - "c4": 13.047691286165461, - "c5": 12.74537748625633, - "c6": 12.518133901141697, - "c7": 12.420246536602987 + "offsets": { + "c1": 22.588996763754047, + "c2": 19.361997226074887, + "c3": 16.134997688395764, + "c4": 12.907998150716603, + "c5": 9.680998613037444, + "c6": 6.45399907535832, + "c7": 3.22699953767916 }, "rgb": [58, 15, 49] }, @@ -155850,23 +155850,23 @@ "year": 1754, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 19.349693455950465, - "c2": 43.9732578110165, - "c3": -24.260886913905782, - "c4": 17.17355415342859, - "c5": 30.342099994373747, - "c6": -18.399685533449833, - "c7": -28.421535149695163 + "points": { + "c1": 39.19733039619771, + "c2": -36.35734423428932, + "c3": 6.525203047942746, + "c4": -42.09299082748771, + "c5": -39.85339988791326, + "c6": -18.403161460213973, + "c7": 46.41012626062622 }, - "vertexSeeds": { - "c1": 3.9611394692703206, - "c2": 4.634801796158108, - "c3": 4.586403013462755, - "c4": 4.0738363514099385, - "c5": 3.8567889205244827, - "c6": 4.47156471054315, - "c7": 4.577792012674453 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773925, + "c3": 5.617198335644938, + "c4": 4.493758668515946, + "c5": 3.37031900138696, + "c6": 2.246879334257973, + "c7": 1.1234396671289866 }, "rgb": [86, 146, 138] }, @@ -155877,23 +155877,23 @@ "year": 1754, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -16.875869123053693, - "c2": -12.44552150791828, - "c3": -9.532865103729833, - "c4": -33.498324386376495, - "c5": -5.583290163249195, - "c6": -2.361186378109437, - "c7": 29.550608115534146 + "points": { + "c1": 38.06120312661321, + "c2": 30.38285738596477, + "c3": 34.67759822744017, + "c4": 10.688372845985505, + "c5": -15.071884558816958, + "c6": 20.722203645054684, + "c7": 37.66679607538977 }, - "vertexSeeds": { - "c1": 5.048877910722746, - "c2": 4.783671439317905, - "c3": 5.192789100878442, - "c4": 5.365027648767425, - "c5": 4.913584178970712, - "c6": 4.78531746254984, - "c7": 4.839487942874103 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186782, + "c4": 5.344429033749424, + "c5": 4.008321775312065, + "c6": 2.6722145168747056, + "c7": 1.336107258437359 }, "rgb": [222, 0, 59] }, @@ -155904,23 +155904,23 @@ "year": 1754, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 35.15447728822133, - "c2": -3.286374257637995, - "c3": 16.346730367944787, - "c4": -40.2448010172014, - "c5": -11.715662127488315, - "c6": 30.46964144517608, - "c7": 13.184774402276979 + "points": { + "c1": 14.396086129779292, + "c2": -11.726230039616404, + "c3": -11.012058061105144, + "c4": 37.53025007286554, + "c5": 33.624363425936465, + "c6": 40.261744444329665, + "c7": 39.52853402120908 }, - "vertexSeeds": { - "c1": 2.327442330726771, - "c2": 2.3214644891000025, - "c3": 2.3241840152641435, - "c4": 2.3186286242191856, - "c5": 2.3210156444450423, - "c6": 2.3314240795566734, - "c7": 2.322215424115296 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826645, + "c3": 2.7739251040221675, + "c4": 2.219140083217745, + "c5": 1.6643550624133225, + "c6": 1.1095700416089, + "c7": 0.5547850208044225 }, "rgb": [77, 76, 132] }, @@ -155931,23 +155931,23 @@ "year": 1754, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": 23.054787340847383, - "c2": 18.683046666970498, - "c3": 11.880032326181528, - "c4": 21.707343128613005, - "c5": -6.9527177592179825, - "c6": -16.500143946518012, - "c7": -38.23234766145061 + "points": { + "c1": -5.361831324705342, + "c2": 32.03805994428774, + "c3": 13.408145108933859, + "c4": 7.566373507099776, + "c5": 8.843130359817465, + "c6": -1.5524791736954668, + "c7": -21.126199691007503 }, - "vertexSeeds": { - "c1": 3.3860908264555674, - "c2": 3.439430788440119, - "c3": 3.1093075364496303, - "c4": 3.3120722572562085, - "c5": 3.4361741345142405, - "c6": 3.260325093629178, - "c7": 3.3015233046173376 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [86, 146, 138] }, @@ -155958,23 +155958,23 @@ "year": 1754, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 0.6603498541461832, - "c2": 0.22578566701054115, - "c3": -5.244317101594632, - "c4": 22.05497381616334, - "c5": -28.370617607654257, - "c6": 25.19954953053525, - "c7": -19.920336877483567 + "points": { + "c1": -7.204349906127479, + "c2": 10.538744274213315, + "c3": 6.3501005438357865, + "c4": 1.8303902075655571, + "c5": -0.30721844030112067, + "c6": -16.53111993766355, + "c7": -12.561454327326164 }, - "vertexSeeds": { - "c1": 6.07226290102261, - "c2": 5.912430885899894, - "c3": 5.895129290089558, - "c4": 5.628700324007842, - "c5": 5.950894765778225, - "c6": 5.658631182836252, - "c7": 5.817186671957532 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031893, + "c3": 7.48959778085992, + "c4": 5.991678224687929, + "c5": 4.493758668515955, + "c6": 2.9958391123439645, + "c7": 1.4979195561719905 }, "rgb": [86, 146, 138] }, @@ -155985,23 +155985,23 @@ "year": 1754, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 25.353667239602796, - "c2": -12.919355137230415, - "c3": 27.91119169761347, - "c4": -25.34351650550473, - "c5": -22.512062633282074, - "c6": 7.757516355746457, - "c7": -25.781915032905236 + "points": { + "c1": 8.57942525320641, + "c2": -14.101586326798973, + "c3": -2.4879165846104954, + "c4": 29.593421152085597, + "c5": -28.518699021782933, + "c6": -3.71004942226163, + "c7": -26.247773563972395 }, - "vertexSeeds": { - "c1": 5.729796194794288, - "c2": 5.291811158183247, - "c3": 6.271830655817647, - "c4": 5.350754605393625, - "c5": 5.4836555158235285, - "c6": 5.330738435246838, - "c7": 5.758030255592659 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031903, + "c3": 7.48959778085992, + "c4": 5.991678224687938, + "c5": 4.493758668515946, + "c6": 2.995839112343964, + "c7": 1.497919556171982 }, "rgb": [238, 201, 159] }, @@ -156012,23 +156012,23 @@ "year": 1754, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 11.007800161807012, - "c2": -7.076369280958641, - "c3": -15.706356305674495, - "c4": -24.98998331308024, - "c5": -16.370366377951388, - "c6": 1.2804122995200657, - "c7": -14.554882595605172 + "points": { + "c1": -4.7863850017336915, + "c2": 12.02144554051236, + "c3": -1.4650023638103953, + "c4": 20.75049617207158, + "c5": -25.558268706071022, + "c6": 17.862198761016153, + "c7": 26.28227549099669 }, - "vertexSeeds": { - "c1": 4.087085823024012, - "c2": 3.920317624942863, - "c3": 4.271825544386171, - "c4": 4.134846726693881, - "c5": 3.9953164895504982, - "c6": 3.882126944545006, - "c7": 4.093990002888412 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -156039,23 +156039,23 @@ "year": 1754, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 2.2532232632869054, - "c2": 9.101911298502166, - "c3": -21.581328363631304, - "c4": 17.558225085661945, - "c5": -6.133068433531275, - "c6": -5.86901228388944, - "c7": -5.1918769632527635 + "points": { + "c1": 9.918916465331122, + "c2": -3.071896359440455, + "c3": -5.273697850104, + "c4": -23.446021984680197, + "c5": 21.044755952663458, + "c6": 4.920419878492805, + "c7": 11.847251289604678 }, - "vertexSeeds": { - "c1": 1.608394660908301, - "c2": 1.6164950941172305, - "c3": 1.6778309196590255, - "c4": 1.6193443085519759, - "c5": 1.579783745011702, - "c6": 1.5703038857824574, - "c7": 1.6465139427686812 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.524271844660194, + "c3": 2.103559870550162, + "c4": 1.6828478964401292, + "c5": 1.262135922330097, + "c6": 0.8414239482200646, + "c7": 0.4207119741100323 }, "rgb": [238, 201, 159] }, @@ -156066,23 +156066,23 @@ "year": 1754, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 1.6935589828823936, - "c2": 28.95198567642059, - "c3": -30.00649847748778, - "c4": 20.940811250709693, - "c5": -15.2017528843601, - "c6": 11.70935992683497, - "c7": -12.816758752152218 + "points": { + "c1": -29.216693247658633, + "c2": -1.3383199342831489, + "c3": -29.868027855457267, + "c4": -8.562888207672376, + "c5": -26.71742320955903, + "c6": 6.566975178736506, + "c7": -6.443807608096243 }, - "vertexSeeds": { - "c1": 2.907522950418819, - "c2": 2.9838517336346686, - "c3": 2.8399206508020893, - "c4": 2.8780108860778406, - "c5": 2.929610828470717, - "c6": 2.9509782730018745, - "c7": 2.9420496062523784 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274612, + "c3": 3.6061026352288503, + "c4": 2.884882108183075, + "c5": 2.1636615811373128, + "c6": 1.4424410540915376, + "c7": 0.7212205270457752 }, "rgb": [238, 201, 159] }, @@ -156093,23 +156093,23 @@ "year": 1755, "resistanceReported": false, "duration": 54259200, - "curveSeeds": { - "c1": 12.816839329898187, - "c2": -38.050845825167315, - "c3": 34.54506952690451, - "c4": -2.9574465146297513, - "c5": -1.5575743830023754, - "c6": 1.4263523285909798, - "c7": 15.574229617393527 + "points": { + "c1": -2.4802508184239542, + "c2": -0.9502043894823089, + "c3": -34.665230022088565, + "c4": -46.17834886723584, + "c5": 67.04415248274421, + "c6": -3.9497283643022314, + "c7": -22.897142651044057 }, - "vertexSeeds": { - "c1": 9.190596247064864, - "c2": 8.666387622989134, - "c3": 9.225820452154542, - "c4": 9.596916496066056, - "c5": 9.067637286411841, - "c6": 8.910746102678653, - "c7": 9.624261528233012 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.786407766990294, + "c3": 11.488673139158582, + "c4": 9.19093851132685, + "c5": 6.893203883495138, + "c6": 4.595469255663425, + "c7": 2.2977346278317126 }, "rgb": [86, 146, 138] }, @@ -156120,23 +156120,23 @@ "year": 1754, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": -45.113379519654856, - "c2": 4.8376498458798025, - "c3": 42.070774511343146, - "c4": -50.31825766558192, - "c5": 29.860435197027613, - "c6": 31.20254374696134, - "c7": -13.732903277222142 + "points": { + "c1": 33.71889305207145, + "c2": -22.728185751911525, + "c3": -10.47813918255865, + "c4": 55.86656446238885, + "c5": 45.022596267808055, + "c6": 37.52334816911434, + "c7": -39.08709019475613 }, - "vertexSeeds": { - "c1": 6.643236765309875, - "c2": 6.8677231286090255, - "c3": 6.409673499513509, - "c4": 6.178173208995884, - "c5": 6.8572186516511096, - "c6": 6.642969365132109, - "c7": 6.525542783296104 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882107, + "c3": 8.552935737401757, + "c4": 6.8423485899214045, + "c5": 5.131761442441054, + "c6": 3.4211742949607022, + "c7": 1.7105871474803511 }, "rgb": [238, 201, 159] }, @@ -156147,23 +156147,23 @@ "year": 1754, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -11.24700089461139, - "c2": -18.928423954193285, - "c3": 8.791158154124144, - "c4": 13.75973909715707, - "c5": 4.760750535838131, - "c6": 6.773613291606704, - "c7": -12.583025031719888 + "points": { + "c1": -19.78027873299806, + "c2": 9.578518538989105, + "c3": 30.565666159844586, + "c4": 2.6242072381145256, + "c5": -3.93855225939609, + "c6": 28.234815647581687, + "c7": -28.372900634970797 }, - "vertexSeeds": { - "c1": 3.4867093836175127, - "c2": 3.016979678417519, - "c3": 3.1043905632192765, - "c4": 3.4408670655309637, - "c5": 3.3005872313236724, - "c6": 3.516472365659191, - "c7": 3.3555443266137788 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320387, + "c3": 4.207119741100321, + "c4": 3.3656957928802558, + "c5": 2.524271844660197, + "c6": 1.6828478964401312, + "c7": 0.8414239482200656 }, "rgb": [58, 15, 49] }, @@ -156174,23 +156174,23 @@ "year": 1754, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 4.6235336746347215, - "c2": 21.31405300995624, - "c3": 13.957860583942413, - "c4": 23.66394544871722, - "c5": 21.185145948306314, - "c6": 27.970142704790995, - "c7": -16.07957012616311 + "points": { + "c1": -31.19003758622285, + "c2": -34.03610593075772, + "c3": 16.12539555183276, + "c4": -9.041531942288966, + "c5": 19.81489968253029, + "c6": 2.5982009226836666, + "c7": 29.103686300872965 }, - "vertexSeeds": { - "c1": 4.947024779742744, - "c2": 5.482454434905678, - "c3": 5.85678497129872, - "c4": 5.46598340762425, - "c5": 5.300203286108667, - "c6": 5.826470764994657, - "c7": 5.232347372255604 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [222, 0, 59] }, @@ -156201,23 +156201,23 @@ "year": 1754, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 26.910511333435096, - "c2": 34.979917095301445, - "c3": -11.759881672989323, - "c4": -27.512596442292512, - "c5": -13.87224450194324, - "c6": -6.001523533678185, - "c7": 9.408983904213677 + "points": { + "c1": -16.322289509920395, + "c2": -13.617458348662726, + "c3": 25.293667563307082, + "c4": 28.223347427188656, + "c5": -29.479179233020897, + "c6": -9.484043354558736, + "c7": 30.511868892779802 }, - "vertexSeeds": { - "c1": 4.355668082189093, - "c2": 4.395033222177926, - "c3": 4.383191194594598, - "c4": 4.381228776669, - "c5": 4.360685708258666, - "c6": 4.384010214257787, - "c7": 4.3641500445826695 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291262, + "c3": 5.339805825242719, + "c4": 4.271844660194175, + "c5": 3.203883495145631, + "c6": 2.1359223300970873, + "c7": 1.0679611650485437 }, "rgb": [77, 76, 132] }, @@ -156228,23 +156228,23 @@ "year": 1754, "resistanceReported": true, "duration": 25228800, - "curveSeeds": { - "c1": -30.10734853110162, - "c2": 32.03762892766311, - "c3": -15.544086289589007, - "c4": 6.2038836615323305, - "c5": 3.6412021170139326, - "c6": 25.48391060821666, - "c7": 36.39705391480115 + "points": { + "c1": -1.258203726942149, + "c2": -9.236039781569296, + "c3": 26.961511660742374, + "c4": 8.51608147587497, + "c5": -6.246302627823177, + "c6": 17.751309256172675, + "c7": 32.49605594092459 }, - "vertexSeeds": { - "c1": 3.19153308097439, - "c2": 3.804766093135097, - "c3": 3.4552614025397137, - "c4": 3.323222995076862, - "c5": 3.7361887869370394, - "c6": 2.9613803155307754, - "c7": 2.937595708153358 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963941, + "c3": 4.576976421636615, + "c4": 3.6615811373092937, + "c5": 2.7461858529819683, + "c6": 1.8307905686546468, + "c7": 0.9153952843273252 }, "rgb": [238, 201, 159] }, @@ -156255,23 +156255,23 @@ "year": 1754, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -14.32408458199166, - "c2": 14.096371909316339, - "c3": 29.75234392108208, - "c4": 2.834707813903975, - "c5": -14.575475703405946, - "c6": 14.18588795503554, - "c7": 3.916349810335568 + "points": { + "c1": 27.145067018862633, + "c2": -10.681511065743713, + "c3": 24.168305985889077, + "c4": 34.490979797974035, + "c5": 29.149478311956216, + "c6": -23.499568358159557, + "c7": -14.343814113910774 }, - "vertexSeeds": { - "c1": 4.4637651152406725, - "c2": 5.074111022375228, - "c3": 4.6785746067441725, - "c4": 4.828241931678348, - "c5": 5.105315676170287, - "c6": 5.199962891591513, - "c7": 4.296850923954565 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -156282,23 +156282,23 @@ "year": 1755, "resistanceReported": false, "duration": 52876800, - "curveSeeds": { - "c1": 12.460254973638001, - "c2": 51.92832977994476, - "c3": -11.607603175326517, - "c4": 22.517878676840525, - "c5": -62.46058639180531, - "c6": -18.23976545484051, - "c7": -38.77102203759108 + "points": { + "c1": 9.29195640549969, + "c2": -37.486387117468404, + "c3": 19.267221645375173, + "c4": 7.975474131162073, + "c5": 4.057626977210745, + "c6": 44.3343239028673, + "c7": 41.62637958515599 }, - "vertexSeeds": { - "c1": 2.9911722703663393, - "c2": 2.814077357138336, - "c3": 3.149478213528612, - "c4": 2.877179260275609, - "c5": 2.9898851479160387, - "c6": 3.070940902661416, - "c7": 3.03716173034779 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596395, + "c3": 3.791030975496992, + "c4": 3.032824780397595, + "c5": 2.2746185852981977, + "c6": 1.5164123901988005, + "c7": 0.7582061950993971 }, "rgb": [86, 146, 138] }, @@ -156309,23 +156309,23 @@ "year": 1754, "resistanceReported": true, "duration": 12096000, - "curveSeeds": { - "c1": -3.6986853878038097, - "c2": 5.276659351129023, - "c3": 10.603867975318334, - "c4": -17.324011328276455, - "c5": 23.064611323033194, - "c6": 14.61031869391736, - "c7": -12.293084622036218 + "points": { + "c1": 23.164776230176432, + "c2": 17.434114021257788, + "c3": 14.458734694448932, + "c4": 3.6338465118253964, + "c5": 12.475708168004797, + "c6": 15.536583183886346, + "c7": 16.24680741423786 }, - "vertexSeeds": { - "c1": 1.4741175339588357, - "c2": 1.4930643236654162, - "c3": 1.5436428214649647, - "c4": 1.4512235588676448, - "c5": 1.5507137221095229, - "c6": 1.6577271637466655, - "c7": 1.6259417013444317 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.441054091539528, + "c3": 2.034211742949607, + "c4": 1.6273693943596863, + "c5": 1.220527045769764, + "c6": 0.8136846971798412, + "c7": 0.4068423485899206 }, "rgb": [58, 15, 49] }, @@ -156336,23 +156336,23 @@ "year": 1754, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 8.715160185278904, - "c2": -9.269228292968933, - "c3": -43.823321661786316, - "c4": -35.52364296951404, - "c5": 33.61492204738348, - "c6": -30.054552543380858, - "c7": -23.740431864892784 + "points": { + "c1": 23.130096060052445, + "c2": -12.788480157533364, + "c3": 30.79343564677331, + "c4": 31.82034809376153, + "c5": 18.31772109818086, + "c6": 37.572117080988995, + "c7": -6.751143869068663 }, - "vertexSeeds": { - "c1": 5.258592233927536, - "c2": 4.988534080983385, - "c3": 5.160756943755713, - "c4": 5.126492713245717, - "c5": 4.820342020837634, - "c6": 4.958474232826354, - "c7": 5.271008719138805 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221916, + "c3": 6.4493758668515975, + "c4": 5.15950069348128, + "c5": 3.869625520110962, + "c6": 2.579750346740644, + "c7": 1.2898751733703178 }, "rgb": [222, 0, 59] }, @@ -156363,23 +156363,23 @@ "year": 1754, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 20.166992640636714, - "c2": 12.69649333381679, - "c3": -6.394015773554202, - "c4": 7.144421055350669, - "c5": -27.00128981481342, - "c6": -12.356544898216065, - "c7": -21.88780695026684 + "points": { + "c1": 8.393352719365751, + "c2": -31.17962680736834, + "c3": 31.33456170117872, + "c4": -22.989017486596882, + "c5": 28.133218596709277, + "c6": -40.526490998675, + "c7": -2.073509130844961 }, - "vertexSeeds": { - "c1": 7.2568847714010305, - "c2": 7.69436511781729, - "c3": 7.240128525898075, - "c4": 7.557365111425815, - "c5": 7.6424002662622526, - "c6": 7.818201995550638, - "c7": 7.578826021233146 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651874, + "c3": 9.570041608876565, + "c4": 7.656033287101239, + "c5": 5.742024965325928, + "c6": 3.8280166435506193, + "c7": 1.9140083217753097 }, "rgb": [86, 146, 138] }, @@ -156390,23 +156390,23 @@ "year": 1755, "resistanceReported": false, "duration": 55123200, - "curveSeeds": { - "c1": -3.594741248300707, - "c2": -66.45018322231384, - "c3": 57.22511692116967, - "c4": -1.3002324766937647, - "c5": -36.887078124140686, - "c6": 17.66952022324098, - "c7": -45.213633394450234 + "points": { + "c1": -51.33588267418273, + "c2": -36.00192580729029, + "c3": -22.91125358188973, + "c4": 27.40989877704925, + "c5": -47.533611067053776, + "c6": -8.723118586847384, + "c7": 66.07584179520711 }, - "vertexSeeds": { - "c1": 2.9352520561990003, - "c2": 2.6372447809058297, - "c3": 2.65359043686302, - "c4": 2.8491757010512795, - "c5": 2.8587118819902666, - "c6": 2.8622970120368745, - "c7": 2.7150662118734914 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153955, + "c3": 3.5367545076282934, + "c4": 2.8294036061026375, + "c5": 2.122052704576975, + "c6": 1.4147018030513188, + "c7": 0.7073509015256625 }, "rgb": [58, 15, 49] }, @@ -156417,23 +156417,23 @@ "year": 1754, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -29.92400801777119, - "c2": -16.640694831753997, - "c3": 14.872880959386336, - "c4": 35.50824257316707, - "c5": 11.130479483488692, - "c6": 33.935699644852264, - "c7": 16.3319638436476 + "points": { + "c1": 29.658215273663515, + "c2": -21.718381736066952, + "c3": -31.02451602851469, + "c4": -18.49215141149543, + "c5": -23.308993746557064, + "c6": 30.164255737175537, + "c7": -6.432077282374792 }, - "vertexSeeds": { - "c1": 3.5602714225752243, - "c2": 3.7908807887441087, - "c3": 3.7595608257888875, - "c4": 3.3285895778142325, - "c5": 3.7276879104357126, - "c6": 3.5051403127569913, - "c7": 3.601671233331888 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.7142857142857135, + "c3": 4.7619047619047645, + "c4": 3.80952380952381, + "c5": 2.8571428571428568, + "c6": 1.9047619047619029, + "c7": 0.9523809523809539 }, "rgb": [58, 15, 49] }, @@ -156444,23 +156444,23 @@ "year": 1754, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -34.51756471833276, - "c2": -9.573235206111018, - "c3": 32.524756775380986, - "c4": -14.333072829945177, - "c5": -27.871219797843615, - "c6": -37.44846899386486, - "c7": 34.35558105200413 + "points": { + "c1": 40.480964919490084, + "c2": -27.526403635567377, + "c3": 8.891802539716018, + "c4": -30.075273850297606, + "c5": 8.098988588157084, + "c6": -15.819235615237787, + "c7": -8.455734786941392 }, - "vertexSeeds": { - "c1": 3.92250209172763, - "c2": 3.9809091669533014, - "c3": 4.099977773285025, - "c4": 3.744427919609812, - "c5": 3.7556015312098765, - "c6": 4.079661935735652, - "c7": 3.8025644893530197 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309753, + "c4": 4.3088303282478035, + "c5": 3.2316227461858538, + "c6": 2.1544151641239044, + "c7": 1.0772075820619496 }, "rgb": [77, 76, 132] }, @@ -156471,23 +156471,23 @@ "year": 1755, "resistanceReported": false, "duration": 47779200, - "curveSeeds": { - "c1": -48.12588193724385, - "c2": 33.993502192673716, - "c3": -59.24409254718432, - "c4": 0.5258679384289735, - "c5": 19.33274638064954, - "c6": -52.00563684318437, - "c7": 44.114800766560805 + "points": { + "c1": 9.298070840965053, + "c2": 12.81452481091894, + "c3": -47.722911275323796, + "c4": 26.822732724128414, + "c5": 40.31286025249021, + "c6": 12.6322835206321, + "c7": -40.50573332180508 }, - "vertexSeeds": { - "c1": 7.445615566397954, - "c2": 7.454348321646424, - "c3": 6.878097853794219, - "c4": 6.997644334637258, - "c5": 6.849156982871386, - "c6": 7.424507412316122, - "c7": 7.195114845708402 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -156498,23 +156498,23 @@ "year": 1754, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 33.34346859421471, - "c2": -25.40974933105273, - "c3": 9.385759690597084, - "c4": -1.53806466546866, - "c5": 13.47539994701004, - "c6": -23.903203186307824, - "c7": 17.760593096349766 + "points": { + "c1": -5.040979488829677, + "c2": 11.584509285951135, + "c3": -27.78898993881207, + "c4": -40.591859083680745, + "c5": -20.679249477528995, + "c6": 41.771884822253426, + "c7": 5.976439321062152 }, - "vertexSeeds": { - "c1": 8.494881232425648, - "c2": 8.608279367179396, - "c3": 8.534189311619174, - "c4": 8.51030293226849, - "c5": 8.55287881568033, - "c6": 8.658199160426246, - "c7": 8.66275202167749 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809986, + "c3": 10.402219140083217, + "c4": 8.321775312066572, + "c5": 6.24133148404993, + "c6": 4.160887656033286, + "c7": 2.080443828016643 }, "rgb": [86, 146, 138] }, @@ -156525,23 +156525,23 @@ "year": 1754, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -19.366691937310677, - "c2": -34.34065615893674, - "c3": -37.55214697699985, - "c4": -37.31581094782723, - "c5": -8.258977547201425, - "c6": 24.28934408341467, - "c7": 17.44047769935441 + "points": { + "c1": -12.356255325158607, + "c2": -29.8271257688053, + "c3": -24.001239801317038, + "c4": -31.68786606760276, + "c5": 38.15083467156649, + "c6": 19.487210532324816, + "c7": -31.34143358041465 }, - "vertexSeeds": { - "c1": 6.193872131499343, - "c2": 6.195402145951393, - "c3": 6.14826580603427, - "c4": 6.188487834249248, - "c5": 6.178162289994075, - "c6": 6.158875648232234, - "c7": 6.169514986936522 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332870998, + "c3": 7.397133610725811, + "c4": 5.917706888580625, + "c5": 4.438280166435558, + "c6": 2.9588534442903716, + "c7": 1.4794267221451858 }, "rgb": [77, 76, 132] }, @@ -156552,23 +156552,23 @@ "year": 1754, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -19.289345036190422, - "c2": 23.233172818466286, - "c3": -17.39400565697832, - "c4": -27.273903758588382, - "c5": -8.84680076916748, - "c6": 13.079461831257937, - "c7": 22.886452658606302 + "points": { + "c1": -19.050573420826975, + "c2": 14.436696775601192, + "c3": -14.246799754254347, + "c4": -28.01008509789022, + "c5": -14.664777534973151, + "c6": 3.0050218555490247, + "c7": -27.264654369888618 }, - "vertexSeeds": { - "c1": 4.6286641398825825, - "c2": 4.3669715148829695, - "c3": 4.465721561846725, - "c4": 4.089617447540737, - "c5": 4.360234735769321, - "c6": 4.010021770139582, - "c7": 4.316339798506163 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653259, + "c3": 5.547850208044384, + "c4": 4.438280166435508, + "c5": 3.3287101248266326, + "c6": 2.2191400832177566, + "c7": 1.1095700416088812 }, "rgb": [77, 76, 132] }, @@ -156579,23 +156579,23 @@ "year": 1754, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": -36.500703888075094, - "c2": -28.93506446358757, - "c3": 32.57137647113445, - "c4": -42.68285536459736, - "c5": -28.585248340511463, - "c6": 8.496708501731455, - "c7": 35.540237813801376 + "points": { + "c1": -15.905579832964385, + "c2": -0.5008467124469789, + "c3": -19.454857227181392, + "c4": 34.67115261770875, + "c5": -43.545421406561665, + "c6": -5.186066367722496, + "c7": 30.786055284134385 }, - "vertexSeeds": { - "c1": 4.3034500545913374, - "c2": 4.29964883697778, - "c3": 3.8677007199330924, - "c4": 4.262676631141937, - "c5": 4.174869301281154, - "c6": 4.0701079715744255, - "c7": 4.219794338391039 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175682, + "c4": 4.234858992140545, + "c5": 3.1761442441054086, + "c6": 2.1174294960702724, + "c7": 1.0587147480351362 }, "rgb": [86, 146, 138] }, @@ -156606,23 +156606,23 @@ "year": 1754, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -27.947505189595912, - "c2": 42.71998792961172, - "c3": 32.04314721907306, - "c4": 33.994766869054104, - "c5": -6.457037700106916, - "c6": 32.15593707754918, - "c7": 11.984704008775417 + "points": { + "c1": -45.925363293590806, + "c2": -39.241332400215526, + "c3": 23.324935268872224, + "c4": -17.339283090121224, + "c5": 8.847696413954509, + "c6": 27.491193635747123, + "c7": 23.832477754770366 }, - "vertexSeeds": { - "c1": 4.407170025799528, - "c2": 4.237855331277692, - "c3": 4.112527121391174, - "c4": 4.089187278435777, - "c5": 4.174708051901664, - "c6": 4.396132040200683, - "c7": 4.4832092813940365 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532597, + "c3": 5.478502080443827, + "c4": 4.382801664355064, + "c5": 3.287101248266295, + "c6": 2.191400832177532, + "c7": 1.095700416088763 }, "rgb": [222, 0, 59] }, @@ -156633,23 +156633,23 @@ "year": 1754, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -26.975216375233323, - "c2": -39.17264469570881, - "c3": 42.30491427426807, - "c4": 31.684148115647588, - "c5": 7.188236819663622, - "c6": -18.524643907329075, - "c7": 40.24163193710264 + "points": { + "c1": 13.086918067211187, + "c2": 10.965461010287925, + "c3": -21.14022010973865, + "c4": 26.909308374679753, + "c5": -19.05570008315953, + "c6": -24.669774564175306, + "c7": 19.06556977918663 }, - "vertexSeeds": { - "c1": 2.6417760048446737, - "c2": 2.562736466864315, - "c3": 2.932110521993907, - "c4": 2.6818459940411254, - "c5": 2.5641876897475875, - "c6": 2.544071549260051, - "c7": 2.5483647464686214 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [77, 76, 132] }, @@ -156660,23 +156660,23 @@ "year": 1754, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 34.045162218919664, - "c2": -46.240425724399714, - "c3": 32.866552569864474, - "c4": 16.51206628069746, - "c5": -44.7726536960562, - "c6": 7.951900813941009, - "c7": -13.566971521107355 + "points": { + "c1": 46.986430254543514, + "c2": 6.059838870252008, + "c3": 31.947575413144726, + "c4": -44.40283946659503, + "c5": 28.043066860299668, + "c6": -28.72602470161854, + "c7": -37.10870917355053 }, - "vertexSeeds": { - "c1": 4.524353814796582, - "c2": 4.885566191248171, - "c3": 4.539854641237233, - "c4": 5.0315739459387805, - "c5": 4.3447447592423485, - "c6": 4.27810680747801, - "c7": 5.047501355973628 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.4063800277392495, + "c3": 6.171983356449378, + "c4": 4.937586685159499, + "c5": 3.703190013869627, + "c6": 2.4687933425797497, + "c7": 1.2343966712898724 }, "rgb": [58, 15, 49] }, @@ -156687,23 +156687,23 @@ "year": 1753, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": -12.069021268906837, - "c2": -5.150017531724389, - "c3": 10.891514039515322, - "c4": -4.922460175690787, - "c5": 5.978560878738477, - "c6": 3.201065841620615, - "c7": 18.058623766676025 + "points": { + "c1": -6.492759982254503, + "c2": 10.040743672492496, + "c3": 18.71579505277001, + "c4": 9.700924873413754, + "c5": -12.034760216328129, + "c6": -6.9064514644253805, + "c7": 10.062464131204408 }, - "vertexSeeds": { - "c1": 6.406193694919133, - "c2": 6.399518020010121, - "c3": 6.400867670137227, - "c4": 6.405311467585435, - "c5": 6.408725554791585, - "c6": 6.411137392176927, - "c7": 6.39815039064294 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313194, + "c3": 7.651410078594632, + "c4": 6.121128062875462, + "c5": 4.5908460471569015, + "c6": 3.060564031437731, + "c7": 1.53028201571917 }, "rgb": [77, 76, 132] }, @@ -156714,23 +156714,23 @@ "year": 1755, "resistanceReported": false, "duration": 45705600, - "curveSeeds": { - "c1": -53.84216196236398, - "c2": -47.77436298677234, - "c3": -23.630889121681072, - "c4": -20.93535401101866, - "c5": 2.5524093051402943, - "c6": 38.796858842486245, - "c7": 18.1091074228802 + "points": { + "c1": -2.418655797444586, + "c2": -60.58356866427758, + "c3": -18.714198837416724, + "c4": 39.1611979902833, + "c5": 31.886676804422166, + "c6": 55.721444040812614, + "c7": 13.897809839462056 }, - "vertexSeeds": { - "c1": 7.377357062311995, - "c2": 7.468722896094832, - "c3": 7.772979137669883, - "c4": 7.405984757493945, - "c5": 7.354005006194902, - "c6": 7.585362863494815, - "c7": 7.554772597643931 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778084, + "c3": 10.21729079981507, + "c4": 8.173832639852066, + "c5": 6.130374479889048, + "c6": 4.086916319926033, + "c7": 2.0434581599630164 }, "rgb": [238, 201, 159] }, @@ -156741,23 +156741,23 @@ "year": 1754, "resistanceReported": true, "duration": 20563200, - "curveSeeds": { - "c1": 12.627935030085602, - "c2": -30.109330466322277, - "c3": 31.341084846845582, - "c4": 2.141000663083723, - "c5": -2.205291222592745, - "c6": -26.437478872960213, - "c7": -6.9316700339812485 + "points": { + "c1": 18.94649377660614, + "c2": 4.915683063736388, + "c3": -28.01592266019832, + "c4": -1.6447365738486965, + "c5": 19.831960484783345, + "c6": -26.537488787035365, + "c7": -21.326284648853566 }, - "vertexSeeds": { - "c1": 0.5741640257783022, - "c2": 0.5984834406603868, - "c3": 0.5877265269949138, - "c4": 0.6460836298832173, - "c5": 0.5515764386055931, - "c6": 0.6373175277451782, - "c7": 0.6267712996522448 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.970873786407767, + "c3": 0.8090614886731392, + "c4": 0.6472491909385113, + "c5": 0.4854368932038835, + "c6": 0.32362459546925565, + "c7": 0.16181229773462782 }, "rgb": [86, 146, 138] }, @@ -156768,23 +156768,23 @@ "year": 1754, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": -39.015058563578464, - "c2": -3.0673011851243004, - "c3": -24.965288571331975, - "c4": 20.470463638799842, - "c5": -0.1308595056664572, - "c6": -24.483896789164906, - "c7": 41.66663578892809 + "points": { + "c1": -36.7875413147235, + "c2": 45.430734024124945, + "c3": -27.673929575857294, + "c4": -5.303993250642684, + "c5": 0.4935876737712306, + "c6": 22.005421468608716, + "c7": 20.351368844332583 }, - "vertexSeeds": { - "c1": 4.316375846118439, - "c2": 4.079382530654814, - "c3": 3.9639981705963314, - "c4": 4.108525993817776, - "c5": 4.165335465384971, - "c6": 4.166031877649973, - "c7": 4.086040503585334 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009706, + "c3": 5.177993527508084, + "c4": 4.142394822006474, + "c5": 3.106796116504853, + "c6": 2.0711974110032316, + "c7": 1.0355987055016214 }, "rgb": [86, 146, 138] }, @@ -156795,23 +156795,23 @@ "year": 1754, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 15.48033350536226, - "c2": -29.294429974886043, - "c3": 6.565525663881608, - "c4": 41.037511179390975, - "c5": 5.007955214269799, - "c6": -41.74738124103749, - "c7": -40.86772150219683 + "points": { + "c1": -40.32488007872972, + "c2": -28.72266434263834, + "c3": -23.600035092547735, + "c4": 26.623138537999353, + "c5": 35.21941580862226, + "c6": 22.122523935759972, + "c7": -32.69044492195355 }, - "vertexSeeds": { - "c1": 4.850152267749654, - "c2": 4.893208091265056, - "c3": 4.891703944199581, - "c4": 5.512700700031281, - "c5": 5.582728479927589, - "c6": 5.300801213698796, - "c7": 5.04906539075487 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [58, 15, 49] }, @@ -156822,23 +156822,23 @@ "year": 1754, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -34.28444346008882, - "c2": 27.096262517403638, - "c3": -2.716076463150017, - "c4": -7.9836324045745215, - "c5": -8.781689201923314, - "c6": 14.494714230976705, - "c7": -33.765375760337136 + "points": { + "c1": -6.733532195765953, + "c2": 13.911101218197011, + "c3": 7.9969659684037, + "c4": -3.420510106444368, + "c5": 17.807091542499755, + "c6": 19.54971952044479, + "c7": 26.62478582821685 }, - "vertexSeeds": { - "c1": 4.264713497515973, - "c2": 4.700940257238455, - "c3": 4.576786924735399, - "c4": 4.5601348280070555, - "c5": 4.4522165402291, - "c6": 4.459949401621096, - "c7": 4.589686206044566 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894587, + "c3": 5.686546463245493, + "c4": 4.549237170596391, + "c5": 3.411927877947298, + "c6": 2.2746185852981955, + "c7": 1.1373092926490935 }, "rgb": [238, 201, 159] }, @@ -156849,23 +156849,23 @@ "year": 1755, "resistanceReported": false, "duration": 51840000, - "curveSeeds": { - "c1": 29.27945420070573, - "c2": 35.89844850824339, - "c3": -41.646597274974994, - "c4": -44.676075836959846, - "c5": 14.067999724564274, - "c6": 65.66878183417155, - "c7": 9.68620067903234 + "points": { + "c1": -10.093951921616068, + "c2": -64.47475150222976, + "c3": 16.249653134997814, + "c4": 48.46080437764944, + "c5": -28.07817623554432, + "c6": 37.60719467455273, + "c7": 39.01065724297557 }, - "vertexSeeds": { - "c1": 1.272580677716328, - "c2": 1.3476391114093917, - "c3": 1.3277488864458644, - "c4": 1.2961534910195673, - "c5": 1.27725423778767, - "c6": 1.391040968353442, - "c7": 1.260750266211672 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361997, + "c3": 1.6874711049468332, + "c4": 1.3499768839574664, + "c5": 1.0124826629680999, + "c6": 0.6749884419787332, + "c7": 0.3374942209893666 }, "rgb": [238, 201, 159] }, @@ -156876,23 +156876,23 @@ "year": 1754, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -18.46035271705845, - "c2": -5.628864456799512, - "c3": 40.777210487078285, - "c4": -30.27106223528509, - "c5": 7.136833874256162, - "c6": -14.537788961909293, - "c7": 15.21987521483134 + "points": { + "c1": 45.57060289438578, + "c2": 3.497948835697123, + "c3": 15.00319121633158, + "c4": -20.310570197080047, + "c5": 39.92775280303439, + "c6": -34.953756768354, + "c7": -49.4278545072678 }, - "vertexSeeds": { - "c1": 7.2471133933132545, - "c2": 6.462123883012983, - "c3": 6.894288090245372, - "c4": 6.571879354098844, - "c5": 7.077578279013981, - "c6": 7.020124407952034, - "c7": 6.236802354671207 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163666, + "c3": 8.714748035136383, + "c4": 6.971798428109111, + "c5": 5.228848821081828, + "c6": 3.4858992140545557, + "c7": 1.742949607027272 }, "rgb": [222, 0, 59] }, @@ -156903,23 +156903,23 @@ "year": 1755, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": 13.629217552311076, - "c2": -28.85897170862764, - "c3": -19.076851058691467, - "c4": 26.763699211291694, - "c5": 16.709936673336372, - "c6": 26.898321282977662, - "c7": 54.608421077281236 + "points": { + "c1": -13.964098548266918, + "c2": -10.980063596702912, + "c3": 54.75418446714532, + "c4": -40.55032941990826, + "c5": -25.391148350043633, + "c6": -42.40179151834566, + "c7": -20.611827910931957 }, - "vertexSeeds": { - "c1": 2.811029659484105, - "c2": 2.725576138222897, - "c3": 2.608822481432706, - "c4": 2.697062352639356, - "c5": 2.647235488415678, - "c6": 2.9248753491295125, - "c7": 2.8048565623185167 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.3273231622746176, + "c3": 3.6061026352288486, + "c4": 2.8848821081830787, + "c5": 2.1636615811373088, + "c6": 1.4424410540915393, + "c7": 0.7212205270457697 }, "rgb": [222, 0, 59] }, @@ -156930,23 +156930,23 @@ "year": 1754, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": 3.992085978139251, - "c2": 2.562249727187158, - "c3": 44.52675895756431, - "c4": -47.196245319203264, - "c5": 1.000248795653583, - "c6": -29.387166093341023, - "c7": 1.3321650014164845 + "points": { + "c1": 50.73288999146547, + "c2": 52.74033488572431, + "c3": -43.78839594068975, + "c4": 48.13654535825741, + "c5": 17.569869726213483, + "c6": 0.5390491753948083, + "c7": -38.603784985996896 }, - "vertexSeeds": { - "c1": 4.1406317250186735, - "c2": 3.8745291421702053, - "c3": 4.036891774071911, - "c4": 3.958736093303419, - "c5": 3.573582463461573, - "c6": 3.686001881079315, - "c7": 3.979258663381696 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647709, + "c3": 4.969949144706427, + "c4": 3.9759593157651394, + "c5": 2.9819694868238575, + "c6": 1.9879796578825697, + "c7": 0.993989828941288 }, "rgb": [86, 146, 138] }, @@ -156957,23 +156957,23 @@ "year": 1754, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 14.199657398979916, - "c2": -16.151011193410106, - "c3": 5.388807077746989, - "c4": 3.4179488030192857, - "c5": -30.691033532191245, - "c6": 16.34687226608503, - "c7": 20.93670609595499 + "points": { + "c1": -16.875286750735775, + "c2": 6.197311978203835, + "c3": 14.536223367004915, + "c4": -24.41107463304204, + "c5": 28.584698767983276, + "c6": 12.083026287968103, + "c7": -23.73797122664042 }, - "vertexSeeds": { - "c1": 4.0773948541064735, - "c2": 3.8554419752159825, - "c3": 3.8741996557386282, - "c4": 3.968072767840768, - "c5": 3.952181484553912, - "c6": 4.254414627481674, - "c7": 4.095027990543698 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -156984,23 +156984,23 @@ "year": 1754, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": -12.487185412001232, - "c2": 30.586697777901406, - "c3": -27.000664423381476, - "c4": 44.84373459835365, - "c5": 47.78680621384386, - "c6": 8.310177573890321, - "c7": -5.95563561652969 + "points": { + "c1": -0.6426822634514835, + "c2": -0.5646053769211079, + "c3": 49.862763169450105, + "c4": 26.79882202270855, + "c5": 17.906276792370022, + "c6": -25.958635973364938, + "c7": 47.24494592097588 }, - "vertexSeeds": { - "c1": 5.436665127749201, - "c2": 5.182123622009719, - "c3": 4.7272316158558505, - "c4": 5.114368723265634, - "c5": 5.457196231530945, - "c6": 4.923116620899059, - "c7": 4.733970587036373 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342584, + "c3": 6.518723994452148, + "c4": 5.214979195561722, + "c5": 3.911234396671287, + "c6": 2.607489597780861, + "c7": 1.3037447988904256 }, "rgb": [86, 146, 138] }, @@ -157011,23 +157011,23 @@ "year": 1754, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 34.12359058207517, - "c2": 43.64226147436685, - "c3": -21.36267863839304, - "c4": -16.627549097103582, - "c5": 6.842698383269251, - "c6": -22.827681188294914, - "c7": -32.59575820845294 + "points": { + "c1": -26.143369717984548, + "c2": 41.96080552482363, + "c3": -41.38604480090865, + "c4": 9.932311168385674, + "c5": 15.76474626459698, + "c6": 19.0612492327256, + "c7": 20.045641842623255 }, - "vertexSeeds": { - "c1": 6.821742936658129, - "c2": 7.143700386000972, - "c3": 6.802725939990175, - "c4": 7.422616418286003, - "c5": 7.006262526239629, - "c6": 7.054421984684172, - "c7": 7.126195469333747 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.762829403606109, + "c3": 8.969024503005079, + "c4": 7.175219602404067, + "c5": 5.381414701803054, + "c6": 3.587609801202025, + "c7": 1.7938049006010126 }, "rgb": [86, 146, 138] }, @@ -157038,23 +157038,23 @@ "year": 1754, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 1.534503797883275, - "c2": -49.56241137767182, - "c3": 20.48992231924224, - "c4": 5.452664213647694, - "c5": -14.729468402926265, - "c6": -35.11919632462241, - "c7": 43.46962343646604 + "points": { + "c1": 6.32830662248859, + "c2": -2.249796635022321, + "c3": 35.33076922497568, + "c4": -28.696064132999176, + "c5": -8.735659979271794, + "c6": -36.60019412291721, + "c7": -32.396761903538724 }, - "vertexSeeds": { - "c1": 6.395269799970526, - "c2": 5.823619163032948, - "c3": 5.895276049661341, - "c4": 5.924359594339208, - "c5": 6.485413956307825, - "c6": 6.414463805335604, - "c7": 6.144719696715653 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514571, + "c3": 7.766990291262134, + "c4": 6.213592233009713, + "c5": 4.660194174757277, + "c6": 3.1067961165048565, + "c7": 1.5533980582524198 }, "rgb": [222, 0, 59] }, @@ -157065,23 +157065,23 @@ "year": 1754, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -32.77832478233598, - "c2": -7.778798999492473, - "c3": -18.85748006801772, - "c4": 10.514834760982723, - "c5": 17.922863099614318, - "c6": 2.47253490716092, - "c7": 21.550190143134834 + "points": { + "c1": -2.271622946654773, + "c2": 11.594895167552849, + "c3": -31.34384032965681, + "c4": -29.84860667821451, + "c5": -8.907438898104136, + "c6": -34.93579547582888, + "c7": 27.62249791466091 }, - "vertexSeeds": { - "c1": 5.411738985463825, - "c2": 5.48938469454171, - "c3": 5.51922033589836, - "c4": 4.720665989101576, - "c5": 4.813470935030154, - "c6": 5.416716012652864, - "c7": 5.08302159808791 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387883, + "c4": 5.455386037910314, + "c5": 4.091539528432733, + "c6": 2.7276930189551543, + "c7": 1.3638465094775793 }, "rgb": [238, 201, 159] }, @@ -157092,23 +157092,23 @@ "year": 1755, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -16.7431633637461, - "c2": 20.49112642590066, - "c3": -36.33495069639987, - "c4": -13.44391781399193, - "c5": 41.39535416630423, - "c6": 44.13881414882323, - "c7": 40.13441622600509 + "points": { + "c1": 33.2808724902833, + "c2": 45.80933840757639, + "c3": -42.4985234036148, + "c4": -9.818551655558167, + "c5": -30.53799688623538, + "c6": -2.12845257474509, + "c7": 3.8454258697065598 }, - "vertexSeeds": { - "c1": 8.301079654267955, - "c2": 8.296416164624643, - "c3": 7.647455862370915, - "c4": 6.799752080335719, - "c5": 6.853821445493729, - "c6": 7.9728887280225855, - "c7": 8.142346949601263 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [238, 201, 159] }, @@ -157119,23 +157119,23 @@ "year": 1754, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 6.2620544569715335, - "c2": 11.0215839540068, - "c3": -12.035445719523977, - "c4": 21.97973482935943, - "c5": 13.882246310798806, - "c6": -32.854381102923625, - "c7": -0.431304938773593 + "points": { + "c1": -18.214557711324385, + "c2": -26.072461857275, + "c3": 3.0508124667360974, + "c4": -19.264728909305504, + "c5": 33.91119885941629, + "c6": -23.69729597900599, + "c7": -34.93018836561855 }, - "vertexSeeds": { - "c1": 6.933466182876073, - "c2": 7.022756864774206, - "c3": 7.245423773013873, - "c4": 7.302508335874476, - "c5": 6.816964351790386, - "c6": 7.273252407983367, - "c7": 7.761913206803353 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013872, + "c3": 9.77808599167823, + "c4": 7.822468793342585, + "c5": 5.866851595006931, + "c6": 3.911234396671288, + "c7": 1.955617198335644 }, "rgb": [77, 76, 132] }, @@ -157146,23 +157146,23 @@ "year": 1754, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 31.051105684172562, - "c2": -18.301956831088663, - "c3": -18.823657394753408, - "c4": 38.20778627850354, - "c5": 38.35966125611518, - "c6": 24.312553042576347, - "c7": -33.085463154546304 + "points": { + "c1": 11.718761160113196, + "c2": -29.133133841024232, + "c3": -28.396052829422942, + "c4": 30.83254761802386, + "c5": 20.621184848864395, + "c6": 7.563613986447038, + "c7": -5.080680844333742 }, - "vertexSeeds": { - "c1": 1.7120006626623128, - "c2": 1.713691305256256, - "c3": 1.8675573124588372, - "c4": 1.7692970981777019, - "c5": 1.8027029608791862, - "c6": 1.7531778170031334, - "c7": 1.8814970705233376 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022192, + "c3": 2.311604253351827, + "c4": 1.8492834026814624, + "c5": 1.3869625520110938, + "c6": 0.9246417013407293, + "c7": 0.46232085067036466 }, "rgb": [238, 201, 159] }, @@ -157173,23 +157173,23 @@ "year": 1754, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -15.752902831798178, - "c2": 24.140717881191918, - "c3": 18.412804244033318, - "c4": -21.696248036757865, - "c5": -22.599112678444907, - "c6": -8.12401253262707, - "c7": -25.456642858323107 + "points": { + "c1": 33.86172413165987, + "c2": 0.559008747299039, + "c3": -39.22369827288877, + "c4": -41.23588074139693, + "c5": 5.749408920879517, + "c6": -29.008592642559144, + "c7": -25.686904116773853 }, - "vertexSeeds": { - "c1": 4.493201848491992, - "c2": 4.572575676593022, - "c3": 4.156836632950561, - "c4": 4.582154190541497, - "c5": 4.228367614852576, - "c6": 4.485622173614188, - "c7": 4.2908699399088945 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -157200,23 +157200,23 @@ "year": 1754, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 9.692760655022347, - "c2": -30.380628154030788, - "c3": -8.494629851850739, - "c4": 36.732514780549835, - "c5": -17.747909302552873, - "c6": 18.098172135123548, - "c7": -14.305373240197348 + "points": { + "c1": -26.016440132027245, + "c2": -12.694543485087877, + "c3": 28.868250909931362, + "c4": -41.422838685296874, + "c5": 21.483290154806454, + "c6": 28.82748164858141, + "c7": -16.304228805369334 }, - "vertexSeeds": { - "c1": 4.533367745577903, - "c2": 4.430820974328755, - "c3": 4.469983359080457, - "c4": 4.8245042521850925, - "c5": 4.496481824631144, - "c6": 4.446696700981705, - "c7": 4.528569862032234 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055481, + "c3": 5.779010633379561, + "c4": 4.623208506703651, + "c5": 3.4674063800277404, + "c6": 2.31160425335183, + "c7": 1.1558021266759102 }, "rgb": [238, 201, 159] }, @@ -157227,23 +157227,23 @@ "year": 1755, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 49.61700090423452, - "c2": 51.11614139689444, - "c3": 0.667900699600736, - "c4": 14.91769901610919, - "c5": -12.320480451190427, - "c6": -23.40286876385091, - "c7": -21.576574134320985 + "points": { + "c1": 47.93574123104161, + "c2": 31.12301605763404, + "c3": 1.3729903965979418, + "c4": -27.231527393212307, + "c5": 43.17590392551258, + "c6": -14.309672831084704, + "c7": -21.18107133014446 }, - "vertexSeeds": { - "c1": 3.495650025693949, - "c2": 3.4537028526419875, - "c3": 3.7931179966722937, - "c4": 3.5454331971351514, - "c5": 3.418431762026858, - "c6": 3.8284128804853133, - "c7": 3.54517054995803 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [86, 146, 138] }, @@ -157254,23 +157254,23 @@ "year": 1754, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -5.003219516780472, - "c2": 26.816710392191865, - "c3": -20.97617995482711, - "c4": 4.08232243358858, - "c5": -9.644554868180176, - "c6": -3.00523237907208, - "c7": -23.16753424785897 + "points": { + "c1": -26.480025704313203, + "c2": -19.319842866795774, + "c3": 7.131839928884283, + "c4": 4.296392968010416, + "c5": 8.479152036398148, + "c6": -16.418431347525754, + "c7": 7.971747581067383 }, - "vertexSeeds": { - "c1": 1.6709844559585492, - "c2": 1.6709844559585492, - "c3": 1.6709844559585492, - "c4": 1.6709844559585492, - "c5": 1.6709844559585492, - "c6": 1.6709844559585492, - "c7": 1.6709844559585492 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -157281,23 +157281,23 @@ "year": 1754, "resistanceReported": true, "duration": 35683200, - "curveSeeds": { - "c1": 28.783275789214223, - "c2": 27.039473836948993, - "c3": -39.587208348688165, - "c4": -29.793351811566186, - "c5": 1.0764344262823755, - "c6": 4.979769459146432, - "c7": -16.015116906041314 + "points": { + "c1": -3.2048138769252574, + "c2": 38.95174205350498, + "c3": -33.58680482907751, + "c4": 14.20780766992035, + "c5": 4.8079125286301405, + "c6": -21.650700911202247, + "c7": -30.964281185132712 }, - "vertexSeeds": { - "c1": 4.590209794295394, - "c2": 4.426632860947157, - "c3": 4.521292872248816, - "c4": 4.356560438336248, - "c5": 4.200497508954382, - "c6": 4.061015907321764, - "c7": 4.219271258617589 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572815, + "c3": 5.501618122977347, + "c4": 4.401294498381877, + "c5": 3.3009708737864076, + "c6": 2.2006472491909386, + "c7": 1.1003236245954693 }, "rgb": [86, 146, 138] }, @@ -157308,23 +157308,23 @@ "year": 1754, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 11.197982018629716, - "c2": -21.254382240806365, - "c3": -19.13619006833083, - "c4": -7.871570169861343, - "c5": 7.520384258557122, - "c6": -19.719635843978075, - "c7": -0.23065284622721904 + "points": { + "c1": 11.865094422909664, + "c2": 26.637304370421916, + "c3": -3.7358515887692505, + "c4": 12.302967851377609, + "c5": 1.0427465905799025, + "c6": 12.56107141105877, + "c7": -21.84903820095409 }, - "vertexSeeds": { - "c1": 0.1716460376528488, - "c2": 0.1634473545073544, - "c3": 0.1589328697017598, - "c4": 0.16658625725000065, - "c5": 0.17008428086811653, - "c6": 0.16821877321363898, - "c7": 0.17330624861448257 + "offsets": { + "c1": 0.3236245954692557, + "c2": 0.27739251040221935, + "c3": 0.2311604253351824, + "c4": 0.18492834026814603, + "c5": 0.13869625520110967, + "c6": 0.0924641701340733, + "c7": 0.04623208506703636 }, "rgb": [222, 0, 59] }, @@ -157335,23 +157335,23 @@ "year": 1754, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -6.126120001882001, - "c2": 36.554441198981806, - "c3": 17.468158751362836, - "c4": -18.514759107655404, - "c5": 8.579237591983421, - "c6": 27.350363230511746, - "c7": -27.391288245312154 + "points": { + "c1": 20.342027900730088, + "c2": -16.119568320318947, + "c3": -31.590063653414944, + "c4": 20.818892106896953, + "c5": -6.354829254113184, + "c6": 36.85232800964587, + "c7": 38.68028280228799 }, - "vertexSeeds": { - "c1": 7.70876809239187, - "c2": 7.687486378068405, - "c3": 7.6092203686444355, - "c4": 7.503072079415521, - "c5": 7.480691948290842, - "c6": 7.785036823648508, - "c7": 7.720107311781024 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.178918169209416, + "c3": 9.315765141007864, + "c4": 7.452612112806278, + "c5": 5.589459084604726, + "c6": 3.726306056403139, + "c7": 1.8631530282015525 }, "rgb": [77, 76, 132] }, @@ -157362,23 +157362,23 @@ "year": 1754, "resistanceReported": false, "duration": 4924800, - "curveSeeds": { - "c1": -1.1021922477161166, - "c2": 5.985133113241385, - "c3": -1.302680145463743, - "c4": 10.880508146454194, - "c5": -11.073976260752172, - "c6": -10.738842243446175, - "c7": -11.795818206374626 + "points": { + "c1": -2.4427329588056725, + "c2": 0.41567583070436953, + "c3": 15.079232395006049, + "c4": 9.506437190491258, + "c5": 15.733340353701646, + "c6": -16.432948654985253, + "c7": -5.31552015476076 }, - "vertexSeeds": { - "c1": 6.13056538964426, - "c2": 5.971506516378555, - "c3": 5.821507324246886, - "c4": 5.56316179065613, - "c5": 6.311536796620432, - "c6": 6.627053005995593, - "c7": 5.7365616951518685 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -157389,23 +157389,23 @@ "year": 1754, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 20.521695744824846, - "c2": -32.729726448925646, - "c3": 27.210889960594862, - "c4": 13.458958309710532, - "c5": 29.784809025760744, - "c6": -40.53459752256825, - "c7": -17.402934656259152 + "points": { + "c1": -35.85653806799863, + "c2": 27.4198018911352, + "c3": -27.58054033356737, + "c4": -8.95969880546577, + "c5": -21.780851530116657, + "c6": -38.83055051804572, + "c7": 22.745181713620802 }, - "vertexSeeds": { - "c1": 4.088197216197435, - "c2": 4.131570840848226, - "c3": 4.127792391326519, - "c4": 3.672208826740945, - "c5": 3.5731933168326706, - "c6": 3.676518891349831, - "c7": 3.5571583288086024 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647709, + "c3": 4.969949144706427, + "c4": 3.9759593157651394, + "c5": 2.9819694868238575, + "c6": 1.9879796578825697, + "c7": 0.993989828941288 }, "rgb": [238, 201, 159] }, @@ -157416,23 +157416,23 @@ "year": 1754, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -24.723809290409374, - "c2": 21.672869182976356, - "c3": -41.49884000103829, - "c4": -25.815915983971955, - "c5": -40.05093787831159, - "c6": -27.92879948737218, - "c7": -25.60181004092086 + "points": { + "c1": 28.361833526815374, + "c2": 23.939847770186972, + "c3": 1.171568058161526, + "c4": 37.12840959398771, + "c5": 7.8763541623413005, + "c6": -5.575822244196971, + "c7": -22.13096655552573 }, - "vertexSeeds": { - "c1": 1.041605946719295, - "c2": 1.0868425966028477, - "c3": 1.0592654515862487, - "c4": 1.0820597298795662, - "c5": 1.102116377892122, - "c6": 1.0897192670499776, - "c7": 1.0457307760116807 + "offsets": { + "c1": 1.8770226537216828, + "c2": 1.6088765603328719, + "c3": 1.3407304669440576, + "c4": 1.0725843735552467, + "c5": 0.8044382801664359, + "c6": 0.536292186777625, + "c7": 0.26814609338881085 }, "rgb": [77, 76, 132] }, @@ -157443,23 +157443,23 @@ "year": 1754, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 5.027266632196181, - "c2": -17.643058253955513, - "c3": -38.61143718128538, - "c4": -33.93736071428524, - "c5": 35.14245288801952, - "c6": -36.464348108564025, - "c7": -4.9193066149403535 + "points": { + "c1": 29.478132021134385, + "c2": -42.191327825380164, + "c3": 16.880163042916372, + "c4": 23.849824950463457, + "c5": -41.906345566061276, + "c6": -7.596983887699416, + "c7": 19.11816894520468 }, - "vertexSeeds": { - "c1": 7.9119847418117315, - "c2": 7.561938835161073, - "c3": 7.825085693586951, - "c4": 8.54632333445582, - "c5": 8.21639783183045, - "c6": 8.660569696886327, - "c7": 7.520306704951689 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099866, + "c3": 10.402219140083215, + "c4": 8.321775312066576, + "c5": 6.241331484049927, + "c6": 4.160887656033288, + "c7": 2.0804438280166506 }, "rgb": [222, 0, 59] }, @@ -157470,23 +157470,23 @@ "year": 1754, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": 36.660579559287314, - "c2": 28.34558290732582, - "c3": -22.091240745719883, - "c4": 30.66897827325441, - "c5": 37.33878043899314, - "c6": 14.124916397573621, - "c7": 27.78255259923999 + "points": { + "c1": 17.596927089683717, + "c2": -9.609207581501877, + "c3": 31.193480635961137, + "c4": 29.404775350075752, + "c5": -17.429262085293836, + "c6": -13.649468721681451, + "c7": 7.8517449607969425 }, - "vertexSeeds": { - "c1": 5.127410966318554, - "c2": 5.4211575917397825, - "c3": 5.2623421430754505, - "c4": 5.35630406072511, - "c5": 5.4074884035073225, - "c6": 5.189229084055011, - "c7": 5.379198244186747 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.9611650485436884, + "c3": 6.634304207119738, + "c4": 5.307443365695788, + "c5": 3.9805825242718376, + "c6": 2.6537216828479, + "c7": 1.326860841423944 }, "rgb": [58, 15, 49] }, @@ -157497,23 +157497,23 @@ "year": 1754, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 36.27607025636833, - "c2": -33.93175776205231, - "c3": 24.697114951377294, - "c4": 20.915116093941734, - "c5": 29.921619493963505, - "c6": 25.779977324161308, - "c7": -35.77843652716743 + "points": { + "c1": -21.105537307631362, + "c2": -9.596183133025168, + "c3": 1.9017857178472184, + "c4": 16.37108872916989, + "c5": -7.279020754083639, + "c6": 24.771111629628706, + "c7": 25.598459476888323 }, - "vertexSeeds": { - "c1": 2.209328062848975, - "c2": 2.2120506936701707, - "c3": 2.2705405291213134, - "c4": 2.356662793377812, - "c5": 2.331009915845715, - "c6": 2.371210599619995, - "c7": 2.319791677143958 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.4674063800277395, + "c3": 2.889505316689784, + "c4": 2.311604253351828, + "c5": 1.733703190013867, + "c6": 1.1558021266759115, + "c7": 0.5779010633379558 }, "rgb": [238, 201, 159] }, @@ -157524,23 +157524,23 @@ "year": 1754, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 46.17406846294581, - "c2": 32.238683033238004, - "c3": 11.303979669912685, - "c4": -26.051186084849522, - "c5": 10.495365506609481, - "c6": -48.37067574672845, - "c7": -6.603047074137898 + "points": { + "c1": -1.5054871980986562, + "c2": 35.30498913564402, + "c3": -20.82630761904105, + "c4": -47.904303599720365, + "c5": -9.447465812628948, + "c6": -30.888392010065925, + "c7": -2.8983516724774105 }, - "vertexSeeds": { - "c1": 6.005361023728389, - "c2": 6.2416588293071085, - "c3": 6.223212991931801, - "c4": 6.104140023732019, - "c5": 6.218491706608339, - "c6": 5.949042904184999, - "c7": 5.576116615869851 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.26490984743412, + "c3": 7.720758206195103, + "c4": 6.176606564956085, + "c5": 4.632454923717067, + "c6": 3.088303282478036, + "c7": 1.5441516412390308 }, "rgb": [222, 0, 59] }, @@ -157551,23 +157551,23 @@ "year": 1755, "resistanceReported": false, "duration": 39052800, - "curveSeeds": { - "c1": -46.32807209898371, - "c2": -51.6914285800398, - "c3": 35.18348415847075, - "c4": -9.289413930551802, - "c5": 21.068556780170752, - "c6": -33.568881761278064, - "c7": -3.29154598453313 + "points": { + "c1": -49.71478542209248, + "c2": 18.000213067085696, + "c3": 8.436242672928522, + "c4": 1.915614897709645, + "c5": 5.199313785564385, + "c6": 0.9794232539102339, + "c7": 33.40258721887858 }, - "vertexSeeds": { - "c1": 4.96858797156755, - "c2": 4.8961981480640295, - "c3": 5.428362404390313, - "c4": 5.538270430023591, - "c5": 4.904028791202251, - "c6": 5.292226298124224, - "c7": 5.200590999430093 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [238, 201, 159] }, @@ -157578,23 +157578,23 @@ "year": 1754, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 26.267539230891543, - "c2": 1.9365231267301795, - "c3": 30.678685230279697, - "c4": 3.257010120306724, - "c5": 8.954517745730818, - "c6": 30.953936165959533, - "c7": -20.67583231476054 + "points": { + "c1": 4.671374127486537, + "c2": 23.51002892473099, + "c3": 40.47686236878533, + "c4": 22.042784107592766, + "c5": -1.7565727669080289, + "c6": 27.954878136647935, + "c7": -33.404408613404996 }, - "vertexSeeds": { - "c1": 3.8429366498043738, - "c2": 3.715115108311836, - "c3": 3.8171042575736345, - "c4": 3.543521822727259, - "c5": 3.4929081690843145, - "c6": 3.588422299851886, - "c7": 3.7422431018711197 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [86, 146, 138] }, @@ -157605,23 +157605,23 @@ "year": 1755, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": -5.757120221691878, - "c2": 39.27675904893136, - "c3": -32.38791866125551, - "c4": 5.848228968571853, - "c5": -52.309008790359414, - "c6": 34.29897176640126, - "c7": -23.75203300747753 + "points": { + "c1": 8.656099333314081, + "c2": -24.069729509660426, + "c3": -7.988647580704004, + "c4": -21.071674499569248, + "c5": 6.396705394873138, + "c6": 28.181599690718848, + "c7": -0.9772343092886402 }, - "vertexSeeds": { - "c1": 4.100717319808907, - "c2": 4.285336576372679, - "c3": 3.9741648055085492, - "c4": 4.323903964686145, - "c5": 4.116272801431423, - "c6": 4.118685292533282, - "c7": 3.996574445249946 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [86, 146, 138] }, @@ -157632,23 +157632,23 @@ "year": 1754, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": -28.252701875183377, - "c2": 24.148062777834674, - "c3": -33.12846042139579, - "c4": 32.63620441439736, - "c5": 32.79202649252692, - "c6": 1.4428950465115378, - "c7": -37.02897485142815 + "points": { + "c1": -38.691626813586495, + "c2": -9.397491706943406, + "c3": -36.33564786445259, + "c4": -0.12436100523981253, + "c5": -24.83401693780723, + "c6": 19.02716318135416, + "c7": -45.30834617858849 }, - "vertexSeeds": { - "c1": 5.8095854922279795, - "c2": 5.8095854922279795, - "c3": 5.8095854922279795, - "c4": 5.8095854922279795, - "c5": 5.8095854922279795, - "c6": 5.8095854922279795, - "c7": 5.8095854922279795 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -157659,23 +157659,23 @@ "year": 1754, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -45.192773423765985, - "c2": -37.80590494396757, - "c3": 34.66447493087446, - "c4": 42.03117858683716, - "c5": -39.61671384513538, - "c6": 37.256565225314915, - "c7": 24.80112035755289 + "points": { + "c1": -40.02613681937929, + "c2": 49.47879706804197, + "c3": 48.73376969561845, + "c4": 49.42225105169399, + "c5": -6.819673609765175, + "c6": 26.227651983784156, + "c7": -48.995532154363694 }, - "vertexSeeds": { - "c1": 7.828183156557876, - "c2": 7.3121885790551024, - "c3": 8.306930967557646, - "c4": 8.016381990110037, - "c5": 7.9770753389861895, - "c6": 7.7101096563102685, - "c7": 8.455078236898007 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737864, + "c3": 10.194174757281553, + "c4": 8.155339805825243, + "c5": 6.116504854368932, + "c6": 4.077669902912621, + "c7": 2.0388349514563107 }, "rgb": [86, 146, 138] }, @@ -157686,23 +157686,23 @@ "year": 1754, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 28.023036988488187, - "c2": -30.025418455357595, - "c3": 27.588666392527557, - "c4": 11.886559420244218, - "c5": 8.315146125072829, - "c6": 34.8788988835542, - "c7": -12.799297268360405 + "points": { + "c1": 4.044609246474778, + "c2": -15.521040699300688, + "c3": 27.90168088964063, + "c4": -20.91561796448399, + "c5": 3.3522805127990907, + "c6": 31.5701523052697, + "c7": -26.234544824936965 }, - "vertexSeeds": { - "c1": 4.855150436640868, - "c2": 4.3724254691351865, - "c3": 4.445400758158099, - "c4": 4.431303386074719, - "c5": 4.504665329384907, - "c6": 4.764664839646568, - "c7": 4.436411397071974 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216362, + "c3": 5.871474803513639, + "c4": 4.697179842810908, + "c5": 3.5228848821081846, + "c6": 2.348589921405454, + "c7": 1.1742949607027309 }, "rgb": [222, 0, 59] }, @@ -157713,23 +157713,23 @@ "year": 1754, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -16.961013410495436, - "c2": -27.038221446982753, - "c3": 31.068359135800478, - "c4": 11.64638994338894, - "c5": 3.364898304656805, - "c6": 23.7754515208778, - "c7": -12.61261153941955 + "points": { + "c1": 16.522223251229065, + "c2": -1.23143148323512, + "c3": -28.771002368706192, + "c4": -14.420255127260358, + "c5": -14.567613710772598, + "c6": 14.559252764250935, + "c7": 27.425338553393246 }, - "vertexSeeds": { - "c1": 4.118128190617493, - "c2": 4.301234044697378, - "c3": 4.6721756629038, - "c4": 4.686777115992651, - "c5": 4.630004429747702, - "c6": 4.551686538382331, - "c7": 4.095252138570447 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -157740,23 +157740,23 @@ "year": 1754, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": 12.717228960079687, - "c2": 20.080244814302752, - "c3": 7.1894115415629685, - "c4": -12.947934157435853, - "c5": -11.85007990381903, - "c6": 5.989728503597437, - "c7": -1.9499482690666987 + "points": { + "c1": -19.1880154189368, + "c2": -5.944452925968658, + "c3": -13.536329104884732, + "c4": -4.289692121582121, + "c5": -9.99028184365227, + "c6": 20.461334973274724, + "c7": -8.221569650978974 }, - "vertexSeeds": { - "c1": 7.353598503520498, - "c2": 7.544041436520231, - "c3": 7.371852165592791, - "c4": 7.088034518247207, - "c5": 7.339900853323111, - "c6": 7.7731290173252425, - "c7": 7.00467665996289 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330094, + "c3": 9.385113268608409, + "c4": 7.508090614886725, + "c5": 5.631067961165055, + "c6": 3.7540453074433704, + "c7": 1.8770226537216852 }, "rgb": [77, 76, 132] }, @@ -157767,23 +157767,23 @@ "year": 1754, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 19.736653461744936, - "c2": -14.116915284609544, - "c3": 11.055964889890845, - "c4": 6.17998948499875, - "c5": -3.3993217238216005, - "c6": 35.170792701977334, - "c7": 11.19070151122996 + "points": { + "c1": -4.094182654729188, + "c2": 25.501180958515477, + "c3": -6.2454222299962225, + "c4": 5.178854496110077, + "c5": -16.096070532196016, + "c6": -32.31437352672799, + "c7": 26.370031099165118 }, - "vertexSeeds": { - "c1": 5.144788358740577, - "c2": 5.122338930611594, - "c3": 4.856529226106125, - "c4": 4.922439301744268, - "c5": 4.6547191363700104, - "c6": 5.353045694678516, - "c7": 5.184037033069172 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385112, + "c4": 5.177993527508089, + "c5": 3.8834951456310645, + "c6": 2.5889967637540408, + "c7": 1.294498381877017 }, "rgb": [238, 201, 159] }, @@ -157794,23 +157794,23 @@ "year": 1754, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 34.08464331867595, - "c2": 25.25930096085063, - "c3": 2.075850718265116, - "c4": 19.409645630176804, - "c5": -44.449560106613525, - "c6": 28.918248149268557, - "c7": 31.09086217184481 + "points": { + "c1": 22.780192220890875, + "c2": 28.780227589708296, + "c3": 24.696613983994943, + "c4": -5.539281750976357, + "c5": -21.735191797207186, + "c6": 16.35457462337626, + "c7": 28.294521584004706 }, - "vertexSeeds": { - "c1": 6.846172705771009, - "c2": 6.935612429780343, - "c3": 7.122918721798892, - "c4": 6.849657313739269, - "c5": 6.602964268391755, - "c6": 7.398571694938209, - "c7": 7.11008024300536 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471568, + "c4": 7.156726768377254, + "c5": 5.367545076282941, + "c6": 3.578363384188627, + "c7": 1.7891816920943135 }, "rgb": [238, 201, 159] }, @@ -157821,23 +157821,23 @@ "year": 1754, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -0.3140700638821272, - "c2": -12.188021868227882, - "c3": -30.863870008923065, - "c4": -19.752073001644646, - "c5": 11.281802541732354, - "c6": 0.6346676788011933, - "c7": -3.694237113547196 + "points": { + "c1": -2.3301935579041597, + "c2": 28.376142530293166, + "c3": -17.708389114750887, + "c4": 26.276601809388424, + "c5": -30.86229139428019, + "c6": -7.6209301538715835, + "c7": -18.786085513077378 }, - "vertexSeeds": { - "c1": 2.8111362499299517, - "c2": 2.5799201900403674, - "c3": 2.679187908214602, - "c4": 2.7189141300095323, - "c5": 2.569473991307414, - "c6": 2.6558460445705645, - "c7": 2.6820325180642324 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194173, + "c3": 3.559870550161815, + "c4": 2.8478964401294506, + "c5": 2.1359223300970864, + "c6": 1.423948220064722, + "c7": 0.7119741100323643 }, "rgb": [58, 15, 49] }, @@ -157848,23 +157848,23 @@ "year": 1754, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -32.53777559620015, - "c2": 37.25868830593962, - "c3": -35.82485488791824, - "c4": 10.333300208973213, - "c5": 9.372670843207807, - "c6": -10.115904280965665, - "c7": 27.70879335115429 + "points": { + "c1": 40.95530241340281, + "c2": 12.034531010295588, + "c3": -20.255426285116563, + "c4": 19.406804404164838, + "c5": 0.2209301582634069, + "c6": 11.214050545752187, + "c7": 31.882299570287692 }, - "vertexSeeds": { - "c1": 4.887293860414205, - "c2": 4.532857841267152, - "c3": 4.926275417810319, - "c4": 4.434160657635309, - "c5": 4.287581222006163, - "c6": 4.4339763361415585, - "c7": 4.524307720034302 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.1567267683772515, + "c3": 5.963938973647712, + "c4": 4.771151178918168, + "c5": 3.5783633841886284, + "c6": 2.385575589459084, + "c7": 1.192787794729539 }, "rgb": [222, 0, 59] }, @@ -157875,23 +157875,23 @@ "year": 1754, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 23.989512809252297, - "c2": -22.053536086496415, - "c3": -20.649560721362924, - "c4": 22.276337658064058, - "c5": -20.770036245541426, - "c6": 18.517031157765103, - "c7": -38.90261498412813 + "points": { + "c1": -33.78000888032365, + "c2": -8.379451386312738, + "c3": 27.54290338178121, + "c4": 28.891423145676704, + "c5": 4.391020628467146, + "c6": -10.72048912434731, + "c7": -2.6262746348478956 }, - "vertexSeeds": { - "c1": 1.7910820384174047, - "c2": 1.927333611032767, - "c3": 1.857090538519213, - "c4": 1.9950881459330199, - "c5": 1.937082911431705, - "c6": 1.8115699639983893, - "c7": 1.8752249405650236 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233015, + "c3": 2.4271844660194186, + "c4": 1.9417475728155356, + "c5": 1.4563106796116527, + "c6": 0.9708737864077658, + "c7": 0.4854368932038829 }, "rgb": [86, 146, 138] }, @@ -157902,23 +157902,23 @@ "year": 1754, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 5.78720627634576, - "c2": -15.489597468095107, - "c3": -2.053363660531449, - "c4": 0.44343779687240925, - "c5": 25.981129402769863, - "c6": 17.956425514832976, - "c7": -16.174766173564105 + "points": { + "c1": 31.402614305569358, + "c2": 13.179199888511413, + "c3": 17.483556419795995, + "c4": 12.375022182584509, + "c5": 21.607790786478184, + "c6": 18.95749793181644, + "c7": 18.93817987698244 }, - "vertexSeeds": { - "c1": 6.270791521801058, - "c2": 6.223781548860247, - "c3": 6.114932377923684, - "c4": 6.337601369117156, - "c5": 6.153670228427248, - "c6": 6.257146910076433, - "c7": 6.163818155372475 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [58, 15, 49] }, @@ -157929,23 +157929,23 @@ "year": 1754, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 5.775370389382108, - "c2": 24.17364396739071, - "c3": -23.154507341062217, - "c4": 21.59756868493364, - "c5": 4.486345723740673, - "c6": 14.703520197978413, - "c7": 17.78263134794917 + "points": { + "c1": -9.0301068909294, + "c2": -18.925825311046147, + "c3": -22.237398821567012, + "c4": -5.995621454959654, + "c5": 24.13263948588321, + "c6": -7.630086203542486, + "c7": -19.109669154760006 }, - "vertexSeeds": { - "c1": 3.8294684357946553, - "c2": 3.83206186418476, - "c3": 3.6719198424284505, - "c4": 3.768552491945438, - "c5": 3.801884920492925, - "c6": 3.6464139380853844, - "c7": 3.689134152573153 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486826, + "c3": 4.877484974572352, + "c4": 3.9019879796578842, + "c5": 2.9264909847434097, + "c6": 1.9509939898289421, + "c7": 0.9754969949144678 }, "rgb": [58, 15, 49] }, @@ -157956,23 +157956,23 @@ "year": 1754, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -14.873440319860157, - "c2": -11.980519208041917, - "c3": -22.551990017705457, - "c4": -11.657131601402721, - "c5": -5.187544379007807, - "c6": 18.943021736947543, - "c7": -21.645144422156605 + "points": { + "c1": 5.609341968476453, + "c2": -9.358512756188397, + "c3": -0.7754442169664664, + "c4": -1.397850561892323, + "c5": -16.545793968502643, + "c6": 25.553886297609637, + "c7": -19.5973511227158 }, - "vertexSeeds": { - "c1": 0.5273864985682405, - "c2": 0.584555579111241, - "c3": 0.558903511779891, - "c4": 0.5747088286711948, - "c5": 0.6426553488273538, - "c6": 0.5044955170697822, - "c7": 0.49254589859102416 + "offsets": { + "c1": 1.1650485436893203, + "c2": 0.998613037447989, + "c3": 0.8321775312066572, + "c4": 0.665742024965326, + "c5": 0.4993065187239944, + "c6": 0.3328710124826628, + "c7": 0.16643550624133155 }, "rgb": [222, 0, 59] }, @@ -157983,23 +157983,23 @@ "year": 1755, "resistanceReported": false, "duration": 49680000, - "curveSeeds": { - "c1": 35.400677706608064, - "c2": 26.739756017104995, - "c3": -7.761777004809964, - "c4": -61.57714068640475, - "c5": -19.46138770271881, - "c6": -6.061130170499709, - "c7": 3.0031058933716537 + "points": { + "c1": 44.27524002350732, + "c2": -2.950885276644435, + "c3": -43.35854584488667, + "c4": 11.290101439234718, + "c5": 45.68072444598131, + "c6": -11.882857396835135, + "c7": 38.04662930944731 }, - "vertexSeeds": { - "c1": 6.566005923429817, - "c2": 6.4487782559856734, - "c3": 6.524803550578537, - "c4": 6.287409890856214, - "c5": 6.422663958404655, - "c6": 6.126780332322289, - "c7": 6.164418652001667 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.73647711511789, + "c3": 8.113730929264905, + "c4": 6.490984743411922, + "c5": 4.8682385575589375, + "c6": 3.245492371705954, + "c7": 1.6227461858529701 }, "rgb": [77, 76, 132] }, @@ -158010,23 +158010,23 @@ "year": 1755, "resistanceReported": false, "duration": 53568000, - "curveSeeds": { - "c1": -21.69530455175591, - "c2": 45.82201603430646, - "c3": 15.613196265367364, - "c4": -36.80620543562266, - "c5": 66.57836536739526, - "c6": 64.85583787548805, - "c7": 8.424034603189057 + "points": { + "c1": -7.658387714452182, + "c2": -0.7440097484791011, + "c3": 30.08514152518795, + "c4": -18.11258117832783, + "c5": 18.974373943858325, + "c6": 11.753383117107361, + "c7": -30.879835162237157 }, - "vertexSeeds": { - "c1": 4.445011776578075, - "c2": 4.733452529296184, - "c3": 4.3652687318924555, - "c4": 4.618768843766786, - "c5": 5.177518500706624, - "c6": 5.1501786861637004, - "c7": 5.055232951174142 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664355, + "c3": 6.7036523347202985, + "c4": 5.362921867776237, + "c5": 4.0221914008321775, + "c6": 2.6814609338881166, + "c7": 1.3407304669440583 }, "rgb": [222, 0, 59] }, @@ -158037,23 +158037,23 @@ "year": 1755, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": 47.781489723707644, - "c2": -39.32359406131713, - "c3": 3.5639588744139488, - "c4": 37.91561247182651, - "c5": -44.63081102840563, - "c6": -7.362011618850374, - "c7": 37.53103211664493 + "points": { + "c1": -20.7054112091201, + "c2": -7.866912896270087, + "c3": -32.29269317296034, + "c4": 2.028422958974552, + "c5": -42.547285712086065, + "c6": -42.1942858344193, + "c7": 9.737607209633758 }, - "vertexSeeds": { - "c1": 6.038832887747233, - "c2": 6.220123886602669, - "c3": 6.172083905543086, - "c4": 6.235781352639973, - "c5": 5.829725318676417, - "c6": 5.951978572691116, - "c7": 5.88207411289201 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951443, + "c3": 7.443365695792884, + "c4": 5.954692556634297, + "c5": 4.466019417475736, + "c6": 2.9773462783171487, + "c7": 1.4886731391585875 }, "rgb": [58, 15, 49] }, @@ -158064,23 +158064,23 @@ "year": 1755, "resistanceReported": false, "duration": 47001600, - "curveSeeds": { - "c1": 29.309507839571005, - "c2": 9.478226979705049, - "c3": -40.14722568008219, - "c4": -24.579807145944045, - "c5": -7.677848099181325, - "c6": -38.72033821991393, - "c7": 45.51201327065231 + "points": { + "c1": -14.149031247205919, + "c2": 41.19298858950882, + "c3": -60.753319499503355, + "c4": -1.3649208936210968, + "c5": 53.300570802838585, + "c6": 37.38953872720624, + "c7": 51.47552326918203 }, - "vertexSeeds": { - "c1": 6.459960655213287, - "c2": 6.016082206719969, - "c3": 6.249691278746744, - "c4": 5.94676790499064, - "c5": 6.544666650144932, - "c6": 6.089189354034603, - "c7": 6.1556028058820145 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [222, 0, 59] }, @@ -158091,23 +158091,23 @@ "year": 1754, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -21.026354167397777, - "c2": 23.944544679371326, - "c3": 18.949628151228296, - "c4": -23.301197793426642, - "c5": 9.34784664366024, - "c6": 4.317480842951717, - "c7": -16.18765801869003 + "points": { + "c1": 11.234333438912941, + "c2": -3.258417356630847, + "c3": 20.96236838449876, + "c4": -24.297145928175432, + "c5": 14.278062275311328, + "c6": 15.66268927154146, + "c7": 8.377318442897185 }, - "vertexSeeds": { - "c1": 2.8088822656393195, - "c2": 2.9507814605919767, - "c3": 3.0551650238142467, - "c4": 3.159483623017948, - "c5": 3.133557148430618, - "c6": 3.040065395075845, - "c7": 3.0179209275703847 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596395, + "c3": 3.791030975496992, + "c4": 3.032824780397595, + "c5": 2.2746185852981977, + "c6": 1.5164123901988005, + "c7": 0.7582061950993971 }, "rgb": [238, 201, 159] }, @@ -158118,23 +158118,23 @@ "year": 1755, "resistanceReported": false, "duration": 48297600, - "curveSeeds": { - "c1": -46.48199117967668, - "c2": -22.236207301810204, - "c3": -41.297968402854096, - "c4": 18.658412215719274, - "c5": -55.99181293244809, - "c6": 39.03331392679515, - "c7": -41.11389578280803 + "points": { + "c1": 19.258762061484646, + "c2": -23.517474525618063, + "c3": 3.2701875379340066, + "c4": 51.415564876220486, + "c5": -34.87896492492181, + "c6": 35.37918202537203, + "c7": 31.078909994214257 }, - "vertexSeeds": { - "c1": 2.2304068087155877, - "c2": 2.37007741769694, - "c3": 2.2238059642310355, - "c4": 2.1690623835097758, - "c5": 2.301782670542254, - "c6": 2.2049539367148108, - "c7": 2.161474148453453 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [222, 0, 59] }, @@ -158145,23 +158145,23 @@ "year": 1755, "resistanceReported": false, "duration": 47174400, - "curveSeeds": { - "c1": 10.910860115078272, - "c2": 26.1259694357583, - "c3": 8.987523914726744, - "c4": -59.30818680373467, - "c5": -36.344406534519045, - "c6": -53.875454114138776, - "c7": -34.04300808875021 + "points": { + "c1": 31.499168744785898, + "c2": 53.25096953332062, + "c3": -33.85024971887786, + "c4": 19.64644830479552, + "c5": -35.47573337476422, + "c6": 50.97245034807292, + "c7": -45.92297774381202 }, - "vertexSeeds": { - "c1": 1.898420798093163, - "c2": 1.8125775518844562, - "c3": 1.7491680757637467, - "c4": 1.7941757753476295, - "c5": 1.8709749399567468, - "c6": 1.9033832651430145, - "c7": 1.8657691655979782 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022192, + "c3": 2.311604253351827, + "c4": 1.8492834026814624, + "c5": 1.3869625520110938, + "c6": 0.9246417013407293, + "c7": 0.46232085067036466 }, "rgb": [238, 201, 159] }, @@ -158172,23 +158172,23 @@ "year": 1755, "resistanceReported": false, "duration": 47174400, - "curveSeeds": { - "c1": -19.524657707495443, - "c2": -36.058153863882, - "c3": 28.253125895718718, - "c4": 43.863964202968695, - "c5": 53.260403716429856, - "c6": 33.47651555329751, - "c7": 61.377891082385354 + "points": { + "c1": -7.193472590145703, + "c2": -60.063444031474766, + "c3": -21.423884461977003, + "c4": 24.17274381355663, + "c5": 48.62773909243007, + "c6": 0.4889309997263567, + "c7": 61.0416963369047 }, - "vertexSeeds": { - "c1": 3.4302774161564185, - "c2": 3.0709948090213057, - "c3": 3.363479626046717, - "c4": 3.0038139815829497, - "c5": 3.2376178429750735, - "c6": 3.326466160655102, - "c7": 3.3469430288590347 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033284, + "c4": 3.328710124826629, + "c5": 2.496532593619973, + "c6": 1.6643550624133177, + "c7": 0.8321775312066556 }, "rgb": [238, 201, 159] }, @@ -158199,23 +158199,23 @@ "year": 1755, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 38.26883161377815, - "c2": -15.902123305989488, - "c3": -1.8317096817048792, - "c4": 9.250717440606834, - "c5": -11.721551667773063, - "c6": -29.981626585486936, - "c7": -31.76876455108972 + "points": { + "c1": 43.71413333079829, + "c2": -39.80466666298551, + "c3": 39.013071124208295, + "c4": 1.217965468435402, + "c5": -37.12560113023828, + "c6": -30.104094312116086, + "c7": -32.35223035665239 }, - "vertexSeeds": { - "c1": 5.6051413533799375, - "c2": 5.867049541186704, - "c3": 6.110281156186, - "c4": 6.129798145538523, - "c5": 5.836726427948324, - "c6": 5.621983611912616, - "c7": 6.477908738446389 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -158226,23 +158226,23 @@ "year": 1754, "resistanceReported": true, "duration": 23760000, - "curveSeeds": { - "c1": -28.42698412399485, - "c2": -7.630676945589041, - "c3": 29.16866777705802, - "c4": -20.121637247688255, - "c5": 9.834728984590335, - "c6": 34.9961522185219, - "c7": 34.29041540010746 + "points": { + "c1": -8.90959871745013, + "c2": -28.831874855506314, + "c3": 15.016627646401062, + "c4": 29.967978266709622, + "c5": -13.155144502772501, + "c6": -35.38215068276467, + "c7": -17.90892234741916 }, - "vertexSeeds": { - "c1": 1.2202907944270351, - "c2": 1.1305543491903798, - "c3": 1.12490278365514, - "c4": 0.9816637102564213, - "c5": 1.116001889942718, - "c6": 1.0173822167265043, - "c7": 1.2240553030113657 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742022, + "c3": 1.4794267221451687, + "c4": 1.1835413777161348, + "c5": 0.8876560332871011, + "c6": 0.5917706888580674, + "c7": 0.2958853444290337 }, "rgb": [222, 0, 59] }, @@ -158253,23 +158253,23 @@ "year": 1755, "resistanceReported": false, "duration": 47174400, - "curveSeeds": { - "c1": 17.472035924049727, - "c2": -29.989499252757746, - "c3": -33.77180397087881, - "c4": -29.193049288047185, - "c5": 12.2267393810939, - "c6": -24.291945811937076, - "c7": -5.283477428216685 + "points": { + "c1": 61.67557282030827, + "c2": 34.60068141723389, + "c3": -41.865120874943216, + "c4": 51.57983736399405, + "c5": -61.49639665329982, + "c6": -59.01654175795623, + "c7": -1.4563319465392368 }, - "vertexSeeds": { - "c1": 2.973609768446262, - "c2": 3.1604401805836884, - "c3": 3.164171152460865, - "c4": 3.067538156150511, - "c5": 2.925547119043158, - "c6": 3.243415757768008, - "c7": 3.021901897613739 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -158280,23 +158280,23 @@ "year": 1755, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 35.83484772017712, - "c2": 32.929982905926465, - "c3": -4.219042454198153, - "c4": 18.196504578001758, - "c5": 14.21349587265626, - "c6": 26.501879005013578, - "c7": -39.15787728715679 + "points": { + "c1": 11.336226428276248, + "c2": -46.192567291636806, + "c3": -3.2056666457555494, + "c4": 10.716369151052149, + "c5": 43.375835062686576, + "c6": -14.549731261268473, + "c7": 36.2284250111684 }, - "vertexSeeds": { - "c1": 3.6527012797440492, - "c2": 3.4644950554319505, - "c3": 3.598720315888239, - "c4": 3.4508379389778736, - "c5": 3.5073669005393415, - "c6": 3.834834839696619, - "c7": 3.69358081511282 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044385, + "c3": 4.623208506703649, + "c4": 3.698566805362921, + "c5": 2.7739251040221924, + "c6": 1.8492834026814642, + "c7": 0.9246417013407282 }, "rgb": [77, 76, 132] }, @@ -158307,23 +158307,23 @@ "year": 1755, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": 0.6274177423349485, - "c2": -6.141125264333688, - "c3": 33.176421378408854, - "c4": -9.627994181250621, - "c5": -48.201950014667446, - "c6": -42.26798099140956, - "c7": 18.109873908899097 + "points": { + "c1": -8.543963350493499, + "c2": -37.28062410864293, + "c3": -51.01880662665713, + "c4": 49.58661972746949, + "c5": 10.88505459733016, + "c6": 53.66550526158738, + "c7": 12.219420102412109 }, - "vertexSeeds": { - "c1": 6.034570203442115, - "c2": 5.493679098835658, - "c3": 5.93652590240866, - "c4": 5.499297841828259, - "c5": 5.6846120513378535, - "c6": 6.000081323998069, - "c7": 6.030325785065045 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911234, + "c3": 7.420249653259362, + "c4": 5.936199722607489, + "c5": 4.452149791955617, + "c6": 2.9680998613037444, + "c7": 1.4840499306518722 }, "rgb": [86, 146, 138] }, @@ -158334,23 +158334,23 @@ "year": 1754, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -20.163112146873583, - "c2": -12.19571963297739, - "c3": -39.29712559584839, - "c4": -0.024517304474485968, - "c5": 38.167600875616245, - "c6": -39.361586198503716, - "c7": -29.298364271767788 + "points": { + "c1": 10.792726721673176, + "c2": 25.453766216705546, + "c3": 14.068321372252683, + "c4": -33.70824800347481, + "c5": 35.364951642040765, + "c6": -38.57062980187567, + "c7": -4.25800176474764 }, - "vertexSeeds": { - "c1": 0.15023817193415356, - "c2": 0.1446479117284827, - "c3": 0.1528234890028884, - "c4": 0.15222807655409254, - "c5": 0.1369553827954139, - "c6": 0.14427423409537773, - "c7": 0.15222460735912785 + "offsets": { + "c1": 0.2912621359223301, + "c2": 0.24965325936199728, + "c3": 0.20804438280166448, + "c4": 0.16643550624133116, + "c5": 0.12482662968099839, + "c6": 0.08321775312066558, + "c7": 0.04160887656033279 }, "rgb": [222, 0, 59] }, @@ -158361,23 +158361,23 @@ "year": 1754, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -7.815281172377041, - "c2": 22.679512654393072, - "c3": -25.70766928622223, - "c4": -18.702430178581942, - "c5": -22.026181789661365, - "c6": -16.34958844535038, - "c7": 30.773128666387187 + "points": { + "c1": -25.684767528016977, + "c2": -10.856699883919923, + "c3": 25.76021119519568, + "c4": 32.719161093875336, + "c5": 5.516834810374107, + "c6": 26.20551688485253, + "c7": 0.35911795669781554 }, - "vertexSeeds": { - "c1": 0.1639789297476397, - "c2": 0.1557512462964567, - "c3": 0.16013693999568165, - "c4": 0.15812231801997814, - "c5": 0.15940399483278353, - "c6": 0.16655193675298524, - "c7": 0.17445053699104468 + "offsets": { + "c1": 0.3236245954692557, + "c2": 0.27739251040221935, + "c3": 0.2311604253351824, + "c4": 0.18492834026814603, + "c5": 0.13869625520110967, + "c6": 0.0924641701340733, + "c7": 0.04623208506703636 }, "rgb": [238, 201, 159] }, @@ -158388,23 +158388,23 @@ "year": 1754, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -26.14764160579409, - "c2": 12.098576167263879, - "c3": 9.049949228054686, - "c4": 15.604067244089535, - "c5": -8.228007982356356, - "c6": -6.403801845332236, - "c7": -19.92391321185815 + "points": { + "c1": -19.54403573689133, + "c2": 22.76457248807459, + "c3": 28.525000350326394, + "c4": 11.044846281505485, + "c5": -18.645957856008245, + "c6": 9.314958182677579, + "c7": 5.301778499487682 }, - "vertexSeeds": { - "c1": 3.8877792523289427, - "c2": 3.6686467114279155, - "c3": 3.954615922389226, - "c4": 3.569703320770189, - "c5": 3.4697794943634213, - "c6": 3.8441363013646086, - "c7": 3.8381246079736506 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245492, + "c3": 4.738788719371242, + "c4": 3.7910309754969975, + "c5": 2.8432732316227485, + "c6": 1.8955154877484988, + "c7": 0.9477577438742494 }, "rgb": [238, 201, 159] }, @@ -158415,23 +158415,23 @@ "year": 1754, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": -7.721478597471158, - "c2": 1.6381414989482188, - "c3": 8.794415154661007, - "c4": -20.311423661823504, - "c5": -4.46397923657641, - "c6": 16.04621098373492, - "c7": -2.6392370906811777 + "points": { + "c1": -9.919804804544937, + "c2": -5.90735788356578, + "c3": -21.44880143043003, + "c4": -21.25862257895126, + "c5": -11.623593270471565, + "c6": 7.6162452322372545, + "c7": -6.179295007980155 }, - "vertexSeeds": { - "c1": 3.990064402781289, - "c2": 3.884920387924275, - "c3": 3.93795921324123, - "c4": 3.976900445377593, - "c5": 3.9829727559188384, - "c6": 3.903442887113346, - "c7": 3.974846766101464 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366163, + "c3": 4.808136846971806, + "c4": 3.846509477577426, + "c5": 2.8848821081830693, + "c6": 1.923254738788713, + "c7": 0.9616273693943564 }, "rgb": [238, 201, 159] }, @@ -158442,23 +158442,23 @@ "year": 1755, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -12.465722322777907, - "c2": 7.649631825789136, - "c3": -4.704027214472347, - "c4": -24.45726687923336, - "c5": 39.31428285897482, - "c6": 16.87289227301352, - "c7": -5.856999378913912 + "points": { + "c1": -9.265213044791295, + "c2": -4.511274780033055, + "c3": -25.33956745957339, + "c4": -42.02313938073218, + "c5": 5.530438947138215, + "c6": -25.832382923793936, + "c7": 24.78638091979471 }, - "vertexSeeds": { - "c1": 4.19409595538901, - "c2": 4.167262035179717, - "c3": 3.998277496529183, - "c4": 4.348839841494732, - "c5": 4.0860924995630805, - "c6": 4.207119425509729, - "c7": 3.9999343092239332 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [86, 146, 138] }, @@ -158469,23 +158469,23 @@ "year": 1755, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": -1.0968276979532305, - "c2": -36.43004924649691, - "c3": -12.127085392731793, - "c4": 30.050772665154874, - "c5": -33.620366413671675, - "c6": 42.285982074376285, - "c7": 45.05401360422544 + "points": { + "c1": 38.3146053282124, + "c2": 37.37179864436198, + "c3": -27.886546280972656, + "c4": -1.5501118310275075, + "c5": 3.669468886092595, + "c6": 3.4370664651601075, + "c7": -39.775464858003446 }, - "vertexSeeds": { - "c1": 2.751035077967631, - "c2": 2.7698975037557094, - "c3": 2.6451254908208583, - "c4": 2.703596776840402, - "c5": 2.50913946562024, - "c6": 2.6870645985129875, - "c7": 2.752075018692436 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.049930651872398, + "c3": 3.374942209893662, + "c4": 2.699953767914934, + "c5": 2.024965325936199, + "c6": 1.349976883957463, + "c7": 0.6749884419787354 }, "rgb": [58, 15, 49] }, @@ -158496,23 +158496,23 @@ "year": 1755, "resistanceReported": false, "duration": 50371200, - "curveSeeds": { - "c1": 47.24612049105512, - "c2": -60.15572841095182, - "c3": 29.441005513881137, - "c4": -26.31679712448605, - "c5": 31.57213943216722, - "c6": 40.89638234044321, - "c7": 23.749120362323595 + "points": { + "c1": -31.13747185313757, + "c2": 20.80263106876403, + "c3": -28.782580583610695, + "c4": -0.7402352374925414, + "c5": -40.65647603552112, + "c6": 57.691204902707895, + "c7": 65.20917355682761 }, - "vertexSeeds": { - "c1": 0.5224346777022324, - "c2": 0.5090355713014074, - "c3": 0.5441080377004459, - "c4": 0.4897798297353405, - "c5": 0.5047551024704434, - "c6": 0.5037311849947724, - "c7": 0.4955085893972847 + "offsets": { + "c1": 0.9708737864077669, + "c2": 0.8321775312066575, + "c3": 0.693481276005548, + "c4": 0.5547850208044386, + "c5": 0.4160887656033283, + "c6": 0.2773925104022189, + "c7": 0.13869625520110945 }, "rgb": [238, 201, 159] }, @@ -158523,23 +158523,23 @@ "year": 1754, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -0.243461834949656, - "c2": -18.12077860384435, - "c3": -6.772017855524531, - "c4": 4.2572958479185985, - "c5": 19.731299245536952, - "c6": 20.76025243702813, - "c7": -1.2497687228333803 + "points": { + "c1": 10.469302293067884, + "c2": 12.590872408966291, + "c3": -0.47367747210461175, + "c4": 10.681070847792292, + "c5": 1.9547620095928266, + "c6": -29.626370423875862, + "c7": -27.981681920861107 }, - "vertexSeeds": { - "c1": 3.032499489970509, - "c2": 3.049971330624134, - "c3": 3.249978173676976, - "c4": 2.891411866092035, - "c5": 3.0492138886733247, - "c6": 3.282026612490795, - "c7": 2.98881340391489 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958393, + "c3": 3.9990753582986582, + "c4": 3.1992602866389293, + "c5": 2.3994452149791936, + "c6": 1.5996301433194646, + "c7": 0.7998150716597355 }, "rgb": [238, 201, 159] }, @@ -158550,23 +158550,23 @@ "year": 1754, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 13.291783787347377, - "c2": -25.102629980435907, - "c3": 20.098943121166393, - "c4": 40.870950833372405, - "c5": 14.907276577773736, - "c6": 40.13350135051675, - "c7": 29.477798136980823 + "points": { + "c1": -19.068381089455926, + "c2": -15.123200994933022, + "c3": -14.384117574931228, + "c4": -38.454489385791035, + "c5": 9.469174124478116, + "c6": -1.5183866537194888, + "c7": -18.60813427217934 }, - "vertexSeeds": { - "c1": 4.639965321078983, - "c2": 4.934057831488491, - "c3": 4.573407830617104, - "c4": 4.666960135526333, - "c5": 4.723548531693975, - "c6": 5.197699814161467, - "c7": 5.278227981822594 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -158577,23 +158577,23 @@ "year": 1754, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 7.352232285813788, - "c2": 4.8434392221689855, - "c3": -7.487240739047046, - "c4": 12.009649676066381, - "c5": 5.529811506876332, - "c6": 9.758324038148292, - "c7": -19.727801380584516 + "points": { + "c1": 17.94163435163628, + "c2": -21.781619660572, + "c3": -18.674578206526807, + "c4": 5.101664257030496, + "c5": -19.169646083831793, + "c6": 1.068542764387022, + "c7": 4.100986478966288 }, - "vertexSeeds": { - "c1": 2.8988932300416073, - "c2": 2.79997857180682, - "c3": 2.869843538665669, - "c4": 2.9721947086568483, - "c5": 2.966681039891153, - "c6": 2.8934821220316187, - "c7": 2.903375895793871 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.32732316227462, + "c3": 3.606102635228845, + "c4": 2.8848821081830773, + "c5": 2.16366158113731, + "c6": 1.4424410540915427, + "c7": 0.7212205270457674 }, "rgb": [58, 15, 49] }, @@ -158604,23 +158604,23 @@ "year": 1754, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -10.668202440015286, - "c2": 25.529511251824232, - "c3": -2.716157524382922, - "c4": -4.442535286164794, - "c5": 30.258196610860423, - "c6": -6.206429565135842, - "c7": -2.4621764773010355 + "points": { + "c1": -17.704621841067162, + "c2": -10.901607691023681, + "c3": 8.257171810159129, + "c4": 23.157982864655395, + "c5": -19.634427088147067, + "c6": 28.74919523517535, + "c7": -35.65998140344088 }, - "vertexSeeds": { - "c1": 4.9049088954928, - "c2": 4.447637045153366, - "c3": 4.21119162570284, - "c4": 4.946808351101103, - "c5": 5.016098250332119, - "c6": 4.331254330554349, - "c7": 5.2141389859123635 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -158631,23 +158631,23 @@ "year": 1755, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 5.2978455531916, - "c2": -21.224645588672683, - "c3": 36.181922880794204, - "c4": -35.77907054942975, - "c5": 26.493704525704516, - "c6": 8.681090558183463, - "c7": -10.467025626081437 + "points": { + "c1": -21.674537108038184, + "c2": 40.07522830559196, + "c3": -34.271787336334135, + "c4": -40.577370900926866, + "c5": -0.44817864701596477, + "c6": 1.7078958010668757, + "c7": -22.098335954011986 }, - "vertexSeeds": { - "c1": 2.7091241911003077, - "c2": 2.630290541672013, - "c3": 2.7954174873279394, - "c4": 2.7265376805217207, - "c5": 2.6094140788300457, - "c6": 2.7789141672069864, - "c7": 2.5977398203142004 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832175, + "c3": 3.3518261673601484, + "c4": 2.6814609338881166, + "c5": 2.01109570041609, + "c6": 1.3407304669440583, + "c7": 0.6703652334720291 }, "rgb": [77, 76, 132] }, @@ -158658,23 +158658,23 @@ "year": 1754, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -12.741191714194457, - "c2": 6.115464382161669, - "c3": -1.7836544451787617, - "c4": -19.772913860142477, - "c5": -37.35305227238931, - "c6": 26.395592482546284, - "c7": -37.08075365811987 + "points": { + "c1": 19.202023597307587, + "c2": -12.274192454268814, + "c3": -31.12751122252869, + "c4": -14.058788572369949, + "c5": 21.002683284946343, + "c6": -16.822665977331337, + "c7": -22.573493040184072 }, - "vertexSeeds": { - "c1": 4.697455139556478, - "c2": 4.258959423207473, - "c3": 4.304925449276654, - "c4": 4.668592790332738, - "c5": 4.297452709811404, - "c6": 4.089759105761258, - "c7": 4.452061664704963 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.7961165048543695, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271816, + "c6": 2.2653721682847876, + "c7": 1.1326860841423938 }, "rgb": [222, 0, 59] }, @@ -158685,23 +158685,23 @@ "year": 1754, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -6.30133506563935, - "c2": 32.11791522630203, - "c3": -10.453107890842723, - "c4": -15.788216462928766, - "c5": -17.781082786503976, - "c6": 34.321228390887285, - "c7": 8.30650288764842 + "points": { + "c1": -14.206154234483794, + "c2": -15.666692976004402, + "c3": -26.534395465953786, + "c4": 13.448445804459595, + "c5": -1.5053341858582314, + "c6": 25.49403341669047, + "c7": -32.571600380861156 }, - "vertexSeeds": { - "c1": 5.4328441177343425, - "c2": 5.960033615556006, - "c3": 5.528547129822382, - "c4": 5.22539983844319, - "c5": 5.700904815181726, - "c6": 5.423224419479832, - "c7": 5.95336988477322 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192324, + "c4": 5.899214054553863, + "c5": 4.4244105409153915, + "c6": 2.9496070272769317, + "c7": 1.4748035136384605 }, "rgb": [58, 15, 49] }, @@ -158712,23 +158712,23 @@ "year": 1755, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -29.283924614350013, - "c2": 16.950023543570175, - "c3": -16.89732366778577, - "c4": 18.887972420666266, - "c5": 32.068184736861326, - "c6": -31.844583470403496, - "c7": 28.55422313613228 + "points": { + "c1": -23.85253115791675, + "c2": -8.357822821955708, + "c3": -38.81930114711446, + "c4": 29.166736503504453, + "c5": 30.88555012456105, + "c6": 19.559112073551518, + "c7": -16.95488656150939 }, - "vertexSeeds": { - "c1": 6.178045376753834, - "c2": 5.264720818047054, - "c3": 6.088268204831645, - "c4": 5.758690084808817, - "c5": 5.494930363636574, - "c6": 6.054712798925042, - "c7": 5.988991753547721 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152567, + "c3": 7.5589459084604735, + "c4": 6.047156726768371, + "c5": 4.535367545076278, + "c6": 3.0235783633841855, + "c7": 1.5117891816920928 }, "rgb": [77, 76, 132] }, @@ -158739,23 +158739,23 @@ "year": 1755, "resistanceReported": false, "duration": 57628800, - "curveSeeds": { - "c1": -19.862702846274395, - "c2": -56.730790943381905, - "c3": 57.87633588349874, - "c4": 27.275673410449954, - "c5": 10.74927872802347, - "c6": -65.98747604908442, - "c7": -58.3943846030555 + "points": { + "c1": 54.111052618212426, + "c2": -58.972245046953574, + "c3": -47.41261643489054, + "c4": 68.96130524223784, + "c5": -73.06001775910214, + "c6": -24.943485209731826, + "c7": 42.54757406803367 }, - "vertexSeeds": { - "c1": 11.140482127940764, - "c2": 11.251323235280477, - "c3": 11.167751746015593, - "c4": 11.129721786560737, - "c5": 10.452924926184869, - "c6": 10.977395065992056, - "c7": 10.299093244559858 + "offsets": { + "c1": 18.802588996763753, + "c2": 16.11650485436892, + "c3": 13.430420711974124, + "c4": 10.744336569579293, + "c5": 8.05825242718446, + "c6": 5.372168284789664, + "c7": 2.686084142394832 }, "rgb": [238, 201, 159] }, @@ -158766,23 +158766,23 @@ "year": 1754, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 8.95495166748757, - "c2": -14.470635876040019, - "c3": 17.052843093317705, - "c4": 21.821569325729406, - "c5": 4.448419596115691, - "c6": 17.58403221472917, - "c7": -13.51672659935957 + "points": { + "c1": -10.075637212148019, + "c2": -0.7201458822955118, + "c3": 12.418233778519529, + "c4": -1.6393713883806136, + "c5": 5.615755123564199, + "c6": -24.78675798862407, + "c7": 16.509621342238134 }, - "vertexSeeds": { - "c1": 2.9396159959628165, - "c2": 2.989889042910657, - "c3": 2.956860580458437, - "c4": 2.9688632349291653, - "c5": 2.9561973738217975, - "c6": 2.9987375508007634, - "c7": 3.079241796278315 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435511, + "c3": 3.6985668053629155, + "c4": 2.9588534442903356, + "c5": 2.2191400832177557, + "c6": 1.479426722145176, + "c7": 0.7397133610725798 }, "rgb": [222, 0, 59] }, @@ -158793,23 +158793,23 @@ "year": 1755, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -26.140153883308244, - "c2": 44.189495827576046, - "c3": -6.899224298812868, - "c4": 9.078468082159993, - "c5": 6.266087503247178, - "c6": 36.04626249746759, - "c7": 29.750160612775595 + "points": { + "c1": -37.681878553111474, + "c2": -21.96571437151691, + "c3": 11.400680804904063, + "c4": 2.5952071948474043, + "c5": 10.663757578260217, + "c6": 19.850317483750864, + "c7": -16.001061701291054 }, - "vertexSeeds": { - "c1": 5.280278399922906, - "c2": 5.928172769842432, - "c3": 5.664144869226504, - "c4": 5.961238899625011, - "c5": 5.360067481809691, - "c6": 5.548719476814679, - "c7": 6.01122403366827 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790568, + "c3": 7.3509015256588075, + "c4": 5.880721220527046, + "c5": 4.410540915395284, + "c6": 2.940360610263523, + "c7": 1.4701803051317615 }, "rgb": [238, 201, 159] }, @@ -158820,23 +158820,23 @@ "year": 1755, "resistanceReported": false, "duration": 43891200, - "curveSeeds": { - "c1": 50.703590771588026, - "c2": -39.61593277897248, - "c3": 13.148267779681078, - "c4": -29.559320224830152, - "c5": 54.8777253007714, - "c6": 1.976184462601985, - "c7": 46.89075564817989 + "points": { + "c1": -3.581405206018161, + "c2": -59.4511394257324, + "c3": -45.56653037449281, + "c4": 55.32526497969876, + "c5": -39.233093593551956, + "c6": 4.02012957631149, + "c7": 49.43425212146812 }, - "vertexSeeds": { - "c1": 10.832471993927292, - "c2": 9.900632518929957, - "c3": 10.899126924803332, - "c4": 10.128909041757725, - "c5": 9.926799931133163, - "c6": 9.75828020732819, - "c7": 10.446741861512205 + "offsets": { + "c1": 18.802588996763753, + "c2": 16.11650485436893, + "c3": 13.43042071197411, + "c4": 10.744336569579287, + "c5": 8.058252427184465, + "c6": 5.372168284789644, + "c7": 2.686084142394822 }, "rgb": [222, 0, 59] }, @@ -158847,23 +158847,23 @@ "year": 1755, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": -30.613304075102224, - "c2": 17.448866584297747, - "c3": 26.54887818721096, - "c4": -25.278354264634114, - "c5": 29.7022779765596, - "c6": -23.9311523093863, - "c7": -43.53294015000963 + "points": { + "c1": -13.059248791743897, + "c2": -53.89196258554318, + "c3": 51.0524377488093, + "c4": -49.90984176505311, + "c5": -27.24838324815097, + "c6": 2.739457225090078, + "c7": 20.501125478609424 }, - "vertexSeeds": { - "c1": 4.195247929593538, - "c2": 4.364616160745012, - "c3": 4.281729490845467, - "c4": 4.146709378631309, - "c5": 3.94279464240378, - "c6": 4.127697793123499, - "c7": 4.633405685284499 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814147, + "c3": 5.640314378178457, + "c4": 4.512251502542765, + "c5": 3.3841886269070733, + "c6": 2.2561257512713824, + "c7": 1.1280628756356912 }, "rgb": [222, 0, 59] }, @@ -158874,23 +158874,23 @@ "year": 1754, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -6.948694633136046, - "c2": 11.701807023174013, - "c3": -9.079280596284043, - "c4": -6.7192406548923564, - "c5": -25.746040643338112, - "c6": 1.7771026713579658, - "c7": 28.383947774423106 + "points": { + "c1": -34.51998064848819, + "c2": 27.472574255131335, + "c3": -22.43426604013876, + "c4": 36.151050462072604, + "c5": 8.728358971689936, + "c6": 12.256021367468918, + "c7": -10.92851774915773 }, - "vertexSeeds": { - "c1": 4.57650337973449, - "c2": 4.570919712357753, - "c3": 4.959334822800612, - "c4": 4.150316265960623, - "c5": 4.631174366852477, - "c6": 4.542343876646773, - "c7": 4.607734175600857 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457701, + "c3": 6.010171058714747, + "c4": 4.8081368469718, + "c5": 3.6061026352288525, + "c6": 2.4040684234859, + "c7": 1.2020342117429523 }, "rgb": [238, 201, 159] }, @@ -158901,23 +158901,23 @@ "year": 1755, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 16.91923711021728, - "c2": -5.992747164142614, - "c3": -46.897023742157934, - "c4": -22.077124961750485, - "c5": 45.132772521118945, - "c6": 24.808281644325895, - "c7": 28.26584953477832 + "points": { + "c1": 42.57109587842101, + "c2": 15.927745979567014, + "c3": -5.894000045739382, + "c4": 17.130370012782755, + "c5": -46.67363701050272, + "c6": -27.509418671443704, + "c7": -26.800940714357818 }, - "vertexSeeds": { - "c1": 5.225610427992391, - "c2": 5.27712717783739, - "c3": 4.5738072538456604, - "c4": 4.113163051235544, - "c5": 4.839142324400767, - "c6": 4.566838759696034, - "c7": 4.574827326208408 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -158928,23 +158928,23 @@ "year": 1755, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": 23.725636976864052, - "c2": -44.627660753538805, - "c3": 7.005766863789745, - "c4": -5.645018345517272, - "c5": 21.717995410678938, - "c6": 10.582288539055014, - "c7": -16.28085846345391 + "points": { + "c1": 3.211215720279384, + "c2": -19.526093612595727, + "c3": 2.785596472751088, + "c4": -45.68988582371903, + "c5": -37.01954291091062, + "c6": 31.31696680822536, + "c7": 41.26625922552738 }, - "vertexSeeds": { - "c1": 2.935533643229035, - "c2": 3.0437992508022407, - "c3": 2.956620156579071, - "c4": 2.9564016338720305, - "c5": 2.9173198600165504, - "c6": 2.9350805791813803, - "c7": 2.80040928342006 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355062, + "c3": 3.6523347202958854, + "c4": 2.921867776236708, + "c5": 2.191400832177531, + "c6": 1.460933888118354, + "c7": 0.730466944059177 }, "rgb": [58, 15, 49] }, @@ -158955,23 +158955,23 @@ "year": 1754, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 1.7419878163082458, - "c2": 25.13534717290815, - "c3": 3.4334308094377803, - "c4": 18.85449209644374, - "c5": -24.652349280110833, - "c6": -1.5932678466621368, - "c7": -11.550527526182286 + "points": { + "c1": 0.7432998021150041, + "c2": 24.614782602606322, + "c3": -10.393269574461645, + "c4": -5.636925991568603, + "c5": -4.810079933738983, + "c6": 19.9013784371062, + "c7": 27.178247478771997 }, - "vertexSeeds": { - "c1": 0.18604810214661704, - "c2": 0.16981899980242993, - "c3": 0.18980236308903248, - "c4": 0.17908226248689538, - "c5": 0.1698974708438936, - "c6": 0.15612858757838963, - "c7": 0.16825012621114155 + "offsets": { + "c1": 0.3559870550161813, + "c2": 0.305131761442441, + "c3": 0.25427646786870106, + "c4": 0.20342117429496076, + "c5": 0.1525658807212205, + "c6": 0.10171058714748021, + "c7": 0.050855293573740266 }, "rgb": [77, 76, 132] }, @@ -158982,23 +158982,23 @@ "year": 1755, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -24.188425889020216, - "c2": -6.32002542399816, - "c3": -0.19041065872815466, - "c4": 18.146493033319935, - "c5": -22.12729154590323, - "c6": -10.386468655147201, - "c7": 26.385258894715506 + "points": { + "c1": 8.834894212452454, + "c2": -4.060950606083047, + "c3": 33.602087398906946, + "c4": -7.452751841503584, + "c5": -21.438723270378475, + "c6": -16.422833786984448, + "c7": 11.081917923482195 }, - "vertexSeeds": { - "c1": 5.170693695964868, - "c2": 5.50608146009589, - "c3": 4.9959645364252845, - "c4": 5.484353803214462, - "c5": 5.072941202788111, - "c6": 5.186751905450233, - "c7": 5.219273836014421 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [58, 15, 49] }, @@ -159009,23 +159009,23 @@ "year": 1755, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -38.923279009516165, - "c2": 13.494222530723114, - "c3": 26.497000330816043, - "c4": -21.355586929218205, - "c5": -12.552478813015131, - "c6": -34.92748993513483, - "c7": -28.000290166240656 + "points": { + "c1": -29.556987142699853, + "c2": 12.258340685444821, + "c3": -41.307988794940215, + "c4": 11.159768998594664, + "c5": 33.38447139272841, + "c6": -30.572445591912658, + "c7": -20.06441276920857 }, - "vertexSeeds": { - "c1": 4.723351968516786, - "c2": 4.765823888604203, - "c3": 4.657799444187591, - "c4": 4.662297501704899, - "c5": 4.433830090346418, - "c6": 4.259711683770908, - "c7": 4.450425317261495 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [238, 201, 159] }, @@ -159036,23 +159036,23 @@ "year": 1754, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 0.7535155254892345, - "c2": 1.8468167696811406, - "c3": -21.944686398222338, - "c4": 5.35713686744112, - "c5": 29.515572798369433, - "c6": -34.34401186802371, - "c7": -5.287907258873599 + "points": { + "c1": -11.12742412039114, + "c2": 18.766034409435065, + "c3": -28.086937312926167, + "c4": -9.077831475304468, + "c5": 28.343717331355535, + "c6": 16.281629530074795, + "c7": 10.439528310058783 }, - "vertexSeeds": { - "c1": 3.773102635876219, - "c2": 4.024687650081623, - "c3": 3.7796562016952784, - "c4": 4.255858792456528, - "c5": 4.039785456806739, - "c6": 4.341190556458767, - "c7": 3.825318123734405 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309757, + "c4": 4.308830328247802, + "c5": 3.231622746185851, + "c6": 2.154415164123901, + "c7": 1.0772075820619504 }, "rgb": [58, 15, 49] }, @@ -159063,23 +159063,23 @@ "year": 1755, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 24.173007485678816, - "c2": -44.65225937355066, - "c3": -32.18874758272278, - "c4": -21.9526762109149, - "c5": -30.07048375654263, - "c6": -13.67543603350191, - "c7": 36.16160824428095 + "points": { + "c1": 42.864919792188736, + "c2": -11.655410507818054, + "c3": 14.961426351411973, + "c4": 16.75253874312731, + "c5": 23.089283278613344, + "c6": 9.435526704685614, + "c7": -44.74397936807954 }, - "vertexSeeds": { - "c1": 5.2737811791063205, - "c2": 5.084631574790583, - "c3": 5.098951185329562, - "c4": 5.04558702623507, - "c5": 5.150157601214005, - "c6": 5.181339800263503, - "c7": 4.927447179697243 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [222, 0, 59] }, @@ -159090,23 +159090,23 @@ "year": 1755, "resistanceReported": false, "duration": 45878400, - "curveSeeds": { - "c1": 55.97155393570056, - "c2": -30.162475556175732, - "c3": -30.07229790294867, - "c4": -40.823583970153265, - "c5": -36.23982795278623, - "c6": 39.43175775385857, - "c7": -29.59957906203621 + "points": { + "c1": 3.5952251622941063, + "c2": 36.65792335132853, + "c3": -38.57039017514555, + "c4": -54.804716826269484, + "c5": 13.504055650130702, + "c6": -16.295576590439545, + "c7": 31.236640675200483 }, - "vertexSeeds": { - "c1": 6.0800755110045825, - "c2": 6.052144279762904, - "c3": 5.480916208059921, - "c4": 6.020520585739456, - "c5": 5.7607498290826955, - "c6": 5.667017487829853, - "c7": 6.017181576038703 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790575, + "c3": 7.350901525658806, + "c4": 5.88072122052705, + "c5": 4.410540915395281, + "c6": 2.940360610263525, + "c7": 1.4701803051317706 }, "rgb": [86, 146, 138] }, @@ -159117,23 +159117,23 @@ "year": 1755, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 8.846363723232649, - "c2": 36.838539168340354, - "c3": -35.018948636682836, - "c4": -12.512054648024861, - "c5": -2.1810022750301528, - "c6": -20.628921992153323, - "c7": 13.506029056584204 + "points": { + "c1": 23.373452151405836, + "c2": 14.199363304646504, + "c3": 37.673231873543976, + "c4": -17.572202413821845, + "c5": 8.51690482542962, + "c6": 31.31798627502058, + "c7": 32.6445736742422 }, - "vertexSeeds": { - "c1": 4.677050944152905, - "c2": 4.531399199227245, - "c3": 4.7962545450418546, - "c4": 4.447943210790342, - "c5": 4.8286020282294695, - "c6": 4.34686916376764, - "c7": 4.734377639424473 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [238, 201, 159] }, @@ -159144,23 +159144,23 @@ "year": 1754, "resistanceReported": true, "duration": 23500800, - "curveSeeds": { - "c1": -26.635549657728156, - "c2": 16.263161549428034, - "c3": 21.753249219860386, - "c4": 7.995255050189847, - "c5": -7.740376750441939, - "c6": -32.81554162602904, - "c7": 7.437261338540466 + "points": { + "c1": -6.204690268892467, + "c2": 12.206865198399093, + "c3": -11.684222272482273, + "c4": 0.4090665706903991, + "c5": 15.34190193061093, + "c6": 33.25762742228238, + "c7": 13.195617403699089 }, - "vertexSeeds": { - "c1": 1.9945464089749727, - "c2": 2.0334621584472514, - "c3": 2.0139611870243734, - "c4": 1.6787692196052895, - "c5": 1.9018175538780417, - "c6": 1.7344592821352094, - "c7": 2.000087145930716 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635234, + "c3": 2.4503005085529366, + "c4": 1.9602404068423498, + "c5": 1.4701803051317603, + "c6": 0.9801202034211737, + "c7": 0.49006010171058684 }, "rgb": [86, 146, 138] }, @@ -159171,23 +159171,23 @@ "year": 1755, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 16.224619138190135, - "c2": -24.519030122305704, - "c3": -39.41017565430607, - "c4": 39.40823673772293, - "c5": 21.992159146768515, - "c6": 37.937730932134514, - "c7": 28.49032975586097 + "points": { + "c1": 12.293504946358254, + "c2": 17.25574688556774, + "c3": -29.173406628416984, + "c4": 0.9200069025976774, + "c5": -22.2739582893531, + "c6": -13.725398003142764, + "c7": -21.959214007756078 }, - "vertexSeeds": { - "c1": 7.427045273083317, - "c2": 7.0119210503338705, - "c3": 6.883526980940468, - "c4": 6.893343298471473, - "c5": 6.8205500968524095, - "c6": 7.34260490346647, - "c7": 7.0072645621277685 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -159198,23 +159198,23 @@ "year": 1755, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 47.067428470490924, - "c2": -28.883467708936696, - "c3": -43.79606140750672, - "c4": -18.18092551114562, - "c5": 40.185193128460924, - "c6": -15.826425715528458, - "c7": -20.417948283759056 + "points": { + "c1": 44.091167401333365, + "c2": -30.937636077519244, + "c3": -9.837163029428865, + "c4": 21.2215182827739, + "c5": 13.110459533409767, + "c6": -6.989208980118391, + "c7": -20.274261508059517 }, - "vertexSeeds": { - "c1": 5.1261609477986845, - "c2": 4.770727539433339, - "c3": 4.870464028311079, - "c4": 4.925753010304898, - "c5": 4.801894813835019, - "c6": 5.0606279447560505, - "c7": 4.972134004393275 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699023, + "c3": 6.148867313915867, + "c4": 4.919093851132689, + "c5": 3.6893203883495116, + "c6": 2.4595469255663445, + "c7": 1.2297734627831776 }, "rgb": [77, 76, 132] }, @@ -159225,23 +159225,23 @@ "year": 1755, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 31.663860266013323, - "c2": 42.94335621897272, - "c3": -8.207518457813656, - "c4": 28.377762166445727, - "c5": 22.042218139748748, - "c6": 29.023968506860008, - "c7": 15.043201507847435 + "points": { + "c1": -4.856644773767698, + "c2": -16.857343630890192, + "c3": 44.5128186363609, + "c4": -0.8469348712213645, + "c5": -37.67052410644793, + "c6": 22.560765687114163, + "c7": -5.13448178473147 }, - "vertexSeeds": { - "c1": 5.322747987175861, - "c2": 5.458262668616552, - "c3": 4.980116204723773, - "c4": 5.155430711479941, - "c5": 4.6799752543366555, - "c6": 5.2339453680335115, - "c7": 5.341491575596699 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342574, + "c3": 6.518723994452151, + "c4": 5.214979195561717, + "c5": 3.9112343966712935, + "c6": 2.6074895977808583, + "c7": 1.3037447988904354 }, "rgb": [77, 76, 132] }, @@ -159252,23 +159252,23 @@ "year": 1755, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": -13.225077232326214, - "c2": -6.5439670499952385, - "c3": -26.087227011163648, - "c4": 3.1988080767095823, - "c5": -42.8732535514535, - "c6": -19.188221529156785, - "c7": 47.742701069959026 + "points": { + "c1": 9.107920080149924, + "c2": -31.541615606650495, + "c3": 50.78664375179753, + "c4": 10.241164731313013, + "c5": -23.301364289553824, + "c6": 31.99912336762003, + "c7": -34.17659511178718 }, - "vertexSeeds": { - "c1": 6.406197176215178, - "c2": 6.237483820618179, - "c3": 6.308613770447549, - "c4": 6.348481759014518, - "c5": 6.349805287671203, - "c6": 6.034747286480795, - "c7": 6.286237102355716 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.2371705963939, + "c3": 7.697642163661587, + "c4": 6.158113730929274, + "c5": 4.6185852981969395, + "c6": 3.0790568654646266, + "c7": 1.5395284327323133 }, "rgb": [238, 201, 159] }, @@ -159279,23 +159279,23 @@ "year": 1755, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": 27.456885378145962, - "c2": -0.9837147715370733, - "c3": -21.82314566452556, - "c4": 2.0911934738284046, - "c5": 26.432602858243904, - "c6": 46.021712261930325, - "c7": 19.78946899686101 + "points": { + "c1": 33.43461938697397, + "c2": -11.425403612327308, + "c3": -27.03696604121884, + "c4": -24.769603012491103, + "c5": 24.49941593383867, + "c6": 10.581015494650927, + "c7": -47.00023070430734 }, - "vertexSeeds": { - "c1": 4.664837925764683, - "c2": 4.409425119083559, - "c3": 4.596967638135597, - "c4": 4.388924784648057, - "c5": 4.757328226644889, - "c6": 4.709292343233287, - "c7": 4.668325412513979 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337029, + "c3": 5.940822931114194, + "c4": 4.752658344891352, + "c5": 3.5644937586685113, + "c6": 2.376329172445676, + "c7": 1.1881645862228347 }, "rgb": [58, 15, 49] }, @@ -159306,23 +159306,23 @@ "year": 1755, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": -14.780184742229075, - "c2": -28.1630230411227, - "c3": -25.10985380706934, - "c4": -31.390681312312797, - "c5": -19.230629321821397, - "c6": -36.969753701560876, - "c7": -0.8630040099665521 + "points": { + "c1": 48.40933167906921, + "c2": 36.44165197292271, + "c3": 22.87887460562932, + "c4": -2.9279994169998034, + "c5": 12.212700352287463, + "c6": 17.508924819741026, + "c7": 24.877683516233773 }, - "vertexSeeds": { - "c1": 3.619639835678283, - "c2": 3.834049145877783, - "c3": 3.8883391295819485, - "c4": 4.131999227917802, - "c5": 3.9213715512417955, - "c6": 3.920236773560773, - "c7": 3.811178959883962 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647709, + "c3": 4.969949144706427, + "c4": 3.9759593157651394, + "c5": 2.9819694868238575, + "c6": 1.9879796578825697, + "c7": 0.993989828941288 }, "rgb": [238, 201, 159] }, @@ -159333,23 +159333,23 @@ "year": 1755, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -24.15135923687502, - "c2": -35.41898145970359, - "c3": -19.528533101056535, - "c4": 16.298307075742535, - "c5": -28.338178844462607, - "c6": -5.497349720122791, - "c7": -30.15482165741999 + "points": { + "c1": 18.49998170538833, + "c2": -6.856142848104348, + "c3": 4.741924043405028, + "c4": -30.275218662471502, + "c5": -36.86803530671678, + "c6": -28.21570274491637, + "c7": 42.45290581518949 }, - "vertexSeeds": { - "c1": 0.798049904944675, - "c2": 0.8332282212950238, - "c3": 0.8076038704997783, - "c4": 0.9136322737423882, - "c5": 0.9212539341000245, - "c6": 0.9226240123895753, - "c7": 0.9024757372642236 + "offsets": { + "c1": 1.715210355987055, + "c2": 1.4701803051317617, + "c3": 1.2251502542764685, + "c4": 0.9801202034211742, + "c5": 0.7350901525658808, + "c6": 0.4900601017105876, + "c7": 0.24503005085529328 }, "rgb": [222, 0, 59] }, @@ -159360,23 +159360,23 @@ "year": 1754, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -15.689785280068126, - "c2": 15.510461918369018, - "c3": 1.1927527271330192, - "c4": 14.228691781475007, - "c5": -28.128281257720325, - "c6": 20.98296100368257, - "c7": 17.2022486240705 + "points": { + "c1": -35.089035726475004, + "c2": -31.465760865684715, + "c3": 1.8028157428686171, + "c4": 26.82496208785868, + "c5": -22.624596368366817, + "c6": 22.77416271435333, + "c7": 21.270833119320635 }, - "vertexSeeds": { - "c1": 2.230605834509107, - "c2": 2.3398071023979985, - "c3": 2.209162952394226, - "c4": 2.1381160374797994, - "c5": 2.2823220121730596, - "c6": 2.1546671459299946, - "c7": 2.333564615316361 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [58, 15, 49] }, @@ -159387,23 +159387,23 @@ "year": 1754, "resistanceReported": true, "duration": 18403200, - "curveSeeds": { - "c1": -27.78137998341328, - "c2": 18.866125042347893, - "c3": -3.7677455921444363, - "c4": -19.98361969839209, - "c5": -3.4719792294091576, - "c6": -2.2128395809948174, - "c7": -1.3442409450937802 + "points": { + "c1": -21.648769060502634, + "c2": 1.1280685130486603, + "c3": -8.170138351147486, + "c4": -24.93036252151948, + "c5": 5.102530812666949, + "c6": 32.09361024026532, + "c7": 14.949186460645059 }, - "vertexSeeds": { - "c1": 1.503685588460119, - "c2": 1.5400746828147913, - "c3": 1.550624099756442, - "c4": 1.7006288829921363, - "c5": 1.7178503938973557, - "c6": 1.7161982184804596, - "c7": 1.511552749325284 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.718446601941747, + "c3": 2.2653721682847903, + "c4": 1.8122977346278317, + "c5": 1.3592233009708734, + "c6": 0.9061488673139149, + "c7": 0.4530744336569585 }, "rgb": [77, 76, 132] }, @@ -159414,23 +159414,23 @@ "year": 1755, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -6.505696755894505, - "c2": 15.177976453761175, - "c3": 18.354644645045063, - "c4": 1.8698213668678676, - "c5": 12.784754685254377, - "c6": -34.206485209961585, - "c7": 19.21200028615381 + "points": { + "c1": -34.92861111554612, + "c2": -14.25865758905356, + "c3": 38.22413891009779, + "c4": -9.545562196277547, + "c5": 30.274148650758846, + "c6": 29.98594114824911, + "c7": -35.06813339855113 }, - "vertexSeeds": { - "c1": 4.269441528771457, - "c2": 4.029561936756114, - "c3": 4.427609122545875, - "c4": 4.481219826398818, - "c5": 3.888621755770396, - "c6": 4.709761848168417, - "c7": 4.800786637719733 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618584, + "c3": 6.102635228848821, + "c4": 4.882108183079056, + "c5": 3.6615811373092937, + "c6": 2.441054091539528, + "c7": 1.220527045769762 }, "rgb": [86, 146, 138] }, @@ -159441,23 +159441,23 @@ "year": 1755, "resistanceReported": false, "duration": 47779200, - "curveSeeds": { - "c1": -41.319507826400724, - "c2": -37.14694194683133, - "c3": -22.442358234795194, - "c4": 22.54789802201357, - "c5": -32.301826723496895, - "c6": -11.215004437388906, - "c7": -27.174721111851916 + "points": { + "c1": -60.43275478132531, + "c2": -0.3005923173814722, + "c3": -25.47421800809846, + "c4": -22.68123573182008, + "c5": 46.85572543394895, + "c6": 2.9369024645205286, + "c7": 23.731949486175566 }, - "vertexSeeds": { - "c1": 10.393747794969794, - "c2": 10.447563288698802, - "c3": 10.414671110267841, - "c4": 10.429679984893394, - "c5": 10.246583784842382, - "c6": 10.343536928541726, - "c7": 10.304353177806416 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.979195561719903, + "c3": 12.482662968099838, + "c4": 9.986130374479936, + "c5": 7.48959778085987, + "c6": 4.993065187239968, + "c7": 2.4965325936200666 }, "rgb": [222, 0, 59] }, @@ -159468,23 +159468,23 @@ "year": 1754, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -17.928641369946167, - "c2": 25.56516893230455, - "c3": 1.1436514176349633, - "c4": -12.03759849797682, - "c5": -17.040866790835796, - "c6": -0.2768416432133165, - "c7": -28.732715912831637 + "points": { + "c1": 32.12448207552082, + "c2": 25.53170218252931, + "c3": -26.037400977551684, + "c4": 13.760957868653925, + "c5": -36.24831153629796, + "c6": 23.915811160766786, + "c7": 33.74372896199367 }, - "vertexSeeds": { - "c1": 4.251165942358735, - "c2": 5.045613182980899, - "c3": 4.691460917149964, - "c4": 4.642035742838221, - "c5": 4.545866623325049, - "c6": 4.558050034612884, - "c7": 4.9805305153735215 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.23994452149792, + "c3": 6.033287101248268, + "c4": 4.826629680998612, + "c5": 3.61997226074896, + "c6": 2.4133148404993086, + "c7": 1.2066574202496567 }, "rgb": [77, 76, 132] }, @@ -159495,23 +159495,23 @@ "year": 1755, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 9.128305757802508, - "c2": -8.734534971574753, - "c3": 12.91667776432589, - "c4": -14.405683006794124, - "c5": -10.311650966522066, - "c6": 34.876154980327144, - "c7": -20.285763317264816 + "points": { + "c1": 7.563456346809467, + "c2": -22.96455426959912, + "c3": 36.86676332246664, + "c4": -11.6512142726509, + "c5": 11.675221962341666, + "c6": -22.538646588529165, + "c7": -9.661158433464081 }, - "vertexSeeds": { - "c1": 6.5757720172845024, - "c2": 6.689657388709012, - "c3": 6.3982046543823206, - "c4": 6.435370774782632, - "c5": 5.8932779054271425, - "c6": 5.949336950808373, - "c7": 6.480838874748156 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -159522,23 +159522,23 @@ "year": 1755, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -9.745974293382009, - "c2": -31.74425534068158, - "c3": -2.0739206704871904, - "c4": -1.7978887003601614, - "c5": -38.62101175922476, - "c6": -6.481734808997061, - "c7": -31.136615016140006 + "points": { + "c1": -25.893876671113762, + "c2": -37.9850840724524, + "c3": 38.738291396691736, + "c4": 35.24259373934882, + "c5": -12.840279235975082, + "c6": -20.615130949951396, + "c7": -2.4398105385080555 }, - "vertexSeeds": { - "c1": 5.469868225136373, - "c2": 5.43283745106004, - "c3": 5.906933875371164, - "c4": 5.474243391967139, - "c5": 5.584000032936718, - "c6": 5.884430173110863, - "c7": 5.795505597537693 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307916, + "c3": 7.073509015256586, + "c4": 5.658807212205278, + "c5": 4.244105409153947, + "c6": 2.829403606102639, + "c7": 1.4147018030513088 }, "rgb": [222, 0, 59] }, @@ -159549,23 +159549,23 @@ "year": 1755, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -10.246939582623543, - "c2": 10.056649217418055, - "c3": 27.46587762166704, - "c4": -31.839846915558407, - "c5": 25.687977620497897, - "c6": -12.308241875269935, - "c7": 3.3915981221215645 + "points": { + "c1": -38.78243253614998, + "c2": -7.27636374185348, + "c3": 22.247906603157425, + "c4": -5.589508560519498, + "c5": 35.15149673659632, + "c6": 39.36691191334938, + "c7": 23.945962009601182 }, - "vertexSeeds": { - "c1": 3.7935477181154735, - "c2": 3.3967743883304213, - "c3": 3.6615330716704038, - "c4": 3.398830111361532, - "c5": 3.4455399214281743, - "c6": 3.613228055149027, - "c7": 3.825095062893407 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [77, 76, 132] }, @@ -159576,23 +159576,23 @@ "year": 1754, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -0.7648582281321801, - "c2": -29.406067716752258, - "c3": -0.6892982645303967, - "c4": 7.6258807073005315, - "c5": 23.947291642024354, - "c6": -22.947532173140644, - "c7": -1.437310775452282 + "points": { + "c1": 27.674602584932096, + "c2": 10.129786754840715, + "c3": 10.517428695408547, + "c4": -18.99847221563622, + "c5": -1.0839134556362353, + "c6": 12.540786676144918, + "c7": -16.201420918677357 }, - "vertexSeeds": { - "c1": 4.072305972843166, - "c2": 4.225969278046673, - "c3": 4.137464277715863, - "c4": 4.057269860236827, - "c5": 4.108609212227225, - "c6": 4.220543845182951, - "c7": 4.158303724027428 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [86, 146, 138] }, @@ -159603,23 +159603,23 @@ "year": 1754, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -23.10845994226392, - "c2": 3.7629862462383983, - "c3": -18.309864996751514, - "c4": -13.834621565277216, - "c5": 8.364322728185744, - "c6": -7.798210997461641, - "c7": -11.062019663591888 + "points": { + "c1": -13.836296579717832, + "c2": -21.42086508492304, + "c3": 15.435020201947953, + "c4": -18.181833320911814, + "c5": -14.417952421864761, + "c6": 19.628596541392692, + "c7": -22.120267238566612 }, - "vertexSeeds": { - "c1": 3.147682643550144, - "c2": 3.142563455133749, - "c3": 3.100987300536041, - "c4": 2.96591270735618, - "c5": 2.923492085426945, - "c6": 3.0909954581520034, - "c7": 3.2431506419825196 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -159630,23 +159630,23 @@ "year": 1755, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 28.40817001455394, - "c2": 28.48697867933442, - "c3": 12.715300794405465, - "c4": 9.689770933536941, - "c5": 26.903944888394385, - "c6": 4.9089029797381585, - "c7": -9.330376350661485 + "points": { + "c1": 29.15653927735815, + "c2": -2.6734268932328007, + "c3": -34.842535279290445, + "c4": 16.710090762174488, + "c5": -0.7500227997261106, + "c6": 10.624364110633465, + "c7": 21.78642450361216 }, - "vertexSeeds": { - "c1": 8.698139289962382, - "c2": 9.124874757016697, - "c3": 9.341892126045508, - "c4": 8.805564254114872, - "c5": 9.229228179036848, - "c6": 8.681313607187203, - "c7": 9.225975310431645 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789185, + "c3": 11.373092926490992, + "c4": 9.098474341192786, + "c5": 6.823855755894592, + "c6": 4.549237170596399, + "c7": 2.2746185852981933 }, "rgb": [86, 146, 138] }, @@ -159657,23 +159657,23 @@ "year": 1755, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -8.909668946550163, - "c2": 3.1034705882018656, - "c3": -12.286179863242328, - "c4": 7.735384880684435, - "c5": -10.223286102051766, - "c6": -35.57747906688891, - "c7": 31.024574477497183 + "points": { + "c1": -43.097271762610454, + "c2": -34.68650693782361, + "c3": -6.853855752670739, + "c4": -18.360317718152658, + "c5": -20.55520574373621, + "c6": 32.306342488775044, + "c7": 6.06003113705755 }, - "vertexSeeds": { - "c1": 5.419603774622778, - "c2": 5.604763359638376, - "c3": 5.309503275100201, - "c4": 5.341411957975411, - "c5": 5.479463643371491, - "c6": 5.291619500964263, - "c7": 5.8739794313667915 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [86, 146, 138] }, @@ -159684,23 +159684,23 @@ "year": 1755, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -23.60419514791242, - "c2": 10.630598406129806, - "c3": 6.248432698315845, - "c4": 19.216037552526963, - "c5": -10.700968322578941, - "c6": -33.37142358749219, - "c7": -21.220298958412656 + "points": { + "c1": 13.533706758066828, + "c2": -8.572806534599003, + "c3": -20.24906265591879, + "c4": -32.579991085171216, + "c5": 18.78172436018275, + "c6": 32.703645215066345, + "c7": -22.069205040347057 }, - "vertexSeeds": { - "c1": 1.3024055444408618, - "c2": 1.4212441332513601, - "c3": 1.433252091612746, - "c4": 1.3079825219672085, - "c5": 1.4287359254458345, - "c6": 1.268706554687747, - "c7": 1.3432771871682516 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166417, + "c3": 1.73370319001387, + "c4": 1.3869625520110944, + "c5": 1.0402219140083229, + "c6": 0.6934812760055472, + "c7": 0.3467406380027717 }, "rgb": [58, 15, 49] }, @@ -159711,23 +159711,23 @@ "year": 1755, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -6.212155908546997, - "c2": 9.32768690804565, - "c3": 15.083964048426672, - "c4": -15.929029099578322, - "c5": -33.90375480390072, - "c6": 15.50979412669826, - "c7": -10.128128782638683 + "points": { + "c1": 21.41638116191021, + "c2": -31.91153899894792, + "c3": -8.332298534917797, + "c4": -34.1108834466908, + "c5": -35.26896071980113, + "c6": 5.754225717677059, + "c7": 20.06881636505635 }, - "vertexSeeds": { - "c1": 5.446452628089976, - "c2": 5.115907290763611, - "c3": 5.180715662115464, - "c4": 5.05992970313725, - "c5": 5.172742493408898, - "c6": 5.575309015265118, - "c7": 5.4141880798011 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055476, + "c4": 5.5478502080443866, + "c5": 4.1608876560332835, + "c6": 2.7739251040221933, + "c7": 1.3869625520111029 }, "rgb": [222, 0, 59] }, @@ -159738,23 +159738,23 @@ "year": 1754, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -11.140475737947174, - "c2": 21.141396364679842, - "c3": 12.883962662504885, - "c4": -14.338140698199226, - "c5": -25.95795911367454, - "c6": -2.8785324988078855, - "c7": 4.648317381216721 + "points": { + "c1": 19.228353320130687, + "c2": 10.286469104233198, + "c3": 17.686327634422277, + "c4": -16.532727006218714, + "c5": 28.211205463710222, + "c6": -13.24871030242112, + "c7": -11.804501963331997 }, - "vertexSeeds": { - "c1": 4.948367191937375, - "c2": 4.582513753477775, - "c3": 4.976173990954054, - "c4": 4.6479495634165495, - "c5": 4.715142401081817, - "c6": 4.576185371495414, - "c7": 4.803993155148639 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859916, + "c3": 6.2413314840499305, + "c4": 4.993065187239944, + "c5": 3.744798890429958, + "c6": 2.496532593619972, + "c7": 1.248266296809986 }, "rgb": [222, 0, 59] }, @@ -159765,23 +159765,23 @@ "year": 1755, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -6.207321104321089, - "c2": -19.08273385905211, - "c3": 17.541387878041064, - "c4": -0.029032677468840973, - "c5": -27.63319112158926, - "c6": 35.48047244639645, - "c7": 13.270112517702366 + "points": { + "c1": 15.501810413305378, + "c2": -38.657204318506885, + "c3": 29.878266948418656, + "c4": 15.139547117005414, + "c5": 10.702525375894027, + "c6": 35.710912630801104, + "c7": 24.836636758395656 }, - "vertexSeeds": { - "c1": 4.370614740908191, - "c2": 4.582394150052167, - "c3": 4.734431850939705, - "c4": 4.74000592204615, - "c5": 4.546651168675634, - "c6": 4.227419032766593, - "c7": 4.552180145966005 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [58, 15, 49] }, @@ -159792,23 +159792,23 @@ "year": 1756, "resistanceReported": false, "duration": 57888000, - "curveSeeds": { - "c1": 59.361513018008154, - "c2": 8.358480246190936, - "c3": 28.378210501855435, - "c4": 47.678441231350746, - "c5": -16.306393222580652, - "c6": 5.0555946993304275, - "c7": -55.8703160798065 + "points": { + "c1": -17.78945720698532, + "c2": 56.469840925603236, + "c3": -11.051578127900754, + "c4": 3.3014105672403105, + "c5": -60.68827540767196, + "c6": -73.43885166348869, + "c7": -22.464585419798482 }, - "vertexSeeds": { - "c1": 5.449952544543802, - "c2": 5.699013345181244, - "c3": 5.544380113543466, - "c4": 5.882429909755222, - "c5": 5.269896627018616, - "c6": 5.274699465056044, - "c7": 5.369806005081842 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [86, 146, 138] }, @@ -159819,23 +159819,23 @@ "year": 1755, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -4.316983692564975, - "c2": -12.540845507509403, - "c3": 31.17516183247939, - "c4": -15.108861128504735, - "c5": -22.265660153557686, - "c6": 33.97354076763088, - "c7": -30.017099800396856 + "points": { + "c1": 14.326867915982447, + "c2": -28.488453483297487, + "c3": -33.22688650651085, + "c4": 1.2111890402040046, + "c5": -16.624021802061254, + "c6": 17.743924265146788, + "c7": 21.12233630940525 }, - "vertexSeeds": { - "c1": 6.809697881091779, - "c2": 6.007438163669557, - "c3": 5.862663238734744, - "c4": 6.087461161703285, - "c5": 6.096915647728444, - "c6": 6.678988816619412, - "c7": 6.4871858704975764 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158115, + "c3": 8.136846971798429, + "c4": 6.509477577438743, + "c5": 4.882108183079057, + "c6": 3.2547387887193713, + "c7": 1.6273693943596856 }, "rgb": [77, 76, 132] }, @@ -159846,23 +159846,23 @@ "year": 1755, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 24.848131005906794, - "c2": 19.01047184137721, - "c3": -8.5050454735727, - "c4": 31.308799812939718, - "c5": 15.18651791207536, - "c6": -18.324473453400408, - "c7": -9.446111769278392 + "points": { + "c1": -22.91195965415094, + "c2": 3.2440652538279124, + "c3": 23.93838405550583, + "c4": -21.601161158808818, + "c5": -4.022781333153155, + "c6": -9.555538376022223, + "c7": -32.438027763904024 }, - "vertexSeeds": { - "c1": 5.765106817507618, - "c2": 5.89592166082157, - "c3": 5.472990212080694, - "c4": 5.263941807658238, - "c5": 5.943490513445706, - "c6": 5.511321495712405, - "c7": 5.926927148734511 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549232, + "c3": 7.212205270457698, + "c4": 5.769764216366154, + "c5": 4.327323162274622, + "c6": 2.884882108183077, + "c7": 1.4424410540915449 }, "rgb": [77, 76, 132] }, @@ -159873,23 +159873,23 @@ "year": 1755, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 31.53731463617683, - "c2": 41.2291347756758, - "c3": -14.544480974109227, - "c4": -6.03612259097946, - "c5": -43.600990132997225, - "c6": -10.459984233839485, - "c7": -32.99397942337363 + "points": { + "c1": -7.336750101545597, + "c2": -16.256847890080763, + "c3": 41.46505064168096, + "c4": -51.539669391602985, + "c5": 13.407543206851543, + "c6": 20.405231124082675, + "c7": 24.92200815128919 }, - "vertexSeeds": { - "c1": 3.912419513647513, - "c2": 3.9657325396345002, - "c3": 3.5913418205287555, - "c4": 3.691255869881051, - "c5": 3.5881836938979634, - "c6": 3.7635533780752564, - "c7": 4.0248094773173175 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [86, 146, 138] }, @@ -159900,23 +159900,23 @@ "year": 1755, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": 40.73133894804509, - "c2": 36.80144267915648, - "c3": -24.85604469783376, - "c4": 7.641707067716801, - "c5": 43.29717750075601, - "c6": 54.18361122835152, - "c7": 46.57745280012479 + "points": { + "c1": -11.254522982291036, + "c2": 13.294565897740483, + "c3": 6.944573676818074, + "c4": -44.25386883248309, + "c5": 27.250930713900416, + "c6": -25.584249972824004, + "c7": 54.17550401537075 }, - "vertexSeeds": { - "c1": 2.149706203490879, - "c2": 2.0407528904627834, - "c3": 2.198987521695506, - "c4": 2.113745847475871, - "c5": 2.3484043528357526, - "c6": 2.264497166937957, - "c7": 2.317545552981174 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779472952, + "c3": 2.8432732316227463, + "c4": 2.274618585298197, + "c5": 1.7059639389736476, + "c6": 1.1373092926490984, + "c7": 0.5686546463245492 }, "rgb": [86, 146, 138] }, @@ -159927,23 +159927,23 @@ "year": 1755, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -29.970376688978146, - "c2": -17.523892366682478, - "c3": 32.92118967190615, - "c4": 33.99101356203042, - "c5": -8.38095029648943, - "c6": 19.78094435142561, - "c7": -38.692195975059974 + "points": { + "c1": 20.318711989918697, + "c2": -2.835899279404792, + "c3": 34.66200839489474, + "c4": 30.260553675199517, + "c5": -38.04576280640238, + "c6": -38.44270104782224, + "c7": -28.461393323576388 }, - "vertexSeeds": { - "c1": 4.125317648729398, - "c2": 4.027921579893471, - "c3": 4.300976465259875, - "c4": 4.101239782514635, - "c5": 4.296576759712638, - "c6": 4.342177615668623, - "c7": 4.060720856461721 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572815, + "c3": 5.501618122977347, + "c4": 4.401294498381877, + "c5": 3.3009708737864076, + "c6": 2.2006472491909386, + "c7": 1.1003236245954693 }, "rgb": [222, 0, 59] }, @@ -159954,23 +159954,23 @@ "year": 1755, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": 39.5830044041112, - "c2": -16.589334478362716, - "c3": 21.852696149711058, - "c4": -2.75710080076945, - "c5": 16.376702968880203, - "c6": -33.99341130696368, - "c7": -44.25903492438552 + "points": { + "c1": -47.804748631785166, + "c2": 41.62805286962712, + "c3": -14.953592414210092, + "c4": -13.896329695350211, + "c5": 46.498609715874046, + "c6": 38.570023355966704, + "c7": 27.543878685523445 }, - "vertexSeeds": { - "c1": 2.952850214383609, - "c2": 3.072691233168139, - "c3": 3.120683664645599, - "c4": 3.281143560248585, - "c5": 2.9312590006883434, - "c6": 3.028243611313954, - "c7": 3.2035565128415957 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -159981,23 +159981,23 @@ "year": 1755, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 24.322098104796268, - "c2": -7.211321217831145, - "c3": 8.266894176743541, - "c4": 27.722943679312138, - "c5": -11.068465580294369, - "c6": 3.749885784383899, - "c7": 11.30141627775766 + "points": { + "c1": 33.140203349537614, + "c2": 4.720351940792696, + "c3": 1.873106282664736, + "c4": 20.304748308953855, + "c5": -16.373311565575012, + "c6": -30.032048116152897, + "c7": 1.8832114715719896 }, - "vertexSeeds": { - "c1": 1.9426336692119286, - "c2": 1.7971194445483354, - "c3": 1.8718911134818326, - "c4": 1.8822176859907138, - "c5": 1.929460410106816, - "c6": 1.8106890376319074, - "c7": 1.9171847262559116 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [222, 0, 59] }, @@ -160008,23 +160008,23 @@ "year": 1755, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 18.079265463962535, - "c2": -0.6856671972641522, - "c3": -17.036281611520415, - "c4": 0.8525643596449228, - "c5": 25.17780208905684, - "c6": -30.486000318186818, - "c7": 32.928463678478934 + "points": { + "c1": -2.7746007155832118, + "c2": 22.824727611517986, + "c3": -6.281179833470553, + "c4": 8.280041738005039, + "c5": -19.98589815772357, + "c6": -32.1112331547114, + "c7": -35.66103697962683 }, - "vertexSeeds": { - "c1": 5.393639731198322, - "c2": 5.874342121399697, - "c3": 6.1699042796289705, - "c4": 5.648111574039762, - "c5": 5.638573339442644, - "c6": 5.735386725901792, - "c7": 5.6755614363191755 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911234, + "c3": 7.420249653259362, + "c4": 5.936199722607489, + "c5": 4.452149791955617, + "c6": 2.9680998613037444, + "c7": 1.4840499306518722 }, "rgb": [58, 15, 49] }, @@ -160035,23 +160035,23 @@ "year": 1755, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -6.555052207582349, - "c2": -4.015591101276293, - "c3": 21.639215189122012, - "c4": 27.899858806268526, - "c5": 40.73479926535815, - "c6": 15.022257954220066, - "c7": -27.136277168357847 + "points": { + "c1": -34.75658222102134, + "c2": -36.50722644963728, + "c3": -30.456155838696596, + "c4": 30.90848580183534, + "c5": 32.4057789815088, + "c6": -20.28144333062436, + "c7": -16.541753642908965 }, - "vertexSeeds": { - "c1": 4.315059751664466, - "c2": 4.046200610694441, - "c3": 3.9904284253210185, - "c4": 4.209622109922877, - "c5": 4.302272779902977, - "c6": 4.301167602023995, - "c7": 4.250347385191175 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545073, + "c6": 2.0896902450300487, + "c7": 1.0448451225150244 }, "rgb": [238, 201, 159] }, @@ -160062,23 +160062,23 @@ "year": 1755, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": -38.86021028808819, - "c2": 53.76361490692885, - "c3": -19.667169224824697, - "c4": -19.38855436493133, - "c5": -34.02095028295429, - "c6": 39.455995381222536, - "c7": -33.19540868430293 + "points": { + "c1": -27.48959870678982, + "c2": 7.1906234336887564, + "c3": -15.960568132562798, + "c4": -36.192416185080376, + "c5": -32.39870898083826, + "c6": -1.1387478496532069, + "c7": 49.020068600021816 }, - "vertexSeeds": { - "c1": 3.302421660624211, - "c2": 3.771268288924341, - "c3": 5.142334415384432, - "c4": 5.2486865486905465, - "c5": 3.192939726962643, - "c6": 5.5315302475641595, - "c7": 3.7753251618044787 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704577, + "c3": 6.726768377253815, + "c4": 5.381414701803052, + "c5": 4.0360610263522885, + "c6": 2.690707350901526, + "c7": 1.345353675450763 }, "rgb": [238, 201, 159] }, @@ -160089,23 +160089,23 @@ "year": 1755, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 3.7342558929331986, - "c2": -12.043925631419167, - "c3": -12.527931391945746, - "c4": -27.536240613181967, - "c5": 29.685350271024753, - "c6": 26.024271758037308, - "c7": -6.565503894253567 + "points": { + "c1": 26.972058208092584, + "c2": 24.478217184720528, + "c3": 23.04452762628202, + "c4": -19.915230629662155, + "c5": 29.02889692801346, + "c6": 6.636245187231538, + "c7": 2.4201288612975773 }, - "vertexSeeds": { - "c1": 5.218110431762434, - "c2": 6.3761341097122735, - "c3": 5.82227460268743, - "c4": 6.010210801138191, - "c5": 5.291521319544843, - "c6": 5.6705197384658685, - "c7": 5.627345300236435 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554784, + "c3": 7.790106333795654, + "c4": 6.232085067036523, + "c5": 4.674063800277392, + "c6": 3.1160425335182613, + "c7": 1.5580212667591307 }, "rgb": [222, 0, 59] }, @@ -160116,23 +160116,23 @@ "year": 1755, "resistanceReported": false, "duration": 39225600, - "curveSeeds": { - "c1": -18.669711567711687, - "c2": -38.311389715829065, - "c3": -51.0158128001164, - "c4": -49.623645830989375, - "c5": 24.04801780151896, - "c6": -14.358304150291275, - "c7": -27.569824811912504 + "points": { + "c1": 5.513859277766564, + "c2": -54.35169159774226, + "c3": -46.257361552602035, + "c4": -22.015859345437754, + "c5": 5.777120379119644, + "c6": 0.6200309873492316, + "c7": -33.79636036997976 }, - "vertexSeeds": { - "c1": 4.026865038086717, - "c2": 3.696958617718037, - "c3": 3.7243931211525227, - "c4": 3.6315277712516036, - "c5": 3.930560416907699, - "c6": 3.6686631305691817, - "c7": 3.797315790616156 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [222, 0, 59] }, @@ -160143,23 +160143,23 @@ "year": 1755, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 37.78257444222771, - "c2": -29.705675666248524, - "c3": -40.2609185575068, - "c4": -13.676996688580733, - "c5": -4.215314353116632, - "c6": 35.13338022195049, - "c7": 10.235907961314965 + "points": { + "c1": -44.41515943719524, + "c2": -19.439022372898286, + "c3": -37.331035079945465, + "c4": 25.584043583462588, + "c5": 26.304946949536003, + "c6": -30.533523660694165, + "c7": 40.21415036276892 }, - "vertexSeeds": { - "c1": 8.964720638292542, - "c2": 8.871787487696603, - "c3": 9.022657458735909, - "c4": 9.02221728899347, - "c5": 8.90985378393716, - "c6": 8.892727255331161, - "c7": 8.805393339626411 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743442, + "c3": 10.7720758206195, + "c4": 8.617660656495628, + "c5": 6.463245492371688, + "c6": 4.308830328247814, + "c7": 2.1544151641238742 }, "rgb": [77, 76, 132] }, @@ -160170,23 +160170,23 @@ "year": 1755, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 18.646306046191704, - "c2": -6.730892185377137, - "c3": 2.9214467986691304, - "c4": -12.67678359190619, - "c5": -6.765935261531112, - "c6": 34.37119131686868, - "c7": 28.768549667370117 + "points": { + "c1": 26.034828260076047, + "c2": 39.961486441631216, + "c3": -7.904022127387712, + "c4": 30.823056611093598, + "c5": 12.170326653955378, + "c6": -11.769694812024134, + "c7": 21.111240056233264 }, - "vertexSeeds": { - "c1": 4.391208020174942, - "c2": 4.397671880784643, - "c3": 4.424873246995223, - "c4": 4.386452737808248, - "c5": 4.344894779208605, - "c6": 4.590100710671828, - "c7": 4.580748985095738 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.65742024965326, + "c3": 5.547850208044385, + "c4": 4.438280166435501, + "c5": 3.3287101248266247, + "c6": 2.2191400832177504, + "c7": 1.1095700416088752 }, "rgb": [77, 76, 132] }, @@ -160197,23 +160197,23 @@ "year": 1755, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 27.460870210028816, - "c2": 11.614482519619692, - "c3": 3.663887988464758, - "c4": 2.188288771549608, - "c5": -16.693638590590965, - "c6": -13.328207809632701, - "c7": 28.067868460359463 + "points": { + "c1": 32.468581325102406, + "c2": 10.790041504575733, + "c3": 30.016470624238266, + "c4": 30.3029506513529, + "c5": -39.6270813318148, + "c6": -18.589757809396716, + "c7": 32.568602989533886 }, - "vertexSeeds": { - "c1": 5.067031664366558, - "c2": 5.3664247599804575, - "c3": 4.976346641571109, - "c4": 4.926273021694849, - "c5": 5.600787796841834, - "c6": 4.924474857701761, - "c7": 4.881397657196575 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865463, + "c3": 6.819232547387884, + "c4": 5.455386037910304, + "c5": 4.091539528432725, + "c6": 2.7276930189551583, + "c7": 1.3638465094775791 }, "rgb": [222, 0, 59] }, @@ -160224,23 +160224,23 @@ "year": 1755, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 10.471858994695651, - "c2": -42.161115091099674, - "c3": -2.889328485604814, - "c4": -36.42740368742677, - "c5": -12.070862084502863, - "c6": -9.79292902474738, - "c7": -10.585865317662261 + "points": { + "c1": -7.563255906860981, + "c2": -40.87750345076859, + "c3": 9.15278561161491, + "c4": -10.095209516667907, + "c5": 17.23635640476884, + "c6": 45.22192825670272, + "c7": -9.909276631121912 }, - "vertexSeeds": { - "c1": 5.062713780939751, - "c2": 4.971162191931569, - "c3": 5.2486469284576645, - "c4": 4.888471499519893, - "c5": 5.177473763118434, - "c6": 5.0534945815527745, - "c7": 5.250067908765111 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101254, + "c3": 6.380027739251031, + "c4": 5.104022191400829, + "c5": 3.828016643550627, + "c6": 2.5520110957004247, + "c7": 1.2760055478502124 }, "rgb": [86, 146, 138] }, @@ -160251,23 +160251,23 @@ "year": 1755, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -5.018906785656558, - "c2": -10.79938782487379, - "c3": -21.72516229262762, - "c4": -1.0395070366057944, - "c5": -16.932603853007784, - "c6": -5.483039886461704, - "c7": -3.2086246027283174 + "points": { + "c1": -13.031323312296319, + "c2": 13.20866246059692, + "c3": -21.802249201476236, + "c4": -2.1781306547447272, + "c5": 30.425286597431537, + "c6": -6.1687509256550435, + "c7": -27.8182668873071 }, - "vertexSeeds": { - "c1": 5.330503579202644, - "c2": 5.7601098574292875, - "c3": 5.685776332817127, - "c4": 6.270083024143213, - "c5": 5.959836843831419, - "c6": 5.909693135394619, - "c7": 5.24987908868884 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594546, + "c4": 6.121128062875633, + "c5": 4.59084604715673, + "c6": 3.0605640314378166, + "c7": 1.5302820157189134 }, "rgb": [58, 15, 49] }, @@ -160278,23 +160278,23 @@ "year": 1755, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 3.6019365813434625, - "c2": -19.253961909170066, - "c3": -13.847505757285102, - "c4": -15.985579856326082, - "c5": -16.310597576677225, - "c6": -28.909170621286584, - "c7": -16.059606071549332 + "points": { + "c1": 15.86317126675113, + "c2": 17.561764116962564, + "c3": -29.21602352688228, + "c4": -29.43752626493012, + "c5": 12.613551205481187, + "c6": -1.0276792031163389, + "c7": -30.33105993604411 }, - "vertexSeeds": { - "c1": 1.0899622224216878, - "c2": 1.0954330350474644, - "c3": 1.0981094250050718, - "c4": 1.0925496293183536, - "c5": 1.0886740222561435, - "c6": 1.094946571128995, - "c7": 1.0902300869033255 + "offsets": { + "c1": 1.8446601941747571, + "c2": 1.5811373092926433, + "c3": 1.3176144244105428, + "c4": 1.054091539528429, + "c5": 0.7905686546463282, + "c6": 0.5270457697642145, + "c7": 0.2635228848821138 }, "rgb": [58, 15, 49] }, @@ -160305,23 +160305,23 @@ "year": 1755, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": 53.35231417377475, - "c2": -7.169767023246067, - "c3": -2.3491740629344378, - "c4": 43.454407233151336, - "c5": 40.56461174883311, - "c6": -15.370931591247675, - "c7": -34.90106489399396 + "points": { + "c1": 47.0096591719193, + "c2": -45.3595870915172, + "c3": 7.252101899884941, + "c4": 20.534292137467894, + "c5": 25.12732672686935, + "c6": 59.037229325015666, + "c7": -27.702342696436478 }, - "vertexSeeds": { - "c1": 3.4899462712535723, - "c2": 3.305827402738211, - "c3": 3.23220984742782, - "c4": 3.5107949340565536, - "c5": 3.6167362585729954, - "c6": 3.3947305484315335, - "c7": 3.1652824313851706 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601943, + "c3": 4.368932038834954, + "c4": 3.4951456310679645, + "c5": 2.6213592233009746, + "c6": 1.7475728155339787, + "c7": 0.8737864077669893 }, "rgb": [222, 0, 59] }, @@ -160332,23 +160332,23 @@ "year": 1755, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 34.567586516306235, - "c2": 7.4968261442577315, - "c3": -39.17716691195085, - "c4": -29.612861109475055, - "c5": -18.456107565500933, - "c6": -7.0476707262093115, - "c7": 1.1151603305378828 + "points": { + "c1": -2.407851632061103, + "c2": 15.952448978469647, + "c3": -35.92608101528496, + "c4": 0.5894932756773201, + "c5": -15.255573926924683, + "c6": -12.521763076489744, + "c7": 22.214220370756152 }, - "vertexSeeds": { - "c1": 4.669209902842535, - "c2": 4.701522896196811, - "c3": 4.482001510357134, - "c4": 4.647039704147162, - "c5": 4.512244628257594, - "c6": 4.806812573554783, - "c7": 4.935976024406659 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859916, + "c3": 6.2413314840499305, + "c4": 4.993065187239944, + "c5": 3.744798890429958, + "c6": 2.496532593619972, + "c7": 1.248266296809986 }, "rgb": [58, 15, 49] }, @@ -160359,23 +160359,23 @@ "year": 1755, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -21.298367377302128, - "c2": -11.576089119891318, - "c3": 1.724142144290493, - "c4": 6.253462140082895, - "c5": -8.151394160026783, - "c6": 3.891006431121042, - "c7": 0.06355811399429712 + "points": { + "c1": 0.3622062024028878, + "c2": -3.7900252596260344, + "c3": -9.769697625984318, + "c4": -22.366951279771346, + "c5": 7.753060440950108, + "c6": 1.3794573162731467, + "c7": -19.35349241974619 }, - "vertexSeeds": { - "c1": 4.713193193223988, - "c2": 4.494227511075491, - "c3": 4.493909457678144, - "c4": 4.635679771992107, - "c5": 4.5810878316060615, - "c6": 4.687223581470991, - "c7": 4.877747367363115 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256585, + "c3": 5.8945908460471585, + "c4": 4.715672676837722, + "c5": 3.536754507628297, + "c6": 2.357836338418861, + "c7": 1.1789181692094355 }, "rgb": [238, 201, 159] }, @@ -160386,23 +160386,23 @@ "year": 1755, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 41.74486854070204, - "c2": 7.8660999722076355, - "c3": 4.265488874662317, - "c4": -13.097997391764505, - "c5": 11.004061548366955, - "c6": -0.6103215987829955, - "c7": -11.338527510761995 + "points": { + "c1": 37.77527746325747, + "c2": 1.3023169721183052, + "c3": 38.44839509293372, + "c4": -13.811859269515786, + "c5": -35.880495456936075, + "c6": 31.452095099387336, + "c7": -35.014309048671194 }, - "vertexSeeds": { - "c1": 4.333627195621141, - "c2": 3.966401923038472, - "c3": 4.4861453255492245, - "c4": 4.460463492491627, - "c5": 4.087813281116096, - "c6": 3.8735911270168053, - "c7": 4.050619837317378 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [222, 0, 59] }, @@ -160413,23 +160413,23 @@ "year": 1755, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -20.3650279236264, - "c2": 7.329128886688338, - "c3": 14.56911715170287, - "c4": -1.6339825887076813, - "c5": -18.63856082819516, - "c6": 29.309486282696504, - "c7": 33.551274194191734 + "points": { + "c1": -12.405946613313123, + "c2": -8.264286588984472, + "c3": 33.282314703198125, + "c4": -17.450478093736248, + "c5": 27.417400648874512, + "c6": -17.287871886102195, + "c7": 12.762761955629195 }, - "vertexSeeds": { - "c1": 3.2354471117263905, - "c2": 3.310802243650393, - "c3": 3.1909734178060716, - "c4": 3.3274135270030976, - "c5": 3.02495498879104, - "c6": 3.2219981618334064, - "c7": 3.280107426212899 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998615, + "c3": 4.022191400832176, + "c4": 3.2177531206657433, + "c5": 2.4133148404993046, + "c6": 1.6088765603328716, + "c7": 0.8044382801664391 }, "rgb": [222, 0, 59] }, @@ -160440,23 +160440,23 @@ "year": 1755, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -23.19917363250582, - "c2": -9.538003756281213, - "c3": -27.58685134471964, - "c4": -32.2172059815987, - "c5": 44.21793843533717, - "c6": 46.316956621865266, - "c7": 17.6391886841159 + "points": { + "c1": -45.321320642753435, + "c2": -46.88571315137296, + "c3": 44.59840755702333, + "c4": -28.57921934704128, + "c5": -31.47558568145144, + "c6": -1.4154706666673533, + "c7": 2.793862121727564 }, - "vertexSeeds": { - "c1": 2.7825267320285567, - "c2": 2.8476259426967294, - "c3": 2.629727085378644, - "c4": 2.643326870495629, - "c5": 2.7888249452978595, - "c6": 2.8045747675712884, - "c7": 2.6719214036461736 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194176, + "c3": 3.559870550161816, + "c4": 2.847896440129449, + "c5": 2.135922330097088, + "c6": 1.4239482200647275, + "c7": 0.7119741100323606 }, "rgb": [58, 15, 49] }, @@ -160467,23 +160467,23 @@ "year": 1755, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -15.120963485924928, - "c2": -4.530126214376303, - "c3": 3.4606788123327057, - "c4": -14.095309452315458, - "c5": 6.575339256379447, - "c6": 17.912547480328282, - "c7": 17.86069455045531 + "points": { + "c1": -8.655344957289085, + "c2": -29.70303816665983, + "c3": -11.129862404410897, + "c4": -19.283307352775793, + "c5": -17.930628847914324, + "c6": 22.912532921984447, + "c7": 8.408040147394328 }, - "vertexSeeds": { - "c1": 1.2884275257779736, - "c2": 1.1918917184660802, - "c3": 1.2545383307395674, - "c4": 1.205189369848715, - "c5": 1.2823561943279167, - "c6": 1.2461687627455234, - "c7": 1.225921243059536 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959787, + "c3": 1.6643550624133134, + "c4": 1.3314840499306515, + "c5": 0.9986130374479893, + "c6": 0.6657420249653242, + "c7": 0.3328710124826621 }, "rgb": [222, 0, 59] }, @@ -160494,23 +160494,23 @@ "year": 1755, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 28.194220606993298, - "c2": 17.493017596265467, - "c3": 0.901593052487577, - "c4": -3.0466489354063597, - "c5": 34.33229609436809, - "c6": -17.371914258056407, - "c7": 23.284082567868687 + "points": { + "c1": -22.15077339334226, + "c2": 19.614174511867105, + "c3": -18.56878569693547, + "c4": -6.385854812441764, + "c5": 1.8978925859359492, + "c6": 8.167404561074726, + "c7": -33.17637954546248 }, - "vertexSeeds": { - "c1": 1.6499448610151648, - "c2": 1.5571439063893064, - "c3": 1.6146610055889237, - "c4": 1.6508004690000084, - "c5": 1.594444807198368, - "c6": 1.6653403940080473, - "c7": 1.6250195028287144 + "offsets": { + "c1": 2.9773462783171523, + "c2": 2.5520110957004154, + "c3": 2.126675913083681, + "c4": 1.7013407304669443, + "c5": 1.2760055478502077, + "c6": 0.8506703652334708, + "c7": 0.42533518261673675 }, "rgb": [222, 0, 59] }, @@ -160521,23 +160521,23 @@ "year": 1755, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 18.31519412582913, - "c2": 3.257417230540362, - "c3": -16.321374997712194, - "c4": -9.970639503964478, - "c5": -16.10492133215959, - "c6": -11.64069327767438, - "c7": -29.74227652528116 + "points": { + "c1": 3.441283649686099, + "c2": 38.439439876422675, + "c3": 7.708880245131446, + "c4": 27.13108233364155, + "c5": -25.017659395253222, + "c6": 13.91598885974021, + "c7": -45.68130061565456 }, - "vertexSeeds": { - "c1": 3.5497415386561046, - "c2": 4.017724482281351, - "c3": 3.7849152621637634, - "c4": 4.443020116507215, - "c5": 3.6920228736744147, - "c6": 3.041975111627051, - "c7": 4.346399513909036 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251041, + "c3": 5.3166897827092, + "c4": 4.25335182616736, + "c5": 3.190013869625519, + "c6": 2.1266759130836785, + "c7": 1.063337956541838 }, "rgb": [58, 15, 49] }, @@ -160548,23 +160548,23 @@ "year": 1755, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -30.58487919272932, - "c2": -19.47211345440993, - "c3": -35.99030469184485, - "c4": 21.77014142611877, - "c5": -29.679020078520715, - "c6": -32.9670359974183, - "c7": -23.227744040616976 + "points": { + "c1": 16.387459619823453, + "c2": -14.817556006547754, + "c3": -19.694607282255784, + "c4": 42.07033927065115, + "c5": 6.821026919640545, + "c6": 11.724358135241836, + "c7": -6.816669469431254 }, - "vertexSeeds": { - "c1": 3.737217841305101, - "c2": 4.099240365718505, - "c3": 4.13404423050769, - "c4": 3.6980085501273874, - "c5": 4.179419413134176, - "c6": 4.203059068237621, - "c7": 3.725770405071789 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [58, 15, 49] }, @@ -160575,23 +160575,23 @@ "year": 1755, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -40.12721877060859, - "c2": -4.405397735674526, - "c3": -14.373059708651379, - "c4": 9.937123591733851, - "c5": -31.93295881802503, - "c6": -17.477321503912197, - "c7": -8.746850778002681 + "points": { + "c1": 4.920367156578827, + "c2": -43.55801863002367, + "c3": 39.417398098741806, + "c4": 29.534603473407678, + "c5": -40.51913317425183, + "c6": 15.930452753331458, + "c7": -26.947164185651953 }, - "vertexSeeds": { - "c1": 8.135817289361881, - "c2": 7.6472531575291525, - "c3": 8.648129225851056, - "c4": 9.075977709390568, - "c5": 8.549762985125671, - "c6": 8.778133787619197, - "c7": 8.259484190766056 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.25936199722608, + "c3": 11.049468331021727, + "c4": 8.839574664817386, + "c5": 6.6296809986130345, + "c6": 4.419787332408693, + "c7": 2.209893666204341 }, "rgb": [77, 76, 132] }, @@ -160602,23 +160602,23 @@ "year": 1755, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 7.079923787573044, - "c2": -18.524807250904637, - "c3": -14.548200906833179, - "c4": 13.391365774623907, - "c5": -21.255981279037233, - "c6": 18.455847919791132, - "c7": -26.012480761910293 + "points": { + "c1": -1.273115947870064, + "c2": 5.301616376302164, + "c3": -26.184273152231253, + "c4": -7.425587025422448, + "c5": 18.668026707771062, + "c6": -9.14214684667068, + "c7": 5.815801649094588 }, - "vertexSeeds": { - "c1": 5.407109209038855, - "c2": 5.512661410406471, - "c3": 5.6538024429341975, - "c4": 5.6167939090594245, - "c5": 5.729840904573321, - "c6": 5.459264197093367, - "c7": 5.637475792481217 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [222, 0, 59] }, @@ -160629,23 +160629,23 @@ "year": 1755, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -45.30953124090948, - "c2": -13.671958086928633, - "c3": -33.455992553530294, - "c4": 29.173455804641648, - "c5": -8.094143675147237, - "c6": -36.55376063461914, - "c7": 27.76756827135236 + "points": { + "c1": 0.24277752993840807, + "c2": -21.203399078172712, + "c3": 42.83507646496004, + "c4": -37.63473567254981, + "c5": 38.0625162567363, + "c6": 36.130443773303156, + "c7": -42.50199729266987 }, - "vertexSeeds": { - "c1": 6.519960114030358, - "c2": 6.107202428621279, - "c3": 6.153165842157409, - "c4": 6.29312531683839, - "c5": 6.4255368679528875, - "c6": 6.336203176885695, - "c7": 6.406929596628445 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554788, + "c3": 7.790106333795661, + "c4": 6.232085067036534, + "c5": 4.674063800277381, + "c6": 3.1160425335182538, + "c7": 1.5580212667591269 }, "rgb": [238, 201, 159] }, @@ -160656,23 +160656,23 @@ "year": 1755, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -2.4776806394846744, - "c2": -3.1402482479576292, - "c3": 18.81782683595509, - "c4": 1.967928711269451, - "c5": 17.594622620466723, - "c6": 16.17906070038694, - "c7": -3.7116200901685943 + "points": { + "c1": -24.215844612586718, + "c2": 1.0609455008824256, + "c3": 8.629443362076401, + "c4": -13.37038727838863, + "c5": -8.51637244456153, + "c6": 2.859626205949688, + "c7": 9.068280014463781 }, - "vertexSeeds": { - "c1": 6.758776360431376, - "c2": 6.760789220224662, - "c3": 6.71833577998455, - "c4": 6.45729073522192, - "c5": 6.306085577171648, - "c6": 6.512599510287364, - "c7": 6.260529237652236 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471568, + "c4": 7.156726768377254, + "c5": 5.367545076282941, + "c6": 3.578363384188627, + "c7": 1.7891816920943135 }, "rgb": [77, 76, 132] }, @@ -160683,23 +160683,23 @@ "year": 1755, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 26.118511341598527, - "c2": -10.523253830140128, - "c3": 2.2811408149611268, - "c4": 9.821042857729488, - "c5": 15.083459653036037, - "c6": -7.524223363722065, - "c7": -26.850209051568864 + "points": { + "c1": 33.4677927327574, + "c2": 15.033347673940142, + "c3": -25.224281041780504, + "c4": -23.894059006226563, + "c5": -30.747876666900854, + "c6": 15.005807341991165, + "c7": -28.475856274143535 }, - "vertexSeeds": { - "c1": 2.2891863190212094, - "c2": 2.2565297062740006, - "c3": 2.2891162840730197, - "c4": 2.225462487523092, - "c5": 2.275431816436844, - "c6": 2.225738188563167, - "c7": 2.253231865274276 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826634, + "c3": 2.7739251040221893, + "c4": 2.219140083217756, + "c5": 1.6643550624133117, + "c6": 1.109570041608878, + "c7": 0.5547850208044335 }, "rgb": [58, 15, 49] }, @@ -160710,23 +160710,23 @@ "year": 1755, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 16.727431887556648, - "c2": -9.91410727642696, - "c3": -7.799126992947432, - "c4": 0.5284501944789142, - "c5": 23.227001534378672, - "c6": -28.020086449849593, - "c7": 32.4196229470373 + "points": { + "c1": 13.638023949643824, + "c2": -17.52290089342211, + "c3": 34.26214339734945, + "c4": -16.92872325850791, + "c5": -13.913605778503015, + "c6": 34.8963174792939, + "c7": -28.90192045032663 }, - "vertexSeeds": { - "c1": 5.692616126438114, - "c2": 5.56450243795418, - "c3": 7.234246728124425, - "c4": 5.950871120264481, - "c5": 5.677769965781768, - "c6": 6.366386515825631, - "c7": 6.451270448428437 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686545, + "c3": 9.01525658807212, + "c4": 7.212205270457694, + "c5": 5.40915395284327, + "c6": 3.6061026352288508, + "c7": 1.8030513176144254 }, "rgb": [86, 146, 138] }, @@ -160737,23 +160737,23 @@ "year": 1755, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 2.0121959253278447, - "c2": -9.276510523713341, - "c3": 18.47338714527941, - "c4": 16.49582268445839, - "c5": -7.995098054126736, - "c6": 1.0860877957911441, - "c7": -43.634095380409626 + "points": { + "c1": 22.05583088627187, + "c2": -9.339233273474996, + "c3": 24.329843749049537, + "c4": -24.088390048228067, + "c5": 41.89958539987209, + "c6": -40.69822855216894, + "c7": 33.201264003437224 }, - "vertexSeeds": { - "c1": 3.2300776549799024, - "c2": 3.0969092402405898, - "c3": 3.6728625672397084, - "c4": 3.187447304373445, - "c5": 3.629372281586004, - "c6": 3.0845169879771386, - "c7": 3.6045902081603693 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.32593619972261, + "c3": 4.438280166435504, + "c4": 3.550624133148404, + "c5": 2.662968099861305, + "c6": 1.7753120665741997, + "c7": 0.8876560332870999 }, "rgb": [222, 0, 59] }, @@ -160764,23 +160764,23 @@ "year": 1755, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 26.376626771621467, - "c2": 14.566466959857202, - "c3": -4.738389841241375, - "c4": 3.617820002214799, - "c5": -21.538994529026986, - "c6": -7.536762310369156, - "c7": 0.5304152228461483 + "points": { + "c1": -12.007752517962569, + "c2": 12.110480108458212, + "c3": 20.295149088276595, + "c4": 22.452239229112124, + "c5": -21.545945979460196, + "c6": -3.486601394942671, + "c7": -11.903404783039928 }, - "vertexSeeds": { - "c1": 4.371131423924697, - "c2": 4.86055776315259, - "c3": 4.452421269243451, - "c4": 4.881413081297518, - "c5": 4.573384274986143, - "c6": 4.935367679928239, - "c7": 4.6543273189119105 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337029, + "c3": 5.940822931114194, + "c4": 4.752658344891352, + "c5": 3.5644937586685113, + "c6": 2.376329172445676, + "c7": 1.1881645862228347 }, "rgb": [222, 0, 59] }, @@ -160791,23 +160791,23 @@ "year": 1755, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": 31.869247128564368, - "c2": -4.4631377246101, - "c3": 42.52345376437037, - "c4": -25.108954944048115, - "c5": 50.80022602173153, - "c6": 32.15496085418819, - "c7": 41.45302814092233 + "points": { + "c1": 41.49621238408207, + "c2": -30.243253686318354, + "c3": 13.231217651653509, + "c4": -45.183994954568604, + "c5": -35.58558810742629, + "c6": -12.447426980974683, + "c7": -42.64598304626983 }, - "vertexSeeds": { - "c1": 2.9960289277804497, - "c2": 3.3610451594395054, - "c3": 3.4374625751397, - "c4": 3.408741754004203, - "c5": 3.056340009055938, - "c6": 3.1657961110195347, - "c7": 3.4567415379765376 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360612, + "c3": 4.230235783633839, + "c4": 3.384188626907073, + "c5": 2.538141470180306, + "c6": 1.692094313453539, + "c7": 0.8460471567267669 }, "rgb": [86, 146, 138] }, @@ -160818,23 +160818,23 @@ "year": 1755, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -2.136111240566507, - "c2": -44.39425943378794, - "c3": 17.46921810468313, - "c4": -37.70178686085582, - "c5": -29.22465525197411, - "c6": -3.796444734001973, - "c7": -5.2321514002689185 + "points": { + "c1": -23.70624317798954, + "c2": 43.01594287789171, + "c3": -26.91467557443639, + "c4": 7.523072195915908, + "c5": -41.55019011431945, + "c6": 16.712475501296133, + "c7": 7.886768504872677 }, - "vertexSeeds": { - "c1": 8.15477591700194, - "c2": 8.778049714815094, - "c3": 8.603404533249444, - "c4": 8.441270271972773, - "c5": 8.214684822806312, - "c6": 8.634158030225288, - "c7": 8.513430924247517 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743412, + "c3": 10.772075820619508, + "c4": 8.617660656495616, + "c5": 6.463245492371711, + "c6": 4.308830328247808, + "c7": 2.154415164123904 }, "rgb": [222, 0, 59] }, @@ -160845,23 +160845,23 @@ "year": 1755, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -9.807252891046037, - "c2": 27.906339257554365, - "c3": 14.219341769405311, - "c4": -14.334312948688762, - "c5": 22.165102014824797, - "c6": 1.1716446994784029, - "c7": 8.89838692451238 + "points": { + "c1": -6.807555057499766, + "c2": 24.590988191195834, + "c3": -22.388470693729186, + "c4": -16.429437044919958, + "c5": 26.33391437045846, + "c6": -23.013005968012866, + "c7": -23.4260011590443 }, - "vertexSeeds": { - "c1": 0.9845983545574696, - "c2": 0.9300055807647669, - "c3": 0.9585998708694802, - "c4": 0.9330099509232009, - "c5": 0.9776252368387334, - "c6": 1.0243433634895698, - "c7": 0.9791328487258706 + "offsets": { + "c1": 1.7475728155339807, + "c2": 1.497919556171984, + "c3": 1.2482662968099854, + "c4": 0.9986130374479887, + "c5": 0.748959778085992, + "c6": 0.49930651872399534, + "c7": 0.24965325936199664 }, "rgb": [58, 15, 49] }, @@ -160872,23 +160872,23 @@ "year": 1755, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -20.40758708187669, - "c2": -44.18802384823892, - "c3": -19.551447827910714, - "c4": 22.87588295708344, - "c5": 2.5218554339863672, - "c6": 8.270357480229016, - "c7": 23.706007174549107 + "points": { + "c1": 13.441227315496704, + "c2": 20.28753954755799, + "c3": -9.962082272786283, + "c4": -40.589305297608306, + "c5": 23.128764239003964, + "c6": 10.704868962276002, + "c7": -25.320861973866293 }, - "vertexSeeds": { - "c1": 4.29712892899072, - "c2": 4.329901348891803, - "c3": 4.044081329160301, - "c4": 4.621428148984551, - "c5": 4.713236518428046, - "c6": 4.428843384440341, - "c7": 4.831628846258192 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -160899,23 +160899,23 @@ "year": 1755, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 5.836894162943359, - "c2": 17.96949189936104, - "c3": 10.819460859396472, - "c4": 17.15608105841674, - "c5": -16.19001480153794, - "c6": -22.7923148537788, - "c7": 2.320277450972565 + "points": { + "c1": 25.92262731930088, + "c2": 25.7158956307615, + "c3": 20.615526922566566, + "c4": 13.662379169740106, + "c5": -2.4648607457259075, + "c6": -25.553742890081466, + "c7": 2.85193945194575 }, - "vertexSeeds": { - "c1": 4.158732360203269, - "c2": 4.737359780104393, - "c3": 4.242570019369482, - "c4": 4.178898291332996, - "c5": 4.404597443494637, - "c6": 4.2589508276286505, - "c7": 4.217125346769197 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [238, 201, 159] }, @@ -160926,23 +160926,23 @@ "year": 1755, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -18.362607195573066, - "c2": 20.040356481189484, - "c3": 14.045913425688987, - "c4": 27.563492463132498, - "c5": 27.778820857254438, - "c6": -13.052526501835736, - "c7": -11.54212783852654 + "points": { + "c1": -15.520417034735516, + "c2": -25.567784548938917, + "c3": -15.684947587656492, + "c4": 33.23924527419894, + "c5": -25.489711554059358, + "c6": -36.786573971433214, + "c7": -31.06192076333481 }, - "vertexSeeds": { - "c1": 4.76910145433984, - "c2": 4.485662317409589, - "c3": 4.544453224609252, - "c4": 4.196254689830968, - "c5": 4.542057783478121, - "c6": 4.743842379888531, - "c7": 4.163050177388505 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -160953,23 +160953,23 @@ "year": 1755, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -10.654420358381294, - "c2": 8.531457980053482, - "c3": 21.595201759367704, - "c4": 22.597644681617204, - "c5": -26.761773590503406, - "c6": 19.759022466939456, - "c7": -4.302971687314706 + "points": { + "c1": -0.49957385163955337, + "c2": 31.37314968078718, + "c3": 14.326430337354644, + "c4": -15.008214023808971, + "c5": 27.538573033753785, + "c6": 24.90398469206845, + "c7": 16.048625898183076 }, - "vertexSeeds": { - "c1": 3.9053314324931523, - "c2": 4.364543103033663, - "c3": 4.49082440780101, - "c4": 4.142659978719917, - "c5": 4.017793975000824, - "c6": 3.943776756140736, - "c7": 4.11081257767058 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [58, 15, 49] }, @@ -160980,23 +160980,23 @@ "year": 1755, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -21.4203200606094, - "c2": -33.59546211816854, - "c3": 7.859674719145936, - "c4": -18.23771976114005, - "c5": -5.998772578916032, - "c6": -0.1179500380120615, - "c7": -15.294817757560157 + "points": { + "c1": -7.0309325914382015, + "c2": -33.922105822541205, + "c3": 18.666005199206502, + "c4": -19.166294110983543, + "c5": 23.941008499101216, + "c6": -29.1833330537226, + "c7": 12.723225411364545 }, - "vertexSeeds": { - "c1": 1.841788178316845, - "c2": 1.7938185147363073, - "c3": 1.8234631814116793, - "c4": 1.8858134548795402, - "c5": 1.7885124553840346, - "c6": 1.9144932031372301, - "c7": 1.9313085973023285 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.3347202958853472, + "c4": 1.867776236708275, + "c5": 1.4008321775312074, + "c6": 0.9338881183541395, + "c7": 0.46694405917707194 }, "rgb": [86, 146, 138] }, @@ -161007,23 +161007,23 @@ "year": 1755, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 26.92840706249187, - "c2": 19.01334723263659, - "c3": 27.712893532476414, - "c4": 24.783028840811745, - "c5": 13.869048884540327, - "c6": -18.076589732043637, - "c7": -20.589549094074528 + "points": { + "c1": -7.548450296104143, + "c2": 36.62562277294316, + "c3": -36.67759795696281, + "c4": 9.070174709836039, + "c5": 13.233217973713494, + "c6": 29.392425788574002, + "c7": -10.875887743136573 }, - "vertexSeeds": { - "c1": 3.102301746482484, - "c2": 3.1222538540561118, - "c3": 3.0915034678697673, - "c4": 3.782088674562444, - "c5": 3.2894175288360623, - "c6": 3.702208714666257, - "c7": 3.713942529062862 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.4368932038834945, + "c3": 4.530744336569579, + "c4": 3.624595469255663, + "c5": 2.7184466019417473, + "c6": 1.8122977346278315, + "c7": 0.9061488673139158 }, "rgb": [58, 15, 49] }, @@ -161034,23 +161034,23 @@ "year": 1755, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -35.28304293301551, - "c2": 37.11912894360062, - "c3": 22.826516627349818, - "c4": 28.998975183921793, - "c5": -31.17673703791661, - "c6": 2.3004410224335388, - "c7": 18.5817500612847 + "points": { + "c1": -15.200915276216293, + "c2": -32.90793791357315, + "c3": 20.29785798367979, + "c4": -39.60707412561582, + "c5": -31.017530618882247, + "c6": 3.452715761211117, + "c7": 36.236519530334924 }, - "vertexSeeds": { - "c1": 3.9222859431704458, - "c2": 3.989441238021371, - "c3": 3.6974187455130907, - "c4": 4.139727490001851, - "c5": 3.9786864980772827, - "c6": 3.86150291468875, - "c7": 4.010540858006786 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647713, + "c3": 4.9699491447064315, + "c4": 3.9759593157651403, + "c5": 2.9819694868238567, + "c6": 1.987979657882574, + "c7": 0.9939898289412912 }, "rgb": [77, 76, 132] }, @@ -161061,23 +161061,23 @@ "year": 1754, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": 14.284847779424986, - "c2": 11.778434809715648, - "c3": -14.666466221011568, - "c4": 18.535760483057942, - "c5": 17.59802238369315, - "c6": 16.527222470059783, - "c7": 8.880701771181844 + "points": { + "c1": 8.128072199075422, + "c2": -11.526806367613876, + "c3": 13.042069290683472, + "c4": -15.418452706358622, + "c5": 9.243463249208155, + "c6": -3.490654898714965, + "c7": 1.6709850790533451 }, - "vertexSeeds": { - "c1": 9.369304315014364, - "c2": 8.944470917174362, - "c3": 8.770081869853378, - "c4": 8.776739634267857, - "c5": 8.828429933094718, - "c6": 9.346420001676798, - "c7": 9.037631009318734 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110947, + "c3": 11.558021266759132, + "c4": 9.246417013407298, + "c5": 6.9348127600554825, + "c6": 4.623208506703649, + "c7": 2.3116042533518155 }, "rgb": [86, 146, 138] }, @@ -161088,23 +161088,23 @@ "year": 1755, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 24.654569686895968, - "c2": -26.5360031743395, - "c3": 35.21852633458293, - "c4": 30.775646331910224, - "c5": 34.70454298937149, - "c6": -7.8853398971991595, - "c7": -3.593655788227675 + "points": { + "c1": -1.3961306961782967, + "c2": -21.428349035654975, + "c3": -33.14911099570951, + "c4": 29.137885184648653, + "c5": -16.533434065045654, + "c6": 6.75139383479199, + "c7": -0.3855767282553444 }, - "vertexSeeds": { - "c1": 5.894608115113997, - "c2": 5.510657437853727, - "c3": 5.749311859825345, - "c4": 5.460693211991913, - "c5": 5.451889305216969, - "c6": 6.0088294065929, - "c7": 5.905593248235484 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [222, 0, 59] }, @@ -161115,23 +161115,23 @@ "year": 1755, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 46.00113752551463, - "c2": 40.79465203365161, - "c3": -22.98509563955362, - "c4": -14.38097761122237, - "c5": -19.368598024619633, - "c6": 19.94698589797367, - "c7": -36.55404119611605 + "points": { + "c1": 17.462247517503876, + "c2": 49.87913518527534, + "c3": 12.498206044206817, + "c4": -34.3355111253331, + "c5": -30.541193636675985, + "c6": -41.75846613283072, + "c7": 52.024326804046005 }, - "vertexSeeds": { - "c1": 6.442936869642969, - "c2": 6.430792680692845, - "c3": 6.399341281133258, - "c4": 6.434752232375485, - "c5": 6.129472873473945, - "c6": 6.1314892878801786, - "c7": 6.933607483820779 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882107, + "c3": 8.552935737401757, + "c4": 6.8423485899214045, + "c5": 5.131761442441054, + "c6": 3.4211742949607022, + "c7": 1.7105871474803511 }, "rgb": [77, 76, 132] }, @@ -161142,23 +161142,23 @@ "year": 1755, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -11.40095081870015, - "c2": -18.34659108556184, - "c3": 28.255682650200708, - "c4": -7.882031332268234, - "c5": -17.515486718696685, - "c6": -25.636391449070395, - "c7": -22.25294244465673 + "points": { + "c1": 15.014733188270505, + "c2": 19.787325624771427, + "c3": -29.78366153805836, + "c4": -22.936301783476686, + "c5": -2.2411506626400666, + "c6": -13.609672937025696, + "c7": -25.521944534374814 }, - "vertexSeeds": { - "c1": 2.028035559566174, - "c2": 1.9450125694645828, - "c3": 1.7418519779396808, - "c4": 2.182861379364608, - "c5": 1.962235268215811, - "c6": 1.9443992335932903, - "c7": 2.0980881248066274 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.1900138696255205, + "c3": 2.6583448913546004, + "c4": 2.1266759130836803, + "c5": 1.5950069348127602, + "c6": 1.0633379565418402, + "c7": 0.5316689782709201 }, "rgb": [86, 146, 138] }, @@ -161169,23 +161169,23 @@ "year": 1755, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": 46.16774503778581, - "c2": 8.55736255682428, - "c3": -15.91232220984228, - "c4": 46.03010117002535, - "c5": -17.85306383855837, - "c6": 50.75222584387606, - "c7": 26.08215858119236 + "points": { + "c1": 13.784151724863122, + "c2": -18.898743833578713, + "c3": 10.927778885193021, + "c4": -36.25153609030318, + "c5": 16.29286262422511, + "c6": -4.467740981482152, + "c7": -51.02234506879761 }, - "vertexSeeds": { - "c1": 6.83668412625337, - "c2": 6.380126404189407, - "c3": 7.212599496381355, - "c4": 7.328516754909879, - "c5": 6.093964582833361, - "c6": 6.785195088678623, - "c7": 6.7151961557328095 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485437, + "c3": 8.899676375404534, + "c4": 7.119741100323619, + "c5": 5.339805825242714, + "c6": 3.5598705501618095, + "c7": 1.7799352750809048 }, "rgb": [77, 76, 132] }, @@ -161196,23 +161196,23 @@ "year": 1755, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 16.052679335152504, - "c2": 37.742956561240945, - "c3": -32.7839886252793, - "c4": -10.805150884491134, - "c5": 32.49107650349653, - "c6": -29.736973916415927, - "c7": -42.546481296266315 + "points": { + "c1": -4.657269939517008, + "c2": 40.0159354335142, + "c3": 28.8589402831456, + "c4": -34.956906327079196, + "c5": -18.685677697728135, + "c6": 12.96316666390755, + "c7": 29.753043609013034 }, - "vertexSeeds": { - "c1": 5.065022529327102, - "c2": 5.861371164611666, - "c3": 5.544263586171247, - "c4": 5.174841722599649, - "c5": 5.205369469779916, - "c6": 5.341136001253002, - "c7": 5.833158890068786 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [86, 146, 138] }, @@ -161223,23 +161223,23 @@ "year": 1755, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 16.237636583129785, - "c2": -14.173739361303113, - "c3": 29.61603131890884, - "c4": 16.92291554518487, - "c5": 22.3652679994607, - "c6": -39.23401583008628, - "c7": -12.284437621246084 + "points": { + "c1": -29.724271288318132, + "c2": -24.11129566768994, + "c3": 34.75919149924799, + "c4": 36.94840104505022, + "c5": -9.220598744429935, + "c6": -4.287838374130949, + "c7": -30.083591890615054 }, - "vertexSeeds": { - "c1": 4.045629589274462, - "c2": 4.618437990647654, - "c3": 4.714709663799917, - "c4": 4.498462593334738, - "c5": 4.1516034648868505, - "c6": 4.397829206298852, - "c7": 4.592541766593499 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -161250,23 +161250,23 @@ "year": 1755, "resistanceReported": false, "duration": 41212800, - "curveSeeds": { - "c1": 16.69696607869792, - "c2": -11.93219458634676, - "c3": 34.01583872716488, - "c4": 40.238984647819485, - "c5": -43.44283456608154, - "c6": 41.383086266159644, - "c7": 4.107108685381064 + "points": { + "c1": 31.52298920756109, + "c2": -14.891669012870281, + "c3": 23.42066313158613, + "c4": -9.411971644483742, + "c5": -53.76089739980956, + "c6": -8.713347556444262, + "c7": 12.431230319872277 }, - "vertexSeeds": { - "c1": 4.004318396392673, - "c2": 3.967419175034309, - "c3": 3.946432314297982, - "c4": 4.225131335065768, - "c5": 3.771288288626307, - "c6": 4.248609084469346, - "c7": 3.81382816190594 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [77, 76, 132] }, @@ -161277,23 +161277,23 @@ "year": 1755, "resistanceReported": false, "duration": 39052800, - "curveSeeds": { - "c1": -7.3705824169818825, - "c2": 11.075436002378268, - "c3": -27.168948858446242, - "c4": -48.67032751282429, - "c5": 16.3239633873106, - "c6": -22.445436358078695, - "c7": 47.83746044112901 + "points": { + "c1": 52.429069648880045, + "c2": -0.1062956642768782, + "c3": -43.42097738436087, + "c4": -49.197088488887864, + "c5": 5.28518051616534, + "c6": -44.7787954015788, + "c7": 12.39789000764543 }, - "vertexSeeds": { - "c1": 5.991975290687624, - "c2": 6.732688598740267, - "c3": 6.98217407290174, - "c4": 6.131415004801758, - "c5": 6.937181149927843, - "c6": 7.024135626446485, - "c7": 6.864835165854503 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002771, + "c3": 8.622283865002316, + "c4": 6.89782709200185, + "c5": 5.1733703190013856, + "c6": 3.4489135460009304, + "c7": 1.7244567730004652 }, "rgb": [86, 146, 138] }, @@ -161304,23 +161304,23 @@ "year": 1755, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 30.26578484525121, - "c2": 12.64359898341747, - "c3": -0.38980230601477217, - "c4": -25.32441995785939, - "c5": 22.978069149270183, - "c6": -16.0689732203645, - "c7": 23.979834250303114 + "points": { + "c1": -4.465662713886822, + "c2": 2.0125470660472615, + "c3": -21.347466013276083, + "c4": -16.15786637303705, + "c5": -26.592392896979526, + "c6": 7.3077016767871115, + "c7": 25.934172926287026 }, - "vertexSeeds": { - "c1": 3.522014769289848, - "c2": 3.487324139132802, - "c3": 3.541240497945105, - "c4": 3.4920186225385983, - "c5": 3.4896407304392043, - "c6": 3.5653547403003656, - "c7": 3.518209850283689 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239948, + "c3": 4.160887656033293, + "c4": 3.3287101248266384, + "c5": 2.496532593619984, + "c6": 1.664355062413309, + "c7": 0.8321775312066545 }, "rgb": [222, 0, 59] }, @@ -161331,23 +161331,23 @@ "year": 1755, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": -13.88752689457619, - "c2": -5.242949796445316, - "c3": -19.780783530726143, - "c4": -13.625907303649488, - "c5": -1.8944497776043683, - "c6": 1.4316066530464937, - "c7": 8.256227402217593 + "points": { + "c1": -3.967207877033438, + "c2": 14.264865264689831, + "c3": 13.002255460740365, + "c4": -21.291451085304942, + "c5": -14.030475905521635, + "c6": -6.699794732003113, + "c7": 17.30862889978517 }, - "vertexSeeds": { - "c1": 1.3625965290908126, - "c2": 1.5259540951307593, - "c3": 1.3765441494913837, - "c4": 1.5812067886159273, - "c5": 1.4039963189546354, - "c6": 1.5381260641922083, - "c7": 1.325945067772012 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [86, 146, 138] }, @@ -161358,23 +161358,23 @@ "year": 1755, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 25.55611987026235, - "c2": -36.326628021976184, - "c3": -24.54594890601484, - "c4": 15.179288871393318, - "c5": 36.28090277985463, - "c6": -30.123081398086526, - "c7": -6.440452001647742 + "points": { + "c1": -17.0915214324237, + "c2": -29.120984749590605, + "c3": -0.8736614658269346, + "c4": -17.35052730831543, + "c5": -31.49668618541576, + "c6": -37.76862752942458, + "c7": 33.435679552283986 }, - "vertexSeeds": { - "c1": 4.894261929888985, - "c2": 4.6313523489450965, - "c3": 5.25782475774687, - "c4": 4.585908834715266, - "c5": 5.245930744406253, - "c6": 4.61066629911862, - "c7": 5.187982629573017 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181694, + "c3": 6.42625982431808, + "c4": 5.141007859454456, + "c5": 3.855755894590847, + "c6": 2.570503929727228, + "c7": 1.285251964863614 }, "rgb": [222, 0, 59] }, @@ -161385,23 +161385,23 @@ "year": 1755, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 9.199008449810933, - "c2": 10.056058905508493, - "c3": -15.630602588791085, - "c4": -29.393061606693244, - "c5": -3.9150420532441643, - "c6": 23.41583399852273, - "c7": -12.346658666622979 + "points": { + "c1": 25.85503001380028, + "c2": -12.850217045724413, + "c3": 0.16382524205547355, + "c4": -26.767702322633916, + "c5": 19.641754001558404, + "c6": -20.50243164799465, + "c7": -34.05093883681512 }, - "vertexSeeds": { - "c1": 2.5686510551856303, - "c2": 2.517749523603694, - "c3": 2.5424311268948894, - "c4": 2.5553882334200537, - "c5": 2.5909205916396667, - "c6": 2.592876389175855, - "c7": 2.5748041349645985 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.7447988904299514, + "c3": 3.120665742024976, + "c4": 2.496532593619976, + "c5": 1.8723994452149757, + "c6": 1.2482662968100002, + "c7": 0.6241331484050001 }, "rgb": [58, 15, 49] }, @@ -161412,23 +161412,23 @@ "year": 1756, "resistanceReported": false, "duration": 47692800, - "curveSeeds": { - "c1": -13.804998348380686, - "c2": 48.857703497784804, - "c3": 33.55938695146515, - "c4": -6.929693676545639, - "c5": 46.606682210070254, - "c6": 49.096460175038736, - "c7": 59.478330379355405 + "points": { + "c1": -46.60345391284553, + "c2": -9.831657049622812, + "c3": 2.925813755445276, + "c4": -44.03272995299485, + "c5": -16.46206271782816, + "c6": -0.31007920918005993, + "c7": 2.630470542044435 }, - "vertexSeeds": { - "c1": 3.205681375989708, - "c2": 3.0670711321863218, - "c3": 3.097901745178076, - "c4": 2.9023717581116126, - "c5": 3.0451708864244034, - "c6": 3.1785805598612877, - "c7": 3.0822993800295446 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -161439,23 +161439,23 @@ "year": 1756, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 14.920937537396632, - "c2": -51.766105637747124, - "c3": -36.30337050012065, - "c4": 22.373737038275173, - "c5": 24.691347275057673, - "c6": -34.14915843390365, - "c7": -39.57583262596164 + "points": { + "c1": 9.20119826715868, + "c2": 26.31904145398044, + "c3": 47.51444927428005, + "c4": -22.542588981076896, + "c5": 14.177664006286314, + "c6": 22.517938576156432, + "c7": 25.77572728042255 }, - "vertexSeeds": { - "c1": 5.212801986824357, - "c2": 4.7366333906808, - "c3": 5.056757352522627, - "c4": 4.757647773763574, - "c5": 4.8026183835416845, - "c6": 4.771930445958973, - "c7": 4.930908334108752 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980587, + "c3": 6.310679611650482, + "c4": 5.04854368932039, + "c5": 3.786407766990291, + "c6": 2.5242718446601917, + "c7": 1.262135922330099 }, "rgb": [58, 15, 49] }, @@ -161466,23 +161466,23 @@ "year": 1756, "resistanceReported": false, "duration": 56246400, - "curveSeeds": { - "c1": -25.675232837383035, - "c2": 43.444086336729114, - "c3": 23.75576525825265, - "c4": 44.928227814197825, - "c5": -57.15694420734951, - "c6": -50.611979142808536, - "c7": -2.409212477564296 + "points": { + "c1": 28.71837065196904, + "c2": -65.92955431605421, + "c3": -25.308207345909423, + "c4": -55.39644784617441, + "c5": 51.64321956802293, + "c6": 11.059204686095057, + "c7": -70.04416278694018 }, - "vertexSeeds": { - "c1": 8.561510625124267, - "c2": 8.549920637432573, - "c3": 8.563073327164034, - "c4": 8.56459094404371, - "c5": 8.568543853174813, - "c6": 8.551197677812118, - "c7": 8.55375287493891 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959777738, + "c3": 10.217290799815189, + "c4": 8.173832639851826, + "c5": 6.130374479889276, + "c6": 4.086916319925913, + "c7": 2.0434581599633628 }, "rgb": [238, 201, 159] }, @@ -161493,23 +161493,23 @@ "year": 1755, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 44.842760732331115, - "c2": 35.76902066745315, - "c3": -1.645969319725225, - "c4": -33.77446802606619, - "c5": 45.73545088609224, - "c6": -33.83866673771502, - "c7": -42.064588306959905 + "points": { + "c1": 37.02452405584884, + "c2": -21.01701557030528, + "c3": -3.852796930778844, + "c4": 11.171473528277247, + "c5": 39.319491335894355, + "c6": 25.63078720485622, + "c7": 43.751067529577455 }, - "vertexSeeds": { - "c1": 0.05829015544041451, - "c2": 0.05829015544041451, - "c3": 0.05829015544041451, - "c4": 0.05829015544041451, - "c5": 0.05829015544041451, - "c6": 0.05829015544041451, - "c7": 0.05829015544041451 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -161520,23 +161520,23 @@ "year": 1755, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 29.858790117062554, - "c2": -22.377217828966916, - "c3": -20.218687199210187, - "c4": 4.886157776015324, - "c5": 32.85541355869529, - "c6": -38.24795115438904, - "c7": -22.32730359686459 + "points": { + "c1": -23.581606898577373, + "c2": -6.827950328411539, + "c3": -33.0954268558772, + "c4": -19.271489404300446, + "c5": -24.34936913482134, + "c6": -35.054121699834546, + "c7": 13.978380680432707 }, - "vertexSeeds": { - "c1": 7.619106819559675, - "c2": 7.705368376244678, - "c3": 7.748415270357012, - "c4": 7.636467168856177, - "c5": 7.7527354821787595, - "c6": 7.876046191590396, - "c7": 7.702840386449229 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370298, + "c3": 9.40822931114194, + "c4": 7.526583448913532, + "c5": 5.644937586685174, + "c6": 3.763291724456766, + "c7": 1.8816458622283578 }, "rgb": [238, 201, 159] }, @@ -161547,23 +161547,23 @@ "year": 1755, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 30.643447281046313, - "c2": -2.256152008795887, - "c3": 2.261840685863689, - "c4": -30.753873977406037, - "c5": -28.00044457711231, - "c6": -10.864184993843452, - "c7": 18.687206425293724 + "points": { + "c1": 39.05126923644081, + "c2": 14.992709052520993, + "c3": -39.97629106008504, + "c4": -20.079770690686445, + "c5": 35.31558845821399, + "c6": -19.90792973627981, + "c7": 1.1257160038879803 }, - "vertexSeeds": { - "c1": 2.0875871360242777, - "c2": 1.9897924832046, - "c3": 2.0890349580796923, - "c4": 1.9969109190990924, - "c5": 1.8866559917710042, - "c6": 1.9060614576357802, - "c7": 2.1714019329657814 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450776, + "c3": 2.6121128062875654, + "c4": 2.0896902450300505, + "c5": 1.5672676837725388, + "c6": 1.0448451225150268, + "c7": 0.5224225612575151 }, "rgb": [222, 0, 59] }, @@ -161574,23 +161574,23 @@ "year": 1755, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 23.063237426970282, - "c2": 14.27042685596313, - "c3": -20.645896661981887, - "c4": -31.419852716277603, - "c5": -11.350277338158019, - "c6": -16.556740903320744, - "c7": 13.776106306512922 + "points": { + "c1": -33.311245755734795, + "c2": -27.50360917205309, + "c3": -16.57203923136514, + "c4": -5.222917725374465, + "c5": 27.223809470532856, + "c6": -25.685558772191477, + "c7": -35.69797755761116 }, - "vertexSeeds": { - "c1": 4.770294378974047, - "c2": 4.555875946331971, - "c3": 4.62322361305121, - "c4": 4.670197785978207, - "c5": 4.389795560833368, - "c6": 4.355597903253983, - "c7": 4.380403508327341 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.10124826629681, + "c3": 5.917706888580672, + "c4": 4.734165510864538, + "c5": 3.550624133148405, + "c6": 2.367082755432272, + "c7": 1.183541377716133 }, "rgb": [238, 201, 159] }, @@ -161601,23 +161601,23 @@ "year": 1755, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -18.957269597995644, - "c2": -1.0713293516853781, - "c3": 2.017836773757139, - "c4": 12.138537456952967, - "c5": -31.084725969380315, - "c6": 6.617908565005628, - "c7": -22.743138918316617 + "points": { + "c1": 21.36297266083971, + "c2": -30.378133734137307, + "c3": 27.905737972015828, + "c4": -22.11542656929371, + "c5": 21.36897317555306, + "c6": -33.97445211283154, + "c7": -31.904781124977234 }, - "vertexSeeds": { - "c1": 10.297697831089298, - "c2": 10.505535079544902, - "c3": 11.555039007747078, - "c4": 10.79013856872583, - "c5": 11.591843928451242, - "c6": 10.753112593571299, - "c7": 10.48981813935627 + "offsets": { + "c1": 19.70873786407767, + "c2": 16.893203883495136, + "c3": 14.077669902912632, + "c4": 11.262135922330101, + "c5": 8.446601941747568, + "c6": 5.631067961165062, + "c7": 2.815533980582531 }, "rgb": [86, 146, 138] }, @@ -161628,23 +161628,23 @@ "year": 1755, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -26.757415094858843, - "c2": -8.039064904435858, - "c3": 1.4843375621249209, - "c4": -12.64861361223154, - "c5": 25.60907517013252, - "c6": -2.7051817892115864, - "c7": 31.853740337517365 + "points": { + "c1": -9.41502715157731, + "c2": -19.543498877304813, + "c3": -25.56352030753877, + "c4": -11.129140348985949, + "c5": -9.777043631287487, + "c6": 10.956515781607642, + "c7": -21.496522136481243 }, - "vertexSeeds": { - "c1": 6.640502512289008, - "c2": 6.491239528463277, - "c3": 5.655583877583263, - "c4": 6.124209137694663, - "c5": 5.6277216448393865, - "c6": 6.12023384773125, - "c7": 6.15244144763576 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996762, + "c4": 6.343042071197408, + "c5": 4.757281553398053, + "c6": 3.171521035598699, + "c7": 1.5857605177993441 }, "rgb": [58, 15, 49] }, @@ -161655,23 +161655,23 @@ "year": 1755, "resistanceReported": true, "duration": 25315200, - "curveSeeds": { - "c1": 13.721469142498542, - "c2": -21.875418524498095, - "c3": 31.2931951758804, - "c4": -21.97013223262559, - "c5": -6.350846334994788, - "c6": -13.213007156639751, - "c7": -21.365855773856058 + "points": { + "c1": 2.961424603915752, + "c2": -2.852678637063093, + "c3": 22.472903369842143, + "c4": -13.484998431267883, + "c5": -5.850968862911614, + "c6": 24.07912551177113, + "c7": -0.5868593333310059 }, - "vertexSeeds": { - "c1": 4.870304664195734, - "c2": 4.747930176770701, - "c3": 4.769956581971971, - "c4": 4.811498215891923, - "c5": 4.744388050242425, - "c6": 4.795812895813258, - "c7": 4.805225347052133 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135926, + "c3": 5.82524271844661, + "c4": 4.660194174757294, + "c5": 3.495145631067978, + "c6": 2.3300970873786615, + "c7": 1.1650485436893452 }, "rgb": [86, 146, 138] }, @@ -161682,23 +161682,23 @@ "year": 1755, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -25.018591790070165, - "c2": -25.636202884676575, - "c3": -3.0058039698533534, - "c4": -8.627391370917962, - "c5": -3.3786391224281793, - "c6": 27.660613577098744, - "c7": -5.965826102272828 + "points": { + "c1": -9.467783690753343, + "c2": -34.535751646784036, + "c3": -31.88535119515656, + "c4": 16.2512629572974, + "c5": 10.77176915614492, + "c6": -22.068113246319907, + "c7": -29.095984871273778 }, - "vertexSeeds": { - "c1": 3.631144558628406, - "c2": 4.239443545921434, - "c3": 3.5015736455543416, - "c4": 3.613021599782958, - "c5": 3.7133233694176258, - "c6": 3.3760369635683087, - "c7": 4.079199500606647 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.2135922330097095, + "c3": 5.177993527508091, + "c4": 4.142394822006474, + "c5": 3.1067961165048525, + "c6": 2.071197411003235, + "c7": 1.0355987055016176 }, "rgb": [238, 201, 159] }, @@ -161709,23 +161709,23 @@ "year": 1755, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 18.08880314630096, - "c2": -25.674572739520205, - "c3": 13.695933910371025, - "c4": 4.078615487789186, - "c5": 25.583579326342317, - "c6": -17.0238135350006, - "c7": -26.041036471411914 + "points": { + "c1": -35.58136677778413, + "c2": 28.637729581914854, + "c3": 41.54934413086336, + "c4": -20.96389665306702, + "c5": -48.226358813154306, + "c6": -20.51155246215306, + "c7": 36.58263725770061 }, - "vertexSeeds": { - "c1": 5.051194399896827, - "c2": 4.416645364868644, - "c3": 3.5100808939336128, - "c4": 4.125105421371621, - "c5": 3.4025312924913083, - "c6": 4.620603761031168, - "c7": 5.1321006222004675 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819694, + "c3": 6.2182154415164135, + "c4": 4.97457235321313, + "c5": 3.730929264909849, + "c6": 2.487286176606565, + "c7": 1.2436430883032814 }, "rgb": [77, 76, 132] }, @@ -161736,23 +161736,23 @@ "year": 1755, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": 5.337984154526296, - "c2": -30.755853404652623, - "c3": 51.06233833156971, - "c4": -19.736372281202335, - "c5": 50.625693938485504, - "c6": 9.808542443918917, - "c7": -33.90027440150479 + "points": { + "c1": -23.052720287475395, + "c2": 47.33169908643438, + "c3": -11.931335961213236, + "c4": 3.633279810891061, + "c5": 17.614833667021934, + "c6": 3.0273565202940773, + "c7": -45.19996168814821 }, - "vertexSeeds": { - "c1": 10.51655296158702, - "c2": 10.168760432264646, - "c3": 9.966293458467273, - "c4": 10.305633917208322, - "c5": 10.898316398064848, - "c6": 10.034838973418296, - "c7": 9.946896190848301 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.5894590846047, + "c3": 12.99121590383727, + "c4": 10.392972723069802, + "c5": 7.79472954230237, + "c6": 5.196486361534901, + "c7": 2.5982431807674295 }, "rgb": [77, 76, 132] }, @@ -161763,23 +161763,23 @@ "year": 1755, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -32.68810459418811, - "c2": -11.248220232910239, - "c3": -2.8815087994463298, - "c4": -15.576817568794183, - "c5": -13.542484526868215, - "c6": 0.0077820425447328034, - "c7": -12.609589155490912 + "points": { + "c1": -38.12177735938444, + "c2": 19.958259392927673, + "c3": 30.86807454989445, + "c4": 32.60603785648964, + "c5": -36.67806574955839, + "c6": -6.87695974659993, + "c7": -20.8230689949102 }, - "vertexSeeds": { - "c1": 5.618939262858291, - "c2": 5.688211570293843, - "c3": 5.918795423380137, - "c4": 5.360479730294015, - "c5": 5.160073446239918, - "c6": 5.791445464260338, - "c7": 5.48107798130107 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.48821081830791, + "c3": 7.073509015256587, + "c4": 5.658807212205275, + "c5": 4.24410540915395, + "c6": 2.8294036061026375, + "c7": 1.414701803051325 }, "rgb": [222, 0, 59] }, @@ -161790,23 +161790,23 @@ "year": 1755, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 22.80726996342549, - "c2": -24.24144894698546, - "c3": 18.146328257370904, - "c4": 17.483824069629314, - "c5": 21.087641272659567, - "c6": 16.86711714633229, - "c7": 22.323501368236933 + "points": { + "c1": 10.983587239139354, + "c2": -30.923369315433437, + "c3": -21.25763562659063, + "c4": 23.348858314231983, + "c5": -13.18983208909826, + "c6": 26.53798609668575, + "c7": -0.947981639220977 }, - "vertexSeeds": { - "c1": 5.163752922951448, - "c2": 5.049579406850999, - "c3": 4.862594825617733, - "c4": 4.867488701648631, - "c5": 5.118695184482747, - "c6": 5.19332256101116, - "c7": 5.597073488598232 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664355, + "c3": 6.703652334720294, + "c4": 5.362921867776234, + "c5": 4.022191400832174, + "c6": 2.681460933888114, + "c7": 1.34073046694406 }, "rgb": [77, 76, 132] }, @@ -161817,23 +161817,23 @@ "year": 1755, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -2.6584880646420075, - "c2": -2.8436896696461176, - "c3": 3.746600058837224, - "c4": -20.302833831588146, - "c5": -17.376902639832263, - "c6": -0.2679705912636905, - "c7": 36.89134554671201 + "points": { + "c1": -33.01172775438891, + "c2": 39.60653242529376, + "c3": -19.11746401256484, + "c4": 29.364354245605348, + "c5": -0.8966569813583902, + "c6": -13.286846999281437, + "c7": 1.0195417855298956 }, - "vertexSeeds": { - "c1": 6.816154590336751, - "c2": 6.921031457067462, - "c3": 7.112512693869986, - "c4": 7.047828033750004, - "c5": 6.861430507438042, - "c6": 7.0772115621492775, - "c7": 7.112163505832682 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -161844,23 +161844,23 @@ "year": 1755, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": -27.312846350471485, - "c2": 28.45339620150117, - "c3": 34.939431025287284, - "c4": 20.26904254393765, - "c5": -0.3453357033868656, - "c6": 24.911744434371336, - "c7": -29.76417553765156 + "points": { + "c1": 22.532811800209423, + "c2": 19.321145802080373, + "c3": -10.845691605830844, + "c4": -5.372500324376055, + "c5": -43.97030111147921, + "c6": 11.324204641506412, + "c7": 43.38400720880559 }, - "vertexSeeds": { - "c1": 5.5710082890185255, - "c2": 5.568440314349194, - "c3": 5.575751390131769, - "c4": 5.574468281287416, - "c5": 5.566535318973679, - "c6": 5.561045970362281, - "c7": 5.559594623666467 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583684, + "c3": 6.657420249653335, + "c4": 5.325936199722456, + "c5": 3.9944521497921066, + "c6": 2.662968099861228, + "c7": 1.3314840499308789 }, "rgb": [238, 201, 159] }, @@ -161871,23 +161871,23 @@ "year": 1755, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 30.74020218385408, - "c2": -27.87106007417764, - "c3": -22.463632374798856, - "c4": -17.09925834287709, - "c5": 6.909120884858567, - "c6": -6.401447290653596, - "c7": 12.820101573508182 + "points": { + "c1": 17.22988657548597, + "c2": 11.019739135233387, + "c3": -31.659651887446586, + "c4": 1.2140137537479418, + "c5": 23.74279634724231, + "c6": -18.92949526364346, + "c7": 6.561113322070504 }, - "vertexSeeds": { - "c1": 1.2288944414060037, - "c2": 1.378276536077225, - "c3": 1.2411281352097647, - "c4": 1.2650215459204024, - "c5": 1.2937047444946603, - "c6": 1.233973449804559, - "c7": 1.2788435563905973 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.1081830790568663, + "c3": 1.7568192325473897, + "c4": 1.40545538603791, + "c5": 1.0540915395284332, + "c6": 0.7027276930189563, + "c7": 0.35136384650947966 }, "rgb": [86, 146, 138] }, @@ -161898,23 +161898,23 @@ "year": 1755, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -2.228650130149205, - "c2": 1.1047461287248765, - "c3": 22.82622790508387, - "c4": 4.9997718807715685, - "c5": 6.78383385929704, - "c6": -47.637744617274635, - "c7": 43.92945508812804 + "points": { + "c1": -13.083801238724412, + "c2": -22.92060057990584, + "c3": -34.48192053986473, + "c4": -5.498862591070733, + "c5": -12.012539560562516, + "c6": -25.93461620235544, + "c7": 4.607466119869748 }, - "vertexSeeds": { - "c1": 4.440609234786246, - "c2": 4.439945662529222, - "c3": 4.434361401138785, - "c4": 4.438530688071204, - "c5": 4.441433359211199, - "c6": 4.44506233586583, - "c7": 4.4309284449820705 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251071, + "c3": 5.316689782709261, + "c4": 4.253351826167451, + "c5": 3.19001386962543, + "c6": 2.12667591308362, + "c7": 1.06333795654181 }, "rgb": [86, 146, 138] }, @@ -161925,23 +161925,23 @@ "year": 1755, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -14.340482986332361, - "c2": -8.555257999892287, - "c3": -17.673326719222427, - "c4": 23.034004573924413, - "c5": -28.136618311972384, - "c6": -35.95946715407719, - "c7": 4.6931457735574895 + "points": { + "c1": -12.29229076832582, + "c2": -0.9920467444548606, + "c3": 33.28066100326017, + "c4": -33.723860668518455, + "c5": 14.714900908831687, + "c6": -13.320581623764443, + "c7": 3.821547797093345 }, - "vertexSeeds": { - "c1": 5.955315028983296, - "c2": 5.803888056876648, - "c3": 5.989176902303596, - "c4": 6.207278363717922, - "c5": 5.908148905203808, - "c6": 6.438537672064279, - "c7": 5.366900456572217 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554784, + "c3": 7.790106333795654, + "c4": 6.232085067036523, + "c5": 4.674063800277392, + "c6": 3.1160425335182613, + "c7": 1.5580212667591307 }, "rgb": [222, 0, 59] }, @@ -161952,23 +161952,23 @@ "year": 1756, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -44.74225052954722, - "c2": 21.063801769507997, - "c3": 29.898048765999185, - "c4": 44.7584754856286, - "c5": 28.39905729127789, - "c6": 25.388839732628675, - "c7": 15.39069373269529 + "points": { + "c1": -47.64067452570297, + "c2": -8.433638401113207, + "c3": 49.420918392477084, + "c4": -52.521325691893196, + "c5": -22.146183202552415, + "c6": 4.6436938726114505, + "c7": -54.36332718949054 }, - "vertexSeeds": { - "c1": 3.352818950954303, - "c2": 3.420624661716293, - "c3": 3.1324864126710366, - "c4": 3.33533995435771, - "c5": 3.3881706067010318, - "c6": 3.5363675923400333, - "c7": 3.631476601890169 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762828, + "c3": 4.461396208969022, + "c4": 3.56911696717522, + "c5": 2.676837725381414, + "c6": 1.7845584835876076, + "c7": 0.8922792417938062 }, "rgb": [77, 76, 132] }, @@ -161979,23 +161979,23 @@ "year": 1755, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -14.733148692426642, - "c2": -33.521966532435854, - "c3": -1.5225013247624801, - "c4": 26.629901469029008, - "c5": 35.76862083729982, - "c6": -36.65926809669103, - "c7": -1.5341949904816587 + "points": { + "c1": 27.79268544084728, + "c2": 29.64523140682533, + "c3": -27.569718431775478, + "c4": -4.441490530746826, + "c5": -17.41003328568103, + "c6": 0.395617405710631, + "c7": 2.7811453327533613 }, - "vertexSeeds": { - "c1": 8.012184960094732, - "c2": 8.008540071635462, - "c3": 8.021807049071558, - "c4": 8.008845485038512, - "c5": 7.997154798432168, - "c6": 7.9909863092540405, - "c7": 8.001484898414322 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651926, + "c3": 9.570041608876668, + "c4": 7.656033287101411, + "c5": 5.742024965325773, + "c6": 3.828016643550515, + "c7": 1.9140083217752575 }, "rgb": [238, 201, 159] }, @@ -162006,23 +162006,23 @@ "year": 1755, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -20.382291858077625, - "c2": 46.241527299048045, - "c3": -40.318391436624225, - "c4": 35.12536981120152, - "c5": -28.463782514727093, - "c6": 4.282406151309296, - "c7": -25.13057280638757 + "points": { + "c1": 0.8943891508490438, + "c2": -12.716561108448033, + "c3": -14.54520414367623, + "c4": -46.948826878846816, + "c5": -9.239327342772171, + "c6": -1.227263516911151, + "c7": -43.759574556536705 }, - "vertexSeeds": { - "c1": 4.0105328665642075, - "c2": 4.0744785847959735, - "c3": 3.8107471227924217, - "c4": 4.066767742175164, - "c5": 4.267429915940911, - "c6": 4.117845909782543, - "c7": 3.814940097785339 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130374, + "c3": 5.247341655108645, + "c4": 4.197873324086916, + "c5": 3.148404993065187, + "c6": 2.098936662043458, + "c7": 1.049468331021729 }, "rgb": [238, 201, 159] }, @@ -162033,23 +162033,23 @@ "year": 1755, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -29.900597203308656, - "c2": 15.671181816657906, - "c3": 20.721799921105273, - "c4": -33.483668035267954, - "c5": -16.481118851765252, - "c6": 19.521019618315265, - "c7": 33.28615533230854 + "points": { + "c1": 4.166974602097724, + "c2": 6.097122205668633, + "c3": -15.253344967710738, + "c4": -36.235905009943174, + "c5": -23.343343413117797, + "c6": -4.236037843947706, + "c7": -22.31829599995323 }, - "vertexSeeds": { - "c1": 0.7222790499743027, - "c2": 0.8276581949902255, - "c3": 0.7359854197479034, - "c4": 0.705129474547884, - "c5": 0.7507860360295099, - "c6": 0.7787773005155313, - "c7": 0.721793062575646 + "offsets": { + "c1": 1.4563106796116505, + "c2": 1.248266296809986, + "c3": 1.0402219140083215, + "c4": 0.8321775312066582, + "c5": 0.6241331484049936, + "c6": 0.4160887656033291, + "c7": 0.20804438280166454 }, "rgb": [77, 76, 132] }, @@ -162060,23 +162060,23 @@ "year": 1755, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": -14.482514702585142, - "c2": -0.6574886653433225, - "c3": 31.70800054058151, - "c4": 8.29338206416471, - "c5": -32.34981157707825, - "c6": 41.441923158011974, - "c7": 29.28212128867385 + "points": { + "c1": -33.67169369134798, + "c2": -28.25286109317451, + "c3": 39.9439158200871, + "c4": 20.946501107035132, + "c5": 39.770418779307704, + "c6": 50.41771245068098, + "c7": 17.88095320935524 }, - "vertexSeeds": { - "c1": 1.9309427016763412, - "c2": 2.0860015290193137, - "c3": 2.00846676622226, - "c4": 2.0372531068769577, - "c5": 1.7657824001122602, - "c6": 2.016286377239993, - "c7": 2.054513513673322 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.2177531206657415, + "c3": 2.6814609338881192, + "c4": 2.1451687471104948, + "c5": 1.6088765603328707, + "c6": 1.0725843735552485, + "c7": 0.5362921867776242 }, "rgb": [222, 0, 59] }, @@ -162087,23 +162087,23 @@ "year": 1755, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 16.651311963278367, - "c2": -34.72222824553934, - "c3": -44.593343573808625, - "c4": 33.231776043966555, - "c5": -12.145917882765062, - "c6": -12.474744204783626, - "c7": 7.914213254837115 + "points": { + "c1": 12.43022726718418, + "c2": -9.463358803037991, + "c3": 23.352063124856592, + "c4": 24.501051705931353, + "c5": 3.519461373779542, + "c6": -14.50267953967672, + "c7": 29.647888670831 }, - "vertexSeeds": { - "c1": 6.770137410605207, - "c2": 6.618986936323787, - "c3": 6.758114337509834, - "c4": 6.6187137570710615, - "c5": 6.692371245119089, - "c6": 6.607981022763278, - "c7": 6.796164049565286 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.76421636615812, + "c3": 8.136846971798441, + "c4": 6.50947757743872, + "c5": 4.8821081830790405, + "c6": 3.25473878871936, + "c7": 1.62736939435968 }, "rgb": [222, 0, 59] }, @@ -162114,23 +162114,23 @@ "year": 1755, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": 9.059299786962757, - "c2": 15.605254844294311, - "c3": 13.111898550254775, - "c4": 1.2961954866605332, - "c5": 13.691345407466034, - "c6": -9.752551322104965, - "c7": -5.242789666720769 + "points": { + "c1": 12.362204526078056, + "c2": 20.311697020578425, + "c3": -21.39816271195881, + "c4": 13.06308251828418, + "c5": -20.68888103184786, + "c6": -9.641615404511436, + "c7": -11.066763652811886 }, - "vertexSeeds": { - "c1": 8.857896588283198, - "c2": 8.607745897219713, - "c3": 8.57551609283028, - "c4": 8.146925619892539, - "c5": 8.546818517073861, - "c6": 8.894190812398561, - "c7": 8.510289915349976 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.81553398058253, + "c3": 10.679611650485446, + "c4": 8.543689320388347, + "c5": 6.407766990291265, + "c6": 4.271844660194182, + "c7": 2.135922330097099 }, "rgb": [86, 146, 138] }, @@ -162141,23 +162141,23 @@ "year": 1755, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -35.81435361082986, - "c2": -11.904875981580869, - "c3": -28.047613179372327, - "c4": 2.286599621859189, - "c5": -30.36238369214864, - "c6": 10.322098198595306, - "c7": -27.465281013041583 + "points": { + "c1": 37.67041287192125, + "c2": 11.456458516605046, + "c3": 17.980182476641517, + "c4": -24.076953536417196, + "c5": 15.62680254846778, + "c6": 0.8150726077920254, + "c7": -14.147069094464008 }, - "vertexSeeds": { - "c1": 4.169742827342096, - "c2": 4.161978140409993, - "c3": 4.199611675856381, - "c4": 4.1037991311239335, - "c5": 4.1928616069062485, - "c6": 4.170870053816434, - "c7": 3.893614155612819 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -162168,23 +162168,23 @@ "year": 1755, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 6.153333776433655, - "c2": 13.638570982346415, - "c3": 9.209521210770554, - "c4": -22.28326410312815, - "c5": 2.020998443393278, - "c6": -13.250559771590204, - "c7": -23.889294163520468 + "points": { + "c1": -21.918643864716554, + "c2": 16.544137729307472, + "c3": -4.1742006014947926, + "c4": -21.348785816150347, + "c5": 19.334620825019478, + "c6": 5.888164792486698, + "c7": -21.891191999727134 }, - "vertexSeeds": { - "c1": 3.465748455536573, - "c2": 3.529440536790843, - "c3": 3.5575112980681305, - "c4": 3.7146688048708345, - "c5": 3.374448354966461, - "c6": 3.7872689693426116, - "c7": 3.6344790038277575 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [222, 0, 59] }, @@ -162195,23 +162195,23 @@ "year": 1755, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 10.24742930002077, - "c2": -31.584089890586597, - "c3": -26.542259664207105, - "c4": -32.62218845814979, - "c5": 8.60352374808572, - "c6": -30.499296933549648, - "c7": -10.414168576969779 + "points": { + "c1": 31.047881368071316, + "c2": 8.033604138831357, + "c3": -21.703893112235157, + "c4": 16.283188296778988, + "c5": 16.940553682437596, + "c6": -2.8935177771935514, + "c7": -8.817141255147895 }, - "vertexSeeds": { - "c1": 4.501016912123927, - "c2": 4.375977338746401, - "c3": 4.152196294457722, - "c4": 4.60859713123817, - "c5": 4.467887751104156, - "c6": 4.289282068674936, - "c7": 4.322215712166221 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.7961165048543695, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271816, + "c6": 2.2653721682847876, + "c7": 1.1326860841423938 }, "rgb": [222, 0, 59] }, @@ -162222,23 +162222,23 @@ "year": 1755, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -2.2210829705153223, - "c2": 0.8921641942792533, - "c3": -7.28122794857536, - "c4": 13.440381441141145, - "c5": -0.06869993312595035, - "c6": -4.177581008284536, - "c7": 4.821824285385354 + "points": { + "c1": -6.64114949530703, + "c2": 10.18101933689665, + "c3": 5.3822239783111705, + "c4": 14.236457728734706, + "c5": 15.516750958581678, + "c6": -4.733113080465678, + "c7": -14.639241106325443 }, - "vertexSeeds": { - "c1": 1.436989092663891, - "c2": 1.4369519924399072, - "c3": 1.5247592302510171, - "c4": 1.4568037771336482, - "c5": 1.3422616933112228, - "c6": 1.5071515773939632, - "c7": 1.4617419183350175 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217753, + "c3": 1.84928340268146, + "c4": 1.4794267221451673, + "c5": 1.1095700416088783, + "c6": 0.7397133610725856, + "c7": 0.3698566805362928 }, "rgb": [77, 76, 132] }, @@ -162249,23 +162249,23 @@ "year": 1755, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -17.012986286233627, - "c2": -11.062257893534046, - "c3": -31.99553774537636, - "c4": -45.93666248773517, - "c5": -40.13697213053957, - "c6": 19.509815694777274, - "c7": -0.46877928267879554 + "points": { + "c1": -31.621977369878397, + "c2": 1.7534521362291073, + "c3": -7.537394317180052, + "c4": -14.712075673919038, + "c5": 23.1472860213688, + "c6": -44.859087314310884, + "c7": -9.171915532231317 }, - "vertexSeeds": { - "c1": 4.581472852348071, - "c2": 4.733504268633201, - "c3": 5.072884392904846, - "c4": 4.942476805214743, - "c5": 4.67792323065426, - "c6": 5.274013265933289, - "c7": 4.661360304366099 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141476, + "c3": 6.403143781784556, + "c4": 5.12251502542765, + "c5": 3.841886269070738, + "c6": 2.561257512713825, + "c7": 1.2806287563569125 }, "rgb": [58, 15, 49] }, @@ -162276,23 +162276,23 @@ "year": 1755, "resistanceReported": false, "duration": 4752000, - "curveSeeds": { - "c1": -6.037873969503742, - "c2": -13.576972573841708, - "c3": -0.1591045571368337, - "c4": 10.917586840681398, - "c5": 12.685429329748626, - "c6": -0.9307969474727837, - "c7": 14.553692081445334 + "points": { + "c1": -10.537133235857942, + "c2": -1.0249883626533105, + "c3": 14.640310333413893, + "c4": 4.6357808072098585, + "c5": 10.606991905493782, + "c6": 10.67848289205859, + "c7": 1.282748148933674 }, - "vertexSeeds": { - "c1": 7.2242566740587355, - "c2": 7.2220408990515095, - "c3": 6.9241679506426985, - "c4": 6.927009517909085, - "c5": 7.191831745968243, - "c6": 7.278579370200452, - "c7": 6.83944513213898 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -162303,23 +162303,23 @@ "year": 1755, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 23.400962422808846, - "c2": 7.703753047893024, - "c3": -9.849755426436278, - "c4": 4.694203305668104, - "c5": 5.3635826659456, - "c6": 14.563820855406071, - "c7": -24.783856605599738 + "points": { + "c1": -16.391567565970274, + "c2": 8.489203376424989, + "c3": 22.788020023994946, + "c4": 9.386927816423565, + "c5": 21.523654829030264, + "c6": 18.449880027520564, + "c7": 21.941658577586445 }, - "vertexSeeds": { - "c1": 0.5406992122384127, - "c2": 0.5029461357537088, - "c3": 0.49560982801047315, - "c4": 0.4884140508304865, - "c5": 0.5092303543873103, - "c6": 0.5363070279826168, - "c7": 0.537278617610808 + "offsets": { + "c1": 0.9385113268608414, + "c2": 0.8044382801664359, + "c3": 0.6703652334720294, + "c4": 0.5362921867776239, + "c5": 0.4022191400832174, + "c6": 0.26814609338881196, + "c7": 0.13407304669440542 }, "rgb": [238, 201, 159] }, @@ -162330,23 +162330,23 @@ "year": 1755, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -12.732758886406199, - "c2": 17.5221295980024, - "c3": 7.04495267936224, - "c4": 25.52956980870092, - "c5": -29.51368768534845, - "c6": -29.56327859389204, - "c7": -18.180545367779704 + "points": { + "c1": 12.923017163562506, + "c2": -34.32756548118664, + "c3": 0.454915571122541, + "c4": 14.309649155435743, + "c5": 11.8432190723206, + "c6": 19.968567109744754, + "c7": 3.2897654119165693 }, - "vertexSeeds": { - "c1": 4.729239663246112, - "c2": 5.074475616493613, - "c3": 5.210513210888938, - "c4": 5.003718566222135, - "c5": 4.081454353401708, - "c6": 4.6634629726329475, - "c7": 4.976593622677413 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -162357,23 +162357,23 @@ "year": 1756, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 34.019715699114016, - "c2": -27.310197412141875, - "c3": -37.20449728948297, - "c4": 22.31932825459485, - "c5": -13.76211890135395, - "c6": 11.090708193201166, - "c7": 17.56996294542523 + "points": { + "c1": -41.06269371602399, + "c2": -52.22631917758369, + "c3": -13.362433168864484, + "c4": 23.148484963926208, + "c5": -38.071488000352666, + "c6": -53.13133032668163, + "c7": -1.5042453127015065 }, - "vertexSeeds": { - "c1": 2.3902371428741294, - "c2": 2.5435931077016907, - "c3": 2.6415342117124174, - "c4": 2.3572282285341672, - "c5": 2.453737316019363, - "c6": 2.3060654788601607, - "c7": 2.309260324645692 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506233, + "c3": 3.1900138696255183, + "c4": 2.55201109570042, + "c5": 1.9140083217753117, + "c6": 1.27600554785021, + "c7": 0.638002773925105 }, "rgb": [238, 201, 159] }, @@ -162384,23 +162384,23 @@ "year": 1755, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -3.1559158590862353, - "c2": 11.02588161244821, - "c3": 9.705820154215452, - "c4": -21.647614770176425, - "c5": 19.347719163669815, - "c6": -2.1109831270327604, - "c7": -20.057626076910857 + "points": { + "c1": -4.269641273112811, + "c2": -36.49945498492048, + "c3": -12.253543551795335, + "c4": -25.613824884265735, + "c5": -22.527213613416727, + "c6": -0.8839607055626786, + "c7": 23.910131158298597 }, - "vertexSeeds": { - "c1": 1.0165725207545604, - "c2": 0.9130860091296817, - "c3": 0.9384071960383834, - "c4": 1.0454481444620856, - "c5": 0.9023338115202062, - "c6": 1.0187114197617622, - "c7": 1.045278792724111 + "offsets": { + "c1": 1.8446601941747571, + "c2": 1.5811373092926486, + "c3": 1.3176144244105414, + "c4": 1.0540915395284327, + "c5": 0.7905686546463243, + "c6": 0.5270457697642171, + "c7": 0.26352288488210857 }, "rgb": [86, 146, 138] }, @@ -162411,23 +162411,23 @@ "year": 1755, "resistanceReported": true, "duration": 33091200, - "curveSeeds": { - "c1": 26.310814759351715, - "c2": 11.793645002688407, - "c3": -44.411276117637506, - "c4": -26.1373186819716, - "c5": 19.04382331603948, - "c6": -37.44118487492675, - "c7": 21.36646519901575 + "points": { + "c1": -15.685935878192453, + "c2": 7.053346411656719, + "c3": -33.825446465135414, + "c4": -25.37744937909394, + "c5": 40.9758357680917, + "c6": -25.083112684226887, + "c7": -15.72148266884809 }, - "vertexSeeds": { - "c1": 2.1269210971956634, - "c2": 2.478114083812655, - "c3": 2.7117761506030633, - "c4": 2.0577445172020297, - "c5": 2.239483923956442, - "c6": 2.708806650764496, - "c7": 2.480256600637521 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.938973647711511, + "c3": 3.2824780397595923, + "c4": 2.625982431807675, + "c5": 1.9694868238557572, + "c6": 1.3129912159038382, + "c7": 0.6564956079519191 }, "rgb": [58, 15, 49] }, @@ -162438,23 +162438,23 @@ "year": 1756, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -40.55951967365007, - "c2": 0.6438662526003398, - "c3": 29.716017017988207, - "c4": 31.091930161144035, - "c5": 21.373201120936344, - "c6": -5.964006151155772, - "c7": -25.777546410028727 + "points": { + "c1": -29.616014646284608, + "c2": -38.82450233338933, + "c3": 50.34229287960997, + "c4": 9.459657363426864, + "c5": 9.257870216037489, + "c6": -21.971969334963926, + "c7": 12.814861700241039 }, - "vertexSeeds": { - "c1": 3.2612233475462378, - "c2": 3.286877313101485, - "c3": 3.171280095368056, - "c4": 3.235441269362818, - "c5": 3.3284183039378905, - "c6": 3.3475631672371646, - "c7": 3.250825884747888 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159497, + "c3": 4.114655570966252, + "c4": 3.291724456772998, + "c5": 2.4687933425797532, + "c6": 1.645862228386499, + "c7": 0.822931114193245 }, "rgb": [58, 15, 49] }, @@ -162465,23 +162465,23 @@ "year": 1755, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 8.804534459826073, - "c2": 34.1919755960137, - "c3": 9.550900421752175, - "c4": -24.824049649379408, - "c5": 20.129636463893476, - "c6": -22.583998019545252, - "c7": -24.940240389529208 + "points": { + "c1": -37.24282079189656, + "c2": -31.002704783607086, + "c3": -28.172775690299662, + "c4": 23.2289603980501, + "c5": 34.163020869915506, + "c6": -36.094330044023074, + "c7": -26.63049267851367 }, - "vertexSeeds": { - "c1": 2.2039685623089076, - "c2": 2.0166519177062874, - "c3": 2.0185816197328705, - "c4": 2.219420976113863, - "c5": 2.0855037464927757, - "c6": 2.1652794686465255, - "c7": 2.051467297074945 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.217753120665743, + "c3": 2.6814609338881166, + "c4": 2.145168747110494, + "c5": 1.6088765603328714, + "c6": 1.0725843735552492, + "c7": 0.5362921867776225 }, "rgb": [77, 76, 132] }, @@ -162492,23 +162492,23 @@ "year": 1755, "resistanceReported": false, "duration": 3542400, - "curveSeeds": { - "c1": 3.592340190133916, - "c2": -0.23370399063214187, - "c3": -7.428139856529698, - "c4": 5.582996506257773, - "c5": -4.511869475773146, - "c6": 0.3150798636422838, - "c7": 11.090327205116667 + "points": { + "c1": -9.23112963831906, + "c2": 12.391176861413259, + "c3": 9.03914959529108, + "c4": 13.085643646339372, + "c5": 4.429461224329836, + "c6": 1.584769026056259, + "c7": 2.1980981511219024 }, - "vertexSeeds": { - "c1": 3.5874383291482896, - "c2": 3.7342253164297885, - "c3": 3.617607517971408, - "c4": 3.811137518183842, - "c5": 3.8527176961347274, - "c6": 3.469267716869445, - "c7": 3.3975484156990716 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366161, + "c3": 4.808136846971802, + "c4": 3.846509477577438, + "c5": 2.8848821081830804, + "c6": 1.9232547387887222, + "c7": 0.9616273693943582 }, "rgb": [58, 15, 49] }, @@ -162519,23 +162519,23 @@ "year": 1755, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 7.413075287232942, - "c2": -3.942024989926047, - "c3": 24.46260496887308, - "c4": 12.475441703702522, - "c5": -8.293781102320967, - "c6": 11.290009017493126, - "c7": 16.522216223185247 + "points": { + "c1": -20.265124224081536, + "c2": -6.844370522839068, + "c3": -1.0592861924282602, + "c4": -20.661662884292518, + "c5": -31.07053091231806, + "c6": -7.629627778379529, + "c7": -35.62596063780345 }, - "vertexSeeds": { - "c1": 1.1034242931064118, - "c2": 1.2236481424938976, - "c3": 1.078854788567955, - "c4": 1.1636658080764322, - "c5": 1.0696544918649373, - "c6": 1.1747877708292467, - "c7": 1.0583446334191964 + "offsets": { + "c1": 2.1359223300970873, + "c2": 1.8307905686546473, + "c3": 1.5256588072122057, + "c4": 1.2205270457697643, + "c5": 0.915395284327323, + "c6": 0.6102635228848815, + "c7": 0.3051317614424414 }, "rgb": [77, 76, 132] }, @@ -162546,23 +162546,23 @@ "year": 1755, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 19.087109103307803, - "c2": -1.54458721447115, - "c3": -6.910043994720539, - "c4": -11.89760554478827, - "c5": 18.37796524031542, - "c6": 6.474267442738565, - "c7": 20.396401078494982 + "points": { + "c1": 33.58725883529606, + "c2": -27.2800191916729, + "c3": -11.525418333717091, + "c4": 37.187953683949594, + "c5": 7.1992667312060945, + "c6": -33.1938650372762, + "c7": -3.217350105948057 }, - "vertexSeeds": { - "c1": 6.62440789451169, - "c2": 6.839301377284685, - "c3": 6.444482920860572, - "c4": 6.35261786871216, - "c5": 6.4481654450727595, - "c6": 6.511306321520825, - "c7": 6.4291651573346185 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439673, + "c3": 8.298659269533047, + "c4": 6.6389274156264415, + "c5": 4.979195561719837, + "c6": 3.3194637078132105, + "c7": 1.6597318539066053 }, "rgb": [238, 201, 159] }, @@ -162573,23 +162573,23 @@ "year": 1755, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 8.429520902814616, - "c2": -15.85797186906104, - "c3": -8.347526513222359, - "c4": -10.790002185765932, - "c5": -24.328877601538732, - "c6": 16.889607963196717, - "c7": -22.225793543716787 + "points": { + "c1": -21.488732064842814, + "c2": 13.13206260260747, + "c3": 2.0774752205686084, + "c4": -27.09911382222079, + "c5": 22.906719264447453, + "c6": 31.02333156653293, + "c7": 18.22620344383769 }, - "vertexSeeds": { - "c1": 4.344067743893377, - "c2": 4.0140550181441785, - "c3": 4.421585279039544, - "c4": 4.300090086230337, - "c5": 4.051557865457395, - "c6": 4.439781092420072, - "c7": 4.190394449997635 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -162600,23 +162600,23 @@ "year": 1756, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": -26.822683949551738, - "c2": 26.35065131388157, - "c3": 31.68279016546947, - "c4": -13.660780544519312, - "c5": 10.506486486954664, - "c6": 13.17559867180941, - "c7": -10.167637381007644 + "points": { + "c1": -48.667825824929494, + "c2": -18.97445094795551, + "c3": -12.745933165916398, + "c4": 33.80135779132887, + "c5": -1.5269431123630497, + "c6": 33.13212269558082, + "c7": 28.839025249418086 }, - "vertexSeeds": { - "c1": 6.05594467182286, - "c2": 5.69237724413735, - "c3": 5.717759399548049, - "c4": 5.045714835218295, - "c5": 5.881136237338323, - "c6": 5.980903193774581, - "c7": 5.107291867971981 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710123, + "c3": 7.304669440591767, + "c4": 5.843735552473422, + "c5": 4.382801664355067, + "c6": 2.921867776236711, + "c7": 1.4609338881183556 }, "rgb": [77, 76, 132] }, @@ -162627,23 +162627,23 @@ "year": 1755, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 15.133918856041166, - "c2": 6.018638771483108, - "c3": 4.193602175814707, - "c4": 15.96983938760022, - "c5": 18.924249346183192, - "c6": -13.63501871362919, - "c7": 7.812056910651531 + "points": { + "c1": -10.971450065583149, + "c2": 4.752045611290008, + "c3": -26.75344802470046, + "c4": 14.18590880446424, + "c5": -22.039311960491204, + "c6": -1.0332067054284266, + "c7": -13.112823729325147 }, - "vertexSeeds": { - "c1": 2.2940104767907545, - "c2": 2.3049506348053623, - "c3": 2.2588945511738814, - "c4": 2.25690940868158, - "c5": 2.2760773602870707, - "c6": 2.2686491540508826, - "c7": 2.305030411847599 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266264, + "c3": 2.773925104022186, + "c4": 2.219140083217745, + "c5": 1.6643550624133225, + "c6": 1.1095700416088818, + "c7": 0.5547850208044409 }, "rgb": [58, 15, 49] }, @@ -162654,23 +162654,23 @@ "year": 1755, "resistanceReported": false, "duration": 1641600, - "curveSeeds": { - "c1": -9.59241196810454, - "c2": -3.6122224743737803, - "c3": -6.187513249431298, - "c4": 6.290450998470714, - "c5": -1.6027579752733434, - "c6": 9.558964339515338, - "c7": 7.1333688693734665 + "points": { + "c1": -8.482833629927041, + "c2": -6.3839577675242705, + "c3": -9.174036621427502, + "c4": -0.7031589048690208, + "c5": -6.3456257932833555, + "c6": 1.0647037868252163, + "c7": 12.887983581372776 }, - "vertexSeeds": { - "c1": 1.074435329566326, - "c2": 1.1083766198761178, - "c3": 1.1642943616950878, - "c4": 1.1817036021650658, - "c5": 1.1699569063720472, - "c6": 1.089370089538214, - "c7": 1.1523330676256582 + "offsets": { + "c1": 2.1359223300970873, + "c2": 1.8307905686546466, + "c3": 1.5256588072122046, + "c4": 1.220527045769764, + "c5": 0.9153952843273233, + "c6": 0.6102635228848813, + "c7": 0.30513176144244064 }, "rgb": [86, 146, 138] }, @@ -162681,23 +162681,23 @@ "year": 1755, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 8.82034965657219, - "c2": 8.448507817318358, - "c3": -37.35073993928853, - "c4": 29.36230274177432, - "c5": 7.433284853064357, - "c6": -37.258878799227965, - "c7": -1.992848428050344 + "points": { + "c1": -37.88008545940307, + "c2": -10.645294543305837, + "c3": 10.70178788510055, + "c4": -31.885376908055875, + "c5": 33.09077794702586, + "c6": 41.337415480268426, + "c7": -30.0104298750205 }, - "vertexSeeds": { - "c1": 3.7754345468463058, - "c2": 3.820124869055782, - "c3": 3.601104059468639, - "c4": 4.00379134716714, - "c5": 3.654971676875088, - "c6": 3.8698266448383367, - "c7": 3.9498346042860217 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527043, + "c3": 4.900601017105872, + "c4": 3.9204808136846956, + "c5": 2.9403606102635247, + "c6": 1.9602404068423478, + "c7": 0.9801202034211768 }, "rgb": [222, 0, 59] }, @@ -162708,23 +162708,23 @@ "year": 1755, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -12.39367939863818, - "c2": -6.718288090959312, - "c3": 29.43258314452624, - "c4": 4.277042294433301, - "c5": 6.646538745935388, - "c6": -20.49720771099874, - "c7": -1.5835865637564126 + "points": { + "c1": -42.23968109230893, + "c2": 39.909008809157704, + "c3": -7.6614629921635355, + "c4": 39.9662125969168, + "c5": 23.510165567082232, + "c6": -29.94070167554065, + "c7": 10.22829381130132 }, - "vertexSeeds": { - "c1": 5.153982574567505, - "c2": 5.25271334295248, - "c3": 5.153211312682368, - "c4": 5.29178680892064, - "c5": 5.371914352235621, - "c6": 5.258779567173493, - "c7": 5.293970082022914 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221931, + "c3": 6.4493758668515895, + "c4": 5.159500693481288, + "c5": 3.869625520110946, + "c6": 2.579750346740644, + "c7": 1.2898751733703415 }, "rgb": [77, 76, 132] }, @@ -162735,23 +162735,23 @@ "year": 1755, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 5.329974440872299, - "c2": -25.20897789816241, - "c3": 34.115724186364275, - "c4": 8.505792241775936, - "c5": -29.19577406974527, - "c6": 9.521103285067177, - "c7": 21.831561389550252 + "points": { + "c1": 4.4119670777774616, + "c2": -12.987150093121286, + "c3": 6.467679695152256, + "c4": -5.022143269421978, + "c5": -21.669412109095358, + "c6": -4.930102609956876, + "c7": -30.95525605246348 }, - "vertexSeeds": { - "c1": 3.1378231186665806, - "c2": 2.8087375422952516, - "c3": 2.904226215095518, - "c4": 3.1388200770882944, - "c5": 2.918139385053285, - "c6": 2.688660659245479, - "c7": 2.811396063696641 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676839, + "c3": 3.8372630605640343, + "c4": 3.069810448451224, + "c5": 2.3023578363384196, + "c6": 1.5349052242256147, + "c7": 0.7674526121128101 }, "rgb": [222, 0, 59] }, @@ -162762,23 +162762,23 @@ "year": 1755, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -2.17630896415713, - "c2": -5.472594973022659, - "c3": 14.9301708776512, - "c4": 5.460674488179038, - "c5": 28.181553630244842, - "c6": -24.27992210658614, - "c7": 22.523330718272135 + "points": { + "c1": -18.168902015977036, + "c2": 33.153017889727565, + "c3": 3.916414729976367, + "c4": -16.771986899064835, + "c5": 6.544924257588306, + "c6": 7.83770999056393, + "c7": 8.818618132763376 }, - "vertexSeeds": { - "c1": 4.132226792264891, - "c2": 4.027535124152621, - "c3": 4.289921295686621, - "c4": 3.9020846378065395, - "c5": 4.321108405043337, - "c6": 3.813953871759937, - "c7": 3.9184329512131564 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170593, + "c3": 5.270457697642164, + "c4": 4.216366158113729, + "c5": 3.1622746185853, + "c6": 2.1081830790568645, + "c7": 1.0540915395284354 }, "rgb": [58, 15, 49] }, @@ -162789,23 +162789,23 @@ "year": 1755, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 14.656454507417983, - "c2": 31.490720820594376, - "c3": 26.573988703168624, - "c4": -10.681059964361797, - "c5": -9.156055482380875, - "c6": 38.42205193025836, - "c7": 32.34132573643515 + "points": { + "c1": 28.174328845654202, + "c2": -13.590978116633725, + "c3": -21.098867257236822, + "c4": 26.26655522900859, + "c5": 1.5177716329775137, + "c6": -7.171745120402363, + "c7": 29.110008166095426 }, - "vertexSeeds": { - "c1": 4.620597902851046, - "c2": 5.064175904851956, - "c3": 4.394982665634271, - "c4": 4.049626782826649, - "c5": 4.490025246254103, - "c6": 4.842823357063776, - "c7": 4.7384528176553955 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -162816,23 +162816,23 @@ "year": 1756, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -23.945085590545936, - "c2": -4.649582176182072, - "c3": 25.20336793936307, - "c4": -32.51452978226432, - "c5": 26.152700678720386, - "c6": 25.689734031349253, - "c7": 7.803410600651063 + "points": { + "c1": -20.622137763559877, + "c2": 34.75913722435718, + "c3": -6.612999041741794, + "c4": -26.01135511279073, + "c5": -26.325179426648365, + "c6": -17.580432885068696, + "c7": -47.55840358401016 }, - "vertexSeeds": { - "c1": 6.001120195310352, - "c2": 6.108446863623991, - "c3": 6.509710024998383, - "c4": 6.298123174978194, - "c5": 6.530867667173277, - "c6": 6.071828491715486, - "c7": 6.4694184647159325 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.51456310679612, + "c3": 7.928802588996768, + "c4": 6.343042071197417, + "c5": 4.757281553398066, + "c6": 3.171521035598715, + "c7": 1.585760517799351 }, "rgb": [222, 0, 59] }, @@ -162843,23 +162843,23 @@ "year": 1756, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 13.074378679618327, - "c2": -4.313761772210093, - "c3": -5.694999302599157, - "c4": -21.86402249346498, - "c5": 4.290264856048211, - "c6": -32.57565589122173, - "c7": -18.19112151601792 + "points": { + "c1": -8.525402595116354, + "c2": 31.815428935853546, + "c3": 28.703622650605823, + "c4": 33.71650373376295, + "c5": -35.170703068472456, + "c6": -23.65293132817216, + "c7": -30.162141835514777 }, - "vertexSeeds": { - "c1": 4.630302246318019, - "c2": 4.783454523310043, - "c3": 5.141764123942339, - "c4": 4.557140768533773, - "c5": 4.9936940084280215, - "c6": 4.773856847234139, - "c7": 4.5559062662668675 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -162870,23 +162870,23 @@ "year": 1756, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": 19.384293365953297, - "c2": -49.99805723013398, - "c3": -43.79460688890863, - "c4": -9.682018008419789, - "c5": -14.79312238573057, - "c6": 35.83617474467238, - "c7": -9.450702605395414 + "points": { + "c1": 51.54252148598346, + "c2": 60.95546211619981, + "c3": -58.444078809392785, + "c4": -4.253912207107298, + "c5": 13.858354075942259, + "c6": -59.00802849857499, + "c7": -43.87686861777304 }, - "vertexSeeds": { - "c1": 5.313943271598475, - "c2": 4.997699381727686, - "c3": 4.957525406413592, - "c4": 5.090663564181403, - "c5": 4.940997588360441, - "c6": 5.434140946709417, - "c7": 5.434450104850616 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382795, + "c3": 6.541840036985668, + "c4": 5.233472029588541, + "c5": 3.9251040221914004, + "c6": 2.616736014794267, + "c7": 1.3083680073971335 }, "rgb": [222, 0, 59] }, @@ -162897,23 +162897,23 @@ "year": 1756, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -25.172314481578645, - "c2": -23.813710807630912, - "c3": -21.37179040561574, - "c4": 13.757461449897903, - "c5": 39.662914125055636, - "c6": 48.013732548655796, - "c7": -6.98295641609392 + "points": { + "c1": -1.4199829571038052, + "c2": 21.090025958642457, + "c3": -5.468857583231063, + "c4": -9.728996124663908, + "c5": -40.98516200655109, + "c6": 36.46228138119348, + "c7": -17.99877754256194 }, - "vertexSeeds": { - "c1": 3.145429481535204, - "c2": 3.1843002999200776, - "c3": 2.882316619384074, - "c4": 3.180013817328992, - "c5": 3.0371124764944346, - "c6": 2.9760645349408255, - "c7": 3.1723444763230964 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757279, + "c3": 3.8834951456310693, + "c4": 3.106796116504852, + "c5": 2.3300970873786433, + "c6": 1.553398058252426, + "c7": 0.7766990291262089 }, "rgb": [238, 201, 159] }, @@ -162924,23 +162924,23 @@ "year": 1755, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -19.713997037465933, - "c2": 8.129093284578616, - "c3": -4.796599734622244, - "c4": -3.7706465913327776, - "c5": -22.098943027194174, - "c6": -9.162562592889273, - "c7": 15.791790664951023 + "points": { + "c1": 29.81078301709003, + "c2": -28.943257765029596, + "c3": 18.368199768438203, + "c4": 15.833967455766171, + "c5": -13.85179668780065, + "c6": -36.64242017853815, + "c7": -25.9479226026817 }, - "vertexSeeds": { - "c1": 4.43665505163647, - "c2": 4.595892043611626, - "c3": 4.7465098181610035, - "c4": 4.490037516105655, - "c5": 4.31333232205407, - "c6": 4.427519340315254, - "c7": 4.181323278225395 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [86, 146, 138] }, @@ -162951,23 +162951,23 @@ "year": 1756, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": -44.92158229420784, - "c2": 29.99863939080427, - "c3": -32.66728680502365, - "c4": 44.2632335962775, - "c5": -9.816501745878256, - "c6": 18.349523847752252, - "c7": 49.971454811704305 + "points": { + "c1": -34.08838575076294, + "c2": -9.06828162233456, + "c3": -18.607333430324744, + "c4": -25.145619720888348, + "c5": -2.4463549549779273, + "c6": 2.7023362792987484, + "c7": -17.99359634546275 }, - "vertexSeeds": { - "c1": 2.414541494508645, - "c2": 2.401416698854412, - "c3": 2.358381254912473, - "c4": 2.39838309930771, - "c5": 2.4273196125775898, - "c6": 2.470001709483373, - "c7": 2.3459117172932893 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [238, 201, 159] }, @@ -162978,23 +162978,23 @@ "year": 1757, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": -40.653005528594, - "c2": 8.766210831367303, - "c3": 3.862041284496115, - "c4": 77.8817256672819, - "c5": 42.519319951482245, - "c6": 34.97677241644294, - "c7": -54.95932152628326 + "points": { + "c1": -69.47719902256652, + "c2": -54.98549821401528, + "c3": 36.45003435811323, + "c4": 70.68935799306155, + "c5": 57.07927017414181, + "c6": 52.9902224359505, + "c7": 26.373973551875366 }, - "vertexSeeds": { - "c1": 1.3888332466690665, - "c2": 1.4523920148509881, - "c3": 1.4460250419791298, - "c4": 1.4409488350263322, - "c5": 1.4061938582430002, - "c6": 1.4674229239992578, - "c7": 1.444560150999711 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177535, + "c3": 1.8492834026814613, + "c4": 1.479426722145169, + "c5": 1.1095700416088767, + "c6": 0.7397133610725845, + "c7": 0.3698566805362922 }, "rgb": [58, 15, 49] }, @@ -163005,23 +163005,23 @@ "year": 1757, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": -46.3855774863622, - "c2": -62.69149936097121, - "c3": -40.88476471842554, - "c4": -29.975030572033084, - "c5": -14.778299680678657, - "c6": 5.345757610877968, - "c7": -33.4956122104197 + "points": { + "c1": -24.981429565064715, + "c2": 63.11235287616739, + "c3": 9.732738293971423, + "c4": 64.12892106218368, + "c5": 57.97602245927396, + "c6": -57.49895681179677, + "c7": -68.5446575693554 }, - "vertexSeeds": { - "c1": 2.2192312744109444, - "c2": 2.172758436088972, - "c3": 2.2268697015290635, - "c4": 2.3369324340560986, - "c5": 2.18853003122895, - "c6": 2.1038397850788795, - "c7": 2.4351198294505734 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.522884882108182, + "c3": 2.935737401756818, + "c4": 2.3485899214054533, + "c5": 1.7614424410540896, + "c6": 1.1742949607027284, + "c7": 0.5871474803513611 }, "rgb": [86, 146, 138] }, @@ -163032,23 +163032,23 @@ "year": 1757, "resistanceReported": false, "duration": 76204800, - "curveSeeds": { - "c1": 84.29896923594936, - "c2": -68.56406200713792, - "c3": -37.63894904117203, - "c4": -11.275093463985513, - "c5": -43.743959405838964, - "c6": 70.51976144676559, - "c7": 17.650920184147196 + "points": { + "c1": -83.67290479838157, + "c2": -8.119807117380631, + "c3": 56.719848657229505, + "c4": -39.58636804137687, + "c5": 10.790881576751246, + "c6": 85.72303948936076, + "c7": -73.53106654929917 }, - "vertexSeeds": { - "c1": 2.4246522968093394, - "c2": 2.2367010621348524, - "c3": 2.481764464280106, - "c4": 2.196749468071105, - "c5": 2.3619921520476588, - "c6": 2.4390543748603952, - "c7": 2.4420638234351504 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.60610263522885, + "c3": 3.005085529357375, + "c4": 2.404068423485897, + "c5": 1.803051317614423, + "c6": 1.2020342117429486, + "c7": 0.6010171058714743 }, "rgb": [222, 0, 59] }, @@ -163059,23 +163059,23 @@ "year": 1756, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -9.375992199311561, - "c2": 5.13298802322354, - "c3": -44.82462244691276, - "c4": -6.810904888815223, - "c5": -18.3293919753308, - "c6": -34.804001674688166, - "c7": -11.821263383086361 + "points": { + "c1": -30.71150299997489, + "c2": 28.323774369992144, + "c3": -51.94169350857372, + "c4": 39.62103509037566, + "c5": 37.86259880169897, + "c6": 18.653960380839372, + "c7": -45.55567713007949 }, - "vertexSeeds": { - "c1": 1.5803923174318026, - "c2": 1.513214181085231, - "c3": 1.5868813337116618, - "c4": 1.5689689926395711, - "c5": 1.4723996765653156, - "c6": 1.5947938992565975, - "c7": 1.5066512986323508 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.330097087378643, + "c3": 1.9417475728155336, + "c4": 1.5533980582524283, + "c5": 1.1650485436893192, + "c6": 0.7766990291262141, + "c7": 0.38834951456310496 }, "rgb": [86, 146, 138] }, @@ -163086,23 +163086,23 @@ "year": 1756, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": 0.8827784921843431, - "c2": 53.61640498847081, - "c3": 14.880746145417937, - "c4": -36.420793967420096, - "c5": 16.49265483339621, - "c6": -41.202973829227346, - "c7": -19.326600269657845 + "points": { + "c1": 58.403222601054516, + "c2": 6.9241973808588355, + "c3": 31.761492070055446, + "c4": -13.526497024194995, + "c5": -23.064902248863724, + "c6": 58.883217650458555, + "c7": -21.534270010972122 }, - "vertexSeeds": { - "c1": 1.9014951953621642, - "c2": 1.7722430115129035, - "c3": 1.6758255550929728, - "c4": 1.618673174520311, - "c5": 1.9183928303077964, - "c6": 1.671930973990165, - "c7": 1.7961891668170051 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.8571428571428577, + "c3": 2.3809523809523814, + "c4": 1.9047619047619058, + "c5": 1.4285714285714277, + "c6": 0.9523809523809518, + "c7": 0.4761904761904759 }, "rgb": [238, 201, 159] }, @@ -163113,23 +163113,23 @@ "year": 1755, "resistanceReported": false, "duration": 8035200, - "curveSeeds": { - "c1": 11.054322813514542, - "c2": -16.04681986391582, - "c3": 18.65363870865155, - "c4": -16.76849659989373, - "c5": -14.698122638165362, - "c6": -10.760973248225458, - "c7": 11.073642758428381 + "points": { + "c1": -19.430298468861288, + "c2": -10.83487054165733, + "c3": 7.642692871546775, + "c4": 10.184027846930391, + "c5": 13.530184768445693, + "c6": 4.263907377869181, + "c7": 0.47348262812340636 }, - "vertexSeeds": { - "c1": 4.113875718056604, - "c2": 3.980041268498504, - "c3": 4.3129974853679185, - "c4": 4.1116458801003954, - "c5": 4.062104763769191, - "c6": 4.303393111754578, - "c7": 4.343502730462834 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [86, 146, 138] }, @@ -163140,23 +163140,23 @@ "year": 1756, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 7.252121580831783, - "c2": -11.488765567265652, - "c3": -40.01936118033924, - "c4": -13.644346441626059, - "c5": 13.03553091860038, - "c6": -25.379409406475926, - "c7": -23.7450779877622 + "points": { + "c1": -40.499548666721125, + "c2": 3.4265632074000436, + "c3": -0.6751780950063235, + "c4": -33.3292925261363, + "c5": -42.65658300640616, + "c6": 23.872049179526357, + "c7": 6.6110994383511255 }, - "vertexSeeds": { - "c1": 8.385967417478787, - "c2": 8.077131850228898, - "c3": 8.170459117376222, - "c4": 8.167580617349794, - "c5": 7.953406102360366, - "c6": 8.219764160113641, - "c7": 9.02488902713655 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864075, + "c3": 10.841423948220061, + "c4": 8.67313915857606, + "c5": 6.504854368932045, + "c6": 4.33656957928803, + "c7": 2.168284789644015 }, "rgb": [238, 201, 159] }, @@ -163167,23 +163167,23 @@ "year": 1755, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -17.709465414051074, - "c2": 22.325986264978972, - "c3": -4.373469188123067, - "c4": 5.033627970249462, - "c5": -17.635499685161967, - "c6": 17.31802238394622, - "c7": -6.697065941577694 + "points": { + "c1": 26.935445391615914, + "c2": -5.9747696447668375, + "c3": -24.019610724934896, + "c4": 24.613957341022328, + "c5": -13.015919147164205, + "c6": 2.888433960315133, + "c7": -24.630768859347306 }, - "vertexSeeds": { - "c1": 5.874713226592515, - "c2": 5.904029015880997, - "c3": 6.2001914807949525, - "c4": 5.891931389929829, - "c5": 6.762550553035196, - "c6": 6.805140089445019, - "c7": 6.688236572609927 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841882, + "c3": 8.529819694868243, + "c4": 6.823855755894591, + "c5": 5.117891816920941, + "c6": 3.411927877947291, + "c7": 1.7059639389736505 }, "rgb": [77, 76, 132] }, @@ -163194,23 +163194,23 @@ "year": 1756, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": -3.8682372839930323, - "c2": 40.60919663695998, - "c3": 2.1581414253212614, - "c4": -27.91900293995488, - "c5": 5.868763467963454, - "c6": 39.41875454731539, - "c7": -31.30917048639019 + "points": { + "c1": 40.952631798519604, + "c2": 19.801955844446397, + "c3": 24.29966999340411, + "c4": -8.526692204503888, + "c5": -9.70665791078342, + "c6": 3.209364124937423, + "c7": 16.594846799104474 }, - "vertexSeeds": { - "c1": 2.25112084870996, - "c2": 2.1869951616268595, - "c3": 2.439956933976609, - "c4": 2.418364407055975, - "c5": 2.3799716521432734, - "c6": 2.037336996528749, - "c7": 2.3252263704897964 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188627, + "c3": 2.981969486823856, + "c4": 2.3855755894590853, + "c5": 1.7891816920943144, + "c6": 1.1927877947295418, + "c7": 0.5963938973647709 }, "rgb": [222, 0, 59] }, @@ -163221,23 +163221,23 @@ "year": 1756, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -10.750389075118434, - "c2": 1.7463193201707838, - "c3": 23.744400065832785, - "c4": 34.46333067482967, - "c5": -35.98355502071667, - "c6": -25.868854080002105, - "c7": -32.45492716490211 + "points": { + "c1": -30.12916499875817, + "c2": -9.982859464376922, + "c3": 14.955860478533793, + "c4": -12.296055394098971, + "c5": 19.49528542237833, + "c6": -44.06056264833644, + "c7": 31.80807503067448 }, - "vertexSeeds": { - "c1": 4.776446557834318, - "c2": 4.650974738719523, - "c3": 4.120971389950848, - "c4": 4.707216410060171, - "c5": 4.787171669288532, - "c6": 4.743608102493888, - "c7": 4.399869981009786 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [86, 146, 138] }, @@ -163248,23 +163248,23 @@ "year": 1755, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -0.5943399424271192, - "c2": -17.648826877904394, - "c3": 24.194992885515646, - "c4": 30.067026794198227, - "c5": -35.15360667705085, - "c6": 2.8571368184853014, - "c7": -25.308569796505978 + "points": { + "c1": -23.976539418122584, + "c2": -31.072706443952214, + "c3": 2.4218450473706667, + "c4": -11.197857140020659, + "c5": 20.35974308096032, + "c6": 6.524008523369027, + "c7": 21.470506242133716 }, - "vertexSeeds": { - "c1": 10.919178714023502, - "c2": 9.57129978405198, - "c3": 10.49265254919746, - "c4": 9.605342714753043, - "c5": 9.592914706672484, - "c6": 10.661786386271555, - "c7": 9.93637710859136 + "offsets": { + "c1": 18.6084142394822, + "c2": 15.950069348127613, + "c3": 13.291724456772997, + "c4": 10.633379565418409, + "c5": 7.975034674063794, + "c6": 5.316689782709204, + "c7": 2.6583448913545897 }, "rgb": [58, 15, 49] }, @@ -163275,23 +163275,23 @@ "year": 1756, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 16.693745980868812, - "c2": -16.794537997251417, - "c3": 38.52700270938916, - "c4": 38.771346094190015, - "c5": 27.318388479865966, - "c6": -32.48631078056547, - "c7": 26.002375054178565 + "points": { + "c1": 35.37214746763069, + "c2": -25.147505105612346, + "c3": 7.425460375931131, + "c4": -1.1147604765180006, + "c5": -30.470262317414008, + "c6": 12.534389612338714, + "c7": 46.34117751564231 }, - "vertexSeeds": { - "c1": 7.280324962289553, - "c2": 7.253548644636096, - "c3": 6.968709975978607, - "c4": 6.932451404164885, - "c5": 7.440269421306799, - "c6": 7.1902281913479955, - "c7": 7.097067985543281 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -163302,23 +163302,23 @@ "year": 1755, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -30.110393110762836, - "c2": 0.2587884414971171, - "c3": -34.67423291031305, - "c4": 1.5026495566413942, - "c5": -19.82560025993988, - "c6": 9.672691334877669, - "c7": -1.2605831101351086 + "points": { + "c1": 33.960415206380574, + "c2": -6.08340023296261, + "c3": 31.92701466283843, + "c4": -28.77846469430503, + "c5": 1.9630945807245581, + "c6": -7.4956611172152385, + "c7": -2.0534395683348805 }, - "vertexSeeds": { - "c1": 6.046355674361452, - "c2": 5.844446516780977, - "c3": 5.6612221079549485, - "c4": 5.642834800308818, - "c5": 5.571195091118999, - "c6": 5.760645062943191, - "c7": 5.681883362353027 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152565, + "c3": 7.558945908460472, + "c4": 6.047156726768376, + "c5": 4.535367545076283, + "c6": 3.023578363384188, + "c7": 1.511789181692094 }, "rgb": [222, 0, 59] }, @@ -163329,23 +163329,23 @@ "year": 1755, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 24.303634293840616, - "c2": -28.953009922950393, - "c3": 12.683206424806109, - "c4": -16.953499862148128, - "c5": -4.655455163914006, - "c6": -13.99820547676028, - "c7": -10.338937246698741 + "points": { + "c1": -16.934639633496353, + "c2": -8.796083096274629, + "c3": -5.1182279452612285, + "c4": 27.926205136998725, + "c5": -6.900671763306757, + "c6": -8.708156137610587, + "c7": -14.070436760853998 }, - "vertexSeeds": { - "c1": 2.603831294424299, - "c2": 2.6861900245432864, - "c3": 2.70583482179628, - "c4": 2.6713414188779394, - "c5": 2.7558552108537864, - "c6": 2.5870104686311084, - "c7": 2.747254267167692 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.9667128987517386, + "c3": 3.305594082293109, + "c4": 2.6444752658344925, + "c5": 1.9833564493758629, + "c6": 1.3222376329172463, + "c7": 0.6611188164586298 }, "rgb": [238, 201, 159] }, @@ -163356,23 +163356,23 @@ "year": 1756, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -13.92993328060647, - "c2": 12.156314983016337, - "c3": 31.51487835587671, - "c4": -23.36232205693936, - "c5": -18.312398542294194, - "c6": -11.842991031810236, - "c7": -3.3139843728601193 + "points": { + "c1": 18.034465912979023, + "c2": 34.420606542482766, + "c3": -4.802265312294082, + "c4": -19.210995177966375, + "c5": -30.57684905125123, + "c6": 36.31972040983964, + "c7": -29.373532245431306 }, - "vertexSeeds": { - "c1": 5.0886823172693, - "c2": 5.0290479490176985, - "c3": 4.904426900545401, - "c4": 5.392967624213529, - "c5": 4.97580525898054, - "c6": 4.978264154989155, - "c7": 5.577567716023824 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186782, + "c4": 5.344429033749424, + "c5": 4.008321775312065, + "c6": 2.6722145168747056, + "c7": 1.336107258437359 }, "rgb": [58, 15, 49] }, @@ -163383,23 +163383,23 @@ "year": 1755, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 33.7283592289812, - "c2": -19.26885688856355, - "c3": 6.152202572211273, - "c4": -33.246348815170876, - "c5": -35.91782795611427, - "c6": -5.23336120316084, - "c7": -16.817682140358926 + "points": { + "c1": 38.84639263122329, + "c2": 4.224053641557539, + "c3": 14.932036870747709, + "c4": 35.42499477328425, + "c5": -36.472042300061, + "c6": 3.6680277915343567, + "c7": -25.152295395789896 }, - "vertexSeeds": { - "c1": 4.362291700876122, - "c2": 3.987568389556366, - "c3": 4.311993848202488, - "c4": 4.199468044888031, - "c5": 4.524545036385009, - "c6": 4.404883500188323, - "c7": 3.9612019311428557 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [238, 201, 159] }, @@ -163410,23 +163410,23 @@ "year": 1755, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -19.535928474950474, - "c2": -23.54279798201465, - "c3": -11.977372263357811, - "c4": -4.516715591233918, - "c5": 22.830190494596902, - "c6": -25.109514849167688, - "c7": 30.108409856683156 + "points": { + "c1": -12.197076199735221, + "c2": -20.04072268084972, + "c3": 0.12668220578626688, + "c4": -12.023491047784876, + "c5": 33.31755221509039, + "c6": 28.422259973744616, + "c7": 9.053353804178805 }, - "vertexSeeds": { - "c1": 3.0893782383419692, - "c2": 3.0893782383419692, - "c3": 3.0893782383419692, - "c4": 3.0893782383419692, - "c5": 3.0893782383419692, - "c6": 3.0893782383419692, - "c7": 3.0893782383419692 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -163437,23 +163437,23 @@ "year": 1755, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 15.030993524944428, - "c2": -26.00276415815072, - "c3": 0.07967216001963706, - "c4": 14.499902502831276, - "c5": 18.414626003818483, - "c6": 9.081498291283658, - "c7": -10.821902577742168 + "points": { + "c1": -6.984926827372547, + "c2": -15.892612177886232, + "c3": 4.694529365751592, + "c4": -11.307960499680668, + "c5": -4.561773494693085, + "c6": 19.85532484566979, + "c7": 10.367048551213799 }, - "vertexSeeds": { - "c1": 2.0896688265803873, - "c2": 2.2383495486271077, - "c3": 2.1226125026662084, - "c4": 2.1026276582958805, - "c5": 2.075436848877182, - "c6": 2.153472832908393, - "c7": 2.1691550386701404 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826631, + "c3": 2.7739251040221906, + "c4": 2.219140083217754, + "c5": 1.6643550624133134, + "c6": 1.109570041608877, + "c7": 0.5547850208044405 }, "rgb": [238, 201, 159] }, @@ -163464,23 +163464,23 @@ "year": 1755, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 6.524629737842005, - "c2": 9.331012637546095, - "c3": -24.97042870104743, - "c4": -37.958825471995794, - "c5": -5.684911754654777, - "c6": -6.325564130341718, - "c7": 8.97660813956631 + "points": { + "c1": 37.71528178480459, + "c2": -34.7785392973389, + "c3": 5.742578759883671, + "c4": -34.317246367091315, + "c5": 13.647468724035235, + "c6": 35.64546020796229, + "c7": -1.5551083976242097 }, - "vertexSeeds": { - "c1": 4.370481480057413, - "c2": 5.03451425485162, - "c3": 4.742422242767144, - "c4": 4.53852512411761, - "c5": 4.3432728853789655, - "c6": 4.5339716327162005, - "c7": 4.878917591224385 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497917, + "c3": 6.033287101248268, + "c4": 4.826629680998613, + "c5": 3.6199722607489586, + "c6": 2.4133148404993037, + "c7": 1.206657420249655 }, "rgb": [77, 76, 132] }, @@ -163491,23 +163491,23 @@ "year": 1756, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -20.922117471077577, - "c2": -34.54474810382995, - "c3": -11.004017000425115, - "c4": 0.6083005850931258, - "c5": 38.53809782093624, - "c6": -7.590054293844034, - "c7": 14.334340997333747 + "points": { + "c1": -27.106776321237362, + "c2": 28.058623558887525, + "c3": 36.970958647049066, + "c4": 8.792726022029022, + "c5": 27.90106715050664, + "c6": -47.97957326004525, + "c7": -26.40295418085525 }, - "vertexSeeds": { - "c1": 3.6276763863352266, - "c2": 3.7363111389752843, - "c3": 3.3918372085687576, - "c4": 3.420493451021387, - "c5": 3.721341551057936, - "c6": 3.7520226796546137, - "c7": 3.3819659388920096 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843275, + "c3": 4.507628294036057, + "c4": 3.6061026352288477, + "c5": 2.7045769764216376, + "c6": 1.8030513176144196, + "c7": 0.9015256588072098 }, "rgb": [86, 146, 138] }, @@ -163518,23 +163518,23 @@ "year": 1755, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -15.933140169848901, - "c2": 14.663122430451352, - "c3": 25.7881063737863, - "c4": 9.920940425052073, - "c5": -15.758094569469277, - "c6": -21.611297641333472, - "c7": -8.966790749550558 + "points": { + "c1": -22.88074729360701, + "c2": 17.2236336349335, + "c3": 22.35695031312568, + "c4": 13.591200058710797, + "c5": 14.716428810979899, + "c6": 27.38566024842153, + "c7": -6.518723115960697 }, - "vertexSeeds": { - "c1": 2.506437245550664, - "c2": 1.8810755495820373, - "c3": 2.3577248023891735, - "c4": 1.894127517976421, - "c5": 2.0165733931081453, - "c6": 2.3575415264928132, - "c7": 2.5735090240703737 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.2362459546925564, + "c4": 2.5889967637540447, + "c5": 1.9417475728155333, + "c6": 1.2944983818770217, + "c7": 0.6472491909385116 }, "rgb": [58, 15, 49] }, @@ -163545,23 +163545,23 @@ "year": 1755, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 13.106621079935785, - "c2": -34.068155693331526, - "c3": -9.968479755252517, - "c4": -24.589602674043775, - "c5": -18.855137904560245, - "c6": -26.58635160314943, - "c7": -0.25699932197289144 + "points": { + "c1": 14.629464167217272, + "c2": -36.85806305062561, + "c3": -3.1294350013487957, + "c4": 11.580093403183824, + "c5": 13.170757811837937, + "c6": 26.95126592988025, + "c7": 23.32110454227393 }, - "vertexSeeds": { - "c1": 8.156557075168552, - "c2": 8.824815994575854, - "c3": 9.2403933552575, - "c4": 9.338710251333213, - "c5": 8.898316250019336, - "c6": 7.830319062324655, - "c7": 9.345204796057034 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.59223300970874, + "c3": 11.326860841423942, + "c4": 9.061488673139156, + "c5": 6.79611650485437, + "c6": 4.530744336569583, + "c7": 2.2653721682847867 }, "rgb": [222, 0, 59] }, @@ -163572,23 +163572,23 @@ "year": 1755, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -7.759007329028922, - "c2": -38.21905217057265, - "c3": 28.102936958497352, - "c4": -31.014675776551165, - "c5": -7.843647058902786, - "c6": -26.313476861144466, - "c7": 24.38619213765174 + "points": { + "c1": 4.817699033645759, + "c2": 35.063426669720386, + "c3": -35.64504930604015, + "c4": 16.76465302668504, + "c5": 11.301819647079682, + "c6": 7.479912644405275, + "c7": -18.9281573894094 }, - "vertexSeeds": { - "c1": 4.086853027971389, - "c2": 4.402223949023318, - "c3": 4.215907700140166, - "c4": 4.366786613579721, - "c5": 4.331992632576646, - "c6": 3.9693308332702655, - "c7": 4.188501996791724 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703652, + "c4": 3.6985668053629213, + "c5": 2.773925104022191, + "c6": 1.8492834026814606, + "c7": 0.9246417013407303 }, "rgb": [58, 15, 49] }, @@ -163599,23 +163599,23 @@ "year": 1755, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -10.190875747309416, - "c2": -25.291302470952893, - "c3": 23.56051130044476, - "c4": -16.07133125986028, - "c5": -35.10996082937624, - "c6": -37.94096605868997, - "c7": -19.86890434976311 + "points": { + "c1": 5.390091899571814, + "c2": 6.247966547110934, + "c3": 34.217014569232674, + "c4": -15.774417168182456, + "c5": 35.236468337109514, + "c6": 11.33923140588351, + "c7": -23.411936210904656 }, - "vertexSeeds": { - "c1": 1.5524160346806741, - "c2": 1.6367896999366205, - "c3": 1.6838073884079068, - "c4": 1.5144717626500237, - "c5": 1.6401686884732178, - "c6": 1.5523324203057765, - "c7": 1.5077008410058232 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.468793342579751, + "c3": 2.057327785483126, + "c4": 1.6458622283865014, + "c5": 1.2343966712898768, + "c6": 0.8229311141932494, + "c7": 0.4114655570966247 }, "rgb": [222, 0, 59] }, @@ -163626,23 +163626,23 @@ "year": 1755, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 26.51191850562195, - "c2": 9.909250154585806, - "c3": -25.27953288811138, - "c4": -20.317383901161186, - "c5": 15.963905581050938, - "c6": 28.320609412960096, - "c7": -29.948446101634694 + "points": { + "c1": 22.857450964558403, + "c2": -36.25313852647386, + "c3": -21.015134977185852, + "c4": -3.237226897740946, + "c5": 33.30860212402218, + "c6": -14.82140406307698, + "c7": -20.81911633711283 }, - "vertexSeeds": { - "c1": 2.128065447279953, - "c2": 2.2363216164348367, - "c3": 2.203140059555883, - "c4": 2.289602537531804, - "c5": 2.0902521145905957, - "c6": 2.235059726954621, - "c7": 2.154647061437558 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070747, + "c3": 2.8201571890892265, + "c4": 2.256125751271382, + "c5": 1.6920943134535373, + "c6": 1.128062875635689, + "c7": 0.5640314378178445 }, "rgb": [77, 76, 132] }, @@ -163653,23 +163653,23 @@ "year": 1756, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": 20.72917191574708, - "c2": 2.585898559435371, - "c3": -6.19845010651499, - "c4": 14.104416399486588, - "c5": 45.994120178393565, - "c6": 15.941502142797255, - "c7": -31.86783968349592 + "points": { + "c1": 25.113561463640558, + "c2": 11.452629144254736, + "c3": 4.903002792546225, + "c4": -25.970908796841528, + "c5": -43.07536894805844, + "c6": -22.898883946769644, + "c7": 37.48045524350368 }, - "vertexSeeds": { - "c1": 5.661024475648375, - "c2": 5.463720548383104, - "c3": 5.644042369503056, - "c4": 6.098742557211745, - "c5": 5.817346528734557, - "c6": 6.131203389733279, - "c7": 5.857454367967465 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790565, + "c3": 7.350901525658799, + "c4": 5.8807212205270485, + "c5": 4.410540915395282, + "c6": 2.9403606102635167, + "c7": 1.4701803051317506 }, "rgb": [222, 0, 59] }, @@ -163680,23 +163680,23 @@ "year": 1755, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 16.505540667070427, - "c2": -34.64856313663697, - "c3": 5.7132053962028095, - "c4": -24.213359070838074, - "c5": -34.18327641347273, - "c6": 9.314237403333358, - "c7": -27.402003112959353 + "points": { + "c1": 4.499593140804912, + "c2": 12.952011075547404, + "c3": 18.25383481039178, + "c4": -28.46774793323422, + "c5": -2.370800486194099, + "c6": -36.605598054545254, + "c7": -12.145230594724001 }, - "vertexSeeds": { - "c1": 5.7812184538491485, - "c2": 6.667845822471443, - "c3": 6.608810992228591, - "c4": 6.372029409652558, - "c5": 5.825197584228971, - "c6": 6.1179855589784085, - "c7": 5.728496344176164 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.20619509939898, + "c4": 6.564956079519189, + "c5": 4.923717059639396, + "c6": 3.2824780397595945, + "c7": 1.6412390198798021 }, "rgb": [77, 76, 132] }, @@ -163707,23 +163707,23 @@ "year": 1756, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 11.894306638416936, - "c2": 34.977648451283486, - "c3": 13.267451262412685, - "c4": -19.759981170865597, - "c5": -0.35901037539845504, - "c6": 2.9982049097565735, - "c7": 9.807933505755074 + "points": { + "c1": 2.9197555610578476, + "c2": -24.370366862230323, + "c3": -23.22390294731855, + "c4": -33.44691674008209, + "c5": 9.166825467697478, + "c6": -39.12459317889829, + "c7": -16.207821633514474 }, - "vertexSeeds": { - "c1": 4.624352331606217, - "c2": 4.624352331606217, - "c3": 4.624352331606217, - "c4": 4.624352331606217, - "c5": 4.624352331606217, - "c6": 4.624352331606217, - "c7": 4.624352331606217 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -163734,23 +163734,23 @@ "year": 1755, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 5.713059227613503, - "c2": -14.949815444558253, - "c3": -19.080584575734843, - "c4": -8.168835730682066, - "c5": 18.110463627935797, - "c6": 12.876797769089418, - "c7": 0.36689313300919935 + "points": { + "c1": -11.70691518689738, + "c2": 28.221586823543507, + "c3": -14.642375734477383, + "c4": 16.82938772094573, + "c5": 12.853189245164938, + "c6": 22.03076430200313, + "c7": -25.287719586245363 }, - "vertexSeeds": { - "c1": 2.559816340075306, - "c2": 2.6032195384679544, - "c3": 2.2559344167439126, - "c4": 2.4463664409734927, - "c5": 2.4487462167012892, - "c6": 2.189863931331461, - "c7": 2.464405388942028 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429958, + "c3": 3.1206657420249653, + "c4": 2.496532593619972, + "c5": 1.872399445214979, + "c6": 1.248266296809986, + "c7": 0.624133148404993 }, "rgb": [86, 146, 138] }, @@ -163761,23 +163761,23 @@ "year": 1755, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -30.534163512151153, - "c2": 21.840934750538466, - "c3": -19.457784780232625, - "c4": 3.3310756200704716, - "c5": 24.867765997762582, - "c6": -2.7019692879645696, - "c7": 21.156102916142274 + "points": { + "c1": -25.88556625486674, + "c2": 16.841688084353784, + "c3": 9.480706412528406, + "c4": -24.590972266533186, + "c5": 15.866798739667637, + "c6": 15.126850827164105, + "c7": -10.942475925503203 }, - "vertexSeeds": { - "c1": 5.04805348874284, - "c2": 5.428004043654397, - "c3": 5.220234009906503, - "c4": 5.802142702522793, - "c5": 5.689605503730639, - "c6": 5.590491993536537, - "c7": 5.1024855800338775 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [222, 0, 59] }, @@ -163788,23 +163788,23 @@ "year": 1756, "resistanceReported": false, "duration": 39225600, - "curveSeeds": { - "c1": 32.22278308998586, - "c2": 50.32508470980863, - "c3": -32.1280267987502, - "c4": -49.46958994658489, - "c5": -7.514950261471704, - "c6": 32.60163488888012, - "c7": 48.475479657232164 + "points": { + "c1": 47.096606653142636, + "c2": 11.288894498456479, + "c3": -37.131885560884065, + "c4": 1.9092551030686948, + "c5": 2.882142136502246, + "c6": 17.576894905167016, + "c7": -3.958668968193159 }, - "vertexSeeds": { - "c1": 3.3386532809104654, - "c2": 3.278137653853353, - "c3": 3.4208136552462385, - "c4": 3.299107635075383, - "c5": 3.252007935405156, - "c6": 3.3404600895660144, - "c7": 3.549186163476944 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400828, + "c3": 4.2533518261673615, + "c4": 3.4026814609338856, + "c5": 2.552011095700419, + "c6": 1.7013407304669428, + "c7": 0.8506703652334762 }, "rgb": [86, 146, 138] }, @@ -163815,23 +163815,23 @@ "year": 1755, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 17.609421971471647, - "c2": 22.855464010702853, - "c3": 9.840309157983945, - "c4": 21.5445039654642, - "c5": 11.71953257688584, - "c6": 2.6990404925183498, - "c7": 3.232388887421237 + "points": { + "c1": -3.2378760095784003, + "c2": 0.21268613951574622, + "c3": -7.718240663225455, + "c4": 22.177909212361875, + "c5": -12.854532137885776, + "c6": -30.664887095871876, + "c7": -26.72553229761864 }, - "vertexSeeds": { - "c1": 3.101476153299319, - "c2": 2.9389822694130934, - "c3": 3.0315979499388055, - "c4": 3.117774535557545, - "c5": 2.9159167390571685, - "c6": 3.0561381617610337, - "c7": 2.8451578999137435 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676834, + "c3": 3.8372630605640325, + "c4": 3.0698104484512223, + "c5": 2.302357836338421, + "c6": 1.5349052242256112, + "c7": 0.7674526121128097 }, "rgb": [77, 76, 132] }, @@ -163842,23 +163842,23 @@ "year": 1755, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 16.995352270259534, - "c2": -24.400516597847794, - "c3": -16.537385039671165, - "c4": -22.02120480395873, - "c5": 4.141977722349861, - "c6": 0.1581629785936407, - "c7": -13.727304876083519 + "points": { + "c1": -17.389249228462052, + "c2": -29.897703134882104, + "c3": 16.297681592046967, + "c4": 26.1255775913089, + "c5": 16.9438123448143, + "c6": -23.218694572784596, + "c7": -3.7598616826585882 }, - "vertexSeeds": { - "c1": 4.08738817540182, - "c2": 4.595358665900565, - "c3": 4.728200241195474, - "c4": 5.237637688512995, - "c5": 5.110549637390932, - "c6": 4.606908581945741, - "c7": 4.459652242736455 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -163869,23 +163869,23 @@ "year": 1756, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -28.927506492994787, - "c2": -12.361840427770357, - "c3": -4.309655427170824, - "c4": 35.102091389496834, - "c5": 34.106500633102726, - "c6": 9.90799124975129, - "c7": 1.4100634586177918 + "points": { + "c1": -3.3327226392749054, + "c2": -30.089329433855134, + "c3": 18.486921297782686, + "c4": 23.189194370525158, + "c5": 3.044492006519313, + "c6": -14.766458423323332, + "c7": 4.313578591918514 }, - "vertexSeeds": { - "c1": 6.586668821595736, - "c2": 6.412659921726886, - "c3": 6.628201730329747, - "c4": 6.590281790198113, - "c5": 6.367749423247987, - "c6": 7.486511572228973, - "c7": 6.929841514353791 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.2464170134073, + "c4": 7.397133610725842, + "c5": 5.547850208044384, + "c6": 3.6985668053629257, + "c7": 1.8492834026814577 }, "rgb": [86, 146, 138] }, @@ -163896,23 +163896,23 @@ "year": 1755, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 19.36451088926713, - "c2": -2.65299181282699, - "c3": -22.332064537101903, - "c4": -22.845601018338183, - "c5": 36.48121160955972, - "c6": 16.201974541199803, - "c7": -6.982824049350242 + "points": { + "c1": -3.975682752995212, + "c2": 12.236088227543313, + "c3": 35.76079161295132, + "c4": -1.0418839777728337, + "c5": 1.3499351766886605, + "c6": -15.956040088336088, + "c7": 21.228128907025635 }, - "vertexSeeds": { - "c1": 2.9722884190142005, - "c2": 2.8257983764792556, - "c3": 3.0162617849977424, - "c4": 3.13462856371707, - "c5": 3.022910303075454, - "c6": 3.2405964123729922, - "c7": 3.124171310726202 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797502, + "c3": 3.906611188164589, + "c4": 3.12528895053167, + "c5": 2.343966712898751, + "c6": 1.5626444752658317, + "c7": 0.7813222376329191 }, "rgb": [58, 15, 49] }, @@ -163923,23 +163923,23 @@ "year": 1756, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 30.564916447172692, - "c2": -9.778045482573042, - "c3": 34.82019310078992, - "c4": -19.59943825262728, - "c5": -34.42060657305228, - "c6": 23.8842764295021, - "c7": 6.667774706408309 + "points": { + "c1": -37.56031790366807, + "c2": -3.8560423645739306, + "c3": -34.69036641738926, + "c4": -7.552967222719342, + "c5": -2.190530353588791, + "c6": -10.365577205745847, + "c7": -12.26528994499861 }, - "vertexSeeds": { - "c1": 7.011787577639185, - "c2": 6.84506663287719, - "c3": 7.2147797393011945, - "c4": 7.325968059382842, - "c5": 6.926094645311412, - "c6": 7.294596013033634, - "c7": 7.349709294853796 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -163950,23 +163950,23 @@ "year": 1756, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -23.44706275804281, - "c2": 12.213776305833164, - "c3": 6.946617553368476, - "c4": -16.113130825831508, - "c5": 37.24508156518298, - "c6": -23.69789603321413, - "c7": 42.88815888743323 + "points": { + "c1": 44.19227173906901, + "c2": 40.2076525975591, + "c3": -36.083307736060526, + "c4": 4.346070822298202, + "c5": -5.810318242098262, + "c6": -11.078722878910085, + "c7": -32.33114762064389 }, - "vertexSeeds": { - "c1": 8.021212561597284, - "c2": 8.061415619597396, - "c3": 8.111031970222475, - "c4": 8.015334851619869, - "c5": 8.050180590353678, - "c6": 7.95955075893746, - "c7": 8.068304078803141 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852959, + "c3": 9.685621821544107, + "c4": 7.748497457235333, + "c5": 5.8113730929264795, + "c6": 3.8742487286176273, + "c7": 1.9371243643087752 }, "rgb": [222, 0, 59] }, @@ -163977,23 +163977,23 @@ "year": 1756, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": 8.499386154857987, - "c2": 1.0045008434641218, - "c3": 44.219887748563316, - "c4": 1.8275693698494209, - "c5": 29.984822082588032, - "c6": -1.93252663152618, - "c7": 19.08428765144607 + "points": { + "c1": 34.34052397490699, + "c2": -25.382678635390818, + "c3": -35.689323917594365, + "c4": -33.33624619389928, + "c5": -39.608496827593484, + "c6": 17.280003165440682, + "c7": -30.943306614847835 }, - "vertexSeeds": { - "c1": 7.308343860669755, - "c2": 6.984359776882936, - "c3": 7.421531094432482, - "c4": 6.95457150523687, - "c5": 6.806411880711957, - "c6": 7.357289569617579, - "c7": 7.3076881775800935 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -164004,23 +164004,23 @@ "year": 1756, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 46.42005946143831, - "c2": 16.83735227442098, - "c3": -18.73955221732911, - "c4": -6.545328889187893, - "c5": -34.64082344733411, - "c6": -5.661928010829158, - "c7": 9.761562326660794 + "points": { + "c1": -38.38719502780931, + "c2": 12.077674851006762, + "c3": -2.0046538942461254, + "c4": 27.513534951910017, + "c5": 16.038834809145243, + "c6": 38.56782458757448, + "c7": -9.495500123290434 }, - "vertexSeeds": { - "c1": 13.58160621761658, - "c2": 13.58160621761658, - "c3": 13.58160621761658, - "c4": 13.58160621761658, - "c5": 13.58160621761658, - "c6": 13.58160621761658, - "c7": 13.58160621761658 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -164031,23 +164031,23 @@ "year": 1756, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 17.20541975890574, - "c2": -24.10483041845136, - "c3": 17.861621598356173, - "c4": -14.832157500147467, - "c5": -26.173737590140465, - "c6": 49.45933066678497, - "c7": -16.740829918991473 + "points": { + "c1": 2.687329985958975, + "c2": 16.180523468292087, + "c3": -38.944539697507444, + "c4": 42.75115985108835, + "c5": 24.41341907317399, + "c6": 26.146244473123666, + "c7": 6.2243317563397795 }, - "vertexSeeds": { - "c1": 7.501667180295362, - "c2": 7.564631660220107, - "c3": 7.062758987666584, - "c4": 7.393324300489217, - "c5": 8.104810955731256, - "c6": 7.824473144256111, - "c7": 7.453723243091666 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [77, 76, 132] }, @@ -164058,23 +164058,23 @@ "year": 1756, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -23.60094164370514, - "c2": 25.563382858042814, - "c3": 32.81917262393969, - "c4": -25.17534735510567, - "c5": -37.5496377604542, - "c6": -23.387559414452127, - "c7": 26.969820953883385 + "points": { + "c1": -31.026147524971343, + "c2": 26.112976640959715, + "c3": -34.11145601166561, + "c4": -17.504447275977036, + "c5": 31.287296964541625, + "c6": -28.38182252339272, + "c7": -40.140528052708476 }, - "vertexSeeds": { - "c1": 3.0870720364816893, - "c2": 3.2240792313582913, - "c3": 3.0960892614012057, - "c4": 2.9758068472817714, - "c5": 3.2423394710471105, - "c6": 2.9449973704714694, - "c7": 3.098718146299646 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.6601941747572795, + "c3": 3.883495145631069, + "c4": 3.1067961165048525, + "c5": 2.330097087378643, + "c6": 1.5533980582524263, + "c7": 0.7766990291262165 }, "rgb": [238, 201, 159] }, @@ -164085,23 +164085,23 @@ "year": 1755, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -4.5389299107162735, - "c2": 11.00890174277282, - "c3": 4.629891245269079, - "c4": -11.85355153819404, - "c5": 15.319394407357834, - "c6": -33.10259043041157, - "c7": 22.184860885292153 + "points": { + "c1": -30.86021213942439, + "c2": 2.552167649134738, + "c3": -26.246302797576767, + "c4": -20.69817111020081, + "c5": -29.539853005840524, + "c6": -9.601906361502976, + "c7": 28.233316524007073 }, - "vertexSeeds": { - "c1": 8.957512755468976, - "c2": 8.473816916216808, - "c3": 7.673708041141879, - "c4": 7.869184095181039, - "c5": 9.143497434693186, - "c6": 8.2218485659659, - "c7": 8.410379868483046 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.12066574202497, + "c3": 10.933888118354144, + "c4": 8.747110494683309, + "c5": 6.560332871012485, + "c6": 4.37355524734166, + "c7": 2.186777623670825 }, "rgb": [58, 15, 49] }, @@ -164112,23 +164112,23 @@ "year": 1756, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 25.875265372249352, - "c2": 8.875778072541081, - "c3": -11.340441873099628, - "c4": -29.19761597195698, - "c5": -19.509058594281186, - "c6": -9.947438678579836, - "c7": -8.758091322066385 + "points": { + "c1": -32.32690272965252, + "c2": -4.579988306976844, + "c3": -12.50550634868766, + "c4": -6.720961640850355, + "c5": -41.11221376462811, + "c6": 2.1166469983476333, + "c7": 35.4551041624083 }, - "vertexSeeds": { - "c1": 7.464949816868281, - "c2": 7.943064095626702, - "c3": 8.1901019799667, - "c4": 7.477108971151123, - "c5": 8.240438231770543, - "c6": 7.906706985152979, - "c7": 8.220148308665125 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.2884882108183, + "c3": 10.240406842348591, + "c4": 8.192325473878867, + "c5": 6.144244105409157, + "c6": 4.096162736939434, + "c7": 2.0480813684697106 }, "rgb": [238, 201, 159] }, @@ -164139,23 +164139,23 @@ "year": 1755, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -33.71769684171421, - "c2": 8.332542060746796, - "c3": 28.459264777441888, - "c4": -32.696455879594886, - "c5": 24.32662349120848, - "c6": -1.5425982303135513, - "c7": -20.459859178767047 + "points": { + "c1": -26.179491941449683, + "c2": 17.546082058152997, + "c3": -22.631385783126063, + "c4": -14.344323132294104, + "c5": 23.957376699958502, + "c6": -15.483647050053285, + "c7": -21.85110638416674 }, - "vertexSeeds": { - "c1": 7.927670293931424, - "c2": 7.257677091103496, - "c3": 7.129028129155914, - "c4": 8.080998570278034, - "c5": 7.157648339547206, - "c6": 8.506477448958004, - "c7": 7.010439873415508 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737866, + "c3": 10.194174757281557, + "c4": 8.155339805825246, + "c5": 6.1165048543689275, + "c6": 4.077669902912619, + "c7": 2.0388349514563093 }, "rgb": [58, 15, 49] }, @@ -164166,23 +164166,23 @@ "year": 1756, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -0.9850094973955876, - "c2": 8.72519264386159, - "c3": 8.064000507682557, - "c4": -31.18217735646849, - "c5": 5.006925609630002, - "c6": 29.294309537419515, - "c7": -7.431333397394283 + "points": { + "c1": 5.942048198150744, + "c2": 0.03437567704926181, + "c3": -20.68348984513493, + "c4": -13.077753121047529, + "c5": -6.306737238716671, + "c6": 6.638534261197854, + "c7": -8.239491184735119 }, - "vertexSeeds": { - "c1": 4.218869230798, - "c2": 4.745767850396447, - "c3": 4.755363812771091, - "c4": 4.5794748822135904, - "c5": 5.024621184800934, - "c6": 4.362639353301608, - "c7": 4.611767616699476 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -164193,23 +164193,23 @@ "year": 1755, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 21.553723731168134, - "c2": -29.47799360389301, - "c3": 29.196344577390285, - "c4": -9.213308951759398, - "c5": -24.853410851683556, - "c6": -23.50429468897494, - "c7": 12.432299430639233 + "points": { + "c1": -16.465682975551427, + "c2": -23.608436794249847, + "c3": 26.787938213507907, + "c4": -25.95133082384327, + "c5": 29.603745463067355, + "c6": -21.155963259763233, + "c7": 25.74422934415911 }, - "vertexSeeds": { - "c1": 4.050014999440576, - "c2": 4.686613790310989, - "c3": 4.516625499536108, - "c4": 4.137075735470003, - "c5": 4.095902139290053, - "c6": 4.742007575043262, - "c7": 4.53642904847883 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -164220,23 +164220,23 @@ "year": 1756, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -28.97401404888482, - "c2": -30.523974493024337, - "c3": 28.779332212964327, - "c4": -18.475884886802298, - "c5": 12.642202135010784, - "c6": 26.270989644437655, - "c7": 22.37864519959838 + "points": { + "c1": 33.563355327026024, + "c2": -7.368910877113528, + "c3": -30.039085442130496, + "c4": 29.66630725704683, + "c5": 23.282177524055754, + "c6": 7.685047382511826, + "c7": 4.243339575222173 }, - "vertexSeeds": { - "c1": 4.9735819624433155, - "c2": 4.657532164894539, - "c3": 4.273936531753282, - "c4": 4.64536102196965, - "c5": 4.964725156662085, - "c6": 4.631440606787658, - "c7": 4.836729139575522 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337029, + "c3": 5.940822931114194, + "c4": 4.752658344891352, + "c5": 3.5644937586685113, + "c6": 2.376329172445676, + "c7": 1.1881645862228347 }, "rgb": [77, 76, 132] }, @@ -164247,23 +164247,23 @@ "year": 1756, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 4.733217305036959, - "c2": -5.876338662643903, - "c3": -6.079793887463772, - "c4": -8.518632393039148, - "c5": -27.271709868662036, - "c6": 43.84598651314283, - "c7": -6.742590672770156 + "points": { + "c1": 15.736994324671706, + "c2": 6.1744604344273455, + "c3": 21.949666835715206, + "c4": 5.827567237468429, + "c5": -3.5295870548892125, + "c6": -30.887699040091768, + "c7": -7.954393216092107 }, - "vertexSeeds": { - "c1": 8.040811290675729, - "c2": 8.00980975995653, - "c3": 7.7263075232401395, - "c4": 8.033483322459121, - "c5": 7.875602472635619, - "c6": 7.722417647227528, - "c7": 8.07156226750124 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933433, + "c3": 9.731853906611175, + "c4": 7.785483125288946, + "c5": 5.8391123439667165, + "c6": 3.8927415626444577, + "c7": 1.9463707813222288 }, "rgb": [222, 0, 59] }, @@ -164274,23 +164274,23 @@ "year": 1755, "resistanceReported": false, "duration": 8035200, - "curveSeeds": { - "c1": 3.02096853870696, - "c2": -4.177252379769234, - "c3": -14.84746346755427, - "c4": 12.94790331131345, - "c5": -9.055788727354, - "c6": 15.40098190968964, - "c7": -8.825534040200663 + "points": { + "c1": -8.374090804504073, + "c2": 16.945281582536516, + "c3": 0.6198201491624857, + "c4": 15.93342732348598, + "c5": -10.148210805174456, + "c6": 13.628794652982734, + "c7": -0.8848833771566937 }, - "vertexSeeds": { - "c1": 6.2785790899118075, - "c2": 5.770303748578774, - "c3": 5.614445812840463, - "c4": 6.2079246246288005, - "c5": 6.488835598148764, - "c6": 5.6109915475196, - "c7": 6.222515063657144 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957, + "c3": 8.021266759130839, + "c4": 6.417013407304666, + "c5": 4.812760055478505, + "c6": 3.208506703652333, + "c7": 1.604253351826172 }, "rgb": [58, 15, 49] }, @@ -164301,23 +164301,23 @@ "year": 1756, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 9.746081059264519, - "c2": -16.207678981549073, - "c3": -2.5887591954671194, - "c4": -22.94595511986699, - "c5": -22.066400166392782, - "c6": 32.268597197616955, - "c7": 13.25659594283772 + "points": { + "c1": -25.608736938324963, + "c2": -17.747862823032932, + "c3": -23.373996974697643, + "c4": -18.735852685476278, + "c5": -5.418518346208089, + "c6": 21.42444120028957, + "c7": 1.8049660574882012 }, - "vertexSeeds": { - "c1": 5.057163917008289, - "c2": 4.493566657007448, - "c3": 4.339157671224093, - "c4": 4.253112865746942, - "c5": 4.203226630416418, - "c6": 4.641077921577253, - "c7": 4.583810309582725 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -164328,23 +164328,23 @@ "year": 1755, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 9.030562239232452, - "c2": -9.795083729061123, - "c3": 15.452817984389455, - "c4": -0.35334010397470905, - "c5": 8.47333229648602, - "c6": -27.192642770523896, - "c7": 3.4872785056150093 + "points": { + "c1": -31.55914704852891, + "c2": 29.116630715630805, + "c3": 19.939785480961824, + "c4": -20.62626103863722, + "c5": 11.504695038511983, + "c6": 16.982172453693074, + "c7": 22.63422672713135 }, - "vertexSeeds": { - "c1": 4.2192088827090695, - "c2": 4.4467351464146745, - "c3": 4.2184608585677905, - "c4": 4.131202631536659, - "c5": 4.78040370083982, - "c6": 4.707275329830972, - "c7": 4.398367519173857 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -164355,23 +164355,23 @@ "year": 1756, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -16.281744525865047, - "c2": -21.588214585523318, - "c3": -6.859646139751128, - "c4": 32.876146035961355, - "c5": -31.0361631774685, - "c6": -24.907530667638532, - "c7": 12.359209857113697 + "points": { + "c1": 8.23909987563632, + "c2": 30.289584210438846, + "c3": -31.448534640246482, + "c4": -13.592502329718041, + "c5": 14.52539053512455, + "c6": -3.7404647040225427, + "c7": 26.213655740407653 }, - "vertexSeeds": { - "c1": 6.68240308781051, - "c2": 6.6988479958743525, - "c3": 6.68528233841196, - "c4": 6.721184187867948, - "c5": 6.69241247997218, - "c6": 6.685109375998466, - "c7": 6.709408447034095 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.65325936199727, + "c3": 8.044382801664286, + "c4": 6.435506241331461, + "c5": 4.826629680998635, + "c6": 3.2177531206658103, + "c7": 1.608876560332825 }, "rgb": [222, 0, 59] }, @@ -164382,23 +164382,23 @@ "year": 1756, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 38.00045265787422, - "c2": -37.38980483835696, - "c3": 30.04084902989905, - "c4": 1.6737384223915086, - "c5": -36.38613299031731, - "c6": -23.81546662802496, - "c7": -2.8893636959907596 + "points": { + "c1": 38.41851143541112, + "c2": 26.521762282256404, + "c3": -22.067253790656338, + "c4": -25.342178458828776, + "c5": -27.660195693904964, + "c6": 43.45553678209146, + "c7": 40.230853148149336 }, - "vertexSeeds": { - "c1": 4.963065712824455, - "c2": 4.916535754132694, - "c3": 5.264514122622188, - "c4": 5.045228238206555, - "c5": 4.888207424939468, - "c6": 5.060064886479648, - "c7": 4.842237738536041 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940351, + "c3": 6.28756356911697, + "c4": 5.030050855293568, + "c5": 3.772538141470187, + "c6": 2.515025427646784, + "c7": 1.257512713823392 }, "rgb": [58, 15, 49] }, @@ -164409,23 +164409,23 @@ "year": 1756, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 47.51387380235821, - "c2": 8.352701634693595, - "c3": 28.959145987703813, - "c4": -3.1016494199349935, - "c5": 27.821926553506266, - "c6": -12.998681008404631, - "c7": -14.819129266822571 + "points": { + "c1": -31.476386765961063, + "c2": -14.871674077872903, + "c3": -7.715975850377589, + "c4": 13.709774446735757, + "c5": -16.601293307814316, + "c6": -13.786856525743197, + "c7": 3.7977774191195053 }, - "vertexSeeds": { - "c1": 5.715429046973169, - "c2": 5.807394550720604, - "c3": 5.4803341938695045, - "c4": 5.022605733295118, - "c5": 5.856232660968835, - "c6": 5.6155941483614145, - "c7": 5.503598521025151 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [86, 146, 138] }, @@ -164436,23 +164436,23 @@ "year": 1756, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -4.159126725641379, - "c2": -19.879584288671204, - "c3": 23.25231418961021, - "c4": -11.540549977105385, - "c5": -6.795746400853002, - "c6": -13.604360155755273, - "c7": 0.4340245948201229 + "points": { + "c1": 15.560265315207694, + "c2": 5.010306987022723, + "c3": -12.24340994039509, + "c4": 26.255100341167115, + "c5": 5.456032231462494, + "c6": -8.40428442264287, + "c7": -25.098353624436882 }, - "vertexSeeds": { - "c1": 3.3209438391331787, - "c2": 3.955250304743491, - "c3": 3.248378005883831, - "c4": 3.2024518525704524, - "c5": 3.8145607760074096, - "c6": 3.226972423389587, - "c7": 3.973886934431264 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728157, + "c3": 5.016181229773462, + "c4": 4.012944983818771, + "c5": 3.0097087378640768, + "c6": 2.0064724919093857, + "c7": 1.0032362459546909 }, "rgb": [58, 15, 49] }, @@ -164463,23 +164463,23 @@ "year": 1756, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -22.945584543072442, - "c2": -4.772280982883128, - "c3": -21.18771240211671, - "c4": -8.14772105216058, - "c5": -1.7266722158999457, - "c6": 28.954288879319233, - "c7": 3.2037044237321233 + "points": { + "c1": -19.282429842543102, + "c2": 24.96177346821946, + "c3": -3.1108881093825502, + "c4": 0.3555240575439349, + "c5": -26.463747990596843, + "c6": 18.033384446272965, + "c7": -11.162959436400957 }, - "vertexSeeds": { - "c1": 3.764887996460406, - "c2": 3.8355868346156834, - "c3": 3.9553037670005073, - "c4": 3.58451749596031, - "c5": 3.786306387430531, - "c6": 3.620657227560144, - "c7": 3.8465319557714395 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366161, + "c3": 4.808136846971802, + "c4": 3.846509477577438, + "c5": 2.8848821081830804, + "c6": 1.9232547387887222, + "c7": 0.9616273693943582 }, "rgb": [58, 15, 49] }, @@ -164490,23 +164490,23 @@ "year": 1756, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 10.060043969857318, - "c2": -35.776931532682354, - "c3": -3.8114471792826805, - "c4": 5.164521822589222, - "c5": 41.06486820284668, - "c6": 34.257925341044555, - "c7": -2.702256442075175 + "points": { + "c1": -15.440969997858701, + "c2": 16.88570237794265, + "c3": -19.312287546890932, + "c4": -5.926027561451242, + "c5": -28.34314838432999, + "c6": 20.760060510574135, + "c7": -12.0461346617439 }, - "vertexSeeds": { - "c1": 11.629101075548597, - "c2": 11.668442246632228, - "c3": 11.671098413528219, - "c4": 11.688242896699926, - "c5": 11.676340355985847, - "c6": 11.684242427079143, - "c7": 11.65151641469761 + "offsets": { + "c1": 19.514563106796118, + "c2": 16.726768377253894, + "c3": 13.938973647711672, + "c4": 11.151178918169448, + "c5": 8.36338418862667, + "c6": 5.575589459084447, + "c7": 2.7877947295422234 }, "rgb": [77, 76, 132] }, @@ -164517,23 +164517,23 @@ "year": 1756, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 40.8956176291948, - "c2": -34.85023876989389, - "c3": -13.102448418336223, - "c4": 20.80278109841501, - "c5": 15.57986794549133, - "c6": 48.61738398373281, - "c7": -23.872077757095965 + "points": { + "c1": -25.900194158785528, + "c2": 24.30499001420725, + "c3": -27.05453305255657, + "c4": 49.266296053905805, + "c5": 21.39189553226548, + "c6": -27.927044815876933, + "c7": -4.4335194801216105 }, - "vertexSeeds": { - "c1": 16.59197017794434, - "c2": 16.726369518953078, - "c3": 16.657836383820815, - "c4": 16.78594179985368, - "c5": 16.22230346632889, - "c6": 16.865624515674096, - "c7": 15.790041577528738 + "offsets": { + "c1": 28.446601941747574, + "c2": 24.382801664355046, + "c3": 20.319001386962558, + "c4": 16.25520110957003, + "c5": 12.191400832177543, + "c6": 8.127600554785015, + "c7": 4.063800277392528 }, "rgb": [58, 15, 49] }, @@ -164544,23 +164544,23 @@ "year": 1756, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -3.8130562477200662, - "c2": 5.471357279367396, - "c3": -8.721476558631625, - "c4": 18.4177464742043, - "c5": 1.6715802888141127, - "c6": 28.79869668861985, - "c7": 27.722588634986714 + "points": { + "c1": -27.147252185897674, + "c2": -17.897245352929158, + "c3": -19.51335541867548, + "c4": 12.642630162703028, + "c5": -2.4661318192606423, + "c6": 23.46753938445888, + "c7": -4.7785423350513945 }, - "vertexSeeds": { - "c1": 6.6560522091941, - "c2": 7.831345972575868, - "c3": 6.728176814810604, - "c4": 6.740281129883664, - "c5": 7.042412269727183, - "c6": 7.355534635461631, - "c7": 7.31252088517972 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [238, 201, 159] }, @@ -164571,23 +164571,23 @@ "year": 1756, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -31.009931167173235, - "c2": -19.13367515033388, - "c3": -11.23001903339841, - "c4": -28.396434459525974, - "c5": -7.892675457198759, - "c6": 8.016319355451053, - "c7": 21.877178876385265 + "points": { + "c1": 20.97404714760573, + "c2": 33.728995954499545, + "c3": -2.0346763436383952, + "c4": 2.380759405247062, + "c5": 10.77407092018126, + "c6": -7.540377290460601, + "c7": -18.717907943400697 }, - "vertexSeeds": { - "c1": 10.204479423738613, - "c2": 10.264647109515355, - "c3": 10.038986278160435, - "c4": 9.776975970600247, - "c5": 9.989802114681963, - "c6": 9.862204727410873, - "c7": 10.45873080435852 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.97919556171985, + "c3": 12.482662968099838, + "c4": 9.986130374479881, + "c5": 7.489597780859925, + "c6": 4.993065187239913, + "c7": 2.4965325936199565 }, "rgb": [77, 76, 132] }, @@ -164598,23 +164598,23 @@ "year": 1756, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 3.74319084137473, - "c2": 3.5497659635849494, - "c3": 3.0136755783412745, - "c4": -10.019803678076254, - "c5": -6.831841931940769, - "c6": 14.778869096760044, - "c7": 2.933241568395392 + "points": { + "c1": -13.839949281481111, + "c2": -1.535361394316741, + "c3": 27.918150792308136, + "c4": 25.011951638780634, + "c5": 15.385086715987722, + "c6": 17.648504096135536, + "c7": -19.856228299241877 }, - "vertexSeeds": { - "c1": 4.72797996625831, - "c2": 4.69874112573076, - "c3": 5.142072304334036, - "c4": 4.765949324988432, - "c5": 4.898670609872231, - "c6": 5.046001629403575, - "c7": 4.775497282226103 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385112, + "c4": 5.177993527508089, + "c5": 3.8834951456310645, + "c6": 2.5889967637540408, + "c7": 1.294498381877017 }, "rgb": [238, 201, 159] }, @@ -164625,23 +164625,23 @@ "year": 1756, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -22.81004703638963, - "c2": 32.33624223624307, - "c3": -22.81654228721729, - "c4": -28.35593187453717, - "c5": 1.4341230088857841, - "c6": 12.753672837511346, - "c7": 31.29778401417054 + "points": { + "c1": -25.03453888352883, + "c2": -42.46638583514129, + "c3": -7.606742573497421, + "c4": -9.673440651879957, + "c5": 4.816788678618934, + "c6": -32.04067502517286, + "c7": 30.464186297279987 }, - "vertexSeeds": { - "c1": 4.158458264807093, - "c2": 4.265194436253815, - "c3": 4.183944163248102, - "c4": 4.265997955515971, - "c5": 4.065123540438243, - "c6": 4.3557574745349505, - "c7": 4.067642829245867 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.76837725381415, + "c3": 5.640314378178456, + "c4": 4.5122515025427665, + "c5": 3.3841886269070716, + "c6": 2.2561257512713833, + "c7": 1.128062875635695 }, "rgb": [222, 0, 59] }, @@ -164652,23 +164652,23 @@ "year": 1756, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 28.931240251581023, - "c2": -0.4052838969978154, - "c3": 1.672548537628586, - "c4": 5.851308063770269, - "c5": 2.439856497346355, - "c6": 17.814586255160883, - "c7": 28.170207336918047 + "points": { + "c1": 29.128958182372564, + "c2": -19.847993155266487, + "c3": 15.242767025891425, + "c4": 20.17386169907555, + "c5": 1.6252309617900522, + "c6": -36.96825905540062, + "c7": -6.169443882187746 }, - "vertexSeeds": { - "c1": 6.414020538555323, - "c2": 6.324448598520475, - "c3": 6.2392768066789746, - "c4": 7.642803894445771, - "c5": 6.513870834535318, - "c6": 5.837550678379055, - "c7": 5.871383355520696 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.95700416088766, + "c3": 9.130836800739718, + "c4": 7.304669440591771, + "c5": 5.47850208044383, + "c6": 3.652334720295889, + "c7": 1.8261673601479407 }, "rgb": [77, 76, 132] }, @@ -164679,23 +164679,23 @@ "year": 1756, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -18.587874892795597, - "c2": -14.335215208142948, - "c3": -15.197492971980246, - "c4": 10.564487741981914, - "c5": 4.88257876622059, - "c6": -13.506517999691745, - "c7": -1.0943907326368887 + "points": { + "c1": 18.41191855814644, + "c2": -2.251851192303125, + "c3": 18.43533670836066, + "c4": -17.32584741966084, + "c5": -8.208590105180093, + "c6": -27.800462498772124, + "c7": -28.160728526125194 }, - "vertexSeeds": { - "c1": 2.241689588943048, - "c2": 2.234411976284706, - "c3": 2.388459576834798, - "c4": 2.2041290472303414, - "c5": 2.279011089270792, - "c6": 2.126590407200817, - "c7": 2.168195240706739 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [77, 76, 132] }, @@ -164706,23 +164706,23 @@ "year": 1756, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 13.504344595951572, - "c2": -25.816636605919843, - "c3": 32.72694944139755, - "c4": 30.512295528701458, - "c5": -18.81934221839181, - "c6": 0.48620417175542485, - "c7": -13.911289879236072 + "points": { + "c1": 32.643939161617055, + "c2": 3.4241358540955886, + "c3": 16.393695132891295, + "c4": -4.111339301361355, + "c5": -22.644569945442008, + "c6": -29.649630743719595, + "c7": -3.8684367403756212 }, - "vertexSeeds": { - "c1": 4.416680088937155, - "c2": 4.212779314582648, - "c3": 4.723146965649772, - "c4": 4.389082589354356, - "c5": 4.6338430148312755, - "c6": 4.184332662798492, - "c7": 4.473245604257681 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894594, + "c3": 5.686546463245492, + "c4": 4.549237170596395, + "c5": 3.4119278779472935, + "c6": 2.2746185852981977, + "c7": 1.1373092926490957 }, "rgb": [238, 201, 159] }, @@ -164733,23 +164733,23 @@ "year": 1756, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": 19.483574036438476, - "c2": 44.65362426148072, - "c3": -43.195291062827835, - "c4": 41.62604260433449, - "c5": -36.612045833532235, - "c6": -21.568686322703574, - "c7": -9.07018327399497 + "points": { + "c1": 44.68911406945127, + "c2": 6.643852354060556, + "c3": -17.343757426958913, + "c4": -10.83325079611722, + "c5": 35.798864337434615, + "c6": 46.77024686475095, + "c7": 9.452269488803545 }, - "vertexSeeds": { - "c1": 5.665524586271272, - "c2": 5.901532071938023, - "c3": 6.30729047375135, - "c4": 5.892115168799797, - "c5": 6.308692088032727, - "c6": 6.020256260179244, - "c7": 5.359664945038379 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152567, + "c3": 7.5589459084604735, + "c4": 6.047156726768371, + "c5": 4.535367545076278, + "c6": 3.0235783633841855, + "c7": 1.5117891816920928 }, "rgb": [222, 0, 59] }, @@ -164760,23 +164760,23 @@ "year": 1756, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 6.213963493473422, - "c2": -21.01202383076049, - "c3": -16.672289085544605, - "c4": 30.00931160811345, - "c5": -10.299044245433308, - "c6": -7.599578304387652, - "c7": 26.034642924681968 + "points": { + "c1": -25.04268327740849, + "c2": -24.10699890778475, + "c3": -28.405799033183058, + "c4": 3.746364973644212, + "c5": -30.088159640345786, + "c6": 16.04963520154429, + "c7": -17.038240143581575 }, - "vertexSeeds": { - "c1": 2.375956728347186, - "c2": 2.2943177106044543, - "c3": 2.3397898184344155, - "c4": 2.4533503642277785, - "c5": 2.3473411373698423, - "c6": 2.3975061303226406, - "c7": 2.4481609737060177 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269072, + "c3": 3.0282015718908935, + "c4": 2.422561257512716, + "c5": 1.816920943134538, + "c6": 1.2112806287563558, + "c7": 0.6056403143781779 }, "rgb": [86, 146, 138] }, @@ -164787,23 +164787,23 @@ "year": 1756, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -15.73417223944714, - "c2": -4.078868114145884, - "c3": -9.607795088087443, - "c4": 14.433062381018335, - "c5": 12.691958453623837, - "c6": 24.26628474515893, - "c7": 15.349852644452358 + "points": { + "c1": -6.357539838562218, + "c2": 3.5046719887126265, + "c3": 19.731009552930065, + "c4": 24.153332010079804, + "c5": 19.213558941185763, + "c6": 20.094239679192672, + "c7": 5.460498904964073 }, - "vertexSeeds": { - "c1": 0.30141759802755663, - "c2": 0.29208853049590044, - "c3": 0.3076268609806995, - "c4": 0.3238498364717243, - "c5": 0.3177069262257447, - "c6": 0.32678217113214153, - "c7": 0.3613588887213002 + "offsets": { + "c1": 0.6472491909385114, + "c2": 0.5547850208044381, + "c3": 0.4623208506703654, + "c4": 0.36985668053629206, + "c5": 0.27739251040221935, + "c6": 0.18492834026814603, + "c7": 0.0924641701340733 }, "rgb": [222, 0, 59] }, @@ -164814,23 +164814,23 @@ "year": 1756, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 5.447763386323196, - "c2": -3.1897646169414458, - "c3": 12.39876410134346, - "c4": -22.929581655924217, - "c5": -29.92324532062447, - "c6": 36.59919107028932, - "c7": -23.716301762246538 + "points": { + "c1": 9.103031310533026, + "c2": -1.3461949365335784, + "c3": -32.042880172355694, + "c4": 31.549323703693176, + "c5": -37.60181130617227, + "c6": -35.39774497232516, + "c7": 20.634611565108763 }, - "vertexSeeds": { - "c1": 3.9891976639993096, - "c2": 3.712944410745572, - "c3": 3.8831655465143893, - "c4": 3.979196855644366, - "c5": 4.037183125533399, - "c6": 4.06073598990416, - "c7": 3.6343285012813387 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466, + "c3": 4.854368932038833, + "c4": 3.8834951456310653, + "c5": 2.9126213592233037, + "c6": 1.9417475728155356, + "c7": 0.9708737864077678 }, "rgb": [77, 76, 132] }, @@ -164841,23 +164841,23 @@ "year": 1756, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 28.497494364923064, - "c2": -14.821780418607041, - "c3": 31.664674720140376, - "c4": -18.46353835123791, - "c5": 30.065243053146943, - "c6": 0.006680566399765553, - "c7": -27.409131831204768 + "points": { + "c1": -13.377731148489953, + "c2": 13.208943429233031, + "c3": 1.8193938779677268, + "c4": 29.59721692445573, + "c5": -23.165031680015527, + "c6": -14.86407983378044, + "c7": -8.572532218382637 }, - "vertexSeeds": { - "c1": 4.922963495254403, - "c2": 5.363244406060866, - "c3": 5.509388910928235, - "c4": 5.170924668465907, - "c5": 5.47393037096126, - "c6": 5.306404136794602, - "c7": 5.191144837214786 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [238, 201, 159] }, @@ -164868,23 +164868,23 @@ "year": 1756, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -15.271006257279804, - "c2": -11.768641690526536, - "c3": 25.440687711843502, - "c4": 27.948007467153815, - "c5": -17.35863995887857, - "c6": -36.067999397622934, - "c7": -33.99694624125337 + "points": { + "c1": 37.30121161567652, + "c2": -18.343428901807076, + "c3": -0.6717626734288871, + "c4": 34.18044869770418, + "c5": 13.9828483865967, + "c6": 33.68797439362986, + "c7": 0.9550369112129218 }, - "vertexSeeds": { - "c1": 5.430717027520402, - "c2": 5.451054146056345, - "c3": 5.271186750915816, - "c4": 5.045421722622208, - "c5": 5.285514713010526, - "c6": 5.375010984368398, - "c7": 5.318033591412756 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382805, + "c3": 6.541840036985674, + "c4": 5.233472029588544, + "c5": 3.9251040221913907, + "c6": 2.616736014794261, + "c7": 1.3083680073971304 }, "rgb": [77, 76, 132] }, @@ -164895,23 +164895,23 @@ "year": 1756, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": 14.488049172030657, - "c2": 31.941212665107884, - "c3": 32.0717746398241, - "c4": -31.56906198381245, - "c5": 9.996359817470896, - "c6": 5.906493605790267, - "c7": 15.596556854914255 + "points": { + "c1": 20.488944318525, + "c2": 15.394335908840574, + "c3": -22.01539898305286, + "c4": 28.106835696492283, + "c5": -28.666351536160807, + "c6": 37.22719227471599, + "c7": -4.233114923391291 }, - "vertexSeeds": { - "c1": 5.6381776351611474, - "c2": 5.551405432677367, - "c3": 5.6448428844174385, - "c4": 5.647376716770149, - "c5": 5.734876232915317, - "c6": 5.632350300369563, - "c7": 5.484065167509469 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066585, + "c3": 6.934812760055474, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.7739251040221955, + "c7": 1.3869625520110838 }, "rgb": [86, 146, 138] }, @@ -164922,23 +164922,23 @@ "year": 1756, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -19.853755465156688, - "c2": -14.132506013033872, - "c3": 6.857081565957589, - "c4": -22.94195449893518, - "c5": -12.0202208267315, - "c6": 11.831834703540853, - "c7": -2.0952748700605177 + "points": { + "c1": -7.768181600131822, + "c2": 27.59923764339028, + "c3": -28.140407030189156, + "c4": 13.470570826871441, + "c5": 22.08403724273553, + "c6": -9.779502337273072, + "c7": 21.518039455282437 }, - "vertexSeeds": { - "c1": 0.959280203788357, - "c2": 1.0154752835246805, - "c3": 1.0623264256332074, - "c4": 0.9284203409466705, - "c5": 1.0367800792224826, - "c6": 0.9750913951383464, - "c7": 0.988890658331011 + "offsets": { + "c1": 1.8446601941747571, + "c2": 1.5811373092926486, + "c3": 1.3176144244105414, + "c4": 1.0540915395284327, + "c5": 0.7905686546463243, + "c6": 0.5270457697642171, + "c7": 0.26352288488210857 }, "rgb": [222, 0, 59] }, @@ -164949,23 +164949,23 @@ "year": 1756, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -19.8869430063081, - "c2": 5.194534326237644, - "c3": 2.977857668160542, - "c4": 13.577395179023533, - "c5": -8.452190968124917, - "c6": -14.282058318681475, - "c7": 15.119151583751105 + "points": { + "c1": -8.477781171776748, + "c2": -26.26761109388908, + "c3": 11.119886949114914, + "c4": -23.785505125155428, + "c5": 15.387772882668031, + "c6": -6.9837400603069, + "c7": -21.680683838534975 }, - "vertexSeeds": { - "c1": 5.3837173039525705, - "c2": 6.067090858864476, - "c3": 5.8991303920768114, - "c4": 5.691101837032599, - "c5": 5.229664417472504, - "c6": 5.4497388868601835, - "c7": 5.545073889493294 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112345, + "c3": 7.535829865926956, + "c4": 6.028663892741567, + "c5": 4.521497919556177, + "c6": 3.014331946370788, + "c7": 1.5071659731853992 }, "rgb": [222, 0, 59] }, @@ -164976,23 +164976,23 @@ "year": 1756, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -32.31777450969419, - "c2": 5.901037652587121, - "c3": -2.186563805521587, - "c4": 1.3775479590378694, - "c5": -15.164073635934002, - "c6": 32.3849727839892, - "c7": 6.4686533496501895 + "points": { + "c1": 16.798848135717968, + "c2": 16.837135425322927, + "c3": 10.106153915806424, + "c4": -18.783432007253055, + "c5": 23.435768697119855, + "c6": -14.3947924942029, + "c7": 32.45592477863269 }, - "vertexSeeds": { - "c1": 3.6158109792243103, - "c2": 3.0872192117456785, - "c3": 3.4901281328546405, - "c4": 3.133807868398054, - "c5": 2.9101605623749434, - "c6": 2.898120766218567, - "c7": 2.961358033323928 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963941, + "c3": 4.576976421636615, + "c4": 3.6615811373092937, + "c5": 2.7461858529819683, + "c6": 1.8307905686546468, + "c7": 0.9153952843273252 }, "rgb": [86, 146, 138] }, @@ -165003,23 +165003,23 @@ "year": 1755, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": -5.415427518416488, - "c2": -9.175471283398009, - "c3": -16.33344215173832, - "c4": 1.7054388497640858, - "c5": -14.108373424396152, - "c6": -9.854329636422822, - "c7": 17.95122397350262 + "points": { + "c1": -7.123311516487078, + "c2": -0.0915602207515569, + "c3": -8.22116038527803, + "c4": 20.90617361498903, + "c5": -4.588689454313478, + "c6": -12.870313595046277, + "c7": 16.19132130112272 }, - "vertexSeeds": { - "c1": 7.91771548101943, - "c2": 7.3196135070241715, - "c3": 7.675334962722293, - "c4": 7.780894934703613, - "c5": 7.412063966959293, - "c6": 7.746635466555121, - "c7": 7.059370357188338 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.65048543689321, + "c3": 9.708737864077667, + "c4": 7.76699029126214, + "c5": 5.8252427184465985, + "c6": 3.88349514563107, + "c7": 1.9417475728155285 }, "rgb": [86, 146, 138] }, @@ -165030,23 +165030,23 @@ "year": 1756, "resistanceReported": false, "duration": 41212800, - "curveSeeds": { - "c1": -6.081717848729554, - "c2": 51.87884605869848, - "c3": -36.55924543255104, - "c4": 50.30811615625314, - "c5": 40.841226004687336, - "c6": -26.75444145736416, - "c7": -53.38017954826885 + "points": { + "c1": 13.454432420729155, + "c2": 11.817043126595642, + "c3": -57.066666000312416, + "c4": 51.949442216328656, + "c5": -17.380402175015483, + "c6": 11.881414534541115, + "c7": 38.06325683170191 }, - "vertexSeeds": { - "c1": 6.345210168862097, - "c2": 6.122836323304206, - "c3": 6.0110475572872755, - "c4": 6.310369326543174, - "c5": 6.371864035632212, - "c6": 6.313427810450346, - "c7": 6.133001111946186 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795649, + "c4": 6.232085067036532, + "c5": 4.674063800277399, + "c6": 3.116042533518266, + "c7": 1.558021266759133 }, "rgb": [222, 0, 59] }, @@ -165057,23 +165057,23 @@ "year": 1757, "resistanceReported": false, "duration": 47001600, - "curveSeeds": { - "c1": -21.143245582077363, - "c2": 41.126749556371685, - "c3": 23.321681341763743, - "c4": -29.781500530355643, - "c5": 17.337311453428278, - "c6": 33.112255591682406, - "c7": 8.708521619442514 + "points": { + "c1": -61.179760171109685, + "c2": -28.466601181313777, + "c3": 15.25302745004695, + "c4": -63.477017600028915, + "c5": -22.816670957347355, + "c6": -7.047740953518257, + "c7": 37.90759258153394 }, - "vertexSeeds": { - "c1": 7.722493094189005, - "c2": 8.186051699080831, - "c3": 6.846407309387732, - "c4": 8.273867738108894, - "c5": 7.748872227978373, - "c6": 7.158370361433347, - "c7": 8.096508586652693 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [222, 0, 59] }, @@ -165084,23 +165084,23 @@ "year": 1756, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -16.455731671851318, - "c2": -0.4806985705172089, - "c3": 2.9754796648275175, - "c4": -26.45831390923376, - "c5": 4.682631506859174, - "c6": -20.9467980432231, - "c7": 13.230960690090924 + "points": { + "c1": -11.339481451016333, + "c2": 14.224945665485478, + "c3": -0.8664765530053522, + "c4": 6.763035034093434, + "c5": 20.885306201254352, + "c6": -28.822304268033225, + "c7": 10.40374064851224 }, - "vertexSeeds": { - "c1": 1.9327965894646046, - "c2": 1.9379980442057705, - "c3": 1.9910303601690145, - "c4": 1.9641787566054716, - "c5": 1.9819944906320683, - "c6": 1.9770751372576176, - "c7": 1.925393328700159 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022193, + "c3": 2.3116042533518293, + "c4": 1.8492834026814657, + "c5": 1.3869625520110906, + "c6": 0.9246417013407271, + "c7": 0.46232085067036355 }, "rgb": [222, 0, 59] }, @@ -165111,23 +165111,23 @@ "year": 1756, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 21.099159380419117, - "c2": -12.024774131237347, - "c3": -32.72072137298111, - "c4": 9.831685000929816, - "c5": -11.129553688020124, - "c6": -30.106721315795397, - "c7": 14.714473003789799 + "points": { + "c1": 22.11350205577145, + "c2": 15.157350816233375, + "c3": 26.908370833452473, + "c4": 1.598381154826292, + "c5": -21.00928437837434, + "c6": -27.31568394874541, + "c7": -34.5719418958573 }, - "vertexSeeds": { - "c1": 1.2615538682344007, - "c2": 1.309485720149484, - "c3": 1.2799646494821115, - "c4": 1.36609241550795, - "c5": 1.2853604922772381, - "c6": 1.368495899999103, - "c7": 1.2883864698933913 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959783, + "c3": 1.6643550624133159, + "c4": 1.3314840499306493, + "c5": 0.9986130374479871, + "c6": 0.6657420249653246, + "c7": 0.3328710124826623 }, "rgb": [58, 15, 49] }, @@ -165138,23 +165138,23 @@ "year": 1756, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 11.788574489012404, - "c2": -6.581032254927123, - "c3": 15.162667384902278, - "c4": 44.87485508286715, - "c5": -7.7916379402447475, - "c6": -31.15368100969983, - "c7": -25.10485684045033 + "points": { + "c1": 15.99648949487824, + "c2": -46.69987970354409, + "c3": -21.46964352178963, + "c4": -30.12225160055382, + "c5": -1.5690788843740577, + "c6": 20.346850844514655, + "c7": 20.39997793206954 }, - "vertexSeeds": { - "c1": 3.013974960786437, - "c2": 2.9768211146871764, - "c3": 2.9250602635537803, - "c4": 2.6211574889843146, - "c5": 2.7916232242876196, - "c6": 2.8386505876871477, - "c7": 3.0087070046447675 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.38280166435506, + "c3": 3.6523347202958862, + "c4": 2.9218677762367067, + "c5": 2.1914008321775267, + "c6": 1.4609338881183533, + "c7": 0.7304669440591735 }, "rgb": [58, 15, 49] }, @@ -165165,23 +165165,23 @@ "year": 1756, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -25.354347406270577, - "c2": -18.37867879140259, - "c3": -1.7222611493311568, - "c4": -5.799769164305037, - "c5": 21.672832472755736, - "c6": 10.908480197273157, - "c7": -2.7801513255943497 + "points": { + "c1": -9.622391299494026, + "c2": -0.8609026732164757, + "c3": 1.8176153889678588, + "c4": -8.462212879439207, + "c5": -22.966034463679836, + "c6": -23.990519671301648, + "c7": -20.398913394290396 }, - "vertexSeeds": { - "c1": 1.3214883492167986, - "c2": 1.1861241710522288, - "c3": 1.2517477190996522, - "c4": 1.4371199178253935, - "c5": 1.4911001027918958, - "c6": 1.5185198908020492, - "c7": 1.216030196794362 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177535, + "c3": 1.8492834026814617, + "c4": 1.4794267221451678, + "c5": 1.1095700416088758, + "c6": 0.7397133610725839, + "c7": 0.36985668053629195 }, "rgb": [222, 0, 59] }, @@ -165192,23 +165192,23 @@ "year": 1756, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 37.26451750456578, - "c2": -5.3535582765778145, - "c3": -36.58747275177346, - "c4": -8.246099091546014, - "c5": 27.181858858331545, - "c6": 19.584969783986388, - "c7": -42.25217733556106 + "points": { + "c1": -5.008861930276801, + "c2": 30.049954884449683, + "c3": -14.434775917556603, + "c4": -7.225467722422003, + "c5": -11.9491576739888, + "c6": 30.32243805528953, + "c7": 24.248086453179546 }, - "vertexSeeds": { - "c1": 4.772280839748921, - "c2": 4.9185290832442154, - "c3": 5.054455470830412, - "c4": 4.528371781855917, - "c5": 4.74709146777819, - "c6": 5.007881821349367, - "c7": 4.827467473436528 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699026, + "c3": 6.148867313915859, + "c4": 4.9190938511326845, + "c5": 3.6893203883495165, + "c6": 2.4595469255663422, + "c7": 1.2297734627831676 }, "rgb": [222, 0, 59] }, @@ -165219,23 +165219,23 @@ "year": 1756, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -31.103782064144248, - "c2": 7.811117106361422, - "c3": -10.036159824621492, - "c4": 0.9846914106900684, - "c5": -32.38650267918365, - "c6": -32.07871711717519, - "c7": 25.231374697758945 + "points": { + "c1": -37.87245474781011, + "c2": 10.95102181545532, + "c3": -0.9170333655949037, + "c4": 6.027956842349305, + "c5": 38.68328137150677, + "c6": 25.83430291099601, + "c7": 24.75375596572274 }, - "vertexSeeds": { - "c1": 7.208469055733996, - "c2": 7.305716268465358, - "c3": 6.9028915969639195, - "c4": 7.0673580810854775, - "c5": 6.403191634998333, - "c6": 6.3940147944580294, - "c7": 7.365510634145706 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404985, + "c3": 8.853444290337492, + "c4": 7.082755432269999, + "c5": 5.312066574202492, + "c6": 3.541377716134986, + "c7": 1.770688858067493 }, "rgb": [222, 0, 59] }, @@ -165246,23 +165246,23 @@ "year": 1756, "resistanceReported": true, "duration": 23932800, - "curveSeeds": { - "c1": 6.174755896379082, - "c2": 16.350001438301206, - "c3": 17.86247023420021, - "c4": -31.536618920173694, - "c5": 16.560698723746576, - "c6": -23.946382728229658, - "c7": -27.143760548974235 + "points": { + "c1": -2.841507563251092, + "c2": -5.1969708068042095, + "c3": 19.21093612906747, + "c4": 12.341264935819275, + "c5": 30.93613846150381, + "c6": -6.196968398529844, + "c7": 8.383881264627881 }, - "vertexSeeds": { - "c1": 4.277170519176143, - "c2": 4.394562176352149, - "c3": 4.193300132766231, - "c4": 4.183028348931546, - "c5": 4.391310411711678, - "c6": 4.173096394965243, - "c7": 4.122986368780159 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.3245492371706, + "c3": 5.270457697642171, + "c4": 4.216366158113729, + "c5": 3.1622746185853, + "c6": 2.1081830790568707, + "c7": 1.054091539528429 }, "rgb": [58, 15, 49] }, @@ -165273,23 +165273,23 @@ "year": 1756, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -10.571777892506056, - "c2": 14.134487222353599, - "c3": -3.044388225245754, - "c4": 28.684402699109903, - "c5": -17.248826654589248, - "c6": -36.576581812099775, - "c7": 27.150601212555706 + "points": { + "c1": -21.272444517179412, + "c2": 25.108438375234236, + "c3": 5.247852896737221, + "c4": -36.269410576686326, + "c5": -8.092780592743267, + "c6": 8.545849209894996, + "c7": -37.03055327851143 }, - "vertexSeeds": { - "c1": 7.435360933077945, - "c2": 6.8080954799428435, - "c3": 6.837914778028444, - "c4": 7.107891604535607, - "c5": 6.842271518379159, - "c6": 6.948235257620574, - "c7": 7.447521585593306 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766987, + "c3": 9.061488673139152, + "c4": 7.249190938511319, + "c5": 5.436893203883502, + "c6": 3.624595469255668, + "c7": 1.812297734627834 }, "rgb": [238, 201, 159] }, @@ -165300,23 +165300,23 @@ "year": 1756, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 25.803357459790753, - "c2": 31.537628535066567, - "c3": 28.840168190950045, - "c4": -14.722564376487277, - "c5": 28.403943239103775, - "c6": -28.129893137331894, - "c7": -10.066035820903032 + "points": { + "c1": 30.13526777844954, + "c2": 9.505007403491703, + "c3": 28.52499601964528, + "c4": 10.317974884138486, + "c5": 35.31669444774456, + "c6": -2.2631706115627352, + "c7": 7.353337008142844 }, - "vertexSeeds": { - "c1": 7.127456476018389, - "c2": 6.982525559474653, - "c3": 6.570199674369819, - "c4": 6.597809274748803, - "c5": 7.32181710529432, - "c6": 6.806121272083404, - "c7": 6.945698078359646 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565885, + "c3": 8.945908460471575, + "c4": 7.156726768377252, + "c5": 5.367545076282942, + "c6": 3.5783633841886333, + "c7": 1.789181692094323 }, "rgb": [238, 201, 159] }, @@ -165327,23 +165327,23 @@ "year": 1756, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 24.224443304643984, - "c2": 15.737220820485206, - "c3": -12.098976004126737, - "c4": -19.863647165000046, - "c5": 14.03254038533236, - "c6": -16.507150981767484, - "c7": -5.64869818756727 + "points": { + "c1": 27.365515393585987, + "c2": -20.35974064221635, + "c3": 6.057745233606589, + "c4": 27.212879345409036, + "c5": 28.229923271289508, + "c6": -31.105616929782666, + "c7": -26.375308576697222 }, - "vertexSeeds": { - "c1": 4.867765634461947, - "c2": 5.0070707517159665, - "c3": 5.1427671139142666, - "c4": 5.060776555126919, - "c5": 4.713262534449037, - "c6": 4.721310730004989, - "c7": 4.691047443073652 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859916, + "c3": 6.2413314840499305, + "c4": 4.993065187239944, + "c5": 3.744798890429958, + "c6": 2.496532593619972, + "c7": 1.248266296809986 }, "rgb": [86, 146, 138] }, @@ -165354,23 +165354,23 @@ "year": 1756, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 33.04727009457704, - "c2": 14.53898647296841, - "c3": -27.79525999846846, - "c4": -33.21709858719043, - "c5": -18.772349013224474, - "c6": -30.229217810103545, - "c7": 27.59560397203355 + "points": { + "c1": 24.008013595218436, + "c2": 19.029691128341078, + "c3": 10.928501275117746, + "c4": -21.098174730250786, + "c5": 37.21423839847257, + "c6": -13.938788901191995, + "c7": -39.31372385189084 }, - "vertexSeeds": { - "c1": 4.818481185876624, - "c2": 4.932422326276428, - "c3": 5.067423777432036, - "c4": 4.642299943440862, - "c5": 4.653563432137716, - "c6": 4.368882648304589, - "c7": 4.375322587377621 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779469, + "c3": 6.195099398982893, + "c4": 4.956079519186316, + "c5": 3.71705963938974, + "c6": 2.478039759593158, + "c7": 1.2390198797965817 }, "rgb": [58, 15, 49] }, @@ -165381,23 +165381,23 @@ "year": 1756, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 38.04176537039875, - "c2": -30.272336579826636, - "c3": 4.834073496705955, - "c4": -5.215737820044403, - "c5": 31.265803694841637, - "c6": 21.181419368879624, - "c7": 29.600645090468177 + "points": { + "c1": -38.10720906724917, + "c2": -4.787776318228531, + "c3": 32.56518400463861, + "c4": 8.801869049944784, + "c5": 22.48563329317104, + "c6": -12.734726827446337, + "c7": 22.36122763250613 }, - "vertexSeeds": { - "c1": 2.0825771024845507, - "c2": 2.1942031610371755, - "c3": 2.0688966035583536, - "c4": 2.048805469331573, - "c5": 2.0919427449228096, - "c6": 2.1329151505165385, - "c7": 2.0846657961034873 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.2177531206657415, + "c3": 2.6814609338881166, + "c4": 2.145168747110498, + "c5": 1.6088765603328732, + "c6": 1.072584373555249, + "c7": 0.5362921867776245 }, "rgb": [86, 146, 138] }, @@ -165408,23 +165408,23 @@ "year": 1756, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 22.741562372901747, - "c2": 22.389843186100016, - "c3": -31.719323685861173, - "c4": -27.221621342755668, - "c5": 9.520291062640162, - "c6": -10.903523629521192, - "c7": 25.780665274476696 + "points": { + "c1": -25.051680343581985, + "c2": -30.901824081603166, + "c3": 26.58422254546248, + "c4": -15.134574352083227, + "c5": -33.688890751040454, + "c6": 23.311934961805242, + "c7": -13.930571249221359 }, - "vertexSeeds": { - "c1": 6.538722426316575, - "c2": 6.352975810871039, - "c3": 6.524714350939205, - "c4": 6.875656916804859, - "c5": 5.830579844400549, - "c6": 5.8896428759678, - "c7": 6.0706731592300525 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.93065187239944, + "c3": 8.275543226999538, + "c4": 6.620434581599627, + "c5": 4.965325936199726, + "c6": 3.3102172907998133, + "c7": 1.6551086453999122 }, "rgb": [86, 146, 138] }, @@ -165435,23 +165435,23 @@ "year": 1756, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -14.328660485682391, - "c2": -8.526861658145211, - "c3": -4.767643022356559, - "c4": -25.24629768208637, - "c5": -2.480366309223079, - "c6": -26.531102250836163, - "c7": -1.893468777057322 + "points": { + "c1": -7.17661246045537, + "c2": -34.59528013826703, + "c3": 32.092663428887334, + "c4": -12.812156127373083, + "c5": 18.273223186415734, + "c6": -13.830812514051768, + "c7": 10.60885065793515 }, - "vertexSeeds": { - "c1": 0.7139641163801578, - "c2": 0.6864411383903848, - "c3": 0.6387137825198038, - "c4": 0.6838729097950746, - "c5": 0.6696614593889638, - "c6": 0.6248564776555581, - "c7": 0.6677926617880008 + "offsets": { + "c1": 1.2944983818770228, + "c2": 1.1095700416088767, + "c3": 0.9246417013407309, + "c4": 0.7397133610725839, + "c5": 0.5547850208044379, + "c6": 0.36985668053629195, + "c7": 0.18492834026814597 }, "rgb": [238, 201, 159] }, @@ -165462,23 +165462,23 @@ "year": 1756, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 20.10962634302004, - "c2": -3.144193987974468, - "c3": -7.613021885905013, - "c4": -6.10699853625508, - "c5": -14.24408734448033, - "c6": 16.67680826282949, - "c7": 15.684100291356657 + "points": { + "c1": -27.972913452289866, + "c2": 18.426683679191477, + "c3": -5.916866620229321, + "c4": 28.264621123986785, + "c5": 18.458530237188597, + "c6": 23.17410914210332, + "c7": 8.31127007008866 }, - "vertexSeeds": { - "c1": 2.4616905623906193, - "c2": 2.4601304820170524, - "c3": 2.762467779142061, - "c4": 2.690374502304107, - "c5": 2.7887963162562377, - "c6": 2.754590145442596, - "c7": 2.84514368908732 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952843, + "c3": 3.421174294960704, + "c4": 2.7369394359685635, + "c5": 2.0527045769764234, + "c6": 1.3684697179842833, + "c7": 0.6842348589921433 }, "rgb": [86, 146, 138] }, @@ -165489,23 +165489,23 @@ "year": 1756, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 22.817215185761388, - "c2": 14.569453916829897, - "c3": 15.111566133501224, - "c4": -29.327393889153463, - "c5": -2.643124104787418, - "c6": 24.528072434373183, - "c7": 7.721935130950012 + "points": { + "c1": 15.302413755017234, + "c2": 12.511359567372168, + "c3": -5.68663422407889, + "c4": 26.539216672110285, + "c5": -7.31305730908424, + "c6": -21.531801809978887, + "c7": 6.433260305221886 }, - "vertexSeeds": { - "c1": 1.494720252535847, - "c2": 1.4654394940493978, - "c3": 1.4127444540905487, - "c4": 1.445870282890827, - "c5": 1.3984858718837332, - "c6": 1.4484261731191692, - "c7": 1.5153564447231014 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177517, + "c3": 1.8492834026814617, + "c4": 1.4794267221451678, + "c5": 1.1095700416088778, + "c6": 0.7397133610725839, + "c7": 0.3698566805362899 }, "rgb": [222, 0, 59] }, @@ -165516,23 +165516,23 @@ "year": 1757, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 32.95802233896916, - "c2": 41.36852619145809, - "c3": -11.597748563966249, - "c4": 50.09502652932645, - "c5": 17.54015817564543, - "c6": -26.130734135142486, - "c7": 28.46659805753373 + "points": { + "c1": 50.1007372326678, + "c2": -38.37325397814868, + "c3": -3.8504388885856216, + "c4": 9.189463505318507, + "c5": 2.261362933767302, + "c6": -43.440950360537244, + "c7": 28.28256190552966 }, - "vertexSeeds": { - "c1": 1.1511901025688422, - "c2": 1.1640613723257383, - "c3": 1.1127920015141157, - "c4": 1.147407437126906, - "c5": 1.1331582957730082, - "c6": 1.1281351765793417, - "c7": 1.1255850133854952 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535353, + "c3": 1.4100785945446115, + "c4": 1.1280628756356919, + "c5": 0.8460471567267677, + "c6": 0.5640314378178436, + "c7": 0.28201571890891947 }, "rgb": [222, 0, 59] }, @@ -165543,23 +165543,23 @@ "year": 1756, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -26.13568501703444, - "c2": -10.289169167334286, - "c3": -8.0047504807223, - "c4": 13.083331310485505, - "c5": 6.999365997413854, - "c6": -17.45427682132241, - "c7": -42.708111053591516 + "points": { + "c1": 27.52204516800164, + "c2": -10.055969363863426, + "c3": -18.281476387149073, + "c4": -27.5207046599772, + "c5": -47.672242639794874, + "c6": -32.015201859882836, + "c7": -5.7709544443114495 }, - "vertexSeeds": { - "c1": 7.342201296399122, - "c2": 7.359213922854632, - "c3": 7.243560848139853, - "c4": 6.94758717395779, - "c5": 7.237824494176907, - "c6": 7.439036665802911, - "c7": 7.475935910144396 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686556, + "c3": 9.01525658807212, + "c4": 7.212205270457704, + "c5": 5.409153952843267, + "c6": 3.606102635228852, + "c7": 1.8030513176144152 }, "rgb": [77, 76, 132] }, @@ -165570,23 +165570,23 @@ "year": 1756, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 9.445627566992123, - "c2": -17.035052986930772, - "c3": -7.605451858637792, - "c4": 23.82533972257633, - "c5": 4.607222092658439, - "c6": -27.232821640109346, - "c7": 2.3863984851609494 + "points": { + "c1": 24.570978389655195, + "c2": -11.488925824189952, + "c3": 1.4508756868570423, + "c4": 1.3314105058088295, + "c5": 17.409020887510437, + "c6": -18.424279023110884, + "c7": -29.491874722625298 }, - "vertexSeeds": { - "c1": 1.4890000910121892, - "c2": 1.311538015952071, - "c3": 1.4317715985200647, - "c4": 1.4093334861244646, - "c5": 1.3643692171214947, - "c6": 1.530988462969711, - "c7": 1.3656836799113552 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257975, + "c3": 1.8723994452149793, + "c4": 1.4979195561719834, + "c5": 1.1234396671289875, + "c6": 0.7489597780859917, + "c7": 0.37447988904299584 }, "rgb": [58, 15, 49] }, @@ -165597,23 +165597,23 @@ "year": 1756, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -12.014673270403245, - "c2": 3.160828581622173, - "c3": 19.103361610961574, - "c4": -12.136821908150877, - "c5": -0.33119679526047463, - "c6": 19.01118773093557, - "c7": -9.334718326201163 + "points": { + "c1": 24.415629608869136, + "c2": 4.210297205453468, + "c3": 17.486176134268195, + "c4": 5.257867649168343, + "c5": 11.572524333843337, + "c6": -23.530281708352934, + "c7": 11.820840812611753 }, - "vertexSeeds": { - "c1": 0.9125409545090463, - "c2": 0.9385643734865821, - "c3": 0.942684923857534, - "c4": 0.8914703704125542, - "c5": 0.8611830004723032, - "c6": 0.9011359482315107, - "c7": 0.9519575451281268 + "offsets": { + "c1": 1.650485436893204, + "c2": 1.4147018030513177, + "c3": 1.1789181692094315, + "c4": 0.9431345353675451, + "c5": 0.7073509015256588, + "c6": 0.47156726768377255, + "c7": 0.23578363384188628 }, "rgb": [77, 76, 132] }, @@ -165624,23 +165624,23 @@ "year": 1756, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -31.400737804443143, - "c2": -9.539347027548242, - "c3": -2.668540044529834, - "c4": -12.773820953950995, - "c5": -29.29324208314408, - "c6": 13.36333110931401, - "c7": 30.472958190555474 + "points": { + "c1": -26.86972808682619, + "c2": 1.0241426018581237, + "c3": -12.20507161912846, + "c4": 12.824611341566126, + "c5": -26.955427122890967, + "c6": 3.201099975760478, + "c7": 20.328958355881426 }, - "vertexSeeds": { - "c1": 7.599999134266547, - "c2": 8.639121894589707, - "c3": 7.56423588198725, - "c4": 7.775134210307957, - "c5": 8.661745774174305, - "c6": 7.598280862713638, - "c7": 8.439699984523022 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059634, + "c3": 10.379103097549702, + "c4": 8.303282478039756, + "c5": 6.227461858529823, + "c6": 4.151641239019878, + "c7": 2.0758206195099316 }, "rgb": [238, 201, 159] }, @@ -165651,23 +165651,23 @@ "year": 1756, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -24.84188885782524, - "c2": 23.391964539276103, - "c3": -0.4176732423974556, - "c4": -7.455670825133687, - "c5": -17.115784104127098, - "c6": 9.122403756365976, - "c7": 16.68697280630385 + "points": { + "c1": -26.27382271644016, + "c2": 10.42042966415476, + "c3": 18.726720306081553, + "c4": -0.4667005305325631, + "c5": -13.126136755489675, + "c6": -26.997831356661234, + "c7": 23.244579043328514 }, - "vertexSeeds": { - "c1": 1.9869315198191095, - "c2": 2.234453085244039, - "c3": 2.2422427278102948, - "c4": 1.9619851141973208, - "c5": 2.34434675028732, - "c6": 2.3151480764805, - "c7": 2.347084560796052 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679605, + "c3": 2.912621359223302, + "c4": 2.330097087378641, + "c5": 1.7475728155339803, + "c6": 1.1650485436893216, + "c7": 0.5825242718446608 }, "rgb": [86, 146, 138] }, @@ -165678,23 +165678,23 @@ "year": 1757, "resistanceReported": false, "duration": 49161600, - "curveSeeds": { - "c1": 40.368307941516576, - "c2": -62.38957081015014, - "c3": 51.56000655232917, - "c4": 17.300418665767126, - "c5": -24.654156504307487, - "c6": 38.94158153628007, - "c7": -27.32022935136697 + "points": { + "c1": -9.68877879685244, + "c2": -2.216993967573373, + "c3": 61.350445474906195, + "c4": 57.893870128533194, + "c5": -31.1517268796267, + "c6": 9.295182639914302, + "c7": -30.915074243768323 }, - "vertexSeeds": { - "c1": 4.427822396567714, - "c2": 4.035006009845734, - "c3": 4.158428569980157, - "c4": 4.15432763928411, - "c5": 3.982842259245589, - "c6": 4.0214724791865395, - "c7": 3.9590178992289853 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251043, + "c3": 5.316689782709205, + "c4": 4.25335182616736, + "c5": 3.1900138696255214, + "c6": 2.126675913083684, + "c7": 1.063337956541846 }, "rgb": [77, 76, 132] }, @@ -165705,23 +165705,23 @@ "year": 1756, "resistanceReported": false, "duration": 86400, - "curveSeeds": { - "c1": 2.470746250547741, - "c2": -6.521758461511262, - "c3": 3.5719898214051593, - "c4": 0.6678343721863023, - "c5": 8.01413003007142, - "c6": 5.305489729576035, - "c7": -2.702328040444879 + "points": { + "c1": 1.4141442375584905, + "c2": 1.4821069868775485, + "c3": -3.515446606784046, + "c4": 9.299091948176773, + "c5": -4.540881267249379, + "c6": 8.74136479513762, + "c7": -11.022489747938378 }, - "vertexSeeds": { - "c1": 1.8069948186528497, - "c2": 1.8069948186528497, - "c3": 1.8069948186528497, - "c4": 1.8069948186528497, - "c5": 1.8069948186528497, - "c6": 1.8069948186528497, - "c7": 1.8069948186528497 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -165732,23 +165732,23 @@ "year": 1757, "resistanceReported": false, "duration": 56678400, - "curveSeeds": { - "c1": -14.245368243127103, - "c2": -53.773757824643766, - "c3": 59.37869641876458, - "c4": 68.11546250694357, - "c5": -52.524764737634186, - "c6": -68.76138857077802, - "c7": 54.54420905027163 + "points": { + "c1": 59.82834662863567, + "c2": 44.04187353000373, + "c3": -53.25364929330109, + "c4": -54.74114537329871, + "c5": -50.50655380374808, + "c6": 22.590637182675593, + "c7": -44.268107879395515 }, - "vertexSeeds": { - "c1": 5.731865029574293, - "c2": 5.812655596969046, - "c3": 5.821021228969185, - "c4": 5.466392094200609, - "c5": 5.527393127881832, - "c6": 6.125215096842186, - "c7": 6.119507388308332 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790568, + "c3": 7.350901525658803, + "c4": 5.8807212205270405, + "c5": 4.41054091539529, + "c6": 2.940360610263527, + "c7": 1.4701803051317635 }, "rgb": [238, 201, 159] }, @@ -165759,23 +165759,23 @@ "year": 1756, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -9.945624537187083, - "c2": 7.847879945874361, - "c3": 16.780413230571448, - "c4": 33.87333241888136, - "c5": -38.84307480504568, - "c6": -8.38345205336742, - "c7": 17.693855912885212 + "points": { + "c1": -42.22968006003228, + "c2": -11.331071869297986, + "c3": -32.37785858328084, + "c4": 17.029023739168196, + "c5": 15.564408012482211, + "c6": 37.47875284566882, + "c7": 16.39225203523307 }, - "vertexSeeds": { - "c1": 4.075092353644476, - "c2": 3.819354911229602, - "c3": 4.290125508770451, - "c4": 4.024955297104618, - "c5": 3.8548897142531513, - "c6": 3.947501723966873, - "c7": 3.8668494682352645 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969487, + "c3": 5.154877484974573, + "c4": 4.123901987979658, + "c5": 3.0929264909847434, + "c6": 2.061950993989829, + "c7": 1.0309754969949145 }, "rgb": [222, 0, 59] }, @@ -165786,23 +165786,23 @@ "year": 1757, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 22.8525886241772, - "c2": -15.097137539030836, - "c3": -21.57796355908567, - "c4": 26.005881582954345, - "c5": -8.585776021303154, - "c6": -10.094012658416986, - "c7": -0.5004599067063822 + "points": { + "c1": 10.489373331775553, + "c2": -13.281510102862157, + "c3": -46.38557882784391, + "c4": -4.917027133996157, + "c5": -42.13053093320094, + "c6": -25.33378195730417, + "c7": 23.8385824555684 }, - "vertexSeeds": { - "c1": 4.163833860105582, - "c2": 4.523278988075738, - "c3": 4.67319785093805, - "c4": 4.353737652213198, - "c5": 4.741619949228167, - "c6": 4.681795390072724, - "c7": 4.379885855094165 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -165813,23 +165813,23 @@ "year": 1757, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": -36.97473857037949, - "c2": 2.993824191758634, - "c3": 33.82425353116328, - "c4": -51.45190035989167, - "c5": 53.47129399097379, - "c6": 12.177671779352337, - "c7": -5.958269171120577 + "points": { + "c1": -15.425182534903144, + "c2": -16.001905477818042, + "c3": 23.540828320336615, + "c4": 46.22363464449455, + "c5": 24.937153751335302, + "c6": -16.437096249473214, + "c7": 43.92762208480745 }, - "vertexSeeds": { - "c1": 1.5167980418089235, - "c2": 1.382051377588993, - "c3": 1.4380258807972595, - "c4": 1.3517188366847823, - "c5": 1.4748292748576974, - "c6": 1.4546394099720417, - "c7": 1.4873492803950166 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.2746185852981977, + "c3": 1.895515487748496, + "c4": 1.5164123901987976, + "c5": 1.1373092926490989, + "c6": 0.7582061950994002, + "c7": 0.37910309754969856 }, "rgb": [222, 0, 59] }, @@ -165840,23 +165840,23 @@ "year": 1757, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -21.113208854308425, - "c2": 10.302800370272735, - "c3": 15.34807353278574, - "c4": -39.388513729845585, - "c5": -1.845674416538607, - "c6": 13.80315174437095, - "c7": 37.49441093121692 + "points": { + "c1": 9.465665719696815, + "c2": 26.506545263338552, + "c3": -44.57018532850142, + "c4": 22.362358640991644, + "c5": 17.51846090532547, + "c6": -0.7299180030233501, + "c7": -29.300229262302924 }, - "vertexSeeds": { - "c1": 3.235181646611983, - "c2": 3.029379849266477, - "c3": 3.056906422544455, - "c4": 3.079491488163852, - "c5": 2.9647798542930555, - "c6": 3.215094924442783, - "c7": 3.235964647010712 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.6879334257975, + "c3": 3.9066111881645877, + "c4": 3.1252889505316666, + "c5": 2.3439667128987547, + "c6": 1.5626444752658333, + "c7": 0.7813222376329124 }, "rgb": [238, 201, 159] }, @@ -165867,23 +165867,23 @@ "year": 1757, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -30.22450284419449, - "c2": -38.934101721142845, - "c3": 38.13134684087754, - "c4": 25.035092976756232, - "c5": -15.616832939115863, - "c6": -34.602450331017764, - "c7": 41.398522137465235 + "points": { + "c1": -39.36128235900362, + "c2": -29.990891220078346, + "c3": 34.170203542944506, + "c4": -23.94873275412059, + "c5": 19.84684611156456, + "c6": -43.3817732343659, + "c7": -45.34248457701551 }, - "vertexSeeds": { - "c1": 3.4274242144276865, - "c2": 3.0198013213242945, - "c3": 3.255838897450163, - "c4": 3.100163887105943, - "c5": 3.388698202094076, - "c6": 3.0001281137132825, - "c7": 3.4762175387007783 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033284, + "c4": 3.328710124826629, + "c5": 2.496532593619973, + "c6": 1.6643550624133177, + "c7": 0.8321775312066556 }, "rgb": [238, 201, 159] }, @@ -165894,23 +165894,23 @@ "year": 1757, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -31.719131387957034, - "c2": 18.049311056105097, - "c3": 5.675514951506635, - "c4": -38.77165876133205, - "c5": 6.046239303360146, - "c6": -32.83869979732326, - "c7": -22.32452054982107 + "points": { + "c1": -14.066885074401846, + "c2": 17.23730868714913, + "c3": 44.42308473373343, + "c4": -23.31215704142529, + "c5": -7.135266420646154, + "c6": 26.011485632147213, + "c7": 38.411145886504016 }, - "vertexSeeds": { - "c1": 1.9048594868672395, - "c2": 1.902843495015223, - "c3": 1.8689396999706864, - "c4": 1.9596165499706986, - "c5": 1.892020608037497, - "c6": 1.9061139727301168, - "c7": 2.069225461081355 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.02357836338419, + "c3": 2.5196486361534896, + "c4": 2.015718908922793, + "c5": 1.511789181692093, + "c6": 1.0078594544613966, + "c7": 0.5039297272307005 }, "rgb": [86, 146, 138] }, @@ -165921,23 +165921,23 @@ "year": 1757, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -38.62202919208161, - "c2": -35.829975333414524, - "c3": 41.29807031825723, - "c4": 31.721441379346658, - "c5": -2.35796379451007, - "c6": 20.80519686755096, - "c7": -20.496177360512384 + "points": { + "c1": -19.628884282245423, + "c2": 27.162793870274356, + "c3": -46.24304512903013, + "c4": 26.828609209139486, + "c5": -25.34683432578586, + "c6": 1.9492819425613064, + "c7": -23.831552621551825 }, - "vertexSeeds": { - "c1": 1.4299621254012906, - "c2": 1.4988829066986464, - "c3": 1.4367708206316872, - "c4": 1.5339580806794135, - "c5": 1.4566516929708047, - "c6": 1.4625931722616978, - "c7": 1.5100792074403468 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217753, + "c3": 1.84928340268146, + "c4": 1.4794267221451673, + "c5": 1.1095700416088783, + "c6": 0.7397133610725856, + "c7": 0.3698566805362928 }, "rgb": [58, 15, 49] }, @@ -165948,23 +165948,23 @@ "year": 1757, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -47.33008677055384, - "c2": -45.26405400712795, - "c3": -35.21342508667705, - "c4": -10.468675221981748, - "c5": 30.271561474017076, - "c6": 1.8063076232693263, - "c7": -46.336509872236014 + "points": { + "c1": 42.96616751963731, + "c2": 43.02360657131197, + "c3": 26.941299862400726, + "c4": -36.21405272387571, + "c5": -47.55910474735689, + "c6": 9.101995985039217, + "c7": 3.602075866102126 }, - "vertexSeeds": { - "c1": 3.463852323409168, - "c2": 3.8241442363982063, - "c3": 3.5430915173374498, - "c4": 3.67168942726641, - "c5": 3.8436204825774207, - "c6": 3.8588440647231206, - "c7": 3.600680688363487 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245493, + "c3": 4.738788719371245, + "c4": 3.7910309754969975, + "c5": 2.84327323162275, + "c6": 1.8955154877484954, + "c7": 0.9477577438742477 }, "rgb": [77, 76, 132] }, @@ -165975,23 +165975,23 @@ "year": 1757, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 21.969216163214455, - "c2": -20.244043093663286, - "c3": -40.010435795200735, - "c4": -17.663643369303095, - "c5": -44.503086263237165, - "c6": 2.8825781382532867, - "c7": -20.61906473601295 + "points": { + "c1": -20.795897390961045, + "c2": -29.89581551829788, + "c3": -10.578329574135857, + "c4": -40.86657583865412, + "c5": -23.684960943155016, + "c6": -42.105692088569, + "c7": 28.316141926320853 }, - "vertexSeeds": { - "c1": 0.9976887267983832, - "c2": 0.9633159120679594, - "c3": 1.025968711158908, - "c4": 1.0390809351684276, - "c5": 0.9323914948767082, - "c6": 0.9821473285313567, - "c7": 0.9436436647352591 + "offsets": { + "c1": 1.779935275080906, + "c2": 1.5256588072122046, + "c3": 1.2713823393435046, + "c4": 1.0171058714748031, + "c5": 0.762829403606103, + "c6": 0.5085529357374016, + "c7": 0.25427646786870145 }, "rgb": [77, 76, 132] }, @@ -166002,23 +166002,23 @@ "year": 1757, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": 17.60368937153526, - "c2": 40.59701586716883, - "c3": 32.13431174310589, - "c4": 27.588768065016886, - "c5": 30.556126502150356, - "c6": -6.812920815061162, - "c7": -1.1110128392735277 + "points": { + "c1": 7.772732587949591, + "c2": 42.41499474235595, + "c3": -32.429320583112684, + "c4": 0.528983563668703, + "c5": -44.48943240645511, + "c6": 42.3886849773236, + "c7": 27.78557964684098 }, - "vertexSeeds": { - "c1": 1.6052115570074372, - "c2": 1.5005895292796172, - "c3": 1.4603824218092492, - "c4": 1.6479874439483428, - "c5": 1.4015989813386123, - "c6": 1.404186287741916, - "c7": 1.4501222896188901 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590853, + "c3": 1.9879796578825701, + "c4": 1.5903837263060572, + "c5": 1.1927877947295416, + "c6": 0.7951918631530286, + "c7": 0.39759593157651296 }, "rgb": [58, 15, 49] }, @@ -166029,23 +166029,23 @@ "year": 1757, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 16.153236893577287, - "c2": 36.472601584045776, - "c3": -5.163199765323085, - "c4": 15.293525691554493, - "c5": 15.776626029284117, - "c6": 35.63832521976994, - "c7": -44.708212018515994 + "points": { + "c1": -13.985287515093162, + "c2": 7.290839220539198, + "c3": -24.378010354773213, + "c4": -16.689676960248292, + "c5": 4.3610391012657885, + "c6": 28.198368458311748, + "c7": -47.89925710596856 }, - "vertexSeeds": { - "c1": 1.9856847212419524, - "c2": 2.2685595402174386, - "c3": 2.135231421438015, - "c4": 2.0371063218772307, - "c5": 2.2728991422017435, - "c6": 2.0212303159591296, - "c7": 2.2718435643567627 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070747, + "c3": 2.820157189089228, + "c4": 2.2561257512713833, + "c5": 1.692094313453536, + "c6": 1.1280628756356916, + "c7": 0.5640314378178445 }, "rgb": [238, 201, 159] }, @@ -166056,23 +166056,23 @@ "year": 1757, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 19.931849431139383, - "c2": -1.6598873495614654, - "c3": 5.946656022792766, - "c4": 32.61278431106922, - "c5": -38.030125750928434, - "c6": 20.839389586878553, - "c7": -39.56071739464159 + "points": { + "c1": 30.78897617101738, + "c2": 36.41018904502498, + "c3": -45.270764678436066, + "c4": 16.512611187770858, + "c5": 34.42095609429583, + "c6": -11.958617386232397, + "c7": 29.81363408633392 }, - "vertexSeeds": { - "c1": 1.206194563727841, - "c2": 1.057762576567437, - "c3": 1.2168439190998614, - "c4": 1.1377217499276777, - "c5": 1.1048871648807774, - "c6": 1.0655154192305052, - "c7": 1.0571381375474815 + "offsets": { + "c1": 2.1359223300970873, + "c2": 1.8307905686546473, + "c3": 1.5256588072122057, + "c4": 1.2205270457697643, + "c5": 0.915395284327323, + "c6": 0.6102635228848815, + "c7": 0.3051317614424414 }, "rgb": [86, 146, 138] }, @@ -166083,23 +166083,23 @@ "year": 1756, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -1.873486808835839, - "c2": 5.822073818395843, - "c3": 19.378134304679186, - "c4": -5.24977287780203, - "c5": -18.309692680342287, - "c6": 17.490856354954808, - "c7": 27.31582952232442 + "points": { + "c1": -5.251750749002092, + "c2": 18.29166695743875, + "c3": -6.613320073939924, + "c4": -16.80423282559928, + "c5": -8.090031883941514, + "c6": -21.95755511535871, + "c7": -5.527529770932581 }, - "vertexSeeds": { - "c1": 9.08855755040643, - "c2": 9.221286748061747, - "c3": 9.34370035347998, - "c4": 9.196082569012766, - "c5": 9.643581239335232, - "c6": 9.032410411981955, - "c7": 9.562435932170187 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754512, + "c3": 11.927877947295432, + "c4": 9.542302357836336, + "c5": 7.156726768377256, + "c6": 4.771151178918177, + "c7": 2.3855755894590973 }, "rgb": [86, 146, 138] }, @@ -166110,23 +166110,23 @@ "year": 1756, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -5.70705219314517, - "c2": -2.3064691482308746, - "c3": -6.532612114771485, - "c4": -6.078670759727693, - "c5": 24.016562880270698, - "c6": 14.04762145195356, - "c7": 23.7992438204665 + "points": { + "c1": -19.248029367273702, + "c2": 0.8937841239213355, + "c3": 33.260891201266205, + "c4": -5.426690712673448, + "c5": 20.03436435747153, + "c6": 12.15425778616779, + "c7": 38.61440189143599 }, - "vertexSeeds": { - "c1": 7.288785499743341, - "c2": 7.5569478894683755, - "c3": 7.787386252735038, - "c4": 6.591759700230427, - "c5": 7.283104977269717, - "c6": 6.658648174225718, - "c7": 8.029555357842522 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [86, 146, 138] }, @@ -166137,23 +166137,23 @@ "year": 1756, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 8.931040994701178, - "c2": 24.09898164427966, - "c3": -41.599332727346855, - "c4": 8.123510991346272, - "c5": -5.412034589458152, - "c6": 37.65938610742583, - "c7": 4.840361230976669 + "points": { + "c1": -0.8468019929059025, + "c2": -12.627868477525698, + "c3": 34.118935191434815, + "c4": -2.484706062836004, + "c5": 36.853243109543854, + "c6": -39.77188940819613, + "c7": -4.863468004185435 }, - "vertexSeeds": { - "c1": 5.597397718201648, - "c2": 5.525016247927839, - "c3": 5.364032670405548, - "c4": 5.313091380510873, - "c5": 5.502972510254207, - "c6": 5.5107824160806835, - "c7": 5.381709595184079 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147021, + "c3": 6.981044845122519, + "c4": 5.584835876098019, + "c5": 4.188626907073519, + "c6": 2.7924179380490184, + "c7": 1.3962089690245005 }, "rgb": [222, 0, 59] }, @@ -166164,23 +166164,23 @@ "year": 1756, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 1.0027694702045693, - "c2": -11.162192438507969, - "c3": -4.019206410505149, - "c4": 7.417547324010187, - "c5": 12.574247107182373, - "c6": -15.176766904678157, - "c7": 22.980400740986816 + "points": { + "c1": 11.737973026477746, + "c2": -28.786162378367706, + "c3": -11.152849086818911, + "c4": -41.459128570987936, + "c5": -10.125658632722526, + "c6": -17.75844418981537, + "c7": -7.682055702381618 }, - "vertexSeeds": { - "c1": 7.93177912483553, - "c2": 7.645519005491145, - "c3": 7.761446778690472, - "c4": 7.6596736195347415, - "c5": 7.634879435645641, - "c6": 7.621537264385046, - "c7": 7.596597148953811 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732316, + "c3": 9.616273693943599, + "c4": 7.693018955154878, + "c5": 5.769764216366158, + "c6": 3.846509477577439, + "c7": 1.9232547387887196 }, "rgb": [86, 146, 138] }, @@ -166191,23 +166191,23 @@ "year": 1757, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -2.5838133550989113, - "c2": -17.458249870091958, - "c3": 19.083227192989632, - "c4": -30.065901341362803, - "c5": -19.61068761748761, - "c6": -37.77357664043994, - "c7": -43.04387025323566 + "points": { + "c1": -23.034181530670867, + "c2": 0.26096706279664517, + "c3": 23.659622759326382, + "c4": 29.383640055598207, + "c5": -41.95438714612075, + "c6": 8.511805995529663, + "c7": 11.547766837369707 }, - "vertexSeeds": { - "c1": 4.344071383840986, - "c2": 4.635651430134808, - "c3": 4.709589526734504, - "c4": 4.27685094330852, - "c5": 4.251458244342486, - "c6": 4.275681792188557, - "c7": 4.189569364204585 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [222, 0, 59] }, @@ -166218,23 +166218,23 @@ "year": 1756, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -20.915904210070025, - "c2": -3.3617623603282993, - "c3": -24.858204777485973, - "c4": 18.291542817177458, - "c5": -0.16157395649673134, - "c6": 21.82133583921646, - "c7": 4.260723603104363 + "points": { + "c1": -3.231969342451343, + "c2": -5.857772552996892, + "c3": -16.85342556895403, + "c4": -25.64138155808683, + "c5": 2.977064685408731, + "c6": -12.73366509265868, + "c7": 4.382879882395276 }, - "vertexSeeds": { - "c1": 4.408476893865791, - "c2": 4.590682577643254, - "c3": 4.370070917988707, - "c4": 4.409055676216076, - "c5": 4.594787515817757, - "c6": 4.063931283266945, - "c7": 4.195305732209242 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [238, 201, 159] }, @@ -166245,23 +166245,23 @@ "year": 1756, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -24.341158035045428, - "c2": -14.650869781750414, - "c3": 11.97914511416947, - "c4": 19.676272685942934, - "c5": 27.982917009238122, - "c6": -3.387497643639964, - "c7": 4.568059621002703 + "points": { + "c1": -5.708235937716783, + "c2": -14.376958086270998, + "c3": 12.94364251403065, + "c4": 16.91447443500916, + "c5": -11.011497086549966, + "c6": -11.792822969060413, + "c7": -22.335764908591855 }, - "vertexSeeds": { - "c1": 6.464739439333817, - "c2": 5.975877034421515, - "c3": 5.583838445478034, - "c4": 6.755866795553713, - "c5": 6.38603189831848, - "c6": 6.637251993241484, - "c7": 6.813218576552122 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -166272,23 +166272,23 @@ "year": 1756, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 14.937131741703169, - "c2": -1.5364559726261646, - "c3": -1.0151886894031819, - "c4": 7.95109299737544, - "c5": 30.951846624306434, - "c6": -16.34520151883552, - "c7": 16.426428994145148 + "points": { + "c1": -34.015886417457445, + "c2": -20.275036645047102, + "c3": 41.97717124348542, + "c4": 40.07979698957657, + "c5": 28.60451047087863, + "c6": -0.5961017359828205, + "c7": -24.727183135402658 }, - "vertexSeeds": { - "c1": 5.190865161894426, - "c2": 5.445568607028675, - "c3": 5.054915915104966, - "c4": 5.100789019708613, - "c5": 5.74490209699364, - "c6": 5.361457918272365, - "c7": 5.361284685395167 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.8885806749884475, + "c4": 5.510864539990756, + "c5": 4.133148404993063, + "c6": 2.7554322699953713, + "c7": 1.377716134997692 }, "rgb": [238, 201, 159] }, @@ -166299,23 +166299,23 @@ "year": 1756, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 12.234590372852907, - "c2": -2.8058097704226093, - "c3": -11.703983424640496, - "c4": 7.520119455122845, - "c5": 9.421630355534603, - "c6": -12.764469661614857, - "c7": 21.815625385718164 + "points": { + "c1": -1.882009944657412, + "c2": -15.016503465406057, + "c3": 19.975749645943026, + "c4": -14.940137141562005, + "c5": 4.2756387263400235, + "c6": 19.210257668787463, + "c7": -4.357441314075363 }, - "vertexSeeds": { - "c1": 2.9054582473749693, - "c2": 3.6210409680517457, - "c3": 3.6749073909692167, - "c4": 3.1294387603041023, - "c5": 3.6418859384746107, - "c6": 2.948418827358254, - "c7": 3.379886585342859 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762831, + "c3": 4.461396208969027, + "c4": 3.5691169671752188, + "c5": 2.6768377253814153, + "c6": 1.7845584835876116, + "c7": 0.8922792417938037 }, "rgb": [238, 201, 159] }, @@ -166326,23 +166326,23 @@ "year": 1756, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -24.142516148295694, - "c2": -23.415890022690604, - "c3": -27.86588286588709, - "c4": -3.691256865511697, - "c5": -3.3235830580714136, - "c6": -11.263038512635877, - "c7": 22.366007883996645 + "points": { + "c1": -13.925716734541485, + "c2": -31.869937144944718, + "c3": -32.07451693281149, + "c4": -27.229381757996833, + "c5": 30.96114765471836, + "c6": -31.721152823079084, + "c7": -18.641171405704 }, - "vertexSeeds": { - "c1": 5.823517943604188, - "c2": 6.1905489336508825, - "c3": 5.9036171088508835, - "c4": 6.12407965731338, - "c5": 6.557185602400255, - "c6": 6.443437411259229, - "c7": 6.1969708233741105 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -166353,23 +166353,23 @@ "year": 1756, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 26.126848744366356, - "c2": 26.72085369467579, - "c3": -5.186976233475839, - "c4": -10.768549563749822, - "c5": -13.892384752612406, - "c6": 2.9966574588226997, - "c7": 23.76218425554628 + "points": { + "c1": -5.685338109399623, + "c2": -18.087826617504508, + "c3": -17.78677805710661, + "c4": -29.592654409601174, + "c5": -15.076582590829782, + "c6": -29.898533347578116, + "c7": -10.715212307394644 }, - "vertexSeeds": { - "c1": 4.709061586746395, - "c2": 4.752657643438515, - "c3": 4.239397634444081, - "c4": 4.0832167398299815, - "c5": 4.1798629696271155, - "c6": 4.176425179736781, - "c7": 4.4161814846122525 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -166380,23 +166380,23 @@ "year": 1756, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -11.369182337496323, - "c2": 29.116498641946535, - "c3": 30.388445451877814, - "c4": -30.555806987028966, - "c5": -17.97165818727143, - "c6": 6.095449668299864, - "c7": 4.889251817474381 + "points": { + "c1": -8.006682807076228, + "c2": -19.353768016834152, + "c3": 35.66729487404105, + "c4": 31.256869277252022, + "c5": -15.81236242022634, + "c6": 34.80095272604389, + "c7": 24.506401493380018 }, - "vertexSeeds": { - "c1": 5.463247008294139, - "c2": 5.219743302090163, - "c3": 5.241594795073908, - "c4": 5.163353055658866, - "c5": 5.444285049614275, - "c6": 5.2265739005304885, - "c7": 5.5807057932240935 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [86, 146, 138] }, @@ -166407,23 +166407,23 @@ "year": 1757, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 3.4465797543542323, - "c2": -34.78128556523943, - "c3": 33.86768712115477, - "c4": 26.21856062986926, - "c5": -23.202016046857075, - "c6": 14.274601124789179, - "c7": -38.563766444896395 + "points": { + "c1": 31.46995346112729, + "c2": -50.13516927270725, + "c3": -34.900958459775474, + "c4": 38.46999103917311, + "c5": -5.932436573235975, + "c6": 47.425746907064195, + "c7": -10.696730745408743 }, - "vertexSeeds": { - "c1": 9.774916760618797, - "c2": 9.123556033480405, - "c3": 10.860503811708732, - "c4": 10.829937012710879, - "c5": 10.54201795676032, - "c6": 10.339230348277596, - "c7": 10.526714229009395 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.589459084604709, + "c3": 12.991215903837267, + "c4": 10.392972723069805, + "c5": 7.794729542302354, + "c6": 5.196486361534903, + "c7": 2.5982431807674513 }, "rgb": [222, 0, 59] }, @@ -166434,23 +166434,23 @@ "year": 1757, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 8.887616340528545, - "c2": 38.66229720295995, - "c3": 39.15832177932097, - "c4": 29.0208135903908, - "c5": 32.5037852585655, - "c6": 0.6462369259825493, - "c7": -1.4567946984668154 + "points": { + "c1": -52.97234315544264, + "c2": -15.976538534448238, + "c3": 12.672722202777749, + "c4": 31.6836642550723, + "c5": 40.164031808542404, + "c6": -34.12387307735865, + "c7": -47.42579283242722 }, - "vertexSeeds": { - "c1": 4.367905768771525, - "c2": 5.003689756234511, - "c3": 4.119408345256086, - "c4": 4.31055682546721, - "c5": 5.098753610943962, - "c6": 4.8705254500273, - "c7": 4.699790339479679 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779475, + "c3": 6.195099398982894, + "c4": 4.956079519186313, + "c5": 3.7170596393897375, + "c6": 2.4780397595931607, + "c7": 1.2390198797965803 }, "rgb": [222, 0, 59] }, @@ -166461,23 +166461,23 @@ "year": 1756, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 25.587830809120334, - "c2": 32.122388587992155, - "c3": -28.35462111202918, - "c4": -8.774529399043267, - "c5": -5.929822920643858, - "c6": -20.123209586332255, - "c7": 15.598837438364768 + "points": { + "c1": -21.529720190228044, + "c2": -37.25164845617109, + "c3": -21.914835684200487, + "c4": -29.450583486348116, + "c5": 37.8009343598438, + "c6": 9.904197979782012, + "c7": -31.894312590310008 }, - "vertexSeeds": { - "c1": 7.23321350693634, - "c2": 7.066837473213623, - "c3": 7.88776349372265, - "c4": 7.107653700085633, - "c5": 6.816037589268572, - "c6": 7.864475833109861, - "c7": 7.5286350888502245 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450768, + "c3": 9.454461396208965, + "c4": 7.563569116967174, + "c5": 5.672676837725384, + "c6": 3.7817845584835803, + "c7": 1.8908922792417902 }, "rgb": [77, 76, 132] }, @@ -166488,23 +166488,23 @@ "year": 1756, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 19.152298269080553, - "c2": -16.971027396417185, - "c3": 6.632618904209551, - "c4": 4.398265138640539, - "c5": 17.14840123179789, - "c6": 12.259882239624694, - "c7": 2.968033231059241 + "points": { + "c1": 12.44527790159777, + "c2": -17.755644559922732, + "c3": -2.099087168705271, + "c4": 21.399549878779325, + "c5": 2.1376220525907073, + "c6": 28.98166107605104, + "c7": 24.19829787785647 }, - "vertexSeeds": { - "c1": 2.4796060334872765, - "c2": 2.4231691190524725, - "c3": 2.339785821824361, - "c4": 2.5186887768897437, - "c5": 2.3298940545850106, - "c6": 2.379055883716919, - "c7": 2.5335146583000907 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [58, 15, 49] }, @@ -166515,23 +166515,23 @@ "year": 1757, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 28.97530508469614, - "c2": -11.105804229124587, - "c3": -13.61660886695772, - "c4": -47.42029599648118, - "c5": -41.437505559313216, - "c6": 12.352166758524952, - "c7": -39.11914403007095 + "points": { + "c1": -34.203313304574614, + "c2": -24.96093041683979, + "c3": -45.679944599041484, + "c4": 42.53680105153381, + "c5": -30.15368840766041, + "c6": -41.18665387147474, + "c7": 26.02539104282416 }, - "vertexSeeds": { - "c1": 2.2144777217079787, - "c2": 2.222901766880454, - "c3": 2.280346180463793, - "c4": 2.3053834684318844, - "c5": 2.3137909550421476, - "c6": 2.2049525535379724, - "c7": 2.228609376646889 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668514, + "c3": 2.7970411465557095, + "c4": 2.2376329172445675, + "c5": 1.6782246879334257, + "c6": 1.1188164586222837, + "c7": 0.5594082293111419 }, "rgb": [86, 146, 138] }, @@ -166542,23 +166542,23 @@ "year": 1757, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 28.84697120228178, - "c2": 32.942173277464846, - "c3": -22.73391793388819, - "c4": -23.970946052535922, - "c5": 24.68602589556518, - "c6": -1.332211117397101, - "c7": 16.175822926046244 + "points": { + "c1": -25.73285268929601, + "c2": -21.96558479974771, + "c3": -2.1518937882634646, + "c4": -41.64901242374206, + "c5": 1.4492688656001391, + "c6": -11.49791451694687, + "c7": -15.016931851403644 }, - "vertexSeeds": { - "c1": 4.9707631313898215, - "c2": 5.062345308318463, - "c3": 4.986150657841402, - "c4": 4.8085745088673635, - "c5": 4.5777209175438385, - "c6": 5.1830258344843445, - "c7": 4.873225923823504 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.4341192787794705, + "c3": 6.195099398982892, + "c4": 4.956079519186312, + "c5": 3.7170596393897326, + "c6": 2.478039759593153, + "c7": 1.2390198797965732 }, "rgb": [238, 201, 159] }, @@ -166569,23 +166569,23 @@ "year": 1756, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -3.0982547931974267, - "c2": -25.041571444788854, - "c3": 7.478543165327093, - "c4": -16.29386044895693, - "c5": -18.41637617344826, - "c6": -22.473622947612782, - "c7": -4.175440472461371 + "points": { + "c1": -29.17493445578989, + "c2": -12.86869740580413, + "c3": -1.2916472833617227, + "c4": -4.192254682768727, + "c5": 22.383673792377213, + "c6": -19.853364639209936, + "c7": -10.200189977232508 }, - "vertexSeeds": { - "c1": 3.870171174941091, - "c2": 4.263376294768554, - "c3": 3.972217870222854, - "c4": 4.154306142190379, - "c5": 4.253723093556866, - "c6": 4.413591168746233, - "c7": 4.110820300321759 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -166596,23 +166596,23 @@ "year": 1757, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -0.3107079114817779, - "c2": -34.770331985798606, - "c3": 1.1304767760816787, - "c4": 10.944570524389512, - "c5": 14.601418380834978, - "c6": -9.434893004883161, - "c7": -21.494537522061723 + "points": { + "c1": -31.867983139614033, + "c2": 15.195194254160597, + "c3": 37.18190810043537, + "c4": -16.25663399074935, + "c5": 3.978824660423399, + "c6": -10.854189431302196, + "c7": 13.776660979486657 }, - "vertexSeeds": { - "c1": 2.5523261641174044, - "c2": 2.810465777708402, - "c3": 2.709322860531361, - "c4": 2.732461524140022, - "c5": 2.7481580779723744, - "c6": 2.635975228763913, - "c7": 2.775456424441688 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234398, + "c3": 3.5829865926953284, + "c4": 2.8663892741562638, + "c5": 2.149791955617199, + "c6": 1.4331946370781294, + "c7": 0.7165973185390647 }, "rgb": [77, 76, 132] }, @@ -166623,23 +166623,23 @@ "year": 1756, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 9.433403539079876, - "c2": -28.405051552243172, - "c3": -24.40229184281646, - "c4": -36.87272819885787, - "c5": -29.155418604441806, - "c6": -14.133982323414553, - "c7": -30.085340754527955 + "points": { + "c1": -9.139989332798656, + "c2": -23.772058313521796, + "c3": 4.6794981643398685, + "c4": 17.353463971074376, + "c5": 5.743876884951497, + "c6": -5.052782562821896, + "c7": 38.653418144177685 }, - "vertexSeeds": { - "c1": 9.631020299787906, - "c2": 9.743258755090837, - "c3": 9.13863353230066, - "c4": 8.654789842421577, - "c5": 8.93120146885979, - "c6": 8.9131854174266, - "c7": 8.926808432285917 + "offsets": { + "c1": 16.310679611650485, + "c2": 13.980582524271842, + "c3": 11.650485436893199, + "c4": 9.320388349514564, + "c5": 6.990291262135921, + "c6": 4.660194174757278, + "c7": 2.3300970873786437 }, "rgb": [238, 201, 159] }, @@ -166650,23 +166650,23 @@ "year": 1756, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -35.60422543729339, - "c2": 9.154187009103389, - "c3": 2.6080143791385524, - "c4": -23.64481727252111, - "c5": -20.54579506949677, - "c6": -33.88232715227359, - "c7": -31.623930364001374 + "points": { + "c1": 37.42578755397844, + "c2": -31.914967184916954, + "c3": -37.61475215336756, + "c4": -22.03863199156896, + "c5": -32.167650806767234, + "c6": -19.818864278219092, + "c7": -31.047802099495748 }, - "vertexSeeds": { - "c1": 9.154295443961761, - "c2": 8.938168597954498, - "c3": 9.362128725073955, - "c4": 8.954915697077928, - "c5": 8.422829600737796, - "c6": 8.764830461571362, - "c7": 8.962512529524291 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.536754507628292, + "c3": 11.280628756356908, + "c4": 9.024503005085531, + "c5": 6.768377253814146, + "c6": 4.51225150254276, + "c7": 2.2561257512713753 }, "rgb": [238, 201, 159] }, @@ -166677,23 +166677,23 @@ "year": 1757, "resistanceReported": false, "duration": 43372800, - "curveSeeds": { - "c1": -53.16245755025851, - "c2": -31.626717241438246, - "c3": -12.425366642383516, - "c4": 23.125732506680805, - "c5": -41.38153654744225, - "c6": -48.73008878063336, - "c7": 9.844833093963373 + "points": { + "c1": -4.213619210294503, + "c2": 1.6885497456305245, + "c3": 31.152120005009408, + "c4": -6.808843270907872, + "c5": 25.418040017984907, + "c6": 22.080997824536183, + "c7": 13.344480384611941 }, - "vertexSeeds": { - "c1": 3.2029394352643763, - "c2": 2.5919033684289987, - "c3": 2.305103458877616, - "c4": 3.9171284618518296, - "c5": 2.8873281700413753, - "c6": 3.607127677299058, - "c7": 4.795186637271257 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141469, + "c3": 6.403143781784557, + "c4": 5.122515025427647, + "c5": 3.8418862690707343, + "c6": 2.5612575127138224, + "c7": 1.2806287563569119 }, "rgb": [77, 76, 132] }, @@ -166704,23 +166704,23 @@ "year": 1757, "resistanceReported": true, "duration": 40953600, - "curveSeeds": { - "c1": 6.218194854418279, - "c2": 19.105272521191054, - "c3": -48.41290813173732, - "c4": 15.597340768447808, - "c5": -6.90462623269692, - "c6": 4.217515138848945, - "c7": -31.339729831620907 + "points": { + "c1": -28.077471933642705, + "c2": -53.030323871236675, + "c3": -42.32404131095646, + "c4": 8.098962719318592, + "c5": 6.49030125056148, + "c6": -40.84536069473514, + "c7": 26.346186883887995 }, - "vertexSeeds": { - "c1": 4.657112238332957, - "c2": 4.767856463690064, - "c3": 3.926331337726534, - "c4": 4.256960647610975, - "c5": 4.258368015410506, - "c6": 4.221188241888596, - "c7": 4.428586918449669 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.709662505779009, + "c4": 4.567730004623206, + "c5": 3.425797503467408, + "c6": 2.283865002311605, + "c7": 1.1419325011558026 }, "rgb": [77, 76, 132] }, @@ -166731,23 +166731,23 @@ "year": 1757, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -15.478214336921017, - "c2": 33.24136222470878, - "c3": 4.84476223032312, - "c4": 23.78596188240921, - "c5": -39.248179780846165, - "c6": 6.706127734555039, - "c7": -11.191273073294667 + "points": { + "c1": 22.484332334237152, + "c2": -19.32568876912048, + "c3": -3.977941673023146, + "c4": -17.246937638120187, + "c5": -18.08596159681344, + "c6": -1.7935797948456553, + "c7": -10.066913494754708 }, - "vertexSeeds": { - "c1": 2.9356523979139966, - "c2": 3.156697476353796, - "c3": 3.1093769154161817, - "c4": 3.000251583090999, - "c5": 3.1860563532314887, - "c6": 2.8758987662841315, - "c7": 3.1878654908321926 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757281, + "c3": 3.8834951456310662, + "c4": 3.1067961165048525, + "c5": 2.3300970873786433, + "c6": 1.5533980582524287, + "c7": 0.7766990291262144 }, "rgb": [86, 146, 138] }, @@ -166758,23 +166758,23 @@ "year": 1757, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 24.748549015184814, - "c2": 20.87440531663369, - "c3": 32.16540809030547, - "c4": 34.88626601995731, - "c5": -7.062308213888464, - "c6": 13.837865072559708, - "c7": -19.88644327491519 + "points": { + "c1": 15.577549483187035, + "c2": 12.050159369278973, + "c3": 15.72782821591779, + "c4": 15.805054965350458, + "c5": 35.55321822067015, + "c6": -8.93062528043508, + "c7": 18.445277876540757 }, - "vertexSeeds": { - "c1": 5.769977238373906, - "c2": 5.18924785640196, - "c3": 5.607111990146837, - "c4": 5.167482534203798, - "c5": 5.601380775272011, - "c6": 5.289507063281, - "c7": 5.745486072589717 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026357, + "c3": 6.911696717521956, + "c4": 5.529357374017567, + "c5": 4.147018030513179, + "c6": 2.7646786870087774, + "c7": 1.3823393435043887 }, "rgb": [77, 76, 132] }, @@ -166785,23 +166785,23 @@ "year": 1757, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -40.869783239691316, - "c2": 17.919844282716653, - "c3": 31.061316854903282, - "c4": 9.391648397737981, - "c5": 39.6256850229022, - "c6": -13.973699250162078, - "c7": 31.77459121254448 + "points": { + "c1": 21.982879528937502, + "c2": 5.295683382202888, + "c3": -33.701652859589665, + "c4": -5.232646898873696, + "c5": 3.373492960169706, + "c6": 17.09568249637917, + "c7": 37.28912913559785 }, - "vertexSeeds": { - "c1": 2.668284650720044, - "c2": 2.771461565270151, - "c3": 2.5260818783371413, - "c4": 2.530092167499248, - "c5": 2.711800285280094, - "c6": 2.639669612845739, - "c7": 2.7052682528782013 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919534, + "c3": 3.3287101248266313, + "c4": 2.6629680998613035, + "c5": 1.9972260748959751, + "c6": 1.331484049930653, + "c7": 0.6657420249653251 }, "rgb": [86, 146, 138] }, @@ -166812,23 +166812,23 @@ "year": 1757, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 16.336689136301075, - "c2": -19.174394061064834, - "c3": 36.50435869611483, - "c4": 20.995401540245894, - "c5": -24.76752084386215, - "c6": -30.897560446335568, - "c7": -17.792991199081996 + "points": { + "c1": 25.674019984945723, + "c2": 0.07861290048435166, + "c3": -3.219947169580969, + "c4": 9.221337171652657, + "c5": -9.589784966329088, + "c6": 1.1953531431250255, + "c7": 21.267702346432458 }, - "vertexSeeds": { - "c1": 3.9100363800241467, - "c2": 4.043624410654557, - "c3": 4.25127074312349, - "c4": 4.362342307917918, - "c5": 3.984399113560393, - "c6": 4.045661549977553, - "c7": 3.8157505403004057 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -166839,23 +166839,23 @@ "year": 1756, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -1.0986206097283997, - "c2": -7.77871338362522, - "c3": 15.466016485899729, - "c4": 22.144875331122954, - "c5": 9.022446544391414, - "c6": -0.9190895728176045, - "c7": 11.133693361554826 + "points": { + "c1": -30.767970630933544, + "c2": -0.48206841103844766, + "c3": 20.273133992249633, + "c4": 11.943249472364023, + "c5": -36.304227631867, + "c6": 4.566473426115913, + "c7": -14.625048200813985 }, - "vertexSeeds": { - "c1": 2.0196503691425858, - "c2": 1.9822478404350867, - "c3": 1.933355002527054, - "c4": 1.9472703077987745, - "c5": 2.0566418746668176, - "c6": 2.0841189716483144, - "c7": 1.9078532168675069 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.02357836338419, + "c3": 2.5196486361534896, + "c4": 2.015718908922793, + "c5": 1.511789181692093, + "c6": 1.0078594544613966, + "c7": 0.5039297272307005 }, "rgb": [222, 0, 59] }, @@ -166866,23 +166866,23 @@ "year": 1756, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -27.37005395642317, - "c2": 3.912266218226577, - "c3": -1.7685579699597405, - "c4": -10.31477638474432, - "c5": -18.00203976203696, - "c6": -5.936674629141443, - "c7": 7.291804058111126 + "points": { + "c1": 11.924721458506404, + "c2": 21.37187577066112, + "c3": -4.856181280541961, + "c4": 16.64915051354903, + "c5": -11.35540227747822, + "c6": -31.108044375319864, + "c7": 33.78023892166078 }, - "vertexSeeds": { - "c1": 2.5004971664854376, - "c2": 2.3078440351800382, - "c3": 2.486394382972946, - "c4": 2.4398146689877214, - "c5": 2.2275195158428365, - "c6": 2.2547432700993757, - "c7": 2.3993319722754842 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288477, + "c3": 3.005085529357372, + "c4": 2.4040684234859, + "c5": 1.8030513176144238, + "c6": 1.202034211742948, + "c7": 0.601017105871472 }, "rgb": [222, 0, 59] }, @@ -166893,23 +166893,23 @@ "year": 1757, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 19.7178214011561, - "c2": 16.396238435474466, - "c3": -26.094292604403197, - "c4": -20.3058543807058, - "c5": -4.433393997741291, - "c6": 22.3226204905259, - "c7": -27.62266827136623 + "points": { + "c1": -5.0467214403701846, + "c2": -18.437971287582624, + "c3": -11.605642735583455, + "c4": 31.32781125980722, + "c5": 6.168210642037799, + "c6": 31.389321967830057, + "c7": -11.840108655830424 }, - "vertexSeeds": { - "c1": 5.862192414847602, - "c2": 5.650290624021363, - "c3": 5.5160370034498545, - "c4": 5.549799937347447, - "c5": 5.554037974889865, - "c6": 5.541893177081364, - "c7": 5.876506342706154 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031903, + "c3": 7.489597780859921, + "c4": 5.99167822468794, + "c5": 4.493758668515958, + "c6": 2.995839112343963, + "c7": 1.4979195561719945 }, "rgb": [58, 15, 49] }, @@ -166920,23 +166920,23 @@ "year": 1756, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -29.956228713381893, - "c2": -3.87945057696502, - "c3": 8.785068410754505, - "c4": 30.763554066526538, - "c5": 15.99284508742091, - "c6": -29.79857161703554, - "c7": -33.25199671068046 + "points": { + "c1": 26.05889817291785, + "c2": -3.580568358952384, + "c3": 17.394514937884487, + "c4": 22.51327240469525, + "c5": 11.887947679868773, + "c6": -6.211297513237785, + "c7": -21.3104750132119 }, - "vertexSeeds": { - "c1": 8.769259588942575, - "c2": 7.368295459854627, - "c3": 7.839275273037585, - "c4": 7.9666347670381406, - "c5": 7.184344596486593, - "c6": 8.182907162400582, - "c7": 8.462414924217017 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.56588072122053, + "c3": 10.47156726768378, + "c4": 8.377253814147016, + "c5": 6.282940360610265, + "c6": 4.188626907073514, + "c7": 2.094313453536752 }, "rgb": [238, 201, 159] }, @@ -166947,23 +166947,23 @@ "year": 1756, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -20.676035394893297, - "c2": -11.431245117581973, - "c3": -9.169648432560566, - "c4": -21.896830646096976, - "c5": 17.91430269766897, - "c6": -1.077128727337147, - "c7": 8.172740041669499 + "points": { + "c1": 14.405604230615221, + "c2": 20.37890284880375, + "c3": 21.579228724849347, + "c4": 4.165554729700219, + "c5": 16.085832682719985, + "c6": 22.108044884922318, + "c7": -9.682830312872445 }, - "vertexSeeds": { - "c1": 3.469399111576876, - "c2": 3.141829905929068, - "c3": 3.15283119424677, - "c4": 3.195652299702057, - "c5": 3.0494320237897163, - "c6": 3.295517959789904, - "c7": 3.366262931422675 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033284, + "c4": 3.328710124826629, + "c5": 2.496532593619973, + "c6": 1.6643550624133177, + "c7": 0.8321775312066556 }, "rgb": [77, 76, 132] }, @@ -166974,23 +166974,23 @@ "year": 1756, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -15.345248384041007, - "c2": -7.445795526935861, - "c3": 3.0958259596128066, - "c4": 14.358087995500927, - "c5": 4.709562736834375, - "c6": -27.573530975095185, - "c7": 26.072771084791324 + "points": { + "c1": -8.41359760003839, + "c2": 16.568613331330493, + "c3": -4.286032821169005, + "c4": -14.56280182953741, + "c5": -20.55524270141941, + "c6": -30.066492253125826, + "c7": 15.273055007284487 }, - "vertexSeeds": { - "c1": 4.3273510680254965, - "c2": 4.571795178100664, - "c3": 4.648307254166214, - "c4": 4.027380722495336, - "c5": 4.779290132152493, - "c6": 4.069125821922242, - "c7": 4.239980762363035 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -167001,23 +167001,23 @@ "year": 1756, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -12.400198654552703, - "c2": 2.635978545616574, - "c3": 15.175073642438015, - "c4": 15.323297448965086, - "c5": 20.094435716825465, - "c6": -26.00999965658813, - "c7": -0.32512980948259695 + "points": { + "c1": 16.94818056982149, + "c2": 10.06875924312164, + "c3": -9.712999477039414, + "c4": -13.203602892092817, + "c5": -25.554457976043466, + "c6": 3.687858587952377, + "c7": 32.51100977881042 }, - "vertexSeeds": { - "c1": 7.5864269581336155, - "c2": 7.605311529584773, - "c3": 7.6177347145846355, - "c4": 7.555553363501303, - "c5": 7.50579631340774, - "c6": 7.512820204451453, - "c7": 7.677199605272796 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088745, + "c3": 9.246417013407312, + "c4": 7.39713361072583, + "c5": 5.547850208044396, + "c6": 3.698566805362915, + "c7": 1.849283402681482 }, "rgb": [222, 0, 59] }, @@ -167028,23 +167028,23 @@ "year": 1757, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -27.29154760657331, - "c2": -14.002789766962646, - "c3": -21.420580907598346, - "c4": 14.973281990204761, - "c5": -15.52752082777274, - "c6": -26.133183327560676, - "c7": -6.2654923331248895 + "points": { + "c1": 9.716520710402563, + "c2": 1.6348153429371166, + "c3": 32.156001809256026, + "c4": -29.887868792796105, + "c5": 26.975968327198586, + "c6": 15.401680714170126, + "c7": 21.30334326726829 }, - "vertexSeeds": { - "c1": 5.6495693336023, - "c2": 5.595538051103007, - "c3": 5.881003144815586, - "c4": 5.5086482717865755, - "c5": 5.301577341536387, - "c6": 5.747379831444377, - "c7": 5.975012917941119 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [77, 76, 132] }, @@ -167055,23 +167055,23 @@ "year": 1757, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -30.822257719116376, - "c2": 26.33352315966063, - "c3": 7.718666488626191, - "c4": -42.9521079950018, - "c5": -26.50782695472571, - "c6": -26.94262685507268, - "c7": -8.994693112158679 + "points": { + "c1": -0.900754494052677, + "c2": 13.977798515999424, + "c3": -48.13545643171905, + "c4": -33.91086321448925, + "c5": -22.431150432175972, + "c6": 39.62424702581659, + "c7": 28.052076571149357 }, - "vertexSeeds": { - "c1": 9.489771047807634, - "c2": 8.52954308828541, - "c3": 8.583066135691848, - "c4": 9.45926444058479, - "c5": 9.103673486592468, - "c6": 8.836703151178366, - "c7": 9.093056642128804 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352284, + "c3": 11.696717521960247, + "c4": 9.357374017568194, + "c5": 7.018030513176142, + "c6": 4.678687008784091, + "c7": 2.339343504392052 }, "rgb": [222, 0, 59] }, @@ -167082,23 +167082,23 @@ "year": 1757, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -7.52461272970158, - "c2": -14.465869194273651, - "c3": 2.794774837454675, - "c4": -6.275691697172853, - "c5": 30.501546720595684, - "c6": -5.940135192288778, - "c7": 2.159875249132064 + "points": { + "c1": -20.34785212309909, + "c2": 16.028865914339157, + "c3": 11.663360732950025, + "c4": 16.391234977136996, + "c5": -34.56453871672725, + "c6": 21.84975286120592, + "c7": 3.5101143946920885 }, - "vertexSeeds": { - "c1": 6.7834447096491814, - "c2": 6.4689298415916445, - "c3": 6.562412740034069, - "c4": 7.630776135872778, - "c5": 7.443421659633909, - "c6": 7.104813942136559, - "c7": 7.469915856998003 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.2464170134073, + "c4": 7.397133610725842, + "c5": 5.547850208044384, + "c6": 3.6985668053629257, + "c7": 1.8492834026814577 }, "rgb": [222, 0, 59] }, @@ -167109,23 +167109,23 @@ "year": 1757, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 10.742801350570403, - "c2": -19.776977566306496, - "c3": -0.4674150780876545, - "c4": -9.200049630089858, - "c5": -25.419992939235634, - "c6": 9.879937707321574, - "c7": -3.5237801555426316 + "points": { + "c1": 12.793761554658133, + "c2": -23.713521007193958, + "c3": 37.69707365795817, + "c4": -5.303675183907565, + "c5": -5.187264604199235, + "c6": 15.28449515090891, + "c7": -19.36013607118176 }, - "vertexSeeds": { - "c1": 5.180070713772016, - "c2": 5.272173948971496, - "c3": 4.919679041529542, - "c4": 4.572276000248572, - "c5": 5.337586657496005, - "c6": 4.717594761798143, - "c7": 4.804343402126011 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382797, + "c3": 6.541840036985669, + "c4": 5.233472029588531, + "c5": 3.9251040221914035, + "c6": 2.6167360147942706, + "c7": 1.3083680073971378 }, "rgb": [58, 15, 49] }, @@ -167136,23 +167136,23 @@ "year": 1757, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -27.65948139468245, - "c2": -14.244438215665308, - "c3": 15.86017326861775, - "c4": 35.978902693435174, - "c5": 7.522488976022927, - "c6": 7.918067993409856, - "c7": 11.929901575524937 + "points": { + "c1": 3.3557122610720285, + "c2": -14.427615393033015, + "c3": 29.925185819437615, + "c4": -2.740460950480525, + "c5": -10.34214762567165, + "c6": -23.155772837151954, + "c7": 24.222776836733644 }, - "vertexSeeds": { - "c1": 2.659517458302279, - "c2": 2.635214056530552, - "c3": 2.472793978441936, - "c4": 2.6610445535230283, - "c5": 2.5349472141897866, - "c6": 2.625470228510032, - "c7": 2.4973617714721867 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631065, + "c3": 3.2362459546925613, + "c4": 2.588996763754047, + "c5": 1.9417475728155325, + "c6": 1.294498381877029, + "c7": 0.6472491909385145 }, "rgb": [222, 0, 59] }, @@ -167163,23 +167163,23 @@ "year": 1757, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -7.084015916435444, - "c2": -0.4988531783480816, - "c3": 23.460570726409983, - "c4": -8.54960117648293, - "c5": -7.122578798802895, - "c6": -2.3652980580334493, - "c7": 30.635920343159597 + "points": { + "c1": 2.8005691759629343, + "c2": 32.410406000188374, + "c3": 3.0684007159323343, + "c4": -32.08141051823836, + "c5": 12.992633265654177, + "c6": -32.43477656657181, + "c7": 0.8931329394365832 }, - "vertexSeeds": { - "c1": 5.644548589666839, - "c2": 5.857004474770191, - "c3": 5.782575435133401, - "c4": 5.531042023052143, - "c5": 5.79569719166603, - "c6": 5.740514143230643, - "c7": 5.540072804502582 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [86, 146, 138] }, @@ -167190,23 +167190,23 @@ "year": 1757, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -22.066379682267986, - "c2": 0.5212991899965971, - "c3": -16.01005217282901, - "c4": -8.067954521537828, - "c5": 33.80216174592022, - "c6": -26.33250764975077, - "c7": 24.417902014160973 + "points": { + "c1": 31.409259950562024, + "c2": 0.5193694211450506, + "c3": -29.793775446045373, + "c4": -29.572390011493425, + "c5": 12.087747276371957, + "c6": -37.96330944346211, + "c7": -37.70684413673352 }, - "vertexSeeds": { - "c1": 1.728036802476867, - "c2": 1.723658934419465, - "c3": 1.6553420270220098, - "c4": 1.7064099175944523, - "c5": 1.6928936674621773, - "c6": 1.7096835299068047, - "c7": 1.703984285965793 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619974, + "c3": 2.0804438280166466, + "c4": 1.6643550624133192, + "c5": 1.248266296809992, + "c6": 0.8321775312066545, + "c7": 0.41608876560332725 }, "rgb": [238, 201, 159] }, @@ -167217,23 +167217,23 @@ "year": 1757, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 20.32908090824386, - "c2": -25.16961543023035, - "c3": -34.29936720910513, - "c4": -27.992367468489416, - "c5": 1.4331504226524743, - "c6": -7.392970193778254, - "c7": 4.942894844551354 + "points": { + "c1": -0.4917684663410071, + "c2": -41.911852369027905, + "c3": -39.029807641827695, + "c4": -1.4989465192018727, + "c5": 8.171609213446878, + "c6": 36.427197074362965, + "c7": -36.15177014288248 }, - "vertexSeeds": { - "c1": 8.130464729825247, - "c2": 7.655483413115836, - "c3": 7.765817477057929, - "c4": 7.337865508589691, - "c5": 7.75749202105065, - "c6": 7.316107207014466, - "c7": 7.806909547539625 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [238, 201, 159] }, @@ -167244,23 +167244,23 @@ "year": 1757, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 27.181852521893063, - "c2": 25.72931837247875, - "c3": 29.27312926204558, - "c4": 9.009604813166497, - "c5": -31.302864315242754, - "c6": 29.45961439699534, - "c7": -0.5804930834889248 + "points": { + "c1": 30.971167226416867, + "c2": 6.900559357148062, + "c3": 11.372606787881445, + "c4": 25.050498552136858, + "c5": -22.61974447965364, + "c6": 9.433411738011145, + "c7": -18.240898157260148 }, - "vertexSeeds": { - "c1": 8.073440485956866, - "c2": 7.93998871333598, - "c3": 8.032485770968373, - "c4": 7.857227542158024, - "c5": 8.113351185467717, - "c6": 8.020245051808882, - "c7": 7.903807539722467 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214985, + "c3": 9.893666204345825, + "c4": 7.914932963476668, + "c5": 5.936199722607509, + "c6": 3.957466481738317, + "c7": 1.9787332408691585 }, "rgb": [58, 15, 49] }, @@ -167271,23 +167271,23 @@ "year": 1757, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -36.93709783031903, - "c2": -10.443175736050499, - "c3": -13.398916631792943, - "c4": -9.786892027122441, - "c5": -6.69658632388942, - "c6": 31.38874134211642, - "c7": -16.154708215706552 + "points": { + "c1": 20.32989214187411, + "c2": 34.13535953482953, + "c3": -27.409517633162526, + "c4": 9.05229135134936, + "c5": 41.18720792037182, + "c6": -25.134660240254636, + "c7": 2.7145018160896157 }, - "vertexSeeds": { - "c1": 1.9061869678654053, - "c2": 2.0456678852272026, - "c3": 1.958097784013139, - "c4": 1.8893481338043938, - "c5": 1.8670073202191435, - "c6": 1.89226933604866, - "c7": 1.9434365791928054 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450753, + "c3": 2.612112806287564, + "c4": 2.08969024503005, + "c5": 1.5672676837725361, + "c6": 1.044845122515025, + "c7": 0.522422561257511 }, "rgb": [77, 76, 132] }, @@ -167298,23 +167298,23 @@ "year": 1757, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 11.284223583990244, - "c2": -20.332533736742043, - "c3": 6.432093610572071, - "c4": -10.751038287112763, - "c5": -3.775360550654341, - "c6": -18.683376549791284, - "c7": -8.969427922120513 + "points": { + "c1": -13.879626108786354, + "c2": -23.449154704909887, + "c3": 1.6242204549877677, + "c4": -17.26911075692532, + "c5": 22.99678114282963, + "c6": -28.84150608150196, + "c7": 14.224797911904641 }, - "vertexSeeds": { - "c1": 6.312276597171834, - "c2": 5.734408884123777, - "c3": 5.555278531350897, - "c4": 6.7753495245201325, - "c5": 5.447399411410787, - "c6": 6.455946892337002, - "c7": 6.373074921959426 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [77, 76, 132] }, @@ -167325,23 +167325,23 @@ "year": 1757, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 28.76252713143613, - "c2": 3.728427022266594, - "c3": 28.952944989847225, - "c4": 18.6180618067944, - "c5": 8.553866748072743, - "c6": 31.358719264038683, - "c7": 13.77237482396886 + "points": { + "c1": -33.89168449733083, + "c2": -17.648382438689723, + "c3": -7.394658419374693, + "c4": -36.322856369115215, + "c5": -19.06595375613795, + "c6": 0.6030415248360796, + "c7": -8.478285233599827 }, - "vertexSeeds": { - "c1": 3.864994997101251, - "c2": 3.889570133161823, - "c3": 4.00987730125431, - "c4": 4.059475075885309, - "c5": 3.6961904783687514, - "c6": 3.509694150185598, - "c7": 3.778232826926973 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [222, 0, 59] }, @@ -167352,23 +167352,23 @@ "year": 1757, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 16.5485962551493, - "c2": 24.395587049634166, - "c3": 23.577431489030495, - "c4": 34.16842402393042, - "c5": -40.351168586958224, - "c6": -2.3157235390248516, - "c7": -7.141779122856292 + "points": { + "c1": 8.50052535009187, + "c2": -23.52305574993912, + "c3": 42.863369948569975, + "c4": -13.659715764920797, + "c5": 17.31884532439208, + "c6": -42.315399357595325, + "c7": -5.110264629424577 }, - "vertexSeeds": { - "c1": 6.249212718791648, - "c2": 6.184958377004623, - "c3": 6.053200240159525, - "c4": 6.182290344369763, - "c5": 6.016156697561426, - "c6": 6.207854598813354, - "c7": 5.622524644788993 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -167379,23 +167379,23 @@ "year": 1757, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 4.298796303817753, - "c2": 28.158147284166432, - "c3": -32.81030955120587, - "c4": 10.467931290714297, - "c5": -23.23068807763419, - "c6": -29.56230448183392, - "c7": -1.8311810182666264 + "points": { + "c1": 21.534963148167662, + "c2": -29.38659173804505, + "c3": 13.131870498948714, + "c4": -21.625750951332837, + "c5": 17.50505437741495, + "c6": -20.650483833322397, + "c7": -22.4848897603458 }, - "vertexSeeds": { - "c1": 5.7854583138691815, - "c2": 6.184292904339347, - "c3": 6.468838981835063, - "c4": 6.45591038871574, - "c5": 6.131010675266575, - "c6": 5.867877296920759, - "c7": 6.421524551776545 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876556, + "c3": 7.975034674063803, + "c4": 6.3800277392510365, + "c5": 4.785020804438284, + "c6": 3.1900138696255183, + "c7": 1.5950069348127658 }, "rgb": [77, 76, 132] }, @@ -167406,23 +167406,23 @@ "year": 1757, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -8.582672414576198, - "c2": -14.578480894780519, - "c3": -16.914567129918638, - "c4": 5.598316743937847, - "c5": 23.51070554914196, - "c6": 2.354103316469896, - "c7": -7.8662272262737325 + "points": { + "c1": -15.351106092333149, + "c2": 7.093803815027584, + "c3": 23.78433347220701, + "c4": -14.548336837872878, + "c5": -6.868858627056195, + "c6": 22.437722986514906, + "c7": -23.19514807908559 }, - "vertexSeeds": { - "c1": 3.1219675772262314, - "c2": 3.228019541927784, - "c3": 3.3422494880771803, - "c4": 3.319673603798296, - "c5": 3.37997870228879, - "c6": 3.187393818227936, - "c7": 3.2549850298700003 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [58, 15, 49] }, @@ -167433,23 +167433,23 @@ "year": 1757, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 24.990032166958223, - "c2": 36.43523869507168, - "c3": 24.175690166452902, - "c4": 34.924417436079715, - "c5": -31.457120815081986, - "c6": 38.99057461883236, - "c7": 26.205730958961816 + "points": { + "c1": 23.847157665666394, + "c2": 11.95557396342047, + "c3": -25.311001632740155, + "c4": 8.83658510322352, + "c5": 19.94271752302528, + "c6": -30.638496184041855, + "c7": 15.917997423268162 }, - "vertexSeeds": { - "c1": 8.304265989075846, - "c2": 8.566618071598938, - "c3": 7.603527006664664, - "c4": 7.672491397770377, - "c5": 8.201880187952026, - "c6": 9.02229396630521, - "c7": 8.5671742838908 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984741, + "c3": 10.910772075820622, + "c4": 8.728617660656496, + "c5": 6.546463245492371, + "c6": 4.364308830328254, + "c7": 2.182154415164127 }, "rgb": [238, 201, 159] }, @@ -167460,23 +167460,23 @@ "year": 1757, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": -1.4421343077943902, - "c2": 20.659153815012253, - "c3": 4.82496051071935, - "c4": 20.93180927961358, - "c5": 14.059199964605881, - "c6": -12.36842350982849, - "c7": -15.436004161821767 + "points": { + "c1": 26.071935389470582, + "c2": 25.85360126936382, + "c3": 10.725400701936124, + "c4": -0.5043289422261346, + "c5": 1.2401920967280091, + "c6": -14.662489689766254, + "c7": -19.2731877049764 }, - "vertexSeeds": { - "c1": 3.8753115437531784, - "c2": 3.90305888655113, - "c3": 4.308403922782947, - "c4": 4.335432858342536, - "c5": 4.215794341497169, - "c6": 4.436687971040081, - "c7": 4.316504274740358 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -167487,23 +167487,23 @@ "year": 1757, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 19.432827988839477, - "c2": -27.1309565838721, - "c3": -32.102070559459875, - "c4": -0.2646307264770229, - "c5": -1.5567002179976583, - "c6": 23.319910785840364, - "c7": 34.53383145328844 + "points": { + "c1": -28.334232934667106, + "c2": 36.568016462425916, + "c3": -40.47706531454755, + "c4": 37.49211633305987, + "c5": 46.69240275947166, + "c6": 15.958473656361818, + "c7": -20.474116897311646 }, - "vertexSeeds": { - "c1": 6.752286708415389, - "c2": 7.498273159612518, - "c3": 7.259132391936082, - "c4": 6.856434157456972, - "c5": 7.0928856194623044, - "c6": 7.106504277568394, - "c7": 6.852618143949314 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.2464170134073, + "c4": 7.397133610725837, + "c5": 5.547850208044388, + "c6": 3.6985668053629257, + "c7": 1.8492834026814629 }, "rgb": [58, 15, 49] }, @@ -167514,23 +167514,23 @@ "year": 1757, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -33.25352301668215, - "c2": -21.396448624221758, - "c3": -32.933461147184275, - "c4": -18.685359995837718, - "c5": -2.5691520901390987, - "c6": 19.435437170051294, - "c7": -11.179245985671976 + "points": { + "c1": 35.00777402596445, + "c2": 8.554022031883235, + "c3": -25.315912231824214, + "c4": -26.688063064264966, + "c5": 1.5357468827368734, + "c6": -28.683476234364395, + "c7": -26.608135876188197 }, - "vertexSeeds": { - "c1": 4.12925952694329, - "c2": 4.090912448474462, - "c3": 4.456791160257841, - "c4": 4.4811914134444955, - "c5": 4.365628476677681, - "c6": 4.348404291371369, - "c7": 4.141478506153438 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -167541,23 +167541,23 @@ "year": 1757, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": -35.666578773025606, - "c2": 27.636489985609785, - "c3": 37.325843572219995, - "c4": 35.7107653217591, - "c5": 6.012202297542068, - "c6": -40.337595505560955, - "c7": 52.528140695323174 + "points": { + "c1": -11.647283501312508, + "c2": 23.7396319909236, + "c3": -45.92631383430365, + "c4": 23.410990409441453, + "c5": -24.565714844044162, + "c6": 6.181760664524951, + "c7": -46.014327613850384 }, - "vertexSeeds": { - "c1": 8.476906931368115, - "c2": 8.294861888260332, - "c3": 8.610146937388006, - "c4": 7.930800769444773, - "c5": 8.051199388814847, - "c6": 7.323212296234077, - "c7": 7.356601319349519 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938977, + "c3": 10.309754969949141, + "c4": 8.247803975959314, + "c5": 6.1858529819694885, + "c6": 4.123901987979653, + "c7": 2.0619509939898264 }, "rgb": [77, 76, 132] }, @@ -167568,23 +167568,23 @@ "year": 1757, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 22.834736582870427, - "c2": -10.13402535792735, - "c3": 0.25691581187146895, - "c4": -8.347095041404202, - "c5": -12.054406289174683, - "c6": -22.28842397685467, - "c7": 22.100392519393658 + "points": { + "c1": -5.853396858069935, + "c2": -22.01677775969948, + "c3": 8.512844931484224, + "c4": -5.491480465347827, + "c5": -1.0323923630986123, + "c6": 1.837547949726332, + "c7": 5.922878974418232 }, - "vertexSeeds": { - "c1": 3.814683720732706, - "c2": 4.336018737373255, - "c3": 4.217312798942331, - "c4": 4.053158263069198, - "c5": 4.356797479946592, - "c6": 4.242238094844032, - "c7": 4.058137764528526 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -167595,23 +167595,23 @@ "year": 1757, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 30.193059786627988, - "c2": 13.433888408284151, - "c3": 23.96051572757297, - "c4": -1.0191680119190565, - "c5": 3.000181015626257, - "c6": 16.928533351316243, - "c7": -9.271594802105326 + "points": { + "c1": 32.03756850207104, + "c2": 25.692686028175416, + "c3": 29.58236395338126, + "c4": -10.748808192852643, + "c5": -20.761802480996508, + "c6": 21.623270077970098, + "c7": 23.159387785912145 }, - "vertexSeeds": { - "c1": 4.790074356677688, - "c2": 4.650452897592667, - "c3": 4.6515878145271765, - "c4": 4.745465101568799, - "c5": 4.667372586929827, - "c6": 4.682869989847488, - "c7": 4.781964038391954 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055488, + "c3": 5.779010633379562, + "c4": 4.623208506703659, + "c5": 3.4674063800277324, + "c6": 2.3116042533518293, + "c7": 1.155802126675903 }, "rgb": [238, 201, 159] }, @@ -167622,23 +167622,23 @@ "year": 1757, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -3.150142515484724, - "c2": -1.5824244839080563, - "c3": 19.078603769811846, - "c4": -23.204305631706035, - "c5": 15.291508776236117, - "c6": -16.016642281224968, - "c7": 0.9176367952903277 + "points": { + "c1": -8.484789438253596, + "c2": 7.7745695030828195, + "c3": -24.147775980405648, + "c4": 14.456593885441055, + "c5": -6.496741021233998, + "c6": -11.63238666817192, + "c7": -7.6163527944517995 }, - "vertexSeeds": { - "c1": 0.6994818652849741, - "c2": 0.6994818652849741, - "c3": 0.6994818652849741, - "c4": 0.6994818652849741, - "c5": 0.6994818652849741, - "c6": 0.6994818652849741, - "c7": 0.6994818652849741 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -167649,23 +167649,23 @@ "year": 1757, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -13.340941554854606, - "c2": 19.262583976234634, - "c3": 2.7476381771755207, - "c4": -24.719959996174094, - "c5": 23.902264610935898, - "c6": 12.787985600039061, - "c7": 4.079466052915418 + "points": { + "c1": -6.913079438281539, + "c2": 22.752087252546932, + "c3": 18.89372777486256, + "c4": -8.187499350793267, + "c5": -20.282164172982725, + "c6": 4.051135102192422, + "c7": -16.45770280804327 }, - "vertexSeeds": { - "c1": 6.295961231036293, - "c2": 6.37724801099119, - "c3": 6.3908531866373615, - "c4": 6.582576462421265, - "c5": 6.851769007002247, - "c6": 6.708787260542725, - "c7": 6.262213682712549 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922336, + "c3": 8.576051779935272, + "c4": 6.860841423948224, + "c5": 5.145631067961161, + "c6": 3.430420711974112, + "c7": 1.7152103559870622 }, "rgb": [58, 15, 49] }, @@ -167676,23 +167676,23 @@ "year": 1757, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 4.083259605779546, - "c2": 14.769914533202503, - "c3": 9.152661710879585, - "c4": 3.2315853922206514, - "c5": -24.419958561025187, - "c6": -25.031500609119032, - "c7": -21.597781631199837 + "points": { + "c1": 11.078040312926987, + "c2": -6.480315091530848, + "c3": -8.685064326419045, + "c4": 4.096048146310103, + "c5": -2.568025532670326, + "c6": 23.49509168944197, + "c7": -23.692076715112588 }, - "vertexSeeds": { - "c1": 2.344137967815778, - "c2": 2.3198534375473376, - "c3": 2.2711940357802596, - "c4": 2.192402056727734, - "c5": 2.3069229451660536, - "c6": 2.1601925196899825, - "c7": 2.1479238644792447 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [86, 146, 138] }, @@ -167703,23 +167703,23 @@ "year": 1757, "resistanceReported": true, "duration": 24624000, - "curveSeeds": { - "c1": -30.66512732273329, - "c2": 27.820906451247573, - "c3": -23.053590955660674, - "c4": 21.321603587532678, - "c5": 6.018280590896175, - "c6": 24.584469571587164, - "c7": -33.447432337681754 + "points": { + "c1": -4.324835946894019, + "c2": 23.0784819156136, + "c3": -33.70045804683728, + "c4": -14.547944308442563, + "c5": 8.257214572314396, + "c6": -37.511970044400364, + "c7": 5.72173102938239 }, - "vertexSeeds": { - "c1": 5.485027227179776, - "c2": 5.487843745911891, - "c3": 5.6313987804983965, - "c4": 5.747192086793626, - "c5": 5.678527277139411, - "c6": 5.680189609164879, - "c7": 5.680068517118233 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945908, + "c3": 6.865464632454924, + "c4": 5.492371705963939, + "c5": 4.119278779472954, + "c6": 2.7461858529819696, + "c7": 1.3730929264909848 }, "rgb": [222, 0, 59] }, @@ -167730,23 +167730,23 @@ "year": 1757, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 28.98617994414728, - "c2": 7.423220294736915, - "c3": -8.931938203443792, - "c4": 29.21021568477498, - "c5": 11.378360019993387, - "c6": 16.161618320691048, - "c7": 18.807047215998196 + "points": { + "c1": 35.73974882868181, + "c2": 11.52171557744191, + "c3": 16.021418011974042, + "c4": -32.97753487491153, + "c5": 32.87408978570798, + "c6": 36.33096590572076, + "c7": -13.877545701764248 }, - "vertexSeeds": { - "c1": 7.379716211258735, - "c2": 7.557815363071852, - "c3": 7.790888470926304, - "c4": 7.492991508327617, - "c5": 7.268826015920023, - "c6": 7.7440411159666, - "c7": 8.445880663330787 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617196, + "c3": 10.124826629680996, + "c4": 8.099861303744806, + "c5": 6.0748959778086045, + "c6": 4.049930651872403, + "c7": 2.0249653259362015 }, "rgb": [238, 201, 159] }, @@ -167757,23 +167757,23 @@ "year": 1757, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -11.074936558815107, - "c2": 16.52927368049737, - "c3": 9.134043198208865, - "c4": -2.5494109942397927, - "c5": 4.580884253280747, - "c6": 2.2786650602594136, - "c7": -16.771839299039346 + "points": { + "c1": -3.2009649825658357, + "c2": 11.843309364618882, + "c3": -5.168338226130949, + "c4": 2.09245264529876, + "c5": -18.661471435275594, + "c6": -6.218587811722305, + "c7": 18.67600678519991 }, - "vertexSeeds": { - "c1": 6.529235436914098, - "c2": 5.7995798154779505, - "c3": 5.788984651596005, - "c4": 6.556192358144894, - "c5": 6.175738737382049, - "c6": 6.3211337330872945, - "c7": 6.452688304576726 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.859454461396207, + "c4": 6.28756356911697, + "c5": 4.7156726768377215, + "c6": 3.143781784558485, + "c7": 1.571890892279249 }, "rgb": [238, 201, 159] }, @@ -167784,23 +167784,23 @@ "year": 1757, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 25.67327370944031, - "c2": 28.37357440271363, - "c3": 24.16064501215623, - "c4": 7.416280807210164, - "c5": 3.457815497075977, - "c6": -26.63107868914157, - "c7": 18.56659518193475 + "points": { + "c1": 27.16235122072967, + "c2": 31.70873678571042, + "c3": -1.2406354701021414, + "c4": 6.159896948452683, + "c5": -9.165879524132109, + "c6": -24.66049120600722, + "c7": -21.27283020038112 }, - "vertexSeeds": { - "c1": 1.1654208081174362, - "c2": 1.3275992073478744, - "c3": 1.1997607744008223, - "c4": 1.0721759194552485, - "c5": 1.3221162846623489, - "c6": 1.331363532023759, - "c7": 1.14637752624188 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155342, + "c3": 1.6181229773462786, + "c4": 1.2944983818770233, + "c5": 0.9708737864077667, + "c6": 0.6472491909385111, + "c7": 0.32362459546925554 }, "rgb": [58, 15, 49] }, @@ -167811,23 +167811,23 @@ "year": 1757, "resistanceReported": true, "duration": 26956800, - "curveSeeds": { - "c1": 23.726160275683576, - "c2": -34.119136837752535, - "c3": -31.628332947121994, - "c4": -20.531207606078556, - "c5": 10.312312785696761, - "c6": -18.07201759616468, - "c7": -3.789917243893804 + "points": { + "c1": -32.236617829325226, + "c2": 0.48101533323349344, + "c3": 24.23663420026479, + "c4": 9.607090336194986, + "c5": 13.050760275925875, + "c6": 35.548873977836124, + "c7": -26.737752701133587 }, - "vertexSeeds": { - "c1": 3.386622981761878, - "c2": 3.192884505665708, - "c3": 3.8292722509465804, - "c4": 3.688359737555724, - "c5": 3.6721611728587806, - "c6": 3.4218027809935974, - "c7": 3.246956146083099 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.62320850670365, + "c4": 3.698566805362921, + "c5": 2.773925104022192, + "c6": 1.8492834026814629, + "c7": 0.9246417013407289 }, "rgb": [222, 0, 59] }, @@ -167838,23 +167838,23 @@ "year": 1757, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 10.477955665100232, - "c2": -9.85205296106993, - "c3": -14.653916744894609, - "c4": 7.50034372212383, - "c5": -29.26129789061293, - "c6": -11.582730766603678, - "c7": -9.406270293047864 + "points": { + "c1": -25.12243356823339, + "c2": 22.708475037774548, + "c3": -8.283626008905848, + "c4": -37.38791660879963, + "c5": -27.017459472532526, + "c6": 35.970841844938775, + "c7": -25.916051241600247 }, - "vertexSeeds": { - "c1": 5.585924890068913, - "c2": 5.356331950549822, - "c3": 5.2816812088160585, - "c4": 5.1347445442935795, - "c5": 5.043978978133773, - "c6": 5.467420468225, - "c7": 5.040480939506943 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186773, + "c4": 5.344429033749432, + "c5": 4.008321775312075, + "c6": 2.672214516874716, + "c7": 1.336107258437358 }, "rgb": [238, 201, 159] }, @@ -167865,23 +167865,23 @@ "year": 1757, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -0.01656951835149556, - "c2": -27.758541077517528, - "c3": -3.52134837770884, - "c4": 13.822283683537957, - "c5": -25.309526358294, - "c6": -16.161806720199785, - "c7": 8.373081336676304 + "points": { + "c1": 3.4236897460437703, + "c2": 5.86518401013867, + "c3": -27.73333384759043, + "c4": 16.263972791866856, + "c5": -13.359992949488742, + "c6": 19.507789797708526, + "c7": 23.995170988748335 }, - "vertexSeeds": { - "c1": 2.5954715128814088, - "c2": 2.835626481130235, - "c3": 2.708250091202756, - "c4": 2.6771922564107182, - "c5": 2.50117336868128, - "c6": 2.721858117448725, - "c7": 2.5127069305452774 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952843, + "c3": 3.421174294960704, + "c4": 2.7369394359685635, + "c5": 2.0527045769764234, + "c6": 1.3684697179842833, + "c7": 0.6842348589921433 }, "rgb": [238, 201, 159] }, @@ -167892,23 +167892,23 @@ "year": 1757, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -11.024637468263396, - "c2": 0.5863111029945784, - "c3": -26.037888742418964, - "c4": -8.078489340829456, - "c5": 38.82942767988109, - "c6": -34.991434182523626, - "c7": -5.612691002607171 + "points": { + "c1": 44.19644751888373, + "c2": -43.7386923445075, + "c3": -1.3921399320966685, + "c4": 38.13653901184685, + "c5": 14.0051777312487, + "c6": -5.931652110499677, + "c7": 23.49445213218165 }, - "vertexSeeds": { - "c1": 6.941022562082885, - "c2": 6.300019137591365, - "c3": 6.651680737167809, - "c4": 6.411750816736184, - "c5": 6.362507794495835, - "c6": 6.292487738597106, - "c7": 6.844574237091293 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479888, + "c3": 8.32177531206657, + "c4": 6.657420249653254, + "c5": 4.993065187239937, + "c6": 3.3287101248266198, + "c7": 1.6643550624133168 }, "rgb": [77, 76, 132] }, @@ -167919,23 +167919,23 @@ "year": 1757, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -14.005509010547003, - "c2": 13.364236998618736, - "c3": 10.519698293295768, - "c4": 21.479753438161204, - "c5": 5.3667566258122505, - "c6": -24.661093620913476, - "c7": -11.344944859578764 + "points": { + "c1": 18.991172291839284, + "c2": 22.785477207095695, + "c3": 26.956168993257336, + "c4": -14.755473920282789, + "c5": 24.722944942255324, + "c6": 30.210568368078683, + "c7": -13.464137529312747 }, - "vertexSeeds": { - "c1": 7.041250112538149, - "c2": 7.273416570533503, - "c3": 6.868247536293435, - "c4": 7.461027146703267, - "c5": 7.488874859666127, - "c6": 6.4869097581137085, - "c7": 7.89144263193899 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.34535367545077, + "c3": 9.454461396208972, + "c4": 7.563569116967173, + "c5": 5.672676837725385, + "c6": 3.7817845584835967, + "c7": 1.8908922792417984 }, "rgb": [222, 0, 59] }, @@ -167946,23 +167946,23 @@ "year": 1757, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 21.712620228898196, - "c2": 4.5716298452006825, - "c3": 13.778893102967231, - "c4": 25.40310343393984, - "c5": 22.89054869461186, - "c6": 37.86749487973042, - "c7": 3.283072155518248 + "points": { + "c1": 38.79853172443166, + "c2": -4.899514351990639, + "c3": -44.90312756602198, + "c4": -28.8817267024664, + "c5": -7.694248472439952, + "c6": -9.62612197844642, + "c7": -30.914377943527498 }, - "vertexSeeds": { - "c1": 5.816141072395444, - "c2": 5.813734988224487, - "c3": 6.6750695919270315, - "c4": 6.595759578893453, - "c5": 6.292995585334415, - "c6": 5.9537796943606365, - "c7": 6.687035030657975 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [238, 201, 159] }, @@ -167973,23 +167973,23 @@ "year": 1758, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 34.77474450162488, - "c2": -25.86188051593498, - "c3": 42.169523820491506, - "c4": 28.796484376576544, - "c5": -7.1511418353558796, - "c6": -10.833901991312935, - "c7": -31.447686699065436 + "points": { + "c1": -35.17616161150546, + "c2": 40.501741422526536, + "c3": -22.665145773774483, + "c4": 20.89586613384715, + "c5": -40.015587824674256, + "c6": -22.380039707832307, + "c7": 15.663693032378141 }, - "vertexSeeds": { - "c1": 5.4180041629561515, - "c2": 5.345933055572773, - "c3": 5.258060608852667, - "c4": 5.644376274516515, - "c5": 5.348132354759465, - "c6": 5.317724964395734, - "c7": 5.71123204291699 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112347, + "c3": 7.535829865926952, + "c4": 6.028663892741566, + "c5": 4.521497919556168, + "c6": 3.014331946370783, + "c7": 1.5071659731853861 }, "rgb": [77, 76, 132] }, @@ -168000,23 +168000,23 @@ "year": 1758, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 21.422412730537644, - "c2": 14.836594852431077, - "c3": 43.58072071081946, - "c4": -6.373490239274616, - "c5": -1.3522107977759603, - "c6": 38.04263902979591, - "c7": 3.4657676535767905 + "points": { + "c1": 24.225498454286495, + "c2": 11.152628883204166, + "c3": -0.3813826386336956, + "c4": -22.11975252966333, + "c5": -18.398888260592692, + "c6": 9.984766305255583, + "c7": -42.61383238368428 }, - "vertexSeeds": { - "c1": 1.584078611883574, - "c2": 1.3472737831303614, - "c3": 1.4049542378529594, - "c4": 1.2533659348444248, - "c5": 1.3935760297238575, - "c6": 1.5000176338366218, - "c7": 1.5896249706267183 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [77, 76, 132] }, @@ -168027,23 +168027,23 @@ "year": 1758, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 19.473304640375446, - "c2": 48.34351499946801, - "c3": -14.20353930418527, - "c4": -40.93512608655098, - "c5": -48.711908661105504, - "c6": 18.981089063190396, - "c7": -16.59807256740126 + "points": { + "c1": -13.72203796890706, + "c2": -49.55549461562261, + "c3": -27.943378206201213, + "c4": -15.907012428152683, + "c5": 45.014816410350406, + "c6": -23.74378593601441, + "c7": -10.095436159695346 }, - "vertexSeeds": { - "c1": 2.8179994917442204, - "c2": 2.849555746900327, - "c3": 2.7018881639903243, - "c4": 2.8820039407957827, - "c5": 2.770374587451374, - "c6": 2.840893547545507, - "c7": 2.805565850795296 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.467406380027744, + "c4": 2.773925104022193, + "c5": 2.0804438280166417, + "c6": 1.3869625520110906, + "c7": 0.6934812760055511 }, "rgb": [238, 201, 159] }, @@ -168054,23 +168054,23 @@ "year": 1758, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 41.316028669453395, - "c2": 40.98170044098534, - "c3": -47.374173805263155, - "c4": 40.33250947161796, - "c5": 30.51335233778169, - "c6": 48.67825524035651, - "c7": 45.8271141148737 + "points": { + "c1": -30.158685118496273, + "c2": -39.742686904425355, + "c3": 48.69021473026242, + "c4": -12.34777268441313, + "c5": -18.75899509456425, + "c6": 17.669565252643217, + "c7": 42.37491662720391 }, - "vertexSeeds": { - "c1": 2.456248639607472, - "c2": 2.5150099254662854, - "c3": 2.557221717802805, - "c4": 2.5691512992664935, - "c5": 2.6410977165852723, - "c6": 2.6725758885119313, - "c7": 2.4239691464782105 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310693, + "c3": 3.236245954692559, + "c4": 2.5889967637540487, + "c5": 1.9417475728155384, + "c6": 1.2944983818770244, + "c7": 0.6472491909385103 }, "rgb": [86, 146, 138] }, @@ -168081,23 +168081,23 @@ "year": 1758, "resistanceReported": false, "duration": 48643200, - "curveSeeds": { - "c1": -18.994246500777592, - "c2": 29.790455376513847, - "c3": 57.169807713548195, - "c4": -32.976647010609355, - "c5": 3.5661632514992334, - "c6": -47.336244202978136, - "c7": 41.75836570095264 + "points": { + "c1": -4.9057636131541855, + "c2": -52.416734720857505, + "c3": -52.3316724977914, + "c4": -34.1349488700164, + "c5": -5.98982449651843, + "c6": 8.81577984414632, + "c7": 57.92912411794049 }, - "vertexSeeds": { - "c1": 2.818262680216845, - "c2": 2.6513841816566774, - "c3": 3.1446203946363305, - "c4": 3.257497112044378, - "c5": 2.813626057044436, - "c6": 3.2139294966650693, - "c7": 2.847925346692324 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837725, + "c3": 3.9297272306981044, + "c4": 3.1437817845584832, + "c5": 2.3578363384188625, + "c6": 1.5718908922792416, + "c7": 0.7859454461396208 }, "rgb": [77, 76, 132] }, @@ -168108,23 +168108,23 @@ "year": 1757, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -37.96810914649587, - "c2": -31.639394417518975, - "c3": -42.595926597484606, - "c4": 12.13751904791529, - "c5": 34.303178575966975, - "c6": -12.349742908692019, - "c7": 27.506855857010684 + "points": { + "c1": 9.753008053154986, + "c2": -37.71094265952484, + "c3": 38.61334101529528, + "c4": 19.121292045576098, + "c5": 38.026497446367806, + "c6": 7.477366315947897, + "c7": 39.12799393282213 }, - "vertexSeeds": { - "c1": 4.938435147390161, - "c2": 5.202675100656541, - "c3": 5.127489067629338, - "c4": 4.808237928968031, - "c5": 4.9099080758553635, - "c6": 5.300552424681252, - "c7": 5.291317392329974 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503467, + "c3": 6.611188164586224, + "c4": 5.288950531668981, + "c5": 3.9667128987517364, + "c6": 2.644475265834487, + "c7": 1.3222376329172436 }, "rgb": [238, 201, 159] }, @@ -168135,23 +168135,23 @@ "year": 1757, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -0.031168204421071266, - "c2": 37.73980664110675, - "c3": 27.00958460467666, - "c4": 3.2344513297619812, - "c5": -29.553362846312048, - "c6": 26.13000390099789, - "c7": 41.62101969163115 + "points": { + "c1": 4.750831512232033, + "c2": 0.25701813995008393, + "c3": -17.95435904252623, + "c4": -42.281977011886106, + "c5": 5.438864642456068, + "c6": 40.18262528904192, + "c7": 26.549912866288807 }, - "vertexSeeds": { - "c1": 2.355428278167845, - "c2": 2.034011778102302, - "c3": 2.1266838065474536, - "c4": 1.9931541759024265, - "c5": 2.3853972367346374, - "c6": 2.394057419466831, - "c7": 2.0178398745042485 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.3116042533518266, + "c4": 1.849283402681461, + "c5": 1.3869625520110953, + "c6": 0.9246417013407314, + "c7": 0.4623208506703657 }, "rgb": [77, 76, 132] }, @@ -168162,23 +168162,23 @@ "year": 1758, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": -7.41936464567695, - "c2": 40.215203116595575, - "c3": 2.5954936395073673, - "c4": 35.75551479652994, - "c5": -13.187748768742178, - "c6": -37.95392210131085, - "c7": 39.046767077594936 + "points": { + "c1": -25.45605482190078, + "c2": 25.098825108906993, + "c3": 38.79595386819042, + "c4": -29.043479600665904, + "c5": 27.286792073012094, + "c6": 21.91913669858468, + "c7": -38.89623223588951 }, - "vertexSeeds": { - "c1": 5.886708275136253, - "c2": 6.801057311156272, - "c3": 5.864697832579925, - "c4": 6.347482021823536, - "c5": 6.006551355630179, - "c6": 5.625550383369871, - "c7": 5.665321190003306 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [86, 146, 138] }, @@ -168189,23 +168189,23 @@ "year": 1758, "resistanceReported": true, "duration": 43459200, - "curveSeeds": { - "c1": -37.96404398828544, - "c2": -39.29231898546341, - "c3": 18.59945350257611, - "c4": 19.08858622354154, - "c5": 19.980472795793702, - "c6": 2.1864098479883936, - "c7": -20.20563125740619 + "points": { + "c1": 41.05336805994162, + "c2": 7.056628818767038, + "c3": 9.75385119903163, + "c4": 13.618294078127192, + "c5": 43.79214255495965, + "c6": -18.391046316735228, + "c7": -11.895264159860226 }, - "vertexSeeds": { - "c1": 4.975115627713266, - "c2": 5.106761265700879, - "c3": 4.838827155063122, - "c4": 4.8596955683600935, - "c5": 4.99395481476109, - "c6": 4.981817569465613, - "c7": 5.030537927630158 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859925, + "c3": 6.241331484049928, + "c4": 4.99306518723995, + "c5": 3.7447988904299625, + "c6": 2.496532593619975, + "c7": 1.2482662968099876 }, "rgb": [86, 146, 138] }, @@ -168216,23 +168216,23 @@ "year": 1758, "resistanceReported": false, "duration": 54000000, - "curveSeeds": { - "c1": 63.50326772746055, - "c2": 56.541028544790535, - "c3": 40.01747029530377, - "c4": 16.50539576656041, - "c5": 10.215589014425177, - "c6": -5.2699243835109755, - "c7": -54.44920937753163 + "points": { + "c1": 29.745505467989773, + "c2": 70.0109892410376, + "c3": -13.19896283408228, + "c4": -56.88120185889419, + "c5": -50.34052985466927, + "c6": 48.208214148890406, + "c7": 7.5245993199443575 }, - "vertexSeeds": { - "c1": 7.6610214283137505, - "c2": 8.079122255764045, - "c3": 8.84620074822756, - "c4": 8.216485621999674, - "c5": 7.432809253414902, - "c6": 7.323557440127621, - "c7": 8.563866081498295 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502084, + "c3": 10.633379565418396, + "c4": 8.50670365233472, + "c5": 6.380027739251042, + "c6": 4.253351826167354, + "c7": 2.126675913083677 }, "rgb": [77, 76, 132] }, @@ -168243,23 +168243,23 @@ "year": 1757, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 10.160761910381709, - "c2": 5.149484633189779, - "c3": -27.262122569242287, - "c4": 5.516624255120121, - "c5": 26.2588579031229, - "c6": -1.6443107007055282, - "c7": 13.655606080566379 + "points": { + "c1": 17.77698742275129, + "c2": -15.019165461422816, + "c3": -34.949611380276345, + "c4": 6.002204958207052, + "c5": -7.907665353331545, + "c6": -5.162782170720291, + "c7": -24.223215637961637 }, - "vertexSeeds": { - "c1": 2.3286796929199225, - "c2": 2.2604609075603754, - "c3": 2.2417482057507363, - "c4": 2.130225127685281, - "c5": 2.3113999360667856, - "c6": 2.338726752886303, - "c7": 2.360002758360031 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619972, + "c5": 1.8723994452149795, + "c6": 1.248266296809987, + "c7": 0.6241331484049925 }, "rgb": [77, 76, 132] }, @@ -168270,23 +168270,23 @@ "year": 1758, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -44.04392967588512, - "c2": -9.666237181037062, - "c3": -40.63407646099572, - "c4": 32.963609986094426, - "c5": -14.86086355729429, - "c6": -23.14223796866073, - "c7": 9.11699373190578 + "points": { + "c1": 32.28673671013962, + "c2": 25.443599289669294, + "c3": 1.2702749035237915, + "c4": -41.01599518043654, + "c5": -14.272604558427197, + "c6": -11.6152975078505, + "c7": -22.694209096364315 }, - "vertexSeeds": { - "c1": 10.046853748852163, - "c2": 11.987653037934562, - "c3": 10.67225558399291, - "c4": 11.262366685744583, - "c5": 12.141893265720944, - "c6": 11.829735612507442, - "c7": 11.039858382280169 + "offsets": { + "c1": 20.355987055016183, + "c2": 17.447988904299578, + "c3": 14.53999075358299, + "c4": 11.631992602866385, + "c5": 8.723994452149798, + "c6": 5.815996301433192, + "c7": 2.907998150716606 }, "rgb": [222, 0, 59] }, @@ -168297,23 +168297,23 @@ "year": 1757, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -4.196431020492675, - "c2": -11.114602469848371, - "c3": -32.408501089996314, - "c4": 16.025066125236137, - "c5": 25.55840128864461, - "c6": -11.400312563436646, - "c7": -31.3148281699514 + "points": { + "c1": -11.621518203021651, + "c2": 20.84815210154354, + "c3": -21.914327599575266, + "c4": -27.473002138024412, + "c5": 25.815793652237353, + "c6": -10.926608969969863, + "c7": -5.795665049862361 }, - "vertexSeeds": { - "c1": 3.8894582748374233, - "c2": 3.67089637763201, - "c3": 4.268365171633366, - "c4": 4.150803839360358, - "c5": 3.800372750853972, - "c6": 3.966559921109121, - "c7": 3.546802129696577 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411929, + "c3": 5.409153952843272, + "c4": 4.327323162274618, + "c5": 3.2454923717059647, + "c6": 2.163661581137307, + "c7": 1.0818307905686535 }, "rgb": [238, 201, 159] }, @@ -168324,23 +168324,23 @@ "year": 1757, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -25.59681521765097, - "c2": 26.35497154563375, - "c3": 22.15485846536586, - "c4": -11.365907970750616, - "c5": -14.684975833083282, - "c6": 27.588924188945935, - "c7": 0.6797584479682257 + "points": { + "c1": 13.30014445960499, + "c2": 1.9240091308626255, + "c3": -12.05549940780216, + "c4": 10.500768184475088, + "c5": -29.05581991365981, + "c6": -26.445349208468897, + "c7": -17.67596498359135 }, - "vertexSeeds": { - "c1": 9.666942979921707, - "c2": 7.35904770210367, - "c3": 8.520395774457507, - "c4": 9.203183140912204, - "c5": 7.6880848168293205, - "c6": 8.647977344695015, - "c7": 9.776541630520908 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.09153952843273, + "c3": 11.742949607027276, + "c4": 9.39435968562182, + "c5": 7.045769764216365, + "c6": 4.69717984281091, + "c7": 2.348589921405455 }, "rgb": [222, 0, 59] }, @@ -168351,23 +168351,23 @@ "year": 1758, "resistanceReported": true, "duration": 36720000, - "curveSeeds": { - "c1": 3.396435650975242, - "c2": 18.94005962072284, - "c3": -46.19533406787678, - "c4": -21.54654646349224, - "c5": -7.004744080732102, - "c6": 0.10860752572466481, - "c7": -33.95683228110031 + "points": { + "c1": -31.435236618369387, + "c2": 38.69620325744325, + "c3": -15.21750220084833, + "c4": 25.954410169167524, + "c5": 23.475525008524066, + "c6": 5.727391152253851, + "c7": 18.218828616499387 }, - "vertexSeeds": { - "c1": 4.760777020625634, - "c2": 4.155880386289375, - "c3": 3.9060307713068125, - "c4": 4.482975701251035, - "c5": 4.492478610006177, - "c6": 4.7001100156737206, - "c7": 4.4811787121747235 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -168378,23 +168378,23 @@ "year": 1757, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 26.116095525126944, - "c2": -17.617759750026867, - "c3": 20.680842717329156, - "c4": 22.26104032573243, - "c5": -21.71903313109322, - "c6": -33.84129711936257, - "c7": -34.07378649833741 + "points": { + "c1": 37.356878867054746, + "c2": -21.12583698829269, + "c3": 23.752727801634357, + "c4": -27.987541219400583, + "c5": -36.82275908181608, + "c6": 9.0258914984312, + "c7": -8.921271778481746 }, - "vertexSeeds": { - "c1": 6.528164482185047, - "c2": 6.589067339636315, - "c3": 6.997995190938872, - "c4": 6.126243963154685, - "c5": 6.983619448943271, - "c6": 6.087985565008586, - "c7": 6.355817636083228 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [238, 201, 159] }, @@ -168405,23 +168405,23 @@ "year": 1758, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -11.362025643325989, - "c2": 14.125629027551, - "c3": 18.745007636054424, - "c4": -12.972530449588739, - "c5": -34.06450335575158, - "c6": 23.933776552918978, - "c7": -35.54413481569895 + "points": { + "c1": 7.510608378765809, + "c2": -3.3705417772788024, + "c3": -32.88503103352076, + "c4": -31.836208525257284, + "c5": 14.749322855716535, + "c6": -7.360014690377206, + "c7": 32.29762751642719 }, - "vertexSeeds": { - "c1": 11.97983810972121, - "c2": 11.925089646348878, - "c3": 11.853727971513514, - "c4": 11.911155974758733, - "c5": 11.246114507767498, - "c6": 11.899032300371964, - "c7": 11.512042035898242 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.198335644937586, + "c3": 14.331946370781322, + "c4": 11.465557096625057, + "c5": 8.599167822468793, + "c6": 5.732778548312528, + "c7": 2.866389274156264 }, "rgb": [86, 146, 138] }, @@ -168432,23 +168432,23 @@ "year": 1757, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 16.302086576876086, - "c2": 19.80147867709732, - "c3": 30.895381288979635, - "c4": -30.38803218272095, - "c5": 20.843911868744748, - "c6": -13.550056983555976, - "c7": -27.41071765287445 + "points": { + "c1": -4.273262880157912, + "c2": -6.565143125630414, + "c3": 25.809169277982996, + "c4": 10.712132090210744, + "c5": -33.249449676273024, + "c6": -16.869094233069212, + "c7": 19.280455808286824 }, - "vertexSeeds": { - "c1": 9.195185057106798, - "c2": 8.717038911094168, - "c3": 9.44469035371574, - "c4": 8.687856063373426, - "c5": 9.900090732328547, - "c6": 9.190854796984386, - "c7": 9.115623815246648 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599168, + "c3": 12.413314840499309, + "c4": 9.930651872399451, + "c5": 7.4479889042995895, + "c6": 4.96532593619973, + "c7": 2.48266296809987 }, "rgb": [58, 15, 49] }, @@ -168459,23 +168459,23 @@ "year": 1758, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -34.47145069526067, - "c2": 13.490208952049159, - "c3": -3.8590234360635236, - "c4": 34.71321611699292, - "c5": 24.433198057202418, - "c6": -2.2898147489921357, - "c7": 22.38030994700351 + "points": { + "c1": -23.367699361897973, + "c2": -13.370720128719356, + "c3": 7.819643044736154, + "c4": 7.8730368621133096, + "c5": 16.68636215048612, + "c6": -11.583412372029112, + "c7": -17.438144227821564 }, - "vertexSeeds": { - "c1": 4.018560434028031, - "c2": 4.018068544434268, - "c3": 3.6961814505419164, - "c4": 3.853333309420741, - "c5": 4.30344086947782, - "c6": 3.8879000105939983, - "c7": 4.280935000830532 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170598, + "c3": 5.270457697642162, + "c4": 4.216366158113732, + "c5": 3.1622746185852963, + "c6": 2.108183079056866, + "c7": 1.0540915395284305 }, "rgb": [222, 0, 59] }, @@ -168486,23 +168486,23 @@ "year": 1758, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 5.134427418671422, - "c2": -13.633733703309954, - "c3": -32.80523722303866, - "c4": -25.950633319530013, - "c5": 26.74154249988853, - "c6": -32.44553997646905, - "c7": -20.579300681508798 + "points": { + "c1": -21.338027696679916, + "c2": -14.621117572374068, + "c3": 24.89268070499822, + "c4": 16.856886889424672, + "c5": 5.398700730326141, + "c6": -12.077797115617631, + "c7": -31.581695483030238 }, - "vertexSeeds": { - "c1": 1.1237514140397564, - "c2": 1.0972243117601437, - "c3": 1.199653725028752, - "c4": 1.138673397930107, - "c5": 1.137112435544029, - "c6": 1.0848403814015066, - "c7": 1.1589274200554114 + "offsets": { + "c1": 2.0388349514563107, + "c2": 1.7475728155339803, + "c3": 1.4563106796116498, + "c4": 1.1650485436893194, + "c5": 0.8737864077669911, + "c6": 0.5825242718446608, + "c7": 0.2912621359223304 }, "rgb": [222, 0, 59] }, @@ -168513,23 +168513,23 @@ "year": 1757, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 17.187521395093604, - "c2": 15.84267592808503, - "c3": -1.310392849830329, - "c4": -20.984505882334453, - "c5": 13.34943106651825, - "c6": 1.5461954082911475, - "c7": -9.520385201664485 + "points": { + "c1": 4.305050636972233, + "c2": 10.273551742568877, + "c3": -31.01510786556057, + "c4": -9.436956800528012, + "c5": -23.186982017625844, + "c6": -19.40858635554992, + "c7": 2.072018890786964 }, - "vertexSeeds": { - "c1": 7.107932668149509, - "c2": 7.0684785012480065, - "c3": 6.258843830659599, - "c4": 6.992039471197761, - "c5": 6.6598609044296895, - "c6": 6.761401808121114, - "c7": 6.740770357056518 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882114, + "c3": 8.552935737401754, + "c4": 6.842348589921409, + "c5": 5.13176144244105, + "c6": 3.4211742949607045, + "c7": 1.7105871474803456 }, "rgb": [58, 15, 49] }, @@ -168540,23 +168540,23 @@ "year": 1758, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 17.091267647400663, - "c2": -27.42571090202718, - "c3": -23.241792945831115, - "c4": -21.669352277409942, - "c5": -9.745494144395739, - "c6": -32.69518420903531, - "c7": 32.558586442016406 + "points": { + "c1": -29.00846636889068, + "c2": -20.917992156413113, + "c3": 11.050779328888261, + "c4": -15.12918748141826, + "c5": -10.172279466969595, + "c6": -5.54446025312145, + "c7": 24.078356516523634 }, - "vertexSeeds": { - "c1": 8.997472363775113, - "c2": 9.009172320263373, - "c3": 9.014212448752868, - "c4": 9.003471758541627, - "c5": 9.015368788623817, - "c6": 9.007189465424986, - "c7": 9.011283289127553 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733702824, + "c3": 10.748959778086114, + "c4": 8.599167822468548, + "c5": 6.449375866851839, + "c6": 4.299583911234274, + "c7": 2.149791955617565 }, "rgb": [77, 76, 132] }, @@ -168567,23 +168567,23 @@ "year": 1758, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -21.39339218315685, - "c2": -11.336770862056845, - "c3": -33.43476143533523, - "c4": -25.641967261714953, - "c5": 13.636787553646364, - "c6": -15.208251514428575, - "c7": 15.068397069144709 + "points": { + "c1": 15.27583087780836, + "c2": -16.814088723876466, + "c3": -29.030444854446205, + "c4": -3.3266477280173916, + "c5": -28.255474695221956, + "c6": -33.556194832420104, + "c7": 1.4292526974104618 }, - "vertexSeeds": { - "c1": 7.246652600536299, - "c2": 7.122219178960744, - "c3": 6.67673889583122, - "c4": 6.915672389763059, - "c5": 7.052951308192027, - "c6": 6.544925613121182, - "c7": 6.951258907904613 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [222, 0, 59] }, @@ -168594,23 +168594,23 @@ "year": 1757, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 17.59880232630524, - "c2": 1.715062350593879, - "c3": -25.432815159492307, - "c4": -4.3668551292884885, - "c5": 18.344398301556815, - "c6": -17.59128765479891, - "c7": 10.905356079090062 + "points": { + "c1": -19.241412173778137, + "c2": -7.306636684595915, + "c3": 21.83375626322674, + "c4": -12.609289416519749, + "c5": -12.706389162332933, + "c6": 25.503692106978463, + "c7": 23.868131101675417 }, - "vertexSeeds": { - "c1": 2.1078459487162147, - "c2": 1.9425404641578101, - "c3": 2.0850996953419667, - "c4": 2.1156988368928773, - "c5": 1.9185702299374903, - "c6": 1.982831279523724, - "c7": 2.116497178213907 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244114, + "c3": 2.5427646786870066, + "c4": 2.0342117429496063, + "c5": 1.5256588072122057, + "c6": 1.0171058714748011, + "c7": 0.5085529357374006 }, "rgb": [86, 146, 138] }, @@ -168621,23 +168621,23 @@ "year": 1757, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -3.9059557827114126, - "c2": -21.10898526574877, - "c3": 8.840003608532648, - "c4": 25.771477264176823, - "c5": -23.779184145996986, - "c6": -0.769825506981153, - "c7": 9.80248628792718 + "points": { + "c1": -22.64988430390352, + "c2": -4.465556383778377, + "c3": -11.040726357213671, + "c4": 5.854629020210176, + "c5": -17.13370236499455, + "c6": 24.771118495638667, + "c7": -0.7485437731493789 }, - "vertexSeeds": { - "c1": 7.864513898375116, - "c2": 7.189654694633793, - "c3": 7.148732605508398, - "c4": 8.141930020941942, - "c5": 7.661943630981585, - "c6": 7.955378277084421, - "c7": 8.136311012394561 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938977, + "c3": 10.309754969949141, + "c4": 8.247803975959314, + "c5": 6.1858529819694885, + "c6": 4.123901987979653, + "c7": 2.0619509939898264 }, "rgb": [238, 201, 159] }, @@ -168648,23 +168648,23 @@ "year": 1758, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 10.199161265888549, - "c2": -29.600042873100822, - "c3": -26.35852583668889, - "c4": -29.372913597289717, - "c5": -7.868798790615202, - "c6": 22.886175710899522, - "c7": 1.9076417189794839 + "points": { + "c1": 22.73248239503286, + "c2": 20.814066418235434, + "c3": 0.4481976797702245, + "c4": -28.565101661446917, + "c5": 3.482903742083657, + "c6": -10.914475831498802, + "c7": 10.149875534696292 }, - "vertexSeeds": { - "c1": 7.078058421169146, - "c2": 7.22733997888093, - "c3": 7.121638086632186, - "c4": 6.943252933558231, - "c5": 6.953014953227516, - "c6": 7.3237844045706035, - "c7": 6.9761607661565765 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364768, + "c3": 8.830328247803969, + "c4": 7.06426259824317, + "c5": 5.298196948682371, + "c6": 3.5321312991215987, + "c7": 1.7660656495607994 }, "rgb": [222, 0, 59] }, @@ -168675,23 +168675,23 @@ "year": 1758, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 28.388775084950208, - "c2": -27.157049924472027, - "c3": 30.129128766933572, - "c4": -25.06013647675148, - "c5": 13.043683701359289, - "c6": -8.211653429842098, - "c7": -1.0217706991663675 + "points": { + "c1": -2.401257936108845, + "c2": 19.452867557381552, + "c3": 8.526302296739715, + "c4": -6.294901389660854, + "c5": 16.511354685121, + "c6": 11.236727444021845, + "c7": 10.65115537033514 }, - "vertexSeeds": { - "c1": 6.059125504872001, - "c2": 5.6815856627189785, - "c3": 5.777790304423321, - "c4": 5.670479045706914, - "c5": 5.36605208143284, - "c6": 5.565783926696837, - "c7": 5.548564539658869 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750348, + "c3": 7.327785483125293, + "c4": 5.862228386500237, + "c5": 4.39667128987518, + "c6": 2.931114193250125, + "c7": 1.4655570966250686 }, "rgb": [77, 76, 132] }, @@ -168702,23 +168702,23 @@ "year": 1758, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -29.71312305774479, - "c2": -0.6967983394795496, - "c3": 12.293695957269101, - "c4": 14.929604115443624, - "c5": -28.964023668035633, - "c6": -3.266335457578741, - "c7": 11.969511253046939 + "points": { + "c1": -1.181981356272388, + "c2": 24.350832086054893, + "c3": -22.026407702245745, + "c4": 12.764638339532148, + "c5": 30.779346146709173, + "c6": -4.859131591443131, + "c7": -29.644433785718658 }, - "vertexSeeds": { - "c1": 10.17266506492276, - "c2": 9.776986613069532, - "c3": 9.742101826572402, - "c4": 9.978108295983732, - "c5": 10.308536086803732, - "c6": 9.700204322980058, - "c7": 10.0237021675775 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.86823855755896, + "c3": 12.390198797965764, + "c4": 9.912159038372621, + "c5": 7.43411927877948, + "c6": 4.956079519186311, + "c7": 2.478039759593169 }, "rgb": [222, 0, 59] }, @@ -168729,23 +168729,23 @@ "year": 1758, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -22.236261031544487, - "c2": 21.345476187804287, - "c3": -16.095159990241424, - "c4": -4.205589079369052, - "c5": -6.637776496132574, - "c6": -27.446261706186753, - "c7": -4.690367909496988 + "points": { + "c1": -33.91799021469878, + "c2": -21.95982249520882, + "c3": -19.30458818621452, + "c4": -7.669186137184607, + "c5": 7.229183020130797, + "c6": 32.83986508788723, + "c7": -11.507679365737594 }, - "vertexSeeds": { - "c1": 8.406389828253921, - "c2": 8.989782505130675, - "c3": 7.761326110426403, - "c4": 8.192203954901233, - "c5": 7.725991395316405, - "c6": 8.098617977082746, - "c7": 8.331258528160701 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743415, + "c3": 10.772075820619515, + "c4": 8.617660656495604, + "c5": 6.463245492371702, + "c6": 4.308830328247802, + "c7": 2.154415164123901 }, "rgb": [77, 76, 132] }, @@ -168756,23 +168756,23 @@ "year": 1758, "resistanceReported": true, "duration": 25401600, - "curveSeeds": { - "c1": -23.283614556988713, - "c2": -35.225507730769706, - "c3": -11.660470407536096, - "c4": 6.917756000589577, - "c5": 14.88050146760304, - "c6": 0.40871985900396623, - "c7": -33.964422776021756 + "points": { + "c1": -12.898485894163539, + "c2": 22.817881866084967, + "c3": 37.34905568825579, + "c4": 12.488534477399888, + "c5": 17.20209545055031, + "c6": 27.0014019296745, + "c7": -33.62970439151917 }, - "vertexSeeds": { - "c1": 7.7971383915766825, - "c2": 7.823119039666482, - "c3": 7.812030212006825, - "c4": 7.824275854413557, - "c5": 7.835162525301857, - "c6": 7.8165855859457585, - "c7": 7.798264212086508 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289804, + "c3": 9.361997226075003, + "c4": 7.4895977808599525, + "c5": 5.617198335644902, + "c6": 3.744798890429852, + "c7": 1.87239944521505 }, "rgb": [58, 15, 49] }, @@ -168783,23 +168783,23 @@ "year": 1758, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -23.41402338134098, - "c2": -0.607030742984719, - "c3": -11.606436739242373, - "c4": -22.434969603836517, - "c5": 13.176092648775295, - "c6": 36.780016019539076, - "c7": -12.420409162408241 + "points": { + "c1": 40.00961563308083, + "c2": -10.78718278542813, + "c3": 4.095611230531567, + "c4": -38.400841266022056, + "c5": 15.472370783070716, + "c6": -35.64076173518269, + "c7": 31.94634470643824 }, - "vertexSeeds": { - "c1": 6.61054106422153, - "c2": 6.368656357750122, - "c3": 6.352450161720101, - "c4": 6.568309848207341, - "c5": 6.562683984448396, - "c6": 5.83497777302042, - "c7": 6.313604264815934 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [77, 76, 132] }, @@ -168810,23 +168810,23 @@ "year": 1758, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 13.435650892995376, - "c2": 25.81942379351932, - "c3": 1.3425660584663248, - "c4": -21.20422480161084, - "c5": 32.433801861324774, - "c6": 0.45547968964500996, - "c7": 20.800935739966256 + "points": { + "c1": -3.858188736252494, + "c2": -31.821196088762495, + "c3": -17.545315429017094, + "c4": 14.674984494697235, + "c5": -0.25811814930165866, + "c6": -12.497710497576204, + "c7": -23.18392982802632 }, - "vertexSeeds": { - "c1": 8.113443055249814, - "c2": 8.482058610510636, - "c3": 8.626814405732814, - "c4": 8.613614893429064, - "c5": 8.520441264751529, - "c6": 8.718753109742833, - "c7": 8.13812777845192 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.843273231622751, + "c3": 10.702727693018954, + "c4": 8.562182154415167, + "c5": 6.421636615811369, + "c6": 4.281091077207583, + "c7": 2.1405455386037984 }, "rgb": [58, 15, 49] }, @@ -168837,23 +168837,23 @@ "year": 1758, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": 5.977685617568483, - "c2": 32.93790936151433, - "c3": -24.515854964805442, - "c4": 43.981325600809924, - "c5": -30.640940364003804, - "c6": 4.513878615005922, - "c7": 26.57306711827445 + "points": { + "c1": 8.404409599078306, + "c2": 13.031746524233853, + "c3": 23.172427866165307, + "c4": -7.934782924909207, + "c5": -5.202102024139684, + "c6": -14.557404322404892, + "c7": 23.718919111716218 }, - "vertexSeeds": { - "c1": 8.743804235529936, - "c2": 8.884005828454718, - "c3": 8.617117180402182, - "c4": 9.32828608900763, - "c5": 9.364328192702363, - "c6": 8.396495492679422, - "c7": 9.321247739466376 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.78640776699029, + "c3": 11.488673139158577, + "c4": 9.190938511326861, + "c5": 6.893203883495145, + "c6": 4.5954692556634305, + "c7": 2.2977346278317152 }, "rgb": [222, 0, 59] }, @@ -168864,23 +168864,23 @@ "year": 1758, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -31.054702175762447, - "c2": -17.61723105598748, - "c3": 26.473411448729323, - "c4": 12.318055416863658, - "c5": -30.09498056891606, - "c6": -14.78667726070157, - "c7": 31.39617165819645 + "points": { + "c1": 15.36550080285702, + "c2": 34.74169422505507, + "c3": 20.232662695776995, + "c4": 30.078824823917756, + "c5": -13.10978132477193, + "c6": 8.493497731708274, + "c7": 7.2044681903110686 }, - "vertexSeeds": { - "c1": 7.068453051668066, - "c2": 7.300227379269542, - "c3": 6.981482105500541, - "c4": 6.53377346621758, - "c5": 6.610325559756267, - "c6": 6.767327466343286, - "c7": 6.700805041414338 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807214, + "c3": 9.08460471567267, + "c4": 7.267683772538139, + "c5": 5.450762829403607, + "c6": 3.633841886269076, + "c7": 1.8169209431345317 }, "rgb": [58, 15, 49] }, @@ -168891,23 +168891,23 @@ "year": 1758, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 1.7923567952095105, - "c2": 7.764081383022095, - "c3": 16.183225116860967, - "c4": 22.03910404906039, - "c5": -15.192406192475147, - "c6": 4.122480792850563, - "c7": 11.567727827120947 + "points": { + "c1": 2.289778803738116, + "c2": 8.247525024053196, + "c3": 3.4708851696171656, + "c4": 22.979615299020274, + "c5": -8.848173054502826, + "c6": 18.884887276027143, + "c7": 13.018122839890964 }, - "vertexSeeds": { - "c1": 10.06240851187141, - "c2": 9.622338021874164, - "c3": 9.577898348330233, - "c4": 9.942802569317916, - "c5": 9.659884834783917, - "c6": 9.7665005779159, - "c7": 10.100742521257786 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317635, + "c3": 12.25150254276467, + "c4": 9.801202034211757, + "c5": 7.350901525658817, + "c6": 4.9006010171058785, + "c7": 2.4503005085529392 }, "rgb": [58, 15, 49] }, @@ -168918,23 +168918,23 @@ "year": 1758, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 28.132839181256536, - "c2": 30.31512421456523, - "c3": -25.70593870203237, - "c4": 7.6810654605271225, - "c5": 18.036196515730424, - "c6": 33.918306441482756, - "c7": -27.046462655851485 + "points": { + "c1": -12.441701726420437, + "c2": -30.695764855727056, + "c3": 25.666696642857424, + "c4": 33.9124047753822, + "c5": -4.059774473496503, + "c6": -18.626102337169417, + "c7": -8.410102132775975 }, - "vertexSeeds": { - "c1": 7.272376648976087, - "c2": 6.832391895571725, - "c3": 6.977625040342329, - "c4": 7.114854719832536, - "c5": 6.619982655100645, - "c6": 7.323073046971159, - "c7": 7.1074780351540445 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364768, + "c3": 8.830328247803982, + "c4": 7.064262598243182, + "c5": 5.298196948682384, + "c6": 3.5321312991215863, + "c7": 1.7660656495607983 }, "rgb": [58, 15, 49] }, @@ -168945,23 +168945,23 @@ "year": 1759, "resistanceReported": false, "duration": 68083200, - "curveSeeds": { - "c1": 70.47105017075651, - "c2": 58.24817625550995, - "c3": -3.400758385582364, - "c4": -46.75887448013451, - "c5": -36.42180613425953, - "c6": -41.91204481874185, - "c7": -62.651408950443034 + "points": { + "c1": 71.07065007289236, + "c2": 68.73075124004933, + "c3": 53.25221210061352, + "c4": -56.00215839287526, + "c5": 26.931402566849897, + "c6": 85.8364149944617, + "c7": -65.04473575715804 }, - "vertexSeeds": { - "c1": 4.883271707539338, - "c2": 4.757557213719865, - "c3": 5.050301982780401, - "c4": 4.832471173691597, - "c5": 4.895728101064423, - "c6": 5.070327390731463, - "c7": 4.966308084326686 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538135, + "c3": 6.056403143781798, + "c4": 4.845122515025433, + "c5": 3.6338418862690673, + "c6": 2.4225612575127164, + "c7": 1.2112806287563653 }, "rgb": [77, 76, 132] }, @@ -168972,23 +168972,23 @@ "year": 1758, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 22.33369463104779, - "c2": 12.757052082775438, - "c3": -26.12505319587197, - "c4": -15.335441218858875, - "c5": -3.9084704811126656, - "c6": 21.082778817833486, - "c7": -5.529719028016416 + "points": { + "c1": 10.895022696160773, + "c2": -12.100839884789856, + "c3": 41.26292113457099, + "c4": 21.326057496424212, + "c5": -32.64992931250183, + "c6": -14.954317394939334, + "c7": 21.718877587260536 }, - "vertexSeeds": { - "c1": 5.962677095294511, - "c2": 6.092546209906061, - "c3": 5.6990088864686035, - "c4": 5.551383140844292, - "c5": 5.379368017388837, - "c6": 5.775732006145452, - "c7": 5.649995070871397 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750343, + "c3": 7.327785483125295, + "c4": 5.862228386500234, + "c5": 4.396671289875171, + "c6": 2.9311141932501235, + "c7": 1.4655570966250617 }, "rgb": [222, 0, 59] }, @@ -168999,23 +168999,23 @@ "year": 1758, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": 39.37271445547226, - "c2": 43.53054682830813, - "c3": -26.4270053202207, - "c4": -49.08517757353313, - "c5": -8.434902217887092, - "c6": -31.746659928644505, - "c7": 39.979870213127256 + "points": { + "c1": 47.27298064980502, + "c2": 43.66908218508328, + "c3": 18.63683132685574, + "c4": 15.560027725306071, + "c5": 51.48741749639838, + "c6": 20.98855023828635, + "c7": 42.90109346049891 }, - "vertexSeeds": { - "c1": 4.635479437320911, - "c2": 5.0280096810135495, - "c3": 5.052150632497631, - "c4": 5.157733276612578, - "c5": 4.987210319911093, - "c6": 5.0927921323820895, - "c7": 5.217193342295995 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -169026,23 +169026,23 @@ "year": 1759, "resistanceReported": false, "duration": 57715200, - "curveSeeds": { - "c1": -30.681022624000327, - "c2": 67.78517161206443, - "c3": -27.09242403702128, - "c4": 18.847086204843777, - "c5": 2.982286994750609, - "c6": 15.360402186034108, - "c7": -29.032708015528797 + "points": { + "c1": -33.085581038451565, + "c2": 12.861267127571068, + "c3": -17.730826373180307, + "c4": -53.413016461715884, + "c5": 6.210569563195563, + "c6": -27.850340007651504, + "c7": -1.8726813083526963 }, - "vertexSeeds": { - "c1": 5.421769524813043, - "c2": 5.515440302493331, - "c3": 5.505720565025324, - "c4": 5.468476777457508, - "c5": 5.5459971311347, - "c6": 5.810458505128662, - "c7": 5.822756849624119 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [77, 76, 132] }, @@ -169053,23 +169053,23 @@ "year": 1758, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -31.345853706777064, - "c2": -34.46194399375629, - "c3": -34.997199537241734, - "c4": 33.05537680101464, - "c5": 12.192050407171166, - "c6": -33.3657093077414, - "c7": -18.64321180178655 + "points": { + "c1": -28.187055408073487, + "c2": 9.367676909331038, + "c3": 19.78973504075963, + "c4": 15.928941375090837, + "c5": -38.926431934597545, + "c6": -19.651879629273285, + "c7": -29.946496059351116 }, - "vertexSeeds": { - "c1": 8.003158847237781, - "c2": 7.080499913162317, - "c3": 7.1387877673181785, - "c4": 7.754758598187637, - "c5": 7.897685562732912, - "c6": 7.507667347101844, - "c7": 8.055443174075938 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732324, + "c3": 9.616273693943597, + "c4": 7.693018955154883, + "c5": 5.769764216366155, + "c6": 3.8465094775774413, + "c7": 1.9232547387887273 }, "rgb": [238, 201, 159] }, @@ -169080,23 +169080,23 @@ "year": 1758, "resistanceReported": false, "duration": 8380800, - "curveSeeds": { - "c1": 8.466095425807264, - "c2": -16.079839925530674, - "c3": -11.353882933674068, - "c4": -17.26925531648227, - "c5": -7.690623001217061, - "c6": 13.8310041685085, - "c7": 4.083701470203479 + "points": { + "c1": 14.792929534121953, + "c2": -17.066784191680338, + "c3": -17.642715799413967, + "c4": -12.239514756261833, + "c5": 7.406608939151859, + "c6": 9.417199399877592, + "c7": -20.609109752087036 }, - "vertexSeeds": { - "c1": 15.953189402894232, - "c2": 15.941040197023131, - "c3": 14.848138768500352, - "c4": 15.357084569225737, - "c5": 16.806870566413334, - "c6": 15.300128256528112, - "c7": 16.028902088232662 + "offsets": { + "c1": 30.29126213592233, + "c2": 25.96393897364772, + "c3": 21.63661581137309, + "c4": 17.30929264909848, + "c5": 12.98196948682385, + "c6": 8.65464632454924, + "c7": 4.32732316227463 }, "rgb": [238, 201, 159] }, @@ -169107,23 +169107,23 @@ "year": 1758, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 34.77853777406157, - "c2": -4.444460305713335, - "c3": 16.53335599702376, - "c4": -39.9853550212679, - "c5": 26.412094664093452, - "c6": -37.731007431321856, - "c7": 31.178053369218638 + "points": { + "c1": 17.061675277177976, + "c2": -28.92128504454258, + "c3": -43.395442103278455, + "c4": 17.165732779879377, + "c5": 27.69021185692295, + "c6": 30.934135089847295, + "c7": -5.482181834288831 }, - "vertexSeeds": { - "c1": 10.087484513886935, - "c2": 10.207573217679917, - "c3": 10.298271096720535, - "c4": 10.331168728207958, - "c5": 10.609863190919794, - "c6": 10.104522711170057, - "c7": 10.12573836763286 + "offsets": { + "c1": 17.864077669902912, + "c2": 15.3120665742025, + "c3": 12.76005547850209, + "c4": 10.20804438280168, + "c5": 7.656033287101268, + "c6": 5.10402219140084, + "c7": 2.5520110957004287 }, "rgb": [222, 0, 59] }, @@ -169134,23 +169134,23 @@ "year": 1758, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -18.060600351680964, - "c2": 17.372850384707732, - "c3": -30.992008988970987, - "c4": -6.883131722386022, - "c5": -10.773397862973287, - "c6": -18.71840511266621, - "c7": -21.22844639282311 + "points": { + "c1": -10.098016537516713, + "c2": 37.42478283526871, + "c3": -32.69185956276306, + "c4": 6.551864218534554, + "c5": 8.625656887471003, + "c6": 31.44561785169997, + "c7": 0.7343080873169257 }, - "vertexSeeds": { - "c1": 6.477247085459496, - "c2": 7.04605232050439, - "c3": 6.527709868798562, - "c4": 6.581345057225854, - "c5": 6.901642064186073, - "c6": 6.533151358562674, - "c7": 6.429633077631509 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801665, + "c3": 8.506703652334721, + "c4": 6.8053629218677765, + "c5": 5.104022191400833, + "c6": 3.4026814609338882, + "c7": 1.7013407304669441 }, "rgb": [86, 146, 138] }, @@ -169161,23 +169161,23 @@ "year": 1758, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": 3.9442903901050848, - "c2": 13.131201314432133, - "c3": -13.659288307612494, - "c4": -5.1312681482299904, - "c5": -1.8757832084420585, - "c6": -14.868997390969156, - "c7": 6.733503596642883 + "points": { + "c1": -14.827915213130428, + "c2": 5.520284913145417, + "c3": 14.60536727188136, + "c4": -14.541435049544777, + "c5": -3.2993850868574874, + "c6": -7.592685227119484, + "c7": 6.536231872654909 }, - "vertexSeeds": { - "c1": 2.78997218515354, - "c2": 2.66543950402727, - "c3": 2.7973877340512416, - "c4": 2.5553057250714053, - "c5": 2.8522133489148995, - "c6": 2.5315253517689915, - "c7": 2.5712703498430813 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [238, 201, 159] }, @@ -169188,23 +169188,23 @@ "year": 1758, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 2.7452453955988787, - "c2": -2.250576651117484, - "c3": 2.3427562024329163, - "c4": -1.3571841594864296, - "c5": -17.961449606707628, - "c6": -8.587720448936146, - "c7": 16.550388845620283 + "points": { + "c1": -22.94951980758119, + "c2": 17.671113856206375, + "c3": -7.878951990773853, + "c4": -8.282347100376082, + "c5": 16.847665504757686, + "c6": 4.5683422222793695, + "c7": 26.26064477449212 }, - "vertexSeeds": { - "c1": 4.284112382332017, - "c2": 4.227989832631241, - "c3": 4.2393209959691625, - "c4": 3.868156865334906, - "c5": 3.909775010886342, - "c6": 4.269193186109876, - "c7": 3.9855678843680105 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331483, + "c3": 5.362921867776237, + "c4": 4.290337494220989, + "c5": 3.2177531206657415, + "c6": 2.1451687471104943, + "c7": 1.0725843735552472 }, "rgb": [58, 15, 49] }, @@ -169215,23 +169215,23 @@ "year": 1758, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 22.126767656020196, - "c2": -0.19820694152809892, - "c3": 11.62057513813463, - "c4": -16.181826143290877, - "c5": -20.993991109530697, - "c6": -8.858833000486257, - "c7": 28.251521845785387 + "points": { + "c1": -26.921445595041252, + "c2": -1.5042772459457971, + "c3": -11.822537496128842, + "c4": 32.4806403423874, + "c5": -12.14319946985427, + "c6": -17.033565353165734, + "c7": -16.547013582581624 }, - "vertexSeeds": { - "c1": 6.983005132402135, - "c2": 7.177977942225477, - "c3": 7.403755360016144, - "c4": 7.9787049479644665, - "c5": 7.508512155566533, - "c6": 7.421011040405456, - "c7": 8.037942024179351 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094312, + "c3": 9.824318076745259, + "c4": 7.859454461396215, + "c5": 5.894590846047162, + "c6": 3.9297272306981075, + "c7": 1.9648636153490537 }, "rgb": [86, 146, 138] }, @@ -169242,23 +169242,23 @@ "year": 1758, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -27.588925564941132, - "c2": -20.49102631348778, - "c3": -30.93022883713278, - "c4": 3.5837718379062267, - "c5": -15.781556528176232, - "c6": -18.539957783114623, - "c7": 3.1357296359648075 + "points": { + "c1": 17.114184752218243, + "c2": 29.925182331582988, + "c3": -13.936074274006774, + "c4": 23.806023021910214, + "c5": -18.346136375212478, + "c6": 11.121816175112762, + "c7": 4.683059699186721 }, - "vertexSeeds": { - "c1": 7.335458953581706, - "c2": 7.525207008888118, - "c3": 7.729010967301241, - "c4": 7.400420229393274, - "c5": 7.601530851009437, - "c6": 7.502217487100881, - "c7": 7.734636712317433 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651874, + "c3": 9.570041608876567, + "c4": 7.656033287101256, + "c5": 5.742024965325927, + "c6": 3.828016643550618, + "c7": 1.914008321775309 }, "rgb": [77, 76, 132] }, @@ -169269,23 +169269,23 @@ "year": 1758, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 32.23411954746587, - "c2": 4.8282881766260815, - "c3": 0.22372013612341846, - "c4": 25.953953440980982, - "c5": -26.33793025521893, - "c6": 2.3455316450392516, - "c7": 6.943316821395285 + "points": { + "c1": -1.4817991168389142, + "c2": 35.48776474962059, + "c3": 20.484058233586637, + "c4": 3.5512798169449624, + "c5": -28.731661708971913, + "c6": -19.466424794004006, + "c7": -18.561058344527446 }, - "vertexSeeds": { - "c1": 3.8821072292423784, - "c2": 3.829982981269695, - "c3": 3.385241395307414, - "c4": 3.119931294308577, - "c5": 3.65545740697171, - "c6": 3.496233614095935, - "c7": 3.718035195055041 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.6865464632454925, + "c3": 4.738788719371245, + "c4": 3.7910309754969926, + "c5": 2.8432732316227445, + "c6": 1.8955154877484963, + "c7": 0.9477577438742482 }, "rgb": [58, 15, 49] }, @@ -169296,23 +169296,23 @@ "year": 1758, "resistanceReported": true, "duration": 6912000, - "curveSeeds": { - "c1": -13.059110101878932, - "c2": -2.6691282159349417, - "c3": 13.533540110116832, - "c4": -14.97036231672962, - "c5": -0.605573088956394, - "c6": 8.184479418459922, - "c7": -14.8152557251799 + "points": { + "c1": -8.278078379786807, + "c2": -5.748730233049988, + "c3": 17.707473576089534, + "c4": 7.410529646995091, + "c5": -11.963078052352428, + "c6": 18.064722271016073, + "c7": 1.2276389687388516 }, - "vertexSeeds": { - "c1": 4.533074744747093, - "c2": 4.457117689592519, - "c3": 4.5276217250137325, - "c4": 4.349240489808352, - "c5": 4.32788040495345, - "c6": 4.27187752371805, - "c7": 4.276963903294623 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244145, + "c6": 2.03421174294961, + "c7": 1.017105871474805 }, "rgb": [77, 76, 132] }, @@ -169323,23 +169323,23 @@ "year": 1759, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 30.05703122284637, - "c2": -46.3925209971988, - "c3": 48.571568449246506, - "c4": 29.685974112296158, - "c5": -39.453858108285544, - "c6": -4.019365059762656, - "c7": -18.90938456342498 + "points": { + "c1": -12.943164007786848, + "c2": 25.052817422830053, + "c3": 14.847936659236574, + "c4": -5.95348345025954, + "c5": -10.096677666356747, + "c6": 33.44866457360131, + "c7": 13.193020610575566 }, - "vertexSeeds": { - "c1": 5.4828241169061585, - "c2": 5.806766734529176, - "c3": 5.825994113453009, - "c4": 5.564682044524901, - "c5": 5.611459176652998, - "c6": 5.69163593221925, - "c7": 5.651689734252432 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [77, 76, 132] }, @@ -169350,23 +169350,23 @@ "year": 1758, "resistanceReported": false, "duration": 6566400, - "curveSeeds": { - "c1": 1.0118588865391267, - "c2": 9.13397100594241, - "c3": -6.9528977626536985, - "c4": 16.80333481580319, - "c5": -1.9343023215140516, - "c6": -11.678897631235587, - "c7": 12.884003678967225 + "points": { + "c1": -2.796005967922053, + "c2": 0.0818618462853209, + "c3": 15.553164560647517, + "c4": 16.88218371487607, + "c5": -2.646857125078771, + "c6": -16.28226586057231, + "c7": 10.010773143276317 }, - "vertexSeeds": { - "c1": 3.0966260765728437, - "c2": 3.1277014920807957, - "c3": 3.3384840102147217, - "c4": 3.204420358616515, - "c5": 3.429301405281855, - "c6": 3.4177521611742683, - "c7": 3.2973695831675336 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [238, 201, 159] }, @@ -169377,23 +169377,23 @@ "year": 1758, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -12.978957763233922, - "c2": 4.635081513046135, - "c3": 22.689075993304954, - "c4": 11.65568904482926, - "c5": 20.853658130403304, - "c6": -17.111754485971407, - "c7": 19.86576704444436 + "points": { + "c1": -9.692058400459388, + "c2": 20.06886617553228, + "c3": -16.614498337427666, + "c4": 5.21290259538959, + "c5": 12.580930610929101, + "c6": -1.0707958808292588, + "c7": 11.039988893284608 }, - "vertexSeeds": { - "c1": 7.342121747246494, - "c2": 7.245809179856401, - "c3": 7.2496194772458935, - "c4": 7.768753763041583, - "c5": 7.303355878846787, - "c6": 7.568773369672299, - "c7": 7.280205084964159 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249655, + "c3": 9.338881183541382, + "c4": 7.471104946833109, + "c5": 5.603328710124837, + "c6": 3.7355524734165457, + "c7": 1.8677762367082729 }, "rgb": [238, 201, 159] }, @@ -169404,23 +169404,23 @@ "year": 1758, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -23.304623823442967, - "c2": 11.164202483376542, - "c3": -30.319910807216345, - "c4": 5.932980452642106, - "c5": -7.639896118292437, - "c6": -31.5503225486095, - "c7": 14.299650308171046 + "points": { + "c1": -30.735209479273955, + "c2": 23.896645275010243, + "c3": -15.380709391795772, + "c4": 26.56621169729037, + "c5": -27.524822530726905, + "c6": -18.58177037606931, + "c7": 22.491129483823904 }, - "vertexSeeds": { - "c1": 8.552795411941402, - "c2": 8.424949577081978, - "c3": 8.639943564034413, - "c4": 8.679617151445186, - "c5": 8.543433736740957, - "c6": 8.337722243816014, - "c7": 8.593860944263831 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140081, + "c3": 10.425335182616736, + "c4": 8.340268146093388, + "c5": 6.255201109570041, + "c6": 4.170134073046694, + "c7": 2.085067036523347 }, "rgb": [86, 146, 138] }, @@ -169431,23 +169431,23 @@ "year": 1758, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 10.715587314850453, - "c2": 7.175135250129912, - "c3": -10.33968078414695, - "c4": 0.8410436471624507, - "c5": 26.80518258584768, - "c6": -29.809172548262225, - "c7": -27.095364138613576 + "points": { + "c1": 16.868721827946196, + "c2": -8.025994111375017, + "c3": -12.212596002902291, + "c4": 6.924425009503253, + "c5": 13.764422980152943, + "c6": -18.434338308902134, + "c7": 3.182390964500179 }, - "vertexSeeds": { - "c1": 7.699298664722275, - "c2": 7.9732487675983466, - "c3": 8.09560305802734, - "c4": 7.461019819640544, - "c5": 7.704426550847192, - "c6": 7.588153661272506, - "c7": 7.855377672471993 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852977, + "c3": 9.68562182154416, + "c4": 7.748497457235323, + "c5": 5.811373092926488, + "c6": 3.874248728617672, + "c7": 1.937124364308836 }, "rgb": [77, 76, 132] }, @@ -169458,23 +169458,23 @@ "year": 1758, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -27.166377256139185, - "c2": 1.8806537430734025, - "c3": 17.09016907741126, - "c4": 21.462518538747766, - "c5": -34.31318075760323, - "c6": -21.045741863664297, - "c7": 13.703396461209401 + "points": { + "c1": -14.247688443405554, + "c2": 29.65791820165061, + "c3": 24.10728018716508, + "c4": 33.60592813264822, + "c5": 1.8199189805060172, + "c6": 11.010940445894832, + "c7": -11.642956392460057 }, - "vertexSeeds": { - "c1": 5.319376623491008, - "c2": 5.400667610053282, - "c3": 4.953878000363403, - "c4": 5.466799556116079, - "c5": 5.430967237902178, - "c6": 5.323356282646365, - "c7": 5.599368699116174 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664353, + "c3": 6.703652334720294, + "c4": 5.362921867776233, + "c5": 4.022191400832174, + "c6": 2.6814609338881135, + "c7": 1.3407304669440532 }, "rgb": [86, 146, 138] }, @@ -169485,23 +169485,23 @@ "year": 1758, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 24.76252934818357, - "c2": -15.205814585918537, - "c3": -21.7285600760784, - "c4": 20.094834429857485, - "c5": 5.6802720821419825, - "c6": -25.512513815624906, - "c7": -18.35181313227975 + "points": { + "c1": 0.4096673692796955, + "c2": -1.499343811720145, + "c3": 15.536266993447619, + "c4": -9.040567499389624, + "c5": 7.824003397230179, + "c6": 21.119806966275853, + "c7": -3.5674774505777727 }, - "vertexSeeds": { - "c1": 2.2917757659316305, - "c2": 2.771729360363972, - "c3": 2.4351641907978276, - "c4": 2.6898621227350388, - "c5": 2.360835994452518, - "c6": 2.793584353163494, - "c7": 2.4084253251637135 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832177, + "c3": 3.3518261673601457, + "c4": 2.68146093388812, + "c5": 2.0110957004160896, + "c6": 1.3407304669440587, + "c7": 0.6703652334720306 }, "rgb": [222, 0, 59] }, @@ -169512,23 +169512,23 @@ "year": 1758, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 7.975308513815094, - "c2": -27.377465308745137, - "c3": 5.768585937146703, - "c4": 30.168256849056448, - "c5": 11.957892643674981, - "c6": 24.457588769711144, - "c7": 20.072898968046886 + "points": { + "c1": 9.130280481301753, + "c2": 33.882782247234104, + "c3": 13.92472148934226, + "c4": -11.349591850116056, + "c5": 36.860351010949074, + "c6": 30.62745765649194, + "c7": -28.106861923872223 }, - "vertexSeeds": { - "c1": 5.110469024506781, - "c2": 5.772834008122094, - "c3": 5.083089935399632, - "c4": 5.129955577023374, - "c5": 5.232005848019706, - "c6": 5.65112790496895, - "c7": 5.373424916228314 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055478, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.773925104022191, + "c7": 1.3869625520110955 }, "rgb": [238, 201, 159] }, @@ -169539,23 +169539,23 @@ "year": 1758, "resistanceReported": false, "duration": 2678400, - "curveSeeds": { - "c1": 10.80618321306718, - "c2": -2.000790558724356, - "c3": 11.286599195248966, - "c4": -2.68827943385671, - "c5": 8.743684657056631, - "c6": -7.116118934321089, - "c7": 1.4246836697364227 + "points": { + "c1": -5.769084093398668, + "c2": -10.398449606770352, + "c3": -0.6248360854186803, + "c4": -9.567573761207324, + "c5": 5.408087272340969, + "c6": -12.837032377427256, + "c7": 11.270977233801519 }, - "vertexSeeds": { - "c1": 3.8942593314985094, - "c2": 3.9550245056070796, - "c3": 4.018931626537501, - "c4": 3.9569519420126293, - "c5": 3.9378263577728037, - "c6": 3.916682571852889, - "c7": 4.023760047962521 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.82524271844661, + "c3": 4.854368932038832, + "c4": 3.883495145631074, + "c5": 2.9126213592232952, + "c6": 1.941747572815537, + "c7": 0.970873786407778 }, "rgb": [222, 0, 59] }, @@ -169566,23 +169566,23 @@ "year": 1758, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 18.91323350927898, - "c2": 4.23671612568447, - "c3": -4.536254116588033, - "c4": -16.43968800457246, - "c5": -3.7866824057223774, - "c6": -3.162707118330367, - "c7": 8.57213001307528 + "points": { + "c1": 5.091773051056087, + "c2": -0.9959823252979376, + "c3": 15.02044364764371, + "c4": -18.964313034257152, + "c5": -19.319890573134494, + "c6": 9.043032385948244, + "c7": -1.540697842555943 }, - "vertexSeeds": { - "c1": 3.2269964570416128, - "c2": 3.3149605231885984, - "c3": 3.369418255005989, - "c4": 3.207065974753141, - "c5": 3.6787328410271476, - "c6": 3.4076235409299582, - "c7": 3.295242935219183 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.62320850670365, + "c4": 3.698566805362921, + "c5": 2.773925104022192, + "c6": 1.8492834026814629, + "c7": 0.9246417013407289 }, "rgb": [238, 201, 159] }, @@ -169593,23 +169593,23 @@ "year": 1758, "resistanceReported": false, "duration": 2073600, - "curveSeeds": { - "c1": 2.82159287894895, - "c2": -2.4226527921508154, - "c3": 7.238756460359774, - "c4": -0.28809147422792947, - "c5": -1.2940127155176242, - "c6": -9.408727495677203, - "c7": -5.038671861923602 + "points": { + "c1": 5.65395853422206, + "c2": 10.321998228136518, + "c3": -3.2608869143277683, + "c4": 11.488484788958072, + "c5": 0.23615150645873761, + "c6": -4.60006615809373, + "c7": -7.104075455058016 }, - "vertexSeeds": { - "c1": 2.1585471251595085, - "c2": 2.2867418341072177, - "c3": 2.044785890035193, - "c4": 2.290687831090194, - "c5": 2.049803748606588, - "c6": 2.245481482953506, - "c7": 2.074353363232315 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826629, + "c3": 2.77392510402219, + "c4": 2.2191400832177517, + "c5": 1.6643550624133157, + "c6": 1.1095700416088772, + "c7": 0.5547850208044386 }, "rgb": [86, 146, 138] }, @@ -169620,23 +169620,23 @@ "year": 1758, "resistanceReported": false, "duration": 1900800, - "curveSeeds": { - "c1": -11.900954893416593, - "c2": -0.6447462193646221, - "c3": -7.125933855724492, - "c4": -8.449402345747135, - "c5": -11.80211805846249, - "c6": 0.4122244103710546, - "c7": -3.2044040619834995 + "points": { + "c1": -12.034838509927702, + "c2": 13.788394868300646, + "c3": 12.812049174824779, + "c4": -2.1365593949700266, + "c5": 13.914508490943877, + "c6": -11.982372039338973, + "c7": -2.19029366676798 }, - "vertexSeeds": { - "c1": 14.07410824419273, - "c2": 16.036102524567674, - "c3": 14.45746240816785, - "c4": 14.592755733565985, - "c5": 15.207828291231042, - "c6": 15.966207347781328, - "c7": 13.481673543550768 + "offsets": { + "c1": 27.0873786407767, + "c2": 23.217753120665737, + "c3": 19.348127600554772, + "c4": 15.47850208044383, + "c5": 11.608876560332869, + "c6": 7.739251040221906, + "c7": 3.8696255201109424 }, "rgb": [86, 146, 138] }, @@ -169647,23 +169647,23 @@ "year": 1758, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 22.12047172159955, - "c2": 18.300538004113967, - "c3": -15.902864242193068, - "c4": 4.28752257814083, - "c5": -22.507534751034335, - "c6": -25.906189758998874, - "c7": -6.250668205392856 + "points": { + "c1": 18.68337117798525, + "c2": 19.84574513478568, + "c3": -28.818397352661794, + "c4": 28.97796598689103, + "c5": -1.8379959150639351, + "c6": -28.273287529483063, + "c7": 26.276521791410204 }, - "vertexSeeds": { - "c1": 8.644393891907324, - "c2": 8.987144032178033, - "c3": 7.915689565050275, - "c4": 8.260117431718596, - "c5": 8.245332427368705, - "c6": 7.860987670818981, - "c7": 9.169739272700332 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708742, + "c3": 11.326860841423946, + "c4": 9.061488673139161, + "c5": 6.796116504854366, + "c6": 4.5307443365695805, + "c7": 2.2653721682847956 }, "rgb": [77, 76, 132] }, @@ -169674,23 +169674,23 @@ "year": 1758, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -24.29160073871613, - "c2": -0.18331434139370728, - "c3": 29.510805760664923, - "c4": -12.29495590485704, - "c5": -17.11536722642183, - "c6": -19.35398995914067, - "c7": 8.36191431861726 + "points": { + "c1": -13.888044974209972, + "c2": -14.906136109199895, + "c3": 9.016825961314076, + "c4": -10.751685757205966, + "c5": -8.722311755641009, + "c6": -2.8754704695411952, + "c7": 29.341654676909855 }, - "vertexSeeds": { - "c1": 5.805750628743465, - "c2": 6.3036723810323325, - "c3": 6.0740871857305665, - "c4": 5.9928446265788295, - "c5": 5.751562508289306, - "c6": 5.556954477996642, - "c7": 6.043725321649012 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [77, 76, 132] }, @@ -169701,23 +169701,23 @@ "year": 1758, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -14.812520455545172, - "c2": -19.475680045778667, - "c3": -21.93694675829353, - "c4": 16.965314173966, - "c5": 10.482220421606556, - "c6": 9.284518894780835, - "c7": 9.60461518357313 + "points": { + "c1": 12.249578172744009, + "c2": -15.09014661710301, + "c3": -16.38718985547529, + "c4": -18.91978800737829, + "c5": -13.011826647115468, + "c6": -20.386934223127856, + "c7": -16.782932695027352 }, - "vertexSeeds": { - "c1": 3.3660932304910394, - "c2": 3.57615558811453, - "c3": 3.564815041659669, - "c4": 3.5119941314339487, - "c5": 3.4542816441136317, - "c6": 3.505321031029554, - "c7": 3.520571763853064 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601945, + "c3": 4.368932038834947, + "c4": 3.4951456310679596, + "c5": 2.6213592233009724, + "c6": 1.7475728155339743, + "c7": 0.8737864077669871 }, "rgb": [238, 201, 159] }, @@ -169728,23 +169728,23 @@ "year": 1758, "resistanceReported": false, "duration": 777600, - "curveSeeds": { - "c1": -10.487415812765741, - "c2": 2.4633257621963764, - "c3": -8.83310906165847, - "c4": -6.352300836512075, - "c5": -4.408000865304131, - "c6": 7.159333540803804, - "c7": -10.043811568397512 + "points": { + "c1": -2.0241840853652278, + "c2": -3.1124909912010903, + "c3": -7.520179089373184, + "c4": -1.9302916232754281, + "c5": -8.984654041457768, + "c6": 5.003671348742888, + "c7": -9.252044998409646 }, - "vertexSeeds": { - "c1": 3.1574834859316443, - "c2": 3.113345750709665, - "c3": 3.151494864976516, - "c4": 3.1752294148762523, - "c5": 3.1526785543234777, - "c6": 3.1760554448887826, - "c7": 3.157383548711113 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636599, + "c3": 3.814147018030518, + "c4": 3.0513176144243994, + "c5": 2.2884882108183184, + "c6": 1.5256588072121997, + "c7": 0.7628294036061188 }, "rgb": [86, 146, 138] }, @@ -169755,23 +169755,23 @@ "year": 1758, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -24.061460477824905, - "c2": 14.676082449901525, - "c3": 4.3177679700326586, - "c4": -19.967741041595296, - "c5": 21.328522535294095, - "c6": -15.506650319153984, - "c7": -0.23714902570535656 + "points": { + "c1": 0.8481576894249372, + "c2": 8.4006294674748, + "c3": 33.655654429889594, + "c4": -33.59393375799217, + "c5": 1.175941891419086, + "c6": -6.254361040524202, + "c7": 31.445350521265638 }, - "vertexSeeds": { - "c1": 4.560950659956957, - "c2": 4.837700392925084, - "c3": 4.493734120861419, - "c4": 4.487020253036099, - "c5": 4.586171136703634, - "c6": 4.7198230473530876, - "c7": 4.801271902664832 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819698, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.243643088303281 }, "rgb": [86, 146, 138] }, @@ -169782,23 +169782,23 @@ "year": 1759, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": -34.40994274739591, - "c2": 9.71233839925921, - "c3": 37.84283872543847, - "c4": -50.59130203312314, - "c5": -19.114993785190556, - "c6": 41.74270055710238, - "c7": 31.276619952063513 + "points": { + "c1": 41.79982061614726, + "c2": 12.216145722855856, + "c3": -30.36465436048355, + "c4": -35.09222712975787, + "c5": 54.34112159321877, + "c6": 8.631754089716523, + "c7": -16.558898451544295 }, - "vertexSeeds": { - "c1": 5.687414756132103, - "c2": 6.185232515292724, - "c3": 5.981380847918189, - "c4": 6.005194476024509, - "c5": 5.770652647484696, - "c6": 6.472358179641391, - "c7": 6.440667237576015 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474335, + "c3": 7.743874248728619, + "c4": 6.19509939898289, + "c5": 4.646324549237175, + "c6": 3.097549699491445, + "c7": 1.5487748497457294 }, "rgb": [58, 15, 49] }, @@ -169809,23 +169809,23 @@ "year": 1759, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": 4.756086907992888, - "c2": 2.782173246837999, - "c3": 34.812643653625614, - "c4": -1.163966669215334, - "c5": -32.53950957859433, - "c6": -18.87738746552838, - "c7": 6.462115147507674 + "points": { + "c1": 45.53649928833288, + "c2": -49.698864045582646, + "c3": 1.5287466178667373, + "c4": -28.778075963029064, + "c5": 36.334569781060594, + "c6": -11.520208710494323, + "c7": -11.473965424731595 }, - "vertexSeeds": { - "c1": 7.677141163183103, - "c2": 7.174530720815831, - "c3": 7.408838189940795, - "c4": 7.350049078086788, - "c5": 7.559861595355565, - "c6": 7.075096826362502, - "c7": 7.418028094727946 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968097, + "c3": 9.177068885806744, + "c4": 7.341655108645391, + "c5": 5.50624133148406, + "c6": 3.670827554322706, + "c7": 1.835413777161353 }, "rgb": [238, 201, 159] }, @@ -169836,23 +169836,23 @@ "year": 1759, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -8.698770258224961, - "c2": 34.85322557306536, - "c3": -3.934298630039166, - "c4": -29.543140863327505, - "c5": 13.104437197184126, - "c6": 17.663284226936533, - "c7": -11.257589558168519 + "points": { + "c1": 24.954511953700987, + "c2": 8.060846450710372, + "c3": -2.9690889430491367, + "c4": -5.496925911810955, + "c5": -15.60559978322054, + "c6": -23.78970478500272, + "c7": -8.833940417697946 }, - "vertexSeeds": { - "c1": 2.895077720207254, - "c2": 2.895077720207254, - "c3": 2.895077720207254, - "c4": 2.895077720207254, - "c5": 2.895077720207254, - "c6": 2.895077720207254, - "c7": 2.895077720207254 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -169863,23 +169863,23 @@ "year": 1759, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": -15.06654600894246, - "c2": -21.076614841202392, - "c3": 45.78542929294555, - "c4": 5.1143888319895865, - "c5": -33.76255901333022, - "c6": -14.914334843206198, - "c7": 20.311134077527086 + "points": { + "c1": 31.701576845098757, + "c2": -21.553900250423926, + "c3": -10.217659505151772, + "c4": 47.39228698822899, + "c5": -50.951738580247756, + "c6": 23.988396331380414, + "c7": 33.710017399658426 }, - "vertexSeeds": { - "c1": 2.567853454993841, - "c2": 2.7161488101829834, - "c3": 2.6001203499592758, - "c4": 2.582792298384208, - "c5": 2.543757092292024, - "c6": 2.6116144431383512, - "c7": 2.565151838431518 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832174, + "c3": 3.3518261673601493, + "c4": 2.681460933888116, + "c5": 2.011095700416091, + "c6": 1.340730466944058, + "c7": 0.6703652334720329 }, "rgb": [222, 0, 59] }, @@ -169890,23 +169890,23 @@ "year": 1759, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 15.653678573002814, - "c2": -50.55590203764278, - "c3": 41.26599678462399, - "c4": -2.1210604305112497, - "c5": -15.023060317075206, - "c6": -35.268141534945194, - "c7": -9.741123877919229 + "points": { + "c1": -27.926464638133446, + "c2": -0.34644811725925706, + "c3": 17.829429290487774, + "c4": 25.54306583538048, + "c5": -16.631827915110286, + "c6": 18.321914387701987, + "c7": 49.39912221965357 }, - "vertexSeeds": { - "c1": 2.715636415987671, - "c2": 2.7698512456656688, - "c3": 2.744452886363998, - "c4": 2.760257113516323, - "c5": 2.88498387098369, - "c6": 2.7434463880600384, - "c7": 2.7374285686444786 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033292, + "c3": 3.467406380027737, + "c4": 2.7739251040221955, + "c5": 2.0804438280166395, + "c6": 1.3869625520110977, + "c7": 0.6934812760055419 }, "rgb": [77, 76, 132] }, @@ -169917,23 +169917,23 @@ "year": 1758, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 15.97305070800569, - "c2": -29.69373532718665, - "c3": 21.367823080732112, - "c4": 7.7253844217007135, - "c5": 30.68344957751297, - "c6": -30.107282307394218, - "c7": 1.7220935419654815 + "points": { + "c1": 9.598124603603885, + "c2": 0.318167879642715, + "c3": 21.68669853951205, + "c4": 4.280908103344899, + "c5": -16.470132708232683, + "c6": -18.99218649029303, + "c7": 26.389935402657585 }, - "vertexSeeds": { - "c1": 6.331333016532654, - "c2": 6.3125539501136965, - "c3": 6.394840517452295, - "c4": 6.140011601844514, - "c5": 6.122632288235523, - "c6": 6.00891335320605, - "c7": 5.913867409219813 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393904, + "c3": 7.697642163661579, + "c4": 6.158113730929269, + "c5": 4.618585298196945, + "c6": 3.0790568654646346, + "c7": 1.5395284327323102 }, "rgb": [238, 201, 159] }, @@ -169944,23 +169944,23 @@ "year": 1759, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 25.79615165496329, - "c2": 10.918111204102686, - "c3": -13.726836261421791, - "c4": -4.823348729509036, - "c5": -32.992178415083615, - "c6": 28.514657796144057, - "c7": 36.71672565580817 + "points": { + "c1": -21.149265038369222, + "c2": 5.258157614047178, + "c3": 17.446001390146627, + "c4": 25.054258878488305, + "c5": -8.784941196579496, + "c6": 18.518831128453805, + "c7": -37.06307191982849 }, - "vertexSeeds": { - "c1": 5.6985757602629965, - "c2": 5.604459548535082, - "c3": 5.577258699608708, - "c4": 5.6478759463447545, - "c5": 5.8189538234543, - "c6": 5.840050081856939, - "c7": 5.8102250509323925 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [222, 0, 59] }, @@ -169971,23 +169971,23 @@ "year": 1758, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -16.58060771828797, - "c2": 15.561799035134051, - "c3": -1.133717870390683, - "c4": -14.830589205906744, - "c5": -23.91425710860632, - "c6": 25.03354841814913, - "c7": 11.996721172665652 + "points": { + "c1": 1.1748186663152254, + "c2": -14.56282592295246, + "c3": -6.235199074930726, + "c4": 4.61433213302945, + "c5": 31.225421537452753, + "c6": 12.646695951674033, + "c7": -23.164823302334426 }, - "vertexSeeds": { - "c1": 8.282293727491886, - "c2": 8.609518421317047, - "c3": 8.938689287419546, - "c4": 8.448203643934844, - "c5": 8.414797419088261, - "c6": 9.72691156577202, - "c7": 8.44187098984409 + "offsets": { + "c1": 16.310679611650485, + "c2": 13.980582524271842, + "c3": 11.650485436893199, + "c4": 9.320388349514564, + "c5": 6.990291262135921, + "c6": 4.660194174757278, + "c7": 2.3300970873786437 }, "rgb": [58, 15, 49] }, @@ -169998,23 +169998,23 @@ "year": 1758, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 9.605708453682361, - "c2": 11.341968036381331, - "c3": 16.660065010987772, - "c4": 6.257833332515347, - "c5": -4.411493760377006, - "c6": 12.485062949960287, - "c7": 17.21241915508199 + "points": { + "c1": 23.26122333525693, + "c2": 4.771649921074314, + "c3": 6.498637539403518, + "c4": 31.98345406211437, + "c5": -20.628616531240894, + "c6": 28.78388946884875, + "c7": 9.078656006216434 }, - "vertexSeeds": { - "c1": 6.008260967273724, - "c2": 5.7726496701912025, - "c3": 5.749570987704061, - "c4": 5.679085936909278, - "c5": 6.093175395125754, - "c6": 5.796932434160841, - "c7": 6.121845446687428 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514559, + "c3": 7.766990291262138, + "c4": 6.213592233009705, + "c5": 4.660194174757286, + "c6": 3.1067961165048525, + "c7": 1.553398058252433 }, "rgb": [77, 76, 132] }, @@ -170025,23 +170025,23 @@ "year": 1758, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -11.51290810016467, - "c2": 26.235656651602444, - "c3": -19.2798850554197, - "c4": -23.593055643391104, - "c5": -17.258342305977457, - "c6": -10.002227868999135, - "c7": 7.362304195114799 + "points": { + "c1": 1.0114334508412774, + "c2": -4.3903565704234815, + "c3": -28.380041394381884, + "c4": -1.2971113050587135, + "c5": 13.156121243722186, + "c6": 6.312311248032611, + "c7": 26.980942529645194 }, - "vertexSeeds": { - "c1": 8.761940043661207, - "c2": 9.238782264680562, - "c3": 9.461392916152857, - "c4": 9.485695716265308, - "c5": 9.074443156668096, - "c6": 9.69072915269805, - "c7": 9.153681441569722 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110949, + "c3": 11.558021266759132, + "c4": 9.2464170134073, + "c5": 6.9348127600554825, + "c6": 4.62320850670365, + "c7": 2.311604253351833 }, "rgb": [58, 15, 49] }, @@ -170052,23 +170052,23 @@ "year": 1758, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 6.358013651346447, - "c2": -13.015180784566137, - "c3": -32.432620854389704, - "c4": -8.335747445297145, - "c5": 2.38914751890389, - "c6": 20.680076513845037, - "c7": 11.315710619541868 + "points": { + "c1": -1.2497414964433915, + "c2": -33.75601150057178, + "c3": -6.543502874152779, + "c4": 15.35635495508459, + "c5": 1.123671719069037, + "c6": -19.58384224235828, + "c7": -5.589712084207125 }, - "vertexSeeds": { - "c1": 3.3542816232055133, - "c2": 3.207882775223612, - "c3": 3.1716327723501374, - "c4": 3.1278072643728545, - "c5": 3.209228651565062, - "c6": 3.441411185587931, - "c7": 3.4748658137247124 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.16088765603329, + "c4": 3.3287101248266335, + "c5": 2.4965325936199774, + "c6": 1.6643550624133125, + "c7": 0.8321775312066563 }, "rgb": [238, 201, 159] }, @@ -170079,23 +170079,23 @@ "year": 1758, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -28.52121764088328, - "c2": 13.73156185796745, - "c3": -9.987383310246404, - "c4": -1.044019461054063, - "c5": 15.977259755933368, - "c6": 31.9350074636413, - "c7": -25.57456206994071 + "points": { + "c1": -3.9551577303198258, + "c2": -39.99000494686119, + "c3": 22.07993442934054, + "c4": 0.08464799480988461, + "c5": -25.72780667767952, + "c6": 3.0332967745298234, + "c7": -20.49107505454253 }, - "vertexSeeds": { - "c1": 10.193969515317105, - "c2": 10.215058681158734, - "c3": 9.916591557663313, - "c4": 9.941632728452412, - "c5": 10.011847007434168, - "c6": 10.010931966564458, - "c7": 10.086224921488483 + "offsets": { + "c1": 17.734627831715212, + "c2": 15.201109570041588, + "c3": 12.667591308368017, + "c4": 10.134073046694391, + "c5": 7.600554785020821, + "c6": 5.067036523347196, + "c7": 2.5335182616736254 }, "rgb": [58, 15, 49] }, @@ -170106,23 +170106,23 @@ "year": 1758, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 27.738723655711738, - "c2": 20.592799762365544, - "c3": 11.095878884925469, - "c4": -0.9427784965218322, - "c5": 27.06329790848344, - "c6": -1.481715567094426, - "c7": 18.873761243349684 + "points": { + "c1": 19.908837493326764, + "c2": 15.644451124826837, + "c3": 10.0871962849534, + "c4": -12.756528206802031, + "c5": -27.70127251320646, + "c6": -26.216143773350097, + "c7": 12.186386728738391 }, - "vertexSeeds": { - "c1": 2.962267483323562, - "c2": 3.340335316422727, - "c3": 3.2226296824081024, - "c4": 3.3139414284966744, - "c5": 2.9757980366759917, - "c6": 3.327387873987632, - "c7": 3.2861447619772344 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239947, + "c3": 4.160887656033287, + "c4": 3.3287101248266313, + "c5": 2.4965325936199707, + "c6": 1.6643550624133157, + "c7": 0.8321775312066608 }, "rgb": [58, 15, 49] }, @@ -170133,23 +170133,23 @@ "year": 1758, "resistanceReported": true, "duration": 25315200, - "curveSeeds": { - "c1": 7.447592959178074, - "c2": -34.48667582119886, - "c3": 29.001834685563566, - "c4": 7.633794498301313, - "c5": 15.610694229506613, - "c6": -23.962423258511613, - "c7": -15.317920246349804 + "points": { + "c1": 27.281029509789775, + "c2": -12.840027182943608, + "c3": -26.165920756122574, + "c4": -10.166133006498622, + "c5": 2.9189586123361124, + "c6": -34.214276896846286, + "c7": -2.4294114003076643 }, - "vertexSeeds": { - "c1": 4.028393294359013, - "c2": 3.91790013372482, - "c3": 3.585161212273479, - "c4": 3.8145900250411224, - "c5": 4.349101244839796, - "c6": 4.365981780632342, - "c7": 3.6959990566796557 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.5187239944521504, + "c3": 5.43226999537679, + "c4": 4.3458159963014324, + "c5": 3.2593619972260752, + "c6": 2.1729079981507144, + "c7": 1.0864539990753572 }, "rgb": [238, 201, 159] }, @@ -170160,23 +170160,23 @@ "year": 1759, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -7.820104672978605, - "c2": 12.95431586943991, - "c3": 11.515217311162743, - "c4": 6.730801053824251, - "c5": -21.975831098154405, - "c6": -33.59639247994737, - "c7": -8.825946969290108 + "points": { + "c1": 7.123396926454596, + "c2": -9.441841055629425, + "c3": 0.18092989499579204, + "c4": -8.9306775322246, + "c5": -14.944636893442855, + "c6": 16.69417250267754, + "c7": 33.248383079993 }, - "vertexSeeds": { - "c1": 7.257559537139495, - "c2": 7.740209181570438, - "c3": 7.236297694383465, - "c4": 8.265165921739909, - "c5": 7.201769750764269, - "c6": 7.880995573185719, - "c7": 6.972010907588432 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214977, + "c3": 9.893666204345816, + "c4": 7.9149329634766525, + "c5": 5.936199722607489, + "c6": 3.9574664817383263, + "c7": 1.9787332408691631 }, "rgb": [58, 15, 49] }, @@ -170187,23 +170187,23 @@ "year": 1759, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 47.45784943550085, - "c2": 13.530894709059268, - "c3": -30.846963362373412, - "c4": -20.258257470861203, - "c5": -0.7215680661911108, - "c6": 25.772210688261183, - "c7": -48.24212194946794 + "points": { + "c1": 13.905754848020564, + "c2": -33.20400217597449, + "c3": -8.269694163436093, + "c4": -33.40476096176195, + "c5": -3.8759637722920317, + "c6": 16.175593105338052, + "c7": -41.04714574310064 }, - "vertexSeeds": { - "c1": 7.584338133870482, - "c2": 8.323914900801473, - "c3": 8.339371550844954, - "c4": 8.263253734201113, - "c5": 8.344623940968628, - "c6": 6.9907031284737124, - "c7": 8.48836404096427 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697642, + "c3": 10.171058714748039, + "c4": 8.136846971798432, + "c5": 6.102635228848817, + "c6": 4.068423485899212, + "c7": 2.034211742949606 }, "rgb": [86, 146, 138] }, @@ -170214,23 +170214,23 @@ "year": 1758, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -5.159722276206406, - "c2": 7.181129376332265, - "c3": -9.088246478325498, - "c4": -11.165260513938502, - "c5": 23.305283861696864, - "c6": -27.24123151989241, - "c7": -7.013028229000621 + "points": { + "c1": 27.427207816854512, + "c2": 27.83881092427073, + "c3": -0.4464332838406051, + "c4": -17.64724128390244, + "c5": -20.352060892434597, + "c6": 20.543082408685905, + "c7": -4.2806582728549465 }, - "vertexSeeds": { - "c1": 9.996673135057172, - "c2": 9.404095197668301, - "c3": 7.8646709090510125, - "c4": 9.737415005187794, - "c5": 7.807068676226858, - "c6": 9.94096501072669, - "c7": 8.09708939033738 + "offsets": { + "c1": 17.055016181229774, + "c2": 14.618585298196953, + "c3": 12.18215441516412, + "c4": 9.745723532131299, + "c5": 7.309292649098476, + "c6": 4.872861766065646, + "c7": 2.436430883032823 }, "rgb": [86, 146, 138] }, @@ -170241,23 +170241,23 @@ "year": 1758, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -23.517225026895645, - "c2": -6.648072355956877, - "c3": -19.344563309581112, - "c4": -32.61230683756953, - "c5": -22.639314098793918, - "c6": 15.624013126939026, - "c7": -29.5436871827178 + "points": { + "c1": 18.918180490724545, + "c2": 19.26127327802672, + "c3": -9.754310417272933, + "c4": 19.280296211899476, + "c5": 25.340403445879048, + "c6": 25.300726161624297, + "c7": -2.053564603252518 }, - "vertexSeeds": { - "c1": 8.471306706637657, - "c2": 9.30387396378396, - "c3": 10.317810408246245, - "c4": 10.560818129034818, - "c5": 8.861373441848427, - "c6": 8.304523831673743, - "c7": 8.405735890892558 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.284327323162268, + "c3": 12.736939435968567, + "c4": 10.18955154877485, + "c5": 7.642163661581139, + "c6": 5.094775774387429, + "c7": 2.5473878871937106 }, "rgb": [86, 146, 138] }, @@ -170268,23 +170268,23 @@ "year": 1759, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 41.308174740745216, - "c2": 46.216406082067024, - "c3": -25.64659187193058, - "c4": 17.786780570003117, - "c5": 18.613180565337615, - "c6": 21.304861243712452, - "c7": -25.57088247977745 + "points": { + "c1": -12.77509328114946, + "c2": 30.199897408813953, + "c3": 7.625188000487547, + "c4": -14.593918841888481, + "c5": 45.75767579960399, + "c6": -39.25589787580415, + "c7": 0.35312500997608964 }, - "vertexSeeds": { - "c1": 7.250535559993102, - "c2": 7.82313422061401, - "c3": 8.324871869644534, - "c4": 8.649612421020107, - "c5": 7.609933577823316, - "c6": 7.111976258368239, - "c7": 8.106086140245242 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.399445214979199, + "c3": 10.332871012482661, + "c4": 8.266296809986134, + "c5": 6.199722607489605, + "c6": 4.133148404993067, + "c7": 2.0665742024965383 }, "rgb": [222, 0, 59] }, @@ -170295,23 +170295,23 @@ "year": 1758, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -11.46640730099115, - "c2": 31.901703416958526, - "c3": -10.382235685561856, - "c4": -6.722248646024433, - "c5": -25.585370472456972, - "c6": 25.801456298463066, - "c7": 15.93716660492047 + "points": { + "c1": -19.709357155757438, + "c2": 32.72967368373166, + "c3": 2.5877462016220463, + "c4": -28.267888261407165, + "c5": 13.36212123160405, + "c6": -22.32706100098096, + "c7": 5.668496969609656 }, - "vertexSeeds": { - "c1": 6.76984322779969, - "c2": 7.03204842087554, - "c3": 6.786374505521124, - "c4": 7.091117591472331, - "c5": 6.950447501941214, - "c6": 7.100491821280623, - "c7": 6.730836316565324 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922342, + "c3": 8.576051779935272, + "c4": 6.860841423948227, + "c5": 5.145631067961158, + "c6": 3.4304207119741137, + "c7": 1.7152103559870695 }, "rgb": [58, 15, 49] }, @@ -170322,23 +170322,23 @@ "year": 1759, "resistanceReported": false, "duration": 43372800, - "curveSeeds": { - "c1": -19.27051489864825, - "c2": 6.05023528338868, - "c3": -19.230858997158364, - "c4": -48.389046263305325, - "c5": -10.607163786830675, - "c6": -37.96360281036445, - "c7": 48.14886227801087 + "points": { + "c1": 9.62016409992701, + "c2": -0.21165097859624638, + "c3": -1.375025897192863, + "c4": -33.363932126844986, + "c5": -2.8178802318479654, + "c6": -19.611122941306625, + "c7": -36.87962243608116 }, - "vertexSeeds": { - "c1": 7.2967274221669225, - "c2": 7.354155316461844, - "c3": 7.335753660481148, - "c4": 7.3472042408965095, - "c5": 7.3521472879465755, - "c6": 7.302709065726265, - "c7": 7.320788103892343 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284378, + "c3": 8.784096162736866, + "c4": 7.027276930189527, + "c5": 5.270457697642189, + "c6": 3.513638465094676, + "c7": 1.756819232547338 }, "rgb": [77, 76, 132] }, @@ -170349,23 +170349,23 @@ "year": 1759, "resistanceReported": false, "duration": 50457600, - "curveSeeds": { - "c1": -8.530098108879358, - "c2": 41.81747215981251, - "c3": 58.429871587601255, - "c4": 9.979519850673498, - "c5": 36.06260029076462, - "c6": -18.55460969611712, - "c7": -50.4280376901803 + "points": { + "c1": 19.950075617031885, + "c2": 46.42232905921374, + "c3": 60.50921450949279, + "c4": -5.251141782510217, + "c5": -65.98593070251442, + "c6": 58.566720979259614, + "c7": 46.85905845821371 }, - "vertexSeeds": { - "c1": 3.7697662634785836, - "c2": 4.102946045297099, - "c3": 3.8312551108421204, - "c4": 3.843738386974556, - "c5": 3.7881855309062438, - "c6": 4.015604173989448, - "c7": 3.974527247154191 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.9916782246879325, + "c3": 4.993065187239942, + "c4": 3.9944521497919525, + "c5": 2.9958391123439703, + "c6": 1.9972260748959803, + "c7": 0.9986130374479901 }, "rgb": [238, 201, 159] }, @@ -170376,23 +170376,23 @@ "year": 1759, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 25.164966638456534, - "c2": -3.4463781777764453, - "c3": 23.669110660400484, - "c4": 1.9191381933795384, - "c5": -32.34587549914603, - "c6": 30.88428321786469, - "c7": -22.259235623609634 + "points": { + "c1": 23.8889179290816, + "c2": 14.146671936783896, + "c3": -2.7478490895849816, + "c4": -4.478961337863325, + "c5": -12.584639160956982, + "c6": 31.886008347974226, + "c7": 29.740858582685618 }, - "vertexSeeds": { - "c1": 4.392690944696609, - "c2": 4.763178988252598, - "c3": 4.193434249848705, - "c4": 4.490271417323572, - "c5": 4.779438358733256, - "c6": 4.351253246954833, - "c7": 4.119652411700446 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -170403,23 +170403,23 @@ "year": 1758, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 6.3460998365581425, - "c2": 12.857224736748588, - "c3": -14.602613900683776, - "c4": 3.8138604159501135, - "c5": -10.823098133875252, - "c6": 2.102632949540247, - "c7": 5.206046994104309 + "points": { + "c1": -14.476675366263196, + "c2": 8.131042592329354, + "c3": 14.123360600144029, + "c4": -24.233071550723142, + "c5": -18.301427861930193, + "c6": 9.978057284524898, + "c7": -18.819456808619037 }, - "vertexSeeds": { - "c1": 2.9035500461536943, - "c2": 2.7873045500638858, - "c3": 2.9264485508528018, - "c4": 2.8471272798873635, - "c5": 2.9333514876774567, - "c6": 2.647910510818156, - "c7": 2.947349464323321 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153957, + "c3": 3.5367545076282934, + "c4": 2.829403606102638, + "c5": 2.122052704576974, + "c6": 1.414701803051319, + "c7": 0.7073509015256639 }, "rgb": [77, 76, 132] }, @@ -170430,23 +170430,23 @@ "year": 1759, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -26.58668406006303, - "c2": -21.055550855606256, - "c3": 20.080532591011618, - "c4": -5.533955922049966, - "c5": -8.426727881443583, - "c6": -12.063360014499207, - "c7": 25.235671795889324 + "points": { + "c1": -4.050025221067642, + "c2": 6.688947350870407, + "c3": 0.021437986033618017, + "c4": -23.039940509169604, + "c5": -35.14060581692544, + "c6": -33.819910735781534, + "c7": 31.584066103951656 }, - "vertexSeeds": { - "c1": 4.1746246375528, - "c2": 4.321515110848904, - "c3": 4.355645927934687, - "c4": 4.63542152153162, - "c5": 4.600467169698264, - "c6": 4.402636038847358, - "c7": 4.5531604230480305 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -170457,23 +170457,23 @@ "year": 1758, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -13.85201684240575, - "c2": 18.479700312889115, - "c3": 15.367312959272006, - "c4": -13.61928858157336, - "c5": 11.267454999245693, - "c6": -14.715930471695676, - "c7": 3.379110131323742 + "points": { + "c1": 19.75763037930539, + "c2": 24.402124278566333, + "c3": -16.178815256848466, + "c4": 12.288656654102503, + "c5": -3.748882850222042, + "c6": -6.245814808000045, + "c7": -5.609017068852815 }, - "vertexSeeds": { - "c1": 1.1525741079262908, - "c2": 1.396748613448225, - "c3": 1.132601805874098, - "c4": 1.4016767096738123, - "c5": 1.1585231301782413, - "c6": 1.3811156010339591, - "c7": 1.3128240647656826 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.052704576976423, + "c3": 1.7105871474803513, + "c4": 1.36846971798428, + "c5": 1.0263522884882108, + "c6": 0.6842348589921405, + "c7": 0.34211742949607027 }, "rgb": [222, 0, 59] }, @@ -170484,23 +170484,23 @@ "year": 1759, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 10.032297805538711, - "c2": 10.787229975636194, - "c3": -27.35244923982002, - "c4": 23.188947970366918, - "c5": -27.329985432956047, - "c6": 8.630016232118173, - "c7": -30.51175431253947 + "points": { + "c1": -11.986340806248176, + "c2": -23.05555355339284, + "c3": -22.829345590613933, + "c4": 5.076313960479162, + "c5": 18.16041786271574, + "c6": -7.238522626419311, + "c7": -12.108179053625136 }, - "vertexSeeds": { - "c1": 11.679116498633014, - "c2": 12.667221247294574, - "c3": 12.744198847296676, - "c4": 12.07955939161851, - "c5": 12.56207050819718, - "c6": 12.056602757609921, - "c7": 12.220585000282565 + "offsets": { + "c1": 21.294498381877023, + "c2": 18.252427184466015, + "c3": 15.210355987055005, + "c4": 12.168284789644037, + "c5": 9.126213592233027, + "c6": 6.084142394822019, + "c7": 3.0420711974110093 }, "rgb": [58, 15, 49] }, @@ -170511,23 +170511,23 @@ "year": 1759, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -38.51482492709391, - "c2": 8.936939266288938, - "c3": 35.256230344232414, - "c4": -37.66659471448432, - "c5": 1.7235639617302851, - "c6": -17.43370493276839, - "c7": 27.291006644629327 + "points": { + "c1": 0.17564456469160916, + "c2": -13.338578113676832, + "c3": 23.83853249591281, + "c4": -26.330923471082034, + "c5": -39.52758923101286, + "c6": 12.120565504376678, + "c7": 40.39713716512406 }, - "vertexSeeds": { - "c1": 6.7079818662006145, - "c2": 6.730212059327316, - "c3": 6.706385187656149, - "c4": 6.775049741730547, - "c5": 6.9293279899501945, - "c6": 6.802323404767002, - "c7": 6.894565309702596 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479881, + "c3": 8.321775312066586, + "c4": 6.657420249653263, + "c5": 4.9930651872399405, + "c6": 3.328710124826618, + "c7": 1.6643550624133228 }, "rgb": [86, 146, 138] }, @@ -170538,23 +170538,23 @@ "year": 1759, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -14.548570441470876, - "c2": -20.307836697699702, - "c3": -28.834910258354697, - "c4": 33.33366720619573, - "c5": 30.25399258381563, - "c6": 17.452235790645297, - "c7": 25.341297332873502 + "points": { + "c1": 12.12654577972836, + "c2": 38.66936922860194, + "c3": 31.495304696530596, + "c4": -38.520713064821976, + "c5": -0.33456426678874607, + "c6": -29.94786034944703, + "c7": 31.224506577994745 }, - "vertexSeeds": { - "c1": 5.700422157681222, - "c2": 6.156430282980969, - "c3": 6.348413326754969, - "c4": 5.142283550938543, - "c5": 6.0363289603473005, - "c6": 6.097711323717702, - "c7": 5.318828583160881 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527508, + "c4": 6.084142394822009, + "c5": 4.563106796116502, + "c6": 3.0420711974110044, + "c7": 1.521035598705498 }, "rgb": [86, 146, 138] }, @@ -170565,23 +170565,23 @@ "year": 1759, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 21.230448042436894, - "c2": -1.7622669192149516, - "c3": 12.753782533765278, - "c4": -15.166164769581812, - "c5": -19.991023367446417, - "c6": -16.700415748233613, - "c7": 13.367752265794959 + "points": { + "c1": 10.591950412475004, + "c2": 23.430923016115376, + "c3": 0.7747402564976262, + "c4": -31.436282462289885, + "c5": -8.797038941460084, + "c6": -30.45388786081886, + "c7": -7.109988791364962 }, - "vertexSeeds": { - "c1": 7.158740961195669, - "c2": 7.133922866344605, - "c3": 7.196405630699412, - "c4": 7.195242112385723, - "c5": 7.170672758492787, - "c6": 7.141846292846197, - "c7": 7.165326326367803 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.3190013869626, + "c3": 8.59916782246872, + "c4": 6.87933425797501, + "c5": 5.1595006934813, + "c6": 3.439667128987591, + "c7": 1.7198335644937097 }, "rgb": [58, 15, 49] }, @@ -170592,23 +170592,23 @@ "year": 1759, "resistanceReported": true, "duration": 14342400, - "curveSeeds": { - "c1": -21.030347264631352, - "c2": 5.142418006816314, - "c3": -7.760765996026294, - "c4": 12.841202335164624, - "c5": -17.356392195281188, - "c6": -14.138645400073992, - "c7": -23.94397701339616 + "points": { + "c1": 18.210608506975326, + "c2": 11.863677786847248, + "c3": 15.410918148853987, + "c4": -18.261445649360155, + "c5": 14.31569320497443, + "c6": 22.010743487774064, + "c7": 16.014106484156876 }, - "vertexSeeds": { - "c1": 2.717883090409315, - "c2": 2.940082917641818, - "c3": 2.796532309778295, - "c4": 2.91905282005059, - "c5": 3.049087884400242, - "c6": 2.964029094463302, - "c7": 2.727540708011529 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355065, + "c3": 3.6523347202958822, + "c4": 2.921867776236707, + "c5": 2.1914008321775325, + "c6": 1.4609338881183576, + "c7": 0.7304669440591748 }, "rgb": [86, 146, 138] }, @@ -170619,23 +170619,23 @@ "year": 1759, "resistanceReported": false, "duration": 43372800, - "curveSeeds": { - "c1": 53.27795539682859, - "c2": 19.32046522082858, - "c3": 18.831326846616363, - "c4": -6.804983014453086, - "c5": -33.303328111808554, - "c6": 16.367465345799317, - "c7": 1.890256564164325 + "points": { + "c1": -15.069666925277915, + "c2": -9.637992697475184, + "c3": -39.80453467788108, + "c4": 5.9237217203758945, + "c5": -44.50597638855693, + "c6": -11.249599216107796, + "c7": 11.409177899926647 }, - "vertexSeeds": { - "c1": 2.8003281908431545, - "c2": 2.785205887843245, - "c3": 2.85097842213936, - "c4": 2.7513095271041665, - "c5": 2.7796811829523564, - "c6": 2.9190700801871423, - "c7": 2.983537396530782 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395287, + "c3": 3.6754507628294006, + "c4": 2.9403606102635216, + "c5": 2.2052704576976434, + "c6": 1.4701803051317568, + "c7": 0.7350901525658784 }, "rgb": [238, 201, 159] }, @@ -170646,23 +170646,23 @@ "year": 1760, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": -45.316917570433006, - "c2": 37.68424236044123, - "c3": -40.982147725322996, - "c4": 48.16739884093889, - "c5": 33.00318616740999, - "c6": -32.10145141268633, - "c7": -7.38233367892262 + "points": { + "c1": 29.81186579852556, + "c2": -55.27304392395652, + "c3": 5.909864573099739, + "c4": -59.9114213794541, + "c5": -0.5706988790513563, + "c6": -22.68625908517832, + "c7": -53.402941994961324 }, - "vertexSeeds": { - "c1": 4.178470698694853, - "c2": 3.852548393658142, - "c3": 4.0013945841848795, - "c4": 3.949142129900665, - "c5": 3.9565427167623306, - "c6": 4.185005104921618, - "c7": 3.915760135774014 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.201109570041613, + "c4": 4.160887656033286, + "c5": 3.120665742024966, + "c6": 2.080443828016647, + "c7": 1.0402219140083273 }, "rgb": [58, 15, 49] }, @@ -170673,23 +170673,23 @@ "year": 1759, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -18.50697028350045, - "c2": -0.25216323761666715, - "c3": -9.403395047314875, - "c4": -17.23450068601077, - "c5": 10.380165365269544, - "c6": 5.119367490868775, - "c7": -1.1429028527475147 + "points": { + "c1": -22.098768454590374, + "c2": 21.4668090048733, + "c3": 20.61666297379647, + "c4": 2.742290202302229, + "c5": 9.617565303585682, + "c6": 9.327208032400417, + "c7": -11.81602191970475 }, - "vertexSeeds": { - "c1": 3.951139557131629, - "c2": 3.7389710029877286, - "c3": 4.095248830218398, - "c4": 3.808236744198081, - "c5": 3.8384200981651073, - "c6": 4.03907367368794, - "c7": 3.9206362877647116 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [238, 201, 159] }, @@ -170700,23 +170700,23 @@ "year": 1760, "resistanceReported": false, "duration": 50630400, - "curveSeeds": { - "c1": 45.5263630087878, - "c2": -56.87935979392563, - "c3": -13.347467771131107, - "c4": 52.03554902776804, - "c5": -6.1348758533927565, - "c6": 31.974387742525437, - "c7": 15.114303294895421 + "points": { + "c1": 16.739326050476265, + "c2": 34.1948134528179, + "c3": 15.470917322426502, + "c4": -4.1101401119708925, + "c5": 16.508975136118437, + "c6": -64.80819163894365, + "c7": -58.62384468418658 }, - "vertexSeeds": { - "c1": 2.497808492470843, - "c2": 2.5450976023001632, - "c3": 2.6199672745218043, - "c4": 2.605900801245118, - "c5": 2.5410067225553568, - "c6": 2.5936124469622643, - "c7": 2.5346326907870638 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.938973647711513, + "c3": 3.2824780397595954, + "c4": 2.625982431807678, + "c5": 1.9694868238557526, + "c6": 1.3129912159038348, + "c7": 0.6564956079519174 }, "rgb": [77, 76, 132] }, @@ -170727,23 +170727,23 @@ "year": 1759, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -32.60253127317806, - "c2": 4.051774298754161, - "c3": -31.98164975922394, - "c4": -29.378058119250916, - "c5": 7.6259135063366585, - "c6": -24.438828477835784, - "c7": 16.20370680787787 + "points": { + "c1": 17.851227321183345, + "c2": 20.00231198224816, + "c3": 33.28797042626279, + "c4": 13.51611830801631, + "c5": -27.097757819107727, + "c6": -18.261875714992584, + "c7": 25.131073384043873 }, - "vertexSeeds": { - "c1": 8.104452267340651, - "c2": 8.126231202517328, - "c3": 8.273186445916778, - "c4": 8.139337688561687, - "c5": 7.648911217311194, - "c6": 7.535782054573551, - "c7": 7.491900530061882 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617202, + "c3": 10.124826629681005, + "c4": 8.099861303744797, + "c5": 6.074895977808601, + "c6": 4.049930651872404, + "c7": 2.024965325936207 }, "rgb": [86, 146, 138] }, @@ -170754,23 +170754,23 @@ "year": 1759, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 1.4864070028311076, - "c2": 15.38855114342132, - "c3": 2.784163547565022, - "c4": -18.185598246336212, - "c5": 23.557592993666244, - "c6": 26.744185980758946, - "c7": 20.77683525894712 + "points": { + "c1": 15.99699904637281, + "c2": 16.174692003956874, + "c3": -21.408282900224577, + "c4": -21.80862672893005, + "c5": -28.043177324684354, + "c6": 25.235183643647932, + "c7": -11.611082431607581 }, - "vertexSeeds": { - "c1": 0.1839731477046448, - "c2": 0.19076306224619283, - "c3": 0.20918224617253112, - "c4": 0.19572661955325582, - "c5": 0.18628084810637058, - "c6": 0.1972933275103898, - "c7": 0.17800068205310832 + "offsets": { + "c1": 0.3883495145631068, + "c2": 0.3328710124826629, + "c3": 0.2773925104022191, + "c4": 0.22191400832177516, + "c5": 0.16643550624133127, + "c6": 0.11095700416088776, + "c7": 0.05547850208044353 }, "rgb": [238, 201, 159] }, @@ -170781,23 +170781,23 @@ "year": 1759, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": 27.06351662496143, - "c2": 47.10223852726279, - "c3": -16.089077197489466, - "c4": 15.05410099591328, - "c5": 3.4053374108230514, - "c6": -20.64764929722915, - "c7": 21.165301525294815 + "points": { + "c1": 0.750073909663179, + "c2": 12.17919700104391, + "c3": 10.57639649516802, + "c4": -11.851657511234016, + "c5": 45.63779709208357, + "c6": -51.32342845247491, + "c7": -40.21214250167169 }, - "vertexSeeds": { - "c1": 7.691490410708119, - "c2": 8.146032902019744, - "c3": 7.522297800575376, - "c4": 7.398775398487528, - "c5": 8.052853728744084, - "c6": 7.5809551651786276, - "c7": 7.517601680768526 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.67822468793342, + "c3": 9.731853906611178, + "c4": 7.785483125288953, + "c5": 5.83911234396671, + "c6": 3.892741562644468, + "c7": 1.946370781322242 }, "rgb": [222, 0, 59] }, @@ -170808,23 +170808,23 @@ "year": 1759, "resistanceReported": false, "duration": 41212800, - "curveSeeds": { - "c1": -12.22939200789422, - "c2": -5.327232308156866, - "c3": -54.36606850524245, - "c4": 45.32275436910785, - "c5": 5.869370437161045, - "c6": -48.871234733648464, - "c7": -48.31209803362618 + "points": { + "c1": -32.756411708797714, + "c2": -42.76415330711221, + "c3": 17.812425853187825, + "c4": -9.889205504340055, + "c5": 43.51541553709725, + "c6": 12.038739369166485, + "c7": 30.62586370057685 }, - "vertexSeeds": { - "c1": 5.163245819292907, - "c2": 5.137164599774147, - "c3": 5.111949839018203, - "c4": 5.291144682172993, - "c5": 5.060116302572174, - "c6": 5.483045653808103, - "c7": 5.182358523026336 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503459, + "c3": 6.611188164586224, + "c4": 5.2889505316689736, + "c5": 3.9667128987517377, + "c6": 2.6444752658344868, + "c7": 1.3222376329172354 }, "rgb": [238, 201, 159] }, @@ -170835,23 +170835,23 @@ "year": 1760, "resistanceReported": false, "duration": 54432000, - "curveSeeds": { - "c1": -61.741701105264504, - "c2": 21.391410905455317, - "c3": -41.15416592067033, - "c4": 2.9174934101607732, - "c5": -2.141773785338856, - "c6": 42.6267351632857, - "c7": -27.255661624094138 + "points": { + "c1": -38.41278451281208, + "c2": -61.81950209500598, + "c3": -68.5049890403421, + "c4": 8.78967492067332, + "c5": 63.25237752030469, + "c6": 45.53922315566113, + "c7": 20.91106935954693 }, - "vertexSeeds": { - "c1": 7.040771927403494, - "c2": 7.036808848593715, - "c3": 7.043699737052314, - "c4": 7.033833654420598, - "c5": 7.049615236129029, - "c6": 7.035666659678522, - "c7": 7.051730699834679 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.09708737864049, + "c3": 8.414239482200742, + "c4": 6.731391585760326, + "c5": 5.04854368932058, + "c6": 3.365695792880163, + "c7": 1.6828478964404163 }, "rgb": [86, 146, 138] }, @@ -170862,23 +170862,23 @@ "year": 1759, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 0.5250804096784627, - "c2": 9.594799944748875, - "c3": 11.648961532343442, - "c4": 11.278983027554965, - "c5": 4.4843654001912086, - "c6": 4.188068793355281, - "c7": -15.843967210803662 + "points": { + "c1": 15.669584489697137, + "c2": 3.7098007157705943, + "c3": 6.8265563245280205, + "c4": 5.403671246924219, + "c5": -4.124191876552299, + "c6": -7.622379675499513, + "c7": 11.613121068271987 }, - "vertexSeeds": { - "c1": 5.064775859952041, - "c2": 3.7018379720041055, - "c3": 4.459049499474966, - "c4": 4.6007864553972135, - "c5": 4.853104542354991, - "c6": 5.1612207468536795, - "c7": 4.149520559498567 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.4895977808599135, + "c3": 6.2413314840499305, + "c4": 4.993065187239944, + "c5": 3.744798890429958, + "c6": 2.496532593619972, + "c7": 1.248266296809986 }, "rgb": [58, 15, 49] }, @@ -170889,23 +170889,23 @@ "year": 1759, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": 12.747730021928177, - "c2": 9.845202250885606, - "c3": 9.59888496769942, - "c4": 27.50564974192929, - "c5": -32.25303584883845, - "c6": -36.09310986369159, - "c7": -42.56989327282675 + "points": { + "c1": -14.869789045787584, + "c2": 24.155674332450573, + "c3": 52.697172527881065, + "c4": -9.980153872431508, + "c5": 0.8073734883746084, + "c6": 51.97801391008349, + "c7": 12.485850055306983 }, - "vertexSeeds": { - "c1": 4.132270893892169, - "c2": 4.027101160325315, - "c3": 4.1797569812591995, - "c4": 4.079857095638442, - "c5": 4.115934700100758, - "c6": 4.016237380122978, - "c7": 3.9615243847257204 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808601, + "c3": 5.062413314840502, + "c4": 4.049930651872403, + "c5": 3.0374479889043045, + "c6": 2.0249653259361975, + "c7": 1.0124826629680987 }, "rgb": [238, 201, 159] }, @@ -170916,23 +170916,23 @@ "year": 1759, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 16.443812705621347, - "c2": 16.578003136778484, - "c3": 31.64797119404534, - "c4": -40.52234930246363, - "c5": -32.28672860325806, - "c6": -15.10235387888147, - "c7": 23.37451064616627 + "points": { + "c1": -24.213703673761103, + "c2": 29.143154805557927, + "c3": -23.28548555556467, + "c4": 14.248814433631914, + "c5": -33.70044559488424, + "c6": -20.6650060391333, + "c7": 36.33264706673842 }, - "vertexSeeds": { - "c1": 5.956698022008231, - "c2": 5.877525944072823, - "c3": 6.299656728497797, - "c4": 6.926516267322987, - "c5": 6.2684753488857705, - "c6": 6.919383071599027, - "c7": 6.766075656578664 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439672, + "c3": 8.298659269533054, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132243, + "c7": 1.6597318539066068 }, "rgb": [222, 0, 59] }, @@ -170943,23 +170943,23 @@ "year": 1759, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -7.598514739184058, - "c2": 14.100291060110429, - "c3": -0.8311954168763087, - "c4": -18.02765481536857, - "c5": 14.157699302149688, - "c6": 9.096147990472733, - "c7": -20.13178855713684 + "points": { + "c1": -6.14764586781877, + "c2": 12.305870027665442, + "c3": 0.6282234476061745, + "c4": -11.75573674203129, + "c5": -3.606252844425743, + "c6": -7.376973516907544, + "c7": -21.966592940881412 }, - "vertexSeeds": { - "c1": 6.425235977415089, - "c2": 6.724018905159699, - "c3": 6.034128519419004, - "c4": 6.204038075152343, - "c5": 6.323057444790871, - "c6": 6.104191052400435, - "c7": 6.243853518397554 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -170970,23 +170970,23 @@ "year": 1759, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -2.534295204582442, - "c2": -2.2977224904402362, - "c3": 22.678974057792217, - "c4": 20.28626320964063, - "c5": 13.58395607025767, - "c6": 3.470919775733485, - "c7": -20.74636306493608 + "points": { + "c1": 12.098577700106858, + "c2": 38.514288104759224, + "c3": -22.356236227210815, + "c4": 30.478619728082627, + "c5": 5.165596579654235, + "c6": -38.11021812584731, + "c7": -36.38873581119469 }, - "vertexSeeds": { - "c1": 5.91852481647228, - "c2": 5.920193272059998, - "c3": 5.878770244424195, - "c4": 5.657972861537089, - "c5": 6.306278913534921, - "c6": 6.2829466633622895, - "c7": 5.836197749143785 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474335, + "c3": 7.743874248728619, + "c4": 6.19509939898289, + "c5": 4.646324549237175, + "c6": 3.097549699491445, + "c7": 1.5487748497457294 }, "rgb": [86, 146, 138] }, @@ -170997,23 +170997,23 @@ "year": 1759, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 10.547257659981803, - "c2": -3.3366345726158784, - "c3": -34.25653324101787, - "c4": -3.0169695015764972, - "c5": -25.07588560101679, - "c6": -1.4928672208990506, - "c7": -13.51555449577134 + "points": { + "c1": -19.21246489976322, + "c2": -21.70442177567139, + "c3": 21.74629374707699, + "c4": -35.50344448480731, + "c5": 25.20551250738174, + "c6": -10.351936545365515, + "c7": -8.785857816052939 }, - "vertexSeeds": { - "c1": 6.240848899727129, - "c2": 6.5626444775274955, - "c3": 6.975897244706129, - "c4": 6.3331121129311745, - "c5": 6.537399676191878, - "c6": 6.612241355689338, - "c7": 6.170972532870536 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600557, + "c3": 8.391123439667133, + "c4": 6.71289875173371, + "c5": 5.034674063800272, + "c6": 3.356449375866848, + "c7": 1.678224687933424 }, "rgb": [77, 76, 132] }, @@ -171024,23 +171024,23 @@ "year": 1759, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -38.221362647893166, - "c2": -25.900686269665837, - "c3": -33.377053343169905, - "c4": 34.55516537239294, - "c5": -19.643425699496696, - "c6": 22.13851764703943, - "c7": -31.508433470220528 + "points": { + "c1": -35.80245091984547, + "c2": 33.234720245993294, + "c3": 23.240447300406025, + "c4": 21.828671289744797, + "c5": -14.814633135623573, + "c6": -4.027490010972961, + "c7": -24.38031428401942 }, - "vertexSeeds": { - "c1": 2.4574172592726566, - "c2": 2.6981223704165664, - "c3": 2.5576991822402544, - "c4": 2.5937468877921366, - "c5": 2.3531148706571736, - "c6": 2.8852897397390302, - "c7": 2.8535821368685905 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.4674063800277417, + "c4": 2.7739251040221906, + "c5": 2.080443828016644, + "c6": 1.3869625520110977, + "c7": 0.6934812760055489 }, "rgb": [77, 76, 132] }, @@ -171051,23 +171051,23 @@ "year": 1759, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -6.043886370255336, - "c2": 19.04996730044688, - "c3": -29.314652549936035, - "c4": 0.7925656365165068, - "c5": 30.4549398213357, - "c6": 20.078259144599592, - "c7": -26.500303634860025 + "points": { + "c1": -12.729738997083384, + "c2": 20.01851642100634, + "c3": -7.675083730665911, + "c4": 16.363468534535315, + "c5": -32.28842110024431, + "c6": 1.440149619212761, + "c7": -13.31470164493129 }, - "vertexSeeds": { - "c1": 7.233391774606794, - "c2": 7.06411399181088, - "c3": 7.235690450962812, - "c4": 7.173484937514685, - "c5": 7.082407789442985, - "c6": 7.22991468852226, - "c7": 7.188604053024592 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938041, + "c4": 7.138233934350428, + "c5": 5.353675450762814, + "c6": 3.5691169671752276, + "c7": 1.7845584835876138 }, "rgb": [58, 15, 49] }, @@ -171078,23 +171078,23 @@ "year": 1759, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -0.8753380161709359, - "c2": -15.611995385065377, - "c3": 28.051791748882664, - "c4": -17.808184823953145, - "c5": 24.2530315486067, - "c6": 16.400265018581635, - "c7": 30.08060704074245 + "points": { + "c1": 35.8529204765517, + "c2": -28.014409317992204, + "c3": 29.55992670473273, + "c4": 19.328881422488315, + "c5": -29.601628083493516, + "c6": -18.713203924188548, + "c7": 10.835252279927296 }, - "vertexSeeds": { - "c1": 8.913825082522875, - "c2": 10.238461854624772, - "c3": 9.406428995778837, - "c4": 8.802809801574247, - "c5": 9.55704485923926, - "c6": 9.969686830579267, - "c7": 9.549793774545293 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081836, + "c3": 12.690707350901516, + "c4": 10.152565880721218, + "c5": 7.614424410540918, + "c6": 5.076282940360609, + "c7": 2.5381414701803093 }, "rgb": [238, 201, 159] }, @@ -171105,23 +171105,23 @@ "year": 1759, "resistanceReported": true, "duration": 19785600, - "curveSeeds": { - "c1": -2.6725191415227414, - "c2": -20.821064536459204, - "c3": -20.972377515536266, - "c4": -6.868255692369996, - "c5": 24.403650228333902, - "c6": 28.09037538543516, - "c7": -6.273862138773524 + "points": { + "c1": 18.026578991768858, + "c2": -15.01834129742554, + "c3": -7.712828750477637, + "c4": -21.929015350399442, + "c5": 14.278077577955472, + "c6": 26.860679276043996, + "c7": -26.606739813267907 }, - "vertexSeeds": { - "c1": 8.246738689540633, - "c2": 8.280253823857821, - "c3": 8.223296959390991, - "c4": 8.25768550196067, - "c5": 8.225455334073265, - "c6": 8.25804321491765, - "c7": 8.237765554965033 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445215036, + "c3": 9.893666204345731, + "c4": 7.914932963476624, + "c5": 5.936199722607518, + "c6": 3.9574664817384106, + "c7": 1.978733240869107 }, "rgb": [222, 0, 59] }, @@ -171132,23 +171132,23 @@ "year": 1759, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": -8.07103763797458, - "c2": 6.439921224171503, - "c3": 15.478190773931058, - "c4": 10.08519099985649, - "c5": -11.776717274075558, - "c6": 14.505873145984264, - "c7": 16.251268432561286 + "points": { + "c1": 0.35289880401337825, + "c2": 14.474568613410437, + "c3": 11.23687654024754, + "c4": 5.930250396389681, + "c5": 9.979696791389017, + "c6": -14.026117122322393, + "c7": 17.449612185573987 }, - "vertexSeeds": { - "c1": 2.316523836854819, - "c2": 2.316065442969617, - "c3": 2.3448807842129904, - "c4": 2.321890454874563, - "c5": 2.315708945448305, - "c6": 2.3143438361112194, - "c7": 2.3272513500662897 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266175, + "c3": 2.773925104022195, + "c4": 2.219140083217745, + "c5": 1.6643550624133225, + "c6": 1.1095700416088725, + "c7": 0.5547850208044225 }, "rgb": [77, 76, 132] }, @@ -171159,23 +171159,23 @@ "year": 1759, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": -3.3746895138463415, - "c2": 1.8213874670429853, - "c3": -12.536993663492403, - "c4": 15.379586865929355, - "c5": 4.450199699133535, - "c6": -14.846736949578752, - "c7": 10.246150451662754 + "points": { + "c1": 3.8672287542425074, + "c2": -10.055298211208301, + "c3": 6.57128190732136, + "c4": 12.354335522101032, + "c5": -16.052703794826908, + "c6": -10.491911298851104, + "c7": 4.28549933001354 }, - "vertexSeeds": { - "c1": 4.1789698947710185, - "c2": 4.406393767470304, - "c3": 4.705380311929499, - "c4": 4.420773546363501, - "c5": 4.2858131763164495, - "c6": 4.3712931247698465, - "c7": 4.645650495622462 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485437, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271816, + "c6": 2.2653721682847876, + "c7": 1.1326860841423938 }, "rgb": [238, 201, 159] }, @@ -171186,23 +171186,23 @@ "year": 1759, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 15.254469932217042, - "c2": 19.67159462366436, - "c3": 21.492813073798736, - "c4": 30.87371386479593, - "c5": -28.587978546308882, - "c6": -11.912152769827255, - "c7": 11.243763138391103 + "points": { + "c1": -12.699663258265002, + "c2": -8.018356893472724, + "c3": -37.704145846433136, + "c4": -37.58577251367652, + "c5": -11.64629766401261, + "c6": -6.658417891411737, + "c7": -35.48018394652972 }, - "vertexSeeds": { - "c1": 5.044494775818683, - "c2": 5.154585501673975, - "c3": 4.9465064569462385, - "c4": 5.266132870887173, - "c5": 4.944711017804638, - "c6": 5.183655192836149, - "c7": 5.3349080214575695 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262135, + "c3": 6.472491909385112, + "c4": 5.177993527508088, + "c5": 3.8834951456310645, + "c6": 2.5889967637540474, + "c7": 1.2944983818770237 }, "rgb": [238, 201, 159] }, @@ -171213,23 +171213,23 @@ "year": 1760, "resistanceReported": false, "duration": 44928000, - "curveSeeds": { - "c1": -32.02019060656877, - "c2": -17.613930099266767, - "c3": -45.06556159922593, - "c4": -35.21638560389789, - "c5": -13.446396621137396, - "c6": 2.3412089293771032, - "c7": -25.388344188091942 + "points": { + "c1": 15.168268038116906, + "c2": 56.031937735070315, + "c3": -61.125655031067964, + "c4": 19.152655041771993, + "c5": 3.4811614165324727, + "c6": -22.905996613948417, + "c7": 36.6706833403161 }, - "vertexSeeds": { - "c1": 4.831656924450534, - "c2": 5.4322130586927635, - "c3": 5.337922820552439, - "c4": 5.010994708595903, - "c5": 4.871788758123054, - "c6": 5.252968949207082, - "c7": 4.946328413427731 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302364, + "c3": 6.495607951918627, + "c4": 5.196486361534906, + "c5": 3.89736477115117, + "c6": 2.598243180767449, + "c7": 1.2991215903837285 }, "rgb": [222, 0, 59] }, @@ -171240,23 +171240,23 @@ "year": 1759, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 31.504259259409665, - "c2": 16.266569488026484, - "c3": 12.21975984561368, - "c4": -33.46074953713748, - "c5": -23.68052473954593, - "c6": -16.208075046046265, - "c7": -30.695482104854353 + "points": { + "c1": 6.961980128152582, + "c2": 12.48380120749944, + "c3": 19.021142981579217, + "c4": 23.572706704079444, + "c5": -23.0188332733913, + "c6": 1.2778802721723537, + "c7": 33.746872871813125 }, - "vertexSeeds": { - "c1": 12.060887751919886, - "c2": 11.690836796577626, - "c3": 11.75500387879659, - "c4": 12.01123823599989, - "c5": 11.712516133371425, - "c6": 12.232592429524582, - "c7": 12.02001566542693 + "offsets": { + "c1": 20.45307443365696, + "c2": 17.53120665742025, + "c3": 14.609338881183541, + "c4": 11.687471104946832, + "c5": 8.765603328710124, + "c6": 5.843735552473416, + "c7": 2.921867776236708 }, "rgb": [86, 146, 138] }, @@ -171267,23 +171267,23 @@ "year": 1759, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -29.762651867578988, - "c2": -3.2751785592218496, - "c3": 41.64427930432369, - "c4": 41.15836815244893, - "c5": 28.96259091062224, - "c6": 9.929869360626881, - "c7": 42.790423696922105 + "points": { + "c1": -21.413985888830684, + "c2": 43.4650015811941, + "c3": 17.038197791362165, + "c4": 24.074114927164374, + "c5": -32.61028864348606, + "c6": -26.80760433118327, + "c7": 4.432750396304627 }, - "vertexSeeds": { - "c1": 5.049803131749823, - "c2": 5.139686645683668, - "c3": 4.689642863362805, - "c4": 4.784858539907656, - "c5": 4.986746727691466, - "c6": 5.014140307250872, - "c7": 5.104093433750126 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773925, + "c3": 6.171983356449373, + "c4": 4.937586685159498, + "c5": 3.703190013869629, + "c6": 2.468793342579753, + "c7": 1.2343966712898764 }, "rgb": [77, 76, 132] }, @@ -171294,23 +171294,23 @@ "year": 1759, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 26.07856099312451, - "c2": -25.282716373395505, - "c3": 2.5154754048293917, - "c4": -25.67284184038129, - "c5": -5.019152978370773, - "c6": -13.04370267546658, - "c7": 14.237094507983517 + "points": { + "c1": -9.352594680265227, + "c2": 30.75096583980026, + "c3": -17.23619756234593, + "c4": 8.764087727943412, + "c5": 22.892033460196842, + "c6": 15.725454447006072, + "c7": -12.578845519827503 }, - "vertexSeeds": { - "c1": 10.105140513409806, - "c2": 10.432498919379942, - "c3": 9.8472149593474, - "c4": 10.056988293696051, - "c5": 9.994258446496023, - "c6": 10.38062113543248, - "c7": 9.696259341403348 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [77, 76, 132] }, @@ -171321,23 +171321,23 @@ "year": 1759, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -26.176926906847903, - "c2": 22.286509912718493, - "c3": -10.496786303357531, - "c4": -31.41752496837967, - "c5": 6.944001879180142, - "c6": -5.676752459618108, - "c7": -6.886657700295139 + "points": { + "c1": 5.256090027030169, + "c2": -15.291232311767228, + "c3": -40.10087003286283, + "c4": -38.236435062430594, + "c5": 22.46816255984603, + "c6": -28.195250883255476, + "c7": -37.60600199712486 }, - "vertexSeeds": { - "c1": 9.231715197126068, - "c2": 7.332894212337182, - "c3": 9.075830186698402, - "c4": 7.855704383421254, - "c5": 8.733645373371173, - "c6": 7.85364665785153, - "c7": 8.551409931682377 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266293, + "c3": 11.07258437355525, + "c4": 8.858067498844198, + "c5": 6.643550624133146, + "c6": 4.429033749422103, + "c7": 2.2145168747110513 }, "rgb": [238, 201, 159] }, @@ -171348,23 +171348,23 @@ "year": 1759, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 30.796765491967577, - "c2": -22.387615613764133, - "c3": 13.141815608625102, - "c4": 10.308781697500272, - "c5": -21.88036442460809, - "c6": -23.186786231959523, - "c7": -27.795882600266683 + "points": { + "c1": -5.980031576818959, + "c2": -11.309830310207449, + "c3": -15.020484486437944, + "c4": 18.594480457320408, + "c5": 16.823722472737835, + "c6": 2.0075000568297128, + "c7": -8.845925637568246 }, - "vertexSeeds": { - "c1": 4.620547374312859, - "c2": 4.699017292430996, - "c3": 4.916976011351985, - "c4": 5.277760493425713, - "c5": 5.1227582116998525, - "c6": 4.7219487644066644, - "c7": 5.462343871159583 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503462, + "c3": 6.611188164586223, + "c4": 5.288950531668974, + "c5": 3.9667128987517364, + "c6": 2.644475265834487, + "c7": 1.3222376329172492 }, "rgb": [58, 15, 49] }, @@ -171375,23 +171375,23 @@ "year": 1759, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 6.1497021688784415, - "c2": 25.45360644068318, - "c3": -16.104978016925003, - "c4": 7.346522942544574, - "c5": -13.799585649212599, - "c6": 8.11702381019633, - "c7": -28.917276975578833 + "points": { + "c1": -30.33810762736185, + "c2": 23.420916862974074, + "c3": 20.542186237300477, + "c4": -1.8120422216685768, + "c5": 19.39405870880558, + "c6": -25.802082353718127, + "c7": 24.691520716583007 }, - "vertexSeeds": { - "c1": 8.506875553590683, - "c2": 10.393545574787343, - "c3": 9.149897486164996, - "c4": 9.931189343932669, - "c5": 9.950781718934119, - "c6": 10.493504697309188, - "c7": 9.26523672464622 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.67267683772538, + "c3": 13.060564031437817, + "c4": 10.448451225150256, + "c5": 7.83633841886269, + "c6": 5.224225612575128, + "c7": 2.612112806287567 }, "rgb": [58, 15, 49] }, @@ -171402,23 +171402,23 @@ "year": 1759, "resistanceReported": false, "duration": 2246400, - "curveSeeds": { - "c1": -0.04120736123542734, - "c2": 1.832873534074718, - "c3": -7.754794346507431, - "c4": -8.335410040455695, - "c5": -10.30500096133533, - "c6": 8.29674039318374, - "c7": 4.293661787604982 + "points": { + "c1": -2.7453906550497837, + "c2": 6.31002328136092, + "c3": 5.77275546371898, + "c4": -2.793051974314146, + "c5": -1.3785429646352387, + "c6": -2.1980895712257364, + "c7": 2.9382948995272464 }, - "vertexSeeds": { - "c1": 4.104621251453118, - "c2": 4.216573740877014, - "c3": 4.1173801500515985, - "c4": 4.146770459572142, - "c5": 3.978023783111218, - "c6": 3.896590706431223, - "c7": 4.199382098918539 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -171429,23 +171429,23 @@ "year": 1759, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 1.5570899308785116, - "c2": -18.06651264480307, - "c3": -15.146117850076353, - "c4": 24.359007738870403, - "c5": 11.085347898936, - "c6": -12.833347110785162, - "c7": 1.2043152558881047 + "points": { + "c1": 21.614397869927693, + "c2": -12.67690769316885, + "c3": -14.575406557766229, + "c4": -17.5413506165985, + "c5": 11.870283895574211, + "c6": -11.090416646467478, + "c7": 24.39300381155512 }, - "vertexSeeds": { - "c1": 3.966504750151564, - "c2": 3.8752766214822283, - "c3": 4.054073980927667, - "c4": 3.891077798339665, - "c5": 4.130738789615295, - "c6": 3.9190910433836397, - "c7": 4.039031630279765 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251039, + "c3": 5.316689782709204, + "c4": 4.253351826167362, + "c5": 3.1900138696255196, + "c6": 2.126675913083677, + "c7": 1.0633379565418422 }, "rgb": [58, 15, 49] }, @@ -171456,23 +171456,23 @@ "year": 1759, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -16.665153416312386, - "c2": 10.544501878406678, - "c3": -22.90846685999638, - "c4": 8.632342650868125, - "c5": -27.274563144709735, - "c6": -30.55782566943712, - "c7": -5.724319059381195 + "points": { + "c1": -30.12968108348739, + "c2": 16.33055462534977, + "c3": 4.912842844323272, + "c4": 17.196608238626702, + "c5": 16.836713757767022, + "c6": -10.623672631818462, + "c7": -13.922115251071492 }, - "vertexSeeds": { - "c1": 1.3413805873031104, - "c2": 1.1742447153484261, - "c3": 1.2494255521382973, - "c4": 1.3730285286611208, - "c5": 1.141996482027627, - "c6": 1.3704640967850579, - "c7": 1.2642960992484533 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959787, + "c3": 1.6643550624133145, + "c4": 1.3314840499306524, + "c5": 0.9986130374479893, + "c6": 0.6657420249653262, + "c7": 0.3328710124826631 }, "rgb": [77, 76, 132] }, @@ -171483,23 +171483,23 @@ "year": 1759, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 27.858417192190146, - "c2": 10.615578126699397, - "c3": 32.05280522785405, - "c4": -35.46080213805441, - "c5": -17.326698578629692, - "c6": 31.638094184537607, - "c7": -7.647230524876569 + "points": { + "c1": 14.735302609019598, + "c2": -39.13980318278929, + "c3": -30.429481824724707, + "c4": 9.596312990582042, + "c5": -33.51645369338109, + "c6": -40.51171810101853, + "c7": -8.43542748701249 }, - "vertexSeeds": { - "c1": 1.96826674781706, - "c2": 1.949876212130233, - "c3": 1.966675164300287, - "c4": 1.8418637397457396, - "c5": 1.9276249956016225, - "c6": 1.7662720675248074, - "c7": 1.979712462479539 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142859, + "c3": 2.3809523809523805, + "c4": 1.9047619047619058, + "c5": 1.4285714285714275, + "c6": 0.9523809523809529, + "c7": 0.4761904761904785 }, "rgb": [222, 0, 59] }, @@ -171510,23 +171510,23 @@ "year": 1759, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 17.31058767165147, - "c2": 22.549643414875604, - "c3": 27.315452833596844, - "c4": 2.155160623630593, - "c5": 30.797824049190687, - "c6": 3.343957928628349, - "c7": -13.2815710485395 + "points": { + "c1": -0.14676744276237486, + "c2": -11.880650430818331, + "c3": -34.862696100480015, + "c4": -10.314346641328058, + "c5": 9.134365571678714, + "c6": -19.965358645082247, + "c7": 31.0899057535606 }, - "vertexSeeds": { - "c1": 14.547700970297958, - "c2": 13.693773913968622, - "c3": 13.886899626927555, - "c4": 15.050718853714162, - "c5": 14.27533596371699, - "c6": 14.723090432888092, - "c7": 14.8120973086431 + "offsets": { + "c1": 25.792880258899675, + "c2": 22.108183079056854, + "c3": 18.423485899214057, + "c4": 14.738788719371236, + "c5": 11.054091539528438, + "c6": 7.369394359685618, + "c7": 3.684697179842819 }, "rgb": [77, 76, 132] }, @@ -171537,23 +171537,23 @@ "year": 1759, "resistanceReported": false, "duration": 1036800, - "curveSeeds": { - "c1": 6.329393523356755, - "c2": -4.337938458221391, - "c3": 1.0554894977805063, - "c4": 8.545541267194197, - "c5": -5.583457906973163, - "c6": -7.661308134097362, - "c7": -0.0022316609455756975 + "points": { + "c1": 6.822217509268258, + "c2": 1.4038175556816768, + "c3": -8.267398493779298, + "c4": 2.2769916007210256, + "c5": -3.308389425775477, + "c6": 7.336577810622524, + "c7": 9.071735810439824 }, - "vertexSeeds": { - "c1": 3.632175119508613, - "c2": 3.624833999719218, - "c3": 3.6247423212262526, - "c4": 3.6009289617248914, - "c5": 3.627782553021579, - "c6": 3.6305847012890906, - "c7": 3.628952138006201 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561744, + "c3": 4.345815996301396, + "c4": 3.476652797041134, + "c5": 2.607489597780872, + "c6": 1.7383263985206103, + "c7": 0.8691631992602619 }, "rgb": [58, 15, 49] }, @@ -171564,23 +171564,23 @@ "year": 1759, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -23.22464463905444, - "c2": -6.025613279790932, - "c3": -22.019035859954247, - "c4": 38.14465369171203, - "c5": -31.77626971094874, - "c6": -13.197907140346189, - "c7": -30.998777939193374 + "points": { + "c1": -19.82696287930596, + "c2": 32.09676811678441, + "c3": 5.550557112473356, + "c4": 14.352930481161351, + "c5": 21.164432137525772, + "c6": -9.72357530672712, + "c7": 18.55197842243639 }, - "vertexSeeds": { - "c1": 5.186105170151458, - "c2": 5.619585805840489, - "c3": 5.493653204427087, - "c4": 5.1226230258199426, - "c5": 5.280097852697831, - "c6": 5.02674368191104, - "c7": 4.881922875713246 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.12760055478502, + "c3": 6.773000462320852, + "c4": 5.418400369856683, + "c5": 4.063800277392513, + "c6": 2.7092001849283447, + "c7": 1.3546000924641755 }, "rgb": [58, 15, 49] }, @@ -171591,23 +171591,23 @@ "year": 1759, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 36.26636320584304, - "c2": -36.70031470658003, - "c3": 10.070676057560739, - "c4": 36.46748098455145, - "c5": -15.195694059002765, - "c6": 22.56734789365644, - "c7": -38.281510198477065 + "points": { + "c1": 3.433473641519356, + "c2": 2.335862296950502, + "c3": 29.280294226289506, + "c4": -34.71456729999787, + "c5": 7.262780915864504, + "c6": 18.555101431666593, + "c7": 8.200990163625143 }, - "vertexSeeds": { - "c1": 8.198614797446165, - "c2": 6.9804235941464805, - "c3": 7.395713261153004, - "c4": 6.964979362668807, - "c5": 6.864515565574551, - "c6": 7.305093282976507, - "c7": 7.567386993085379 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456309, + "c3": 10.03236245954693, + "c4": 8.025889967637541, + "c5": 6.019417475728154, + "c6": 4.012944983818776, + "c7": 2.006472491909388 }, "rgb": [222, 0, 59] }, @@ -171618,23 +171618,23 @@ "year": 1760, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 6.760640300936657, - "c2": 1.3371764396657895, - "c3": 13.555340178409736, - "c4": -45.23045129354183, - "c5": -7.939988203104271, - "c6": -42.36702846225825, - "c7": 35.80562795491079 + "points": { + "c1": -15.997910073118206, + "c2": -14.563027507828004, + "c3": -11.448937481014305, + "c4": -15.745965125191319, + "c5": -23.442111615793845, + "c6": -6.114762477347739, + "c7": -18.24983635124867 }, - "vertexSeeds": { - "c1": 4.097249118223246, - "c2": 4.194863432326332, - "c3": 4.277536866898052, - "c4": 4.162421961134245, - "c5": 4.076818256359006, - "c6": 3.936042151724285, - "c7": 3.9231222054551504 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130374, + "c3": 5.247341655108645, + "c4": 4.197873324086916, + "c5": 3.148404993065187, + "c6": 2.098936662043458, + "c7": 1.049468331021729 }, "rgb": [222, 0, 59] }, @@ -171645,23 +171645,23 @@ "year": 1760, "resistanceReported": false, "duration": 44409600, - "curveSeeds": { - "c1": -47.69755739667874, - "c2": -11.779526642750795, - "c3": -39.49477819589253, - "c4": -54.24603094719395, - "c5": -1.9368144714504396, - "c6": -34.55920739079166, - "c7": 22.552175088207 + "points": { + "c1": 47.6294134969578, + "c2": 57.55260662824312, + "c3": 17.930757934112968, + "c4": 53.57937768173742, + "c5": -54.82663232164995, + "c6": -5.5855242093139665, + "c7": 2.9397391126501162 }, - "vertexSeeds": { - "c1": 7.752176427080711, - "c2": 7.4985393113958, - "c3": 8.354282878825407, - "c4": 8.425592501297, - "c5": 7.697751691569297, - "c6": 7.3478746082854, - "c7": 7.928308544382234 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617195, + "c3": 10.124826629680992, + "c4": 8.099861303744802, + "c5": 6.074895977808597, + "c6": 4.049930651872394, + "c7": 2.02496532593619 }, "rgb": [77, 76, 132] }, @@ -171672,23 +171672,23 @@ "year": 1760, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -25.85461218774998, - "c2": -31.50820466342016, - "c3": 27.795206031154905, - "c4": -5.142387210511544, - "c5": -38.006709518663236, - "c6": -0.9963701438660664, - "c7": -4.084982585311749 + "points": { + "c1": 23.47983683511808, + "c2": -46.2687786276894, + "c3": 43.798827371042904, + "c4": 17.62176352955646, + "c5": -17.95292974902204, + "c6": 28.359485132138033, + "c7": -12.73353806252397 }, - "vertexSeeds": { - "c1": 7.742650097550353, - "c2": 7.155303186277469, - "c3": 7.46778773498429, - "c4": 6.9866195618652815, - "c5": 7.316707510409206, - "c6": 7.249643051774648, - "c7": 7.372631043937471 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407298, + "c4": 7.397133610725835, + "c5": 5.54785020804439, + "c6": 3.698566805362927, + "c7": 1.8492834026814635 }, "rgb": [77, 76, 132] }, @@ -171699,23 +171699,23 @@ "year": 1760, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -36.959162085259784, - "c2": 5.113441058674269, - "c3": 8.24861745773299, - "c4": 30.97357021522305, - "c5": -5.669000719070091, - "c6": 6.463884228119767, - "c7": 15.587423756848146 + "points": { + "c1": -15.492331374979642, + "c2": -41.81640468682333, + "c3": 18.173915997530784, + "c4": 45.47332702570331, + "c5": 18.01141929445555, + "c6": 39.99550585369589, + "c7": -22.251789161883543 }, - "vertexSeeds": { - "c1": 4.3921641245407015, - "c2": 4.328443746978219, - "c3": 4.172383119932012, - "c4": 4.4787666252773795, - "c5": 4.223569740001525, - "c6": 4.457368771951006, - "c7": 4.7881724947450035 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -171726,23 +171726,23 @@ "year": 1759, "resistanceReported": false, "duration": 5443200, - "curveSeeds": { - "c1": 3.583097649263241, - "c2": -7.076762021228948, - "c3": -2.3481559669333905, - "c4": -12.90587200862102, - "c5": -10.420349434720801, - "c6": -14.694694816131491, - "c7": 13.640346553386777 + "points": { + "c1": -16.370535525365057, + "c2": 3.395042157124834, + "c3": 0.9960472838438434, + "c4": -10.964943410395563, + "c5": -12.41830223279193, + "c6": -17.323850428445436, + "c7": -13.578123890581299 }, - "vertexSeeds": { - "c1": 3.7189097141840364, - "c2": 3.9352509679361694, - "c3": 3.7997788287111027, - "c4": 3.9438886301248566, - "c5": 4.050836273732927, - "c6": 3.8810856329762293, - "c7": 3.68797321568658 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374015, + "c4": 4.068423485899212, + "c5": 3.0513176144244065, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [238, 201, 159] }, @@ -171753,23 +171753,23 @@ "year": 1759, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": -9.646259278182558, - "c2": -8.45050689245059, - "c3": -13.204866558413691, - "c4": 0.22023269183240046, - "c5": -8.648068079161984, - "c6": -3.8597720748696585, - "c7": -6.44207213048186 + "points": { + "c1": 3.644401362598675, + "c2": 8.89948486367636, + "c3": -19.576547487007154, + "c4": 8.587977371466042, + "c5": 14.901819047524139, + "c6": -5.421485853619787, + "c7": 14.687513926014322 }, - "vertexSeeds": { - "c1": 5.851414490901055, - "c2": 5.893448131188284, - "c3": 6.257177376924541, - "c4": 5.931509169759931, - "c5": 6.494662118808519, - "c6": 6.555951435668279, - "c7": 6.411632310362868 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635234, + "c3": 7.836338418862685, + "c4": 6.269070735090151, + "c5": 4.701803051317617, + "c6": 3.134535367545082, + "c7": 1.5672676837725343 }, "rgb": [58, 15, 49] }, @@ -171780,23 +171780,23 @@ "year": 1759, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -1.0283276051786459, - "c2": -19.23925961297113, - "c3": 23.568725537585813, - "c4": 11.176508873026911, - "c5": 0.631236677177192, - "c6": 30.920480233079637, - "c7": 27.877442895985247 + "points": { + "c1": -28.230998453986313, + "c2": 36.41031999073024, + "c3": -27.951121258395734, + "c4": -16.964554124645804, + "c5": -15.609831094818936, + "c6": -22.19335006158761, + "c7": 20.642370770057134 }, - "vertexSeeds": { - "c1": 0.9700782103948207, - "c2": 1.0538617193527209, - "c3": 1.0414051393687418, - "c4": 1.0212766242985658, - "c5": 1.055574936273914, - "c6": 0.985876575340658, - "c7": 1.011655285158444 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.5533980582524276, + "c3": 1.2944983818770217, + "c4": 1.0355987055016178, + "c5": 0.7766990291262138, + "c6": 0.5177993527508099, + "c7": 0.2588996763754039 }, "rgb": [58, 15, 49] }, @@ -171807,23 +171807,23 @@ "year": 1759, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 19.339658782817814, - "c2": 29.707967644324683, - "c3": 11.877212677662548, - "c4": -4.369342917873354, - "c5": 16.38791969104033, - "c6": -16.7410481424472, - "c7": -16.807653971775697 + "points": { + "c1": 4.272313805483925, + "c2": 14.352178772890433, + "c3": 21.512574043102283, + "c4": -5.691202737013626, + "c5": -15.5452872986112, + "c6": 1.0833227192715142, + "c7": -27.839131485610782 }, - "vertexSeeds": { - "c1": 0.6203386718449772, - "c2": 0.7369482862116021, - "c3": 0.7312921907878831, - "c4": 0.7299428676334694, - "c5": 0.7318756530941397, - "c6": 0.6598467585634188, - "c7": 0.6976385350426905 + "offsets": { + "c1": 1.262135922330097, + "c2": 1.0818307905686542, + "c3": 0.9015256588072122, + "c4": 0.7212205270457693, + "c5": 0.5409153952843276, + "c6": 0.36061026352288467, + "c7": 0.18030513176144167 }, "rgb": [58, 15, 49] }, @@ -171834,23 +171834,23 @@ "year": 1760, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": 49.196961018064705, - "c2": 44.16891705456403, - "c3": -45.01460882945666, - "c4": 30.059355873704128, - "c5": 46.13286419314766, - "c6": -40.90641759637991, - "c7": 55.95911701321851 + "points": { + "c1": -28.60854557458846, + "c2": -13.583292929686387, + "c3": -27.686346432763166, + "c4": 1.627015850204529, + "c5": -21.381032642298948, + "c6": -33.32888967020255, + "c7": 38.34446088657575 }, - "vertexSeeds": { - "c1": 1.9819530917886967, - "c2": 2.161914532190289, - "c3": 2.2376130382335826, - "c4": 2.239578950415174, - "c5": 2.2478181368265275, - "c6": 2.0738963885510824, - "c7": 2.0110808006239718 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705964, + "c3": 2.7045769764216367, + "c4": 2.163661581137309, + "c5": 1.622746185852982, + "c6": 1.0818307905686546, + "c7": 0.5409153952843273 }, "rgb": [86, 146, 138] }, @@ -171861,23 +171861,23 @@ "year": 1760, "resistanceReported": false, "duration": 46915200, - "curveSeeds": { - "c1": -55.22105535648812, - "c2": 20.97724424668096, - "c3": 60.343349694230774, - "c4": 38.06303670630481, - "c5": -13.17247315267337, - "c6": -40.03545285642074, - "c7": 22.58551192051774 + "points": { + "c1": -3.53621223139686, + "c2": 61.50225612877346, + "c3": -42.017132939138165, + "c4": 16.831154960666346, + "c5": 39.85701096623011, + "c6": 7.995203160315761, + "c7": -54.668481708207544 }, - "vertexSeeds": { - "c1": 1.4633015184203788, - "c2": 1.3825862902128334, - "c3": 1.207942542683824, - "c4": 1.3279854137289202, - "c5": 1.2070514702590414, - "c6": 1.360802969075097, - "c7": 1.381732161290011 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.163661581137309, + "c3": 1.8030513176144245, + "c4": 1.4424410540915398, + "c5": 1.0818307905686553, + "c6": 0.7212205270457704, + "c7": 0.3606102635228859 }, "rgb": [222, 0, 59] }, @@ -171888,23 +171888,23 @@ "year": 1759, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -8.297393578969487, - "c2": 3.2970142411063215, - "c3": -17.238849317391725, - "c4": 24.450079409483884, - "c5": 2.651667342538776, - "c6": 2.665882371626971, - "c7": -7.117345581186317 + "points": { + "c1": -4.727997028221935, + "c2": 23.2155196728774, + "c3": 25.417484948619816, + "c4": 26.484547805982658, + "c5": -12.376827340570472, + "c6": -11.910577146484396, + "c7": 10.907061832588468 }, - "vertexSeeds": { - "c1": 3.7969585372336403, - "c2": 3.8357454502239947, - "c3": 3.7749557024430005, - "c4": 3.791625396298029, - "c5": 3.6793898719616576, - "c6": 3.863783410955679, - "c7": 3.6962214942137863 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.54785020804439, + "c3": 4.623208506703649, + "c4": 3.698566805362927, + "c5": 2.773925104022186, + "c6": 1.8492834026814635, + "c7": 0.9246417013407224 }, "rgb": [222, 0, 59] }, @@ -171915,23 +171915,23 @@ "year": 1760, "resistanceReported": false, "duration": 47520000, - "curveSeeds": { - "c1": 10.936871718989678, - "c2": -28.01658446944227, - "c3": -12.042172561087725, - "c4": -1.683643412419336, - "c5": 14.38759931431008, - "c6": -30.917468182654062, - "c7": 12.270237225105447 + "points": { + "c1": -2.0252520539793792, + "c2": 24.223320523264718, + "c3": 42.60285019546882, + "c4": 6.862804364684351, + "c5": 49.33724419337506, + "c6": -26.969764701980736, + "c7": -59.79423171595224 }, - "vertexSeeds": { - "c1": 6.726195160865904, - "c2": 7.648494843033989, - "c3": 7.216061297619658, - "c4": 6.467476145992522, - "c5": 7.223524407340144, - "c6": 6.711941020544461, - "c7": 7.036244508093371 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169215, + "c3": 9.292649098474339, + "c4": 7.434119278779471, + "c5": 5.575589459084608, + "c6": 3.7170596393897415, + "c7": 1.8585298196948654 }, "rgb": [222, 0, 59] }, @@ -171942,23 +171942,23 @@ "year": 1759, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -18.489680279114932, - "c2": 7.940576866299917, - "c3": 10.840504941276588, - "c4": 19.435001348218325, - "c5": 3.7095352627109257, - "c6": 6.469000863098163, - "c7": -23.955205927282446 + "points": { + "c1": -7.668728758125287, + "c2": 13.285354842352426, + "c3": -5.25698171645973, + "c4": -19.76894387889073, + "c5": 10.74993280158153, + "c6": 0.6718132146161793, + "c7": -17.760394992289335 }, - "vertexSeeds": { - "c1": 2.539194551671614, - "c2": 2.9318172871484744, - "c3": 2.823400655579838, - "c4": 2.557444850331049, - "c5": 2.5917891714258627, - "c6": 2.8632328556745428, - "c7": 2.951540123538139 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234396, + "c3": 3.5829865926953275, + "c4": 2.8663892741562655, + "c5": 2.149791955617198, + "c6": 1.4331946370781299, + "c7": 0.7165973185390677 }, "rgb": [58, 15, 49] }, @@ -171969,23 +171969,23 @@ "year": 1760, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": 32.269381905570484, - "c2": 18.668763919963922, - "c3": -55.50707250879423, - "c4": -17.555779551633975, - "c5": 34.65610022533478, - "c6": 43.14379344897654, - "c7": 34.5717508779815 + "points": { + "c1": 45.621358020974, + "c2": -48.983865799258794, + "c3": -32.4194415626165, + "c4": 16.15859487623824, + "c5": -31.26580726209918, + "c6": -18.840347776275124, + "c7": -18.379630996008054 }, - "vertexSeeds": { - "c1": 3.30559298040539, - "c2": 3.4917929761477984, - "c3": 2.0209500137475516, - "c4": 3.6608038894163752, - "c5": 1.8332536628563436, - "c6": 2.9033957645603268, - "c7": 2.9369108830152375 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642163, + "c3": 4.39204808136847, + "c4": 3.513638465094776, + "c5": 2.6352288488210824, + "c6": 1.756819232547388, + "c7": 0.878409616273694 }, "rgb": [58, 15, 49] }, @@ -171996,23 +171996,23 @@ "year": 1759, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -29.056919894352063, - "c2": -35.81474707068384, - "c3": 10.82117923284811, - "c4": -39.054300063689574, - "c5": 32.30470633911543, - "c6": -2.0857562457667456, - "c7": -31.50482828104694 + "points": { + "c1": 38.11910997596195, + "c2": 37.01351388260866, + "c3": -0.4158663100642883, + "c4": 36.28093693942752, + "c5": 1.760465972321036, + "c6": -23.893046064263615, + "c7": -0.893715826672377 }, - "vertexSeeds": { - "c1": 5.288564519977505, - "c2": 4.951195215917327, - "c3": 5.648315778911984, - "c4": 5.10672888721565, - "c5": 5.311461442748833, - "c6": 5.012113081997734, - "c7": 5.048952708550066 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872406, + "c6": 2.6999537679149372, + "c7": 1.3499768839574686 }, "rgb": [86, 146, 138] }, @@ -172023,23 +172023,23 @@ "year": 1759, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -16.956660745776194, - "c2": 17.309033061058994, - "c3": -3.3499717117127084, - "c4": 11.437569850464588, - "c5": -14.203350767952992, - "c6": -10.894803801894398, - "c7": 6.269936816209988 + "points": { + "c1": 11.628893816331438, + "c2": -22.071739837377365, + "c3": -28.164168685785757, + "c4": -4.180080280586068, + "c5": 0.39304498617183015, + "c6": -30.490576722302205, + "c7": -27.295693432104095 }, - "vertexSeeds": { - "c1": 2.5958017869969328, - "c2": 2.5755876371730158, - "c3": 2.5174106030959034, - "c4": 2.5693182476557928, - "c5": 2.6642358004127784, - "c6": 2.5576195970628577, - "c7": 2.6636694718568217 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631074, + "c3": 3.236245954692555, + "c4": 2.588996763754049, + "c5": 1.9417475728155305, + "c6": 1.2944983818770246, + "c7": 0.6472491909385187 }, "rgb": [77, 76, 132] }, @@ -172050,23 +172050,23 @@ "year": 1760, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 9.4650173023296, - "c2": 32.81899188117419, - "c3": -22.353774261862267, - "c4": -17.39848536572759, - "c5": 9.179435371566136, - "c6": 34.08407136625822, - "c7": -18.844073069961564 + "points": { + "c1": -40.24693325784119, + "c2": -16.020072841572304, + "c3": -12.704398845233214, + "c4": 17.759676414244318, + "c5": -36.24930915527821, + "c6": 16.031873646425808, + "c7": 38.28236296865828 }, - "vertexSeeds": { - "c1": 10.607100168815904, - "c2": 10.587936671542101, - "c3": 10.52797978635402, - "c4": 12.05181988226239, - "c5": 10.592469176423474, - "c6": 12.059943734891078, - "c7": 10.86535694911872 + "offsets": { + "c1": 20.45307443365696, + "c2": 17.531206657420245, + "c3": 14.609338881183534, + "c4": 11.687471104946844, + "c5": 8.765603328710133, + "c6": 5.843735552473422, + "c7": 2.921867776236711 }, "rgb": [58, 15, 49] }, @@ -172077,23 +172077,23 @@ "year": 1759, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 23.86291328333141, - "c2": -16.700244235185444, - "c3": -30.239857597122736, - "c4": -14.076289140739537, - "c5": 28.6864298322567, - "c6": -13.603232120656827, - "c7": -19.329431948949185 + "points": { + "c1": 23.723726983323104, + "c2": -10.685544739740571, + "c3": 24.25381985815816, + "c4": -19.619823325022033, + "c5": -20.387384706701564, + "c6": -12.344969147458084, + "c7": -32.35680480099656 }, - "vertexSeeds": { - "c1": 0.9410850033219996, - "c2": 0.9427442236695268, - "c3": 0.9223169426918699, - "c4": 0.9325998567233893, - "c5": 0.8766041099625819, - "c6": 0.9068877477096425, - "c7": 0.9488378095938136 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.3869625520110964, + "c3": 1.1558021266759118, + "c4": 0.92464170134073, + "c5": 0.6934812760055482, + "c6": 0.46232085067036643, + "c7": 0.23116042533518177 }, "rgb": [58, 15, 49] }, @@ -172104,23 +172104,23 @@ "year": 1759, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 21.921635491757947, - "c2": 28.213457687406404, - "c3": -10.569114238322708, - "c4": 24.58817819223607, - "c5": 10.044342329791085, - "c6": -7.48604532768508, - "c7": -27.681951791386908 + "points": { + "c1": -15.9665701196171, + "c2": 6.069644796870733, + "c3": -5.3683377710643185, + "c4": -23.89424969303372, + "c5": -11.380672888492253, + "c6": 31.736951618177123, + "c7": 23.270370148691335 }, - "vertexSeeds": { - "c1": 2.121286749221807, - "c2": 2.0017343768166653, - "c3": 2.0797393205277874, - "c4": 2.19052901909619, - "c5": 1.9389560243148383, - "c6": 1.985707739969218, - "c7": 1.9861873445806026 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705966, + "c3": 2.704576976421637, + "c4": 2.1636615811373083, + "c5": 1.622746185852983, + "c6": 1.0818307905686573, + "c7": 0.5409153952843286 }, "rgb": [222, 0, 59] }, @@ -172131,23 +172131,23 @@ "year": 1759, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -11.638073482808458, - "c2": 1.0040822766576945, - "c3": 19.786384920802707, - "c4": 0.036081791444157574, - "c5": 14.778768520626546, - "c6": -26.469787302033613, - "c7": -20.938707101377346 + "points": { + "c1": 24.33566870329213, + "c2": 31.2672008990761, + "c3": -7.0125593444232095, + "c4": -21.25564921476557, + "c5": 30.536195554857933, + "c6": -7.634113179134648, + "c7": -2.6042982254601874 }, - "vertexSeeds": { - "c1": 6.222789350960518, - "c2": 6.230718796655151, - "c3": 6.283029788743215, - "c4": 6.203322802759635, - "c5": 6.207549103242743, - "c6": 6.219642303363491, - "c7": 6.2239338981504355 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072104, + "c3": 7.5127138233934, + "c4": 6.010171058714696, + "c5": 4.507628294036111, + "c6": 3.005085529357408, + "c7": 1.502542764678704 }, "rgb": [58, 15, 49] }, @@ -172158,23 +172158,23 @@ "year": 1759, "resistanceReported": true, "duration": 16588800, - "curveSeeds": { - "c1": -16.316047476749667, - "c2": -23.601269183903064, - "c3": 5.54517586357872, - "c4": -12.820567982176252, - "c5": -18.40435572275272, - "c6": -28.007981289298115, - "c7": -15.360301984826059 + "points": { + "c1": -27.134136348977666, + "c2": -11.991102966824219, + "c3": -24.63545009042125, + "c4": -25.36997921250105, + "c5": -25.518487886318603, + "c6": 9.123327145611569, + "c7": -27.18295577143195 }, - "vertexSeeds": { - "c1": 3.513293761969982, - "c2": 3.939530574104486, - "c3": 3.550420735833362, - "c4": 3.489416754957195, - "c5": 3.94624536052456, - "c6": 3.764906638691197, - "c7": 3.5692855213807673 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239943, + "c3": 4.16088765603329, + "c4": 3.328710124826631, + "c5": 2.4965325936199716, + "c6": 1.6643550624133185, + "c7": 0.8321775312066593 }, "rgb": [222, 0, 59] }, @@ -172185,23 +172185,23 @@ "year": 1759, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 26.764211831769185, - "c2": 2.6497809027778167, - "c3": 5.405303418555906, - "c4": -15.546433687585658, - "c5": 7.854446136358344, - "c6": -17.860133635199965, - "c7": 0.7053774087170517 + "points": { + "c1": 4.954316778124419, + "c2": -2.020669823754428, + "c3": 13.744696299959084, + "c4": 14.104989009042857, + "c5": 0.7424705396441027, + "c6": -29.23361679960796, + "c7": -6.939501566157638 }, - "vertexSeeds": { - "c1": 4.294220730127774, - "c2": 4.359594587689507, - "c3": 4.753801378211517, - "c4": 4.266664129205486, - "c5": 4.2378181241654715, - "c6": 4.426687019103833, - "c7": 4.201448578709599 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.8793342579750325, + "c3": 5.73277854831253, + "c4": 4.586222838650022, + "c5": 3.4396671289875194, + "c6": 2.293111419325011, + "c7": 1.1465557096625085 }, "rgb": [58, 15, 49] }, @@ -172212,23 +172212,23 @@ "year": 1759, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -21.981830865586083, - "c2": -9.508654907550333, - "c3": 25.278573596308963, - "c4": -21.343277230140274, - "c5": 11.095002465738094, - "c6": 6.652216553824534, - "c7": 8.725736485067262 + "points": { + "c1": -15.858453749886593, + "c2": 19.239710036466434, + "c3": 31.26692607445844, + "c4": -5.196647893500582, + "c5": 20.50756368495024, + "c6": -12.204066483064945, + "c7": -3.2171461572924613 }, - "vertexSeeds": { - "c1": 6.50155689194589, - "c2": 6.53963689410731, - "c3": 6.418564963465023, - "c4": 6.472323998263423, - "c5": 6.441233366627445, - "c6": 6.519417681307088, - "c7": 6.464248669459735 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -172239,23 +172239,23 @@ "year": 1759, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 14.04625825785821, - "c2": -7.045983350870554, - "c3": -13.702056518213947, - "c4": -7.749629367720374, - "c5": 6.83673326832788, - "c6": -15.489720524479358, - "c7": 7.423223179489835 + "points": { + "c1": 4.98202426494495, + "c2": 3.857166961935345, + "c3": -28.19374656527348, + "c4": 22.294785082696766, + "c5": 12.138953858115205, + "c6": -17.06985544786586, + "c7": -14.14492412946925 }, - "vertexSeeds": { - "c1": 4.66369273239102, - "c2": 4.602752442871745, - "c3": 4.515750363887849, - "c4": 4.644747736701447, - "c5": 4.63472060123108, - "c6": 4.550107812544375, - "c7": 4.588427302398594 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733711, + "c3": 5.594082293111409, + "c4": 4.475265834489131, + "c5": 3.3564493758668554, + "c6": 2.2376329172445786, + "c7": 1.1188164586222769 }, "rgb": [86, 146, 138] }, @@ -172266,23 +172266,23 @@ "year": 1760, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 33.98469696564864, - "c2": 2.5772593611209587, - "c3": -2.1760591968465164, - "c4": 36.97177535558528, - "c5": -10.763333596848277, - "c6": -12.430940860040675, - "c7": 25.564392424804225 + "points": { + "c1": 36.970087613822926, + "c2": -36.149557392624715, + "c3": -34.919895934681335, + "c4": -8.987462031858037, + "c5": -25.26046564479352, + "c6": 2.5998510397356824, + "c7": -16.82531887184783 }, - "vertexSeeds": { - "c1": 0.8640100812313675, - "c2": 0.8080338732442083, - "c3": 0.8373045068725717, - "c4": 0.8047034185472816, - "c5": 0.854641397173187, - "c6": 0.8382682140495709, - "c7": 0.8560449422022037 + "offsets": { + "c1": 1.4886731391585761, + "c2": 1.276005547850208, + "c3": 1.0633379565418395, + "c4": 0.8506703652334734, + "c5": 0.638002773925105, + "c6": 0.4253351826167367, + "c7": 0.21266759130836835 }, "rgb": [238, 201, 159] }, @@ -172293,23 +172293,23 @@ "year": 1759, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 20.731669481309027, - "c2": -21.9924459625609, - "c3": 3.5177971947578683, - "c4": -29.73620733591937, - "c5": -29.796923187954356, - "c6": -6.196751574659803, - "c7": 10.471312967164977 + "points": { + "c1": -28.322417245038068, + "c2": -10.55992328450462, + "c3": -0.32563563245330585, + "c4": 24.190043024637347, + "c5": 0.8423364978956158, + "c6": -16.826918788470675, + "c7": 9.229621895718694 }, - "vertexSeeds": { - "c1": 0.4316233378106091, - "c2": 0.45538294482166947, - "c3": 0.4344736271744556, - "c4": 0.4616818440611738, - "c5": 0.40088663118408957, - "c6": 0.43624253717395445, - "c7": 0.44029094815099007 + "offsets": { + "c1": 0.8090614886731391, + "c2": 0.6934812760055475, + "c3": 0.5779010633379565, + "c4": 0.462320850670365, + "c5": 0.3467406380027741, + "c6": 0.2311604253351825, + "c7": 0.11558021266759161 }, "rgb": [86, 146, 138] }, @@ -172320,23 +172320,23 @@ "year": 1760, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": -33.803020643354316, - "c2": 33.550895503276024, - "c3": -1.6544289308081375, - "c4": 55.77583573701348, - "c5": -7.4385996538620915, - "c6": 36.357267473860716, - "c7": -11.17170549492662 + "points": { + "c1": -46.2828920387401, + "c2": 35.59323277615924, + "c3": -50.21802360356936, + "c4": 25.93219447314786, + "c5": 44.255468918614085, + "c6": 56.94273881119075, + "c7": -34.63774896882817 }, - "vertexSeeds": { - "c1": 5.9879578121201655, - "c2": 6.663237518759294, - "c3": 6.59329619618962, - "c4": 6.316129167807995, - "c5": 6.671880769049727, - "c6": 6.066667988435578, - "c7": 6.109927825964611 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037442, + "c3": 8.067498844197877, + "c4": 6.453999075358295, + "c5": 4.840499306518729, + "c6": 3.2269995376791476, + "c7": 1.6134997688395656 }, "rgb": [77, 76, 132] }, @@ -172347,23 +172347,23 @@ "year": 1760, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 6.084813973028666, - "c2": 18.768285600570664, - "c3": 19.341899623380968, - "c4": -36.00436347782585, - "c5": 14.88502254199603, - "c6": -13.546081904579065, - "c7": 27.826231441492183 + "points": { + "c1": -10.22369071838256, + "c2": 22.10807992986785, + "c3": 20.773361679925024, + "c4": -26.858757570645825, + "c5": -18.778817172241297, + "c6": 27.535457051881465, + "c7": -35.70154020883446 }, - "vertexSeeds": { - "c1": 7.454773622385242, - "c2": 7.565076124708286, - "c3": 7.171598975025192, - "c4": 7.161996114507251, - "c5": 7.198146040006686, - "c6": 7.3542325659138985, - "c7": 7.032468429259068 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766987, + "c3": 9.061488673139152, + "c4": 7.249190938511319, + "c5": 5.436893203883502, + "c6": 3.624595469255668, + "c7": 1.812297734627834 }, "rgb": [77, 76, 132] }, @@ -172374,23 +172374,23 @@ "year": 1759, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -6.849319611832694, - "c2": 6.065086884660978, - "c3": -27.088790303467626, - "c4": -3.0078282531029856, - "c5": -32.74551810609209, - "c6": 1.1073124038803712, - "c7": 22.97822962192602 + "points": { + "c1": 11.595246610578549, + "c2": -1.7116533960260867, + "c3": -31.327217748366202, + "c4": -24.602325968675807, + "c5": 28.22629982292159, + "c6": 19.51749776002523, + "c7": -29.437929651938134 }, - "vertexSeeds": { - "c1": 6.172549377217862, - "c2": 6.162986915626604, - "c3": 6.172522096905288, - "c4": 6.188322067624177, - "c5": 6.170766688546179, - "c6": 6.179961666164693, - "c7": 6.183417865590807 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871057, + "c3": 7.397133610725929, + "c4": 5.917706888580802, + "c5": 4.438280166435381, + "c6": 2.958853444290254, + "c7": 1.479426722145127 }, "rgb": [238, 201, 159] }, @@ -172401,23 +172401,23 @@ "year": 1760, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -8.138937512488518, - "c2": 40.24900300405929, - "c3": -41.7514879757567, - "c4": -41.706209721584145, - "c5": 33.43853647386598, - "c6": 10.226347611172855, - "c7": -13.930361365176143 + "points": { + "c1": 22.62984276513221, + "c2": -0.3317341611616911, + "c3": -18.40457910105467, + "c4": -35.07982601097631, + "c5": 34.13204629149949, + "c6": -42.38432495683088, + "c7": -36.82844804929783 }, - "vertexSeeds": { - "c1": 5.829117820065584, - "c2": 6.7025049056562676, - "c3": 6.110095890176853, - "c4": 6.580047152999745, - "c5": 6.546611893776326, - "c6": 5.876703342412901, - "c7": 6.434790353200741 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [238, 201, 159] }, @@ -172428,23 +172428,23 @@ "year": 1760, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 8.178044132003407, - "c2": -4.59413430780053, - "c3": -37.1917141120617, - "c4": 41.285557709272624, - "c5": 26.957748027682953, - "c6": 26.008756070160388, - "c7": 19.148226260288055 + "points": { + "c1": 17.04212139040588, + "c2": -44.84899813963974, + "c3": -23.60660011094986, + "c4": 17.66432326802672, + "c5": -43.87353272709961, + "c6": 13.716804119915459, + "c7": 43.285911746634 }, - "vertexSeeds": { - "c1": 6.760025281682896, - "c2": 6.572623592644858, - "c3": 6.625516485464404, - "c4": 6.433066696511808, - "c5": 6.411696031626792, - "c6": 6.574079177770211, - "c7": 6.697697478557494 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077674, + "c3": 8.0906148867314, + "c4": 6.472491909385126, + "c5": 4.8543689320388514, + "c6": 3.2362459546925493, + "c7": 1.6181229773462746 }, "rgb": [86, 146, 138] }, @@ -172455,23 +172455,23 @@ "year": 1760, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -32.42671492745755, - "c2": 15.744744509209248, - "c3": -29.4136758748172, - "c4": -32.19503258558541, - "c5": 17.16765154234413, - "c6": -6.454765550146316, - "c7": -6.459774111158815 + "points": { + "c1": -12.426251272582963, + "c2": -23.193630831452438, + "c3": -38.432468329923715, + "c4": 10.812976095401432, + "c5": -3.6337531083463617, + "c6": -4.634219967812861, + "c7": -4.128694179043606 }, - "vertexSeeds": { - "c1": 2.37553868714705, - "c2": 2.44194224746309, - "c3": 2.483621456113648, - "c4": 2.3415663349355142, - "c5": 2.164144766027054, - "c6": 2.2470784954524694, - "c7": 2.4809559742290683 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429958, + "c3": 3.1206657420249653, + "c4": 2.496532593619972, + "c5": 1.872399445214979, + "c6": 1.248266296809986, + "c7": 0.624133148404993 }, "rgb": [58, 15, 49] }, @@ -172482,23 +172482,23 @@ "year": 1759, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -7.304134095705319, - "c2": -24.865833117269645, - "c3": -10.851703814431783, - "c4": 23.065596239633884, - "c5": -0.09397159700838742, - "c6": 15.983283415066467, - "c7": -1.262275429560006 + "points": { + "c1": 17.63724892353622, + "c2": -4.555165921657132, + "c3": 19.272559300373736, + "c4": -11.921033817740952, + "c5": -29.80721193721608, + "c6": -28.429542578308066, + "c7": 6.7531740678435455 }, - "vertexSeeds": { - "c1": 8.114488340851064, - "c2": 7.946223259474611, - "c3": 9.422682908168184, - "c4": 8.284853485590265, - "c5": 9.03938733630944, - "c6": 8.41038061440458, - "c7": 8.042085407069267 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748963, + "c3": 11.349976883957462, + "c4": 9.079981507165972, + "c5": 6.809986130374481, + "c6": 4.53999075358298, + "c7": 2.26999537679149 }, "rgb": [238, 201, 159] }, @@ -172509,23 +172509,23 @@ "year": 1760, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -27.142021739918956, - "c2": 4.726188421411813, - "c3": -19.930662225543315, - "c4": -32.303899008011975, - "c5": -21.16392584204128, - "c6": 12.900512867264403, - "c7": 25.580812338034036 + "points": { + "c1": 1.5736883087537095, + "c2": -10.510804863285546, + "c3": 5.468643960843892, + "c4": 24.93664245040477, + "c5": 20.16386802394552, + "c6": 14.679191212465177, + "c7": -1.9951731727855133 }, - "vertexSeeds": { - "c1": 12.625340005426962, - "c2": 12.568330953775943, - "c3": 11.750671610160248, - "c4": 12.297056473812974, - "c5": 12.048933424937871, - "c6": 12.520727431398095, - "c7": 11.632972668221386 + "offsets": { + "c1": 21.22977346278317, + "c2": 18.19694868238557, + "c3": 15.164123901987969, + "c4": 12.131299121590366, + "c5": 9.098474341192805, + "c6": 6.065649560795204, + "c7": 3.032824780397602 }, "rgb": [222, 0, 59] }, @@ -172536,23 +172536,23 @@ "year": 1759, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 0.3433436744639593, - "c2": 11.424600974919585, - "c3": 5.7835848801548835, - "c4": 19.205381754634544, - "c5": 9.290264892395527, - "c6": 23.65624366251601, - "c7": -0.1307181471511143 + "points": { + "c1": -17.738263548335556, + "c2": -29.664140081952908, + "c3": -7.59719733761716, + "c4": -2.431297161968345, + "c5": 5.311229823878264, + "c6": 14.007324732349417, + "c7": 3.50682745015321 }, - "vertexSeeds": { - "c1": 3.694135384985934, - "c2": 3.450518953948941, - "c3": 3.1601254819209363, - "c4": 3.332314793283616, - "c5": 3.684059266636126, - "c6": 3.5738550462361776, - "c7": 3.17726874313262 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803051, + "c3": 4.484512251502545, + "c4": 3.587609801202035, + "c5": 2.6907073509015254, + "c6": 1.7938049006010157, + "c7": 0.8969024503005096 }, "rgb": [222, 0, 59] }, @@ -172563,23 +172563,23 @@ "year": 1759, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 17.468025934262844, - "c2": 14.606953123193659, - "c3": 9.369046460496381, - "c4": -15.11167975311713, - "c5": 22.91898987877781, - "c6": 16.1435145172161, - "c7": -18.73984486343617 + "points": { + "c1": -4.302352448836828, + "c2": -1.9862037847323357, + "c3": 23.542486131977494, + "c4": 3.6026598872120807, + "c5": 16.56857857096357, + "c6": -26.542720201664793, + "c7": -23.296333863130585 }, - "vertexSeeds": { - "c1": 5.016411029169946, - "c2": 5.657326860724425, - "c3": 5.381477849921835, - "c4": 5.687879423674671, - "c5": 5.0271797842700305, - "c6": 5.113040240477703, - "c7": 5.104150988774489 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035606, + "c7": 1.391585760517803 }, "rgb": [222, 0, 59] }, @@ -172590,23 +172590,23 @@ "year": 1760, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 15.320452009440338, - "c2": -26.634881343390127, - "c3": -16.597597366878162, - "c4": 5.241949127612685, - "c5": 14.373402489988514, - "c6": -29.240538758548972, - "c7": -19.46042068428312 + "points": { + "c1": -16.19360030318184, + "c2": 10.226610677005624, + "c3": -6.977029802512298, + "c4": 10.110698094732697, + "c5": -13.744246616827656, + "c6": 6.605099504703624, + "c7": -30.548063952880565 }, - "vertexSeeds": { - "c1": 1.1903394813051806, - "c2": 1.1268825741521495, - "c3": 1.2082807562616833, - "c4": 0.993614475520285, - "c5": 1.0685523171459224, - "c6": 1.0690484920067747, - "c7": 1.1796512236406154 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742022, + "c3": 1.4794267221451682, + "c4": 1.1835413777161354, + "c5": 0.8876560332871017, + "c6": 0.5917706888580677, + "c7": 0.29588534442903386 }, "rgb": [77, 76, 132] }, @@ -172617,23 +172617,23 @@ "year": 1759, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -26.56512927064569, - "c2": 5.2071650446802025, - "c3": -13.815024493144001, - "c4": -6.040245255437576, - "c5": -1.9682214914133738, - "c6": 19.93051413943475, - "c7": -27.544289065360232 + "points": { + "c1": -17.412199134697264, + "c2": 9.173435517748366, + "c3": 18.10209209488569, + "c4": -5.589526922837916, + "c5": 13.19173453026869, + "c6": -13.13186757745682, + "c7": 1.7184843017321327 }, - "vertexSeeds": { - "c1": 7.58145677216606, - "c2": 8.56350673250794, - "c3": 8.569490757097276, - "c4": 7.93346399134956, - "c5": 8.020315416425678, - "c6": 8.171014171826757, - "c7": 7.321983041870324 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065189, + "c3": 10.957004160887658, + "c4": 8.765603328710128, + "c5": 6.574202496532599, + "c6": 4.3828016643550685, + "c7": 2.191400832177538 }, "rgb": [77, 76, 132] }, @@ -172644,23 +172644,23 @@ "year": 1760, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 12.614332898269176, - "c2": 30.884760341222588, - "c3": -11.635008735287169, - "c4": -31.04232993794972, - "c5": -19.273082039072996, - "c6": -31.815062951483068, - "c7": -18.99723675246745 + "points": { + "c1": -24.204110885083445, + "c2": -3.0971524210288877, + "c3": 25.682028077897158, + "c4": 17.030655621683707, + "c5": 26.19908783137869, + "c6": 18.808788644437477, + "c7": -23.71206157869422 }, - "vertexSeeds": { - "c1": 3.4335870288393457, - "c2": 3.35326473705675, - "c3": 3.722006758386781, - "c4": 3.1282798065057342, - "c5": 3.579088903320444, - "c6": 3.134947370451302, - "c7": 3.556271038880528 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703651, + "c4": 3.6985668053629235, + "c5": 2.773925104022193, + "c6": 1.8492834026814617, + "c7": 0.9246417013407309 }, "rgb": [86, 146, 138] }, @@ -172671,23 +172671,23 @@ "year": 1760, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 2.3066587218875227, - "c2": -11.676625481269674, - "c3": -19.674386091130636, - "c4": 5.50608462793037, - "c5": -29.546888674447963, - "c6": -23.06300664240479, - "c7": 28.845481873754842 + "points": { + "c1": 1.7359279315619247, + "c2": -28.927810985422045, + "c3": 10.72636166494695, + "c4": 8.370773645696623, + "c5": 32.940416197220394, + "c6": 31.764137132623496, + "c7": -27.877143679796035 }, - "vertexSeeds": { - "c1": 4.382502145459443, - "c2": 4.31573337872816, - "c3": 4.17132921166898, - "c4": 4.529640098948208, - "c5": 4.575764799309968, - "c6": 4.1839737490498585, - "c7": 4.335860279176927 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.7128987517337055, + "c3": 5.594082293111416, + "c4": 4.475265834489134, + "c5": 3.3564493758668528, + "c6": 2.237632917244564, + "c7": 1.118816458622282 }, "rgb": [238, 201, 159] }, @@ -172698,23 +172698,23 @@ "year": 1760, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -18.735460906778798, - "c2": -3.5707851306570113, - "c3": 25.157010170861913, - "c4": -9.469444056518078, - "c5": 1.2827544437433467, - "c6": -0.03772214401550755, - "c7": -21.66425849650303 + "points": { + "c1": 18.215830976025565, + "c2": 22.251823575848825, + "c3": -1.8506339691405032, + "c4": -10.44457357807472, + "c5": 22.31068123249316, + "c6": -3.0912927279845412, + "c7": -3.3983793686350126 }, - "vertexSeeds": { - "c1": 5.469797445132359, - "c2": 5.401990783058041, - "c3": 5.559290635583504, - "c4": 5.419293761172654, - "c5": 5.723836602537858, - "c6": 5.72950668333014, - "c7": 5.560912838341324 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206658, + "c3": 6.934812760055468, + "c4": 5.547850208044379, + "c5": 4.16088765603329, + "c6": 2.773925104022201, + "c7": 1.3869625520110893 }, "rgb": [238, 201, 159] }, @@ -172725,23 +172725,23 @@ "year": 1760, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -14.882316266906734, - "c2": -29.995120749211345, - "c3": -41.65019988869341, - "c4": 24.43403402414078, - "c5": 15.954680813911239, - "c6": 16.796185678069634, - "c7": 28.15617434951934 + "points": { + "c1": -18.708933024194607, + "c2": -42.08611038078625, + "c3": -1.5913492148758124, + "c4": 31.894440266623597, + "c5": -13.400122840950953, + "c6": 27.55175347262601, + "c7": -21.56427234757317 }, - "vertexSeeds": { - "c1": 7.936794707154366, - "c2": 7.942836078633467, - "c3": 7.8993268942691595, - "c4": 7.864650058075224, - "c5": 7.047740100003887, - "c6": 6.651558979858795, - "c7": 7.679340806849563 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343042, + "c4": 7.637540453074433, + "c5": 5.7281553398058245, + "c6": 3.8187702265372163, + "c7": 1.9093851132686082 }, "rgb": [58, 15, 49] }, @@ -172752,23 +172752,23 @@ "year": 1760, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 20.290564591930668, - "c2": 15.299922558378412, - "c3": -36.12272361418234, - "c4": 26.77991833950214, - "c5": 36.08023488256253, - "c6": -43.776079057503814, - "c7": 37.91413006030769 + "points": { + "c1": 4.708264330164674, + "c2": 27.314148281724677, + "c3": -5.791766709826305, + "c4": -33.98466106745087, + "c5": -46.70642903035093, + "c6": 37.79955993826767, + "c7": -17.42639913790839 }, - "vertexSeeds": { - "c1": 4.750265507939676, - "c2": 4.860113679877612, - "c3": 4.869725927870659, - "c4": 4.88014093206938, - "c5": 4.717411944553043, - "c6": 4.806295418544353, - "c7": 4.415497161859112 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578358, + "c3": 6.079519186315307, + "c4": 4.863615349052241, + "c5": 3.6477115117891823, + "c6": 2.431807674526124, + "c7": 1.2159038372630588 }, "rgb": [238, 201, 159] }, @@ -172779,23 +172779,23 @@ "year": 1760, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -15.825598104766062, - "c2": 1.329747414016886, - "c3": 7.120067548850855, - "c4": 28.600828329763523, - "c5": -1.7833090500469169, - "c6": -5.428583423578299, - "c7": -6.6715289359221615 + "points": { + "c1": -25.89513981802734, + "c2": -29.883021603720266, + "c3": 19.760600733229865, + "c4": 34.54749873640408, + "c5": 21.22775206981092, + "c6": -10.559572522688462, + "c7": 12.327526547499168 }, - "vertexSeeds": { - "c1": 5.823313547021878, - "c2": 6.657141384923052, - "c3": 5.820538743777789, - "c4": 5.8088184661085975, - "c5": 6.582328345090954, - "c6": 5.734011756726424, - "c7": 6.0124425018624414 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [86, 146, 138] }, @@ -172806,23 +172806,23 @@ "year": 1760, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 13.249439962738165, - "c2": 10.862842466037606, - "c3": -2.531155144552706, - "c4": -30.56960273706106, - "c5": 2.595644611977349, - "c6": 2.765146515345009, - "c7": -25.590309849990547 + "points": { + "c1": 32.988944145350104, + "c2": 30.21217352616715, + "c3": -35.442845463997465, + "c4": 30.500613664330345, + "c5": 34.9247978518065, + "c6": -10.199874351051509, + "c7": 28.3556254556333 }, - "vertexSeeds": { - "c1": 6.254363251803543, - "c2": 5.6395853845523165, - "c3": 5.598170351323462, - "c4": 6.069259409650105, - "c5": 6.661596902610663, - "c6": 6.601250763604021, - "c7": 6.41241349792858 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [86, 146, 138] }, @@ -172833,23 +172833,23 @@ "year": 1760, "resistanceReported": false, "duration": 46656000, - "curveSeeds": { - "c1": -39.549225248193196, - "c2": 18.466706976381346, - "c3": 9.809457408969209, - "c4": -8.88554076247793, - "c5": 43.74637152128278, - "c6": 38.096466117585706, - "c7": 18.42771946136712 + "points": { + "c1": 38.889728689896614, + "c2": 39.19580792064852, + "c3": 57.5554358489277, + "c4": -21.310114167355138, + "c5": 10.879030824127284, + "c6": 22.762874390201574, + "c7": 44.28372564182469 }, - "vertexSeeds": { - "c1": 6.391637812258263, - "c2": 6.442401612571033, - "c3": 6.478189209850273, - "c4": 6.392590733853725, - "c5": 6.4347758860017645, - "c6": 6.4301900646866015, - "c7": 6.3794833456324 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474351, + "c3": 7.743874248728638, + "c4": 6.195099398982924, + "c5": 4.646324549237209, + "c6": 3.0975496994914278, + "c7": 1.5487748497457139 }, "rgb": [77, 76, 132] }, @@ -172860,23 +172860,23 @@ "year": 1760, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 20.824814231826664, - "c2": 37.7646922699291, - "c3": -29.4037284131252, - "c4": -7.590924899770549, - "c5": 30.64085030875536, - "c6": 29.224851851976894, - "c7": 27.421561498599175 + "points": { + "c1": -24.558168954708485, + "c2": -26.64552615792593, + "c3": 10.120212595413172, + "c4": 21.976354833238375, + "c5": 11.289610942421355, + "c6": 39.152884728521016, + "c7": 0.3720329998384031 }, - "vertexSeeds": { - "c1": 8.925113889510484, - "c2": 7.6879651011323835, - "c3": 8.9516284327798, - "c4": 8.318876481512454, - "c5": 8.128464880099013, - "c6": 8.1583554272589, - "c7": 8.138616182391846 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984741, + "c3": 10.910772075820622, + "c4": 8.728617660656496, + "c5": 6.546463245492371, + "c6": 4.364308830328254, + "c7": 2.182154415164127 }, "rgb": [58, 15, 49] }, @@ -172887,23 +172887,23 @@ "year": 1760, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 18.992195279984912, - "c2": -20.08058692837312, - "c3": -11.868919548637898, - "c4": 25.801947622848083, - "c5": -26.660815417164187, - "c6": 5.870708879308012, - "c7": -3.3533069102672286 + "points": { + "c1": -9.551914556056065, + "c2": -0.5357249564542101, + "c3": -16.747791506491176, + "c4": 22.667813805988366, + "c5": -26.08793787531245, + "c6": -31.8037754009935, + "c7": 14.163363574730958 }, - "vertexSeeds": { - "c1": 6.091915915075715, - "c2": 5.740512225344615, - "c3": 6.492908324982135, - "c4": 6.327105085645783, - "c5": 5.591378999390355, - "c6": 5.871984247801381, - "c7": 5.877593641651275 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514559, + "c3": 7.766990291262138, + "c4": 6.213592233009705, + "c5": 4.660194174757286, + "c6": 3.1067961165048525, + "c7": 1.553398058252433 }, "rgb": [238, 201, 159] }, @@ -172914,23 +172914,23 @@ "year": 1760, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 13.43787842768981, - "c2": -24.956930289917985, - "c3": 1.1498011309270169, - "c4": -7.981904740809913, - "c5": -9.012035715224076, - "c6": 5.8278312028398105, - "c7": -11.636993620153099 + "points": { + "c1": 27.40372894135548, + "c2": 15.44786245201172, + "c3": 8.589122604943924, + "c4": 0.4250066896358362, + "c5": 15.239735102442978, + "c6": 9.194893555823924, + "c7": 36.44394399435626 }, - "vertexSeeds": { - "c1": 8.28029293898792, - "c2": 8.0031030954317, - "c3": 7.797390164619743, - "c4": 7.99444751948026, - "c5": 8.048248898618912, - "c6": 8.154551926260105, - "c7": 7.802931144400171 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255189, + "c3": 9.916782246879336, + "c4": 7.9334257975034586, + "c5": 5.950069348127608, + "c6": 3.9667128987517293, + "c7": 1.983356449375851 }, "rgb": [58, 15, 49] }, @@ -172941,23 +172941,23 @@ "year": 1760, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -8.069471045358679, - "c2": 20.82826210554971, - "c3": -14.61725617258165, - "c4": -4.976228130197061, - "c5": -12.97221260386695, - "c6": 25.123454483107373, - "c7": -11.361878444511834 + "points": { + "c1": -14.017922956653358, + "c2": -4.9917217759555115, + "c3": 0.8216752033113508, + "c4": 18.492380310040865, + "c5": -18.99173431703688, + "c6": -21.154193349687187, + "c7": -11.768144096615188 }, - "vertexSeeds": { - "c1": 9.283712293440884, - "c2": 9.270415425651732, - "c3": 9.287475740151173, - "c4": 9.270141150928056, - "c5": 9.269488574985978, - "c6": 9.272859725489278, - "c7": 9.271964888923351 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248265918, + "c3": 11.072584373555372, + "c4": 8.858067498843946, + "c5": 6.6435506241333995, + "c6": 4.429033749421973, + "c7": 2.214516874711427 }, "rgb": [77, 76, 132] }, @@ -172968,23 +172968,23 @@ "year": 1760, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 28.06587112320429, - "c2": 7.906714593701835, - "c3": -0.3278716192924733, - "c4": -31.538946361683422, - "c5": 39.04120359968368, - "c6": 39.134759745345136, - "c7": 15.865317308447302 + "points": { + "c1": 5.175932795310963, + "c2": 33.39783804766802, + "c3": 8.543466267094196, + "c4": -37.25681833390455, + "c5": 8.827909876100541, + "c6": -25.71498268395589, + "c7": 20.520125129672337 }, - "vertexSeeds": { - "c1": 4.275902388288757, - "c2": 4.781493721887637, - "c3": 4.762134339192559, - "c4": 4.783893688411201, - "c5": 4.570133610406068, - "c6": 4.432394719557701, - "c7": 4.119340154299741 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417478, + "c3": 5.9870550161812295, + "c4": 4.7896440129449855, + "c5": 3.5922330097087363, + "c6": 2.3948220064724928, + "c7": 1.1974110032362437 }, "rgb": [238, 201, 159] }, @@ -172995,23 +172995,23 @@ "year": 1759, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 17.529353909675464, - "c2": -10.522517274668466, - "c3": 21.062697514225654, - "c4": -10.536082854906525, - "c5": -22.24714476437174, - "c6": -18.351437949905353, - "c7": -0.9563891444161463 + "points": { + "c1": -19.002196200782333, + "c2": -5.18759014624235, + "c3": -13.437841915504713, + "c4": -14.543785477897629, + "c5": 26.646428470680952, + "c6": 1.5430535083397814, + "c7": 13.466049316345888 }, - "vertexSeeds": { - "c1": 4.6980401191661345, - "c2": 4.367654478189458, - "c3": 4.197205791711231, - "c4": 4.672986837401406, - "c5": 4.326060060542942, - "c6": 4.437220114213768, - "c7": 4.253071935749695 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379567, + "c4": 4.623208506703648, + "c5": 3.467406380027736, + "c6": 2.311604253351824, + "c7": 1.155802126675912 }, "rgb": [77, 76, 132] }, @@ -173022,23 +173022,23 @@ "year": 1760, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 41.169088005816775, - "c2": 25.723845252721446, - "c3": 16.599033850845203, - "c4": -43.432958085018754, - "c5": -0.982941364359661, - "c6": 39.60406334523945, - "c7": -8.6708783472465 + "points": { + "c1": -33.694944630989085, + "c2": -42.80363362586478, + "c3": 6.675005419289917, + "c4": -34.16094567421918, + "c5": -27.945046194994827, + "c6": -29.791253372535078, + "c7": -33.45575953127892 }, - "vertexSeeds": { - "c1": 3.2507150368849924, - "c2": 3.983343563379113, - "c3": 4.382141918327832, - "c4": 4.4804982243653395, - "c5": 4.371266787953728, - "c6": 4.4139864626763865, - "c7": 3.0598083447023936 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452149, + "c3": 5.432269995376791, + "c4": 4.345815996301432, + "c5": 3.2593619972260734, + "c6": 2.1729079981507144, + "c7": 1.0864539990753586 }, "rgb": [222, 0, 59] }, @@ -173049,23 +173049,23 @@ "year": 1760, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -10.305172432255855, - "c2": -23.42503137416349, - "c3": -26.56524501974891, - "c4": -28.10102301431553, - "c5": 0.9719470749901227, - "c6": -5.529404329172827, - "c7": 10.309933115061156 + "points": { + "c1": -3.0203730329668232, + "c2": -12.447916967276047, + "c3": 17.008092511324314, + "c4": 30.470347519401038, + "c5": -6.57092478193843, + "c6": 19.39142228436878, + "c7": -6.945696365898808 }, - "vertexSeeds": { - "c1": 10.244608765495677, - "c2": 10.622529911815748, - "c3": 11.632756571517747, - "c4": 12.098134088844136, - "c5": 10.228126605368159, - "c6": 11.461127851106035, - "c7": 10.279023919643732 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.75312066574202, + "c3": 14.7942672214517, + "c4": 11.835413777161355, + "c5": 8.87656033287101, + "c6": 5.917706888580668, + "c7": 2.9588534442903436 }, "rgb": [222, 0, 59] }, @@ -173076,23 +173076,23 @@ "year": 1760, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 7.420743895272082, - "c2": -20.357438002547184, - "c3": 5.776561509465488, - "c4": -16.284388268000583, - "c5": 9.05319177081342, - "c6": -24.234539110958043, - "c7": 13.304334301049039 + "points": { + "c1": 26.43813021763515, + "c2": -6.307124439344239, + "c3": 21.423324308771562, + "c4": -6.68515986842986, + "c5": -1.4053482039535794, + "c6": -21.022085888962934, + "c7": 11.751096998149194 }, - "vertexSeeds": { - "c1": 4.34477240092674, - "c2": 4.330090726930087, - "c3": 4.282193084660874, - "c4": 4.289506116115604, - "c5": 4.347492627040949, - "c6": 4.305849748281739, - "c7": 4.256425082153367 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049918, + "c3": 5.201109570041626, + "c4": 4.160887656033293, + "c5": 3.120665742024959, + "c6": 2.080443828016667, + "c7": 1.0402219140083335 }, "rgb": [77, 76, 132] }, @@ -173103,23 +173103,23 @@ "year": 1760, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": -40.61650205695136, - "c2": -1.388933760237073, - "c3": 7.849665459489984, - "c4": -0.594463776913031, - "c5": 14.86843305375843, - "c6": -29.75649128019055, - "c7": -36.709618114637586 + "points": { + "c1": -42.136957298326294, + "c2": 33.33424653906321, + "c3": -9.697433459510279, + "c4": 37.15721041762091, + "c5": -17.866185404760138, + "c6": 35.6130193586307, + "c7": 15.847476899408768 }, - "vertexSeeds": { - "c1": 3.6393850917286783, - "c2": 3.2661915436610545, - "c3": 3.450988836320018, - "c4": 3.6542944744801575, - "c5": 3.3058175280632036, - "c6": 3.7546312213459414, - "c7": 3.5688189627805778 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.5201109570041575, + "c3": 4.6000924641701335, + "c4": 3.6800739713361095, + "c5": 2.7600554785020788, + "c6": 1.840036985668049, + "c7": 0.9200184928340245 }, "rgb": [77, 76, 132] }, @@ -173130,23 +173130,23 @@ "year": 1760, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -4.327781422345112, - "c2": -19.285711822733187, - "c3": 19.72234166872375, - "c4": 2.0391490304730056, - "c5": 27.11957582483327, - "c6": -21.59313960364574, - "c7": 8.660726550179028 + "points": { + "c1": 7.21645695337763, + "c2": 39.81270782030767, + "c3": -11.155034238306467, + "c4": 5.013386677252861, + "c5": 31.003877518636408, + "c6": -2.799189626480363, + "c7": -3.567604396946386 }, - "vertexSeeds": { - "c1": 8.252943978653528, - "c2": 7.553814817428946, - "c3": 7.007527851796654, - "c4": 8.466597716676548, - "c5": 8.225174000406168, - "c6": 7.428778983683051, - "c7": 7.21984949985814 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697642, + "c3": 10.171058714748039, + "c4": 8.136846971798432, + "c5": 6.102635228848817, + "c6": 4.068423485899212, + "c7": 2.034211742949606 }, "rgb": [238, 201, 159] }, @@ -173157,23 +173157,23 @@ "year": 1760, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -36.4222691638416, - "c2": 6.371038989629085, - "c3": -17.001265584796467, - "c4": 35.48173308652525, - "c5": -10.060731628597896, - "c6": -27.613976135820188, - "c7": 25.814585148845886 + "points": { + "c1": -28.40340614849206, + "c2": -31.999795139573266, + "c3": -3.5677106093462925, + "c4": -16.680662831842117, + "c5": -7.899145893185253, + "c6": -4.8036475185737615, + "c7": 5.02048283891709 }, - "vertexSeeds": { - "c1": 4.3116452743223865, - "c2": 4.384605806210041, - "c3": 4.293569066592948, - "c4": 4.424566082343811, - "c5": 4.095568874553046, - "c6": 4.088276546744569, - "c7": 4.104429959391678 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -173184,23 +173184,23 @@ "year": 1760, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 1.9103990884003252, - "c2": 22.360359436494686, - "c3": -9.271363192902694, - "c4": 7.966315356792599, - "c5": 18.014883482823105, - "c6": 23.35462416931843, - "c7": 14.845452188595484 + "points": { + "c1": -8.5091055855765, + "c2": 1.212177879035746, + "c3": 12.478273991847356, + "c4": 8.725147336945245, + "c5": 2.5708329260572604, + "c6": -14.1900680302825, + "c7": -22.22681493870351 }, - "vertexSeeds": { - "c1": 4.336353744214906, - "c2": 4.314428747341234, - "c3": 3.940684978409218, - "c4": 4.045255128585412, - "c5": 4.163933594470171, - "c6": 4.330720947454035, - "c7": 4.059978201659999 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -173211,23 +173211,23 @@ "year": 1760, "resistanceReported": true, "duration": 17539200, - "curveSeeds": { - "c1": 24.945339379617586, - "c2": -14.43204877226288, - "c3": 25.77463000380566, - "c4": 2.96760390970681, - "c5": -16.199610873244083, - "c6": 10.087270578777009, - "c7": 0.20376524107108906 + "points": { + "c1": -17.134062297445062, + "c2": 12.44567554006526, + "c3": 8.212201167303725, + "c4": -25.54456412392465, + "c5": -7.339514954300789, + "c6": -4.9857283204048315, + "c7": -7.077857778182413 }, - "vertexSeeds": { - "c1": 1.978344553895127, - "c2": 1.9299729271895725, - "c3": 1.9324740305427976, - "c4": 1.8935904945338438, - "c5": 1.947836100553537, - "c6": 1.9343786381901753, - "c7": 1.758960821846271 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142859, + "c3": 2.3809523809523805, + "c4": 1.9047619047619058, + "c5": 1.4285714285714275, + "c6": 0.9523809523809529, + "c7": 0.4761904761904785 }, "rgb": [222, 0, 59] }, @@ -173238,23 +173238,23 @@ "year": 1760, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -14.648551454086713, - "c2": 14.997574706894675, - "c3": -17.704124940300417, - "c4": -8.596736470740076, - "c5": -6.7779553365336795, - "c6": 12.19120024984911, - "c7": -3.0333371546631973 + "points": { + "c1": 23.21340396708643, + "c2": 5.505991366539824, + "c3": 24.338401689645387, + "c4": -4.254790533366574, + "c5": 0.5186865609449072, + "c6": -0.3809812667454793, + "c7": 0.27266440955495597 }, - "vertexSeeds": { - "c1": 5.3475225787544165, - "c2": 5.348898930422761, - "c3": 5.911802426674793, - "c4": 5.472867096789696, - "c5": 5.707838902017319, - "c6": 6.065645759382191, - "c7": 5.751129529022371 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911234, + "c3": 7.420249653259362, + "c4": 5.936199722607489, + "c5": 4.452149791955617, + "c6": 2.9680998613037444, + "c7": 1.4840499306518722 }, "rgb": [238, 201, 159] }, @@ -173265,23 +173265,23 @@ "year": 1761, "resistanceReported": false, "duration": 55382400, - "curveSeeds": { - "c1": -66.90167232018818, - "c2": -35.14508201226503, - "c3": -58.57737600424835, - "c4": -47.0744296221506, - "c5": -4.884475895995692, - "c6": 59.06850446717499, - "c7": 56.09733241552638 + "points": { + "c1": -43.586224140486635, + "c2": 12.327911599524853, + "c3": 32.64918044954236, + "c4": 19.002144036021406, + "c5": 36.33647057943435, + "c6": 38.94301267609018, + "c7": 49.57621272985385 }, - "vertexSeeds": { - "c1": 8.494331717897216, - "c2": 8.687922663741746, - "c3": 8.490145204215507, - "c4": 8.186235913013874, - "c5": 8.39241690004078, - "c6": 8.488948027309839, - "c7": 8.574691816876326 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421631, + "c3": 10.587147480351373, + "c4": 8.469717984281093, + "c5": 6.3522884882108155, + "c6": 4.234858992140536, + "c7": 2.117429496070279 }, "rgb": [58, 15, 49] }, @@ -173292,23 +173292,23 @@ "year": 1760, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -29.71080390722897, - "c2": 10.638142700617781, - "c3": -3.1221597269855614, - "c4": 20.921772011797348, - "c5": 26.330084035115025, - "c6": -7.545613347134488, - "c7": -13.10390927004348 + "points": { + "c1": -24.955731164736143, + "c2": 23.83611172079045, + "c3": 28.47771078614197, + "c4": 13.48116498667423, + "c5": -31.907070413063696, + "c6": -16.323610286548462, + "c7": 9.988188919120098 }, - "vertexSeeds": { - "c1": 1.5655911052555305, - "c2": 1.513674688230981, - "c3": 1.3759365964843313, - "c4": 1.563135292534443, - "c5": 1.4243203303529617, - "c6": 1.409028546719843, - "c7": 1.4431693610636926 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.3300970873786415, + "c3": 1.941747572815533, + "c4": 1.553398058252427, + "c5": 1.1650485436893208, + "c6": 0.7766990291262148, + "c7": 0.388349514563106 }, "rgb": [77, 76, 132] }, @@ -173319,23 +173319,23 @@ "year": 1760, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -24.11134996230694, - "c2": 14.929495927407295, - "c3": 21.72145933220152, - "c4": -31.159026955078026, - "c5": -22.39615083908152, - "c6": 38.01940020021293, - "c7": -25.756159895037825 + "points": { + "c1": -37.15790146554757, + "c2": -32.83049296876679, + "c3": -7.3710697765056565, + "c4": -4.280346140981088, + "c5": 34.33280260742356, + "c6": -12.41763755622327, + "c7": 29.0409490169438 }, - "vertexSeeds": { - "c1": 8.018647421596839, - "c2": 8.027033236672029, - "c3": 8.01902218981777, - "c4": 7.474091741134272, - "c5": 7.81217130397986, - "c6": 7.922301404174391, - "c7": 7.340524955017358 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.31622746185853, + "c3": 10.26352288488211, + "c4": 8.210818307905681, + "c5": 6.15811373092926, + "c6": 4.105409153952841, + "c7": 2.0527045769764203 }, "rgb": [58, 15, 49] }, @@ -173346,23 +173346,23 @@ "year": 1761, "resistanceReported": false, "duration": 53049600, - "curveSeeds": { - "c1": -56.39429336500713, - "c2": -0.09692988955694659, - "c3": -14.903212187690727, - "c4": 28.33321004210387, - "c5": -20.672090553051966, - "c6": 4.375287352117553, - "c7": -66.98123293587074 + "points": { + "c1": -56.03074495722489, + "c2": 52.1627101605048, + "c3": -42.648343594264134, + "c4": 45.771418927557804, + "c5": -9.91783558816605, + "c6": -19.96270177592325, + "c7": 21.128196649348126 }, - "vertexSeeds": { - "c1": 9.15613700523884, - "c2": 9.20976281999006, - "c3": 8.974249241590588, - "c4": 8.798649344094741, - "c5": 8.940871593938036, - "c6": 9.039459269761105, - "c7": 9.338625111932751 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.091539528432728, + "c3": 11.742949607027272, + "c4": 9.394359685621813, + "c5": 7.045769764216357, + "c6": 4.6971798428108995, + "c7": 2.348589921405442 }, "rgb": [58, 15, 49] }, @@ -173373,23 +173373,23 @@ "year": 1760, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -16.635613194671063, - "c2": -28.848651593897962, - "c3": -36.11576267620962, - "c4": -12.883709307268724, - "c5": 22.279423226476744, - "c6": 39.969863272403465, - "c7": -24.330633738641673 + "points": { + "c1": -26.84048053346046, + "c2": 19.85417724575229, + "c3": 20.867390226129636, + "c4": -35.02280962847432, + "c5": -6.764858325576263, + "c6": 40.80882671744707, + "c7": -21.558254522763743 }, - "vertexSeeds": { - "c1": 6.541568180613183, - "c2": 6.534060477227934, - "c3": 6.390082811316043, - "c4": 6.186617649299038, - "c5": 6.125181105938189, - "c6": 6.292294985506548, - "c7": 6.196439226839389 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715667, + "c3": 7.8825705039297365, + "c4": 6.306056403143785, + "c5": 4.729542302357833, + "c6": 3.1530282015719022, + "c7": 1.5765141007859511 }, "rgb": [77, 76, 132] }, @@ -173400,23 +173400,23 @@ "year": 1760, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 22.912695201831006, - "c2": 32.447685437561546, - "c3": -8.400682386299973, - "c4": -28.128071317037247, - "c5": 1.032324075946633, - "c6": 24.3741375036034, - "c7": -2.57351006478158 + "points": { + "c1": -20.797408217386792, + "c2": -25.407632332047392, + "c3": -33.43408664488494, + "c4": 26.231067786167984, + "c5": 8.453812031659147, + "c6": 15.379502921930872, + "c7": -19.725516182745615 }, - "vertexSeeds": { - "c1": 6.338317134150665, - "c2": 6.279708060159842, - "c3": 6.372779478840201, - "c4": 5.820984886046351, - "c5": 6.20197590567018, - "c6": 5.941982836930509, - "c7": 6.270745867405141 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514571, + "c3": 7.766990291262134, + "c4": 6.213592233009713, + "c5": 4.660194174757277, + "c6": 3.1067961165048565, + "c7": 1.5533980582524198 }, "rgb": [222, 0, 59] }, @@ -173427,23 +173427,23 @@ "year": 1760, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 9.014363962474121, - "c2": 14.381566741966978, - "c3": 18.057573181779482, - "c4": -3.1182154211063313, - "c5": 19.04353144650478, - "c6": -4.498012026669784, - "c7": -1.2133843537888538 + "points": { + "c1": 2.8602439636262034, + "c2": 18.790658043051202, + "c3": 15.048726559127964, + "c4": -18.94378258573836, + "c5": 17.49015864362555, + "c6": -3.795631189895605, + "c7": -3.476408816071636 }, - "vertexSeeds": { - "c1": 4.339574512513581, - "c2": 4.167012683991982, - "c3": 4.364608049488267, - "c4": 3.8630100263828044, - "c5": 3.8517040388906563, - "c6": 3.9355942668884136, - "c7": 4.383940416989178 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -173454,23 +173454,23 @@ "year": 1760, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 21.677647129299416, - "c2": 26.073175174046803, - "c3": 29.68357326227406, - "c4": 23.26247449361972, - "c5": -26.087912280157248, - "c6": 25.305438538018038, - "c7": 29.856949374048476 + "points": { + "c1": -32.193892116636704, + "c2": 10.913353373213312, + "c3": 7.067213270213287, + "c4": 18.92965193600446, + "c5": 27.55355277624026, + "c6": -34.92180931513452, + "c7": -2.419195569491258 }, - "vertexSeeds": { - "c1": 9.971400227787479, - "c2": 9.906027072070582, - "c3": 9.85770356517933, - "c4": 9.993663120229515, - "c5": 10.494618914261535, - "c6": 9.968064408490381, - "c7": 10.171676404696443 + "offsets": { + "c1": 17.60517799352751, + "c2": 15.090152565880738, + "c3": 12.575127138233912, + "c4": 10.060101710587139, + "c5": 7.545076282940369, + "c6": 5.030050855293598, + "c7": 2.515025427646771 }, "rgb": [238, 201, 159] }, @@ -173481,23 +173481,23 @@ "year": 1761, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": -22.619026702940623, - "c2": -46.37913014789197, - "c3": -14.644745990462042, - "c4": 25.31917043466953, - "c5": -53.111213791980255, - "c6": 26.92053165402507, - "c7": 13.133771957667804 + "points": { + "c1": 31.94007803576305, + "c2": 15.298892721152171, + "c3": 7.548169224950499, + "c4": -16.376284053070336, + "c5": -56.830087260633725, + "c6": -5.989714611067612, + "c7": 8.97753098858071 }, - "vertexSeeds": { - "c1": 5.4756440789499585, - "c2": 5.723554125963133, - "c3": 5.54041301199958, - "c4": 5.791413550016028, - "c5": 5.677108051083153, - "c6": 5.559558478313054, - "c7": 5.803716158176424 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [238, 201, 159] }, @@ -173508,23 +173508,23 @@ "year": 1760, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 7.321864920944151, - "c2": -23.712900223721135, - "c3": -11.855376600207407, - "c4": 4.186805882652031, - "c5": 5.4358288097874805, - "c6": 29.637800560879093, - "c7": 2.5659344122699963 + "points": { + "c1": -19.090312478624426, + "c2": 22.11377429454555, + "c3": -8.5078064218884, + "c4": -19.361040374882617, + "c5": -26.441556653743817, + "c6": 1.6468138942604185, + "c7": -9.451175553874545 }, - "vertexSeeds": { - "c1": 5.127173157824626, - "c2": 5.275905009521877, - "c3": 4.6412624554386985, - "c4": 5.554041859690685, - "c5": 5.230111706202113, - "c6": 4.879323011472934, - "c7": 4.587764028925006 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664359, + "c3": 6.703652334720293, + "c4": 5.362921867776235, + "c5": 4.022191400832179, + "c6": 2.6814609338881175, + "c7": 1.340730466944057 }, "rgb": [238, 201, 159] }, @@ -173535,23 +173535,23 @@ "year": 1760, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 1.0726576401252785, - "c2": -5.904142848896964, - "c3": 35.09464459481811, - "c4": 33.703539702624326, - "c5": 5.19489034314995, - "c6": -13.434443389194666, - "c7": -11.937509697348514 + "points": { + "c1": 35.262737551568904, + "c2": -24.677797949197178, + "c3": 23.219762526492083, + "c4": -13.037709511007282, + "c5": -36.35330384025337, + "c6": -14.371329281484812, + "c7": -24.455347619526204 }, - "vertexSeeds": { - "c1": 5.819522143586248, - "c2": 5.8449111557293785, - "c3": 6.269393525857873, - "c4": 6.090158100694084, - "c5": 5.732189098657043, - "c6": 5.666504678908848, - "c7": 5.972098263847502 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273224, + "c3": 7.628294036061028, + "c4": 6.102635228848816, + "c5": 4.57697642163662, + "c6": 3.051317614424408, + "c7": 1.525658807212196 }, "rgb": [77, 76, 132] }, @@ -173562,23 +173562,23 @@ "year": 1760, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 21.531633108346973, - "c2": 21.634782242192813, - "c3": 19.105670245397633, - "c4": 20.077819986746057, - "c5": -13.64313208255206, - "c6": -26.987065600137043, - "c7": -0.7718408805794112 + "points": { + "c1": 17.377645135059794, + "c2": -15.995793611270877, + "c3": 15.314945737145528, + "c4": -33.18640984340998, + "c5": 5.502590651797661, + "c6": 8.061828869302317, + "c7": 34.05051570083616 }, - "vertexSeeds": { - "c1": 4.120883099320409, - "c2": 4.682906497066924, - "c3": 4.777287539270262, - "c4": 4.829638872310307, - "c5": 4.291365825603826, - "c6": 4.319815262793147, - "c7": 4.7730908928907745 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256587, + "c3": 5.8945908460471585, + "c4": 4.715672676837725, + "c5": 3.536754507628296, + "c6": 2.3578363384188625, + "c7": 1.1789181692094286 }, "rgb": [77, 76, 132] }, @@ -173589,23 +173589,23 @@ "year": 1760, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -13.272121664930129, - "c2": 5.278905727798286, - "c3": 6.244556527404772, - "c4": -5.082392979071347, - "c5": -13.979604261343837, - "c6": -8.185591275702048, - "c7": -18.482649399449855 + "points": { + "c1": -28.05029024431301, + "c2": -11.802620067346616, + "c3": -14.351490044073675, + "c4": 5.122806789218494, + "c5": 14.601346713125501, + "c6": -17.819738799675577, + "c7": 27.955681073291288 }, - "vertexSeeds": { - "c1": 8.24394404757104, - "c2": 7.724280944959049, - "c3": 7.702217857781232, - "c4": 7.3523853964657455, - "c5": 7.67096604442049, - "c6": 7.60204011583234, - "c7": 8.024421196157405 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [222, 0, 59] }, @@ -173616,23 +173616,23 @@ "year": 1760, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 6.1999679008103, - "c2": -29.6057114264736, - "c3": -21.06766144507056, - "c4": -42.87159703136642, - "c5": 32.6335174516347, - "c6": -37.74386070988125, - "c7": -28.109600827014138 + "points": { + "c1": -6.087123911192876, + "c2": 30.151177372644042, + "c3": -9.214391347401474, + "c4": 29.78843658293424, + "c5": 16.793685358116377, + "c6": -10.28243085867522, + "c7": -21.93560388912223 }, - "vertexSeeds": { - "c1": 10.883641122994966, - "c2": 10.846239704707536, - "c3": 12.3522723588973, - "c4": 10.959830083829006, - "c5": 10.949458492366619, - "c6": 11.579550436211658, - "c7": 10.300814158125675 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.030513176144236, + "c3": 15.025427646786872, + "c4": 12.02034211742949, + "c5": 9.015256588072127, + "c6": 6.010171058714745, + "c7": 3.0050855293573626 }, "rgb": [238, 201, 159] }, @@ -173643,23 +173643,23 @@ "year": 1760, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -17.02405206402767, - "c2": 15.143966216003847, - "c3": -2.6886424532896136, - "c4": 27.37909564943753, - "c5": 25.520227259455787, - "c6": -5.882757371782432, - "c7": 28.722452629156514 + "points": { + "c1": -3.535405388336102, + "c2": 21.194554770536513, + "c3": -2.717184287996183, + "c4": 17.535640220200023, + "c5": 32.53743223571048, + "c6": -22.289974329397253, + "c7": 8.44411147631834 }, - "vertexSeeds": { - "c1": 5.209462881981258, - "c2": 4.982103556292735, - "c3": 5.229226068429351, - "c4": 4.889833784613123, - "c5": 4.9788573675913455, - "c6": 5.127656468376028, - "c7": 4.901390135723018 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385112, + "c4": 5.177993527508089, + "c5": 3.8834951456310645, + "c6": 2.5889967637540408, + "c7": 1.294498381877017 }, "rgb": [58, 15, 49] }, @@ -173670,23 +173670,23 @@ "year": 1760, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": -8.183272628243444, - "c2": 6.083666251884779, - "c3": 15.03721920210317, - "c4": 18.495709218898707, - "c5": 9.308986015565715, - "c6": 15.08400117030185, - "c7": 13.233249899080665 + "points": { + "c1": -6.236158421043813, + "c2": -16.83267584386348, + "c3": 14.975972815174462, + "c4": 6.808651509484815, + "c5": 18.108992046960058, + "c6": -1.5959283313030674, + "c7": 5.230158243123299 }, - "vertexSeeds": { - "c1": 11.312249213216408, - "c2": 13.34743112187553, - "c3": 11.350290344925194, - "c4": 11.889289846230815, - "c5": 12.750706296632877, - "c6": 12.610037663688358, - "c7": 11.470851861147086 + "offsets": { + "c1": 22.815533980582526, + "c2": 19.556171983356446, + "c3": 16.29680998613037, + "c4": 13.037447988904312, + "c5": 9.778085991678234, + "c6": 6.518723994452156, + "c7": 3.259361997226078 }, "rgb": [58, 15, 49] }, @@ -173697,23 +173697,23 @@ "year": 1760, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -24.002186760531234, - "c2": 31.83496718651594, - "c3": 7.475302350938954, - "c4": 20.349388998372717, - "c5": -17.0214789151485, - "c6": -13.01372701572248, - "c7": -45.102083349472466 + "points": { + "c1": 23.3902484433399, + "c2": -13.773046750999612, + "c3": 39.71420852329233, + "c4": 27.24381629704031, + "c5": -39.596774390678085, + "c6": 48.11381049199707, + "c7": -34.84970649802082 }, - "vertexSeeds": { - "c1": 3.6063724093969016, - "c2": 3.7731262003869332, - "c3": 3.6573157277453454, - "c4": 3.6881695816751154, - "c5": 4.0326886497694066, - "c6": 3.6414435780731957, - "c7": 3.830040692085884 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [86, 146, 138] }, @@ -173724,23 +173724,23 @@ "year": 1760, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -9.225790116287428, - "c2": -20.71336935713227, - "c3": 9.372031731157861, - "c4": 8.018664991370855, - "c5": 20.06299479661049, - "c6": 36.30070173537675, - "c7": 31.94493362533423 + "points": { + "c1": -2.991514883203898, + "c2": 34.22420087538519, + "c3": -10.745350691230126, + "c4": 31.705958733521555, + "c5": -32.39416827314943, + "c6": -29.639668677841808, + "c7": -11.56733892969882 }, - "vertexSeeds": { - "c1": 4.151159626788736, - "c2": 4.2814477433643345, - "c3": 4.484266429886549, - "c4": 4.59106477077911, - "c5": 4.444186723988332, - "c6": 4.399451715008238, - "c7": 4.579480304439235 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572815, + "c3": 5.501618122977347, + "c4": 4.401294498381877, + "c5": 3.3009708737864076, + "c6": 2.2006472491909386, + "c7": 1.1003236245954693 }, "rgb": [222, 0, 59] }, @@ -173751,23 +173751,23 @@ "year": 1760, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 23.292714501541447, - "c2": 2.7691277629826274, - "c3": 7.845257965956407, - "c4": 27.280209871887855, - "c5": 30.621600539998155, - "c6": -15.057002286552933, - "c7": 7.14615518321493 + "points": { + "c1": -35.12026558269873, + "c2": 3.8770809812253475, + "c3": -26.636384250449204, + "c4": -6.8359759778841, + "c5": -32.9985734465379, + "c6": 12.436991444408342, + "c7": 12.348556581451739 }, - "vertexSeeds": { - "c1": 2.7860261010284164, - "c2": 2.790543281211413, - "c3": 2.7082272288973863, - "c4": 2.866078939784345, - "c5": 2.814944115714502, - "c6": 2.7867424983530045, - "c7": 2.897964692508731 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153955, + "c3": 3.5367545076282907, + "c4": 2.8294036061026344, + "c5": 2.1220527045769777, + "c6": 1.414701803051313, + "c7": 0.7073509015256565 }, "rgb": [222, 0, 59] }, @@ -173778,23 +173778,23 @@ "year": 1760, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -34.7811445569155, - "c2": 2.6926391033189248, - "c3": 32.1743460718761, - "c4": -26.066990059448727, - "c5": -34.09433480136424, - "c6": 8.282658878221326, - "c7": -11.25468713425057 + "points": { + "c1": -23.67867202429629, + "c2": 11.975103291512589, + "c3": -18.909498255804603, + "c4": 23.798997070323068, + "c5": 24.48701199386543, + "c6": -33.169438117178444, + "c7": -24.07788285642434 }, - "vertexSeeds": { - "c1": 5.397583342183227, - "c2": 5.976947076791784, - "c3": 5.578878034582361, - "c4": 4.810081448885839, - "c5": 4.533283101448311, - "c6": 5.923554306665186, - "c7": 4.689655837816325 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233011, + "c3": 7.6051779935275095, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.0420711974110013, + "c7": 1.5210355987055006 }, "rgb": [222, 0, 59] }, @@ -173805,23 +173805,23 @@ "year": 1760, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -26.951309088305905, - "c2": 14.744192332424596, - "c3": -19.578719100271567, - "c4": 24.215873730872815, - "c5": -40.070185878206395, - "c6": -38.89797634876772, - "c7": 12.280596747349271 + "points": { + "c1": 19.38040772756316, + "c2": 26.474770758081277, + "c3": -17.6365388834696, + "c4": 19.07904244688946, + "c5": 26.941798769954218, + "c6": 26.452502139764533, + "c7": -27.2549027994533 }, - "vertexSeeds": { - "c1": 10.164950399877021, - "c2": 9.451067342411225, - "c3": 9.539191384228467, - "c4": 8.436491333678752, - "c5": 10.018286704522462, - "c6": 8.32468330855965, - "c7": 8.999498927555619 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116502, + "c3": 12.135922330097092, + "c4": 9.708737864077671, + "c5": 7.281553398058251, + "c6": 4.854368932038841, + "c7": 2.4271844660194204 }, "rgb": [222, 0, 59] }, @@ -173832,23 +173832,23 @@ "year": 1761, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": 35.86514371110618, - "c2": 46.61961884948675, - "c3": -32.23789253758636, - "c4": 29.8111538115811, - "c5": -18.191187671675436, - "c6": -24.533340006540964, - "c7": 25.040391167582946 + "points": { + "c1": 51.00914199028639, + "c2": -48.968055004910156, + "c3": -31.553227613475475, + "c4": -51.10477637001111, + "c5": 43.963430238532986, + "c6": -35.20032249554182, + "c7": -46.866813046097946 }, - "vertexSeeds": { - "c1": 8.393649637560848, - "c2": 7.14032271794684, - "c3": 7.282529742022607, - "c4": 9.636800450545735, - "c5": 7.1437769327841245, - "c6": 9.292426350416047, - "c7": 9.50523094820019 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110953, + "c3": 11.558021266759132, + "c4": 9.246417013407305, + "c5": 6.934812760055476, + "c6": 4.623208506703655, + "c7": 2.3116042533518275 }, "rgb": [58, 15, 49] }, @@ -173859,23 +173859,23 @@ "year": 1760, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -19.84305753229446, - "c2": -37.19580024134958, - "c3": -5.163728302870041, - "c4": 40.47649548665827, - "c5": 41.2917584229264, - "c6": -29.210075778170662, - "c7": 15.925144863189466 + "points": { + "c1": 29.82244538403912, + "c2": -29.65643263282073, + "c3": 23.70996692631281, + "c4": 37.946782835780915, + "c5": -19.38969223449155, + "c6": 3.6387000782319134, + "c7": 8.787079330440648 }, - "vertexSeeds": { - "c1": 8.536807059499992, - "c2": 7.135725189394512, - "c3": 7.665317704492427, - "c4": 7.558194722154005, - "c5": 8.058091287336016, - "c6": 7.928097234731343, - "c7": 7.674952486994181 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778086, + "c3": 10.217290799815071, + "c4": 8.173832639852057, + "c5": 6.130374479889043, + "c6": 4.086916319926028, + "c7": 2.043458159963014 }, "rgb": [238, 201, 159] }, @@ -173886,23 +173886,23 @@ "year": 1760, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": 26.491455137856818, - "c2": 9.654006602753299, - "c3": 14.056296395745044, - "c4": -1.414191770626445, - "c5": 23.804393407959665, - "c6": -17.38135621560906, - "c7": -22.860191274985386 + "points": { + "c1": -5.7955612637607175, + "c2": 37.55061159817946, + "c3": -14.987090774164933, + "c4": -17.797697514122554, + "c5": 10.972680027216256, + "c6": 12.096524021647873, + "c7": 42.86129690291585 }, - "vertexSeeds": { - "c1": 6.914834580513272, - "c2": 7.0124787452636745, - "c3": 6.743526559775297, - "c4": 6.889476974695652, - "c5": 7.026585219677777, - "c6": 6.656027304988059, - "c7": 6.685052784629917 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721212, + "c3": 8.460471567267696, + "c4": 6.76837725381415, + "c5": 5.076282940360606, + "c6": 3.3841886269070613, + "c7": 1.6920943134535449 }, "rgb": [222, 0, 59] }, @@ -173913,23 +173913,23 @@ "year": 1761, "resistanceReported": false, "duration": 58665600, - "curveSeeds": { - "c1": -45.95685952169078, - "c2": 68.8355993236829, - "c3": -42.47889257134355, - "c4": -49.49229705468614, - "c5": 6.167655560314415, - "c6": -61.37562185824902, - "c7": 11.389490390220516 + "points": { + "c1": 60.254692616789114, + "c2": -59.91448831047789, + "c3": 44.22497157770323, + "c4": 7.154498229611079, + "c5": 21.591276930123172, + "c6": 18.03131113800937, + "c7": -66.49361557624128 }, - "vertexSeeds": { - "c1": 9.58805432999723, - "c2": 9.822036793928158, - "c3": 9.548928737720697, - "c4": 9.780084531270687, - "c5": 9.680905715036706, - "c6": 9.85146008569583, - "c7": 9.529436166539822 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593617, + "c3": 11.83541377716135, + "c4": 9.468331021729078, + "c5": 7.101248266296809, + "c6": 4.734165510864539, + "c7": 2.3670827554322695 }, "rgb": [238, 201, 159] }, @@ -173940,23 +173940,23 @@ "year": 1760, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": -17.008010063540713, - "c2": 0.1499133795810259, - "c3": -13.119906061197275, - "c4": 10.509452449081394, - "c5": 2.804387373627641, - "c6": 1.7904939225648278, - "c7": -5.4230027052468 + "points": { + "c1": -8.730236340185764, + "c2": -4.3947490927939725, + "c3": 19.381487910197766, + "c4": 7.064878477641095, + "c5": 17.713353513211093, + "c6": 8.678407222292023, + "c7": 9.097567651996577 }, - "vertexSeeds": { - "c1": 4.541317031509594, - "c2": 4.3490580815703925, - "c3": 4.432437767830898, - "c4": 4.3016200990148405, - "c5": 4.346521206364637, - "c6": 4.447124048594775, - "c7": 4.528592107394839 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.5464632454923715, + "c3": 5.455386037910309, + "c4": 4.364308830328247, + "c5": 3.2732316227461857, + "c6": 2.1821544151641237, + "c7": 1.0910772075820618 }, "rgb": [222, 0, 59] }, @@ -173967,23 +173967,23 @@ "year": 1760, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 10.004286109478734, - "c2": 34.39893016150987, - "c3": 25.520032408812398, - "c4": 43.390100612448705, - "c5": -33.393926646768946, - "c6": 41.64958099588111, - "c7": -31.055419300449913 + "points": { + "c1": -44.62101055114563, + "c2": 30.698969089732145, + "c3": 9.497411317944156, + "c4": -28.354317479912268, + "c5": 33.577214369898016, + "c6": 21.91720863491959, + "c7": -26.982088771691153 }, - "vertexSeeds": { - "c1": 5.187823834196891, - "c2": 5.187823834196891, - "c3": 5.187823834196891, - "c4": 5.187823834196891, - "c5": 5.187823834196891, - "c6": 5.187823834196891, - "c7": 5.187823834196891 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -173994,23 +173994,23 @@ "year": 1760, "resistanceReported": false, "duration": 4233600, - "curveSeeds": { - "c1": -10.584744699672493, - "c2": -14.136450383901352, - "c3": -12.195032563201181, - "c4": -10.741282707084466, - "c5": 3.9405844931980987, - "c6": -2.6280602661373162, - "c7": -7.177315941947789 + "points": { + "c1": -2.37095298421883, + "c2": 15.057888107877876, + "c3": -5.399574623439303, + "c4": -16.436682594910593, + "c5": -8.470511640178954, + "c6": 15.891710060833969, + "c7": 10.657774192556381 }, - "vertexSeeds": { - "c1": 2.462549469883727, - "c2": 2.3867230256658702, - "c3": 2.262863690782576, - "c4": 2.2785306593313086, - "c5": 2.452939184130459, - "c6": 2.248253281931203, - "c7": 2.297391463033597 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484034, + "c3": 2.958853444290339, + "c4": 2.3670827554322704, + "c5": 1.7753120665742017, + "c6": 1.183541377716133, + "c7": 0.5917706888580688 }, "rgb": [58, 15, 49] }, @@ -174021,23 +174021,23 @@ "year": 1760, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 9.04527341073478, - "c2": 8.372202696779574, - "c3": -7.657266952139793, - "c4": 0.6419634752278469, - "c5": -23.117798568642403, - "c6": 26.14712106263218, - "c7": 32.965541641357916 + "points": { + "c1": -26.84441412121016, + "c2": -2.853830599631671, + "c3": 14.853205659471378, + "c4": -23.113563497062835, + "c5": 0.8872704558825717, + "c6": -33.24114881840737, + "c7": 27.53342860114401 }, - "vertexSeeds": { - "c1": 3.3454995179493885, - "c2": 3.489135990181071, - "c3": 3.4624662477790022, - "c4": 3.5340738931776263, - "c5": 3.3193272148229616, - "c6": 3.475203680299392, - "c7": 3.4324314574308614 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360612, + "c3": 4.230235783633839, + "c4": 3.384188626907073, + "c5": 2.538141470180306, + "c6": 1.6920943134535331, + "c7": 0.8460471567267666 }, "rgb": [77, 76, 132] }, @@ -174048,23 +174048,23 @@ "year": 1760, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": 6.693548032434787, - "c2": -9.246159175371641, - "c3": -6.385168914897947, - "c4": 7.090527681340344, - "c5": 3.757516064856045, - "c6": 10.386208069544793, - "c7": 10.790761977330991 + "points": { + "c1": 1.470102959631859, + "c2": 6.363417102886753, + "c3": 1.4623360378279067, + "c4": -10.754677823444258, + "c5": 6.937874495636855, + "c6": 13.779658888094989, + "c7": -9.738058659697366 }, - "vertexSeeds": { - "c1": 4.037615867550534, - "c2": 3.8665841287121476, - "c3": 4.145868775865566, - "c4": 4.002607904960787, - "c5": 3.974216565834347, - "c6": 3.9891026880847926, - "c7": 4.009947633972969 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -174075,23 +174075,23 @@ "year": 1760, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 4.837890591225573, - "c2": -16.563418248326776, - "c3": -17.316883066082344, - "c4": 10.674648264390427, - "c5": 13.363371760053532, - "c6": -1.607524818496529, - "c7": -21.677702182668813 + "points": { + "c1": -0.23745823008312072, + "c2": -13.511852641834881, + "c3": -15.393587206566671, + "c4": -14.160139125517915, + "c5": -14.023654198111853, + "c6": -9.721237887678196, + "c7": -3.4490153521474554 }, - "vertexSeeds": { - "c1": 1.9701017355526425, - "c2": 1.9588782701172034, - "c3": 2.00339905170076, - "c4": 2.045165891000484, - "c5": 1.934904539143137, - "c6": 1.9937324598357775, - "c7": 2.0179581361920675 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037444, + "c3": 2.473416551086454, + "c4": 1.9787332408691631, + "c5": 1.4840499306518722, + "c6": 0.9893666204345816, + "c7": 0.4946833102172908 }, "rgb": [86, 146, 138] }, @@ -174102,23 +174102,23 @@ "year": 1760, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 37.478897461841086, - "c2": -13.339267835172343, - "c3": -34.60011877781955, - "c4": 21.899565869884476, - "c5": 29.928197079382954, - "c6": -36.046296976374606, - "c7": 17.657625151604748 + "points": { + "c1": -31.147832315679317, + "c2": -37.742067737634045, + "c3": 35.7845233669335, + "c4": -7.378868242248458, + "c5": 32.08729223719688, + "c6": 30.377420920615236, + "c7": -27.114369552289386 }, - "vertexSeeds": { - "c1": 3.861607490967495, - "c2": 3.8577139769759694, - "c3": 3.8891755244897155, - "c4": 3.7001138464812096, - "c5": 4.100407301334594, - "c6": 4.100587105766558, - "c7": 3.7947286247454013 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [86, 146, 138] }, @@ -174129,23 +174129,23 @@ "year": 1760, "resistanceReported": false, "duration": 3369600, - "curveSeeds": { - "c1": -2.9892012153566903, - "c2": 2.0906735318717136, - "c3": 3.2214041460625378, - "c4": -12.696343693679403, - "c5": -4.496879089634861, - "c6": -4.126040596498253, - "c7": -8.023372540431716 + "points": { + "c1": 13.267986372414013, + "c2": 6.287754553266799, + "c3": 1.5966846206139795, + "c4": -13.886595308040672, + "c5": -12.024295839664495, + "c6": -0.6017014970838623, + "c7": -1.995693696316259 }, - "vertexSeeds": { - "c1": 13.260575961768925, - "c2": 13.417947398718953, - "c3": 13.565260908609735, - "c4": 13.519165670934024, - "c5": 13.339971861560342, - "c6": 13.419391389533356, - "c7": 13.289599288782062 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155363, + "c3": 16.181229773462825, + "c4": 12.94498381877029, + "c5": 9.70873786407761, + "c6": 6.472491909385073, + "c7": 3.2362459546925364 }, "rgb": [77, 76, 132] }, @@ -174156,23 +174156,23 @@ "year": 1761, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": -8.465809107444784, - "c2": 19.726094772463654, - "c3": 44.52976020362678, - "c4": 36.82192684691253, - "c5": -42.01893543067433, - "c6": -7.5695233557998876, - "c7": 20.80392122764229 + "points": { + "c1": 17.283736134341297, + "c2": 36.42420476142263, + "c3": 5.788958314028093, + "c4": -18.40088066392829, + "c5": -34.647715497722565, + "c6": 39.377331534231075, + "c7": 46.80106607570137 }, - "vertexSeeds": { - "c1": 6.958618182426083, - "c2": 6.952607041496498, - "c3": 6.970166989592088, - "c4": 6.895302276779086, - "c5": 6.887831463786435, - "c6": 6.9289236576190945, - "c7": 6.97079275209819 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447987, + "c3": 8.321775312066537, + "c4": 6.657420249653202, + "c5": 4.993065187240001, + "c6": 3.3287101248266677, + "c7": 1.6643550624133339 }, "rgb": [77, 76, 132] }, @@ -174183,23 +174183,23 @@ "year": 1760, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 40.86556965560899, - "c2": -0.3147760267393025, - "c3": -22.52765220266842, - "c4": 8.67416323379372, - "c5": 15.676803499852262, - "c6": 19.95588311862847, - "c7": -9.318860142758126 + "points": { + "c1": -16.647859955074164, + "c2": -38.24126165469436, + "c3": -21.62139060584504, + "c4": 36.390032102462946, + "c5": 26.273447391746494, + "c6": 32.235106166286066, + "c7": -5.990444377796415 }, - "vertexSeeds": { - "c1": 1.8337449811190165, - "c2": 1.7317070861322592, - "c3": 1.701994603411573, - "c4": 1.835494274988367, - "c5": 1.5600157679315605, - "c6": 1.5902203117956748, - "c7": 1.8323303952052412 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.7184466019417473, + "c3": 2.2653721682847894, + "c4": 1.8122977346278315, + "c5": 1.3592233009708736, + "c6": 0.9061488673139158, + "c7": 0.4530744336569579 }, "rgb": [222, 0, 59] }, @@ -174210,23 +174210,23 @@ "year": 1760, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 31.96752791427634, - "c2": 21.78052487328425, - "c3": 23.897197308369073, - "c4": 32.75485740847558, - "c5": 30.504631878380444, - "c6": -16.278410506030944, - "c7": 30.442092160497914 + "points": { + "c1": -27.223063436930463, + "c2": -40.83165118192598, + "c3": 34.750715116366926, + "c4": 31.21465744266738, + "c5": 13.420619111675137, + "c6": -36.506518887271014, + "c7": 5.627061784068886 }, - "vertexSeeds": { - "c1": 7.084204256711972, - "c2": 7.021518943506269, - "c3": 7.442700810493407, - "c4": 6.826384713164743, - "c5": 7.04336396618127, - "c6": 7.473535771661954, - "c7": 7.348850217200447 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -174237,23 +174237,23 @@ "year": 1760, "resistanceReported": false, "duration": 1036800, - "curveSeeds": { - "c1": 10.379617109520284, - "c2": -3.645141858131425, - "c3": 7.1187149596462636, - "c4": 8.63877950280026, - "c5": 8.371711968773054, - "c6": 2.4829766951020567, - "c7": -10.655634022248801 + "points": { + "c1": -0.9817568150649443, + "c2": 7.2722221049703055, + "c3": -11.101453889952726, + "c4": 2.6781862112779695, + "c5": 5.452323161855544, + "c6": -8.395540764449196, + "c7": -7.921914802801587 }, - "vertexSeeds": { - "c1": 5.712429461360948, - "c2": 5.677979611879824, - "c3": 5.727512440655813, - "c4": 5.070389128039355, - "c5": 4.570028191202072, - "c6": 6.589100184187027, - "c7": 4.730159448096632 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238557, + "c3": 8.183079056865465, + "c4": 6.5464632454923715, + "c5": 4.909847434119278, + "c6": 3.2732316227461857, + "c7": 1.6366158113730929 }, "rgb": [86, 146, 138] }, @@ -174264,23 +174264,23 @@ "year": 1760, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -13.502486795788545, - "c2": 0.08258108752989557, - "c3": -14.681610384298786, - "c4": -27.946717600848043, - "c5": 7.032093995160523, - "c6": -26.307766669223277, - "c7": 18.560864321607355 + "points": { + "c1": -30.59634281545102, + "c2": 11.884023036964464, + "c3": 24.867567896843376, + "c4": -25.100900561424965, + "c5": -14.585395485348602, + "c6": 29.359907994732055, + "c7": 22.750517486585288 }, - "vertexSeeds": { - "c1": 3.319689838675645, - "c2": 3.336485564656628, - "c3": 3.454396994410242, - "c4": 3.4634651383567046, - "c5": 2.9747556974207185, - "c6": 3.3398240125257774, - "c7": 3.2653706245082392 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033284, + "c4": 3.328710124826629, + "c5": 2.496532593619973, + "c6": 1.6643550624133177, + "c7": 0.8321775312066556 }, "rgb": [86, 146, 138] }, @@ -174291,23 +174291,23 @@ "year": 1760, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -16.81158110473456, - "c2": 20.410940236089033, - "c3": 2.8865844830877307, - "c4": -29.90961402582065, - "c5": 24.36070114783837, - "c6": 21.334510851063307, - "c7": 24.46917579588426 + "points": { + "c1": 1.6328624498970896, + "c2": -6.079993231571844, + "c3": -27.13130313520179, + "c4": -8.580138670747282, + "c5": -14.617989069159158, + "c6": -16.856052421322662, + "c7": 32.177289460943655 }, - "vertexSeeds": { - "c1": 4.070256948743526, - "c2": 3.8726803783602044, - "c3": 4.01447125590326, - "c4": 4.305535667361401, - "c5": 4.085800916131949, - "c6": 4.3021987596252975, - "c7": 4.006929669819939 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [86, 146, 138] }, @@ -174318,23 +174318,23 @@ "year": 1760, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -0.21316288657048332, - "c2": -23.846258771795434, - "c3": -29.309027624620533, - "c4": 13.814130087611247, - "c5": -7.691774083663727, - "c6": -20.795534849827405, - "c7": 27.317041470160014 + "points": { + "c1": 17.908201992159746, + "c2": -9.941240077332989, + "c3": -7.5539009788204154, + "c4": -11.292145891322438, + "c5": -32.012336738153444, + "c6": -12.676937088985984, + "c7": 8.574710570562189 }, - "vertexSeeds": { - "c1": 1.3921069693484858, - "c2": 1.409221776106381, - "c3": 1.3657617750044901, - "c4": 1.5623527218860647, - "c5": 1.589688681209432, - "c6": 1.3867399636111577, - "c7": 1.4108934600942487 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [86, 146, 138] }, @@ -174345,23 +174345,23 @@ "year": 1762, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": -60.37307330686255, - "c2": -7.561063056826157, - "c3": 26.441979097788206, - "c4": -68.41554616770935, - "c5": 47.38350665452289, - "c6": -31.956232345882988, - "c7": -46.487974186294515 + "points": { + "c1": -48.682884459533255, + "c2": 11.79786438121991, + "c3": -45.94914196169614, + "c4": -19.281722620202174, + "c5": 8.046146966281142, + "c6": 48.61149496369049, + "c7": 61.482717866469784 }, - "vertexSeeds": { - "c1": 5.948700064297694, - "c2": 6.0249110853921835, - "c3": 5.960740866631501, - "c4": 6.153614024837321, - "c5": 6.045226774456786, - "c6": 5.9014962454727415, - "c7": 6.227762371936468 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [86, 146, 138] }, @@ -174372,23 +174372,23 @@ "year": 1760, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -12.169014753470794, - "c2": -22.42150422826849, - "c3": -28.37634025556912, - "c4": -23.16915890399305, - "c5": -19.67374009397811, - "c6": -21.32535924556514, - "c7": 28.551442318704225 + "points": { + "c1": -17.98872247061641, + "c2": -24.929663360641133, + "c3": -23.386941880493318, + "c4": 4.316375526807377, + "c5": 7.063256373089963, + "c6": 26.952354182776972, + "c7": -21.00028998900617 }, - "vertexSeeds": { - "c1": 3.844669971502046, - "c2": 4.300450036441526, - "c3": 4.094891881603226, - "c4": 4.065769529996559, - "c5": 4.387581223583695, - "c6": 4.378195176700618, - "c7": 3.9513682405223363 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170594, + "c3": 5.270457697642166, + "c4": 4.216366158113731, + "c5": 3.162274618585297, + "c6": 2.1081830790568623, + "c7": 1.0540915395284347 }, "rgb": [238, 201, 159] }, @@ -174399,23 +174399,23 @@ "year": 1760, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -30.00053616173639, - "c2": 20.288033833228873, - "c3": 32.16753253711455, - "c4": 8.944791809334369, - "c5": -23.857970586736542, - "c6": 3.539780608473336, - "c7": -18.483622665133655 + "points": { + "c1": -24.36992379157754, + "c2": 36.81082538940842, + "c3": 28.649568036339033, + "c4": 12.120408069053546, + "c5": 8.270260207782549, + "c6": 22.065208185290203, + "c7": -21.30850877299956 }, - "vertexSeeds": { - "c1": 7.226909774008135, - "c2": 7.0394108381389175, - "c3": 6.788767543896424, - "c4": 7.009274272978855, - "c5": 7.0458949523791246, - "c6": 6.4272569000267055, - "c7": 6.654508831621112 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.40221914008322, + "c3": 8.668515950069352, + "c4": 6.934812760055472, + "c5": 5.201109570041604, + "c6": 3.467406380027736, + "c7": 1.733703190013868 }, "rgb": [238, 201, 159] }, @@ -174426,23 +174426,23 @@ "year": 1761, "resistanceReported": false, "duration": 40435200, - "curveSeeds": { - "c1": -42.28011536520507, - "c2": 44.93695301869004, - "c3": -9.137914651387774, - "c4": -30.26043432170204, - "c5": 19.54700045474339, - "c6": -7.405903040879643, - "c7": -12.966279175198018 + "points": { + "c1": 21.200804600892504, + "c2": -45.588542539684994, + "c3": 22.07695417626031, + "c4": 23.22711389683773, + "c5": -48.58782181275233, + "c6": 6.226883299553428, + "c7": -31.24383434249128 }, - "vertexSeeds": { - "c1": 5.685414625887519, - "c2": 6.027861836809816, - "c3": 5.971298638050442, - "c4": 5.883999911137255, - "c5": 5.759896472802071, - "c6": 5.862454604105947, - "c7": 6.283928847998045 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353673, + "c3": 7.674526121128059, + "c4": 6.139620896902444, + "c5": 4.6047156726768295, + "c6": 3.069810448451215, + "c7": 1.5349052242256145 }, "rgb": [77, 76, 132] }, @@ -174453,23 +174453,23 @@ "year": 1761, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 33.23362269463317, - "c2": -40.0698488283152, - "c3": 25.550928578893732, - "c4": -0.6903350432050317, - "c5": 14.855636683939636, - "c6": 27.608116908099788, - "c7": 17.80514864447658 + "points": { + "c1": 30.189934550011557, + "c2": 35.97408478386501, + "c3": 16.46377984029946, + "c4": 45.535643193543365, + "c5": -17.156205504081054, + "c6": -22.265710941276545, + "c7": 30.172773796696504 }, - "vertexSeeds": { - "c1": 6.850955014146681, - "c2": 7.184860878665508, - "c3": 6.93565807226251, - "c4": 7.350412976161423, - "c5": 7.15988329368193, - "c6": 6.86798863018434, - "c7": 7.22957291372998 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -174480,23 +174480,23 @@ "year": 1761, "resistanceReported": false, "duration": 53481600, - "curveSeeds": { - "c1": 36.871401669024806, - "c2": -41.73480324591916, - "c3": -55.681272274993695, - "c4": 47.91761148499312, - "c5": 53.732931797941475, - "c6": 14.779175528988148, - "c7": 47.47458453878649 + "points": { + "c1": -20.928624693749704, + "c2": 16.7646234827111, + "c3": 43.18832567303268, + "c4": -46.135624327001565, + "c5": -3.505410170881106, + "c6": 56.253431231497174, + "c7": 23.688941420872382 }, - "vertexSeeds": { - "c1": 4.008293229814324, - "c2": 4.31898682370564, - "c3": 4.417865216237171, - "c4": 4.279333974780595, - "c5": 3.8140990857841466, - "c6": 4.352843774489343, - "c7": 4.442187894165339 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -174507,23 +174507,23 @@ "year": 1761, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -10.291742040412338, - "c2": 35.23442424185782, - "c3": -16.03098798319307, - "c4": -27.601184774958476, - "c5": 10.1798274074782, - "c6": -33.67348467565591, - "c7": 28.720790727083767 + "points": { + "c1": 39.975197393894305, + "c2": -34.306573901520665, + "c3": 45.4641848472655, + "c4": -35.71133832355797, + "c5": -46.36817186656965, + "c6": 22.624226583776633, + "c7": 29.698166430464667 }, - "vertexSeeds": { - "c1": 1.746488927402593, - "c2": 1.7415237119426292, - "c3": 1.62331534508812, - "c4": 1.506893214728792, - "c5": 1.730947184310176, - "c6": 1.7544968677065358, - "c7": 1.6604188528902208 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808588, + "c3": 2.172907998150715, + "c4": 1.7383263985205735, + "c5": 1.3037447988904294, + "c6": 0.8691631992602854, + "c7": 0.43458159963014403 }, "rgb": [77, 76, 132] }, @@ -174534,23 +174534,23 @@ "year": 1760, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 17.480173944223367, - "c2": 32.992091005391735, - "c3": 2.540515056591886, - "c4": 12.566332741951804, - "c5": 22.12909820198319, - "c6": -7.065564078218134, - "c7": 3.940067299288522 + "points": { + "c1": 24.600242178105965, + "c2": -14.212353759276379, + "c3": 15.94408733071738, + "c4": 16.606919730718566, + "c5": -10.82042076290043, + "c6": -9.37363015242073, + "c7": -6.941106364248828 }, - "vertexSeeds": { - "c1": 4.804204796604004, - "c2": 4.9013921187662906, - "c3": 4.713173857065318, - "c4": 4.832591840524633, - "c5": 4.970611813434816, - "c6": 4.411961059229517, - "c7": 4.638731994557244 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699027, + "c3": 6.148867313915859, + "c4": 4.9190938511326845, + "c5": 3.6893203883495165, + "c6": 2.4595469255663422, + "c7": 1.229773462783168 }, "rgb": [77, 76, 132] }, @@ -174561,23 +174561,23 @@ "year": 1761, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -31.250665549131536, - "c2": 8.232818364667153, - "c3": -19.555289076580927, - "c4": -34.586392557446395, - "c5": -7.831017664485593, - "c6": -23.136821074942674, - "c7": -32.16201593217657 + "points": { + "c1": -45.718581387194845, + "c2": -38.24406020891184, + "c3": 34.81907965156905, + "c4": -35.85120396597222, + "c5": -12.705976395615373, + "c6": -45.98608682053149, + "c7": -21.428552602676206 }, - "vertexSeeds": { - "c1": 12.994014111638645, - "c2": 9.70728007072682, - "c3": 8.327936088517227, - "c4": 12.909698741744606, - "c5": 8.046934600995737, - "c6": 11.3679057660453, - "c7": 8.375518108281053 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155342, + "c3": 16.181229773462785, + "c4": 12.944983818770229, + "c5": 9.708737864077673, + "c6": 6.472491909385117, + "c7": 3.236245954692556 }, "rgb": [238, 201, 159] }, @@ -174588,23 +174588,23 @@ "year": 1760, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 26.46832480342529, - "c2": -28.19874827927716, - "c3": -6.116253655142355, - "c4": 35.56006252214978, - "c5": -24.20829357093195, - "c6": -3.620107953991912, - "c7": -27.060269601352914 + "points": { + "c1": 0.985263368953845, + "c2": -4.834638594291739, + "c3": -37.48032998718913, + "c4": 21.161340327141616, + "c5": 15.092988566862395, + "c6": 22.312385053503398, + "c7": -23.89692331862132 }, - "vertexSeeds": { - "c1": 11.860859500797556, - "c2": 10.40243644690676, - "c3": 12.76621174069312, - "c4": 10.073034997478885, - "c5": 10.439125934235902, - "c6": 12.78079109001751, - "c7": 9.863786759343988 + "offsets": { + "c1": 21.326860841423947, + "c2": 18.280166435506242, + "c3": 15.233472029588539, + "c4": 12.18677762367082, + "c5": 9.140083217753114, + "c6": 6.09338881183541, + "c7": 3.046694405917705 }, "rgb": [58, 15, 49] }, @@ -174615,23 +174615,23 @@ "year": 1760, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 21.38161224574645, - "c2": 6.609557521139603, - "c3": 20.603286377056474, - "c4": -21.246330615577413, - "c5": -20.21712869136259, - "c6": -17.208975434959516, - "c7": 17.651632626824966 + "points": { + "c1": 13.87163112367784, + "c2": 13.610683672851426, + "c3": -24.489305913719285, + "c4": -18.637688462556184, + "c5": 11.703411125344818, + "c6": -4.702033771355836, + "c7": -21.71514324626364 }, - "vertexSeeds": { - "c1": 1.7935486489207288, - "c2": 1.4680117482846915, - "c3": 1.6881895196130356, - "c4": 1.651410954559445, - "c5": 1.496711299628898, - "c6": 1.8220137732745059, - "c7": 1.7295679015542005 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210815, + "c3": 2.1960240406842355, + "c4": 1.7568192325473881, + "c5": 1.3176144244105408, + "c6": 0.8784096162736951, + "c7": 0.43920480813684754 }, "rgb": [77, 76, 132] }, @@ -174642,23 +174642,23 @@ "year": 1761, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -26.733127762361537, - "c2": -16.268950293510798, - "c3": 28.58546272270309, - "c4": -0.9121989944972668, - "c5": 31.29829562339429, - "c6": -4.50027117104311, - "c7": 31.76022376729663 + "points": { + "c1": -7.6275154397966105, + "c2": 14.828445228934882, + "c3": 14.999331582475158, + "c4": 4.753526996393809, + "c5": -8.34791820302943, + "c6": 35.29039680936041, + "c7": 42.08199944916988 }, - "vertexSeeds": { - "c1": 6.200837830559254, - "c2": 6.169385439021207, - "c3": 6.306141799595011, - "c4": 6.323814345337293, - "c5": 5.843332609758305, - "c6": 6.009363750021836, - "c7": 5.805335174069827 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.57004160887656, + "c3": 7.975034674063798, + "c4": 6.380027739251049, + "c5": 4.785020804438287, + "c6": 3.1900138696255245, + "c7": 1.5950069348127622 }, "rgb": [86, 146, 138] }, @@ -174669,23 +174669,23 @@ "year": 1760, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 28.443129674078666, - "c2": 19.700670606192997, - "c3": 14.954045972135962, - "c4": 8.226660519623454, - "c5": 26.81987682474188, - "c6": -5.593975389510472, - "c7": -23.647309618915088 + "points": { + "c1": -3.7466876381426637, + "c2": 1.0504821840105407, + "c3": 19.621965947090857, + "c4": 28.637659550649815, + "c5": -30.669462321951976, + "c6": -28.4962240422049, + "c7": 12.132397181616618 }, - "vertexSeeds": { - "c1": 4.429846700664699, - "c2": 4.250473388516749, - "c3": 4.304200349479695, - "c4": 3.8734218197190033, - "c5": 4.253651290584605, - "c6": 4.302200461710952, - "c7": 3.813172906384175 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175682, + "c4": 4.234858992140545, + "c5": 3.1761442441054086, + "c6": 2.1174294960702724, + "c7": 1.0587147480351362 }, "rgb": [86, 146, 138] }, @@ -174696,23 +174696,23 @@ "year": 1761, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -30.658033568434803, - "c2": -9.311878372438606, - "c3": -2.214238253600719, - "c4": 10.337831540219923, - "c5": 28.574222982560812, - "c6": 29.270044938185904, - "c7": 7.631527349733254 + "points": { + "c1": -31.707798171789232, + "c2": 14.065510025493786, + "c3": -4.618055194646189, + "c4": 30.139948538666943, + "c5": -36.39200912984734, + "c6": -29.34462949183504, + "c7": 11.032479316685404 }, - "vertexSeeds": { - "c1": 4.350257041288691, - "c2": 3.8257303522064405, - "c3": 3.9791492923261833, - "c4": 4.405439565353861, - "c5": 3.888754535490882, - "c6": 3.9901241213385905, - "c7": 4.246981384221161 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -174723,23 +174723,23 @@ "year": 1761, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 22.220851039200546, - "c2": -31.555728780464122, - "c3": -19.220927808762134, - "c4": 3.6290452659100936, - "c5": -38.92329734196741, - "c6": 17.437194504165184, - "c7": -33.579159672555704 + "points": { + "c1": 11.988447711259823, + "c2": -27.483864153678105, + "c3": -1.6391982885115652, + "c4": -11.922707063368758, + "c5": 30.319164333881027, + "c6": -17.51152895869646, + "c7": -19.778636107644246 }, - "vertexSeeds": { - "c1": 3.143241406199763, - "c2": 3.1778154889814254, - "c3": 3.3491214300375103, - "c4": 3.428255738665209, - "c5": 3.1690936618647387, - "c6": 3.320263283150039, - "c7": 3.1948897776192484 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199721, + "c3": 4.137771613499766, + "c4": 3.3102172907998115, + "c5": 2.4826629680998646, + "c6": 1.65510864539991, + "c7": 0.827554322699955 }, "rgb": [86, 146, 138] }, @@ -174750,23 +174750,23 @@ "year": 1760, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 27.24290141076504, - "c2": -1.7066866303218866, - "c3": 28.46662348380259, - "c4": 9.694304298405019, - "c5": 22.927882020206052, - "c6": -6.19349729089166, - "c7": -25.84340264951635 + "points": { + "c1": -6.498712099200013, + "c2": 21.04375765643785, + "c3": -5.653800244551402, + "c4": 3.1211459893331615, + "c5": 0.005106838259543167, + "c6": 17.32283136726772, + "c7": 28.161839130247163 }, - "vertexSeeds": { - "c1": 1.5713285966436887, - "c2": 1.6736555547839758, - "c3": 1.7986032765170181, - "c4": 1.614219051341343, - "c5": 1.768825315576013, - "c6": 1.4911752866773829, - "c7": 1.5806976689042964 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210815, + "c3": 2.1960240406842355, + "c4": 1.7568192325473881, + "c5": 1.3176144244105408, + "c6": 0.8784096162736951, + "c7": 0.43920480813684754 }, "rgb": [58, 15, 49] }, @@ -174777,23 +174777,23 @@ "year": 1761, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 4.173964196841716, - "c2": 5.646683937980704, - "c3": -34.222648346520636, - "c4": 7.635848011702684, - "c5": 17.343567061286187, - "c6": 36.12736222481074, - "c7": -4.969007607541883 + "points": { + "c1": 5.047373241430833, + "c2": 39.05697843157746, + "c3": -39.63356180946803, + "c4": -11.254739653435202, + "c5": 33.072280578743786, + "c6": -30.637239486130323, + "c7": -7.989495225281928 }, - "vertexSeeds": { - "c1": 3.5680708233056406, - "c2": 3.324914589041192, - "c3": 3.4848703140258728, - "c4": 3.204672649236422, - "c5": 3.473385017058117, - "c6": 3.4984636595730167, - "c7": 3.5564811126864737 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762831, + "c3": 4.461396208969026, + "c4": 3.5691169671752223, + "c5": 2.6768377253814184, + "c6": 1.784558483587608, + "c7": 0.892279241793804 }, "rgb": [58, 15, 49] }, @@ -174804,23 +174804,23 @@ "year": 1760, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -23.592912093125257, - "c2": 14.915663646370913, - "c3": -4.4749263721353145, - "c4": -10.177042895933479, - "c5": -0.6512691009531508, - "c6": 25.096154970458617, - "c7": 19.84729145916761 + "points": { + "c1": 26.296084956177513, + "c2": -3.1008512769068943, + "c3": 19.838647969583892, + "c4": 8.206896205302339, + "c5": 20.99328090115713, + "c6": -19.03683514530247, + "c7": -1.753301743414724 }, - "vertexSeeds": { - "c1": 3.405917403378632, - "c2": 3.292110595250255, - "c3": 3.5139528578015913, - "c4": 3.230389284608049, - "c5": 3.1878175925842824, - "c6": 3.171489816545559, - "c7": 3.4679134397323685 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [222, 0, 59] }, @@ -174831,23 +174831,23 @@ "year": 1761, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": -30.393417725100324, - "c2": -24.840445382991707, - "c3": 30.119183030273277, - "c4": -27.032014486777335, - "c5": 41.419416877864066, - "c6": 36.003598963546736, - "c7": -16.334468784870907 + "points": { + "c1": 5.888794563865311, + "c2": 37.55846026869757, + "c3": -36.484135511340526, + "c4": 20.52084308326424, + "c5": -35.50879275635159, + "c6": 19.147978394175723, + "c7": 47.968962804439045 }, - "vertexSeeds": { - "c1": 5.877458715374203, - "c2": 5.565500454187915, - "c3": 5.386844289853633, - "c4": 5.3167377699988485, - "c5": 5.6257705562272795, - "c6": 5.491035877967303, - "c7": 5.644984102456907 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267685, + "c3": 7.050392972723073, + "c4": 5.640314378178446, + "c5": 4.230235783633835, + "c6": 2.820157189089223, + "c7": 1.4100785945446115 }, "rgb": [86, 146, 138] }, @@ -174858,23 +174858,23 @@ "year": 1761, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 14.095407252560989, - "c2": -5.416031853802728, - "c3": -7.751252914581592, - "c4": 25.286647287507577, - "c5": 19.623861377548515, - "c6": -5.604375475543797, - "c7": -34.05510398958613 + "points": { + "c1": 5.110578011985531, + "c2": -23.34440792592705, + "c3": -23.28296169583175, + "c4": -21.15176625174522, + "c5": -22.894587748753757, + "c6": 32.62147892891488, + "c7": 5.626294176610948 }, - "vertexSeeds": { - "c1": 1.0423793974185158, - "c2": 1.0541495297673567, - "c3": 1.0560899101449626, - "c4": 0.9061098458992407, - "c5": 0.9348998358275354, - "c6": 0.947137026926711, - "c7": 0.9767649011704603 + "offsets": { + "c1": 1.8446601941747571, + "c2": 1.5811373092926486, + "c3": 1.3176144244105414, + "c4": 1.0540915395284327, + "c5": 0.7905686546463243, + "c6": 0.5270457697642171, + "c7": 0.26352288488210857 }, "rgb": [238, 201, 159] }, @@ -174885,23 +174885,23 @@ "year": 1761, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 30.932598033151187, - "c2": 28.077236731973237, - "c3": 12.627909220182744, - "c4": -32.27289055041929, - "c5": -5.167282349386902, - "c6": 9.478564989868843, - "c7": 25.464166233076263 + "points": { + "c1": -5.0279805469624606, + "c2": 10.56492705401957, + "c3": 32.243915633955574, + "c4": -34.852089668158726, + "c5": 41.57690221151628, + "c6": -17.479132854998106, + "c7": 41.68611111585249 }, - "vertexSeeds": { - "c1": 6.126064529327655, - "c2": 6.609075542722523, - "c3": 6.229134435306145, - "c4": 6.4746010671463, - "c5": 6.736495811482963, - "c6": 7.46076734588631, - "c7": 7.246494581954751 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471568, + "c4": 7.156726768377254, + "c5": 5.367545076282941, + "c6": 3.578363384188627, + "c7": 1.7891816920943135 }, "rgb": [86, 146, 138] }, @@ -174912,23 +174912,23 @@ "year": 1761, "resistanceReported": true, "duration": 28166400, - "curveSeeds": { - "c1": 14.18204747434526, - "c2": -3.2181584793003637, - "c3": -9.628330026993403, - "c4": -8.903636393127968, - "c5": -21.74946410920001, - "c6": -33.44727443499612, - "c7": -40.414070799847316 + "points": { + "c1": -35.813066610580144, + "c2": -2.1966600624956882, + "c3": -22.740298498103915, + "c4": -10.527007057594673, + "c5": 25.078786458080714, + "c6": -31.483389109123234, + "c7": 39.10571278494547 }, - "vertexSeeds": { - "c1": 5.788752944982623, - "c2": 5.738122056756303, - "c3": 5.652257315268228, - "c4": 5.78525494617182, - "c5": 5.61926696441355, - "c6": 5.755701302261414, - "c7": 5.734583537289109 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147018, + "c3": 6.981044845122515, + "c4": 5.584835876098012, + "c5": 4.188626907073509, + "c6": 2.792417938049006, + "c7": 1.396208969024503 }, "rgb": [77, 76, 132] }, @@ -174939,23 +174939,23 @@ "year": 1761, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 16.870497882450543, - "c2": 11.30905654632516, - "c3": -16.51054713112277, - "c4": 14.661739676622815, - "c5": -21.342584011192784, - "c6": -24.743972305320575, - "c7": 28.12286497774206 + "points": { + "c1": -13.639596511944259, + "c2": -25.05736196514429, + "c3": -20.30718468344746, + "c4": -25.720027355586822, + "c5": -16.801655698110665, + "c6": 26.736727017728064, + "c7": 13.306327242889395 }, - "vertexSeeds": { - "c1": 6.011329115982618, - "c2": 5.635367683856561, - "c3": 5.875842255161477, - "c4": 7.038448298095814, - "c5": 7.067992890269352, - "c6": 5.966123930614627, - "c7": 5.425081330380298 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922329, + "c3": 8.576051779935275, + "c4": 6.860841423948219, + "c5": 5.1456310679611645, + "c6": 3.4304207119741097, + "c7": 1.7152103559870548 }, "rgb": [238, 201, 159] }, @@ -174966,23 +174966,23 @@ "year": 1762, "resistanceReported": false, "duration": 64195200, - "curveSeeds": { - "c1": 12.811262459934966, - "c2": 5.508087620504085, - "c3": -72.7767944028337, - "c4": 46.076754444266655, - "c5": -70.55682125943012, - "c6": -24.703633681740207, - "c7": 73.91078933256269 + "points": { + "c1": 5.884061877249195, + "c2": 55.830476528635174, + "c3": 43.97537757460462, + "c4": 76.80613593986514, + "c5": -17.36293208663993, + "c6": -53.31862030308332, + "c7": -9.668209174599284 }, - "vertexSeeds": { - "c1": 2.1406713375384254, - "c2": 2.3216096270137747, - "c3": 2.338011283111942, - "c4": 2.200972658633993, - "c5": 2.4094084570769407, - "c6": 2.232961651289501, - "c7": 2.050941438931273 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679605, + "c3": 2.912621359223302, + "c4": 2.330097087378641, + "c5": 1.7475728155339803, + "c6": 1.1650485436893216, + "c7": 0.5825242718446608 }, "rgb": [58, 15, 49] }, @@ -174993,23 +174993,23 @@ "year": 1761, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 40.88754139621412, - "c2": 5.555346273260547, - "c3": 38.18045099781959, - "c4": -5.737717775471303, - "c5": -18.292958790487464, - "c6": 9.287239465227131, - "c7": 28.179021680434047 + "points": { + "c1": 1.9112884903301293, + "c2": 27.607079960013166, + "c3": -13.435480500702301, + "c4": -24.615117295502664, + "c5": -4.521422850193801, + "c6": 10.942445231916182, + "c7": -24.880539500753805 }, - "vertexSeeds": { - "c1": 7.467460043010093, - "c2": 7.149532158087242, - "c3": 7.98909125132842, - "c4": 7.833751595253875, - "c5": 7.70669263420424, - "c6": 7.763956780259819, - "c7": 6.841404992565183 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [222, 0, 59] }, @@ -175020,23 +175020,23 @@ "year": 1760, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -22.333103228316133, - "c2": 8.458716992808093, - "c3": -32.73213615419028, - "c4": -29.406201205500206, - "c5": 10.539423202992587, - "c6": -35.41026643701661, - "c7": 29.376752400852396 + "points": { + "c1": -14.250656645977084, + "c2": 28.276337290622152, + "c3": -29.526602977294978, + "c4": -14.024697004047106, + "c5": 26.620099875160875, + "c6": 29.379054435340777, + "c7": -2.5824587725935615 }, - "vertexSeeds": { - "c1": 8.790919873548471, - "c2": 9.156386522641005, - "c3": 8.324395879545298, - "c4": 8.64437826137702, - "c5": 8.587072301240406, - "c6": 9.240572530502078, - "c7": 8.99972242828147 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748956, + "c3": 11.349976883957472, + "c4": 9.079981507165975, + "c5": 6.809986130374478, + "c6": 4.539990753582981, + "c7": 2.2699953767914973 }, "rgb": [86, 146, 138] }, @@ -175047,23 +175047,23 @@ "year": 1760, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -5.7073176029745625, - "c2": -4.3586037020992165, - "c3": -2.427587870930111, - "c4": -16.562957270953024, - "c5": 11.885332895833713, - "c6": -18.534023354997945, - "c7": -27.10237418891063 + "points": { + "c1": -7.608047326094308, + "c2": 8.882957768799741, + "c3": -34.031820914349666, + "c4": 33.64951815169967, + "c5": -8.954146712489717, + "c6": 16.92140182653433, + "c7": 10.69452171548361 }, - "vertexSeeds": { - "c1": 6.137217178746301, - "c2": 6.222109376752722, - "c3": 6.429670568728726, - "c4": 6.678021304412476, - "c5": 6.470586322390106, - "c6": 6.176475179642195, - "c7": 7.04348269921163 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629681003, + "c3": 8.437355524734164, + "c4": 6.749884419787336, + "c5": 5.062413314840495, + "c6": 3.374942209893668, + "c7": 1.6874711049468398 }, "rgb": [58, 15, 49] }, @@ -175074,23 +175074,23 @@ "year": 1761, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -14.866473546890123, - "c2": 28.96287046789088, - "c3": 6.988162362572723, - "c4": -29.21477162524837, - "c5": -11.58896244297771, - "c6": -10.400651848479335, - "c7": 19.73855922514808 + "points": { + "c1": 31.27508744298217, + "c2": -18.518326554355017, + "c3": -27.531673396157213, + "c4": -32.712257427511275, + "c5": -6.189638074669006, + "c6": 5.89661299533595, + "c7": -7.999101461173083 }, - "vertexSeeds": { - "c1": 4.410297367922722, - "c2": 4.501960216877096, - "c3": 4.39753491031756, - "c4": 4.832122821931603, - "c5": 4.301781629938709, - "c6": 4.573172695643798, - "c7": 4.457416170731364 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -175101,23 +175101,23 @@ "year": 1760, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -9.658745107392374, - "c2": -2.3309233225146393, - "c3": -29.958882324570236, - "c4": 29.68813707081555, - "c5": 18.8511956825619, - "c6": 15.386760010058914, - "c7": 5.653655564485014 + "points": { + "c1": 5.109795461923248, + "c2": 28.168937116985575, + "c3": -6.350166246919937, + "c4": -12.47874777330355, + "c5": 14.581646891636588, + "c6": -18.423591042043746, + "c7": 17.417357160447906 }, - "vertexSeeds": { - "c1": 4.092011319962117, - "c2": 4.083595618690414, - "c3": 4.168619384335277, - "c4": 4.094735801189685, - "c5": 4.19446974027879, - "c6": 4.0998339445444065, - "c7": 4.084083532456632 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808603, + "c3": 5.062413314840507, + "c4": 4.04993065187241, + "c5": 3.037447988904289, + "c6": 2.0249653259361926, + "c7": 1.0124826629680963 }, "rgb": [238, 201, 159] }, @@ -175128,23 +175128,23 @@ "year": 1760, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 26.797252979947313, - "c2": -26.398733390247997, - "c3": -20.140538300524504, - "c4": 19.804748285340754, - "c5": -2.4690575481431765, - "c6": -0.6689057558031664, - "c7": 11.541874859463892 + "points": { + "c1": 31.378406431257215, + "c2": 19.14576283046883, + "c3": 13.639763305912478, + "c4": -11.540514284260627, + "c5": -21.10506861897514, + "c6": 12.798691015665039, + "c7": -1.6544177881290487 }, - "vertexSeeds": { - "c1": 3.2136375973174776, - "c2": 3.3467253641232717, - "c3": 3.721277037882889, - "c4": 3.765506604635518, - "c5": 3.388104683423566, - "c6": 3.587382068391158, - "c7": 3.6742221315887287 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165045, + "c3": 4.692556634304208, + "c4": 3.7540453074433637, + "c5": 2.8155339805825252, + "c6": 1.8770226537216819, + "c7": 0.9385113268608435 }, "rgb": [58, 15, 49] }, @@ -175155,23 +175155,23 @@ "year": 1760, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 22.853695574981522, - "c2": 23.29305511391945, - "c3": 36.884759913532065, - "c4": 23.097052803000047, - "c5": -24.646659679488913, - "c6": 13.918951914332766, - "c7": -22.482906920569675 + "points": { + "c1": 36.58289494665901, + "c2": 1.35645663601818, + "c3": -31.573523819063524, + "c4": -26.975930717770424, + "c5": 29.677945397418185, + "c6": -34.87807929182809, + "c7": -4.343889901729142 }, - "vertexSeeds": { - "c1": 8.729369665034415, - "c2": 8.98390818518763, - "c3": 8.88950092855117, - "c4": 7.674044690565695, - "c5": 9.127027801229062, - "c6": 7.559257931994851, - "c7": 9.129692971154048 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.14840499306519, + "c3": 10.957004160887651, + "c4": 8.765603328710123, + "c5": 6.574202496532595, + "c6": 4.382801664355067, + "c7": 2.1914008321775285 }, "rgb": [86, 146, 138] }, @@ -175182,23 +175182,23 @@ "year": 1761, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 40.823405552857835, - "c2": -24.145435029927196, - "c3": 42.930941922878006, - "c4": -20.764355154424514, - "c5": -8.062941210364734, - "c6": -9.06786927437706, - "c7": 41.835671137662416 + "points": { + "c1": 41.51735657710269, + "c2": -30.42773247523939, + "c3": -23.589313145453367, + "c4": 0.5574413856868716, + "c5": 32.791505845100005, + "c6": -12.836999790777078, + "c7": -15.38572994004084 }, - "vertexSeeds": { - "c1": 4.907424207627567, - "c2": 5.005403257039965, - "c3": 4.736308813908672, - "c4": 4.7477891216402295, - "c5": 4.914441136029239, - "c6": 4.744162499343859, - "c7": 5.070211861720055 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538151, + "c3": 6.0564031437817745, + "c4": 4.845122515025424, + "c5": 3.6338418862690753, + "c6": 2.422561257512712, + "c7": 1.2112806287563493 }, "rgb": [58, 15, 49] }, @@ -175209,23 +175209,23 @@ "year": 1761, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": -17.42343411439598, - "c2": -3.679716023275816, - "c3": 45.49244343885265, - "c4": -47.782030392068506, - "c5": -27.442050712192586, - "c6": -33.03774092432735, - "c7": -46.603858280130986 + "points": { + "c1": 35.11013260153691, + "c2": -10.847908969494853, + "c3": -43.078755945434786, + "c4": 51.97296793945089, + "c5": -45.501205047248725, + "c6": -34.65152039998149, + "c7": -17.43777359209622 }, - "vertexSeeds": { - "c1": 4.705909110203933, - "c2": 2.418866448088329, - "c3": 6.018896648924809, - "c4": 3.5064748064206914, - "c5": 3.134681181832743, - "c6": 3.2448846338247255, - "c7": 3.4581054196600522 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951458, + "c3": 7.44336569579288, + "c4": 5.954692556634305, + "c5": 4.466019417475729, + "c6": 2.977346278317152, + "c7": 1.488673139158576 }, "rgb": [58, 15, 49] }, @@ -175236,23 +175236,23 @@ "year": 1761, "resistanceReported": false, "duration": 45187200, - "curveSeeds": { - "c1": -0.22128933486357738, - "c2": -59.25489489726096, - "c3": 46.157192954478326, - "c4": 20.517136755980424, - "c5": -28.63464377336129, - "c6": -3.0728467056154187, - "c7": -36.622205647003796 + "points": { + "c1": -25.673425577982677, + "c2": 50.03150656675917, + "c3": 27.178936154002223, + "c4": -20.982717146168042, + "c5": 55.070962376547136, + "c6": -47.822803859501974, + "c7": -56.58041337393921 }, - "vertexSeeds": { - "c1": 4.688111591165869, - "c2": 4.758046799451884, - "c3": 4.826894886954899, - "c4": 4.435264637987486, - "c5": 4.699025163363849, - "c6": 4.295109548077111, - "c7": 4.07514040456138 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337033, + "c3": 5.940822931114196, + "c4": 4.752658344891354, + "c5": 3.5644937586685166, + "c6": 2.376329172445679, + "c7": 1.1881645862228423 }, "rgb": [86, 146, 138] }, @@ -175263,23 +175263,23 @@ "year": 1760, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -22.69692818857139, - "c2": -5.963970963124087, - "c3": -10.91938692459301, - "c4": 19.78303739827075, - "c5": -27.632668105424187, - "c6": -18.606598711096087, - "c7": 28.754949591642756 + "points": { + "c1": -6.861865515118087, + "c2": -28.098258223968074, + "c3": 13.21077033183444, + "c4": 29.29955304917692, + "c5": -36.83185819843967, + "c6": -0.8834802944472031, + "c7": -14.202037163569077 }, - "vertexSeeds": { - "c1": 8.49406836217712, - "c2": 8.401687836875693, - "c3": 9.582526844184805, - "c4": 8.959804294811223, - "c5": 9.666396674748423, - "c6": 9.252618374458534, - "c7": 8.310366107494687 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312064, + "c3": 11.673601479426718, + "c4": 9.338881183541384, + "c5": 7.004160887656037, + "c6": 4.669440591770692, + "c7": 2.334720295885346 }, "rgb": [58, 15, 49] }, @@ -175290,23 +175290,23 @@ "year": 1760, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -14.144835327131428, - "c2": -24.067377679165002, - "c3": 20.071229380334977, - "c4": -9.010015028816902, - "c5": 21.972678060639403, - "c6": -17.250985821316256, - "c7": -22.542588368723145 + "points": { + "c1": -15.504603880592848, + "c2": -18.992458809097872, + "c3": 8.60126892027111, + "c4": 0.29777142378936716, + "c5": -15.458773503957369, + "c6": 18.04513458362502, + "c7": 27.24540823333774 }, - "vertexSeeds": { - "c1": 3.971972139501703, - "c2": 4.351782550696543, - "c3": 4.431543290425228, - "c4": 4.458882937368685, - "c5": 4.206114965634085, - "c6": 4.476490114095606, - "c7": 4.516144925791346 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492374, + "c3": 5.455386037910308, + "c4": 4.3643088303282465, + "c5": 3.273231622746187, + "c6": 2.182154415164127, + "c7": 1.0910772075820603 }, "rgb": [58, 15, 49] }, @@ -175317,23 +175317,23 @@ "year": 1761, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -15.151921799311282, - "c2": -19.358502484356553, - "c3": -13.254393529217289, - "c4": -6.733389909756994, - "c5": 2.382309886161977, - "c6": 31.169000446465702, - "c7": 19.864076483238584 + "points": { + "c1": -19.578344609434563, + "c2": 11.593596041564389, + "c3": -18.48523283938172, + "c4": 2.080214932433691, + "c5": 14.475872008003229, + "c6": 13.653076319614406, + "c7": 2.41112927518504 }, - "vertexSeeds": { - "c1": 5.959198765950586, - "c2": 6.072938557257553, - "c3": 5.970367933601811, - "c4": 5.923833746707642, - "c5": 6.047477817023508, - "c6": 6.19754255924914, - "c7": 6.144731597946949 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [58, 15, 49] }, @@ -175344,23 +175344,23 @@ "year": 1761, "resistanceReported": true, "duration": 34560000, - "curveSeeds": { - "c1": 39.90917552866096, - "c2": 8.167015871152593, - "c3": -0.7900728909085899, - "c4": -5.240370952794066, - "c5": 16.74071953225951, - "c6": -8.406114326938578, - "c7": 10.606691264456856 + "points": { + "c1": 15.699326521105142, + "c2": 38.515545601775564, + "c3": 42.30721282809254, + "c4": 10.780262995215544, + "c5": -21.5356484320584, + "c6": 49.83444500955844, + "c7": -45.491312950663044 }, - "vertexSeeds": { - "c1": 6.707908340556053, - "c2": 6.423216365007661, - "c3": 6.371541960340799, - "c4": 5.989795979448753, - "c5": 6.703027443580767, - "c6": 6.32072824973034, - "c7": 7.322595743516716 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.56865464632455, + "c3": 8.807212205270456, + "c4": 7.045769764216363, + "c5": 5.2843273231622785, + "c6": 3.522884882108186, + "c7": 1.761442441054093 }, "rgb": [58, 15, 49] }, @@ -175371,23 +175371,23 @@ "year": 1760, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -19.437803764676776, - "c2": -4.942617780287414, - "c3": -22.081362610002962, - "c4": 4.540054882094619, - "c5": -11.765261752586577, - "c6": 19.499432863105888, - "c7": -14.73112385339747 + "points": { + "c1": 17.801007125167665, + "c2": 15.166646559653401, + "c3": 18.16322195871323, + "c4": 15.052861368639562, + "c5": 8.81766819085292, + "c6": -8.94473063033696, + "c7": 8.721669124900558 }, - "vertexSeeds": { - "c1": 2.1593315271790128, - "c2": 2.3642685788377085, - "c3": 2.30917134888489, - "c4": 2.3452865345654383, - "c5": 2.5368041167179602, - "c6": 2.448648897307504, - "c7": 2.1834728884171626 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897375, + "c3": 3.0975496994914464, + "c4": 2.478039759593158, + "c5": 1.8585298196948672, + "c6": 1.239019879796579, + "c7": 0.6195099398982883 }, "rgb": [58, 15, 49] }, @@ -175398,23 +175398,23 @@ "year": 1760, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": -20.42160929452799, - "c2": 3.111010724060158, - "c3": -6.9805733119638145, - "c4": 9.385797835427834, - "c5": -8.745249856738585, - "c6": 12.80291725249122, - "c7": 16.58023822602847 + "points": { + "c1": -8.874893085789823, + "c2": 5.606885365514749, + "c3": 7.166431515567147, + "c4": -0.7758768331175325, + "c5": 5.901065437720227, + "c6": 11.65397174631746, + "c7": -0.6137491149930305 }, - "vertexSeeds": { - "c1": 1.5821910664957493, - "c2": 1.5841881733199072, - "c3": 1.4586201337952835, - "c4": 1.5213672540414813, - "c5": 1.4795192720029795, - "c6": 1.391359741582309, - "c7": 1.5892998424646319 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [77, 76, 132] }, @@ -175425,23 +175425,23 @@ "year": 1761, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -28.54978531970082, - "c2": 8.507891683638562, - "c3": 19.22354175481125, - "c4": -3.129404385505957, - "c5": -6.1182878712853395, - "c6": 5.077351535351866, - "c7": -19.12170907765983 + "points": { + "c1": 10.644708277954777, + "c2": 0.35051397175447363, + "c3": -13.725271158579908, + "c4": 17.666049961857915, + "c5": -7.206582535446472, + "c6": 33.98281823925213, + "c7": -12.348630697402353 }, - "vertexSeeds": { - "c1": 4.986934347890852, - "c2": 5.365734725064979, - "c3": 5.685800347481212, - "c4": 5.171007951818697, - "c5": 5.877201163327609, - "c6": 5.398931038095754, - "c7": 5.873598456848122 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233007, + "c3": 7.605177993527504, + "c4": 6.084142394822008, + "c5": 4.563106796116504, + "c6": 3.0420711974110004, + "c7": 1.521035598705504 }, "rgb": [86, 146, 138] }, @@ -175452,23 +175452,23 @@ "year": 1760, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 5.0957968401587905, - "c2": -8.579564284089304, - "c3": 2.7308986557778354, - "c4": 20.839789448728695, - "c5": 9.789654600437984, - "c6": 10.885492160382874, - "c7": -17.42624980064334 + "points": { + "c1": -6.341928828414446, + "c2": 11.28947321477952, + "c3": -19.133213262282005, + "c4": 0.5139679311293364, + "c5": -25.2775081561019, + "c6": 5.567998151906927, + "c7": 24.23273226404941 }, - "vertexSeeds": { - "c1": 1.410776388981859, - "c2": 1.350093612077002, - "c3": 1.476414356373174, - "c4": 1.2779122734357657, - "c5": 1.197705378371246, - "c6": 1.3672374423894524, - "c7": 1.2204090997359602 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.1359223300970873, + "c3": 1.779935275080906, + "c4": 1.4239482200647249, + "c5": 1.0679611650485437, + "c6": 0.7119741100323624, + "c7": 0.3559870550161812 }, "rgb": [86, 146, 138] }, @@ -175479,23 +175479,23 @@ "year": 1761, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 28.299003561922603, - "c2": -17.1141794735971, - "c3": 13.07004921742481, - "c4": -30.966402822409187, - "c5": -42.64364927279876, - "c6": 32.95983654498065, - "c7": -39.7307129213781 + "points": { + "c1": 44.12801784020553, + "c2": 34.86910560454815, + "c3": 4.433058487294872, + "c4": -6.418970674476256, + "c5": -28.091488140313114, + "c6": 30.702791761176115, + "c7": -11.655157398090253 }, - "vertexSeeds": { - "c1": 4.831227794725925, - "c2": 4.831111305554223, - "c3": 5.183787041969648, - "c4": 5.959105796061556, - "c5": 4.996934296309433, - "c6": 4.892167707314249, - "c7": 5.475548395913851 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669904, + "c3": 7.281553398058256, + "c4": 5.825242718446599, + "c5": 4.36893203883495, + "c6": 2.9126213592233015, + "c7": 1.4563106796116527 }, "rgb": [77, 76, 132] }, @@ -175506,23 +175506,23 @@ "year": 1761, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 19.266226993219668, - "c2": 16.798728689528183, - "c3": -23.159951792198484, - "c4": 10.72872581667027, - "c5": 33.553172941194504, - "c6": -21.732365347786356, - "c7": -15.826260790469387 + "points": { + "c1": -13.764321620575902, + "c2": -30.47736513738839, + "c3": -24.77983751433876, + "c4": -3.422940281776434, + "c5": 3.332339952733143, + "c6": -13.345273308153807, + "c7": 10.024623195705473 }, - "vertexSeeds": { - "c1": 7.827953792943912, - "c2": 7.492122738182518, - "c3": 6.785145340612306, - "c4": 7.47099411134684, - "c5": 7.530935562324029, - "c6": 7.417680751421047, - "c7": 7.9909162449826 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [86, 146, 138] }, @@ -175533,23 +175533,23 @@ "year": 1761, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -13.641188723867394, - "c2": 36.37260436194723, - "c3": -14.961913046078664, - "c4": 29.393150400183266, - "c5": -30.655476058308658, - "c6": 24.13488710018988, - "c7": -23.206807303025652 + "points": { + "c1": -42.189768411534686, + "c2": 43.996804954706626, + "c3": 17.944027069827932, + "c4": -36.40354382492157, + "c5": 16.8931091779001, + "c6": -40.2745380798726, + "c7": 24.65263308345144 }, - "vertexSeeds": { - "c1": 7.133365600378715, - "c2": 7.227682557739229, - "c3": 7.072622975189365, - "c4": 7.280971376582489, - "c5": 7.4609295369488375, - "c6": 7.025697452876782, - "c7": 6.844303241861628 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565883, + "c3": 8.945908460471573, + "c4": 7.156726768377243, + "c5": 5.367545076282933, + "c6": 3.5783633841886213, + "c7": 1.7891816920943107 }, "rgb": [238, 201, 159] }, @@ -175560,23 +175560,23 @@ "year": 1761, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -23.82640084847164, - "c2": 7.357848224014461, - "c3": 1.88460875978015, - "c4": -7.383554721204096, - "c5": -14.15058169642975, - "c6": -15.071053371660504, - "c7": -23.376887512571905 + "points": { + "c1": 20.283858388849097, + "c2": -37.78417537677116, + "c3": -12.528996816266993, + "c4": -3.874494991485257, + "c5": -22.133295962565583, + "c6": -13.397368357369157, + "c7": 33.81573616476998 }, - "vertexSeeds": { - "c1": 5.274436479908646, - "c2": 4.284393639691753, - "c3": 4.106172012180845, - "c4": 4.569018116414284, - "c5": 4.227266884116127, - "c6": 4.558608069667124, - "c7": 4.171880044761414 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -175587,23 +175587,23 @@ "year": 1761, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -9.339519900415855, - "c2": -25.023714994718237, - "c3": -17.64577775865358, - "c4": 26.338824430452682, - "c5": -32.48198650460439, - "c6": 25.808544631974613, - "c7": -24.36882650950662 + "points": { + "c1": 11.063254395527863, + "c2": 21.629670386470686, + "c3": 30.24998216397578, + "c4": -8.999752867325821, + "c5": 21.934791275181638, + "c6": 29.090858321692316, + "c7": 21.336341529074623 }, - "vertexSeeds": { - "c1": 7.527393313037024, - "c2": 7.111899480233613, - "c3": 7.88970453752949, - "c4": 6.809772590679615, - "c5": 7.585415321462829, - "c6": 7.936664068656431, - "c7": 7.022318574615826 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343042, + "c4": 7.637540453074433, + "c5": 5.7281553398058245, + "c6": 3.8187702265372163, + "c7": 1.9093851132686082 }, "rgb": [58, 15, 49] }, @@ -175614,23 +175614,23 @@ "year": 1761, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": -1.7018135987624632, - "c2": -47.56504088053062, - "c3": 14.293949206300923, - "c4": -24.307188115100235, - "c5": 32.0396434890601, - "c6": 32.07653766183476, - "c7": -47.68198531836509 + "points": { + "c1": 34.74829041096989, + "c2": 39.658767074081226, + "c3": 27.37594216755727, + "c4": 24.27501155258892, + "c5": 29.377041101896864, + "c6": 23.660498207720494, + "c7": 44.10935490557695 }, - "vertexSeeds": { - "c1": 6.330183145559558, - "c2": 6.199050147963479, - "c3": 6.424724851580099, - "c4": 6.15002056585284, - "c5": 6.434712802021129, - "c6": 6.499245026362153, - "c7": 6.332021686868976 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.859454461396217, + "c4": 6.287563569116979, + "c5": 4.715672676837741, + "c6": 3.143781784558476, + "c7": 1.571890892279238 }, "rgb": [77, 76, 132] }, @@ -175641,23 +175641,23 @@ "year": 1761, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 3.3139746729206934, - "c2": -19.178909735703463, - "c3": -17.005614831593604, - "c4": -27.87028671541525, - "c5": -12.090796243457156, - "c6": 13.993035326151556, - "c7": 25.109600476080352 + "points": { + "c1": 3.354710633834358, + "c2": 4.7502646195579885, + "c3": -11.000432977325353, + "c4": 14.61705723412576, + "c5": -30.366525697942457, + "c6": 26.99566573916143, + "c7": 12.665759016995786 }, - "vertexSeeds": { - "c1": 4.3325552994923955, - "c2": 3.989228288328861, - "c3": 4.121576503116911, - "c4": 4.065453015074704, - "c5": 3.971085274543172, - "c6": 4.420888746271377, - "c7": 3.812354541633278 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -175668,23 +175668,23 @@ "year": 1761, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -21.671465567028847, - "c2": -28.258324248597507, - "c3": 28.074698878465014, - "c4": 0.37849743568589034, - "c5": 9.261741410446689, - "c6": -30.55179844673839, - "c7": -30.75074136380466 + "points": { + "c1": 5.462534154642029, + "c2": -14.208764176756642, + "c3": -12.29963334941193, + "c4": -1.6256113089715605, + "c5": -3.784614546170882, + "c6": -24.807739128521646, + "c7": -22.941322472942822 }, - "vertexSeeds": { - "c1": 4.395993927503771, - "c2": 4.189598843963532, - "c3": 3.947753700031825, - "c4": 3.9817470704424025, - "c5": 4.181164792642956, - "c6": 3.8847224801106752, - "c7": 4.3427763854845995 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -175695,23 +175695,23 @@ "year": 1761, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -23.50606845605787, - "c2": -7.527203531810109, - "c3": 11.94981746160569, - "c4": -17.64019565906628, - "c5": -24.098167084217486, - "c6": 10.709687039555611, - "c7": -16.622015695619446 + "points": { + "c1": 20.935076119487277, + "c2": -14.344860363958308, + "c3": -14.355644238741462, + "c4": -6.335902758721012, + "c5": -9.949970151224296, + "c6": 4.644302982718266, + "c7": 31.91914816028727 }, - "vertexSeeds": { - "c1": 2.4542909755762077, - "c2": 2.4917722208034454, - "c3": 3.0699142700466377, - "c4": 3.018887779270658, - "c5": 2.454761330885974, - "c6": 2.283084872333035, - "c7": 2.7697606526725465 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435507, + "c3": 3.6985668053629235, + "c4": 2.958853444290336, + "c5": 2.2191400832177517, + "c6": 1.479426722145168, + "c7": 0.739713361072584 }, "rgb": [86, 146, 138] }, @@ -175722,23 +175722,23 @@ "year": 1761, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -18.66132570201526, - "c2": 34.220773270091165, - "c3": -32.32270573654744, - "c4": -26.397427119044373, - "c5": -13.180388281600479, - "c6": -22.00487691519274, - "c7": -28.917411495174616 + "points": { + "c1": -13.621401457691551, + "c2": 17.955285735794327, + "c3": 6.282338437738829, + "c4": 12.901829147173359, + "c5": -30.913313159331622, + "c6": -17.461060107079884, + "c7": 35.26736491560025 }, - "vertexSeeds": { - "c1": 8.553292279593029, - "c2": 8.57453187566062, - "c3": 10.203015843699047, - "c4": 8.71913292561876, - "c5": 11.22988121516131, - "c6": 10.049330659176471, - "c7": 9.612152822035265 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.088765603328717, + "c3": 13.407304669440586, + "c4": 10.72584373555247, + "c5": 8.044382801664359, + "c6": 5.362921867776235, + "c7": 2.681460933888114 }, "rgb": [77, 76, 132] }, @@ -175749,23 +175749,23 @@ "year": 1760, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -11.929826500093839, - "c2": -6.225038988872054, - "c3": -24.62614417717345, - "c4": -5.196442176994019, - "c5": -15.240744440506395, - "c6": -11.846937080928914, - "c7": -15.128319405249908 + "points": { + "c1": 7.750093711897222, + "c2": -14.829395493990948, + "c3": 3.4691117102218314, + "c4": 14.809521427213298, + "c5": 27.75019709479497, + "c6": -15.722399401425022, + "c7": -21.323628521604377 }, - "vertexSeeds": { - "c1": 1.809115678617303, - "c2": 1.9609285864540251, - "c3": 1.9094911011788158, - "c4": 1.7837909709039987, - "c5": 1.8564197835232095, - "c6": 1.7889676613467167, - "c7": 1.899611198490358 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [238, 201, 159] }, @@ -175776,23 +175776,23 @@ "year": 1761, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -3.92592435256336, - "c2": 24.155636571378572, - "c3": 6.497707352669103, - "c4": -17.524370635490413, - "c5": 12.400018988195036, - "c6": -7.872134141041819, - "c7": 22.035653279485885 + "points": { + "c1": -0.7914960662511845, + "c2": -27.27772165780866, + "c3": 3.2022412468201154, + "c4": -1.1280518448011492, + "c5": 4.669183901652254, + "c6": 13.374856004336372, + "c7": 3.473243267700198 }, - "vertexSeeds": { - "c1": 6.0490616504369505, - "c2": 6.070976766812861, - "c3": 6.237755601960162, - "c4": 6.1736339757334875, - "c5": 6.167513380830876, - "c6": 6.102113576247449, - "c7": 5.877369415970225 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [86, 146, 138] }, @@ -175803,23 +175803,23 @@ "year": 1762, "resistanceReported": false, "duration": 48297600, - "curveSeeds": { - "c1": 3.312337711077028, - "c2": 29.76700519981845, - "c3": 60.77483768907937, - "c4": 10.444682072074876, - "c5": -13.160725486086633, - "c6": 17.564432435594846, - "c7": -21.375212246270635 + "points": { + "c1": -1.430752810270704, + "c2": -35.39569680935287, + "c3": -36.62597186687336, + "c4": -4.67309973152836, + "c5": 11.374154599544354, + "c6": 34.54058184576667, + "c7": 44.34623815324821 }, - "vertexSeeds": { - "c1": 4.998607733597086, - "c2": 5.129617681677928, - "c3": 5.182900344539159, - "c4": 5.075569681430582, - "c5": 5.449088077780624, - "c6": 5.7085677341275955, - "c7": 5.154619947747147 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.8885806749884475, + "c4": 5.510864539990756, + "c5": 4.133148404993063, + "c6": 2.7554322699953713, + "c7": 1.377716134997692 }, "rgb": [222, 0, 59] }, @@ -175830,23 +175830,23 @@ "year": 1761, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -25.34136923136792, - "c2": -11.703309963347966, - "c3": 28.288808305184194, - "c4": 8.205976257652598, - "c5": -7.215087097194544, - "c6": 27.981945444761354, - "c7": 27.730405746382534 + "points": { + "c1": -31.093788916140262, + "c2": -17.14642066181425, + "c3": 26.80685888650701, + "c4": -24.988965605207362, + "c5": -14.645572192379788, + "c6": -10.806881175957521, + "c7": 19.221758653755565 }, - "vertexSeeds": { - "c1": 7.873026936189508, - "c2": 9.70801863576216, - "c3": 8.858103339031532, - "c4": 9.392630021395588, - "c5": 9.262029509335232, - "c6": 8.759345119710712, - "c7": 8.008353371818135 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.06380027739251, + "c3": 11.719833564493758, + "c4": 9.375866851595006, + "c5": 7.031900138696255, + "c6": 4.687933425797503, + "c7": 2.3439667128987516 }, "rgb": [77, 76, 132] }, @@ -175857,23 +175857,23 @@ "year": 1761, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": 35.68438497547956, - "c2": 18.00879465636025, - "c3": 12.852761638232401, - "c4": 8.79542591041016, - "c5": -21.739594314982742, - "c6": 36.675340138077416, - "c7": -39.4365324858353 + "points": { + "c1": -44.63828105589213, + "c2": -33.86138898688951, + "c3": -31.565474781247595, + "c4": 18.15021096309478, + "c5": -22.16373411765885, + "c6": 7.837498598666016, + "c7": -20.226086577157993 }, - "vertexSeeds": { - "c1": 4.926018906591396, - "c2": 5.044329101160518, - "c3": 4.863889767917074, - "c4": 4.9978673272093825, - "c5": 5.0797601671491295, - "c6": 5.005347938496575, - "c7": 5.1177584701587575 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859927, + "c3": 6.241331484049927, + "c4": 4.993065187239952, + "c5": 3.7447988904299514, + "c6": 2.496532593619976, + "c7": 1.248266296809988 }, "rgb": [77, 76, 132] }, @@ -175884,23 +175884,23 @@ "year": 1761, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -18.363452415619978, - "c2": -18.02954401319238, - "c3": 38.605360732653025, - "c4": 17.66403146857025, - "c5": -3.169160380799312, - "c6": -34.74456282345964, - "c7": -12.089051972812616 + "points": { + "c1": -24.8196680484647, + "c2": -29.1748560935685, + "c3": -29.45774782299106, + "c4": -24.75933651270461, + "c5": 8.180764256067107, + "c6": -2.8524125042897595, + "c7": -13.39076404388896 }, - "vertexSeeds": { - "c1": 3.332596469223816, - "c2": 2.975528810508784, - "c3": 3.342578385887789, - "c4": 3.1458077520757017, - "c5": 3.0660289531980838, - "c6": 3.0548608524952545, - "c7": 3.001274190119057 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.02219140083218, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328672, + "c7": 0.8044382801664377 }, "rgb": [77, 76, 132] }, @@ -175911,23 +175911,23 @@ "year": 1761, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 16.399269651118836, - "c2": -9.92840648322953, - "c3": 39.38106083685581, - "c4": -39.7144315152921, - "c5": 12.60495881020124, - "c6": 40.80705134472606, - "c7": -6.081437705231906 + "points": { + "c1": 35.49255587807673, + "c2": -38.71329478127324, + "c3": 17.387288048330042, + "c4": -16.431798249193143, + "c5": -21.28842290429547, + "c6": -16.4313595663961, + "c7": -5.1399307697748995 }, - "vertexSeeds": { - "c1": 6.3427553438806665, - "c2": 6.718535492246473, - "c3": 6.275270799313591, - "c4": 6.517498715217731, - "c5": 6.419810052160845, - "c6": 6.165687713670477, - "c7": 6.168102479877067 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [238, 201, 159] }, @@ -175938,23 +175938,23 @@ "year": 1761, "resistanceReported": false, "duration": 45360000, - "curveSeeds": { - "c1": 3.3851037313184307, - "c2": -44.76054585819398, - "c3": 12.773977403080515, - "c4": 36.973033478191645, - "c5": 24.22760403251194, - "c6": 31.843651720292932, - "c7": -40.49098940139992 + "points": { + "c1": -36.12523164241105, + "c2": 32.4483625966351, + "c3": -35.753007703470836, + "c4": -34.23082486896172, + "c5": 49.543685241062285, + "c6": -13.768649900814687, + "c7": -41.018782240287976 }, - "vertexSeeds": { - "c1": 5.70146735704281, - "c2": 5.595305940455888, - "c3": 5.284944403139479, - "c4": 5.361459497464957, - "c5": 5.791239464023832, - "c6": 5.358906416111795, - "c7": 5.334225439207047 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267678, + "c3": 7.050392972723075, + "c4": 5.6403143781784575, + "c5": 4.230235783633839, + "c6": 2.820157189089236, + "c7": 1.410078594544618 }, "rgb": [77, 76, 132] }, @@ -175965,23 +175965,23 @@ "year": 1761, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 23.762656678766128, - "c2": 21.750615419466712, - "c3": 12.250740782261815, - "c4": 18.589803849152332, - "c5": -26.923070815410043, - "c6": 21.456756167882794, - "c7": -23.825576731523306 + "points": { + "c1": 25.30793356834924, + "c2": -34.36758224428563, + "c3": -24.054529298694153, + "c4": 16.43814612330773, + "c5": -7.071721663303045, + "c6": 27.31092940283527, + "c7": -38.72419546050304 }, - "vertexSeeds": { - "c1": 3.9657272243787305, - "c2": 3.9806651504679245, - "c3": 3.833938673672499, - "c4": 3.861127567233845, - "c5": 4.213290758627639, - "c6": 4.274685330844053, - "c7": 4.395287126090981 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -175992,23 +175992,23 @@ "year": 1761, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 18.26331819234936, - "c2": -0.6050906201139696, - "c3": 3.1390296063477443, - "c4": 8.953163896156326, - "c5": -19.893738383188172, - "c6": -15.855228943340245, - "c7": 15.644445941687536 + "points": { + "c1": 24.078887677936315, + "c2": -7.90070421546859, + "c3": -10.668292410792766, + "c4": 11.502363815852398, + "c5": -19.14835884813124, + "c6": 9.146146387365086, + "c7": 15.624120967235022 }, - "vertexSeeds": { - "c1": 5.360803370737731, - "c2": 5.991297392728868, - "c3": 5.705357761666679, - "c4": 5.422967154488696, - "c5": 5.460198779511077, - "c6": 5.682324554413278, - "c7": 5.769339192667825 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273226, + "c3": 7.6282940360610265, + "c4": 6.1026352288488175, + "c5": 4.576976421636618, + "c6": 3.0513176144244087, + "c7": 1.5256588072122093 }, "rgb": [222, 0, 59] }, @@ -176019,23 +176019,23 @@ "year": 1761, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -8.078750321909986, - "c2": -17.575380533912394, - "c3": -1.621849351063723, - "c4": -3.008552372849156, - "c5": -22.850991441836847, - "c6": -24.200968413709973, - "c7": -14.671972141445611 + "points": { + "c1": -7.153311304782775, + "c2": 7.982861525288918, + "c3": 17.99373530301274, + "c4": 7.966464366633879, + "c5": 0.37507215936975413, + "c6": -9.09235517542853, + "c7": 24.89724861753104 }, - "vertexSeeds": { - "c1": 7.787827714362217, - "c2": 7.681828394784885, - "c3": 7.214162937180985, - "c4": 7.135205212183385, - "c5": 7.373169121945598, - "c6": 8.025693759599319, - "c7": 7.556084329505269 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375865, + "c3": 9.986130374479895, + "c4": 7.988904299583913, + "c5": 5.9916782246879325, + "c6": 3.9944521497919516, + "c7": 1.997226074895981 }, "rgb": [238, 201, 159] }, @@ -176046,23 +176046,23 @@ "year": 1761, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -9.677298580779183, - "c2": 5.883918829080354, - "c3": 0.6882117853767262, - "c4": 23.94175142817379, - "c5": 24.11861325949754, - "c6": 14.573940432062354, - "c7": 26.95961104821951 + "points": { + "c1": 5.455692639464484, + "c2": 1.7122806617187187, + "c3": 14.736020869081354, + "c4": -15.391884546403915, + "c5": -13.682470067946632, + "c6": -28.663590747332517, + "c7": -2.673583329036429 }, - "vertexSeeds": { - "c1": 4.214550811789516, - "c2": 4.04147534019461, - "c3": 4.2707865598347245, - "c4": 3.8787108536092143, - "c5": 4.22527379195078, - "c6": 4.043302382732678, - "c7": 4.196875838817175 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [58, 15, 49] }, @@ -176073,23 +176073,23 @@ "year": 1761, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -10.311736025353945, - "c2": -23.527017458318085, - "c3": 0.2378449723078475, - "c4": 12.580358145952168, - "c5": 0.49007589192721923, - "c6": 37.37956935237337, - "c7": -26.368203661462147 + "points": { + "c1": 20.98374009320223, + "c2": 33.240844554561285, + "c3": -10.012471760802455, + "c4": 15.709575853941637, + "c5": 30.967318476262854, + "c6": -21.265491883069952, + "c7": 7.611467708989139 }, - "vertexSeeds": { - "c1": 5.936436558103359, - "c2": 5.957718297661086, - "c3": 6.449854712198365, - "c4": 6.6045851751135105, - "c5": 6.380634386225638, - "c6": 6.817715823943365, - "c7": 5.928714427793063 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158115, + "c3": 8.136846971798429, + "c4": 6.509477577438743, + "c5": 4.882108183079057, + "c6": 3.2547387887193713, + "c7": 1.6273693943596856 }, "rgb": [222, 0, 59] }, @@ -176100,23 +176100,23 @@ "year": 1761, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -27.527726510704007, - "c2": -23.001553673580002, - "c3": 27.86153682810641, - "c4": -3.764551485906999, - "c5": -21.961196194687705, - "c6": -25.623228329215195, - "c7": 10.4558691880367 + "points": { + "c1": -23.17838110655772, + "c2": 3.3414800574717205, + "c3": -11.113229897202153, + "c4": 39.54425262397302, + "c5": 39.972707192555774, + "c6": 7.974991663323166, + "c7": 18.11598470267188 }, - "vertexSeeds": { - "c1": 5.557517682861708, - "c2": 5.70103045434826, - "c3": 5.498844527903418, - "c4": 5.629283516712357, - "c5": 5.893228905087076, - "c6": 5.909161442166932, - "c7": 5.937505326072737 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [86, 146, 138] }, @@ -176127,23 +176127,23 @@ "year": 1761, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -42.01112204147588, - "c2": 27.342887596454503, - "c3": -33.468785071982715, - "c4": -41.82682300957623, - "c5": 27.730829493696845, - "c6": -1.928828387212377, - "c7": -19.46865343591525 + "points": { + "c1": 0.6817045760203655, + "c2": 43.6204731758115, + "c3": 0.43313311290673795, + "c4": -37.67318827778068, + "c5": -18.877739991397426, + "c6": 38.99977658414693, + "c7": -29.466696645346907 }, - "vertexSeeds": { - "c1": 6.431504280348309, - "c2": 6.587397655353398, - "c3": 6.112176123194594, - "c4": 6.39589694788531, - "c5": 6.703944240090507, - "c6": 6.215703094642279, - "c7": 5.587453519541331 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -176154,23 +176154,23 @@ "year": 1761, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -9.379003318741248, - "c2": 0.030716086361927353, - "c3": -5.49772840646407, - "c4": 28.859952181284598, - "c5": 17.315297586594077, - "c6": -30.749514516261517, - "c7": 15.79383745028435 + "points": { + "c1": -23.948081799252698, + "c2": -21.81824206433685, + "c3": 0.18654567085025064, + "c4": 14.101635005819446, + "c5": -17.83047041772353, + "c6": 8.53736990745059, + "c7": -3.5260036050039183 }, - "vertexSeeds": { - "c1": 6.166486326816824, - "c2": 6.6499157352402305, - "c3": 6.426268177838779, - "c4": 6.08893171820149, - "c5": 6.751913245735486, - "c6": 6.276537850233478, - "c7": 6.274471968084651 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037444, + "c3": 8.06749884419788, + "c4": 6.453999075358301, + "c5": 4.840499306518722, + "c6": 3.2269995376791436, + "c7": 1.6134997688395787 }, "rgb": [58, 15, 49] }, @@ -176181,23 +176181,23 @@ "year": 1761, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -19.422755020375114, - "c2": 3.66881982224589, - "c3": -4.011321298392801, - "c4": -10.232608996523624, - "c5": 13.258941423584861, - "c6": -20.249528337249508, - "c7": -17.6623215936411 + "points": { + "c1": -3.7992736322673473, + "c2": -20.328377977891165, + "c3": -19.08550226031049, + "c4": 12.398807014215624, + "c5": 4.762731066060574, + "c6": -6.382173683109908, + "c7": 7.704535144272629 }, - "vertexSeeds": { - "c1": 6.1363420768732135, - "c2": 6.057173627290551, - "c3": 5.695346548428862, - "c4": 5.962863701063366, - "c5": 6.557689140036087, - "c6": 5.960885792304714, - "c7": 5.938863254224058 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -176208,23 +176208,23 @@ "year": 1761, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -13.544741808236303, - "c2": 14.299596430295217, - "c3": -20.731915388832675, - "c4": 9.37135006575421, - "c5": -18.014294476545444, - "c6": -11.652859484793353, - "c7": 4.907951790433582 + "points": { + "c1": 8.82254085786424, + "c2": -11.062277363956994, + "c3": -0.12222985889782478, + "c4": -0.14223075260319362, + "c5": -13.580786329844537, + "c6": 17.152752671993255, + "c7": -17.338944374427737 }, - "vertexSeeds": { - "c1": 6.459062845229999, - "c2": 5.717354340770244, - "c3": 5.797826792796591, - "c4": 5.909938555091097, - "c5": 5.895954462036552, - "c6": 5.839628238695193, - "c7": 6.410012941029534 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -176235,23 +176235,23 @@ "year": 1761, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 9.250616046145215, - "c2": -21.699592488780613, - "c3": 2.4384616356485935, - "c4": 12.755633466072446, - "c5": 0.013060310639193773, - "c6": 16.202844115747013, - "c7": -1.7755610225316545 + "points": { + "c1": 9.03798321631124, + "c2": -15.76478993234845, + "c3": -20.10046114515548, + "c4": -19.76151010534387, + "c5": -10.945444660017293, + "c6": -6.120856498787241, + "c7": -1.5539767202379764 }, - "vertexSeeds": { - "c1": 3.402307285404726, - "c2": 3.547677089735879, - "c3": 3.645427561587616, - "c4": 3.769483387350042, - "c5": 3.674158623324832, - "c6": 3.648484949819953, - "c7": 3.7907174333893203 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466, + "c3": 4.854368932038834, + "c4": 3.8834951456310707, + "c5": 2.912621359223303, + "c6": 1.9417475728155353, + "c7": 0.9708737864077677 }, "rgb": [222, 0, 59] }, @@ -176262,23 +176262,23 @@ "year": 1761, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 34.4721791851874, - "c2": 24.989680966155028, - "c3": 13.934524893561743, - "c4": -33.737594656153405, - "c5": -1.4390408161844377, - "c6": -26.6130432443773, - "c7": 24.429887406291407 + "points": { + "c1": 25.95492510848439, + "c2": 15.116205419504219, + "c3": 9.334899381525233, + "c4": 22.023320976933526, + "c5": 1.012994811154897, + "c6": 15.921038659339231, + "c7": -4.1354477492480655 }, - "vertexSeeds": { - "c1": 3.6762260738622015, - "c2": 3.5299050597359725, - "c3": 3.5988580382958726, - "c4": 3.4723489338307245, - "c5": 3.421818171503426, - "c6": 3.4286219360652797, - "c7": 3.647907131787837 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435504, + "c4": 3.5506241331484096, + "c5": 2.662968099861307, + "c6": 1.7753120665742048, + "c7": 0.8876560332871024 }, "rgb": [238, 201, 159] }, @@ -176289,23 +176289,23 @@ "year": 1761, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 15.578410452060567, - "c2": -18.514762964445797, - "c3": -16.701130868627462, - "c4": -3.172815126097177, - "c5": -12.998342422260682, - "c6": 18.54651105985222, - "c7": 9.952415370223516 + "points": { + "c1": 14.512904197138283, + "c2": 12.766074101684076, + "c3": 4.490928164771866, + "c4": 20.803472301725243, + "c5": -14.529305872589774, + "c6": 12.656639213715998, + "c7": -11.962959338752562 }, - "vertexSeeds": { - "c1": 2.768157659616381, - "c2": 2.5105494401336412, - "c3": 2.494047199843697, - "c4": 2.4809535146297867, - "c5": 2.63511321456131, - "c6": 2.620276977445184, - "c7": 2.751702037482234 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952843, + "c3": 3.421174294960704, + "c4": 2.7369394359685635, + "c5": 2.0527045769764234, + "c6": 1.3684697179842833, + "c7": 0.6842348589921433 }, "rgb": [222, 0, 59] }, @@ -176316,23 +176316,23 @@ "year": 1761, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": -35.091587221397255, - "c2": -20.289277048283058, - "c3": -31.866131262833726, - "c4": 13.824182271343794, - "c5": 6.7517303700114795, - "c6": -2.154762966024279, - "c7": 25.084429763386503 + "points": { + "c1": -39.199424105684265, + "c2": -7.964268294000924, + "c3": 6.869937474255032, + "c4": -34.35422372073749, + "c5": -33.41155285578908, + "c6": -35.04437742695207, + "c7": 34.41864160878489 }, - "vertexSeeds": { - "c1": 6.105003808727804, - "c2": 5.762469803908014, - "c3": 6.474978987443297, - "c4": 6.183248862342348, - "c5": 6.675899756915227, - "c6": 6.796962596263778, - "c7": 6.502578218823061 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -176343,23 +176343,23 @@ "year": 1761, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -12.377436764322233, - "c2": -9.673918752486436, - "c3": 35.19693482205915, - "c4": 4.505385902917091, - "c5": -12.666578592702699, - "c6": -20.65228134208113, - "c7": 2.325254654903226 + "points": { + "c1": -13.810769737403092, + "c2": 9.754867150395881, + "c3": 7.95733641817467, + "c4": -42.55107476380849, + "c5": 5.7232671434138, + "c6": 38.516423349013124, + "c7": -45.43529338698269 }, - "vertexSeeds": { - "c1": 5.6229576339056075, - "c2": 5.703985014687948, - "c3": 5.0575427333880185, - "c4": 5.779510331820681, - "c5": 5.060469181434191, - "c6": 5.553902604333872, - "c7": 5.144532335006076 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.29403606102636, + "c3": 6.911696717521958, + "c4": 5.5293573740175725, + "c5": 4.1470180305131725, + "c6": 2.7646786870087863, + "c7": 1.3823393435043865 }, "rgb": [77, 76, 132] }, @@ -176370,23 +176370,23 @@ "year": 1761, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 41.85127581435927, - "c2": -17.34133600139527, - "c3": 35.67051934369755, - "c4": 40.38417268944471, - "c5": 9.50201435809528, - "c6": 26.604440830331953, - "c7": 30.889172329459313 + "points": { + "c1": -5.483163413084114, + "c2": -11.548513785654208, + "c3": -12.045434163377045, + "c4": 15.209951308240363, + "c5": -3.5820023152611924, + "c6": -14.95995829469717, + "c7": 7.5392871001550645 }, - "vertexSeeds": { - "c1": 2.340546285729339, - "c2": 2.4778170512562934, - "c3": 2.3671914454392695, - "c4": 2.2763535308839358, - "c5": 2.503880386816404, - "c6": 2.4581806807042104, - "c7": 2.4534008000562633 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092955, + "c3": 3.0513176144244083, + "c4": 2.441054091539529, + "c5": 1.8307905686546457, + "c6": 1.2205270457697626, + "c7": 0.6102635228848792 }, "rgb": [86, 146, 138] }, @@ -176397,23 +176397,23 @@ "year": 1761, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -22.957200645209035, - "c2": 24.763393072439513, - "c3": 2.0519086752569535, - "c4": 26.74234467591603, - "c5": -25.292169218058238, - "c6": 25.124057102769555, - "c7": -8.822649595919003 + "points": { + "c1": 13.544157783333794, + "c2": -9.703801331544724, + "c3": -18.006339382968537, + "c4": -16.40177242745557, + "c5": -21.16138405472758, + "c6": -31.464989194641415, + "c7": 21.445115645592736 }, - "vertexSeeds": { - "c1": 3.0942428789233283, - "c2": 2.939961176558239, - "c3": 3.085856327158585, - "c4": 2.9827661382393735, - "c5": 2.9639950986743093, - "c6": 3.1998793671386263, - "c7": 3.1985135349143565 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -176424,23 +176424,23 @@ "year": 1761, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": -6.798515929456316, - "c2": -11.4530877570211, - "c3": -15.842450237749647, - "c4": -11.050208507956171, - "c5": 2.095460770948371, - "c6": -19.200010666675986, - "c7": 10.790636075199739 + "points": { + "c1": 2.2084413351326084, + "c2": -20.041047841770357, + "c3": 9.389598067677518, + "c4": -4.98673798255129, + "c5": 9.85165042784493, + "c6": 11.085766449234029, + "c7": 7.4094149109785405 }, - "vertexSeeds": { - "c1": 3.4268260947766978, - "c2": 3.55551022140921, - "c3": 3.8550286434344505, - "c4": 3.903626940705023, - "c5": 3.6396240475336885, - "c6": 3.47145457286, - "c7": 3.736607515224823 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124824, + "c3": 4.66944059177069, + "c4": 3.7355524734165493, + "c5": 2.801664355062415, + "c6": 1.8677762367082746, + "c7": 0.9338881183541401 }, "rgb": [77, 76, 132] }, @@ -176451,23 +176451,23 @@ "year": 1761, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 25.60479318468041, - "c2": -41.670338418010495, - "c3": -16.742279714909177, - "c4": 39.25298302457934, - "c5": -27.22224250649374, - "c6": 1.98655283405013, - "c7": -37.48592246785906 + "points": { + "c1": 29.026746770929, + "c2": -40.692557369276685, + "c3": 42.14487615795402, + "c4": 39.217132520073186, + "c5": 32.82365611145962, + "c6": 23.01752943527196, + "c7": -2.8058115062057567 }, - "vertexSeeds": { - "c1": 3.5873947548930367, - "c2": 3.3756494800939074, - "c3": 3.7632771249623893, - "c4": 3.330658483249001, - "c5": 3.1690931549684818, - "c6": 3.2522896760851543, - "c7": 3.5947566376372198 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883496, + "c3": 4.530744336569581, + "c4": 3.624595469255662, + "c5": 2.718446601941748, + "c6": 1.812297734627834, + "c7": 0.9061488673139195 }, "rgb": [58, 15, 49] }, @@ -176478,23 +176478,23 @@ "year": 1761, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -5.448207209518628, - "c2": -9.504218269036699, - "c3": -42.712238967873745, - "c4": -41.11863355414707, - "c5": -11.8678831996722, - "c6": -12.03320524429924, - "c7": -13.332545861717847 + "points": { + "c1": -44.03579812856326, + "c2": 6.814110253037384, + "c3": 53.304391842407284, + "c4": 1.849558181670794, + "c5": 7.9533373163165635, + "c6": -10.956131199615406, + "c7": -27.474156731897928 }, - "vertexSeeds": { - "c1": 11.284722877345434, - "c2": 11.464064990167536, - "c3": 9.8221165437623, - "c4": 9.848740405794976, - "c5": 10.777622926045133, - "c6": 10.706648417389184, - "c7": 9.296546204553927 + "offsets": { + "c1": 19.19093851132686, + "c2": 16.449375866851586, + "c3": 13.70781322237633, + "c4": 10.966250577901057, + "c5": 8.224687933425802, + "c6": 5.483125288950537, + "c7": 2.7415626444752723 }, "rgb": [86, 146, 138] }, @@ -176505,23 +176505,23 @@ "year": 1761, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": -8.594611863397667, - "c2": -9.954408123826184, - "c3": -1.653863146179532, - "c4": -22.102066075662997, - "c5": 40.65088351550204, - "c6": -24.65539015097975, - "c7": 6.6600358426275506 + "points": { + "c1": -42.35257286232247, + "c2": -1.6738503575386545, + "c3": 49.43223803317685, + "c4": 16.833723324462277, + "c5": 30.828276837905015, + "c6": -2.49292908193663, + "c7": 30.777301009475714 }, - "vertexSeeds": { - "c1": 6.979193059743577, - "c2": 6.890933901711155, - "c3": 6.9304670644241515, - "c4": 7.121837439093512, - "c5": 7.170320317728919, - "c6": 6.8738590098282595, - "c7": 7.222657917738216 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -176532,23 +176532,23 @@ "year": 1761, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": 2.2734178746990352, - "c2": -7.429958413505981, - "c3": 17.03172249112183, - "c4": -9.240976731206278, - "c5": -4.0615252896064575, - "c6": -16.46486445601102, - "c7": 12.195151831694272 + "points": { + "c1": -5.748719964887773, + "c2": -21.723650998225803, + "c3": -13.270726246003465, + "c4": -8.877443275959477, + "c5": -13.641412278653739, + "c6": 18.937475913096723, + "c7": -6.176591785590482 }, - "vertexSeeds": { - "c1": 5.999496236716424, - "c2": 6.62646388852739, - "c3": 6.613962043820045, - "c4": 5.9359642156033425, - "c5": 6.5163996448788515, - "c6": 6.4065976312524295, - "c7": 5.750437953290735 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -176559,23 +176559,23 @@ "year": 1761, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 30.076380106886013, - "c2": 51.11670573188234, - "c3": 50.07303799446368, - "c4": 49.17891805301729, - "c5": -19.526325921923323, - "c6": 49.30478670597811, - "c7": -40.6401743790209 + "points": { + "c1": -47.551120159533255, + "c2": -30.911060649339593, + "c3": -46.534141357129386, + "c4": -16.12987394732948, + "c5": -2.6185347077481467, + "c6": 12.457175893547436, + "c7": -11.83400814882841 }, - "vertexSeeds": { - "c1": 5.813747025387412, - "c2": 5.621459612454787, - "c3": 5.37308185191135, - "c4": 5.336921717285782, - "c5": 5.64685858205421, - "c6": 5.119318644692742, - "c7": 5.0863479925902535 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605178032 }, "rgb": [58, 15, 49] }, @@ -176586,23 +176586,23 @@ "year": 1761, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": -27.865293460011305, - "c2": 13.694557551617379, - "c3": -21.913856203483856, - "c4": -44.92351621069145, - "c5": 49.7574828567588, - "c6": -11.922227179947122, - "c7": 27.99645603155605 + "points": { + "c1": 31.806019504270736, + "c2": 31.5667409435422, + "c3": -16.14837784639203, + "c4": -9.858769336790125, + "c5": -10.472085582944011, + "c6": -29.012240904214007, + "c7": 4.961215858939816 }, - "vertexSeeds": { - "c1": 4.688213435624481, - "c2": 4.45631410015157, - "c3": 4.14711354366302, - "c4": 4.331391787494526, - "c5": 4.675174334447798, - "c6": 4.674602021243526, - "c7": 4.583766722175263 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.76837725381415, + "c3": 5.640314378178456, + "c4": 4.512251502542767, + "c5": 3.3841886269070716, + "c6": 2.2561257512713837, + "c7": 1.1280628756356952 }, "rgb": [238, 201, 159] }, @@ -176613,23 +176613,23 @@ "year": 1761, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -3.521989794257948, - "c2": 31.864838928514118, - "c3": -9.205019490128489, - "c4": -25.228304231169048, - "c5": 22.330636719400665, - "c6": -34.023442330996716, - "c7": 1.9484927340871465 + "points": { + "c1": -19.101025171960767, + "c2": 10.073754773205678, + "c3": -39.73926293524957, + "c4": 18.087626729224723, + "c5": 34.249615875522764, + "c6": -33.911416459397195, + "c7": 28.016004173544943 }, - "vertexSeeds": { - "c1": 9.461059416606034, - "c2": 9.215635156183762, - "c3": 9.591985479341384, - "c4": 10.29358910507736, - "c5": 10.160774644440776, - "c6": 9.261200594555373, - "c7": 10.073417931100915 + "offsets": { + "c1": 17.702265372168284, + "c2": 15.173370319001389, + "c3": 12.644475265834496, + "c4": 10.11558021266759, + "c5": 7.5866851595006946, + "c6": 5.0577901063338, + "c7": 2.528895053166895 }, "rgb": [58, 15, 49] }, @@ -176640,23 +176640,23 @@ "year": 1761, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -12.905867144664398, - "c2": 28.64846024978801, - "c3": 4.621749882882632, - "c4": 24.302068793239954, - "c5": -3.3900555842347977, - "c6": 4.087189400553449, - "c7": -33.37863809864173 + "points": { + "c1": 20.257277150993794, + "c2": -11.028405404903395, + "c3": 2.860403024512685, + "c4": -11.168685061272214, + "c5": -8.044660988406996, + "c6": -5.727583862449734, + "c7": 15.456791755490748 }, - "vertexSeeds": { - "c1": 2.9520210270909484, - "c2": 3.1113100786261336, - "c3": 3.1271356720772134, - "c4": 3.1307329114442384, - "c5": 2.8995555408582536, - "c6": 2.9493890175023236, - "c7": 3.051220798131927 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596395, + "c3": 3.791030975496992, + "c4": 3.032824780397595, + "c5": 2.2746185852981977, + "c6": 1.5164123901988005, + "c7": 0.7582061950993971 }, "rgb": [238, 201, 159] }, @@ -176667,23 +176667,23 @@ "year": 1761, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -0.7559992391666128, - "c2": -35.57061799127786, - "c3": 16.39359836338754, - "c4": -23.989334867496567, - "c5": 40.02148398475315, - "c6": 37.117132772986054, - "c7": -9.048355225172294 + "points": { + "c1": 14.156905744994702, + "c2": 7.127761302043389, + "c3": 19.873779728436077, + "c4": 4.500635775782051, + "c5": -25.360434310055613, + "c6": -46.578087718071586, + "c7": 46.11322408066532 }, - "vertexSeeds": { - "c1": 6.45718617387292, - "c2": 6.468901938056945, - "c3": 6.340555090619311, - "c4": 6.415919004092894, - "c5": 6.2955483008828494, - "c6": 6.240634082279894, - "c7": 6.575467351158576 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675447, + "c3": 7.859454461396199, + "c4": 6.287563569116953, + "c5": 4.715672676837706, + "c6": 3.143781784558493, + "c7": 1.5718908922792465 }, "rgb": [222, 0, 59] }, @@ -176694,23 +176694,23 @@ "year": 1761, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 26.169729880589188, - "c2": 0.5122448572766984, - "c3": 2.4171233224549624, - "c4": 20.028692838235642, - "c5": -30.575778002246196, - "c6": 19.700605754616163, - "c7": -11.88984049894345 + "points": { + "c1": -6.17068989517789, + "c2": 31.589248951786452, + "c3": 14.16302049761557, + "c4": -3.482458642203035, + "c5": -9.757583389167984, + "c6": -8.588889201876533, + "c7": -4.869134178638898 }, - "vertexSeeds": { - "c1": 2.571751285200131, - "c2": 2.6615741479882495, - "c3": 2.671476500363444, - "c4": 2.6624370496380223, - "c5": 2.8052265876808047, - "c6": 2.8209092942396556, - "c7": 2.6010064976669485 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [58, 15, 49] }, @@ -176721,23 +176721,23 @@ "year": 1761, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": 8.09927323109629, - "c2": 17.28748185655825, - "c3": 6.4367257088970575, - "c4": -4.233671309407251, - "c5": 0.2705731508279463, - "c6": 5.907891744775963, - "c7": 3.2706055397021387 + "points": { + "c1": -7.019312162684605, + "c2": 12.671416582630457, + "c3": 9.066628993861855, + "c4": -16.201562020632867, + "c5": 14.843754045052535, + "c6": -12.026883012599988, + "c7": 2.8312953982483116 }, - "vertexSeeds": { - "c1": 1.4574878252334367, - "c2": 1.3693572759602453, - "c3": 1.4233995875002998, - "c4": 1.2771044663873345, - "c5": 1.270587563890442, - "c6": 1.2812865981673605, - "c7": 1.4790454480664201 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [58, 15, 49] }, @@ -176748,23 +176748,23 @@ "year": 1761, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -18.343661797988748, - "c2": 33.72462973216037, - "c3": -9.265911774122529, - "c4": 6.044221728352326, - "c5": 26.8866746076802, - "c6": 9.704889774453868, - "c7": -1.6766406878074278 + "points": { + "c1": -16.133050694770713, + "c2": 22.726392103520986, + "c3": -17.49408054656558, + "c4": -4.82653984085578, + "c5": 45.01224362465346, + "c6": -40.27637232690972, + "c7": 40.53926185171651 }, - "vertexSeeds": { - "c1": 5.372849793184609, - "c2": 5.6642446486505635, - "c3": 5.929245876942347, - "c4": 5.4306224498735665, - "c5": 5.787440960951976, - "c6": 5.566866462313055, - "c7": 5.852558910571548 + "offsets": { + "c1": 10, + "c2": 8.571428571428564, + "c3": 7.142857142857145, + "c4": 5.71428571428571, + "c5": 4.28571428571429, + "c6": 2.857142857142855, + "c7": 1.4285714285714188 }, "rgb": [238, 201, 159] }, @@ -176775,23 +176775,23 @@ "year": 1761, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": 3.9270457654922453, - "c2": 17.248648386079264, - "c3": -14.595789718806946, - "c4": -8.319605793284774, - "c5": -15.708998612642418, - "c6": 17.95852103047582, - "c7": -8.519560011691174 + "points": { + "c1": 18.71005403580431, + "c2": 10.185279053330085, + "c3": -12.546292056062498, + "c4": -13.19431155127618, + "c5": 9.318916985599994, + "c6": 12.183851157331286, + "c7": 4.193333640092856 }, - "vertexSeeds": { - "c1": 4.412219737249091, - "c2": 4.137079296860882, - "c3": 4.323764885213176, - "c4": 4.123559852510121, - "c5": 4.265602862205974, - "c6": 4.108639140724078, - "c7": 4.16027168079297 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251041, + "c3": 5.316689782709201, + "c4": 4.253351826167361, + "c5": 3.1900138696255205, + "c6": 2.1266759130836803, + "c7": 1.0633379565418402 }, "rgb": [238, 201, 159] }, @@ -176802,23 +176802,23 @@ "year": 1761, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -18.35560982312109, - "c2": 24.333719535206406, - "c3": -3.3552036446448383, - "c4": 10.572231877758853, - "c5": -14.707762896582889, - "c6": 29.38545670136606, - "c7": 3.9123674609616828 + "points": { + "c1": 14.16706183418178, + "c2": 19.314580295509863, + "c3": -21.507102071837785, + "c4": 21.270318072084507, + "c5": -17.013124855963238, + "c6": -16.453968888246305, + "c7": 21.16882334691814 }, - "vertexSeeds": { - "c1": 1.7401215896556215, - "c2": 1.5853451607643758, - "c3": 1.77542250475509, - "c4": 1.6303636072039722, - "c5": 1.4976296091256653, - "c6": 1.4184926068912067, - "c7": 1.5686132681226357 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210815, + "c3": 2.1960240406842355, + "c4": 1.7568192325473881, + "c5": 1.3176144244105408, + "c6": 0.8784096162736951, + "c7": 0.43920480813684754 }, "rgb": [238, 201, 159] }, @@ -176829,23 +176829,23 @@ "year": 1761, "resistanceReported": false, "duration": 6825600, - "curveSeeds": { - "c1": 6.8751932742002815, - "c2": -15.099424270461, - "c3": -2.9904922000360212, - "c4": 10.677907205142695, - "c5": 5.6652420475408825, - "c6": 6.987199400500042, - "c7": -13.38816515549874 + "points": { + "c1": 18.04283373077981, + "c2": -7.7053027026736345, + "c3": -9.58296857074396, + "c4": 0.13512688069238266, + "c5": -11.006429042524177, + "c6": 18.45695302069217, + "c7": -10.88495266506047 }, - "vertexSeeds": { - "c1": 6.408526834039101, - "c2": 6.161914788248947, - "c3": 6.365481048981641, - "c4": 6.346921288026105, - "c5": 6.21764673094881, - "c6": 5.7422261467939215, - "c7": 6.78810117659047 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -176856,23 +176856,23 @@ "year": 1761, "resistanceReported": false, "duration": 6566400, - "curveSeeds": { - "c1": 15.738858491973609, - "c2": -13.112649094005253, - "c3": 0.8351567288025841, - "c4": -3.913268648256663, - "c5": -10.632348538803631, - "c6": -7.06090382773565, - "c7": 4.978577563615506 + "points": { + "c1": -15.13086527498277, + "c2": -18.11437878211135, + "c3": -4.038901674772633, + "c4": -7.325516846117347, + "c5": -4.003995694438116, + "c6": 7.508557378921246, + "c7": 0.7092094994925979 }, - "vertexSeeds": { - "c1": 6.395147434921771, - "c2": 6.703457898911932, - "c3": 5.752930571564104, - "c4": 6.232088605891154, - "c5": 6.410681889342521, - "c6": 6.749338858031551, - "c7": 5.696825338349121 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -176883,23 +176883,23 @@ "year": 1761, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 3.3021037352268685, - "c2": 21.31523982984923, - "c3": -0.7348917856820769, - "c4": 26.773474025262313, - "c5": 23.947736509886585, - "c6": -6.6465132596662855, - "c7": -18.578571418590485 + "points": { + "c1": 4.33375022432012, + "c2": -15.231765156932159, + "c3": -9.278866667830624, + "c4": -1.4812844550738617, + "c5": 7.052347491717498, + "c6": 23.519367568041496, + "c7": 24.776163695977296 }, - "vertexSeeds": { - "c1": 0.7255193059328985, - "c2": 0.7241100244565988, - "c3": 0.7732260031183178, - "c4": 0.773207525055963, - "c5": 0.7772144227428148, - "c6": 0.7175616927300297, - "c7": 0.7254350708783336 + "offsets": { + "c1": 1.3592233009708738, + "c2": 1.1650485436893203, + "c3": 0.9708737864077664, + "c4": 0.7766990291262148, + "c5": 0.582524271844661, + "c6": 0.3883495145631074, + "c7": 0.1941747572815537 }, "rgb": [86, 146, 138] }, @@ -176910,23 +176910,23 @@ "year": 1761, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 8.079740295635183, - "c2": 7.116723425832809, - "c3": 12.570734380665257, - "c4": -6.302271632446569, - "c5": 3.517083416845807, - "c6": -9.374822865916864, - "c7": -19.400287900524276 + "points": { + "c1": -10.713199872908438, + "c2": 12.431887674754975, + "c3": -4.9255583159185505, + "c4": -11.240376092920267, + "c5": -6.251492193041059, + "c6": -11.427230784071941, + "c7": 25.235816117798244 }, - "vertexSeeds": { - "c1": 3.2666256868457553, - "c2": 3.2696499538485226, - "c3": 3.274126666320227, - "c4": 3.275478472996263, - "c5": 3.2781293717685758, - "c6": 3.2655948706374582, - "c7": 3.276328878901275 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837747, + "c3": 3.929727230698149, + "c4": 3.1437817845585507, + "c5": 2.3578363384187955, + "c6": 1.5718908922791972, + "c7": 0.7859454461395986 }, "rgb": [238, 201, 159] }, @@ -176937,23 +176937,23 @@ "year": 1761, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 4.075129406999821, - "c2": -26.018176684747413, - "c3": 9.818583082487478, - "c4": 19.043970138578175, - "c5": 24.54627763417706, - "c6": 2.8379788272629938, - "c7": -3.7175546872131022 + "points": { + "c1": -34.96633768287277, + "c2": 26.6417837902152, + "c3": -33.00092980443582, + "c4": 22.970468821229957, + "c5": -31.655001399003922, + "c6": 8.815528944645955, + "c7": 23.238713335692303 }, - "vertexSeeds": { - "c1": 1.7485727376353932, - "c2": 1.6207029132156021, - "c3": 1.5164929032035803, - "c4": 1.5725361326159106, - "c5": 1.4657093589957069, - "c6": 1.78453185745975, - "c7": 1.5192880871297147 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.6629680998613035, + "c3": 2.219140083217753, + "c4": 1.7753120665742024, + "c5": 1.3314840499306517, + "c6": 0.8876560332871012, + "c7": 0.4438280166435506 }, "rgb": [77, 76, 132] }, @@ -176964,23 +176964,23 @@ "year": 1761, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 17.88835600093237, - "c2": -34.08092242314793, - "c3": -16.76625741063796, - "c4": 21.133950130245367, - "c5": 31.189930474292865, - "c6": 12.456524928350042, - "c7": 34.339067486277244 + "points": { + "c1": -0.6701293591005921, + "c2": -30.39967373515777, + "c3": 24.775568665688198, + "c4": 14.662431584454005, + "c5": -2.2514866933537903, + "c6": -6.561627633155908, + "c7": 19.18056195317655 }, - "vertexSeeds": { - "c1": 2.465214648137219, - "c2": 2.2081950595178736, - "c3": 2.781758216201145, - "c4": 2.764729601557942, - "c5": 2.490609896655878, - "c6": 2.29875244664762, - "c7": 2.371699527645452 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832179, + "c3": 3.3518261673601466, + "c4": 2.6814609338881175, + "c5": 2.0110957004160896, + "c6": 1.3407304669440587, + "c7": 0.6703652334720285 }, "rgb": [58, 15, 49] }, @@ -176991,23 +176991,23 @@ "year": 1761, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 3.327008213345927, - "c2": -24.349181744675164, - "c3": 10.438886618302135, - "c4": 27.21536854363999, - "c5": 25.397237430321752, - "c6": 31.897437638849652, - "c7": 16.829342486582625 + "points": { + "c1": -22.131337043327584, + "c2": -7.700022169545242, + "c3": -10.269850403182918, + "c4": -11.697266127682532, + "c5": -0.5703319937962519, + "c6": 8.512084401612576, + "c7": 23.967309849321964 }, - "vertexSeeds": { - "c1": 4.480475763267215, - "c2": 4.248957028573454, - "c3": 4.799035897783619, - "c4": 4.3216183331359534, - "c5": 4.564926578833152, - "c6": 4.194110250544591, - "c7": 4.5014541503851895 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578367, + "c3": 6.0795191863153, + "c4": 4.863615349052244, + "c5": 3.6477115117891836, + "c6": 2.431807674526122, + "c7": 1.215903837263061 }, "rgb": [86, 146, 138] }, @@ -177018,23 +177018,23 @@ "year": 1761, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 18.404551196514372, - "c2": -25.42050973715933, - "c3": 12.498300118696246, - "c4": -26.560905012818626, - "c5": 5.0437216886227425, - "c6": 17.994633213587395, - "c7": -3.8954218422718903 + "points": { + "c1": 19.69944196283442, + "c2": -2.7643796291452674, + "c3": -4.217649243405585, + "c4": -14.270058454539637, + "c5": -8.080454982588083, + "c6": 7.982204235680108, + "c7": 1.8618826195273286 }, - "vertexSeeds": { - "c1": 3.9154570468631973, - "c2": 3.947352938485708, - "c3": 3.690617840495899, - "c4": 3.9233939069684856, - "c5": 3.8683852097949645, - "c6": 3.8219746752988812, - "c7": 3.927735005675242 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374015, + "c4": 4.068423485899212, + "c5": 3.0513176144244065, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [238, 201, 159] }, @@ -177045,23 +177045,23 @@ "year": 1761, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -26.930619627977606, - "c2": -20.912277507370597, - "c3": -31.05143463562489, - "c4": 36.555160047295274, - "c5": -25.360530903536667, - "c6": 25.216765425697375, - "c7": 36.73464647658848 + "points": { + "c1": 28.80338162106453, + "c2": 42.51897808410348, + "c3": -38.296122471414435, + "c4": 40.979778958985506, + "c5": -48.765752391235004, + "c6": 29.4836461473776, + "c7": 49.340891946189416 }, - "vertexSeeds": { - "c1": 5.279467836814416, - "c2": 5.089925595906099, - "c3": 5.078892278838485, - "c4": 5.555376987216489, - "c5": 5.146616047056553, - "c6": 5.259196999705108, - "c7": 5.387599389307467 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872392, + "c6": 2.699953767914937, + "c7": 1.3499768839574684 }, "rgb": [77, 76, 132] }, @@ -177072,23 +177072,23 @@ "year": 1761, "resistanceReported": true, "duration": 26956800, - "curveSeeds": { - "c1": -18.199863541730625, - "c2": -22.520940681376057, - "c3": -15.761767462966883, - "c4": 11.437879646148296, - "c5": -15.470094307035932, - "c6": -39.31463523700689, - "c7": 14.869519057071088 + "points": { + "c1": 20.879415200566747, + "c2": -12.8974872263599, + "c3": 7.337537267400279, + "c4": 34.961792889493, + "c5": 15.49793318069112, + "c6": 12.215213825706414, + "c7": 30.416313368436462 }, - "vertexSeeds": { - "c1": 1.444574217508152, - "c2": 1.4490966849811502, - "c3": 1.451135513357186, - "c4": 1.4394348555194594, - "c5": 1.451417684175508, - "c6": 1.4423534079894904, - "c7": 1.4459104949106425 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.1081830790568756, + "c3": 1.756819232547373, + "c4": 1.4054553860379053, + "c5": 1.0540915395284378, + "c6": 0.7027276930189702, + "c7": 0.3513638465094676 }, "rgb": [222, 0, 59] }, @@ -177099,23 +177099,23 @@ "year": 1761, "resistanceReported": true, "duration": 3888000, - "curveSeeds": { - "c1": 11.959661809199895, - "c2": -7.696294669515731, - "c3": -1.1160758422764747, - "c4": -1.3354831320382843, - "c5": 12.728442978230317, - "c6": -9.288530036439038, - "c7": 0.1645734478755383 + "points": { + "c1": 8.520562683722336, + "c2": 4.290823806501233, + "c3": -8.842291525483898, + "c4": 8.346392641204492, + "c5": 12.567793461222081, + "c6": 6.095689081812964, + "c7": 3.692389202393205 }, - "vertexSeeds": { - "c1": 1.512094903634301, - "c2": 1.3780933167645428, - "c3": 1.5070946394049252, - "c4": 1.420246691080029, - "c5": 1.418078093273955, - "c6": 1.4582338371634547, - "c7": 1.3518959780588673 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217753, + "c3": 1.84928340268146, + "c4": 1.4794267221451673, + "c5": 1.1095700416088783, + "c6": 0.7397133610725856, + "c7": 0.3698566805362928 }, "rgb": [222, 0, 59] }, @@ -177126,23 +177126,23 @@ "year": 1761, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -28.792995960146342, - "c2": -34.00582809630316, - "c3": 24.90863533501625, - "c4": 21.71343686690235, - "c5": 27.77606676554781, - "c6": -30.852438946007993, - "c7": -7.1095716786000125 + "points": { + "c1": -31.740680407664097, + "c2": -7.377307959713015, + "c3": -31.36287845086445, + "c4": 10.842092603753542, + "c5": -13.605872122238726, + "c6": 33.06542223705161, + "c7": 8.577147865824116 }, - "vertexSeeds": { - "c1": 1.581540626349081, - "c2": 1.5153540587363317, - "c3": 1.4095398913638395, - "c4": 1.4256014881299843, - "c5": 1.3876661523722544, - "c6": 1.5599781327754774, - "c7": 1.5605711816116408 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [238, 201, 159] }, @@ -177153,23 +177153,23 @@ "year": 1762, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 13.768415732002424, - "c2": 32.55068715815858, - "c3": 42.47860142551781, - "c4": -10.160465981318346, - "c5": -22.739244898262168, - "c6": 21.89948892506797, - "c7": -10.837445653789338 + "points": { + "c1": -22.110619762042166, + "c2": 28.03076987461445, + "c3": -21.632130503093336, + "c4": -47.60672798703151, + "c5": -10.00446581720805, + "c6": 48.29414634578528, + "c7": -34.74342010743433 }, - "vertexSeeds": { - "c1": 5.978246331037891, - "c2": 6.192157912022108, - "c3": 5.964803580963559, - "c4": 6.5821175317535445, - "c5": 6.1506586993978924, - "c6": 5.968061384316339, - "c7": 5.927767411195461 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996762, + "c4": 6.343042071197408, + "c5": 4.757281553398053, + "c6": 3.171521035598699, + "c7": 1.5857605177993441 }, "rgb": [86, 146, 138] }, @@ -177180,23 +177180,23 @@ "year": 1761, "resistanceReported": false, "duration": 864000, - "curveSeeds": { - "c1": 8.733777419979775, - "c2": 10.060515442178191, - "c3": -6.866628928579436, - "c4": -5.702949401259298, - "c5": -1.844455131838382, - "c6": -0.4970148063057547, - "c7": 6.087551503203466 + "points": { + "c1": 5.3566671352149715, + "c2": 5.91291991230622, + "c3": 4.769826415612032, + "c4": -3.7729863085475372, + "c5": 9.767117905437784, + "c6": 3.3219697674712467, + "c7": 7.468676183143755 }, - "vertexSeeds": { - "c1": 4.497481424022025, - "c2": 4.262786183726123, - "c3": 4.242362420682876, - "c4": 4.575799861326406, - "c5": 4.462910370723613, - "c6": 4.049254212180301, - "c7": 4.45401193300924 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -177207,23 +177207,23 @@ "year": 1761, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 31.64818420215839, - "c2": -20.87989125173673, - "c3": -29.424738892208158, - "c4": 11.703480990235924, - "c5": -24.072295713153796, - "c6": -20.770980987485316, - "c7": -16.479556676486173 + "points": { + "c1": -18.2510551180912, + "c2": 34.938547984739415, + "c3": 7.243076248380191, + "c4": 28.873589578575178, + "c5": 35.32043941288126, + "c6": -31.324504405954382, + "c7": 8.992768513974589 }, - "vertexSeeds": { - "c1": 1.561377333110348, - "c2": 1.5706778225955773, - "c3": 1.5114632439947797, - "c4": 1.5403537587847622, - "c5": 1.4504137472238692, - "c6": 1.5538306957378047, - "c7": 1.6001602814123068 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.3578363384188648, + "c3": 1.9648636153490528, + "c4": 1.5718908922792407, + "c5": 1.1789181692094324, + "c6": 0.7859454461396242, + "c7": 0.3929727230698121 }, "rgb": [238, 201, 159] }, @@ -177234,23 +177234,23 @@ "year": 1761, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 13.62999052012664, - "c2": 24.027651395553576, - "c3": -5.272842902290307, - "c4": 1.2530877779276963, - "c5": 2.3963394149842827, - "c6": -0.5605660817213973, - "c7": -31.970242757180706 + "points": { + "c1": -32.95528337394249, + "c2": -28.027779576553726, + "c3": -10.899795282598184, + "c4": 36.52787553472882, + "c5": -1.4202425220016863, + "c6": 9.133397934363138, + "c7": -30.85020838889201 }, - "vertexSeeds": { - "c1": 3.23617981632645, - "c2": 3.187129482921424, - "c3": 3.080571753793115, - "c4": 2.8900600543440618, - "c5": 2.852345395013277, - "c6": 2.9411852045502997, - "c7": 3.033708340961039 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918171, + "c3": 3.9759593157651376, + "c4": 3.1807674526121117, + "c5": 2.3855755894590853, + "c6": 1.590383726306059, + "c7": 0.7951918631530264 }, "rgb": [77, 76, 132] }, @@ -177261,23 +177261,23 @@ "year": 1761, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 4.887990039339115, - "c2": -4.295596231869709, - "c3": 7.5148740428380165, - "c4": 12.290670843457512, - "c5": -23.73440506442253, - "c6": 3.373300185083025, - "c7": 7.2108880689896395 + "points": { + "c1": 33.0346941774968, + "c2": 23.79027662681675, + "c3": -24.716247555325563, + "c4": -24.749224134994048, + "c5": 19.582322629189832, + "c6": 9.622742141683666, + "c7": -33.26648687400047 }, - "vertexSeeds": { - "c1": 3.2132377125175267, - "c2": 2.9830028561897874, - "c3": 2.8957995120028612, - "c4": 2.980540766395809, - "c5": 3.066446507473429, - "c6": 3.5296079624492753, - "c7": 3.2955468687578384 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.253351826167362, + "c4": 3.4026814609338887, + "c5": 2.5520110957004154, + "c6": 1.7013407304669421, + "c7": 0.8506703652334735 }, "rgb": [238, 201, 159] }, @@ -177288,23 +177288,23 @@ "year": 1762, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 39.91412462074823, - "c2": 29.185861480691052, - "c3": -7.424585532885686, - "c4": -33.73576371059034, - "c5": 31.137593577444598, - "c6": 4.155648567389001, - "c7": 32.40711096277622 + "points": { + "c1": 30.453332392511207, + "c2": 52.653837033004045, + "c3": -29.50154918400897, + "c4": -30.955220017116496, + "c5": -19.971597956612896, + "c6": 41.940364221583316, + "c7": -28.36589986432466 }, - "vertexSeeds": { - "c1": 8.472256502570307, - "c2": 9.918440819471277, - "c3": 9.180069521569992, - "c4": 8.516384534389177, - "c5": 8.887134990458629, - "c6": 8.147846653647, - "c7": 9.547091967341403 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.257975034674061, + "c3": 11.88164586222839, + "c4": 9.50531668978271, + "c5": 7.1289875173370305, + "c6": 4.752658344891358, + "c7": 2.376329172445679 }, "rgb": [222, 0, 59] }, @@ -177315,23 +177315,23 @@ "year": 1761, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 25.276146945112302, - "c2": 23.683215805378666, - "c3": -8.440582167698452, - "c4": 4.173953894158558, - "c5": 15.64583136589173, - "c6": 15.375433111553555, - "c7": -15.376314583987218 + "points": { + "c1": 0.8720877317516766, + "c2": -11.043957849931171, + "c3": -29.450095190664655, + "c4": -4.981023946524022, + "c5": -9.576115325914778, + "c6": 12.58529035974533, + "c7": 23.07562284557134 }, - "vertexSeeds": { - "c1": 4.348556246922399, - "c2": 4.19810241250415, - "c3": 4.171268017610177, - "c4": 4.20174292704234, - "c5": 4.115583438081737, - "c6": 3.988607586770839, - "c7": 4.154011742767141 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [86, 146, 138] }, @@ -177342,23 +177342,23 @@ "year": 1762, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -34.78587606564023, - "c2": -26.879365546780768, - "c3": -32.3886573659884, - "c4": -5.413411279738675, - "c5": -3.790744632517317, - "c6": 28.935022887821873, - "c7": -20.557835252806104 + "points": { + "c1": -3.375429306628, + "c2": 26.10464716232711, + "c3": 8.240752377655738, + "c4": 9.634365122810124, + "c5": -9.698320605185707, + "c6": -6.404081756336389, + "c7": -15.433414547031958 }, - "vertexSeeds": { - "c1": 4.602582475260985, - "c2": 4.4191319415110355, - "c3": 4.708604984587123, - "c4": 4.298946742112556, - "c5": 4.648012786326754, - "c6": 4.064391363969375, - "c7": 4.25520745359794 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -177369,23 +177369,23 @@ "year": 1762, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 41.75556120536771, - "c2": -12.106095175600245, - "c3": 7.43163705008358, - "c4": -14.659437383537355, - "c5": -10.770679024760156, - "c6": -19.166288852448798, - "c7": -29.514359579555613 + "points": { + "c1": 13.054481350644608, + "c2": 27.989220688988297, + "c3": -3.3253941332266166, + "c4": -3.3458625529652934, + "c5": -15.069478823290257, + "c6": -32.681359521518715, + "c7": -39.897516863084206 }, - "vertexSeeds": { - "c1": 4.698730608598394, - "c2": 4.215653220897284, - "c3": 4.163268706361685, - "c4": 4.1402565495096715, - "c5": 4.091418933747671, - "c6": 4.053202802734284, - "c7": 4.72112915836583 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -177396,23 +177396,23 @@ "year": 1762, "resistanceReported": false, "duration": 62985600, - "curveSeeds": { - "c1": -5.640573879183762, - "c2": -24.172483285508306, - "c3": -64.1676009302579, - "c4": 65.58910349605455, - "c5": -14.940744579211824, - "c6": 65.74083251244014, - "c7": 72.55450842187292 + "points": { + "c1": 1.488464434949364, + "c2": -47.138408933010915, + "c3": -13.356304752484377, + "c4": 13.178252023529566, + "c5": 47.13371372580659, + "c6": -75.60075972643139, + "c7": -11.987551786357102 }, - "vertexSeeds": { - "c1": 4.073472902608453, - "c2": 4.431414289033592, - "c3": 4.406211830621828, - "c4": 4.370110863968629, - "c5": 4.228325059869298, - "c6": 4.333677779464787, - "c7": 4.256536027637621 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -177423,23 +177423,23 @@ "year": 1762, "resistanceReported": false, "duration": 50544000, - "curveSeeds": { - "c1": -5.776594319661022, - "c2": 18.253760416712794, - "c3": -56.23863845189888, - "c4": 27.454843849157555, - "c5": -61.96869901886146, - "c6": -11.493918799192379, - "c7": 6.794125644116789 + "points": { + "c1": 5.023988898807929, + "c2": 18.486903230673974, + "c3": 36.99565555532132, + "c4": -30.053607473500847, + "c5": 33.0028327911415, + "c6": 33.346204120451006, + "c7": -54.50149053720907 }, - "vertexSeeds": { - "c1": 6.223759779602362, - "c2": 6.3863200699348335, - "c3": 6.592071684031562, - "c4": 6.260589066735801, - "c5": 6.3744304925068835, - "c6": 6.659336340586819, - "c7": 6.258868949704212 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836332, + "c3": 7.951918631530283, + "c4": 6.361534905224221, + "c5": 4.771151178918173, + "c6": 3.1807674526121104, + "c7": 1.590383726306048 }, "rgb": [77, 76, 132] }, @@ -177450,23 +177450,23 @@ "year": 1762, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -39.57343522585377, - "c2": 37.048940991023414, - "c3": -40.64139423290398, - "c4": 21.370382542162062, - "c5": 13.086880406569875, - "c6": -36.61376418644285, - "c7": 29.79734909759705 + "points": { + "c1": -18.504926243635055, + "c2": 12.239006034789988, + "c3": 18.826513849926002, + "c4": -1.8727743479186572, + "c5": 29.685316188466402, + "c6": -24.76083556608056, + "c7": 30.53104471525286 }, - "vertexSeeds": { - "c1": 4.827817684461909, - "c2": 4.947206795717588, - "c3": 4.789059758829454, - "c4": 5.33939357189952, - "c5": 5.35177208041228, - "c6": 5.211359742486757, - "c7": 5.288244806676373 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385112, + "c4": 5.177993527508089, + "c5": 3.8834951456310645, + "c6": 2.5889967637540408, + "c7": 1.294498381877017 }, "rgb": [222, 0, 59] }, @@ -177477,23 +177477,23 @@ "year": 1762, "resistanceReported": false, "duration": 48384000, - "curveSeeds": { - "c1": -26.377263937367722, - "c2": 55.022678402717226, - "c3": -55.519908023074834, - "c4": -45.51121911974502, - "c5": -41.81866382891671, - "c6": -52.779692668558795, - "c7": -41.80647781039266 + "points": { + "c1": 26.718244895103965, + "c2": -20.358731166543485, + "c3": -0.6692188930992558, + "c4": -45.498062225308786, + "c5": 56.17443127418342, + "c6": 3.290464528938557, + "c7": -23.485774675743613 }, - "vertexSeeds": { - "c1": 4.327702483746622, - "c2": 4.559419865129889, - "c3": 4.069831125071546, - "c4": 4.360288800013566, - "c5": 4.203705925912539, - "c6": 4.223132324386487, - "c7": 4.506837354857469 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532597, + "c3": 5.478502080443827, + "c4": 4.382801664355065, + "c5": 3.2871012482662945, + "c6": 2.1914008321775325, + "c7": 1.0957004160887702 }, "rgb": [86, 146, 138] }, @@ -177504,23 +177504,23 @@ "year": 1762, "resistanceReported": false, "duration": 45446400, - "curveSeeds": { - "c1": 3.6978512163575346, - "c2": 39.93196065386757, - "c3": -37.99658593654307, - "c4": 35.11492061730677, - "c5": -4.775734962077529, - "c6": 0.4927520710682174, - "c7": -47.45266360535253 + "points": { + "c1": -35.35994661334834, + "c2": 18.834754882740178, + "c3": 40.77380032283754, + "c4": 11.797590608008115, + "c5": -60.811997722082104, + "c6": -29.914357255810295, + "c7": -12.931334880106206 }, - "vertexSeeds": { - "c1": 1.5746966981295138, - "c2": 1.7095118451320281, - "c3": 1.6650273549828334, - "c4": 1.6124294882992813, - "c5": 1.5776318876828335, - "c6": 1.696202940436229, - "c7": 1.660087592322893 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [222, 0, 59] }, @@ -177531,23 +177531,23 @@ "year": 1762, "resistanceReported": false, "duration": 55123200, - "curveSeeds": { - "c1": -49.81560921841486, - "c2": -35.42039728148522, - "c3": -56.503893614986396, - "c4": -22.12323053425238, - "c5": 39.734444737739636, - "c6": 25.51499825046953, - "c7": -34.441814920978544 + "points": { + "c1": -15.516136718720716, + "c2": -21.055902831239713, + "c3": -26.79512784911187, + "c4": 53.89680965259511, + "c5": 70.5632628026199, + "c6": 42.65340496250303, + "c7": 15.12082389242289 }, - "vertexSeeds": { - "c1": 3.9709227724686604, - "c2": 4.297854882007811, - "c3": 3.8656128729111963, - "c4": 3.8577892549001, - "c5": 4.122054070957459, - "c6": 3.722590937678748, - "c7": 4.267598513905621 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130374, + "c3": 5.247341655108645, + "c4": 4.197873324086916, + "c5": 3.148404993065187, + "c6": 2.098936662043458, + "c7": 1.049468331021729 }, "rgb": [222, 0, 59] }, @@ -177558,23 +177558,23 @@ "year": 1762, "resistanceReported": false, "duration": 55555200, - "curveSeeds": { - "c1": 58.78207999860891, - "c2": -40.176726118388714, - "c3": -35.682914414650604, - "c4": 6.385178211851908, - "c5": 56.20004069370172, - "c6": 65.11444395318321, - "c7": -66.90236206742657 + "points": { + "c1": -33.193586301851646, + "c2": 16.309645759324425, + "c3": 71.72239160717513, + "c4": 16.57964625799859, + "c5": -12.960166231123921, + "c6": 34.855494036832255, + "c7": -57.57531233534568 }, - "vertexSeeds": { - "c1": 2.599901770997656, - "c2": 2.597038396950368, - "c3": 2.732005600799012, - "c4": 2.615704871019692, - "c5": 2.869506295539841, - "c6": 2.5584006698180253, - "c7": 2.5619538793873198 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.2718446601941755, + "c3": 3.5598705501618135, + "c4": 2.847896440129452, + "c5": 2.1359223300970904, + "c6": 1.4239482200647233, + "c7": 0.7119741100323617 }, "rgb": [58, 15, 49] }, @@ -177585,23 +177585,23 @@ "year": 1762, "resistanceReported": false, "duration": 51148800, - "curveSeeds": { - "c1": -4.706701778750485, - "c2": -13.183124586188192, - "c3": -56.276818560098164, - "c4": -37.38858433091012, - "c5": 43.66786583999462, - "c6": -36.10737996660635, - "c7": 14.864283270563291 + "points": { + "c1": 33.46428264086988, + "c2": -18.604264205151935, + "c3": -27.29536164571487, + "c4": -48.673149930642225, + "c5": -41.10052930244605, + "c6": 61.13124635268872, + "c7": -25.773304894323935 }, - "vertexSeeds": { - "c1": 1.6557479549075365, - "c2": 1.6315787872843803, - "c3": 1.4289742312619627, - "c4": 1.7042950109372192, - "c5": 1.592874378165322, - "c6": 1.6349562544171279, - "c7": 1.4053341065110376 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361993, + "c3": 1.6874711049468334, + "c4": 1.3499768839574662, + "c5": 1.0124826629681003, + "c6": 0.6749884419787331, + "c7": 0.3374942209893659 }, "rgb": [222, 0, 59] }, @@ -177612,23 +177612,23 @@ "year": 1762, "resistanceReported": false, "duration": 48729600, - "curveSeeds": { - "c1": -58.324306045440906, - "c2": -52.913770152128855, - "c3": 33.54994525122158, - "c4": -35.67286472232648, - "c5": -54.847365968832136, - "c6": 0.15092222507200148, - "c7": -6.497229477744874 + "points": { + "c1": -34.2776284635445, + "c2": 47.14700962698511, + "c3": -30.333902506910334, + "c4": 20.331981479273665, + "c5": 11.098296168571252, + "c6": 52.478877353438705, + "c7": 59.088430603586545 }, - "vertexSeeds": { - "c1": 2.481625346890346, - "c2": 2.6881556572739345, - "c3": 2.790256536684983, - "c4": 2.639899412811051, - "c5": 2.744915810364879, - "c6": 2.762360689587944, - "c7": 2.71360806517494 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832175, + "c3": 3.351826167360144, + "c4": 2.6814609338881192, + "c5": 2.0110957004160874, + "c6": 1.340730466944056, + "c7": 0.6703652334720318 }, "rgb": [238, 201, 159] }, @@ -177639,23 +177639,23 @@ "year": 1762, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": -5.98803156667244, - "c2": -23.331049783206787, - "c3": -1.7081989845318546, - "c4": -12.480337692746161, - "c5": -11.548903782610644, - "c6": -43.81392569514567, - "c7": 46.71117284283354 + "points": { + "c1": -23.221877030036758, + "c2": -15.099651473030562, + "c3": -4.567842118046713, + "c4": 13.09037527160556, + "c5": 50.10540988679997, + "c6": 17.05848465806354, + "c7": -36.1080391764405 }, - "vertexSeeds": { - "c1": 1.3925452882480807, - "c2": 1.3476213036629803, - "c3": 1.347304604286517, - "c4": 1.306001122876109, - "c5": 1.3895521044907428, - "c6": 1.3125036698826662, - "c7": 1.343157345936625 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.1914008321775325, + "c3": 1.8261673601479422, + "c4": 1.460933888118355, + "c5": 1.0957004160887676, + "c6": 0.7304669440591774, + "c7": 0.36523347202959017 }, "rgb": [86, 146, 138] }, @@ -177666,23 +177666,23 @@ "year": 1762, "resistanceReported": false, "duration": 57888000, - "curveSeeds": { - "c1": 68.43972291701617, - "c2": 7.309049264459915, - "c3": -71.80151435098165, - "c4": 4.616659954224161, - "c5": 20.047924898212074, - "c6": -48.051158940151694, - "c7": 16.517261678823417 + "points": { + "c1": 13.098424519989422, + "c2": -23.132555398369853, + "c3": -12.919028319947358, + "c4": 9.838624674887981, + "c5": 40.847583985388184, + "c6": 58.754046179610114, + "c7": -60.55691237432113 }, - "vertexSeeds": { - "c1": 3.067438686799464, - "c2": 3.1406612162216176, - "c3": 3.4358081125829463, - "c4": 3.070709161982296, - "c5": 3.2843378006641784, - "c6": 3.4983719991037017, - "c7": 3.286013450598789 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682384, + "c3": 4.415164123901989, + "c4": 3.532131299121589, + "c5": 2.6490984743411943, + "c6": 1.7660656495607945, + "c7": 0.883032824780395 }, "rgb": [77, 76, 132] }, @@ -177693,23 +177693,23 @@ "year": 1763, "resistanceReported": false, "duration": 63676800, - "curveSeeds": { - "c1": -10.992700877742493, - "c2": 72.9084311968062, - "c3": 70.82375368777026, - "c4": -7.774515999423599, - "c5": 18.942854879869927, - "c6": -37.116924593822105, - "c7": 30.598045443143633 + "points": { + "c1": -40.778994255039095, + "c2": -54.121723970419254, + "c3": -70.92143022025445, + "c4": -70.43997151320993, + "c5": 14.930196259655574, + "c6": -38.45937074712103, + "c7": 33.37254338781972 }, - "vertexSeeds": { - "c1": 2.8810979543300363, - "c2": 2.6028607777296253, - "c3": 2.8249080652500895, - "c4": 2.6267799904648936, - "c5": 2.8764670655207016, - "c6": 2.8835910519922296, - "c7": 2.7705698787563917 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.773925104022189, + "c5": 2.080443828016646, + "c6": 1.3869625520110944, + "c7": 0.6934812760055515 }, "rgb": [86, 146, 138] }, @@ -177720,23 +177720,23 @@ "year": 1762, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 10.568034175087128, - "c2": -13.477239790382164, - "c3": -52.93055563924741, - "c4": 51.25673714535083, - "c5": 44.25233045058351, - "c6": 45.51772917799874, - "c7": -23.67984906713799 + "points": { + "c1": 4.871324607383883, + "c2": -30.340029311782942, + "c3": 51.58928968597201, + "c4": 18.430297451448602, + "c5": -23.978542308855186, + "c6": 50.34257634037905, + "c7": -41.49546094757221 }, - "vertexSeeds": { - "c1": 1.2595099964586403, - "c2": 1.2596865998789266, - "c3": 1.3701644018936672, - "c4": 1.3757247603986262, - "c5": 1.3360682675086135, - "c6": 1.3321185224113468, - "c7": 1.2351508420039141 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959783, + "c3": 1.6643550624133159, + "c4": 1.3314840499306493, + "c5": 0.9986130374479871, + "c6": 0.6657420249653246, + "c7": 0.3328710124826623 }, "rgb": [77, 76, 132] }, @@ -177747,23 +177747,23 @@ "year": 1762, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": 50.21631884027865, - "c2": 35.878009409492314, - "c3": 46.98523551041827, - "c4": 46.99504056753667, - "c5": -24.82886514779244, - "c6": 23.205364188922793, - "c7": 39.9843905965787 + "points": { + "c1": -22.100126280252, + "c2": -26.549202000897683, + "c3": 41.12322566720605, + "c4": -38.43079732699109, + "c5": -46.21294349185895, + "c6": -55.02610543007241, + "c7": 3.1252096228106154 }, - "vertexSeeds": { - "c1": 3.360785347554642, - "c2": 3.2981907142263633, - "c3": 3.3634885371293093, - "c4": 3.2841061375106113, - "c5": 3.3216938428447875, - "c6": 3.334123798938582, - "c7": 3.3671309675159704 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038827, + "c3": 4.04530744336571, + "c4": 3.2362459546925617, + "c5": 2.4271844660194133, + "c6": 1.6181229773462644, + "c7": 0.8090614886731484 }, "rgb": [77, 76, 132] }, @@ -177774,23 +177774,23 @@ "year": 1761, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 25.61650042271555, - "c2": 7.119173034828311, - "c3": -20.124990492631824, - "c4": 0.7535312216565764, - "c5": 21.72494980413457, - "c6": 5.9477084814910945, - "c7": -7.5954021936450715 + "points": { + "c1": -20.63704891341114, + "c2": -12.659395989141068, + "c3": -14.966619481510087, + "c4": -18.20891912108788, + "c5": -17.488453671400485, + "c6": -21.924875548555505, + "c7": -28.017439339384094 }, - "vertexSeeds": { - "c1": 1.7212385543060351, - "c2": 1.7230208788934545, - "c3": 1.7375294995607213, - "c4": 1.720216359087774, - "c5": 1.7120250055181878, - "c6": 1.735528053803354, - "c7": 1.7313219853835466 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.524271844660185, + "c3": 2.1035598705501646, + "c4": 1.6828478964401234, + "c5": 1.262135922330103, + "c6": 0.8414239482200617, + "c7": 0.42071197411002037 }, "rgb": [222, 0, 59] }, @@ -177801,23 +177801,23 @@ "year": 1762, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 12.994064473409232, - "c2": -16.244341738282074, - "c3": 39.10535312360938, - "c4": 11.703074720970584, - "c5": 35.22072515943622, - "c6": 33.01697410112502, - "c7": -28.735483523129815 + "points": { + "c1": -0.7654777579102756, + "c2": -44.01985096915291, + "c3": -36.991552272156696, + "c4": -45.16504547828266, + "c5": -25.340635109072316, + "c6": -9.032839103993403, + "c7": -41.224353506210406 }, - "vertexSeeds": { - "c1": 5.451109388141643, - "c2": 5.833644537535609, - "c3": 5.688435609963692, - "c4": 5.472684215807727, - "c5": 5.518590605913197, - "c6": 5.4842697993871505, - "c7": 5.867325507013181 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [77, 76, 132] }, @@ -177828,23 +177828,23 @@ "year": 1761, "resistanceReported": true, "duration": 24451200, - "curveSeeds": { - "c1": -13.696099041737927, - "c2": 13.19090832948062, - "c3": -15.786638219542247, - "c4": -9.926138719224664, - "c5": -30.444183159862938, - "c6": 23.957374974219363, - "c7": 16.794921012527432 + "points": { + "c1": -33.443301946006116, + "c2": 15.894483761729113, + "c3": -13.618083453134116, + "c4": -20.972857633483688, + "c5": 30.51918996029643, + "c6": 17.84272012703849, + "c7": 7.202927193037489 }, - "vertexSeeds": { - "c1": 7.937575909695027, - "c2": 8.471511210465486, - "c3": 7.994939497875469, - "c4": 8.767639640795535, - "c5": 7.595468374045113, - "c6": 7.029099616721166, - "c7": 6.899383318015712 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330097, + "c3": 10.51779935275081, + "c4": 8.414239482200648, + "c5": 6.310679611650485, + "c6": 4.207119741100324, + "c7": 2.103559870550162 }, "rgb": [86, 146, 138] }, @@ -177855,23 +177855,23 @@ "year": 1761, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 5.380042844412266, - "c2": 4.481660362232574, - "c3": 1.6504151172208879, - "c4": -0.5922340110150017, - "c5": -7.966847714097298, - "c6": -21.777443473998602, - "c7": -23.363349270817707 + "points": { + "c1": 19.3262284393427, + "c2": -2.018719070561673, + "c3": -23.81047891281476, + "c4": -11.558814440291904, + "c5": 5.956630288261358, + "c6": 30.74558969606224, + "c7": 13.363833457173342 }, - "vertexSeeds": { - "c1": 4.116874145717807, - "c2": 4.259185552301663, - "c3": 3.985119556847924, - "c4": 4.170572413855772, - "c5": 4.041931448419826, - "c6": 3.881112358587881, - "c7": 3.8668919242182054 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [86, 146, 138] }, @@ -177882,23 +177882,23 @@ "year": 1761, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -4.137347072246115, - "c2": -9.471710467360484, - "c3": 3.642176571047699, - "c4": -23.325519947895444, - "c5": -8.36121194075908, - "c6": -13.534489305356303, - "c7": 18.957563843395796 + "points": { + "c1": -5.174528660086324, + "c2": -28.343012425449086, + "c3": -30.4888340106889, + "c4": -5.462657290803605, + "c5": 23.08868691249092, + "c6": -38.81618873369735, + "c7": -31.942493996863714 }, - "vertexSeeds": { - "c1": 4.84394679114074, - "c2": 4.810117356936193, - "c3": 5.0702026006191225, - "c4": 4.779692319617182, - "c5": 5.057305527882254, - "c6": 4.9363558273247685, - "c7": 5.1972740365885235 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -177909,23 +177909,23 @@ "year": 1761, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 25.684274597159934, - "c2": -17.616821342522485, - "c3": 5.386746066354547, - "c4": 29.754533121001877, - "c5": 16.705554759635703, - "c6": -9.045872374676936, - "c7": -0.7055605733837069 + "points": { + "c1": -40.45577502270323, + "c2": 24.9706584377684, + "c3": -23.886238017272245, + "c4": -11.391479846394596, + "c5": 31.12531571680079, + "c6": 3.9603335538687716, + "c7": 18.563196751996315 }, - "vertexSeeds": { - "c1": 7.087009944230642, - "c2": 6.9474398561177955, - "c3": 7.132632775035388, - "c4": 6.082424149414128, - "c5": 6.984501899392129, - "c6": 5.914441406788525, - "c7": 6.621186320952825 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.95700416088766, + "c3": 9.130836800739718, + "c4": 7.304669440591771, + "c5": 5.47850208044383, + "c6": 3.652334720295889, + "c7": 1.8261673601479407 }, "rgb": [77, 76, 132] }, @@ -177936,23 +177936,23 @@ "year": 1761, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -18.978650266349277, - "c2": -35.44127802191369, - "c3": 15.884126237005283, - "c4": 31.588986812184253, - "c5": -28.533689077253538, - "c6": -10.385219402954231, - "c7": 28.226180672378156 + "points": { + "c1": -40.53719259896627, + "c2": 7.568054923187788, + "c3": -8.854955086932335, + "c4": -8.01529571128274, + "c5": 31.77554920562033, + "c6": -13.929489342464006, + "c7": -15.4248942035575 }, - "vertexSeeds": { - "c1": 10.971116620979647, - "c2": 9.66375290521587, - "c3": 10.08192956780836, - "c4": 9.668025343034206, - "c5": 9.645923998922726, - "c6": 9.565294933090914, - "c7": 10.914634947520726 + "offsets": { + "c1": 18.349514563106798, + "c2": 15.72815533980582, + "c3": 13.106796116504862, + "c4": 10.485436893203884, + "c5": 7.864077669902915, + "c6": 5.242718446601947, + "c7": 2.6213592233009684 }, "rgb": [222, 0, 59] }, @@ -177963,23 +177963,23 @@ "year": 1761, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -16.466663665588552, - "c2": 37.500472954473, - "c3": -27.845713564988102, - "c4": -30.227319022960465, - "c5": 25.60331766224813, - "c6": 35.52167653543674, - "c7": 8.188781803637852 + "points": { + "c1": -36.572655427057114, + "c2": 18.280814813263163, + "c3": -29.67719777522843, + "c4": -2.99680879231488, + "c5": -39.69444517009417, + "c6": -11.858973128658889, + "c7": -38.404821506645376 }, - "vertexSeeds": { - "c1": 7.360828193439794, - "c2": 7.310241797671573, - "c3": 6.905468132966201, - "c4": 6.921969000142222, - "c5": 6.935012414548283, - "c6": 7.11311617182311, - "c7": 7.107240877718103 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -177990,23 +177990,23 @@ "year": 1762, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -27.15047233081716, - "c2": 6.104193687321747, - "c3": 22.409422295332, - "c4": -23.963255310023413, - "c5": -3.6245699959963957, - "c6": 37.34079045292656, - "c7": -41.14247850984542 + "points": { + "c1": -36.43838233942523, + "c2": 44.9875582301729, + "c3": -16.17363057163055, + "c4": 2.8198262832488368, + "c5": -38.960371032618276, + "c6": 11.955846209916658, + "c7": -17.455849982117968 }, - "vertexSeeds": { - "c1": 7.940363560059593, - "c2": 7.866568811405569, - "c3": 7.32688788327076, - "c4": 7.694491804838104, - "c5": 7.68911125540946, - "c6": 7.379952366715769, - "c7": 7.842327311892722 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778086, + "c3": 10.217290799815071, + "c4": 8.173832639852057, + "c5": 6.130374479889043, + "c6": 4.086916319926028, + "c7": 2.043458159963014 }, "rgb": [58, 15, 49] }, @@ -178017,23 +178017,23 @@ "year": 1762, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 46.38770489459761, - "c2": 32.894198284935975, - "c3": -39.55727141937623, - "c4": -1.048994404506061, - "c5": -12.617112523698083, - "c6": 49.38751467057558, - "c7": -48.09014248192377 + "points": { + "c1": -25.777920708561492, + "c2": 23.628622277302732, + "c3": 10.22717561524503, + "c4": 10.333170945789298, + "c5": 25.963579066172734, + "c6": 36.12060280454221, + "c7": 9.99082620857191 }, - "vertexSeeds": { - "c1": 5.925312032896415, - "c2": 6.327742946162113, - "c3": 5.627858752264009, - "c4": 6.2278950510594235, - "c5": 5.395439081750326, - "c6": 6.421569839238793, - "c7": 5.479142381349856 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635232, + "c3": 7.8363384188626855, + "c4": 6.269070735090151, + "c5": 4.701803051317616, + "c6": 3.13453536754508, + "c7": 1.5672676837725352 }, "rgb": [222, 0, 59] }, @@ -178044,23 +178044,23 @@ "year": 1761, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 16.657484437776453, - "c2": 12.579940158689723, - "c3": -22.49791781738918, - "c4": 17.43983219711461, - "c5": 6.81428778613866, - "c6": -19.564003585873174, - "c7": -9.350322776818782 + "points": { + "c1": 0.3635434293966249, + "c2": -11.19505184866322, + "c3": 20.324449900067968, + "c4": -7.213286296761019, + "c5": 2.4911901660681615, + "c6": 7.337121240508367, + "c7": -20.397084648548834 }, - "vertexSeeds": { - "c1": 2.8362813120190142, - "c2": 2.833203411765885, - "c3": 2.8229025941532915, - "c4": 2.818762259804811, - "c5": 2.8243649763241225, - "c6": 2.8290124820642797, - "c7": 2.8347607160648525 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.07766990291264, + "c3": 3.398058252427223, + "c4": 2.7184466019418054, + "c5": 2.0388349514562525, + "c6": 1.359223300970835, + "c7": 0.6796116504854175 }, "rgb": [238, 201, 159] }, @@ -178071,23 +178071,23 @@ "year": 1761, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 8.347104681447838, - "c2": -27.418965452087438, - "c3": 12.402463175965032, - "c4": 18.75060025206919, - "c5": -16.134424062336297, - "c6": -29.707232626446327, - "c7": 16.85373950555067 + "points": { + "c1": 5.0971609816141665, + "c2": 12.02221281591369, + "c3": 29.328600270302758, + "c4": 26.90601546210638, + "c5": -19.485023798489237, + "c6": -8.021359825410762, + "c7": -24.525339867415163 }, - "vertexSeeds": { - "c1": 2.749218235536364, - "c2": 3.0431498622408055, - "c3": 2.8740682637168065, - "c4": 2.9520887078532008, - "c5": 3.1247735867793596, - "c6": 3.2085495266444397, - "c7": 3.186127807266878 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757281, + "c3": 3.8834951456310662, + "c4": 3.1067961165048525, + "c5": 2.3300970873786433, + "c6": 1.5533980582524287, + "c7": 0.7766990291262144 }, "rgb": [86, 146, 138] }, @@ -178098,23 +178098,23 @@ "year": 1762, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 7.070177241104538, - "c2": 24.93771210863695, - "c3": -21.98608167530377, - "c4": -17.9032155250121, - "c5": 32.809515068315555, - "c6": -24.926224275618544, - "c7": -34.988370204094295 + "points": { + "c1": 6.686505583593771, + "c2": -20.16490887492483, + "c3": 28.03590632183562, + "c4": 36.78830912902212, + "c5": 21.550225835866975, + "c6": -1.97046983479283, + "c7": -20.9768323072621 }, - "vertexSeeds": { - "c1": 2.6893551493609262, - "c2": 2.678640496153127, - "c3": 2.9125515751338114, - "c4": 2.9819060395062453, - "c5": 2.692065970840932, - "c6": 3.1127072888903307, - "c7": 2.6605279471460985 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.49375866851595, + "c3": 3.744798890429957, + "c4": 2.99583911234397, + "c5": 2.2468793342579776, + "c6": 1.497919556171985, + "c7": 0.7489597780859925 }, "rgb": [58, 15, 49] }, @@ -178125,23 +178125,23 @@ "year": 1762, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 20.81630805190735, - "c2": 0.9738193457363948, - "c3": 6.088964145952097, - "c4": 35.638064146951415, - "c5": 32.29328552327916, - "c6": -32.71175446663082, - "c7": 28.823407261540773 + "points": { + "c1": -26.30997015476425, + "c2": -1.9908289105657317, + "c3": 1.3538547226889932, + "c4": 12.41618158349467, + "c5": -16.015612130730243, + "c6": -13.238064278705433, + "c7": -2.199469203569926 }, - "vertexSeeds": { - "c1": 6.3529272517937905, - "c2": 6.605533229828505, - "c3": 5.711021266933711, - "c4": 5.740917806816408, - "c5": 6.349233994983434, - "c6": 6.784277833400659, - "c7": 5.867190209099768 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -178152,23 +178152,23 @@ "year": 1762, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -18.807780242105814, - "c2": -9.816170596815972, - "c3": 8.42949407488927, - "c4": 2.3267537267217904, - "c5": 20.066576251570403, - "c6": 29.044100261319265, - "c7": -5.060823390738911 + "points": { + "c1": -33.76842105126808, + "c2": -21.925500286345613, + "c3": 37.36980897077567, + "c4": -10.634637020893901, + "c5": 41.39980081702401, + "c6": 27.12755885280695, + "c7": 18.220731125749545 }, - "vertexSeeds": { - "c1": 7.9107258145485995, - "c2": 9.693438607914485, - "c3": 8.906860331230147, - "c4": 9.168571983882073, - "c5": 8.001480027821163, - "c6": 8.586843669848895, - "c7": 9.107426487687063 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011095, + "c3": 11.558021266759132, + "c4": 9.246417013407301, + "c5": 6.934812760055481, + "c6": 4.623208506703651, + "c7": 2.3116042533518204 }, "rgb": [77, 76, 132] }, @@ -178179,23 +178179,23 @@ "year": 1761, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 5.370781360974231, - "c2": 7.652125077146042, - "c3": -6.767431165149592, - "c4": 22.264060913526325, - "c5": 15.339635184056771, - "c6": 20.656134551167167, - "c7": -16.853085377663767 + "points": { + "c1": -16.923426021918377, + "c2": -26.612913156520143, + "c3": 6.939875384200718, + "c4": -13.86042541395015, + "c5": -18.502382015612415, + "c6": 6.808139152230034, + "c7": 24.81110171379857 }, - "vertexSeeds": { - "c1": 12.12229848539928, - "c2": 10.870700097869866, - "c3": 11.311716839008566, - "c4": 12.724426084080893, - "c5": 12.005070832632242, - "c6": 11.542391185660303, - "c7": 12.734494949086363 + "offsets": { + "c1": 21.74757281553398, + "c2": 18.640776699029132, + "c3": 15.533980582524263, + "c4": 12.427184466019416, + "c5": 9.320388349514566, + "c6": 6.213592233009718, + "c7": 3.106796116504848 }, "rgb": [77, 76, 132] }, @@ -178206,23 +178206,23 @@ "year": 1762, "resistanceReported": true, "duration": 25747200, - "curveSeeds": { - "c1": 33.45369310043444, - "c2": -16.55004979467891, - "c3": -24.925715609701783, - "c4": -27.88084148052554, - "c5": 36.60969341740306, - "c6": 14.631834291315762, - "c7": 10.104062396490555 + "points": { + "c1": 36.42801929269799, + "c2": -31.3712675009929, + "c3": -9.847407363801231, + "c4": -22.710646069159704, + "c5": 26.044170896195105, + "c6": 12.881129375560214, + "c7": -35.02303259740653 }, - "vertexSeeds": { - "c1": 5.799962208461542, - "c2": 5.922923900208813, - "c3": 5.816994051768041, - "c4": 5.9453204103540935, - "c5": 5.879250931894744, - "c6": 5.8491566903131496, - "c7": 5.893875493543532 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468809, + "c3": 7.165973185390639, + "c4": 5.732778548312522, + "c5": 4.2995839112344045, + "c6": 2.866389274156287, + "c7": 1.4331946370781175 }, "rgb": [58, 15, 49] }, @@ -178233,23 +178233,23 @@ "year": 1762, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -28.056741235613234, - "c2": 4.942326143740473, - "c3": 36.79977997831625, - "c4": 17.490565917399934, - "c5": -11.614762313557005, - "c6": -13.56015147644693, - "c7": 15.515503599946193 + "points": { + "c1": 8.345749387249803, + "c2": -10.312320911945307, + "c3": 31.76089369966786, + "c4": 30.860558614694853, + "c5": -26.18854216582271, + "c6": 39.34142562812737, + "c7": -17.973358415053724 }, - "vertexSeeds": { - "c1": 5.856289263883976, - "c2": 5.987298900329541, - "c3": 6.220753774175077, - "c4": 6.136154179182509, - "c5": 6.25520465280208, - "c6": 5.994406924632684, - "c7": 6.115604482164661 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [238, 201, 159] }, @@ -178260,23 +178260,23 @@ "year": 1761, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -27.199340862267725, - "c2": -22.211534063349298, - "c3": 1.8409643300875658, - "c4": -22.739831167106523, - "c5": 27.4321589268812, - "c6": 25.34585109969057, - "c7": 6.011046910947854 + "points": { + "c1": -6.438372960078787, + "c2": 10.64319225980882, + "c3": 12.982069095140758, + "c4": -11.008661448091377, + "c5": 25.997709299436593, + "c6": -26.934420408717674, + "c7": 17.65912743621628 }, - "vertexSeeds": { - "c1": 4.9416183093564845, - "c2": 5.019138586464179, - "c3": 5.311165249009209, - "c4": 5.203244237770483, - "c5": 5.399254371583989, - "c6": 5.387852073910495, - "c7": 5.392678108545742 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342573, + "c3": 6.518723994452151, + "c4": 5.214979195561715, + "c5": 3.9112343966712944, + "c6": 2.6074895977808574, + "c7": 1.3037447988904287 }, "rgb": [238, 201, 159] }, @@ -178287,23 +178287,23 @@ "year": 1761, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 9.288172967540877, - "c2": -12.262679374192766, - "c3": -24.136871119623876, - "c4": 26.340751244899767, - "c5": -26.045270744791765, - "c6": -21.935161246526423, - "c7": -12.230150959649965 + "points": { + "c1": -18.33731418100067, + "c2": -18.42154003174638, + "c3": -21.2012543291985, + "c4": 22.551972752718466, + "c5": -12.549404637725399, + "c6": 24.585482290953376, + "c7": -9.360813388599873 }, - "vertexSeeds": { - "c1": 2.133005828817737, - "c2": 2.1771805726581936, - "c3": 2.2745099215845164, - "c4": 2.1564653370339366, - "c5": 2.353928176577646, - "c6": 2.262588079072224, - "c7": 2.349303223927136 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [58, 15, 49] }, @@ -178314,23 +178314,23 @@ "year": 1761, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 19.65654895884231, - "c2": 23.577207415504706, - "c3": 20.35669848674534, - "c4": 19.78842359477561, - "c5": -11.008721852411403, - "c6": 2.5280813726517515, - "c7": 23.092533804239228 + "points": { + "c1": -3.338387286312596, + "c2": 19.53415176753158, + "c3": 14.532731168137015, + "c4": 17.491650086834017, + "c5": -1.693743557072743, + "c6": -23.55230612297015, + "c7": -4.992398229956528 }, - "vertexSeeds": { - "c1": 5.557804832348844, - "c2": 6.71114290244023, - "c3": 6.3068057049243516, - "c4": 6.241605187988144, - "c5": 5.59957908028382, - "c6": 6.194800266961897, - "c7": 6.746784926531064 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -178341,23 +178341,23 @@ "year": 1761, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -14.367590740650488, - "c2": -13.494600393946083, - "c3": -19.653918068259856, - "c4": 10.937241516037183, - "c5": -27.402705541019873, - "c6": -8.209690379559937, - "c7": -21.139428295599505 + "points": { + "c1": 31.03360986896591, + "c2": -28.34055358262892, + "c3": 19.113816727128842, + "c4": -24.16371408806665, + "c5": -14.282523491467686, + "c6": -13.218764506353171, + "c7": -3.251462065368333 }, - "vertexSeeds": { - "c1": 4.681584657928224, - "c2": 4.813419533540966, - "c3": 4.682850769954857, - "c4": 5.170849816434482, - "c5": 4.806452419523396, - "c6": 4.166235843156174, - "c7": 4.77362246624207 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -178368,23 +178368,23 @@ "year": 1761, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 22.43338327922342, - "c2": -27.724308506935646, - "c3": -13.414794361327843, - "c4": 32.50885805629711, - "c5": -29.50009333782753, - "c6": 0.8911555511343252, - "c7": -5.978058712085506 + "points": { + "c1": 38.58940282779117, + "c2": 0.9026252793720531, + "c3": -22.712266457516975, + "c4": 34.376120098703616, + "c5": 2.1596343643876494, + "c6": -27.750501250284394, + "c7": 37.96374263819383 }, - "vertexSeeds": { - "c1": 6.759099578617333, - "c2": 6.643322038240125, - "c3": 6.1262945656594, - "c4": 6.0716376901748355, - "c5": 6.494813351713849, - "c6": 6.507650402625329, - "c7": 6.1719175224682425 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037445, + "c3": 8.067498844197878, + "c4": 6.4539990753583, + "c5": 4.840499306518723, + "c6": 3.226999537679145, + "c7": 1.6134997688395776 }, "rgb": [58, 15, 49] }, @@ -178395,23 +178395,23 @@ "year": 1762, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 15.766686528175654, - "c2": 11.222166728790157, - "c3": -34.8775464209293, - "c4": -36.09467976655099, - "c5": 21.161706217032346, - "c6": -20.23156629195046, - "c7": -20.346312175206076 + "points": { + "c1": 17.71895089417096, + "c2": -5.407528092875772, + "c3": -9.40725694789348, + "c4": -4.913141457958524, + "c5": -2.795527418971581, + "c6": 23.807432591725288, + "c7": 22.356118491897874 }, - "vertexSeeds": { - "c1": 5.672280002984599, - "c2": 5.5543658641944, - "c3": 5.551130627476241, - "c4": 6.079020526515542, - "c5": 6.152951997394029, - "c6": 5.8949549437424915, - "c7": 5.894532753630733 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594546, + "c4": 6.121128062875633, + "c5": 4.59084604715673, + "c6": 3.0605640314378166, + "c7": 1.5302820157189134 }, "rgb": [77, 76, 132] }, @@ -178422,23 +178422,23 @@ "year": 1762, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -15.22987210146335, - "c2": 11.41736251947664, - "c3": 31.25194510507231, - "c4": 40.617789788350095, - "c5": -25.305850119704516, - "c6": -3.3319927669069003, - "c7": 3.5308253285941973 + "points": { + "c1": 36.91361341568059, + "c2": -41.84998552985246, + "c3": -47.883631005661655, + "c4": 17.252970021689208, + "c5": -16.664180844328754, + "c6": -13.985987213592352, + "c7": 45.80989037484517 }, - "vertexSeeds": { - "c1": 3.108869942004901, - "c2": 2.699675159674058, - "c3": 2.6903795088356524, - "c4": 2.883666171189989, - "c5": 2.918842409273945, - "c6": 3.0411499836914793, - "c7": 3.1558468880002266 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837724, + "c3": 3.9297272306981013, + "c4": 3.143781784558484, + "c5": 2.357836338418862, + "c6": 1.5718908922792396, + "c7": 0.7859454461396174 }, "rgb": [238, 201, 159] }, @@ -178449,23 +178449,23 @@ "year": 1762, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 5.281366049936807, - "c2": -5.59011458852946, - "c3": -34.14683072678758, - "c4": -23.03877864387946, - "c5": 5.803539958890681, - "c6": -35.327160635476325, - "c7": -35.463780716532604 + "points": { + "c1": 31.43963619093165, + "c2": -33.3724905356719, + "c3": 36.70335350024405, + "c4": 10.959031860369528, + "c5": 25.5411614862374, + "c6": -23.18150915364256, + "c7": 28.71721907838011 }, - "vertexSeeds": { - "c1": 7.221807494760029, - "c2": 7.2572835214777855, - "c3": 7.2326056950266855, - "c4": 7.261591096671327, - "c5": 7.209510298043014, - "c6": 7.231382031052052, - "c7": 7.243202786317097 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083153, + "c3": 8.668515950069446, + "c4": 6.934812760055512, + "c5": 5.201109570041576, + "c6": 3.467406380027641, + "c7": 1.7337031900139352 }, "rgb": [77, 76, 132] }, @@ -178476,23 +178476,23 @@ "year": 1762, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -26.79506085162934, - "c2": 32.92560575136251, - "c3": 24.382088838120417, - "c4": -11.342854224758511, - "c5": 15.340804510482819, - "c6": 15.497110163449413, - "c7": -16.943402073440925 + "points": { + "c1": -4.466800940327218, + "c2": 10.256393141329134, + "c3": -9.998701622585735, + "c4": 4.549419643042768, + "c5": -29.334550798858466, + "c6": 6.5157603660213965, + "c7": 14.416441956928146 }, - "vertexSeeds": { - "c1": 4.465802964638399, - "c2": 4.486848606414048, - "c3": 4.288012284344793, - "c4": 4.339517219172289, - "c5": 4.357848822407182, - "c6": 4.839987765457657, - "c7": 4.470678234195599 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337029, + "c3": 5.940822931114194, + "c4": 4.752658344891352, + "c5": 3.5644937586685113, + "c6": 2.376329172445676, + "c7": 1.1881645862228347 }, "rgb": [86, 146, 138] }, @@ -178503,23 +178503,23 @@ "year": 1762, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -11.89976361006994, - "c2": -18.136370908567624, - "c3": 17.319523667495595, - "c4": -25.123916264854373, - "c5": -20.31798289547871, - "c6": 7.454368782106073, - "c7": 13.906035900837175 + "points": { + "c1": -38.13044343880965, + "c2": 21.076056607989607, + "c3": -27.5654300940687, + "c4": -28.815469633998497, + "c5": -16.624416501134153, + "c6": 11.54964937119992, + "c7": -1.8991060869217833 }, - "vertexSeeds": { - "c1": 4.63354895522357, - "c2": 4.595209453330241, - "c3": 4.429005097843893, - "c4": 4.475642828932994, - "c5": 4.513354842337272, - "c6": 4.334258178376839, - "c7": 4.517201647406714 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733705, + "c3": 5.594082293111422, + "c4": 4.475265834489139, + "c5": 3.356449375866857, + "c6": 2.237632917244565, + "c7": 1.1188164586222824 }, "rgb": [86, 146, 138] }, @@ -178530,23 +178530,23 @@ "year": 1762, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -21.19606907938931, - "c2": -8.809418111098893, - "c3": -0.7486535877882972, - "c4": 24.272590384732972, - "c5": 6.122937525721497, - "c6": 1.7580851151820198, - "c7": -15.483801638211176 + "points": { + "c1": -29.05732358576386, + "c2": 25.331250451288525, + "c3": 18.525330465770153, + "c4": 8.784740162409335, + "c5": 19.095543721421222, + "c6": 6.155144414745116, + "c7": 17.72118701041856 }, - "vertexSeeds": { - "c1": 7.043862382106025, - "c2": 7.239221742700367, - "c3": 6.787487051100987, - "c4": 6.921960817161167, - "c5": 7.12226761625295, - "c6": 6.868947475299766, - "c7": 7.23963807124432 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244113, + "c3": 8.760980120203419, + "c4": 7.008784096162742, + "c5": 5.256588072122048, + "c6": 3.504392048081371, + "c7": 1.752196024040677 }, "rgb": [77, 76, 132] }, @@ -178557,23 +178557,23 @@ "year": 1762, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 28.68355111445051, - "c2": -25.293782820860507, - "c3": -17.156948354887056, - "c4": -13.583289723031093, - "c5": -2.1792520524691312, - "c6": -19.638124084377896, - "c7": -39.16130501384274 + "points": { + "c1": -17.86086817626428, + "c2": -16.14191705067453, + "c3": -40.425448950301295, + "c4": -21.013354283659094, + "c5": 22.182793739357493, + "c6": -1.0283948317393978, + "c7": 10.157359763157153 }, - "vertexSeeds": { - "c1": 6.193390112387029, - "c2": 7.001466586563989, - "c3": 6.473549841549737, - "c4": 6.584899344906223, - "c5": 6.537662747574747, - "c6": 6.031993848707343, - "c7": 6.713159528449135 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [77, 76, 132] }, @@ -178584,23 +178584,23 @@ "year": 1762, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": -38.384759322430114, - "c2": 10.59461833199034, - "c3": -46.01217525747357, - "c4": 32.602728847412656, - "c5": 8.857280633858814, - "c6": -27.402634431715747, - "c7": 6.663364171367277 + "points": { + "c1": 19.439359564669054, + "c2": 18.13542742864717, + "c3": 26.149421769864027, + "c4": -4.8001543992887505, + "c5": 1.9724592583987643, + "c6": -48.327344362957426, + "c7": -38.35814505048381 }, - "vertexSeeds": { - "c1": 5.498713165072814, - "c2": 5.190284624463857, - "c3": 5.476218135262017, - "c4": 5.907112997275848, - "c5": 6.197812314961759, - "c6": 6.117751524647341, - "c7": 5.97469885476063 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.93203883495145, + "c3": 7.443365695792879, + "c4": 5.954692556634307, + "c5": 4.466019417475725, + "c6": 2.9773462783171434, + "c7": 1.4886731391585717 }, "rgb": [238, 201, 159] }, @@ -178611,23 +178611,23 @@ "year": 1762, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": -22.053645158956726, - "c2": -6.206364917605136, - "c3": 9.754909651947159, - "c4": 42.71065311203763, - "c5": 18.88319741667138, - "c6": 12.425169517806651, - "c7": 42.31101246800213 + "points": { + "c1": -48.450244852864316, + "c2": 46.313656098538445, + "c3": -55.908084903247094, + "c4": 8.215028394772318, + "c5": -51.562240464896924, + "c6": 43.86096589802574, + "c7": 15.451987668731022 }, - "vertexSeeds": { - "c1": 4.767126400928879, - "c2": 4.908572339868665, - "c3": 4.624465937259631, - "c4": 4.940300085107028, - "c5": 4.890409322706372, - "c6": 4.872254585463751, - "c7": 4.7041812828089276 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377253, + "c3": 5.9639389736477115, + "c4": 4.771151178918169, + "c5": 3.5783633841886267, + "c6": 2.3855755894590844, + "c7": 1.1927877947295422 }, "rgb": [238, 201, 159] }, @@ -178638,23 +178638,23 @@ "year": 1762, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 20.4380778189298, - "c2": 12.45743644496143, - "c3": -2.923435717213021, - "c4": -16.223386966239843, - "c5": -24.365392540047132, - "c6": 1.0222967242087364, - "c7": 22.17301687704677 + "points": { + "c1": 13.683120396337799, + "c2": -28.810759923328483, + "c3": -1.2638940060079022, + "c4": 29.349081724519976, + "c5": 30.188410467743097, + "c6": 16.8040633748709, + "c7": -17.50161265134891 }, - "vertexSeeds": { - "c1": 5.475455477778776, - "c2": 5.847849816515731, - "c3": 5.498247061211407, - "c4": 5.484856251954954, - "c5": 5.726978994884256, - "c6": 5.8184458699912955, - "c7": 5.4213603003471365 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [238, 201, 159] }, @@ -178665,23 +178665,23 @@ "year": 1762, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 11.108129919028492, - "c2": -18.565504423862603, - "c3": -24.901719595405723, - "c4": -25.945536507543867, - "c5": -27.925464894496095, - "c6": -25.56268348624475, - "c7": -6.294371557493221 + "points": { + "c1": -22.273232011842026, + "c2": 6.68840122677026, + "c3": -30.723152447049365, + "c4": 11.64505901499679, + "c5": 22.966887634602188, + "c6": -15.955311525993391, + "c7": 1.9769164117776086 }, - "vertexSeeds": { - "c1": 6.178367900166969, - "c2": 5.222871270131011, - "c3": 5.414790358655836, - "c4": 5.042640650115411, - "c5": 5.620864587100057, - "c6": 5.68286499468236, - "c7": 5.337863319390482 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192324, + "c4": 5.899214054553863, + "c5": 4.4244105409153915, + "c6": 2.9496070272769317, + "c7": 1.4748035136384605 }, "rgb": [222, 0, 59] }, @@ -178692,23 +178692,23 @@ "year": 1762, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 33.40835021769097, - "c2": 24.094879954551125, - "c3": -24.702664816438286, - "c4": -8.890806696096643, - "c5": -12.813725868394613, - "c6": 27.487243770776736, - "c7": 26.34473325546311 + "points": { + "c1": -24.234442487693755, + "c2": 4.119546579809644, + "c3": 24.993938987198405, + "c4": 21.27360952637938, + "c5": -2.3336761615713826, + "c6": 12.808123968408495, + "c7": 29.62296511851303 }, - "vertexSeeds": { - "c1": 9.188862383917032, - "c2": 10.277444675834628, - "c3": 9.234783272896571, - "c4": 8.866699571257634, - "c5": 10.257856547721154, - "c6": 10.061541460212942, - "c7": 9.018129966283041 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679617, + "c3": 12.459546925566341, + "c4": 9.967637540453078, + "c5": 7.4757281553398025, + "c6": 4.983818770226539, + "c7": 2.4919093851132743 }, "rgb": [86, 146, 138] }, @@ -178719,23 +178719,23 @@ "year": 1762, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -13.019034327730736, - "c2": -27.414848464100267, - "c3": 17.740051213518974, - "c4": -3.927312014554037, - "c5": 19.35886674277787, - "c6": -5.295633660270376, - "c7": -10.389595969464857 + "points": { + "c1": -4.427357066522841, + "c2": -16.919654705737987, + "c3": -2.928027488576376, + "c4": 27.777641510202322, + "c5": 4.223946834323463, + "c6": -26.76867313544792, + "c7": 17.065573322068097 }, - "vertexSeeds": { - "c1": 7.544962246000882, - "c2": 7.079871839381617, - "c3": 7.0137583211335235, - "c4": 6.202031647307692, - "c5": 7.513025797186561, - "c6": 7.24973429924985, - "c7": 6.83335574745499 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.95700416088766, + "c3": 9.130836800739718, + "c4": 7.304669440591771, + "c5": 5.47850208044383, + "c6": 3.652334720295889, + "c7": 1.8261673601479407 }, "rgb": [58, 15, 49] }, @@ -178746,23 +178746,23 @@ "year": 1762, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 42.76158725163389, - "c2": 14.555902123822143, - "c3": 32.35512315388639, - "c4": -2.2389393526835235, - "c5": 37.924978611923784, - "c6": 3.778096382560257, - "c7": -14.714257129875488 + "points": { + "c1": -7.386825798886555, + "c2": 41.99384032863849, + "c3": 26.141257261373106, + "c4": 43.67363959772121, + "c5": 1.1109815275661319, + "c6": 15.145448033283927, + "c7": -38.796213718591474 }, - "vertexSeeds": { - "c1": 6.101116587474688, - "c2": 5.653524129302037, - "c3": 6.591352832255636, - "c4": 6.505635759729271, - "c5": 6.735597356504571, - "c6": 6.205964378654602, - "c7": 6.137500709412357 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -178773,23 +178773,23 @@ "year": 1762, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": -48.07283619278291, - "c2": 11.256002574689205, - "c3": -8.106562570036658, - "c4": -46.033605844092925, - "c5": 48.919893275995356, - "c6": -25.8506825937751, - "c7": -35.45451234718486 + "points": { + "c1": 50.299639305689844, + "c2": 37.353877240410704, + "c3": -8.27082470832056, + "c4": 1.1688729366489596, + "c5": 42.1554529064506, + "c6": -25.543530432838878, + "c7": 16.260716110547428 }, - "vertexSeeds": { - "c1": 1.730636287645661, - "c2": 1.6766349428190306, - "c3": 1.7485392085545517, - "c4": 1.6614248481044331, - "c5": 1.7284667558490017, - "c6": 1.7959810710796176, - "c7": 1.8154175177094574 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.662968099861303, + "c3": 2.2191400832177526, + "c4": 1.7753120665742013, + "c5": 1.3314840499306502, + "c6": 0.8876560332871021, + "c7": 0.44382801664354826 }, "rgb": [222, 0, 59] }, @@ -178800,23 +178800,23 @@ "year": 1762, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 40.45905841937585, - "c2": -40.35438345025349, - "c3": 40.12579910729774, - "c4": -22.70599779001663, - "c5": 0.7528948182723738, - "c6": -22.34748297285424, - "c7": 34.43386967136766 + "points": { + "c1": -36.05517141933093, + "c2": 27.144290511884677, + "c3": 39.54493836530304, + "c4": -10.230825952338044, + "c5": 1.096543393935093, + "c6": 6.685102180075596, + "c7": 24.18016173394497 }, - "vertexSeeds": { - "c1": 6.0677382778547875, - "c2": 5.787719750147819, - "c3": 5.766069051433227, - "c4": 6.491622640662123, - "c5": 6.158099928181642, - "c6": 5.643302779031112, - "c7": 6.471071208912579 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.20619509939898, + "c4": 6.564956079519189, + "c5": 4.923717059639396, + "c6": 3.2824780397595945, + "c7": 1.6412390198798021 }, "rgb": [238, 201, 159] }, @@ -178827,23 +178827,23 @@ "year": 1762, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -24.44213854470412, - "c2": -23.4927298842765, - "c3": -38.373922844345046, - "c4": -9.641556786829646, - "c5": -30.12761782569491, - "c6": -8.242085423612771, - "c7": 20.220617451692313 + "points": { + "c1": 40.17318211007257, + "c2": 8.274303013701896, + "c3": 40.627416294899184, + "c4": 36.878622898612555, + "c5": -13.749705971618944, + "c6": -1.31190389626601, + "c7": 33.16329060625694 }, - "vertexSeeds": { - "c1": 3.3408980084720223, - "c2": 3.172440552491377, - "c3": 3.158930722166398, - "c4": 3.3350007166942257, - "c5": 2.968190127120881, - "c6": 3.070085829435931, - "c7": 3.061932622620049 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079057, + "c3": 4.068423485899214, + "c4": 3.2547387887193713, + "c5": 2.4410540915395287, + "c6": 1.6273693943596856, + "c7": 0.8136846971798428 }, "rgb": [77, 76, 132] }, @@ -178854,23 +178854,23 @@ "year": 1762, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -0.8760236640945038, - "c2": 18.210377115768637, - "c3": 21.691324127089544, - "c4": 21.299694221605122, - "c5": -3.963189876824206, - "c6": 26.3579990562584, - "c7": 21.444754718716737 + "points": { + "c1": -23.71867336925471, + "c2": -28.647042528339448, + "c3": 33.091489014368335, + "c4": 33.099405688477546, + "c5": -5.027847264658185, + "c6": -24.918665067955075, + "c7": 15.672715541974014 }, - "vertexSeeds": { - "c1": 2.8658673793523604, - "c2": 2.9484893908445065, - "c3": 2.7736825244975303, - "c4": 3.137365169698195, - "c5": 3.2041036977510937, - "c6": 2.92214547362734, - "c7": 2.948031411147453 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717062, + "c3": 3.860379103097549, + "c4": 3.088303282478041, + "c5": 2.3162274618585283, + "c6": 1.5441516412390206, + "c7": 0.7720758206195127 }, "rgb": [238, 201, 159] }, @@ -178881,23 +178881,23 @@ "year": 1762, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -33.564000614448496, - "c2": 11.41366899324332, - "c3": -18.321994425503732, - "c4": 13.854135912161844, - "c5": 28.327966831856116, - "c6": 31.46881935604489, - "c7": -22.695969787225373 + "points": { + "c1": -8.713327987920568, + "c2": -24.907619440954477, + "c3": -2.807013833461184, + "c4": 30.41349257059116, + "c5": 25.133514716380247, + "c6": -34.52871309964299, + "c7": -7.141094942231916 }, - "vertexSeeds": { - "c1": 9.896904700404217, - "c2": 9.917998376662656, - "c3": 9.894713503295545, - "c4": 9.913767243575268, - "c5": 9.919579954068478, - "c6": 9.925865709718929, - "c7": 9.885849202726552 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.20249653259353, + "c3": 11.835413777161483, + "c4": 9.468331021729124, + "c5": 7.101248266296765, + "c6": 4.734165510864405, + "c7": 2.3670827554323592 }, "rgb": [77, 76, 132] }, @@ -178908,23 +178908,23 @@ "year": 1762, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -12.055636841028523, - "c2": -0.695876024995659, - "c3": 13.262677754546377, - "c4": -11.340738410579045, - "c5": 12.765239907905741, - "c6": 0.27051060737706933, - "c7": 0.8800328248316553 + "points": { + "c1": -19.315885012703532, + "c2": -24.52975483597934, + "c3": 15.295656526587496, + "c4": -22.15129497524783, + "c5": -24.220105075254704, + "c6": -19.055290026279472, + "c7": -7.208511806849785 }, - "vertexSeeds": { - "c1": 6.3103221041082245, - "c2": 6.220079874850561, - "c3": 6.085610964039708, - "c4": 5.82615569958981, - "c5": 5.816410157006548, - "c6": 5.725478792866243, - "c7": 5.732659412243155 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -178935,23 +178935,23 @@ "year": 1762, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 12.031730147506202, - "c2": -25.049226822033013, - "c3": 10.958144905169988, - "c4": -8.800938096283595, - "c5": 17.955006747617546, - "c6": -18.36241017953217, - "c7": -27.96395050376976 + "points": { + "c1": 12.22254669501207, + "c2": -33.49718276660182, + "c3": -11.171008950629648, + "c4": 30.95743887111155, + "c5": -7.728986536151957, + "c6": -23.986615864676978, + "c7": 12.365031486388638 }, - "vertexSeeds": { - "c1": 5.67124883559006, - "c2": 5.633905435168902, - "c3": 5.911710011720488, - "c4": 5.757627719524197, - "c5": 5.840816267640301, - "c6": 5.735227252803126, - "c7": 5.809029708669539 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [238, 201, 159] }, @@ -178962,23 +178962,23 @@ "year": 1762, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -13.570534528914756, - "c2": 6.420412203084226, - "c3": -11.03477705574786, - "c4": -29.19353852246969, - "c5": -0.3149775515903386, - "c6": 16.50593521134455, - "c7": -7.307129006072049 + "points": { + "c1": -30.357884553061538, + "c2": -31.386114246382306, + "c3": 3.28271399474648, + "c4": 4.160310004963975, + "c5": 20.94036542103465, + "c6": 24.331617856430356, + "c7": -24.305857801671586 }, - "vertexSeeds": { - "c1": 6.9357391654007445, - "c2": 6.409025035729525, - "c3": 6.335439998141445, - "c4": 6.790378223077838, - "c5": 7.18730147969673, - "c6": 6.8094288573339625, - "c7": 7.084797034762131 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807213, + "c3": 9.084604715672679, + "c4": 7.267683772538135, + "c5": 5.450762829403601, + "c6": 3.6338418862690673, + "c7": 1.8169209431345337 }, "rgb": [238, 201, 159] }, @@ -178989,23 +178989,23 @@ "year": 1762, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -7.992321732892133, - "c2": -0.18730688360961167, - "c3": 23.523824140752254, - "c4": -21.19938604673311, - "c5": -7.23626720335945, - "c6": 12.132208261517384, - "c7": 20.541077490098537 + "points": { + "c1": -24.458223581918954, + "c2": -5.160828257619791, + "c3": -21.05321155172895, + "c4": -15.156991993653245, + "c5": 16.59700858612404, + "c6": 3.4322613624822047, + "c7": -3.487209336797992 }, - "vertexSeeds": { - "c1": 4.359106188792839, - "c2": 4.265056416823791, - "c3": 3.938401773384335, - "c4": 4.295152082781992, - "c5": 3.9639915127004146, - "c6": 4.233471285709657, - "c7": 4.420106237685429 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -179016,23 +179016,23 @@ "year": 1762, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 22.869202086169466, - "c2": 26.622111375122287, - "c3": -2.189268235065555, - "c4": -33.52840972633092, - "c5": 41.840006904488035, - "c6": -7.311472758979342, - "c7": 8.603422822634542 + "points": { + "c1": 21.585862853573744, + "c2": 40.83940210287025, + "c3": 14.996142818730803, + "c4": -42.95116783557492, + "c5": -21.39363829317498, + "c6": 23.218676734616906, + "c7": 29.634645481651816 }, - "vertexSeeds": { - "c1": 2.404087779981306, - "c2": 2.2863272614928483, - "c3": 2.244473840345431, - "c4": 2.258446985121743, - "c5": 2.1580625745244904, - "c6": 2.4052438679299586, - "c7": 2.3301214805094044 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.4674063800277386, + "c3": 2.8895053166897826, + "c4": 2.3116042533518257, + "c5": 1.7337031900138693, + "c6": 1.1558021266759129, + "c7": 0.5779010633379564 }, "rgb": [222, 0, 59] }, @@ -179043,23 +179043,23 @@ "year": 1762, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 34.63356828349028, - "c2": -2.248892018937312, - "c3": -22.252329436128615, - "c4": 33.00088766790242, - "c5": -17.605720974054623, - "c6": -24.283713309843787, - "c7": -3.3827278173747573 + "points": { + "c1": -23.165451687677, + "c2": 2.046511535100599, + "c3": -27.374007536875233, + "c4": 17.072819267447045, + "c5": 16.2021529541517, + "c6": 23.721390601481914, + "c7": -26.184423467026335 }, - "vertexSeeds": { - "c1": 8.341172762934667, - "c2": 7.488560024384194, - "c3": 7.6987377027650385, - "c4": 8.010791071735795, - "c5": 7.869257277114549, - "c6": 8.34844267171705, - "c7": 7.76071859553092 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.399445214979195, + "c3": 10.332871012482663, + "c4": 8.26629680998613, + "c5": 6.199722607489598, + "c6": 4.133148404993065, + "c7": 2.0665742024965326 }, "rgb": [238, 201, 159] }, @@ -179070,23 +179070,23 @@ "year": 1762, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -9.079346552143377, - "c2": 34.63766633549923, - "c3": 23.118295828057228, - "c4": 7.2569644616143805, - "c5": -8.572869889636525, - "c6": 0.9161870281272968, - "c7": 2.688599214638913 + "points": { + "c1": -30.182856659218345, + "c2": -3.6841959405188263, + "c3": -12.354121198267478, + "c4": -26.652818293941777, + "c5": 4.654212918259077, + "c6": 15.805882388835634, + "c7": -11.76176325409196 }, - "vertexSeeds": { - "c1": 1.5858539126231792, - "c2": 1.4463664066745894, - "c3": 1.6137040500084483, - "c4": 1.6490124080018145, - "c5": 1.3983917342180814, - "c6": 1.5078584291705528, - "c7": 1.5688426629566545 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499306, + "c3": 2.0110957004160888, + "c4": 1.6088765603328707, + "c5": 1.206657420249653, + "c6": 0.8044382801664354, + "c7": 0.4022191400832177 }, "rgb": [222, 0, 59] }, @@ -179097,23 +179097,23 @@ "year": 1762, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 27.747298750411872, - "c2": -35.47354131087293, - "c3": 36.57232634499488, - "c4": -23.836244819263882, - "c5": 17.589674506712434, - "c6": 7.853591183475224, - "c7": 14.450360609984685 + "points": { + "c1": 7.024942833527987, + "c2": 7.052098615483949, + "c3": -8.717477256072186, + "c4": 13.592553835853174, + "c5": 39.09876381536483, + "c6": -18.63456311546264, + "c7": 27.647685534579168 }, - "vertexSeeds": { - "c1": 6.5859765655549465, - "c2": 7.276086779781164, - "c3": 7.49554751365201, - "c4": 6.8427217731731815, - "c5": 7.262337422926395, - "c6": 6.412641652069157, - "c7": 6.587896887974182 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249654, + "c3": 9.33888118354138, + "c4": 7.4711049468331066, + "c5": 5.603328710124832, + "c6": 3.735552473416558, + "c7": 1.8677762367082842 }, "rgb": [58, 15, 49] }, @@ -179124,23 +179124,23 @@ "year": 1762, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 17.469438304332172, - "c2": -8.48449634918408, - "c3": 3.410594741319386, - "c4": -25.56031752751122, - "c5": -13.258078718722329, - "c6": -9.972073651112186, - "c7": 3.39845315709551 + "points": { + "c1": -10.890057520945213, + "c2": 11.2279799779391, + "c3": 14.17201526250485, + "c4": -23.80850998276422, + "c5": 11.78736956305142, + "c6": 14.843362589467034, + "c7": 1.458896984685822 }, - "vertexSeeds": { - "c1": 2.5237989834707206, - "c2": 2.6807825853393568, - "c3": 2.6887577474452193, - "c4": 2.6282638633904964, - "c5": 2.6681898902999057, - "c6": 2.669517365151984, - "c7": 2.649055957811265 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.3980582524271865, + "c4": 2.718446601941751, + "c5": 2.038834951456307, + "c6": 1.3592233009708714, + "c7": 0.6796116504854357 }, "rgb": [58, 15, 49] }, @@ -179151,23 +179151,23 @@ "year": 1762, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -12.512356202918113, - "c2": -9.628970824710418, - "c3": -0.9199598446327784, - "c4": -13.491091473745442, - "c5": 32.78138517273344, - "c6": 12.345928869834324, - "c7": -7.953413116592273 + "points": { + "c1": -19.05455385145113, + "c2": 3.8851698186972143, + "c3": -32.59165147934339, + "c4": 2.9263572512604057, + "c5": -5.939577769337923, + "c6": 14.538669896068932, + "c7": -12.649536161498169 }, - "vertexSeeds": { - "c1": 1.4283750223479854, - "c2": 1.5753957139808945, - "c3": 1.820833897334973, - "c4": 1.6848113887630025, - "c5": 1.5100434517656205, - "c6": 1.5329471558790013, - "c7": 1.5909878140990183 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210815, + "c3": 2.1960240406842355, + "c4": 1.7568192325473881, + "c5": 1.3176144244105408, + "c6": 0.8784096162736951, + "c7": 0.43920480813684754 }, "rgb": [86, 146, 138] }, @@ -179178,23 +179178,23 @@ "year": 1762, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 23.808424714157603, - "c2": -8.493073992518063, - "c3": 4.870869332276705, - "c4": 10.928399503622622, - "c5": 10.538044062430352, - "c6": 28.58140046686271, - "c7": 3.03072993251984 + "points": { + "c1": -27.568901412980196, + "c2": -26.33550137695785, + "c3": -35.14707905343939, + "c4": 18.187109523285613, + "c5": -38.4331834951693, + "c6": -12.631125473474565, + "c7": -4.837098805030912 }, - "vertexSeeds": { - "c1": 1.1405929817598117, - "c2": 1.0799057369131357, - "c3": 0.9909498472492075, - "c4": 1.0335776658798788, - "c5": 0.9881155092197687, - "c6": 1.140016538982565, - "c7": 1.0926137682839177 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133148, + "c3": 1.386962552011096, + "c4": 1.109570041608877, + "c5": 0.8321775312066582, + "c6": 0.5547850208044391, + "c7": 0.2773925104022203 }, "rgb": [77, 76, 132] }, @@ -179205,23 +179205,23 @@ "year": 1762, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -7.485614295747997, - "c2": -0.192512394335413, - "c3": -17.348869672050903, - "c4": 9.369360523520449, - "c5": 9.642921970825405, - "c6": 10.277497289017326, - "c7": -14.541040942935279 + "points": { + "c1": -5.1230947614609015, + "c2": 15.905231263098297, + "c3": 16.582925490192803, + "c4": 7.236780924692873, + "c5": -7.083474642485813, + "c6": 15.208506846295368, + "c7": -16.368778202628068 }, - "vertexSeeds": { - "c1": 4.38737556707283, - "c2": 4.314296808956644, - "c3": 4.380272744203238, - "c4": 4.528560900292874, - "c5": 4.509765665476457, - "c6": 4.121313555398214, - "c7": 4.482478654596298 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -179232,23 +179232,23 @@ "year": 1762, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 6.259617440333457, - "c2": -10.61540731223058, - "c3": -7.905287770821481, - "c4": -5.936375282039187, - "c5": -42.3905572342726, - "c6": 35.34957492161503, - "c7": -40.32692363833127 + "points": { + "c1": 0.7042101301399555, + "c2": 25.723898054494114, + "c3": -1.5736664110547522, + "c4": 4.100734077655403, + "c5": -39.34344681511173, + "c6": 44.66810873372292, + "c7": -31.472507871556914 }, - "vertexSeeds": { - "c1": 6.383834865121557, - "c2": 6.098434550650698, - "c3": 6.026844798042847, - "c4": 6.20485805239389, - "c5": 6.381405433371894, - "c6": 6.350417565990503, - "c7": 6.320972903211117 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [222, 0, 59] }, @@ -179259,23 +179259,23 @@ "year": 1762, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -1.2505131277122175, - "c2": -27.929941946992145, - "c3": -38.20826539645958, - "c4": 22.702407441699556, - "c5": 18.8522375256724, - "c6": 12.777549323740217, - "c7": -37.986166972554386 + "points": { + "c1": 34.26232569373295, + "c2": -2.7119333554653196, + "c3": -23.533211470691516, + "c4": 11.647987032553615, + "c5": -5.044104874826367, + "c6": -9.391044549653, + "c7": -33.95218704279927 }, - "vertexSeeds": { - "c1": 4.685604094053027, - "c2": 4.900603366704448, - "c3": 5.450443700874036, - "c4": 5.013621215293145, - "c5": 4.584943557576056, - "c6": 5.311707490169168, - "c7": 5.161281174495708 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342584, + "c3": 6.518723994452148, + "c4": 5.214979195561722, + "c5": 3.911234396671287, + "c6": 2.607489597780861, + "c7": 1.3037447988904256 }, "rgb": [77, 76, 132] }, @@ -179286,23 +179286,23 @@ "year": 1762, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 3.0924338667527778, - "c2": -11.375926031449332, - "c3": 32.06400675004401, - "c4": -36.510924715963654, - "c5": 5.2611535593583625, - "c6": 35.85347221299515, - "c7": 8.503346081345626 + "points": { + "c1": -37.672421524020294, + "c2": -5.362140058869159, + "c3": 24.036760164723198, + "c4": 21.730149368833608, + "c5": -25.473224310363527, + "c6": -31.365431126748625, + "c7": -15.874569338929298 }, - "vertexSeeds": { - "c1": 2.794662663458666, - "c2": 2.7682249163425645, - "c3": 2.7108127707729257, - "c4": 3.045659600848989, - "c5": 2.8661720175479215, - "c6": 2.8480651075652426, - "c7": 3.0043889753795003 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395284, + "c3": 3.6754507628294038, + "c4": 2.940360610263523, + "c5": 2.205270457697642, + "c6": 1.4701803051317615, + "c7": 0.7350901525658807 }, "rgb": [77, 76, 132] }, @@ -179313,23 +179313,23 @@ "year": 1762, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 20.68911239289264, - "c2": 6.873284888289383, - "c3": -6.0467581918313655, - "c4": 16.038127996141384, - "c5": -9.429797685802942, - "c6": -11.609441014224728, - "c7": -29.054582877211402 + "points": { + "c1": 7.575035025918474, + "c2": 28.993781981339254, + "c3": 30.84409814363869, + "c4": -24.083127608861922, + "c5": 28.512750550630514, + "c6": -14.330842388025424, + "c7": 25.805417120434917 }, - "vertexSeeds": { - "c1": 7.734570561670069, - "c2": 8.584274188240125, - "c3": 8.02317176660156, - "c4": 8.682265115339211, - "c5": 8.655037730119362, - "c6": 8.050258857417914, - "c7": 7.744359445794295 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099865, + "c3": 10.402219140083211, + "c4": 8.321775312066572, + "c5": 6.241331484049932, + "c6": 4.160887656033293, + "c7": 2.080443828016639 }, "rgb": [238, 201, 159] }, @@ -179340,23 +179340,23 @@ "year": 1762, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 31.836306027357665, - "c2": -6.553335692487899, - "c3": -11.152810787716863, - "c4": -4.809524268366481, - "c5": -30.942166508691393, - "c6": 2.8111426914117104, - "c7": 40.142073894514084 + "points": { + "c1": -15.398276487711446, + "c2": 8.290124566469856, + "c3": -37.858180690408275, + "c4": 5.6178483222487685, + "c5": 42.8759905043584, + "c6": 25.64178867157942, + "c7": -2.948797201674296 }, - "vertexSeeds": { - "c1": 4.040252941518808, - "c2": 4.045024369564963, - "c3": 4.027768529126347, - "c4": 3.60825747250655, - "c5": 3.613560500132086, - "c6": 3.774012734071723, - "c7": 4.104230912773776 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728153, + "c3": 5.016181229773464, + "c4": 4.012944983818769, + "c5": 3.0097087378640794, + "c6": 2.0064724919093844, + "c7": 1.0032362459546953 }, "rgb": [238, 201, 159] }, @@ -179367,23 +179367,23 @@ "year": 1762, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 13.925175342022548, - "c2": -9.72566537917863, - "c3": 9.073804670875077, - "c4": 36.15344763275216, - "c5": 36.25561165245158, - "c6": 15.543471312295786, - "c7": 30.263725032418208 + "points": { + "c1": 38.24222993591795, + "c2": 12.207612354802329, + "c3": -2.529570347411145, + "c4": 24.900535734023876, + "c5": -39.606787239344975, + "c6": -3.2202621053185965, + "c7": -25.836827628578067 }, - "vertexSeeds": { - "c1": 2.4351759267086033, - "c2": 2.301371895945261, - "c3": 2.225432221502574, - "c4": 2.0752741992454906, - "c5": 2.1200878463987953, - "c6": 2.1795838613232608, - "c7": 2.1687619500406803 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288503, + "c3": 3.0050855293573737, + "c4": 2.4040684234859, + "c5": 1.8030513176144263, + "c6": 1.20203421174295, + "c7": 0.6010171058714762 }, "rgb": [58, 15, 49] }, @@ -179394,23 +179394,23 @@ "year": 1762, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 16.742125888563137, - "c2": 33.82738621948897, - "c3": -20.266148532135052, - "c4": 35.011313811272416, - "c5": -37.690063870261454, - "c6": 14.04158731161624, - "c7": 9.39309477014617 + "points": { + "c1": 28.17690348619155, + "c2": -5.8915693694423155, + "c3": -28.26274973593516, + "c4": -35.92431735824966, + "c5": -13.042590812265072, + "c6": 2.940813519034961, + "c7": 5.659766396194229 }, - "vertexSeeds": { - "c1": 6.683023421137216, - "c2": 6.368995943361062, - "c3": 6.474057202574463, - "c4": 6.604947975469853, - "c5": 6.746116713946774, - "c6": 6.809272920234308, - "c7": 6.766582742745353 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398988, + "c4": 6.564956079519188, + "c5": 4.923717059639387, + "c6": 3.2824780397595856, + "c7": 1.641239019879801 }, "rgb": [77, 76, 132] }, @@ -179421,23 +179421,23 @@ "year": 1762, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 20.90759178729769, - "c2": 16.255090030609068, - "c3": 15.586295437765969, - "c4": 16.92028132446967, - "c5": -24.796750697436664, - "c6": -11.96777623056949, - "c7": 17.074809208438154 + "points": { + "c1": 18.99662499306291, + "c2": 23.02391232967947, + "c3": -26.355096170051283, + "c4": -25.20275792676488, + "c5": -21.236054812393526, + "c6": 24.231430333038922, + "c7": -6.158441228114327 }, - "vertexSeeds": { - "c1": 1.1751624479395242, - "c2": 1.0235913412926565, - "c3": 1.184649308817426, - "c4": 1.058717775048649, - "c5": 1.0758155195430812, - "c6": 1.131674879627559, - "c7": 1.1633186144850387 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937581, + "c3": 1.433194637078132, + "c4": 1.1465557096625063, + "c5": 0.8599167822468791, + "c6": 0.5732778548312517, + "c7": 0.28663892741562585 }, "rgb": [58, 15, 49] }, @@ -179448,23 +179448,23 @@ "year": 1762, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -29.58647546230387, - "c2": 7.470165036959081, - "c3": 30.55507610920901, - "c4": 22.847067976605366, - "c5": -32.28063274612599, - "c6": -35.6126794507913, - "c7": -14.010976648359268 + "points": { + "c1": 6.3833641439576425, + "c2": 8.947652914419017, + "c3": 35.96521739936219, + "c4": 2.8880785640493585, + "c5": 18.13996555583404, + "c6": -32.28756287865256, + "c7": -11.18926504490933 }, - "vertexSeeds": { - "c1": 6.1717439247588075, - "c2": 5.886638676790116, - "c3": 5.956586313798876, - "c4": 5.799141087920609, - "c5": 5.984934106627109, - "c6": 6.1230568420941145, - "c7": 6.069119537290327 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.84882108183079, + "c3": 7.3740175681923255, + "c4": 5.89921405455386, + "c5": 4.424410540915395, + "c6": 2.94960702727693, + "c7": 1.474803513638465 }, "rgb": [238, 201, 159] }, @@ -179475,23 +179475,23 @@ "year": 1761, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": 4.785023110751922, - "c2": 8.5390818339337, - "c3": 5.2352603684408585, - "c4": 11.349103916060788, - "c5": -12.961844199798431, - "c6": 5.910668355122766, - "c7": -4.752591922227889 + "points": { + "c1": 0.810714470047408, + "c2": -4.132855136863395, + "c3": -8.955025223400051, + "c4": 5.23314739287412, + "c5": -1.3705359670079638, + "c6": 3.115994900187669, + "c7": -9.491846375685054 }, - "vertexSeeds": { - "c1": 6.054844176331093, - "c2": 5.853929868078332, - "c3": 5.638445376188485, - "c4": 6.038811009260874, - "c5": 6.719224127569442, - "c6": 6.620337192532659, - "c7": 6.646743025718975 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [77, 76, 132] }, @@ -179502,23 +179502,23 @@ "year": 1762, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": -6.508760426691854, - "c2": 1.3260202356530328, - "c3": 13.059065070961548, - "c4": 8.587936060239894, - "c5": 6.374692031509063, - "c6": 0.7912043760153935, - "c7": -17.585510031515838 + "points": { + "c1": -2.23200301153814, + "c2": 1.9546752578022577, + "c3": 15.953309568154179, + "c4": 12.326383933184296, + "c5": 16.37520801462843, + "c6": 14.707200528505485, + "c7": 0.9708373855797277 }, - "vertexSeeds": { - "c1": 3.6353938516676445, - "c2": 3.589967250744663, - "c3": 3.5657746239571795, - "c4": 3.5809873316202885, - "c5": 3.562133374257049, - "c6": 3.619341845221841, - "c7": 3.620803111463445 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601941, + "c3": 4.368932038834951, + "c4": 3.495145631067961, + "c5": 2.6213592233009706, + "c6": 1.7475728155339805, + "c7": 0.8737864077669902 }, "rgb": [86, 146, 138] }, @@ -179529,23 +179529,23 @@ "year": 1762, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -27.465730138515156, - "c2": 29.557859511457593, - "c3": 10.113029941018993, - "c4": -5.859594040687895, - "c5": -23.967653250968407, - "c6": 30.188649958492675, - "c7": 12.497703779979467 + "points": { + "c1": -8.437091997447098, + "c2": -2.9251036356453923, + "c3": 26.945803480724635, + "c4": 36.86860974944729, + "c5": 7.100190698383869, + "c6": -30.493833621692, + "c7": 0.40236860679168274 }, - "vertexSeeds": { - "c1": 5.9276076778003395, - "c2": 5.760635280317205, - "c3": 5.922042982125992, - "c4": 5.900277152751445, - "c5": 6.013790799585954, - "c6": 5.831280859497642, - "c7": 5.692191766438834 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509015, + "c3": 7.18908922792418, + "c4": 5.751271382339343, + "c5": 4.3134535367545075, + "c6": 2.8756356911696717, + "c7": 1.4378178455848358 }, "rgb": [238, 201, 159] }, @@ -179556,23 +179556,23 @@ "year": 1762, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": 9.744072211057421, - "c2": -10.24844945386426, - "c3": -41.366196201193254, - "c4": -17.25888027502108, - "c5": -30.896309669728417, - "c6": -48.090785440732795, - "c7": 31.90169205347697 + "points": { + "c1": -49.79362760798585, + "c2": 50.775968451578485, + "c3": -4.417321343876438, + "c4": -15.674365849850986, + "c5": 14.842989049928441, + "c6": -16.715399215912456, + "c7": 25.71435324230773 }, - "vertexSeeds": { - "c1": 4.658205668550351, - "c2": 4.574299534469475, - "c3": 4.598435633565556, - "c4": 5.041875862889741, - "c5": 4.500399586069903, - "c6": 4.826611536135394, - "c7": 5.103434619664809 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699026, + "c3": 6.148867313915859, + "c4": 4.9190938511326845, + "c5": 3.6893203883495165, + "c6": 2.4595469255663422, + "c7": 1.2297734627831676 }, "rgb": [86, 146, 138] }, @@ -179583,23 +179583,23 @@ "year": 1762, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 3.300977773325414, - "c2": -8.33486163327904, - "c3": -19.848236352101807, - "c4": -29.499138011994653, - "c5": 21.79020747174124, - "c6": 23.290735524338587, - "c7": 20.130635383696244 + "points": { + "c1": -41.71886606454082, + "c2": -20.408423030546036, + "c3": 3.825984995245669, + "c4": 2.448864832008887, + "c5": 19.0974115487911, + "c6": -41.826756114681274, + "c7": 36.97291622483516 }, - "vertexSeeds": { - "c1": 4.7929651107702576, - "c2": 5.055172475749671, - "c3": 4.966816253201361, - "c4": 4.926253159782185, - "c5": 5.016873904184175, - "c6": 5.006065661209028, - "c7": 4.727560290260303 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819691, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.2436430883032807 }, "rgb": [238, 201, 159] }, @@ -179610,23 +179610,23 @@ "year": 1762, "resistanceReported": false, "duration": 6739200, - "curveSeeds": { - "c1": 9.885493504563804, - "c2": 14.865748192746924, - "c3": 15.039484839140098, - "c4": -7.288318953705687, - "c5": -8.332393951637702, - "c6": 13.03384650469085, - "c7": 0.18138215198986885 + "points": { + "c1": -12.693965581993481, + "c2": -5.1721954971447825, + "c3": -18.361973264790993, + "c4": -12.383484054044164, + "c5": 3.3055714233893454, + "c6": 2.656694347462075, + "c7": 2.2448048257708315 }, - "vertexSeeds": { - "c1": 5.841628832433996, - "c2": 5.506168187531312, - "c3": 5.422759852065082, - "c4": 5.586483423385742, - "c5": 5.7687518009615815, - "c6": 5.50028385534789, - "c7": 5.42648888320424 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [77, 76, 132] }, @@ -179637,23 +179637,23 @@ "year": 1762, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -32.4535204922363, - "c2": 25.534268720501473, - "c3": -2.78051947689287, - "c4": 1.3742743230703311, - "c5": 0.9933639916771497, - "c6": 6.243951772976061, - "c7": -2.852458095787604 + "points": { + "c1": -1.7702522074359592, + "c2": 26.67313121484473, + "c3": -20.538316543688705, + "c4": -18.48494285559487, + "c5": -34.95885229800539, + "c6": 1.7929501319169887, + "c7": -36.578816607102844 }, - "vertexSeeds": { - "c1": 7.678057679543093, - "c2": 7.393311776363306, - "c3": 8.37327549523365, - "c4": 8.353770718520291, - "c5": 8.523140160477048, - "c6": 7.9689396489325866, - "c7": 7.762615813550266 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858523, + "c3": 10.263522884882109, + "c4": 8.210818307905683, + "c5": 6.158113730929257, + "c6": 4.1054091539528415, + "c7": 2.052704576976415 }, "rgb": [238, 201, 159] }, @@ -179664,23 +179664,23 @@ "year": 1762, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -38.629270489384325, - "c2": -16.984450002640788, - "c3": 15.156571787825797, - "c4": -39.349359794528205, - "c5": -28.709305533133353, - "c6": -33.48872655672811, - "c7": 31.94198408862897 + "points": { + "c1": -26.51837281945003, + "c2": 29.37937631382681, + "c3": 13.313674934901243, + "c4": -42.286342575075835, + "c5": -34.30074172224584, + "c6": -25.398691796085473, + "c7": 20.197640752878712 }, - "vertexSeeds": { - "c1": 10.693339363859385, - "c2": 12.022854220242007, - "c3": 10.349534805309654, - "c4": 10.36598872293429, - "c5": 12.138430895979466, - "c6": 12.105838709091813, - "c7": 10.14892023750975 + "offsets": { + "c1": 20.29126213592233, + "c2": 17.392510402219134, + "c3": 14.49375866851596, + "c4": 11.595006934812764, + "c5": 8.696255201109567, + "c6": 5.797503467406391, + "c7": 2.8987517337031954 }, "rgb": [58, 15, 49] }, @@ -179691,23 +179691,23 @@ "year": 1762, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 11.376863658811907, - "c2": -28.975513758682315, - "c3": -28.774462462448756, - "c4": -5.737514023749366, - "c5": 3.94337835271412, - "c6": 6.289722637767646, - "c7": -16.05750394444534 + "points": { + "c1": 24.282145479726644, + "c2": -15.718238296175858, + "c3": 28.09475091355963, + "c4": -22.234724993801105, + "c5": -31.402955351085925, + "c6": -28.3827014242824, + "c7": -5.980547099315213 }, - "vertexSeeds": { - "c1": 10.628103535517017, - "c2": 11.362051479808718, - "c3": 10.864325099624333, - "c4": 10.842330863947577, - "c5": 11.457072568848993, - "c6": 13.520987616927812, - "c7": 13.301260936468733 + "offsets": { + "c1": 22.815533980582526, + "c2": 19.556171983356446, + "c3": 16.296809986130384, + "c4": 13.037447988904303, + "c5": 9.778085991678223, + "c6": 6.51872399445216, + "c7": 3.25936199722608 }, "rgb": [86, 146, 138] }, @@ -179718,23 +179718,23 @@ "year": 1762, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": -45.958838530993084, - "c2": -45.23552208576069, - "c3": -40.98487251696654, - "c4": 4.036845887975751, - "c5": -28.370754959344154, - "c6": 24.629425162025022, - "c7": 42.680181352236055 + "points": { + "c1": -40.07407266470129, + "c2": -6.664799945300395, + "c3": 21.709681668885743, + "c4": 47.5903224669353, + "c5": -22.69655597866609, + "c6": 4.477436160376399, + "c7": -7.547350140854981 }, - "vertexSeeds": { - "c1": 5.6908982385184, - "c2": 5.065387786944784, - "c3": 5.794509666330238, - "c4": 5.661896748682951, - "c5": 5.647197695331049, - "c6": 5.676497912900809, - "c7": 5.210121494964524 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055483, + "c4": 5.547850208044384, + "c5": 4.160887656033285, + "c6": 2.773925104022199, + "c7": 1.3869625520110995 }, "rgb": [77, 76, 132] }, @@ -179745,23 +179745,23 @@ "year": 1762, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -12.119535683143386, - "c2": -27.02634272234615, - "c3": -10.355401985795094, - "c4": 19.004848419638243, - "c5": 27.82384851712564, - "c6": 9.371280247881415, - "c7": 28.738359515444593 + "points": { + "c1": -8.47261061898476, + "c2": 17.92017139756416, + "c3": -11.076923074336314, + "c4": 22.8826170853306, + "c5": 25.679093371588657, + "c6": -24.41017756672059, + "c7": -6.006466020309048 }, - "vertexSeeds": { - "c1": 2.6758247024817043, - "c2": 2.709107286662855, - "c3": 2.7131542676774365, - "c4": 2.6843165476360844, - "c5": 2.7180901394803536, - "c6": 2.705978040098686, - "c7": 2.6781420617777956 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.911234396671308, + "c3": 3.2593619972260686, + "c4": 2.607489597780872, + "c5": 1.9556171983356325, + "c6": 1.303744798890436, + "c7": 0.6518723994451964 }, "rgb": [58, 15, 49] }, @@ -179772,23 +179772,23 @@ "year": 1762, "resistanceReported": false, "duration": 4579200, - "curveSeeds": { - "c1": -11.35753741560618, - "c2": 7.929427944143683, - "c3": 7.038489074942518, - "c4": 13.852977596956379, - "c5": 0.7891142838392184, - "c6": 13.846928995672641, - "c7": -11.622172197327703 + "points": { + "c1": -2.8361129187851404, + "c2": 15.301998632830273, + "c3": 0.6438714244492125, + "c4": 0.8454659137474252, + "c5": 12.064784463485726, + "c6": 12.201258880342937, + "c7": 0.1073476073138373 }, - "vertexSeeds": { - "c1": 2.766693212072615, - "c2": 2.6429222634512093, - "c3": 2.552843390172752, - "c4": 2.803263720924049, - "c5": 2.7433306127288186, - "c6": 2.818413567690627, - "c7": 2.634235225295931 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [238, 201, 159] }, @@ -179799,23 +179799,23 @@ "year": 1763, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": -18.107963481539628, - "c2": 27.150251821278594, - "c3": 10.960424829655686, - "c4": -22.11761790010725, - "c5": 44.19753732093957, - "c6": -31.338631911349676, - "c7": 49.58388833601756 + "points": { + "c1": 21.222555191739794, + "c2": 57.42682591095515, + "c3": 42.649869904522056, + "c4": 21.23456579292941, + "c5": 47.46605441094189, + "c6": -4.622407652483965, + "c7": -15.004319289851239 }, - "vertexSeeds": { - "c1": 11.08070169100777, - "c2": 10.588655223126576, - "c3": 11.025087152338173, - "c4": 10.985105908356338, - "c5": 10.92985926806615, - "c6": 10.626040908899895, - "c7": 12.064020898312238 + "offsets": { + "c1": 20.64724919093851, + "c2": 17.697642163661587, + "c3": 14.748035136384647, + "c4": 11.798428109107727, + "c5": 8.848821081830783, + "c6": 5.899214054553863, + "c7": 2.9496070272769415 }, "rgb": [238, 201, 159] }, @@ -179826,23 +179826,23 @@ "year": 1762, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 34.65447861083249, - "c2": -16.851212920490102, - "c3": 36.86530786764961, - "c4": 27.44656026059365, - "c5": 39.014117119311685, - "c6": 31.932885430532373, - "c7": -7.3535498245428315 + "points": { + "c1": 30.43665752947745, + "c2": 17.632752110073703, + "c3": -23.98049436902061, + "c4": -44.781104332250415, + "c5": -30.040465711757655, + "c6": -31.413466841225596, + "c7": -23.920225602862523 }, - "vertexSeeds": { - "c1": 7.001191438236157, - "c2": 7.175704009811766, - "c3": 6.798106554977671, - "c4": 7.081944802910568, - "c5": 6.896618030639326, - "c6": 7.077517443843809, - "c7": 7.080970378048635 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922329, + "c3": 8.576051779935275, + "c4": 6.860841423948219, + "c5": 5.1456310679611645, + "c6": 3.4304207119741097, + "c7": 1.7152103559870548 }, "rgb": [58, 15, 49] }, @@ -179853,23 +179853,23 @@ "year": 1762, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -10.724107118421923, - "c2": -26.337833763520187, - "c3": 3.93937703042171, - "c4": -28.901750691913836, - "c5": 15.597864279045723, - "c6": 19.643714915058936, - "c7": 26.76569788354002 + "points": { + "c1": -13.494971773216662, + "c2": 9.811214742608385, + "c3": -20.004106080630464, + "c4": 27.507417567136798, + "c5": -0.400459998888941, + "c6": 32.461581832131714, + "c7": 19.707988813025757 }, - "vertexSeeds": { - "c1": 3.1469323176540205, - "c2": 3.5201951530862723, - "c3": 3.49375828425248, - "c4": 3.344288642826464, - "c5": 3.585916855728507, - "c6": 3.354312287701241, - "c7": 3.552036441100296 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642161, + "c3": 4.392048081368471, + "c4": 3.5136384650947745, + "c5": 2.6352288488210833, + "c6": 1.7568192325473873, + "c7": 0.8784096162736909 }, "rgb": [58, 15, 49] }, @@ -179880,23 +179880,23 @@ "year": 1763, "resistanceReported": false, "duration": 44841600, - "curveSeeds": { - "c1": -27.410891918947407, - "c2": 48.748274271896605, - "c3": -39.654825620879194, - "c4": 4.365960171093505, - "c5": 44.873161484965166, - "c6": -0.8331239526821506, - "c7": 27.306929000961887 + "points": { + "c1": 27.2325556883562, + "c2": -19.34507746317024, + "c3": -34.13080515188339, + "c4": -31.972406923757983, + "c5": -19.143321159960266, + "c6": -19.54950364116685, + "c7": 27.242841687257112 }, - "vertexSeeds": { - "c1": 1.4569715474187073, - "c2": 1.3844249899958148, - "c3": 1.5069542691267905, - "c4": 1.4276720765190798, - "c5": 1.371389877577749, - "c6": 1.3781620057776878, - "c7": 1.447195897680623 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.1914008321775325, + "c3": 1.8261673601479411, + "c4": 1.4609338881183536, + "c5": 1.0957004160887662, + "c6": 0.7304669440591788, + "c7": 0.3652334720295874 }, "rgb": [238, 201, 159] }, @@ -179907,23 +179907,23 @@ "year": 1762, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 4.23727823039561, - "c2": -13.983549567493945, - "c3": 35.71150341568622, - "c4": 26.61682667311188, - "c5": -37.72376799018745, - "c6": -32.46432497938168, - "c7": -5.280893801221133 + "points": { + "c1": -39.167877194447655, + "c2": -23.47529322863191, + "c3": 6.75817680097061, + "c4": -14.608320282570272, + "c5": -36.00667996009258, + "c6": 13.042663969171187, + "c7": 41.97594852696286 }, - "vertexSeeds": { - "c1": 2.9730726916193575, - "c2": 3.1638148444795444, - "c3": 3.238318135389808, - "c4": 2.999773571544989, - "c5": 3.0545718073976955, - "c6": 3.3504580681409197, - "c7": 2.9704683855324125 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [77, 76, 132] }, @@ -179934,23 +179934,23 @@ "year": 1762, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -1.850991970928014, - "c2": 24.985166067002595, - "c3": 16.063967905371953, - "c4": 9.667796819354194, - "c5": 12.637709464511417, - "c6": 14.532949560315188, - "c7": -14.505396978939075 + "points": { + "c1": -18.9754641228597, + "c2": -15.994141233083905, + "c3": -32.16425481493066, + "c4": -19.97764895213969, + "c5": 31.291109203053367, + "c6": -26.4193616133248, + "c7": -22.11868185684115 }, - "vertexSeeds": { - "c1": 12.693005073757318, - "c2": 13.413690518568888, - "c3": 13.86292536215376, - "c4": 12.972503820768173, - "c5": 12.770425084179475, - "c6": 12.685043738857706, - "c7": 12.875203569057453 + "offsets": { + "c1": 24.983818770226538, + "c2": 21.41470180305131, + "c3": 17.845584835876107, + "c4": 14.27646786870088, + "c5": 10.707350901525656, + "c6": 7.13823393435043, + "c7": 3.569116967175226 }, "rgb": [238, 201, 159] }, @@ -179961,23 +179961,23 @@ "year": 1762, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -2.937932507084703, - "c2": -5.49876373662822, - "c3": 9.111319791171454, - "c4": 20.65313275057138, - "c5": 35.99883505692608, - "c6": -35.321330672501105, - "c7": -40.1022297100112 + "points": { + "c1": 34.251237781060894, + "c2": -24.798190868049254, + "c3": 6.2424194137466245, + "c4": -37.518043322230135, + "c5": 27.742130699056872, + "c6": 29.819138062114575, + "c7": -17.534416485796623 }, - "vertexSeeds": { - "c1": 5.778295161851776, - "c2": 5.473296417445782, - "c3": 5.653183698625217, - "c4": 5.69692436173625, - "c5": 5.695587097406944, - "c6": 5.801718530098915, - "c7": 5.342933543344187 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227455, + "c3": 7.027276930189554, + "c4": 5.621821544151636, + "c5": 4.216366158113736, + "c6": 2.810910772075818, + "c7": 1.4054553860379173 }, "rgb": [86, 146, 138] }, @@ -179988,23 +179988,23 @@ "year": 1762, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -2.3891337446941705, - "c2": 21.620602461065687, - "c3": 7.6261328085710005, - "c4": -15.694808093251343, - "c5": -14.148887966229573, - "c6": -19.848086915472493, - "c7": -14.60419612972937 + "points": { + "c1": 22.551068622380335, + "c2": 24.805830221411597, + "c3": 30.115732192990478, + "c4": -27.617935918463715, + "c5": -0.7416021489255797, + "c6": 22.687070938221694, + "c7": -21.613401764201264 }, - "vertexSeeds": { - "c1": 6.177504744312349, - "c2": 5.917792138964467, - "c3": 6.348305409487972, - "c4": 6.258825790325008, - "c5": 6.673207391915193, - "c6": 6.509953782852282, - "c7": 6.6539172877841155 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077666, + "c3": 8.090614886731395, + "c4": 6.472491909385109, + "c5": 4.85436893203884, + "c6": 3.2362459546925546, + "c7": 1.6181229773462704 }, "rgb": [238, 201, 159] }, @@ -180015,23 +180015,23 @@ "year": 1762, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -17.811431700730008, - "c2": -21.892380292331566, - "c3": -7.678418893103178, - "c4": 11.199559857637858, - "c5": 39.07117185926111, - "c6": -12.242021186497063, - "c7": -30.208271839567075 + "points": { + "c1": 10.185881707609362, + "c2": -5.570064491539888, + "c3": -10.349721451677773, + "c4": 42.624937090868954, + "c5": -20.13467002653043, + "c6": 38.812417253119534, + "c7": -33.138102040532075 }, - "vertexSeeds": { - "c1": 6.731192595984815, - "c2": 6.990881375765033, - "c3": 6.9412857251720075, - "c4": 6.924167246726483, - "c5": 6.6804703317048375, - "c6": 6.959377375847318, - "c7": 6.861090071505519 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640769, + "c3": 8.414239482200658, + "c4": 6.731391585760521, + "c5": 5.048543689320384, + "c6": 3.365695792880275, + "c7": 1.6828478964401374 }, "rgb": [222, 0, 59] }, @@ -180042,23 +180042,23 @@ "year": 1762, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": 4.526223863143098, - "c2": -20.193662841677245, - "c3": -14.886470204337336, - "c4": -4.057417007146526, - "c5": -12.263974248386994, - "c6": -3.560268310455289, - "c7": -16.697019784990005 + "points": { + "c1": 13.380653494615345, + "c2": -9.829172429973163, + "c3": 10.546282421931856, + "c4": 5.534027872962977, + "c5": -1.3603895310534497, + "c6": 17.005847123224754, + "c7": 10.371247424097547 }, - "vertexSeeds": { - "c1": 7.299301347074434, - "c2": 7.140206621441795, - "c3": 7.439886052503206, - "c4": 7.529939613658606, - "c5": 7.447633093317159, - "c6": 7.695773202002406, - "c7": 7.060026138185518 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289876, + "c3": 9.361997226074896, + "c4": 7.489597780859917, + "c5": 5.617198335644938, + "c6": 3.7447988904299585, + "c7": 1.8723994452149793 }, "rgb": [58, 15, 49] }, @@ -180069,23 +180069,23 @@ "year": 1762, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -25.2111460891593, - "c2": -8.681086747525061, - "c3": 19.894963166276188, - "c4": -9.664397929306393, - "c5": -11.28723727401761, - "c6": 14.410802016403078, - "c7": 23.957170401224925 + "points": { + "c1": -21.102337502534994, + "c2": 1.1629269572249434, + "c3": -4.395040085919039, + "c4": 26.060788161600552, + "c5": 16.24355548901328, + "c6": -27.14555517504119, + "c7": -13.336663412994497 }, - "vertexSeeds": { - "c1": 8.104994481769541, - "c2": 7.5369700702020035, - "c3": 8.090271457543295, - "c4": 7.866797415660805, - "c5": 7.777772772937729, - "c6": 7.7212476247798, - "c7": 7.72988113447841 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214985, + "c3": 9.893666204345815, + "c4": 7.914932963476657, + "c5": 5.936199722607485, + "c6": 3.9574664817383285, + "c7": 1.9787332408691707 }, "rgb": [86, 146, 138] }, @@ -180096,23 +180096,23 @@ "year": 1761, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 25.74322898228828, - "c2": 32.9085639149126, - "c3": 38.064983890547786, - "c4": -31.27259571050617, - "c5": -3.8208703718910826, - "c6": 25.84345491997191, - "c7": 40.71005020978121 + "points": { + "c1": 15.06444854142702, + "c2": -33.02480166369952, + "c3": 5.661319928619456, + "c4": -39.94414890324052, + "c5": 35.6072048816766, + "c6": 10.76732026304009, + "c7": -32.97104499111479 }, - "vertexSeeds": { - "c1": 4.277265960271698, - "c2": 4.151695322804566, - "c3": 4.2951638812815585, - "c4": 4.083907982051486, - "c5": 4.2389779517285655, - "c6": 4.184685619590347, - "c7": 4.245430238858984 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [222, 0, 59] }, @@ -180123,23 +180123,23 @@ "year": 1762, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -11.76325984229042, - "c2": -3.594677580460086, - "c3": -6.657358356324732, - "c4": -27.37758232078349, - "c5": -0.35746280878982617, - "c6": 1.6473596399109525, - "c7": -9.630138705553986 + "points": { + "c1": -17.98363415172017, + "c2": 13.172880059029751, + "c3": -25.277379118738736, + "c4": -15.496127054535656, + "c5": 27.2588253950764, + "c6": 4.320777182427186, + "c7": -12.761601799714995 }, - "vertexSeeds": { - "c1": 6.5646329246939725, - "c2": 7.238952225617714, - "c3": 7.357271831925143, - "c4": 7.756933897413763, - "c5": 7.267187773460097, - "c6": 6.677545889457096, - "c7": 7.769471314629413 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.76144244105409, + "c3": 9.80120203421174, + "c4": 7.840961627369396, + "c5": 5.880721220527045, + "c6": 3.9204808136846943, + "c7": 1.960240406842351 }, "rgb": [77, 76, 132] }, @@ -180150,23 +180150,23 @@ "year": 1762, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -21.212110573114288, - "c2": 13.37351690715074, - "c3": 15.657888979591835, - "c4": -4.304033116633448, - "c5": -16.786788728858628, - "c6": -8.758635492698112, - "c7": 25.734536809084847 + "points": { + "c1": 22.949506602405716, + "c2": -25.489189918896262, + "c3": -10.648680964568914, + "c4": 22.576347800883372, + "c5": -5.202444659745748, + "c6": 16.680735753140556, + "c7": -0.5481994846455649 }, - "vertexSeeds": { - "c1": 4.4297893836187905, - "c2": 4.640678421093634, - "c3": 4.715275247009273, - "c4": 4.596556187295996, - "c5": 4.644277445235302, - "c6": 4.5256409891453675, - "c7": 4.582042742076936 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -180177,23 +180177,23 @@ "year": 1763, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -28.399691753273235, - "c2": 35.81358979081272, - "c3": -32.813102928980776, - "c4": 15.494027681486564, - "c5": 23.012129656531947, - "c6": 30.650512797520953, - "c7": -43.16550818234115 + "points": { + "c1": -41.175038012440794, + "c2": -5.531607515747048, + "c3": -21.5946678581211, + "c4": -0.19668026251401471, + "c5": -44.06333580584168, + "c6": 21.023918519921942, + "c7": -1.7112429611137117 }, - "vertexSeeds": { - "c1": 2.4947650688875274, - "c2": 2.4910192973218472, - "c3": 2.453680973967121, - "c4": 2.491674080368009, - "c5": 2.480574064487372, - "c6": 2.4735160275250205, - "c7": 2.4495574354214513 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228866, + "c3": 3.005085529357369, + "c4": 2.404068423485911, + "c5": 1.8030513176144132, + "c6": 1.2020342117429554, + "c7": 0.6010171058714777 }, "rgb": [238, 201, 159] }, @@ -180204,23 +180204,23 @@ "year": 1763, "resistanceReported": false, "duration": 42422400, - "curveSeeds": { - "c1": 52.360259689821795, - "c2": 16.9850858550545, - "c3": 45.11754458905808, - "c4": -45.761881504122805, - "c5": -37.369960004611535, - "c6": 44.55150561991368, - "c7": -13.72510832767334 + "points": { + "c1": 16.87012498333244, + "c2": -47.580219565881485, + "c3": 2.9749226447125565, + "c4": -29.88409945911152, + "c5": -33.75622588762255, + "c6": -45.37538065411674, + "c7": 1.7899995108464992 }, - "vertexSeeds": { - "c1": 3.9246111801601766, - "c2": 3.4875970274481807, - "c3": 3.755172969616188, - "c4": 3.656380860550591, - "c5": 3.7844875266074918, - "c6": 3.499207467574235, - "c7": 3.724278712539467 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366162, + "c3": 4.808136846971799, + "c4": 3.8465094775774413, + "c5": 2.8848821081830773, + "c6": 1.9232547387887207, + "c7": 0.9616273693943637 }, "rgb": [238, 201, 159] }, @@ -180231,23 +180231,23 @@ "year": 1763, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 37.164871334932045, - "c2": -34.33427207695524, - "c3": -26.444570933013825, - "c4": 29.74710199118927, - "c5": -37.126881567376834, - "c6": 42.161530867601144, - "c7": 35.74196544610277 + "points": { + "c1": 40.76650965819515, + "c2": -3.6335164319310707, + "c3": -19.442873899720613, + "c4": -34.157623403144456, + "c5": -0.09037848376957669, + "c6": 20.35563907791834, + "c7": -5.378914033685454 }, - "vertexSeeds": { - "c1": 8.715828557872038, - "c2": 8.71633139853656, - "c3": 8.363386315680998, - "c4": 8.298752345447404, - "c5": 8.379686167834244, - "c6": 8.72845480952886, - "c7": 8.728669271003934 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.51040221914007, + "c3": 10.425335182616738, + "c4": 8.34026814609338, + "c5": 6.2552011095700495, + "c6": 4.17013407304669, + "c7": 2.0850670365233306 }, "rgb": [86, 146, 138] }, @@ -180258,23 +180258,23 @@ "year": 1762, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -29.954221220200015, - "c2": 19.22406478078024, - "c3": 28.125620472825048, - "c4": -37.00856869958166, - "c5": -6.8476380045934135, - "c6": 35.71250578175393, - "c7": -41.0230411154229 + "points": { + "c1": -19.42645571289509, + "c2": 16.107567875846257, + "c3": -44.04636627361948, + "c4": -37.79313501387353, + "c5": -43.70380647009622, + "c6": -22.66346576721025, + "c7": -3.0840237608696626 }, - "vertexSeeds": { - "c1": 7.5610310074519695, - "c2": 6.082541746759283, - "c3": 6.075809348827917, - "c4": 8.103097775921766, - "c5": 6.136330786451105, - "c6": 8.114803138092533, - "c7": 6.205331395430199 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.93481276005548, + "c4": 5.547850208044382, + "c5": 4.160887656033288, + "c6": 2.7739251040221933, + "c7": 1.3869625520110944 }, "rgb": [222, 0, 59] }, @@ -180285,23 +180285,23 @@ "year": 1762, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -24.82355170838346, - "c2": -3.269546102458243, - "c3": 23.989583740438853, - "c4": 23.344548188410805, - "c5": -26.399529026956724, - "c6": -7.118928097036662, - "c7": 17.53648502842867 + "points": { + "c1": -26.298176357462324, + "c2": -23.228190101220655, + "c3": -33.71398430489639, + "c4": 14.409957118545115, + "c5": -33.85942594035554, + "c6": -16.41711465658151, + "c7": 19.316237455192216 }, - "vertexSeeds": { - "c1": 2.063125625031288, - "c2": 1.8507745180951622, - "c3": 1.8022524919728422, - "c4": 1.8907735584038894, - "c5": 1.7889381568448948, - "c6": 2.085842523906205, - "c7": 1.8329929113996815 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504855, + "c3": 2.5889967637540443, + "c4": 2.0711974110032356, + "c5": 1.5533980582524276, + "c6": 1.0355987055016194, + "c7": 0.5177993527508084 }, "rgb": [222, 0, 59] }, @@ -180312,23 +180312,23 @@ "year": 1762, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 19.58042134999115, - "c2": 4.166752641402944, - "c3": -27.677448636624252, - "c4": 2.2433189673868625, - "c5": -13.714269806736258, - "c6": 35.98381196617987, - "c7": -7.230383343003744 + "points": { + "c1": -19.62921592111578, + "c2": -27.5880351761564, + "c3": 19.938589633346574, + "c4": -41.49973500962881, + "c5": -25.77083531134536, + "c6": -9.693686075356666, + "c7": 2.0117696788012296 }, - "vertexSeeds": { - "c1": 1.2737583139127275, - "c2": 1.3824339210021304, - "c3": 1.0957297822377854, - "c4": 1.3451375534002228, - "c5": 1.171551405769329, - "c6": 0.9824805053631822, - "c7": 1.4256175080347073 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.080443828016643, + "c3": 1.733703190013869, + "c4": 1.3869625520110964, + "c5": 1.0402219140083215, + "c6": 0.6934812760055482, + "c7": 0.3467406380027741 }, "rgb": [222, 0, 59] }, @@ -180339,23 +180339,23 @@ "year": 1763, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 2.947465089538426, - "c2": 10.009317120148097, - "c3": -23.360083847942906, - "c4": -4.968770218687695, - "c5": 5.1403423938379404, - "c6": 39.320902937895, - "c7": -19.65616019920929 + "points": { + "c1": -9.799526700776553, + "c2": 7.148124967874594, + "c3": 13.489928838315706, + "c4": -13.179422974787819, + "c5": 13.475189195892213, + "c6": 22.239414425675704, + "c7": -39.41856921851682 }, - "vertexSeeds": { - "c1": 2.8261639340936213, - "c2": 2.6773724635553076, - "c3": 2.7664430420621224, - "c4": 2.6298590917161544, - "c5": 2.4658787150251555, - "c6": 2.4601472136127027, - "c7": 2.6672609982408195 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [238, 201, 159] }, @@ -180366,23 +180366,23 @@ "year": 1763, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -2.675607821280586, - "c2": 0.7223162161987631, - "c3": -42.471487339494054, - "c4": 21.32911909389142, - "c5": -42.3510371770757, - "c6": 38.80478544266056, - "c7": 25.820427280351936 + "points": { + "c1": -9.624488597375162, + "c2": 40.947372716956764, + "c3": -16.30747781699119, + "c4": -33.97225687553286, + "c5": -38.13926507723532, + "c6": -43.75344443407082, + "c7": 0.47399950072323804 }, - "vertexSeeds": { - "c1": 2.8680256502146975, - "c2": 2.5395819375042805, - "c3": 2.803525684543015, - "c4": 2.7754147132623537, - "c5": 2.7944485419271983, - "c6": 2.5239680939062104, - "c7": 2.6123432348007984 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -180393,23 +180393,23 @@ "year": 1763, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": 34.5442861535516, - "c2": -22.47607558400245, - "c3": 45.95641284621744, - "c4": -38.91564422272148, - "c5": 9.37221052968841, - "c6": -9.42137378845031, - "c7": -44.342055508151525 + "points": { + "c1": 44.56688879963192, + "c2": 49.510345531434844, + "c3": 8.823747535548854, + "c4": 54.73260851116405, + "c5": 25.363348813895946, + "c6": -27.21768724693979, + "c7": -36.209962176270615 }, - "vertexSeeds": { - "c1": 1.2342459996488768, - "c2": 1.255754493901489, - "c3": 1.204255512522336, - "c4": 1.216914216540226, - "c5": 1.2704634269636614, - "c6": 1.2586719791381522, - "c7": 1.258890614379223 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948705, + "c3": 1.5487748497457225, + "c4": 1.2390198797965806, + "c5": 0.9292649098474323, + "c6": 0.6195099398982903, + "c7": 0.30975496994914514 }, "rgb": [77, 76, 132] }, @@ -180420,23 +180420,23 @@ "year": 1762, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -18.983885198251897, - "c2": 13.456534571520884, - "c3": -3.9103506633280603, - "c4": 31.097635674569617, - "c5": 9.061521005661241, - "c6": -16.96778549111904, - "c7": -13.45653637375663 + "points": { + "c1": 5.629323484292605, + "c2": -6.768560863978738, + "c3": 2.4751558953165826, + "c4": -14.310215611342539, + "c5": -5.253522953302319, + "c6": 23.164445061601896, + "c7": 9.37696465679452 }, - "vertexSeeds": { - "c1": 3.920999193976315, - "c2": 3.821541158421301, - "c3": 3.6847625504583568, - "c4": 3.9605390192511023, - "c5": 3.7926573828254733, - "c6": 3.905546484535713, - "c7": 4.033472743830933 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969486, + "c3": 5.154877484974575, + "c4": 4.123901987979659, + "c5": 3.092926490984743, + "c6": 2.061950993989832, + "c7": 1.030975496994916 }, "rgb": [86, 146, 138] }, @@ -180447,23 +180447,23 @@ "year": 1763, "resistanceReported": false, "duration": 56073600, - "curveSeeds": { - "c1": 27.082884285321242, - "c2": 52.959403442555356, - "c3": 71.2325326612237, - "c4": 33.46619336512461, - "c5": 0.9897581550696657, - "c6": -26.635994995946902, - "c7": -18.932535191038248 + "points": { + "c1": 16.07271762166451, + "c2": -1.9147071608233688, + "c3": 7.288511997743001, + "c4": 25.157453096401397, + "c5": -51.78356187542243, + "c6": 49.43327826377862, + "c7": 33.29591187126283 }, - "vertexSeeds": { - "c1": 2.2669574390063283, - "c2": 2.4759626775111157, - "c3": 2.579393281935788, - "c4": 2.391862591583344, - "c5": 2.220113765186104, - "c6": 2.4676670556145472, - "c7": 2.348881218350549 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.717059639389739, + "c3": 3.097549699491446, + "c4": 2.478039759593156, + "c5": 1.8585298196948663, + "c6": 1.2390198797965797, + "c7": 0.6195099398982865 }, "rgb": [222, 0, 59] }, @@ -180474,23 +180474,23 @@ "year": 1762, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 9.307539488425679, - "c2": -3.139010741638362, - "c3": 7.2248709787326995, - "c4": 21.48526608434933, - "c5": -28.483993660648906, - "c6": 15.387612959638421, - "c7": -6.893563799910904 + "points": { + "c1": 29.02674118979983, + "c2": 20.24457790760495, + "c3": 19.863427924930363, + "c4": 31.54278551399007, + "c5": 26.35886310489024, + "c6": -12.117273731378802, + "c7": -18.09653176082808 }, - "vertexSeeds": { - "c1": 2.989367044946188, - "c2": 3.05495965513611, - "c3": 3.033221670230334, - "c4": 2.999523192746448, - "c5": 3.1105518641051564, - "c6": 2.8765489427112945, - "c7": 2.7066040289118365 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.49375866851595, + "c3": 3.744798890429957, + "c4": 2.9958391123439645, + "c5": 2.2468793342579776, + "c6": 1.4979195561719851, + "c7": 0.7489597780859926 }, "rgb": [238, 201, 159] }, @@ -180501,23 +180501,23 @@ "year": 1762, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 6.110282018492796, - "c2": -7.085032488252768, - "c3": 28.147814665637036, - "c4": -6.315176656179993, - "c5": 4.910217534084509, - "c6": 12.502164870802524, - "c7": -32.79708022513748 + "points": { + "c1": -0.3491302660213904, + "c2": -15.410217079201217, + "c3": 24.286922237318755, + "c4": -18.126648266920004, + "c5": -5.083821943412424, + "c6": 22.59594759085887, + "c7": -30.926051772858674 }, - "vertexSeeds": { - "c1": 2.4706878461966784, - "c2": 2.6345278222290864, - "c3": 2.4684373610752117, - "c4": 2.2880411762848327, - "c5": 2.4901746081027567, - "c6": 2.3041829408967685, - "c7": 2.43184109806576 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506233, + "c3": 3.1900138696255183, + "c4": 2.55201109570042, + "c5": 1.9140083217753117, + "c6": 1.27600554785021, + "c7": 0.638002773925105 }, "rgb": [86, 146, 138] }, @@ -180528,23 +180528,23 @@ "year": 1762, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 1.4428641225716063, - "c2": -26.048364460922016, - "c3": 19.475741585870757, - "c4": -9.83000257269692, - "c5": 27.070718066535754, - "c6": -21.24374891068713, - "c7": 31.350755164713945 + "points": { + "c1": -32.669057606082426, + "c2": 1.253925244198804, + "c3": -35.45457225507898, + "c4": -29.378377277962052, + "c5": 12.338320504960954, + "c6": -3.6146076458682117, + "c7": 1.8923432428097442 }, - "vertexSeeds": { - "c1": 3.1510910823351654, - "c2": 3.3098700331762703, - "c3": 3.1015102829074315, - "c4": 3.582716272308728, - "c5": 3.6526652415023215, - "c6": 3.452826022657341, - "c7": 3.231726937380309 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486821, + "c3": 4.877484974572353, + "c4": 3.901987979657881, + "c5": 2.9264909847434124, + "c6": 1.9509939898289406, + "c7": 0.9754969949144722 }, "rgb": [86, 146, 138] }, @@ -180555,23 +180555,23 @@ "year": 1762, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 7.7783129004233125, - "c2": 20.418348969337476, - "c3": 26.706202205929, - "c4": 30.72135813367669, - "c5": -27.424663898744935, - "c6": 23.442752332758072, - "c7": 2.8520748530038382 + "points": { + "c1": -14.440637990838944, + "c2": -7.034045209773442, + "c3": -4.908385685651133, + "c4": 2.3320456490345833, + "c5": -18.9966766171208, + "c6": 19.876027160132892, + "c7": 27.007469024485836 }, - "vertexSeeds": { - "c1": 2.1496799293247504, - "c2": 2.0633746286257466, - "c3": 2.1405906168116995, - "c4": 2.1777882770919845, - "c5": 2.046401082206967, - "c6": 2.196574480869338, - "c7": 2.0392208811260386 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.217753120665743, + "c3": 2.6814609338881166, + "c4": 2.145168747110494, + "c5": 1.6088765603328714, + "c6": 1.0725843735552492, + "c7": 0.5362921867776225 }, "rgb": [58, 15, 49] }, @@ -180582,23 +180582,23 @@ "year": 1762, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -3.928101966158831, - "c2": -0.016059599908544442, - "c3": -15.818108396233487, - "c4": 16.559671618029252, - "c5": 7.426319454941407, - "c6": -10.754620038481045, - "c7": -12.665026121348228 + "points": { + "c1": 14.307550987789991, + "c2": 9.911597251620233, + "c3": -17.921971551497503, + "c4": -25.180386504692002, + "c5": -3.1941858212311764, + "c6": -2.654277949510572, + "c7": -11.646074269506466 }, - "vertexSeeds": { - "c1": 3.5319129598993464, - "c2": 3.3104343472275026, - "c3": 3.684015326340803, - "c4": 3.1285456219668584, - "c5": 3.5191834050872997, - "c6": 3.4504972157274243, - "c7": 3.3823400421205334 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803051, + "c3": 4.484512251502542, + "c4": 3.587609801202037, + "c5": 2.690707350901528, + "c6": 1.7938049006010186, + "c7": 0.8969024503005093 }, "rgb": [86, 146, 138] }, @@ -180609,23 +180609,23 @@ "year": 1763, "resistanceReported": false, "duration": 50457600, - "curveSeeds": { - "c1": -64.52467984999942, - "c2": -49.511240803853106, - "c3": 28.390549175543924, - "c4": -58.11739776656587, - "c5": 46.590134432849865, - "c6": -63.66296251799249, - "c7": -21.730036214963334 + "points": { + "c1": 9.242270979429051, + "c2": -18.686299662248942, + "c3": -64.9840744774412, + "c4": -46.001596752271915, + "c5": -40.9301528995847, + "c6": -62.333514681258414, + "c7": -65.16658958160497 }, - "vertexSeeds": { - "c1": 1.9129910808848964, - "c2": 1.8529579604952555, - "c3": 2.0112981692672607, - "c4": 1.9132684328849476, - "c5": 1.9195920463420002, - "c6": 1.8652075327642113, - "c7": 1.9367952733745935 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635234, + "c3": 2.450300508552937, + "c4": 1.9602404068423505, + "c5": 1.470180305131764, + "c6": 0.9801202034211731, + "c7": 0.49006010171059067 }, "rgb": [77, 76, 132] }, @@ -180636,23 +180636,23 @@ "year": 1763, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -35.160440985394416, - "c2": 19.483635900815834, - "c3": 42.50502854881908, - "c4": -2.774812807525656, - "c5": -45.365632230617045, - "c6": 0.10452338986235077, - "c7": 15.381610161031098 + "points": { + "c1": -28.916294380712205, + "c2": 15.6978873169055, + "c3": -38.429537913247934, + "c4": 8.970066618545637, + "c5": -22.776725557437103, + "c6": 47.589825095108274, + "c7": 38.94430663195572 }, - "vertexSeeds": { - "c1": 7.3053192887918055, - "c2": 6.5209504352993655, - "c3": 6.648411012190167, - "c4": 7.331429989857899, - "c5": 6.794283196990197, - "c6": 7.59013323777403, - "c7": 7.098549633190963 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249654, + "c3": 9.33888118354138, + "c4": 7.4711049468331066, + "c5": 5.603328710124832, + "c6": 3.735552473416558, + "c7": 1.8677762367082842 }, "rgb": [58, 15, 49] }, @@ -180663,23 +180663,23 @@ "year": 1762, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -13.554271865768268, - "c2": 25.39711839514655, - "c3": -14.335702420002121, - "c4": -15.742499085578999, - "c5": 9.934800158736543, - "c6": 25.831007528773874, - "c7": 11.58845822500276 + "points": { + "c1": 23.062185284314367, + "c2": 1.8707975301929594, + "c3": 19.037072097085527, + "c4": -22.667545051918317, + "c5": 26.20613865476342, + "c6": 22.851797823193017, + "c7": -11.592622970932563 }, - "vertexSeeds": { - "c1": 8.476558721667464, - "c2": 8.028975427139294, - "c3": 8.802432531626916, - "c4": 9.535149337208868, - "c5": 8.371344436519498, - "c6": 8.304514880498596, - "c7": 8.39639521331123 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.758668515950072, + "c3": 11.46555709662506, + "c4": 9.172445677300052, + "c5": 6.879334257975032, + "c6": 4.586222838650021, + "c7": 2.2931114193250104 }, "rgb": [238, 201, 159] }, @@ -180690,23 +180690,23 @@ "year": 1763, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -36.82618433488502, - "c2": 16.67015185592109, - "c3": 11.507522417317738, - "c4": 17.413636177521873, - "c5": 0.7763293905872857, - "c6": 13.831760055476785, - "c7": 33.121227864993244 + "points": { + "c1": -10.755372897014471, + "c2": 27.188825395075014, + "c3": 8.681351863255536, + "c4": -18.733190420891574, + "c5": 15.802132746511397, + "c6": 7.260673789165374, + "c7": 40.22664000616348 }, - "vertexSeeds": { - "c1": 6.310210575331894, - "c2": 6.406095335952953, - "c3": 6.362678037851189, - "c4": 6.273583350392969, - "c5": 5.691702341983916, - "c6": 6.473193124946677, - "c7": 6.215941891997709 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238553, + "c3": 8.183079056865466, + "c4": 6.546463245492369, + "c5": 4.909847434119282, + "c6": 3.2732316227461844, + "c7": 1.6366158113730973 }, "rgb": [238, 201, 159] }, @@ -180717,23 +180717,23 @@ "year": 1763, "resistanceReported": true, "duration": 28771200, - "curveSeeds": { - "c1": 3.7178470945460873, - "c2": 19.79372346337231, - "c3": 39.35707787510185, - "c4": -9.778676446318496, - "c5": -2.5567370282113657, - "c6": -33.70901722001629, - "c7": -16.641883309903914 + "points": { + "c1": 26.069185013787788, + "c2": -7.72753454685607, + "c3": 38.028572089798516, + "c4": 42.95842181951542, + "c5": 16.529858621913952, + "c6": -18.126897445346124, + "c7": -4.25458669252837 }, - "vertexSeeds": { - "c1": 5.088909582676966, - "c2": 5.065313227345016, - "c3": 5.067646268356047, - "c4": 5.0408018952845355, - "c5": 5.064763479042999, - "c6": 5.078386843823673, - "c7": 5.0457330622909025 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.2954230235783175, + "c3": 6.0795191863153715, + "c4": 4.863615349052266, + "c5": 3.6477115117891588, + "c6": 2.431807674526052, + "c7": 1.2159038372631066 }, "rgb": [58, 15, 49] }, @@ -180744,23 +180744,23 @@ "year": 1763, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": 4.775773016874048, - "c2": -16.00083079525536, - "c3": -44.02483053953033, - "c4": -0.09580009366919029, - "c5": -33.955745773703896, - "c6": -8.623879140479545, - "c7": -35.40837875510403 + "points": { + "c1": -33.08879386286808, + "c2": 47.732839541652446, + "c3": 22.424506768579285, + "c4": 26.277310848648376, + "c5": -4.494985367742089, + "c6": -10.246210286903022, + "c7": -37.61040838606826 }, - "vertexSeeds": { - "c1": 1.2441579995593115, - "c2": 1.2192313387830969, - "c3": 1.2862172042201268, - "c4": 1.189860206918256, - "c5": 1.291371477286772, - "c6": 1.2342988528886423, - "c7": 1.1764746218822035 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155336, + "c3": 1.6181229773462775, + "c4": 1.2944983818770213, + "c5": 0.970873786407765, + "c6": 0.6472491909385106, + "c7": 0.32362459546925615 }, "rgb": [238, 201, 159] }, @@ -180771,23 +180771,23 @@ "year": 1763, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 22.611187433696564, - "c2": 34.59905448803258, - "c3": 25.833777526973336, - "c4": -11.900034638806794, - "c5": -12.039529953167833, - "c6": -32.539790388213696, - "c7": 35.4760465296044 + "points": { + "c1": 9.433727723127795, + "c2": -32.717814604276484, + "c3": -39.71880596604162, + "c4": -13.036186654266874, + "c5": -21.19867256662903, + "c6": 1.410194284044131, + "c7": 6.893213974183119 }, - "vertexSeeds": { - "c1": 2.4499874357090827, - "c2": 2.3618049959376757, - "c3": 2.489566849162561, - "c4": 2.5465354567782583, - "c5": 2.50815104360607, - "c6": 2.4034067420923986, - "c7": 2.5421917802904996 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.68932038834951, + "c3": 3.0744336569579302, + "c4": 2.45954692556634, + "c5": 1.8446601941747607, + "c6": 1.22977346278317, + "c7": 0.614886731391585 }, "rgb": [222, 0, 59] }, @@ -180798,23 +180798,23 @@ "year": 1762, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 17.569443537287555, - "c2": -14.556501221457825, - "c3": -10.897569068275839, - "c4": -28.743829457786, - "c5": -3.29799671692901, - "c6": 23.59408265299799, - "c7": 23.82246460089658 + "points": { + "c1": -26.41838006178949, + "c2": 34.70501858971388, + "c3": -20.78997235816444, + "c4": -1.3060118660996736, + "c5": 0.863470111731587, + "c6": -16.90657559183867, + "c7": -28.443124016074297 }, - "vertexSeeds": { - "c1": 2.3529020573309753, - "c2": 2.2771403638988437, - "c3": 2.2164623318001633, - "c4": 2.1364292699201193, - "c5": 2.3574034941924085, - "c6": 2.3396604692358207, - "c7": 2.192999922538919 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [238, 201, 159] }, @@ -180825,23 +180825,23 @@ "year": 1762, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 10.323782100648586, - "c2": 0.122302693264146, - "c3": -9.108124457944395, - "c4": -8.120941731495165, - "c5": 22.16955592800604, - "c6": 22.27893467766758, - "c7": 8.716876935777954 + "points": { + "c1": 17.5052907601117, + "c2": 3.816839669933195, + "c3": 18.45943208923582, + "c4": 4.536759361388057, + "c5": -9.716346054829177, + "c6": 3.3500074879927126, + "c7": 11.651002259525221 }, - "vertexSeeds": { - "c1": 5.036937501043817, - "c2": 5.935193753584525, - "c3": 5.102863359500589, - "c4": 5.710356162979633, - "c5": 5.770762083426344, - "c6": 5.111173930279955, - "c7": 5.695942436835042 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710123, + "c3": 7.304669440591767, + "c4": 5.843735552473422, + "c5": 4.382801664355067, + "c6": 2.921867776236711, + "c7": 1.4609338881183556 }, "rgb": [238, 201, 159] }, @@ -180852,23 +180852,23 @@ "year": 1763, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -28.32624950572911, - "c2": 3.7654799373566945, - "c3": 4.739211427328968, - "c4": -22.1219526655592, - "c5": 3.1718453468180527, - "c6": -8.78359852434501, - "c7": -19.817517413039177 + "points": { + "c1": -8.021497406147109, + "c2": -7.523779850620983, + "c3": 26.220322271602114, + "c4": -11.51854482254031, + "c5": 19.641021519822537, + "c6": 20.23710503543132, + "c7": -15.854624218472985 }, - "vertexSeeds": { - "c1": 6.840694271918076, - "c2": 6.378050754071423, - "c3": 6.595690474963661, - "c4": 6.450101924096453, - "c5": 6.767824403695132, - "c6": 6.895662006897703, - "c7": 6.710926761334105 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399435, + "c3": 8.27554322699954, + "c4": 6.620434581599623, + "c5": 4.965325936199729, + "c6": 3.3102172907998115, + "c7": 1.6551086453998944 }, "rgb": [58, 15, 49] }, @@ -180879,23 +180879,23 @@ "year": 1763, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 27.722310587843822, - "c2": -12.291122916539223, - "c3": 35.61906670396533, - "c4": 6.080669791419879, - "c5": -7.568377759736087, - "c6": 37.30885474594599, - "c7": 42.3814492687588 + "points": { + "c1": -44.66181158347041, + "c2": 1.7770389495724501, + "c3": -40.01484238555769, + "c4": -40.0398279042215, + "c5": 43.123922404466214, + "c6": 4.47918602118218, + "c7": 39.979318062586145 }, - "vertexSeeds": { - "c1": 5.691841908938829, - "c2": 5.959240960200087, - "c3": 6.349814584802519, - "c4": 6.612211953841918, - "c5": 6.476068231693375, - "c6": 6.756766193194384, - "c7": 6.791749496609118 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -180906,23 +180906,23 @@ "year": 1763, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": 41.64366802374522, - "c2": 18.679659632508248, - "c3": 1.2772846356886518, - "c4": 46.09116501491546, - "c5": 34.64858405841407, - "c6": -34.72422494752373, - "c7": -45.09468201042358 + "points": { + "c1": 2.8556803064001173, + "c2": 12.452137019829436, + "c3": 17.547512239762014, + "c4": 49.79502429122084, + "c5": 36.510786985712116, + "c6": 43.1263046655599, + "c7": 7.543099924160067 }, - "vertexSeeds": { - "c1": 6.91227194470867, - "c2": 6.342769999296827, - "c3": 6.4679306726399926, - "c4": 6.477542912434646, - "c5": 6.070145339282011, - "c6": 6.756199918058659, - "c7": 6.228481787330513 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640774, + "c3": 8.414239482200642, + "c4": 6.7313915857605116, + "c5": 5.048543689320394, + "c6": 3.3656957928802624, + "c7": 1.6828478964401312 }, "rgb": [77, 76, 132] }, @@ -180933,23 +180933,23 @@ "year": 1763, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 20.822842906798904, - "c2": -35.02000894488427, - "c3": 10.155749053141733, - "c4": 24.004990133166082, - "c5": 0.3410773430450149, - "c6": -29.879693871028906, - "c7": 25.570648348498096 + "points": { + "c1": -39.0526256072443, + "c2": 23.68943723697695, + "c3": -9.1870382573967, + "c4": -17.34892302674007, + "c5": -38.59616813922015, + "c6": 25.13639115439114, + "c7": 37.01177557561285 }, - "vertexSeeds": { - "c1": 8.780122033173939, - "c2": 8.450743749021068, - "c3": 8.18026753715398, - "c4": 8.097266913456991, - "c5": 7.450032128009042, - "c6": 8.924727504380654, - "c7": 8.547791205628052 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743415, + "c3": 10.772075820619515, + "c4": 8.617660656495604, + "c5": 6.463245492371702, + "c6": 4.308830328247802, + "c7": 2.154415164123901 }, "rgb": [238, 201, 159] }, @@ -180960,23 +180960,23 @@ "year": 1763, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 41.01137527862445, - "c2": 21.39439868309308, - "c3": 24.696082159328462, - "c4": -16.454171625384944, - "c5": 4.128301564073055, - "c6": -43.735187698376514, - "c7": 22.45768208341267 + "points": { + "c1": -40.62763562762983, + "c2": -38.484422353063266, + "c3": -13.746272492514613, + "c4": -45.211585841395674, + "c5": 46.45317654198333, + "c6": 33.178637320684494, + "c7": 22.393018211305154 }, - "vertexSeeds": { - "c1": 5.719505636711762, - "c2": 5.436907433646573, - "c3": 5.930310065922669, - "c4": 6.068444057673538, - "c5": 5.845774529323619, - "c6": 5.936445877065643, - "c7": 6.054735614326842 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [86, 146, 138] }, @@ -180987,23 +180987,23 @@ "year": 1763, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": -10.603995992534237, - "c2": -14.50774735125033, - "c3": -14.801699107150007, - "c4": 20.75429499106226, - "c5": -11.907529066613485, - "c6": -45.04952830486847, - "c7": 36.39832566383698 + "points": { + "c1": 16.145138423638265, + "c2": 4.193492568752099, + "c3": 18.45246914062522, + "c4": 41.046328456457296, + "c5": 4.03316903428852, + "c6": -29.072422659284765, + "c7": -43.14883990139302 }, - "vertexSeeds": { - "c1": 7.013982235305447, - "c2": 7.307317746847079, - "c3": 7.380526510609133, - "c4": 7.012221207327581, - "c5": 6.819685406110595, - "c6": 7.206880174981029, - "c7": 7.230577051488446 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.56865464632455, + "c3": 8.807212205270458, + "c4": 7.045769764216367, + "c5": 5.284327323162275, + "c6": 3.5228848821081833, + "c7": 1.7614424410540916 }, "rgb": [86, 146, 138] }, @@ -181014,23 +181014,23 @@ "year": 1763, "resistanceReported": true, "duration": 31795200, - "curveSeeds": { - "c1": 16.829824410271662, - "c2": -10.268716266117494, - "c3": 11.161086304574205, - "c4": -28.031127384101406, - "c5": 12.510814208497756, - "c6": -27.28544926698201, - "c7": -35.0000914366793 + "points": { + "c1": -25.30042813379708, + "c2": -21.855963839446467, + "c3": 5.27684866427272, + "c4": 17.56723879158622, + "c5": 6.998632479295956, + "c6": 32.96266120508517, + "c7": 24.022681419114818 }, - "vertexSeeds": { - "c1": 8.188386442047577, - "c2": 7.732945350760302, - "c3": 7.819116851813982, - "c4": 8.166114738530787, - "c5": 7.954954279387044, - "c6": 7.831012580062388, - "c7": 8.371454063346674 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617196, + "c3": 10.124826629680994, + "c4": 8.099861303744792, + "c5": 6.074895977808589, + "c6": 4.049930651872405, + "c7": 2.024965325936184 }, "rgb": [222, 0, 59] }, @@ -181041,23 +181041,23 @@ "year": 1763, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -16.507709799720846, - "c2": -10.824105165292359, - "c3": 29.90150826024186, - "c4": -31.378010224036345, - "c5": 13.794752599549305, - "c6": 15.030987726711864, - "c7": 25.082179648266937 + "points": { + "c1": 7.644929157759968, + "c2": 18.96793796504914, + "c3": 19.53749530966474, + "c4": -33.293497314081144, + "c5": 32.503020705951464, + "c6": 9.43074818211327, + "c7": -25.81559095647166 }, - "vertexSeeds": { - "c1": 4.2222959202562516, - "c2": 5.306838495091801, - "c3": 4.102684935791093, - "c4": 5.235881440802491, - "c5": 4.788145829259186, - "c6": 4.58356015706083, - "c7": 4.552387264453804 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -181068,23 +181068,23 @@ "year": 1763, "resistanceReported": false, "duration": 44409600, - "curveSeeds": { - "c1": 17.1437991667104, - "c2": 51.62926065803378, - "c3": 33.21057148035283, - "c4": -53.97230826417646, - "c5": -31.776551875507266, - "c6": 28.172238823644598, - "c7": 35.318448015439294 + "points": { + "c1": -41.275977705055084, + "c2": 31.979209856704152, + "c3": -16.730048536589386, + "c4": 50.122763350397186, + "c5": 32.70343545998856, + "c6": 52.166090273548356, + "c7": -32.85226687388123 }, - "vertexSeeds": { - "c1": 2.868313557464135, - "c2": 2.6050405554115468, - "c3": 2.6529456744456605, - "c4": 2.742912731872831, - "c5": 2.830781323940669, - "c6": 2.589384045039737, - "c7": 2.729857126397665 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194176, + "c3": 3.559870550161816, + "c4": 2.847896440129449, + "c5": 2.135922330097088, + "c6": 1.4239482200647275, + "c7": 0.7119741100323606 }, "rgb": [238, 201, 159] }, @@ -181095,23 +181095,23 @@ "year": 1763, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 22.91381684495682, - "c2": -20.091534469037008, - "c3": 23.065057710198502, - "c4": -3.94967501019061, - "c5": 5.406657908597232, - "c6": 29.289073903401118, - "c7": -25.03356981424107 + "points": { + "c1": -25.70901003964402, + "c2": 31.374710187426288, + "c3": -1.868007128868694, + "c4": 5.488635551497438, + "c5": -4.339303202703398, + "c6": 2.574904830502277, + "c7": -9.315616417199976 }, - "vertexSeeds": { - "c1": 7.174634629233303, - "c2": 6.99095800959533, - "c3": 6.9306841755643775, - "c4": 6.79979997454691, - "c5": 7.140811628801415, - "c6": 7.0494192504652595, - "c7": 7.089047461267361 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083226, + "c3": 8.668515950069336, + "c4": 6.9348127600554745, + "c5": 5.201109570041613, + "c6": 3.467406380027724, + "c7": 1.733703190013862 }, "rgb": [238, 201, 159] }, @@ -181122,23 +181122,23 @@ "year": 1763, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -19.319642218274414, - "c2": 16.341569735662326, - "c3": 26.65124573311376, - "c4": 6.203908024873662, - "c5": 21.84263692261726, - "c6": 26.615570572654413, - "c7": 31.213093288151804 + "points": { + "c1": -24.486337808248848, + "c2": -0.3129730425381254, + "c3": -33.008994093672634, + "c4": -29.603278139405695, + "c5": 6.109289461177774, + "c6": 36.402725411847506, + "c7": -16.55937225359728 }, - "vertexSeeds": { - "c1": 9.441064845964949, - "c2": 9.348831760496736, - "c3": 9.818715397071292, - "c4": 9.954269887832345, - "c5": 9.478019209953615, - "c6": 9.820306811648006, - "c7": 9.620352601533922 + "offsets": { + "c1": 16.666666666666664, + "c2": 14.285714285714269, + "c3": 11.9047619047619, + "c4": 9.52380952380953, + "c5": 7.142857142857134, + "c6": 4.761904761904737, + "c7": 2.3809523809523685 }, "rgb": [58, 15, 49] }, @@ -181149,23 +181149,23 @@ "year": 1763, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 30.73365341911368, - "c2": -7.648145589421745, - "c3": -20.37467449407906, - "c4": -38.58011354279465, - "c5": 32.37250188394678, - "c6": 8.34800769080043, - "c7": -12.50849916639832 + "points": { + "c1": 35.861772527930185, + "c2": -36.94482424022762, + "c3": 28.813903312238622, + "c4": 25.916326944722115, + "c5": 17.831218148962122, + "c6": 5.518607635335989, + "c7": -33.835147754435845 }, - "vertexSeeds": { - "c1": 6.712922626046987, - "c2": 6.350751222451423, - "c3": 5.961634853963839, - "c4": 5.576557123785551, - "c5": 6.743846252271297, - "c6": 5.570320351301118, - "c7": 6.512537566400022 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -181176,23 +181176,23 @@ "year": 1763, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -9.866883512008606, - "c2": -15.760180655834796, - "c3": -17.145870961566015, - "c4": 14.695323330606758, - "c5": 3.3374365079195023, - "c6": -20.65022764650314, - "c7": 3.4642492919910843 + "points": { + "c1": -2.937154653323301, + "c2": 7.56593225823017, + "c3": -24.762882095091236, + "c4": 29.399388462497285, + "c5": -29.05752784911535, + "c6": -28.60171161200727, + "c7": 9.871575138327543 }, - "vertexSeeds": { - "c1": 2.6497403458271678, - "c2": 2.5809493315449163, - "c3": 2.794730956593755, - "c4": 2.6890262677849175, - "c5": 2.690428201572574, - "c6": 2.493078313916419, - "c7": 2.450990511714773 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -181203,23 +181203,23 @@ "year": 1763, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 27.507104422404836, - "c2": 2.0283181430082067, - "c3": -7.3382286892161055, - "c4": -0.029882373326692857, - "c5": 15.62517208284602, - "c6": 27.95140877259717, - "c7": 22.5303615391459 + "points": { + "c1": 15.508309613262277, + "c2": 31.28413143450404, + "c3": 2.6847820911920905, + "c4": 24.687346964209055, + "c5": -37.26452018775172, + "c6": -12.472695373604175, + "c7": -21.9916068780837 }, - "vertexSeeds": { - "c1": 1.925264804191537, - "c2": 1.7769757587976234, - "c3": 1.9751241544722502, - "c4": 1.8359705081567712, - "c5": 1.7420978941335352, - "c6": 1.987623956701984, - "c7": 1.9527296395576461 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635234, + "c3": 2.4503005085529366, + "c4": 1.9602404068423471, + "c5": 1.4701803051317603, + "c6": 0.9801202034211736, + "c7": 0.4900601017105868 }, "rgb": [86, 146, 138] }, @@ -181230,23 +181230,23 @@ "year": 1763, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": 33.42452758800666, - "c2": -6.290902086976075, - "c3": 26.853690630486362, - "c4": 29.867664989791457, - "c5": -37.448514818546414, - "c6": -23.662917371005562, - "c7": -54.98320823517748 + "points": { + "c1": -21.610416889802146, + "c2": -58.64992268239004, + "c3": 18.01296575371783, + "c4": -16.324587450519623, + "c5": -42.731182438074626, + "c6": 3.4792663594072977, + "c7": 26.419350643601426 }, - "vertexSeeds": { - "c1": 5.011658099272639, - "c2": 5.303055592339925, - "c3": 5.487387123376266, - "c4": 4.690779706463021, - "c5": 5.082881828704609, - "c6": 4.659367600205432, - "c7": 5.359226326443909 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785015, + "c3": 6.7730004623208515, + "c4": 5.418400369856678, + "c5": 4.063800277392513, + "c6": 2.709200184928339, + "c7": 1.3546000924641695 }, "rgb": [58, 15, 49] }, @@ -181257,23 +181257,23 @@ "year": 1763, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -8.445447635735675, - "c2": 17.230739535650592, - "c3": -21.19740689683023, - "c4": -13.39688184957522, - "c5": -32.07882917777514, - "c6": -32.424908073813846, - "c7": 32.555364132613335 + "points": { + "c1": -15.60783640967814, + "c2": -24.806347354159726, + "c3": 0.545200083728318, + "c4": -9.699082405682098, + "c5": 2.256261838797954, + "c6": -32.36676479369628, + "c7": 1.276919078414629 }, - "vertexSeeds": { - "c1": 6.382041415685549, - "c2": 6.365742482430516, - "c3": 5.988859738475432, - "c4": 6.625805940416945, - "c5": 6.2108635191099495, - "c6": 6.030519528190427, - "c7": 5.709641627117196 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -181284,23 +181284,23 @@ "year": 1763, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 14.542220574672601, - "c2": 22.149801577407256, - "c3": -23.56045002598891, - "c4": 3.613240862776241, - "c5": 9.469371930130503, - "c6": -28.805246376814605, - "c7": 23.284670939270296 + "points": { + "c1": 28.059131181142366, + "c2": 13.949819117166715, + "c3": 19.733955013477125, + "c4": 30.76173816338554, + "c5": 24.620568826738914, + "c6": 7.537809583315973, + "c7": -30.67049029253495 }, - "vertexSeeds": { - "c1": 5.758934896517834, - "c2": 5.582306471762329, - "c3": 5.8252228294227, - "c4": 5.801260414486911, - "c5": 5.782023621187608, - "c6": 5.46403482079497, - "c7": 5.318425323859635 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227455, + "c3": 7.027276930189554, + "c4": 5.621821544151636, + "c5": 4.216366158113736, + "c6": 2.810910772075818, + "c7": 1.4054553860379173 }, "rgb": [58, 15, 49] }, @@ -181311,23 +181311,23 @@ "year": 1763, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -20.946697741419634, - "c2": 11.847307331279275, - "c3": 10.987984168023424, - "c4": -24.13707900045328, - "c5": -3.1209569746243595, - "c6": 5.7861864848829185, - "c7": -13.688416495057544 + "points": { + "c1": -12.365203078684523, + "c2": 12.949114967049752, + "c3": -20.114817433506804, + "c4": -27.964506873804773, + "c5": 20.265168166858196, + "c6": 23.01731665919167, + "c7": -8.660038511120721 }, - "vertexSeeds": { - "c1": 4.921475059657333, - "c2": 4.756181532190586, - "c3": 4.961397398643006, - "c4": 4.989359043152768, - "c5": 4.71762533323506, - "c6": 5.11544113951512, - "c7": 5.165125029753763 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141469, + "c3": 6.403143781784556, + "c4": 5.122515025427645, + "c5": 3.841886269070738, + "c6": 2.561257512713825, + "c7": 1.2806287563569125 }, "rgb": [86, 146, 138] }, @@ -181338,23 +181338,23 @@ "year": 1763, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 7.026384083846416, - "c2": 19.788584364956193, - "c3": 28.479638934607358, - "c4": 13.020229880109405, - "c5": -34.78762479602455, - "c6": -11.189314962704398, - "c7": 1.682109216967369 + "points": { + "c1": 2.5493383489961445, + "c2": -27.300325398026494, + "c3": 19.98242470737504, + "c4": 22.52953581285483, + "c5": -3.2127362330279183, + "c6": 7.0244964144707325, + "c7": 33.29272376251813 }, - "vertexSeeds": { - "c1": 3.880683541381948, - "c2": 3.933574391762903, - "c3": 3.8987033966821714, - "c4": 3.8938665197664455, - "c5": 3.929142396003403, - "c6": 3.8823012210067653, - "c7": 3.927090058939884 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205251, + "c3": 4.715672676837732, + "c4": 3.772538141470167, + "c5": 2.829403606102649, + "c6": 1.8862690707350835, + "c7": 0.9431345353675653 }, "rgb": [77, 76, 132] }, @@ -181365,23 +181365,23 @@ "year": 1763, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -8.914508854802119, - "c2": 18.67356457508427, - "c3": -7.053518023657077, - "c4": -31.67836003981994, - "c5": -15.623248846018186, - "c6": -19.526945129044474, - "c7": 19.400754745245642 + "points": { + "c1": 2.158423523485169, + "c2": 0.5179467867325087, + "c3": 22.253111248961147, + "c4": -18.75465593169012, + "c5": 12.579114120734275, + "c6": 13.38629499323816, + "c7": 1.4808216516966297 }, - "vertexSeeds": { - "c1": 4.3988521649604175, - "c2": 4.433422052155, - "c3": 4.477789997633431, - "c4": 4.329209798975376, - "c5": 4.476384755362492, - "c6": 4.557436164177188, - "c7": 4.436880121387398 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244145, + "c6": 2.03421174294961, + "c7": 1.017105871474805 }, "rgb": [86, 146, 138] }, @@ -181392,23 +181392,23 @@ "year": 1763, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 11.00992304943324, - "c2": 16.668597915726515, - "c3": 3.0402269177462102, - "c4": 15.777072982283542, - "c5": -20.260101093276916, - "c6": -7.006240032708735, - "c7": -2.1977427013868436 + "points": { + "c1": -14.155552473838021, + "c2": 29.937774868578927, + "c3": 7.613403814334909, + "c4": 2.1127462206328573, + "c5": 12.822094517528832, + "c6": -21.396992276871302, + "c7": 24.24740157265449 }, - "vertexSeeds": { - "c1": 5.1680501230515015, - "c2": 5.690356971962547, - "c3": 5.692117196187673, - "c4": 5.108232917769882, - "c5": 5.375411888487684, - "c6": 5.207760466291348, - "c7": 5.827484508411741 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [86, 146, 138] }, @@ -181419,23 +181419,23 @@ "year": 1763, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 18.238724605967782, - "c2": 13.856567711399023, - "c3": 15.504559812986749, - "c4": 1.9729779739763877, - "c5": -12.907405817929332, - "c6": -9.661907639307007, - "c7": 5.088574721574059 + "points": { + "c1": -17.84057101685002, + "c2": 21.222718359012326, + "c3": -3.3763168119820115, + "c4": 21.63322740388808, + "c5": 4.527418239821699, + "c6": -6.151488154525165, + "c7": -0.6832146518024942 }, - "vertexSeeds": { - "c1": 3.5759388597736512, - "c2": 3.3965138104596164, - "c3": 3.4973989025451564, - "c4": 3.675501530032073, - "c5": 3.728451841386461, - "c6": 3.719355026331243, - "c7": 3.602708266510343 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703649, + "c4": 3.698566805362921, + "c5": 2.773925104022192, + "c6": 1.8492834026814635, + "c7": 0.9246417013407288 }, "rgb": [58, 15, 49] }, @@ -181446,23 +181446,23 @@ "year": 1763, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -5.4445260230819095, - "c2": 26.148287919380312, - "c3": -8.245483210013294, - "c4": 26.17884137904348, - "c5": -1.314199979819854, - "c6": 18.134753290664033, - "c7": -12.548933577766325 + "points": { + "c1": -17.906943614095642, + "c2": -17.640823834164177, + "c3": 9.36225306565218, + "c4": -4.775451527709112, + "c5": 2.6580233744530624, + "c6": -11.83943014777168, + "c7": -27.653420794184864 }, - "vertexSeeds": { - "c1": 9.05504854321358, - "c2": 8.440665219404943, - "c3": 8.460981656103002, - "c4": 8.583849526091063, - "c5": 8.294183723084478, - "c6": 8.42390215606432, - "c7": 8.737941821421078 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.25936199722608, + "c3": 11.049468331021727, + "c4": 8.839574664817386, + "c5": 6.6296809986130345, + "c6": 4.419787332408693, + "c7": 2.209893666204341 }, "rgb": [58, 15, 49] }, @@ -181473,23 +181473,23 @@ "year": 1763, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 22.136711907845196, - "c2": 3.5543587888662174, - "c3": 33.35993914542715, - "c4": -12.524702009340597, - "c5": 7.715347072573714, - "c6": -26.989224296172992, - "c7": 24.98421920112625 + "points": { + "c1": 7.881518420954144, + "c2": 17.966126641946907, + "c3": 36.45134745563712, + "c4": 14.578576426574806, + "c5": 15.644322706821718, + "c6": 39.30327311686257, + "c7": -34.49859143843458 }, - "vertexSeeds": { - "c1": 7.944501226049202, - "c2": 7.949488392423846, - "c3": 7.956113062943933, - "c4": 7.8966825320472305, - "c5": 7.973712590411757, - "c6": 7.917265561982441, - "c7": 7.97874302492967 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611704, + "c3": 9.546925566343024, + "c4": 7.63754045307447, + "c5": 5.728155339805789, + "c6": 3.818770226537235, + "c7": 1.9093851132686805 }, "rgb": [86, 146, 138] }, @@ -181500,23 +181500,23 @@ "year": 1763, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 39.090660005974094, - "c2": -10.85533213098983, - "c3": -35.857301193921764, - "c4": -13.847450870844085, - "c5": 20.562409900098352, - "c6": 38.63212389284595, - "c7": 34.23575269589181 + "points": { + "c1": -21.296005672491095, + "c2": -4.663532997121685, + "c3": -37.63350929448412, + "c4": 30.46333426790121, + "c5": 41.5842494292551, + "c6": -31.185912946008035, + "c7": -22.64406053892811 }, - "vertexSeeds": { - "c1": 5.489067090606718, - "c2": 5.802582255338158, - "c3": 5.127655826235677, - "c4": 5.575434525520583, - "c5": 5.827986499944456, - "c6": 5.8830841341940365, - "c7": 5.884718915117892 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227458, + "c3": 7.027276930189545, + "c4": 5.6218215441516435, + "c5": 4.216366158113729, + "c6": 2.810910772075815, + "c7": 1.4054553860379144 }, "rgb": [77, 76, 132] }, @@ -181527,23 +181527,23 @@ "year": 1764, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": -19.202056515796528, - "c2": 7.108466150635039, - "c3": 52.10871289849206, - "c4": 15.519794347222785, - "c5": 27.483299143696883, - "c6": 31.050333398827277, - "c7": -56.333215544686574 + "points": { + "c1": -27.73738207296602, + "c2": 39.28201027501402, + "c3": 55.37017573647957, + "c4": 53.37325473386667, + "c5": -13.72945139614881, + "c6": 35.36376967508154, + "c7": 45.07657164123255 }, - "vertexSeeds": { - "c1": 3.2331256028634665, - "c2": 3.0752345195524535, - "c3": 2.9209586793897397, - "c4": 3.2479218885544694, - "c5": 2.9781628252804686, - "c6": 3.1564083636870905, - "c7": 3.095250051275158 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -181554,23 +181554,23 @@ "year": 1763, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -6.833560319198835, - "c2": 6.760450389441431, - "c3": -2.2755372144772252, - "c4": -3.9172755474204273, - "c5": 7.742347723063936, - "c6": -15.003304282530973, - "c7": -32.36836493723932 + "points": { + "c1": 9.453027994482511, + "c2": -30.712823086847177, + "c3": 29.694501767911447, + "c4": -24.238912482920526, + "c5": -20.00647309953954, + "c6": 18.099023503294646, + "c7": -33.45224195892655 }, - "vertexSeeds": { - "c1": 6.870125703023847, - "c2": 7.7880505875541335, - "c3": 6.784724152516796, - "c4": 7.758900592367345, - "c5": 7.926103402984013, - "c6": 8.044545602658902, - "c7": 6.540520749371053 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576976, + "c3": 10.101710587147478, + "c4": 8.081368469717981, + "c5": 6.061026352288484, + "c6": 4.040684234858986, + "c7": 2.0203421174294895 }, "rgb": [58, 15, 49] }, @@ -181581,23 +181581,23 @@ "year": 1763, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 20.121219864018233, - "c2": -26.456636863923816, - "c3": -26.552982739489416, - "c4": -2.371541834639725, - "c5": 23.585329200939352, - "c6": 28.253778180148817, - "c7": 6.555634120908682 + "points": { + "c1": -15.944131933498188, + "c2": -6.949058564110981, + "c3": -14.57902188281215, + "c4": -20.549554292614715, + "c5": 5.490570552019207, + "c6": -19.3459706132015, + "c7": 2.5523700747781604 }, - "vertexSeeds": { - "c1": 4.194045289533108, - "c2": 4.859011569019919, - "c3": 4.740436731629961, - "c4": 4.471320934030186, - "c5": 4.15151646432357, - "c6": 4.776611208205107, - "c7": 4.9188349382628775 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -181608,23 +181608,23 @@ "year": 1763, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 25.70947026814227, - "c2": 15.663593849814582, - "c3": -24.33152201773641, - "c4": -17.757581607244468, - "c5": -11.299614104259486, - "c6": 0.8767287263732797, - "c7": -17.668700635713215 + "points": { + "c1": -14.133085623057223, + "c2": -21.145603264831955, + "c3": -23.44043954210798, + "c4": -9.436361734825123, + "c5": 30.51310440184116, + "c6": 2.9232543309058556, + "c7": 31.922108599267247 }, - "vertexSeeds": { - "c1": 4.855916645132013, - "c2": 4.724403284365515, - "c3": 4.913485814393798, - "c4": 4.627833706259322, - "c5": 4.26944730834926, - "c6": 5.140297176173069, - "c7": 4.144923926595781 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -181635,23 +181635,23 @@ "year": 1763, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -36.859360128884575, - "c2": -15.760282471844178, - "c3": -22.857299924069743, - "c4": -30.14799777668918, - "c5": -3.2385339577711605, - "c6": 6.8491552359447425, - "c7": -23.130705348172786 + "points": { + "c1": -17.76411002529796, + "c2": 37.67574063013406, + "c3": 2.0819933098974985, + "c4": -10.76121982094039, + "c5": -18.275443776576275, + "c6": -0.9567159350934702, + "c7": 0.38117754328244047 }, - "vertexSeeds": { - "c1": 8.178191352553661, - "c2": 7.393221941651854, - "c3": 8.576417096395883, - "c4": 7.7690572361943495, - "c5": 7.7839370973221556, - "c6": 8.36819566081427, - "c7": 7.224034370144893 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.56588072122053, + "c3": 10.47156726768378, + "c4": 8.377253814147016, + "c5": 6.282940360610265, + "c6": 4.188626907073514, + "c7": 2.094313453536752 }, "rgb": [238, 201, 159] }, @@ -181662,23 +181662,23 @@ "year": 1763, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 9.521229844537775, - "c2": -12.54508669720504, - "c3": -1.1417827652597978, - "c4": -10.874300705885673, - "c5": -26.695284383145346, - "c6": 19.183299013465135, - "c7": 15.456809702184227 + "points": { + "c1": -16.047855030799475, + "c2": 11.590924275103145, + "c3": -28.274962448085994, + "c4": -9.036473585838198, + "c5": 26.859322430461024, + "c6": -3.812547934621474, + "c7": -13.49428591467835 }, - "vertexSeeds": { - "c1": 6.233805350680121, - "c2": 6.785151999447436, - "c3": 5.972537914790721, - "c4": 6.979296499704925, - "c5": 6.725470498478014, - "c6": 6.250781354104345, - "c7": 6.454605057752891 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.15256588072122, + "c3": 8.460471567267682, + "c4": 6.768377253814153, + "c5": 5.076282940360614, + "c6": 3.3841886269070764, + "c7": 1.6920943134535382 }, "rgb": [58, 15, 49] }, @@ -181689,23 +181689,23 @@ "year": 1763, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 10.139042184044683, - "c2": 12.019277306309839, - "c3": 3.512314899134786, - "c4": -17.479106334049252, - "c5": 2.0854161840273377, - "c6": 27.897500180395383, - "c7": -24.431552617832416 + "points": { + "c1": -37.900205499237046, + "c2": -36.237868829160206, + "c3": 37.865534937760884, + "c4": -29.331689952438943, + "c5": 12.754823804258677, + "c6": 33.78015615476272, + "c7": -23.999997981864105 }, - "vertexSeeds": { - "c1": 1.8027560336843576, - "c2": 1.965086774817249, - "c3": 1.980562402852191, - "c4": 1.9622843246131596, - "c5": 1.8297539958818336, - "c6": 1.871168217601354, - "c7": 1.810700063986996 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142859, + "c3": 2.3809523809523805, + "c4": 1.9047619047619058, + "c5": 1.4285714285714275, + "c6": 0.9523809523809529, + "c7": 0.4761904761904785 }, "rgb": [86, 146, 138] }, @@ -181716,23 +181716,23 @@ "year": 1763, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 16.48284344913767, - "c2": -10.64832172268003, - "c3": 9.379138155293994, - "c4": 6.820651383232615, - "c5": 19.590205692716623, - "c6": 1.7929143942895287, - "c7": -0.15543167158129378 + "points": { + "c1": 16.315441988589484, + "c2": 20.284223742354705, + "c3": 18.175609973654737, + "c4": -17.05053318233788, + "c5": -11.846669262986087, + "c6": 9.719848133582303, + "c7": -2.0870391408730917 }, - "vertexSeeds": { - "c1": 8.368172017478042, - "c2": 8.280018587309064, - "c3": 8.280018136481006, - "c4": 7.198512235646808, - "c5": 7.861678653923629, - "c6": 8.080711800406377, - "c7": 8.416170424962628 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737866, + "c3": 10.194174757281557, + "c4": 8.155339805825246, + "c5": 6.1165048543689275, + "c6": 4.077669902912619, + "c7": 2.0388349514563093 }, "rgb": [77, 76, 132] }, @@ -181743,23 +181743,23 @@ "year": 1763, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -13.9886241685088, - "c2": -16.45694143587184, - "c3": 8.005298739993158, - "c4": 8.911360526617813, - "c5": 26.822928055569314, - "c6": 1.1422957189949088, - "c7": 40.7330635103337 + "points": { + "c1": -42.85758497409649, + "c2": 3.1889657928148836, + "c3": 36.70843971438649, + "c4": 16.55575405233231, + "c5": -37.10163342622687, + "c6": -13.274746426076693, + "c7": -43.02412117435848 }, - "vertexSeeds": { - "c1": 4.655202626362833, - "c2": 4.699178146036598, - "c3": 5.228667080889691, - "c4": 4.846214532819494, - "c5": 5.167464456252035, - "c6": 4.635409923689207, - "c7": 4.697232484342707 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -181770,23 +181770,23 @@ "year": 1763, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": 3.080615387079952, - "c2": 12.734248066773862, - "c3": -4.9994947811597825, - "c4": -11.25405184846968, - "c5": 3.411759549575919, - "c6": -17.537156889639, - "c7": -2.236511319258973 + "points": { + "c1": 16.350254728528366, + "c2": -2.2400075954903365, + "c3": 17.92640734315037, + "c4": 20.35011735074323, + "c5": -12.436505878511431, + "c6": 20.07464173267515, + "c7": 19.3009424931908 }, - "vertexSeeds": { - "c1": 4.219759636873528, - "c2": 4.472695784641138, - "c3": 4.576161693380343, - "c4": 4.084088226055306, - "c5": 4.833689999653869, - "c6": 4.430782733444418, - "c7": 4.06876768930785 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [58, 15, 49] }, @@ -181797,23 +181797,23 @@ "year": 1763, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 36.0983042582655, - "c2": -29.984596031714027, - "c3": -6.987961914376921, - "c4": -19.128160892943, - "c5": -3.633871305178083, - "c6": -23.223922264520848, - "c7": 37.3863502424267 + "points": { + "c1": -32.269340623816824, + "c2": -26.948355968807782, + "c3": -4.447862760938818, + "c4": -19.119639003862815, + "c5": -18.582332592552895, + "c6": 9.739617918453618, + "c7": -20.99218708293614 }, - "vertexSeeds": { - "c1": 1.7378938862716338, - "c2": 1.8560381103903647, - "c3": 1.8347359679289688, - "c4": 1.8736397656057118, - "c5": 1.9186529287430667, - "c6": 1.9157157828668956, - "c7": 1.7821970947775692 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619972, + "c3": 2.0804438280166435, + "c4": 1.6643550624133148, + "c5": 1.248266296809986, + "c6": 0.8321775312066574, + "c7": 0.4160887656033287 }, "rgb": [77, 76, 132] }, @@ -181824,23 +181824,23 @@ "year": 1763, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 4.141641196876208, - "c2": -6.8247413830607755, - "c3": 32.91842247537147, - "c4": 21.12483560950494, - "c5": -34.680828660040554, - "c6": -23.18550295355049, - "c7": 15.819781137914305 + "points": { + "c1": 9.248393734261889, + "c2": -14.986429713948699, + "c3": -21.306896806956583, + "c4": -36.531789054496784, + "c5": 21.471744365476816, + "c6": -7.389112375396586, + "c7": -21.023543048842814 }, - "vertexSeeds": { - "c1": 5.3685847324259806, - "c2": 5.762219558320062, - "c3": 5.509312175147996, - "c4": 5.733295687792934, - "c5": 5.350870801196916, - "c6": 5.471053679902613, - "c7": 5.801913191836037 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066567, + "c3": 6.93481276005548, + "c4": 5.547850208044378, + "c5": 4.160887656033292, + "c6": 2.773925104022189, + "c7": 1.386962552011103 }, "rgb": [77, 76, 132] }, @@ -181851,23 +181851,23 @@ "year": 1764, "resistanceReported": false, "duration": 51753600, - "curveSeeds": { - "c1": -26.85071167863898, - "c2": 8.816225866183075, - "c3": 54.055713945066515, - "c4": 22.935624130256315, - "c5": 59.97128496107942, - "c6": -53.641458853244984, - "c7": 38.97301209656442 + "points": { + "c1": 37.67991002882901, + "c2": 5.254322185553519, + "c3": -66.6360981173971, + "c4": -23.519488006694523, + "c5": -59.22955434646829, + "c6": -53.78268656217154, + "c7": 54.04792755274076 }, - "vertexSeeds": { - "c1": 2.9496317165965293, - "c2": 3.179419914215676, - "c3": 3.1348997522379, - "c4": 2.9238524176502967, - "c5": 2.9961471894694918, - "c6": 3.264152090987035, - "c7": 3.257251347043845 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -181878,23 +181878,23 @@ "year": 1763, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -18.223461158204596, - "c2": -0.9133594696934679, - "c3": -3.7536409044090178, - "c4": 2.3346488399354186, - "c5": -29.28936796254445, - "c6": 29.011659193207308, - "c7": -12.90327807544396 + "points": { + "c1": 8.610876817473759, + "c2": -25.056852977142555, + "c3": -7.841790124642863, + "c4": 21.447251464497505, + "c5": -23.55125259192704, + "c6": 3.2326208623954003, + "c7": 23.955632379624646 }, - "vertexSeeds": { - "c1": 3.433044013626849, - "c2": 3.501145864590047, - "c3": 3.47825558297718, - "c4": 3.4510417466200463, - "c5": 3.4304137840281066, - "c6": 3.509633624184035, - "c7": 3.486907712051509 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320379, + "c3": 4.207119741100338, + "c4": 3.3656957928802638, + "c5": 2.5242718446601895, + "c6": 1.682847896440115, + "c7": 0.8414239482200743 }, "rgb": [222, 0, 59] }, @@ -181905,23 +181905,23 @@ "year": 1763, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": -18.12597867502162, - "c2": 45.986906393400865, - "c3": -12.660020409516903, - "c4": -31.714961831468948, - "c5": -42.75865616171082, - "c6": -13.335676334610014, - "c7": 7.089444355376948 + "points": { + "c1": 22.187547673236942, + "c2": -42.96754090874301, + "c3": 29.939966300008855, + "c4": -7.561999725541888, + "c5": -2.52944421799166, + "c6": 45.968586916220026, + "c7": 2.236878547298737 }, - "vertexSeeds": { - "c1": 3.6076330171505195, - "c2": 3.5302517577668584, - "c3": 3.6032185690355285, - "c4": 3.7678712693471215, - "c5": 3.9129645041225167, - "c6": 4.017983702778484, - "c7": 3.5459188168164397 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [77, 76, 132] }, @@ -181932,23 +181932,23 @@ "year": 1763, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 5.756217676941134, - "c2": -34.34894279194804, - "c3": 30.198243618309647, - "c4": -14.438293383347045, - "c5": -31.016677141408355, - "c6": 3.1975173481690646, - "c7": -20.917771573658094 + "points": { + "c1": -29.760948830389843, + "c2": -28.975850874148083, + "c3": -38.47075371644235, + "c4": -32.70190130881436, + "c5": -9.931077283909492, + "c6": -33.86290853895517, + "c7": -36.626653500457145 }, - "vertexSeeds": { - "c1": 8.311274819503335, - "c2": 8.723388003828457, - "c3": 8.162621082296774, - "c4": 8.174722725338249, - "c5": 8.550616164068744, - "c6": 8.503368387352177, - "c7": 8.71549586825693 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099865, + "c3": 10.402219140083226, + "c4": 8.321775312066558, + "c5": 6.241331484049918, + "c6": 4.160887656033279, + "c7": 2.0804438280166395 }, "rgb": [86, 146, 138] }, @@ -181959,23 +181959,23 @@ "year": 1763, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 16.290161065210803, - "c2": 12.269322031571043, - "c3": -2.1687693770493155, - "c4": 8.757222929585318, - "c5": -8.509919135572982, - "c6": 10.3126069089585, - "c7": 20.32856421557193 + "points": { + "c1": -4.319408748494936, + "c2": -8.132682650550024, + "c3": 23.662661765050785, + "c4": 18.44303149715458, + "c5": -24.92249465175813, + "c6": -29.730715474386454, + "c7": -3.0188943220151643 }, - "vertexSeeds": { - "c1": 5.579672885102416, - "c2": 4.931193532692628, - "c3": 5.684169191348179, - "c4": 5.48569148047908, - "c5": 4.932840209796119, - "c6": 5.336552963911788, - "c7": 5.090471127453156 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.15533980582525, + "c3": 6.796116504854369, + "c4": 5.436893203883488, + "c5": 4.07766990291262, + "c6": 2.718446601941754, + "c7": 1.3592233009708736 }, "rgb": [222, 0, 59] }, @@ -181986,23 +181986,23 @@ "year": 1763, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -23.97061116980118, - "c2": 24.55573587225726, - "c3": -16.179949234778775, - "c4": 26.2568906153963, - "c5": -31.316992606198024, - "c6": -28.785704787917297, - "c7": -6.969054518194177 + "points": { + "c1": 17.552426611422916, + "c2": 23.090373491487632, + "c3": -7.658561058356973, + "c4": -1.1079272039198784, + "c5": -8.491187501705667, + "c6": 17.781670751417757, + "c7": -28.011173428095677 }, - "vertexSeeds": { - "c1": 4.017204672458927, - "c2": 3.8069880010299033, - "c3": 4.029436009388035, - "c4": 3.905567343643384, - "c5": 3.6679056004973805, - "c6": 4.0267776224035385, - "c7": 4.061536812830429 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768378, + "c3": 5.039297272306982, + "c4": 4.031437817845587, + "c5": 3.023578363384192, + "c6": 2.0157189089227967, + "c7": 1.0078594544614017 }, "rgb": [77, 76, 132] }, @@ -182013,23 +182013,23 @@ "year": 1763, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -18.08691376478495, - "c2": -22.605979824330568, - "c3": 25.6771894941863, - "c4": 8.55101462695989, - "c5": 23.641310878601416, - "c6": 1.775932965070659, - "c7": -9.276570553724746 + "points": { + "c1": -27.9798081762315, + "c2": -11.12831476406802, + "c3": 25.16052195885444, + "c4": 20.669692860128123, + "c5": -0.3525167006864436, + "c6": -25.344699493749523, + "c7": -24.579296657162487 }, - "vertexSeeds": { - "c1": 1.7572874147274433, - "c2": 1.8007029845116302, - "c3": 1.5995633298523284, - "c4": 1.8007059495452589, - "c5": 1.8306695653258445, - "c6": 1.6860420469839457, - "c7": 1.7355319563602347 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.662968099861303, + "c3": 2.2191400832177526, + "c4": 1.7753120665742013, + "c5": 1.3314840499306502, + "c6": 0.8876560332871021, + "c7": 0.44382801664354826 }, "rgb": [238, 201, 159] }, @@ -182040,23 +182040,23 @@ "year": 1763, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 28.8579795900135, - "c2": 4.482847683345604, - "c3": 21.626334680146726, - "c4": 26.044370876705706, - "c5": 28.921217444237243, - "c6": -8.996366048119182, - "c7": 31.469751949974835 + "points": { + "c1": 19.13804858144944, + "c2": 29.4044227517648, + "c3": 24.792343578312796, + "c4": -4.387008475621897, + "c5": -0.6359069001092763, + "c6": -2.2686491490878353, + "c7": -17.75687631311243 }, - "vertexSeeds": { - "c1": 6.852771275890014, - "c2": 6.964948330520747, - "c3": 6.795157768840637, - "c4": 6.873792235494779, - "c5": 6.960929769240642, - "c6": 6.805460809288011, - "c7": 6.885098039942809 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447987, + "c3": 8.321775312066602, + "c4": 6.65742024965327, + "c5": 4.993065187239935, + "c6": 3.328710124826601, + "c7": 1.6643550624133339 }, "rgb": [58, 15, 49] }, @@ -182067,23 +182067,23 @@ "year": 1763, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 4.003502156113406, - "c2": -22.266836304026445, - "c3": -19.116815154169423, - "c4": -4.572529503449761, - "c5": 26.491824668992585, - "c6": -5.637386846290742, - "c7": 16.037472920023397 + "points": { + "c1": 13.05532005943283, + "c2": -12.159724701248102, + "c3": -0.70707286673208, + "c4": 5.872570283501851, + "c5": -15.461387166510479, + "c6": 20.71808470351334, + "c7": -26.08138466292825 }, - "vertexSeeds": { - "c1": 3.4434121489265217, - "c2": 3.315398099284617, - "c3": 3.6836218275610495, - "c4": 3.5648284920030444, - "c5": 3.703491591775519, - "c6": 3.815511168227772, - "c7": 3.748617575312851 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [77, 76, 132] }, @@ -182094,23 +182094,23 @@ "year": 1763, "resistanceReported": false, "duration": 6134400, - "curveSeeds": { - "c1": 5.500342550032226, - "c2": 16.11983598021282, - "c3": -14.961066386518617, - "c4": 16.030561233511726, - "c5": -8.149231136398479, - "c6": 7.26425916135722, - "c7": -3.9906884305537194 + "points": { + "c1": 13.41905605390177, + "c2": -12.468274786376146, + "c3": 15.107066312355947, + "c4": 17.73193778708707, + "c5": 5.0971443424883915, + "c6": -0.6556949711696056, + "c7": 11.711645880065866 }, - "vertexSeeds": { - "c1": 2.555738551310759, - "c2": 2.753512465959148, - "c3": 2.62064387948871, - "c4": 2.6567650830760283, - "c5": 2.5914838185447655, - "c6": 2.6162150553463133, - "c7": 2.763437062256686 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [238, 201, 159] }, @@ -182121,23 +182121,23 @@ "year": 1764, "resistanceReported": false, "duration": 44409600, - "curveSeeds": { - "c1": -8.83040952300827, - "c2": -16.024671551587723, - "c3": -10.552454369114933, - "c4": -46.7167067652323, - "c5": -6.6602422253310465, - "c6": 34.74516141736952, - "c7": 57.372863421230285 + "points": { + "c1": -60.05962175218606, + "c2": -1.2057572802274095, + "c3": -30.557468735116995, + "c4": -15.13044508171118, + "c5": 8.207344626341914, + "c6": -44.3595375881814, + "c7": 20.237822185753465 }, - "vertexSeeds": { - "c1": 6.32358238254259, - "c2": 6.130586327273412, - "c3": 6.4398290257921795, - "c4": 6.349407298570542, - "c5": 6.041577171504084, - "c6": 6.060230134698962, - "c7": 6.459599132195611 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996762, + "c4": 6.343042071197408, + "c5": 4.757281553398053, + "c6": 3.171521035598699, + "c7": 1.5857605177993441 }, "rgb": [238, 201, 159] }, @@ -182148,23 +182148,23 @@ "year": 1763, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 21.790313471754857, - "c2": 0.24980152318341453, - "c3": 18.869179453951013, - "c4": -36.18633511668694, - "c5": 21.464239609743544, - "c6": -33.38674437754526, - "c7": -6.174218480516423 + "points": { + "c1": 0.6969961057118326, + "c2": -13.634688232777616, + "c3": -25.272549461829318, + "c4": 24.20541546022848, + "c5": -2.9611631142430497, + "c6": 14.871626326045408, + "c7": 21.039129958732765 }, - "vertexSeeds": { - "c1": 2.8354776628656095, - "c2": 2.7199395895362737, - "c3": 2.592385313207797, - "c4": 2.565811456532386, - "c5": 2.81069649194941, - "c6": 2.6177140635666407, - "c7": 2.8031548939180673 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.3980582524271865, + "c4": 2.718446601941751, + "c5": 2.038834951456307, + "c6": 1.3592233009708714, + "c7": 0.6796116504854357 }, "rgb": [86, 146, 138] }, @@ -182175,23 +182175,23 @@ "year": 1763, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -26.70925757027779, - "c2": -7.229401107229247, - "c3": 24.231765452238825, - "c4": 7.917998311474342, - "c5": -25.504886084163036, - "c6": 29.940867792962052, - "c7": 29.090021787010315 + "points": { + "c1": -32.024461091522646, + "c2": 5.62839354363534, + "c3": -9.945560152255801, + "c4": 0.2211152786784396, + "c5": 10.284691920946251, + "c6": 8.813500482327889, + "c7": -1.7531321237711879 }, - "vertexSeeds": { - "c1": 5.704220339680209, - "c2": 5.547249309669724, - "c3": 5.2478169916687705, - "c4": 5.401498172641531, - "c5": 5.837604649820719, - "c6": 5.261489027004329, - "c7": 5.623735083174816 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [77, 76, 132] }, @@ -182202,23 +182202,23 @@ "year": 1763, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -9.435572280025422, - "c2": 4.525942024436464, - "c3": 2.7197472997046965, - "c4": -7.8286424162789965, - "c5": 1.3767748681686918, - "c6": -10.894933436754215, - "c7": -10.568672996086212 + "points": { + "c1": 17.311360581001576, + "c2": 14.174970210346341, + "c3": -8.336991451550832, + "c4": -12.340785721295294, + "c5": -2.5131176578303727, + "c6": -5.925372115614294, + "c7": -5.132257212631263 }, - "vertexSeeds": { - "c1": 7.969119435389544, - "c2": 7.708970486983429, - "c3": 7.901279324171889, - "c4": 7.983651854882908, - "c5": 7.882809333373672, - "c6": 7.5844572202608065, - "c7": 8.01207757333597 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651885, + "c3": 9.570041608876556, + "c4": 7.656033287101256, + "c5": 5.742024965325928, + "c6": 3.828016643550628, + "c7": 1.9140083217753283 }, "rgb": [77, 76, 132] }, @@ -182229,23 +182229,23 @@ "year": 1763, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -28.782800787296853, - "c2": 30.693866799441878, - "c3": 5.695629836536163, - "c4": -13.740480508086002, - "c5": 20.744709038805468, - "c6": -13.87767291606076, - "c7": 17.777359294383317 + "points": { + "c1": 20.922560710613794, + "c2": 3.0034597127663147, + "c3": 16.518955421858585, + "c4": -32.62009366815682, + "c5": 26.076919120998802, + "c6": -21.456553025265862, + "c7": 10.130174939516692 }, - "vertexSeeds": { - "c1": 2.7216563800315625, - "c2": 2.7846247432389246, - "c3": 2.9147306272207087, - "c4": 2.9051943361010606, - "c5": 2.882208576186232, - "c6": 2.772764051507872, - "c7": 2.9037892263476266 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194175, + "c3": 3.559870550161812, + "c4": 2.8478964401294498, + "c5": 2.1359223300970873, + "c6": 1.4239482200647249, + "c7": 0.7119741100323624 }, "rgb": [222, 0, 59] }, @@ -182256,23 +182256,23 @@ "year": 1763, "resistanceReported": false, "duration": 5011200, - "curveSeeds": { - "c1": -10.148689788491989, - "c2": 1.3020743012035734, - "c3": 7.1183813471403585, - "c4": -3.0399286489429116, - "c5": 6.984981407775697, - "c6": 1.2152150684791199, - "c7": 11.388308827752732 + "points": { + "c1": 6.607352624247461, + "c2": 6.161549912493175, + "c3": -16.167993929583957, + "c4": -7.99892935002805, + "c5": 2.0508132785823108, + "c6": -0.6601918707839367, + "c7": -3.8029399880723886 }, - "vertexSeeds": { - "c1": 2.0948463226115437, - "c2": 2.099374882562915, - "c3": 2.103209831131865, - "c4": 2.1137273867118513, - "c5": 2.083032383117609, - "c6": 2.0993044747692196, - "c7": 2.084232059508502 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144243994, + "c3": 2.5427646786870124, + "c4": 2.0342117429495996, + "c5": 1.5256588072122124, + "c6": 1.0171058714747998, + "c7": 0.5085529357373872 }, "rgb": [86, 146, 138] }, @@ -182283,23 +182283,23 @@ "year": 1763, "resistanceReported": false, "duration": 5011200, - "curveSeeds": { - "c1": -8.007759941355308, - "c2": -5.95789292164144, - "c3": -4.58373841542091, - "c4": 10.702243229477853, - "c5": -5.2100464990459034, - "c6": 2.0383976528317813, - "c7": -6.3041322360043885 + "points": { + "c1": 6.608975483978497, + "c2": 6.533079884687883, + "c3": -9.612632666055099, + "c4": 6.9788810842491635, + "c5": -4.9388453884842605, + "c6": -8.537588804783873, + "c7": -15.04649632933403 }, - "vertexSeeds": { - "c1": 1.5522010374213497, - "c2": 1.705132979351448, - "c3": 1.5991635796678099, - "c4": 1.685128488426591, - "c5": 1.698648284907614, - "c6": 1.5466923756064257, - "c7": 1.5877481962222535 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210815, + "c3": 2.1960240406842355, + "c4": 1.7568192325473881, + "c5": 1.3176144244105408, + "c6": 0.8784096162736951, + "c7": 0.43920480813684754 }, "rgb": [77, 76, 132] }, @@ -182310,23 +182310,23 @@ "year": 1763, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -34.001067149254624, - "c2": -7.064556312916004, - "c3": 42.87130468568719, - "c4": 35.97085684579403, - "c5": 1.2373474784263578, - "c6": -19.033718179614805, - "c7": 37.85704298838881 + "points": { + "c1": -20.033119823990447, + "c2": -26.17684282511702, + "c3": 19.412547773298158, + "c4": 37.48160734710633, + "c5": 6.982690443152968, + "c6": 19.703608740896513, + "c7": -14.057258587485109 }, - "vertexSeeds": { - "c1": 5.573342008772383, - "c2": 5.705938826255444, - "c3": 5.4277989074044175, - "c4": 6.237882244779793, - "c5": 6.28938556431081, - "c6": 5.831289149070007, - "c7": 5.636239929081213 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072123, + "c3": 7.5127138233934385, + "c4": 6.01017105871474, + "c5": 4.5076282940360555, + "c6": 3.00508552935737, + "c7": 1.502542764678685 }, "rgb": [222, 0, 59] }, @@ -182337,23 +182337,23 @@ "year": 1762, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 28.18843866801656, - "c2": 28.065048945542145, - "c3": -24.89798343156228, - "c4": -33.95301639853192, - "c5": 10.762410886655339, - "c6": 10.163332472284736, - "c7": -11.46347293950971 + "points": { + "c1": 10.993758080436244, + "c2": -4.787502354054062, + "c3": 8.817573502304953, + "c4": -7.3329421314671706, + "c5": 39.68935515359553, + "c6": 9.95718397805836, + "c7": 12.10244783206302 }, - "vertexSeeds": { - "c1": 4.0172602630172065, - "c2": 4.035626650356656, - "c3": 3.9668650155209066, - "c4": 3.823662159449718, - "c5": 3.75010726739476, - "c6": 3.809083104340347, - "c7": 3.78508565368873 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105874, + "c4": 3.920480813684701, + "c5": 2.940360610263528, + "c6": 1.9602404068423462, + "c7": 0.9801202034211813 }, "rgb": [77, 76, 132] }, @@ -182364,23 +182364,23 @@ "year": 1764, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": -10.802881087577667, - "c2": -1.955139795738205, - "c3": 47.66098887676191, - "c4": -4.82982676689042, - "c5": 4.152912483865023, - "c6": 22.36304963319065, - "c7": -44.692343812038345 + "points": { + "c1": 43.80627543627245, + "c2": -49.62994154911144, + "c3": -21.94056272819166, + "c4": 2.3371104298420136, + "c5": 20.013770530987152, + "c6": -21.592898225829476, + "c7": 35.0795664790378 }, - "vertexSeeds": { - "c1": 1.0519542717236694, - "c2": 1.1084891705939148, - "c3": 1.0606301395437445, - "c4": 1.0810420233121047, - "c5": 1.0716256141834077, - "c6": 1.0690303574993227, - "c7": 1.0566945670571835 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535373, + "c3": 1.4100785945446133, + "c4": 1.128062875635691, + "c5": 0.8460471567267687, + "c6": 0.5640314378178445, + "c7": 0.28201571890892224 }, "rgb": [222, 0, 59] }, @@ -182391,23 +182391,23 @@ "year": 1763, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -11.903890250110024, - "c2": 17.02296027241144, - "c3": -33.18761751950977, - "c4": -22.24534242849706, - "c5": 23.52131855354098, - "c6": 18.40670092234754, - "c7": 35.38555940886876 + "points": { + "c1": 29.79819348958287, + "c2": 40.30591569517978, + "c3": -15.99296356994883, + "c4": 41.194336919969714, + "c5": 17.754371187670124, + "c6": 24.098105453726617, + "c7": 16.83222343101246 }, - "vertexSeeds": { - "c1": 6.4864316472651105, - "c2": 6.455618006347753, - "c3": 6.362349300245462, - "c4": 6.677549608415173, - "c5": 6.177161508476972, - "c6": 6.170791712516725, - "c7": 6.626147341546014 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.62552011095701, + "c3": 8.021266759130835, + "c4": 6.417013407304674, + "c5": 4.812760055478497, + "c6": 3.208506703652337, + "c7": 1.6042533518261766 }, "rgb": [77, 76, 132] }, @@ -182418,23 +182418,23 @@ "year": 1763, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 21.140739748513823, - "c2": -3.244063539087641, - "c3": 36.73431575698784, - "c4": -26.22032007162355, - "c5": 4.488114569725788, - "c6": 40.844171921361436, - "c7": -26.152984179990025 + "points": { + "c1": 44.3227636032545, + "c2": 39.75320495771106, + "c3": -4.960606937035692, + "c4": 30.232513572802745, + "c5": 37.748369406190065, + "c6": 22.58605691180223, + "c7": 41.54719655505576 }, - "vertexSeeds": { - "c1": 5.610220484187906, - "c2": 6.400799668893736, - "c3": 6.519360206399381, - "c4": 5.772270541493387, - "c5": 5.498283823359663, - "c6": 6.303654514163983, - "c7": 5.9333180037378455 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.859454461396208, + "c4": 6.28756356911697, + "c5": 4.715672676837722, + "c6": 3.143781784558485, + "c7": 1.5718908922792372 }, "rgb": [77, 76, 132] }, @@ -182445,23 +182445,23 @@ "year": 1763, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -23.162690265840038, - "c2": -13.340271730022618, - "c3": -2.4756322078653525, - "c4": -24.97456442712066, - "c5": -5.195171239365845, - "c6": 12.805442613250058, - "c7": -31.005929046381034 + "points": { + "c1": -20.37271059903208, + "c2": 7.45158591543025, + "c3": 17.56696369606322, + "c4": -17.229061675456276, + "c5": -9.238428424988161, + "c6": 9.298261156913746, + "c7": 29.78739502922174 }, - "vertexSeeds": { - "c1": 9.927250587897456, - "c2": 11.029393164736863, - "c3": 9.93092973640705, - "c4": 9.375599388175095, - "c5": 9.766521753044303, - "c6": 9.346090720934056, - "c7": 10.118793060310356 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.088765603328707, + "c3": 13.407304669440586, + "c4": 10.725843735552486, + "c5": 8.044382801664364, + "c6": 5.362921867776243, + "c7": 2.6814609338881215 }, "rgb": [238, 201, 159] }, @@ -182472,23 +182472,23 @@ "year": 1763, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 18.32549057239433, - "c2": -9.327454171270848, - "c3": -2.9871041811840975, - "c4": -16.210496774778733, - "c5": 3.049328991306126, - "c6": -28.739184507132837, - "c7": -17.881075344171208 + "points": { + "c1": -23.125863075657957, + "c2": 4.34672683570809, + "c3": -8.316011566026443, + "c4": -2.2362955895390755, + "c5": -12.030715011237028, + "c6": 3.142134150432021, + "c7": -2.6278564147336994 }, - "vertexSeeds": { - "c1": 5.401930734471594, - "c2": 5.831371091380678, - "c3": 5.12046911523494, - "c4": 5.917205176544494, - "c5": 5.455844930917806, - "c6": 5.24973157095809, - "c7": 5.213712455691911 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457698, + "c3": 6.010171058714748, + "c4": 4.808136846971799, + "c5": 3.606102635228849, + "c6": 2.4040684234858993, + "c7": 1.2020342117429497 }, "rgb": [222, 0, 59] }, @@ -182499,23 +182499,23 @@ "year": 1763, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 34.54390619432847, - "c2": -25.988646100916384, - "c3": -35.59560700428342, - "c4": -26.241155164418213, - "c5": -27.783519417569366, - "c6": -40.8822323342686, - "c7": -12.04793470698515 + "points": { + "c1": 39.406411264373205, + "c2": 39.26643007588123, + "c3": 4.208090210223688, + "c4": -28.236849009310973, + "c5": -1.9506269320753375, + "c6": 39.28721068997892, + "c7": -18.094456707962124 }, - "vertexSeeds": { - "c1": 8.058757976483196, - "c2": 8.709229983185356, - "c3": 8.527517211590386, - "c4": 7.956710418780586, - "c5": 8.53327781021176, - "c6": 7.987638144640309, - "c7": 8.138543684023452 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099858, + "c3": 10.402219140083211, + "c4": 8.321775312066565, + "c5": 6.241331484049918, + "c6": 4.160887656033293, + "c7": 2.0804438280166466 }, "rgb": [222, 0, 59] }, @@ -182526,23 +182526,23 @@ "year": 1763, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -15.85083156754644, - "c2": 16.420631590458726, - "c3": 11.866345550297162, - "c4": 24.954890024824564, - "c5": 31.19182493735829, - "c6": 6.749254553359066, - "c7": 12.249610807029327 + "points": { + "c1": -4.352961152138917, + "c2": -30.948866197814702, + "c3": 28.392804620550137, + "c4": -29.90440798510028, + "c5": -25.878687913945278, + "c6": -6.337436896130434, + "c7": 14.26846437790094 }, - "vertexSeeds": { - "c1": 3.697809018924338, - "c2": 3.7090094893412893, - "c3": 4.017933945338215, - "c4": 3.7879395995593486, - "c5": 3.8565994978466027, - "c6": 3.6857336507288725, - "c7": 3.9074618493522304 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406379, + "c3": 4.831252889505315, + "c4": 3.8650023116042505, + "c5": 2.8987517337031856, + "c6": 1.932501155802121, + "c7": 0.9662505779010566 }, "rgb": [77, 76, 132] }, @@ -182553,23 +182553,23 @@ "year": 1763, "resistanceReported": false, "duration": 2246400, - "curveSeeds": { - "c1": 2.988353335100024, - "c2": 7.970675290280042, - "c3": -5.636864098740734, - "c4": 1.2622869602340447, - "c5": -4.611050285682308, - "c6": -5.598329938902443, - "c7": 0.8115375450247644 + "points": { + "c1": -13.668743248414556, + "c2": 0.9694391359314789, + "c3": -12.029594824808525, + "c4": 14.114623159201507, + "c5": 0.8146751779274304, + "c6": 1.6500698332189998, + "c7": -11.96619184164985 }, - "vertexSeeds": { - "c1": 6.375299537741013, - "c2": 6.777674662857921, - "c3": 5.670291842428214, - "c4": 5.726807092182175, - "c5": 5.576661650829359, - "c6": 6.607864476936869, - "c7": 5.596969765996146 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -182580,23 +182580,23 @@ "year": 1763, "resistanceReported": false, "duration": 2160000, - "curveSeeds": { - "c1": -12.272423386707903, - "c2": -3.1589911730033915, - "c3": -2.895197637232261, - "c4": 11.606249696762175, - "c5": 9.147315374730601, - "c6": -6.6863187820268735, - "c7": -10.24516376662006 + "points": { + "c1": -4.391708353055311, + "c2": -2.9168072254569175, + "c3": -1.4920079085653537, + "c4": -7.044821454460873, + "c5": -0.237930573330976, + "c6": -7.653237639867422, + "c7": -0.24572540515035612 }, - "vertexSeeds": { - "c1": 6.3793137936309225, - "c2": 6.220066333768483, - "c3": 6.308102957102673, - "c4": 6.073365523262517, - "c5": 5.94857739902148, - "c6": 6.037263570605265, - "c7": 6.066009524091776 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661574, + "c4": 6.158113730929255, + "c5": 4.618585298196935, + "c6": 3.0790568654646395, + "c7": 1.5395284327323198 }, "rgb": [58, 15, 49] }, @@ -182607,23 +182607,23 @@ "year": 1763, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -8.617486879437536, - "c2": 29.202795104752763, - "c3": -9.513789179477978, - "c4": -25.349091285931706, - "c5": -4.680653366789059, - "c6": -12.55140718127079, - "c7": 7.216609966127255 + "points": { + "c1": 10.933921085959525, + "c2": -30.55817698030497, + "c3": -19.268175254387685, + "c4": -25.813631589016047, + "c5": 25.23428188764216, + "c6": 1.1998960666156009, + "c7": -11.716631279475262 }, - "vertexSeeds": { - "c1": 7.533591176517986, - "c2": 7.370545417225881, - "c3": 7.450175276877439, - "c4": 7.257937426910914, - "c5": 7.641116677479314, - "c6": 7.457410052707293, - "c7": 7.670631969038001 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048555, + "c3": 9.223300970873781, + "c4": 7.3786407766990365, + "c5": 5.533980582524264, + "c6": 3.6893203883495183, + "c7": 1.8446601941747727 }, "rgb": [238, 201, 159] }, @@ -182634,23 +182634,23 @@ "year": 1763, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -25.202932317968525, - "c2": -17.991958879533502, - "c3": 10.58251255065197, - "c4": 23.939726089914082, - "c5": 1.4868062186239612, - "c6": -20.28522846425429, - "c7": 20.77247564801646 + "points": { + "c1": 35.63572178531921, + "c2": -0.7749683783415477, + "c3": -26.05913238631242, + "c4": 26.862890712867618, + "c5": 8.08318465020961, + "c6": -14.424675726957346, + "c7": 41.8531375739479 }, - "vertexSeeds": { - "c1": 5.590552334452271, - "c2": 5.486173962951918, - "c3": 5.641000725715735, - "c4": 5.594519709483756, - "c5": 5.596927978362304, - "c6": 5.56902371900128, - "c7": 5.509472731776542 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865449, + "c3": 6.819232547387893, + "c4": 5.4553860379103, + "c5": 4.091539528432743, + "c6": 2.72769301895515, + "c7": 1.363846509477593 }, "rgb": [86, 146, 138] }, @@ -182661,23 +182661,23 @@ "year": 1763, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 2.4340312426842416, - "c2": 0.08569755099055243, - "c3": -22.325632940207175, - "c4": 19.792744017618546, - "c5": 4.059572931074015, - "c6": -10.084276644353587, - "c7": -8.04876260888405 + "points": { + "c1": -15.319772770392515, + "c2": 13.946607590721477, + "c3": 24.77295385223072, + "c4": 2.1422966922267506, + "c5": -25.940029566437225, + "c6": 2.155365344294914, + "c7": 2.8770011634227046 }, - "vertexSeeds": { - "c1": 6.726803333443077, - "c2": 6.325752335485336, - "c3": 6.444656685063817, - "c4": 6.239868400069963, - "c5": 6.938640951825618, - "c6": 6.344367301548587, - "c7": 6.475441269110863 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801672, + "c3": 8.506703652334723, + "c4": 6.805362921867774, + "c5": 5.104022191400836, + "c6": 3.4026814609338993, + "c7": 1.7013407304669497 }, "rgb": [86, 146, 138] }, @@ -182688,23 +182688,23 @@ "year": 1764, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 32.96809221214087, - "c2": -8.619524680190175, - "c3": 6.4683553495219215, - "c4": 2.862082409553487, - "c5": -39.23909084892565, - "c6": 42.32914374883129, - "c7": -50.20819763709397 + "points": { + "c1": 24.75103532621538, + "c2": -16.47950549311141, + "c3": 35.78435639474164, + "c4": -27.406969207943337, + "c5": -20.493704341962093, + "c6": -40.06787277305189, + "c7": -53.09980236849711 }, - "vertexSeeds": { - "c1": 6.385060844228076, - "c2": 6.347155568589024, - "c3": 7.0185527567530155, - "c4": 7.042606048234111, - "c5": 7.066723201467941, - "c6": 6.918102491732663, - "c7": 7.042628214495262 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882114, + "c3": 8.552935737401754, + "c4": 6.842348589921409, + "c5": 5.13176144244105, + "c6": 3.4211742949607045, + "c7": 1.7105871474803456 }, "rgb": [222, 0, 59] }, @@ -182715,23 +182715,23 @@ "year": 1763, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -10.700578403549695, - "c2": 2.823066637728033, - "c3": 21.001822221613743, - "c4": -20.62113964947595, - "c5": -16.491942547577906, - "c6": -13.994682489424047, - "c7": 25.33209380550519 + "points": { + "c1": -16.14302086347454, + "c2": -6.747789919076411, + "c3": 19.952678623164964, + "c4": -5.0226081994241945, + "c5": -25.375463538494333, + "c6": -2.9677991287138035, + "c7": -19.266962925569175 }, - "vertexSeeds": { - "c1": 8.158221817953187, - "c2": 8.374075241055895, - "c3": 8.239637500883994, - "c4": 7.856561792616329, - "c5": 7.592892058176729, - "c6": 7.428583507793181, - "c7": 7.270811409999727 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456312, + "c3": 10.03236245954693, + "c4": 8.025889967637532, + "c5": 6.019417475728149, + "c6": 4.012944983818766, + "c7": 2.006472491909383 }, "rgb": [86, 146, 138] }, @@ -182742,23 +182742,23 @@ "year": 1763, "resistanceReported": false, "duration": 1468800, - "curveSeeds": { - "c1": 8.549624299038324, - "c2": 9.004453032693455, - "c3": 4.435643556572471, - "c4": -3.449941559474402, - "c5": -5.9108086353785145, - "c6": -2.391631641487269, - "c7": -2.6651460959382014 + "points": { + "c1": -3.4068601959578437, + "c2": -1.3085286720584328, + "c3": -11.06138522079078, + "c4": -7.859808498695577, + "c5": -3.0677764517361865, + "c6": -12.524290489790777, + "c7": -8.171388794663269 }, - "vertexSeeds": { - "c1": 8.019758278304597, - "c2": 7.731953261038554, - "c3": 8.016248304821668, - "c4": 8.07920934469128, - "c5": 7.839401165531067, - "c6": 7.667151539575387, - "c7": 7.956028012451726 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.59500693481276, + "c3": 9.662505779010633, + "c4": 7.730004623208506, + "c5": 5.79750346740638, + "c6": 3.865002311604253, + "c7": 1.9325011558021266 }, "rgb": [222, 0, 59] }, @@ -182769,23 +182769,23 @@ "year": 1764, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -10.361608059853921, - "c2": -18.155143740361645, - "c3": 24.2378822529825, - "c4": -32.373710360810506, - "c5": -17.40549440073939, - "c6": -16.760979680190736, - "c7": -11.446051687260429 + "points": { + "c1": -23.224213187347946, + "c2": 5.494812355131309, + "c3": 37.945207421719616, + "c4": -30.355985254997723, + "c5": 25.181804809707785, + "c6": -0.5769615403824204, + "c7": 0.7783603355482711 }, - "vertexSeeds": { - "c1": 2.5761250490719347, - "c2": 2.7449386129534963, - "c3": 2.2716387149702673, - "c4": 2.85953785157529, - "c5": 2.5172418637977025, - "c6": 2.384403943258448, - "c7": 2.289365152263702 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.467406380027739, + "c4": 2.773925104022191, + "c5": 2.080443828016643, + "c6": 1.3869625520110955, + "c7": 0.6934812760055478 }, "rgb": [86, 146, 138] }, @@ -182796,23 +182796,23 @@ "year": 1763, "resistanceReported": false, "duration": 777600, - "curveSeeds": { - "c1": -3.548771897556273, - "c2": 0.8715596344637557, - "c3": -3.862438894576954, - "c4": -0.9811483200873408, - "c5": -9.063329447389066, - "c6": 8.065962755543634, - "c7": -3.2894358873986294 + "points": { + "c1": -2.0844311492688163, + "c2": 11.088535480399791, + "c3": -6.818505026200163, + "c4": 1.6042805020048654, + "c5": 3.4207248813996145, + "c6": 4.4894200567122375, + "c7": 3.626470682526648 }, - "vertexSeeds": { - "c1": 2.9304149367604464, - "c2": 3.2913379057921026, - "c3": 3.2259413142501656, - "c4": 3.298556660255457, - "c5": 3.4339279572115275, - "c6": 3.069371291601534, - "c7": 3.471414147419368 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441052, + "c3": 4.276467868700879, + "c4": 3.421174294960701, + "c5": 2.565880721220528, + "c6": 1.7105871474803505, + "c7": 0.8552935737401774 }, "rgb": [77, 76, 132] }, @@ -182823,23 +182823,23 @@ "year": 1763, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 16.373581519044052, - "c2": 28.78448512721549, - "c3": -17.270530441365814, - "c4": 24.352157896082197, - "c5": -20.033617260491614, - "c6": -21.481253120886194, - "c7": 5.138299366528727 + "points": { + "c1": 29.20237557189658, + "c2": -16.93602382731431, + "c3": 9.874118995881375, + "c4": 14.516639903330606, + "c5": 12.022608771941528, + "c6": 13.127147822848201, + "c7": -9.53825228135106 }, - "vertexSeeds": { - "c1": 5.458635330644595, - "c2": 6.154604564446552, - "c3": 5.297806472399084, - "c4": 5.534128136213205, - "c5": 5.81210276906162, - "c6": 5.656126790263916, - "c7": 5.355265382253818 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594546, + "c4": 6.121128062875633, + "c5": 4.59084604715673, + "c6": 3.0605640314378166, + "c7": 1.5302820157189134 }, "rgb": [58, 15, 49] }, @@ -182850,23 +182850,23 @@ "year": 1763, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 18.840223177327104, - "c2": 0.23553152247264109, - "c3": 2.885512825157882, - "c4": -10.14605769984875, - "c5": 25.614982914791852, - "c6": 5.5193956938520685, - "c7": -15.550298126938792 + "points": { + "c1": 6.884032230833604, + "c2": 22.4182391549526, + "c3": 16.507791886685872, + "c4": -4.18161596344957, + "c5": 13.296353636293837, + "c6": 11.748359045041276, + "c7": 6.625585454999197 }, - "vertexSeeds": { - "c1": 2.8560140759508514, - "c2": 2.8892622582644267, - "c3": 2.5275862203063886, - "c4": 2.661179569892363, - "c5": 2.845095266634499, - "c6": 2.7549347572967973, - "c7": 2.87924572116776 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717061, + "c3": 3.860379103097549, + "c4": 3.0883032824780408, + "c5": 2.316227461858529, + "c6": 1.5441516412390204, + "c7": 0.7720758206195122 }, "rgb": [238, 201, 159] }, @@ -182877,23 +182877,23 @@ "year": 1764, "resistanceReported": false, "duration": 46569600, - "curveSeeds": { - "c1": 9.692972949824501, - "c2": 16.83081285492296, - "c3": 56.98793102299721, - "c4": -9.558169538096635, - "c5": -1.3757710578986035, - "c6": -38.66795531653548, - "c7": 19.15350695837281 + "points": { + "c1": 25.923372709547202, + "c2": -13.699267216767879, + "c3": -40.96615672912454, + "c4": 35.683537571480734, + "c5": 34.49339933857265, + "c6": 40.473165977193084, + "c7": -4.927188813179612 }, - "vertexSeeds": { - "c1": 3.6697686525881927, - "c2": 3.5979072484398786, - "c3": 3.542653737545317, - "c4": 3.4786228505670405, - "c5": 3.566047927861111, - "c6": 3.3548945923973355, - "c7": 3.370677543869807 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923718, + "c3": 4.5538603791031, + "c4": 3.643088303282481, + "c5": 2.7323162274618626, + "c6": 1.821544151641244, + "c7": 0.9107720758206254 }, "rgb": [86, 146, 138] }, @@ -182904,23 +182904,23 @@ "year": 1764, "resistanceReported": true, "duration": 31536000, - "curveSeeds": { - "c1": 19.852692408312578, - "c2": 2.9419839100806584, - "c3": -12.037564723774771, - "c4": -17.13131667701813, - "c5": -17.31463648039535, - "c6": -19.424160113332693, - "c7": 26.904180952351155 + "points": { + "c1": -39.627642468417505, + "c2": 10.550458227814751, + "c3": -26.75896596894079, + "c4": -7.782732969221016, + "c5": 3.5025251585387025, + "c6": 25.42824082230871, + "c7": 32.540561515727376 }, - "vertexSeeds": { - "c1": 2.9284031338650847, - "c2": 2.9575049442243158, - "c3": 3.22091562015141, - "c4": 3.1903924429624784, - "c5": 3.1218517014202574, - "c6": 3.250415286854207, - "c7": 3.032064131718662 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -182931,23 +182931,23 @@ "year": 1764, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -21.712155032592726, - "c2": -21.11831975142868, - "c3": -12.74696036737841, - "c4": -40.40455269539242, - "c5": -37.792038758406626, - "c6": 5.543640574179641, - "c7": 36.986688469957144 + "points": { + "c1": -31.6760759872452, + "c2": 20.444998426819282, + "c3": -10.30007688258496, + "c4": -4.944601416831368, + "c5": -19.531738657295282, + "c6": -43.303443788547774, + "c7": 2.2705215078027976 }, - "vertexSeeds": { - "c1": 4.381825869153714, - "c2": 4.310677374245791, - "c3": 4.281271004372565, - "c4": 4.477262773167041, - "c5": 4.445336742846452, - "c6": 4.496580579983875, - "c7": 4.709386014960782 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814151, + "c3": 5.640314378178455, + "c4": 4.512251502542767, + "c5": 3.3841886269070707, + "c6": 2.2561257512713837, + "c7": 1.1280628756356967 }, "rgb": [238, 201, 159] }, @@ -182958,23 +182958,23 @@ "year": 1764, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": -33.89029789961724, - "c2": 17.99135519047148, - "c3": 20.016089069228244, - "c4": 27.724822147829315, - "c5": 0.7150886659893558, - "c6": 37.26082050880342, - "c7": 39.98438539277704 + "points": { + "c1": 25.65010825332753, + "c2": 29.838243299737258, + "c3": -23.260604801729308, + "c4": 34.42515356924741, + "c5": 0.22094870206160522, + "c6": -45.10182457699607, + "c7": -34.42618434812863 }, - "vertexSeeds": { - "c1": 6.966402647445077, - "c2": 6.638817647727545, - "c3": 6.663875799526118, - "c4": 7.19590745367198, - "c5": 6.710755499157187, - "c6": 7.298380063867506, - "c7": 6.981622704924271 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404988, + "c3": 8.853444290337501, + "c4": 7.082755432269997, + "c5": 5.312066574202494, + "c6": 3.541377716135007, + "c7": 1.7706888580675035 }, "rgb": [58, 15, 49] }, @@ -182985,23 +182985,23 @@ "year": 1763, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -7.602737842925805, - "c2": -33.89221789635682, - "c3": 3.887039560359632, - "c4": 32.35139917773408, - "c5": -27.43717657365717, - "c6": -36.82349817185046, - "c7": 34.08790406728319 + "points": { + "c1": -12.078558971877271, + "c2": 33.610722532800764, + "c3": 16.991564599495668, + "c4": -17.888195509362227, + "c5": 14.221501233354104, + "c6": 40.76775930065622, + "c7": 43.520440406329655 }, - "vertexSeeds": { - "c1": 4.124685918091202, - "c2": 4.099135689653992, - "c3": 3.8079211742615997, - "c4": 4.140998327276459, - "c5": 3.6323809625153842, - "c6": 3.6700334526804306, - "c7": 3.651760053000669 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [86, 146, 138] }, @@ -183012,23 +183012,23 @@ "year": 1764, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -4.755677913551047, - "c2": -15.580448511527958, - "c3": 14.239175597159019, - "c4": -4.459457285817535, - "c5": -28.5891542877794, - "c6": 35.75570895818797, - "c7": 27.86096026140524 + "points": { + "c1": 8.864585076273826, + "c2": -37.63695444524242, + "c3": 24.656278312072473, + "c4": -10.513396439158235, + "c5": 32.58672614614849, + "c6": -5.8520961698575675, + "c7": -30.161331451576537 }, - "vertexSeeds": { - "c1": 2.9005658231445506, - "c2": 3.0489667101806295, - "c3": 2.9838384378416114, - "c4": 3.078661935477113, - "c5": 3.2419453474040427, - "c6": 3.0571791251157285, - "c7": 3.175773012789503 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -183039,23 +183039,23 @@ "year": 1764, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 6.310343912772552, - "c2": -2.742300406560524, - "c3": -14.292689861040088, - "c4": 1.3726463956409987, - "c5": 9.932890102623212, - "c6": 8.956372009430112, - "c7": 21.852781796784996 + "points": { + "c1": -32.763186948753685, + "c2": 46.02961484696357, + "c3": 28.691862628382466, + "c4": -45.905880637180175, + "c5": -32.214111721686166, + "c6": -10.274297321932345, + "c7": 6.429254490961696 }, - "vertexSeeds": { - "c1": 4.455775529279272, - "c2": 4.29391427591992, - "c3": 4.09001891358632, - "c4": 4.472878139188242, - "c5": 4.2539717086030375, - "c6": 4.155417464851355, - "c7": 4.68079478511927 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -183066,23 +183066,23 @@ "year": 1763, "resistanceReported": true, "duration": 23846400, - "curveSeeds": { - "c1": 30.490121294417676, - "c2": 6.162461333128427, - "c3": -26.922153712070667, - "c4": -17.626416824685325, - "c5": -28.583993276231013, - "c6": 34.30587459265929, - "c7": -22.498847445055862 + "points": { + "c1": -37.92851490985621, + "c2": -5.566872732880128, + "c3": 18.264731940909165, + "c4": -1.8811804418787759, + "c5": 5.072733582119142, + "c6": 12.804013666540577, + "c7": 27.09930935111197 }, - "vertexSeeds": { - "c1": 6.484953935158931, - "c2": 6.55307372080178, - "c3": 6.374828595090392, - "c4": 5.951267435592581, - "c5": 6.154470824875057, - "c6": 6.201644200940262, - "c7": 5.916640725674356 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675447, + "c3": 7.859454461396199, + "c4": 6.287563569116969, + "c5": 4.715672676837723, + "c6": 3.1437817845584766, + "c7": 1.57189089227923 }, "rgb": [77, 76, 132] }, @@ -183093,23 +183093,23 @@ "year": 1764, "resistanceReported": false, "duration": 57024000, - "curveSeeds": { - "c1": 21.05425343372103, - "c2": -28.32788072563885, - "c3": 20.368024769162844, - "c4": -7.260438288640415, - "c5": -56.08905079744558, - "c6": 60.445045603834416, - "c7": 59.81417562198118 + "points": { + "c1": -18.17925431280176, + "c2": 0.7640479017440072, + "c3": 12.18540625595061, + "c4": 12.82972912570034, + "c5": 4.116898039488888, + "c6": 46.364350908938306, + "c7": 28.893039016404586 }, - "vertexSeeds": { - "c1": 1.4804962028414521, - "c2": 1.4131515669532375, - "c3": 1.373456060717403, - "c4": 1.4968249402530511, - "c5": 1.4807533742437795, - "c6": 1.4432972061906753, - "c7": 1.3815352581688143 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.2746185852981977, + "c3": 1.895515487748496, + "c4": 1.5164123901987976, + "c5": 1.1373092926490989, + "c6": 0.7582061950994002, + "c7": 0.37910309754969856 }, "rgb": [58, 15, 49] }, @@ -183120,23 +183120,23 @@ "year": 1764, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": 5.920012492317305, - "c2": -39.91493618971056, - "c3": 19.338738885772344, - "c4": -40.72273022251809, - "c5": 44.41225301473146, - "c6": 0.06521529557013395, - "c7": 43.6397352043419 + "points": { + "c1": 5.57733525645655, + "c2": -4.173735863818628, + "c3": 24.52434744178153, + "c4": 50.704532851808665, + "c5": -31.45489733681461, + "c6": -5.321354997612737, + "c7": -26.88410264594624 }, - "vertexSeeds": { - "c1": 6.565169582858098, - "c2": 6.51495524620568, - "c3": 6.497818265306397, - "c4": 6.567456462768797, - "c5": 6.262079900780625, - "c6": 6.4395058308902815, - "c7": 6.594174599864201 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836325, + "c3": 7.951918631530285, + "c4": 6.361534905224217, + "c5": 4.771151178918177, + "c6": 3.1807674526121086, + "c7": 1.5903837263060685 }, "rgb": [238, 201, 159] }, @@ -183147,23 +183147,23 @@ "year": 1764, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": -28.481466493977027, - "c2": -18.072323998800876, - "c3": -52.75395594366354, - "c4": 12.019753858023044, - "c5": 16.67957540067915, - "c6": 22.101951680046874, - "c7": 3.040542597431724 + "points": { + "c1": -0.328283649793363, + "c2": -36.658263892741665, + "c3": -43.73274234445928, + "c4": 52.904400821965815, + "c5": -29.738035294917076, + "c6": 3.3528448665017905, + "c7": 42.67431588726601 }, - "vertexSeeds": { - "c1": 1.6158827380273155, - "c2": 1.7210200047699733, - "c3": 1.7151186878240225, - "c4": 1.7562559542483107, - "c5": 1.6803158229386235, - "c6": 1.6637497390490479, - "c7": 1.687813483786904 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808614, + "c3": 2.172907998150716, + "c4": 1.7383263985205744, + "c5": 1.3037447988904287, + "c6": 0.8691631992602872, + "c7": 0.4345815996301416 }, "rgb": [238, 201, 159] }, @@ -183174,23 +183174,23 @@ "year": 1764, "resistanceReported": false, "duration": 52272000, - "curveSeeds": { - "c1": -33.968759014863544, - "c2": 44.55839294116569, - "c3": 22.032795756987994, - "c4": 42.65951148362754, - "c5": -49.30254379535086, - "c6": -15.84551886133292, - "c7": 36.295472613887924 + "points": { + "c1": 57.270940773648874, + "c2": -28.664290281131535, + "c3": -24.5077532992633, + "c4": -8.502280537864287, + "c5": 67.43768949115665, + "c6": -58.404923452734614, + "c7": 13.303658213394385 }, - "vertexSeeds": { - "c1": 0.9767764075828469, - "c2": 0.9660019858426179, - "c3": 0.944337955286385, - "c4": 0.9071173944734465, - "c5": 0.9467890877447572, - "c6": 0.9317608263347107, - "c7": 0.9782919049492816 + "offsets": { + "c1": 1.715210355987055, + "c2": 1.4701803051317617, + "c3": 1.2251502542764685, + "c4": 0.9801202034211752, + "c5": 0.735090152565882, + "c6": 0.49006010171058656, + "c7": 0.24503005085529533 }, "rgb": [58, 15, 49] }, @@ -183201,23 +183201,23 @@ "year": 1764, "resistanceReported": false, "duration": 58060800, - "curveSeeds": { - "c1": -23.91181800962883, - "c2": -12.232142857129702, - "c3": 65.54220370947095, - "c4": 42.530808660742935, - "c5": -2.756001790821699, - "c6": -50.472344680571055, - "c7": -1.2874639866488309 + "points": { + "c1": -38.58488095600656, + "c2": -3.7225243184893912, + "c3": -6.846824616448188, + "c4": -30.499627586352673, + "c5": 23.465797622253902, + "c6": -44.03859123322662, + "c7": -30.04770832134708 }, - "vertexSeeds": { - "c1": 2.8451217930984725, - "c2": 3.1441344848514334, - "c3": 3.0166609600624787, - "c4": 3.1028599036632154, - "c5": 2.966989931241743, - "c6": 2.896869387905296, - "c7": 2.9892621332265787 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797502, + "c3": 3.906611188164589, + "c4": 3.12528895053167, + "c5": 2.343966712898751, + "c6": 1.5626444752658317, + "c7": 0.7813222376329191 }, "rgb": [86, 146, 138] }, @@ -183228,23 +183228,23 @@ "year": 1763, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 6.071026669165029, - "c2": 2.372475759810456, - "c3": -17.378372538461257, - "c4": 28.382627807406763, - "c5": -26.83122370505154, - "c6": 23.735179078813992, - "c7": 8.299762953165967 + "points": { + "c1": -27.57780367780995, + "c2": 8.29952322891149, + "c3": -22.44418541628584, + "c4": 11.381039675449621, + "c5": 28.764311965042154, + "c6": -23.02019151961642, + "c7": 29.508101582355742 }, - "vertexSeeds": { - "c1": 2.074969072049234, - "c2": 2.0104114910572486, - "c3": 2.0477487616827124, - "c4": 2.2038036235630214, - "c5": 2.0097528891846, - "c6": 2.1370896307625786, - "c7": 2.2619835344879577 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746185, + "c3": 2.7276930189551565, + "c4": 2.1821544151641246, + "c5": 1.6366158113730924, + "c6": 1.0910772075820603, + "c7": 0.545538603791032 }, "rgb": [86, 146, 138] }, @@ -183255,23 +183255,23 @@ "year": 1764, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 41.52836004394328, - "c2": 12.58956887563869, - "c3": -40.105142375088704, - "c4": -5.503148818652065, - "c5": 34.47661675521664, - "c6": 39.91325593522811, - "c7": 31.401795665345134 + "points": { + "c1": 39.8905384356252, + "c2": -7.130208526057963, + "c3": 31.086766607882467, + "c4": -21.53113944329693, + "c5": 8.76636748383676, + "c6": -13.117643505055781, + "c7": -6.76016328244026 }, - "vertexSeeds": { - "c1": 1.7396323655780122, - "c2": 1.7670470436975665, - "c3": 1.4785022468448459, - "c4": 1.570619542048396, - "c5": 1.5502880289549896, - "c6": 1.7674376161138383, - "c7": 1.7415261537808935 + "offsets": { + "c1": 2.9773462783171523, + "c2": 2.552011095700416, + "c3": 2.126675913083681, + "c4": 1.7013407304669443, + "c5": 1.276005547850208, + "c6": 0.8506703652334734, + "c7": 0.4253351826167367 }, "rgb": [58, 15, 49] }, @@ -183282,23 +183282,23 @@ "year": 1764, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 37.83639132735398, - "c2": -12.049453948512088, - "c3": -32.828681153286254, - "c4": -20.731520756673735, - "c5": 9.434048451429106, - "c6": 34.65052465136023, - "c7": -39.53132634748883 + "points": { + "c1": -38.78169702460507, + "c2": -3.160719844247218, + "c3": -46.49311231257168, + "c4": 1.2747408070032975, + "c5": 0.4640435767450839, + "c6": 39.84053962904393, + "c7": -32.69394623451605 }, - "vertexSeeds": { - "c1": 2.9912036904879207, - "c2": 3.0291669430281996, - "c3": 3.104908996776109, - "c4": 3.044903216576736, - "c5": 3.220959462696406, - "c6": 3.104752745520868, - "c7": 3.1432299478875856 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -183309,23 +183309,23 @@ "year": 1763, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -23.343759626825076, - "c2": -21.57526711652328, - "c3": -22.602718517753026, - "c4": -28.891217761662123, - "c5": 10.312283129882566, - "c6": 1.4846443971771137, - "c7": -32.136536058408005 + "points": { + "c1": -22.780631834222135, + "c2": -20.551032529682256, + "c3": -21.69712789632836, + "c4": -16.060149987771485, + "c5": 4.834289259822349, + "c6": 3.199393947833059, + "c7": -10.22978484547545 }, - "vertexSeeds": { - "c1": 0.09648157241098518, - "c2": 0.08950531119326331, - "c3": 0.09326238002423443, - "c4": 0.08914294273234005, - "c5": 0.09254491684638576, - "c6": 0.0963293030434692, - "c7": 0.09233119334460257 + "offsets": { + "c1": 0.1941747572815534, + "c2": 0.16643550624133144, + "c3": 0.13869625520110954, + "c4": 0.11095700416088758, + "c5": 0.08321775312066564, + "c6": 0.05547850208044388, + "c7": 0.027739251040221766 }, "rgb": [222, 0, 59] }, @@ -183336,23 +183336,23 @@ "year": 1763, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -23.31084644126972, - "c2": -35.856273771386455, - "c3": -25.952307669590184, - "c4": -7.369955588235577, - "c5": 27.30303331443112, - "c6": -12.599918415488894, - "c7": -16.293226419161773 + "points": { + "c1": -6.771601723330583, + "c2": 21.97015339209556, + "c3": -10.950514773216195, + "c4": -18.525062133266264, + "c5": -1.7506335224674459, + "c6": -12.285380716962955, + "c7": -14.453912367435251 }, - "vertexSeeds": { - "c1": 1.6069366666514062, - "c2": 1.6793162225387297, - "c3": 1.599093653800583, - "c4": 1.6065408371939731, - "c5": 1.6772711802592624, - "c6": 1.4595401284377751, - "c7": 1.6575506190906015 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797515, + "c3": 2.057327785483127, + "c4": 1.6458622283864999, + "c5": 1.2343966712898757, + "c6": 0.8229311141932513, + "c7": 0.4114655570966269 }, "rgb": [86, 146, 138] }, @@ -183363,23 +183363,23 @@ "year": 1763, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -8.338384783153991, - "c2": 30.46755464431282, - "c3": -1.825424200695167, - "c4": 11.03483992050078, - "c5": 9.360166962661978, - "c6": -43.4367848364467, - "c7": -30.12333771311912 + "points": { + "c1": -25.707175105529238, + "c2": -4.459444961626517, + "c3": -31.60525431372026, + "c4": -9.959447034265033, + "c5": 19.423535821196516, + "c6": -21.449402370042275, + "c7": -32.58146033107897 }, - "vertexSeeds": { - "c1": 0.6225662750926688, - "c2": 1.008525334724565, - "c3": 1.2006648047794388, - "c4": 0.9299609239755704, - "c5": 1.1694536188005658, - "c6": 1.086496490857677, - "c7": 0.5909630597886388 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959778, + "c3": 1.6643550624133148, + "c4": 1.331484049930652, + "c5": 0.9986130374479888, + "c6": 0.665742024965326, + "c7": 0.3328710124826631 }, "rgb": [86, 146, 138] }, @@ -183390,23 +183390,23 @@ "year": 1764, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": -39.69578102265026, - "c2": 8.34011740446811, - "c3": 38.997334674995855, - "c4": 24.830236143546756, - "c5": -46.16505021679182, - "c6": -21.582816107601122, - "c7": -49.220182292344234 + "points": { + "c1": -2.2341562484522797, + "c2": -28.07859935031767, + "c3": 16.2741092084958, + "c4": -35.366250602626074, + "c5": -4.358737542566708, + "c6": -23.2876431232194, + "c7": -52.80461967353798 }, - "vertexSeeds": { - "c1": 1.6766103622734307, - "c2": 1.7130029886136164, - "c3": 1.4460016585396944, - "c4": 1.4595916591972546, - "c5": 1.7114654694132878, - "c6": 1.5786076208793152, - "c7": 1.5950448165109732 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.080443828016644, + "c4": 1.664355062413314, + "c5": 1.248266296809987, + "c6": 0.832177531206657, + "c7": 0.4160887656033299 }, "rgb": [222, 0, 59] }, @@ -183417,23 +183417,23 @@ "year": 1763, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -16.493591786466784, - "c2": -1.694770408837293, - "c3": 24.199957245295906, - "c4": 23.807687552000914, - "c5": 21.8588240680374, - "c6": 23.412219778308355, - "c7": -12.366314568547754 + "points": { + "c1": 35.78956579619187, + "c2": 3.7659835024030315, + "c3": -34.48658870510855, + "c4": -9.408203972507806, + "c5": 30.062384498987264, + "c6": -35.504621763393104, + "c7": 24.275316672437867 }, - "vertexSeeds": { - "c1": 4.356307073101476, - "c2": 4.916613664630256, - "c3": 5.1828235566279, - "c4": 4.301901757717371, - "c5": 4.762503749691976, - "c6": 4.390957080256316, - "c7": 4.351329134727565 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -183444,23 +183444,23 @@ "year": 1763, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 21.438293381005245, - "c2": -0.41367558169870833, - "c3": -8.685096012663376, - "c4": 9.491407010888935, - "c5": 0.47782355107210606, - "c6": -16.724290717218555, - "c7": 0.5240899304463227 + "points": { + "c1": 2.2913638342217872, + "c2": 13.588226391363314, + "c3": 3.7131072081450043, + "c4": -21.097988575526987, + "c5": -14.228715623407277, + "c6": -9.2201205465906, + "c7": 9.10407981482318 }, - "vertexSeeds": { - "c1": 7.342130807483721, - "c2": 7.260438270098524, - "c3": 6.883354693377121, - "c4": 6.994298597629531, - "c5": 7.162159729262456, - "c6": 6.980420371935296, - "c7": 7.171065212878961 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404988, + "c3": 8.853444290337503, + "c4": 7.082755432269997, + "c5": 5.312066574202494, + "c6": 3.5413777161350084, + "c7": 1.7706888580675042 }, "rgb": [222, 0, 59] }, @@ -183471,23 +183471,23 @@ "year": 1763, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 9.260353880913463, - "c2": -30.13050704701462, - "c3": -16.431762509386523, - "c4": 38.146243154670735, - "c5": 4.544077949309816, - "c6": -40.66567047649934, - "c7": -8.290704871152592 + "points": { + "c1": 9.00470830351513, + "c2": 28.055228583149066, + "c3": -10.117791151159388, + "c4": -12.146839729612601, + "c5": 34.501386346859384, + "c6": 12.759416083872644, + "c7": -33.72991428654129 }, - "vertexSeeds": { - "c1": 1.157679443709301, - "c2": 1.2292265691074378, - "c3": 1.3960239298852717, - "c4": 1.2253554582174413, - "c5": 1.0276467692560847, - "c6": 1.2498639831911151, - "c7": 1.0531184136047407 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.1636615811373083, + "c3": 1.8030513176144243, + "c4": 1.4424410540915402, + "c5": 1.0818307905686544, + "c6": 0.7212205270457697, + "c7": 0.36061026352288483 }, "rgb": [222, 0, 59] }, @@ -183498,23 +183498,23 @@ "year": 1763, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -0.8910645151929586, - "c2": -0.37480763292270325, - "c3": 7.488801892712324, - "c4": 7.251664258330308, - "c5": -13.127767393475153, - "c6": -22.76350032158842, - "c7": -26.310547944219408 + "points": { + "c1": -11.389725246137615, + "c2": -11.059937234084884, + "c3": -15.91060112658506, + "c4": -22.856805044714797, + "c5": 27.886885308612577, + "c6": -24.76035449872203, + "c7": -26.049118510939905 }, - "vertexSeeds": { - "c1": 9.036562419701486, - "c2": 9.87477797276208, - "c3": 9.715466062350796, - "c4": 9.66355496891336, - "c5": 9.540738335744201, - "c6": 9.641055724681102, - "c7": 9.057153750631306 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.31345353675451, + "c3": 11.92787794729542, + "c4": 9.542302357836338, + "c5": 7.156726768377255, + "c6": 4.7711511789181635, + "c7": 2.3855755894590818 }, "rgb": [58, 15, 49] }, @@ -183525,23 +183525,23 @@ "year": 1764, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": -39.38409259546263, - "c2": -6.053861557288279, - "c3": -10.037095603239237, - "c4": 13.662055108358999, - "c5": -40.727017633035736, - "c6": 19.717621994726528, - "c7": -25.05540733054277 + "points": { + "c1": 6.863433770779494, + "c2": -15.923416976333087, + "c3": -46.25253653088159, + "c4": 43.60000425476612, + "c5": -30.423660097633974, + "c6": -29.091198911257276, + "c7": 27.733683903110602 }, - "vertexSeeds": { - "c1": 4.790708767020361, - "c2": 4.574115507915101, - "c3": 4.444734910689174, - "c4": 4.742231263872194, - "c5": 4.612845995200243, - "c6": 4.333648893763455, - "c7": 4.396089750310752 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.0735090152565885, + "c3": 5.894590846047158, + "c4": 4.715672676837726, + "c5": 3.5367545076282942, + "c6": 2.357836338418863, + "c7": 1.1789181692094315 }, "rgb": [77, 76, 132] }, @@ -183552,23 +183552,23 @@ "year": 1764, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -19.417131327408274, - "c2": 6.302749947071902, - "c3": -3.279476852821759, - "c4": 8.877797780948448, - "c5": -34.68572243502452, - "c6": -24.7038737737393, - "c7": -25.1302472924333 + "points": { + "c1": -2.2518603943166724, + "c2": 1.9731897601368829, + "c3": 35.949378292182274, + "c4": -19.656818051401483, + "c5": -37.60508771298901, + "c6": -25.1483353100506, + "c7": 35.54681888944614 }, - "vertexSeeds": { - "c1": 2.3933481609359135, - "c2": 2.47869593083105, - "c3": 2.4858651586089735, - "c4": 2.374440356796191, - "c5": 2.312888607970918, - "c6": 2.4540919777544024, - "c7": 2.3711429969600633 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349516, + "c3": 3.0744336569579316, + "c4": 2.4595469255663427, + "c5": 1.844660194174758, + "c6": 1.2297734627831733, + "c7": 0.6148867313915888 }, "rgb": [222, 0, 59] }, @@ -183579,23 +183579,23 @@ "year": 1763, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 24.550043838112565, - "c2": -14.998936584437498, - "c3": 12.67106976036711, - "c4": -1.9953599070136576, - "c5": -15.86249517738516, - "c6": -17.555944402944984, - "c7": 20.005698306154123 + "points": { + "c1": 9.263422634176884, + "c2": -14.07953433411317, + "c3": 3.9368007704836216, + "c4": -38.18872961937937, + "c5": 17.490898143925023, + "c6": -11.041875075824901, + "c7": -18.577896751196597 }, - "vertexSeeds": { - "c1": 3.30939219707782, - "c2": 3.2593930399186304, - "c3": 3.1674568577158495, - "c4": 3.17087394884785, - "c5": 3.0679041528937736, - "c6": 3.2871137535702006, - "c7": 3.332771434932382 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958389, + "c3": 3.99907535829866, + "c4": 3.199260286638926, + "c5": 2.3994452149791967, + "c6": 1.599630143319463, + "c7": 0.799815071659729 }, "rgb": [222, 0, 59] }, @@ -183606,23 +183606,23 @@ "year": 1764, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 25.88351532442624, - "c2": 7.6300564896670195, - "c3": 5.1366137841760064, - "c4": -23.27315859662724, - "c5": -13.51258135414463, - "c6": 26.02926793662688, - "c7": 7.270090681840777 + "points": { + "c1": -36.16213739899834, + "c2": -16.087411631800983, + "c3": -26.381469564281332, + "c4": -31.684153982086897, + "c5": -37.22236962871893, + "c6": 34.18800868552354, + "c7": -31.800724812681544 }, - "vertexSeeds": { - "c1": 3.2516132764209758, - "c2": 3.1395755575814985, - "c3": 3.248133880902725, - "c4": 2.9036375422806815, - "c5": 2.898470165811877, - "c6": 3.079419513442935, - "c7": 3.2436701263305365 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -183633,23 +183633,23 @@ "year": 1764, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 31.2481865950935, - "c2": 11.27177923021162, - "c3": -4.1953581950033225, - "c4": 3.1809986490844437, - "c5": 21.19008630597846, - "c6": 37.843264815639955, - "c7": -30.391477256862807 + "points": { + "c1": 5.9742489535739125, + "c2": 42.23010740866421, + "c3": -27.277498032878057, + "c4": -33.72518997125431, + "c5": 14.73523198533588, + "c6": 0.7907071457003028, + "c7": 35.173776585593615 }, - "vertexSeeds": { - "c1": 0.9436198169010099, - "c2": 1.1175724270749026, - "c3": 1.205311453017395, - "c4": 1.0395773470890393, - "c5": 1.2771123339764134, - "c6": 0.9467559374424098, - "c7": 1.0899993342704577 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.941747572815534, + "c3": 1.6181229773462782, + "c4": 1.294498381877023, + "c5": 0.970873786407767, + "c6": 0.6472491909385111, + "c7": 0.32362459546925587 }, "rgb": [77, 76, 132] }, @@ -183660,23 +183660,23 @@ "year": 1763, "resistanceReported": false, "duration": 4924800, - "curveSeeds": { - "c1": -0.28648325562949495, - "c2": 0.7634587302985523, - "c3": 11.952649115807368, - "c4": 0.17032582688710285, - "c5": 3.7284640665606545, - "c6": -1.4803996426640502, - "c7": -0.6440016436119613 + "points": { + "c1": -11.409817722220165, + "c2": 16.42484335135354, + "c3": 0.24557115486930314, + "c4": 2.5732987775411473, + "c5": -5.078161241523363, + "c6": -9.342937434524513, + "c7": 0.23279925901213616 }, - "vertexSeeds": { - "c1": 2.8526943635432955, - "c2": 2.868701684251229, - "c3": 2.91259360724511, - "c4": 2.893194273608551, - "c5": 2.8823469263059347, - "c6": 2.8458087573733697, - "c7": 2.8707160532059257 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073494, + "c3": 3.4905224225612623, + "c4": 2.792417938048996, + "c5": 2.0943134535367642, + "c6": 1.396208969024498, + "c7": 0.6981044845122316 }, "rgb": [58, 15, 49] }, @@ -183687,23 +183687,23 @@ "year": 1763, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": 18.572920916783332, - "c2": 0.7177005089085071, - "c3": -5.043020108066287, - "c4": -21.007774881271878, - "c5": -21.785792554681546, - "c6": -19.000337645071372, - "c7": 8.773489533263433 + "points": { + "c1": -17.845735790781898, + "c2": -5.414827142551996, + "c3": 10.24494564233379, + "c4": -3.15086940148176, + "c5": 22.97544343711357, + "c6": 0.8035291439711933, + "c7": -16.623517220519126 }, - "vertexSeeds": { - "c1": 1.5876095680747666, - "c2": 1.5756149928182834, - "c3": 1.6228984839298315, - "c4": 1.599717080485696, - "c5": 1.6057502131011172, - "c6": 1.6248925269924968, - "c7": 1.6134508531771845 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.3578363384188608, + "c3": 1.9648636153490486, + "c4": 1.5718908922792363, + "c5": 1.1789181692094368, + "c6": 0.7859454461396247, + "c7": 0.39297272306981235 }, "rgb": [58, 15, 49] }, @@ -183714,23 +183714,23 @@ "year": 1763, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -22.34535553115048, - "c2": 32.27865942688255, - "c3": -22.270170046109868, - "c4": -5.390373844022552, - "c5": 10.479359265294924, - "c6": 21.915208141848666, - "c7": -24.788144199181517 + "points": { + "c1": 8.466714589078428, + "c2": 17.901272646639256, + "c3": -19.907047922053906, + "c4": -16.56679638629291, + "c5": 7.791407475395033, + "c6": -30.255884878249645, + "c7": 32.87461209297661 }, - "vertexSeeds": { - "c1": 5.211716504768875, - "c2": 5.197083076819577, - "c3": 5.2178813420030155, - "c4": 5.203414025476409, - "c5": 5.226171147916046, - "c6": 5.219336016197124, - "c7": 5.210269284811972 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859952, + "c3": 6.241331484050002, + "c4": 4.993065187240051, + "c5": 3.744798890429852, + "c6": 2.4965325936199014, + "c7": 1.2482662968099507 }, "rgb": [222, 0, 59] }, @@ -183741,23 +183741,23 @@ "year": 1763, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -21.999471634710034, - "c2": 14.742457828387373, - "c3": -17.67392515754765, - "c4": 9.013860730001191, - "c5": 36.42066490462743, - "c6": -2.1377114565348165, - "c7": 6.036737506819257 + "points": { + "c1": 23.22082827208424, + "c2": -29.55447792629252, + "c3": -27.898226101641306, + "c4": -19.15043654154703, + "c5": 18.14880829761732, + "c6": -4.302469915851368, + "c7": -9.300532173561386 }, - "vertexSeeds": { - "c1": 9.994782796670759, - "c2": 10.265985852317737, - "c3": 9.191585242171803, - "c4": 10.613770083734693, - "c5": 9.25942972309104, - "c6": 9.422281903364713, - "c7": 9.602653140422195 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725378, + "c3": 13.060564031437828, + "c4": 10.448451225150258, + "c5": 7.836338418862689, + "c6": 5.224225612575129, + "c7": 2.61211280628757 }, "rgb": [86, 146, 138] }, @@ -183768,23 +183768,23 @@ "year": 1763, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": 10.109439267271522, - "c2": 11.273198503760518, - "c3": -16.367736393678555, - "c4": 18.713453971252186, - "c5": 12.66091590461312, - "c6": 15.883416885846785, - "c7": -5.481017065456172 + "points": { + "c1": -4.109616049572146, + "c2": -22.357936822042326, + "c3": 16.005430963695467, + "c4": -0.3107708598825205, + "c5": 2.4164944114440026, + "c6": -5.201601870473169, + "c7": 16.94595319306638 }, - "vertexSeeds": { - "c1": 1.7380605335168469, - "c2": 1.5340895708790894, - "c3": 1.8560374161051416, - "c4": 1.8973142423242295, - "c5": 1.5593768785332873, - "c6": 1.7154095227266761, - "c7": 1.6740671747667033 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233006, + "c3": 2.427184466019417, + "c4": 1.9417475728155331, + "c5": 1.4563106796116512, + "c6": 0.9708737864077674, + "c7": 0.4854368932038837 }, "rgb": [238, 201, 159] }, @@ -183795,23 +183795,23 @@ "year": 1764, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": 6.882155783809999, - "c2": 45.21081387288716, - "c3": -20.633923461487157, - "c4": -0.6628056108549885, - "c5": -17.52377190721269, - "c6": -15.587993751708424, - "c7": -26.35524369004537 + "points": { + "c1": -53.592852692209156, + "c2": 11.104913510947057, + "c3": 47.22775135987321, + "c4": 31.287044292736212, + "c5": 12.215352509182566, + "c6": 48.631125420226425, + "c7": 47.75831248366268 }, - "vertexSeeds": { - "c1": 11.848110758377583, - "c2": 12.244461900064193, - "c3": 11.25894154811045, - "c4": 11.51712603186296, - "c5": 11.4682990436577, - "c6": 11.35772894230994, - "c7": 10.826239174091443 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.030513176144236, + "c3": 15.025427646786872, + "c4": 12.02034211742949, + "c5": 9.015256588072127, + "c6": 6.010171058714745, + "c7": 3.0050855293573626 }, "rgb": [77, 76, 132] }, @@ -183822,23 +183822,23 @@ "year": 1764, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -15.501280424313265, - "c2": 36.66445829211152, - "c3": -8.295537971013776, - "c4": 8.089805567215095, - "c5": -33.886152663612364, - "c6": -14.604986677497777, - "c7": -37.12822626438762 + "points": { + "c1": -31.986334664504575, + "c2": -25.981568077109927, + "c3": -26.23193461530426, + "c4": -13.83213539568128, + "c5": 25.49437335715065, + "c6": -15.175194846316671, + "c7": 2.84386218824573 }, - "vertexSeeds": { - "c1": 5.975697902816569, - "c2": 6.115674034458769, - "c3": 6.177432623840044, - "c4": 6.094128511128731, - "c5": 6.207612797362779, - "c6": 5.9371516964807265, - "c7": 5.946987248042838 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [238, 201, 159] }, @@ -183849,23 +183849,23 @@ "year": 1764, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -18.835889102311025, - "c2": 36.559109284851836, - "c3": -12.164015725182459, - "c4": 12.295997423137024, - "c5": 18.81547823547325, - "c6": -25.109940844417242, - "c7": 3.0724403155964737 + "points": { + "c1": -1.9449850529384207, + "c2": 41.26885304913481, + "c3": -39.42101616467145, + "c4": 36.00590926889678, + "c5": -41.88562804928401, + "c6": 23.996369959327943, + "c7": -36.422295339775005 }, - "vertexSeeds": { - "c1": 4.775882037865694, - "c2": 4.4927429310031215, - "c3": 4.620778459401453, - "c4": 4.668446003756448, - "c5": 4.61053842110402, - "c6": 4.451599861045112, - "c7": 4.640736979429576 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934818, + "c3": 5.709662505779009, + "c4": 4.567730004623212, + "c5": 3.425797503467402, + "c6": 2.283865002311606, + "c7": 1.1419325011557961 }, "rgb": [86, 146, 138] }, @@ -183876,23 +183876,23 @@ "year": 1763, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 35.09217480144368, - "c2": -26.561122384848012, - "c3": 23.801352883353957, - "c4": 34.87417634959288, - "c5": -12.353612626738563, - "c6": -31.339059393510055, - "c7": 26.33131284332603 + "points": { + "c1": -15.322298111733748, + "c2": -2.2137617478439324, + "c3": -11.499963744171627, + "c4": 33.153637106698916, + "c5": 16.20295368238341, + "c6": -5.286960389373114, + "c7": 3.893059878308115 }, - "vertexSeeds": { - "c1": 4.204837152172299, - "c2": 4.97343391330673, - "c3": 4.955529354218458, - "c4": 5.332999782928855, - "c5": 5.275225640204926, - "c6": 5.131100924587667, - "c7": 4.8115255997150985 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -183903,23 +183903,23 @@ "year": 1764, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 37.53072439699156, - "c2": 22.20563637046456, - "c3": -2.796495757619141, - "c4": 14.512975881881431, - "c5": -31.76708587201666, - "c6": 22.450475884792105, - "c7": -25.414373812729536 + "points": { + "c1": -7.298481738190354, + "c2": 38.72152765710882, + "c3": 5.699969744188564, + "c4": 23.131607632943883, + "c5": 1.4617665518649545, + "c6": 36.71278684812876, + "c7": 7.045889654251489 }, - "vertexSeeds": { - "c1": 10.503301686874, - "c2": 9.712108771401722, - "c3": 10.353428271391113, - "c4": 9.923662722152077, - "c5": 10.484431096016346, - "c6": 9.769055435422434, - "c7": 10.530865473976824 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961185, + "c3": 12.621359223300965, + "c4": 10.09708737864079, + "c5": 7.572815533980571, + "c6": 5.048543689320395, + "c7": 2.5242718446601975 }, "rgb": [238, 201, 159] }, @@ -183930,23 +183930,23 @@ "year": 1763, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -21.689340296723735, - "c2": 22.262052218511357, - "c3": 10.396706218948722, - "c4": -5.6655358897276535, - "c5": -32.539978832989306, - "c6": -15.47427268745033, - "c7": -18.146621974542267 + "points": { + "c1": -24.093980895860376, + "c2": -9.77828677245644, + "c3": 1.9610225521731337, + "c4": -2.0668295620733375, + "c5": -37.91211731891994, + "c6": 34.49566909225055, + "c7": 13.608625122392127 }, - "vertexSeeds": { - "c1": 4.703025072422702, - "c2": 4.707224393206091, - "c3": 4.973041089611373, - "c4": 4.759695401893667, - "c5": 4.366516431857177, - "c6": 5.008658258535366, - "c7": 4.936047876855047 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099818 }, "rgb": [58, 15, 49] }, @@ -183957,23 +183957,23 @@ "year": 1763, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -5.57723499719355, - "c2": -16.888642499951818, - "c3": -19.915048528684153, - "c4": 2.848386243833211, - "c5": -14.961312795660877, - "c6": 6.146294992475362, - "c7": 30.400315301894906 + "points": { + "c1": -15.331418349548063, + "c2": 20.130986250212004, + "c3": -21.783025489015543, + "c4": 24.447921459406764, + "c5": 20.69612989093416, + "c6": -29.268005423504583, + "c7": 0.48278122995371575 }, - "vertexSeeds": { - "c1": 5.875256122860742, - "c2": 6.0969172173604065, - "c3": 6.36429934556065, - "c4": 5.875850081564612, - "c5": 5.789452059576362, - "c6": 6.004823911208864, - "c7": 6.648821100328799 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.70873786407767, + "c3": 8.09061488673139, + "c4": 6.472491909385108, + "c5": 4.854368932038828, + "c6": 3.236245954692548, + "c7": 1.618122977346268 }, "rgb": [77, 76, 132] }, @@ -183984,23 +183984,23 @@ "year": 1763, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -4.724217410029137, - "c2": 26.460077593385492, - "c3": 27.752945451704832, - "c4": -22.620961756063625, - "c5": 29.98006987584442, - "c6": 0.8832983564474688, - "c7": 29.053799208547623 + "points": { + "c1": 27.804764681998066, + "c2": 23.693985815711706, + "c3": -6.508897052876257, + "c4": 6.080000403416328, + "c5": -33.251543688601224, + "c6": 24.40829607874555, + "c7": -15.54033958111598 }, - "vertexSeeds": { - "c1": 11.167723067410181, - "c2": 10.017911028051723, - "c3": 11.61908979080977, - "c4": 10.685646475354144, - "c5": 9.857227078273443, - "c6": 10.569958062397143, - "c7": 10.307396323211902 + "offsets": { + "c1": 19.676375404530745, + "c2": 16.865464632454916, + "c3": 14.054553860379109, + "c4": 11.243643088303282, + "c5": 8.432732316227474, + "c6": 5.621821544151645, + "c7": 2.8109107720758177 }, "rgb": [58, 15, 49] }, @@ -184011,23 +184011,23 @@ "year": 1763, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 4.117241017109233, - "c2": 24.501316769332515, - "c3": -13.901716850268855, - "c4": -5.735646779081257, - "c5": -15.266996131731977, - "c6": 27.795246970999028, - "c7": 2.6569094161308975 + "points": { + "c1": 6.822384686781078, + "c2": 31.187289994368626, + "c3": -31.591483301439972, + "c4": -23.843437958050743, + "c5": 27.24187118315799, + "c6": -22.766272188126422, + "c7": 9.996108850197103 }, - "vertexSeeds": { - "c1": 4.328815792748166, - "c2": 4.76026785370273, - "c3": 4.42631267264947, - "c4": 4.0748874231872, - "c5": 4.776528519715244, - "c6": 4.15438490298791, - "c7": 4.131386134857174 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -184038,23 +184038,23 @@ "year": 1763, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -9.376169971669597, - "c2": 20.10381818903587, - "c3": -2.4705182626166398, - "c4": -10.337476815005392, - "c5": -4.551438442571051, - "c6": 12.64906777317961, - "c7": 9.437112958542606 + "points": { + "c1": -5.119392748915043, + "c2": -24.528207118901356, + "c3": 5.497251203565625, + "c4": 11.551953164198665, + "c5": -8.192262683937784, + "c6": 6.265910032857519, + "c7": 5.644039830509996 }, - "vertexSeeds": { - "c1": 4.126614488584579, - "c2": 3.8760963696280863, - "c3": 3.9600991727500237, - "c4": 4.0649295727015105, - "c5": 4.053664634718125, - "c6": 4.059112738789494, - "c7": 4.342579876496279 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [77, 76, 132] }, @@ -184065,23 +184065,23 @@ "year": 1764, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 35.20294623561372, - "c2": 23.768413552816845, - "c3": -29.450588522733288, - "c4": -1.04058140930929, - "c5": -25.44834426520385, - "c6": -1.591513111550917, - "c7": -9.781785861876184 + "points": { + "c1": 20.454029097646796, + "c2": 5.4709620803497, + "c3": 2.148259320042399, + "c4": -28.152426004233842, + "c5": 32.05580477128497, + "c6": 26.515142988250005, + "c7": 4.36933581118533 }, - "vertexSeeds": { - "c1": 4.961181465161464, - "c2": 5.139634312072039, - "c3": 4.8438480370495025, - "c4": 5.060009371349451, - "c5": 5.132826069465968, - "c6": 4.424523569354306, - "c7": 4.327760232660189 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.4063800277392495, + "c3": 6.171983356449378, + "c4": 4.937586685159499, + "c5": 3.703190013869627, + "c6": 2.4687933425797497, + "c7": 1.2343966712898724 }, "rgb": [86, 146, 138] }, @@ -184092,23 +184092,23 @@ "year": 1764, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": 46.52121508947152, - "c2": -42.24584408721762, - "c3": -49.559288096146545, - "c4": 19.144467455327295, - "c5": 43.46881545600649, - "c6": -2.5130539610536715, - "c7": -32.593836352721674 + "points": { + "c1": -55.2108512902392, + "c2": 21.545048693468082, + "c3": -25.29997594034358, + "c4": 34.27549901187786, + "c5": -21.1626118221861, + "c6": 5.337262924405444, + "c7": 6.678863552367055 }, - "vertexSeeds": { - "c1": 7.1060689483796295, - "c2": 6.752637472088067, - "c3": 6.230536608443085, - "c4": 6.408887376800879, - "c5": 7.087212368177601, - "c6": 6.458902997286994, - "c7": 5.904557335284829 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [222, 0, 59] }, @@ -184119,23 +184119,23 @@ "year": 1763, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 14.152713381334848, - "c2": 21.50796114196539, - "c3": 11.410932087614853, - "c4": 0.4996792520312532, - "c5": -6.874462729856052, - "c6": 12.130568699995706, - "c7": 18.28249642690067 + "points": { + "c1": 17.76917110098354, + "c2": -5.060011281708846, + "c3": 21.41219988755639, + "c4": -20.554046661873937, + "c5": 22.525252467143417, + "c6": -20.46285512028855, + "c7": 23.124536132771695 }, - "vertexSeeds": { - "c1": 8.57073914837288, - "c2": 9.65356421005215, - "c3": 7.976947772730563, - "c4": 9.153173414059221, - "c5": 8.944444294345363, - "c6": 8.920878833934905, - "c7": 8.564621218455326 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011096, + "c3": 11.558021266759129, + "c4": 9.246417013407306, + "c5": 6.9348127600554745, + "c6": 4.623208506703653, + "c7": 2.3116042533518315 }, "rgb": [58, 15, 49] }, @@ -184146,23 +184146,23 @@ "year": 1764, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -12.265024746822768, - "c2": -37.51417616492975, - "c3": -21.361304064256448, - "c4": 29.051476368999133, - "c5": 4.849157701968785, - "c6": 2.274254683459432, - "c7": -36.88439402495164 + "points": { + "c1": 34.31750545290036, + "c2": 22.041085357521055, + "c3": 8.648058924960282, + "c4": -8.122184595293142, + "c5": -16.157311861026777, + "c6": -30.404426929485567, + "c7": 15.880070578352992 }, - "vertexSeeds": { - "c1": 6.247383919008888, - "c2": 6.526673652945306, - "c3": 6.3624774905935215, - "c4": 6.398622997190021, - "c5": 6.218389858421381, - "c6": 6.218931942773081, - "c7": 6.565176429799129 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037445, + "c3": 8.06749884419787, + "c4": 6.4539990753583085, + "c5": 4.840499306518732, + "c6": 3.2269995376791543, + "c7": 1.6134997688395771 }, "rgb": [86, 146, 138] }, @@ -184173,23 +184173,23 @@ "year": 1763, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 3.1867823406649265, - "c2": -18.29937904569039, - "c3": 17.299627422482015, - "c4": -16.554544802456093, - "c5": 22.550179904290314, - "c6": -2.479073126065689, - "c7": -12.502508219810249 + "points": { + "c1": 10.727393377901375, + "c2": -9.825234056574839, + "c3": 15.06437514296299, + "c4": 4.027883803105844, + "c5": -17.459991538934105, + "c6": 16.985521070932865, + "c7": 10.149473206244767 }, - "vertexSeeds": { - "c1": 2.0954962325214064, - "c2": 2.2381362193493, - "c3": 2.17894534505537, - "c4": 2.2809870489446, - "c5": 2.4585381939979274, - "c6": 2.175134320333451, - "c7": 2.2013992268230047 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288503, + "c3": 3.0050855293573737, + "c4": 2.4040684234859, + "c5": 1.8030513176144263, + "c6": 1.20203421174295, + "c7": 0.6010171058714762 }, "rgb": [222, 0, 59] }, @@ -184200,23 +184200,23 @@ "year": 1763, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -22.010339514762308, - "c2": 11.893545443331014, - "c3": -11.662284399350028, - "c4": 27.405348548535564, - "c5": 9.294078401937114, - "c6": -3.489413540433741, - "c7": -20.788657369611215 + "points": { + "c1": 7.62189824606083, + "c2": -17.313239450940195, + "c3": 25.30998409661239, + "c4": 22.07901803918371, + "c5": -31.5526501358444, + "c6": -17.75429349942035, + "c7": -1.6990026353608378 }, - "vertexSeeds": { - "c1": 6.204799001307419, - "c2": 5.985670606392819, - "c3": 6.110832488307381, - "c4": 5.919271697736647, - "c5": 6.098836505306523, - "c6": 5.956838882270826, - "c7": 6.381931099303359 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.2371705963939, + "c3": 7.697642163661575, + "c4": 6.158113730929263, + "c5": 4.61858529819695, + "c6": 3.0790568654646377, + "c7": 1.5395284327323124 }, "rgb": [77, 76, 132] }, @@ -184227,23 +184227,23 @@ "year": 1764, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 37.1546644968652, - "c2": -0.5635613169182463, - "c3": 31.279583363950614, - "c4": -13.26117149622608, - "c5": 6.7507195041824275, - "c6": -20.67559099254587, - "c7": 2.7452458178294066 + "points": { + "c1": -32.075517858804076, + "c2": 32.55939719270618, + "c3": -35.27146402050333, + "c4": 23.317366644960202, + "c5": 14.447396072658151, + "c6": 3.7633291096435997, + "c7": 18.88050517715196 }, - "vertexSeeds": { - "c1": 7.414673861583926, - "c2": 7.604660538179719, - "c3": 8.141331679891723, - "c4": 7.46736793801585, - "c5": 7.670943967977037, - "c6": 7.534603424369279, - "c7": 7.723113930240033 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.92787794729542, + "c3": 9.93989828941286, + "c4": 7.951918631530285, + "c5": 5.96393897364771, + "c6": 3.9759593157651345, + "c7": 1.987979657882575 }, "rgb": [222, 0, 59] }, @@ -184254,23 +184254,23 @@ "year": 1763, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -25.511044370105246, - "c2": 3.3506626922685427, - "c3": -28.12835353275524, - "c4": -28.7582169745186, - "c5": -9.675959615088221, - "c6": -11.967231158049806, - "c7": -17.375289469109838 + "points": { + "c1": 27.304210503443997, + "c2": -24.212111601025835, + "c3": 18.419095435156663, + "c4": -35.974779813645, + "c5": 1.9374043815184407, + "c6": -10.984668620010567, + "c7": -26.97004414509173 }, - "vertexSeeds": { - "c1": 11.100422743224712, - "c2": 11.016836374405866, - "c3": 10.811965707399917, - "c4": 11.354720782652103, - "c5": 11.312377917960937, - "c6": 11.223239944908089, - "c7": 10.548111832960963 + "offsets": { + "c1": 19.02912621359223, + "c2": 16.31067961165049, + "c3": 13.592233009708748, + "c4": 10.873786407767009, + "c5": 8.155339805825225, + "c6": 5.436893203883483, + "c7": 2.7184466019417415 }, "rgb": [222, 0, 59] }, @@ -184281,23 +184281,23 @@ "year": 1763, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -14.088638980301319, - "c2": -14.735210254106894, - "c3": 13.96622881442795, - "c4": -1.6073716917138192, - "c5": -9.127517177068246, - "c6": 10.388387493617543, - "c7": -15.749683971631208 + "points": { + "c1": 23.20460576500171, + "c2": 3.539374605234208, + "c3": 16.371440033393604, + "c4": 8.28785535601807, + "c5": -1.5820377403580643, + "c6": -18.5119300786168, + "c7": -25.801948879588092 }, - "vertexSeeds": { - "c1": 1.3203126703274939, - "c2": 1.2855962337173548, - "c3": 1.295502092691426, - "c4": 1.432073922032879, - "c5": 1.4050508611153656, - "c6": 1.4256994909295195, - "c7": 1.3124642611951558 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.1081830790568636, + "c3": 1.7568192325473886, + "c4": 1.405455386037909, + "c5": 1.054091539528434, + "c6": 0.7027276930189545, + "c7": 0.3513638465094754 }, "rgb": [86, 146, 138] }, @@ -184308,23 +184308,23 @@ "year": 1764, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -22.254797015325305, - "c2": -34.73273382520145, - "c3": -29.596980421122925, - "c4": 5.173443752532023, - "c5": 11.751981058402805, - "c6": -25.276830199129797, - "c7": -12.551800885037334 + "points": { + "c1": 0.9291475945964436, + "c2": 8.435025036756194, + "c3": 5.791924818412419, + "c4": -4.390218951142586, + "c5": 39.82136662800551, + "c6": -40.2956233107815, + "c7": -33.89721398528803 }, - "vertexSeeds": { - "c1": 0.9789522169662974, - "c2": 0.9842333530111745, - "c3": 0.9969407761563586, - "c4": 0.9491226282314129, - "c5": 0.9065360027681548, - "c6": 0.9504393251317, - "c7": 0.9164511954719877 + "offsets": { + "c1": 1.715210355987055, + "c2": 1.4701803051317617, + "c3": 1.2251502542764685, + "c4": 0.9801202034211752, + "c5": 0.735090152565882, + "c6": 0.49006010171058656, + "c7": 0.24503005085529533 }, "rgb": [58, 15, 49] }, @@ -184335,23 +184335,23 @@ "year": 1763, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -11.605137754549133, - "c2": 6.260900783232692, - "c3": 18.618793676766536, - "c4": 29.243874430126695, - "c5": -5.650391392522977, - "c6": -16.999649424083444, - "c7": 17.10790095542447 + "points": { + "c1": -15.744288140597188, + "c2": -16.573594205834617, + "c3": -0.8851704482211709, + "c4": 24.736375167346488, + "c5": -22.026034945043456, + "c6": -27.117268048857433, + "c7": -31.022602499001604 }, - "vertexSeeds": { - "c1": 2.8823057211373526, - "c2": 3.017437617482974, - "c3": 3.1366220497623893, - "c4": 3.156126193373739, - "c5": 3.0226861877738096, - "c6": 3.0515050527289884, - "c7": 3.0435383901894424 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636612, + "c3": 3.814147018030514, + "c4": 3.051317614424408, + "c5": 2.28848821081831, + "c6": 1.525658807212204, + "c7": 0.762829403606098 }, "rgb": [222, 0, 59] }, @@ -184362,23 +184362,23 @@ "year": 1765, "resistanceReported": false, "duration": 56592000, - "curveSeeds": { - "c1": -39.587612949944074, - "c2": -38.75408681844045, - "c3": -36.54933740674487, - "c4": 27.021958526369062, - "c5": 66.89429765897091, - "c6": 45.05397826707548, - "c7": 35.450025036982126 + "points": { + "c1": 11.104147012145845, + "c2": 61.700181938406814, + "c3": 11.398283901721967, + "c4": -44.769019804581234, + "c5": -65.19662800726725, + "c6": -38.73346327725292, + "c7": -61.25514960525182 }, - "vertexSeeds": { - "c1": 7.630562475965116, - "c2": 7.502242915053166, - "c3": 7.296291650237279, - "c4": 7.174594040641017, - "c5": 7.5102457934972024, - "c6": 7.562596955666266, - "c7": 7.403200167678745 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927875, + "c3": 9.153952843273222, + "c4": 7.323162274618573, + "c5": 5.492371705963923, + "c6": 3.661581137309301, + "c7": 1.8307905686546504 }, "rgb": [238, 201, 159] }, @@ -184389,23 +184389,23 @@ "year": 1764, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -23.87846995571293, - "c2": -7.759305331182915, - "c3": 11.928419542551524, - "c4": 35.604027675975225, - "c5": -14.796827233068708, - "c6": -6.007537461170102, - "c7": -2.646038005366293 + "points": { + "c1": -21.406538663710798, + "c2": -22.86212568444992, + "c3": 33.05961023568455, + "c4": 17.51196485230647, + "c5": 30.37979904047807, + "c6": -42.5137132372212, + "c7": -8.602280300612911 }, - "vertexSeeds": { - "c1": 5.855960932576784, - "c2": 5.340055870958371, - "c3": 5.704347475791543, - "c4": 6.450049818530166, - "c5": 5.367712825426642, - "c6": 6.161063718811182, - "c7": 5.38985085611225 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474339, + "c3": 7.743874248728622, + "c4": 6.1950993989828955, + "c5": 4.646324549237169, + "c6": 3.097549699491443, + "c7": 1.5487748497457265 }, "rgb": [222, 0, 59] }, @@ -184416,23 +184416,23 @@ "year": 1764, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 35.68839625277937, - "c2": -23.40190302572315, - "c3": -18.260423152804446, - "c4": 16.837778099259474, - "c5": 5.641376833935759, - "c6": 4.4669517527241, - "c7": -35.42304358491396 + "points": { + "c1": 12.97210463787956, + "c2": 24.923654573237144, + "c3": 27.105411929468886, + "c4": -11.635868575748436, + "c5": 12.96429907411217, + "c6": 24.54898992697764, + "c7": 21.93386787121699 }, - "vertexSeeds": { - "c1": 1.7004895365459638, - "c2": 1.6966361823480363, - "c3": 1.8704067102865998, - "c4": 1.7945057430396176, - "c5": 1.6709981249830619, - "c6": 1.829910590926156, - "c7": 1.8726670373656595 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.718446601941749, + "c3": 2.265372168284789, + "c4": 1.8122977346278328, + "c5": 1.3592233009708725, + "c6": 0.9061488673139164, + "c7": 0.4530744336569561 }, "rgb": [77, 76, 132] }, @@ -184443,23 +184443,23 @@ "year": 1764, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 30.14952623462976, - "c2": -15.011385206198195, - "c3": 30.40451921350939, - "c4": -36.01882447494663, - "c5": 37.221848918102424, - "c6": -15.984707235765047, - "c7": 15.393308050915579 + "points": { + "c1": 35.47383749631176, + "c2": 29.92177258678724, + "c3": -18.245724005909096, + "c4": 39.486751135327765, + "c5": 16.20120719199896, + "c6": 35.34284203438011, + "c7": 25.686005223210785 }, - "vertexSeeds": { - "c1": 8.994189175518976, - "c2": 9.078546191336553, - "c3": 7.653896257235653, - "c4": 8.818576581444248, - "c5": 7.078695307138209, - "c6": 7.0416149440735705, - "c7": 8.590117747229055 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871016, + "c3": 7.397133610725843, + "c4": 5.9177068885806765, + "c5": 4.438280166435506, + "c6": 2.9588534442903383, + "c7": 1.4794267221451711 }, "rgb": [222, 0, 59] }, @@ -184470,23 +184470,23 @@ "year": 1764, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 12.841278424399327, - "c2": 35.458002411715455, - "c3": -14.10081441421082, - "c4": 10.967960223887438, - "c5": 3.786101644791458, - "c6": 9.505781018327433, - "c7": 27.03871174463339 + "points": { + "c1": -3.7772378177458776, + "c2": 35.90340840851836, + "c3": -4.732202779798328, + "c4": 3.3824126832557013, + "c5": -0.9854808555477632, + "c6": 29.015267698819144, + "c7": -36.32035780761995 }, - "vertexSeeds": { - "c1": 5.590616591483643, - "c2": 5.6317433365739715, - "c3": 5.493244122237736, - "c4": 5.807118429883356, - "c5": 5.485801101383428, - "c6": 5.478669735731249, - "c7": 5.9233459374313515 + "offsets": { + "c1": 10, + "c2": 8.571428571428571, + "c3": 7.142857142857143, + "c4": 5.7142857142857135, + "c5": 4.285714285714286, + "c6": 2.8571428571428568, + "c7": 1.4285714285714284 }, "rgb": [77, 76, 132] }, @@ -184497,23 +184497,23 @@ "year": 1764, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 35.47329222820013, - "c2": -38.73342756183622, - "c3": -24.869282596550292, - "c4": 8.775396034667665, - "c5": 37.46719198454668, - "c6": 42.54595640282188, - "c7": 11.499397371738148 + "points": { + "c1": -21.175134541339844, + "c2": -39.180426722157485, + "c3": 14.098196460538482, + "c4": -39.14501867887367, + "c5": 24.37413995387761, + "c6": 27.119827156841602, + "c7": -10.986439746727555 }, - "vertexSeeds": { - "c1": 6.115611453082027, - "c2": 5.910177567907261, - "c3": 6.408114597720982, - "c4": 6.005804050841522, - "c5": 6.553397804597694, - "c6": 6.503252415861203, - "c7": 6.261151147858628 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.93065187239945, + "c3": 8.275543226999536, + "c4": 6.620434581599634, + "c5": 4.9653259361997195, + "c6": 3.310217290799817, + "c7": 1.655108645399903 }, "rgb": [58, 15, 49] }, @@ -184524,23 +184524,23 @@ "year": 1764, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -27.77647968561326, - "c2": 31.00643817028208, - "c3": -11.155703531259167, - "c4": -10.710059064303564, - "c5": -4.487503962200236, - "c6": -14.380956481501265, - "c7": 6.801726273349033 + "points": { + "c1": 12.712283138719549, + "c2": 12.285357951196275, + "c3": 11.979862065807879, + "c4": -3.718427044580089, + "c5": -19.69702324131098, + "c6": -15.142955568211487, + "c7": -1.205960552900308 }, - "vertexSeeds": { - "c1": 7.625179932323114, - "c2": 7.566409764792901, - "c3": 7.779535375920767, - "c4": 6.98334603855255, - "c5": 7.816600331694389, - "c6": 6.988134706256246, - "c7": 8.056310091371191 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893208, + "c3": 9.708737864077666, + "c4": 7.766990291262133, + "c5": 5.825242718446604, + "c6": 3.8834951456310614, + "c7": 1.9417475728155307 }, "rgb": [58, 15, 49] }, @@ -184551,23 +184551,23 @@ "year": 1764, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 49.017514547782845, - "c2": -24.80468725790057, - "c3": -41.61752874714365, - "c4": 0.22410551990537186, - "c5": 5.984459252439869, - "c6": 49.53874579964492, - "c7": -9.86321721030906 + "points": { + "c1": 21.84098489880521, + "c2": -42.030180070487354, + "c3": -0.7687251397420951, + "c4": -6.706525244008034, + "c5": -7.7889905149407355, + "c6": 14.695506404852303, + "c7": 33.948223545848656 }, - "vertexSeeds": { - "c1": 6.0831595168977675, - "c2": 5.653023680996054, - "c3": 6.263331024681497, - "c4": 5.431298907001098, - "c5": 6.118877231046876, - "c6": 5.469749494377006, - "c7": 6.247001915131899 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [58, 15, 49] }, @@ -184578,23 +184578,23 @@ "year": 1763, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 4.713528798153813, - "c2": -16.7253922970688, - "c3": 16.229758291972253, - "c4": -23.783919154441218, - "c5": 15.173559669244995, - "c6": -3.862872503268928, - "c7": 3.3241972031643456 + "points": { + "c1": 6.176554349118334, + "c2": 11.390280717604746, + "c3": 11.847432459181654, + "c4": -19.44736750390547, + "c5": -2.8763728881923, + "c6": -19.030200170974723, + "c7": -3.3848185831717927 }, - "vertexSeeds": { - "c1": 3.178870404863213, - "c2": 3.2031233359030917, - "c3": 3.1040964914844142, - "c4": 3.0870120482129306, - "c5": 3.1626150703360834, - "c6": 3.061757845758208, - "c7": 3.146550977811947 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998616, + "c3": 4.022191400832176, + "c4": 3.2177531206657446, + "c5": 2.4133148404993037, + "c6": 1.6088765603328723, + "c7": 0.8044382801664313 }, "rgb": [77, 76, 132] }, @@ -184605,23 +184605,23 @@ "year": 1764, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": -40.39412384747456, - "c2": 24.12757366470673, - "c3": 28.539779169846966, - "c4": -0.9891308398003957, - "c5": -43.39481240045212, - "c6": 17.282228586225486, - "c7": 34.15624058956497 + "points": { + "c1": -49.07952851621374, + "c2": -0.8726517726312011, + "c3": -15.01393230077555, + "c4": -10.796557486885298, + "c5": -47.62656708437605, + "c6": -23.91563939928174, + "c7": 0.743840064002093 }, - "vertexSeeds": { - "c1": 6.845471195383375, - "c2": 6.544954511699458, - "c3": 6.615157507075415, - "c4": 6.480895859615613, - "c5": 6.394111119240791, - "c6": 6.586586538657649, - "c7": 6.867787313630977 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600552, + "c3": 8.391123439667123, + "c4": 6.712898751733696, + "c5": 5.034674063800287, + "c6": 3.3564493758668577, + "c7": 1.6782246879334288 }, "rgb": [222, 0, 59] }, @@ -184632,23 +184632,23 @@ "year": 1764, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 15.807172108441527, - "c2": 29.022143381044188, - "c3": 14.785373647309427, - "c4": -5.426962164368746, - "c5": -24.632990151399458, - "c6": 19.346994101478806, - "c7": 31.276191107361555 + "points": { + "c1": 0.30918870678706156, + "c2": 3.480010681527631, + "c3": 25.266866054310782, + "c4": -34.16719951223123, + "c5": 9.775197374519756, + "c6": 17.545231034892915, + "c7": -22.419670547337702 }, - "vertexSeeds": { - "c1": 4.391447525399881, - "c2": 4.184831528318171, - "c3": 4.062466798003081, - "c4": 4.632852530143885, - "c5": 4.381735794885397, - "c6": 4.180249218544331, - "c7": 4.421339032724846 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.7961165048543695, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271816, + "c6": 2.2653721682847876, + "c7": 1.1326860841423938 }, "rgb": [77, 76, 132] }, @@ -184659,23 +184659,23 @@ "year": 1763, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 18.34870956049247, - "c2": -13.56919893362476, - "c3": 14.069802544198819, - "c4": 2.17697564474647, - "c5": 26.95047316761831, - "c6": 1.0083318201875642, - "c7": 29.187707053209255 + "points": { + "c1": -16.831101665405058, + "c2": -11.704404878309557, + "c3": -10.144629698024826, + "c4": -6.18127129237261, + "c5": -15.81198352782858, + "c6": 13.079551703915474, + "c7": 12.533536798781544 }, - "vertexSeeds": { - "c1": 4.557529351725321, - "c2": 4.139008406923087, - "c3": 4.334615724368124, - "c4": 5.326428314719434, - "c5": 4.171606838218511, - "c6": 5.114074657302915, - "c7": 4.437490830362039 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -184686,23 +184686,23 @@ "year": 1764, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -9.363407243863158, - "c2": 11.874788778758045, - "c3": -38.373582519274976, - "c4": 20.459654134651522, - "c5": -26.468997033744817, - "c6": 6.216938293624246, - "c7": 39.04120852746237 + "points": { + "c1": -3.5443191883937146, + "c2": 8.654079707877408, + "c3": 2.6930116993585145, + "c4": -4.912330756133201, + "c5": 37.83853426941127, + "c6": 14.718541448093887, + "c7": 2.949203211396423 }, - "vertexSeeds": { - "c1": 11.851474814889364, - "c2": 11.826341918778985, - "c3": 11.797851235525123, - "c4": 11.82537231610245, - "c5": 11.862202559368413, - "c6": 11.858229435142373, - "c7": 11.819568893523845 + "offsets": { + "c1": 19.80582524271845, + "c2": 16.976421636615708, + "c3": 14.147018030513339, + "c4": 11.317614424410596, + "c5": 8.488210818307854, + "c6": 5.65880721220511, + "c7": 2.8294036061027423 }, "rgb": [238, 201, 159] }, @@ -184713,23 +184713,23 @@ "year": 1764, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -16.590210213480198, - "c2": -4.132146051917168, - "c3": 36.221709194581514, - "c4": -35.218518181835634, - "c5": 42.60252088798922, - "c6": -38.34793252720246, - "c7": 32.224083592903376 + "points": { + "c1": -26.690018141871864, + "c2": -4.460337878510373, + "c3": -8.977754682278032, + "c4": -10.350224307325313, + "c5": 25.781770789607158, + "c6": 12.332597888976473, + "c7": -40.25050911021395 }, - "vertexSeeds": { - "c1": 2.6063378106820254, - "c2": 2.930042797987425, - "c3": 2.6299892640528215, - "c4": 2.7065687311304005, - "c5": 2.904378764619138, - "c6": 2.894358874562307, - "c7": 2.690654761938845 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.5136384650947794, + "c4": 2.8109107720758217, + "c5": 2.1081830790568645, + "c6": 1.4054553860379073, + "c7": 0.7027276930189573 }, "rgb": [58, 15, 49] }, @@ -184740,23 +184740,23 @@ "year": 1764, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -4.736046388677551, - "c2": -21.915289661351473, - "c3": -30.261928062033874, - "c4": 39.35891795964156, - "c5": 22.269684087902405, - "c6": -27.518758406312283, - "c7": -3.0958456836803308 + "points": { + "c1": -0.24137627399689165, + "c2": -34.21230481941415, + "c3": -41.20048187555385, + "c4": -38.41343038206542, + "c5": 22.159638755772818, + "c6": -38.46361920378131, + "c7": 18.007779198230416 }, - "vertexSeeds": { - "c1": 7.788679149640655, - "c2": 7.8621861677256675, - "c3": 7.656731442299337, - "c4": 7.547718023607833, - "c5": 7.832173717815353, - "c6": 8.083885916717696, - "c7": 7.432322934257822 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852971, + "c3": 9.685621821544155, + "c4": 7.748497457235314, + "c5": 5.811373092926497, + "c6": 3.874248728617657, + "c7": 1.937124364308818 }, "rgb": [86, 146, 138] }, @@ -184767,23 +184767,23 @@ "year": 1764, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 3.9255949655075355, - "c2": 27.328873873137255, - "c3": -14.219999836817326, - "c4": -19.62855684947984, - "c5": 7.218443035805599, - "c6": 3.6649900250834975, - "c7": 28.924020319366583 + "points": { + "c1": -31.409901395134963, + "c2": 20.624368105958666, + "c3": -18.385908120269782, + "c4": -29.996783675565943, + "c5": -22.937832627626086, + "c6": 16.380656629802708, + "c7": -22.09720741157166 }, - "vertexSeeds": { - "c1": 4.972188251662381, - "c2": 4.507352777497363, - "c3": 4.723254675704102, - "c4": 5.015894845819993, - "c5": 4.796539171407157, - "c6": 5.195177674550817, - "c7": 4.282307385424599 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099818 }, "rgb": [58, 15, 49] }, @@ -184794,23 +184794,23 @@ "year": 1764, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -12.126816609047992, - "c2": 43.7120450317592, - "c3": -9.009272281930507, - "c4": -6.271728297634311, - "c5": -0.5618725644459417, - "c6": -30.955183501000196, - "c7": 20.587326031810022 + "points": { + "c1": -40.73861319354421, + "c2": 34.447364931736956, + "c3": -6.272974502076593, + "c4": 28.019308937803487, + "c5": -8.147839567651538, + "c6": -44.831363860730164, + "c7": 12.926726063740972 }, - "vertexSeeds": { - "c1": 2.7235857164458865, - "c2": 2.5472567551465235, - "c3": 2.7128717079365297, - "c4": 2.729689557580985, - "c5": 2.4834235866521577, - "c6": 2.67688130331508, - "c7": 2.746339261920914 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919565, + "c3": 3.3287101248266318, + "c4": 2.6629680998612986, + "c5": 1.9972260748959743, + "c6": 1.3314840499306493, + "c7": 0.6657420249653246 }, "rgb": [238, 201, 159] }, @@ -184821,23 +184821,23 @@ "year": 1764, "resistanceReported": true, "duration": 33350400, - "curveSeeds": { - "c1": -8.47159746397869, - "c2": 39.56906006581421, - "c3": 8.102397136464823, - "c4": -0.20473723329985205, - "c5": -15.488619241782335, - "c6": -1.6556962208831152, - "c7": -28.60670812170886 + "points": { + "c1": -39.049699360154385, + "c2": 44.762547428691235, + "c3": -30.993593530837828, + "c4": -18.406604316729087, + "c5": 7.506230986924322, + "c6": -14.451649084466375, + "c7": -26.978798585938797 }, - "vertexSeeds": { - "c1": 4.551086247481323, - "c2": 4.547410898578925, - "c3": 4.597871686626195, - "c4": 4.439938017590658, - "c5": 4.608095489073847, - "c6": 4.540706647870476, - "c7": 4.480728323711007 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.6296809986130345, + "c3": 5.5247341655108695, + "c4": 4.419787332408693, + "c5": 3.3148404993065173, + "c6": 2.209893666204341, + "c7": 1.1049468331021763 }, "rgb": [58, 15, 49] }, @@ -184848,23 +184848,23 @@ "year": 1764, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 23.346153968239626, - "c2": -23.89724908813985, - "c3": 12.55664308698104, - "c4": -28.31720091347028, - "c5": -14.288567309073112, - "c6": -23.036060846914488, - "c7": 2.2213315556206368 + "points": { + "c1": -19.558246893948454, + "c2": -25.357353217465313, + "c3": 13.937239363115502, + "c4": 8.029463730302233, + "c5": 8.419135285164998, + "c6": -0.3489475411766918, + "c7": -5.962423800644448 }, - "vertexSeeds": { - "c1": 6.37518808559249, - "c2": 6.428358615616338, - "c3": 6.359115573139062, - "c4": 6.381821376570564, - "c5": 6.384717527066512, - "c6": 6.414088038494716, - "c7": 6.389841089928439 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.20943134535372, + "c3": 7.674526121127997, + "c4": 6.139620896902428, + "c5": 4.60471567267686, + "c6": 3.0698104484512903, + "c7": 1.534905224225569 }, "rgb": [58, 15, 49] }, @@ -184875,23 +184875,23 @@ "year": 1764, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 13.616139358267397, - "c2": 27.722086224792754, - "c3": -14.206137076505048, - "c4": 24.283221408397992, - "c5": -1.9815091874893014, - "c6": 6.537559650266516, - "c7": 32.10892399158702 + "points": { + "c1": -8.038387533377318, + "c2": -17.258625293192313, + "c3": 28.203564038413447, + "c4": -24.783013922842578, + "c5": -7.447179497797158, + "c6": -30.60208718936128, + "c7": -1.75525910826709 }, - "vertexSeeds": { - "c1": 4.071508995258763, - "c2": 4.098367098556252, - "c3": 4.781344907591492, - "c4": 4.423081108172195, - "c5": 4.834449453189523, - "c6": 4.4851171406767385, - "c7": 4.4182819404139275 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -184902,23 +184902,23 @@ "year": 1764, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 16.54508470569605, - "c2": -15.244927208775593, - "c3": 10.884807023569977, - "c4": -18.547987963566282, - "c5": 29.809143721810912, - "c6": -31.165410793733265, - "c7": 28.86126724245141 + "points": { + "c1": 23.598214332321767, + "c2": -2.6870127619147297, + "c3": -21.86378253975566, + "c4": 17.047669141135117, + "c5": 12.191762049611263, + "c6": 30.550429616399853, + "c7": 24.82432199510251 }, - "vertexSeeds": { - "c1": 8.317694617602003, - "c2": 8.471612256844882, - "c3": 8.322421490555364, - "c4": 7.678464444557153, - "c5": 8.347412652490009, - "c6": 7.848175364180078, - "c7": 7.883886837860617 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.2884882108183, + "c3": 10.240406842348591, + "c4": 8.192325473878867, + "c5": 6.144244105409157, + "c6": 4.096162736939434, + "c7": 2.0480813684697106 }, "rgb": [222, 0, 59] }, @@ -184929,23 +184929,23 @@ "year": 1764, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 2.1741907887676533, - "c2": 5.986205296499534, - "c3": -29.90846800366171, - "c4": -28.03775212823073, - "c5": 36.801574567803264, - "c6": 28.43297369799958, - "c7": 1.033963548346044 + "points": { + "c1": -30.948734806580582, + "c2": 1.6918785150114033, + "c3": 27.731563164678427, + "c4": -27.128656211103646, + "c5": 27.09642755278076, + "c6": 26.869868704981407, + "c7": 34.87763320417147 }, - "vertexSeeds": { - "c1": 11.408620059105534, - "c2": 11.113868646686353, - "c3": 10.960916155675294, - "c4": 11.259741119711837, - "c5": 10.84225917409052, - "c6": 10.779551181410836, - "c7": 10.864698717186414 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.588072122052726, + "c3": 13.823393435043915, + "c4": 11.058714748035149, + "c5": 8.294036061026341, + "c6": 5.529357374017574, + "c7": 2.764678687008767 }, "rgb": [238, 201, 159] }, @@ -184956,23 +184956,23 @@ "year": 1764, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -19.940601990202623, - "c2": 7.790549438700399, - "c3": -23.87483757155739, - "c4": 2.4489549534914836, - "c5": -3.3130517616111916, - "c6": 8.097773456674151, - "c7": 21.898521258804596 + "points": { + "c1": -32.293063211542105, + "c2": -11.871988505342198, + "c3": 10.694032641902062, + "c4": 26.714762948431634, + "c5": -21.650895972771686, + "c6": 5.24131253061703, + "c7": -14.026408062013939 }, - "vertexSeeds": { - "c1": 6.190413769076567, - "c2": 6.2366154406607475, - "c3": 6.691139727435556, - "c4": 7.105194051539727, - "c5": 6.217547352698513, - "c6": 6.584897604826831, - "c7": 6.582580864396906 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [86, 146, 138] }, @@ -184983,23 +184983,23 @@ "year": 1764, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -20.182012953080104, - "c2": -25.80173440577644, - "c3": -9.890760189650948, - "c4": 37.04138633871898, - "c5": -38.81122790617164, - "c6": -8.43357086405804, - "c7": -3.165062135293418 + "points": { + "c1": 0.9216195913145384, + "c2": -40.874851660380244, + "c3": 5.786965613761431, + "c4": -17.990298880511755, + "c5": 28.20237095037126, + "c6": 41.125292749234376, + "c7": 28.9570454626558 }, - "vertexSeeds": { - "c1": 6.529227694790168, - "c2": 6.575318026662675, - "c3": 7.054831627652289, - "c4": 6.707098862259392, - "c5": 7.178961197951553, - "c6": 6.215233692934361, - "c7": 7.019054976195144 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002773, + "c3": 8.622283865002307, + "c4": 6.897827092001844, + "c5": 5.173370319001392, + "c6": 3.4489135460009286, + "c7": 1.7244567730004643 }, "rgb": [77, 76, 132] }, @@ -185010,23 +185010,23 @@ "year": 1764, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -11.132822299557038, - "c2": 6.057091644682352, - "c3": -33.45877214610453, - "c4": 7.169724263702861, - "c5": 20.54091254393572, - "c6": 20.873423700270074, - "c7": -7.144516485672423 + "points": { + "c1": 30.902241868353556, + "c2": -34.66398776597503, + "c3": 10.277511987138013, + "c4": -31.802686508391947, + "c5": 29.124298634057908, + "c6": -21.348054989850347, + "c7": -12.428573334929975 }, - "vertexSeeds": { - "c1": 3.9033846709847175, - "c2": 3.955053968894937, - "c3": 3.951783909188548, - "c4": 3.9235537588120324, - "c5": 3.9205592236675946, - "c6": 3.899048660647462, - "c7": 3.93969555829049 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245472, + "c3": 4.73878871937125, + "c4": 3.7910309754969815, + "c5": 2.8432732316227596, + "c6": 1.8955154877484908, + "c7": 0.9477577438742689 }, "rgb": [58, 15, 49] }, @@ -185037,23 +185037,23 @@ "year": 1764, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -15.014260513895906, - "c2": 8.090831948139737, - "c3": 13.791313804100454, - "c4": -7.192005228215621, - "c5": 7.455441069353526, - "c6": 26.72240652217208, - "c7": -22.11904348430105 + "points": { + "c1": 39.49811406599429, + "c2": 15.087801218080045, + "c3": -32.66755630619163, + "c4": -45.31670574819925, + "c5": -29.569131237782184, + "c6": -12.306174112490275, + "c7": -8.068703025575651 }, - "vertexSeeds": { - "c1": 7.234457523137802, - "c2": 4.0915346946543405, - "c3": 7.329436064387796, - "c4": 5.76246553633277, - "c5": 5.480792245665367, - "c6": 7.114245444827191, - "c7": 4.005316884559165 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.28987517337032, + "c3": 9.408229311141932, + "c4": 7.526583448913547, + "c5": 5.64493758668516, + "c6": 3.7632917244567734, + "c7": 1.881645862228388 }, "rgb": [77, 76, 132] }, @@ -185064,23 +185064,23 @@ "year": 1764, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 37.96598083677134, - "c2": -4.66119648505282, - "c3": -35.54581050060315, - "c4": -15.680718852615247, - "c5": 33.55254478172189, - "c6": 15.281165056664655, - "c7": -23.62086738769649 + "points": { + "c1": 5.442745863479615, + "c2": -11.464889521756003, + "c3": 40.21459273635948, + "c4": -0.29652189700752984, + "c5": -12.652210164335834, + "c6": 13.777577039418489, + "c7": -7.619291112733663 }, - "vertexSeeds": { - "c1": 5.806821953730496, - "c2": 5.702752987441668, - "c3": 5.775464893854691, - "c4": 5.736432841359261, - "c5": 5.495080804079712, - "c6": 5.718975262505737, - "c7": 5.474891715104166 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055476, + "c4": 5.547850208044386, + "c5": 4.1608876560332835, + "c6": 2.773925104022193, + "c7": 1.3869625520111022 }, "rgb": [222, 0, 59] }, @@ -185091,23 +185091,23 @@ "year": 1764, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 22.05145414470745, - "c2": 38.06894435312416, - "c3": -0.3053867926437803, - "c4": -32.24757969980379, - "c5": -24.201221347988245, - "c6": -30.99290163247788, - "c7": 2.946390394336383 + "points": { + "c1": 10.172008953344772, + "c2": 9.66589653989486, + "c3": -1.68165710322139, + "c4": -3.1391112643724313, + "c5": 30.209584792782444, + "c6": -28.801604439754367, + "c7": 30.073899714883773 }, - "vertexSeeds": { - "c1": 2.0979171886128425, - "c2": 1.9049477768979746, - "c3": 2.1419976665936646, - "c4": 1.8179452028168097, - "c5": 2.0232891520658804, - "c6": 2.0301978896550983, - "c7": 2.100593708056166 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450776, + "c3": 2.6121128062875636, + "c4": 2.089690245030052, + "c5": 1.5672676837725377, + "c6": 1.044845122515026, + "c7": 0.5224225612575144 }, "rgb": [77, 76, 132] }, @@ -185118,23 +185118,23 @@ "year": 1764, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": 24.216464327538482, - "c2": -3.7810091013320317, - "c3": 32.41396589180349, - "c4": -0.6339376599526148, - "c5": -5.0049205967233235, - "c6": -20.02667356991174, - "c7": 33.113758734905694 + "points": { + "c1": 9.398569552966038, + "c2": 36.65032979730956, + "c3": -6.804874417683273, + "c4": 30.636194486087113, + "c5": -10.469016972555842, + "c6": 13.944504926592131, + "c7": 11.93737331288709 }, - "vertexSeeds": { - "c1": 3.284747363475123, - "c2": 3.094784898363573, - "c3": 3.212833897078115, - "c4": 3.1911106094115786, - "c5": 3.1920995639392817, - "c6": 3.1231330205505285, - "c7": 3.2539345242256115 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199721, + "c3": 4.137771613499766, + "c4": 3.3102172907998115, + "c5": 2.4826629680998646, + "c6": 1.65510864539991, + "c7": 0.827554322699955 }, "rgb": [58, 15, 49] }, @@ -185145,23 +185145,23 @@ "year": 1764, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 5.134780171207776, - "c2": -23.02901676683941, - "c3": 4.772055379288847, - "c4": -13.592256724108204, - "c5": 4.354663368482033, - "c6": -16.470029583779542, - "c7": 10.865279016058661 + "points": { + "c1": -22.682287623039556, + "c2": 27.61915237101499, + "c3": 3.904308273348711, + "c4": 14.272155043293843, + "c5": 13.896380997530748, + "c6": -24.936775766729202, + "c7": 26.386206487400848 }, - "vertexSeeds": { - "c1": 6.052035802146343, - "c2": 6.290181565175908, - "c3": 6.514623474503611, - "c4": 6.559383120180931, - "c5": 5.800508649845996, - "c6": 6.077222574665419, - "c7": 6.472910557696983 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.20619509939898, + "c4": 6.564956079519189, + "c5": 4.923717059639396, + "c6": 3.2824780397595945, + "c7": 1.6412390198798021 }, "rgb": [222, 0, 59] }, @@ -185172,23 +185172,23 @@ "year": 1764, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -24.66084618684531, - "c2": -23.37850046269275, - "c3": 15.231991521385357, - "c4": -7.598944301797491, - "c5": -27.15190814242326, - "c6": -0.8284752288306123, - "c7": -28.3222658602507 + "points": { + "c1": -18.916585914941944, + "c2": 26.05058119837652, + "c3": 31.219585313627434, + "c4": 23.39227732254256, + "c5": -30.443247776265896, + "c6": 25.85756914159075, + "c7": 6.987034432073692 }, - "vertexSeeds": { - "c1": 5.209834867695694, - "c2": 4.276214261900408, - "c3": 4.161809803246356, - "c4": 5.070780195656031, - "c5": 4.838469936757231, - "c6": 4.286540122680273, - "c7": 5.058961746915447 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -185199,23 +185199,23 @@ "year": 1764, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -5.535257492896953, - "c2": -45.43655476131753, - "c3": -21.252603406903273, - "c4": 44.20295323640325, - "c5": 20.926856852993275, - "c6": -31.56030104730178, - "c7": 17.851937626022796 + "points": { + "c1": 49.17088040260486, + "c2": -51.700662479995565, + "c3": -23.67540209217726, + "c4": 13.046187098830679, + "c5": 10.3549798155558, + "c6": 30.13178705087754, + "c7": 13.805090377169044 }, - "vertexSeeds": { - "c1": 3.639861874937179, - "c2": 3.7376565301711153, - "c3": 4.061251851687722, - "c4": 3.7657648852407513, - "c5": 3.708104850820649, - "c6": 4.173691733826606, - "c7": 3.9426435241769457 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808597, + "c3": 5.062413314840501, + "c4": 4.049930651872398, + "c5": 3.037447988904296, + "c6": 2.024965325936199, + "c7": 1.012482662968097 }, "rgb": [86, 146, 138] }, @@ -185226,23 +185226,23 @@ "year": 1764, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": 43.06398994423564, - "c2": 26.48483882143625, - "c3": 15.507745976895379, - "c4": -3.47702251492003, - "c5": 20.954385096840262, - "c6": 12.509132555558182, - "c7": -38.215030594864274 + "points": { + "c1": -25.369915316468333, + "c2": -10.924044177416995, + "c3": 24.806273188845573, + "c4": 28.917260426168433, + "c5": -33.1507044924265, + "c6": 5.3015579271841275, + "c7": -16.189919939845257 }, - "vertexSeeds": { - "c1": 7.0411791116067, - "c2": 7.479325928720007, - "c3": 6.877573796116383, - "c4": 7.262212796619252, - "c5": 7.15209534561081, - "c6": 7.272343138616013, - "c7": 7.275578252545658 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -185253,23 +185253,23 @@ "year": 1764, "resistanceReported": true, "duration": 30326400, - "curveSeeds": { - "c1": 31.683941067977237, - "c2": 2.1446134477520857, - "c3": -15.911215423875124, - "c4": -35.31411131276173, - "c5": -10.920402139032248, - "c6": 0.36207302544858067, - "c7": -13.980400134987658 + "points": { + "c1": 19.846926392023157, + "c2": -30.6178249244588, + "c3": -32.141727536219605, + "c4": -39.32363695721501, + "c5": 42.44291596097258, + "c6": -44.01841532194977, + "c7": 24.136844917566798 }, - "vertexSeeds": { - "c1": 5.805433129849945, - "c2": 6.288398124433423, - "c3": 6.136525057187158, - "c4": 6.360668010358774, - "c5": 5.76305600377217, - "c6": 6.02935166063348, - "c7": 6.191714791456181 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554784, + "c3": 7.790106333795654, + "c4": 6.232085067036523, + "c5": 4.674063800277392, + "c6": 3.1160425335182613, + "c7": 1.5580212667591307 }, "rgb": [58, 15, 49] }, @@ -185280,23 +185280,23 @@ "year": 1764, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -27.856648205394716, - "c2": -33.889419672958205, - "c3": -10.596612255477897, - "c4": 1.8400668124281907, - "c5": -26.072984918809308, - "c6": 16.94062290502788, - "c7": -1.0567995290177734 + "points": { + "c1": 13.549235020835134, + "c2": -31.89997907094711, + "c3": 31.026697297089754, + "c4": 34.77485926823569, + "c5": -17.978793005789072, + "c6": 9.928477814220209, + "c7": -32.8039509224877 }, - "vertexSeeds": { - "c1": 10.503556921238934, - "c2": 10.507106331851146, - "c3": 10.630278717639555, - "c4": 10.205273340377653, - "c5": 10.635787387993467, - "c6": 10.114446499314974, - "c7": 10.309325210904436 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323175, + "c3": 12.829403606102618, + "c4": 10.263522884882102, + "c5": 7.6976421636615875, + "c6": 5.131761442441031, + "c7": 2.5658807212205157 }, "rgb": [222, 0, 59] }, @@ -185307,23 +185307,23 @@ "year": 1764, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 16.75089047004366, - "c2": 27.55516446447462, - "c3": -17.304912797588322, - "c4": 6.526266090634085, - "c5": 18.169890864728043, - "c6": -8.26114171716835, - "c7": -15.092878508466729 + "points": { + "c1": -20.413545701067115, + "c2": -22.0975195086667, + "c3": -13.55130746893644, + "c4": -9.619434594365906, + "c5": 11.746104811321423, + "c6": -30.59084945556959, + "c7": 25.805417683510072 }, - "vertexSeeds": { - "c1": 2.0098938160749014, - "c2": 1.9975461633086933, - "c3": 2.0326656418957074, - "c4": 1.9951844931003386, - "c5": 1.9838793871919387, - "c6": 2.0186693936808324, - "c7": 2.0170870892903223 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635207, + "c3": 2.4503005085529312, + "c4": 1.960240406842358, + "c5": 1.4701803051317686, + "c6": 0.980120203421179, + "c7": 0.4900601017105895 }, "rgb": [77, 76, 132] }, @@ -185334,23 +185334,23 @@ "year": 1763, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 15.33868411046889, - "c2": -17.643986929705683, - "c3": -14.19637346147611, - "c4": -20.792072869820466, - "c5": -25.00976731991593, - "c6": 1.1058181588323102, - "c7": 3.5806304496948904 + "points": { + "c1": -9.574630840637724, + "c2": -7.3962555438343, + "c3": -11.995189402070697, + "c4": 22.11022711797947, + "c5": 11.869819573552249, + "c6": -5.678808045993048, + "c7": 2.012376365460991 }, - "vertexSeeds": { - "c1": 5.0737737768122155, - "c2": 4.569368975954526, - "c3": 4.790504580027047, - "c4": 5.5252640375854885, - "c5": 5.820220954867574, - "c6": 5.779950803918677, - "c7": 4.628834843282424 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.04299583911234, + "c3": 7.535829865926955, + "c4": 6.028663892741561, + "c5": 4.5214979195561735, + "c6": 3.0143319463707803, + "c7": 1.5071659731853901 }, "rgb": [86, 146, 138] }, @@ -185361,23 +185361,23 @@ "year": 1764, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": 30.95342624734014, - "c2": -36.351179313345085, - "c3": -31.034973083547214, - "c4": 33.800877015805135, - "c5": -35.72415603290592, - "c6": 25.0871319226246, - "c7": 18.8146116689608 + "points": { + "c1": -27.675288869690835, + "c2": 31.788459049866866, + "c3": -25.777258525553023, + "c4": 6.020756033812958, + "c5": -11.148631336313741, + "c6": -30.72925415567688, + "c7": 36.580527166999 }, - "vertexSeeds": { - "c1": 7.111377127877546, - "c2": 7.618087148931201, - "c3": 6.784719877615317, - "c4": 7.5988143493723515, - "c5": 8.283670204391873, - "c6": 6.6979078036495, - "c7": 7.9574313391273925 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.64909847434119, + "c3": 10.540915395284326, + "c4": 8.43273231622746, + "c5": 6.324549237170595, + "c6": 4.21636615811373, + "c7": 2.108183079056865 }, "rgb": [86, 146, 138] }, @@ -185388,23 +185388,23 @@ "year": 1764, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -29.99286872932877, - "c2": 19.23257531364588, - "c3": -11.371593446077874, - "c4": -6.211124971493028, - "c5": -19.995257528892303, - "c6": 27.87577763932792, - "c7": 28.857549777518372 + "points": { + "c1": 17.86614105427614, + "c2": 30.532334285374972, + "c3": 20.137780570273762, + "c4": 28.50313147418384, + "c5": -0.9341179275820615, + "c6": -0.36427821400233285, + "c7": -22.300034212089066 }, - "vertexSeeds": { - "c1": 7.66072710075573, - "c2": 7.763834894138573, - "c3": 7.743350325591806, - "c4": 7.636249477303682, - "c5": 7.555078580981824, - "c6": 7.55025514385774, - "c7": 7.562680468281325 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.17891816920941, + "c3": 9.315765141007867, + "c4": 7.452612112806274, + "c5": 5.58945908460473, + "c6": 3.726306056403137, + "c7": 1.8631530282015436 }, "rgb": [222, 0, 59] }, @@ -185415,23 +185415,23 @@ "year": 1764, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -30.181043562517463, - "c2": -18.905394018383504, - "c3": -12.617938769957401, - "c4": -33.836287908428275, - "c5": 37.04019536003351, - "c6": -9.825898219173443, - "c7": -25.257336988669138 + "points": { + "c1": 5.861399540907307, + "c2": 25.185154014257634, + "c3": -33.01454922733806, + "c4": 34.195382641971804, + "c5": 35.9287681273907, + "c6": 31.340880456157365, + "c7": 15.172547296636381 }, - "vertexSeeds": { - "c1": 2.6143473033218214, - "c2": 2.5160839227345644, - "c3": 2.7996806484690597, - "c4": 2.712238399501853, - "c5": 2.6605262845864215, - "c6": 2.53448491915754, - "c7": 2.6257516107888708 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.7739251040221893, + "c5": 2.0804438280166453, + "c6": 1.3869625520110946, + "c7": 0.6934812760055439 }, "rgb": [77, 76, 132] }, @@ -185442,23 +185442,23 @@ "year": 1764, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 32.72740787858379, - "c2": 33.55339773673566, - "c3": -22.910448035067073, - "c4": -3.6457326873976967, - "c5": -27.669118398887388, - "c6": 10.570334887254724, - "c7": 34.23722945900785 + "points": { + "c1": -8.412222258944304, + "c2": 4.778673953222622, + "c3": -5.600018123673628, + "c4": -20.3890002596183, + "c5": 37.357899804063024, + "c6": 16.456778609869275, + "c7": -11.108015182723307 }, - "vertexSeeds": { - "c1": 4.742250876660068, - "c2": 4.739451267510501, - "c3": 4.266091024367381, - "c4": 4.368410893428119, - "c5": 4.877229941814963, - "c6": 4.541677174586675, - "c7": 4.559275041702544 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216363, + "c3": 5.871474803513641, + "c4": 4.697179842810911, + "c5": 3.5228848821081815, + "c6": 2.348589921405452, + "c7": 1.1742949607027293 }, "rgb": [238, 201, 159] }, @@ -185469,23 +185469,23 @@ "year": 1764, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -16.31316984896911, - "c2": -20.06495268118213, - "c3": 25.4450044289501, - "c4": -39.59577277621871, - "c5": -32.11922337913662, - "c6": 13.245819582574235, - "c7": 40.65450700595349 + "points": { + "c1": 13.708574478860633, + "c2": -1.9132169010079991, + "c3": -1.9505356599217336, + "c4": -28.769929482873714, + "c5": 40.75404732404142, + "c6": 24.591144707678097, + "c7": 26.200568974067252 }, - "vertexSeeds": { - "c1": 3.5659539101297706, - "c2": 3.5982236117979585, - "c3": 3.9720394311388194, - "c4": 3.6232515994721983, - "c5": 3.9338408015295285, - "c6": 3.6010486116833205, - "c7": 3.5942901620146346 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285714, + "c3": 4.761904761904762, + "c4": 3.8095238095238093, + "c5": 2.857142857142857, + "c6": 1.9047619047619047, + "c7": 0.9523809523809523 }, "rgb": [86, 146, 138] }, @@ -185496,23 +185496,23 @@ "year": 1764, "resistanceReported": true, "duration": 28771200, - "curveSeeds": { - "c1": -13.664406950618101, - "c2": 27.04969591044498, - "c3": 3.724390618483845, - "c4": 32.81783542661239, - "c5": 17.36621842682532, - "c6": 36.16348947957141, - "c7": -14.565137142691505 + "points": { + "c1": -11.604036695692855, + "c2": 14.390004120088648, + "c3": -41.668479713644984, + "c4": 34.907361951175645, + "c5": 18.27514110016677, + "c6": 12.909507179398737, + "c7": 39.93991716346059 }, - "vertexSeeds": { - "c1": 4.383980433526134, - "c2": 4.228106308944048, - "c3": 4.15463604811545, - "c4": 4.3670112364954115, - "c5": 4.3197341910978615, - "c6": 4.180884649342603, - "c7": 4.2502457956621305 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130377, + "c3": 5.24734165510865, + "c4": 4.197873324086923, + "c5": 3.148404993065195, + "c6": 2.0989366620434544, + "c7": 1.0494683310217272 }, "rgb": [58, 15, 49] }, @@ -185523,23 +185523,23 @@ "year": 1764, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 29.783429860854355, - "c2": -45.28288988617268, - "c3": 48.64009298280776, - "c4": 28.458024087094387, - "c5": -20.4408876404901, - "c6": 34.78386245092071, - "c7": 31.228718591172708 + "points": { + "c1": 17.63739076816853, + "c2": -21.922990005565637, + "c3": -43.02906087112808, + "c4": -27.06406321597497, + "c5": 33.701442853756646, + "c6": 8.551604736877316, + "c7": -49.14526986754182 }, - "vertexSeeds": { - "c1": 3.196162688472906, - "c2": 3.3135368004137002, - "c3": 3.2405263762321304, - "c4": 3.277325645928656, - "c5": 3.3826024156491377, - "c6": 3.1551287119241307, - "c7": 3.1288846836782294 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079057, + "c3": 4.068423485899214, + "c4": 3.2547387887193713, + "c5": 2.4410540915395287, + "c6": 1.6273693943596856, + "c7": 0.8136846971798428 }, "rgb": [58, 15, 49] }, @@ -185550,23 +185550,23 @@ "year": 1764, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 2.305176119243697, - "c2": 11.373196352435762, - "c3": -27.23248698160004, - "c4": -12.865068781469446, - "c5": 13.999625080450492, - "c6": -16.293189169803735, - "c7": -15.158145144570202 + "points": { + "c1": -40.45773761141299, + "c2": -37.86240648535197, + "c3": 15.14597428092059, + "c4": -46.12626557199223, + "c5": -41.58025399548886, + "c6": -43.57185636367966, + "c7": -6.089193929670259 }, - "vertexSeeds": { - "c1": 9.968143231750357, - "c2": 10.245785087198453, - "c3": 9.783771352589946, - "c4": 10.475847411841288, - "c5": 10.025859972696303, - "c6": 9.950680733494195, - "c7": 9.847541406608126 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.034674063800276, + "c3": 12.528895053166899, + "c4": 10.023116042533518, + "c5": 7.517337031900138, + "c6": 5.011558021266759, + "c7": 2.5057790106333795 }, "rgb": [238, 201, 159] }, @@ -185577,23 +185577,23 @@ "year": 1764, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -11.667419737038102, - "c2": 31.99773647054193, - "c3": 29.866758324950773, - "c4": 14.666126134479995, - "c5": 33.282485491013254, - "c6": -31.9285660677755, - "c7": 20.682262668944567 + "points": { + "c1": 28.918142224019782, + "c2": -24.576604920194633, + "c3": 34.62116358326403, + "c4": -7.43501719037161, + "c5": -14.803464322612193, + "c6": 42.39703449305501, + "c7": 5.332627152559191 }, - "vertexSeeds": { - "c1": 6.277963334932482, - "c2": 6.269587845748124, - "c3": 7.004003479466033, - "c4": 6.0821992243683205, - "c5": 7.017090418104065, - "c6": 7.17310601055021, - "c7": 6.339462785890273 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.576051779935272, + "c4": 6.8608414239482265, + "c5": 5.145631067961169, + "c6": 3.4304207119741132, + "c7": 1.7152103559870566 }, "rgb": [58, 15, 49] }, @@ -185604,23 +185604,23 @@ "year": 1764, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -26.672764133082584, - "c2": 14.092273715604172, - "c3": 25.307342864387806, - "c4": -21.655024622807556, - "c5": 23.320416536983046, - "c6": 31.75880100402604, - "c7": -23.994268063071583 + "points": { + "c1": -13.770622281619936, + "c2": -6.557841615966808, + "c3": -26.21357004809904, + "c4": -23.144638882623905, + "c5": 1.6726066205566283, + "c6": 21.304511332847014, + "c7": 12.907478884421906 }, - "vertexSeeds": { - "c1": 7.330954019792183, - "c2": 7.151973983658909, - "c3": 7.158681268427311, - "c4": 8.511442261855844, - "c5": 8.30694218416378, - "c6": 7.520589665846216, - "c7": 7.757770663175392 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778086, + "c3": 10.217290799815071, + "c4": 8.173832639852057, + "c5": 6.130374479889043, + "c6": 4.086916319926028, + "c7": 2.043458159963014 }, "rgb": [58, 15, 49] }, @@ -185631,23 +185631,23 @@ "year": 1764, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -22.32978916067089, - "c2": -24.120835077795274, - "c3": 19.719437680715004, - "c4": 4.428093856284413, - "c5": -6.549199565800713, - "c6": -6.412951168305273, - "c7": -8.278987732875283 + "points": { + "c1": 4.485145818692722, + "c2": 3.332280848474497, + "c3": 26.292717346705118, + "c4": 13.065570154786535, + "c5": 3.474157274239829, + "c6": -21.25625619482318, + "c7": -29.304567754561415 }, - "vertexSeeds": { - "c1": 2.0062263367013853, - "c2": 1.958223684721537, - "c3": 2.0690275928378448, - "c4": 2.048158265875219, - "c5": 1.8133633691929731, - "c6": 1.9094318400561259, - "c7": 2.0032859598982884 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841873, + "c3": 2.519648636153488, + "c4": 2.0157189089227927, + "c5": 1.5117891816920936, + "c6": 1.0078594544613946, + "c7": 0.503929727230699 }, "rgb": [86, 146, 138] }, @@ -185658,23 +185658,23 @@ "year": 1764, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 15.20005503711888, - "c2": -27.666042645445785, - "c3": -9.755844459184502, - "c4": -7.614969891872235, - "c5": 13.652178844866114, - "c6": 44.189312835440234, - "c7": 19.71539166556542 + "points": { + "c1": -26.21876788355719, + "c2": -3.389684783500037, + "c3": 0.03594600004205972, + "c4": 12.449258361186004, + "c5": -39.03681085247075, + "c6": -34.169491295189744, + "c7": -0.2219084373262845 }, - "vertexSeeds": { - "c1": 5.452310343355001, - "c2": 5.332780783330991, - "c3": 5.459929885495614, - "c4": 5.703573585202803, - "c5": 5.334432304052331, - "c6": 6.136171936151346, - "c7": 5.9524328102284585 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790568, + "c3": 7.3509015256588075, + "c4": 5.880721220527046, + "c5": 4.410540915395284, + "c6": 2.940360610263523, + "c7": 1.4701803051317615 }, "rgb": [77, 76, 132] }, @@ -185685,23 +185685,23 @@ "year": 1764, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 25.281958269620375, - "c2": -29.06568263939955, - "c3": -26.141746370199932, - "c4": 14.931592066988728, - "c5": 29.34567299136539, - "c6": -18.034868263918014, - "c7": -4.4546850897329975 + "points": { + "c1": 10.201610460027545, + "c2": -8.27210883410827, + "c3": 24.56817921932455, + "c4": 21.6247208830818, + "c5": 20.563471973205232, + "c6": 19.017863953621692, + "c7": -1.1621334142517021 }, - "vertexSeeds": { - "c1": 5.290398944928122, - "c2": 5.688004436898071, - "c3": 5.881569745183964, - "c4": 5.616899685130234, - "c5": 5.55154244403362, - "c6": 5.667450405592358, - "c7": 5.072450921191108 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [86, 146, 138] }, @@ -185712,23 +185712,23 @@ "year": 1764, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -32.07704451434526, - "c2": -35.65909497504789, - "c3": -14.974058602831334, - "c4": -14.86302072554641, - "c5": -21.049899707945677, - "c6": 9.788290915188433, - "c7": 36.664473593246655 + "points": { + "c1": 4.235049723091102, + "c2": 17.437739345221004, + "c3": 20.514903203972892, + "c4": -32.05931736555007, + "c5": 24.76097845165836, + "c6": 26.2361065262197, + "c7": -28.178423152047444 }, - "vertexSeeds": { - "c1": 5.960070107591139, - "c2": 5.9032466924239415, - "c3": 5.841202352260189, - "c4": 6.1909025098964525, - "c5": 5.980799631431066, - "c6": 5.991367845468003, - "c7": 5.876555468169391 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951443, + "c3": 7.443365695792884, + "c4": 5.954692556634297, + "c5": 4.466019417475736, + "c6": 2.9773462783171487, + "c7": 1.4886731391585875 }, "rgb": [86, 146, 138] }, @@ -185739,23 +185739,23 @@ "year": 1764, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 12.582280185743663, - "c2": -19.09878408146732, - "c3": -16.80731482199195, - "c4": -6.830778265471061, - "c5": 3.6954608014421524, - "c6": 13.67090098964725, - "c7": -40.60873415985647 + "points": { + "c1": -43.59997880721502, + "c2": 4.0497826581542995, + "c3": -23.641698786690554, + "c4": 38.481090108047354, + "c5": -30.440964323141817, + "c6": 26.68440287377186, + "c7": 33.929294427099194 }, - "vertexSeeds": { - "c1": 2.726179723612523, - "c2": 2.6362840733409363, - "c3": 2.7724627237404706, - "c4": 2.918837554243378, - "c5": 2.764990964790669, - "c6": 2.857165759919497, - "c7": 2.510512468048385 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113733, + "c3": 3.513638465094773, + "c4": 2.81091077207582, + "c5": 2.1081830790568663, + "c6": 1.4054553860379073, + "c7": 0.7027276930189537 }, "rgb": [222, 0, 59] }, @@ -185766,23 +185766,23 @@ "year": 1764, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -15.977522534667283, - "c2": -18.893219723116847, - "c3": 3.300815796598684, - "c4": -6.418519159212725, - "c5": 2.79209535202299, - "c6": 19.8457686064147, - "c7": -4.656271373582253 + "points": { + "c1": 3.889134497345239, + "c2": 12.255720309623086, + "c3": -29.81246517773907, + "c4": 30.352216668264788, + "c5": 30.277340156550892, + "c6": 36.36266641644919, + "c7": 35.96999446745954 }, - "vertexSeeds": { - "c1": 3.259785614550863, - "c2": 3.96310684525091, - "c3": 3.918844428944262, - "c4": 3.632255822117601, - "c5": 3.307272463913904, - "c6": 3.7374457861272967, - "c7": 3.25922265422711 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245492, + "c3": 4.738788719371242, + "c4": 3.7910309754969926, + "c5": 2.843273231622748, + "c6": 1.8955154877484988, + "c7": 0.9477577438742494 }, "rgb": [222, 0, 59] }, @@ -185793,23 +185793,23 @@ "year": 1764, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -23.099673825049745, - "c2": 26.08954592753526, - "c3": 19.990056641898196, - "c4": 26.94615375841158, - "c5": -27.899518552224613, - "c6": -25.81916155093648, - "c7": -4.859413213790187 + "points": { + "c1": 8.11980606059332, + "c2": -28.570076896796614, + "c3": 1.673435145395203, + "c4": 19.674115060927697, + "c5": 23.465810970149526, + "c6": 21.519645356641085, + "c7": -26.53356364941418 }, - "vertexSeeds": { - "c1": 0.8165220252682647, - "c2": 0.8441894242060107, - "c3": 0.8609051234786846, - "c4": 0.8990568096367406, - "c5": 0.8954224232528906, - "c6": 0.8990785118759446, - "c7": 0.8984024354616698 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.3314840499306522, + "c3": 1.1095700416088772, + "c4": 0.8876560332871, + "c5": 0.665742024965325, + "c6": 0.44382801664355, + "c7": 0.221914008321775 }, "rgb": [222, 0, 59] }, @@ -185820,23 +185820,23 @@ "year": 1765, "resistanceReported": false, "duration": 54259200, - "curveSeeds": { - "c1": 12.652829451182456, - "c2": -32.0155163906615, - "c3": -25.715518919811956, - "c4": -66.83097134453654, - "c5": -64.74511390529116, - "c6": -0.28049787588810204, - "c7": 21.769519676366542 + "points": { + "c1": -6.0897613477480945, + "c2": -19.517363866510536, + "c3": 7.203086316313843, + "c4": 2.2921427250766726, + "c5": 9.198002426631746, + "c6": -62.73122082751909, + "c7": -29.286479558515204 }, - "vertexSeeds": { - "c1": 4.120603019272785, - "c2": 4.325157035880132, - "c3": 4.296540884087659, - "c4": 4.48648806601119, - "c5": 4.183608842250447, - "c6": 4.16149729066978, - "c7": 4.2977757516226935 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411928, + "c3": 5.4091539528432735, + "c4": 4.327323162274618, + "c5": 3.245492371705964, + "c6": 2.163661581137309, + "c7": 1.0818307905686546 }, "rgb": [58, 15, 49] }, @@ -185847,23 +185847,23 @@ "year": 1764, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 14.797194145021553, - "c2": -16.55704159661658, - "c3": -25.231177496115375, - "c4": 4.02446953052209, - "c5": -4.67204544418539, - "c6": -23.125706005018287, - "c7": 14.211693847630979 + "points": { + "c1": -8.669826543110858, + "c2": -8.264055012102741, + "c3": -22.354478744558197, + "c4": -19.990994248768068, + "c5": 27.344774166886555, + "c6": -15.786417173107775, + "c7": 17.196506129250817 }, - "vertexSeeds": { - "c1": 4.073713959039489, - "c2": 3.725893171768844, - "c3": 4.217771643346772, - "c4": 3.9910003034372084, - "c5": 3.8015066654497103, - "c6": 3.7243535707882254, - "c7": 4.012756916415568 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [86, 146, 138] }, @@ -185874,23 +185874,23 @@ "year": 1764, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -36.417088497984956, - "c2": -0.9686414179837683, - "c3": -16.198301012844972, - "c4": 26.95560755506137, - "c5": 28.96521675902259, - "c6": 9.512024027743898, - "c7": 4.264409395846805 + "points": { + "c1": 18.69269232101562, + "c2": 16.11937685573922, + "c3": -39.2402071132168, + "c4": 36.34100409795129, + "c5": 40.81062378623128, + "c6": 25.001375542475294, + "c7": 26.587971228540162 }, - "vertexSeeds": { - "c1": 3.502046059081108, - "c2": 3.132296507829125, - "c3": 3.3658069371349253, - "c4": 3.2660542902033427, - "c5": 3.2106116269859646, - "c6": 3.3191266102206, - "c7": 3.2473328410779314 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642163, + "c3": 4.392048081368471, + "c4": 3.5136384650947763, + "c5": 2.6352288488210815, + "c6": 1.7568192325473901, + "c7": 0.8784096162736951 }, "rgb": [238, 201, 159] }, @@ -185901,23 +185901,23 @@ "year": 1764, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 21.981864761631485, - "c2": -19.931871219043273, - "c3": 21.49442338426166, - "c4": -12.651828709207463, - "c5": 22.95976172232099, - "c6": -3.479755082717901, - "c7": -10.405778394284372 + "points": { + "c1": -10.875234027560904, + "c2": 3.018819317862672, + "c3": 8.827109534909674, + "c4": -2.8543410238544205, + "c5": 6.472078938076379, + "c6": -15.298473816419436, + "c7": 14.189539524251508 }, - "vertexSeeds": { - "c1": 10.664489453563709, - "c2": 10.060632537979716, - "c3": 9.373591046258072, - "c4": 10.7017393571212, - "c5": 10.258990984577883, - "c6": 9.912319323441093, - "c7": 10.301311874750143 + "offsets": { + "c1": 18.25242718446602, + "c2": 15.64493758668516, + "c3": 13.037447988904301, + "c4": 10.429958391123444, + "c5": 7.8224687933425745, + "c6": 5.214979195561717, + "c7": 2.6074895977808583 }, "rgb": [222, 0, 59] }, @@ -185928,23 +185928,23 @@ "year": 1764, "resistanceReported": true, "duration": 14774400, - "curveSeeds": { - "c1": -22.817646188015235, - "c2": 23.026551044627325, - "c3": -17.547995193269244, - "c4": 0.2388314239228393, - "c5": -3.100264683557633, - "c6": -15.616857912117464, - "c7": 9.33540859687939 + "points": { + "c1": 23.123006768401787, + "c2": 6.364195760319632, + "c3": -26.918617843291116, + "c4": -2.6974427747938243, + "c5": -12.48283430181213, + "c6": -6.697702367934863, + "c7": 17.942351860751828 }, - "vertexSeeds": { - "c1": 5.304327985822482, - "c2": 4.777362250791603, - "c3": 4.8386737350886175, - "c4": 4.888472499412148, - "c5": 5.630240976686994, - "c6": 5.634356305644126, - "c7": 5.131686086421426 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883499, + "c5": 4.077669902912622, + "c6": 2.718446601941747, + "c7": 1.3592233009708707 }, "rgb": [222, 0, 59] }, @@ -185955,23 +185955,23 @@ "year": 1764, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 14.746869106442794, - "c2": -36.67065465302336, - "c3": -2.041933469118071, - "c4": 24.52819160519296, - "c5": -28.82594966310157, - "c6": -24.688506104325498, - "c7": -27.872198431042925 + "points": { + "c1": 8.091672171619699, + "c2": 4.576793112216912, + "c3": -17.92686412642851, + "c4": 5.412289782919743, + "c5": -28.729056737769255, + "c6": -14.64011349700683, + "c7": -29.67917797603937 }, - "vertexSeeds": { - "c1": 4.288852150184689, - "c2": 4.30627972404902, - "c3": 4.1910715086802774, - "c4": 4.090414232849252, - "c5": 4.432758354560247, - "c6": 4.43864035655084, - "c7": 4.17889022397769 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411924, + "c3": 5.409153952843274, + "c4": 4.327323162274616, + "c5": 3.2454923717059665, + "c6": 2.163661581137308, + "c7": 1.08183079056865 }, "rgb": [222, 0, 59] }, @@ -185982,23 +185982,23 @@ "year": 1764, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -29.69842507204317, - "c2": 2.2364913383706906, - "c3": 37.31179525265006, - "c4": -5.585074899729634, - "c5": -12.726601880959095, - "c6": -11.426750966958664, - "c7": 7.056632460051986 + "points": { + "c1": -22.656312438593318, + "c2": -19.861231512448466, + "c3": -40.53947039442325, + "c4": -32.346577676766785, + "c5": 32.873997149813505, + "c6": 15.794580735797275, + "c7": -12.018211681351222 }, - "vertexSeeds": { - "c1": 6.639395339339529, - "c2": 6.2887640717001, - "c3": 7.072233027841246, - "c4": 6.60884506327027, - "c5": 6.687540734170786, - "c6": 7.064273411092658, - "c7": 6.646783151789213 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680994, + "c3": 8.437355524734173, + "c4": 6.7498844197873344, + "c5": 5.062413314840497, + "c6": 3.3749422098936592, + "c7": 1.6874711049468378 }, "rgb": [222, 0, 59] }, @@ -186009,23 +186009,23 @@ "year": 1764, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 22.615734659030018, - "c2": -13.981154149690934, - "c3": 7.358492549246982, - "c4": 30.772258235348417, - "c5": 11.938600659730135, - "c6": -13.476422946277388, - "c7": -31.83657042162869 + "points": { + "c1": 11.619910770292158, + "c2": 22.372493620812428, + "c3": 26.47926368925536, + "c4": -2.889104199784583, + "c5": -9.26403789657596, + "c6": 22.83842963075717, + "c7": -26.71113267177909 }, - "vertexSeeds": { - "c1": 2.1261623712551274, - "c2": 2.2414344597714306, - "c3": 2.2088812686234487, - "c4": 2.2073639618708865, - "c5": 2.157057863840803, - "c6": 2.1960693467853827, - "c7": 2.2846578744391106 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266313, + "c3": 2.77392510402219, + "c4": 2.219140083217754, + "c5": 1.6643550624133132, + "c6": 1.109570041608877, + "c7": 0.5547850208044409 }, "rgb": [77, 76, 132] }, @@ -186036,23 +186036,23 @@ "year": 1764, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 19.357043227444613, - "c2": -27.172176619533616, - "c3": 3.765708807750194, - "c4": 25.68263954266518, - "c5": 9.174151690170277, - "c6": -15.069668920540916, - "c7": 9.238351578822822 + "points": { + "c1": 5.531633050758998, + "c2": 16.732525241354793, + "c3": -27.353633123837845, + "c4": -35.89949919190332, + "c5": -24.226227529330124, + "c6": -27.434331303090538, + "c7": -5.063571119411748 }, - "vertexSeeds": { - "c1": 4.662444871119405, - "c2": 5.194397345348872, - "c3": 4.275803396380998, - "c4": 4.487255825482239, - "c5": 4.78349962545849, - "c6": 4.823088096717066, - "c7": 4.939860735572447 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.5728155339805845, + "c3": 6.31067961165049, + "c4": 5.0485436893203905, + "c5": 3.7864077669902905, + "c6": 2.5242718446601953, + "c7": 1.2621359223300999 }, "rgb": [86, 146, 138] }, @@ -186063,23 +186063,23 @@ "year": 1764, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -17.68831164998974, - "c2": 20.54001924526915, - "c3": -38.112153278930464, - "c4": -24.566372335280427, - "c5": -34.98158132027045, - "c6": 37.735897211330055, - "c7": 30.076628000568974 + "points": { + "c1": 26.73465454904631, + "c2": -14.162141439252348, + "c3": -28.114413736813738, + "c4": 40.50667182252542, + "c5": -23.98059548958473, + "c6": 19.98849726718631, + "c7": -30.25349818176877 }, - "vertexSeeds": { - "c1": 5.136492080438653, - "c2": 4.821779705424123, - "c3": 4.98823208993937, - "c4": 5.414010596785, - "c5": 5.7042392814380065, - "c6": 5.7448672038565, - "c7": 4.802216842585612 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187242, + "c3": 7.0041608876560355, + "c4": 5.60332871012483, + "c5": 4.202496532593616, + "c6": 2.8016643550624103, + "c7": 1.4008321775312051 }, "rgb": [77, 76, 132] }, @@ -186090,23 +186090,23 @@ "year": 1764, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": -48.39886911838138, - "c2": 39.066630468485315, - "c3": 10.769759987415199, - "c4": 29.77088342313762, - "c5": 17.551955061898013, - "c6": 13.279674589672197, - "c7": 30.45665016510415 + "points": { + "c1": 15.683917312659204, + "c2": 26.769146231104216, + "c3": 3.4990028066266916, + "c4": 24.79941106822605, + "c5": -46.91671079892829, + "c6": -40.96732600301516, + "c7": 35.61539266139043 }, - "vertexSeeds": { - "c1": 4.809104742878577, - "c2": 4.424564933232258, - "c3": 4.106543051720904, - "c4": 4.647343227598137, - "c5": 4.213123507515862, - "c6": 4.315220073395873, - "c7": 4.409475082989637 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -186117,23 +186117,23 @@ "year": 1764, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -20.558929854827447, - "c2": -4.6979330558805295, - "c3": -1.7395676588997198, - "c4": -20.244956529041833, - "c5": -11.494292265642054, - "c6": 16.100766718190823, - "c7": 7.957710851688358 + "points": { + "c1": 20.278842999353703, + "c2": -2.5636091673329524, + "c3": 26.89415096948216, + "c4": 28.370532432971775, + "c5": 26.141274705894407, + "c6": 24.412363001959523, + "c7": -27.003316188912276 }, - "vertexSeeds": { - "c1": 7.71889042341124, - "c2": 7.744353092264457, - "c3": 7.731801712863015, - "c4": 7.716291336883341, - "c5": 7.717613438064872, - "c6": 7.7251326509359854, - "c7": 7.718486234487776 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088818, + "c3": 9.24641701340741, + "c4": 7.397133610726001, + "c5": 5.547850208044225, + "c6": 3.6985668053628165, + "c7": 1.8492834026814082 }, "rgb": [222, 0, 59] }, @@ -186144,23 +186144,23 @@ "year": 1764, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -7.73948257004578, - "c2": 13.887645165980707, - "c3": 40.84894197336543, - "c4": 16.567301805405393, - "c5": 8.804847065489056, - "c6": 24.4601535921625, - "c7": -6.352751598218603 + "points": { + "c1": 11.986226965973529, + "c2": -26.09376452072248, + "c3": 27.33720401895124, + "c4": -35.25038323018987, + "c5": 24.15572111759441, + "c6": 21.269566230693968, + "c7": -10.328190945770352 }, - "vertexSeeds": { - "c1": 2.4345053340619627, - "c2": 2.3281381883660908, - "c3": 2.4162976795665183, - "c4": 2.3200554828747384, - "c5": 2.405082073941267, - "c6": 2.2595745020383626, - "c7": 2.367252249087923 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.60610263522885, + "c3": 3.005085529357375, + "c4": 2.404068423485897, + "c5": 1.803051317614423, + "c6": 1.2020342117429486, + "c7": 0.6010171058714743 }, "rgb": [222, 0, 59] }, @@ -186171,23 +186171,23 @@ "year": 1764, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": 14.668647674037565, - "c2": 36.7964138562889, - "c3": 8.85443791592462, - "c4": -7.407610653005825, - "c5": -37.3954242506156, - "c6": -35.2627079383524, - "c7": -5.5330948597134295 + "points": { + "c1": -49.11549714961736, + "c2": -20.280191399370423, + "c3": -10.539462487050763, + "c4": 38.27991294735772, + "c5": 49.63056042062872, + "c6": -20.703518488662866, + "c7": -54.32930430738482 }, - "vertexSeeds": { - "c1": 3.357853962106091, - "c2": 3.2613114313028437, - "c3": 3.2365217502350947, - "c4": 3.2658870279688563, - "c5": 3.367801711254377, - "c6": 3.3437806383384014, - "c7": 3.301701067064045 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199726, + "c3": 4.137771613499765, + "c4": 3.3102172907998133, + "c5": 2.482662968099863, + "c6": 1.655108645399912, + "c7": 0.8275543226999508 }, "rgb": [222, 0, 59] }, @@ -186198,23 +186198,23 @@ "year": 1764, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 23.87089132318591, - "c2": 35.83713984143448, - "c3": 0.49848739216302107, - "c4": 18.610189414492794, - "c5": -13.265432435106845, - "c6": -18.304484698910265, - "c7": 13.343415495763658 + "points": { + "c1": 12.560481005392596, + "c2": -25.432155373205767, + "c3": -12.29779475489119, + "c4": -14.081898474110432, + "c5": 24.018954352053036, + "c6": 2.546861656994608, + "c7": 1.5233832592888916 }, - "vertexSeeds": { - "c1": 5.137699130909077, - "c2": 4.995634286681781, - "c3": 4.162885820168308, - "c4": 4.814896832248584, - "c5": 5.088314498901279, - "c6": 4.47038941916419, - "c7": 5.221433309198873 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -186225,23 +186225,23 @@ "year": 1764, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 24.53295108465454, - "c2": 25.031095446809474, - "c3": -33.50973727832775, - "c4": 6.150664454298436, - "c5": -18.358858546459235, - "c6": 32.337044220746506, - "c7": -25.88531643588189 + "points": { + "c1": -19.89688778874478, + "c2": 46.963824732583504, + "c3": -4.7862228332527295, + "c4": -17.15914097167211, + "c5": 8.519283835505128, + "c6": 15.106442538275978, + "c7": 9.987347466811684 }, - "vertexSeeds": { - "c1": 6.919299535737311, - "c2": 6.93043393854727, - "c3": 6.985353477215401, - "c4": 6.93853957501289, - "c5": 7.000913408439369, - "c6": 6.85711296712909, - "c7": 7.025983228635284 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.12482662968102, + "c3": 8.437355524734159, + "c4": 6.749884419787348, + "c5": 5.062413314840485, + "c6": 3.374942209893674, + "c7": 1.687471104946811 }, "rgb": [222, 0, 59] }, @@ -186252,23 +186252,23 @@ "year": 1764, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 35.918204246536376, - "c2": 12.413306006519122, - "c3": -30.358862029117148, - "c4": 34.11899323459993, - "c5": -23.72654758371061, - "c6": -38.962876282125755, - "c7": 22.60467921696879 + "points": { + "c1": 39.80674781574274, + "c2": 14.08970035133109, + "c3": 4.161523696653575, + "c4": -38.847981486300974, + "c5": -39.74505399615999, + "c6": -24.83598718454259, + "c7": -41.56922137573166 }, - "vertexSeeds": { - "c1": 2.1239332775493973, - "c2": 2.2203462600388675, - "c3": 1.8231801934638376, - "c4": 2.14758355853447, - "c5": 1.9873215906124315, - "c6": 2.2132649534977253, - "c7": 1.9969003853938982 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266304, + "c3": 2.773925104022191, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.1095700416088778, + "c7": 0.5547850208044389 }, "rgb": [86, 146, 138] }, @@ -186279,23 +186279,23 @@ "year": 1764, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -13.659481588033408, - "c2": 1.0528246427515597, - "c3": -24.76313159831095, - "c4": -1.9076446145175936, - "c5": 37.053880882426675, - "c6": 22.971495615044724, - "c7": -5.582807834814901 + "points": { + "c1": 20.143057544080627, + "c2": -7.5353559262836, + "c3": 10.628013654548745, + "c4": 26.24138324015066, + "c5": -37.76029261851353, + "c6": -3.5385757107404174, + "c7": -36.31038262691699 }, - "vertexSeeds": { - "c1": 8.391739837150237, - "c2": 8.35850554278039, - "c3": 7.627284411349887, - "c4": 8.605517883059262, - "c5": 8.453032062251614, - "c6": 7.7268308349803805, - "c7": 8.057874609251357 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099854, + "c3": 10.402219140083218, + "c4": 8.32177531206657, + "c5": 6.241331484049934, + "c6": 4.160887656033285, + "c7": 2.080443828016635 }, "rgb": [222, 0, 59] }, @@ -186306,23 +186306,23 @@ "year": 1764, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 30.48456291478417, - "c2": -14.651880409987765, - "c3": -4.572686384906319, - "c4": -19.919514050024425, - "c5": 8.583896595676684, - "c6": -22.69446521347535, - "c7": 36.39378935916614 + "points": { + "c1": 16.695813621544104, + "c2": 17.67780265548908, + "c3": 23.76377303459075, + "c4": -33.451325078938154, + "c5": 9.049275478361345, + "c6": 30.920629931201084, + "c7": 7.254478493096329 }, - "vertexSeeds": { - "c1": 5.37191593623081, - "c2": 5.423639771811716, - "c3": 5.4385788277349, - "c4": 5.607365467639973, - "c5": 5.049968322414916, - "c6": 5.8065134900299, - "c7": 4.96245017280848 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.48821081830791, + "c3": 7.073509015256587, + "c4": 5.658807212205274, + "c5": 4.24410540915395, + "c6": 2.829403606102637, + "c7": 1.414701803051324 }, "rgb": [238, 201, 159] }, @@ -186333,23 +186333,23 @@ "year": 1764, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -8.432995074337054, - "c2": 1.7248804228227463, - "c3": -3.2485959687076367, - "c4": -19.9467997613665, - "c5": 25.73452237221991, - "c6": 24.147383738650237, - "c7": -2.0808193260364547 + "points": { + "c1": -20.153745476257217, + "c2": 1.0680270248456019, + "c3": 15.593329494212977, + "c4": -10.920367330633852, + "c5": -27.0114131549176, + "c6": 10.77239672529716, + "c7": -29.113956470430892 }, - "vertexSeeds": { - "c1": 3.4668763338066118, - "c2": 3.4288262511524903, - "c3": 3.1820954416239626, - "c4": 3.468486967889745, - "c5": 3.2769639472024332, - "c6": 3.3679654804431216, - "c7": 3.3463443770640673 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320386, + "c3": 4.2071197411003265, + "c4": 3.3656957928802598, + "c5": 2.524271844660193, + "c6": 1.6828478964401339, + "c7": 0.8414239482200669 }, "rgb": [77, 76, 132] }, @@ -186360,23 +186360,23 @@ "year": 1764, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -21.62919677236659, - "c2": 9.097571600141137, - "c3": 9.105847155630677, - "c4": -28.571065050859637, - "c5": -9.322210846286431, - "c6": -29.348445178878123, - "c7": -11.4848053525917 + "points": { + "c1": -8.438686699674804, + "c2": 10.546887689488358, + "c3": -24.565204471197333, + "c4": -4.135803653419984, + "c5": -13.790959396054667, + "c6": 6.95109261448102, + "c7": -30.065209322147165 }, - "vertexSeeds": { - "c1": 3.7765766516963493, - "c2": 3.6993901583031734, - "c3": 3.5487755748803056, - "c4": 3.650406155574339, - "c5": 3.833666087811841, - "c6": 3.768537192862951, - "c7": 3.462554491715254 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044385, + "c3": 4.623208506703649, + "c4": 3.698566805362921, + "c5": 2.7739251040221924, + "c6": 1.8492834026814642, + "c7": 0.9246417013407282 }, "rgb": [86, 146, 138] }, @@ -186387,23 +186387,23 @@ "year": 1764, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 27.209865508578716, - "c2": 1.2234803536852539, - "c3": 19.017786998491005, - "c4": -9.851653226338392, - "c5": -31.92424663901368, - "c6": -10.974974582021012, - "c7": -45.1268344779875 + "points": { + "c1": 1.7939332017568574, + "c2": -42.123451019422866, + "c3": 5.104578604838224, + "c4": -39.24503028306886, + "c5": -43.37683826815203, + "c6": -15.355937656057193, + "c7": -23.894286436370358 }, - "vertexSeeds": { - "c1": 2.570453294847814, - "c2": 2.872866883591606, - "c3": 2.457279140286552, - "c4": 2.7575777156153785, - "c5": 2.74101974302304, - "c6": 2.55648554833014, - "c7": 2.5211276875032658 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.467406380027739, + "c4": 2.773925104022191, + "c5": 2.080443828016643, + "c6": 1.3869625520110955, + "c7": 0.6934812760055478 }, "rgb": [222, 0, 59] }, @@ -186414,23 +186414,23 @@ "year": 1764, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 46.71323236541259, - "c2": -36.52788465075334, - "c3": 9.517756256489065, - "c4": 18.760255339034835, - "c5": -22.149386097292354, - "c6": -15.715081008956115, - "c7": 4.699471297049726 + "points": { + "c1": -24.596677825591243, + "c2": -21.604968395270493, + "c3": 31.553282826721706, + "c4": -0.11886526081495674, + "c5": -41.232542065149765, + "c6": -33.382047366371204, + "c7": 47.415661070683065 }, - "vertexSeeds": { - "c1": 7.413927045812917, - "c2": 6.851818964306136, - "c3": 7.1912387971768466, - "c4": 7.3613499994043785, - "c5": 6.957509176007864, - "c6": 6.807759246895272, - "c7": 6.961147249668315 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -186441,23 +186441,23 @@ "year": 1764, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -25.04975479981759, - "c2": 11.17535106301952, - "c3": -1.4887757931590855, - "c4": -24.89682385961284, - "c5": -7.171861912863747, - "c6": -15.098258221433188, - "c7": -23.88300836845411 + "points": { + "c1": -5.0159902101614335, + "c2": -37.26649930709944, + "c3": 14.22318181339692, + "c4": 22.194542985999554, + "c5": -20.695248441111154, + "c6": -18.58596582014631, + "c7": -12.507719159319684 }, - "vertexSeeds": { - "c1": 8.142826226757384, - "c2": 8.05754611755976, - "c3": 7.799715941465769, - "c4": 7.846704621178554, - "c5": 7.867607723329724, - "c6": 7.5808462554618625, - "c7": 7.549328098446751 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054083, + "c3": 9.801202034211746, + "c4": 7.8409616273693885, + "c5": 5.880721220527052, + "c6": 3.9204808136846943, + "c7": 1.9602404068423362 }, "rgb": [238, 201, 159] }, @@ -186468,23 +186468,23 @@ "year": 1764, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 1.6227015274720387, - "c2": 1.0629224818378233, - "c3": -8.265248455889173, - "c4": 17.686513427185375, - "c5": 0.19635023249837147, - "c6": -23.185601156595713, - "c7": 1.4029656722696728 + "points": { + "c1": 16.71449714846952, + "c2": 21.45651418693923, + "c3": -5.562161780067033, + "c4": 24.80215973228031, + "c5": -4.266404836730672, + "c6": -11.932869941134728, + "c7": -20.155865547481746 }, - "vertexSeeds": { - "c1": 6.52841620025326, - "c2": 6.099735907673608, - "c3": 6.553445727204474, - "c4": 5.878011219666853, - "c5": 6.389437673811155, - "c6": 5.826676537276324, - "c7": 6.688457079505692 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [77, 76, 132] }, @@ -186495,23 +186495,23 @@ "year": 1764, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 24.204073929823046, - "c2": 33.0314640469456, - "c3": 34.41170683354321, - "c4": 25.32633407048266, - "c5": 19.703700896955283, - "c6": -4.7540472147255315, - "c7": 23.96605121189814 + "points": { + "c1": 27.614219600505976, + "c2": -8.10320991541732, + "c3": 18.77246710918248, + "c4": -14.704898875538497, + "c5": 9.249534868080204, + "c6": -10.468449791552516, + "c7": 19.172045534139528 }, - "vertexSeeds": { - "c1": 5.114365441757309, - "c2": 5.5425913613773305, - "c3": 4.987483950881462, - "c4": 5.180948202743556, - "c5": 5.283522369061576, - "c6": 5.109323159888183, - "c7": 5.490268217470589 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583906, + "c3": 6.65742024965326, + "c4": 5.325936199722603, + "c5": 3.9944521497919587, + "c6": 2.6629680998613074, + "c7": 1.3314840499306566 }, "rgb": [238, 201, 159] }, @@ -186522,23 +186522,23 @@ "year": 1764, "resistanceReported": true, "duration": 43459200, - "curveSeeds": { - "c1": 1.5736401821687025, - "c2": -38.85690677864733, - "c3": 29.39503817068254, - "c4": -3.2852626032568253, - "c5": -15.779634093713561, - "c6": 34.56980033539263, - "c7": -7.109488722870566 + "points": { + "c1": -4.984598046760809, + "c2": 56.92712792033332, + "c3": 19.247772318101994, + "c4": 7.695759038675092, + "c5": 37.344909250144326, + "c6": 34.83491412754873, + "c7": 26.326234752983723 }, - "vertexSeeds": { - "c1": 3.8708512403866266, - "c2": 3.8211676898923064, - "c3": 3.8016060435718755, - "c4": 3.797977854991957, - "c5": 3.8109352171204276, - "c6": 3.8221559273030485, - "c7": 3.889678048505643 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165056, + "c3": 4.6925566343042036, + "c4": 3.754045307443371, + "c5": 2.8155339805825186, + "c6": 1.8770226537216854, + "c7": 0.9385113268608333 }, "rgb": [77, 76, 132] }, @@ -186549,23 +186549,23 @@ "year": 1764, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 25.980266900449635, - "c2": 17.835603930435823, - "c3": 27.239969234949974, - "c4": -32.907770112190875, - "c5": 28.744412624332405, - "c6": -5.701931130176337, - "c7": 8.362163239671837 + "points": { + "c1": -11.654162950269548, + "c2": 21.775778992608856, + "c3": -25.669528364325497, + "c4": 26.256604976800226, + "c5": 34.732336004634966, + "c6": -13.71775081241761, + "c7": -19.02414828236494 }, - "vertexSeeds": { - "c1": 5.907001274378478, - "c2": 5.924171501935459, - "c3": 5.735574542239164, - "c4": 5.78880821095119, - "c5": 5.721843794712391, - "c6": 5.937865931030456, - "c7": 5.710992522491617 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [58, 15, 49] }, @@ -186576,23 +186576,23 @@ "year": 1764, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": 16.662066389057657, - "c2": 27.854596232896526, - "c3": -46.869408420134675, - "c4": -32.015006243669006, - "c5": -40.04197106821272, - "c6": -20.133740409609594, - "c7": 18.907478994451324 + "points": { + "c1": 20.691622750303722, + "c2": 16.92728435171165, + "c3": 9.252955276224341, + "c4": 55.28972775739544, + "c5": -9.962920705332259, + "c6": 16.67840348218506, + "c7": -43.550773039355505 }, - "vertexSeeds": { - "c1": 5.483554197987071, - "c2": 5.537782120011884, - "c3": 5.181989745819205, - "c4": 5.263097727559815, - "c5": 5.211646591921564, - "c6": 5.35199853942001, - "c7": 5.281753294433274 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.7267683772538165, + "c4": 5.381414701803047, + "c5": 4.036061026352294, + "c6": 2.6907073509015236, + "c7": 1.3453536754507531 }, "rgb": [222, 0, 59] }, @@ -186603,23 +186603,23 @@ "year": 1764, "resistanceReported": false, "duration": 42508800, - "curveSeeds": { - "c1": 34.00489254315231, - "c2": -22.918228136851553, - "c3": -25.840089164505017, - "c4": -45.36439272372269, - "c5": 37.20800101315234, - "c6": -24.0979283960855, - "c7": -14.133148974781776 + "points": { + "c1": -0.6224787821414921, + "c2": 52.17718305470402, + "c3": -40.508348951336345, + "c4": -17.701213450716303, + "c5": 39.13943398232652, + "c6": -4.841314550983476, + "c7": -46.46196903397462 }, - "vertexSeeds": { - "c1": 4.546461177043948, - "c2": 4.575127335696428, - "c3": 4.56168579081153, - "c4": 4.237296302002764, - "c5": 4.386259969954447, - "c6": 4.489329903678595, - "c7": 4.4332867130792355 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854368, + "c3": 5.663430420711971, + "c4": 4.530744336569575, + "c5": 3.3980582524271794, + "c6": 2.265372168284783, + "c7": 1.1326860841423874 }, "rgb": [86, 146, 138] }, @@ -186630,23 +186630,23 @@ "year": 1764, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 35.9786659343193, - "c2": 18.693179461052104, - "c3": -29.49191994335026, - "c4": -32.23513731608543, - "c5": -2.876366226048546, - "c6": 32.56473939240396, - "c7": 32.67891311124762 + "points": { + "c1": -22.207862478452046, + "c2": 6.197016458555517, + "c3": -8.900782288449598, + "c4": 3.501134140749265, + "c5": -27.94902702312852, + "c6": -35.80701585685026, + "c7": -24.08034861244446 }, - "vertexSeeds": { - "c1": 5.117487038255883, - "c2": 4.78118720364823, - "c3": 4.8656611199472515, - "c4": 5.101090436288981, - "c5": 4.675784925757013, - "c6": 5.114735930110287, - "c7": 5.170448537278597 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819704, + "c3": 6.2182154415164135, + "c4": 4.974572353213139, + "c5": 3.7309292649098476, + "c6": 2.487286176606565, + "c7": 1.2436430883032825 }, "rgb": [86, 146, 138] }, @@ -186657,23 +186657,23 @@ "year": 1764, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 10.556503268381817, - "c2": -0.2583940562611744, - "c3": 6.428857542383831, - "c4": 3.1047614591111525, - "c5": 33.39423633319619, - "c6": 22.651521114419722, - "c7": -31.150257920709123 + "points": { + "c1": -2.3559344094654264, + "c2": 7.771358103284477, + "c3": -25.302137428667802, + "c4": 10.593959429397287, + "c5": 10.043324036814063, + "c6": -20.032707472277437, + "c7": -7.132779832313517 }, - "vertexSeeds": { - "c1": 5.534201194234618, - "c2": 5.507483606534934, - "c3": 5.534539768893278, - "c4": 5.512975185087252, - "c5": 5.528840937401797, - "c6": 5.517972586840935, - "c7": 5.525836764109118 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503504, + "c3": 6.611188164586297, + "c4": 5.288950531669091, + "c5": 3.9667128987516205, + "c6": 2.6444752658344135, + "c7": 1.3222376329172068 }, "rgb": [238, 201, 159] }, @@ -186684,23 +186684,23 @@ "year": 1764, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 19.56203548429646, - "c2": -39.41146788398855, - "c3": -30.351285474776418, - "c4": -7.812267264104349, - "c5": 29.62250093974221, - "c6": -3.0561663436112596, - "c7": 15.076656818476252 + "points": { + "c1": 6.34831231614973, + "c2": 20.822092045024092, + "c3": 32.54226606583768, + "c4": 20.284713760760653, + "c5": -11.673250393831992, + "c6": -25.759523858674456, + "c7": -45.47595743887101 }, - "vertexSeeds": { - "c1": 5.28940600626194, - "c2": 5.317195630458283, - "c3": 5.588151118770255, - "c4": 5.58142090703509, - "c5": 6.018771180316064, - "c6": 5.75078550129133, - "c7": 5.506920566258055 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [86, 146, 138] }, @@ -186711,23 +186711,23 @@ "year": 1764, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 12.193059635453459, - "c2": -51.90825214567709, - "c3": -25.754963281085463, - "c4": -27.757691210938447, - "c5": -2.3333612501224366, - "c6": 18.728706667202665, - "c7": 36.52691679314004 + "points": { + "c1": 41.39565259331268, + "c2": 5.4262273140026664, + "c3": 3.068573389579228, + "c4": -18.564699655157234, + "c5": 11.55785946509804, + "c6": 25.838771852188877, + "c7": 19.125029625342897 }, - "vertexSeeds": { - "c1": 6.673749560453043, - "c2": 6.483313398821942, - "c3": 5.677196505418589, - "c4": 6.336794266961157, - "c5": 6.081739452639289, - "c6": 6.040993581765856, - "c7": 6.468738593944809 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077667, + "c3": 8.090614886731396, + "c4": 6.4724919093851145, + "c5": 4.854368932038834, + "c6": 3.2362459546925524, + "c7": 1.618122977346281 }, "rgb": [86, 146, 138] }, @@ -186738,23 +186738,23 @@ "year": 1764, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 6.682548076993044, - "c2": 4.438560623813764, - "c3": -11.224313398371876, - "c4": -19.41816182788529, - "c5": 19.865951486765667, - "c6": -30.95109194521342, - "c7": 23.938118085106233 + "points": { + "c1": 0.2768917448627519, + "c2": 11.864418501589924, + "c3": -34.879763769431136, + "c4": -37.053892527390175, + "c5": -39.88290006194715, + "c6": -25.323999590259003, + "c7": -28.401706529975574 }, - "vertexSeeds": { - "c1": 7.646306467909575, - "c2": 7.184861979538045, - "c3": 7.948544672770057, - "c4": 7.045770157752907, - "c5": 6.975610767813847, - "c6": 7.7964665651545015, - "c7": 6.859885382302821 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [86, 146, 138] }, @@ -186765,23 +186765,23 @@ "year": 1764, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 10.652336531417042, - "c2": -6.5266348537782655, - "c3": -16.03567044187465, - "c4": 20.18033559929362, - "c5": 31.439875174369945, - "c6": -29.23385274053507, - "c7": 23.968118856809298 + "points": { + "c1": 14.13690422199815, + "c2": 18.116185596315518, + "c3": -11.552480793808058, + "c4": 14.785699361083921, + "c5": -14.978474736267934, + "c6": -25.45814903210583, + "c7": -27.332803236435897 }, - "vertexSeeds": { - "c1": 6.655524132938701, - "c2": 6.765653581665694, - "c3": 6.95530973494334, - "c4": 7.067284679179304, - "c5": 6.835405362930528, - "c6": 6.843067276913234, - "c7": 6.734075309950071 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801654, + "c3": 8.506703652334723, + "c4": 6.805362921867769, + "c5": 5.10402219140084, + "c6": 3.4026814609338847, + "c7": 1.7013407304669308 }, "rgb": [86, 146, 138] }, @@ -186792,23 +186792,23 @@ "year": 1765, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": 0.3120463342768929, - "c2": 44.54297896741569, - "c3": 14.227056786348754, - "c4": 30.329787203758556, - "c5": -13.27364138676338, - "c6": 48.90692332377988, - "c7": 24.16615777355628 + "points": { + "c1": -43.78569550952222, + "c2": -8.53149466094036, + "c3": -13.80455076775138, + "c4": 21.99173456655558, + "c5": 57.899042229319434, + "c6": -58.633874419701705, + "c7": 8.640812543913327 }, - "vertexSeeds": { - "c1": 1.482610105750765, - "c2": 1.470983212623984, - "c3": 1.3925244185981542, - "c4": 1.4523684786543234, - "c5": 1.45857434451244, - "c6": 1.4902561366846856, - "c7": 1.5008796809791074 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.1914008321775325, + "c3": 1.8261673601479411, + "c4": 1.4609338881183536, + "c5": 1.0957004160887662, + "c6": 0.7304669440591788, + "c7": 0.3652334720295874 }, "rgb": [86, 146, 138] }, @@ -186819,23 +186819,23 @@ "year": 1764, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 7.383771299797768, - "c2": -6.124496880452831, - "c3": 20.51646355707433, - "c4": 16.254250202182938, - "c5": -15.692649403386882, - "c6": -10.372792922342908, - "c7": -13.471015615528248 + "points": { + "c1": 6.9430195122336755, + "c2": -11.62250378913977, + "c3": 0.6632801290134083, + "c4": 21.680617365784776, + "c5": 11.644375695833588, + "c6": -2.116362450556373, + "c7": 16.8297062307345 }, - "vertexSeeds": { - "c1": 3.3252248307799293, - "c2": 3.426999603311542, - "c3": 3.156667894300605, - "c4": 3.351739913284847, - "c5": 3.339652853936257, - "c6": 3.1468940076999092, - "c7": 3.117798955471305 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033284, + "c4": 3.328710124826629, + "c5": 2.496532593619973, + "c6": 1.6643550624133177, + "c7": 0.8321775312066556 }, "rgb": [222, 0, 59] }, @@ -186846,23 +186846,23 @@ "year": 1764, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": -5.9445949195221175, - "c2": 13.516252564693012, - "c3": -9.337234198994215, - "c4": -9.391086636547794, - "c5": -4.307530129189793, - "c6": 1.9588208527656334, - "c7": 14.532804754731359 + "points": { + "c1": -3.3310451778742483, + "c2": 9.443236076253108, + "c3": 1.9210167093029185, + "c4": 0.6684732261882935, + "c5": 13.851601796143115, + "c6": 2.8732552701871192, + "c7": -19.468679310365495 }, - "vertexSeeds": { - "c1": 2.8064725967425823, - "c2": 2.716733268589895, - "c3": 2.7363059314759024, - "c4": 2.5478805877713406, - "c5": 2.6576052993997004, - "c6": 2.599512027151763, - "c7": 2.828344978475567 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [86, 146, 138] }, @@ -186873,23 +186873,23 @@ "year": 1764, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -2.853539853746824, - "c2": 34.52314440139914, - "c3": 13.927224161695278, - "c4": -11.932178908218056, - "c5": 3.778738116391878, - "c6": 24.28288550929723, - "c7": -24.403666271839235 + "points": { + "c1": -39.22794806850074, + "c2": 8.164614563359741, + "c3": -34.71234514212341, + "c4": 31.568744815882106, + "c5": -17.831470353037115, + "c6": -15.864809242048853, + "c7": 13.52856046803052 }, - "vertexSeeds": { - "c1": 2.4075122950455468, - "c2": 2.545789423116192, - "c3": 2.971436670341117, - "c4": 2.90448707066664, - "c5": 2.4697672814602534, - "c6": 2.5246944605855237, - "c7": 2.821433070987845 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.3273231622746176, + "c3": 3.6061026352288463, + "c4": 2.884882108183079, + "c5": 2.1636615811373088, + "c6": 1.442441054091538, + "c7": 0.721220527045769 }, "rgb": [86, 146, 138] }, @@ -186900,23 +186900,23 @@ "year": 1765, "resistanceReported": false, "duration": 42854400, - "curveSeeds": { - "c1": 28.449600403853445, - "c2": -55.52287099117987, - "c3": -56.056177024357865, - "c4": -5.958550559130629, - "c5": 1.1835965596613889, - "c6": -44.5487418833746, - "c7": 20.914571102517108 + "points": { + "c1": 34.27650578247421, + "c2": 41.671506850689205, + "c3": 51.74918484420592, + "c4": 28.079530203772656, + "c5": 2.1507241450152463, + "c6": 38.513696743314846, + "c7": -50.65992614827253 }, - "vertexSeeds": { - "c1": 8.616126624879483, - "c2": 8.67824905968571, - "c3": 8.732815467487804, - "c4": 8.536958018871852, - "c5": 8.810888485697433, - "c6": 8.7594289134596, - "c7": 8.714302949398624 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300958, + "c3": 10.517799352750782, + "c4": 8.414239482200655, + "c5": 6.310679611650479, + "c6": 4.2071197411003025, + "c7": 2.1035598705501264 }, "rgb": [238, 201, 159] }, @@ -186927,23 +186927,23 @@ "year": 1764, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -6.840798352190943, - "c2": -5.04580307823251, - "c3": 14.109662554130196, - "c4": -8.114221176872942, - "c5": 6.014875058761259, - "c6": -7.248176128345261, - "c7": -17.590879614373772 + "points": { + "c1": 19.56272465559094, + "c2": 13.33758867598052, + "c3": 20.27661479475487, + "c4": -9.306771264183897, + "c5": 10.299206284332023, + "c6": 15.625342769558287, + "c7": -6.135213555245453 }, - "vertexSeeds": { - "c1": 4.59217637525572, - "c2": 4.494724352800843, - "c3": 4.666303069195129, - "c4": 4.66820295708972, - "c5": 4.281770533131721, - "c6": 4.754926443494157, - "c7": 4.180457260034374 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -186954,23 +186954,23 @@ "year": 1764, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 9.582697406293391, - "c2": -17.265615391493856, - "c3": 36.69730317805046, - "c4": -26.806040278415374, - "c5": -45.47108704176959, - "c6": 15.059864764121386, - "c7": 4.712348318702887 + "points": { + "c1": -45.20887563182299, + "c2": -22.17896509414935, + "c3": -23.477679453690662, + "c4": 30.51609757999185, + "c5": 37.90210456649075, + "c6": 4.148688480619761, + "c7": -0.02523899475217206 }, - "vertexSeeds": { - "c1": 7.364642650829126, - "c2": 7.384982696800139, - "c3": 7.073540074815497, - "c4": 6.900284234984673, - "c5": 7.204033548067129, - "c6": 7.014513087600993, - "c7": 7.10278263819769 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -186981,23 +186981,23 @@ "year": 1764, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 37.742344184745725, - "c2": 25.9379523660372, - "c3": -39.23325233527419, - "c4": 0.4005250971191501, - "c5": 16.734653397426108, - "c6": -25.275727237186626, - "c7": 20.735668266792665 + "points": { + "c1": 6.963746416905728, + "c2": 23.75686270769635, + "c3": 20.40034240560899, + "c4": -7.15292545277822, + "c5": -39.66906484642662, + "c6": 40.088365585445054, + "c7": 10.860575910675308 }, - "vertexSeeds": { - "c1": 10.770068797270735, - "c2": 10.22677641798767, - "c3": 10.258446569344827, - "c4": 10.622376909460225, - "c5": 9.337337326153282, - "c6": 10.838242791452824, - "c7": 10.736576428686815 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.088765603328717, + "c3": 13.407304669440586, + "c4": 10.725843735552475, + "c5": 8.044382801664343, + "c6": 5.362921867776232, + "c7": 2.6814609338881215 }, "rgb": [222, 0, 59] }, @@ -187008,23 +187008,23 @@ "year": 1764, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 19.81363452714259, - "c2": 27.727496289781413, - "c3": 18.631097761729222, - "c4": -31.765062854407997, - "c5": 18.30924591086184, - "c6": 11.075811662531088, - "c7": 16.850260042984083 + "points": { + "c1": 24.72288914914796, + "c2": -10.319423535409033, + "c3": 31.97736604983902, + "c4": 1.1545882774461944, + "c5": 11.095721199650818, + "c6": -22.332679603886184, + "c7": -15.167207593372009 }, - "vertexSeeds": { - "c1": 8.462756088490643, - "c2": 9.733509767100145, - "c3": 9.910579034822684, - "c4": 8.455856579340649, - "c5": 8.66083847420841, - "c6": 8.494152062056495, - "c7": 8.438273887628483 + "offsets": { + "c1": 16.666666666666664, + "c2": 14.28571428571428, + "c3": 11.904761904761905, + "c4": 9.52380952380952, + "c5": 7.142857142857135, + "c6": 4.76190476190476, + "c7": 2.3809523809523747 }, "rgb": [86, 146, 138] }, @@ -187035,23 +187035,23 @@ "year": 1764, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": -37.98771125599799, - "c2": 1.9224977025951802, - "c3": -26.65791983129983, - "c4": -9.794275013085247, - "c5": 24.406432096007528, - "c6": -48.496207313368245, - "c7": -20.41913812353216 + "points": { + "c1": 28.94624992567004, + "c2": 25.809327288695464, + "c3": 16.15252821263224, + "c4": -5.024921286818483, + "c5": 22.724643436554537, + "c6": -29.692443900991318, + "c7": -15.317162496060675 }, - "vertexSeeds": { - "c1": 7.627252248437467, - "c2": 7.296740227931071, - "c3": 7.45017078620957, - "c4": 7.22452014957236, - "c5": 6.879642455800568, - "c6": 7.635478264647129, - "c7": 7.736180559055437 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088759, + "c3": 9.246417013407305, + "c4": 7.397133610725838, + "c5": 5.5478502080443866, + "c6": 3.698566805362919, + "c7": 1.8492834026814524 }, "rgb": [86, 146, 138] }, @@ -187062,23 +187062,23 @@ "year": 1764, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": -17.969650043544362, - "c2": 48.65224175383419, - "c3": 11.509962613784495, - "c4": 32.979647542639384, - "c5": -6.12154866098151, - "c6": 1.5334687559927787, - "c7": 46.645589111496776 + "points": { + "c1": 21.20001444272326, + "c2": -2.1415018636694327, + "c3": 51.29245925073593, + "c4": 51.205786150254625, + "c5": -35.23484322696394, + "c6": 41.22028334307994, + "c7": 10.07223086172801 }, - "vertexSeeds": { - "c1": 4.71754876419983, - "c2": 4.87052367517467, - "c3": 4.553616415051028, - "c4": 4.79146173069903, - "c5": 4.672617658232623, - "c6": 4.909547931965232, - "c7": 4.820476625166979 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.5728155339805845, + "c3": 6.31067961165049, + "c4": 5.048543689320387, + "c5": 3.7864077669902922, + "c6": 2.524271844660191, + "c7": 1.2621359223300954 }, "rgb": [77, 76, 132] }, @@ -187089,23 +187089,23 @@ "year": 1764, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 8.523158948477885, - "c2": 11.785496136211187, - "c3": -17.50331476277898, - "c4": 32.278693464230884, - "c5": 20.806202658713374, - "c6": 7.8126027005579886, - "c7": -35.1460433966715 + "points": { + "c1": -29.964288031441946, + "c2": 26.345423013022312, + "c3": -12.60785814987484, + "c4": 13.423190388217137, + "c5": -14.260045982791059, + "c6": -4.3192050010128185, + "c7": -15.036503892994414 }, - "vertexSeeds": { - "c1": 5.146331318866837, - "c2": 4.738750162206907, - "c3": 4.512913802394585, - "c4": 4.419773002104401, - "c5": 4.481743185374526, - "c6": 4.935245404050342, - "c7": 4.0836891325779305 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -187116,23 +187116,23 @@ "year": 1764, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -36.228435450255205, - "c2": 44.95546410331804, - "c3": -23.302027169199032, - "c4": -45.407577424190386, - "c5": 43.315813173840716, - "c6": -27.66920666122606, - "c7": 37.25233144593384 + "points": { + "c1": 20.230596863081594, + "c2": -35.172107444937986, + "c3": -35.240774670245834, + "c4": -48.372425543545, + "c5": 48.84065085285362, + "c6": -38.49821874569871, + "c7": -19.961925307280563 }, - "vertexSeeds": { - "c1": 4.4957052780330145, - "c2": 4.167027030101602, - "c3": 4.045789780415422, - "c4": 4.474931987078845, - "c5": 4.0238690764410965, - "c6": 4.443120816866738, - "c7": 4.101937769594663 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [77, 76, 132] }, @@ -187143,23 +187143,23 @@ "year": 1764, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -20.24874824811596, - "c2": -22.584987985121145, - "c3": 7.400090289344469, - "c4": 29.75398244013391, - "c5": -18.35059027560835, - "c6": 0.2536366673030557, - "c7": -5.937592490023491 + "points": { + "c1": 16.456741500592237, + "c2": 36.85853939161365, + "c3": -6.074207159415714, + "c4": 32.6178630239949, + "c5": 32.173134371988496, + "c6": -33.78194342044528, + "c7": -23.46103463226004 }, - "vertexSeeds": { - "c1": 5.908887892564169, - "c2": 5.273478839277263, - "c3": 5.603553628322572, - "c4": 5.625321694890635, - "c5": 5.609037035440993, - "c6": 6.067738114062707, - "c7": 5.142078982724147 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192324, + "c4": 5.899214054553863, + "c5": 4.4244105409153915, + "c6": 2.9496070272769317, + "c7": 1.4748035136384605 }, "rgb": [58, 15, 49] }, @@ -187170,23 +187170,23 @@ "year": 1764, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": 50.217328922096875, - "c2": 8.826422291493522, - "c3": -30.00455589900864, - "c4": 34.98064906281109, - "c5": 0.4909530919798968, - "c6": -38.138506224072245, - "c7": -23.43496436701054 + "points": { + "c1": 47.09643759528105, + "c2": 11.39985639581176, + "c3": 47.161397954824714, + "c4": -40.27319839536118, + "c5": 47.59035462683716, + "c6": 3.12467485522793, + "c7": 12.500028535767207 }, - "vertexSeeds": { - "c1": 7.471610861001247, - "c2": 7.768803439870751, - "c3": 8.236325577941576, - "c4": 8.09073838097556, - "c5": 7.231404912475777, - "c6": 8.183602666847534, - "c7": 7.402513905414823 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938977, + "c3": 10.309754969949141, + "c4": 8.247803975959314, + "c5": 6.1858529819694885, + "c6": 4.123901987979653, + "c7": 2.0619509939898264 }, "rgb": [86, 146, 138] }, @@ -187197,23 +187197,23 @@ "year": 1764, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -27.932175556428373, - "c2": 17.354263414724713, - "c3": 6.281803597736996, - "c4": -5.899056334245962, - "c5": -4.167033612904653, - "c6": -8.1278338884727, - "c7": 4.618240688291877 + "points": { + "c1": 0.2518720788678337, + "c2": -25.74094533661076, + "c3": 30.02295837711553, + "c4": 19.47528304639573, + "c5": 10.906900415812103, + "c6": -26.898067927652654, + "c7": 13.571110737557845 }, - "vertexSeeds": { - "c1": 6.037347973280061, - "c2": 7.123350304425775, - "c3": 6.40894472819184, - "c4": 7.036605661992224, - "c5": 6.840925134079896, - "c6": 6.389017113467479, - "c7": 6.247271540346624 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163664, + "c3": 8.714748035136381, + "c4": 6.971798428109106, + "c5": 5.228848821081832, + "c6": 3.4858992140545584, + "c7": 1.742949607027274 }, "rgb": [86, 146, 138] }, @@ -187224,23 +187224,23 @@ "year": 1764, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -0.4357002597349755, - "c2": -3.621167353705644, - "c3": -7.5860900651062515, - "c4": 11.119212456973628, - "c5": -11.624886694685287, - "c6": -7.299648406047904, - "c7": 18.714939778848894 + "points": { + "c1": -23.555210374798193, + "c2": 6.503249057569576, + "c3": 13.9456069420131, + "c4": 2.0925150194367887, + "c5": 12.866896611099321, + "c6": -0.9454380364904864, + "c7": -17.436141003876102 }, - "vertexSeeds": { - "c1": 6.179505928339459, - "c2": 6.2390855175509605, - "c3": 6.104323099360376, - "c4": 6.243353465334366, - "c5": 5.867898206642438, - "c6": 5.661836824448993, - "c7": 6.253923523761448 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991683, + "c3": 7.466481738326389, + "c4": 5.973185390661115, + "c5": 4.479889042995842, + "c6": 2.9865926953305486, + "c7": 1.4932963476652743 }, "rgb": [58, 15, 49] }, @@ -187251,23 +187251,23 @@ "year": 1764, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 7.547187846957428, - "c2": 36.629410565670014, - "c3": -5.477601080547295, - "c4": -24.972231510692126, - "c5": -15.247024989287645, - "c6": -3.0420877174513308, - "c7": -2.922632814127077 + "points": { + "c1": 36.08773366212371, + "c2": -1.8952618691340675, + "c3": 0.7691943254137215, + "c4": 10.594168858915019, + "c5": -18.194450514578666, + "c6": -19.921387662402903, + "c7": 32.910414714399295 }, - "vertexSeeds": { - "c1": 2.4254366241608154, - "c2": 2.8024577570024785, - "c3": 2.635698494543238, - "c4": 2.698815624233539, - "c5": 2.6409100967733177, - "c6": 2.6310434534705474, - "c7": 2.561633711168092 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.0776699029126195, + "c3": 3.398058252427182, + "c4": 2.7184466019417495, + "c5": 2.038834951456311, + "c6": 1.3592233009708734, + "c7": 0.6796116504854354 }, "rgb": [238, 201, 159] }, @@ -187278,23 +187278,23 @@ "year": 1764, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 31.831704088716165, - "c2": 32.88338358516637, - "c3": 33.78304336253237, - "c4": 22.302090940577074, - "c5": -35.13136736403927, - "c6": 17.09250156963332, - "c7": 1.120170009945248 + "points": { + "c1": 21.136707865448635, + "c2": 25.211539784376555, + "c3": -14.957532803742566, + "c4": -32.88257826727218, + "c5": -36.4539572542919, + "c6": -18.806191438894594, + "c7": 11.76168605126535 }, - "vertexSeeds": { - "c1": 5.767259754001029, - "c2": 5.73758431061995, - "c3": 5.783074111343041, - "c4": 5.8098202395238445, - "c5": 5.636851752371345, - "c6": 6.014631209008806, - "c7": 5.782356759020438 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.62690707350902, + "c3": 7.189089227924186, + "c4": 5.75127138233933, + "c5": 4.313453536754497, + "c6": 2.875635691169665, + "c7": 1.4378178455848325 }, "rgb": [86, 146, 138] }, @@ -187305,23 +187305,23 @@ "year": 1764, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": -12.173148971074875, - "c2": 15.916582612639488, - "c3": 5.905091469167768, - "c4": -11.731328394171339, - "c5": -6.525820427828215, - "c6": -4.063868954454797, - "c7": 11.069525011674425 + "points": { + "c1": -18.926393576388495, + "c2": 16.978945215106798, + "c3": 10.19896049116192, + "c4": 7.446267513086738, + "c5": -7.934370274221292, + "c6": -13.499451456121943, + "c7": 0.9107738257260145 }, - "vertexSeeds": { - "c1": 3.400577426540862, - "c2": 3.50989251369649, - "c3": 3.6960271734582584, - "c4": 3.6833646602840924, - "c5": 3.3711887247034498, - "c6": 3.417388193382801, - "c7": 3.442711247441329 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [238, 201, 159] }, @@ -187332,23 +187332,23 @@ "year": 1764, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -34.41095382428317, - "c2": 20.366292625919733, - "c3": 31.40380932425436, - "c4": -22.4758854975499, - "c5": 2.5540177658573455, - "c6": -2.6986838734382914, - "c7": -34.38652676592487 + "points": { + "c1": 14.746782388628738, + "c2": 29.262751731272353, + "c3": 27.442714652568135, + "c4": 0.14444184480993982, + "c5": -11.366873985294482, + "c6": 15.702444254324384, + "c7": 28.486585610536913 }, - "vertexSeeds": { - "c1": 6.267232478984081, - "c2": 5.996009404331429, - "c3": 6.165863847873975, - "c4": 6.177128685966469, - "c5": 6.487835508273413, - "c6": 6.031665049040202, - "c7": 5.687942023783413 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -187359,23 +187359,23 @@ "year": 1764, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 4.09856231671224, - "c2": -17.58082451260742, - "c3": -2.2899189380224243, - "c4": 3.1736421655404286, - "c5": 8.901804275269171, - "c6": -44.95673552604048, - "c7": 22.624965037104218 + "points": { + "c1": 18.419849214648877, + "c2": 45.234401866505536, + "c3": 21.8973638408755, + "c4": -47.67072496970288, + "c5": 38.31359741706923, + "c6": -50.57195655030925, + "c7": 10.009277385418102 }, - "vertexSeeds": { - "c1": 0.7106705770308795, - "c2": 0.7165596002453303, - "c3": 0.7649843699186388, - "c4": 0.7489696249415283, - "c5": 0.7879204982523492, - "c6": 0.6997376198626011, - "c7": 0.7172302477933994 + "offsets": { + "c1": 1.423948220064725, + "c2": 1.2205270457697643, + "c3": 1.0171058714748036, + "c4": 0.8136846971798428, + "c5": 0.6102635228848822, + "c6": 0.4068423485899214, + "c7": 0.2034211742949607 }, "rgb": [77, 76, 132] }, @@ -187386,23 +187386,23 @@ "year": 1764, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -27.12341265159703, - "c2": 17.059075450546175, - "c3": -1.7473191006073492, - "c4": 7.5102632664398215, - "c5": 9.609388875182312, - "c6": 2.2222905048153265, - "c7": 0.7017085520254582 + "points": { + "c1": -17.59219985461546, + "c2": -4.808949663382034, + "c3": -3.05125411596331, + "c4": -12.822130242565756, + "c5": 35.466123463882184, + "c6": 21.433236938349623, + "c7": 31.00490579014641 }, - "vertexSeeds": { - "c1": 2.182787449386928, - "c2": 2.152808598699229, - "c3": 2.102873461437103, - "c4": 2.640175843989549, - "c5": 1.926871846455855, - "c6": 2.609087167029614, - "c7": 3.0447850746585443 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435506, + "c3": 3.6985668053629226, + "c4": 2.958853444290337, + "c5": 2.2191400832177544, + "c6": 1.4794267221451685, + "c7": 0.7397133610725842 }, "rgb": [238, 201, 159] }, @@ -187413,23 +187413,23 @@ "year": 1764, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 7.113176067931725, - "c2": -29.386628142612988, - "c3": -11.971135013084861, - "c4": -29.247725932344736, - "c5": 12.441879148654543, - "c6": -6.2260022785848435, - "c7": 9.455367372402769 + "points": { + "c1": 10.628545052127038, + "c2": 45.687391976163426, + "c3": -9.562544229748305, + "c4": -43.39345351904699, + "c5": -46.22395988070929, + "c6": 10.71329702940033, + "c7": -40.143521863143434 }, - "vertexSeeds": { - "c1": 3.828055680013102, - "c2": 3.7143306137904433, - "c3": 3.4475422369792037, - "c4": 3.4236361944800526, - "c5": 3.5312245877383988, - "c6": 3.8000339849587688, - "c7": 3.845508115036072 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205269, + "c3": 4.715672676837727, + "c4": 3.772538141470179, + "c5": 2.829403606102637, + "c6": 1.8862690707350895, + "c7": 0.9431345353675479 }, "rgb": [238, 201, 159] }, @@ -187440,23 +187440,23 @@ "year": 1764, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -7.988411958070724, - "c2": -33.470652287126995, - "c3": 7.394125984949326, - "c4": 19.765028219771978, - "c5": -25.418846516586967, - "c6": -26.42058883597172, - "c7": -38.9722356466029 + "points": { + "c1": -18.052047865765537, + "c2": 20.608950964283395, + "c3": -31.19705858166744, + "c4": -13.81856239533938, + "c5": 39.45294272445578, + "c6": -22.28226290390455, + "c7": -2.9368829556199785 }, - "vertexSeeds": { - "c1": 2.1848088943021935, - "c2": 2.0201315315014954, - "c3": 2.216912447648187, - "c4": 2.1606883114520525, - "c5": 2.0392539354528085, - "c6": 2.040827012238574, - "c7": 2.1967229431860953 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.217753120665743, + "c3": 2.6814609338881166, + "c4": 2.145168747110494, + "c5": 1.6088765603328714, + "c6": 1.0725843735552492, + "c7": 0.5362921867776225 }, "rgb": [238, 201, 159] }, @@ -187467,23 +187467,23 @@ "year": 1764, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -38.819051860853165, - "c2": -30.489707629110754, - "c3": -22.806455346086583, - "c4": 12.546566636514243, - "c5": -16.593919741867815, - "c6": -32.586669890240174, - "c7": 25.440082474237954 + "points": { + "c1": -34.42380217414757, + "c2": -7.840068637226146, + "c3": -30.086039123136658, + "c4": -40.36741519837015, + "c5": -13.025151527828285, + "c6": 16.847562294598973, + "c7": 17.421647984948592 }, - "vertexSeeds": { - "c1": 4.375366540700003, - "c2": 4.142414928271831, - "c3": 3.970673499200942, - "c4": 4.351122628599201, - "c5": 4.282688594112765, - "c6": 4.391079518830238, - "c7": 4.342861013392265 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492374, + "c3": 5.455386037910308, + "c4": 4.3643088303282465, + "c5": 3.273231622746187, + "c6": 2.182154415164127, + "c7": 1.0910772075820603 }, "rgb": [77, 76, 132] }, @@ -187494,23 +187494,23 @@ "year": 1764, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": 4.465910117827338, - "c2": -15.994748159078668, - "c3": 12.514164541667665, - "c4": -13.043222015425917, - "c5": 11.676036059760456, - "c6": 10.120967543901696, - "c7": -16.272630793473056 + "points": { + "c1": -4.521828900654501, + "c2": 19.364759766879153, + "c3": -2.176737799461222, + "c4": -9.897502892368891, + "c5": 11.317295836704215, + "c6": 15.400453569402728, + "c7": -2.7654839706068373 }, - "vertexSeeds": { - "c1": 3.388491619391037, - "c2": 3.391060882927955, - "c3": 3.447656963243844, - "c4": 3.5316506874591767, - "c5": 3.436874934082374, - "c6": 3.5179410276945546, - "c7": 3.4169729104720465 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642167, + "c3": 4.392048081368465, + "c4": 3.5136384650947745, + "c5": 2.6352288488210833, + "c6": 1.7568192325473817, + "c7": 0.8784096162736909 }, "rgb": [77, 76, 132] }, @@ -187521,23 +187521,23 @@ "year": 1764, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": 14.367917089822573, - "c2": 1.996562179557845, - "c3": -16.192029911665056, - "c4": 9.61377761799735, - "c5": 3.1671493086630456, - "c6": -16.779038170375138, - "c7": 10.446610355437176 + "points": { + "c1": -11.280028244680846, + "c2": 6.269300303367292, + "c3": -8.706727107532004, + "c4": -16.799062527944997, + "c5": 2.0815858140669974, + "c6": -16.50862716752631, + "c7": -17.850930742118003 }, - "vertexSeeds": { - "c1": 3.1226683111607803, - "c2": 3.159708664789938, - "c3": 3.233184203570162, - "c4": 2.9657883982785878, - "c5": 3.018411612446091, - "c6": 3.0503681351244327, - "c7": 2.9355053561954714 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -187548,23 +187548,23 @@ "year": 1764, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 5.262516384501822, - "c2": 24.69446057292126, - "c3": -15.06352982693829, - "c4": 15.502207490490207, - "c5": -28.94726765667932, - "c6": -29.7644120357951, - "c7": -33.76523137838473 + "points": { + "c1": 12.423205213218317, + "c2": -31.451948336070295, + "c3": -11.285006883236573, + "c4": 22.2745767215388, + "c5": -19.72226264300024, + "c6": -16.17438797536843, + "c7": 24.223637007205163 }, - "vertexSeeds": { - "c1": 5.991276867203741, - "c2": 6.15092612714103, - "c3": 6.087527831045051, - "c4": 5.957364185407707, - "c5": 5.999246875447396, - "c6": 6.135480991708407, - "c7": 5.972356848020854 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790561, + "c3": 7.350901525658794, + "c4": 5.880721220527025, + "c5": 4.410540915395257, + "c6": 2.940360610263537, + "c7": 1.4701803051317686 }, "rgb": [58, 15, 49] }, @@ -187575,23 +187575,23 @@ "year": 1765, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": -9.674095738097925, - "c2": 7.901863664682601, - "c3": -60.85299687588836, - "c4": 55.32759685253563, - "c5": -17.961155832335436, - "c6": 9.262574323627554, - "c7": -58.88733928786262 + "points": { + "c1": -6.8453957011210775, + "c2": 16.01271526486355, + "c3": 60.09184229487165, + "c4": -11.608547428129917, + "c5": 56.06876508520248, + "c6": -12.502314749813607, + "c7": 6.11640988333756 }, - "vertexSeeds": { - "c1": 3.2120919295276558, - "c2": 3.945790086951626, - "c3": 4.15618262130126, - "c4": 3.902849884855913, - "c5": 3.418330679246596, - "c6": 3.5080298257004943, - "c7": 3.79924967478332 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848819, + "c3": 5.085529357374019, + "c4": 4.0684234858992125, + "c5": 3.0513176144244114, + "c6": 2.0342117429496063, + "c7": 1.0171058714748014 }, "rgb": [58, 15, 49] }, @@ -187602,23 +187602,23 @@ "year": 1764, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -26.810560314303437, - "c2": 20.191164823595003, - "c3": 20.47687946120638, - "c4": -24.717320014928035, - "c5": -12.521769372935552, - "c6": -16.155957084714178, - "c7": 7.582439061972735 + "points": { + "c1": -17.299998074220166, + "c2": 15.79484940129749, + "c3": 29.335597706330823, + "c4": 26.765937236331794, + "c5": 31.254756577367566, + "c6": 11.23474347095874, + "c7": 21.438755090585893 }, - "vertexSeeds": { - "c1": 4.5463924138681095, - "c2": 4.5420022091045285, - "c3": 4.557894916266038, - "c4": 4.706004868888708, - "c5": 4.838801699821923, - "c6": 4.745740082408723, - "c7": 4.752580532055304 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.01803051317614, + "c3": 5.848358760980122, + "c4": 4.6786870087840935, + "c5": 3.5090152565880746, + "c6": 2.3393435043920467, + "c7": 1.1696717521960187 }, "rgb": [58, 15, 49] }, @@ -187629,23 +187629,23 @@ "year": 1765, "resistanceReported": false, "duration": 43718400, - "curveSeeds": { - "c1": -49.753036218779414, - "c2": -31.179044343606652, - "c3": 1.0034528840122974, - "c4": -26.365626127253105, - "c5": 8.28610007888961, - "c6": -28.053801746523398, - "c7": -19.511012865378177 + "points": { + "c1": -38.21361173643841, + "c2": -9.541627781694885, + "c3": 36.575003354945885, + "c4": -0.3114211317076325, + "c5": 11.45600235936714, + "c6": -0.6553324030694583, + "c7": -20.84982945684621 }, - "vertexSeeds": { - "c1": 5.108055592703381, - "c2": 5.075314853057759, - "c3": 4.993113726284945, - "c4": 5.049510572547862, - "c5": 5.081984729411883, - "c6": 5.19536676375354, - "c7": 5.118328318813928 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859933, + "c3": 6.241331484049924, + "c4": 4.993065187239956, + "c5": 3.7447988904299474, + "c6": 2.496532593619978, + "c7": 1.2482662968100078 }, "rgb": [58, 15, 49] }, @@ -187656,23 +187656,23 @@ "year": 1764, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -25.43788757229679, - "c2": 20.745163308588403, - "c3": -39.92874510450362, - "c4": 25.16117846760602, - "c5": -41.96678553012607, - "c6": -8.752351934736119, - "c7": 26.624776684775256 + "points": { + "c1": -18.140574897061256, + "c2": 1.6042707582116762, + "c3": 28.14047359591042, + "c4": -46.75709187636173, + "c5": 10.96240022371996, + "c6": -35.21217356998253, + "c7": 11.14895076295285 }, - "vertexSeeds": { - "c1": 1.8755575011272785, - "c2": 1.8042062170997206, - "c3": 1.9214115559128278, - "c4": 1.9030770915850497, - "c5": 2.263210257284184, - "c6": 2.1373892868953783, - "c7": 1.9224297350789452 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349515, + "c3": 3.074433656957928, + "c4": 2.459546925566343, + "c5": 1.8446601941747576, + "c6": 1.2297734627831722, + "c7": 0.6148867313915853 }, "rgb": [77, 76, 132] }, @@ -187683,23 +187683,23 @@ "year": 1764, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 14.610401677485356, - "c2": 13.635853281656388, - "c3": 7.442437395078706, - "c4": 5.987511349524603, - "c5": -27.707915978388073, - "c6": -3.297579586936777, - "c7": -12.972722830009808 + "points": { + "c1": 30.238061095269728, + "c2": -31.553244685735436, + "c3": 11.849723758675843, + "c4": 34.68074224514859, + "c5": 26.23899813816292, + "c6": -34.63837000982822, + "c7": -29.2741619462799 }, - "vertexSeeds": { - "c1": 6.320814324998421, - "c2": 6.476234751633816, - "c3": 5.6213789868574295, - "c4": 5.198548659701926, - "c5": 5.960479505768428, - "c6": 5.108844772646427, - "c7": 6.179246551328899 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675448, + "c3": 7.8594544613962105, + "c4": 6.287563569116966, + "c5": 4.715672676837728, + "c6": 3.143781784558483, + "c7": 1.5718908922792374 }, "rgb": [77, 76, 132] }, @@ -187710,23 +187710,23 @@ "year": 1764, "resistanceReported": true, "duration": 32140800, - "curveSeeds": { - "c1": -34.992709995974074, - "c2": -25.514350956644513, - "c3": 44.01912288365309, - "c4": -16.118784667800995, - "c5": 15.589684767607778, - "c6": 40.540097327550136, - "c7": 37.878045243812245 + "points": { + "c1": 44.32000124823943, + "c2": 0.9669940671345572, + "c3": 7.853887966773023, + "c4": 21.14295755808265, + "c5": -39.17994292473466, + "c6": -28.292177554573257, + "c7": 46.11204346766652 }, - "vertexSeeds": { - "c1": 5.559162832072497, - "c2": 5.741659902866546, - "c3": 5.729996912648401, - "c4": 5.3349146393962545, - "c5": 5.778881373164074, - "c6": 6.212239509223998, - "c7": 6.074282309939645 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112345, + "c3": 7.5358298659269565, + "c4": 6.028663892741568, + "c5": 4.521497919556179, + "c6": 3.014331946370778, + "c7": 1.507165973185389 }, "rgb": [77, 76, 132] }, @@ -187737,23 +187737,23 @@ "year": 1764, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -49.433509647649124, - "c2": 5.900750126002123, - "c3": -23.42590775393625, - "c4": -7.556536937143541, - "c5": 26.590853489464003, - "c6": -32.55421866769919, - "c7": -10.225935412507297 + "points": { + "c1": 12.13725283338104, + "c2": 16.012398015766216, + "c3": 8.714419238215129, + "c4": 39.89854067918068, + "c5": 10.210550714267, + "c6": 42.54926555287138, + "c7": 43.295637058515844 }, - "vertexSeeds": { - "c1": 6.930982858579366, - "c2": 7.440257189177899, - "c3": 7.0384419129174, - "c4": 7.425285104886519, - "c5": 7.384698321215257, - "c6": 7.129095290137421, - "c7": 7.338880581778136 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766987, + "c3": 9.061488673139152, + "c4": 7.249190938511319, + "c5": 5.436893203883502, + "c6": 3.624595469255668, + "c7": 1.812297734627834 }, "rgb": [77, 76, 132] }, @@ -187764,23 +187764,23 @@ "year": 1764, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": -0.49948693664991595, - "c2": -14.546593979428437, - "c3": 10.882496888681032, - "c4": -3.0872217156639437, - "c5": 12.318513388379532, - "c6": -8.146627482786448, - "c7": -7.76410304538331 + "points": { + "c1": -2.5130944077450525, + "c2": -0.689923760876539, + "c3": -17.17085128545037, + "c4": -5.325882739949725, + "c5": -10.79132773708237, + "c6": 7.9194478634758525, + "c7": 15.195322032723983 }, - "vertexSeeds": { - "c1": 5.9512299559788895, - "c2": 5.950725027329684, - "c3": 5.911904041987717, - "c4": 5.9467145062157, - "c5": 5.943943584365529, - "c6": 5.9435517269323865, - "c7": 5.887388486683897 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066558, + "c3": 6.934812760055502, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022223, + "c7": 1.3869625520111115 }, "rgb": [86, 146, 138] }, @@ -187791,23 +187791,23 @@ "year": 1764, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 39.447750172944325, - "c2": -10.454110803381575, - "c3": 1.0771673218150326, - "c4": 5.625355431927524, - "c5": 22.268535320319558, - "c6": -28.985256688573397, - "c7": -41.73252310945796 + "points": { + "c1": 42.89506645200849, + "c2": -0.8125965309786878, + "c3": 39.288308268038904, + "c4": 25.440780928861216, + "c5": 29.936403663952518, + "c6": 20.80690077992878, + "c7": -4.8363035539461166 }, - "vertexSeeds": { - "c1": 2.265663852242763, - "c2": 2.273630072022585, - "c3": 2.287739573592785, - "c4": 2.2859023254776614, - "c5": 2.145582449191995, - "c6": 2.1517799526918955, - "c7": 2.087217129452801 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266313, + "c3": 2.77392510402219, + "c4": 2.219140083217754, + "c5": 1.6643550624133132, + "c6": 1.109570041608877, + "c7": 0.5547850208044409 }, "rgb": [222, 0, 59] }, @@ -187818,23 +187818,23 @@ "year": 1764, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 18.40290923177082, - "c2": -9.681262419960877, - "c3": 24.968865793544047, - "c4": 8.921039423755424, - "c5": -29.78609017765146, - "c6": 1.8738413375551985, - "c7": 29.967590125445085 + "points": { + "c1": 33.22052947113335, + "c2": -20.90510306069712, + "c3": -35.213591889801435, + "c4": -1.391661975895822, + "c5": 17.67874508636072, + "c6": 17.938731378213937, + "c7": 22.87423730400019 }, - "vertexSeeds": { - "c1": 3.8381618389756693, - "c2": 3.6822552487543123, - "c3": 3.7359014832137394, - "c4": 4.210798710539056, - "c5": 4.115884843300446, - "c6": 3.9663564902225836, - "c7": 4.130607919936593 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [238, 201, 159] }, @@ -187845,23 +187845,23 @@ "year": 1765, "resistanceReported": true, "duration": 37152000, - "curveSeeds": { - "c1": 18.868817315566368, - "c2": 49.572355992679924, - "c3": 14.796384038048565, - "c4": -49.48745735866253, - "c5": -0.9003529467554117, - "c6": -35.83258538751649, - "c7": -10.49864853083264 + "points": { + "c1": 46.2565178126548, + "c2": 23.2074552639532, + "c3": -13.75884014718553, + "c4": 20.575838861867034, + "c5": 5.891473645214056, + "c6": 23.10167530824186, + "c7": -7.435709384980576 }, - "vertexSeeds": { - "c1": 5.6713546141705065, - "c2": 5.408696016255659, - "c3": 5.774081900962674, - "c4": 5.450350088986389, - "c5": 5.471457670824187, - "c6": 5.676502186855643, - "c7": 5.525520670613348 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [58, 15, 49] }, @@ -187872,23 +187872,23 @@ "year": 1764, "resistanceReported": false, "duration": 4752000, - "curveSeeds": { - "c1": 0.9531819016776701, - "c2": -2.06091609311291, - "c3": -5.822342753835063, - "c4": -0.5080574415051959, - "c5": 3.3234462881979, - "c6": -14.279511671934952, - "c7": 12.7918223445179 + "points": { + "c1": 10.842719836263544, + "c2": 5.295716203656884, + "c3": -2.8262583323646933, + "c4": -8.640706746030343, + "c5": -2.810574207396643, + "c6": 13.15620107197547, + "c7": -11.893427350742686 }, - "vertexSeeds": { - "c1": 5.296565015800784, - "c2": 4.122932689413113, - "c3": 4.46016991519244, - "c4": 4.711172189449692, - "c5": 4.7047614507893805, - "c6": 5.244354534895984, - "c7": 5.196434204893309 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -187899,23 +187899,23 @@ "year": 1764, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -12.582624308380769, - "c2": 29.66658417044436, - "c3": -33.61086418938839, - "c4": -36.142820299276416, - "c5": 13.676860932880992, - "c6": -35.929121522153714, - "c7": 16.481131247632284 + "points": { + "c1": -29.83833705819844, + "c2": -15.527989894329629, + "c3": -3.3548014516429276, + "c4": -12.284239742627793, + "c5": 6.854222543367989, + "c6": -29.978661560972007, + "c7": 40.71213362284866 }, - "vertexSeeds": { - "c1": 7.081134741234843, - "c2": 6.910074210357341, - "c3": 7.399081269244235, - "c4": 8.15985608082719, - "c5": 7.108112974355696, - "c6": 8.117893404702258, - "c7": 8.036926812697487 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973644, + "c3": 9.754969949144702, + "c4": 7.803975959315769, + "c5": 5.8529819694868275, + "c6": 3.9019879796578847, + "c7": 1.9509939898289423 }, "rgb": [238, 201, 159] }, @@ -187926,23 +187926,23 @@ "year": 1764, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 3.14790025804367, - "c2": -5.828071428340927, - "c3": 12.82243539994463, - "c4": -16.596406287724065, - "c5": -29.550752602789245, - "c6": -35.424441957811005, - "c7": -18.003432012070096 + "points": { + "c1": 11.373264780559339, + "c2": 7.708240321199057, + "c3": -31.876439224415705, + "c4": -0.6779099074360602, + "c5": -23.824345316901045, + "c6": -7.6179957349131655, + "c7": 38.98034695256014 }, - "vertexSeeds": { - "c1": 4.064284527334696, - "c2": 4.081266627571608, - "c3": 4.289367674119806, - "c4": 3.8572340230987785, - "c5": 4.26686702297116, - "c6": 4.3076298108507345, - "c7": 4.362083991593032 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -187953,23 +187953,23 @@ "year": 1764, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 12.437653463652886, - "c2": 16.1161624479616, - "c3": 12.547321199006966, - "c4": 30.20813838022194, - "c5": -19.605206988747426, - "c6": -20.06195350834764, - "c7": 16.904424585705634 + "points": { + "c1": 3.8748269203827306, + "c2": 29.11704420716685, + "c3": 21.271738252793213, + "c4": 6.750337415669527, + "c5": -32.39323842224587, + "c6": -2.7038571904743627, + "c7": -11.768843759245925 }, - "vertexSeeds": { - "c1": 4.157288633167898, - "c2": 4.62194244753399, - "c3": 4.313223978211554, - "c4": 4.820901682100773, - "c5": 4.490966359732946, - "c6": 4.40377843059906, - "c7": 4.355070036407119 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379567, + "c4": 4.623208506703648, + "c5": 3.467406380027736, + "c6": 2.311604253351824, + "c7": 1.155802126675912 }, "rgb": [222, 0, 59] }, @@ -187980,23 +187980,23 @@ "year": 1764, "resistanceReported": true, "duration": 34732800, - "curveSeeds": { - "c1": -39.39516769096018, - "c2": 44.34235168189451, - "c3": 46.52201067266071, - "c4": 28.79542087615127, - "c5": -20.361280409765573, - "c6": 19.486189169192883, - "c7": 15.702067608861292 + "points": { + "c1": -31.61392801328123, + "c2": -9.467517841633821, + "c3": -15.91446473802182, + "c4": 4.61392371495846, + "c5": -40.349952874297585, + "c6": 45.525113609923835, + "c7": -40.07955776090995 }, - "vertexSeeds": { - "c1": 0.6447515878505254, - "c2": 0.6077083207403616, - "c3": 0.6473634987856798, - "c4": 0.6302809292290008, - "c5": 0.6452122764984561, - "c6": 0.5971765440331178, - "c7": 0.613142534609819 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.9708737864077672, + "c3": 0.8090614886731395, + "c4": 0.6472491909385119, + "c5": 0.4854368932038841, + "c6": 0.3236245954692564, + "c7": 0.1618122977346277 }, "rgb": [77, 76, 132] }, @@ -188007,23 +188007,23 @@ "year": 1764, "resistanceReported": true, "duration": 23414400, - "curveSeeds": { - "c1": 17.0858424313383, - "c2": -28.771754318264485, - "c3": -25.831457333573546, - "c4": 10.247161033030089, - "c5": 26.564809492832005, - "c6": 14.742868176623482, - "c7": 10.960318662943571 + "points": { + "c1": -21.15284568794076, + "c2": 5.892578389878274, + "c3": -10.384036705937607, + "c4": 23.279990734029433, + "c5": -20.47619495409505, + "c6": -10.248016083340804, + "c7": 23.877494458570553 }, - "vertexSeeds": { - "c1": 4.042497152130944, - "c2": 3.8536567595655162, - "c3": 4.192468289246422, - "c4": 4.233959954877555, - "c5": 4.127754124763634, - "c6": 4.0690900868818565, - "c7": 3.856504575705027 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.1858529819694885, + "c3": 5.154877484974575, + "c4": 4.123901987979653, + "c5": 3.09292649098474, + "c6": 2.0619509939898264, + "c7": 1.0309754969949132 }, "rgb": [238, 201, 159] }, @@ -188034,23 +188034,23 @@ "year": 1764, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -37.15042177641672, - "c2": -25.024249272038514, - "c3": -29.01468270627261, - "c4": -30.047760211527965, - "c5": -7.640887216771812, - "c6": 37.32117275058074, - "c7": 34.220889972866416 + "points": { + "c1": -33.99767706976388, + "c2": 2.1876044696187122, + "c3": 26.70679716532713, + "c4": -35.95432455293976, + "c5": -17.91179759232117, + "c6": 19.169931736565246, + "c7": 31.002039884155707 }, - "vertexSeeds": { - "c1": 2.451298057313232, - "c2": 2.3955837966302322, - "c3": 2.3425236489917505, - "c4": 2.4331982631665143, - "c5": 2.5277870789516803, - "c6": 2.3268601282574326, - "c7": 2.527054014099199 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349516, + "c3": 3.0744336569579316, + "c4": 2.4595469255663427, + "c5": 1.844660194174758, + "c6": 1.2297734627831733, + "c7": 0.6148867313915888 }, "rgb": [77, 76, 132] }, @@ -188061,23 +188061,23 @@ "year": 1764, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 33.7521465330117, - "c2": 1.0426327891644576, - "c3": 17.19805368141776, - "c4": 18.356546030397467, - "c5": 29.53253061774393, - "c6": -2.4301864969082985, - "c7": -25.615535074139935 + "points": { + "c1": 40.54317662116418, + "c2": -47.24484020034962, + "c3": 18.845666632388117, + "c4": 9.549051114614905, + "c5": 25.24236469249847, + "c6": 10.012716273949266, + "c7": 31.957699637220756 }, - "vertexSeeds": { - "c1": 5.384733565819078, - "c2": 5.336366866681065, - "c3": 5.343759932434003, - "c4": 5.304594061232362, - "c5": 5.360197623545721, - "c6": 5.423093394494855, - "c7": 5.438293149596268 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186769, + "c4": 5.34442903374941, + "c5": 4.008321775312079, + "c6": 2.6722145168747193, + "c7": 1.3361072584373597 }, "rgb": [222, 0, 59] }, @@ -188088,23 +188088,23 @@ "year": 1764, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -19.713874102008617, - "c2": -5.197343361356975, - "c3": -32.54935985541554, - "c4": 25.136900958977485, - "c5": -11.925299426011659, - "c6": -29.476245125972405, - "c7": 26.104159138776957 + "points": { + "c1": 28.46261009383987, + "c2": 15.756663088136492, + "c3": 32.86720296543788, + "c4": -25.919422773237557, + "c5": -4.019373949190154, + "c6": -27.90489458695051, + "c7": -17.57177762420488 }, - "vertexSeeds": { - "c1": 2.994826784034183, - "c2": 3.0133346821581255, - "c3": 2.957771437592896, - "c4": 2.834107671855565, - "c5": 2.807854678946981, - "c6": 3.0862087208967024, - "c7": 3.0420751980080056 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.43828016643551, + "c3": 3.6985668053629186, + "c4": 2.9588534442903365, + "c5": 2.219140083217755, + "c6": 1.479426722145173, + "c7": 0.7397133610725818 }, "rgb": [77, 76, 132] }, @@ -188115,23 +188115,23 @@ "year": 1764, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": 9.579722175925344, - "c2": -14.777840892752085, - "c3": -5.33471030810121, - "c4": 16.652341223382447, - "c5": -3.8121211890422693, - "c6": -12.791667627446497, - "c7": -2.046997184271616 + "points": { + "c1": 6.9033501618971265, + "c2": -3.558348809359714, + "c3": 10.518470106862772, + "c4": 18.43194238071875, + "c5": 14.081349662579992, + "c6": -2.879501969198362, + "c7": -15.293435472389355 }, - "vertexSeeds": { - "c1": 4.073690132822468, - "c2": 4.151499505041191, - "c3": 4.03218174039141, - "c4": 4.043929673499083, - "c5": 4.055556973285961, - "c6": 4.098928643530271, - "c7": 4.082663574958222 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687937, + "c3": 4.993065187239952, + "c4": 3.9944521497919667, + "c5": 2.995839112343981, + "c6": 1.997226074895971, + "c7": 0.9986130374479855 }, "rgb": [238, 201, 159] }, @@ -188142,23 +188142,23 @@ "year": 1765, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": -0.643351539401003, - "c2": -19.29803449057212, - "c3": 22.015238711732422, - "c4": -12.114699862213172, - "c5": 47.79719491051722, - "c6": -14.6191467127545, - "c7": -41.390956263327375 + "points": { + "c1": -50.21910922253106, + "c2": 3.7024066854239024, + "c3": 42.55401380399036, + "c4": 36.74461496241689, + "c5": 53.31794945559497, + "c6": -23.509551563228563, + "c7": -0.10485722169271128 }, - "vertexSeeds": { - "c1": 3.2059135679944886, - "c2": 3.182202200092292, - "c3": 3.071643627839927, - "c4": 3.124988084401666, - "c5": 3.1540527178967617, - "c6": 3.0204389567651977, - "c7": 3.359321365324303 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719367, + "c5": 2.441054091539525, + "c6": 1.6273693943596834, + "c7": 0.8136846971798417 }, "rgb": [58, 15, 49] }, @@ -188169,23 +188169,23 @@ "year": 1764, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -4.184177158400978, - "c2": -8.50343395467138, - "c3": 20.406052110341626, - "c4": -0.4388018356725567, - "c5": 38.37803537913759, - "c6": 40.22721833755748, - "c7": 19.17771182247499 + "points": { + "c1": 13.755066227490964, + "c2": -0.15328089172246706, + "c3": 13.074037610630384, + "c4": -4.661504583657226, + "c5": 11.316608273234031, + "c6": 35.92225143473549, + "c7": -19.1611247393023 }, - "vertexSeeds": { - "c1": 3.576908755253732, - "c2": 3.330033661910503, - "c3": 3.224479825374712, - "c4": 3.101487465191677, - "c5": 3.5139149798317137, - "c6": 3.3713841610603037, - "c7": 3.114124198819124 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [77, 76, 132] }, @@ -188196,23 +188196,23 @@ "year": 1765, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 10.65356683985685, - "c2": 21.421001326501326, - "c3": -28.87907881372138, - "c4": 27.125918420964723, - "c5": 46.02801260036664, - "c6": 50.744639282804314, - "c7": 11.05713961689635 + "points": { + "c1": -45.844716919122575, + "c2": 48.505588475073836, + "c3": -6.094772331270633, + "c4": 1.1641060808158272, + "c5": -33.93701201897013, + "c6": -0.43451775384030356, + "c7": 46.74014553484719 }, - "vertexSeeds": { - "c1": 8.517117543597132, - "c2": 7.970314140987736, - "c3": 8.390791248406963, - "c4": 8.034935989116104, - "c5": 8.445642722644786, - "c6": 8.190340322305737, - "c7": 8.453968248469037 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858526, + "c3": 10.263522884882102, + "c4": 8.210818307905678, + "c5": 6.158113730929253, + "c6": 4.105409153952849, + "c7": 2.0527045769764247 }, "rgb": [238, 201, 159] }, @@ -188223,23 +188223,23 @@ "year": 1764, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 2.3147186357824197, - "c2": 37.585681065561594, - "c3": -20.382525269971595, - "c4": -40.90470161978567, - "c5": -30.771884797992648, - "c6": 8.975204567537581, - "c7": -6.767153872400492 + "points": { + "c1": -37.04853500704678, + "c2": 30.69619780795764, + "c3": 40.980081263120276, + "c4": 18.391221729328926, + "c5": 27.449137039010786, + "c6": -16.41069121621196, + "c7": -45.35183976511543 }, - "vertexSeeds": { - "c1": 12.62056751120806, - "c2": 12.646301097413124, - "c3": 12.624430352033784, - "c4": 12.613598270363475, - "c5": 12.643005995717594, - "c6": 12.62931155429248, - "c7": 12.64600358767472 + "offsets": { + "c1": 21.100323624595468, + "c2": 18.085991678224172, + "c3": 15.071659731854076, + "c4": 12.057327785482782, + "c5": 9.042995839112686, + "c6": 6.028663892741391, + "c7": 3.0143319463712954 }, "rgb": [58, 15, 49] }, @@ -188250,23 +188250,23 @@ "year": 1764, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -10.477090613841504, - "c2": 35.56372609604333, - "c3": -3.480259651180482, - "c4": 19.381357498870976, - "c5": -14.494186740516483, - "c6": 4.7861418225645025, - "c7": -27.18755492449469 + "points": { + "c1": -30.395856147420517, + "c2": 8.080412268312344, + "c3": 16.048223895882835, + "c4": -19.749121219228222, + "c5": -12.06373307336947, + "c6": -22.324129760346896, + "c7": 1.4375470601733937 }, - "vertexSeeds": { - "c1": 12.895026374657172, - "c2": 13.0052084727551, - "c3": 13.036884315625391, - "c4": 12.90792223866444, - "c5": 12.84376137080159, - "c6": 12.827778571718023, - "c7": 12.94450847974096 + "offsets": { + "c1": 21.779935275080906, + "c2": 18.668515950069292, + "c3": 15.557096625057872, + "c4": 12.44567730004626, + "c5": 9.334257975034646, + "c6": 6.222838650023224, + "c7": 3.111419325011612 }, "rgb": [86, 146, 138] }, @@ -188277,23 +188277,23 @@ "year": 1765, "resistanceReported": true, "duration": 34473600, - "curveSeeds": { - "c1": 6.807073156157173, - "c2": 9.680939543050293, - "c3": -33.9954397438769, - "c4": 25.103557422038193, - "c5": 43.71915651026127, - "c6": 7.293549814730234, - "c7": 47.67691706499268 + "points": { + "c1": -22.631284393033855, + "c2": 5.555834970557946, + "c3": -36.96065423750052, + "c4": 15.173891100066868, + "c5": 25.953740921647963, + "c6": 24.553511859463455, + "c7": 30.166279385013056 }, - "vertexSeeds": { - "c1": 1.3040056327010154, - "c2": 1.2835456522055855, - "c3": 1.359522224371689, - "c4": 1.109697464188222, - "c5": 1.3742286361464562, - "c6": 1.226900125357115, - "c7": 1.172850040324193 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361993, + "c3": 1.687471104946834, + "c4": 1.3499768839574668, + "c5": 1.0124826629680996, + "c6": 0.6749884419787334, + "c7": 0.3374942209893672 }, "rgb": [86, 146, 138] }, @@ -188304,23 +188304,23 @@ "year": 1765, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": 25.148504834167206, - "c2": -23.8137033652338, - "c3": 29.22092258670579, - "c4": 16.51693022963672, - "c5": -14.323266985622688, - "c6": -12.521437533770651, - "c7": -26.55648378505951 + "points": { + "c1": -44.63661158551446, + "c2": -30.80756693344757, + "c3": 13.382520221464269, + "c4": 4.393850898944407, + "c5": 28.22984955747267, + "c6": 14.637971165893042, + "c7": -24.888860102698853 }, - "vertexSeeds": { - "c1": 10.390022960398028, - "c2": 9.418133378520052, - "c3": 9.27673595331643, - "c4": 9.991827403966555, - "c5": 9.342267483970781, - "c6": 9.745417087768239, - "c7": 9.380265028597321 + "offsets": { + "c1": 18.25242718446602, + "c2": 15.644937586685169, + "c3": 13.037447988904296, + "c4": 10.429958391123444, + "c5": 7.822468793342574, + "c6": 5.214979195561722, + "c7": 2.607489597780851 }, "rgb": [222, 0, 59] }, @@ -188331,23 +188331,23 @@ "year": 1764, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 0.8802413501436988, - "c2": 13.45162173869408, - "c3": 10.550898733565468, - "c4": 10.84357569698026, - "c5": -19.309324011575857, - "c6": -35.68689491508334, - "c7": 18.088631455803032 + "points": { + "c1": 19.312849671966596, + "c2": -2.567601745733299, + "c3": -13.928410362911546, + "c4": -40.84901709573472, + "c5": -11.526997117190689, + "c6": 36.27573469458676, + "c7": 38.54946225379936 }, - "vertexSeeds": { - "c1": 4.580637438139966, - "c2": 4.634286759075723, - "c3": 4.763150048840947, - "c4": 5.0762761005829455, - "c5": 4.729482442363894, - "c6": 4.570457311997981, - "c7": 4.530511382528458 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819698, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.243643088303281 }, "rgb": [86, 146, 138] }, @@ -188358,23 +188358,23 @@ "year": 1765, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": -5.961030374740012, - "c2": 2.6898773906136952, - "c3": 49.24058897364615, - "c4": -45.46776443569094, - "c5": -33.335557473411086, - "c6": -38.23345358839164, - "c7": 49.170788766083696 + "points": { + "c1": -26.430460481806325, + "c2": -23.8520169561293, + "c3": -30.671378636717126, + "c4": -27.195491150860548, + "c5": 33.41386831936064, + "c6": 43.816994697021364, + "c7": 40.279145853713636 }, - "vertexSeeds": { - "c1": 7.473746117706972, - "c2": 6.956019735847327, - "c3": 7.9022888983801325, - "c4": 7.647639812716223, - "c5": 7.680221721243588, - "c6": 6.757584220947316, - "c7": 7.113574135179073 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [58, 15, 49] }, @@ -188385,23 +188385,23 @@ "year": 1765, "resistanceReported": false, "duration": 48211200, - "curveSeeds": { - "c1": 60.139050949791226, - "c2": -39.8066203851604, - "c3": 48.69160995526748, - "c4": -32.94039379920664, - "c5": -59.013040827131306, - "c6": -47.119526137441866, - "c7": 59.11687617009787 + "points": { + "c1": 28.58602421759771, + "c2": -44.24007979701421, + "c3": -63.77946330387667, + "c4": -15.838367738943127, + "c5": 13.794780197761114, + "c6": 55.12879713006585, + "c7": -33.68563152110552 }, - "vertexSeeds": { - "c1": 5.948113944820955, - "c2": 5.762542893472949, - "c3": 5.974384135801104, - "c4": 5.757480446544096, - "c5": 5.926727727506703, - "c6": 5.659750419913042, - "c7": 5.860948286720585 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468806, + "c3": 7.165973185390657, + "c4": 5.732778548312537, + "c5": 4.2995839112343885, + "c6": 2.8663892741562687, + "c7": 1.43319463707812 }, "rgb": [86, 146, 138] }, @@ -188412,23 +188412,23 @@ "year": 1764, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 15.989486142713325, - "c2": -3.8713237352590113, - "c3": -0.21469636180813723, - "c4": 16.483136688094504, - "c5": -3.0426530098610165, - "c6": -17.67886164549541, - "c7": 12.233012887582731 + "points": { + "c1": -9.050511610042804, + "c2": -12.708196638134428, + "c3": -35.52024745721109, + "c4": -35.07291704255719, + "c5": 5.063275836437846, + "c6": -1.3547211082494286, + "c7": -30.349493972745943 }, - "vertexSeeds": { - "c1": 7.896047533471255, - "c2": 8.362150485063367, - "c3": 8.671190586153827, - "c4": 7.608245739078744, - "c5": 8.19516371509584, - "c6": 7.924973056429034, - "c7": 8.567600951095239 + "offsets": { + "c1": 14.627831715210357, + "c2": 12.53814147018031, + "c3": 10.448451225150261, + "c4": 8.358760980120202, + "c5": 6.269070735090155, + "c6": 4.179380490060107, + "c7": 2.0896902450300603 }, "rgb": [238, 201, 159] }, @@ -188439,23 +188439,23 @@ "year": 1764, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": -41.659960123471514, - "c2": -23.548754647528224, - "c3": -38.05304444553418, - "c4": -45.250428787393396, - "c5": 31.56236750443761, - "c6": 24.15320087491107, - "c7": 0.8856388725170135 + "points": { + "c1": -17.957643134083977, + "c2": -37.82607174331656, + "c3": 18.387882831069938, + "c4": -13.266900850975041, + "c5": 2.7370822126731014, + "c6": 41.38448692822295, + "c7": -32.98330336941078 }, - "vertexSeeds": { - "c1": 6.326949064924172, - "c2": 6.187765232836514, - "c3": 6.1649380553714535, - "c4": 6.362255463328482, - "c5": 6.393251921449604, - "c6": 6.204127980093111, - "c7": 6.330047848303306 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474328, + "c3": 7.743874248728622, + "c4": 6.195099398982887, + "c5": 4.646324549237179, + "c6": 3.0975496994914433, + "c7": 1.5487748497457074 }, "rgb": [86, 146, 138] }, @@ -188466,23 +188466,23 @@ "year": 1765, "resistanceReported": true, "duration": 37843200, - "curveSeeds": { - "c1": -17.20605215541449, - "c2": -14.280393366903702, - "c3": -13.22942670550681, - "c4": -33.27857304090116, - "c5": -36.77999477425344, - "c6": 26.042484367925034, - "c7": -33.749402089392404 + "points": { + "c1": -37.28645736206238, + "c2": 0.11040028484979558, + "c3": -21.63333665589741, + "c4": -32.934243691352265, + "c5": 3.3369822068382646, + "c6": -14.119455581094513, + "c7": 37.97640448380678 }, - "vertexSeeds": { - "c1": 4.546223269630083, - "c2": 4.320070201736383, - "c3": 4.605635633139806, - "c4": 4.0864242350683675, - "c5": 4.194161446042874, - "c6": 4.061824746748014, - "c7": 4.570762499999894 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015258, + "c3": 5.75589459084605, + "c4": 4.604715672676841, + "c5": 3.453536754507632, + "c6": 2.302357836338423, + "c7": 1.1511789181692145 }, "rgb": [86, 146, 138] }, @@ -188493,23 +188493,23 @@ "year": 1765, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -22.27067713094515, - "c2": 17.44127760077376, - "c3": -3.036738121690213, - "c4": 25.3884772190235, - "c5": 39.51253942692796, - "c6": -25.642996569788078, - "c7": -50.486123984024275 + "points": { + "c1": -38.56874285007177, + "c2": 19.340880628961088, + "c3": -38.42922053387141, + "c4": 10.395514620348308, + "c5": -8.190900281592633, + "c6": 51.41538627752688, + "c7": -13.421329130125848 }, - "vertexSeeds": { - "c1": 6.606812036665562, - "c2": 6.40507780478027, - "c3": 6.2544485068233815, - "c4": 6.5780337286826, - "c5": 6.423738038483591, - "c6": 6.303802367898756, - "c7": 6.434143066086445 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.4868238557559, + "c3": 7.9056865464632535, + "c4": 6.324549237170609, + "c5": 4.743411927877935, + "c6": 3.1622746185852906, + "c7": 1.5811373092926453 }, "rgb": [238, 201, 159] }, @@ -188520,23 +188520,23 @@ "year": 1764, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 7.655499767010291, - "c2": -24.898133972202007, - "c3": -27.64839970906415, - "c4": 13.357061811933157, - "c5": 13.93399802330984, - "c6": -0.7254786323318569, - "c7": 37.25863527515922 + "points": { + "c1": 12.197051229850842, + "c2": -39.558452118879785, + "c3": -13.779746330668623, + "c4": 32.539685367137636, + "c5": -32.86284095775937, + "c6": -15.726253380037218, + "c7": 40.162140683307115 }, - "vertexSeeds": { - "c1": 3.76431259039552, - "c2": 3.936869635364181, - "c3": 3.693727598042468, - "c4": 3.6766055601597945, - "c5": 3.5474772911653067, - "c6": 3.620529342788237, - "c7": 3.810173494115474 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245492, + "c3": 4.738788719371241, + "c4": 3.7910309754969997, + "c5": 2.84327323162275, + "c6": 1.8955154877484999, + "c7": 0.9477577438742499 }, "rgb": [238, 201, 159] }, @@ -188547,23 +188547,23 @@ "year": 1765, "resistanceReported": false, "duration": 51753600, - "curveSeeds": { - "c1": 13.176203978592142, - "c2": -7.151724132529267, - "c3": -54.30551653281573, - "c4": -20.09436597310596, - "c5": -31.878745995294004, - "c6": 20.257714329724607, - "c7": -60.69532403365349 + "points": { + "c1": 32.080085828281966, + "c2": 68.10005733594333, + "c3": -30.32299387213093, + "c4": 15.988533856541764, + "c5": 11.514254630753484, + "c6": 53.4810997314287, + "c7": -14.364081826239584 }, - "vertexSeeds": { - "c1": 3.0743640969879373, - "c2": 2.904004422787486, - "c3": 2.9732367108390982, - "c4": 2.960718648045457, - "c5": 2.9140132640397898, - "c6": 2.9385798582320772, - "c7": 2.9118254155807084 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475722, + "c3": 3.721682847896442, + "c4": 2.9773462783171487, + "c5": 2.233009708737868, + "c6": 1.4886731391585744, + "c7": 0.7443365695792937 }, "rgb": [86, 146, 138] }, @@ -188574,23 +188574,23 @@ "year": 1765, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": -24.227981516432965, - "c2": -19.13661000034622, - "c3": -42.904445642625674, - "c4": -25.31510643035497, - "c5": 48.56259404689401, - "c6": -17.52472209687675, - "c7": -49.49826853422562 + "points": { + "c1": 32.94946600988518, + "c2": -1.2225477267076883, + "c3": -38.33524812653702, + "c4": -52.524874105855105, + "c5": 41.86083388346315, + "c6": -39.51997078588775, + "c7": -34.34313819193181 }, - "vertexSeeds": { - "c1": 3.298776292676907, - "c2": 3.489836397226088, - "c3": 3.44887170926496, - "c4": 3.510440786227664, - "c5": 3.496231053159189, - "c6": 3.468516307517121, - "c7": 3.3655072410656457 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320384, + "c3": 4.207119741100329, + "c4": 3.3656957928802607, + "c5": 2.524271844660192, + "c6": 1.6828478964401374, + "c7": 0.8414239482200687 }, "rgb": [77, 76, 132] }, @@ -188601,23 +188601,23 @@ "year": 1765, "resistanceReported": false, "duration": 55382400, - "curveSeeds": { - "c1": 61.9823012169104, - "c2": 46.71130707463276, - "c3": -39.43824416338839, - "c4": 26.52020105992129, - "c5": -15.153562849016026, - "c6": -50.720732153629385, - "c7": 48.26713945271128 + "points": { + "c1": 4.26314559767934, + "c2": -67.47454705797199, + "c3": -11.328676184232286, + "c4": -3.090400520039239, + "c5": -55.19649325118479, + "c6": -24.705849887724185, + "c7": -25.554619773039846 }, - "vertexSeeds": { - "c1": 8.195281277247783, - "c2": 7.919762749994517, - "c3": 7.827047863459996, - "c4": 7.923058081756378, - "c5": 8.266842969188076, - "c6": 7.969500447503469, - "c7": 8.122486137000841 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255189, + "c3": 9.916782246879336, + "c4": 7.9334257975034586, + "c5": 5.950069348127608, + "c6": 3.9667128987517293, + "c7": 1.983356449375851 }, "rgb": [222, 0, 59] }, @@ -188628,23 +188628,23 @@ "year": 1765, "resistanceReported": false, "duration": 61603200, - "curveSeeds": { - "c1": -53.63179074289542, - "c2": 18.927824249365827, - "c3": 6.6926619249518495, - "c4": 65.51975980192098, - "c5": 37.464191661552576, - "c6": -9.688707370211844, - "c7": 69.8098996123782 + "points": { + "c1": 61.117100563874445, + "c2": 52.39525517060868, + "c3": -70.77371623835651, + "c4": -74.67435701599254, + "c5": 46.96729916162833, + "c6": -21.54906222852538, + "c7": -78.95824877379498 }, - "vertexSeeds": { - "c1": 5.037917890168856, - "c2": 5.166400930444111, - "c3": 5.154607492146648, - "c4": 4.873385018994055, - "c5": 4.853066001645934, - "c6": 4.805007927244746, - "c7": 4.925411415023976 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.65603328710125, + "c3": 6.380027739251045, + "c4": 5.10402219140084, + "c5": 3.8280166435506335, + "c6": 2.55201109570042, + "c7": 1.2760055478502141 }, "rgb": [58, 15, 49] }, @@ -188655,23 +188655,23 @@ "year": 1765, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": -47.532560540848095, - "c2": 37.83751379475635, - "c3": 33.658323557980154, - "c4": -13.399830016208277, - "c5": 3.36720071987434, - "c6": -33.65344179250127, - "c7": 14.171351946040446 + "points": { + "c1": 12.69901369312717, + "c2": -5.342059990575372, + "c3": -5.184828851566451, + "c4": 13.054000123953685, + "c5": 47.47418595043166, + "c6": -11.847314271512332, + "c7": -13.180735562370167 }, - "vertexSeeds": { - "c1": 8.142539508431641, - "c2": 7.763153864571648, - "c3": 8.433494066440419, - "c4": 8.102081911832812, - "c5": 8.489409368504324, - "c6": 8.082002623074231, - "c7": 7.945374018629732 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [238, 201, 159] }, @@ -188682,23 +188682,23 @@ "year": 1765, "resistanceReported": false, "duration": 48297600, - "curveSeeds": { - "c1": -35.529615416034225, - "c2": 23.048917736443848, - "c3": -55.49709396384304, - "c4": -28.21019030148279, - "c5": 25.583126280039956, - "c6": 18.567235080348347, - "c7": -48.548941184105004 + "points": { + "c1": -50.07342598719079, + "c2": 14.196450623238348, + "c3": 31.919924789551956, + "c4": 18.9048228992159, + "c5": -20.751168574918935, + "c6": -44.9599981615893, + "c7": -5.647939110323847 }, - "vertexSeeds": { - "c1": 3.992271527446235, - "c2": 4.284137824386455, - "c3": 4.184054777093183, - "c4": 3.964663480405027, - "c5": 3.9859727830326843, - "c6": 4.188099193839001, - "c7": 4.178096548462603 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [58, 15, 49] }, @@ -188709,23 +188709,23 @@ "year": 1765, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -21.58416575839392, - "c2": -42.17748856682006, - "c3": -30.634368719798132, - "c4": 35.26032935142942, - "c5": 37.07470903297872, - "c6": 43.491254450295315, - "c7": -38.474711283258316 + "points": { + "c1": 0.05643714915584752, + "c2": -25.169474997458085, + "c3": 11.377388870969071, + "c4": 3.8507284701693933, + "c5": -35.81144744693894, + "c6": 34.377691742524874, + "c7": 26.409224328881265 }, - "vertexSeeds": { - "c1": 5.905356774498067, - "c2": 5.5956523949832615, - "c3": 5.582310694093256, - "c4": 5.9955682002560104, - "c5": 6.022144319445552, - "c6": 5.761956832566659, - "c7": 5.570152533530648 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710128, + "c3": 7.304669440591775, + "c4": 5.843735552473406, + "c5": 4.382801664355055, + "c6": 2.921867776236703, + "c7": 1.4609338881183516 }, "rgb": [222, 0, 59] }, @@ -188736,23 +188736,23 @@ "year": 1764, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -22.226055564231704, - "c2": 3.0953919772702534, - "c3": -23.654744507962597, - "c4": 23.585093082992707, - "c5": -7.106467671327987, - "c6": -12.216257299646749, - "c7": -23.270793665896353 + "points": { + "c1": 11.661586167144627, + "c2": -13.736474207432543, + "c3": 30.143638091477534, + "c4": -12.7020055216733, + "c5": -5.14432730631523, + "c6": 14.477093530740504, + "c7": 10.731740732023688 }, - "vertexSeeds": { - "c1": 2.9216115349286054, - "c2": 2.8983210254462817, - "c3": 2.9719638502091605, - "c4": 3.1037630166819206, - "c5": 3.1895177008848545, - "c6": 3.14573426145117, - "c7": 3.091403737793346 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -188763,23 +188763,23 @@ "year": 1765, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": -30.616797878893653, - "c2": 1.6441734816893714, - "c3": -35.778932799417696, - "c4": -28.396596876352906, - "c5": 46.667185073613595, - "c6": 26.23020655327005, - "c7": -26.511637729505445 + "points": { + "c1": -41.91519643628096, + "c2": -16.844312894880602, + "c3": 26.983729514238334, + "c4": -52.62676684434619, + "c5": 0.8979448523722411, + "c6": -38.03740120371752, + "c7": 31.21042231397287 }, - "vertexSeeds": { - "c1": 4.246887114506902, - "c2": 4.365447339153675, - "c3": 3.8819833116359304, - "c4": 4.381546856098443, - "c5": 4.250794507597671, - "c6": 3.943985231773308, - "c7": 4.162324663191122 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703654, + "c4": 3.698566805362922, + "c5": 2.7739251040221906, + "c6": 1.8492834026814589, + "c7": 0.9246417013407318 }, "rgb": [77, 76, 132] }, @@ -188790,23 +188790,23 @@ "year": 1765, "resistanceReported": false, "duration": 51926400, - "curveSeeds": { - "c1": 10.708235324094701, - "c2": 17.113745375680935, - "c3": -25.31688418676653, - "c4": -51.94734505293998, - "c5": -37.14251927049087, - "c6": -43.629211690359654, - "c7": -6.600944781746492 + "points": { + "c1": -46.91666126309268, + "c2": -42.73250487748507, + "c3": 45.59512231094028, + "c4": -36.91858997503118, + "c5": 22.522826005168312, + "c6": 32.59261904915729, + "c7": -58.37433240113269 }, - "vertexSeeds": { - "c1": 3.0951967567659846, - "c2": 3.195805522167673, - "c3": 3.1746421107904705, - "c4": 3.35493905674921, - "c5": 3.1031861236576184, - "c6": 3.3471065934539856, - "c7": 3.2280486316869066 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159497, + "c3": 4.114655570966252, + "c4": 3.291724456772998, + "c5": 2.4687933425797532, + "c6": 1.645862228386499, + "c7": 0.822931114193245 }, "rgb": [58, 15, 49] }, @@ -188817,23 +188817,23 @@ "year": 1765, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": -18.450592871402655, - "c2": 46.60178190178838, - "c3": -26.93334796408889, - "c4": -23.597815723623462, - "c5": -49.76499261642098, - "c6": -4.563073580141122, - "c7": -25.415190972935015 + "points": { + "c1": -6.029636111685612, + "c2": 37.850174950114855, + "c3": 53.07730038296574, + "c4": -3.489333786543746, + "c5": -13.112574906954976, + "c6": -13.546686871261436, + "c7": -10.836651449906505 }, - "vertexSeeds": { - "c1": 3.0237838253821647, - "c2": 2.919997554494416, - "c3": 3.1783181315167672, - "c4": 3.230260028924203, - "c5": 3.2100302705625383, - "c6": 2.9520958961505137, - "c7": 3.108346503559074 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -188844,23 +188844,23 @@ "year": 1764, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 15.24255721438594, - "c2": -38.32237409766052, - "c3": 23.09948935005375, - "c4": 14.280621246043339, - "c5": -32.63160651481995, - "c6": -3.3571472677073615, - "c7": 2.949084904662776 + "points": { + "c1": -34.999506340062254, + "c2": 37.35209819581864, + "c3": 16.852278352473895, + "c4": 11.109063132536662, + "c5": -5.2444351106403175, + "c6": 10.021021235583113, + "c7": 14.625866181171219 }, - "vertexSeeds": { - "c1": 3.261575988345113, - "c2": 2.9304577047107663, - "c3": 3.337455802806793, - "c4": 2.9298610451297247, - "c5": 3.0659986425632084, - "c6": 3.5481971138033015, - "c7": 3.4908903823096256 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441054, + "c3": 4.276467868700879, + "c4": 3.4211742949607022, + "c5": 2.565880721220527, + "c6": 1.7105871474803511, + "c7": 0.8552935737401756 }, "rgb": [86, 146, 138] }, @@ -188871,23 +188871,23 @@ "year": 1766, "resistanceReported": false, "duration": 63158400, - "curveSeeds": { - "c1": 74.1012973249631, - "c2": -61.28776899860732, - "c3": -29.221901791450207, - "c4": 1.2811077784274971, - "c5": 15.430925254977211, - "c6": -23.408763467086644, - "c7": 65.3880355183758 + "points": { + "c1": -10.372937519657398, + "c2": 38.56082879421609, + "c3": 17.785397988651198, + "c4": -18.491994583337657, + "c5": 19.396252323407438, + "c6": -76.95675790309757, + "c7": 52.329119415807924 }, - "vertexSeeds": { - "c1": 2.9578018551768914, - "c2": 3.159543218091526, - "c3": 2.967492642938572, - "c4": 3.117985256031207, - "c5": 2.959096012923282, - "c6": 2.988422402477535, - "c7": 3.036056622569225 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -188898,23 +188898,23 @@ "year": 1765, "resistanceReported": false, "duration": 45273600, - "curveSeeds": { - "c1": 53.506858657544825, - "c2": 41.732087219489856, - "c3": -45.72235163713869, - "c4": 14.576700705974275, - "c5": 2.9590066308274316, - "c6": -55.971803254224405, - "c7": 40.070289466323715 + "points": { + "c1": 1.261159316527305, + "c2": 52.56703283797148, + "c3": -48.272760881693145, + "c4": -25.863995173653713, + "c5": 60.29834187198827, + "c6": 56.02668856438338, + "c7": -55.4725750663256 }, - "vertexSeeds": { - "c1": 2.9734291565664175, - "c2": 2.962302146786188, - "c3": 3.0885956275029858, - "c4": 3.1901367904743023, - "c5": 2.9411984721054756, - "c6": 2.7257554270260846, - "c7": 3.5095953154768145 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703652, + "c4": 3.698566805362921, + "c5": 2.773925104022192, + "c6": 1.8492834026814604, + "c7": 0.9246417013407288 }, "rgb": [238, 201, 159] }, @@ -188925,23 +188925,23 @@ "year": 1765, "resistanceReported": false, "duration": 47865600, - "curveSeeds": { - "c1": 54.415316143808816, - "c2": -14.188955719717335, - "c3": -6.753245635305575, - "c4": 62.197131304899095, - "c5": -36.1448854105293, - "c6": -11.90370869171415, - "c7": 48.74587576692999 + "points": { + "c1": 15.328352911193605, + "c2": -13.227642920019349, + "c3": 20.331311039423227, + "c4": 4.550805399135399, + "c5": 21.36152094163326, + "c6": 52.73665030050307, + "c7": -49.12467082156224 }, - "vertexSeeds": { - "c1": 3.2917602375703794, - "c2": 3.0892217129770008, - "c3": 3.2698667399520414, - "c4": 2.990030029568505, - "c5": 3.036962105947758, - "c6": 3.298069851026298, - "c7": 2.9994717800811688 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918167, + "c3": 3.9759593157651385, + "c4": 3.1807674526121086, + "c5": 2.3855755894590884, + "c6": 1.5903837263060587, + "c7": 0.7951918631530294 }, "rgb": [222, 0, 59] }, @@ -188952,23 +188952,23 @@ "year": 1765, "resistanceReported": false, "duration": 51321600, - "curveSeeds": { - "c1": -48.87287546189749, - "c2": 20.791321548853972, - "c3": -28.153068075699174, - "c4": -28.886044744832738, - "c5": -3.4140631147018325, - "c6": -34.169544413104134, - "c7": -0.3104395776412474 + "points": { + "c1": -19.84593196209228, + "c2": 39.05292175258086, + "c3": 6.385517586386754, + "c4": -49.78904332709364, + "c5": -12.306134673158382, + "c6": -16.600425615735936, + "c7": -40.494564291678245 }, - "vertexSeeds": { - "c1": 0.6327246815162201, - "c2": 0.6311460196519014, - "c3": 0.6366398278608086, - "c4": 0.578431058916915, - "c5": 0.631441320690044, - "c6": 0.6346684664910294, - "c7": 0.5734593919283583 + "offsets": { + "c1": 1.1003236245954693, + "c2": 0.9431345353675451, + "c3": 0.7859454461396209, + "c4": 0.6287563569116967, + "c5": 0.47156726768377255, + "c6": 0.31437817845584837, + "c7": 0.15718908922792418 }, "rgb": [222, 0, 59] }, @@ -188979,23 +188979,23 @@ "year": 1764, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -29.036870986737178, - "c2": -1.4517853717289313, - "c3": -5.78960292543232, - "c4": -5.644755428372619, - "c5": -2.5283290205439, - "c6": -11.422134869934677, - "c7": 18.910258734374708 + "points": { + "c1": -28.583357680133638, + "c2": 5.142041806733815, + "c3": -12.796676981380184, + "c4": 5.1791795555203635, + "c5": 24.536999404902907, + "c6": -36.25790587732633, + "c7": -25.466538048494257 }, - "vertexSeeds": { - "c1": 2.0048859602508062, - "c2": 2.0775246556656777, - "c3": 2.1649314941204563, - "c4": 2.1634794640129416, - "c5": 2.151888056216406, - "c6": 2.11042716068296, - "c7": 1.9520704525534134 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300505, + "c5": 1.5672676837725386, + "c6": 1.0448451225150266, + "c7": 0.522422561257512 }, "rgb": [58, 15, 49] }, @@ -189006,23 +189006,23 @@ "year": 1764, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -26.728648100859317, - "c2": -34.91838482982911, - "c3": 0.5974517390829632, - "c4": 11.154333765318441, - "c5": 40.28352772765551, - "c6": -24.336413624374, - "c7": 32.59206848872829 + "points": { + "c1": -16.834212412712226, + "c2": -1.3061147021637893, + "c3": -13.58482362559862, + "c4": 3.2182413666693535, + "c5": -26.84091544103186, + "c6": -42.38093741546704, + "c7": -36.15616873833842 }, - "vertexSeeds": { - "c1": 11.724048143176358, - "c2": 10.404083792339328, - "c3": 10.375807472250607, - "c4": 12.026558424746138, - "c5": 10.40182895767911, - "c6": 11.350307449267536, - "c7": 12.309633087646013 + "offsets": { + "c1": 20.58252427184466, + "c2": 17.642163661581144, + "c3": 14.70180305131762, + "c4": 11.7614424410541, + "c5": 8.82108183079058, + "c6": 5.8807212205270405, + "c7": 2.9403606102635402 }, "rgb": [58, 15, 49] }, @@ -189033,23 +189033,23 @@ "year": 1764, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -16.875312176123654, - "c2": 22.853905123198615, - "c3": -11.929789867427381, - "c4": -1.4676814431906138, - "c5": 28.193713214728284, - "c6": -9.249388490408688, - "c7": -13.11913696574803 + "points": { + "c1": 4.051972984573148, + "c2": -22.74493741998942, + "c3": 10.162685649162391, + "c4": -5.937967333192734, + "c5": -28.194670341230346, + "c6": 14.235208888955249, + "c7": 18.589045102350667 }, - "vertexSeeds": { - "c1": 3.427730356196991, - "c2": 3.5121449547710775, - "c3": 3.60375504243244, - "c4": 3.7984801394259846, - "c5": 3.516826700865406, - "c6": 3.5855359967393956, - "c7": 3.4386420720905075 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.62320850670365, + "c4": 3.6985668053629186, + "c5": 2.773925104022194, + "c6": 1.8492834026814629, + "c7": 0.9246417013407314 }, "rgb": [58, 15, 49] }, @@ -189060,23 +189060,23 @@ "year": 1765, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -9.519349569315409, - "c2": -39.587672750925734, - "c3": 17.200292154123176, - "c4": 32.56574561949954, - "c5": -27.453858882617766, - "c6": 41.74743308861612, - "c7": -23.401661111688487 + "points": { + "c1": -21.882662422302882, + "c2": 29.889032832830438, + "c3": -20.643291252825605, + "c4": 24.774072645220386, + "c5": 43.02984055199751, + "c6": -5.640084259008262, + "c7": -45.36610879741931 }, - "vertexSeeds": { - "c1": 5.749390751452911, - "c2": 5.544505717196531, - "c3": 5.621157744295572, - "c4": 5.698203259019589, - "c5": 5.595481579627315, - "c6": 5.715133021712879, - "c7": 5.670532556677495 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.29403606102637, + "c3": 6.911696717521955, + "c4": 5.529357374017581, + "c5": 4.1470180305131645, + "c6": 2.7646786870087907, + "c7": 1.3823393435044162 }, "rgb": [222, 0, 59] }, @@ -189087,23 +189087,23 @@ "year": 1765, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -18.491928865100405, - "c2": 36.64637563744882, - "c3": -35.35655454815907, - "c4": 5.44649741194857, - "c5": 17.403518164584987, - "c6": -23.032179267764814, - "c7": -28.709296094244237 + "points": { + "c1": 38.53887431808025, + "c2": -7.769078626976828, + "c3": 11.362421850492673, + "c4": -12.003388313884415, + "c5": -10.016639952291783, + "c6": -16.469715347775036, + "c7": 40.68372695817637 }, - "vertexSeeds": { - "c1": 3.648510122609468, - "c2": 4.111468406988715, - "c3": 3.705825439141887, - "c4": 3.740821825143591, - "c5": 3.9339211446305247, - "c6": 3.9870109123086612, - "c7": 3.7810196686589737 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607487, + "c3": 4.946833102172909, + "c4": 3.9574664817383245, + "c5": 2.968099861303741, + "c6": 1.9787332408691622, + "c7": 0.9893666204345782 }, "rgb": [77, 76, 132] }, @@ -189114,23 +189114,23 @@ "year": 1764, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 2.876760347668874, - "c2": -12.191143408144521, - "c3": -5.674846943457048, - "c4": 5.466006351290716, - "c5": 21.60509856588806, - "c6": 11.054928716244067, - "c7": -14.539976251965838 + "points": { + "c1": 13.785245443801418, + "c2": -9.337457738101506, + "c3": -7.903137126390572, + "c4": 25.000844302396022, + "c5": 10.349296304412231, + "c6": 27.409939846669968, + "c7": 26.566708833239286 }, - "vertexSeeds": { - "c1": 7.3098120799904995, - "c2": 7.44512101098597, - "c3": 7.542675013296861, - "c4": 7.649248984649191, - "c5": 7.329435040839587, - "c6": 7.538368560462269, - "c7": 7.732077616224254 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.246417013407312, + "c4": 7.397133610725854, + "c5": 5.547850208044372, + "c6": 3.698566805362915, + "c7": 1.8492834026814575 }, "rgb": [222, 0, 59] }, @@ -189141,23 +189141,23 @@ "year": 1765, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -42.260222482737774, - "c2": 19.352031678005822, - "c3": -19.45169580091242, - "c4": 4.662371146380842, - "c5": -40.13618275276657, - "c6": -19.480657269919888, - "c7": -4.480245659976333 + "points": { + "c1": 39.17032414736003, + "c2": -39.66528033476893, + "c3": -1.5730647193942389, + "c4": 28.828414101380226, + "c5": 34.4252991494346, + "c6": 23.633948664102554, + "c7": -0.5307952701665357 }, - "vertexSeeds": { - "c1": 4.370671011750463, - "c2": 4.402339850476197, - "c3": 4.361988716537205, - "c4": 4.365320695232547, - "c5": 4.371085196497067, - "c6": 4.3663783441362325, - "c7": 4.396168968040533 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170626, + "c3": 5.270457697642153, + "c4": 4.216366158113751, + "c5": 3.162274618585278, + "c6": 2.1081830790568756, + "c7": 1.0540915395284027 }, "rgb": [222, 0, 59] }, @@ -189168,23 +189168,23 @@ "year": 1764, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": -5.858095580540727, - "c2": 13.705366817342302, - "c3": -11.971282876245782, - "c4": 19.00130681116783, - "c5": 2.7526756730356645, - "c6": -7.846510474152771, - "c7": -21.672073030305686 + "points": { + "c1": -9.751829637350788, + "c2": 12.319273179961478, + "c3": 8.947809341930196, + "c4": -14.597330222148141, + "c5": 17.9748043594063, + "c6": -18.7481754691785, + "c7": 13.469900343328987 }, - "vertexSeeds": { - "c1": 1.5785882733671184, - "c2": 1.6581703249118225, - "c3": 1.7371417807081437, - "c4": 1.555836566872744, - "c5": 1.6749672036725722, - "c6": 1.577993999662181, - "c7": 1.5671029123669562 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.524271844660194, + "c3": 2.103559870550162, + "c4": 1.6828478964401292, + "c5": 1.262135922330097, + "c6": 0.8414239482200646, + "c7": 0.4207119741100323 }, "rgb": [238, 201, 159] }, @@ -189195,23 +189195,23 @@ "year": 1765, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": -24.84661675131175, - "c2": 27.21234833408578, - "c3": -26.276738712911033, - "c4": 11.915643281356218, - "c5": 35.625975778543484, - "c6": 21.40858753560861, - "c7": -26.28146478246099 + "points": { + "c1": -7.8422528150241035, + "c2": -20.681387916027084, + "c3": 56.28162505997974, + "c4": -5.3828904139241445, + "c5": 7.958199719772516, + "c6": 55.97487795942897, + "c7": -33.081635869542566 }, - "vertexSeeds": { - "c1": 1.037631056159302, - "c2": 1.1148033548194978, - "c3": 1.0511420312220006, - "c4": 1.0723343600443322, - "c5": 0.995076441285709, - "c6": 1.0265479589734157, - "c7": 1.04485178608842 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.6366158113730926, + "c3": 1.363846509477577, + "c4": 1.0910772075820632, + "c5": 0.8183079056865472, + "c6": 0.5455386037910316, + "c7": 0.2727693018955158 }, "rgb": [58, 15, 49] }, @@ -189222,23 +189222,23 @@ "year": 1765, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": 24.89783204319461, - "c2": -27.842962010749606, - "c3": 46.069011821881375, - "c4": -38.04786970663454, - "c5": -17.83722120412339, - "c6": -9.123693945635338, - "c7": 39.994104838880304 + "points": { + "c1": -48.68188645577712, + "c2": 32.27164477495532, + "c3": -45.52880216197026, + "c4": -20.153793446305052, + "c5": 2.6003607766276673, + "c6": 27.77027452203066, + "c7": 10.455527864156899 }, - "vertexSeeds": { - "c1": 4.862709537579156, - "c2": 5.532325039218894, - "c3": 5.257684776245547, - "c4": 5.337828953848563, - "c5": 5.0883914641956025, - "c6": 5.133440100146174, - "c7": 4.824606954961307 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503468, + "c3": 6.611188164586225, + "c4": 5.28895053166897, + "c5": 3.966712898751728, + "c6": 2.644475265834485, + "c7": 1.3222376329172425 }, "rgb": [58, 15, 49] }, @@ -189249,23 +189249,23 @@ "year": 1764, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 26.08574653384154, - "c2": 14.578274997377644, - "c3": -20.340146678153516, - "c4": -4.094929763358916, - "c5": 17.222663584366156, - "c6": -5.523493014872987, - "c7": -24.57468304312766 + "points": { + "c1": 10.314240576377241, + "c2": 14.800305931974062, + "c3": 2.61737082432985, + "c4": -29.486685465551965, + "c5": 18.67438257905535, + "c6": -17.995150705881905, + "c7": -8.117713994592215 }, - "vertexSeeds": { - "c1": 1.8856479504001558, - "c2": 1.5861299490167664, - "c3": 1.7145059890687842, - "c4": 1.6887020586507802, - "c5": 1.7979648159985226, - "c6": 1.7457199308302753, - "c7": 1.5607966787005396 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.74618585298197, + "c3": 2.288488210818307, + "c4": 1.8307905686546457, + "c5": 1.373092926490985, + "c6": 0.9153952843273242, + "c7": 0.4576976421636608 }, "rgb": [222, 0, 59] }, @@ -189276,23 +189276,23 @@ "year": 1765, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 40.6856424868468, - "c2": 26.484225457971263, - "c3": 11.804894980520288, - "c4": -41.26022571998036, - "c5": -27.285879645495093, - "c6": -18.369720673871683, - "c7": 40.6765583474332 + "points": { + "c1": -35.07773919551677, + "c2": 41.40999621643269, + "c3": -19.523966255457065, + "c4": 25.547785019475683, + "c5": 28.803753665099407, + "c6": -39.61551425119238, + "c7": 44.403420805647585 }, - "vertexSeeds": { - "c1": 1.149044687207969, - "c2": 1.0942036579568861, - "c3": 1.1053881935322472, - "c4": 1.1350946897532463, - "c5": 1.0840629773142343, - "c6": 1.0533329186362366, - "c7": 1.0771828501149727 + "offsets": { + "c1": 2.0388349514563107, + "c2": 1.7475728155339798, + "c3": 1.4563106796116507, + "c4": 1.1650485436893199, + "c5": 0.8737864077669908, + "c6": 0.5825242718446599, + "c7": 0.2912621359223291 }, "rgb": [77, 76, 132] }, @@ -189303,23 +189303,23 @@ "year": 1764, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -8.380192774977328, - "c2": -20.34434075091974, - "c3": 10.53368812032371, - "c4": 28.136450025150907, - "c5": 1.9331383902750368, - "c6": 23.646706671192483, - "c7": 9.500625932703194 + "points": { + "c1": 15.158292220426496, + "c2": -8.174156661609267, + "c3": -27.549993609516495, + "c4": 10.042769575732052, + "c5": 14.173797465339455, + "c6": -3.7774287216657143, + "c7": 16.01321298971419 }, - "vertexSeeds": { - "c1": 3.151540713797876, - "c2": 3.0968002783233786, - "c3": 2.9252747646374386, - "c4": 2.916598924165738, - "c5": 3.166567880906701, - "c6": 2.994006126980828, - "c7": 3.0727977598034184 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -189330,23 +189330,23 @@ "year": 1764, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 2.7043143373946705, - "c2": 27.41415144785374, - "c3": -19.541627184024108, - "c4": 3.117464065071026, - "c5": 18.09924643623353, - "c6": -30.40409368051162, - "c7": -32.169899648141374 + "points": { + "c1": 2.7931001737552066, + "c2": -13.521334199685601, + "c3": 6.125752358422645, + "c4": -28.166029387819826, + "c5": -2.115521833302317, + "c6": -21.742662455926137, + "c7": -11.486594620098344 }, - "vertexSeeds": { - "c1": 3.7341558458409128, - "c2": 3.897360951463433, - "c3": 3.75527610124488, - "c4": 3.899575512480419, - "c5": 3.887486349087734, - "c6": 4.204981693103903, - "c7": 3.8841342923831137 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.1086453999075365, + "c4": 4.086916319926027, + "c5": 3.065187239944523, + "c6": 2.0434581599630137, + "c7": 1.0217290799815044 }, "rgb": [222, 0, 59] }, @@ -189357,23 +189357,23 @@ "year": 1765, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": 10.084486600912449, - "c2": -55.59348775748347, - "c3": 16.50362964980686, - "c4": 18.04046601055247, - "c5": 18.511349787716803, - "c6": -48.15606689754425, - "c7": 19.887080824039096 + "points": { + "c1": 33.75835713242409, + "c2": 34.740027484087626, + "c3": -39.53531773422432, + "c4": -23.125134765411573, + "c5": 51.22943556982717, + "c6": 48.99079121116642, + "c7": -42.9088104713108 }, - "vertexSeeds": { - "c1": 2.7664196542688746, - "c2": 2.692807191786228, - "c3": 2.675040160030531, - "c4": 2.8517438609091315, - "c5": 2.839609297871695, - "c6": 2.573777912429881, - "c7": 2.8559072997930297 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [58, 15, 49] }, @@ -189384,23 +189384,23 @@ "year": 1764, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -31.44171787817156, - "c2": 12.993369881175902, - "c3": 6.239319546904973, - "c4": 19.742307016567153, - "c5": 10.618174097680743, - "c6": -20.44356201678263, - "c7": -2.5692806979860165 + "points": { + "c1": -31.423506592429636, + "c2": 20.291512514341896, + "c3": 14.380261714850477, + "c4": -27.151510775914918, + "c5": -11.116496259814593, + "c6": 10.0715950448038, + "c7": 27.174948715755562 }, - "vertexSeeds": { - "c1": 6.916406106891059, - "c2": 7.182910955322273, - "c3": 6.955783956830766, - "c4": 6.953718334479927, - "c5": 7.153215790595564, - "c6": 7.028411212531932, - "c7": 7.069900489974203 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077678, + "c3": 8.09061488673138, + "c4": 6.472491909385109, + "c5": 4.854368932038839, + "c6": 3.236245954692568, + "c7": 1.618122977346271 }, "rgb": [77, 76, 132] }, @@ -189411,23 +189411,23 @@ "year": 1764, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -25.10047861756034, - "c2": 27.012231669413843, - "c3": -34.322527520693306, - "c4": 22.038974713529477, - "c5": -11.637300387067537, - "c6": 26.17149824099007, - "c7": 13.522299773087589 + "points": { + "c1": 24.995770929803292, + "c2": -5.908076966183053, + "c3": 20.758089490447986, + "c4": -27.832564857996964, + "c5": -22.989154750163944, + "c6": 3.7894666340142535, + "c7": -11.096456482223076 }, - "vertexSeeds": { - "c1": 1.6781820354233963, - "c2": 1.996436847386351, - "c3": 1.7398547800333033, - "c4": 1.9132072930325381, - "c5": 1.8023372992668285, - "c6": 2.0143946595316544, - "c7": 1.8285354083777994 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233, + "c3": 2.4271844660194186, + "c4": 1.9417475728155342, + "c5": 1.45631067961165, + "c6": 0.9708737864077658, + "c7": 0.4854368932038842 }, "rgb": [58, 15, 49] }, @@ -189438,23 +189438,23 @@ "year": 1765, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -8.009410363529959, - "c2": -8.80298740713031, - "c3": 1.2947487525159147, - "c4": 8.452160162324631, - "c5": -43.87736065544834, - "c6": 26.675357626201354, - "c7": 1.603370951241196 + "points": { + "c1": -16.16464488865184, + "c2": 10.867992518469634, + "c3": -38.15820919211251, + "c4": 28.532028683619068, + "c5": 29.65452576456793, + "c6": 45.369965626232364, + "c7": 18.64246106354748 }, - "vertexSeeds": { - "c1": 7.106595556098987, - "c2": 6.675791963790251, - "c3": 6.137009973659326, - "c4": 6.6026606132291725, - "c5": 6.307481211934911, - "c6": 6.6537335240260775, - "c7": 6.88425418459676 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083218, + "c3": 8.668515950069349, + "c4": 6.934812760055479, + "c5": 5.201109570041609, + "c6": 3.4674063800277395, + "c7": 1.7337031900138697 }, "rgb": [77, 76, 132] }, @@ -189465,23 +189465,23 @@ "year": 1764, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 12.827469140174607, - "c2": -25.34905248326347, - "c3": -23.829471941930933, - "c4": 16.22104277689798, - "c5": -18.49792695780906, - "c6": -3.751822892203183, - "c7": -6.196064410991614 + "points": { + "c1": -10.881848779529477, + "c2": -2.477429596113776, + "c3": 4.051115350150276, + "c4": 16.942489939867983, + "c5": 16.220100222981458, + "c6": 7.129939771489369, + "c7": -5.748952506822167 }, - "vertexSeeds": { - "c1": 4.2887683945032125, - "c2": 4.621143521597941, - "c3": 5.250135934502318, - "c4": 5.247605431512785, - "c5": 4.749858934169288, - "c6": 5.287246933570895, - "c7": 4.890276649447646 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302361, + "c3": 6.495607951918634, + "c4": 5.196486361534905, + "c5": 3.8973647711511803, + "c6": 2.598243180767451, + "c7": 1.2991215903837254 }, "rgb": [222, 0, 59] }, @@ -189492,23 +189492,23 @@ "year": 1764, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 20.858706219180434, - "c2": 16.946214114323304, - "c3": 24.083123260086992, - "c4": -17.82526954553474, - "c5": 0.06051252478612312, - "c6": -8.772901394053008, - "c7": -21.75687576370918 + "points": { + "c1": 7.330671235395485, + "c2": -30.000210965950146, + "c3": -21.851288389561468, + "c4": 29.33884901045733, + "c5": 23.920247049866305, + "c6": -14.58622605405285, + "c7": -20.69355580880181 }, - "vertexSeeds": { - "c1": 4.814384115166266, - "c2": 4.0750367364026046, - "c3": 4.725296032675132, - "c4": 4.064738965214041, - "c5": 4.787322893835419, - "c6": 4.702076722653306, - "c7": 4.235096109849786 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015259, + "c3": 5.7558945908460455, + "c4": 4.6047156726768375, + "c5": 3.4535367545076294, + "c6": 2.3023578363384165, + "c7": 1.1511789181692083 }, "rgb": [238, 201, 159] }, @@ -189519,23 +189519,23 @@ "year": 1765, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": 52.51241177619581, - "c2": -10.553967358949258, - "c3": 4.109951377450493, - "c4": -33.29963207234971, - "c5": 39.909412334648216, - "c6": 22.664682662711108, - "c7": -21.616387186460905 + "points": { + "c1": -54.34265381663997, + "c2": -5.856426262704659, + "c3": -2.4798040130026138, + "c4": 35.161248137390096, + "c5": 2.946575593128685, + "c6": 37.408693391148624, + "c7": -11.381269520248061 }, - "vertexSeeds": { - "c1": 4.359426707894845, - "c2": 4.015690205414457, - "c3": 4.050940612595708, - "c4": 3.9859181930659453, - "c5": 3.868554958133732, - "c6": 4.200276550573213, - "c7": 4.134946156202754 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251039, + "c3": 5.316689782709204, + "c4": 4.253351826167362, + "c5": 3.1900138696255196, + "c6": 2.126675913083677, + "c7": 1.0633379565418422 }, "rgb": [222, 0, 59] }, @@ -189546,23 +189546,23 @@ "year": 1764, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -1.3668096219100931, - "c2": -10.771109289341677, - "c3": 9.016701297546419, - "c4": 21.145388552179128, - "c5": 34.936836042643066, - "c6": 34.01076072093434, - "c7": 8.374129224368303 + "points": { + "c1": -16.50021802712917, + "c2": 17.423886700417896, + "c3": 34.55442108489842, + "c4": -24.535735856863127, + "c5": 13.922462318171021, + "c6": 24.23008236026932, + "c7": 12.141803557563307 }, - "vertexSeeds": { - "c1": 4.64550118023538, - "c2": 4.650773786801478, - "c3": 4.2230250094792305, - "c4": 4.709699673920029, - "c5": 4.137767429847486, - "c6": 4.44949991766403, - "c7": 4.253038483121852 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894594, + "c3": 5.686546463245492, + "c4": 4.549237170596395, + "c5": 3.4119278779472935, + "c6": 2.2746185852981977, + "c7": 1.1373092926490957 }, "rgb": [86, 146, 138] }, @@ -189573,23 +189573,23 @@ "year": 1765, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -22.303204153730924, - "c2": -8.429834657736656, - "c3": 23.43504448377123, - "c4": -24.407396173739468, - "c5": 10.910723499169102, - "c6": -30.729185953459343, - "c7": 21.98452534549225 + "points": { + "c1": 24.269162231643584, + "c2": -16.888868692826435, + "c3": 12.450366645832453, + "c4": -22.428394064549074, + "c5": -2.694550768264044, + "c6": 7.657507332861165, + "c7": -1.631968660581947 }, - "vertexSeeds": { - "c1": 8.448949783995056, - "c2": 8.602571110121287, - "c3": 8.770597234377991, - "c4": 8.682448736352466, - "c5": 8.30781903223577, - "c6": 8.233431070250985, - "c7": 8.53154168590703 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220516, + "c3": 10.471567267683778, + "c4": 8.37725381414701, + "c5": 6.282940360610273, + "c6": 4.188626907073505, + "c7": 2.0943134535367673 }, "rgb": [58, 15, 49] }, @@ -189600,23 +189600,23 @@ "year": 1765, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 37.30213005729878, - "c2": 13.098433160068765, - "c3": -34.1571443691101, - "c4": 7.1013525055209, - "c5": 13.989848057322291, - "c6": 3.1405355162903916, - "c7": 23.862053774030713 + "points": { + "c1": 9.149535416578289, + "c2": -14.050919414276208, + "c3": -23.987020596719145, + "c4": -42.13851781441943, + "c5": -14.153696804839917, + "c6": -45.165564083031384, + "c7": -39.68766002125911 }, - "vertexSeeds": { - "c1": 3.739137648474183, - "c2": 3.4187858460333436, - "c3": 3.474439641962421, - "c4": 3.4426918339782984, - "c5": 3.3635389908891544, - "c6": 3.6195358311374073, - "c7": 3.6715858717549414 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [77, 76, 132] }, @@ -189627,23 +189627,23 @@ "year": 1764, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 17.12034183399453, - "c2": -28.61476707482143, - "c3": -15.037548063451851, - "c4": -9.268149930734353, - "c5": -13.4646388244898, - "c6": 5.234883846372547, - "c7": 28.57985013778022 + "points": { + "c1": -30.761349207597895, + "c2": 14.026874877148629, + "c3": 16.415907553302553, + "c4": -6.371740739145203, + "c5": -22.76104268833902, + "c6": 8.90887406792693, + "c7": 23.37790169298733 }, - "vertexSeeds": { - "c1": 7.575744883774842, - "c2": 8.24934802341747, - "c3": 8.22241356864964, - "c4": 7.723526163097798, - "c5": 8.097401930450573, - "c6": 7.926869387640809, - "c7": 8.216159785670866 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255205, + "c3": 9.916782246879324, + "c4": 7.933425797503463, + "c5": 5.950069348127602, + "c6": 3.966712898751742, + "c7": 1.9833564493758606 }, "rgb": [58, 15, 49] }, @@ -189654,23 +189654,23 @@ "year": 1764, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -18.6588251347767, - "c2": 11.473821879013467, - "c3": -11.95456726330393, - "c4": -0.002996986328941631, - "c5": -6.777582920473677, - "c6": -21.435504500604626, - "c7": -10.25002642431625 + "points": { + "c1": -22.195829389081062, + "c2": 11.336051027808406, + "c3": 0.6582797237648919, + "c4": 0.16583788445150205, + "c5": -19.19780071107715, + "c6": -25.69448492639329, + "c7": -5.678915352225211 }, - "vertexSeeds": { - "c1": 5.755274341312338, - "c2": 5.929423919280587, - "c3": 5.799660321806364, - "c4": 5.4377102847552266, - "c5": 5.656050976365406, - "c6": 5.510845170965871, - "c7": 5.503073152034328 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589462, + "c3": 7.235321312991221, + "c4": 5.788257050392981, + "c5": 4.341192787794723, + "c6": 2.894128525196482, + "c7": 1.447064262598241 }, "rgb": [77, 76, 132] }, @@ -189681,23 +189681,23 @@ "year": 1765, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 30.591355778639993, - "c2": -0.750159685740627, - "c3": -47.747078667307775, - "c4": 20.247608421878, - "c5": -7.313644457832481, - "c6": 27.600520627551703, - "c7": 25.035108647534358 + "points": { + "c1": -50.78503136310317, + "c2": -26.4683406186202, + "c3": 17.20229392764493, + "c4": -34.37905061062348, + "c5": -11.258781191059768, + "c6": -20.331401778542975, + "c7": 27.10254215333262 }, - "vertexSeeds": { - "c1": 1.5384421034726925, - "c2": 1.549169153788184, - "c3": 1.542964479620071, - "c4": 1.5464537400149594, - "c5": 1.5585135018795049, - "c6": 1.5474148520525421, - "c7": 1.5387578711589807 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.274618585298189, + "c3": 1.8955154877485, + "c4": 1.5164123901987925, + "c5": 1.137309292649104, + "c6": 0.7582061950993962, + "c7": 0.37910309754970756 }, "rgb": [77, 76, 132] }, @@ -189708,23 +189708,23 @@ "year": 1764, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -18.70013283102264, - "c2": -8.4096798043686, - "c3": 16.110744255074003, - "c4": 2.2778462504665598, - "c5": -10.270968116540871, - "c6": -19.768314182622305, - "c7": -3.8626329019815806 + "points": { + "c1": -28.284336199784995, + "c2": 5.2773332340372505, + "c3": 19.357989899068144, + "c4": -26.382638665004805, + "c5": 18.5569816050932, + "c6": 6.799957269135881, + "c7": 2.482290337506285 }, - "vertexSeeds": { - "c1": 8.746326519009303, - "c2": 9.36002393707113, - "c3": 9.497385441716467, - "c4": 9.90388333007973, - "c5": 8.508334009364859, - "c6": 9.269560598058066, - "c7": 10.461240855122414 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403606, + "c3": 12.875635691169673, + "c4": 10.30050855293574, + "c5": 7.725381414701807, + "c6": 5.150254276467873, + "c7": 2.575127138233933 }, "rgb": [86, 146, 138] }, @@ -189735,23 +189735,23 @@ "year": 1764, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -16.301678989124238, - "c2": -10.319380971181854, - "c3": -2.2981891855906866, - "c4": 6.962004795575016, - "c5": 25.38865899624169, - "c6": -19.052474288526746, - "c7": -20.38719764424622 + "points": { + "c1": 23.02362328176343, + "c2": 22.368881359273406, + "c3": -17.30547663165489, + "c4": -19.103527063050933, + "c5": 17.373477902004897, + "c6": 17.591076406620697, + "c7": 25.770451498724125 }, - "vertexSeeds": { - "c1": 8.704546820553837, - "c2": 5.574129179908855, - "c3": 6.165025465763318, - "c4": 5.776938484048924, - "c5": 8.797058459647378, - "c6": 8.767300213486344, - "c7": 7.316467692600756 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381414, + "c3": 10.564031437817844, + "c4": 8.451225150254276, + "c5": 6.338418862690707, + "c6": 4.225612575127135, + "c7": 2.1128062875635676 }, "rgb": [222, 0, 59] }, @@ -189762,23 +189762,23 @@ "year": 1764, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 11.136314749222041, - "c2": -12.95078030272731, - "c3": 6.757718187867969, - "c4": 29.300347654634304, - "c5": 6.757572296645197, - "c6": -5.5431525333134, - "c7": 1.4107916176289983 + "points": { + "c1": 1.5212253682708976, + "c2": 16.55172240471002, + "c3": 5.192916462615244, + "c4": -28.077237982295028, + "c5": -12.311133712679766, + "c6": -11.920963300087813, + "c7": -11.880636243937001 }, - "vertexSeeds": { - "c1": 4.266158359483552, - "c2": 4.1961376334457725, - "c3": 4.099289565388409, - "c4": 3.8735413630813955, - "c5": 3.94389413562287, - "c6": 4.347755511997244, - "c7": 4.011402608017914 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [58, 15, 49] }, @@ -189789,23 +189789,23 @@ "year": 1765, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 40.01572999518782, - "c2": 30.06205497664724, - "c3": -22.16640178482019, - "c4": -15.172498267806802, - "c5": 21.066329101616184, - "c6": 34.27977953689442, - "c7": -39.9227492468102 + "points": { + "c1": 12.084280435586201, + "c2": 0.9462567555682142, + "c3": -41.06399622884717, + "c4": -27.502627508785224, + "c5": 47.133005453180466, + "c6": -28.757266192437573, + "c7": -46.25097893221934 }, - "vertexSeeds": { - "c1": 6.304465770277403, - "c2": 6.1034178771840795, - "c3": 5.903050253885673, - "c4": 5.984108766765096, - "c5": 5.969977924743342, - "c6": 6.22931766564778, - "c7": 6.742252397386982 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238553, + "c3": 8.183079056865466, + "c4": 6.546463245492369, + "c5": 4.909847434119282, + "c6": 3.2732316227461844, + "c7": 1.6366158113730973 }, "rgb": [222, 0, 59] }, @@ -189816,23 +189816,23 @@ "year": 1764, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 27.16941231665281, - "c2": -14.724605813622166, - "c3": 1.0861862910052267, - "c4": 23.68706321031386, - "c5": 22.181762509564223, - "c6": 16.838533053717086, - "c7": -33.83979329335764 + "points": { + "c1": 7.962343594704912, + "c2": 22.301192147608894, + "c3": -9.666242323842543, + "c4": -27.890010527431418, + "c5": -13.115659096078176, + "c6": -15.1070403622563, + "c7": 26.659089676602967 }, - "vertexSeeds": { - "c1": 2.390175360375435, - "c2": 2.621819339272971, - "c3": 2.675837750343538, - "c4": 2.6775478214383623, - "c5": 2.9052188012929894, - "c6": 2.4861965241346997, - "c7": 2.5215143727457185 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194175, + "c3": 3.559870550161812, + "c4": 2.8478964401294498, + "c5": 2.1359223300970873, + "c6": 1.4239482200647249, + "c7": 0.7119741100323624 }, "rgb": [58, 15, 49] }, @@ -189843,23 +189843,23 @@ "year": 1764, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -27.345130981723397, - "c2": -28.205257276487373, - "c3": 1.557010229099724, - "c4": 17.07088495646083, - "c5": 28.18354160212803, - "c6": -25.11165760246356, - "c7": 27.10772993336029 + "points": { + "c1": 16.027275879471723, + "c2": -30.707554512296653, + "c3": -3.863995064364609, + "c4": -29.4772452225289, + "c5": -9.218964910653398, + "c6": -13.520609467903643, + "c7": 21.509724803105605 }, - "vertexSeeds": { - "c1": 9.108503376501234, - "c2": 9.437120007260162, - "c3": 9.098778978625015, - "c4": 9.678050409075118, - "c5": 9.792767899612064, - "c6": 9.170716807353752, - "c7": 8.934132765026508 + "offsets": { + "c1": 17.055016181229774, + "c2": 14.61858529819695, + "c3": 12.182154415164124, + "c4": 9.745723532131299, + "c5": 7.309292649098475, + "c6": 4.8728617660656495, + "c7": 2.4364308830328247 }, "rgb": [77, 76, 132] }, @@ -189870,23 +189870,23 @@ "year": 1764, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -24.722046481641403, - "c2": 28.956722177323208, - "c3": -29.689131224660695, - "c4": 31.47584021484971, - "c5": -24.654042177901115, - "c6": -2.3011687102218374, - "c7": -13.864151971766713 + "points": { + "c1": 24.57839580133318, + "c2": 6.93210431447622, + "c3": 33.18121684666828, + "c4": 14.557017320982666, + "c5": 6.262126339629738, + "c6": -0.1446649654999277, + "c7": 30.945446531471518 }, - "vertexSeeds": { - "c1": 9.478670284832, - "c2": 9.564402743885157, - "c3": 9.53193688219937, - "c4": 9.437598614464294, - "c5": 9.553314619644343, - "c6": 9.508012998943236, - "c7": 9.504752270189261 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055477, + "c6": 4.6232085067036515, + "c7": 2.3116042533518257 }, "rgb": [86, 146, 138] }, @@ -189897,23 +189897,23 @@ "year": 1765, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -12.462931068194575, - "c2": -32.35714481768468, - "c3": 38.72612706706816, - "c4": 4.405009806056867, - "c5": 23.31225429561806, - "c6": -35.86173103257296, - "c7": 8.340922579157962 + "points": { + "c1": 29.734760591562846, + "c2": 6.922501747477774, + "c3": 26.708843445765908, + "c4": 29.242342320564262, + "c5": 4.997125518256283, + "c6": -20.23965069411117, + "c7": -12.93705582744806 }, - "vertexSeeds": { - "c1": 6.34998402967713, - "c2": 6.88887980880137, - "c3": 7.452747991788332, - "c4": 6.725044142631209, - "c5": 7.1191716366688835, - "c6": 7.011641713173412, - "c7": 6.6155935805897075 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766989, + "c3": 9.061488673139158, + "c4": 7.249190938511326, + "c5": 5.4368932038834945, + "c6": 3.624595469255663, + "c7": 1.8122977346278315 }, "rgb": [222, 0, 59] }, @@ -189924,23 +189924,23 @@ "year": 1765, "resistanceReported": false, "duration": 50544000, - "curveSeeds": { - "c1": 43.46153448393082, - "c2": -18.35186292106612, - "c3": -35.161553680238484, - "c4": -4.1320517358607205, - "c5": -3.062632888390702, - "c6": -29.62619407508498, - "c7": -5.198320833748248 + "points": { + "c1": 53.400955252025895, + "c2": -7.342874867758987, + "c3": -42.80298280663918, + "c4": 21.777555947991658, + "c5": -9.08596673875796, + "c6": 52.57024075172055, + "c7": -19.063691396183543 }, - "vertexSeeds": { - "c1": 6.808806255978819, - "c2": 7.064647284740898, - "c3": 7.258936363627565, - "c4": 6.841848473245349, - "c5": 7.0124350828814235, - "c6": 6.858505241621222, - "c7": 7.180652844351846 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.40221914008321, + "c3": 8.668515950069361, + "c4": 6.9348127600554825, + "c5": 5.201109570041605, + "c6": 3.467406380027727, + "c7": 1.733703190013878 }, "rgb": [222, 0, 59] }, @@ -189951,23 +189951,23 @@ "year": 1765, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 32.81394094260159, - "c2": -19.57870114696751, - "c3": 37.29467441815761, - "c4": 26.295110922996713, - "c5": -20.24893632370982, - "c6": 48.74898889248743, - "c7": 33.72525802533964 + "points": { + "c1": -1.7632816530990212, + "c2": 53.630510871780075, + "c3": 6.106881401413375, + "c4": -24.513702262308826, + "c5": -12.19535093463174, + "c6": -20.26574912774504, + "c7": -37.917420242921516 }, - "vertexSeeds": { - "c1": 3.1105588240813655, - "c2": 3.1845198681083287, - "c3": 3.2598869724231756, - "c4": 3.108405164777414, - "c5": 3.2640731548591773, - "c6": 3.1507499528467386, - "c7": 3.136270375386063 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435513, + "c3": 3.69856680536292, + "c4": 2.9588534442903422, + "c5": 2.2191400832177495, + "c6": 1.4794267221451711, + "c7": 0.7397133610725781 }, "rgb": [77, 76, 132] }, @@ -189978,23 +189978,23 @@ "year": 1765, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -15.877810660765487, - "c2": -15.735345772345166, - "c3": 18.718563022162854, - "c4": 18.081405722147522, - "c5": -33.76144549455367, - "c6": 13.040997717687226, - "c7": -26.965882212821406 + "points": { + "c1": -4.876032962414904, + "c2": -37.646506664629065, + "c3": 21.197329001510305, + "c4": -1.0763586315650358, + "c5": 44.63714716920202, + "c6": 8.663137791845422, + "c7": 26.106473244090317 }, - "vertexSeeds": { - "c1": 4.584964380363064, - "c2": 4.428606393847682, - "c3": 4.480577776692821, - "c4": 4.211022104902424, - "c5": 4.706306816033019, - "c6": 4.318201096516216, - "c7": 4.65046070174496 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -190005,23 +190005,23 @@ "year": 1765, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 38.753888656646495, - "c2": -26.18680891766136, - "c3": -41.249982673194886, - "c4": -4.531696346866944, - "c5": -36.08720089263551, - "c6": -18.004800663380745, - "c7": 23.415698590897136 + "points": { + "c1": 4.11830911508153, + "c2": 9.307151592694865, + "c3": 29.634984648941696, + "c4": -42.76005148593476, + "c5": 22.40473483377872, + "c6": 24.573414366964002, + "c7": 12.388428607732664 }, - "vertexSeeds": { - "c1": 6.63106848224691, - "c2": 6.466036926883726, - "c3": 6.621605856611097, - "c4": 6.752782473745682, - "c5": 6.548368002691903, - "c6": 6.516183126492013, - "c7": 6.66403738072503 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.76421636615812, + "c3": 8.136846971798438, + "c4": 6.509477577438756, + "c5": 4.882108183079045, + "c6": 3.2547387887193637, + "c7": 1.6273693943596819 }, "rgb": [238, 201, 159] }, @@ -190032,23 +190032,23 @@ "year": 1765, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 33.083730239650826, - "c2": 32.372433948858706, - "c3": -44.60909599175041, - "c4": 15.099874918728801, - "c5": 12.74090742240761, - "c6": -17.719763794636187, - "c7": 25.19245677950466 + "points": { + "c1": -10.606680129040193, + "c2": -22.55313433269472, + "c3": -39.3492191635043, + "c4": 25.576115273985543, + "c5": -16.208596611937153, + "c6": 15.981833390392183, + "c7": 29.153959634882973 }, - "vertexSeeds": { - "c1": 9.02522136600236, - "c2": 9.073622509573248, - "c3": 8.931082046306607, - "c4": 9.103058985650993, - "c5": 9.145649835631444, - "c6": 8.827396709164368, - "c7": 8.972775641178304 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984736, + "c3": 10.910772075820631, + "c4": 8.7286176606565, + "c5": 6.546463245492368, + "c6": 4.364308830328263, + "c7": 2.1821544151641317 }, "rgb": [58, 15, 49] }, @@ -190059,23 +190059,23 @@ "year": 1764, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 13.417623021460052, - "c2": -0.5474391995294638, - "c3": -30.74968925015433, - "c4": -11.339451757458605, - "c5": 4.364710144505963, - "c6": 30.192581261635006, - "c7": -22.692175012829992 + "points": { + "c1": -20.205982696392475, + "c2": -22.143781155725286, + "c3": -20.489656934120298, + "c4": -12.476237124615114, + "c5": 18.685802453041518, + "c6": -6.648472890533636, + "c7": 3.843927785545432 }, - "vertexSeeds": { - "c1": 4.081124135172621, - "c2": 4.028110888974582, - "c3": 4.569523463685197, - "c4": 4.0580132936436675, - "c5": 4.334888056280811, - "c6": 4.409020265097606, - "c7": 4.681430683561446 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.7128987517337055, + "c3": 5.594082293111416, + "c4": 4.475265834489134, + "c5": 3.3564493758668528, + "c6": 2.237632917244564, + "c7": 1.118816458622282 }, "rgb": [58, 15, 49] }, @@ -190086,23 +190086,23 @@ "year": 1765, "resistanceReported": false, "duration": 52963200, - "curveSeeds": { - "c1": -33.285189852141876, - "c2": -6.128409914543141, - "c3": 24.09914467184217, - "c4": -53.55279726366072, - "c5": 58.0679364273217, - "c6": -7.1194822599506935, - "c7": 65.47789268147068 + "points": { + "c1": -53.01524517543079, + "c2": -59.16194997852331, + "c3": 44.9350258920921, + "c4": 2.4414055161038846, + "c5": -51.79991470826002, + "c6": 41.88804748342582, + "c7": -11.197028452930319 }, - "vertexSeeds": { - "c1": 3.5566545586367084, - "c2": 2.875765883359306, - "c3": 3.1825719082238653, - "c4": 3.095985714670017, - "c5": 2.818108207650109, - "c6": 2.6923465464900134, - "c7": 3.0052883722518846 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.4368932038834945, + "c3": 4.530744336569578, + "c4": 3.6245954692556634, + "c5": 2.7184466019417473, + "c6": 1.8122977346278315, + "c7": 0.9061488673139152 }, "rgb": [222, 0, 59] }, @@ -190113,23 +190113,23 @@ "year": 1765, "resistanceReported": true, "duration": 29548800, - "curveSeeds": { - "c1": 15.016010690422519, - "c2": -36.896788768477975, - "c3": 11.80477641578645, - "c4": 0.5427853196747634, - "c5": -25.96750637610326, - "c6": 18.520979724888797, - "c7": 40.21166264437599 + "points": { + "c1": -40.55549161375339, + "c2": 31.302779928771827, + "c3": 38.42800156156423, + "c4": -1.679907620634708, + "c5": 19.20165796671138, + "c6": -7.2967479871076435, + "c7": -24.329065045147814 }, - "vertexSeeds": { - "c1": 1.1831950366376338, - "c2": 1.0732182243967483, - "c3": 1.1908310990236046, - "c4": 1.1285949687081323, - "c5": 1.124669378822828, - "c6": 1.0950690857509124, - "c7": 1.1604199840699767 + "offsets": { + "c1": 2.0388349514563107, + "c2": 1.7475728155339803, + "c3": 1.4563106796116498, + "c4": 1.1650485436893194, + "c5": 0.8737864077669911, + "c6": 0.5825242718446608, + "c7": 0.2912621359223304 }, "rgb": [58, 15, 49] }, @@ -190140,23 +190140,23 @@ "year": 1765, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": 0.18382191269381565, - "c2": -9.710221532913565, - "c3": -7.178361149653455, - "c4": -41.30684896745326, - "c5": 16.165457775974332, - "c6": 40.750988287587944, - "c7": -13.853161576856735 + "points": { + "c1": -32.48247816751922, + "c2": 46.270123870581685, + "c3": -30.361923293390767, + "c4": -41.2465869164799, + "c5": -45.85103531953331, + "c6": -39.92000679320734, + "c7": 2.5623770056323067 }, - "vertexSeeds": { - "c1": 3.8212738507111674, - "c2": 3.8187295328582245, - "c3": 3.8152422384994162, - "c4": 3.831591329464182, - "c5": 3.8327102326918756, - "c6": 3.822533655831812, - "c7": 3.801833675812784 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004187, + "c3": 4.6000924641701255, + "c4": 3.680073971336125, + "c5": 2.7600554785020632, + "c6": 1.8400369856680625, + "c7": 0.9200184928340617 }, "rgb": [86, 146, 138] }, @@ -190167,23 +190167,23 @@ "year": 1765, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 38.23251646142721, - "c2": 17.45861234281508, - "c3": -39.092150102945496, - "c4": 39.25847416808759, - "c5": 7.369524728646766, - "c6": -8.039385559373933, - "c7": -0.7427079179521243 + "points": { + "c1": -40.97725431432656, + "c2": -13.623614754566702, + "c3": 39.805827430152064, + "c4": -41.654941158116756, + "c5": -46.79184422070121, + "c6": -24.345466249757948, + "c7": -47.32385480903394 }, - "vertexSeeds": { - "c1": 5.446206976917619, - "c2": 5.554714392635325, - "c3": 5.571093712089921, - "c4": 5.468442468477974, - "c5": 5.457435671700816, - "c6": 5.434060552051381, - "c7": 5.538012888703125 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262122, + "c3": 6.472491909385136, + "c4": 5.177993527508098, + "c5": 3.883495145631061, + "c6": 2.5889967637540234, + "c7": 1.2944983818770375 }, "rgb": [58, 15, 49] }, @@ -190194,23 +190194,23 @@ "year": 1765, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 25.439159615079745, - "c2": -4.78919856639547, - "c3": -34.4209547698649, - "c4": -10.659195850548663, - "c5": -10.031697418173007, - "c6": 9.966640866596542, - "c7": 30.36909141090736 + "points": { + "c1": -14.729362772699172, + "c2": 29.808356405449345, + "c3": 16.387933006257434, + "c4": -17.44559382735155, + "c5": 36.32159000919904, + "c6": -10.90987571533513, + "c7": 34.802425884155596 }, - "vertexSeeds": { - "c1": 8.229933669905336, - "c2": 8.103667054657162, - "c3": 8.177668622596835, - "c4": 8.145227584872636, - "c5": 8.125986116501775, - "c6": 8.181021162268717, - "c7": 8.136715309012175 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094335, + "c3": 9.824318076745232, + "c4": 7.8594544613962, + "c5": 5.894590846047167, + "c6": 3.929727230698064, + "c7": 1.964863615349032 }, "rgb": [222, 0, 59] }, @@ -190221,23 +190221,23 @@ "year": 1765, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 21.135634511896647, - "c2": 17.374462520416714, - "c3": 12.084478038542684, - "c4": -17.75356624936896, - "c5": -35.6025473414494, - "c6": 4.049667409149649, - "c7": -14.707039822521086 + "points": { + "c1": -29.587019658284476, + "c2": 20.921654468989686, + "c3": 14.497827333645432, + "c4": -28.755599136556718, + "c5": 11.564775279247883, + "c6": 9.53347093525759, + "c7": -10.225318886549182 }, - "vertexSeeds": { - "c1": 5.948042626256655, - "c2": 5.8951813003151505, - "c3": 5.870767007039502, - "c4": 6.061862664945702, - "c5": 5.9004966247045445, - "c6": 5.900903973392469, - "c7": 6.125961573021447 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.82108183079056, + "c3": 7.350901525658823, + "c4": 5.880721220527051, + "c5": 4.41054091539528, + "c6": 2.940360610263543, + "c7": 1.4701803051317714 }, "rgb": [86, 146, 138] }, @@ -190248,23 +190248,23 @@ "year": 1765, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 38.011656233180005, - "c2": 0.9900093622274255, - "c3": -1.1750253156466712, - "c4": -8.71852041839798, - "c5": 32.90495897796043, - "c6": 12.230195569770807, - "c7": 8.17944196706938 + "points": { + "c1": -40.48159256084425, + "c2": 44.02447387698524, + "c3": 46.15999521791055, + "c4": 16.96609677056908, + "c5": -24.694601937768653, + "c6": 34.806163444248654, + "c7": -37.7062982071338 }, - "vertexSeeds": { - "c1": 11.609097904313261, - "c2": 12.130269062491568, - "c3": 11.319419352477384, - "c4": 11.554365828634468, - "c5": 11.525486563459571, - "c6": 11.668983302721797, - "c7": 11.426805137442976 + "offsets": { + "c1": 20.29126213592233, + "c2": 17.39251040221914, + "c3": 14.493758668515952, + "c4": 11.59500693481276, + "c5": 8.69625520110957, + "c6": 5.79750346740638, + "c7": 2.89875173370319 }, "rgb": [238, 201, 159] }, @@ -190275,23 +190275,23 @@ "year": 1764, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": -13.441040955988262, - "c2": -21.854512387209798, - "c3": -17.233323077957586, - "c4": -22.016677237829985, - "c5": 13.446381699950052, - "c6": -0.4501935478248029, - "c7": 13.21112518925964 + "points": { + "c1": 16.12174232812879, + "c2": 1.6827565572679255, + "c3": 14.671166063221541, + "c4": -6.538261060507878, + "c5": 17.224043327210182, + "c6": -1.3861118447685215, + "c7": -5.935881086427699 }, - "vertexSeeds": { - "c1": 1.518679639063945, - "c2": 1.3750534510341832, - "c3": 1.4272183672637515, - "c4": 1.3878521153691947, - "c5": 1.4411506978483408, - "c6": 1.45682528948611, - "c7": 1.497648567050545 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177517, + "c3": 1.8492834026814617, + "c4": 1.4794267221451678, + "c5": 1.1095700416088778, + "c6": 0.7397133610725839, + "c7": 0.3698566805362899 }, "rgb": [222, 0, 59] }, @@ -190302,23 +190302,23 @@ "year": 1764, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 30.47555714178428, - "c2": 19.15551082431201, - "c3": 22.477398392660646, - "c4": 13.283754839778709, - "c5": -18.451203246897247, - "c6": 4.3328072402677265, - "c7": -21.223576323189953 + "points": { + "c1": 4.567412990277205, + "c2": 9.326294225896781, + "c3": 5.086606153181442, + "c4": 4.470495001379909, + "c5": -28.123058999131707, + "c6": 13.874457173651123, + "c7": 26.72939297750309 }, - "vertexSeeds": { - "c1": 7.456340458729493, - "c2": 7.3047708507353, - "c3": 6.975955123637566, - "c4": 7.862068249743366, - "c5": 7.493160937079768, - "c6": 6.725330437808944, - "c7": 7.66747861265058 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [222, 0, 59] }, @@ -190329,23 +190329,23 @@ "year": 1764, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -2.6684552870249476, - "c2": -16.86038379560657, - "c3": -20.256625932532813, - "c4": 27.947186075658802, - "c5": -28.22464860380531, - "c6": 3.886663689328312, - "c7": -27.949464454735235 + "points": { + "c1": -18.294325858942663, + "c2": -23.612361162542793, + "c3": -6.034330025633135, + "c4": -22.247885043933717, + "c5": -17.07376390681729, + "c6": 10.495911162211545, + "c7": 20.210132717750053 }, - "vertexSeeds": { - "c1": 7.455113738092845, - "c2": 6.853372841310124, - "c3": 6.783582378208266, - "c4": 7.038745512122301, - "c5": 6.800440587931853, - "c6": 7.2749024880862425, - "c7": 7.476392762368986 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249654, + "c3": 9.33888118354138, + "c4": 7.4711049468331066, + "c5": 5.603328710124832, + "c6": 3.735552473416558, + "c7": 1.8677762367082842 }, "rgb": [58, 15, 49] }, @@ -190356,23 +190356,23 @@ "year": 1764, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 19.44800357327427, - "c2": 17.205621237933087, - "c3": 25.936807524685747, - "c4": -5.469582683089975, - "c5": -23.904683307096548, - "c6": 26.88391507971344, - "c7": 1.8184086235850678 + "points": { + "c1": -16.828326322127047, + "c2": -7.785902880971307, + "c3": -24.776159465337123, + "c4": 19.731155922566728, + "c5": 27.654698956215917, + "c6": 21.41874180451262, + "c7": 23.9296737566754 }, - "vertexSeeds": { - "c1": 4.881072874140363, - "c2": 5.1940119588295, - "c3": 5.499738102241441, - "c4": 5.404982723438639, - "c5": 5.2207975661795984, - "c6": 5.840359304348322, - "c7": 4.9874557611762045 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [222, 0, 59] }, @@ -190383,23 +190383,23 @@ "year": 1765, "resistanceReported": false, "duration": 48384000, - "curveSeeds": { - "c1": -13.664365983751694, - "c2": 3.3855421583382608, - "c3": -22.00240320312337, - "c4": 40.35263328632234, - "c5": -51.25060954324878, - "c6": 53.65858111163602, - "c7": -62.07659994852514 + "points": { + "c1": 35.205519541885536, + "c2": -63.91875588016428, + "c3": -35.182588221084046, + "c4": -54.49919942956737, + "c5": -47.618120345753965, + "c6": -26.15649931142336, + "c7": 64.27912951101882 }, - "vertexSeeds": { - "c1": 2.1563682931598906, - "c2": 2.0181044877153305, - "c3": 2.2392404557386736, - "c4": 2.0718931736845496, - "c5": 2.0731216359843443, - "c6": 2.183839851687229, - "c7": 2.1232374094012285 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705966, + "c3": 2.704576976421637, + "c4": 2.1636615811373083, + "c5": 1.622746185852983, + "c6": 1.0818307905686573, + "c7": 0.5409153952843286 }, "rgb": [77, 76, 132] }, @@ -190410,23 +190410,23 @@ "year": 1765, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -14.770256560539192, - "c2": -10.258375840581216, - "c3": -37.52752353583293, - "c4": -24.473335092348314, - "c5": 12.834164144598354, - "c6": 3.879981568429173, - "c7": -0.8471342352860063 + "points": { + "c1": -13.068354086614637, + "c2": 5.926290652379208, + "c3": -37.81529312085959, + "c4": -26.75249426977753, + "c5": -13.898270439014475, + "c6": -15.519327836236084, + "c7": -23.740745572216092 }, - "vertexSeeds": { - "c1": 7.645509116027393, - "c2": 7.476088150858201, - "c3": 7.489617580392629, - "c4": 7.2627847817646405, - "c5": 7.635890567290877, - "c6": 7.221412389544328, - "c7": 7.3028912236299215 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.246417013407312, + "c4": 7.397133610725854, + "c5": 5.547850208044372, + "c6": 3.698566805362915, + "c7": 1.8492834026814575 }, "rgb": [58, 15, 49] }, @@ -190437,23 +190437,23 @@ "year": 1764, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -23.54468367758606, - "c2": -13.738550008303667, - "c3": 18.040871718796268, - "c4": -8.69050207282984, - "c5": 23.505078115899423, - "c6": 0.6718731379856386, - "c7": 4.786800507429042 + "points": { + "c1": 6.063559490093283, + "c2": 0.31377395349355197, + "c3": -25.61477926115973, + "c4": 26.149651827822105, + "c5": -19.712123200292837, + "c6": -28.57833298624931, + "c7": -26.987739222199007 }, - "vertexSeeds": { - "c1": 7.119674141706597, - "c2": 7.698634378964901, - "c3": 7.327574024082584, - "c4": 6.770347138107603, - "c5": 7.312780460142192, - "c6": 6.940674450963028, - "c7": 6.610093587508878 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [222, 0, 59] }, @@ -190464,23 +190464,23 @@ "year": 1764, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -16.265953207682685, - "c2": 28.841024716394436, - "c3": -18.647324942830682, - "c4": 2.4216154698410435, - "c5": -1.7824947102175415, - "c6": -6.693130269000061, - "c7": 7.622955890950024 + "points": { + "c1": -27.414812376252804, + "c2": -16.45497689542953, + "c3": -24.254735625725885, + "c4": 17.5339757174051, + "c5": 5.003293729783607, + "c6": -7.352685854564207, + "c7": 16.87003425624036 }, - "vertexSeeds": { - "c1": 7.800867571239889, - "c2": 7.696076649143613, - "c3": 7.777003166845446, - "c4": 7.891691289903885, - "c5": 6.997263607583114, - "c6": 8.17583523382393, - "c7": 7.732593932297369 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973644, + "c3": 9.754969949144702, + "c4": 7.803975959315769, + "c5": 5.8529819694868275, + "c6": 3.9019879796578847, + "c7": 1.9509939898289423 }, "rgb": [222, 0, 59] }, @@ -190491,23 +190491,23 @@ "year": 1765, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -23.18666116178737, - "c2": 4.065016693762594, - "c3": 26.978558346752976, - "c4": 2.379706031891466, - "c5": -17.573609140949493, - "c6": -33.1869369637024, - "c7": -24.130304438097866 + "points": { + "c1": 10.672400939537262, + "c2": -25.534435549903556, + "c3": -15.576217649173685, + "c4": -5.572273051838621, + "c5": -24.161889758941044, + "c6": -19.41194255311925, + "c7": -31.64463472141375 }, - "vertexSeeds": { - "c1": 1.6621973561308558, - "c2": 1.7433487023396035, - "c3": 1.7015659767566378, - "c4": 1.7617045733968357, - "c5": 1.598053062736978, - "c6": 1.9132084275153787, - "c7": 1.8333069406713385 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.311604253351827, + "c4": 1.849283402681461, + "c5": 1.3869625520110953, + "c6": 0.9246417013407294, + "c7": 0.4623208506703659 }, "rgb": [58, 15, 49] }, @@ -190518,23 +190518,23 @@ "year": 1764, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -24.856980137832807, - "c2": 20.25674328448342, - "c3": -13.00747219839495, - "c4": -2.331026330356668, - "c5": -9.422132999371012, - "c6": 12.532247397745877, - "c7": -11.260711236692295 + "points": { + "c1": -5.293491719814213, + "c2": -12.939408526673159, + "c3": -2.7389879017587972, + "c4": -30.719762612685876, + "c5": -4.419464291381182, + "c6": -26.45513334726478, + "c7": 6.1047366244477885 }, - "vertexSeeds": { - "c1": 3.890350901481963, - "c2": 3.8308099855255175, - "c3": 3.9800079880673676, - "c4": 4.302403070463926, - "c5": 4.422581547581076, - "c6": 4.400611971162073, - "c7": 3.7943648501308096 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210818, + "c3": 5.293573740175684, + "c4": 4.2348589921405475, + "c5": 3.1761442441054117, + "c6": 2.1174294960702764, + "c7": 1.0587147480351407 }, "rgb": [77, 76, 132] }, @@ -190545,23 +190545,23 @@ "year": 1765, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -27.06848927866725, - "c2": -39.47121358053013, - "c3": 9.43168434850569, - "c4": 10.77877107644332, - "c5": -18.926335067024528, - "c6": 32.90854792658064, - "c7": -0.6526296691608025 + "points": { + "c1": -19.43022709244643, + "c2": 7.370958289243376, + "c3": -11.090153608794985, + "c4": -2.7868586426724136, + "c5": -20.386382094671678, + "c6": -35.14231367089118, + "c7": 22.18662042210572 }, - "vertexSeeds": { - "c1": 7.415217141923379, - "c2": 7.259977655015051, - "c3": 7.287576324560264, - "c4": 7.405361587675675, - "c5": 7.304358033596613, - "c6": 7.381212262990474, - "c7": 7.309448008997892 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148405011, + "c3": 8.853444290337466, + "c4": 7.082755432269987, + "c5": 5.312066574202506, + "c6": 3.541377716134961, + "c7": 1.7706888580674804 }, "rgb": [86, 146, 138] }, @@ -190572,23 +190572,23 @@ "year": 1765, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -24.109200818191677, - "c2": -34.41571522250869, - "c3": -32.73541259595571, - "c4": -22.302568474556296, - "c5": 33.424536023060384, - "c6": 14.27856229067605, - "c7": -34.72827928896597 + "points": { + "c1": -8.453791627289586, + "c2": 26.870011050737588, + "c3": -24.30546320705998, + "c4": 3.5270431896325647, + "c5": -17.483228355747162, + "c6": 21.080602297967516, + "c7": 17.71464607472469 }, - "vertexSeeds": { - "c1": 8.161990875611407, - "c2": 8.179812909185333, - "c3": 8.268199648893477, - "c4": 8.183128500302992, - "c5": 8.288661977822866, - "c6": 8.272519860903651, - "c7": 8.243043469976234 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214937, + "c3": 9.89366620434583, + "c4": 7.914932963476624, + "c5": 5.936199722607518, + "c6": 3.957466481738312, + "c7": 1.9787332408692053 }, "rgb": [222, 0, 59] }, @@ -190599,23 +190599,23 @@ "year": 1765, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 35.861269712139766, - "c2": -20.44513830497877, - "c3": -35.6780510752357, - "c4": 3.0140941222117945, - "c5": -8.141081399195407, - "c6": -6.956333223481813, - "c7": 33.44239552242775 + "points": { + "c1": -23.298762871495036, + "c2": 15.475797639868922, + "c3": 30.80961194717127, + "c4": 6.380843626352707, + "c5": -28.14344364765906, + "c6": 0.7828126397530397, + "c7": 34.525966164981945 }, - "vertexSeeds": { - "c1": 3.461516987329482, - "c2": 3.5039867789560604, - "c3": 3.5797666235482772, - "c4": 3.489334878360839, - "c5": 3.5013847050003943, - "c6": 3.5483832431681472, - "c7": 3.460070570296308 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.1595006934812755, + "c3": 4.2995839112343965, + "c4": 3.439667128987517, + "c5": 2.5797503467406377, + "c6": 1.7198335644937586, + "c7": 0.8599167822468793 }, "rgb": [58, 15, 49] }, @@ -190626,23 +190626,23 @@ "year": 1765, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 44.32773048685255, - "c2": -42.92836512801613, - "c3": 8.40569846667065, - "c4": -12.258628019245101, - "c5": 20.00330983253307, - "c6": 48.1007259702396, - "c7": 5.291851891705562 + "points": { + "c1": -21.657719912039855, + "c2": 7.764891952659838, + "c3": 3.3960990470343333, + "c4": -15.039283977085802, + "c5": -49.40217669152926, + "c6": -4.0980054019363905, + "c7": 2.5455589559136698 }, - "vertexSeeds": { - "c1": 0.9673071291185458, - "c2": 0.9695981416938736, - "c3": 1.0478085256228358, - "c4": 1.0586854152530736, - "c5": 1.0560107628579134, - "c6": 1.0576562502007196, - "c7": 1.041680302645877 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.5533980582524276, + "c3": 1.2944983818770217, + "c4": 1.0355987055016178, + "c5": 0.7766990291262138, + "c6": 0.5177993527508099, + "c7": 0.2588996763754039 }, "rgb": [222, 0, 59] }, @@ -190653,23 +190653,23 @@ "year": 1765, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": -7.386965649864905, - "c2": -41.707114083694904, - "c3": -18.49242008133529, - "c4": 36.029781396005916, - "c5": -21.9470239476609, - "c6": 7.9386679073461295, - "c7": 40.89014502592386 + "points": { + "c1": -41.668880344696824, + "c2": 7.531255424034342, + "c3": 26.784542854400172, + "c4": -0.07256392901517472, + "c5": 40.20565843918138, + "c6": 38.465657162562735, + "c7": 1.3298394915194294 }, - "vertexSeeds": { - "c1": 6.666234935321174, - "c2": 6.652858880493677, - "c3": 6.820474283265138, - "c4": 6.853453755804888, - "c5": 6.854785131945662, - "c6": 6.576920863104624, - "c7": 6.9647091842604665 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479893, + "c3": 8.321775312066583, + "c4": 6.657420249653272, + "c5": 4.993065187239932, + "c6": 3.328710124826622, + "c7": 1.664355062413311 }, "rgb": [86, 146, 138] }, @@ -190680,23 +190680,23 @@ "year": 1765, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 14.8615047872916, - "c2": -9.842149639323274, - "c3": -9.514141890143172, - "c4": -15.59700650725414, - "c5": -6.710374426725004, - "c6": -28.09900306861313, - "c7": -2.7698830616860413 + "points": { + "c1": 24.08036436823997, + "c2": -15.115178868586472, + "c3": 4.98435545161761, + "c4": -3.41700633968593, + "c5": 0.8778046527587762, + "c6": -29.419789263983304, + "c7": -3.486694388863988 }, - "vertexSeeds": { - "c1": 9.685781162043455, - "c2": 9.107433717471231, - "c3": 9.011238896921165, - "c4": 9.48829201592876, - "c5": 8.71578410735758, - "c6": 8.423329476424588, - "c7": 8.988186906268428 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116502, + "c3": 12.135922330097092, + "c4": 9.708737864077671, + "c5": 7.281553398058251, + "c6": 4.854368932038841, + "c7": 2.4271844660194204 }, "rgb": [77, 76, 132] }, @@ -190707,23 +190707,23 @@ "year": 1765, "resistanceReported": true, "duration": 43804800, - "curveSeeds": { - "c1": -8.24274744347499, - "c2": 22.178658180231807, - "c3": 51.3461280278228, - "c4": 5.642219609574006, - "c5": 56.219506491684214, - "c6": -32.61272246448279, - "c7": 45.717565641798984 + "points": { + "c1": 36.22314575749478, + "c2": 53.87660747163645, + "c3": 12.727815806939248, + "c4": -38.17591572656866, + "c5": -55.60686515279227, + "c6": -40.78955127472719, + "c7": 44.99237816244036 }, - "vertexSeeds": { - "c1": 0.831544357906224, - "c2": 1.2106397344745776, - "c3": 0.9652923554412588, - "c4": 1.2183929175661916, - "c5": 1.1663846401585698, - "c6": 0.8724747678169806, - "c7": 0.9694012252962998 + "offsets": { + "c1": 2.1359223300970873, + "c2": 1.8307905686546464, + "c3": 1.5256588072122055, + "c4": 1.2205270457697643, + "c5": 0.9153952843273234, + "c6": 0.6102635228848825, + "c7": 0.305131761442441 }, "rgb": [58, 15, 49] }, @@ -190734,23 +190734,23 @@ "year": 1765, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 13.054955512874088, - "c2": -28.35440924376853, - "c3": 28.48188024781649, - "c4": -11.66153755331775, - "c5": 28.349886463590394, - "c6": -23.61901422916222, - "c7": -10.109043908230973 + "points": { + "c1": -3.226239537595731, + "c2": 26.101732291776145, + "c3": -9.530096863331778, + "c4": 2.755049592392062, + "c5": 3.018962755196341, + "c6": 18.58103563503363, + "c7": -17.48468068604472 }, - "vertexSeeds": { - "c1": 6.379214452918551, - "c2": 5.430206477470934, - "c3": 6.207008075376603, - "c4": 6.137810681487867, - "c5": 5.879702211904402, - "c6": 5.494500128395581, - "c7": 6.230779507550445 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841887, + "c3": 8.529819694868236, + "c4": 6.82385575589459, + "c5": 5.1178918169209435, + "c6": 3.411927877947291, + "c7": 1.7059639389736454 }, "rgb": [77, 76, 132] }, @@ -190761,23 +190761,23 @@ "year": 1765, "resistanceReported": false, "duration": 47865600, - "curveSeeds": { - "c1": -37.84533833445835, - "c2": -16.513120784865393, - "c3": 43.04956142651792, - "c4": 60.10903582659771, - "c5": 42.733599549627975, - "c6": -60.81180020875454, - "c7": 29.082257605177013 + "points": { + "c1": 46.64234773196813, + "c2": 14.033755864796802, + "c3": -32.460335519514345, + "c4": 56.151103469101244, + "c5": 33.30816989534537, + "c6": -15.285111636552642, + "c7": 48.83071107416838 }, - "vertexSeeds": { - "c1": 3.5022869954732045, - "c2": 4.050541746785836, - "c3": 3.5426741723361794, - "c4": 4.237231459465919, - "c5": 4.08529230517191, - "c6": 3.7213790164824303, - "c7": 4.249524136875506 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848821, + "c3": 5.0855293573740195, + "c4": 4.068423485899216, + "c5": 3.051317614424413, + "c6": 2.0342117429496103, + "c7": 1.0171058714748076 }, "rgb": [58, 15, 49] }, @@ -190788,23 +190788,23 @@ "year": 1765, "resistanceReported": false, "duration": 40089600, - "curveSeeds": { - "c1": 12.199428342763817, - "c2": -13.143608678110894, - "c3": -41.02941660654483, - "c4": -1.9893260655450717, - "c5": -0.4487738472682494, - "c6": 44.66637925252467, - "c7": -14.631015668097291 + "points": { + "c1": -6.391890295076934, + "c2": 52.70007725695917, + "c3": 24.34310883109557, + "c4": 21.731148215295228, + "c5": 52.07582796680365, + "c6": -47.833253361820304, + "c7": 6.452059511748679 }, - "vertexSeeds": { - "c1": 6.151527099504304, - "c2": 6.046479231747317, - "c3": 6.069659353879001, - "c4": 6.378132963252783, - "c5": 6.148597306678403, - "c6": 6.284989891302431, - "c7": 6.35669235035658 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514571, + "c3": 7.766990291262134, + "c4": 6.213592233009713, + "c5": 4.660194174757277, + "c6": 3.1067961165048565, + "c7": 1.5533980582524198 }, "rgb": [58, 15, 49] }, @@ -190815,23 +190815,23 @@ "year": 1765, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": -25.944852145110822, - "c2": 26.48743028919999, - "c3": 9.438158369677446, - "c4": -9.68418296146585, - "c5": 15.065480639087681, - "c6": -47.33957445651217, - "c7": -38.14941399719035 + "points": { + "c1": -18.127102914178224, + "c2": 8.6489563517502, + "c3": -8.269546197839603, + "c4": -27.370594894034458, + "c5": -21.423346802346337, + "c6": 10.839898179353625, + "c7": 15.546121132300186 }, - "vertexSeeds": { - "c1": 1.9343596777986605, - "c2": 1.837393600944997, - "c3": 2.1622013910035323, - "c4": 2.1271038473815187, - "c5": 2.0924534079711905, - "c6": 1.8830545015709501, - "c7": 2.1373441233089894 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.162274618585299, + "c3": 2.635228848821081, + "c4": 2.108183079056866, + "c5": 1.5811373092926482, + "c6": 1.054091539528433, + "c7": 0.5270457697642152 }, "rgb": [77, 76, 132] }, @@ -190842,23 +190842,23 @@ "year": 1764, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -20.712277320608322, - "c2": -24.390474862173335, - "c3": -0.7607576028360299, - "c4": 26.190289897146915, - "c5": -26.45865791680071, - "c6": -1.7690963882149084, - "c7": 2.2293851570346632 + "points": { + "c1": 11.701947672966913, + "c2": -5.955469462383483, + "c3": -14.456415120599445, + "c4": -31.412538088150452, + "c5": 14.464036367819563, + "c6": -1.8829507147194953, + "c7": 20.088220227358764 }, - "vertexSeeds": { - "c1": 3.51410747816006, - "c2": 3.557245250189066, - "c3": 3.6052507470073323, - "c4": 3.368167370319516, - "c5": 3.7883246930287173, - "c6": 3.5077656670218627, - "c7": 3.3133831807346 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.62320850670365, + "c4": 3.698566805362921, + "c5": 2.773925104022192, + "c6": 1.8492834026814629, + "c7": 0.9246417013407289 }, "rgb": [86, 146, 138] }, @@ -190869,23 +190869,23 @@ "year": 1765, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 35.57630480460663, - "c2": -34.28181849586211, - "c3": 19.262494541646035, - "c4": -3.6058582995479824, - "c5": 23.732428243453334, - "c6": -13.635316747349965, - "c7": -19.30209257171743 + "points": { + "c1": 38.61323368640699, + "c2": -26.187268767270385, + "c3": -11.850229158075031, + "c4": -14.959617849275961, + "c5": -5.383424565554726, + "c6": 14.514711006486934, + "c7": 18.616401612724786 }, - "vertexSeeds": { - "c1": 4.269059788300979, - "c2": 4.037620369646058, - "c3": 3.9215026787923617, - "c4": 4.367598621437622, - "c5": 4.383131270877696, - "c6": 4.236287931062615, - "c7": 3.9872912567139442 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [86, 146, 138] }, @@ -190896,23 +190896,23 @@ "year": 1765, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -9.87224222818108, - "c2": -24.921855090278683, - "c3": 36.44958008974663, - "c4": 31.647827397475382, - "c5": 6.902091805152274, - "c6": -27.145837930993885, - "c7": -35.23931062636869 + "points": { + "c1": 29.67592043412249, + "c2": 1.6306704671300167, + "c3": -15.250248662634313, + "c4": 33.837233169385144, + "c5": 9.809646541525773, + "c6": 18.999400335033584, + "c7": -32.35623094593932 }, - "vertexSeeds": { - "c1": 6.6503708472786105, - "c2": 6.369619169725375, - "c3": 6.5737655830946915, - "c4": 6.722549685296327, - "c5": 6.4669427163650655, - "c6": 6.57177878550841, - "c7": 6.7388187074405375 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158108, + "c3": 8.136846971798441, + "c4": 6.509477577438747, + "c5": 4.882108183079054, + "c6": 3.25473878871936, + "c7": 1.6273693943596936 }, "rgb": [238, 201, 159] }, @@ -190923,23 +190923,23 @@ "year": 1765, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 37.715089524331184, - "c2": -2.617298135951401, - "c3": 6.449446790184375, - "c4": 41.312353395641374, - "c5": 9.46526650113131, - "c6": -16.843685984844335, - "c7": 11.751777893725183 + "points": { + "c1": 8.539465822934915, + "c2": -33.22503298526421, + "c3": -31.644935436957674, + "c4": 2.2292616346965275, + "c5": 23.162602316688286, + "c6": 28.77334482048804, + "c7": 9.870324568148938 }, - "vertexSeeds": { - "c1": 6.754345080332818, - "c2": 6.79949324972536, - "c3": 6.708308448916306, - "c4": 6.690239163505063, - "c5": 6.7234002399644135, - "c6": 6.709317669696643, - "c7": 6.78985890458215 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117937, + "c3": 8.113730929264895, + "c4": 6.490984743411959, + "c5": 4.868238557558915, + "c6": 3.2454923717059794, + "c7": 1.6227461858529357 }, "rgb": [222, 0, 59] }, @@ -190950,23 +190950,23 @@ "year": 1765, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -20.070026161330016, - "c2": 8.89078074035534, - "c3": 21.674935795169027, - "c4": -8.981340121411058, - "c5": -39.04508856353043, - "c6": -9.101576512756367, - "c7": -9.244026152604725 + "points": { + "c1": -32.113892324227194, + "c2": 37.32975285424677, + "c3": 35.371981831274574, + "c4": 3.704242380938908, + "c5": 32.20634842857482, + "c6": 37.447958103864686, + "c7": -42.14268908415842 }, - "vertexSeeds": { - "c1": 1.8718592336493909, - "c2": 1.9207358494013937, - "c3": 1.8515459371436847, - "c4": 1.8868918158058805, - "c5": 1.8643531094749588, - "c6": 1.9028476668320766, - "c7": 1.9227517467430533 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022193, + "c3": 2.3116042533518293, + "c4": 1.8492834026814657, + "c5": 1.3869625520110906, + "c6": 0.9246417013407271, + "c7": 0.46232085067036355 }, "rgb": [222, 0, 59] }, @@ -190977,23 +190977,23 @@ "year": 1764, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -17.364559130763055, - "c2": 20.64503723769173, - "c3": -1.5761674185337178, - "c4": -7.956658474961364, - "c5": 10.443703568332744, - "c6": 18.590674216758956, - "c7": -8.104743260430164 + "points": { + "c1": -8.833768305285421, + "c2": -9.85043673284709, + "c3": 7.156203609381414, + "c4": 15.5344621435354, + "c5": 0.9175064557755519, + "c6": -1.451269567568417, + "c7": -9.301713365751953 }, - "vertexSeeds": { - "c1": 6.334436121717455, - "c2": 6.471575320722465, - "c3": 6.042259897985671, - "c4": 6.557423270735259, - "c5": 6.536869864499402, - "c6": 6.590168091513913, - "c7": 6.610664341990182 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957007, + "c3": 8.021266759130842, + "c4": 6.417013407304659, + "c5": 4.812760055478495, + "c6": 3.2085067036523296, + "c7": 1.6042533518261648 }, "rgb": [58, 15, 49] }, @@ -191004,23 +191004,23 @@ "year": 1765, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 21.28872137936869, - "c2": -1.755939312632087, - "c3": 37.14194499548883, - "c4": -38.73042632024432, - "c5": 23.26769855051152, - "c6": 5.658196297895138, - "c7": 22.885560457157823 + "points": { + "c1": 29.128747713284667, + "c2": -17.91879942600418, + "c3": -34.50057132979964, + "c4": 7.963219636000225, + "c5": -27.912895098215756, + "c6": -5.572919420975978, + "c7": -17.88357934852538 }, - "vertexSeeds": { - "c1": 0.876342839295514, - "c2": 0.8480423257773659, - "c3": 1.0249089906190458, - "c4": 0.9391326617105564, - "c5": 1.01538698751547, - "c6": 0.8962605043067666, - "c7": 0.871396252165808 + "offsets": { + "c1": 1.779935275080906, + "c2": 1.525658807212205, + "c3": 1.2713823393435049, + "c4": 1.0171058714748036, + "c5": 0.7628294036061025, + "c6": 0.5085529357374013, + "c7": 0.2542764678687012 }, "rgb": [222, 0, 59] }, @@ -191031,23 +191031,23 @@ "year": 1764, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -17.06814834609322, - "c2": 1.9635690651327806, - "c3": 21.3971374815549, - "c4": 14.260455026947291, - "c5": -9.463259063764703, - "c6": 14.633003329252979, - "c7": 3.737716170438283 + "points": { + "c1": 18.336483608915465, + "c2": -0.3929621252648161, + "c3": -30.591379375768526, + "c4": 21.934057380958727, + "c5": -20.41084056196614, + "c6": -5.360504644241271, + "c7": 4.6697995421139495 }, - "vertexSeeds": { - "c1": 4.092588768013437, - "c2": 4.708889262638468, - "c3": 4.774449664004281, - "c4": 4.3216347404657665, - "c5": 4.8139032460827735, - "c6": 4.136072375696524, - "c7": 4.098217080100461 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -191058,23 +191058,23 @@ "year": 1765, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 19.778396755932185, - "c2": 17.778475131234643, - "c3": -18.227041823665708, - "c4": -25.500319741915614, - "c5": -12.501582315573891, - "c6": -3.6321776410191795, - "c7": -31.205204630742813 + "points": { + "c1": 26.545549193844202, + "c2": -20.109896960630106, + "c3": 26.276782949555553, + "c4": -28.424965888924657, + "c5": -33.97352379477285, + "c6": 31.538730725437226, + "c7": -15.817569045612466 }, - "vertexSeeds": { - "c1": 7.137109977544531, - "c2": 6.825497213849751, - "c3": 7.479218593072385, - "c4": 7.497630486114718, - "c5": 6.979046315592587, - "c6": 7.08989952049276, - "c7": 7.548071906671447 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766989, + "c3": 9.061488673139158, + "c4": 7.249190938511326, + "c5": 5.4368932038834945, + "c6": 3.624595469255663, + "c7": 1.8122977346278315 }, "rgb": [238, 201, 159] }, @@ -191085,23 +191085,23 @@ "year": 1765, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -15.76963397346502, - "c2": -30.675177406236504, - "c3": 21.548385307277904, - "c4": -2.273890308542363, - "c5": -20.414103558036054, - "c6": 11.307393076459768, - "c7": 20.190372496786352 + "points": { + "c1": -17.713827879011767, + "c2": 24.155983249228186, + "c3": 18.1144081193437, + "c4": 1.1286790506117939, + "c5": 8.02885226313176, + "c6": 34.559737306029675, + "c7": 1.8185031762250006 }, - "vertexSeeds": { - "c1": 1.8503413907338455, - "c2": 1.8256149683343594, - "c3": 1.8456165586386326, - "c4": 1.9975842301166924, - "c5": 1.9576017907723897, - "c6": 2.0939048830363767, - "c7": 2.0227097055506222 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450767, + "c3": 2.612112806287564, + "c4": 2.0896902450300523, + "c5": 1.5672676837725397, + "c6": 1.044845122515027, + "c7": 0.5224225612575146 }, "rgb": [222, 0, 59] }, @@ -191112,23 +191112,23 @@ "year": 1765, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 3.189713517001664, - "c2": 25.768560949720523, - "c3": -7.778358447881423, - "c4": 1.3031984596757482, - "c5": 6.674341703977831, - "c6": -6.427382048246727, - "c7": 18.219684060824747 + "points": { + "c1": 20.70418723754394, + "c2": -32.58987861217734, + "c3": 31.330026003293852, + "c4": 33.56534973347331, + "c5": 17.793463238983037, + "c6": -16.37904890199902, + "c7": -5.260928072450309 }, - "vertexSeeds": { - "c1": 7.606643494717791, - "c2": 6.890693292178041, - "c3": 8.496350492954846, - "c4": 7.247003068715307, - "c5": 8.781107785335031, - "c6": 8.201387296266287, - "c7": 8.744984978647595 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.7877947295423, + "c3": 10.656495607951914, + "c4": 8.525196486361537, + "c5": 6.39389736477115, + "c6": 4.262598243180764, + "c7": 2.131299121590386 }, "rgb": [238, 201, 159] }, @@ -191139,23 +191139,23 @@ "year": 1765, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 20.473270205517593, - "c2": 11.52866935489152, - "c3": 27.34836771788629, - "c4": 25.455129689767197, - "c5": -22.576437211364173, - "c6": 23.265497372313362, - "c7": 13.314528392595108 + "points": { + "c1": 36.22850877195056, + "c2": -19.13794038058867, + "c3": -19.839645818697903, + "c4": -20.54321801930841, + "c5": -32.496030627474205, + "c6": 21.04878892132208, + "c7": 26.774939044121886 }, - "vertexSeeds": { - "c1": 5.750651290399657, - "c2": 6.190382033740963, - "c3": 5.922859735868113, - "c4": 6.275284205892013, - "c5": 5.977706725685067, - "c6": 5.718266022690742, - "c7": 5.7995083738702995 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [77, 76, 132] }, @@ -191166,23 +191166,23 @@ "year": 1765, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 27.708120014174916, - "c2": 34.87872574975507, - "c3": -13.917987059486101, - "c4": 9.356143510496928, - "c5": 26.802172635255353, - "c6": 33.587279944745326, - "c7": -17.524523085229973 + "points": { + "c1": -5.351749994896423, + "c2": -41.14321693862339, + "c3": 14.775082363641175, + "c4": -30.228795145121058, + "c5": 0.3651786397522727, + "c6": -38.162502381960095, + "c7": 15.993594716819203 }, - "vertexSeeds": { - "c1": 6.643311228334194, - "c2": 5.839570441062877, - "c3": 5.828908564572352, - "c4": 6.686464876836698, - "c5": 6.190628268450718, - "c6": 6.518557590987127, - "c7": 6.099934433208374 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110956998, + "c3": 8.021266759130839, + "c4": 6.417013407304665, + "c5": 4.812760055478493, + "c6": 3.2085067036523327, + "c7": 1.6042533518261601 }, "rgb": [238, 201, 159] }, @@ -191193,23 +191193,23 @@ "year": 1765, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -10.269749321348439, - "c2": 27.481806344281875, - "c3": 26.443226773695688, - "c4": -17.990229071523736, - "c5": -14.286565807475183, - "c6": -17.171861243422118, - "c7": -0.8395509504157594 + "points": { + "c1": 6.735411683220118, + "c2": 1.096497649741604, + "c3": -25.7950477853782, + "c4": 19.403759128099704, + "c5": 28.35284423871246, + "c6": 2.099691792033415, + "c7": 9.254205547997923 }, - "vertexSeeds": { - "c1": 2.6747760513521763, - "c2": 2.4794214824139105, - "c3": 2.557463160318582, - "c4": 2.62387846662829, - "c5": 2.5458827110712794, - "c6": 2.5808956682893522, - "c7": 2.415407473360925 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590849, + "c3": 3.2131299121590375, + "c4": 2.570503929727233, + "c5": 1.9278779472954206, + "c6": 1.2852519648636125, + "c7": 0.6426259824318042 }, "rgb": [222, 0, 59] }, @@ -191220,23 +191220,23 @@ "year": 1765, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -19.984441857322032, - "c2": 18.348107871438625, - "c3": 15.90273400919627, - "c4": 5.200148838127323, - "c5": 11.154808224005333, - "c6": 12.232422232989595, - "c7": 12.524194132777755 + "points": { + "c1": -20.066735347390257, + "c2": 14.640975306406386, + "c3": -3.253297368801924, + "c4": -23.625921082916967, + "c5": -3.6122089051636905, + "c6": 22.24619263739933, + "c7": -11.881082505327164 }, - "vertexSeeds": { - "c1": 5.112933686431963, - "c2": 5.188512038401139, - "c3": 4.867585104635434, - "c4": 4.901109410079011, - "c5": 4.887226650335121, - "c6": 4.845492309471805, - "c7": 4.934875282941136 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385112, + "c4": 5.177993527508089, + "c5": 3.8834951456310645, + "c6": 2.5889967637540408, + "c7": 1.294498381877017 }, "rgb": [238, 201, 159] }, @@ -191247,23 +191247,23 @@ "year": 1765, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 41.918188767988326, - "c2": -12.923698854245536, - "c3": 18.443636459252815, - "c4": 42.98213807451184, - "c5": -1.0439173298055735, - "c6": -33.07021166847801, - "c7": 39.38031916850338 + "points": { + "c1": 38.00575387463016, + "c2": -27.714527012787737, + "c3": -19.569849270681438, + "c4": -24.938389996497623, + "c5": -3.004866746181392, + "c6": -4.799605670202112, + "c7": 4.375164574082923 }, - "vertexSeeds": { - "c1": 6.237944323114375, - "c2": 6.070879869759768, - "c3": 6.0052780396402055, - "c4": 6.180399693166449, - "c5": 6.280695430301328, - "c6": 6.034255636910991, - "c7": 5.685727575130398 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112344, + "c3": 7.535829865926953, + "c4": 6.028663892741562, + "c5": 4.521497919556172, + "c6": 3.014331946370781, + "c7": 1.5071659731853906 }, "rgb": [77, 76, 132] }, @@ -191274,23 +191274,23 @@ "year": 1765, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 26.934500251692093, - "c2": 19.19132075226772, - "c3": -14.16730291641634, - "c4": 21.522301916130516, - "c5": 23.435884044790882, - "c6": 17.130389669564565, - "c7": 24.024992293379462 + "points": { + "c1": -0.47527871699284674, + "c2": 19.485436234757486, + "c3": 2.695182776291091, + "c4": 35.865290408083645, + "c5": -26.017679918967367, + "c6": -20.16829911758424, + "c7": 15.29294701427969 }, - "vertexSeeds": { - "c1": 8.131633168348557, - "c2": 8.086985704550749, - "c3": 7.091910441692502, - "c4": 6.898775168810067, - "c5": 8.236931620401299, - "c6": 7.903894843439733, - "c7": 7.880267625146149 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [222, 0, 59] }, @@ -191301,23 +191301,23 @@ "year": 1765, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 8.246654279036704, - "c2": 34.04520054492626, - "c3": -21.44627999042341, - "c4": -11.342613139272096, - "c5": -14.785405247696456, - "c6": 24.578631628035787, - "c7": 9.040954148769067 + "points": { + "c1": -26.104222780253345, + "c2": -22.015603101553317, + "c3": -24.012138008245135, + "c4": 12.195750334475235, + "c5": -27.179787956356193, + "c6": -1.0649365281025496, + "c7": 36.14993105459041 }, - "vertexSeeds": { - "c1": 4.01063618805636, - "c2": 4.465253018666812, - "c3": 4.621321507094836, - "c4": 4.471733636231888, - "c5": 4.521823488985136, - "c6": 4.464769422154896, - "c7": 4.210489480829723 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703654, + "c4": 3.698566805362922, + "c5": 2.7739251040221906, + "c6": 1.8492834026814589, + "c7": 0.9246417013407318 }, "rgb": [86, 146, 138] }, @@ -191328,23 +191328,23 @@ "year": 1765, "resistanceReported": false, "duration": 48124800, - "curveSeeds": { - "c1": 50.55856967798968, - "c2": -36.695939601037765, - "c3": 42.93336186544293, - "c4": -46.68945919446761, - "c5": -57.82816423153171, - "c6": -50.13950880971034, - "c7": -59.568140552940456 + "points": { + "c1": -54.57818014248219, + "c2": -46.55472045042071, + "c3": -17.74998053218109, + "c4": 64.14003630561992, + "c5": 36.642680350161484, + "c6": -30.592012005483276, + "c7": -19.442138896793473 }, - "vertexSeeds": { - "c1": 0.8016846701277536, - "c2": 0.8041905991358238, - "c3": 0.8295918118813559, - "c4": 0.7751763543444251, - "c5": 0.8277664394614588, - "c6": 0.7886791265707631, - "c7": 0.8221855189036026 + "offsets": { + "c1": 1.423948220064725, + "c2": 1.220527045769765, + "c3": 1.0171058714748025, + "c4": 0.8136846971798426, + "c5": 0.6102635228848825, + "c6": 0.4068423485899225, + "c7": 0.20342117429496 }, "rgb": [77, 76, 132] }, @@ -191355,23 +191355,23 @@ "year": 1765, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 23.79589244544892, - "c2": -35.23139971108713, - "c3": 4.7767661853664265, - "c4": 6.737414136927512, - "c5": -35.31956440125161, - "c6": -15.939017214449404, - "c7": -28.18705384807262 + "points": { + "c1": -21.09616565880906, + "c2": -5.181187419815089, + "c3": 21.76258233064671, + "c4": -9.781996943337305, + "c5": 28.029290745033784, + "c6": 25.133140269884713, + "c7": 29.86637438815385 }, - "vertexSeeds": { - "c1": 7.012643825702546, - "c2": 6.84396106001705, - "c3": 7.47878073639491, - "c4": 7.296130883499058, - "c5": 6.984734531548246, - "c6": 6.935993948107763, - "c7": 7.3669375083132165 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -191382,23 +191382,23 @@ "year": 1765, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -3.7598140032871683, - "c2": 11.079328092049625, - "c3": -0.19523710896850588, - "c4": -25.473344734549688, - "c5": -8.922482939155625, - "c6": -25.493530872325184, - "c7": -27.315009452290774 + "points": { + "c1": -4.019027150309661, + "c2": 16.200197637475764, + "c3": -26.928537903210675, + "c4": -18.11902881990177, + "c5": 20.693947476893396, + "c6": 20.346333235375564, + "c7": 15.94390670700663 }, - "vertexSeeds": { - "c1": 2.572737280408504, - "c2": 2.7584568004511665, - "c3": 2.6085644609390255, - "c4": 2.715240550494419, - "c5": 2.550407653732035, - "c6": 2.6910802104720224, - "c7": 2.584522931814577 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [222, 0, 59] }, @@ -191409,23 +191409,23 @@ "year": 1765, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 14.040372134313575, - "c2": 3.8191159876874075, - "c3": -26.19006680597942, - "c4": 2.379923668860254, - "c5": -15.084897585336108, - "c6": 12.091316547101638, - "c7": 10.083321620704485 + "points": { + "c1": -9.485742213509287, + "c2": 22.966322511873287, + "c3": 18.701670257496367, + "c4": -15.221179382871288, + "c5": 6.932159023632188, + "c6": -3.356455728811163, + "c7": 10.49852382363727 }, - "vertexSeeds": { - "c1": 7.875550235690645, - "c2": 7.554776403548803, - "c3": 8.487775148482097, - "c4": 7.638194455923376, - "c5": 8.474666251605113, - "c6": 7.11033783249586, - "c7": 8.37673947413407 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737866, + "c3": 10.194174757281557, + "c4": 8.155339805825246, + "c5": 6.1165048543689275, + "c6": 4.077669902912619, + "c7": 2.0388349514563093 }, "rgb": [222, 0, 59] }, @@ -191436,23 +191436,23 @@ "year": 1765, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": -17.482484199129928, - "c2": -13.40493683525387, - "c3": -23.365584967775796, - "c4": 39.15647332434281, - "c5": 36.67088149921169, - "c6": 39.402088941706026, - "c7": -50.16990357294795 + "points": { + "c1": -34.712919021506636, + "c2": -46.08921285077226, + "c3": 46.31440373257766, + "c4": -31.971655946011005, + "c5": 29.500296271630475, + "c6": -29.192250495192717, + "c7": -55.04128308972019 }, - "vertexSeeds": { - "c1": 4.89153647610896, - "c2": 4.878250516904416, - "c3": 4.883219739118848, - "c4": 4.8796446344439826, - "c5": 4.883107131763102, - "c6": 4.878445842214571, - "c7": 4.894236092963031 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.0180305131761775, + "c3": 5.848358760980187, + "c4": 4.678687008784196, + "c5": 3.5090152565879724, + "c6": 2.3393435043919815, + "c7": 1.1696717521959907 }, "rgb": [77, 76, 132] }, @@ -191463,23 +191463,23 @@ "year": 1765, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 34.76833030623651, - "c2": -27.340679477814323, - "c3": -24.456365520109564, - "c4": -41.09887848995996, - "c5": 34.56163308875877, - "c6": 46.61036317398589, - "c7": 23.006269497035575 + "points": { + "c1": 22.00967162479995, + "c2": -5.35830931502732, + "c3": 2.6909678331807, + "c4": -43.02068584994996, + "c5": 9.904580078799356, + "c6": -27.488199591585353, + "c7": -42.03197967184418 }, - "vertexSeeds": { - "c1": 3.838261547262093, - "c2": 3.7455574190394882, - "c3": 3.854225364389941, - "c4": 3.7160033137420254, - "c5": 3.7789936870431187, - "c6": 3.7720864628151896, - "c7": 3.8174876560733018 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.54785020804439, + "c3": 4.623208506703649, + "c4": 3.698566805362927, + "c5": 2.773925104022186, + "c6": 1.8492834026814635, + "c7": 0.9246417013407224 }, "rgb": [222, 0, 59] }, @@ -191490,23 +191490,23 @@ "year": 1764, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -0.19005968823310582, - "c2": -25.42634580825869, - "c3": 21.1366502052333, - "c4": 1.9541901916065711, - "c5": -18.197297127033693, - "c6": 20.059201515943197, - "c7": 17.59163669227001 + "points": { + "c1": 1.1787435435154627, + "c2": 20.12060546118182, + "c3": 22.733406263742122, + "c4": 15.396024566066256, + "c5": 27.188651398979996, + "c6": -24.634734603205587, + "c7": -11.430796078337604 }, - "vertexSeeds": { - "c1": 4.381134036682618, - "c2": 4.301495808102506, - "c3": 4.2600323680172805, - "c4": 4.140497153953694, - "c5": 4.630031651042299, - "c6": 3.99040576844155, - "c7": 4.694737623574891 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773925, + "c3": 5.617198335644938, + "c4": 4.493758668515946, + "c5": 3.37031900138696, + "c6": 2.246879334257973, + "c7": 1.1234396671289866 }, "rgb": [58, 15, 49] }, @@ -191517,23 +191517,23 @@ "year": 1765, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -0.9990073391240202, - "c2": -28.532109552141506, - "c3": -2.97010026255219, - "c4": 18.235304636306342, - "c5": -28.52197415132448, - "c6": 15.531383413016425, - "c7": 21.998953546193075 + "points": { + "c1": 22.83357185074999, + "c2": -21.783195404318562, + "c3": -2.2309842843323224, + "c4": -0.4556669994112852, + "c5": 13.628556994360615, + "c6": -19.601926423265905, + "c7": -11.750197181999479 }, - "vertexSeeds": { - "c1": 5.6920421537176065, - "c2": 5.792693874324462, - "c3": 5.870398278432582, - "c4": 6.113608880489846, - "c5": 5.813933627994203, - "c6": 5.51111390804935, - "c7": 6.2152911069517955 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594546, + "c4": 6.121128062875633, + "c5": 4.59084604715673, + "c6": 3.0605640314378166, + "c7": 1.5302820157189134 }, "rgb": [77, 76, 132] }, @@ -191544,23 +191544,23 @@ "year": 1765, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 24.159213419247486, - "c2": -7.20769333048608, - "c3": 19.64084256443413, - "c4": -13.47893179100162, - "c5": -26.114925035911902, - "c6": -1.0115281075288216, - "c7": 8.175062770420773 + "points": { + "c1": 0.2565361399276824, + "c2": -14.657884381602571, + "c3": -14.639168826455123, + "c4": 24.74804239546024, + "c5": 13.915588875482548, + "c6": 27.202825819565305, + "c7": -7.296193032675763 }, - "vertexSeeds": { - "c1": 3.4959120983709835, - "c2": 3.5443539302777505, - "c3": 3.5564448680825165, - "c4": 3.7640768953030648, - "c5": 3.520605785238648, - "c6": 3.494816837964921, - "c7": 3.510472583856889 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [238, 201, 159] }, @@ -191571,23 +191571,23 @@ "year": 1765, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -46.198669626735835, - "c2": 9.242398606323015, - "c3": 4.465302003590061, - "c4": -4.473242393456999, - "c5": 25.717560173760134, - "c6": -25.058090771716564, - "c7": -6.096065986191398 + "points": { + "c1": 30.00487849787349, + "c2": -15.068124279387114, + "c3": 6.6725040790081, + "c4": 20.223408116006397, + "c5": 20.30115271023645, + "c6": 9.13946372482652, + "c7": 33.29481074613987 }, - "vertexSeeds": { - "c1": 1.825541003924836, - "c2": 1.854059185063692, - "c3": 1.9369010251967345, - "c4": 1.8039038692824134, - "c5": 1.8650821996929408, - "c6": 1.8171536961070383, - "c7": 1.8887579309146842 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.884882108183079, + "c3": 2.4040684234858998, + "c4": 1.9232547387887196, + "c5": 1.4424410540915396, + "c6": 0.9616273693943598, + "c7": 0.4808136846971799 }, "rgb": [238, 201, 159] }, @@ -191598,23 +191598,23 @@ "year": 1765, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 4.332892702458167, - "c2": 33.28555256137879, - "c3": -22.98930082928919, - "c4": -10.504054529263822, - "c5": 0.2823396020679638, - "c6": 8.200248242974531, - "c7": 25.434584765409397 + "points": { + "c1": 32.2339387493345, + "c2": 31.50261631234187, + "c3": 28.528310272077192, + "c4": -8.313558117740762, + "c5": 34.28245363751935, + "c6": -24.463756567498947, + "c7": -16.35607500128727 }, - "vertexSeeds": { - "c1": 3.629666613900123, - "c2": 3.5990149749603937, - "c3": 3.615399646147969, - "c4": 3.593844036127398, - "c5": 3.4987491568584277, - "c6": 3.5739187556426772, - "c7": 3.7058819753912333 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.32593619972261, + "c3": 4.43828016643551, + "c4": 3.55062413314841, + "c5": 2.6629680998612986, + "c6": 1.7753120665741993, + "c7": 0.8876560332870996 }, "rgb": [58, 15, 49] }, @@ -191625,23 +191625,23 @@ "year": 1764, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -10.447873321917152, - "c2": -0.5242832013101832, - "c3": 16.019499164237153, - "c4": 18.377354635273207, - "c5": -4.177546784627008, - "c6": 7.174800399145173, - "c7": 6.14325552315589 + "points": { + "c1": 12.817916265445689, + "c2": 8.933365408486715, + "c3": -17.774133909336424, + "c4": 17.988321085687183, + "c5": -3.7696747284231833, + "c6": 17.33684755086299, + "c7": 21.932725102227124 }, - "vertexSeeds": { - "c1": 6.096781829684087, - "c2": 5.8221575208062735, - "c3": 6.0013185100757775, - "c4": 6.1843116358379016, - "c5": 5.854524727377039, - "c6": 6.03434846869159, - "c7": 6.151488782796318 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661575, + "c4": 6.158113730929257, + "c5": 4.618585298196956, + "c6": 3.0790568654646377, + "c7": 1.5395284327323189 }, "rgb": [77, 76, 132] }, @@ -191652,23 +191652,23 @@ "year": 1765, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 39.22931445969548, - "c2": 14.266746764418656, - "c3": 14.7546695776784, - "c4": 25.0405429809878, - "c5": -15.680307491590973, - "c6": 34.59869015201691, - "c7": 17.733718705832736 + "points": { + "c1": -0.009125731937082548, + "c2": 21.359346659014456, + "c3": 0.6594887000923535, + "c4": -40.67290997274853, + "c5": -27.37174002171208, + "c6": 31.85682446415128, + "c7": -2.14299716766012 }, - "vertexSeeds": { - "c1": 7.343818432321096, - "c2": 7.6376859555795935, - "c3": 7.672023972712916, - "c4": 7.335548753484493, - "c5": 7.611956078143668, - "c6": 7.657324843052034, - "c7": 7.547750097901488 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048542, + "c3": 9.223300970873785, + "c4": 7.378640776699028, + "c5": 5.533980582524271, + "c6": 3.689320388349514, + "c7": 1.844660194174757 }, "rgb": [222, 0, 59] }, @@ -191679,23 +191679,23 @@ "year": 1765, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -11.746266926178716, - "c2": -5.801725603446929, - "c3": -24.25749209344244, - "c4": -0.18971921265531577, - "c5": -14.746315278589552, - "c6": 21.624546758541605, - "c7": -9.777393590685051 + "points": { + "c1": -14.591671585475051, + "c2": -30.943525097608276, + "c3": -18.06371340238266, + "c4": -15.630649462068716, + "c5": -7.933803539672947, + "c6": -14.861897939204287, + "c7": 13.821006938240068 }, - "vertexSeeds": { - "c1": 4.1154275440206955, - "c2": 4.113854855322654, - "c3": 4.394532767722257, - "c4": 4.616586605840832, - "c5": 4.446514226566128, - "c6": 4.490938760308732, - "c7": 4.361502547631537 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -191706,23 +191706,23 @@ "year": 1765, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -34.33333081361407, - "c2": -35.848828687280275, - "c3": -20.527842851584108, - "c4": -29.279743920746025, - "c5": -4.3751224944024045, - "c6": -44.29702344871826, - "c7": -1.4224835739950379 + "points": { + "c1": -44.13059232251209, + "c2": 24.014472080759077, + "c3": 5.302732640327484, + "c4": -26.53848844310047, + "c5": -27.825275175344157, + "c6": 11.90332351739334, + "c7": 28.78595002097329 }, - "vertexSeeds": { - "c1": 3.2200181245401187, - "c2": 3.116235560975208, - "c3": 3.239925801810068, - "c4": 3.0856391536193493, - "c5": 3.221542946318795, - "c6": 3.15983707028873, - "c7": 3.169568210889871 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [77, 76, 132] }, @@ -191733,23 +191733,23 @@ "year": 1765, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 20.088149404136246, - "c2": -1.3883863325055756, - "c3": 14.659779903755975, - "c4": 28.0042454353242, - "c5": 3.18890479392266, - "c6": 5.400082438101734, - "c7": -12.568701589219476 + "points": { + "c1": -2.470274619212219, + "c2": 31.56528512176525, + "c3": -24.716323020786064, + "c4": 19.560849724173686, + "c5": -11.85787842224531, + "c6": 32.76994052962703, + "c7": -13.708870903631873 }, - "vertexSeeds": { - "c1": 5.188638219273398, - "c2": 5.453059923003288, - "c3": 5.874797362127268, - "c4": 5.826770488880063, - "c5": 5.202650762207393, - "c6": 5.304826559349746, - "c7": 5.360209613308803 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227458, + "c3": 7.027276930189557, + "c4": 5.6218215441516435, + "c5": 4.216366158113729, + "c6": 2.810910772075829, + "c7": 1.4054553860379144 }, "rgb": [77, 76, 132] }, @@ -191760,23 +191760,23 @@ "year": 1765, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 0.18023774964266437, - "c2": -36.68909789043221, - "c3": -39.327441493356744, - "c4": -51.2498703797633, - "c5": 19.434489992567734, - "c6": 16.070794930834637, - "c7": 13.672671717525674 + "points": { + "c1": 15.179025820289255, + "c2": 34.764264929714344, + "c3": 47.54987928984956, + "c4": -51.46073754741726, + "c5": 23.93225385265606, + "c6": 33.62243168927053, + "c7": -52.201944756435424 }, - "vertexSeeds": { - "c1": 4.271521152126835, - "c2": 4.8878640940030795, - "c3": 5.397801494800893, - "c4": 4.409520151292672, - "c5": 4.765420067745148, - "c6": 5.552285599654088, - "c7": 4.9609934958687525 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664359, + "c3": 6.703652334720293, + "c4": 5.362921867776235, + "c5": 4.022191400832179, + "c6": 2.6814609338881175, + "c7": 1.340730466944057 }, "rgb": [222, 0, 59] }, @@ -191787,23 +191787,23 @@ "year": 1765, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 7.104777338766745, - "c2": 18.49599251711468, - "c3": -5.786776979753256, - "c4": -23.96426781189078, - "c5": 0.5839598146628617, - "c6": -13.669009323111453, - "c7": 36.76992829312608 + "points": { + "c1": 12.95428914292932, + "c2": 13.651860058320217, + "c3": 21.93477482007892, + "c4": -29.73950577262188, + "c5": -47.08348854149355, + "c6": -49.54929645664408, + "c7": 23.807829998362514 }, - "vertexSeeds": { - "c1": 4.091390753665597, - "c2": 3.961052628277833, - "c3": 4.2513192707580165, - "c4": 3.8826099488093107, - "c5": 3.8952213496530543, - "c6": 3.770790181318634, - "c7": 4.339416434511152 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.201109570041606, + "c4": 4.160887656033286, + "c5": 3.120665742024966, + "c6": 2.0804438280166395, + "c7": 1.0402219140083198 }, "rgb": [77, 76, 132] }, @@ -191814,23 +191814,23 @@ "year": 1765, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 26.91431428328116, - "c2": -9.818285469278315, - "c3": 6.303611472700847, - "c4": -7.250626450305042, - "c5": -26.25976519888914, - "c6": -25.618881420589222, - "c7": -10.154549065201643 + "points": { + "c1": -12.403063985408593, + "c2": -9.628163627138129, + "c3": 8.144545979860734, + "c4": 24.309675907834578, + "c5": -4.144206934475296, + "c6": -21.468746089681613, + "c7": -17.361580650450172 }, - "vertexSeeds": { - "c1": 13.255478867718, - "c2": 13.311395326679756, - "c3": 13.409315460754131, - "c4": 13.691078686336994, - "c5": 13.337969547734403, - "c6": 13.128809639207867, - "c7": 13.074187601040585 + "offsets": { + "c1": 22.84789644012945, + "c2": 19.58391123439667, + "c3": 16.319926028663893, + "c4": 13.055940822931113, + "c5": 9.791955617198335, + "c6": 6.527970411465557, + "c7": 3.2639852057327783 }, "rgb": [222, 0, 59] }, @@ -191841,23 +191841,23 @@ "year": 1765, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -24.016172451420942, - "c2": -41.77466886428955, - "c3": 9.763256297853403, - "c4": -19.665130411538453, - "c5": 11.582494710798855, - "c6": -3.869100886421485, - "c7": -21.57148668881623 + "points": { + "c1": 42.32085477746326, + "c2": 41.13593173804096, + "c3": 20.836616016653572, + "c4": 6.031791294563995, + "c5": 9.131913252936748, + "c6": -39.55932437259798, + "c7": 29.943085890869078 }, - "vertexSeeds": { - "c1": 3.1664683443995703, - "c2": 3.284682206160392, - "c3": 3.022222032755743, - "c4": 3.301130061156931, - "c5": 3.203520733202571, - "c6": 3.19602043496752, - "c7": 3.166116751679021 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.02219140083218, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328672, + "c7": 0.8044382801664377 }, "rgb": [77, 76, 132] }, @@ -191868,23 +191868,23 @@ "year": 1765, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -4.009596888913901, - "c2": -3.3548539108874245, - "c3": 29.21374346400261, - "c4": 21.779822355317286, - "c5": 29.804270385682628, - "c6": -6.386818788935056, - "c7": 30.275437575575836 + "points": { + "c1": -11.876149269846653, + "c2": 25.957678011730373, + "c3": 15.63080533343286, + "c4": 3.107277990437005, + "c5": 21.24875020156056, + "c6": -31.754616780467412, + "c7": -26.196973457691318 }, - "vertexSeeds": { - "c1": 1.789277404821509, - "c2": 1.7547182972160862, - "c3": 1.747550825831665, - "c4": 1.9619655628481376, - "c5": 1.8405900451413892, - "c6": 1.9385738065013152, - "c7": 1.7391312470790845 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635234, + "c3": 2.4503005085529366, + "c4": 1.9602404068423471, + "c5": 1.4701803051317603, + "c6": 0.9801202034211736, + "c7": 0.4900601017105868 }, "rgb": [86, 146, 138] }, @@ -191895,23 +191895,23 @@ "year": 1766, "resistanceReported": false, "duration": 46915200, - "curveSeeds": { - "c1": 6.790808543363973, - "c2": -10.943301279206082, - "c3": -45.46088348930825, - "c4": -58.71188569911133, - "c5": 54.536843752106314, - "c6": -10.981057822422883, - "c7": 28.862663312231568 + "points": { + "c1": 0.17082380910711237, + "c2": -61.324685413396594, + "c3": 24.33377129757087, + "c4": 34.743255888665296, + "c5": -1.4713741025405795, + "c6": -30.223757192524374, + "c7": -28.947268171377885 }, - "vertexSeeds": { - "c1": 1.1441032385624152, - "c2": 1.120563163953927, - "c3": 1.2638781566243535, - "c4": 1.1197715125651702, - "c5": 1.2239045311764327, - "c6": 1.1641017885322567, - "c7": 1.208842851791121 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753106, + "c3": 1.59500693481276, + "c4": 1.276005547850208, + "c5": 0.9570041608876559, + "c6": 0.638002773925104, + "c7": 0.319001386962552 }, "rgb": [238, 201, 159] }, @@ -191922,23 +191922,23 @@ "year": 1765, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -20.869583289562712, - "c2": 10.56887406605373, - "c3": 7.379252971303053, - "c4": 37.98419439114623, - "c5": -28.50202569401689, - "c6": -22.92519420997872, - "c7": -29.159240446646542 + "points": { + "c1": -9.240521958794037, + "c2": 21.310358139094596, + "c3": -2.3895939055063593, + "c4": -7.3234166955130675, + "c5": -30.79875810277902, + "c6": -27.184600396148284, + "c7": -14.594021019012548 }, - "vertexSeeds": { - "c1": 5.933618286935406, - "c2": 5.584341546821283, - "c3": 5.782888797903383, - "c4": 6.198035087973565, - "c5": 5.583388074955189, - "c6": 5.693227157618973, - "c7": 6.354456769693348 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [86, 146, 138] }, @@ -191949,23 +191949,23 @@ "year": 1765, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 7.478150979860757, - "c2": 36.52315258833025, - "c3": 37.62632517260151, - "c4": -9.850441113285342, - "c5": 14.039657082236495, - "c6": -11.271766936970451, - "c7": 16.255011518305096 + "points": { + "c1": -4.189158552886234, + "c2": -22.094971963762603, + "c3": -45.63651269219994, + "c4": -25.79477441409084, + "c5": -30.722295300745422, + "c6": 38.629424584997665, + "c7": -48.5341279069265 }, - "vertexSeeds": { - "c1": 5.408098480724492, - "c2": 5.395040530870198, - "c3": 5.35272555100673, - "c4": 5.2059438313281605, - "c5": 5.068325576741277, - "c6": 5.3589749462830065, - "c7": 5.347751490324541 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262133, + "c3": 6.472491909385106, + "c4": 5.17799352750808, + "c5": 3.883495145631053, + "c6": 2.5889967637540536, + "c7": 1.2944983818770268 }, "rgb": [77, 76, 132] }, @@ -191976,23 +191976,23 @@ "year": 1765, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -0.5386571110047278, - "c2": 4.905809797808345, - "c3": -11.21685945658398, - "c4": 9.91658156408386, - "c5": 12.108519867632001, - "c6": -11.719851486517333, - "c7": 18.694959187039007 + "points": { + "c1": -6.507037044324633, + "c2": 19.68152187467071, + "c3": 4.352947835261897, + "c4": -18.261470158946352, + "c5": 6.76146200887808, + "c6": 16.392163700106924, + "c7": 25.399768964657948 }, - "vertexSeeds": { - "c1": 4.655536892214694, - "c2": 4.788624724407295, - "c3": 4.539616619945613, - "c4": 4.434330072796261, - "c5": 4.29428103694833, - "c6": 4.486200105551729, - "c7": 4.7100845453638795 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -192003,23 +192003,23 @@ "year": 1765, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 21.688410238519275, - "c2": 12.486952760234416, - "c3": 8.379435833326767, - "c4": 25.139649017090747, - "c5": 34.29662506350236, - "c6": 23.1263972516347, - "c7": -2.551345079802161 + "points": { + "c1": -20.390765528333414, + "c2": 11.801773890367173, + "c3": -29.78434317729441, + "c4": 38.54714173671525, + "c5": 10.581129565723089, + "c6": 9.913401731673588, + "c7": -8.483746659062064 }, - "vertexSeeds": { - "c1": 3.987222549549693, - "c2": 3.8018664743758475, - "c3": 3.673692715943359, - "c4": 4.056385959727358, - "c5": 3.854171537694205, - "c6": 4.176451191887973, - "c7": 3.8375176362368193 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [238, 201, 159] }, @@ -192030,23 +192030,23 @@ "year": 1765, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": 50.407636497246756, - "c2": 18.40197633762581, - "c3": 1.2068926940551705, - "c4": 9.892389632180553, - "c5": -48.362745366871145, - "c6": -4.735029586632386, - "c7": -32.024585589525394 + "points": { + "c1": -0.8121785953438234, + "c2": -4.363641771823957, + "c3": 22.24912606384372, + "c4": 20.168756044751746, + "c5": 30.508092042865925, + "c6": -36.88722475064144, + "c7": 1.4686518676263418 }, - "vertexSeeds": { - "c1": 5.751703712936607, - "c2": 5.771857978236632, - "c3": 5.7837139779739895, - "c4": 5.989278041950611, - "c5": 6.152176380072274, - "c6": 6.045347524154743, - "c7": 5.967112371141625 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434115, + "c3": 7.7207582061951054, + "c4": 6.1766065649560815, + "c5": 4.632454923717058, + "c6": 3.0883032824780328, + "c7": 1.5441516412390244 }, "rgb": [77, 76, 132] }, @@ -192057,23 +192057,23 @@ "year": 1765, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 45.39977582323583, - "c2": -38.04788335285681, - "c3": -15.225768568921833, - "c4": -44.1504739386744, - "c5": 9.895511822858552, - "c6": -2.9450947749234118, - "c7": -36.829407018563415 + "points": { + "c1": -48.54881144156449, + "c2": 10.966560297953613, + "c3": -45.33721738186331, + "c4": -23.447515466147006, + "c5": -13.399909512465321, + "c6": 31.268906802226255, + "c7": -24.71218940831821 }, - "vertexSeeds": { - "c1": 8.854236716045163, - "c2": 8.98979765164718, - "c3": 8.968278869684793, - "c4": 8.926549409844686, - "c5": 8.967035186521214, - "c6": 8.972878348204853, - "c7": 9.02146446658316 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743388, + "c3": 10.772075820619463, + "c4": 8.617660656495621, + "c5": 6.463245492371694, + "c6": 4.308830328247767, + "c7": 2.154415164123841 }, "rgb": [238, 201, 159] }, @@ -192084,23 +192084,23 @@ "year": 1765, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 25.094694198772537, - "c2": -21.375958977111818, - "c3": 10.74380081205527, - "c4": -15.934754913064733, - "c5": -33.2781167129297, - "c6": -24.788789969098083, - "c7": -1.5151037479762124 + "points": { + "c1": -26.200900544426325, + "c2": -16.93200859925974, + "c3": 0.8472083774161234, + "c4": 26.04224654787646, + "c5": -16.563136310634732, + "c6": 26.256323638832107, + "c7": 14.713435755065326 }, - "vertexSeeds": { - "c1": 5.7585389584131175, - "c2": 5.873289053740777, - "c3": 5.763988160746915, - "c4": 5.875627948655433, - "c5": 5.857826139477654, - "c6": 5.746848803682523, - "c7": 5.799507163131295 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227431, + "c3": 7.0272769301895615, + "c4": 5.621821544151621, + "c5": 4.216366158113751, + "c6": 2.8109107720758106, + "c7": 1.4054553860379404 }, "rgb": [238, 201, 159] }, @@ -192111,23 +192111,23 @@ "year": 1765, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": 33.71383022945672, - "c2": 41.43003889519029, - "c3": -49.90502952516234, - "c4": -4.4031455930416925, - "c5": 23.837759921649592, - "c6": 45.863095961850064, - "c7": -39.21293763007456 + "points": { + "c1": -43.504206056284445, + "c2": -11.987043698339953, + "c3": 36.6404714767597, + "c4": -29.660723392958612, + "c5": -7.3376432426518505, + "c6": 35.52537450950018, + "c7": -42.268703042033906 }, - "vertexSeeds": { - "c1": 4.123474355335535, - "c2": 3.9225711986295098, - "c3": 3.958483444517926, - "c4": 3.8872517291232973, - "c5": 3.949321877232561, - "c6": 4.00844517637935, - "c7": 4.004895307396311 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.21359223300971, + "c3": 5.177993527508087, + "c4": 4.142394822006471, + "c5": 3.106796116504855, + "c6": 2.0711974110032396, + "c7": 1.0355987055016156 }, "rgb": [238, 201, 159] }, @@ -192138,23 +192138,23 @@ "year": 1765, "resistanceReported": true, "duration": 34819200, - "curveSeeds": { - "c1": -13.001185641753978, - "c2": 46.53552250040269, - "c3": -36.46916568003526, - "c4": -33.89140953838589, - "c5": -44.35685420939746, - "c6": -40.566555415355595, - "c7": -19.270495812639616 + "points": { + "c1": 26.63433260023568, + "c2": 23.113762144972014, + "c3": -48.219287332493195, + "c4": -23.978920832642718, + "c5": 21.661386460567044, + "c6": -8.301180209216803, + "c7": 2.877980992388487 }, - "vertexSeeds": { - "c1": 5.245686745795876, - "c2": 5.064084178338994, - "c3": 5.148945500909579, - "c4": 5.2376842417095215, - "c5": 4.989721466923301, - "c6": 5.2363246960333045, - "c7": 5.070223656772078 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980587, + "c3": 6.310679611650495, + "c4": 5.048543689320402, + "c5": 3.786407766990278, + "c6": 2.5242718446601855, + "c7": 1.2621359223300928 }, "rgb": [222, 0, 59] }, @@ -192165,23 +192165,23 @@ "year": 1766, "resistanceReported": false, "duration": 47692800, - "curveSeeds": { - "c1": 30.957421013091185, - "c2": 61.85830014640867, - "c3": -44.31109524276164, - "c4": -25.96044651052037, - "c5": 47.35996112071155, - "c6": 4.692596202899615, - "c7": 5.1010862673521515 + "points": { + "c1": 60.576571348061236, + "c2": 2.806834930451771, + "c3": 4.469228490880951, + "c4": 16.870021873592478, + "c5": 61.77711412196042, + "c6": -39.564685728647646, + "c7": 20.148981094977927 }, - "vertexSeeds": { - "c1": 4.7352850972222695, - "c2": 4.344936757265717, - "c3": 4.425339635056846, - "c4": 4.571833674457108, - "c5": 4.38151189664728, - "c6": 4.397751501557295, - "c7": 4.465103995589857 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894587, + "c3": 5.686546463245493, + "c4": 4.549237170596391, + "c5": 3.411927877947298, + "c6": 2.2746185852981955, + "c7": 1.1373092926490935 }, "rgb": [222, 0, 59] }, @@ -192192,23 +192192,23 @@ "year": 1765, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 20.195317378785077, - "c2": 9.73528465295081, - "c3": -20.307412207737748, - "c4": -8.700593186681505, - "c5": -9.728477993452504, - "c6": -29.106784631695177, - "c7": -14.669591733478253 + "points": { + "c1": 31.127226243921058, + "c2": -20.569268065421873, + "c3": -28.70980694828082, + "c4": -2.569967352074599, + "c5": 29.932110980848307, + "c6": -32.416013840290844, + "c7": -2.1759613367256136 }, - "vertexSeeds": { - "c1": 5.461709966212382, - "c2": 5.865420413039204, - "c3": 5.447456270105338, - "c4": 5.717802395834697, - "c5": 5.473301134048759, - "c6": 5.853297475225623, - "c7": 5.727771373286548 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227455, + "c3": 7.0272769301895615, + "c4": 5.621821544151644, + "c5": 4.216366158113727, + "c6": 2.810910772075834, + "c7": 1.405455386037917 }, "rgb": [86, 146, 138] }, @@ -192219,23 +192219,23 @@ "year": 1765, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": -27.793253935580424, - "c2": -0.14566886324004003, - "c3": 9.823049758615262, - "c4": -7.574861025107971, - "c5": -39.75299512159325, - "c6": -0.6598762867008716, - "c7": 40.29960603246914 + "points": { + "c1": 18.727757859118185, + "c2": 39.39681581966762, + "c3": 42.876477716326974, + "c4": -38.38705837751338, + "c5": -37.1911486222358, + "c6": -17.316172218403857, + "c7": -34.33282316536112 }, - "vertexSeeds": { - "c1": 0.9958880035579831, - "c2": 0.9761272905893434, - "c3": 0.9406131023645129, - "c4": 0.9787379269699022, - "c5": 0.9541200975358188, - "c6": 0.9749569453511566, - "c7": 0.9627753398677698 + "offsets": { + "c1": 1.715210355987055, + "c2": 1.4701803051317617, + "c3": 1.2251502542764685, + "c4": 0.9801202034211752, + "c5": 0.735090152565882, + "c6": 0.49006010171058656, + "c7": 0.24503005085529533 }, "rgb": [238, 201, 159] }, @@ -192246,23 +192246,23 @@ "year": 1765, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -32.5631723392136, - "c2": -4.204054157673312, - "c3": 14.382715777150374, - "c4": -14.882973104590597, - "c5": -1.3443617706700053, - "c6": -9.555974608597335, - "c7": -0.9573540778807796 + "points": { + "c1": -3.738319428974357, + "c2": 4.211937224522984, + "c3": 2.977850797382203, + "c4": -36.67421189755284, + "c5": 22.001498197856066, + "c6": 29.575618538891646, + "c7": -26.794950768959197 }, - "vertexSeeds": { - "c1": 3.0677802458933066, - "c2": 3.175506343842053, - "c3": 3.105172061719404, - "c4": 2.96436110943523, - "c5": 3.1143574546728012, - "c6": 3.0756047309855736, - "c7": 3.0353507449574795 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -192273,23 +192273,23 @@ "year": 1765, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -19.463201584835115, - "c2": -11.179980595708102, - "c3": -30.254649294136975, - "c4": -25.39815719065153, - "c5": -5.694104786005163, - "c6": 11.353391462709752, - "c7": 18.447482683288385 + "points": { + "c1": 26.76358589335868, + "c2": -14.318250208101649, + "c3": 4.33170441810914, + "c4": 12.848981967961585, + "c5": -24.314491029485954, + "c6": 11.93666683209235, + "c7": -17.032498084615646 }, - "vertexSeeds": { - "c1": 3.718871549272509, - "c2": 3.863832913285913, - "c3": 3.5527667815526023, - "c4": 4.130779076747684, - "c5": 4.101778974365684, - "c6": 3.609934765675684, - "c7": 3.7441198019823734 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.1086453999075365, + "c4": 4.086916319926027, + "c5": 3.065187239944523, + "c6": 2.0434581599630137, + "c7": 1.0217290799815044 }, "rgb": [58, 15, 49] }, @@ -192300,23 +192300,23 @@ "year": 1765, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -2.4087423340837937, - "c2": -16.66448079827537, - "c3": 21.03957036750856, - "c4": 9.5727307731484, - "c5": 16.85293254080799, - "c6": -13.899018501936455, - "c7": -16.09418099751729 + "points": { + "c1": -0.9971921404892043, + "c2": 8.990690539762653, + "c3": 6.166736668767186, + "c4": 14.870603162214373, + "c5": -5.3633683594791535, + "c6": -12.461355178458552, + "c7": 20.57124116862269 }, - "vertexSeeds": { - "c1": 6.477713782281281, - "c2": 5.990149618276574, - "c3": 6.442349844710852, - "c4": 6.306471765844469, - "c5": 5.796191520876267, - "c6": 5.742229083585595, - "c7": 6.114891040862595 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -192327,23 +192327,23 @@ "year": 1765, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 21.011793632805094, - "c2": -30.94934337935673, - "c3": 47.23151597787812, - "c4": 17.440838083261653, - "c5": 48.977045385387626, - "c6": 16.820976362463497, - "c7": 25.335552742632814 + "points": { + "c1": 1.877714638995009, + "c2": -12.969481327056869, + "c3": -34.738299709506194, + "c4": 11.113255014280412, + "c5": 32.27743829327072, + "c6": -33.233277385898845, + "c7": -44.28194115568002 }, - "vertexSeeds": { - "c1": 3.2651909457770816, - "c2": 3.564169369057026, - "c3": 3.36505949297848, - "c4": 3.106539130062282, - "c5": 3.2337454337457525, - "c6": 3.5702189736004506, - "c7": 3.365669169966792 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722608, + "c3": 4.438280166435508, + "c4": 3.5506241331484025, + "c5": 2.6629680998613017, + "c6": 1.7753120665742013, + "c7": 0.8876560332871006 }, "rgb": [238, 201, 159] }, @@ -192354,23 +192354,23 @@ "year": 1765, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 0.002522611836063504, - "c2": 19.246772336625895, - "c3": -11.946430527944322, - "c4": 19.29382100025103, - "c5": 29.37213408795786, - "c6": 7.798319398677975, - "c7": 2.847749373265131 + "points": { + "c1": -39.84799380637923, + "c2": -12.721478683826483, + "c3": 15.744051061049845, + "c4": -7.507988157696232, + "c5": -3.1763663937402384, + "c6": 23.600814244000205, + "c7": 20.178706923805123 }, - "vertexSeeds": { - "c1": 4.572025016298276, - "c2": 5.268694154997967, - "c3": 4.752235719577877, - "c4": 4.87969855491131, - "c5": 5.508315289872174, - "c6": 5.185911321226601, - "c7": 5.315691435695359 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031903, + "c3": 7.489597780859914, + "c4": 5.9916782246879325, + "c5": 4.493758668515952, + "c6": 2.995839112343963, + "c7": 1.4979195561719816 }, "rgb": [58, 15, 49] }, @@ -192381,23 +192381,23 @@ "year": 1766, "resistanceReported": false, "duration": 55641600, - "curveSeeds": { - "c1": 52.032201887238, - "c2": 22.93759682974367, - "c3": 7.955468962290269, - "c4": -29.42703939881998, - "c5": -26.568374047092206, - "c6": -30.914888979666728, - "c7": -54.251531919072626 + "points": { + "c1": 42.661431125196245, + "c2": -48.44443434830691, + "c3": 4.055331254395597, + "c4": 67.70251956199098, + "c5": -49.40935750362749, + "c6": 56.28109482923142, + "c7": 61.095688739006675 }, - "vertexSeeds": { - "c1": 2.0167873975727413, - "c2": 1.4606263405484485, - "c3": 1.3143229129048835, - "c4": 1.4091046807848786, - "c5": 1.875986268256764, - "c6": 1.9329714924329826, - "c7": 1.8840840878491119 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.5427646786870084, + "c4": 2.0342117429496063, + "c5": 1.5256588072122046, + "c6": 1.0171058714748038, + "c7": 0.5085529357374008 }, "rgb": [222, 0, 59] }, @@ -192408,23 +192408,23 @@ "year": 1765, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": -27.524831122093325, - "c2": -8.262653054511965, - "c3": 6.499302613248098, - "c4": -0.06484489265064752, - "c5": 30.408554575864493, - "c6": -46.11490039529467, - "c7": -11.367793204792257 + "points": { + "c1": 1.6187357718211288, + "c2": 4.8859036614392295, + "c3": -43.28474985880496, + "c4": -20.722761417937555, + "c5": 45.85169027364517, + "c6": 4.68415804299859, + "c7": 49.630120472963974 }, - "vertexSeeds": { - "c1": 5.076585087868771, - "c2": 5.348137635572216, - "c3": 5.777711806910559, - "c4": 5.5599398676451575, - "c5": 5.573871988080795, - "c6": 5.585211190828482, - "c7": 5.52623938129926 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [77, 76, 132] }, @@ -192435,23 +192435,23 @@ "year": 1765, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 21.997008130937317, - "c2": 10.858265940619454, - "c3": -19.500031127277314, - "c4": -22.940421947634256, - "c5": 3.655297305832377, - "c6": 29.074844216304506, - "c7": 3.038429440916566 + "points": { + "c1": -15.610986091880374, + "c2": -0.5598899261865142, + "c3": 18.556958944183144, + "c4": 16.206137809100362, + "c5": 15.271125708504016, + "c6": 11.037706617236324, + "c7": -0.8910186470658203 }, - "vertexSeeds": { - "c1": 5.317456026350343, - "c2": 5.335241817767777, - "c3": 5.1589615992212785, - "c4": 5.248097441655066, - "c5": 5.368449185691496, - "c6": 5.211632058119232, - "c7": 5.154893995649546 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.8502080443828, + "c3": 6.541840036985666, + "c4": 5.233472029588531, + "c5": 3.925104022191396, + "c6": 2.6167360147942613, + "c7": 1.3083680073971267 }, "rgb": [58, 15, 49] }, @@ -192462,23 +192462,23 @@ "year": 1766, "resistanceReported": false, "duration": 44236800, - "curveSeeds": { - "c1": 49.58469809205503, - "c2": 8.851569328108958, - "c3": -27.96897580005898, - "c4": 22.340813710394535, - "c5": -9.944149008286999, - "c6": -8.49588540331058, - "c7": 31.254454418883846 + "points": { + "c1": -40.515904706851046, + "c2": 16.59160607475362, + "c3": 36.32917417629155, + "c4": 9.94686371508893, + "c5": 28.68028881854668, + "c6": 39.411130736653355, + "c7": -56.347824700147264 }, - "vertexSeeds": { - "c1": 10.163490911506571, - "c2": 8.731612957678996, - "c3": 8.915488207185067, - "c4": 9.728415594677736, - "c5": 9.319441785208568, - "c6": 8.946260204434038, - "c7": 8.759148505255597 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.67406380027739, + "c3": 12.228386500231155, + "c4": 9.782709200184923, + "c5": 7.3370319001387, + "c6": 4.891354600092466, + "c7": 2.445677300046233 }, "rgb": [86, 146, 138] }, @@ -192489,23 +192489,23 @@ "year": 1765, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": -28.382261481873275, - "c2": -52.448971895709036, - "c3": 31.665307760012652, - "c4": -41.16152824640341, - "c5": -3.4967719543598363, - "c6": -19.149514988003332, - "c7": 36.57718052666718 + "points": { + "c1": 0.6820608860256101, + "c2": 16.23844713096736, + "c3": -34.205613363396985, + "c4": -54.761353735615444, + "c5": -18.08885395156436, + "c6": -30.463185713289445, + "c7": -21.305977609505888 }, - "vertexSeeds": { - "c1": 3.8606877923366563, - "c2": 3.8495788336722985, - "c3": 3.854301146317097, - "c4": 3.856387342707113, - "c5": 3.8548495499154165, - "c6": 3.851660352192574, - "c7": 3.8475617149270316 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044409, + "c3": 4.623208506703705, + "c4": 3.6985668053630003, + "c5": 2.7739251040221125, + "c6": 1.8492834026814082, + "c7": 0.9246417013407041 }, "rgb": [77, 76, 132] }, @@ -192516,23 +192516,23 @@ "year": 1766, "resistanceReported": false, "duration": 47952000, - "curveSeeds": { - "c1": 25.5111506404698, - "c2": 60.43373338330607, - "c3": 36.40990791487079, - "c4": 8.265527841343918, - "c5": 16.103914900871153, - "c6": 28.983661552264202, - "c7": 1.509585517180362 + "points": { + "c1": 62.599336089297864, + "c2": -47.57944048393169, + "c3": -49.791348070998964, + "c4": 22.514273349701213, + "c5": -20.78360234507319, + "c6": -19.929762280347624, + "c7": 33.56945516287129 }, - "vertexSeeds": { - "c1": 4.976521386285007, - "c2": 5.169948765059684, - "c3": 4.97572297982198, - "c4": 5.251407654023861, - "c5": 4.915357713102424, - "c6": 5.328547124200452, - "c7": 4.97251701057839 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262138, + "c3": 6.472491909385116, + "c4": 5.177993527508095, + "c5": 3.883495145631073, + "c6": 2.5889967637540514, + "c7": 1.2944983818770217 }, "rgb": [86, 146, 138] }, @@ -192543,23 +192543,23 @@ "year": 1765, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 19.556069003250656, - "c2": 25.24405237257563, - "c3": 13.222171374770092, - "c4": 26.13404555843072, - "c5": -11.676718753775916, - "c6": 16.315931254403793, - "c7": -10.484708864034324 + "points": { + "c1": -9.437252778532592, + "c2": -20.18414359047019, + "c3": -17.674359397212644, + "c4": 21.329627828456147, + "c5": -17.268115231418307, + "c6": -21.90440300491536, + "c7": 18.312187618267473 }, - "vertexSeeds": { - "c1": 3.4436937839770625, - "c2": 3.561620871786576, - "c3": 3.4655500222447873, - "c4": 3.394481428503188, - "c5": 3.5498683568171034, - "c6": 3.396063355041131, - "c7": 3.360970103409898 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481275, + "c3": 4.299583911234393, + "c4": 3.439667128987512, + "c5": 2.5797503467406306, + "c6": 1.7198335644937626, + "c7": 0.8599167822468813 }, "rgb": [238, 201, 159] }, @@ -192570,23 +192570,23 @@ "year": 1765, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": 13.473354265916463, - "c2": -2.6364594995989066, - "c3": -0.23393625418772857, - "c4": -9.024712316542288, - "c5": 9.87245838686459, - "c6": 2.5691255967462467, - "c7": 13.103066142217578 + "points": { + "c1": -18.756253651192626, + "c2": 17.59462661539765, + "c3": 6.000192104940375, + "c4": 11.67658083413405, + "c5": -0.11525051032125333, + "c6": 13.865598155155247, + "c7": 7.277042268405605 }, - "vertexSeeds": { - "c1": 4.659395651569728, - "c2": 4.651381659458297, - "c3": 5.084755635758879, - "c4": 5.262703861750537, - "c5": 4.752739713207939, - "c6": 4.955580807320762, - "c7": 4.772535074625142 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980587, + "c3": 6.310679611650482, + "c4": 5.04854368932039, + "c5": 3.786407766990291, + "c6": 2.5242718446601917, + "c7": 1.262135922330099 }, "rgb": [77, 76, 132] }, @@ -192597,23 +192597,23 @@ "year": 1765, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -27.469875360262655, - "c2": -34.12653502406073, - "c3": -14.326844113613113, - "c4": 18.436275893742327, - "c5": 20.032235102464192, - "c6": 16.290954917932964, - "c7": -5.936944167256364 + "points": { + "c1": 11.179615803540038, + "c2": -0.6164284943489733, + "c3": 11.685058271519544, + "c4": 36.65686958222119, + "c5": -33.513823413435276, + "c6": 11.543516388234892, + "c7": -35.470824695789084 }, - "vertexSeeds": { - "c1": 7.523058596170268, - "c2": 7.362407163474301, - "c3": 7.431263466692105, - "c4": 7.427814216302653, - "c5": 7.353990650832453, - "c6": 7.387960937511591, - "c7": 7.49456109637925 + "offsets": { + "c1": 12.653721682847896, + "c2": 10.84604715672676, + "c3": 9.038372630605624, + "c4": 7.230698104484486, + "c5": 5.42302357836335, + "c6": 3.6153490522422733, + "c7": 1.8076745261211367 }, "rgb": [58, 15, 49] }, @@ -192624,23 +192624,23 @@ "year": 1765, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 39.05112778169136, - "c2": 28.40298533809792, - "c3": 7.437129756783769, - "c4": 14.075983584961207, - "c5": -21.354768150243007, - "c6": -19.295060506237817, - "c7": 35.792517646153684 + "points": { + "c1": -23.118092199316436, + "c2": -38.55367432585894, + "c3": -15.0048619029841, + "c4": -32.31189703142838, + "c5": -26.47258749491492, + "c6": -10.733208024883734, + "c7": 1.8803564952272183 }, - "vertexSeeds": { - "c1": 4.059775526652526, - "c2": 4.092271152872558, - "c3": 3.6583433243345294, - "c4": 4.203432501342592, - "c5": 4.160333337782509, - "c6": 4.1514374482219925, - "c7": 3.8190600053701784 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768375, + "c3": 5.039297272306982, + "c4": 4.031437817845583, + "c5": 3.0235783633841895, + "c6": 2.0157189089227914, + "c7": 1.0078594544613932 }, "rgb": [58, 15, 49] }, @@ -192651,23 +192651,23 @@ "year": 1765, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -21.44057495989101, - "c2": -26.445789518048194, - "c3": 4.809354444504706, - "c4": -17.98972258759715, - "c5": -26.57746288784206, - "c6": 17.15943369757396, - "c7": -2.7101192582810647 + "points": { + "c1": 5.863759239920299, + "c2": 29.085861009385333, + "c3": 22.223923275086065, + "c4": 17.837327122094365, + "c5": -6.057357865665985, + "c6": 28.03661694951748, + "c7": 23.164147703377566 }, - "vertexSeeds": { - "c1": 6.989644093688791, - "c2": 7.664984205470267, - "c3": 7.275384276039215, - "c4": 7.189609757405033, - "c5": 8.112215476808633, - "c6": 7.492550905676664, - "c7": 7.7354148951881845 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933424, + "c3": 9.731853906611189, + "c4": 7.78548312528895, + "c5": 5.839112343966712, + "c6": 3.892741562644475, + "c7": 1.9463707813222375 }, "rgb": [222, 0, 59] }, @@ -192678,23 +192678,23 @@ "year": 1765, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 28.58036153816854, - "c2": 5.173434675787512, - "c3": 7.9532074603489065, - "c4": 12.683624619954848, - "c5": -13.844865389358233, - "c6": -14.677786239681652, - "c7": 34.90708560215523 + "points": { + "c1": -21.679202492982746, + "c2": -4.037928628566149, + "c3": -50.1293240212993, + "c4": -31.74720303427526, + "c5": -9.159252417362211, + "c6": 34.90164483970057, + "c7": 23.476003920681528 }, - "vertexSeeds": { - "c1": 4.116269745939346, - "c2": 4.135255079866994, - "c3": 4.333051878296109, - "c4": 4.1086080129075615, - "c5": 4.251351604571376, - "c6": 4.166360455438103, - "c7": 4.212400715890542 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.0735090152565885, + "c3": 5.894590846047156, + "c4": 4.715672676837723, + "c5": 3.5367545076282916, + "c6": 2.357836338418859, + "c7": 1.1789181692094268 }, "rgb": [86, 146, 138] }, @@ -192705,23 +192705,23 @@ "year": 1765, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 15.917064748289867, - "c2": -5.704744716853412, - "c3": 31.59224110736575, - "c4": 21.01060563631949, - "c5": -28.761699797127207, - "c6": -33.19033730135774, - "c7": 13.188497423935999 + "points": { + "c1": 32.82365799896901, + "c2": -29.665881667331636, + "c3": -9.665730629099325, + "c4": 23.378063478624718, + "c5": -5.1752347809185935, + "c6": 16.43519113678009, + "c7": -31.65426121457989 }, - "vertexSeeds": { - "c1": 7.412833061441639, - "c2": 9.548776494879352, - "c3": 8.487111482469352, - "c4": 9.02497898903938, - "c5": 7.690672529400888, - "c6": 8.303131387641029, - "c7": 8.85954528553155 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151176, + "c3": 11.581137309292645, + "c4": 9.264909847434122, + "c5": 6.948682385575592, + "c6": 4.632454923717061, + "c7": 2.3162274618585306 }, "rgb": [86, 146, 138] }, @@ -192732,23 +192732,23 @@ "year": 1766, "resistanceReported": false, "duration": 55900800, - "curveSeeds": { - "c1": 35.26793146292256, - "c2": -27.573131273543332, - "c3": -39.4475498694969, - "c4": -61.514510510436395, - "c5": 3.2324940560440325, - "c6": 23.779206237062212, - "c7": 11.112410429341281 + "points": { + "c1": -63.327353737624286, + "c2": -6.510878082907723, + "c3": 60.33698494312131, + "c4": -70.41418651680209, + "c5": -73.21832946996314, + "c6": 32.37973739948916, + "c7": -29.447789780313123 }, - "vertexSeeds": { - "c1": 5.115462567324297, - "c2": 5.018659653221981, - "c3": 5.560159567956699, - "c4": 5.234950986335341, - "c5": 5.332329322109268, - "c6": 5.108114116130447, - "c7": 5.5913013908379 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055483, + "c4": 5.547850208044384, + "c5": 4.160887656033285, + "c6": 2.773925104022199, + "c7": 1.3869625520110995 }, "rgb": [58, 15, 49] }, @@ -192759,23 +192759,23 @@ "year": 1765, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -7.716369513136417, - "c2": -33.025507158028425, - "c3": -9.186291294173305, - "c4": -3.0782194037996646, - "c5": -13.705101637677345, - "c6": -36.96057156978674, - "c7": 1.084650628401242 + "points": { + "c1": -0.2939042462647734, + "c2": 0.2509450319159967, + "c3": -38.43473386361307, + "c4": -34.23096394285187, + "c5": 23.359173282353588, + "c6": -14.103318751482536, + "c7": 38.92205233059849 }, - "vertexSeeds": { - "c1": 3.968842292295005, - "c2": 3.9822173671419057, - "c3": 3.980482995256031, - "c4": 3.978813608490436, - "c5": 3.9726361511166317, - "c6": 3.9812763938579585, - "c7": 3.970579847266489 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285742, + "c3": 4.761904761904816, + "c4": 3.809523809523891, + "c5": 2.857142857142776, + "c6": 1.9047619047618507, + "c7": 0.9523809523809253 }, "rgb": [222, 0, 59] }, @@ -192786,23 +192786,23 @@ "year": 1765, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 24.813907056964467, - "c2": 7.708017792382215, - "c3": 19.270097733438014, - "c4": 29.24466953554238, - "c5": 26.74558986959537, - "c6": -29.905851333847437, - "c7": 11.829198631544102 + "points": { + "c1": -15.714015280299545, + "c2": 25.921848825393305, + "c3": 16.29520954189151, + "c4": 22.510526784044238, + "c5": -18.618219821418023, + "c6": 17.99270235562014, + "c7": -4.01014008477032 }, - "vertexSeeds": { - "c1": 1.890659359999091, - "c2": 1.8785592056737632, - "c3": 1.806604842330029, - "c4": 1.7984807216665741, - "c5": 1.938776758920317, - "c6": 1.7948881605350984, - "c7": 1.923377758457678 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624134, + "c3": 2.3347202958853446, + "c4": 1.8677762367082755, + "c5": 1.4008321775312067, + "c6": 0.9338881183541378, + "c7": 0.4669440591770689 }, "rgb": [86, 146, 138] }, @@ -192813,23 +192813,23 @@ "year": 1765, "resistanceReported": true, "duration": 33264000, - "curveSeeds": { - "c1": 19.28848285156601, - "c2": 20.785218832148352, - "c3": -10.428340307959374, - "c4": -7.14071178480431, - "c5": 15.63599487487641, - "c6": 32.997922630118474, - "c7": -17.04476630433575 + "points": { + "c1": -19.946048968092047, + "c2": 24.38346682031932, + "c3": 39.79438469828306, + "c4": 16.58011644134107, + "c5": 35.99922720521432, + "c6": -10.046260701139737, + "c7": 2.42834094149179 }, - "vertexSeeds": { - "c1": 2.639168592571844, - "c2": 2.5751386052640424, - "c3": 1.8744190048380145, - "c4": 2.0133429965086953, - "c5": 2.193977919398795, - "c6": 2.51980097226357, - "c7": 2.5370935215227624 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115123, + "c3": 3.2824780397595927, + "c4": 2.6259824318076745, + "c5": 1.9694868238557561, + "c6": 1.3129912159038364, + "c7": 0.6564956079519182 }, "rgb": [86, 146, 138] }, @@ -192840,23 +192840,23 @@ "year": 1765, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": -30.818788897759386, - "c2": -5.468764110574114, - "c3": 29.197092844268468, - "c4": 49.27992423234291, - "c5": 13.973274617661275, - "c6": -40.11015276837715, - "c7": 7.783570061031476 + "points": { + "c1": 18.224961794086155, + "c2": -51.419093477180546, + "c3": 34.89518405439652, + "c4": 7.284170977240272, + "c5": 36.19872547983074, + "c6": 39.153140481223616, + "c7": 25.48584469646346 }, - "vertexSeeds": { - "c1": 1.8350479782824658, - "c2": 1.7631953938721103, - "c3": 1.8341828908722577, - "c4": 1.9097468237748807, - "c5": 1.865152821628491, - "c6": 1.756415715473481, - "c7": 1.8186526310977806 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.77392510402219, + "c3": 2.3116042533518275, + "c4": 1.8492834026814613, + "c5": 1.386962552011095, + "c6": 0.9246417013407289, + "c7": 0.46232085067036627 }, "rgb": [86, 146, 138] }, @@ -192867,23 +192867,23 @@ "year": 1765, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 0.5232743506745123, - "c2": 30.098934428636092, - "c3": -29.239958446741152, - "c4": -34.027121683765436, - "c5": 10.420381323836068, - "c6": -5.6841805672533425, - "c7": -5.81929428135912 + "points": { + "c1": 14.022335406410143, + "c2": -24.31938236769156, + "c3": -32.28452380716541, + "c4": 29.204382235887643, + "c5": 29.693301479941304, + "c6": -30.01909879633964, + "c7": -3.7217822104328206 }, - "vertexSeeds": { - "c1": 3.621150177625692, - "c2": 3.5428189297503416, - "c3": 3.8457195434731455, - "c4": 3.923153513839762, - "c5": 3.7161723109002347, - "c6": 3.607969383225068, - "c7": 3.8462656733118585 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304204, + "c4": 3.7540453074433624, + "c5": 2.8155339805825275, + "c6": 1.8770226537216852, + "c7": 0.9385113268608426 }, "rgb": [58, 15, 49] }, @@ -192894,23 +192894,23 @@ "year": 1765, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -5.83362173792316, - "c2": 14.01125342915413, - "c3": -16.90776877573895, - "c4": 7.005400328740933, - "c5": -36.939331607371194, - "c6": -5.639198357547144, - "c7": -14.563290480994109 + "points": { + "c1": 34.35517099169937, + "c2": -18.049620786307877, + "c3": -1.0096581483195948, + "c4": -3.71944072311598, + "c5": 42.84903425623149, + "c6": 12.861246026438415, + "c7": -19.885317467477275 }, - "vertexSeeds": { - "c1": 6.840037652920605, - "c2": 6.514562683402304, - "c3": 6.4664093729096495, - "c4": 6.532164937966123, - "c5": 6.619431675205963, - "c6": 6.491953475693228, - "c7": 6.482071853851192 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.81969486823855, + "c3": 8.183079056865477, + "c4": 6.546463245492375, + "c5": 4.909847434119275, + "c6": 3.2732316227462017, + "c7": 1.6366158113731009 }, "rgb": [77, 76, 132] }, @@ -192921,23 +192921,23 @@ "year": 1766, "resistanceReported": false, "duration": 50716800, - "curveSeeds": { - "c1": -18.20624864351523, - "c2": -17.274301999994847, - "c3": -14.004624109870242, - "c4": 17.552606144416487, - "c5": -62.58414800528222, - "c6": 14.500014371864538, - "c7": 3.7685699521733085 + "points": { + "c1": -52.21182078908631, + "c2": 25.647320478941396, + "c3": -42.84516369779262, + "c4": -12.79954819064666, + "c5": -26.571218536304464, + "c6": -9.112036004127447, + "c7": -12.30988832824103 }, - "vertexSeeds": { - "c1": 0.6096927137232149, - "c2": 0.6490171440867336, - "c3": 0.6079558716401032, - "c4": 0.6050016067159916, - "c5": 0.5864194046966413, - "c6": 0.5832119792499716, - "c7": 0.6233661297155816 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.970873786407767, + "c3": 0.8090614886731392, + "c4": 0.6472491909385113, + "c5": 0.4854368932038835, + "c6": 0.32362459546925565, + "c7": 0.16181229773462782 }, "rgb": [222, 0, 59] }, @@ -192948,23 +192948,23 @@ "year": 1766, "resistanceReported": false, "duration": 50716800, - "curveSeeds": { - "c1": -0.2575330941619711, - "c2": -28.79671244451719, - "c3": -0.6671948497410654, - "c4": 31.415155253198265, - "c5": 21.218086383197928, - "c6": -40.119207174169404, - "c7": 47.66235391708908 + "points": { + "c1": -10.794469905664442, + "c2": 44.30559304020096, + "c3": 42.598321056075946, + "c4": 66.14554891108776, + "c5": 61.75046474694173, + "c6": -11.440947111006459, + "c7": 2.5990545852107942 }, - "vertexSeeds": { - "c1": 2.4499530159201224, - "c2": 2.2295420500228356, - "c3": 2.4360634927778313, - "c4": 2.3442932876206144, - "c5": 2.433948718422724, - "c6": 2.4299831932381077, - "c7": 2.4069833672671805 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484034, + "c3": 2.958853444290339, + "c4": 2.3670827554322704, + "c5": 1.7753120665742017, + "c6": 1.183541377716133, + "c7": 0.5917706888580688 }, "rgb": [238, 201, 159] }, @@ -192975,23 +192975,23 @@ "year": 1765, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 9.413414813161715, - "c2": 15.878912032336885, - "c3": 3.0895653564912138, - "c4": -5.7177966653273735, - "c5": -17.992023972132074, - "c6": 11.983543736608723, - "c7": 15.053728656273563 + "points": { + "c1": 6.165491383524689, + "c2": -3.481308335719323, + "c3": 19.731714511901195, + "c4": -0.9255046863401866, + "c5": 3.5128792247702805, + "c6": -12.185755151283333, + "c7": -9.432593562496772 }, - "vertexSeeds": { - "c1": 4.8015084827360095, - "c2": 4.7095192274961395, - "c3": 4.437424405778948, - "c4": 4.160716578633574, - "c5": 4.710531694982844, - "c6": 4.442455341473949, - "c7": 4.525325399771206 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -193002,23 +193002,23 @@ "year": 1765, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -29.845282072562345, - "c2": -1.9666823927177113, - "c3": 28.67108192358034, - "c4": 10.645511334010486, - "c5": -28.752592680340143, - "c6": -25.284825722192668, - "c7": 21.0293847314328 + "points": { + "c1": -23.981884251393762, + "c2": 15.465814276044803, + "c3": 22.19503788149826, + "c4": -26.866691557916738, + "c5": 8.014144699643907, + "c6": -31.556417448040225, + "c7": -24.501053052506805 }, - "vertexSeeds": { - "c1": 4.625684498482442, - "c2": 4.474267531979556, - "c3": 4.190373592211992, - "c4": 4.490384202857195, - "c5": 4.81179825718564, - "c6": 4.481288588962814, - "c7": 4.559737809985928 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -193029,23 +193029,23 @@ "year": 1765, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 24.268496373990388, - "c2": 21.367839481854304, - "c3": 34.813892516979905, - "c4": -22.24666165156421, - "c5": -8.590581763679733, - "c6": -10.142185929696328, - "c7": -5.175419706957314 + "points": { + "c1": -18.470479268009484, + "c2": -7.061466196775896, + "c3": 18.94386111763651, + "c4": -29.620136951624254, + "c5": -24.252744190905005, + "c6": 36.75560060118465, + "c7": -30.307963683582955 }, - "vertexSeeds": { - "c1": 2.4588325026848024, - "c2": 2.4566415693551176, - "c3": 2.5441255734872708, - "c4": 2.660375908688564, - "c5": 2.623784890456538, - "c6": 2.4394183233714744, - "c7": 2.5520686732626032 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712864, + "c3": 3.2593619972260757, + "c4": 2.6074895977808574, + "c5": 1.9556171983356472, + "c6": 1.3037447988904287, + "c7": 0.6518723994452144 }, "rgb": [86, 146, 138] }, @@ -193056,23 +193056,23 @@ "year": 1765, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 34.00167924136468, - "c2": 8.008452050956393, - "c3": 29.210304173373025, - "c4": -38.81030052633896, - "c5": -11.002931019667791, - "c6": 21.880233617591287, - "c7": -11.944436100914043 + "points": { + "c1": -29.00141338829037, + "c2": 24.702902702111793, + "c3": -1.3125588727116124, + "c4": -27.771156960580434, + "c5": -1.215155867754433, + "c6": 17.972429488441485, + "c7": -40.96090111876156 }, - "vertexSeeds": { - "c1": 3.9407727678646607, - "c2": 4.363328153596894, - "c3": 4.0413366251570135, - "c4": 3.9167926162254445, - "c5": 3.9119850455512934, - "c6": 4.021742732623638, - "c7": 4.132124018986726 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130374, + "c3": 5.247341655108645, + "c4": 4.197873324086916, + "c5": 3.148404993065187, + "c6": 2.098936662043458, + "c7": 1.049468331021729 }, "rgb": [86, 146, 138] }, @@ -193083,23 +193083,23 @@ "year": 1766, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": 28.560179789921406, - "c2": 35.896850851660176, - "c3": 14.595559666249699, - "c4": 49.822307351726124, - "c5": 32.19290416390483, - "c6": -20.238876781980814, - "c7": -19.745468343671675 + "points": { + "c1": -23.233915704060223, + "c2": -37.714823792057885, + "c3": 26.261664472388546, + "c4": -31.56598828984615, + "c5": 7.066783403254945, + "c6": 20.81689899156912, + "c7": 5.430018755182374 }, - "vertexSeeds": { - "c1": 5.625177745134273, - "c2": 5.548315959997996, - "c3": 5.3604285894882775, - "c4": 5.492275455984406, - "c5": 5.631544915673559, - "c6": 5.613883268701468, - "c7": 5.448889977417448 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905683, + "c3": 6.842348589921398, + "c4": 5.473878871937126, + "c5": 4.1054091539528415, + "c6": 2.736939435968556, + "c7": 1.3684697179842715 }, "rgb": [86, 146, 138] }, @@ -193110,23 +193110,23 @@ "year": 1765, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 3.968792736402129, - "c2": -30.972785410349335, - "c3": -19.83681886959841, - "c4": 4.792868292649757, - "c5": -22.576593656883926, - "c6": -13.981816038546665, - "c7": 13.046679010814799 + "points": { + "c1": 11.089005837890056, + "c2": -32.05096343389206, + "c3": -38.07568078690517, + "c4": 30.281084312619782, + "c5": -29.346761362386662, + "c6": 5.672781506318472, + "c7": 30.809923995514524 }, - "vertexSeeds": { - "c1": 3.692515706617926, - "c2": 3.707155473390155, - "c3": 3.433614015555109, - "c4": 3.447210934631787, - "c5": 3.5430662172906198, - "c6": 3.2921768098900257, - "c7": 3.580482384583428 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435504, + "c4": 3.5506241331484096, + "c5": 2.662968099861307, + "c6": 1.7753120665742048, + "c7": 0.8876560332871024 }, "rgb": [77, 76, 132] }, @@ -193137,23 +193137,23 @@ "year": 1765, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 10.562791728094759, - "c2": -28.405466539114528, - "c3": 32.62466128193027, - "c4": 32.165205454253524, - "c5": -5.1434795810617615, - "c6": -18.49404008486417, - "c7": 21.508549893043018 + "points": { + "c1": 29.33906539720735, + "c2": 25.57147427270756, + "c3": 3.573732076504527, + "c4": -23.57787896289362, + "c5": 29.36257271966511, + "c6": 25.5949536828822, + "c7": 14.283768540262265 }, - "vertexSeeds": { - "c1": 2.035517654956937, - "c2": 2.0180543420401094, - "c3": 2.0136955910839394, - "c4": 1.9088631697129481, - "c5": 1.9551170876666764, - "c6": 1.917189046368359, - "c7": 1.8850894991435294 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037453, + "c3": 2.473416551086455, + "c4": 1.978733240869165, + "c5": 1.4840499306518704, + "c6": 0.9893666204345803, + "c7": 0.4946833102172902 }, "rgb": [58, 15, 49] }, @@ -193164,23 +193164,23 @@ "year": 1766, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": 33.84484386413017, - "c2": 32.61718220977525, - "c3": -56.64755317521142, - "c4": 51.16528448995466, - "c5": -55.0317963750221, - "c6": -46.40589007506418, - "c7": -4.331389433829756 + "points": { + "c1": 7.403279912559114, + "c2": 54.109140958589165, + "c3": 49.89171569950281, + "c4": 35.844401841105594, + "c5": 61.29856765488368, + "c6": -23.51534132479008, + "c7": 23.46223444110602 }, - "vertexSeeds": { - "c1": 4.475860511302186, - "c2": 3.94543861803597, - "c3": 4.763358752325823, - "c4": 3.9355635669939013, - "c5": 4.083860061547495, - "c6": 4.272487739854327, - "c7": 3.9314855141589407 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044383, + "c3": 4.623208506703652, + "c4": 3.698566805362919, + "c5": 2.7739251040221897, + "c6": 1.8492834026814595, + "c7": 0.9246417013407298 }, "rgb": [77, 76, 132] }, @@ -193191,23 +193191,23 @@ "year": 1765, "resistanceReported": true, "duration": 31795200, - "curveSeeds": { - "c1": -16.4555512564114, - "c2": 38.030144220848925, - "c3": -19.90258505443189, - "c4": 15.499939503539267, - "c5": -19.18237863769186, - "c6": 36.23223744060981, - "c7": 16.733435978784343 + "points": { + "c1": 20.099317487320633, + "c2": 36.45141686399114, + "c3": -18.549296238633328, + "c4": -26.91676510095421, + "c5": 46.41183499893472, + "c6": -15.355535049296531, + "c7": -42.79664021274705 }, - "vertexSeeds": { - "c1": 2.9571466735596768, - "c2": 3.1496953800941747, - "c3": 3.073986519593114, - "c4": 3.029018727877146, - "c5": 3.1713045986338737, - "c6": 3.2542303104987456, - "c7": 2.986147162977246 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837723, + "c3": 3.9297272306980995, + "c4": 3.1437817845584846, + "c5": 2.3578363384188616, + "c6": 1.5718908922792383, + "c7": 0.785945446139615 }, "rgb": [77, 76, 132] }, @@ -193218,23 +193218,23 @@ "year": 1765, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -22.10045114362584, - "c2": 26.86462584404761, - "c3": -6.0326272502893445, - "c4": 17.65010603746849, - "c5": -6.560635022827711, - "c6": -34.80806606477187, - "c7": -27.292415026773277 + "points": { + "c1": 37.64822560813613, + "c2": -29.806780224997595, + "c3": 10.431827509282897, + "c4": -11.62403518368431, + "c5": -3.689180030426165, + "c6": -14.498448114505518, + "c7": -16.27890288035103 }, - "vertexSeeds": { - "c1": 1.8082318315648291, - "c2": 1.780152937733488, - "c3": 1.6266496422463512, - "c4": 1.819920028988047, - "c5": 1.6145295665715504, - "c6": 1.7673374350799884, - "c7": 1.5615756571013655 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210815, + "c3": 2.1960240406842355, + "c4": 1.7568192325473881, + "c5": 1.3176144244105408, + "c6": 0.8784096162736951, + "c7": 0.43920480813684754 }, "rgb": [238, 201, 159] }, @@ -193245,23 +193245,23 @@ "year": 1765, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 5.23494187158127, - "c2": 24.054287396769645, - "c3": 14.87797472676425, - "c4": -31.135512399424563, - "c5": -8.14642756502262, - "c6": 8.803716271628822, - "c7": 18.92421800445303 + "points": { + "c1": -42.245012188263914, + "c2": -41.251541098667246, + "c3": -37.214443385248174, + "c4": 10.072852352130866, + "c5": 44.24182320361954, + "c6": -37.945231464450714, + "c7": -38.543082462222706 }, - "vertexSeeds": { - "c1": 0.6272354833568503, - "c2": 0.6630094996526728, - "c3": 0.7460783611917875, - "c4": 0.6684222326045921, - "c5": 0.639506319190215, - "c6": 0.7725633573224246, - "c7": 0.6425502693646707 + "offsets": { + "c1": 1.3268608414239482, + "c2": 1.137309292649098, + "c3": 0.9477577438742487, + "c4": 0.7582061950993993, + "c5": 0.5686546463245492, + "c6": 0.379103097549699, + "c7": 0.18955154877484973 }, "rgb": [77, 76, 132] }, @@ -193272,23 +193272,23 @@ "year": 1766, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": -42.853315688602365, - "c2": 31.978756700407153, - "c3": 53.79558280974519, - "c4": -33.24424941823456, - "c5": -61.61898144762313, - "c6": -41.479407240367465, - "c7": -51.970658555865754 + "points": { + "c1": -54.96642046729216, + "c2": -31.927467057366115, + "c3": 38.576615755851584, + "c4": 16.830758125139816, + "c5": -51.57260195365127, + "c6": -58.8783505551585, + "c7": -50.904163215332574 }, - "vertexSeeds": { - "c1": 6.459524617057845, - "c2": 8.239631461204446, - "c3": 8.277171723331763, - "c4": 7.960162633658079, - "c5": 8.153040970511547, - "c6": 9.582895000942482, - "c7": 9.434410348609289 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.55802126675913, + "c4": 9.246417013407305, + "c5": 6.934812760055476, + "c6": 4.623208506703652, + "c7": 2.311604253351828 }, "rgb": [77, 76, 132] }, @@ -193299,23 +193299,23 @@ "year": 1765, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -43.007409597339496, - "c2": -43.59677528898359, - "c3": -13.14848552961034, - "c4": -6.444613334916262, - "c5": 31.85438456139972, - "c6": 34.30640555391688, - "c7": 24.836170737651393 + "points": { + "c1": -0.5698006833153642, + "c2": -39.98062597109993, + "c3": 6.157640980641929, + "c4": 39.46863876067743, + "c5": 9.686279148067165, + "c6": -32.119243213727785, + "c7": -37.80897827141009 }, - "vertexSeeds": { - "c1": 4.356951818192234, - "c2": 4.668245956257666, - "c3": 4.777687769478784, - "c4": 4.638216457859323, - "c5": 4.667799972532581, - "c6": 4.483924410619596, - "c7": 4.614316135862216 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975039, + "c3": 5.732778548312528, + "c4": 4.586222838650026, + "c5": 3.4396671289875154, + "c6": 2.293111419325013, + "c7": 1.1465557096625025 }, "rgb": [222, 0, 59] }, @@ -193326,23 +193326,23 @@ "year": 1765, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -18.65278108108869, - "c2": -3.1113419007550505, - "c3": -23.990616467334455, - "c4": -22.771456847516305, - "c5": 19.788899594824983, - "c6": -35.700019795816395, - "c7": -24.18093579082575 + "points": { + "c1": 52.29020390646998, + "c2": -16.659528703699287, + "c3": 44.89858620509551, + "c4": -32.827838626895485, + "c5": 41.99253717764877, + "c6": 31.512794278659143, + "c7": 44.68629919346027 }, - "vertexSeeds": { - "c1": 5.68362015533695, - "c2": 6.473409719683082, - "c3": 5.947103505891471, - "c4": 5.963299567295067, - "c5": 5.968100248293781, - "c6": 6.236890980030362, - "c7": 6.32428454373972 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996762, + "c4": 6.343042071197408, + "c5": 4.757281553398053, + "c6": 3.171521035598699, + "c7": 1.5857605177993441 }, "rgb": [222, 0, 59] }, @@ -193353,23 +193353,23 @@ "year": 1765, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 0.9649364212988729, - "c2": -5.0079954751149565, - "c3": 27.90045231415631, - "c4": -10.410311163879129, - "c5": -34.26059287994759, - "c6": 18.91018539262152, - "c7": 23.708987017237853 + "points": { + "c1": 23.518847218110068, + "c2": -34.10904013753517, + "c3": 4.558413935865389, + "c4": 20.699558483981853, + "c5": -11.62956739108813, + "c6": -27.681003229383364, + "c7": -33.31408037690325 }, - "vertexSeeds": { - "c1": 5.15580025969877, - "c2": 5.024888463068672, - "c3": 4.956470224148067, - "c4": 4.99579598602577, - "c5": 5.0212402530187825, - "c6": 5.047471747814705, - "c7": 4.945693251695152 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [238, 201, 159] }, @@ -193380,23 +193380,23 @@ "year": 1765, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -10.298951425946122, - "c2": -23.731562454462747, - "c3": 13.234071261314845, - "c4": -4.241853833015661, - "c5": 6.797947542481381, - "c6": 18.527287626151747, - "c7": -27.83751423614517 + "points": { + "c1": 4.74949993165788, + "c2": -34.77812735491074, + "c3": -5.139074451851975, + "c4": -18.015941261977467, + "c5": 20.40332944195314, + "c6": -18.339657964024425, + "c7": 5.0993980861499395 }, - "vertexSeeds": { - "c1": 10.666075892389236, - "c2": 10.258246698457068, - "c3": 11.48753467237107, - "c4": 11.743642422326888, - "c5": 10.533627755407272, - "c6": 10.850038572538484, - "c7": 9.996568758139816 + "offsets": { + "c1": 19.838187702265373, + "c2": 17.00416088765603, + "c3": 14.170134073046693, + "c4": 11.33610725843735, + "c5": 8.50208044382801, + "c6": 5.6680536292186705, + "c7": 2.8340268146093304 }, "rgb": [86, 146, 138] }, @@ -193407,23 +193407,23 @@ "year": 1767, "resistanceReported": false, "duration": 72144000, - "curveSeeds": { - "c1": -5.528174106929725, - "c2": 81.74731994408458, - "c3": 61.56578804385248, - "c4": 67.30227120746827, - "c5": -54.57672064910039, - "c6": 24.54845559910987, - "c7": -43.173479087521045 + "points": { + "c1": 68.75986410394546, + "c2": 22.22517434955509, + "c3": 10.343119075764577, + "c4": 12.954862068928591, + "c5": 11.410670059459903, + "c6": 28.30376425756738, + "c7": -79.24099662282651 }, - "vertexSeeds": { - "c1": 2.1593876248952624, - "c2": 2.3439861446106067, - "c3": 2.1605449622196105, - "c4": 2.2129046333649707, - "c5": 2.2561704300347563, - "c6": 2.335880872950126, - "c7": 2.441707402068791 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081815, + "c3": 2.9357374017568207, + "c4": 2.348589921405456, + "c5": 1.7614424410540908, + "c6": 1.1742949607027258, + "c7": 0.5871474803513649 }, "rgb": [58, 15, 49] }, @@ -193434,23 +193434,23 @@ "year": 1765, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": 16.432323402685757, - "c2": -10.78158206090426, - "c3": 0.3183782212218702, - "c4": -13.27600426781006, - "c5": 7.115355065027067, - "c6": 14.521347359122519, - "c7": 15.571517830675003 + "points": { + "c1": 12.432501750084509, + "c2": -12.246054420712591, + "c3": 16.063512319952533, + "c4": -19.357372609332725, + "c5": 4.920369490163441, + "c6": -5.684309919110618, + "c7": 16.203729256014835 }, - "vertexSeeds": { - "c1": 6.152568299664224, - "c2": 6.174814010575304, - "c3": 6.126731313728422, - "c4": 6.51341322065738, - "c5": 6.637376551145163, - "c6": 6.128540251590501, - "c7": 6.3986136908026126 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796128, + "c3": 7.928802588996761, + "c4": 6.343042071197418, + "c5": 4.757281553398052, + "c6": 3.171521035598709, + "c7": 1.5857605177993428 }, "rgb": [77, 76, 132] }, @@ -193461,23 +193461,23 @@ "year": 1766, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": -19.77023004293188, - "c2": 10.677150493893265, - "c3": 52.375494889973226, - "c4": -10.789460396684362, - "c5": 51.742719209954615, - "c6": -24.257774829305397, - "c7": 8.089635011754723 + "points": { + "c1": 51.22227231997019, + "c2": -49.60237204902333, + "c3": 35.54207553006488, + "c4": -11.669885560075542, + "c5": -39.757171285717305, + "c6": 27.529217403727515, + "c7": -2.7972955540446094 }, - "vertexSeeds": { - "c1": 4.622176109462923, - "c2": 4.689481142053563, - "c3": 4.340002266032202, - "c4": 4.206305742745792, - "c5": 4.640037430297726, - "c6": 4.442867816631173, - "c7": 4.705744251895581 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -193488,23 +193488,23 @@ "year": 1765, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 28.413387584275327, - "c2": -22.410598295043584, - "c3": 7.015702437659506, - "c4": 16.54649370686188, - "c5": -29.836136950835645, - "c6": 5.904276538373686, - "c7": -1.6332958159917155 + "points": { + "c1": 9.102964458426833, + "c2": 10.851817644856496, + "c3": 25.724636497248433, + "c4": 18.616444075776563, + "c5": 21.89349767513098, + "c6": -12.486011873474457, + "c7": 14.67133252162838 }, - "vertexSeeds": { - "c1": 4.900388045870602, - "c2": 5.555755523467392, - "c3": 4.761672055482309, - "c4": 5.341069655138222, - "c5": 5.2317746318974665, - "c6": 4.746797917312333, - "c7": 5.5431373323745 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883499, + "c5": 4.077669902912622, + "c6": 2.718446601941747, + "c7": 1.3592233009708707 }, "rgb": [86, 146, 138] }, @@ -193515,23 +193515,23 @@ "year": 1765, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 5.891946163665736, - "c2": -28.064720823630434, - "c3": -19.469838288505517, - "c4": 1.347893997780929, - "c5": -8.072629391730977, - "c6": -42.496549396830034, - "c7": 39.15368011923876 + "points": { + "c1": 13.901438935301535, + "c2": 32.294005011770096, + "c3": 40.50662183449697, + "c4": 26.259851880022282, + "c5": 23.6745066018608, + "c6": 21.592490976539793, + "c7": 30.04493906238862 }, - "vertexSeeds": { - "c1": 1.9498762509181728, - "c2": 2.0060063343724277, - "c3": 1.9370441912015237, - "c4": 1.8799109213124223, - "c5": 1.8975632349139229, - "c6": 1.9601530103969091, - "c7": 1.9329253848006178 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233015, + "c3": 2.4271844660194186, + "c4": 1.9417475728155356, + "c5": 1.4563106796116527, + "c6": 0.9708737864077658, + "c7": 0.4854368932038829 }, "rgb": [238, 201, 159] }, @@ -193542,23 +193542,23 @@ "year": 1765, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -12.636938916643032, - "c2": -9.926258538068787, - "c3": -37.844426210533264, - "c4": 33.64560332143266, - "c5": 40.529083619294084, - "c6": -20.600307858691572, - "c7": 37.52173922380699 + "points": { + "c1": 49.81066422548125, + "c2": -32.5633363855591, + "c3": -7.686069189265943, + "c4": 47.94414171564418, + "c5": 18.073551760277496, + "c6": -8.770987537049102, + "c7": 27.536282385902382 }, - "vertexSeeds": { - "c1": 4.985511471597759, - "c2": 4.800924332225648, - "c3": 5.120130830605368, - "c4": 4.452239789292491, - "c5": 4.7307685848015595, - "c6": 4.3902472973788065, - "c7": 4.563904075075929 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099818 }, "rgb": [58, 15, 49] }, @@ -193569,23 +193569,23 @@ "year": 1766, "resistanceReported": false, "duration": 44409600, - "curveSeeds": { - "c1": 48.19864103367298, - "c2": 25.93185064924773, - "c3": -49.46796955789589, - "c4": 51.413020939702314, - "c5": -4.989964561191243, - "c6": 55.41560118723658, - "c7": 31.640287963590517 + "points": { + "c1": 13.384188461291934, + "c2": 25.03465882021549, + "c3": 30.201031636581583, + "c4": 0.8824111689792602, + "c5": -9.936226637841628, + "c6": 56.21877021458855, + "c7": 33.448249950772215 }, - "vertexSeeds": { - "c1": 4.663040779491804, - "c2": 5.3483713864212055, - "c3": 5.118834827020402, - "c4": 4.47673237599007, - "c5": 4.699919056843765, - "c6": 5.095408362724039, - "c7": 5.429984217914879 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342584, + "c3": 6.518723994452148, + "c4": 5.214979195561722, + "c5": 3.911234396671287, + "c6": 2.607489597780861, + "c7": 1.3037447988904256 }, "rgb": [222, 0, 59] }, @@ -193596,23 +193596,23 @@ "year": 1765, "resistanceReported": false, "duration": 6912000, - "curveSeeds": { - "c1": 6.455968093366348, - "c2": 15.083990205236546, - "c3": 0.8618971224204124, - "c4": -15.022399827216656, - "c5": -15.506851232581175, - "c6": 13.38446224805475, - "c7": -0.2346831072015476 + "points": { + "c1": 18.907331202830726, + "c2": 9.903734384575351, + "c3": -3.370406084624083, + "c4": 11.676100967779842, + "c5": -1.9602881001823889, + "c6": 11.77512944040151, + "c7": -10.246299114168322 }, - "vertexSeeds": { - "c1": 2.6588955912115, - "c2": 2.6766439545859586, - "c3": 2.6710840333304544, - "c4": 2.6592998111685224, - "c5": 2.6601826320717623, - "c6": 2.663582963431727, - "c7": 2.6695747825248097 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310867, + "c3": 3.236245954692551, + "c4": 2.588996763754058, + "c5": 1.941747572815522, + "c6": 1.294498381877029, + "c7": 0.6472491909385358 }, "rgb": [77, 76, 132] }, @@ -193623,23 +193623,23 @@ "year": 1765, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 22.767569993978007, - "c2": -15.779476106945168, - "c3": -32.629418695388246, - "c4": -31.44446064727686, - "c5": 14.276099931040264, - "c6": 18.862127595495807, - "c7": 8.779798407718516 + "points": { + "c1": -34.240617119036166, + "c2": -10.889569887252158, + "c3": 37.65712927260431, + "c4": 20.528411448018105, + "c5": -8.249297575809777, + "c6": -35.15518166208251, + "c7": -10.871353421035604 }, - "vertexSeeds": { - "c1": 4.107117633782943, - "c2": 4.371516343479901, - "c3": 4.203580824092621, - "c4": 4.163154645156686, - "c5": 4.6196763516116635, - "c6": 4.31013561604432, - "c7": 4.329754132474776 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773928, + "c3": 5.617198335644938, + "c4": 4.493758668515947, + "c5": 3.370319001386964, + "c6": 2.2468793342579803, + "c7": 1.1234396671289901 }, "rgb": [238, 201, 159] }, @@ -193650,23 +193650,23 @@ "year": 1766, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": -15.586209233782931, - "c2": 15.922044004421991, - "c3": -14.112613842068967, - "c4": 21.590541611554244, - "c5": -19.37400699808407, - "c6": -48.79772286583075, - "c7": 28.89798555553928 + "points": { + "c1": 17.17797275220711, + "c2": -46.430586901515625, + "c3": -0.49663804337035344, + "c4": 53.850469023111685, + "c5": 18.760356985302863, + "c6": -24.63739284386553, + "c7": 32.078845071041 }, - "vertexSeeds": { - "c1": 5.9227521874667115, - "c2": 5.908602154283633, - "c3": 5.912215727863085, - "c4": 5.917331926539307, - "c5": 5.914012495434702, - "c6": 5.909704924133108, - "c7": 5.910199100026598 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307666, + "c3": 7.073509015256669, + "c4": 5.65880721220511, + "c5": 4.244105409154114, + "c6": 2.829403606102555, + "c7": 1.414701803051559 }, "rgb": [86, 146, 138] }, @@ -193677,23 +193677,23 @@ "year": 1765, "resistanceReported": false, "duration": 6912000, - "curveSeeds": { - "c1": 12.967477725054657, - "c2": -10.495472310122118, - "c3": -13.780959979281484, - "c4": -4.58001617160372, - "c5": 11.299367066953028, - "c6": -1.5148435324378848, - "c7": 13.409850023342166 + "points": { + "c1": -14.291657555974771, + "c2": 13.754890987407066, + "c3": -6.13450360888212, + "c4": -15.43181151196601, + "c5": -2.439380068849175, + "c6": 9.184916783251644, + "c7": 17.051011204099005 }, - "vertexSeeds": { - "c1": 5.702964200732981, - "c2": 5.8204257884645365, - "c3": 5.710477190286124, - "c4": 5.816325851490905, - "c5": 5.736962123682153, - "c6": 5.743337983641597, - "c7": 5.722890033081024 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825212, + "c3": 6.796116504854378, + "c4": 5.436893203883476, + "c5": 4.07766990291264, + "c6": 2.718446601941738, + "c7": 1.3592233009709027 }, "rgb": [222, 0, 59] }, @@ -193704,23 +193704,23 @@ "year": 1765, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -36.02683829758819, - "c2": -11.909025934715082, - "c3": -26.526941701771058, - "c4": -36.44838763335285, - "c5": -43.68859065927046, - "c6": 31.68463171002867, - "c7": -18.87116595158294 + "points": { + "c1": -1.939549026047004, + "c2": -35.94630316230962, + "c3": -38.76602618050825, + "c4": 0.9047957350687383, + "c5": 11.036479502020107, + "c6": -44.93812174063329, + "c7": -30.979952619943578 }, - "vertexSeeds": { - "c1": 7.259969082674108, - "c2": 8.146645312450387, - "c3": 7.964967535174589, - "c4": 7.896588937988658, - "c5": 7.382180549531716, - "c6": 8.256384300437345, - "c7": 7.18239177593785 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214985, + "c3": 9.893666204345815, + "c4": 7.914932963476657, + "c5": 5.936199722607485, + "c6": 3.9574664817383285, + "c7": 1.9787332408691707 }, "rgb": [238, 201, 159] }, @@ -193731,23 +193731,23 @@ "year": 1765, "resistanceReported": false, "duration": 6739200, - "curveSeeds": { - "c1": 14.755039621529573, - "c2": 1.5197966506610499, - "c3": 11.709578956102948, - "c4": -3.045202302026347, - "c5": -13.214549296882, - "c6": -1.03232403406491, - "c7": -16.171263393622006 + "points": { + "c1": -8.097423027739813, + "c2": 12.556183471544216, + "c3": 7.356185022623023, + "c4": 8.1713310345245, + "c5": -4.772364441392048, + "c6": 5.738373859868865, + "c7": 3.4624321979498767 }, - "vertexSeeds": { - "c1": 3.3372404865120973, - "c2": 3.387061916886948, - "c3": 3.2450460382710955, - "c4": 3.284613999367812, - "c5": 3.301480407008927, - "c6": 3.3473996182573846, - "c7": 3.298187826693641 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079063, + "c3": 4.068423485899225, + "c4": 3.254738788719369, + "c5": 2.4410540915395313, + "c6": 1.6273693943596936, + "c7": 0.8136846971798378 }, "rgb": [222, 0, 59] }, @@ -193758,23 +193758,23 @@ "year": 1766, "resistanceReported": false, "duration": 45705600, - "curveSeeds": { - "c1": -21.31801264069844, - "c2": 53.519137842519726, - "c3": 31.320989287406633, - "c4": -7.267371640222521, - "c5": 9.395029607240176, - "c6": 54.17065060971858, - "c7": 37.384984022621694 + "points": { + "c1": 48.990632757398714, + "c2": 60.30172445765224, + "c3": 21.676191037674442, + "c4": -18.469809503021892, + "c5": 7.889733092832316, + "c6": 17.860659985915603, + "c7": 24.225048154835065 }, - "vertexSeeds": { - "c1": 7.964392121486101, - "c2": 7.343080333164019, - "c3": 7.430483089300911, - "c4": 7.4096885875710745, - "c5": 7.816965633151693, - "c6": 7.203828707019243, - "c7": 7.390269903614624 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [86, 146, 138] }, @@ -193785,23 +193785,23 @@ "year": 1765, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": 14.411312499059978, - "c2": -14.448619116143329, - "c3": -1.1505277326159415, - "c4": 8.964737149597013, - "c5": -2.9512999533466875, - "c6": 4.93927702228331, - "c7": 20.625230841641635 + "points": { + "c1": -15.036488751367994, + "c2": 2.302702025241473, + "c3": -14.310160748671509, + "c4": 10.945447300505815, + "c5": -1.441599458203271, + "c6": -20.67770356101081, + "c7": -11.627405294978917 }, - "vertexSeeds": { - "c1": 3.6052738058211107, - "c2": 3.2722439034547888, - "c3": 3.4676860770325537, - "c4": 3.2320674874060966, - "c5": 3.6664012247013873, - "c6": 3.6241391630866557, - "c7": 3.3100325219654145 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636615, + "c3": 3.8141470180305115, + "c4": 3.051317614424413, + "c5": 2.2884882108183096, + "c6": 1.5256588072122066, + "c7": 0.7628294036061033 }, "rgb": [222, 0, 59] }, @@ -193812,23 +193812,23 @@ "year": 1765, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 6.595684904103344, - "c2": -4.872469950059411, - "c3": 36.05349522971599, - "c4": 36.50747074892682, - "c5": -26.473133983602096, - "c6": 28.442988706715028, - "c7": 17.71609373876128 + "points": { + "c1": -38.834343272684755, + "c2": 32.89670315780431, + "c3": 25.058403846992448, + "c4": 13.908278171322237, + "c5": -19.960519315182726, + "c6": -0.5548366858445561, + "c7": -29.740672461800667 }, - "vertexSeeds": { - "c1": 3.5023528288095895, - "c2": 3.506087272291889, - "c3": 2.9103272280791455, - "c4": 3.0372797041778137, - "c5": 3.391477645287931, - "c6": 3.046446618677621, - "c7": 3.3603235194217946 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.253351826167362, + "c4": 3.4026814609338887, + "c5": 2.5520110957004154, + "c6": 1.7013407304669421, + "c7": 0.8506703652334735 }, "rgb": [238, 201, 159] }, @@ -193839,23 +193839,23 @@ "year": 1766, "resistanceReported": false, "duration": 42336000, - "curveSeeds": { - "c1": -13.886175326291195, - "c2": -34.733348969660625, - "c3": 55.099655675150814, - "c4": 1.7338800085760298, - "c5": -41.05767011561029, - "c6": 25.153520225304078, - "c7": -20.398613771048737 + "points": { + "c1": -36.70059417678019, + "c2": 22.309888715278674, + "c3": -22.863699508181327, + "c4": -48.22671127066605, + "c5": -47.18494784494663, + "c6": 6.269099064934835, + "c7": -2.2639905015911665 }, - "vertexSeeds": { - "c1": 2.273844005383223, - "c2": 3.37509807043165, - "c3": 2.684073191418057, - "c4": 3.0219262443979207, - "c5": 4.210957014445282, - "c6": 3.4263192686361585, - "c7": 4.091472682764282 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385113, + "c4": 5.177993527508092, + "c5": 3.883495145631068, + "c6": 2.5889967637540447, + "c7": 1.2944983818770233 }, "rgb": [77, 76, 132] }, @@ -193866,23 +193866,23 @@ "year": 1765, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -5.231077741351108, - "c2": 1.4514927907252613, - "c3": 23.088780414925793, - "c4": -40.08444345981179, - "c5": -35.6538376994384, - "c6": 29.543783399787678, - "c7": -37.15520698340165 + "points": { + "c1": -40.7658614350098, + "c2": 41.095304223942044, + "c3": -7.254338101140796, + "c4": -3.024855795837162, + "c5": 39.35904606398555, + "c6": 24.554893194644713, + "c7": 6.376728650241297 }, - "vertexSeeds": { - "c1": 7.473214565594951, - "c2": 7.597331035855026, - "c3": 7.027083688716894, - "c4": 7.259117542499493, - "c5": 7.285474771620884, - "c6": 6.917420076438482, - "c7": 7.651074492211399 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008324, + "c3": 9.200184928340272, + "c4": 7.360147942672222, + "c5": 5.52011095700417, + "c6": 3.6800739713361184, + "c7": 1.8400369856680514 }, "rgb": [77, 76, 132] }, @@ -193893,23 +193893,23 @@ "year": 1765, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -20.690949161975315, - "c2": -34.9480584291068, - "c3": -3.2660080845501582, - "c4": -20.887798406144135, - "c5": -30.681764039529433, - "c6": 23.80855290578893, - "c7": -5.999672414068701 + "points": { + "c1": 36.50523159869475, + "c2": -29.10392161174331, + "c3": 17.835763702659932, + "c4": 8.829946165367424, + "c5": -10.06373230472682, + "c6": 1.162071425591357, + "c7": 19.37244100139378 }, - "vertexSeeds": { - "c1": 7.8493692837006614, - "c2": 7.915177948570033, - "c3": 7.856772711790615, - "c4": 7.961287197560214, - "c5": 8.044947700929969, - "c6": 8.046150824473944, - "c7": 7.917011270715876 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [238, 201, 159] }, @@ -193920,23 +193920,23 @@ "year": 1765, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 23.908998421227672, - "c2": 1.1819091567706081, - "c3": 26.058864399715986, - "c4": 29.74688851835502, - "c5": -8.54529145220176, - "c6": 30.837786385416806, - "c7": 34.959805437369525 + "points": { + "c1": 7.153368601233261, + "c2": 22.654347846949683, + "c3": -19.36180010833782, + "c4": -2.4491293372808514, + "c5": 2.9151462173138896, + "c6": 29.767096562400198, + "c7": -1.5300366511885528 }, - "vertexSeeds": { - "c1": 5.92154274068155, - "c2": 6.383358848901747, - "c3": 5.921474331219493, - "c4": 5.890179509641335, - "c5": 6.198834803493157, - "c6": 5.795065121157837, - "c7": 5.80303546275716 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353668, + "c3": 7.674526121128065, + "c4": 6.139620896902445, + "c5": 4.604715672676843, + "c6": 3.0698104484512223, + "c7": 1.5349052242256198 }, "rgb": [222, 0, 59] }, @@ -193947,23 +193947,23 @@ "year": 1765, "resistanceReported": false, "duration": 5702400, - "curveSeeds": { - "c1": -10.67093778407028, - "c2": 5.99739379978551, - "c3": 14.917006756079925, - "c4": -1.4436472018421007, - "c5": -3.40287477893815, - "c6": 1.3839985015136023, - "c7": 11.4971492966808 + "points": { + "c1": 13.144156249423382, + "c2": 6.463116327584217, + "c3": -17.30995144377755, + "c4": 1.8325955652877006, + "c5": -8.857909315306237, + "c6": -0.9712490742317641, + "c7": -15.816118353603994 }, - "vertexSeeds": { - "c1": 1.4355244292903757, - "c2": 1.3346499626265171, - "c3": 1.41351847126612, - "c4": 1.3675313178876571, - "c5": 1.4118462194139776, - "c6": 1.3429409771266125, - "c7": 1.2953831860475757 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166417, + "c3": 1.73370319001387, + "c4": 1.3869625520110944, + "c5": 1.040221914008323, + "c6": 0.6934812760055472, + "c7": 0.34674063800277577 }, "rgb": [77, 76, 132] }, @@ -193974,23 +193974,23 @@ "year": 1766, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": 45.77218187035663, - "c2": 20.072385278813172, - "c3": 27.146286414491655, - "c4": -12.828155567102066, - "c5": 22.9620178026111, - "c6": 12.855723927659668, - "c7": 25.744672200844008 + "points": { + "c1": -7.452736011078763, + "c2": -38.3371751842964, + "c3": 14.572211330875504, + "c4": 24.991353303649902, + "c5": 6.5485349995431505, + "c6": 16.70067050602188, + "c7": -19.395026679481376 }, - "vertexSeeds": { - "c1": 3.2293771769274198, - "c2": 3.164255411016503, - "c3": 3.3355222742043353, - "c4": 3.1187328734096265, - "c5": 3.149338146482707, - "c6": 3.397922959918005, - "c7": 3.2752784376966266 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280164, + "c3": 4.184003698566808, + "c4": 3.3472029588534453, + "c5": 2.510402219140082, + "c6": 1.6736014794267193, + "c7": 0.8368007397133629 }, "rgb": [58, 15, 49] }, @@ -194001,23 +194001,23 @@ "year": 1765, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -32.52779981904663, - "c2": -3.108545248150836, - "c3": -19.55168514625425, - "c4": -10.858756947433854, - "c5": -24.259583336763058, - "c6": 29.36588779561609, - "c7": -8.132177696443541 + "points": { + "c1": -12.56766451436917, + "c2": 20.554916709354657, + "c3": -3.0618643835341857, + "c4": 6.5818043660908785, + "c5": -25.566181311678896, + "c6": 11.167100300099577, + "c7": -8.68841690837317 }, - "vertexSeeds": { - "c1": 4.638242326138743, - "c2": 4.252032910183976, - "c3": 4.404804574705595, - "c4": 4.877562961033781, - "c5": 4.327123220819629, - "c6": 4.251065678049536, - "c7": 4.206935367367336 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216363, + "c3": 5.871474803513641, + "c4": 4.697179842810911, + "c5": 3.5228848821081815, + "c6": 2.348589921405452, + "c7": 1.1742949607027293 }, "rgb": [58, 15, 49] }, @@ -194028,23 +194028,23 @@ "year": 1765, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 5.798915253787467, - "c2": -6.3198770461088465, - "c3": -30.030759165604923, - "c4": 28.803443503591087, - "c5": 21.502456666000473, - "c6": 9.080784206188408, - "c7": 27.402831670686208 + "points": { + "c1": -16.63155355223339, + "c2": -3.042580979394934, + "c3": 8.081254402951778, + "c4": -32.03098046477405, + "c5": -10.998738149508991, + "c6": 28.810645459424926, + "c7": 22.273152276117365 }, - "vertexSeeds": { - "c1": 2.7426212101364764, - "c2": 2.6792093809880786, - "c3": 2.765703931562471, - "c4": 2.5791314417237357, - "c5": 2.577486241095989, - "c6": 2.793789576850786, - "c7": 2.554129663139255 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.3980582524271865, + "c4": 2.718446601941751, + "c5": 2.038834951456307, + "c6": 1.3592233009708714, + "c7": 0.6796116504854357 }, "rgb": [58, 15, 49] }, @@ -194055,23 +194055,23 @@ "year": 1765, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 14.546726844643, - "c2": -27.63486829959944, - "c3": -4.623901992448044, - "c4": -20.540522157263567, - "c5": 2.248985724969394, - "c6": 24.482721883721073, - "c7": -6.809634205602148 + "points": { + "c1": 21.693453782222438, + "c2": -14.409080652661114, + "c3": -28.03139080753518, + "c4": 21.709934064587213, + "c5": 21.506502908449686, + "c6": 0.7244594084882223, + "c7": 0.5775712368552064 }, - "vertexSeeds": { - "c1": 5.952582646047599, - "c2": 5.412405471733225, - "c3": 6.213869812391149, - "c4": 5.04219296253552, - "c5": 6.3168725498256, - "c6": 5.0869305929117985, - "c7": 4.210896003305861 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353677, + "c3": 7.6745261211280615, + "c4": 6.139620896902452, + "c5": 4.604715672676836, + "c6": 3.069810448451226, + "c7": 1.534905224225613 }, "rgb": [86, 146, 138] }, @@ -194082,23 +194082,23 @@ "year": 1765, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -22.135966122617237, - "c2": 16.655844372253995, - "c3": -36.70714151384686, - "c4": -24.12115055430359, - "c5": 22.65259164246411, - "c6": -25.695863657964196, - "c7": 15.70301241199175 + "points": { + "c1": 15.51291934116184, + "c2": 8.336716963212297, + "c3": -14.558901200441056, + "c4": 0.18830906417979065, + "c5": 18.52883080165541, + "c6": -32.62431716134182, + "c7": 18.078304718148452 }, - "vertexSeeds": { - "c1": 1.3695936401852487, - "c2": 1.4582085169764145, - "c3": 1.355215363014646, - "c4": 1.5850357124208003, - "c5": 1.4217123469425381, - "c6": 1.4210495392901827, - "c7": 1.4027611464255978 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [77, 76, 132] }, @@ -194109,23 +194109,23 @@ "year": 1766, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 4.685994269692863, - "c2": 36.063279922145604, - "c3": -32.66433058219491, - "c4": 29.692998440707022, - "c5": -9.01615052357247, - "c6": -22.06840273207385, - "c7": 46.17978284729953 + "points": { + "c1": -45.23406644790736, + "c2": -7.912752169018049, + "c3": -22.317161270780225, + "c4": -42.38186074667661, + "c5": -33.70651970756889, + "c6": -44.721929547580835, + "c7": 7.808695216781381 }, - "vertexSeeds": { - "c1": 6.6578494657291705, - "c2": 6.403076844102288, - "c3": 6.35625393405987, - "c4": 6.837110975823594, - "c5": 6.517018196768797, - "c6": 6.524350206391773, - "c7": 6.223281934826233 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479888, + "c3": 8.321775312066574, + "c4": 6.657420249653259, + "c5": 4.993065187239944, + "c6": 3.3287101248266295, + "c7": 1.6643550624133148 }, "rgb": [77, 76, 132] }, @@ -194136,23 +194136,23 @@ "year": 1765, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 10.585039143056107, - "c2": -18.647576443101627, - "c3": -21.633085358702303, - "c4": 6.560889514782055, - "c5": -28.960213041743685, - "c6": -17.302928818380956, - "c7": 4.5394536054419845 + "points": { + "c1": -33.098585478637055, + "c2": -11.298387114878754, + "c3": -30.919065522224734, + "c4": -10.89089681088858, + "c5": 12.349951228406269, + "c6": 23.296530284359477, + "c7": 0.11156093801508149 }, - "vertexSeeds": { - "c1": 6.038641837620146, - "c2": 5.814067749493925, - "c3": 5.792392378079179, - "c4": 6.009006738731342, - "c5": 5.5537566344696465, - "c6": 5.3881434050776535, - "c7": 5.452972132601673 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192324, + "c4": 5.899214054553863, + "c5": 4.4244105409153915, + "c6": 2.9496070272769317, + "c7": 1.4748035136384605 }, "rgb": [238, 201, 159] }, @@ -194163,23 +194163,23 @@ "year": 1765, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 29.75497463792265, - "c2": -3.8777602008845626, - "c3": 14.47746398749706, - "c4": -9.986006274845511, - "c5": 8.512583483500975, - "c6": -3.874401646131247, - "c7": 21.17105478793807 + "points": { + "c1": -21.42214607489278, + "c2": 17.811990810848556, + "c3": 29.900311678137022, + "c4": -8.155366541441992, + "c5": 23.866692994900774, + "c6": -32.53415817847319, + "c7": 15.986240123482098 }, - "vertexSeeds": { - "c1": 4.66622075723779, - "c2": 4.668860224498211, - "c3": 4.870763269929195, - "c4": 4.789919324761093, - "c5": 4.940178395125479, - "c6": 4.8962593642292696, - "c7": 4.798153395477165 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.1567267683772595, + "c3": 5.96393897364771, + "c4": 4.771151178918173, + "c5": 3.578363384188623, + "c6": 2.3855755894590867, + "c7": 1.1927877947295362 }, "rgb": [86, 146, 138] }, @@ -194190,23 +194190,23 @@ "year": 1765, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -15.858888567887131, - "c2": -33.87722674004402, - "c3": 24.24850408288124, - "c4": 19.848400773390637, - "c5": 7.141334902006911, - "c6": -15.627328988647424, - "c7": 26.890712654397774 + "points": { + "c1": 3.9730807578563088, + "c2": -30.70021558676745, + "c3": 11.860533704393305, + "c4": -24.57298696841972, + "c5": 2.6102913963210383, + "c6": -32.422759806354655, + "c7": 29.20911950485936 }, - "vertexSeeds": { - "c1": 4.876781323193417, - "c2": 4.719277887991416, - "c3": 5.058678488431139, - "c4": 5.059810919303474, - "c5": 4.738600686009615, - "c6": 4.938268643257407, - "c7": 4.989815889360909 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578366, + "c3": 6.079519186315308, + "c4": 4.863615349052241, + "c5": 3.647711511789183, + "c6": 2.4318076745261257, + "c7": 1.2159038372630575 }, "rgb": [86, 146, 138] }, @@ -194217,23 +194217,23 @@ "year": 1765, "resistanceReported": false, "duration": 3888000, - "curveSeeds": { - "c1": 0.33331538098274116, - "c2": 12.379836405992494, - "c3": 12.321968253794681, - "c4": 6.813876279830998, - "c5": -13.740820181222468, - "c6": 8.642849352397183, - "c7": -12.86292121289113 + "points": { + "c1": 13.031477423217886, + "c2": -8.848333690809937, + "c3": 15.668950130829444, + "c4": 4.591815934542247, + "c5": -9.776372259092653, + "c6": 0.5754433317887191, + "c7": -11.321950667042074 }, - "vertexSeeds": { - "c1": 2.663766947026464, - "c2": 2.655424571441825, - "c3": 2.7281951825217807, - "c4": 2.727093277904815, - "c5": 2.6889462916185694, - "c6": 2.6503325507153397, - "c7": 2.6773954897958836 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115043, + "c3": 3.2824780397596043, + "c4": 2.6259824318076785, + "c5": 1.9694868238557521, + "c6": 1.312991215903826, + "c7": 0.6564956079519261 }, "rgb": [77, 76, 132] }, @@ -194244,23 +194244,23 @@ "year": 1765, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 7.439151655748724, - "c2": -30.15020060273675, - "c3": -15.665262673368623, - "c4": -24.76589075465804, - "c5": 27.542003959309902, - "c6": -6.6211785138659565, - "c7": -20.68222274410304 + "points": { + "c1": -5.83437164708528, + "c2": -29.814234827806498, + "c3": 24.413631120487537, + "c4": 34.42610026817628, + "c5": -6.748014832506964, + "c6": 21.9705047725501, + "c7": -4.0481003148475665 }, - "vertexSeeds": { - "c1": 4.09116216815028, - "c2": 4.003258835731041, - "c3": 4.309927611876664, - "c4": 4.082754291531405, - "c5": 4.3286668037544676, - "c6": 4.020913327840731, - "c7": 4.294374077757103 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [238, 201, 159] }, @@ -194271,23 +194271,23 @@ "year": 1765, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -29.740747878179178, - "c2": 14.142167413659394, - "c3": 9.304828203804583, - "c4": -27.46532721629506, - "c5": -2.862670261653413, - "c6": -43.92043930118738, - "c7": 23.470050591397325 + "points": { + "c1": -10.182184796200275, + "c2": -28.27818150833867, + "c3": -5.542070904180001, + "c4": -0.6645951868359887, + "c5": 39.81914975499035, + "c6": -43.51073594126822, + "c7": 10.156155385884283 }, - "vertexSeeds": { - "c1": 10.733709767036663, - "c2": 10.940991033768114, - "c3": 10.89577571905284, - "c4": 9.799865103696467, - "c5": 9.740637882421108, - "c6": 10.606600423779435, - "c7": 10.074237928149008 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846063, + "c3": 13.129912159038373, + "c4": 10.503929727230714, + "c5": 7.877947295423024, + "c6": 5.251964863615364, + "c7": 2.6259824318076745 }, "rgb": [238, 201, 159] }, @@ -194298,23 +194298,23 @@ "year": 1765, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 6.304937140222428, - "c2": -14.650479413167119, - "c3": -13.471574572510999, - "c4": 3.6695561579862357, - "c5": 2.214189240312926, - "c6": -9.390880867257412, - "c7": 17.19242470953185 + "points": { + "c1": 20.89555358311773, + "c2": -13.994811217214433, + "c3": 28.626274155403188, + "c4": -33.40745279467032, + "c5": 27.976908501544727, + "c6": -13.801716478162778, + "c7": 17.461987992561724 }, - "vertexSeeds": { - "c1": 4.049685144138721, - "c2": 4.1284318704245795, - "c3": 4.371559915418818, - "c4": 4.188974955173026, - "c5": 4.127895276665213, - "c6": 4.626456023695447, - "c7": 4.083254908415093 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693482, + "c3": 5.570966250577904, + "c4": 4.456773000462317, + "c5": 3.342579750346738, + "c6": 2.2283865002311587, + "c7": 1.1141932501155793 }, "rgb": [77, 76, 132] }, @@ -194325,23 +194325,23 @@ "year": 1766, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -28.879690654927447, - "c2": -26.10773914800734, - "c3": -33.173214488289155, - "c4": -31.446026579571924, - "c5": -31.380695841033805, - "c6": 8.917199629727435, - "c7": 0.05596083560283205 + "points": { + "c1": -25.151610113108678, + "c2": -29.678155728736304, + "c3": -38.89345297687119, + "c4": 21.966901045263683, + "c5": -41.01067423676193, + "c6": -20.093272451357507, + "c7": 38.29514200308682 }, - "vertexSeeds": { - "c1": 5.733532534016822, - "c2": 5.738170518525574, - "c3": 5.607576073080692, - "c4": 5.829625930927115, - "c5": 5.863984526998678, - "c6": 5.465881632961077, - "c7": 5.270915393653373 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227458, + "c3": 7.027276930189559, + "c4": 5.6218215441516435, + "c5": 4.216366158113729, + "c6": 2.8109107720758297, + "c7": 1.4054553860379149 }, "rgb": [238, 201, 159] }, @@ -194352,23 +194352,23 @@ "year": 1765, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 21.504942590198773, - "c2": 3.1974451371865698, - "c3": 21.62562483213415, - "c4": 4.457138573599519, - "c5": 19.341935091701522, - "c6": 4.17679461433659, - "c7": -11.524279596929388 + "points": { + "c1": -18.882014497065715, + "c2": 22.07664367269502, + "c3": 20.080887353663044, + "c4": 2.227486689850881, + "c5": 4.745299587677916, + "c6": 22.542627778866567, + "c7": -22.27210394559907 }, - "vertexSeeds": { - "c1": 7.587600422457486, - "c2": 7.553102460401121, - "c3": 7.514269221003608, - "c4": 7.6142268973571845, - "c5": 7.714769716079935, - "c6": 7.4982873277403925, - "c7": 7.69285143178898 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.3971336107258425, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [222, 0, 59] }, @@ -194379,23 +194379,23 @@ "year": 1765, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": -7.950988599466314, - "c2": 18.054240069259812, - "c3": -16.65109549169555, - "c4": 34.731088050648516, - "c5": -29.07757183101837, - "c6": 31.385574118282697, - "c7": 41.358953295966096 + "points": { + "c1": 31.60675785822699, + "c2": 6.945092684364127, + "c3": 28.356118550106963, + "c4": 43.68909586699419, + "c5": -46.6290053873139, + "c6": -47.20798570335096, + "c7": -18.340866987504135 }, - "vertexSeeds": { - "c1": 5.6745560079672925, - "c2": 5.882117022281868, - "c3": 5.925530635147998, - "c4": 6.758146450361467, - "c5": 6.587887486797332, - "c6": 5.90761296775775, - "c7": 5.606785203434405 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318999, + "c3": 8.229311141932504, + "c4": 6.583448913545999, + "c5": 4.937586685159503, + "c6": 3.2917244567729993, + "c7": 1.6458622283865039 }, "rgb": [86, 146, 138] }, @@ -194406,23 +194406,23 @@ "year": 1766, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": 14.797577224198328, - "c2": -23.358260237568707, - "c3": 41.930279134897056, - "c4": -12.308027158052148, - "c5": -22.69362985052507, - "c6": -40.44425558037996, - "c7": 53.95453234586213 + "points": { + "c1": -47.857432111582455, + "c2": -39.036894807996376, + "c3": 51.62269785625082, + "c4": 1.109718512649735, + "c5": 13.442852963215707, + "c6": -60.20397307800343, + "c7": -0.8897407936552355 }, - "vertexSeeds": { - "c1": 6.138262968596212, - "c2": 5.632790600838396, - "c3": 6.0239863372798705, - "c4": 5.7985714232304675, - "c5": 5.996320692015473, - "c6": 5.807851228849463, - "c7": 5.930533031392295 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.01525658807212, + "c3": 7.512713823393431, + "c4": 6.010171058714755, + "c5": 4.507628294036066, + "c6": 3.0050855293573777, + "c7": 1.5025427646786889 }, "rgb": [238, 201, 159] }, @@ -194433,23 +194433,23 @@ "year": 1765, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -18.719850326282277, - "c2": 38.52517366138431, - "c3": 18.234653515801533, - "c4": -30.196907551749128, - "c5": 10.7200323365659, - "c6": 14.999881394875231, - "c7": 23.202226547546097 + "points": { + "c1": 1.0861414202274347, + "c2": 11.659925307119174, + "c3": -27.6650614188708, + "c4": -34.826537564377, + "c5": 26.01578092396533, + "c6": -4.232049229806428, + "c7": 41.86204218043755 }, - "vertexSeeds": { - "c1": 1.404410342607206, - "c2": 1.4528258669145613, - "c3": 1.4323184000343205, - "c4": 1.4591107822134313, - "c5": 1.4442835173298203, - "c6": 1.398561460807367, - "c7": 1.38409305030272 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097086, + "c3": 1.7799352750809079, + "c4": 1.4239482200647253, + "c5": 1.067961165048543, + "c6": 0.7119741100323648, + "c7": 0.3559870550161824 }, "rgb": [238, 201, 159] }, @@ -194460,23 +194460,23 @@ "year": 1766, "resistanceReported": false, "duration": 48211200, - "curveSeeds": { - "c1": -42.643979592705705, - "c2": -41.67715969102393, - "c3": -33.80407657762401, - "c4": -33.065770765517826, - "c5": 36.41160068307704, - "c6": -39.16804430072799, - "c7": -55.67442914317909 + "points": { + "c1": -15.071265634429643, + "c2": 42.191344053777385, + "c3": -54.010842342190955, + "c4": -25.954648575983022, + "c5": 39.9661324718508, + "c6": 56.654397642049815, + "c7": 14.447677946759256 }, - "vertexSeeds": { - "c1": 0.7319615845304993, - "c2": 0.7821003342206791, - "c3": 0.7059946108184405, - "c4": 0.7985172963082733, - "c5": 0.7288582581449212, - "c6": 0.735617737466799, - "c7": 0.7568032584229197 + "offsets": { + "c1": 1.423948220064725, + "c2": 1.2205270457697643, + "c3": 1.0171058714748036, + "c4": 0.8136846971798428, + "c5": 0.6102635228848822, + "c6": 0.4068423485899214, + "c7": 0.2034211742949607 }, "rgb": [86, 146, 138] }, @@ -194487,23 +194487,23 @@ "year": 1765, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -6.632080452530289, - "c2": -6.472198641350062, - "c3": 40.213971031021075, - "c4": 37.11249742137572, - "c5": 14.131898086962728, - "c6": -2.977264807210325, - "c7": -8.12052686794273 + "points": { + "c1": -13.693468126292572, + "c2": -1.3049837035279808, + "c3": 22.585179515061498, + "c4": 14.655132091398919, + "c5": -8.660411961170773, + "c6": 8.622320326138407, + "c7": -23.883983323163918 }, - "vertexSeeds": { - "c1": 2.4716070448966074, - "c2": 2.269087538764873, - "c3": 2.1772467166247407, - "c4": 2.4645959021063897, - "c5": 2.508440671094339, - "c6": 2.456545915705044, - "c7": 2.4029430021865683 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550621, + "c3": 3.19001386962552, + "c4": 2.552011095700416, + "c5": 1.9140083217753119, + "c6": 1.276005547850208, + "c7": 0.638002773925104 }, "rgb": [86, 146, 138] }, @@ -194514,23 +194514,23 @@ "year": 1765, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -17.600711980327286, - "c2": -38.15803750694546, - "c3": 1.0383892411143805, - "c4": 23.89818564579364, - "c5": 43.82809035832175, - "c6": -11.166578587524214, - "c7": -42.92173132609913 + "points": { + "c1": 18.711733822049588, + "c2": -13.65435521035456, + "c3": -2.931592838091369, + "c4": -41.20537382408072, + "c5": -4.613451955481288, + "c6": 13.693569789998982, + "c7": -8.027603728537677 }, - "vertexSeeds": { - "c1": 7.9404984294610985, - "c2": 7.138955551076727, - "c3": 7.376797142339355, - "c4": 7.312810632637553, - "c5": 7.516044212174288, - "c6": 7.669607047399919, - "c7": 7.5855045962196295 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490983, + "c3": 9.477577438742482, + "c4": 7.5820619509939995, + "c5": 5.6865464632455, + "c6": 3.7910309754969997, + "c7": 1.8955154877484999 }, "rgb": [222, 0, 59] }, @@ -194541,23 +194541,23 @@ "year": 1765, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 34.835950987038444, - "c2": 6.064657914489153, - "c3": 9.556843963212408, - "c4": 5.233004160528296, - "c5": 29.390886578149306, - "c6": 12.781848391611469, - "c7": -31.787867140288363 + "points": { + "c1": -12.38943820894331, + "c2": -33.36271288627454, + "c3": 4.6186443541502555, + "c4": 36.39921121537115, + "c5": 32.58974986339402, + "c6": 39.12455645096203, + "c7": 6.884527718936575 }, - "vertexSeeds": { - "c1": 1.9641412024140967, - "c2": 2.3051746732144327, - "c3": 2.351078385127483, - "c4": 2.1748924957096114, - "c5": 2.1411228319593416, - "c6": 2.2508308349860435, - "c7": 2.2189105543599776 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779472952, + "c3": 2.8432732316227463, + "c4": 2.274618585298197, + "c5": 1.7059639389736476, + "c6": 1.1373092926490984, + "c7": 0.5686546463245492 }, "rgb": [86, 146, 138] }, @@ -194568,23 +194568,23 @@ "year": 1765, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -14.578290872220585, - "c2": -28.45016944940367, - "c3": 21.290472583627363, - "c4": -31.7019058308113, - "c5": -21.64069304464522, - "c6": 15.768518781351574, - "c7": -17.347565734455618 + "points": { + "c1": -24.81646334157453, + "c2": -28.937968263808784, + "c3": 33.42987572446377, + "c4": 36.25814119399426, + "c5": 14.296585887132757, + "c6": -27.809851102906052, + "c7": 23.616179249641604 }, - "vertexSeeds": { - "c1": 3.9166589517860726, - "c2": 3.32482971325032, - "c3": 3.7595227909248985, - "c4": 3.2559151304604566, - "c5": 3.8418850151396025, - "c6": 3.820616142049203, - "c7": 3.3828382074991072 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.7142857142857135, + "c3": 4.7619047619047645, + "c4": 3.80952380952381, + "c5": 2.8571428571428568, + "c6": 1.9047619047619029, + "c7": 0.9523809523809539 }, "rgb": [238, 201, 159] }, @@ -194595,23 +194595,23 @@ "year": 1765, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 15.397595890023652, - "c2": 13.064977282365412, - "c3": -9.871251639528186, - "c4": 27.22448971170528, - "c5": -13.58741185849245, - "c6": -6.554828029608551, - "c7": -3.7626703567211734 + "points": { + "c1": -28.939640290992845, + "c2": -17.413416658317878, + "c3": 12.116155267634568, + "c4": -31.07771027841305, + "c5": 9.437293204125695, + "c6": 12.084820012270697, + "c7": 21.815043936729033 }, - "vertexSeeds": { - "c1": 3.4907295900228745, - "c2": 3.4862236997002825, - "c3": 3.479649139341866, - "c4": 3.4916430282631925, - "c5": 3.493375141408307, - "c6": 3.503068669791197, - "c7": 3.5160176412550608 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320412, + "c3": 4.207119741100287, + "c4": 3.365695792880247, + "c5": 2.524271844660206, + "c6": 1.6828478964401652, + "c7": 0.8414239482200407 }, "rgb": [222, 0, 59] }, @@ -194622,23 +194622,23 @@ "year": 1766, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": 40.29623765066262, - "c2": -16.197561270520993, - "c3": 45.47072373704256, - "c4": -51.1920744443942, - "c5": 35.35810354666137, - "c6": -40.14695726043853, - "c7": 35.84669286785625 + "points": { + "c1": -17.927635275034135, + "c2": -54.45274584187206, + "c3": -17.70929458328056, + "c4": 26.95135142274556, + "c5": 22.539977363168717, + "c6": -36.16053396819194, + "c7": -23.129211061830702 }, - "vertexSeeds": { - "c1": 4.793754563658172, - "c2": 5.064965219481731, - "c3": 4.871041410430314, - "c4": 5.3636136255546925, - "c5": 4.728910054141764, - "c6": 4.772054412422244, - "c7": 5.148944597918747 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883499, + "c5": 4.077669902912622, + "c6": 2.718446601941747, + "c7": 1.3592233009708707 }, "rgb": [58, 15, 49] }, @@ -194649,23 +194649,23 @@ "year": 1766, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -16.812316779479243, - "c2": 1.5038625819032987, - "c3": -9.190201237662954, - "c4": 31.83516651427169, - "c5": -42.824345025036884, - "c6": 39.57915144339424, - "c7": 27.050676959552305 + "points": { + "c1": 16.187779357755232, + "c2": -29.559565886448766, + "c3": 49.31739243089228, + "c4": -5.80696598949109, + "c5": -35.81965430064551, + "c6": 22.87729941700981, + "c7": -29.843374076292484 }, - "vertexSeeds": { - "c1": 2.0333266931489122, - "c2": 1.8882324949345108, - "c3": 2.0449892846601365, - "c4": 1.9011043751117798, - "c5": 1.9093881284353706, - "c6": 1.9343787415290903, - "c7": 1.930250760283474 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.023578363384187, + "c3": 2.519648636153492, + "c4": 2.0157189089227927, + "c5": 1.5117891816920934, + "c6": 1.0078594544613988, + "c7": 0.5039297272306994 }, "rgb": [58, 15, 49] }, @@ -194676,23 +194676,23 @@ "year": 1765, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 13.221294391983626, - "c2": 6.516205997987072, - "c3": 5.305006766314165, - "c4": 2.9020729765985536, - "c5": 2.9455926026387473, - "c6": 17.63821233522068, - "c7": 38.935511151717094 + "points": { + "c1": 13.738221828435236, + "c2": -14.41226040509521, + "c3": -27.0998320236845, + "c4": 44.516098644552, + "c5": 41.41918391537111, + "c6": 42.48452615910685, + "c7": -34.13113117038158 }, - "vertexSeeds": { - "c1": 0.4099895633848161, - "c2": 0.3894554751476365, - "c3": 0.4088190664329486, - "c4": 0.3992317825784644, - "c5": 0.38077764705211403, - "c6": 0.4119960580646097, - "c7": 0.4150538683180482 + "offsets": { + "c1": 0.7443365695792881, + "c2": 0.6380027739251037, + "c3": 0.5316689782709195, + "c4": 0.4253351826167362, + "c5": 0.31900138696255187, + "c6": 0.21266759130836763, + "c7": 0.10633379565418426 }, "rgb": [77, 76, 132] }, @@ -194703,23 +194703,23 @@ "year": 1766, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": 18.392949588589815, - "c2": 16.915433127335362, - "c3": 21.69349795408378, - "c4": 24.23294016946555, - "c5": 38.802387200631685, - "c6": -25.986647111683947, - "c7": 10.90074243350763 + "points": { + "c1": 39.12345928352735, + "c2": -0.8714732360534754, + "c3": -15.902810129174412, + "c4": 29.041595263819175, + "c5": -41.06342927231002, + "c6": 38.10014710505749, + "c7": -43.66669735475129 }, - "vertexSeeds": { - "c1": 5.198665983311143, - "c2": 5.495407383062104, - "c3": 5.170156741611985, - "c4": 5.354593028766775, - "c5": 5.375946362023092, - "c6": 5.4791751398107635, - "c7": 5.5336814277974575 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [222, 0, 59] }, @@ -194730,23 +194730,23 @@ "year": 1765, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 10.861339946137214, - "c2": 25.01166347774067, - "c3": 7.805657826184174, - "c4": 17.892546419399395, - "c5": 30.44790194376494, - "c6": 5.1438325734868116, - "c7": 36.632102585139656 + "points": { + "c1": 28.37736264853438, + "c2": 10.302686281309256, + "c3": -29.432366803787357, + "c4": 28.443658758111276, + "c5": -27.603683970392446, + "c6": -1.968740150008074, + "c7": -12.91866401202904 }, - "vertexSeeds": { - "c1": 1.379182786510552, - "c2": 1.4335947759049705, - "c3": 1.3759996636414433, - "c4": 1.3378771743432365, - "c5": 1.3845780520234927, - "c6": 1.3480701219286013, - "c7": 1.414876717503752 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166444, + "c3": 1.733703190013869, + "c4": 1.3869625520110966, + "c5": 1.0402219140083209, + "c6": 0.6934812760055483, + "c7": 0.3467406380027757 }, "rgb": [86, 146, 138] }, @@ -194757,23 +194757,23 @@ "year": 1766, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": 31.582062394800296, - "c2": 33.218953731454725, - "c3": 49.13247086503208, - "c4": -1.7721419652556918, - "c5": 6.703642800144152, - "c6": -23.71916580317959, - "c7": -16.966501768254325 + "points": { + "c1": -19.190004365139714, + "c2": 39.635671520572906, + "c3": -26.074330224297476, + "c4": -19.775890931019102, + "c5": -39.682752938223665, + "c6": -10.35482802079867, + "c7": -12.270581702897957 }, - "vertexSeeds": { - "c1": 4.406598372845727, - "c2": 4.374139076048433, - "c3": 4.350054066117176, - "c4": 4.262518635571035, - "c5": 4.290067680047571, - "c6": 4.306007093747687, - "c7": 4.369446987431366 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.3245492371706, + "c3": 5.270457697642171, + "c4": 4.2163661581137415, + "c5": 3.162274618585313, + "c6": 2.108183079056858, + "c7": 1.054091539528429 }, "rgb": [77, 76, 132] }, @@ -194784,23 +194784,23 @@ "year": 1765, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -33.91113895182644, - "c2": -31.833135884372147, - "c3": -10.526202498386471, - "c4": -31.600297715888978, - "c5": 1.1171493778304153, - "c6": -1.7866114889510172, - "c7": -34.688256306866144 + "points": { + "c1": 33.2108355299806, + "c2": 22.268304927112496, + "c3": 31.672771184297716, + "c4": -27.48971488485351, + "c5": -2.86761117785489, + "c6": -14.19280684894408, + "c7": 20.808501050350884 }, - "vertexSeeds": { - "c1": 7.224744672807923, - "c2": 7.005790098562191, - "c3": 6.883999734590158, - "c4": 7.10991538778232, - "c5": 7.3654012779254305, - "c6": 7.105632463076813, - "c7": 7.085594811248467 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324559, + "c3": 8.807212205270456, + "c4": 7.045769764216373, + "c5": 5.28432732316227, + "c6": 3.5228848821081864, + "c7": 1.7614424410540825 }, "rgb": [77, 76, 132] }, @@ -194811,23 +194811,23 @@ "year": 1765, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -43.571837181344925, - "c2": -18.6489355730695, - "c3": 26.805575350682652, - "c4": 9.00725389527566, - "c5": -22.484209028710943, - "c6": 37.48731103802351, - "c7": -8.09905169623714 + "points": { + "c1": 40.663279298206525, + "c2": 44.39788047443388, + "c3": -10.647108718112925, + "c4": -14.143353601147005, + "c5": 26.095437679982602, + "c6": -2.6021249382181466, + "c7": 11.921901500735416 }, - "vertexSeeds": { - "c1": 4.859622423209437, - "c2": 4.996033552206883, - "c3": 5.018405236251362, - "c4": 5.727914385622933, - "c5": 4.82481893259358, - "c6": 5.6416127399263685, - "c7": 5.091517596392848 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267687, + "c3": 7.050392972723068, + "c4": 5.640314378178458, + "c5": 4.230235783633839, + "c6": 2.820157189089229, + "c7": 1.4100785945446146 }, "rgb": [238, 201, 159] }, @@ -194838,23 +194838,23 @@ "year": 1765, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -30.870956271910217, - "c2": -4.603360346331783, - "c3": 1.318219748053835, - "c4": -9.339209947495025, - "c5": 26.11790581075404, - "c6": -26.97997497822175, - "c7": 11.376183034642857 + "points": { + "c1": -15.770399613255812, + "c2": -22.410627330433634, + "c3": -27.743913426991103, + "c4": 13.373878845327425, + "c5": -6.4988989816088, + "c6": -27.46400398732056, + "c7": 0.9131529556536577 }, - "vertexSeeds": { - "c1": 3.2688786635743785, - "c2": 2.509348748396707, - "c3": 2.4830497839145935, - "c4": 2.9661871633109897, - "c5": 2.7193531305866223, - "c6": 3.2923612954596906, - "c7": 3.0010172857632162 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.3814147018030525, + "c3": 4.484512251502543, + "c4": 3.5876098012020337, + "c5": 2.690707350901526, + "c6": 1.7938049006010182, + "c7": 0.8969024503005085 }, "rgb": [77, 76, 132] }, @@ -194865,23 +194865,23 @@ "year": 1766, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -45.32093741746684, - "c2": -43.783475828856204, - "c3": -17.355352016320147, - "c4": 42.07285088972361, - "c5": -35.9127355510827, - "c6": -46.13354943026121, - "c7": 38.124534728804264 + "points": { + "c1": 39.29601238636411, + "c2": 37.704627141707874, + "c3": 10.186880296221624, + "c4": 34.43601093975191, + "c5": -21.400538446199448, + "c6": -4.779968523091753, + "c7": -36.90455857047093 }, - "vertexSeeds": { - "c1": 8.241238035106898, - "c2": 8.645492233180423, - "c3": 9.74226186425661, - "c4": 8.803162161298088, - "c5": 8.427326248194909, - "c6": 9.311529249903124, - "c7": 9.736316105180183 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593615, + "c3": 11.835413777161353, + "c4": 9.46833102172908, + "c5": 7.101248266296808, + "c6": 4.734165510864546, + "c7": 2.367082755432273 }, "rgb": [77, 76, 132] }, @@ -194892,23 +194892,23 @@ "year": 1765, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -38.70764082744335, - "c2": 3.4072240872361164, - "c3": -5.307118395104887, - "c4": 28.197334589930854, - "c5": 27.709287659215498, - "c6": 10.338198317005322, - "c7": -32.7052842604445 + "points": { + "c1": -26.633286931226184, + "c2": -24.998074545579488, + "c3": -40.31312240813095, + "c4": -16.397773965581198, + "c5": 43.023408046238536, + "c6": 30.400063911110102, + "c7": -10.383248505603738 }, - "vertexSeeds": { - "c1": 7.404287720551334, - "c2": 7.936215633742393, - "c3": 7.495271592030077, - "c4": 6.810619536353679, - "c5": 7.53434655723815, - "c6": 6.888708125361298, - "c7": 7.411274934842662 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571427, + "c3": 9.523809523809529, + "c4": 7.61904761904762, + "c5": 5.7142857142857135, + "c6": 3.8095238095238058, + "c7": 1.9047619047619078 }, "rgb": [77, 76, 132] }, @@ -194919,23 +194919,23 @@ "year": 1766, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": -43.50717298273004, - "c2": -2.187331016867361, - "c3": 28.961884982607927, - "c4": 42.754200386553975, - "c5": 6.5523906646309555, - "c6": -36.6325907563588, - "c7": 26.8021653698422 + "points": { + "c1": 13.756003226461473, + "c2": -25.274041898674007, + "c3": 29.034373487895834, + "c4": 13.59114611675345, + "c5": 24.991003726998045, + "c6": 13.604893765178389, + "c7": 49.28659183181669 }, - "vertexSeeds": { - "c1": 0.9716494999512116, - "c2": 1.0206222158500435, - "c3": 0.9550420017450629, - "c4": 0.8361217043346765, - "c5": 0.9550246411570349, - "c6": 0.8975607081265755, - "c7": 1.0734881364907627 + "offsets": { + "c1": 1.8770226537216828, + "c2": 1.6088765603328714, + "c3": 1.3407304669440594, + "c4": 1.072584373555247, + "c5": 0.8044382801664357, + "c6": 0.5362921867776245, + "c7": 0.26814609338881223 }, "rgb": [58, 15, 49] }, @@ -194946,23 +194946,23 @@ "year": 1766, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": -8.9885845367805, - "c2": -39.37945540171238, - "c3": 0.2545552415831338, - "c4": -23.035081396016007, - "c5": 35.21969754774899, - "c6": 33.4513822902461, - "c7": 21.640141293818573 + "points": { + "c1": 47.53924454847264, + "c2": -21.29256217030641, + "c3": -17.985616582939407, + "c4": 40.16527151799781, + "c5": -49.647269677560914, + "c6": 35.23407217921023, + "c7": 27.86813118688987 }, - "vertexSeeds": { - "c1": 1.9642319531701322, - "c2": 2.3368559815465857, - "c3": 2.17515037087897, - "c4": 2.3345126519758415, - "c5": 2.1892451469930654, - "c6": 2.1445454245625224, - "c7": 2.286639923221331 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.411927877947296, + "c3": 2.843273231622745, + "c4": 2.2746185852981964, + "c5": 1.705963938973648, + "c6": 1.137309292649097, + "c7": 0.5686546463245485 }, "rgb": [77, 76, 132] }, @@ -194973,23 +194973,23 @@ "year": 1765, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -16.124979423394528, - "c2": 28.743556198888584, - "c3": -41.11769519846885, - "c4": -40.35867173400324, - "c5": 23.566086448748692, - "c6": -20.78774864499942, - "c7": 2.8501165875273955 + "points": { + "c1": -37.51732611652301, + "c2": -40.73918904692822, + "c3": 10.308882432027495, + "c4": 5.00591173905039, + "c5": 7.2272704148336615, + "c6": -2.7173986304566426, + "c7": -2.2145964320839724 }, - "vertexSeeds": { - "c1": 3.5854121190822275, - "c2": 3.8922203390909185, - "c3": 3.9971205798169915, - "c4": 4.05102340354645, - "c5": 3.7607793271113157, - "c6": 3.652568536065266, - "c7": 3.852571967647071 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049928, + "c3": 5.201109570041609, + "c4": 4.160887656033286, + "c5": 3.1206657420249666, + "c6": 2.080443828016643, + "c7": 1.0402219140083189 }, "rgb": [77, 76, 132] }, @@ -195000,23 +195000,23 @@ "year": 1765, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -20.61046584289016, - "c2": 30.4237799068803, - "c3": 34.015412936269044, - "c4": -4.320857099239511, - "c5": -24.7984561031343, - "c6": 1.803379509438166, - "c7": 12.708111705167482 + "points": { + "c1": 15.037907213046324, + "c2": 23.339346956190823, + "c3": 30.14136147402874, + "c4": -29.379910636034914, + "c5": 43.971405353261915, + "c6": -35.96919743238667, + "c7": 1.9146817766240787 }, - "vertexSeeds": { - "c1": 7.872621665284162, - "c2": 7.775297324373531, - "c3": 7.783750934796802, - "c4": 7.841247595341271, - "c5": 7.816381067488273, - "c6": 7.759725404044559, - "c7": 7.817003122288951 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410502, + "c3": 9.431345353675464, + "c4": 7.545076282940334, + "c5": 5.658807212205298, + "c6": 3.772538141470167, + "c7": 1.8862690707351306 }, "rgb": [238, 201, 159] }, @@ -195027,23 +195027,23 @@ "year": 1766, "resistanceReported": false, "duration": 57024000, - "curveSeeds": { - "c1": -32.830150760579954, - "c2": -61.434257007347185, - "c3": -42.19167674904379, - "c4": -49.45588226284861, - "c5": -23.74312801521011, - "c6": -22.594836855630554, - "c7": -6.116796971970459 + "points": { + "c1": -15.031457281541996, + "c2": 3.8231596313085277, + "c3": 68.61555093225564, + "c4": 21.755675067976554, + "c5": 31.082769323395468, + "c6": 73.75773956812662, + "c7": 28.917978543664077 }, - "vertexSeeds": { - "c1": 3.085594077600227, - "c2": 3.3429247707886205, - "c3": 3.1021705324072046, - "c4": 3.197999041015554, - "c5": 3.318775018744584, - "c6": 3.1958544403228304, - "c7": 3.3412568347417517 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719367, + "c5": 2.441054091539525, + "c6": 1.6273693943596834, + "c7": 0.8136846971798417 }, "rgb": [58, 15, 49] }, @@ -195054,23 +195054,23 @@ "year": 1766, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 25.975632054408017, - "c2": -20.995122494131724, - "c3": 29.915483108140172, - "c4": -26.716614956891906, - "c5": -13.873149793806775, - "c6": -18.634923632338435, - "c7": 19.370293669369367 + "points": { + "c1": 4.939625477046512, + "c2": -0.07467102283054317, + "c3": -31.471999179907865, + "c4": 46.07339856552908, + "c5": 27.63944250874581, + "c6": 15.993568994960604, + "c7": -31.525382363091474 }, - "vertexSeeds": { - "c1": 4.706333295072663, - "c2": 4.397037552149755, - "c3": 4.925042249316227, - "c4": 4.772514784266386, - "c5": 4.484671535165558, - "c6": 4.861177189627433, - "c7": 4.440774796750137 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497921, + "c3": 6.03328710124827, + "c4": 4.826629680998611, + "c5": 3.6199722607489604, + "c6": 2.4133148404993094, + "c7": 1.2066574202496583 }, "rgb": [86, 146, 138] }, @@ -195081,23 +195081,23 @@ "year": 1766, "resistanceReported": false, "duration": 49939200, - "curveSeeds": { - "c1": 45.14768856512882, - "c2": 39.80446994832995, - "c3": 56.943129281953475, - "c4": 33.2837973284428, - "c5": 32.565513705939736, - "c6": 2.781349315985125, - "c7": -51.24965607748781 + "points": { + "c1": 45.707516506043135, + "c2": 44.90565966017735, + "c3": -11.191960122545751, + "c4": 11.096929949817167, + "c5": 39.44580543525515, + "c6": -25.765818547207793, + "c7": -55.26831518499304 }, - "vertexSeeds": { - "c1": 5.6987183572914395, - "c2": 6.204930650204106, - "c3": 6.261099794914609, - "c4": 5.795862402735794, - "c5": 5.667753851875024, - "c6": 6.20737808478779, - "c7": 5.952773574467089 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072127, + "c3": 7.512713823393444, + "c4": 6.010171058714745, + "c5": 4.5076282940360635, + "c6": 3.0050855293573813, + "c7": 1.5025427646786822 }, "rgb": [58, 15, 49] }, @@ -195108,23 +195108,23 @@ "year": 1766, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 42.53998805223502, - "c2": 22.996007277503466, - "c3": -20.27368659518092, - "c4": -24.43503479817942, - "c5": 0.23508836596805338, - "c6": -25.582709374093863, - "c7": 6.713664486911867 + "points": { + "c1": 43.18783773856032, + "c2": -12.316071847092807, + "c3": 44.37484802486037, + "c4": 43.879025757350874, + "c5": 19.596573559160518, + "c6": 41.08008306184304, + "c7": -15.147870555000335 }, - "vertexSeeds": { - "c1": 5.251079639704659, - "c2": 5.6371197577187715, - "c3": 5.719154218149963, - "c4": 5.429178448381521, - "c5": 5.075401635233627, - "c6": 5.268029384373151, - "c7": 5.814390098248094 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605178032 }, "rgb": [58, 15, 49] }, @@ -195135,23 +195135,23 @@ "year": 1766, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -0.19086588781248537, - "c2": 1.2255006039047132, - "c3": -2.160800209428288, - "c4": -1.8513404498231765, - "c5": -24.293462820040183, - "c6": -25.452682450368997, - "c7": -37.48963984064044 + "points": { + "c1": 30.157660990514117, + "c2": 43.035378483297634, + "c3": -35.493803332894515, + "c4": -0.9296444438589475, + "c5": 40.93054694476791, + "c6": 41.645384850344456, + "c7": 26.006230545158317 }, - "vertexSeeds": { - "c1": 4.525079663961237, - "c2": 4.559025189035459, - "c3": 4.375283757145268, - "c4": 4.529433909234687, - "c5": 4.649579309935486, - "c6": 4.836980406270426, - "c7": 4.8329263226878405 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [58, 15, 49] }, @@ -195162,23 +195162,23 @@ "year": 1765, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 1.096957642615891, - "c2": -18.45495707737753, - "c3": 22.53476117243362, - "c4": 1.8032249119869164, - "c5": -5.628181159311026, - "c6": 26.81519803191435, - "c7": 36.626735213400906 + "points": { + "c1": -25.66637867466158, + "c2": -0.3046951370372071, + "c3": -36.22924259918778, + "c4": -44.44546024765798, + "c5": 40.79838312832658, + "c6": 27.680805869916156, + "c7": -17.807028742090687 }, - "vertexSeeds": { - "c1": 4.305032907478004, - "c2": 4.0436182725197805, - "c3": 3.9606475960592147, - "c4": 4.032231298196537, - "c5": 4.379469152900597, - "c6": 4.091720319240931, - "c7": 4.141471669240002 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251043, + "c3": 5.316689782709205, + "c4": 4.25335182616736, + "c5": 3.1900138696255214, + "c6": 2.126675913083684, + "c7": 1.063337956541846 }, "rgb": [222, 0, 59] }, @@ -195189,23 +195189,23 @@ "year": 1766, "resistanceReported": false, "duration": 49766400, - "curveSeeds": { - "c1": -36.50890672654221, - "c2": 30.208206610911674, - "c3": 9.319912818324, - "c4": 48.709048508680596, - "c5": 25.34528454280928, - "c6": 19.331072422727416, - "c7": -60.98260792924528 + "points": { + "c1": -19.176801869479647, + "c2": -7.1635403522942696, + "c3": 65.08430903968778, + "c4": 1.4987160768577183, + "c5": -52.8026614688642, + "c6": 57.46770479319301, + "c7": -57.97347887648564 }, - "vertexSeeds": { - "c1": 1.8923591179309687, - "c2": 1.8659205550011144, - "c3": 1.9834782156133488, - "c4": 1.8969864662910483, - "c5": 2.0010394538632985, - "c6": 1.9162201563250234, - "c7": 2.040217583754779 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.0790568654646315, + "c3": 2.565880721220526, + "c4": 2.05270457697642, + "c5": 1.5395284327323175, + "c6": 1.026352288488212, + "c7": 0.513176144244106 }, "rgb": [77, 76, 132] }, @@ -195216,23 +195216,23 @@ "year": 1766, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 7.939860457266157, - "c2": -28.84261971370707, - "c3": 44.41997742361704, - "c4": 0.7522950212725092, - "c5": 40.95701744806412, - "c6": 13.152948906561868, - "c7": 41.03908489074796 + "points": { + "c1": 30.529575816330492, + "c2": 2.911503375579322, + "c3": 29.614319752149555, + "c4": 34.70007387024397, + "c5": 30.52996479503267, + "c6": 5.518645398107502, + "c7": -40.354917045711574 }, - "vertexSeeds": { - "c1": 3.7535614317268844, - "c2": 3.400338576386996, - "c3": 3.714788779929219, - "c4": 3.4928408478586244, - "c5": 3.406690688453302, - "c6": 3.596643969200508, - "c7": 3.3712925130049687 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [58, 15, 49] }, @@ -195243,23 +195243,23 @@ "year": 1766, "resistanceReported": false, "duration": 55123200, - "curveSeeds": { - "c1": -1.6129290426525102, - "c2": 13.197755509609138, - "c3": -33.47853224893579, - "c4": 25.376042177682052, - "c5": 56.96274920225997, - "c6": 23.782271527307316, - "c7": 40.68331396364701 + "points": { + "c1": 47.19766623171236, + "c2": 69.77387322192055, + "c3": 68.89635949937423, + "c4": -36.90958449214336, + "c5": -10.751109895359114, + "c6": -20.910928872143387, + "c7": -42.749092455473054 }, - "vertexSeeds": { - "c1": 4.160778558767953, - "c2": 4.2179484062127335, - "c3": 4.410572946323737, - "c4": 4.273776764664731, - "c5": 4.193248098133873, - "c6": 4.368087723012147, - "c7": 4.299660196365384 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251043, + "c3": 5.316689782709205, + "c4": 4.253351826167367, + "c5": 3.1900138696255285, + "c6": 2.1266759130836763, + "c7": 1.0633379565418382 }, "rgb": [77, 76, 132] }, @@ -195270,23 +195270,23 @@ "year": 1766, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 1.563532090386758, - "c2": -2.8866010400754405, - "c3": -4.232524954303074, - "c4": -29.927202471417722, - "c5": 0.21417254712822853, - "c6": -3.196044707571133, - "c7": 9.285397367035998 + "points": { + "c1": 31.824953728421043, + "c2": -28.418975928494728, + "c3": -0.008951694712237668, + "c4": -21.03501150837791, + "c5": 30.510342005733854, + "c6": 37.57221494821648, + "c7": -9.917480180933495 }, - "vertexSeeds": { - "c1": 5.288354738426333, - "c2": 5.3893100439869155, - "c3": 5.274696065834616, - "c4": 5.638148316310678, - "c5": 5.463392844808928, - "c6": 5.561180878306064, - "c7": 5.56156067117834 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.2413314840499226, + "c4": 4.993065187239942, + "c5": 3.7447988904299603, + "c6": 2.4965325936199623, + "c7": 1.2482662968099811 }, "rgb": [238, 201, 159] }, @@ -195297,23 +195297,23 @@ "year": 1766, "resistanceReported": true, "duration": 41904000, - "curveSeeds": { - "c1": 20.236909792721725, - "c2": 12.660039732332471, - "c3": -23.27446861481411, - "c4": 2.8225218961408345, - "c5": -8.83165215041155, - "c6": 44.47137570599529, - "c7": -1.4363713501314521 + "points": { + "c1": -43.13994928450717, + "c2": 0.39045017754748557, + "c3": -22.149208540891443, + "c4": -2.2396800246648496, + "c5": 13.875281395993547, + "c6": 16.586296006601877, + "c7": 11.475623244375434 }, - "vertexSeeds": { - "c1": 1.8628782282461571, - "c2": 1.7384827074322242, - "c3": 1.8957715846329999, - "c4": 1.6192217426914164, - "c5": 1.9135392384754857, - "c6": 1.537583936753598, - "c7": 1.5597471756742234 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022191, + "c3": 2.3116042533518253, + "c4": 1.8492834026814617, + "c5": 1.3869625520110964, + "c6": 0.9246417013407309, + "c7": 0.46232085067036544 }, "rgb": [77, 76, 132] }, @@ -195324,23 +195324,23 @@ "year": 1766, "resistanceReported": false, "duration": 50716800, - "curveSeeds": { - "c1": -18.59835564135203, - "c2": 46.79389969708288, - "c3": 7.7393982703993345, - "c4": 45.19314920067316, - "c5": 34.081060257222234, - "c6": 62.043434831527435, - "c7": 60.19240629020854 + "points": { + "c1": -28.15405600194328, + "c2": -7.972389189098415, + "c3": -47.76652988653496, + "c4": -63.2675207926453, + "c5": -33.028627848845666, + "c6": 3.395709497651737, + "c7": 11.570405338989474 }, - "vertexSeeds": { - "c1": 5.1976004540604785, - "c2": 5.796061203910803, - "c3": 5.590285492629585, - "c4": 5.033205935977744, - "c5": 5.472779880812738, - "c6": 5.275822999664389, - "c7": 5.7064831864490655 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227465, + "c3": 7.027276930189547, + "c4": 5.62182154415164, + "c5": 4.216366158113733, + "c6": 2.8109107720758253, + "c7": 1.4054553860379073 }, "rgb": [58, 15, 49] }, @@ -195351,23 +195351,23 @@ "year": 1766, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -28.420704237089737, - "c2": 17.18757470061285, - "c3": 18.339197454517787, - "c4": -36.498841755227616, - "c5": 16.73947794861757, - "c6": 11.934504568825943, - "c7": -26.145679854948238 + "points": { + "c1": -3.4013113626472133, + "c2": -35.01930922634655, + "c3": -26.054746971069296, + "c4": 34.08160942021685, + "c5": -21.932792868065732, + "c6": 33.781478990691724, + "c7": 11.552358217784324 }, - "vertexSeeds": { - "c1": 1.5652146028751115, - "c2": 1.4023586754475887, - "c3": 1.3470989920523895, - "c4": 1.503956757410323, - "c5": 1.2804773019900744, - "c6": 1.2558951374904654, - "c7": 1.5242065057950456 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [58, 15, 49] }, @@ -195378,23 +195378,23 @@ "year": 1766, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": -46.49040691085543, - "c2": 60.97086680331023, - "c3": -20.76624169988564, - "c4": 24.747565876989967, - "c5": -49.52476484619717, - "c6": 35.361372903373166, - "c7": -0.38474243855502266 + "points": { + "c1": 50.47634544822648, + "c2": -56.853103584139596, + "c3": -6.347270604686059, + "c4": 31.778274408525135, + "c5": -42.79662820895572, + "c6": 17.801359345908452, + "c7": 30.365945137047632 }, - "vertexSeeds": { - "c1": 2.811623198882162, - "c2": 2.8538833939024566, - "c3": 2.836863591034951, - "c4": 2.76314491186979, - "c5": 2.8380175066447233, - "c6": 2.7810897796104137, - "c7": 2.8012536400302923 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631074, + "c3": 3.236245954692555, + "c4": 2.588996763754049, + "c5": 1.9417475728155305, + "c6": 1.2944983818770246, + "c7": 0.6472491909385187 }, "rgb": [86, 146, 138] }, @@ -195405,23 +195405,23 @@ "year": 1765, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 34.31147891457338, - "c2": -30.21366545799328, - "c3": -18.13943946766616, - "c4": -14.77273562830947, - "c5": -2.2386580804264042, - "c6": -18.421882924888532, - "c7": 38.00276739306877 + "points": { + "c1": 29.571465799919075, + "c2": -11.144613132940368, + "c3": 12.345235085020846, + "c4": 25.343712520462994, + "c5": 6.179688246469908, + "c6": -24.19649859601107, + "c7": 10.475193106127684 }, - "vertexSeeds": { - "c1": 1.2786827144802706, - "c2": 1.3471884151379194, - "c3": 1.2550718602462814, - "c4": 1.2685038210605044, - "c5": 1.228190822363798, - "c6": 1.3905710420515387, - "c7": 1.2951934425789844 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166444, + "c3": 1.733703190013869, + "c4": 1.3869625520110966, + "c5": 1.0402219140083209, + "c6": 0.6934812760055483, + "c7": 0.3467406380027757 }, "rgb": [86, 146, 138] }, @@ -195432,23 +195432,23 @@ "year": 1765, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -27.04873523955601, - "c2": -7.618344908993738, - "c3": 10.67256112408618, - "c4": -21.400632260275998, - "c5": -25.585111902890556, - "c6": 26.555304704636505, - "c7": 12.53814271601398 + "points": { + "c1": 18.711004385884785, + "c2": 22.611052403959008, + "c3": 29.92748062065982, + "c4": 0.1645606667175059, + "c5": 33.82138834700117, + "c6": 19.158621023965765, + "c7": 3.781773713025075 }, - "vertexSeeds": { - "c1": 1.7550855166051047, - "c2": 1.9783651885558629, - "c3": 2.059007408720956, - "c4": 1.9933368160190472, - "c5": 1.8298971553760008, - "c6": 1.892338643679076, - "c7": 1.8105017239500358 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841873, + "c3": 2.519648636153491, + "c4": 2.0157189089227914, + "c5": 1.5117891816920948, + "c6": 1.0078594544613957, + "c7": 0.5039297272306966 }, "rgb": [58, 15, 49] }, @@ -195459,23 +195459,23 @@ "year": 1766, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -10.060525559403573, - "c2": 23.984735457938278, - "c3": 5.5416335306378315, - "c4": 39.28818744432123, - "c5": 50.634303495671936, - "c6": 38.63420190771959, - "c7": -17.827914750215108 + "points": { + "c1": 0.7131130093734299, + "c2": -24.369033307281654, + "c3": -21.585621722419603, + "c4": -15.097238769144354, + "c5": 7.519000614141881, + "c6": 3.1788757186530745, + "c7": -9.613244629743342 }, - "vertexSeeds": { - "c1": 0.9890846734178398, - "c2": 0.9555972498537056, - "c3": 1.1625636365118306, - "c4": 1.167729812414563, - "c5": 1.2205123047636723, - "c6": 1.177210021579928, - "c7": 1.1547936644866859 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742022, + "c3": 1.4794267221451687, + "c4": 1.1835413777161348, + "c5": 0.8876560332871011, + "c6": 0.5917706888580674, + "c7": 0.2958853444290337 }, "rgb": [238, 201, 159] }, @@ -195486,23 +195486,23 @@ "year": 1765, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -23.424625635298458, - "c2": -20.900417058002354, - "c3": -7.960452981315804, - "c4": -27.33457041049894, - "c5": 1.679562885368295, - "c6": -15.07000912470922, - "c7": 10.003563927526077 + "points": { + "c1": 2.7425872696432627, + "c2": 28.150853043668608, + "c3": 11.167047302788358, + "c4": 21.804103955746083, + "c5": -26.843049661277238, + "c6": -13.203951003310866, + "c7": 1.521093972532011 }, - "vertexSeeds": { - "c1": 3.8724923207617166, - "c2": 3.8198042218401684, - "c3": 3.5952917661632418, - "c4": 3.691818466532468, - "c5": 3.5914042404662165, - "c6": 3.614330633859105, - "c7": 3.7666561526806364 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084604, + "c3": 4.646324549237169, + "c4": 3.717059639389734, + "c5": 2.787794729542298, + "c6": 1.8585298196948707, + "c7": 0.9292649098474354 }, "rgb": [86, 146, 138] }, @@ -195513,23 +195513,23 @@ "year": 1765, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 8.939933215556493, - "c2": 8.848197758072153, - "c3": 28.908067304581856, - "c4": 7.531397043220778, - "c5": -18.430178546177352, - "c6": 4.267008482555205, - "c7": -2.2038045306067318 + "points": { + "c1": 11.699442019959761, + "c2": 25.774276927346897, + "c3": -16.16486629581217, + "c4": 4.076437196106525, + "c5": -30.070609022046533, + "c6": 14.244437232066396, + "c7": 10.127230860329831 }, - "vertexSeeds": { - "c1": 4.716587897976619, - "c2": 4.626168401686308, - "c3": 4.858109498618708, - "c4": 4.517612833181726, - "c5": 4.822575926723685, - "c6": 4.945398981237149, - "c7": 4.788951254793759 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337029, + "c3": 5.940822931114194, + "c4": 4.752658344891352, + "c5": 3.5644937586685113, + "c6": 2.376329172445676, + "c7": 1.1881645862228347 }, "rgb": [222, 0, 59] }, @@ -195540,23 +195540,23 @@ "year": 1765, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -35.56732953874078, - "c2": -4.241285907949276, - "c3": 12.179903241224338, - "c4": 30.110756465303822, - "c5": -15.347497087508895, - "c6": 20.878091711316344, - "c7": 18.7547842484667 + "points": { + "c1": -13.916544586841766, + "c2": 2.7100347414313077, + "c3": 37.233613816576266, + "c4": -5.84672936812855, + "c5": -24.068801061124695, + "c6": 22.44368117211379, + "c7": -13.949872913193936 }, - "vertexSeeds": { - "c1": 3.4883477505170304, - "c2": 3.6346986280307116, - "c3": 3.750115799502942, - "c4": 3.7818569979793812, - "c5": 3.6948658696297434, - "c6": 3.718155714389155, - "c7": 3.692255005168945 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [238, 201, 159] }, @@ -195567,23 +195567,23 @@ "year": 1766, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 4.645908802163966, - "c2": -32.86380811910492, - "c3": 6.8374651942247056, - "c4": -3.25488854640858, - "c5": -6.506544675568129, - "c6": -34.915763669201155, - "c7": 10.39077798390813 + "points": { + "c1": 12.983625932539937, + "c2": -4.273453140232853, + "c3": -43.49010446477992, + "c4": 34.05600447988884, + "c5": -32.32738146103397, + "c6": -40.519111315620435, + "c7": 17.92129230549847 }, - "vertexSeeds": { - "c1": 3.5706450335056266, - "c2": 3.5715067267066902, - "c3": 3.6126976623610463, - "c4": 3.724861409657124, - "c5": 3.5554670323446786, - "c6": 3.556932466348709, - "c7": 3.7145610244433565 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703649, + "c4": 3.6985668053629177, + "c5": 2.773925104022195, + "c6": 1.8492834026814635, + "c7": 0.9246417013407318 }, "rgb": [86, 146, 138] }, @@ -195594,23 +195594,23 @@ "year": 1766, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -24.68140505045328, - "c2": -10.343082108407842, - "c3": 3.7006223054849414, - "c4": -1.5010018057692136, - "c5": -24.859337885997565, - "c6": 2.2273032788890745, - "c7": 36.054707325178384 + "points": { + "c1": 45.357160074207144, + "c2": 14.035146649580433, + "c3": 35.00672457552912, + "c4": -9.221135523775224, + "c5": -9.579244391932455, + "c6": 29.06638257472588, + "c7": -13.192434032688325 }, - "vertexSeeds": { - "c1": 3.15680686789813, - "c2": 3.1152996154593553, - "c3": 3.1082078461727547, - "c4": 2.9409040662099186, - "c5": 3.2040482852945016, - "c6": 3.0046771395159557, - "c7": 2.9157558515697715 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -195621,23 +195621,23 @@ "year": 1765, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -10.85249541362533, - "c2": 13.499674275003429, - "c3": 31.168090303438717, - "c4": 10.802461415135966, - "c5": -1.0390866283847302, - "c6": -19.665433930647826, - "c7": -24.47924393416171 + "points": { + "c1": 18.310422468037473, + "c2": 15.191822573725979, + "c3": -25.251848544219516, + "c4": -27.362860074526157, + "c5": -18.719392422863304, + "c6": -29.19074014726114, + "c7": -34.78002285565893 }, - "vertexSeeds": { - "c1": 3.043582373990606, - "c2": 2.829180035806212, - "c3": 2.822076485658215, - "c4": 2.9481282014636494, - "c5": 3.0149226493285, - "c6": 2.7727174183214722, - "c7": 2.9387340084807345 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435503, + "c3": 3.6985668053629235, + "c4": 2.9588534442903356, + "c5": 2.2191400832177557, + "c6": 1.4794267221451678, + "c7": 0.7397133610725798 }, "rgb": [58, 15, 49] }, @@ -195648,23 +195648,23 @@ "year": 1765, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 10.646932740256059, - "c2": -27.283785670577654, - "c3": 16.196606731651872, - "c4": -2.850182931157672, - "c5": 16.770727278388332, - "c6": 1.3912078680553819, - "c7": 6.676432484997466 + "points": { + "c1": -11.515093793345734, + "c2": 24.82368545690601, + "c3": -19.225069826256416, + "c4": 19.16131277572389, + "c5": 10.861965037405877, + "c6": -12.165776193916862, + "c7": -28.143474808359752 }, - "vertexSeeds": { - "c1": 3.4850057627244024, - "c2": 3.2272544045150844, - "c3": 3.4995558982402484, - "c4": 3.2492358185199226, - "c5": 3.4841980946354503, - "c6": 3.2155744283429946, - "c7": 3.30572305281823 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.1872399445215, + "c3": 4.322699953767913, + "c4": 3.458159963014331, + "c5": 2.59361997226075, + "c6": 1.7290799815071627, + "c7": 0.8645399907535813 }, "rgb": [58, 15, 49] }, @@ -195675,23 +195675,23 @@ "year": 1766, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -36.90356381322518, - "c2": -17.370451531767024, - "c3": 24.186798523213902, - "c4": -39.025608474193334, - "c5": 18.38317979650737, - "c6": -8.248462229132379, - "c7": -13.820861342967003 + "points": { + "c1": -2.210240074898131, + "c2": -10.292562816706422, + "c3": 3.8045423803401093, + "c4": -28.60905938457389, + "c5": -3.3916686375955436, + "c6": 43.30680845209394, + "c7": -44.887798418882895 }, - "vertexSeeds": { - "c1": 1.573767389863582, - "c2": 1.764151826056995, - "c3": 1.7054347902817513, - "c4": 1.8167357065485896, - "c5": 1.6825933384081766, - "c6": 1.7504434306086651, - "c7": 1.583122016856899 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.7184466019417473, + "c3": 2.2653721682847894, + "c4": 1.8122977346278315, + "c5": 1.3592233009708736, + "c6": 0.9061488673139158, + "c7": 0.4530744336569579 }, "rgb": [222, 0, 59] }, @@ -195702,23 +195702,23 @@ "year": 1765, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -9.448827663325101, - "c2": 4.753723027188805, - "c3": 17.247507333050777, - "c4": -13.317193027855268, - "c5": -20.86070509424245, - "c6": 15.574032501069013, - "c7": -13.387512079863399 + "points": { + "c1": -23.44403060141181, + "c2": -14.66613252957379, + "c3": -36.7644979150463, + "c4": 9.26629021375733, + "c5": 18.63120614766359, + "c6": 10.907380533629073, + "c7": 27.156921516937288 }, - "vertexSeeds": { - "c1": 4.199745409153124, - "c2": 4.106777577400222, - "c3": 3.9937204599970597, - "c4": 4.04396163513061, - "c5": 3.939558220698737, - "c6": 3.6813706528442816, - "c7": 4.019578915523573 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [77, 76, 132] }, @@ -195729,23 +195729,23 @@ "year": 1765, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 23.936057564627234, - "c2": 26.103484206101847, - "c3": -26.94620423230898, - "c4": 5.812114278461422, - "c5": -18.51545555234415, - "c6": 6.305161321774484, - "c7": -11.639405835905524 + "points": { + "c1": 11.317238705386707, + "c2": -14.860182824432844, + "c3": -31.340375715775078, + "c4": 9.99553264788129, + "c5": -2.2255695590134614, + "c6": -15.704255089013376, + "c7": -28.879274260267984 }, - "vertexSeeds": { - "c1": 7.430104003330857, - "c2": 7.28380576327858, - "c3": 7.41036334255464, - "c4": 7.3543052969647045, - "c5": 7.422401601969392, - "c6": 7.544161968629666, - "c7": 7.479302638727572 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008313, + "c3": 9.20018492834027, + "c4": 7.360147942672208, + "c5": 5.520110957004167, + "c6": 3.680073971336104, + "c7": 1.840036985668042 }, "rgb": [77, 76, 132] }, @@ -195756,23 +195756,23 @@ "year": 1765, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 11.492724755808492, - "c2": 18.85146178996086, - "c3": 1.9823107222374645, - "c4": 17.41279548838305, - "c5": -5.716475479202277, - "c6": 20.71866100888813, - "c7": 12.681186878377684 + "points": { + "c1": 7.016824402770187, + "c2": -21.34980800274756, + "c3": -22.216226748849916, + "c4": 3.6392136000570865, + "c5": -6.376162958498128, + "c6": 3.020986224801554, + "c7": 20.74798909014301 }, - "vertexSeeds": { - "c1": 3.2486665846342686, - "c2": 3.2610486666435126, - "c3": 3.2431051707672784, - "c4": 3.2763838883155105, - "c5": 3.229784186431842, - "c6": 3.2383205777510344, - "c7": 3.287508468320925 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877931, + "c3": 3.9528432732316285, + "c4": 3.162274618585287, + "c5": 2.371705963938985, + "c6": 1.5811373092926435, + "c7": 0.7905686546463021 }, "rgb": [238, 201, 159] }, @@ -195783,23 +195783,23 @@ "year": 1766, "resistanceReported": false, "duration": 47606400, - "curveSeeds": { - "c1": 48.20438975537231, - "c2": 51.60146377705026, - "c3": 11.802891969040083, - "c4": -37.461832718913186, - "c5": -18.49881505578127, - "c6": -36.637995464665735, - "c7": 3.581942926474916 + "points": { + "c1": 11.167083194638138, + "c2": -29.829381889875044, + "c3": 31.859208953435726, + "c4": -31.608406406629044, + "c5": -0.7908066258873845, + "c6": -41.99687109974241, + "c7": -8.926363157823012 }, - "vertexSeeds": { - "c1": 5.832342056278163, - "c2": 4.792963097131217, - "c3": 7.029277302989454, - "c4": 7.687302679669033, - "c5": 6.388451240419556, - "c6": 4.523548926651187, - "c7": 5.9287672700627825 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330097, + "c3": 9.385113268608412, + "c4": 7.50809061488673, + "c5": 5.631067961165045, + "c6": 3.7540453074433646, + "c7": 1.8770226537216834 }, "rgb": [238, 201, 159] }, @@ -195810,23 +195810,23 @@ "year": 1766, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -7.650485370703045, - "c2": 10.935936737533297, - "c3": 3.820302191735273, - "c4": -3.890624537690151, - "c5": 47.760046562493685, - "c6": 10.853909095775919, - "c7": 31.77323630349538 + "points": { + "c1": -15.225829940262976, + "c2": 48.562116493353344, + "c3": -44.422555895022676, + "c4": -21.837784653730616, + "c5": 44.362143287335684, + "c6": -45.570471640532176, + "c7": -18.9926714335569 }, - "vertexSeeds": { - "c1": 0.6238714269863637, - "c2": 0.6058414599764494, - "c3": 0.6073108132980037, - "c4": 0.6353020695815028, - "c5": 0.592759465721374, - "c6": 0.5751633273404496, - "c7": 0.5904459099484521 + "offsets": { + "c1": 1.1003236245954693, + "c2": 0.9431345353675451, + "c3": 0.7859454461396209, + "c4": 0.6287563569116967, + "c5": 0.47156726768377255, + "c6": 0.31437817845584837, + "c7": 0.15718908922792418 }, "rgb": [58, 15, 49] }, @@ -195837,23 +195837,23 @@ "year": 1765, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 21.27724728005385, - "c2": -8.26780235294887, - "c3": -24.110729436098467, - "c4": 10.925295572436987, - "c5": 28.18803652648156, - "c6": 0.9550788730310629, - "c7": -20.53677860316713 + "points": { + "c1": 23.811763558156038, + "c2": -31.568198002809734, + "c3": -30.832630004450348, + "c4": -13.280997689291269, + "c5": -15.875073755271735, + "c6": -12.42780818179758, + "c7": -6.523027953943103 }, - "vertexSeeds": { - "c1": 8.697912740439747, - "c2": 8.63182611858724, - "c3": 8.620335963054593, - "c4": 8.751915245146288, - "c5": 8.650404389236089, - "c6": 8.666841949058737, - "c7": 8.700679566769027 + "offsets": { + "c1": 14.627831715210357, + "c2": 12.538141470180262, + "c3": 10.44845122515027, + "c4": 8.358760980120174, + "c5": 6.269070735090183, + "c6": 4.179380490060087, + "c7": 2.0896902450299915 }, "rgb": [238, 201, 159] }, @@ -195864,23 +195864,23 @@ "year": 1765, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -21.74506004583904, - "c2": -26.411189943731767, - "c3": -22.800081077803735, - "c4": 14.594655497210667, - "c5": -11.361088358305164, - "c6": 20.90836129044068, - "c7": -18.847981150075817 + "points": { + "c1": 6.107166608817849, + "c2": -28.803559073867515, + "c3": 30.438683386595073, + "c4": 20.734385011037247, + "c5": -19.527320769119722, + "c6": 5.8117602181304875, + "c7": 3.0796074876553234 }, - "vertexSeeds": { - "c1": 2.3121761658031086, - "c2": 2.3121761658031086, - "c3": 2.3121761658031086, - "c4": 2.3121761658031086, - "c5": 2.3121761658031086, - "c6": 2.3121761658031086, - "c7": 2.3121761658031086 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -195891,23 +195891,23 @@ "year": 1765, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 9.922900160903446, - "c2": 30.97383924095208, - "c3": -18.057239791246474, - "c4": 1.8467114182119246, - "c5": -6.478105761657783, - "c6": 0.6794823132710803, - "c7": 19.057650015805997 + "points": { + "c1": 33.664926479336444, + "c2": 30.579252188573122, + "c3": -2.7360175381508114, + "c4": -19.167869743503218, + "c5": 5.650706764694384, + "c6": -10.198938083239515, + "c7": -18.435944131232304 }, - "vertexSeeds": { - "c1": 2.1626827825328827, - "c2": 2.2200503809317613, - "c3": 2.110585030250501, - "c4": 2.342104801218055, - "c5": 2.008595203235197, - "c6": 2.1828274252403777, - "c7": 2.211103749359176 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.439667128987519, + "c3": 2.866389274156264, + "c4": 2.2931114193250126, + "c5": 1.7198335644937581, + "c6": 1.1465557096625063, + "c7": 0.5732778548312518 }, "rgb": [58, 15, 49] }, @@ -195918,23 +195918,23 @@ "year": 1765, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -30.199354943117555, - "c2": 11.645903398830797, - "c3": 17.23573427017893, - "c4": -10.494230259373271, - "c5": -13.198889498046853, - "c6": 18.09644836459131, - "c7": 12.427570937324099 + "points": { + "c1": -24.9316771288913, + "c2": -5.551801214396431, + "c3": -27.849718317740617, + "c4": 13.899421149719046, + "c5": -5.623373267059389, + "c6": 16.969237870994156, + "c7": -31.69315856925152 }, - "vertexSeeds": { - "c1": 10.856062673859652, - "c2": 9.294979388519954, - "c3": 8.619382909643122, - "c4": 8.987770406238399, - "c5": 9.725556879562546, - "c6": 9.30306574968343, - "c7": 9.43796031159841 + "offsets": { + "c1": 18.802588996763753, + "c2": 16.11650485436893, + "c3": 13.430420711974113, + "c4": 10.744336569579279, + "c5": 8.058252427184458, + "c6": 5.372168284789639, + "c7": 2.6860841423948196 }, "rgb": [238, 201, 159] }, @@ -195945,23 +195945,23 @@ "year": 1765, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": 10.103876816754688, - "c2": 12.10851713821523, - "c3": 12.172278379739986, - "c4": 15.734247201572174, - "c5": -15.46078700513851, - "c6": -0.35016814354457537, - "c7": -11.033608964773604 + "points": { + "c1": -9.80735483986064, + "c2": 7.401656207602915, + "c3": 0.8082148338686181, + "c4": 12.418579495452423, + "c5": 4.666427352546243, + "c6": 14.171935813340951, + "c7": 6.556595161418883 }, - "vertexSeeds": { - "c1": 1.8522352757949936, - "c2": 1.8544531533023652, - "c3": 1.819547662411317, - "c4": 1.8239317036198464, - "c5": 1.9356743290517993, - "c6": 1.8024012161083123, - "c7": 1.8766218857508568 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.3347202958853472, + "c4": 1.867776236708275, + "c5": 1.4008321775312074, + "c6": 0.9338881183541395, + "c7": 0.46694405917707194 }, "rgb": [58, 15, 49] }, @@ -195972,23 +195972,23 @@ "year": 1766, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": -2.3653846146233803, - "c2": 20.514092306089537, - "c3": 43.905748884642534, - "c4": -49.1164788068495, - "c5": -39.410241574095394, - "c6": -21.689129789877907, - "c7": -38.327167755477895 + "points": { + "c1": 50.02732796710107, + "c2": -52.80572882304644, + "c3": 1.6676675671816952, + "c4": 20.2330071165419, + "c5": -28.253472985874428, + "c6": 17.07773795413773, + "c7": -46.538735236193105 }, - "vertexSeeds": { - "c1": 1.711285167276151, - "c2": 1.6948906413399527, - "c3": 1.8107131016264097, - "c4": 1.6761130672960438, - "c5": 1.7968465095672337, - "c6": 1.5990427695748912, - "c7": 1.628357020613937 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210824, + "c3": 2.196024040684236, + "c4": 1.7568192325473857, + "c5": 1.3176144244105394, + "c6": 0.8784096162736929, + "c7": 0.4392048081368464 }, "rgb": [86, 146, 138] }, @@ -195999,23 +195999,23 @@ "year": 1766, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 52.603927276911136, - "c2": 33.495539779303485, - "c3": 43.5797359020151, - "c4": -40.04626992753352, - "c5": -48.44362559423378, - "c6": -14.722463181352744, - "c7": -5.475789240199504 + "points": { + "c1": -8.154801168422999, + "c2": 10.36160111259781, + "c3": 39.45519644652302, + "c4": 51.66600317704527, + "c5": 52.61502682945215, + "c6": 14.012568644082776, + "c7": -54.780127730233886 }, - "vertexSeeds": { - "c1": 5.3584284402504805, - "c2": 5.3544582194518, - "c3": 5.406214867648871, - "c4": 5.482052905486491, - "c5": 5.398165423181195, - "c6": 5.367579373728559, - "c7": 5.519145693852994 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.9334257975034514, + "c3": 6.6111881645862445, + "c4": 5.288950531668985, + "c5": 3.9667128987517257, + "c6": 2.644475265834466, + "c7": 1.3222376329172596 }, "rgb": [238, 201, 159] }, @@ -196026,23 +196026,23 @@ "year": 1765, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 13.996616315506763, - "c2": 14.868545922321069, - "c3": 5.825469387934341, - "c4": 25.27034118112951, - "c5": 29.47422592908312, - "c6": -9.42121583229682, - "c7": 17.975369093291746 + "points": { + "c1": -20.757438653243625, + "c2": 18.045775962409017, + "c3": 29.778827583314495, + "c4": -21.012338384808213, + "c5": -23.068208862288795, + "c6": -27.212457576501834, + "c7": -13.224219041646947 }, - "vertexSeeds": { - "c1": 4.951114755638457, - "c2": 4.730636956334917, - "c3": 4.552879631793714, - "c4": 4.549146761779623, - "c5": 5.181861460665768, - "c6": 4.725058786528703, - "c7": 4.279432947786397 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -196053,23 +196053,23 @@ "year": 1765, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -4.0885746968374015, - "c2": 0.20283922052907855, - "c3": 12.448211821449604, - "c4": 20.15451984133641, - "c5": -28.731661981678975, - "c6": 21.921824791261123, - "c7": -3.0061022249485916 + "points": { + "c1": 29.876372947002352, + "c2": -30.2202970950933, + "c3": -28.335187526553746, + "c4": -22.75270207301103, + "c5": -25.137120624383456, + "c6": -21.031557137921695, + "c7": 8.075551498381166 }, - "vertexSeeds": { - "c1": 4.412028134249689, - "c2": 4.69783582147551, - "c3": 4.145078178293517, - "c4": 4.134935272890729, - "c5": 4.076707139422464, - "c6": 4.5932001305376815, - "c7": 4.817266298241838 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -196080,23 +196080,23 @@ "year": 1765, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -6.298686545622523, - "c2": -0.983333508894539, - "c3": -18.577891490668904, - "c4": -25.202722441515238, - "c5": -0.03185530125457703, - "c6": 0.61153711253694, - "c7": -23.003751775260195 + "points": { + "c1": -25.49186946462556, + "c2": -2.6845805210264686, + "c3": 23.582026351074482, + "c4": -19.060239479456953, + "c5": 0.15694404063566125, + "c6": 10.714507123836526, + "c7": -0.7038113063467755 }, - "vertexSeeds": { - "c1": 8.490304890345156, - "c2": 8.292335755511537, - "c3": 8.680085467415829, - "c4": 8.746858974668774, - "c5": 8.51055381347413, - "c6": 8.026473071420808, - "c7": 8.864038629345485 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783626, + "c3": 10.79519186315303, + "c4": 8.63615349052242, + "c5": 6.477115117891822, + "c6": 4.31807674526121, + "c7": 2.159038372630613 }, "rgb": [58, 15, 49] }, @@ -196107,23 +196107,23 @@ "year": 1766, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": 33.42301519521109, - "c2": 49.442343991406204, - "c3": 11.304912975378443, - "c4": 47.01397033035765, - "c5": 8.721383848789081, - "c6": 11.78874580987761, - "c7": 14.236233205120826 + "points": { + "c1": -10.087794626555812, + "c2": -26.262096785359283, + "c3": -21.226402807154415, + "c4": 53.680915430364124, + "c5": 17.871058811099857, + "c6": 50.73363393539627, + "c7": -55.693329873374836 }, - "vertexSeeds": { - "c1": 10.97118186326939, - "c2": 10.210373399918362, - "c3": 10.462663038024667, - "c4": 10.742540380056832, - "c5": 10.549018550128046, - "c6": 10.393891162137088, - "c7": 10.669235441414223 + "offsets": { + "c1": 18.478964401294498, + "c2": 15.839112343966695, + "c3": 13.199260286638934, + "c4": 10.559408229311131, + "c5": 7.919556171983368, + "c6": 5.279704114655566, + "c7": 2.6398520573278033 }, "rgb": [86, 146, 138] }, @@ -196134,23 +196134,23 @@ "year": 1766, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": -35.4161549250168, - "c2": 6.954739485975054, - "c3": 9.04997506328958, - "c4": 55.93002486163806, - "c5": -19.25238812795893, - "c6": -35.42183732201273, - "c7": -33.634426068352525 + "points": { + "c1": 56.152260549326655, + "c2": 55.953023174788015, + "c3": 55.287608451991986, + "c4": -29.930732172927318, + "c5": -41.79988718890105, + "c6": -24.017081952918133, + "c7": 38.987273961403176 }, - "vertexSeeds": { - "c1": 4.1523726870096365, - "c2": 7.1512115722453835, - "c3": 4.561138992668054, - "c4": 5.205278987074904, - "c5": 4.337058864638652, - "c6": 6.694684680701159, - "c7": 7.052012135051022 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008322, + "c3": 9.200184928340267, + "c4": 7.3601479426722145, + "c5": 5.52011095700416, + "c6": 3.6800739713361077, + "c7": 1.8400369856680538 }, "rgb": [58, 15, 49] }, @@ -196161,23 +196161,23 @@ "year": 1766, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -6.972841974630924, - "c2": -4.590869025656907, - "c3": 20.053570496039292, - "c4": -18.52251192932791, - "c5": -20.12453433974667, - "c6": -42.70315806450347, - "c7": 31.664562347523606 + "points": { + "c1": 4.779469736821078, + "c2": -41.64661376681246, + "c3": 32.46605767678336, + "c4": -17.500814535245638, + "c5": 41.81063037595464, + "c6": 44.64344102625203, + "c7": -7.9386077745696895 }, - "vertexSeeds": { - "c1": 3.5922414849582576, - "c2": 3.5168952471933506, - "c3": 3.531883187613432, - "c4": 3.6568748358232903, - "c5": 3.8230775681161537, - "c6": 3.68390625708446, - "c7": 3.813563297794444 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.9930651872399405, + "c3": 4.160887656033289, + "c4": 3.328710124826627, + "c5": 2.496532593619975, + "c6": 1.6643550624133134, + "c7": 0.8321775312066522 }, "rgb": [86, 146, 138] }, @@ -196188,23 +196188,23 @@ "year": 1766, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 19.19710216383187, - "c2": -3.386817869471834, - "c3": -13.0093821401361, - "c4": -12.670749028268645, - "c5": 8.16894051601949, - "c6": -22.684221143250618, - "c7": -37.84201472169978 + "points": { + "c1": -0.11616219345866341, + "c2": 17.98410770199846, + "c3": -37.728125274703515, + "c4": -26.649499018251838, + "c5": -2.743653026602118, + "c6": -37.313561257992724, + "c7": 36.99176516182256 }, - "vertexSeeds": { - "c1": 5.690369077098133, - "c2": 5.682254919857833, - "c3": 5.659585562101282, - "c4": 5.659016551680241, - "c5": 5.625184855898009, - "c6": 5.543520286079647, - "c7": 5.657839464341263 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.21081830790567, + "c3": 6.842348589921429, + "c4": 5.473878871937132, + "c5": 4.105409153952835, + "c6": 2.7369394359685386, + "c7": 1.3684697179842966 }, "rgb": [238, 201, 159] }, @@ -196215,23 +196215,23 @@ "year": 1765, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": 1.3343165715641305, - "c2": -7.789141097553225, - "c3": -11.42669600382748, - "c4": -12.219170259268267, - "c5": 17.922680371447015, - "c6": 18.86880730262812, - "c7": -11.679163964512366 + "points": { + "c1": -6.678486812540921, + "c2": 15.490011562263483, + "c3": 13.592803820802587, + "c4": 3.0910368071293277, + "c5": -3.2684871219060554, + "c6": -16.266415656632407, + "c7": -9.941731925219814 }, - "vertexSeeds": { - "c1": 1.7769006897928932, - "c2": 1.8261652641338755, - "c3": 1.8438930495304642, - "c4": 1.90382044450795, - "c5": 1.8042398126037413, - "c6": 1.8516223691539575, - "c7": 1.83834564309502 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.3347202958853472, + "c4": 1.867776236708275, + "c5": 1.4008321775312074, + "c6": 0.9338881183541395, + "c7": 0.46694405917707194 }, "rgb": [222, 0, 59] }, @@ -196242,23 +196242,23 @@ "year": 1766, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 21.302723944392604, - "c2": 37.45818883114904, - "c3": -46.059309809792836, - "c4": 37.527021022413145, - "c5": -20.005308700554473, - "c6": 5.593076723965908, - "c7": 19.858389451908614 + "points": { + "c1": 2.7507733407322306, + "c2": -18.340921229776935, + "c3": -3.8157068211831344, + "c4": 1.3130809953544613, + "c5": -14.409028020928957, + "c6": -39.9985584651228, + "c7": -25.561214008212406 }, - "vertexSeeds": { - "c1": 10.389067018994421, - "c2": 8.624714120433948, - "c3": 9.017178200540926, - "c4": 10.274179471913268, - "c5": 8.279244972697397, - "c6": 9.226323549931868, - "c7": 10.614696104150712 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524274, + "c3": 12.944983818770229, + "c4": 10.355987055016186, + "c5": 7.766990291262141, + "c6": 5.177993527508097, + "c7": 2.5889967637540443 }, "rgb": [77, 76, 132] }, @@ -196269,23 +196269,23 @@ "year": 1766, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 31.376062706201523, - "c2": -45.62871696388275, - "c3": 28.872078556332937, - "c4": 39.69553485738486, - "c5": -33.34010064875086, - "c6": -43.23023126232113, - "c7": 33.625477921904505 + "points": { + "c1": -49.39925276310897, + "c2": 45.29593262248774, + "c3": -22.756412772344305, + "c4": 41.66714729600035, + "c5": 42.223934008432025, + "c6": -50.439211040979984, + "c7": 49.35142053596792 }, - "vertexSeeds": { - "c1": 4.569965717411615, - "c2": 4.630952344104768, - "c3": 4.656622360902896, - "c4": 4.677280220870253, - "c5": 4.580458811754163, - "c6": 4.588537116877631, - "c7": 4.658483803309769 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773924, + "c3": 5.617198335644937, + "c4": 4.493758668515949, + "c5": 3.370319001386962, + "c6": 2.2468793342579745, + "c7": 1.1234396671289872 }, "rgb": [222, 0, 59] }, @@ -196296,23 +196296,23 @@ "year": 1766, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -16.095177846390957, - "c2": 7.829838875063274, - "c3": 36.65885592063699, - "c4": -27.26787265167735, - "c5": -18.915006221838595, - "c6": -10.818557039460195, - "c7": 12.991715495890496 + "points": { + "c1": 20.125146242828343, + "c2": 9.936266406653182, + "c3": 35.35605487034308, + "c4": -0.7856838658721941, + "c5": 30.015812040637563, + "c6": 6.634050667133678, + "c7": 9.712797261425614 }, - "vertexSeeds": { - "c1": 6.457833518721277, - "c2": 7.093041837677393, - "c3": 6.993052873723872, - "c4": 6.7742580548358955, - "c5": 7.0663505648419, - "c6": 6.877771904992264, - "c7": 7.110420493095605 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761441, + "c3": 8.483587609801203, + "c4": 6.786870087840962, + "c5": 5.090152565880721, + "c6": 3.393435043920481, + "c7": 1.6967175219602404 }, "rgb": [58, 15, 49] }, @@ -196323,23 +196323,23 @@ "year": 1766, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": 50.07285677233141, - "c2": 35.609598036795, - "c3": -45.307609181888836, - "c4": -35.920807263669246, - "c5": 3.161525467958427, - "c6": 15.303038977189054, - "c7": 40.623418290813156 + "points": { + "c1": -40.67199496295683, + "c2": 3.1256288234133507, + "c3": 36.225140381718454, + "c4": 31.05073719180161, + "c5": -7.368686081475126, + "c6": 32.07805296113707, + "c7": -9.656403795350784 }, - "vertexSeeds": { - "c1": 4.262777903268306, - "c2": 4.259391510928531, - "c3": 4.13227204479462, - "c4": 4.2649893796589655, - "c5": 3.9163773854441977, - "c6": 3.9952850028492906, - "c7": 4.481100550894003 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485437, + "c3": 5.663430420711971, + "c4": 4.530744336569578, + "c5": 3.398058252427185, + "c6": 2.2653721682847916, + "c7": 1.1326860841423934 }, "rgb": [238, 201, 159] }, @@ -196350,23 +196350,23 @@ "year": 1765, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -28.698665450462713, - "c2": -11.659163761562422, - "c3": -10.126823060346247, - "c4": -30.857214449520654, - "c5": -13.76103687833886, - "c6": 36.56900492621149, - "c7": -8.282654662011456 + "points": { + "c1": 22.14099768999823, + "c2": -13.726304696873346, + "c3": 27.12804636881434, + "c4": 32.00734824883901, + "c5": -35.080345224404965, + "c6": 23.066856307489033, + "c7": 35.68897891865254 }, - "vertexSeeds": { - "c1": 7.048351531506274, - "c2": 6.96595479020606, - "c3": 6.938053917809365, - "c4": 6.970771096764572, - "c5": 7.0017065645415215, - "c6": 6.952051680689312, - "c7": 6.94533993840524 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721232, + "c3": 8.460471567267705, + "c4": 6.7683772538141795, + "c5": 5.076282940360652, + "c6": 3.3841886269070525, + "c7": 1.6920943134535262 }, "rgb": [238, 201, 159] }, @@ -196377,23 +196377,23 @@ "year": 1766, "resistanceReported": true, "duration": 44323200, - "curveSeeds": { - "c1": -5.923844569508631, - "c2": -23.480150252853562, - "c3": -9.178585688291271, - "c4": -24.419008576332168, - "c5": -29.817212012243367, - "c6": -1.761910897243233, - "c7": 24.325733022569963 + "points": { + "c1": -51.80484768880706, + "c2": 43.952246503715116, + "c3": 47.554842608646055, + "c4": -3.3979082350756755, + "c5": 38.32805883785527, + "c6": 5.841553373435644, + "c7": 54.54173042764634 }, - "vertexSeeds": { - "c1": 3.2138017644817047, - "c2": 3.1366164323613464, - "c3": 3.4397570652021874, - "c4": 4.1900462682821775, - "c5": 3.172111253598561, - "c6": 3.6481179771764936, - "c7": 3.8398005783053 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848822, + "c3": 5.0855293573740195, + "c4": 4.068423485899213, + "c5": 3.051317614424411, + "c6": 2.0342117429496085, + "c7": 1.0171058714748025 }, "rgb": [86, 146, 138] }, @@ -196404,23 +196404,23 @@ "year": 1766, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 21.12576951561082, - "c2": 38.326611127869754, - "c3": -16.49165948813124, - "c4": -31.55492593219146, - "c5": 28.732935095578213, - "c6": -19.40610294684356, - "c7": -8.535292874145814 + "points": { + "c1": 39.444056997108646, + "c2": 38.230008894285945, + "c3": 14.523792272392228, + "c4": 17.43885230453681, + "c5": -19.779568984349858, + "c6": 6.899318021882053, + "c7": 38.663490027916026 }, - "vertexSeeds": { - "c1": 6.32379190207833, - "c2": 6.816487967655352, - "c3": 6.289401976296913, - "c4": 6.812221300380013, - "c5": 6.403289713270121, - "c6": 6.322852438410557, - "c7": 5.685166887560135 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -196431,23 +196431,23 @@ "year": 1766, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": 20.84170834104591, - "c2": 34.43740857544051, - "c3": 1.9384834742101162, - "c4": -42.91290900946699, - "c5": 23.02995728154574, - "c6": 17.64503354627397, - "c7": -8.113319523997369 + "points": { + "c1": -10.452164246875846, + "c2": 47.04654386013585, + "c3": 51.742898666589234, + "c4": 39.23181652811281, + "c5": 17.492366539444966, + "c6": 46.066458675624766, + "c7": 52.69546108324236 }, - "vertexSeeds": { - "c1": 7.1579225966034, - "c2": 7.158696640411652, - "c3": 7.157624381705851, - "c4": 7.187105003075345, - "c5": 7.1746350331937805, - "c6": 7.148730761643278, - "c7": 7.123192452777843 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002823, + "c3": 8.622283865002295, + "c4": 6.897827092001883, + "c5": 5.1733703190013545, + "c6": 3.4489135460009415, + "c7": 1.7244567730004134 }, "rgb": [77, 76, 132] }, @@ -196458,23 +196458,23 @@ "year": 1766, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 30.660958970735336, - "c2": -16.550603841133793, - "c3": -17.080622095156468, - "c4": -6.016084208603402, - "c5": 39.761341958013176, - "c6": 32.44930138923628, - "c7": 19.00925809736725 + "points": { + "c1": 2.484746368576637, + "c2": -18.277296776983864, + "c3": 11.039437846131136, + "c4": -14.762251621407515, + "c5": 36.05132527371393, + "c6": -37.225615615784875, + "c7": 27.742792262075938 }, - "vertexSeeds": { - "c1": 4.902094561342486, - "c2": 4.959651466816655, - "c3": 5.0478306221760025, - "c4": 4.905014221801833, - "c5": 5.032689881172205, - "c6": 4.970237147886531, - "c7": 4.883386925451021 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.2676837725381365, + "c3": 6.0564031437817745, + "c4": 4.845122515025411, + "c5": 3.6338418862690682, + "c6": 2.4225612575127053, + "c7": 1.2112806287563427 }, "rgb": [58, 15, 49] }, @@ -196485,23 +196485,23 @@ "year": 1766, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 35.24326638401651, - "c2": 22.95352621089701, - "c3": -2.774125399532963, - "c4": -9.33569500467624, - "c5": -22.386896478979185, - "c6": -24.77118243844722, - "c7": -26.450116148187014 + "points": { + "c1": -32.538218643672906, + "c2": -28.45904348845063, + "c3": 16.16104097942342, + "c4": 18.51800305345057, + "c5": 36.76495527527946, + "c6": 32.784700237319214, + "c7": 28.453841922433327 }, - "vertexSeeds": { - "c1": 3.6765093171143075, - "c2": 4.116462690193611, - "c3": 3.585599134435516, - "c4": 3.759542176553445, - "c5": 4.188346952563345, - "c6": 3.7278678245527055, - "c7": 3.7670527675902825 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.1086453999075365, + "c4": 4.086916319926027, + "c5": 3.065187239944523, + "c6": 2.0434581599630137, + "c7": 1.0217290799815044 }, "rgb": [77, 76, 132] }, @@ -196512,23 +196512,23 @@ "year": 1766, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": -10.723374123721406, - "c2": 7.035136455034554, - "c3": 16.0735384611649, - "c4": -12.47547830218187, - "c5": 9.240158302613246, - "c6": 17.143440267031224, - "c7": 18.27240175032786 + "points": { + "c1": -30.263378655633126, + "c2": 47.46514280697386, + "c3": 9.422508145913454, + "c4": 25.090958783411224, + "c5": 24.948739282317433, + "c6": 25.340901556089335, + "c7": -47.516970613734635 }, - "vertexSeeds": { - "c1": 1.184196863918341, - "c2": 1.2135429961910291, - "c3": 1.1516703024354702, - "c4": 1.2029545221103173, - "c5": 1.3832234141391275, - "c6": 1.2324115593054217, - "c7": 1.2085612725325008 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.052704576976421, + "c3": 1.7105871474803507, + "c4": 1.36846971798428, + "c5": 1.026352288488212, + "c6": 0.6842348589921413, + "c7": 0.34211742949607066 }, "rgb": [58, 15, 49] }, @@ -196539,23 +196539,23 @@ "year": 1766, "resistanceReported": false, "duration": 49852800, - "curveSeeds": { - "c1": 51.45818613002368, - "c2": 61.74759645266279, - "c3": -47.910434132330025, - "c4": -29.533941291214518, - "c5": 48.09967656328047, - "c6": 6.327452531570785, - "c7": -59.280037438932524 + "points": { + "c1": 66.61122212272451, + "c2": 20.54861435257797, + "c3": 39.88982974567469, + "c4": -35.41602353442721, + "c5": 27.880592292556514, + "c6": 49.633814684285454, + "c7": -9.275175181517177 }, - "vertexSeeds": { - "c1": 4.5959868601907665, - "c2": 4.4369302492711284, - "c3": 4.278625161226575, - "c4": 4.6988408518813545, - "c5": 4.786915326388438, - "c6": 4.793471357394038, - "c7": 4.69289581512304 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.93481276005548, + "c3": 5.779010633379562, + "c4": 4.623208506703651, + "c5": 3.46740638002774, + "c6": 2.3116042533518293, + "c7": 1.1558021266759109 }, "rgb": [58, 15, 49] }, @@ -196566,23 +196566,23 @@ "year": 1766, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 15.756203525648303, - "c2": -14.567249128624333, - "c3": -23.27295272257803, - "c4": -46.67029924565524, - "c5": -44.783446271608014, - "c6": -31.877836257082844, - "c7": -41.02377069610007 + "points": { + "c1": 31.76509148436979, + "c2": 11.808034487590739, + "c3": -2.546576071600647, + "c4": 36.85250692770076, + "c5": 48.36832953969417, + "c6": 28.155989449579636, + "c7": 15.169372526242597 }, - "vertexSeeds": { - "c1": 5.555397278412616, - "c2": 5.480739508299255, - "c3": 5.490723408492861, - "c4": 5.64800265103588, - "c5": 5.4873843603867, - "c6": 5.639032216062979, - "c7": 5.493023362113557 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744792, + "c3": 6.74988441978732, + "c4": 5.399907535829847, + "c5": 4.049930651872419, + "c6": 2.699953767914946, + "c7": 1.349976883957473 }, "rgb": [58, 15, 49] }, @@ -196593,23 +196593,23 @@ "year": 1766, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": -30.35695303726491, - "c2": -20.51046735535054, - "c3": 7.422904474405378, - "c4": -10.163889181975868, - "c5": 19.91578948386489, - "c6": -27.78688088398925, - "c7": 31.540222989899014 + "points": { + "c1": 18.448911036555693, + "c2": 9.72794006524169, + "c3": -14.882292478614666, + "c4": -37.8857548913101, + "c5": 9.875422480673755, + "c6": -49.526844072919516, + "c7": 16.668706475819413 }, - "vertexSeeds": { - "c1": 1.0162646239385256, - "c2": 1.1149355634284872, - "c3": 1.0706550065700031, - "c4": 1.0586426795658705, - "c5": 1.0368534667248155, - "c6": 1.096775129305794, - "c7": 1.0218396390419155 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.6366158113730933, + "c3": 1.363846509477578, + "c4": 1.091077207582063, + "c5": 0.8183079056865478, + "c6": 0.5455386037910303, + "c7": 0.2727693018955174 }, "rgb": [77, 76, 132] }, @@ -196620,23 +196620,23 @@ "year": 1766, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 31.01930521619434, - "c2": 2.607190165073156, - "c3": -31.833431694552768, - "c4": 5.366431945927744, - "c5": -5.416622016610546, - "c6": 4.727799072113704, - "c7": -15.596709024497809 + "points": { + "c1": -20.264010350981646, + "c2": -3.733284497664684, + "c3": 33.67188154258024, + "c4": 23.448238440290574, + "c5": -36.95663743004967, + "c6": -4.168189485424506, + "c7": -9.911173006541848 }, - "vertexSeeds": { - "c1": 1.927706944718484, - "c2": 2.9184489583150004, - "c3": 2.7408494502329215, - "c4": 2.412864997104333, - "c5": 2.5452952361509107, - "c6": 2.866482478290445, - "c7": 2.146259083278819 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475729, + "c3": 3.721682847896441, + "c4": 2.977346278317153, + "c5": 2.2330097087378644, + "c6": 1.4886731391585766, + "c7": 0.7443365695792877 }, "rgb": [238, 201, 159] }, @@ -196647,23 +196647,23 @@ "year": 1766, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -15.870161480454279, - "c2": 18.349727117933618, - "c3": 4.157893812530695, - "c4": -34.436629407800496, - "c5": -4.19833899235563, - "c6": -19.517448530156322, - "c7": -3.2664100037083372 + "points": { + "c1": -32.4808055774322, + "c2": 17.961172351956613, + "c3": -31.4943632979923, + "c4": -16.073759511000453, + "c5": 33.118586538743784, + "c6": -5.114192844443906, + "c7": 5.091725413751419 }, - "vertexSeeds": { - "c1": 5.994739986904824, - "c2": 5.978939801341866, - "c3": 5.504821394310724, - "c4": 6.107393406535438, - "c5": 5.091092868872472, - "c6": 5.6497377055036315, - "c7": 6.168316119346745 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192324, + "c4": 5.899214054553863, + "c5": 4.4244105409153915, + "c6": 2.9496070272769317, + "c7": 1.4748035136384605 }, "rgb": [86, 146, 138] }, @@ -196674,23 +196674,23 @@ "year": 1766, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 3.4003863320374137, - "c2": -19.667338936100528, - "c3": -40.9416292453899, - "c4": -15.990802405066994, - "c5": -25.66043579360321, - "c6": -8.648344299112871, - "c7": -40.21401597500193 + "points": { + "c1": 48.193170659810235, + "c2": 40.11784094064727, + "c3": -26.224817146368167, + "c4": 15.184052172484002, + "c5": -25.892175108792546, + "c6": 40.495053932971445, + "c7": 43.38931293596757 }, - "vertexSeeds": { - "c1": 5.936086255856294, - "c2": 6.691772212377451, - "c3": 5.902782558237232, - "c4": 5.797854695919386, - "c5": 5.495605662692797, - "c6": 6.350438494893499, - "c7": 6.1876661623230635 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731395, + "c4": 6.472491909385117, + "c5": 4.85436893203884, + "c6": 3.236245954692562, + "c7": 1.6181229773462853 }, "rgb": [86, 146, 138] }, @@ -196701,23 +196701,23 @@ "year": 1765, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -7.931139409577085, - "c2": 7.178905619947088, - "c3": -27.110565172424106, - "c4": -18.321091177185558, - "c5": 21.684080906649633, - "c6": 19.320873068419594, - "c7": -27.299036343413515 + "points": { + "c1": 7.729282417721379, + "c2": -24.06265105134384, + "c3": -5.000822298968394, + "c4": 1.584829585887114, + "c5": 19.769949878861148, + "c6": 17.64663917411645, + "c7": 1.888450161008599 }, - "vertexSeeds": { - "c1": 1.222712170944729, - "c2": 1.2824216431411983, - "c3": 1.171255109808596, - "c4": 1.2280308698567535, - "c5": 1.2172483707703514, - "c6": 1.1941053297134354, - "c7": 1.3022318841348892 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.941747572815534, + "c3": 1.618122977346278, + "c4": 1.2944983818770222, + "c5": 0.9708737864077661, + "c6": 0.6472491909385102, + "c7": 0.32362459546925426 }, "rgb": [238, 201, 159] }, @@ -196728,23 +196728,23 @@ "year": 1766, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 3.956548422685046, - "c2": -28.18185736458188, - "c3": -3.1026891788966893, - "c4": 33.9597323848047, - "c5": 14.52089780424376, - "c6": 32.54453337029869, - "c7": -31.508903447788448 + "points": { + "c1": 27.660043243142233, + "c2": -27.06995063876186, + "c3": -20.348158897312523, + "c4": -21.70970888493847, + "c5": 10.28394893304403, + "c6": 21.998064412268498, + "c7": -33.967885919052996 }, - "vertexSeeds": { - "c1": 8.35655181309807, - "c2": 7.961599772720186, - "c3": 9.521875544321798, - "c4": 9.266043121654638, - "c5": 9.103190358300585, - "c6": 8.981748078018256, - "c7": 8.341794748475113 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.675450762829405, + "c3": 11.396208969024508, + "c4": 9.1169671752196, + "c5": 6.837725381414702, + "c6": 4.558483587609805, + "c7": 2.2792417938048977 }, "rgb": [77, 76, 132] }, @@ -196755,23 +196755,23 @@ "year": 1765, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -12.568058862379296, - "c2": 12.836788180608515, - "c3": 15.673515935636622, - "c4": -28.489613583969742, - "c5": 25.111992098950175, - "c6": 29.349005181172835, - "c7": -18.627942202796824 + "points": { + "c1": -20.758578468712223, + "c2": 0.5268379986780403, + "c3": -23.8503334196636, + "c4": -18.52307646898352, + "c5": -25.995469249233476, + "c6": 31.644989095208928, + "c7": -22.819228955001748 }, - "vertexSeeds": { - "c1": 4.088799212980222, - "c2": 4.033246151402139, - "c3": 4.555116099485445, - "c4": 4.156678807388133, - "c5": 4.500132655332163, - "c6": 4.15295115166106, - "c7": 4.569934304227585 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.82385575589459, + "c3": 5.68654646324549, + "c4": 4.5492371705963945, + "c5": 3.411927877947295, + "c6": 2.2746185852981955, + "c7": 1.1373092926490995 }, "rgb": [77, 76, 132] }, @@ -196782,23 +196782,23 @@ "year": 1766, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 1.6837133245039766, - "c2": -4.166505119631726, - "c3": 29.766394971860564, - "c4": 26.694245540217928, - "c5": 8.761509861078324, - "c6": 23.59078812311889, - "c7": -27.62212953512882 + "points": { + "c1": -28.11406361304067, + "c2": -5.251556817414155, + "c3": 12.733656237837145, + "c4": 36.68547704937461, + "c5": 16.070714233732055, + "c6": -18.33134309949586, + "c7": 18.94093051958825 }, - "vertexSeeds": { - "c1": 2.1595971234527758, - "c2": 2.312845360194908, - "c3": 2.32626280466766, - "c4": 2.1403048483298597, - "c5": 2.367347795268142, - "c6": 2.1245721638392125, - "c7": 2.249114954084506 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [222, 0, 59] }, @@ -196809,23 +196809,23 @@ "year": 1766, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 3.0157751355950495, - "c2": -9.351367623873259, - "c3": -2.3821159720871847, - "c4": 12.02650230221397, - "c5": -4.779159266207365, - "c6": -25.112831695324857, - "c7": -29.08213806443805 + "points": { + "c1": -25.676751343106872, + "c2": -1.8493571629631518, + "c3": -5.45692666778125, + "c4": 23.529094252700652, + "c5": -25.922706467397774, + "c6": -32.47198183958848, + "c7": -1.1400711995776547 }, - "vertexSeeds": { - "c1": 6.675423570173515, - "c2": 6.33900700238666, - "c3": 7.298225853698174, - "c4": 6.95723503749922, - "c5": 6.830017875601593, - "c6": 7.3563275034247315, - "c7": 6.781037974905586 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284323, + "c3": 8.784096162736942, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947745, + "c7": 1.7568192325473924 }, "rgb": [238, 201, 159] }, @@ -196836,23 +196836,23 @@ "year": 1766, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 34.89263062436714, - "c2": -8.66001030583088, - "c3": 23.33170235148441, - "c4": -28.552527682289035, - "c5": -30.274202744229676, - "c6": -42.871532039767374, - "c7": -4.673365504967535 + "points": { + "c1": -29.805249814461146, + "c2": -5.906300784916091, + "c3": -32.67177189681759, + "c4": -41.302263053111155, + "c5": 29.087523194399864, + "c6": 45.8602855699726, + "c7": 25.124160807599665 }, - "vertexSeeds": { - "c1": 6.990193147869555, - "c2": 6.6132227449740135, - "c3": 7.128428661488016, - "c4": 7.145254967322578, - "c5": 7.188788085939942, - "c6": 6.725913687368345, - "c7": 6.610507951218689 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244099, + "c3": 8.760980120203424, + "c4": 7.008784096162732, + "c5": 5.256588072122058, + "c6": 3.504392048081366, + "c7": 1.752196024040674 }, "rgb": [222, 0, 59] }, @@ -196863,23 +196863,23 @@ "year": 1766, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -20.91585430551491, - "c2": -39.475917132982715, - "c3": -1.6770891370569956, - "c4": 10.304009729980976, - "c5": 21.407558291204687, - "c6": -29.28708680533272, - "c7": -30.233433668816666 + "points": { + "c1": 41.227890547532375, + "c2": 9.830353105794927, + "c3": -4.682799735622339, + "c4": 28.057197989930707, + "c5": 12.573599762744522, + "c6": -33.86708746047145, + "c7": -0.4690510481497583 }, - "vertexSeeds": { - "c1": 6.841630351667247, - "c2": 6.5759154673267215, - "c3": 6.615462142834828, - "c4": 6.76190995241165, - "c5": 6.84498953095434, - "c6": 6.5664177579330145, - "c7": 6.810677285280207 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.84743411927879, + "c3": 8.206195099398967, + "c4": 6.56495607951918, + "c5": 4.923717059639395, + "c6": 3.2824780397595723, + "c7": 1.6412390198797862 }, "rgb": [58, 15, 49] }, @@ -196890,23 +196890,23 @@ "year": 1766, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -31.096413250127917, - "c2": 31.409309321488266, - "c3": -14.412960294065112, - "c4": 5.91083329554499, - "c5": -9.285674169763244, - "c6": 30.492078624211757, - "c7": 24.793688364083117 + "points": { + "c1": 25.74627371177087, + "c2": 38.981693290550396, + "c3": -32.07186027953594, + "c4": 7.318902548801425, + "c5": -38.09446200929032, + "c6": 13.316462497177099, + "c7": 1.1917414764604572 }, - "vertexSeeds": { - "c1": 4.85211360159737, - "c2": 4.894107019572433, - "c3": 5.039706305285639, - "c4": 5.091660679500425, - "c5": 5.047814470710802, - "c6": 4.956282660611649, - "c7": 5.128231185841177 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [58, 15, 49] }, @@ -196917,23 +196917,23 @@ "year": 1766, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -21.342369287081667, - "c2": 12.590206159971942, - "c3": 5.27794622993121, - "c4": -29.059905606950302, - "c5": 29.637738608402714, - "c6": 4.498395555114428, - "c7": 24.180542782041186 + "points": { + "c1": 31.94477179267247, + "c2": -0.44641109681880664, + "c3": 41.26866637039244, + "c4": -27.919323828078042, + "c5": -8.962884206535414, + "c6": 17.271987686992844, + "c7": -1.9434944796448832 }, - "vertexSeeds": { - "c1": 11.263798742246799, - "c2": 11.188419379943591, - "c3": 10.7001535500086, - "c4": 10.795096036387328, - "c5": 10.767145105616182, - "c6": 11.386785159822503, - "c7": 11.536966063223353 + "offsets": { + "c1": 19.25566343042071, + "c2": 16.504854368932055, + "c3": 13.75404530744336, + "c4": 11.003236245954705, + "c5": 8.252427184466008, + "c6": 5.501618122977352, + "c7": 2.750809061488656 }, "rgb": [77, 76, 132] }, @@ -196944,23 +196944,23 @@ "year": 1766, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 0.109156991114709, - "c2": 15.938871758228757, - "c3": 25.774861995059652, - "c4": 31.887697868641865, - "c5": -25.835763554731027, - "c6": -6.472794207596195, - "c7": 4.802540075828652 + "points": { + "c1": -34.258768458855315, + "c2": 34.221107881842045, + "c3": -4.1002479929949445, + "c4": -5.738988465947173, + "c5": -34.77567110812957, + "c6": -42.53584855558127, + "c7": -19.94036498374721 }, - "vertexSeeds": { - "c1": 5.518582420596801, - "c2": 5.871190630544055, - "c3": 6.11635379218028, - "c4": 5.632088090513715, - "c5": 5.66209903180853, - "c6": 6.162312635704567, - "c7": 6.014638177967514 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.84882108183079, + "c3": 7.3740175681923255, + "c4": 5.89921405455386, + "c5": 4.424410540915395, + "c6": 2.94960702727693, + "c7": 1.474803513638465 }, "rgb": [58, 15, 49] }, @@ -196971,23 +196971,23 @@ "year": 1766, "resistanceReported": true, "duration": 53568000, - "curveSeeds": { - "c1": -44.993659517600115, - "c2": 0.1443213435216535, - "c3": -2.244828039428839, - "c4": -62.10366572024177, - "c5": -14.281454139584774, - "c6": 23.733449147952726, - "c7": 43.57543647463976 + "points": { + "c1": 25.088675151038558, + "c2": 1.2927857885313614, + "c3": -40.20502222294627, + "c4": 33.56815844796621, + "c5": 59.38819441683458, + "c6": 27.42586915880318, + "c7": 65.3185990191806 }, - "vertexSeeds": { - "c1": 5.114187518825048, - "c2": 3.852673168133492, - "c3": 3.31540428572053, - "c4": 5.09902083777786, - "c5": 5.10033676051609, - "c6": 3.9296000165389304, - "c7": 3.5387976607583336 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302358, + "c3": 6.495607951918633, + "c4": 5.196486361534906, + "c5": 3.897364771151181, + "c6": 2.5982431807674544, + "c7": 1.2991215903837272 }, "rgb": [86, 146, 138] }, @@ -196998,23 +196998,23 @@ "year": 1766, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 39.25326419088091, - "c2": -37.99454026791464, - "c3": -0.6606391734729016, - "c4": 38.11733188799799, - "c5": -26.266179635075698, - "c6": -14.26758817917613, - "c7": -13.529372754514437 + "points": { + "c1": -33.13432789875012, + "c2": -36.53161409163022, + "c3": 33.2611611518209, + "c4": 7.349112582431573, + "c5": 30.912365477855218, + "c6": -21.61863949625242, + "c7": -5.582179862000345 }, - "vertexSeeds": { - "c1": 0.7658015408779077, - "c2": 0.7650137845251278, - "c3": 0.7724429141248921, - "c4": 0.7690215991863577, - "c5": 0.7410957161060066, - "c6": 0.730008561223457, - "c7": 0.7273597401853216 + "offsets": { + "c1": 1.3592233009708738, + "c2": 1.1650485436893212, + "c3": 0.970873786407766, + "c4": 0.7766990291262132, + "c5": 0.5825242718446606, + "c6": 0.38834951456310784, + "c7": 0.19417475728155273 }, "rgb": [86, 146, 138] }, @@ -197025,23 +197025,23 @@ "year": 1767, "resistanceReported": false, "duration": 53740800, - "curveSeeds": { - "c1": -29.364712157391047, - "c2": -53.87108323472937, - "c3": 63.53798773053657, - "c4": 51.14557617959234, - "c5": -25.781853167711944, - "c6": -32.00425926139941, - "c7": -37.14151394904995 + "points": { + "c1": -32.67765721132354, + "c2": -4.80401074155931, + "c3": -2.914992103086064, + "c4": -7.062815191761764, + "c5": 19.34943043003794, + "c6": -19.639547020460206, + "c7": -33.73647137792231 }, - "vertexSeeds": { - "c1": 4.31718765391417, - "c2": 4.668342079660897, - "c3": 4.76067647729915, - "c4": 4.1302757699851185, - "c5": 4.829437552849365, - "c6": 4.175223827439876, - "c7": 4.478482513473108 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -197052,23 +197052,23 @@ "year": 1766, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 15.106949148090642, - "c2": -10.569504019811514, - "c3": 27.93175325067903, - "c4": 5.4976626177370775, - "c5": -20.167737117754033, - "c6": -31.53668193277899, - "c7": 2.592508362905768 + "points": { + "c1": 31.15723696459964, + "c2": -3.521175402135178, + "c3": -36.5128482770238, + "c4": 11.677109797965663, + "c5": -27.434218717075417, + "c6": -20.686032332163457, + "c7": 11.67903730934988 }, - "vertexSeeds": { - "c1": 5.023063527623421, - "c2": 5.394389837678409, - "c3": 4.97705434459868, - "c4": 4.925866812677577, - "c5": 5.321751318642062, - "c6": 5.587287026279768, - "c7": 4.85417425284807 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [86, 146, 138] }, @@ -197079,23 +197079,23 @@ "year": 1766, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 30.915652314637654, - "c2": -33.56168700658717, - "c3": 29.01989115099306, - "c4": -9.09952245035473, - "c5": 10.767438958553917, - "c6": 3.7228676243846337, - "c7": 16.11400757422907 + "points": { + "c1": -21.78761259363979, + "c2": 33.856920223101355, + "c3": 10.293827980205094, + "c4": 13.39209646972909, + "c5": -32.058543110953, + "c6": 19.835809110439804, + "c7": -13.414061290975244 }, - "vertexSeeds": { - "c1": 9.84473751357236, - "c2": 9.259829445855502, - "c3": 9.178016854979521, - "c4": 8.999593210299473, - "c5": 10.663964394526058, - "c6": 9.222160396973017, - "c7": 9.160655100907507 + "offsets": { + "c1": 18.25242718446602, + "c2": 15.644937586685169, + "c3": 13.037447988904296, + "c4": 10.429958391123444, + "c5": 7.822468793342574, + "c6": 5.214979195561722, + "c7": 2.607489597780851 }, "rgb": [77, 76, 132] }, @@ -197106,23 +197106,23 @@ "year": 1766, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 38.895285641745936, - "c2": -10.04701522819542, - "c3": 40.92096056725958, - "c4": -12.066482101390797, - "c5": 41.53151858237438, - "c6": 14.484047149415098, - "c7": 13.26192473155723 + "points": { + "c1": 1.113141163998236, + "c2": -35.36379540215206, + "c3": -24.45027886510113, + "c4": -40.25484304403126, + "c5": -4.812121421250403, + "c6": 18.4478471516832, + "c7": -17.143139980519422 }, - "vertexSeeds": { - "c1": 5.714902122205003, - "c2": 6.170418017234217, - "c3": 6.189781521130609, - "c4": 5.610904055332207, - "c5": 5.967174924317136, - "c6": 6.438777023803195, - "c7": 5.656470292096534 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957007, + "c3": 8.021266759130832, + "c4": 6.417013407304668, + "c5": 4.8127600554785035, + "c6": 3.208506703652339, + "c7": 1.6042533518261646 }, "rgb": [58, 15, 49] }, @@ -197133,23 +197133,23 @@ "year": 1766, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 27.920108849463574, - "c2": -1.2335708158504346, - "c3": -1.0394537425638788, - "c4": -1.5445784280592179, - "c5": 6.714857055791207, - "c6": -17.598033419717964, - "c7": 33.289678664635574 + "points": { + "c1": -18.363465456654378, + "c2": -21.15414564643308, + "c3": -19.62935161280705, + "c4": -23.801063182704922, + "c5": -13.051010774713756, + "c6": -33.82087078884462, + "c7": 13.90921838185838 }, - "vertexSeeds": { - "c1": 5.737585862466975, - "c2": 5.970548962006711, - "c3": 6.559627252208172, - "c4": 6.000769429085004, - "c5": 6.278673014392105, - "c6": 6.01998075941943, - "c7": 5.876147288899267 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635228, + "c3": 7.836338418862691, + "c4": 6.269070735090152, + "c5": 4.701803051317614, + "c6": 3.134535367545076, + "c7": 1.567267683772538 }, "rgb": [77, 76, 132] }, @@ -197160,23 +197160,23 @@ "year": 1766, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 37.03994237167008, - "c2": -12.698992049853892, - "c3": -15.206217763091807, - "c4": 9.33440794696643, - "c5": -27.02891975643557, - "c6": -25.837137441178434, - "c7": 7.3848293623912085 + "points": { + "c1": 37.47164320571497, + "c2": 32.89346450071794, + "c3": 38.3446305814893, + "c4": -21.567053014955718, + "c5": 38.2686794777578, + "c6": 26.356340124006095, + "c7": 9.702543484204675 }, - "vertexSeeds": { - "c1": 8.836744923439639, - "c2": 8.808716145151115, - "c3": 9.386598030684794, - "c4": 8.903217332199688, - "c5": 8.873931490683495, - "c6": 8.967244317270776, - "c7": 9.177108655997335 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668519, + "c3": 11.303744798890436, + "c4": 9.042995839112333, + "c5": 6.78224687933425, + "c6": 4.521497919556166, + "c7": 2.260748959778083 }, "rgb": [238, 201, 159] }, @@ -197187,23 +197187,23 @@ "year": 1766, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": 15.636342415078296, - "c2": 14.980817382733541, - "c3": -15.80494941629177, - "c4": -48.359562218393634, - "c5": 14.92015948812513, - "c6": 30.7454663446536, - "c7": -24.33459774006266 + "points": { + "c1": -53.58416096280747, + "c2": 51.85979213385685, + "c3": 42.56315104012126, + "c4": 5.907218062822039, + "c5": -28.850459697746945, + "c6": -41.205434688413035, + "c7": 28.607171472559422 }, - "vertexSeeds": { - "c1": 1.578895819964347, - "c2": 1.6185004360078885, - "c3": 1.5563808777198098, - "c4": 1.4955270066790367, - "c5": 1.5316155557383357, - "c6": 1.6123050717267942, - "c7": 1.631451965308562 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.357836338418864, + "c3": 1.9648636153490502, + "c4": 1.5718908922792412, + "c5": 1.178918169209432, + "c6": 0.785945446139623, + "c7": 0.39297272306980907 }, "rgb": [58, 15, 49] }, @@ -197214,23 +197214,23 @@ "year": 1765, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 25.242861090611797, - "c2": 6.150621184420039, - "c3": 14.891495652607368, - "c4": 19.692990567221514, - "c5": -16.330321937067794, - "c6": -5.955873595381739, - "c7": -1.3612554334173517 + "points": { + "c1": 20.560469803956586, + "c2": -32.28154409641865, + "c3": 27.337699998030438, + "c4": -8.467420341618421, + "c5": 26.36292030777318, + "c6": 32.324965070370105, + "c7": 14.57674347385241 }, - "vertexSeeds": { - "c1": 6.316365539561483, - "c2": 6.421964592794142, - "c3": 5.994371412313326, - "c4": 6.157762379816764, - "c5": 6.2161961154196845, - "c6": 6.210475198126963, - "c7": 6.052813231474171 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661575, + "c4": 6.158113730929257, + "c5": 4.618585298196956, + "c6": 3.0790568654646377, + "c7": 1.5395284327323189 }, "rgb": [238, 201, 159] }, @@ -197241,23 +197241,23 @@ "year": 1765, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -7.338432873836023, - "c2": 5.384915850674339, - "c3": 20.209197926443018, - "c4": 21.542439158472703, - "c5": 23.647206397184682, - "c6": -10.636802852534615, - "c7": 3.722245418210534 + "points": { + "c1": -14.934700166835803, + "c2": -2.293372192837964, + "c3": 17.57020458758894, + "c4": 14.44923329960924, + "c5": -26.38898825789585, + "c6": 26.020492518565177, + "c7": -8.211142823133478 }, - "vertexSeeds": { - "c1": 5.297887847266233, - "c2": 4.524300767504245, - "c3": 5.277503279055067, - "c4": 4.487458260993851, - "c5": 4.317329810333329, - "c6": 4.65301994306964, - "c7": 5.149456862686266 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -197268,23 +197268,23 @@ "year": 1766, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 9.562103537343688, - "c2": 9.519593214090683, - "c3": 10.202524654465023, - "c4": -0.014685550143859416, - "c5": 29.196917940606724, - "c6": -3.490092991090769, - "c7": 14.00736311049478 + "points": { + "c1": 37.191285739543474, + "c2": -10.071954824568664, + "c3": -22.35442450054157, + "c4": 0.7011269660035211, + "c5": 13.292728803972395, + "c6": -19.701657500239886, + "c7": -31.341023523573703 }, - "vertexSeeds": { - "c1": 9.371761661946355, - "c2": 9.359717319185764, - "c3": 8.817799032407974, - "c4": 9.262547265575677, - "c5": 9.362173819073362, - "c6": 9.14616100171442, - "c7": 9.096164190317857 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588082, + "c3": 11.25751271382339, + "c4": 9.006010171058723, + "c5": 6.754507628294028, + "c6": 4.503005085529361, + "c7": 2.251502542764667 }, "rgb": [222, 0, 59] }, @@ -197295,23 +197295,23 @@ "year": 1766, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 13.013807479657324, - "c2": 19.617076445255528, - "c3": 32.589899463731925, - "c4": 17.87583406930768, - "c5": -29.151136462716153, - "c6": 13.191983044552813, - "c7": 11.45232390397831 + "points": { + "c1": -5.172086881228889, + "c2": 35.23485938995306, + "c3": 18.058419752747305, + "c4": -16.886891305902267, + "c5": 18.073224533154374, + "c6": 16.8972694863268, + "c7": 33.1802655896617 }, - "vertexSeeds": { - "c1": 5.708836197331134, - "c2": 5.437567538798882, - "c3": 5.719139252917688, - "c4": 5.395033278336988, - "c5": 4.957843287607726, - "c6": 4.957543295075155, - "c7": 5.623945017314902 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [238, 201, 159] }, @@ -197322,23 +197322,23 @@ "year": 1765, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -6.243544708984928, - "c2": 23.971033358116966, - "c3": -17.89766336711513, - "c4": -13.708372962342214, - "c5": 10.675694253123265, - "c6": -16.541430336884005, - "c7": -0.8728155583342776 + "points": { + "c1": 13.07967012901646, + "c2": -5.399699977893526, + "c3": -3.316871101863967, + "c4": 30.17968575222275, + "c5": -8.423563883873591, + "c6": -6.0788471525784225, + "c7": 22.380355023355587 }, - "vertexSeeds": { - "c1": 8.843813751985602, - "c2": 8.593014501404442, - "c3": 8.982426232412951, - "c4": 9.246540484557377, - "c5": 8.598785062504115, - "c6": 8.809475148385463, - "c7": 9.517416507359236 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513182, + "c3": 11.789181692094314, + "c4": 9.431345353675455, + "c5": 7.073509015256586, + "c6": 4.715672676837728, + "c7": 2.3578363384188696 }, "rgb": [77, 76, 132] }, @@ -197349,23 +197349,23 @@ "year": 1765, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -16.685399596088757, - "c2": 15.270097322609153, - "c3": 30.489041574249406, - "c4": -9.058337957677427, - "c5": -2.235337800402629, - "c6": 6.763794182143904, - "c7": -19.2382310511595 + "points": { + "c1": 22.48188078918824, + "c2": -19.252104597813293, + "c3": 30.354523760612743, + "c4": -3.1949615326588763, + "c5": -7.0048548971903415, + "c6": 8.184192663326954, + "c7": -12.132276620833284 }, - "vertexSeeds": { - "c1": 3.6721191897958945, - "c2": 3.177963619793815, - "c3": 3.500648306256812, - "c4": 3.5325263667931592, - "c5": 3.239411676871633, - "c6": 3.42345861510507, - "c7": 3.463313305340016 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435509, + "c4": 3.550624133148406, + "c5": 2.662968099861303, + "c6": 1.7753120665742061, + "c7": 0.8876560332871031 }, "rgb": [58, 15, 49] }, @@ -197376,23 +197376,23 @@ "year": 1766, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 2.0823825943318823, - "c2": 11.027351556188009, - "c3": 18.213870520593254, - "c4": 42.977005592150356, - "c5": -46.41305256913588, - "c6": -9.763929711561154, - "c7": -50.99014756061157 + "points": { + "c1": 41.53189375838418, + "c2": -49.656950759391144, + "c3": 43.220107328664476, + "c4": 33.75708656920309, + "c5": 26.25541449533933, + "c6": 40.02207039420184, + "c7": -7.883384467383507 }, - "vertexSeeds": { - "c1": 1.1083581852216022, - "c2": 1.0751237378839273, - "c3": 1.070123023949121, - "c4": 1.1468716751481842, - "c5": 1.11541437129075, - "c6": 1.1598986788908086, - "c7": 1.1733140146469014 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937581, + "c3": 1.4331946370781325, + "c4": 1.1465557096625054, + "c5": 0.8599167822468798, + "c6": 0.5732778548312527, + "c7": 0.28663892741562713 }, "rgb": [86, 146, 138] }, @@ -197403,23 +197403,23 @@ "year": 1766, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -8.867207479200243, - "c2": 24.281784934454826, - "c3": -27.533173281564302, - "c4": 32.13297821407096, - "c5": -28.922832946875907, - "c6": -16.975913912291986, - "c7": 21.649751383883505 + "points": { + "c1": -28.021951630648214, + "c2": -34.57945467372046, + "c3": -30.5064617777359, + "c4": 22.34072119836506, + "c5": -20.857945780417666, + "c6": 24.490118255471238, + "c7": 3.182750911172029 }, - "vertexSeeds": { - "c1": 4.087004254708864, - "c2": 4.9328964362061365, - "c3": 5.107189457637607, - "c4": 4.769484206934987, - "c5": 4.373062655081573, - "c6": 4.082828587707992, - "c7": 4.793173680630242 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -197430,23 +197430,23 @@ "year": 1765, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 2.2498847987315713, - "c2": 12.107055424901453, - "c3": 1.0305403610388453, - "c4": 15.5243272754713, - "c5": 17.93850264843128, - "c6": -13.280314143108313, - "c7": 10.775314874644636 + "points": { + "c1": 26.48679564995114, + "c2": 20.626565222930736, + "c3": -6.817786930831581, + "c4": 23.83451118767846, + "c5": 30.20265394558242, + "c6": -14.98653207599338, + "c7": 11.761923740972279 }, - "vertexSeeds": { - "c1": 5.585154064290254, - "c2": 5.9223432732062475, - "c3": 6.358871890824731, - "c4": 5.579078882580156, - "c5": 5.960386576720868, - "c6": 5.447056334786117, - "c7": 6.195780887543806 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595005, + "c3": 7.813222376329175, + "c4": 6.250577901063336, + "c5": 4.687933425797507, + "c6": 3.125288950531668, + "c7": 1.5626444752658388 }, "rgb": [238, 201, 159] }, @@ -197457,23 +197457,23 @@ "year": 1766, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 29.478362840916077, - "c2": -5.726994405029927, - "c3": -1.4884855479385806, - "c4": 1.6617864755866307, - "c5": -24.00943513728034, - "c6": 34.031035258408835, - "c7": -32.51525115727981 + "points": { + "c1": 25.908952271278963, + "c2": 25.94754733465932, + "c3": 22.998097176570766, + "c4": 41.119758264531086, + "c5": 34.63902639496962, + "c6": 1.2239617066568798, + "c7": -30.1295092898795 }, - "vertexSeeds": { - "c1": 0.8997781035524179, - "c2": 0.9384133566226712, - "c3": 0.9531178617409796, - "c4": 0.9017161247701668, - "c5": 0.9154556142772945, - "c6": 0.8900624952529803, - "c7": 0.9881934156802008 + "offsets": { + "c1": 1.6828478964401297, + "c2": 1.4424410540915404, + "c3": 1.2020342117429497, + "c4": 0.9616273693943603, + "c5": 0.7212205270457693, + "c6": 0.48081368469718017, + "c7": 0.24040684234859092 }, "rgb": [238, 201, 159] }, @@ -197484,23 +197484,23 @@ "year": 1766, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 37.34760397971198, - "c2": 11.0845799344158, - "c3": -42.550683350626386, - "c4": 36.89539353511026, - "c5": -46.28601057219367, - "c6": 32.21182169751812, - "c7": -17.582328624556727 + "points": { + "c1": -20.263341239142797, + "c2": 3.2355355241372905, + "c3": 21.538804628139644, + "c4": -11.073990319805944, + "c5": -20.66779816871265, + "c6": 0.383987573598084, + "c7": -29.118078177095185 }, - "vertexSeeds": { - "c1": 5.772557557756815, - "c2": 4.774354330730863, - "c3": 5.726823113893622, - "c4": 5.503926316139956, - "c5": 4.792851511118283, - "c6": 5.148454108720133, - "c7": 5.872392816846009 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622746, + "c3": 7.027276930189547, + "c4": 5.621821544151644, + "c5": 4.216366158113733, + "c6": 2.81091077207582, + "c7": 1.4054553860379078 }, "rgb": [238, 201, 159] }, @@ -197511,23 +197511,23 @@ "year": 1766, "resistanceReported": false, "duration": 49334400, - "curveSeeds": { - "c1": -56.44580417761903, - "c2": 22.7745607917074, - "c3": 25.1552882995138, - "c4": -24.47819873351601, - "c5": -39.405054393660976, - "c6": 15.17014082341123, - "c7": -31.440906714354654 + "points": { + "c1": 3.25254742915304, + "c2": -61.331408651269086, + "c3": -35.75641703141817, + "c4": -39.42263670776302, + "c5": -49.020027698979085, + "c6": 45.16156682896701, + "c7": -61.14220549683002 }, - "vertexSeeds": { - "c1": 10.565418693792063, - "c2": 7.741859708553438, - "c3": 7.063471445377072, - "c4": 8.392500333455168, - "c5": 6.681314214046964, - "c6": 8.479577430363278, - "c7": 8.360772726052032 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122051, + "c3": 12.71382339343504, + "c4": 10.171058714748034, + "c5": 7.628294036061023, + "c6": 5.085529357374015, + "c7": 2.542764678687009 }, "rgb": [86, 146, 138] }, @@ -197538,23 +197538,23 @@ "year": 1766, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -29.01722143675845, - "c2": -17.38896635557769, - "c3": -30.389791276050047, - "c4": -22.43275502355607, - "c5": 29.835950027076763, - "c6": -12.92310580480919, - "c7": -12.38035566096648 + "points": { + "c1": -12.799367444574791, + "c2": -4.81236462005343, + "c3": -32.264564106188836, + "c4": 19.93696766258001, + "c5": 27.288996939713172, + "c6": -9.997430780722116, + "c7": -34.07304488292598 }, - "vertexSeeds": { - "c1": 11.097127089284703, - "c2": 11.510495473366898, - "c3": 11.36523400565601, - "c4": 11.229449916062034, - "c5": 11.758664118411254, - "c6": 11.28726401346731, - "c7": 11.483937035673744 + "offsets": { + "c1": 19.77346278317152, + "c2": 16.94868238557561, + "c3": 14.123901987979652, + "c4": 11.299121590383738, + "c5": 8.474341192787783, + "c6": 5.649560795191869, + "c7": 2.824780397595914 }, "rgb": [238, 201, 159] }, @@ -197565,23 +197565,23 @@ "year": 1766, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -6.726495872778983, - "c2": 1.7844337314301626, - "c3": 23.083851344080976, - "c4": 13.113288048098418, - "c5": -36.33855974636373, - "c6": -41.87991261390463, - "c7": 28.28636180585584 + "points": { + "c1": -27.6579003657906, + "c2": -41.67114155083485, + "c3": 0.7336859707101411, + "c4": -5.467163565036699, + "c5": 18.35051498805999, + "c6": -47.51296246183458, + "c7": 5.042741288973922 }, - "vertexSeeds": { - "c1": 4.942905218886494, - "c2": 5.580980105710731, - "c3": 7.169604097375496, - "c4": 5.5170544240364965, - "c5": 6.18644554917303, - "c6": 7.434834255889154, - "c7": 5.073057492554356 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927877, + "c3": 9.15395284327323, + "c4": 7.323162274618587, + "c5": 5.492371705963939, + "c6": 3.6615811373092924, + "c7": 1.8307905686546448 }, "rgb": [86, 146, 138] }, @@ -197592,23 +197592,23 @@ "year": 1766, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -13.679343289626324, - "c2": -5.277046503435166, - "c3": -21.20164812193736, - "c4": -10.838937455991253, - "c5": -5.344527416828569, - "c6": 28.790205237699794, - "c7": -5.160989375787953 + "points": { + "c1": 0.7160938334467204, + "c2": -16.586792044907916, + "c3": -2.9548535495212676, + "c4": 4.169425744413175, + "c5": 13.28980733704568, + "c6": 29.822104286803075, + "c7": 16.42562350106013 }, - "vertexSeeds": { - "c1": 5.820276107955496, - "c2": 6.001029301481136, - "c3": 5.873201113406513, - "c4": 5.723959817389769, - "c5": 5.892155869021596, - "c6": 5.564937410652556, - "c7": 5.993358514802498 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [238, 201, 159] }, @@ -197619,23 +197619,23 @@ "year": 1766, "resistanceReported": false, "duration": 42422400, - "curveSeeds": { - "c1": 14.64529310493753, - "c2": -12.313690794051432, - "c3": 45.41012387102328, - "c4": 37.558858055205754, - "c5": -42.543467204294195, - "c6": 37.803884902581835, - "c7": -6.47992375207226 + "points": { + "c1": -24.783622678702095, + "c2": 19.95305639237943, + "c3": 45.315260735213336, + "c4": 58.276421773044184, + "c5": -17.35206800738709, + "c6": 8.759332365485712, + "c7": 1.0302247754900975 }, - "vertexSeeds": { - "c1": 5.04478313553747, - "c2": 5.085701267297732, - "c3": 4.7842000804228, - "c4": 4.903496242879445, - "c5": 5.157075253391314, - "c6": 4.679494064292407, - "c7": 5.252915847251918 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -197646,23 +197646,23 @@ "year": 1766, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -10.497656832193677, - "c2": 2.142178232693574, - "c3": -27.945229383389677, - "c4": -25.330230724764377, - "c5": -8.567169631938071, - "c6": -32.458309734032994, - "c7": 32.19754221061563 + "points": { + "c1": 29.809051824023875, + "c2": -25.652610106838065, + "c3": -9.34028715804931, + "c4": 23.37735078440808, + "c5": -33.21018135826534, + "c6": -33.857103205242694, + "c7": -27.020972376890043 }, - "vertexSeeds": { - "c1": 5.402374940135, - "c2": 5.2047239061092885, - "c3": 5.261608040526899, - "c4": 5.333300474227868, - "c5": 5.190932089130345, - "c6": 5.425794665514032, - "c7": 5.369789047042914 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543687, + "c3": 6.634304207119734, + "c4": 5.307443365695781, + "c5": 3.980582524271857, + "c6": 2.653721682847905, + "c7": 1.3268608414239524 }, "rgb": [238, 201, 159] }, @@ -197673,23 +197673,23 @@ "year": 1766, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -2.765501884852874, - "c2": 46.98671457170241, - "c3": -5.662421428899663, - "c4": -34.524675990684315, - "c5": -14.87338678941186, - "c6": 24.81074971066637, - "c7": -15.25034388137329 + "points": { + "c1": -19.38085992135572, + "c2": -22.3871123596645, + "c3": 20.533373510818052, + "c4": 20.48975570414207, + "c5": 23.483425621526095, + "c6": 24.646365250509348, + "c7": 42.1858671749839 }, - "vertexSeeds": { - "c1": 3.7680125087757657, - "c2": 3.6526033921986745, - "c3": 3.569237292328259, - "c4": 3.3752663335395066, - "c5": 3.4031017580585097, - "c6": 3.4647839734097556, - "c7": 3.566297473885508 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [86, 146, 138] }, @@ -197700,23 +197700,23 @@ "year": 1766, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -30.108604846449204, - "c2": 31.207941060078923, - "c3": -45.33853419245033, - "c4": -21.116877839640214, - "c5": 26.986282879634686, - "c6": 28.717138103178073, - "c7": 8.350691728250837 + "points": { + "c1": -27.27576467028215, + "c2": -12.789645980590471, + "c3": 45.600275306086175, + "c4": -35.07353485495805, + "c5": 25.138159998085413, + "c6": 8.07027215956088, + "c7": 7.719422212605316 }, - "vertexSeeds": { - "c1": 4.09805375915222, - "c2": 4.297889806713679, - "c3": 4.428539770263343, - "c4": 4.363845933671804, - "c5": 4.427116151144446, - "c6": 4.257972115967981, - "c7": 4.329871044657566 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251038, + "c3": 5.316689782709206, + "c4": 4.253351826167362, + "c5": 3.190013869625519, + "c6": 2.126675913083687, + "c7": 1.0633379565418435 }, "rgb": [238, 201, 159] }, @@ -197727,23 +197727,23 @@ "year": 1766, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -33.235899528268746, - "c2": -4.0351628886192685, - "c3": -33.79520390257766, - "c4": -3.538195098362074, - "c5": -31.65314797459167, - "c6": 17.938009735456156, - "c7": -5.620402224532043 + "points": { + "c1": -14.938227746976253, + "c2": 3.74795552108057, + "c3": -35.08799345315722, + "c4": 2.555840747644673, + "c5": -3.3916577766008587, + "c6": 13.474305441806159, + "c7": 33.284718211600584 }, - "vertexSeeds": { - "c1": 7.031561769115813, - "c2": 6.60957331718249, - "c3": 6.925706424865645, - "c4": 6.119289664550607, - "c5": 6.6575623369912265, - "c6": 6.369438755917769, - "c7": 6.268250471517597 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640774, + "c3": 8.414239482200642, + "c4": 6.7313915857605116, + "c5": 5.048543689320394, + "c6": 3.3656957928802624, + "c7": 1.6828478964401312 }, "rgb": [58, 15, 49] }, @@ -197754,23 +197754,23 @@ "year": 1766, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 35.510079337037055, - "c2": 8.1911579406596, - "c3": -18.364191728818295, - "c4": 23.357752572402454, - "c5": -34.04916833523618, - "c6": 13.575250119258037, - "c7": -22.052544661271618 + "points": { + "c1": -11.68489792718039, + "c2": -20.040390811877018, + "c3": 28.42194854097518, + "c4": -23.5522403247897, + "c5": 30.115642803887127, + "c6": -4.198261873369944, + "c7": -21.964694709826297 }, - "vertexSeeds": { - "c1": 3.025561706151897, - "c2": 2.8018220242122918, - "c3": 2.8178848580575964, - "c4": 2.676986489937758, - "c5": 3.014026775283456, - "c6": 3.0213383416684785, - "c7": 2.7132613965026624 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355063, + "c3": 3.6523347202958876, + "c4": 2.9218677762367116, + "c5": 2.1914008321775356, + "c6": 1.460933888118352, + "c7": 0.730466944059176 }, "rgb": [222, 0, 59] }, @@ -197781,23 +197781,23 @@ "year": 1766, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 30.852023347070485, - "c2": 10.716199848777045, - "c3": 20.187124967679644, - "c4": -28.070166109323505, - "c5": -12.196355712680482, - "c6": 34.256204729377885, - "c7": -3.7447556032784455 + "points": { + "c1": 8.410224989327624, + "c2": 9.23609745016654, + "c3": 24.92744371221746, + "c4": -31.35136709974026, + "c5": -18.8891175257658, + "c6": 24.938882017486122, + "c7": -17.492338653072682 }, - "vertexSeeds": { - "c1": 10.162017065839636, - "c2": 10.517197290670785, - "c3": 10.347902473835735, - "c4": 11.84222398574241, - "c5": 12.003330261354392, - "c6": 10.022960176561085, - "c7": 11.635885484440468 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.19833564493759, + "c3": 14.331946370781331, + "c4": 11.465557096625052, + "c5": 8.599167822468791, + "c6": 5.732778548312531, + "c7": 2.8663892741562704 }, "rgb": [238, 201, 159] }, @@ -197808,23 +197808,23 @@ "year": 1766, "resistanceReported": false, "duration": 49939200, - "curveSeeds": { - "c1": -64.42587289310595, - "c2": -37.78558357225906, - "c3": 34.05274276468302, - "c4": 39.657296466304516, - "c5": -23.559806862875007, - "c6": 7.184047463644873, - "c7": 49.32703824777512 + "points": { + "c1": -53.656465209145416, + "c2": -57.97958489539306, + "c3": -52.546017635081334, + "c4": -63.90000033898923, + "c5": -4.701597618327753, + "c6": 35.894275646228834, + "c7": -37.705859587877086 }, - "vertexSeeds": { - "c1": 7.114343797553892, - "c2": 7.132815654410868, - "c3": 6.206061143282682, - "c4": 7.16832977804255, - "c5": 6.480842565988768, - "c6": 6.943230008695812, - "c7": 7.194269148152271 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123444, + "c3": 8.691631992602865, + "c4": 6.9533055940822965, + "c5": 5.214979195561716, + "c6": 3.4766527970411483, + "c7": 1.738326398520568 }, "rgb": [86, 146, 138] }, @@ -197835,23 +197835,23 @@ "year": 1765, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": 22.169819721561538, - "c2": -16.420745974279114, - "c3": 8.82277930562551, - "c4": -3.7991639472945984, - "c5": 19.573199248180593, - "c6": -7.4642696233634585, - "c7": -5.953099104927766 + "points": { + "c1": -16.47138805047291, + "c2": 9.15287874010177, + "c3": -5.190288966166541, + "c4": -18.052743982496906, + "c5": 21.15055335192509, + "c6": -23.84882599160094, + "c7": 11.578581804065117 }, - "vertexSeeds": { - "c1": 1.597290612129247, - "c2": 1.4992820508841995, - "c3": 1.3867412196976112, - "c4": 1.6572549396436396, - "c5": 1.5556623374120009, - "c6": 1.4868280520121342, - "c7": 1.3955422447150718 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499307, + "c3": 2.011095700416089, + "c4": 1.608876560332872, + "c5": 1.2066574202496545, + "c6": 0.8044382801664347, + "c7": 0.40221914008321735 }, "rgb": [222, 0, 59] }, @@ -197862,23 +197862,23 @@ "year": 1765, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -11.39552508439048, - "c2": 19.013667690287715, - "c3": 0.6599996637420276, - "c4": 2.0877043155060413, - "c5": -14.571104871929618, - "c6": -6.884417542861996, - "c7": -14.233401041410774 + "points": { + "c1": -6.4410718770326945, + "c2": 3.1301632049908967, + "c3": 5.827107202967316, + "c4": -6.345216524800556, + "c5": -8.131380530405426, + "c6": 9.969647595961472, + "c7": -0.17123365617651842 }, - "vertexSeeds": { - "c1": 1.5015079714914534, - "c2": 1.4633804560876968, - "c3": 1.4730706427546687, - "c4": 1.4984626009161834, - "c5": 1.4677682432471926, - "c6": 1.4650650043273323, - "c7": 1.485984322914022 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217755, + "c3": 1.8492834026814637, + "c4": 1.479426722145173, + "c5": 1.1095700416088727, + "c6": 0.7397133610725818, + "c7": 0.3698566805362909 }, "rgb": [86, 146, 138] }, @@ -197889,23 +197889,23 @@ "year": 1765, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": 12.771158564345278, - "c2": 6.786830984787333, - "c3": 6.964250752705524, - "c4": 5.998723888284058, - "c5": -19.606346008637633, - "c6": 19.308970844339846, - "c7": 0.2522852068729158 + "points": { + "c1": 22.019687562813893, + "c2": 15.405967229864693, + "c3": 9.93210365353442, + "c4": -8.541798542692227, + "c5": -23.672207062214778, + "c6": -16.929682667975754, + "c7": -11.534873216700033 }, - "vertexSeeds": { - "c1": 8.628319756905354, - "c2": 8.194670853189518, - "c3": 8.211137342197208, - "c4": 9.159281703628567, - "c5": 8.458193579642742, - "c6": 8.31468973915332, - "c7": 7.927128861638556 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306518, + "c3": 11.095700416088768, + "c4": 8.876560332871016, + "c5": 6.657420249653265, + "c6": 4.438280166435513, + "c7": 2.2191400832177623 }, "rgb": [238, 201, 159] }, @@ -197916,23 +197916,23 @@ "year": 1766, "resistanceReported": false, "duration": 42336000, - "curveSeeds": { - "c1": 17.074371004111995, - "c2": 1.8328603253129216, - "c3": 34.808534956102946, - "c4": -8.239016578507169, - "c5": -23.850972517886838, - "c6": 33.05379717646895, - "c7": 32.03157482456747 + "points": { + "c1": -22.6859512584779, + "c2": 23.023457025056985, + "c3": -47.45055268119872, + "c4": -13.835051003356739, + "c5": 5.606149204287632, + "c6": -43.753128791803135, + "c7": -23.380047472956875 }, - "vertexSeeds": { - "c1": 6.977414870111186, - "c2": 5.691294149383853, - "c3": 7.436681708374897, - "c4": 5.84977088277004, - "c5": 7.180260265358261, - "c6": 5.989586519376613, - "c7": 6.045593137132366 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.12343966712899, + "c3": 9.269533055940824, + "c4": 7.41562644475266, + "c5": 5.561719833564496, + "c6": 3.7078132223763323, + "c7": 1.8539066111881644 }, "rgb": [58, 15, 49] }, @@ -197943,23 +197943,23 @@ "year": 1766, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 30.425229370593286, - "c2": 22.05938797464988, - "c3": -10.198674824060891, - "c4": -11.801956386363003, - "c5": 24.74695119208114, - "c6": 31.912745404373098, - "c7": 21.941270323298255 + "points": { + "c1": 17.038941130787244, + "c2": 2.4551957862038307, + "c3": 31.69932930504892, + "c4": 17.989813540354255, + "c5": -9.224940300634028, + "c6": 10.780197825086468, + "c7": 17.04640028148939 }, - "vertexSeeds": { - "c1": 3.7041890296983433, - "c2": 4.070361597158001, - "c3": 3.9761952781470913, - "c4": 4.164533546904797, - "c5": 4.281675627983715, - "c6": 3.8798717930252895, - "c7": 3.73477414815005 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [58, 15, 49] }, @@ -197970,23 +197970,23 @@ "year": 1765, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -16.18856044204685, - "c2": -8.872795747476122, - "c3": 17.219587857265363, - "c4": -3.4817290741567213, - "c5": 27.54717754476356, - "c6": -8.687945434464908, - "c7": -14.100300749326324 + "points": { + "c1": 15.436502820620493, + "c2": -19.986233454932254, + "c3": 11.372621734004756, + "c4": -11.495356406530625, + "c5": -14.546708034198748, + "c6": -20.21049444762384, + "c7": -13.900062480153775 }, - "vertexSeeds": { - "c1": 5.620022221683789, - "c2": 5.723788891177114, - "c3": 5.7329413326205065, - "c4": 5.948691265876705, - "c5": 6.23089629003098, - "c6": 5.551161188853562, - "c7": 6.085300808099393 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -197997,23 +197997,23 @@ "year": 1766, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -29.634303640853222, - "c2": 32.959790808668764, - "c3": -14.36161147501089, - "c4": 18.256160896354523, - "c5": -19.573028030355875, - "c6": 23.399374508254652, - "c7": 29.021763580298916 + "points": { + "c1": 20.66246839766805, + "c2": -27.79351689860662, + "c3": -20.517659861543347, + "c4": -31.56203385450786, + "c5": -14.474823637602078, + "c6": -36.68741669559454, + "c7": -8.836058290334506 }, - "vertexSeeds": { - "c1": 7.177888186167783, - "c2": 6.379441779569181, - "c3": 7.217166879823056, - "c4": 7.675164304490441, - "c5": 6.99333306560152, - "c6": 6.799419133597841, - "c7": 6.953641387754709 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128984, + "c3": 9.269533055940817, + "c4": 7.41562644475266, + "c5": 5.561719833564492, + "c6": 3.707813222376325, + "c7": 1.8539066111881675 }, "rgb": [86, 146, 138] }, @@ -198024,23 +198024,23 @@ "year": 1766, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 4.743590651113848, - "c2": 28.759762861263553, - "c3": -27.43581882718521, - "c4": -22.50108106391776, - "c5": 11.175362943616136, - "c6": 30.22161960215655, - "c7": 23.1497306380203 + "points": { + "c1": -21.030440622486154, + "c2": -26.857628196578744, + "c3": 18.645551267403683, + "c4": -24.59513325850765, + "c5": 22.142165504060216, + "c6": 2.140285328675546, + "c7": 1.5053374912453634 }, - "vertexSeeds": { - "c1": 6.421107338461458, - "c2": 5.785105268050836, - "c3": 6.204364576755923, - "c4": 5.781824764407852, - "c5": 6.275678222774639, - "c6": 6.612126893955878, - "c7": 6.59724432621207 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916778, + "c3": 7.99815071659732, + "c4": 6.398520573277852, + "c5": 4.798890429958393, + "c6": 3.199260286638926, + "c7": 1.599630143319458 }, "rgb": [77, 76, 132] }, @@ -198051,23 +198051,23 @@ "year": 1766, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 3.9536209811909586, - "c2": -4.415326384303015, - "c3": -1.0927613909070928, - "c4": 23.66201064107517, - "c5": -2.882933784172483, - "c6": 27.779150363785213, - "c7": -4.639132533553209 + "points": { + "c1": 5.85922173987877, + "c2": 29.007789035881338, + "c3": 30.688456513170642, + "c4": 5.32967527580081, + "c5": -12.31689949496954, + "c6": -29.63806718154282, + "c7": -13.563872215645368 }, - "vertexSeeds": { - "c1": 7.006950206042941, - "c2": 8.004684585977081, - "c3": 8.182759508766274, - "c4": 8.120977933119736, - "c5": 7.300490649721697, - "c6": 7.189447796773133, - "c7": 7.9634032718585255 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214976, + "c3": 9.893666204345818, + "c4": 7.914932963476649, + "c5": 5.9361997226074825, + "c6": 3.9574664817383245, + "c7": 1.9787332408691574 }, "rgb": [238, 201, 159] }, @@ -198078,23 +198078,23 @@ "year": 1766, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 40.09210365022681, - "c2": 8.639815801865836, - "c3": -0.8615157613034583, - "c4": -13.691050921021901, - "c5": 44.73888554750193, - "c6": -18.892313201239723, - "c7": 41.73739961014332 + "points": { + "c1": -34.8813468258738, + "c2": -30.63134170971992, + "c3": 17.46640841610182, + "c4": 36.9389586179668, + "c5": -30.288359706469883, + "c6": -28.693380221161735, + "c7": -3.549037659609084 }, - "vertexSeeds": { - "c1": 5.283426837167091, - "c2": 5.329029480186254, - "c3": 5.360714386796624, - "c4": 5.124964589889316, - "c5": 4.607315420389074, - "c6": 4.6473702515862, - "c7": 5.381559912935392 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181688, + "c3": 6.42625982431808, + "c4": 5.141007859454461, + "c5": 3.855755894590847, + "c6": 2.5705039297272334, + "c7": 1.2852519648636136 }, "rgb": [86, 146, 138] }, @@ -198105,23 +198105,23 @@ "year": 1765, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 6.423747556963431, - "c2": -23.92485396283634, - "c3": 22.027152572555853, - "c4": -25.038306003837352, - "c5": 7.271392413100923, - "c6": -23.134717022339576, - "c7": -14.561943321643442 + "points": { + "c1": 28.096548311735273, + "c2": 16.759502526911763, + "c3": 15.84516602547657, + "c4": -30.50393299592892, + "c5": -18.506246871682173, + "c6": 18.2643426878486, + "c7": 5.995486540585436 }, - "vertexSeeds": { - "c1": 3.20037578270333, - "c2": 3.2265448897833617, - "c3": 3.6920547592893245, - "c4": 3.243904684647685, - "c5": 3.598259111394684, - "c6": 3.3860644900287564, - "c7": 3.196743490526547 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762831, + "c3": 4.461396208969026, + "c4": 3.5691169671752223, + "c5": 2.6768377253814184, + "c6": 1.784558483587608, + "c7": 0.892279241793804 }, "rgb": [86, 146, 138] }, @@ -198132,23 +198132,23 @@ "year": 1766, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 24.873314092366584, - "c2": -25.99881929835332, - "c3": -5.446676549555363, - "c4": -18.27000666503516, - "c5": -11.75696019593649, - "c6": -20.301121400631423, - "c7": -8.531607192548641 + "points": { + "c1": -18.555840640608395, + "c2": 21.23214322968974, + "c3": -14.720515902612679, + "c4": 32.07910168167973, + "c5": 19.9379229399809, + "c6": -28.433934092997006, + "c7": 19.615364724974 }, - "vertexSeeds": { - "c1": 3.2676038533608756, - "c2": 3.3488326127585477, - "c3": 3.1863667716275534, - "c4": 3.342960448865019, - "c5": 3.120795130803825, - "c6": 3.143748355229522, - "c7": 3.3655227980116336 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [58, 15, 49] }, @@ -198159,23 +198159,23 @@ "year": 1766, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -22.696690673510147, - "c2": -33.80535657339834, - "c3": 16.426231581072265, - "c4": -33.516392039341355, - "c5": -20.253353768056822, - "c6": 33.409092269538846, - "c7": 15.526570432399424 + "points": { + "c1": 37.351519515561534, + "c2": -7.691336947164839, + "c3": -37.52157921022054, + "c4": -13.568805070702371, + "c5": 11.330313484536155, + "c6": -9.563269879543444, + "c7": 6.1238229617052795 }, - "vertexSeeds": { - "c1": 13.485673288540422, - "c2": 13.581480731205996, - "c3": 13.340943747907458, - "c4": 13.256463749353772, - "c5": 13.557483098665365, - "c6": 13.56014531232191, - "c7": 13.371684299483183 + "offsets": { + "c1": 22.75080906148867, + "c2": 19.500693481276016, + "c3": 16.250577901063366, + "c4": 13.000462320850714, + "c5": 9.75034674063806, + "c6": 6.500231160425305, + "c7": 3.2501155802126527 }, "rgb": [58, 15, 49] }, @@ -198186,23 +198186,23 @@ "year": 1766, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -27.294541109430632, - "c2": 0.21503083429843173, - "c3": -4.107213101988336, - "c4": 8.078048126832904, - "c5": -17.566825727827112, - "c6": -24.932340170214925, - "c7": 19.949021313909526 + "points": { + "c1": 28.960051829800676, + "c2": 44.469145186180526, + "c3": -28.380741821112245, + "c4": 0.03643781668979784, + "c5": 25.349817940889324, + "c6": 45.82859592940444, + "c7": 13.657523786892142 }, - "vertexSeeds": { - "c1": 4.255181347150259, - "c2": 4.255181347150259, - "c3": 4.255181347150259, - "c4": 4.255181347150259, - "c5": 4.255181347150259, - "c6": 4.255181347150259, - "c7": 4.255181347150259 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -198213,23 +198213,23 @@ "year": 1766, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -4.303685018480515, - "c2": -41.11128269927818, - "c3": 14.886260395132354, - "c4": -28.961668579124144, - "c5": -11.507601171296109, - "c6": -41.39631789003821, - "c7": 28.309463848499945 + "points": { + "c1": 27.74686018664444, + "c2": 26.396038386457562, + "c3": 32.92991203607761, + "c4": 15.535447080479138, + "c5": 44.46898326457976, + "c6": -2.7503773681026757, + "c7": -40.196591700621006 }, - "vertexSeeds": { - "c1": 1.9745438023500395, - "c2": 2.0627824261294427, - "c3": 1.9439596675251047, - "c4": 1.9544533433910016, - "c5": 2.088698299062109, - "c6": 1.9400367875502311, - "c7": 1.8930363691066001 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244087, + "c3": 2.5427646786870093, + "c4": 2.034211742949606, + "c5": 1.5256588072122064, + "c6": 1.017105871474803, + "c7": 0.5085529357374033 }, "rgb": [86, 146, 138] }, @@ -198240,23 +198240,23 @@ "year": 1766, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": -50.76406063672707, - "c2": -29.100322862235917, - "c3": -50.12940315481166, - "c4": -51.584517908516766, - "c5": -20.94593800253955, - "c6": -7.1367648560682895, - "c7": -9.691752088387453 + "points": { + "c1": 54.92402392214561, + "c2": 39.36213630496654, + "c3": 46.67058521658538, + "c4": 23.40078062586828, + "c5": -41.692489475088834, + "c6": 52.73019785411495, + "c7": 7.13837564465549 }, - "vertexSeeds": { - "c1": 5.392750951721154, - "c2": 5.290570847957612, - "c3": 5.260220828721862, - "c4": 5.444626682620019, - "c5": 5.290832519050259, - "c6": 5.207435536590149, - "c7": 5.45845356615998 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583907, + "c3": 6.657420249653251, + "c4": 5.325936199722624, + "c5": 3.9944521497919676, + "c6": 2.662968099861312, + "c7": 1.331484049930656 }, "rgb": [222, 0, 59] }, @@ -198267,23 +198267,23 @@ "year": 1766, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 13.80154258000369, - "c2": 6.761936860520358, - "c3": 18.5142876995062, - "c4": -20.568803108591315, - "c5": -4.770294850391167, - "c6": 8.577681789798298, - "c7": -9.445247564682774 + "points": { + "c1": 6.654774086813411, + "c2": -30.464279126657967, + "c3": 30.728859372651968, + "c4": -16.664567487732604, + "c5": 30.240870682157713, + "c6": 2.943009306301022, + "c7": -1.0878968197706875 }, - "vertexSeeds": { - "c1": 1.087579226720969, - "c2": 1.138897732884361, - "c3": 1.050921803056852, - "c4": 1.0894221334635863, - "c5": 0.9843844973069601, - "c6": 1.0218298876457819, - "c7": 1.0909986382125783 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133148, + "c3": 1.386962552011096, + "c4": 1.109570041608877, + "c5": 0.8321775312066582, + "c6": 0.5547850208044391, + "c7": 0.2773925104022203 }, "rgb": [238, 201, 159] }, @@ -198294,23 +198294,23 @@ "year": 1765, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -8.998589100983207, - "c2": 9.343550378011262, - "c3": -1.9547448609943956, - "c4": -24.522036777916387, - "c5": -11.648224110698077, - "c6": 20.57482811429814, - "c7": 13.673800141601038 + "points": { + "c1": 7.668719002562813, + "c2": 14.962690177363253, + "c3": 18.817763859718827, + "c4": 21.70221895753375, + "c5": -15.716840008749731, + "c6": 26.581959208738812, + "c7": 16.962623444381354 }, - "vertexSeeds": { - "c1": 6.3702774791316354, - "c2": 6.060549259214163, - "c3": 5.75604502753523, - "c4": 6.271814048497039, - "c5": 6.282501768172158, - "c6": 6.250683026609384, - "c7": 6.171103984884061 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474344, + "c3": 7.743874248728613, + "c4": 6.195099398982893, + "c5": 4.646324549237172, + "c6": 3.097549699491441, + "c7": 1.5487748497457205 }, "rgb": [238, 201, 159] }, @@ -198321,23 +198321,23 @@ "year": 1766, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -7.123563934299167, - "c2": 22.330120303098397, - "c3": 3.5237797220633595, - "c4": -30.227248742493178, - "c5": 10.46743371665957, - "c6": 6.386811193487638, - "c7": 25.265563180298628 + "points": { + "c1": -27.833301451603237, + "c2": 20.593787971292436, + "c3": -31.789095462904587, + "c4": 22.3074267504879, + "c5": -14.656366419806904, + "c6": 15.539859944112742, + "c7": -19.899987849452216 }, - "vertexSeeds": { - "c1": 6.33185980872775, - "c2": 6.946463573264307, - "c3": 7.410956882215505, - "c4": 6.466384650080134, - "c5": 6.348462843165623, - "c6": 6.301661462235565, - "c7": 6.206071246842973 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.87656033287101, + "c4": 7.101248266296805, + "c5": 5.325936199722601, + "c6": 3.5506241331484083, + "c7": 1.775312066574193 }, "rgb": [238, 201, 159] }, @@ -198348,23 +198348,23 @@ "year": 1766, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 39.84583335994453, - "c2": -2.796287665130677, - "c3": 41.96482826405407, - "c4": -32.530578887867726, - "c5": 1.1914690099769558, - "c6": -35.066426246616864, - "c7": 40.10744704259674 + "points": { + "c1": -33.720899421655886, + "c2": -43.77651805191192, + "c3": 15.82844063166361, + "c4": -42.942048470791605, + "c5": -6.544116175933205, + "c6": -15.377256792764559, + "c7": -15.009167247976148 }, - "vertexSeeds": { - "c1": 9.36419857593477, - "c2": 9.299222013578696, - "c3": 8.747849325258452, - "c4": 9.061559161858938, - "c5": 9.424499941037677, - "c6": 9.058827142106495, - "c7": 9.397356701779016 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.758668515950065, + "c3": 11.465557096625068, + "c4": 9.17244567730005, + "c5": 6.8793342579750325, + "c6": 4.5862228386500155, + "c7": 2.2931114193250175 }, "rgb": [58, 15, 49] }, @@ -198375,23 +198375,23 @@ "year": 1766, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -3.5752012417215475, - "c2": -22.506571835373514, - "c3": 28.048893074896938, - "c4": -30.531594468097865, - "c5": -11.929349932962388, - "c6": 30.115135014049514, - "c7": -27.673113735981808 + "points": { + "c1": 3.780167373915887, + "c2": -29.731554243444723, + "c3": -19.286748756951173, + "c4": 20.82318484211845, + "c5": -31.111561309520248, + "c6": -21.984316158518943, + "c7": 11.321850603104203 }, - "vertexSeeds": { - "c1": 6.896685918845822, - "c2": 7.780791275587944, - "c3": 7.4557148826816695, - "c4": 7.347195015147022, - "c5": 7.711584667941255, - "c6": 7.319188856776341, - "c7": 8.01874508716251 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973643, + "c3": 9.754969949144707, + "c4": 7.803975959315762, + "c5": 5.852981969486825, + "c6": 3.901987979657881, + "c7": 1.9509939898289443 }, "rgb": [238, 201, 159] }, @@ -198402,23 +198402,23 @@ "year": 1766, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 29.624645591511808, - "c2": -17.097285501283476, - "c3": 28.52422021035406, - "c4": 36.90374967318962, - "c5": 6.247392551651899, - "c6": 12.266031124058017, - "c7": 4.200393789674088 + "points": { + "c1": -6.4032183529183655, + "c2": 26.57143431238029, + "c3": 42.128378630699544, + "c4": 18.123716740462385, + "c5": -39.86270560850389, + "c6": 21.20258159352943, + "c7": -18.78872366723812 }, - "vertexSeeds": { - "c1": 5.100436359727683, - "c2": 6.045928837281862, - "c3": 5.8136491132858135, - "c4": 4.7777651219019, - "c5": 6.0599694756515845, - "c6": 4.937463342768571, - "c7": 5.396406885512919 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951458, + "c3": 7.443365695792884, + "c4": 5.954692556634303, + "c5": 4.466019417475729, + "c6": 2.977346278317155, + "c7": 1.4886731391585775 }, "rgb": [58, 15, 49] }, @@ -198429,23 +198429,23 @@ "year": 1765, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 9.56328262923811, - "c2": -12.812062792783442, - "c3": -4.137437897251015, - "c4": -26.407002832253447, - "c5": 24.654274295950472, - "c6": 8.834941202529656, - "c7": -25.72894475489385 + "points": { + "c1": -12.646460984364456, + "c2": -22.77033025563853, + "c3": -22.713009374291516, + "c4": -15.544218726775467, + "c5": 27.002469191757456, + "c6": -0.5385420341705931, + "c7": -5.223159771315249 }, - "vertexSeeds": { - "c1": 10.489105934434468, - "c2": 10.319470523323865, - "c3": 10.34493448739869, - "c4": 10.412172544416388, - "c5": 10.463036588678177, - "c6": 10.446521837666365, - "c7": 10.411145414461766 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.006934812760083, + "c3": 12.50577901063343, + "c4": 10.004623208506782, + "c5": 7.503467406379952, + "c6": 5.0023116042533005, + "c7": 2.5011558021266502 }, "rgb": [86, 146, 138] }, @@ -198456,23 +198456,23 @@ "year": 1766, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 30.325313563981787, - "c2": 21.948773870807138, - "c3": -19.289120862840228, - "c4": -16.70544632615179, - "c5": -38.01785539746632, - "c6": -13.822139549695837, - "c7": -16.73363879264406 + "points": { + "c1": 31.83369966598797, + "c2": 38.34881939771517, + "c3": 19.167318531888718, + "c4": 27.37683698508149, + "c5": -24.0943964798334, + "c6": 33.71443403952228, + "c7": 8.126692040582427 }, - "vertexSeeds": { - "c1": 3.3226259777339076, - "c2": 3.423075618098988, - "c3": 3.357635937723628, - "c4": 3.396039932116522, - "c5": 3.4222030975182784, - "c6": 3.1688492679389393, - "c7": 3.3762300739290794 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159504, + "c3": 4.114655570966247, + "c4": 3.2917244567729993, + "c5": 2.468793342579752, + "c6": 1.6458622283865048, + "c7": 0.8229311141932473 }, "rgb": [58, 15, 49] }, @@ -198483,23 +198483,23 @@ "year": 1766, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 15.492254551930252, - "c2": 0.4851086750473641, - "c3": 33.93199219364188, - "c4": -23.138275959220845, - "c5": -18.132878425153574, - "c6": 1.6613680300916869, - "c7": 25.24984653591934 + "points": { + "c1": 2.1866679691124844, + "c2": -22.272671070243387, + "c3": 19.78968688928532, + "c4": 8.160661757135756, + "c5": -2.1485205585982854, + "c6": -11.730853906239535, + "c7": 39.95019165007994 }, - "vertexSeeds": { - "c1": 3.9666886325857766, - "c2": 3.688788211807017, - "c3": 3.7453863408763395, - "c4": 3.742286677980524, - "c5": 3.814770958832941, - "c6": 4.002554943656628, - "c7": 3.891273826138705 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [222, 0, 59] }, @@ -198510,23 +198510,23 @@ "year": 1767, "resistanceReported": false, "duration": 55555200, - "curveSeeds": { - "c1": -12.301363763538397, - "c2": -70.4523931584552, - "c3": 4.7503684708798914, - "c4": 3.536141461164263, - "c5": -38.211191254019504, - "c6": -55.88559893760325, - "c7": -42.545710548220015 + "points": { + "c1": 55.152005239048094, + "c2": -32.90161455401065, + "c3": 13.345595111770251, + "c4": -68.26154489696955, + "c5": 31.591302374896117, + "c6": -42.765082914755354, + "c7": 46.21473557550195 }, - "vertexSeeds": { - "c1": 3.893804921879193, - "c2": 3.5587107452125033, - "c3": 3.86412116675506, - "c4": 3.606215467585632, - "c5": 3.5652293836241298, - "c6": 3.5920289593032737, - "c7": 3.505582838790026 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.60332871012483, + "c3": 4.669440591770687, + "c4": 3.7355524734165533, + "c5": 2.801664355062411, + "c6": 1.8677762367082766, + "c7": 0.9338881183541424 }, "rgb": [238, 201, 159] }, @@ -198537,23 +198537,23 @@ "year": 1766, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 6.362592071349454, - "c2": -16.063818774250258, - "c3": -15.869483888867267, - "c4": -16.53933871660668, - "c5": 27.549064497912404, - "c6": 22.017539238825172, - "c7": -5.540775961479337 + "points": { + "c1": 29.519518518251466, + "c2": 21.59907476904874, + "c3": 14.987960224076502, + "c4": 8.885493642672401, + "c5": 25.565382760590047, + "c6": -27.882241053506807, + "c7": 10.151303158157319 }, - "vertexSeeds": { - "c1": 3.9022241735449965, - "c2": 4.442800039202227, - "c3": 3.8988934239802067, - "c4": 4.3013101372064995, - "c5": 4.142339313205663, - "c6": 3.810884605358349, - "c7": 3.86677605578517 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -198564,23 +198564,23 @@ "year": 1766, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 2.096746872738237, - "c2": 28.928392972956743, - "c3": 28.37253870868686, - "c4": -30.543193006351014, - "c5": -3.6043503571531943, - "c6": 10.93521543883687, - "c7": -25.997114994486896 + "points": { + "c1": -30.89412585862766, + "c2": 11.306547188981952, + "c3": 29.352676918604274, + "c4": 0.3110225148760293, + "c5": -25.775376392020462, + "c6": -14.140780535676061, + "c7": -20.674133670105732 }, - "vertexSeeds": { - "c1": 4.236810081217283, - "c2": 4.186741421087665, - "c3": 4.657279394136751, - "c4": 4.543114109996891, - "c5": 4.290808438586637, - "c6": 4.4004850902584, - "c7": 4.6806288702423515 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015259, + "c3": 5.75589459084605, + "c4": 4.604715672676842, + "c5": 3.4535367545076325, + "c6": 2.302357836338424, + "c7": 1.1511789181692154 }, "rgb": [222, 0, 59] }, @@ -198591,23 +198591,23 @@ "year": 1766, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -16.439969190893777, - "c2": -13.668182177067498, - "c3": -12.95137143062654, - "c4": -8.781118762284372, - "c5": -17.25884857963054, - "c6": -7.017155128741631, - "c7": 22.665899444814997 + "points": { + "c1": 13.177902722018658, + "c2": -14.1593859058231, + "c3": -12.521903114259068, + "c4": 20.720054709609236, + "c5": 8.815369494391739, + "c6": 3.478070389592233, + "c7": -1.3840587918158 }, - "vertexSeeds": { - "c1": 3.7261586860681315, - "c2": 3.700701925039806, - "c3": 3.824314356065917, - "c4": 3.715868998595028, - "c5": 3.4345836650681036, - "c6": 3.9175999266953223, - "c7": 3.7122157498347517 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205272, + "c3": 4.715672676837728, + "c4": 3.7725381414701835, + "c5": 2.8294036061026393, + "c6": 1.8862690707350884, + "c7": 0.9431345353675508 }, "rgb": [58, 15, 49] }, @@ -198618,23 +198618,23 @@ "year": 1766, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -7.135035344813016, - "c2": 15.865944738310581, - "c3": 1.1376268094669513, - "c4": -20.46300073808277, - "c5": 16.820478954480905, - "c6": -27.727389712200445, - "c7": 0.6450867972364378 + "points": { + "c1": -8.583279702650767, + "c2": -38.749144325583636, + "c3": 16.397247022104764, + "c4": -17.12445309243897, + "c5": 25.980559431364114, + "c6": -36.210378891795294, + "c7": 15.696283673669392 }, - "vertexSeeds": { - "c1": 4.574423058202583, - "c2": 5.429488005301177, - "c3": 5.384968846539305, - "c4": 5.645479352862982, - "c5": 5.126396050659797, - "c6": 4.538152901565345, - "c7": 5.0538551228887005 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187243, + "c3": 7.004160887656033, + "c4": 5.603328710124829, + "c5": 4.202496532593618, + "c6": 2.8016643550624143, + "c7": 1.4008321775312071 }, "rgb": [86, 146, 138] }, @@ -198645,23 +198645,23 @@ "year": 1766, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -45.558590323178144, - "c2": 1.2455451724770015, - "c3": -29.6385428695746, - "c4": 5.488720331383448, - "c5": -1.0981941572591936, - "c6": 19.492169672999545, - "c7": 9.96996044598773 + "points": { + "c1": -38.830782898228165, + "c2": -43.64948564705194, + "c3": 29.075951363245956, + "c4": 9.101288413719978, + "c5": -33.37459276959103, + "c6": -39.8262406717729, + "c7": 3.3576562584233116 }, - "vertexSeeds": { - "c1": 2.305806287077658, - "c2": 2.4718969992883473, - "c3": 2.4959966688392665, - "c4": 2.6153772949962506, - "c5": 2.642979428936994, - "c6": 2.5200329059527995, - "c7": 2.3186587963208365 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506233, + "c3": 3.1900138696255183, + "c4": 2.55201109570042, + "c5": 1.9140083217753117, + "c6": 1.27600554785021, + "c7": 0.638002773925105 }, "rgb": [238, 201, 159] }, @@ -198672,23 +198672,23 @@ "year": 1766, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 10.099801589270676, - "c2": 4.712481760872585, - "c3": 1.7917330044163435, - "c4": -24.792563951471035, - "c5": -20.99455807764911, - "c6": 5.5818850762339665, - "c7": 26.071278853432197 + "points": { + "c1": 14.168241500993844, + "c2": -12.875038831001525, + "c3": -19.84777083138816, + "c4": -12.880403342080257, + "c5": 19.835924948746012, + "c6": 3.3981559811828106, + "c7": 12.018148006621097 }, - "vertexSeeds": { - "c1": 2.3275082914747114, - "c2": 2.260442197512497, - "c3": 2.090196058691785, - "c4": 2.2487122756106976, - "c5": 1.9414141044010575, - "c6": 2.123810372130535, - "c7": 1.9694475927099422 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.411927877947296, + "c3": 2.843273231622745, + "c4": 2.2746185852981964, + "c5": 1.705963938973648, + "c6": 1.137309292649097, + "c7": 0.5686546463245485 }, "rgb": [58, 15, 49] }, @@ -198699,23 +198699,23 @@ "year": 1766, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": -54.459818044655215, - "c2": -35.310154642019995, - "c3": 0.12126016307806964, - "c4": 32.914587261633656, - "c5": 17.27334800616137, - "c6": 55.9484450622857, - "c7": -25.88283580394941 + "points": { + "c1": -13.670351217156593, + "c2": -53.15187630439071, + "c3": 21.447048301879192, + "c4": -41.52485044291826, + "c5": 42.77216248671938, + "c6": 29.39803748504309, + "c7": -34.87091830748706 }, - "vertexSeeds": { - "c1": 1.9815711170013777, - "c2": 1.8983967416790384, - "c3": 2.0556322182988014, - "c4": 2.037318740089939, - "c5": 1.9052265047830697, - "c6": 1.9879493804825887, - "c7": 2.061903300102197 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244114, + "c3": 2.5427646786870066, + "c4": 2.0342117429496063, + "c5": 1.5256588072122057, + "c6": 1.0171058714748011, + "c7": 0.5085529357374006 }, "rgb": [238, 201, 159] }, @@ -198726,23 +198726,23 @@ "year": 1766, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -8.809684978660254, - "c2": -32.65911737963438, - "c3": -27.41845555819163, - "c4": -4.971111940086395, - "c5": 29.137109139314738, - "c6": -11.740735372055628, - "c7": -17.884475478448643 + "points": { + "c1": 27.62175734490752, + "c2": -23.088109757506764, + "c3": 27.186914178179237, + "c4": 23.403918699452255, + "c5": -10.185477597393437, + "c6": -17.370358677959917, + "c7": 14.46947662083926 }, - "vertexSeeds": { - "c1": 9.197704470894987, - "c2": 9.194351624973027, - "c3": 9.20258851932738, - "c4": 9.197160459848806, - "c5": 9.209650852264737, - "c6": 9.206667620712638, - "c7": 9.190426283942834 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145694, + "c3": 11.003236245954819, + "c4": 8.802588996763943, + "c5": 6.601941747572628, + "c6": 4.401294498381752, + "c7": 2.200647249190876 }, "rgb": [58, 15, 49] }, @@ -198753,23 +198753,23 @@ "year": 1766, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -13.117138387283152, - "c2": 10.909393077082004, - "c3": 4.474665987128365, - "c4": -8.684056286564903, - "c5": 18.88490848783741, - "c6": -4.97886112450572, - "c7": -2.8053611230363806 + "points": { + "c1": -12.848244956781503, + "c2": 7.517561254854506, + "c3": -27.312169707880408, + "c4": -19.49988947852587, + "c5": 19.61393226555294, + "c6": 13.188356483785157, + "c7": -13.442632625517675 }, - "vertexSeeds": { - "c1": 8.627099659065376, - "c2": 8.214959108605097, - "c3": 9.544900837777394, - "c4": 8.846874569249056, - "c5": 9.204495906513898, - "c6": 8.69833269093474, - "c7": 8.378739529570552 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.758668515950072, + "c3": 11.46555709662506, + "c4": 9.172445677300052, + "c5": 6.879334257975032, + "c6": 4.586222838650021, + "c7": 2.2931114193250104 }, "rgb": [238, 201, 159] }, @@ -198780,23 +198780,23 @@ "year": 1766, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 11.215680254459514, - "c2": -39.21623783455732, - "c3": -2.3211658822710604, - "c4": -4.481868861228591, - "c5": 17.754980945895255, - "c6": 31.19093685971356, - "c7": 0.07584927009429521 + "points": { + "c1": 5.049314040444926, + "c2": 16.176351448541354, + "c3": 37.93538981143581, + "c4": -33.157187397654084, + "c5": -3.7115372775039575, + "c6": -3.048784023037655, + "c7": -38.81689005643922 }, - "vertexSeeds": { - "c1": 5.34181527684929, - "c2": 5.143244193423312, - "c3": 5.101972971608573, - "c4": 5.295480385619047, - "c5": 5.522723770570447, - "c6": 5.43138412614055, - "c7": 5.664839890472307 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387883, + "c4": 5.455386037910303, + "c5": 4.091539528432724, + "c6": 2.7276930189551587, + "c7": 1.3638465094775793 }, "rgb": [222, 0, 59] }, @@ -198807,23 +198807,23 @@ "year": 1766, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 37.20447186449587, - "c2": -3.6519918769745274, - "c3": 8.532746232936326, - "c4": -2.5016928383090473, - "c5": 33.995048825643096, - "c6": -38.29398503849543, - "c7": -11.237850509393326 + "points": { + "c1": 35.31749241388911, + "c2": 33.66597858543544, + "c3": -38.76716383487533, + "c4": 26.12505469129556, + "c5": -39.50703254916859, + "c6": 29.20229567378722, + "c7": 3.1594480836200205 }, - "vertexSeeds": { - "c1": 6.107409997698427, - "c2": 6.14917875091444, - "c3": 6.152405029796167, - "c4": 6.163052212240465, - "c5": 6.104046406748288, - "c6": 6.149411491983491, - "c7": 6.106585926831548 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830831, + "c3": 7.374017568192262, + "c4": 5.899214054553839, + "c5": 4.4244105409154155, + "c6": 2.949607027276846, + "c7": 1.474803513638423 }, "rgb": [86, 146, 138] }, @@ -198834,23 +198834,23 @@ "year": 1766, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -23.30699769934725, - "c2": -12.790520323165579, - "c3": 22.663923795141606, - "c4": -11.086626050992962, - "c5": 10.715156280282088, - "c6": 2.7969435929781135, - "c7": -7.180863430776043 + "points": { + "c1": -5.89906696553502, + "c2": -3.6910435521579146, + "c3": -26.766237097589272, + "c4": 9.733516306168433, + "c5": -24.99607118010397, + "c6": 0.9419515304715915, + "c7": 3.9554260026575037 }, - "vertexSeeds": { - "c1": 3.7686923475489364, - "c2": 4.252656036215354, - "c3": 4.602649864728901, - "c4": 4.143423901961419, - "c5": 4.371186101323203, - "c6": 3.8058905469003106, - "c7": 3.6255275583837903 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.65742024965326, + "c3": 5.547850208044381, + "c4": 4.438280166435506, + "c5": 3.328710124826628, + "c6": 2.219140083217753, + "c7": 1.1095700416088783 }, "rgb": [238, 201, 159] }, @@ -198861,23 +198861,23 @@ "year": 1766, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": 7.226492148896909, - "c2": -37.61019789288728, - "c3": 14.114340816464697, - "c4": -44.87159777883257, - "c5": 47.50403354467081, - "c6": -24.386637994810847, - "c7": -39.17620213229386 + "points": { + "c1": 19.991439520853454, + "c2": 51.14506568356371, + "c3": -3.7521812419724654, + "c4": -21.177676687362805, + "c5": -2.99235095809086, + "c6": -48.45108506412139, + "c7": 12.006347370219508 }, - "vertexSeeds": { - "c1": 10.456146165836225, - "c2": 9.553054945688825, - "c3": 9.026221228133066, - "c4": 9.759343208539203, - "c5": 10.008201948450612, - "c6": 10.02176506358568, - "c7": 9.461400749490553 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403608, + "c3": 12.875635691169677, + "c4": 10.300508552935746, + "c5": 7.725381414701804, + "c6": 5.150254276467873, + "c7": 2.575127138233931 }, "rgb": [58, 15, 49] }, @@ -198888,23 +198888,23 @@ "year": 1766, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 5.30583077317397, - "c2": -11.317711657670689, - "c3": 21.198057176796326, - "c4": -25.77515895323991, - "c5": 1.521706431100096, - "c6": -1.885383655725228, - "c7": 15.17189784988711 + "points": { + "c1": 15.818672144746998, + "c2": -15.51026650571091, + "c3": -25.075453163979333, + "c4": -13.410849060912195, + "c5": 10.403282379820283, + "c6": -8.582876487497941, + "c7": 22.77940725794722 }, - "vertexSeeds": { - "c1": 4.471172848506014, - "c2": 4.357782548258909, - "c3": 4.251812716812177, - "c4": 4.170759440787528, - "c5": 4.406927729151735, - "c6": 4.410255365777766, - "c7": 4.446950187943092 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371701, + "c3": 5.386037910309757, + "c4": 4.308830328247801, + "c5": 3.231622746185857, + "c6": 2.1544151641239004, + "c7": 1.0772075820619444 }, "rgb": [222, 0, 59] }, @@ -198915,23 +198915,23 @@ "year": 1766, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -36.93835463550211, - "c2": -6.792184902623838, - "c3": 40.930665179759835, - "c4": -14.424368159319556, - "c5": -29.813419974227745, - "c6": 27.46600497724865, - "c7": -35.26731740324452 + "points": { + "c1": 38.33879713356034, + "c2": -6.827516529626159, + "c3": -8.810085745492962, + "c4": 0.7705023199552343, + "c5": 16.75762245921061, + "c6": 40.41411948227745, + "c7": -42.34651013715266 }, - "vertexSeeds": { - "c1": 2.4282479564581814, - "c2": 2.2662288372880504, - "c3": 2.272001625470513, - "c4": 2.239596741895116, - "c5": 2.418638650954686, - "c6": 2.411871760616466, - "c7": 2.449958374144484 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886284, + "c3": 2.9819694868238553, + "c4": 2.3855755894590858, + "c5": 1.7891816920943124, + "c6": 1.1927877947295429, + "c7": 0.5963938973647694 }, "rgb": [238, 201, 159] }, @@ -198942,23 +198942,23 @@ "year": 1766, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -11.079451869433278, - "c2": -18.825458516494564, - "c3": 9.802112865423549, - "c4": 21.11183634939228, - "c5": 10.021076359476279, - "c6": -13.211650249014138, - "c7": -15.191217162939386 + "points": { + "c1": 29.116474122700886, + "c2": 10.701715099203092, + "c3": 13.520055748928087, + "c4": -30.938562410602657, + "c5": 1.315356486402159, + "c6": -6.648403450250573, + "c7": -18.02953198635064 }, - "vertexSeeds": { - "c1": 6.596946401931637, - "c2": 6.763212715924344, - "c3": 6.770885168851445, - "c4": 7.078785985277254, - "c5": 6.658334016745458, - "c6": 6.832007832857435, - "c7": 7.033740853130918 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364779, + "c3": 8.830328247803974, + "c4": 7.064262598243187, + "c5": 5.298196948682381, + "c6": 3.5321312991215934, + "c7": 1.766065649560805 }, "rgb": [58, 15, 49] }, @@ -198969,23 +198969,23 @@ "year": 1766, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 23.154393518473356, - "c2": 9.010514344977693, - "c3": 14.155994403927899, - "c4": -11.579316238822548, - "c5": -21.342552390390946, - "c6": 13.356935957293132, - "c7": -3.4677157038880786 + "points": { + "c1": 23.02789151815731, + "c2": 26.291753558733603, + "c3": 15.583839066882277, + "c4": 14.016335839039272, + "c5": -7.565562654097896, + "c6": -22.386284616642804, + "c7": -14.476729871508455 }, - "vertexSeeds": { - "c1": 5.985980958041353, - "c2": 5.7156797445382725, - "c3": 6.013616078537556, - "c4": 6.221892404698615, - "c5": 5.563428652560481, - "c6": 5.7849566193956825, - "c7": 5.955535509117702 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.95977808599168, + "c3": 7.466481738326403, + "c4": 5.973185390661125, + "c5": 4.479889042995847, + "c6": 2.986592695330555, + "c7": 1.4932963476652774 }, "rgb": [58, 15, 49] }, @@ -198996,23 +198996,23 @@ "year": 1766, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -1.5517652194441105, - "c2": -11.545051172730176, - "c3": 5.165396308529502, - "c4": 18.906367975091776, - "c5": 15.35319041893505, - "c6": 5.690482227673016, - "c7": 0.9424527976092776 + "points": { + "c1": -31.17654108010786, + "c2": 23.34189969884565, + "c3": -3.1981613619803078, + "c4": -30.71575174254058, + "c5": 11.256117827892623, + "c6": -11.970437672432436, + "c7": 24.191696759171045 }, - "vertexSeeds": { - "c1": 0.7850246026572649, - "c2": 0.8949426784567438, - "c3": 0.8451650660516205, - "c4": 0.8968600129212861, - "c5": 0.8939503117896911, - "c6": 0.8300491400966494, - "c7": 0.7752108672889327 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.3314840499306515, + "c3": 1.1095700416088763, + "c4": 0.8876560332871006, + "c5": 0.6657420249653251, + "c6": 0.44382801664355104, + "c7": 0.22191400832177413 }, "rgb": [58, 15, 49] }, @@ -199023,23 +199023,23 @@ "year": 1766, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -11.06080863955744, - "c2": 10.516387460737064, - "c3": 2.7724264950835966, - "c4": -13.74431869038554, - "c5": 21.75273645265225, - "c6": 1.4294244136465366, - "c7": 13.014079246551304 + "points": { + "c1": 25.695700837131483, + "c2": 20.816150760625597, + "c3": -26.317773471126177, + "c4": 10.821637237959045, + "c5": -12.849465888289918, + "c6": -9.320487453165043, + "c7": -9.301829911100636 }, - "vertexSeeds": { - "c1": 8.163686484095535, - "c2": 7.801771880600832, - "c3": 7.529811274798361, - "c4": 7.351400808649076, - "c5": 6.8181026503656605, - "c6": 7.965312952500891, - "c7": 8.096731501130403 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094317, + "c3": 9.82431807674526, + "c4": 7.859454461396212, + "c5": 5.894590846047154, + "c6": 3.929727230698106, + "c7": 1.9648636153490484 }, "rgb": [58, 15, 49] }, @@ -199050,23 +199050,23 @@ "year": 1766, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 5.885158857061203, - "c2": -0.3329634538775501, - "c3": -23.341389689754983, - "c4": -21.07435702229599, - "c5": -7.844343585080189, - "c6": 15.577798978073297, - "c7": 22.871852092479095 + "points": { + "c1": -26.279422665640034, + "c2": 0.13093513443559246, + "c3": 6.563067957803597, + "c4": 12.637993903185645, + "c5": -7.581738746846977, + "c6": 17.9629301764761, + "c7": 18.19128567996019 }, - "vertexSeeds": { - "c1": 2.4393858470640373, - "c2": 2.682491853687864, - "c3": 2.460466165427065, - "c4": 2.782213173449013, - "c5": 2.566138366704013, - "c6": 2.6701856917318256, - "c7": 2.4754501245366165 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [222, 0, 59] }, @@ -199077,23 +199077,23 @@ "year": 1766, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -29.007612664985995, - "c2": -18.96104685779502, - "c3": -28.472053191799798, - "c4": 7.468459625498241, - "c5": -17.063014038977588, - "c6": 19.34003264940209, - "c7": -27.916986022684704 + "points": { + "c1": 20.217000395691414, + "c2": 4.016346043765353, + "c3": 8.801421361773244, + "c4": -6.947833869488221, + "c5": 8.972738129789875, + "c6": -34.925889269624335, + "c7": -39.68155476557129 }, - "vertexSeeds": { - "c1": 8.877161206256647, - "c2": 10.087623146550815, - "c3": 9.246587946225317, - "c4": 9.434759482441528, - "c5": 9.337181836211698, - "c6": 9.726367664758085, - "c7": 9.432137864524245 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995842, + "c3": 12.066574202496525, + "c4": 9.653259361997222, + "c5": 7.239944521497921, + "c6": 4.826629680998605, + "c7": 2.4133148404993023 }, "rgb": [58, 15, 49] }, @@ -199104,23 +199104,23 @@ "year": 1766, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 41.356903964307, - "c2": -13.981678067542632, - "c3": -34.87413851395846, - "c4": 4.791531558187607, - "c5": 6.258400851716097, - "c6": 42.88107391749018, - "c7": -36.41199565872402 + "points": { + "c1": 11.092549356909373, + "c2": -17.181282855703643, + "c3": -0.1857212774283994, + "c4": 27.571240798261904, + "c5": -24.573583686068368, + "c6": -2.6724865896449046, + "c7": 37.03115348822558 }, - "vertexSeeds": { - "c1": 2.7516051990689263, - "c2": 3.102120768940291, - "c3": 2.8318011668866814, - "c4": 3.0290596946544004, - "c5": 2.8113243943750463, - "c6": 3.0827775961214785, - "c7": 2.9088300472517243 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596395, + "c3": 3.791030975496992, + "c4": 3.032824780397595, + "c5": 2.2746185852981977, + "c6": 1.5164123901988005, + "c7": 0.7582061950993971 }, "rgb": [58, 15, 49] }, @@ -199131,23 +199131,23 @@ "year": 1766, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 13.700444850888509, - "c2": -5.166407168525417, - "c3": 19.459416485320695, - "c4": -16.439238953422, - "c5": -13.70060931384915, - "c6": -18.398278552274547, - "c7": -13.01422620327839 + "points": { + "c1": 28.7247381604452, + "c2": 2.7221897702748805, + "c3": 7.635160396627327, + "c4": -4.900724338413742, + "c5": -23.232304919839017, + "c6": -9.194425092178026, + "c7": -14.157232565024565 }, - "vertexSeeds": { - "c1": 2.523578301162953, - "c2": 2.66502418988905, - "c3": 2.3754525258707067, - "c4": 2.523729302118935, - "c5": 2.4774554282384695, - "c6": 2.644372793547401, - "c7": 2.374461514836742 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590849, + "c3": 3.2131299121590375, + "c4": 2.570503929727233, + "c5": 1.9278779472954206, + "c6": 1.2852519648636125, + "c7": 0.6426259824318042 }, "rgb": [77, 76, 132] }, @@ -199158,23 +199158,23 @@ "year": 1766, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 34.35691553912197, - "c2": 25.657383268260403, - "c3": 5.395882079241083, - "c4": 22.08647203192853, - "c5": 37.1007470316399, - "c6": -38.75241063066922, - "c7": -18.113763007390475 + "points": { + "c1": -22.441282261027773, + "c2": 7.465472590529089, + "c3": -40.57197861883387, + "c4": -23.134326206733906, + "c5": -1.962330767780017, + "c6": -36.983906972842846, + "c7": 20.40823427035202 }, - "vertexSeeds": { - "c1": 4.431457215336615, - "c2": 4.523801014216914, - "c3": 4.633280672797191, - "c4": 4.588711771826176, - "c5": 4.551674934672227, - "c6": 4.504694653177625, - "c7": 4.5989435296791354 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733707, + "c3": 5.594082293111427, + "c4": 4.475265834489133, + "c5": 3.3564493758668537, + "c6": 2.2376329172445737, + "c7": 1.1188164586222937 }, "rgb": [222, 0, 59] }, @@ -199185,23 +199185,23 @@ "year": 1766, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -29.119537624277772, - "c2": 20.305725158734944, - "c3": 40.29560672534757, - "c4": -2.4639098960707813, - "c5": 26.405128823687022, - "c6": -20.40301234834406, - "c7": -8.243292987935149 + "points": { + "c1": 37.55652859651234, + "c2": -33.96153653702037, + "c3": -27.40061459080573, + "c4": -20.784062030426238, + "c5": 36.20645871515396, + "c6": 28.369215936296214, + "c7": -36.24021712918752 }, - "vertexSeeds": { - "c1": 2.686723960759949, - "c2": 2.6567279818762684, - "c3": 2.7380122434286474, - "c4": 2.6558150402315226, - "c5": 2.5867565005052744, - "c6": 2.6874226280193465, - "c7": 2.8229174714421204 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [238, 201, 159] }, @@ -199212,23 +199212,23 @@ "year": 1766, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -16.565254364725707, - "c2": 6.415085514343843, - "c3": 7.472746544840284, - "c4": -29.712363352932275, - "c5": 18.75631623910663, - "c6": 15.795754112949481, - "c7": 9.820125579194013 + "points": { + "c1": 2.177174575021489, + "c2": 18.764511423474275, + "c3": -9.68252964657026, + "c4": 14.03952942354772, + "c5": 4.39951047138122, + "c6": -4.224482281078828, + "c7": -27.753075449916253 }, - "vertexSeeds": { - "c1": 2.6896270034118888, - "c2": 2.664870516192978, - "c3": 2.701834905657873, - "c4": 2.861427381628704, - "c5": 2.8638286073918016, - "c6": 2.8057877015062065, - "c7": 2.92376887860972 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234395, + "c3": 3.582986592695327, + "c4": 2.8663892741562655, + "c5": 2.1497919556171974, + "c6": 1.4331946370781292, + "c7": 0.7165973185390682 }, "rgb": [77, 76, 132] }, @@ -199239,23 +199239,23 @@ "year": 1766, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 12.687506925655903, - "c2": 23.11569602790587, - "c3": 10.052333432771256, - "c4": -13.317893126782057, - "c5": -10.630730833810063, - "c6": -4.585616770385606, - "c7": -9.276439524740377 + "points": { + "c1": 23.6825686164743, + "c2": -9.23750675159377, + "c3": -8.457134931036606, + "c4": -6.825653995658392, + "c5": -4.7058256631666815, + "c6": 4.315846362613833, + "c7": -7.170930469160751 }, - "vertexSeeds": { - "c1": 1.5935780048487374, - "c2": 1.7071380619576897, - "c3": 1.6318298090857537, - "c4": 1.6786793016484012, - "c5": 1.7656337573376695, - "c6": 1.6362620591478834, - "c7": 1.594427162585414 + "offsets": { + "c1": 2.9773462783171523, + "c2": 2.552011095700416, + "c3": 2.126675913083679, + "c4": 1.7013407304669468, + "c5": 1.27600554785021, + "c6": 0.8506703652334734, + "c7": 0.4253351826167367 }, "rgb": [77, 76, 132] }, @@ -199266,23 +199266,23 @@ "year": 1766, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -13.654846751941438, - "c2": 27.303274515519895, - "c3": 34.37372391779661, - "c4": -28.328290573489188, - "c5": 1.6496060254042462, - "c6": 3.8265725046389747, - "c7": 23.463200478070277 + "points": { + "c1": -10.75791874808958, + "c2": 27.116749202555482, + "c3": 13.04528434282765, + "c4": -31.551951817820942, + "c5": -12.441119207923592, + "c6": 19.180013209299922, + "c7": 17.924820862354828 }, - "vertexSeeds": { - "c1": 2.9077134497805854, - "c2": 2.926146638013031, - "c3": 2.581450082787013, - "c4": 2.6363622655517314, - "c5": 2.6746209871979763, - "c6": 2.9490079300058283, - "c7": 2.662134326102916 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355065, + "c3": 3.6523347202958845, + "c4": 2.92186777623671, + "c5": 2.191400832177535, + "c6": 1.460933888118355, + "c7": 0.7304669440591803 }, "rgb": [58, 15, 49] }, @@ -199293,23 +199293,23 @@ "year": 1766, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 1.0625333619640216, - "c2": 4.240194643965857, - "c3": -45.97953137214538, - "c4": -34.69365969341356, - "c5": 38.471338570256144, - "c6": 39.60015010426019, - "c7": 32.61810233563899 + "points": { + "c1": -50.56564631497781, + "c2": -9.385286233274527, + "c3": -19.419021258966822, + "c4": 40.93249520222896, + "c5": -31.602085318374936, + "c6": 43.29165141953029, + "c7": 32.113282379972226 }, - "vertexSeeds": { - "c1": 4.2457424702638615, - "c2": 4.244286179402661, - "c3": 4.325160589333748, - "c4": 4.347595285637435, - "c5": 4.330820927521525, - "c6": 4.334504727736898, - "c7": 4.308321956707691 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049925, + "c3": 5.201109570041599, + "c4": 4.160887656033272, + "c5": 3.1206657420249453, + "c6": 2.0804438280166533, + "c7": 1.0402219140083266 }, "rgb": [77, 76, 132] }, @@ -199320,23 +199320,23 @@ "year": 1766, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -13.667194807815996, - "c2": -21.4597525283724, - "c3": -3.877179948923878, - "c4": -7.694726279866934, - "c5": 1.1581011537384462, - "c6": 16.038587049456837, - "c7": 10.97079605660106 + "points": { + "c1": -18.64666064226615, + "c2": -20.856090670209586, + "c3": -19.607959930646338, + "c4": -7.230239810606857, + "c5": 24.411425676871062, + "c6": 12.313499911966801, + "c7": 9.674411143824372 }, - "vertexSeeds": { - "c1": 1.2425507243371932, - "c2": 1.4114643835908074, - "c3": 1.2456230629390352, - "c4": 1.4694899708684903, - "c5": 1.3179029317304036, - "c6": 1.443945418448612, - "c7": 1.3031391652538498 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097087, + "c3": 1.7799352750809052, + "c4": 1.4239482200647238, + "c5": 1.0679611650485448, + "c6": 0.7119741100323632, + "c7": 0.3559870550161816 }, "rgb": [238, 201, 159] }, @@ -199347,23 +199347,23 @@ "year": 1766, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 18.714653423649793, - "c2": 25.820489564906246, - "c3": -13.081960915398074, - "c4": -39.39479814328643, - "c5": -34.90686323604999, - "c6": 24.061272022805262, - "c7": -7.327815766517098 + "points": { + "c1": -9.869933003895063, + "c2": 17.115826759879866, + "c3": 23.34362892463232, + "c4": 6.697603286531546, + "c5": 15.122303245409555, + "c6": 17.321460198914764, + "c7": 13.418703481647057 }, - "vertexSeeds": { - "c1": 4.028028440609429, - "c2": 4.175630368674785, - "c3": 4.022879602226755, - "c4": 4.206281137422499, - "c5": 4.008982229661729, - "c6": 4.268625163150205, - "c7": 4.10984862319396 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929264, + "c3": 5.131761442441054, + "c4": 4.105409153952842, + "c5": 3.079056865464632, + "c6": 2.052704576976421, + "c7": 1.0263522884882106 }, "rgb": [222, 0, 59] }, @@ -199374,23 +199374,23 @@ "year": 1766, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -15.65377734732506, - "c2": 15.346713122419914, - "c3": 17.16825749740186, - "c4": 2.286825788943773, - "c5": -4.118051053594815, - "c6": -3.9149182745099544, - "c7": -2.2347192243094867 + "points": { + "c1": 18.95767283817152, + "c2": -21.982141018031793, + "c3": -19.718518444042928, + "c4": -25.617067825121026, + "c5": 24.44990033118676, + "c6": -1.704931703650825, + "c7": 12.492630500057103 }, - "vertexSeeds": { - "c1": 5.569375020951632, - "c2": 4.738611605674803, - "c3": 5.2777535879320485, - "c4": 5.440838308318661, - "c5": 4.989344573697233, - "c6": 5.531108680022786, - "c7": 5.329557915649383 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624128, + "c3": 6.680536292186779, + "c4": 5.344429033749419, + "c5": 4.008321775312069, + "c6": 2.6722145168747096, + "c7": 1.3361072584373548 }, "rgb": [58, 15, 49] }, @@ -199401,23 +199401,23 @@ "year": 1766, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 10.52696642788488, - "c2": 17.846395158827114, - "c3": 15.121849705109803, - "c4": 15.10655019300686, - "c5": 13.839282528629369, - "c6": -19.08948872069965, - "c7": -4.451445699493711 + "points": { + "c1": 1.3022128926579732, + "c2": 11.66980686097881, + "c3": -23.197440812035143, + "c4": -13.659226937526203, + "c5": -6.881744973154902, + "c6": -5.942959647155046, + "c7": 24.091973162339954 }, - "vertexSeeds": { - "c1": 9.898877765043741, - "c2": 9.753255003905645, - "c3": 9.588276776289742, - "c4": 9.838878952856476, - "c5": 9.71564128291957, - "c6": 9.716953360137346, - "c7": 9.7014071775437 + "offsets": { + "c1": 16.86084142394822, + "c2": 14.4521497919556, + "c3": 12.043458159963011, + "c4": 9.63476652797042, + "c5": 7.2260748959778, + "c6": 4.81738326398521, + "c7": 2.4086916319925904 }, "rgb": [222, 0, 59] }, @@ -199428,23 +199428,23 @@ "year": 1766, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 35.71248350714788, - "c2": -36.28029807959593, - "c3": -32.74733163910467, - "c4": 15.39669895845499, - "c5": -32.11390276001389, - "c6": -32.11649863593247, - "c7": -27.507218148556195 + "points": { + "c1": 30.56333012291296, + "c2": 14.950401517096054, + "c3": 6.257541319363888, + "c4": -27.119046312171033, + "c5": 13.248021016879377, + "c6": -37.97323566668356, + "c7": -8.490397418169302 }, - "vertexSeeds": { - "c1": 3.4766276962829634, - "c2": 3.155760697778355, - "c3": 3.08177484685384, - "c4": 3.5402118192409198, - "c5": 3.227048948986293, - "c6": 3.180218826454354, - "c7": 3.4308893018793962 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481277, + "c3": 4.299583911234399, + "c4": 3.4396671289875136, + "c5": 2.579750346740635, + "c6": 1.7198335644937568, + "c7": 0.8599167822468784 }, "rgb": [222, 0, 59] }, @@ -199455,23 +199455,23 @@ "year": 1766, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 26.854926439721872, - "c2": 25.126484755900485, - "c3": 4.728952120457876, - "c4": 12.389592089649106, - "c5": -17.556937759603265, - "c6": 32.48790464157199, - "c7": 4.293821032708543 + "points": { + "c1": 22.255115034269643, + "c2": -27.161127820968687, + "c3": 3.035541862350094, + "c4": 8.235343350800413, + "c5": -17.402042865155842, + "c6": -23.763394712428266, + "c7": -7.908489290785603 }, - "vertexSeeds": { - "c1": 2.486131160481475, - "c2": 2.635670673047811, - "c3": 2.6460973549878424, - "c4": 2.6717283964682172, - "c5": 2.3955794881655224, - "c6": 2.7551419601769096, - "c7": 2.7966469329098276 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.1054091539528415, + "c3": 3.4211742949607045, + "c4": 2.736939435968562, + "c5": 2.0527045769764247, + "c6": 1.3684697179842824, + "c7": 0.6842348589921396 }, "rgb": [86, 146, 138] }, @@ -199482,23 +199482,23 @@ "year": 1766, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 8.943000023641169, - "c2": -10.922491712690483, - "c3": -5.711078317056256, - "c4": -0.45260408058696555, - "c5": -4.766555501520109, - "c6": -7.726520734717621, - "c7": -4.824440166742413 + "points": { + "c1": 29.24324787354803, + "c2": 28.271258311591126, + "c3": -7.881251762780316, + "c4": 14.557936407497657, + "c5": 40.42749813985478, + "c6": 22.13473092843045, + "c7": 25.101988915536083 }, - "vertexSeeds": { - "c1": 0.981690597198398, - "c2": 0.9667477374256399, - "c3": 0.9555058901224137, - "c4": 0.9528696017452548, - "c5": 0.9851417429823179, - "c6": 0.9583006511672837, - "c7": 0.9680230456966742 + "offsets": { + "c1": 1.6828478964401297, + "c2": 1.4424410540915407, + "c3": 1.2020342117429514, + "c4": 0.9616273693943564, + "c5": 0.7212205270457673, + "c6": 0.4808136846971782, + "c7": 0.2404068423485891 }, "rgb": [222, 0, 59] }, @@ -199509,23 +199509,23 @@ "year": 1766, "resistanceReported": false, "duration": 39225600, - "curveSeeds": { - "c1": -25.562534028375975, - "c2": -15.736216802977268, - "c3": 52.28483972593843, - "c4": 32.28979658933945, - "c5": 5.824798791178154, - "c6": 22.186658333531888, - "c7": -30.221493625372474 + "points": { + "c1": -7.488568590831228, + "c2": 45.832970736495476, + "c3": -7.074446939187077, + "c4": 29.020818663068958, + "c5": 50.15378655366941, + "c6": -51.56550781286319, + "c7": -27.228540196856365 }, - "vertexSeeds": { - "c1": 4.541136359280415, - "c2": 5.222316466013104, - "c3": 4.2857808179742705, - "c4": 3.6780293718612995, - "c5": 5.47157432653453, - "c6": 5.621342894927123, - "c7": 5.117566141481179 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055477, + "c4": 5.547850208044383, + "c5": 4.160887656033285, + "c6": 2.7739251040221915, + "c7": 1.3869625520110958 }, "rgb": [238, 201, 159] }, @@ -199536,23 +199536,23 @@ "year": 1766, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 33.66234869442661, - "c2": 26.630118290325456, - "c3": 36.52923336224397, - "c4": -37.35738284775214, - "c5": -0.3990688765354591, - "c6": -9.499371131168978, - "c7": -15.479945266688635 + "points": { + "c1": -37.285183440138006, + "c2": 24.2644680829532, + "c3": 29.504052552937083, + "c4": -26.206178140849765, + "c5": -14.141819570790844, + "c6": 1.861891523052897, + "c7": 3.180430167719372 }, - "vertexSeeds": { - "c1": 7.52301688141155, - "c2": 6.210354002888451, - "c3": 7.104807331760975, - "c4": 6.868355200080654, - "c5": 7.371651591778873, - "c6": 6.280027046423807, - "c7": 7.030740833872477 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.81830790568654, + "c3": 9.01525658807212, + "c4": 7.2122052704577, + "c5": 5.40915395284327, + "c6": 3.60610263522884, + "c7": 1.80305131761442 }, "rgb": [86, 146, 138] }, @@ -199563,23 +199563,23 @@ "year": 1766, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": 21.766048938482655, - "c2": 50.821316137979906, - "c3": 23.25302864565748, - "c4": -0.6716574490571645, - "c5": 25.790412861236504, - "c6": -36.59595140535831, - "c7": 15.2669230297805 + "points": { + "c1": -29.320199081177652, + "c2": 27.208267429749554, + "c3": 23.41546814703773, + "c4": -39.57111343602892, + "c5": -55.23342611760891, + "c6": -47.71348208405573, + "c7": -0.7191322914654847 }, - "vertexSeeds": { - "c1": 5.522939415033219, - "c2": 5.035277965438348, - "c3": 4.87293252946073, - "c4": 4.927453622570907, - "c5": 5.336004094698673, - "c6": 5.302620859505847, - "c7": 5.372202137591405 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [77, 76, 132] }, @@ -199590,23 +199590,23 @@ "year": 1766, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 6.20788874686685, - "c2": 35.315407389318096, - "c3": 3.41454700144849, - "c4": -28.201436649121845, - "c5": -35.25278258951402, - "c6": 3.743172739190314, - "c7": -1.685516711846688 + "points": { + "c1": -19.43413419364257, + "c2": -31.568266248232362, + "c3": -22.76981871929158, + "c4": -18.898609823403955, + "c5": -11.281382663410191, + "c6": 4.959675042200772, + "c7": -11.847627887390008 }, - "vertexSeeds": { - "c1": 5.794708501616916, - "c2": 5.296352985440622, - "c3": 5.070901056854351, - "c4": 5.147427699937737, - "c5": 5.316785432686475, - "c6": 4.789671794017044, - "c7": 5.6071851469592735 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055482, + "c4": 5.547850208044377, + "c5": 4.160887656033283, + "c6": 2.7739251040221884, + "c7": 1.3869625520110942 }, "rgb": [58, 15, 49] }, @@ -199617,23 +199617,23 @@ "year": 1766, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": 19.221526255272984, - "c2": 2.757556337936382, - "c3": -14.267158832697717, - "c4": -12.819081424590708, - "c5": 8.974348713443138, - "c6": 13.41323408630695, - "c7": -13.557361570121138 + "points": { + "c1": 17.086273731415105, + "c2": -4.566854006780861, + "c3": -11.528189907508168, + "c4": 2.626629673645297, + "c5": -5.67081466146508, + "c6": -10.537388767565075, + "c7": -3.4101611758525934 }, - "vertexSeeds": { - "c1": 6.436016941096895, - "c2": 7.429579869780668, - "c3": 7.113237262735813, - "c4": 7.392487781733406, - "c5": 7.75250889973885, - "c6": 7.182038284819903, - "c7": 6.880751419183596 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169206, + "c3": 9.292649098474344, + "c4": 7.4341192787794705, + "c5": 5.575589459084608, + "c6": 3.7170596393897353, + "c7": 1.8585298196948727 }, "rgb": [58, 15, 49] }, @@ -199644,23 +199644,23 @@ "year": 1766, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 8.266938115702708, - "c2": -22.07511991604914, - "c3": 15.83869325732708, - "c4": 29.802236596941427, - "c5": 19.48148663898221, - "c6": 24.7891322242329, - "c7": 25.850855941717057 + "points": { + "c1": -4.323322152279488, + "c2": 30.59991241038754, + "c3": -3.980886050197686, + "c4": 20.45665442800579, + "c5": -9.020847558264698, + "c6": -30.379138637818322, + "c7": -33.175548809288614 }, - "vertexSeeds": { - "c1": 6.64885436484008, - "c2": 6.209616906213382, - "c3": 6.694468273394926, - "c4": 6.9514466464579865, - "c5": 6.300281406516386, - "c6": 7.229905841796107, - "c7": 6.95714137617006 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.42995839112344, + "c3": 8.691631992602868, + "c4": 6.9533055940822965, + "c5": 5.2149791955617255, + "c6": 3.4766527970411434, + "c7": 1.738326398520582 }, "rgb": [238, 201, 159] }, @@ -199671,23 +199671,23 @@ "year": 1766, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 10.568175063349308, - "c2": -17.807492244155455, - "c3": 34.600786763842635, - "c4": 31.99329620698198, - "c5": -21.9921988710163, - "c6": -7.3256956803309805, - "c7": -6.781159864320372 + "points": { + "c1": -3.7041152516637013, + "c2": -15.363890604250098, + "c3": -20.726739395325147, + "c4": 12.960725967592381, + "c5": 15.156351349977484, + "c6": 2.2448581836653574, + "c7": 36.82270188372311 }, - "vertexSeeds": { - "c1": 3.4641706358702313, - "c2": 3.483591801978979, - "c3": 2.686511224523579, - "c4": 3.4504625005121836, - "c5": 2.722671104663633, - "c6": 3.186184468737104, - "c7": 2.7176841849639874 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320387, + "c3": 4.207119741100325, + "c4": 3.3656957928802593, + "c5": 2.5242718446601935, + "c6": 1.6828478964401279, + "c7": 0.8414239482200656 }, "rgb": [222, 0, 59] }, @@ -199698,23 +199698,23 @@ "year": 1766, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": 1.874133364708733, - "c2": 50.27975320268136, - "c3": 37.80880991466459, - "c4": -25.82322364543538, - "c5": -8.852021959573221, - "c6": -35.78036591236905, - "c7": -44.570813198026705 + "points": { + "c1": 12.89340937715562, + "c2": 20.24837758163777, + "c3": -18.97478967152042, + "c4": -13.413671713251269, + "c5": 16.17090241107428, + "c6": -51.98519173582677, + "c7": -17.037889671181304 }, - "vertexSeeds": { - "c1": 6.267752963655509, - "c2": 6.557612900224922, - "c3": 6.68143621784736, - "c4": 6.296269000874886, - "c5": 6.62016984996712, - "c6": 6.3744854286035215, - "c7": 6.153867004958021 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [77, 76, 132] }, @@ -199725,23 +199725,23 @@ "year": 1766, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 22.24604154313822, - "c2": -3.2930287170830823, - "c3": 47.19494755191518, - "c4": 10.34761248228206, - "c5": 37.615557723976764, - "c6": 34.70867779607863, - "c7": -6.9697490347953845 + "points": { + "c1": 21.88261345728141, + "c2": 33.02246394690867, + "c3": 0.8406617444066455, + "c4": -32.65950797776502, + "c5": 3.8001570309347272, + "c6": -38.87704241056029, + "c7": 1.2963180141202955 }, - "vertexSeeds": { - "c1": 1.9930273674367784, - "c2": 1.947217115318432, - "c3": 2.0963132194891254, - "c4": 1.9431331857950438, - "c5": 1.9824484173606773, - "c6": 1.965318202834757, - "c7": 2.0908144210362334 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.02357836338419, + "c3": 2.519648636153494, + "c4": 2.0157189089227914, + "c5": 1.511789181692095, + "c6": 1.0078594544613988, + "c7": 0.5039297272307025 }, "rgb": [222, 0, 59] }, @@ -199752,23 +199752,23 @@ "year": 1766, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 29.257867515153464, - "c2": -3.041187493811165, - "c3": -37.009180914127086, - "c4": 44.87336475112305, - "c5": -33.81259383729136, - "c6": 29.91609005790893, - "c7": 36.96348349097259 + "points": { + "c1": -39.90868299522788, + "c2": 4.508722881193478, + "c3": 42.204105921404576, + "c4": -21.781543067730386, + "c5": 4.963805442523508, + "c6": -0.7582132698294544, + "c7": 4.955322725914705 }, - "vertexSeeds": { - "c1": 3.035521573454472, - "c2": 3.22100299511201, - "c3": 3.1036028666904043, - "c4": 2.904772427043083, - "c5": 3.084594481637196, - "c6": 2.9969858775964897, - "c7": 2.958890941883709 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [222, 0, 59] }, @@ -199779,23 +199779,23 @@ "year": 1766, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -34.113049332883215, - "c2": -1.5004126517032645, - "c3": -0.4233377770581086, - "c4": -36.315034836362095, - "c5": -6.421202810770204, - "c6": -20.681961841870294, - "c7": 5.25271758355062 + "points": { + "c1": -21.97094381351032, + "c2": -19.080157280001334, + "c3": 31.432882940656143, + "c4": -2.8553481603487043, + "c5": 10.697464053360868, + "c6": -7.255630260417419, + "c7": 25.497378126070487 }, - "vertexSeeds": { - "c1": 8.192695003239788, - "c2": 7.8078271847489855, - "c3": 7.930220623689325, - "c4": 8.157877737596875, - "c5": 8.203957620331485, - "c6": 8.264574542551108, - "c7": 8.255411482168686 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255189, + "c3": 9.916782246879336, + "c4": 7.9334257975034586, + "c5": 5.950069348127608, + "c6": 3.9667128987517293, + "c7": 1.983356449375851 }, "rgb": [58, 15, 49] }, @@ -199806,23 +199806,23 @@ "year": 1766, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": 8.050152768554355, - "c2": -5.614300992543832, - "c3": -11.817123812274666, - "c4": -49.18446906239212, - "c5": 8.972564243619807, - "c6": -23.122387476420727, - "c7": -21.20958419643902 + "points": { + "c1": -49.975430534941935, + "c2": -46.11589718034425, + "c3": 20.212132702663084, + "c4": -27.017307417903694, + "c5": 24.688835740862515, + "c6": -43.84970804722381, + "c7": 4.787708345007857 }, - "vertexSeeds": { - "c1": 2.566722459781846, - "c2": 2.3140858353504234, - "c3": 2.4140899771627056, - "c4": 2.308255287161201, - "c5": 2.5080623342752673, - "c6": 2.3944978840331093, - "c7": 2.3375923244728796 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.800277392510402, + "c3": 3.1668978270920003, + "c4": 2.533518261673599, + "c5": 1.900138696255201, + "c6": 1.2667591308367996, + "c7": 0.6333795654184013 }, "rgb": [222, 0, 59] }, @@ -199833,23 +199833,23 @@ "year": 1766, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -25.874818464663374, - "c2": 10.918634810132488, - "c3": 40.72511029266795, - "c4": -1.8532841197767098, - "c5": 29.458824137183925, - "c6": -7.266761613967347, - "c7": 33.98458056975835 + "points": { + "c1": 22.603088829049597, + "c2": -39.85843155792064, + "c3": 8.423863767227054, + "c4": 19.429253682842173, + "c5": -46.07280111573463, + "c6": 0.40758968341253876, + "c7": -16.8767564592431 }, - "vertexSeeds": { - "c1": 7.901259118245374, - "c2": 7.3081998954827005, - "c3": 6.967069632558883, - "c4": 7.0507296154907735, - "c5": 7.52990324790505, - "c6": 7.121679901422871, - "c7": 8.377449118260762 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657424, + "c3": 10.147942672214523, + "c4": 8.118354137771613, + "c5": 6.088765603328712, + "c6": 4.059177068885812, + "c7": 2.0295885344429103 }, "rgb": [58, 15, 49] }, @@ -199860,23 +199860,23 @@ "year": 1766, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 12.544144170418718, - "c2": 32.54265563026006, - "c3": -14.945337448502059, - "c4": 46.06500814946175, - "c5": -9.1299584347964, - "c6": 5.936713965630446, - "c7": 41.19318204038521 + "points": { + "c1": -23.90940245595302, + "c2": 21.409881221181152, + "c3": -19.182915336817306, + "c4": -24.282774927291467, + "c5": -40.92905167803489, + "c6": -3.119163122651976, + "c7": 26.754124743109543 }, - "vertexSeeds": { - "c1": 1.5323000552901165, - "c2": 1.4776209290125148, - "c3": 1.5497093688917096, - "c4": 1.4140971994661429, - "c5": 1.4800343692182119, - "c6": 1.4051686589795906, - "c7": 1.3943994811416156 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257977, + "c3": 1.8723994452149788, + "c4": 1.4979195561719845, + "c5": 1.1234396671289864, + "c6": 0.7489597780859922, + "c7": 0.3744798890429941 }, "rgb": [222, 0, 59] }, @@ -199887,23 +199887,23 @@ "year": 1766, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -1.2111715156114684, - "c2": -1.377395434948383, - "c3": 18.639140337257082, - "c4": 31.078600978326946, - "c5": -12.699179056263443, - "c6": 20.011010426115618, - "c7": -38.37387581917279 + "points": { + "c1": -33.388001742136886, + "c2": 22.82343259841285, + "c3": -0.8985524014233448, + "c4": -5.272253275698574, + "c5": 22.982674682058104, + "c6": 23.141718572467582, + "c7": -8.760390927424176 }, - "vertexSeeds": { - "c1": 3.203100917002396, - "c2": 3.0674113931114126, - "c3": 3.201244507427058, - "c4": 2.996970118196514, - "c5": 3.2332461640615753, - "c6": 3.391493968964746, - "c7": 3.106055552730083 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079057, + "c3": 4.068423485899214, + "c4": 3.2547387887193713, + "c5": 2.4410540915395287, + "c6": 1.6273693943596856, + "c7": 0.8136846971798428 }, "rgb": [77, 76, 132] }, @@ -199914,23 +199914,23 @@ "year": 1766, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -15.695429354146064, - "c2": 15.104435462475443, - "c3": -20.599620314764337, - "c4": 17.29887013383926, - "c5": -14.025687742753746, - "c6": -11.162303828795704, - "c7": 13.458127957402318 + "points": { + "c1": 12.76659135342306, + "c2": -13.943123440170126, + "c3": -24.492556752162486, + "c4": 19.348277031850998, + "c5": 13.82690466846747, + "c6": -15.047965678309872, + "c7": 15.909285379133301 }, - "vertexSeeds": { - "c1": 8.100660937426891, - "c2": 8.381332412357196, - "c3": 7.698947265300228, - "c4": 7.831645083997824, - "c5": 8.356397721251398, - "c6": 7.869678450065564, - "c7": 7.854635591810098 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737864, + "c3": 10.194174757281553, + "c4": 8.155339805825243, + "c5": 6.116504854368932, + "c6": 4.077669902912621, + "c7": 2.0388349514563107 }, "rgb": [77, 76, 132] }, @@ -199941,23 +199941,23 @@ "year": 1766, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": -9.15049665092346, - "c2": 0.8843586510395944, - "c3": 12.522271805274308, - "c4": -16.558356492181527, - "c5": 1.327423515797367, - "c6": 11.045031993815009, - "c7": 3.570555620815462 + "points": { + "c1": -16.05052458696634, + "c2": 10.591515905507784, + "c3": -20.933334589313194, + "c4": 5.921323126490236, + "c5": 2.0793140023753587, + "c6": -2.686297015619676, + "c7": -14.397208172427124 }, - "vertexSeeds": { - "c1": 2.5079648333855884, - "c2": 2.580890478809179, - "c3": 2.706494452440601, - "c4": 2.6826991388402313, - "c5": 2.7242119008450287, - "c6": 2.4299475791946374, - "c7": 2.7692959884883632 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -199968,23 +199968,23 @@ "year": 1766, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 27.557225525405535, - "c2": 31.081750915386415, - "c3": -38.826057451698844, - "c4": -30.93794595875047, - "c5": -19.241258696234965, - "c6": -11.342128749613103, - "c7": 48.36414932181251 + "points": { + "c1": 12.658657852282765, + "c2": 8.947876762526711, + "c3": 35.74250762111907, + "c4": -31.41175943533067, + "c5": 46.30782602114166, + "c6": 6.616735855912353, + "c7": 5.677736830452012 }, - "vertexSeeds": { - "c1": 4.464441532187115, - "c2": 4.414380148810725, - "c3": 3.962908200810384, - "c4": 3.880324350517212, - "c5": 4.040965606589413, - "c6": 3.987778660816777, - "c7": 4.352226935852925 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [77, 76, 132] }, @@ -199995,23 +199995,23 @@ "year": 1766, "resistanceReported": true, "duration": 22982400, - "curveSeeds": { - "c1": 16.697847345935074, - "c2": 14.809923384879639, - "c3": 30.066135330714175, - "c4": 24.585007005123927, - "c5": 0.8090011548470954, - "c6": 27.008777669456144, - "c7": 13.229490753643105 + "points": { + "c1": 31.74967126889105, + "c2": 15.478792942696785, + "c3": -29.406998619618072, + "c4": -36.39441445286459, + "c5": -26.333075029110713, + "c6": -23.305384546767307, + "c7": 20.365871823945326 }, - "vertexSeeds": { - "c1": 1.5599430717174867, - "c2": 1.5130270071019383, - "c3": 1.4385606278131466, - "c4": 1.4888541862517761, - "c5": 1.4818988651720921, - "c6": 1.4651253100712784, - "c7": 1.4858264969811252 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820163, + "c4": 1.5349052242256116, + "c5": 1.1511789181692105, + "c6": 0.7674526121128058, + "c7": 0.38372630605640473 }, "rgb": [222, 0, 59] }, @@ -200022,23 +200022,23 @@ "year": 1766, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": 15.758093978246194, - "c2": -10.835643369030015, - "c3": 12.217193519566177, - "c4": 2.018814289923238, - "c5": -9.281608079708317, - "c6": 1.7707079169844384, - "c7": -15.606697887183577 + "points": { + "c1": -6.257019713467196, + "c2": 17.589632181879885, + "c3": -11.960409092929888, + "c4": -18.13811934753807, + "c5": 19.674212429116693, + "c6": -19.956271343754295, + "c7": 7.930068459333807 }, - "vertexSeeds": { - "c1": 3.2204590009099046, - "c2": 3.419678097303212, - "c3": 3.465840710440501, - "c4": 3.426070509712513, - "c5": 3.2992198758805227, - "c6": 3.246252857660985, - "c7": 3.399859950271956 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280168, + "c3": 4.1840036985668085, + "c4": 3.347202958853449, + "c5": 2.510402219140078, + "c6": 1.6736014794267189, + "c7": 0.8368007397133594 }, "rgb": [222, 0, 59] }, @@ -200049,23 +200049,23 @@ "year": 1767, "resistanceReported": false, "duration": 49852800, - "curveSeeds": { - "c1": -27.682682428553605, - "c2": -22.168075412692467, - "c3": 41.064257215326464, - "c4": -60.32022465108408, - "c5": 37.13568709956358, - "c6": 6.1412487303651915, - "c7": 1.4054873315009075 + "points": { + "c1": 11.944864867668826, + "c2": 25.574964338021417, + "c3": -53.312357701036426, + "c4": 50.78953743477861, + "c5": 47.27936129532537, + "c6": -17.36529543008563, + "c7": -64.16387202511548 }, - "vertexSeeds": { - "c1": 5.170358187982638, - "c2": 5.283196505503462, - "c3": 5.037208195431852, - "c4": 5.5268852860463635, - "c5": 5.54429992699614, - "c6": 4.905210942104775, - "c7": 5.187813300874726 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883499, + "c5": 4.077669902912622, + "c6": 2.718446601941747, + "c7": 1.3592233009708707 }, "rgb": [86, 146, 138] }, @@ -200076,23 +200076,23 @@ "year": 1766, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -42.4511880296133, - "c2": 36.48105593949444, - "c3": 2.001584315449179, - "c4": -37.55449926172397, - "c5": 29.047552668726667, - "c6": -13.849388216287945, - "c7": -13.286693828058741 + "points": { + "c1": 45.52908427572012, + "c2": -18.20377257749634, + "c3": 34.745320358633165, + "c4": -23.824468708316967, + "c5": 1.694740071948189, + "c6": -23.7610366431394, + "c7": 21.032335006869985 }, - "vertexSeeds": { - "c1": 2.1805874278306616, - "c2": 2.0522734408202186, - "c3": 2.10887302114217, - "c4": 2.1519331870782605, - "c5": 2.0629482263060828, - "c6": 2.175629486421181, - "c7": 2.1158946809265218 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266304, + "c3": 2.7739251040221893, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.109570041608878, + "c7": 0.5547850208044373 }, "rgb": [86, 146, 138] }, @@ -200103,23 +200103,23 @@ "year": 1766, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": 16.730853820811248, - "c2": -6.05425238903698, - "c3": -10.025350464849154, - "c4": 4.828061821052376, - "c5": -17.148712738139544, - "c6": -7.45858317422134, - "c7": 5.079137248274002 + "points": { + "c1": 12.545246059544091, + "c2": 18.48601342847268, + "c3": 8.057724909996082, + "c4": -9.187841329098584, + "c5": -15.026439930751598, + "c6": -4.125892102375062, + "c7": 14.759819337333326 }, - "vertexSeeds": { - "c1": 4.099258393997208, - "c2": 4.129932497300963, - "c3": 3.9759311029333975, - "c4": 4.079068122063016, - "c5": 4.139508821840118, - "c6": 3.8790246827127834, - "c7": 3.803610208928368 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130373, + "c3": 5.247341655108648, + "c4": 4.197873324086917, + "c5": 3.1484049930651863, + "c6": 2.0989366620434615, + "c7": 1.0494683310217308 }, "rgb": [238, 201, 159] }, @@ -200130,23 +200130,23 @@ "year": 1766, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -24.81532946737317, - "c2": 18.066336621865133, - "c3": 15.113552939312846, - "c4": -32.65820592866266, - "c5": 12.075646532063054, - "c6": 13.124071238035754, - "c7": 2.9507044071551434 + "points": { + "c1": -38.610071427938564, + "c2": -23.629300925832265, + "c3": -18.389514078187446, + "c4": -16.507397146286543, + "c5": -26.497434760245422, + "c6": -11.283890025195497, + "c7": -12.99256167991194 }, - "vertexSeeds": { - "c1": 2.1169049800496507, - "c2": 2.277936162441818, - "c3": 2.3123705302127124, - "c4": 2.0840101541816787, - "c5": 2.150620089018015, - "c6": 2.227877785684624, - "c7": 2.1139439996938565 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070747, + "c3": 2.8201571890892265, + "c4": 2.256125751271382, + "c5": 1.6920943134535373, + "c6": 1.128062875635689, + "c7": 0.5640314378178445 }, "rgb": [58, 15, 49] }, @@ -200157,23 +200157,23 @@ "year": 1766, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": -2.7386483835350326, - "c2": -17.951158892138665, - "c3": 17.52830051095867, - "c4": 16.817371938251473, - "c5": -14.699486680480806, - "c6": 10.299494635780608, - "c7": -14.667544550101322 + "points": { + "c1": 6.455970590696996, + "c2": -19.228375665898053, + "c3": -3.283592517647751, + "c4": 6.96127293487061, + "c5": 19.026839701914394, + "c6": 6.423600440312416, + "c7": 7.669897792916267 }, - "vertexSeeds": { - "c1": 4.698327000376825, - "c2": 3.9593861976446707, - "c3": 3.698353602434857, - "c4": 4.601552668748015, - "c5": 4.503643123377399, - "c6": 3.642597726920218, - "c7": 4.601047025535143 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015257, + "c3": 5.755894590846047, + "c4": 4.6047156726768375, + "c5": 3.4535367545076268, + "c6": 2.302357836338417, + "c7": 1.1511789181692065 }, "rgb": [222, 0, 59] }, @@ -200184,23 +200184,23 @@ "year": 1766, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -33.49368813071849, - "c2": 26.519916881159936, - "c3": -21.769011053812, - "c4": 15.673584871814342, - "c5": -18.568091851884788, - "c6": -38.30673406387678, - "c7": 22.33105064939918 + "points": { + "c1": -41.76186152863282, + "c2": 33.835823348697, + "c3": -1.6611966638073454, + "c4": 23.759495097498508, + "c5": 34.63707883684517, + "c6": -38.708226266102535, + "c7": -37.98153806594648 }, - "vertexSeeds": { - "c1": 6.337669006044029, - "c2": 6.774375750168481, - "c3": 6.591154812637468, - "c4": 6.306308638553821, - "c5": 5.941113701723835, - "c6": 6.530270505515057, - "c7": 6.894962200497689 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359226, + "c3": 8.252427184466026, + "c4": 6.6019417475728135, + "c5": 4.951456310679613, + "c6": 3.300970873786412, + "c7": 1.6504854368932114 }, "rgb": [58, 15, 49] }, @@ -200211,23 +200211,23 @@ "year": 1766, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": -0.1926500221325398, - "c2": 37.945158391918284, - "c3": 36.05877426558119, - "c4": -26.28093807745949, - "c5": 35.949513038314464, - "c6": 32.77755877176993, - "c7": -39.036191063076444 + "points": { + "c1": -54.34834877932314, + "c2": 4.853358749644464, + "c3": 2.5295541186770407, + "c4": 20.42611214514382, + "c5": 7.752705898547234, + "c6": 51.81040043372451, + "c7": 31.949827335345162 }, - "vertexSeeds": { - "c1": 3.6821197490170694, - "c2": 3.5712582825052497, - "c3": 2.7451233398687007, - "c4": 3.5175937891609315, - "c5": 2.8862595351842226, - "c6": 2.720409085177054, - "c7": 3.6771262565950735 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446601, + "c3": 4.8543689320388355, + "c4": 3.8834951456310676, + "c5": 2.912621359223302, + "c6": 1.9417475728155342, + "c7": 0.9708737864077667 }, "rgb": [86, 146, 138] }, @@ -200238,23 +200238,23 @@ "year": 1766, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -13.441670241550687, - "c2": 18.301055137458082, - "c3": -18.094924960942187, - "c4": -16.86376108215979, - "c5": 22.513761669921283, - "c6": 23.091298918640046, - "c7": -0.4283937716799464 + "points": { + "c1": 13.601918536421334, + "c2": -20.645856821580814, + "c3": -15.382537157143894, + "c4": 3.724856632829919, + "c5": 23.66384252142524, + "c6": -23.562089539011847, + "c7": 23.7103990545622 }, - "vertexSeeds": { - "c1": 3.881565625001518, - "c2": 3.796692430062241, - "c3": 3.8226191276881907, - "c4": 3.802319165659169, - "c5": 3.5296068739868334, - "c6": 3.8731790880572805, - "c7": 3.7802108259486045 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245492, + "c3": 4.738788719371241, + "c4": 3.7910309754969997, + "c5": 2.84327323162275, + "c6": 1.8955154877484999, + "c7": 0.9477577438742499 }, "rgb": [222, 0, 59] }, @@ -200265,23 +200265,23 @@ "year": 1766, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -23.88773855450071, - "c2": 14.610986601749541, - "c3": -24.907718600266854, - "c4": -22.35850741719564, - "c5": 24.350898824418667, - "c6": 21.65674092501632, - "c7": 22.45085556586081 + "points": { + "c1": 2.9642292459221906, + "c2": 10.159304307081207, + "c3": 27.503432472572882, + "c4": 11.80494319455974, + "c5": -2.1762251676587248, + "c6": -7.975651790889774, + "c7": -3.605904398232834 }, - "vertexSeeds": { - "c1": 5.267690671965189, - "c2": 5.077114489243316, - "c3": 5.159399091375674, - "c4": 5.248727507926894, - "c5": 5.060364873072749, - "c6": 5.163771923148446, - "c7": 5.383334129899091 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423026, + "c3": 6.564956079519191, + "c4": 5.251964863615356, + "c5": 3.938973647711505, + "c6": 2.6259824318076697, + "c7": 1.3129912159038348 }, "rgb": [86, 146, 138] }, @@ -200292,23 +200292,23 @@ "year": 1766, "resistanceReported": false, "duration": 6480000, - "curveSeeds": { - "c1": 5.6327884421151815, - "c2": 2.7555024183921475, - "c3": -0.6694359705271289, - "c4": 4.409821708432165, - "c5": -11.934234491196516, - "c6": 5.056340907213546, - "c7": 5.998405813563824 + "points": { + "c1": -18.306041794282823, + "c2": -11.72698861508055, + "c3": -3.9138525624609457, + "c4": -8.72638497899845, + "c5": -7.532824914498061, + "c6": -5.774706937505986, + "c7": -0.27070634821270545 }, - "vertexSeeds": { - "c1": 2.5537768770692235, - "c2": 2.717894707355358, - "c3": 2.6659676676027395, - "c4": 2.5280681992212495, - "c5": 2.7176383105641877, - "c6": 2.603936971071269, - "c7": 2.4698942116181346 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952843, + "c3": 3.421174294960704, + "c4": 2.7369394359685635, + "c5": 2.0527045769764234, + "c6": 1.3684697179842833, + "c7": 0.6842348589921433 }, "rgb": [222, 0, 59] }, @@ -200319,23 +200319,23 @@ "year": 1766, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -5.2655825984033555, - "c2": -2.1355693178962767, - "c3": 7.911860734227844, - "c4": 13.537621781488042, - "c5": -3.8580413397423143, - "c6": -9.298233311795528, - "c7": 26.637807597405235 + "points": { + "c1": -28.39111543163885, + "c2": 3.0845770726318165, + "c3": -30.143169751273916, + "c4": -21.666021971642806, + "c5": 2.928692168714001, + "c6": -19.898282829833747, + "c7": 28.6471033262226 }, - "vertexSeeds": { - "c1": 4.2948909749405875, - "c2": 4.068657499722922, - "c3": 3.6639592214289785, - "c4": 3.762218320709516, - "c5": 3.8624636495539764, - "c6": 3.8393280247101984, - "c7": 3.958882778708619 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331485, + "c3": 5.362921867776239, + "c4": 4.290337494220988, + "c5": 3.2177531206657424, + "c6": 2.1451687471104965, + "c7": 1.0725843735552458 }, "rgb": [238, 201, 159] }, @@ -200346,23 +200346,23 @@ "year": 1767, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": 27.912269733146736, - "c2": 18.8068860494678, - "c3": -21.844377831151505, - "c4": 12.876981275447328, - "c5": 9.925386375201462, - "c6": -50.562908948999, - "c7": -24.63011264072204 + "points": { + "c1": 42.188003161984476, + "c2": -17.135848367969757, + "c3": 10.40177112479531, + "c4": -4.870406877673268, + "c5": -50.489049052081825, + "c6": 9.383454451388069, + "c7": -48.716998278822494 }, - "vertexSeeds": { - "c1": 4.7426123595203595, - "c2": 4.420222796501198, - "c3": 4.737397339897789, - "c4": 4.394040271629, - "c5": 4.504355953275725, - "c6": 4.552907963946119, - "c7": 4.578479789700137 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -200373,23 +200373,23 @@ "year": 1766, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -26.668398279855694, - "c2": 4.066695677008312, - "c3": 19.24528936728955, - "c4": 22.244533673036997, - "c5": -34.13973114561852, - "c6": -33.72763650733657, - "c7": 18.34113192873957 + "points": { + "c1": 10.93364268045326, + "c2": 7.287770655221131, + "c3": -28.73262776462073, + "c4": 29.88580802401936, + "c5": 13.093242302225917, + "c6": -28.005262877887724, + "c7": -28.280686309605677 }, - "vertexSeeds": { - "c1": 1.3344457063958264, - "c2": 1.3213373477652952, - "c3": 1.3508738473134525, - "c4": 1.350977283381914, - "c5": 1.345075930723719, - "c6": 1.3370496569545203, - "c7": 1.3303170139687803 + "offsets": { + "c1": 2.2977346278317152, + "c2": 1.9694868238557488, + "c3": 1.641239019879799, + "c4": 1.3129912159038326, + "c5": 0.9847434119278826, + "c6": 0.6564956079519163, + "c7": 0.3282478039759663 }, "rgb": [77, 76, 132] }, @@ -200400,23 +200400,23 @@ "year": 1766, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": -6.334407272139009, - "c2": 8.845606487457804, - "c3": 3.8070273464606394, - "c4": 15.519062488461426, - "c5": -10.330217996578336, - "c6": 4.086189314290163, - "c7": -4.191779636931729 + "points": { + "c1": 8.711943581333095, + "c2": 7.026121176846381, + "c3": -15.143943828178022, + "c4": 1.9569204112210734, + "c5": 15.912290647755746, + "c6": 6.102001492345394, + "c7": -9.018121995747236 }, - "vertexSeeds": { - "c1": 2.51200414393151, - "c2": 2.4747023693688637, - "c3": 2.5949803736712944, - "c4": 2.557950705153296, - "c5": 2.4577739406444423, - "c6": 2.45347916578364, - "c7": 2.5909079544938027 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590845, + "c3": 3.2131299121590353, + "c4": 2.5705039297272267, + "c5": 1.9278779472954273, + "c6": 1.2852519648636183, + "c7": 0.6426259824318091 }, "rgb": [77, 76, 132] }, @@ -200427,23 +200427,23 @@ "year": 1766, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": 12.767490099789207, - "c2": -8.16600606301572, - "c3": -0.18069889229161262, - "c4": 6.257591518745681, - "c5": -3.866575796398873, - "c6": -0.9877784737951565, - "c7": 8.290988018307711 + "points": { + "c1": -3.654691367941682, + "c2": -15.751836635537426, + "c3": 12.77315017679193, + "c4": 0.048729824959810486, + "c5": -5.504716532790216, + "c6": -1.861994803850644, + "c7": -9.771965562789134 }, - "vertexSeeds": { - "c1": 2.6116036011327104, - "c2": 2.4867350980125686, - "c3": 2.4878407234727824, - "c4": 2.5635818226101947, - "c5": 2.5572500807972824, - "c6": 2.546437450063426, - "c7": 2.557292639409594 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590841, + "c3": 3.21312991215904, + "c4": 2.5705039297272276, + "c5": 1.9278779472954264, + "c6": 1.2852519648636138, + "c7": 0.6426259824318127 }, "rgb": [77, 76, 132] }, @@ -200454,23 +200454,23 @@ "year": 1766, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": 9.459340735670427, - "c2": 0.5375293597471575, - "c3": -8.210442311880294, - "c4": 7.459043090917973, - "c5": 13.109696982370732, - "c6": -10.280839039494948, - "c7": 4.7071101545313425 + "points": { + "c1": -9.445994582691906, + "c2": -11.31055729265103, + "c3": -8.706544094205178, + "c4": 16.281802311377, + "c5": 10.812077181262396, + "c6": -6.677422108827626, + "c7": -11.925439309270274 }, - "vertexSeeds": { - "c1": 1.3404769508194478, - "c2": 1.4233763551922292, - "c3": 1.3443875464458412, - "c4": 1.3781119333560807, - "c5": 1.3415319673434283, - "c6": 1.3442883515938415, - "c7": 1.3008288664908538 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166417, + "c3": 1.73370319001387, + "c4": 1.3869625520110944, + "c5": 1.040221914008323, + "c6": 0.6934812760055472, + "c7": 0.34674063800277577 }, "rgb": [222, 0, 59] }, @@ -200481,23 +200481,23 @@ "year": 1766, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": 1.5762518017542, - "c2": 11.193211044431763, - "c3": 6.650562945997972, - "c4": 10.589262379541925, - "c5": -5.462776913744971, - "c6": -10.122699735962698, - "c7": -13.239917857978643 + "points": { + "c1": -15.026127373659863, + "c2": -16.669841027850143, + "c3": 4.3330162958512695, + "c4": 13.10331563508365, + "c5": 5.466980595580441, + "c6": -11.556476741588217, + "c7": -12.263486206742055 }, - "vertexSeeds": { - "c1": 5.714345698353009, - "c2": 6.052330739957019, - "c3": 6.029632725101928, - "c4": 5.697477672443513, - "c5": 5.683236326165058, - "c6": 5.77461641099878, - "c7": 5.540672472863297 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710128, + "c3": 7.304669440591775, + "c4": 5.843735552473406, + "c5": 4.382801664355055, + "c6": 2.921867776236703, + "c7": 1.4609338881183516 }, "rgb": [77, 76, 132] }, @@ -200508,23 +200508,23 @@ "year": 1767, "resistanceReported": false, "duration": 44409600, - "curveSeeds": { - "c1": 12.060188389358323, - "c2": -19.578050097633962, - "c3": 48.77652687228214, - "c4": -14.35029643278547, - "c5": -46.478038415763805, - "c6": -43.090705175753016, - "c7": 13.240403257853323 + "points": { + "c1": -3.9450961174146357, + "c2": -55.494101521959244, + "c3": 34.432048668830994, + "c4": -55.378596222289765, + "c5": 48.719766843989, + "c6": -16.057844714246727, + "c7": -19.552211829864007 }, - "vertexSeeds": { - "c1": 3.043491458597023, - "c2": 2.54867312352007, - "c3": 2.8988255806380963, - "c4": 2.778944594141615, - "c5": 2.772361060866076, - "c6": 2.6335521167882616, - "c7": 2.5721493200756083 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355064, + "c3": 3.6523347202958885, + "c4": 2.9218677762367076, + "c5": 2.191400832177532, + "c6": 1.4609338881183564, + "c7": 0.7304669440591808 }, "rgb": [58, 15, 49] }, @@ -200535,23 +200535,23 @@ "year": 1767, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 14.862080303116947, - "c2": 29.769400308972344, - "c3": -36.83968045372233, - "c4": 34.06756331754459, - "c5": -46.32715034028325, - "c6": 30.24621916478508, - "c7": 37.520842787805414 + "points": { + "c1": -39.91929400386106, + "c2": 37.20270650437002, + "c3": 21.899280525491783, + "c4": -18.40959941261442, + "c5": -5.3741362375726, + "c6": -43.42947130843074, + "c7": -7.635595144006153 }, - "vertexSeeds": { - "c1": 1.6572149158389635, - "c2": 1.7477036799222418, - "c3": 1.6606405951194732, - "c4": 1.808046211170206, - "c5": 1.7883970058092635, - "c6": 1.7434771888019052, - "c7": 1.7852651254777396 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.6629680998613052, + "c3": 2.2191400832177526, + "c4": 1.7753120665742035, + "c5": 1.3314840499306508, + "c6": 0.8876560332871017, + "c7": 0.44382801664355276 }, "rgb": [222, 0, 59] }, @@ -200562,23 +200562,23 @@ "year": 1766, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -7.010612651977038, - "c2": -5.067082617097395, - "c3": 12.090590940717853, - "c4": 8.33036189828627, - "c5": 4.860463442684502, - "c6": 15.425246755123894, - "c7": -23.264696975479602 + "points": { + "c1": 10.04696883073214, + "c2": -1.966259628144389, + "c3": 8.81132594607238, + "c4": 6.547475783260346, + "c5": 3.150323905354007, + "c6": -15.081019704227899, + "c7": 17.9204028338944 }, - "vertexSeeds": { - "c1": 7.042884894430912, - "c2": 7.025043621740268, - "c3": 7.230184698991914, - "c4": 7.020789156391725, - "c5": 7.063816448685245, - "c6": 7.0895613990667306, - "c7": 7.073457649986698 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.762829403606107, + "c3": 8.969024503005093, + "c4": 7.17521960240408, + "c5": 5.381414701803042, + "c6": 3.587609801202028, + "c7": 1.793804900601014 }, "rgb": [238, 201, 159] }, @@ -200589,23 +200589,23 @@ "year": 1766, "resistanceReported": false, "duration": 4579200, - "curveSeeds": { - "c1": 1.1315301711190848, - "c2": -9.25471788799012, - "c3": -4.628034227139105, - "c4": 14.303718507813247, - "c5": -2.3247850228050293, - "c6": -2.7065273835957235, - "c7": 7.545021140637111 + "points": { + "c1": -16.682003272600735, + "c2": -14.470740470387152, + "c3": 11.764276684246127, + "c4": 15.664615479282372, + "c5": 9.457804946531986, + "c6": 14.227760704247189, + "c7": -15.105590823669624 }, - "vertexSeeds": { - "c1": 2.625749679513496, - "c2": 2.576254557014915, - "c3": 2.5600300767537187, - "c4": 2.5809749655985934, - "c5": 2.626448033378452, - "c6": 2.538613259704096, - "c7": 2.5433402866349506 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.800277392510399, + "c3": 3.1668978270919963, + "c4": 2.5335182616735925, + "c5": 1.9001386962552103, + "c6": 1.266759130836807, + "c7": 0.6333795654184035 }, "rgb": [238, 201, 159] }, @@ -200616,23 +200616,23 @@ "year": 1767, "resistanceReported": false, "duration": 54777600, - "curveSeeds": { - "c1": 55.49979075244231, - "c2": 49.96914905097958, - "c3": 11.083170795157287, - "c4": 45.5817686560428, - "c5": 56.291019333305954, - "c6": 53.72380244389902, - "c7": 61.1111853271357 + "points": { + "c1": -27.059545219890154, + "c2": 8.689284345562044, + "c3": -29.4527157900406, + "c4": 52.702033503576004, + "c5": -56.46108588826276, + "c6": -61.77506559173733, + "c7": -64.5643979208236 }, - "vertexSeeds": { - "c1": 4.562364462144036, - "c2": 4.282607651705047, - "c3": 4.496718514474391, - "c4": 4.691656561747292, - "c5": 4.674184457178789, - "c6": 4.851426681557329, - "c7": 4.840085706354529 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.0457697642163675, + "c3": 5.871474803513635, + "c4": 4.697179842810909, + "c5": 3.5228848821081837, + "c6": 2.348589921405451, + "c7": 1.1742949607027255 }, "rgb": [238, 201, 159] }, @@ -200643,23 +200643,23 @@ "year": 1766, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 23.129784083977228, - "c2": 18.374382925812853, - "c3": -27.585071615601002, - "c4": -1.44629297034232, - "c5": -19.21679910186621, - "c6": -23.223756189585032, - "c7": 9.665282213020689 + "points": { + "c1": -19.203493848475702, + "c2": 30.596192818956553, + "c3": 20.65086823620716, + "c4": -28.081494267701437, + "c5": -14.222230926244276, + "c6": -10.852521984468208, + "c7": -22.8912185914503 }, - "vertexSeeds": { - "c1": 8.596671624299686, - "c2": 8.64413531712813, - "c3": 8.780503504165607, - "c4": 10.169110599989219, - "c5": 10.600602396721042, - "c6": 10.246536795743774, - "c7": 8.703612057260912 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323159, + "c3": 12.82940360610264, + "c4": 10.263522884882107, + "c5": 7.6976421636615795, + "c6": 5.131761442441054, + "c7": 2.565880721220527 }, "rgb": [77, 76, 132] }, @@ -200670,23 +200670,23 @@ "year": 1767, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 8.071871630767937, - "c2": 39.14761690856191, - "c3": -4.4521417609133636, - "c4": -16.727320464667564, - "c5": -17.59024852661387, - "c6": 22.26141491365629, - "c7": -3.926265064992293 + "points": { + "c1": -24.39629765930779, + "c2": 4.500871118455166, + "c3": -34.73905085878411, + "c4": -46.490849779720286, + "c5": -15.752109747257435, + "c6": -15.336854355141796, + "c7": -14.467014932809086 }, - "vertexSeeds": { - "c1": 6.352760097524016, - "c2": 6.024508086453702, - "c3": 6.0394694476019515, - "c4": 6.2393306025095505, - "c5": 6.252823067800782, - "c6": 6.273078461499155, - "c7": 6.269600812208147 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353678, + "c3": 7.6745261211280695, + "c4": 6.1396208969024615, + "c5": 4.6047156726768526, + "c6": 3.0698104484512174, + "c7": 1.5349052242256087 }, "rgb": [238, 201, 159] }, @@ -200697,23 +200697,23 @@ "year": 1766, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 38.06476614803627, - "c2": -36.020200222017564, - "c3": -32.631553673216224, - "c4": 15.530493211639168, - "c5": -20.935544968665557, - "c6": -23.685900962090116, - "c7": 34.02310424945338 + "points": { + "c1": -38.66014356406483, + "c2": 29.894902984123163, + "c3": -6.328734942038871, + "c4": -10.080953061632961, + "c5": -18.474425284901056, + "c6": 1.9468854375737905, + "c7": -32.86980780394914 }, - "vertexSeeds": { - "c1": 2.2470446497989665, - "c2": 2.126767462094431, - "c3": 2.356725764818341, - "c4": 2.3858984836792727, - "c5": 2.2755539045095863, - "c6": 2.3550626678417936, - "c7": 2.193832672019039 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027739, + "c3": 2.8895053166897835, + "c4": 2.311604253351824, + "c5": 1.733703190013868, + "c6": 1.155802126675912, + "c7": 0.577901063337956 }, "rgb": [58, 15, 49] }, @@ -200724,23 +200724,23 @@ "year": 1767, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": -22.45010604174329, - "c2": -45.74666221310511, - "c3": -49.83633358514551, - "c4": 8.107736079595426, - "c5": 19.743367570066297, - "c6": -2.7916439573300167, - "c7": -38.1938755354133 + "points": { + "c1": 19.181973725653776, + "c2": 24.1236260244779, + "c3": 0.8534695926948714, + "c4": 26.661204360500605, + "c5": 32.17905755222334, + "c6": 48.37277857046148, + "c7": 29.403749152476593 }, - "vertexSeeds": { - "c1": 0.9369728040429013, - "c2": 0.9309665286647875, - "c3": 0.930835616743935, - "c4": 0.9278379575562266, - "c5": 0.9848574657499375, - "c6": 0.9740255188818419, - "c7": 0.9352923856345364 + "offsets": { + "c1": 1.715210355987055, + "c2": 1.4701803051317612, + "c3": 1.2251502542764672, + "c4": 0.9801202034211758, + "c5": 0.7350901525658817, + "c6": 0.4900601017105879, + "c7": 0.24503005085529395 }, "rgb": [58, 15, 49] }, @@ -200751,23 +200751,23 @@ "year": 1766, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -16.980332676791228, - "c2": -21.207135793164817, - "c3": -12.802524202559447, - "c4": 8.957581355426981, - "c5": 4.604941884249733, - "c6": -23.97587443131231, - "c7": -23.156066404885852 + "points": { + "c1": -6.245736855817551, + "c2": -17.703572714232422, + "c3": -19.90261943759988, + "c4": -21.539916309493318, + "c5": -33.716943132729256, + "c6": 6.703985561093624, + "c7": -34.65071733364936 }, - "vertexSeeds": { - "c1": 4.453379061749992, - "c2": 4.498585971585494, - "c3": 4.643450985303719, - "c4": 4.138785179640999, - "c5": 4.623397578517797, - "c6": 4.425860789717926, - "c7": 4.836960385776772 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -200778,23 +200778,23 @@ "year": 1766, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 11.927093831912892, - "c2": -22.956145506340512, - "c3": 5.914503827565113, - "c4": 7.4677644553709825, - "c5": 41.90536373739584, - "c6": 1.222060647028016, - "c7": 44.741764980908506 + "points": { + "c1": -20.818412247567124, + "c2": 5.145596301864138, + "c3": 13.712050840058481, + "c4": 13.596555106628529, + "c5": 22.94169104726982, + "c6": 38.794516119537825, + "c7": 23.168398059985044 }, - "vertexSeeds": { - "c1": 7.915067469910174, - "c2": 7.321392126119177, - "c3": 5.9979742343092886, - "c4": 6.120460817797157, - "c5": 8.64821335773103, - "c6": 8.935800695592222, - "c7": 6.784247290981837 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542306, + "c3": 10.656495607951918, + "c4": 8.525196486361537, + "c5": 6.39389736477115, + "c6": 4.2625982431807685, + "c7": 2.1312991215903865 }, "rgb": [222, 0, 59] }, @@ -200805,23 +200805,23 @@ "year": 1766, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -18.228488623340343, - "c2": -20.58754600109139, - "c3": -27.027952343898434, - "c4": -0.024038818829097863, - "c5": -25.85823726210846, - "c6": 24.317325365080933, - "c7": -10.542749021736494 + "points": { + "c1": -10.779921748698992, + "c2": -22.964844210670563, + "c3": -37.88644386638393, + "c4": 34.952724871783005, + "c5": 6.1008810444090855, + "c6": -2.2062491498881087, + "c7": -8.9193605548278 }, - "vertexSeeds": { - "c1": 6.063029160010983, - "c2": 6.0648668971128386, - "c3": 6.00149289346801, - "c4": 5.919609860682012, - "c5": 6.125354849174244, - "c6": 5.82380691883446, - "c7": 5.813324931176024 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951443, + "c3": 7.443365695792884, + "c4": 5.954692556634297, + "c5": 4.466019417475736, + "c6": 2.9773462783171487, + "c7": 1.4886731391585875 }, "rgb": [58, 15, 49] }, @@ -200832,23 +200832,23 @@ "year": 1767, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": 42.76546553952186, - "c2": 2.576370015619304, - "c3": -25.758422204125754, - "c4": -24.13451232136435, - "c5": 7.404325485399326, - "c6": -38.41343169592194, - "c7": 47.94210962105142 + "points": { + "c1": -30.178164519544534, + "c2": 43.608167342650326, + "c3": 6.960216592917, + "c4": -49.32155699236675, + "c5": -36.1473995090227, + "c6": 7.219646925836926, + "c7": -4.37768103018135 }, - "vertexSeeds": { - "c1": 3.902456751128292, - "c2": 3.1036802306465896, - "c3": 2.5406171150937142, - "c4": 2.6378630335969744, - "c5": 1.466246593990841, - "c6": 1.8911713830245782, - "c7": 1.3474057998678424 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170596, + "c3": 5.270457697642163, + "c4": 4.216366158113731, + "c5": 3.162274618585298, + "c6": 2.108183079056865, + "c7": 1.0540915395284325 }, "rgb": [238, 201, 159] }, @@ -200859,23 +200859,23 @@ "year": 1766, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": 7.471380889246138, - "c2": -3.782826845682468, - "c3": -13.80355763663075, - "c4": -13.384773054365695, - "c5": 18.130556917205652, - "c6": -13.119554297296867, - "c7": -5.4594756823079695 + "points": { + "c1": 12.69316211723794, + "c2": 17.211882734612338, + "c3": -20.415431325760142, + "c4": -8.465750494156792, + "c5": 6.512728906170732, + "c6": 15.857437687783765, + "c7": -19.752978537188227 }, - "vertexSeeds": { - "c1": 5.9684362358130345, - "c2": 6.043707757156757, - "c3": 6.36421561408021, - "c4": 6.3525600788968495, - "c5": 6.634073418008027, - "c6": 6.830225784853946, - "c7": 6.3305305320516085 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.79195561719834, + "c3": 8.159963014331945, + "c4": 6.52797041146556, + "c5": 4.895977808599165, + "c6": 3.26398520573278, + "c7": 1.6319926028663845 }, "rgb": [238, 201, 159] }, @@ -200886,23 +200886,23 @@ "year": 1766, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 1.2429959930132242, - "c2": 16.126529900522605, - "c3": -17.01350886573488, - "c4": -13.497632536931459, - "c5": 27.263590844422936, - "c6": -32.01059172060119, - "c7": 20.846841920425312 + "points": { + "c1": -30.727098705295475, + "c2": -27.37063378690919, + "c3": -38.561320260838244, + "c4": 17.36765725303183, + "c5": -2.826915899095532, + "c6": -35.52225393690605, + "c7": 13.094977949842658 }, - "vertexSeeds": { - "c1": 6.242698154403745, - "c2": 6.999994559316536, - "c3": 6.510220005326913, - "c4": 7.225042131872547, - "c5": 6.758276046133933, - "c6": 6.327119443151059, - "c7": 7.189440971427066 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284323, + "c3": 8.784096162736942, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947745, + "c7": 1.7568192325473924 }, "rgb": [238, 201, 159] }, @@ -200913,23 +200913,23 @@ "year": 1766, "resistanceReported": false, "duration": 3974400, - "curveSeeds": { - "c1": -4.012155331239649, - "c2": -7.79522944557575, - "c3": 4.620089585190389, - "c4": -9.987294012729565, - "c5": 9.50780310597813, - "c6": 5.723727205717189, - "c7": -6.7459403631332995 + "points": { + "c1": 0.9819161729595862, + "c2": 9.234634881057712, + "c3": -13.274100809488017, + "c4": -1.6139714822588136, + "c5": -13.054112836178575, + "c6": -14.83174561421843, + "c7": 12.634754540224794 }, - "vertexSeeds": { - "c1": 1.473875872837549, - "c2": 1.3841686083105216, - "c3": 1.5169043502709885, - "c4": 1.6075382620023508, - "c5": 1.5156355323197275, - "c6": 1.580235926700326, - "c7": 1.3446972403331006 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.3300970873786415, + "c3": 1.941747572815533, + "c4": 1.553398058252427, + "c5": 1.1650485436893208, + "c6": 0.7766990291262148, + "c7": 0.388349514563106 }, "rgb": [238, 201, 159] }, @@ -200940,23 +200940,23 @@ "year": 1767, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": 14.418369011494832, - "c2": -30.208044723432756, - "c3": -27.394371437863406, - "c4": -6.775558614265037, - "c5": -19.454219559453875, - "c6": 9.32620335146018, - "c7": 49.8806495616448 + "points": { + "c1": -12.973461022551007, + "c2": 50.62650564128998, + "c3": 44.77189105425752, + "c4": 14.145647252710148, + "c5": 29.283217422516785, + "c6": -20.20623114334402, + "c7": -29.961760304859038 }, - "vertexSeeds": { - "c1": 5.413866566785112, - "c2": 5.043886304801718, - "c3": 6.576018815708413, - "c4": 6.089739672478181, - "c5": 6.1904566929926395, - "c6": 5.9556986278645505, - "c7": 5.3453030128653145 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284328, + "c3": 8.784096162736937, + "c4": 7.027276930189549, + "c5": 5.270457697642165, + "c6": 3.513638465094776, + "c7": 1.7568192325473866 }, "rgb": [86, 146, 138] }, @@ -200967,23 +200967,23 @@ "year": 1767, "resistanceReported": false, "duration": 45705600, - "curveSeeds": { - "c1": 33.206492585056154, - "c2": -6.93988045384112, - "c3": -5.936381942288769, - "c4": 46.41922272836425, - "c5": -40.76682234102142, - "c6": 52.33811224229434, - "c7": 20.822344166053313 + "points": { + "c1": 14.479701568851368, + "c2": -61.916175950055845, + "c3": -39.70028378264456, + "c4": -35.98048245029092, + "c5": -56.78915932202915, + "c6": -58.34848012140799, + "c7": -13.657369138662197 }, - "vertexSeeds": { - "c1": 5.290975651720387, - "c2": 2.2087677047379586, - "c3": 3.44026630668734, - "c4": 3.80620446494969, - "c5": 2.5889918309606497, - "c6": 2.81553994171958, - "c7": 4.229759463246269 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664355, + "c3": 6.703652334720296, + "c4": 5.362921867776237, + "c5": 4.0221914008321775, + "c6": 2.6814609338881183, + "c7": 1.3407304669440583 }, "rgb": [238, 201, 159] }, @@ -200994,23 +200994,23 @@ "year": 1766, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -15.612537496724677, - "c2": 22.584775552259536, - "c3": 23.073246930261078, - "c4": -35.14792513411657, - "c5": 12.238985655475688, - "c6": 5.4526731418440235, - "c7": 20.729890694931832 + "points": { + "c1": 5.0283587089898205, + "c2": -8.969695739495016, + "c3": 23.32299410478798, + "c4": -33.3566254874781, + "c5": -37.71117656059395, + "c6": -34.98572567617929, + "c7": -14.708844792953354 }, - "vertexSeeds": { - "c1": 1.1352559938261584, - "c2": 1.4743078764564954, - "c3": 1.199280756997343, - "c4": 1.2966019022472666, - "c5": 1.3151279403880929, - "c6": 1.3136610589212934, - "c7": 1.2135582707897916 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.1359223300970864, + "c3": 1.7799352750809063, + "c4": 1.4239482200647242, + "c5": 1.067961165048544, + "c6": 0.7119741100323621, + "c7": 0.35598705501618105 }, "rgb": [77, 76, 132] }, @@ -201021,23 +201021,23 @@ "year": 1766, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 9.071865010717858, - "c2": -22.284227504144532, - "c3": 16.71368648586612, - "c4": 4.169371047704399, - "c5": 17.39143058806132, - "c6": -9.06999785909479, - "c7": -3.0842790625079637 + "points": { + "c1": 1.44906622075791, + "c2": -26.277724861190674, + "c3": 1.5207594616636264, + "c4": 7.987079549881052, + "c5": 17.32776617175272, + "c6": -21.79454350088987, + "c7": 15.110573643941613 }, - "vertexSeeds": { - "c1": 4.218074711769138, - "c2": 4.221798932271403, - "c3": 4.114485350251898, - "c4": 4.283897327085639, - "c5": 4.2700854155698025, - "c6": 4.092327566054122, - "c7": 4.113495526444889 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929267, + "c3": 5.131761442441058, + "c4": 4.105409153952835, + "c5": 3.0790568654646266, + "c6": 2.0527045769764176, + "c7": 1.0263522884882088 }, "rgb": [58, 15, 49] }, @@ -201048,23 +201048,23 @@ "year": 1767, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": 22.94670587558054, - "c2": 40.02308390250216, - "c3": 53.54007461130892, - "c4": -30.982928025673974, - "c5": 24.34054558037662, - "c6": -35.318255985395524, - "c7": 49.061485541671495 + "points": { + "c1": 7.666786892863861, + "c2": 20.05172935528413, + "c3": 7.791188302627056, + "c4": -12.38951854228678, + "c5": -45.70671618624403, + "c6": 18.605182922997223, + "c7": -18.283140594794425 }, - "vertexSeeds": { - "c1": 6.155894474927546, - "c2": 5.6000832867876476, - "c3": 5.594521250006373, - "c4": 6.087181301761746, - "c5": 5.9624902989563395, - "c6": 5.718301315138941, - "c7": 5.728443260939737 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353673, + "c3": 7.674526121128059, + "c4": 6.139620896902444, + "c5": 4.6047156726768295, + "c6": 3.069810448451215, + "c7": 1.5349052242256145 }, "rgb": [77, 76, 132] }, @@ -201075,23 +201075,23 @@ "year": 1766, "resistanceReported": false, "duration": 7516800, - "curveSeeds": { - "c1": 7.043846219582118, - "c2": 2.848435635130805, - "c3": 2.897229019003891, - "c4": -14.38422679227287, - "c5": 6.8351561406381265, - "c6": 4.264902061659658, - "c7": 10.109555318654905 + "points": { + "c1": 8.11092899051631, + "c2": 8.287458316111575, + "c3": -0.3489276731138631, + "c4": -13.961351027221356, + "c5": -8.523171368825379, + "c6": 2.7446120717059124, + "c7": 11.552361954014458 }, - "vertexSeeds": { - "c1": 1.2134234778445743, - "c2": 1.120279684309417, - "c3": 1.2020298046229274, - "c4": 1.1420148916862989, - "c5": 1.1851477396641088, - "c6": 1.1142196719556778, - "c7": 1.1377683548036444 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742015, + "c3": 1.479426722145169, + "c4": 1.1835413777161343, + "c5": 0.8876560332871017, + "c6": 0.5917706888580672, + "c7": 0.2958853444290345 }, "rgb": [238, 201, 159] }, @@ -201102,23 +201102,23 @@ "year": 1767, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": -22.55608881801523, - "c2": 28.812763200788034, - "c3": -36.56327684873779, - "c4": 31.733449971572547, - "c5": 41.99854983166052, - "c6": 24.439722614179935, - "c7": -29.031678737109843 + "points": { + "c1": 9.031219619618078, + "c2": -28.852779116783676, + "c3": 13.649668757219054, + "c4": -1.6300988608862284, + "c5": -35.02806321239994, + "c6": 43.25422487607802, + "c7": -28.25356227468118 }, - "vertexSeeds": { - "c1": 2.533061243716487, - "c2": 2.3792356594937507, - "c3": 2.5669551138478797, - "c4": 2.6592476795272724, - "c5": 2.7677784015449793, - "c6": 2.4011769282602877, - "c7": 2.583825215291434 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.0776699029126195, + "c3": 3.398058252427182, + "c4": 2.7184466019417495, + "c5": 2.038834951456311, + "c6": 1.3592233009708734, + "c7": 0.6796116504854354 }, "rgb": [238, 201, 159] }, @@ -201129,23 +201129,23 @@ "year": 1766, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -6.821261792662746, - "c2": -13.35276855413493, - "c3": -11.978966743608204, - "c4": -20.24990167895922, - "c5": -1.883753033815168, - "c6": -25.89064981027393, - "c7": -22.513551619205966 + "points": { + "c1": -4.397283662005712, + "c2": 11.59670536079686, + "c3": -9.19652848992581, + "c4": -17.874022788382103, + "c5": -7.988617930109701, + "c6": -17.54842489263896, + "c7": 33.27282358498311 }, - "vertexSeeds": { - "c1": 4.338102426018497, - "c2": 4.480714383211196, - "c3": 4.379590866475267, - "c4": 4.440183691372693, - "c5": 4.769380967748026, - "c6": 4.807252766718005, - "c7": 4.660676862793156 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.9625520110957, + "c3": 5.802126675913082, + "c4": 4.641701340730472, + "c5": 3.4812760055478544, + "c6": 2.320850670365236, + "c7": 1.160425335182618 }, "rgb": [58, 15, 49] }, @@ -201156,23 +201156,23 @@ "year": 1766, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -27.542066144871036, - "c2": 24.094475123690266, - "c3": 3.9602468089234932, - "c4": -30.274024699988225, - "c5": -19.547484996703474, - "c6": -10.569656328933554, - "c7": -17.839385651082893 + "points": { + "c1": -3.9708516184594984, + "c2": 35.25145126226187, + "c3": -33.610509588681374, + "c4": 35.62303409402914, + "c5": 28.96358376533064, + "c6": 15.200988206297211, + "c7": 12.789066605952584 }, - "vertexSeeds": { - "c1": 6.330889363913786, - "c2": 5.752821449149276, - "c3": 5.837227467683555, - "c4": 5.541507999857528, - "c5": 6.3283845602995275, - "c6": 6.284730709936263, - "c7": 5.769187383021933 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [58, 15, 49] }, @@ -201183,23 +201183,23 @@ "year": 1766, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 37.045948338225955, - "c2": -14.084856273732576, - "c3": 16.74601370730897, - "c4": -43.90160836374003, - "c5": 34.57855445914673, - "c6": -34.18350315733957, - "c7": -30.646951793749782 + "points": { + "c1": -7.799828257817751, + "c2": 9.625905725892913, + "c3": -45.75395597098083, + "c4": -19.904594418965054, + "c5": 12.676163186567976, + "c6": 43.451424011960825, + "c7": 17.947012575526955 }, - "vertexSeeds": { - "c1": 8.26447936686686, - "c2": 7.535925078206818, - "c3": 7.272525410540415, - "c4": 7.639958688669393, - "c5": 7.055388447677959, - "c6": 7.035367267856943, - "c7": 8.210665660446342 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [58, 15, 49] }, @@ -201210,23 +201210,23 @@ "year": 1767, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -3.727745283017157, - "c2": 6.790581261403524, - "c3": -38.38503759863436, - "c4": -44.46018650841815, - "c5": 2.245573497324145, - "c6": -25.206035542084507, - "c7": 40.58533106308454 + "points": { + "c1": -43.091477844452996, + "c2": -27.38111042870155, + "c3": 0.7669935515551316, + "c4": -47.302784579037, + "c5": -44.27820678569541, + "c6": 24.292403936877932, + "c7": -44.37114518566697 }, - "vertexSeeds": { - "c1": 2.981339580529667, - "c2": 2.9132143537030317, - "c3": 3.027362468674526, - "c4": 2.8267756208736454, - "c5": 2.793942358466794, - "c6": 2.8339580493510947, - "c7": 2.732458157293962 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395287, + "c3": 3.6754507628294006, + "c4": 2.9403606102635216, + "c5": 2.2052704576976434, + "c6": 1.4701803051317568, + "c7": 0.7350901525658784 }, "rgb": [238, 201, 159] }, @@ -201237,23 +201237,23 @@ "year": 1767, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": 54.58251265494119, - "c2": 41.90192456096202, - "c3": 26.938468318452216, - "c4": -22.351069303984396, - "c5": 7.753157902196158, - "c6": 43.96581213007311, - "c7": -8.9368608366375 + "points": { + "c1": -10.766083785789114, + "c2": 9.319053973887925, + "c3": 29.745010177919518, + "c4": 58.02129431060633, + "c5": -30.82914395146005, + "c6": 53.79336636487107, + "c7": 17.476930393438074 }, - "vertexSeeds": { - "c1": 5.697160835921409, - "c2": 3.918357166345468, - "c3": 6.0524185775174715, - "c4": 4.102605422677915, - "c5": 5.266281937035572, - "c6": 5.558960939512966, - "c7": 6.375937880975381 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836336, + "c3": 7.9519186315302814, + "c4": 6.361534905224223, + "c5": 4.77115117891817, + "c6": 3.1807674526121117, + "c7": 1.5903837263060558 }, "rgb": [58, 15, 49] }, @@ -201264,23 +201264,23 @@ "year": 1766, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -24.038351006799406, - "c2": 32.104765134194324, - "c3": -39.44496901964022, - "c4": -19.92378612001407, - "c5": -19.760367206395312, - "c6": -17.23908453246265, - "c7": 15.835316549787386 + "points": { + "c1": -29.52717546415443, + "c2": 28.14118379721934, + "c3": 21.331572019379422, + "c4": -45.5276931388338, + "c5": -5.298488881655267, + "c6": -1.9892794136393164, + "c7": -23.583453469495115 }, - "vertexSeeds": { - "c1": 4.344585938037432, - "c2": 4.386048383058474, - "c3": 4.199195939375524, - "c4": 4.234919189347557, - "c5": 4.106984535325933, - "c6": 4.3762721135636, - "c7": 4.143959991047184 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130377, + "c3": 5.24734165510865, + "c4": 4.197873324086923, + "c5": 3.148404993065195, + "c6": 2.0989366620434544, + "c7": 1.0494683310217272 }, "rgb": [58, 15, 49] }, @@ -201291,23 +201291,23 @@ "year": 1766, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 10.366362811796648, - "c2": -19.22255960340796, - "c3": -31.937584130734084, - "c4": 14.457411208886093, - "c5": -40.06421724164647, - "c6": -33.4865070410755, - "c7": 38.403115922886386 + "points": { + "c1": 31.87445791331139, + "c2": -40.03338031874698, + "c3": -7.900988492040106, + "c4": -20.844228976200444, + "c5": -4.30722239303816, + "c6": -37.98453668196717, + "c7": -6.65006432506793 }, - "vertexSeeds": { - "c1": 6.824998434522336, - "c2": 6.770104692441584, - "c3": 6.820638510012426, - "c4": 6.761571717107107, - "c5": 6.662364102929189, - "c6": 6.618486279727698, - "c7": 6.751913700567676 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198328, + "c3": 8.159963014331957, + "c4": 6.52797041146556, + "c5": 4.895977808599164, + "c6": 3.2639852057327667, + "c7": 1.6319926028663971 }, "rgb": [238, 201, 159] }, @@ -201318,23 +201318,23 @@ "year": 1766, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 40.535484300037545, - "c2": 1.6210389168527755, - "c3": 38.765567225989464, - "c4": 2.693773141417502, - "c5": 29.71585147522051, - "c6": 3.589568903271001, - "c7": -3.3334742182618555 + "points": { + "c1": -25.688810209121144, + "c2": -3.5113843800117337, + "c3": 25.720137481576067, + "c4": 19.011882456850117, + "c5": 24.972993090175414, + "c6": -4.283210554324377, + "c7": -25.279169460465546 }, - "vertexSeeds": { - "c1": 3.710031615782231, - "c2": 3.559586214633121, - "c3": 3.430721039160139, - "c4": 3.328819878028236, - "c5": 4.022165559794231, - "c6": 3.8847573883173596, - "c7": 3.5498107301599995 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486822, + "c3": 4.877484974572351, + "c4": 3.9019879796578847, + "c5": 2.9264909847434137, + "c6": 1.9509939898289423, + "c7": 0.9754969949144712 }, "rgb": [222, 0, 59] }, @@ -201345,23 +201345,23 @@ "year": 1766, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 9.213288859531445, - "c2": 41.65931617576284, - "c3": 38.42248907426375, - "c4": -8.555629605474067, - "c5": 24.283017024401374, - "c6": -3.4024445789530304, - "c7": 15.355857559756025 + "points": { + "c1": -42.91671306608332, + "c2": 20.176531772102138, + "c3": 26.965414018498578, + "c4": -40.532284997463776, + "c5": -38.31429167477708, + "c6": -19.356163184240163, + "c7": 18.278712265449883 }, - "vertexSeeds": { - "c1": 11.718741532579614, - "c2": 11.593209518500968, - "c3": 11.371627205724284, - "c4": 11.661784246088429, - "c5": 11.667115192853515, - "c6": 11.54615684253554, - "c7": 11.374492068055433 + "offsets": { + "c1": 20.388349514563107, + "c2": 17.47572815533982, + "c3": 14.563106796116488, + "c4": 11.650485436893199, + "c5": 8.73786407766991, + "c6": 5.825242718446579, + "c7": 2.9126213592232895 }, "rgb": [86, 146, 138] }, @@ -201372,23 +201372,23 @@ "year": 1766, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 22.255335939266374, - "c2": -11.965230233044466, - "c3": -28.069881816818782, - "c4": -32.66070798816287, - "c5": -10.697191707362109, - "c6": 39.27218655905398, - "c7": 35.245400682845656 + "points": { + "c1": -16.154519756958138, + "c2": -43.813470818035455, + "c3": -3.5195359377260473, + "c4": 18.706990305039128, + "c5": -21.344473063397835, + "c6": -45.933702782579125, + "c7": 36.24503397582434 }, - "vertexSeeds": { - "c1": 3.0029479026306585, - "c2": 3.105564579011483, - "c3": 2.910806565796441, - "c4": 2.8953240190751592, - "c5": 2.9838289708898054, - "c6": 3.117831513340386, - "c7": 2.97638436019958 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -201399,23 +201399,23 @@ "year": 1766, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 27.950810820585986, - "c2": -3.338066996655435, - "c3": 14.25632578734757, - "c4": 1.7696270801171252, - "c5": 23.48469095115101, - "c6": 31.864646615891928, - "c7": -4.965061817507689 + "points": { + "c1": 27.31413660213066, + "c2": 39.647578707152945, + "c3": -15.495592956270368, + "c4": 18.362283384165956, + "c5": -22.34688692536816, + "c6": -33.85093869256946, + "c7": 39.42641810276716 }, - "vertexSeeds": { - "c1": 10.683979957535477, - "c2": 10.270694326382763, - "c3": 10.983047078911401, - "c4": 10.19245561053792, - "c5": 11.170482289448472, - "c6": 11.284775049923889, - "c7": 9.585347577063036 + "offsets": { + "c1": 19.54692556634304, + "c2": 16.75450762829403, + "c3": 13.962089690245035, + "c4": 11.169671752196024, + "c5": 8.377253814147009, + "c6": 5.584835876098016, + "c7": 2.7924179380490033 }, "rgb": [238, 201, 159] }, @@ -201426,23 +201426,23 @@ "year": 1766, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 21.085292353874394, - "c2": 15.97283964652533, - "c3": -24.309952910867974, - "c4": -23.40200060215158, - "c5": 8.94904524328038, - "c6": 1.3209314995302748, - "c7": 26.913858175897346 + "points": { + "c1": 9.829199903977376, + "c2": -2.179553660487869, + "c3": -28.311444620114102, + "c4": 34.27622108272404, + "c5": -22.54450208540397, + "c6": -9.015305834313605, + "c7": -20.160390683231725 }, - "vertexSeeds": { - "c1": 6.305408632236099, - "c2": 6.476126094423731, - "c3": 6.492157156988395, - "c4": 6.301982085189077, - "c5": 6.695194044078942, - "c6": 6.675263580020138, - "c7": 6.519562188135775 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997229, + "c3": 8.044382801664362, + "c4": 6.435506241331495, + "c5": 4.8266296809986, + "c6": 3.217753120665734, + "c7": 1.608876560332867 }, "rgb": [77, 76, 132] }, @@ -201453,23 +201453,23 @@ "year": 1767, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 19.151905712835635, - "c2": -34.46575423228521, - "c3": 19.20344928973922, - "c4": 21.81872595607272, - "c5": 43.637193213242064, - "c6": 2.8981519849710864, - "c7": -22.45560988816311 + "points": { + "c1": -26.972916580854207, + "c2": 22.97701155554133, + "c3": 5.857815527206938, + "c4": -28.49790742632773, + "c5": 17.186543870257616, + "c6": 18.016790704831102, + "c7": -6.161892057463845 }, - "vertexSeeds": { - "c1": 4.118837262160411, - "c2": 4.2275448226071495, - "c3": 4.174491198070613, - "c4": 4.389092859037599, - "c5": 4.269650327269908, - "c6": 4.35762503721147, - "c7": 4.105315570188004 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170591, + "c3": 5.270457697642165, + "c4": 4.216366158113727, + "c5": 3.1622746185853012, + "c6": 2.1081830790568636, + "c7": 1.0540915395284378 }, "rgb": [222, 0, 59] }, @@ -201480,23 +201480,23 @@ "year": 1766, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -6.705656452244707, - "c2": 9.066727224549712, - "c3": -4.692843409814195, - "c4": 24.793574846462743, - "c5": 17.223410905532685, - "c6": 18.03893523724575, - "c7": -25.200699711094785 + "points": { + "c1": 19.117081908968146, + "c2": -23.136605252643577, + "c3": 13.573703723253743, + "c4": -7.187215806294883, + "c5": -12.01853156850149, + "c6": -26.239106666143513, + "c7": -17.047419286000995 }, - "vertexSeeds": { - "c1": 8.4672255815225, - "c2": 8.60743024772659, - "c3": 8.612539666729703, - "c4": 7.250233680661557, - "c5": 7.092381965306751, - "c6": 7.293113511066698, - "c7": 7.465189207226727 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070732, + "c3": 11.534905224225612, + "c4": 9.227924179380487, + "c5": 6.92094313453537, + "c6": 4.613962089690244, + "c7": 2.3069810448451187 }, "rgb": [58, 15, 49] }, @@ -201507,23 +201507,23 @@ "year": 1766, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 10.628982434926122, - "c2": 30.579325858102038, - "c3": -3.5854434831930106, - "c4": 31.87689896322651, - "c5": 12.647646122443156, - "c6": -18.487126704457197, - "c7": -24.129830479367836 + "points": { + "c1": -7.117854101046468, + "c2": 21.53891310679556, + "c3": -30.341758662192895, + "c4": 9.191102355657598, + "c5": -32.69051597050083, + "c6": -14.691360726457958, + "c7": -34.9528915509338 }, - "vertexSeeds": { - "c1": 3.747551842707444, - "c2": 3.804152684553828, - "c3": 3.794722834599227, - "c4": 3.834534554635183, - "c5": 3.7913956840757153, - "c6": 3.7735963033516713, - "c7": 3.786387621274089 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703652, + "c4": 3.6985668053629213, + "c5": 2.773925104022191, + "c6": 1.8492834026814606, + "c7": 0.9246417013407303 }, "rgb": [58, 15, 49] }, @@ -201534,23 +201534,23 @@ "year": 1766, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -9.106183958365524, - "c2": -29.912884971627737, - "c3": -12.672139127672885, - "c4": -11.764505195720403, - "c5": 8.055325958605358, - "c6": -28.732214360895718, - "c7": -4.359534027305948 + "points": { + "c1": 0.900885427442752, + "c2": 10.645429515105967, + "c3": -1.8376757277493638, + "c4": -1.364036320173355, + "c5": -31.634902894862524, + "c6": -15.493003701709373, + "c7": -24.113992505430485 }, - "vertexSeeds": { - "c1": 4.787139825309264, - "c2": 4.337204956770964, - "c3": 5.151779077333305, - "c4": 4.834041388010132, - "c5": 4.581746444672559, - "c6": 4.702283887503057, - "c7": 4.767363319013654 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -201561,23 +201561,23 @@ "year": 1767, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": -24.62372819345478, - "c2": 5.81300790165789, - "c3": 18.62166908057536, - "c4": -19.179826972202736, - "c5": 36.906430714096345, - "c6": 47.51546970110853, - "c7": -42.929066908721445 + "points": { + "c1": 39.98159911034428, + "c2": 24.269857399442387, + "c3": -14.531773165240331, + "c4": -43.48818676792085, + "c5": 2.221293679662047, + "c6": 1.1719816159237908, + "c7": -33.86056831071977 }, - "vertexSeeds": { - "c1": 5.976471527561042, - "c2": 6.293655033750717, - "c3": 6.482797490895828, - "c4": 6.250329570140696, - "c5": 6.396718450094378, - "c6": 5.745776060291662, - "c7": 5.80087290713804 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329171, + "c4": 6.250577901063336, + "c5": 4.6879334257975, + "c6": 3.1252889505316648, + "c7": 1.562644475265829 }, "rgb": [58, 15, 49] }, @@ -201588,23 +201588,23 @@ "year": 1766, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 26.542701629568768, - "c2": 31.326229184330707, - "c3": -29.892377984554972, - "c4": 22.371440508095866, - "c5": 14.907340734985041, - "c6": 31.507803881694336, - "c7": 16.88187238963029 + "points": { + "c1": 21.87761431991843, + "c2": 27.72005053122961, + "c3": -34.85158710965946, + "c4": 30.757627813146563, + "c5": 0.7076544971977654, + "c6": -17.862562974909494, + "c7": 15.739017501047051 }, - "vertexSeeds": { - "c1": 7.343381857343547, - "c2": 7.286981996247273, - "c3": 7.32459824773214, - "c4": 7.311901716317304, - "c5": 7.309868225878826, - "c6": 7.328772545712823, - "c7": 7.310958355847641 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.51317614424404, + "c3": 8.76098012020352, + "c4": 7.0087840961627705, + "c5": 5.25658807212202, + "c6": 3.504392048081269, + "c7": 1.7521960240407506 }, "rgb": [58, 15, 49] }, @@ -201615,23 +201615,23 @@ "year": 1767, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": -39.81369705362166, - "c2": -7.7003578914604205, - "c3": 16.805372131037473, - "c4": -12.057269791817554, - "c5": -38.5431022524114, - "c6": -25.763946348296223, - "c7": 38.92897531950368 + "points": { + "c1": 48.107429351327056, + "c2": 48.644018065012745, + "c3": -18.370055108968764, + "c4": -14.433131524737142, + "c5": 5.719319003367751, + "c6": -12.226942277179774, + "c7": -17.513873360936145 }, - "vertexSeeds": { - "c1": 5.94403710485869, - "c2": 5.7035025334204965, - "c3": 6.005214197404766, - "c4": 5.8631670392430975, - "c5": 5.886431259141838, - "c6": 5.781841092160986, - "c7": 5.780453772009978 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589457, + "c3": 7.23532131299121, + "c4": 5.788257050392964, + "c5": 4.341192787794739, + "c6": 2.894128525196493, + "c7": 1.4470642625982466 }, "rgb": [238, 201, 159] }, @@ -201642,23 +201642,23 @@ "year": 1767, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 20.1215214671835, - "c2": -8.927417881332481, - "c3": -42.84524622431928, - "c4": 44.122166214605855, - "c5": -2.7922140478879385, - "c6": -37.37614516085658, - "c7": -8.11856725679985 + "points": { + "c1": -17.21921747493298, + "c2": 20.95718770637116, + "c3": -27.648594673355547, + "c4": -9.821915553819686, + "c5": -30.614206349520362, + "c6": 3.1949037561979736, + "c7": -0.6131023454190512 }, - "vertexSeeds": { - "c1": 7.073929334650935, - "c2": 7.159507946493769, - "c3": 6.9082769844239795, - "c4": 7.08344507972303, - "c5": 7.188767620910242, - "c6": 6.973121953325061, - "c7": 6.9077700487607805 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284319, + "c3": 8.784096162736953, + "c4": 7.027276930189555, + "c5": 5.2704576976421595, + "c6": 3.5136384650947927, + "c7": 1.7568192325473964 }, "rgb": [58, 15, 49] }, @@ -201669,23 +201669,23 @@ "year": 1767, "resistanceReported": false, "duration": 60652800, - "curveSeeds": { - "c1": 30.323247356140996, - "c2": 32.605416356621205, - "c3": 64.82441122803675, - "c4": 71.50793534336339, - "c5": -66.44503110636973, - "c6": -43.81102282449466, - "c7": 35.52198285698432 + "points": { + "c1": 59.53317533514968, + "c2": -59.47850487406983, + "c3": -18.953348665296033, + "c4": 28.495971792129126, + "c5": 66.98393915287892, + "c6": -6.354123164682619, + "c7": -32.95802762944768 }, - "vertexSeeds": { - "c1": 5.102603112811626, - "c2": 4.937769818149976, - "c3": 4.587546574969941, - "c4": 4.752517575699978, - "c5": 4.6754605373409515, - "c6": 4.594035697907734, - "c7": 4.6195522051407485 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -201696,23 +201696,23 @@ "year": 1767, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -25.274706826031625, - "c2": -12.68938166616936, - "c3": -28.575652986597934, - "c4": 31.865771046210796, - "c5": -7.853269516764371, - "c6": 22.282371859552867, - "c7": -38.2306603577345 + "points": { + "c1": 47.23891003029827, + "c2": 6.014689627699923, + "c3": -47.44491595387704, + "c4": -23.889665347045437, + "c5": -24.06581844790251, + "c6": 30.38233628708548, + "c7": -25.76969199071729 }, - "vertexSeeds": { - "c1": 3.2515464345884735, - "c2": 3.0115063405102713, - "c3": 2.484231348949672, - "c4": 2.5221140675600977, - "c5": 2.4893878405100125, - "c6": 3.5905377305872035, - "c7": 2.6153601026540447 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.3814147018030525, + "c3": 4.484512251502543, + "c4": 3.587609801202035, + "c5": 2.6907073509015245, + "c6": 1.7938049006010168, + "c7": 0.896902450300509 }, "rgb": [58, 15, 49] }, @@ -201723,23 +201723,23 @@ "year": 1767, "resistanceReported": false, "duration": 55123200, - "curveSeeds": { - "c1": -25.193036906648487, - "c2": 21.37706745853029, - "c3": 23.285213708891177, - "c4": -27.910785829154648, - "c5": 38.81402579866065, - "c6": 58.64991163498726, - "c7": -0.3449539823509724 + "points": { + "c1": 13.599929517275015, + "c2": 33.724297113244745, + "c3": -69.8265453073441, + "c4": -23.213873652317794, + "c5": 2.9612264552065426, + "c6": 22.739731266318557, + "c7": -26.31584206038962 }, - "vertexSeeds": { - "c1": 1.208300556791249, - "c2": 1.2347507755893945, - "c3": 0.9980121564800225, - "c4": 1.176599205152896, - "c5": 1.1148792702929264, - "c6": 1.1829195099660992, - "c7": 0.9745497043855924 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144238, + "c3": 1.5025427646786869, + "c4": 1.20203421174295, + "c5": 0.9015256588072119, + "c6": 0.6010171058714738, + "c7": 0.3005085529357369 }, "rgb": [58, 15, 49] }, @@ -201750,23 +201750,23 @@ "year": 1767, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": 31.091287638566882, - "c2": -45.335244213764184, - "c3": -20.347189213376843, - "c4": -53.90602124846758, - "c5": 17.201657031814136, - "c6": -16.45638725757778, - "c7": 39.75408498354551 + "points": { + "c1": -11.689651414804239, + "c2": -58.19642603604162, + "c3": 34.82735733374824, + "c4": -0.6947851119847854, + "c5": -27.088807414086894, + "c6": 7.035563849828122, + "c7": -25.03735081036892 }, - "vertexSeeds": { - "c1": 4.513934859168639, - "c2": 4.534426082832654, - "c3": 4.384805990678502, - "c4": 4.382167457586738, - "c5": 4.41571132069321, - "c6": 4.64011282846752, - "c7": 4.624781463304241 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [58, 15, 49] }, @@ -201777,23 +201777,23 @@ "year": 1767, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": -49.576589187717374, - "c2": -37.46642464590829, - "c3": -49.17072146535213, - "c4": 23.517182909069675, - "c5": 12.341916049551486, - "c6": 54.34106706748376, - "c7": 20.11609917222256 + "points": { + "c1": -19.44154145079809, + "c2": -35.62106939500099, + "c3": -59.63627228766118, + "c4": -7.136795822234056, + "c5": 32.69186294136787, + "c6": -29.497590549649004, + "c7": -11.611014798909636 }, - "vertexSeeds": { - "c1": 3.0404862705961, - "c2": 3.035244524821018, - "c3": 3.3595718895368383, - "c4": 3.2240289709588335, - "c5": 3.5020904751600415, - "c6": 3.477917252061963, - "c7": 3.116879458432559 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.253351826167363, + "c4": 3.4026814609338896, + "c5": 2.5520110957004154, + "c6": 1.7013407304669417, + "c7": 0.8506703652334737 }, "rgb": [238, 201, 159] }, @@ -201804,23 +201804,23 @@ "year": 1767, "resistanceReported": false, "duration": 52099200, - "curveSeeds": { - "c1": 30.7627480459781, - "c2": -24.27689289684659, - "c3": -17.81702210093296, - "c4": 13.729003430545845, - "c5": 34.34399399512377, - "c6": -49.62379383274548, - "c7": 34.27611904555184 + "points": { + "c1": -15.601012581627309, + "c2": 53.12094457492658, + "c3": -57.93376101974992, + "c4": 20.98790458518036, + "c5": 21.89414543633839, + "c6": -9.832422861264497, + "c7": -1.2078086346578942 }, - "vertexSeeds": { - "c1": 5.20749390671107, - "c2": 5.054220363091676, - "c3": 5.334009070170874, - "c4": 4.907103419646714, - "c5": 4.934517962771973, - "c6": 4.813914974724179, - "c7": 5.176809093536307 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262138, + "c3": 6.472491909385116, + "c4": 5.177993527508095, + "c5": 3.883495145631073, + "c6": 2.5889967637540514, + "c7": 1.2944983818770217 }, "rgb": [77, 76, 132] }, @@ -201831,23 +201831,23 @@ "year": 1767, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": -23.071571894006194, - "c2": -39.482892678974636, - "c3": -14.36643793330024, - "c4": -33.9762885369597, - "c5": -32.054847804887075, - "c6": 11.449934332205082, - "c7": -40.66554653213862 + "points": { + "c1": 8.5206823752603, + "c2": 12.977361392283193, + "c3": -10.710761518921302, + "c4": -6.784291306720746, + "c5": 43.60727371023102, + "c6": 25.134991482969248, + "c7": -3.114854307250404 }, - "vertexSeeds": { - "c1": 7.000382942157072, - "c2": 6.011849205188637, - "c3": 5.73897355026454, - "c4": 5.428645629120536, - "c5": 5.321065819901742, - "c6": 6.4689052053575775, - "c7": 7.244841292693781 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686545, + "c3": 9.015256588072122, + "c4": 7.212205270457697, + "c5": 5.409153952843273, + "c6": 3.6061026352288486, + "c7": 1.8030513176144243 }, "rgb": [86, 146, 138] }, @@ -201858,23 +201858,23 @@ "year": 1767, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": -25.673534261230188, - "c2": 10.000710808234913, - "c3": -27.678042456464098, - "c4": -51.89703398252543, - "c5": -2.53474693821925, - "c6": -31.586972741089784, - "c7": -2.4241765588026496 + "points": { + "c1": -37.404950003836106, + "c2": 16.670218857702196, + "c3": 12.258317021157907, + "c4": 50.25796170969987, + "c5": -2.483437616134225, + "c6": 32.30588184538044, + "c7": -14.479397939310637 }, - "vertexSeeds": { - "c1": 1.8456836230443077, - "c2": 1.8531802997339792, - "c3": 1.7668280161682524, - "c4": 1.8030153177785857, - "c5": 1.752552510277469, - "c6": 1.8598603625568109, - "c7": 1.7738324421985374 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.6907073509015262, + "c3": 2.242256125751273, + "c4": 1.7938049006010146, + "c5": 1.345353675450761, + "c6": 0.8969024503005073, + "c7": 0.44845122515025365 }, "rgb": [238, 201, 159] }, @@ -201885,23 +201885,23 @@ "year": 1766, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -6.2108129170442545, - "c2": -13.740241522574774, - "c3": -16.325859300868615, - "c4": -3.709856763595763, - "c5": 3.4981698162180734, - "c6": -8.984897294995982, - "c7": 10.696144077986524 + "points": { + "c1": -10.28206697309172, + "c2": -31.31970979129503, + "c3": -15.391597064251371, + "c4": -30.443355282594915, + "c5": 9.207500723049584, + "c6": 35.28438921529037, + "c7": 33.064809544852785 }, - "vertexSeeds": { - "c1": 12.999068076000173, - "c2": 12.84027936884986, - "c3": 13.333599700694215, - "c4": 12.716773197750577, - "c5": 13.0986756180346, - "c6": 12.856003372622025, - "c7": 13.237545327622406 + "offsets": { + "c1": 22.97734627831715, + "c2": 19.694868238557568, + "c3": 16.412390198797986, + "c4": 13.129912159038366, + "c5": 9.847434119278784, + "c6": 6.564956079519203, + "c7": 3.282478039759581 }, "rgb": [58, 15, 49] }, @@ -201912,23 +201912,23 @@ "year": 1767, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -30.180714964745636, - "c2": 23.108919772911783, - "c3": 35.53229744979132, - "c4": 4.17296380833298, - "c5": 22.45760289833877, - "c6": 41.87181888829844, - "c7": -17.554021558312712 + "points": { + "c1": 5.43253472954963, + "c2": 5.4742705985425175, + "c3": 30.912026462713378, + "c4": -27.678866885184597, + "c5": 7.5548903942955405, + "c6": 23.364064660471406, + "c7": 20.770515305572452 }, - "vertexSeeds": { - "c1": 1.5748964790786262, - "c2": 1.579831230690316, - "c3": 1.5201185247021112, - "c4": 1.4707814770742103, - "c5": 1.2930461897157213, - "c6": 1.2496273090490497, - "c7": 1.4696800864845199 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [222, 0, 59] }, @@ -201939,23 +201939,23 @@ "year": 1767, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 19.06444271126611, - "c2": -21.92503728448013, - "c3": -14.960100263255644, - "c4": 24.145138116551223, - "c5": 21.229257840861685, - "c6": -20.1378848762702, - "c7": 10.491088490592027 + "points": { + "c1": -20.299971343232226, + "c2": 3.5487580578915896, + "c3": 35.57103573075885, + "c4": 43.07972240674006, + "c5": -25.707939987047517, + "c6": 27.45637360719668, + "c7": -18.604590653848824 }, - "vertexSeeds": { - "c1": 5.280873090806723, - "c2": 4.832200577369439, - "c3": 5.068024929687873, - "c4": 5.163195100290643, - "c5": 4.924160697274159, - "c6": 5.1381578339877, - "c7": 4.5565439513408315 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.62829403606102, + "c3": 6.356911696717524, + "c4": 5.085529357374014, + "c5": 3.814147018030517, + "c6": 2.542764678687007, + "c7": 1.2713823393435097 }, "rgb": [222, 0, 59] }, @@ -201966,23 +201966,23 @@ "year": 1767, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": 2.824105524245681, - "c2": 6.939046457231981, - "c3": -20.5623742000068, - "c4": -15.681358277573693, - "c5": 34.25011199487028, - "c6": -53.87010315559204, - "c7": -0.7131352741444346 + "points": { + "c1": 22.674803219893576, + "c2": 34.0628360677988, + "c3": -48.57092190791896, + "c4": -17.379112414153084, + "c5": -47.84838579155986, + "c6": -7.804313592348379, + "c7": -12.369069705326005 }, - "vertexSeeds": { - "c1": 5.325571176015297, - "c2": 5.469653669893495, - "c3": 5.222694831990057, - "c4": 5.375519524125949, - "c5": 5.3518931628393185, - "c6": 5.540700175126234, - "c7": 5.210406024993723 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583907, + "c3": 6.657420249653251, + "c4": 5.325936199722624, + "c5": 3.9944521497919676, + "c6": 2.662968099861312, + "c7": 1.331484049930656 }, "rgb": [58, 15, 49] }, @@ -201993,23 +201993,23 @@ "year": 1766, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 24.701380856584947, - "c2": -12.665719484510731, - "c3": -10.826377463768953, - "c4": -34.69554447819679, - "c5": -36.288229966876976, - "c6": 9.049762371096747, - "c7": -38.94418706952487 + "points": { + "c1": 29.80010198817405, + "c2": 23.989827507785236, + "c3": -34.96395793679844, + "c4": 23.24359891080198, + "c5": 14.425350676093657, + "c6": -40.29118376442313, + "c7": -29.314345896715988 }, - "vertexSeeds": { - "c1": 3.830226930931474, - "c2": 3.8274269207401277, - "c3": 3.741837692108715, - "c4": 3.7486093987068463, - "c5": 3.8510342849088195, - "c6": 3.7973755992331713, - "c7": 3.848727816717703 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703652, + "c4": 3.6985668053629213, + "c5": 2.773925104022191, + "c6": 1.8492834026814606, + "c7": 0.9246417013407303 }, "rgb": [222, 0, 59] }, @@ -202020,23 +202020,23 @@ "year": 1767, "resistanceReported": true, "duration": 40780800, - "curveSeeds": { - "c1": 3.419272434857767, - "c2": 20.70523205538735, - "c3": 48.512758158085184, - "c4": -49.024315821053904, - "c5": -18.69419782153465, - "c6": 5.702174312808509, - "c7": 23.721175262914848 + "points": { + "c1": 34.29221528674842, + "c2": -17.491082554760418, + "c3": 55.01847552504584, + "c4": 48.04232254740919, + "c5": 29.10681885068707, + "c6": -52.79766137355256, + "c7": 20.817675580098374 }, - "vertexSeeds": { - "c1": 5.822842809527552, - "c2": 5.828052060002729, - "c3": 6.060164125037508, - "c4": 5.543545152421585, - "c5": 5.901280588276435, - "c6": 5.768718941836834, - "c7": 5.785198630786362 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669906, + "c3": 7.2815533980582465, + "c4": 5.8252427184466, + "c5": 4.368932038834953, + "c6": 2.912621359223294, + "c7": 1.456310679611647 }, "rgb": [222, 0, 59] }, @@ -202047,23 +202047,23 @@ "year": 1766, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -10.461541358632847, - "c2": -0.9141609620709623, - "c3": -24.326253957359057, - "c4": 9.540387789596636, - "c5": -28.00206709356873, - "c6": -15.856219968605373, - "c7": -31.78321703919895 + "points": { + "c1": -20.334987718339967, + "c2": 30.06916098418492, + "c3": 6.657715061396978, + "c4": 25.91139617536122, + "c5": 11.781070268893487, + "c6": 28.66740442779242, + "c7": -30.041290120169105 }, - "vertexSeeds": { - "c1": 5.0547228005875775, - "c2": 4.728745629493339, - "c3": 5.2867558125558105, - "c4": 4.579871336668223, - "c5": 4.884796420236617, - "c6": 4.9432082361875205, - "c7": 4.912271186590514 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -202074,23 +202074,23 @@ "year": 1767, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 37.06929015777886, - "c2": 20.403010289817807, - "c3": 16.68649674544728, - "c4": 32.07867033096891, - "c5": -25.16273777182321, - "c6": -16.93369046006192, - "c7": 10.233568145504108 + "points": { + "c1": 2.0000647998828356, + "c2": 24.583775362871044, + "c3": 25.346353386392103, + "c4": 20.80490152558901, + "c5": -41.02020843138866, + "c6": 31.29138892613802, + "c7": 4.649110951397908 }, - "vertexSeeds": { - "c1": 4.208603387308565, - "c2": 3.674512889901507, - "c3": 4.067657910372427, - "c4": 3.8287674637851534, - "c5": 3.185075198798017, - "c6": 4.780122353553243, - "c7": 4.695294574957092 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859916, + "c3": 6.24133148404993, + "c4": 4.993065187239945, + "c5": 3.744798890429958, + "c6": 2.496532593619971, + "c7": 1.2482662968099867 }, "rgb": [222, 0, 59] }, @@ -202101,23 +202101,23 @@ "year": 1767, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -26.41312309797926, - "c2": -1.3469168251878898, - "c3": 4.059200607092066, - "c4": 37.99857884670931, - "c5": 24.650040821512164, - "c6": 33.08192106069811, - "c7": 15.458212965808265 + "points": { + "c1": 44.0038149232666, + "c2": 35.41904209929457, + "c3": 24.328677695367404, + "c4": -19.484856428052968, + "c5": 12.320028923042322, + "c6": 23.59641339649731, + "c7": 29.414033357860717 }, - "vertexSeeds": { - "c1": 8.317898027153158, - "c2": 8.164711295521865, - "c3": 8.63070915047177, - "c4": 8.182854713276498, - "c5": 8.403751558150159, - "c6": 8.761149097739382, - "c7": 8.256816917120716 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582524, + "c3": 10.679611650485437, + "c4": 8.54368932038835, + "c5": 6.407766990291262, + "c6": 4.271844660194175, + "c7": 2.1359223300970873 }, "rgb": [238, 201, 159] }, @@ -202128,23 +202128,23 @@ "year": 1766, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 27.31955171114194, - "c2": -17.120344429537557, - "c3": -7.5737848152358005, - "c4": -8.409752077073161, - "c5": 21.097051009074562, - "c6": -0.01974139563624533, - "c7": -25.661908908649707 + "points": { + "c1": -10.833135110218237, + "c2": 10.008305610449206, + "c3": 37.631578951980075, + "c4": 3.807364094097146, + "c5": 34.309425220157806, + "c6": 20.95172405721312, + "c7": 28.725584802745658 }, - "vertexSeeds": { - "c1": 2.6142297784121684, - "c2": 3.400350988588337, - "c3": 3.415237344721783, - "c4": 2.0465566366377552, - "c5": 3.083888339272762, - "c6": 2.838785960089631, - "c7": 2.676168315443395 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320388, + "c3": 4.207119741100323, + "c4": 3.3656957928802584, + "c5": 2.5242718446601935, + "c6": 1.6828478964401286, + "c7": 0.8414239482200648 }, "rgb": [222, 0, 59] }, @@ -202155,23 +202155,23 @@ "year": 1767, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -31.197073062808357, - "c2": -26.392883748472254, - "c3": -17.117594359158513, - "c4": 16.462612139135707, - "c5": -16.52937456050427, - "c6": -36.18180441379495, - "c7": 39.65256136981416 + "points": { + "c1": 5.803265902758611, + "c2": 18.899249391845082, + "c3": -13.918255461529991, + "c4": -11.95934982493597, + "c5": -29.09056427912136, + "c6": -35.4681594746875, + "c7": 11.930654140484208 }, - "vertexSeeds": { - "c1": 8.118941771905643, - "c2": 8.025542806332336, - "c3": 8.201510476950551, - "c4": 8.261479600177758, - "c5": 8.09308378638141, - "c6": 8.0482709226096, - "c7": 8.2058613373814 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536744, + "c3": 10.078594544613976, + "c4": 8.062875635691173, + "c5": 6.047156726768372, + "c6": 4.031437817845604, + "c7": 2.015718908922802 }, "rgb": [238, 201, 159] }, @@ -202182,23 +202182,23 @@ "year": 1767, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 16.701351341955068, - "c2": 2.9578953033649995, - "c3": -32.16451552319032, - "c4": 20.625607038436932, - "c5": 5.129588089389792, - "c6": -15.256465071633542, - "c7": 10.233835833364239 + "points": { + "c1": 10.155493678416633, + "c2": -9.574113190682361, + "c3": -33.070388647345226, + "c4": -23.179572779398434, + "c5": -39.158822190300064, + "c6": -20.834602703188967, + "c7": -21.847621081366945 }, - "vertexSeeds": { - "c1": 3.9696432449053063, - "c2": 3.813563710293644, - "c3": 4.040945897071367, - "c4": 4.065577964593785, - "c5": 3.8871494784396923, - "c6": 3.887043873004281, - "c7": 3.8072084398805948 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105874, + "c4": 3.9204808136846934, + "c5": 2.94036061026352, + "c6": 1.9602404068423467, + "c7": 0.9801202034211733 }, "rgb": [222, 0, 59] }, @@ -202209,23 +202209,23 @@ "year": 1767, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": 30.982488967730617, - "c2": 25.320047999970384, - "c3": -31.1264005808625, - "c4": 31.924341217412746, - "c5": -8.571040726667661, - "c6": -32.839891510497026, - "c7": 40.85225186689969 + "points": { + "c1": 29.988943810050642, + "c2": 19.71552663673853, + "c3": -36.83456481887491, + "c4": 12.009714131184559, + "c5": 6.6808409391511105, + "c6": 34.08220794242436, + "c7": 3.244699432172183 }, - "vertexSeeds": { - "c1": 5.001953731975062, - "c2": 5.053997878632044, - "c3": 4.997865895612938, - "c4": 5.013122862785256, - "c5": 4.988537651122885, - "c6": 5.080573367832538, - "c7": 5.070857013690431 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618585, + "c3": 6.102635228848821, + "c4": 4.8821081830790565, + "c5": 3.6615811373092924, + "c6": 2.4410540915395282, + "c7": 1.2205270457697641 }, "rgb": [238, 201, 159] }, @@ -202236,23 +202236,23 @@ "year": 1766, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 9.478257427784776, - "c2": 3.1576935223001144, - "c3": 25.653085323921637, - "c4": 7.39910650447208, - "c5": -13.574233349150411, - "c6": 4.718807177925427, - "c7": 8.45173235987064 + "points": { + "c1": -0.9917431178665979, + "c2": -11.991738375453789, + "c3": -24.434259444875003, + "c4": -18.84238080054549, + "c5": 19.493857788749224, + "c6": 25.07422651510162, + "c7": 22.945142147264306 }, - "vertexSeeds": { - "c1": 4.972962640361945, - "c2": 4.1338813725990065, - "c3": 4.860435866463342, - "c4": 4.567799355041974, - "c5": 4.192207923574259, - "c6": 5.0461759966648705, - "c7": 4.066150829630563 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -202263,23 +202263,23 @@ "year": 1766, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 13.908469727179341, - "c2": -25.339666053518073, - "c3": -19.91063070612565, - "c4": 1.0325377954641795, - "c5": -13.492841705629495, - "c6": -28.751874237005342, - "c7": 24.20162311158455 + "points": { + "c1": -30.846284013893502, + "c2": -18.276170825191645, + "c3": 10.881683834771312, + "c4": -14.979267943098197, + "c5": -4.875295551756203, + "c6": 9.460958253053217, + "c7": -20.725810024323597 }, - "vertexSeeds": { - "c1": 8.292213694046836, - "c2": 8.372585611845677, - "c3": 8.691702905513484, - "c4": 8.926957363279218, - "c5": 8.472930316819593, - "c6": 8.971358177431545, - "c7": 7.783144043485252 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.95423023578363, + "c3": 10.795191863153034, + "c4": 8.636153490522425, + "c5": 6.477115117891815, + "c6": 4.318076745261206, + "c7": 2.1590383726306093 }, "rgb": [222, 0, 59] }, @@ -202290,23 +202290,23 @@ "year": 1766, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 31.889256370082407, - "c2": 32.45486220113504, - "c3": -18.42602386400776, - "c4": -33.72697524856982, - "c5": -28.42436351445087, - "c6": -2.4057578540749702, - "c7": -29.61748561337881 + "points": { + "c1": 1.5034488709847267, + "c2": 36.345998852435784, + "c3": 32.01391805034507, + "c4": 8.25263916934422, + "c5": -7.326920897695917, + "c6": 27.333691569955064, + "c7": -2.9859977830065887 }, - "vertexSeeds": { - "c1": 6.266721179459316, - "c2": 7.0674267279668745, - "c3": 6.6035359231890896, - "c4": 6.365607956716004, - "c5": 6.171858094756374, - "c6": 6.764147680779009, - "c7": 6.469663243289056 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163664, + "c3": 8.714748035136381, + "c4": 6.971798428109106, + "c5": 5.228848821081832, + "c6": 3.4858992140545584, + "c7": 1.742949607027274 }, "rgb": [222, 0, 59] }, @@ -202317,23 +202317,23 @@ "year": 1767, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 38.88862129938519, - "c2": -3.007672499486816, - "c3": -10.282391912262813, - "c4": -22.51395409492723, - "c5": 33.73143863451266, - "c6": -17.874481677827642, - "c7": -27.49253905541831 + "points": { + "c1": -17.164795736157053, + "c2": -19.86036067610228, + "c3": 20.079946077172927, + "c4": 30.60592955126802, + "c5": -19.035179473551533, + "c6": -15.988457828861328, + "c7": -35.887022397826165 }, - "vertexSeeds": { - "c1": 2.5623131121744063, - "c2": 2.6261050205865417, - "c3": 2.8694662381851472, - "c4": 2.7801611721344024, - "c5": 2.5686410891587523, - "c6": 2.711168755260636, - "c7": 2.625429349540391 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.4442903374942246, + "c4": 2.755432269995378, + "c5": 2.0665742024965317, + "c6": 1.377716134997685, + "c7": 0.6888580674988465 }, "rgb": [58, 15, 49] }, @@ -202344,23 +202344,23 @@ "year": 1767, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -25.18371073240761, - "c2": -22.494099284603504, - "c3": 27.792311332197194, - "c4": 34.847060973253946, - "c5": 13.376347607930143, - "c6": 3.9596258392831345, - "c7": -35.818517360137655 + "points": { + "c1": 36.152541754647245, + "c2": -4.20355164208523, + "c3": -13.589766304140994, + "c4": 17.88198417367534, + "c5": -37.0016749183844, + "c6": -21.17246036051558, + "c7": -6.495598700978988 }, - "vertexSeeds": { - "c1": 9.22954122591892, - "c2": 9.097062982904347, - "c3": 9.445567338855431, - "c4": 9.10379566117326, - "c5": 9.19086651013805, - "c6": 9.389412003433351, - "c7": 9.211070334826777 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.257975034674072, + "c3": 11.881645862228382, + "c4": 9.505316689782713, + "c5": 7.128987517337044, + "c6": 4.752658344891357, + "c7": 2.3763291724456876 }, "rgb": [58, 15, 49] }, @@ -202371,23 +202371,23 @@ "year": 1767, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -21.476831126523855, - "c2": 25.768309563001466, - "c3": 8.443019581228398, - "c4": -35.80921521510259, - "c5": 9.50118004533271, - "c6": 14.668941425372175, - "c7": 21.119099764314115 + "points": { + "c1": 11.188182493875878, + "c2": -11.774696290850184, + "c3": 8.652576161109941, + "c4": 20.81655637731395, + "c5": -14.493530213171905, + "c6": -28.127388677756386, + "c7": -35.80775317995929 }, - "vertexSeeds": { - "c1": 5.710220935667051, - "c2": 5.487443957208054, - "c3": 5.623183994604914, - "c4": 5.565239032209278, - "c5": 5.823091806991478, - "c6": 5.586229598620764, - "c7": 5.837543517306316 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147029, + "c3": 6.9810448451225104, + "c4": 5.58483587609802, + "c5": 4.188626907073501, + "c6": 2.79241793804901, + "c7": 1.396208969024519 }, "rgb": [238, 201, 159] }, @@ -202398,23 +202398,23 @@ "year": 1766, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 30.468029737758627, - "c2": 27.722631570822074, - "c3": -7.1169142028892765, - "c4": -6.108702930331074, - "c5": -26.31311558317577, - "c6": -20.07413268826395, - "c7": -8.605573051775917 + "points": { + "c1": 0.8435141526190861, + "c2": 5.641761945158869, + "c3": -27.839920069613278, + "c4": -0.8959286605757413, + "c5": -5.38782487136147, + "c6": 25.446984474121003, + "c7": 25.269631698751994 }, - "vertexSeeds": { - "c1": 4.719840163164729, - "c2": 4.374375260714862, - "c3": 4.719493616486334, - "c4": 4.612770344957177, - "c5": 4.578927597069461, - "c6": 4.024498803467476, - "c7": 4.3382433790586985 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -202425,23 +202425,23 @@ "year": 1766, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 33.558995110302675, - "c2": -6.232441000484268, - "c3": 13.428032308309987, - "c4": -19.286693294598358, - "c5": -6.175569199509123, - "c6": -8.67856029779406, - "c7": -32.57122015518388 + "points": { + "c1": 25.05053572921164, + "c2": -11.277477039046055, + "c3": -32.37310569531095, + "c4": 30.348589878249726, + "c5": -22.199420761353174, + "c6": 13.721295903977897, + "c7": -2.2405965080758747 }, - "vertexSeeds": { - "c1": 4.189104843937781, - "c2": 3.787814859920619, - "c3": 3.227987574947538, - "c4": 4.092456691908646, - "c5": 4.880393446082888, - "c6": 4.266595269740297, - "c7": 4.806410301799401 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658806, + "c3": 6.12575127138234, + "c4": 4.900601017105871, + "c5": 3.675450762829404, + "c6": 2.4503005085529357, + "c7": 1.2251502542764663 }, "rgb": [58, 15, 49] }, @@ -202452,23 +202452,23 @@ "year": 1766, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -30.85044216456332, - "c2": 10.84364330663259, - "c3": 2.556482882486005, - "c4": -9.54481093346769, - "c5": -13.976706469090903, - "c6": -9.11854691188903, - "c7": -14.669254687631337 + "points": { + "c1": 16.065210188337986, + "c2": 27.098597581306592, + "c3": 9.72975827780079, + "c4": 22.347945279825993, + "c5": -5.961841363018976, + "c6": 19.88178309625394, + "c7": 31.74367121417663 }, - "vertexSeeds": { - "c1": 4.846389731708451, - "c2": 5.036227799908506, - "c3": 5.285075245018933, - "c4": 4.5697650574882855, - "c5": 5.224512788237539, - "c6": 4.995800283106046, - "c7": 5.153391698963638 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101247, + "c3": 6.3800277392510365, + "c4": 5.10402219140084, + "c5": 3.8280166435506233, + "c6": 2.55201109570042, + "c7": 1.27600554785021 }, "rgb": [58, 15, 49] }, @@ -202479,23 +202479,23 @@ "year": 1766, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 20.762442916725057, - "c2": -27.309596705873375, - "c3": -22.797598635763556, - "c4": -11.443659614438833, - "c5": 11.362963254875318, - "c6": 28.76914130911893, - "c7": -3.354988308820001 + "points": { + "c1": 15.0820824671273, + "c2": 8.326040149834597, + "c3": 31.278727259245798, + "c4": -25.731564033726, + "c5": 12.291486372190882, + "c6": 26.796218674395135, + "c7": -2.8571951497736485 }, - "vertexSeeds": { - "c1": 7.112394130836442, - "c2": 6.864452629593251, - "c3": 7.13441064964124, - "c4": 6.375454925259926, - "c5": 7.276891726116936, - "c6": 7.010886032037682, - "c7": 7.046345757243879 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847436, + "c3": 9.1077207582062, + "c4": 7.286176606564955, + "c5": 5.464632454923718, + "c6": 3.6430883032824815, + "c7": 1.8215441516412365 }, "rgb": [238, 201, 159] }, @@ -202506,23 +202506,23 @@ "year": 1767, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 14.841296467161996, - "c2": -13.093546450630136, - "c3": 1.43164118557997, - "c4": -12.061529356739516, - "c5": 35.62435311079534, - "c6": 14.184644691259315, - "c7": 27.849592303513987 + "points": { + "c1": 27.99617137677373, + "c2": 40.75345625134615, + "c3": 30.61817831100373, + "c4": -5.780803076680591, + "c5": 31.947379148977973, + "c6": 16.50220585376657, + "c7": 5.267461668517427 }, - "vertexSeeds": { - "c1": 5.514647789868889, - "c2": 5.531722090118594, - "c3": 5.602942236149262, - "c4": 5.7511937007907825, - "c5": 5.475021745381348, - "c6": 5.463671075658572, - "c7": 5.769577658761708 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026365, + "c3": 6.911696717521957, + "c4": 5.529357374017577, + "c5": 4.147018030513169, + "c6": 2.7646786870087885, + "c7": 1.382339343504408 }, "rgb": [77, 76, 132] }, @@ -202533,23 +202533,23 @@ "year": 1767, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 2.3487333946807922, - "c2": 16.542670715099078, - "c3": -32.84841230613199, - "c4": -36.435616181094545, - "c5": 12.941630148051601, - "c6": 50.87649824731402, - "c7": -25.18622966174665 + "points": { + "c1": 33.49745190971049, + "c2": 6.331475127617338, + "c3": -7.061233844335639, + "c4": -51.30806597085382, + "c5": 41.66299498274827, + "c6": 9.686524973761976, + "c7": 42.57559383042492 }, - "vertexSeeds": { - "c1": 4.088050371439958, - "c2": 4.120106613883361, - "c3": 4.062483734893134, - "c4": 4.178565005045667, - "c5": 4.144855570985937, - "c6": 4.294857043381954, - "c7": 4.050931068609244 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969489, + "c3": 5.154877484974577, + "c4": 4.123901987979664, + "c5": 3.092926490984738, + "c6": 2.0619509939898255, + "c7": 1.0309754969949128 }, "rgb": [58, 15, 49] }, @@ -202560,23 +202560,23 @@ "year": 1767, "resistanceReported": false, "duration": 41644800, - "curveSeeds": { - "c1": -13.231186671816602, - "c2": -47.70603600515152, - "c3": -25.667407823613136, - "c4": -8.04249275060723, - "c5": 53.165598806396304, - "c6": -27.178108469642908, - "c7": 6.615891795795321 + "points": { + "c1": 41.23598728022628, + "c2": -30.727811411918506, + "c3": 29.282771348900596, + "c4": -3.644443773749522, + "c5": 43.50387309867595, + "c6": 25.28506245368952, + "c7": -54.495095564800835 }, - "vertexSeeds": { - "c1": 3.9171873141648406, - "c2": 4.037582299929235, - "c3": 4.097643590457203, - "c4": 4.0107629287578215, - "c5": 4.03539071854936, - "c6": 4.0317297547978495, - "c7": 3.9101123141405334 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [238, 201, 159] }, @@ -202587,23 +202587,23 @@ "year": 1767, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 31.76233620551227, - "c2": -13.012489287342827, - "c3": 31.324733360307874, - "c4": 20.663925031561796, - "c5": -23.32444472281219, - "c6": -6.016014180401527, - "c7": -2.3217502438708877 + "points": { + "c1": -25.256132992980618, + "c2": -23.96363800682331, + "c3": -15.372907159046449, + "c4": 6.399414074547849, + "c5": 33.86331123386283, + "c6": -5.381204712455769, + "c7": 17.492273453334676 }, - "vertexSeeds": { - "c1": 10.95631816921221, - "c2": 10.949811818301706, - "c3": 10.95376849719306, - "c4": 10.952974494524648, - "c5": 10.945292991102736, - "c6": 10.958099932211478, - "c7": 10.949027730926007 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725977, + "c3": 13.060564031436927, + "c4": 10.448451225149958, + "c5": 7.836338418862988, + "c6": 5.224225612576018, + "c7": 2.61211280628697 }, "rgb": [58, 15, 49] }, @@ -202614,23 +202614,23 @@ "year": 1767, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -37.40428706058003, - "c2": 24.298352945813242, - "c3": 25.35221232762327, - "c4": 42.96899125109734, - "c5": -17.602276723613784, - "c6": -42.56997863409633, - "c7": 37.493288397986454 + "points": { + "c1": 21.825717961923907, + "c2": -27.982163723706844, + "c3": 11.29413942652966, + "c4": 11.373996214646453, + "c5": 13.479348057694096, + "c6": -37.502510485731726, + "c7": -32.23624798089141 }, - "vertexSeeds": { - "c1": 3.3465883383191786, - "c2": 4.052246418830545, - "c3": 3.5385660791954483, - "c4": 3.265136790569623, - "c5": 3.883003641117667, - "c6": 4.208299553098068, - "c7": 4.007013260541492 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768378, + "c3": 5.039297272306979, + "c4": 4.0314378178455845, + "c5": 3.023578363384189, + "c6": 2.015718908922794, + "c7": 1.007859454461395 }, "rgb": [238, 201, 159] }, @@ -202641,23 +202641,23 @@ "year": 1767, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": -27.048254684435957, - "c2": 19.22571330273719, - "c3": -20.198739394056734, - "c4": -23.45109258101335, - "c5": -24.887264787522763, - "c6": 50.47506295499599, - "c7": -12.081710509517528 + "points": { + "c1": 41.838271864971574, + "c2": 39.245368813572185, + "c3": -50.078331426525274, + "c4": 43.224977806567736, + "c5": 35.7992131581359, + "c6": -46.430547205013646, + "c7": -2.924202694669148 }, - "vertexSeeds": { - "c1": 4.483676385580417, - "c2": 5.1373256685657624, - "c3": 4.46730822072389, - "c4": 4.518005866566678, - "c5": 5.174508465408474, - "c6": 5.058246556450453, - "c7": 4.913659444396823 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848819, + "c3": 5.085529357374019, + "c4": 4.0684234858992125, + "c5": 3.0513176144244074, + "c6": 2.0342117429496023, + "c7": 1.0171058714748011 }, "rgb": [222, 0, 59] }, @@ -202668,23 +202668,23 @@ "year": 1766, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 15.687400064459649, - "c2": -24.57714427283403, - "c3": 7.337307180514497, - "c4": 15.860972113611684, - "c5": 26.328759499037847, - "c6": 26.624958540166727, - "c7": -26.503588990697438 + "points": { + "c1": 16.181919546635715, + "c2": -17.061147767200268, + "c3": 15.100979245747201, + "c4": 2.1430055336530387, + "c5": 19.710545558043325, + "c6": 13.358111314672318, + "c7": 21.906834696699082 }, - "vertexSeeds": { - "c1": 1.2640909462894168, - "c2": 1.3012905285277885, - "c3": 1.2544278703280805, - "c4": 1.2625390906125107, - "c5": 1.211886448017691, - "c6": 1.2653612126811224, - "c7": 1.262104297481344 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753125, + "c3": 1.595006934812761, + "c4": 1.2760055478502097, + "c5": 0.9570041608876583, + "c6": 0.6380027739251048, + "c7": 0.3190013869625534 }, "rgb": [86, 146, 138] }, @@ -202695,23 +202695,23 @@ "year": 1766, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 1.9635629453746013, - "c2": 7.071091203113607, - "c3": -16.661287824798094, - "c4": -16.247779630652598, - "c5": 1.7977672103389715, - "c6": 6.038667741434729, - "c7": 5.216884796048948 + "points": { + "c1": -1.2086531513103864, + "c2": 14.701246647033408, + "c3": -19.47593642520719, + "c4": 8.936339583479352, + "c5": 25.26447819253805, + "c6": -6.396536136383343, + "c7": 9.936380943190322 }, - "vertexSeeds": { - "c1": 7.934878634988866, - "c2": 7.8478075223026735, - "c3": 8.08384894089975, - "c4": 8.363830457808684, - "c5": 7.6309457585324845, - "c6": 8.253643609974054, - "c7": 8.389461112392038 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456302, + "c3": 10.03236245954693, + "c4": 8.025889967637536, + "c5": 6.019417475728161, + "c6": 4.012944983818768, + "c7": 2.0064724919093746 }, "rgb": [86, 146, 138] }, @@ -202722,23 +202722,23 @@ "year": 1767, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 28.854824184054856, - "c2": 13.95842805228299, - "c3": -25.87835377236416, - "c4": 36.621291275159756, - "c5": 24.661892757562278, - "c6": -2.238583159286435, - "c7": 6.720334969692189 + "points": { + "c1": -17.36978375058903, + "c2": -33.19785393865262, + "c3": -44.61667009662038, + "c4": 28.551009598061775, + "c5": -17.104400750111225, + "c6": 29.017082072801436, + "c7": 30.10805230003968 }, - "vertexSeeds": { - "c1": 4.087119366608468, - "c2": 4.059371450803898, - "c3": 3.9459146185047573, - "c4": 3.9716647875216804, - "c5": 4.097795626021314, - "c6": 4.069459327734255, - "c7": 4.082611923235795 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607488, + "c3": 4.946833102172904, + "c4": 3.95746648173832, + "c5": 2.968099861303736, + "c6": 1.9787332408691676, + "c7": 0.9893666204345838 }, "rgb": [238, 201, 159] }, @@ -202749,23 +202749,23 @@ "year": 1768, "resistanceReported": false, "duration": 67910400, - "curveSeeds": { - "c1": -41.255719619911105, - "c2": -66.08041377746126, - "c3": -48.8314866595853, - "c4": -54.93119864110583, - "c5": 21.579689792077517, - "c6": -49.766133011596764, - "c7": -84.34874729400339 + "points": { + "c1": -25.43746343512398, + "c2": 18.990251789813826, + "c3": 73.78749675602228, + "c4": -11.89971599643198, + "c5": 39.03836750816831, + "c6": 3.9011488759751387, + "c7": -11.438756934689366 }, - "vertexSeeds": { - "c1": 1.8535902710074792, - "c2": 1.9113384981808812, - "c3": 1.9287971153937848, - "c4": 1.911211893028791, - "c5": 1.8635236585144377, - "c6": 1.7738097359805387, - "c7": 1.7827001850303064 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [222, 0, 59] }, @@ -202776,23 +202776,23 @@ "year": 1767, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -13.288033071496134, - "c2": -1.062427908662137, - "c3": 4.4578265779980555, - "c4": 23.576546969628048, - "c5": 27.314261942178256, - "c6": 7.77281274553831, - "c7": -16.043903269497246 + "points": { + "c1": -25.488351286315762, + "c2": 8.52835870587343, + "c3": -0.6911734841099673, + "c4": 30.180608871793062, + "c5": -28.50733221114516, + "c6": 1.4850282693443688, + "c7": -19.741730843843975 }, - "vertexSeeds": { - "c1": 6.02979008865073, - "c2": 5.790410803345859, - "c3": 6.075036752136626, - "c4": 5.935382716498849, - "c5": 5.614225267533528, - "c6": 5.863116536032031, - "c7": 5.935011040785945 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629688, + "c3": 7.258437355524732, + "c4": 5.8067498844197925, + "c5": 4.355062413314836, + "c6": 2.9033749422098962, + "c7": 1.4516874711049566 }, "rgb": [77, 76, 132] }, @@ -202803,23 +202803,23 @@ "year": 1766, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -20.50891966238178, - "c2": 14.84180013841917, - "c3": -5.302419808298694, - "c4": -20.22125056866694, - "c5": 19.06928974129264, - "c6": -21.97849527830542, - "c7": 3.5798333287965676 + "points": { + "c1": -27.959068156301957, + "c2": 28.15390791732865, + "c3": -3.8163748973464706, + "c4": -22.75482327446303, + "c5": -9.760468306956493, + "c6": 5.04953109758684, + "c7": 15.565760665005737 }, - "vertexSeeds": { - "c1": 2.987386220729337, - "c2": 2.8224027818151303, - "c3": 2.82279594531976, - "c4": 2.7744123650806007, - "c5": 2.7229489172850547, - "c6": 2.807924405825242, - "c7": 2.8431240234867143 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556172, + "c3": 3.7679149329634765, + "c4": 3.014331946370781, + "c5": 2.260748959778086, + "c6": 1.5071659731853906, + "c7": 0.7535829865926953 }, "rgb": [77, 76, 132] }, @@ -202830,23 +202830,23 @@ "year": 1766, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -15.78860650593968, - "c2": 18.47153004596769, - "c3": -8.721183979200053, - "c4": -5.751019636988367, - "c5": 2.190080626617892, - "c6": 13.984698931453607, - "c7": -28.17942495918231 + "points": { + "c1": 8.84918817465713, + "c2": 12.358620595824178, + "c3": -28.699046789265413, + "c4": 19.28511548318862, + "c5": 30.111583072412067, + "c6": -6.227506215558353, + "c7": 23.92744609597583 }, - "vertexSeeds": { - "c1": 7.2374934725460545, - "c2": 7.1460757311983185, - "c3": 7.068951760943486, - "c4": 7.3019751143012535, - "c5": 7.181699832500167, - "c6": 7.20015825606045, - "c7": 7.229828334243413 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163684, + "c3": 8.714748035136376, + "c4": 6.971798428109123, + "c5": 5.228848821081815, + "c6": 3.4858992140545615, + "c7": 1.742949607027254 }, "rgb": [238, 201, 159] }, @@ -202857,23 +202857,23 @@ "year": 1767, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -9.618212204798525, - "c2": -31.441793385991346, - "c3": 22.423338114877907, - "c4": -12.95710618600404, - "c5": -31.499305501518634, - "c6": -34.34674252689002, - "c7": -1.2219173022621916 + "points": { + "c1": -44.00547494514732, + "c2": 2.5483521420018533, + "c3": 7.52649060987288, + "c4": 40.08732511984151, + "c5": -32.83038139002069, + "c6": 1.046619769588986, + "c7": -39.59681952793372 }, - "vertexSeeds": { - "c1": 4.031351824150743, - "c2": 4.01408233887323, - "c3": 4.0215506927633236, - "c4": 4.033236454164266, - "c5": 4.00611832336602, - "c6": 4.009256027636791, - "c7": 4.025082282421524 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406408, + "c3": 4.831252889505276, + "c4": 3.86500231160424, + "c5": 2.898751733703204, + "c6": 1.9325011558021679, + "c7": 0.9662505779010359 }, "rgb": [58, 15, 49] }, @@ -202884,23 +202884,23 @@ "year": 1766, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 14.683322010401305, - "c2": -13.52972219022288, - "c3": 9.729388605280391, - "c4": 3.302840395090584, - "c5": -27.820052602198633, - "c6": -1.7182017582115812, - "c7": 6.835601244961381 + "points": { + "c1": -4.503222600416763, + "c2": -24.70790018864708, + "c3": -18.946484756835495, + "c4": -3.6524406530640725, + "c5": -14.49552572966217, + "c6": 7.317495349144899, + "c7": 34.58175459266478 }, - "vertexSeeds": { - "c1": 4.843942501595282, - "c2": 4.922230690110233, - "c3": 5.258964181813928, - "c4": 4.66653771848414, - "c5": 5.009189395952358, - "c6": 4.729647477645341, - "c7": 4.936602025926581 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -202911,23 +202911,23 @@ "year": 1766, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -22.281087359143942, - "c2": -15.30448654096981, - "c3": 17.12559636072316, - "c4": -6.786150069803178, - "c5": 9.443620295286895, - "c6": -24.096293335461937, - "c7": -23.218406757707204 + "points": { + "c1": 15.130442326689078, + "c2": -8.920910710693448, + "c3": 27.21103003596987, + "c4": -18.283669510256807, + "c5": 27.470768949627086, + "c6": 19.038799466894588, + "c7": 20.871802187824777 }, - "vertexSeeds": { - "c1": 5.41032863230817, - "c2": 6.082374345490133, - "c3": 5.65354026638237, - "c4": 5.673128145297256, - "c5": 6.0224986721383775, - "c6": 6.091539739763789, - "c7": 5.466024470503489 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669903, + "c3": 7.281553398058253, + "c4": 5.825242718446601, + "c5": 4.368932038834951, + "c6": 2.9126213592233006, + "c7": 1.4563106796116503 }, "rgb": [77, 76, 132] }, @@ -202938,23 +202938,23 @@ "year": 1766, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -21.97031601396634, - "c2": 1.0011578921409097, - "c3": 7.182263850417716, - "c4": 9.773869679977704, - "c5": -22.818044493073963, - "c6": -5.509015497645819, - "c7": 6.922604782903374 + "points": { + "c1": -15.955265223799039, + "c2": -25.534183197534123, + "c3": 19.35859473211039, + "c4": 6.608804966024856, + "c5": 20.10147273000534, + "c6": -27.446698939065406, + "c7": -28.268915976598542 }, - "vertexSeeds": { - "c1": 9.787812125916776, - "c2": 10.47721115425894, - "c3": 9.81605482728323, - "c4": 10.54499592661838, - "c5": 10.046699467782787, - "c6": 9.768832607231623, - "c7": 10.349659850680549 + "offsets": { + "c1": 17.89644012944984, + "c2": 15.339805825242717, + "c3": 12.783171521035595, + "c4": 10.22653721682847, + "c5": 7.66990291262135, + "c6": 5.113268608414226, + "c7": 2.556634304207123 }, "rgb": [77, 76, 132] }, @@ -202965,23 +202965,23 @@ "year": 1767, "resistanceReported": true, "duration": 31017600, - "curveSeeds": { - "c1": 5.823945704144101, - "c2": -12.349446601603354, - "c3": 14.553151448661325, - "c4": 8.180091398072868, - "c5": -1.544759353050317, - "c6": 8.040764645336132, - "c7": -4.580844140572729 + "points": { + "c1": 36.705396922844606, + "c2": 38.11626556725677, + "c3": -23.24556991064284, + "c4": 25.254248392684865, + "c5": -6.170492969996012, + "c6": -28.819930799588853, + "c7": -24.935505240479554 }, - "vertexSeeds": { - "c1": 4.672490558415383, - "c2": 4.615505288685376, - "c3": 4.5115019430371, - "c4": 4.612612854305809, - "c5": 4.612378728846511, - "c6": 4.562097344692966, - "c7": 4.559657166183983 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773934, + "c3": 5.617198335644933, + "c4": 4.493758668515956, + "c5": 3.3703190013869557, + "c6": 2.246879334257978, + "c7": 1.1234396671289777 }, "rgb": [238, 201, 159] }, @@ -202992,23 +202992,23 @@ "year": 1766, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -2.676485545525356, - "c2": 22.490753111469097, - "c3": 9.670989476624563, - "c4": -26.598615126692117, - "c5": 18.71114479514155, - "c6": -22.405834455078036, - "c7": -22.86892436904956 + "points": { + "c1": -25.643841445067856, + "c2": -13.981953927441527, + "c3": -3.1968379635111184, + "c4": -16.667518269200226, + "c5": -29.803386356736596, + "c6": 7.8921148579266, + "c7": 34.41180868117162 }, - "vertexSeeds": { - "c1": 4.585330007836703, - "c2": 4.608501947694666, - "c3": 4.9504124356161086, - "c4": 4.594282132921467, - "c5": 4.754518053782863, - "c6": 4.922165956015893, - "c7": 5.253842447365516 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061023, + "c3": 6.356911696717526, + "c4": 5.085529357374019, + "c5": 3.8141470180305115, + "c6": 2.5427646786870093, + "c7": 1.271382339343507 }, "rgb": [86, 146, 138] }, @@ -203019,23 +203019,23 @@ "year": 1766, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -13.89527116689469, - "c2": 17.638277710872753, - "c3": -3.8244094349262134, - "c4": -2.7817022117948262, - "c5": -19.63553285168698, - "c6": 1.331012078196892, - "c7": -20.540043032608445 + "points": { + "c1": 14.729864101626308, + "c2": -24.99827499168763, + "c3": -10.254796988245179, + "c4": 23.51884386049267, + "c5": -16.508471972034158, + "c6": 20.38855244684279, + "c7": 13.338177822893389 }, - "vertexSeeds": { - "c1": 4.6768047490330495, - "c2": 4.383147774332388, - "c3": 4.606758657198094, - "c4": 4.580431883385465, - "c5": 4.272452992175729, - "c6": 4.693415928332331, - "c7": 4.385744312723546 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894587, + "c3": 5.686546463245493, + "c4": 4.549237170596391, + "c5": 3.411927877947298, + "c6": 2.2746185852981955, + "c7": 1.1373092926490935 }, "rgb": [86, 146, 138] }, @@ -203046,23 +203046,23 @@ "year": 1767, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -42.40573687209928, - "c2": -34.53240043177334, - "c3": -20.97846035716326, - "c4": -26.692385134884713, - "c5": 3.793749776912101, - "c6": 10.05525808363086, - "c7": -15.833872711713557 + "points": { + "c1": 20.650206830958602, + "c2": 13.498978620191245, + "c3": -13.421395490896401, + "c4": 2.1231744055520636, + "c5": 26.993723324795134, + "c6": -14.388282626078908, + "c7": 12.542461273874288 }, - "vertexSeeds": { - "c1": 5.150122186731463, - "c2": 5.274846515724968, - "c3": 5.269897139733438, - "c4": 4.973405431307083, - "c5": 4.985397638500579, - "c6": 5.1247479957734665, - "c7": 4.9572137019561735 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141476, + "c3": 6.40314378178455, + "c4": 5.122515025427643, + "c5": 3.841886269070738, + "c6": 2.561257512713832, + "c7": 1.280628756356916 }, "rgb": [238, 201, 159] }, @@ -203073,23 +203073,23 @@ "year": 1767, "resistanceReported": false, "duration": 45792000, - "curveSeeds": { - "c1": -29.357165136773343, - "c2": 38.57439312584723, - "c3": -58.790681326341804, - "c4": 10.882869024012301, - "c5": -20.91818077419653, - "c6": -4.5688854669846535, - "c7": -7.295643256524414 + "points": { + "c1": 32.14436789337915, + "c2": -31.25939351331885, + "c3": 24.44125718095021, + "c4": 40.86027383104874, + "c5": -48.19590734049394, + "c6": -14.467281964016806, + "c7": -29.030799070199457 }, - "vertexSeeds": { - "c1": 8.23056103651402, - "c2": 7.289931587660658, - "c3": 7.899314654674839, - "c4": 7.4152413867382485, - "c5": 9.73229378458655, - "c6": 8.727496634037267, - "c7": 7.75983405462535 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.25797503467406, + "c3": 11.881645862228384, + "c4": 9.50531668978271, + "c5": 7.12898751733703, + "c6": 4.752658344891349, + "c7": 2.3763291724456743 }, "rgb": [86, 146, 138] }, @@ -203100,23 +203100,23 @@ "year": 1766, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 3.77626072643141, - "c2": -18.583994110686234, - "c3": -19.326313736531194, - "c4": -13.979304500803536, - "c5": -6.591886518859511, - "c6": 7.907037447059633, - "c7": 21.215635482820776 + "points": { + "c1": -8.59234038056654, + "c2": -19.124429937828367, + "c3": -16.722176360333833, + "c4": -21.305242721145163, + "c5": -5.599538504450074, + "c6": -14.438323432051845, + "c7": 5.002429425015347 }, - "vertexSeeds": { - "c1": 2.1257071019559555, - "c2": 2.25411042447567, - "c3": 2.1363498516979633, - "c4": 2.227923608361161, - "c5": 2.2829695806549632, - "c6": 2.2923975767709415, - "c7": 2.265592495296815 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266286, + "c3": 2.7739251040221893, + "c4": 2.219140083217756, + "c5": 1.664355062413317, + "c6": 1.109570041608878, + "c7": 0.554785020804439 }, "rgb": [58, 15, 49] }, @@ -203127,23 +203127,23 @@ "year": 1767, "resistanceReported": false, "duration": 46051200, - "curveSeeds": { - "c1": -27.793783239969365, - "c2": 15.753375181307653, - "c3": -0.19272632270054402, - "c4": 13.42973835869524, - "c5": 59.45261840886439, - "c6": 12.236855103345484, - "c7": -43.37549877358309 + "points": { + "c1": 57.6137409097473, + "c2": 30.009357294782454, + "c3": -29.36508105946669, + "c4": 59.31780200243015, + "c5": -39.07654982857019, + "c6": 3.1608062902877023, + "c7": -11.021999926309839 }, - "vertexSeeds": { - "c1": 8.743523316062175, - "c2": 8.743523316062175, - "c3": 8.743523316062175, - "c4": 8.743523316062175, - "c5": 8.743523316062175, - "c6": 8.743523316062175, - "c7": 8.743523316062175 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -203154,23 +203154,23 @@ "year": 1767, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 30.152372966467375, - "c2": -17.888830064388678, - "c3": -22.74801164760375, - "c4": -28.656067425122274, - "c5": 27.016755773371713, - "c6": 30.676796124406444, - "c7": 0.6674295995110882 + "points": { + "c1": -17.212037539216006, + "c2": -18.679369605198087, + "c3": 13.285495511761233, + "c4": -23.549118176924775, + "c5": -2.1154768930154617, + "c6": 22.184943310471596, + "c7": -7.637752546295594 }, - "vertexSeeds": { - "c1": 7.535454471954716, - "c2": 7.546370343883745, - "c3": 7.485695420194685, - "c4": 7.423682641796288, - "c5": 7.521527310664172, - "c6": 7.394829752125642, - "c7": 7.551749712995685 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284308, + "c3": 8.78409616273697, + "c4": 7.027276930189562, + "c5": 5.270457697642154, + "c6": 3.513638465094816, + "c7": 1.756819232547408 }, "rgb": [77, 76, 132] }, @@ -203181,23 +203181,23 @@ "year": 1767, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -36.967181600286935, - "c2": 13.928109016226905, - "c3": -36.49375345034059, - "c4": 29.407639380357324, - "c5": -33.35560217773908, - "c6": -17.182115585707997, - "c7": -21.178191946339073 + "points": { + "c1": -22.093013442321368, + "c2": -25.3201681324566, + "c3": -29.279816165862236, + "c4": 18.10331608409652, + "c5": -28.697607088921806, + "c6": 17.208359188034855, + "c7": -7.73289782459144 }, - "vertexSeeds": { - "c1": 7.4699801764229665, - "c2": 7.852859656754773, - "c3": 7.795006964299958, - "c4": 7.768671565370013, - "c5": 7.508733667564824, - "c6": 7.321143591118564, - "c7": 7.671236331208637 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490985, + "c3": 9.477577438742488, + "c4": 7.58206195099399, + "c5": 5.6865464632454925, + "c6": 3.791030975496995, + "c7": 1.8955154877484974 }, "rgb": [222, 0, 59] }, @@ -203208,23 +203208,23 @@ "year": 1767, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 19.63392064638738, - "c2": 6.7536522254482065, - "c3": -34.96073457512427, - "c4": 16.35463712261211, - "c5": 2.6518287663717786, - "c6": 27.72304281134894, - "c7": 6.648516873257833 + "points": { + "c1": 3.604367517785434, + "c2": -40.308542162760425, + "c3": 32.176544168084426, + "c4": -10.234341436351862, + "c5": -10.736952190886988, + "c6": -30.517761105215143, + "c7": -21.17148919418131 }, - "vertexSeeds": { - "c1": 1.5145848707721974, - "c2": 1.4885149257059385, - "c3": 1.5102125443615082, - "c4": 1.4918778241818547, - "c5": 1.5234389970711895, - "c6": 1.5122633575560327, - "c7": 1.4897560128842002 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177517, + "c3": 1.8492834026814577, + "c4": 1.4794267221451636, + "c5": 1.109570041608882, + "c6": 0.739713361072588, + "c7": 0.369856680536294 }, "rgb": [77, 76, 132] }, @@ -203235,23 +203235,23 @@ "year": 1767, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -41.14843991983948, - "c2": -17.219148864821662, - "c3": -44.63011888741196, - "c4": -4.729871685832485, - "c5": -4.387260218978028, - "c6": 2.2895970405091077, - "c7": 26.057518606549117 + "points": { + "c1": -0.7675069229182796, + "c2": -44.83989148282612, + "c3": 22.668921326853983, + "c4": 43.589104010421444, + "c5": 23.31090261284192, + "c6": -27.408945554027238, + "c7": 31.813602268926665 }, - "vertexSeeds": { - "c1": 6.644578621741558, - "c2": 6.369580398564658, - "c3": 6.493043715007262, - "c4": 6.663046150423348, - "c5": 6.352423348608766, - "c6": 6.631195555611761, - "c7": 6.605825340516883 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077674, + "c3": 8.090614886731398, + "c4": 6.472491909385123, + "c5": 4.854368932038827, + "c6": 3.236245954692551, + "c7": 1.6181229773462755 }, "rgb": [86, 146, 138] }, @@ -203262,23 +203262,23 @@ "year": 1767, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -30.27786057454119, - "c2": -36.30174768396403, - "c3": 5.249577664309051, - "c4": 9.006281595476132, - "c5": -8.08111432525192, - "c6": 32.22268013625383, - "c7": 14.766171371369012 + "points": { + "c1": -18.87652965937934, + "c2": -22.628735841099385, + "c3": -25.832648225858982, + "c4": -8.639461766264859, + "c5": 14.23312488331247, + "c6": -12.145633061790651, + "c7": -11.139847319613846 }, - "vertexSeeds": { - "c1": 0.019430051813471502, - "c2": 0.019430051813471502, - "c3": 0.019430051813471502, - "c4": 0.019430051813471502, - "c5": 0.019430051813471502, - "c6": 0.019430051813471502, - "c7": 0.019430051813471502 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -203289,23 +203289,23 @@ "year": 1767, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -31.437325268381695, - "c2": 30.957125968969606, - "c3": -31.523992588861432, - "c4": -8.254503508838393, - "c5": 5.223400438386747, - "c6": 16.21046177914657, - "c7": 3.042374719522442 + "points": { + "c1": 19.03154438462083, + "c2": -9.08572590296719, + "c3": -23.359949876708537, + "c4": 4.360833442366655, + "c5": -29.15300735861994, + "c6": -13.652341022605253, + "c7": 12.46872224055447 }, - "vertexSeeds": { - "c1": 7.383963842189185, - "c2": 7.391981640663769, - "c3": 7.414613663797616, - "c4": 7.378919249724074, - "c5": 7.370096155305112, - "c6": 7.37917474893703, - "c7": 7.402961598894946 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404926, + "c3": 8.853444290337595, + "c4": 7.082755432270029, + "c5": 5.312066574202463, + "c6": 3.541377716134897, + "c7": 1.7706888580675657 }, "rgb": [58, 15, 49] }, @@ -203316,23 +203316,23 @@ "year": 1767, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": -40.86990848447345, - "c2": 38.76876373313926, - "c3": -44.691986283104804, - "c4": 29.76372347767309, - "c5": 41.26403622244191, - "c6": -6.445949846360691, - "c7": -42.06630899322967 + "points": { + "c1": -45.86951264133584, + "c2": -31.31870634242446, + "c3": -28.251110891384883, + "c4": 37.08732420294731, + "c5": 30.206671637259838, + "c6": 15.09449094009424, + "c7": -50.20388462151106 }, - "vertexSeeds": { - "c1": 3.7734634483536267, - "c2": 3.197189005435854, - "c3": 3.587601821773108, - "c4": 3.453856363426772, - "c5": 3.15014208090355, - "c6": 3.783439471672507, - "c7": 3.2139069959374233 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883494, + "c3": 4.530744336569578, + "c4": 3.624595469255666, + "c5": 2.7184466019417495, + "c6": 1.812297734627833, + "c7": 0.9061488673139165 }, "rgb": [222, 0, 59] }, @@ -203343,23 +203343,23 @@ "year": 1767, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -15.538893018828844, - "c2": -6.910766536057146, - "c3": 22.156788145676984, - "c4": 10.572944596386293, - "c5": 26.28477617020306, - "c6": -5.154042237564404, - "c7": -4.705692360062905 + "points": { + "c1": 30.138107204807454, + "c2": -42.307799544044634, + "c3": 41.387191120376755, + "c4": -24.581870446984148, + "c5": 13.259478346229088, + "c6": -22.731114009997427, + "c7": -11.465155319893771 }, - "vertexSeeds": { - "c1": 4.313548907430855, - "c2": 4.319586795897315, - "c3": 4.900876593790591, - "c4": 4.305973475137879, - "c5": 4.951020078170601, - "c6": 4.1052732094486135, - "c7": 4.243773596153789 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337033, + "c3": 5.940822931114195, + "c4": 4.752658344891354, + "c5": 3.5644937586685166, + "c6": 2.3763291724456788, + "c7": 1.1881645862228374 }, "rgb": [58, 15, 49] }, @@ -203370,23 +203370,23 @@ "year": 1767, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 24.95003694282736, - "c2": 25.97663297130996, - "c3": -27.017540124199556, - "c4": 27.2558270714416, - "c5": -18.896375510689793, - "c6": 11.52608988280872, - "c7": -30.1885761582859 + "points": { + "c1": 11.789981393593635, + "c2": -29.097325704365502, + "c3": -29.66385776240268, + "c4": -31.66707914774348, + "c5": -4.291782181913376, + "c6": 13.760984084120132, + "c7": 5.7599050066072905 }, - "vertexSeeds": { - "c1": 3.281344686584336, - "c2": 2.8612837021369217, - "c3": 3.294661314222198, - "c4": 3.272888263519591, - "c5": 2.9009062175577998, - "c6": 3.374955366672328, - "c7": 3.2799218049717633 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365698, + "c4": 3.2362459546925573, + "c5": 2.427184466019417, + "c6": 1.6181229773462762, + "c7": 0.8090614886731405 }, "rgb": [58, 15, 49] }, @@ -203397,23 +203397,23 @@ "year": 1767, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 30.230755576420094, - "c2": 8.499924388951975, - "c3": 25.27204803289294, - "c4": -7.108240329567963, - "c5": 14.121037024487244, - "c6": 18.77729048123227, - "c7": -16.260113822730016 + "points": { + "c1": 10.210382232838896, + "c2": 30.86660119901208, + "c3": -13.005148061610935, + "c4": -3.986250942136337, + "c5": 4.487526462040542, + "c6": 11.760694487787575, + "c7": -16.45629807195802 }, - "vertexSeeds": { - "c1": 4.391588417935333, - "c2": 4.352912601466997, - "c3": 4.915745117107976, - "c4": 4.563789981319678, - "c5": 4.204667542196002, - "c6": 4.3154540155056385, - "c7": 4.200987437442364 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337033, + "c3": 5.940822931114191, + "c4": 4.752658344891354, + "c5": 3.5644937586685166, + "c6": 2.3763291724456743, + "c7": 1.1881645862228372 }, "rgb": [222, 0, 59] }, @@ -203424,23 +203424,23 @@ "year": 1767, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 7.6223154152422765, - "c2": -7.244905993005315, - "c3": -5.525031466572681, - "c4": -0.423110314448067, - "c5": 9.188806836067954, - "c6": -8.7741779445229, - "c7": 9.129315223936452 + "points": { + "c1": 30.659934638776363, + "c2": 0.4339276266701333, + "c3": 20.194186600895286, + "c4": 27.114951593378137, + "c5": -12.550497854348539, + "c6": 0.8831932342957387, + "c7": 17.06258714330199 }, - "vertexSeeds": { - "c1": 4.899822074578467, - "c2": 5.055976919344157, - "c3": 5.26576658780772, - "c4": 5.01657830323923, - "c5": 4.601334963432262, - "c6": 4.889466693453605, - "c7": 5.1191707120376435 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -203451,23 +203451,23 @@ "year": 1767, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 11.93543693465196, - "c2": 2.452193076747065, - "c3": -17.497708919491615, - "c4": 31.869060468597212, - "c5": 7.108531701989008, - "c6": 23.586876707125384, - "c7": -24.31268713496599 + "points": { + "c1": -7.3988845212786245, + "c2": 3.6738808214560734, + "c3": -22.732595396191464, + "c4": -9.046945582171258, + "c5": 25.383534318729048, + "c6": -1.4881892497508247, + "c7": -4.47371946218113 }, - "vertexSeeds": { - "c1": 4.755575254373439, - "c2": 4.669981847093116, - "c3": 4.737074541242715, - "c4": 5.190470791363369, - "c5": 5.455244831925409, - "c6": 5.35269376856522, - "c7": 4.531596736533737 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382797, + "c3": 6.541840036985669, + "c4": 5.233472029588531, + "c5": 3.9251040221914035, + "c6": 2.6167360147942706, + "c7": 1.3083680073971378 }, "rgb": [77, 76, 132] }, @@ -203478,23 +203478,23 @@ "year": 1767, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 26.031310405124103, - "c2": 6.521760130652709, - "c3": 35.94300643845767, - "c4": 7.697955242856594, - "c5": 14.697031784915772, - "c6": -17.526104265496883, - "c7": -17.152949523310564 + "points": { + "c1": -2.6399708521521106, + "c2": -19.588530060126157, + "c3": -27.078489553660493, + "c4": 13.716458415331367, + "c5": 5.886234737645914, + "c6": -23.99847580020939, + "c7": 25.264381912627385 }, - "vertexSeeds": { - "c1": 4.47289265667999, - "c2": 4.580858391855379, - "c3": 4.536046524744244, - "c4": 4.572948122721625, - "c5": 5.033061509432263, - "c6": 5.280125960020155, - "c7": 4.472492435914328 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -203505,23 +203505,23 @@ "year": 1767, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 21.736265318995976, - "c2": -20.66264019342085, - "c3": -25.536339781669117, - "c4": -5.235815017746525, - "c5": 27.78580504678814, - "c6": -13.537632462612066, - "c7": 9.49173127908324 + "points": { + "c1": 6.370623826247538, + "c2": -23.780636636871407, + "c3": 31.452792402902773, + "c4": 15.132432143552457, + "c5": 35.05723898309586, + "c6": 21.825236363575073, + "c7": -12.382796907061827 }, - "vertexSeeds": { - "c1": 1.918322842133456, - "c2": 1.834681745900955, - "c3": 1.8544228322504468, - "c4": 1.8898330093904578, - "c5": 1.903929027132199, - "c6": 1.8752507555050482, - "c7": 1.8772429195444063 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022195, + "c3": 2.3116042533518244, + "c4": 1.8492834026814635, + "c5": 1.386962552011093, + "c6": 0.9246417013407318, + "c7": 0.4623208506703612 }, "rgb": [222, 0, 59] }, @@ -203532,23 +203532,23 @@ "year": 1767, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -10.839450451588089, - "c2": 10.501783112403139, - "c3": -1.7028572245149078, - "c4": 26.736346186533453, - "c5": 40.097484652325676, - "c6": -27.771510698976886, - "c7": -16.503476109910377 + "points": { + "c1": 0.8051447556399651, + "c2": -13.82478694609063, + "c3": 8.873165252277353, + "c4": -21.727061212006625, + "c5": -14.083905233533596, + "c6": 31.482288969246483, + "c7": 18.297081321102553 }, - "vertexSeeds": { - "c1": 6.47316048877497, - "c2": 7.360711821537004, - "c3": 6.6936792160635825, - "c4": 6.945005966395427, - "c5": 7.167867692566195, - "c6": 7.366411302684738, - "c7": 6.5664019895679475 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.62413314840499, + "c3": 8.85344429033749, + "c4": 7.082755432269989, + "c5": 5.312066574202489, + "c6": 3.5413777161350013, + "c7": 1.7706888580674867 }, "rgb": [58, 15, 49] }, @@ -203559,23 +203559,23 @@ "year": 1767, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 26.96849339502137, - "c2": -14.694754054172819, - "c3": 18.30114248061794, - "c4": 34.254285060261964, - "c5": 4.113781914056958, - "c6": 9.57209655062644, - "c7": -22.909889487571387 + "points": { + "c1": -18.899243385969854, + "c2": 13.564689731433496, + "c3": -14.776299072787769, + "c4": -28.399035641105424, + "c5": 24.62061652575329, + "c6": -35.142260046086115, + "c7": 13.877007464406411 }, - "vertexSeeds": { - "c1": 6.489410167282623, - "c2": 5.8841186672534675, - "c3": 6.07912169889888, - "c4": 6.692835638122581, - "c5": 5.96614975026592, - "c6": 5.9090018123454415, - "c7": 5.669346256278689 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198333, + "c3": 8.15996301433195, + "c4": 6.527970411465558, + "c5": 4.8959778085991665, + "c6": 3.2639852057327747, + "c7": 1.631992602866392 }, "rgb": [58, 15, 49] }, @@ -203586,23 +203586,23 @@ "year": 1767, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 29.762778466892556, - "c2": -26.050349744545123, - "c3": 22.35231145202369, - "c4": 9.495557395213773, - "c5": -27.75836637387685, - "c6": 22.034369636806602, - "c7": 20.430455402636788 + "points": { + "c1": 24.84285465801679, + "c2": 8.094087445762575, + "c3": 4.427201586478155, + "c4": -24.171766137626246, + "c5": 14.029412921310708, + "c6": -22.892898512456174, + "c7": -2.531086966729788 }, - "vertexSeeds": { - "c1": 7.203229712797294, - "c2": 7.5894599709309825, - "c3": 7.292929545244821, - "c4": 7.403016192205107, - "c5": 7.061681921474756, - "c6": 7.0476981931539004, - "c7": 7.462553519657589 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048533, + "c3": 9.223300970873789, + "c4": 7.378640776699022, + "c5": 5.533980582524277, + "c6": 3.689320388349511, + "c7": 1.844660194174766 }, "rgb": [86, 146, 138] }, @@ -203613,23 +203613,23 @@ "year": 1767, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -3.8225360933628387, - "c2": -27.560553674540518, - "c3": -8.564724340442154, - "c4": -21.443145287387743, - "c5": -14.656559745684762, - "c6": -27.287499707241345, - "c7": 26.271160367805287 + "points": { + "c1": 23.214520646445067, + "c2": -12.338813526770334, + "c3": -15.028224464863587, + "c4": 28.111914221930476, + "c5": 5.989019149487099, + "c6": 5.1767921701818835, + "c7": -30.1808167253135 }, - "vertexSeeds": { - "c1": 5.735170481595485, - "c2": 5.876202656447722, - "c3": 5.564687073731544, - "c4": 6.339811201162073, - "c5": 5.816718684774468, - "c6": 5.8931423402647285, - "c7": 5.8430559508307045 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -203640,23 +203640,23 @@ "year": 1766, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -6.7255305080169645, - "c2": -2.8857242087885595, - "c3": -5.784407567319505, - "c4": -16.635091822175074, - "c5": 20.787171460677087, - "c6": -19.212672714254094, - "c7": -12.21613856667693 + "points": { + "c1": -5.028584427804503, + "c2": 13.521124032711732, + "c3": 9.742648115390999, + "c4": 16.383733391627125, + "c5": 5.014383358100499, + "c6": -9.103033963186531, + "c7": -6.687396128323218 }, - "vertexSeeds": { - "c1": 2.7007772020725387, - "c2": 2.7007772020725387, - "c3": 2.7007772020725387, - "c4": 2.7007772020725387, - "c5": 2.7007772020725387, - "c6": 2.7007772020725387, - "c7": 2.7007772020725387 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -203667,23 +203667,23 @@ "year": 1767, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -10.88770079977677, - "c2": -32.868181788769, - "c3": 41.480497243811286, - "c4": -0.3336977857636043, - "c5": -29.92237383426304, - "c6": 22.944038692412207, - "c7": -6.05542369152176 + "points": { + "c1": 6.32582984903393, + "c2": 18.521302015483514, + "c3": -29.03375366371423, + "c4": 18.780592014092868, + "c5": 13.272521965864108, + "c6": -16.685400927567603, + "c7": -42.180673507834015 }, - "vertexSeeds": { - "c1": 8.535594684007398, - "c2": 9.10361280825608, - "c3": 8.259845375836733, - "c4": 8.399471214360961, - "c5": 9.012021373261272, - "c6": 8.176289146258553, - "c7": 8.27301265612368 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904296, + "c3": 10.864539990753578, + "c4": 8.691631992602876, + "c5": 6.518723994452157, + "c6": 4.345815996301438, + "c7": 2.172907998150719 }, "rgb": [86, 146, 138] }, @@ -203694,23 +203694,23 @@ "year": 1767, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": 17.861432992646122, - "c2": -33.205124979676775, - "c3": -1.3735998176213187, - "c4": 41.17182870923849, - "c5": -48.98352924397971, - "c6": 35.04672949273539, - "c7": 22.521912105870364 + "points": { + "c1": 14.250697227252367, + "c2": 17.900842851385782, + "c3": -24.129449060330465, + "c4": -14.055454584560778, + "c5": -32.64616078333627, + "c6": 0.30147430641507356, + "c7": -31.90761995324837 }, - "vertexSeeds": { - "c1": 3.577770044097873, - "c2": 3.0162030274621063, - "c3": 2.3084615933834627, - "c4": 2.2925792014356596, - "c5": 2.3925899791413814, - "c6": 2.9696886912309886, - "c7": 2.373982248293026 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601942, + "c3": 4.368932038834951, + "c4": 3.495145631067962, + "c5": 2.6213592233009715, + "c6": 1.7475728155339805, + "c7": 0.8737864077669902 }, "rgb": [222, 0, 59] }, @@ -203721,23 +203721,23 @@ "year": 1766, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -6.6850112053871165, - "c2": -15.638061428765557, - "c3": -22.320625936273174, - "c4": -16.461050209954074, - "c5": -8.932305863541398, - "c6": 11.776190293697297, - "c7": 3.4731033169786585 + "points": { + "c1": 18.269991981092737, + "c2": 10.00875757934449, + "c3": -0.9510632506403205, + "c4": -3.369777072149766, + "c5": 6.627880695298288, + "c6": -14.677012911347152, + "c7": -15.275805062085185 }, - "vertexSeeds": { - "c1": 6.580723133862552, - "c2": 6.215768897578129, - "c3": 5.651407093139543, - "c4": 6.101609157774498, - "c5": 6.076928656137312, - "c6": 5.860588764128351, - "c7": 6.492236431738013 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -203748,23 +203748,23 @@ "year": 1767, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 21.546641730847867, - "c2": -4.3352799502877275, - "c3": 30.88623535345627, - "c4": 39.45767289947729, - "c5": -30.11732941760433, - "c6": 18.196608258455846, - "c7": 2.815519733807591 + "points": { + "c1": -8.95273335659423, + "c2": -31.268284470244645, + "c3": -17.83873348544674, + "c4": 33.970236777098705, + "c5": -40.84599372575435, + "c6": 12.090619112278489, + "c7": 39.09142660306438 }, - "vertexSeeds": { - "c1": 6.355661673560453, - "c2": 6.806713254769631, - "c3": 6.693967289923877, - "c4": 6.815827006898777, - "c5": 5.948386433624091, - "c6": 6.377726145407662, - "c7": 6.355565720338 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -203775,23 +203775,23 @@ "year": 1767, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -24.006668506707328, - "c2": -0.6112617242905287, - "c3": 34.89801602514754, - "c4": 15.449993282704042, - "c5": 16.357440554222315, - "c6": 22.668495780494517, - "c7": -11.38466789122841 + "points": { + "c1": -10.209260771496414, + "c2": 11.007305787072404, + "c3": -2.0971387625472246, + "c4": -29.96374456406535, + "c5": -38.52408002302305, + "c6": 32.68230925325838, + "c7": 13.275713016878107 }, - "vertexSeeds": { - "c1": 5.4413891747764005, - "c2": 5.705972110180933, - "c3": 5.235330414719002, - "c4": 5.748820567187754, - "c5": 5.749274101962726, - "c6": 5.41024471684182, - "c7": 5.304019418061568 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [77, 76, 132] }, @@ -203802,23 +203802,23 @@ "year": 1767, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 3.2962340543748567, - "c2": 28.72095641505996, - "c3": -28.221720953154914, - "c4": 1.764861754169658, - "c5": -8.842377920820358, - "c6": -2.4478547772615364, - "c7": -30.761577344984993 + "points": { + "c1": 16.520159424758248, + "c2": -12.730689782960585, + "c3": -21.083033030806224, + "c4": -9.192150657601893, + "c5": -25.99930358158447, + "c6": 18.916471354591216, + "c7": -26.5285155769151 }, - "vertexSeeds": { - "c1": 5.0298605257286395, - "c2": 5.197637278644405, - "c3": 4.456717596461548, - "c4": 4.738049372825523, - "c5": 4.889857319850756, - "c6": 5.038216415523027, - "c7": 5.089368854235184 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819698, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.243643088303281 }, "rgb": [238, 201, 159] }, @@ -203829,23 +203829,23 @@ "year": 1767, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -27.95128271733625, - "c2": 12.338373474880456, - "c3": -6.6091122512410365, - "c4": -18.431046431083832, - "c5": 21.95179084688978, - "c6": 13.756261358715875, - "c7": -38.202504887383135 + "points": { + "c1": -21.514880847211874, + "c2": -16.682772143305662, + "c3": -44.206198245454814, + "c4": 18.618485797516257, + "c5": 17.05790581067609, + "c6": 41.273830385961375, + "c7": 0.8248730416049881 }, - "vertexSeeds": { - "c1": 3.7112750612174863, - "c2": 3.5787916786887313, - "c3": 3.5795621134257924, - "c4": 3.5794095845971587, - "c5": 3.510081954864568, - "c6": 3.618114655120434, - "c7": 3.695193590212402 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762828, + "c3": 4.4613962089690204, + "c4": 3.569116967175214, + "c5": 2.676837725381407, + "c6": 1.7845584835876138, + "c7": 0.8922792417938069 }, "rgb": [77, 76, 132] }, @@ -203856,23 +203856,23 @@ "year": 1767, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 27.06996210777801, - "c2": 7.557609855101916, - "c3": -13.802608712550867, - "c4": 21.310145191128328, - "c5": -11.841762421501517, - "c6": -2.571638024502466, - "c7": -23.550056851586707 + "points": { + "c1": -7.52614955625711, + "c2": 9.96370239854511, + "c3": 24.646300869159518, + "c4": 16.413635502360606, + "c5": 16.596201795191973, + "c6": 0.5472822105600521, + "c7": 25.988894394126937 }, - "vertexSeeds": { - "c1": 2.786390642142613, - "c2": 2.710670918673335, - "c3": 2.4732304055579593, - "c4": 2.7694871374657137, - "c5": 2.6098212732484156, - "c6": 2.6152369091201213, - "c7": 2.67578167908125 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [58, 15, 49] }, @@ -203883,23 +203883,23 @@ "year": 1767, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -18.457702894971824, - "c2": -13.191578657343996, - "c3": -20.811216779699834, - "c4": -0.750588642708756, - "c5": 10.178711351517869, - "c6": -26.157803908574696, - "c7": -20.04541879209948 + "points": { + "c1": 1.5021005317369998, + "c2": -27.418726057827417, + "c3": 14.799431873875726, + "c4": -30.160465192095756, + "c5": 0.5167789057036245, + "c6": -29.75281989633699, + "c7": 10.165962273938185 }, - "vertexSeeds": { - "c1": 5.196897009456328, - "c2": 5.0848995594034445, - "c3": 4.11995976180773, - "c4": 5.161142309785691, - "c5": 4.7535298338983365, - "c6": 4.1427878203261725, - "c7": 4.82790080389547 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -203910,23 +203910,23 @@ "year": 1768, "resistanceReported": false, "duration": 49680000, - "curveSeeds": { - "c1": 13.105359836956552, - "c2": 58.10523924333262, - "c3": -22.951388003318584, - "c4": -49.4080602762275, - "c5": 33.85418134546376, - "c6": -16.41265565563522, - "c7": 59.89478238238328 + "points": { + "c1": -34.887290567584905, + "c2": -12.567066681548809, + "c3": -61.565945148363866, + "c4": -30.250960266338375, + "c5": 21.49655730275623, + "c6": -46.977513851420014, + "c7": -54.3429973521351 }, - "vertexSeeds": { - "c1": 6.742227979274611, - "c2": 6.742227979274611, - "c3": 6.742227979274611, - "c4": 6.742227979274611, - "c5": 6.742227979274611, - "c6": 6.742227979274611, - "c7": 6.742227979274611 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -203937,23 +203937,23 @@ "year": 1767, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 5.575905402655323, - "c2": -22.02372989131904, - "c3": 5.1156172965668745, - "c4": -30.097107599951954, - "c5": -26.6263304859813, - "c6": -33.125923265260674, - "c7": 29.90793874349822 + "points": { + "c1": -0.22857489674614584, + "c2": 16.137976400473356, + "c3": 3.77828590449365, + "c4": -35.929268010192416, + "c5": -26.58794238296897, + "c6": 35.52451870256796, + "c7": 34.2013833197733 }, - "vertexSeeds": { - "c1": 4.0131217839655156, - "c2": 4.059109677209886, - "c3": 3.9876097560702877, - "c4": 4.050707429511835, - "c5": 4.003588879759597, - "c6": 3.959660590429957, - "c7": 4.072641177876158 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486829, + "c3": 4.877484974572344, + "c4": 3.901987979657879, + "c5": 2.9264909847434146, + "c6": 1.9509939898289288, + "c7": 0.9754969949144644 }, "rgb": [222, 0, 59] }, @@ -203964,23 +203964,23 @@ "year": 1767, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 0.3205709130043992, - "c2": -22.86797640651183, - "c3": -21.703590372128723, - "c4": -10.030509236239453, - "c5": 7.958905788537113, - "c6": 28.927769815643902, - "c7": -18.450818261183677 + "points": { + "c1": -8.756309062113331, + "c2": 14.557457024690898, + "c3": -22.777562610415366, + "c4": 32.44307456529528, + "c5": 14.741795512004664, + "c6": 0.6607848734098383, + "c7": 1.8197852238960124 }, - "vertexSeeds": { - "c1": 4.782430590739616, - "c2": 4.749015146385857, - "c3": 4.640273560181338, - "c4": 5.261864858436694, - "c5": 4.723406913710868, - "c6": 4.9354224735186865, - "c7": 4.827688243813973 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.62829403606102, + "c3": 6.356911696717524, + "c4": 5.085529357374014, + "c5": 3.814147018030517, + "c6": 2.542764678687007, + "c7": 1.2713823393435097 }, "rgb": [238, 201, 159] }, @@ -203991,23 +203991,23 @@ "year": 1767, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 10.181873554122138, - "c2": -9.824072478320314, - "c3": 14.205225832099739, - "c4": 29.47366106092839, - "c5": 19.099420247993347, - "c6": 6.082016515690508, - "c7": 9.231962710578532 + "points": { + "c1": -11.83127024048715, + "c2": 6.061111102269436, + "c3": 8.158854802296716, + "c4": 31.444050368806856, + "c5": -29.94574916182455, + "c6": -10.504393532454817, + "c7": -6.267350511975046 }, - "vertexSeeds": { - "c1": 4.865521249320609, - "c2": 4.294310504204951, - "c3": 5.002664878831298, - "c4": 5.016547145629282, - "c5": 5.063048008951689, - "c6": 4.38799374560896, - "c7": 4.485038807180435 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940358, + "c3": 6.287563569116963, + "c4": 5.030050855293573, + "c5": 3.7725381414701817, + "c6": 2.5150254276467865, + "c7": 1.2575127138233957 }, "rgb": [86, 146, 138] }, @@ -204018,23 +204018,23 @@ "year": 1767, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 23.621034231329396, - "c2": 3.5699509133864424, - "c3": 24.4701170070334, - "c4": -18.932074024171065, - "c5": -26.1192829152949, - "c6": -36.25503423726956, - "c7": 29.90994907038916 + "points": { + "c1": -8.537612384855812, + "c2": -4.823466681629064, + "c3": 33.46815974139622, + "c4": 26.26866741744817, + "c5": -5.100356438835625, + "c6": 40.43896923314212, + "c7": -36.682564691058346 }, - "vertexSeeds": { - "c1": 6.9661992173108835, - "c2": 8.287330199756553, - "c3": 8.256975029622396, - "c4": 6.966669865363102, - "c5": 8.460227029384614, - "c6": 8.238052082408007, - "c7": 7.955747166488369 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059636, + "c3": 10.379103097549702, + "c4": 8.303282478039758, + "c5": 6.227461858529822, + "c6": 4.151641239019879, + "c7": 2.075820619509943 }, "rgb": [58, 15, 49] }, @@ -204045,23 +204045,23 @@ "year": 1767, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": 1.38086235880548, - "c2": 27.77188984326913, - "c3": -34.85489710617606, - "c4": 1.041795154970501, - "c5": -10.369275739641225, - "c6": 24.719709154328378, - "c7": 28.521344763754833 + "points": { + "c1": -3.6162330615541407, + "c2": -11.1482209795222, + "c3": -8.059169882540864, + "c4": 49.35263044785382, + "c5": 17.300566503661805, + "c6": 34.284713481141075, + "c7": 47.75402959009727 }, - "vertexSeeds": { - "c1": 4.293797859232809, - "c2": 3.9291849219166086, - "c3": 4.231114493552855, - "c4": 4.431002442519539, - "c5": 3.960040288992197, - "c6": 4.491730251385082, - "c7": 4.0533050176884275 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [77, 76, 132] }, @@ -204072,23 +204072,23 @@ "year": 1767, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 10.786813455782188, - "c2": 31.73770556156252, - "c3": 23.336478085681577, - "c4": 33.07286795798379, - "c5": -5.161235388221236, - "c6": 11.936330676297793, - "c7": 11.839386437332408 + "points": { + "c1": 37.746452925605624, + "c2": 3.7508879821291927, + "c3": -17.23566248672094, + "c4": -34.77635388122788, + "c5": -7.392724030088441, + "c6": -10.586880576468072, + "c7": -31.672446624917164 }, - "vertexSeeds": { - "c1": 6.8183567977219015, - "c2": 5.8478008944037585, - "c3": 5.852477714908012, - "c4": 5.9125613796249175, - "c5": 6.937993198634029, - "c6": 6.411566002140959, - "c7": 6.591001101291629 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560337, + "c3": 8.368007397133608, + "c4": 6.694405917706891, + "c5": 5.020804438280163, + "c6": 3.3472029588534453, + "c7": 1.6736014794267178 }, "rgb": [77, 76, 132] }, @@ -204099,23 +204099,23 @@ "year": 1767, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": 27.083634184621147, - "c2": 37.52229537124168, - "c3": 11.283847393671422, - "c4": 41.58339739617763, - "c5": -36.52550523480071, - "c6": -47.59148569328672, - "c7": -36.23129469988754 + "points": { + "c1": 30.507839647297573, + "c2": 18.29494560410882, + "c3": -39.1182126139866, + "c4": 44.41138492363147, + "c5": -16.56689755918083, + "c6": 3.611255672167381, + "c7": -33.87710441269074 }, - "vertexSeeds": { - "c1": 11.623360028576183, - "c2": 11.66844322989529, - "c3": 11.260664593360918, - "c4": 11.528792236025485, - "c5": 11.955952478764223, - "c6": 11.1926619924984, - "c7": 11.319899146523934 + "offsets": { + "c1": 20, + "c2": 17.142857142857142, + "c3": 14.285714285714286, + "c4": 11.428571428571427, + "c5": 8.571428571428571, + "c6": 5.7142857142857135, + "c7": 2.8571428571428568 }, "rgb": [77, 76, 132] }, @@ -204126,23 +204126,23 @@ "year": 1767, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 29.25460022594838, - "c2": 10.486968633904077, - "c3": -17.46625090032813, - "c4": -11.067613253577985, - "c5": -30.676311246930197, - "c6": -17.85028420097214, - "c7": 0.6267608356132897 + "points": { + "c1": -34.14014982649294, + "c2": -27.690865150318352, + "c3": 22.31675095368027, + "c4": 15.23753965669085, + "c5": -16.192410396382957, + "c6": 25.165961126682213, + "c7": 16.106909795229377 }, - "vertexSeeds": { - "c1": 7.371985991697027, - "c2": 7.4698473035247055, - "c3": 7.365022086466711, - "c4": 7.454564759392835, - "c5": 7.403719148841988, - "c6": 7.434137619319459, - "c7": 7.34844522303841 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152562, + "c3": 8.922792417938062, + "c4": 7.138233934350414, + "c5": 5.353675450762855, + "c6": 3.569116967175207, + "c7": 1.7845584835875592 }, "rgb": [58, 15, 49] }, @@ -204153,23 +204153,23 @@ "year": 1767, "resistanceReported": false, "duration": 39225600, - "curveSeeds": { - "c1": -0.7165163443350266, - "c2": -31.116141617277005, - "c3": -31.113767691895905, - "c4": -52.33896442714841, - "c5": -25.692568635977764, - "c6": 11.583861067719504, - "c7": 31.70155645745266 + "points": { + "c1": 17.823496798679905, + "c2": 16.892412968447495, + "c3": -31.763045150302286, + "c4": -53.06288398016893, + "c5": -0.8930360181442936, + "c6": 37.044477230649484, + "c7": 23.36328847419012 }, - "vertexSeeds": { - "c1": 4.079731970135117, - "c2": 4.130435590143719, - "c3": 3.9114032140773642, - "c4": 3.9500039289002125, - "c5": 3.9189010194841627, - "c6": 3.9807734259435477, - "c7": 3.938776217765214 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [58, 15, 49] }, @@ -204180,23 +204180,23 @@ "year": 1767, "resistanceReported": true, "duration": 28944000, - "curveSeeds": { - "c1": 22.978699659359826, - "c2": -0.03929171379527219, - "c3": -15.23575240585662, - "c4": -38.02920375654929, - "c5": 36.29737257266196, - "c6": -14.609534692300777, - "c7": -35.57417391376946 + "points": { + "c1": 40.784667453376365, + "c2": 16.472103341503377, + "c3": 26.297061136595808, + "c4": 34.230174730871916, + "c5": 18.71181268017061, + "c6": -35.58898358757701, + "c7": -41.51499271403128 }, - "vertexSeeds": { - "c1": 6.627087107863211, - "c2": 6.4976730761037835, - "c3": 6.492405526292333, - "c4": 6.170801597824192, - "c5": 6.734847416989792, - "c6": 6.321718736794311, - "c7": 6.395367062325564 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997229, + "c3": 8.04438280166436, + "c4": 6.435506241331493, + "c5": 4.826629680998624, + "c6": 3.2177531206657357, + "c7": 1.6088765603328679 }, "rgb": [58, 15, 49] }, @@ -204207,23 +204207,23 @@ "year": 1767, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -22.128324371210578, - "c2": -26.2471140982955, - "c3": 25.153914776129877, - "c4": 11.105617131961065, - "c5": 21.549860375322023, - "c6": -3.442943117007893, - "c7": -9.687990386064751 + "points": { + "c1": 0.13888308496964896, + "c2": 7.921191602043699, + "c3": 17.999578044177632, + "c4": 19.42655594979633, + "c5": 29.78360782448034, + "c6": -17.1165948268213, + "c7": 19.398451019058307 }, - "vertexSeeds": { - "c1": 4.896031326384346, - "c2": 5.328517330580736, - "c3": 4.981835903623381, - "c4": 4.247702868149572, - "c5": 4.113721890244109, - "c6": 5.09905347254263, - "c7": 4.781169785104038 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -204234,23 +204234,23 @@ "year": 1767, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 9.221246314217922, - "c2": 3.7866689297149456, - "c3": -0.4861869789493731, - "c4": -17.399258916453306, - "c5": 13.89473648915991, - "c6": -22.04279173004129, - "c7": -21.131102359398003 + "points": { + "c1": 27.604264291481243, + "c2": 12.85433613673581, + "c3": -7.232336027395817, + "c4": -16.444638395326038, + "c5": 9.942806712332718, + "c6": 26.921077987926473, + "c7": 8.8814755908109 }, - "vertexSeeds": { - "c1": 3.601546051374213, - "c2": 3.7030909685418516, - "c3": 3.864804190859185, - "c4": 3.681709205063541, - "c5": 3.5575506589596007, - "c6": 3.6924410556422496, - "c7": 3.6998288064785303 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124826, + "c3": 4.6694405917706865, + "c4": 3.735552473416557, + "c5": 2.801664355062417, + "c6": 1.8677762367082784, + "c7": 0.9338881183541392 }, "rgb": [238, 201, 159] }, @@ -204261,23 +204261,23 @@ "year": 1767, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -36.511512034494764, - "c2": 8.270874463518801, - "c3": -33.135322189209816, - "c4": -16.716796987487683, - "c5": 0.713726219948569, - "c6": 36.060779581967324, - "c7": -30.388712671936048 + "points": { + "c1": 1.3743125653831854, + "c2": 14.17328064045443, + "c3": -36.531842153316035, + "c4": -10.526258473539237, + "c5": 11.382673801243598, + "c6": -37.02020176218297, + "c7": 29.585038304901204 }, - "vertexSeeds": { - "c1": 5.583126219899269, - "c2": 5.801344000648988, - "c3": 5.259364267544296, - "c4": 5.6231633338729665, - "c5": 5.691346934897507, - "c6": 5.814280503822279, - "c7": 5.781838225897874 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106801, + "c3": 6.957928802588989, + "c4": 5.566343042071194, + "c5": 4.174757281553401, + "c6": 2.7831715210355887, + "c7": 1.3915857605177944 }, "rgb": [77, 76, 132] }, @@ -204288,23 +204288,23 @@ "year": 1767, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -12.511274256075687, - "c2": 46.17106905454874, - "c3": 40.72914462522391, - "c4": -37.20447125175966, - "c5": 24.93604713141427, - "c6": -30.605604596214093, - "c7": -40.19631536439034 + "points": { + "c1": 36.5009056182667, + "c2": -10.960968359602909, + "c3": -12.452954710762924, + "c4": -52.7482307615352, + "c5": -26.487906391579532, + "c6": 8.74597097597735, + "c7": -29.437517591232453 }, - "vertexSeeds": { - "c1": 2.630586705723719, - "c2": 1.8938793575853812, - "c3": 2.675938466114826, - "c4": 2.139515811157952, - "c5": 1.8508154846972729, - "c6": 1.9046105966606892, - "c7": 2.405987722275536 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310685, + "c3": 3.2362459546925573, + "c4": 2.5889967637540465, + "c5": 1.9417475728155351, + "c6": 1.2944983818770237, + "c7": 0.6472491909385112 }, "rgb": [58, 15, 49] }, @@ -204315,23 +204315,23 @@ "year": 1767, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 23.00325763334975, - "c2": -10.797368809209038, - "c3": -3.1251938847065297, - "c4": 1.1952573201274816, - "c5": 17.808597836756075, - "c6": 21.3750441182742, - "c7": 3.026933710142533 + "points": { + "c1": 0.03223191856552177, + "c2": 5.815151882292593, + "c3": 19.764272518885694, + "c4": 26.153860049707756, + "c5": -23.743797542816118, + "c6": -10.741913399614319, + "c7": -25.91923217553706 }, - "vertexSeeds": { - "c1": 4.384757247027135, - "c2": 4.301625921782662, - "c3": 4.7801844237256095, - "c4": 4.274847353210986, - "c5": 4.556046662977762, - "c6": 4.790240872005841, - "c7": 4.626641396568764 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [77, 76, 132] }, @@ -204342,23 +204342,23 @@ "year": 1767, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 16.089987868824316, - "c2": 12.520962557408751, - "c3": 6.911536986442371, - "c4": -7.488614658628983, - "c5": 13.801460419913838, - "c6": 9.578020807369718, - "c7": 11.794499352209591 + "points": { + "c1": 7.352456827651515, + "c2": 25.729444754349238, + "c3": 4.887779740046696, + "c4": 27.238952261854187, + "c5": -17.04149219725894, + "c6": -9.596551932139302, + "c7": 0.08995745634404884 }, - "vertexSeeds": { - "c1": 6.417529183782276, - "c2": 6.055612290481245, - "c3": 5.731394589956963, - "c4": 6.159193165471803, - "c5": 5.826488040677636, - "c6": 5.638597544373201, - "c7": 5.8102544043386 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.20943134535368, + "c3": 7.674526121128061, + "c4": 6.1396208969024535, + "c5": 4.604715672676834, + "c6": 3.0698104484512267, + "c7": 1.5349052242256198 }, "rgb": [86, 146, 138] }, @@ -204369,23 +204369,23 @@ "year": 1767, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -3.8980268379091285, - "c2": 27.231996450607582, - "c3": 1.551816812775236, - "c4": 24.312558981604084, - "c5": 12.290326757202457, - "c6": -31.556039087671582, - "c7": 13.20596299431314 + "points": { + "c1": 39.35472076034223, + "c2": -9.605264690123164, + "c3": -32.33359861757035, + "c4": 20.665130220077536, + "c5": 11.600772080360201, + "c6": 18.53727145746975, + "c7": -11.960867154494203 }, - "vertexSeeds": { - "c1": 4.594581965458257, - "c2": 5.409177588059148, - "c3": 3.9920925529735336, - "c4": 4.511666307507909, - "c5": 5.457212283768793, - "c6": 5.549824796530441, - "c7": 4.819090986165433 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624131, + "c3": 6.680536292186774, + "c4": 5.344429033749421, + "c5": 4.0083217753120675, + "c6": 2.6722145168747105, + "c7": 1.336107258437354 }, "rgb": [86, 146, 138] }, @@ -204396,23 +204396,23 @@ "year": 1767, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -1.4510844533421334, - "c2": -2.8758114361502116, - "c3": -24.56249889195147, - "c4": -14.301541441349254, - "c5": -20.45268424002037, - "c6": -6.6125738704824855, - "c7": 6.517304827147271 + "points": { + "c1": 12.572824041991769, + "c2": -3.154972062088504, + "c3": -2.692779543982944, + "c4": -11.906308362969975, + "c5": -23.5438234240288, + "c6": -10.539367454151723, + "c7": -12.779455260311464 }, - "vertexSeeds": { - "c1": 2.0811707473508707, - "c2": 2.0555583159647264, - "c3": 2.105101489428897, - "c4": 2.0857260274381244, - "c5": 2.05279122438762, - "c6": 2.05756258340685, - "c7": 2.1077451879461995 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244123, + "c3": 2.5427646786870124, + "c4": 2.0342117429495996, + "c5": 1.5256588072121997, + "c6": 1.0171058714747998, + "c7": 0.5085529357373999 }, "rgb": [58, 15, 49] }, @@ -204423,23 +204423,23 @@ "year": 1767, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 25.351226445238332, - "c2": -16.030429825332405, - "c3": -8.653796443256166, - "c4": -22.099441853175172, - "c5": -2.9933074070109704, - "c6": 11.411483210216225, - "c7": -26.309863202307564 + "points": { + "c1": -7.8011089545087025, + "c2": 26.479365188907913, + "c3": -26.51967614935146, + "c4": 21.862560309749867, + "c5": 19.2215439088587, + "c6": -15.225633520717855, + "c7": -22.151906197013933 }, - "vertexSeeds": { - "c1": 1.0093307629333363, - "c2": 1.0482392939391056, - "c3": 0.9946446094338135, - "c4": 1.0171360706864099, - "c5": 1.0037673694793234, - "c6": 0.9618597675639907, - "c7": 1.014421253196086 + "offsets": { + "c1": 1.779935275080906, + "c2": 1.5256588072122057, + "c3": 1.2713823393435033, + "c4": 1.0171058714748031, + "c5": 0.7628294036061029, + "c6": 0.5085529357374006, + "c7": 0.2542764678687003 }, "rgb": [222, 0, 59] }, @@ -204450,23 +204450,23 @@ "year": 1767, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -16.655212354706123, - "c2": -8.437388370118192, - "c3": -11.344338347616798, - "c4": -1.424979780129398, - "c5": 7.760009617295388, - "c6": 14.556606513678226, - "c7": -6.951928208608706 + "points": { + "c1": 0.680441251404929, + "c2": -18.097678346328394, + "c3": 12.97659646383697, + "c4": 2.958033687431808, + "c5": -25.683435107556537, + "c6": -47.55807761040172, + "c7": 8.319027444097351 }, - "vertexSeeds": { - "c1": 4.525848747407047, - "c2": 4.4660119766449915, - "c3": 4.757268297018848, - "c4": 4.449778756733182, - "c5": 4.657021424792655, - "c6": 4.699395690703221, - "c7": 4.746965166875697 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934818, + "c3": 5.709662505779009, + "c4": 4.567730004623212, + "c5": 3.425797503467402, + "c6": 2.283865002311606, + "c7": 1.1419325011557961 }, "rgb": [77, 76, 132] }, @@ -204477,23 +204477,23 @@ "year": 1767, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 36.008423404466754, - "c2": -11.114089001433946, - "c3": 28.831397890323075, - "c4": 11.346388814250837, - "c5": -1.0484818781293015, - "c6": -42.30485800102635, - "c7": -26.50147397939108 + "points": { + "c1": -36.25099310833958, + "c2": -6.946583911805867, + "c3": 43.735373184403485, + "c4": 9.674639770870535, + "c5": -10.367791365391923, + "c6": -14.486599164186856, + "c7": 28.00042193653472 }, - "vertexSeeds": { - "c1": 5.751295336787565, - "c2": 5.751295336787565, - "c3": 5.751295336787565, - "c4": 5.751295336787565, - "c5": 5.751295336787565, - "c6": 5.751295336787565, - "c7": 5.751295336787565 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -204504,23 +204504,23 @@ "year": 1767, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 0.8678181527130207, - "c2": 7.190019115991696, - "c3": 7.113499974540005, - "c4": -29.946218258979936, - "c5": -1.784458184883725, - "c6": -17.87492409336352, - "c7": 35.583788893891956 + "points": { + "c1": -12.834949059564362, + "c2": -12.915788454553148, + "c3": 22.92658887451234, + "c4": 36.75606805618326, + "c5": -15.786006680207379, + "c6": -26.527431094430955, + "c7": 22.3763138653672 }, - "vertexSeeds": { - "c1": 11.814943187499786, - "c2": 11.3365801304494, - "c3": 11.792546711156406, - "c4": 11.909061045963467, - "c5": 11.530154110596477, - "c6": 11.816244653416177, - "c7": 11.75714471798276 + "offsets": { + "c1": 19.93527508090615, + "c2": 17.08737864077671, + "c3": 14.239482200647268, + "c4": 11.391585760517758, + "c5": 8.543689320388319, + "c6": 5.695792880258879, + "c7": 2.8478964401294395 }, "rgb": [222, 0, 59] }, @@ -204531,23 +204531,23 @@ "year": 1767, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 19.22321540025544, - "c2": 8.200460152747915, - "c3": -3.646308094592449, - "c4": 2.724102172713259, - "c5": -20.691787195774815, - "c6": 13.613381586746947, - "c7": 8.988483524156926 + "points": { + "c1": -13.084285355246385, + "c2": -9.854883987167273, + "c3": -22.2524666503571, + "c4": -10.45171125797272, + "c5": 2.433147218245786, + "c6": 6.955025086217887, + "c7": 1.3631576990860594 }, - "vertexSeeds": { - "c1": 4.322670901400149, - "c2": 4.018117942982055, - "c3": 4.1275655693283015, - "c4": 4.179828371956355, - "c5": 3.882544906446382, - "c6": 3.881748719758083, - "c7": 3.9064498240885417 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -204558,23 +204558,23 @@ "year": 1767, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 16.369052486949556, - "c2": -17.666272276146717, - "c3": 18.2785628076076, - "c4": -15.699267673346665, - "c5": -18.877801621364796, - "c6": -8.320372745103521, - "c7": -18.25023564446493 + "points": { + "c1": 19.22402624140311, + "c2": 4.3132614059475145, + "c3": 2.9107374626549145, + "c4": 23.532521880894002, + "c5": -17.01535102522714, + "c6": -4.353929741166809, + "c7": -0.19834933279748057 }, - "vertexSeeds": { - "c1": 1.3758772186371337, - "c2": 1.5104304601299718, - "c3": 1.3734580112533268, - "c4": 1.5369170503526786, - "c5": 1.3427931481934605, - "c6": 1.5885861473502954, - "c7": 1.4828877588371665 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [86, 146, 138] }, @@ -204585,23 +204585,23 @@ "year": 1767, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 3.640842448571078, - "c2": -15.95138137829527, - "c3": -19.042908214143907, - "c4": 7.28078183927553, - "c5": 8.075431461413693, - "c6": -10.785325916996293, - "c7": -9.713896547477002 + "points": { + "c1": 25.471561891272785, + "c2": 5.892741597973053, + "c3": -12.57640418013306, + "c4": -6.343984476391835, + "c5": -21.420330231206865, + "c6": -14.38569735543399, + "c7": -7.007384930455071 }, - "vertexSeeds": { - "c1": 5.832361890397003, - "c2": 5.976167545348304, - "c3": 5.859590608977895, - "c4": 5.816866295008152, - "c5": 5.8286615756303854, - "c6": 5.8701514486417326, - "c7": 6.151235006579388 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991683, + "c3": 7.4664817383263875, + "c4": 5.973185390661114, + "c5": 4.479889042995842, + "c6": 2.9865926953305455, + "c7": 1.4932963476652727 }, "rgb": [77, 76, 132] }, @@ -204612,23 +204612,23 @@ "year": 1767, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -7.982058495640491, - "c2": -12.432554009625926, - "c3": -16.056968799287475, - "c4": -1.7881420362319638, - "c5": 2.0107692017779186, - "c6": -20.438780325712013, - "c7": -0.16705171200069202 + "points": { + "c1": -9.212400678631635, + "c2": 17.263807841558148, + "c3": 8.707121473679585, + "c4": 16.063811291046825, + "c5": 20.695637558421808, + "c6": -14.48675847858142, + "c7": 18.56916544058364 }, - "vertexSeeds": { - "c1": 7.165046567573526, - "c2": 7.0578557004197044, - "c3": 7.082052259249913, - "c4": 7.209629854723076, - "c5": 7.452786988045847, - "c6": 6.9709042178453515, - "c7": 7.299534368205722 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008328, + "c3": 9.20018492834026, + "c4": 7.360147942672211, + "c5": 5.520110957004164, + "c6": 3.6800739713361157, + "c7": 1.8400369856680483 }, "rgb": [86, 146, 138] }, @@ -204639,23 +204639,23 @@ "year": 1767, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -24.868117594091277, - "c2": -13.538884093405855, - "c3": 12.268620768820767, - "c4": 34.31618501230897, - "c5": 2.7334999692620983, - "c6": -39.60204185660064, - "c7": 9.424650435669975 + "points": { + "c1": 17.90574686901357, + "c2": 5.5417865761154985, + "c3": 11.500898758849608, + "c4": 2.038208728143289, + "c5": 12.162286464568709, + "c6": -36.806499396091795, + "c7": 8.711417976817089 }, - "vertexSeeds": { - "c1": 6.226107027931782, - "c2": 6.914606080213317, - "c3": 7.362437092716233, - "c4": 6.518117576832996, - "c5": 6.268285673461701, - "c6": 6.053509874735559, - "c7": 6.559782611733917 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284323, + "c3": 8.784096162736942, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947745, + "c7": 1.7568192325473924 }, "rgb": [238, 201, 159] }, @@ -204666,23 +204666,23 @@ "year": 1767, "resistanceReported": false, "duration": 40435200, - "curveSeeds": { - "c1": -19.928864741318876, - "c2": -26.53801506584167, - "c3": -29.74104147838652, - "c4": 8.288409463531806, - "c5": -43.72225257421566, - "c6": -49.23460257947892, - "c7": -24.772026408510406 + "points": { + "c1": -4.369769238413177, + "c2": 25.304940675927746, + "c3": -12.700760266497142, + "c4": -8.04576511699279, + "c5": -39.831504186122615, + "c6": -4.699241691578912, + "c7": -33.66825106771131 }, - "vertexSeeds": { - "c1": 3.332871545193187, - "c2": 3.5616034321593335, - "c3": 3.3605929869559366, - "c4": 3.5062770471405096, - "c5": 3.3945644462563465, - "c6": 3.3272672019437053, - "c7": 3.223530717110092 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.39204808136847, + "c4": 3.513638465094776, + "c5": 2.635228848821082, + "c6": 1.756819232547388, + "c7": 0.878409616273694 }, "rgb": [77, 76, 132] }, @@ -204693,23 +204693,23 @@ "year": 1767, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -11.249112895884965, - "c2": 1.4110055582482879, - "c3": 2.126580664872421, - "c4": 20.947879424723133, - "c5": -12.798426549658117, - "c6": 3.944974601193053, - "c7": -14.088996340363867 + "points": { + "c1": 0.7288479667584937, + "c2": 5.7123620267637385, + "c3": 1.8844579165312183, + "c4": -14.302702296780378, + "c5": -10.705275620467194, + "c6": -24.521362096296386, + "c7": -16.862053204410103 }, - "vertexSeeds": { - "c1": 6.028942121326841, - "c2": 6.595648433789398, - "c3": 6.1175179620406475, - "c4": 6.593123533637762, - "c5": 6.208710980750926, - "c6": 6.486778391318796, - "c7": 6.101539855376485 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957007, + "c3": 8.021266759130842, + "c4": 6.417013407304659, + "c5": 4.812760055478495, + "c6": 3.2085067036523296, + "c7": 1.6042533518261648 }, "rgb": [86, 146, 138] }, @@ -204720,23 +204720,23 @@ "year": 1767, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -0.17719653002627922, - "c2": 17.902798574301162, - "c3": 19.444219292015948, - "c4": 26.820303663469392, - "c5": 1.3554758626161707, - "c6": 23.071299022804876, - "c7": 19.49425990421739 + "points": { + "c1": -11.289023704480684, + "c2": 21.289536177394602, + "c3": 16.974341707460425, + "c4": 29.62150130729912, + "c5": 22.456301802724923, + "c6": -9.602722986026453, + "c7": -30.987656786721338 }, - "vertexSeeds": { - "c1": 2.999468586848486, - "c2": 3.2885486931641807, - "c3": 3.2052826568193704, - "c4": 3.2470735492687086, - "c5": 2.9435360749703725, - "c6": 2.981208352719061, - "c7": 3.212154887758918 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852955, + "c5": 2.371705963938976, + "c6": 1.5811373092926477, + "c7": 0.7905686546463198 }, "rgb": [58, 15, 49] }, @@ -204747,23 +204747,23 @@ "year": 1768, "resistanceReported": false, "duration": 43891200, - "curveSeeds": { - "c1": -48.02600689403533, - "c2": 34.691345151889834, - "c3": -40.44255953780686, - "c4": -26.517228960381495, - "c5": -56.533746836963495, - "c6": 21.99325532837402, - "c7": -43.35799082716847 + "points": { + "c1": 39.66359096078723, + "c2": -48.40274694731908, + "c3": -30.453008175073414, + "c4": 49.51527295407429, + "c5": -27.21095744587275, + "c6": 31.70690339964561, + "c7": -48.563438003970205 }, - "vertexSeeds": { - "c1": 7.314350245383412, - "c2": 7.314386408225852, - "c3": 7.311066492321437, - "c4": 7.256443479500433, - "c5": 7.27049385791085, - "c6": 7.279517958900384, - "c7": 7.354944305633766 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284378, + "c3": 8.784096162736924, + "c4": 7.027276930189585, + "c5": 5.270457697642131, + "c6": 3.5136384650947927, + "c7": 1.7568192325474543 }, "rgb": [58, 15, 49] }, @@ -204774,23 +204774,23 @@ "year": 1767, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 11.917710780807546, - "c2": -34.70255350217787, - "c3": -24.15662087777445, - "c4": -21.32887435234403, - "c5": -11.555120280879237, - "c6": 34.02822178491103, - "c7": 6.78508807607966 + "points": { + "c1": -28.906358200139287, + "c2": -37.34445226288946, + "c3": -17.239134018789894, + "c4": -23.68968819696033, + "c5": -26.444101295877243, + "c6": -36.86296930946449, + "c7": -22.070282646156922 }, - "vertexSeeds": { - "c1": 6.162982813456294, - "c2": 6.169639040885881, - "c3": 6.214946340577486, - "c4": 6.384070363684261, - "c5": 5.928314774133335, - "c6": 6.4656110486654255, - "c7": 6.130824351312394 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474344, + "c3": 7.743874248728624, + "c4": 6.1950993989829035, + "c5": 4.646324549237183, + "c6": 3.0975496994914415, + "c7": 1.5487748497457208 }, "rgb": [238, 201, 159] }, @@ -204801,23 +204801,23 @@ "year": 1767, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 18.514195670676628, - "c2": 16.58184666016789, - "c3": 4.184164336953103, - "c4": 9.664440201979438, - "c5": 18.783138201045844, - "c6": -6.44362883770965, - "c7": 6.124560781426943 + "points": { + "c1": 14.22907674864625, + "c2": 18.6971485871166, + "c3": 6.335286019085732, + "c4": -16.252791945508015, + "c5": 17.658543631175256, + "c6": -22.506591042865395, + "c7": -6.109495566947686 }, - "vertexSeeds": { - "c1": 2.036473532536133, - "c2": 2.0282620019683786, - "c3": 2.1553932832730065, - "c4": 2.1783841745405725, - "c5": 2.2179952019225655, - "c6": 2.1112436337270846, - "c7": 2.0764346899019377 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266304, + "c3": 2.7739251040221893, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.109570041608878, + "c7": 0.5547850208044373 }, "rgb": [238, 201, 159] }, @@ -204828,23 +204828,23 @@ "year": 1767, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 4.649213316898891, - "c2": 11.27494508636499, - "c3": 1.3645311053963347, - "c4": 6.054081585599395, - "c5": -16.26856317896147, - "c6": 5.007882491250218, - "c7": -9.14117992841768 + "points": { + "c1": 6.136782046809142, + "c2": 7.606823351994368, + "c3": -16.18445502475944, + "c4": 22.363632146932016, + "c5": 19.551696620565334, + "c6": 12.92370123896703, + "c7": 14.856705674080867 }, - "vertexSeeds": { - "c1": 8.073479542817408, - "c2": 8.384800478802342, - "c3": 8.106274815538523, - "c4": 8.016522193783862, - "c5": 8.217565002412243, - "c6": 7.67653061354174, - "c7": 7.771935578274818 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748035, + "c4": 8.136846971798427, + "c5": 6.10263522884882, + "c6": 4.068423485899213, + "c7": 2.0342117429496067 }, "rgb": [86, 146, 138] }, @@ -204855,23 +204855,23 @@ "year": 1767, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -19.08676597374916, - "c2": -44.43933133405879, - "c3": -29.882168407862054, - "c4": -34.01887573792058, - "c5": 17.463483947697718, - "c6": -21.176755454618167, - "c7": 3.102732334581418 + "points": { + "c1": -0.5650409305556039, + "c2": -11.889183964070455, + "c3": -18.729797031528424, + "c4": 5.381267376767603, + "c5": 12.873948887810869, + "c6": 39.86135461966237, + "c7": -16.600120513899938 }, - "vertexSeeds": { - "c1": 3.0217277800426845, - "c2": 3.0250277993390755, - "c3": 3.0676523562621907, - "c4": 3.081544746820679, - "c5": 3.006967831357233, - "c6": 3.078580433418181, - "c7": 3.080334167392315 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435503, + "c3": 3.6985668053629155, + "c4": 2.958853444290327, + "c5": 2.219140083217764, + "c6": 1.479426722145176, + "c7": 0.739713361072588 }, "rgb": [86, 146, 138] }, @@ -204882,23 +204882,23 @@ "year": 1767, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -6.285336031672774, - "c2": 21.427511713764662, - "c3": 3.1132339103346354, - "c4": -11.128331682896368, - "c5": 13.482361808329347, - "c6": 18.127259191771817, - "c7": 12.137820537687869 + "points": { + "c1": 10.002397456273268, + "c2": 20.904465034684126, + "c3": 15.726118000480913, + "c4": -19.370670722762714, + "c5": -2.04141756858057, + "c6": -21.59759254873022, + "c7": -15.291749210574046 }, - "vertexSeeds": { - "c1": 4.3323155373077755, - "c2": 4.091825959160024, - "c3": 3.9857702728592015, - "c4": 4.200757735660755, - "c5": 4.253910912637042, - "c6": 3.910204655943471, - "c7": 3.9509341883455615 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009707, + "c3": 5.177993527508094, + "c4": 4.142394822006474, + "c5": 3.1067961165048534, + "c6": 2.071197411003233, + "c7": 1.0355987055016205 }, "rgb": [77, 76, 132] }, @@ -204909,23 +204909,23 @@ "year": 1767, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 35.02153369331257, - "c2": 35.92659024128023, - "c3": 2.8224237759278736, - "c4": 12.837302478974138, - "c5": -5.375227439857262, - "c6": 15.477779254591212, - "c7": 39.14509280351013 + "points": { + "c1": 38.191042518401964, + "c2": 8.802130595892713, + "c3": -29.079846412236158, + "c4": -31.22080460762058, + "c5": -30.481412734743174, + "c6": 16.47973751671684, + "c7": 36.5029505808542 }, - "vertexSeeds": { - "c1": 3.9988124895481496, - "c2": 3.851792479049253, - "c3": 3.9507693294597637, - "c4": 3.9980140368460617, - "c5": 3.78922227570233, - "c6": 3.7685123236349427, - "c7": 3.9835402930605435 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366154, + "c3": 4.8081368469718, + "c4": 3.846509477577436, + "c5": 2.8848821081830827, + "c6": 1.923254738788718, + "c7": 0.9616273693943644 }, "rgb": [77, 76, 132] }, @@ -204936,23 +204936,23 @@ "year": 1767, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -26.8122266950407, - "c2": -0.07227113977959476, - "c3": 6.952064347194202, - "c4": -1.9510712779438393, - "c5": 23.077181447846243, - "c6": -8.589975143058716, - "c7": -33.92681978700739 + "points": { + "c1": 12.73446235947975, + "c2": -46.84852515710684, + "c3": -2.427222520336109, + "c4": -2.591851192439414, + "c5": -34.46220595901424, + "c6": 22.55047428805456, + "c7": -35.971921736461795 }, - "vertexSeeds": { - "c1": 3.6528497409326426, - "c2": 3.6528497409326426, - "c3": 3.6528497409326426, - "c4": 3.6528497409326426, - "c5": 3.6528497409326426, - "c6": 3.6528497409326426, - "c7": 3.6528497409326426 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -204963,23 +204963,23 @@ "year": 1767, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -6.110046781359253, - "c2": 5.885606327300941, - "c3": 20.699268505018907, - "c4": -20.20729339558239, - "c5": -7.846562126812856, - "c6": -12.528789551666716, - "c7": 6.753177136210908 + "points": { + "c1": -12.485509850286817, + "c2": 7.304090628529401, + "c3": 22.930884074141247, + "c4": 2.306812026460353, + "c5": 8.407481643984163, + "c6": -16.833954126412685, + "c7": 0.8453916094085869 }, - "vertexSeeds": { - "c1": 7.446216776252987, - "c2": 6.564697851951619, - "c3": 7.356282493243578, - "c4": 7.154275197327812, - "c5": 6.8245285425017075, - "c6": 6.895771285516303, - "c7": 7.534208319872513 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249654, + "c3": 9.33888118354138, + "c4": 7.4711049468331066, + "c5": 5.603328710124832, + "c6": 3.735552473416558, + "c7": 1.8677762367082842 }, "rgb": [86, 146, 138] }, @@ -204990,23 +204990,23 @@ "year": 1767, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 31.712727424150614, - "c2": -5.618579059311898, - "c3": -34.786130876995244, - "c4": -21.372979828832477, - "c5": -18.775885243838797, - "c6": 19.379408948295428, - "c7": -1.4551236707207735 + "points": { + "c1": -21.997858940863658, + "c2": -23.712731398528494, + "c3": -15.243087812968184, + "c4": -10.044310149414862, + "c5": 4.738839287491118, + "c6": 6.504568782787764, + "c7": -24.242368682888348 }, - "vertexSeeds": { - "c1": 4.3429882192326295, - "c2": 4.337829957601798, - "c3": 4.286016820892335, - "c4": 4.420983301543179, - "c5": 4.0634113413928, - "c6": 3.8826531422124115, - "c7": 4.23706899719404 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [238, 201, 159] }, @@ -205017,23 +205017,23 @@ "year": 1767, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": -16.36939883876596, - "c2": 19.62715355979026, - "c3": -22.379527126821902, - "c4": 21.972511148746463, - "c5": 46.90883101759118, - "c6": 23.051094947959925, - "c7": -38.62875143812229 + "points": { + "c1": 8.290962461695116, + "c2": 19.53375495468599, + "c3": -38.0020670222433, + "c4": 20.877517778586252, + "c5": 20.729386209028206, + "c6": -52.90403289018326, + "c7": -12.129549325093713 }, - "vertexSeeds": { - "c1": 6.615664946056115, - "c2": 6.737277237370917, - "c3": 6.559050682958162, - "c4": 6.85926103234132, - "c5": 6.647616753557272, - "c6": 6.668964680091526, - "c7": 6.624717495882462 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439679, + "c3": 8.298659269533053, + "c4": 6.638927415626452, + "c5": 4.979195561719827, + "c6": 3.319463707813226, + "c7": 1.6597318539066008 }, "rgb": [238, 201, 159] }, @@ -205044,23 +205044,23 @@ "year": 1767, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 21.270328880047487, - "c2": 16.68170781941261, - "c3": 5.419126613928967, - "c4": 16.84522547802564, - "c5": -37.40739915332314, - "c6": -18.516533711990185, - "c7": 29.60700476035835 + "points": { + "c1": 4.940791637805432, + "c2": -36.178627573107974, + "c3": 32.41255640934578, + "c4": 10.114646809603073, + "c5": 44.178868306681494, + "c6": -11.71820626261195, + "c7": -29.004685496818443 }, - "vertexSeeds": { - "c1": 5.0847726068603585, - "c2": 3.769600179536609, - "c3": 4.355427553873208, - "c4": 4.483896253755323, - "c5": 4.950992755028821, - "c6": 4.71305856473836, - "c7": 4.512975709131622 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618585, + "c3": 6.102635228848819, + "c4": 4.882108183079055, + "c5": 3.6615811373092924, + "c6": 2.4410540915395273, + "c7": 1.2205270457697621 }, "rgb": [58, 15, 49] }, @@ -205071,23 +205071,23 @@ "year": 1767, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -14.64439047392954, - "c2": 2.0797400764344047, - "c3": 14.505350291489243, - "c4": -42.1179055475468, - "c5": -22.43140887710344, - "c6": 8.594745450347553, - "c7": 12.97040780858358 + "points": { + "c1": -31.699941282620546, + "c2": 35.515567499146044, + "c3": 44.557888375137196, + "c4": -2.945357164348522, + "c5": 27.149985847436923, + "c6": -1.9709795375740597, + "c7": 5.04389280939624 }, - "vertexSeeds": { - "c1": 8.196500087137228, - "c2": 8.24490439109516, - "c3": 8.173216106881252, - "c4": 8.19167915577252, - "c5": 8.227266188335987, - "c6": 8.228974352657879, - "c7": 8.176402197859074 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134512, + "c3": 9.847434119278734, + "c4": 7.877947295423113, + "c5": 5.908460471567334, + "c6": 3.9389736477115567, + "c7": 1.9694868238557783 }, "rgb": [222, 0, 59] }, @@ -205098,23 +205098,23 @@ "year": 1767, "resistanceReported": true, "duration": 34214400, - "curveSeeds": { - "c1": 2.4308197474462574, - "c2": -29.06095363464731, - "c3": 7.4690196140335345, - "c4": 41.557375997977836, - "c5": -23.650034941408506, - "c6": -10.705364070142835, - "c7": 24.738299679465932 + "points": { + "c1": -20.217189904010823, + "c2": -15.830037231912108, + "c3": 3.473045170353224, + "c4": 40.59808872576564, + "c5": -36.309200195499294, + "c6": 40.951071262380175, + "c7": -38.023246495612824 }, - "vertexSeeds": { - "c1": 1.498103637388675, - "c2": 1.7592425290629166, - "c3": 1.5159828733080565, - "c4": 1.4441744483289665, - "c5": 1.487774924996753, - "c6": 1.4065771893345336, - "c7": 1.630198116535605 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.635228848821083, + "c3": 2.1960240406842346, + "c4": 1.7568192325473886, + "c5": 1.3176144244105403, + "c6": 0.8784096162736943, + "c7": 0.439204808136848 }, "rgb": [58, 15, 49] }, @@ -205125,23 +205125,23 @@ "year": 1768, "resistanceReported": false, "duration": 41299200, - "curveSeeds": { - "c1": 51.435918496042746, - "c2": -12.581869005769441, - "c3": -51.5459194650375, - "c4": 53.79687133836988, - "c5": -8.074070135698342, - "c6": 51.0440244121604, - "c7": 12.268599315142822 + "points": { + "c1": -24.79223908694427, + "c2": -19.49812994123969, + "c3": 25.811827775998097, + "c4": -33.914778279823906, + "c5": 31.178069670211087, + "c6": 43.07044980458157, + "c7": 49.72454135895981 }, - "vertexSeeds": { - "c1": 5.611384991366494, - "c2": 6.027476591251531, - "c3": 5.3520276077414275, - "c4": 5.375631996918681, - "c5": 5.335681712212151, - "c6": 5.377655965641827, - "c7": 5.5504781009597535 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [238, 201, 159] }, @@ -205152,23 +205152,23 @@ "year": 1767, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": -3.9905434730572686, - "c2": -19.887678335665864, - "c3": -10.84405045450998, - "c4": -12.50635562849465, - "c5": 9.136172901657478, - "c6": 7.780113914846652, - "c7": -11.886918136605452 + "points": { + "c1": 8.69631218679612, + "c2": 21.41983408134694, + "c3": 17.229597120541335, + "c4": -3.0811336579726216, + "c5": -13.390638280758951, + "c6": -6.296240954816916, + "c7": 16.379075260152646 }, - "vertexSeeds": { - "c1": 7.685517402837164, - "c2": 8.417484640121408, - "c3": 7.293695563603444, - "c4": 7.866734309060464, - "c5": 7.702893598981042, - "c6": 8.20855781043852, - "c7": 8.49398841529241 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697642, + "c3": 10.171058714748039, + "c4": 8.136846971798432, + "c5": 6.102635228848817, + "c6": 4.068423485899212, + "c7": 2.034211742949606 }, "rgb": [86, 146, 138] }, @@ -205179,23 +205179,23 @@ "year": 1767, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": 17.738257658463567, - "c2": -13.969543959434453, - "c3": -20.070611237928716, - "c4": 2.0793987709470017, - "c5": -14.877810354056635, - "c6": 3.6617438549412604, - "c7": -19.882083960627092 + "points": { + "c1": 15.551598169189333, + "c2": -19.939914917689784, + "c3": 6.011768037339408, + "c4": -17.292936654787894, + "c5": 5.441545215127331, + "c6": 16.774693783312365, + "c7": 12.483516309981603 }, - "vertexSeeds": { - "c1": 1.7774014368059972, - "c2": 1.857756802623173, - "c3": 1.8867529280147504, - "c4": 1.8431561598491484, - "c5": 1.8873235688864172, - "c6": 1.953856450392287, - "c7": 1.934136137584693 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [58, 15, 49] }, @@ -205206,23 +205206,23 @@ "year": 1767, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 0.9907997944446265, - "c2": -6.97621824859743, - "c3": 11.82526152106172, - "c4": 0.6528114904626108, - "c5": 13.640772030405621, - "c6": 2.2994883455722146, - "c7": -25.37556421837266 + "points": { + "c1": -9.563646318398145, + "c2": -27.500919082513548, + "c3": 16.128740854207095, + "c4": 27.853517691344734, + "c5": 14.942204188440087, + "c6": 31.00936438561331, + "c7": 1.1356369880639363 }, - "vertexSeeds": { - "c1": 3.8665803108808294, - "c2": 3.8665803108808294, - "c3": 3.8665803108808294, - "c4": 3.8665803108808294, - "c5": 3.8665803108808294, - "c6": 3.8665803108808294, - "c7": 3.8665803108808294 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -205233,23 +205233,23 @@ "year": 1767, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 14.493469769816482, - "c2": -13.875412869865201, - "c3": -13.235088121641361, - "c4": 16.43965985024477, - "c5": -15.315881214248526, - "c6": -25.858400160029575, - "c7": 21.811032381508436 + "points": { + "c1": -22.11145261553437, + "c2": 6.948852355038092, + "c3": 21.950944453814778, + "c4": 14.884178252764443, + "c5": -25.568624811592052, + "c6": 23.76558614760657, + "c7": 27.809403598936512 }, - "vertexSeeds": { - "c1": 5.870954131580434, - "c2": 5.979524215607687, - "c3": 5.9710305424868775, - "c4": 5.850709409341336, - "c5": 6.179478857134224, - "c6": 5.871987436915864, - "c7": 5.984620187241908 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871023, + "c3": 7.397133610725831, + "c4": 5.917706888580671, + "c5": 4.438280166435511, + "c6": 2.958853444290352, + "c7": 1.4794267221451596 }, "rgb": [58, 15, 49] }, @@ -205260,23 +205260,23 @@ "year": 1767, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 6.111848586571451, - "c2": -7.018470817242829, - "c3": -6.178397955687492, - "c4": -7.878161691544662, - "c5": -18.90628231394069, - "c6": 16.392212728957553, - "c7": 4.826993809339555 + "points": { + "c1": -8.065592231167575, + "c2": 7.669035974434973, + "c3": 10.823789855274462, + "c4": 21.751985310945734, + "c5": -2.1562358527754526, + "c6": -14.405202268433968, + "c7": -18.250452421068694 }, - "vertexSeeds": { - "c1": 7.114465990170183, - "c2": 6.74466350523888, - "c3": 6.8526513665708375, - "c4": 7.561955449638004, - "c5": 7.067183281532998, - "c6": 7.52923431945919, - "c7": 7.3929468013688036 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048544, + "c3": 9.22330097087379, + "c4": 7.3786407766990205, + "c5": 5.533980582524265, + "c6": 3.6893203883495103, + "c7": 1.8446601941747551 }, "rgb": [58, 15, 49] }, @@ -205287,23 +205287,23 @@ "year": 1767, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -1.0097360988564006, - "c2": -7.026671705009338, - "c3": -28.751934500723635, - "c4": 15.979168898551372, - "c5": 11.149986490751928, - "c6": 0.2162583762139363, - "c7": 30.56925858052189 + "points": { + "c1": 32.703079706138084, + "c2": -32.129542630836255, + "c3": -11.81758855620182, + "c4": -15.032060605070235, + "c5": -14.6334598779289, + "c6": -15.254912019807676, + "c7": -25.15488973963233 }, - "vertexSeeds": { - "c1": 1.5551567436621254, - "c2": 1.557723615028856, - "c3": 1.66503723091856, - "c4": 1.6450148964538562, - "c5": 1.5711283871383475, - "c6": 1.6800896499356472, - "c7": 1.5859305708973512 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.44105409153953, + "c3": 2.034211742949605, + "c4": 1.6273693943596852, + "c5": 1.220527045769765, + "c6": 0.813684697179845, + "c7": 0.40684234858992 }, "rgb": [58, 15, 49] }, @@ -205314,23 +205314,23 @@ "year": 1767, "resistanceReported": false, "duration": 9244800, - "curveSeeds": { - "c1": 2.5750356998845803, - "c2": -5.4153729164449285, - "c3": 10.509658495104723, - "c4": -7.585959235749369, - "c5": 10.025100363395747, - "c6": -12.937564125415339, - "c7": 12.53104489993099 + "points": { + "c1": 9.30456360494778, + "c2": 15.178332011903557, + "c3": 17.193837668562324, + "c4": -0.2825121412163689, + "c5": 11.540915273445542, + "c6": 1.8094603037600265, + "c7": 15.208955109028224 }, - "vertexSeeds": { - "c1": 2.4357022803235444, - "c2": 2.261842558267682, - "c3": 2.4464732659894253, - "c4": 2.312596203710536, - "c5": 2.35159097693868, - "c6": 2.390178989420196, - "c7": 2.3003469068881497 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.522884882108181, + "c3": 2.9357374017568194, + "c4": 2.348589921405454, + "c5": 1.7614424410540888, + "c6": 1.174294960702727, + "c7": 0.5871474803513617 }, "rgb": [77, 76, 132] }, @@ -205341,23 +205341,23 @@ "year": 1767, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -25.461876800156357, - "c2": -30.13121412364807, - "c3": 28.21645176935514, - "c4": -35.127545480677846, - "c5": 24.389478902995748, - "c6": -26.933147794365624, - "c7": 22.865209396107943 + "points": { + "c1": -22.036605458677702, + "c2": -35.317070491224605, + "c3": -6.442125273627781, + "c4": -24.326052423684725, + "c5": -17.179839595934165, + "c6": -20.764672135401813, + "c7": 6.24011453888955 }, - "vertexSeeds": { - "c1": 5.443917469251133, - "c2": 7.330964004730012, - "c3": 7.1640231102409935, - "c4": 6.60994726890584, - "c5": 6.8600784876565895, - "c6": 5.147810817812264, - "c7": 6.653148138081369 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.762829403606101, + "c3": 8.969024503005086, + "c4": 7.175219602404067, + "c5": 5.3814147018030525, + "c6": 3.5876098012020337, + "c7": 1.7938049006010144 }, "rgb": [238, 201, 159] }, @@ -205368,23 +205368,23 @@ "year": 1767, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -10.36634810724727, - "c2": 7.587239768118117, - "c3": 0.489246175977307, - "c4": 45.87596945391631, - "c5": -13.39124298113068, - "c6": -31.507773108763477, - "c7": -37.66952628264735 + "points": { + "c1": 23.6443389913654, + "c2": 34.24220927398808, + "c3": -11.397721017123196, + "c4": 36.925495661996976, + "c5": 25.255554741698177, + "c6": 20.065604962480975, + "c7": 41.99019356712408 }, - "vertexSeeds": { - "c1": 7.192578137815414, - "c2": 7.27299804290045, - "c3": 7.276303980945336, - "c4": 7.229665849784199, - "c5": 6.862826732167593, - "c6": 6.909377201086161, - "c7": 7.091081504543999 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -205395,23 +205395,23 @@ "year": 1767, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -25.943880025766937, - "c2": -20.250990036838104, - "c3": 19.45224644427062, - "c4": 31.17194012939951, - "c5": 31.65955278877002, - "c6": 38.65074114650891, - "c7": 2.814355482677307 + "points": { + "c1": 21.005051849671183, + "c2": 7.4928301110140865, + "c3": -6.723380936905208, + "c4": -6.5095476875484835, + "c5": 44.00864277682742, + "c6": -30.378268266449957, + "c7": 44.01699232202821 }, - "vertexSeeds": { - "c1": 7.218063346519575, - "c2": 7.393782623103775, - "c3": 6.929397619423095, - "c4": 6.963901454351318, - "c5": 7.148082403005614, - "c6": 7.231865681965489, - "c7": 7.314691883584789 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -205422,23 +205422,23 @@ "year": 1768, "resistanceReported": false, "duration": 59443200, - "curveSeeds": { - "c1": 8.293045163179855, - "c2": -23.235103316308418, - "c3": 32.06488960015534, - "c4": -47.81503447891309, - "c5": -69.77239599701176, - "c6": 41.052958823394675, - "c7": -39.46305801656691 + "points": { + "c1": -53.737943030162484, + "c2": 31.070255899880607, + "c3": -44.350441308880136, + "c4": 4.580475562931113, + "c5": -24.73720689592291, + "c6": -50.2577982331478, + "c7": 54.97612850438691 }, - "vertexSeeds": { - "c1": 4.06355579696664, - "c2": 4.004221541964012, - "c3": 4.256063745235989, - "c4": 4.432788011161247, - "c5": 4.0992082545261335, - "c6": 4.435965908941642, - "c7": 4.154896463596725 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.7128987517337055, + "c3": 5.594082293111416, + "c4": 4.475265834489134, + "c5": 3.3564493758668528, + "c6": 2.237632917244564, + "c7": 1.118816458622282 }, "rgb": [222, 0, 59] }, @@ -205449,23 +205449,23 @@ "year": 1767, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -8.433553513716603, - "c2": 1.7734912423032867, - "c3": -16.306396495783485, - "c4": -22.432988602219933, - "c5": -21.90545142781884, - "c6": -20.270582001344152, - "c7": 32.68381175639456 + "points": { + "c1": 7.306358633006106, + "c2": 14.373587401008265, + "c3": -4.61497777748162, + "c4": 1.3092606804861688, + "c5": -13.298336505661226, + "c6": 18.387740658293296, + "c7": 12.42048689361205 }, - "vertexSeeds": { - "c1": 4.903135083983861, - "c2": 5.021676139577802, - "c3": 5.165178344107023, - "c4": 5.137438052645897, - "c5": 5.085405218873004, - "c6": 5.147672355518678, - "c7": 4.838643011157227 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [222, 0, 59] }, @@ -205476,23 +205476,23 @@ "year": 1767, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": 7.562165598060535, - "c2": -7.149554782807515, - "c3": -6.574148931990088, - "c4": -18.580713196374006, - "c5": -2.069786885114816, - "c6": 3.831607585355002, - "c7": 4.549685700767537 + "points": { + "c1": -7.121219759721168, + "c2": -5.296044653683023, + "c3": 0.03948936364549738, + "c4": 18.575813125560618, + "c5": -9.507708016838816, + "c6": 10.803570032096747, + "c7": 17.106561381107067 }, - "vertexSeeds": { - "c1": 3.015974720818106, - "c2": 3.031531187938566, - "c3": 3.3668684325134017, - "c4": 3.35301689059904, - "c5": 3.0805788581115268, - "c6": 3.3181706403172417, - "c7": 3.10418126399018 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719367, + "c5": 2.441054091539525, + "c6": 1.6273693943596834, + "c7": 0.8136846971798417 }, "rgb": [86, 146, 138] }, @@ -205503,23 +205503,23 @@ "year": 1767, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": 0.624942887347455, - "c2": -13.374267470064252, - "c3": 14.30396151162606, - "c4": -3.869709521154867, - "c5": -9.510272403783691, - "c6": -10.210503740158698, - "c7": -6.69805975582125 + "points": { + "c1": 7.718250236271814, + "c2": -13.522427108802393, + "c3": -3.608981999775054, + "c4": -16.282724081691683, + "c5": -12.985711930314352, + "c6": -14.877851536290052, + "c7": -9.952807052139349 }, - "vertexSeeds": { - "c1": 4.197196943723073, - "c2": 4.2458299996849185, - "c3": 3.8962424780908984, - "c4": 3.993815159123039, - "c5": 3.8126142481246657, - "c6": 3.9622160305706737, - "c7": 3.880528231215724 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -205530,23 +205530,23 @@ "year": 1767, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": 20.02428336285577, - "c2": -14.729614756968381, - "c3": 2.463905651523561, - "c4": 35.493050170745406, - "c5": 16.06894128294971, - "c6": -41.74163857470192, - "c7": -23.535338305391125 + "points": { + "c1": 6.693743098450177, + "c2": 3.2007372766249134, + "c3": -14.918911960895365, + "c4": 33.0167065159186, + "c5": -17.189760330716382, + "c6": 46.906093534485734, + "c7": 29.16851637058376 }, - "vertexSeeds": { - "c1": 1.8864384047008675, - "c2": 1.7730477639053563, - "c3": 1.9699543173022689, - "c4": 1.9407925504791312, - "c5": 1.8611686153699534, - "c6": 1.859733252280645, - "c7": 1.743051995225302 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.542764678687008, + "c4": 2.0342117429496063, + "c5": 1.5256588072122037, + "c6": 1.0171058714748016, + "c7": 0.5085529357373996 }, "rgb": [77, 76, 132] }, @@ -205557,23 +205557,23 @@ "year": 1767, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -25.07710107720245, - "c2": 1.8475697749243167, - "c3": -15.941276348901734, - "c4": -11.25943961821098, - "c5": 0.4245082827504518, - "c6": -29.925215881093013, - "c7": -0.9781517527645534 + "points": { + "c1": 7.24431323916383, + "c2": -10.214985340583905, + "c3": -32.101013037468874, + "c4": 13.36636504011252, + "c5": 11.515547086262977, + "c6": -1.9143885750770124, + "c7": 7.58919707506994 }, - "vertexSeeds": { - "c1": 9.77700803607972, - "c2": 9.740798687368317, - "c3": 9.774898679496408, - "c4": 9.944942462870078, - "c5": 9.910313883309518, - "c6": 9.857614371943038, - "c7": 9.805192744824536 + "offsets": { + "c1": 16.601941747572816, + "c2": 14.23023578363383, + "c3": 11.858529819694846, + "c4": 9.486823855755862, + "c5": 7.115117891816877, + "c6": 4.74341192787797, + "c7": 2.371705963938985 }, "rgb": [58, 15, 49] }, @@ -205584,23 +205584,23 @@ "year": 1767, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 13.198642366665972, - "c2": -23.55436208956571, - "c3": 22.9077974528198, - "c4": 24.554362250058155, - "c5": -11.058852908530628, - "c6": -33.27720131968621, - "c7": -22.914132247744387 + "points": { + "c1": -33.77047458879254, + "c2": 32.96670085683383, + "c3": 39.29959106886873, + "c4": 30.291900327332975, + "c5": -43.6700469853766, + "c6": -8.302295316809257, + "c7": 8.178262396628774 }, - "vertexSeeds": { - "c1": 5.703414217520423, - "c2": 5.323466759314702, - "c3": 4.9773900408959815, - "c4": 5.870404250459113, - "c5": 5.174696358287607, - "c6": 5.596591513910038, - "c7": 5.051548932013005 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [58, 15, 49] }, @@ -205611,23 +205611,23 @@ "year": 1767, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": -4.3667614096227325, - "c2": 25.645732789726083, - "c3": -29.78945055763555, - "c4": -28.784499588430894, - "c5": -25.525365977408626, - "c6": -15.603667210068721, - "c7": -31.218840983327976 + "points": { + "c1": -43.035878229850695, + "c2": 5.191310405111224, + "c3": 27.829740776128375, + "c4": 38.42341716875222, + "c5": 11.476204940155597, + "c6": -20.394196915797778, + "c7": 24.346609727397507 }, - "vertexSeeds": { - "c1": 0.42917448461120716, - "c2": 0.4131328961191005, - "c3": 0.4539931473796966, - "c4": 0.4111085603510671, - "c5": 0.447406760059331, - "c6": 0.46206136262196607, - "c7": 0.4623117002017446 + "offsets": { + "c1": 0.8090614886731391, + "c2": 0.6934812760055482, + "c3": 0.5779010633379563, + "c4": 0.46232085067036544, + "c5": 0.3467406380027736, + "c6": 0.23116042533518272, + "c7": 0.11558021266759186 }, "rgb": [77, 76, 132] }, @@ -205638,23 +205638,23 @@ "year": 1767, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -2.7499597878172786, - "c2": -23.12232789496493, - "c3": 26.228089347515187, - "c4": -12.974648283555815, - "c5": -15.107892189709087, - "c6": -14.104705132905977, - "c7": -30.806941695044426 + "points": { + "c1": 6.1019655993775785, + "c2": -20.143487386930303, + "c3": 3.8101305694162093, + "c4": -32.81148022714154, + "c5": 2.9418163444243106, + "c6": -34.37784029661983, + "c7": 17.24351358458859 }, - "vertexSeeds": { - "c1": 5.6681375513303625, - "c2": 5.346657891108958, - "c3": 5.577286371558449, - "c4": 5.490765838712989, - "c5": 5.84188306909261, - "c6": 5.416738951577171, - "c7": 5.302512773192397 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187247, + "c3": 7.004160887656031, + "c4": 5.60332871012483, + "c5": 4.202496532593615, + "c6": 2.801664355062415, + "c7": 1.4008321775312158 }, "rgb": [86, 146, 138] }, @@ -205665,23 +205665,23 @@ "year": 1767, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 28.08166333366141, - "c2": -24.76848487687779, - "c3": 24.021052943771153, - "c4": -18.748688325175095, - "c5": 16.865691391432435, - "c6": 38.319200807410226, - "c7": -25.60149029024264 + "points": { + "c1": 1.4928428099039834, + "c2": 24.656107112638736, + "c3": 25.298299806730725, + "c4": 22.727358015907008, + "c5": 19.812732854805, + "c6": -17.847109934648493, + "c7": -3.518820364170793 }, - "vertexSeeds": { - "c1": 7.540836424597772, - "c2": 7.717891586357115, - "c3": 7.505116133730026, - "c4": 7.611778435824041, - "c5": 7.715448566333342, - "c6": 7.796990478647762, - "c7": 7.386165900436445 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289867, + "c3": 9.361997226074878, + "c4": 7.489597780859921, + "c5": 5.617198335644933, + "c6": 3.744798890429945, + "c7": 1.872399445214957 }, "rgb": [222, 0, 59] }, @@ -205692,23 +205692,23 @@ "year": 1767, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -16.518652400448484, - "c2": -12.12150294881096, - "c3": 12.067403404191868, - "c4": 10.483057904711863, - "c5": -3.4140347378070626, - "c6": -0.21797879838205958, - "c7": 7.397386506064876 + "points": { + "c1": 1.1430616581343074, + "c2": 7.685841797417471, + "c3": 6.332766226108102, + "c4": -17.7065089247075, + "c5": -13.178445834347169, + "c6": -9.698214660138886, + "c7": 12.377052025873297 }, - "vertexSeeds": { - "c1": 7.394240743022611, - "c2": 7.689402103765284, - "c3": 7.350726021482196, - "c4": 7.684212076355275, - "c5": 7.469400939076703, - "c6": 7.684961014672499, - "c7": 7.624566882994719 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169206, + "c3": 9.292649098474334, + "c4": 7.434119278779462, + "c5": 5.575589459084617, + "c6": 3.7170596393897455, + "c7": 1.8585298196948727 }, "rgb": [222, 0, 59] }, @@ -205719,23 +205719,23 @@ "year": 1767, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 10.517491158069113, - "c2": 23.279341368338663, - "c3": -26.21383411436696, - "c4": -24.323949308485812, - "c5": 4.0389588474345715, - "c6": 14.200463280946487, - "c7": 6.77215998980914 + "points": { + "c1": 11.66986916319371, + "c2": 11.543767248098803, + "c3": 30.73492387748893, + "c4": -1.5424810755501497, + "c5": -3.9881475478269266, + "c6": 30.085421330058942, + "c7": 3.3974757541513583 }, - "vertexSeeds": { - "c1": 4.115013608130857, - "c2": 4.579995934572028, - "c3": 4.782037542971801, - "c4": 4.864597757056521, - "c5": 5.0241174123620755, - "c6": 4.482854172001568, - "c7": 4.729821831062342 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -205746,23 +205746,23 @@ "year": 1767, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 17.610147874919043, - "c2": 25.77286864507424, - "c3": -2.4584658372537262, - "c4": 22.54181786491982, - "c5": 5.407611825088765, - "c6": -18.250568790400123, - "c7": -30.699205312575064 + "points": { + "c1": -10.654637048560637, + "c2": -34.80935876900396, + "c3": 32.42624470187647, + "c4": -26.704078026902977, + "c5": 26.674219742190687, + "c6": -1.188607556601994, + "c7": -23.93931421764081 }, - "vertexSeeds": { - "c1": 7.136530678470484, - "c2": 7.153003554032929, - "c3": 7.105101701215718, - "c4": 7.2146897697456644, - "c5": 7.0355705705007425, - "c6": 7.405108867022401, - "c7": 7.175318567853475 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148405, + "c3": 8.85344429033751, + "c4": 7.08275543226999, + "c5": 5.3120665742025, + "c6": 3.5413777161350097, + "c7": 1.7706888580674907 }, "rgb": [77, 76, 132] }, @@ -205773,23 +205773,23 @@ "year": 1767, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 34.90862808807609, - "c2": 19.274935639513693, - "c3": 7.961597657898061, - "c4": -23.54170778265737, - "c5": -20.112790581912826, - "c6": 9.975918060639046, - "c7": -17.360528582092098 + "points": { + "c1": 36.48457976492596, + "c2": -29.265002949617937, + "c3": 31.404319712057593, + "c4": 32.869309741598705, + "c5": 9.537304811448791, + "c6": -6.433822807020945, + "c7": -29.70098583804674 }, - "vertexSeeds": { - "c1": 2.700530604826312, - "c2": 2.6127217546052868, - "c3": 2.96115817095011, - "c4": 2.6543671445337282, - "c5": 2.737067386095899, - "c6": 2.6942866542147734, - "c7": 2.951233047539421 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314841, + "c3": 3.6292186777623687, + "c4": 2.9033749422098962, + "c5": 2.1775312066574237, + "c6": 1.451687471104945, + "c7": 0.7258437355524725 }, "rgb": [86, 146, 138] }, @@ -205800,23 +205800,23 @@ "year": 1767, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": 8.506332244778864, - "c2": -0.6832373803724145, - "c3": 0.3556935032387152, - "c4": -14.981928631804381, - "c5": -6.163022057731773, - "c6": 2.4624819809130187, - "c7": -7.0505573155030135 + "points": { + "c1": 17.89527082759709, + "c2": -13.056552736248904, + "c3": -19.135845862651518, + "c4": -18.94349975382199, + "c5": 13.361842348590837, + "c6": -10.389619368133003, + "c7": -17.197599336118778 }, - "vertexSeeds": { - "c1": 4.504137774891513, - "c2": 4.4981032766007, - "c3": 4.52175110094194, - "c4": 4.450976279967815, - "c5": 4.450611106888806, - "c6": 4.452212178594645, - "c7": 4.5054280915339 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411905, + "c3": 5.4091539528432815, + "c4": 4.327323162274603, + "c5": 3.2454923717059794, + "c6": 2.1636615811373017, + "c7": 1.0818307905686777 }, "rgb": [58, 15, 49] }, @@ -205827,23 +205827,23 @@ "year": 1767, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 21.398369120421485, - "c2": -20.93105519259727, - "c3": 15.90959307350547, - "c4": -4.912495677422225, - "c5": -11.5349792273411, - "c6": -4.1104210110342585, - "c7": 21.768495724808446 + "points": { + "c1": -6.420187630795599, + "c2": -12.88092308999023, + "c3": -10.176529259446813, + "c4": -26.303793421191223, + "c5": 19.425684444111155, + "c6": -6.897559810827303, + "c7": 16.840973324031218 }, - "vertexSeeds": { - "c1": 1.2679302624380584, - "c2": 1.2826652337343238, - "c3": 1.5067175551282113, - "c4": 1.2834584657084782, - "c5": 1.317774793746872, - "c6": 1.460867661627291, - "c7": 1.424836761667982 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [58, 15, 49] }, @@ -205854,23 +205854,23 @@ "year": 1768, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": 23.200498761559395, - "c2": -53.19394143415223, - "c3": 24.210718453611385, - "c4": 17.655944278330203, - "c5": 33.374893372621734, - "c6": -32.961854388520855, - "c7": 5.171524542861526 + "points": { + "c1": -54.0187089661065, + "c2": -29.741412161044128, + "c3": 49.11768259895576, + "c4": 3.8469278149623065, + "c5": 6.169663922199497, + "c6": -33.596841542870706, + "c7": 54.71651644000645 }, - "vertexSeeds": { - "c1": 4.380768669545564, - "c2": 4.595263965868635, - "c3": 4.3255443807520075, - "c4": 4.559905724839901, - "c5": 4.348984258295362, - "c6": 4.5894086868136155, - "c7": 4.483615336046848 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653257, + "c3": 5.547850208044379, + "c4": 4.438280166435512, + "c5": 3.328710124826634, + "c6": 2.219140083217756, + "c7": 1.109570041608878 }, "rgb": [86, 146, 138] }, @@ -205881,23 +205881,23 @@ "year": 1767, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 14.725059927459142, - "c2": -16.529275320237087, - "c3": 32.64902109070246, - "c4": -8.15651192241279, - "c5": 5.627681979615936, - "c6": -20.434052604817733, - "c7": 36.35471848767834 + "points": { + "c1": 40.75399888356097, + "c2": 19.590107886826104, + "c3": -13.34386071135717, + "c4": -17.032754230678155, + "c5": 5.75846035700247, + "c6": 9.248483652006556, + "c7": -9.178526496039723 }, - "vertexSeeds": { - "c1": 3.279023600872069, - "c2": 2.7229754046076815, - "c3": 3.564541229657452, - "c4": 2.7280571480923803, - "c5": 3.022316822892273, - "c6": 3.0863726606248383, - "c7": 3.96350587753664 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.7420249653259345, + "c3": 4.78502080443828, + "c4": 3.828016643550623, + "c5": 2.8710124826629686, + "c6": 1.9140083217753114, + "c7": 0.9570041608876545 }, "rgb": [238, 201, 159] }, @@ -205908,23 +205908,23 @@ "year": 1767, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -18.21069192634953, - "c2": 18.220266414883994, - "c3": -43.23412365526318, - "c4": -14.373100000585762, - "c5": 29.617597626621404, - "c6": 28.218572165538646, - "c7": 33.45986961865157 + "points": { + "c1": -13.21140053521762, + "c2": -11.434309491123713, + "c3": 12.676672355321024, + "c4": 46.036078538803224, + "c5": -17.36550957628089, + "c6": 14.129094004260168, + "c7": 25.785440356891854 }, - "vertexSeeds": { - "c1": 5.4728335318501555, - "c2": 5.881161313443491, - "c3": 5.81070094491065, - "c4": 5.142577114202625, - "c5": 5.614281462661259, - "c6": 5.572268058196928, - "c7": 5.4094966538723 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589464, + "c3": 7.235321312991216, + "c4": 5.788257050392977, + "c5": 4.341192787794728, + "c6": 2.8941285251964883, + "c7": 1.4470642625982486 }, "rgb": [86, 146, 138] }, @@ -205935,23 +205935,23 @@ "year": 1768, "resistanceReported": false, "duration": 41299200, - "curveSeeds": { - "c1": 2.8150820600818065, - "c2": 41.156125207942026, - "c3": -7.963731336411165, - "c4": -11.384084129876626, - "c5": -6.532917220301179, - "c6": -40.044781671817596, - "c7": 14.607606609486169 + "points": { + "c1": 47.505331800810126, + "c2": 11.44499753404898, + "c3": -42.497808007534445, + "c4": -50.02016780747378, + "c5": -5.522821293855621, + "c6": -15.337901530591132, + "c7": -53.27741535681592 }, - "vertexSeeds": { - "c1": 9.37147405673292, - "c2": 9.076495680580553, - "c3": 9.2677272612457, - "c4": 9.185176088833199, - "c5": 9.34204831345509, - "c6": 9.185739164597358, - "c7": 9.329730213657506 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.45353675450761, + "c3": 11.211280628756363, + "c4": 8.969024503005075, + "c5": 6.726768377253826, + "c6": 4.4845122515025375, + "c7": 2.2422561257512887 }, "rgb": [77, 76, 132] }, @@ -205962,23 +205962,23 @@ "year": 1768, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 38.404549364403444, - "c2": 29.871155142107632, - "c3": -47.62015949130534, - "c4": 26.453211850933492, - "c5": -33.45215350326546, - "c6": 51.05244996918736, - "c7": 8.312565077091314 + "points": { + "c1": -9.079900506823002, + "c2": -9.985168015744065, + "c3": -22.339008370299187, + "c4": 5.933993343752917, + "c5": -3.2452330076537805, + "c6": -20.25346686274041, + "c7": -12.691729934700938 }, - "vertexSeeds": { - "c1": 5.366029126750314, - "c2": 5.541007649197858, - "c3": 5.641845304071494, - "c4": 5.888598996074952, - "c5": 5.427599044673695, - "c6": 5.942281730350242, - "c7": 5.675405474848311 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.65464632454924, + "c3": 7.212205270457692, + "c4": 5.769764216366156, + "c5": 4.32732316227462, + "c6": 2.8848821081830707, + "c7": 1.4424410540915353 }, "rgb": [238, 201, 159] }, @@ -205989,23 +205989,23 @@ "year": 1767, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": -36.89650002507814, - "c2": -15.74285417523668, - "c3": -16.079380363250998, - "c4": -3.581624267800052, - "c5": 6.444345065641926, - "c6": -1.2005915487187337, - "c7": -9.594292435794536 + "points": { + "c1": 43.078410843418865, + "c2": 0.44804206679778247, + "c3": -4.625455048348385, + "c4": -50.44821231988511, + "c5": 49.19452726100866, + "c6": 12.948472957629889, + "c7": 13.90535085239074 }, - "vertexSeeds": { - "c1": 5.9413112872706355, - "c2": 5.642638418895026, - "c3": 5.857259020191373, - "c4": 5.823123415277631, - "c5": 5.860089318054884, - "c6": 5.579811376594507, - "c7": 5.6119879229108 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [238, 201, 159] }, @@ -206016,23 +206016,23 @@ "year": 1767, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 3.4789923660779323, - "c2": 12.674265091365704, - "c3": -16.106500076851308, - "c4": 1.7851333885578313, - "c5": 16.29630248978606, - "c6": -12.549332210742037, - "c7": -1.3982648052300366 + "points": { + "c1": -8.88146531418967, + "c2": 8.500612617665283, + "c3": -8.744899154953492, + "c4": -9.182761733795004, + "c5": 9.628828950120901, + "c6": 13.179278664628374, + "c7": 3.9692474098217687 }, - "vertexSeeds": { - "c1": 8.675339186054329, - "c2": 7.459969989105326, - "c3": 7.31325387120253, - "c4": 8.406924546052819, - "c5": 7.316468406270168, - "c6": 7.153424455751646, - "c7": 7.6359089889768725 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099865, + "c3": 10.402219140083215, + "c4": 8.321775312066576, + "c5": 6.241331484049927, + "c6": 4.160887656033288, + "c7": 2.0804438280166484 }, "rgb": [222, 0, 59] }, @@ -206043,23 +206043,23 @@ "year": 1767, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": -11.063684582970957, - "c2": -40.4212144797014, - "c3": 17.951271979910963, - "c4": -34.92027802714686, - "c5": -37.95199160363297, - "c6": 36.77617741226971, - "c7": -14.611080843737568 + "points": { + "c1": -30.903642640299342, + "c2": 10.75488829298196, + "c3": -38.415944318011874, + "c4": 5.637660516994821, + "c5": -38.78562540631012, + "c6": 1.773761962626594, + "c7": 49.169324172331436 }, - "vertexSeeds": { - "c1": 6.437440486164094, - "c2": 6.554667455125124, - "c3": 6.409314900492823, - "c4": 6.517565432392097, - "c5": 6.396858544811345, - "c6": 6.416002385649594, - "c7": 6.471759169030471 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876572, + "c3": 7.975034674063786, + "c4": 6.380027739251036, + "c5": 4.785020804438286, + "c6": 3.1900138696255005, + "c7": 1.5950069348127502 }, "rgb": [222, 0, 59] }, @@ -206070,23 +206070,23 @@ "year": 1767, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": 6.814155057005259, - "c2": 15.055826978394272, - "c3": -36.01830741603179, - "c4": -15.50421321965834, - "c5": 40.7420050093122, - "c6": -29.50977417143786, - "c7": -27.042563496346553 + "points": { + "c1": -17.499627697657594, + "c2": -0.41005553823976726, + "c3": 47.12528924224845, + "c4": 12.001779085526273, + "c5": -0.5111246109218897, + "c6": 1.0084887215633103, + "c7": -3.2601345823756915 }, - "vertexSeeds": { - "c1": 5.702788394270355, - "c2": 5.339680421299915, - "c3": 5.589866090685124, - "c4": 5.594378755511157, - "c5": 5.776176524723523, - "c6": 5.791303191270735, - "c7": 5.374143856948579 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206658, + "c3": 6.934812760055468, + "c4": 5.547850208044379, + "c5": 4.16088765603329, + "c6": 2.773925104022201, + "c7": 1.3869625520110893 }, "rgb": [77, 76, 132] }, @@ -206097,23 +206097,23 @@ "year": 1767, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 28.599130395857124, - "c2": 25.07530028973767, - "c3": -22.454256834983674, - "c4": 12.979290439187444, - "c5": 11.141103474067044, - "c6": 24.07400712220835, - "c7": 23.29871594238108 + "points": { + "c1": 25.146371116573555, + "c2": -9.377271749192783, + "c3": 10.097560669899124, + "c4": 29.728544983163765, + "c5": 21.199444842268676, + "c6": 5.432885480108638, + "c7": 28.644693784379285 }, - "vertexSeeds": { - "c1": 2.391721488833077, - "c2": 2.318506724615532, - "c3": 2.4128366280074482, - "c4": 2.3948577240410716, - "c5": 2.3132717219623635, - "c6": 2.4158232585271167, - "c7": 2.4049191454669177 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679583, + "c3": 2.912621359223305, + "c4": 2.330097087378642, + "c5": 1.7475728155339791, + "c6": 1.1650485436893259, + "c7": 0.5825242718446629 }, "rgb": [222, 0, 59] }, @@ -206124,23 +206124,23 @@ "year": 1767, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -32.460940545541746, - "c2": -14.348294236585712, - "c3": 30.601250321718595, - "c4": -8.76785961563549, - "c5": -7.37774968331658, - "c6": 2.287701833453923, - "c7": 5.096199600402116 + "points": { + "c1": 2.948708197663592, + "c2": -18.20663606265706, + "c3": -27.87954583907086, + "c4": -0.816377635978796, + "c5": 16.966070827956962, + "c6": 12.26191710996099, + "c7": -7.388621867311592 }, - "vertexSeeds": { - "c1": 1.3444330972846041, - "c2": 1.4058528311525942, - "c3": 1.4074650777826156, - "c4": 1.3828331180717286, - "c5": 1.4479078219240165, - "c6": 1.4412302306901246, - "c7": 1.4752696990132672 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.1914008321775316, + "c3": 1.8261673601479438, + "c4": 1.4609338881183558, + "c5": 1.0957004160887678, + "c6": 0.730466944059176, + "c7": 0.365233472029588 }, "rgb": [238, 201, 159] }, @@ -206151,23 +206151,23 @@ "year": 1767, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 4.8078941773768165, - "c2": -25.4183110263131, - "c3": -26.671364313671415, - "c4": -30.75135707402068, - "c5": 30.636346057060493, - "c6": -25.68626274387323, - "c7": 20.68567924618621 + "points": { + "c1": 28.75153104250188, + "c2": 29.230476714159536, + "c3": 19.898167551928786, + "c4": 0.3065823063193349, + "c5": -37.1847912360132, + "c6": -6.7451620766865865, + "c7": -35.986898320987216 }, - "vertexSeeds": { - "c1": 5.987183839569928, - "c2": 6.28166473124938, - "c3": 6.226066583980879, - "c4": 6.062424552091819, - "c5": 6.222961791732464, - "c6": 6.284375077450856, - "c7": 6.288099370680748 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233022, + "c3": 7.605177993527504, + "c4": 6.084142394822016, + "c5": 4.563106796116497, + "c6": 3.042071197411008, + "c7": 1.521035598705519 }, "rgb": [77, 76, 132] }, @@ -206178,23 +206178,23 @@ "year": 1767, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -41.26557427290997, - "c2": -0.9671049037570896, - "c3": 25.429213237563843, - "c4": -22.23183055225972, - "c5": 15.1693141454234, - "c6": -36.65789581631502, - "c7": -0.5202950656666658 + "points": { + "c1": -16.56421418944832, + "c2": 35.432236954627754, + "c3": -5.375721134528753, + "c4": 41.11014080282838, + "c5": -11.900503221669041, + "c6": 4.270691300555811, + "c7": -37.493867223233224 }, - "vertexSeeds": { - "c1": 2.3849555268840077, - "c2": 2.147309529983772, - "c3": 2.1554334732738076, - "c4": 2.1863256184626634, - "c5": 2.2670693991018465, - "c6": 2.321323305323429, - "c7": 2.379138414606471 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [222, 0, 59] }, @@ -206205,23 +206205,23 @@ "year": 1767, "resistanceReported": false, "duration": 5702400, - "curveSeeds": { - "c1": -3.726284427974548, - "c2": 5.2778817496931545, - "c3": -3.6900289878204156, - "c4": -14.366162783866727, - "c5": -11.518685009657258, - "c6": -1.8241485966818551, - "c7": 15.086543020636793 + "points": { + "c1": 13.922099886835298, + "c2": -1.3416016820394638, + "c3": 10.226208664461414, + "c4": -0.8045488397240703, + "c5": -14.930446672475885, + "c6": 1.8637466605299053, + "c7": 9.127719559107163 }, - "vertexSeeds": { - "c1": 4.223381590696994, - "c2": 4.198260240615405, - "c3": 4.199593402480799, - "c4": 4.197794721498424, - "c5": 4.214871282003721, - "c6": 4.223035314764791, - "c7": 4.2108437611135665 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.0748959778085885, + "c3": 5.062413314840517, + "c4": 4.049930651872406, + "c5": 3.0374479889042942, + "c6": 2.0249653259361824, + "c7": 1.0124826629681114 }, "rgb": [77, 76, 132] }, @@ -206232,23 +206232,23 @@ "year": 1767, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 33.08635137756663, - "c2": -7.824107822406191, - "c3": 38.1738011193484, - "c4": -9.403810073970213, - "c5": -36.65656867166234, - "c6": -27.064365003044784, - "c7": 16.681638696093707 + "points": { + "c1": 26.935698967962637, + "c2": 31.824612623306635, + "c3": 28.216683596548194, + "c4": 25.32914994521667, + "c5": -4.556617666419768, + "c6": -7.753895386446551, + "c7": 21.218681530838936 }, - "vertexSeeds": { - "c1": 7.393659100235746, - "c2": 6.297292260303106, - "c3": 6.544777170255093, - "c4": 7.148354421381619, - "c5": 6.919000368419863, - "c6": 6.281520904294879, - "c7": 6.820243482741679 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.87656033287101, + "c4": 7.101248266296805, + "c5": 5.325936199722601, + "c6": 3.5506241331484083, + "c7": 1.775312066574193 }, "rgb": [86, 146, 138] }, @@ -206259,23 +206259,23 @@ "year": 1767, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -14.98779055668663, - "c2": 2.160378684883188, - "c3": -11.732644018235959, - "c4": -6.62961580036457, - "c5": -11.800049874009783, - "c6": -11.612798654813624, - "c7": -12.041877442469822 + "points": { + "c1": 0.4917645379359037, + "c2": 0.33010318972275954, + "c3": -6.0503513785568686, + "c4": 6.1813382994213235, + "c5": -12.130977660527442, + "c6": -5.980048942112374, + "c7": 10.096402748561964 }, - "vertexSeeds": { - "c1": 3.2502336693169434, - "c2": 3.1001828608171733, - "c3": 3.0359068194485044, - "c4": 3.0222875458038945, - "c5": 2.9041309185418025, - "c6": 3.227043988811896, - "c7": 3.2062124467913464 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -206286,23 +206286,23 @@ "year": 1767, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 18.323011049829027, - "c2": -18.922371063269257, - "c3": 30.82803228329456, - "c4": 1.2763348684198235, - "c5": 15.364067953802973, - "c6": 5.3696666558797475, - "c7": -21.89770396899483 + "points": { + "c1": 11.129881804724072, + "c2": -2.689143760405699, + "c3": -16.571808916944782, + "c4": -11.283973816016527, + "c5": -17.609960533976892, + "c6": 19.51514437036319, + "c7": 39.47113988110162 }, - "vertexSeeds": { - "c1": 7.0266254766010245, - "c2": 6.835915726589763, - "c3": 8.041264548857368, - "c4": 8.056804997586216, - "c5": 6.9920289426084965, - "c6": 7.317027199011573, - "c7": 8.336369827762649 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.95561719833565, + "c3": 9.96301433194637, + "c4": 7.9704114655571, + "c5": 5.97780859916782, + "c6": 3.98520573277855, + "c7": 1.9926028663892799 }, "rgb": [238, 201, 159] }, @@ -206313,23 +206313,23 @@ "year": 1768, "resistanceReported": false, "duration": 58752000, - "curveSeeds": { - "c1": -52.71036594714147, - "c2": 38.60281018676261, - "c3": -1.893721701470838, - "c4": -60.02558555204177, - "c5": -45.54784511481208, - "c6": 10.625654774761557, - "c7": -0.1841818735591545 + "points": { + "c1": -76.23789742269523, + "c2": 62.794258726252835, + "c3": 30.527088289487523, + "c4": 8.76817550023759, + "c5": 15.272724049930133, + "c6": 51.7437813828853, + "c7": 25.171536552739028 }, - "vertexSeeds": { - "c1": 1.864123486348936, - "c2": 1.7931298007648773, - "c3": 1.9215958319607436, - "c4": 1.7848762660876583, - "c5": 1.8527060964346438, - "c6": 1.8791090342521592, - "c7": 1.859120315109275 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.801664355062413, + "c3": 2.3347202958853432, + "c4": 1.8677762367082784, + "c5": 1.4008321775312085, + "c6": 0.9338881183541392, + "c7": 0.4669440591770696 }, "rgb": [58, 15, 49] }, @@ -206340,23 +206340,23 @@ "year": 1768, "resistanceReported": false, "duration": 46569600, - "curveSeeds": { - "c1": 33.133269237586426, - "c2": 36.98153033691667, - "c3": 21.583512785044128, - "c4": -27.04767145284535, - "c5": -54.56003505326368, - "c6": -18.113698523730697, - "c7": 51.52239269126692 + "points": { + "c1": 27.341778948061837, + "c2": 47.31139116289851, + "c3": -16.015925076967186, + "c4": 6.127804043576326, + "c5": -13.061185003775684, + "c6": -44.3953045528076, + "c7": -41.728902029051234 }, - "vertexSeeds": { - "c1": 6.329386772959166, - "c2": 6.121251387559196, - "c3": 6.328560552031098, - "c4": 6.291384885223207, - "c5": 6.461759512539273, - "c6": 6.080934246396427, - "c7": 6.11400446653698 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474328, + "c3": 7.743874248728622, + "c4": 6.195099398982887, + "c5": 4.646324549237179, + "c6": 3.0975496994914433, + "c7": 1.5487748497457074 }, "rgb": [77, 76, 132] }, @@ -206367,23 +206367,23 @@ "year": 1768, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": 53.82489992275999, - "c2": 12.82967319654606, - "c3": -8.012054369993002, - "c4": -42.49162802845285, - "c5": -42.59442640849512, - "c6": -9.31035144854686, - "c7": -11.416247984612191 + "points": { + "c1": 34.84806174133961, + "c2": -28.332307364804077, + "c3": -20.015581646994946, + "c4": 35.02152927596455, + "c5": 12.941958117474535, + "c6": -13.219852121546417, + "c7": 46.3549217658686 }, - "vertexSeeds": { - "c1": 2.3952557991436416, - "c2": 2.5222516645227997, - "c3": 2.457125553308997, - "c4": 2.495312457890689, - "c5": 2.40390889161552, - "c6": 2.356464245705223, - "c7": 2.488550111058219 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429957, + "c3": 3.120665742024962, + "c4": 2.496532593619968, + "c5": 1.8723994452149786, + "c6": 1.248266296809984, + "c7": 0.6241331484049945 }, "rgb": [238, 201, 159] }, @@ -206394,23 +206394,23 @@ "year": 1767, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -3.2731987011602186, - "c2": -37.875267187333954, - "c3": 28.35570761593712, - "c4": -12.244637110994098, - "c5": -30.95136901779084, - "c6": -44.26398687874741, - "c7": -1.9539715229361931 + "points": { + "c1": -40.14539458705456, + "c2": 18.89104708223354, + "c3": -38.099385103080266, + "c4": -27.367609524546403, + "c5": 1.0410793543034416, + "c6": 9.079169991124026, + "c7": -26.28363669396215 }, - "vertexSeeds": { - "c1": 4.411399493524671, - "c2": 4.119344864447339, - "c3": 3.9020334809046666, - "c4": 4.166710571423264, - "c5": 3.988036347594644, - "c6": 3.87736608199482, - "c7": 4.403716747119888 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [86, 146, 138] }, @@ -206421,23 +206421,23 @@ "year": 1767, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -22.993382466175728, - "c2": 29.57300136822458, - "c3": 17.019328420960605, - "c4": 30.599440558839234, - "c5": 37.1597268665454, - "c6": 43.80494336646986, - "c7": 46.04755900195212 + "points": { + "c1": -40.72453171693206, + "c2": 49.74834866617002, + "c3": -23.384704325362964, + "c4": -44.49537186677725, + "c5": -20.09213313972819, + "c6": 40.73623874283126, + "c7": 47.10861401272811 }, - "vertexSeeds": { - "c1": 4.032397430649764, - "c2": 4.121731195497935, - "c3": 4.013472666896557, - "c4": 4.130686982209719, - "c5": 4.25750196062987, - "c6": 4.0096977951386075, - "c7": 4.083858988046839 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452149, + "c3": 5.4322699953767914, + "c4": 4.3458159963014324, + "c5": 3.2593619972260743, + "c6": 2.1729079981507162, + "c7": 1.0864539990753581 }, "rgb": [86, 146, 138] }, @@ -206448,23 +206448,23 @@ "year": 1767, "resistanceReported": false, "duration": 4665600, - "curveSeeds": { - "c1": 13.174825920619803, - "c2": 8.633751903420062, - "c3": -5.87388691577363, - "c4": 1.1627680197322299, - "c5": 10.431015077344284, - "c6": 0.005738807516683764, - "c7": -0.8608293667935758 + "points": { + "c1": -12.96504973973219, + "c2": 10.31788460737295, + "c3": 15.580096391683462, + "c4": 0.47608757701064874, + "c5": 8.810661506656906, + "c6": 13.80154024574923, + "c7": -3.424616520667831 }, - "vertexSeeds": { - "c1": 5.0513132109444525, - "c2": 5.719919437803264, - "c3": 6.088694309194715, - "c4": 5.382144220292308, - "c5": 5.063779939482881, - "c6": 4.870176107115339, - "c7": 5.515862446046577 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061023, + "c4": 6.102635228848821, + "c5": 4.576976421636618, + "c6": 3.0513176144244087, + "c7": 1.5256588072122061 }, "rgb": [77, 76, 132] }, @@ -206475,23 +206475,23 @@ "year": 1767, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -5.461665528089725, - "c2": -0.3489179333003207, - "c3": -3.0385942902667438, - "c4": 5.346275380241835, - "c5": -31.662572018743745, - "c6": 29.702908202642696, - "c7": 21.783037058209807 + "points": { + "c1": 11.655300625436055, + "c2": 42.30934132495744, + "c3": -21.754623970347676, + "c4": -44.249194578648016, + "c5": 32.53416375745184, + "c6": 40.18994995109757, + "c7": -35.086396126799656 }, - "vertexSeeds": { - "c1": 1.2146767308230586, - "c2": 1.1718006225657567, - "c3": 1.227758970718204, - "c4": 1.1710972386676208, - "c5": 1.1079862762885841, - "c6": 1.2118725411786095, - "c7": 1.2313866217731249 + "offsets": { + "c1": 2.1359223300970873, + "c2": 1.8307905686546468, + "c3": 1.5256588072122044, + "c4": 1.220527045769764, + "c5": 0.9153952843273234, + "c6": 0.6102635228848828, + "c7": 0.3051317614424405 }, "rgb": [86, 146, 138] }, @@ -206502,23 +206502,23 @@ "year": 1767, "resistanceReported": false, "duration": 4320000, - "curveSeeds": { - "c1": -0.03277996742543543, - "c2": -2.648059584508001, - "c3": -13.722861588777057, - "c4": -4.05001853955139, - "c5": 11.727853059241415, - "c6": -0.1141234725749456, - "c7": -14.159486772587229 + "points": { + "c1": -6.566769009659994, + "c2": -1.6087114776457803, + "c3": 10.79376277753805, + "c4": 4.324393159959083, + "c5": 6.176896536574148, + "c6": -4.256151675502711, + "c7": -0.1268413211487669 }, - "vertexSeeds": { - "c1": 3.200008880331019, - "c2": 2.9853758602152674, - "c3": 3.052336703850463, - "c4": 3.0284355639039395, - "c5": 3.1886632106308257, - "c6": 3.092200082806038, - "c7": 2.9324056634415165 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -206529,23 +206529,23 @@ "year": 1767, "resistanceReported": false, "duration": 4147200, - "curveSeeds": { - "c1": -1.0743920175139223, - "c2": -6.668052158006062, - "c3": -2.8445961835933833, - "c4": 4.644646680753645, - "c5": 7.483406526067906, - "c6": 6.711893253577156, - "c7": 2.5447902604738886 + "points": { + "c1": 2.479041883467847, + "c2": -14.44462465725214, + "c3": -9.706468382482491, + "c4": -11.384980987106026, + "c5": 12.9834531792248, + "c6": 9.882486978633114, + "c7": 10.654463672093481 }, - "vertexSeeds": { - "c1": 5.726510282336408, - "c2": 5.679131277932439, - "c3": 5.626724198077114, - "c4": 5.519714809552398, - "c5": 5.607636634770813, - "c6": 5.553603872875099, - "c7": 5.54029254658821 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905704, + "c3": 6.842348589921399, + "c4": 5.473878871937137, + "c5": 4.105409153952832, + "c6": 2.7369394359685684, + "c7": 1.3684697179843048 }, "rgb": [58, 15, 49] }, @@ -206556,23 +206556,23 @@ "year": 1767, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": 18.430297171510453, - "c2": -3.3227226331718676, - "c3": -18.730753377539322, - "c4": 21.444655627791782, - "c5": 19.338765979345446, - "c6": -3.859373790376395, - "c7": 1.7601433849917782 + "points": { + "c1": 14.190341508540612, + "c2": 23.064374298359418, + "c3": -16.753854916144192, + "c4": -14.590493608223422, + "c5": -24.018784383883748, + "c6": 10.60872510243702, + "c7": -16.78680950292773 }, - "vertexSeeds": { - "c1": 3.747465686047016, - "c2": 3.783847616205752, - "c3": 3.795097745344772, - "c4": 3.7625023594767684, - "c5": 3.726352579542409, - "c6": 3.7926522314303126, - "c7": 3.7432588775659634 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044375, + "c3": 4.623208506703654, + "c4": 3.6985668053629173, + "c5": 2.773925104022196, + "c6": 1.8492834026814586, + "c7": 0.9246417013407375 }, "rgb": [86, 146, 138] }, @@ -206583,23 +206583,23 @@ "year": 1767, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": -2.84660584776859, - "c2": 2.5088751150902944, - "c3": 0.49905894265829254, - "c4": 3.464611271148293, - "c5": -6.962341710029267, - "c6": 1.7312818770726466, - "c7": 10.572273522207148 + "points": { + "c1": -9.116420850723491, + "c2": -3.39652350539672, + "c3": 12.722980501740317, + "c4": 15.051062050567605, + "c5": -1.5140153352869863, + "c6": -16.01371812245404, + "c7": -11.220265095546454 }, - "vertexSeeds": { - "c1": 2.4383865178694584, - "c2": 2.4995628307430113, - "c3": 2.4298327138125444, - "c4": 2.501926259440469, - "c5": 2.463329886957567, - "c6": 2.4489577238988223, - "c7": 2.448543150620199 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228836, + "c3": 3.0050855293573786, + "c4": 2.404068423485891, + "c5": 1.803051317614418, + "c6": 1.2020342117429454, + "c7": 0.6010171058714727 }, "rgb": [77, 76, 132] }, @@ -206610,23 +206610,23 @@ "year": 1767, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": 3.158937792385185, - "c2": 8.195146917208184, - "c3": -7.429923832935644, - "c4": -5.916444437449588, - "c5": 6.37113103503636, - "c6": -4.138140779939931, - "c7": 0.423838446094976 + "points": { + "c1": 8.194374385900776, + "c2": 15.600128191443012, + "c3": -12.214884844607457, + "c4": 4.738128274677287, + "c5": -5.344900993884634, + "c6": -15.572097097771978, + "c7": 15.14740371508557 }, - "vertexSeeds": { - "c1": 3.2465426717437462, - "c2": 3.3016146701089, - "c3": 3.253308848594923, - "c4": 3.2573193882019833, - "c5": 3.245817485057591, - "c6": 3.315476240218787, - "c7": 3.2914331030269173 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918165, + "c3": 3.975959315765133, + "c4": 3.1807674526121015, + "c5": 2.3855755894590693, + "c6": 1.5903837263060638, + "c7": 0.7951918631530319 }, "rgb": [238, 201, 159] }, @@ -206637,23 +206637,23 @@ "year": 1768, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 50.0294077346644, - "c2": 38.04505784152488, - "c3": 48.57709179797486, - "c4": -7.382522925419508, - "c5": -14.31541144482744, - "c6": 48.35463797842989, - "c7": 30.4849240244518 + "points": { + "c1": 51.03067631132278, + "c2": 7.572506588202145, + "c3": -7.584145403800292, + "c4": 28.23983438948568, + "c5": 48.706827501575674, + "c6": 30.620361621557493, + "c7": -6.673769346950365 }, - "vertexSeeds": { - "c1": 6.72279792746114, - "c2": 6.72279792746114, - "c3": 6.72279792746114, - "c4": 6.72279792746114, - "c5": 6.72279792746114, - "c6": 6.72279792746114, - "c7": 6.72279792746114 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -206664,23 +206664,23 @@ "year": 1768, "resistanceReported": false, "duration": 45964800, - "curveSeeds": { - "c1": -29.051729355161193, - "c2": -20.323144343046224, - "c3": 47.51632163122818, - "c4": 14.326448149963852, - "c5": -55.27372585522727, - "c6": 53.95837072528573, - "c7": -8.3015695961656 + "points": { + "c1": -9.057717614605956, + "c2": -52.34688603061152, + "c3": -32.50078213919072, + "c4": -60.85723489423629, + "c5": -19.625507780120095, + "c6": -31.177625021397063, + "c7": 11.911227936171443 }, - "vertexSeeds": { - "c1": 6.7219978911727845, - "c2": 6.559083264519456, - "c3": 6.302002930933985, - "c4": 6.374418314727498, - "c5": 6.5872396568146865, - "c6": 6.299845891996369, - "c7": 6.511069320716461 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997229, + "c3": 8.044382801664362, + "c4": 6.435506241331495, + "c5": 4.8266296809986, + "c6": 3.217753120665734, + "c7": 1.608876560332867 }, "rgb": [58, 15, 49] }, @@ -206691,23 +206691,23 @@ "year": 1768, "resistanceReported": false, "duration": 48470400, - "curveSeeds": { - "c1": 41.573188061316216, - "c2": 25.459406655153273, - "c3": 33.573556992219736, - "c4": 50.50452306267586, - "c5": -41.51692441046251, - "c6": -5.3511048285567, - "c7": 22.065231302395503 + "points": { + "c1": 24.697753437205634, + "c2": -39.51597151014233, + "c3": 56.894156182038486, + "c4": 38.68895373657644, + "c5": 9.2028707625106, + "c6": -12.460748932505105, + "c7": -52.29815114768182 }, - "vertexSeeds": { - "c1": 5.304475590056707, - "c2": 5.228444392641798, - "c3": 5.479932507619587, - "c4": 5.229999301296697, - "c5": 5.229960397500186, - "c6": 5.213314240717777, - "c7": 5.323626103660446 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543687, + "c3": 6.634304207119734, + "c4": 5.307443365695781, + "c5": 3.980582524271857, + "c6": 2.653721682847905, + "c7": 1.3268608414239524 }, "rgb": [58, 15, 49] }, @@ -206718,23 +206718,23 @@ "year": 1767, "resistanceReported": false, "duration": 3715200, - "curveSeeds": { - "c1": -1.1751731524202143, - "c2": -9.020585449556425, - "c3": 6.966878436327024, - "c4": 6.137955017463467, - "c5": 4.602233719546044, - "c6": 10.847828664434159, - "c7": -0.6431349465813021 + "points": { + "c1": -10.980493479587647, + "c2": -8.193960944046891, + "c3": 9.099614439161128, + "c4": 14.725004915118761, + "c5": 2.7486059500234123, + "c6": -5.502282043711686, + "c7": -8.484776539793337 }, - "vertexSeeds": { - "c1": 6.677278827309254, - "c2": 6.428396889417237, - "c3": 6.758506133120762, - "c4": 6.793122547754402, - "c5": 6.380401929464537, - "c6": 6.482215556923479, - "c7": 6.387616624527006 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117896, + "c3": 8.113730929264918, + "c4": 6.49098474341194, + "c5": 4.8682385575589615, + "c6": 3.245492371705956, + "c7": 1.622746185852978 }, "rgb": [58, 15, 49] }, @@ -206745,23 +206745,23 @@ "year": 1767, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 2.0811100619628213, - "c2": -3.1349430267429277, - "c3": -16.684121578373713, - "c4": 22.412793958990786, - "c5": -12.2841214864544, - "c6": 26.482378117128942, - "c7": -11.41754969498735 + "points": { + "c1": 4.0392948740657175, + "c2": -1.0305292497001943, + "c3": 3.418364822231439, + "c4": 2.7551554343787856, + "c5": 17.702159856384803, + "c6": 11.888066357637662, + "c7": -17.86559320632386 }, - "vertexSeeds": { - "c1": 5.809473264409313, - "c2": 6.090103123545943, - "c3": 6.143654092587251, - "c4": 6.113553809964383, - "c5": 6.0286470029208115, - "c6": 5.85736428324271, - "c7": 6.016055888548378 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594549, + "c4": 6.121128062875629, + "c5": 4.590846047156721, + "c6": 3.0605640314378144, + "c7": 1.5302820157189072 }, "rgb": [238, 201, 159] }, @@ -206772,23 +206772,23 @@ "year": 1768, "resistanceReported": true, "duration": 34560000, - "curveSeeds": { - "c1": 23.078257078169507, - "c2": 25.013611557365003, - "c3": 37.03856829179107, - "c4": -19.231303108008895, - "c5": -36.74283066508058, - "c6": 28.806457488998994, - "c7": 32.37100185925204 + "points": { + "c1": -28.042026197128365, + "c2": -20.12066081447778, + "c3": -34.27539332109789, + "c4": -43.38917395078043, + "c5": -42.63540717734316, + "c6": 2.831022612222597, + "c7": 30.41783643497667 }, - "vertexSeeds": { - "c1": 5.829769224600734, - "c2": 5.873423739730317, - "c3": 5.8822596455032965, - "c4": 5.8636482872842155, - "c5": 5.855831978035483, - "c6": 5.851740654109847, - "c7": 5.851983414132776 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622741, + "c3": 7.027276930189632, + "c4": 5.621821544151668, + "c5": 4.216366158113705, + "c6": 2.810910772075741, + "c7": 1.4054553860379635 }, "rgb": [238, 201, 159] }, @@ -206799,23 +206799,23 @@ "year": 1767, "resistanceReported": false, "duration": 2678400, - "curveSeeds": { - "c1": -0.25517751755909046, - "c2": 6.700492469455524, - "c3": -11.051340377807152, - "c4": -6.335570802764233, - "c5": 6.664143445762255, - "c6": -4.867484678174815, - "c7": -9.084779981488747 + "points": { + "c1": -0.08657962277641751, + "c2": -10.084843780377522, + "c3": 7.461228621437213, + "c4": 7.111738381504649, + "c5": 10.679289908777223, + "c6": -0.4235548094441395, + "c7": -10.853584578971262 }, - "vertexSeeds": { - "c1": 1.5854241474548967, - "c2": 1.478946879385964, - "c3": 1.3074105943163272, - "c4": 1.4503688721401484, - "c5": 1.4216161119009065, - "c6": 1.4715959833747048, - "c7": 1.5387806198330258 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [58, 15, 49] }, @@ -206826,23 +206826,23 @@ "year": 1767, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 30.917461289410625, - "c2": -36.02038143611853, - "c3": -7.5089116937395595, - "c4": 33.69318966949909, - "c5": -12.206612117305717, - "c6": 7.710708346617132, - "c7": -11.447844938417319 + "points": { + "c1": 11.893490265918018, + "c2": -30.70439886130761, + "c3": 16.448159950737455, + "c4": 8.661267540059612, + "c5": -31.827895404384854, + "c6": -14.096588052670473, + "c7": 3.382403341424272 }, - "vertexSeeds": { - "c1": 4.611912373625343, - "c2": 4.82600078280276, - "c3": 4.714891987943782, - "c4": 4.490325625869657, - "c5": 4.447710605972196, - "c6": 4.553857803655868, - "c7": 5.195049496501259 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -206853,23 +206853,23 @@ "year": 1768, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": -14.992962368205333, - "c2": -45.33060835525477, - "c3": 46.61742355466204, - "c4": -36.38812128811881, - "c5": 20.504084087579187, - "c6": -20.400526025892283, - "c7": -55.46775702277926 + "points": { + "c1": 21.832877923242364, + "c2": 28.659321941931935, + "c3": 20.214073503678122, + "c4": 8.069531090973243, + "c5": -16.66195074878052, + "c6": -57.95703414354018, + "c7": 27.19751643882499 }, - "vertexSeeds": { - "c1": 7.6686464739944356, - "c2": 8.171139678628862, - "c3": 7.9380528088929925, - "c4": 7.939929722378559, - "c5": 8.135295174414336, - "c6": 7.8775983644560235, - "c7": 7.9851592323993446 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456316, + "c3": 10.032362459546937, + "c4": 8.025889967637537, + "c5": 6.019417475728158, + "c6": 4.012944983818779, + "c7": 2.006472491909379 }, "rgb": [238, 201, 159] }, @@ -206880,23 +206880,23 @@ "year": 1768, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -21.96179396264655, - "c2": -48.26075225863659, - "c3": -4.358664663641115, - "c4": 44.414036275915805, - "c5": -27.545179355549944, - "c6": -13.599887827605649, - "c7": -15.592115827320683 + "points": { + "c1": -19.037645530224317, + "c2": 34.18055083648299, + "c3": -51.33794599411111, + "c4": 41.92014648342244, + "c5": -44.949339497572545, + "c6": 31.47486546953249, + "c7": -6.064234422754794 }, - "vertexSeeds": { - "c1": 9.181551931585473, - "c2": 9.231562472795098, - "c3": 9.132998934567992, - "c4": 9.138097095320175, - "c5": 9.095728759200963, - "c6": 9.188916873306333, - "c7": 9.258195242311002 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.25936199722605, + "c3": 11.049468331021767, + "c4": 8.839574664817397, + "c5": 6.629680998613025, + "c6": 4.419787332408654, + "c7": 2.209893666204371 }, "rgb": [222, 0, 59] }, @@ -206907,23 +206907,23 @@ "year": 1767, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 18.776380933606703, - "c2": -19.839281853918017, - "c3": -15.275939049207969, - "c4": -8.133532653497006, - "c5": -20.340538831749715, - "c6": -1.203020121452166, - "c7": -13.462038011238265 + "points": { + "c1": -26.810360369300124, + "c2": -11.106771824426612, + "c3": -18.252000896995312, + "c4": -30.901712462993544, + "c5": -8.196961264389824, + "c6": -25.10427934247515, + "c7": 18.72956900476762 }, - "vertexSeeds": { - "c1": 7.811054436516261, - "c2": 7.799124309589496, - "c3": 7.436479542158751, - "c4": 7.554949996679294, - "c5": 7.691429943603567, - "c6": 7.532334212133451, - "c7": 7.406466954012076 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732325, + "c3": 9.616273693943596, + "c4": 7.693018955154884, + "c5": 5.769764216366153, + "c6": 3.846509477577442, + "c7": 1.9232547387887304 }, "rgb": [86, 146, 138] }, @@ -206934,23 +206934,23 @@ "year": 1767, "resistanceReported": false, "duration": 2246400, - "curveSeeds": { - "c1": 1.6741080169687859, - "c2": -7.519763652273058, - "c3": -6.515057144907361, - "c4": 0.5675445196383357, - "c5": 4.86155751492079, - "c6": -5.12780874951289, - "c7": 4.671520914301556 + "points": { + "c1": 0.1991442694427885, + "c2": -14.224520119113185, + "c3": -8.061271034200598, + "c4": -3.9557918473882854, + "c5": -12.47650142585158, + "c6": -0.33209519193773573, + "c7": -2.696622006409825 }, - "vertexSeeds": { - "c1": 3.102548590408635, - "c2": 2.9695925739653735, - "c3": 3.089669724378305, - "c4": 2.9025219390814336, - "c5": 3.032538169796938, - "c6": 3.083172848273991, - "c7": 2.95478420133964 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -206961,23 +206961,23 @@ "year": 1768, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": -23.96069810885352, - "c2": -40.253832240817914, - "c3": 12.333349241662681, - "c4": -32.06869833174124, - "c5": 40.99791449576063, - "c6": 43.48912396118987, - "c7": -2.4944443814051738 + "points": { + "c1": 18.706414150255846, + "c2": 49.5906696914199, + "c3": -14.651178591791307, + "c4": 41.928495889817064, + "c5": -19.879301759334595, + "c6": -16.957271836401908, + "c7": -2.0328718392225724 }, - "vertexSeeds": { - "c1": 6.080200673050353, - "c2": 6.121776914274881, - "c3": 6.5323773775739244, - "c4": 6.3820995867363735, - "c5": 6.454179963816847, - "c6": 6.3716517944001065, - "c7": 6.215248843836121 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635239, + "c3": 7.836338418862687, + "c4": 6.2690707350901596, + "c5": 4.701803051317608, + "c6": 3.1345353675450798, + "c7": 1.5672676837725514 }, "rgb": [86, 146, 138] }, @@ -206988,23 +206988,23 @@ "year": 1767, "resistanceReported": false, "duration": 1555200, - "curveSeeds": { - "c1": 3.1717556332694166, - "c2": 10.767117914255437, - "c3": -9.830282360235815, - "c4": 11.539601278824072, - "c5": -4.259009330024116, - "c6": -1.5897865641178885, - "c7": -3.952508449322637 + "points": { + "c1": 13.390056591191694, + "c2": -11.958208873466186, + "c3": 4.090786990557184, + "c4": -5.752504114912999, + "c5": 9.834735293282595, + "c6": 9.649404361530639, + "c7": -4.807775604763762 }, - "vertexSeeds": { - "c1": 3.849273779815929, - "c2": 4.4108654542149335, - "c3": 4.1082905259294655, - "c4": 4.363288598436653, - "c5": 4.1754629203989575, - "c6": 3.8820922798558386, - "c7": 4.175390603787989 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -207015,23 +207015,23 @@ "year": 1767, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -12.244636361850247, - "c2": -22.791189568950617, - "c3": 12.476290964508983, - "c4": -35.463197734398776, - "c5": -23.081407398851923, - "c6": 42.89437728530592, - "c7": -32.65981890793675 + "points": { + "c1": -2.6097604061969406, + "c2": 19.649251515469203, + "c3": -5.495576960488464, + "c4": -12.140494920217193, + "c5": -36.16778932364441, + "c6": 45.73239623753349, + "c7": -12.231706674724514 }, - "vertexSeeds": { - "c1": 1.0398871112361112, - "c2": 1.1096620934054022, - "c3": 1.1711357464938634, - "c4": 1.0647836609172705, - "c5": 1.0666320346480949, - "c6": 1.0968723141476668, - "c7": 1.1488089886947221 + "offsets": { + "c1": 2.0388349514563107, + "c2": 1.747572815533981, + "c3": 1.4563106796116498, + "c4": 1.16504854368932, + "c5": 0.8737864077669905, + "c6": 0.5825242718446608, + "c7": 0.29126213592232963 }, "rgb": [238, 201, 159] }, @@ -207042,23 +207042,23 @@ "year": 1768, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": 20.069043048749265, - "c2": 47.78438095508595, - "c3": -20.461756444667614, - "c4": 15.066508021242178, - "c5": 42.898229761551946, - "c6": -47.00353696463439, - "c7": 23.700117147471843 + "points": { + "c1": -30.72662379720609, + "c2": -46.0809238341348, + "c3": 30.783682427093567, + "c4": -17.864777231923227, + "c5": 50.75889723768785, + "c6": 2.5346624105788393, + "c7": 6.106158448172721 }, - "vertexSeeds": { - "c1": 2.2374392804898, - "c2": 2.111528362016525, - "c3": 2.0849041641843478, - "c4": 2.164899839769388, - "c5": 2.0656629013253935, - "c6": 1.925938522938085, - "c7": 2.1963282351988025 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.3009708737864085, + "c3": 2.750809061488672, + "c4": 2.200647249190938, + "c5": 1.6504854368932043, + "c6": 1.100323624595468, + "c7": 0.550161812297734 }, "rgb": [58, 15, 49] }, @@ -207069,23 +207069,23 @@ "year": 1767, "resistanceReported": false, "duration": 864000, - "curveSeeds": { - "c1": 3.5917964619555605, - "c2": -0.8388622300459669, - "c3": -6.609875233445179, - "c4": -1.1667562485322094, - "c5": -8.541486834257931, - "c6": 8.653120199936351, - "c7": 9.59041655250367 + "points": { + "c1": -2.988568809684663, + "c2": -6.310764339530461, + "c3": 10.600482393608383, + "c4": 8.671441289385724, + "c5": 2.5199226319488535, + "c6": 1.116960421262604, + "c7": 1.6664105294188793 }, - "vertexSeeds": { - "c1": 3.0918065817247653, - "c2": 3.051173079252948, - "c3": 3.0558513235786102, - "c4": 3.066622941307497, - "c5": 3.0411786043767273, - "c6": 3.0568631619055493, - "c7": 3.1232815442311157 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556174, + "c3": 3.767914932963482, + "c4": 3.014331946370789, + "c5": 2.260748959778078, + "c6": 1.5071659731853853, + "c7": 0.7535829865926926 }, "rgb": [58, 15, 49] }, @@ -207096,23 +207096,23 @@ "year": 1767, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 25.849282105569074, - "c2": 4.128313996092139, - "c3": 4.25242393100644, - "c4": 1.1322997595818478, - "c5": -27.15095022080586, - "c6": -35.044849662258905, - "c7": -40.73621709745909 + "points": { + "c1": -37.82588089911125, + "c2": 39.903158858237916, + "c3": 38.50624032294495, + "c4": 30.986983778715754, + "c5": 18.003839068863556, + "c6": -27.338101826840273, + "c7": -1.248217057335232 }, - "vertexSeeds": { - "c1": 6.79437566166566, - "c2": 7.04130220287544, - "c3": 7.109524409655635, - "c4": 6.796491733733465, - "c5": 7.107303553673513, - "c6": 6.969602827655254, - "c7": 7.008101403196302 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.20804438280166, + "c3": 8.50670365233471, + "c4": 6.805362921867761, + "c5": 5.104022191400848, + "c6": 3.402681460933899, + "c7": 1.7013407304669494 }, "rgb": [222, 0, 59] }, @@ -207123,23 +207123,23 @@ "year": 1767, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -32.179780907293434, - "c2": -36.47607430356772, - "c3": 16.730278385797213, - "c4": -39.02276827811838, - "c5": -35.60760730446195, - "c6": 17.52046628761868, - "c7": -38.280649407029046 + "points": { + "c1": 3.366226435785066, + "c2": -19.180684201197913, + "c3": 37.672760029857265, + "c4": 9.050590480943121, + "c5": 23.885057354307712, + "c6": -11.218638476610767, + "c7": 17.665643878582124 }, - "vertexSeeds": { - "c1": 1.8052059556147408, - "c2": 1.7069598358865057, - "c3": 1.7484441575537213, - "c4": 1.7587582608443348, - "c5": 1.5855400770978212, - "c6": 1.8774313223227577, - "c7": 1.5796091661687304 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221915, + "c3": 2.3116042533518266, + "c4": 1.8492834026814593, + "c5": 1.3869625520110944, + "c6": 0.9246417013407296, + "c7": 0.4623208506703648 }, "rgb": [238, 201, 159] }, @@ -207150,23 +207150,23 @@ "year": 1767, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 27.169620089540658, - "c2": 18.799971165386104, - "c3": 25.828309823316104, - "c4": -31.11153736766378, - "c5": 32.94960916100621, - "c6": -32.78292574250867, - "c7": 10.621235665173778 + "points": { + "c1": -30.726055165612983, + "c2": -8.615178180656898, + "c3": -26.270145466329467, + "c4": 34.50575996766743, + "c5": -0.2816030245028358, + "c6": -35.76025527710734, + "c7": -11.08792634371131 }, - "vertexSeeds": { - "c1": 5.836949286806957, - "c2": 5.660212112840138, - "c3": 5.882651391672341, - "c4": 5.625849054584179, - "c5": 5.93622066764804, - "c6": 5.619559605100015, - "c7": 5.934793129094199 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509004, + "c3": 7.189089227924184, + "c4": 5.751271382339337, + "c5": 4.3134535367545155, + "c6": 2.8756356911696686, + "c7": 1.4378178455848472 }, "rgb": [77, 76, 132] }, @@ -207177,23 +207177,23 @@ "year": 1767, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -3.716388647864399, - "c2": 24.755895558552254, - "c3": 29.31856864824009, - "c4": -10.198163522836502, - "c5": 20.70194265985174, - "c6": -5.4313764289615705, - "c7": -39.272030733335704 + "points": { + "c1": 15.02200996539996, + "c2": -16.9045311490661, + "c3": -18.39350904364223, + "c4": -25.6841796638985, + "c5": 19.390548544989613, + "c6": -24.05327541184845, + "c7": 0.39179861881306266 }, - "vertexSeeds": { - "c1": 1.4047186744325517, - "c2": 1.370073002568145, - "c3": 1.4324249585084996, - "c4": 1.4567615298783918, - "c5": 1.4698119252745911, - "c6": 1.34059296736104, - "c7": 1.3625498450520699 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [222, 0, 59] }, @@ -207204,23 +207204,23 @@ "year": 1767, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -25.76610672787966, - "c2": 25.108530198728744, - "c3": 38.8955220802916, - "c4": -19.591685574019706, - "c5": -20.95855378188539, - "c6": -17.685854757946757, - "c7": 20.42233198313862 + "points": { + "c1": 41.041321671611655, + "c2": -16.743014922092215, + "c3": 17.431257948251314, + "c4": -27.09906140517365, + "c5": 26.093942911753743, + "c6": -1.3441867208096312, + "c7": -11.17243108944741 }, - "vertexSeeds": { - "c1": 0.7699691867830466, - "c2": 0.8335752576557747, - "c3": 0.8467093530907355, - "c4": 0.758688461767211, - "c5": 0.7989979751609084, - "c6": 0.7283578684172685, - "c7": 0.8365178496566337 + "offsets": { + "c1": 1.4563106796116505, + "c2": 1.248266296809986, + "c3": 1.0402219140083215, + "c4": 0.8321775312066582, + "c5": 0.6241331484049936, + "c6": 0.4160887656033291, + "c7": 0.20804438280166454 }, "rgb": [238, 201, 159] }, @@ -207231,23 +207231,23 @@ "year": 1768, "resistanceReported": false, "duration": 54777600, - "curveSeeds": { - "c1": -30.497015502133912, - "c2": -14.018711697789485, - "c3": 65.87787705027154, - "c4": -26.09400730456518, - "c5": 66.3931125472684, - "c6": 16.645799742361916, - "c7": -14.563612437250399 + "points": { + "c1": 60.52301234575782, + "c2": 11.501292255550709, + "c3": 54.175003371764774, + "c4": -0.1346526337112124, + "c5": 44.05962260712346, + "c6": 61.89503750911868, + "c7": -44.48525121106678 }, - "vertexSeeds": { - "c1": 6.978116177445236, - "c2": 6.774997304232355, - "c3": 6.89489678797103, - "c4": 6.914667659325417, - "c5": 6.596701594773607, - "c6": 6.446269872224825, - "c7": 6.500436758370043 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [222, 0, 59] }, @@ -207258,23 +207258,23 @@ "year": 1767, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 18.174105190134753, - "c2": 23.22406381495417, - "c3": -29.221690686044532, - "c4": -1.3485356238878126, - "c5": 14.300536389517383, - "c6": 28.93145060671209, - "c7": 10.07687974372412 + "points": { + "c1": 0.755161575193398, + "c2": -19.031689657572283, + "c3": -9.688879959586053, + "c4": 24.386896271399415, + "c5": 17.78766267141389, + "c6": 25.957780073497794, + "c7": 11.747458981648926 }, - "vertexSeeds": { - "c1": 2.1460666987038577, - "c2": 1.9371355329376703, - "c3": 2.073980046046242, - "c4": 2.2051962220514056, - "c5": 2.214270932585844, - "c6": 2.121518800230324, - "c7": 2.2159308772368567 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746186, + "c3": 2.7276930189551556, + "c4": 2.182154415164122, + "c5": 1.6366158113730915, + "c6": 1.091077207582061, + "c7": 0.5455386037910305 }, "rgb": [58, 15, 49] }, @@ -207285,23 +207285,23 @@ "year": 1768, "resistanceReported": true, "duration": 52012800, - "curveSeeds": { - "c1": -42.00612659272505, - "c2": -21.063451589541486, - "c3": 22.441751596250597, - "c4": 34.75414847910294, - "c5": 1.1134688211936776, - "c6": 28.02325816206576, - "c7": -47.791130900846916 + "points": { + "c1": -66.49515731724483, + "c2": 53.54921798731267, + "c3": 49.063755585579244, + "c4": 12.924751941977874, + "c5": 63.1995365206262, + "c6": 52.992507702942405, + "c7": 61.966791010868775 }, - "vertexSeeds": { - "c1": 3.15800307845797, - "c2": 2.5893227672506303, - "c3": 2.53869854507614, - "c4": 3.1782122948426665, - "c5": 2.5917498836743547, - "c6": 3.269004015151517, - "c7": 2.9411015814793577 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.975959315765142, + "c4": 3.1807674526121104, + "c5": 2.3855755894590827, + "c6": 1.5903837263060552, + "c7": 0.7951918631530276 }, "rgb": [222, 0, 59] }, @@ -207312,23 +207312,23 @@ "year": 1768, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -11.744274795854132, - "c2": -7.2272379234529325, - "c3": 42.884700060804704, - "c4": -2.145796495893805, - "c5": -37.11466704018195, - "c6": 30.89570581826419, - "c7": -13.00446602490629 + "points": { + "c1": -39.273458984853654, + "c2": 37.91691644681647, + "c3": -23.29307613629275, + "c4": 22.143989694688656, + "c5": -39.4506200124393, + "c6": 30.596769040154953, + "c7": -42.63761477275187 }, - "vertexSeeds": { - "c1": 5.853716369543111, - "c2": 6.045195674590075, - "c3": 6.072823808513169, - "c4": 6.096660643499842, - "c5": 6.114560482795922, - "c6": 5.883357896248578, - "c7": 6.018028538395779 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [77, 76, 132] }, @@ -207339,23 +207339,23 @@ "year": 1768, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -11.224855342247956, - "c2": -16.5537418123055, - "c3": -12.678427603234017, - "c4": 35.241289268043516, - "c5": -9.41786159022704, - "c6": -41.345177835886616, - "c7": 21.37812597211436 + "points": { + "c1": 7.506096073090561, + "c2": -12.946741837370247, + "c3": 26.64058421176165, + "c4": 29.106713611443368, + "c5": -41.57131559454281, + "c6": -0.7531000280852993, + "c7": 23.181683272654013 }, - "vertexSeeds": { - "c1": 1.7528558529084852, - "c2": 1.7983616759650363, - "c3": 1.7886533539069243, - "c4": 1.6121113565992713, - "c5": 1.6685968546856669, - "c6": 1.7986836038297098, - "c7": 1.6389517420500705 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.662968099861303, + "c3": 2.2191400832177526, + "c4": 1.7753120665742013, + "c5": 1.3314840499306502, + "c6": 0.8876560332871021, + "c7": 0.44382801664354826 }, "rgb": [58, 15, 49] }, @@ -207366,23 +207366,23 @@ "year": 1767, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 17.770014175240192, - "c2": -30.922609326746134, - "c3": 40.99206454396656, - "c4": -11.861424711841178, - "c5": -37.91272549280701, - "c6": -13.219997593248461, - "c7": -39.07322712693241 + "points": { + "c1": -8.801872340343238, + "c2": 40.30127335286308, + "c3": 13.054098122800028, + "c4": -30.927375555984028, + "c5": 42.53747579497224, + "c6": 31.08056779118796, + "c7": -22.269476399376803 }, - "vertexSeeds": { - "c1": 1.6180617749990376, - "c2": 1.575459350204447, - "c3": 1.6216258671888497, - "c4": 1.6239558875087614, - "c5": 1.7466997385899667, - "c6": 1.7239815983326443, - "c7": 1.7377073585852194 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.524271844660192, + "c3": 2.1035598705501624, + "c4": 1.6828478964401279, + "c5": 1.2621359223300985, + "c6": 0.8414239482200639, + "c7": 0.4207119741100297 }, "rgb": [77, 76, 132] }, @@ -207393,23 +207393,23 @@ "year": 1768, "resistanceReported": false, "duration": 45187200, - "curveSeeds": { - "c1": 24.572783899682513, - "c2": 38.81290574548448, - "c3": -34.32973037757999, - "c4": -40.18871695051253, - "c5": 6.708524743889775, - "c6": 1.6676782450855967, - "c7": -54.073775882171475 + "points": { + "c1": -49.31790389808627, + "c2": 23.04429195757067, + "c3": 38.6265162191115, + "c4": 60.99670188732703, + "c5": -37.98027553923562, + "c6": 35.16108493523199, + "c7": -51.10808052007537 }, - "vertexSeeds": { - "c1": 2.4584361988525085, - "c2": 2.6155148839423603, - "c3": 2.6881308604884153, - "c4": 2.699851057561513, - "c5": 2.520708760759201, - "c6": 2.691072969353808, - "c7": 2.5189643043506607 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751736, + "c3": 3.3055940822931085, + "c4": 2.644475265834489, + "c5": 1.9833564493758702, + "c6": 1.3222376329172425, + "c7": 0.6611188164586234 }, "rgb": [86, 146, 138] }, @@ -207420,23 +207420,23 @@ "year": 1768, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": -15.599625617551844, - "c2": 16.308770149187637, - "c3": 11.416790480571834, - "c4": 20.793671355085962, - "c5": 21.131563972448077, - "c6": -41.613444266980835, - "c7": 38.31856316520529 + "points": { + "c1": 42.83731291016599, + "c2": 4.941192015781105, + "c3": -31.42494297526009, + "c4": 15.503136655292067, + "c5": 51.42976488037944, + "c6": -27.28166055248202, + "c7": -47.916654439643274 }, - "vertexSeeds": { - "c1": 2.23885178266996, - "c2": 2.2193458299931565, - "c3": 2.2016301760578636, - "c4": 2.1857600851054615, - "c5": 2.0953038729525253, - "c6": 2.014329670025331, - "c7": 2.2516158908571633 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705962, + "c3": 2.704576976421637, + "c4": 2.163661581137308, + "c5": 1.6227461858529832, + "c6": 1.081830790568654, + "c7": 0.540915395284325 }, "rgb": [77, 76, 132] }, @@ -207447,23 +207447,23 @@ "year": 1767, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -18.952837927674054, - "c2": -24.02278629698884, - "c3": -27.902500604633026, - "c4": 25.326950519641123, - "c5": -34.38372546927984, - "c6": 26.35602523608336, - "c7": -18.690340014568818 + "points": { + "c1": 29.92418459526001, + "c2": 9.219026477516827, + "c3": -20.263892614453997, + "c4": 6.679766942277368, + "c5": 8.112666515177281, + "c6": 24.362517616568404, + "c7": 32.56083423835761 }, - "vertexSeeds": { - "c1": 2.739717129733847, - "c2": 2.9907891316063253, - "c3": 3.009021509355666, - "c4": 2.813835782027892, - "c5": 2.6861146309057315, - "c6": 3.070923618544367, - "c7": 2.8091745313743335 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475731, + "c3": 3.721682847896439, + "c4": 2.9773462783171536, + "c5": 2.233009708737862, + "c6": 1.4886731391585768, + "c7": 0.7443365695792917 }, "rgb": [58, 15, 49] }, @@ -207474,23 +207474,23 @@ "year": 1767, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -30.813979129236667, - "c2": 33.1429750457211, - "c3": -17.655247831180393, - "c4": 27.94198410166228, - "c5": -12.748477151529194, - "c6": 19.74197220932075, - "c7": 17.97029774746295 + "points": { + "c1": -6.212462436177844, + "c2": 7.306828587755817, + "c3": -17.2857750697406, + "c4": 26.383190399755854, + "c5": 23.33834829535737, + "c6": -17.602093245598954, + "c7": 20.022598078078524 }, - "vertexSeeds": { - "c1": 4.898334112298322, - "c2": 4.675996749266985, - "c3": 4.809540631801722, - "c4": 4.976090582334951, - "c5": 5.001410230179568, - "c6": 4.714987861439735, - "c7": 4.790860856265872 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417484, + "c3": 5.987055016181232, + "c4": 4.78964401294498, + "c5": 3.592233009708742, + "c6": 2.39482200647249, + "c7": 1.1974110032362384 }, "rgb": [77, 76, 132] }, @@ -207501,23 +207501,23 @@ "year": 1767, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -17.011125639769208, - "c2": -8.594229275892154, - "c3": 9.03324865442709, - "c4": 35.022514296408396, - "c5": -1.5663675386050215, - "c6": 30.724481446808888, - "c7": -14.897993479978865 + "points": { + "c1": -10.56041138155171, + "c2": -26.165821363917352, + "c3": -41.01165736481362, + "c4": -30.019011538254333, + "c5": 13.008159866569116, + "c6": 0.1869996336104549, + "c7": 41.13816027705494 }, - "vertexSeeds": { - "c1": 0.9970648439462145, - "c2": 1.079777107078711, - "c3": 0.9712075986425208, - "c4": 1.0853654264724975, - "c5": 0.9393075944131349, - "c6": 0.9475176249199264, - "c7": 1.0763575495144142 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133145, + "c3": 1.386962552011095, + "c4": 1.109570041608877, + "c5": 0.8321775312066578, + "c6": 0.5547850208044385, + "c7": 0.27739251040221924 }, "rgb": [222, 0, 59] }, @@ -207528,23 +207528,23 @@ "year": 1768, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": -40.719266357021716, - "c2": 3.5187179079539135, - "c3": -38.32748864589157, - "c4": -26.123965518498903, - "c5": -54.50807670547549, - "c6": -34.89436607726062, - "c7": -7.562409219440653 + "points": { + "c1": 25.06025753645737, + "c2": 49.18855102004481, + "c3": -52.518154656501316, + "c4": -2.60814790972524, + "c5": 34.55496638730641, + "c6": 22.954636998502977, + "c7": 11.903165238546976 }, - "vertexSeeds": { - "c1": 2.520740746110658, - "c2": 2.573620584074811, - "c3": 2.6172782556492833, - "c4": 2.6278833444675267, - "c5": 2.626177507496582, - "c6": 2.570578875430882, - "c7": 2.663735881529415 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886315, + "c3": 2.981969486823854, + "c4": 2.385575589459088, + "c5": 1.78918169209431, + "c6": 1.192787794729544, + "c7": 0.596393897364778 }, "rgb": [58, 15, 49] }, @@ -207555,23 +207555,23 @@ "year": 1767, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 11.002007961422976, - "c2": 16.617733377026433, - "c3": 24.25020555224289, - "c4": 22.039145823015204, - "c5": 13.044900142797289, - "c6": -30.54072982678233, - "c7": 12.713030877796342 + "points": { + "c1": 17.549731403959562, + "c2": 26.4578984488615, + "c3": 32.55603942756013, + "c4": -13.380735050681164, + "c5": -12.787405643276685, + "c6": 14.11879709965654, + "c7": 3.1963023925210194 }, - "vertexSeeds": { - "c1": 10.414431816968055, - "c2": 10.536590365709095, - "c3": 10.727251689872412, - "c4": 10.865870449762252, - "c5": 10.218348897906743, - "c6": 11.016185745573443, - "c7": 10.173585870677865 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.088765603328696, + "c3": 13.407304669440597, + "c4": 10.725843735552463, + "c5": 8.044382801664366, + "c6": 5.362921867776231, + "c7": 2.681460933888134 }, "rgb": [86, 146, 138] }, @@ -207582,23 +207582,23 @@ "year": 1767, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -3.999834669091527, - "c2": 12.212233617302246, - "c3": -2.864472070114438, - "c4": 6.51365764778572, - "c5": 32.21489870754671, - "c6": -37.162946390262206, - "c7": -0.21305952365833747 + "points": { + "c1": 31.14224588546128, + "c2": 30.14290024961811, + "c3": -4.6015332420403325, + "c4": 4.113140268086909, + "c5": -10.335328886666492, + "c6": 18.485202736577875, + "c7": -16.960879930586977 }, - "vertexSeeds": { - "c1": 3.3877316845741956, - "c2": 3.295451024395272, - "c3": 3.4498452034905487, - "c4": 3.1111311570080296, - "c5": 3.1288004097504754, - "c6": 3.257316833003281, - "c7": 3.2131821110934764 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [222, 0, 59] }, @@ -207609,23 +207609,23 @@ "year": 1767, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -11.564646973178423, - "c2": -8.885570047923242, - "c3": -10.256801075772984, - "c4": 32.16627199738023, - "c5": -4.10775272140264, - "c6": -7.77435665184402, - "c7": 27.561157368651585 + "points": { + "c1": -15.83954971710498, + "c2": 19.73720230499506, + "c3": 4.386446710350718, + "c4": 26.192033455218784, + "c5": 7.656100942820345, + "c6": 37.332855202629666, + "c7": 6.595436403817068 }, - "vertexSeeds": { - "c1": 7.4123026525652715, - "c2": 7.842774521742172, - "c3": 7.490617135214641, - "c4": 7.53935870910532, - "c5": 7.7488028791993315, - "c6": 7.7232186715963955, - "c7": 7.742082242682143 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370314, + "c3": 9.408229311141923, + "c4": 7.5265834489135335, + "c5": 5.644937586685143, + "c6": 3.7632917244567814, + "c7": 1.8816458622283907 }, "rgb": [86, 146, 138] }, @@ -207636,23 +207636,23 @@ "year": 1767, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": -12.441003674834324, - "c2": -1.9339565657356843, - "c3": -1.7461358821491366, - "c4": -7.1605676698139895, - "c5": 3.6408030134198235, - "c6": -8.404504297129892, - "c7": -7.144968646400526 + "points": { + "c1": 22.064113601488224, + "c2": -16.163036446997964, + "c3": 6.827306606618031, + "c4": -14.347882905844404, + "c5": 9.512726170614414, + "c6": -4.40747800609811, + "c7": 21.530365346522863 }, - "vertexSeeds": { - "c1": 0.24070949698210128, - "c2": 0.23229062987684493, - "c3": 0.2280773195451843, - "c4": 0.24696748024891305, - "c5": 0.2174559711788122, - "c6": 0.22436818087022256, - "c7": 0.23571946215921036 + "offsets": { + "c1": 0.45307443365695793, + "c2": 0.3883495145631067, + "c3": 0.3236245954692558, + "c4": 0.25889967637540456, + "c5": 0.19417475728155334, + "c6": 0.1294498381877021, + "c7": 0.06472491909385124 }, "rgb": [77, 76, 132] }, @@ -207663,23 +207663,23 @@ "year": 1768, "resistanceReported": true, "duration": 38016000, - "curveSeeds": { - "c1": 8.365382823595226, - "c2": 26.602079761410863, - "c3": -31.132061735787083, - "c4": 9.098018924390779, - "c5": -7.0550778978782915, - "c6": 13.947533974844276, - "c7": -19.444051314291983 + "points": { + "c1": 24.281871082263564, + "c2": -31.31070167381458, + "c3": -45.313044764687056, + "c4": -34.083447062639614, + "c5": -16.926586042341967, + "c6": 19.730905449319252, + "c7": 10.647298510756656 }, - "vertexSeeds": { - "c1": 5.431047365865708, - "c2": 3.5468866155018075, - "c3": 4.487618544183005, - "c4": 4.804026260539658, - "c5": 3.359015997938258, - "c6": 4.353478969702049, - "c7": 5.744902909350692 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227463, + "c3": 7.027276930189552, + "c4": 5.621821544151643, + "c5": 4.216366158113733, + "c6": 2.810910772075822, + "c7": 1.40545538603791 }, "rgb": [238, 201, 159] }, @@ -207690,23 +207690,23 @@ "year": 1768, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 29.132907195895868, - "c2": -23.332662759233166, - "c3": -19.604127795345494, - "c4": -2.7453541953481775, - "c5": 39.90501849897598, - "c6": 3.5685454293063117, - "c7": -8.070955328133351 + "points": { + "c1": 25.020963900492916, + "c2": -2.253624879919734, + "c3": 24.248037575858618, + "c4": -17.131052940279087, + "c5": 3.4709582456126142, + "c6": -35.26711892828366, + "c7": 28.065766878800673 }, - "vertexSeeds": { - "c1": 5.648729162255414, - "c2": 5.7637910297259065, - "c3": 6.2607804623515175, - "c4": 6.564924030797805, - "c5": 6.551763303886761, - "c6": 5.8588850448629755, - "c7": 5.994157022690863 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836338, + "c3": 7.9519186315302814, + "c4": 6.361534905224225, + "c5": 4.771151178918169, + "c6": 3.1807674526121126, + "c7": 1.5903837263060563 }, "rgb": [77, 76, 132] }, @@ -207717,23 +207717,23 @@ "year": 1768, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 32.18913455869611, - "c2": -26.668092466649615, - "c3": -3.481440018239283, - "c4": -0.00014144265721682814, - "c5": -7.367761491955292, - "c6": 6.66491457091297, - "c7": -13.422447494155634 + "points": { + "c1": -27.550114752747284, + "c2": -33.54195797601781, + "c3": -13.324055321440099, + "c4": -12.52456170850104, + "c5": 21.952678425998414, + "c6": -25.03468117962604, + "c7": 0.500150406022243 }, - "vertexSeeds": { - "c1": 5.513503890883949, - "c2": 5.391996745972712, - "c3": 5.538344246137567, - "c4": 5.698227023028576, - "c5": 5.400509916384986, - "c6": 5.401919496100178, - "c7": 5.574221028113129 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.8192325473878785, + "c4": 5.455386037910326, + "c5": 4.091539528432745, + "c6": 2.727693018955163, + "c7": 1.3638465094775816 }, "rgb": [238, 201, 159] }, @@ -207744,23 +207744,23 @@ "year": 1767, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -32.84526440932687, - "c2": -37.495451178567606, - "c3": 21.02835078323679, - "c4": -32.30710363065333, - "c5": 28.27864852121084, - "c6": 36.016556921419536, - "c7": 29.645350916113685 + "points": { + "c1": -7.753375822971314, + "c2": 33.775810386355516, + "c3": 14.275917514757168, + "c4": 22.320374830543635, + "c5": -14.197407287499004, + "c6": -11.273123460853018, + "c7": -4.879542969131215 }, - "vertexSeeds": { - "c1": 6.563325776941066, - "c2": 6.172790944624023, - "c3": 5.980855300771803, - "c4": 6.592196550033849, - "c5": 5.938165050008063, - "c6": 6.679640870587459, - "c7": 6.867976824562694 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.20619509939898, + "c4": 6.564956079519189, + "c5": 4.923717059639396, + "c6": 3.2824780397595945, + "c7": 1.6412390198798021 }, "rgb": [77, 76, 132] }, @@ -207771,23 +207771,23 @@ "year": 1768, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 32.4226872819754, - "c2": 23.48940119142435, - "c3": 7.807668530750007, - "c4": -8.418604098050956, - "c5": -26.228028244821115, - "c6": 22.160054302087573, - "c7": 3.7213193477812325 + "points": { + "c1": -41.8190559766963, + "c2": -42.38987897976277, + "c3": 2.65119173485769, + "c4": 5.359757274569496, + "c5": -28.662042390244405, + "c6": -2.04712051130371, + "c7": -0.056014648214905094 }, - "vertexSeeds": { - "c1": 5.6923455681544155, - "c2": 5.858211134347354, - "c3": 5.71706788362356, - "c4": 6.0745292515525495, - "c5": 5.98573639196588, - "c6": 5.874775797329423, - "c7": 5.747582973941558 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871005, + "c3": 7.397133610725847, + "c4": 5.917706888580669, + "c5": 4.438280166435513, + "c6": 2.9588534442903347, + "c7": 1.4794267221451574 }, "rgb": [58, 15, 49] }, @@ -207798,23 +207798,23 @@ "year": 1767, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -24.816358586896328, - "c2": 12.350411819631049, - "c3": -22.36511102620055, - "c4": 4.680126755488281, - "c5": 27.805171322848622, - "c6": 4.894953473953102, - "c7": 23.448492192010548 + "points": { + "c1": 18.08312713696555, + "c2": -37.45444123222521, + "c3": -7.764454466381693, + "c4": -31.7772615488291, + "c5": 4.072925369908582, + "c6": -26.139352631292034, + "c7": -12.306409705296478 }, - "vertexSeeds": { - "c1": 4.130056100370903, - "c2": 4.239377943777615, - "c3": 4.001973505144412, - "c4": 4.105634076768558, - "c5": 4.2052250962221756, - "c6": 4.087954502285323, - "c7": 4.194571007235947 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009703, + "c3": 5.177993527508092, + "c4": 4.1423948220064695, + "c5": 3.106796116504858, + "c6": 2.0711974110032347, + "c7": 1.0355987055016116 }, "rgb": [77, 76, 132] }, @@ -207825,23 +207825,23 @@ "year": 1768, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": 19.75479004998388, - "c2": 19.175351554632996, - "c3": 28.33860886927536, - "c4": -37.2738133227755, - "c5": 40.775922205851685, - "c6": 21.95927592957841, - "c7": -13.480355425698953 + "points": { + "c1": -40.055104684972704, + "c2": 18.795835316046094, + "c3": 50.505396518270416, + "c4": 21.924225726884927, + "c5": 21.841242906227635, + "c6": -18.057455723358494, + "c7": -32.89850633455375 }, - "vertexSeeds": { - "c1": 3.4730020197765072, - "c2": 3.4321799608704553, - "c3": 3.5266427111488383, - "c4": 3.4663215130385145, - "c5": 3.508785450059582, - "c6": 3.4840274774740214, - "c7": 3.471378431156162 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360606, + "c3": 4.230235783633834, + "c4": 3.3841886269070898, + "c5": 2.5381414701803173, + "c6": 1.6920943134535449, + "c7": 0.8460471567267724 }, "rgb": [77, 76, 132] }, @@ -207852,23 +207852,23 @@ "year": 1767, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -22.99776604859639, - "c2": -27.807165567150975, - "c3": 4.2296757998795655, - "c4": -30.758755910264075, - "c5": 32.672349192928266, - "c6": -31.321856517270287, - "c7": 16.08101250809265 + "points": { + "c1": 19.20039856494506, + "c2": -35.233312943239355, + "c3": 32.58848950468719, + "c4": 13.236823375444828, + "c5": -19.665748324465845, + "c6": 21.0939906061025, + "c7": -22.854031201328485 }, - "vertexSeeds": { - "c1": 6.014645404176281, - "c2": 6.592055865941995, - "c3": 5.74350032549903, - "c4": 5.885421898069395, - "c5": 6.600363285289625, - "c6": 5.619421216717993, - "c7": 6.122113917170228 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997229, + "c3": 8.044382801664353, + "c4": 6.4355062413314865, + "c5": 4.826629680998609, + "c6": 3.2177531206657433, + "c7": 1.608876560332866 }, "rgb": [222, 0, 59] }, @@ -207879,23 +207879,23 @@ "year": 1768, "resistanceReported": false, "duration": 41212800, - "curveSeeds": { - "c1": 33.23659653867272, - "c2": -30.406387562286366, - "c3": 48.46337405447185, - "c4": 16.92070697178702, - "c5": -11.593546857594099, - "c6": 27.311379477803918, - "c7": 28.17990980073646 + "points": { + "c1": -53.47492191014342, + "c2": -22.271720103838447, + "c3": -36.90490096986408, + "c4": 15.891505183729514, + "c5": 7.460443432085775, + "c6": -34.56529164033992, + "c7": -0.31341563277187134 }, - "vertexSeeds": { - "c1": 5.271692196559328, - "c2": 5.229613676395336, - "c3": 5.052341106276991, - "c4": 5.457840838686708, - "c5": 5.468805421942431, - "c6": 5.344019650542326, - "c7": 5.315067547574791 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463243, + "c3": 6.588072122052699, + "c4": 5.270457697642155, + "c5": 3.952843273231631, + "c6": 2.6352288488210878, + "c7": 1.3176144244105439 }, "rgb": [86, 146, 138] }, @@ -207906,23 +207906,23 @@ "year": 1767, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -14.020932546148298, - "c2": 22.442758930852722, - "c3": -5.658125856109585, - "c4": 18.657279888635284, - "c5": 20.27252261028985, - "c6": -3.8117264960688146, - "c7": -7.120767713382847 + "points": { + "c1": 3.8532866759577082, + "c2": 13.571500931584719, + "c3": 15.222416931018106, + "c4": -16.29208614747501, + "c5": -0.33396193799071483, + "c6": 27.69773834579433, + "c7": 5.935331736567118 }, - "vertexSeeds": { - "c1": 1.6836495764841517, - "c2": 1.6738853152784448, - "c3": 1.6443909333009836, - "c4": 1.6983499427832753, - "c5": 1.6320679629168644, - "c6": 1.5605148852307413, - "c7": 1.6584063737268868 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797484, + "c3": 2.057327785483126, + "c4": 1.645862228386499, + "c5": 1.2343966712898766, + "c6": 0.8229311141932495, + "c7": 0.4114655570966225 }, "rgb": [222, 0, 59] }, @@ -207933,23 +207933,23 @@ "year": 1768, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -18.60779854150517, - "c2": -19.95704529784543, - "c3": -42.6968479450824, - "c4": -43.70644035670154, - "c5": -41.90767344629873, - "c6": -25.763997308123653, - "c7": -5.730345613866824 + "points": { + "c1": -20.811840643675204, + "c2": -11.519986683142747, + "c3": 17.461331180466125, + "c4": 13.22189791575984, + "c5": 10.09748659467705, + "c6": -44.17070847418029, + "c7": -22.8736536652902 }, - "vertexSeeds": { - "c1": 8.064569293327732, - "c2": 8.054838016474054, - "c3": 8.17209334504222, - "c4": 8.235408146130315, - "c5": 8.195138602837694, - "c6": 8.02070597959064, - "c7": 8.097404494173349 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094305, + "c3": 9.824318076745243, + "c4": 7.859454461396181, + "c5": 5.89459084604712, + "c6": 3.9297272306981235, + "c7": 1.9648636153490617 }, "rgb": [238, 201, 159] }, @@ -207960,23 +207960,23 @@ "year": 1768, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": -20.97540573104614, - "c2": -10.381904910877537, - "c3": -25.766457410394427, - "c4": 31.32344452422504, - "c5": 17.43744330758399, - "c6": -22.090495035003652, - "c7": -46.97427773375369 + "points": { + "c1": 19.66706189690565, + "c2": -20.008941852207595, + "c3": -34.23470794388115, + "c4": 10.660175659301046, + "c5": -49.60939560045706, + "c6": -31.162868064923387, + "c7": 14.209675663659596 }, - "vertexSeeds": { - "c1": 9.864326408018755, - "c2": 9.922466300742407, - "c3": 9.81869097666203, - "c4": 9.919367097093584, - "c5": 9.849399214506258, - "c6": 9.87531310378643, - "c7": 9.948859030714491 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.25797503467413, + "c3": 11.881645862228403, + "c4": 9.505316689782674, + "c5": 7.128987517336947, + "c6": 4.752658344891337, + "c7": 2.3763291724456095 }, "rgb": [77, 76, 132] }, @@ -207987,23 +207987,23 @@ "year": 1767, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -20.307009072765062, - "c2": 8.741524695331279, - "c3": -25.713815076079833, - "c4": -17.371725955963097, - "c5": -9.483374222700242, - "c6": 28.877153109434012, - "c7": 32.679458398476825 + "points": { + "c1": 30.223577759410944, + "c2": 7.595777072333618, + "c3": -24.51855972364137, + "c4": -31.559953317153603, + "c5": 13.494015030293745, + "c6": 9.918035807212135, + "c7": -21.36432832398943 }, - "vertexSeeds": { - "c1": 3.6084987180654102, - "c2": 3.761942476235759, - "c3": 3.781516107974361, - "c4": 3.4981646531118877, - "c5": 3.6356634408548443, - "c6": 3.4559211991173164, - "c7": 3.5300040059544746 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [238, 201, 159] }, @@ -208014,23 +208014,23 @@ "year": 1768, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": 55.420608089626484, - "c2": -20.744038297464897, - "c3": 48.785468538970264, - "c4": -24.147208408225367, - "c5": 7.7716757209411185, - "c6": -49.20809298035266, - "c7": -28.111860817181185 + "points": { + "c1": 60.22954873136534, + "c2": 17.333703505283964, + "c3": 41.17778902090163, + "c4": -2.2895390307267363, + "c5": 50.60176652687386, + "c6": 2.2172823367294114, + "c7": 8.560201360601823 }, - "vertexSeeds": { - "c1": 4.604922279792746, - "c2": 4.604922279792746, - "c3": 4.604922279792746, - "c4": 4.604922279792746, - "c5": 4.604922279792746, - "c6": 4.604922279792746, - "c7": 4.604922279792746 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -208041,23 +208041,23 @@ "year": 1768, "resistanceReported": false, "duration": 41644800, - "curveSeeds": { - "c1": 27.502803373138846, - "c2": 0.7091407243121282, - "c3": 37.03129019766048, - "c4": -42.48371050090744, - "c5": 36.872901855987394, - "c6": -22.050600572252513, - "c7": 10.468714010672784 + "points": { + "c1": -14.243218220972182, + "c2": -9.313920625323398, + "c3": 8.629009183144603, + "c4": -44.775649266653005, + "c5": -1.7165057565708821, + "c6": 26.751380781444425, + "c7": -12.963337201349788 }, - "vertexSeeds": { - "c1": 4.255181347150259, - "c2": 4.255181347150259, - "c3": 4.255181347150259, - "c4": 4.255181347150259, - "c5": 4.255181347150259, - "c6": 4.255181347150259, - "c7": 4.255181347150259 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -208068,23 +208068,23 @@ "year": 1767, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 20.966166067865885, - "c2": -10.855875387667759, - "c3": 8.019790410310396, - "c4": 5.4093612194512986, - "c5": 5.750325304508099, - "c6": 4.364139866498455, - "c7": 2.3695101411819905 + "points": { + "c1": 17.107290824438373, + "c2": 24.190878685587883, + "c3": 3.9259398530308154, + "c4": -18.757995820779367, + "c5": -6.943231476745183, + "c6": -5.267280301535919, + "c7": 10.182135989302004 }, - "vertexSeeds": { - "c1": 7.640076497598239, - "c2": 8.017919357975487, - "c3": 8.205310678381252, - "c4": 7.6265679193387115, - "c5": 7.801887477036107, - "c6": 7.946264665887978, - "c7": 7.464725907918592 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174756, + "c3": 9.870550161812298, + "c4": 7.896440129449838, + "c5": 5.922330097087378, + "c6": 3.948220064724919, + "c7": 1.9741100323624594 }, "rgb": [222, 0, 59] }, @@ -208095,23 +208095,23 @@ "year": 1767, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 9.810825764043727, - "c2": 21.42372638571039, - "c3": 21.19710869585799, - "c4": 15.801472048891455, - "c5": 15.065009607819569, - "c6": -5.424400728961523, - "c7": -8.592163037581354 + "points": { + "c1": -17.942285329190817, + "c2": -15.494181493186666, + "c3": 34.9217664973522, + "c4": -18.21135261468893, + "c5": -37.334942852799976, + "c6": 12.231070038630726, + "c7": -31.471732353281688 }, - "vertexSeeds": { - "c1": 5.293259987824358, - "c2": 5.5542336759914095, - "c3": 5.28125124215842, - "c4": 5.582293694352754, - "c5": 5.388961847936073, - "c6": 5.452210138073285, - "c7": 5.430775383283336 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785024, + "c3": 6.773000462320857, + "c4": 5.418400369856667, + "c5": 4.0638002773925, + "c6": 2.7092001849283336, + "c7": 1.3546000924641668 }, "rgb": [86, 146, 138] }, @@ -208122,23 +208122,23 @@ "year": 1768, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 4.069745801524512, - "c2": 26.65677299979332, - "c3": 17.84516726166477, - "c4": -40.55545483348942, - "c5": 33.27845815130763, - "c6": -34.01698605964034, - "c7": -25.027337543097627 + "points": { + "c1": 17.498252780065442, + "c2": -6.878096496287235, + "c3": -17.732150943439347, + "c4": -40.927196942733076, + "c5": -1.180222332356358, + "c6": 34.58535516859078, + "c7": -12.410989778916608 }, - "vertexSeeds": { - "c1": 4.58232549574755, - "c2": 4.618229919213888, - "c3": 4.5754307068372375, - "c4": 4.159459676512371, - "c5": 4.5613182049919745, - "c6": 4.0829889900355, - "c7": 4.118818512764945 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457698, + "c3": 6.010171058714747, + "c4": 4.808136846971797, + "c5": 3.6061026352288468, + "c6": 2.4040684234859007, + "c7": 1.2020342117429503 }, "rgb": [77, 76, 132] }, @@ -208149,23 +208149,23 @@ "year": 1768, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 40.193451315418386, - "c2": -24.141289617027777, - "c3": 27.506424267673054, - "c4": -32.91905933888086, - "c5": 25.62795544427064, - "c6": -23.327362749379805, - "c7": -21.188983427786997 + "points": { + "c1": -13.109205602461422, + "c2": 18.393667607001355, + "c3": 34.53707509629959, + "c4": -35.02966634742001, + "c5": 35.81797604962381, + "c6": 45.29000257779185, + "c7": 24.231193722594796 }, - "vertexSeeds": { - "c1": 9.040943061070523, - "c2": 9.174482621625657, - "c3": 9.139167831443375, - "c4": 9.312868639018674, - "c5": 9.005566305973996, - "c6": 9.013958124567086, - "c7": 9.011842805212208 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.34257975034676, + "c3": 11.118816458622277, + "c4": 8.89505316689784, + "c5": 6.6712898751733585, + "c6": 4.44752658344892, + "c7": 2.223763291724438 }, "rgb": [222, 0, 59] }, @@ -208176,23 +208176,23 @@ "year": 1768, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": -20.60954975160874, - "c2": 37.280945431232325, - "c3": -32.14112317677035, - "c4": 47.18112839843569, - "c5": -26.699315537727, - "c6": 40.63268665982662, - "c7": -36.82517230126602 + "points": { + "c1": -48.96584472712611, + "c2": -35.79619471675896, + "c3": -45.918468641912405, + "c4": 10.668424092765832, + "c5": -30.12742533192774, + "c6": 24.87362418136948, + "c7": 44.98614182430532 }, - "vertexSeeds": { - "c1": 8.126629019706133, - "c2": 8.204093088920372, - "c3": 8.11814725852775, - "c4": 8.109629547410975, - "c5": 8.055829949392969, - "c6": 8.153128926003019, - "c7": 8.198978221018683 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054104, + "c3": 9.801202034211768, + "c4": 7.840961627369432, + "c5": 5.880721220527096, + "c6": 3.9204808136846725, + "c7": 1.9602404068423362 }, "rgb": [77, 76, 132] }, @@ -208203,23 +208203,23 @@ "year": 1768, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -26.837984415076814, - "c2": -10.902634761511798, - "c3": 13.754849004552852, - "c4": 6.4617440311532945, - "c5": 2.9575278035630603, - "c6": 19.681617101117133, - "c7": -17.843527810934685 + "points": { + "c1": 5.0838874996358925, + "c2": 22.588017500334246, + "c3": 20.080340729931514, + "c4": -5.86519167172284, + "c5": -1.7091953605483567, + "c6": 35.88191295442196, + "c7": -6.184654920443506 }, - "vertexSeeds": { - "c1": 5.568499685102126, - "c2": 5.269874210615156, - "c3": 5.0462634283131225, - "c4": 5.612385806723362, - "c5": 5.829272541153304, - "c6": 5.79897606121652, - "c7": 5.202359988673789 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468795, + "c3": 7.165973185390666, + "c4": 5.732778548312526, + "c5": 4.299583911234396, + "c6": 2.8663892741562655, + "c7": 1.4331946370781352 }, "rgb": [222, 0, 59] }, @@ -208230,23 +208230,23 @@ "year": 1768, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -2.491754103989983, - "c2": -35.92465257209224, - "c3": 3.793667427648927, - "c4": -24.141344865007447, - "c5": -14.03439272196691, - "c6": 14.972574753361954, - "c7": 20.637764685903704 + "points": { + "c1": -27.878144424140217, + "c2": -46.62696686773444, + "c3": 45.62608233056788, + "c4": 8.103186989880442, + "c5": -45.470532569161215, + "c6": 16.081535771940466, + "c7": 38.17993140512277 }, - "vertexSeeds": { - "c1": 4.948381321802988, - "c2": 4.564347500878911, - "c3": 4.960333564850079, - "c4": 4.925739678195997, - "c5": 5.197551387246188, - "c6": 4.49160287356165, - "c7": 4.916109319982519 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503469, + "c3": 6.611188164586218, + "c4": 5.288950531668976, + "c5": 3.9667128987517346, + "c6": 2.644475265834488, + "c7": 1.3222376329172418 }, "rgb": [58, 15, 49] }, @@ -208257,23 +208257,23 @@ "year": 1767, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -2.5172999172945723, - "c2": 11.042957589642938, - "c3": -12.828765325088753, - "c4": -2.1945131986537874, - "c5": -4.136978669826643, - "c6": -17.45753874923218, - "c7": 12.664412621155549 + "points": { + "c1": 23.015258284896163, + "c2": -9.061864503900818, + "c3": -22.866290672212983, + "c4": -17.39974039802984, + "c5": 17.809463411833697, + "c6": 25.108202329987208, + "c7": -2.4169319249796075 }, - "vertexSeeds": { - "c1": 4.428444803358784, - "c2": 5.222827001140097, - "c3": 4.87800658955428, - "c4": 5.334141770532446, - "c5": 4.237229066640828, - "c6": 5.126994364439101, - "c7": 4.31115878022554 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -208284,23 +208284,23 @@ "year": 1768, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": -21.07211839116375, - "c2": -21.772810853264648, - "c3": 4.148960002895642, - "c4": -21.808117707141154, - "c5": 44.426539374971405, - "c6": 40.11084838932826, - "c7": 33.65718393778301 + "points": { + "c1": -42.645016882677545, + "c2": 18.966225003521835, + "c3": -41.59669730514562, + "c4": -27.216048394541307, + "c5": 28.401010090296204, + "c6": 30.451112849281365, + "c7": -45.12172969454632 }, - "vertexSeeds": { - "c1": 2.933937823834197, - "c2": 2.933937823834197, - "c3": 2.933937823834197, - "c4": 2.933937823834197, - "c5": 2.933937823834197, - "c6": 2.933937823834197, - "c7": 2.933937823834197 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -208311,23 +208311,23 @@ "year": 1768, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 19.44244914036443, - "c2": -27.253475891202335, - "c3": -24.716199786217473, - "c4": -35.495959173871995, - "c5": -2.284891898265151, - "c6": 33.69083469080802, - "c7": 12.01250253942883 + "points": { + "c1": 17.798446416849664, + "c2": -28.46246997020139, + "c3": -33.0330816301077, + "c4": -20.82763488410161, + "c5": 21.947840656172474, + "c6": -25.030566783580326, + "c7": -19.97669399251814 }, - "vertexSeeds": { - "c1": 2.2324156457691524, - "c2": 2.1909529133741255, - "c3": 2.131818496141592, - "c4": 2.227554112676414, - "c5": 2.084986836942343, - "c6": 2.182576978955597, - "c7": 2.0595149650776348 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.217753120665743, + "c3": 2.6814609338881166, + "c4": 2.145168747110494, + "c5": 1.6088765603328714, + "c6": 1.0725843735552492, + "c7": 0.5362921867776225 }, "rgb": [222, 0, 59] }, @@ -208338,23 +208338,23 @@ "year": 1768, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -17.309245156594233, - "c2": -16.226335053781998, - "c3": 12.914653677068216, - "c4": -39.06738957015272, - "c5": 21.78292439786634, - "c6": 23.898155836872448, - "c7": 36.480460269105706 + "points": { + "c1": 35.762670312637795, + "c2": 21.672589251220202, + "c3": -31.027205524336605, + "c4": 4.863863177083026, + "c5": -37.64386576807776, + "c6": 14.037656906077537, + "c7": 15.622896665462044 }, - "vertexSeeds": { - "c1": 9.068956057376177, - "c2": 9.189998990677909, - "c3": 9.208693814906953, - "c4": 9.264710792090948, - "c5": 8.992146906469934, - "c6": 9.04306786035389, - "c7": 9.075154126196015 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306532, + "c3": 11.095700416088745, + "c4": 8.876560332871005, + "c5": 6.657420249653266, + "c6": 4.438280166435527, + "c7": 2.219140083217739 }, "rgb": [238, 201, 159] }, @@ -208365,23 +208365,23 @@ "year": 1767, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 12.89508135147399, - "c2": -34.428665966472536, - "c3": -7.347161038637079, - "c4": -17.047417954718075, - "c5": -22.97840575398329, - "c6": -2.4172951727884993, - "c7": -14.248311603614724 + "points": { + "c1": 12.780129273536346, + "c2": 6.041048234443657, + "c3": -17.18692908243085, + "c4": 17.48630228196003, + "c5": -29.545956399676793, + "c6": 5.581179316699767, + "c7": 17.183491479539505 }, - "vertexSeeds": { - "c1": 2.3094613644986484, - "c2": 2.3001356800672927, - "c3": 2.306266480042509, - "c4": 2.3109414338624563, - "c5": 2.3019417075768134, - "c6": 2.3027399436474765, - "c7": 2.3009389709476995 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.190013869625525, + "c3": 2.6583448913545986, + "c4": 2.1266759130836834, + "c5": 1.5950069348127573, + "c6": 1.0633379565418417, + "c7": 0.5316689782709262 }, "rgb": [222, 0, 59] }, @@ -208392,23 +208392,23 @@ "year": 1768, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -2.291930846746432, - "c2": -23.5160646072015, - "c3": -25.114048475513883, - "c4": -4.169005676371519, - "c5": -27.519441894875683, - "c6": 21.215196087291936, - "c7": 26.52221047054936 + "points": { + "c1": -15.78182171974374, + "c2": 3.547626628583423, + "c3": 9.30609554107081, + "c4": 14.589296884380794, + "c5": -19.07916483570129, + "c6": 7.6356394229544335, + "c7": -14.429416927080212 }, - "vertexSeeds": { - "c1": 5.494683780055777, - "c2": 5.6600541095460315, - "c3": 5.133879564193319, - "c4": 5.569924043734438, - "c5": 5.721878394506857, - "c6": 5.488391441414237, - "c7": 5.156982359251796 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.62690707350902, + "c3": 7.1890892279241765, + "c4": 5.751271382339344, + "c5": 4.313453536754512, + "c6": 2.8756356911696694, + "c7": 1.4378178455848374 }, "rgb": [86, 146, 138] }, @@ -208419,23 +208419,23 @@ "year": 1767, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -8.20775974079001, - "c2": 15.95686874579916, - "c3": 12.957134706995578, - "c4": -8.551197182625831, - "c5": -1.1048944431185923, - "c6": -21.523366095538197, - "c7": 8.843564682860379 + "points": { + "c1": 18.038370889023422, + "c2": -13.092885548194294, + "c3": 3.377741416332544, + "c4": -15.546419799745008, + "c5": 24.952299263989506, + "c6": 6.443981099153856, + "c7": 11.688650140363738 }, - "vertexSeeds": { - "c1": 3.3724311627716097, - "c2": 3.638850873311617, - "c3": 3.6578761021425006, - "c4": 3.419344143920897, - "c5": 3.602010396795103, - "c6": 3.3644011000988585, - "c7": 3.6265094137282894 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [238, 201, 159] }, @@ -208446,23 +208446,23 @@ "year": 1768, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -22.256616842067743, - "c2": 34.146571296687526, - "c3": 31.751110566431706, - "c4": -33.71128655466044, - "c5": -26.422320276497413, - "c6": 18.823927451102612, - "c7": -27.726507991070715 + "points": { + "c1": -25.25197656795678, + "c2": 0.03575298102788338, + "c3": 26.38738314289776, + "c4": 11.771251056947342, + "c5": -33.58510294737272, + "c6": -22.19970015557208, + "c7": 33.94911921250335 }, - "vertexSeeds": { - "c1": 4.264164808480518, - "c2": 4.158131210524558, - "c3": 4.201718580620354, - "c4": 4.545631628264618, - "c5": 4.320378812936549, - "c6": 4.373319474737416, - "c7": 4.494675197924526 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693481, + "c3": 5.570966250577902, + "c4": 4.456773000462321, + "c5": 3.3425797503467405, + "c6": 2.2283865002311605, + "c7": 1.1141932501155802 }, "rgb": [77, 76, 132] }, @@ -208473,23 +208473,23 @@ "year": 1768, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 31.01901410942625, - "c2": 29.57208783149703, - "c3": -3.2056098192848452, - "c4": 19.086604533863657, - "c5": 3.892848135578056, - "c6": 5.050765471883508, - "c7": 15.373586419425152 + "points": { + "c1": -34.51011547201045, + "c2": 39.73887507838866, + "c3": 38.60522442652454, + "c4": 16.007288398142535, + "c5": 29.280207864900987, + "c6": -7.268919406963391, + "c7": -24.918020255589635 }, - "vertexSeeds": { - "c1": 5.078990433862167, - "c2": 5.136171525263694, - "c3": 4.991063041069599, - "c4": 5.039247916937621, - "c5": 5.066967971938003, - "c6": 4.987746718650999, - "c7": 4.843169820242109 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [58, 15, 49] }, @@ -208500,23 +208500,23 @@ "year": 1768, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 21.842275924522134, - "c2": 28.199543135524166, - "c3": 11.062010131270718, - "c4": -8.892653635059482, - "c5": -10.843462225801062, - "c6": 29.53432088523587, - "c7": 2.6519014992201164 + "points": { + "c1": -4.6115480892163205, + "c2": 34.14973180699798, + "c3": -24.932166196042857, + "c4": 34.78208291696525, + "c5": 9.753090822180617, + "c6": -25.34313600737469, + "c7": 6.130843537734648 }, - "vertexSeeds": { - "c1": 4.5533977678591615, - "c2": 5.392228992618003, - "c3": 4.678475565052709, - "c4": 5.078657377352118, - "c5": 4.6442835698759435, - "c6": 5.317747251031298, - "c7": 4.822127617028574 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583916, + "c3": 6.657420249653257, + "c4": 5.32593619972261, + "c5": 3.9944521497919525, + "c6": 2.6629680998613, + "c7": 1.3314840499306475 }, "rgb": [222, 0, 59] }, @@ -208527,23 +208527,23 @@ "year": 1767, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 25.20569804036999, - "c2": -11.656770009189785, - "c3": -28.55709336905874, - "c4": 14.925717865325286, - "c5": -13.113236477498148, - "c6": 1.133663290881099, - "c7": 28.873649701917596 + "points": { + "c1": -13.205013368488046, + "c2": -7.043478068088152, + "c3": -8.544651606961583, + "c4": 4.639012353914147, + "c5": -12.355532356470825, + "c6": 23.544199558256217, + "c7": -18.576981668066423 }, - "vertexSeeds": { - "c1": 2.9653777126251257, - "c2": 2.7111562502178557, - "c3": 3.484160417220272, - "c4": 3.880692793281212, - "c5": 2.8347150103953025, - "c6": 3.6406113272616185, - "c7": 3.369854038555313 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446603, + "c3": 4.854368932038835, + "c4": 3.8834951456310667, + "c5": 2.9126213592233015, + "c6": 1.941747572815536, + "c7": 0.970873786407768 }, "rgb": [86, 146, 138] }, @@ -208554,23 +208554,23 @@ "year": 1768, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -13.575342523798422, - "c2": -1.3151782161169052, - "c3": -19.72785272679917, - "c4": -6.079579100240366, - "c5": 19.690783601457838, - "c6": 1.3787967255127427, - "c7": 28.319022609637877 + "points": { + "c1": -15.830274448881834, + "c2": 12.50972427089772, + "c3": 19.411862038509938, + "c4": -37.21203378503381, + "c5": -14.738774475762973, + "c6": -12.57830931926065, + "c7": -15.773734137582704 }, - "vertexSeeds": { - "c1": 4.017377686249582, - "c2": 4.018706528682351, - "c3": 3.9119086520573325, - "c4": 4.0667583538268275, - "c5": 3.86303178274508, - "c6": 4.029670688647444, - "c7": 4.003148652632182 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [58, 15, 49] }, @@ -208581,23 +208581,23 @@ "year": 1767, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 26.948857841955295, - "c2": -27.37056031786422, - "c3": -24.655387268280627, - "c4": 16.900140921772113, - "c5": 18.37222182769173, - "c6": 10.19496534197016, - "c7": 15.76469502250005 + "points": { + "c1": -6.263806738266986, + "c2": 21.399662629462277, + "c3": -31.775778783093653, + "c4": 3.7477064491065875, + "c5": -23.646110456914847, + "c6": 17.54466204503364, + "c7": 13.778315231557492 }, - "vertexSeeds": { - "c1": 7.580053226125228, - "c2": 7.639924018652856, - "c3": 7.368665654730807, - "c4": 7.396351919975654, - "c5": 7.313764104934513, - "c6": 7.467060129725939, - "c7": 7.808218561491193 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.178918169209428, + "c3": 9.315765141007851, + "c4": 7.452612112806276, + "c5": 5.589459084604699, + "c6": 3.726306056403152, + "c7": 1.863153028201576 }, "rgb": [86, 146, 138] }, @@ -208608,23 +208608,23 @@ "year": 1768, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -3.641573589778112, - "c2": 20.98473135083828, - "c3": -8.494619654803504, - "c4": -15.17002353918129, - "c5": -3.0705745621275398, - "c6": 35.12004640893855, - "c7": 31.79416849822661 + "points": { + "c1": -16.63117058630093, + "c2": -4.924557351182266, + "c3": -8.788039852720615, + "c4": -39.637133473100526, + "c5": -34.534105461421056, + "c6": 32.66307518981884, + "c7": 4.238512438401983 }, - "vertexSeeds": { - "c1": 5.932881532653661, - "c2": 6.190599109233438, - "c3": 6.091115212494195, - "c4": 6.003716033961001, - "c5": 6.4204902361431735, - "c6": 5.778344086325391, - "c7": 6.094499646908064 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353668, + "c3": 7.674526121128065, + "c4": 6.139620896902445, + "c5": 4.604715672676842, + "c6": 3.0698104484512223, + "c7": 1.5349052242256194 }, "rgb": [77, 76, 132] }, @@ -208635,23 +208635,23 @@ "year": 1768, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 4.448908678229444, - "c2": 14.225378699210388, - "c3": 17.987165870851264, - "c4": 6.038736522325564, - "c5": 8.027340075519973, - "c6": -15.161331388774403, - "c7": 17.94321818533018 + "points": { + "c1": 14.539247832454222, + "c2": 20.549771286117732, + "c3": -33.25980727323562, + "c4": -19.658707667356026, + "c5": 26.02481974879086, + "c6": -11.218977876346415, + "c7": -1.454406787870866 }, - "vertexSeeds": { - "c1": 5.6252966334247425, - "c2": 6.592099957065072, - "c3": 6.184927515687162, - "c4": 6.016522047326603, - "c5": 6.293508501953913, - "c6": 6.640710194537827, - "c7": 6.74330381699939 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -208662,23 +208662,23 @@ "year": 1768, "resistanceReported": true, "duration": 27907200, - "curveSeeds": { - "c1": 40.41155153670273, - "c2": 29.887933937223565, - "c3": 11.001492634247462, - "c4": 6.925148782150941, - "c5": 21.09657971800913, - "c6": -7.756006080759207, - "c7": -18.04164020855448 + "points": { + "c1": 42.45129638544884, + "c2": -7.618453763739268, + "c3": -27.400316408378423, + "c4": -40.381077290339725, + "c5": -37.10090968363717, + "c6": -35.4743022470291, + "c7": 20.818057302691287 }, - "vertexSeeds": { - "c1": 4.063795190615563, - "c2": 4.290445963660897, - "c3": 3.926944181641985, - "c4": 3.982294287959222, - "c5": 4.080851914006638, - "c6": 4.243334754983457, - "c7": 4.43386569997365 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -208689,23 +208689,23 @@ "year": 1768, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 29.66175095654019, - "c2": -40.01833626653415, - "c3": -31.763880195683818, - "c4": -21.349722756171403, - "c5": -32.30318625729831, - "c6": -26.200576113962775, - "c7": -5.814429383292435 + "points": { + "c1": 31.067169090260293, + "c2": 1.6632533048450284, + "c3": 22.384052597903562, + "c4": -3.6050794207007826, + "c5": 2.936030093250615, + "c6": -13.337681966101076, + "c7": 10.412376766052347 }, - "vertexSeeds": { - "c1": 5.495573744194418, - "c2": 5.615720375037826, - "c3": 5.681930831540569, - "c4": 5.809578767218815, - "c5": 5.6497979053097245, - "c6": 5.660746330230398, - "c7": 5.503235217192737 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066585, + "c3": 6.934812760055474, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.7739251040221955, + "c7": 1.3869625520110838 }, "rgb": [238, 201, 159] }, @@ -208716,23 +208716,23 @@ "year": 1768, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 17.6240249299777, - "c2": 24.04242868370939, - "c3": 19.067796846525376, - "c4": 12.483913036292321, - "c5": 13.86051870514899, - "c6": -20.993096812953567, - "c7": -3.3809491702211574 + "points": { + "c1": 24.909545045724784, + "c2": 3.7588231514831136, + "c3": 4.870467583794941, + "c4": -28.858333356205264, + "c5": 24.144164164021504, + "c6": 31.465624055154592, + "c7": -38.552805535339026 }, - "vertexSeeds": { - "c1": 2.9950004704456368, - "c2": 3.2025897128143255, - "c3": 3.155262486644054, - "c4": 2.9446161560557456, - "c5": 2.9149423246658963, - "c6": 3.136727191053748, - "c7": 3.2254259375279744 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [222, 0, 59] }, @@ -208743,23 +208743,23 @@ "year": 1768, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 15.828779521753987, - "c2": -30.56177079532525, - "c3": -13.687249931034103, - "c4": -23.609252299809878, - "c5": 22.390804266767915, - "c6": 28.41087495749261, - "c7": 28.997211194064818 + "points": { + "c1": 32.095249023589616, + "c2": 39.471183408323995, + "c3": -21.360753509595362, + "c4": -23.394266351428744, + "c5": -15.06285744323391, + "c6": -25.46830292969003, + "c7": 38.82384753201168 }, - "vertexSeeds": { - "c1": 4.911923451395072, - "c2": 5.021299812990809, - "c3": 5.090876570821179, - "c4": 4.864586676684267, - "c5": 4.894124368876888, - "c6": 5.104127207250905, - "c7": 4.870496893865267 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061031, + "c3": 6.356911696717512, + "c4": 5.085529357374014, + "c5": 3.8141470180305155, + "c6": 2.5427646786870173, + "c7": 1.2713823393435086 }, "rgb": [222, 0, 59] }, @@ -208770,23 +208770,23 @@ "year": 1768, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -8.265960949844398, - "c2": -1.040648911719515, - "c3": 3.3024427292311813, - "c4": -38.88700686232221, - "c5": 16.596678052477124, - "c6": -10.280574538645212, - "c7": -38.929780879991824 + "points": { + "c1": 38.87271921508985, + "c2": -39.3355067679636, + "c3": 28.26699671073944, + "c4": 42.58860487628572, + "c5": -31.707058350985953, + "c6": -18.929139144490044, + "c7": 8.168700067968928 }, - "vertexSeeds": { - "c1": 11.316227404422081, - "c2": 10.728346120361508, - "c3": 8.811888931953412, - "c4": 10.433591321504787, - "c5": 9.0483250251876, - "c6": 9.647715663359431, - "c7": 9.33908619366186 + "offsets": { + "c1": 19.19093851132686, + "c2": 16.449375866851586, + "c3": 13.70781322237633, + "c4": 10.966250577901057, + "c5": 8.224687933425802, + "c6": 5.483125288950537, + "c7": 2.7415626444752723 }, "rgb": [58, 15, 49] }, @@ -208797,23 +208797,23 @@ "year": 1767, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 29.261699515494584, - "c2": -17.780341048327458, - "c3": 8.065257028969441, - "c4": 21.416640817700575, - "c5": -22.442836180017977, - "c6": 27.99589185064609, - "c7": 28.174876163655952 + "points": { + "c1": 19.931219239445205, + "c2": 13.345386582185803, + "c3": -15.880261229638407, + "c4": 6.421037409964065, + "c5": 17.519310958157206, + "c6": 26.93759011057174, + "c7": 4.790210803232057 }, - "vertexSeeds": { - "c1": 4.875667438425277, - "c2": 4.880845128551652, - "c3": 4.765821418320025, - "c4": 4.561230592005133, - "c5": 4.579019836117782, - "c6": 4.658700324704016, - "c7": 4.969261868382757 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181232, + "c4": 4.789644012944979, + "c5": 3.5922330097087345, + "c6": 2.3948220064724897, + "c7": 1.1974110032362448 }, "rgb": [222, 0, 59] }, @@ -208824,23 +208824,23 @@ "year": 1768, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -0.9869020718788661, - "c2": -13.475730972701825, - "c3": 33.54477028923246, - "c4": 24.139353547767797, - "c5": 5.529451672037581, - "c6": 16.004357106147793, - "c7": 28.80120018712934 + "points": { + "c1": -23.873847874876972, + "c2": 26.546571492478137, + "c3": 33.454460974076156, + "c4": -7.18205022298741, + "c5": 5.1620002905949605, + "c6": -16.729653257039793, + "c7": -4.740180583415096 }, - "vertexSeeds": { - "c1": 8.617223406456318, - "c2": 8.536767419875892, - "c3": 8.779374695646055, - "c4": 8.33268273760418, - "c5": 8.165687178870545, - "c6": 9.015150212902533, - "c7": 9.872159852048531 + "offsets": { + "c1": 16.666666666666664, + "c2": 14.28571428571428, + "c3": 11.904761904761905, + "c4": 9.52380952380952, + "c5": 7.142857142857135, + "c6": 4.76190476190476, + "c7": 2.3809523809523747 }, "rgb": [86, 146, 138] }, @@ -208851,23 +208851,23 @@ "year": 1767, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -31.576808250236205, - "c2": 19.20130297340331, - "c3": -16.172140896910598, - "c4": 29.07123447995769, - "c5": 32.70544433840462, - "c6": -7.643123045412246, - "c7": -30.687937812264202 + "points": { + "c1": 21.312124712040628, + "c2": -26.004426614797175, + "c3": 3.0640162000410314, + "c4": 30.707122167499904, + "c5": -4.4649619074521425, + "c6": -23.152432234136928, + "c7": -22.630554314437475 }, - "vertexSeeds": { - "c1": 5.214088885743971, - "c2": 5.292167134475781, - "c3": 4.487978186708398, - "c4": 4.998258730320171, - "c5": 4.120303001226658, - "c6": 5.249254362199094, - "c7": 4.718025558288068 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -208878,23 +208878,23 @@ "year": 1768, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 12.61503656494066, - "c2": -6.043673722096223, - "c3": -10.039844318395438, - "c4": -9.807341505972442, - "c5": -31.316958934704687, - "c6": 2.4743027567985507, - "c7": 18.363826477507004 + "points": { + "c1": 16.763944218891012, + "c2": -32.705522057734335, + "c3": -19.435807619667806, + "c4": -28.363894438050792, + "c5": -28.588092100538088, + "c6": 10.022229154521767, + "c7": 21.30969901199056 }, - "vertexSeeds": { - "c1": 3.9947216520256426, - "c2": 3.595649655187295, - "c3": 3.9986212665636645, - "c4": 4.027922496773309, - "c5": 3.4195986840696593, - "c6": 4.018930200666544, - "c7": 3.834017363279936 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406381, + "c3": 4.831252889505318, + "c4": 3.8650023116042553, + "c5": 2.898751733703188, + "c6": 1.9325011558021252, + "c7": 0.9662505779010626 }, "rgb": [58, 15, 49] }, @@ -208905,23 +208905,23 @@ "year": 1767, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 23.045545899309516, - "c2": 23.28329348460096, - "c3": 3.4211239019755695, - "c4": 10.70080795373142, - "c5": 13.834283546856732, - "c6": -15.573415726122374, - "c7": -17.194887052276787 + "points": { + "c1": -8.56746742207395, + "c2": -19.00576592596262, + "c3": -8.58622619458042, + "c4": 1.3675399243813615, + "c5": 1.3365012061706878, + "c6": 4.746889847665031, + "c7": -24.3373067278993 }, - "vertexSeeds": { - "c1": 1.8636298730385157, - "c2": 1.8765717399807815, - "c3": 1.8720908990219292, - "c4": 1.8429077957923292, - "c5": 1.9612138087709876, - "c6": 1.9252110025243356, - "c7": 1.96908678567602 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233, + "c3": 2.427184466019416, + "c4": 1.941747572815537, + "c5": 1.4563106796116525, + "c6": 0.9708737864077684, + "c7": 0.4854368932038842 }, "rgb": [238, 201, 159] }, @@ -208932,23 +208932,23 @@ "year": 1768, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -33.435610790422714, - "c2": 32.15918901104975, - "c3": -30.491532923564066, - "c4": 30.00796104413857, - "c5": 24.272265749130668, - "c6": 33.00721180641945, - "c7": 25.06762895385839 + "points": { + "c1": 1.1948497056973508, + "c2": -8.022251092251985, + "c3": -6.190697373530874, + "c4": -40.3251167585033, + "c5": 29.790053861572673, + "c6": 2.806876776834045, + "c7": -37.01438851847363 }, - "vertexSeeds": { - "c1": 2.7113108635761125, - "c2": 2.634569458248163, - "c3": 2.7480961408167253, - "c4": 2.8938475103621437, - "c5": 2.836173648051458, - "c6": 2.6721806253878477, - "c7": 2.6179223973903816 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.773925104022189, + "c5": 2.0804438280166457, + "c6": 1.3869625520110944, + "c7": 0.6934812760055434 }, "rgb": [222, 0, 59] }, @@ -208959,23 +208959,23 @@ "year": 1768, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -21.491983799353136, - "c2": -2.4220242054111907, - "c3": -25.87238151630654, - "c4": 10.716406508964617, - "c5": -35.58524580647712, - "c6": 33.58177522490713, - "c7": 27.54904049340125 + "points": { + "c1": -44.01843134777055, + "c2": 30.28291509821689, + "c3": 18.95786384171602, + "c4": 42.480252115417215, + "c5": 39.02872635351842, + "c6": -30.52805367910198, + "c7": 27.064915329654468 }, - "vertexSeeds": { - "c1": 6.135962283953925, - "c2": 6.215058296926477, - "c3": 6.05307156325164, - "c4": 6.422211981932951, - "c5": 6.516480036650525, - "c6": 6.296780471544658, - "c7": 6.090713798320928 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.40360610263522, + "c3": 7.8363384188626934, + "c4": 6.269070735090146, + "c5": 4.70180305131762, + "c6": 3.134535367545073, + "c7": 1.567267683772526 }, "rgb": [222, 0, 59] }, @@ -208986,23 +208986,23 @@ "year": 1768, "resistanceReported": false, "duration": 52185600, - "curveSeeds": { - "c1": 21.208741290730018, - "c2": 1.7900374716080734, - "c3": -2.4634627292357294, - "c4": 55.40406767530848, - "c5": -41.79956274602747, - "c6": 8.380025011233386, - "c7": 39.797535067534156 + "points": { + "c1": -9.03270521103292, + "c2": -30.626659953410673, + "c3": 48.606527552369755, + "c4": 23.78183722460716, + "c5": 22.17887163604422, + "c6": 33.968826206510144, + "c7": -8.139359474710119 }, - "vertexSeeds": { - "c1": 9.625405154103015, - "c2": 9.610688789021053, - "c3": 9.51210371571756, - "c4": 9.5251573271184, - "c5": 10.237144198062603, - "c6": 9.461597436111887, - "c7": 9.482673201867762 + "offsets": { + "c1": 17.281553398058254, + "c2": 14.81276005547849, + "c3": 12.34396671289877, + "c4": 9.875173370319008, + "c5": 7.406380027739245, + "c6": 4.937586685159504, + "c7": 2.4687933425797626 }, "rgb": [222, 0, 59] }, @@ -209013,23 +209013,23 @@ "year": 1768, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 7.730894178737209, - "c2": -1.718549394568889, - "c3": 4.144222032525676, - "c4": 23.49162716637698, - "c5": 31.52038348566608, - "c6": 8.604827395480378, - "c7": 19.54508999590245 + "points": { + "c1": -13.283929775938848, + "c2": 2.6133642259894856, + "c3": 11.420488496438118, + "c4": -18.156947705249774, + "c5": -19.150680603681852, + "c6": -9.068734562866752, + "c7": -15.48943853718827 }, - "vertexSeeds": { - "c1": 2.8073009243335627, - "c2": 2.692949459937434, - "c3": 2.799361977556826, - "c4": 2.7653102282035533, - "c5": 2.8555335974644303, - "c6": 2.609367702806329, - "c7": 2.595133765666731 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [238, 201, 159] }, @@ -209040,23 +209040,23 @@ "year": 1768, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": -37.95900085403183, - "c2": -17.914661341992165, - "c3": -45.708540535031304, - "c4": 0.6526088068849916, - "c5": -30.34195210833174, - "c6": -0.16534191136258158, - "c7": -7.403813255770821 + "points": { + "c1": -24.56819181022339, + "c2": 1.3838134909230675, + "c3": 2.487119145745325, + "c4": 43.40232476597437, + "c5": -2.4157153632732076, + "c6": -13.038420546829563, + "c7": 8.490158093954058 }, - "vertexSeeds": { - "c1": 2.75605928455582, - "c2": 2.6645535671643326, - "c3": 2.9029493998684117, - "c4": 2.770591076984633, - "c5": 2.8675111959891333, - "c6": 2.926168599890586, - "c7": 2.623355157358425 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [222, 0, 59] }, @@ -209067,23 +209067,23 @@ "year": 1768, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 26.106810269879233, - "c2": 16.980250471632147, - "c3": 31.59082328361903, - "c4": 21.81701339934733, - "c5": 11.691124022119858, - "c6": -22.797363432053125, - "c7": 29.47468757348176 + "points": { + "c1": -21.14647100591754, + "c2": -11.46024187023162, + "c3": 15.095874252065151, + "c4": 29.57288912165515, + "c5": -27.521413770183553, + "c6": 13.70594874851632, + "c7": -25.235736863049585 }, - "vertexSeeds": { - "c1": 6.5808704333956936, - "c2": 5.961675382080619, - "c3": 6.9006132468208925, - "c4": 5.977697753890976, - "c5": 5.855831015934502, - "c6": 6.025060629498032, - "c7": 6.218717521108445 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [222, 0, 59] }, @@ -209094,23 +209094,23 @@ "year": 1768, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -45.04208348891437, - "c2": 31.963702692395493, - "c3": 16.537943294754164, - "c4": -43.476533028990396, - "c5": 39.27564137063373, - "c6": -22.812326401554238, - "c7": -5.144474740656271 + "points": { + "c1": -43.54514920643456, + "c2": -43.95923096977057, + "c3": -28.111320405903637, + "c4": -12.109181983847584, + "c5": -3.640428527886982, + "c6": 38.58000554690067, + "c7": 16.778493167977395 }, - "vertexSeeds": { - "c1": 10.961558005926051, - "c2": 11.409359306095276, - "c3": 11.13994530365991, - "c4": 11.459761613167766, - "c5": 10.880959172526843, - "c6": 11.50111309301035, - "c7": 11.643408486661379 + "offsets": { + "c1": 19.57928802588997, + "c2": 16.78224687933424, + "c3": 13.985205732778555, + "c4": 11.188164586222829, + "c5": 8.39112343966714, + "c6": 5.5940822931114145, + "c7": 2.797041146555689 }, "rgb": [77, 76, 132] }, @@ -209121,23 +209121,23 @@ "year": 1768, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 32.33848739228682, - "c2": 7.091602947509074, - "c3": -24.197049570288804, - "c4": 32.9793764840866, - "c5": 19.636128631388296, - "c6": -12.296435404440803, - "c7": 9.071664854779009 + "points": { + "c1": 12.06099455428803, + "c2": -31.899710657362657, + "c3": 32.92041305587844, + "c4": 3.6422092707870135, + "c5": 32.63373942715782, + "c6": -0.0019353230517111797, + "c7": 8.994452132099056 }, - "vertexSeeds": { - "c1": 4.470877121525985, - "c2": 4.917462172937071, - "c3": 5.335794576288623, - "c4": 4.833054259294894, - "c5": 4.460974032142988, - "c6": 5.05758968260837, - "c7": 4.827866202811966 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -209148,23 +209148,23 @@ "year": 1768, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -5.357623534063158, - "c2": 12.04028074668824, - "c3": -35.18046499968234, - "c4": 44.252113045847665, - "c5": -19.78993190072364, - "c6": 7.405581278640064, - "c7": -21.94086378801167 + "points": { + "c1": -29.153527580630165, + "c2": 37.30697920091086, + "c3": -48.930547779907364, + "c4": 45.08390771546294, + "c5": 14.815476467658698, + "c6": 32.18701555145513, + "c7": 42.85383708766149 }, - "vertexSeeds": { - "c1": 3.4585492227979273, - "c2": 3.4585492227979273, - "c3": 3.4585492227979273, - "c4": 3.4585492227979273, - "c5": 3.4585492227979273, - "c6": 3.4585492227979273, - "c7": 3.4585492227979273 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -209175,23 +209175,23 @@ "year": 1767, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": 16.492596807088464, - "c2": 11.484077295181791, - "c3": -17.347432169614596, - "c4": 1.8421394045192976, - "c5": -3.2148971211536406, - "c6": -9.95838844409517, - "c7": 15.095568080611205 + "points": { + "c1": -9.859915999175106, + "c2": 18.13579055247075, + "c3": -1.9278623920113205, + "c4": 12.344497370634063, + "c5": -10.097759989752957, + "c6": -13.379255841798388, + "c7": -15.643152096326387 }, - "vertexSeeds": { - "c1": 1.401879441640143, - "c2": 1.4660923702865694, - "c3": 1.5102604528379424, - "c4": 1.4686230950689647, - "c5": 1.34147248967428, - "c6": 1.4387522280285467, - "c7": 1.4238096364849215 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.1914008321775325, + "c3": 1.8261673601479411, + "c4": 1.4609338881183536, + "c5": 1.0957004160887662, + "c6": 0.7304669440591788, + "c7": 0.3652334720295874 }, "rgb": [238, 201, 159] }, @@ -209202,23 +209202,23 @@ "year": 1768, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -4.804009012949827, - "c2": -28.833165942904827, - "c3": -25.5957901542141, - "c4": -0.029673720677344306, - "c5": 20.936306296627293, - "c6": -28.178274146126952, - "c7": -28.249731725345004 + "points": { + "c1": 12.660575356898342, + "c2": 13.083569271124858, + "c3": -20.000233836901664, + "c4": 9.819187234971196, + "c5": 31.600881076868347, + "c6": 14.176534091330062, + "c7": 12.163316496188145 }, - "vertexSeeds": { - "c1": 3.110088811212699, - "c2": 3.1346474484583338, - "c3": 2.908537059720073, - "c4": 2.9267949781079046, - "c5": 3.082459502606831, - "c6": 3.1075790197371584, - "c7": 3.015353484822667 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -209229,23 +209229,23 @@ "year": 1769, "resistanceReported": false, "duration": 51926400, - "curveSeeds": { - "c1": -12.56873580276482, - "c2": 45.019027008503656, - "c3": -27.933452950895024, - "c4": -54.1222147768264, - "c5": 30.31656897197172, - "c6": -21.875240611591757, - "c7": -22.84352148004593 + "points": { + "c1": -12.077953121849703, + "c2": -44.70548904111901, + "c3": 45.46294758848954, + "c4": 17.69143526093289, + "c5": 27.058768009670985, + "c6": 7.52154367063217, + "c7": -3.9888945127965627 }, - "vertexSeeds": { - "c1": 5.166537602666877, - "c2": 5.446581046864777, - "c3": 5.169747159853307, - "c4": 5.192024513916401, - "c5": 5.348559947002913, - "c6": 5.127193156527668, - "c7": 5.439469749304351 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342573, + "c3": 6.518723994452158, + "c4": 5.214979195561722, + "c5": 3.9112343966712864, + "c6": 2.6074895977808503, + "c7": 1.303744798890436 }, "rgb": [86, 146, 138] }, @@ -209256,23 +209256,23 @@ "year": 1768, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 30.51788700136141, - "c2": 9.079789624703608, - "c3": 40.17135535936304, - "c4": -15.70399526258445, - "c5": -7.884518043790429, - "c6": -21.665121478729557, - "c7": -14.758135358774755 + "points": { + "c1": -10.031457381540491, + "c2": 36.724847768221544, + "c3": -7.38745340322474, + "c4": -19.257092252910006, + "c5": 22.85097239060861, + "c6": 21.242486683417646, + "c7": 16.136904345199923 }, - "vertexSeeds": { - "c1": 2.5566854823260003, - "c2": 2.658316971833065, - "c3": 2.5768580651172077, - "c4": 2.6707102032431345, - "c5": 2.8084059987237353, - "c6": 2.7862328531337113, - "c7": 2.8626720885665122 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [58, 15, 49] }, @@ -209283,23 +209283,23 @@ "year": 1768, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": 19.33964619737222, - "c2": 19.432345648872897, - "c3": -20.998714790089554, - "c4": -17.927332501832588, - "c5": 29.27170529716392, - "c6": 41.805278189807055, - "c7": -20.170547320971238 + "points": { + "c1": -41.627714845467175, + "c2": 23.774063658297408, + "c3": 10.231939506042018, + "c4": 4.072525366234508, + "c5": 41.32164181836434, + "c6": 44.113854576464064, + "c7": 27.846205283417348 }, - "vertexSeeds": { - "c1": 6.256476683937824, - "c2": 6.256476683937824, - "c3": 6.256476683937824, - "c4": 6.256476683937824, - "c5": 6.256476683937824, - "c6": 6.256476683937824, - "c7": 6.256476683937824 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -209310,23 +209310,23 @@ "year": 1768, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 30.088204132547617, - "c2": -0.6089069584826987, - "c3": 19.84812167367088, - "c4": -8.699082194597587, - "c5": -22.639349220423775, - "c6": -29.325941149520037, - "c7": 14.846213402355879 + "points": { + "c1": 7.601178655855385, + "c2": 31.613057660904147, + "c3": -33.52929442268863, + "c4": 8.324098397678718, + "c5": -28.99776816926538, + "c6": 13.374490296104923, + "c7": -5.735679324895671 }, - "vertexSeeds": { - "c1": 7.261851600583468, - "c2": 7.063452147708797, - "c3": 7.014653508064621, - "c4": 7.037936016783807, - "c5": 7.076241074029896, - "c6": 7.009397083702834, - "c7": 7.025715553622245 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083218, + "c3": 8.668515950069349, + "c4": 6.934812760055479, + "c5": 5.201109570041609, + "c6": 3.4674063800277395, + "c7": 1.7337031900138697 }, "rgb": [86, 146, 138] }, @@ -209337,23 +209337,23 @@ "year": 1768, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -3.3287007552412433, - "c2": 11.418405255434834, - "c3": 34.32174667793035, - "c4": -3.307098820561663, - "c5": 13.07114865976208, - "c6": -7.619609907542774, - "c7": 10.55947190699343 + "points": { + "c1": 16.261875475102038, + "c2": -30.17614993808236, + "c3": -9.526921521400464, + "c4": 17.856940849044584, + "c5": 29.061198693968763, + "c6": -23.002780441281264, + "c7": 11.18397119088715 }, - "vertexSeeds": { - "c1": 10.388021729019394, - "c2": 10.311168985265862, - "c3": 10.372533638126272, - "c4": 10.301206009218461, - "c5": 10.340768636249727, - "c6": 10.308557085480334, - "c7": 10.303253480340873 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.868238557559113, + "c3": 12.39019879796573, + "c4": 9.912159038372742, + "c5": 7.4341192787793595, + "c6": 4.956079519186371, + "c7": 2.4780397595929884 }, "rgb": [238, 201, 159] }, @@ -209364,23 +209364,23 @@ "year": 1768, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -19.474292236690875, - "c2": 20.32501274561347, - "c3": 7.202280150248264, - "c4": 3.62897720667943, - "c5": -22.852503650952798, - "c6": -20.036476378140627, - "c7": -1.8357109381630323 + "points": { + "c1": -16.330728780071457, + "c2": 2.325183600102065, + "c3": -23.722906624223445, + "c4": -24.938366854418298, + "c5": -15.254619456288843, + "c6": 16.432987112907206, + "c7": -2.658203556421139 }, - "vertexSeeds": { - "c1": 7.238183677856746, - "c2": 7.9315140448020145, - "c3": 5.260256904872011, - "c4": 6.197460079383626, - "c5": 7.745711659062075, - "c6": 5.494793997210386, - "c7": 6.338627639505187 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.0374479889043, + "c3": 10.864539990753583, + "c4": 8.691631992602867, + "c5": 6.5187239944521504, + "c6": 4.345815996301434, + "c7": 2.172907998150718 }, "rgb": [77, 76, 132] }, @@ -209391,23 +209391,23 @@ "year": 1768, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -11.406609490012933, - "c2": 12.084989919893655, - "c3": 14.35990694479364, - "c4": 26.076223325906344, - "c5": -0.7974943612065921, - "c6": 26.784303144152855, - "c7": -23.019653732842468 + "points": { + "c1": 13.357112383661807, + "c2": 30.566314608446987, + "c3": 25.402792123263005, + "c4": 0.24935130867825706, + "c5": 30.997753941486664, + "c6": 22.01280115281729, + "c7": 12.81824807594321 }, - "vertexSeeds": { - "c1": 4.585188813115242, - "c2": 4.753898081904995, - "c3": 4.934232364198087, - "c4": 4.8035658923753, - "c5": 4.781744303426671, - "c6": 4.788274854463428, - "c7": 4.951307264403288 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819698, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.243643088303281 }, "rgb": [77, 76, 132] }, @@ -209418,23 +209418,23 @@ "year": 1768, "resistanceReported": false, "duration": 46051200, - "curveSeeds": { - "c1": 31.199060561638184, - "c2": -46.11463679385194, - "c3": -55.81116387876139, - "c4": 23.50791159123127, - "c5": -26.39696929030716, - "c6": 29.18489246226131, - "c7": 25.897988467939307 + "points": { + "c1": 5.466662706955752, + "c2": 28.580218733589483, + "c3": -14.703361501084565, + "c4": -12.850273151846714, + "c5": 33.29219804021033, + "c6": 5.204642977582786, + "c7": -29.12388735354503 }, - "vertexSeeds": { - "c1": 7.971559168491621, - "c2": 8.07593333026286, - "c3": 9.192496570647053, - "c4": 8.099969968297096, - "c5": 9.341294908783059, - "c6": 8.110518123974947, - "c7": 6.819275835774551 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708737, + "c3": 11.326860841423949, + "c4": 9.06148867313916, + "c5": 6.796116504854372, + "c6": 4.530744336569581, + "c7": 2.2653721682847907 }, "rgb": [58, 15, 49] }, @@ -209445,23 +209445,23 @@ "year": 1768, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -10.63112446072969, - "c2": 12.8946322960307, - "c3": -32.23267397470336, - "c4": 7.178108337239117, - "c5": -26.682166864453237, - "c6": -40.235821984736496, - "c7": -1.3964055146001044 + "points": { + "c1": 8.55705483322405, + "c2": 12.40975285351145, + "c3": 0.7313406097739943, + "c4": -28.015544684546654, + "c5": 11.321892956346439, + "c6": 0.8388321351978547, + "c7": -11.83754614531744 }, - "vertexSeeds": { - "c1": 4.57971729800619, - "c2": 4.921135302902191, - "c3": 4.521223436259551, - "c4": 4.239138862344747, - "c5": 4.8683357432488235, - "c6": 4.900720404858266, - "c7": 4.978430308199552 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538142, + "c3": 6.056403143781783, + "c4": 4.845122515025431, + "c5": 3.633841886269073, + "c6": 2.4225612575127156, + "c7": 1.2112806287563578 }, "rgb": [238, 201, 159] }, @@ -209472,23 +209472,23 @@ "year": 1768, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 11.080267547253385, - "c2": 33.858225929859685, - "c3": -11.8735252935816, - "c4": 21.91888780795204, - "c5": -29.953815315112617, - "c6": -7.997510311283765, - "c7": 17.415628763123102 + "points": { + "c1": -6.866327775835394, + "c2": -25.351261260037106, + "c3": -1.738293279217217, + "c4": -32.957193510749555, + "c5": 3.345223075932182, + "c6": 15.226668340076458, + "c7": -21.64171542212447 }, - "vertexSeeds": { - "c1": 4.86648937197862, - "c2": 4.881625822217987, - "c3": 4.593100219770246, - "c4": 4.666783160749692, - "c5": 4.929213448260467, - "c6": 5.099612500888547, - "c7": 4.9249761708178665 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658804, + "c3": 6.125751271382339, + "c4": 4.900601017105873, + "c5": 3.6754507628294073, + "c6": 2.4503005085529366, + "c7": 1.2251502542764707 }, "rgb": [222, 0, 59] }, @@ -209499,23 +209499,23 @@ "year": 1768, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -6.63880594659301, - "c2": -8.20296790429716, - "c3": -23.673269746039605, - "c4": 24.67543315288745, - "c5": 22.34976545361252, - "c6": -16.641417477864184, - "c7": -33.01421366760427 + "points": { + "c1": -18.379242979161685, + "c2": -0.8632615021018282, + "c3": -21.758007081929687, + "c4": -9.136063418653904, + "c5": 29.17869865040126, + "c6": 32.9978380177638, + "c7": 38.901178413545125 }, - "vertexSeeds": { - "c1": 5.538965727593232, - "c2": 5.594935907089352, - "c3": 5.354826220151112, - "c4": 5.361795251851058, - "c5": 5.553705342044256, - "c6": 5.6199207729897465, - "c7": 5.973827555562135 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509019, + "c3": 7.189089227924175, + "c4": 5.751271382339342, + "c5": 4.313453536754509, + "c6": 2.8756356911696654, + "c7": 1.4378178455848327 }, "rgb": [238, 201, 159] }, @@ -209526,23 +209526,23 @@ "year": 1768, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -31.426259057067952, - "c2": 32.3264245104969, - "c3": 29.999884087003203, - "c4": 24.436773358741, - "c5": -8.1068771797813, - "c6": 17.691417506416073, - "c7": 23.756220654691624 + "points": { + "c1": 31.383901044682112, + "c2": -2.573352129842192, + "c3": 26.294044726119047, + "c4": -18.968875364104704, + "c5": 13.325520276242251, + "c6": 12.913288779271447, + "c7": 21.216165413477277 }, - "vertexSeeds": { - "c1": 6.50952789559301, - "c2": 6.575570743747793, - "c3": 6.563552013463061, - "c4": 6.524473978644651, - "c5": 6.561923424074646, - "c6": 6.569363576938133, - "c7": 6.517896693537343 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675495, + "c3": 7.859454461396298, + "c4": 6.287563569116945, + "c5": 4.715672676837747, + "c6": 3.1437817845585507, + "c7": 1.5718908922791972 }, "rgb": [58, 15, 49] }, @@ -209553,23 +209553,23 @@ "year": 1768, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -20.751945809365488, - "c2": -0.21142502398815566, - "c3": -16.620548916940095, - "c4": -10.91224083938246, - "c5": -15.594760503099753, - "c6": -3.7410905538373704, - "c7": 12.414132917984304 + "points": { + "c1": -15.202405410839525, + "c2": 17.78100669630144, + "c3": -5.143372669644986, + "c4": -20.627759228300114, + "c5": 22.991292130850496, + "c6": -16.541154744798426, + "c7": -7.339924930590975 }, - "vertexSeeds": { - "c1": 3.8160394247980483, - "c2": 3.946936166853983, - "c3": 3.415517106923587, - "c4": 3.494798356263553, - "c5": 3.870401215957744, - "c6": 3.662605167115533, - "c7": 4.070729951043999 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848822, + "c3": 5.085529357374015, + "c4": 4.0684234858992125, + "c5": 3.051317614424411, + "c6": 2.034211742949609, + "c7": 1.0171058714748022 }, "rgb": [58, 15, 49] }, @@ -209580,23 +209580,23 @@ "year": 1768, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -3.9915841847068307, - "c2": -16.679284947861337, - "c3": 29.596585229873824, - "c4": -4.831315606662024, - "c5": 45.08513553466588, - "c6": -18.51254858916958, - "c7": 12.608713567312208 + "points": { + "c1": -23.882273088870164, + "c2": 44.31096116120051, + "c3": 35.88213400598498, + "c4": 4.430653900254946, + "c5": -33.4752788702004, + "c6": -17.83965077187391, + "c7": 2.8547609030006527 }, - "vertexSeeds": { - "c1": 8.532139391767242, - "c2": 8.645053102101995, - "c3": 8.7282585767526, - "c4": 8.724370803466675, - "c5": 8.617940431744366, - "c6": 8.519724566755722, - "c7": 8.710104178550008 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220505, + "c3": 10.471567267683781, + "c4": 8.377253814147004, + "c5": 6.28294036061028, + "c6": 4.188626907073502, + "c7": 2.094313453536723 }, "rgb": [238, 201, 159] }, @@ -209607,23 +209607,23 @@ "year": 1767, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 15.937469696063722, - "c2": 17.50462743599177, - "c3": 19.14365755552307, - "c4": 25.051029507322987, - "c5": -8.692543100779112, - "c6": -8.93035915245012, - "c7": 13.558021119458083 + "points": { + "c1": 11.806612351388097, + "c2": 17.016460127808188, + "c3": 7.560378630562717, + "c4": 0.6351874299602684, + "c5": -21.823931451813486, + "c6": 2.5365805275422915, + "c7": -16.40857424424711 }, - "vertexSeeds": { - "c1": 7.792119337244664, - "c2": 6.893069161879568, - "c3": 7.049201796835029, - "c4": 7.280960760788872, - "c5": 7.052066226230516, - "c6": 8.134716436500277, - "c7": 7.359897623610869 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134532, + "c3": 9.847434119278777, + "c4": 7.877947295423029, + "c5": 5.908460471567271, + "c6": 3.9389736477115145, + "c7": 1.9694868238557572 }, "rgb": [58, 15, 49] }, @@ -209634,23 +209634,23 @@ "year": 1768, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -12.996266899590633, - "c2": -10.45992208782522, - "c3": 21.15613345927104, - "c4": 15.773280115920578, - "c5": -6.73677990912568, - "c6": 1.1400890587086145, - "c7": 6.945994701399584 + "points": { + "c1": 4.430250353410422, + "c2": 21.471298421952177, + "c3": -26.302898887798293, + "c4": 25.005736773616505, + "c5": 1.7878030167349195, + "c6": -15.289926577410277, + "c7": 18.35983529706138 }, - "vertexSeeds": { - "c1": 3.9930784339379954, - "c2": 4.020865918451772, - "c3": 4.162308538813143, - "c4": 4.1953036474099115, - "c5": 4.230083597097799, - "c6": 4.083053403151009, - "c7": 4.216860446868861 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -209661,23 +209661,23 @@ "year": 1768, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -39.898650483665286, - "c2": 26.888545423556863, - "c3": 37.898344950970724, - "c4": 1.5920438206651326, - "c5": 39.70352848368009, - "c6": -32.423015248168454, - "c7": -35.04150488547655 + "points": { + "c1": -34.622097698916654, + "c2": 35.24900525655896, + "c3": -28.568655608999425, + "c4": -6.9862928953167795, + "c5": 45.49593441266589, + "c6": 2.6684722729163184, + "c7": -35.442866825438735 }, - "vertexSeeds": { - "c1": 1.4512777773242187, - "c2": 1.4753251636739158, - "c3": 1.36771716057203, - "c4": 1.510223329618338, - "c5": 1.4085980339865412, - "c6": 1.3639660078538272, - "c7": 1.5073216945213828 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257975, + "c3": 1.8723994452149793, + "c4": 1.4979195561719834, + "c5": 1.1234396671289875, + "c6": 0.7489597780859917, + "c7": 0.37447988904299584 }, "rgb": [222, 0, 59] }, @@ -209688,23 +209688,23 @@ "year": 1768, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -2.378810120012517, - "c2": 25.309396796878566, - "c3": -16.56193298340795, - "c4": -27.943544504352204, - "c5": -22.934665735996, - "c6": 8.305459072667993, - "c7": -19.039090874843048 + "points": { + "c1": 22.05866101858718, + "c2": -30.124503323609822, + "c3": 16.40421677338462, + "c4": -13.322822845590945, + "c5": 0.884628275065694, + "c6": -5.698459320471223, + "c7": -6.2016720475727425 }, - "vertexSeeds": { - "c1": 3.6225479403976184, - "c2": 3.4567844538906973, - "c3": 3.694905440625238, - "c4": 3.665480833557453, - "c5": 3.5222412720157115, - "c6": 3.585687502566039, - "c7": 3.6768276097206662 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [238, 201, 159] }, @@ -209715,23 +209715,23 @@ "year": 1768, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -16.5387744555131, - "c2": 25.42586981543402, - "c3": 27.301639120556125, - "c4": -22.254386153205495, - "c5": -15.139035116052703, - "c6": -3.221791303823718, - "c7": 15.074292065256913 + "points": { + "c1": -3.8824144038584727, + "c2": -22.133288368491417, + "c3": 13.965510308440024, + "c4": -6.122175959401325, + "c5": 29.637468636516694, + "c6": 24.441876329439523, + "c7": -26.72495852807926 }, - "vertexSeeds": { - "c1": 4.768442885061271, - "c2": 4.302109846998846, - "c3": 4.500440219959095, - "c4": 4.3800750111093665, - "c5": 4.785193711377503, - "c6": 4.1904666608603955, - "c7": 4.438814211944745 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [86, 146, 138] }, @@ -209742,23 +209742,23 @@ "year": 1768, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 3.244672477401444, - "c2": -21.14010380998269, - "c3": 24.351716665353052, - "c4": 7.618466622405748, - "c5": -48.15421748541836, - "c6": -14.064661108351302, - "c7": -30.81060518832354 + "points": { + "c1": 42.78780612050319, + "c2": -50.79019081237339, + "c3": -30.585284883974943, + "c4": -26.39214008103319, + "c5": 19.302683041167697, + "c6": -0.7063552673521372, + "c7": 10.117263126797106 }, - "vertexSeeds": { - "c1": 1.2411663454026869, - "c2": 1.2432838262296841, - "c3": 1.185855113979248, - "c4": 1.2591575447160208, - "c5": 1.1685530884639483, - "c6": 1.2254882519222976, - "c7": 1.1869224668072724 + "offsets": { + "c1": 2.1359223300970873, + "c2": 1.8307905686546488, + "c3": 1.5256588072122044, + "c4": 1.220527045769763, + "c5": 0.9153952843273214, + "c6": 0.6102635228848831, + "c7": 0.3051317614424384 }, "rgb": [238, 201, 159] }, @@ -209769,23 +209769,23 @@ "year": 1768, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -14.729673241526339, - "c2": 25.499830587656323, - "c3": 26.928479269296634, - "c4": 8.266316783814606, - "c5": -11.000620855408336, - "c6": -24.494757108015854, - "c7": -14.735314420065698 + "points": { + "c1": -20.88781262662892, + "c2": 1.4670008850125633, + "c3": -8.651781040686256, + "c4": 9.678198871800209, + "c5": 16.956635182346258, + "c6": 23.662946124945197, + "c7": 18.87389944737777 }, - "vertexSeeds": { - "c1": 2.5093590647833275, - "c2": 2.2346858502097686, - "c3": 2.410402630702589, - "c4": 2.497704679995297, - "c5": 2.46941634611772, - "c6": 2.4463867978458547, - "c7": 2.44569516411753 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269072, + "c3": 3.0282015718908935, + "c4": 2.422561257512716, + "c5": 1.816920943134538, + "c6": 1.2112806287563558, + "c7": 0.6056403143781779 }, "rgb": [86, 146, 138] }, @@ -209796,23 +209796,23 @@ "year": 1768, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -16.515113429688988, - "c2": -35.8636586333897, - "c3": 45.78161331280157, - "c4": -10.735513800708922, - "c5": -17.942648737954567, - "c6": -10.86688020246779, - "c7": -23.008138889549777 + "points": { + "c1": 17.791205643824412, + "c2": 27.654292582556607, + "c3": 23.496097574665583, + "c4": 3.0224466487228625, + "c5": -9.509496827923634, + "c6": 6.149520254923125, + "c7": 0.7438651569806325 }, - "vertexSeeds": { - "c1": 4.685503087112327, - "c2": 4.986317249447603, - "c3": 4.8904345085383705, - "c4": 4.872438097145904, - "c5": 4.838681645668203, - "c6": 4.665043399478053, - "c7": 4.634798389698121 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658806, + "c3": 6.125751271382336, + "c4": 4.900601017105869, + "c5": 3.6754507628294073, + "c6": 2.450300508552938, + "c7": 1.225150254276469 }, "rgb": [77, 76, 132] }, @@ -209823,23 +209823,23 @@ "year": 1768, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -0.2644740462694699, - "c2": -24.419149454429213, - "c3": -20.83604145373529, - "c4": 5.680077219343925, - "c5": 19.193980582084254, - "c6": -9.829548442114813, - "c7": -21.424519898862243 + "points": { + "c1": -23.0907139119655, + "c2": -3.1930576629539438, + "c3": 30.991878739925994, + "c4": -11.236000587460591, + "c5": -0.8397884527754158, + "c6": -32.585812701546274, + "c7": 2.003051032516751 }, - "vertexSeeds": { - "c1": 4.273897655746587, - "c2": 4.599500653312884, - "c3": 4.96951187295075, - "c4": 4.729321298658596, - "c5": 5.124440287595461, - "c6": 5.2650115989589805, - "c7": 4.679055022598346 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940356, + "c3": 6.287563569116967, + "c4": 5.030050855293574, + "c5": 3.7725381414701804, + "c6": 2.515025427646787, + "c7": 1.2575127138233935 }, "rgb": [58, 15, 49] }, @@ -209850,23 +209850,23 @@ "year": 1768, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -31.927233955612717, - "c2": -27.399884063060576, - "c3": 22.703588241885747, - "c4": -5.006588248721389, - "c5": -31.270745203389477, - "c6": 8.532970358925517, - "c7": -5.277076400834865 + "points": { + "c1": -19.932215047851678, + "c2": -5.13110390404718, + "c3": -8.645423802749072, + "c4": 13.059596343393494, + "c5": 19.623172428508973, + "c6": -35.98923942785395, + "c7": 19.536147281925068 }, - "vertexSeeds": { - "c1": 3.746757979831607, - "c2": 3.321423081786027, - "c3": 3.756063785445454, - "c4": 3.7938722157632436, - "c5": 3.603985906150598, - "c6": 3.780270850868997, - "c7": 3.7735604030156673 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [86, 146, 138] }, @@ -209877,23 +209877,23 @@ "year": 1768, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -15.5058409558956, - "c2": 6.757591762697128, - "c3": -12.676269432979915, - "c4": -20.508152880521372, - "c5": -3.451049135307869, - "c6": -4.474636613223531, - "c7": -14.309379833517912 + "points": { + "c1": 18.199411698841363, + "c2": -13.44111774208201, + "c3": 20.478569597053838, + "c4": 25.045976824559926, + "c5": 8.561707251905876, + "c6": -26.671432496540923, + "c7": 8.009512102890415 }, - "vertexSeeds": { - "c1": 3.477679517942794, - "c2": 3.475393525828668, - "c3": 3.681185078787032, - "c4": 3.64307777372365, - "c5": 3.305554293791086, - "c6": 3.671828561629719, - "c7": 3.578050147339889 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435504, + "c4": 3.5506241331484096, + "c5": 2.662968099861307, + "c6": 1.7753120665742048, + "c7": 0.8876560332871024 }, "rgb": [86, 146, 138] }, @@ -209904,23 +209904,23 @@ "year": 1768, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 17.16414480625755, - "c2": 25.009748483753736, - "c3": 0.509579569776772, - "c4": 23.678202370577534, - "c5": -12.982018146933484, - "c6": -17.8873090984289, - "c7": -9.429625375045426 + "points": { + "c1": -19.999836650629693, + "c2": 6.151483616485837, + "c3": 9.50466163671555, + "c4": 9.77983046286457, + "c5": 11.141228047960912, + "c6": 4.488835672334499, + "c7": 16.71681260704867 }, - "vertexSeeds": { - "c1": 2.5463819485559656, - "c2": 2.36254189921261, - "c3": 2.4417362289700053, - "c4": 2.5531794648646233, - "c5": 2.40018182256924, - "c6": 2.5399732872055742, - "c7": 2.339199260904022 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.91123439667129, + "c3": 3.2593619972260757, + "c4": 2.607489597780861, + "c5": 1.9556171983356467, + "c6": 1.3037447988904292, + "c7": 0.6518723994452146 }, "rgb": [77, 76, 132] }, @@ -209931,23 +209931,23 @@ "year": 1768, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -37.616030693913025, - "c2": -30.28244270729372, - "c3": -30.092563251834108, - "c4": -34.0517337638026, - "c5": -17.24434428002044, - "c6": 16.93048303565145, - "c7": 17.499211769745564 + "points": { + "c1": -37.03443863195107, + "c2": 37.47167488225103, + "c3": 31.853732427130886, + "c4": 37.222224303181555, + "c5": 40.069377010574975, + "c6": 22.53630494142113, + "c7": -21.83597144922035 }, - "vertexSeeds": { - "c1": 4.370463806999793, - "c2": 4.375429701740494, - "c3": 4.404141012303842, - "c4": 4.352750873644138, - "c5": 4.322011836268972, - "c6": 4.340309164989313, - "c7": 4.298180659631198 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170591, + "c3": 5.270457697642153, + "c4": 4.216366158113716, + "c5": 3.162274618585313, + "c6": 2.1081830790568756, + "c7": 1.0540915395284378 }, "rgb": [238, 201, 159] }, @@ -209958,23 +209958,23 @@ "year": 1768, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -10.157676194454648, - "c2": 8.414571575471939, - "c3": 28.784180401828984, - "c4": 24.144266533745956, - "c5": 27.517536554651976, - "c6": 18.856280967874945, - "c7": -15.89295380989647 + "points": { + "c1": 3.38900317683904, + "c2": -9.502934786525898, + "c3": -22.528147581929353, + "c4": -18.25844978775816, + "c5": 6.784884061524181, + "c6": -13.870744830455678, + "c7": 26.46191119745579 }, - "vertexSeeds": { - "c1": 9.867704735692632, - "c2": 10.292936070163163, - "c3": 10.40913618311786, - "c4": 10.401812837656262, - "c5": 10.200334431884864, - "c6": 10.015291994256188, - "c7": 10.082704988966315 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599167, + "c3": 12.413314840499307, + "c4": 9.930651872399444, + "c5": 7.447988904299583, + "c6": 4.965325936199722, + "c7": 2.482662968099861 }, "rgb": [58, 15, 49] }, @@ -209985,23 +209985,23 @@ "year": 1768, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 2.7602451871830453, - "c2": -31.65644304352564, - "c3": -0.7062680155146239, - "c4": -12.023692630691777, - "c5": -16.769085313738568, - "c6": -4.208485907237719, - "c7": 24.069792712138167 + "points": { + "c1": -28.891166075068394, + "c2": 19.356959602910038, + "c3": 13.175885344103648, + "c4": 16.161688477859165, + "c5": -32.24224376960953, + "c6": 12.248923115182478, + "c7": -0.5107409290749629 }, - "vertexSeeds": { - "c1": 3.814011364484061, - "c2": 4.247192808640271, - "c3": 3.8750317075804546, - "c4": 4.118716780884461, - "c5": 4.148103646295638, - "c6": 3.7044217899816223, - "c7": 3.6828957289275346 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292675, + "c3": 5.131761442441053, + "c4": 4.105409153952845, + "c5": 3.0790568654646306, + "c6": 2.0527045769764225, + "c7": 1.0263522884882146 }, "rgb": [222, 0, 59] }, @@ -210012,23 +210012,23 @@ "year": 1767, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -15.350203218448069, - "c2": -8.201322867682828, - "c3": 16.927278302394278, - "c4": 15.432076043749909, - "c5": 6.307046926099414, - "c6": -18.897070860695983, - "c7": 6.288178544299363 + "points": { + "c1": -16.52035514070135, + "c2": -15.123337265055458, + "c3": 6.402351554461461, + "c4": -4.825648795220271, + "c5": 16.437731099229637, + "c6": 17.942344034890553, + "c7": 7.621255823634733 }, - "vertexSeeds": { - "c1": 2.844664200514602, - "c2": 3.134642822904594, - "c3": 3.035338354144207, - "c4": 2.510304378266237, - "c5": 2.9857960319334955, - "c6": 2.9725868379349665, - "c7": 2.6427174077281688 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717061, + "c3": 3.860379103097549, + "c4": 3.0883032824780408, + "c5": 2.316227461858529, + "c6": 1.5441516412390204, + "c7": 0.7720758206195122 }, "rgb": [86, 146, 138] }, @@ -210039,23 +210039,23 @@ "year": 1769, "resistanceReported": false, "duration": 51235200, - "curveSeeds": { - "c1": 31.373616363048697, - "c2": 12.189133599402624, - "c3": 10.19073276476098, - "c4": 31.669236342770432, - "c5": 40.29641887179234, - "c6": -38.2239381099556, - "c7": -23.544583938245694 + "points": { + "c1": 47.86089637634409, + "c2": -54.17631106634187, + "c3": -60.22333651406641, + "c4": 31.151422383628685, + "c5": -6.7625359635537805, + "c6": -5.275678151664181, + "c7": 58.069962599616474 }, - "vertexSeeds": { - "c1": 1.4304458603370453, - "c2": 1.2653268652270875, - "c3": 1.3794671383494161, - "c4": 1.4092017420631564, - "c5": 1.4028989231020688, - "c6": 1.3297969589150074, - "c7": 1.4071896074641725 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166417, + "c3": 1.73370319001387, + "c4": 1.3869625520110944, + "c5": 1.0402219140083229, + "c6": 0.6934812760055472, + "c7": 0.3467406380027717 }, "rgb": [58, 15, 49] }, @@ -210066,23 +210066,23 @@ "year": 1768, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 51.39272356308638, - "c2": 42.65541605075734, - "c3": 19.294167313156393, - "c4": -50.28066247387906, - "c5": -45.00317798032884, - "c6": 29.05551489856164, - "c7": 5.736105880261164 + "points": { + "c1": -28.98800557833859, + "c2": 43.427133078628785, + "c3": 27.126549735125252, + "c4": 48.71097449530495, + "c5": -20.46128123790153, + "c6": -27.916078313869217, + "c7": -32.58082906926949 }, - "vertexSeeds": { - "c1": 3.3796048673298356, - "c2": 3.750859532013207, - "c3": 3.3890037367584234, - "c4": 3.5002515216686634, - "c5": 3.771337571078471, - "c6": 3.5916818899791565, - "c7": 3.769095131776057 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [86, 146, 138] }, @@ -210093,23 +210093,23 @@ "year": 1768, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -25.878996609117294, - "c2": 21.10437563874889, - "c3": 14.482357304864522, - "c4": 11.265773358560445, - "c5": -32.866838319212334, - "c6": 34.95774739769894, - "c7": 13.265681756783792 + "points": { + "c1": 27.32429086575469, + "c2": 33.525527911638235, + "c3": -12.109371273159987, + "c4": -34.68443117973674, + "c5": 9.024612664917392, + "c6": -23.493819251554314, + "c7": 33.234939406042656 }, - "vertexSeeds": { - "c1": 7.49086877767526, - "c2": 7.458441992020497, - "c3": 6.996315778377493, - "c4": 7.487447057300872, - "c5": 7.01532716933196, - "c6": 7.362650094094336, - "c7": 7.13779883810416 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407298, + "c4": 7.397133610725835, + "c5": 5.54785020804439, + "c6": 3.698566805362927, + "c7": 1.8492834026814635 }, "rgb": [77, 76, 132] }, @@ -210120,23 +210120,23 @@ "year": 1768, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 32.40787897037315, - "c2": -7.304539448941952, - "c3": -0.24100470195040202, - "c4": 30.006026496319677, - "c5": -40.69956859590751, - "c6": 11.421030614146126, - "c7": 11.788019115273123 + "points": { + "c1": -34.45382763085115, + "c2": 5.588833192758962, + "c3": -22.93386507017821, + "c4": -16.400907475107402, + "c5": -37.76551102368213, + "c6": -14.020070134088368, + "c7": 30.979778129127652 }, - "vertexSeeds": { - "c1": 3.30193956673396, - "c2": 2.811707183717423, - "c3": 2.676059956813872, - "c4": 2.958772761415049, - "c5": 2.7121828710487415, - "c6": 2.8102540831880805, - "c7": 3.260574385052686 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388355, + "c3": 4.045307443365696, + "c4": 3.236245954692557, + "c5": 2.4271844660194177, + "c6": 1.6181229773462784, + "c7": 0.8090614886731392 }, "rgb": [222, 0, 59] }, @@ -210147,23 +210147,23 @@ "year": 1768, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 11.973251614531005, - "c2": -5.366846511664786, - "c3": -5.088789285960495, - "c4": -20.785508959356413, - "c5": 23.76494810752089, - "c6": -20.812664361691713, - "c7": -16.23353749276547 + "points": { + "c1": 3.715677191761465, + "c2": 23.978474331348554, + "c3": -22.255845749149138, + "c4": -20.860712779684732, + "c5": 19.778860316135106, + "c6": 1.9027756299376968, + "c7": -22.258776355573588 }, - "vertexSeeds": { - "c1": 4.382651095583822, - "c2": 4.53207936051283, - "c3": 4.480127108267337, - "c4": 4.124947686501393, - "c5": 4.512702913692339, - "c6": 4.242973801377643, - "c7": 3.987980400506548 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.6574202496532555, + "c3": 5.547850208044383, + "c4": 4.438280166435503, + "c5": 3.3287101248266313, + "c6": 2.2191400832177517, + "c7": 1.109570041608873 }, "rgb": [86, 146, 138] }, @@ -210174,23 +210174,23 @@ "year": 1768, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 4.2898544750801335, - "c2": 17.288080480318488, - "c3": -14.785316119460036, - "c4": 26.081620643363078, - "c5": 10.062258789484456, - "c6": -0.4236069992834395, - "c7": 5.568538575556381 + "points": { + "c1": -4.720393519474534, + "c2": 5.494848036653796, + "c3": -7.044276300431402, + "c4": -23.392917944537075, + "c5": -4.24771450069715, + "c6": 10.509205242554675, + "c7": 6.574474685601761 }, - "vertexSeeds": { - "c1": 1.7323357434885764, - "c2": 1.9408853407201585, - "c3": 1.9043016349719417, - "c4": 1.816690098449339, - "c5": 1.7731676210098157, - "c6": 1.7995819048248398, - "c7": 1.736970708785131 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.3347202958853472, + "c4": 1.867776236708275, + "c5": 1.4008321775312074, + "c6": 0.9338881183541395, + "c7": 0.46694405917707194 }, "rgb": [238, 201, 159] }, @@ -210201,23 +210201,23 @@ "year": 1768, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 8.258020205469904, - "c2": 32.59604575655922, - "c3": -17.537106203118114, - "c4": -7.191684504915379, - "c5": 31.76061598647975, - "c6": -8.503245181289074, - "c7": -7.393617041868467 + "points": { + "c1": 32.84957943801611, + "c2": 24.676079613461155, + "c3": 40.99623567071143, + "c4": 37.06221916988456, + "c5": 14.280293199358127, + "c6": 1.2438156731681502, + "c7": -10.94857650546922 }, - "vertexSeeds": { - "c1": 6.664507772020726, - "c2": 6.664507772020726, - "c3": 6.664507772020726, - "c4": 6.664507772020726, - "c5": 6.664507772020726, - "c6": 6.664507772020726, - "c7": 6.664507772020726 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -210228,23 +210228,23 @@ "year": 1768, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 30.716215522021812, - "c2": 8.391383158439453, - "c3": 17.660266464803506, - "c4": -34.62988215759055, - "c5": -31.619005833855844, - "c6": 31.88955980220888, - "c7": 17.66247878521267 + "points": { + "c1": 7.9979235494891014, + "c2": -6.965028903178908, + "c3": 24.589488255619827, + "c4": -0.9572697465914217, + "c5": -9.349126131058721, + "c6": -13.976542940799582, + "c7": 15.941057967463976 }, - "vertexSeeds": { - "c1": 7.007916357956491, - "c2": 7.643711110249194, - "c3": 6.381606599637942, - "c4": 6.653389947787486, - "c5": 7.317108907730449, - "c6": 6.3831162780184005, - "c7": 6.640884673153816 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008322, + "c3": 9.200184928340269, + "c4": 7.3601479426722145, + "c5": 5.520110957004161, + "c6": 3.6800739713361073, + "c7": 1.8400369856680536 }, "rgb": [222, 0, 59] }, @@ -210255,23 +210255,23 @@ "year": 1768, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -21.23185150594744, - "c2": -23.244140412622826, - "c3": 15.387353410903593, - "c4": -21.907958825923306, - "c5": -25.294816646447504, - "c6": -18.444257974362053, - "c7": -31.499282654713255 + "points": { + "c1": 3.215537012301766, + "c2": 21.538238543050014, + "c3": 34.55572825375063, + "c4": 20.82970634745903, + "c5": 10.870718524031886, + "c6": -23.30420671147967, + "c7": 21.474648243562243 }, - "vertexSeeds": { - "c1": 4.439097521771036, - "c2": 4.487472701413529, - "c3": 4.203915062645294, - "c4": 4.677684043987966, - "c5": 4.282418439627512, - "c6": 4.709693821132016, - "c7": 4.14484783564862 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [222, 0, 59] }, @@ -210282,23 +210282,23 @@ "year": 1768, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 6.000286927223712, - "c2": 5.102071204347105, - "c3": -0.9322719768642465, - "c4": 27.18765317054426, - "c5": 8.60095594219517, - "c6": 24.60206693861049, - "c7": 25.501262773641173 + "points": { + "c1": 8.300543579331837, + "c2": 19.844453474256873, + "c3": -27.714694819286915, + "c4": -27.547227529258667, + "c5": 28.73676632229793, + "c6": -11.96909664324447, + "c7": 22.466245429944436 }, - "vertexSeeds": { - "c1": 1.3564987756172695, - "c2": 1.181895142891234, - "c3": 1.3936050608564061, - "c4": 1.2368324039018614, - "c5": 1.2482006418668887, - "c6": 1.2529057084026185, - "c7": 1.2414879656138613 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.0527045769764225, + "c3": 1.7105871474803511, + "c4": 1.3684697179842817, + "c5": 1.0263522884882101, + "c6": 0.6842348589921409, + "c7": 0.34211742949607044 }, "rgb": [222, 0, 59] }, @@ -210309,23 +210309,23 @@ "year": 1768, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -12.779691426221508, - "c2": -15.255264933368768, - "c3": -12.966457324278572, - "c4": 0.2528648580552044, - "c5": 24.32955632581836, - "c6": -3.106977968784136, - "c7": 6.930114008782041 + "points": { + "c1": 17.41702433323747, + "c2": -17.094467837252036, + "c3": 34.523246613178486, + "c4": 23.813073781974687, + "c5": -0.6040083606766942, + "c6": 6.056126324229616, + "c7": -19.831062135006256 }, - "vertexSeeds": { - "c1": 1.6719301024609878, - "c2": 1.6479532240076757, - "c3": 1.5970073673168916, - "c4": 1.723100138409868, - "c5": 1.577112165985918, - "c6": 1.568076071366409, - "c7": 1.6061658328949362 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [238, 201, 159] }, @@ -210336,23 +210336,23 @@ "year": 1768, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 18.92355344279894, - "c2": 20.336856147872645, - "c3": 13.079735110234054, - "c4": -4.62077557553804, - "c5": -5.573564076704706, - "c6": -3.167284992210867, - "c7": -6.56928448949591 + "points": { + "c1": 16.921400945821127, + "c2": -13.198584121393758, + "c3": -6.773379074452134, + "c4": -5.75996554382332, + "c5": 2.4264222960916975, + "c6": -22.57661484899741, + "c7": -14.072751264963879 }, - "vertexSeeds": { - "c1": 3.718973539071025, - "c2": 3.3901978908428716, - "c3": 3.705015308182714, - "c4": 3.3698626643780782, - "c5": 3.4592555999581176, - "c6": 3.573771023893978, - "c7": 3.602755383951628 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [77, 76, 132] }, @@ -210363,23 +210363,23 @@ "year": 1768, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 21.625061759309453, - "c2": -27.557551579422306, - "c3": -4.344626637199973, - "c4": 51.38927162532949, - "c5": 18.254530721400364, - "c6": 3.6083386601484193, - "c7": -3.2538121528650734 + "points": { + "c1": -38.54617379828994, + "c2": -39.84418142773693, + "c3": -10.160870989013944, + "c4": -49.000354015391494, + "c5": -14.815128651884862, + "c6": -12.028686954555212, + "c7": 43.76356219545331 }, - "vertexSeeds": { - "c1": 5.134607576306987, - "c2": 5.088378968099116, - "c3": 5.170826455664056, - "c4": 5.184272282622707, - "c5": 5.3160854925815295, - "c6": 5.110857092674135, - "c7": 5.195669163055044 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221911, + "c3": 6.449375866851588, + "c4": 5.159500693481265, + "c5": 3.869625520110942, + "c6": 2.579750346740646, + "c7": 1.289875173370323 }, "rgb": [222, 0, 59] }, @@ -210390,23 +210390,23 @@ "year": 1768, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 10.61327950471976, - "c2": -5.552446231386774, - "c3": 8.972934172665038, - "c4": 20.389766148639044, - "c5": -20.721290793851956, - "c6": -12.648372997540283, - "c7": -11.047681471614926 + "points": { + "c1": 16.698483956489074, + "c2": -4.195455109835223, + "c3": -20.024104824797085, + "c4": -12.972924354582918, + "c5": 19.344936665388698, + "c6": -26.70414439794526, + "c7": 8.516350870540482 }, - "vertexSeeds": { - "c1": 4.4538782970062085, - "c2": 4.6314810409673735, - "c3": 5.052030064171719, - "c4": 4.892555159581192, - "c5": 4.992408207233361, - "c6": 5.016869673111884, - "c7": 5.062069999334054 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578361, + "c3": 6.079519186315306, + "c4": 4.8636153490522425, + "c5": 3.6477115117891805, + "c6": 2.4318076745261252, + "c7": 1.2159038372630626 }, "rgb": [238, 201, 159] }, @@ -210417,23 +210417,23 @@ "year": 1767, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -5.388707429701068, - "c2": -10.642657275283222, - "c3": 0.47741126169477255, - "c4": 21.71590345460585, - "c5": -15.766970409397395, - "c6": 15.59384377448685, - "c7": 2.5551689459488784 + "points": { + "c1": -19.037164584421838, + "c2": -13.892381521934691, + "c3": 2.230530396432691, + "c4": -11.440115016851433, + "c5": -8.444736609765478, + "c6": 23.263923521806348, + "c7": 16.71684615367633 }, - "vertexSeeds": { - "c1": 7.997015881179477, - "c2": 7.822106828477062, - "c3": 7.561668249388972, - "c4": 7.959524129929491, - "c5": 7.766864511724855, - "c6": 7.892288354527431, - "c7": 7.953501588454481 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.53952843273233, + "c3": 9.616273693943594, + "c4": 7.693018955154887, + "c5": 5.769764216366151, + "c6": 3.8465094775774435, + "c7": 1.9232547387887076 }, "rgb": [77, 76, 132] }, @@ -210444,23 +210444,23 @@ "year": 1768, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 24.5822505734362, - "c2": 4.636101504659386, - "c3": 16.34422880428258, - "c4": 6.872471788917288, - "c5": -6.979134731039348, - "c6": -2.6091537054247738, - "c7": -33.46625800785493 + "points": { + "c1": -11.808862518877426, + "c2": -20.94997219800696, + "c3": 23.974591586795334, + "c4": -4.798168055407473, + "c5": -10.165484606166746, + "c6": -25.0137047968445, + "c7": -19.875458755423505 }, - "vertexSeeds": { - "c1": 5.345708187081545, - "c2": 4.730093815744614, - "c3": 4.172874547726012, - "c4": 4.945921777387799, - "c5": 5.051019434383554, - "c6": 4.251487278569207, - "c7": 4.48528291008493 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221913, + "c3": 6.449375866851593, + "c4": 5.159500693481277, + "c5": 3.8696255201109606, + "c6": 2.57975034674064, + "c7": 1.28987517337032 }, "rgb": [238, 201, 159] }, @@ -210471,23 +210471,23 @@ "year": 1768, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 5.658700239031944, - "c2": -7.872092323443713, - "c3": 17.3570446180795, - "c4": -9.527897299352492, - "c5": 0.7471800589675297, - "c6": 27.29257515868769, - "c7": -28.534423330104964 + "points": { + "c1": -35.44783299755169, + "c2": -8.40472779999914, + "c3": 4.6986469177379036, + "c4": -4.755691623055384, + "c5": 28.82516709754651, + "c6": -14.95482640267802, + "c7": 1.5055119890715787 }, - "vertexSeeds": { - "c1": 4.369677661708579, - "c2": 4.3295899678761, - "c3": 4.339300574090151, - "c4": 4.250819205097435, - "c5": 4.360476235351556, - "c6": 4.436882038194206, - "c7": 4.257869442890821 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251032, + "c3": 5.3166897827092034, + "c4": 4.253351826167355, + "c5": 3.1900138696255262, + "c6": 2.1266759130836776, + "c7": 1.0633379565418484 }, "rgb": [86, 146, 138] }, @@ -210498,23 +210498,23 @@ "year": 1769, "resistanceReported": false, "duration": 46224000, - "curveSeeds": { - "c1": 56.95081629229295, - "c2": -40.5253498146325, - "c3": 33.15311793384537, - "c4": -6.089262963834457, - "c5": 56.08061196307673, - "c6": 45.11012920024407, - "c7": 49.43116657393363 + "points": { + "c1": -51.513129631613104, + "c2": -27.556684543757903, + "c3": 9.611827515968947, + "c4": 54.48831083856937, + "c5": -9.032145451687256, + "c6": -22.069840235631702, + "c7": -46.970150103209285 }, - "vertexSeeds": { - "c1": 5.516706137805927, - "c2": 5.012850702558961, - "c3": 4.605407174786663, - "c4": 4.751816534365332, - "c5": 5.13088002549322, - "c6": 5.599530866925686, - "c7": 4.75611267843371 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664357, + "c3": 6.703652334720299, + "c4": 5.36292186777624, + "c5": 4.022191400832173, + "c6": 2.6814609338881157, + "c7": 1.3407304669440578 }, "rgb": [58, 15, 49] }, @@ -210525,23 +210525,23 @@ "year": 1768, "resistanceReported": true, "duration": 13478400, - "curveSeeds": { - "c1": 9.435063091433815, - "c2": -20.207966551922233, - "c3": 7.483395244510607, - "c4": 1.8142207211387564, - "c5": 8.208274503608035, - "c6": -7.200514899601931, - "c7": -20.19367950918246 + "points": { + "c1": 16.930015982466383, + "c2": 13.024486467898047, + "c3": 13.093228769789693, + "c4": -8.889342517206693, + "c5": -9.449586041182076, + "c6": -11.454658834729702, + "c7": 8.037059897705749 }, - "vertexSeeds": { - "c1": 4.45818812407151, - "c2": 4.455596137251822, - "c3": 4.458464331568888, - "c4": 4.451473410662177, - "c5": 4.463053055076231, - "c6": 4.457907176653282, - "c7": 4.461616130825006 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291293, + "c3": 5.339805825242779, + "c4": 4.271844660194266, + "c5": 3.20388349514554, + "c6": 2.135922330097027, + "c7": 1.0679611650485135 }, "rgb": [222, 0, 59] }, @@ -210552,23 +210552,23 @@ "year": 1768, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 7.9305623498595, - "c2": -24.0494123870565, - "c3": 12.56313257933845, - "c4": 22.423430554933994, - "c5": -0.17064586406154447, - "c6": -4.662480602425806, - "c7": 5.366684242932763 + "points": { + "c1": 2.0335739621223397, + "c2": 21.29463539772332, + "c3": 9.781610150573776, + "c4": -5.83940013516186, + "c5": 28.25351215604953, + "c6": 0.42674945222461247, + "c7": -22.281846774832474 }, - "vertexSeeds": { - "c1": 4.747379789650271, - "c2": 4.6260753665114045, - "c3": 4.427247849362728, - "c4": 4.416143769104102, - "c5": 4.663542697517596, - "c6": 4.736579608384066, - "c7": 4.891720378657735 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176147, + "c3": 5.84835876098012, + "c4": 4.678687008784099, + "c5": 3.5090152565880697, + "c6": 2.3393435043920494, + "c7": 1.1696717521960205 }, "rgb": [58, 15, 49] }, @@ -210579,23 +210579,23 @@ "year": 1768, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -25.022805320630205, - "c2": -1.6674943481625704, - "c3": 16.890476824709687, - "c4": 18.564455133305493, - "c5": 3.807001051524452, - "c6": -10.96736633691113, - "c7": -4.857934232291168 + "points": { + "c1": -34.62811031618486, + "c2": 33.12973411026068, + "c3": 32.728127116787384, + "c4": -11.257614331908023, + "c5": -5.681612394994232, + "c6": -10.261134920413628, + "c7": 2.9301126402061612 }, - "vertexSeeds": { - "c1": 4.276050518381226, - "c2": 4.219935391440173, - "c3": 4.2302940051186875, - "c4": 4.23776776273523, - "c5": 4.208169328790894, - "c6": 4.218667252456045, - "c7": 4.211625716968429 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929264, + "c3": 5.131761442441054, + "c4": 4.105409153952842, + "c5": 3.079056865464632, + "c6": 2.052704576976421, + "c7": 1.0263522884882106 }, "rgb": [58, 15, 49] }, @@ -210606,23 +210606,23 @@ "year": 1768, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -23.43301982842035, - "c2": 39.82550230724375, - "c3": -40.819493403013574, - "c4": -3.4121725729455648, - "c5": 15.036197618283389, - "c6": -35.738773161539214, - "c7": -7.571664960323375 + "points": { + "c1": 22.54475521780222, + "c2": 27.77719807694345, + "c3": 3.67085953725924, + "c4": 10.092138794864887, + "c5": -15.515336985358598, + "c6": -0.9004507797688888, + "c7": 25.77166145849283 }, - "vertexSeeds": { - "c1": 5.766813912020894, - "c2": 5.463249079379395, - "c3": 5.537849380322186, - "c4": 5.7644712766314, - "c5": 5.384045489778454, - "c6": 5.269353043879875, - "c7": 5.322579091552353 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026357, + "c3": 6.911696717521956, + "c4": 5.529357374017567, + "c5": 4.147018030513179, + "c6": 2.7646786870087774, + "c7": 1.3823393435043887 }, "rgb": [222, 0, 59] }, @@ -210633,23 +210633,23 @@ "year": 1769, "resistanceReported": false, "duration": 54086400, - "curveSeeds": { - "c1": 29.901834325802284, - "c2": -48.34425557614868, - "c3": 10.683692006640968, - "c4": -27.459691530838676, - "c5": -15.835703709073194, - "c6": 44.40067943026786, - "c7": 14.44663488416154 + "points": { + "c1": -69.50946834073797, + "c2": 37.26061468345377, + "c3": 50.13391867450565, + "c4": 31.817597440167532, + "c5": 25.771512301984927, + "c6": -19.63864981403823, + "c7": 2.078169716534461 }, - "vertexSeeds": { - "c1": 6.740483947863157, - "c2": 6.86757357729847, - "c3": 6.770625327902432, - "c4": 6.991935287924263, - "c5": 6.949297660649039, - "c6": 6.777407335307573, - "c7": 6.992754669982386 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600566, + "c3": 8.391123439667114, + "c4": 6.712898751733698, + "c5": 5.034674063800283, + "c6": 3.356449375866868, + "c7": 1.6782246879334155 }, "rgb": [86, 146, 138] }, @@ -210660,23 +210660,23 @@ "year": 1768, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 27.48186479367186, - "c2": -9.030626812072086, - "c3": -31.6914530531237, - "c4": 7.116485227766255, - "c5": 8.433246343377348, - "c6": 1.2495899654994957, - "c7": 18.3154899338346 + "points": { + "c1": 13.846849794473691, + "c2": 20.348266229251344, + "c3": 29.518048192826086, + "c4": -28.93652166215261, + "c5": -28.068320730146432, + "c6": 2.0645613702512264, + "c7": -24.90279443766419 }, - "vertexSeeds": { - "c1": 5.4938285251566255, - "c2": 5.677845187468977, - "c3": 5.307791638865412, - "c4": 5.451473120325119, - "c5": 6.015491304472239, - "c6": 5.343947220209243, - "c7": 5.574018435043014 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589455, + "c3": 7.235321312991218, + "c4": 5.78825705039297, + "c5": 4.341192787794734, + "c6": 2.894128525196485, + "c7": 1.4470642625982488 }, "rgb": [77, 76, 132] }, @@ -210687,23 +210687,23 @@ "year": 1768, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 18.215719799098967, - "c2": -7.18479313389167, - "c3": -19.609823421888265, - "c4": 2.8166681898835613, - "c5": -6.743462074554358, - "c6": -14.469753179232047, - "c7": -28.936586178472933 + "points": { + "c1": -2.0906810353270515, + "c2": -28.7576968039023, + "c3": -13.73995300336373, + "c4": 10.702586422690459, + "c5": -26.527731742511442, + "c6": 1.1319269384134998, + "c7": 19.969775673344614 }, - "vertexSeeds": { - "c1": 3.8484192384475873, - "c2": 4.316436116326146, - "c3": 4.3512053384939415, - "c4": 3.8348593192722595, - "c5": 4.042924054755359, - "c6": 4.274147135407751, - "c7": 4.403226770739512 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -210714,23 +210714,23 @@ "year": 1768, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 13.356570919257827, - "c2": -16.831619841878727, - "c3": 19.830548233960442, - "c4": -12.683800038545867, - "c5": 6.273415672602315, - "c6": -1.0955162227761228, - "c7": 22.40194770973165 + "points": { + "c1": -23.767234775906264, + "c2": -25.451452314768105, + "c3": 9.908022343953377, + "c4": 24.401822122346417, + "c5": -17.99537573803539, + "c6": -10.13432635415925, + "c7": -23.58087761735466 }, - "vertexSeeds": { - "c1": 1.8579328493965437, - "c2": 1.8101259458534997, - "c3": 1.7720298770462155, - "c4": 1.939789943635625, - "c5": 1.7767047588319986, - "c6": 1.8357899655091146, - "c7": 1.7522349528775216 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.3347202958853472, + "c4": 1.867776236708275, + "c5": 1.4008321775312074, + "c6": 0.9338881183541395, + "c7": 0.46694405917707194 }, "rgb": [86, 146, 138] }, @@ -210741,23 +210741,23 @@ "year": 1768, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -13.310472062419814, - "c2": -2.3544777981204845, - "c3": -9.665485954256486, - "c4": 4.431402909923534, - "c5": 21.355389950173276, - "c6": -16.867380060772028, - "c7": -23.49861470013952 + "points": { + "c1": 17.168463058990227, + "c2": 22.774627162586064, + "c3": 22.387747532262196, + "c4": -4.220934376019432, + "c5": 25.3302924271918, + "c6": -19.448360716070013, + "c7": 17.465165315619444 }, - "vertexSeeds": { - "c1": 4.723591146169639, - "c2": 4.668550590716791, - "c3": 4.753285601199754, - "c4": 4.681277310929161, - "c5": 4.72891204386839, - "c6": 4.6676059843447595, - "c7": 4.709071019872586 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653253, + "c3": 5.547850208044372, + "c4": 4.43828016643549, + "c5": 3.328710124826645, + "c6": 2.2191400832177637, + "c7": 1.1095700416088818 }, "rgb": [238, 201, 159] }, @@ -210768,23 +210768,23 @@ "year": 1768, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -16.855940863110806, - "c2": 11.97761340741572, - "c3": -2.5325238077174816, - "c4": -13.074729112736241, - "c5": 1.9958282764129187, - "c6": -17.573033601212924, - "c7": -16.449583619062984 + "points": { + "c1": 12.407249793427187, + "c2": -16.726576279163048, + "c3": -5.75912439781186, + "c4": 18.978395540784984, + "c5": -4.175953011223324, + "c6": 22.180418015232757, + "c7": -14.54969064023987 }, - "vertexSeeds": { - "c1": 3.309471080457266, - "c2": 2.570021062350306, - "c3": 2.6663052007491914, - "c4": 2.9492078528910666, - "c5": 2.5028515630879626, - "c6": 2.6430834584093774, - "c7": 2.8104657935955704 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899215, + "c4": 3.254738788719372, + "c5": 2.4410540915395296, + "c6": 1.627369394359687, + "c7": 0.8136846971798443 }, "rgb": [86, 146, 138] }, @@ -210795,23 +210795,23 @@ "year": 1768, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": 38.35810139943601, - "c2": 6.341160656029601, - "c3": 10.579610418655705, - "c4": 50.833431374136, - "c5": 12.549701033160162, - "c6": 29.265412801952138, - "c7": 8.022900071936576 + "points": { + "c1": -13.916924412558416, + "c2": -37.258121393396664, + "c3": 20.651114271089384, + "c4": 17.254420537286364, + "c5": 56.02477989237829, + "c6": -13.696869101750359, + "c7": -8.682017326697647 }, - "vertexSeeds": { - "c1": 5.740813496673154, - "c2": 5.651305563895613, - "c3": 5.6816060385402745, - "c4": 5.70520057209827, - "c5": 5.750144043804409, - "c6": 5.663622851076729, - "c7": 5.715885430953927 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704616, + "c3": 6.726768377253802, + "c4": 5.381414701803077, + "c5": 4.036061026352264, + "c6": 2.6907073509015387, + "c7": 1.3453536754508137 }, "rgb": [58, 15, 49] }, @@ -210822,23 +210822,23 @@ "year": 1768, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 4.005593661204131, - "c2": 0.9728732282371055, - "c3": 15.517107213057134, - "c4": 14.452364668318761, - "c5": -6.956181186202599, - "c6": -13.896354330400104, - "c7": -18.203758990079564 + "points": { + "c1": 12.366047568879022, + "c2": 13.383341050494213, + "c3": 0.5697619406151375, + "c4": 9.003457514981637, + "c5": -14.605917105944606, + "c6": 5.594125925249344, + "c7": 16.745544261058225 }, - "vertexSeeds": { - "c1": 3.280275753191532, - "c2": 2.8041667794611356, - "c3": 2.845690905016115, - "c4": 3.2434633585454153, - "c5": 3.2161175667006026, - "c6": 3.025798863587437, - "c7": 3.0736697979936896 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918167, + "c3": 3.9759593157651416, + "c4": 3.1807674526121112, + "c5": 2.3855755894590858, + "c6": 1.5903837263060556, + "c7": 0.7951918631530254 }, "rgb": [222, 0, 59] }, @@ -210849,23 +210849,23 @@ "year": 1768, "resistanceReported": false, "duration": 41644800, - "curveSeeds": { - "c1": -26.015387195607982, - "c2": -24.889891030518033, - "c3": -40.79958789508616, - "c4": 41.27727869819108, - "c5": 30.848832200820496, - "c6": 15.229392722918647, - "c7": 25.51746530371622 + "points": { + "c1": -14.36595735933632, + "c2": -54.99329034155941, + "c3": 34.05121649057264, + "c4": 56.532211643065864, + "c5": 44.58100588101924, + "c6": -33.9232218864627, + "c7": 44.47561329301378 }, - "vertexSeeds": { - "c1": 3.368444263930413, - "c2": 3.819620185733889, - "c3": 3.673283718984083, - "c4": 3.3307862648972337, - "c5": 3.782708011171668, - "c6": 3.8480403076335, - "c7": 3.745631462602624 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703653, + "c4": 3.6985668053629244, + "c5": 2.773925104022195, + "c6": 1.8492834026814589, + "c7": 0.9246417013407294 }, "rgb": [58, 15, 49] }, @@ -210876,23 +210876,23 @@ "year": 1768, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -19.629140668893587, - "c2": 33.907988163863244, - "c3": 10.825164017394066, - "c4": 15.20265746726485, - "c5": -6.9314614244987425, - "c6": 3.251438286784996, - "c7": 31.32761356748744 + "points": { + "c1": 29.05767190723717, + "c2": 39.88754298789605, + "c3": -9.771548998113449, + "c4": 29.23206277244399, + "c5": 18.652392987709867, + "c6": -17.651778301649614, + "c7": 19.260007354256103 }, - "vertexSeeds": { - "c1": 5.821065527215271, - "c2": 5.831030141298155, - "c3": 5.623265497914175, - "c4": 5.797820783834922, - "c5": 5.7968470859974595, - "c6": 5.768798238383142, - "c7": 5.932536274606072 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468806, + "c3": 7.165973185390657, + "c4": 5.732778548312537, + "c5": 4.2995839112343885, + "c6": 2.8663892741562687, + "c7": 1.43319463707812 }, "rgb": [238, 201, 159] }, @@ -210903,23 +210903,23 @@ "year": 1768, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -29.51140865187668, - "c2": 34.17635991092359, - "c3": -0.6941808671763781, - "c4": 22.428975531632886, - "c5": 6.8484339353206565, - "c6": 9.851120078961173, - "c7": 36.33137624561599 + "points": { + "c1": 18.007153892357927, + "c2": 8.700771103907265, + "c3": -5.883477847623659, + "c4": 20.662972708311933, + "c5": 3.7675773355753464, + "c6": -25.309594859114092, + "c7": 29.222504952133598 }, - "vertexSeeds": { - "c1": 7.234511418641426, - "c2": 7.360888747577334, - "c3": 7.250791651469914, - "c4": 7.359604770440294, - "c5": 7.3304840443799515, - "c6": 7.375926190360649, - "c7": 7.377589644722794 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324513, + "c3": 8.80721220527047, + "c4": 7.045769764216342, + "c5": 5.2843273231623, + "c6": 3.522884882108171, + "c7": 1.7614424410540417 }, "rgb": [238, 201, 159] }, @@ -210930,23 +210930,23 @@ "year": 1768, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -2.451313107280164, - "c2": -21.246022170559478, - "c3": -2.399825389962416, - "c4": -24.712815251819116, - "c5": 35.04452426520641, - "c6": 16.2144857570689, - "c7": -9.221350353795607 + "points": { + "c1": 3.4104822238359063, + "c2": 26.278046249517054, + "c3": -4.6536223145622415, + "c4": -26.976466809315568, + "c5": 38.27210881149028, + "c6": -18.664105525513545, + "c7": -10.557382750098668 }, - "vertexSeeds": { - "c1": 4.36052234434892, - "c2": 3.9942900115516107, - "c3": 4.494697667317181, - "c4": 3.7121892151596305, - "c5": 4.1375456941354, - "c6": 4.004937881319072, - "c7": 4.5234048391692605 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814146, + "c3": 5.640314378178458, + "c4": 4.512251502542766, + "c5": 3.384188626907073, + "c6": 2.256125751271385, + "c7": 1.1280628756356925 }, "rgb": [58, 15, 49] }, @@ -210957,23 +210957,23 @@ "year": 1768, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 10.174526539783095, - "c2": 22.65506153544927, - "c3": -10.711328249401571, - "c4": 14.359449476318439, - "c5": -23.40165689719008, - "c6": 25.60220649054711, - "c7": 15.24520923694817 + "points": { + "c1": 29.172564325867192, + "c2": 28.304756136206933, + "c3": 18.757830768324894, + "c4": -19.017049293614775, + "c5": 22.108818763569467, + "c6": -32.91705328906964, + "c7": 4.103668288645508 }, - "vertexSeeds": { - "c1": 4.254049613972792, - "c2": 4.251616743742894, - "c3": 4.247681621455898, - "c4": 4.249002456863068, - "c5": 4.24804786998585, - "c6": 4.245991176137466, - "c7": 4.236895556674854 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.1026352288488495, + "c3": 5.085529357374075, + "c4": 4.0684234858993005, + "c5": 3.051317614424324, + "c6": 2.034211742949549, + "c7": 1.0171058714747745 }, "rgb": [238, 201, 159] }, @@ -210984,23 +210984,23 @@ "year": 1768, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 3.8674410464738926, - "c2": 11.510012137924285, - "c3": 9.413951222030668, - "c4": 0.6445313340459435, - "c5": -35.5842476376652, - "c6": 12.471678846207475, - "c7": 30.123240206380068 + "points": { + "c1": -40.38268481035658, + "c2": -17.289552143262448, + "c3": -10.483122175636765, + "c4": -1.8995468658279222, + "c5": 33.41936167600685, + "c6": -0.011349318923493001, + "c7": -31.98115811782319 }, - "vertexSeeds": { - "c1": 6.2938407858329475, - "c2": 6.295334019516261, - "c3": 6.278342941731706, - "c4": 6.286919949219396, - "c5": 6.28450359956377, - "c6": 6.282107034097968, - "c7": 6.288530627817957 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588071866, + "c3": 7.51271382339352, + "c4": 6.010171058714577, + "c5": 4.507628294036231, + "c6": 3.0050855293572885, + "c7": 1.502542764678943 }, "rgb": [222, 0, 59] }, @@ -211011,23 +211011,23 @@ "year": 1768, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -25.754866230313652, - "c2": -26.07482076840828, - "c3": -11.427392135413424, - "c4": -0.8523487014249156, - "c5": -3.1877160663478428, - "c6": -19.681492463960627, - "c7": -23.11153335841898 + "points": { + "c1": 7.687794732051984, + "c2": -32.24629157480677, + "c3": -20.092899075947983, + "c4": 28.270190474651834, + "c5": 25.13159920582143, + "c6": 2.204655856762713, + "c7": 26.97354144471916 }, - "vertexSeeds": { - "c1": 2.6361206146586564, - "c2": 3.16137936732611, - "c3": 2.9870126877102083, - "c4": 3.2892721864375063, - "c5": 3.0186245429205143, - "c6": 2.562328071274011, - "c7": 3.107968798894639 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642165, + "c3": 4.392048081368469, + "c4": 3.513638465094777, + "c5": 2.635228848821081, + "c6": 1.7568192325473886, + "c7": 0.8784096162736956 }, "rgb": [222, 0, 59] }, @@ -211038,23 +211038,23 @@ "year": 1768, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -24.339722837943025, - "c2": 40.17785636530891, - "c3": -17.96589567214214, - "c4": -34.575442459431294, - "c5": 1.8748709076998864, - "c6": 15.995257800823026, - "c7": -28.99328726621586 + "points": { + "c1": -20.430875618630132, + "c2": -20.991548719252087, + "c3": -43.81490354986591, + "c4": 18.86851401162854, + "c5": -14.595182602168496, + "c6": -21.734886035021965, + "c7": -25.60667701697806 }, - "vertexSeeds": { - "c1": 3.022654710526293, - "c2": 2.6762257493681085, - "c3": 2.707747949657081, - "c4": 2.8814380456778923, - "c5": 2.7584414973023335, - "c6": 2.7484006595715327, - "c7": 2.852265639330383 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314838, + "c3": 3.6292186777623683, + "c4": 2.903374942209892, + "c5": 2.177531206657422, + "c6": 1.451687471104946, + "c7": 0.7258437355524694 }, "rgb": [238, 201, 159] }, @@ -211065,23 +211065,23 @@ "year": 1768, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -25.12499521429743, - "c2": 20.349977962202885, - "c3": 33.62100813674354, - "c4": -28.555398424777543, - "c5": -21.853002498634176, - "c6": 34.22671404396978, - "c7": -23.692608614109943 + "points": { + "c1": 9.727698662436183, + "c2": 8.610634495065064, + "c3": -0.9789119988046906, + "c4": 22.913216114268074, + "c5": -26.18377255052363, + "c6": 23.864869400509974, + "c7": 14.934243841334869 }, - "vertexSeeds": { - "c1": 7.408081459348776, - "c2": 7.323307329028077, - "c3": 7.416897268879611, - "c4": 7.536051826787141, - "c5": 7.344912975963026, - "c6": 7.281213229532116, - "c7": 7.181371146570097 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686561, + "c3": 9.015256588072116, + "c4": 7.212205270457709, + "c5": 5.409153952843263, + "c6": 3.6061026352288543, + "c7": 1.803051317614409 }, "rgb": [77, 76, 132] }, @@ -211092,23 +211092,23 @@ "year": 1768, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -30.010709783325446, - "c2": -0.22524463651843973, - "c3": 34.01985369143772, - "c4": -12.02614299451686, - "c5": 10.412777261348573, - "c6": 18.097818956880232, - "c7": -19.791910329406672 + "points": { + "c1": -39.257919949997884, + "c2": 33.617523687313124, + "c3": -4.962655541972126, + "c4": 34.34546046421204, + "c5": 16.805178544761553, + "c6": 29.495158609149684, + "c7": 14.891424638288946 }, - "vertexSeeds": { - "c1": 2.971630083561754, - "c2": 2.9716613129928606, - "c3": 2.9675170325263576, - "c4": 2.958075797446642, - "c5": 2.9620818074891484, - "c6": 2.9571504400386712, - "c7": 2.9643235895884352 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194195, + "c3": 3.5598705501618526, + "c4": 2.8478964401295106, + "c5": 2.1359223300970265, + "c6": 1.4239482200646845, + "c7": 0.7119741100323422 }, "rgb": [238, 201, 159] }, @@ -211119,23 +211119,23 @@ "year": 1769, "resistanceReported": false, "duration": 42336000, - "curveSeeds": { - "c1": -20.482707725693352, - "c2": -5.96791623761019, - "c3": -41.293878485680914, - "c4": -32.70670568702768, - "c5": 51.540169173390154, - "c6": 23.99593668523383, - "c7": -53.36523368207444 + "points": { + "c1": 25.018598461687063, + "c2": -40.85515922571007, + "c3": -11.022752195844781, + "c4": 53.65239725892927, + "c5": -36.9308875156687, + "c6": -11.212622784525031, + "c7": -37.15934281633853 }, - "vertexSeeds": { - "c1": 2.449732398630535, - "c2": 2.350217406021285, - "c3": 2.3800912237355223, - "c4": 2.3156746057069584, - "c5": 2.3704637193401084, - "c6": 2.3147793977507254, - "c7": 2.3181351467228497 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228854, + "c3": 3.0050855293573724, + "c4": 2.404068423485903, + "c5": 1.803051317614427, + "c6": 1.2020342117429514, + "c7": 0.6010171058714757 }, "rgb": [77, 76, 132] }, @@ -211146,23 +211146,23 @@ "year": 1768, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": -25.85052709760288, - "c2": -40.56695130901715, - "c3": -3.932174746299715, - "c4": -11.780701243165801, - "c5": -4.9845351493825945, - "c6": 1.7539046546061954, - "c7": 29.485756820739596 + "points": { + "c1": 39.08364289976976, + "c2": -1.875345926951944, + "c3": -10.494193741472358, + "c4": -28.37824949380058, + "c5": 22.262962909793274, + "c6": -1.1622516738584565, + "c7": -6.7477764994216685 }, - "vertexSeeds": { - "c1": 4.240764833290358, - "c2": 4.395974671645675, - "c3": 4.185986206277436, - "c4": 4.3297532237737535, - "c5": 4.281049262686735, - "c6": 4.384300188956391, - "c7": 4.392475399087758 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291265, + "c3": 5.339805825242723, + "c4": 4.271844660194181, + "c5": 3.2038834951456394, + "c6": 2.1359223300970838, + "c7": 1.0679611650485419 }, "rgb": [58, 15, 49] }, @@ -211173,23 +211173,23 @@ "year": 1768, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": 10.871143415080649, - "c2": -8.317115655604967, - "c3": 14.735863605572622, - "c4": -5.374321356692974, - "c5": 9.82278246154328, - "c6": -10.144009492976549, - "c7": 2.2329345297875705 + "points": { + "c1": 0.09349510088994961, + "c2": -2.2660449928538853, + "c3": 21.8803946246373, + "c4": -13.347752191444954, + "c5": 19.601655951538515, + "c6": 21.47477233973071, + "c7": 5.367796744390876 }, - "vertexSeeds": { - "c1": 2.757878685079115, - "c2": 2.8972517275222387, - "c3": 2.837966226284795, - "c4": 2.623154770537129, - "c5": 2.668437806488293, - "c6": 2.6970482403831566, - "c7": 2.898450131821368 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113734, + "c3": 3.513638465094775, + "c4": 2.8109107720758235, + "c5": 2.1081830790568628, + "c6": 1.4054553860379118, + "c7": 0.7027276930189602 }, "rgb": [77, 76, 132] }, @@ -211200,23 +211200,23 @@ "year": 1768, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": -41.57086694717259, - "c2": -11.431334740371817, - "c3": -21.54844268844009, - "c4": 39.414739235402536, - "c5": -4.889760007106041, - "c6": 43.208931422681786, - "c7": 39.061436381195236 + "points": { + "c1": -17.49648995146496, + "c2": 40.88491561967629, + "c3": -16.920210395409168, + "c4": -33.354464882688234, + "c5": 18.02355806444443, + "c6": -16.073883407459146, + "c7": -11.102081475850738 }, - "vertexSeeds": { - "c1": 2.592595679956782, - "c2": 2.80837057045952, - "c3": 2.8259907704308427, - "c4": 2.594616461323952, - "c5": 2.7476022153245574, - "c6": 2.68709857083988, - "c7": 2.82438490106926 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [58, 15, 49] }, @@ -211227,23 +211227,23 @@ "year": 1769, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": 27.40564737817037, - "c2": 34.73454779702854, - "c3": -39.92440651829807, - "c4": -7.302106931561198, - "c5": 45.58595675649076, - "c6": 21.788635930467194, - "c7": 13.736254186378801 + "points": { + "c1": 24.582502389417883, + "c2": 30.198503660433303, + "c3": 20.231343414706288, + "c4": -19.04068322557952, + "c5": -2.1121861959321606, + "c6": 15.704196877990753, + "c7": 25.20526793355633 }, - "vertexSeeds": { - "c1": 4.34463787754888, - "c2": 3.596276193367163, - "c3": 4.027477473570291, - "c4": 4.15771184520377, - "c5": 4.308630440282875, - "c6": 4.0434205930510405, - "c7": 4.318122142437058 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130374, + "c3": 5.247341655108645, + "c4": 4.197873324086916, + "c5": 3.148404993065187, + "c6": 2.098936662043458, + "c7": 1.049468331021729 }, "rgb": [238, 201, 159] }, @@ -211254,23 +211254,23 @@ "year": 1768, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 16.314901168282503, - "c2": 1.9646994016331085, - "c3": -10.442722291088023, - "c4": -6.359894012536943, - "c5": 16.67831681496982, - "c6": 13.179757673753684, - "c7": 18.754424022775886 + "points": { + "c1": 0.2366871952727152, + "c2": -6.096255092709182, + "c3": -4.600465230846488, + "c4": 1.9613322705626963, + "c5": -18.580668071320435, + "c6": 13.805733629098881, + "c7": -1.2370489998213081 }, - "vertexSeeds": { - "c1": 4.355106860661414, - "c2": 4.222487905063784, - "c3": 4.07398692388023, - "c4": 4.3696148116878355, - "c5": 4.381838171370419, - "c6": 3.917893366820479, - "c7": 3.823436316279748 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -211281,23 +211281,23 @@ "year": 1768, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -24.360086221940538, - "c2": 25.40206845279711, - "c3": -15.926165962025076, - "c4": -24.707710934060984, - "c5": 11.658376785770955, - "c6": 8.482141063024898, - "c7": -29.035536870201625 + "points": { + "c1": 2.427479379532649, + "c2": -8.865886881698824, + "c3": -30.210840631254815, + "c4": -29.449167101151293, + "c5": 10.448331343897657, + "c6": 10.767284060448738, + "c7": 13.20263808539169 }, - "vertexSeeds": { - "c1": 6.963356654716373, - "c2": 6.467255806429158, - "c3": 6.372828258450157, - "c4": 6.0670775890778685, - "c5": 4.8691744427281165, - "c6": 5.392727746177472, - "c7": 5.042803579852168 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284326, + "c3": 8.78409616273694, + "c4": 7.02727693018955, + "c5": 5.270457697642166, + "c6": 3.513638465094775, + "c7": 1.7568192325473848 }, "rgb": [58, 15, 49] }, @@ -211308,23 +211308,23 @@ "year": 1768, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": -22.56644739883258, - "c2": -46.56788074676825, - "c3": -26.589263811227667, - "c4": 52.72004000291343, - "c5": 37.60874881669235, - "c6": 50.23574438369017, - "c7": -37.818257055021355 + "points": { + "c1": 12.248523542759777, + "c2": 50.90545526807461, + "c3": 27.96133257124405, + "c4": 9.78341449487474, + "c5": 24.513137068031178, + "c6": -27.729811878703345, + "c7": -33.17199784665266 }, - "vertexSeeds": { - "c1": 8.561566112690365, - "c2": 8.387456252493394, - "c3": 8.023263478039977, - "c4": 8.190501198037913, - "c5": 8.51926991321284, - "c6": 8.128083933526243, - "c7": 8.41252602530304 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778075, + "c3": 10.217290799815075, + "c4": 8.17383263985205, + "c5": 6.130374479889052, + "c6": 4.086916319926025, + "c7": 2.043458159962998 }, "rgb": [58, 15, 49] }, @@ -211335,23 +211335,23 @@ "year": 1768, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": -10.16254929073535, - "c2": -2.991460101182213, - "c3": -15.08454048973427, - "c4": 2.0203412912166385, - "c5": -5.155121077556954, - "c6": -4.69563405977485, - "c7": 2.852930887618129 + "points": { + "c1": 12.550407194758925, + "c2": 12.387256600421487, + "c3": 6.096003888849374, + "c4": 20.11807708602491, + "c5": -10.238281161793742, + "c6": 14.509560414700971, + "c7": -15.843597929309109 }, - "vertexSeeds": { - "c1": 3.142942023169111, - "c2": 3.14134556900907, - "c3": 3.1052024837667327, - "c4": 3.1607453799710985, - "c5": 3.1115812363754696, - "c6": 3.1195974760142797, - "c7": 3.124663971816856 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119278, + "c3": 4.091539528432732, + "c4": 3.2732316227461857, + "c5": 2.454923717059639, + "c6": 1.6366158113730929, + "c7": 0.8183079056865464 }, "rgb": [58, 15, 49] }, @@ -211362,23 +211362,23 @@ "year": 1768, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 34.20720837720597, - "c2": -1.3464900100965593, - "c3": 2.981570794618996, - "c4": 34.33242696577008, - "c5": -1.954905831225652, - "c6": 31.192638193733316, - "c7": -18.345613069677523 + "points": { + "c1": -4.959060619376672, + "c2": 26.041028380948802, + "c3": -32.959200058641656, + "c4": 0.3757134196309977, + "c5": 36.17390191358105, + "c6": -15.054529283922953, + "c7": -17.92607802575852 }, - "vertexSeeds": { - "c1": 5.252277049211742, - "c2": 5.1405641738242105, - "c3": 5.203248535052791, - "c4": 5.3322150818442, - "c5": 5.374843241952337, - "c6": 5.115510839959238, - "c7": 5.516837465846394 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463249, + "c3": 6.588072122052711, + "c4": 5.270457697642174, + "c5": 3.952843273231613, + "c6": 2.6352288488210758, + "c7": 1.3176144244105379 }, "rgb": [222, 0, 59] }, @@ -211389,23 +211389,23 @@ "year": 1768, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 31.157086339803044, - "c2": -15.206664835160066, - "c3": -41.99091794702558, - "c4": 10.634771473404015, - "c5": 32.415616661362236, - "c6": -1.155760272628818, - "c7": -30.81378081098226 + "points": { + "c1": -36.19446006602936, + "c2": -4.967517996067414, + "c3": 31.461369226662967, + "c4": -29.95585757785021, + "c5": 42.15410971696922, + "c6": 24.131562159390825, + "c7": -37.72944948404984 }, - "vertexSeeds": { - "c1": 7.8730872620209205, - "c2": 9.932818793680278, - "c3": 9.422468374699976, - "c4": 9.6902727544457, - "c5": 7.580261896762129, - "c6": 9.05106230669332, - "c7": 9.372976245738665 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.811373092926491, + "c3": 13.176144244105405, + "c4": 10.54091539528433, + "c5": 7.905686546463251, + "c6": 5.270457697642167, + "c7": 2.6352288488210833 }, "rgb": [86, 146, 138] }, @@ -211416,23 +211416,23 @@ "year": 1768, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 36.66000584834056, - "c2": 2.3419120095557275, - "c3": 12.249048329328986, - "c4": 33.06184317012463, - "c5": 19.258820046724715, - "c6": -7.540156717149419, - "c7": 26.362570176086706 + "points": { + "c1": 8.385214134725558, + "c2": -3.0741134148079823, + "c3": -1.4955889625575907, + "c4": -8.606042177185774, + "c5": 22.646033008790994, + "c6": 14.660075467971453, + "c7": -0.7933888673483551 }, - "vertexSeeds": { - "c1": 8.517838932230797, - "c2": 8.660250049115337, - "c3": 8.48058534439148, - "c4": 8.614028631946502, - "c5": 8.705423867274376, - "c6": 8.677924842478244, - "c7": 8.576632569533485 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.51040221914006, + "c3": 10.425335182616744, + "c4": 8.340268146093374, + "c5": 6.2552011095700575, + "c6": 4.170134073046687, + "c7": 2.085067036523371 }, "rgb": [86, 146, 138] }, @@ -211443,23 +211443,23 @@ "year": 1768, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": 24.10745858636851, - "c2": -34.665313258777346, - "c3": -10.631355115826189, - "c4": 43.70033321026979, - "c5": 7.483280528963576, - "c6": -6.334877623959834, - "c7": -29.165302341347573 + "points": { + "c1": 47.802644296863406, + "c2": -36.384793364943846, + "c3": -6.876888175227776, + "c4": -51.06416518966426, + "c5": 20.886264541662044, + "c6": -22.993765877646435, + "c7": 5.775103180389671 }, - "vertexSeeds": { - "c1": 4.2389289042450375, - "c2": 3.996811393134176, - "c3": 4.0261280053099915, - "c4": 4.029041475477297, - "c5": 4.111547387486755, - "c6": 4.265733204707126, - "c7": 4.192326793961683 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889045, + "c3": 5.10864539990754, + "c4": 4.0869163199260345, + "c5": 3.0651872399445295, + "c6": 2.0434581599630106, + "c7": 1.0217290799815053 }, "rgb": [222, 0, 59] }, @@ -211470,23 +211470,23 @@ "year": 1768, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -4.884717268941749, - "c2": 15.661332315887655, - "c3": 24.738921985595994, - "c4": -20.52019883988785, - "c5": 32.54533762927686, - "c6": -11.673107878191544, - "c7": -3.7492295020850435 + "points": { + "c1": -16.66764424142829, + "c2": -15.316056754021648, + "c3": -3.1715645081216124, + "c4": 32.625439787137225, + "c5": 22.079857099736273, + "c6": -20.838844904570337, + "c7": 25.270464499285353 }, - "vertexSeeds": { - "c1": 4.740782794988001, - "c2": 4.6887798220457775, - "c3": 4.735203360732615, - "c4": 4.890427406295863, - "c5": 4.690561860883198, - "c6": 4.666802142822448, - "c7": 5.087354000581048 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699026, + "c3": 6.148867313915859, + "c4": 4.9190938511326845, + "c5": 3.6893203883495165, + "c6": 2.4595469255663422, + "c7": 1.2297734627831676 }, "rgb": [222, 0, 59] }, @@ -211497,23 +211497,23 @@ "year": 1768, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 26.11723821373952, - "c2": -0.4302209789755622, - "c3": 30.90275671269889, - "c4": 2.442854928731016, - "c5": -19.97307898908028, - "c6": -28.74396007685979, - "c7": 23.76798010448134 + "points": { + "c1": -21.466849655274096, + "c2": -29.660880296103446, + "c3": 34.43985782797006, + "c4": -31.511723032915956, + "c5": -24.326082828117695, + "c6": 25.49150717803679, + "c7": 16.33369739496959 }, - "vertexSeeds": { - "c1": 3.0099222763911486, - "c2": 2.573313836291326, - "c3": 2.394528993584208, - "c4": 2.856287986878771, - "c5": 2.9966426486672075, - "c6": 3.1080697013223735, - "c7": 2.344553841172595 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826629, + "c3": 2.77392510402219, + "c4": 2.2191400832177517, + "c5": 1.6643550624133132, + "c6": 1.1095700416088747, + "c7": 0.554785020804436 }, "rgb": [238, 201, 159] }, @@ -211524,23 +211524,23 @@ "year": 1769, "resistanceReported": false, "duration": 44236800, - "curveSeeds": { - "c1": 29.92567447065965, - "c2": 26.845139436604093, - "c3": 33.34592732368517, - "c4": -51.3289280205323, - "c5": -34.732414003956706, - "c6": 44.03299439215812, - "c7": 18.191865613559607 + "points": { + "c1": -52.654158796196555, + "c2": -60.03383605640517, + "c3": -59.41112106647448, + "c4": -39.922679215205314, + "c5": -16.782106139769297, + "c6": 6.86530651377111, + "c7": -34.58234004964359 }, - "vertexSeeds": { - "c1": 8.581323449288886, - "c2": 8.57737621408871, - "c3": 8.596654663997674, - "c4": 8.598540703742362, - "c5": 8.583567250363666, - "c6": 8.611747842869335, - "c7": 8.615834503641866 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.34396671289881, + "c3": 10.28663892741554, + "c4": 8.229311141932472, + "c5": 6.171983356449405, + "c6": 4.114655570966338, + "c7": 2.057327785483067 }, "rgb": [58, 15, 49] }, @@ -211551,23 +211551,23 @@ "year": 1768, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 8.763402474341113, - "c2": -45.23586815168917, - "c3": -32.127847262019884, - "c4": 26.628206786490814, - "c5": -36.701196697159865, - "c6": -22.241258663496634, - "c7": 37.17296161239086 + "points": { + "c1": -13.642574026019027, + "c2": -9.338829880199704, + "c3": -49.91941429535166, + "c4": -13.6272384105987, + "c5": -38.0927317143187, + "c6": -49.82023296274489, + "c7": 2.515013566938933 }, - "vertexSeeds": { - "c1": 8.254882883654323, - "c2": 8.150123221920957, - "c3": 8.234230621729965, - "c4": 8.173570442042513, - "c5": 8.198394059954133, - "c6": 8.14151581102746, - "c7": 8.170678240007053 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174756, + "c3": 9.870550161812298, + "c4": 7.896440129449838, + "c5": 5.922330097087378, + "c6": 3.948220064724919, + "c7": 1.9741100323624594 }, "rgb": [238, 201, 159] }, @@ -211578,23 +211578,23 @@ "year": 1769, "resistanceReported": false, "duration": 41040000, - "curveSeeds": { - "c1": -27.699453272718607, - "c2": 49.64573853548598, - "c3": -49.337315032671896, - "c4": -22.565698814992082, - "c5": 17.958851486588564, - "c6": -41.908915583209286, - "c7": 7.7297245080466865 + "points": { + "c1": 16.96294374772227, + "c2": 55.79905525548525, + "c3": 27.7358222550802, + "c4": -17.631261537202832, + "c5": -14.622429950506735, + "c6": -4.465197402702323, + "c7": 23.025515048889694 }, - "vertexSeeds": { - "c1": 10.231378771511997, - "c2": 9.977680951081712, - "c3": 9.894125957293777, - "c4": 9.647342798392517, - "c5": 9.728658265688862, - "c6": 10.119143462184798, - "c7": 9.959799260125 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.64632454923717, + "c3": 12.205270457697642, + "c4": 9.764216366158113, + "c5": 7.323162274618585, + "c6": 4.8821081830790565, + "c7": 2.4410540915395282 }, "rgb": [86, 146, 138] }, @@ -211605,23 +211605,23 @@ "year": 1768, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 21.394109062141823, - "c2": 5.285855887925273, - "c3": 40.32176380806951, - "c4": -37.181319507552985, - "c5": 15.997301019227251, - "c6": -16.178481382845302, - "c7": 32.39003747388097 + "points": { + "c1": -14.783742457753643, + "c2": -24.5353839772504, + "c3": 3.8999628092026555, + "c4": -27.301941668434765, + "c5": 14.098741286541326, + "c6": 7.1619138612149555, + "c7": 13.925400125881986 }, - "vertexSeeds": { - "c1": 5.269681843595853, - "c2": 4.9456603458393475, - "c3": 5.2735613085839566, - "c4": 4.45655366207382, - "c5": 5.028102562877189, - "c6": 4.556298466211339, - "c7": 5.337725311198377 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221914, + "c3": 6.449375866851596, + "c4": 5.159500693481276, + "c5": 3.869625520110957, + "c6": 2.579750346740638, + "c7": 1.289875173370319 }, "rgb": [222, 0, 59] }, @@ -211632,23 +211632,23 @@ "year": 1768, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -15.863965071754926, - "c2": 28.19917583352644, - "c3": 17.63358592919093, - "c4": -1.097174186958604, - "c5": -4.080257430084622, - "c6": -32.84838490088808, - "c7": -0.34049868911491643 + "points": { + "c1": 5.562232925781821, + "c2": -27.6144048645192, + "c3": -27.138091118693456, + "c4": 27.50758594137079, + "c5": -41.886679961841686, + "c6": 43.557381117429586, + "c7": 35.852809361821684 }, - "vertexSeeds": { - "c1": 2.3815116393547098, - "c2": 2.2980947271204317, - "c3": 2.028915759512964, - "c4": 1.9287350846572293, - "c5": 2.6624602587960116, - "c6": 2.178697105640203, - "c7": 2.2333971436460445 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692557, + "c4": 2.588996763754045, + "c5": 1.941747572815534, + "c6": 1.2944983818770226, + "c7": 0.6472491909385113 }, "rgb": [222, 0, 59] }, @@ -211659,23 +211659,23 @@ "year": 1768, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -7.359903580321669, - "c2": -10.401990663276484, - "c3": 16.436800176966486, - "c4": 16.797226210573577, - "c5": -11.631539155061354, - "c6": 13.99584632456839, - "c7": 2.6021308203549296 + "points": { + "c1": 0.6552606949725579, + "c2": -20.153580902102494, + "c3": -7.233174863387045, + "c4": 4.227259063264178, + "c5": -19.203255476830805, + "c6": -13.397979839901595, + "c7": 9.61955686589095 }, - "vertexSeeds": { - "c1": 6.773571667826493, - "c2": 5.894996536279749, - "c3": 6.482127864123783, - "c4": 6.228196165157974, - "c5": 6.414173971578273, - "c6": 6.266560365960385, - "c7": 6.220419684821437 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -211686,23 +211686,23 @@ "year": 1768, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": 27.48838783587864, - "c2": 20.695393750935395, - "c3": -29.234914104114882, - "c4": 47.99242109418465, - "c5": 3.261165724772468, - "c6": -32.594066037902174, - "c7": -9.927974440182552 + "points": { + "c1": -25.361139633465328, + "c2": -47.39784296316596, + "c3": 12.530909893658716, + "c4": -17.338647575814946, + "c5": -53.158442017573435, + "c6": 39.09578913150929, + "c7": 7.820802099307862 }, - "vertexSeeds": { - "c1": 5.320268331488303, - "c2": 5.389522436188719, - "c3": 5.3311879286751225, - "c4": 5.33827638640187, - "c5": 5.373859199465185, - "c6": 5.505203369547133, - "c7": 5.343847190908876 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785026, + "c3": 6.773000462320841, + "c4": 5.418400369856677, + "c5": 4.063800277392513, + "c6": 2.709200184928328, + "c7": 1.354600092464164 }, "rgb": [238, 201, 159] }, @@ -211713,23 +211713,23 @@ "year": 1768, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 18.5810136146291, - "c2": -12.50171327168762, - "c3": -6.3656707452198305, - "c4": 10.102437345341535, - "c5": 0.31396672819825255, - "c6": 0.4918900321844646, - "c7": 16.372902532792345 + "points": { + "c1": 9.22552104563212, + "c2": 15.19602316679839, + "c3": -22.847549757905135, + "c4": 20.25353597169164, + "c5": 14.254674288056115, + "c6": 27.799640991542773, + "c7": 13.884375194746688 }, - "vertexSeeds": { - "c1": 9.312659101717617, - "c2": 8.955427395000315, - "c3": 9.942537210527213, - "c4": 8.86803710606604, - "c5": 9.596451814051372, - "c6": 8.847152777237469, - "c7": 9.2879987837152 + "offsets": { + "c1": 16.763754045307444, + "c2": 14.368932038834954, + "c3": 11.974110032362464, + "c4": 9.57928802588996, + "c5": 7.18446601941747, + "c6": 4.78964401294498, + "c7": 2.39482200647249 }, "rgb": [86, 146, 138] }, @@ -211740,23 +211740,23 @@ "year": 1768, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 13.96876272846379, - "c2": -11.314032499297825, - "c3": -2.557099116781238, - "c4": 7.102495618347572, - "c5": 17.66064296440022, - "c6": 21.856029772459916, - "c7": -4.039029679685324 + "points": { + "c1": 6.351387506300242, + "c2": -2.98522964635821, + "c3": 12.831155779316436, + "c4": 13.949134729617551, + "c5": 15.059606868971574, + "c6": -3.2542474922433797, + "c7": 21.64914027037432 }, - "vertexSeeds": { - "c1": 7.19276414526356, - "c2": 7.773234321844752, - "c3": 7.564734085157284, - "c4": 7.420431031154557, - "c5": 7.721575165911296, - "c6": 7.381102685357858, - "c7": 7.2758335219054375 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330087, + "c3": 9.385113268608416, + "c4": 7.508090614886725, + "c5": 5.631067961165054, + "c6": 3.7540453074433624, + "c7": 1.877022653721671 }, "rgb": [58, 15, 49] }, @@ -211767,23 +211767,23 @@ "year": 1768, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -8.865722811994843, - "c2": -15.842702130262055, - "c3": -19.769874899197152, - "c4": 24.78875933812551, - "c5": -2.766711960868456, - "c6": -17.5821378945778, - "c7": 29.138656334323528 + "points": { + "c1": -29.730674311580596, + "c2": 0.8635304392920702, + "c3": -22.534319065437977, + "c4": -4.422508590381181, + "c5": -29.64398548398126, + "c6": -31.832527862837214, + "c7": 29.957641762452347 }, - "vertexSeeds": { - "c1": 4.687539689353377, - "c2": 4.622294226999581, - "c3": 4.471898594128831, - "c4": 4.747004709642893, - "c5": 4.425744219633661, - "c6": 4.69325859105665, - "c7": 4.905763012516535 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216362, + "c3": 5.871474803513639, + "c4": 4.697179842810908, + "c5": 3.5228848821081846, + "c6": 2.348589921405454, + "c7": 1.1742949607027309 }, "rgb": [222, 0, 59] }, @@ -211794,23 +211794,23 @@ "year": 1768, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": 4.824803907442721, - "c2": -4.100697080960133, - "c3": -17.48231362703946, - "c4": 10.274424288251769, - "c5": 15.772056860654107, - "c6": -1.5897208166353956, - "c7": 3.959402733419683 + "points": { + "c1": -9.550881333565776, + "c2": -5.2945735622554775, + "c3": -6.230930962445303, + "c4": 11.52518600592511, + "c5": 3.3212140344749663, + "c6": 0.23151833342307526, + "c7": -8.858135199306664 }, - "vertexSeeds": { - "c1": 3.164647141921893, - "c2": 3.261693315457699, - "c3": 3.086753572991569, - "c4": 3.228129965286386, - "c5": 3.1208556275104713, - "c6": 3.2698330980312846, - "c7": 3.2373038355835675 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837719, + "c3": 3.929727230698106, + "c4": 3.1437817845584797, + "c5": 2.357836338418867, + "c6": 1.5718908922792398, + "c7": 0.7859454461396127 }, "rgb": [238, 201, 159] }, @@ -211821,23 +211821,23 @@ "year": 1768, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": 3.5695960045087816, - "c2": -49.857686740412106, - "c3": 15.276785695466614, - "c4": 44.45544624471526, - "c5": -20.165756487622865, - "c6": -8.352527677208329, - "c7": -33.32336180326908 + "points": { + "c1": -29.149156808505783, + "c2": 13.349867721129542, + "c3": 22.33200899156175, + "c4": -2.6415737800423003, + "c5": -4.411683928166049, + "c6": 38.03534647790892, + "c7": 18.756139318960166 }, - "vertexSeeds": { - "c1": 7.197587401248645, - "c2": 7.145442993934555, - "c3": 7.251544560534298, - "c4": 7.300546279099944, - "c5": 7.338240772829797, - "c6": 7.0734612510245105, - "c7": 7.307960738365175 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284335, + "c3": 8.784096162736928, + "c4": 7.027276930189547, + "c5": 5.2704576976421675, + "c6": 3.513638465094788, + "c7": 1.75681923254738 }, "rgb": [238, 201, 159] }, @@ -211848,23 +211848,23 @@ "year": 1768, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": 19.412952568924815, - "c2": 28.934891124500773, - "c3": -29.763808436217644, - "c4": -42.81463665397831, - "c5": 35.01847208241569, - "c6": -20.191513251975607, - "c7": -19.988260543254015 + "points": { + "c1": -25.045862904250345, + "c2": -18.116874967008023, + "c3": -41.2807866662766, + "c4": 30.083916871411965, + "c5": 26.411784793524184, + "c6": -31.825131366309048, + "c7": 35.76388647692199 }, - "vertexSeeds": { - "c1": 4.381405256654264, - "c2": 3.8692947859597044, - "c3": 4.433197488441399, - "c4": 3.8709134846590136, - "c5": 3.9929357708022266, - "c6": 4.00545266147945, - "c7": 4.011433991061531 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [222, 0, 59] }, @@ -211875,23 +211875,23 @@ "year": 1768, "resistanceReported": false, "duration": 7171200, - "curveSeeds": { - "c1": -13.103433883028009, - "c2": 15.610773034502856, - "c3": -16.67378078118373, - "c4": -10.776634156959037, - "c5": 14.953016311151153, - "c6": -2.4432283709095515, - "c7": -11.462529087920707 + "points": { + "c1": -5.695329513678439, + "c2": 9.126244979563317, + "c3": 18.44076350104369, + "c4": 16.30407089151312, + "c5": -5.207262031307774, + "c6": 7.296526143484396, + "c7": 19.483465176174633 }, - "vertexSeeds": { - "c1": 2.5848111132402165, - "c2": 2.761155802629423, - "c3": 2.759490014173184, - "c4": 2.5428490640931516, - "c5": 2.7453580758372635, - "c6": 2.555448622456636, - "c7": 2.583963311011537 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [77, 76, 132] }, @@ -211902,23 +211902,23 @@ "year": 1768, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 23.864478624871133, - "c2": -42.47030909187378, - "c3": -5.245784816662727, - "c4": 26.806849877049608, - "c5": -22.725695661820044, - "c6": -14.668238096494544, - "c7": 31.274992344477134 + "points": { + "c1": -5.033691526210696, + "c2": -39.19898599112009, + "c3": -46.60373644096343, + "c4": 12.834913352224874, + "c5": 43.32958854334051, + "c6": -45.21500789451544, + "c7": 5.980317364567291 }, - "vertexSeeds": { - "c1": 9.858247208006444, - "c2": 9.879906254571527, - "c3": 10.062377393926242, - "c4": 9.765604119457674, - "c5": 9.866593665093884, - "c6": 10.009348561709675, - "c7": 9.763670029010653 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076278, + "c3": 12.112806287563558, + "c4": 9.69024503005086, + "c5": 7.267683772538139, + "c6": 4.84512251502542, + "c7": 2.4225612575126987 }, "rgb": [77, 76, 132] }, @@ -211929,23 +211929,23 @@ "year": 1768, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -0.7031650698542258, - "c2": -23.611234790496745, - "c3": -16.017992861330214, - "c4": 11.247091727978741, - "c5": 17.51118232757434, - "c6": -11.633032298142037, - "c7": -15.478663638402914 + "points": { + "c1": -21.16453846938042, + "c2": -23.36606827565219, + "c3": 6.162302664230154, + "c4": 3.8653207639504714, + "c5": 14.440075520820592, + "c6": 6.764772134801326, + "c7": 14.222233008250491 }, - "vertexSeeds": { - "c1": 4.722544674508624, - "c2": 4.896637251597604, - "c3": 4.9382604507910735, - "c4": 5.22184361345977, - "c5": 4.866794671918835, - "c6": 4.771706097137941, - "c7": 5.193885021170538 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061026, + "c3": 6.356911696717521, + "c4": 5.085529357374017, + "c5": 3.814147018030513, + "c6": 2.5427646786870084, + "c7": 1.2713823393435042 }, "rgb": [77, 76, 132] }, @@ -211956,23 +211956,23 @@ "year": 1768, "resistanceReported": false, "duration": 6825600, - "curveSeeds": { - "c1": 15.006146560252773, - "c2": -14.971277759305433, - "c3": -3.365556627500135, - "c4": -4.794844411365952, - "c5": 3.488678987434575, - "c6": -5.357836156468839, - "c7": 17.109280840422336 + "points": { + "c1": -5.970971075620593, + "c2": -7.085266383250508, + "c3": -15.203635366747012, + "c4": -0.5273848957887495, + "c5": 9.973429341781042, + "c6": -7.2434591261895935, + "c7": 3.6384229834156265 }, - "vertexSeeds": { - "c1": 2.7329375039965482, - "c2": 2.7527898594461786, - "c3": 2.494329386245739, - "c4": 2.7462115495026884, - "c5": 2.4985212304436106, - "c6": 2.2052291578116185, - "c7": 2.7450454578190384 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.9667128987517315, + "c3": 3.3055940822931116, + "c4": 2.6444752658344877, + "c5": 1.9833564493758677, + "c6": 1.3222376329172438, + "c7": 0.6611188164586219 }, "rgb": [58, 15, 49] }, @@ -211983,23 +211983,23 @@ "year": 1768, "resistanceReported": false, "duration": 5702400, - "curveSeeds": { - "c1": 11.082625109325502, - "c2": 13.737190863239466, - "c3": 7.8838888743978615, - "c4": -14.685541349671233, - "c5": 1.830691184911604, - "c6": 8.262062136679763, - "c7": 13.146652317106266 + "points": { + "c1": 7.717212614233318, + "c2": -4.676872304864927, + "c3": -17.78518925402878, + "c4": -11.690428561988403, + "c5": 12.832981758405456, + "c6": -4.035369862895504, + "c7": -8.982378071935214 }, - "vertexSeeds": { - "c1": 2.9837141023530154, - "c2": 3.260054823039022, - "c3": 3.0899574108587453, - "c4": 3.1478598725731426, - "c5": 2.920370755023395, - "c6": 3.2379888689035576, - "c7": 2.9623182928261995 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -212010,23 +212010,23 @@ "year": 1768, "resistanceReported": false, "duration": 5097600, - "curveSeeds": { - "c1": -13.38376495228859, - "c2": -9.38720085600507, - "c3": -11.788020781197444, - "c4": -9.85523214684038, - "c5": -15.123791721828525, - "c6": -11.48185745998543, - "c7": -0.37771558731279065 + "points": { + "c1": -5.980364354620793, + "c2": -0.2326529530892607, + "c3": -9.61654458155462, + "c4": 10.782764888377951, + "c5": 1.0072063857910756, + "c6": -13.087319360632215, + "c7": -8.87598716385533 }, - "vertexSeeds": { - "c1": 2.7202482240310744, - "c2": 2.832529545944951, - "c3": 2.767585630836788, - "c4": 3.1649652178364396, - "c5": 3.0109385934263355, - "c6": 2.8536028025809075, - "c7": 3.0840365845859554 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596395, + "c3": 3.791030975496992, + "c4": 3.032824780397595, + "c5": 2.2746185852981977, + "c6": 1.5164123901988005, + "c7": 0.7582061950993971 }, "rgb": [58, 15, 49] }, @@ -212037,23 +212037,23 @@ "year": 1768, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 16.083230598239595, - "c2": -27.634154614450754, - "c3": -12.936324364713144, - "c4": -17.84044466020464, - "c5": 6.858038158350375, - "c6": 25.06706188498501, - "c7": -35.27020768855625 + "points": { + "c1": -40.09495850428894, + "c2": 8.697961163825, + "c3": 45.741554690345566, + "c4": -7.482378941778457, + "c5": 20.895825756511783, + "c6": 6.89632078996538, + "c7": -16.902750124789833 }, - "vertexSeeds": { - "c1": 6.2981145656063084, - "c2": 5.816907306067762, - "c3": 5.814871589401743, - "c4": 6.105930643420469, - "c5": 6.329125318714296, - "c6": 5.695404147710244, - "c7": 5.941318875967272 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192793, + "c3": 7.5820619509939995, + "c4": 6.0656495607951895, + "c5": 4.549237170596396, + "c6": 3.0328247803976036, + "c7": 1.5164123901988102 }, "rgb": [222, 0, 59] }, @@ -212064,23 +212064,23 @@ "year": 1768, "resistanceReported": false, "duration": 5011200, - "curveSeeds": { - "c1": -15.002899078432215, - "c2": 6.459054327920052, - "c3": -10.108133573958689, - "c4": -5.307384835556604, - "c5": 8.038405725160006, - "c6": -0.7521819782522066, - "c7": -7.197933815552526 + "points": { + "c1": -14.288233763400171, + "c2": 0.4047561467311418, + "c3": 9.884239440913326, + "c4": 15.961511172547517, + "c5": 13.501837654195775, + "c6": -12.102540277210796, + "c7": -3.8159954307731514 }, - "vertexSeeds": { - "c1": 9.442186777485198, - "c2": 9.313369419181265, - "c3": 9.74737080599483, - "c4": 10.425428783607817, - "c5": 10.01060919508858, - "c6": 10.313711525671573, - "c7": 10.881553949407486 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.811373092926484, + "c3": 13.176144244105416, + "c4": 10.540915395284328, + "c5": 7.905686546463247, + "c6": 5.2704576976421675, + "c7": 2.6352288488210793 }, "rgb": [238, 201, 159] }, @@ -212091,23 +212091,23 @@ "year": 1768, "resistanceReported": false, "duration": 4320000, - "curveSeeds": { - "c1": -7.113218396007151, - "c2": 8.231208997779088, - "c3": -8.155807086149517, - "c4": 14.114805852529994, - "c5": -5.181420528893588, - "c6": -14.273836265091886, - "c7": 1.9877466916188595 + "points": { + "c1": 3.6898799475536883, + "c2": 1.8215149367695034, + "c3": 8.049956277734154, + "c4": -0.733454196789971, + "c5": -11.32985372230552, + "c6": 13.376233388449556, + "c7": 10.810128002058896 }, - "vertexSeeds": { - "c1": 4.209752876109131, - "c2": 3.8732675774245346, - "c3": 3.989215787673047, - "c4": 4.234892739307534, - "c5": 3.8863002859821143, - "c6": 4.2947457631479455, - "c7": 4.187276798621176 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -212118,23 +212118,23 @@ "year": 1768, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": 12.831774081302985, - "c2": 7.583269209859882, - "c3": -13.766053564991685, - "c4": 2.712223505453075, - "c5": -9.70909434217382, - "c6": -4.163809134727149, - "c7": 9.90161158913877 + "points": { + "c1": 14.948285342023265, + "c2": -0.8826635036785007, + "c3": 1.0265152594433395, + "c4": -9.9493011943639, + "c5": 1.9976063725898783, + "c6": -1.0543317606207605, + "c7": 3.784472098341787 }, - "vertexSeeds": { - "c1": 2.183345347593168, - "c2": 2.179066587505604, - "c3": 2.1807801225273398, - "c4": 2.057309708631152, - "c5": 2.0881094830570475, - "c6": 2.162002622788013, - "c7": 2.018157648041819 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.2177531206657437, + "c3": 2.6814609338881175, + "c4": 2.1451687471104957, + "c5": 1.6088765603328696, + "c6": 1.0725843735552478, + "c7": 0.5362921867776217 }, "rgb": [238, 201, 159] }, @@ -212145,23 +212145,23 @@ "year": 1768, "resistanceReported": false, "duration": 3888000, - "curveSeeds": { - "c1": 7.140061194606732, - "c2": -3.1991333221065847, - "c3": -12.258837948945676, - "c4": -10.47270281689264, - "c5": -14.05097743651618, - "c6": 8.109091261647572, - "c7": -5.114579957076785 + "points": { + "c1": 11.051226670587933, + "c2": 10.04042657609278, + "c3": -6.965230014189077, + "c4": -12.271499239766545, + "c5": 12.295450097630653, + "c6": 3.8770515883532077, + "c7": -10.882444198771076 }, - "vertexSeeds": { - "c1": 2.9913675418959924, - "c2": 2.8961616997017754, - "c3": 3.1872581280689865, - "c4": 3.0156749828849585, - "c5": 3.032123340790744, - "c6": 2.9377357977027807, - "c7": 2.9519603634551608 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -212172,23 +212172,23 @@ "year": 1768, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 42.764544740772415, - "c2": -17.810698815869557, - "c3": -45.91290060879456, - "c4": -15.543541636894801, - "c5": -15.573141788828966, - "c6": 23.431383410510783, - "c7": 31.518898378303767 + "points": { + "c1": 36.57528382671918, + "c2": -35.31251786590967, + "c3": 0.6071411643127078, + "c4": 27.677846652743774, + "c5": 0.004459351876931805, + "c6": -18.13233552642472, + "c7": 7.883174242059802 }, - "vertexSeeds": { - "c1": 5.511607220743455, - "c2": 5.758839257678177, - "c3": 5.812899700492027, - "c4": 5.75886350493212, - "c5": 6.040555623949585, - "c6": 6.374208245798413, - "c7": 7.204277949037079 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002773, + "c3": 8.622283865002313, + "c4": 6.897827092001849, + "c5": 5.173370319001386, + "c6": 3.4489135460009246, + "c7": 1.7244567730004623 }, "rgb": [77, 76, 132] }, @@ -212199,23 +212199,23 @@ "year": 1768, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 15.174095088839557, - "c2": -8.451961482938849, - "c3": 41.09643816296739, - "c4": -14.023359313135074, - "c5": -36.964729404956444, - "c6": -38.154003709064355, - "c7": -13.00562344238427 + "points": { + "c1": 0.6780628121899355, + "c2": -43.05423004571185, + "c3": 28.799082953712187, + "c4": -21.50048999030516, + "c5": 40.25629881058231, + "c6": -29.568257773739656, + "c7": 16.698153844116746 }, - "vertexSeeds": { - "c1": 4.52878350966098, - "c2": 4.423413840619593, - "c3": 4.436223981150593, - "c4": 4.96246750897814, - "c5": 4.410749233252758, - "c6": 4.963005577265351, - "c7": 4.639062891474665 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457702, + "c3": 6.010171058714749, + "c4": 4.808136846971797, + "c5": 3.606102635228851, + "c6": 2.404068423485905, + "c7": 1.2020342117429526 }, "rgb": [222, 0, 59] }, @@ -212226,23 +212226,23 @@ "year": 1768, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 5.643782520822555, - "c2": -37.49360506063948, - "c3": 5.436196036787905, - "c4": 37.27296413667064, - "c5": -23.854251167501957, - "c6": -7.278256757340301, - "c7": 38.88237975780579 + "points": { + "c1": -35.40114847301677, + "c2": 7.537227901857108, + "c3": -37.4811074123699, + "c4": -8.115843063384062, + "c5": 38.68218616185776, + "c6": 10.445682631337618, + "c7": -1.1435775228509826 }, - "vertexSeeds": { - "c1": 4.396991517491619, - "c2": 4.082558573697497, - "c3": 4.6005491895059425, - "c4": 4.682838728606411, - "c5": 4.110587183355616, - "c6": 4.065125084743774, - "c7": 4.146766816886534 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773926, + "c3": 5.617198335644939, + "c4": 4.493758668515946, + "c5": 3.3703190013869593, + "c6": 2.246879334257973, + "c7": 1.1234396671289866 }, "rgb": [222, 0, 59] }, @@ -212253,23 +212253,23 @@ "year": 1769, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": -23.271731969636583, - "c2": 1.0707681162667626, - "c3": 4.017227860314904, - "c4": -17.339456420794956, - "c5": -16.37809678549904, - "c6": -8.137457638148732, - "c7": -21.608041720701646 + "points": { + "c1": 42.445400302189334, + "c2": -11.60857540645803, + "c3": -22.502560031565018, + "c4": -18.311903127176578, + "c5": -0.9897669510929887, + "c6": 48.22480330036506, + "c7": 31.584691781617202 }, - "vertexSeeds": { - "c1": 4.947445755789022, - "c2": 5.158526564989469, - "c3": 5.044965359280376, - "c4": 5.027823366420862, - "c5": 5.084297959511864, - "c6": 5.186479203514496, - "c7": 5.002509438035623 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [86, 146, 138] }, @@ -212280,23 +212280,23 @@ "year": 1768, "resistanceReported": false, "duration": 3369600, - "curveSeeds": { - "c1": -3.751157577680832, - "c2": 6.739860261980565, - "c3": -7.360700021157077, - "c4": 9.245533428218005, - "c5": 11.257289448002231, - "c6": 6.409395996642305, - "c7": -10.89007371265608 + "points": { + "c1": 8.373382448802234, + "c2": 1.1810765574072821, + "c3": -10.211799122848213, + "c4": 0.41296034025812567, + "c5": 8.33986113643534, + "c6": 11.342297874127889, + "c7": 1.395205775623035 }, - "vertexSeeds": { - "c1": 1.518113939749153, - "c2": 1.4834025863267684, - "c3": 1.3920131885487115, - "c4": 1.5102715458919647, - "c5": 1.497765631736083, - "c6": 1.4231064782621718, - "c7": 1.5448703284943586 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [77, 76, 132] }, @@ -212307,23 +212307,23 @@ "year": 1769, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": 7.736494862599955, - "c2": 24.880047450829068, - "c3": -49.71395263320935, - "c4": -21.425250491843777, - "c5": -30.281672583775546, - "c6": -38.49171570336489, - "c7": 32.20739100340741 + "points": { + "c1": -38.90330775478604, + "c2": -47.07373214179774, + "c3": -56.06428380065905, + "c4": -28.06138897457746, + "c5": -50.737236496794765, + "c6": 32.832709653315916, + "c7": -1.4299859377564488 }, - "vertexSeeds": { - "c1": 7.609558525883407, - "c2": 7.359110405717331, - "c3": 7.3103839977893355, - "c4": 6.730807688208993, - "c5": 6.880786599038153, - "c6": 6.7702931577366865, - "c7": 7.64074694732742 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [86, 146, 138] }, @@ -212334,23 +212334,23 @@ "year": 1768, "resistanceReported": false, "duration": 2332800, - "curveSeeds": { - "c1": 1.683093755346638, - "c2": -8.971708259602876, - "c3": 3.2971465844693917, - "c4": -4.937078635916024, - "c5": 8.91235497904974, - "c6": 12.157733384001078, - "c7": -10.879751633441952 + "points": { + "c1": -5.655900217181729, + "c2": -10.577189676732235, + "c3": 13.22058673205804, + "c4": 7.505609771781453, + "c5": -9.685914554323109, + "c6": -0.9351022951859402, + "c7": -14.032007882904974 }, - "vertexSeeds": { - "c1": 6.355686914733326, - "c2": 6.646976139888787, - "c3": 6.369187867549041, - "c4": 6.737262265148267, - "c5": 6.529562867306074, - "c6": 6.527021999333742, - "c7": 6.387419656300584 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077674, + "c3": 8.0906148867314, + "c4": 6.472491909385126, + "c5": 4.8543689320388514, + "c6": 3.2362459546925493, + "c7": 1.6181229773462746 }, "rgb": [77, 76, 132] }, @@ -212361,23 +212361,23 @@ "year": 1769, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": -7.6440349825981855, - "c2": 22.481208981176643, - "c3": -29.059607969511504, - "c4": -17.64358261041778, - "c5": 21.71227395703854, - "c6": 5.511389333891657, - "c7": -30.36151547432476 + "points": { + "c1": 23.80006360953569, + "c2": 17.82808499100728, + "c3": -2.6927458081509172, + "c4": 0.9511551820455395, + "c5": -30.82228346706326, + "c6": -47.351606893151896, + "c7": 54.55624424948979 }, - "vertexSeeds": { - "c1": 7.878644834061987, - "c2": 7.89846065197908, - "c3": 7.517835641996614, - "c4": 7.720552122861418, - "c5": 7.63340111717292, - "c6": 7.61277570389762, - "c7": 7.929041488165628 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490997, + "c3": 9.477577438742482, + "c4": 7.582061950993999, + "c5": 5.6865464632454845, + "c6": 3.7910309754969993, + "c7": 1.8955154877484857 }, "rgb": [77, 76, 132] }, @@ -212388,23 +212388,23 @@ "year": 1769, "resistanceReported": false, "duration": 63504000, - "curveSeeds": { - "c1": 34.92348083755056, - "c2": -27.346243224751156, - "c3": -67.34016886604768, - "c4": -57.522697170749964, - "c5": -2.652293434786287, - "c6": -19.0937963596461, - "c7": -62.46565217324593 + "points": { + "c1": 72.65510743384675, + "c2": -47.06673475249382, + "c3": 80.49622187176354, + "c4": 32.159702603926306, + "c5": -45.00832521076901, + "c6": 9.544094051258085, + "c7": 47.898586757169284 }, - "vertexSeeds": { - "c1": 2.969149373794931, - "c2": 3.1691236782968217, - "c3": 2.9172990544459245, - "c4": 2.951665822149007, - "c5": 3.1445727676380497, - "c6": 2.922223797926175, - "c7": 3.01860315364836 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -212415,23 +212415,23 @@ "year": 1768, "resistanceReported": false, "duration": 1814400, - "curveSeeds": { - "c1": 9.927056202627412, - "c2": 10.203131859422417, - "c3": 3.3206309225600172, - "c4": 5.507523365927128, - "c5": -9.063299882652435, - "c6": -10.70218749681016, - "c7": 8.018002262104385 + "points": { + "c1": 10.156333815308638, + "c2": 9.391083813359451, + "c3": -1.7785281371020307, + "c4": -8.340549046285073, + "c5": -8.448801126796605, + "c6": 2.3889548380799503, + "c7": -8.554070386148819 }, - "vertexSeeds": { - "c1": 8.720595034433487, - "c2": 8.738196640021972, - "c3": 8.672795874027965, - "c4": 8.748458586630518, - "c5": 8.714440251906234, - "c6": 8.745903383084872, - "c7": 8.711955171132773 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300948, + "c3": 10.517799352750846, + "c4": 8.41423948220066, + "c5": 6.310679611650474, + "c6": 4.207119741100287, + "c7": 2.103559870550186 }, "rgb": [58, 15, 49] }, @@ -212442,23 +212442,23 @@ "year": 1768, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -14.983255467585845, - "c2": 5.277393231696543, - "c3": -0.2507496980432862, - "c4": 6.886528721229027, - "c5": 21.00511114641713, - "c6": 13.94666659534554, - "c7": -11.31912068853328 + "points": { + "c1": -7.808047220105053, + "c2": -19.937959304094708, + "c3": -21.392099927099974, + "c4": 26.046160966788115, + "c5": 13.619459380581858, + "c6": -0.5564472386576078, + "c7": -25.937606296278187 }, - "vertexSeeds": { - "c1": 7.377923324883514, - "c2": 7.445490094390937, - "c3": 7.31487755118753, - "c4": 7.460457477284457, - "c5": 7.351319006626554, - "c6": 7.356590965222875, - "c7": 7.583824767226853 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407298, + "c4": 7.397133610725835, + "c5": 5.54785020804439, + "c6": 3.698566805362927, + "c7": 1.8492834026814635 }, "rgb": [58, 15, 49] }, @@ -212469,23 +212469,23 @@ "year": 1768, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -29.75447628876457, - "c2": 31.882636125079244, - "c3": -15.252991680922637, - "c4": 7.965370423926217, - "c5": 27.835901711825244, - "c6": -9.56165540869268, - "c7": -5.721136536173667 + "points": { + "c1": -40.90913152567064, + "c2": 11.418822972585204, + "c3": -43.483712344158086, + "c4": -40.75213005106798, + "c5": -21.690469343282658, + "c6": 10.124592619108753, + "c7": 19.770334298764425 }, - "vertexSeeds": { - "c1": 5.768757795775069, - "c2": 5.971809958494945, - "c3": 5.880452827306899, - "c4": 5.685484954478982, - "c5": 6.020539442838796, - "c6": 6.104857594913995, - "c7": 5.699009387211017 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710124, + "c3": 7.304669440591771, + "c4": 5.843735552473416, + "c5": 4.382801664355062, + "c6": 2.921867776236708, + "c7": 1.460933888118354 }, "rgb": [222, 0, 59] }, @@ -212496,23 +212496,23 @@ "year": 1768, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 6.164660763557205, - "c2": 22.918940316018347, - "c3": 13.685013553121262, - "c4": 0.9591754474094749, - "c5": 20.33045249709689, - "c6": -23.375558158631964, - "c7": -19.816862497368003 + "points": { + "c1": 3.23893841950105, + "c2": 22.58775914494485, + "c3": -16.45586082301726, + "c4": -11.63289626745864, + "c5": -0.5864472352004171, + "c6": -15.26113486976798, + "c7": 10.95508977982134 }, - "vertexSeeds": { - "c1": 2.130284113799658, - "c2": 2.325100095672308, - "c3": 2.2749819810638057, - "c4": 2.293153316630149, - "c5": 2.108398040000924, - "c6": 2.178197968830196, - "c7": 2.1786465366628467 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668537, + "c3": 2.7970411465557086, + "c4": 2.237632917244569, + "c5": 1.6782246879334244, + "c6": 1.1188164586222844, + "c7": 0.55940822931114 }, "rgb": [58, 15, 49] }, @@ -212523,23 +212523,23 @@ "year": 1768, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": 2.1003976838688203, - "c2": 17.369838291381477, - "c3": -7.28117918982111, - "c4": -13.544376774106821, - "c5": -1.273747245362273, - "c6": 14.849980612684526, - "c7": 2.474248652176666 + "points": { + "c1": -13.651418473829402, + "c2": -8.406567764881686, + "c3": -13.927942600755596, + "c4": -4.961630551215558, + "c5": -19.694348612841466, + "c6": -0.4031046151217623, + "c7": -8.23137769611499 }, - "vertexSeeds": { - "c1": 3.019639323875709, - "c2": 3.13374999577514, - "c3": 2.967945934967518, - "c4": 3.2776430844434885, - "c5": 3.272803378680491, - "c6": 2.994942383809146, - "c7": 3.267644032091185 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877945, + "c3": 3.9528432732316268, + "c4": 3.1622746185852995, + "c5": 2.3717059639389726, + "c6": 1.5811373092926453, + "c7": 0.7905686546463272 }, "rgb": [222, 0, 59] }, @@ -212550,23 +212550,23 @@ "year": 1768, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 1.256966411602484, - "c2": -19.49425595554316, - "c3": -27.41205229340193, - "c4": -26.39085345161081, - "c5": -23.192967259111757, - "c6": -15.380217754538933, - "c7": 4.554565951884598 + "points": { + "c1": 29.547061580749066, + "c2": 14.146869351115605, + "c3": 9.762864072049062, + "c4": 5.980170964007641, + "c5": -0.3171225675870133, + "c6": -14.690531840512914, + "c7": 0.8984275660533925 }, - "vertexSeeds": { - "c1": 4.022307323915779, - "c2": 4.05802178188046, - "c3": 4.055957039430833, - "c4": 4.082952160136801, - "c5": 4.106919614334443, - "c6": 4.087013948496548, - "c7": 4.051144514752679 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567256, + "c3": 4.923717059639406, + "c4": 3.9389736477115176, + "c5": 2.954230235783628, + "c6": 1.9694868238557388, + "c7": 0.9847434119278892 }, "rgb": [222, 0, 59] }, @@ -212577,23 +212577,23 @@ "year": 1768, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -5.52564359986615, - "c2": 10.487226151931289, - "c3": 10.690127195936974, - "c4": 12.153738242362216, - "c5": -31.10890893703374, - "c6": -29.51904336820614, - "c7": 19.326101332258695 + "points": { + "c1": -4.003520447989551, + "c2": 15.696574852365742, + "c3": 8.635488616167542, + "c4": -3.2775383364536133, + "c5": 21.86148764114025, + "c6": -5.844429522362034, + "c7": -34.99309358621295 }, - "vertexSeeds": { - "c1": 3.7568367591338525, - "c2": 4.3041668315928785, - "c3": 4.188035475233434, - "c4": 3.791785064221878, - "c5": 3.9441229902520702, - "c6": 4.153883133704375, - "c7": 4.013207990269205 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309757, + "c4": 4.308830328247802, + "c5": 3.231622746185851, + "c6": 2.154415164123901, + "c7": 1.0772075820619504 }, "rgb": [222, 0, 59] }, @@ -212604,23 +212604,23 @@ "year": 1768, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -1.8340665809760957, - "c2": 24.534443629570163, - "c3": 24.179500612032385, - "c4": 19.274235618312268, - "c5": -26.588902173785378, - "c6": -20.76076283966959, - "c7": 26.926030225194552 + "points": { + "c1": 1.9292302212129968, + "c2": -35.1528727653826, + "c3": 25.913475546929234, + "c4": 22.7829937841707, + "c5": 22.582175484974172, + "c6": -5.499243099274995, + "c7": -3.396506769389827 }, - "vertexSeeds": { - "c1": 7.341054365468557, - "c2": 6.7002054306570455, - "c3": 6.121208574362509, - "c4": 6.447940763468226, - "c5": 7.117179953037876, - "c6": 7.2464452111054785, - "c7": 6.962897357921473 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.922792417938052, + "c4": 7.138233934350435, + "c5": 5.353675450762826, + "c6": 3.5691169671752174, + "c7": 1.7845584835876087 }, "rgb": [238, 201, 159] }, @@ -212631,23 +212631,23 @@ "year": 1768, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -15.42870024994145, - "c2": 3.7059676214836124, - "c3": 22.73699871242984, - "c4": -15.9984507322889, - "c5": 7.30478207405805, - "c6": -21.439011777284975, - "c7": -26.633202873940746 + "points": { + "c1": -11.434636725224017, + "c2": 31.784102993561156, + "c3": -20.4165314356985, + "c4": 6.320662678721412, + "c5": -6.97697285995374, + "c6": -23.331469470864594, + "c7": 23.526768090702753 }, - "vertexSeeds": { - "c1": 7.7633006848772075, - "c2": 7.040238774331166, - "c3": 7.368894956849431, - "c4": 7.795580576221306, - "c5": 7.304154353042416, - "c6": 6.941248584677204, - "c7": 7.945627756816052 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.6504854368932, + "c3": 9.708737864077674, + "c4": 7.766990291262137, + "c5": 5.8252427184466, + "c6": 3.883495145631063, + "c7": 1.941747572815537 }, "rgb": [86, 146, 138] }, @@ -212658,23 +212658,23 @@ "year": 1769, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 30.458235735773016, - "c2": 27.87954430979923, - "c3": 41.34949076098873, - "c4": 37.1744737145975, - "c5": -15.230067703209201, - "c6": -45.63300207301175, - "c7": -30.327554912161066 + "points": { + "c1": -32.25434206828519, + "c2": -27.24829945616919, + "c3": 8.13066365756925, + "c4": -25.022337272142252, + "c5": 32.80490327195601, + "c6": 50.36587753512107, + "c7": -32.08080862725596 }, - "vertexSeeds": { - "c1": 6.39772985826976, - "c2": 6.490788654879154, - "c3": 6.438790933814666, - "c4": 6.6992069590816286, - "c5": 6.510446772071896, - "c6": 6.7674036123767465, - "c7": 6.494361561652262 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [58, 15, 49] }, @@ -212685,23 +212685,23 @@ "year": 1769, "resistanceReported": false, "duration": 53481600, - "curveSeeds": { - "c1": 61.752986505681946, - "c2": 42.90071209662028, - "c3": 24.125923926424363, - "c4": -44.602965630232326, - "c5": 28.557758545361366, - "c6": -19.84543319356846, - "c7": -61.34566069501588 + "points": { + "c1": -33.21916726476745, + "c2": -5.8966578145566615, + "c3": 45.62379990815788, + "c4": -47.453190513167726, + "c5": -62.92047027194985, + "c6": 38.054021011532384, + "c7": 30.073303203791454 }, - "vertexSeeds": { - "c1": 5.408875004095996, - "c2": 5.360818067797569, - "c3": 5.237894543210779, - "c4": 5.3461259116724245, - "c5": 5.374638486600846, - "c6": 5.366355614796249, - "c7": 5.64341575760129 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945917, + "c3": 6.865464632454921, + "c4": 5.492371705963945, + "c5": 4.119278779472949, + "c6": 2.7461858529819727, + "c7": 1.3730929264909963 }, "rgb": [222, 0, 59] }, @@ -212712,23 +212712,23 @@ "year": 1769, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": 4.934162645478985, - "c2": 48.388718206072014, - "c3": 23.580310431590675, - "c4": -47.198406260031334, - "c5": -43.337516410787394, - "c6": -49.53062627630268, - "c7": -49.33670598726329 + "points": { + "c1": 28.750004036547082, + "c2": -2.0228974095622263, + "c3": -0.2496689099912217, + "c4": -34.37217393414954, + "c5": 39.64780317992491, + "c6": 11.631560395322964, + "c7": 39.04508156734623 }, - "vertexSeeds": { - "c1": 6.771078424963081, - "c2": 6.275326893047469, - "c3": 6.723146228986431, - "c4": 6.748041648064, - "c5": 6.451250110046698, - "c6": 6.688554541271254, - "c7": 6.202883173828146 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.76421636615812, + "c3": 8.13684697179842, + "c4": 6.509477577438741, + "c5": 4.88210818307906, + "c6": 3.25473878871938, + "c7": 1.62736939435968 }, "rgb": [58, 15, 49] }, @@ -212739,23 +212739,23 @@ "year": 1769, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": -22.69308865688909, - "c2": -24.983527384876687, - "c3": -32.24925830667206, - "c4": -61.09017385229562, - "c5": -58.46156314981049, - "c6": -60.14565798731145, - "c7": 42.32397784495205 + "points": { + "c1": 55.268343245930204, + "c2": -3.3084105131951134, + "c3": -59.82633401251406, + "c4": 47.31375342618173, + "c5": 45.07195959824771, + "c6": -4.308813508578552, + "c7": -56.17981250755542 }, - "vertexSeeds": { - "c1": 2.309831950652501, - "c2": 1.9679823288724665, - "c3": 2.3052738596809945, - "c4": 2.1952368711770065, - "c5": 2.013544362208959, - "c6": 1.9997753318310552, - "c7": 1.997506270705952 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266295, + "c3": 2.773925104022192, + "c4": 2.219140083217754, + "c5": 1.6643550624133163, + "c6": 1.1095700416088783, + "c7": 0.5547850208044406 }, "rgb": [222, 0, 59] }, @@ -212766,23 +212766,23 @@ "year": 1769, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -33.60435394876849, - "c2": 21.95303301772526, - "c3": -15.786195554804824, - "c4": -37.19991702121166, - "c5": -25.68100427095364, - "c6": 8.77169288705118, - "c7": -10.816609848382093 + "points": { + "c1": -2.568829152902964, + "c2": 40.24852539877595, + "c3": 0.7350810632182458, + "c4": -37.65147175145304, + "c5": 30.612572077183984, + "c6": -36.1782397048016, + "c7": -8.013261647974524 }, - "vertexSeeds": { - "c1": 3.220418112890105, - "c2": 3.130802852339171, - "c3": 3.100193836686275, - "c4": 2.982731829729192, - "c5": 3.043891378015582, - "c6": 3.080824681367408, - "c7": 3.226903437967676 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -212793,23 +212793,23 @@ "year": 1769, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": -40.6600365105705, - "c2": 25.96556170517141, - "c3": 13.084132753591504, - "c4": -37.815660645359294, - "c5": -39.809747424945755, - "c6": -23.71835743353786, - "c7": 50.391736668996714 + "points": { + "c1": -16.118391394355086, + "c2": -27.76263759028829, + "c3": 36.941041582920576, + "c4": -7.481886399026024, + "c5": -23.445723235094206, + "c6": -21.04037442637206, + "c7": -44.10355325201155 }, - "vertexSeeds": { - "c1": 7.5673581402424634, - "c2": 7.11757250772885, - "c3": 7.65493151474901, - "c4": 7.068436455162417, - "c5": 7.664601481831992, - "c6": 7.502251064398978, - "c7": 7.307409799538099 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927868, + "c3": 9.153952843273235, + "c4": 7.323162274618579, + "c5": 5.4923717059639445, + "c6": 3.6615811373092897, + "c7": 1.830790568654655 }, "rgb": [77, 76, 132] }, @@ -212820,23 +212820,23 @@ "year": 1769, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": -17.406722592171782, - "c2": 46.223003890056475, - "c3": -32.13125758529132, - "c4": -33.909805182971795, - "c5": -28.617868472535577, - "c6": -8.21551915737762, - "c7": -29.578520938076515 + "points": { + "c1": 19.242162150349884, + "c2": -37.00716724441192, + "c3": -17.101689567142273, + "c4": 54.40532879787794, + "c5": -5.437933049073557, + "c6": 12.095550922306217, + "c7": 39.512109761168276 }, - "vertexSeeds": { - "c1": 2.764102150038443, - "c2": 2.796469245377168, - "c3": 2.7417797237989645, - "c4": 2.810041453783519, - "c5": 2.8173055718095323, - "c6": 2.7741834423267484, - "c7": 2.607024183748923 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [58, 15, 49] }, @@ -212847,23 +212847,23 @@ "year": 1768, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -21.826359696876153, - "c2": 33.13710982798123, - "c3": 14.906379184741915, - "c4": 30.970866601012, - "c5": 10.937994321095111, - "c6": -16.279531276583732, - "c7": -2.3904153164602135 + "points": { + "c1": 19.870880626824608, + "c2": 21.200155753764868, + "c3": 34.90177458457584, + "c4": -20.554764852626164, + "c5": -34.00798994875237, + "c6": 9.027152763620201, + "c7": 20.087851978228613 }, - "vertexSeeds": { - "c1": 1.58986488665154, - "c2": 1.7235893885302762, - "c3": 1.6735651538909806, - "c4": 1.6313754460303784, - "c5": 1.6330212775598216, - "c6": 1.6758344522456068, - "c7": 1.5610564474241297 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [238, 201, 159] }, @@ -212874,23 +212874,23 @@ "year": 1771, "resistanceReported": false, "duration": 94262400, - "curveSeeds": { - "c1": 69.0630637194627, - "c2": -52.438471480337846, - "c3": 34.593680417890155, - "c4": -80.28201513429502, - "c5": -103.1811861081024, - "c6": -80.26751837419931, - "c7": 57.99137322475953 + "points": { + "c1": 47.25015349275991, + "c2": -22.606399765757303, + "c3": -5.4806005143417025, + "c4": 68.52202299085904, + "c5": 83.43318937699631, + "c6": 15.616313108116103, + "c7": -73.69494317874972 }, - "vertexSeeds": { - "c1": 6.352888183956948, - "c2": 5.917987673932429, - "c3": 6.308373890474418, - "c4": 6.394470382611063, - "c5": 5.840076621944124, - "c6": 6.5111064421295985, - "c7": 6.15696662481854 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [86, 146, 138] }, @@ -212901,23 +212901,23 @@ "year": 1768, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -3.9501989549281227, - "c2": -25.405549244934853, - "c3": -23.55940302276348, - "c4": 16.60411151006561, - "c5": 2.375827169369824, - "c6": 26.847123233332457, - "c7": 30.704525529416745 + "points": { + "c1": 16.068307813448705, + "c2": -15.605989359333627, + "c3": -10.718470120830716, + "c4": 13.597335435605196, + "c5": 5.791600813278876, + "c6": -18.97871161583113, + "c7": 29.4197268892652 }, - "vertexSeeds": { - "c1": 2.6325342294015948, - "c2": 2.7286601194393025, - "c3": 2.650505574125821, - "c4": 2.7710263120859713, - "c5": 2.554480281861502, - "c6": 2.539870214710797, - "c7": 2.596945308823757 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919565, + "c3": 3.3287101248266318, + "c4": 2.6629680998612986, + "c5": 1.9972260748959743, + "c6": 1.3314840499306493, + "c7": 0.6657420249653246 }, "rgb": [58, 15, 49] }, @@ -212928,23 +212928,23 @@ "year": 1769, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -36.689091482832886, - "c2": -29.646085033336107, - "c3": 11.745076937454925, - "c4": 26.26995481928825, - "c5": 40.010640783599804, - "c6": -39.67559729708514, - "c7": -43.31802747602397 + "points": { + "c1": 1.4173242524074254, + "c2": -32.177956513580334, + "c3": 15.030742738841269, + "c4": -2.2250567773718544, + "c5": 26.992383922059567, + "c6": 23.399900276425065, + "c7": -44.06388915173871 }, - "vertexSeeds": { - "c1": 3.9560488587490785, - "c2": 4.386766893747815, - "c3": 4.2690550823608815, - "c4": 3.9121876700151645, - "c5": 4.123544271368785, - "c6": 4.309235060443504, - "c7": 3.9239566856603543 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -212955,23 +212955,23 @@ "year": 1769, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 37.96762816793704, - "c2": 19.748623108014364, - "c3": -42.93206446996287, - "c4": -13.816399203916042, - "c5": -17.21665665192355, - "c6": -35.014666844784266, - "c7": 15.682202136113403 + "points": { + "c1": 31.105879472785382, + "c2": 7.388313422979536, + "c3": -45.16201731874555, + "c4": 34.08572053563375, + "c5": -17.880270885758883, + "c6": -7.312412909144754, + "c7": -2.8863702114459997 }, - "vertexSeeds": { - "c1": 5.5340800600898925, - "c2": 5.725166824180806, - "c3": 5.6073549834946235, - "c4": 5.620818525256139, - "c5": 5.578520634097094, - "c6": 5.525551414856349, - "c7": 5.470223105511634 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905692, + "c3": 6.842348589921415, + "c4": 5.473878871937105, + "c5": 4.105409153952829, + "c6": 2.7369394359685524, + "c7": 1.3684697179842762 }, "rgb": [86, 146, 138] }, @@ -212982,23 +212982,23 @@ "year": 1768, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 20.268366760663277, - "c2": 18.344102522359194, - "c3": 26.301756633405297, - "c4": 33.46405788785966, - "c5": 12.412691437161861, - "c6": 2.206771014189492, - "c7": -30.47586888589872 + "points": { + "c1": 39.916332827508505, + "c2": 21.012780720308378, + "c3": 39.18702387231283, + "c4": -27.39180270669031, + "c5": 38.16010569420384, + "c6": 29.863537451476354, + "c7": 4.6420888552964 }, - "vertexSeeds": { - "c1": 2.431517763851089, - "c2": 2.3487011162535283, - "c3": 2.470315688112767, - "c4": 2.420446979242561, - "c5": 2.4239455581129112, - "c6": 2.0624068956581674, - "c7": 2.116497480155878 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288503, + "c3": 3.0050855293573737, + "c4": 2.4040684234859, + "c5": 1.8030513176144238, + "c6": 1.20203421174295, + "c7": 0.6010171058714762 }, "rgb": [222, 0, 59] }, @@ -213009,23 +213009,23 @@ "year": 1769, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 16.104694054231324, - "c2": -26.352453261612183, - "c3": -7.612740482840998, - "c4": 8.700900635273925, - "c5": 45.08362092011685, - "c6": -4.978970259401542, - "c7": -27.66128783745749 + "points": { + "c1": -27.891289427256833, + "c2": 18.79259545156409, + "c3": -36.08712648728045, + "c4": -47.70802987191792, + "c5": 45.40093414133816, + "c6": -18.858316504017928, + "c7": -24.71842293521953 }, - "vertexSeeds": { - "c1": 6.638088664000844, - "c2": 6.393030325013782, - "c3": 6.840556015932533, - "c4": 7.162457002254488, - "c5": 7.471516881504051, - "c6": 7.345110926274584, - "c7": 6.630427438367512 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847431, + "c3": 9.107720758206188, + "c4": 7.286176606564958, + "c5": 5.4646324549237155, + "c6": 3.643088303282474, + "c7": 1.8215441516412312 }, "rgb": [238, 201, 159] }, @@ -213036,23 +213036,23 @@ "year": 1769, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -7.796380989640525, - "c2": 31.87235432750797, - "c3": -10.80719410663363, - "c4": -20.659021620070934, - "c5": -41.24319652559005, - "c6": -21.4541431504264, - "c7": 8.684505548271638 + "points": { + "c1": 41.31622031724334, + "c2": -30.379234390578013, + "c3": -27.146791133846836, + "c4": 4.75891495124349, + "c5": 35.605926844985696, + "c6": -14.127151929513673, + "c7": 12.568486824203191 }, - "vertexSeeds": { - "c1": 1.9643192524744353, - "c2": 2.0271415100828083, - "c3": 1.871654018803026, - "c4": 1.9399642022881751, - "c5": 1.854229546567021, - "c6": 1.9209272890785587, - "c7": 2.033615535465543 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037453, + "c3": 2.473416551086455, + "c4": 1.978733240869165, + "c5": 1.4840499306518704, + "c6": 0.9893666204345803, + "c7": 0.4946833102172902 }, "rgb": [77, 76, 132] }, @@ -213063,23 +213063,23 @@ "year": 1769, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": 14.260442330621487, - "c2": -34.273820261162854, - "c3": 45.784479108324646, - "c4": 17.56702565483522, - "c5": 37.103979555121526, - "c6": -18.66016242411216, - "c7": 18.893720829591018 + "points": { + "c1": -46.244802775171536, + "c2": -19.364306494503516, + "c3": -18.455705521935243, + "c4": -26.25301004991096, + "c5": 41.96493252776564, + "c6": -5.023622826428017, + "c7": -25.62550951428907 }, - "vertexSeeds": { - "c1": 4.325890705678696, - "c2": 4.124879125554344, - "c3": 4.112850648776296, - "c4": 4.13636620598293, - "c5": 4.221712615896561, - "c6": 4.388056921371616, - "c7": 4.157686749600293 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170591, + "c3": 5.270457697642165, + "c4": 4.216366158113727, + "c5": 3.1622746185853012, + "c6": 2.1081830790568636, + "c7": 1.0540915395284378 }, "rgb": [86, 146, 138] }, @@ -213090,23 +213090,23 @@ "year": 1769, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -6.953294089028404, - "c2": 46.16766145819383, - "c3": 21.722979666098844, - "c4": -29.755524847948198, - "c5": -18.19988961529081, - "c6": -15.40790316558304, - "c7": 42.401278828049605 + "points": { + "c1": 27.97744532289456, + "c2": -6.8047870156534955, + "c3": -4.880402331455073, + "c4": -31.965190301778392, + "c5": 44.83544170392833, + "c6": 8.487561888288546, + "c7": 0.5963641169399381 }, - "vertexSeeds": { - "c1": 13.304086693253973, - "c2": 12.935197388630442, - "c3": 13.30599118120082, - "c4": 12.658138455735775, - "c5": 13.011731380399993, - "c6": 12.768184144220019, - "c7": 12.62344668877641 + "offsets": { + "c1": 22.362459546925567, + "c2": 19.167822468793343, + "c3": 15.97318539066112, + "c4": 12.778548312528894, + "c5": 9.583911234396671, + "c6": 6.389274156264447, + "c7": 3.1946370781322235 }, "rgb": [58, 15, 49] }, @@ -213117,23 +213117,23 @@ "year": 1769, "resistanceReported": false, "duration": 44755200, - "curveSeeds": { - "c1": -0.8177194092191584, - "c2": -5.602810837265785, - "c3": 34.49053417515221, - "c4": -30.496716223113946, - "c5": -41.765848925331355, - "c6": -37.587954028746836, - "c7": 42.04236547293093 + "points": { + "c1": -4.20575435079563, + "c2": 51.466531476644185, + "c3": -18.980971035219923, + "c4": -40.59279195337636, + "c5": 28.46786860704166, + "c6": 34.92485457977134, + "c7": 29.039939121220335 }, - "vertexSeeds": { - "c1": 4.8812388146687855, - "c2": 4.537258916447543, - "c3": 4.516667586046911, - "c4": 4.956479119663551, - "c5": 4.268258295749133, - "c6": 4.555045629572486, - "c7": 4.751163431219845 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779475, + "c3": 6.195099398982895, + "c4": 4.956079519186313, + "c5": 3.7170596393897375, + "c6": 2.4780397595931616, + "c7": 1.2390198797965808 }, "rgb": [238, 201, 159] }, @@ -213144,23 +213144,23 @@ "year": 1769, "resistanceReported": false, "duration": 42854400, - "curveSeeds": { - "c1": -3.4624614494594894, - "c2": -2.7464951005404146, - "c3": 41.60975926504681, - "c4": 55.200849569622655, - "c5": 32.50771588210491, - "c6": -35.40965647529657, - "c7": -2.233949409473105 + "points": { + "c1": 2.6258011683421003, + "c2": 52.3477608544272, + "c3": 56.92487066322945, + "c4": -5.734043146451228, + "c5": -57.09924407972385, + "c6": 9.005514266452586, + "c7": 25.139956210837063 }, - "vertexSeeds": { - "c1": 7.851613806707762, - "c2": 8.04886012955112, - "c3": 8.00557577981637, - "c4": 7.898828884218037, - "c5": 7.901676401887031, - "c6": 7.984426889713752, - "c7": 7.969061187235665 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812755, + "c3": 9.662505779010623, + "c4": 7.73000462320849, + "c5": 5.797503467406357, + "c6": 3.865002311604265, + "c7": 1.9325011558021326 }, "rgb": [222, 0, 59] }, @@ -213171,23 +213171,23 @@ "year": 1768, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -22.99169664380089, - "c2": -34.56109254761385, - "c3": 30.071325322420435, - "c4": 21.976776937450673, - "c5": -0.12243191565565326, - "c6": -1.997215317497215, - "c7": -32.81811662227693 + "points": { + "c1": 28.31680006830227, + "c2": 9.986801239462814, + "c3": 31.513431753003232, + "c4": 20.731149603462477, + "c5": -13.90508619342786, + "c6": 1.8934422008415197, + "c7": -34.06844826343233 }, - "vertexSeeds": { - "c1": 5.8594938824870155, - "c2": 5.597482629350786, - "c3": 5.910046752887663, - "c4": 5.906924463871724, - "c5": 5.890431421849377, - "c6": 5.598198646225791, - "c7": 5.759141703686232 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.54368932038835, + "c3": 7.119741100323624, + "c4": 5.6957928802588995, + "c5": 4.271844660194175, + "c6": 2.8478964401294498, + "c7": 1.4239482200647249 }, "rgb": [238, 201, 159] }, @@ -213198,23 +213198,23 @@ "year": 1769, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -9.071024981262944, - "c2": 17.809602631466, - "c3": 1.912439372569665, - "c4": 36.563423037847336, - "c5": -3.6966458823381245, - "c6": 32.75457658309504, - "c7": -22.754861705541902 + "points": { + "c1": 1.9185536969068835, + "c2": 4.47194327217381, + "c3": 13.192711071695406, + "c4": -12.390165895747678, + "c5": -30.157529924120254, + "c6": 41.96705155166189, + "c7": 30.83924513554191 }, - "vertexSeeds": { - "c1": 5.933992270771256, - "c2": 6.091724354040761, - "c3": 6.4129843718054635, - "c4": 5.868601872144547, - "c5": 6.058352601088851, - "c6": 5.911708529380885, - "c7": 6.03167417453157 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353666, + "c3": 7.674526121128065, + "c4": 6.139620896902444, + "c5": 4.604715672676844, + "c6": 3.069810448451222, + "c7": 1.5349052242256216 }, "rgb": [77, 76, 132] }, @@ -213225,23 +213225,23 @@ "year": 1768, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 1.5996590965179038, - "c2": -32.58695319220978, - "c3": -22.936037157419584, - "c4": -4.228185954851348, - "c5": -30.809379294336704, - "c6": 4.198080437098966, - "c7": 31.158477916705408 + "points": { + "c1": -18.45385279994299, + "c2": -14.679625827013435, + "c3": 29.816807904519138, + "c4": -28.870272654650563, + "c5": 15.362564830053223, + "c6": -22.617796359465736, + "c7": 18.746164670120137 }, - "vertexSeeds": { - "c1": 4.569737155510863, - "c2": 4.687153136710438, - "c3": 4.608213136151031, - "c4": 4.162766489574163, - "c5": 4.809671581380237, - "c6": 4.054192706821282, - "c7": 4.3977103033823814 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -213252,23 +213252,23 @@ "year": 1769, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": -60.84182600347264, - "c2": 17.851281363078478, - "c3": 12.254012636518716, - "c4": -36.17125509082862, - "c5": 39.40399480376497, - "c6": -55.97692009298878, - "c7": -39.06119803054992 + "points": { + "c1": 15.083933562737904, + "c2": -52.58798938090735, + "c3": 28.65988083876514, + "c4": 44.15440182289631, + "c5": -55.375670748731224, + "c6": -52.032845439317136, + "c7": -56.02569022986225 }, - "vertexSeeds": { - "c1": 7.29831582289121, - "c2": 6.9370254983035045, - "c3": 7.2986646267807735, - "c4": 7.34335097407761, - "c5": 6.935812035831994, - "c6": 7.398843156658652, - "c7": 7.199021826579856 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471568, + "c4": 7.156726768377254, + "c5": 5.367545076282941, + "c6": 3.578363384188627, + "c7": 1.7891816920943135 }, "rgb": [77, 76, 132] }, @@ -213279,23 +213279,23 @@ "year": 1769, "resistanceReported": true, "duration": 33350400, - "curveSeeds": { - "c1": 3.6456509010490663, - "c2": 31.787995289222536, - "c3": -19.205619305349018, - "c4": 40.225600198035465, - "c5": 8.23775860437167, - "c6": -23.738998165901197, - "c7": -4.200607839649393 + "points": { + "c1": 18.74965430129744, + "c2": 46.35429549808103, + "c3": -5.57733278500946, + "c4": 45.993092308406915, + "c5": -31.933873462267933, + "c6": 31.717356228381632, + "c7": -36.07584410280618 }, - "vertexSeeds": { - "c1": 5.601373881856438, - "c2": 6.160377046405608, - "c3": 6.561687480588568, - "c4": 6.310098912020406, - "c5": 6.112884545707023, - "c6": 6.232052487714768, - "c7": 6.581902377722191 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -213306,23 +213306,23 @@ "year": 1768, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -7.302353878594506, - "c2": -0.027122199580368545, - "c3": 10.198493192109353, - "c4": 29.19337824320378, - "c5": -1.9744717991106455, - "c6": 38.16619270292654, - "c7": 15.218923325172547 + "points": { + "c1": 24.78741724568721, + "c2": -8.55904128116683, + "c3": 36.14073305034023, + "c4": 38.30752423446121, + "c5": -16.633921765979355, + "c6": 30.08757721683935, + "c7": 32.03977467899364 }, - "vertexSeeds": { - "c1": 3.0120055233176894, - "c2": 3.2570772417793536, - "c3": 3.1583628918119744, - "c4": 3.0679087425617215, - "c5": 3.2217155767299857, - "c6": 3.178612583047339, - "c7": 3.196852728399527 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -213333,23 +213333,23 @@ "year": 1769, "resistanceReported": false, "duration": 39225600, - "curveSeeds": { - "c1": -52.68201245517002, - "c2": -29.01340588262788, - "c3": 9.073898464363772, - "c4": 23.132002581764432, - "c5": -39.05127279821374, - "c6": 40.68648698224779, - "c7": 3.738122324107408 + "points": { + "c1": -48.0631319078316, + "c2": 39.82764308900321, + "c3": 48.813504228314265, + "c4": 2.7081168740654817, + "c5": -49.56679833357855, + "c6": -7.445051215462257, + "c7": 5.4371436861855855 }, - "vertexSeeds": { - "c1": 8.685233160621761, - "c2": 8.685233160621761, - "c3": 8.685233160621761, - "c4": 8.685233160621761, - "c5": 8.685233160621761, - "c6": 8.685233160621761, - "c7": 8.685233160621761 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -213360,23 +213360,23 @@ "year": 1769, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 31.345753530311292, - "c2": 34.02795424569894, - "c3": 15.879474092903386, - "c4": -46.667976119764646, - "c5": 31.357696917106843, - "c6": -15.177703161221729, - "c7": -14.7920876554005 + "points": { + "c1": 41.711341600963685, + "c2": -38.355749602264204, + "c3": 5.496918303576216, + "c4": -24.45586377782841, + "c5": -33.9065440173341, + "c6": -38.714210310179766, + "c7": -15.239935838917056 }, - "vertexSeeds": { - "c1": 4.574781147370384, - "c2": 4.541306668987863, - "c3": 4.219683016598381, - "c4": 4.420510949649755, - "c5": 4.655401009341209, - "c6": 4.233512155966587, - "c7": 4.896799677869392 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.4063800277392495, + "c3": 6.171983356449378, + "c4": 4.937586685159499, + "c5": 3.703190013869627, + "c6": 2.4687933425797497, + "c7": 1.2343966712898724 }, "rgb": [86, 146, 138] }, @@ -213387,23 +213387,23 @@ "year": 1769, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -22.83341937276092, - "c2": 24.684453939805465, - "c3": 22.292847515906303, - "c4": -28.620306123751618, - "c5": -30.025760067106905, - "c6": 0.45783542713669334, - "c7": -14.52602859612849 + "points": { + "c1": 46.19098538536278, + "c2": -32.432185129936784, + "c3": -33.685795003203125, + "c4": 46.704259189791046, + "c5": -6.025128730078656, + "c6": -2.448074129050916, + "c7": -8.298954184789238 }, - "vertexSeeds": { - "c1": 7.598085626668018, - "c2": 7.746541893842179, - "c3": 7.9687355272815745, - "c4": 8.112550334209473, - "c5": 7.922004109522455, - "c6": 8.013243609597989, - "c7": 7.341502492651312 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255203, + "c3": 9.916782246879327, + "c4": 7.933425797503465, + "c5": 5.9500693481276015, + "c6": 3.966712898751726, + "c7": 1.983356449375863 }, "rgb": [222, 0, 59] }, @@ -213414,23 +213414,23 @@ "year": 1768, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -6.893316997848935, - "c2": -4.578845185178455, - "c3": -19.04917343996845, - "c4": -28.55318819613483, - "c5": -19.304820465536586, - "c6": 21.83067830084236, - "c7": 8.970684504536631 + "points": { + "c1": -21.216374441831753, + "c2": -17.699580494502047, + "c3": -30.079600539542618, + "c4": 11.367880451399088, + "c5": 26.593976894298358, + "c6": 15.945532545998425, + "c7": -26.45582447325497 }, - "vertexSeeds": { - "c1": 4.286923557166928, - "c2": 4.364993045123107, - "c3": 4.722883653366777, - "c4": 4.821211863144327, - "c5": 4.534132037363225, - "c6": 4.324805519136019, - "c7": 4.394236551531023 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -213441,23 +213441,23 @@ "year": 1769, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": -36.060905178105585, - "c2": -38.1450241369403, - "c3": 23.212048695118547, - "c4": 33.68691421908637, - "c5": 16.492519902228416, - "c6": -34.038859841661775, - "c7": -7.723363169722518 + "points": { + "c1": -14.10762021030039, + "c2": 45.45433169614319, + "c3": 33.05082381777708, + "c4": 41.43398012771849, + "c5": 44.13078535113491, + "c6": 5.362408785897948, + "c7": 8.188840886230608 }, - "vertexSeeds": { - "c1": 8.596077094982201, - "c2": 8.444839358785792, - "c3": 8.886844938983243, - "c4": 8.927897965905645, - "c5": 9.156501439409706, - "c6": 8.510942289540301, - "c7": 8.640918854064475 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024958, + "c3": 10.933888118354142, + "c4": 8.747110494683305, + "c5": 6.560332871012489, + "c6": 4.373555247341653, + "c7": 2.1867776236708365 }, "rgb": [86, 146, 138] }, @@ -213468,23 +213468,23 @@ "year": 1768, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -12.611057707704035, - "c2": -0.33530153519105355, - "c3": 13.822989842141915, - "c4": 24.983949756116594, - "c5": 11.53454452086222, - "c6": -16.216545497683242, - "c7": -20.468913783685387 + "points": { + "c1": -2.975297521917465, + "c2": 21.132572390048658, + "c3": 6.395792782062308, + "c4": 26.99839136537856, + "c5": 12.427432376816448, + "c6": 18.73613373889384, + "c7": 20.835906473626373 }, - "vertexSeeds": { - "c1": 1.1719382803076923, - "c2": 1.2466662086618698, - "c3": 1.263874015179908, - "c4": 1.2155182759963488, - "c5": 1.2605076388129761, - "c6": 1.2351025388271233, - "c7": 1.2507911205598343 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350902, + "c3": 1.5718908922792418, + "c4": 1.2575127138233935, + "c5": 0.9431345353675451, + "c6": 0.6287563569116967, + "c7": 0.31437817845584837 }, "rgb": [58, 15, 49] }, @@ -213495,23 +213495,23 @@ "year": 1769, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -22.42145490237152, - "c2": 36.32045123656302, - "c3": -42.31067843491635, - "c4": -37.550266054740845, - "c5": -8.141512941598663, - "c6": -27.395148598849413, - "c7": -18.195149545256037 + "points": { + "c1": -12.207229115685799, + "c2": 40.32044611416778, + "c3": 27.861415969530967, + "c4": 52.84998228376844, + "c5": 16.196052276488132, + "c6": 12.29585778208181, + "c7": -10.738480496779367 }, - "vertexSeeds": { - "c1": 1.0408792099737274, - "c2": 1.0139980334508056, - "c3": 1.0473300049765062, - "c4": 0.9552070032434937, - "c5": 1.0685904062365235, - "c6": 0.9681560606191547, - "c7": 1.0296608471824724 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.5533980582524276, + "c3": 1.2944983818770217, + "c4": 1.0355987055016178, + "c5": 0.7766990291262138, + "c6": 0.5177993527508099, + "c7": 0.2588996763754039 }, "rgb": [77, 76, 132] }, @@ -213522,23 +213522,23 @@ "year": 1768, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -20.984648109416533, - "c2": 14.30779641965811, - "c3": -27.646097072671942, - "c4": 21.59426298203779, - "c5": -20.828910945675702, - "c6": -21.01335092103274, - "c7": -15.388151327778585 + "points": { + "c1": -22.11709747814332, + "c2": -24.343090000714746, + "c3": 27.5627851542434, + "c4": 21.54350306632108, + "c5": 30.46496576478971, + "c6": 27.00518794600349, + "c7": 26.694324221246298 }, - "vertexSeeds": { - "c1": 7.828208088011608, - "c2": 6.586659165605988, - "c3": 6.779492920320153, - "c4": 8.135195486756613, - "c5": 6.974936732204113, - "c6": 7.407713866005891, - "c7": 7.121486022485108 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.011095700416085, + "c3": 10.009246417013403, + "c4": 8.007397133610727, + "c5": 6.005547850208043, + "c6": 4.003698566805359, + "c7": 2.001849283402676 }, "rgb": [238, 201, 159] }, @@ -213549,23 +213549,23 @@ "year": 1769, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": -16.72689343627676, - "c2": -27.881636159249783, - "c3": -45.39627775161758, - "c4": 15.904372942793259, - "c5": 38.06997997504003, - "c6": 43.581523697327526, - "c7": 3.5779273747537843 + "points": { + "c1": 43.26823103034185, + "c2": 12.50434597322375, + "c3": -41.95493368211364, + "c4": 35.83563463281797, + "c5": -50.16873321942711, + "c6": 22.70332307062938, + "c7": -48.73059227908077 }, - "vertexSeeds": { - "c1": 4.5951775426398855, - "c2": 5.076411607177407, - "c3": 5.414510959269301, - "c4": 4.808023951849191, - "c5": 4.897503508114913, - "c6": 5.37289378475058, - "c7": 4.8618911147079 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382798, + "c3": 6.541840036985671, + "c4": 5.233472029588534, + "c5": 3.9251040221914018, + "c6": 2.6167360147942698, + "c7": 1.308368007397132 }, "rgb": [238, 201, 159] }, @@ -213576,23 +213576,23 @@ "year": 1769, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": 0.383641748925335, - "c2": -19.697211447924946, - "c3": -17.24786419188053, - "c4": 49.63655904433433, - "c5": 27.006107121990432, - "c6": 1.3707132520619396, - "c7": -3.9461675493497523 + "points": { + "c1": 11.456443958819143, + "c2": -8.558739535080548, + "c3": -50.674163402355695, + "c4": -2.890851533426627, + "c5": 3.295683183134223, + "c6": -15.221416861736067, + "c7": -17.60348697042528 }, - "vertexSeeds": { - "c1": 4.774238168015687, - "c2": 5.110716363674638, - "c3": 4.665413395437368, - "c4": 5.120522272264111, - "c5": 4.899647526402364, - "c6": 4.671338407813549, - "c7": 5.040211807227694 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883499, + "c5": 4.077669902912622, + "c6": 2.718446601941747, + "c7": 1.3592233009708707 }, "rgb": [77, 76, 132] }, @@ -213603,23 +213603,23 @@ "year": 1769, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -5.672025862984189, - "c2": 2.0901331628863886, - "c3": -18.889529706853956, - "c4": 21.08892440726804, - "c5": -17.472102904611955, - "c6": -31.27452484083223, - "c7": 2.772050908522644 + "points": { + "c1": -15.425185132455631, + "c2": -30.76537373218487, + "c3": 24.477404323705187, + "c4": 36.30664204217232, + "c5": -28.149002496320975, + "c6": 10.177686679357173, + "c7": 10.252742382131203 }, - "vertexSeeds": { - "c1": 5.620321938584459, - "c2": 5.757158713390374, - "c3": 5.635334046514108, - "c4": 5.608939303952339, - "c5": 5.578004926011464, - "c6": 5.565175358284414, - "c7": 6.004785158870731 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112345, + "c3": 7.535829865926956, + "c4": 6.028663892741567, + "c5": 4.521497919556177, + "c6": 3.014331946370788, + "c7": 1.5071659731853992 }, "rgb": [58, 15, 49] }, @@ -213630,23 +213630,23 @@ "year": 1768, "resistanceReported": true, "duration": 13737600, - "curveSeeds": { - "c1": 23.854232943326377, - "c2": 6.530939592315381, - "c3": -16.917332644290635, - "c4": -20.283054075239, - "c5": -20.104791099765485, - "c6": -5.468369838371373, - "c7": -10.570543972535244 + "points": { + "c1": -19.06499811460592, + "c2": -9.246423817465988, + "c3": -22.452025968987172, + "c4": 15.349208001325952, + "c5": -22.55686401100849, + "c6": 23.24715163973902, + "c7": 5.063322111177666 }, - "vertexSeeds": { - "c1": 6.897668393782384, - "c2": 6.897668393782384, - "c3": 6.897668393782384, - "c4": 6.897668393782384, - "c5": 6.897668393782384, - "c6": 6.897668393782384, - "c7": 6.897668393782384 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -213657,23 +213657,23 @@ "year": 1769, "resistanceReported": true, "duration": 23846400, - "curveSeeds": { - "c1": 0.8658466927403623, - "c2": 6.010391625252851, - "c3": -30.21103105252744, - "c4": 14.1375540636988, - "c5": 10.46666991860397, - "c6": 10.618162811532606, - "c7": 15.12670179380968 + "points": { + "c1": -37.115728519084534, + "c2": -28.166125277730092, + "c3": 33.362327640825214, + "c4": 32.584522791807615, + "c5": -36.86405160747654, + "c6": 20.08255468317092, + "c7": -35.90006782596727 }, - "vertexSeeds": { - "c1": 4.546764596800269, - "c2": 4.672540231634564, - "c3": 4.118302923475824, - "c4": 4.323752673691759, - "c5": 4.203938973165547, - "c6": 4.087254539619645, - "c7": 4.3496151302446195 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485437, + "c3": 5.663430420711971, + "c4": 4.530744336569578, + "c5": 3.398058252427185, + "c6": 2.2653721682847916, + "c7": 1.1326860841423934 }, "rgb": [238, 201, 159] }, @@ -213684,23 +213684,23 @@ "year": 1768, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 23.38282483604734, - "c2": -23.058986801752965, - "c3": 21.202261101124854, - "c4": -23.071610815043517, - "c5": 19.951333388322396, - "c6": -15.13371859769871, - "c7": 20.20017288930793 + "points": { + "c1": -9.939591359815957, + "c2": -12.264800498480014, + "c3": 13.971698102605572, + "c4": 31.82929080151554, + "c5": 9.846933140981292, + "c6": -30.548747594470903, + "c7": -31.573734676224454 }, - "vertexSeeds": { - "c1": 7.512586067825017, - "c2": 7.6301081660916, - "c3": 7.637113188613627, - "c4": 7.748214529057356, - "c5": 7.637510745432544, - "c6": 7.728597278746481, - "c7": 7.753954063138876 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169206, + "c3": 9.292649098474334, + "c4": 7.434119278779462, + "c5": 5.575589459084617, + "c6": 3.7170596393897455, + "c7": 1.8585298196948727 }, "rgb": [86, 146, 138] }, @@ -213711,23 +213711,23 @@ "year": 1769, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 6.052150151327929, - "c2": -19.867259522005032, - "c3": 9.795995048789983, - "c4": 31.953210825441758, - "c5": -21.202935124878977, - "c6": 15.906178844659642, - "c7": 9.784973936998306 + "points": { + "c1": -9.641877264779634, + "c2": -12.637559950578726, + "c3": 25.887385600075838, + "c4": -28.308544679806552, + "c5": 32.94581498449814, + "c6": -19.89032460507649, + "c7": 15.776654392203028 }, - "vertexSeeds": { - "c1": 6.184757492620149, - "c2": 6.256475014474354, - "c3": 6.202535132629847, - "c4": 6.072386165033979, - "c5": 6.269180263321746, - "c6": 6.117467476568263, - "c7": 6.005252600951046 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468777, + "c3": 7.165973185390667, + "c4": 5.732778548312519, + "c5": 4.299583911234408, + "c6": 2.8663892741562593, + "c7": 1.4331946370781485 }, "rgb": [86, 146, 138] }, @@ -213738,23 +213738,23 @@ "year": 1769, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -17.406037874463276, - "c2": -6.492887046305523, - "c3": -29.420903996999396, - "c4": -24.81618545350627, - "c5": 14.26065546125929, - "c6": 33.976590662005535, - "c7": -24.337785442897122 + "points": { + "c1": -19.091859007627683, + "c2": 0.2687028516990182, + "c3": -12.694557387769919, + "c4": -23.707770090729305, + "c5": -20.797194520873497, + "c6": -35.69692608512572, + "c7": -19.583224153747977 }, - "vertexSeeds": { - "c1": 6.0873559386400595, - "c2": 6.539455895935028, - "c3": 6.091902617767271, - "c4": 6.459621583273714, - "c5": 6.525051355966159, - "c6": 6.40201698531106, - "c7": 6.38596095186637 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715683, + "c3": 7.882570503929724, + "c4": 6.3060564031437885, + "c5": 4.72954230235783, + "c6": 3.1530282015718942, + "c7": 1.5765141007859589 }, "rgb": [238, 201, 159] }, @@ -213765,23 +213765,23 @@ "year": 1768, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 10.973186863070254, - "c2": 31.00115451060922, - "c3": 21.52707527509709, - "c4": -8.370091313765265, - "c5": 7.566860299670978, - "c6": 23.919768539184567, - "c7": -17.24054391223553 + "points": { + "c1": -5.47670197522206, + "c2": 3.919311597947093, + "c3": 19.72124539068399, + "c4": -7.553341943036951, + "c5": 21.602170467079873, + "c6": 30.636917080954454, + "c7": -19.225293418806867 }, - "vertexSeeds": { - "c1": 4.430490691979365, - "c2": 4.486166243085888, - "c3": 4.768668650798554, - "c4": 4.230439964755755, - "c5": 4.715471777668403, - "c6": 4.460287903761282, - "c7": 4.651686581272899 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -213792,23 +213792,23 @@ "year": 1769, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": -47.3435777375886, - "c2": -8.57540886931276, - "c3": 11.96476837870037, - "c4": -9.22948285938083, - "c5": -32.981412050076386, - "c6": -42.10500607852153, - "c7": -10.717967943946263 + "points": { + "c1": -49.29236097949984, + "c2": 46.090391664397956, + "c3": 49.592568948779146, + "c4": 50.50992383211613, + "c5": -24.958272451500847, + "c6": -44.370266068230805, + "c7": 27.610454808892527 }, - "vertexSeeds": { - "c1": 2.5369808078452794, - "c2": 2.413321559397976, - "c3": 2.6130949585179737, - "c4": 2.470221043428497, - "c5": 2.3305040675247533, - "c6": 2.473850601858999, - "c7": 2.442936411961549 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692556, + "c4": 2.5889967637540443, + "c5": 1.9417475728155322, + "c6": 1.2944983818770204, + "c7": 0.6472491909385085 }, "rgb": [77, 76, 132] }, @@ -213819,23 +213819,23 @@ "year": 1768, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -7.274301369147999, - "c2": 8.072568564800356, - "c3": -4.2685694110672365, - "c4": 20.898750855390098, - "c5": 11.642721802846474, - "c6": -2.9994728357305114, - "c7": 22.029015988611768 + "points": { + "c1": -16.332928427355426, + "c2": 30.50119215123072, + "c3": -11.677507948993352, + "c4": -30.78035830433934, + "c5": -27.280144968486194, + "c6": -29.510094008737354, + "c7": -16.2474754428708 }, - "vertexSeeds": { - "c1": 8.107187181598157, - "c2": 7.484913020320323, - "c3": 7.2983379371030415, - "c4": 8.065136321629303, - "c5": 7.518887375297484, - "c6": 7.742457740377876, - "c7": 7.753024152917227 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.65048543689321, + "c3": 9.708737864077667, + "c4": 7.76699029126214, + "c5": 5.8252427184465985, + "c6": 3.88349514563107, + "c7": 1.9417475728155285 }, "rgb": [86, 146, 138] }, @@ -213846,23 +213846,23 @@ "year": 1769, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -11.48033718988999, - "c2": 20.481730157825808, - "c3": 16.26713670452947, - "c4": -3.877878699927173, - "c5": 11.279089214783504, - "c6": 29.112165288648306, - "c7": 5.2224914375740354 + "points": { + "c1": 13.824867321038411, + "c2": 3.7041220808011133, + "c3": -8.096243234133201, + "c4": -37.41681642427297, + "c5": 17.176868496286474, + "c6": 28.214613357170187, + "c7": -6.660704473000337 }, - "vertexSeeds": { - "c1": 5.665791675606531, - "c2": 5.735749095113901, - "c3": 5.698212106302192, - "c4": 5.546184884911579, - "c5": 5.775216807945767, - "c6": 5.795460224599024, - "c7": 5.662607641867067 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066585, + "c3": 6.934812760055474, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.7739251040221955, + "c7": 1.3869625520110838 }, "rgb": [238, 201, 159] }, @@ -213873,23 +213873,23 @@ "year": 1769, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -31.673662382621313, - "c2": -32.41592457394494, - "c3": -28.57631257117621, - "c4": -25.714561837327082, - "c5": 27.715154066602068, - "c6": -5.015134434333081, - "c7": 29.52462066206686 + "points": { + "c1": 29.544773749109773, + "c2": -29.716242643718555, + "c3": -16.04585546218432, + "c4": -28.30018010131274, + "c5": -31.11133561517943, + "c6": 13.50586952734352, + "c7": 25.837496912827632 }, - "vertexSeeds": { - "c1": 4.544059405836315, - "c2": 5.139987244813376, - "c3": 4.651512449822757, - "c4": 4.993393859507255, - "c5": 4.444585213099471, - "c6": 4.775717451196972, - "c7": 5.122085819207281 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099818 }, "rgb": [77, 76, 132] }, @@ -213900,23 +213900,23 @@ "year": 1769, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 9.218543855971461, - "c2": 14.773859291511897, - "c3": 27.768167739204117, - "c4": -19.254448868259658, - "c5": -5.2191727827143986, - "c6": -21.24150029982021, - "c7": -20.523643435422727 + "points": { + "c1": -4.329149992779456, + "c2": -3.0125574767577064, + "c3": -33.71532770209116, + "c4": -29.84043244478637, + "c5": -32.50527920292855, + "c6": -28.17133736142035, + "c7": 33.618703140535175 }, - "vertexSeeds": { - "c1": 8.19523537793563, - "c2": 8.071553133197105, - "c3": 8.852307915799607, - "c4": 8.11125919421497, - "c5": 8.039396916955074, - "c6": 7.985036952595548, - "c7": 8.043009694942219 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306516, + "c3": 11.09570041608876, + "c4": 8.876560332871007, + "c5": 6.657420249653263, + "c6": 4.438280166435509, + "c7": 2.2191400832177544 }, "rgb": [58, 15, 49] }, @@ -213927,23 +213927,23 @@ "year": 1769, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -37.65082127427254, - "c2": -3.0509778851334346, - "c3": -13.395456794303062, - "c4": -15.444417384566673, - "c5": -42.888571351490135, - "c6": -28.664915649864533, - "c7": 42.1663709891231 + "points": { + "c1": -9.234184241535928, + "c2": 14.188998510930048, + "c3": 36.657741589759915, + "c4": -44.14854977802746, + "c5": 28.461057421160426, + "c6": 31.097627524773564, + "c7": 4.447587615375419 }, - "vertexSeeds": { - "c1": 2.2365143356360777, - "c2": 2.2326944640829756, - "c3": 2.3537889853962017, - "c4": 2.084129101769026, - "c5": 2.046745409312826, - "c6": 2.303537507237098, - "c7": 2.1567949086640823 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875163, + "c3": 2.866389274156265, + "c4": 2.293111419325011, + "c5": 1.7198335644937597, + "c6": 1.1465557096625054, + "c7": 0.5732778548312543 }, "rgb": [238, 201, 159] }, @@ -213954,23 +213954,23 @@ "year": 1769, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -16.45030770313949, - "c2": 26.849815936076922, - "c3": 36.02018794825574, - "c4": -42.37902220945279, - "c5": -40.92041212806017, - "c6": 30.2697782233718, - "c7": 37.866606203686786 + "points": { + "c1": 4.412652238796369, + "c2": -3.2998014498917456, + "c3": 4.020369872572566, + "c4": -27.31827765674525, + "c5": 14.551703520363127, + "c6": -2.093796684387918, + "c7": 11.772518207788025 }, - "vertexSeeds": { - "c1": 4.294041450777202, - "c2": 4.294041450777202, - "c3": 4.294041450777202, - "c4": 4.294041450777202, - "c5": 4.294041450777202, - "c6": 4.294041450777202, - "c7": 4.294041450777202 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -213981,23 +213981,23 @@ "year": 1769, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -34.75149628423969, - "c2": -0.9600549121084327, - "c3": -27.82488506760707, - "c4": 14.434993056430237, - "c5": -32.52277288366446, - "c6": 4.005255645473255, - "c7": -7.784089058558244 + "points": { + "c1": 3.1519187436614757, + "c2": -7.456806398378298, + "c3": 4.439235863013238, + "c4": -11.195361792863416, + "c5": 7.814903321258754, + "c6": -0.23262017005113478, + "c7": -11.795778437578441 }, - "vertexSeeds": { - "c1": 6.242484052749122, - "c2": 6.982613158255672, - "c3": 5.887579634371994, - "c4": 6.6773323309793975, - "c5": 6.396343287231257, - "c6": 6.780837379802708, - "c7": 6.450073405147916 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [58, 15, 49] }, @@ -214008,23 +214008,23 @@ "year": 1769, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 22.448801246958567, - "c2": 24.809303334815773, - "c3": -23.879087077852176, - "c4": -31.01976610559253, - "c5": 24.187195394533873, - "c6": 21.760878771020366, - "c7": -34.79516380378121 + "points": { + "c1": -23.13445841193904, + "c2": -34.58707394260598, + "c3": 19.62908245185635, + "c4": -24.795443638567825, + "c5": -10.599936810900623, + "c6": 5.8310112627824395, + "c7": -2.254545312951592 }, - "vertexSeeds": { - "c1": 3.6408745922193595, - "c2": 3.4159192695793976, - "c3": 3.4161230863559457, - "c4": 3.393067788745797, - "c5": 3.2642217888681158, - "c6": 3.455481671575165, - "c7": 3.3961695531773466 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601945, + "c3": 4.36893203883495, + "c4": 3.495145631067963, + "c5": 2.621359223300969, + "c6": 1.7475728155339816, + "c7": 0.8737864077669871 }, "rgb": [58, 15, 49] }, @@ -214035,23 +214035,23 @@ "year": 1769, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -42.9387243189208, - "c2": -22.899054381417965, - "c3": -40.66343277638526, - "c4": -41.03862834717929, - "c5": 14.001858273659984, - "c6": 0.6183151873939039, - "c7": 42.78364548318539 + "points": { + "c1": 26.52668042314489, + "c2": -12.703074441899538, + "c3": 13.126202820906826, + "c4": -35.28009939816444, + "c5": 43.72618465018915, + "c6": 31.03402328590915, + "c7": 12.517072425713295 }, - "vertexSeeds": { - "c1": 1.3117085010922058, - "c2": 1.1616471773218577, - "c3": 1.3312794997805115, - "c4": 1.1712565563202728, - "c5": 1.2368608858137626, - "c6": 1.2337900332355622, - "c7": 1.3668313151999545 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959767, + "c3": 1.6643550624133157, + "c4": 1.3314840499306517, + "c5": 0.9986130374479876, + "c6": 0.6657420249653265, + "c7": 0.33287101248266254 }, "rgb": [238, 201, 159] }, @@ -214062,23 +214062,23 @@ "year": 1769, "resistanceReported": true, "duration": 20649600, - "curveSeeds": { - "c1": 14.875090740945964, - "c2": -11.073986077798192, - "c3": -8.626610814352944, - "c4": 28.07993762261426, - "c5": -15.877952244918252, - "c6": -6.638457686517263, - "c7": -30.926681933734454 + "points": { + "c1": 22.87863648822055, + "c2": -16.499734879016724, + "c3": -5.435370780161801, + "c4": 3.9509992355263037, + "c5": 11.695320809279224, + "c6": 6.1867310854618935, + "c7": 20.417373635553353 }, - "vertexSeeds": { - "c1": 3.917817644032093, - "c2": 3.916045311532648, - "c3": 3.1534316882019224, - "c4": 3.5447585921708846, - "c5": 3.477000678739663, - "c6": 3.089711604826714, - "c7": 3.237210804300922 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325938, + "c3": 4.785020804438279, + "c4": 3.828016643550625, + "c5": 2.8710124826629673, + "c6": 1.9140083217753125, + "c7": 0.9570041608876582 }, "rgb": [238, 201, 159] }, @@ -214089,23 +214089,23 @@ "year": 1769, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 11.796298426412264, - "c2": -13.560333048218634, - "c3": 6.29887618067788, - "c4": -33.17247111917516, - "c5": 10.146552959329057, - "c6": 2.01731097144512, - "c7": -0.1872810137849612 + "points": { + "c1": -5.685060543105436, + "c2": 5.102056893344361, + "c3": -1.1669368916562135, + "c4": 27.623353288532655, + "c5": 38.72076309117428, + "c6": -13.265731550601817, + "c7": 24.017778849675025 }, - "vertexSeeds": { - "c1": 4.904840394751994, - "c2": 4.188676604544824, - "c3": 5.204823801072616, - "c4": 5.3070000120713425, - "c5": 4.631623874925242, - "c6": 4.432615315772108, - "c7": 5.097208758343118 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -214116,23 +214116,23 @@ "year": 1768, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 13.918643620861761, - "c2": 17.53436968766245, - "c3": -2.7000785583314126, - "c4": -10.280481689189433, - "c5": -6.176333089384922, - "c6": 14.651212192046184, - "c7": -24.96260211324178 + "points": { + "c1": 2.5737640447125045, + "c2": -22.80949520992855, + "c3": 2.183974488009973, + "c4": -20.71127120740394, + "c5": 32.089388506327126, + "c6": -8.856464972283458, + "c7": -5.817036412711403 }, - "vertexSeeds": { - "c1": 2.9114252929379525, - "c2": 3.033200817249919, - "c3": 3.0040153181854605, - "c4": 3.0684004718267843, - "c5": 2.8669911491488613, - "c6": 2.988914463717987, - "c7": 2.833787028747798 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636613, + "c3": 3.8141470180305133, + "c4": 3.0513176144244087, + "c5": 2.288488210818309, + "c6": 1.5256588072122044, + "c7": 0.7628294036060999 }, "rgb": [238, 201, 159] }, @@ -214143,23 +214143,23 @@ "year": 1769, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -33.53221222555396, - "c2": -42.84959790063377, - "c3": -1.0667405015648228, - "c4": -22.450313060750066, - "c5": 16.844545933588677, - "c6": -38.327617854387135, - "c7": 42.767008573525835 + "points": { + "c1": 36.6808495774842, + "c2": -9.604895184163425, + "c3": -11.255481730208338, + "c4": 9.086088774787072, + "c5": 37.163477909878104, + "c6": 21.86534210045486, + "c7": 3.12284082769483 }, - "vertexSeeds": { - "c1": 1.3797059524453845, - "c2": 1.3201100353068536, - "c3": 1.3539005432259537, - "c4": 1.3185904401788016, - "c5": 1.3076146431831552, - "c6": 1.3853043002678325, - "c7": 1.3275954518929602 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.080443828016643, + "c3": 1.7337031900138695, + "c4": 1.3869625520110955, + "c5": 1.0402219140083215, + "c6": 0.6934812760055478, + "c7": 0.3467406380027739 }, "rgb": [222, 0, 59] }, @@ -214170,23 +214170,23 @@ "year": 1769, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -33.567881904777465, - "c2": -38.23258707353102, - "c3": 7.540392227527519, - "c4": -33.86739716278505, - "c5": -35.87083195247206, - "c6": 31.185468434137228, - "c7": 41.101927455830385 + "points": { + "c1": -11.132758806620785, + "c2": 15.149825410242443, + "c3": 14.898613000699441, + "c4": -9.334480702619828, + "c5": -2.122998198297992, + "c6": -36.07211149704721, + "c7": 25.20369565102532 }, - "vertexSeeds": { - "c1": 7.525545861206294, - "c2": 6.908498537160055, - "c3": 6.129481003468841, - "c4": 7.419718220116101, - "c5": 5.84034350055961, - "c6": 5.836664042946731, - "c7": 6.493670155202929 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686545, + "c3": 9.01525658807212, + "c4": 7.2122052704577015, + "c5": 5.409153952843275, + "c6": 3.6061026352288508, + "c7": 1.8030513176144254 }, "rgb": [77, 76, 132] }, @@ -214197,23 +214197,23 @@ "year": 1768, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": -3.053882861562588, - "c2": -9.584792804999333, - "c3": 18.827155395948218, - "c4": 3.404511841550214, - "c5": 14.624463294065642, - "c6": -1.524782245031691, - "c7": 2.5966465817606057 + "points": { + "c1": -15.01507732755847, + "c2": -14.406441026802332, + "c3": 16.540794417988778, + "c4": 12.638670355229486, + "c5": -6.2258050530488465, + "c6": -13.341951369120181, + "c7": -20.456305529701904 }, - "vertexSeeds": { - "c1": 0.5894237759865281, - "c2": 0.5710004852196998, - "c3": 0.6378025161553321, - "c4": 0.5641816897483335, - "c5": 0.5944788446542312, - "c6": 0.5772126519555059, - "c7": 0.5734486198875637 + "offsets": { + "c1": 1.1003236245954693, + "c2": 0.9431345353675451, + "c3": 0.7859454461396209, + "c4": 0.6287563569116967, + "c5": 0.47156726768377255, + "c6": 0.31437817845584837, + "c7": 0.15718908922792418 }, "rgb": [86, 146, 138] }, @@ -214224,23 +214224,23 @@ "year": 1769, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -23.705935021193973, - "c2": -25.23352851050345, - "c3": 21.81029321138854, - "c4": 8.30615516669976, - "c5": -23.598207026980212, - "c6": 11.73986053214329, - "c7": 22.485019874189696 + "points": { + "c1": 19.22454333703574, + "c2": 26.576172364442023, + "c3": -6.363372771533168, + "c4": 21.36964835413997, + "c5": -14.327179852121048, + "c6": 6.9582255766684895, + "c7": 29.680096160580945 }, - "vertexSeeds": { - "c1": 2.494509170080653, - "c2": 2.696122265759572, - "c3": 2.537004563625478, - "c4": 2.5232263694180075, - "c5": 2.6783345074293945, - "c6": 2.6083640489291837, - "c7": 2.6201396298424258 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751736, + "c3": 3.3055940822931085, + "c4": 2.644475265834489, + "c5": 1.9833564493758702, + "c6": 1.3222376329172425, + "c7": 0.6611188164586234 }, "rgb": [238, 201, 159] }, @@ -214251,23 +214251,23 @@ "year": 1769, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -22.869477669181332, - "c2": -19.90337141278233, - "c3": -19.657710420278775, - "c4": -4.9899873152363625, - "c5": -5.99922541315577, - "c6": -6.749340458650558, - "c7": 6.233056113624109 + "points": { + "c1": 10.694436600310098, + "c2": 15.522270130716677, + "c3": -37.70472504157383, + "c4": -42.048529648889485, + "c5": 26.05510179142439, + "c6": -41.62430747479854, + "c7": 20.535225646728243 }, - "vertexSeeds": { - "c1": 2.754607090171537, - "c2": 2.6130032752021854, - "c3": 2.454014213469299, - "c4": 2.71689033389446, - "c5": 2.617373466132394, - "c6": 2.459761900240564, - "c7": 2.6719429170116284 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751736, + "c3": 3.3055940822931085, + "c4": 2.644475265834489, + "c5": 1.9833564493758702, + "c6": 1.3222376329172425, + "c7": 0.6611188164586234 }, "rgb": [238, 201, 159] }, @@ -214278,23 +214278,23 @@ "year": 1769, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -13.936757116481747, - "c2": 9.758700127921166, - "c3": 27.019972209113426, - "c4": -27.656740869181316, - "c5": -26.560099811555837, - "c6": 7.8280487911696, - "c7": 8.17764008171357 + "points": { + "c1": -5.983489879217171, + "c2": -5.774278818147529, + "c3": 31.35890240633347, + "c4": -31.017970690684255, + "c5": -8.851539384037203, + "c6": -1.9921053218751936, + "c7": 19.17918938514792 }, - "vertexSeeds": { - "c1": 4.596849772990353, - "c2": 4.573796245674501, - "c3": 4.378746786877251, - "c4": 4.1571021963780375, - "c5": 4.4974211728429845, - "c6": 4.147226661306314, - "c7": 4.533171138752539 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -214305,23 +214305,23 @@ "year": 1769, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 2.011869761610022, - "c2": 0.05612825972440305, - "c3": 37.791331159045626, - "c4": -20.784121802960115, - "c5": -3.9375076923880385, - "c6": -21.44860447542823, - "c7": -29.317150158339413 + "points": { + "c1": -18.547429924102147, + "c2": 29.888697861645454, + "c3": 26.58977180030854, + "c4": 28.818036384995338, + "c5": -34.37925453511171, + "c6": -26.7175817796521, + "c7": 10.446804609607995 }, - "vertexSeeds": { - "c1": 7.257479354052277, - "c2": 7.30720368124335, - "c3": 6.4610780734784, - "c4": 6.2195578966051075, - "c5": 5.963522498709655, - "c6": 6.7084753585295855, - "c7": 6.5424946314475365 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807211, + "c3": 9.084604715672675, + "c4": 7.26768377253814, + "c5": 5.4507628294036055, + "c6": 3.63384188626907, + "c7": 1.816920943134535 }, "rgb": [86, 146, 138] }, @@ -214332,23 +214332,23 @@ "year": 1769, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 28.422298001120538, - "c2": -25.832827466109386, - "c3": 4.94478310681874, - "c4": 16.76674474819734, - "c5": -5.371586013680542, - "c6": -10.196646911998574, - "c7": -16.876626116394203 + "points": { + "c1": 18.560927113146434, + "c2": -10.280814636418757, + "c3": 23.247776482063202, + "c4": 27.34926278359739, + "c5": 16.055573996129745, + "c6": 13.794278560574043, + "c7": -10.171413519269176 }, - "vertexSeeds": { - "c1": 0.8652574285655147, - "c2": 0.7989904586156986, - "c3": 0.815625843361709, - "c4": 0.8235988280097758, - "c5": 0.8513791332961156, - "c6": 0.8589368043953763, - "c7": 0.83600852052922 + "offsets": { + "c1": 1.5857605177993526, + "c2": 1.359223300970873, + "c3": 1.132686084142395, + "c4": 0.9061488673139153, + "c5": 0.6796116504854373, + "c6": 0.45307443365695765, + "c7": 0.22653721682847955 }, "rgb": [77, 76, 132] }, @@ -214359,23 +214359,23 @@ "year": 1769, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -10.686050508043234, - "c2": -23.57079468484575, - "c3": 19.26791921463326, - "c4": -19.66268912222812, - "c5": -22.87213961256153, - "c6": -36.234517700029684, - "c7": 30.814538094646558 + "points": { + "c1": -12.024666698810236, + "c2": -17.01533599080522, + "c3": -31.509086221489312, + "c4": 17.528948030393465, + "c5": -34.999366046660114, + "c6": 31.586046543634872, + "c7": 18.86705324019055 }, - "vertexSeeds": { - "c1": 8.844264190636487, - "c2": 9.238144178764363, - "c3": 9.131257108391313, - "c4": 9.155063434324164, - "c5": 8.954502234888949, - "c6": 9.398773225374061, - "c7": 9.292328273565749 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507615, + "c3": 11.211280628756361, + "c4": 8.969024503005077, + "c5": 6.726768377253824, + "c6": 4.484512251502538, + "c7": 2.2422561257512537 }, "rgb": [222, 0, 59] }, @@ -214386,23 +214386,23 @@ "year": 1769, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 23.926826948667795, - "c2": -25.102536239212636, - "c3": 31.5053137632935, - "c4": -18.688703203269714, - "c5": 39.15041119641805, - "c6": 4.833390696834911, - "c7": 41.97339767412119 + "points": { + "c1": 23.890647729373356, + "c2": 24.750497397278593, + "c3": -21.12695028196877, + "c4": 7.1055441592129185, + "c5": 0.5353194887681454, + "c6": -4.652143187135387, + "c7": -29.9084829714088 }, - "vertexSeeds": { - "c1": 5.19766552735305, - "c2": 4.990093511567087, - "c3": 4.878196587554227, - "c4": 5.201378281854463, - "c5": 5.172252681129379, - "c6": 5.007343536113248, - "c7": 4.92883135353039 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020811, + "c3": 6.333795654183995, + "c4": 5.0670365233472, + "c5": 3.8002773925104054, + "c6": 2.5335182616735903, + "c7": 1.2667591308367951 }, "rgb": [58, 15, 49] }, @@ -214413,23 +214413,23 @@ "year": 1769, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -22.78366475854874, - "c2": 20.407684178933046, - "c3": -28.207073069996476, - "c4": -16.903790104242724, - "c5": -26.779505134465975, - "c6": -36.03490054587377, - "c7": 7.2546645734721835 + "points": { + "c1": -11.750903441842727, + "c2": 0.042523869731127206, + "c3": -13.926813792307385, + "c4": 15.960200100045832, + "c5": -31.589455215165703, + "c6": 38.81946991307997, + "c7": 29.111119855755533 }, - "vertexSeeds": { - "c1": 6.752151588000075, - "c2": 6.697457791388759, - "c3": 6.159173383597707, - "c4": 6.800823488133039, - "c5": 6.7725272514151, - "c6": 6.5848241886342604, - "c7": 6.5842411814147335 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278779, + "c3": 8.206195099398983, + "c4": 6.5649560795191855, + "c5": 4.923717059639389, + "c6": 3.2824780397595927, + "c7": 1.6412390198797964 }, "rgb": [77, 76, 132] }, @@ -214440,23 +214440,23 @@ "year": 1770, "resistanceReported": false, "duration": 51926400, - "curveSeeds": { - "c1": 62.746966261464706, - "c2": -6.561544315742495, - "c3": 66.77091357819799, - "c4": 47.935553596262565, - "c5": -0.5074309443806868, - "c6": 24.52683236399129, - "c7": -13.056918245087353 + "points": { + "c1": -7.882791273859674, + "c2": -25.73942225968733, + "c3": 62.68012712146796, + "c4": 52.578369063078796, + "c5": 37.013051304866025, + "c6": -67.86319749247527, + "c7": 23.401957978123733 }, - "vertexSeeds": { - "c1": 3.1763224947869055, - "c2": 3.242602027856218, - "c3": 3.2014455523150818, - "c4": 2.9977644371597654, - "c5": 3.127737083233505, - "c6": 2.9598884879798883, - "c7": 2.9592048952224466 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -214467,23 +214467,23 @@ "year": 1769, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -31.224191358178118, - "c2": -20.460169696804186, - "c3": -4.410315921318102, - "c4": 1.919352870742074, - "c5": -27.502022599275023, - "c6": 35.22310175447121, - "c7": -35.640983452604786 + "points": { + "c1": -7.282850653913279, + "c2": 19.07329396154543, + "c3": -28.724077128301722, + "c4": 0.4827809441990354, + "c5": -12.194622360370424, + "c6": -36.81623676716753, + "c7": 24.954444095839797 }, - "vertexSeeds": { - "c1": 5.659393203507201, - "c2": 5.661437962377426, - "c3": 5.656758079786966, - "c4": 5.640460067551017, - "c5": 5.640650238295877, - "c6": 5.6650091581274715, - "c7": 5.635009063095387 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704616, + "c3": 6.726768377253891, + "c4": 5.381414701803166, + "c5": 4.036061026352174, + "c6": 2.6907073509014494, + "c7": 1.3453536754507247 }, "rgb": [238, 201, 159] }, @@ -214494,23 +214494,23 @@ "year": 1769, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -12.642182229491784, - "c2": -26.962751346714136, - "c3": 36.343342814821185, - "c4": -29.797015780437633, - "c5": 8.876860914547017, - "c6": -32.539292798925054, - "c7": -36.603356460140226 + "points": { + "c1": -34.4326154317576, + "c2": 29.19900543480847, + "c3": -32.366428071150644, + "c4": -31.825217507078097, + "c5": -30.669233553827127, + "c6": 4.390062668177308, + "c7": -29.50635590259727 }, - "vertexSeeds": { - "c1": 10.40680491560175, - "c2": 10.065907570490872, - "c3": 10.721758915162471, - "c4": 10.19546900101212, - "c5": 9.685682948125672, - "c6": 9.858897410323022, - "c7": 10.56212787842597 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725382, + "c3": 13.060564031437819, + "c4": 10.448451225150254, + "c5": 7.836338418862691, + "c6": 5.224225612575127, + "c7": 2.6121128062875636 }, "rgb": [58, 15, 49] }, @@ -214521,23 +214521,23 @@ "year": 1769, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 4.764032295029558, - "c2": -28.872496138610277, - "c3": -27.07514779985167, - "c4": -22.300198964864236, - "c5": -2.3415779166533213, - "c6": -29.213493474817405, - "c7": 11.441131191038622 + "points": { + "c1": -25.695798249655056, + "c2": 11.856473665027742, + "c3": -19.917609820375905, + "c4": 35.46344378158487, + "c5": 8.716300006348789, + "c6": -6.744419720702098, + "c7": -27.50576270058917 }, - "vertexSeeds": { - "c1": 5.407346931899303, - "c2": 5.660904099744095, - "c3": 5.006915288780157, - "c4": 5.116929549362479, - "c5": 4.886537011816772, - "c6": 5.120997809939197, - "c7": 5.4749917308404825 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [222, 0, 59] }, @@ -214548,23 +214548,23 @@ "year": 1769, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 39.8915431232697, - "c2": 34.532439009665126, - "c3": 5.276329020983653, - "c4": -13.659535931635904, - "c5": -16.796227308805626, - "c6": 7.587960891990349, - "c7": -27.588977157586612 + "points": { + "c1": -42.233820014600376, + "c2": -25.747120159131725, + "c3": 26.305256089447255, + "c4": 10.67443585313898, + "c5": -32.666266850652306, + "c6": 42.44809508456501, + "c7": -38.21854442584239 }, - "vertexSeeds": { - "c1": 7.376399559493792, - "c2": 6.996085720822072, - "c3": 7.181127263113167, - "c4": 7.4524089587649565, - "c5": 7.320814731271835, - "c6": 7.09254892800414, - "c7": 6.990961962703778 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -214575,23 +214575,23 @@ "year": 1768, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -0.8078039357329203, - "c2": 14.678371423868136, - "c3": -18.615273695555477, - "c4": -7.942044013213302, - "c5": 19.056517884992303, - "c6": 0.5127801677606527, - "c7": -1.3963017946337892 + "points": { + "c1": 0.19372905641609606, + "c2": 8.996180477138054, + "c3": 16.119366482730236, + "c4": 16.025264083710205, + "c5": -2.3214934970046173, + "c6": -7.5202946972620595, + "c7": 20.50740603305382 }, - "vertexSeeds": { - "c1": 2.711003273419794, - "c2": 2.657421201776581, - "c3": 2.8675522472799733, - "c4": 2.764105665780612, - "c5": 2.337446678235797, - "c6": 2.4576627091983076, - "c7": 2.862961521641427 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073508, + "c3": 3.4905224225612588, + "c4": 2.7924179380490064, + "c5": 2.094313453536754, + "c6": 1.3962089690245032, + "c7": 0.6981044845122524 }, "rgb": [86, 146, 138] }, @@ -214602,23 +214602,23 @@ "year": 1769, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -19.516497076634714, - "c2": 16.33752515724312, - "c3": 30.545060012728, - "c4": 17.140599640326634, - "c5": -17.98201801587456, - "c6": -2.631829293583607, - "c7": -0.8106268849672631 + "points": { + "c1": 26.47288528927944, + "c2": -22.011000356658002, + "c3": -4.880225548993415, + "c4": -30.037981934997845, + "c5": -32.62041988821578, + "c6": 3.0725231446914805, + "c7": -15.053000416841744 }, - "vertexSeeds": { - "c1": 6.229446053600334, - "c2": 6.041353330664596, - "c3": 6.842309905721544, - "c4": 6.492365947173853, - "c5": 6.176785523913049, - "c6": 5.947105884943592, - "c7": 6.72213212408165 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565885, + "c3": 8.945908460471566, + "c4": 7.156726768377257, + "c5": 5.367545076282938, + "c6": 3.5783633841886284, + "c7": 1.7891816920943102 }, "rgb": [58, 15, 49] }, @@ -214629,23 +214629,23 @@ "year": 1769, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 20.518226695020203, - "c2": 30.876982468398587, - "c3": 22.649683534088545, - "c4": 17.325107398327454, - "c5": -12.552335555959147, - "c6": 4.617042138355465, - "c7": -14.397205381331261 + "points": { + "c1": -9.318407219145076, + "c2": 7.944175265294483, + "c3": -33.22297247372003, + "c4": -28.769009987198377, + "c5": 6.855943680941749, + "c6": 17.481178111060864, + "c7": -9.38917363578534 }, - "vertexSeeds": { - "c1": 2.4907827498463546, - "c2": 2.499086139374924, - "c3": 2.501606985379327, - "c4": 2.4997864891968526, - "c5": 2.4911159211597784, - "c6": 2.4879484255392383, - "c7": 2.4932458597687086 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228866, + "c3": 3.0050855293574084, + "c4": 2.4040684234859504, + "c5": 1.8030513176143732, + "c6": 1.2020342117429155, + "c7": 0.6010171058714577 }, "rgb": [58, 15, 49] }, @@ -214656,23 +214656,23 @@ "year": 1769, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -7.130789255327958, - "c2": 6.9312753617537375, - "c3": 6.342428346453172, - "c4": -23.100152939115524, - "c5": 28.913490931841803, - "c6": 14.905984741616582, - "c7": 21.902052379211792 + "points": { + "c1": -4.006961929110293, + "c2": 8.218978314439628, + "c3": -29.265281184216374, + "c4": -2.2840313611918965, + "c5": -1.6864595898398491, + "c6": 15.128619907117734, + "c7": 9.432764773041807 }, - "vertexSeeds": { - "c1": 4.7800369473858515, - "c2": 4.359166206056656, - "c3": 4.059508180969476, - "c4": 4.81858955511024, - "c5": 4.655944683452521, - "c6": 4.47625420967566, - "c7": 4.669038993212075 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -214683,23 +214683,23 @@ "year": 1769, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 1.7720646926203791, - "c2": -13.303324366173458, - "c3": -10.569429859630645, - "c4": 27.019792917624976, - "c5": 20.63142126514701, - "c6": 20.3198560862509, - "c7": -1.3309620458241547 + "points": { + "c1": 4.047635804206301, + "c2": 20.324760639577654, + "c3": -27.0055300088837, + "c4": 25.104453918398228, + "c5": 0.2939215673662545, + "c6": 22.01112907930152, + "c7": 6.763744104929714 }, - "vertexSeeds": { - "c1": 6.361858677949617, - "c2": 6.16078810384915, - "c3": 6.073254752053728, - "c4": 6.392131351658191, - "c5": 6.702993099623464, - "c6": 6.47919781572956, - "c7": 6.739041427132749 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284323, + "c3": 8.784096162736942, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947745, + "c7": 1.7568192325473924 }, "rgb": [77, 76, 132] }, @@ -214710,23 +214710,23 @@ "year": 1769, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -18.40265340317502, - "c2": -0.9390192030047899, - "c3": -26.492983424243448, - "c4": 20.14024901265136, - "c5": -7.1698220157321515, - "c6": 11.554707293366064, - "c7": 10.62036159049483 + "points": { + "c1": 11.705631141926155, + "c2": 24.778058001374774, + "c3": 1.101404180697081, + "c4": 38.981775131482394, + "c5": -23.45623364899097, + "c6": -29.239913274615972, + "c7": 2.90872060349416 }, - "vertexSeeds": { - "c1": 5.823735956759803, - "c2": 5.633419158944814, - "c3": 5.770127227504861, - "c4": 5.421942857701879, - "c5": 5.591844612570153, - "c6": 5.768758315161186, - "c7": 5.586513144152412 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629688, + "c3": 7.258437355524732, + "c4": 5.8067498844197925, + "c5": 4.355062413314836, + "c6": 2.9033749422098962, + "c7": 1.4516874711049566 }, "rgb": [58, 15, 49] }, @@ -214737,23 +214737,23 @@ "year": 1769, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -12.980264298208997, - "c2": -0.9193885702284952, - "c3": -15.600789211600949, - "c4": -11.577606062169789, - "c5": -1.1556784921315355, - "c6": -26.37551830090658, - "c7": -8.181689248737808 + "points": { + "c1": -8.535670331169754, + "c2": 10.697407821546896, + "c3": -24.930890540399027, + "c4": 24.332860874695875, + "c5": 9.581081845002757, + "c6": -7.905903804138468, + "c7": 16.284898110266354 }, - "vertexSeeds": { - "c1": 2.902990552242325, - "c2": 2.5282940550050688, - "c3": 2.861573878049512, - "c4": 2.767766975047836, - "c5": 2.7214154413252096, - "c6": 2.68997051645746, - "c7": 2.90447918304823 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [238, 201, 159] }, @@ -214764,23 +214764,23 @@ "year": 1769, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -10.455905783346498, - "c2": 20.030254868305757, - "c3": 12.1001908642456, - "c4": -5.4423839326957015, - "c5": -16.93286298946395, - "c6": 7.514377546340601, - "c7": -27.08091292507442 + "points": { + "c1": 4.597374386221251, + "c2": 8.733992028443435, + "c3": -23.39117334220388, + "c4": 18.166992148873103, + "c5": 0.4275523269652233, + "c6": 24.403032297106908, + "c7": -1.7874266805988306 }, - "vertexSeeds": { - "c1": 3.7595779998837147, - "c2": 3.678373436226328, - "c3": 3.3067990499345377, - "c4": 3.8843590578728917, - "c5": 3.740431190382467, - "c6": 3.359099316146591, - "c7": 3.2545045197483224 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084608, + "c3": 4.64632454923717, + "c4": 3.717059639389738, + "c5": 2.7877947295423016, + "c6": 1.858529819694869, + "c7": 0.9292649098474365 }, "rgb": [58, 15, 49] }, @@ -214791,23 +214791,23 @@ "year": 1769, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 27.690864603086077, - "c2": 24.260903735449226, - "c3": -28.981985760460923, - "c4": -20.676963545956788, - "c5": -25.28873599729753, - "c6": 32.61806727540873, - "c7": -23.33924226740288 + "points": { + "c1": 15.693170030112086, + "c2": -33.03053058183211, + "c3": -9.081169541075113, + "c4": 15.811226674406939, + "c5": 24.267763233757655, + "c6": -38.15897216030982, + "c7": 18.972020016820245 }, - "vertexSeeds": { - "c1": 7.0419751776919135, - "c2": 7.195112694485099, - "c3": 7.972494950808138, - "c4": 7.1621229610666886, - "c5": 7.300739085514888, - "c6": 6.958674811693883, - "c7": 6.988839057860456 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [222, 0, 59] }, @@ -214818,23 +214818,23 @@ "year": 1769, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 9.921807377697949, - "c2": -14.330954886170078, - "c3": 26.969058144083217, - "c4": -7.973804470763405, - "c5": -20.807347848795022, - "c6": -24.703647563796512, - "c7": -21.62175806738506 + "points": { + "c1": -18.478145490231604, + "c2": -18.78057149866408, + "c3": 22.70910165387865, + "c4": 23.99331987865246, + "c5": 17.941134014273647, + "c6": -17.198681521970173, + "c7": -6.366881299562785 }, - "vertexSeeds": { - "c1": 2.573534641042741, - "c2": 2.5672329969321557, - "c3": 2.5761326184880082, - "c4": 2.5817544489967235, - "c5": 2.5758201621788785, - "c6": 2.575022580062005, - "c7": 2.5708849935194062 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.717059639389754, + "c3": 3.097549699491482, + "c4": 2.4780397595932104, + "c5": 1.8585298196948152, + "c6": 1.2390198797965435, + "c7": 0.6195099398982717 }, "rgb": [238, 201, 159] }, @@ -214845,23 +214845,23 @@ "year": 1769, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -17.54573635797707, - "c2": 26.054859202601687, - "c3": -19.710542557738293, - "c4": -13.899893266991457, - "c5": -2.9440496482440253, - "c6": -9.233026328401966, - "c7": -3.117502743051567 + "points": { + "c1": -11.747417258255467, + "c2": -2.4648111385983995, + "c3": 25.849136772806236, + "c4": 23.660295104564828, + "c5": 19.958548043949325, + "c6": 24.486763801621127, + "c7": -0.2170097718233741 }, - "vertexSeeds": { - "c1": 4.443153549547688, - "c2": 4.316360806448078, - "c3": 4.439432088769784, - "c4": 4.51983892451099, - "c5": 4.722105676256484, - "c6": 4.408912319722422, - "c7": 4.50002331589215 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -214872,23 +214872,23 @@ "year": 1769, "resistanceReported": true, "duration": 33955200, - "curveSeeds": { - "c1": 19.025004433231295, - "c2": 22.323912055734986, - "c3": -2.594588254865286, - "c4": -21.728618361389806, - "c5": -0.8197699464407648, - "c6": 5.8564148595577805, - "c7": -11.549489297988039 + "points": { + "c1": -44.095642569042, + "c2": -23.10335521607399, + "c3": -19.130822716047724, + "c4": 21.60437458287999, + "c5": 24.710134094918963, + "c6": 44.63871010315848, + "c7": -9.48158854451544 }, - "vertexSeeds": { - "c1": 2.306060965184554, - "c2": 2.34239232739039, - "c3": 2.305837518755241, - "c4": 2.269826048822248, - "c5": 2.320984131683905, - "c6": 2.350906744242371, - "c7": 2.2760161874076354 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070733, + "c3": 2.8201571890892283, + "c4": 2.2561257512713824, + "c5": 1.6920943134535367, + "c6": 1.1280628756356912, + "c7": 0.5640314378178456 }, "rgb": [77, 76, 132] }, @@ -214899,23 +214899,23 @@ "year": 1769, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -38.555806979463355, - "c2": 23.10744387616247, - "c3": -5.449707391319137, - "c4": 13.395748047744448, - "c5": -0.7067826667456032, - "c6": -29.170137868248794, - "c7": 7.604120050835981 + "points": { + "c1": -3.6200911476521185, + "c2": 1.165364858276341, + "c3": 7.525121635496582, + "c4": 24.03520782596241, + "c5": 13.14105469720144, + "c6": 18.873304643481617, + "c7": 7.274625067185212 }, - "vertexSeeds": { - "c1": 5.259238352055571, - "c2": 4.815686954312854, - "c3": 4.6566090626106345, - "c4": 4.829516797471978, - "c5": 5.324844291496649, - "c6": 4.6301481749474425, - "c7": 4.794271839996599 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543691, + "c3": 6.634304207119743, + "c4": 5.307443365695796, + "c5": 3.9805825242718478, + "c6": 2.6537216828479, + "c7": 1.3268608414239527 }, "rgb": [77, 76, 132] }, @@ -214926,23 +214926,23 @@ "year": 1769, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 13.403419910326456, - "c2": 11.168191707313873, - "c3": -32.765659768539315, - "c4": 37.18153083456606, - "c5": -7.143443920767091, - "c6": -23.844731064055807, - "c7": 36.606093279966686 + "points": { + "c1": 20.39868767704386, + "c2": -8.106470447159708, + "c3": 17.42729606985114, + "c4": -37.76462493661428, + "c5": 34.7891406405481, + "c6": 3.4955466234616566, + "c7": -32.86949364267022 }, - "vertexSeeds": { - "c1": 5.064078628211889, - "c2": 5.679883390206329, - "c3": 5.425872408851644, - "c4": 5.689907780505605, - "c5": 5.284605021664894, - "c6": 5.253718196949712, - "c7": 5.090458378422417 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825243, + "c3": 6.79611650485437, + "c4": 5.436893203883498, + "c5": 4.077669902912625, + "c6": 2.718446601941752, + "c7": 1.3592233009708792 }, "rgb": [77, 76, 132] }, @@ -214953,23 +214953,23 @@ "year": 1769, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 14.462120993750723, - "c2": -40.976888037942835, - "c3": -7.821622835225988, - "c4": 4.257585393608174, - "c5": -30.674164768260543, - "c6": 39.72039796675358, - "c7": -41.1871774350808 + "points": { + "c1": -31.479011875996893, + "c2": -38.7562610548747, + "c3": 21.16969584206015, + "c4": -24.75285767346253, + "c5": -28.016033463667306, + "c6": 3.1010906335280026, + "c7": 42.21934617052867 }, - "vertexSeeds": { - "c1": 5.534364330709048, - "c2": 5.64228727200915, - "c3": 5.756709208536924, - "c4": 5.56274544561222, - "c5": 5.591431039589094, - "c6": 5.490909311630603, - "c7": 5.472625878119298 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147029, + "c3": 6.9810448451225104, + "c4": 5.58483587609802, + "c5": 4.188626907073501, + "c6": 2.79241793804901, + "c7": 1.396208969024519 }, "rgb": [58, 15, 49] }, @@ -214980,23 +214980,23 @@ "year": 1769, "resistanceReported": false, "duration": 41040000, - "curveSeeds": { - "c1": 15.675309492596092, - "c2": 3.949330218796682, - "c3": 53.22137322205325, - "c4": 39.57917285407492, - "c5": 47.39718378090401, - "c6": 25.42721946591103, - "c7": -30.78849830753655 + "points": { + "c1": -42.857748073136186, + "c2": 27.799071050184516, + "c3": -30.357115306605802, + "c4": 6.925462367647192, + "c5": -2.6136163288405356, + "c6": 10.422642851623856, + "c7": -12.773232473091966 }, - "vertexSeeds": { - "c1": 3.1194863273984375, - "c2": 3.282128376736731, - "c3": 3.2813989054716344, - "c4": 3.2172781166230893, - "c5": 3.2542740453649506, - "c6": 3.194247306259163, - "c7": 3.2810713548596833 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435513, + "c3": 3.69856680536292, + "c4": 2.9588534442903422, + "c5": 2.2191400832177495, + "c6": 1.4794267221451711, + "c7": 0.7397133610725781 }, "rgb": [58, 15, 49] }, @@ -215007,23 +215007,23 @@ "year": 1769, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -37.21368088273886, - "c2": -8.514191730724527, - "c3": 6.989331456009268, - "c4": -39.14780757854067, - "c5": 10.48517852174102, - "c6": 34.18259256800909, - "c7": -26.101585485516452 + "points": { + "c1": -14.152156547462493, + "c2": -7.641456762054787, + "c3": -12.797953407308086, + "c4": 6.150382594369674, + "c5": -4.822797327796586, + "c6": -21.222792086505553, + "c7": -19.248607953600693 }, - "vertexSeeds": { - "c1": 5.4973034596834545, - "c2": 6.357083989914781, - "c3": 5.610429882508421, - "c4": 5.91068835391459, - "c5": 5.7501545606069575, - "c6": 5.405787609527514, - "c7": 6.487033996515734 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554784, + "c3": 7.790106333795654, + "c4": 6.232085067036523, + "c5": 4.674063800277392, + "c6": 3.1160425335182613, + "c7": 1.5580212667591307 }, "rgb": [86, 146, 138] }, @@ -215034,23 +215034,23 @@ "year": 1769, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 3.156914246116365, - "c2": -7.441048288606563, - "c3": 8.746419399497718, - "c4": 19.03864572495951, - "c5": 35.01435354708828, - "c6": -32.28226000281775, - "c7": -13.713151386081751 + "points": { + "c1": -18.44284248141053, + "c2": 5.387059312161156, + "c3": 11.775167978405548, + "c4": -37.55620967288468, + "c5": 17.80940858737401, + "c6": 19.62494457788744, + "c7": 10.927089622429428 }, - "vertexSeeds": { - "c1": 8.444297783832308, - "c2": 5.696799464656253, - "c3": 7.029493299177959, - "c4": 5.085382719339776, - "c5": 7.072762709560408, - "c6": 4.141818155197365, - "c7": 5.6776405738197795 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.399445214979197, + "c3": 10.332871012482663, + "c4": 8.266296809986128, + "c5": 6.199722607489599, + "c6": 4.133148404993063, + "c7": 2.066574202496531 }, "rgb": [86, 146, 138] }, @@ -215061,23 +215061,23 @@ "year": 1769, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 16.24075384148567, - "c2": 17.411530769666143, - "c3": 35.644833560634204, - "c4": 32.402056174734675, - "c5": 25.883724614013012, - "c6": 19.534733982730366, - "c7": 38.68205114474738 + "points": { + "c1": -14.359495799350405, + "c2": -12.284731366161274, + "c3": 44.77572635252883, + "c4": -32.49381322600374, + "c5": 2.3333944403419906, + "c6": 30.636220747150126, + "c7": 4.028904508539256 }, - "vertexSeeds": { - "c1": 5.014690513326724, - "c2": 5.089524478644193, - "c3": 5.051273350627399, - "c4": 5.01836960907854, - "c5": 4.980757373311949, - "c6": 5.104092099109168, - "c7": 5.003124676462783 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [238, 201, 159] }, @@ -215088,23 +215088,23 @@ "year": 1769, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 4.328519735818951, - "c2": -11.953443325896806, - "c3": -27.934227430908237, - "c4": 30.644048209782895, - "c5": -20.41281738856965, - "c6": -19.96506633965825, - "c7": 29.65204702508727 + "points": { + "c1": 15.016348335980503, + "c2": 10.401158222179085, + "c3": -21.234303108784935, + "c4": 11.626998631620182, + "c5": 4.361633655464274, + "c6": 7.98851517142856, + "c7": -11.182052773796425 }, - "vertexSeeds": { - "c1": 5.723492296845772, - "c2": 5.223141492344138, - "c3": 5.417765025847434, - "c4": 5.974243811277171, - "c5": 4.88758404796256, - "c6": 4.983405299526173, - "c7": 4.791729674726398 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951456, + "c3": 7.44336569579288, + "c4": 5.954692556634304, + "c5": 4.466019417475728, + "c6": 2.977346278317152, + "c7": 1.488673139158576 }, "rgb": [222, 0, 59] }, @@ -215115,23 +215115,23 @@ "year": 1769, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 3.8843934034731475, - "c2": -32.617679475381706, - "c3": 18.39724725733261, - "c4": -21.783992643072946, - "c5": -31.039904911869538, - "c6": 24.068429851714633, - "c7": -33.88101580333822 + "points": { + "c1": 38.204854651903155, + "c2": 21.117591466596473, + "c3": 25.179632007343677, + "c4": -22.931591497148577, + "c5": -36.81583450484998, + "c6": 43.470098481956505, + "c7": -4.7459193771883506 }, - "vertexSeeds": { - "c1": 5.691363942923231, - "c2": 5.504015122510766, - "c3": 5.07576688379808, - "c4": 6.34593081188809, - "c5": 4.820703271656456, - "c6": 4.78509954766345, - "c7": 4.715081038850541 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [238, 201, 159] }, @@ -215142,23 +215142,23 @@ "year": 1769, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -26.730987738324604, - "c2": -5.302539909194483, - "c3": -7.761017079449321, - "c4": -14.113745457628115, - "c5": 11.877139647405428, - "c6": 22.416967717424143, - "c7": 11.528341673784787 + "points": { + "c1": 13.910349318213022, + "c2": 22.20478083164565, + "c3": -26.108481168788934, + "c4": -2.036537690506453, + "c5": 5.3180165809345326, + "c6": 5.366470203127335, + "c7": -10.289751737236234 }, - "vertexSeeds": { - "c1": 6.9792581407001535, - "c2": 6.1171745264128266, - "c3": 5.812437245174772, - "c4": 6.8634966192987825, - "c5": 6.171014465310884, - "c6": 6.150477018652538, - "c7": 7.060694145058299 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [58, 15, 49] }, @@ -215169,23 +215169,23 @@ "year": 1769, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 17.754391183918088, - "c2": -35.3059735842419, - "c3": -32.274959460943755, - "c4": 4.451126193089188, - "c5": 31.807753229417706, - "c6": -23.50438034309996, - "c7": -32.839386966312134 + "points": { + "c1": -27.187181694265036, + "c2": -16.695256060031465, + "c3": 27.269820758281675, + "c4": -27.515537755763734, + "c5": -29.746823711447412, + "c6": -5.583533868253191, + "c7": 0.4358159464497007 }, - "vertexSeeds": { - "c1": 3.4509523066928933, - "c2": 3.618709641064283, - "c3": 3.5180017492742306, - "c4": 3.469451027470937, - "c5": 3.820842677582232, - "c6": 3.5308365148449443, - "c7": 3.400987385819031 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963938, + "c3": 4.5769764216366156, + "c4": 3.6615811373092924, + "c5": 2.746185852981969, + "c6": 1.8307905686546462, + "c7": 0.9153952843273231 }, "rgb": [238, 201, 159] }, @@ -215196,23 +215196,23 @@ "year": 1769, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 12.611646167797495, - "c2": -21.00698503121861, - "c3": 5.792422787974182, - "c4": 3.1791229949763036, - "c5": 13.884030822433608, - "c6": -17.70773588629697, - "c7": -35.291111579487634 + "points": { + "c1": -20.14046833084396, + "c2": 11.275890129936577, + "c3": 21.232181849395936, + "c4": 5.445199132080894, + "c5": -9.068585448508365, + "c6": 27.010119482160405, + "c7": -10.706300003532391 }, - "vertexSeeds": { - "c1": 3.269114215719667, - "c2": 3.2672639533223733, - "c3": 3.268603610027612, - "c4": 3.2655149738169724, - "c5": 3.2718589105976026, - "c6": 3.27015738233252, - "c7": 3.272406393833113 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837747, + "c3": 3.929727230698149, + "c4": 3.1437817845585507, + "c5": 2.3578363384187955, + "c6": 1.5718908922791972, + "c7": 0.7859454461395986 }, "rgb": [222, 0, 59] }, @@ -215223,23 +215223,23 @@ "year": 1769, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 8.200993043348568, - "c2": 10.893974836228587, - "c3": -10.336196342142394, - "c4": -34.99188196638347, - "c5": 36.44498795988736, - "c6": 32.331942139036144, - "c7": 29.363892411833532 + "points": { + "c1": -17.395607332850407, + "c2": -29.62354447096687, + "c3": 14.62710384316891, + "c4": 20.609185071237277, + "c5": -0.4697925383784849, + "c6": 21.592359006454316, + "c7": 27.680657792495666 }, - "vertexSeeds": { - "c1": 8.59386433067662, - "c2": 8.455108340578326, - "c3": 8.518076184526278, - "c4": 8.85518929383685, - "c5": 8.242938417828215, - "c6": 8.401397847337256, - "c7": 8.197006649683699 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582522, + "c3": 10.67961165048543, + "c4": 8.54368932038834, + "c5": 6.40776699029125, + "c6": 4.271844660194181, + "c7": 2.1359223300970904 }, "rgb": [58, 15, 49] }, @@ -215250,23 +215250,23 @@ "year": 1769, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -34.872555572014925, - "c2": 17.451944187378913, - "c3": 14.500536020528031, - "c4": 7.453029024550176, - "c5": -18.07098559182127, - "c6": -19.028986241315113, - "c7": 19.143198188857696 + "points": { + "c1": -30.00469747901778, + "c2": -19.421323780884094, + "c3": -12.798139521652104, + "c4": 39.328509356637326, + "c5": 25.86740830905437, + "c6": 28.488342209793927, + "c7": 28.17024212131963 }, - "vertexSeeds": { - "c1": 5.1410722696196665, - "c2": 4.764285503667206, - "c3": 5.166199075307925, - "c4": 4.83869805816628, - "c5": 4.977115797195388, - "c6": 4.785311873125637, - "c7": 4.72741040226317 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739255, + "c3": 6.171983356449382, + "c4": 4.93758668515951, + "c5": 3.7031900138696274, + "c6": 2.468793342579745, + "c7": 1.2343966712898724 }, "rgb": [58, 15, 49] }, @@ -215277,23 +215277,23 @@ "year": 1769, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -13.944307867060477, - "c2": -24.80951315628502, - "c3": 13.459658248033271, - "c4": -26.834955837541308, - "c5": -24.89645853142291, - "c6": 10.658292863589288, - "c7": -17.732445065193595 + "points": { + "c1": 7.641265173282278, + "c2": 34.801572772272, + "c3": -20.3989767598529, + "c4": -5.492304490907138, + "c5": 24.61445549195186, + "c6": 23.590014028104903, + "c7": 21.537124273393353 }, - "vertexSeeds": { - "c1": 2.9309011589157565, - "c2": 2.8387238815251994, - "c3": 2.938080569713347, - "c4": 2.9203850302316625, - "c5": 2.9175764561467665, - "c6": 2.8263929163633037, - "c7": 2.9579122566654337 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194177, + "c3": 3.559870550161817, + "c4": 2.8478964401294395, + "c5": 2.1359223300970798, + "c6": 1.4239482200647198, + "c7": 0.7119741100323599 }, "rgb": [238, 201, 159] }, @@ -215304,23 +215304,23 @@ "year": 1769, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 9.438540370754112, - "c2": -22.76794738156852, - "c3": 41.973972336327336, - "c4": -48.145444433549265, - "c5": -36.4583780023706, - "c6": 21.933600741101714, - "c7": 5.191956277871967 + "points": { + "c1": 13.268111302691665, + "c2": -4.933343585322568, + "c3": -46.1386880941562, + "c4": -36.700447096918815, + "c5": 5.695728323970421, + "c6": 19.504825703720613, + "c7": -36.517681311304834 }, - "vertexSeeds": { - "c1": 5.753150047738886, - "c2": 5.569450733028034, - "c3": 6.308337319741553, - "c4": 5.730378667037221, - "c5": 5.700469790227989, - "c6": 6.288608045391906, - "c7": 6.193246692954208 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152565, + "c3": 7.558945908460472, + "c4": 6.047156726768376, + "c5": 4.535367545076283, + "c6": 3.023578363384188, + "c7": 1.511789181692094 }, "rgb": [222, 0, 59] }, @@ -215331,23 +215331,23 @@ "year": 1769, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -9.39744140822221, - "c2": -1.874243138859832, - "c3": -5.044031429276561, - "c4": 9.652961366229107, - "c5": 12.379428327987632, - "c6": -3.1538090758337525, - "c7": -16.743269334491053 + "points": { + "c1": 5.103032823953917, + "c2": -27.911436083971218, + "c3": -1.8192203417976067, + "c4": 3.1153207951647275, + "c5": 14.792697794999278, + "c6": 15.310550565250061, + "c7": 22.69433156930875 }, - "vertexSeeds": { - "c1": 2.76841030614272, - "c2": 2.5820484103173196, - "c3": 2.4852723771411593, - "c4": 2.766482362431694, - "c5": 2.4231791358747605, - "c6": 2.4820113854401873, - "c7": 2.5285402276454523 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.3749422098936646, + "c4": 2.69995376791493, + "c5": 2.024965325936196, + "c6": 1.3499768839574684, + "c7": 0.6749884419787342 }, "rgb": [86, 146, 138] }, @@ -215358,23 +215358,23 @@ "year": 1769, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 39.57767535216844, - "c2": 20.206807199090107, - "c3": 38.452339477008564, - "c4": 30.81099392162683, - "c5": 23.391725563125775, - "c6": -35.27675244545316, - "c7": -32.86782102857791 + "points": { + "c1": 37.91495855885486, + "c2": -32.50983552177267, + "c3": -4.595388002607663, + "c4": -13.648685761554816, + "c5": 11.86670930248512, + "c6": -5.200665508365503, + "c7": -13.563701285799937 }, - "vertexSeeds": { - "c1": 4.273250357913563, - "c2": 4.3782942333043975, - "c3": 4.174894341053608, - "c4": 4.3341918464714535, - "c5": 4.2722449657765535, - "c6": 4.106503941078038, - "c7": 4.49502273038405 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371707, + "c3": 5.3860379103097555, + "c4": 4.308830328247804, + "c5": 3.2316227461858533, + "c6": 2.154415164123902, + "c7": 1.077207582061951 }, "rgb": [77, 76, 132] }, @@ -215385,23 +215385,23 @@ "year": 1769, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -10.300297796549415, - "c2": 12.995500231433248, - "c3": 24.6361134045289, - "c4": 23.18293357818839, - "c5": -9.167904905157645, - "c6": 16.625474627070304, - "c7": -26.424088815424057 + "points": { + "c1": -11.701518511528505, + "c2": -25.293876576883385, + "c3": -6.991858946941427, + "c4": 3.856871868556752, + "c5": -18.125510773883853, + "c6": -6.530020820488424, + "c7": -29.66221249764624 }, - "vertexSeeds": { - "c1": 5.362315862721007, - "c2": 5.096308803506751, - "c3": 4.841477279659554, - "c4": 5.597035345336315, - "c5": 5.6547714641579425, - "c6": 4.873455204349414, - "c7": 5.651035922566509 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.888580674988446, + "c4": 5.510864539990753, + "c5": 4.133148404993071, + "c6": 2.755432269995379, + "c7": 1.377716134997687 }, "rgb": [58, 15, 49] }, @@ -215412,23 +215412,23 @@ "year": 1769, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -21.754996641279412, - "c2": -11.481476368175121, - "c3": 12.388247796485821, - "c4": 23.82526643323982, - "c5": 12.073460956477092, - "c6": 22.0703899637739, - "c7": 0.5608836486149755 + "points": { + "c1": -15.117553495753398, + "c2": -6.490789029153397, + "c3": -2.7440759175836646, + "c4": -19.60826697247672, + "c5": 27.123597084197733, + "c6": 5.9947785102720985, + "c7": 17.005535203520495 }, - "vertexSeeds": { - "c1": 3.20077956139031, - "c2": 3.1543987383981937, - "c3": 2.9153859121025176, - "c4": 3.158792262431782, - "c5": 3.027916846366957, - "c6": 2.9155042621320204, - "c7": 3.1492369540350227 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -215439,23 +215439,23 @@ "year": 1769, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -22.895714288289575, - "c2": -15.58180210373259, - "c3": 8.206156128812179, - "c4": -12.254154120858912, - "c5": -14.764397395797918, - "c6": 12.83394395629816, - "c7": 8.727235213301196 + "points": { + "c1": -21.77814889288128, + "c2": -4.532060458668731, + "c3": -7.0963677693433205, + "c4": 28.872041950365205, + "c5": -18.976625077825876, + "c6": 29.623692877345984, + "c7": 15.959908389563278 }, - "vertexSeeds": { - "c1": 1.0504957415747076, - "c2": 1.0006104910311655, - "c3": 1.0549824523625562, - "c4": 1.0033800675634639, - "c5": 0.9687767113977135, - "c6": 0.9889490090596557, - "c7": 0.9673771330948265 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.5533980582524272, + "c3": 1.2944983818770226, + "c4": 1.035598705501618, + "c5": 0.7766990291262136, + "c6": 0.517799352750809, + "c7": 0.2588996763754045 }, "rgb": [86, 146, 138] }, @@ -215466,23 +215466,23 @@ "year": 1769, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -3.3351957581421168, - "c2": 31.258343493629482, - "c3": 32.6541706309669, - "c4": -32.66651640377703, - "c5": -19.835100909075926, - "c6": 21.102936449167117, - "c7": 27.08127723601811 + "points": { + "c1": 7.5446959629927335, + "c2": -7.19055449118796, + "c3": 2.537981747903835, + "c4": 21.538544240547907, + "c5": -24.6147862524114, + "c6": -11.007644456759259, + "c7": 0.7648705877444826 }, - "vertexSeeds": { - "c1": 6.433436377445853, - "c2": 6.652785383425443, - "c3": 6.104432705495217, - "c4": 6.329779479508274, - "c5": 6.565862756109761, - "c6": 6.32988380399919, - "c7": 6.168805264527818 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916787, + "c3": 7.9981507165973165, + "c4": 6.3985205732778585, + "c5": 4.798890429958387, + "c6": 3.1992602866389293, + "c7": 1.599630143319471 }, "rgb": [238, 201, 159] }, @@ -215493,23 +215493,23 @@ "year": 1769, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -23.53658157815852, - "c2": 16.067055446023247, - "c3": 12.391490670519609, - "c4": 16.398794661144677, - "c5": 9.889952774311816, - "c6": 19.868065145462268, - "c7": -12.218486121635504 + "points": { + "c1": 16.334896717030645, + "c2": 4.244763325127202, + "c3": 13.186538311399765, + "c4": -11.53524646588724, + "c5": 8.207878439492553, + "c6": -17.253058322077734, + "c7": 2.556160476912936 }, - "vertexSeeds": { - "c1": 1.8608479763901027, - "c2": 1.9233644106737204, - "c3": 1.793236337004496, - "c4": 1.8317652538461375, - "c5": 1.9474753077945093, - "c6": 1.8544392327568457, - "c7": 1.9402117532426588 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [238, 201, 159] }, @@ -215520,23 +215520,23 @@ "year": 1769, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 18.369652882355084, - "c2": -24.797706756986088, - "c3": 5.07822861290223, - "c4": -6.891216758022296, - "c5": 15.376617580148093, - "c6": 14.766209636407268, - "c7": -0.8230262482288779 + "points": { + "c1": 26.032752746685915, + "c2": 17.749493347412844, + "c3": 11.90223494136756, + "c4": -7.504451475424432, + "c5": -16.2772170802589, + "c6": 25.301010779335783, + "c7": -3.0189034979655283 }, - "vertexSeeds": { - "c1": 4.778963381551163, - "c2": 4.648049953024238, - "c3": 4.754224659500761, - "c4": 4.606345005706767, - "c5": 4.3067996580217205, - "c6": 4.646226676120001, - "c7": 4.73179717103785 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -215547,23 +215547,23 @@ "year": 1769, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -16.333798491816374, - "c2": -3.020837446191152, - "c3": 23.45152407972491, - "c4": 22.339450760828985, - "c5": 8.637121791402162, - "c6": 14.734624761533833, - "c7": -1.8120297203188507 + "points": { + "c1": 19.722656006800843, + "c2": 13.884419045908434, + "c3": -4.840112333493984, + "c4": 0.38401378343974457, + "c5": 18.65155282402721, + "c6": 19.263820500029706, + "c7": -26.61840362348027 }, - "vertexSeeds": { - "c1": 3.2682187043854922, - "c2": 3.152105629728251, - "c3": 3.2846473130229583, - "c4": 3.094030527465221, - "c5": 2.9464099180844308, - "c6": 2.933054271539768, - "c7": 3.2797314302025216 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -215574,23 +215574,23 @@ "year": 1769, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 2.6079483391005525, - "c2": -11.768647184905667, - "c3": 32.961413658653456, - "c4": 8.480332837011211, - "c5": -18.417030447998503, - "c6": -10.984471867757104, - "c7": 20.120559367328873 + "points": { + "c1": -16.38318094302941, + "c2": -26.174397795996114, + "c3": -36.699117032222276, + "c4": -28.71514214945985, + "c5": -29.16598495433727, + "c6": -18.157037545685565, + "c7": -9.018591970816011 }, - "vertexSeeds": { - "c1": 4.900767936298633, - "c2": 4.843957929240078, - "c3": 4.968897842376593, - "c4": 4.833166309767714, - "c5": 4.965116009955502, - "c6": 4.8844967385678535, - "c7": 5.011663369132617 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417463, + "c3": 5.987055016181251, + "c4": 4.789644012944991, + "c5": 3.5922330097087314, + "c6": 2.3948220064724954, + "c7": 1.1974110032362597 }, "rgb": [222, 0, 59] }, @@ -215601,23 +215601,23 @@ "year": 1769, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 38.44442364315664, - "c2": -10.313661835378959, - "c3": 15.797480277077256, - "c4": -29.196127578131573, - "c5": 46.2200546400295, - "c6": -14.096198036902692, - "c7": -21.164940460805816 + "points": { + "c1": 51.51246189196455, + "c2": 36.73471991993864, + "c3": 43.8288883702903, + "c4": -21.106685371385424, + "c5": -16.650942139911344, + "c6": 46.813638671449326, + "c7": -8.07013546583319 }, - "vertexSeeds": { - "c1": 5.8200349090100145, - "c2": 5.938554102073482, - "c3": 5.597878475175842, - "c4": 5.416257438220622, - "c5": 5.505801898985254, - "c6": 5.6439135514760235, - "c7": 6.048971999210431 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594546, + "c4": 6.121128062875633, + "c5": 4.59084604715673, + "c6": 3.0605640314378166, + "c7": 1.5302820157189028 }, "rgb": [58, 15, 49] }, @@ -215628,23 +215628,23 @@ "year": 1769, "resistanceReported": true, "duration": 24883200, - "curveSeeds": { - "c1": 0.9731686242506257, - "c2": -36.1867758893751, - "c3": 8.169372375556073, - "c4": 19.905729936500066, - "c5": -20.206211802063137, - "c6": -15.296517710272425, - "c7": -19.644459440207417 + "points": { + "c1": 13.609161789401398, + "c2": 23.834790588354913, + "c3": -37.14033237302216, + "c4": -3.293644378953246, + "c5": 3.4838413275288147, + "c6": 1.7204039491395946, + "c7": -38.54946793320473 }, - "vertexSeeds": { - "c1": 4.199630264764799, - "c2": 3.5650286343128106, - "c3": 4.117259254983059, - "c4": 3.503993411933029, - "c5": 4.062870354459617, - "c6": 3.5077418262526385, - "c7": 4.156588793208942 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768375, + "c3": 5.039297272306982, + "c4": 4.031437817845583, + "c5": 3.0235783633841895, + "c6": 2.0157189089227914, + "c7": 1.0078594544613932 }, "rgb": [77, 76, 132] }, @@ -215655,23 +215655,23 @@ "year": 1769, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 10.772958816337187, - "c2": 20.349958987790544, - "c3": -22.981136317955276, - "c4": -17.328120526849396, - "c5": 1.4319097169783106, - "c6": 5.467316621132007, - "c7": -3.974104220101758 + "points": { + "c1": 25.86327374879089, + "c2": 23.263727599197402, + "c3": -12.625432219992039, + "c4": -24.001738627074953, + "c5": 0.06469848714535331, + "c6": 1.357896392678903, + "c7": -9.16512591550033 }, - "vertexSeeds": { - "c1": 7.300237156397283, - "c2": 7.152394708315301, - "c3": 7.135123818848209, - "c4": 7.078977092993566, - "c5": 7.123435050952645, - "c6": 7.266295760541166, - "c7": 7.361475762698758 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148405, + "c3": 8.85344429033751, + "c4": 7.08275543226999, + "c5": 5.3120665742025, + "c6": 3.5413777161350097, + "c7": 1.7706888580674907 }, "rgb": [238, 201, 159] }, @@ -215682,23 +215682,23 @@ "year": 1769, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 15.41000495992212, - "c2": 20.56335345520555, - "c3": 21.08142282198787, - "c4": -13.303504251292516, - "c5": -2.60696631599113, - "c6": -20.238345260982094, - "c7": 17.263431645168275 + "points": { + "c1": 18.587745314488004, + "c2": -30.681912576343063, + "c3": 2.975814583403377, + "c4": 13.141698031558803, + "c5": -11.479511153526278, + "c6": 1.2842831889315747, + "c7": 10.109665880905986 }, - "vertexSeeds": { - "c1": 5.145895673686604, - "c2": 5.140180864894968, - "c3": 5.082325819833727, - "c4": 5.0971175991771664, - "c5": 5.1312373002918745, - "c6": 5.139517930244864, - "c7": 5.080313885346513 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699064, + "c3": 6.148867313915805, + "c4": 4.9190938511326685, + "c5": 3.689320388349532, + "c6": 2.4595469255663955, + "c7": 1.2297734627831367 }, "rgb": [86, 146, 138] }, @@ -215709,23 +215709,23 @@ "year": 1769, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -18.965205048999433, - "c2": 9.10608045220642, - "c3": 20.196523653934157, - "c4": 12.849397999671268, - "c5": -25.320485714484985, - "c6": 19.033425610727704, - "c7": -2.179960033870408 + "points": { + "c1": 12.96623446753484, + "c2": 20.77960377890423, + "c3": -6.3619694779712574, + "c4": -10.03879632256124, + "c5": -5.998418515493206, + "c6": -23.850797878242204, + "c7": -24.81091434730066 }, - "vertexSeeds": { - "c1": 8.727727728258461, - "c2": 8.273929821472148, - "c3": 8.486893962626093, - "c4": 8.918196552031706, - "c5": 8.304391751670526, - "c6": 8.34823381732558, - "c7": 9.062217523249636 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904296, + "c3": 10.864539990753574, + "c4": 8.691631992602868, + "c5": 6.518723994452148, + "c6": 4.345815996301427, + "c7": 2.172907998150721 }, "rgb": [77, 76, 132] }, @@ -215736,23 +215736,23 @@ "year": 1769, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -1.9980309037969732, - "c2": -35.50477497105487, - "c3": -21.208905424527856, - "c4": 21.145678356257044, - "c5": -8.096795859836295, - "c6": 20.76250976951767, - "c7": 14.791326262326514 + "points": { + "c1": 3.88151513747097, + "c2": -10.451517501212113, + "c3": -4.73106153860234, + "c4": -28.895010336026708, + "c5": -34.11471316445905, + "c6": 20.74557174245011, + "c7": -38.34410465632783 }, - "vertexSeeds": { - "c1": 4.251178389188857, - "c2": 4.036628322083401, - "c3": 4.285969201841804, - "c4": 3.906465841127753, - "c5": 4.49498659631532, - "c6": 3.8466602746639134, - "c7": 4.02653051047167 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.6019417475728135, + "c3": 5.501618122977348, + "c4": 4.401294498381876, + "c5": 3.3009708737864094, + "c6": 2.200647249190938, + "c7": 1.1003236245954662 }, "rgb": [86, 146, 138] }, @@ -215763,23 +215763,23 @@ "year": 1769, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -31.82624419463504, - "c2": -20.74649446193463, - "c3": 15.498658581306877, - "c4": 25.674979347060017, - "c5": -15.961013183524152, - "c6": 25.773718084773563, - "c7": 28.597049478837604 + "points": { + "c1": -28.915801160389123, + "c2": 22.140964933182467, + "c3": 11.111656874408105, + "c4": 32.162200044868825, + "c5": 17.392643115917522, + "c6": -16.09790723177164, + "c7": -30.355892699090752 }, - "vertexSeeds": { - "c1": 5.18007489750946, - "c2": 5.144492159511358, - "c3": 5.136243222784847, - "c4": 5.087523660928495, - "c5": 5.1800518142393965, - "c6": 5.233228484037204, - "c7": 5.054839283295309 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900152, + "c3": 6.26444752658343, + "c4": 5.011558021266753, + "c5": 3.758668515950076, + "c6": 2.505779010633399, + "c7": 1.2528895053166769 }, "rgb": [222, 0, 59] }, @@ -215790,23 +215790,23 @@ "year": 1769, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 11.132030112015705, - "c2": -33.232436625846674, - "c3": -41.22114085474632, - "c4": -18.749111418458565, - "c5": -28.962274167113943, - "c6": -39.332906036326705, - "c7": 29.91532403883386 + "points": { + "c1": 20.62170945530194, + "c2": -10.753055060316235, + "c3": 9.016556469659363, + "c4": -39.06322604641625, + "c5": -29.153555833203942, + "c6": 9.854594409882324, + "c7": 2.1852968015791205 }, - "vertexSeeds": { - "c1": 8.513952098213666, - "c2": 8.401661083316275, - "c3": 8.390141700663035, - "c4": 8.497970689346957, - "c5": 8.53335213314557, - "c6": 9.203907786639805, - "c7": 9.323568786382829 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.398058252427191, + "c3": 11.16504854368932, + "c4": 8.932038834951461, + "c5": 6.699029126213589, + "c6": 4.466019417475731, + "c7": 2.233009708737858 }, "rgb": [86, 146, 138] }, @@ -215817,23 +215817,23 @@ "year": 1769, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -1.5923997065514257, - "c2": -20.332384405531375, - "c3": -22.055885316006957, - "c4": 7.224679428375602, - "c5": -28.997542225361112, - "c6": -24.47837142001206, - "c7": -14.638488059041673 + "points": { + "c1": 11.947550066160737, + "c2": 16.26085753642313, + "c3": 31.651954587962948, + "c4": 22.931732542407538, + "c5": 4.587893719425509, + "c6": 17.383433242747813, + "c7": 34.59001738370469 }, - "vertexSeeds": { - "c1": 6.660321855003644, - "c2": 6.752094375116191, - "c3": 6.651926051282499, - "c4": 6.7201664103262395, - "c5": 6.623657302370481, - "c6": 6.692939370141373, - "c7": 6.654989883498195 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077653, + "c3": 8.09061488673142, + "c4": 6.472491909385123, + "c5": 4.854368932038827, + "c6": 3.236245954692529, + "c7": 1.6181229773462968 }, "rgb": [77, 76, 132] }, @@ -215844,23 +215844,23 @@ "year": 1769, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -33.82405635011914, - "c2": -21.195272513740825, - "c3": -9.35611350307817, - "c4": -3.6784720710744843, - "c5": -17.79191386346528, - "c6": -4.7792645844288515, - "c7": -32.48750210725989 + "points": { + "c1": 35.119676646072136, + "c2": 20.529765079074863, + "c3": -10.779100351165742, + "c4": 34.01055427328724, + "c5": -11.693525302759198, + "c6": -3.452906250088361, + "c7": -27.872842401249095 }, - "vertexSeeds": { - "c1": 3.9495991657676384, - "c2": 3.9669777249087814, - "c3": 3.652648216746632, - "c4": 3.966999367398314, - "c5": 3.8094729929023496, - "c6": 3.4381365728502233, - "c7": 3.370306602627004 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889042, + "c3": 5.108645399907537, + "c4": 4.086916319926029, + "c5": 3.065187239944521, + "c6": 2.043458159963013, + "c7": 1.0217290799815084 }, "rgb": [238, 201, 159] }, @@ -215871,23 +215871,23 @@ "year": 1769, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 10.203774964065023, - "c2": -27.61146281488083, - "c3": 3.433237141445961, - "c4": -19.111125262494564, - "c5": 13.837018709667309, - "c6": -23.90207980017108, - "c7": 0.0755811636857473 + "points": { + "c1": -22.773451486050263, + "c2": 14.707847576639512, + "c3": -14.241690392622203, + "c4": -25.19878745977586, + "c5": -3.0644395108725284, + "c6": -8.921872650047447, + "c7": -31.41112425047327 }, - "vertexSeeds": { - "c1": 4.9875094311756705, - "c2": 5.03109310686337, - "c3": 4.803644757996768, - "c4": 4.743918256091986, - "c5": 4.1322889128738876, - "c6": 5.174893246591127, - "c7": 4.064591912399006 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859919, + "c3": 6.2413314840499305, + "c4": 4.993065187239943, + "c5": 3.7447988904299594, + "c6": 2.4965325936199716, + "c7": 1.2482662968099838 }, "rgb": [77, 76, 132] }, @@ -215898,23 +215898,23 @@ "year": 1769, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 27.86653444287637, - "c2": -38.10241056200977, - "c3": 15.6439891538134, - "c4": -9.294748274431846, - "c5": 9.70826729740783, - "c6": -16.27376405045678, - "c7": -15.729816801801373 + "points": { + "c1": -26.96761666356365, + "c2": 3.4692973598787233, + "c3": 18.660060966323414, + "c4": -22.47802012630668, + "c5": 6.379908368317679, + "c6": 31.49981557634608, + "c7": 29.40438044695 }, - "vertexSeeds": { - "c1": 4.910176602204165, - "c2": 5.147003487169148, - "c3": 5.05095005364223, - "c4": 4.999689860736315, - "c5": 4.994169189291772, - "c6": 5.028318946695362, - "c7": 5.1056855425669685 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [238, 201, 159] }, @@ -215925,23 +215925,23 @@ "year": 1769, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": 36.601192520507055, - "c2": -33.90407697042325, - "c3": -35.46370374356682, - "c4": 10.201171220313853, - "c5": 48.212598514034894, - "c6": -3.3086581575465956, - "c7": -18.770256383002312 + "points": { + "c1": 48.4652368864874, + "c2": 30.2761840078811, + "c3": -41.858476110516946, + "c4": -30.38400869331023, + "c5": 4.852482811155177, + "c6": -33.85507633871754, + "c7": -44.38388376242232 }, - "vertexSeeds": { - "c1": 4.195500091114781, - "c2": 4.252430469111555, - "c3": 4.022644538684141, - "c4": 4.247848382055974, - "c5": 4.267723371602864, - "c6": 4.4248279544733045, - "c7": 4.793233787437935 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975033, + "c3": 5.73277854831253, + "c4": 4.586222838650023, + "c5": 3.439667128987514, + "c6": 2.2931114193250113, + "c7": 1.1465557096625032 }, "rgb": [238, 201, 159] }, @@ -215952,23 +215952,23 @@ "year": 1770, "resistanceReported": false, "duration": 52963200, - "curveSeeds": { - "c1": -47.01172576299679, - "c2": -56.14865493467049, - "c3": 57.76325171514783, - "c4": -57.116571357856834, - "c5": -23.80740999235477, - "c6": -19.948099149667293, - "c7": -14.774932928675582 + "points": { + "c1": 60.366476576216314, + "c2": -27.704492753254407, + "c3": -24.340930267494628, + "c4": -57.04149651911507, + "c5": -63.14186350223097, + "c6": 37.093029565958275, + "c7": -4.627241822968045 }, - "vertexSeeds": { - "c1": 4.796889795374214, - "c2": 4.581118613847428, - "c3": 4.561515145400069, - "c4": 4.695651581574825, - "c5": 4.545483867030485, - "c6": 4.8043579128604055, - "c7": 4.376110117543656 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.9625520110957035, + "c3": 5.802126675913081, + "c4": 4.641701340730466, + "c5": 3.4812760055478518, + "c6": 2.320850670365229, + "c7": 1.1604253351826146 }, "rgb": [77, 76, 132] }, @@ -215979,23 +215979,23 @@ "year": 1769, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 8.311305806028216, - "c2": -20.342320793437068, - "c3": -24.333832513113453, - "c4": 10.38459069813561, - "c5": -16.111147494651984, - "c6": 1.3180767152245778, - "c7": -10.966642170815074 + "points": { + "c1": -12.614567981337293, + "c2": -15.34598047982267, + "c3": -19.69876357996476, + "c4": -14.095344048954543, + "c5": -10.989969730374991, + "c6": -27.062468698140915, + "c7": 6.110531307041143 }, - "vertexSeeds": { - "c1": 1.419910351169471, - "c2": 1.424063682268702, - "c3": 1.4640290620898406, - "c4": 1.5332880127324522, - "c5": 1.4942579472945439, - "c6": 1.4086369085513106, - "c7": 1.5082868709107315 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.274618585298196, + "c3": 1.8955154877484954, + "c4": 1.5164123901987985, + "c5": 1.137309292649098, + "c6": 0.7582061950993974, + "c7": 0.37910309754970056 }, "rgb": [77, 76, 132] }, @@ -216006,23 +216006,23 @@ "year": 1769, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": 20.112168547145366, - "c2": 19.862904623373183, - "c3": -0.7898355662289802, - "c4": 9.295697979451639, - "c5": 10.941403263631429, - "c6": -17.34701868357834, - "c7": 8.072183312625263 + "points": { + "c1": 20.104926886188537, + "c2": 5.202092836423237, + "c3": 21.073400723378462, + "c4": -23.9823053528074, + "c5": -0.5605369590242795, + "c6": -20.578416131852286, + "c7": -19.477703080305456 }, - "vertexSeeds": { - "c1": 5.994084275165445, - "c2": 6.366872653864635, - "c3": 5.980579367382445, - "c4": 5.907694778714459, - "c5": 6.467058427875344, - "c6": 5.955355657008386, - "c7": 6.069868721509536 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996762, + "c4": 6.343042071197408, + "c5": 4.757281553398053, + "c6": 3.171521035598699, + "c7": 1.5857605177993441 }, "rgb": [222, 0, 59] }, @@ -216033,23 +216033,23 @@ "year": 1769, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -8.952040796023375, - "c2": -13.292781340515678, - "c3": -22.35420818972311, - "c4": -21.31601349660509, - "c5": 27.068133473256346, - "c6": -32.76756866264633, - "c7": 2.0239313866259963 + "points": { + "c1": -14.128313838281407, + "c2": -19.944803383864365, + "c3": 15.096194821125735, + "c4": -32.21469235035333, + "c5": 2.4241747141923042, + "c6": -22.23304753808629, + "c7": 22.86687212542914 }, - "vertexSeeds": { - "c1": 3.585777954818632, - "c2": 3.4192145864778496, - "c3": 3.373174028456892, - "c4": 3.706899242623989, - "c5": 3.4364530637634347, - "c6": 3.4727419443318825, - "c7": 3.697038314379398 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843276, + "c3": 4.50762829403606, + "c4": 3.6061026352288508, + "c5": 2.7045769764216345, + "c6": 1.8030513176144254, + "c7": 0.9015256588072164 }, "rgb": [86, 146, 138] }, @@ -216060,23 +216060,23 @@ "year": 1769, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 18.25173595799312, - "c2": -7.126894428347219, - "c3": 11.312508552548323, - "c4": 2.5540953365150507, - "c5": 9.018577831593824, - "c6": 17.662936271018793, - "c7": -20.864910001951422 + "points": { + "c1": 20.056450375483955, + "c2": -9.278530440698706, + "c3": 8.403296705589959, + "c4": -23.468631715436146, + "c5": 12.519425317378897, + "c6": -17.374224994417826, + "c7": -16.204634055748883 }, - "vertexSeeds": { - "c1": 4.522041466701177, - "c2": 4.434996570623946, - "c3": 4.5274566677948265, - "c4": 4.451958486032035, - "c5": 4.590744957984151, - "c6": 4.528884353562264, - "c7": 4.628023504233137 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653249, + "c3": 5.547850208044385, + "c4": 4.438280166435501, + "c5": 3.3287101248266353, + "c6": 2.2191400832177504, + "c7": 1.109570041608885 }, "rgb": [238, 201, 159] }, @@ -216087,23 +216087,23 @@ "year": 1769, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 6.004968879975017, - "c2": 2.9480554788491773, - "c3": 9.120687896148723, - "c4": 28.980479014383384, - "c5": 26.30602988232055, - "c6": -28.76761132533081, - "c7": -25.414859538853946 + "points": { + "c1": 33.503168900910836, + "c2": -15.65680631196999, + "c3": 32.15593078553988, + "c4": 24.090421623334173, + "c5": -5.655196570636917, + "c6": -9.772092430782834, + "c7": 2.4607978058168385 }, - "vertexSeeds": { - "c1": 1.0120224643798186, - "c2": 1.0728850370754506, - "c3": 1.0943232557570182, - "c4": 1.142140192688272, - "c5": 1.0342477301166155, - "c6": 0.9811766434489131, - "c7": 1.014445938134524 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.3869625520110955, + "c3": 1.155802126675913, + "c4": 0.9246417013407303, + "c5": 0.6934812760055478, + "c6": 0.46232085067036516, + "c7": 0.23116042533518258 }, "rgb": [222, 0, 59] }, @@ -216114,23 +216114,23 @@ "year": 1769, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -11.181171647114525, - "c2": 34.30740252734563, - "c3": 13.98327635074915, - "c4": 30.62498016232354, - "c5": -20.26726773410069, - "c6": 35.75928540622989, - "c7": -36.09713959413731 + "points": { + "c1": 11.677224286157568, + "c2": -16.358140743988585, + "c3": -32.54168057631277, + "c4": -37.550496707750284, + "c5": 4.816347986589079, + "c6": -36.50009787292722, + "c7": -16.479664358352718 }, - "vertexSeeds": { - "c1": 6.014292799148422, - "c2": 5.9125568637924095, - "c3": 5.733784011086452, - "c4": 5.725211238032182, - "c5": 6.008980763763976, - "c6": 5.516863135693085, - "c7": 5.822910248795785 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589455, + "c3": 7.235321312991218, + "c4": 5.78825705039297, + "c5": 4.341192787794734, + "c6": 2.894128525196485, + "c7": 1.4470642625982488 }, "rgb": [77, 76, 132] }, @@ -216141,23 +216141,23 @@ "year": 1769, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -29.337803335502326, - "c2": -19.671959573423187, - "c3": -0.7247395671042298, - "c4": -22.080308840365014, - "c5": -6.700009853769313, - "c6": 12.391540026918939, - "c7": -15.40987652917007 + "points": { + "c1": -32.39855031088401, + "c2": 28.4144395672254, + "c3": -10.103705960768576, + "c4": -8.97488643785556, + "c5": -8.494282316055816, + "c6": 20.302696733769658, + "c7": -22.356001431175116 }, - "vertexSeeds": { - "c1": 2.3112936405680076, - "c2": 2.2996498656661206, - "c3": 2.4155630772527643, - "c4": 2.3493819968869984, - "c5": 2.2092346947145383, - "c6": 2.448859107842072, - "c7": 2.3543286993304986 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495134, + "c3": 3.0744336569579294, + "c4": 2.4595469255663422, + "c5": 1.8446601941747582, + "c6": 1.2297734627831711, + "c7": 0.614886731391584 }, "rgb": [77, 76, 132] }, @@ -216168,23 +216168,23 @@ "year": 1769, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 10.753817616415496, - "c2": 6.7807219068723015, - "c3": -28.384973815574742, - "c4": 17.966479383221397, - "c5": 24.568267909429565, - "c6": -9.592644007689788, - "c7": 28.130447451868662 + "points": { + "c1": -12.926103697853556, + "c2": 27.99410192244423, + "c3": -16.99925276974177, + "c4": -29.159844713476495, + "c5": -8.132679433897842, + "c6": 24.669739741887554, + "c7": -14.280153034205707 }, - "vertexSeeds": { - "c1": 4.953357391570489, - "c2": 4.904476719843355, - "c3": 4.945562922075599, - "c4": 4.929310151312745, - "c5": 4.9611629655859035, - "c6": 4.978523719652033, - "c7": 4.936221694513876 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.18446601941745, + "c3": 5.987055016181238, + "c4": 4.789644012944967, + "c5": 3.592233009708725, + "c6": 2.3948220064724834, + "c7": 1.1974110032362417 }, "rgb": [58, 15, 49] }, @@ -216195,23 +216195,23 @@ "year": 1769, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -12.77931859103586, - "c2": -22.160925639676236, - "c3": -2.303000197230361, - "c4": 34.58726259892691, - "c5": -24.854880405508904, - "c6": 29.81254745850711, - "c7": -12.641353641276858 + "points": { + "c1": 46.7454053122819, + "c2": -38.17342042885219, + "c3": 36.487447386785334, + "c4": 40.25194672962111, + "c5": -17.450871056561482, + "c6": -24.806663461518887, + "c7": -27.71035707607519 }, - "vertexSeeds": { - "c1": 5.249005288282792, - "c2": 4.897916287618694, - "c3": 5.480265843076279, - "c4": 5.056867955743067, - "c5": 4.805908075240848, - "c6": 4.766188192382624, - "c7": 5.226208549674254 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785015, + "c3": 6.7730004623208515, + "c4": 5.418400369856678, + "c5": 4.063800277392513, + "c6": 2.709200184928339, + "c7": 1.3546000924641695 }, "rgb": [238, 201, 159] }, @@ -216222,23 +216222,23 @@ "year": 1769, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 24.50506164176044, - "c2": -34.67805382459609, - "c3": 0.03513125554061958, - "c4": 21.03796141546365, - "c5": -4.9215684071266494, - "c6": -13.823786810442506, - "c7": 31.654547532404102 + "points": { + "c1": 19.87196066654223, + "c2": 12.893602273283967, + "c3": 27.611174446709136, + "c4": -3.1756256401898, + "c5": -38.37517834184729, + "c6": -38.05332002459957, + "c7": -52.58401949929255 }, - "vertexSeeds": { - "c1": 4.750213852838056, - "c2": 4.453023675103366, - "c3": 4.537654172462409, - "c4": 4.507276386596902, - "c5": 4.599943321278146, - "c6": 4.4796531248115885, - "c7": 4.618253092432781 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934818, + "c3": 5.709662505779009, + "c4": 4.567730004623212, + "c5": 3.425797503467402, + "c6": 2.283865002311606, + "c7": 1.1419325011557961 }, "rgb": [238, 201, 159] }, @@ -216249,23 +216249,23 @@ "year": 1769, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 18.425799519349056, - "c2": 35.381172847011, - "c3": 22.34220016844548, - "c4": 23.761537765328562, - "c5": 2.564854364126248, - "c6": -4.714254123775632, - "c7": -14.227916163416303 + "points": { + "c1": -26.257130770168366, + "c2": 11.025211699049521, + "c3": 31.308030364178236, + "c4": -31.315377390407722, + "c5": -18.923641196695066, + "c6": -12.547190174804754, + "c7": 20.24516445621714 }, - "vertexSeeds": { - "c1": 6.957971116966242, - "c2": 6.888858586321791, - "c3": 6.928022102146603, - "c4": 6.962706401625644, - "c5": 6.735515854436607, - "c6": 6.644864605696024, - "c7": 6.869938687988146 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520115, + "c3": 8.344891354600101, + "c4": 6.675913083680086, + "c5": 5.006934812760072, + "c6": 3.337956541840029, + "c7": 1.6689782709200145 }, "rgb": [86, 146, 138] }, @@ -216276,23 +216276,23 @@ "year": 1769, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": -13.044537690515737, - "c2": -6.404904458557164, - "c3": -11.02853482459814, - "c4": -4.936732268605564, - "c5": -13.961986186251671, - "c6": -14.142307599670719, - "c7": -14.817986080133679 + "points": { + "c1": -14.517678216052252, + "c2": -9.46850854724242, + "c3": 8.62480713798439, + "c4": -18.77224214869565, + "c5": 5.8859538186834754, + "c6": -11.551253510720082, + "c7": -13.837098369201675 }, - "vertexSeeds": { - "c1": 3.9514215511651143, - "c2": 4.235376168737379, - "c3": 4.07264051815496, - "c4": 4.213956472682069, - "c5": 4.05494101008942, - "c6": 4.299474730878259, - "c7": 4.409125188905106 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175682, + "c4": 4.234858992140545, + "c5": 3.1761442441054086, + "c6": 2.1174294960702724, + "c7": 1.0587147480351362 }, "rgb": [86, 146, 138] }, @@ -216303,23 +216303,23 @@ "year": 1769, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 30.766342112316778, - "c2": -35.63336177223847, - "c3": 20.67992911036059, - "c4": -9.162468294897913, - "c5": 2.7148809814356056, - "c6": 28.41649808916158, - "c7": -25.277748852451865 + "points": { + "c1": 43.07882447760841, + "c2": -0.4999489675452722, + "c3": -18.48545132973754, + "c4": -2.1145556692001506, + "c5": -34.32078127127671, + "c6": 8.183860291451644, + "c7": 20.768353876314862 }, - "vertexSeeds": { - "c1": 4.548955921936347, - "c2": 3.9479263071446864, - "c3": 5.3550815423994145, - "c4": 4.465935976339076, - "c5": 5.311723534835965, - "c6": 3.866257105891759, - "c7": 4.816484287159706 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385113, + "c4": 5.1779935275080895, + "c5": 3.8834951456310667, + "c6": 2.5889967637540434, + "c7": 1.2944983818770233 }, "rgb": [222, 0, 59] }, @@ -216330,23 +216330,23 @@ "year": 1770, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": -19.010143757041895, - "c2": -17.335331530410343, - "c3": -49.03219562807371, - "c4": -4.926836752910013, - "c5": -22.702542066511, - "c6": -20.715301867904195, - "c7": 25.52596074281093 + "points": { + "c1": -47.286939175995144, + "c2": -32.482865453412224, + "c3": 12.965222419354156, + "c4": 36.664094956332555, + "c5": -49.055897956715384, + "c6": -46.920480119371895, + "c7": 1.1422015957100626 }, - "vertexSeeds": { - "c1": 5.038159193763697, - "c2": 5.117505475462049, - "c3": 4.211101063334193, - "c4": 4.479307566623811, - "c5": 4.514550435588452, - "c6": 5.2538404124777145, - "c7": 4.811482059916533 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -216357,23 +216357,23 @@ "year": 1769, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -36.06361139366928, - "c2": -20.67853116144026, - "c3": -29.201215710849496, - "c4": -28.043363120989493, - "c5": 24.305141235762534, - "c6": -17.924317701003037, - "c7": -18.239871311189354 + "points": { + "c1": 32.265475096401744, + "c2": -19.753205157216446, + "c3": -28.81106300942769, + "c4": -11.623660757901476, + "c5": -39.12875765628869, + "c6": -31.06332302429685, + "c7": 30.65321044690839 }, - "vertexSeeds": { - "c1": 2.885312960851992, - "c2": 2.5992354420721084, - "c3": 2.708776474242529, - "c4": 2.5297233741958496, - "c5": 2.6874562813256406, - "c6": 2.6261230836277223, - "c7": 2.456463640726434 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.4674063800277373, + "c4": 2.773925104022194, + "c5": 2.0804438280166457, + "c6": 1.386962552011097, + "c7": 0.6934812760055485 }, "rgb": [77, 76, 132] }, @@ -216384,23 +216384,23 @@ "year": 1769, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -17.45536025094417, - "c2": -5.6172325983500215, - "c3": -6.706081345051665, - "c4": -17.08810431494808, - "c5": -4.269506938878706, - "c6": 14.395120902560013, - "c7": -4.932716682393984 + "points": { + "c1": 21.52784649566725, + "c2": 29.236407088471648, + "c3": 1.4363957418209132, + "c4": 4.575807518053534, + "c5": 16.828035238680624, + "c6": 8.762956359111296, + "c7": -27.64304597950807 }, - "vertexSeeds": { - "c1": 3.2837109933063546, - "c2": 2.947709340020703, - "c3": 2.9209106505402556, - "c4": 3.2745704460058107, - "c5": 3.366700410010615, - "c6": 3.2393369043601177, - "c7": 3.0556333562781526 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [222, 0, 59] }, @@ -216411,23 +216411,23 @@ "year": 1769, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -1.502399614648258, - "c2": 13.247833022317248, - "c3": -0.1516970766850605, - "c4": 0.23375184676623206, - "c5": -12.14629642681642, - "c6": -2.7419149403538796, - "c7": 6.877096887635794 + "points": { + "c1": 2.9006455702381047, + "c2": 18.604769346792178, + "c3": 21.92906943046052, + "c4": -13.61196711084861, + "c5": -12.597645660490983, + "c6": 16.17772590381067, + "c7": 0.6637985918811076 }, - "vertexSeeds": { - "c1": 2.6623580145185595, - "c2": 2.4838093783245534, - "c3": 2.7533779715554525, - "c4": 2.543466999572836, - "c5": 2.4921902012068684, - "c6": 2.4827738555309975, - "c7": 2.715957220273763 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919565, + "c3": 3.3287101248266318, + "c4": 2.6629680998612986, + "c5": 1.9972260748959743, + "c6": 1.3314840499306493, + "c7": 0.6657420249653246 }, "rgb": [238, 201, 159] }, @@ -216438,23 +216438,23 @@ "year": 1769, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -38.16616953907597, - "c2": -17.44564582322131, - "c3": -9.95355634558247, - "c4": -21.11519067846999, - "c5": -30.761172756936322, - "c6": 32.111832167082596, - "c7": 17.447037942613086 + "points": { + "c1": 6.247107565967674, + "c2": 6.569981380053832, + "c3": 5.198699075458208, + "c4": 29.366166791567835, + "c5": -8.895197809633814, + "c6": -39.45966553678549, + "c7": -5.578797592396022 }, - "vertexSeeds": { - "c1": 6.427166733425193, - "c2": 6.110286679837952, - "c3": 6.07957559871718, - "c4": 6.057099161819208, - "c5": 6.386621201592542, - "c6": 6.2731640794517, - "c7": 6.001717457164989 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353686, + "c3": 7.674526121128059, + "c4": 6.139620896902457, + "c5": 4.604715672676831, + "c6": 3.0698104484512285, + "c7": 1.534905224225603 }, "rgb": [222, 0, 59] }, @@ -216465,23 +216465,23 @@ "year": 1770, "resistanceReported": false, "duration": 43632000, - "curveSeeds": { - "c1": 3.2875298942853632, - "c2": 33.39826023888299, - "c3": -4.52735534335536, - "c4": 3.4703266942354247, - "c5": -0.7020916159457116, - "c6": 52.49670717463909, - "c7": -12.561782308473617 + "points": { + "c1": 52.98819840695277, + "c2": 28.045282708853257, + "c3": 17.71673154854944, + "c4": -53.30934613250063, + "c5": 51.62374678138264, + "c6": 24.866979082645365, + "c7": 51.47033602992672 }, - "vertexSeeds": { - "c1": 6.128229630677551, - "c2": 6.062720048259257, - "c3": 6.07041941484585, - "c4": 6.120261946995005, - "c5": 5.978034933682718, - "c6": 6.105306935560691, - "c7": 6.1828373297512185 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [58, 15, 49] }, @@ -216492,23 +216492,23 @@ "year": 1770, "resistanceReported": false, "duration": 52012800, - "curveSeeds": { - "c1": -0.9200409229042066, - "c2": -3.2043719369584878, - "c3": -23.533110258194426, - "c4": 47.25201617914189, - "c5": 52.111294972220705, - "c6": -7.5020588238641395, - "c7": 2.2331841313258423 + "points": { + "c1": 65.05318853676422, + "c2": 45.18401623372631, + "c3": 37.560079245175544, + "c4": -32.83084351580511, + "c5": -62.878381004037394, + "c6": -48.2961970408996, + "c7": -30.00898859927519 }, - "vertexSeeds": { - "c1": 4.44795500292452, - "c2": 4.3412261716375085, - "c3": 3.9088842820918606, - "c4": 4.335359790588322, - "c5": 3.7919914001674564, - "c6": 4.279975991630758, - "c7": 4.28927697196622 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309757, + "c4": 4.308830328247802, + "c5": 3.231622746185851, + "c6": 2.154415164123901, + "c7": 1.0772075820619504 }, "rgb": [222, 0, 59] }, @@ -216519,23 +216519,23 @@ "year": 1769, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 41.996483207903694, - "c2": -34.41814783322816, - "c3": -0.5208919783219983, - "c4": -28.297167114448946, - "c5": 8.605797423125473, - "c6": -33.27267852262024, - "c7": -36.38437787549117 + "points": { + "c1": 4.551646860917117, + "c2": 23.60428000258669, + "c3": -12.731744803597689, + "c4": -4.113513710890857, + "c5": -31.81765813615, + "c6": 14.252861688448355, + "c7": -3.6023725545621446 }, - "vertexSeeds": { - "c1": 5.5056463401761775, - "c2": 5.453351026102689, - "c3": 5.328666302049778, - "c4": 5.556821677114521, - "c5": 5.325238373548286, - "c6": 5.345124193223259, - "c7": 5.4968648617940135 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583907, + "c3": 6.657420249653251, + "c4": 5.325936199722624, + "c5": 3.9944521497919676, + "c6": 2.662968099861312, + "c7": 1.331484049930656 }, "rgb": [238, 201, 159] }, @@ -216546,23 +216546,23 @@ "year": 1769, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 30.039832864357372, - "c2": 8.717281443123241, - "c3": -14.441487457127955, - "c4": 5.450014536236786, - "c5": 33.44640118850429, - "c6": 33.555221086663614, - "c7": 25.796495062703187 + "points": { + "c1": -21.058755077349986, + "c2": -13.357816210507519, + "c3": -5.684236826210654, + "c4": 0.21482412404523643, + "c5": 14.018638735493958, + "c6": -16.511457652761866, + "c7": -12.06262101298837 }, - "vertexSeeds": { - "c1": 1.6292975801165095, - "c2": 1.5762884408081312, - "c3": 1.522797060525995, - "c4": 1.575168492099985, - "c5": 1.5471147225346522, - "c6": 1.5716955415362093, - "c7": 1.5581786763763796 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.3578363384188608, + "c3": 1.964863615349055, + "c4": 1.5718908922792425, + "c5": 1.1789181692094304, + "c6": 0.7859454461396247, + "c7": 0.39297272306981235 }, "rgb": [238, 201, 159] }, @@ -216573,23 +216573,23 @@ "year": 1769, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 28.328323765773135, - "c2": 12.800069020539262, - "c3": 12.10795840484625, - "c4": 15.169943205613073, - "c5": 16.74920110972704, - "c6": 31.717063592921292, - "c7": -26.86552381994415 + "points": { + "c1": -6.96861123639863, + "c2": 4.53947369366135, + "c3": -36.626167558909735, + "c4": 31.285756260799516, + "c5": -41.504014489134, + "c6": -4.875857578342803, + "c7": -32.229121114517405 }, - "vertexSeeds": { - "c1": 1.6195170542834898, - "c2": 1.7121568521893573, - "c3": 1.7045865451287145, - "c4": 1.768141282556416, - "c5": 1.7875855568242893, - "c6": 1.6102270153686915, - "c7": 1.8782204592042766 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.3116042533518253, + "c4": 1.8492834026814624, + "c5": 1.3869625520110969, + "c6": 0.9246417013407312, + "c7": 0.4623208506703656 }, "rgb": [58, 15, 49] }, @@ -216600,23 +216600,23 @@ "year": 1769, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -8.492119329581808, - "c2": 10.635091182825974, - "c3": -13.25874356529571, - "c4": -9.223612078047495, - "c5": -6.36419828555821, - "c6": 29.73154416515618, - "c7": 12.734826741159246 + "points": { + "c1": 4.702113029063959, + "c2": -18.979255569049382, + "c3": 26.577344401065574, + "c4": -0.8072495167150606, + "c5": 31.886348080873702, + "c6": -10.530910882625875, + "c7": 9.936456980144975 }, - "vertexSeeds": { - "c1": 6.1485608925005675, - "c2": 6.758969526075334, - "c3": 6.042312945226348, - "c4": 7.412594095252082, - "c5": 6.95866893608447, - "c6": 6.749783546636396, - "c7": 4.597537980310455 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525658, + "c3": 8.922792417938052, + "c4": 7.138233934350439, + "c5": 5.353675450762832, + "c6": 3.569116967175221, + "c7": 1.7845584835876092 }, "rgb": [58, 15, 49] }, @@ -216627,23 +216627,23 @@ "year": 1769, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -0.7844776727654619, - "c2": -3.7653846924439893, - "c3": -18.069788811831934, - "c4": -13.009586382283079, - "c5": -16.951814601611584, - "c6": 0.5166115574446266, - "c7": -14.870639994358537 + "points": { + "c1": 1.3423871953183877, + "c2": -16.294350819432033, + "c3": -13.325880056016954, + "c4": -17.067432669901198, + "c5": 7.395570744078263, + "c6": 13.656815644467407, + "c7": -0.7275826747164693 }, - "vertexSeeds": { - "c1": 6.515401765237783, - "c2": 6.676388927177575, - "c3": 5.658000008322792, - "c4": 6.016953196659915, - "c5": 5.905308320477571, - "c6": 6.053136239616221, - "c7": 6.09831077270154 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -216654,23 +216654,23 @@ "year": 1769, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -1.8595886012622955, - "c2": 32.645458830123744, - "c3": -40.122522016400026, - "c4": 34.53611264664295, - "c5": 39.6955836941806, - "c6": 5.0831243564836655, - "c7": 9.977477730764782 + "points": { + "c1": -20.41421957524423, + "c2": -24.1691666928848, + "c3": 9.988886471612268, + "c4": 28.687953446704782, + "c5": 4.054565055117088, + "c6": -25.57192903286927, + "c7": 2.9743992624633364 }, - "vertexSeeds": { - "c1": 7.712968758575245, - "c2": 7.980593283973802, - "c3": 7.672999014964076, - "c4": 7.952546164668466, - "c5": 7.882945029555875, - "c6": 7.721420231038845, - "c7": 7.821133011351528 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692109, + "c3": 9.59315765141007, + "c4": 7.674526121128073, + "c5": 5.755894590846036, + "c6": 3.8372630605640365, + "c7": 1.918631530281999 }, "rgb": [86, 146, 138] }, @@ -216681,23 +216681,23 @@ "year": 1769, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 41.519321628841624, - "c2": 17.227240390289133, - "c3": 33.21381328030871, - "c4": -37.515419235304634, - "c5": -45.58401987636366, - "c6": -36.93846371352802, - "c7": -20.05141628168151 + "points": { + "c1": 12.728001333277092, + "c2": 24.04610425186398, + "c3": -22.446072412217006, + "c4": -10.240144990525636, + "c5": 25.82835533464244, + "c6": -11.194580145886626, + "c7": 8.130348765749488 }, - "vertexSeeds": { - "c1": 1.1512985468326369, - "c2": 1.3344529226486073, - "c3": 1.2888472596460931, - "c4": 1.3713128140192996, - "c5": 1.0435450540969808, - "c6": 1.3223023872215345, - "c7": 1.2413372238049225 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.191400832177532, + "c3": 1.8261673601479427, + "c4": 1.4609338881183536, + "c5": 1.0957004160887656, + "c6": 0.730466944059177, + "c7": 0.3652334720295885 }, "rgb": [58, 15, 49] }, @@ -216708,23 +216708,23 @@ "year": 1769, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -1.9830838250999605, - "c2": -18.100253064974318, - "c3": -20.445498449194133, - "c4": -24.23653361505572, - "c5": 3.601080723333844, - "c6": -8.393200857648104, - "c7": -34.188058070263615 + "points": { + "c1": 39.177817781243924, + "c2": -29.260304695436638, + "c3": 44.42076890750413, + "c4": 3.593509150031835, + "c5": -40.37113352225963, + "c6": 1.6906126970511863, + "c7": -16.31457662855065 }, - "vertexSeeds": { - "c1": 3.193723501644586, - "c2": 3.384658017680888, - "c3": 3.2809570062053903, - "c4": 3.3524214303597217, - "c5": 3.235575896554324, - "c6": 3.2291149354673054, - "c7": 3.3091367461105867 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119275, + "c3": 4.0915395284327385, + "c4": 3.2732316227461875, + "c5": 2.4549237170596374, + "c6": 1.6366158113731009, + "c7": 0.8183079056865504 }, "rgb": [238, 201, 159] }, @@ -216735,23 +216735,23 @@ "year": 1770, "resistanceReported": true, "duration": 41558400, - "curveSeeds": { - "c1": -23.72830572475609, - "c2": -11.440657310958699, - "c3": 17.329210138056624, - "c4": -38.53695092608661, - "c5": -40.461240218375885, - "c6": -5.654551833803012, - "c7": 39.79325311310596 + "points": { + "c1": 46.55211455643676, + "c2": -53.22490760903754, + "c3": 14.884422882331819, + "c4": 55.603770242497504, + "c5": -19.88449062357583, + "c6": -21.17211716721296, + "c7": 9.487939093275202 }, - "vertexSeeds": { - "c1": 0.8602573601392665, - "c2": 0.8594010422548258, - "c3": 0.8690732249128583, - "c4": 0.8679806402720941, - "c5": 0.8608171460204525, - "c6": 0.8720858603879993, - "c7": 0.8694656202432034 + "offsets": { + "c1": 1.4886731391585761, + "c2": 1.2760055478502035, + "c3": 1.0633379565418417, + "c4": 0.8506703652334691, + "c5": 0.6380027739251071, + "c6": 0.42533518261673453, + "c7": 0.21266759130837254 }, "rgb": [58, 15, 49] }, @@ -216762,23 +216762,23 @@ "year": 1769, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 42.20587942770731, - "c2": -2.133886723742819, - "c3": 0.07399000727600935, - "c4": 22.214623241851747, - "c5": -38.729713334210814, - "c6": -30.356724433774374, - "c7": 22.106383120796743 + "points": { + "c1": -27.094156340102675, + "c2": 36.413605155129325, + "c3": -35.4232290443651, + "c4": 10.298373482054636, + "c5": -39.5008233258459, + "c6": -28.680492026133113, + "c7": -26.544383800254526 }, - "vertexSeeds": { - "c1": 2.4648615826403315, - "c2": 2.7096683940796966, - "c3": 2.4045473111092432, - "c4": 2.7311944597356983, - "c5": 2.7552851365311515, - "c6": 2.491725732004283, - "c7": 2.6670005371624823 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.02219140083218, + "c3": 3.3518261673601457, + "c4": 2.681460933888119, + "c5": 2.0110957004160914, + "c6": 1.3407304669440578, + "c7": 0.6703652334720305 }, "rgb": [222, 0, 59] }, @@ -216789,23 +216789,23 @@ "year": 1770, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 30.23717794109409, - "c2": 2.337849454293057, - "c3": 20.2078542863197, - "c4": -3.7379727437310564, - "c5": -49.698365646256654, - "c6": 49.28706396477429, - "c7": -4.934993409224894 + "points": { + "c1": -34.3910936933471, + "c2": 34.04834133712322, + "c3": -53.54059913000676, + "c4": 22.55457842790001, + "c5": 6.729841529189386, + "c6": 48.10145342709873, + "c7": 19.405477399826694 }, - "vertexSeeds": { - "c1": 1.9071198783334897, - "c2": 2.037328964454666, - "c3": 2.409674530424929, - "c4": 2.3806668307886967, - "c5": 2.1222102688165525, - "c6": 2.0588868970807415, - "c7": 1.9799303320732577 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692557, + "c4": 2.588996763754045, + "c5": 1.941747572815534, + "c6": 1.2944983818770226, + "c7": 0.6472491909385113 }, "rgb": [222, 0, 59] }, @@ -216816,23 +216816,23 @@ "year": 1769, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -14.384109145498229, - "c2": -13.859816674979939, - "c3": 10.27467154945548, - "c4": 12.7405521431293, - "c5": 17.756759356911687, - "c6": -7.77634749845366, - "c7": -14.613318840357847 + "points": { + "c1": -16.64571726103736, + "c2": -13.015902572377573, + "c3": -11.50795445952517, + "c4": -8.713363652838094, + "c5": 20.20326080786129, + "c6": -17.846670546013872, + "c7": -6.6660702160340275 }, - "vertexSeeds": { - "c1": 2.243239080730266, - "c2": 2.1824717710394195, - "c3": 2.356150329329337, - "c4": 2.289164469307998, - "c5": 2.385114130699753, - "c6": 2.3829294924767606, - "c7": 2.142498935966777 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484043, + "c3": 2.9588534442903374, + "c4": 2.3670827554322695, + "c5": 1.7753120665742022, + "c6": 1.1835413777161348, + "c7": 0.5917706888580674 }, "rgb": [86, 146, 138] }, @@ -216843,23 +216843,23 @@ "year": 1769, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -15.057718789273387, - "c2": -8.387175654004015, - "c3": 29.675438805392712, - "c4": 0.11579640313651751, - "c5": 13.695127410944455, - "c6": -17.178135542946386, - "c7": -28.244512334536097 + "points": { + "c1": -2.245470864020625, + "c2": 15.60766500296647, + "c3": -15.010332245745435, + "c4": -24.3626231380196, + "c5": 0.8724907211908572, + "c6": -32.6566187931302, + "c7": 6.0851789429588266 }, - "vertexSeeds": { - "c1": 3.2256519241737855, - "c2": 3.6590881647545883, - "c3": 3.6416466535640915, - "c4": 3.4574676829945745, - "c5": 3.4428750556582526, - "c6": 3.3594242782220056, - "c7": 3.3229000845385084 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843275, + "c3": 4.50762829403606, + "c4": 3.6061026352288508, + "c5": 2.7045769764216345, + "c6": 1.8030513176144254, + "c7": 0.9015256588072158 }, "rgb": [86, 146, 138] }, @@ -216870,23 +216870,23 @@ "year": 1769, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -14.699519707315602, - "c2": 25.50843853623998, - "c3": -17.723234943420497, - "c4": -18.549451519642382, - "c5": 28.662893904967987, - "c6": 47.887197403782494, - "c7": 0.5668847032571733 + "points": { + "c1": 33.52139804737489, + "c2": 21.097821244558247, + "c3": 1.3590741193621483, + "c4": 2.6702211599567818, + "c5": -6.70586385295281, + "c6": -8.576869425172795, + "c7": -14.220815623908443 }, - "vertexSeeds": { - "c1": 4.366490971277099, - "c2": 4.63484322485729, - "c3": 4.434329688350913, - "c4": 4.416734226165511, - "c5": 4.825652470349103, - "c6": 4.370455416510731, - "c7": 4.536763813713691 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055476, + "c3": 5.7790106333795634, + "c4": 4.623208506703656, + "c5": 3.467406380027742, + "c6": 2.311604253351828, + "c7": 1.155802126675914 }, "rgb": [58, 15, 49] }, @@ -216897,23 +216897,23 @@ "year": 1769, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": -8.223829282006207, - "c2": -11.168190062685113, - "c3": -12.783046235098574, - "c4": 16.473660398971592, - "c5": -12.314450007337884, - "c6": -0.3587396522892199, - "c7": 4.061738890740532 + "points": { + "c1": -13.02595930504272, + "c2": -17.732969909892127, + "c3": -2.3369056934708823, + "c4": -18.466888213939708, + "c5": -9.084684575799796, + "c6": -11.028837340771572, + "c7": 5.104542019716678 }, - "vertexSeeds": { - "c1": 4.9273796782230335, - "c2": 4.863228902905908, - "c3": 4.930425065038591, - "c4": 5.062852697506727, - "c5": 5.009016227817548, - "c6": 5.107136157332015, - "c7": 4.74852265547186 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -216924,23 +216924,23 @@ "year": 1769, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 25.651909654277787, - "c2": 32.08143851646682, - "c3": 21.004985235057575, - "c4": 27.68221569499316, - "c5": 33.58415753266715, - "c6": -18.864044081678397, - "c7": -16.989539852651657 + "points": { + "c1": 11.01015484667574, + "c2": 22.367043683958315, + "c3": 6.053079368214931, + "c4": 44.66225597029319, + "c5": -33.71616437523873, + "c6": -40.19772071329982, + "c7": 21.415660857952773 }, - "vertexSeeds": { - "c1": 4.478679438992267, - "c2": 4.67048018744808, - "c3": 4.970758569445108, - "c4": 4.362670387419095, - "c5": 5.006952580869896, - "c6": 5.115359781725784, - "c7": 4.791837711041242 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099818 }, "rgb": [77, 76, 132] }, @@ -216951,23 +216951,23 @@ "year": 1770, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -0.2687557642178291, - "c2": 21.43558945342334, - "c3": -4.551436327502756, - "c4": 5.0997510704640945, - "c5": 49.774989759291806, - "c6": -5.219362420338214, - "c7": -14.731315914425494 + "points": { + "c1": 48.60427732954184, + "c2": 39.24851040293499, + "c3": 22.5474163462197, + "c4": 49.207453166226095, + "c5": 49.590138537083924, + "c6": -11.67870620094073, + "c7": 24.242835254469618 }, - "vertexSeeds": { - "c1": 6.06386424355958, - "c2": 6.027693775124901, - "c3": 6.14262187729978, - "c4": 6.092831620583602, - "c5": 6.039496750684729, - "c6": 6.083887936398382, - "c7": 6.165986686394261 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.87656033287103, + "c3": 7.397133610725822, + "c4": 5.9177068885806685, + "c5": 4.438280166435515, + "c6": 2.958853444290361, + "c7": 1.4794267221451536 }, "rgb": [77, 76, 132] }, @@ -216978,23 +216978,23 @@ "year": 1769, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": -36.92767266632936, - "c2": -14.483103558256609, - "c3": 51.03575471008772, - "c4": -21.428053532305785, - "c5": -49.47536755607124, - "c6": 19.563186013492732, - "c7": 1.8938399139031148 + "points": { + "c1": -3.9306201867103923, + "c2": -8.109025803920659, + "c3": 14.14596355652143, + "c4": 26.462712137915382, + "c5": -34.05797374217361, + "c6": 30.956927857639464, + "c7": -35.975412644088465 }, - "vertexSeeds": { - "c1": 5.018663026847284, - "c2": 5.10687494191267, - "c3": 5.187351180596816, - "c4": 5.237863904393832, - "c5": 5.26129533734904, - "c6": 5.282096058477208, - "c7": 5.405828512117763 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302353, + "c3": 6.495607951918641, + "c4": 5.196486361534909, + "c5": 3.8973647711511763, + "c6": 2.5982431807674655, + "c7": 1.2991215903837328 }, "rgb": [238, 201, 159] }, @@ -217005,23 +217005,23 @@ "year": 1769, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 6.991979326316091, - "c2": -0.2904578578608792, - "c3": 26.595291602508013, - "c4": 2.3458075846813315, - "c5": -43.779883371783086, - "c6": -32.26990884015338, - "c7": -36.50183825329761 + "points": { + "c1": 30.45273369034318, + "c2": -32.050009543225805, + "c3": -3.893941551411949, + "c4": 4.190325772555916, + "c5": 13.786366404230328, + "c6": 40.70692638332423, + "c7": -3.0844877602713083 }, - "vertexSeeds": { - "c1": 4.63059340517423, - "c2": 4.5232543349951415, - "c3": 4.848252608345027, - "c4": 4.142307755141491, - "c5": 4.97329997486869, - "c6": 5.293153854864033, - "c7": 5.0047932219221405 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -217032,23 +217032,23 @@ "year": 1769, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -15.497319809221107, - "c2": -19.493707393220937, - "c3": -22.59573083333987, - "c4": -5.17982505212138, - "c5": -24.532441005617507, - "c6": 12.425066250512629, - "c7": 19.684975156462073 + "points": { + "c1": -8.810458445526407, + "c2": -28.814748531739195, + "c3": -15.761419934500779, + "c4": -11.92203914086485, + "c5": -22.502412702099427, + "c6": -26.24855830637108, + "c7": 25.13752463479473 }, - "vertexSeeds": { - "c1": 3.0543554543145586, - "c2": 3.012049673001923, - "c3": 3.0069680762953195, - "c4": 3.1698599188868033, - "c5": 2.837772196907314, - "c6": 3.0568853592213574, - "c7": 3.145440411521225 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636613, + "c3": 3.814147018030509, + "c4": 3.0513176144244114, + "c5": 2.2884882108183064, + "c6": 1.5256588072122022, + "c7": 0.7628294036060973 }, "rgb": [58, 15, 49] }, @@ -217059,23 +217059,23 @@ "year": 1769, "resistanceReported": false, "duration": 6134400, - "curveSeeds": { - "c1": -0.43809033361196725, - "c2": -0.15033388761972333, - "c3": 3.5007470951066324, - "c4": 4.271606898051523, - "c5": 1.8217593399721714, - "c6": 14.624973687125117, - "c7": 4.074229725139592 + "points": { + "c1": 10.272808255589489, + "c2": -15.18124618107981, + "c3": -8.778852254991772, + "c4": -16.08988099492065, + "c5": -18.00881108424617, + "c6": 16.07785068838991, + "c7": -8.112436561426433 }, - "vertexSeeds": { - "c1": 3.558251730406521, - "c2": 3.5943004165486743, - "c3": 3.6794646929852286, - "c4": 3.562493891869236, - "c5": 3.5868566538027027, - "c6": 3.5407351943593985, - "c7": 3.70979655011405 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.3259361997226, + "c3": 4.438280166435509, + "c4": 3.5506241331484008, + "c5": 2.6629680998613083, + "c6": 1.7753120665742004, + "c7": 0.8876560332870921 }, "rgb": [86, 146, 138] }, @@ -217086,23 +217086,23 @@ "year": 1770, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": 9.77665408952521, - "c2": -16.60635999919174, - "c3": -43.396624819857834, - "c4": 13.954566492453907, - "c5": -13.51779237111272, - "c6": 9.776065096063348, - "c7": -19.61412303857249 + "points": { + "c1": 33.95863702617545, + "c2": -52.58313039447061, + "c3": 15.739105132901031, + "c4": 8.706823831463453, + "c5": -15.166411962694688, + "c6": -51.50484151745557, + "c7": 15.365670399181369 }, - "vertexSeeds": { - "c1": 3.9425161957982353, - "c2": 4.455076497192409, - "c3": 4.1405261653756975, - "c4": 4.456647620920197, - "c5": 4.454311422258636, - "c6": 4.176339452078921, - "c7": 4.253634032178691 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [238, 201, 159] }, @@ -217113,23 +217113,23 @@ "year": 1769, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -19.665522719999473, - "c2": -8.08811100354512, - "c3": -16.91389944184672, - "c4": -4.818626169485782, - "c5": 22.31025738593344, - "c6": -24.429190828714702, - "c7": -3.3554648406023624 + "points": { + "c1": 28.3191182404479, + "c2": -29.448107887345035, + "c3": -17.891746534831952, + "c4": 13.949626432149351, + "c5": -21.900523155688262, + "c6": -1.8597805924715232, + "c7": -24.897181036040912 }, - "vertexSeeds": { - "c1": 2.571928589042517, - "c2": 2.5636430528416962, - "c3": 2.619301105660837, - "c4": 2.5993531370355694, - "c5": 2.5224774369126286, - "c6": 2.540750900334304, - "c7": 2.4323453528254446 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692557, + "c4": 2.588996763754045, + "c5": 1.941747572815534, + "c6": 1.2944983818770226, + "c7": 0.6472491909385113 }, "rgb": [86, 146, 138] }, @@ -217140,23 +217140,23 @@ "year": 1769, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -12.190084166967253, - "c2": 39.37236998683035, - "c3": 21.040361325022147, - "c4": -26.010521441387482, - "c5": 38.73124873774712, - "c6": -2.845353943429899, - "c7": 24.2152060292643 + "points": { + "c1": 38.34426132353444, + "c2": 37.116505349037894, + "c3": -29.075709525213355, + "c4": 30.5308057311197, + "c5": 19.36127652283782, + "c6": 23.627212438483753, + "c7": 23.80401137450339 }, - "vertexSeeds": { - "c1": 7.59513793141204, - "c2": 8.157011058051006, - "c3": 7.930211513579827, - "c4": 8.635100449465924, - "c5": 7.772247244798794, - "c6": 7.333575708788979, - "c7": 8.081550108004672 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.67683772538141, + "c3": 10.564031437817848, + "c4": 8.451225150254277, + "c5": 6.338418862690705, + "c6": 4.225612575127143, + "c7": 2.1128062875635716 }, "rgb": [238, 201, 159] }, @@ -217167,23 +217167,23 @@ "year": 1769, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 28.78065513414748, - "c2": -37.968489457444605, - "c3": -2.690416076286006, - "c4": -40.70342668942099, - "c5": 22.314137582498226, - "c6": 39.79620443159634, - "c7": 10.58974174592909 + "points": { + "c1": -3.666377953871944, + "c2": 17.81270104887176, + "c3": -12.525641898492047, + "c4": 6.905187972303359, + "c5": 1.551541868883163, + "c6": 2.3945591885602795, + "c7": -0.664344055906831 }, - "vertexSeeds": { - "c1": 6.277995851527315, - "c2": 6.563908138366455, - "c3": 6.407321209829552, - "c4": 6.481468275703736, - "c5": 6.586289933187391, - "c6": 6.397218971346674, - "c7": 6.5723637207930645 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.85945446139622, + "c4": 6.287563569116945, + "c5": 4.715672676837708, + "c6": 3.1437817845584726, + "c7": 1.5718908922792363 }, "rgb": [222, 0, 59] }, @@ -217194,23 +217194,23 @@ "year": 1769, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -23.946741430510894, - "c2": -38.54144925167684, - "c3": -19.452138525518965, - "c4": 16.551899390147852, - "c5": 12.265327456923409, - "c6": -1.3842512239075973, - "c7": -20.367096372208348 + "points": { + "c1": 33.06244172993954, + "c2": -34.656610369804724, + "c3": 19.585724979966827, + "c4": -0.3128942675990274, + "c5": 15.682885609585199, + "c6": 31.448809820675002, + "c7": -22.46642568116977 }, - "vertexSeeds": { - "c1": 1.9157746328376404, - "c2": 2.4167362567674373, - "c3": 2.053495379828919, - "c4": 3.3637806130177355, - "c5": 2.0493414805417247, - "c6": 2.859881308136784, - "c7": 2.682561034439306 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320389, + "c3": 4.207119741100323, + "c4": 3.3656957928802593, + "c5": 2.5242718446601935, + "c6": 1.6828478964401297, + "c7": 0.8414239482200648 }, "rgb": [238, 201, 159] }, @@ -217221,23 +217221,23 @@ "year": 1769, "resistanceReported": true, "duration": 4579200, - "curveSeeds": { - "c1": -14.64150080244578, - "c2": -13.609109115819907, - "c3": -3.7634867762873014, - "c4": 1.2380895261054725, - "c5": -7.633415292622097, - "c6": -13.39965839196716, - "c7": -10.287245892205492 + "points": { + "c1": 3.3487152101051834, + "c2": 1.7263959595468776, + "c3": -16.78266863267162, + "c4": -1.8826976527854526, + "c5": -5.881906074337099, + "c6": -6.220387592862902, + "c7": 0.47934872939629614 }, - "vertexSeeds": { - "c1": 1.3406735751295336, - "c2": 1.3406735751295336, - "c3": 1.3406735751295336, - "c4": 1.3406735751295336, - "c5": 1.3406735751295336, - "c6": 1.3406735751295336, - "c7": 1.3406735751295336 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -217248,23 +217248,23 @@ "year": 1769, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -20.35397516957676, - "c2": -20.237380939476846, - "c3": 20.61401263801638, - "c4": 19.636038806265947, - "c5": 2.760973475236856, - "c6": 8.371303621264332, - "c7": -11.828944573966906 + "points": { + "c1": -6.452387014659628, + "c2": 12.982926472497848, + "c3": 7.247503755110824, + "c4": 3.394412864063355, + "c5": -2.6749399887468215, + "c6": -15.828108771197945, + "c7": -6.529591199135179 }, - "vertexSeeds": { - "c1": 2.810047951253624, - "c2": 2.848547681855255, - "c3": 2.9919265595999103, - "c4": 2.8248609420389292, - "c5": 2.6968632760432634, - "c6": 2.904437445573706, - "c7": 2.7440236290562954 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234395, + "c3": 3.582986592695334, + "c4": 2.8663892741562655, + "c5": 2.1497919556171974, + "c6": 1.433194637078137, + "c7": 0.7165973185390685 }, "rgb": [238, 201, 159] }, @@ -217275,23 +217275,23 @@ "year": 1770, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": -9.245966158188104, - "c2": -0.7719136820236017, - "c3": -11.544100722265625, - "c4": 34.61349597070754, - "c5": -35.88821459409773, - "c6": 21.532778353518076, - "c7": -16.81503125253009 + "points": { + "c1": -31.26172409880512, + "c2": 3.75512131387584, + "c3": 46.163196145416016, + "c4": -45.169010418328604, + "c5": -21.899161632030225, + "c6": -35.37562758580723, + "c7": -50.833360640887314 }, - "vertexSeeds": { - "c1": 0.9302856180840299, - "c2": 0.9269575580011681, - "c3": 0.9183904449603768, - "c4": 1.0364431255877378, - "c5": 0.8992314504573127, - "c6": 1.0398423951713778, - "c7": 0.8972916177889522 + "offsets": { + "c1": 1.779935275080906, + "c2": 1.5256588072122046, + "c3": 1.2713823393435046, + "c4": 1.0171058714748031, + "c5": 0.762829403606103, + "c6": 0.5085529357374016, + "c7": 0.25427646786870145 }, "rgb": [58, 15, 49] }, @@ -217302,23 +217302,23 @@ "year": 1769, "resistanceReported": true, "duration": 33782400, - "curveSeeds": { - "c1": -17.40887509974695, - "c2": -45.84320725817689, - "c3": -18.640614108169057, - "c4": -32.164259319102506, - "c5": -16.87430619808546, - "c6": 8.031178283810029, - "c7": -29.7060287027027 + "points": { + "c1": 33.18629467853284, + "c2": 28.521545440865758, + "c3": 19.944593358282965, + "c4": 11.169433433104693, + "c5": -14.768640075539487, + "c6": 29.343505049566197, + "c7": -27.193515491295287 }, - "vertexSeeds": { - "c1": 1.3750809530089465, - "c2": 1.4774318208558375, - "c3": 1.369605745575562, - "c4": 1.613311563898828, - "c5": 1.4977204010783969, - "c6": 1.373826782356744, - "c7": 1.712682123781135 + "offsets": { + "c1": 3.0097087378640777, + "c2": 2.5797503467406377, + "c3": 2.149791955617198, + "c4": 1.7198335644937597, + "c5": 1.2898751733703198, + "c6": 0.8599167822468798, + "c7": 0.4299583911234399 }, "rgb": [238, 201, 159] }, @@ -217329,23 +217329,23 @@ "year": 1769, "resistanceReported": false, "duration": 3628800, - "curveSeeds": { - "c1": -12.10101614829842, - "c2": -9.421445601178025, - "c3": -5.821977443257131, - "c4": -8.929228090086433, - "c5": -5.630921401290276, - "c6": -9.690644717329869, - "c7": -3.4289057471861977 + "points": { + "c1": 13.571778423501758, + "c2": 14.059062464145047, + "c3": -11.99500671285955, + "c4": 2.419392623875922, + "c5": 3.9484078747470583, + "c6": 0.5326444637261716, + "c7": 0.247001971591839 }, - "vertexSeeds": { - "c1": 6.377363123964289, - "c2": 6.417494296888427, - "c3": 5.891688478309752, - "c4": 6.726172716946945, - "c5": 6.194913058652995, - "c6": 5.674239145554723, - "c7": 6.1263597027897285 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -217356,23 +217356,23 @@ "year": 1769, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 32.90941260287825, - "c2": -23.590310320442928, - "c3": 33.65667138924135, - "c4": -14.668731955159359, - "c5": -24.86849555728804, - "c6": 17.043802401572606, - "c7": 15.437636957761775 + "points": { + "c1": 39.91298244284843, + "c2": -18.59739586884347, + "c3": -39.26782349312642, + "c4": -27.723958349579604, + "c5": -30.723115299720153, + "c6": -1.2303005367139974, + "c7": 19.57802831108806 }, - "vertexSeeds": { - "c1": 6.522779319791595, - "c2": 6.366563357007294, - "c3": 6.723383886129714, - "c4": 6.471501720239129, - "c5": 6.416920176459968, - "c6": 6.729088242671492, - "c7": 6.643620613632546 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198342, + "c3": 8.159963014331938, + "c4": 6.527970411465554, + "c5": 4.895977808599171, + "c6": 3.263985205732787, + "c7": 1.6319926028663834 }, "rgb": [58, 15, 49] }, @@ -217383,23 +217383,23 @@ "year": 1770, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": -56.897551039489414, - "c2": -20.288229171039568, - "c3": 6.345608918715577, - "c4": -12.438247273146523, - "c5": -14.926247656730673, - "c6": 9.126513708917585, - "c7": -46.05531272477923 + "points": { + "c1": 33.48585953632245, + "c2": -29.07541770003154, + "c3": -50.698679543808794, + "c4": -45.382880832949866, + "c5": 1.2950168033247849, + "c6": 52.95447672159338, + "c7": -16.55530455212066 }, - "vertexSeeds": { - "c1": 5.140100959062803, - "c2": 5.259122185190915, - "c3": 4.8534546851073825, - "c4": 5.286097865658766, - "c5": 4.978056271936813, - "c6": 5.035339826715458, - "c7": 4.89126905549815 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262138, + "c3": 6.472491909385116, + "c4": 5.177993527508095, + "c5": 3.883495145631073, + "c6": 2.5889967637540514, + "c7": 1.2944983818770301 }, "rgb": [58, 15, 49] }, @@ -217410,23 +217410,23 @@ "year": 1770, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": -16.133987065203634, - "c2": -12.976742443955388, - "c3": 45.93721021816819, - "c4": -19.48965224820632, - "c5": 41.30245775635001, - "c6": 41.773004359242435, - "c7": 7.256168239304415 + "points": { + "c1": 33.098469833134104, + "c2": 49.46203794955298, + "c3": 1.9049481449905343, + "c4": 46.29144542321242, + "c5": -31.469267161234754, + "c6": 40.115243049614904, + "c7": -11.92217446695198 }, - "vertexSeeds": { - "c1": 2.9156207281013473, - "c2": 2.945061258364208, - "c3": 2.888948334839022, - "c4": 2.7283486435080215, - "c5": 2.7368884978836547, - "c6": 2.8778981699842174, - "c7": 2.917523911006656 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314842, + "c3": 3.6292186777623714, + "c4": 2.9033749422098922, + "c5": 2.177531206657421, + "c6": 1.4516874711049501, + "c7": 0.7258437355524711 }, "rgb": [238, 201, 159] }, @@ -217437,23 +217437,23 @@ "year": 1769, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -9.358103685782687, - "c2": 10.792882373848322, - "c3": 26.29200992279541, - "c4": -11.931899450792145, - "c5": 28.393319463547925, - "c6": -28.42744372753949, - "c7": -20.206004867912394 + "points": { + "c1": -7.193331062938654, + "c2": -2.39153075727684, + "c3": -25.747697570460815, + "c4": 16.84973101413589, + "c5": 22.38770566467729, + "c6": 2.4803155186591255, + "c7": 20.11742383641203 }, - "vertexSeeds": { - "c1": 9.700190465322532, - "c2": 9.703508990881648, - "c3": 9.714142502498389, - "c4": 9.713916730913974, - "c5": 9.709739364832615, - "c6": 9.706803645601143, - "c7": 9.696445223741085 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771150782, + "c3": 11.581137309292778, + "c4": 9.264909847433854, + "c5": 6.948682385575852, + "c6": 4.632454923716927, + "c7": 2.3162274618589245 }, "rgb": [58, 15, 49] }, @@ -217464,23 +217464,23 @@ "year": 1770, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 10.962724513774155, - "c2": -22.36258137523733, - "c3": -20.933880991538675, - "c4": 49.353317470675876, - "c5": 3.8864664683439827, - "c6": 29.47190322713263, - "c7": -42.99258416759267 + "points": { + "c1": -29.26604604418247, + "c2": -21.998543310814505, + "c3": -27.45501762423424, + "c4": 49.32484571564284, + "c5": -1.5946639839338488, + "c6": 14.559502396422033, + "c7": 29.132694160944695 }, - "vertexSeeds": { - "c1": 6.173525598046326, - "c2": 5.811428618415415, - "c3": 5.840795371897494, - "c4": 5.597263091865647, - "c5": 5.4984639671772415, - "c6": 5.518258779238568, - "c7": 5.659267169773769 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661578, + "c4": 6.1581137309292595, + "c5": 4.618585298196953, + "c6": 3.079056865464636, + "c7": 1.539528432732318 }, "rgb": [77, 76, 132] }, @@ -217491,23 +217491,23 @@ "year": 1770, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": -39.382994886180306, - "c2": -45.03107431819662, - "c3": -35.24098678421156, - "c4": -40.28179486466624, - "c5": -25.876219150466348, - "c6": 17.462021988238078, - "c7": -19.50964097392489 + "points": { + "c1": 12.746636793369312, + "c2": 21.240265800523616, + "c3": 3.3093468978189193, + "c4": -36.558151410108444, + "c5": -30.504555351564314, + "c6": 28.457668957720955, + "c7": 15.572864714099921 }, - "vertexSeeds": { - "c1": 6.787218169379222, - "c2": 6.850407284100379, - "c3": 6.669843249827463, - "c4": 6.8489938387507765, - "c5": 6.316574419372942, - "c6": 6.8009117162819495, - "c7": 6.910856615725367 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399451, + "c3": 8.27554322699953, + "c4": 6.620434581599627, + "c5": 4.965325936199726, + "c6": 3.310217290799824, + "c7": 1.6551086453999015 }, "rgb": [86, 146, 138] }, @@ -217518,23 +217518,23 @@ "year": 1770, "resistanceReported": true, "duration": 55900800, - "curveSeeds": { - "c1": -65.40894152640227, - "c2": -50.46644352190327, - "c3": -21.42305644547187, - "c4": 15.505844908570282, - "c5": -37.13320956469406, - "c6": -10.447458018148517, - "c7": -45.75014131073874 + "points": { + "c1": -7.128207404382636, + "c2": -12.562656033983586, + "c3": 56.778176266744254, + "c4": -25.873218057952776, + "c5": -27.80787216571607, + "c6": -41.40832234448503, + "c7": 59.51997131905699 }, - "vertexSeeds": { - "c1": 1.8397180720417416, - "c2": 1.2792852401839996, - "c3": 1.499615592619411, - "c4": 1.6896092495517532, - "c5": 1.6194091731431572, - "c6": 2.0838986031248066, - "c7": 1.497658631793095 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.079056865464632, + "c3": 2.5658807212205272, + "c4": 2.0527045769764216, + "c5": 1.539528432732316, + "c6": 1.0263522884882104, + "c7": 0.5131761442441056 }, "rgb": [86, 146, 138] }, @@ -217545,23 +217545,23 @@ "year": 1770, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 15.924014818893966, - "c2": 10.29755023746732, - "c3": 7.8704182196822785, - "c4": 13.672301750574135, - "c5": 38.14973419095046, - "c6": 16.505460388949693, - "c7": -3.6744227461919294 + "points": { + "c1": -14.072765573448244, + "c2": -12.292490658314279, + "c3": -42.84382219406516, + "c4": -39.9851666841158, + "c5": -40.89948218154295, + "c6": 34.55051260273189, + "c7": 10.975489262751175 }, - "vertexSeeds": { - "c1": 4.286907983172635, - "c2": 4.07845952487547, - "c3": 4.036427029862597, - "c4": 4.116025486065753, - "c5": 4.213218197830369, - "c6": 4.199407972215179, - "c7": 4.3113439591084965 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210816, + "c3": 5.2935737401756855, + "c4": 4.234858992140547, + "c5": 3.176144244105408, + "c6": 2.1174294960702693, + "c7": 1.0587147480351387 }, "rgb": [222, 0, 59] }, @@ -217572,23 +217572,23 @@ "year": 1769, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -43.68736252082021, - "c2": -17.33651717914857, - "c3": -1.9055779250425147, - "c4": 20.552155330061552, - "c5": 34.9168359502067, - "c6": 35.28732839892771, - "c7": 19.276365528659852 + "points": { + "c1": -26.158884973517374, + "c2": -28.38206613031417, + "c3": -24.491230815289594, + "c4": -11.111875956047733, + "c5": 30.615117038011178, + "c6": 0.612338273261571, + "c7": -14.732171853125614 }, - "vertexSeeds": { - "c1": 5.731510584635298, - "c2": 5.731197804487259, - "c3": 5.493332304414796, - "c4": 5.4348337303317225, - "c5": 5.547516969540713, - "c6": 5.7973368154776965, - "c7": 5.790840943558249 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066585, + "c3": 6.934812760055474, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.7739251040221955, + "c7": 1.3869625520110838 }, "rgb": [238, 201, 159] }, @@ -217599,23 +217599,23 @@ "year": 1769, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -9.820551345446745, - "c2": -19.117313019904337, - "c3": -2.8307266845644, - "c4": -20.3927845848568, - "c5": 6.674067380124182, - "c6": 26.062919920834727, - "c7": 11.655965519421425 + "points": { + "c1": 1.3098813882674527, + "c2": 28.356879914216183, + "c3": -5.452545121785125, + "c4": -21.414098048775013, + "c5": 18.246967211849654, + "c6": 4.521679380045821, + "c7": -23.292717308831058 }, - "vertexSeeds": { - "c1": 2.759922929586857, - "c2": 2.8109158391451503, - "c3": 2.891446905340747, - "c4": 2.7265394495054243, - "c5": 2.7496406044927912, - "c6": 2.7433972328902883, - "c7": 2.9314777341955054 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355065, + "c3": 3.6523347202958822, + "c4": 2.921867776236707, + "c5": 2.1914008321775325, + "c6": 1.4609338881183576, + "c7": 0.7304669440591748 }, "rgb": [77, 76, 132] }, @@ -217626,23 +217626,23 @@ "year": 1769, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -13.970189800954023, - "c2": -14.892748537033544, - "c3": -2.0643416705498083, - "c4": 15.906295361749564, - "c5": -1.2740560581772762, - "c6": 4.926882638780466, - "c7": 16.96994266772986 + "points": { + "c1": 25.5460203170612, + "c2": 24.97853477274917, + "c3": -2.196774974790543, + "c4": 1.207850271083931, + "c5": 24.4682314655398, + "c6": 0.11073471938949098, + "c7": 4.310533111044251 }, - "vertexSeeds": { - "c1": 6.205642880140377, - "c2": 5.892471997716361, - "c3": 5.966124549927811, - "c4": 5.921174304281219, - "c5": 6.192652818558023, - "c6": 6.0672508864157315, - "c7": 6.120238969395152 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951467, + "c3": 7.443365695792877, + "c4": 5.954692556634311, + "c5": 4.466019417475722, + "c6": 2.9773462783171554, + "c7": 1.4886731391585888 }, "rgb": [86, 146, 138] }, @@ -217653,23 +217653,23 @@ "year": 1769, "resistanceReported": false, "duration": 1728000, - "curveSeeds": { - "c1": 3.1741658677416336, - "c2": 4.8359226864330545, - "c3": -6.351386130845114, - "c4": 2.7992950048304195, - "c5": -4.678462472597161, - "c6": -10.11542012021199, - "c7": 6.16961169476178 + "points": { + "c1": -8.309924713378459, + "c2": 2.5647554144531135, + "c3": 12.80039998986058, + "c4": -2.2600017810314306, + "c5": -2.1213989125522215, + "c6": 2.4746840613584276, + "c7": -6.576336972495572 }, - "vertexSeeds": { - "c1": 3.1163890897400988, - "c2": 3.2712662008169446, - "c3": 3.29676580454232, - "c4": 3.2662440905761434, - "c5": 2.980777523275062, - "c6": 2.9658176396645195, - "c7": 3.2401147838179893 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [58, 15, 49] }, @@ -217680,23 +217680,23 @@ "year": 1769, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 17.300645527247795, - "c2": 25.452441910578422, - "c3": 24.953659886958278, - "c4": -23.191375626623916, - "c5": 7.941310823287161, - "c6": 14.61590004824675, - "c7": 32.309325383964435 + "points": { + "c1": -0.05628286274689742, + "c2": 33.10371649567327, + "c3": -24.989185989415617, + "c4": 3.237599142112188, + "c5": -10.054768040972576, + "c6": -9.091018154871474, + "c7": -27.791709337466877 }, - "vertexSeeds": { - "c1": 4.8697148736745826, - "c2": 5.1216372072738094, - "c3": 5.134467942785181, - "c4": 5.151398002083381, - "c5": 5.180625220654668, - "c6": 5.059402782754479, - "c7": 5.053943835400271 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [238, 201, 159] }, @@ -217707,23 +217707,23 @@ "year": 1769, "resistanceReported": false, "duration": 1468800, - "curveSeeds": { - "c1": 3.7705691692338092, - "c2": -10.82825367273993, - "c3": -4.204879470107986, - "c4": 10.129532009228683, - "c5": -11.043116202176115, - "c6": -7.238855174747619, - "c7": 8.76350045118702 + "points": { + "c1": -9.212798273086763, + "c2": -10.735078569572622, + "c3": -6.151391717159788, + "c4": -1.192192640372518, + "c5": 2.724077000943158, + "c6": 3.6701807746811568, + "c7": -1.9682095790011633 }, - "vertexSeeds": { - "c1": 4.218625056613213, - "c2": 3.8180408489749147, - "c3": 3.9725262281108575, - "c4": 3.9098134197236827, - "c5": 4.283586566694993, - "c6": 3.9569239171602466, - "c7": 3.7345449492972924 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309757, + "c4": 4.308830328247802, + "c5": 3.231622746185851, + "c6": 2.154415164123901, + "c7": 1.0772075820619504 }, "rgb": [58, 15, 49] }, @@ -217734,23 +217734,23 @@ "year": 1769, "resistanceReported": false, "duration": 1382400, - "curveSeeds": { - "c1": 6.218426424299192, - "c2": -7.206148068770718, - "c3": -0.5042874557854926, - "c4": 0.08765982996204791, - "c5": 4.05110528702923, - "c6": -10.67059080424865, - "c7": -4.955248940410301 + "points": { + "c1": 1.3077199225553944, + "c2": 11.943867066567499, + "c3": -6.479432368679184, + "c4": 1.0852340814555514, + "c5": -2.139921764704983, + "c6": 7.774335958695108, + "c7": -9.337782513448087 }, - "vertexSeeds": { - "c1": 2.659848262729331, - "c2": 2.8216674913478608, - "c3": 1.7370679890711278, - "c4": 2.258292489994398, - "c5": 1.8559427679314455, - "c6": 2.7668306127587887, - "c7": 2.709055499259995 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435508, + "c3": 3.6985668053629217, + "c4": 2.9588534442903383, + "c5": 2.219140083217753, + "c6": 1.4794267221451691, + "c7": 0.7397133610725846 }, "rgb": [222, 0, 59] }, @@ -217761,23 +217761,23 @@ "year": 1769, "resistanceReported": false, "duration": 1123200, - "curveSeeds": { - "c1": 9.338128775734578, - "c2": 7.3556938752793535, - "c3": -9.575939976422598, - "c4": -5.92464675841282, - "c5": 0.15173161372135446, - "c6": -5.51196724850489, - "c7": -2.642296753103073 + "points": { + "c1": 11.008007372565942, + "c2": 10.454641613480035, + "c3": 5.147670250267254, + "c4": -0.41741434573082437, + "c5": 2.546125915537168, + "c6": 5.036582171143703, + "c7": -7.7637949638799615 }, - "vertexSeeds": { - "c1": 4.492986568832199, - "c2": 4.630974470636361, - "c3": 4.932162703199265, - "c4": 4.630169266731641, - "c5": 4.57643070810066, - "c6": 5.064867736253078, - "c7": 4.972230812990447 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819698, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.243643088303281 }, "rgb": [86, 146, 138] }, @@ -217788,23 +217788,23 @@ "year": 1769, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 17.531301173539035, - "c2": -4.712873702998017, - "c3": -22.7661941865059, - "c4": 31.900676088967202, - "c5": 22.96893399392232, - "c6": -23.546691810327918, - "c7": 12.457778511392931 + "points": { + "c1": 6.1805203628474175, + "c2": 34.5209383278241, + "c3": 33.544336370398995, + "c4": 3.074663626347693, + "c5": 4.64524546537978, + "c6": 5.8680844464861295, + "c7": -21.43769133167985 }, - "vertexSeeds": { - "c1": 2.4635518574772104, - "c2": 2.4313152362570896, - "c3": 2.4503730787263693, - "c4": 2.433754955590748, - "c5": 2.479191662035277, - "c6": 2.4751480403447457, - "c7": 2.4643212517105266 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679583, + "c3": 2.9126213592232957, + "c4": 2.3300970873786326, + "c5": 1.747572815533989, + "c6": 1.1650485436893259, + "c7": 0.5825242718446436 }, "rgb": [222, 0, 59] }, @@ -217815,23 +217815,23 @@ "year": 1769, "resistanceReported": false, "duration": 777600, - "curveSeeds": { - "c1": 2.340851939337174, - "c2": 3.693304528425239, - "c3": -8.65650090673421, - "c4": -0.19692255782927326, - "c5": 8.118402890702665, - "c6": -4.431770471279647, - "c7": -6.0232770001557165 + "points": { + "c1": -2.8939243911968866, + "c2": 8.987613280220973, + "c3": -10.949791098109579, + "c4": 11.754359645710206, + "c5": 0.6656511842988806, + "c6": -10.747661828767258, + "c7": 5.240227434991748 }, - "vertexSeeds": { - "c1": 5.366991443202913, - "c2": 4.613023601891708, - "c3": 5.009376400443463, - "c4": 5.409566628728828, - "c5": 5.211730063014539, - "c6": 5.448925352134583, - "c7": 5.389947725828257 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624128, + "c3": 6.680536292186779, + "c4": 5.344429033749419, + "c5": 4.008321775312069, + "c6": 2.6722145168747096, + "c7": 1.3361072584373548 }, "rgb": [77, 76, 132] }, @@ -217842,23 +217842,23 @@ "year": 1769, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -39.416525470559314, - "c2": -16.865949662963704, - "c3": -35.075966807856524, - "c4": 25.89400607574062, - "c5": -15.248753147892643, - "c6": 3.1770173127097294, - "c7": -33.89581730417409 + "points": { + "c1": 17.53369378033947, + "c2": -21.12962344670303, + "c3": -36.089789853939415, + "c4": 27.612659327773073, + "c5": -20.58457218063702, + "c6": 33.020490718491416, + "c7": -15.085475827221298 }, - "vertexSeeds": { - "c1": 2.765934099035689, - "c2": 2.821096973605855, - "c3": 2.822407514211624, - "c4": 2.757728407410619, - "c5": 2.535689560805157, - "c6": 2.770136546006521, - "c7": 2.8154690630586345 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.3980582524271865, + "c4": 2.718446601941751, + "c5": 2.038834951456307, + "c6": 1.3592233009708714, + "c7": 0.6796116504854357 }, "rgb": [222, 0, 59] }, @@ -217869,23 +217869,23 @@ "year": 1770, "resistanceReported": false, "duration": 47347200, - "curveSeeds": { - "c1": -11.1552049854538, - "c2": -56.49893317083298, - "c3": 28.863355463968333, - "c4": 3.9838468111918246, - "c5": 47.86566200400165, - "c6": 44.46293897969538, - "c7": 31.631901798803952 + "points": { + "c1": 38.86029393573601, + "c2": -58.15575306656252, + "c3": 43.522603048560214, + "c4": -11.587831305968976, + "c5": -12.505631113282384, + "c6": 61.90241545939914, + "c7": -52.96192204513586 }, - "vertexSeeds": { - "c1": 5.756273507323975, - "c2": 5.891582526938296, - "c3": 5.667733119166389, - "c4": 5.267911930874181, - "c5": 5.139903059689737, - "c6": 5.382437071137498, - "c7": 5.27336943694219 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.48821081830791, + "c3": 7.073509015256583, + "c4": 5.65880721220527, + "c5": 4.244105409153955, + "c6": 2.8294036061026415, + "c7": 1.4147018030513139 }, "rgb": [238, 201, 159] }, @@ -217896,23 +217896,23 @@ "year": 1769, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 3.9491098506370292, - "c2": 26.540301223616297, - "c3": 2.3864931512259417, - "c4": -31.58055042670107, - "c5": 9.757437291088536, - "c6": 16.011598213388027, - "c7": -30.777050438777184 + "points": { + "c1": 21.087411544638876, + "c2": 0.7613318879891153, + "c3": 11.574814582062267, + "c4": -6.929647383795427, + "c5": -13.340243419224127, + "c6": 19.412684836270486, + "c7": 18.021333112180407 }, - "vertexSeeds": { - "c1": 4.593241688050538, - "c2": 4.514525038629573, - "c3": 4.673420835286626, - "c4": 4.620812049636712, - "c5": 4.476010221645209, - "c6": 4.6228807566846735, - "c7": 4.765844031300679 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055476, + "c3": 5.7790106333795634, + "c4": 4.623208506703656, + "c5": 3.467406380027742, + "c6": 2.311604253351828, + "c7": 1.155802126675914 }, "rgb": [86, 146, 138] }, @@ -217923,23 +217923,23 @@ "year": 1770, "resistanceReported": false, "duration": 61948800, - "curveSeeds": { - "c1": 1.6205105424997441, - "c2": -38.011260928052245, - "c3": 17.353220920541816, - "c4": 50.90062220501768, - "c5": 76.623220577044, - "c6": -22.652220535043803, - "c7": -20.619949407046157 + "points": { + "c1": 41.4361974481223, + "c2": -15.78688168459783, + "c3": 67.21976193973107, + "c4": -35.94399596984768, + "c5": 18.874631962058317, + "c6": 12.417731683723488, + "c7": -37.85807581985145 }, - "vertexSeeds": { - "c1": 3.781628460751646, - "c2": 3.7215712336236355, - "c3": 3.4069568303989026, - "c4": 3.7933884215443183, - "c5": 3.9121664017820175, - "c6": 3.8989880552519214, - "c7": 3.8355276324784207 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.6310679611650505, + "c3": 4.692556634304206, + "c4": 3.7540453074433673, + "c5": 2.815533980582522, + "c6": 1.8770226537216836, + "c7": 0.9385113268608384 }, "rgb": [58, 15, 49] }, @@ -217950,23 +217950,23 @@ "year": 1770, "resistanceReported": false, "duration": 55209600, - "curveSeeds": { - "c1": 50.006013569940365, - "c2": 60.19314015520325, - "c3": 40.42719215042568, - "c4": -31.72991952822219, - "c5": -4.122730332531617, - "c6": 43.27265714950843, - "c7": 49.31888977091852 + "points": { + "c1": -70.79069022193836, + "c2": -4.161584400763601, + "c3": -56.72294595786794, + "c4": -62.16238118713489, + "c5": 14.848852473510107, + "c6": -51.433376236610776, + "c7": 29.594042708181163 }, - "vertexSeeds": { - "c1": 1.6499855244654387, - "c2": 1.8517512871979336, - "c3": 1.79362899017784, - "c4": 1.8116301995568378, - "c5": 1.8392466836886943, - "c6": 1.9514053450118742, - "c7": 1.740142869708992 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102636, + "c3": 2.357836338418864, + "c4": 1.8862690707350886, + "c5": 1.4147018030513165, + "c6": 0.9431345353675443, + "c7": 0.47156726768377216 }, "rgb": [77, 76, 132] }, @@ -217977,23 +217977,23 @@ "year": 1770, "resistanceReported": false, "duration": 46483200, - "curveSeeds": { - "c1": 24.409362575421518, - "c2": -35.287863545654886, - "c3": -39.44749710570707, - "c4": -60.79223486385779, - "c5": -15.115458701833376, - "c6": 22.786520748349055, - "c7": 12.711983871893217 + "points": { + "c1": 10.4309009783125, + "c2": -49.58002206280404, + "c3": -45.21594373343565, + "c4": 36.69482248719044, + "c5": 57.49493157071115, + "c6": -43.77745855988576, + "c7": 33.94837459779637 }, - "vertexSeeds": { - "c1": 2.104019940784893, - "c2": 2.1497303688172673, - "c3": 2.083477049518897, - "c4": 2.0333552519671545, - "c5": 2.241483923985667, - "c6": 2.2040040302998927, - "c7": 2.1940494415036884 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746185, + "c3": 2.7276930189551565, + "c4": 2.1821544151641246, + "c5": 1.6366158113730924, + "c6": 1.0910772075820603, + "c7": 0.545538603791032 }, "rgb": [58, 15, 49] }, @@ -218004,23 +218004,23 @@ "year": 1769, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 1.398175900289452, - "c2": 6.544046388322357, - "c3": 13.782246537585031, - "c4": 36.620321794239395, - "c5": -39.25234125421035, - "c6": -2.9513533359345985, - "c7": -30.60296040838442 + "points": { + "c1": -27.247107532438953, + "c2": -7.420611539597573, + "c3": -20.881494878615282, + "c4": -0.19241658190540534, + "c5": 40.56442802121605, + "c6": 11.22168973820009, + "c7": 19.56904933029579 }, - "vertexSeeds": { - "c1": 5.638743244051051, - "c2": 5.124148168812718, - "c3": 5.666355946766, - "c4": 5.27723104041784, - "c5": 5.284745993073355, - "c6": 5.108382539417964, - "c7": 5.3013726438688415 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.21081830790568, + "c3": 6.842348589921408, + "c4": 5.47387887193712, + "c5": 4.105409153952848, + "c6": 2.73693943596856, + "c7": 1.368469717984288 }, "rgb": [238, 201, 159] }, @@ -218031,23 +218031,23 @@ "year": 1770, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": -17.79985096888452, - "c2": -16.72187654301682, - "c3": -28.283628513201457, - "c4": 46.48227559865969, - "c5": 9.97744125159415, - "c6": -42.134438556438695, - "c7": -11.631868466566587 + "points": { + "c1": -49.33180860811336, + "c2": 40.65901731394094, + "c3": -37.9783907836918, + "c4": -48.629389519507015, + "c5": 51.0039227683477, + "c6": -45.061738116224426, + "c7": 31.437137837937406 }, - "vertexSeeds": { - "c1": 8.659545348710214, - "c2": 8.643283532529285, - "c3": 8.73495117558215, - "c4": 8.637245031063351, - "c5": 8.704356765446988, - "c6": 8.553949431317664, - "c7": 8.682430407170255 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.51040221914011, + "c3": 10.425335182616726, + "c4": 8.340268146093408, + "c5": 6.255201109570023, + "c6": 4.170134073046704, + "c7": 2.08506703652332 }, "rgb": [77, 76, 132] }, @@ -218058,23 +218058,23 @@ "year": 1770, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": 31.676418805303967, - "c2": 24.512374339553077, - "c3": -29.12374553830361, - "c4": -23.822922692966728, - "c5": 31.36051558118018, - "c6": -17.170756722492307, - "c7": 21.139153894489397 + "points": { + "c1": 51.39360154704008, + "c2": -24.2707028177318, + "c3": -21.14398321042785, + "c4": -33.727644590285394, + "c5": -2.7432716672855975, + "c6": -28.981464779657745, + "c7": 30.51545427778953 }, - "vertexSeeds": { - "c1": 6.3193818228934235, - "c2": 6.3184077311482465, - "c3": 6.330253932463611, - "c4": 6.31947419927596, - "c5": 6.31898675968239, - "c6": 6.317369770751849, - "c7": 6.326688136309156 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152308, + "c3": 7.558945908460557, + "c4": 6.047156726768205, + "c5": 4.535367545076455, + "c6": 3.0235783633841025, + "c7": 1.511789181692352 }, "rgb": [58, 15, 49] }, @@ -218085,23 +218085,23 @@ "year": 1770, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -41.700801844566485, - "c2": 42.14696264100614, - "c3": -27.228984952552214, - "c4": -32.29920277201601, - "c5": 26.542939933953022, - "c6": -9.92537615851031, - "c7": -37.92516134849275 + "points": { + "c1": 40.737302502070236, + "c2": 17.914101815101716, + "c3": 27.949886365898152, + "c4": -44.94200706994778, + "c5": 13.87434392109791, + "c6": -43.114415800978975, + "c7": 44.79369070973074 }, - "vertexSeeds": { - "c1": 4.269190805202021, - "c2": 4.253656708509651, - "c3": 4.241742525279522, - "c4": 4.269566042902192, - "c5": 4.273749011002491, - "c6": 4.210156683289023, - "c7": 4.229320373734092 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929253, + "c3": 5.131761442441071, + "c4": 4.105409153952849, + "c5": 3.0790568654646266, + "c6": 2.0527045769764447, + "c7": 1.0263522884882224 }, "rgb": [238, 201, 159] }, @@ -218112,23 +218112,23 @@ "year": 1770, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -16.59606163371855, - "c2": 13.599444017671345, - "c3": 6.883391722267696, - "c4": -7.830314534120326, - "c5": 45.543279139601296, - "c6": 16.15443197210736, - "c7": 15.58290148502175 + "points": { + "c1": 43.86261176892319, + "c2": 38.72028375257295, + "c3": -9.343808352916817, + "c4": 25.949762570083195, + "c5": 45.75480647131971, + "c6": -35.330728867250755, + "c7": -15.473757263351963 }, - "vertexSeeds": { - "c1": 9.243102278160272, - "c2": 9.80977813620476, - "c3": 9.78359794646778, - "c4": 9.577618639857363, - "c5": 9.62087649413015, - "c6": 9.653691943598373, - "c7": 9.152634678742592 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.174757281553404, + "c3": 11.812297734627823, + "c4": 9.449838187702262, + "c5": 7.087378640776702, + "c6": 4.724919093851121, + "c7": 2.3624595469255607 }, "rgb": [77, 76, 132] }, @@ -218139,23 +218139,23 @@ "year": 1769, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 31.88399840059475, - "c2": 5.8128383217037864, - "c3": 6.640170528848131, - "c4": -12.177023310469835, - "c5": 19.040269081611783, - "c6": -3.517486631073048, - "c7": -29.815864035978823 + "points": { + "c1": 32.15043294568049, + "c2": -17.28539132415905, + "c3": 1.0566871749696816, + "c4": -31.122548452636742, + "c5": 15.86716500874148, + "c6": 10.378173995588938, + "c7": 4.661202531759791 }, - "vertexSeeds": { - "c1": 0.9889909562127844, - "c2": 0.9657183524524522, - "c3": 0.9837173159317146, - "c4": 0.8384797467670891, - "c5": 0.9784479716508659, - "c6": 0.8425727670783796, - "c7": 0.831950801197733 + "offsets": { + "c1": 1.6828478964401297, + "c2": 1.4424410540915396, + "c3": 1.2020342117429499, + "c4": 0.9616273693943598, + "c5": 0.7212205270457698, + "c6": 0.4808136846971799, + "c7": 0.24040684234858994 }, "rgb": [222, 0, 59] }, @@ -218166,23 +218166,23 @@ "year": 1769, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -14.893642271037947, - "c2": 32.78401702848541, - "c3": -27.470657373732102, - "c4": -39.09311008568165, - "c5": -19.742139667696048, - "c6": -6.32461846686045, - "c7": -17.908096899719382 + "points": { + "c1": -3.2460419299484116, + "c2": -5.834774303761918, + "c3": -20.73540754706064, + "c4": -7.184861601364936, + "c5": 10.863964981716101, + "c6": 27.309877256766853, + "c7": -28.130339676115995 }, - "vertexSeeds": { - "c1": 2.773564132260738, - "c2": 2.760398756561569, - "c3": 2.540286849124673, - "c4": 2.7938706335628463, - "c5": 2.5866108540346264, - "c6": 2.5176120451232236, - "c7": 2.6511781292135796 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952843, + "c3": 3.421174294960704, + "c4": 2.7369394359685635, + "c5": 2.0527045769764234, + "c6": 1.3684697179842833, + "c7": 0.6842348589921433 }, "rgb": [238, 201, 159] }, @@ -218193,23 +218193,23 @@ "year": 1770, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 36.91359077769669, - "c2": 29.61601725584905, - "c3": -3.0826644261940714, - "c4": 40.727154272368686, - "c5": 44.244459259771524, - "c6": 23.534676976816236, - "c7": 4.334454046719635 + "points": { + "c1": -35.35870413340897, + "c2": -29.527102465235128, + "c3": -4.370258855305842, + "c4": -24.224657634685745, + "c5": -13.393855450318483, + "c6": -31.47105768319891, + "c7": -22.491026529206245 }, - "vertexSeeds": { - "c1": 4.35327755909561, - "c2": 4.241052435129511, - "c3": 4.476553293506919, - "c4": 4.781684379168871, - "c5": 4.503585227091902, - "c6": 4.872256486978741, - "c7": 4.6963824723973495 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176143, + "c3": 5.848358760980119, + "c4": 4.6786870087841, + "c5": 3.5090152565880746, + "c6": 2.33934350439205, + "c7": 1.169671752196025 }, "rgb": [222, 0, 59] }, @@ -218220,23 +218220,23 @@ "year": 1770, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -39.12820393447423, - "c2": -6.886739221799118, - "c3": -2.8851889623994964, - "c4": 19.01473664786525, - "c5": 40.46164265077398, - "c6": 48.216246785560514, - "c7": -27.541702521196886 + "points": { + "c1": 34.254867744646376, + "c2": 19.189446680034266, + "c3": -47.728596848467674, + "c4": 16.12723132436102, + "c5": -32.251552212988855, + "c6": -35.779370761970526, + "c7": -33.12909460405896 }, - "vertexSeeds": { - "c1": 7.50885757923042, - "c2": 6.988515113549895, - "c3": 7.436117332516251, - "c4": 6.747828908462953, - "c5": 7.474359913533325, - "c6": 7.128936974794037, - "c7": 7.32297252728912 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169213, + "c3": 9.292649098474339, + "c4": 7.434119278779471, + "c5": 5.575589459084607, + "c6": 3.717059639389741, + "c7": 1.8585298196948659 }, "rgb": [238, 201, 159] }, @@ -218247,23 +218247,23 @@ "year": 1770, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -41.550649593069586, - "c2": -16.441113326885933, - "c3": -42.70219460322815, - "c4": 22.066193354941348, - "c5": 22.93926640651324, - "c6": -10.327641247982093, - "c7": -34.00595910624884 + "points": { + "c1": 27.171327561979666, + "c2": 23.173252570621003, + "c3": -36.58947726002265, + "c4": 32.50485335682326, + "c5": 2.026253026910851, + "c6": -4.990197245334542, + "c7": -30.757037790523896 }, - "vertexSeeds": { - "c1": 6.348741413884865, - "c2": 6.407023245746204, - "c3": 6.744897486552806, - "c4": 6.3466033913623185, - "c5": 5.824020298322881, - "c6": 6.590867531766417, - "c7": 6.632118904919386 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -218274,23 +218274,23 @@ "year": 1770, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 33.96017362603995, - "c2": 42.009399553947695, - "c3": -16.196800415114005, - "c4": 26.23814352559601, - "c5": -29.752361941512156, - "c6": -4.057619735521243, - "c7": -37.841265126961915 + "points": { + "c1": -44.01460510943179, + "c2": 20.281526091555968, + "c3": 48.88816778282514, + "c4": -37.41459869160377, + "c5": -44.79831079685958, + "c6": -4.173686902638643, + "c7": 36.622887517047396 }, - "vertexSeeds": { - "c1": 4.165731814030639, - "c2": 4.585085556458708, - "c3": 5.329273338295317, - "c4": 4.622977947480718, - "c5": 4.273001069787457, - "c6": 4.042301422229158, - "c7": 4.074017680653278 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -218301,23 +218301,23 @@ "year": 1769, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -34.13929660352938, - "c2": -5.035831570263706, - "c3": 20.052853698710578, - "c4": -32.49644059186974, - "c5": 12.146751071759063, - "c6": -4.394084347958923, - "c7": 10.96242679855731 + "points": { + "c1": -2.1811471357078887, + "c2": -12.54999727541393, + "c3": 11.10297681741583, + "c4": 28.8720183368804, + "c5": -3.2112169759397204, + "c6": 9.029618509074893, + "c7": -7.216978940404658 }, - "vertexSeeds": { - "c1": 3.7368218174201853, - "c2": 3.8583200179589396, - "c3": 3.100097590094995, - "c4": 3.102231938657618, - "c5": 3.125263873420409, - "c6": 3.1271060930610615, - "c7": 3.124053521705989 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366158, + "c3": 4.808136846971797, + "c4": 3.8465094775774396, + "c5": 2.884882108183079, + "c6": 1.923254738788718, + "c7": 0.9616273693943609 }, "rgb": [238, 201, 159] }, @@ -218328,23 +218328,23 @@ "year": 1769, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -36.811895990352184, - "c2": -30.78878649666273, - "c3": -15.367644261328248, - "c4": 11.314071335000072, - "c5": -5.217342912650913, - "c6": -17.998881288688136, - "c7": 33.86288002101122 + "points": { + "c1": 8.058745537512735, + "c2": 9.854251585661878, + "c3": 21.2414894547082, + "c4": 11.393694033256999, + "c5": -11.518134456106829, + "c6": 17.144579255019302, + "c7": -14.712132109478326 }, - "vertexSeeds": { - "c1": 8.094648736888875, - "c2": 7.919606933906204, - "c3": 8.407943844160208, - "c4": 8.041868736988658, - "c5": 8.019703088710187, - "c6": 8.262971033316854, - "c7": 8.590629086021274 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898746, + "c3": 10.286638927415629, + "c4": 8.229311141932497, + "c5": 6.171983356449381, + "c6": 4.1146555709662485, + "c7": 2.057327785483116 }, "rgb": [86, 146, 138] }, @@ -218355,23 +218355,23 @@ "year": 1769, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -5.90621537934031, - "c2": 31.991505431463267, - "c3": -30.866165607864545, - "c4": -9.71956307448708, - "c5": -18.918029294160576, - "c6": 24.67019690478486, - "c7": -28.392625072295793 + "points": { + "c1": 32.99234170538317, + "c2": -13.926634556047066, + "c3": -29.605148032573787, + "c4": -16.44219538655702, + "c5": -6.843912883767025, + "c6": -38.7965576476731, + "c7": -25.035606411618183 }, - "vertexSeeds": { - "c1": 1.340267376519564, - "c2": 1.4956950606646238, - "c3": 1.4572615132629638, - "c4": 1.5026569948551194, - "c5": 1.421683769669635, - "c6": 1.4064304143974757, - "c7": 1.4536010190037365 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [222, 0, 59] }, @@ -218382,23 +218382,23 @@ "year": 1769, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 1.7858436450544346, - "c2": -15.262334279274782, - "c3": 15.191340805727222, - "c4": -6.841746134766858, - "c5": -1.370685329591602, - "c6": 27.871683388430114, - "c7": 18.795532123861946 + "points": { + "c1": 2.399464735101425, + "c2": -2.00630474270249, + "c3": 1.676463640244883, + "c4": 10.98559550457329, + "c5": 5.674601110440541, + "c6": -20.31841217987074, + "c7": 25.95372508365317 }, - "vertexSeeds": { - "c1": 8.014609323855971, - "c2": 8.777008125121958, - "c3": 7.850781160967105, - "c4": 8.10159132308994, - "c5": 8.194019086164031, - "c6": 7.880214886546599, - "c7": 7.799507052805449 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.981969486823854, + "c3": 10.818307905686543, + "c4": 8.654646324549232, + "c5": 6.4909847434119206, + "c6": 4.327323162274623, + "c7": 2.1636615811372986 }, "rgb": [238, 201, 159] }, @@ -218409,23 +218409,23 @@ "year": 1770, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 36.25084767903496, - "c2": -16.59368934833551, - "c3": 27.73618982186626, - "c4": -12.33163518847152, - "c5": -1.4219644502213455, - "c6": 9.142732783772253, - "c7": 0.5667859772711381 + "points": { + "c1": 12.106864653968294, + "c2": -4.060228624553922, + "c3": 16.24300281279666, + "c4": 29.21104042626996, + "c5": 18.84194635061128, + "c6": 35.61294669129717, + "c7": -42.5832106619523 }, - "vertexSeeds": { - "c1": 1.4577529962220965, - "c2": 1.3595987467294737, - "c3": 1.319827284476743, - "c4": 1.4316819481894663, - "c5": 1.171492909789468, - "c6": 1.3779790754171153, - "c7": 1.4676123220867494 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.1359223300970873, + "c3": 1.779935275080906, + "c4": 1.4239482200647249, + "c5": 1.0679611650485437, + "c6": 0.7119741100323624, + "c7": 0.3559870550161812 }, "rgb": [238, 201, 159] }, @@ -218436,23 +218436,23 @@ "year": 1769, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -25.98287455186192, - "c2": 9.943055758189086, - "c3": 25.33936322193537, - "c4": -20.48833657223581, - "c5": -5.3939161388045775, - "c6": 28.672443031728672, - "c7": 12.80150260798371 + "points": { + "c1": -26.34370656657299, + "c2": 26.650457085165623, + "c3": -15.350140926276374, + "c4": 14.45438851296927, + "c5": -1.5900385199889548, + "c6": 17.879769305492854, + "c7": -29.298625651722176 }, - "vertexSeeds": { - "c1": 7.415942706657063, - "c2": 7.583968893671658, - "c3": 7.617642735266469, - "c4": 7.596446493125827, - "c5": 7.4324424012314925, - "c6": 7.488053864543733, - "c7": 7.309596150106809 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490981, + "c3": 9.47757743874248, + "c4": 7.582061950993981, + "c5": 5.686546463245479, + "c6": 3.7910309754970015, + "c7": 1.8955154877485008 }, "rgb": [58, 15, 49] }, @@ -218463,23 +218463,23 @@ "year": 1770, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 3.9460810687312886, - "c2": 31.263370947903354, - "c3": 34.044719941078014, - "c4": -24.20291998723856, - "c5": -11.936961830703819, - "c6": -20.09634370037038, - "c7": 12.11197741622889 + "points": { + "c1": 18.690971172181946, + "c2": -7.340087552855088, + "c3": 22.653427798231974, + "c4": -17.548332418911954, + "c5": 25.812171195738415, + "c6": 32.41836465848037, + "c7": -15.668083447901974 }, - "vertexSeeds": { - "c1": 2.760215951966516, - "c2": 2.845636538765078, - "c3": 2.824655078732717, - "c4": 2.5662062337106666, - "c5": 2.8258708330509212, - "c6": 2.7089291513154734, - "c7": 2.6865391233673304 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [86, 146, 138] }, @@ -218490,23 +218490,23 @@ "year": 1769, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -19.202228024232596, - "c2": 28.986622401912133, - "c3": -16.30429983382615, - "c4": 11.693458472520067, - "c5": -13.662056257582812, - "c6": -23.862641094638978, - "c7": -8.43086471813396 + "points": { + "c1": -29.1975787339346, + "c2": -24.184709177422924, + "c3": -6.908293973069412, + "c4": -7.4828961286217, + "c5": -21.131422945041226, + "c6": -18.62828217861412, + "c7": 7.064681232648837 }, - "vertexSeeds": { - "c1": 9.170537142385966, - "c2": 9.18197929957774, - "c3": 9.401167961016101, - "c4": 8.959460953264037, - "c5": 9.169303567681927, - "c6": 9.086689836719748, - "c7": 8.868715133852593 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909856, + "c3": 11.442441054091553, + "c4": 9.153952843273231, + "c5": 6.865464632454928, + "c6": 4.576976421636625, + "c7": 2.288488210818303 }, "rgb": [86, 146, 138] }, @@ -218517,23 +218517,23 @@ "year": 1770, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 19.453177009413587, - "c2": -27.66928755878819, - "c3": 34.0310940792897, - "c4": -12.46283970554147, - "c5": 38.61281583771989, - "c6": 0.6799721494079805, - "c7": -1.0649398696890628 + "points": { + "c1": -32.86431952788908, + "c2": -40.677368296463094, + "c3": -2.115188935121168, + "c4": -3.1135448488485835, + "c5": -10.47913990667507, + "c6": -14.663019092696462, + "c7": -31.95010206258435 }, - "vertexSeeds": { - "c1": 6.511104632441026, - "c2": 6.543995034942883, - "c3": 5.992763254121992, - "c4": 6.937361112053385, - "c5": 7.114466348549858, - "c6": 6.6306438159047065, - "c7": 6.219215510083136 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [222, 0, 59] }, @@ -218544,23 +218544,23 @@ "year": 1769, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": 9.118867471774834, - "c2": 8.237267000507277, - "c3": -2.699105056506337, - "c4": -9.642381186575564, - "c5": -19.249606953426838, - "c6": -16.345447525843362, - "c7": 18.317775814627257 + "points": { + "c1": 20.065967161214356, + "c2": -15.931061854367053, + "c3": 6.576162655689117, + "c4": -13.65913677242255, + "c5": -12.07486545914638, + "c6": -20.43897875605063, + "c7": 21.266369190745127 }, - "vertexSeeds": { - "c1": 2.895077720207254, - "c2": 2.895077720207254, - "c3": 2.895077720207254, - "c4": 2.895077720207254, - "c5": 2.895077720207254, - "c6": 2.895077720207254, - "c7": 2.895077720207254 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -218571,23 +218571,23 @@ "year": 1770, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": 22.377161886274422, - "c2": -21.24111471957499, - "c3": 0.03135879619458137, - "c4": -21.51885477732982, - "c5": 29.384154413329256, - "c6": -18.683266205284642, - "c7": -30.61704052968945 + "points": { + "c1": 25.035266437828923, + "c2": -42.53577476225144, + "c3": 13.555994116602804, + "c4": 37.585110726908596, + "c5": -49.56384142065498, + "c6": -32.42503257145036, + "c7": 49.886810713976516 }, - "vertexSeeds": { - "c1": 5.564290510515507, - "c2": 5.567925201462587, - "c3": 5.3020453902250875, - "c4": 5.392157544095619, - "c5": 5.666314248412922, - "c6": 5.416755152065482, - "c7": 5.521455971570841 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066567, + "c3": 6.93481276005548, + "c4": 5.547850208044378, + "c5": 4.1608876560332915, + "c6": 2.773925104022189, + "c7": 1.3869625520110869 }, "rgb": [238, 201, 159] }, @@ -218598,23 +218598,23 @@ "year": 1770, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -37.778533506970206, - "c2": 2.3548333012334197, - "c3": 15.427056610250062, - "c4": -26.2225930532097, - "c5": -37.09111977503156, - "c6": -18.461183377835848, - "c7": 33.50423424826373 + "points": { + "c1": 8.585429602428121, + "c2": 32.90489558739934, + "c3": -13.561393910234717, + "c4": -21.390169551261987, + "c5": -0.8554562397081966, + "c6": 31.830836434717327, + "c7": 25.032701237713752 }, - "vertexSeeds": { - "c1": 3.5530099214591453, - "c2": 3.5185524782602102, - "c3": 3.5896082049492395, - "c4": 3.7824940776545097, - "c5": 3.6092553337504323, - "c6": 3.7335676704651792, - "c7": 3.520254565439167 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304204, + "c4": 3.7540453074433624, + "c5": 2.8155339805825275, + "c6": 1.8770226537216852, + "c7": 0.9385113268608426 }, "rgb": [77, 76, 132] }, @@ -218625,23 +218625,23 @@ "year": 1770, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": 21.372795508495486, - "c2": 13.12209323076965, - "c3": -39.39699987747591, - "c4": -32.766397533119154, - "c5": 9.967691955238301, - "c6": -8.578724210127632, - "c7": -36.78840706101682 + "points": { + "c1": 23.26858971956227, + "c2": -28.515421109928415, + "c3": -6.414550751922199, + "c4": 44.611113290584655, + "c5": -13.115329520300229, + "c6": -49.88285954607752, + "c7": 31.56232785166148 }, - "vertexSeeds": { - "c1": 9.927732585692047, - "c2": 10.93398629889443, - "c3": 10.321283046354127, - "c4": 10.016496363159646, - "c5": 10.751490914818003, - "c6": 11.795256162145458, - "c7": 10.523761210528106 + "offsets": { + "c1": 19.77346278317152, + "c2": 16.948682385575584, + "c3": 14.12390198797965, + "c4": 11.299121590383734, + "c5": 8.474341192787797, + "c6": 5.649560795191862, + "c7": 2.824780397595925 }, "rgb": [77, 76, 132] }, @@ -218652,23 +218652,23 @@ "year": 1770, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -31.79188618176613, - "c2": 10.420340488618045, - "c3": -23.66429832787086, - "c4": -36.203128757329964, - "c5": 10.212625510826932, - "c6": 27.353849097444566, - "c7": -28.790381745791358 + "points": { + "c1": -31.261573804214095, + "c2": 36.341160959265, + "c3": -24.903515261507223, + "c4": -11.65603950214097, + "c5": 14.476040023823238, + "c6": -3.492851175854021, + "c7": -4.5489567901486865 }, - "vertexSeeds": { - "c1": 6.6884292035823485, - "c2": 6.606372285156968, - "c3": 6.5699456161714105, - "c4": 6.5527152907911494, - "c5": 6.503423147514757, - "c6": 6.497610875078238, - "c7": 6.582302775336798 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077653, + "c3": 8.090614886731398, + "c4": 6.472491909385102, + "c5": 4.854368932038848, + "c6": 3.236245954692551, + "c7": 1.6181229773462538 }, "rgb": [222, 0, 59] }, @@ -218679,23 +218679,23 @@ "year": 1770, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -4.1505287065446055, - "c2": -7.042356310186818, - "c3": 15.799347503046874, - "c4": -5.1610084232556375, - "c5": 28.681565548027606, - "c6": -11.367902803981377, - "c7": 39.05573158675699 + "points": { + "c1": 10.84245979673522, + "c2": -38.36218436452735, + "c3": 12.939069951860247, + "c4": 24.02425765503901, + "c5": 32.36534446641521, + "c6": 37.14014470667193, + "c7": -6.386495078538545 }, - "vertexSeeds": { - "c1": 5.387910325380052, - "c2": 5.982525317531174, - "c3": 6.178094173251509, - "c4": 6.590906418404556, - "c5": 6.529065080332014, - "c6": 6.827623417663343, - "c7": 5.854055932562216 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479888, + "c3": 8.321775312066576, + "c4": 6.65742024965326, + "c5": 4.993065187239944, + "c6": 3.3287101248266278, + "c7": 1.664355062413316 }, "rgb": [222, 0, 59] }, @@ -218706,23 +218706,23 @@ "year": 1770, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 2.0767052249383795, - "c2": 2.010050332181457, - "c3": 20.799975603703196, - "c4": 5.205441052553894, - "c5": 3.5095354859338954, - "c6": 34.78986010823406, - "c7": 13.164641682401495 + "points": { + "c1": -27.347377228010288, + "c2": -8.235812824359982, + "c3": -43.64140042413401, + "c4": -16.270336645779324, + "c5": -10.760790245219667, + "c6": 34.59697602525892, + "c7": -23.92137177634206 }, - "vertexSeeds": { - "c1": 1.162936061771339, - "c2": 1.0898796783021025, - "c3": 1.1238054401514086, - "c4": 1.157965932842711, - "c5": 1.1356985552177339, - "c6": 1.201735736975177, - "c7": 1.12952565158063 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742024, + "c3": 1.4794267221451691, + "c4": 1.1835413777161339, + "c5": 0.8876560332871004, + "c6": 0.5917706888580669, + "c7": 0.29588534442903347 }, "rgb": [58, 15, 49] }, @@ -218733,23 +218733,23 @@ "year": 1769, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -2.5254708025772032, - "c2": 5.440120898724643, - "c3": -18.15808545403111, - "c4": 1.7939469761530589, - "c5": -15.963394455253182, - "c6": 19.181749109002208, - "c7": -3.003192053412164 + "points": { + "c1": -18.419290466403687, + "c2": -26.975584846587722, + "c3": 6.112120559556178, + "c4": 7.678948824076134, + "c5": 3.742936748966585, + "c6": 22.18401078783943, + "c7": 2.848764247458192 }, - "vertexSeeds": { - "c1": 6.474214521875393, - "c2": 5.678357524099182, - "c3": 6.673299974425762, - "c4": 6.5824501851290655, - "c5": 6.305568543458998, - "c6": 5.999316224550863, - "c7": 5.993252225403948 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077674, + "c3": 8.090614886731391, + "c4": 6.472491909385117, + "c5": 4.854368932038832, + "c6": 3.2362459546925586, + "c7": 1.6181229773462846 }, "rgb": [86, 146, 138] }, @@ -218760,23 +218760,23 @@ "year": 1770, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 7.3346189572695195, - "c2": 8.732701241771785, - "c3": 23.344258425213113, - "c4": 18.164515417128996, - "c5": 4.025743996851922, - "c6": -27.607998809531168, - "c7": -5.473594755748877 + "points": { + "c1": -40.249687558502934, + "c2": 16.354817381546873, + "c3": 10.252809865504183, + "c4": -39.56327502486744, + "c5": 4.037257223256063, + "c6": -36.15363211242705, + "c7": 24.910258572579878 }, - "vertexSeeds": { - "c1": 8.201571975530193, - "c2": 8.205820992442336, - "c3": 8.042986833435014, - "c4": 8.262144270515613, - "c5": 7.965490133648219, - "c6": 8.27756513451922, - "c7": 8.269809460170965 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335645, + "c3": 9.963014331946372, + "c4": 7.970411465557096, + "c5": 5.9778085991678225, + "c6": 3.985205732778548, + "c7": 1.992602866389274 }, "rgb": [238, 201, 159] }, @@ -218787,23 +218787,23 @@ "year": 1770, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": 18.762637782717917, - "c2": 38.5120424680529, - "c3": -29.778492655980084, - "c4": 47.695802707489165, - "c5": 27.806889668698844, - "c6": -48.570859701739536, - "c7": -1.5558149742055747 + "points": { + "c1": -33.80474587924889, + "c2": 5.78697913374976, + "c3": -20.378406632780397, + "c4": -43.74794885040639, + "c5": 13.10093102773601, + "c6": 0.8085234689002618, + "c7": 45.32338761956626 }, - "vertexSeeds": { - "c1": 2.5901294819436504, - "c2": 2.8196626538220486, - "c3": 2.790252900069578, - "c4": 2.7861455335039116, - "c5": 2.787965038528141, - "c6": 2.617612744427944, - "c7": 2.7668943737624883 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952843, + "c3": 3.4211742949607027, + "c4": 2.736939435968562, + "c5": 2.0527045769764216, + "c6": 1.368469717984281, + "c7": 0.6842348589921405 }, "rgb": [222, 0, 59] }, @@ -218814,23 +218814,23 @@ "year": 1769, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -23.54826441901318, - "c2": -3.5630883178577264, - "c3": 30.130462170140362, - "c4": 16.64494755834611, - "c5": -29.03231701646375, - "c6": -31.682604348032665, - "c7": 11.831460167901028 + "points": { + "c1": 5.9649844166026185, + "c2": -30.122179146309755, + "c3": 21.355676154916942, + "c4": 5.031596746939741, + "c5": -11.160355396402714, + "c6": -35.82197472486513, + "c7": 23.869642384218494 }, - "vertexSeeds": { - "c1": 3.3867649272000553, - "c2": 3.451588347631351, - "c3": 3.2091157203803364, - "c4": 3.425134046199073, - "c5": 3.157882759281177, - "c6": 3.428628757336145, - "c7": 3.3263604966589644 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400835, + "c3": 4.253351826167357, + "c4": 3.4026814609338873, + "c5": 2.5520110957004176, + "c6": 1.7013407304669477, + "c7": 0.8506703652334697 }, "rgb": [222, 0, 59] }, @@ -218841,23 +218841,23 @@ "year": 1769, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -29.09750502720451, - "c2": -22.61692227840772, - "c3": 16.54377552950544, - "c4": 27.465385302393408, - "c5": 14.93977304762646, - "c6": 19.781563057358404, - "c7": -25.340762447625583 + "points": { + "c1": -18.215668571480705, + "c2": -23.273446476859952, + "c3": -15.817632142887614, + "c4": 24.631514611262794, + "c5": -5.714241632916284, + "c6": 16.286595039108278, + "c7": 6.980656815226439 }, - "vertexSeeds": { - "c1": 4.141335575138763, - "c2": 4.077379151972015, - "c3": 4.468836931043195, - "c4": 3.921933930823324, - "c5": 4.643500929426357, - "c6": 4.612676920733557, - "c7": 4.071610340271594 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653259, + "c3": 5.547850208044384, + "c4": 4.438280166435508, + "c5": 3.3287101248266326, + "c6": 2.2191400832177566, + "c7": 1.1095700416088812 }, "rgb": [222, 0, 59] }, @@ -218868,23 +218868,23 @@ "year": 1770, "resistanceReported": false, "duration": 40435200, - "curveSeeds": { - "c1": -35.53036307256724, - "c2": 54.27570438401026, - "c3": 43.959770918067825, - "c4": 0.6787683825726916, - "c5": -26.818472105638953, - "c6": 18.888840350842138, - "c7": -41.972119885000055 + "points": { + "c1": -3.038103499488038, + "c2": -34.128064841929884, + "c3": -27.405083244796558, + "c4": 50.661407808915236, + "c5": -6.36439978057075, + "c6": -17.56873648488078, + "c7": -41.37355671514759 }, - "vertexSeeds": { - "c1": 4.322598346437355, - "c2": 4.083126430294157, - "c3": 3.806346785405833, - "c4": 3.824019571852847, - "c5": 4.2646645144028685, - "c6": 3.4670885631993795, - "c7": 4.051363382847195 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452148, + "c3": 5.432269995376791, + "c4": 4.345815996301434, + "c5": 3.259361997226074, + "c6": 2.1729079981507136, + "c7": 1.0864539990753568 }, "rgb": [58, 15, 49] }, @@ -218895,23 +218895,23 @@ "year": 1769, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 21.766666900748156, - "c2": 22.045575916149616, - "c3": 5.66229685998632, - "c4": 0.5572627510528321, - "c5": 7.354332277775207, - "c6": 20.089679943775906, - "c7": 24.13617600221965 + "points": { + "c1": -24.8134312991132, + "c2": -34.75419338073812, + "c3": -21.058351490429178, + "c4": -17.77865541127424, + "c5": -23.78839941523409, + "c6": -32.422188996213784, + "c7": -32.84200521764947 }, - "vertexSeeds": { - "c1": 2.074643904501756, - "c2": 2.1190244869914476, - "c3": 2.045820130605154, - "c4": 2.2278561885693327, - "c5": 2.212828324544824, - "c6": 1.9935578708002575, - "c7": 2.0508659488222745 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.217753120665743, + "c3": 2.6814609338881166, + "c4": 2.145168747110494, + "c5": 1.6088765603328714, + "c6": 1.0725843735552492, + "c7": 0.5362921867776225 }, "rgb": [86, 146, 138] }, @@ -218922,23 +218922,23 @@ "year": 1770, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -3.442159359185453, - "c2": 8.824784734102252, - "c3": -4.456463145993709, - "c4": 22.538960747549872, - "c5": 11.151846842993699, - "c6": -27.16711710960046, - "c7": -35.6997916968014 + "points": { + "c1": -38.23160819009883, + "c2": 39.11927849453634, + "c3": -42.79160212444806, + "c4": 20.17240898889448, + "c5": -2.9733066261555265, + "c6": -18.030905713683882, + "c7": 10.263706461696394 }, - "vertexSeeds": { - "c1": 3.124177118027352, - "c2": 3.221933343606107, - "c3": 3.085061000535687, - "c4": 3.0588724473262427, - "c5": 3.054272999420492, - "c6": 3.1945846058919987, - "c7": 3.127671325869699 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -218949,23 +218949,23 @@ "year": 1770, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": -3.4149041875713095, - "c2": -30.57116444769824, - "c3": 21.721555787649258, - "c4": 41.376879946546545, - "c5": 48.005778021749286, - "c6": 52.19837559299271, - "c7": 12.820793220154151 + "points": { + "c1": -12.332733389689942, + "c2": -27.91215393057968, + "c3": 35.79808568240359, + "c4": 44.89035269073808, + "c5": -42.35116627724429, + "c6": -39.192220343354776, + "c7": 0.10069943038129736 }, - "vertexSeeds": { - "c1": 5.092704610152733, - "c2": 5.065444627837979, - "c3": 5.274456132246084, - "c4": 5.6492720308233455, - "c5": 4.925426237102773, - "c6": 5.6176672270621895, - "c7": 4.629770426595215 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802588998, + "c4": 5.566343042071194, + "c5": 4.174757281553401, + "c6": 2.783171521035597, + "c7": 1.3915857605177986 }, "rgb": [222, 0, 59] }, @@ -218976,23 +218976,23 @@ "year": 1770, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -36.01780450109847, - "c2": 30.387752795798654, - "c3": 20.575327449572363, - "c4": -44.52376990053755, - "c5": -6.932078043056116, - "c6": 17.462235762617205, - "c7": -18.668833044628265 + "points": { + "c1": 36.89236138745073, + "c2": -28.732760509282606, + "c3": 14.446022024759309, + "c4": 17.43698054159227, + "c5": -28.00939856467324, + "c6": 11.85684963481117, + "c7": -5.4483641161723 }, - "vertexSeeds": { - "c1": 6.9818387344676776, - "c2": 6.79904953289549, - "c3": 6.718310400535293, - "c4": 6.97935542032126, - "c5": 6.702144809916557, - "c6": 6.16223492818629, - "c7": 6.500842055083304 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882104, + "c3": 8.55293573740175, + "c4": 6.842348589921407, + "c5": 5.131761442441052, + "c6": 3.421174294960697, + "c7": 1.710587147480355 }, "rgb": [58, 15, 49] }, @@ -219003,23 +219003,23 @@ "year": 1769, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 8.386546544526674, - "c2": -5.314807246697264, - "c3": 1.941843086398432, - "c4": -24.41889872309018, - "c5": 13.712697422605878, - "c6": -15.056866693059106, - "c7": -16.536446990585976 + "points": { + "c1": 29.89297601086772, + "c2": 24.368633411313134, + "c3": 23.256604509465888, + "c4": 19.50525589489726, + "c5": -4.106588212353419, + "c6": -13.384279562984265, + "c7": 6.814451403009997 }, - "vertexSeeds": { - "c1": 3.783905625896489, - "c2": 3.7096810767227493, - "c3": 3.1924816574594104, - "c4": 3.2261834116993726, - "c5": 3.327633817918043, - "c6": 3.405895207025956, - "c7": 3.5344969196557154 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963938, + "c3": 4.5769764216366156, + "c4": 3.6615811373092924, + "c5": 2.746185852981969, + "c6": 1.8307905686546462, + "c7": 0.9153952843273231 }, "rgb": [58, 15, 49] }, @@ -219030,23 +219030,23 @@ "year": 1769, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": 8.478151623745397, - "c2": 12.456145785503523, - "c3": 2.154593908058448, - "c4": -4.1499278629209915, - "c5": -12.641484010100513, - "c6": 6.794662148225989, - "c7": 3.4833058479007626 + "points": { + "c1": -8.33763989029291, + "c2": 21.031081218274068, + "c3": -15.187351055455572, + "c4": -20.99663881531591, + "c5": 9.186526646340479, + "c6": -14.66867158431802, + "c7": 16.382408886950294 }, - "vertexSeeds": { - "c1": 6.460996657038962, - "c2": 6.120265292708998, - "c3": 6.660448869970689, - "c4": 6.3311808514859065, - "c5": 6.54521010433635, - "c6": 6.308087020731232, - "c7": 6.482320297376863 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957007, + "c3": 8.021266759130842, + "c4": 6.417013407304659, + "c5": 4.812760055478495, + "c6": 3.2085067036523296, + "c7": 1.6042533518261648 }, "rgb": [77, 76, 132] }, @@ -219057,23 +219057,23 @@ "year": 1769, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -2.076099527421885, - "c2": -16.92250862034264, - "c3": 0.09926379910582028, - "c4": 21.461147098428953, - "c5": 18.765613237450083, - "c6": -15.232572840892622, - "c7": 20.880265531006884 + "points": { + "c1": 19.137406376357127, + "c2": 10.254893695755406, + "c3": -11.660615096721827, + "c4": -23.63727694315058, + "c5": 19.612760484632027, + "c6": 24.494897334231098, + "c7": 12.121909836714877 }, - "vertexSeeds": { - "c1": 5.990350012113446, - "c2": 6.076517459860626, - "c3": 6.116333480652908, - "c4": 6.073551075228009, - "c5": 5.960410460516574, - "c6": 6.102910992732734, - "c7": 5.8493423023363365 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871026, + "c3": 7.39713361072584, + "c4": 5.9177068885806845, + "c5": 4.438280166435499, + "c6": 2.9588534442903422, + "c7": 1.4794267221451562 }, "rgb": [77, 76, 132] }, @@ -219084,23 +219084,23 @@ "year": 1770, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": -12.178536225851971, - "c2": -30.485729751808844, - "c3": 41.965587173070865, - "c4": 44.4843309821056, - "c5": 17.477819508335607, - "c6": 26.724706495829587, - "c7": -21.025170825603382 + "points": { + "c1": 30.645780606260196, + "c2": 30.152824744620382, + "c3": -23.33113139612925, + "c4": 8.61527450388337, + "c5": 36.75168638386919, + "c6": -23.818436929615512, + "c7": 1.0389094512086388 }, - "vertexSeeds": { - "c1": 6.568370865045028, - "c2": 6.226194617299056, - "c3": 6.552187743120707, - "c4": 6.574194345777846, - "c5": 6.130838050395194, - "c6": 6.507535040743853, - "c7": 6.8336011650365975 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163657, + "c3": 8.714748035136386, + "c4": 6.971798428109104, + "c5": 5.228848821081834, + "c6": 3.485899214054552, + "c7": 1.7429496070272814 }, "rgb": [238, 201, 159] }, @@ -219111,23 +219111,23 @@ "year": 1769, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -0.5772999913844998, - "c2": 15.277751067140962, - "c3": 17.69686863497219, - "c4": 1.679591790587743, - "c5": 31.660407985295237, - "c6": 16.332861561591812, - "c7": 17.98270473541099 + "points": { + "c1": 5.771771159294737, + "c2": 1.8101858826831858, + "c3": -16.485290605393498, + "c4": -14.963520523813258, + "c5": -2.722017842540783, + "c6": -22.55488070403296, + "c7": 27.31720088700152 }, - "vertexSeeds": { - "c1": 6.668343264362686, - "c2": 6.789492073817144, - "c3": 7.017866757255374, - "c4": 7.487287298313855, - "c5": 6.556686182485034, - "c6": 7.833573372628012, - "c7": 7.010181139394278 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531207, + "c3": 9.500693481276006, + "c4": 7.600554785020805, + "c5": 5.7004160887656035, + "c6": 3.8002773925104023, + "c7": 1.9001386962552012 }, "rgb": [238, 201, 159] }, @@ -219138,23 +219138,23 @@ "year": 1770, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -2.331199420322143, - "c2": -32.66090264402999, - "c3": -22.109193821155774, - "c4": 35.722377597450645, - "c5": 4.3054683092385915, - "c6": 30.998688269417315, - "c7": -24.407084302276893 + "points": { + "c1": -26.48454898192228, + "c2": -15.674411391620769, + "c3": -3.723729141548297, + "c4": 4.574346888672736, + "c5": 7.152584825417513, + "c6": 22.802269467014888, + "c7": -29.066860802249174 }, - "vertexSeeds": { - "c1": 4.8524000850607925, - "c2": 4.896936705963095, - "c3": 4.931417153450868, - "c4": 4.672161172458788, - "c5": 5.284552131114228, - "c6": 5.055257200402053, - "c7": 4.836826465339638 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -219165,23 +219165,23 @@ "year": 1770, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -28.64899044835433, - "c2": -16.715939794497665, - "c3": -11.390098601866082, - "c4": 30.18628836612949, - "c5": 14.54901413761855, - "c6": 13.280288840925152, - "c7": -29.99777602691483 + "points": { + "c1": 10.978890917261403, + "c2": -31.0288931007753, + "c3": -30.930130234188997, + "c4": -23.456969340385065, + "c5": 11.572346857045986, + "c6": 15.586593587908794, + "c7": 14.67336773194117 }, - "vertexSeeds": { - "c1": 6.957447173757625, - "c2": 7.33237817130852, - "c3": 7.831054282166267, - "c4": 6.854620596694055, - "c5": 6.858542724612938, - "c6": 6.962885670692043, - "c7": 7.819673014359404 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289876, + "c3": 9.361997226074896, + "c4": 7.489597780859917, + "c5": 5.617198335644938, + "c6": 3.7447988904299585, + "c7": 1.8723994452149793 }, "rgb": [77, 76, 132] }, @@ -219192,23 +219192,23 @@ "year": 1770, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 19.221149794517217, - "c2": -8.807158697386399, - "c3": 9.915401064579747, - "c4": -24.35697432157422, - "c5": -39.56594755396164, - "c6": -17.785755445059166, - "c7": 45.90543159512964 + "points": { + "c1": 14.349502792469373, + "c2": -8.821484904326823, + "c3": -28.316518327243624, + "c4": 32.65567308172699, + "c5": 36.91537235066964, + "c6": 4.7570613141003975, + "c7": -42.964784079138866 }, - "vertexSeeds": { - "c1": 8.413212435233161, - "c2": 8.413212435233161, - "c3": 8.413212435233161, - "c4": 8.413212435233161, - "c5": 8.413212435233161, - "c6": 8.413212435233161, - "c7": 8.413212435233161 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -219219,23 +219219,23 @@ "year": 1769, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -20.799785740139132, - "c2": 16.048077160149816, - "c3": 6.838794135505623, - "c4": -28.686249380852118, - "c5": -24.69722214888354, - "c6": 14.907127369080392, - "c7": 17.915067494898537 + "points": { + "c1": 25.35520813615718, + "c2": -29.22889339193543, + "c3": 26.532797699867437, + "c4": 13.396489234162402, + "c5": 27.901091113393896, + "c6": -29.559903557301396, + "c7": 12.678562853341937 }, - "vertexSeeds": { - "c1": 7.513948827989088, - "c2": 7.517590812029378, - "c3": 7.54199953643974, - "c4": 7.396838100248387, - "c5": 7.148014194415745, - "c6": 7.166864153225767, - "c7": 7.16132006289892 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686552, + "c3": 9.01525658807212, + "c4": 7.2122052704577015, + "c5": 5.409153952843269, + "c6": 3.6061026352288508, + "c7": 1.8030513176144323 }, "rgb": [58, 15, 49] }, @@ -219246,23 +219246,23 @@ "year": 1769, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 27.93593250630622, - "c2": 14.385385876133373, - "c3": 22.459755003428878, - "c4": -6.991617502709875, - "c5": 1.7686886878523644, - "c6": -6.41522171590039, - "c7": 13.80509029935477 + "points": { + "c1": -22.967300460827758, + "c2": 26.92630582116271, + "c3": -17.53918963436113, + "c4": 4.769064336209471, + "c5": -14.732345156924932, + "c6": 21.38997437884009, + "c7": 29.722369826995862 }, - "vertexSeeds": { - "c1": 4.585873406546958, - "c2": 4.66329660632136, - "c3": 4.216414503217515, - "c4": 4.160413581181135, - "c5": 4.522949841875935, - "c6": 4.542555466487083, - "c7": 4.33635255968756 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -219273,23 +219273,23 @@ "year": 1770, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -17.774501839458598, - "c2": -5.225008448364569, - "c3": 28.62988275456162, - "c4": -22.68590541608075, - "c5": 20.028220549984916, - "c6": 7.505064592547647, - "c7": 27.27094407335578 + "points": { + "c1": -16.9251989334728, + "c2": -21.62100342055829, + "c3": 15.108468891416841, + "c4": -35.05543052970515, + "c5": -33.106254141503186, + "c6": -7.867365522681688, + "c7": 7.37586513012878 }, - "vertexSeeds": { - "c1": 5.981802547816584, - "c2": 5.942260304172499, - "c3": 5.902004296912804, - "c4": 5.945671381540683, - "c5": 5.970488663152937, - "c6": 5.950341364819852, - "c7": 6.002499890227263 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549221, + "c3": 7.212205270457722, + "c4": 5.769764216366166, + "c5": 4.3273231622746104, + "c6": 2.8848821081831115, + "c7": 1.4424410540915558 }, "rgb": [238, 201, 159] }, @@ -219300,23 +219300,23 @@ "year": 1770, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 3.07061553377207, - "c2": 4.562639613165821, - "c3": -15.147686542993995, - "c4": -13.806305516568123, - "c5": -28.45623266453382, - "c6": -5.405671507777647, - "c7": -20.42535594160453 + "points": { + "c1": -6.038422719335891, + "c2": -16.479047902094393, + "c3": 1.3610099615956273, + "c4": -25.76846711709695, + "c5": 28.14032276531578, + "c6": 47.0239992757891, + "c7": 27.1751137897326 }, - "vertexSeeds": { - "c1": 7.804533960411611, - "c2": 7.8996742877486685, - "c3": 7.751328224211679, - "c4": 7.81990120514392, - "c5": 7.7625015316479296, - "c6": 7.926972453569443, - "c7": 7.778391976078146 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531232, + "c3": 9.500693481275997, + "c4": 7.6005547850208215, + "c5": 5.700416088765587, + "c6": 3.8002773925104107, + "c7": 1.9001386962551763 }, "rgb": [86, 146, 138] }, @@ -219327,23 +219327,23 @@ "year": 1770, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": -16.24641034553966, - "c2": -12.362185461254285, - "c3": 16.4221206939946, - "c4": 26.02576281586883, - "c5": -8.928466397142138, - "c6": -32.82598932565824, - "c7": -15.044850757151849 + "points": { + "c1": 13.770527004378401, + "c2": 9.17913143463268, + "c3": -48.42516987874126, + "c4": 24.885313574148213, + "c5": -16.068266631858137, + "c6": 47.198128577983795, + "c7": 29.64173407337779 }, - "vertexSeeds": { - "c1": 6.737875784464942, - "c2": 6.648825979418392, - "c3": 6.5477384499139175, - "c4": 6.336738193247529, - "c5": 6.778070743680865, - "c6": 7.309821434137594, - "c7": 6.304830635635602 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.81830790568655, + "c3": 9.01525658807212, + "c4": 7.2122052704577015, + "c5": 5.40915395284327, + "c6": 3.6061026352288508, + "c7": 1.8030513176144196 }, "rgb": [86, 146, 138] }, @@ -219354,23 +219354,23 @@ "year": 1770, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -22.35520986539244, - "c2": -29.237376322154528, - "c3": 23.96905935943584, - "c4": 3.052905187902603, - "c5": 20.995487938867477, - "c6": -26.746460476934075, - "c7": -25.79710813941295 + "points": { + "c1": 32.1848513630828, + "c2": 6.0966492840510185, + "c3": -6.388969141897327, + "c4": 33.145694179177895, + "c5": 23.608252369318038, + "c6": -25.177850726780058, + "c7": -33.38375923853502 }, - "vertexSeeds": { - "c1": 5.619733700527228, - "c2": 5.979250024982509, - "c3": 5.6358534566434235, - "c4": 5.914962671866286, - "c5": 5.601506587277526, - "c6": 6.157838795446493, - "c7": 5.3733748224779205 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830796, + "c3": 7.374017568192323, + "c4": 5.899214054553864, + "c5": 4.4244105409153915, + "c6": 2.949607027276932, + "c7": 1.4748035136384592 }, "rgb": [58, 15, 49] }, @@ -219381,23 +219381,23 @@ "year": 1770, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -21.624069913897046, - "c2": -14.954584198982069, - "c3": -16.152996237163908, - "c4": -7.134437173661283, - "c5": 23.721108961824562, - "c6": 1.013343780695557, - "c7": -17.202238354520055 + "points": { + "c1": 19.514206920978367, + "c2": 1.6593815424395757, + "c3": -13.250086883826082, + "c4": -19.849671696429173, + "c5": 15.428223446927753, + "c6": 11.453900516684612, + "c7": -12.245928363854247 }, - "vertexSeeds": { - "c1": 5.885659294357886, - "c2": 5.566476686405197, - "c3": 5.704779611282178, - "c4": 5.900371557718117, - "c5": 5.505174293678027, - "c6": 5.1692295558607135, - "c7": 5.222080839801859 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.93203883495145, + "c3": 7.443365695792879, + "c4": 5.954692556634307, + "c5": 4.466019417475725, + "c6": 2.9773462783171434, + "c7": 1.4886731391585717 }, "rgb": [238, 201, 159] }, @@ -219408,23 +219408,23 @@ "year": 1770, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -14.729410916127847, - "c2": -29.404398571660188, - "c3": 30.022480083733313, - "c4": -27.662027585163642, - "c5": 22.520210149168996, - "c6": 13.681203928979421, - "c7": 6.757241573804038 + "points": { + "c1": -25.861457185498182, + "c2": 9.684332910294685, + "c3": -4.498063523944463, + "c4": -3.6185060214432028, + "c5": -34.797240256842294, + "c6": -30.458043392063377, + "c7": -25.375900965918532 }, - "vertexSeeds": { - "c1": 4.503050871740396, - "c2": 4.117512313379471, - "c3": 4.364722423981543, - "c4": 4.018579762901612, - "c5": 4.10672101833276, - "c6": 4.096568009927787, - "c7": 4.0551098368396685 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [58, 15, 49] }, @@ -219435,23 +219435,23 @@ "year": 1770, "resistanceReported": false, "duration": 39052800, - "curveSeeds": { - "c1": -32.3092707934123, - "c2": 23.491724803414755, - "c3": 51.92251504547174, - "c4": 6.481065873439938, - "c5": -21.57939993058852, - "c6": 5.309643950718346, - "c7": -29.104914461844242 + "points": { + "c1": -1.1386294522749125, + "c2": -16.528833226871015, + "c3": 8.972102428488526, + "c4": 27.68473394283835, + "c5": 20.170206571258873, + "c6": 13.761503110947757, + "c7": -47.680457130546806 }, - "vertexSeeds": { - "c1": 3.2343237963476246, - "c2": 3.1430618200592035, - "c3": 3.02748640540628, - "c4": 3.1830335965241594, - "c5": 3.286719868615077, - "c6": 3.247369543267757, - "c7": 3.189351577147223 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [58, 15, 49] }, @@ -219462,23 +219462,23 @@ "year": 1770, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 38.29480829615281, - "c2": 35.09253595864482, - "c3": 27.076774161882142, - "c4": 32.41239044982224, - "c5": 27.436124324569434, - "c6": -2.390213780230191, - "c7": 9.432963619221475 + "points": { + "c1": 38.95074515781512, + "c2": -26.51444683058768, + "c3": 36.65776628045701, + "c4": -1.101220698693389, + "c5": -8.418814228420018, + "c6": -18.071774553411426, + "c7": 0.6206291998304181 }, - "vertexSeeds": { - "c1": 10.96170958714674, - "c2": 9.454821631166844, - "c3": 6.570912273503185, - "c4": 6.34810829694292, - "c5": 6.824277260546622, - "c6": 7.2601532576690415, - "c7": 9.807506958999369 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.7004160887656, + "c3": 13.083680073971339, + "c4": 10.466944059177068, + "c5": 7.850208044382802, + "c6": 5.233472029588536, + "c7": 2.616736014794266 }, "rgb": [77, 76, 132] }, @@ -219489,23 +219489,23 @@ "year": 1770, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -6.874478408207565, - "c2": 23.638971570032254, - "c3": -5.175499336169832, - "c4": -22.671046472237407, - "c5": -15.598176202525654, - "c6": 27.466029857290543, - "c7": -24.44907554656344 + "points": { + "c1": -11.65503653079448, + "c2": -7.995216633324979, + "c3": 1.8904166151947734, + "c4": -15.774060754674466, + "c5": 3.4222453808959514, + "c6": -19.11987746694231, + "c7": -4.140319158777594 }, - "vertexSeeds": { - "c1": 4.7342133979734875, - "c2": 4.9975635840619725, - "c3": 3.727555171607672, - "c4": 3.88395698488447, - "c5": 5.062184045782188, - "c6": 4.7518196136756075, - "c7": 5.955503379287231 + "offsets": { + "c1": 10, + "c2": 8.57142857142857, + "c3": 7.142857142857141, + "c4": 5.714285714285716, + "c5": 4.2857142857142865, + "c6": 2.8571428571428568, + "c7": 1.428571428571427 }, "rgb": [77, 76, 132] }, @@ -219516,23 +219516,23 @@ "year": 1769, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -3.2447173198874673, - "c2": 22.142417390610703, - "c3": -4.146363683667463, - "c4": -20.599306178520585, - "c5": 6.416655578120757, - "c6": -21.716236503214123, - "c7": -21.840712774076938 + "points": { + "c1": 24.450942434773417, + "c2": 25.048308496028127, + "c3": -22.052918684428718, + "c4": -21.807417605184384, + "c5": 18.554007844854688, + "c6": 24.89098302976877, + "c7": -0.5918932599416102 }, - "vertexSeeds": { - "c1": 0.48555613099200956, - "c2": 0.4674695989699278, - "c3": 0.47570067707236524, - "c4": 0.4713578743124255, - "c5": 0.4586161520643871, - "c6": 0.503341485998053, - "c7": 0.4673746608405364 + "offsets": { + "c1": 0.9385113268608414, + "c2": 0.8044382801664357, + "c3": 0.6703652334720295, + "c4": 0.5362921867776238, + "c5": 0.4022191400832176, + "c6": 0.2681460933888119, + "c7": 0.13407304669440628 }, "rgb": [238, 201, 159] }, @@ -219543,23 +219543,23 @@ "year": 1770, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 6.706437567300753, - "c2": 15.757469753334284, - "c3": -19.44766332868981, - "c4": 39.656372165837276, - "c5": 1.1428792584524174, - "c6": -28.293577627270828, - "c7": 4.184591414491592 + "points": { + "c1": -15.00633817650855, + "c2": 20.07581395204216, + "c3": 3.7003162606508226, + "c4": -14.550848384352623, + "c5": 22.456324771788637, + "c6": -37.42893952497591, + "c7": 18.85724979954773 }, - "vertexSeeds": { - "c1": 4.5813077785525875, - "c2": 4.475148669462259, - "c3": 4.871117066725189, - "c4": 4.514749926399201, - "c5": 4.458476714712463, - "c6": 5.089353858940346, - "c7": 4.494734922203301 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658808, + "c3": 6.1257512713823425, + "c4": 4.9006010171058705, + "c5": 3.675450762829404, + "c6": 2.4503005085529383, + "c7": 1.225150254276472 }, "rgb": [58, 15, 49] }, @@ -219570,23 +219570,23 @@ "year": 1770, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -17.85424395237608, - "c2": 14.61761602652706, - "c3": 25.426559141139045, - "c4": 17.548241113599005, - "c5": -14.124803619786274, - "c6": 29.22846755716764, - "c7": 0.5198639987066294 + "points": { + "c1": -4.470001851373535, + "c2": 31.869056291268386, + "c3": 16.17664634909503, + "c4": 13.41418637204449, + "c5": -7.235432185582397, + "c6": 2.2189428826698716, + "c7": -25.758219569583453 }, - "vertexSeeds": { - "c1": 7.364743267691537, - "c2": 8.04213807709962, - "c3": 7.52245857657058, - "c4": 6.736306480356715, - "c5": 7.2335110219807115, - "c6": 7.831799061622449, - "c7": 7.551171299903948 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [238, 201, 159] }, @@ -219597,23 +219597,23 @@ "year": 1770, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 0.49351479069988, - "c2": 17.125792455433984, - "c3": -5.957120719457684, - "c4": -5.878992757316404, - "c5": 10.598236616984519, - "c6": -0.050147598496337764, - "c7": 4.627994856336091 + "points": { + "c1": 13.332306673308153, + "c2": 13.103185082915068, + "c3": 14.274623096043065, + "c4": 29.89901538468449, + "c5": -22.65837114134498, + "c6": 5.126337476965446, + "c7": -11.920698413623583 }, - "vertexSeeds": { - "c1": 2.274887491593799, - "c2": 2.064779713355247, - "c3": 2.0862416357503695, - "c4": 2.04951417811851, - "c5": 2.1833072684539907, - "c6": 2.0525686834271855, - "c7": 2.1305959646200554 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266304, + "c3": 2.7739251040221893, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.109570041608878, + "c7": 0.5547850208044373 }, "rgb": [86, 146, 138] }, @@ -219624,23 +219624,23 @@ "year": 1770, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": -6.188756114028415, - "c2": 8.34349435600079, - "c3": -38.841515051591145, - "c4": -24.94327711638235, - "c5": -48.90790442782982, - "c6": -29.097340921866373, - "c7": -5.931116711527643 + "points": { + "c1": 19.75026966204451, + "c2": 15.363940181867484, + "c3": -31.231238244184187, + "c4": 35.16986088715769, + "c5": 8.47666085678135, + "c6": 31.000164656421525, + "c7": 33.181447899888475 }, - "vertexSeeds": { - "c1": 2.1986015846885594, - "c2": 2.078785296501882, - "c3": 2.1098634127851477, - "c4": 2.101242554418738, - "c5": 2.1832275958975145, - "c6": 2.1382843433277334, - "c7": 2.034651829394262 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.19001386962552, + "c3": 2.6583448913545986, + "c4": 2.1266759130836834, + "c5": 1.5950069348127625, + "c6": 1.0633379565418417, + "c7": 0.5316689782709209 }, "rgb": [77, 76, 132] }, @@ -219651,23 +219651,23 @@ "year": 1770, "resistanceReported": true, "duration": 23500800, - "curveSeeds": { - "c1": 22.957255946851788, - "c2": -21.167357303285524, - "c3": -4.169734345168848, - "c4": 27.301772973507845, - "c5": 18.837942879506862, - "c6": 19.972075663496746, - "c7": 4.096810049003722 + "points": { + "c1": 0.888324389710462, + "c2": -13.026479497554533, + "c3": 14.003946705310874, + "c4": -5.254745593876841, + "c5": -0.335820874925453, + "c6": -30.16508295231639, + "c7": 20.09147458882599 }, - "vertexSeeds": { - "c1": 4.133896660659708, - "c2": 4.080842075266389, - "c3": 4.639453375497933, - "c4": 4.444851594877071, - "c5": 4.332173159076397, - "c6": 3.687335773395831, - "c7": 3.7022733933206258 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055479, + "c3": 5.779010633379564, + "c4": 4.623208506703652, + "c5": 3.4674063800277377, + "c6": 2.311604253351826, + "c7": 1.1558021266759146 }, "rgb": [86, 146, 138] }, @@ -219678,23 +219678,23 @@ "year": 1770, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 12.31056844605212, - "c2": 3.039428544559751, - "c3": 25.235091949636352, - "c4": 1.8022183866226769, - "c5": -22.790658381891078, - "c6": 7.943599406343832, - "c7": 28.387761178886844 + "points": { + "c1": 7.691903935315512, + "c2": 20.60610785702892, + "c3": 3.058089016403418, + "c4": 22.86174568679969, + "c5": 26.037800083007436, + "c6": -30.52626100027198, + "c7": -10.50277970629034 }, - "vertexSeeds": { - "c1": 7.800667243566415, - "c2": 8.55991825540015, - "c3": 8.2748554695679, - "c4": 7.444976947500602, - "c5": 8.848893817986635, - "c6": 8.143542921353998, - "c7": 7.669262770467922 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743415, + "c3": 10.772075820619515, + "c4": 8.617660656495604, + "c5": 6.463245492371702, + "c6": 4.308830328247802, + "c7": 2.154415164123901 }, "rgb": [222, 0, 59] }, @@ -219705,23 +219705,23 @@ "year": 1770, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -17.597465729343867, - "c2": 12.721598557928985, - "c3": 21.354181252877673, - "c4": 6.407407503744658, - "c5": -1.4765042803178332, - "c6": 12.836080696091905, - "c7": 7.263304175706281 + "points": { + "c1": -21.740426581154363, + "c2": 17.51589731612166, + "c3": 42.72398633921983, + "c4": 37.1631269881942, + "c5": 35.149590289390396, + "c6": -37.61295154528202, + "c7": -30.354446858741447 }, - "vertexSeeds": { - "c1": 2.568484097265069, - "c2": 2.458634685998435, - "c3": 2.594443274045922, - "c4": 2.4961272587988903, - "c5": 2.2503098657308405, - "c6": 2.426495399777087, - "c7": 2.4698297565527847 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.7725381414701804, + "c3": 3.1437817845584837, + "c4": 2.515025427646787, + "c5": 1.8862690707350902, + "c6": 1.2575127138233935, + "c7": 0.6287563569116967 }, "rgb": [222, 0, 59] }, @@ -219732,23 +219732,23 @@ "year": 1770, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 14.112747740435168, - "c2": 20.549213932933007, - "c3": 27.68964081099689, - "c4": -39.19985898851441, - "c5": -6.826544438659177, - "c6": 28.64696340465717, - "c7": -9.241640701950189 + "points": { + "c1": -21.549454761831615, + "c2": -39.63405638483995, + "c3": -23.61022524123997, + "c4": 28.86524188782488, + "c5": -24.023024728164803, + "c6": 1.1816357294941824, + "c7": 3.5968464347188984 }, - "vertexSeeds": { - "c1": 7.679650124464638, - "c2": 7.310881001142555, - "c3": 6.9939899491905, - "c4": 8.561298841802401, - "c5": 7.140572407013915, - "c6": 10.065532595363397, - "c7": 8.417727565455671 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.646324549237168, + "c3": 12.205270457697642, + "c4": 9.764216366158115, + "c5": 7.323162274618584, + "c6": 4.882108183079053, + "c7": 2.4410540915395265 }, "rgb": [238, 201, 159] }, @@ -219759,23 +219759,23 @@ "year": 1770, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 34.956383435861284, - "c2": -20.671490832139522, - "c3": -21.20001777247052, - "c4": -31.862977119848743, - "c5": -9.888805507520857, - "c6": -1.6330533983069913, - "c7": -17.33975620047542 + "points": { + "c1": 27.98300094377109, + "c2": 35.34573848203999, + "c3": 21.08171972298694, + "c4": 33.01808996859204, + "c5": 31.728895705791743, + "c6": -35.77715515019395, + "c7": 2.535058356881038 }, - "vertexSeeds": { - "c1": 4.806711397435373, - "c2": 4.775569454767803, - "c3": 4.7696846163327375, - "c4": 4.603941675888554, - "c5": 4.766694229009276, - "c6": 4.859278281694851, - "c7": 4.786371609720815 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176148, + "c3": 5.848358760980114, + "c4": 4.678687008784094, + "c5": 3.509015256588074, + "c6": 2.3393435043920396, + "c7": 1.1696717521960198 }, "rgb": [222, 0, 59] }, @@ -219786,23 +219786,23 @@ "year": 1769, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -21.71000964326204, - "c2": 15.418208428831168, - "c3": -18.893429813739, - "c4": -8.175620954615827, - "c5": -10.931791859740862, - "c6": -8.853464428173343, - "c7": 27.000050486110556 + "points": { + "c1": -25.61057428092388, + "c2": 16.355179322641195, + "c3": 25.53352864704981, + "c4": 6.053432643910821, + "c5": 24.48239897856413, + "c6": 0.21654020862274947, + "c7": 12.732386828345486 }, - "vertexSeeds": { - "c1": 4.802352810365669, - "c2": 5.068112772049446, - "c3": 5.31443347460709, - "c4": 4.241509871789858, - "c5": 4.104369345556352, - "c6": 4.490148988299466, - "c7": 4.9425246949137 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -219813,23 +219813,23 @@ "year": 1770, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -11.011629225024151, - "c2": -26.389881972230075, - "c3": -47.99081433501296, - "c4": 13.619529775986805, - "c5": 23.426434261082775, - "c6": 34.915259459021726, - "c7": -44.56234859286777 + "points": { + "c1": 33.63913798087897, + "c2": 14.895162946285438, + "c3": -13.468307821057358, + "c4": -44.753206743301554, + "c5": -4.332812775115912, + "c6": -47.87774631430009, + "c7": 40.11719365725493 }, - "vertexSeeds": { - "c1": 1.2535478653744374, - "c2": 1.3101257196171994, - "c3": 1.359609595739425, - "c4": 1.146512541630095, - "c5": 1.177607944379474, - "c6": 1.243495161925118, - "c7": 1.3186420018236582 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959767, + "c3": 1.6643550624133157, + "c4": 1.3314840499306517, + "c5": 0.9986130374479876, + "c6": 0.6657420249653265, + "c7": 0.33287101248266254 }, "rgb": [86, 146, 138] }, @@ -219840,23 +219840,23 @@ "year": 1770, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -10.91830483609759, - "c2": -6.02009201443493, - "c3": 30.931482364418542, - "c4": -29.517401461078308, - "c5": -16.060046669804564, - "c6": 29.761793026365183, - "c7": -20.3896978579139 + "points": { + "c1": 30.16114432695251, + "c2": 42.900869703230754, + "c3": -27.54576563012588, + "c4": 10.877179104047599, + "c5": -37.371920181750326, + "c6": 29.409069521106105, + "c7": 39.67620167601292 }, - "vertexSeeds": { - "c1": 9.383280823108976, - "c2": 9.183027576903777, - "c3": 9.361248958653794, - "c4": 9.313968913017984, - "c5": 9.154479756586872, - "c6": 9.23730433701393, - "c7": 9.276616569104704 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547848, + "c3": 11.234396671289874, + "c4": 8.987517337031898, + "c5": 6.740638002773924, + "c6": 4.493758668515949, + "c7": 2.2468793342579745 }, "rgb": [222, 0, 59] }, @@ -219867,23 +219867,23 @@ "year": 1770, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": -12.197751805208256, - "c2": -19.006766572057316, - "c3": 36.90305357464308, - "c4": 18.334590139595647, - "c5": -33.517892655014165, - "c6": -3.39201858226847, - "c7": -7.625506687157632 + "points": { + "c1": 10.306918673764088, + "c2": -43.06107688280382, + "c3": 0.16676338386663048, + "c4": 15.73758293431095, + "c5": 48.56462255475381, + "c6": 45.954467941506465, + "c7": -30.225555113975382 }, - "vertexSeeds": { - "c1": 5.629264046769815, - "c2": 5.881902000586771, - "c3": 5.578975805896722, - "c4": 5.83705375169367, - "c5": 5.360371421796627, - "c6": 5.773749271296532, - "c7": 5.10622672870972 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267676, + "c3": 7.050392972723071, + "c4": 5.640314378178451, + "c5": 4.230235783633845, + "c6": 2.8201571890892256, + "c7": 1.4100785945446195 }, "rgb": [86, 146, 138] }, @@ -219894,23 +219894,23 @@ "year": 1770, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 33.78063316612228, - "c2": 24.191455344076992, - "c3": 13.4779489846768, - "c4": 22.816225578036885, - "c5": 0.32412513455648906, - "c6": 24.523005083753596, - "c7": -20.8328375188934 + "points": { + "c1": 25.705968855056263, + "c2": 16.81192768590673, + "c3": -15.10750494387868, + "c4": 11.482657336970625, + "c5": 16.427105667337536, + "c6": -16.253747913188697, + "c7": 43.97559633004146 }, - "vertexSeeds": { - "c1": 1.0024573059961197, - "c2": 1.0255737468223731, - "c3": 0.993550569956837, - "c4": 1.0009287662440802, - "c5": 1.0128210975403376, - "c6": 1.0035398749705557, - "c7": 1.0112620092270022 + "offsets": { + "c1": 1.7475728155339807, + "c2": 1.4979195561719842, + "c3": 1.248266296809988, + "c4": 0.9986130374479917, + "c5": 0.7489597780859952, + "c6": 0.49930651872399273, + "c7": 0.24965325936199637 }, "rgb": [77, 76, 132] }, @@ -219921,23 +219921,23 @@ "year": 1770, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 3.8844819963959836, - "c2": -0.7465791060663207, - "c3": -28.52415266209838, - "c4": -9.236516453208601, - "c5": -23.794050551011054, - "c6": -25.951187789927626, - "c7": 28.57880423884354 + "points": { + "c1": -8.464884299822817, + "c2": 22.789224064981603, + "c3": -15.9660797048241, + "c4": -21.23992843777328, + "c5": -31.1182916413311, + "c6": -21.586571316094535, + "c7": -14.385233066763242 }, - "vertexSeeds": { - "c1": 7.309015172074245, - "c2": 8.40552330755105, - "c3": 7.280130073118288, - "c4": 7.344922382078177, - "c5": 7.899117214137302, - "c6": 7.01242743502898, - "c7": 8.515339300607202 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737866, + "c3": 10.194174757281557, + "c4": 8.155339805825246, + "c5": 6.1165048543689275, + "c6": 4.077669902912619, + "c7": 2.0388349514563093 }, "rgb": [86, 146, 138] }, @@ -219948,23 +219948,23 @@ "year": 1770, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 24.947539216973844, - "c2": -6.254387478296891, - "c3": 21.505918474723927, - "c4": 12.362386720429, - "c5": -32.771583438097416, - "c6": -18.956938016502384, - "c7": 24.76065292580879 + "points": { + "c1": 30.350520903817326, + "c2": -5.462529624888067, + "c3": 27.706888144452726, + "c4": 17.982220862280997, + "c5": -31.76006678468153, + "c6": 8.80987739843382, + "c7": -34.07061992142104 }, - "vertexSeeds": { - "c1": 0.9432513842592838, - "c2": 0.962416153019458, - "c3": 0.7616623380157882, - "c4": 0.916193986847039, - "c5": 0.8840255585750691, - "c6": 0.8724705350587132, - "c7": 0.8865281330059267 + "offsets": { + "c1": 1.650485436893204, + "c2": 1.414701803051318, + "c3": 1.1789181692094308, + "c4": 0.9431345353675449, + "c5": 0.707350901525659, + "c6": 0.471567267683772, + "c7": 0.235783633841886 }, "rgb": [86, 146, 138] }, @@ -219975,23 +219975,23 @@ "year": 1770, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -11.481178298374488, - "c2": -7.597726221787632, - "c3": 0.3371850697899532, - "c4": -0.9473727690625751, - "c5": -20.44451350817139, - "c6": -21.78854127116024, - "c7": -4.621668650447212 + "points": { + "c1": -15.421822255393774, + "c2": 23.366287662699122, + "c3": 9.853840018934754, + "c4": 34.96562480877566, + "c5": 24.007145518397778, + "c6": -41.10139624055263, + "c7": -24.312544357408903 }, - "vertexSeeds": { - "c1": 3.1586880770208348, - "c2": 2.7591060294212433, - "c3": 2.9411272750263096, - "c4": 2.858993343858235, - "c5": 3.1033999579412597, - "c6": 2.7897051738087453, - "c7": 3.1065760362653596 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596395, + "c3": 3.791030975496992, + "c4": 3.032824780397595, + "c5": 2.2746185852981977, + "c6": 1.5164123901988005, + "c7": 0.7582061950993971 }, "rgb": [238, 201, 159] }, @@ -220002,23 +220002,23 @@ "year": 1770, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 36.728247302759684, - "c2": -32.677999727481705, - "c3": 9.975195033610724, - "c4": -37.019067658712665, - "c5": -5.951826030476845, - "c6": -13.448937361107308, - "c7": 9.154474795399366 + "points": { + "c1": -34.578413147005335, + "c2": 0.557202058384128, + "c3": 28.24445416462507, + "c4": 31.102248198544984, + "c5": 25.178483809071324, + "c6": -11.433006508221325, + "c7": -7.437093799541778 }, - "vertexSeeds": { - "c1": 5.349677797573508, - "c2": 5.7444962719997985, - "c3": 5.348159211960328, - "c4": 5.655836765153298, - "c5": 5.35943177788011, - "c6": 5.567978923928264, - "c7": 5.514946422208217 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106801, + "c3": 6.957928802588987, + "c4": 5.5663430420711935, + "c5": 4.174757281553401, + "c6": 2.7831715210356083, + "c7": 1.391585760517793 }, "rgb": [238, 201, 159] }, @@ -220029,23 +220029,23 @@ "year": 1770, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -0.6291971914142387, - "c2": -9.578744129434817, - "c3": 0.47836108147729206, - "c4": -3.011102564500387, - "c5": -11.07255776860952, - "c6": 24.707607964879813, - "c7": 24.226466544927597 + "points": { + "c1": 23.69933920390013, + "c2": -26.718765160904695, + "c3": -8.071402296985351, + "c4": -28.600051905602587, + "c5": -19.66980722848863, + "c6": -18.471526704293055, + "c7": 20.599973634212134 }, - "vertexSeeds": { - "c1": 4.892745933790677, - "c2": 4.785863801156096, - "c3": 4.616266225709333, - "c4": 5.065570596920198, - "c5": 4.9176002915531525, - "c6": 4.6069033429083355, - "c7": 4.558867461350796 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658805, + "c3": 6.1257512713823425, + "c4": 4.900601017105872, + "c5": 3.6754507628294024, + "c6": 2.4503005085529392, + "c7": 1.2251502542764696 }, "rgb": [238, 201, 159] }, @@ -220056,23 +220056,23 @@ "year": 1770, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -13.962357843273558, - "c2": -1.6416883451031374, - "c3": 16.077682417368308, - "c4": -21.620551253775425, - "c5": -11.047250543039297, - "c6": 14.88060236849551, - "c7": 6.4264486734377755 + "points": { + "c1": 26.47283759249425, + "c2": 1.3636797940200864, + "c3": 12.221066311383716, + "c4": 19.709493424925668, + "c5": 5.273648159383612, + "c6": 1.0835080850491643, + "c7": -11.418924407069056 }, - "vertexSeeds": { - "c1": 4.159768268882805, - "c2": 4.293513910620516, - "c3": 4.233346465415559, - "c4": 4.7714235855667315, - "c5": 4.444889213623446, - "c6": 4.547846130480428, - "c7": 4.187772758638062 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -220083,23 +220083,23 @@ "year": 1770, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -17.041993901980128, - "c2": -13.63493809318028, - "c3": 10.683167935048289, - "c4": -4.07565015310697, - "c5": -7.655989275599904, - "c6": 27.772292771378403, - "c7": -20.139960096026165 + "points": { + "c1": -11.594835122394791, + "c2": 17.461136273997134, + "c3": -29.61616550605051, + "c4": -8.410849549915095, + "c5": -3.023460838927889, + "c6": 14.852408652629187, + "c7": -17.15096369784095 }, - "vertexSeeds": { - "c1": 2.450207440165789, - "c2": 2.4806353881773693, - "c3": 2.244859477475684, - "c4": 2.2337681555839803, - "c5": 2.368130919761439, - "c6": 2.491934786429935, - "c7": 2.3197440437531176 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690682, + "c3": 3.0282015718908926, + "c4": 2.422561257512714, + "c5": 1.8169209431345354, + "c6": 1.211280628756357, + "c7": 0.6056403143781784 }, "rgb": [222, 0, 59] }, @@ -220110,23 +220110,23 @@ "year": 1770, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 13.666252713635792, - "c2": 22.975610638714585, - "c3": 19.020547913135168, - "c4": 11.84807217427933, - "c5": -29.19334714638625, - "c6": -28.0571002220779, - "c7": -13.66079776350442 + "points": { + "c1": 31.16266937825786, + "c2": 36.02108362766954, + "c3": 8.583476910651008, + "c4": 4.790425435971628, + "c5": -29.414854609163907, + "c6": 16.93959075462866, + "c7": -3.98838448582363 }, - "vertexSeeds": { - "c1": 4.867817759579313, - "c2": 4.4775967995927, - "c3": 4.800986830403716, - "c4": 4.341387155747554, - "c5": 4.651334838649576, - "c6": 4.303236589545828, - "c7": 4.754888505809415 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.10124826629681, + "c3": 5.917706888580672, + "c4": 4.734165510864538, + "c5": 3.550624133148405, + "c6": 2.367082755432272, + "c7": 1.183541377716133 }, "rgb": [222, 0, 59] }, @@ -220137,23 +220137,23 @@ "year": 1770, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 20.669638657418233, - "c2": 24.478085035028904, - "c3": 33.80577651767872, - "c4": -18.859292387613305, - "c5": 17.322769178613505, - "c6": -19.79740852405236, - "c7": 27.89157271150384 + "points": { + "c1": 11.319285630971116, + "c2": 34.86622202260959, + "c3": 14.689854327928309, + "c4": 29.878716425212076, + "c5": 26.22106276593489, + "c6": 24.28333751636842, + "c7": 10.981092927083807 }, - "vertexSeeds": { - "c1": 2.1951448695617373, - "c2": 2.3010387041948155, - "c3": 2.1873920534829634, - "c4": 2.1541112414987573, - "c5": 2.2007371573094026, - "c6": 2.177044852975943, - "c7": 2.250855505106073 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266264, + "c3": 2.773925104022192, + "c4": 2.2191400832177512, + "c5": 1.6643550624133165, + "c6": 1.1095700416088756, + "c7": 0.5547850208044347 }, "rgb": [58, 15, 49] }, @@ -220164,23 +220164,23 @@ "year": 1770, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 6.870106366677476, - "c2": 19.833946769714778, - "c3": 19.16384398301279, - "c4": 20.580744012637112, - "c5": 16.36068924768214, - "c6": 1.0900489327232776, - "c7": -13.797090658766827 + "points": { + "c1": -30.04013162295179, + "c2": 19.32954129555734, + "c3": 3.7449295663178432, + "c4": 10.030052690405995, + "c5": 14.852494275261044, + "c6": 21.402964029889, + "c7": 7.7271919352865694 }, - "vertexSeeds": { - "c1": 2.306462250793412, - "c2": 2.2136889545122247, - "c3": 2.3193851472442812, - "c4": 2.2818505382989267, - "c5": 2.297805144224544, - "c6": 2.3783714092664576, - "c7": 2.374273264055121 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [222, 0, 59] }, @@ -220191,23 +220191,23 @@ "year": 1769, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 16.17219498399859, - "c2": 13.962943119476517, - "c3": -26.0742568731433, - "c4": 4.081148535743907, - "c5": -22.71984297720449, - "c6": 9.566073314408836, - "c7": -11.50217587588003 + "points": { + "c1": 4.889277201135005, + "c2": 10.019691945058337, + "c3": 22.563271445988963, + "c4": 19.23663178360756, + "c5": -11.563898198271087, + "c6": -17.391963692537214, + "c7": -3.086414094682862 }, - "vertexSeeds": { - "c1": 3.453194784015801, - "c2": 3.4274960496741094, - "c3": 3.4196908472716343, - "c4": 3.457848806228739, - "c5": 3.4686504643795826, - "c6": 3.4409058662339684, - "c7": 3.4333628658521507 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239968, + "c3": 4.16088765603328, + "c4": 3.3287101248266455, + "c5": 2.4965325936199565, + "c6": 1.6643550624133228, + "c7": 0.8321775312066337 }, "rgb": [86, 146, 138] }, @@ -220218,23 +220218,23 @@ "year": 1770, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 26.82239321163715, - "c2": 6.802026992146061, - "c3": -18.065943587693106, - "c4": 3.1916075894290756, - "c5": -24.05444190688671, - "c6": 14.539645826954192, - "c7": 18.443690432210488 + "points": { + "c1": -1.9590552475854857, + "c2": -28.795284736171094, + "c3": 9.216239678290194, + "c4": -9.121427185106693, + "c5": 4.687546704838567, + "c6": -18.467937451880534, + "c7": -19.539225387796698 }, - "vertexSeeds": { - "c1": 4.081977498617613, - "c2": 4.241482676517742, - "c3": 3.8536876276500784, - "c4": 4.2007448877851905, - "c5": 3.8342636857306114, - "c6": 4.4135617877372715, - "c7": 4.219550839387077 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -220245,23 +220245,23 @@ "year": 1770, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 2.4929555911561607, - "c2": -19.757333075973612, - "c3": 26.32574567057746, - "c4": -14.86612232648917, - "c5": 27.547146402629025, - "c6": -6.20598948948102, - "c7": -11.330095677894171 + "points": { + "c1": 15.317593877806516, + "c2": 16.49321907283123, + "c3": 6.585052099653296, + "c4": 28.418922671968268, + "c5": 13.560260493156875, + "c6": -17.233797338617535, + "c7": 11.930345908402039 }, - "vertexSeeds": { - "c1": 9.24813700744787, - "c2": 9.180191444011127, - "c3": 8.26699502795476, - "c4": 9.328702414219368, - "c5": 8.463567756351706, - "c6": 8.290013456016124, - "c7": 9.157805560845356 + "offsets": { + "c1": 17.055016181229774, + "c2": 14.618585298196953, + "c3": 12.18215441516412, + "c4": 9.745723532131299, + "c5": 7.309292649098476, + "c6": 4.872861766065646, + "c7": 2.436430883032823 }, "rgb": [238, 201, 159] }, @@ -220272,23 +220272,23 @@ "year": 1770, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -29.233630419530275, - "c2": 29.502016053910637, - "c3": -2.6111958381672835, - "c4": 2.9031446428901333, - "c5": -30.183253131683863, - "c6": 19.90738130172676, - "c7": 9.206465754236277 + "points": { + "c1": -29.720420953416394, + "c2": -36.98044389680207, + "c3": -27.827184923617352, + "c4": 2.6067376043985604, + "c5": -33.8178515447886, + "c6": -36.29257177372902, + "c7": 36.20859842025418 }, - "vertexSeeds": { - "c1": 2.6499994685811137, - "c2": 2.5520161290484498, - "c3": 2.796608630649704, - "c4": 2.624877077121942, - "c5": 2.7876857368061616, - "c6": 2.680561118244221, - "c7": 2.61613015374138 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288463, + "c3": 3.005085529357375, + "c4": 2.404068423485897, + "c5": 1.8030513176144263, + "c6": 1.2020342117429486, + "c7": 0.6010171058714712 }, "rgb": [58, 15, 49] }, @@ -220299,23 +220299,23 @@ "year": 1770, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -24.133138873273047, - "c2": 21.98550623502326, - "c3": -21.610525278414237, - "c4": -6.698410440117762, - "c5": -5.572325898204653, - "c6": -26.835604869532297, - "c7": -0.34325864242489246 + "points": { + "c1": 3.8169444213407715, + "c2": 6.657877305127968, + "c3": 10.097386823701115, + "c4": -7.365556329571472, + "c5": 8.75407916814666, + "c6": -15.174489656707042, + "c7": 11.945202819957714 }, - "vertexSeeds": { - "c1": 5.9511887789152595, - "c2": 6.49261508411601, - "c3": 5.458261013126301, - "c4": 6.018148069218536, - "c5": 6.101527711791871, - "c6": 5.740500396973686, - "c7": 5.995325553855627 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.48682385575589, + "c3": 7.905686546463247, + "c4": 6.324549237170594, + "c5": 4.7434119278779505, + "c6": 3.162274618585297, + "c7": 1.5811373092926435 }, "rgb": [238, 201, 159] }, @@ -220326,23 +220326,23 @@ "year": 1770, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -30.979958598767958, - "c2": -37.72189959647703, - "c3": 33.20103511679631, - "c4": 23.883259806607093, - "c5": -21.89466494433016, - "c6": 38.666637276220904, - "c7": -35.000173686562334 + "points": { + "c1": 26.36173503857271, + "c2": 14.2076730281928, + "c3": 15.29666202445916, + "c4": -35.211902330777995, + "c5": 20.746842405944427, + "c6": -22.502002257615626, + "c7": -44.38901928015861 }, - "vertexSeeds": { - "c1": 3.7574903716836183, - "c2": 3.6351050356618444, - "c3": 3.7937724681310057, - "c4": 3.613639427460755, - "c5": 3.8731596986232684, - "c6": 3.916855331268288, - "c7": 3.6006324087882944 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [222, 0, 59] }, @@ -220353,23 +220353,23 @@ "year": 1770, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 14.155228617517082, - "c2": -11.319438540011895, - "c3": -14.46023648928751, - "c4": -18.714907490947724, - "c5": 34.66167806439857, - "c6": 8.884109687882564, - "c7": 50.85509416313519 + "points": { + "c1": -39.48212458636527, + "c2": 51.496415403192586, + "c3": -47.39059743099786, + "c4": 31.30293016434517, + "c5": 45.71941126067965, + "c6": 8.630789738447888, + "c7": -13.278412492720406 }, - "vertexSeeds": { - "c1": 4.995180023441187, - "c2": 4.968528167910613, - "c3": 4.812342410811293, - "c4": 4.832916015897105, - "c5": 4.623286090997075, - "c6": 4.551681312424654, - "c7": 4.5771335181941115 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423022, + "c3": 6.564956079519184, + "c4": 5.251964863615345, + "c5": 3.938973647711511, + "c6": 2.6259824318076723, + "c7": 1.3129912159038388 }, "rgb": [86, 146, 138] }, @@ -220380,23 +220380,23 @@ "year": 1770, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 5.873122097459547, - "c2": 11.745371954893795, - "c3": -8.467171014403494, - "c4": 24.401352167829774, - "c5": -1.823566316360484, - "c6": 20.98535321693217, - "c7": -15.706309239670656 + "points": { + "c1": -15.369400636504746, + "c2": -26.473507087889566, + "c3": 7.8207322871080365, + "c4": -6.324055339184369, + "c5": 25.559269140310327, + "c6": -20.075917328587444, + "c7": 0.5788025554394025 }, - "vertexSeeds": { - "c1": 6.256796437947534, - "c2": 6.437335905247615, - "c3": 5.637913456246164, - "c4": 6.2164578870667295, - "c5": 6.536656921150852, - "c6": 6.4533959103689895, - "c7": 6.709241154302127 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -220407,23 +220407,23 @@ "year": 1770, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 13.544548515065095, - "c2": 37.58661770796334, - "c3": 9.968444700994212, - "c4": 29.14463195912903, - "c5": 14.058038091209795, - "c6": 25.642113522769478, - "c7": 7.921708307679118 + "points": { + "c1": 37.96674834637389, + "c2": 40.88699899506072, + "c3": 20.898691876221456, + "c4": 14.39228916021434, + "c5": -18.130862619222295, + "c6": 36.89968693565095, + "c7": -15.473255061877936 }, - "vertexSeeds": { - "c1": 6.442352545628464, - "c2": 6.276184323182367, - "c3": 6.398883966256442, - "c4": 6.271676139063206, - "c5": 6.354296747297382, - "c6": 6.373487803013954, - "c7": 6.284426482157897 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434112, + "c3": 7.720758206195085, + "c4": 6.176606564956109, + "c5": 4.632454923717082, + "c6": 3.0883032824780545, + "c7": 1.5441516412390273 }, "rgb": [77, 76, 132] }, @@ -220434,23 +220434,23 @@ "year": 1770, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -34.43299279909169, - "c2": 34.07752392444151, - "c3": 35.905833255991965, - "c4": 20.93044943194787, - "c5": 37.5966170456838, - "c6": -34.23474394943403, - "c7": -0.4707221884321626 + "points": { + "c1": -6.663763881264522, + "c2": 4.5382123413935815, + "c3": 40.837396830970235, + "c4": -26.775309096480544, + "c5": 2.629937231599925, + "c6": 22.30553761214756, + "c7": 4.530540339295392 }, - "vertexSeeds": { - "c1": 4.152468556372318, - "c2": 4.316425340575337, - "c3": 4.43935494543967, - "c4": 4.21769765992639, - "c5": 4.4015379909021295, - "c6": 3.9970131516649428, - "c7": 4.148882656440356 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [86, 146, 138] }, @@ -220461,23 +220461,23 @@ "year": 1770, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -10.465557857226745, - "c2": -17.040499734042793, - "c3": -5.940847835970484, - "c4": -16.464454053703857, - "c5": -14.512504386472923, - "c6": 18.70216324088736, - "c7": -0.4219730806326112 + "points": { + "c1": 3.0972967470499313, + "c2": -11.925180478854315, + "c3": 11.325879917703247, + "c4": 9.129721019550004, + "c5": -14.856087297235959, + "c6": 29.663722557349146, + "c7": -14.421191555316739 }, - "vertexSeeds": { - "c1": 4.637778695715497, - "c2": 4.757677343013399, - "c3": 4.852584636516214, - "c4": 4.498206263564953, - "c5": 4.795942687532313, - "c6": 4.618501628744203, - "c7": 4.905557490575504 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.0457697642163675, + "c3": 5.871474803513635, + "c4": 4.697179842810909, + "c5": 3.5228848821081837, + "c6": 2.348589921405451, + "c7": 1.1742949607027255 }, "rgb": [222, 0, 59] }, @@ -220488,23 +220488,23 @@ "year": 1770, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 24.748545273774972, - "c2": 3.6846106341913014, - "c3": 8.33106544894654, - "c4": 34.79441895614772, - "c5": -22.90318358844086, - "c6": 14.526105895404108, - "c7": -18.918516423468954 + "points": { + "c1": 28.700469027396252, + "c2": -26.709123885491355, + "c3": -25.166935204930283, + "c4": -7.109757144588599, + "c5": -30.814437988208308, + "c6": -33.868105626093126, + "c7": -32.571491686211864 }, - "vertexSeeds": { - "c1": 3.75, - "c2": 3.75, - "c3": 3.75, - "c4": 3.75, - "c5": 3.75, - "c6": 3.75, - "c7": 3.75 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -220515,23 +220515,23 @@ "year": 1770, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -8.52907354819219, - "c2": -8.936459781818709, - "c3": -22.676160205794368, - "c4": 11.300987039929122, - "c5": 1.5080680953569114, - "c6": 13.914395509800098, - "c7": 6.8202917288972 + "points": { + "c1": 23.11136209062988, + "c2": -12.422096186393784, + "c3": 2.3353835458173613, + "c4": -11.086293484379738, + "c5": -1.4013249041912061, + "c6": 0.20825648207111058, + "c7": -25.418581399737324 }, - "vertexSeeds": { - "c1": 2.3366976582976586, - "c2": 2.2989207943396313, - "c3": 2.5433917338230723, - "c4": 2.2054873635120296, - "c5": 2.3202618936165154, - "c6": 2.278780506423076, - "c7": 2.3884873362834536 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897375, + "c3": 3.0975496994914464, + "c4": 2.478039759593158, + "c5": 1.8585298196948672, + "c6": 1.239019879796579, + "c7": 0.6195099398982883 }, "rgb": [77, 76, 132] }, @@ -220542,23 +220542,23 @@ "year": 1770, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -23.729216305529835, - "c2": 11.375618601434407, - "c3": -7.729763281612183, - "c4": -21.518431507891577, - "c5": 4.115626161137918, - "c6": 15.979644487181186, - "c7": -21.18640022976151 + "points": { + "c1": -4.567369542411711, + "c2": -24.990177450262788, + "c3": -25.000505852458705, + "c4": 19.97094276645281, + "c5": 8.428686541107677, + "c6": -8.76810212189391, + "c7": -1.0291419268247815 }, - "vertexSeeds": { - "c1": 7.027408140117886, - "c2": 6.768826424267622, - "c3": 6.934360170449937, - "c4": 6.882969897585263, - "c5": 6.633147033266801, - "c6": 6.923736946001554, - "c7": 6.6357564036005705 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640769, + "c3": 8.414239482200658, + "c4": 6.731391585760521, + "c5": 5.048543689320384, + "c6": 3.365695792880275, + "c7": 1.6828478964401374 }, "rgb": [222, 0, 59] }, @@ -220569,23 +220569,23 @@ "year": 1770, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": 43.55811025463619, - "c2": 52.45644601909068, - "c3": 32.10220934168102, - "c4": -40.28145298280654, - "c5": -48.86317754465832, - "c6": 1.8212711436488007, - "c7": -51.18538516705756 + "points": { + "c1": 42.12598016778513, + "c2": -32.577047051745026, + "c3": 49.8011749667034, + "c4": 9.306146092763967, + "c5": -54.58884042040292, + "c6": 55.274271643336206, + "c7": 51.37336716908196 }, - "vertexSeeds": { - "c1": 7.15927574334557, - "c2": 7.401888468683252, - "c3": 7.584607661070981, - "c4": 7.647277736160278, - "c5": 7.722762781305302, - "c6": 7.127717497504083, - "c7": 7.677314712832903 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048533, + "c3": 9.223300970873789, + "c4": 7.378640776699022, + "c5": 5.533980582524277, + "c6": 3.689320388349511, + "c7": 1.844660194174766 }, "rgb": [222, 0, 59] }, @@ -220596,23 +220596,23 @@ "year": 1770, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 31.604823458207356, - "c2": -31.24414383156117, - "c3": -17.37128519649528, - "c4": 9.65358763289396, - "c5": 8.189833199514588, - "c6": -18.357337662416594, - "c7": 30.300633321809514 + "points": { + "c1": 18.069635325837545, + "c2": 12.445544400039083, + "c3": -22.75297776130173, + "c4": -1.1403002000610059, + "c5": 25.783568432788613, + "c6": 30.960069700788445, + "c7": -20.291311073181948 }, - "vertexSeeds": { - "c1": 6.953208147070384, - "c2": 6.595356740971224, - "c3": 7.215866162478469, - "c4": 7.598935871673917, - "c5": 7.966803491841329, - "c6": 7.709648437439329, - "c7": 6.651264753546343 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [238, 201, 159] }, @@ -220623,23 +220623,23 @@ "year": 1770, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 10.344135729715717, - "c2": 10.06038371235217, - "c3": -25.88315457706838, - "c4": 4.945911452644754, - "c5": 4.640350694576654, - "c6": 6.687561216836649, - "c7": 4.4897810654465715 + "points": { + "c1": -8.83561959925225, + "c2": 28.70254694563372, + "c3": -13.595972993053008, + "c4": 3.4808629939118916, + "c5": -19.642207066335764, + "c6": -12.648932162159046, + "c7": 19.64185435971278 }, - "vertexSeeds": { - "c1": 6.1453925084737095, - "c2": 6.744536434611728, - "c3": 6.399556996163363, - "c4": 6.192467655250457, - "c5": 6.904463800675545, - "c6": 6.793121327413645, - "c7": 6.597161007639262 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479893, + "c3": 8.321775312066574, + "c4": 6.657420249653263, + "c5": 4.993065187239941, + "c6": 3.3287101248266313, + "c7": 1.6643550624133205 }, "rgb": [77, 76, 132] }, @@ -220650,23 +220650,23 @@ "year": 1770, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -16.53202413969601, - "c2": 14.683714376032803, - "c3": -13.527019737386443, - "c4": 16.04707283911557, - "c5": -4.598928298151193, - "c6": -6.723794412568395, - "c7": -11.718350409863774 + "points": { + "c1": 4.37640840614322, + "c2": -32.73583775454495, + "c3": -31.97426567157438, + "c4": -30.65589620304283, + "c5": -9.475900213108659, + "c6": -14.024038157992543, + "c7": -45.17456582363808 }, - "vertexSeeds": { - "c1": 4.685551514575614, - "c2": 4.132393956004052, - "c3": 4.655675211592606, - "c4": 4.68925109037063, - "c5": 4.038399843346255, - "c6": 4.268638339839881, - "c7": 4.556708357504059 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -220677,23 +220677,23 @@ "year": 1770, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -0.2162371780421246, - "c2": 1.095576902224476, - "c3": 5.239816233172149, - "c4": 3.170819755185452, - "c5": -4.692649874200399, - "c6": -23.489180435462405, - "c7": 5.10133070248509 + "points": { + "c1": 12.555692534825539, + "c2": -1.4429259411832085, + "c3": -21.367241621992278, + "c4": 22.52229193645435, + "c5": 12.139229993773974, + "c6": -6.979160531783069, + "c7": -4.456796973806206 }, - "vertexSeeds": { - "c1": 8.652638815845336, - "c2": 8.16717684253781, - "c3": 9.181681334702018, - "c4": 9.031351765615163, - "c5": 9.26045073826767, - "c6": 9.037626963632333, - "c7": 9.085053525762742 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266294, + "c3": 11.072584373555246, + "c4": 8.858067498844196, + "c5": 6.643550624133147, + "c6": 4.429033749422098, + "c7": 2.214516874711049 }, "rgb": [86, 146, 138] }, @@ -220704,23 +220704,23 @@ "year": 1770, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 22.95438559514561, - "c2": 27.766310795337304, - "c3": -13.59874220792241, - "c4": 22.611027492044045, - "c5": 23.986747158356977, - "c6": 2.8881611395830546, - "c7": 7.811724676792814 + "points": { + "c1": -18.49635196816206, + "c2": -8.467209170163386, + "c3": 27.06192508840944, + "c4": 1.9467089085352356, + "c5": -27.018679570535287, + "c6": -5.849240099489105, + "c7": 10.24037712790144 }, - "vertexSeeds": { - "c1": 6.522689953253526, - "c2": 6.640556424088659, - "c3": 6.644676539717101, - "c4": 5.922507396836375, - "c5": 6.0821929751861, - "c6": 6.635968275228254, - "c7": 5.678578189980618 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -220731,23 +220731,23 @@ "year": 1770, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -17.91331478355459, - "c2": 29.9803235014787, - "c3": -18.238875169039193, - "c4": -16.271260779503653, - "c5": 9.286514959459296, - "c6": 11.659036873075479, - "c7": 2.2409577274100414 + "points": { + "c1": -18.578728405321993, + "c2": 32.61254753779327, + "c3": 8.309651510724606, + "c4": -1.6959273692434849, + "c5": -33.792450474415766, + "c6": -19.810017120448745, + "c7": -16.547639679057152 }, - "vertexSeeds": { - "c1": 7.394022192165797, - "c2": 7.377254138456389, - "c3": 7.434549225728381, - "c4": 7.440670754718882, - "c5": 7.344886663321358, - "c6": 7.389934455469716, - "c7": 7.371827689261334 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485487, + "c3": 8.899676375404514, + "c4": 7.119741100323659, + "c5": 5.339805825242685, + "c6": 3.5598705501618295, + "c7": 1.7799352750808555 }, "rgb": [77, 76, 132] }, @@ -220758,23 +220758,23 @@ "year": 1770, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -17.17407330058291, - "c2": -3.2811005904312864, - "c3": -27.051040751330383, - "c4": 19.087869146193377, - "c5": 24.27937005020833, - "c6": -26.176856377607354, - "c7": -33.83969398444488 + "points": { + "c1": 29.550266804425917, + "c2": -31.31254132814154, + "c3": -39.932216543613855, + "c4": -0.5265276507684504, + "c5": -29.5731026782939, + "c6": -27.213527497985616, + "c7": 16.175836885265007 }, - "vertexSeeds": { - "c1": 5.667785686949321, - "c2": 5.5554407076301136, - "c3": 5.36437672319866, - "c4": 5.418347326408417, - "c5": 5.5970009717436175, - "c6": 5.5538589833754815, - "c7": 5.423563383690642 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905697, + "c3": 6.842348589921401, + "c4": 5.473878871937132, + "c5": 4.105409153952835, + "c6": 2.736939435968566, + "c7": 1.3684697179842693 }, "rgb": [238, 201, 159] }, @@ -220785,23 +220785,23 @@ "year": 1770, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 5.492289753695264, - "c2": 24.514902089251134, - "c3": -28.79778120813118, - "c4": 1.5519471256316315, - "c5": 14.354943018547306, - "c6": 25.24587956578843, - "c7": -12.873661083023336 + "points": { + "c1": -20.467359732635643, + "c2": -12.561610508090954, + "c3": -1.2494921879575394, + "c4": 3.3527742174142467, + "c5": 26.17164301932274, + "c6": -12.627482541668456, + "c7": -27.43106199411331 }, - "vertexSeeds": { - "c1": 5.575439112986605, - "c2": 4.860303769400716, - "c3": 5.374222880565019, - "c4": 5.304228550070669, - "c5": 5.147042965799227, - "c6": 5.601423227879466, - "c7": 5.06189987203347 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.62690707350902, + "c3": 7.18908922792418, + "c4": 5.75127138233934, + "c5": 4.3134535367545075, + "c6": 2.8756356911696757, + "c7": 1.4378178455848358 }, "rgb": [222, 0, 59] }, @@ -220812,23 +220812,23 @@ "year": 1770, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -17.498058233393206, - "c2": 40.6346811857852, - "c3": 8.849323830291574, - "c4": 35.94592944048573, - "c5": -2.254172317328937, - "c6": 18.25736449055114, - "c7": -26.114865587001983 + "points": { + "c1": -31.421183218746528, + "c2": -12.705241735672502, + "c3": -29.160540248625022, + "c4": -3.3516607548333823, + "c5": 21.852298178596655, + "c6": -3.5977027427648025, + "c7": -25.573604652755602 }, - "vertexSeeds": { - "c1": 4.293803366521313, - "c2": 4.426406557906004, - "c3": 4.703009146448814, - "c4": 4.654170631333212, - "c5": 4.289728387960719, - "c6": 4.6345244828103915, - "c7": 4.5881777621566915 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814149, + "c3": 5.640314378178453, + "c4": 4.512251502542764, + "c5": 3.3841886269070747, + "c6": 2.2561257512713775, + "c7": 1.1280628756356887 }, "rgb": [238, 201, 159] }, @@ -220839,23 +220839,23 @@ "year": 1770, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 19.402253831786204, - "c2": -2.2317437126638424, - "c3": 21.79797280438101, - "c4": -5.618988532136569, - "c5": -3.7605179696047983, - "c6": -6.437258501724749, - "c7": -8.368875475534566 + "points": { + "c1": -33.4114966661303, + "c2": 35.822198802604845, + "c3": -37.636983807653436, + "c4": 35.12435638421901, + "c5": 36.097021794854996, + "c6": 40.86363805642476, + "c7": -31.596251323693544 }, - "vertexSeeds": { - "c1": 3.3800719517997098, - "c2": 3.360711848695918, - "c3": 3.336173153218233, - "c4": 3.231880061210537, - "c5": 3.1078255989145065, - "c6": 3.361117962623306, - "c7": 3.093522601546171 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.88210818307906, + "c3": 4.06842348589921, + "c4": 3.2547387887193704, + "c5": 2.44105409153953, + "c6": 1.62736939435969, + "c7": 0.81368469717984 }, "rgb": [222, 0, 59] }, @@ -220866,23 +220866,23 @@ "year": 1770, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -17.71996744212398, - "c2": -2.2728461846596986, - "c3": -24.99392376245425, - "c4": 6.2961086974057, - "c5": 24.90620268038247, - "c6": -2.857816938585568, - "c7": -20.608040712581413 + "points": { + "c1": 3.861313100861473, + "c2": 13.08314607062482, + "c3": -25.096058539071862, + "c4": -7.532894833507193, + "c5": 3.5560775877694972, + "c6": -7.662725327758512, + "c7": -14.552079965755421 }, - "vertexSeeds": { - "c1": 3.0275524189264478, - "c2": 3.0816588332397243, - "c3": 3.1476852070215293, - "c4": 3.070247971647094, - "c5": 3.053266303015935, - "c6": 3.0430490216239505, - "c7": 3.1531629741888705 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [238, 201, 159] }, @@ -220893,23 +220893,23 @@ "year": 1770, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -36.54012434180932, - "c2": -2.523413714433218, - "c3": 14.164590069321783, - "c4": 23.78356827700044, - "c5": -9.346309124889327, - "c6": -28.916698385910188, - "c7": 14.07361844978572 + "points": { + "c1": 0.19055526165350045, + "c2": -4.868922630040856, + "c3": -22.058974480126526, + "c4": -26.61343282717229, + "c5": -5.257659280142754, + "c6": -23.611628496707475, + "c7": 15.05473128705934 }, - "vertexSeeds": { - "c1": 6.17316015307165, - "c2": 6.040683551861023, - "c3": 6.2968749632719705, - "c4": 5.737032749890956, - "c5": 5.916951351615018, - "c6": 6.221182776216531, - "c7": 6.364386979194858 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916778, + "c3": 7.99815071659732, + "c4": 6.398520573277852, + "c5": 4.798890429958393, + "c6": 3.199260286638926, + "c7": 1.599630143319458 }, "rgb": [222, 0, 59] }, @@ -220920,23 +220920,23 @@ "year": 1770, "resistanceReported": true, "duration": 14169600, - "curveSeeds": { - "c1": -21.49770533813898, - "c2": 4.138653362581444, - "c3": -23.761717768450637, - "c4": 10.569271561196071, - "c5": -16.774180840279254, - "c6": 18.580331445956592, - "c7": 10.705273623797506 + "points": { + "c1": 12.003880570173283, + "c2": -1.4615154112012334, + "c3": 14.050883934183798, + "c4": -0.8321679654727987, + "c5": 17.149845030863137, + "c6": -6.632094071886623, + "c7": -10.61203298463705 }, - "vertexSeeds": { - "c1": 4.243399257464976, - "c2": 4.32846034011861, - "c3": 4.353651766606169, - "c4": 4.274180628573037, - "c5": 4.038428213088577, - "c6": 3.9470318679437466, - "c7": 4.010408776218211 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331483, + "c3": 5.362921867776234, + "c4": 4.290337494220986, + "c5": 3.217753120665738, + "c6": 2.1451687471104894, + "c7": 1.0725843735552414 }, "rgb": [222, 0, 59] }, @@ -220947,23 +220947,23 @@ "year": 1770, "resistanceReported": true, "duration": 31795200, - "curveSeeds": { - "c1": -17.66137548753668, - "c2": 24.31346305824252, - "c3": 28.225756312839437, - "c4": -38.94671833660276, - "c5": 7.8956497645570565, - "c6": -24.648143642187538, - "c7": 13.248085095039698 + "points": { + "c1": 38.7450689480427, + "c2": 4.082301727489778, + "c3": -44.486505453504776, + "c4": -43.18856886229916, + "c5": 39.707717228939345, + "c6": 39.83903944336022, + "c7": -30.441856449792336 }, - "vertexSeeds": { - "c1": 8.190129454529096, - "c2": 8.113679544068793, - "c3": 8.096621400721608, - "c4": 7.998049946354279, - "c5": 8.227506706640193, - "c6": 8.191128668436063, - "c7": 8.207276715714944 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174743, + "c3": 9.870550161812318, + "c4": 7.896440129449845, + "c5": 5.922330097087372, + "c6": 3.9482200647249455, + "c7": 1.9741100323624727 }, "rgb": [86, 146, 138] }, @@ -220974,23 +220974,23 @@ "year": 1770, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 25.2503259691713, - "c2": -24.478815429424873, - "c3": -9.428431561442746, - "c4": -13.763506381971968, - "c5": -26.12921661550242, - "c6": 10.53983441138697, - "c7": 21.341647073467485 + "points": { + "c1": -0.8040970348637941, + "c2": -10.87456827752655, + "c3": 17.568902185829124, + "c4": -20.605176496556425, + "c5": -9.052750437453621, + "c6": 7.526411544949845, + "c7": 17.792894401204713 }, - "vertexSeeds": { - "c1": 4.489043626374331, - "c2": 4.125574547082574, - "c3": 4.484605929438737, - "c4": 4.8143221433151595, - "c5": 4.236961756928913, - "c6": 4.466961863008245, - "c7": 4.481010976661848 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -221001,23 +221001,23 @@ "year": 1770, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 4.846146569984953, - "c2": 23.320002609611564, - "c3": -17.179210254552707, - "c4": -16.213691534558258, - "c5": -2.850292098140855, - "c6": -20.56510038379553, - "c7": 20.2714692296095 + "points": { + "c1": -28.335106860583984, + "c2": -21.301739135531466, + "c3": -2.3788835903448344, + "c4": -17.94997527814612, + "c5": -37.462611762033056, + "c6": 33.84199677745089, + "c7": -23.786439697432677 }, - "vertexSeeds": { - "c1": 2.4407329807145093, - "c2": 2.163143946995374, - "c3": 2.4826502762813654, - "c4": 2.36754953795746, - "c5": 2.432814330697497, - "c6": 2.2148836334741007, - "c7": 2.1592192882986168 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690722, + "c3": 3.028201571890892, + "c4": 2.422561257512715, + "c5": 1.8169209431345348, + "c6": 1.2112806287563576, + "c7": 0.6056403143781801 }, "rgb": [238, 201, 159] }, @@ -221028,23 +221028,23 @@ "year": 1769, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": 9.155797955977778, - "c2": -3.630785960988632, - "c3": -10.572383160070345, - "c4": 8.528032354069897, - "c5": -1.2590395203503206, - "c6": 20.295204414674807, - "c7": -19.470126988025502 + "points": { + "c1": 19.12698638016782, + "c2": 9.170363491815579, + "c3": 16.090096557668808, + "c4": 20.223340725825828, + "c5": -18.131012240080132, + "c6": 19.26857672553247, + "c7": -4.361009300817528 }, - "vertexSeeds": { - "c1": 0.33431851746466046, - "c2": 0.34167309513536304, - "c3": 0.35215469780578224, - "c4": 0.3678301680689399, - "c5": 0.34905224427612525, - "c6": 0.33401965591064087, - "c7": 0.3637493031042947 + "offsets": { + "c1": 0.6472491909385114, + "c2": 0.5547850208044387, + "c3": 0.4623208506703648, + "c4": 0.36985668053629206, + "c5": 0.27739251040221935, + "c6": 0.1849283402681466, + "c7": 0.09246417013407272 }, "rgb": [238, 201, 159] }, @@ -221055,23 +221055,23 @@ "year": 1770, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 7.557426867377842, - "c2": -15.784358691254074, - "c3": 0.5784854597562727, - "c4": 5.178492873027189, - "c5": 4.521715274798751, - "c6": 0.3381222615994304, - "c7": -0.653986782444619 + "points": { + "c1": -22.35847365973602, + "c2": -6.455382295429338, + "c3": -10.361929609537523, + "c4": -5.919448771149408, + "c5": 4.280170872725989, + "c6": 9.832904182981082, + "c7": 15.62100343834608 }, - "vertexSeeds": { - "c1": 9.28377629410543, - "c2": 8.218720968941847, - "c3": 9.636756817237517, - "c4": 8.160783263971226, - "c5": 8.0810892198534, - "c6": 7.777520652027431, - "c7": 9.29652204050045 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.558021266759132, + "c4": 9.246417013407298, + "c5": 6.934812760055474, + "c6": 4.623208506703649, + "c7": 2.3116042533518244 }, "rgb": [58, 15, 49] }, @@ -221082,23 +221082,23 @@ "year": 1770, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 21.261300213238016, - "c2": -11.893485325537771, - "c3": 29.164409209434595, - "c4": 25.110887497925702, - "c5": -27.182208057615647, - "c6": 7.294588052221883, - "c7": -17.44172299169919 + "points": { + "c1": 27.371137955639966, + "c2": -5.334297950647581, + "c3": 37.393781513607294, + "c4": 0.440769373674577, + "c5": -16.139815515304672, + "c6": -28.239034802575944, + "c7": -6.170276344202165 }, - "vertexSeeds": { - "c1": 5.001174304142013, - "c2": 5.141292040200036, - "c3": 5.129657640092112, - "c4": 5.140497513874757, - "c5": 5.421747760587641, - "c6": 5.058509659255896, - "c7": 5.292508831206955 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503464, + "c3": 6.611188164586218, + "c4": 5.288950531668971, + "c5": 3.9667128987517253, + "c6": 2.6444752658344925, + "c7": 1.3222376329172463 }, "rgb": [222, 0, 59] }, @@ -221109,23 +221109,23 @@ "year": 1770, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -32.86242313246237, - "c2": 3.7651791119793145, - "c3": 8.64892527100612, - "c4": 33.676544955357365, - "c5": 28.102441641427554, - "c6": -23.608257605489257, - "c7": -39.39591038454148 + "points": { + "c1": -4.036331412758273, + "c2": -31.094379325145702, + "c3": -10.360590675493839, + "c4": 4.54871767809113, + "c5": -24.950267270047327, + "c6": 9.966836012705237, + "c7": 19.898969169809007 }, - "vertexSeeds": { - "c1": 1.2839146688809018, - "c2": 1.1846718534256457, - "c3": 1.3673448679893672, - "c4": 1.1699061961819666, - "c5": 1.2657222249514204, - "c6": 1.162635124679684, - "c7": 1.165771780136264 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959767, + "c3": 1.6643550624133157, + "c4": 1.3314840499306517, + "c5": 0.9986130374479876, + "c6": 0.6657420249653265, + "c7": 0.33287101248266254 }, "rgb": [77, 76, 132] }, @@ -221136,23 +221136,23 @@ "year": 1770, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -5.946714361645, - "c2": -10.773220838752456, - "c3": 21.96541743693553, - "c4": -16.817924075911364, - "c5": 20.546999698418674, - "c6": 16.077239200403582, - "c7": -7.859886249841901 + "points": { + "c1": 16.28001046813089, + "c2": 20.650005374780605, + "c3": -5.25918941117407, + "c4": 19.3765291148245, + "c5": -2.030409446760821, + "c6": -24.361676643694732, + "c7": -3.1423639997098434 }, - "vertexSeeds": { - "c1": 6.494873153920419, - "c2": 6.34655761729681, - "c3": 6.227873517547185, - "c4": 6.500173378679967, - "c5": 6.051822724300827, - "c6": 6.7763604514909535, - "c7": 6.654989205661307 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [58, 15, 49] }, @@ -221163,23 +221163,23 @@ "year": 1770, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -26.29057305216134, - "c2": -19.826837506872995, - "c3": -41.09831720672886, - "c4": -31.766139900441935, - "c5": -30.47352689442799, - "c6": 45.154246531981, - "c7": -8.866617412470575 + "points": { + "c1": -9.664486753913458, + "c2": 19.565760415328498, + "c3": 43.13615730256491, + "c4": 21.825389668153278, + "c5": -35.52550290651087, + "c6": -22.48556657148649, + "c7": -45.0783300748067 }, - "vertexSeeds": { - "c1": 6.268178558720412, - "c2": 6.3967598018857785, - "c3": 6.122702744462018, - "c4": 6.3211187627762175, - "c5": 6.353610594521766, - "c6": 6.615931521203725, - "c7": 6.645727721496577 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [86, 146, 138] }, @@ -221190,23 +221190,23 @@ "year": 1770, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -3.5331398567551915, - "c2": 12.953905599311291, - "c3": 38.23378781841957, - "c4": 4.908269709967058, - "c5": 17.72253178661059, - "c6": -4.4029054887552945, - "c7": 1.0210222320928182 + "points": { + "c1": 16.012050535655305, + "c2": 5.9552767781813785, + "c3": -31.984971686814816, + "c4": -31.29181095919402, + "c5": 12.51445723839224, + "c6": -10.07542070581195, + "c7": -6.0619096557181535 }, - "vertexSeeds": { - "c1": 2.9131340027974795, - "c2": 2.9378709122695637, - "c3": 3.008395318524079, - "c4": 3.174682191274861, - "c5": 2.8794978694609843, - "c6": 3.229763298370329, - "c7": 3.0662208503906876 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.6601941747572795, + "c3": 3.883495145631069, + "c4": 3.1067961165048525, + "c5": 2.330097087378643, + "c6": 1.5533980582524263, + "c7": 0.7766990291262165 }, "rgb": [222, 0, 59] }, @@ -221217,23 +221217,23 @@ "year": 1770, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 19.148625510497723, - "c2": 33.5540105736693, - "c3": -5.8304867790768355, - "c4": -3.762013559920838, - "c5": -5.498150787335668, - "c6": -32.94981177736384, - "c7": -14.832430516586086 + "points": { + "c1": -30.530881043395052, + "c2": -32.26912506300531, + "c3": -27.85235152215526, + "c4": -29.47908182540028, + "c5": -7.587234316195584, + "c6": -34.5335704736161, + "c7": 19.50140231093402 }, - "vertexSeeds": { - "c1": 4.903614082142516, - "c2": 4.865734179347425, - "c3": 4.987183280685113, - "c4": 4.65167625231277, - "c5": 4.681817450312837, - "c6": 4.781924082127065, - "c7": 5.000179801856432 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457708, + "c3": 6.010171058714745, + "c4": 4.808136846971806, + "c5": 3.606102635228854, + "c6": 2.404068423485903, + "c7": 1.2020342117429514 }, "rgb": [58, 15, 49] }, @@ -221244,23 +221244,23 @@ "year": 1770, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -27.62621721870668, - "c2": 24.165852153932967, - "c3": -8.13232497110858, - "c4": -13.071797915083366, - "c5": -7.692833029170735, - "c6": 4.700318765728596, - "c7": 36.50974950206082 + "points": { + "c1": 43.14954968354544, + "c2": -7.219377718094414, + "c3": -38.31341370587732, + "c4": 22.762472755922595, + "c5": 43.631531087997, + "c6": -11.600477093842485, + "c7": -4.073460682356405 }, - "vertexSeeds": { - "c1": 2.8933052389442846, - "c2": 3.0613363750848794, - "c3": 3.060505464825615, - "c4": 3.032404012262327, - "c5": 3.1439205649738806, - "c6": 3.2665724739967374, - "c7": 3.420286937277794 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280169, + "c3": 4.184003698566804, + "c4": 3.3472029588534458, + "c5": 2.5104022191400817, + "c6": 1.6736014794267229, + "c7": 0.8368007397133589 }, "rgb": [238, 201, 159] }, @@ -221271,23 +221271,23 @@ "year": 1770, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -2.8436875974392883, - "c2": 12.463234625897122, - "c3": -22.920337310334624, - "c4": -0.78043661978122, - "c5": -24.350864134498575, - "c6": -5.286107049622846, - "c7": -2.1613533715802298 + "points": { + "c1": -18.129777749884187, + "c2": 15.69597428046825, + "c3": 12.708134410867416, + "c4": 12.992221652237731, + "c5": -12.496063834686014, + "c6": 9.421312514133469, + "c7": 5.061670067377811 }, - "vertexSeeds": { - "c1": 5.631036286131824, - "c2": 5.420067301852234, - "c3": 5.1662600382845625, - "c4": 5.001102447201407, - "c5": 5.308643222887987, - "c6": 5.160590889839478, - "c7": 5.766320640359631 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468791, + "c3": 7.165973185390655, + "c4": 5.732778548312531, + "c5": 4.299583911234396, + "c6": 2.8663892741562598, + "c7": 1.4331946370781354 }, "rgb": [238, 201, 159] }, @@ -221298,23 +221298,23 @@ "year": 1770, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 14.797274597828327, - "c2": -13.425283321543816, - "c3": -12.778926667503164, - "c4": 13.239320171363744, - "c5": 4.551144724503132, - "c6": 17.769205164820704, - "c7": -9.343197867772096 + "points": { + "c1": -0.8435513520957798, + "c2": 16.407885298873623, + "c3": -3.741349902030482, + "c4": -24.020032596389356, + "c5": -1.9634640695910477, + "c6": -5.212313449920607, + "c7": -16.13926412997285 }, - "vertexSeeds": { - "c1": 2.4580733549781497, - "c2": 2.2033796078372907, - "c3": 2.389560360532891, - "c4": 2.3047935534104558, - "c5": 2.2922026565862086, - "c6": 2.1769876095973437, - "c7": 2.129705705506477 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.9819694868238558, + "c4": 2.3855755894590844, + "c5": 1.7891816920943133, + "c6": 1.1927877947295422, + "c7": 0.5963938973647711 }, "rgb": [86, 146, 138] }, @@ -221325,23 +221325,23 @@ "year": 1770, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": 1.0875217843395717, - "c2": 17.247277708228694, - "c3": 2.995044571998058, - "c4": -1.5844579038872268, - "c5": -5.373476843107866, - "c6": 6.333914779355343, - "c7": -2.498731185082427 + "points": { + "c1": 12.942786218363914, + "c2": 20.542250105203784, + "c3": 21.89202378229072, + "c4": -18.05573563230656, + "c5": 13.009097994217, + "c6": 4.218052795799739, + "c7": -2.206912721122901 }, - "vertexSeeds": { - "c1": 1.5058396599258856, - "c2": 1.3562760376034113, - "c3": 1.3577389591859046, - "c4": 1.440781646273612, - "c5": 1.4697449387816246, - "c6": 1.3885762814627503, - "c7": 1.5035157797904528 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753117, + "c3": 1.5950069348127591, + "c4": 1.27600554785021, + "c5": 0.9570041608876573, + "c6": 0.638002773925105, + "c7": 0.3190013869625525 }, "rgb": [58, 15, 49] }, @@ -221352,23 +221352,23 @@ "year": 1771, "resistanceReported": false, "duration": 66268800, - "curveSeeds": { - "c1": 32.14808189760217, - "c2": 13.962911327189559, - "c3": 4.882681979127966, - "c4": 2.9503201676561446, - "c5": -35.34672749856882, - "c6": -55.35514275966294, - "c7": -9.88390763055844 + "points": { + "c1": 27.980158281477998, + "c2": -13.71574730897197, + "c3": -56.298159013404145, + "c4": 21.35160030639352, + "c5": 43.190846518379445, + "c6": 21.19867310406029, + "c7": 77.09569517137231 }, - "vertexSeeds": { - "c1": 0.6199160122855163, - "c2": 0.588710756839905, - "c3": 0.6050067843511356, - "c4": 0.6162359017607106, - "c5": 0.6022391705710799, - "c6": 0.6246597024987559, - "c7": 0.6013997590204269 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.9708737864077672, + "c3": 0.8090614886731395, + "c4": 0.6472491909385119, + "c5": 0.4854368932038841, + "c6": 0.3236245954692564, + "c7": 0.1618122977346277 }, "rgb": [77, 76, 132] }, @@ -221379,23 +221379,23 @@ "year": 1770, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 13.439345153668242, - "c2": -17.54975542103265, - "c3": 27.98094650893607, - "c4": 2.7240238312762983, - "c5": 28.880647271733167, - "c6": -13.898090017848968, - "c7": -3.0525665770500297 + "points": { + "c1": -23.60649555149567, + "c2": 20.68825862582169, + "c3": -19.101108358201245, + "c4": -31.606432762196818, + "c5": -9.686763779802614, + "c6": -12.432166709509804, + "c7": 28.794718908362725 }, - "vertexSeeds": { - "c1": 2.1746015980753195, - "c2": 2.4546809398216904, - "c3": 2.356387231211362, - "c4": 2.435068834581012, - "c5": 2.513419113465698, - "c6": 2.2511607867402073, - "c7": 2.507060283284228 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690722, + "c3": 3.028201571890892, + "c4": 2.422561257512715, + "c5": 1.8169209431345348, + "c6": 1.2112806287563576, + "c7": 0.6056403143781801 }, "rgb": [86, 146, 138] }, @@ -221406,23 +221406,23 @@ "year": 1770, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -8.930555404638781, - "c2": -15.688872383688603, - "c3": 12.67657742568634, - "c4": -14.859868937190477, - "c5": 10.612350491478786, - "c6": 8.153030928077996, - "c7": -25.1835302849838 + "points": { + "c1": -3.7533361562741625, + "c2": -11.758380688078283, + "c3": 5.422628103662774, + "c4": -4.5155677521715205, + "c5": -7.071967001369902, + "c6": 10.089541745248852, + "c7": 2.1272577264523136 }, - "vertexSeeds": { - "c1": 5.200401864824281, - "c2": 5.505406288137405, - "c3": 5.680182098591272, - "c4": 5.331856513573771, - "c5": 5.060133700951842, - "c6": 5.598554081428682, - "c7": 5.153358769928926 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.8885806749884475, + "c4": 5.510864539990756, + "c5": 4.133148404993063, + "c6": 2.7554322699953846, + "c7": 1.3777161349976923 }, "rgb": [238, 201, 159] }, @@ -221433,23 +221433,23 @@ "year": 1770, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 8.048910908735497, - "c2": -1.2342983010812851, - "c3": 5.305556775131802, - "c4": -0.017692121774555147, - "c5": -20.794063315538537, - "c6": -10.220753729911465, - "c7": -25.424694732722134 + "points": { + "c1": -8.321344243755284, + "c2": -17.31659886276855, + "c3": 15.341319486174957, + "c4": 13.619173303031399, + "c5": 7.044681204807173, + "c6": -24.874832161925703, + "c7": -28.442823527078325 }, - "vertexSeeds": { - "c1": 4.594816516907526, - "c2": 4.249014799591938, - "c3": 4.695134031293356, - "c4": 4.207587156984538, - "c5": 4.271130520375219, - "c6": 4.831643164682377, - "c7": 4.235379731958414 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -221460,23 +221460,23 @@ "year": 1770, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": -40.05122933666232, - "c2": -38.58308810318237, - "c3": 1.8771368345336157, - "c4": 49.05009096270544, - "c5": -27.704764970797786, - "c6": -27.986433833494022, - "c7": -21.928066034336695 + "points": { + "c1": -42.16072558204312, + "c2": 40.533975962776225, + "c3": -15.451929611022315, + "c4": 42.97638362581783, + "c5": -27.884709943191332, + "c6": -7.254530380969662, + "c7": -0.2954236537212509 }, - "vertexSeeds": { - "c1": 7.151519080582306, - "c2": 7.062536255258971, - "c3": 7.0554963366956365, - "c4": 6.911298971910558, - "c5": 6.869655535164465, - "c6": 7.231919699205482, - "c7": 6.797580954614046 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163668, + "c3": 8.714748035136376, + "c4": 6.971798428109104, + "c5": 5.228848821081834, + "c6": 3.485899214054563, + "c7": 1.7429496070272708 }, "rgb": [77, 76, 132] }, @@ -221487,23 +221487,23 @@ "year": 1771, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": 19.91127475086786, - "c2": -53.82145668688827, - "c3": 21.281592708436975, - "c4": 8.580538551511253, - "c5": 37.71439966221253, - "c6": -20.880939814332905, - "c7": 10.407348165495819 + "points": { + "c1": 23.78984999471278, + "c2": -20.042433278221075, + "c3": -19.142082697747803, + "c4": -38.79827493509603, + "c5": -1.13431523171149, + "c6": 54.04339197586343, + "c7": -36.83078587672054 }, - "vertexSeeds": { - "c1": 5.980003283556798, - "c2": 5.796175216855307, - "c3": 6.035753518671151, - "c4": 5.52243015053334, - "c5": 5.826996280264031, - "c6": 5.827794699460363, - "c7": 5.436611417421949 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [238, 201, 159] }, @@ -221514,23 +221514,23 @@ "year": 1770, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -10.932842062342903, - "c2": 19.558213313798046, - "c3": 9.861429536910471, - "c4": -11.191667152510522, - "c5": 12.513998977926303, - "c6": -18.453005736150242, - "c7": 6.06224859565199 + "points": { + "c1": 20.413409534559175, + "c2": -4.59324318112688, + "c3": 17.46283020530257, + "c4": -12.86564576387524, + "c5": 13.635405312240518, + "c6": 20.357164618711, + "c7": 8.531114804893676 }, - "vertexSeeds": { - "c1": 7.467650604659614, - "c2": 7.538844503286755, - "c3": 6.987511066773372, - "c4": 7.430712143470833, - "c5": 6.8243117715789, - "c6": 7.323346385318307, - "c7": 7.452332798535139 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571427, + "c3": 9.523809523809529, + "c4": 7.61904761904762, + "c5": 5.7142857142857135, + "c6": 3.8095238095238058, + "c7": 1.9047619047619078 }, "rgb": [86, 146, 138] }, @@ -221541,23 +221541,23 @@ "year": 1770, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": 15.170170864793842, - "c2": -12.945066508840386, - "c3": -4.0593255003562625, - "c4": 2.5189999575550033, - "c5": -2.8593430180993984, - "c6": 10.726171511300553, - "c7": 2.8892632750947946 + "points": { + "c1": 8.899495557648702, + "c2": -1.080322747413451, + "c3": -19.569766096394694, + "c4": -19.764166305817824, + "c5": 8.614967490570464, + "c6": 5.12608812364045, + "c7": 15.982302183743553 }, - "vertexSeeds": { - "c1": 7.291184267236478, - "c2": 7.841236717724154, - "c3": 7.04692320736562, - "c4": 7.725066824101031, - "c5": 7.290965130524947, - "c6": 7.81136173636486, - "c7": 7.037735776527607 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450768, + "c3": 9.454461396208965, + "c4": 7.563569116967174, + "c5": 5.672676837725384, + "c6": 3.7817845584835803, + "c7": 1.8908922792417902 }, "rgb": [222, 0, 59] }, @@ -221568,23 +221568,23 @@ "year": 1770, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -23.777502383993568, - "c2": 33.08250670654962, - "c3": 8.082925124560255, - "c4": -24.615326599566796, - "c5": 28.942318637255312, - "c6": 5.6733649304924185, - "c7": -1.8964291224824805 + "points": { + "c1": 0.5177904440846106, + "c2": -17.173804639604896, + "c3": -29.64197027234571, + "c4": -21.504206128504045, + "c5": 12.706637247524121, + "c6": 28.869417675842215, + "c7": -23.216189041260943 }, - "vertexSeeds": { - "c1": 7.515528531723906, - "c2": 7.214600004287896, - "c3": 7.5828866053490325, - "c4": 7.545631686607051, - "c5": 7.392142394251378, - "c6": 7.36603713464944, - "c7": 7.70232149979178 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.178918169209428, + "c3": 9.315765141007851, + "c4": 7.452612112806278, + "c5": 5.589459084604703, + "c6": 3.72630605640315, + "c7": 1.863153028201575 }, "rgb": [238, 201, 159] }, @@ -221595,23 +221595,23 @@ "year": 1770, "resistanceReported": false, "duration": 8985600, - "curveSeeds": { - "c1": 19.28470556328834, - "c2": -15.943956879010914, - "c3": 8.392656302125797, - "c4": 7.449835302185086, - "c5": -15.881685134699698, - "c6": 2.6459132882609637, - "c7": -13.533489011947127 + "points": { + "c1": -21.551047631881765, + "c2": 3.0486376018048524, + "c3": -6.684133855510991, + "c4": -17.86048412961604, + "c5": -16.42589555763266, + "c6": -1.6832413209668076, + "c7": -20.214552570441796 }, - "vertexSeeds": { - "c1": 7.8956808470393804, - "c2": 7.159965752557417, - "c3": 7.896619322242056, - "c4": 7.396374125442849, - "c5": 7.261799270236432, - "c6": 7.42176491990341, - "c7": 7.675178738468523 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [238, 201, 159] }, @@ -221622,23 +221622,23 @@ "year": 1770, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -4.23814807624249, - "c2": -14.318811388154902, - "c3": 6.861723915233274, - "c4": -16.891880988465683, - "c5": -11.0681675432351, - "c6": 11.072685195170084, - "c7": -17.339548343995673 + "points": { + "c1": 3.6119234626045937, + "c2": -2.7268723029375934, + "c3": 14.60161539731029, + "c4": 16.051757164907208, + "c5": -3.2861248514047787, + "c6": -21.279979145196993, + "c7": 2.2665493611393437 }, - "vertexSeeds": { - "c1": 4.017811995223896, - "c2": 3.881074678493685, - "c3": 4.145939841332675, - "c4": 4.174052041420089, - "c5": 4.306395640631753, - "c6": 4.109210681597498, - "c7": 4.181775728018991 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [58, 15, 49] }, @@ -221649,23 +221649,23 @@ "year": 1770, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 11.102264581359343, - "c2": 18.931902993322225, - "c3": 3.2244011177925955, - "c4": 17.070736161805264, - "c5": -13.332536495113603, - "c6": -23.633329363945446, - "c7": -2.1770015327004906 + "points": { + "c1": -24.552006977519905, + "c2": -6.541932653607354, + "c3": 19.947728193896403, + "c4": -28.474658611240862, + "c5": 2.733761119888186, + "c6": -11.958223834035486, + "c7": -7.464570918983092 }, - "vertexSeeds": { - "c1": 3.4759879707662207, - "c2": 3.8214905088320332, - "c3": 3.3516268111840195, - "c4": 3.570490046029637, - "c5": 3.396820959341698, - "c6": 3.636571143377395, - "c7": 3.335316006113434 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [58, 15, 49] }, @@ -221676,23 +221676,23 @@ "year": 1770, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": 2.461720674239128, - "c2": -15.667628662426054, - "c3": -8.400145237894527, - "c4": 17.564809686551747, - "c5": -11.82096954578399, - "c6": -5.375947491450907, - "c7": -7.775446359570964 + "points": { + "c1": 14.442517367328577, + "c2": 7.101368648110313, + "c3": 3.5120141203159676, + "c4": -11.075422585926919, + "c5": -3.7784742886450537, + "c6": 1.860269738476255, + "c7": 18.921840209240727 }, - "vertexSeeds": { - "c1": 4.264526572032839, - "c2": 4.246927996958312, - "c3": 4.268126863355543, - "c4": 4.196046700771489, - "c5": 3.832895605325833, - "c6": 4.131219913385596, - "c7": 3.8244147563350523 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -221703,23 +221703,23 @@ "year": 1770, "resistanceReported": false, "duration": 8208000, - "curveSeeds": { - "c1": -10.208234872748296, - "c2": -11.547229419692634, - "c3": -3.824615702990098, - "c4": 15.158438981907132, - "c5": 8.07889646764195, - "c6": 8.053288261403598, - "c7": -6.786670704724555 + "points": { + "c1": -13.68925527449558, + "c2": 9.138059931252243, + "c3": -10.786859981820685, + "c4": 10.998932524968986, + "c5": 15.781796102298799, + "c6": 9.365816472881171, + "c7": 17.334367060785894 }, - "vertexSeeds": { - "c1": 6.652379343609696, - "c2": 6.041121201397142, - "c3": 6.363183215805816, - "c4": 5.8830199611182445, - "c5": 6.429953677144139, - "c6": 5.7908562433543285, - "c7": 6.779852535317864 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -221730,23 +221730,23 @@ "year": 1770, "resistanceReported": true, "duration": 31363200, - "curveSeeds": { - "c1": -27.434420211840425, - "c2": -22.453987626430553, - "c3": 37.0753237530965, - "c4": -42.936748547825424, - "c5": -43.67989342237435, - "c6": 33.961204777070904, - "c7": -26.43802898907467 + "points": { + "c1": -10.211760677039926, + "c2": 28.76549482482278, + "c3": -6.671807564572845, + "c4": 34.681643255542824, + "c5": 33.40577993859375, + "c6": -24.560778891002595, + "c7": 1.9263698585940432 }, - "vertexSeeds": { - "c1": 5.350596790742419, - "c2": 4.3540388539670145, - "c3": 4.689091849023494, - "c4": 4.665790676035696, - "c5": 5.096023670554797, - "c6": 5.4026438470182185, - "c7": 4.1371391064135485 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583912, + "c3": 6.657420249653256, + "c4": 5.325936199722606, + "c5": 3.994452149791956, + "c6": 2.662968099861303, + "c7": 1.33148404993065 }, "rgb": [86, 146, 138] }, @@ -221757,23 +221757,23 @@ "year": 1770, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -2.8434188939941194, - "c2": 0.843274328617575, - "c3": -28.398385458004235, - "c4": -3.5212592181101847, - "c5": -6.813095371262573, - "c6": 31.547486261514422, - "c7": -4.012143135642166 + "points": { + "c1": 36.54037531284021, + "c2": -5.351348944132617, + "c3": 30.112290224402486, + "c4": -3.1645428605794095, + "c5": 34.93915029594558, + "c6": -25.57915852907716, + "c7": 22.066022106646827 }, - "vertexSeeds": { - "c1": 6.795553580923183, - "c2": 6.671531881429119, - "c3": 6.7143189581850224, - "c4": 6.791620639919324, - "c5": 6.619949378046484, - "c6": 6.670972203788861, - "c7": 6.78547591440966 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117873, + "c3": 8.113730929264937, + "c4": 6.490984743411937, + "c5": 4.868238557558937, + "c6": 3.245492371705936, + "c7": 1.6227461858530003 }, "rgb": [86, 146, 138] }, @@ -221784,23 +221784,23 @@ "year": 1770, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -9.054698847661292, - "c2": -11.903499546575055, - "c3": 4.57733141467569, - "c4": 12.363805684976228, - "c5": 39.79645748575615, - "c6": 25.696446308685893, - "c7": -18.92969063728367 + "points": { + "c1": -20.901088959062264, + "c2": 10.874178561009494, + "c3": -48.07806052954894, + "c4": -39.90055696921686, + "c5": 5.053907455335846, + "c6": 37.05761078677223, + "c7": -8.697501615868347 }, - "vertexSeeds": { - "c1": 5.3090173841545845, - "c2": 5.318045992517962, - "c3": 5.287980596381744, - "c4": 5.0471605901076, - "c5": 5.503453933143621, - "c6": 5.4171393662034815, - "c7": 5.169722393080366 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463252, + "c3": 6.588072122052695, + "c4": 5.27045769764216, + "c5": 3.952843273231626, + "c6": 2.635228848821091, + "c7": 1.317614424410535 }, "rgb": [77, 76, 132] }, @@ -221811,23 +221811,23 @@ "year": 1770, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 32.398435246506565, - "c2": -4.206921047142643, - "c3": -2.952211738352432, - "c4": 30.58196283429139, - "c5": -38.64733114494947, - "c6": -39.173112333988854, - "c7": 3.6026894160673564 + "points": { + "c1": 22.40025315164145, + "c2": -33.25834529754985, + "c3": -43.30066658859124, + "c4": 8.153440495382625, + "c5": 28.520105859304394, + "c6": -38.43505947256553, + "c7": -13.885432073007124 }, - "vertexSeeds": { - "c1": 2.1178756476683938, - "c2": 2.1178756476683938, - "c3": 2.1178756476683938, - "c4": 2.1178756476683938, - "c5": 2.1178756476683938, - "c6": 2.1178756476683938, - "c7": 2.1178756476683938 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -221838,23 +221838,23 @@ "year": 1770, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -30.311511368062412, - "c2": 32.89398131989046, - "c3": -25.546203285811984, - "c4": -31.620382034944885, - "c5": -7.05010763037442, - "c6": -8.069100107160988, - "c7": -20.952678512085086 + "points": { + "c1": 3.705766667823596, + "c2": -15.504554264322746, + "c3": 7.9256196242300945, + "c4": -14.68983982840248, + "c5": -30.760761368154533, + "c6": 6.120968219021826, + "c7": -27.926017665500044 }, - "vertexSeeds": { - "c1": 2.244248566611147, - "c2": 2.2486718725848487, - "c3": 2.2448881040739948, - "c4": 2.238733120781331, - "c5": 2.25306130119351, - "c6": 2.2497448811933216, - "c7": 2.23937464459903 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.2454923717059794, + "c3": 2.7045769764216137, + "c4": 2.1636615811373017, + "c5": 1.6227461858529897, + "c6": 1.0818307905686777, + "c7": 0.540915395284312 }, "rgb": [77, 76, 132] }, @@ -221865,23 +221865,23 @@ "year": 1770, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": 14.506566024755621, - "c2": -24.114101504012567, - "c3": -45.77986294074463, - "c4": -8.979222031200777, - "c5": -10.943548226180532, - "c6": -33.11940704196698, - "c7": 18.389901808421577 + "points": { + "c1": 44.29186812591745, + "c2": 51.43722810681944, + "c3": 50.51032477601681, + "c4": -9.265904346037594, + "c5": -31.946535231355284, + "c6": 28.715261806623168, + "c7": 53.199051305972425 }, - "vertexSeeds": { - "c1": 2.955751667264653, - "c2": 3.164097012297392, - "c3": 3.179671085835993, - "c4": 3.070922403851725, - "c5": 3.157387519814045, - "c6": 3.0362792547444712, - "c7": 3.097945002476138 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.60471567267684, + "c3": 3.837263060564027, + "c4": 3.0698104484512236, + "c5": 2.30235783633842, + "c6": 1.5349052242256165, + "c7": 0.7674526121128035 }, "rgb": [58, 15, 49] }, @@ -221892,23 +221892,23 @@ "year": 1770, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": 0.7605430929412087, - "c2": -0.5620595428691644, - "c3": -0.7426470849595219, - "c4": -2.4731331599021935, - "c5": 8.758884812036477, - "c6": -15.692013505220295, - "c7": 4.828361108264598 + "points": { + "c1": 3.4123859626965825, + "c2": 14.005750516180427, + "c3": -15.24626727686211, + "c4": -16.258071653969104, + "c5": 10.326604623730326, + "c6": 11.626103710212234, + "c7": 6.976086211489395 }, - "vertexSeeds": { - "c1": 4.310540405150206, - "c2": 4.731643995158442, - "c3": 4.420113168431083, - "c4": 4.63299373991287, - "c5": 4.6153044792830675, - "c6": 4.337785034355932, - "c7": 4.3068824607064435 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975039, + "c3": 5.732778548312528, + "c4": 4.586222838650026, + "c5": 3.4396671289875154, + "c6": 2.293111419325013, + "c7": 1.1465557096625025 }, "rgb": [86, 146, 138] }, @@ -221919,23 +221919,23 @@ "year": 1770, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -30.49432624419348, - "c2": 13.241218849303298, - "c3": 16.843770244319725, - "c4": -9.143137533582586, - "c5": -12.821312703762217, - "c6": 26.343212593391453, - "c7": 6.408425697742391 + "points": { + "c1": -30.291454234570764, + "c2": -31.529134033420302, + "c3": 3.347479006229399, + "c4": -15.06052888209788, + "c5": 0.4853884583091599, + "c6": 32.86084247465267, + "c7": 2.1046783281828993 }, - "vertexSeeds": { - "c1": 3.741079789685672, - "c2": 3.830065838578759, - "c3": 3.855578659847874, - "c4": 3.9002269052903187, - "c5": 3.8819072600271616, - "c6": 3.7002915423944187, - "c7": 3.677392031310513 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.7975034674063775, + "c3": 4.831252889505321, + "c4": 3.865002311604255, + "c5": 2.8987517337031887, + "c6": 1.9325011558021326, + "c7": 0.9662505779010663 }, "rgb": [222, 0, 59] }, @@ -221946,23 +221946,23 @@ "year": 1770, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -19.609705965465423, - "c2": 6.999812328813981, - "c3": 11.396653401429482, - "c4": 2.451333722658241, - "c5": -8.285639761258238, - "c6": 6.347130165861444, - "c7": -37.63792470125914 + "points": { + "c1": -36.700378188338206, + "c2": 34.13610226081728, + "c3": 28.48552312808023, + "c4": -8.010199643529688, + "c5": -21.141763048225254, + "c6": -36.924296248687945, + "c7": 4.45178760848588 }, - "vertexSeeds": { - "c1": 2.5085867138191977, - "c2": 2.4665554577438464, - "c3": 2.5096426587299376, - "c4": 2.4636657660174848, - "c5": 2.334930310184787, - "c6": 2.455730466649657, - "c7": 2.6624334666220872 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.938973647711513, + "c3": 3.2824780397595963, + "c4": 2.625982431807674, + "c5": 1.9694868238557566, + "c6": 1.3129912159038395, + "c7": 0.6564956079519197 }, "rgb": [58, 15, 49] }, @@ -221973,23 +221973,23 @@ "year": 1770, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 45.61503457990954, - "c2": -20.23046839443991, - "c3": 46.871643308241154, - "c4": 23.966852234941264, - "c5": 8.6097458332234, - "c6": -40.732430948656464, - "c7": 0.9740293018911004 + "points": { + "c1": -33.225793548592605, + "c2": 25.187903790277566, + "c3": 35.51124628777942, + "c4": -29.915640066318566, + "c5": 27.273141801795795, + "c6": -20.78733501588121, + "c7": -38.07118973425825 }, - "vertexSeeds": { - "c1": 2.8654399857119217, - "c2": 3.272115033622567, - "c3": 3.1217236017297, - "c4": 3.161334499152398, - "c5": 3.1441762232401675, - "c6": 3.21434257853803, - "c7": 3.27187594522043 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918171, + "c3": 3.9759593157651376, + "c4": 3.1807674526121117, + "c5": 2.3855755894590853, + "c6": 1.590383726306059, + "c7": 0.7951918631530264 }, "rgb": [238, 201, 159] }, @@ -222000,23 +222000,23 @@ "year": 1770, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 19.763513017227403, - "c2": 3.732722695479424, - "c3": 37.80273318699906, - "c4": 4.7353904696419775, - "c5": 14.348695196850265, - "c6": 24.95070328634884, - "c7": 16.429420150479146 + "points": { + "c1": -39.29510523336815, + "c2": 6.402637812885423, + "c3": -32.94640156624823, + "c4": 8.969190778814493, + "c5": -20.637995355257775, + "c6": 17.926585834320242, + "c7": -19.488941399752882 }, - "vertexSeeds": { - "c1": 1.0847192013553477, - "c2": 0.9863368680529758, - "c3": 1.076400236862846, - "c4": 1.0147591030966336, - "c5": 1.0313341785025922, - "c6": 1.0082465118942536, - "c7": 0.9811598136512528 + "offsets": { + "c1": 1.8446601941747571, + "c2": 1.5811373092926497, + "c3": 1.3176144244105406, + "c4": 1.0540915395284332, + "c5": 0.790568654646324, + "c6": 0.5270457697642166, + "c7": 0.26352288488210923 }, "rgb": [86, 146, 138] }, @@ -222027,23 +222027,23 @@ "year": 1770, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 3.609567623443624, - "c2": 13.37790215166951, - "c3": 7.487177556658992, - "c4": -22.16717608552374, - "c5": 8.784559572531471, - "c6": 22.051607228793763, - "c7": 35.8045068319454 + "points": { + "c1": -7.976142222037701, + "c2": -13.383075230844582, + "c3": -23.60681307948819, + "c4": -29.984740520653222, + "c5": 35.7969871972804, + "c6": -8.011798723856792, + "c7": -35.438395413940015 }, - "vertexSeeds": { - "c1": 3.162087853916903, - "c2": 2.8448380968419142, - "c3": 3.1010705022768095, - "c4": 2.5743543936724005, - "c5": 2.7823651533382048, - "c6": 3.0378340112449527, - "c7": 2.7908751306509583 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636616, + "c3": 3.8141470180305115, + "c4": 3.0513176144244105, + "c5": 2.288488210818309, + "c6": 1.5256588072122044, + "c7": 0.7628294036061031 }, "rgb": [238, 201, 159] }, @@ -222054,23 +222054,23 @@ "year": 1770, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 38.159313608871486, - "c2": -14.199649936979242, - "c3": -11.81777627768443, - "c4": 37.50021096160778, - "c5": 40.30838372507061, - "c6": 23.19298836915297, - "c7": 25.161914113271038 + "points": { + "c1": -23.555473086287147, + "c2": -34.88542774618645, + "c3": -29.726000263322415, + "c4": 38.06844778204069, + "c5": 49.31908145269719, + "c6": -11.997198202488704, + "c7": -45.590488202846444 }, - "vertexSeeds": { - "c1": 4.611504076596958, - "c2": 4.436603278215798, - "c3": 4.746406734506581, - "c4": 4.716829961046908, - "c5": 4.682755702532393, - "c6": 4.461229241570045, - "c7": 4.369326569610669 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934813, + "c3": 5.709662505779013, + "c4": 4.567730004623202, + "c5": 3.4257975034674013, + "c6": 2.283865002311601, + "c7": 1.1419325011558006 }, "rgb": [238, 201, 159] }, @@ -222081,23 +222081,23 @@ "year": 1770, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -17.822860715807018, - "c2": 2.8118939127003912, - "c3": 12.410119614699994, - "c4": -28.183586194654314, - "c5": -40.57484395233385, - "c6": -26.86782703195416, - "c7": 32.108483056669414 + "points": { + "c1": -12.856940845886477, + "c2": -21.695951053359686, + "c3": 20.952898603409665, + "c4": -20.606648835519245, + "c5": -7.314140664930392, + "c6": 32.33034527696823, + "c7": -3.0190504592096445 }, - "vertexSeeds": { - "c1": 5.999932908192954, - "c2": 6.216137832116788, - "c3": 6.174815834292296, - "c4": 5.939389426092426, - "c5": 6.115464654126455, - "c6": 6.279811986202563, - "c7": 5.824366011559135 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112344, + "c3": 7.535829865926953, + "c4": 6.028663892741562, + "c5": 4.521497919556172, + "c6": 3.014331946370781, + "c7": 1.5071659731853906 }, "rgb": [58, 15, 49] }, @@ -222108,23 +222108,23 @@ "year": 1770, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 20.25136177772179, - "c2": -33.69591382757377, - "c3": -14.250981021854855, - "c4": 7.923494600851328, - "c5": 22.984501873326742, - "c6": -6.94191907579534, - "c7": -20.960907622262155 + "points": { + "c1": -27.163958995661062, + "c2": -41.870126601638205, + "c3": 19.30555623454469, + "c4": -20.44046841647569, + "c5": -8.179809814248252, + "c6": 28.423526642373147, + "c7": -30.230048729312117 }, - "vertexSeeds": { - "c1": 2.9413877838563782, - "c2": 3.0617683921294976, - "c3": 2.859779528118563, - "c4": 2.776142199836331, - "c5": 2.937175435492484, - "c6": 3.0092916603155433, - "c7": 2.847400424457832 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475725, + "c3": 3.7216828478964437, + "c4": 2.977346278317153, + "c5": 2.2330097087378626, + "c6": 1.4886731391585726, + "c7": 0.7443365695792904 }, "rgb": [58, 15, 49] }, @@ -222135,23 +222135,23 @@ "year": 1770, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 3.6076143694187266, - "c2": 41.50895463930436, - "c3": 20.30609941680521, - "c4": -29.954978109837537, - "c5": 33.70010785349503, - "c6": -4.5244014340634635, - "c7": 32.35102975444275 + "points": { + "c1": 9.37993707130898, + "c2": -10.181970891591739, + "c3": -37.56718824809583, + "c4": -43.928978981428706, + "c5": 41.91871111726074, + "c6": -15.493006225410472, + "c7": 37.12831981788153 }, - "vertexSeeds": { - "c1": 6.382876757216156, - "c2": 5.833641470450731, - "c3": 6.022346790342661, - "c4": 6.4120176955313, - "c5": 6.380760179802178, - "c6": 5.931234902625853, - "c7": 6.538238271255493 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595006, + "c3": 7.813222376329168, + "c4": 6.250577901063332, + "c5": 4.687933425797496, + "c6": 3.125288950531673, + "c7": 1.5626444752658222 }, "rgb": [58, 15, 49] }, @@ -222162,23 +222162,23 @@ "year": 1770, "resistanceReported": false, "duration": 6739200, - "curveSeeds": { - "c1": 15.757952862501615, - "c2": -10.930728799057686, - "c3": -16.20219815536455, - "c4": -6.933294481299361, - "c5": 8.068706043716194, - "c6": -2.435754910710596, - "c7": -7.890935944885973 + "points": { + "c1": 12.784821525727825, + "c2": -5.28154463689334, + "c3": -11.618852883402319, + "c4": 11.572284498524663, + "c5": 14.413764918265148, + "c6": 3.625969241980929, + "c7": -6.795045731210015 }, - "vertexSeeds": { - "c1": 4.724477790125, - "c2": 4.782050823818115, - "c3": 4.715883098202262, - "c4": 5.03818994793073, - "c5": 4.998412659519432, - "c6": 4.521034334819327, - "c7": 5.153631311208888 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940361, + "c3": 6.287563569116967, + "c4": 5.030050855293574, + "c5": 3.7725381414701804, + "c6": 2.515025427646787, + "c7": 1.2575127138233935 }, "rgb": [58, 15, 49] }, @@ -222189,23 +222189,23 @@ "year": 1770, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 9.660763380125058, - "c2": -20.23697085289117, - "c3": 0.34470245430425805, - "c4": 22.796875544285502, - "c5": -16.33695601988475, - "c6": 29.852148120189167, - "c7": 30.217065600584537 + "points": { + "c1": -23.15573041994341, + "c2": -10.6122463383313, + "c3": -17.301818019875448, + "c4": -7.285396889054873, + "c5": -23.403109792310175, + "c6": 14.256349667966212, + "c7": -16.961812720832487 }, - "vertexSeeds": { - "c1": 1.509015979240005, - "c2": 1.5953461223259888, - "c3": 1.5324069458879044, - "c4": 1.5928003401270834, - "c5": 1.6185970091674535, - "c6": 1.6021112934393211, - "c7": 1.5204146029343237 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499305, + "c3": 2.01109570041609, + "c4": 1.6088765603328714, + "c5": 1.2066574202496525, + "c6": 0.8044382801664336, + "c7": 0.40221914008321885 }, "rgb": [222, 0, 59] }, @@ -222216,23 +222216,23 @@ "year": 1770, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 36.868879607690275, - "c2": -6.187459293125691, - "c3": 30.855142578180818, - "c4": -26.199298565614335, - "c5": -12.556442218283522, - "c6": -10.2933018076939, - "c7": 34.780384908629145 + "points": { + "c1": -2.0876477531093656, + "c2": -39.513935366435675, + "c3": 22.64344106548255, + "c4": 37.79341125671506, + "c5": 25.517392018717246, + "c6": -26.5576464261291, + "c7": 23.04855580125799 }, - "vertexSeeds": { - "c1": 5.828072486460605, - "c2": 5.797947700779589, - "c3": 5.845944914118734, - "c4": 5.812465894433883, - "c5": 5.601550435346606, - "c6": 5.726282688642688, - "c7": 5.576968960496332 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348138, + "c3": 7.096625057790102, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160468, + "c7": 1.419325011558009 }, "rgb": [86, 146, 138] }, @@ -222243,23 +222243,23 @@ "year": 1770, "resistanceReported": false, "duration": 6566400, - "curveSeeds": { - "c1": 16.628834443521427, - "c2": -10.634442427121602, - "c3": 12.311492573811904, - "c4": 1.6801887385415348, - "c5": 8.96268493414264, - "c6": 14.004967137613665, - "c7": 16.688977250001898 + "points": { + "c1": -15.426686902123684, + "c2": -17.85452596615965, + "c3": 14.097483887472244, + "c4": -12.0859638945389, + "c5": 9.30044210768909, + "c6": -13.300360562476506, + "c7": 15.124420084705541 }, - "vertexSeeds": { - "c1": 3.111014220021013, - "c2": 3.0478358104516965, - "c3": 2.8721790534700884, - "c4": 2.9184905797841036, - "c5": 3.0118880978670846, - "c6": 2.786424954071734, - "c7": 2.80784319666632 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515954, + "c3": 3.7447988904299576, + "c4": 2.995839112343969, + "c5": 2.2468793342579727, + "c6": 1.4979195561719845, + "c7": 0.7489597780859882 }, "rgb": [222, 0, 59] }, @@ -222270,23 +222270,23 @@ "year": 1770, "resistanceReported": false, "duration": 6480000, - "curveSeeds": { - "c1": 0.6016655438658276, - "c2": -9.761971897123566, - "c3": 8.5638620513662, - "c4": 0.34859114891729703, - "c5": 11.809925339738843, - "c6": -13.924695164910133, - "c7": -0.8648423321807961 + "points": { + "c1": 9.395207087607023, + "c2": -6.686829216062916, + "c3": -10.453543666529729, + "c4": 3.283127930416992, + "c5": 3.2922658154121223, + "c6": -1.2797235361563715, + "c7": 10.619507154704216 }, - "vertexSeeds": { - "c1": 2.638239792280189, - "c2": 2.6053107415206025, - "c3": 2.607506807306041, - "c4": 2.7689191034000755, - "c5": 2.970696102151252, - "c6": 2.95976765014742, - "c7": 2.7182370273464005 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556173, + "c3": 3.767914932963478, + "c4": 3.0143319463707834, + "c5": 2.2607489597780885, + "c6": 1.507165973185394, + "c7": 0.7535829865926996 }, "rgb": [238, 201, 159] }, @@ -222297,23 +222297,23 @@ "year": 1770, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 23.524784659851548, - "c2": -23.832923513435432, - "c3": 11.856279425810065, - "c4": -17.2502233472214, - "c5": -4.575709674998713, - "c6": 17.032932394935806, - "c7": -39.10642446343597 + "points": { + "c1": 26.339917723002714, + "c2": -20.82159395276765, + "c3": -32.97468264116459, + "c4": -29.135496022903997, + "c5": 28.485082500333036, + "c6": -9.110351132134127, + "c7": 28.29327995853089 }, - "vertexSeeds": { - "c1": 7.995715790993526, - "c2": 7.55448549345211, - "c3": 8.17901002289697, - "c4": 8.051290956759077, - "c5": 7.942871972994018, - "c6": 8.018376015216258, - "c7": 7.721802244214729 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973657, + "c3": 9.754969949144702, + "c4": 7.803975959315771, + "c5": 5.852981969486817, + "c6": 3.9019879796578856, + "c7": 1.9509939898289541 }, "rgb": [222, 0, 59] }, @@ -222324,23 +222324,23 @@ "year": 1770, "resistanceReported": false, "duration": 6220800, - "curveSeeds": { - "c1": -12.16979844018978, - "c2": -8.14073205039677, - "c3": -0.2343399405089137, - "c4": 8.809608642338237, - "c5": -5.5000895329133055, - "c6": 1.0731124156828962, - "c7": 9.02395298251879 + "points": { + "c1": -11.712805360530584, + "c2": 5.536782384536256, + "c3": -15.596262218154866, + "c4": -4.279577813238687, + "c5": 17.093185961014896, + "c6": 5.053766891275643, + "c7": 13.021683867004032 }, - "vertexSeeds": { - "c1": 8.56675592724082, - "c2": 8.942858555664401, - "c3": 9.117195334379899, - "c4": 8.815394586358265, - "c5": 8.328561953573834, - "c6": 8.383610432431116, - "c7": 9.051575084987398 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547851, + "c3": 11.234396671289877, + "c4": 8.987517337031893, + "c5": 6.740638002773919, + "c6": 4.493758668515946, + "c7": 2.246879334257973 }, "rgb": [77, 76, 132] }, @@ -222351,23 +222351,23 @@ "year": 1770, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": -38.422424696719695, - "c2": -17.163879261233195, - "c3": 35.459331919978226, - "c4": -36.284539600031486, - "c5": -38.46949052914836, - "c6": 36.54269802101079, - "c7": 29.5463826826183 + "points": { + "c1": -8.71593071555943, + "c2": 4.7336675668641774, + "c3": 42.606406479836664, + "c4": -31.599145428312532, + "c5": 49.44007375315425, + "c6": 48.330300402021834, + "c7": -50.54696226350682 }, - "vertexSeeds": { - "c1": 9.336568994421766, - "c2": 8.982821053961308, - "c3": 8.72331063336703, - "c4": 8.669623392224663, - "c5": 8.829650501390422, - "c6": 9.114337173835228, - "c7": 9.047398103633295 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668519, + "c3": 11.303744798890436, + "c4": 9.042995839112333, + "c5": 6.78224687933425, + "c6": 4.521497919556166, + "c7": 2.260748959778083 }, "rgb": [238, 201, 159] }, @@ -222378,23 +222378,23 @@ "year": 1771, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": 49.8933414331631, - "c2": -51.22772753068683, - "c3": -41.87191025632907, - "c4": -29.866447278509824, - "c5": 22.254417496103343, - "c6": 55.34644080440242, - "c7": -38.061035304130314 + "points": { + "c1": 32.059711531966016, + "c2": -44.732818956406405, + "c3": -5.963283088796551, + "c4": -29.289800056624003, + "c5": -38.17724576726442, + "c6": 41.79064693071061, + "c7": 54.002003113798565 }, - "vertexSeeds": { - "c1": 3.921007265233047, - "c2": 3.9242597197495375, - "c3": 4.086866865908539, - "c4": 4.182403914443153, - "c5": 4.398985172143249, - "c6": 4.259167223197021, - "c7": 4.229222089750817 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411926, + "c3": 5.409153952843276, + "c4": 4.327323162274619, + "c5": 3.245492371705963, + "c6": 2.163661581137313, + "c7": 1.0818307905686566 }, "rgb": [238, 201, 159] }, @@ -222405,23 +222405,23 @@ "year": 1770, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 12.586607488703834, - "c2": 30.105259761714002, - "c3": 18.402034183807437, - "c4": -10.833802745565755, - "c5": -20.992487904533476, - "c6": 41.10277212176255, - "c7": -8.223038741456534 + "points": { + "c1": 33.31848602316348, + "c2": -26.38079535743523, + "c3": -37.85232773119773, + "c4": -42.23568674471461, + "c5": 16.699046554966856, + "c6": 28.506590591251744, + "c7": 11.34161817763377 }, - "vertexSeeds": { - "c1": 8.924407143865459, - "c2": 8.742454142987897, - "c3": 8.322690918686927, - "c4": 8.331202765123098, - "c5": 8.37694987624447, - "c6": 8.882235251605803, - "c7": 9.023786120867527 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.981969486823852, + "c3": 10.81830790568654, + "c4": 8.654646324549239, + "c5": 6.490984743411926, + "c6": 4.327323162274613, + "c7": 2.1636615811373128 }, "rgb": [238, 201, 159] }, @@ -222432,23 +222432,23 @@ "year": 1770, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": 3.1203069896341376, - "c2": -15.015272148891178, - "c3": 13.368271259777057, - "c4": -8.434440267088506, - "c5": 2.713905445572191, - "c6": 1.9208843712319386, - "c7": 15.44931688128187 + "points": { + "c1": -8.526940828337466, + "c2": -16.749654183584713, + "c3": -2.2094627600128653, + "c4": -15.658464798718875, + "c5": -7.071859418836649, + "c6": -10.585703197532503, + "c7": 15.030777863128378 }, - "vertexSeeds": { - "c1": 7.754348897762877, - "c2": 7.765088343122146, - "c3": 7.615524802200924, - "c4": 7.68857445142628, - "c5": 7.386301208803108, - "c6": 7.713458655885715, - "c7": 7.711040605502709 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410555, + "c3": 9.431345353675447, + "c4": 7.54507628294037, + "c5": 5.6588072122052635, + "c6": 3.772538141470185, + "c7": 1.8862690707350784 }, "rgb": [77, 76, 132] }, @@ -222459,23 +222459,23 @@ "year": 1770, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": 3.3533297394745922, - "c2": -0.3878690466906125, - "c3": -6.500574347989458, - "c4": -9.688805864096128, - "c5": -9.06201134858355, - "c6": -0.16698523686600808, - "c7": 2.2102911381886265 + "points": { + "c1": -10.340860059216633, + "c2": 8.841574620405346, + "c3": 0.2086879693276309, + "c4": 12.288852789011337, + "c5": 11.5791573365326, + "c6": -6.1361708636322625, + "c7": 5.929791278687087 }, - "vertexSeeds": { - "c1": 2.7205659438617533, - "c2": 2.8418381149359453, - "c3": 2.64520592953742, - "c4": 2.467994898666587, - "c5": 2.5171617185646573, - "c6": 2.770718738609203, - "c7": 2.7030893397586038 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [77, 76, 132] }, @@ -222486,23 +222486,23 @@ "year": 1770, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -37.10325300819646, - "c2": 29.0686469949012, - "c3": -29.388497810951478, - "c4": 34.687897344394045, - "c5": 12.171815609723282, - "c6": -20.240717275670313, - "c7": -2.043290741715907 + "points": { + "c1": -16.848300448956156, + "c2": -18.594919561717294, + "c3": 36.88976623717167, + "c4": 22.621489674178115, + "c5": 24.9769829528352, + "c6": 36.90930961060866, + "c7": -5.908972281615853 }, - "vertexSeeds": { - "c1": 2.2919757410136565, - "c2": 2.392098538199601, - "c3": 2.226827162929908, - "c4": 2.1323753163341497, - "c5": 2.1416923413826856, - "c6": 2.0306059795174223, - "c7": 2.090385857257847 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.4674063800277386, + "c3": 2.8895053166897826, + "c4": 2.3116042533518257, + "c5": 1.7337031900138693, + "c6": 1.1558021266759129, + "c7": 0.5779010633379564 }, "rgb": [86, 146, 138] }, @@ -222513,23 +222513,23 @@ "year": 1770, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 15.122767241066015, - "c2": -11.600999959493691, - "c3": 7.65266498764484, - "c4": -30.200217821277356, - "c5": 32.38227216670124, - "c6": 5.347252149813329, - "c7": -15.39288626497548 + "points": { + "c1": -34.70706347710797, + "c2": 31.04854960603356, + "c3": -29.776548428935953, + "c4": -28.802774771948414, + "c5": -28.002158630316604, + "c6": 22.231207923803453, + "c7": 19.447830443059658 }, - "vertexSeeds": { - "c1": 1.8616832044719884, - "c2": 1.8551386534895358, - "c3": 1.72047106151734, - "c4": 1.5954561294637433, - "c5": 1.6163360166727707, - "c6": 1.8192989098280061, - "c7": 1.7791767991676086 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981969, + "c3": 2.2884882108183078, + "c4": 1.8307905686546462, + "c5": 1.3730929264909846, + "c6": 0.9153952843273231, + "c7": 0.45769764216366154 }, "rgb": [222, 0, 59] }, @@ -222540,23 +222540,23 @@ "year": 1770, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 19.04759392812271, - "c2": 25.286220132537203, - "c3": 9.433024772984652, - "c4": -28.40921940266631, - "c5": -34.83787826351564, - "c6": 17.915873095581844, - "c7": 12.58736735070569 + "points": { + "c1": -34.40609954595766, + "c2": 36.44062640357373, + "c3": -4.442270374018776, + "c4": -3.0580215640079516, + "c5": 30.279238491777477, + "c6": -2.233415923368284, + "c7": 19.45506232760421 }, - "vertexSeeds": { - "c1": 2.5800333229960963, - "c2": 2.715773167163024, - "c3": 2.854904410620156, - "c4": 2.9855018826291384, - "c5": 2.615058055363452, - "c6": 2.9916622121173653, - "c7": 2.6915238221491418 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515952, + "c3": 3.74479889042996, + "c4": 2.995839112343969, + "c5": 2.246879334257973, + "c6": 1.497919556171982, + "c7": 0.748959778085991 }, "rgb": [222, 0, 59] }, @@ -222567,23 +222567,23 @@ "year": 1771, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": -23.869991315033815, - "c2": -36.41259998470943, - "c3": -42.00375265916, - "c4": 48.87652342968857, - "c5": -12.381348724507319, - "c6": -19.159630010973256, - "c7": 24.45049247273868 + "points": { + "c1": -43.09516240399809, + "c2": -43.14954120796017, + "c3": 5.522921197308889, + "c4": -44.283155747101155, + "c5": 8.41993866890882, + "c6": -15.178643576095247, + "c7": 27.62351438096278 }, - "vertexSeeds": { - "c1": 4.228905675171635, - "c2": 4.187411036665167, - "c3": 4.258250705407538, - "c4": 4.756069404643632, - "c5": 4.817758543972717, - "c6": 4.756971633740692, - "c7": 4.104353565723671 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -222594,23 +222594,23 @@ "year": 1770, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 26.689337811819236, - "c2": -11.798757266087605, - "c3": 4.022485994917261, - "c4": -8.1241834762846, - "c5": -35.84391409303542, - "c6": -36.942318943789935, - "c7": 11.568619260823247 + "points": { + "c1": -7.208684247456745, + "c2": -19.276415694692957, + "c3": -3.660963033588345, + "c4": 39.967430220497654, + "c5": -35.124473685373154, + "c6": 36.62192048178603, + "c7": 9.643304999033404 }, - "vertexSeeds": { - "c1": 8.658041933556255, - "c2": 9.011046188952463, - "c3": 8.893106367040556, - "c4": 8.915641974941662, - "c5": 9.14519603098747, - "c6": 9.061285210844906, - "c7": 9.295733143480811 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.59223300970874, + "c3": 11.326860841423953, + "c4": 9.061488673139166, + "c5": 6.796116504854381, + "c6": 4.530744336569573, + "c7": 2.2653721682847867 }, "rgb": [58, 15, 49] }, @@ -222621,23 +222621,23 @@ "year": 1770, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -32.92003018434222, - "c2": -7.952283620713072, - "c3": -25.445666516939013, - "c4": -19.778614947917884, - "c5": 26.861826432126264, - "c6": -17.46012421827846, - "c7": 19.701190204699415 + "points": { + "c1": -3.8135865836327554, + "c2": 20.28640443641168, + "c3": 38.78654232433772, + "c4": 1.7842011707908654, + "c5": 17.48971759902456, + "c6": -8.834992422875231, + "c7": 3.5067119114586234 }, - "vertexSeeds": { - "c1": 2.6508378730001287, - "c2": 2.458395495453655, - "c3": 2.505147371485143, - "c4": 2.503309258552314, - "c5": 2.605517652819666, - "c6": 2.6987951681305136, - "c7": 2.5341211040878515 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631069, + "c3": 3.236245954692558, + "c4": 2.5889967637540474, + "c5": 1.9417475728155364, + "c6": 1.2944983818770257, + "c7": 0.6472491909385109 }, "rgb": [222, 0, 59] }, @@ -222648,23 +222648,23 @@ "year": 1770, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 7.6411378019212535, - "c2": -20.413328767271253, - "c3": -26.29984747612516, - "c4": 31.863402444350413, - "c5": -29.256327819878216, - "c6": -28.2782090306605, - "c7": 20.988507810435763 + "points": { + "c1": -28.312436496343306, + "c2": 0.6503659468940057, + "c3": -33.65478922436564, + "c4": -25.65928168422264, + "c5": 5.152412660745448, + "c6": -17.774724320314125, + "c7": -2.6473861215760763 }, - "vertexSeeds": { - "c1": 5.437164635759438, - "c2": 5.463762240620127, - "c3": 5.432794029808003, - "c4": 5.5032763659007715, - "c5": 5.251029683144659, - "c6": 5.244207006431854, - "c7": 5.2996533910881904 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186769, + "c4": 5.34442903374941, + "c5": 4.008321775312079, + "c6": 2.6722145168747193, + "c7": 1.3361072584373597 }, "rgb": [77, 76, 132] }, @@ -222675,23 +222675,23 @@ "year": 1770, "resistanceReported": false, "duration": 6825600, - "curveSeeds": { - "c1": 11.933296518570199, - "c2": -13.477510840138283, - "c3": -14.438356337817128, - "c4": -14.166187382952955, - "c5": -4.227631352227974, - "c6": -9.208262316774604, - "c7": -5.610183094571505 + "points": { + "c1": 18.09083814248425, + "c2": 9.53962017374699, + "c3": 3.129435394445551, + "c4": 9.680207012116359, + "c5": -18.325919464763516, + "c6": -3.824855867038277, + "c7": -3.0723405960978987 }, - "vertexSeeds": { - "c1": 4.6726379248427445, - "c2": 4.482424748596671, - "c3": 4.535855918024685, - "c4": 4.573582288731836, - "c5": 4.563077156901505, - "c6": 4.636934799453759, - "c7": 4.71304821427564 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814144, + "c3": 5.640314378178461, + "c4": 4.5122515025427665, + "c5": 3.384188626907072, + "c6": 2.2561257512713775, + "c7": 1.1280628756356947 }, "rgb": [222, 0, 59] }, @@ -222702,23 +222702,23 @@ "year": 1770, "resistanceReported": false, "duration": 6825600, - "curveSeeds": { - "c1": -3.891328351639599, - "c2": 12.981241381957549, - "c3": -6.442026694080617, - "c4": -3.313065770326917, - "c5": -4.288959760791537, - "c6": 0.6019912436126482, - "c7": -2.760987595554253 + "points": { + "c1": -0.5161890696848879, + "c2": -0.6369020764856543, + "c3": -1.8329474193997015, + "c4": -3.6608975661068754, + "c5": 18.430612734198498, + "c6": 16.062362078784034, + "c7": -3.3678759491492656 }, - "vertexSeeds": { - "c1": 3.90355147366828, - "c2": 3.883839548439606, - "c3": 3.852006169719172, - "c4": 3.8435481659656383, - "c5": 3.804162785068262, - "c6": 3.8955328842644965, - "c7": 3.8458943954354705 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.60332871012483, + "c3": 4.669440591770695, + "c4": 3.7355524734165613, + "c5": 2.801664355062403, + "c6": 1.8677762367082689, + "c7": 0.9338881183541344 }, "rgb": [58, 15, 49] }, @@ -222729,23 +222729,23 @@ "year": 1770, "resistanceReported": false, "duration": 4147200, - "curveSeeds": { - "c1": -11.715196455750329, - "c2": -11.202400818869773, - "c3": -13.688897034201965, - "c4": -4.997258790508866, - "c5": -2.161606668955189, - "c6": -5.206743218034884, - "c7": -8.29492458989511 + "points": { + "c1": -12.327499382613306, + "c2": 2.760069808615487, + "c3": 1.2191273800854034, + "c4": 0.18720507167208567, + "c5": -11.812840583164247, + "c6": 13.674298217598462, + "c7": 2.241889542918951 }, - "vertexSeeds": { - "c1": 3.004514940658361, - "c2": 2.9848828744571545, - "c3": 3.1204308055177896, - "c4": 3.1560013276183523, - "c5": 3.0625400676121206, - "c6": 2.9604436300361328, - "c7": 3.052967901565341 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -222756,23 +222756,23 @@ "year": 1770, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -21.22778527744792, - "c2": 17.00072826656129, - "c3": -34.30241111010653, - "c4": -25.666714988636397, - "c5": -37.667759498817695, - "c6": 18.087854848263632, - "c7": 15.493183368230063 + "points": { + "c1": 21.46145307740261, + "c2": 38.242741844900266, + "c3": -31.83832580788946, + "c4": 2.316155503680612, + "c5": -15.985747883268413, + "c6": -17.640473617506487, + "c7": 25.800505271163402 }, - "vertexSeeds": { - "c1": 7.418712007314268, - "c2": 7.27297833968088, - "c3": 7.014186961120316, - "c4": 7.14242259130172, - "c5": 6.830314199544705, - "c6": 7.325637299677939, - "c7": 7.45303553952003 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -222783,23 +222783,23 @@ "year": 1770, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": -2.718910886140449, - "c2": 16.178402172823183, - "c3": 35.10488121210295, - "c4": 32.332617113664384, - "c5": 13.464276936328979, - "c6": 10.333261476862049, - "c7": -20.04455693241421 + "points": { + "c1": -32.79180867952016, + "c2": -5.74795214997053, + "c3": 22.039903981400542, + "c4": 0.20628835910135734, + "c5": -43.22060129093484, + "c6": 40.9801566772845, + "c7": 46.966456684132666 }, - "vertexSeeds": { - "c1": 5.709765806546179, - "c2": 7.214562466135401, - "c3": 7.218047019983766, - "c4": 5.8712116795292895, - "c5": 7.003993721433407, - "c6": 6.641046381120024, - "c7": 7.356017521892464 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364768, + "c3": 8.830328247803978, + "c4": 7.06426259824318, + "c5": 5.2981969486823886, + "c6": 3.53213129912159, + "c7": 1.7660656495607907 }, "rgb": [77, 76, 132] }, @@ -222810,23 +222810,23 @@ "year": 1771, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": 44.399599504707446, - "c2": 43.573096563803865, - "c3": 30.903976439803948, - "c4": 39.815650007387255, - "c5": 22.662561504589668, - "c6": -10.526911081470068, - "c7": 26.960832867290755 + "points": { + "c1": 2.315141770605102, + "c2": -12.090909115633671, + "c3": 14.846756415549756, + "c4": -25.59923060128999, + "c5": 35.221313226729755, + "c6": 23.790491075411744, + "c7": 45.72481376809845 }, - "vertexSeeds": { - "c1": 1.9577462139931097, - "c2": 1.7899716984147127, - "c3": 1.9168898538947152, - "c4": 1.9088859695438447, - "c5": 1.8217776893538964, - "c6": 1.8851667974068078, - "c7": 1.9078153704563634 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142859, + "c3": 2.3809523809523805, + "c4": 1.9047619047619058, + "c5": 1.4285714285714275, + "c6": 0.9523809523809529, + "c7": 0.4761904761904785 }, "rgb": [238, 201, 159] }, @@ -222837,23 +222837,23 @@ "year": 1770, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 13.019193491047972, - "c2": -8.644844783478728, - "c3": 2.9440722056868296, - "c4": -15.689099343694625, - "c5": 0.8887354357885329, - "c6": 13.355355843171111, - "c7": 4.047260495394241 + "points": { + "c1": 16.470480610314915, + "c2": 11.27582003456235, + "c3": -33.766272805063586, + "c4": 10.620031135030523, + "c5": 5.25661306062846, + "c6": -5.766278561338417, + "c7": -8.66296303221182 }, - "vertexSeeds": { - "c1": 2.3551169411690327, - "c2": 2.1851360327096425, - "c3": 2.1853111265194425, - "c4": 2.1987569707101398, - "c5": 2.2097953399073895, - "c6": 2.154573949406062, - "c7": 2.374030037183256 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.9819694868238558, + "c4": 2.3855755894590844, + "c5": 1.7891816920943133, + "c6": 1.1927877947295422, + "c7": 0.5963938973647711 }, "rgb": [77, 76, 132] }, @@ -222864,23 +222864,23 @@ "year": 1771, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 5.244475311551092, - "c2": -32.502537972061816, - "c3": -14.764343462197907, - "c4": 25.6138222652729, - "c5": 4.3314040620862855, - "c6": -18.459456786091174, - "c7": -30.23245976217254 + "points": { + "c1": 19.728396743566165, + "c2": 50.196683872067624, + "c3": 9.597857575501486, + "c4": -47.99950133798103, + "c5": 5.972336176194197, + "c6": 26.597319953981042, + "c7": 44.81762213672282 }, - "vertexSeeds": { - "c1": 5.688099626356573, - "c2": 5.677757650209414, - "c3": 5.7044577901257885, - "c4": 5.672941280109959, - "c5": 5.585612740245806, - "c6": 5.9954955877546094, - "c7": 5.911236271768291 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.7378640776699, + "c3": 7.281553398058249, + "c4": 5.825242718446596, + "c5": 4.368932038834957, + "c6": 2.9126213592233046, + "c7": 1.4563106796116523 }, "rgb": [58, 15, 49] }, @@ -222891,23 +222891,23 @@ "year": 1770, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 14.395742448616836, - "c2": 34.49867256042336, - "c3": -2.193933550061601, - "c4": 11.70248740076211, - "c5": -7.296377259207802, - "c6": -37.80410902121703, - "c7": -18.036570923239218 + "points": { + "c1": 8.842504666556785, + "c2": 12.341819969615308, + "c3": -31.691071231578846, + "c4": -1.2854834328097553, + "c5": 19.64921770079456, + "c6": -11.08770795692769, + "c7": -11.223181191899233 }, - "vertexSeeds": { - "c1": 1.8374239322612445, - "c2": 1.8956375391778757, - "c3": 1.989170425260846, - "c4": 1.9011351872002422, - "c5": 1.9281314595432637, - "c6": 1.8523880366597871, - "c7": 1.9861844203339698 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.8848821081830787, + "c3": 2.404068423485901, + "c4": 1.9232547387887202, + "c5": 1.4424410540915393, + "c6": 0.9616273693943582, + "c7": 0.480813684697181 }, "rgb": [58, 15, 49] }, @@ -222918,23 +222918,23 @@ "year": 1770, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -35.77303479891113, - "c2": 22.891150870170662, - "c3": -7.870082283897041, - "c4": 17.484541075877026, - "c5": -1.548430886318279, - "c6": -40.70137654480882, - "c7": 24.345151659769527 + "points": { + "c1": -39.228862862774825, + "c2": -28.54849486920392, + "c3": 35.656212160574, + "c4": -1.5583854833983537, + "c5": 7.90639777453746, + "c6": -6.485661093253832, + "c7": 37.1365912790787 }, - "vertexSeeds": { - "c1": 5.9021004210732615, - "c2": 5.897858217973572, - "c3": 5.443298436841434, - "c4": 5.680397192146425, - "c5": 5.580544504543046, - "c6": 5.936186041364055, - "c7": 6.0638015947800135 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629688, + "c3": 7.258437355524732, + "c4": 5.8067498844197925, + "c5": 4.355062413314836, + "c6": 2.9033749422098962, + "c7": 1.4516874711049566 }, "rgb": [58, 15, 49] }, @@ -222945,23 +222945,23 @@ "year": 1770, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 2.5128995019901623, - "c2": -32.95066100831454, - "c3": -40.29938967934436, - "c4": -7.984468749767061, - "c5": 17.252579637669385, - "c6": -39.63052555793922, - "c7": -1.2884702118041247 + "points": { + "c1": -8.99524782962748, + "c2": -34.39164479416398, + "c3": 0.9648323155009209, + "c4": 31.895383742241485, + "c5": 16.741002218957306, + "c6": -41.46549727599387, + "c7": -25.798531934431114 }, - "vertexSeeds": { - "c1": 5.654145077720207, - "c2": 5.654145077720207, - "c3": 5.654145077720207, - "c4": 5.654145077720207, - "c5": 5.654145077720207, - "c6": 5.654145077720207, - "c7": 5.654145077720207 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -222972,23 +222972,23 @@ "year": 1771, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": -38.248997800222426, - "c2": -12.895960343441445, - "c3": 34.148469430553675, - "c4": -15.64899519474642, - "c5": 35.47482758460937, - "c6": 7.990384905239701, - "c7": 20.370329485469924 + "points": { + "c1": -10.631865814047195, + "c2": -36.40194078594917, + "c3": 54.35173094737759, + "c4": 47.521799917491805, + "c5": -33.19989481221426, + "c6": 11.77643635036901, + "c7": -29.38190353859738 }, - "vertexSeeds": { - "c1": 4.580167863969852, - "c2": 4.650471593335883, - "c3": 4.509328161929215, - "c4": 4.550822933152965, - "c5": 4.511269952461633, - "c6": 4.656880353289845, - "c7": 4.608964657504126 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733711, + "c3": 5.594082293111409, + "c4": 4.475265834489131, + "c5": 3.3564493758668554, + "c6": 2.2376329172445786, + "c7": 1.1188164586222769 }, "rgb": [86, 146, 138] }, @@ -222999,23 +222999,23 @@ "year": 1770, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": -15.568289937984161, - "c2": 10.614960293864009, - "c3": -21.50796010997561, - "c4": 10.029880794815725, - "c5": 9.650679506212718, - "c6": 20.169223870692036, - "c7": -12.102852900824088 + "points": { + "c1": -8.484956482148764, + "c2": 1.3708890119536719, + "c3": -6.869012330753012, + "c4": -5.4790659408255245, + "c5": 22.973283622226212, + "c6": 9.990346949853894, + "c7": -9.058767400266376 }, - "vertexSeeds": { - "c1": 7.106771519245263, - "c2": 6.7641208743853705, - "c3": 6.653786861005868, - "c4": 6.8172295704694985, - "c5": 7.091821455449125, - "c6": 7.00849786500596, - "c7": 6.7361593616172115 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962555, + "c3": 8.599167822468798, + "c4": 6.879334257975042, + "c5": 5.159500693481286, + "c6": 3.439667128987512, + "c7": 1.719833564493756 }, "rgb": [77, 76, 132] }, @@ -223026,23 +223026,23 @@ "year": 1770, "resistanceReported": false, "duration": 2419200, - "curveSeeds": { - "c1": 6.382264496511244, - "c2": 7.205502724412835, - "c3": -9.8655167094374, - "c4": -2.039180810355278, - "c5": -5.761554297008564, - "c6": 1.6145546873085976, - "c7": 11.08313171050851 + "points": { + "c1": 0.8921784621826632, + "c2": 8.744906830083117, + "c3": 4.818243012367976, + "c4": -12.220572896685644, + "c5": -1.7266740777801672, + "c6": 9.632312945734125, + "c7": 4.113061481358535 }, - "vertexSeeds": { - "c1": 5.813464520509769, - "c2": 5.882856456160774, - "c3": 6.170527370188831, - "c4": 6.349908788312175, - "c5": 6.4977795147445105, - "c6": 6.049683844371142, - "c7": 6.727251627307917 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -223053,23 +223053,23 @@ "year": 1770, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -32.238536889107586, - "c2": 8.340322851584475, - "c3": 37.38940152512073, - "c4": -13.769649007790292, - "c5": -7.947525142226393, - "c6": -14.068310756201448, - "c7": -31.795339467861357 + "points": { + "c1": -15.937306608011799, + "c2": -6.596835645558912, + "c3": 41.42693038100907, + "c4": 15.958869584893165, + "c5": -34.02164985492994, + "c6": 34.19514089691188, + "c7": -27.26111460426572 }, - "vertexSeeds": { - "c1": 1.3670036817262734, - "c2": 1.3730136749758457, - "c3": 1.4351301703100268, - "c4": 1.4108857707207718, - "c5": 1.5221781452359162, - "c6": 1.502264193071184, - "c7": 1.4300424472018847 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217753, + "c3": 1.84928340268146, + "c4": 1.4794267221451673, + "c5": 1.1095700416088783, + "c6": 0.7397133610725856, + "c7": 0.3698566805362928 }, "rgb": [77, 76, 132] }, @@ -223080,23 +223080,23 @@ "year": 1771, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 10.179502087611432, - "c2": 33.51912535292934, - "c3": -41.04510030573545, - "c4": 8.510159290572041, - "c5": 33.02037090917117, - "c6": 45.52561722933836, - "c7": 25.27442334861768 + "points": { + "c1": -11.933257369793417, + "c2": -34.5751334708668, + "c3": 22.803343184964127, + "c4": 47.968363719515445, + "c5": -44.18646739895398, + "c6": -17.031239278155443, + "c7": 24.929142060143086 }, - "vertexSeeds": { - "c1": 4.827328729729924, - "c2": 4.916267199513983, - "c3": 4.406701804675703, - "c4": 4.442731731669183, - "c5": 4.569351698216003, - "c6": 4.962365746875051, - "c7": 4.684479576843592 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337033, + "c3": 5.940822931114196, + "c4": 4.752658344891354, + "c5": 3.5644937586685166, + "c6": 2.376329172445679, + "c7": 1.1881645862228423 }, "rgb": [222, 0, 59] }, @@ -223107,23 +223107,23 @@ "year": 1770, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -12.93423748938936, - "c2": -30.867143218203363, - "c3": 24.1900520177428, - "c4": -11.735292520967324, - "c5": -15.470153899723396, - "c6": 26.88285942895633, - "c7": -17.83779213855985 + "points": { + "c1": 9.993204367051135, + "c2": -26.894855254834432, + "c3": 33.58767090603267, + "c4": -12.59786561920781, + "c5": -15.718801525238781, + "c6": -6.400774646245466, + "c7": 11.157073364422772 }, - "vertexSeeds": { - "c1": 4.847800360751842, - "c2": 4.987581801658268, - "c3": 5.316257228995124, - "c4": 4.927842817081091, - "c5": 5.33427479402188, - "c6": 5.089885426970549, - "c7": 5.1770156252555815 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342573, + "c3": 6.518723994452151, + "c4": 5.214979195561715, + "c5": 3.9112343966712944, + "c6": 2.6074895977808574, + "c7": 1.3037447988904287 }, "rgb": [222, 0, 59] }, @@ -223134,23 +223134,23 @@ "year": 1770, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -32.918700269097286, - "c2": -33.290887830365655, - "c3": -10.919048077009382, - "c4": 13.92845771404619, - "c5": -28.393276903341473, - "c6": -15.273069574939896, - "c7": -13.36598348532614 + "points": { + "c1": 23.729609950453685, + "c2": -21.842548614300426, + "c3": -27.787280638484916, + "c4": -6.3677423844321766, + "c5": 17.932424636241294, + "c6": 6.334674688872347, + "c7": 15.600015148434196 }, - "vertexSeeds": { - "c1": 1.5693195283545887, - "c2": 1.6675651538317495, - "c3": 1.6167797520478167, - "c4": 1.7207822974371447, - "c5": 1.5929211072121376, - "c6": 1.6636787825875508, - "c7": 1.6967248976258085 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [58, 15, 49] }, @@ -223161,23 +223161,23 @@ "year": 1770, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 14.695347651840315, - "c2": 25.801431088449256, - "c3": 27.440849324538135, - "c4": 9.2505227975171, - "c5": 15.652065174542223, - "c6": -13.431544709992579, - "c7": 18.82271665391727 + "points": { + "c1": -16.601536510504662, + "c2": 26.700651124691376, + "c3": 22.188990896773987, + "c4": 10.754912611493907, + "c5": -31.14988294033617, + "c6": 21.246324552707748, + "c7": -7.481920820214171 }, - "vertexSeeds": { - "c1": 9.335789892841227, - "c2": 7.553518376779332, - "c3": 8.948659928113631, - "c4": 8.65597154616579, - "c5": 8.400063761705288, - "c6": 6.477363794794298, - "c7": 6.2667919782655455 + "offsets": { + "c1": 16.601941747572816, + "c2": 14.230235783633841, + "c3": 11.85852981969487, + "c4": 9.486823855755894, + "c5": 7.115117891816922, + "c6": 4.743411927877947, + "c7": 2.3717059639389717 }, "rgb": [77, 76, 132] }, @@ -223188,23 +223188,23 @@ "year": 1770, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 16.744981988888973, - "c2": 3.2554267247438844, - "c3": -26.704751194996984, - "c4": 15.32906109516707, - "c5": -21.623033143770186, - "c6": -6.7664048040722236, - "c7": 39.775516146236235 + "points": { + "c1": 39.892677356049866, + "c2": -8.7239943877997, + "c3": 17.828626633832314, + "c4": -25.313511090246386, + "c5": -4.08552107742706, + "c6": -9.66378233465592, + "c7": 13.704831903651375 }, - "vertexSeeds": { - "c1": 2.9193406095951535, - "c2": 3.3941003412566215, - "c3": 3.050960580410635, - "c4": 3.492014197372387, - "c5": 2.91787757418787, - "c6": 2.99803776409337, - "c7": 3.016923343802644 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441054, + "c3": 4.276467868700879, + "c4": 3.4211742949607022, + "c5": 2.565880721220527, + "c6": 1.7105871474803511, + "c7": 0.8552935737401756 }, "rgb": [77, 76, 132] }, @@ -223215,23 +223215,23 @@ "year": 1771, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 11.162191880840481, - "c2": -0.8227795259128925, - "c3": -28.630196859738398, - "c4": -41.27333723003856, - "c5": -15.087764888118478, - "c6": -42.343343906702906, - "c7": 42.3955435995901 + "points": { + "c1": -17.96956761089391, + "c2": -13.271896318665995, + "c3": 22.066298979067867, + "c4": -9.02300506528335, + "c5": -9.034088633269398, + "c6": -21.849110225671527, + "c7": -29.24709053806557 }, - "vertexSeeds": { - "c1": 8.789683092294975, - "c2": 8.460424320623039, - "c3": 8.063358768746788, - "c4": 8.017632287161275, - "c5": 8.643793251756668, - "c6": 8.11272856813589, - "c7": 8.029739532929598 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260758, + "c3": 10.494683310217289, + "c4": 8.395746648173839, + "c5": 6.296809986130368, + "c6": 4.1978733240869195, + "c7": 2.0989366620434495 }, "rgb": [86, 146, 138] }, @@ -223242,23 +223242,23 @@ "year": 1770, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -13.612548880873753, - "c2": 13.440705005509244, - "c3": 17.32329040995019, - "c4": 32.52331464708775, - "c5": -10.10945367260727, - "c6": -8.270208489981894, - "c7": 4.684290206177728 + "points": { + "c1": 16.896401196138882, + "c2": -23.62490264030762, + "c3": 32.5498931535325, + "c4": 15.582145169853092, + "c5": -15.374596622862306, + "c6": 38.465201712208575, + "c7": 27.264165273145544 }, - "vertexSeeds": { - "c1": 2.265028939177618, - "c2": 2.120404364942739, - "c3": 2.211520720805206, - "c4": 2.210190226891969, - "c5": 2.0911631590964244, - "c6": 2.2576081314210024, - "c7": 2.258625049109135 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826631, + "c3": 2.7739251040221906, + "c4": 2.219140083217754, + "c5": 1.6643550624133134, + "c6": 1.109570041608877, + "c7": 0.5547850208044405 }, "rgb": [222, 0, 59] }, @@ -223269,23 +223269,23 @@ "year": 1771, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": -9.7713035193391, - "c2": 36.947376691641594, - "c3": -2.5183008788516403, - "c4": 51.74150710117803, - "c5": 48.57914420722017, - "c6": 49.15259608884753, - "c7": -39.485763433864875 + "points": { + "c1": 43.83370976344648, + "c2": -20.628112121745346, + "c3": -0.6019206036548255, + "c4": -18.888124059647204, + "c5": 14.489458611084672, + "c6": 41.40900222599913, + "c7": 18.57160377050343 }, - "vertexSeeds": { - "c1": 1.943263261482044, - "c2": 1.895916862877531, - "c3": 1.7780044892078357, - "c4": 1.79895265619592, - "c5": 1.6519535230828601, - "c6": 1.8807211611200796, - "c7": 1.7534515870309684 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.8571428571428585, + "c3": 2.380952380952381, + "c4": 1.9047619047619055, + "c5": 1.4285714285714277, + "c6": 0.9523809523809528, + "c7": 0.476190476190475 }, "rgb": [238, 201, 159] }, @@ -223296,23 +223296,23 @@ "year": 1770, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 4.587987114691202, - "c2": -13.233649993813405, - "c3": -30.135465100761447, - "c4": -4.1475888739681395, - "c5": 21.396551210907646, - "c6": -10.508671574744241, - "c7": -25.062577518868927 + "points": { + "c1": 0.5705249937838417, + "c2": -18.07089878933536, + "c3": -33.83230108889026, + "c4": -21.275993498552147, + "c5": -4.8502562225750765, + "c6": -7.750742808703066, + "c7": -3.188046547475267 }, - "vertexSeeds": { - "c1": 4.577790909573764, - "c2": 4.704979698716668, - "c3": 4.588664115862296, - "c4": 4.674188455203192, - "c5": 4.713469154385305, - "c6": 4.950730557257411, - "c7": 4.850256636349577 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -223323,23 +223323,23 @@ "year": 1770, "resistanceReported": false, "duration": 259200, - "curveSeeds": { - "c1": 8.656306272561306, - "c2": 3.9219338582052696, - "c3": -5.72891499445132, - "c4": -3.7875123024011863, - "c5": 9.808240569785774, - "c6": -8.420625146569272, - "c7": -8.330245575266858 + "points": { + "c1": 1.2978929961505248, + "c2": 1.2850739815961756, + "c3": 2.327406923466935, + "c4": 1.3399028063664513, + "c5": 4.719928153514083, + "c6": 2.938620999460351, + "c7": -8.594569746746425 }, - "vertexSeeds": { - "c1": 5.959673719932347, - "c2": 6.044523769373124, - "c3": 5.940418645928822, - "c4": 6.179858622190666, - "c5": 6.200762147849389, - "c6": 6.331410483296315, - "c7": 5.856933513948424 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152576, + "c3": 7.558945908460468, + "c4": 6.0471567267683835, + "c5": 4.5353675450762765, + "c6": 3.0235783633841917, + "c7": 1.5117891816921072 }, "rgb": [58, 15, 49] }, @@ -223350,23 +223350,23 @@ "year": 1770, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -7.900817210806274, - "c2": -13.577303850683567, - "c3": -36.697988032404254, - "c4": -31.528223270565157, - "c5": 24.480163299589776, - "c6": -38.75696692838483, - "c7": 0.46075387072588825 + "points": { + "c1": -22.4531393458977, + "c2": -20.18512069675773, + "c3": 31.76877306646982, + "c4": 40.36524794146408, + "c5": -25.854273683638574, + "c6": 27.813409169667423, + "c7": 38.24378766695766 }, - "vertexSeeds": { - "c1": 5.8316022776537215, - "c2": 6.041376615703942, - "c3": 5.9184248501393695, - "c4": 6.184281389720802, - "c5": 6.072654539237072, - "c6": 6.046134723558141, - "c7": 6.002841931400612 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911234, + "c3": 7.420249653259362, + "c4": 5.936199722607489, + "c5": 4.452149791955617, + "c6": 2.9680998613037444, + "c7": 1.4840499306518722 }, "rgb": [86, 146, 138] }, @@ -223377,23 +223377,23 @@ "year": 1770, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 14.64438761672428, - "c2": -7.43817582478442, - "c3": -9.58275182761055, - "c4": 6.12226854044286, - "c5": -1.660537099638674, - "c6": 24.141403718659, - "c7": 27.700982196316232 + "points": { + "c1": 1.6049533015590711, + "c2": -23.729613893665743, + "c3": -2.921498327927896, + "c4": -15.034786395393855, + "c5": 27.896202408329373, + "c6": 24.880102269727253, + "c7": 20.87793717219376 }, - "vertexSeeds": { - "c1": 5.0780692944875145, - "c2": 5.263507856007886, - "c3": 5.062590783507629, - "c4": 5.38381670177037, - "c5": 5.145546706444879, - "c6": 5.136051614901179, - "c7": 5.358634504479223 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221911, + "c3": 6.449375866851588, + "c4": 5.159500693481265, + "c5": 3.869625520110942, + "c6": 2.579750346740646, + "c7": 1.289875173370323 }, "rgb": [238, 201, 159] }, @@ -223404,23 +223404,23 @@ "year": 1771, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 21.97849619479522, - "c2": 23.70908752947428, - "c3": -40.202669012853086, - "c4": -14.13323354213938, - "c5": -39.51273667624487, - "c6": 11.92329895704296, - "c7": -5.210190313039121 + "points": { + "c1": 1.9331694436089961, + "c2": -29.07309854086772, + "c3": 7.217647887908818, + "c4": 16.868889914646168, + "c5": -43.90013632544805, + "c6": -19.972356196739778, + "c7": -43.03351836838434 }, - "vertexSeeds": { - "c1": 5.103931246423801, - "c2": 5.077529055462885, - "c3": 5.001410840059703, - "c4": 5.158906599532001, - "c5": 5.016803829976, - "c6": 4.966788209651706, - "c7": 5.0180854220384505 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [77, 76, 132] }, @@ -223431,23 +223431,23 @@ "year": 1771, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": -5.634769592144174, - "c2": -38.370377245794586, - "c3": 26.978092479260084, - "c4": -25.554629588582774, - "c5": -47.55416254725107, - "c6": 21.578163929972675, - "c7": -1.142998115361621 + "points": { + "c1": 50.288094359984484, + "c2": -23.86415406950006, + "c3": -15.122661637439968, + "c4": -37.83052364444063, + "c5": -40.02952154975226, + "c6": -38.0037710148813, + "c7": 43.789802836904656 }, - "vertexSeeds": { - "c1": 4.471555342008955, - "c2": 4.286271284476504, - "c3": 4.292353251103525, - "c4": 4.400469334262719, - "c5": 4.3410322772070185, - "c6": 4.565972372974557, - "c7": 4.303836510006777 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492376, + "c3": 5.455386037910317, + "c4": 4.364308830328246, + "c5": 3.273231622746188, + "c6": 2.18215441516413, + "c7": 1.091077207582058 }, "rgb": [222, 0, 59] }, @@ -223458,23 +223458,23 @@ "year": 1771, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -29.965060016360884, - "c2": -17.694354524788615, - "c3": 29.58386007535752, - "c4": 8.875499463999716, - "c5": -41.57949622080372, - "c6": 14.705042965978095, - "c7": 11.516968189810491 + "points": { + "c1": -13.932289854169383, + "c2": -35.36158077598597, + "c3": 41.92071246424291, + "c4": -9.883600394852849, + "c5": -16.305180227650617, + "c6": 34.83659140321079, + "c7": -39.451351999548805 }, - "vertexSeeds": { - "c1": 5.867843595162503, - "c2": 6.1443685560673265, - "c3": 6.200595217190475, - "c4": 6.228831486079525, - "c5": 6.150693503606785, - "c6": 6.163026302149714, - "c7": 6.148178400578547 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951443, + "c3": 7.443365695792884, + "c4": 5.954692556634297, + "c5": 4.466019417475736, + "c6": 2.9773462783171487, + "c7": 1.4886731391585875 }, "rgb": [238, 201, 159] }, @@ -223485,23 +223485,23 @@ "year": 1771, "resistanceReported": false, "duration": 53654400, - "curveSeeds": { - "c1": -21.05723834192561, - "c2": -46.53004695690906, - "c3": -2.6838697567074803, - "c4": 48.29524098643766, - "c5": -24.95545023671591, - "c6": 46.723321758387556, - "c7": 21.19930912214153 + "points": { + "c1": -52.14854252390997, + "c2": 31.383246207107206, + "c3": -42.54462519338849, + "c4": -60.8816394164582, + "c5": 17.958798257319074, + "c6": 51.69187986136194, + "c7": -66.83199841888599 }, - "vertexSeeds": { - "c1": 4.1155074181352616, - "c2": 4.160985184677982, - "c3": 4.3892387676553914, - "c4": 4.481734123272192, - "c5": 4.266870131063931, - "c6": 4.357667364116396, - "c7": 4.548825640333682 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.65742024965326, + "c3": 5.547850208044384, + "c4": 4.438280166435509, + "c5": 3.3287101248266264, + "c6": 2.2191400832177512, + "c7": 1.1095700416088756 }, "rgb": [238, 201, 159] }, @@ -223512,23 +223512,23 @@ "year": 1770, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -24.40243386564, - "c2": 9.032189123791326, - "c3": 15.488087735840459, - "c4": -33.9193665461689, - "c5": 12.306246045199536, - "c6": 32.5748999894834, - "c7": 27.456540585258367 + "points": { + "c1": -7.601381159193117, + "c2": 1.2845481643885535, + "c3": -10.851727317036303, + "c4": -5.908819553947019, + "c5": -16.280743143331396, + "c6": 23.21288861906008, + "c7": -1.6487219085373752 }, - "vertexSeeds": { - "c1": 6.55979306380528, - "c2": 6.737729436993567, - "c3": 6.562631984774145, - "c4": 6.552323547651117, - "c5": 6.388853837671566, - "c6": 6.437704181838629, - "c7": 6.539171344291262 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.76421636615812, + "c3": 8.136846971798438, + "c4": 6.509477577438756, + "c5": 4.882108183079045, + "c6": 3.2547387887193637, + "c7": 1.6273693943596819 }, "rgb": [238, 201, 159] }, @@ -223539,23 +223539,23 @@ "year": 1771, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -42.328345040399554, - "c2": 27.909926921501693, - "c3": 12.401395455968341, - "c4": 13.397346207738877, - "c5": -34.710880211983266, - "c6": -38.334449203430154, - "c7": -1.9470492190467823 + "points": { + "c1": -5.2318873197891875, + "c2": -15.962622964193638, + "c3": -30.70567461503935, + "c4": -9.997787312409677, + "c5": -24.860023511247697, + "c6": 35.011745857820614, + "c7": 40.34891064446593 }, - "vertexSeeds": { - "c1": 6.505991736882454, - "c2": 5.959781891720007, - "c3": 5.952027903244977, - "c4": 6.586758931263288, - "c5": 6.041678326371962, - "c6": 6.353057305043325, - "c7": 6.317215263054484 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [86, 146, 138] }, @@ -223566,23 +223566,23 @@ "year": 1770, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -39.02537378028881, - "c2": 24.787959681937537, - "c3": 7.912185157608221, - "c4": -40.260311159684726, - "c5": -12.937334644042352, - "c6": 18.159445114693305, - "c7": -14.191285726551413 + "points": { + "c1": -34.36447254883639, + "c2": -8.92169721053753, + "c3": 40.247576599847335, + "c4": -37.01281082001348, + "c5": -25.77063628571174, + "c6": -13.257568255156023, + "c7": -40.458462115299945 }, - "vertexSeeds": { - "c1": 1.574545171521287, - "c2": 1.293327706582013, - "c3": 1.4297798584147898, - "c4": 1.554948016491542, - "c5": 1.257269013888873, - "c6": 1.3937211359821884, - "c7": 1.3809508260662164 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [77, 76, 132] }, @@ -223593,23 +223593,23 @@ "year": 1771, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": -12.303659783022752, - "c2": 16.061312139452696, - "c3": -15.58749597402928, - "c4": 43.127804516609174, - "c5": 38.001992277280195, - "c6": 40.224055379127094, - "c7": -24.572168517745038 + "points": { + "c1": -17.13607052940084, + "c2": -52.618094862044835, + "c3": 44.930104912291625, + "c4": -50.20526119698443, + "c5": -22.132111112248225, + "c6": 27.523793545910138, + "c7": 2.4023868498727126 }, - "vertexSeeds": { - "c1": 1.7346831115748207, - "c2": 1.763799518351039, - "c3": 1.8323547681626957, - "c4": 1.8510499312941575, - "c5": 1.9180258692577976, - "c6": 1.9154414822760555, - "c7": 1.8873347602377815 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.3347202958853472, + "c4": 1.867776236708275, + "c5": 1.4008321775312074, + "c6": 0.9338881183541395, + "c7": 0.46694405917707194 }, "rgb": [58, 15, 49] }, @@ -223620,23 +223620,23 @@ "year": 1770, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 25.046410740636478, - "c2": 23.419781921142434, - "c3": -23.98072428442953, - "c4": -20.12409154938731, - "c5": -18.79751090321067, - "c6": 25.08659164243301, - "c7": 22.073608987119453 + "points": { + "c1": 23.19673944431235, + "c2": -24.832043674183303, + "c3": 8.016392680863056, + "c4": -6.7116459464019655, + "c5": -13.228452165779743, + "c6": 26.310209783359362, + "c7": -26.347732027359754 }, - "vertexSeeds": { - "c1": 7.657863731061446, - "c2": 7.84140569591939, - "c3": 7.229041855244085, - "c4": 7.220899586209902, - "c5": 8.08450067792461, - "c6": 8.51133755508975, - "c7": 7.464524714633718 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858531, + "c3": 10.263522884882114, + "c4": 8.210818307905685, + "c5": 6.158113730929266, + "c6": 4.105409153952848, + "c7": 2.052704576976418 }, "rgb": [77, 76, 132] }, @@ -223647,23 +223647,23 @@ "year": 1770, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -21.998597714988218, - "c2": 34.396521281821094, - "c3": 12.156164064660778, - "c4": 35.86176781969988, - "c5": -38.202433666345755, - "c6": 22.56833883339732, - "c7": -4.769446818681246 + "points": { + "c1": 29.167793663475123, + "c2": 33.715089399752955, + "c3": 37.61754084436956, + "c4": 3.3341476282013858, + "c5": 2.77993679796041, + "c6": 38.01314096625522, + "c7": 19.36969783143652 }, - "vertexSeeds": { - "c1": 8.97901046264074, - "c2": 9.555574692163477, - "c3": 9.3856841789359, - "c4": 9.60547501607829, - "c5": 10.04233904484993, - "c6": 9.246496781777148, - "c7": 9.692761271764933 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.42441054091539, + "c3": 12.020342117429498, + "c4": 9.616273693943594, + "c5": 7.2122052704577015, + "c6": 4.808136846971797, + "c7": 2.4040684234858927 }, "rgb": [238, 201, 159] }, @@ -223674,23 +223674,23 @@ "year": 1770, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -21.44972709711333, - "c2": -26.407095042503755, - "c3": -27.718691726968856, - "c4": -26.44035585017997, - "c5": -1.243287591286773, - "c6": -14.547598128835887, - "c7": -21.23422501122963 + "points": { + "c1": 10.813838440272598, + "c2": 32.44946613722815, + "c3": -9.519489178886598, + "c4": -9.443231676762238, + "c5": -19.479780184741248, + "c6": -32.84466322286931, + "c7": -32.43886438974984 }, - "vertexSeeds": { - "c1": 9.022802407593815, - "c2": 8.876392156620065, - "c3": 8.845071478256914, - "c4": 9.134064573182346, - "c5": 8.997537450932004, - "c6": 8.939285286624175, - "c7": 9.04847566611514 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024952, + "c3": 10.933888118354162, + "c4": 8.74711049468332, + "c5": 6.560332871012476, + "c6": 4.373555247341685, + "c7": 2.1867776236708427 }, "rgb": [58, 15, 49] }, @@ -223701,23 +223701,23 @@ "year": 1770, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 5.6605665949322805, - "c2": -24.1550958484619, - "c3": 10.4246388236777, - "c4": 21.04849001459738, - "c5": 27.519345214227325, - "c6": -11.623938410160427, - "c7": 16.584884983660874 + "points": { + "c1": 2.76967259391094, + "c2": -12.801291433308691, + "c3": 20.295353950235537, + "c4": -28.8577946457243, + "c5": -29.96953193045087, + "c6": -20.894929689895847, + "c7": 24.109473601901243 }, - "vertexSeeds": { - "c1": 3.1114863718945407, - "c2": 2.9191150589170625, - "c3": 3.0222066646696257, - "c4": 3.07984020554589, - "c5": 3.1858725845133407, - "c6": 2.9698341121796585, - "c7": 2.956577897302202 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -223728,23 +223728,23 @@ "year": 1771, "resistanceReported": false, "duration": 56678400, - "curveSeeds": { - "c1": 26.023584326522368, - "c2": 59.42058535946225, - "c3": -50.22033040427645, - "c4": -18.376475578131178, - "c5": 57.06843457271947, - "c6": -71.63178883922535, - "c7": 17.354218311063818 + "points": { + "c1": 34.43224235189459, + "c2": -2.029074227627788, + "c3": -41.14304434346903, + "c4": -15.581269355777557, + "c5": 7.9776359296124895, + "c6": 44.85365449605776, + "c7": 41.95790541647655 }, - "vertexSeeds": { - "c1": 7.354236046987014, - "c2": 7.332385041601995, - "c3": 7.383980786086453, - "c4": 7.601954151896288, - "c5": 7.442908819985898, - "c6": 7.663377722776406, - "c7": 7.619390408898968 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048539, + "c3": 9.223300970873778, + "c4": 7.378640776699045, + "c5": 5.533980582524284, + "c6": 3.6893203883495227, + "c7": 1.8446601941747613 }, "rgb": [58, 15, 49] }, @@ -223755,23 +223755,23 @@ "year": 1770, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -9.368791310264204, - "c2": 3.8615047933083844, - "c3": 13.5731806249131, - "c4": 22.460677046671137, - "c5": 34.68147578653913, - "c6": -11.341957258973842, - "c7": 35.09998159668397 + "points": { + "c1": -20.481294428441046, + "c2": 38.46518700933161, + "c3": -10.710755165275064, + "c4": 35.88764236302135, + "c5": -25.198976677796708, + "c6": 16.28266628769269, + "c7": -25.934333566988556 }, - "vertexSeeds": { - "c1": 6.305987551172468, - "c2": 6.614537000097588, - "c3": 6.88159348156595, - "c4": 6.462230574685401, - "c5": 6.610452390437619, - "c6": 6.837769995305397, - "c7": 6.700093855137953 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359228, + "c3": 8.25242718446601, + "c4": 6.601941747572813, + "c5": 4.951456310679614, + "c6": 3.3009708737864165, + "c7": 1.6504854368931978 }, "rgb": [222, 0, 59] }, @@ -223782,23 +223782,23 @@ "year": 1770, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": -1.223166979812916, - "c2": -4.779427006709719, - "c3": -14.39393688434846, - "c4": 3.4469915719521893, - "c5": 11.593708030315764, - "c6": 2.7138184775449012, - "c7": 4.640160063762153 + "points": { + "c1": -16.977890989639032, + "c2": 6.6266909034202435, + "c3": -1.0204599652217503, + "c4": 19.058346775509346, + "c5": -0.32234110666625426, + "c6": -3.919626874938185, + "c7": -18.95915595157195 }, - "vertexSeeds": { - "c1": 3.8277202072538863, - "c2": 3.8277202072538863, - "c3": 3.8277202072538863, - "c4": 3.8277202072538863, - "c5": 3.8277202072538863, - "c6": 3.8277202072538863, - "c7": 3.8277202072538863 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -223809,23 +223809,23 @@ "year": 1771, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": -23.573411734440278, - "c2": 5.7001513900090615, - "c3": -6.71417397521482, - "c4": -22.110791393236862, - "c5": 35.06966485138238, - "c6": 8.089523070681643, - "c7": 32.257811636410686 + "points": { + "c1": 43.77241643671443, + "c2": 12.57154964719603, + "c3": 34.35886942245566, + "c4": 8.88983834568473, + "c5": -14.016327036843286, + "c6": -22.230612575197334, + "c7": 16.56013140810841 }, - "vertexSeeds": { - "c1": 4.008397715289167, - "c2": 3.919082972645618, - "c3": 3.9156933355860906, - "c4": 4.192639511975306, - "c5": 4.235867043216233, - "c6": 4.208911104720396, - "c7": 4.058827260445828 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848822, + "c3": 5.08552935737402, + "c4": 4.068423485899218, + "c5": 3.0513176144244065, + "c6": 2.0342117429496045, + "c7": 1.0171058714748022 }, "rgb": [86, 146, 138] }, @@ -223836,23 +223836,23 @@ "year": 1771, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 33.35277013289273, - "c2": 0.19115331485922127, - "c3": -25.66746193011591, - "c4": -3.0339629169478, - "c5": 7.4094688741974295, - "c6": -22.97818317421736, - "c7": 25.18475631008505 + "points": { + "c1": 10.790599955741847, + "c2": 43.883132720325506, + "c3": 31.08524575990083, + "c4": -27.293362387788864, + "c5": -2.646033517520152, + "c6": -17.885866227422753, + "c7": 16.655366100212326 }, - "vertexSeeds": { - "c1": 5.487207622478599, - "c2": 5.290620722011243, - "c3": 6.000336331802018, - "c4": 5.843286782433622, - "c5": 5.188036173116365, - "c6": 6.070558567583509, - "c7": 5.943705213923158 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112345, + "c3": 7.535829865926956, + "c4": 6.028663892741567, + "c5": 4.521497919556177, + "c6": 3.014331946370788, + "c7": 1.5071659731853992 }, "rgb": [58, 15, 49] }, @@ -223863,23 +223863,23 @@ "year": 1771, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": 5.592373667239613, - "c2": 45.266424410193395, - "c3": -16.25822719747486, - "c4": -40.058201335679, - "c5": -9.093029919397274, - "c6": -51.35494031758592, - "c7": -38.8659785502517 + "points": { + "c1": -20.212042714465618, + "c2": 38.10496947650002, + "c3": 47.526190911359166, + "c4": 22.80969837954035, + "c5": -27.920820472982612, + "c6": 58.38246972552871, + "c7": -22.830014474570476 }, - "vertexSeeds": { - "c1": 3.9357516870089055, - "c2": 3.97465828633683, - "c3": 3.9272653709212832, - "c4": 4.23489955438987, - "c5": 4.147994658759308, - "c6": 3.8824467419798783, - "c7": 3.9885952256896595 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130373, + "c3": 5.247341655108648, + "c4": 4.197873324086917, + "c5": 3.1484049930651863, + "c6": 2.0989366620434615, + "c7": 1.0494683310217308 }, "rgb": [77, 76, 132] }, @@ -223890,23 +223890,23 @@ "year": 1771, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -23.46289224118259, - "c2": -13.984569930147913, - "c3": -9.100456638546127, - "c4": 33.70272677110956, - "c5": 1.7333162265717021, - "c6": -12.720296628832813, - "c7": -42.20816669363381 + "points": { + "c1": -47.160508930891645, + "c2": -35.51904949240596, + "c3": 44.27644244461249, + "c4": 32.97855882707854, + "c5": -42.72604072790294, + "c6": 42.84293712233883, + "c7": 31.841332768932553 }, - "vertexSeeds": { - "c1": 5.855422192530686, - "c2": 5.5535164702003526, - "c3": 5.66266220170004, - "c4": 5.815326776853496, - "c5": 5.9511752768974135, - "c6": 5.7028660529067725, - "c7": 5.970017494194678 + "offsets": { + "c1": 10, + "c2": 8.571428571428571, + "c3": 7.142857142857143, + "c4": 5.7142857142857135, + "c5": 4.285714285714286, + "c6": 2.8571428571428568, + "c7": 1.4285714285714284 }, "rgb": [222, 0, 59] }, @@ -223917,23 +223917,23 @@ "year": 1770, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 3.108651308155821, - "c2": 25.669877591353192, - "c3": 7.687186805549217, - "c4": -19.28522395033252, - "c5": -15.150767665366244, - "c6": 18.74698351622621, - "c7": 14.940594235485364 + "points": { + "c1": -31.87953788102977, + "c2": -18.4434811812567, + "c3": 16.00490757383367, + "c4": -9.249481970035767, + "c5": 15.064913824920438, + "c6": -11.150448980148507, + "c7": 24.931037456246457 }, - "vertexSeeds": { - "c1": 5.802838132918058, - "c2": 5.611317377511192, - "c3": 5.731037308108285, - "c4": 6.350233825084494, - "c5": 5.939491518520835, - "c6": 5.761065908038589, - "c7": 6.580073042696692 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -223944,23 +223944,23 @@ "year": 1770, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -27.92842698954191, - "c2": 26.58593608018974, - "c3": 15.79689386935187, - "c4": 3.6725527788503314, - "c5": -18.859946729324335, - "c6": 1.7989191802729394, - "c7": -22.045585052357907 + "points": { + "c1": -10.364736660574287, + "c2": -29.619984960695334, + "c3": 27.8430279376632, + "c4": 14.686216666857419, + "c5": 3.7003666325670963, + "c6": 27.243503363560535, + "c7": -27.318092711730724 }, - "vertexSeeds": { - "c1": 4.77546163436307, - "c2": 4.2136901234224755, - "c3": 4.201095993922204, - "c4": 4.845481399995858, - "c5": 4.416018867794391, - "c6": 4.596663734698306, - "c7": 4.58685080594076 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -223971,23 +223971,23 @@ "year": 1770, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -2.848132983717086, - "c2": -25.876173883974367, - "c3": -17.015217323630214, - "c4": 8.23343494087775, - "c5": -26.39546146735289, - "c6": -13.076038723579654, - "c7": -18.68120236558229 + "points": { + "c1": 12.580355575323345, + "c2": 15.954136719407522, + "c3": -14.289352783634127, + "c4": 15.275547848525605, + "c5": -15.103578179554447, + "c6": 25.584277008083127, + "c7": -4.797191497801567 }, - "vertexSeeds": { - "c1": 4.782580140934243, - "c2": 5.111097273144256, - "c3": 5.291599020825931, - "c4": 4.720418905668088, - "c5": 4.914482555248306, - "c6": 5.0119783574242724, - "c7": 4.918930041496891 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101246, + "c3": 6.3800277392510365, + "c4": 5.10402219140084, + "c5": 3.828016643550623, + "c6": 2.55201109570042, + "c7": 1.27600554785021 }, "rgb": [238, 201, 159] }, @@ -223998,23 +223998,23 @@ "year": 1770, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 24.383982443990337, - "c2": -21.103275593678276, - "c3": -0.6841921553432577, - "c4": 6.676592627106931, - "c5": -19.642969802348464, - "c6": -16.327594790480536, - "c7": -7.54856679814495 + "points": { + "c1": -24.632448702314377, + "c2": -9.035267395354172, + "c3": 2.593570222123031, + "c4": -9.530108170130372, + "c5": 26.89160533226048, + "c6": -4.046228922139772, + "c7": 2.2369713208928417 }, - "vertexSeeds": { - "c1": 1.8212669669444574, - "c2": 0.8447968626394472, - "c3": 1.346043590362168, - "c4": 0.891023721964808, - "c5": 1.5879933099585064, - "c6": 1.274869442738055, - "c7": 0.928313885507353 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221915, + "c3": 2.311604253351826, + "c4": 1.8492834026814606, + "c5": 1.3869625520110958, + "c6": 0.9246417013407306, + "c7": 0.4623208506703653 }, "rgb": [222, 0, 59] }, @@ -224025,23 +224025,23 @@ "year": 1771, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": 45.386390476448696, - "c2": -20.223589667514453, - "c3": 34.74470006773703, - "c4": -40.218074998508, - "c5": 39.25609484725754, - "c6": -46.118428855870064, - "c7": -0.47599524599872467 + "points": { + "c1": 35.10536575941437, + "c2": 25.37581193193897, + "c3": 7.560262949064267, + "c4": -14.99739947632677, + "c5": -44.04712159344212, + "c6": -52.326105746080195, + "c7": -0.9370415075590586 }, - "vertexSeeds": { - "c1": 2.1438733572708255, - "c2": 1.9707404159659525, - "c3": 2.142287176103283, - "c4": 2.0373676074004967, - "c5": 1.995754545618665, - "c6": 1.9329966750797807, - "c7": 2.167179873086839 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300527, + "c5": 1.5672676837725366, + "c6": 1.0448451225150244, + "c7": 0.5224225612575122 }, "rgb": [238, 201, 159] }, @@ -224052,23 +224052,23 @@ "year": 1771, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -33.00439420089893, - "c2": -34.20008694526992, - "c3": -24.579757808431165, - "c4": -28.36599369283472, - "c5": -8.260561094135852, - "c6": -1.5251242901915418, - "c7": -19.04711398941818 + "points": { + "c1": 8.947712884055889, + "c2": 0.741264931180055, + "c3": 5.688190719383982, + "c4": -45.402957687943015, + "c5": -12.71090151690261, + "c6": -2.4798045962930573, + "c7": 7.2278762712609534 }, - "vertexSeeds": { - "c1": 10.488913423721613, - "c2": 10.282600861322763, - "c3": 10.539219149216146, - "c4": 10.620312477154341, - "c5": 10.678766120654396, - "c6": 10.322142330421066, - "c7": 10.429151440602393 + "offsets": { + "c1": 17.864077669902912, + "c2": 15.312066574202523, + "c3": 12.760055478502041, + "c4": 10.208044382801651, + "c5": 7.656033287101262, + "c6": 5.104022191400872, + "c7": 2.5520110957003896 }, "rgb": [222, 0, 59] }, @@ -224079,23 +224079,23 @@ "year": 1771, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -36.94696315012182, - "c2": -23.868381045586215, - "c3": -25.557581718695026, - "c4": 25.48662900157654, - "c5": 36.224474796730924, - "c6": -2.392267214602761, - "c7": 8.729947136167084 + "points": { + "c1": -37.759334554279654, + "c2": -2.507013490328596, + "c3": 10.9368456382321, + "c4": 30.140364065730203, + "c5": -19.542598700193302, + "c6": 18.157063238353395, + "c7": 35.87927011996636 }, - "vertexSeeds": { - "c1": 10.303389625144625, - "c2": 10.422761903531423, - "c3": 10.313394793653762, - "c4": 10.33063478587571, - "c5": 10.552979098783648, - "c6": 10.637650360036325, - "c7": 10.596115969715152 + "offsets": { + "c1": 17.864077669902912, + "c2": 15.312066574202523, + "c3": 12.760055478502041, + "c4": 10.208044382801651, + "c5": 7.656033287101262, + "c6": 5.104022191400872, + "c7": 2.5520110957003896 }, "rgb": [238, 201, 159] }, @@ -224106,23 +224106,23 @@ "year": 1770, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 13.70271832937786, - "c2": 20.406844588825884, - "c3": -17.457877552285883, - "c4": 7.4799942556114445, - "c5": -8.876099696939523, - "c6": 29.36140502819957, - "c7": 5.3677558432861545 + "points": { + "c1": -21.672530495492282, + "c2": -15.060031957508023, + "c3": -26.29933346626825, + "c4": 18.002110199159787, + "c5": -13.84258582908484, + "c6": -31.274445319168226, + "c7": 8.367942021940955 }, - "vertexSeeds": { - "c1": 0.33407250134108546, - "c2": 0.3341832881127528, - "c3": 0.3388746864676524, - "c4": 0.35839087926975877, - "c5": 0.3433616168284754, - "c6": 0.3504674681518745, - "c7": 0.36479708544837924 + "offsets": { + "c1": 0.6472491909385114, + "c2": 0.5547850208044387, + "c3": 0.46232085067036516, + "c4": 0.36985668053629245, + "c5": 0.27739251040221896, + "c6": 0.18492834026814622, + "c7": 0.0924641701340735 }, "rgb": [86, 146, 138] }, @@ -224133,23 +224133,23 @@ "year": 1771, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": 8.474915250666442, - "c2": 33.189499656815045, - "c3": -22.696907033236258, - "c4": -45.17714487657426, - "c5": -38.10973578949563, - "c6": -18.111170226241022, - "c7": 17.43926642874294 + "points": { + "c1": -54.53889583357423, + "c2": -25.944440035046117, + "c3": 27.307156821236447, + "c4": 51.48480361969807, + "c5": 12.422232183089378, + "c6": -39.92517719335183, + "c7": 22.49635407828474 }, - "vertexSeeds": { - "c1": 5.738253555204327, - "c2": 5.5344505161123525, - "c3": 5.652986582135669, - "c4": 5.869578491934218, - "c5": 5.471813017631453, - "c6": 5.535639946863535, - "c7": 5.758155632138609 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.54368932038835, + "c3": 7.119741100323624, + "c4": 5.6957928802588995, + "c5": 4.271844660194175, + "c6": 2.8478964401294498, + "c7": 1.4239482200647249 }, "rgb": [238, 201, 159] }, @@ -224160,23 +224160,23 @@ "year": 1770, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 10.734708118886154, - "c2": 17.874569698979386, - "c3": 20.26189783647842, - "c4": -4.464803060241735, - "c5": 9.049638636144806, - "c6": 28.86534376946443, - "c7": 29.92521324690405 + "points": { + "c1": -29.718295710469746, + "c2": -24.319674639449847, + "c3": -22.089033407193234, + "c4": -32.96187418328465, + "c5": 28.057895834282448, + "c6": 24.196546938655302, + "c7": -33.21659509812548 }, - "vertexSeeds": { - "c1": 1.7592726866184107, - "c2": 1.762504722395325, - "c3": 1.8137373417754803, - "c4": 1.8202018751578342, - "c5": 1.7171066883515347, - "c6": 1.7441185332863303, - "c7": 1.643038983661385 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.662968099861303, + "c3": 2.2191400832177526, + "c4": 1.7753120665742013, + "c5": 1.3314840499306502, + "c6": 0.8876560332871021, + "c7": 0.44382801664354826 }, "rgb": [238, 201, 159] }, @@ -224187,23 +224187,23 @@ "year": 1770, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 24.767734364401086, - "c2": -19.657839772026087, - "c3": -31.13231475920589, - "c4": 0.5137931624342897, - "c5": 11.164449770717688, - "c6": 7.066891537147477, - "c7": -2.8211257012789837 + "points": { + "c1": 26.976748443476104, + "c2": -18.132043760396908, + "c3": 3.0419963935354417, + "c4": 16.208128330407384, + "c5": -29.192546170035687, + "c6": 9.682358374168267, + "c7": 31.804743545087042 }, - "vertexSeeds": { - "c1": 4.215891328456131, - "c2": 3.7417499324299945, - "c3": 3.50702437393984, - "c4": 3.7969604099445795, - "c5": 3.8926231629096213, - "c6": 3.6729859215651843, - "c7": 4.581358867662875 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693481, + "c3": 5.570966250577901, + "c4": 4.456773000462319, + "c5": 3.3425797503467387, + "c6": 2.228386500231162, + "c7": 1.114193250115581 }, "rgb": [58, 15, 49] }, @@ -224214,23 +224214,23 @@ "year": 1771, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 1.150294896901869, - "c2": -13.817491858631847, - "c3": -36.47947273189734, - "c4": 39.563517533642035, - "c5": -4.596063767500269, - "c6": 24.971070355189248, - "c7": -16.026089629091782 + "points": { + "c1": -1.4673989074856593, + "c2": -6.187125380120882, + "c3": -20.184191927359688, + "c4": -24.141216365592427, + "c5": -10.359520958288549, + "c6": 23.592258472702092, + "c7": 25.359559102581763 }, - "vertexSeeds": { - "c1": 10.3266756630017, - "c2": 10.251283344157452, - "c3": 10.218739419990754, - "c4": 10.487570222552447, - "c5": 10.648713744119078, - "c6": 10.882143239546787, - "c7": 10.7903349113793 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.0887656033287, + "c3": 13.40730466944061, + "c4": 10.725843735552479, + "c5": 8.04438280166435, + "c6": 5.362921867776259, + "c7": 2.6814609338881294 }, "rgb": [58, 15, 49] }, @@ -224241,23 +224241,23 @@ "year": 1770, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -27.43039743797673, - "c2": 35.214436684277935, - "c3": -7.57608050237538, - "c4": -36.456982376550854, - "c5": -5.921742504980479, - "c6": -29.587108350188856, - "c7": -23.764139432759794 + "points": { + "c1": -32.59137877474523, + "c2": 24.65371877274577, + "c3": 36.142469031986586, + "c4": -38.47532656112239, + "c5": 10.536373203918963, + "c6": -4.427481728151797, + "c7": -32.674589657948616 }, - "vertexSeeds": { - "c1": 6.577460260844834, - "c2": 5.488496781575405, - "c3": 6.548326132807484, - "c4": 6.603098000535029, - "c5": 5.903960185885776, - "c6": 6.291634391702992, - "c7": 5.891354050724917 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.48682385575589, + "c3": 7.905686546463247, + "c4": 6.324549237170594, + "c5": 4.7434119278779505, + "c6": 3.162274618585297, + "c7": 1.5811373092926435 }, "rgb": [222, 0, 59] }, @@ -224268,23 +224268,23 @@ "year": 1770, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -22.668463816783834, - "c2": 14.494854519188287, - "c3": 6.454506848578234, - "c4": 18.17224834093947, - "c5": -22.145062330518094, - "c6": -1.7752719150464777, - "c7": -18.000447778468633 + "points": { + "c1": 6.944468805672621, + "c2": 5.131905045320735, + "c3": -11.774103326706705, + "c4": 24.178604695256112, + "c5": 26.253911848075923, + "c6": -9.263628644323749, + "c7": -28.589375037431743 }, - "vertexSeeds": { - "c1": 1.8227056517076394, - "c2": 1.9162425927323747, - "c3": 2.1693946710690266, - "c4": 1.826510960507251, - "c5": 1.7765856401074545, - "c6": 1.7155872266802437, - "c7": 1.8837861895737174 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852977, + "c3": 2.6352288488210815, + "c4": 2.108183079056865, + "c5": 1.5811373092926488, + "c6": 1.0540915395284325, + "c7": 0.5270457697642162 }, "rgb": [58, 15, 49] }, @@ -224295,23 +224295,23 @@ "year": 1771, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 2.9379589566019106, - "c2": -24.467202971334284, - "c3": 32.19193817649847, - "c4": -6.707326037033866, - "c5": 34.435944436691884, - "c6": 27.15862168882795, - "c7": -32.59517698479771 + "points": { + "c1": 32.877154603014276, + "c2": -12.803964628682447, + "c3": -20.469487720356895, + "c4": 31.012289786668987, + "c5": -28.053623304508385, + "c6": 27.029177185149564, + "c7": 37.02187568121964 }, - "vertexSeeds": { - "c1": 4.599022805027578, - "c2": 4.880839828967989, - "c3": 4.970205082696907, - "c4": 4.483360573642694, - "c5": 4.9424094517148305, - "c6": 4.395264672983062, - "c7": 4.886619634249989 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337029, + "c3": 5.940822931114194, + "c4": 4.752658344891352, + "c5": 3.564493758668518, + "c6": 2.376329172445676, + "c7": 1.1881645862228416 }, "rgb": [222, 0, 59] }, @@ -224322,23 +224322,23 @@ "year": 1771, "resistanceReported": true, "duration": 28771200, - "curveSeeds": { - "c1": 7.120517484365877, - "c2": 4.920413713404024, - "c3": 1.847759216508308, - "c4": 26.12193881213821, - "c5": -12.81614335868844, - "c6": -30.704929487309585, - "c7": -37.777695921579664 + "points": { + "c1": -4.254903089938189, + "c2": -3.336735995951699, + "c3": -13.165411438358866, + "c4": 21.76312618840285, + "c5": 41.28065567586785, + "c6": -21.278742118337874, + "c7": -34.221313419932024 }, - "vertexSeeds": { - "c1": 6.165168895726462, - "c2": 5.920884767541623, - "c3": 6.098365725369074, - "c4": 6.019490735269469, - "c5": 6.611221051541973, - "c6": 6.197573223427351, - "c7": 6.490486925032111 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [222, 0, 59] }, @@ -224349,23 +224349,23 @@ "year": 1771, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -37.78816255521784, - "c2": -23.724057461010823, - "c3": -24.0168839402481, - "c4": -7.4338291459754835, - "c5": -34.22863597408818, - "c6": -19.02950705759827, - "c7": 19.589879737448868 + "points": { + "c1": -27.079230979351877, + "c2": -8.451346581099806, + "c3": -1.7188010034161252, + "c4": 13.920023817164271, + "c5": -3.6564083102833678, + "c6": -6.627609250487552, + "c7": 36.25970705161346 }, - "vertexSeeds": { - "c1": 3.7540000055765357, - "c2": 3.770585725418881, - "c3": 3.6367937090252926, - "c4": 3.3655814567813973, - "c5": 3.5025017176813793, - "c6": 3.7860203355933786, - "c7": 3.4375031137245635 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [238, 201, 159] }, @@ -224376,23 +224376,23 @@ "year": 1771, "resistanceReported": false, "duration": 43286400, - "curveSeeds": { - "c1": -17.235387532156352, - "c2": -0.9843205425293391, - "c3": -39.784269795021785, - "c4": 32.761614866819635, - "c5": -53.52377241745049, - "c6": 28.78712985663538, - "c7": 3.8904465724414052 + "points": { + "c1": 35.294592646203036, + "c2": -20.697179366124303, + "c3": -36.237746917178185, + "c4": 8.601519327701986, + "c5": -29.208292010785065, + "c6": 28.429204551373765, + "c7": -39.40996123806334 }, - "vertexSeeds": { - "c1": 4.121050751114753, - "c2": 4.566484524429178, - "c3": 4.5251493679014425, - "c4": 4.383890453163984, - "c5": 3.9822465456104523, - "c6": 4.394926749337387, - "c7": 3.950723937580124 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532597, + "c3": 5.478502080443827, + "c4": 4.382801664355064, + "c5": 3.287101248266295, + "c6": 2.191400832177532, + "c7": 1.095700416088763 }, "rgb": [77, 76, 132] }, @@ -224403,23 +224403,23 @@ "year": 1771, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 22.021019168001317, - "c2": -25.02834887026873, - "c3": -36.93949674442997, - "c4": 42.36121229136113, - "c5": -3.834132986840551, - "c6": 13.229653314463341, - "c7": 26.60943355832886 + "points": { + "c1": 13.500711033617073, + "c2": 15.151629805258338, + "c3": 17.50560877007773, + "c4": -27.097552304908103, + "c5": 6.334632056080075, + "c6": 32.850105878280814, + "c7": -22.943181889081554 }, - "vertexSeeds": { - "c1": 8.801292107651534, - "c2": 8.723759980993172, - "c3": 8.680989176771408, - "c4": 8.860206642351036, - "c5": 8.596667589880829, - "c6": 8.83384650266747, - "c7": 8.532759379932372 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743415, + "c3": 10.772075820619518, + "c4": 8.617660656495618, + "c5": 6.463245492371697, + "c6": 4.308830328247797, + "c7": 2.1544151641238987 }, "rgb": [222, 0, 59] }, @@ -224430,23 +224430,23 @@ "year": 1771, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -5.665984569657876, - "c2": -5.4110183343700555, - "c3": -7.623683008338691, - "c4": -18.620141751263827, - "c5": -23.85687842761548, - "c6": -5.75741028076725, - "c7": -10.740577860099759 + "points": { + "c1": 25.85636830248974, + "c2": -38.40494874456661, + "c3": 8.77148517358421, + "c4": -13.934941337065553, + "c5": 32.89026179362091, + "c6": -29.50487161729492, + "c7": -23.924354715254537 }, - "vertexSeeds": { - "c1": 1.323530221910844, - "c2": 1.5668666236540965, - "c3": 1.5722798607405284, - "c4": 1.3357164561251202, - "c5": 1.5572105372791503, - "c6": 1.4698021404879305, - "c7": 1.5228163853202628 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [77, 76, 132] }, @@ -224457,23 +224457,23 @@ "year": 1771, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 41.054078005196956, - "c2": -19.334680427373215, - "c3": -11.683771419781529, - "c4": -2.628017583760844, - "c5": -4.765764125449884, - "c6": -12.68812824638124, - "c7": -40.36549428301895 + "points": { + "c1": -5.672248557096154, + "c2": -37.18314492634433, + "c3": 4.136204020144675, + "c4": -10.97813117123065, + "c5": -48.506114744428935, + "c6": -38.08692403377729, + "c7": 8.310985589448656 }, - "vertexSeeds": { - "c1": 1.7276831352656898, - "c2": 1.6731471981199404, - "c3": 1.7179145754262029, - "c4": 1.6881482487844592, - "c5": 1.6843121423531158, - "c6": 1.68447630981777, - "c7": 1.6972934134398114 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.4965325936199703, + "c3": 2.08044382801664, + "c4": 1.6643550624133228, + "c5": 1.248266296809992, + "c6": 0.8321775312066614, + "c7": 0.4160887656033307 }, "rgb": [86, 146, 138] }, @@ -224484,23 +224484,23 @@ "year": 1771, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 24.71454360820625, - "c2": -29.865886777329287, - "c3": 31.073983746419444, - "c4": -22.328776504982187, - "c5": 6.123604419584694, - "c6": -3.55856938179506, - "c7": -0.1716617360273034 + "points": { + "c1": -21.116456293385724, + "c2": 18.297263845439538, + "c3": 8.54076354217738, + "c4": 5.982726335794531, + "c5": 17.636410116521738, + "c6": -1.6154907090448205, + "c7": 35.58930868159216 }, - "vertexSeeds": { - "c1": 3.1894924174979487, - "c2": 3.7572865822595416, - "c3": 3.6060436282179182, - "c4": 3.622044464380948, - "c5": 3.4313876937674324, - "c6": 3.5859010115851757, - "c7": 3.5407781058354963 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527044, + "c3": 4.900601017105872, + "c4": 3.9204808136846965, + "c5": 2.9403606102635242, + "c6": 1.9602404068423482, + "c7": 0.9801202034211762 }, "rgb": [238, 201, 159] }, @@ -224511,23 +224511,23 @@ "year": 1771, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -19.798403598638952, - "c2": 21.584118842285243, - "c3": -28.7606615549108, - "c4": 34.59486881225092, - "c5": 24.58589313947482, - "c6": -2.687585537800665, - "c7": -27.95824347598199 + "points": { + "c1": -5.564786807067712, + "c2": -18.89860415416486, + "c3": 7.402193660147688, + "c4": -16.197252520410455, + "c5": -13.181045803635545, + "c6": 14.19168415296209, + "c7": 12.986027308336396 }, - "vertexSeeds": { - "c1": 2.5600374922880964, - "c2": 2.4585218420353074, - "c3": 2.539520779321331, - "c4": 2.357436093524053, - "c5": 2.520682490050731, - "c6": 2.3982357751636565, - "c7": 2.541838791180505 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [86, 146, 138] }, @@ -224538,23 +224538,23 @@ "year": 1770, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 19.475330136005343, - "c2": 6.352233371341594, - "c3": -2.4285602439900984, - "c4": -4.292952444315972, - "c5": -2.649989129735573, - "c6": -0.5867301200203485, - "c7": 15.761102043718555 + "points": { + "c1": 12.410371302254372, + "c2": -3.7296937504988428, + "c3": -17.338295168988655, + "c4": 1.5814326072793143, + "c5": -12.199118832546574, + "c6": -9.008320935094751, + "c7": -25.83845705199007 }, - "vertexSeeds": { - "c1": 2.68764180749387, - "c2": 2.7345689180284936, - "c3": 2.624133315457045, - "c4": 2.5893817933866625, - "c5": 2.5162516676201276, - "c6": 2.719220889395643, - "c7": 2.6619523550224233 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751736, + "c3": 3.3055940822931085, + "c4": 2.644475265834489, + "c5": 1.9833564493758702, + "c6": 1.3222376329172425, + "c7": 0.6611188164586234 }, "rgb": [222, 0, 59] }, @@ -224565,23 +224565,23 @@ "year": 1771, "resistanceReported": false, "duration": 48470400, - "curveSeeds": { - "c1": -42.69702411924338, - "c2": -14.876976976961963, - "c3": 4.03893272450874, - "c4": 3.370032840262567, - "c5": -53.36549444046063, - "c6": -62.84310136486226, - "c7": -37.14689424319526 + "points": { + "c1": 45.400255134528436, + "c2": 19.188215561565357, + "c3": 63.30318546423189, + "c4": 14.598290586570798, + "c5": -24.770464897337746, + "c6": 54.38117338771262, + "c7": 47.1764497154454 }, - "vertexSeeds": { - "c1": 8.99994833859947, - "c2": 8.899754344813081, - "c3": 9.245452284444157, - "c4": 9.21154455002687, - "c5": 9.234048028226752, - "c6": 9.026339940496316, - "c7": 9.151594424924184 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467399, + "c3": 11.18816458622285, + "c4": 8.950531668978275, + "c5": 6.712898751733699, + "c6": 4.475265834489152, + "c7": 2.237632917244576 }, "rgb": [238, 201, 159] }, @@ -224592,23 +224592,23 @@ "year": 1771, "resistanceReported": true, "duration": 36374400, - "curveSeeds": { - "c1": 32.28423424099092, - "c2": -17.97146839611251, - "c3": -42.635797016636246, - "c4": -49.32365966980943, - "c5": -4.381752471029905, - "c6": 16.80575886499056, - "c7": -14.445733168817256 + "points": { + "c1": 36.36432990477656, + "c2": 13.3054361897589, + "c3": -13.342841629326813, + "c4": 4.338444549891676, + "c5": 17.501965612919825, + "c6": 20.061376846555184, + "c7": 18.490036004996632 }, - "vertexSeeds": { - "c1": 5.611050104264921, - "c2": 5.064752996731803, - "c3": 4.572435567553613, - "c4": 4.093872766206261, - "c5": 4.8459500419902275, - "c6": 5.734860966834503, - "c7": 4.232554134812593 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629681001, + "c3": 8.437355524734166, + "c4": 6.749884419787331, + "c5": 5.062413314840499, + "c6": 3.374942209893666, + "c7": 1.687471104946833 }, "rgb": [238, 201, 159] }, @@ -224619,23 +224619,23 @@ "year": 1771, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -20.120846053480655, - "c2": 27.363208977643268, - "c3": -22.96047021575719, - "c4": -9.467929350220299, - "c5": 15.612650267295173, - "c6": -33.8735421382618, - "c7": -27.24748837775889 + "points": { + "c1": -18.72743560962804, + "c2": 25.473988358429402, + "c3": 18.889957289198577, + "c4": -16.701911691512453, + "c5": 25.346949515855336, + "c6": -21.219231672281825, + "c7": 2.417675054651987 }, - "vertexSeeds": { - "c1": 6.667401106867532, - "c2": 6.567899949778852, - "c3": 6.175730514031774, - "c4": 6.011878779466467, - "c5": 6.481251039024576, - "c6": 6.483681241202385, - "c7": 6.470394142553919 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [222, 0, 59] }, @@ -224646,23 +224646,23 @@ "year": 1770, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 6.511623542271206, - "c2": 2.4679229523582187, - "c3": -18.75897654903041, - "c4": -17.28259896634861, - "c5": 5.025879485841781, - "c6": 24.298826982502806, - "c7": -6.648191179671503 + "points": { + "c1": -26.4807721480583, + "c2": 18.892083059591815, + "c3": -24.532309421624753, + "c4": -2.098642986501158, + "c5": -5.3521671048029305, + "c6": 5.459332507153658, + "c7": -13.776232947886186 }, - "vertexSeeds": { - "c1": 5.099833847233177, - "c2": 5.013233787936643, - "c3": 4.7039123877498055, - "c4": 5.221721328726448, - "c5": 5.017987122756953, - "c6": 5.194843562152527, - "c7": 4.309462000519959 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -224673,23 +224673,23 @@ "year": 1771, "resistanceReported": false, "duration": 49420800, - "curveSeeds": { - "c1": 42.307600223962254, - "c2": 44.32024236781953, - "c3": -12.720801560018884, - "c4": 15.552787233466447, - "c5": 21.575275295462745, - "c6": -48.50260058287526, - "c7": 31.821163852995923 + "points": { + "c1": 47.443893684716045, + "c2": 12.985734504408484, + "c3": 15.63484710642578, + "c4": 24.442105534774967, + "c5": -44.936008090849725, + "c6": 37.78753763206454, + "c7": 65.68442595524056 }, - "vertexSeeds": { - "c1": 10.677491768699822, - "c2": 10.845611072418954, - "c3": 10.568037566173794, - "c4": 10.476818675506308, - "c5": 10.686657035667528, - "c6": 10.621324462833158, - "c7": 10.495534486697533 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846017, + "c3": 13.129912159038383, + "c4": 10.503929727230679, + "c5": 7.877947295423043, + "c6": 5.251964863615339, + "c7": 2.6259824318077043 }, "rgb": [238, 201, 159] }, @@ -224700,23 +224700,23 @@ "year": 1770, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -9.243830449401823, - "c2": 21.63495411780632, - "c3": 27.100148118829832, - "c4": 17.288116112588813, - "c5": -26.582311819369075, - "c6": -6.064929886060824, - "c7": -8.57838649586392 + "points": { + "c1": -5.075797948758769, + "c2": 21.629067557492444, + "c3": -8.305123538035645, + "c4": 8.081988293929367, + "c5": 23.226929191683883, + "c6": -28.460993018703125, + "c7": -24.705581144819185 }, - "vertexSeeds": { - "c1": 5.0783381882538965, - "c2": 4.857488128129106, - "c3": 4.884430781278508, - "c4": 5.526806959119464, - "c5": 4.708525029685562, - "c6": 5.0316060244555025, - "c7": 4.768227261681331 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883499, + "c5": 4.077669902912622, + "c6": 2.718446601941747, + "c7": 1.3592233009708707 }, "rgb": [58, 15, 49] }, @@ -224727,23 +224727,23 @@ "year": 1770, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -2.6979037250317717, - "c2": 0.5017386225103522, - "c3": 24.469645348855536, - "c4": -24.54935391491199, - "c5": -12.447223882632219, - "c6": 9.268878669572793, - "c7": -30.02677016900722 + "points": { + "c1": 22.54326350784101, + "c2": -29.41123600344874, + "c3": -6.2860952705963165, + "c4": 14.80420514775846, + "c5": 14.774412738991167, + "c6": -30.979654891014782, + "c7": -5.2856763659521455 }, - "vertexSeeds": { - "c1": 4.2878890636949, - "c2": 4.184536407542647, - "c3": 4.744486684162251, - "c4": 4.754238805419389, - "c5": 4.533311281813817, - "c6": 4.2057385818806265, - "c7": 4.1336666070135 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -224754,23 +224754,23 @@ "year": 1771, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -27.202278857925492, - "c2": 35.78748845534605, - "c3": 22.12772140725165, - "c4": -12.82022510541719, - "c5": -17.652047203843956, - "c6": 2.0598809041726014, - "c7": -24.504718258908994 + "points": { + "c1": -14.678111499975433, + "c2": -27.96425804331282, + "c3": -22.687662209936992, + "c4": -11.747377626892135, + "c5": -36.80292641694499, + "c6": 34.81529573350733, + "c7": -34.19340812248648 }, - "vertexSeeds": { - "c1": 4.735273855721523, - "c2": 4.692759283770879, - "c3": 4.47297471121725, - "c4": 4.519343126029734, - "c5": 4.040266981270859, - "c6": 4.80651603997874, - "c7": 4.445189824136433 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -224781,23 +224781,23 @@ "year": 1771, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -8.182229231378482, - "c2": 27.654147204485326, - "c3": 1.4379600086134943, - "c4": -30.543605509947824, - "c5": -30.09874740613068, - "c6": 29.247367202470294, - "c7": -5.008345989866143 + "points": { + "c1": -8.74935919175515, + "c2": 8.394962810258384, + "c3": -7.2843170890474696, + "c4": -29.14950204897542, + "c5": -13.608890361165024, + "c6": 8.527321440388022, + "c7": -34.02993930629855 }, - "vertexSeeds": { - "c1": 4.094628610022721, - "c2": 4.00257667818131, - "c3": 3.8831119982010915, - "c4": 4.3052368437889665, - "c5": 4.071921364328658, - "c6": 3.938301202253538, - "c7": 4.3980945251202055 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -224808,23 +224808,23 @@ "year": 1770, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 11.93114994025052, - "c2": -15.334733522133504, - "c3": 5.655481917669896, - "c4": 4.7085148623661865, - "c5": -28.1247476675994, - "c6": -27.567436513419555, - "c7": -2.499222219436838 + "points": { + "c1": 26.228262188469635, + "c2": 18.000408135497736, + "c3": -12.044633996029653, + "c4": -19.27127575856716, + "c5": 11.15158696258247, + "c6": 21.09493818535246, + "c7": 4.650653231471011 }, - "vertexSeeds": { - "c1": 2.937590079688703, - "c2": 3.0586547948194562, - "c3": 3.1509729214674125, - "c4": 3.223401160931939, - "c5": 3.1268378100684577, - "c6": 3.0040214661303994, - "c7": 2.9690567322443453 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717063, + "c3": 3.8603791030975487, + "c4": 3.088303282478042, + "c5": 2.3162274618585275, + "c6": 1.544151641239021, + "c7": 0.7720758206195145 }, "rgb": [58, 15, 49] }, @@ -224835,23 +224835,23 @@ "year": 1771, "resistanceReported": true, "duration": 28944000, - "curveSeeds": { - "c1": 39.54629294577038, - "c2": 10.827373644891665, - "c3": 7.173148480475064, - "c4": -34.94344830317778, - "c5": -19.398769136352623, - "c6": 20.78575241542284, - "c7": 20.47635742780983 + "points": { + "c1": -28.56263047260414, + "c2": 23.178288736643943, + "c3": 10.558660742458024, + "c4": -15.4378591373037, + "c5": 11.22798164821895, + "c6": 29.756209852811686, + "c7": -9.933047332058074 }, - "vertexSeeds": { - "c1": 4.7326137471585055, - "c2": 4.734684666575482, - "c3": 4.901688851246442, - "c4": 4.723069528675345, - "c5": 4.7885612143339635, - "c6": 4.751956744977156, - "c7": 4.755542078207312 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216375, + "c3": 5.871474803513634, + "c4": 4.697179842810917, + "c5": 3.5228848821081757, + "c6": 2.3485899214054586, + "c7": 1.1742949607027173 }, "rgb": [86, 146, 138] }, @@ -224862,23 +224862,23 @@ "year": 1770, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 17.443373461616837, - "c2": -1.5588507370272566, - "c3": 8.715503826083705, - "c4": -0.6449807862737913, - "c5": -8.967517854884605, - "c6": 7.027481509285103, - "c7": 19.774334624944046 + "points": { + "c1": -8.353151442570148, + "c2": -19.318005593651414, + "c3": -0.9252022058086737, + "c4": 16.303196893383877, + "c5": 3.9952522817505027, + "c6": 8.121674946214434, + "c7": 4.700685567365376 }, - "vertexSeeds": { - "c1": 7.815277566386514, - "c2": 7.564958456139106, - "c3": 7.7783311622025355, - "c4": 7.499431853355976, - "c5": 7.457221929975079, - "c6": 7.4431206434039705, - "c7": 7.806820840880071 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.20665742024965, + "c3": 9.33888118354137, + "c4": 7.471104946833091, + "c5": 5.603328710124811, + "c6": 3.7355524734165595, + "c7": 1.8677762367082797 }, "rgb": [222, 0, 59] }, @@ -224889,23 +224889,23 @@ "year": 1771, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -35.72144792886824, - "c2": 38.500082019561134, - "c3": -30.803347840917127, - "c4": 18.687317244453347, - "c5": 32.91385016427064, - "c6": 38.901959829154535, - "c7": -14.489769725756513 + "points": { + "c1": 38.64282046867683, + "c2": -37.9384854802335, + "c3": 38.957617311758696, + "c4": 18.54813713613136, + "c5": 29.64827380711681, + "c6": 25.807007523992354, + "c7": -28.8499951084137 }, - "vertexSeeds": { - "c1": 6.222769864445331, - "c2": 6.190071059644318, - "c3": 6.84392313870877, - "c4": 6.660914583292907, - "c5": 6.115797358068087, - "c6": 6.216099373984842, - "c7": 6.556799069127178 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479895, + "c3": 8.321775312066572, + "c4": 6.657420249653263, + "c5": 4.9930651872399405, + "c6": 3.3287101248266313, + "c7": 1.6643550624133086 }, "rgb": [58, 15, 49] }, @@ -224916,23 +224916,23 @@ "year": 1770, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -7.867714212888302, - "c2": 27.653784112656055, - "c3": 19.30992224465652, - "c4": 3.0152304331846302, - "c5": -4.914734814719562, - "c6": -15.56937536769344, - "c7": 9.842574416072608 + "points": { + "c1": -28.014998150562384, + "c2": -24.274653599237904, + "c3": 19.67741527349672, + "c4": 12.611077270730306, + "c5": 24.623967582003594, + "c6": -8.77030813725754, + "c7": -25.564095312264843 }, - "vertexSeeds": { - "c1": 7.546106307794966, - "c2": 7.229624528283933, - "c3": 7.989138825122877, - "c4": 8.032158750046976, - "c5": 7.33148180465578, - "c6": 6.8254897980150675, - "c7": 8.01354233455303 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054093, + "c3": 9.801202034211746, + "c4": 7.840961627369399, + "c5": 5.880721220527041, + "c6": 3.9204808136846947, + "c7": 1.9602404068423473 }, "rgb": [222, 0, 59] }, @@ -224943,23 +224943,23 @@ "year": 1771, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 13.094437517701735, - "c2": 2.2791145658004908, - "c3": 20.4551573464491, - "c4": -40.31268602790842, - "c5": -29.784013004342793, - "c6": 0.7220098304673215, - "c7": -31.664527385147778 + "points": { + "c1": -10.743519941576132, + "c2": -13.573552570624585, + "c3": 26.925216826524526, + "c4": 34.70428273464599, + "c5": 11.538111892759126, + "c6": 28.898864440543527, + "c7": -28.879508480700828 }, - "vertexSeeds": { - "c1": 5.224112332614543, - "c2": 4.850606076308237, - "c3": 5.158550047001618, - "c4": 5.261691689961529, - "c5": 4.9843892361073445, - "c6": 5.411934642760414, - "c7": 4.879833755712479 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262138, + "c3": 6.472491909385116, + "c4": 5.177993527508095, + "c5": 3.883495145631073, + "c6": 2.5889967637540514, + "c7": 1.2944983818770301 }, "rgb": [58, 15, 49] }, @@ -224970,23 +224970,23 @@ "year": 1770, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -23.494539117763534, - "c2": -19.02721191276599, - "c3": 20.530931041663074, - "c4": 1.903246437905242, - "c5": 27.134409385729832, - "c6": -5.476098415740903, - "c7": 19.259076445873035 + "points": { + "c1": -12.480879671834426, + "c2": -6.126230801122759, + "c3": -1.4622742567417646, + "c4": 3.390061892252156, + "c5": 10.17386928468509, + "c6": -20.311501601638362, + "c7": -24.570114962658575 }, - "vertexSeeds": { - "c1": 4.308416901217314, - "c2": 4.538197139518575, - "c3": 4.338982852659108, - "c4": 4.156595642726129, - "c5": 4.307770553552826, - "c6": 4.690872165551506, - "c7": 4.296539717482165 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.7961165048543695, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271816, + "c6": 2.2653721682847876, + "c7": 1.1326860841423938 }, "rgb": [86, 146, 138] }, @@ -224997,23 +224997,23 @@ "year": 1771, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 10.656295195218163, - "c2": -15.779247309540708, - "c3": -20.452779770565936, - "c4": -17.88250891932331, - "c5": 30.776959450114923, - "c6": -29.408840867480535, - "c7": 8.878230266059042 + "points": { + "c1": 28.703564577498653, + "c2": 19.334929450690623, + "c3": 28.852220591999853, + "c4": 14.865847572021018, + "c5": -4.614583948648182, + "c6": -33.5252641662899, + "c7": 9.250994634582575 }, - "vertexSeeds": { - "c1": 3.2572635703696218, - "c2": 3.271503290519628, - "c3": 3.290602626060307, - "c4": 3.163557768607663, - "c5": 3.1477796193392042, - "c6": 3.1332569115358067, - "c7": 3.0257978705021507 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [58, 15, 49] }, @@ -225024,23 +225024,23 @@ "year": 1771, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 35.341071785165, - "c2": 41.3217285173903, - "c3": 45.35443661181428, - "c4": 6.369182411571124, - "c5": 26.585193189080456, - "c6": 29.609675153354758, - "c7": 23.535681594448477 + "points": { + "c1": 25.681161874626497, + "c2": -19.97245781698176, + "c3": 34.407626216473005, + "c4": 36.318130506695894, + "c5": -4.30478650894441, + "c6": -44.19041558338113, + "c7": 32.1475793364137 }, - "vertexSeeds": { - "c1": 8.02978360128719, - "c2": 8.372211882656556, - "c3": 8.145065112565597, - "c4": 7.482551302166597, - "c5": 8.338216913714055, - "c6": 8.59272011413228, - "c7": 7.47665227637244 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.42718446601942, + "c3": 10.355987055016184, + "c4": 8.284789644012939, + "c5": 6.213592233009703, + "c6": 4.1423948220064695, + "c7": 2.0711974110032347 }, "rgb": [238, 201, 159] }, @@ -225051,23 +225051,23 @@ "year": 1771, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 3.5931315000589237, - "c2": -33.97138733795068, - "c3": 27.056278390049506, - "c4": -0.24958688968958143, - "c5": -25.567980983696902, - "c6": 20.319806560837243, - "c7": -4.395529328465756 + "points": { + "c1": 35.5497207222872, + "c2": 32.81724385664308, + "c3": 7.387860715232151, + "c4": -34.9800603867962, + "c5": 9.649239529745294, + "c6": -40.165387610872926, + "c7": 4.965280665690543 }, - "vertexSeeds": { - "c1": 3.0414325695391264, - "c2": 3.0644624933280165, - "c3": 2.9697518312919136, - "c4": 2.9206702403589917, - "c5": 3.0521722414291466, - "c6": 3.136942846681611, - "c7": 3.23229571539863 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [77, 76, 132] }, @@ -225078,23 +225078,23 @@ "year": 1771, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -30.976525523007453, - "c2": -7.27848069910069, - "c3": 1.9756576656461462, - "c4": -5.143263316605726, - "c5": 24.804629044320563, - "c6": -18.372711992891766, - "c7": -22.73496272141797 + "points": { + "c1": -2.9848329838428427, + "c2": -44.86479493518482, + "c3": 7.688242505888489, + "c4": 2.1308336866953894, + "c5": -31.334802396157556, + "c6": 2.7360861375412853, + "c7": -23.8931647088627 }, - "vertexSeeds": { - "c1": 7.7349637808626595, - "c2": 7.805090936825417, - "c3": 7.720072867921608, - "c4": 7.766600763501654, - "c5": 7.824518655373405, - "c6": 7.7564897814073435, - "c7": 7.76642774102838 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249654, + "c3": 9.338881183541378, + "c4": 7.471104946833102, + "c5": 5.603328710124827, + "c6": 3.735552473416551, + "c7": 1.8677762367082755 }, "rgb": [86, 146, 138] }, @@ -225105,23 +225105,23 @@ "year": 1771, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 26.197403635191165, - "c2": 18.398692272027517, - "c3": -6.097050739317627, - "c4": -27.10838125495153, - "c5": -0.31392813558347044, - "c6": -1.9148873655830023, - "c7": -8.759726817922264 + "points": { + "c1": -4.299101061107809, + "c2": -6.765895172613934, + "c3": 20.61080847692569, + "c4": 5.146374827916965, + "c5": 21.72776609589652, + "c6": 29.649252158499138, + "c7": -17.520604272392923 }, - "vertexSeeds": { - "c1": 6.246376187055662, - "c2": 6.765302518736584, - "c3": 6.780087192669551, - "c4": 5.85900895237147, - "c5": 5.791242759927977, - "c6": 6.222698761343885, - "c7": 5.632857382302432 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [58, 15, 49] }, @@ -225132,23 +225132,23 @@ "year": 1771, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 4.043396732888809, - "c2": 0.2725607734918043, - "c3": -29.51518062519304, - "c4": -24.02164727901427, - "c5": 0.027409136945358625, - "c6": 23.400075088702515, - "c7": -4.22895773927921 + "points": { + "c1": 42.42786285718828, + "c2": -41.404722139399034, + "c3": 45.02672661959436, + "c4": 43.982065898505745, + "c5": -3.274784798696288, + "c6": -13.4843264457243, + "c7": 42.2810177725818 }, - "vertexSeeds": { - "c1": 2.648786242830609, - "c2": 2.5583836452291955, - "c3": 2.823312819556892, - "c4": 2.6731704274129817, - "c5": 2.588001350394741, - "c6": 2.6449485140074307, - "c7": 2.484523770276705 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.0776699029126195, + "c3": 3.3980582524271874, + "c4": 2.718446601941748, + "c5": 2.0388349514563098, + "c6": 1.3592233009708778, + "c7": 0.6796116504854389 }, "rgb": [77, 76, 132] }, @@ -225159,23 +225159,23 @@ "year": 1771, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 32.74668285742543, - "c2": -6.400640033704551, - "c3": 22.55958033180842, - "c4": 9.222233677319494, - "c5": -1.3331031734915015, - "c6": 21.14417821738528, - "c7": 14.754266218375996 + "points": { + "c1": 29.754917402059917, + "c2": -13.132508899284847, + "c3": -38.593763003334466, + "c4": -22.051783555592547, + "c5": -32.52494447327286, + "c6": -12.53299196478325, + "c7": 6.882967885877143 }, - "vertexSeeds": { - "c1": 5.111244323083956, - "c2": 4.903899420560696, - "c3": 4.697643485610066, - "c4": 4.623197071364602, - "c5": 4.9828682049226, - "c6": 4.933002483232579, - "c7": 4.5562323547172205 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099818 }, "rgb": [222, 0, 59] }, @@ -225186,23 +225186,23 @@ "year": 1771, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -18.351739901436193, - "c2": -0.5628895142854944, - "c3": 36.345198877929256, - "c4": -22.543658628883733, - "c5": 31.890911829619448, - "c6": 3.438831988379768, - "c7": 19.523317711181072 + "points": { + "c1": 0.6037146683849173, + "c2": -26.667342862670047, + "c3": 11.18186257877445, + "c4": 32.992534161541435, + "c5": 13.786558024700497, + "c6": 42.73081927333207, + "c7": -39.29280771929131 }, - "vertexSeeds": { - "c1": 5.284974093264248, - "c2": 5.284974093264248, - "c3": 5.284974093264248, - "c4": 5.284974093264248, - "c5": 5.284974093264248, - "c6": 5.284974093264248, - "c7": 5.284974093264248 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -225213,23 +225213,23 @@ "year": 1771, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -13.330029751841487, - "c2": 18.554414474681003, - "c3": 31.226546893025343, - "c4": -25.683362215187486, - "c5": 23.668044697607392, - "c6": -21.177318638660964, - "c7": -22.55731988245483 + "points": { + "c1": 14.00611225543048, + "c2": 32.63396922534192, + "c3": 28.122425934577493, + "c4": 15.027304514505758, + "c5": 5.559424174341871, + "c6": -21.929681009127044, + "c7": -20.241652065842995 }, - "vertexSeeds": { - "c1": 6.103968346514654, - "c2": 6.233012866440459, - "c3": 5.695056847576533, - "c4": 6.012066493176892, - "c5": 6.1322049043215845, - "c6": 6.44958744346985, - "c7": 5.881741914367436 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514563, + "c3": 7.7669902912621325, + "c4": 6.213592233009705, + "c5": 4.660194174757287, + "c6": 3.1067961165048574, + "c7": 1.5533980582524287 }, "rgb": [222, 0, 59] }, @@ -225240,23 +225240,23 @@ "year": 1771, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -10.674061805132368, - "c2": 22.21377339713864, - "c3": -4.475024232099656, - "c4": -4.859177800455914, - "c5": 12.278336038078091, - "c6": 3.6065800727937436, - "c7": -0.08616986589684217 + "points": { + "c1": 2.129282146902348, + "c2": -23.657076366072282, + "c3": -14.769987387614702, + "c4": -18.645470252115274, + "c5": 26.35791060311975, + "c6": 22.863911907391717, + "c7": -2.322087196664615 }, - "vertexSeeds": { - "c1": 5.228382650807999, - "c2": 5.260279336120914, - "c3": 4.896397788421984, - "c4": 5.244947040700249, - "c5": 5.611589264459994, - "c6": 5.561832553919357, - "c7": 4.8410685493038175 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.04438280166436, + "c3": 6.703652334720291, + "c4": 5.362921867776238, + "c5": 4.022191400832183, + "c6": 2.6814609338881157, + "c7": 1.340730466944061 }, "rgb": [86, 146, 138] }, @@ -225267,23 +225267,23 @@ "year": 1771, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -4.176201429230151, - "c2": -9.269322516406469, - "c3": -12.771960601043869, - "c4": -1.3638374378421751, - "c5": 28.773580089526565, - "c6": -2.773395954265464, - "c7": -0.6020168728149251 + "points": { + "c1": -25.28830576603474, + "c2": 9.408974382987473, + "c3": -11.87890202742166, + "c4": -27.739509695152435, + "c5": 20.4074579169706, + "c6": -8.0588358773613, + "c7": 6.306312677747179 }, - "vertexSeeds": { - "c1": 7.026988699044032, - "c2": 6.170240313536058, - "c3": 6.23754118518723, - "c4": 6.85194953591716, - "c5": 6.268632742635768, - "c6": 6.672402930419294, - "c7": 6.107691383871125 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640774, + "c3": 8.414239482200642, + "c4": 6.7313915857605116, + "c5": 5.048543689320394, + "c6": 3.3656957928802624, + "c7": 1.6828478964401312 }, "rgb": [58, 15, 49] }, @@ -225294,23 +225294,23 @@ "year": 1771, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -29.39006829483979, - "c2": -27.666766122836034, - "c3": -15.727081211287578, - "c4": -10.658089673907877, - "c5": -14.998262896330267, - "c6": 24.141893852034052, - "c7": -23.34453595371617 + "points": { + "c1": 10.179291779169603, + "c2": -6.886776074876611, + "c3": 19.511604316356454, + "c4": 7.88423824020024, + "c5": 30.813154553064052, + "c6": 23.444854351530708, + "c7": -28.553851430174 }, - "vertexSeeds": { - "c1": 7.494395790540834, - "c2": 7.447609465501106, - "c3": 7.305591580640216, - "c4": 7.101059649811794, - "c5": 7.50447073216756, - "c6": 7.3193757337681795, - "c7": 7.489121827527378 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.762829403606103, + "c3": 8.969024503005086, + "c4": 7.175219602404068, + "c5": 5.381414701803052, + "c6": 3.587609801202034, + "c7": 1.793804900601017 }, "rgb": [222, 0, 59] }, @@ -225321,23 +225321,23 @@ "year": 1770, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 14.356487929515918, - "c2": 23.19403972155533, - "c3": 25.12595916479255, - "c4": 23.09258082344562, - "c5": 8.021125634826884, - "c6": -3.6352667264133167, - "c7": -23.276528876292886 + "points": { + "c1": -21.623548540507606, + "c2": 14.000947877361629, + "c3": 25.864087040051043, + "c4": 16.638131619989178, + "c5": -12.425215482220814, + "c6": 5.337844071790084, + "c7": 1.7490241709720031 }, - "vertexSeeds": { - "c1": 8.093528153510986, - "c2": 8.135388905751217, - "c3": 8.110009974075304, - "c4": 7.999807428861977, - "c5": 8.177809304292568, - "c6": 8.072023200891945, - "c7": 8.117509190072875 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094314, + "c3": 9.824318076745262, + "c4": 7.859454461396209, + "c5": 5.894590846047157, + "c6": 3.9297272306981044, + "c7": 1.9648636153490522 }, "rgb": [238, 201, 159] }, @@ -225348,23 +225348,23 @@ "year": 1771, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 14.05335096208642, - "c2": -0.4633707038307975, - "c3": -18.38509555254887, - "c4": -11.750609744109521, - "c5": 20.2503168129766, - "c6": -35.658960309360836, - "c7": 1.0663251810090344 + "points": { + "c1": -23.686590727524216, + "c2": 37.77608665989406, + "c3": 27.988738603040332, + "c4": -23.883378535257094, + "c5": -12.201408384955656, + "c6": -10.695770295239747, + "c7": -6.451030635228548 }, - "vertexSeeds": { - "c1": 2.3923204310842197, - "c2": 2.370915174640005, - "c3": 2.2583752711429934, - "c4": 2.190738784360323, - "c5": 2.179906935250318, - "c6": 2.3728393279127586, - "c7": 2.2921847305108556 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886253, + "c3": 2.981969486823856, + "c4": 2.3855755894590835, + "c5": 1.7891816920943144, + "c6": 1.1927877947295418, + "c7": 0.5963938973647728 }, "rgb": [86, 146, 138] }, @@ -225375,23 +225375,23 @@ "year": 1771, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 17.763463622463142, - "c2": -12.77412103612819, - "c3": 17.018621925876772, - "c4": -14.733843870359422, - "c5": 37.64796103018646, - "c6": 21.386948559690097, - "c7": -4.193070851611736 + "points": { + "c1": 19.29467747365434, + "c2": 3.6363164921485023, + "c3": 12.152229867975635, + "c4": 8.905907320691782, + "c5": 39.58537116116538, + "c6": -10.875431117913998, + "c7": -13.377743658975103 }, - "vertexSeeds": { - "c1": 1.94300518134715, - "c2": 1.94300518134715, - "c3": 1.94300518134715, - "c4": 1.94300518134715, - "c5": 1.94300518134715, - "c6": 1.94300518134715, - "c7": 1.94300518134715 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -225402,23 +225402,23 @@ "year": 1771, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 25.520505191458266, - "c2": 19.13721880206398, - "c3": 21.598305328969236, - "c4": 3.3443624845599054, - "c5": -13.52115188098237, - "c6": 7.5425033736019, - "c7": -20.49062692916231 + "points": { + "c1": 21.390323052441666, + "c2": 4.507498422603433, + "c3": -17.074706198041074, + "c4": -21.317317609696737, + "c5": 16.47555573127616, + "c6": -15.974984034188914, + "c7": 1.0808908993842792 }, - "vertexSeeds": { - "c1": 2.5259076993828713, - "c2": 2.475745761347833, - "c3": 2.12334991976049, - "c4": 2.5098840286803963, - "c5": 2.3206421846438747, - "c6": 2.5795184665840347, - "c7": 2.144569192559575 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897375, + "c3": 3.0975496994914464, + "c4": 2.478039759593158, + "c5": 1.8585298196948672, + "c6": 1.239019879796579, + "c7": 0.6195099398982883 }, "rgb": [86, 146, 138] }, @@ -225429,23 +225429,23 @@ "year": 1770, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -7.308845993233689, - "c2": -29.34850759146113, - "c3": 0.8191358077671111, - "c4": -21.542493586324074, - "c5": 0.14505452280741693, - "c6": 10.132222803175612, - "c7": -1.0533681296444222 + "points": { + "c1": 6.839100125900838, + "c2": -17.713422929799737, + "c3": -21.14427358270513, + "c4": -10.751754566111515, + "c5": -19.106150777453834, + "c6": 27.51432992556428, + "c7": 23.890971648950337 }, - "vertexSeeds": { - "c1": 4.282233421995805, - "c2": 4.322174467533941, - "c3": 4.7747577287184475, - "c4": 4.301170409505742, - "c5": 4.1839453328319305, - "c6": 4.533191538661891, - "c7": 4.468606800790085 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -225456,23 +225456,23 @@ "year": 1771, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -33.71790876193524, - "c2": 3.8482224631883213, - "c3": -18.77435082522646, - "c4": 36.77678833233365, - "c5": 27.705135814720464, - "c6": -5.871392250083339, - "c7": -14.024776122627927 + "points": { + "c1": -27.60389491622852, + "c2": 26.47244002401783, + "c3": 19.108067389310918, + "c4": -39.09103196823814, + "c5": 29.90112957392786, + "c6": 21.207727814280858, + "c7": -26.996366872090768 }, - "vertexSeeds": { - "c1": 10.742672571642286, - "c2": 11.163046993223945, - "c3": 10.60115146342533, - "c4": 10.829806980530572, - "c5": 10.456409867520819, - "c6": 10.718140714998011, - "c7": 11.015056349982368 + "offsets": { + "c1": 18.673139158576053, + "c2": 16.005547850208043, + "c3": 13.337956541840038, + "c4": 10.67036523347203, + "c5": 8.002773925104021, + "c6": 5.335182616736015, + "c7": 2.6675913083680074 }, "rgb": [58, 15, 49] }, @@ -225483,23 +225483,23 @@ "year": 1771, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -7.79892139071735, - "c2": 28.522320776926005, - "c3": -7.918726199254241, - "c4": -21.88490675057928, - "c5": 20.082559073576302, - "c6": -16.80663715779242, - "c7": 23.983527286477045 + "points": { + "c1": 21.581410164672906, + "c2": 21.29816429737407, + "c3": 5.714044112682419, + "c4": -22.508779407105365, + "c5": -8.134583787957304, + "c6": -20.57448982434879, + "c7": -12.107169056038476 }, - "vertexSeeds": { - "c1": 1.5262936673342533, - "c2": 1.5766512661598975, - "c3": 1.5750740958512957, - "c4": 1.4125726386329753, - "c5": 1.5210611146717148, - "c6": 1.4722179432674412, - "c7": 1.560802148325352 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [86, 146, 138] }, @@ -225510,23 +225510,23 @@ "year": 1771, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -42.97197991332783, - "c2": 15.739650099643569, - "c3": 38.906463014989455, - "c4": -39.92860708628358, - "c5": -10.067975023361313, - "c6": 10.003644697214924, - "c7": 9.302343637380808 + "points": { + "c1": 44.66719123267295, + "c2": -24.454396325181907, + "c3": -28.127466633007952, + "c4": 16.35975114052895, + "c5": 22.782806350406588, + "c6": 24.27074395709971, + "c7": -20.25810479187594 }, - "vertexSeeds": { - "c1": 1.2213935628595955, - "c2": 1.3273119324786538, - "c3": 1.2507513986996908, - "c4": 1.278953763250116, - "c5": 1.1565119712529026, - "c6": 1.1518343297953793, - "c7": 1.2078259761156178 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959767, + "c3": 1.6643550624133157, + "c4": 1.3314840499306517, + "c5": 0.9986130374479876, + "c6": 0.6657420249653265, + "c7": 0.33287101248266254 }, "rgb": [222, 0, 59] }, @@ -225537,23 +225537,23 @@ "year": 1771, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -6.498990889929345, - "c2": -16.187464420370947, - "c3": 11.935064928918479, - "c4": -38.01828982165841, - "c5": 14.255541549654104, - "c6": -35.95351360999308, - "c7": -33.47893814297447 + "points": { + "c1": 24.071436934494663, + "c2": 29.50029916076405, + "c3": 0.8795441611511734, + "c4": -9.689267501570413, + "c5": 23.24198085498879, + "c6": -36.574902011333904, + "c7": -3.3596109457634 }, - "vertexSeeds": { - "c1": 3.9732784960675955, - "c2": 4.160822631985952, - "c3": 4.332061628784446, - "c4": 4.287041755710006, - "c5": 3.844012125738558, - "c6": 4.029354854630241, - "c7": 4.256939268082066 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090151, + "c3": 5.224225612575128, + "c4": 4.1793804900601, + "c5": 3.1345353675450784, + "c6": 2.08969024503005, + "c7": 1.0448451225150215 }, "rgb": [58, 15, 49] }, @@ -225564,23 +225564,23 @@ "year": 1771, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 21.131126971938485, - "c2": -4.933140927366118, - "c3": 30.087060126765266, - "c4": 44.4186915608593, - "c5": 6.606078855353907, - "c6": 7.811968253924178, - "c7": 1.7870409058553136 + "points": { + "c1": 3.6145083376048603, + "c2": -45.76113371558605, + "c3": 27.366372648195195, + "c4": -23.83880943793501, + "c5": -9.966854245396789, + "c6": 12.588626390972756, + "c7": -45.669789613159224 }, - "vertexSeeds": { - "c1": 4.756705800597116, - "c2": 4.405951575791362, - "c3": 4.8301619421583615, - "c4": 4.514873737957844, - "c5": 4.776586068387438, - "c6": 4.707940013692864, - "c7": 5.3288235051229975 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -225591,23 +225591,23 @@ "year": 1771, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": -33.26999803110789, - "c2": 11.268980266474543, - "c3": -7.818192609902042, - "c4": 32.008402722587775, - "c5": 1.2258836510912232, - "c6": -32.065649562540536, - "c7": -29.369629527022514 + "points": { + "c1": 35.83832085964244, + "c2": -10.971853896093364, + "c3": 32.9742357395082, + "c4": -32.87163906401602, + "c5": 35.79670974122206, + "c6": 24.515667502364778, + "c7": -1.8164757877352713 }, - "vertexSeeds": { - "c1": 6.257776228400759, - "c2": 6.18549541709725, - "c3": 5.85646350082335, - "c4": 6.0821847069725825, - "c5": 6.104256537257877, - "c6": 5.696318753201596, - "c7": 6.128833902845749 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313453, + "c3": 7.651410078594541, + "c4": 6.121128062875646, + "c5": 4.590846047156734, + "c6": 3.060564031437823, + "c7": 1.5302820157189114 }, "rgb": [86, 146, 138] }, @@ -225618,23 +225618,23 @@ "year": 1771, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -31.39545423740509, - "c2": 0.5747495416304531, - "c3": 40.007956591662634, - "c4": -17.151456960094837, - "c5": 21.4060251191098, - "c6": -13.347393189571722, - "c7": 4.738151113737764 + "points": { + "c1": 29.139503509859267, + "c2": -24.78557428129947, + "c3": 1.8109158504550962, + "c4": 16.615440005293586, + "c5": 28.24722380749168, + "c6": -41.85505939824603, + "c7": -0.8149805366006291 }, - "vertexSeeds": { - "c1": 3.9604982403718623, - "c2": 4.440975401813012, - "c3": 3.8170286074689193, - "c4": 4.239360985421432, - "c5": 3.9848494546271507, - "c6": 4.197664693016139, - "c7": 3.86587664629813 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -225645,23 +225645,23 @@ "year": 1771, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -11.633507614034453, - "c2": -30.268974442644627, - "c3": 36.06811971205653, - "c4": -24.18451855638341, - "c5": -19.833530213854075, - "c6": 25.32160067929498, - "c7": 28.71860590710874 + "points": { + "c1": 10.50365157898419, + "c2": -10.471875398471681, + "c3": -11.049952275250718, + "c4": 3.5308376592228754, + "c5": 30.07532353428155, + "c6": 29.20463317968968, + "c7": -35.03601790462253 }, - "vertexSeeds": { - "c1": 6.09170869091138, - "c2": 6.255623149866333, - "c3": 6.004519631096678, - "c4": 5.967918435308581, - "c5": 5.942976714779379, - "c6": 5.9449188081271425, - "c7": 6.152402336473142 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [238, 201, 159] }, @@ -225672,23 +225672,23 @@ "year": 1771, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -26.860153215775366, - "c2": 8.042807694055007, - "c3": -17.564123977132013, - "c4": -15.23477337352061, - "c5": 31.65084930875375, - "c6": -31.821583268857115, - "c7": -18.50588996796946 + "points": { + "c1": -34.473299286211294, + "c2": -4.678091076336024, + "c3": -11.298386548702137, + "c4": 20.33499546813298, + "c5": -13.05204372027502, + "c6": 0.4752568555417298, + "c7": 6.124980063508808 }, - "vertexSeeds": { - "c1": 5.053924986660238, - "c2": 4.983754484319658, - "c3": 4.8818297795563845, - "c4": 5.097921953601777, - "c5": 5.137071183724763, - "c6": 5.156393690082676, - "c7": 4.919606492010943 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [86, 146, 138] }, @@ -225699,23 +225699,23 @@ "year": 1771, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 3.303794972525054, - "c2": 31.742410591841846, - "c3": -3.8612671367268803, - "c4": 14.106619191307075, - "c5": 9.8042661481403, - "c6": -25.33647105870029, - "c7": 24.715996592940236 + "points": { + "c1": -14.113229106967761, + "c2": -7.75415275350608, + "c3": 9.38499441694804, + "c4": -3.264577243404837, + "c5": 7.749998769898895, + "c6": -26.407582065707135, + "c7": -18.37284756516528 }, - "vertexSeeds": { - "c1": 4.642084791001578, - "c2": 4.685512571143871, - "c3": 4.658465344634494, - "c4": 4.512253245866753, - "c5": 4.539539194819322, - "c6": 4.432727395089815, - "c7": 4.648297267864933 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814151, + "c3": 5.64031437817845, + "c4": 4.512251502542763, + "c5": 3.3841886269070756, + "c6": 2.2561257512713744, + "c7": 1.1280628756356872 }, "rgb": [238, 201, 159] }, @@ -225726,23 +225726,23 @@ "year": 1770, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 18.42105436834594, - "c2": 26.747044755622742, - "c3": 22.448595849899153, - "c4": -7.974176711726347, - "c5": 3.951090056593923, - "c6": -13.772773469152078, - "c7": -10.628660213567152 + "points": { + "c1": 6.03739064304472, + "c2": -13.84852687318277, + "c3": -25.681624741582016, + "c4": -23.983037885670637, + "c5": -20.287505221639975, + "c6": 22.125023083370092, + "c7": -7.598725611642699 }, - "vertexSeeds": { - "c1": 8.218060994649148, - "c2": 8.226515922178097, - "c3": 7.85353530252457, - "c4": 7.954018041939206, - "c5": 7.988281537897159, - "c6": 8.112339954881136, - "c7": 7.430243095960106 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938977, + "c3": 10.309754969949141, + "c4": 8.247803975959314, + "c5": 6.1858529819694885, + "c6": 4.123901987979653, + "c7": 2.0619509939898264 }, "rgb": [222, 0, 59] }, @@ -225753,23 +225753,23 @@ "year": 1771, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -9.090350109602696, - "c2": -1.7986591538149668, - "c3": 7.617358708233009, - "c4": -16.220798491832753, - "c5": -3.4147760415925887, - "c6": -8.751532066130377, - "c7": 6.157815529720583 + "points": { + "c1": -20.979204248903134, + "c2": 23.513580363719196, + "c3": 26.875869975301892, + "c4": -14.799671293165238, + "c5": 27.719623361710337, + "c6": -12.257705466622578, + "c7": -24.318554518929375 }, - "vertexSeeds": { - "c1": 7.091731975682628, - "c2": 6.808150904459422, - "c3": 7.676106488262246, - "c4": 7.652053532949318, - "c5": 7.161535394148621, - "c6": 7.390312265597648, - "c7": 6.639353336592256 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370314, + "c3": 9.408229311141934, + "c4": 7.526583448913542, + "c5": 5.644937586685161, + "c6": 3.763291724456771, + "c7": 1.8816458622283807 }, "rgb": [58, 15, 49] }, @@ -225780,23 +225780,23 @@ "year": 1771, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 17.28263918647945, - "c2": -17.57139239530832, - "c3": 34.071441585011414, - "c4": 34.571272436309755, - "c5": 27.66030903979714, - "c6": 15.397987905391652, - "c7": 33.41725101478795 + "points": { + "c1": -15.073702557329273, + "c2": 33.14173955350351, + "c3": -15.739663734352675, + "c4": 21.815254029595494, + "c5": -17.470285029034518, + "c6": 0.18765618437010545, + "c7": -6.628300559438003 }, - "vertexSeeds": { - "c1": 3.875780274539574, - "c2": 3.825765685435283, - "c3": 3.702265015949191, - "c4": 3.735031339486501, - "c5": 3.5753484192986793, - "c6": 3.9541950467118494, - "c7": 3.984420605461307 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486826, + "c3": 4.877484974572352, + "c4": 3.9019879796578842, + "c5": 2.9264909847434097, + "c6": 1.9509939898289421, + "c7": 0.9754969949144678 }, "rgb": [58, 15, 49] }, @@ -225807,23 +225807,23 @@ "year": 1771, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -12.236283725289482, - "c2": -16.33039523906831, - "c3": -21.520846007622104, - "c4": 11.932723161520368, - "c5": 8.225524820838945, - "c6": 22.32423772566209, - "c7": 2.842467536639255 + "points": { + "c1": -17.179294731564347, + "c2": -24.05096307813479, + "c3": 4.2643348803845775, + "c4": 15.729105404019247, + "c5": 8.235857073596055, + "c6": -5.264683594178791, + "c7": -1.071230388292797 }, - "vertexSeeds": { - "c1": 2.4151620893886903, - "c2": 2.5419628925275966, - "c3": 2.426891290990684, - "c4": 2.550065817090903, - "c5": 2.419928142624688, - "c6": 2.5816384015009404, - "c7": 2.42937719377068 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [77, 76, 132] }, @@ -225834,23 +225834,23 @@ "year": 1770, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 15.992148997851917, - "c2": -10.617446970138715, - "c3": -9.129976229548863, - "c4": -20.329527050406814, - "c5": 7.153625748939195, - "c6": 7.3657311157882255, - "c7": 9.874034954984449 + "points": { + "c1": -8.296116463019114, + "c2": 24.63054219388741, + "c3": 7.129845914507083, + "c4": -12.276082316821011, + "c5": -24.84780897981294, + "c6": 1.9907855070159712, + "c7": -5.807413725779121 }, - "vertexSeeds": { - "c1": 7.013421121845248, - "c2": 7.87718123879416, - "c3": 7.575177718173425, - "c4": 7.982524572090314, - "c5": 7.178397661769134, - "c6": 6.9671199020821275, - "c7": 8.061295520765004 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094312, + "c3": 9.824318076745266, + "c4": 7.8594544613962105, + "c5": 5.894590846047156, + "c6": 3.929727230698101, + "c7": 1.9648636153490553 }, "rgb": [238, 201, 159] }, @@ -225861,23 +225861,23 @@ "year": 1771, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 20.811041859449837, - "c2": 27.43142274753638, - "c3": 13.613227776531566, - "c4": 9.963960302573014, - "c5": -7.379580898383129, - "c6": 13.076970988895646, - "c7": 26.38746197800822 + "points": { + "c1": 21.679882676864885, + "c2": -5.979008425200782, + "c3": 19.219253270829938, + "c4": -25.7105264511489, + "c5": -17.222648049451998, + "c6": 9.464908279528366, + "c7": -11.885971757702034 }, - "vertexSeeds": { - "c1": 7.817057744120759, - "c2": 8.021659946809434, - "c3": 8.538579823558068, - "c4": 8.57813604713061, - "c5": 8.277176387276137, - "c6": 9.249430916171072, - "c7": 9.006373488526641 + "offsets": { + "c1": 15.987055016181229, + "c2": 13.703190013869628, + "c3": 11.41932501155802, + "c4": 9.135460009246419, + "c5": 6.851595006934809, + "c6": 4.567730004623209, + "c7": 2.2838650023116096 }, "rgb": [58, 15, 49] }, @@ -225888,23 +225888,23 @@ "year": 1771, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -2.4880238035764464, - "c2": -24.728682347928018, - "c3": -1.2639300653143977, - "c4": 3.7489156153467675, - "c5": -26.372826983523517, - "c6": -11.185386390480083, - "c7": 10.555498336963716 + "points": { + "c1": -5.754073742484469, + "c2": -32.98489199789347, + "c3": 24.13415858196428, + "c4": 1.1066557288206624, + "c5": -14.963448508603662, + "c6": 8.932790253259569, + "c7": 13.295231753512432 }, - "vertexSeeds": { - "c1": 4.4414351413368, - "c2": 4.68177891291391, - "c3": 4.2844806012019, - "c4": 4.237659435948345, - "c5": 4.555092673200732, - "c6": 4.478905901284996, - "c7": 4.800908054710494 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -225915,23 +225915,23 @@ "year": 1771, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -5.329559711204425, - "c2": 4.768773384800085, - "c3": 36.15737472427858, - "c4": -38.76363330610843, - "c5": 16.31689693498616, - "c6": 4.31658798548807, - "c7": 25.55280908543469 + "points": { + "c1": -38.0949544472412, + "c2": 0.580309587727939, + "c3": -38.37364878560687, + "c4": 5.6452907300907995, + "c5": -32.38419854656851, + "c6": -12.847834609008014, + "c7": 14.723466215466225 }, - "vertexSeeds": { - "c1": 3.7893922082673477, - "c2": 4.026683985859321, - "c3": 3.649654140663531, - "c4": 3.548184248578501, - "c5": 3.689113986518659, - "c6": 3.648539627190035, - "c7": 3.3822968863216007 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486822, + "c3": 4.877484974572351, + "c4": 3.9019879796578847, + "c5": 2.9264909847434137, + "c6": 1.9509939898289423, + "c7": 0.9754969949144712 }, "rgb": [222, 0, 59] }, @@ -225942,23 +225942,23 @@ "year": 1771, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 29.127140646312462, - "c2": -11.36662955760627, - "c3": 8.03769347890718, - "c4": 22.111320927503293, - "c5": 29.034385877854184, - "c6": 4.0216326271065626, - "c7": 9.250560131509552 + "points": { + "c1": -19.967289093167267, + "c2": 10.894516790091622, + "c3": 22.564704592154243, + "c4": 7.891784675478455, + "c5": 26.641697241106947, + "c6": -9.151775664436517, + "c7": -13.297714627936777 }, - "vertexSeeds": { - "c1": 2.8085744908506434, - "c2": 3.034431700248927, - "c3": 2.707169584709832, - "c4": 2.932219293531273, - "c5": 2.69558849890596, - "c6": 2.937215942968286, - "c7": 2.582304012436662 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299603, + "c4": 2.995839112343967, + "c5": 2.2468793342579745, + "c6": 1.4979195561719814, + "c7": 0.748959778085993 }, "rgb": [222, 0, 59] }, @@ -225969,23 +225969,23 @@ "year": 1771, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -2.012625131156163, - "c2": 1.6326561260139698, - "c3": 26.629613354413223, - "c4": -4.435857683701798, - "c5": 17.219920512798076, - "c6": -18.412383594526045, - "c7": 35.27551109837691 + "points": { + "c1": 39.314338277081035, + "c2": 3.635013810861423, + "c3": -11.906796692566417, + "c4": -45.60785999016197, + "c5": 39.45360605965804, + "c6": -25.10898995792345, + "c7": 25.67213630321912 }, - "vertexSeeds": { - "c1": 5.675919835445245, - "c2": 6.461369244058218, - "c3": 6.609794379411529, - "c4": 6.466184552953086, - "c5": 6.198631447951664, - "c6": 6.364455634787263, - "c7": 6.324298062787591 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -225996,23 +225996,23 @@ "year": 1771, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 17.091580286451837, - "c2": -26.318198610069626, - "c3": 2.7845911535269288, - "c4": -18.41000587831234, - "c5": 8.479071902719326, - "c6": 26.780659839683608, - "c7": 25.15439169844354 + "points": { + "c1": 21.95347103694207, + "c2": 9.243839236568903, + "c3": -29.084083023956453, + "c4": -21.216646322262513, + "c5": -3.815041384897242, + "c6": 19.37064500627595, + "c7": 15.45471708007502 }, - "vertexSeeds": { - "c1": 3.531514864535359, - "c2": 3.5703833922856476, - "c3": 3.46926935822783, - "c4": 3.459996537372215, - "c5": 3.5984134714863583, - "c6": 3.3975810918229365, - "c7": 3.7191550381542027 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366158, + "c3": 4.808136846971796, + "c4": 3.8465094775774396, + "c5": 2.884882108183079, + "c6": 1.9232547387887176, + "c7": 0.9616273693943612 }, "rgb": [58, 15, 49] }, @@ -226023,23 +226023,23 @@ "year": 1771, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 7.1377983230357245, - "c2": -1.1021273825779474, - "c3": 21.411898174715965, - "c4": -10.201532830153845, - "c5": -5.545393900757194, - "c6": 33.21081153023363, - "c7": 18.798278672503976 + "points": { + "c1": -6.934864250892929, + "c2": 16.862364103137246, + "c3": 7.413044035647303, + "c4": 10.41279205020318, + "c5": 8.847953976750844, + "c6": -4.561647874401224, + "c7": 8.952741266062347 }, - "vertexSeeds": { - "c1": 5.050270520404065, - "c2": 4.910484801404817, - "c3": 5.0396212962791305, - "c4": 5.0407668968397195, - "c5": 4.378250367170776, - "c6": 4.668647525134796, - "c7": 4.795501476855283 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -226050,23 +226050,23 @@ "year": 1771, "resistanceReported": true, "duration": 24796800, - "curveSeeds": { - "c1": -2.8639862272277696, - "c2": -18.134796223239793, - "c3": -9.118399172994078, - "c4": 30.441744743923536, - "c5": 29.86673523143942, - "c6": -6.9531293425468945, - "c7": -14.294745341456625 + "points": { + "c1": -12.881644260930031, + "c2": 12.094912485153941, + "c3": 37.36633435521584, + "c4": 27.31429742840983, + "c5": 12.883430463660495, + "c6": 12.234615243919109, + "c7": 37.021630831514045 }, - "vertexSeeds": { - "c1": 8.429089931749667, - "c2": 8.035438294511357, - "c3": 8.873538288928307, - "c4": 8.403144358149849, - "c5": 7.771069044724613, - "c6": 8.369558254316225, - "c7": 7.915248833913032 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502085, + "c3": 10.63337956541841, + "c4": 8.50670365233472, + "c5": 6.380027739251043, + "c6": 4.253351826167366, + "c7": 2.12667591308369 }, "rgb": [58, 15, 49] }, @@ -226077,23 +226077,23 @@ "year": 1771, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 4.062371785868766, - "c2": 23.622579132059514, - "c3": -11.204036262749044, - "c4": -26.111781999276573, - "c5": 10.581165615593171, - "c6": 24.031287608452843, - "c7": -2.7271360277550976 + "points": { + "c1": -8.55942059697976, + "c2": -8.660996993859523, + "c3": -3.8563846477290618, + "c4": -3.926517077169624, + "c5": 0.001987009449681665, + "c6": 23.799973073812254, + "c7": 15.785830298248754 }, - "vertexSeeds": { - "c1": 4.663143767924749, - "c2": 4.5822019481470635, - "c3": 4.276850568154497, - "c4": 4.427789187383585, - "c5": 4.5443413237043035, - "c6": 4.271502519723592, - "c7": 4.185473960372531 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -226104,23 +226104,23 @@ "year": 1771, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -10.837718543260326, - "c2": 9.065473766706226, - "c3": -8.429774361315186, - "c4": 22.834535752653778, - "c5": -11.154508667225373, - "c6": -12.71378915973302, - "c7": -21.146057585528034 + "points": { + "c1": -8.96859697283811, + "c2": -15.686204907983287, + "c3": 1.9431695289182613, + "c4": 11.262190096061076, + "c5": 13.141834501206688, + "c6": 17.359501181131506, + "c7": -21.08370963164499 }, - "vertexSeeds": { - "c1": 1.2338673398339068, - "c2": 1.1732065040706008, - "c3": 1.4100980094362563, - "c4": 1.3998324371791075, - "c5": 1.1671322117923182, - "c6": 1.4533017511685595, - "c7": 1.4549098692372842 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.1081830790568654, + "c3": 1.756819232547388, + "c4": 1.4054553860379102, + "c5": 1.0540915395284327, + "c6": 0.7027276930189551, + "c7": 0.35136384650947755 }, "rgb": [222, 0, 59] }, @@ -226131,23 +226131,23 @@ "year": 1771, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -15.965186128090213, - "c2": 7.733956648403819, - "c3": 7.872545639660245, - "c4": -21.686067719958544, - "c5": 18.70446610284823, - "c6": -3.7606375454658725, - "c7": -17.616871381604774 + "points": { + "c1": -17.89991943433553, + "c2": -24.076002241525348, + "c3": -0.5983402884732385, + "c4": -15.11877257868273, + "c5": -9.204665105264066, + "c6": 11.631230825839218, + "c7": 9.896889464155024 }, - "vertexSeeds": { - "c1": 7.200921515156837, - "c2": 7.524780650738521, - "c3": 7.328404286374266, - "c4": 7.390683147694672, - "c5": 7.1234690025541685, - "c6": 6.602169261387776, - "c7": 6.807420327082671 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370314, + "c3": 9.408229311141934, + "c4": 7.526583448913542, + "c5": 5.644937586685161, + "c6": 3.763291724456771, + "c7": 1.8816458622283807 }, "rgb": [58, 15, 49] }, @@ -226158,23 +226158,23 @@ "year": 1771, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -12.748262384522016, - "c2": 25.952244006001248, - "c3": 11.026500168468946, - "c4": -14.530180459426665, - "c5": 6.123235828344487, - "c6": -18.59449628241255, - "c7": -4.741696973909612 + "points": { + "c1": -24.223936803876278, + "c2": 17.05035052114727, + "c3": -19.911888294919038, + "c4": 18.07527589969867, + "c5": -22.09674885264992, + "c6": -17.23046231027858, + "c7": -25.593925520965954 }, - "vertexSeeds": { - "c1": 2.1527244282114024, - "c2": 2.466282745322528, - "c3": 2.3502197009287515, - "c4": 2.3333584670348815, - "c5": 2.231011347227037, - "c6": 2.4350358791090594, - "c7": 2.5490211228910473 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897375, + "c3": 3.0975496994914464, + "c4": 2.478039759593158, + "c5": 1.8585298196948672, + "c6": 1.239019879796579, + "c7": 0.6195099398982883 }, "rgb": [58, 15, 49] }, @@ -226185,23 +226185,23 @@ "year": 1771, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -20.004648888795057, - "c2": -12.986603157430034, - "c3": 8.674174997656777, - "c4": -9.291344746141835, - "c5": -12.077943889617494, - "c6": 7.040404470731794, - "c7": 18.07395897140637 + "points": { + "c1": -11.462999271392167, + "c2": 14.003474910204446, + "c3": -27.9960546672928, + "c4": 7.052173895864314, + "c5": 4.2115344193782605, + "c6": -24.063008330094043, + "c7": 28.86113926202706 }, - "vertexSeeds": { - "c1": 1.8900697138110485, - "c2": 1.8541265189969551, - "c3": 1.922721652374309, - "c4": 1.898917505247308, - "c5": 1.973432648220795, - "c6": 1.9674737336811103, - "c7": 1.9266925415848135 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.995839112343968, + "c3": 2.4965325936199707, + "c4": 1.9972260748959774, + "c5": 1.497919556171984, + "c6": 0.9986130374479907, + "c7": 0.4993065187239933 }, "rgb": [222, 0, 59] }, @@ -226212,23 +226212,23 @@ "year": 1771, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -11.780975596329075, - "c2": 22.32018925419373, - "c3": -25.820650475640154, - "c4": 6.038968445049669, - "c5": 11.765037987146002, - "c6": -11.57449815850806, - "c7": 21.903933871193956 + "points": { + "c1": -5.083561131837314, + "c2": -12.105705597166612, + "c3": 8.124748875724613, + "c4": 7.99313428271865, + "c5": 16.620414549514386, + "c6": -11.305648110370523, + "c7": 16.698865768877084 }, - "vertexSeeds": { - "c1": 4.294987453011465, - "c2": 4.55987364350044, - "c3": 4.265049706151904, - "c4": 4.762455924712253, - "c5": 4.277149788081827, - "c6": 4.062019242961679, - "c7": 4.689710198798639 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -226239,23 +226239,23 @@ "year": 1771, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -1.9120701813299803, - "c2": -26.350184025940884, - "c3": -4.859996025553475, - "c4": -13.93049136737979, - "c5": -3.6671208194994733, - "c6": 1.2607064536923787, - "c7": 27.66573767396563 + "points": { + "c1": 6.141111875699764, + "c2": -12.619432381871494, + "c3": -34.67118908189704, + "c4": -15.98907863498999, + "c5": -3.301332943885349, + "c6": -8.761364446855453, + "c7": 25.37650258634713 }, - "vertexSeeds": { - "c1": 8.824739378904164, - "c2": 9.089089625821712, - "c3": 8.365142260181932, - "c4": 8.759521855461651, - "c5": 8.29758894488152, - "c6": 8.825728585873327, - "c7": 8.838184485216367 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904297, + "c3": 10.864539990753583, + "c4": 8.691631992602865, + "c5": 6.518723994452149, + "c6": 4.3458159963014324, + "c7": 2.1729079981507162 }, "rgb": [58, 15, 49] }, @@ -226266,23 +226266,23 @@ "year": 1771, "resistanceReported": true, "duration": 14601600, - "curveSeeds": { - "c1": -13.695314988318907, - "c2": 19.360949793503913, - "c3": 6.023202344468739, - "c4": -2.680818156579104, - "c5": -14.813889374046742, - "c6": -14.103676337274738, - "c7": -11.351069471401118 + "points": { + "c1": -2.145638468307503, + "c2": 25.176024942670637, + "c3": 12.916959404040703, + "c4": 1.3382808113108737, + "c5": 5.9858167319111075, + "c6": -9.890506205046467, + "c7": -0.8972628271943073 }, - "vertexSeeds": { - "c1": 0.6004284692222847, - "c2": 0.594910930122921, - "c3": 0.6163016551542929, - "c4": 0.606122475740218, - "c5": 0.5404101782179453, - "c6": 0.529056719816052, - "c7": 0.5539580712660193 + "offsets": { + "c1": 1.0679611650485437, + "c2": 0.9153952843273233, + "c3": 0.7628294036061023, + "c4": 0.610263522884882, + "c5": 0.45769764216366166, + "c6": 0.30513176144244064, + "c7": 0.15256588072122032 }, "rgb": [86, 146, 138] }, @@ -226293,23 +226293,23 @@ "year": 1771, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -8.500428616446392, - "c2": -6.551744604415386, - "c3": 20.096668255406147, - "c4": -2.484970323049538, - "c5": -8.770271083355048, - "c6": -25.33949508158018, - "c7": 21.385108501666064 + "points": { + "c1": 20.431995007856397, + "c2": 12.228632886218325, + "c3": 23.021690727969467, + "c4": 6.706851533014085, + "c5": -17.59965631153388, + "c6": 0.8442534182540911, + "c7": 17.619217606017177 }, - "vertexSeeds": { - "c1": 5.225307519994316, - "c2": 5.171124676089384, - "c3": 4.872768389231275, - "c4": 5.041572094816802, - "c5": 4.814891428680116, - "c6": 5.001575562003309, - "c7": 5.075937833911908 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099818 }, "rgb": [58, 15, 49] }, @@ -226320,23 +226320,23 @@ "year": 1771, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -28.704456117449386, - "c2": -4.85821449455705, - "c3": 22.723055082680673, - "c4": -23.888396150641313, - "c5": -11.814149591878007, - "c6": 23.023340968010295, - "c7": -4.782346391796846 + "points": { + "c1": -32.04596479789772, + "c2": -26.448136077238864, + "c3": 10.335136123991333, + "c4": 18.434980445968257, + "c5": 28.367455956421836, + "c6": 27.747388362168365, + "c7": -8.980424804043086 }, - "vertexSeeds": { - "c1": 2.019749680706919, - "c2": 2.2143095476593846, - "c3": 1.9937900465735683, - "c4": 2.178349392735567, - "c5": 2.0349096186307176, - "c6": 2.112655094057061, - "c7": 2.048452771824687 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705964, + "c3": 2.7045769764216367, + "c4": 2.163661581137309, + "c5": 1.622746185852982, + "c6": 1.0818307905686546, + "c7": 0.5409153952843273 }, "rgb": [238, 201, 159] }, @@ -226347,23 +226347,23 @@ "year": 1771, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 19.375381443266832, - "c2": -21.74746676209128, - "c3": -20.64828381568953, - "c4": -15.062329143201005, - "c5": -29.040627364729698, - "c6": -24.387725711901183, - "c7": -29.78225218644188 + "points": { + "c1": -30.28972207298887, + "c2": 8.895214392430532, + "c3": 11.779850206128295, + "c4": -10.697262038813069, + "c5": 0.5266008555419077, + "c6": 37.4780611442814, + "c7": -20.858254251274595 }, - "vertexSeeds": { - "c1": 6.80567184860708, - "c2": 6.439626589923028, - "c3": 5.6689904506527204, - "c4": 6.770923812220511, - "c5": 6.616616322780691, - "c6": 5.953829492168978, - "c7": 5.728399652383529 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -226374,23 +226374,23 @@ "year": 1771, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 7.988919112015765, - "c2": -23.80044106881248, - "c3": -3.914371012963368, - "c4": 5.887097900107179, - "c5": 15.322923805021624, - "c6": 15.19239676012382, - "c7": -0.16575109031175117 + "points": { + "c1": -17.722942920836246, + "c2": 3.0418479991242044, + "c3": 16.727220059960878, + "c4": 11.85817740485232, + "c5": 22.746312088530317, + "c6": -0.5914330614335377, + "c7": -3.8383189783943585 }, - "vertexSeeds": { - "c1": 6.092344388695988, - "c2": 5.719358964457118, - "c3": 5.787253678580172, - "c4": 5.793839579551979, - "c5": 6.463403979400425, - "c6": 5.843624865509163, - "c7": 5.801541147803616 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514559, + "c3": 7.766990291262138, + "c4": 6.213592233009705, + "c5": 4.660194174757286, + "c6": 3.1067961165048525, + "c7": 1.553398058252433 }, "rgb": [58, 15, 49] }, @@ -226401,23 +226401,23 @@ "year": 1771, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 7.251424765679303, - "c2": -12.2855728036646, - "c3": 7.3622922522984595, - "c4": -21.361089523332332, - "c5": -31.03637092409062, - "c6": 1.6814478146418779, - "c7": -4.229734954359028 + "points": { + "c1": 18.586496964598815, + "c2": -12.00850965808937, + "c3": -11.977776893466643, + "c4": 12.939990352764, + "c5": -23.819043168521816, + "c6": 5.653743484449329, + "c7": -1.373475689241765 }, - "vertexSeeds": { - "c1": 1.53297898974544, - "c2": 1.6376689868799614, - "c3": 1.5493059523639605, - "c4": 1.5265134843251453, - "c5": 1.6103679287153638, - "c6": 1.5727767169437035, - "c7": 1.6260682886316695 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590835, + "c3": 1.9879796578825693, + "c4": 1.5903837263060543, + "c5": 1.1927877947295442, + "c6": 0.7951918631530294, + "c7": 0.3975959315765147 }, "rgb": [238, 201, 159] }, @@ -226428,23 +226428,23 @@ "year": 1771, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 14.937474202408922, - "c2": 2.766508451702226, - "c3": 17.7678104479876, - "c4": -3.2677205871062895, - "c5": -19.02473165867439, - "c6": 11.935985482489578, - "c7": -13.90914506453763 + "points": { + "c1": 1.8422009774340644, + "c2": 15.63960228939549, + "c3": -14.544640556632293, + "c4": -23.24137796784148, + "c5": -23.70939499307095, + "c6": 24.515239582541916, + "c7": 20.834034594213115 }, - "vertexSeeds": { - "c1": 6.033464425384711, - "c2": 6.6967598913181385, - "c3": 6.6463859242254255, - "c4": 6.416876757942171, - "c5": 6.170676679973449, - "c6": 6.825115813733219, - "c7": 6.525303953180091 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284323, + "c3": 8.784096162736942, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947745, + "c7": 1.7568192325473924 }, "rgb": [222, 0, 59] }, @@ -226455,23 +226455,23 @@ "year": 1771, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 1.1796938105469543, - "c2": 13.81095396877538, - "c3": 3.7000499613066076, - "c4": 8.098509053006495, - "c5": 9.847720719667002, - "c6": 9.564648811106565, - "c7": -18.765015292200726 + "points": { + "c1": 7.028034217280869, + "c2": -1.3905125559223102, + "c3": 22.834883851905737, + "c4": -21.86696438583489, + "c5": 1.703908865915139, + "c6": -13.75366592910446, + "c7": 19.55952420043186 }, - "vertexSeeds": { - "c1": 4.081028575277175, - "c2": 3.6278829240938517, - "c3": 3.9726748957446065, - "c4": 3.701770799816096, - "c5": 4.089889437784173, - "c6": 3.9506066748243107, - "c7": 3.9290612449866935 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.1086453999075365, + "c4": 4.086916319926027, + "c5": 3.065187239944523, + "c6": 2.0434581599630137, + "c7": 1.0217290799815044 }, "rgb": [222, 0, 59] }, @@ -226482,23 +226482,23 @@ "year": 1771, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 15.231207668381117, - "c2": 10.15947387033053, - "c3": -20.90964624784688, - "c4": -8.356016851428855, - "c5": 18.215174676103942, - "c6": 20.86820121240268, - "c7": -19.796650270324506 + "points": { + "c1": 8.21144218747817, + "c2": -19.287494488685695, + "c3": 15.734391877059785, + "c4": -23.42644253424863, + "c5": -12.029100660138125, + "c6": -2.9294371782424165, + "c7": 2.2772612013591633 }, - "vertexSeeds": { - "c1": 2.8112195310035784, - "c2": 2.563097952370501, - "c3": 2.7196203940384223, - "c4": 2.7700622635667824, - "c5": 2.5614747968426386, - "c6": 2.6612884231596214, - "c7": 2.725199619588263 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [222, 0, 59] }, @@ -226509,23 +226509,23 @@ "year": 1771, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -11.398759194309022, - "c2": 4.4036780463207705, - "c3": -27.2926866573091, - "c4": 32.3022660450716, - "c5": 8.606140587035974, - "c6": 8.186135230298206, - "c7": -17.5532051680916 + "points": { + "c1": 41.274536758795755, + "c2": -44.90715910290661, + "c3": 18.187598921899642, + "c4": -21.207982136666946, + "c5": 15.068357770903354, + "c6": -27.57354082748164, + "c7": 5.618809445484693 }, - "vertexSeeds": { - "c1": 6.2506234649351375, - "c2": 5.962038577600406, - "c3": 5.952553186947319, - "c4": 6.29010641693844, - "c5": 6.062815577753292, - "c6": 5.996770591527673, - "c7": 6.073968641383001 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192775, + "c3": 7.582061950993993, + "c4": 6.065649560795184, + "c5": 4.549237170596402, + "c6": 3.032824780397592, + "c7": 1.5164123901988096 }, "rgb": [222, 0, 59] }, @@ -226536,23 +226536,23 @@ "year": 1771, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -42.20731071495024, - "c2": 44.629819426727536, - "c3": -40.863248326214745, - "c4": 12.870661206495434, - "c5": -17.98461698866845, - "c6": -15.354377936009115, - "c7": -26.794253035706486 + "points": { + "c1": -8.160772000112864, + "c2": 2.9890822457260953, + "c3": 22.658131862702973, + "c4": -6.057753303802457, + "c5": -7.329559314920857, + "c6": -3.3752662856294435, + "c7": -11.682219669750978 }, - "vertexSeeds": { - "c1": 5.230493496992592, - "c2": 5.447543476927286, - "c3": 5.05324027509382, - "c4": 5.4766462757291325, - "c5": 5.670045117764967, - "c6": 5.786886801672015, - "c7": 5.131099276536485 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055483, + "c4": 5.547850208044384, + "c5": 4.160887656033285, + "c6": 2.773925104022199, + "c7": 1.3869625520110995 }, "rgb": [86, 146, 138] }, @@ -226563,23 +226563,23 @@ "year": 1771, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 24.736421364354328, - "c2": -5.1776161634844655, - "c3": 39.56469930493654, - "c4": -26.037713218435663, - "c5": -16.080152876948034, - "c6": -9.27588741136531, - "c7": 35.75785843473183 + "points": { + "c1": -3.390688591610612, + "c2": -0.8218228031103223, + "c3": -33.59482141081584, + "c4": -25.57057295583858, + "c5": -21.22747274058813, + "c6": 40.50902651815271, + "c7": -11.998411059097734 }, - "vertexSeeds": { - "c1": 4.853915902832851, - "c2": 4.727410011753987, - "c3": 4.801296112525293, - "c4": 4.73525959107273, - "c5": 5.171038560287552, - "c6": 4.775719819472791, - "c7": 4.579055781432776 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -226590,23 +226590,23 @@ "year": 1771, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -20.524045517801003, - "c2": -3.65073795334299, - "c3": 19.534177430581394, - "c4": -20.88624859812432, - "c5": -15.86068237126727, - "c6": -3.4303384096274065, - "c7": -21.018296588252063 + "points": { + "c1": 2.818300164895909, + "c2": -5.6232703194974825, + "c3": 5.735703784703201, + "c4": 2.129332556652912, + "c5": -16.764542669323806, + "c6": -25.344936515689643, + "c7": 17.06978668098833 }, - "vertexSeeds": { - "c1": 6.030243577352547, - "c2": 6.786775738141065, - "c3": 6.669428136775827, - "c4": 6.723520970480894, - "c5": 5.6872073594509525, - "c6": 6.233251983288835, - "c7": 6.471975576996163 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -226617,23 +226617,23 @@ "year": 1771, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 12.710304065589256, - "c2": 18.148453292630997, - "c3": -11.85076856762741, - "c4": 13.769190134551508, - "c5": -25.46119345044069, - "c6": 7.562943225004297, - "c7": 10.548261723260005 + "points": { + "c1": 8.488704855919167, + "c2": -0.019456755922313107, + "c3": 7.107548310901656, + "c4": 10.636709054826753, + "c5": 0.424413019723449, + "c6": 13.972854246507175, + "c7": -13.966484468696025 }, - "vertexSeeds": { - "c1": 6.23893575471622, - "c2": 5.897351018579025, - "c3": 5.697228102412054, - "c4": 6.209593684059388, - "c5": 6.090228578770199, - "c6": 6.274239027264297, - "c7": 5.953875404998892 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072118, + "c3": 7.512713823393436, + "c4": 6.010171058714745, + "c5": 4.5076282940360635, + "c6": 3.0050855293573724, + "c7": 1.5025427646786813 }, "rgb": [58, 15, 49] }, @@ -226644,23 +226644,23 @@ "year": 1771, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 0.12419520143135898, - "c2": 10.234030758033292, - "c3": 5.115290219679302, - "c4": 5.938398574699239, - "c5": 1.3289753671431868, - "c6": 5.002028596222338, - "c7": -11.050910633858424 + "points": { + "c1": -18.867669972188995, + "c2": -6.398677028131601, + "c3": -1.4074688431255957, + "c4": -7.582840186391223, + "c5": -23.935662986606495, + "c6": -23.624987125000008, + "c7": 3.5711080836419278 }, - "vertexSeeds": { - "c1": 4.325902578017534, - "c2": 4.215695925669167, - "c3": 4.316400862827164, - "c4": 4.0396154183024295, - "c5": 3.9729488214328867, - "c6": 3.9210748633135206, - "c7": 4.345108322598081 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -226671,23 +226671,23 @@ "year": 1771, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -20.03327705913229, - "c2": -8.2823618750306, - "c3": 16.14929467234692, - "c4": 10.800519829525456, - "c5": -13.019490057933684, - "c6": -21.418800880958003, - "c7": -14.343348031978907 + "points": { + "c1": -20.025061514680733, + "c2": 1.7284758260153694, + "c3": -12.801867252963858, + "c4": 6.115785251820405, + "c5": -8.644229259697404, + "c6": 20.123546501773696, + "c7": -21.876418110263614 }, - "vertexSeeds": { - "c1": 2.7330563658579266, - "c2": 2.7504700615795112, - "c3": 2.6450342921920575, - "c4": 2.7007765483493444, - "c5": 2.5719280631582953, - "c6": 2.6511438830042846, - "c7": 2.6724324768280536 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912621, + "c3": 3.398058252427185, + "c4": 2.718446601941749, + "c5": 2.0388349514563124, + "c6": 1.359223300970876, + "c7": 0.6796116504854396 }, "rgb": [238, 201, 159] }, @@ -226698,23 +226698,23 @@ "year": 1771, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": 8.33106328114932, - "c2": -18.966310603459085, - "c3": -1.7615985824794365, - "c4": -24.150087012369035, - "c5": 48.891383994545535, - "c6": 49.10151424836006, - "c7": -51.47913267308536 + "points": { + "c1": -30.028526181865796, + "c2": 17.155882511676225, + "c3": -7.880237250996345, + "c4": -13.845408132708087, + "c5": 47.18847972681745, + "c6": -37.04982164156432, + "c7": 19.57320763570233 }, - "vertexSeeds": { - "c1": 4.445287562705629, - "c2": 4.489546164269491, - "c3": 4.318823184913085, - "c4": 4.661743355377302, - "c5": 4.370555908432308, - "c6": 4.332186886886981, - "c7": 4.419040955103278 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693481, + "c3": 5.5709662505779, + "c4": 4.456773000462319, + "c5": 3.3425797503467374, + "c6": 2.2283865002311565, + "c7": 1.1141932501155754 }, "rgb": [77, 76, 132] }, @@ -226725,23 +226725,23 @@ "year": 1771, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -30.77094376555759, - "c2": -29.20796145728506, - "c3": 8.642525050179735, - "c4": 10.624975056965056, - "c5": -24.58938214639209, - "c6": 5.189986962213432, - "c7": 29.56766628053129 + "points": { + "c1": 22.2174895597239, + "c2": -19.612973621052447, + "c3": 7.151234986581329, + "c4": -19.150560504803156, + "c5": 21.620245593856076, + "c6": 0.18891784097746722, + "c7": -25.435096421089348 }, - "vertexSeeds": { - "c1": 4.36111522418378, - "c2": 4.805862496205921, - "c3": 4.757763073066178, - "c4": 4.784355890917137, - "c5": 4.37033070303278, - "c6": 4.078905862475761, - "c7": 4.607187878541191 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -226752,23 +226752,23 @@ "year": 1771, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -6.010144781807917, - "c2": -22.771180861742536, - "c3": -23.091656251266585, - "c4": -18.444250669216366, - "c5": -22.96927117804302, - "c6": 36.931639295707505, - "c7": 38.1542931907992 + "points": { + "c1": -24.31430448510281, + "c2": 5.525140031069725, + "c3": 3.6727509715032625, + "c4": -14.28165119476824, + "c5": -16.483612846324036, + "c6": 27.483219624139302, + "c7": 3.626118416173007 }, - "vertexSeeds": { - "c1": 3.920024164094019, - "c2": 3.844988026773898, - "c3": 3.9596382848858345, - "c4": 3.9104434104507946, - "c5": 3.7187454399484823, - "c6": 3.726410013242495, - "c7": 3.6871577908634037 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245488, + "c3": 4.738788719371245, + "c4": 3.7910309754969918, + "c5": 2.8432732316227494, + "c6": 1.8955154877484959, + "c7": 0.9477577438742428 }, "rgb": [222, 0, 59] }, @@ -226779,23 +226779,23 @@ "year": 1771, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 5.462322308409956, - "c2": -9.86625399318926, - "c3": -11.014511850437556, - "c4": 13.850434841591149, - "c5": -4.824638022109404, - "c6": -21.65103943936196, - "c7": 22.186973930048115 + "points": { + "c1": 10.43078180170215, + "c2": -4.335048091170329, + "c3": 17.005118775948855, + "c4": 20.29173051802594, + "c5": -9.424150113127384, + "c6": -20.407402521220412, + "c7": -6.221900147925496 }, - "vertexSeeds": { - "c1": 7.903934781000028, - "c2": 9.139034759504176, - "c3": 8.512279341674834, - "c4": 8.388823084344915, - "c5": 8.85418008136423, - "c6": 7.847158333596524, - "c7": 8.874180422818869 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.59223300970874, + "c3": 11.326860841423942, + "c4": 9.061488673139156, + "c5": 6.79611650485437, + "c6": 4.530744336569583, + "c7": 2.2653721682847867 }, "rgb": [58, 15, 49] }, @@ -226806,23 +226806,23 @@ "year": 1771, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 6.806467590403237, - "c2": -0.6815599393154983, - "c3": -4.579160630599908, - "c4": 1.6397293744267323, - "c5": -22.240321798359176, - "c6": 16.163492486446724, - "c7": -3.874934143395837 + "points": { + "c1": 4.862585404633801, + "c2": 12.310410390769864, + "c3": -5.502475263866149, + "c4": -7.767580367216812, + "c5": -7.006757505804313, + "c6": 8.504982565703141, + "c7": -0.009141280409103558 }, - "vertexSeeds": { - "c1": 3.1547896456859434, - "c2": 3.1181854108989544, - "c3": 3.048021945850172, - "c4": 3.302352250609977, - "c5": 3.3139848158541905, - "c6": 3.0803585644299116, - "c7": 3.413544711883353 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159499, + "c3": 4.114655570966254, + "c4": 3.291724456773002, + "c5": 2.4687933425797497, + "c6": 1.645862228386504, + "c7": 0.822931114193252 }, "rgb": [222, 0, 59] }, @@ -226833,23 +226833,23 @@ "year": 1771, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 1.0373738179430916, - "c2": 3.487647327935825, - "c3": 3.7572620931842167, - "c4": -8.286598008147871, - "c5": 21.13885101479681, - "c6": -17.09681497514063, - "c7": -17.11335065380483 + "points": { + "c1": -9.61461677024212, + "c2": 8.360423696656628, + "c3": -8.792620193417417, + "c4": -25.0493052087646, + "c5": -22.458921534575687, + "c6": 19.665640104597205, + "c7": 20.7301117009179 }, - "vertexSeeds": { - "c1": 1.5650647961288013, - "c2": 1.5261802007634038, - "c3": 1.59306195120993, - "c4": 1.2955971709805685, - "c5": 1.3542411324711798, - "c6": 1.3798891327414295, - "c7": 1.4601894505479542 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [58, 15, 49] }, @@ -226860,23 +226860,23 @@ "year": 1771, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": 3.233787678911625, - "c2": -22.69093945763882, - "c3": -16.341195831795396, - "c4": -14.903288549253453, - "c5": -8.16220860002637, - "c6": 22.931036131233814, - "c7": -18.019309236619883 + "points": { + "c1": 3.446395324127632, + "c2": 21.15507475262037, + "c3": -17.153862008865374, + "c4": 21.710550941233823, + "c5": 17.685262015321708, + "c6": -4.100559318416138, + "c7": 13.053400775154206 }, - "vertexSeeds": { - "c1": 2.4094648086458155, - "c2": 2.425167080438566, - "c3": 2.3960542488718763, - "c4": 2.229861263889286, - "c5": 2.3657912278327347, - "c6": 2.349582633989844, - "c7": 2.35539952182885 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484034, + "c3": 2.958853444290339, + "c4": 2.3670827554322704, + "c5": 1.7753120665742017, + "c6": 1.183541377716133, + "c7": 0.5917706888580688 }, "rgb": [77, 76, 132] }, @@ -226887,23 +226887,23 @@ "year": 1771, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": -7.469573102873369, - "c2": -4.201312100301273, - "c3": 47.891952954295206, - "c4": 1.8751206343952163, - "c5": -23.225541378718873, - "c6": -10.670961177030755, - "c7": 31.150705103595612 + "points": { + "c1": -19.91332524637121, + "c2": 20.925621518614435, + "c3": 44.88009513425801, + "c4": -36.4434090102076, + "c5": -52.10020493098439, + "c6": 14.055224767305887, + "c7": 25.444856423476665 }, - "vertexSeeds": { - "c1": 2.659056577998614, - "c2": 2.5876358357873044, - "c3": 2.410627024644447, - "c4": 2.698175410120117, - "c5": 2.440079824646704, - "c6": 2.77233759225488, - "c7": 2.443135926197591 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113732, + "c3": 3.5136384650947745, + "c4": 2.81091077207582, + "c5": 2.108183079056866, + "c6": 1.40545538603791, + "c7": 0.7027276930189541 }, "rgb": [222, 0, 59] }, @@ -226914,23 +226914,23 @@ "year": 1771, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 13.463505084616912, - "c2": 23.01277256844918, - "c3": 32.8328692793111, - "c4": -9.071076556556303, - "c5": -38.42328222461787, - "c6": 0.605556404481618, - "c7": 18.562175926362663 + "points": { + "c1": 8.679415698397115, + "c2": -37.82574961554728, + "c3": -24.50484832224828, + "c4": 9.518691096528123, + "c5": -14.809697418624523, + "c6": -18.73276033929139, + "c7": -1.5082226262983482 }, - "vertexSeeds": { - "c1": 5.654405231027932, - "c2": 5.281898455122199, - "c3": 5.331307110879148, - "c4": 5.430233954823748, - "c5": 5.5156662587672685, - "c6": 5.362748762679057, - "c7": 5.444447850431855 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865457, + "c3": 6.819232547387896, + "c4": 5.455386037910312, + "c5": 4.091539528432729, + "c6": 2.727693018955168, + "c7": 1.363846509477584 }, "rgb": [238, 201, 159] }, @@ -226941,23 +226941,23 @@ "year": 1771, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 29.986630785116354, - "c2": -6.024071731136541, - "c3": 15.738431617662272, - "c4": 33.44118860140595, - "c5": 37.4126891263247, - "c6": -4.4972472056944, - "c7": 17.208877146769446 + "points": { + "c1": 23.755856808524655, + "c2": -8.363450723078873, + "c3": -17.587840081616974, + "c4": 35.50042014038298, + "c5": -38.30914758468068, + "c6": 39.420271395566736, + "c7": -4.3511919952190965 }, - "vertexSeeds": { - "c1": 1.4953305557425807, - "c2": 1.4126069151119127, - "c3": 1.4805313144456171, - "c4": 1.4894217494392057, - "c5": 1.4063106702171964, - "c6": 1.5513428914640295, - "c7": 1.4244688324036443 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.274618585298196, + "c3": 1.8955154877484954, + "c4": 1.5164123901987985, + "c5": 1.137309292649098, + "c6": 0.7582061950993974, + "c7": 0.37910309754970056 }, "rgb": [238, 201, 159] }, @@ -226968,23 +226968,23 @@ "year": 1771, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -0.8381862340837927, - "c2": -11.280185437803922, - "c3": 18.080269791785394, - "c4": 14.758353667317284, - "c5": 3.1238778304049895, - "c6": 22.188906985914887, - "c7": 9.954914600048784 + "points": { + "c1": -5.829431776016641, + "c2": 17.09832507593617, + "c3": -16.192164521401246, + "c4": 10.40004365595723, + "c5": -15.632879679840192, + "c6": 10.897827543210969, + "c7": -13.080380163375315 }, - "vertexSeeds": { - "c1": 6.448008721428799, - "c2": 6.687496429770503, - "c3": 5.589492484230862, - "c4": 6.212867169221785, - "c5": 6.660836533934946, - "c6": 6.411921708848362, - "c7": 5.994553733674836 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -226995,23 +226995,23 @@ "year": 1771, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": -3.265328645393204, - "c2": 7.873464416339651, - "c3": 39.54705345353342, - "c4": -36.504032613841645, - "c5": -5.993114009180275, - "c6": -50.62611014896684, - "c7": -28.610037282823864 + "points": { + "c1": -8.279068954151455, + "c2": 45.17184744892796, + "c3": 50.75943763602844, + "c4": -50.392032200419465, + "c5": -54.36776383533723, + "c6": 23.20960017499506, + "c7": 28.118132210789497 }, - "vertexSeeds": { - "c1": 8.28679915703812, - "c2": 8.930360984396088, - "c3": 7.875798133060898, - "c4": 7.910654174934021, - "c5": 7.935937395438898, - "c6": 8.872784209063138, - "c7": 8.34642702033161 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582527, + "c3": 10.679611650485441, + "c4": 8.543689320388342, + "c5": 6.407766990291256, + "c6": 4.271844660194171, + "c7": 2.1359223300970855 }, "rgb": [77, 76, 132] }, @@ -227022,23 +227022,23 @@ "year": 1771, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": 2.344882468798531, - "c2": -3.467906874662674, - "c3": 20.5604845428658, - "c4": -7.031965404183147, - "c5": 18.329087992939428, - "c6": 18.387683466852465, - "c7": 20.676900201402283 + "points": { + "c1": -20.695520525397843, + "c2": -20.036735195927776, + "c3": -15.465345695660638, + "c4": 22.509968223461662, + "c5": -15.449081442077714, + "c6": 19.54171822409228, + "c7": -14.471659227301329 }, - "vertexSeeds": { - "c1": 2.0064117589753114, - "c2": 1.9954533693138028, - "c3": 1.9744338413236353, - "c4": 1.9436490558200379, - "c5": 2.012489713841206, - "c6": 1.9268997465726883, - "c7": 1.9555069056068566 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.912621359223305, + "c3": 2.427184466019416, + "c4": 1.941747572815537, + "c5": 1.4563106796116476, + "c6": 0.9708737864077684, + "c7": 0.485436893203889 }, "rgb": [77, 76, 132] }, @@ -227049,23 +227049,23 @@ "year": 1771, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -7.042652696132469, - "c2": -21.126416600314784, - "c3": 3.695116300544125, - "c4": -1.6253591859499004, - "c5": 4.033536736811417, - "c6": -6.381865902618841, - "c7": -12.387673642959884 + "points": { + "c1": 23.455416111685913, + "c2": -6.7642924685092645, + "c3": -4.69113050269344, + "c4": -0.8289127129924161, + "c5": -1.7179242377618067, + "c6": -12.37798401428034, + "c7": 12.128738913102552 }, - "vertexSeeds": { - "c1": 3.6688129180986118, - "c2": 3.7432509054497607, - "c3": 3.515958113933747, - "c4": 3.917896021846219, - "c5": 3.7673160492579454, - "c6": 3.737929889069595, - "c7": 3.840600183986009 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304204, + "c4": 3.7540453074433624, + "c5": 2.8155339805825275, + "c6": 1.8770226537216852, + "c7": 0.9385113268608426 }, "rgb": [77, 76, 132] }, @@ -227076,23 +227076,23 @@ "year": 1771, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 6.78116130473833, - "c2": -0.8942636719181003, - "c3": 19.126800187211263, - "c4": -13.072191491518646, - "c5": 0.492955844932375, - "c6": 16.519913232112852, - "c7": -15.845924985020565 + "points": { + "c1": -9.82612314917807, + "c2": -16.845736276508106, + "c3": 2.550902477793123, + "c4": 10.197870051632446, + "c5": 11.634740292937014, + "c6": 6.7866998476057, + "c7": 27.655531952704916 }, - "vertexSeeds": { - "c1": 0.971502590673575, - "c2": 0.971502590673575, - "c3": 0.971502590673575, - "c4": 0.971502590673575, - "c5": 0.971502590673575, - "c6": 0.971502590673575, - "c7": 0.971502590673575 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -227103,23 +227103,23 @@ "year": 1771, "resistanceReported": true, "duration": 20131200, - "curveSeeds": { - "c1": 13.7947687038207, - "c2": 10.354867233892008, - "c3": -27.109972928335367, - "c4": 8.745114269297858, - "c5": 31.0851347770717, - "c6": -31.30152927824585, - "c7": 22.284432279415476 + "points": { + "c1": -28.070382348176484, + "c2": 10.858380195004912, + "c3": 25.357196995777443, + "c4": 6.5594594233877075, + "c5": -2.754043788965717, + "c6": 23.949162576257585, + "c7": 20.297658153501445 }, - "vertexSeeds": { - "c1": 5.608027090590809, - "c2": 5.779897300233147, - "c3": 5.877631686932352, - "c4": 5.972450523435119, - "c5": 5.60642911958776, - "c6": 6.057177638715617, - "c7": 5.929668953025837 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072125, + "c3": 7.512713823393428, + "c4": 6.010171058714745, + "c5": 4.507628294036063, + "c6": 3.005085529357381, + "c7": 1.5025427646786822 }, "rgb": [77, 76, 132] }, @@ -227130,23 +227130,23 @@ "year": 1771, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": -5.774641001839001, - "c2": -5.098508990020626, - "c3": -11.029006697096765, - "c4": 20.413789607121302, - "c5": -11.728509731313006, - "c6": 19.62542428502553, - "c7": -8.64524950729826 + "points": { + "c1": -20.53049732980507, + "c2": -21.632821139518615, + "c3": 19.292839817868867, + "c4": -16.0547745157004, + "c5": 0.8696754314536363, + "c6": -12.524248834376014, + "c7": 8.11150490410315 }, - "vertexSeeds": { - "c1": 4.79252303309628, - "c2": 4.350313474824927, - "c3": 4.611507611394336, - "c4": 4.210056503547952, - "c5": 4.045800288482893, - "c6": 4.309581160623563, - "c7": 4.5209924537562625 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975033, + "c3": 5.73277854831253, + "c4": 4.586222838650023, + "c5": 3.439667128987514, + "c6": 2.2931114193250113, + "c7": 1.1465557096625032 }, "rgb": [238, 201, 159] }, @@ -227157,23 +227157,23 @@ "year": 1771, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -22.972558438258663, - "c2": -6.349395367986713, - "c3": -23.23949227981398, - "c4": 20.125977527342695, - "c5": -16.322165646468207, - "c6": -28.478433185494655, - "c7": -2.900558602059732 + "points": { + "c1": 2.192818361592483, + "c2": 28.408116316772638, + "c3": 4.816079707472408, + "c4": -24.479851384056268, + "c5": 8.252627776459104, + "c6": -9.65179475677634, + "c7": -6.290907447883296 }, - "vertexSeeds": { - "c1": 6.72719215703907, - "c2": 5.940699088546491, - "c3": 6.5071830847679175, - "c4": 5.951840112209855, - "c5": 6.908929582394363, - "c6": 6.362147671629489, - "c7": 6.0376517984886275 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083224, + "c3": 8.668515950069347, + "c4": 6.934812760055482, + "c5": 5.201109570041607, + "c6": 3.467406380027741, + "c7": 1.7337031900138655 }, "rgb": [86, 146, 138] }, @@ -227184,23 +227184,23 @@ "year": 1771, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": -49.48963630116614, - "c2": 1.34402699583773, - "c3": -20.503215714179497, - "c4": -47.35608511676506, - "c5": 40.23863179519133, - "c6": 48.497065110013686, - "c7": -40.713506619109694 + "points": { + "c1": -53.48373471248917, + "c2": 7.108556454475426, + "c3": 44.237515714462454, + "c4": -29.869046885015965, + "c5": 12.071470303129011, + "c6": -24.92815389899699, + "c7": -25.47559670274048 }, - "vertexSeeds": { - "c1": 2.2144639031274487, - "c2": 2.1839597426116586, - "c3": 2.185754202521086, - "c4": 2.2235817030891876, - "c5": 2.0652656666103804, - "c6": 2.17884391770188, - "c7": 2.1182214214023447 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551547, + "c4": 2.1821544151641237, + "c5": 1.6366158113730929, + "c6": 1.0910772075820618, + "c7": 0.5455386037910309 }, "rgb": [77, 76, 132] }, @@ -227211,23 +227211,23 @@ "year": 1771, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -9.202926021660721, - "c2": -15.282297470422744, - "c3": -15.446691082330595, - "c4": -15.136703911565599, - "c5": -17.736425561158697, - "c6": 12.93030558156292, - "c7": 11.503690503963682 + "points": { + "c1": 2.554622995093741, + "c2": -5.30873432014085, + "c3": -1.9269343378515948, + "c4": 15.54215611783065, + "c5": 18.75849442581105, + "c6": 3.946117227506601, + "c7": 15.458279873555014 }, - "vertexSeeds": { - "c1": 6.537147805809399, - "c2": 6.764984935463525, - "c3": 6.229028477039359, - "c4": 5.877826498861457, - "c5": 6.179521220094253, - "c6": 6.309493902652659, - "c7": 5.634376257273831 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -227238,23 +227238,23 @@ "year": 1771, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": 12.974475344414671, - "c2": -43.386333123129106, - "c3": -34.45972591092749, - "c4": -16.16347384644451, - "c5": -10.249688946814878, - "c6": -29.851896123712233, - "c7": 17.96706935013428 + "points": { + "c1": 0.2717276602267731, + "c2": -46.02955217286731, + "c3": -50.06793163216685, + "c4": 36.712583220992215, + "c5": 30.405075360954854, + "c6": 8.724137266826972, + "c7": -3.8145809406195568 }, - "vertexSeeds": { - "c1": 0.6028505923055318, - "c2": 0.5988737266096611, - "c3": 0.6325871827402726, - "c4": 0.6167787668921503, - "c5": 0.5782345398135247, - "c6": 0.5642140977462161, - "c7": 0.6211726716441363 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.970873786407767, + "c3": 0.809061488673139, + "c4": 0.6472491909385111, + "c5": 0.48543689320388306, + "c6": 0.3236245954692551, + "c7": 0.16181229773462713 }, "rgb": [86, 146, 138] }, @@ -227265,23 +227265,23 @@ "year": 1771, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 28.83981064678278, - "c2": -29.57669875783998, - "c3": 34.330754882626294, - "c4": 13.785699741772142, - "c5": -6.102448470833533, - "c6": 33.547347403958625, - "c7": -12.136424880058097 + "points": { + "c1": 0.045597143518264716, + "c2": -6.881884712757127, + "c3": 27.967891175135293, + "c4": 12.006784989443972, + "c5": -27.80768313942218, + "c6": -6.841401723203862, + "c7": -5.438710323309337 }, - "vertexSeeds": { - "c1": 7.067651693059744, - "c2": 7.069601921540394, - "c3": 7.065689965411697, - "c4": 6.863615937582083, - "c5": 7.227289747885946, - "c6": 6.8873005458889445, - "c7": 7.30008020812798 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -227292,23 +227292,23 @@ "year": 1771, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": -9.553631781573582, - "c2": 9.536073119304941, - "c3": 4.375488677666837, - "c4": 5.626156425515575, - "c5": 14.295984054454461, - "c6": 19.362867841690335, - "c7": -8.29419310752236 + "points": { + "c1": -0.7686023358352436, + "c2": -9.31270074606316, + "c3": 10.036076731110153, + "c4": 19.1016795673407, + "c5": 8.193299809420356, + "c6": -6.65965345665543, + "c7": -18.362588711040086 }, - "vertexSeeds": { - "c1": 4.108945829340974, - "c2": 4.342806610354908, - "c3": 4.15878931700448, - "c4": 4.054359238887461, - "c5": 4.220424879614782, - "c6": 4.279189660640599, - "c7": 4.266146329856253 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -227319,23 +227319,23 @@ "year": 1771, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -14.615975185866251, - "c2": 24.659735466589865, - "c3": -0.5735298947367866, - "c4": -3.9167960253006164, - "c5": -9.549185392518794, - "c6": -1.2709706187092777, - "c7": 9.326056745384925 + "points": { + "c1": -30.484925982465732, + "c2": 18.630128369191276, + "c3": -34.98806108484448, + "c4": 7.493086401401996, + "c5": -0.3545760908677025, + "c6": -18.776091299772233, + "c7": -24.645333519536223 }, - "vertexSeeds": { - "c1": 1.8843818681874656, - "c2": 1.8393342522114944, - "c3": 2.0614979464223695, - "c4": 2.2254375891910336, - "c5": 2.1706148398865484, - "c6": 1.8200567028641168, - "c7": 1.7887483565158626 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266286, + "c3": 2.773925104022191, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.109570041608876, + "c7": 0.5547850208044373 }, "rgb": [222, 0, 59] }, @@ -227346,23 +227346,23 @@ "year": 1771, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": 14.955955572403045, - "c2": -13.004132735911242, - "c3": -12.438019075459275, - "c4": 9.800452108231543, - "c5": 19.768888709474677, - "c6": 5.096476101432412, - "c7": -12.059136994750768 + "points": { + "c1": 15.232767500483742, + "c2": 6.464519698378574, + "c3": 13.810427914768258, + "c4": -8.6337630791949, + "c5": -20.932891101666293, + "c6": -19.83141248099312, + "c7": 14.565686980754162 }, - "vertexSeeds": { - "c1": 1.2674126562353085, - "c2": 1.5371554911561767, - "c3": 1.3681980728776464, - "c4": 1.4587178929854525, - "c5": 1.4746308848736336, - "c6": 1.2484939308469085, - "c7": 1.3419097119890773 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [58, 15, 49] }, @@ -227373,23 +227373,23 @@ "year": 1771, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": 4.151930650582202, - "c2": -14.263900909081094, - "c3": 11.537122736431794, - "c4": -7.285778060909157, - "c5": 18.638253109737562, - "c6": 1.6227177236771126, - "c7": 9.282228008341967 + "points": { + "c1": -2.8599604698577146, + "c2": 1.0706962771206285, + "c3": -15.781331509639095, + "c4": -0.867080919662989, + "c5": -9.436715385141959, + "c6": -16.237615319986904, + "c7": 18.29665974497191 }, - "vertexSeeds": { - "c1": 3.888470802569538, - "c2": 3.8312564490752385, - "c3": 4.1746387978032145, - "c4": 3.8651751972351005, - "c5": 3.7315150127982757, - "c6": 3.7670254746064167, - "c7": 4.336311208969771 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.201109570041606, + "c4": 4.160887656033286, + "c5": 3.120665742024966, + "c6": 2.0804438280166395, + "c7": 1.0402219140083198 }, "rgb": [58, 15, 49] }, @@ -227400,23 +227400,23 @@ "year": 1771, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -13.81997995675031, - "c2": -12.21368620597384, - "c3": 15.064297344145949, - "c4": 2.271360619919008, - "c5": -13.313524105438002, - "c6": 0.9518730200455465, - "c7": 13.637920364639179 + "points": { + "c1": -3.155255439387844, + "c2": 21.107848307649448, + "c3": -3.529686475136973, + "c4": -16.640369683906084, + "c5": 10.392180074297741, + "c6": -26.08935292417529, + "c7": 35.179006264118634 }, - "vertexSeeds": { - "c1": 6.771399409505111, - "c2": 6.635028835205482, - "c3": 6.534848695919287, - "c4": 6.840091331009546, - "c5": 6.5261258172234005, - "c6": 7.05931758826635, - "c7": 6.642188123966635 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334714, + "c4": 6.8053629218677685, + "c5": 5.104022191400821, + "c6": 3.402681460933894, + "c7": 1.701340730466947 }, "rgb": [58, 15, 49] }, @@ -227427,23 +227427,23 @@ "year": 1771, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -28.957099019617885, - "c2": -1.9837366924248414, - "c3": 24.668088857505893, - "c4": 7.293072047092913, - "c5": -16.531667218837157, - "c6": 34.197218698526584, - "c7": 8.532095587099647 + "points": { + "c1": 22.205095525077866, + "c2": -31.20397725983719, + "c3": -28.773490014474383, + "c4": 26.032814760258503, + "c5": -3.0712442720926916, + "c6": -35.07932111667938, + "c7": -11.446350297521292 }, - "vertexSeeds": { - "c1": 4.977401463394217, - "c2": 4.9720881799386385, - "c3": 4.965386822667195, - "c4": 4.99597660052094, - "c5": 4.957783894954568, - "c6": 4.951231392146225, - "c7": 5.013342571549522 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497953, + "c3": 6.033287101248255, + "c4": 4.826629680998636, + "c5": 3.6199722607489364, + "c6": 2.413314840499318, + "c7": 1.206657420249659 }, "rgb": [58, 15, 49] }, @@ -227454,23 +227454,23 @@ "year": 1771, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -10.117176020272368, - "c2": -23.000515498942022, - "c3": 30.530930644723874, - "c4": 33.43870059327663, - "c5": -19.211259665757556, - "c6": -11.801304720489092, - "c7": -2.708026759885442 + "points": { + "c1": 0.07108311255386468, + "c2": 32.64987374610582, + "c3": -31.863783825424104, + "c4": -22.881159342823704, + "c5": 15.994282570174057, + "c6": 26.624219726123208, + "c7": -32.678865215560236 }, - "vertexSeeds": { - "c1": 4.291160851778162, - "c2": 4.341150024452326, - "c3": 4.315675133414186, - "c4": 4.339071937164555, - "c5": 4.3027064688554795, - "c6": 4.294844443850256, - "c7": 4.291190592973875 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049908, + "c3": 5.2011095700416154, + "c4": 4.160887656033272, + "c5": 3.12066574202498, + "c6": 2.080443828016636, + "c7": 1.0402219140082922 }, "rgb": [77, 76, 132] }, @@ -227481,23 +227481,23 @@ "year": 1771, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 13.480616080573895, - "c2": -40.91147225334796, - "c3": -21.614001277339558, - "c4": 40.037145393982925, - "c5": 6.442154965838142, - "c6": 25.884754024134907, - "c7": 15.481305343931396 + "points": { + "c1": -21.153058336344436, + "c2": -11.961688200904426, + "c3": -6.2350968802713, + "c4": 12.848498737251589, + "c5": -30.021015366174595, + "c6": -4.316013973842715, + "c7": -11.12017442072274 }, - "vertexSeeds": { - "c1": 7.850050808508192, - "c2": 8.945174711295852, - "c3": 8.610381460434834, - "c4": 8.540018251671444, - "c5": 8.848441675251891, - "c6": 8.45979403212734, - "c7": 8.33876735003874 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582527, + "c3": 10.679611650485441, + "c4": 8.543689320388342, + "c5": 6.407766990291256, + "c6": 4.271844660194171, + "c7": 2.1359223300970855 }, "rgb": [77, 76, 132] }, @@ -227508,23 +227508,23 @@ "year": 1772, "resistanceReported": false, "duration": 51494400, - "curveSeeds": { - "c1": -25.398939561486436, - "c2": 21.95139586219281, - "c3": 37.680296445721254, - "c4": 35.42792851351207, - "c5": -35.179558971723864, - "c6": -37.88593492576188, - "c7": 0.4366910964274524 + "points": { + "c1": -20.30226647055786, + "c2": 60.27375393938502, + "c3": -66.87425013674455, + "c4": 67.91487229441356, + "c5": -18.112885493117638, + "c6": -15.283024497213411, + "c7": 15.049501649777454 }, - "vertexSeeds": { - "c1": 6.687974220677487, - "c2": 4.45939671299369, - "c3": 5.847119819895537, - "c4": 5.009471383818795, - "c5": 5.457202595605162, - "c6": 4.028667566231079, - "c7": 6.116415193790688 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997227, + "c3": 8.044382801664355, + "c4": 6.435506241331481, + "c5": 4.826629680998612, + "c6": 3.2177531206657415, + "c7": 1.6088765603328707 }, "rgb": [77, 76, 132] }, @@ -227535,23 +227535,23 @@ "year": 1771, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -24.462772748081647, - "c2": -31.842978667390323, - "c3": -6.845487605908556, - "c4": -34.975279275184015, - "c5": 3.2886971002837626, - "c6": 0.055180716617940107, - "c7": -20.992835135166935 + "points": { + "c1": 4.764772830176341, + "c2": -11.409226553447969, + "c3": -11.844870359584178, + "c4": -7.988029700446056, + "c5": -31.992515052304242, + "c6": -16.258119417576275, + "c7": -15.376219364853014 }, - "vertexSeeds": { - "c1": 6.561564498165742, - "c2": 5.6929831093920775, - "c3": 5.866711271248752, - "c4": 5.781812974200525, - "c5": 6.024769582369371, - "c6": 5.7172005876448635, - "c7": 6.455908601479009 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.859454461396207, + "c4": 6.28756356911697, + "c5": 4.7156726768377215, + "c6": 3.143781784558485, + "c7": 1.571890892279249 }, "rgb": [222, 0, 59] }, @@ -227562,23 +227562,23 @@ "year": 1772, "resistanceReported": false, "duration": 46483200, - "curveSeeds": { - "c1": -24.956519991815433, - "c2": -43.120897929003746, - "c3": -1.2060410544228262, - "c4": -56.858103500697936, - "c5": 3.0844588817737346, - "c6": 20.339880353436406, - "c7": 26.429399090819878 + "points": { + "c1": -49.47505698634669, + "c2": 48.680117670192466, + "c3": 28.824658638398283, + "c4": -37.445422730065054, + "c5": 33.9579204700974, + "c6": -22.363201831246464, + "c7": 16.41758977205074 }, - "vertexSeeds": { - "c1": 5.914773094636133, - "c2": 6.140465915918884, - "c3": 5.313928048843371, - "c4": 5.976712770605238, - "c5": 6.504530445088304, - "c6": 6.114902617738554, - "c7": 6.404319908587276 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514563, + "c3": 7.7669902912621325, + "c4": 6.213592233009705, + "c5": 4.660194174757287, + "c6": 3.1067961165048574, + "c7": 1.5533980582524287 }, "rgb": [58, 15, 49] }, @@ -227589,23 +227589,23 @@ "year": 1771, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 8.776623971262602, - "c2": 8.220092996199696, - "c3": 2.4670912813596644, - "c4": 26.92168639613716, - "c5": 9.652054477650509, - "c6": 22.37857298810593, - "c7": 23.60051707178573 + "points": { + "c1": 35.9200694558546, + "c2": -10.559522350730006, + "c3": 15.185394421337705, + "c4": -8.430803782058064, + "c5": 20.998792886222944, + "c6": 21.631265947103664, + "c7": -27.98287329898684 }, - "vertexSeeds": { - "c1": 6.648600580251317, - "c2": 6.817905334892033, - "c3": 6.595211459627012, - "c4": 6.910105797912666, - "c5": 6.9007432664629, - "c6": 6.245918764162841, - "c7": 6.319813402782645 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600563, + "c3": 8.391123439667131, + "c4": 6.712898751733701, + "c5": 5.034674063800281, + "c6": 3.356449375866863, + "c7": 1.6782246879334315 }, "rgb": [77, 76, 132] }, @@ -227616,23 +227616,23 @@ "year": 1771, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -16.30552426665809, - "c2": 4.336995869531215, - "c3": 8.300892423861015, - "c4": 15.395386026187069, - "c5": -1.4226461933222723, - "c6": 1.6246916114110803, - "c7": 9.321948235885799 + "points": { + "c1": -19.957371673218933, + "c2": -18.772234151714887, + "c3": 17.32095817025712, + "c4": 19.58681207857269, + "c5": 8.852426656275632, + "c6": -11.267050541936225, + "c7": 16.278483426653125 }, - "vertexSeeds": { - "c1": 4.791887054006561, - "c2": 4.365498851183391, - "c3": 4.752944196481852, - "c4": 4.6831814294364715, - "c5": 4.630923580160027, - "c6": 4.405397179429823, - "c7": 4.25740241490112 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [77, 76, 132] }, @@ -227643,23 +227643,23 @@ "year": 1771, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -2.208426161321597, - "c2": 0.7951544636807881, - "c3": -20.2548074898921, - "c4": -4.636243599706727, - "c5": 1.948402078769064, - "c6": -10.152544415584508, - "c7": 0.8393564035107417 + "points": { + "c1": 5.474137159430548, + "c2": -9.74284029648716, + "c3": 15.59449292436475, + "c4": -20.547382312852275, + "c5": 10.540941384121481, + "c6": 25.177211042127503, + "c7": -18.581172596146903 }, - "vertexSeeds": { - "c1": 4.90037892516682, - "c2": 4.876556275948649, - "c3": 4.86652281085152, - "c4": 5.051360637861334, - "c5": 5.036362421328358, - "c6": 5.048212823718007, - "c7": 4.89757389564738 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497931, + "c3": 6.033287101248247, + "c4": 4.8266296809986065, + "c5": 3.6199722607489657, + "c6": 2.4133148404993032, + "c7": 1.2066574202496625 }, "rgb": [238, 201, 159] }, @@ -227670,23 +227670,23 @@ "year": 1771, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -2.7978071545756755, - "c2": -6.532601691868919, - "c3": 10.31045228709074, - "c4": 19.91299486635829, - "c5": -21.054110316707558, - "c6": 13.810090687393462, - "c7": -7.233929962053502 + "points": { + "c1": 2.663863761478126, + "c2": -13.415100656585466, + "c3": 11.169164437862456, + "c4": -29.33179033226686, + "c5": -14.006149719177806, + "c6": -20.102412233182054, + "c7": -22.381066511468067 }, - "vertexSeeds": { - "c1": 3.1314051787582704, - "c2": 3.165176865755564, - "c3": 3.168315611946602, - "c4": 3.1124072145938735, - "c5": 3.3069820398327083, - "c6": 3.2480597062484136, - "c7": 3.2669412746491613 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.02219140083218, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328672, + "c7": 0.8044382801664377 }, "rgb": [77, 76, 132] }, @@ -227697,23 +227697,23 @@ "year": 1771, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -21.51058098121664, - "c2": -9.823472501905758, - "c3": 29.516801337241162, - "c4": 0.14343587502478883, - "c5": 12.860972345006267, - "c6": 19.605854998390534, - "c7": 20.007752229589407 + "points": { + "c1": -26.79211961075974, + "c2": 22.9393136978982, + "c3": -11.033290156128853, + "c4": -27.746730441509765, + "c5": 31.9937584840526, + "c6": 3.9021050138545164, + "c7": -29.032608173697223 }, - "vertexSeeds": { - "c1": 6.024545719507336, - "c2": 5.9916973360188015, - "c3": 6.053487418078707, - "c4": 6.1372005099420015, - "c5": 6.186537797144272, - "c6": 6.053325733512482, - "c7": 6.125088028729539 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871007, + "c3": 7.397133610725831, + "c4": 5.917706888580654, + "c5": 4.438280166435528, + "c6": 2.958853444290352, + "c7": 1.479426722145176 }, "rgb": [238, 201, 159] }, @@ -227724,23 +227724,23 @@ "year": 1771, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -29.9695074585524, - "c2": 40.89720727802094, - "c3": -46.93284371818022, - "c4": 17.76110706512624, - "c5": -46.712746288854404, - "c6": 34.779056928876884, - "c7": 34.20542414921377 + "points": { + "c1": 44.88169936649717, + "c2": -2.284520023490174, + "c3": -4.506053708498875, + "c4": 42.72733800391353, + "c5": 51.38886210243608, + "c6": -15.724374722730147, + "c7": 3.6843456844606663 }, - "vertexSeeds": { - "c1": 6.652375013450472, - "c2": 6.427301655815581, - "c3": 12.455436022437679, - "c4": 13.203981452169792, - "c5": 13.183559916839535, - "c6": 7.271649922637913, - "c7": 5.524744075977633 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155342, + "c3": 16.18122977346279, + "c4": 12.944983818770227, + "c5": 9.708737864077671, + "c6": 6.4724919093851145, + "c7": 3.236245954692556 }, "rgb": [238, 201, 159] }, @@ -227751,23 +227751,23 @@ "year": 1771, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -30.683421065420692, - "c2": -21.429302063890148, - "c3": -27.045234066548378, - "c4": -30.02142950696932, - "c5": -2.5446595219639008, - "c6": -30.00741432387197, - "c7": -35.85916127429432 + "points": { + "c1": 18.364671491726902, + "c2": -8.179872159838077, + "c3": -33.209888251155576, + "c4": 36.335808353182756, + "c5": 2.7899547557007978, + "c6": -1.2849192466752157, + "c7": -38.11794175127151 }, - "vertexSeeds": { - "c1": 5.4263948786920455, - "c2": 5.627732495874726, - "c3": 5.580404145136755, - "c4": 5.731946667522021, - "c5": 5.668955143813598, - "c6": 5.75721648205783, - "c7": 5.586864031501952 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066585, + "c3": 6.934812760055474, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.7739251040221955, + "c7": 1.3869625520110838 }, "rgb": [222, 0, 59] }, @@ -227778,23 +227778,23 @@ "year": 1771, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 1.123438288039356, - "c2": -15.859901412695415, - "c3": -12.272823427544802, - "c4": 8.76542082278338, - "c5": 7.264917419486935, - "c6": -11.56924951655649, - "c7": -3.766221350904999 + "points": { + "c1": 2.9350693353809554, + "c2": 18.1450345148691, + "c3": -15.621882917891643, + "c4": -7.632723499000836, + "c5": -7.404033217436046, + "c6": 16.903827755436556, + "c7": -17.87702744127494 }, - "vertexSeeds": { - "c1": 3.883546475374218, - "c2": 4.192022680051785, - "c3": 4.07980843066998, - "c4": 3.8270565671726238, - "c5": 4.333959825071657, - "c6": 4.289347517616075, - "c7": 4.298409215337136 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -227805,23 +227805,23 @@ "year": 1771, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": 8.30587355461018, - "c2": -11.789886159758098, - "c3": 1.58989276319641, - "c4": -1.4464358628464336, - "c5": 14.324283055687573, - "c6": -2.6682361931852654, - "c7": -7.391904813961409 + "points": { + "c1": 4.508440382008658, + "c2": -15.791239804512193, + "c3": 12.34427347841342, + "c4": 2.3095824655804265, + "c5": 14.534350132265761, + "c6": 9.137784422190578, + "c7": -11.862226876261529 }, - "vertexSeeds": { - "c1": 0.7695860168608272, - "c2": 0.8204341368789282, - "c3": 0.8022385200721028, - "c4": 0.7663312531243148, - "c5": 0.7656793635680342, - "c6": 0.8221391429055004, - "c7": 0.7656204685933538 + "offsets": { + "c1": 1.423948220064725, + "c2": 1.220527045769765, + "c3": 1.0171058714748025, + "c4": 0.8136846971798426, + "c5": 0.6102635228848825, + "c6": 0.4068423485899225, + "c7": 0.20342117429496 }, "rgb": [58, 15, 49] }, @@ -227832,23 +227832,23 @@ "year": 1771, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -5.881940615446673, - "c2": 14.328655180792722, - "c3": -1.0210213157011339, - "c4": -28.753900382952985, - "c5": -37.69847455945988, - "c6": 44.06354374980503, - "c7": -18.202661098807308 + "points": { + "c1": 13.630272733558343, + "c2": 20.50494728985759, + "c3": 22.945379552312737, + "c4": -31.884290349589108, + "c5": -45.478579306458755, + "c6": -9.5327754692225, + "c7": 15.776286401378236 }, - "vertexSeeds": { - "c1": 3.034464340793381, - "c2": 2.9726598738768883, - "c3": 3.032176279450764, - "c4": 2.9777962710193284, - "c5": 2.992341779956845, - "c6": 2.9853932438216857, - "c7": 2.960922315872232 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435507, + "c3": 3.6985668053629226, + "c4": 2.958853444290338, + "c5": 2.2191400832177535, + "c6": 1.479426722145169, + "c7": 0.7397133610725845 }, "rgb": [222, 0, 59] }, @@ -227859,23 +227859,23 @@ "year": 1771, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -3.655378556447335, - "c2": 17.6605006042995, - "c3": 6.1342561747680975, - "c4": -16.87206998827746, - "c5": 25.26983860706447, - "c6": -5.096323903426903, - "c7": 21.989628377234517 + "points": { + "c1": -19.63531731995515, + "c2": -0.7426695069778333, + "c3": -13.583379248291969, + "c4": 23.674982868889458, + "c5": -9.551052248309766, + "c6": -14.990029948907011, + "c7": 9.493781338462242 }, - "vertexSeeds": { - "c1": 2.361283274082898, - "c2": 2.5866571977059505, - "c3": 2.470272698567267, - "c4": 2.582829142134374, - "c5": 2.396902281167272, - "c6": 2.417097165345295, - "c7": 2.3208764097242685 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692556, + "c4": 2.5889967637540443, + "c5": 1.9417475728155322, + "c6": 1.2944983818770204, + "c7": 0.6472491909385085 }, "rgb": [222, 0, 59] }, @@ -227886,23 +227886,23 @@ "year": 1771, "resistanceReported": false, "duration": 5443200, - "curveSeeds": { - "c1": 8.361626877613165, - "c2": -2.9139162017782088, - "c3": -5.2182078214435705, - "c4": 4.5403128487878455, - "c5": 7.362385791022106, - "c6": -1.123176045473599, - "c7": -5.389641087038974 + "points": { + "c1": 3.840371256683664, + "c2": -14.515005495418482, + "c3": -17.717630048397787, + "c4": 10.077569948491401, + "c5": 16.145525696721336, + "c6": -10.07206267408845, + "c7": 17.7714839485298 }, - "vertexSeeds": { - "c1": 7.695627120931475, - "c2": 7.569734541664855, - "c3": 7.439449252784036, - "c4": 7.392309963934248, - "c5": 7.383499248656025, - "c6": 7.522605325670144, - "c7": 7.483333466110485 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370314, + "c3": 9.408229311141923, + "c4": 7.5265834489135335, + "c5": 5.644937586685143, + "c6": 3.7632917244567814, + "c7": 1.8816458622283907 }, "rgb": [222, 0, 59] }, @@ -227913,23 +227913,23 @@ "year": 1771, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": -0.32683235025933044, - "c2": 11.189919809680699, - "c3": -2.6309317986605514, - "c4": 7.362145759538961, - "c5": 2.969572555984122, - "c6": -5.8779565539083904, - "c7": -6.528940971982031 + "points": { + "c1": 4.79889211230849, + "c2": -11.977446182055248, + "c3": -3.0041702996319017, + "c4": -16.0184338974977, + "c5": -3.7553743958403256, + "c6": -2.1245730347853, + "c7": -9.548375786370062 }, - "vertexSeeds": { - "c1": 4.212808420855664, - "c2": 4.31054493442271, - "c3": 4.273054350810099, - "c4": 4.346229507761864, - "c5": 4.192476940179502, - "c6": 4.295579193557341, - "c7": 4.337206012345852 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090161, + "c3": 5.2242256125751245, + "c4": 4.179380490060108, + "c5": 3.134535367545071, + "c6": 2.089690245030054, + "c7": 1.0448451225150166 }, "rgb": [86, 146, 138] }, @@ -227940,23 +227940,23 @@ "year": 1771, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": 14.789174225311669, - "c2": -3.2491607189423224, - "c3": -7.1718702913097445, - "c4": 9.010624642776978, - "c5": -5.439526685967866, - "c6": 3.2269371667066693, - "c7": 10.78168874711007 + "points": { + "c1": -10.186787631309468, + "c2": -6.7748865298786605, + "c3": 4.135829465580571, + "c4": -6.0618388343053, + "c5": 16.69277442648398, + "c6": 17.67050756141417, + "c7": -4.678925574549034 }, - "vertexSeeds": { - "c1": 5.099820552180681, - "c2": 5.213381857630504, - "c3": 5.245209409936638, - "c4": 5.022919672066272, - "c5": 4.924475168815391, - "c6": 4.666588909780526, - "c7": 4.688242245368529 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -227967,23 +227967,23 @@ "year": 1771, "resistanceReported": true, "duration": 32486400, - "curveSeeds": { - "c1": -10.80420069383154, - "c2": 10.509258371988949, - "c3": 24.738362638150647, - "c4": -19.218681778447955, - "c5": 25.47014993516889, - "c6": 9.500505336043574, - "c7": 31.499510308151642 + "points": { + "c1": -6.79110283333101, + "c2": -40.578990510451874, + "c3": -26.424662710734697, + "c4": -2.0208335236787676, + "c5": 30.83657262648751, + "c6": 13.496702770767818, + "c7": -17.49077665584809 }, - "vertexSeeds": { - "c1": 6.419141970299185, - "c2": 6.392257438844029, - "c3": 6.346407557426667, - "c4": 5.952648989942941, - "c5": 6.3226506290239834, - "c6": 6.196903233826124, - "c7": 6.291931186683652 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278773, + "c3": 8.206195099398984, + "c4": 6.564956079519181, + "c5": 4.923717059639394, + "c6": 3.2824780397595905, + "c7": 1.6412390198797886 }, "rgb": [86, 146, 138] }, @@ -227994,23 +227994,23 @@ "year": 1771, "resistanceReported": false, "duration": 5184000, - "curveSeeds": { - "c1": 9.564542113021036, - "c2": -1.1045116534900785, - "c3": -8.264183280672135, - "c4": -8.274632088280754, - "c5": 1.1021923104011027, - "c6": 5.832322827775945, - "c7": 8.777925423908256 + "points": { + "c1": -6.050669766935343, + "c2": 17.5409684966856, + "c3": -7.402866742438194, + "c4": 8.918112337113186, + "c5": 7.644271844659684, + "c6": 11.475625808780237, + "c7": -9.841837875576175 }, - "vertexSeeds": { - "c1": 2.1196585365472975, - "c2": 2.046015017442564, - "c3": 2.129440168761756, - "c4": 1.9304722902265743, - "c5": 2.1059988762350725, - "c6": 2.003611992069408, - "c7": 2.0026373479618487 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300527, + "c5": 1.5672676837725366, + "c6": 1.0448451225150244, + "c7": 0.5224225612575122 }, "rgb": [222, 0, 59] }, @@ -228021,23 +228021,23 @@ "year": 1771, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -8.393471801374428, - "c2": -9.245610629357081, - "c3": 6.7771240136408935, - "c4": 14.86266800605123, - "c5": 30.357422129603734, - "c6": -2.5480390396066497, - "c7": -20.841729342191755 + "points": { + "c1": -23.081958269120868, + "c2": 18.01158541676579, + "c3": 16.606137471983935, + "c4": -10.246616161355572, + "c5": 31.04740121242658, + "c6": -19.55552026241589, + "c7": 16.690622979008317 }, - "vertexSeeds": { - "c1": 2.5710577569343545, - "c2": 2.683480422443834, - "c3": 2.7541713044665883, - "c4": 2.505561351887626, - "c5": 2.5401778594964344, - "c6": 2.7380988379566746, - "c7": 2.674082275889724 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919565, + "c3": 3.3287101248266318, + "c4": 2.6629680998612986, + "c5": 1.9972260748959743, + "c6": 1.3314840499306493, + "c7": 0.6657420249653246 }, "rgb": [222, 0, 59] }, @@ -228048,23 +228048,23 @@ "year": 1771, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -16.200973755492804, - "c2": 13.728273849413718, - "c3": -6.189228182246609, - "c4": 5.154248994846348, - "c5": -17.07127481425475, - "c6": 33.54855646839057, - "c7": 12.31364157156785 + "points": { + "c1": 10.085085243217236, + "c2": -23.237176137295695, + "c3": 6.559509038994776, + "c4": 19.365486579726465, + "c5": 3.8589076671078644, + "c6": -22.844755390601634, + "c7": 29.32601974079877 }, - "vertexSeeds": { - "c1": 4.550630706447858, - "c2": 4.520822460584023, - "c3": 4.642821075785435, - "c4": 4.385368223440098, - "c5": 4.149150455468975, - "c6": 4.346391643246452, - "c7": 4.443422414092829 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485437, + "c3": 5.663430420711971, + "c4": 4.530744336569578, + "c5": 3.398058252427185, + "c6": 2.2653721682847916, + "c7": 1.1326860841423934 }, "rgb": [222, 0, 59] }, @@ -228075,23 +228075,23 @@ "year": 1772, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": 26.482262101816815, - "c2": -14.77906511175243, - "c3": 23.553610930229027, - "c4": 24.364851397331236, - "c5": 32.193785797249234, - "c6": -1.0734310586892377, - "c7": 31.90354306320735 + "points": { + "c1": -45.54174113136408, + "c2": 3.1171997614816718, + "c3": 43.357852270849776, + "c4": -5.879303992135192, + "c5": -33.201985394545034, + "c6": 1.980243051864143, + "c7": -35.11548228501537 }, - "vertexSeeds": { - "c1": 6.100846889172571, - "c2": 5.925353596266708, - "c3": 6.051903102597266, - "c4": 5.965662701583395, - "c5": 5.957381371996973, - "c6": 6.148745197814941, - "c7": 5.9507524946569275 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951443, + "c3": 7.443365695792884, + "c4": 5.954692556634297, + "c5": 4.466019417475736, + "c6": 2.9773462783171487, + "c7": 1.4886731391585875 }, "rgb": [86, 146, 138] }, @@ -228102,23 +228102,23 @@ "year": 1772, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": 51.48021842479643, - "c2": 32.63152888851113, - "c3": 42.43239709743109, - "c4": -34.351746742184105, - "c5": -3.5930691363630203, - "c6": 36.29788697070725, - "c7": -12.978722719014982 + "points": { + "c1": -21.85127372579295, + "c2": 53.58288109825189, + "c3": 33.8331306441453, + "c4": 29.59950524042209, + "c5": 34.33112824769202, + "c6": -36.75716092549145, + "c7": 50.684715676077204 }, - "vertexSeeds": { - "c1": 4.2336273645295694, - "c2": 4.285605802550756, - "c3": 4.450161707806828, - "c4": 4.127829684399242, - "c5": 4.416673310101565, - "c6": 3.9685272167175447, - "c7": 4.370942478310446 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [58, 15, 49] }, @@ -228129,23 +228129,23 @@ "year": 1771, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -2.1970112534694692, - "c2": -12.22034993191117, - "c3": -10.261742028718857, - "c4": -8.117152677904418, - "c5": -24.881464520946167, - "c6": -24.626058817915386, - "c7": -16.57661850681451 + "points": { + "c1": 14.928064385882372, + "c2": 24.33489324932873, + "c3": 30.41649792704513, + "c4": -36.24358359138476, + "c5": 2.1298422508196637, + "c6": 4.216609083640684, + "c7": -34.19973634915263 }, - "vertexSeeds": { - "c1": 4.0943134693230965, - "c2": 4.311439679914108, - "c3": 4.186745838719303, - "c4": 4.07034467449025, - "c5": 4.29943687111733, - "c6": 4.21829464962015, - "c7": 4.233453177202605 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049932, + "c3": 5.201109570041613, + "c4": 4.160887656033279, + "c5": 3.120665742024959, + "c6": 2.0804438280166395, + "c7": 1.0402219140083198 }, "rgb": [58, 15, 49] }, @@ -228156,23 +228156,23 @@ "year": 1771, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -15.093018118183231, - "c2": 8.220400618795004, - "c3": -6.648184101279831, - "c4": -27.33046138754097, - "c5": 30.857326412120457, - "c6": -14.142506355767615, - "c7": -5.071845506668698 + "points": { + "c1": 18.521679956290846, + "c2": -28.57555458491886, + "c3": 16.94654760144367, + "c4": -14.374817757947966, + "c5": -11.519923184665927, + "c6": -11.288541150508657, + "c7": 22.85502967074425 }, - "vertexSeeds": { - "c1": 1.181076947302912, - "c2": 1.2077102933719044, - "c3": 1.2066640589249868, - "c4": 1.195271310398015, - "c5": 1.187578995022915, - "c6": 1.1202048444633685, - "c7": 1.201146450418145 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144254, + "c3": 1.5025427646786869, + "c4": 1.2020342117429503, + "c5": 0.9015256588072116, + "c6": 0.6010171058714752, + "c7": 0.30050855293573864 }, "rgb": [58, 15, 49] }, @@ -228183,23 +228183,23 @@ "year": 1772, "resistanceReported": false, "duration": 41644800, - "curveSeeds": { - "c1": -50.30049659130294, - "c2": -35.202365583850614, - "c3": 37.98932838780733, - "c4": -42.69129239985693, - "c5": 3.121861640176725, - "c6": -17.49408308356101, - "c7": 54.36948937938122 + "points": { + "c1": 47.444006075415714, + "c2": 16.224826243178427, + "c3": 5.386066385691905, + "c4": -7.244745424833759, + "c5": 51.42770038771323, + "c6": 54.31252838439798, + "c7": 31.02626711978627 }, - "vertexSeeds": { - "c1": 6.815633654402269, - "c2": 6.257934971683756, - "c3": 6.19668818003912, - "c4": 6.704545421488051, - "c5": 6.977900928558989, - "c6": 6.990288225833582, - "c7": 6.212141956735322 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629681001, + "c3": 8.437355524734173, + "c4": 6.749884419787331, + "c5": 5.062413314840501, + "c6": 3.3749422098936717, + "c7": 1.6874711049468427 }, "rgb": [58, 15, 49] }, @@ -228210,23 +228210,23 @@ "year": 1772, "resistanceReported": false, "duration": 45446400, - "curveSeeds": { - "c1": 8.130775119813471, - "c2": 43.857768988883, - "c3": -53.96121908108582, - "c4": 34.63706856601056, - "c5": -57.642811936928, - "c6": -15.53659609462121, - "c7": 30.778500145721985 + "points": { + "c1": -50.33494064683102, + "c2": -1.4180279368812378, + "c3": 8.514691001358209, + "c4": 31.391793232222035, + "c5": 49.41776508811173, + "c6": 43.1098980016526, + "c7": -50.77423020344371 }, - "vertexSeeds": { - "c1": 7.816035917527019, - "c2": 8.909051651483784, - "c3": 8.841160064726536, - "c4": 8.142937062619392, - "c5": 7.9067391346686176, - "c6": 8.797385305874961, - "c7": 8.130678396209266 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582527, + "c3": 10.679611650485441, + "c4": 8.543689320388342, + "c5": 6.407766990291256, + "c6": 4.271844660194171, + "c7": 2.1359223300970855 }, "rgb": [222, 0, 59] }, @@ -228237,23 +228237,23 @@ "year": 1771, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -34.73645235230782, - "c2": -3.137207568817715, - "c3": 6.700349378130525, - "c4": 24.008852534079885, - "c5": 19.480537245075368, - "c6": 22.053494645480043, - "c7": -24.604386152364548 + "points": { + "c1": -0.08902683448302895, + "c2": -7.965485666996944, + "c3": -35.79773185537408, + "c4": 14.069505498045181, + "c5": -9.186835634741826, + "c6": -17.28612571516993, + "c7": -27.438697225026534 }, - "vertexSeeds": { - "c1": 7.554820694920612, - "c2": 7.736753073640338, - "c3": 7.626315045383327, - "c4": 7.6338938051578245, - "c5": 7.669172574413518, - "c6": 7.602172378460322, - "c7": 7.695308451943735 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088755, + "c3": 9.246417013407287, + "c4": 7.397133610725817, + "c5": 5.547850208044409, + "c6": 3.6985668053629395, + "c7": 1.8492834026814697 }, "rgb": [222, 0, 59] }, @@ -228264,23 +228264,23 @@ "year": 1771, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 10.05371158755269, - "c2": -30.35886134191335, - "c3": 41.415746320583374, - "c4": -38.272285617194164, - "c5": 22.485746569643076, - "c6": 22.354705977718503, - "c7": -18.35499197602318 + "points": { + "c1": -4.632970220679162, + "c2": -38.40406649396115, + "c3": 18.753532305205425, + "c4": 5.0398397373372745, + "c5": 34.4322683505521, + "c6": -40.35856001711406, + "c7": 37.81563089529755 }, - "vertexSeeds": { - "c1": 1.9529084451687972, - "c2": 1.75620619551368, - "c3": 1.807697047638984, - "c4": 1.8026571572445504, - "c5": 1.8513223124233333, - "c6": 1.9042061027351505, - "c7": 1.7790095665168173 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142859, + "c3": 2.3809523809523805, + "c4": 1.9047619047619058, + "c5": 1.4285714285714275, + "c6": 0.9523809523809529, + "c7": 0.4761904761904785 }, "rgb": [77, 76, 132] }, @@ -228291,23 +228291,23 @@ "year": 1771, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 24.678097131974745, - "c2": -10.778106173447508, - "c3": 23.39888829531492, - "c4": 22.239608035818733, - "c5": 14.458342351888987, - "c6": 6.97678031311645, - "c7": -16.242263323758195 + "points": { + "c1": -31.980853973189078, + "c2": 36.384528285701386, + "c3": 21.946261272947808, + "c4": 17.610548989622473, + "c5": 21.125199968802313, + "c6": -22.148872645608996, + "c7": -31.220222528171536 }, - "vertexSeeds": { - "c1": 5.407376247978698, - "c2": 5.379677979512785, - "c3": 5.321689941929683, - "c4": 5.54868753940842, - "c5": 5.374641009849798, - "c6": 5.499194378969847, - "c7": 5.461198147512875 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543687, + "c3": 6.634304207119734, + "c4": 5.307443365695781, + "c5": 3.980582524271857, + "c6": 2.653721682847905, + "c7": 1.3268608414239524 }, "rgb": [222, 0, 59] }, @@ -228318,23 +228318,23 @@ "year": 1771, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -1.2823538367024625, - "c2": 5.179603577420028, - "c3": 3.981789043965069, - "c4": -4.104826698977952, - "c5": 14.917370571308492, - "c6": 30.733321488022742, - "c7": 18.26168378474841 + "points": { + "c1": -0.08834131021462355, + "c2": 25.504319643463816, + "c3": -16.184341359402346, + "c4": -15.91958064516437, + "c5": 25.681321937435953, + "c6": -11.733454263545152, + "c7": 33.08461344891434 }, - "vertexSeeds": { - "c1": 4.161786234604567, - "c2": 4.195057117686533, - "c3": 3.681678862355734, - "c4": 4.291835526245881, - "c5": 4.255479654305025, - "c6": 3.7804191860652128, - "c7": 3.765311206626304 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090155, + "c3": 5.224225612575127, + "c4": 4.179380490060104, + "c5": 3.1345353675450753, + "c6": 2.089690245030052, + "c7": 1.0448451225150288 }, "rgb": [58, 15, 49] }, @@ -228345,23 +228345,23 @@ "year": 1771, "resistanceReported": false, "duration": 2851200, - "curveSeeds": { - "c1": 7.6139315002938215, - "c2": 3.2149543347762144, - "c3": -2.5199285515514216, - "c4": 7.315968242388172, - "c5": 3.641838714331426, - "c6": -9.28728996906625, - "c7": -11.607224565036393 + "points": { + "c1": 5.277889741567796, + "c2": -0.0383421600364553, + "c3": 12.481331618820414, + "c4": 6.624257178498096, + "c5": 7.190752182154368, + "c6": -2.7357641160092196, + "c7": -10.618351307700816 }, - "vertexSeeds": { - "c1": 5.595040439982232, - "c2": 5.769226387718417, - "c3": 6.766651871658173, - "c4": 6.753000426153539, - "c5": 6.220957449883365, - "c6": 5.983885346969401, - "c7": 6.808436116736035 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -228372,23 +228372,23 @@ "year": 1772, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": 21.95031221906953, - "c2": -2.632451186980397, - "c3": -30.20169291614102, - "c4": -9.802793742492426, - "c5": -39.2945451786521, - "c6": -2.3038828317062894, - "c7": 48.13280128881419 + "points": { + "c1": 16.910225179957337, + "c2": 31.90363437686112, + "c3": 34.66524608315494, + "c4": -31.36595317005647, + "c5": -9.880479386871542, + "c6": 10.558947242850998, + "c7": -18.149854941729288 }, - "vertexSeeds": { - "c1": 8.030495679949082, - "c2": 7.774506744847016, - "c3": 8.05193342163219, - "c4": 7.720760687311926, - "c5": 8.572110416838395, - "c6": 8.059898366069614, - "c7": 8.125022813927284 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502082, + "c3": 10.633379565418398, + "c4": 8.506703652334718, + "c5": 6.380027739251045, + "c6": 4.253351826167363, + "c7": 2.1266759130836816 }, "rgb": [238, 201, 159] }, @@ -228399,23 +228399,23 @@ "year": 1771, "resistanceReported": false, "duration": 2678400, - "curveSeeds": { - "c1": -5.258626797026337, - "c2": -5.683336361173822, - "c3": 1.6879653751923946, - "c4": -11.707620518096924, - "c5": 8.925357034374857, - "c6": -5.486475984787716, - "c7": -2.583159386232916 + "points": { + "c1": 12.491792162989269, + "c2": -0.33131840563578585, + "c3": 7.751930824919365, + "c4": 2.0353046966471897, + "c5": -8.678905660535376, + "c6": 5.1659097949011485, + "c7": 9.533405313460674 }, - "vertexSeeds": { - "c1": 6.26556580014903, - "c2": 6.089457656051183, - "c3": 6.486268587284963, - "c4": 6.349702316410219, - "c5": 6.754852439281354, - "c6": 6.721995304493128, - "c7": 6.606923520148118 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037445, + "c3": 8.067498844197878, + "c4": 6.4539990753583, + "c5": 4.840499306518723, + "c6": 3.226999537679145, + "c7": 1.6134997688395776 }, "rgb": [58, 15, 49] }, @@ -228426,23 +228426,23 @@ "year": 1772, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 9.33340196330304, - "c2": -25.44788719791608, - "c3": -31.367319305251954, - "c4": -10.710674633893525, - "c5": 42.799889772100656, - "c6": 23.095665753028612, - "c7": 38.381555336045224 + "points": { + "c1": -3.7418684552884827, + "c2": -45.36915071486599, + "c3": -14.947552202331138, + "c4": 15.318575316628653, + "c5": 18.55988040557702, + "c6": 5.830728109060331, + "c7": -9.863298304407955 }, - "vertexSeeds": { - "c1": 6.2386640069301835, - "c2": 6.199959028702984, - "c3": 6.143009486270771, - "c4": 6.087419152471275, - "c5": 5.9077100548283745, - "c6": 6.1586399076398735, - "c7": 6.100728306451292 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [238, 201, 159] }, @@ -228453,23 +228453,23 @@ "year": 1771, "resistanceReported": false, "duration": 2419200, - "curveSeeds": { - "c1": 7.491549135961222, - "c2": -11.135796299052668, - "c3": -1.6188287408318054, - "c4": -3.7154563891447054, - "c5": -3.2182118041414185, - "c6": 11.104962802811517, - "c7": 1.338413677330312 + "points": { + "c1": 2.9070672059815834, + "c2": -2.529461115382766, + "c3": 11.185741959447544, + "c4": 6.318653976745814, + "c5": 12.788763170671682, + "c6": -1.177003645123916, + "c7": -9.118962301712322 }, - "vertexSeeds": { - "c1": 6.571412296291104, - "c2": 6.646855900228545, - "c3": 6.787589931240819, - "c4": 6.497039778130253, - "c5": 6.5361593813135475, - "c6": 6.665810085759198, - "c7": 6.578089627297642 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238562, + "c3": 8.183079056865473, + "c4": 6.546463245492356, + "c5": 4.909847434119267, + "c6": 3.273231622746178, + "c7": 1.636615811373089 }, "rgb": [86, 146, 138] }, @@ -228480,23 +228480,23 @@ "year": 1771, "resistanceReported": false, "duration": 2419200, - "curveSeeds": { - "c1": 6.542184182280359, - "c2": -12.288434866728853, - "c3": 10.514172648950609, - "c4": -6.976585340004266, - "c5": -10.067548866906275, - "c6": -5.242675615324363, - "c7": 11.175425135394605 + "points": { + "c1": -12.500045152151138, + "c2": -11.766971809791311, + "c3": -7.252534817336745, + "c4": -1.63974449163889, + "c5": 1.4892685223167526, + "c6": 5.171588848293531, + "c7": -13.540162934614099 }, - "vertexSeeds": { - "c1": 7.057275534952868, - "c2": 7.369580453183189, - "c3": 6.555388463558619, - "c4": 7.313855675374787, - "c5": 6.345040644780992, - "c6": 6.931100829268894, - "c7": 7.150988653486686 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.2464170134073, + "c4": 7.397133610725842, + "c5": 5.547850208044384, + "c6": 3.6985668053629257, + "c7": 1.8492834026814577 }, "rgb": [222, 0, 59] }, @@ -228507,23 +228507,23 @@ "year": 1771, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 34.91443591829163, - "c2": 37.47230652588256, - "c3": -24.73044507053787, - "c4": -0.06131362709169963, - "c5": 25.2369411665062, - "c6": 3.6072776996672644, - "c7": 12.470873404329915 + "points": { + "c1": 37.6979551965766, + "c2": -38.29440815472987, + "c3": 10.09068500974049, + "c4": 18.81181727343906, + "c5": 19.673236987052576, + "c6": -28.684844498399325, + "c7": -6.014492396812926 }, - "vertexSeeds": { - "c1": 7.473700816829601, - "c2": 8.011088591903812, - "c3": 7.611670853699087, - "c4": 7.607647437305282, - "c5": 7.733737707244393, - "c6": 7.628191772864939, - "c7": 7.495296013501462 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812755, + "c3": 9.662505779010642, + "c4": 7.73000462320851, + "c5": 5.7975034674063775, + "c6": 3.865002311604265, + "c7": 1.9325011558021326 }, "rgb": [86, 146, 138] }, @@ -228534,23 +228534,23 @@ "year": 1771, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": 0.7848825417689724, - "c2": 18.91516178415857, - "c3": -20.52539833372066, - "c4": -8.199204301537229, - "c5": -11.036506077168994, - "c6": -15.035893504420118, - "c7": 12.798340335419802 + "points": { + "c1": 17.1198993974174, + "c2": -5.669114891812221, + "c3": 3.5761900702020206, + "c4": 17.367304113532555, + "c5": 9.462176261857682, + "c6": -18.33144995094748, + "c7": 0.3841892955588193 }, - "vertexSeeds": { - "c1": 3.488753018510871, - "c2": 3.452255456692373, - "c3": 3.4611009347141795, - "c4": 3.4884076755199325, - "c5": 3.4364599424631925, - "c6": 3.492130185355694, - "c7": 3.452409972460876 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280148, + "c3": 4.184003698566811, + "c4": 3.347202958853432, + "c5": 2.510402219140095, + "c6": 1.673601479426716, + "c7": 0.8368007397133372 }, "rgb": [222, 0, 59] }, @@ -228561,23 +228561,23 @@ "year": 1772, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -32.59997856291108, - "c2": -19.892776796145164, - "c3": -33.688511772182295, - "c4": -28.18242712660438, - "c5": 34.01353091764079, - "c6": -41.53023985290411, - "c7": -30.4966757561688 + "points": { + "c1": 31.128603908396315, + "c2": -46.17707217135793, + "c3": 21.227730054267482, + "c4": -43.18006602484367, + "c5": -33.70023540234429, + "c6": -27.868300499485983, + "c7": -20.92219220960174 }, - "vertexSeeds": { - "c1": 7.54323931203089, - "c2": 7.442660265750779, - "c3": 8.437850129529224, - "c4": 8.498690243786502, - "c5": 8.663248452244451, - "c6": 8.014625075064222, - "c7": 8.54637285415037 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809986, + "c3": 10.402219140083213, + "c4": 8.32177531206657, + "c5": 6.241331484049924, + "c6": 4.160887656033279, + "c7": 2.0804438280166346 }, "rgb": [86, 146, 138] }, @@ -228588,23 +228588,23 @@ "year": 1772, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": -12.640724578436789, - "c2": -35.54386266238086, - "c3": -1.2438838228896643, - "c4": 0.4338346616355224, - "c5": 31.34305406724723, - "c6": 41.592198877084904, - "c7": 6.300533080758306 + "points": { + "c1": -18.41638375050904, + "c2": 24.463610052370903, + "c3": -1.4789902434274325, + "c4": 52.07697083683083, + "c5": 13.34174392037523, + "c6": -49.16353902337183, + "c7": -24.945131050474433 }, - "vertexSeeds": { - "c1": 2.954114525189954, - "c2": 3.08001739246222, - "c3": 3.046752541409227, - "c4": 3.0886130760875465, - "c5": 3.168965351458923, - "c6": 3.132342073297328, - "c7": 3.2706140434460313 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [77, 76, 132] }, @@ -228615,23 +228615,23 @@ "year": 1771, "resistanceReported": false, "duration": 172800, - "curveSeeds": { - "c1": -8.3969232320855, - "c2": 7.822509567286756, - "c3": -3.9766511385889576, - "c4": -3.7582118321972455, - "c5": 4.744786727854615, - "c6": -4.7281694883246494, - "c7": -2.86864534077111 + "points": { + "c1": -4.107065591694746, + "c2": -0.6089143837818067, + "c3": -11.70909065869969, + "c4": -4.785731037480881, + "c5": 9.021347828557362, + "c6": -4.45173511878833, + "c7": 10.94981958911963 }, - "vertexSeeds": { - "c1": 5.820503280092029, - "c2": 6.317537089184337, - "c3": 6.146633535558151, - "c4": 6.167425248693864, - "c5": 6.751068015666174, - "c6": 6.794572078742013, - "c7": 6.268874548301114 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -228642,23 +228642,23 @@ "year": 1773, "resistanceReported": false, "duration": 72835200, - "curveSeeds": { - "c1": 53.912884379937665, - "c2": -7.8696302686013695, - "c3": 13.819388540287036, - "c4": 21.645510046560233, - "c5": -73.56324615641057, - "c6": -52.06012000928428, - "c7": -77.8099667715529 + "points": { + "c1": 7.959208149082571, + "c2": 84.83305393119754, + "c3": -12.134459565898325, + "c4": 44.48366809887064, + "c5": 22.820746326699634, + "c6": -49.69756228601508, + "c7": -13.05624958384712 }, - "vertexSeeds": { - "c1": 0.7913718569950585, - "c2": 1.265692703924723, - "c3": 2.2651969799537417, - "c4": 2.770436349950471, - "c5": 1.59691936010416, - "c6": 1.3671186606782895, - "c7": 0.6555079327102139 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.35506241331484, + "c3": 3.629218677762367, + "c4": 2.9033749422098936, + "c5": 2.17753120665742, + "c6": 1.4516874711049468, + "c7": 0.7258437355524734 }, "rgb": [58, 15, 49] }, @@ -228669,23 +228669,23 @@ "year": 1772, "resistanceReported": false, "duration": 43632000, - "curveSeeds": { - "c1": 29.719626366737934, - "c2": -47.08763269189424, - "c3": -11.289583989295195, - "c4": -2.1139729928092095, - "c5": 17.20583568669715, - "c6": -32.46536927248117, - "c7": -33.28345465287732 + "points": { + "c1": 38.171356592567854, + "c2": -24.990521082373213, + "c3": 34.59485278689012, + "c4": -38.17906301418136, + "c5": 5.890417614286001, + "c6": 17.16109586338745, + "c7": 14.455649403933272 }, - "vertexSeeds": { - "c1": 4.400807433337172, - "c2": 4.475419105833395, - "c3": 4.689579873168904, - "c4": 4.76728300451467, - "c5": 4.778817800389154, - "c6": 4.79123372901189, - "c7": 4.68463396365109 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055476, + "c3": 5.7790106333795634, + "c4": 4.623208506703656, + "c5": 3.467406380027742, + "c6": 2.311604253351828, + "c7": 1.155802126675914 }, "rgb": [86, 146, 138] }, @@ -228696,23 +228696,23 @@ "year": 1772, "resistanceReported": false, "duration": 45360000, - "curveSeeds": { - "c1": 5.608869127616778, - "c2": 21.344916303528755, - "c3": -37.51996293810004, - "c4": -52.42470002601143, - "c5": 10.920368974572291, - "c6": 11.472746939523311, - "c7": 29.39602907346181 + "points": { + "c1": 8.887751742717448, + "c2": 5.776821936613651, + "c3": 48.2444540172314, + "c4": 22.436168048061568, + "c5": -23.42673640729228, + "c6": -13.682891984257672, + "c7": 45.55353438831093 }, - "vertexSeeds": { - "c1": 4.784827130472878, - "c2": 5.149231149007416, - "c3": 4.956269890416177, - "c4": 4.888753681413358, - "c5": 5.1233204517316855, - "c6": 5.1196111076685185, - "c7": 5.01982853464861 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739251, + "c3": 6.171983356449377, + "c4": 4.937586685159501, + "c5": 3.7031900138696257, + "c6": 2.4687933425797506, + "c7": 1.2343966712898753 }, "rgb": [86, 146, 138] }, @@ -228723,23 +228723,23 @@ "year": 1772, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 47.59720127112853, - "c2": -4.044661757339647, - "c3": -37.215428499959486, - "c4": -30.529914470598694, - "c5": 14.337380434602188, - "c6": -19.170957634002896, - "c7": -5.181742669581148 + "points": { + "c1": -19.19306519938668, + "c2": 6.510847608090579, + "c3": 43.74531830259303, + "c4": 11.100940420490993, + "c5": -24.856901285147273, + "c6": 53.02106162602457, + "c7": 45.0790772789157 }, - "vertexSeeds": { - "c1": 7.357110897633073, - "c2": 7.324316053538238, - "c3": 7.192295535476501, - "c4": 7.239508562991639, - "c5": 6.916359589780546, - "c6": 7.001923627510089, - "c7": 7.000473911945569 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -228750,23 +228750,23 @@ "year": 1772, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": -35.62188006269048, - "c2": 2.6957568985246354, - "c3": -41.749178113724795, - "c4": 28.99221880938007, - "c5": -30.17749338592731, - "c6": -53.72893219018884, - "c7": 34.81929621334138 + "points": { + "c1": 35.906645739539464, + "c2": 53.80970256267404, + "c3": 41.84883185472109, + "c4": -26.064194335140474, + "c5": -56.58570061144951, + "c6": 18.858313700603368, + "c7": 33.3739612972987 }, - "vertexSeeds": { - "c1": 2.9808238569080263, - "c2": 3.0085902386296848, - "c3": 3.0880468979613496, - "c4": 2.781622838865676, - "c5": 3.036383533067803, - "c6": 2.776489476031949, - "c7": 2.814866355589533 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515948, + "c3": 3.744798890429954, + "c4": 2.995839112343968, + "c5": 2.246879334257974, + "c6": 1.4979195561719802, + "c7": 0.748959778085994 }, "rgb": [77, 76, 132] }, @@ -228777,23 +228777,23 @@ "year": 1772, "resistanceReported": false, "duration": 42422400, - "curveSeeds": { - "c1": 26.133332011828422, - "c2": -7.2931873678235775, - "c3": 30.968591393171245, - "c4": -50.87903962037136, - "c5": 48.8256496311297, - "c6": 14.092803568731917, - "c7": -24.502104997600995 + "points": { + "c1": -51.74925232040751, + "c2": -52.447439080452575, + "c3": -24.71162932945169, + "c4": -6.073678768914334, + "c5": 53.77521308906396, + "c6": 18.685522634100472, + "c7": 24.47634151405726 }, - "vertexSeeds": { - "c1": 5.758587427737045, - "c2": 5.801821174541975, - "c3": 5.9347108290838895, - "c4": 6.0772807166286835, - "c5": 5.850734878561676, - "c6": 5.819383732668609, - "c7": 5.839904446743107 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750346, + "c3": 7.3277854831252895, + "c4": 5.862228386500231, + "c5": 4.396671289875173, + "c6": 2.9311141932501155, + "c7": 1.4655570966250577 }, "rgb": [222, 0, 59] }, @@ -228804,23 +228804,23 @@ "year": 1772, "resistanceReported": false, "duration": 53308800, - "curveSeeds": { - "c1": -26.8091110808814, - "c2": -32.116421222991654, - "c3": 19.16172311403669, - "c4": 21.097542788231166, - "c5": -30.424398505645712, - "c6": -11.704968685698987, - "c7": 48.84575585944509 + "points": { + "c1": 58.459467032855144, + "c2": -43.836676078737995, + "c3": -34.00374414312519, + "c4": -56.66860126767631, + "c5": 39.80869838557983, + "c6": -59.33846027881518, + "c7": -36.960121808149836 }, - "vertexSeeds": { - "c1": 5.541430619967823, - "c2": 5.610813739429451, - "c3": 5.3416284668555765, - "c4": 5.391924327440328, - "c5": 5.329251616570022, - "c6": 5.480759109131209, - "c7": 5.340340303128171 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744795, + "c3": 6.749884419787325, + "c4": 5.3999075358298825, + "c5": 4.049930651872412, + "c6": 2.6999537679149412, + "c7": 1.3499768839574706 }, "rgb": [222, 0, 59] }, @@ -228831,23 +228831,23 @@ "year": 1772, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 17.547191609654476, - "c2": -9.07605465957947, - "c3": 20.592689254542663, - "c4": 31.416432908377132, - "c5": -34.73817962600093, - "c6": 41.847467121265666, - "c7": 30.15496095862818 + "points": { + "c1": -11.257424386948784, + "c2": -8.996674402512689, + "c3": 22.073223821669927, + "c4": 20.83554465185665, + "c5": -21.601919815458764, + "c6": -6.01286767291333, + "c7": -7.10888624932187 }, - "vertexSeeds": { - "c1": 6.6026181800093156, - "c2": 6.613667996280999, - "c3": 6.83497715830009, - "c4": 6.802279668472885, - "c5": 6.767315402882074, - "c6": 6.625811898818599, - "c7": 6.770484623290608 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.93065187239945, + "c3": 8.275543226999545, + "c4": 6.620434581599643, + "c5": 4.965325936199739, + "c6": 3.310217290799807, + "c7": 1.6551086453999035 }, "rgb": [86, 146, 138] }, @@ -228858,23 +228858,23 @@ "year": 1772, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": -47.882178506097695, - "c2": -27.565526119152022, - "c3": -44.79938227306248, - "c4": 14.094756866316573, - "c5": 15.562687889864364, - "c6": 33.336770080581815, - "c7": -22.53834316439366 + "points": { + "c1": -3.4008243532799227, + "c2": -24.787956365683407, + "c3": -34.10354114148298, + "c4": 46.332600799700415, + "c5": 42.5666557653425, + "c6": 44.65416563508606, + "c7": 31.994370915254763 }, - "vertexSeeds": { - "c1": 1.491297018196163, - "c2": 1.397801857370739, - "c3": 1.4405334795730054, - "c4": 1.559475289703288, - "c5": 1.399822982286531, - "c6": 1.4002602618896847, - "c7": 1.5644247261575324 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499306, + "c3": 2.0110957004160888, + "c4": 1.6088765603328707, + "c5": 1.206657420249653, + "c6": 0.8044382801664354, + "c7": 0.4022191400832177 }, "rgb": [58, 15, 49] }, @@ -228885,23 +228885,23 @@ "year": 1771, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 5.114957574666356, - "c2": -6.7136454314551415, - "c3": -3.6192740767517613, - "c4": -17.100650492656104, - "c5": 7.550015283705626, - "c6": 22.202111419927114, - "c7": -3.6660686751434497 + "points": { + "c1": -7.140116910533784, + "c2": 33.91583741042085, + "c3": -35.22210693206935, + "c4": -33.72838271880312, + "c5": -34.32585403853153, + "c6": 12.70457741380374, + "c7": -27.55333339895566 }, - "vertexSeeds": { - "c1": 2.2871765697827757, - "c2": 2.291419132429809, - "c3": 2.3171692252846445, - "c4": 2.598261438582087, - "c5": 2.415518770578073, - "c6": 2.622152457868502, - "c7": 2.516169240607239 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590844, + "c3": 3.21312991215904, + "c4": 2.5705039297272303, + "c5": 1.9278779472954235, + "c6": 1.2852519648636167, + "c7": 0.6426259824318068 }, "rgb": [77, 76, 132] }, @@ -228912,23 +228912,23 @@ "year": 1772, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 16.33321142438775, - "c2": -22.057722439537137, - "c3": 18.5186288245147, - "c4": -20.14745101481606, - "c5": -37.515129460473496, - "c6": 39.35729866794908, - "c7": 11.386944033988016 + "points": { + "c1": 32.20116930879655, + "c2": 43.68866446718499, + "c3": -19.087361021383106, + "c4": -27.595045005466957, + "c5": -25.4364443853765, + "c6": -35.74677442958155, + "c7": 0.6172232580653727 }, - "vertexSeeds": { - "c1": 4.827810179823336, - "c2": 4.91425068089362, - "c3": 4.876528351993858, - "c4": 5.455856916150168, - "c5": 5.053480175533846, - "c6": 4.796960613284516, - "c7": 4.918575027558987 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503468, + "c3": 6.611188164586225, + "c4": 5.28895053166897, + "c5": 3.966712898751728, + "c6": 2.644475265834485, + "c7": 1.3222376329172425 }, "rgb": [77, 76, 132] }, @@ -228939,23 +228939,23 @@ "year": 1771, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 26.282445615509886, - "c2": -6.74586438893304, - "c3": 23.23269288379325, - "c4": 26.52860715421471, - "c5": -14.276462768904167, - "c6": -3.6174291854621003, - "c7": 28.11723313908088 + "points": { + "c1": 21.952207567717863, + "c2": -3.1631111017437235, + "c3": -29.64855770317741, + "c4": -22.300039248033272, + "c5": -9.686364083041113, + "c6": 3.55591701259862, + "c7": 9.83902114778779 }, - "vertexSeeds": { - "c1": 1.8967002680232106, - "c2": 1.7907388095798387, - "c3": 1.8255640338084766, - "c4": 1.8547440044561307, - "c5": 1.71196862745992, - "c6": 1.8202696616027807, - "c7": 1.8934845985214142 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.8862690707350886, + "c5": 1.4147018030513194, + "c6": 0.9431345353675462, + "c7": 0.4715672676837731 }, "rgb": [58, 15, 49] }, @@ -228966,23 +228966,23 @@ "year": 1771, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 19.195410049112652, - "c2": -30.211621584032564, - "c3": 41.45925938940548, - "c4": -37.384902981548834, - "c5": 38.90204511771221, - "c6": 14.834974651841485, - "c7": 2.5287966453557544 + "points": { + "c1": -9.519981701861695, + "c2": -22.939977634357337, + "c3": -42.65074963624264, + "c4": 5.03471131987785, + "c5": 13.197532308363769, + "c6": 10.501928655244797, + "c7": -33.69539151452268 }, - "vertexSeeds": { - "c1": 3.0222167071530905, - "c2": 3.261904489056315, - "c3": 3.057810653281436, - "c4": 3.145375169495109, - "c5": 3.2830325862906586, - "c6": 2.946322200138919, - "c7": 3.1874082998342206 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998612, + "c3": 4.022191400832175, + "c4": 3.217753120665739, + "c5": 2.413314840499309, + "c6": 1.6088765603328725, + "c7": 0.8044382801664363 }, "rgb": [77, 76, 132] }, @@ -228993,23 +228993,23 @@ "year": 1772, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": 37.4643857527062, - "c2": 22.9212921153081, - "c3": 14.465565711912554, - "c4": 43.04814638590492, - "c5": -27.52033497434505, - "c6": 8.778646258762286, - "c7": 16.745681172300458 + "points": { + "c1": 29.764433555512433, + "c2": 38.32995877389836, + "c3": -36.75917758307773, + "c4": -17.069334460385633, + "c5": -0.5884640259228888, + "c6": -38.91556894312464, + "c7": 32.810155141177695 }, - "vertexSeeds": { - "c1": 2.975703467874543, - "c2": 2.973918324805792, - "c3": 3.0555309641599906, - "c4": 2.8922310272752063, - "c5": 2.877527484136488, - "c6": 2.8021999498783976, - "c7": 3.0146794901088185 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395286, + "c3": 3.6754507628294064, + "c4": 2.940360610263519, + "c5": 2.205270457697639, + "c6": 1.4701803051317595, + "c7": 0.7350901525658797 }, "rgb": [222, 0, 59] }, @@ -229020,23 +229020,23 @@ "year": 1771, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 1.879335730189652, - "c2": 30.991463327100114, - "c3": -8.173037656588843, - "c4": -6.4753452849189586, - "c5": 31.19951716712488, - "c6": -5.646844630350447, - "c7": 5.429319836933686 + "points": { + "c1": -10.407631887745382, + "c2": -25.86753014880668, + "c3": 23.231054794105418, + "c4": 0.1740649601791091, + "c5": 9.45666637871247, + "c6": -21.704204327201353, + "c7": 29.199302955228028 }, - "vertexSeeds": { - "c1": 2.746885164169099, - "c2": 2.7858758243060997, - "c3": 2.7522573842345683, - "c4": 2.9143551303344233, - "c5": 2.802819344186779, - "c6": 2.874683455775016, - "c7": 2.8927637496530867 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194176, + "c3": 3.5598705501618144, + "c4": 2.8478964401294533, + "c5": 2.135922330097092, + "c6": 1.4239482200647227, + "c7": 0.7119741100323613 }, "rgb": [58, 15, 49] }, @@ -229047,23 +229047,23 @@ "year": 1772, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 4.006526860625819, - "c2": -42.07962794441708, - "c3": -19.974860208500065, - "c4": -3.397819192690008, - "c5": -28.114287427248893, - "c6": -25.822339077333822, - "c7": 11.958253438166658 + "points": { + "c1": 26.175676179894175, + "c2": 28.8851484535222, + "c3": 17.716201978867936, + "c4": -41.28156125012043, + "c5": 33.75336547711006, + "c6": 30.723719048553313, + "c7": 31.324414996060433 }, - "vertexSeeds": { - "c1": 6.205414254930334, - "c2": 6.1478630265679, - "c3": 6.453807704753812, - "c4": 6.160877258903745, - "c5": 6.213103336885296, - "c6": 6.4530157806355986, - "c7": 6.524606237371427 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.65325936199722, + "c3": 8.044382801664362, + "c4": 6.4355062413314865, + "c5": 4.82662968099861, + "c6": 3.2177531206657535, + "c7": 1.6088765603328767 }, "rgb": [86, 146, 138] }, @@ -229074,23 +229074,23 @@ "year": 1771, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 2.1370875674956054, - "c2": -23.11020785853406, - "c3": 37.795474921525056, - "c4": 24.792071771853486, - "c5": -9.132798053663613, - "c6": -12.352522859249323, - "c7": 8.799489052533481 + "points": { + "c1": 41.43806735683714, + "c2": 22.03647616782223, + "c3": 21.28254765543273, + "c4": -26.028161864407416, + "c5": 28.99332362141257, + "c6": 4.594616105489905, + "c7": -16.102092545713273 }, - "vertexSeeds": { - "c1": 4.221099269629832, - "c2": 2.9185229476169505, - "c3": 3.4856610260042364, - "c4": 0.8328415940885937, - "c5": 1.8038631207028328, - "c6": 1.9109147750470918, - "c7": 1.16609161901887 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251042, + "c3": 5.316689782709201, + "c4": 4.2533518261673615, + "c5": 3.190013869625521, + "c6": 2.1266759130836808, + "c7": 1.0633379565418408 }, "rgb": [58, 15, 49] }, @@ -229101,23 +229101,23 @@ "year": 1771, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -25.553218712647993, - "c2": 27.836424784409623, - "c3": -10.019672564465552, - "c4": -12.348687264877636, - "c5": -15.456219592402046, - "c6": 10.467561137370808, - "c7": -0.7688415584395294 + "points": { + "c1": 7.723955799914378, + "c2": -15.789521490499897, + "c3": -31.91276844490446, + "c4": -12.819532575140197, + "c5": -14.705026336659248, + "c6": 25.74202150291928, + "c7": 10.554015662675404 }, - "vertexSeeds": { - "c1": 5.905885330133465, - "c2": 6.159115463194083, - "c3": 6.052910630922932, - "c4": 5.8226435283040585, - "c5": 5.997094582501701, - "c6": 5.928836834413424, - "c7": 6.183722571603701 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951443, + "c3": 7.443365695792884, + "c4": 5.954692556634297, + "c5": 4.466019417475736, + "c6": 2.9773462783171487, + "c7": 1.4886731391585875 }, "rgb": [77, 76, 132] }, @@ -229128,23 +229128,23 @@ "year": 1772, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 23.612155554436377, - "c2": 46.035138805391874, - "c3": 45.307279142077526, - "c4": -0.034717100865314876, - "c5": 47.70843598609809, - "c6": 33.68503668783533, - "c7": -27.56306567511641 + "points": { + "c1": 19.007993312333163, + "c2": 17.55218527560171, + "c3": -23.762433889983754, + "c4": 30.052457930347238, + "c5": -30.702400729837663, + "c6": -34.76306884787772, + "c7": -2.44790752983085 }, - "vertexSeeds": { - "c1": 4.0884148869222745, - "c2": 3.9089256674165638, - "c3": 4.142399608644657, - "c4": 3.776121532791121, - "c5": 3.96438465301816, - "c6": 4.189039414579393, - "c7": 3.905009580711432 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374015, + "c4": 4.068423485899212, + "c5": 3.0513176144244065, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [86, 146, 138] }, @@ -229155,23 +229155,23 @@ "year": 1771, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -30.739934597525878, - "c2": -7.4720846380667325, - "c3": -21.28520377648096, - "c4": -1.4373699857088411, - "c5": -19.80760672860376, - "c6": 40.37825371943312, - "c7": 20.27762045098477 + "points": { + "c1": -14.965760412159351, + "c2": -28.851847739226123, + "c3": -31.347993605580342, + "c4": 19.454866767953945, + "c5": 17.807365464981622, + "c6": 31.08886242669041, + "c7": -33.96589806844794 }, - "vertexSeeds": { - "c1": 7.529309817803426, - "c2": 7.472781360119608, - "c3": 7.628258884344296, - "c4": 7.544796854496545, - "c5": 7.4091314663650865, - "c6": 7.4701688159325945, - "c7": 7.68344690370418 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968088, + "c3": 9.177068885806769, + "c4": 7.341655108645407, + "c5": 5.506241331484044, + "c6": 3.6708275543227247, + "c7": 1.8354137771613623 }, "rgb": [238, 201, 159] }, @@ -229182,23 +229182,23 @@ "year": 1771, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 17.739305163627396, - "c2": -8.330657276427175, - "c3": 0.524607610731838, - "c4": 12.204428272192242, - "c5": -10.712438487453102, - "c6": -2.8037348584327795, - "c7": 24.605495632883358 + "points": { + "c1": 16.077485788593698, + "c2": 27.082030144349133, + "c3": 3.640611035019937, + "c4": 13.105446938719666, + "c5": 24.418674259512095, + "c6": -4.474870002537536, + "c7": -29.58958994144833 }, - "vertexSeeds": { - "c1": 3.649524654977553, - "c2": 3.6017492484524305, - "c3": 3.571297776658919, - "c4": 3.5491641411749546, - "c5": 3.6054138986113955, - "c6": 3.6097756066920046, - "c7": 3.6272978774713294 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601938, + "c3": 4.368932038834943, + "c4": 3.495145631067978, + "c5": 2.6213592233009835, + "c6": 1.747572815533989, + "c7": 0.8737864077669945 }, "rgb": [58, 15, 49] }, @@ -229209,23 +229209,23 @@ "year": 1771, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 10.813089427406872, - "c2": 0.4939735166541297, - "c3": 20.965463856674603, - "c4": 4.3633610209247, - "c5": 10.278619146481084, - "c6": 5.8386515159219385, - "c7": 3.7159974465707855 + "points": { + "c1": -3.2672615230045174, + "c2": -9.436503141462762, + "c3": 8.496237013712634, + "c4": -18.929770044870526, + "c5": 14.242234474630493, + "c6": 13.08684027043936, + "c7": -2.9009867063415022 }, - "vertexSeeds": { - "c1": 3.5730486543996727, - "c2": 3.547733102797513, - "c3": 3.543314474816719, - "c4": 3.481280059110759, - "c5": 3.4894412822618177, - "c6": 3.4915628961098997, - "c7": 3.511774247938815 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441057, + "c3": 4.276467868700884, + "c4": 3.4211742949607116, + "c5": 2.5658807212205392, + "c6": 1.7105871474803451, + "c7": 0.8552935737401726 }, "rgb": [86, 146, 138] }, @@ -229236,23 +229236,23 @@ "year": 1772, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 9.732585663597696, - "c2": -31.786612814061478, - "c3": 20.834534368491312, - "c4": -39.653517891947324, - "c5": 20.736469457846646, - "c6": 12.995996751243766, - "c7": -34.79056356605405 + "points": { + "c1": 39.283985431420874, + "c2": -28.199100152634504, + "c3": 37.70700941934474, + "c4": -41.9920442359381, + "c5": -10.320875340589161, + "c6": 4.658490044185562, + "c7": -18.330468139281574 }, - "vertexSeeds": { - "c1": 2.9685887599262193, - "c2": 3.153786765187225, - "c3": 3.0666242077317794, - "c4": 3.033509472478781, - "c5": 2.919764404074095, - "c6": 2.950966209316358, - "c7": 2.985894243054585 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -229263,23 +229263,23 @@ "year": 1772, "resistanceReported": false, "duration": 55468800, - "curveSeeds": { - "c1": 19.035376279279717, - "c2": 56.53650358106911, - "c3": 66.10581106286615, - "c4": 23.192053046069802, - "c5": 3.2881939426812323, - "c6": 64.26346003945422, - "c7": -68.09862342803457 + "points": { + "c1": -58.27508879281113, + "c2": 64.33277566719828, + "c3": -53.78572395915881, + "c4": -14.745616402022677, + "c5": -67.21710598551692, + "c6": 29.707859071300888, + "c7": 36.440834874187374 }, - "vertexSeeds": { - "c1": 0.7759662211530711, - "c2": 0.7801149515181728, - "c3": 0.8327520528296084, - "c4": 0.773218672991713, - "c5": 0.7834425724658245, - "c6": 0.8126889932605532, - "c7": 0.8192802425077327 + "offsets": { + "c1": 1.423948220064725, + "c2": 1.2205270457697646, + "c3": 1.0171058714748042, + "c4": 0.8136846971798437, + "c5": 0.6102635228848832, + "c6": 0.40684234858992097, + "c7": 0.20342117429496048 }, "rgb": [58, 15, 49] }, @@ -229290,23 +229290,23 @@ "year": 1771, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -25.583912181605367, - "c2": 2.8878522952988277, - "c3": -1.2336899638085086, - "c4": 25.31077302561952, - "c5": -11.898532457678808, - "c6": -22.51542371846741, - "c7": -21.641653628299007 + "points": { + "c1": -10.998927335543335, + "c2": -12.4642502045796, + "c3": -1.0164278135261355, + "c4": -19.79862523648361, + "c5": -13.231135702992823, + "c6": 20.80695452875448, + "c7": -4.884466523427875 }, - "vertexSeeds": { - "c1": 2.619716598929915, - "c2": 2.596667156666344, - "c3": 2.950413638269593, - "c4": 2.8564986772706837, - "c5": 2.8003056792700765, - "c6": 2.6155612758246796, - "c7": 2.7357606655980846 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282925, + "c4": 2.8294036061026397, + "c5": 2.1220527045769795, + "c6": 1.4147018030513199, + "c7": 0.7073509015256599 }, "rgb": [58, 15, 49] }, @@ -229317,23 +229317,23 @@ "year": 1772, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -6.389706587051805, - "c2": -14.4393696726185, - "c3": -32.844228615259055, - "c4": -4.591834200621953, - "c5": -14.386759699917771, - "c6": -36.691609110242055, - "c7": -3.681005122841391 + "points": { + "c1": 15.637079607008303, + "c2": -6.885997443021402, + "c3": -26.968006143035414, + "c4": -30.635485415666395, + "c5": -23.47270605436455, + "c6": 34.76036449225815, + "c7": -3.005613953598484 }, - "vertexSeeds": { - "c1": 5.905105850140852, - "c2": 5.700859620805444, - "c3": 5.600711597206006, - "c4": 5.7686035551555115, - "c5": 5.837911282026434, - "c6": 6.171396585677019, - "c7": 5.577354363219805 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -229344,23 +229344,23 @@ "year": 1772, "resistanceReported": true, "duration": 50457600, - "curveSeeds": { - "c1": 57.14537519109929, - "c2": -29.285265652573642, - "c3": -2.14921546486633, - "c4": -14.890205122161106, - "c5": 31.280892089263162, - "c6": -7.672367440241089, - "c7": -17.308423941419903 + "points": { + "c1": -1.2058573679061482, + "c2": 67.17191055632969, + "c3": 57.562780347872064, + "c4": 47.46248623275943, + "c5": 0.19509684457938192, + "c6": -6.658265723333578, + "c7": 20.568184785778158 }, - "vertexSeeds": { - "c1": 2.880991525228278, - "c2": 2.729037274607975, - "c3": 2.97139128758458, - "c4": 2.5373408835908453, - "c5": 2.6332413213796033, - "c6": 2.547658517900407, - "c7": 2.6509375663295893 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395284, + "c3": 3.6754507628294038, + "c4": 2.940360610263523, + "c5": 2.205270457697642, + "c6": 1.4701803051317615, + "c7": 0.7350901525658807 }, "rgb": [86, 146, 138] }, @@ -229371,23 +229371,23 @@ "year": 1772, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -23.22704458589356, - "c2": -16.963549632352052, - "c3": -32.37450296012775, - "c4": 26.39049130996164, - "c5": -45.5860643420384, - "c6": -28.386062972531082, - "c7": 9.461575440036896 + "points": { + "c1": -18.48821706706139, + "c2": -45.99186094349273, + "c3": 13.822934997295413, + "c4": -41.261822413372855, + "c5": 30.33099065815764, + "c6": -20.359996614390763, + "c7": 25.61967566914796 }, - "vertexSeeds": { - "c1": 4.376694843735506, - "c2": 4.14197743304342, - "c3": 4.527781292631153, - "c4": 4.024603930795178, - "c5": 4.7258246275597156, - "c6": 4.672641309379981, - "c7": 4.398461308954782 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -229398,23 +229398,23 @@ "year": 1771, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -16.657312314339077, - "c2": -14.153130580176109, - "c3": -5.503213239730364, - "c4": 15.814533020511256, - "c5": -15.669957955457283, - "c6": 8.285921644502793, - "c7": 17.877951617521816 + "points": { + "c1": -4.726176736193189, + "c2": 0.2105693278033165, + "c3": -22.512989796666552, + "c4": -0.021411019021552846, + "c5": 10.61317570314585, + "c6": -24.6295512419483, + "c7": -9.004140023388931 }, - "vertexSeeds": { - "c1": 2.1464549113457587, - "c2": 2.4697982569187724, - "c3": 2.4489340782137456, - "c4": 2.573096780923694, - "c5": 2.0563607511732482, - "c6": 2.3895421237051666, - "c7": 2.183402040975978 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897357, + "c3": 3.097549699491447, + "c4": 2.478039759593157, + "c5": 1.8585298196948679, + "c6": 1.2390198797965786, + "c7": 0.6195099398982893 }, "rgb": [222, 0, 59] }, @@ -229425,23 +229425,23 @@ "year": 1772, "resistanceReported": false, "duration": 37843200, - "curveSeeds": { - "c1": 23.58492230176372, - "c2": 18.703943837807607, - "c3": -18.33233288397046, - "c4": 42.48333374084839, - "c5": -3.2913068634284244, - "c6": 33.95730208754002, - "c7": -8.475340767100604 + "points": { + "c1": -36.687505506225676, + "c2": 31.010257887834236, + "c3": 26.00826502679464, + "c4": 25.350171228827286, + "c5": -0.7627639462066753, + "c6": 9.636052740431133, + "c7": 3.667476895858279 }, - "vertexSeeds": { - "c1": 4.062021668311698, - "c2": 4.147615587564414, - "c3": 4.277395948450595, - "c4": 4.286585282647138, - "c5": 4.4128579192492365, - "c6": 4.129591747424363, - "c7": 4.074740725041517 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [238, 201, 159] }, @@ -229452,23 +229452,23 @@ "year": 1772, "resistanceReported": false, "duration": 59097600, - "curveSeeds": { - "c1": 42.94155991932111, - "c2": -69.84686033128997, - "c3": -6.946845636430098, - "c4": 43.337512860810065, - "c5": -58.68016856800574, - "c6": -42.036554799968506, - "c7": -72.60242088627233 + "points": { + "c1": 60.52675988148562, + "c2": 11.531206526118822, + "c3": 75.30527015348818, + "c4": 49.42461891482712, + "c5": 38.36665985424402, + "c6": 63.446524746777925, + "c7": 5.285828206897733 }, - "vertexSeeds": { - "c1": 5.255027016434594, - "c2": 5.381277675668563, - "c3": 5.691054952532944, - "c4": 5.434533926683049, - "c5": 5.115011536238278, - "c6": 5.604625225777519, - "c7": 5.473288780810822 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905683, + "c3": 6.842348589921398, + "c4": 5.473878871937126, + "c5": 4.1054091539528415, + "c6": 2.736939435968556, + "c7": 1.3684697179842715 }, "rgb": [58, 15, 49] }, @@ -229479,23 +229479,23 @@ "year": 1771, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 6.272164348345555, - "c2": 22.3135074301848, - "c3": 4.725099045468792, - "c4": -16.614868902282716, - "c5": 1.596646884350946, - "c6": 11.861762455451398, - "c7": 21.30900210513574 + "points": { + "c1": 24.874816730607016, + "c2": -18.201820891334897, + "c3": -25.822029901418976, + "c4": 11.521560276545046, + "c5": -0.01743404482699873, + "c6": -0.3597382442071826, + "c7": -25.293903640129763 }, - "vertexSeeds": { - "c1": 0.24642283546281946, - "c2": 0.26076975763019594, - "c3": 0.25648094897881024, - "c4": 0.24284153903216255, - "c5": 0.2648545182287282, - "c6": 0.23529270405145308, - "c7": 0.23692730844504395 + "offsets": { + "c1": 0.48543689320388345, + "c2": 0.41608876560332875, + "c3": 0.346740638002774, + "c4": 0.2773925104022193, + "c5": 0.20804438280166415, + "c6": 0.13869625520110945, + "c7": 0.06934812760055473 }, "rgb": [222, 0, 59] }, @@ -229506,23 +229506,23 @@ "year": 1772, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 5.901729779185935, - "c2": -43.59087567742688, - "c3": 20.926556382641593, - "c4": 28.85250486609705, - "c5": 26.30661244137862, - "c6": 7.111669919783708, - "c7": 43.295577417640004 + "points": { + "c1": 52.73205272904657, + "c2": 16.350144593739174, + "c3": 4.433473605157616, + "c4": 8.012739812718976, + "c5": 31.3870939326723, + "c6": 30.344995311765587, + "c7": -4.814589128681888 }, - "vertexSeeds": { - "c1": 4.2761892142003415, - "c2": 4.111452255865456, - "c3": 4.048289143085457, - "c4": 4.235560439812966, - "c5": 4.059341869452791, - "c6": 4.181979644923739, - "c7": 4.0736904275967065 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929264, + "c3": 5.131761442441054, + "c4": 4.105409153952842, + "c5": 3.079056865464632, + "c6": 2.052704576976421, + "c7": 1.0263522884882106 }, "rgb": [86, 146, 138] }, @@ -229533,23 +229533,23 @@ "year": 1772, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": -31.356165546696666, - "c2": 31.947689120562103, - "c3": 39.402015269417674, - "c4": -11.16223608876706, - "c5": 38.97858305570682, - "c6": 39.95839773970913, - "c7": 1.6246781316766317 + "points": { + "c1": -28.880983276821116, + "c2": -29.191004516232464, + "c3": -23.002195695693747, + "c4": 26.593292878196124, + "c5": -35.34421938138387, + "c6": 33.50366819784722, + "c7": 6.6795137012284584 }, - "vertexSeeds": { - "c1": 4.202285788982862, - "c2": 4.9335444640263635, - "c3": 4.917719126723675, - "c4": 5.158919505965175, - "c5": 4.098404788784756, - "c6": 4.420127293981649, - "c7": 5.300050326504035 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [238, 201, 159] }, @@ -229560,23 +229560,23 @@ "year": 1771, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -22.796074266623933, - "c2": 18.28793224725203, - "c3": -20.896499125816916, - "c4": -9.443828167037935, - "c5": 14.92395352395826, - "c6": 2.4550215463046, - "c7": -8.311651766692037 + "points": { + "c1": 18.00066108348257, + "c2": -33.52003216577426, + "c3": 17.939291490520667, + "c4": -17.32491485541703, + "c5": 22.655821758732493, + "c6": -14.432657052372384, + "c7": 1.3444668023825983 }, - "vertexSeeds": { - "c1": 2.653359972352103, - "c2": 2.693801247617064, - "c3": 2.438776583446875, - "c4": 2.47828693454074, - "c5": 2.359920279847473, - "c6": 2.4232822609315874, - "c7": 2.6293302659885938 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692556, + "c4": 2.5889967637540443, + "c5": 1.9417475728155322, + "c6": 1.2944983818770204, + "c7": 0.6472491909385085 }, "rgb": [86, 146, 138] }, @@ -229587,23 +229587,23 @@ "year": 1771, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 32.44911406962127, - "c2": 6.844516721347404, - "c3": 18.037234117338002, - "c4": 35.059732704906615, - "c5": 3.7602510567510237, - "c6": -21.095488917791165, - "c7": 34.41276185357817 + "points": { + "c1": -13.794755716580067, + "c2": 14.68775795774571, + "c3": -31.542323813814907, + "c4": 11.339299468804782, + "c5": 18.55007413971139, + "c6": -10.564054264234148, + "c7": 37.69586891787565 }, - "vertexSeeds": { - "c1": 11.564786946149987, - "c2": 11.425294794158699, - "c3": 11.78493201105702, - "c4": 11.266070866481202, - "c5": 11.747917018319477, - "c6": 11.28927172872936, - "c7": 11.783579953828111 + "offsets": { + "c1": 20.58252427184466, + "c2": 17.64216366158115, + "c3": 14.701803051317597, + "c4": 11.761442441054086, + "c5": 8.821081830790575, + "c6": 5.880721220527023, + "c7": 2.9403606102635114 }, "rgb": [77, 76, 132] }, @@ -229614,23 +229614,23 @@ "year": 1771, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 21.114118988416045, - "c2": 23.381119735361494, - "c3": 4.763997308665523, - "c4": 18.769378024781517, - "c5": -21.00261444818753, - "c6": 15.150091368081554, - "c7": 19.964751483537235 + "points": { + "c1": 16.024348135549857, + "c2": 9.410254370878356, + "c3": 22.706893252986916, + "c4": -16.651246263566144, + "c5": -0.37487172586320483, + "c6": 15.790530537770742, + "c7": -1.9566681222150208 }, - "vertexSeeds": { - "c1": 2.705246073181607, - "c2": 2.5078617722306746, - "c3": 2.6257726482167305, - "c4": 2.9290140517138097, - "c5": 2.6592672723018773, - "c6": 2.838305530137076, - "c7": 2.674374324813001 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113732, + "c3": 3.5136384650947776, + "c4": 2.8109107720758235, + "c5": 2.108183079056869, + "c6": 1.4054553860379146, + "c7": 0.7027276930189543 }, "rgb": [58, 15, 49] }, @@ -229641,23 +229641,23 @@ "year": 1771, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -23.384959549784504, - "c2": -31.43971093810215, - "c3": -17.065158946288683, - "c4": -0.05388337918259367, - "c5": -22.624010622015525, - "c6": 11.740370498918821, - "c7": 11.622414140552436 + "points": { + "c1": 18.32933701589807, + "c2": -25.26702707922809, + "c3": -15.761629666403238, + "c4": 3.703750239061762, + "c5": 10.442306776504324, + "c6": 1.9236615261418493, + "c7": 27.456957852804265 }, - "vertexSeeds": { - "c1": 2.789513268793906, - "c2": 2.7842880561782346, - "c3": 2.5884969829472655, - "c4": 2.7016088697672203, - "c5": 2.760185704049584, - "c6": 2.596458316167594, - "c7": 2.871838969832765 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.4674063800277413, + "c4": 2.7739251040221866, + "c5": 2.08044382801664, + "c6": 1.3869625520110933, + "c7": 0.6934812760055467 }, "rgb": [222, 0, 59] }, @@ -229668,23 +229668,23 @@ "year": 1772, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 9.003386420476104, - "c2": -26.1614813014996, - "c3": 33.60490863900184, - "c4": 12.93126419759708, - "c5": 29.04197745664063, - "c6": 4.446377593558957, - "c7": 28.05418195148372 + "points": { + "c1": 16.614687843962997, + "c2": 17.967006981558058, + "c3": 26.534124570559463, + "c4": 3.0232977467924016, + "c5": -30.648189745472095, + "c6": 11.667892596176522, + "c7": 15.88090282120227 }, - "vertexSeeds": { - "c1": 4.774660033678831, - "c2": 4.991780187253428, - "c3": 4.774657571046277, - "c4": 4.950979279902484, - "c5": 4.673208950675541, - "c6": 5.0560693530260865, - "c7": 4.854402960113199 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618582, + "c3": 6.10263522884882, + "c4": 4.882108183079058, + "c5": 3.661581137309291, + "c6": 2.441054091539523, + "c7": 1.2205270457697615 }, "rgb": [238, 201, 159] }, @@ -229695,23 +229695,23 @@ "year": 1771, "resistanceReported": true, "duration": 15552000, - "curveSeeds": { - "c1": -26.28917462579431, - "c2": 23.84094290380833, - "c3": -17.024008531764256, - "c4": 21.340529286225507, - "c5": 6.903253649523808, - "c6": -17.700060827090773, - "c7": 26.3045229714451 + "points": { + "c1": -9.069241686876165, + "c2": -25.66663782948057, + "c3": 20.769751720781162, + "c4": 11.663106089710855, + "c5": -4.314198822556712, + "c6": -7.576946103197262, + "c7": -19.631462614436007 }, - "vertexSeeds": { - "c1": 4.652144806137192, - "c2": 4.333791822351047, - "c3": 4.689106695988509, - "c4": 4.509538515970677, - "c5": 3.925135299656981, - "c6": 4.399212843385228, - "c7": 4.378463520396483 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485437, + "c3": 5.663430420711971, + "c4": 4.530744336569578, + "c5": 3.398058252427185, + "c6": 2.2653721682847916, + "c7": 1.1326860841423934 }, "rgb": [86, 146, 138] }, @@ -229722,23 +229722,23 @@ "year": 1771, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 20.7929330758302, - "c2": 14.981527302185171, - "c3": 18.539784805204867, - "c4": -17.291976924479716, - "c5": -13.531928200458296, - "c6": -19.765678032144507, - "c7": -11.819797872927701 + "points": { + "c1": 28.016352172776102, + "c2": 22.939904422559266, + "c3": -34.90927886057703, + "c4": -14.05893998906851, + "c5": 19.632118938807878, + "c6": 15.840529024689502, + "c7": 27.612346702690253 }, - "vertexSeeds": { - "c1": 5.943590043394667, - "c2": 5.895558726724627, - "c3": 6.225880396558066, - "c4": 6.0043277547347085, - "c5": 5.760098279306596, - "c6": 6.263460096334027, - "c7": 5.808428330967832 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112335, + "c3": 7.535829865926956, + "c4": 6.028663892741556, + "c5": 4.521497919556178, + "c6": 3.014331946370778, + "c7": 1.5071659731853997 }, "rgb": [238, 201, 159] }, @@ -229749,23 +229749,23 @@ "year": 1771, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 13.710659727568558, - "c2": -7.424988758342668, - "c3": -0.852855766457342, - "c4": -7.16572721153344, - "c5": 7.6011770664224265, - "c6": -6.842737193931985, - "c7": -10.28820307212537 + "points": { + "c1": -25.88758747389245, + "c2": 0.33589830760375605, + "c3": -4.675707054855163, + "c4": -18.73324454363958, + "c5": -1.001190526619574, + "c6": 15.941941659048435, + "c7": -1.1997826477641418 }, - "vertexSeeds": { - "c1": 3.22522838439182, - "c2": 3.0415520999121033, - "c3": 3.0503932417732798, - "c4": 3.087627106520967, - "c5": 3.036036136966847, - "c6": 2.921687343794326, - "c7": 3.09422009053396 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [238, 201, 159] }, @@ -229776,23 +229776,23 @@ "year": 1772, "resistanceReported": true, "duration": 24624000, - "curveSeeds": { - "c1": 10.58757285109121, - "c2": -2.5337081788937823, - "c3": 3.4290319909866582, - "c4": -14.222676559062442, - "c5": 7.470136705789621, - "c6": 14.348062051337251, - "c7": -28.709157387737513 + "points": { + "c1": 14.021417632628918, + "c2": 2.2790091599973508, + "c3": 24.72666128016281, + "c4": 32.64684946764174, + "c5": -24.12964170613289, + "c6": 35.6877613626334, + "c7": 35.73442794378595 }, - "vertexSeeds": { - "c1": 9.35716873274219, - "c2": 9.14151777464008, - "c3": 9.418561198563099, - "c4": 8.535852973292421, - "c5": 8.694412841400151, - "c6": 9.36932635434947, - "c7": 9.005821619397153 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909852, + "c3": 11.442441054091537, + "c4": 9.153952843273231, + "c5": 6.865464632454926, + "c6": 4.576976421636622, + "c7": 2.288488210818305 }, "rgb": [238, 201, 159] }, @@ -229803,23 +229803,23 @@ "year": 1772, "resistanceReported": true, "duration": 36633600, - "curveSeeds": { - "c1": 10.301565955075347, - "c2": 3.1944196129419424, - "c3": -4.319550524923429, - "c4": 28.511407218486994, - "c5": -17.048455977904204, - "c6": -29.226710203921666, - "c7": 39.985474116753736 + "points": { + "c1": -21.907883609075608, + "c2": -9.105978908257342, + "c3": -6.84647703966295, + "c4": -43.455170539744515, + "c5": 28.598732026397528, + "c6": -13.967165519312957, + "c7": -31.72056423436164 }, - "vertexSeeds": { - "c1": 2.357158129718168, - "c2": 2.4565554727756655, - "c3": 2.5467443980432494, - "c4": 2.4550275189165642, - "c5": 2.5858726045884324, - "c6": 2.4130948996372226, - "c7": 2.581194894801001 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [86, 146, 138] }, @@ -229830,23 +229830,23 @@ "year": 1772, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 12.984513672165036, - "c2": 29.441883099267102, - "c3": 12.042874952049473, - "c4": -33.46432815424418, - "c5": 31.123708757550375, - "c6": 5.883391038332469, - "c7": -30.121968441890992 + "points": { + "c1": -5.624713402225339, + "c2": 29.700156973544026, + "c3": -20.729818163041696, + "c4": -18.704993711180737, + "c5": -8.761884791112927, + "c6": -34.305054136261326, + "c7": -14.32495046901586 }, - "vertexSeeds": { - "c1": 7.024352924455403, - "c2": 7.461773746286099, - "c3": 6.685895761393797, - "c4": 7.369754460467712, - "c5": 7.333397910306447, - "c6": 7.065383281761476, - "c7": 4.959846828554705 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -229857,23 +229857,23 @@ "year": 1772, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -13.652463376476252, - "c2": 30.152414061595387, - "c3": -23.86225126702582, - "c4": 27.01986741282628, - "c5": 9.510734103932215, - "c6": 31.110774379075785, - "c7": -31.151518289457265 + "points": { + "c1": -26.59651655704087, + "c2": 2.7024203167689222, + "c3": -31.67247045679769, + "c4": 10.828376174163672, + "c5": 32.102074013695365, + "c6": 28.182621599581573, + "c7": -34.437488194087486 }, - "vertexSeeds": { - "c1": 6.3494936687709265, - "c2": 6.808099493820823, - "c3": 5.975274295060032, - "c4": 6.220470654483912, - "c5": 6.1572466368712435, - "c6": 6.079755417235534, - "c7": 6.264362696771607 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -229884,23 +229884,23 @@ "year": 1772, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": -44.96104619551837, - "c2": 19.315501080790575, - "c3": -7.244491642456701, - "c4": -3.2202328605127306, - "c5": -45.20633805486969, - "c6": 11.94494782673356, - "c7": 38.56857272484752 + "points": { + "c1": 2.8874787874395977, + "c2": -14.003434072704792, + "c3": 44.131489523633654, + "c4": 13.839042560191878, + "c5": -45.85496211469005, + "c6": -27.26316686973762, + "c7": -24.28287845904176 }, - "vertexSeeds": { - "c1": 4.460579783942875, - "c2": 4.640813444014508, - "c3": 4.619420057176432, - "c4": 4.651803065649884, - "c5": 4.621667051929597, - "c6": 4.038809138435146, - "c7": 4.785533432031981 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055475, + "c3": 5.779010633379566, + "c4": 4.623208506703651, + "c5": 3.4674063800277404, + "c6": 2.3116042533518253, + "c7": 1.1558021266759102 }, "rgb": [77, 76, 132] }, @@ -229911,23 +229911,23 @@ "year": 1772, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -2.282598970251783, - "c2": -15.18918971321271, - "c3": 17.7188642386988, - "c4": -16.498057266536033, - "c5": 29.89343760020064, - "c6": 17.11964125826794, - "c7": 32.73593329547289 + "points": { + "c1": 10.161459143425787, + "c2": 5.981145796023426, + "c3": 33.857080921766965, + "c4": 17.952337503523715, + "c5": 11.599494786990348, + "c6": 8.523828450442771, + "c7": -2.1431175144328733 }, - "vertexSeeds": { - "c1": 6.584970053928288, - "c2": 6.731227466759968, - "c3": 6.347300080564142, - "c4": 6.160419461437492, - "c5": 6.307490659739701, - "c6": 7.107117476274521, - "c7": 6.395814241909056 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [77, 76, 132] }, @@ -229938,23 +229938,23 @@ "year": 1771, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 5.603817675862665, - "c2": 32.9192183601578, - "c3": -19.353065152326547, - "c4": -24.44909571514611, - "c5": 5.025950496207514, - "c6": 11.724871021746438, - "c7": 1.767726743294304 + "points": { + "c1": -21.28055665308601, + "c2": -10.614040795594928, + "c3": 7.212826281350132, + "c4": -15.83772671452056, + "c5": 12.71700742310184, + "c6": -5.905304012720126, + "c7": 27.257203012667063 }, - "vertexSeeds": { - "c1": 4.578901984424425, - "c2": 4.501932725045483, - "c3": 4.298340230736066, - "c4": 4.598501324318704, - "c5": 4.318013833462835, - "c6": 4.81272221838228, - "c7": 4.136767749136801 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -229965,23 +229965,23 @@ "year": 1771, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -12.314573653275176, - "c2": -2.2502407841056566, - "c3": 12.401751249864262, - "c4": -26.714641054451157, - "c5": 18.866702542139052, - "c6": -25.81562948027431, - "c7": 7.66615498748412 + "points": { + "c1": 10.536121618924064, + "c2": 12.68086549192941, + "c3": 0.7458829063047716, + "c4": 20.144645359630253, + "c5": -30.464539304262768, + "c6": -22.27015858582855, + "c7": 1.3067053287276167 }, - "vertexSeeds": { - "c1": 3.045035161031883, - "c2": 3.394884942664977, - "c3": 3.029948282885903, - "c4": 3.057670095911589, - "c5": 3.115637839930659, - "c6": 3.2144284405980024, - "c7": 3.160547900104168 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719367, + "c5": 2.441054091539525, + "c6": 1.6273693943596834, + "c7": 0.8136846971798417 }, "rgb": [238, 201, 159] }, @@ -229992,23 +229992,23 @@ "year": 1772, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -4.700438210713159, - "c2": 39.356785218183035, - "c3": 14.66108885718593, - "c4": 35.24682987352426, - "c5": 6.921199630143462, - "c6": 11.490500467549957, - "c7": 24.049518030203046 + "points": { + "c1": 19.730222637896823, + "c2": 24.804575084390862, + "c3": 28.056898500600056, + "c4": 21.92296404394935, + "c5": 28.8618701184771, + "c6": 10.16813179975027, + "c7": -35.00774074093349 }, - "vertexSeeds": { - "c1": 6.096025534283184, - "c2": 7.9419181924380124, - "c3": 6.49077916416789, - "c4": 7.397321709673376, - "c5": 6.661374646687301, - "c6": 7.266764386350976, - "c7": 6.726880427056641 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893208, + "c3": 9.708737864077671, + "c4": 7.766990291262133, + "c5": 5.825242718446604, + "c6": 3.883495145631074, + "c7": 1.941747572815537 }, "rgb": [58, 15, 49] }, @@ -230019,23 +230019,23 @@ "year": 1772, "resistanceReported": false, "duration": 48211200, - "curveSeeds": { - "c1": -16.16484616466576, - "c2": 53.63633725337711, - "c3": 45.13518245313843, - "c4": 41.72487155231187, - "c5": 24.610753616315876, - "c6": -23.45795831179973, - "c7": -2.173596533146764 + "points": { + "c1": 13.035463649822049, + "c2": -34.88293168987815, + "c3": -62.120849487906064, + "c4": 13.806329596447284, + "c5": -34.290534910497556, + "c6": 35.364628371178966, + "c7": 19.486486202464945 }, - "vertexSeeds": { - "c1": 7.281461691306944, - "c2": 7.251128298415073, - "c3": 7.111527520863146, - "c4": 7.314456143646827, - "c5": 7.530467280841481, - "c6": 7.237186929581525, - "c7": 7.230373279409267 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646334, + "c3": 8.992140545538593, + "c4": 7.1937124364308795, + "c5": 5.395284327323167, + "c6": 3.5968562182154256, + "c7": 1.7984281091077128 }, "rgb": [238, 201, 159] }, @@ -230046,23 +230046,23 @@ "year": 1772, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -12.27571344475249, - "c2": -25.445281229103706, - "c3": 12.116262525287077, - "c4": 18.54965516877489, - "c5": -5.002768986944339, - "c6": 15.6615443835342, - "c7": -12.992986816303649 + "points": { + "c1": 34.66497263836523, + "c2": 31.978128625732197, + "c3": -19.76844726955605, + "c4": 21.97999823793434, + "c5": -25.982293079398556, + "c6": -13.90645667005839, + "c7": -28.79048581268391 }, - "vertexSeeds": { - "c1": 3.8132737024369936, - "c2": 4.2257172553467095, - "c3": 4.077959462644101, - "c4": 4.081059971935294, - "c5": 4.146001447140146, - "c6": 3.8452169178562556, - "c7": 4.216175027239474 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -230073,23 +230073,23 @@ "year": 1772, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": 3.9540175083139033, - "c2": 31.383793214716576, - "c3": -37.414636629730886, - "c4": -6.485979162436735, - "c5": -44.803875839883844, - "c6": 4.575433321220423, - "c7": -14.817990109251703 + "points": { + "c1": -18.495737267530068, + "c2": 19.95727189044578, + "c3": 22.082473271258863, + "c4": -2.986984386756582, + "c5": -6.4473507788548545, + "c6": 22.770921204947257, + "c7": 1.696832930820861 }, - "vertexSeeds": { - "c1": 0.038860103626943004, - "c2": 0.038860103626943004, - "c3": 0.038860103626943004, - "c4": 0.038860103626943004, - "c5": 0.038860103626943004, - "c6": 0.038860103626943004, - "c7": 0.038860103626943004 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -230100,23 +230100,23 @@ "year": 1771, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -29.97712170132086, - "c2": 12.410110594554265, - "c3": 24.646030734031196, - "c4": 8.138605087532024, - "c5": 3.169537898065311, - "c6": -8.82711165565625, - "c7": -2.9345938510853173 + "points": { + "c1": -19.27703962988791, + "c2": 16.58976041405205, + "c3": 4.906813699863321, + "c4": 8.275351284166476, + "c5": 29.628397364140305, + "c6": 28.641411100382484, + "c7": 23.678177119909748 }, - "vertexSeeds": { - "c1": 7.0997575816918665, - "c2": 6.324734496535532, - "c3": 6.446364340687549, - "c4": 6.672801481243422, - "c5": 6.850601255116659, - "c6": 6.6518910847705195, - "c7": 6.510921699492268 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922336, + "c3": 8.576051779935272, + "c4": 6.860841423948224, + "c5": 5.145631067961161, + "c6": 3.430420711974112, + "c7": 1.7152103559870622 }, "rgb": [77, 76, 132] }, @@ -230127,23 +230127,23 @@ "year": 1772, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -11.69321733822946, - "c2": -4.573068642816182, - "c3": -25.359277176261973, - "c4": -11.895009821379716, - "c5": -0.9411159695019791, - "c6": 2.1449513706844883, - "c7": 18.141766656632186 + "points": { + "c1": -23.038149967871952, + "c2": -19.02265275676407, + "c3": 33.363667985401186, + "c4": 22.635549225762965, + "c5": 0.8060651600788091, + "c6": -37.7790374912144, + "c7": 0.6965307816027746 }, - "vertexSeeds": { - "c1": 4.6928211050323165, - "c2": 4.721845022657066, - "c3": 4.470240426974116, - "c4": 4.6444657968099285, - "c5": 4.65684595883043, - "c6": 4.7327183882267745, - "c7": 4.484121254771359 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934818, + "c3": 5.709662505779009, + "c4": 4.567730004623212, + "c5": 3.425797503467402, + "c6": 2.283865002311606, + "c7": 1.1419325011557961 }, "rgb": [58, 15, 49] }, @@ -230154,23 +230154,23 @@ "year": 1771, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 25.629297294342148, - "c2": -5.8515075361098, - "c3": -18.006290901410075, - "c4": 20.456457971231682, - "c5": -24.37646127291182, - "c6": -28.264202953045153, - "c7": -25.455025538511485 + "points": { + "c1": 25.641108468114084, + "c2": 7.94116229623188, + "c3": 14.269161138895576, + "c4": 7.662685562425814, + "c5": -15.518203854677871, + "c6": 6.01070068499763, + "c7": -24.725129878249856 }, - "vertexSeeds": { - "c1": 6.808913635069985, - "c2": 5.903567538027905, - "c3": 6.80822806300149, - "c4": 5.896539189559645, - "c5": 6.768975165668168, - "c6": 5.694444114794671, - "c7": 6.785410310953099 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -230181,23 +230181,23 @@ "year": 1771, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -16.87570876498522, - "c2": -28.00637952493988, - "c3": -8.458695678382465, - "c4": 4.8325861166187245, - "c5": 11.463973438856652, - "c6": 3.442614937946356, - "c7": -19.866994010464744 + "points": { + "c1": -1.6650601951245072, + "c2": -18.168262660573653, + "c3": 8.95277672178657, + "c4": 28.217566939694393, + "c5": -27.56570329882866, + "c6": -21.68228286702958, + "c7": -25.361019481277626 }, - "vertexSeeds": { - "c1": 5.813585455212936, - "c2": 5.68321054348544, - "c3": 5.854694481588978, - "c4": 6.365455765148222, - "c5": 6.670581275412779, - "c6": 6.374061891835424, - "c7": 6.591730111588051 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -230208,23 +230208,23 @@ "year": 1773, "resistanceReported": false, "duration": 52531200, - "curveSeeds": { - "c1": 58.36777628629656, - "c2": 39.368390351578626, - "c3": 37.945280184370475, - "c4": 31.725936699006, - "c5": -0.03455655585675288, - "c6": 38.13865585549949, - "c7": -10.573194933880643 + "points": { + "c1": 2.977469160853886, + "c2": -59.032980807789315, + "c3": 23.996182744630275, + "c4": -68.30196089830973, + "c5": -21.60209355310326, + "c6": 22.054625114773728, + "c7": 68.54051519977565 }, - "vertexSeeds": { - "c1": 4.302178395703221, - "c2": 4.014625871821468, - "c3": 4.107216774674842, - "c4": 3.941960534239355, - "c5": 4.192875473843385, - "c6": 4.316651400739474, - "c7": 4.1680840664674035 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -230235,23 +230235,23 @@ "year": 1772, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 45.13922003556001, - "c2": 27.242364813084414, - "c3": 30.965697733602063, - "c4": -35.98391471803648, - "c5": 33.572662248320405, - "c6": 31.220818631038703, - "c7": 9.420359766235286 + "points": { + "c1": 3.3979035855339745, + "c2": 35.30872695059531, + "c3": -30.54142967938839, + "c4": -2.4967949689295494, + "c5": 8.502509513196792, + "c6": -0.8093078053614704, + "c7": 46.51689047814319 }, - "vertexSeeds": { - "c1": 3.1657732439010218, - "c2": 2.8675583356338112, - "c3": 3.242289901039844, - "c4": 3.176945265226067, - "c5": 4.003286195705041, - "c6": 3.0606791416882113, - "c7": 3.0943859128478857 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527046, + "c3": 4.900601017105871, + "c4": 3.920480813684697, + "c5": 2.940360610263523, + "c6": 1.9602404068423485, + "c7": 0.9801202034211742 }, "rgb": [58, 15, 49] }, @@ -230262,23 +230262,23 @@ "year": 1772, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 17.900876447596886, - "c2": 28.151220782915438, - "c3": 15.980650412064492, - "c4": 10.057685637949234, - "c5": -34.31809958610376, - "c6": -12.630980767235222, - "c7": 2.159646974551677 + "points": { + "c1": 11.922803852228569, + "c2": -27.60903341559591, + "c3": -46.17730347084352, + "c4": -38.29796995316639, + "c5": -22.644283364190514, + "c6": -35.521856971051434, + "c7": 9.105937605415157 }, - "vertexSeeds": { - "c1": 11.737738413731618, - "c2": 11.739740968038188, - "c3": 11.604898928114158, - "c4": 11.620993104087185, - "c5": 11.644399191799046, - "c6": 11.71719503535809, - "c7": 11.643098564546845 + "offsets": { + "c1": 19.611650485436893, + "c2": 16.80998613037456, + "c3": 14.008321775311947, + "c4": 11.206657420249613, + "c5": 8.40499306518728, + "c6": 5.603328710124946, + "c7": 2.801664355062334 }, "rgb": [222, 0, 59] }, @@ -230289,23 +230289,23 @@ "year": 1772, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 33.975853315644784, - "c2": 31.252493033384283, - "c3": -35.072040990510295, - "c4": 29.60311210652776, - "c5": 29.367947576510375, - "c6": 30.18380053872363, - "c7": -20.846963213565928 + "points": { + "c1": -16.490882348450178, + "c2": -37.56953363159133, + "c3": 25.62619410987932, + "c4": -27.10980453404379, + "c5": 21.404369661132222, + "c6": -11.24021117703603, + "c7": 8.973827052504014 }, - "vertexSeeds": { - "c1": 2.602510000528306, - "c2": 2.6324488275371785, - "c3": 2.4454648260143785, - "c4": 2.398451276024474, - "c5": 2.5543391052576143, - "c6": 2.6053669139174493, - "c7": 2.3800054357381906 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590849, + "c3": 3.2131299121590375, + "c4": 2.570503929727233, + "c5": 1.9278779472954206, + "c6": 1.2852519648636125, + "c7": 0.6426259824318042 }, "rgb": [222, 0, 59] }, @@ -230316,23 +230316,23 @@ "year": 1772, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -18.713825277926837, - "c2": -27.866741429729878, - "c3": -0.6395892832618344, - "c4": -0.8756327219589366, - "c5": -30.896468067177054, - "c6": -12.22979207537901, - "c7": 40.15293250074017 + "points": { + "c1": 33.47468829451815, + "c2": 25.166441867387057, + "c3": -0.9431764599181705, + "c4": 2.1433936810378, + "c5": 10.947591017062415, + "c6": -43.69623553935649, + "c7": 29.853377484428485 }, - "vertexSeeds": { - "c1": 6.072511408045295, - "c2": 5.992002677056267, - "c3": 6.016189859074046, - "c4": 5.863439409936741, - "c5": 5.915462632507839, - "c6": 5.9503668758539305, - "c7": 5.836563758688217 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951443, + "c3": 7.443365695792884, + "c4": 5.954692556634297, + "c5": 4.466019417475736, + "c6": 2.9773462783171487, + "c7": 1.4886731391585875 }, "rgb": [222, 0, 59] }, @@ -230343,23 +230343,23 @@ "year": 1771, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 16.654672819930273, - "c2": 11.32241961344624, - "c3": 29.144427041090427, - "c4": -23.989907040104182, - "c5": 24.465696552308348, - "c6": 23.27339199079807, - "c7": 28.838092881652127 + "points": { + "c1": 16.03169107048585, + "c2": -0.7930614181297955, + "c3": 28.377448079508618, + "c4": 2.6571484195030166, + "c5": 3.623763658872413, + "c6": -11.108813113183558, + "c7": 22.588200486168155 }, - "vertexSeeds": { - "c1": 4.328363172280413, - "c2": 4.504768136939855, - "c3": 4.110043104933228, - "c4": 4.581853294500534, - "c5": 4.399375115399246, - "c6": 4.342313368150188, - "c7": 4.353512175053633 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -230370,23 +230370,23 @@ "year": 1772, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 27.0276531488245, - "c2": -10.153977506745353, - "c3": 33.393602552648716, - "c4": 7.770017792074633, - "c5": 13.843010639043762, - "c6": 16.821645347724704, - "c7": 31.65111887090096 + "points": { + "c1": -38.641556422727426, + "c2": -28.045364082857997, + "c3": 35.16490343647125, + "c4": 1.3480082378578118, + "c5": -37.080840498500606, + "c6": -27.533867145803548, + "c7": -2.8369127659721514 }, - "vertexSeeds": { - "c1": 4.388608412354317, - "c2": 4.36776346588053, - "c3": 4.147383850666318, - "c4": 4.379298360305476, - "c5": 4.463956217019251, - "c6": 4.3598821893097535, - "c7": 4.268753723538832 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.62968099861304, + "c3": 5.524734165510862, + "c4": 4.41978733240869, + "c5": 3.31484049930652, + "c6": 2.209893666204342, + "c7": 1.104946833102171 }, "rgb": [77, 76, 132] }, @@ -230397,23 +230397,23 @@ "year": 1772, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 31.36982671337212, - "c2": 12.774785152239275, - "c3": -3.0599218313065144, - "c4": 2.2416911358061355, - "c5": 6.829819589515189, - "c6": 0.5994804606594002, - "c7": 26.80462089897771 + "points": { + "c1": -33.69957980238176, + "c2": -4.235540311745684, + "c3": 11.62874389963477, + "c4": -7.27390277082743, + "c5": -1.2876185235197184, + "c6": 2.8791545306210793, + "c7": -0.48264051668940056 }, - "vertexSeeds": { - "c1": 9.376386152775217, - "c2": 8.952980796475174, - "c3": 8.027859408977072, - "c4": 8.546792544405232, - "c5": 9.200476262750882, - "c6": 8.671634749302505, - "c7": 9.141905584770528 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.59223300970874, + "c3": 11.326860841423942, + "c4": 9.061488673139156, + "c5": 6.79611650485437, + "c6": 4.530744336569583, + "c7": 2.2653721682847867 }, "rgb": [58, 15, 49] }, @@ -230424,23 +230424,23 @@ "year": 1772, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -17.2800491192951, - "c2": 26.50026155528836, - "c3": 13.110918960103689, - "c4": 9.281840851076709, - "c5": -15.45083802586992, - "c6": -33.52710419778367, - "c7": 3.456711354553974 + "points": { + "c1": -16.792343002258804, + "c2": 16.488641909260807, + "c3": -20.238888421062327, + "c4": 43.39068259228608, + "c5": 11.461150081419184, + "c6": -45.33857568167529, + "c7": -6.472240634595629 }, - "vertexSeeds": { - "c1": 4.584454723171857, - "c2": 5.091685604507752, - "c3": 5.237481571473768, - "c4": 4.5237616243114465, - "c5": 5.327493008558187, - "c6": 5.316740369164603, - "c7": 5.24119511132552 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221914, + "c3": 6.449375866851596, + "c4": 5.159500693481276, + "c5": 3.869625520110957, + "c6": 2.579750346740638, + "c7": 1.289875173370319 }, "rgb": [77, 76, 132] }, @@ -230451,23 +230451,23 @@ "year": 1772, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -9.3390824687431, - "c2": 19.94509556435861, - "c3": 5.741837716366099, - "c4": 14.344560870510833, - "c5": 20.062426605652917, - "c6": -13.344916299207348, - "c7": 14.912622808640037 + "points": { + "c1": -23.206304730336974, + "c2": 13.275339921309275, + "c3": -35.05839916271471, + "c4": -13.474667965961899, + "c5": -5.163522744202432, + "c6": 30.733825740132886, + "c7": -26.47629849673799 }, - "vertexSeeds": { - "c1": 8.99500032801767, - "c2": 9.328590363018122, - "c3": 9.109011273469255, - "c4": 9.096849329084053, - "c5": 9.465476512559672, - "c6": 9.381427399295983, - "c7": 9.29500384023483 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708746, + "c3": 11.326860841423935, + "c4": 9.061488673139154, + "c5": 6.796116504854373, + "c6": 4.530744336569591, + "c7": 2.2653721682847814 }, "rgb": [86, 146, 138] }, @@ -230478,23 +230478,23 @@ "year": 1772, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -30.54613028861084, - "c2": 20.29472055335021, - "c3": -7.913815463882006, - "c4": -7.201511794798268, - "c5": 21.46136639851383, - "c6": -3.383473889687778, - "c7": 20.1200216786575 + "points": { + "c1": 19.35880140011858, + "c2": 27.523571672938694, + "c3": -5.456183510147866, + "c4": -7.80049091568819, + "c5": 24.29477435679953, + "c6": 0.15614960498296426, + "c7": 19.15661830780776 }, - "vertexSeeds": { - "c1": 6.956414681651016, - "c2": 6.663164060399696, - "c3": 6.597897641434673, - "c4": 6.912205682578669, - "c5": 6.7965650866399985, - "c6": 6.76191160761493, - "c7": 6.664485467251228 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560323, + "c3": 8.368007397133594, + "c4": 6.6944059177068915, + "c5": 5.0208044382801615, + "c6": 3.347202958853432, + "c7": 1.67360147942673 }, "rgb": [58, 15, 49] }, @@ -230505,23 +230505,23 @@ "year": 1772, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 28.771426201271353, - "c2": -14.535152998459253, - "c3": -9.122495817180884, - "c4": -23.798292901132694, - "c5": -12.339051693100181, - "c6": 25.57385162239016, - "c7": -10.419799352684716 + "points": { + "c1": -16.13374350027004, + "c2": 5.6031535861882915, + "c3": -29.708961174978036, + "c4": -9.686268345787138, + "c5": 28.88045063033026, + "c6": -8.186574708628537, + "c7": -0.9770760202871358 }, - "vertexSeeds": { - "c1": 4.49617852093171, - "c2": 4.804639153117794, - "c3": 4.248749676851884, - "c4": 4.727021762191699, - "c5": 4.184983540403598, - "c6": 4.505057597325091, - "c7": 4.148509513669602 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -230532,23 +230532,23 @@ "year": 1772, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 5.524420669209164, - "c2": -20.26361431104777, - "c3": -12.656848884547717, - "c4": 31.215699613561796, - "c5": 25.989059875386758, - "c6": 36.75065893462062, - "c7": 33.62875697239646 + "points": { + "c1": -4.677707384127473, + "c2": -14.173909286959336, + "c3": 19.515317073827674, + "c4": -42.345540088812164, + "c5": 11.883547790214656, + "c6": -13.119449038370554, + "c7": 25.4814898652359 }, - "vertexSeeds": { - "c1": 4.0705062591487495, - "c2": 4.418764773738409, - "c3": 4.699318036945993, - "c4": 3.8669454658177207, - "c5": 4.184329791808361, - "c6": 4.291753960124009, - "c7": 4.038572565230365 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773925, + "c3": 5.617198335644938, + "c4": 4.493758668515946, + "c5": 3.37031900138696, + "c6": 2.246879334257973, + "c7": 1.1234396671289866 }, "rgb": [77, 76, 132] }, @@ -230559,23 +230559,23 @@ "year": 1771, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -25.559922036338723, - "c2": 12.021478968036611, - "c3": 15.64968043275649, - "c4": -7.441800255647081, - "c5": 5.97317369101663, - "c6": 3.9063709007922327, - "c7": -12.242017553872712 + "points": { + "c1": -24.57234985931087, + "c2": -22.74833308512351, + "c3": -6.257711339304738, + "c4": -21.41940428471494, + "c5": -11.50406207367351, + "c6": 18.61729521788571, + "c7": -5.152002050709704 }, - "vertexSeeds": { - "c1": 4.396398658372876, - "c2": 4.578063127390807, - "c3": 4.274108710118158, - "c4": 4.5469136299598345, - "c5": 4.428754514461991, - "c6": 4.072922740520981, - "c7": 4.06181395600821 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -230586,23 +230586,23 @@ "year": 1772, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 37.0233770983395, - "c2": -37.821094327529565, - "c3": -38.7138454935096, - "c4": 24.887209073145293, - "c5": -28.70210604480358, - "c6": -27.4863393627403, - "c7": -40.2650649241397 + "points": { + "c1": -43.86381120515211, + "c2": -38.41905174852003, + "c3": -41.18808172497399, + "c4": 9.335466129126353, + "c5": -36.2166089318312, + "c6": 38.09251313303485, + "c7": -14.41136133663435 }, - "vertexSeeds": { - "c1": 5.638585840682364, - "c2": 5.556741133121118, - "c3": 5.616889398572584, - "c4": 5.485792677144857, - "c5": 5.843477815464919, - "c6": 5.729996637985138, - "c7": 5.703574078429035 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187252, + "c3": 7.004160887656029, + "c4": 5.603328710124835, + "c5": 4.202496532593612, + "c6": 2.8016643550624174, + "c7": 1.4008321775312227 }, "rgb": [238, 201, 159] }, @@ -230613,23 +230613,23 @@ "year": 1772, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -40.907155522663736, - "c2": -23.31342141387098, - "c3": 1.4740575043652697, - "c4": 37.57590894709855, - "c5": 18.46798069181051, - "c6": 20.803767053622266, - "c7": -1.4626680199651148 + "points": { + "c1": 38.591855786225786, + "c2": -29.703161730040783, + "c3": -20.130912397021312, + "c4": 13.398232483124076, + "c5": -42.06917590232388, + "c6": -21.519293489186694, + "c7": 22.744438875602448 }, - "vertexSeeds": { - "c1": 2.6731429720561692, - "c2": 3.574698154635758, - "c3": 2.808194213601041, - "c4": 3.6610201987863804, - "c5": 3.3669748631487875, - "c6": 3.1666798903785436, - "c7": 2.74385977024425 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.35367545076283, + "c3": 4.461396208969026, + "c4": 3.5691169671752183, + "c5": 2.676837725381413, + "c6": 1.7845584835876092, + "c7": 0.8922792417938046 }, "rgb": [238, 201, 159] }, @@ -230640,23 +230640,23 @@ "year": 1772, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -16.70236539503422, - "c2": 14.23933422465094, - "c3": -13.292080939033351, - "c4": -18.801580284820087, - "c5": 34.02606054302595, - "c6": -19.537776923035914, - "c7": 29.802166829525405 + "points": { + "c1": -14.821167246502576, + "c2": 1.5583185697509379, + "c3": -12.255796475134154, + "c4": 16.21786975118092, + "c5": 31.264188836985767, + "c6": -22.02977599999738, + "c7": 31.450852644938635 }, - "vertexSeeds": { - "c1": 10.986393959035453, - "c2": 10.996695968587659, - "c3": 11.068330366067363, - "c4": 11.013590875175758, - "c5": 10.891764681360497, - "c6": 11.070940952787735, - "c7": 10.942051812561328 + "offsets": { + "c1": 18.478964401294498, + "c2": 15.83911234396674, + "c3": 13.19926028663898, + "c4": 10.559408229311224, + "c5": 7.919556171983275, + "c6": 5.279704114655516, + "c7": 2.639852057327758 }, "rgb": [58, 15, 49] }, @@ -230667,23 +230667,23 @@ "year": 1772, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 9.949276997785791, - "c2": -20.790797330620833, - "c3": 21.85922511065358, - "c4": -6.584149418293379, - "c5": 16.87141795867277, - "c6": -12.025456305490007, - "c7": -9.446881989868828 + "points": { + "c1": -28.341974962102277, + "c2": -17.060096608939944, + "c3": -18.19506976948098, + "c4": -24.39639869469735, + "c5": 5.350808192505564, + "c6": -23.437391472776365, + "c7": -17.72057493975801 }, - "vertexSeeds": { - "c1": 4.299094850015153, - "c2": 4.070603400497693, - "c3": 3.860484923023767, - "c4": 4.33841756972322, - "c5": 4.258351062841016, - "c6": 4.0686133921457035, - "c7": 3.947006520272087 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -230694,23 +230694,23 @@ "year": 1772, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 5.742120528290258, - "c2": 4.11245908095276, - "c3": 5.447932401519147, - "c4": 26.74104596060001, - "c5": -4.7379146438017585, - "c6": -17.724103037635835, - "c7": -27.66406794298154 + "points": { + "c1": -15.956418042876171, + "c2": 9.585849988161705, + "c3": 2.273798212166227, + "c4": 28.493606028309813, + "c5": 0.2964943844323358, + "c6": 14.798177936792293, + "c7": 26.939912727414104 }, - "vertexSeeds": { - "c1": 8.031959337056827, - "c2": 8.229942588874183, - "c3": 8.079769730756055, - "c4": 8.570390083876354, - "c5": 7.795388119895453, - "c6": 8.603660043889004, - "c7": 7.876064363506075 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306516, + "c3": 11.09570041608876, + "c4": 8.876560332871007, + "c5": 6.657420249653263, + "c6": 4.438280166435509, + "c7": 2.2191400832177544 }, "rgb": [222, 0, 59] }, @@ -230721,23 +230721,23 @@ "year": 1772, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 27.772286373099803, - "c2": 29.94123456163146, - "c3": 45.45691144610582, - "c4": -45.96965781637813, - "c5": -30.149530184040504, - "c6": 25.40685511064558, - "c7": -9.249758902104332 + "points": { + "c1": 2.900640228952213, + "c2": 9.597738469850235, + "c3": 47.54132969415096, + "c4": -23.911908996641714, + "c5": -13.80055489413445, + "c6": -32.51333660800553, + "c7": -48.684039440494615 }, - "vertexSeeds": { - "c1": 3.3589758392626816, - "c2": 3.1952710376841558, - "c3": 2.997585262747255, - "c4": 3.1094388273040656, - "c5": 3.5086795526573216, - "c6": 3.1278908647982746, - "c7": 2.9465114957553222 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.253351826167362, + "c4": 3.4026814609338887, + "c5": 2.5520110957004154, + "c6": 1.7013407304669421, + "c7": 0.8506703652334735 }, "rgb": [58, 15, 49] }, @@ -230748,23 +230748,23 @@ "year": 1773, "resistanceReported": false, "duration": 48902400, - "curveSeeds": { - "c1": -27.320738782311096, - "c2": 11.900228602190637, - "c3": 59.25604980290588, - "c4": -33.901056899026635, - "c5": -7.961574159755649, - "c6": 4.423192701628153, - "c7": 38.64138570383281 + "points": { + "c1": 5.784702997780343, + "c2": 14.259196554607257, + "c3": -33.70593908420345, + "c4": -64.61079372598937, + "c5": -37.452401277191754, + "c6": 44.745675951436695, + "c7": -20.3775705445518 }, - "vertexSeeds": { - "c1": 2.3754326049786303, - "c2": 2.354362469177759, - "c3": 2.504265294552555, - "c4": 2.4591916856488387, - "c5": 2.5685412483352583, - "c6": 2.376508869541096, - "c7": 2.351613370172106 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.717059639389737, + "c3": 3.0975496994914486, + "c4": 2.4780397595931567, + "c5": 1.8585298196948685, + "c6": 1.2390198797965801, + "c7": 0.6195099398982885 }, "rgb": [86, 146, 138] }, @@ -230775,23 +230775,23 @@ "year": 1772, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -3.283153705778247, - "c2": -16.82951013942087, - "c3": -21.664802022287716, - "c4": 20.047850746436332, - "c5": 12.32935165961947, - "c6": 24.521732032734995, - "c7": 36.65225735031296 + "points": { + "c1": -30.98424107981845, + "c2": -17.756039449025245, + "c3": -30.217318109156274, + "c4": 35.26137375599719, + "c5": -27.19824205195153, + "c6": -5.404686902783567, + "c7": -14.407782301129501 }, - "vertexSeeds": { - "c1": 5.9707674037056195, - "c2": 6.193806222529882, - "c3": 6.1972687855852895, - "c4": 5.879103246755883, - "c5": 6.1781538126674524, - "c6": 5.959236610792981, - "c7": 5.703230647501176 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595005, + "c3": 7.813222376329178, + "c4": 6.25057790106334, + "c5": 4.687933425797502, + "c6": 3.1252889505316763, + "c7": 1.5626444752658382 }, "rgb": [58, 15, 49] }, @@ -230802,23 +230802,23 @@ "year": 1772, "resistanceReported": false, "duration": 44841600, - "curveSeeds": { - "c1": -1.0672089926342423, - "c2": -2.2326636473905594, - "c3": 12.944083465122972, - "c4": 15.80531733515808, - "c5": 50.75251317610177, - "c6": 11.264852350386604, - "c7": -55.61693633304722 + "points": { + "c1": -10.93408405709485, + "c2": -55.21506487672451, + "c3": -22.655569077262648, + "c4": 17.30755904356579, + "c5": -41.656782476458474, + "c6": 57.63601163581538, + "c7": 30.42037660294376 }, - "vertexSeeds": { - "c1": 6.286991523701076, - "c2": 5.819485062369697, - "c3": 6.57557547359248, - "c4": 5.833133336744907, - "c5": 6.235294011665575, - "c6": 6.000364654559724, - "c7": 6.236485612108982 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.57004160887656, + "c3": 7.9750346740637985, + "c4": 6.3800277392510365, + "c5": 4.7850208044382745, + "c6": 3.1900138696255134, + "c7": 1.5950069348127518 }, "rgb": [86, 146, 138] }, @@ -230829,23 +230829,23 @@ "year": 1772, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -17.16618694901411, - "c2": -0.83008813635211, - "c3": 27.126861166116157, - "c4": -15.677201306551655, - "c5": 0.5545840134021773, - "c6": -3.6602372863634223, - "c7": 25.06568278831704 + "points": { + "c1": 31.228575442854222, + "c2": 9.320495423167337, + "c3": -29.59668266990682, + "c4": -15.837045079283879, + "c5": -31.038438669795315, + "c6": -6.4608440461373, + "c7": 12.138456052141372 }, - "vertexSeeds": { - "c1": 4.247976839518036, - "c2": 4.415753722529489, - "c3": 4.5030423471062315, - "c4": 4.517998536728629, - "c5": 4.3839986153631925, - "c6": 4.56138928917459, - "c7": 4.448275129311002 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532597, + "c3": 5.478502080443827, + "c4": 4.382801664355065, + "c5": 3.2871012482662945, + "c6": 2.1914008321775325, + "c7": 1.0957004160887702 }, "rgb": [222, 0, 59] }, @@ -230856,23 +230856,23 @@ "year": 1772, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 28.406794175939353, - "c2": 19.8348289729442, - "c3": -15.388429825749913, - "c4": -20.080176996012057, - "c5": -21.39040204433526, - "c6": 4.833717996590828, - "c7": -0.9611697137153996 + "points": { + "c1": 20.248532868778632, + "c2": -4.035641897856156, + "c3": -21.311508114168184, + "c4": 14.212832718820579, + "c5": 14.689148895029746, + "c6": -8.881881142511592, + "c7": -12.26452156380821 }, - "vertexSeeds": { - "c1": 4.562551591621418, - "c2": 4.65664627138768, - "c3": 4.762658193989003, - "c4": 4.592809148513457, - "c5": 5.112432917902533, - "c6": 4.263968639232323, - "c7": 4.973876821607451 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -230883,23 +230883,23 @@ "year": 1772, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 12.352333288036359, - "c2": -20.05920619418506, - "c3": -4.738048771708176, - "c4": 25.392759919517193, - "c5": 10.792441681697557, - "c6": 27.6386998518047, - "c7": -1.6693252249524377 + "points": { + "c1": -12.92494168153852, + "c2": 27.439776491370036, + "c3": 0.40529375751156493, + "c4": 22.78769071859872, + "c5": -10.621208119804876, + "c6": -24.096543470880817, + "c7": -4.939017167055287 }, - "vertexSeeds": { - "c1": 7.107214237881888, - "c2": 7.857521576092753, - "c3": 8.230895201359115, - "c4": 7.137658392378796, - "c5": 7.250481376114508, - "c6": 8.129353139792025, - "c7": 7.214703395242197 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778086, + "c3": 10.217290799815071, + "c4": 8.173832639852057, + "c5": 6.130374479889043, + "c6": 4.086916319926028, + "c7": 2.043458159963014 }, "rgb": [86, 146, 138] }, @@ -230910,23 +230910,23 @@ "year": 1772, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 15.293636688728565, - "c2": 17.918216923555352, - "c3": -19.883584936633348, - "c4": -7.076048329090732, - "c5": 12.92623753728586, - "c6": 15.813799292482319, - "c7": -7.3113515324427425 + "points": { + "c1": 29.319705171178764, + "c2": -24.17621865517319, + "c3": 14.325115496722798, + "c4": -0.7429224123391975, + "c5": 14.231495025590736, + "c6": 4.9869404338876, + "c7": 20.373737622164835 }, - "vertexSeeds": { - "c1": 5.861952109119678, - "c2": 6.4387836981068105, - "c3": 5.868652450029197, - "c4": 6.099867606387271, - "c5": 6.462200402490697, - "c6": 6.133003093823072, - "c7": 5.6262106982747015 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -230937,23 +230937,23 @@ "year": 1772, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -13.380240577651339, - "c2": 2.887667604692979, - "c3": -5.288348593471156, - "c4": 3.727262507672755, - "c5": 17.10070034558042, - "c6": 33.77644464518663, - "c7": -33.59564020100504 + "points": { + "c1": -11.393601974769442, + "c2": 23.304107951507298, + "c3": -24.10758522816421, + "c4": 22.578591311055, + "c5": 13.398895175274639, + "c6": 6.82661609402102, + "c7": 15.005113513210766 }, - "vertexSeeds": { - "c1": 7.769894319492966, - "c2": 8.105604256736733, - "c3": 8.577813409496425, - "c4": 8.928020053778244, - "c5": 8.112397400030657, - "c6": 8.859818704196812, - "c7": 7.961087599041368 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984746, + "c3": 10.910772075820626, + "c4": 8.728617660656493, + "c5": 6.546463245492373, + "c6": 4.364308830328253, + "c7": 2.1821544151641206 }, "rgb": [238, 201, 159] }, @@ -230964,23 +230964,23 @@ "year": 1772, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 14.425086786627915, - "c2": -41.523318402465, - "c3": 18.450418313238323, - "c4": -22.46363019187562, - "c5": -14.055433435770041, - "c6": -8.09898828149052, - "c7": 31.855195248828714 + "points": { + "c1": 11.274771126313908, + "c2": 11.197901957509117, + "c3": 43.74005227102705, + "c4": 18.99575216387904, + "c5": -14.522590173115116, + "c6": 26.352629425170996, + "c7": -40.382238887059486 }, - "vertexSeeds": { - "c1": 4.137925514061125, - "c2": 4.248183909807492, - "c3": 4.730158325935666, - "c4": 4.196228644970739, - "c5": 4.414286307177294, - "c6": 4.1570424182202474, - "c7": 4.524472362767989 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [58, 15, 49] }, @@ -230991,23 +230991,23 @@ "year": 1772, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 25.560472663672236, - "c2": -3.6156289899272203, - "c3": -23.07413482457514, - "c4": 23.098646647829902, - "c5": -9.93574745261473, - "c6": -21.16683571955723, - "c7": -31.502258455259142 + "points": { + "c1": 7.095000912489326, + "c2": -4.081277672668584, + "c3": 23.14207197608571, + "c4": -7.540972499824239, + "c5": 2.963884054700479, + "c6": 2.309583514226617, + "c7": 7.666392304123491 }, - "vertexSeeds": { - "c1": 1.1260588900275152, - "c2": 1.1372248279978547, - "c3": 1.2511349112523351, - "c4": 1.1230229177587432, - "c5": 1.1532349304226437, - "c6": 1.1895605474348814, - "c7": 1.2006997567822864 + "offsets": { + "c1": 2.1359223300970873, + "c2": 1.8307905686546468, + "c3": 1.5256588072122044, + "c4": 1.220527045769764, + "c5": 0.9153952843273234, + "c6": 0.6102635228848828, + "c7": 0.3051317614424405 }, "rgb": [86, 146, 138] }, @@ -231018,23 +231018,23 @@ "year": 1772, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -17.138362519462937, - "c2": -4.07253071865717, - "c3": 25.754445879565356, - "c4": -23.817453042169298, - "c5": -10.948672578317442, - "c6": 10.734785500042765, - "c7": 26.810808077524587 + "points": { + "c1": 0.8841683585767655, + "c2": 0.7027028887111015, + "c3": 29.126731519985686, + "c4": -18.643301636874305, + "c5": 14.995275380966131, + "c6": -11.941340082486054, + "c7": 1.6525034340071123 }, - "vertexSeeds": { - "c1": 4.174303973444546, - "c2": 4.204290969216957, - "c3": 4.194542728731024, - "c4": 4.124163056627256, - "c5": 4.791671406643093, - "c6": 4.825740921623053, - "c7": 4.566992808896501 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -231045,23 +231045,23 @@ "year": 1772, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 22.339030041598484, - "c2": -30.648575590164782, - "c3": -31.28499626849025, - "c4": -25.32558406691627, - "c5": 18.093730542218303, - "c6": 17.829575065285802, - "c7": 10.067688448740824 + "points": { + "c1": 34.96526732775449, + "c2": -3.4200641402040546, + "c3": 24.043571517553232, + "c4": -28.751650909547436, + "c5": -2.26117571050456, + "c6": -6.350007148334438, + "c7": 18.014130715993936 }, - "vertexSeeds": { - "c1": 3.3400660962878668, - "c2": 3.8224162257286762, - "c3": 3.7811095665972783, - "c4": 2.990867191463578, - "c5": 2.7387064576297835, - "c6": 2.610232584044096, - "c7": 2.6784640340307377 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466, + "c3": 4.854368932038834, + "c4": 3.8834951456310685, + "c5": 2.9126213592233, + "c6": 1.9417475728155318, + "c7": 0.9708737864077659 }, "rgb": [86, 146, 138] }, @@ -231072,23 +231072,23 @@ "year": 1772, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -2.080657149635485, - "c2": -2.1040835968372065, - "c3": -22.64257519426654, - "c4": -29.049564707877728, - "c5": -22.846656577646417, - "c6": -31.037399834983702, - "c7": 22.773334651329044 + "points": { + "c1": 14.68373287104226, + "c2": 17.765318530219922, + "c3": 37.294713734402485, + "c4": 34.3007737072521, + "c5": 47.2399534822164, + "c6": -34.27276075040201, + "c7": -9.83291421632498 }, - "vertexSeeds": { - "c1": 6.052551767264964, - "c2": 6.042849160616496, - "c3": 6.064087613551, - "c4": 6.062577103070907, - "c5": 6.072378822404246, - "c6": 6.070827367031297, - "c7": 6.0590032798346085 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669848, + "c3": 7.281553398058335, + "c4": 5.8252427184466296, + "c5": 4.368932038834924, + "c6": 2.912621359223218, + "c7": 1.4563106796117056 }, "rgb": [222, 0, 59] }, @@ -231099,23 +231099,23 @@ "year": 1772, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -21.413119327845138, - "c2": -19.873054532141413, - "c3": 7.141756514776624, - "c4": 31.257659205600135, - "c5": 36.530452927344925, - "c6": -22.680653769222292, - "c7": -15.806167170850198 + "points": { + "c1": -12.868554421300423, + "c2": -34.74377744937716, + "c3": -31.03036124451902, + "c4": 26.20693292665348, + "c5": -24.735450121388244, + "c6": 19.485862138367672, + "c7": 5.970531004213761 }, - "vertexSeeds": { - "c1": 8.813148981530285, - "c2": 8.448593921768541, - "c3": 8.920960185989356, - "c4": 9.225263621877914, - "c5": 8.271296748869363, - "c6": 9.076323119453543, - "c7": 8.983143207836486 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.73092926490985, + "c3": 11.442441054091546, + "c4": 9.153952843273226, + "c5": 6.865464632454919, + "c6": 4.576976421636613, + "c7": 2.2884882108183064 }, "rgb": [238, 201, 159] }, @@ -231126,23 +231126,23 @@ "year": 1772, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -38.398936882802914, - "c2": 27.119101434576656, - "c3": -23.1409737978839, - "c4": 4.080793262808669, - "c5": 35.01854118289959, - "c6": 5.741253140679753, - "c7": 43.4560140047251 + "points": { + "c1": 14.063207743717783, + "c2": 40.315413339223504, + "c3": 6.415201667748036, + "c4": 36.01864358266241, + "c5": -27.047501981798746, + "c6": -33.28215283463847, + "c7": -28.463482033934273 }, - "vertexSeeds": { - "c1": 3.1255731771717006, - "c2": 2.85110628939172, - "c3": 3.1070366300951546, - "c4": 3.084897604216982, - "c5": 2.8655638519097364, - "c6": 2.9708230285679393, - "c7": 2.854068613226313 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515952, + "c3": 3.7447988904299616, + "c4": 2.9958391123439716, + "c5": 2.246879334257971, + "c6": 1.4979195561719807, + "c7": 0.7489597780859903 }, "rgb": [86, 146, 138] }, @@ -231153,23 +231153,23 @@ "year": 1772, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -4.049350461865483, - "c2": -32.201160324686704, - "c3": -18.508345276108972, - "c4": -7.0985932529069125, - "c5": -14.924576668402576, - "c6": 23.447535830809315, - "c7": 19.881495798577483 + "points": { + "c1": -14.2121882684145, + "c2": -32.2988140655179, + "c3": 15.114214261225051, + "c4": 35.14674065999468, + "c5": 7.748196587858736, + "c6": 25.10289283134056, + "c7": 8.857629957103242 }, - "vertexSeeds": { - "c1": 4.489624660193373, - "c2": 4.7079762917217725, - "c3": 4.321158417111141, - "c4": 4.6266939720644835, - "c5": 4.695880481891641, - "c6": 4.791166095621794, - "c7": 4.636387623903348 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -231180,23 +231180,23 @@ "year": 1772, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -15.398194886313537, - "c2": 34.71927355017608, - "c3": 33.73111554596421, - "c4": 17.05928097748965, - "c5": 33.66661619297799, - "c6": 35.39120998981421, - "c7": -3.581096065366914 + "points": { + "c1": 12.73934958275435, + "c2": -38.6584601303016, + "c3": -14.38707729074278, + "c4": -24.04105994574185, + "c5": 25.998558240755308, + "c6": -36.93893810926231, + "c7": 12.685919445789118 }, - "vertexSeeds": { - "c1": 9.40332146215689, - "c2": 9.371889257547274, - "c3": 9.350950435475376, - "c4": 9.330934216306401, - "c5": 9.35808090337261, - "c6": 9.332176441321325, - "c7": 9.362869116120095 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507603, + "c3": 11.211280628756306, + "c4": 8.969024503005008, + "c5": 6.726768377253712, + "c6": 4.484512251502415, + "c7": 2.2422561257512967 }, "rgb": [77, 76, 132] }, @@ -231207,23 +231207,23 @@ "year": 1772, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 32.5137202196662, - "c2": -27.556831351433836, - "c3": 36.12212727643963, - "c4": -31.355860070751536, - "c5": 5.03966229895137, - "c6": -6.792556021711924, - "c7": -16.99791914130603 + "points": { + "c1": -3.8952749027064897, + "c2": 15.327439064236955, + "c3": 13.069893356139936, + "c4": -9.995088551318311, + "c5": -19.760293219178983, + "c6": 25.79461332178346, + "c7": 26.591574654323935 }, - "vertexSeeds": { - "c1": 4.07718811294837, - "c2": 4.506843142106382, - "c3": 4.706429001589444, - "c4": 4.699121282965625, - "c5": 4.303353855487577, - "c6": 4.453957943704238, - "c7": 4.461478858699013 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -231234,23 +231234,23 @@ "year": 1772, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -5.633658864225048, - "c2": -18.07937897726125, - "c3": 17.365001655725614, - "c4": -16.840742669754654, - "c5": -21.91217357814079, - "c6": -18.910688634232265, - "c7": 22.16683093931242 + "points": { + "c1": -10.301228085213953, + "c2": 3.3851030403491507, + "c3": 0.6056362341488253, + "c4": 31.39510810062778, + "c5": 1.337699469899114, + "c6": 33.19539942208374, + "c7": 25.134864983118582 }, - "vertexSeeds": { - "c1": 5.451444397471054, - "c2": 6.130732849398518, - "c3": 6.019197159704848, - "c4": 6.133931304060261, - "c5": 5.739919838074879, - "c6": 5.794799329485742, - "c7": 5.459093536764524 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [77, 76, 132] }, @@ -231261,23 +231261,23 @@ "year": 1772, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -19.277590896003865, - "c2": -2.3117978814077524, - "c3": 23.977058436557567, - "c4": 18.901309777577406, - "c5": 0.37448859357543185, - "c6": -22.280036070484382, - "c7": -22.767391426744204 + "points": { + "c1": -27.95178140684388, + "c2": 21.572880573281065, + "c3": 25.460608075343035, + "c4": 4.17906280061629, + "c5": -3.40067774058949, + "c6": 12.93115729442069, + "c7": 6.731661827485045 }, - "vertexSeeds": { - "c1": 3.8428128641188635, - "c2": 4.291251980744683, - "c3": 4.340436505555597, - "c4": 4.175192436674956, - "c5": 3.814648199494944, - "c6": 3.916888504587499, - "c7": 4.326343830800915 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -231288,23 +231288,23 @@ "year": 1772, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -19.992566763790357, - "c2": -7.2199885823266605, - "c3": 17.715970784193466, - "c4": -7.690043976318762, - "c5": -1.9624382425050229, - "c6": 5.105528350095881, - "c7": 1.483813981644765 + "points": { + "c1": -12.848138414894898, + "c2": 32.19618611182229, + "c3": -10.564164973583047, + "c4": 32.74125088022539, + "c5": 8.907951001037837, + "c6": -6.432846836868951, + "c7": -3.757460835371745 }, - "vertexSeeds": { - "c1": 4.935120269159024, - "c2": 4.682644708563813, - "c3": 4.904596143706646, - "c4": 4.907258555827575, - "c5": 4.910329408863723, - "c6": 4.851092511109101, - "c7": 4.939419299607862 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337038, + "c3": 5.940822931114191, + "c4": 4.752658344891358, + "c5": 3.5644937586685117, + "c6": 2.376329172445679, + "c7": 1.1881645862228325 }, "rgb": [58, 15, 49] }, @@ -231315,23 +231315,23 @@ "year": 1772, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 23.508525709952778, - "c2": -25.256883099714088, - "c3": -26.60162595360019, - "c4": 18.59642906701213, - "c5": -16.723132839551333, - "c6": 26.68684342554993, - "c7": 20.881381558785684 + "points": { + "c1": -33.37807216618723, + "c2": 15.305972125082569, + "c3": 33.78661597129907, + "c4": 32.3396820377542, + "c5": 32.499427073358945, + "c6": -8.613236651930904, + "c7": -0.2615748429358362 }, - "vertexSeeds": { - "c1": 9.480175408700571, - "c2": 9.476486505479466, - "c3": 8.740596252429084, - "c4": 9.096684690376915, - "c5": 8.85268715092491, - "c6": 8.896874096276536, - "c7": 9.524131137353836 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909843, + "c3": 11.442441054091551, + "c4": 9.153952843273236, + "c5": 6.865464632454922, + "c6": 4.576976421636628, + "c7": 2.288488210818314 }, "rgb": [58, 15, 49] }, @@ -231342,23 +231342,23 @@ "year": 1772, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -28.657579751258226, - "c2": -36.083961072116104, - "c3": 3.4862304442546446, - "c4": 29.519233973695037, - "c5": -3.371518490517232, - "c6": -8.423475074137073, - "c7": -15.774552474271474 + "points": { + "c1": 21.17237854803183, + "c2": 1.463005623442804, + "c3": -21.855060989844844, + "c4": -16.143309463568496, + "c5": -7.116864148072494, + "c6": 36.43159204404313, + "c7": 20.558108256324132 }, - "vertexSeeds": { - "c1": 11.922447883930928, - "c2": 11.770675439767972, - "c3": 11.600449207745319, - "c4": 11.701709682725818, - "c5": 11.616405251399849, - "c6": 11.84721577457577, - "c7": 11.961894629608105 + "offsets": { + "c1": 20.161812297734627, + "c2": 17.28155339805829, + "c3": 14.401294498381864, + "c4": 11.521035598705527, + "c5": 8.6407766990291, + "c6": 5.760517799352764, + "c7": 2.880258899676338 }, "rgb": [58, 15, 49] }, @@ -231369,23 +231369,23 @@ "year": 1772, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 31.017263417857606, - "c2": -44.95718749329549, - "c3": 4.040270084905359, - "c4": 13.095383815472047, - "c5": -39.683687479512336, - "c6": 9.8247311533339, - "c7": 32.83185225868543 + "points": { + "c1": 42.4246009959849, + "c2": 30.905345622974764, + "c3": 43.367269586080354, + "c4": -2.570961821431048, + "c5": -38.935428614140434, + "c6": -46.15017234124925, + "c7": 24.28752659619154 }, - "vertexSeeds": { - "c1": 1.3319318535986457, - "c2": 1.3571881779482742, - "c3": 1.3910848905106756, - "c4": 1.383440389032265, - "c5": 1.330200144183495, - "c6": 1.3385421025983233, - "c7": 1.3654957735537885 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361997, + "c3": 1.6874711049468332, + "c4": 1.3499768839574664, + "c5": 1.0124826629680999, + "c6": 0.6749884419787332, + "c7": 0.3374942209893666 }, "rgb": [86, 146, 138] }, @@ -231396,23 +231396,23 @@ "year": 1772, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 18.64387137825802, - "c2": 28.511857076090173, - "c3": 6.678511743952306, - "c4": 31.17237609857559, - "c5": -33.48636395299751, - "c6": 19.710607948458957, - "c7": -16.338030485668806 + "points": { + "c1": 11.313826731646394, + "c2": -2.552954250467849, + "c3": -1.3101003276963468, + "c4": -17.521987732481847, + "c5": 29.665772856564764, + "c6": 20.449888514352885, + "c7": 23.50016806929174 }, - "vertexSeeds": { - "c1": 8.561710270774348, - "c2": 8.748781639600354, - "c3": 8.593464650871699, - "c4": 8.524634762987576, - "c5": 8.275942314337371, - "c6": 9.016068934936145, - "c7": 9.416476689098415 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.925104022191404, + "c3": 11.604253351826172, + "c4": 9.28340268146094, + "c5": 6.962552011095697, + "c6": 4.641701340730465, + "c7": 2.3208506703652323 }, "rgb": [238, 201, 159] }, @@ -231423,23 +231423,23 @@ "year": 1772, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 24.894114336492635, - "c2": -7.43203635796484, - "c3": 33.232548789603484, - "c4": -21.33947079382973, - "c5": -14.548140961380902, - "c6": -3.5099415435916725, - "c7": 30.2508846797587 + "points": { + "c1": 30.685388366865993, + "c2": -11.391246316806999, + "c3": 1.9170170821870514, + "c4": 44.28667112345039, + "c5": 21.019034568801615, + "c6": 49.913242987846345, + "c7": 43.750592149046085 }, - "vertexSeeds": { - "c1": 4.603232264007756, - "c2": 5.194253975984884, - "c3": 5.3564290630729445, - "c4": 4.861072346628052, - "c5": 5.1390704504329054, - "c6": 5.130238020793308, - "c7": 4.450404472475853 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342584, + "c3": 6.518723994452148, + "c4": 5.214979195561722, + "c5": 3.911234396671287, + "c6": 2.607489597780861, + "c7": 1.3037447988904256 }, "rgb": [86, 146, 138] }, @@ -231450,23 +231450,23 @@ "year": 1772, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 12.422320577988874, - "c2": -27.07629102733, - "c3": 21.78788592807999, - "c4": 1.3913694979682951, - "c5": 8.744904870188268, - "c6": -19.327415694928288, - "c7": -23.31676771229578 + "points": { + "c1": 2.891311931936489, + "c2": -14.576594579250642, + "c3": 25.21381177767486, + "c4": -23.593600766305425, + "c5": -7.299301610294659, + "c6": 3.2188047234959605, + "c7": -15.038474005904494 }, - "vertexSeeds": { - "c1": 5.437363236995054, - "c2": 5.2648515021179545, - "c3": 5.207267893060121, - "c4": 5.36359187260888, - "c5": 5.323161108652807, - "c6": 5.138173481336783, - "c7": 5.356276099009633 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342588, + "c3": 6.5187239944521655, + "c4": 5.214979195561715, + "c5": 3.911234396671294, + "c6": 2.607489597780872, + "c7": 1.3037447988904216 }, "rgb": [238, 201, 159] }, @@ -231477,23 +231477,23 @@ "year": 1772, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -25.27719572322432, - "c2": -17.857252963759905, - "c3": 24.553024093462874, - "c4": 34.45869583435478, - "c5": 28.193044343119304, - "c6": -2.3608279463914528, - "c7": 16.902924632357454 + "points": { + "c1": 8.7353142210873, + "c2": 10.240229149021168, + "c3": 18.201584771597844, + "c4": 18.59904225044206, + "c5": 2.0791551947473224, + "c6": -38.91838134089205, + "c7": 17.347922192723395 }, - "vertexSeeds": { - "c1": 6.680500962890533, - "c2": 6.941230054618434, - "c3": 6.7391905236993335, - "c4": 6.7471043321627056, - "c5": 6.71846855059847, - "c6": 6.592006146931238, - "c7": 6.9259055196054184 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334714, + "c4": 6.8053629218677685, + "c5": 5.104022191400821, + "c6": 3.402681460933894, + "c7": 1.701340730466947 }, "rgb": [86, 146, 138] }, @@ -231504,23 +231504,23 @@ "year": 1772, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 2.019107324946969, - "c2": -8.759928571844238, - "c3": 3.804062728486418, - "c4": -5.931591108812601, - "c5": -24.474026486444256, - "c6": 11.396474627002263, - "c7": -24.24093753138038 + "points": { + "c1": 22.958117545634096, + "c2": -19.17669950804642, + "c3": 9.894194734031572, + "c4": 22.97577243671902, + "c5": 20.922233836524192, + "c6": 1.1806961202213806, + "c7": -1.6326585765140393 }, - "vertexSeeds": { - "c1": 4.945376917870445, - "c2": 5.53766339885262, - "c3": 5.42882068217278, - "c4": 5.565820266500788, - "c5": 5.603846716283664, - "c6": 5.561157400344247, - "c7": 5.098010444305599 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468795, + "c3": 7.165973185390666, + "c4": 5.732778548312526, + "c5": 4.299583911234396, + "c6": 2.8663892741562655, + "c7": 1.4331946370781352 }, "rgb": [77, 76, 132] }, @@ -231531,23 +231531,23 @@ "year": 1771, "resistanceReported": true, "duration": 13996800, - "curveSeeds": { - "c1": 0.18459969574339397, - "c2": -23.19829460112976, - "c3": 0.5734332597554115, - "c4": 5.782211096080609, - "c5": 18.63387685764232, - "c6": 20.5675899404904, - "c7": 20.532429760308027 + "points": { + "c1": 5.529257071142062, + "c2": 19.736220572733487, + "c3": -21.49650395017609, + "c4": 12.216615416505718, + "c5": -14.07389048105322, + "c6": 6.033994561447116, + "c7": 0.16658866866049493 }, - "vertexSeeds": { - "c1": 1.2086244627005662, - "c2": 1.3244351189966872, - "c3": 1.3174772394803234, - "c4": 1.3324080061598351, - "c5": 1.2943883221290151, - "c6": 1.3025098664114105, - "c7": 1.2696717847380254 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.941747572815534, + "c3": 1.6181229773462784, + "c4": 1.2944983818770226, + "c5": 0.970873786407767, + "c6": 0.6472491909385113, + "c7": 0.32362459546925565 }, "rgb": [58, 15, 49] }, @@ -231558,23 +231558,23 @@ "year": 1772, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 12.232099612454576, - "c2": -36.01061991730247, - "c3": -2.4957984349166793, - "c4": 0.8105308980871797, - "c5": 9.4874404490916, - "c6": 36.29459495675693, - "c7": 41.03717383702013 + "points": { + "c1": 37.84350289507669, + "c2": -22.466219293724343, + "c3": -16.927676450278724, + "c4": -7.92801204507181, + "c5": -3.4866834123424155, + "c6": 22.870591437240442, + "c7": -5.347186243415933 }, - "vertexSeeds": { - "c1": 5.535650436339241, - "c2": 4.375850116658193, - "c3": 5.008215263053045, - "c4": 4.531695394170455, - "c5": 4.901471616674948, - "c6": 4.2765275241826375, - "c7": 4.679948072592869 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986134, + "c3": 6.888580674988442, + "c4": 5.5108645399907505, + "c5": 4.133148404993065, + "c6": 2.7554322699953766, + "c7": 1.3777161349976883 }, "rgb": [238, 201, 159] }, @@ -231585,23 +231585,23 @@ "year": 1772, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -21.844047181582006, - "c2": 7.113861932761381, - "c3": 14.10443028270447, - "c4": -19.36990700191216, - "c5": 20.35199184724471, - "c6": 8.220396416708702, - "c7": 0.8362574203205249 + "points": { + "c1": -20.268455255730146, + "c2": 0.34319105337077005, + "c3": 6.062673116304268, + "c4": -21.074607550514635, + "c5": 5.170384006505913, + "c6": -5.3485368065522465, + "c7": 20.072010126844127 }, - "vertexSeeds": { - "c1": 5.559317317915626, - "c2": 5.94419081357683, - "c3": 5.67136230626101, - "c4": 6.3995579167364465, - "c5": 5.590950223958485, - "c6": 6.265421633421823, - "c7": 6.80065980264349 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -231612,23 +231612,23 @@ "year": 1773, "resistanceReported": false, "duration": 46137600, - "curveSeeds": { - "c1": -7.059654062666894, - "c2": 7.1022800336913505, - "c3": 55.89239460897168, - "c4": 52.53540447470676, - "c5": 5.58439397084603, - "c6": -46.66444294961481, - "c7": -60.132742057043245 + "points": { + "c1": 46.41245958872147, + "c2": -49.60268370539112, + "c3": 24.263235182831387, + "c4": -18.293702235717014, + "c5": -45.323946564691816, + "c6": -26.6485337000056, + "c7": -23.606449462375373 }, - "vertexSeeds": { - "c1": 6.0292002587994595, - "c2": 6.096440031433607, - "c3": 6.2081719917723905, - "c4": 6.221894205343044, - "c5": 6.101276448165843, - "c6": 6.065196203302883, - "c7": 6.015481427658126 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [58, 15, 49] }, @@ -231639,23 +231639,23 @@ "year": 1772, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 33.35384696025171, - "c2": 38.03533761478459, - "c3": -17.883207227432425, - "c4": 42.72667928610418, - "c5": 46.84724667165214, - "c6": 27.887672791063302, - "c7": -13.852285440657404 + "points": { + "c1": 14.091637477367293, + "c2": -33.50382889525615, + "c3": -39.34259240759074, + "c4": -2.150756530864527, + "c5": 6.423876849408963, + "c6": 8.934107251684807, + "c7": 44.1303890288004 }, - "vertexSeeds": { - "c1": 6.066130690256154, - "c2": 6.079065459312532, - "c3": 6.02913339172984, - "c4": 6.41137487272016, - "c5": 6.635244255514049, - "c6": 6.711331421092229, - "c7": 6.3918242952066615 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [58, 15, 49] }, @@ -231666,23 +231666,23 @@ "year": 1772, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 4.494103351305888, - "c2": 15.484550050270723, - "c3": -10.203306376708902, - "c4": -17.32088545594462, - "c5": 18.448154274342787, - "c6": -22.71288058915351, - "c7": 17.291326087963906 + "points": { + "c1": 7.2847394926203854, + "c2": -25.936962312592346, + "c3": 25.845797329245986, + "c4": -12.929599707615518, + "c5": -23.987781886347605, + "c6": 1.2438661475275588, + "c7": 12.052509117445116 }, - "vertexSeeds": { - "c1": 1.363214307113147, - "c2": 1.4725060252881055, - "c3": 1.4893532878917513, - "c4": 1.2930782599949708, - "c5": 1.5245790487792745, - "c6": 1.2673209105163161, - "c7": 1.401161346661232 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.274618585298197, + "c3": 1.8955154877484974, + "c4": 1.5164123901987978, + "c5": 1.1373092926490984, + "c6": 0.7582061950993989, + "c7": 0.37910309754969945 }, "rgb": [222, 0, 59] }, @@ -231693,23 +231693,23 @@ "year": 1772, "resistanceReported": false, "duration": 44841600, - "curveSeeds": { - "c1": 26.998369663411452, - "c2": 54.58277315717625, - "c3": 14.301199769742453, - "c4": -29.082376849576214, - "c5": -54.77495218158007, - "c6": 13.421819767292263, - "c7": -3.210781125687163 + "points": { + "c1": -2.0169579478370423, + "c2": -48.98214296890165, + "c3": -22.635368807171623, + "c4": 51.30832179671842, + "c5": 27.010496577589308, + "c6": 40.62134569313899, + "c7": 58.04219475634581 }, - "vertexSeeds": { - "c1": 6.114482259126216, - "c2": 5.8957800019875055, - "c3": 5.924220432662832, - "c4": 5.818202678927779, - "c5": 5.802576871088299, - "c6": 6.145427952742095, - "c7": 5.826341678923767 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830781, + "c3": 7.374017568192327, + "c4": 5.899214054553854, + "c5": 4.424410540915401, + "c6": 2.949607027276927, + "c7": 1.4748035136384738 }, "rgb": [238, 201, 159] }, @@ -231720,23 +231720,23 @@ "year": 1772, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -9.28728144110353, - "c2": 30.48047450951384, - "c3": 12.89866642104547, - "c4": 22.051933543399286, - "c5": -24.58024656253439, - "c6": 1.6684378007144645, - "c7": 10.567140102864606 + "points": { + "c1": 24.089573937958036, + "c2": 27.780792795585583, + "c3": -34.3021812866728, + "c4": -22.02388549535113, + "c5": -12.919305890809962, + "c6": 22.79048843245711, + "c7": 18.01714905351068 }, - "vertexSeeds": { - "c1": 8.977057795968928, - "c2": 9.168109480597632, - "c3": 8.232311488722827, - "c4": 9.098882859599176, - "c5": 9.190611575121181, - "c6": 9.257298315799734, - "c7": 9.152964585124867 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.25936199722608, + "c3": 11.049468331021727, + "c4": 8.839574664817386, + "c5": 6.6296809986130345, + "c6": 4.419787332408693, + "c7": 2.209893666204341 }, "rgb": [58, 15, 49] }, @@ -231747,23 +231747,23 @@ "year": 1772, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -6.525496954449103, - "c2": -12.065082489292422, - "c3": 4.741285038579591, - "c4": 13.951630208796999, - "c5": 10.832066217577307, - "c6": 5.8402483825548295, - "c7": 12.460463934952323 + "points": { + "c1": -4.921213369656623, + "c2": -3.612604907498735, + "c3": -21.533047523514732, + "c4": -12.522435554700193, + "c5": 26.450694856886123, + "c6": -5.641203245104212, + "c7": 25.071272536858203 }, - "vertexSeeds": { - "c1": 5.663519986757333, - "c2": 6.671809629986025, - "c3": 5.806319512470439, - "c4": 5.606332374691822, - "c5": 6.511968431192135, - "c6": 6.781727375510126, - "c7": 5.589558263064491 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -231774,23 +231774,23 @@ "year": 1772, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 8.431527880600992, - "c2": -10.19288274641254, - "c3": -23.74823347776071, - "c4": -10.398915780702165, - "c5": 21.26916515229318, - "c6": 14.995198982780469, - "c7": -4.977037113805604 + "points": { + "c1": 23.185877068660442, + "c2": 19.061767833610556, + "c3": 18.463254619803156, + "c4": -13.110845463341349, + "c5": -8.915412213356877, + "c6": -13.214546994363745, + "c7": 21.52092562204891 }, - "vertexSeeds": { - "c1": 7.252300414895197, - "c2": 7.014284352858321, - "c3": 6.432516540636482, - "c4": 6.818879487875899, - "c5": 7.094232444672934, - "c6": 6.561128498533699, - "c7": 6.83993277337549 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284323, + "c3": 8.784096162736942, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947745, + "c7": 1.7568192325473924 }, "rgb": [86, 146, 138] }, @@ -231801,23 +231801,23 @@ "year": 1772, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -3.6152160455216915, - "c2": 25.878200921412102, - "c3": 33.71409439920482, - "c4": -30.03034094198621, - "c5": 26.010478921260187, - "c6": -32.85601669135766, - "c7": 20.30609163956366 + "points": { + "c1": -24.711026728592152, + "c2": -22.025091505157324, + "c3": 28.052746666647515, + "c4": -35.25480074058525, + "c5": -7.067758122285277, + "c6": -21.989774667995516, + "c7": 21.686810657306268 }, - "vertexSeeds": { - "c1": 7.0457594554771115, - "c2": 7.422214774444454, - "c3": 7.422315779324972, - "c4": 6.856325530212381, - "c5": 7.042577358794933, - "c6": 7.226553491992033, - "c7": 7.2177614897129 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -231828,23 +231828,23 @@ "year": 1772, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 25.668271890729102, - "c2": 27.813138368067136, - "c3": -33.236530759821676, - "c4": 17.84249225650396, - "c5": 28.905067592963967, - "c6": -19.115932710297216, - "c7": 7.113381845452011 + "points": { + "c1": -4.530066218888027, + "c2": 12.418189311874613, + "c3": 23.232701255044255, + "c4": -6.5074418198449635, + "c5": 9.318281691516262, + "c6": -19.15056470047051, + "c7": -13.546558112985085 }, - "vertexSeeds": { - "c1": 4.144543513793914, - "c2": 4.087226319068468, - "c3": 4.5901081128825245, - "c4": 4.045137175658303, - "c5": 4.083386200856485, - "c6": 4.226368520077132, - "c7": 4.214021280037516 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -231855,23 +231855,23 @@ "year": 1772, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 22.172565949993256, - "c2": 21.241778748211345, - "c3": 7.991772203645574, - "c4": 5.2012582863763015, - "c5": 7.220216910553454, - "c6": 19.608760694042275, - "c7": 18.0954155435536 + "points": { + "c1": -22.186782848302418, + "c2": -34.72399929794831, + "c3": 4.133703825844535, + "c4": 9.001157230337121, + "c5": -37.62948707271957, + "c6": -1.335028193982538, + "c7": 24.806943871165522 }, - "vertexSeeds": { - "c1": 9.360079062044223, - "c2": 9.904376350025974, - "c3": 9.886159144523353, - "c4": 10.019030637478764, - "c5": 9.375733248331308, - "c6": 9.853255428291448, - "c7": 10.659106979717395 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.284327323162278, + "c3": 12.73693943596857, + "c4": 10.18955154877485, + "c5": 7.642163661581139, + "c6": 5.0947757743874185, + "c7": 2.5473878871937092 }, "rgb": [86, 146, 138] }, @@ -231882,23 +231882,23 @@ "year": 1772, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 13.108611803780683, - "c2": 4.57666071801923, - "c3": -5.000324483785665, - "c4": -12.961984418387557, - "c5": -19.92656416435841, - "c6": 21.022125372290205, - "c7": -7.622725708678143 + "points": { + "c1": -1.448097710973414, + "c2": 1.2077056584387762, + "c3": 1.4050341363104337, + "c4": 19.477857315725018, + "c5": 1.9408791366205556, + "c6": 15.62045445738908, + "c7": -5.264560793060767 }, - "vertexSeeds": { - "c1": 3.283288547905451, - "c2": 2.937525418142349, - "c3": 3.210484591480162, - "c4": 2.9906250188935664, - "c5": 3.281156081892253, - "c6": 3.273232267316028, - "c7": 2.9181677654525653 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -231909,23 +231909,23 @@ "year": 1772, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 13.40587674921548, - "c2": 20.14444645739593, - "c3": -29.99038924968628, - "c4": 26.27786604781081, - "c5": 16.065162911110306, - "c6": -18.77695188042699, - "c7": 0.3827571544585666 + "points": { + "c1": -17.681264308610753, + "c2": -9.923768807145475, + "c3": 27.188547843793145, + "c4": 17.890672464712026, + "c5": 17.585241212813386, + "c6": -35.0790591720144, + "c7": -33.60496957345603 }, - "vertexSeeds": { - "c1": 2.4955348483258004, - "c2": 2.586938110458731, - "c3": 2.5219026299683605, - "c4": 2.3950109363723073, - "c5": 2.3196500991525975, - "c6": 2.362809998058512, - "c7": 2.418139497323799 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712895, + "c3": 3.259361997226075, + "c4": 2.6074895977808596, + "c5": 1.9556171983356447, + "c6": 1.3037447988904298, + "c7": 0.6518723994452149 }, "rgb": [58, 15, 49] }, @@ -231936,23 +231936,23 @@ "year": 1772, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 2.65759602941003, - "c2": -12.874689717024852, - "c3": 22.022710490643718, - "c4": 13.978706328401444, - "c5": 14.674078869505031, - "c6": 23.1754440352627, - "c7": 11.528168410343838 + "points": { + "c1": 11.176695365770343, + "c2": -18.513448253029136, + "c3": -10.078795573524008, + "c4": -24.890174649220665, + "c5": 14.94905592621825, + "c6": 16.8568535721038, + "c7": -6.721206346838457 }, - "vertexSeeds": { - "c1": 4.318993685215206, - "c2": 4.476800129364483, - "c3": 4.751609852005892, - "c4": 4.065990759194399, - "c5": 4.826670152058043, - "c6": 4.484156800917409, - "c7": 4.268230876603143 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -231963,23 +231963,23 @@ "year": 1771, "resistanceReported": false, "duration": 6566400, - "curveSeeds": { - "c1": -10.044784776884232, - "c2": 9.980975534781905, - "c3": -12.245805219814343, - "c4": -4.348310430380387, - "c5": -7.010831544418657, - "c6": -11.42669598503177, - "c7": 10.817411166324316 + "points": { + "c1": -8.019353557006998, + "c2": -18.778385445121888, + "c3": 16.562241173195268, + "c4": 9.1234119345552, + "c5": -0.7045226720513469, + "c6": 19.086208911804988, + "c7": -4.678367237715614 }, - "vertexSeeds": { - "c1": 1.4395866842245522, - "c2": 1.4858600880824893, - "c3": 1.4883183958104693, - "c4": 1.4857929897684263, - "c5": 1.4390392257828672, - "c6": 1.4605636677629394, - "c7": 1.4208318701488483 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.1914008321775325, + "c3": 1.8261673601479411, + "c4": 1.4609338881183536, + "c5": 1.0957004160887662, + "c6": 0.7304669440591788, + "c7": 0.3652334720295874 }, "rgb": [58, 15, 49] }, @@ -231990,23 +231990,23 @@ "year": 1772, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -22.95642331928341, - "c2": 16.029133150093084, - "c3": 9.796856828614562, - "c4": 18.37593173985253, - "c5": 14.957031202345721, - "c6": 2.9227838724502995, - "c7": -3.3083816919744784 + "points": { + "c1": -2.5774401619223752, + "c2": 24.29158652860045, + "c3": 0.3171641148601694, + "c4": 6.841578030017079, + "c5": 10.575145763655275, + "c6": -2.49220537776354, + "c7": 9.94252952968078 }, - "vertexSeeds": { - "c1": 1.0531874616007908, - "c2": 1.0339848708012644, - "c3": 1.0407848669426127, - "c4": 1.0200833259893214, - "c5": 1.0603418495420214, - "c6": 1.1413490110770108, - "c7": 1.0571802023245638 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133154, + "c3": 1.3869625520110953, + "c4": 1.109570041608877, + "c5": 0.8321775312066567, + "c6": 0.5547850208044385, + "c7": 0.27739251040222024 }, "rgb": [77, 76, 132] }, @@ -232017,23 +232017,23 @@ "year": 1772, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -18.1045658995097, - "c2": 2.6691583777300067, - "c3": 12.739232313962706, - "c4": -6.041913356684322, - "c5": -4.458662394571732, - "c6": 17.321734907626176, - "c7": 2.5583534548483193 + "points": { + "c1": 11.574367893312608, + "c2": -18.55427111071438, + "c3": -26.469932475207074, + "c4": -20.91049369619148, + "c5": 13.492643844510436, + "c6": 28.296162944106694, + "c7": 20.93452706084459 }, - "vertexSeeds": { - "c1": 2.9876796233477894, - "c2": 2.9005679522182835, - "c3": 3.145122989879584, - "c4": 3.3565757801354827, - "c5": 3.0914388773813535, - "c6": 3.129088176846441, - "c7": 3.123591527861793 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [238, 201, 159] }, @@ -232044,23 +232044,23 @@ "year": 1772, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -1.4591664852360395, - "c2": 36.17930807621217, - "c3": -28.485027266763215, - "c4": 3.516417618438048, - "c5": 9.372750228803007, - "c6": 27.95978232635438, - "c7": 16.987221574555377 + "points": { + "c1": -34.1035873048315, + "c2": 25.08487804644387, + "c3": 35.88621496039965, + "c4": -9.56228119590353, + "c5": -14.90565890587613, + "c6": 4.220625096097081, + "c7": -10.274808271104341 }, - "vertexSeeds": { - "c1": 10.314511473716768, - "c2": 10.337100387038856, - "c3": 10.781158068808491, - "c4": 10.085745076727635, - "c5": 10.826583418939066, - "c6": 10.566340902327635, - "c7": 10.119770636365084 + "offsets": { + "c1": 18.478964401294498, + "c2": 15.839112343966695, + "c3": 13.199260286638934, + "c4": 10.559408229311131, + "c5": 7.919556171983368, + "c6": 5.279704114655566, + "c7": 2.6398520573278033 }, "rgb": [77, 76, 132] }, @@ -232071,23 +232071,23 @@ "year": 1772, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": 5.606545576739755, - "c2": -15.256788904910476, - "c3": 1.2220629949956283, - "c4": 7.849410366087671, - "c5": -19.046984262144104, - "c6": 1.5534815332836232, - "c7": -0.4241119155810509 + "points": { + "c1": -21.84819224043355, + "c2": 21.298173741389206, + "c3": -12.302803342179972, + "c4": -24.787466447958614, + "c5": -15.777889292701927, + "c6": -0.06512061933664626, + "c7": -13.301500281182111 }, - "vertexSeeds": { - "c1": 4.145330469254475, - "c2": 4.0609518254127055, - "c3": 4.023966792086776, - "c4": 4.269721107779971, - "c5": 4.575400689838284, - "c6": 4.353048915953583, - "c7": 4.496895239469967 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.62968099861304, + "c3": 5.524734165510863, + "c4": 4.419787332408693, + "c5": 3.3148404993065173, + "c6": 2.2098936662043465, + "c7": 1.1049468331021706 }, "rgb": [58, 15, 49] }, @@ -232098,23 +232098,23 @@ "year": 1772, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 36.100587201838856, - "c2": 15.966079734305332, - "c3": 8.320772080668569, - "c4": 12.441655659942953, - "c5": 6.701644537046377, - "c6": 26.53072116294097, - "c7": 10.8322819969272 + "points": { + "c1": 30.01651113142959, + "c2": 16.759892306036164, + "c3": 11.015658915959825, + "c4": -33.324835500756905, + "c5": 1.930387797362549, + "c6": -21.016467442380627, + "c7": -26.183542216192695 }, - "vertexSeeds": { - "c1": 4.7095371040664515, - "c2": 4.587102898163854, - "c3": 4.3394932820287995, - "c4": 4.54596174222904, - "c5": 4.680597822739145, - "c6": 4.756482360290746, - "c7": 4.29962193020923 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -232125,23 +232125,23 @@ "year": 1772, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 13.641976009653995, - "c2": -26.399373384808673, - "c3": -39.50695422894357, - "c4": 7.482442408676732, - "c5": 5.202995968640799, - "c6": 27.744227069175118, - "c7": 21.300400715965957 + "points": { + "c1": -7.079887741366193, + "c2": -35.85751023276332, + "c3": -32.957406039392914, + "c4": -42.44641097789267, + "c5": 28.408641026010052, + "c6": -27.769638149340896, + "c7": 3.06652479248924 }, - "vertexSeeds": { - "c1": 4.852347521830512, - "c2": 5.160276384573574, - "c3": 5.081752131912499, - "c4": 4.942881761496624, - "c5": 4.902499880695154, - "c6": 5.115557000744956, - "c7": 4.862542754747894 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819692, + "c3": 6.2182154415164055, + "c4": 4.974572353213119, + "c5": 3.7309292649098333, + "c6": 2.4872861766065597, + "c7": 1.2436430883032734 }, "rgb": [238, 201, 159] }, @@ -232152,23 +232152,23 @@ "year": 1772, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -17.986373739178333, - "c2": -2.873955338058856, - "c3": 33.50564227094115, - "c4": -14.446613612871246, - "c5": -6.102111509887628, - "c6": -28.536944493158764, - "c7": 13.479440643731763 + "points": { + "c1": 24.132900163118762, + "c2": -31.06189295022125, + "c3": 36.04802988270286, + "c4": 34.308053930409216, + "c5": -19.493588482163187, + "c6": 13.228566664762674, + "c7": -16.202719282416187 }, - "vertexSeeds": { - "c1": 5.291191590660668, - "c2": 5.041065926810573, - "c3": 5.05190659540751, - "c4": 5.331984393729347, - "c5": 5.038081951969155, - "c6": 5.372964523733905, - "c7": 5.268758038141628 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221911, + "c3": 6.449375866851588, + "c4": 5.159500693481265, + "c5": 3.869625520110942, + "c6": 2.579750346740646, + "c7": 1.289875173370323 }, "rgb": [86, 146, 138] }, @@ -232179,23 +232179,23 @@ "year": 1772, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -13.874046787289682, - "c2": -3.6034701217542917, - "c3": 21.745863665013154, - "c4": 37.27076809292328, - "c5": 5.029795714008635, - "c6": 22.951314684888388, - "c7": 8.644309653531828 + "points": { + "c1": -17.240796503603956, + "c2": 34.64125082960183, + "c3": 4.740554509368671, + "c4": 36.98938085051614, + "c5": -16.79198589858785, + "c6": -27.045344962849164, + "c7": 17.574363977122296 }, - "vertexSeeds": { - "c1": 5.248931400370533, - "c2": 5.447803541504848, - "c3": 5.368928375115211, - "c4": 5.672919696801216, - "c5": 5.487468713304047, - "c6": 5.307505278027899, - "c7": 5.473169167151089 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.9348127600554825, + "c4": 5.547850208044373, + "c5": 4.16088765603328, + "c6": 2.7739251040221866, + "c7": 1.3869625520110933 }, "rgb": [222, 0, 59] }, @@ -232206,23 +232206,23 @@ "year": 1772, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -8.013811116308617, - "c2": -14.21993348436294, - "c3": -11.488714454296034, - "c4": -17.285545870035413, - "c5": 16.256872299532485, - "c6": 6.495381675046485, - "c7": 1.7219095549577936 + "points": { + "c1": 12.94398159347966, + "c2": -5.1178041779628565, + "c3": -15.220964129281974, + "c4": -12.596680948813843, + "c5": -16.490829186307792, + "c6": -6.806441484205781, + "c7": 14.636245358401656 }, - "vertexSeeds": { - "c1": 5.33653230950057, - "c2": 4.298953766662434, - "c3": 5.07650292977751, - "c4": 4.609003662537886, - "c5": 5.009632630804042, - "c6": 4.932510334390261, - "c7": 4.112102111813009 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -232233,23 +232233,23 @@ "year": 1772, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -15.158247315221669, - "c2": -17.007281701501817, - "c3": 17.284288789498195, - "c4": -5.513110917620843, - "c5": 6.332309250818334, - "c6": 0.7085542206007567, - "c7": 18.624543818149643 + "points": { + "c1": -15.28548199617788, + "c2": -13.585554594477612, + "c3": -10.66917717583965, + "c4": -5.433813420147722, + "c5": 14.099509936148234, + "c6": 2.881025332622837, + "c7": 22.601595010238857 }, - "vertexSeeds": { - "c1": 6.660321080111709, - "c2": 6.271707024241944, - "c3": 6.602830571174781, - "c4": 6.325602496091539, - "c5": 6.630792557515424, - "c6": 5.951361824765742, - "c7": 6.195794549035706 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -232260,23 +232260,23 @@ "year": 1772, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -1.2797960483886257, - "c2": 19.242640771787716, - "c3": 14.534010921921766, - "c4": 3.6581369390815794, - "c5": 4.095240806076465, - "c6": -3.7558780537577547, - "c7": 0.6584150074618087 + "points": { + "c1": -21.99860874637589, + "c2": -15.769323173790458, + "c3": -15.211285599192047, + "c4": -10.074775560536938, + "c5": 4.234493402209047, + "c6": 10.291634468015825, + "c7": -2.394120078595897 }, - "vertexSeeds": { - "c1": 5.821473716361484, - "c2": 6.121940871397487, - "c3": 6.819557753624391, - "c4": 6.257488377387157, - "c5": 6.605996033989429, - "c6": 5.969713066484181, - "c7": 6.63659524770581 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -232287,23 +232287,23 @@ "year": 1772, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 31.265091184593302, - "c2": -25.844894391088737, - "c3": -8.808026191451837, - "c4": -0.5141959495014135, - "c5": 23.403173892918915, - "c6": 1.1500404897274876, - "c7": 18.171523371884575 + "points": { + "c1": -32.71237422210174, + "c2": 2.078165954693567, + "c3": 33.9927576143222, + "c4": -36.782289581242026, + "c5": -17.9283415390732, + "c6": -4.973683375425459, + "c7": 20.718650516951797 }, - "vertexSeeds": { - "c1": 6.163921171425126, - "c2": 5.893992250444101, - "c3": 6.342258218027, - "c4": 6.520361344429743, - "c5": 5.907964615220827, - "c6": 6.23410297313393, - "c7": 6.564606773453073 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.93065187239945, + "c3": 8.275543226999536, + "c4": 6.620434581599634, + "c5": 4.9653259361997195, + "c6": 3.310217290799817, + "c7": 1.655108645399903 }, "rgb": [222, 0, 59] }, @@ -232314,23 +232314,23 @@ "year": 1772, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -39.16245726233488, - "c2": -30.418463159519938, - "c3": -26.126304959685566, - "c4": -39.28440293935652, - "c5": 41.2661906873205, - "c6": -8.287751873108363, - "c7": 10.664176280247176 + "points": { + "c1": 12.405977923184174, + "c2": 39.75120041300896, + "c3": -1.4605783545853228, + "c4": 18.567114304309662, + "c5": 2.21079063232159, + "c6": -17.797329673176314, + "c7": 19.453560490058287 }, - "vertexSeeds": { - "c1": 7.289724901033304, - "c2": 7.2552392102033485, - "c3": 7.2645677525046, - "c4": 7.067744759560202, - "c5": 7.304502381505944, - "c6": 7.271708967943263, - "c7": 7.26078469380763 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203865, + "c3": 8.73786407766991, + "c4": 6.9902912621359095, + "c5": 5.242718446601955, + "c6": 3.4951456310679547, + "c7": 1.747572815533954 }, "rgb": [77, 76, 132] }, @@ -232341,23 +232341,23 @@ "year": 1772, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -22.005779205723368, - "c2": -25.35831582739164, - "c3": -0.24997661858739662, - "c4": -30.114157826824503, - "c5": 14.799683582384915, - "c6": 10.057684221948008, - "c7": -38.50198612358884 + "points": { + "c1": -36.5286354053753, + "c2": -4.635731593142133, + "c3": -43.76970356071503, + "c4": -3.866341975136656, + "c5": -8.740301417546604, + "c6": -39.628065222104595, + "c7": 26.10107992445471 }, - "vertexSeeds": { - "c1": 5.5136167733817025, - "c2": 5.494101069998197, - "c3": 5.496195078525808, - "c4": 5.480920230096604, - "c5": 5.467951720764376, - "c6": 5.421987772044428, - "c7": 5.439713371658224 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463231, + "c3": 6.588072122052675, + "c4": 5.270457697642119, + "c5": 3.9528432732316676, + "c6": 2.635228848821112, + "c7": 1.317614424410556 }, "rgb": [222, 0, 59] }, @@ -232368,23 +232368,23 @@ "year": 1772, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 12.126488148234955, - "c2": 33.44159743272287, - "c3": 24.076462538160897, - "c4": 35.53252132938168, - "c5": -29.90693963616681, - "c6": 23.019289276168656, - "c7": 25.07041461729616 + "points": { + "c1": -25.636128073147525, + "c2": 20.770135725976353, + "c3": -30.231438491919107, + "c4": -10.858158680432886, + "c5": 36.87930257260081, + "c6": -28.74149175606473, + "c7": -22.5111050998067 }, - "vertexSeeds": { - "c1": 1.707180809601965, - "c2": 1.6758922979995596, - "c3": 1.747811281355356, - "c4": 1.6399136011369047, - "c5": 1.6983842612815385, - "c6": 1.627584602779478, - "c7": 1.7117328141290113 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.4271844660194177, + "c4": 1.9417475728155333, + "c5": 1.4563106796116512, + "c6": 0.9708737864077688, + "c7": 0.4854368932038844 }, "rgb": [222, 0, 59] }, @@ -232395,23 +232395,23 @@ "year": 1772, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 12.826619776542806, - "c2": 32.37390256997075, - "c3": -31.183491042361933, - "c4": 2.8581482666965883, - "c5": 26.855335231045956, - "c6": 10.772511185544218, - "c7": 22.096832601076144 + "points": { + "c1": -31.30599354660359, + "c2": -24.891660024094072, + "c3": 29.252301562352457, + "c4": -13.337084963690607, + "c5": -9.097226107651991, + "c6": -4.3670026454387205, + "c7": 13.166140650767346 }, - "vertexSeeds": { - "c1": 6.85634457428566, - "c2": 6.674139774479789, - "c3": 6.520929620983538, - "c4": 6.678266796395927, - "c5": 6.8161150153986885, - "c6": 6.468995712106843, - "c7": 6.541690933056314 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238562, + "c3": 8.183079056865473, + "c4": 6.546463245492356, + "c5": 4.909847434119267, + "c6": 3.273231622746178, + "c7": 1.636615811373089 }, "rgb": [86, 146, 138] }, @@ -232422,23 +232422,23 @@ "year": 1773, "resistanceReported": true, "duration": 68774400, - "curveSeeds": { - "c1": 40.12866149567668, - "c2": -27.90714790155006, - "c3": -79.40485355433847, - "c4": -60.77823646385845, - "c5": 4.721705181413128, - "c6": -22.59116789851018, - "c7": -45.04404101621968 + "points": { + "c1": 52.43600873970681, + "c2": -38.63738702815602, + "c3": 84.80006401739038, + "c4": -85.18373901361898, + "c5": 84.76692130488829, + "c6": -46.47143125045229, + "c7": 5.814746101212066 }, - "vertexSeeds": { - "c1": 0.7744827905153682, - "c2": 0.7067839298788375, - "c3": 0.7109569279531294, - "c4": 0.7725655828979244, - "c5": 0.742496171890691, - "c6": 0.7308525844794624, - "c7": 0.7193843626890556 + "offsets": { + "c1": 1.3268608414239482, + "c2": 1.137309292649099, + "c3": 0.9477577438742477, + "c4": 0.7582061950993987, + "c5": 0.5686546463245495, + "c6": 0.3791030975497005, + "c7": 0.18955154877484906 }, "rgb": [86, 146, 138] }, @@ -232449,23 +232449,23 @@ "year": 1772, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 6.559355967753717, - "c2": 5.515466583420412, - "c3": 13.121733470885424, - "c4": 4.169538149374496, - "c5": 32.58620922475927, - "c6": 18.600706055095856, - "c7": 34.275216987563 + "points": { + "c1": 36.86209540341086, + "c2": -3.1559443676500436, + "c3": -12.533707859741341, + "c4": 29.22852657369114, + "c5": -18.985105700914637, + "c6": 4.912452900114836, + "c7": 4.938340708657201 }, - "vertexSeeds": { - "c1": 4.978044676938478, - "c2": 5.019024099482127, - "c3": 4.93234001957461, - "c4": 5.054077379007447, - "c5": 4.944514082496248, - "c6": 4.802411799115657, - "c7": 5.0667865765819595 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859922, + "c3": 6.241331484049922, + "c4": 4.993065187239941, + "c5": 3.744798890429961, + "c6": 2.4965325936199707, + "c7": 1.2482662968099805 }, "rgb": [86, 146, 138] }, @@ -232476,23 +232476,23 @@ "year": 1772, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -24.5186507169278, - "c2": 15.524152761266343, - "c3": 15.961307754089503, - "c4": 16.125079857734555, - "c5": -11.573164687660928, - "c6": 12.972055286396625, - "c7": -9.444121260924867 + "points": { + "c1": -15.49002356919241, + "c2": -5.985162468359608, + "c3": 8.720329218175202, + "c4": 18.557265221055218, + "c5": 9.49668935754427, + "c6": -27.227502163594355, + "c7": -18.48199333237166 }, - "vertexSeeds": { - "c1": 3.9567560250908955, - "c2": 3.9163031157992045, - "c3": 3.9681179621187566, - "c4": 3.9176190776698445, - "c5": 4.1520342734384625, - "c6": 4.0453592596909305, - "c7": 4.069571223024996 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [77, 76, 132] }, @@ -232503,23 +232503,23 @@ "year": 1772, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 26.441184416303898, - "c2": -32.66377633065293, - "c3": 6.64670976142645, - "c4": -37.31555829800346, - "c5": 15.699466250710337, - "c6": 16.380945885346925, - "c7": -14.323292922706258 + "points": { + "c1": -27.042924355706408, + "c2": 36.77452211058045, + "c3": 17.7170875007604, + "c4": -16.324730201298365, + "c5": 5.5249979386496975, + "c6": -8.127899762724958, + "c7": -0.9563461465550134 }, - "vertexSeeds": { - "c1": 6.529864989926172, - "c2": 6.553051523611226, - "c3": 6.184695744667518, - "c4": 6.732646045327195, - "c5": 7.1301618299591425, - "c6": 6.428881101499755, - "c7": 5.86059797258201 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [86, 146, 138] }, @@ -232530,23 +232530,23 @@ "year": 1772, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 3.495613596977691, - "c2": 15.39328215255658, - "c3": -17.593626858917073, - "c4": 7.817793762858884, - "c5": -8.599946014665855, - "c6": 0.08424764842830967, - "c7": -15.478398391823212 + "points": { + "c1": -7.028191764533908, + "c2": -4.885440701593129, + "c3": 15.223858646774268, + "c4": -14.52112495967556, + "c5": 13.062252236777468, + "c6": 8.476164774258283, + "c7": -12.09888943240596 }, - "vertexSeeds": { - "c1": 4.17549424025147, - "c2": 4.101473248333955, - "c3": 3.9529201164482624, - "c4": 4.099998462730658, - "c5": 4.154008548707004, - "c6": 4.07266368423613, - "c7": 3.8283440725823157 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768375, + "c3": 5.0392972723069756, + "c4": 4.031437817845585, + "c5": 3.0235783633841873, + "c6": 2.015718908922789, + "c7": 1.0078594544613904 }, "rgb": [77, 76, 132] }, @@ -232557,23 +232557,23 @@ "year": 1772, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -16.888753238662513, - "c2": -22.695055993289728, - "c3": 8.707596415359632, - "c4": 26.84257767375893, - "c5": 20.105452759184033, - "c6": 14.21136927470529, - "c7": -17.541787233536404 + "points": { + "c1": -34.8444557986329, + "c2": -18.78434640799525, + "c3": -36.52227439745862, + "c4": -16.64298700518963, + "c5": -23.280074752037574, + "c6": 33.76343925710335, + "c7": 1.5507376953966983 }, - "vertexSeeds": { - "c1": 7.032239828934201, - "c2": 6.988741934482492, - "c3": 6.999200097940841, - "c4": 7.387950476589773, - "c5": 7.088713628323499, - "c6": 7.398750785862187, - "c7": 6.972576997676468 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -232584,23 +232584,23 @@ "year": 1772, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -2.0146812203222524, - "c2": -19.399318523834452, - "c3": 33.577008444581715, - "c4": 38.54904059876271, - "c5": -7.890254328255047, - "c6": -22.287965686874347, - "c7": -22.753374065198848 + "points": { + "c1": -28.136394889787482, + "c2": -29.899028241468258, + "c3": 41.149747372318735, + "c4": 30.1428223222429, + "c5": -27.9338314610024, + "c6": -32.52417029063754, + "c7": 25.481095941104734 }, - "vertexSeeds": { - "c1": 5.047377217804764, - "c2": 5.387006432687015, - "c3": 5.818620812157209, - "c4": 5.28762595433584, - "c5": 5.5589450167362, - "c6": 5.584370370131069, - "c7": 5.35025235342988 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605178032 }, "rgb": [58, 15, 49] }, @@ -232611,23 +232611,23 @@ "year": 1772, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 32.23536952459209, - "c2": 18.475601691308682, - "c3": 47.70964171659679, - "c4": 38.50789966968172, - "c5": -32.478230077657265, - "c6": 36.41582071236655, - "c7": -46.743512947470755 + "points": { + "c1": -3.9423399333539066, + "c2": -18.34607043806494, + "c3": 7.32493220368783, + "c4": -36.85136342886892, + "c5": 33.08766884768127, + "c6": 41.14880085593332, + "c7": 24.929546342215943 }, - "vertexSeeds": { - "c1": 4.080527366104035, - "c2": 4.307918655980069, - "c3": 4.012262371575755, - "c4": 3.986245419297432, - "c5": 3.994638374182267, - "c6": 4.295788451386152, - "c7": 4.325094497600923 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049929, + "c3": 5.201109570041606, + "c4": 4.160887656033283, + "c5": 3.120665742024959, + "c6": 2.0804438280166466, + "c7": 1.0402219140083233 }, "rgb": [222, 0, 59] }, @@ -232638,23 +232638,23 @@ "year": 1772, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 40.485481928297304, - "c2": -6.81878424928145, - "c3": 15.201954810888239, - "c4": 34.66666570073751, - "c5": -39.54509329323476, - "c6": -18.21751482977015, - "c7": -29.69377361246783 + "points": { + "c1": 41.75686879131774, + "c2": 19.873955477013993, + "c3": -23.35347417665131, + "c4": -23.900756506064464, + "c5": 24.44456539926462, + "c6": 4.65323497020745, + "c7": -35.06333222524552 }, - "vertexSeeds": { - "c1": 4.113915770186134, - "c2": 4.594142798711073, - "c3": 4.239708009240147, - "c4": 4.22550965998433, - "c5": 4.503013937038408, - "c6": 4.600212678969485, - "c7": 4.668980273942558 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -232665,23 +232665,23 @@ "year": 1773, "resistanceReported": false, "duration": 54432000, - "curveSeeds": { - "c1": 21.67261925682743, - "c2": -60.55302301968874, - "c3": 14.024488441367694, - "c4": 7.187547599717163, - "c5": 41.64774355424325, - "c6": -33.31981760144358, - "c7": -1.7951812160344787 + "points": { + "c1": -20.062433075928098, + "c2": 58.71309756933084, + "c3": -11.074461364408812, + "c4": -22.305142630700317, + "c5": 3.0512933914627354, + "c6": -1.6422248188739985, + "c7": 68.66583709681865 }, - "vertexSeeds": { - "c1": 3.9008073259333287, - "c2": 3.735628150548972, - "c3": 3.5460074526515717, - "c4": 3.4295748827970685, - "c5": 3.5287028197645753, - "c6": 3.829426010995983, - "c7": 3.4444249290761952 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245493, + "c3": 4.738788719371245, + "c4": 3.7910309754969975, + "c5": 2.84327323162275, + "c6": 1.8955154877484954, + "c7": 0.9477577438742477 }, "rgb": [58, 15, 49] }, @@ -232692,23 +232692,23 @@ "year": 1772, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 8.071011604660498, - "c2": 4.461325075608762, - "c3": 29.51795370496002, - "c4": 30.009379341222328, - "c5": 36.39743424259491, - "c6": 24.313362488551334, - "c7": 24.411149579370843 + "points": { + "c1": 36.818630714762634, + "c2": -19.026065957130616, + "c3": 2.007321244487919, + "c4": 9.383700751728028, + "c5": -10.734330021653186, + "c6": -5.266808195628201, + "c7": 20.629563519612923 }, - "vertexSeeds": { - "c1": 5.5823503735363005, - "c2": 5.321661358070551, - "c3": 5.464008431883085, - "c4": 5.437558544040807, - "c5": 5.598579306558254, - "c6": 5.541297092773683, - "c7": 5.6016930327696555 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785017, + "c3": 6.773000462320842, + "c4": 5.418400369856668, + "c5": 4.063800277392494, + "c6": 2.7092001849283482, + "c7": 1.3546000924641741 }, "rgb": [86, 146, 138] }, @@ -232719,23 +232719,23 @@ "year": 1772, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 20.336203636854385, - "c2": -24.09456748260142, - "c3": 33.97089885171355, - "c4": 20.17445577909543, - "c5": 30.946997671085732, - "c6": 16.728327911447572, - "c7": 39.58655413717134 + "points": { + "c1": 22.77428786164645, + "c2": -11.786412400963187, + "c3": 27.243141059988965, + "c4": 1.7012220914519816, + "c5": -39.18718420308227, + "c6": -41.99811781087573, + "c7": -22.572530594405674 }, - "vertexSeeds": { - "c1": 2.073502888461867, - "c2": 2.008430410301523, - "c3": 1.8759103228425982, - "c4": 2.0162857951726867, - "c5": 1.9175753522464436, - "c6": 1.8464059830140456, - "c7": 1.9830556348580584 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.995839112343968, + "c3": 2.4965325936199707, + "c4": 1.9972260748959774, + "c5": 1.497919556171984, + "c6": 0.9986130374479907, + "c7": 0.4993065187239933 }, "rgb": [77, 76, 132] }, @@ -232746,23 +232746,23 @@ "year": 1773, "resistanceReported": false, "duration": 55728000, - "curveSeeds": { - "c1": 20.901776923201794, - "c2": -69.1133336922188, - "c3": -58.94903786007645, - "c4": -22.81362744309068, - "c5": 18.353392640614103, - "c6": -48.59166772237664, - "c7": -11.388904770719073 + "points": { + "c1": 72.01882344619193, + "c2": 1.549065171154055, + "c3": 44.5023452626085, + "c4": 50.76932975510533, + "c5": -37.26282741937686, + "c6": -14.986172344465317, + "c7": 22.333973567372723 }, - "vertexSeeds": { - "c1": 0.9877790396202072, - "c2": 0.9700546446649226, - "c3": 1.1289867100774968, - "c4": 1.1121042136518953, - "c5": 1.137204818825234, - "c6": 1.036285337749898, - "c7": 1.1393547130114698 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742022, + "c3": 1.4794267221451687, + "c4": 1.1835413777161348, + "c5": 0.8876560332871011, + "c6": 0.5917706888580674, + "c7": 0.2958853444290337 }, "rgb": [86, 146, 138] }, @@ -232773,23 +232773,23 @@ "year": 1772, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 12.644568418777283, - "c2": 39.93157452519236, - "c3": 41.910846065633436, - "c4": -36.48842226350458, - "c5": -43.51665908760567, - "c6": 39.427181746166994, - "c7": -32.070904522339994 + "points": { + "c1": 49.62721898983217, + "c2": 36.51650861920622, + "c3": -24.804452310705017, + "c4": -21.93645277610767, + "c5": 7.189392265986555, + "c6": 15.006936641283204, + "c7": 10.160429621153916 }, - "vertexSeeds": { - "c1": 4.436478215719601, - "c2": 4.503633895773995, - "c3": 4.652827856895215, - "c4": 4.612539107958518, - "c5": 4.740841737320933, - "c6": 4.5217264440385, - "c7": 4.455022289971479 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773925, + "c3": 6.171983356449379, + "c4": 4.937586685159502, + "c5": 3.703190013869625, + "c6": 2.468793342579748, + "c7": 1.234396671289877 }, "rgb": [58, 15, 49] }, @@ -232800,23 +232800,23 @@ "year": 1772, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": -10.502021415678888, - "c2": 17.259222872966028, - "c3": 3.134311233528315, - "c4": -17.033208483931176, - "c5": 18.80537180099686, - "c6": 7.418763380577442, - "c7": -2.9327071653310917 + "points": { + "c1": 4.968932808615715, + "c2": 8.91424899146589, + "c3": 4.529030977478271, + "c4": -3.1404800471454095, + "c5": -16.536366566645146, + "c6": 18.018812154372462, + "c7": -12.160381300809798 }, - "vertexSeeds": { - "c1": 4.947291996639237, - "c2": 5.232095043194924, - "c3": 5.085249114019893, - "c4": 4.878127130832521, - "c5": 5.225532184488172, - "c6": 5.252510287228771, - "c7": 5.372996383903152 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342573, + "c3": 6.518723994452151, + "c4": 5.214979195561715, + "c5": 3.9112343966712944, + "c6": 2.6074895977808574, + "c7": 1.3037447988904287 }, "rgb": [58, 15, 49] }, @@ -232827,23 +232827,23 @@ "year": 1772, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": -45.34631259263452, - "c2": 29.197499562966925, - "c3": 41.77503936032667, - "c4": -43.49507591521533, - "c5": 4.570636029948027, - "c6": -15.115294323002843, - "c7": 18.491281982930914 + "points": { + "c1": -48.28065219677157, + "c2": 13.4571624658265, + "c3": -5.067801303325339, + "c4": 3.0406306225847786, + "c5": -39.18492441708593, + "c6": 25.85464191126522, + "c7": 48.82879240958452 }, - "vertexSeeds": { - "c1": 6.8791612625935645, - "c2": 7.850921607450616, - "c3": 7.761914585868076, - "c4": 7.09391517058797, - "c5": 7.839844704418949, - "c6": 7.302069214810047, - "c7": 7.797723352290662 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531207, + "c3": 9.500693481276006, + "c4": 7.600554785020805, + "c5": 5.7004160887656035, + "c6": 3.8002773925104023, + "c7": 1.9001386962552012 }, "rgb": [77, 76, 132] }, @@ -232854,23 +232854,23 @@ "year": 1772, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -33.10224244293007, - "c2": -25.712614380542007, - "c3": 28.99932632706654, - "c4": -0.06505441085833041, - "c5": 9.435723276462888, - "c6": 19.627329776475797, - "c7": -7.772897949784305 + "points": { + "c1": -9.455936585724526, + "c2": -21.36890674959153, + "c3": -15.414850218412347, + "c4": -26.550387177576937, + "c5": -30.863027577521315, + "c6": -39.66068792396213, + "c7": -22.764249507493638 }, - "vertexSeeds": { - "c1": 5.604856504534634, - "c2": 5.243718991002175, - "c3": 5.557349824674104, - "c4": 5.011348970714513, - "c5": 5.329000976400186, - "c6": 5.520231127643073, - "c7": 4.933107108076169 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872392, + "c6": 2.699953767914937, + "c7": 1.3499768839574684 }, "rgb": [238, 201, 159] }, @@ -232881,23 +232881,23 @@ "year": 1773, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": -26.601272353177656, - "c2": -0.23855263253541636, - "c3": -47.594477895862724, - "c4": 24.492002212816075, - "c5": 31.919860730381387, - "c6": -44.207062581507145, - "c7": -17.766620286613005 + "points": { + "c1": 16.296020576975664, + "c2": 15.56160714349376, + "c3": -43.63776632722006, + "c4": -26.526409520291875, + "c5": -0.8700940951357268, + "c6": 18.65794705213662, + "c7": 53.37223261101401 }, - "vertexSeeds": { - "c1": 4.43559693609472, - "c2": 4.211555302510374, - "c3": 4.115597543984212, - "c4": 3.8985292836563574, - "c5": 4.052788938284343, - "c6": 4.087274413206397, - "c7": 4.387989854349558 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -232908,23 +232908,23 @@ "year": 1773, "resistanceReported": false, "duration": 47952000, - "curveSeeds": { - "c1": -5.612909897152008, - "c2": -34.6601589644948, - "c3": 59.11538481300345, - "c4": 49.72321896648686, - "c5": -9.011032416860097, - "c6": 56.66381995177047, - "c7": -1.6129327196466008 + "points": { + "c1": 4.385451938627469, + "c2": -19.479014975282503, + "c3": -14.808434864218569, + "c4": 33.56073247137314, + "c5": 35.569523551890796, + "c6": -39.735953881141725, + "c7": 64.25696010251215 }, - "vertexSeeds": { - "c1": 4.159632633726618, - "c2": 4.375883134310604, - "c3": 4.259453545246877, - "c4": 4.351469308542701, - "c5": 4.349449188613419, - "c6": 4.339339667936433, - "c7": 4.382913722870494 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.35228848821082, + "c3": 5.2935737401756855, + "c4": 4.234858992140552, + "c5": 3.176144244105417, + "c6": 2.117429496070269, + "c7": 1.0587147480351344 }, "rgb": [58, 15, 49] }, @@ -232935,23 +232935,23 @@ "year": 1773, "resistanceReported": false, "duration": 43459200, - "curveSeeds": { - "c1": -51.13096588443722, - "c2": 13.849290583698433, - "c3": 19.048560732654565, - "c4": -16.990429012746013, - "c5": 0.09200985080363466, - "c6": -35.27602618657289, - "c7": -53.45534352330444 + "points": { + "c1": -15.565471697628787, + "c2": -39.026865157829846, + "c3": -51.61301737852025, + "c4": -57.817469783292644, + "c5": 58.0254063270573, + "c6": -14.049211481451358, + "c7": -48.052638997071384 }, - "vertexSeeds": { - "c1": 7.120444989705229, - "c2": 6.479439106887933, - "c3": 6.844427037930184, - "c4": 7.0401007503513275, - "c5": 7.084037950423469, - "c6": 7.104814198185877, - "c7": 6.468238043935269 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [222, 0, 59] }, @@ -232962,23 +232962,23 @@ "year": 1773, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": 38.79120750628633, - "c2": -45.74928626544867, - "c3": 4.4882077251642585, - "c4": 15.828780798335217, - "c5": -43.783373864877674, - "c6": 35.18771216488399, - "c7": -46.21627914946711 + "points": { + "c1": -45.203578864767266, + "c2": 44.84645142854437, + "c3": 48.593492878052245, + "c4": 25.466379505008803, + "c5": -34.573019250652266, + "c6": 4.089017744559349, + "c7": -18.129876699067573 }, - "vertexSeeds": { - "c1": 5.129142019464289, - "c2": 5.298038694915428, - "c3": 4.200883782900486, - "c4": 5.238671088544039, - "c5": 5.077106335735156, - "c6": 5.133790354636484, - "c7": 4.791366001322878 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [77, 76, 132] }, @@ -232989,23 +232989,23 @@ "year": 1772, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": 18.392477511491638, - "c2": -19.066838001438956, - "c3": 7.891432172112491, - "c4": -4.470431191434075, - "c5": 8.172070937872945, - "c6": 6.63602150929885, - "c7": -7.549884886237972 + "points": { + "c1": -17.43703477968208, + "c2": 17.680291565940255, + "c3": 3.7270973379085177, + "c4": 10.219836932462282, + "c5": 2.2142854647552035, + "c6": -20.754621483027762, + "c7": -12.69374121813107 }, - "vertexSeeds": { - "c1": 2.4451519526592076, - "c2": 2.3872266730624103, - "c3": 2.367500077920956, - "c4": 2.3726999727176894, - "c5": 2.3462486079565648, - "c6": 2.4434537020449913, - "c7": 2.391793157875633 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495116, + "c3": 3.0744336569579334, + "c4": 2.4595469255663445, + "c5": 1.8446601941747558, + "c6": 1.2297734627831722, + "c7": 0.6148867313915888 }, "rgb": [77, 76, 132] }, @@ -233016,23 +233016,23 @@ "year": 1772, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 16.953100815314073, - "c2": -40.882511329420645, - "c3": -47.27332521498833, - "c4": 19.24943858000023, - "c5": -34.2531756757183, - "c6": -12.780334703729238, - "c7": -3.2678172545315576 + "points": { + "c1": 38.43314029375293, + "c2": 1.2243697241500016, + "c3": -40.35555874441089, + "c4": 43.04880542216881, + "c5": -6.120428808247404, + "c6": 14.181921320439983, + "c7": 20.255812511572188 }, - "vertexSeeds": { - "c1": 9.173123936355958, - "c2": 9.069831991422001, - "c3": 9.101603633760385, - "c4": 9.230708131999297, - "c5": 9.207394714073486, - "c6": 9.244444550747541, - "c7": 9.089322102444317 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.370319001386939, + "c3": 11.14193250115581, + "c4": 8.913546000924626, + "c5": 6.685159500693499, + "c6": 4.456773000462313, + "c7": 2.2283865002311267 }, "rgb": [86, 146, 138] }, @@ -233043,23 +233043,23 @@ "year": 1772, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 16.002406260016826, - "c2": -21.09049907116467, - "c3": 31.995821552839956, - "c4": -2.850004937374692, - "c5": -32.56662820847828, - "c6": 20.831853147037897, - "c7": -32.90537441704783 + "points": { + "c1": -27.467299163355968, + "c2": -10.864918306609827, + "c3": 31.02696889901179, + "c4": -4.292577365838923, + "c5": -10.434865379676307, + "c6": 0.11335213803457833, + "c7": -4.63318892609805 }, - "vertexSeeds": { - "c1": 2.026464623132824, - "c2": 2.1060830062076032, - "c3": 1.9494235580823236, - "c4": 1.9436830501797058, - "c5": 2.068261716363012, - "c6": 2.173340549279784, - "c7": 1.9737420127279093 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746186, + "c3": 2.7276930189551556, + "c4": 2.182154415164122, + "c5": 1.6366158113730915, + "c6": 1.091077207582061, + "c7": 0.5455386037910305 }, "rgb": [77, 76, 132] }, @@ -233070,23 +233070,23 @@ "year": 1772, "resistanceReported": false, "duration": 8035200, - "curveSeeds": { - "c1": -9.672385687100453, - "c2": -9.282593180549267, - "c3": -8.311009696865609, - "c4": -11.030929478781399, - "c5": -10.681132150852182, - "c6": -8.839904037695822, - "c7": 12.303773026067393 + "points": { + "c1": -0.33764869307936607, + "c2": -0.7565491147357442, + "c3": -16.00225343501945, + "c4": -19.462414973221353, + "c5": 3.8564887096293283, + "c6": 9.265142675060034, + "c7": -9.14215239642542 }, - "vertexSeeds": { - "c1": 6.288874139218524, - "c2": 5.586219692533273, - "c3": 6.426540248654155, - "c4": 5.89580778134812, - "c5": 6.797763952897102, - "c6": 6.084049606559648, - "c7": 5.9832714773913995 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -233097,23 +233097,23 @@ "year": 1772, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 44.10946314868913, - "c2": -29.468918218958155, - "c3": 42.61972275853552, - "c4": -46.08807863602953, - "c5": 5.551814552970427, - "c6": 6.878203001556415, - "c7": -11.321412030120321 + "points": { + "c1": 43.701801914933384, + "c2": 1.2273640724139128, + "c3": 9.006171810455129, + "c4": 46.289075150517945, + "c5": -28.705240103253786, + "c6": 28.03667991175648, + "c7": -40.30548226606433 }, - "vertexSeeds": { - "c1": 6.14942307786022, - "c2": 6.524018653460203, - "c3": 6.16273162205992, - "c4": 5.951704044680767, - "c5": 5.639813547944257, - "c6": 6.7071695873238575, - "c7": 6.86187460725152 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.20619509939898, + "c4": 6.564956079519189, + "c5": 4.923717059639396, + "c6": 3.2824780397595945, + "c7": 1.6412390198798021 }, "rgb": [238, 201, 159] }, @@ -233124,23 +233124,23 @@ "year": 1772, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": 39.12518834136032, - "c2": -16.36660304360442, - "c3": 14.656042296594286, - "c4": -36.721634517537375, - "c5": -38.64224503273134, - "c6": -41.068637039341354, - "c7": -30.006996767612183 + "points": { + "c1": 18.810497708752642, + "c2": -9.488769382084683, + "c3": -30.189546845397746, + "c4": 52.25255004635918, + "c5": -16.91881895535321, + "c6": 48.055141862315786, + "c7": -50.775122179297824 }, - "vertexSeeds": { - "c1": 4.263576893325885, - "c2": 4.394491431087205, - "c3": 4.266325404620185, - "c4": 4.363341993668545, - "c5": 4.409657700185889, - "c6": 4.31059742281439, - "c7": 4.412664425665835 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843278, + "c4": 4.3273231622746255, + "c5": 3.245492371705958, + "c6": 2.1636615811373052, + "c7": 1.0818307905686526 }, "rgb": [238, 201, 159] }, @@ -233151,23 +233151,23 @@ "year": 1773, "resistanceReported": false, "duration": 57628800, - "curveSeeds": { - "c1": 66.99050916378332, - "c2": 18.766255882324245, - "c3": 47.051081314105645, - "c4": -63.971036100626655, - "c5": -52.00938208058635, - "c6": -51.8911573688911, - "c7": 17.330121100874436 + "points": { + "c1": 49.37456067927501, + "c2": -49.7418903289804, + "c3": 29.999223850110013, + "c4": 6.981630585965419, + "c5": 53.03096368480277, + "c6": 23.581092023615554, + "c7": 33.46734981590387 }, - "vertexSeeds": { - "c1": 5.098375867656883, - "c2": 5.106266283096485, - "c3": 5.056643934259621, - "c4": 5.0937080902572776, - "c5": 5.1327433871852834, - "c6": 5.164987211185611, - "c7": 5.1078311176568585 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739287, + "c3": 6.171983356449365, + "c4": 4.937586685159525, + "c5": 3.7031900138696026, + "c6": 2.4687933425797626, + "c7": 1.234396671289922 }, "rgb": [58, 15, 49] }, @@ -233178,23 +233178,23 @@ "year": 1772, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -14.39812170209811, - "c2": 15.222958445368462, - "c3": 7.983350406451365, - "c4": 15.840941565598378, - "c5": -16.49893313875354, - "c6": 12.082657653852408, - "c7": 19.21644034518802 + "points": { + "c1": -5.492374835850185, + "c2": 1.145891796778841, + "c3": -22.540627825612937, + "c4": 7.920997200077302, + "c5": -6.31377147798381, + "c6": 17.699546759203166, + "c7": 9.163657771330712 }, - "vertexSeeds": { - "c1": 3.352874965317879, - "c2": 3.310706373596307, - "c3": 3.632382216392879, - "c4": 3.6990194497557356, - "c5": 3.6583252533861277, - "c6": 3.293907684003651, - "c7": 3.7010624264568124 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435504, + "c4": 3.5506241331484096, + "c5": 2.662968099861307, + "c6": 1.7753120665742048, + "c7": 0.8876560332871024 }, "rgb": [222, 0, 59] }, @@ -233205,23 +233205,23 @@ "year": 1772, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -6.5796510777948, - "c2": 11.155336440597637, - "c3": 4.623240810902246, - "c4": -27.80842990556473, - "c5": -13.636731604901293, - "c6": -24.604627410898225, - "c7": -22.585090040347634 + "points": { + "c1": 17.317447336960086, + "c2": -25.943055343137864, + "c3": 22.637789763981402, + "c4": 21.189038348603212, + "c5": -21.57157829426669, + "c6": -37.3510764603623, + "c7": 34.1825479720671 }, - "vertexSeeds": { - "c1": 4.469791155782263, - "c2": 4.5644579668632055, - "c3": 4.197517417662363, - "c4": 4.550483297807766, - "c5": 4.431054508097117, - "c6": 4.119918347259089, - "c7": 4.821373652990449 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -233232,23 +233232,23 @@ "year": 1772, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": 8.017510447821369, - "c2": -16.958521951310043, - "c3": 14.072944157249307, - "c4": 14.948884708626277, - "c5": -7.984630828452618, - "c6": 1.5760406022781908, - "c7": 2.586947444352127 + "points": { + "c1": 1.359755269190721, + "c2": 16.336707123489322, + "c3": -12.903389844777418, + "c4": -0.7214669735405508, + "c5": -6.921407615345698, + "c6": -7.32198430489659, + "c7": -9.341988934517532 }, - "vertexSeeds": { - "c1": 3.1163596403732625, - "c2": 3.268528138959456, - "c3": 2.9736847284787857, - "c4": 2.9646787896447098, - "c5": 3.1397913980048457, - "c6": 3.112078278911024, - "c7": 3.197172191802964 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [222, 0, 59] }, @@ -233259,23 +233259,23 @@ "year": 1773, "resistanceReported": false, "duration": 50976000, - "curveSeeds": { - "c1": -3.188779778352945, - "c2": 43.89256755292611, - "c3": -51.39067919152919, - "c4": -20.2562794092373, - "c5": 64.69317867002003, - "c6": -48.63284129033555, - "c7": -30.80561094691621 + "points": { + "c1": 26.64507262368093, + "c2": -45.39079818322706, + "c3": 37.387375739908734, + "c4": -6.525932091461442, + "c5": 14.156223422379782, + "c6": -51.381979127605064, + "c7": -5.031347844910378 }, - "vertexSeeds": { - "c1": 1.6054757539830786, - "c2": 1.6354947312218413, - "c3": 1.673509249184269, - "c4": 1.58619324724531, - "c5": 1.6431064575409426, - "c6": 1.665272735895664, - "c7": 1.5514689837596902 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [58, 15, 49] }, @@ -233286,23 +233286,23 @@ "year": 1772, "resistanceReported": false, "duration": 6739200, - "curveSeeds": { - "c1": -5.555860209759805, - "c2": -12.994208949752654, - "c3": 14.165979642323755, - "c4": -0.7968976446614562, - "c5": -6.932677947724942, - "c6": -16.85012407195208, - "c7": 16.727574508525098 + "points": { + "c1": 16.68373379272302, + "c2": -7.1599424206446525, + "c3": 17.899124721851212, + "c4": -16.49193930276255, + "c5": 0.20696915103679103, + "c6": 6.823733005819864, + "c7": -13.715903494761458 }, - "vertexSeeds": { - "c1": 5.895640633423499, - "c2": 6.031916363205695, - "c3": 5.910879083775759, - "c4": 6.050419275302033, - "c5": 5.627785267115379, - "c6": 5.655708442126736, - "c7": 6.700617377744206 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -233313,23 +233313,23 @@ "year": 1772, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": -42.29004460371311, - "c2": -6.54747429282407, - "c3": -13.355603906727644, - "c4": 47.75479902618941, - "c5": -0.1829906487612618, - "c6": 13.046923250553121, - "c7": -35.48285034512106 + "points": { + "c1": -23.912377544610344, + "c2": 15.369121295475402, + "c3": 32.737767292077244, + "c4": -14.175451383104132, + "c5": 6.438677306554901, + "c6": -4.868421331354774, + "c7": 18.35884835262504 }, - "vertexSeeds": { - "c1": 7.045197580463589, - "c2": 6.96122101902341, - "c3": 6.28292699927806, - "c4": 6.134639961013657, - "c5": 7.007187942551242, - "c6": 6.872306098599847, - "c7": 7.109020104847702 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [58, 15, 49] }, @@ -233340,23 +233340,23 @@ "year": 1772, "resistanceReported": false, "duration": 6480000, - "curveSeeds": { - "c1": -5.1732062589228285, - "c2": 1.9867064325920047, - "c3": 12.232201793023474, - "c4": -10.650910472486814, - "c5": -11.334774753902638, - "c6": 5.602101632730928, - "c7": 12.287905304237913 + "points": { + "c1": 4.411114888507129, + "c2": -17.511229221664994, + "c3": 15.196214715639101, + "c4": -18.80779936652244, + "c5": 12.628813514327923, + "c6": -0.963425511362864, + "c7": 6.550975054088926 }, - "vertexSeeds": { - "c1": 3.193426414367616, - "c2": 2.935278418782818, - "c3": 3.148434158672951, - "c4": 3.2492777671487163, - "c5": 3.1865129489136095, - "c6": 3.0738834285564476, - "c7": 3.1686589115735977 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [58, 15, 49] }, @@ -233367,23 +233367,23 @@ "year": 1772, "resistanceReported": false, "duration": 6480000, - "curveSeeds": { - "c1": 15.36009106744767, - "c2": -9.363349079164774, - "c3": 3.8847244741232814, - "c4": -2.567992002771039, - "c5": -9.905319953045517, - "c6": 1.2953356950610306, - "c7": -3.472312983163034 + "points": { + "c1": 11.98891633216546, + "c2": -15.76497113490026, + "c3": 16.887721779264766, + "c4": -13.06223416058089, + "c5": -12.57094481293451, + "c6": 3.1323799716553253, + "c7": 6.441496843858115 }, - "vertexSeeds": { - "c1": 4.193491059012657, - "c2": 4.193988576287506, - "c3": 4.447314827745864, - "c4": 4.39227842271042, - "c5": 4.072515562478632, - "c6": 3.8678917895877296, - "c7": 4.3516245625902545 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -233394,23 +233394,23 @@ "year": 1773, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 13.380879880092422, - "c2": -25.385198957186088, - "c3": -44.543862852434444, - "c4": 2.3316650317110827, - "c5": 4.215502704406916, - "c6": 28.246955399517105, - "c7": -31.924863723470086 + "points": { + "c1": 28.957321025339056, + "c2": 46.87773240262989, + "c3": -15.081456526658947, + "c4": -25.49689856223434, + "c5": 29.023366964948167, + "c6": 24.610722371026952, + "c7": 33.886748085738034 }, - "vertexSeeds": { - "c1": 2.845558027176227, - "c2": 2.5651024338865747, - "c3": 2.5867847369701096, - "c4": 2.8333243321864545, - "c5": 2.659095481839314, - "c6": 2.680739488400463, - "c7": 2.7842161995305217 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [238, 201, 159] }, @@ -233421,23 +233421,23 @@ "year": 1772, "resistanceReported": true, "duration": 30758400, - "curveSeeds": { - "c1": 32.07796263297853, - "c2": 12.652925457879498, - "c3": -9.995137963580326, - "c4": 34.80468975128979, - "c5": 1.7256224649015053, - "c6": -17.712241302121875, - "c7": -21.241956745951324 + "points": { + "c1": -34.1269726480152, + "c2": -12.242420690073942, + "c3": -41.86121048243187, + "c4": -20.579827202827445, + "c5": 39.06018851970661, + "c6": 11.050334866242757, + "c7": -32.779057398327424 }, - "vertexSeeds": { - "c1": 2.705682371104163, - "c2": 2.486871514225391, - "c3": 2.4744959735418957, - "c4": 2.711018169963575, - "c5": 2.7090270341518643, - "c6": 2.5750426819047303, - "c7": 2.808961518803322 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.4674063800277417, + "c4": 2.7739251040221906, + "c5": 2.080443828016644, + "c6": 1.3869625520110977, + "c7": 0.6934812760055489 }, "rgb": [58, 15, 49] }, @@ -233448,23 +233448,23 @@ "year": 1772, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -10.011091865840292, - "c2": 21.474692358110694, - "c3": 22.994326362719917, - "c4": 21.381342291014292, - "c5": 16.26712512000249, - "c6": -31.83306104240145, - "c7": 7.590489698394286 + "points": { + "c1": -36.045572381590745, + "c2": 8.28700959954891, + "c3": 20.56917679844711, + "c4": -23.749510233522624, + "c5": 10.14885526482577, + "c6": -6.076563843240624, + "c7": 27.893309520629437 }, - "vertexSeeds": { - "c1": 8.779411594622259, - "c2": 7.887316135575659, - "c3": 8.019327331247535, - "c4": 9.138416428267918, - "c5": 9.637298924901664, - "c6": 8.656818160999023, - "c7": 7.872247515825039 + "offsets": { + "c1": 16.796116504854368, + "c2": 14.396671289875174, + "c3": 11.997226074895979, + "c4": 9.597780859916785, + "c5": 7.198335644937583, + "c6": 4.798890429958389, + "c7": 2.3994452149791945 }, "rgb": [77, 76, 132] }, @@ -233475,23 +233475,23 @@ "year": 1772, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -1.8247863185657387, - "c2": 4.562818257574719, - "c3": -8.16121343424522, - "c4": 5.215876070152358, - "c5": 16.078434195836774, - "c6": 21.112564638931527, - "c7": 0.8840822676766464 + "points": { + "c1": 22.912147865899225, + "c2": 15.73949381407169, + "c3": 21.56772468959682, + "c4": -22.31774441545841, + "c5": 27.786963218945115, + "c6": -14.328204842011164, + "c7": 2.9341356884948553 }, - "vertexSeeds": { - "c1": 2.931281644714084, - "c2": 3.1293777265223666, - "c3": 3.122313240085713, - "c4": 3.1754662169444448, - "c5": 3.112823779221967, - "c6": 3.1185627230382718, - "c7": 2.906221758681531 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -233502,23 +233502,23 @@ "year": 1772, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -7.787879422377273, - "c2": 29.621487650687662, - "c3": -4.763905761233488, - "c4": 40.79511403994474, - "c5": -34.226689139325174, - "c6": -18.523488315967064, - "c7": -36.912453174196195 + "points": { + "c1": -23.940168142656823, + "c2": -23.453710198772495, + "c3": 22.92973669218693, + "c4": -41.02085824740866, + "c5": -31.00864627096194, + "c6": 15.20441855188215, + "c7": -1.9989462267521887 }, - "vertexSeeds": { - "c1": 9.167766294237198, - "c2": 8.867180673122546, - "c3": 8.989159105358251, - "c4": 8.473941846409193, - "c5": 8.662987372082174, - "c6": 8.504972559355753, - "c7": 8.499784865943315 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024958, + "c3": 10.933888118354142, + "c4": 8.747110494683305, + "c5": 6.560332871012489, + "c6": 4.373555247341653, + "c7": 2.1867776236708365 }, "rgb": [222, 0, 59] }, @@ -233529,23 +233529,23 @@ "year": 1772, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -26.37821476796791, - "c2": -23.69226484027372, - "c3": 17.743490699097556, - "c4": -23.74172815513137, - "c5": -26.520884478843893, - "c6": 6.527522292468596, - "c7": -27.84966727254302 + "points": { + "c1": 27.999216406738697, + "c2": -17.015284521913824, + "c3": 32.37609986621604, + "c4": 23.729200803147606, + "c5": 18.342888052394812, + "c6": 9.622357269049218, + "c7": -9.217488998943438 }, - "vertexSeeds": { - "c1": 1.0325887011422366, - "c2": 0.9627279597927283, - "c3": 1.012310649036902, - "c4": 1.1100446336678158, - "c5": 1.0191066812828298, - "c6": 1.0722785173500335, - "c7": 1.1148146226584692 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133148, + "c3": 1.386962552011096, + "c4": 1.109570041608877, + "c5": 0.8321775312066582, + "c6": 0.5547850208044391, + "c7": 0.2773925104022203 }, "rgb": [86, 146, 138] }, @@ -233556,23 +233556,23 @@ "year": 1772, "resistanceReported": false, "duration": 5529600, - "curveSeeds": { - "c1": 2.234465958039273, - "c2": 1.8174738495532594, - "c3": -12.851134092869309, - "c4": -1.1377133857617707, - "c5": 6.537244899107758, - "c6": 15.551293675446193, - "c7": 7.980311164234706 + "points": { + "c1": 10.52585256507593, + "c2": 1.1062985418334392, + "c3": -5.575641069855163, + "c4": 17.26384890671279, + "c5": 15.107136491190953, + "c6": 7.410971665767864, + "c7": 1.8782003868703292 }, - "vertexSeeds": { - "c1": 4.572209204802317, - "c2": 4.68769219744363, - "c3": 4.1574085796633256, - "c4": 4.810677248574543, - "c5": 4.641201753478478, - "c6": 4.3970550805084585, - "c7": 4.203671147917527 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -233583,23 +233583,23 @@ "year": 1772, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 12.997560579567939, - "c2": 16.073749997986788, - "c3": -25.302009945558844, - "c4": -1.9120253979989918, - "c5": -4.181485853529139, - "c6": -1.2349125960595124, - "c7": 23.59079418174278 + "points": { + "c1": 17.03025491089921, + "c2": -25.606031378666042, + "c3": 3.022725951370383, + "c4": 15.093936382375908, + "c5": 23.74902063497509, + "c6": 15.300736028166611, + "c7": -0.22314759199984024 }, - "vertexSeeds": { - "c1": 4.270943827507721, - "c2": 4.515240684427517, - "c3": 4.79692081039328, - "c4": 4.467865180558082, - "c5": 4.506954206093485, - "c6": 4.62567329542684, - "c7": 4.633801915165981 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975039, + "c3": 5.732778548312528, + "c4": 4.586222838650026, + "c5": 3.4396671289875154, + "c6": 2.293111419325013, + "c7": 1.1465557096625025 }, "rgb": [58, 15, 49] }, @@ -233610,23 +233610,23 @@ "year": 1772, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -40.00081982985286, - "c2": -8.578558514639212, - "c3": 15.94141392091825, - "c4": -42.470634548208935, - "c5": -3.3482318239426263, - "c6": -21.001882976223268, - "c7": 32.15799389802457 + "points": { + "c1": 43.71290098944053, + "c2": 5.665890052615133, + "c3": -11.87483961472126, + "c4": -37.59834452230629, + "c5": -41.16095537491187, + "c6": 29.004476816065207, + "c7": -39.895905037854 }, - "vertexSeeds": { - "c1": 6.0097391366853765, - "c2": 6.349756829952028, - "c3": 6.35959678691468, - "c4": 6.259342608762294, - "c5": 6.072552968153932, - "c6": 6.412475698385924, - "c7": 6.011151524376904 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434122, + "c3": 7.7207582061951054, + "c4": 6.176606564956089, + "c5": 4.632454923717072, + "c6": 3.088303282478034, + "c7": 1.544151641239017 }, "rgb": [238, 201, 159] }, @@ -233637,23 +233637,23 @@ "year": 1773, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": -15.529577181052233, - "c2": 39.101866104672666, - "c3": -13.900496899402711, - "c4": 46.5274495936, - "c5": 9.325234438896523, - "c6": 20.31749481392822, - "c7": -19.628066534553085 + "points": { + "c1": -16.096915828896762, + "c2": -41.179025658280295, + "c3": -9.69777880747597, + "c4": 29.13303771667519, + "c5": 18.133030953204354, + "c6": 27.68378952129264, + "c7": -14.435555864780625 }, - "vertexSeeds": { - "c1": 4.779085009171178, - "c2": 5.156933023771747, - "c3": 4.825874631504773, - "c4": 5.134473495152463, - "c5": 5.040079096975571, - "c6": 4.843037519265066, - "c7": 4.875288237692758 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.48959778085991, + "c3": 6.241331484049939, + "c4": 4.993065187239947, + "c5": 3.744798890429955, + "c6": 2.4965325936199734, + "c7": 1.2482662968099816 }, "rgb": [238, 201, 159] }, @@ -233664,23 +233664,23 @@ "year": 1773, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": 16.918009626346702, - "c2": 54.10794315706937, - "c3": 52.65065082947028, - "c4": -6.023104155398819, - "c5": -17.132054818368957, - "c6": 54.20383457324266, - "c7": -15.595099250887408 + "points": { + "c1": 4.388869119351234, + "c2": -31.7017267700355, + "c3": 18.010542063468392, + "c4": 34.88836531440718, + "c5": 34.99961710054613, + "c6": -41.25813616726944, + "c7": 48.974902286086675 }, - "vertexSeeds": { - "c1": 4.127390663273296, - "c2": 4.814851354959893, - "c3": 4.215846803122092, - "c4": 4.6496079714536895, - "c5": 4.049627248183383, - "c6": 4.683546811878179, - "c7": 4.73414609535521 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [58, 15, 49] }, @@ -233691,23 +233691,23 @@ "year": 1772, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 24.040053230210745, - "c2": 2.5913690486374605, - "c3": -27.260987314184845, - "c4": 13.472592001437548, - "c5": 12.160322097451022, - "c6": 17.21382763559592, - "c7": 24.502195251597726 + "points": { + "c1": -22.955213864486083, + "c2": -3.4375232690584028, + "c3": -0.47229970021690804, + "c4": 1.7070963418371576, + "c5": -23.629909146279957, + "c6": 10.961472788491967, + "c7": -8.487454634836588 }, - "vertexSeeds": { - "c1": 2.7459737094540264, - "c2": 2.719587551216404, - "c3": 2.9733015357655708, - "c4": 2.74172437271727, - "c5": 2.665958092202619, - "c6": 2.9356530990381127, - "c7": 3.100405469311651 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475731, + "c3": 3.721682847896439, + "c4": 2.9773462783171536, + "c5": 2.233009708737862, + "c6": 1.4886731391585768, + "c7": 0.7443365695792917 }, "rgb": [58, 15, 49] }, @@ -233718,23 +233718,23 @@ "year": 1772, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -15.322705951310173, - "c2": 18.96834476559321, - "c3": 4.822337960318464, - "c4": -36.9866927475592, - "c5": -36.4551612649707, - "c6": 29.226974787699376, - "c7": -0.3255268914556879 + "points": { + "c1": 26.184285470821308, + "c2": 35.07850008768729, + "c3": 5.162624575411925, + "c4": 8.856857130364759, + "c5": -30.80417329746996, + "c6": -0.8150661560215724, + "c7": -21.232061462588273 }, - "vertexSeeds": { - "c1": 4.332898226136582, - "c2": 4.515593749668364, - "c3": 4.491290409471888, - "c4": 4.263754546168941, - "c5": 4.1157823501666115, - "c6": 4.805104494928138, - "c7": 4.082857751877518 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -233745,23 +233745,23 @@ "year": 1772, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 18.43540751708136, - "c2": 11.682895722842446, - "c3": -22.93037130973754, - "c4": -35.61953975644882, - "c5": 24.0011091930088, - "c6": -18.624896683372352, - "c7": -30.950743614425733 + "points": { + "c1": 17.14812470850729, + "c2": -36.858610617928, + "c3": -18.213241623579176, + "c4": -17.05186087662794, + "c5": 23.790395705886496, + "c6": -15.177252593334867, + "c7": -10.553426461296638 }, - "vertexSeeds": { - "c1": 6.478303434361811, - "c2": 7.918503035229173, - "c3": 6.730275427103811, - "c4": 7.962297933672389, - "c5": 7.121016184671177, - "c6": 6.0479721747902895, - "c7": 6.4475962106934865 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.42857142857143, + "c3": 9.523809523809522, + "c4": 7.619047619047619, + "c5": 5.714285714285715, + "c6": 3.8095238095238058, + "c7": 1.9047619047619029 }, "rgb": [77, 76, 132] }, @@ -233772,23 +233772,23 @@ "year": 1772, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -17.65529232143092, - "c2": 26.389682970091904, - "c3": 40.65923854721492, - "c4": 30.977687153984228, - "c5": 39.13962035011267, - "c6": 3.391110832080166, - "c7": 12.464201203809488 + "points": { + "c1": 4.364088252947617, + "c2": 45.58539930035477, + "c3": 35.62699618394392, + "c4": 7.064654533129428, + "c5": 30.86221523977901, + "c6": 21.51037815709055, + "c7": -39.39430126689636 }, - "vertexSeeds": { - "c1": 6.087822890590307, - "c2": 5.975249736745193, - "c3": 5.955832469306205, - "c4": 6.0310342237689865, - "c5": 5.9537539894365725, - "c6": 6.19938052844591, - "c7": 5.698102960830615 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916778, + "c3": 7.99815071659732, + "c4": 6.398520573277852, + "c5": 4.798890429958393, + "c6": 3.199260286638926, + "c7": 1.599630143319458 }, "rgb": [86, 146, 138] }, @@ -233799,23 +233799,23 @@ "year": 1772, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -17.855328641270745, - "c2": -31.545142919844352, - "c3": 19.86972234802883, - "c4": -40.92356952163506, - "c5": 11.39224454674222, - "c6": 29.173429233003958, - "c7": -15.010599959214495 + "points": { + "c1": 6.1574346054775475, + "c2": -14.363863807429645, + "c3": -30.52383175785255, + "c4": -46.204723629397755, + "c5": -4.158182371834265, + "c6": -21.327102679418736, + "c7": 37.25807321785618 }, - "vertexSeeds": { - "c1": 6.584770406383362, - "c2": 7.102428997806154, - "c3": 7.084517100661097, - "c4": 6.798172919913787, - "c5": 6.646772623319454, - "c6": 6.568759184642427, - "c7": 7.145158953291076 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882104, + "c3": 8.55293573740175, + "c4": 6.8423485899213965, + "c5": 5.1317614424410625, + "c6": 3.4211742949607085, + "c7": 1.7105871474803542 }, "rgb": [58, 15, 49] }, @@ -233826,23 +233826,23 @@ "year": 1772, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -6.380216983678714, - "c2": 17.088371852308086, - "c3": -23.87862857013588, - "c4": 24.08234617278083, - "c5": 16.323755755905367, - "c6": 44.23201563361343, - "c7": 5.5859606481586255 + "points": { + "c1": 29.352714582716956, + "c2": 38.959655551886186, + "c3": -37.6463298620215, + "c4": 3.335985664346879, + "c5": -22.827578834749772, + "c6": 37.30823781195677, + "c7": 17.74911562164599 }, - "vertexSeeds": { - "c1": 8.536928665433306, - "c2": 8.893681340666495, - "c3": 8.534290043015817, - "c4": 8.950700889318341, - "c5": 8.682226626522489, - "c6": 8.599192065833213, - "c7": 8.932809077373776 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.89875173370319, + "c3": 10.748959778085991, + "c4": 8.599167822468793, + "c5": 6.449375866851595, + "c6": 4.2995839112343965, + "c7": 2.1497919556171983 }, "rgb": [58, 15, 49] }, @@ -233853,23 +233853,23 @@ "year": 1772, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -1.9840631609886117, - "c2": 10.44598160257464, - "c3": -7.521109446038423, - "c4": 31.555255213768902, - "c5": 41.764750666720715, - "c6": 35.305427977863005, - "c7": 5.5003104829124325 + "points": { + "c1": 9.604121645141532, + "c2": 19.662430472783996, + "c3": -6.947055852938476, + "c4": 6.649372316844058, + "c5": 31.785837404538782, + "c6": 46.06527702405555, + "c7": 25.23509444601204 }, - "vertexSeeds": { - "c1": 1.5720209175839768, - "c2": 1.3779598693887247, - "c3": 1.5425084656658195, - "c4": 1.4234576434228723, - "c5": 1.5903169440911966, - "c6": 1.41518192798717, - "c7": 1.430953901581483 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.30235783633842, + "c3": 1.9186315302820152, + "c4": 1.5349052242256134, + "c5": 1.1511789181692085, + "c6": 0.7674526121128067, + "c7": 0.38372630605640495 }, "rgb": [86, 146, 138] }, @@ -233880,23 +233880,23 @@ "year": 1773, "resistanceReported": false, "duration": 44064000, - "curveSeeds": { - "c1": -32.905488184162664, - "c2": 11.186144130082077, - "c3": 4.991601730669203, - "c4": -52.25679693313335, - "c5": 13.667262662760642, - "c6": 56.40589483920592, - "c7": 54.46961409053856 + "points": { + "c1": -53.84807747386759, + "c2": -47.58754926160051, + "c3": -28.478086724066312, + "c4": -42.379738694814165, + "c5": 42.709416286393896, + "c6": -30.13254462516112, + "c7": 43.22248785794863 }, - "vertexSeeds": { - "c1": 3.8758926118999737, - "c2": 3.94784317908282, - "c3": 3.759694510163578, - "c4": 4.021042963105523, - "c5": 3.7261265161142854, - "c6": 3.908851428526526, - "c7": 3.8431657073457774 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486827, + "c3": 4.877484974572351, + "c4": 3.9019879796578842, + "c5": 2.9264909847434093, + "c6": 1.9509939898289421, + "c7": 0.9754969949144754 }, "rgb": [222, 0, 59] }, @@ -233907,23 +233907,23 @@ "year": 1772, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 4.134844570676677, - "c2": -14.30501354907306, - "c3": -34.59981566455598, - "c4": -18.86816177839772, - "c5": 10.280033980792233, - "c6": -16.98475623021964, - "c7": -12.532962047081014 + "points": { + "c1": 24.20547895281792, + "c2": 29.369587936151298, + "c3": 0.40409537276131857, + "c4": 8.462414133172459, + "c5": -25.990085389137768, + "c6": -30.990120263488315, + "c7": -31.423414670962284 }, - "vertexSeeds": { - "c1": 5.90330869357868, - "c2": 5.596139421700908, - "c3": 5.773110733425597, - "c4": 5.6331179777026135, - "c5": 5.5909177167845545, - "c6": 5.493385515226442, - "c7": 5.58294964546553 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267689, + "c3": 7.050392972723059, + "c4": 5.640314378178451, + "c5": 4.2302357836338444, + "c6": 2.820157189089215, + "c7": 1.4100785945446075 }, "rgb": [238, 201, 159] }, @@ -233934,23 +233934,23 @@ "year": 1772, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": 8.67833184428196, - "c2": -17.943505536790543, - "c3": -10.926529873381519, - "c4": -16.8937564829262, - "c5": 16.280061673285726, - "c6": -12.438056333078526, - "c7": 0.3498255082103938 + "points": { + "c1": 11.178085151036779, + "c2": -16.279689376474014, + "c3": -11.183613929626215, + "c4": 3.407719545533876, + "c5": -10.997738399252375, + "c6": 3.090087950980898, + "c7": 18.507759102540785 }, - "vertexSeeds": { - "c1": 3.7457356240085744, - "c2": 3.7523643311414117, - "c3": 3.748147489035922, - "c4": 3.862099323966678, - "c5": 3.8293438359907426, - "c6": 3.7773880118754377, - "c7": 3.83515680254305 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084613, + "c3": 4.6463245492371685, + "c4": 3.7170596393897424, + "c5": 2.7877947295422976, + "c6": 1.8585298196948712, + "c7": 0.9292649098474448 }, "rgb": [238, 201, 159] }, @@ -233961,23 +233961,23 @@ "year": 1772, "resistanceReported": false, "duration": 3628800, - "curveSeeds": { - "c1": -7.746827904774346, - "c2": 5.913102357986258, - "c3": -3.846650280659972, - "c4": 0.23722815392494034, - "c5": 6.793520288253518, - "c6": -9.128554151505943, - "c7": -4.930851814821537 + "points": { + "c1": 3.102578934974229, + "c2": 15.558529314718069, + "c3": 0.9434987341491663, + "c4": 6.236155031573087, + "c5": 2.986701268047355, + "c6": 4.969543324177323, + "c7": 9.120865696850245 }, - "vertexSeeds": { - "c1": 3.543231088811269, - "c2": 3.4713648045063508, - "c3": 3.536328973590598, - "c4": 3.434212303742967, - "c5": 3.5402935416155685, - "c6": 3.432906132926871, - "c7": 3.5321598673520223 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441057, + "c3": 4.276467868700884, + "c4": 3.4211742949607116, + "c5": 2.5658807212205392, + "c6": 1.7105871474803451, + "c7": 0.8552935737401726 }, "rgb": [77, 76, 132] }, @@ -233988,23 +233988,23 @@ "year": 1772, "resistanceReported": false, "duration": 3456000, - "curveSeeds": { - "c1": 7.346924591552167, - "c2": 5.494522744082307, - "c3": 3.2449395110690276, - "c4": -1.075868820107793, - "c5": 9.134870124922024, - "c6": 9.124984338568527, - "c7": -7.4119579081755615 + "points": { + "c1": -5.536362747084873, + "c2": 4.204155839080563, + "c3": -4.009900505687874, + "c4": -2.9442339547441385, + "c5": -12.870013090928472, + "c6": 13.518274260332486, + "c7": 8.125365355093816 }, - "vertexSeeds": { - "c1": 6.606520507106722, - "c2": 5.96635472353441, - "c3": 6.557540357959097, - "c4": 5.691403261599046, - "c5": 6.695385447934287, - "c6": 6.812779174285158, - "c7": 6.565445669718087 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -234015,23 +234015,23 @@ "year": 1772, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -9.171320531491336, - "c2": -24.112787540871903, - "c3": 18.62828174153239, - "c4": 12.742672006281303, - "c5": -11.673261264168769, - "c6": 20.63238141222977, - "c7": -24.711216507932953 + "points": { + "c1": 22.96261493847699, + "c2": -32.660252267487216, + "c3": -17.558921134448653, + "c4": -22.920937576701323, + "c5": 0.6742122857823745, + "c6": 23.956813577518936, + "c7": -21.025956063324873 }, - "vertexSeeds": { - "c1": 4.0485390137754464, - "c2": 4.462394916157235, - "c3": 4.17310295908535, - "c4": 4.073911263453969, - "c5": 4.126309270984727, - "c6": 3.9900869230137315, - "c7": 4.298991825293955 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.409153952843274, + "c4": 4.327323162274617, + "c5": 3.245492371705966, + "c6": 2.1636615811373145, + "c7": 1.0818307905686573 }, "rgb": [58, 15, 49] }, @@ -234042,23 +234042,23 @@ "year": 1773, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 5.699426046022985, - "c2": 25.783417149432502, - "c3": 38.61637331007321, - "c4": 20.221621943826456, - "c5": -3.093958474406307, - "c6": 19.234576329895567, - "c7": 27.86270378095474 + "points": { + "c1": 39.39921901854567, + "c2": -38.42199916855678, + "c3": -43.73902747069925, + "c4": 2.9204286603544816, + "c5": 0.9190645651471954, + "c6": 37.78139698379872, + "c7": 14.00682547541755 }, - "vertexSeeds": { - "c1": 4.120021384731542, - "c2": 4.4316571002869125, - "c3": 4.654590334194157, - "c4": 4.230682177944243, - "c5": 4.249219953569371, - "c6": 4.229140376520084, - "c7": 4.69129962274751 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -234069,23 +234069,23 @@ "year": 1772, "resistanceReported": false, "duration": 2937600, - "curveSeeds": { - "c1": 2.2671301236615093, - "c2": 7.110553128422286, - "c3": 6.396371485964018, - "c4": -6.310857287673983, - "c5": 9.706805526311445, - "c6": -12.389258355541424, - "c7": -6.445169992980083 + "points": { + "c1": -8.998111133788571, + "c2": -13.431361528048434, + "c3": 1.0478715517211548, + "c4": 4.551776655569995, + "c5": 10.23091807279058, + "c6": 6.706185480996496, + "c7": 14.343458646654152 }, - "vertexSeeds": { - "c1": 4.857220979110697, - "c2": 4.879898499771087, - "c3": 4.728823692152379, - "c4": 4.621295414335501, - "c5": 5.107736046507215, - "c6": 4.577038570281317, - "c7": 4.654005337830476 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -234096,23 +234096,23 @@ "year": 1773, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": -51.560938999798886, - "c2": 44.46794295926546, - "c3": -28.098443562491187, - "c4": 4.48825346544502, - "c5": -30.555261567243193, - "c6": 8.579019025114093, - "c7": 18.445288292754512 + "points": { + "c1": 6.651683837829665, + "c2": -11.837235084891702, + "c3": 0.3007812050076737, + "c4": -57.09130749332315, + "c5": 56.959381913541506, + "c6": -57.923061256083926, + "c7": 49.5660084642724 }, - "vertexSeeds": { - "c1": 6.204921072662056, - "c2": 6.3527404193183505, - "c3": 6.467330159343131, - "c4": 6.3147412487908925, - "c5": 6.399591976916941, - "c6": 6.13676033056796, - "c7": 6.42778165364252 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434106, + "c3": 7.720758206195103, + "c4": 6.176606564956072, + "c5": 4.632454923717067, + "c6": 3.088303282478036, + "c7": 1.544151641239004 }, "rgb": [86, 146, 138] }, @@ -234123,23 +234123,23 @@ "year": 1773, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 8.569966838548787, - "c2": -38.13113300545561, - "c3": 46.19528528307353, - "c4": 25.612678099900435, - "c5": 31.73594247411937, - "c6": -13.75263601257948, - "c7": 34.72594384909088 + "points": { + "c1": 46.13449698321844, + "c2": -11.697715607522177, + "c3": -0.7522544736650758, + "c4": 35.61585268935876, + "c5": -8.102925372840332, + "c6": 36.99104662296105, + "c7": -5.177183188421402 }, - "vertexSeeds": { - "c1": 4.41962729426005, - "c2": 3.8187415702976097, - "c3": 4.221798131286725, - "c4": 4.430227202921255, - "c5": 3.839562137964885, - "c6": 3.8883761298660047, - "c7": 4.020985599335913 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -234150,23 +234150,23 @@ "year": 1772, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -42.5655954075957, - "c2": -2.970665917016369, - "c3": -22.70768068087696, - "c4": 19.358079851308077, - "c5": -24.51238374995324, - "c6": -34.18344777368401, - "c7": -18.624497282498236 + "points": { + "c1": -31.26686453549511, + "c2": 4.074652619423752, + "c3": 13.01467429423392, + "c4": 41.35288310912898, + "c5": -37.92734738189847, + "c6": -32.38048482775488, + "c7": 37.72716662500274 }, - "vertexSeeds": { - "c1": 6.129868346733785, - "c2": 6.108538232496514, - "c3": 6.12153213820333, - "c4": 6.156455036074508, - "c5": 6.153127183132047, - "c6": 6.141251123469518, - "c7": 6.099350916452011 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790611, + "c3": 7.350901525658745, + "c4": 5.880721220527025, + "c5": 4.4105409153953055, + "c6": 2.9403606102634394, + "c7": 1.4701803051317197 }, "rgb": [222, 0, 59] }, @@ -234177,23 +234177,23 @@ "year": 1773, "resistanceReported": false, "duration": 45187200, - "curveSeeds": { - "c1": -55.51416483850782, - "c2": 29.272533645126465, - "c3": -20.745948209026423, - "c4": -49.14730774421904, - "c5": -43.90277454849286, - "c6": -58.29427575382997, - "c7": -30.84530449127124 + "points": { + "c1": -51.5739013871291, + "c2": 2.228561584731935, + "c3": 49.00246865986758, + "c4": -14.770764498804773, + "c5": 38.390567579393384, + "c6": -21.963623276958096, + "c7": 12.232101043916082 }, - "vertexSeeds": { - "c1": 5.267362399755645, - "c2": 5.422006943063046, - "c3": 4.86451224755745, - "c4": 5.252036929590104, - "c5": 5.398370183162914, - "c6": 5.474856217203699, - "c7": 5.067776615441608 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [77, 76, 132] }, @@ -234204,23 +234204,23 @@ "year": 1772, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 16.75971959185204, - "c2": -0.19822505020860604, - "c3": 42.162989706615505, - "c4": -35.35124138057526, - "c5": -21.968125134990444, - "c6": -0.4362310344328293, - "c7": 24.181343061657714 + "points": { + "c1": 35.99413057966642, + "c2": -25.135032365749048, + "c3": 8.184294016126145, + "c4": -30.684986403099053, + "c5": 27.143670378856697, + "c6": -8.166736120937045, + "c7": 39.295291539977 }, - "vertexSeeds": { - "c1": 6.136549561096251, - "c2": 5.957875137304707, - "c3": 6.156899925469481, - "c4": 6.124415076053699, - "c5": 5.863738330091018, - "c6": 5.8274431138740335, - "c7": 6.133537698622264 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951443, + "c3": 7.443365695792884, + "c4": 5.954692556634297, + "c5": 4.466019417475736, + "c6": 2.9773462783171487, + "c7": 1.4886731391585875 }, "rgb": [86, 146, 138] }, @@ -234231,23 +234231,23 @@ "year": 1772, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 27.47031655954627, - "c2": 7.194422619560143, - "c3": -11.998708217302138, - "c4": -31.563832029718828, - "c5": -18.410605040212808, - "c6": -31.61600126265661, - "c7": 11.634599202718334 + "points": { + "c1": -28.105701722485893, + "c2": 31.787978632652198, + "c3": -19.07374041982549, + "c4": -20.9208847004012, + "c5": 26.52087531233576, + "c6": 34.20887668697962, + "c7": 3.477211421847784 }, - "vertexSeeds": { - "c1": 2.5187833442730323, - "c2": 2.5361782387216696, - "c3": 2.455302177635452, - "c4": 2.5514598295940862, - "c5": 2.720089132341912, - "c6": 2.5774974650900915, - "c7": 2.4769443400259736 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712864, + "c3": 3.2593619972260757, + "c4": 2.6074895977808574, + "c5": 1.9556171983356472, + "c6": 1.3037447988904287, + "c7": 0.6518723994452144 }, "rgb": [86, 146, 138] }, @@ -234258,23 +234258,23 @@ "year": 1772, "resistanceReported": false, "duration": 1382400, - "curveSeeds": { - "c1": -1.1779237193253067, - "c2": -10.974842677698888, - "c3": -0.4979351962942751, - "c4": 10.050753286526518, - "c5": -8.857183589540506, - "c6": 3.7566610015216053, - "c7": -7.836813259229718 + "points": { + "c1": 1.1719293808823448, + "c2": 4.550533593780369, + "c3": -11.608442836452408, + "c4": -0.24956034183598774, + "c5": -12.099100137432712, + "c6": 7.876607200369705, + "c7": -4.907409093993934 }, - "vertexSeeds": { - "c1": 6.4225366761730545, - "c2": 5.900233190588344, - "c3": 6.2090674470454195, - "c4": 6.35369417557994, - "c5": 5.866436934577695, - "c6": 5.562598447445217, - "c7": 6.319830609002211 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -234285,23 +234285,23 @@ "year": 1772, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -3.7874754659353513, - "c2": -33.252976951237734, - "c3": -11.900372039078594, - "c4": 32.61306930030919, - "c5": -9.594583441074747, - "c6": 30.038986878910734, - "c7": 32.26047881429071 + "points": { + "c1": 7.819070473633616, + "c2": -7.159313876449538, + "c3": -22.399279222401596, + "c4": 23.722173779419485, + "c5": -1.7015197289319062, + "c6": 24.01636164797946, + "c7": 16.31813599036034 }, - "vertexSeeds": { - "c1": 9.896244503655803, - "c2": 10.305992528388007, - "c3": 9.416947130674174, - "c4": 10.06151723450895, - "c5": 9.445505100613897, - "c6": 10.148285411891255, - "c7": 9.54997985976561 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438266, + "c3": 12.32085067036525, + "c4": 9.856680536292192, + "c5": 7.392510402219133, + "c6": 4.928340268146096, + "c7": 2.4641701340730586 }, "rgb": [238, 201, 159] }, @@ -234312,23 +234312,23 @@ "year": 1773, "resistanceReported": false, "duration": 47001600, - "curveSeeds": { - "c1": 29.23915289396671, - "c2": 21.382273764665406, - "c3": -10.369455176409467, - "c4": -53.935434204026315, - "c5": -36.08677556514262, - "c6": 6.687025995427057, - "c7": -51.081048377314275 + "points": { + "c1": 38.339833073265886, + "c2": -14.86368384351971, + "c3": -24.523401270253245, + "c4": 37.31885828827331, + "c5": 60.022015386548624, + "c6": -3.7217543520067053, + "c7": 34.564717167406535 }, - "vertexSeeds": { - "c1": 4.15645787586036, - "c2": 4.034263420349258, - "c3": 4.344373275768113, - "c4": 4.515563929083428, - "c5": 4.282436173105276, - "c6": 4.639868882396691, - "c7": 4.796844142508126 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -234339,23 +234339,23 @@ "year": 1772, "resistanceReported": false, "duration": 777600, - "curveSeeds": { - "c1": 4.712499871337203, - "c2": 9.266450473816818, - "c3": 1.0944061571745607, - "c4": -1.166357169545151, - "c5": -1.258917242126067, - "c6": -6.912892764125569, - "c7": -4.706067900883295 + "points": { + "c1": 6.519420634236834, + "c2": 1.4912349785870145, + "c3": -0.18047925329192438, + "c4": 7.598366044744054, + "c5": -8.662318772576757, + "c6": 2.3023397769075267, + "c7": -1.330713571945985 }, - "vertexSeeds": { - "c1": 4.841729382756462, - "c2": 4.792146819274581, - "c3": 4.820894497431846, - "c4": 4.7887994437665045, - "c5": 4.781298924332112, - "c6": 4.810371242597136, - "c7": 4.760320623647406 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256598, + "c3": 5.894590846047154, + "c4": 4.715672676837733, + "c5": 3.5367545076282876, + "c6": 2.3578363384188665, + "c7": 1.1789181692094213 }, "rgb": [58, 15, 49] }, @@ -234366,23 +234366,23 @@ "year": 1772, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": 7.159570380694788, - "c2": 15.483998231504764, - "c3": -5.083587855812427, - "c4": -18.851880438508143, - "c5": -5.129668953931413, - "c6": 2.194836951623067, - "c7": 13.717616344161755 + "points": { + "c1": -2.072227835183636, + "c2": 21.616645562239597, + "c3": -16.337948407170295, + "c4": -16.100310976803073, + "c5": -10.019645029192784, + "c6": -14.196184413606172, + "c7": 18.693930129757376 }, - "vertexSeeds": { - "c1": 3.467591005394288, - "c2": 3.4721489945075468, - "c3": 3.4453107901135676, - "c4": 3.44321352793378, - "c5": 3.435541988282317, - "c6": 3.4190497506619066, - "c7": 3.446689817732469 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239927, + "c3": 4.160887656033293, + "c4": 3.328710124826618, + "c5": 2.496532593619984, + "c6": 1.664355062413309, + "c7": 0.8321775312066751 }, "rgb": [86, 146, 138] }, @@ -234393,23 +234393,23 @@ "year": 1773, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": 8.60192181283351, - "c2": 12.729235117908196, - "c3": -17.916024683551882, - "c4": 29.022311563851822, - "c5": -42.387930344355915, - "c6": -34.01122601615534, - "c7": 0.3020559316274145 + "points": { + "c1": 48.194341075909925, + "c2": 32.98442547497667, + "c3": -35.20024262527929, + "c4": -44.64926674606917, + "c5": -26.151140190588155, + "c6": -35.01704439250025, + "c7": 16.73557768580725 }, - "vertexSeeds": { - "c1": 3.7407587618229177, - "c2": 3.681244473909625, - "c3": 3.5013006191396068, - "c4": 3.540365466894811, - "c5": 3.649230080409601, - "c6": 4.021424644079053, - "c7": 3.865082834912994 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687932, + "c3": 4.993065187239946, + "c4": 3.9944521497919543, + "c5": 2.9958391123439685, + "c6": 1.9972260748959771, + "c7": 0.998613037447991 }, "rgb": [222, 0, 59] }, @@ -234420,23 +234420,23 @@ "year": 1772, "resistanceReported": false, "duration": 172800, - "curveSeeds": { - "c1": 0.2380859290097348, - "c2": -9.073671497459843, - "c3": -3.2855192661349015, - "c4": 8.3483594728054, - "c5": 5.912059756419312, - "c6": -3.8248021147610958, - "c7": -1.0892475113656186 + "points": { + "c1": -11.70043765110987, + "c2": -6.345719695037023, + "c3": -6.749334971710734, + "c4": 5.0804613867636, + "c5": 3.554018582035514, + "c6": 5.300448117606718, + "c7": 5.560330048878432 }, - "vertexSeeds": { - "c1": 6.711871385987588, - "c2": 6.6979758202770245, - "c3": 6.317261968746827, - "c4": 6.1413072030415705, - "c5": 5.832240712222673, - "c6": 5.627157168194382, - "c7": 6.686846774718836 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -234447,23 +234447,23 @@ "year": 1772, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 27.457208290804616, - "c2": 38.018502969855376, - "c3": -23.963154084057354, - "c4": -35.08723752139315, - "c5": 36.97291946013577, - "c6": 29.053476194405874, - "c7": -18.508406206037098 + "points": { + "c1": 5.094399362741235, + "c2": 27.151075722995188, + "c3": -38.252731550571326, + "c4": 39.513962281781005, + "c5": 23.025233608844594, + "c6": -33.62751885935046, + "c7": 28.386628271999953 }, - "vertexSeeds": { - "c1": 5.255983652249684, - "c2": 5.47110687905945, - "c3": 5.429409798772084, - "c4": 5.3258747787846525, - "c5": 5.278638831478607, - "c6": 5.363042127406714, - "c7": 5.463755586540307 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664366, + "c3": 6.703652334720291, + "c4": 5.362921867776245, + "c5": 4.02219140083217, + "c6": 2.6814609338881223, + "c7": 1.3407304669440745 }, "rgb": [222, 0, 59] }, @@ -234474,23 +234474,23 @@ "year": 1772, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 12.417814691849074, - "c2": 26.846334031457083, - "c3": 10.708882637824509, - "c4": -4.91667034644674, - "c5": -15.711116526638474, - "c6": 5.910827349867716, - "c7": 8.778608099490974 + "points": { + "c1": 16.00043939884233, + "c2": 19.26650970253739, + "c3": -22.87368199982329, + "c4": 14.134223884767636, + "c5": 24.85171311156339, + "c6": -12.426649523851395, + "c7": 7.9936822407231745 }, - "vertexSeeds": { - "c1": 5.628354856381454, - "c2": 5.553291300223606, - "c3": 5.719201667688138, - "c4": 5.964619093614336, - "c5": 5.552133707140334, - "c6": 5.928558109217189, - "c7": 5.596639557855735 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [222, 0, 59] }, @@ -234501,23 +234501,23 @@ "year": 1772, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -2.063554104638264, - "c2": -15.600531728895664, - "c3": -15.928107729096187, - "c4": -23.45085015315934, - "c5": 4.035193366785045, - "c6": -13.310561067659659, - "c7": -1.696829349887544 + "points": { + "c1": -42.15886825180509, + "c2": 43.148023857134966, + "c3": 42.00147298969383, + "c4": -2.583120698791987, + "c5": -15.411021440605865, + "c6": -29.569591132228545, + "c7": -24.708013523365935 }, - "vertexSeeds": { - "c1": 5.634715025906736, - "c2": 5.634715025906736, - "c3": 5.634715025906736, - "c4": 5.634715025906736, - "c5": 5.634715025906736, - "c6": 5.634715025906736, - "c7": 5.634715025906736 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -234528,23 +234528,23 @@ "year": 1773, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": -18.137108161235897, - "c2": 9.742357863025951, - "c3": -29.60412562649073, - "c4": 30.364296596879747, - "c5": 38.87437074406974, - "c6": 34.75461623444361, - "c7": -17.51128579869849 + "points": { + "c1": 28.772063679145226, + "c2": -44.54621758553976, + "c3": -7.132975134831931, + "c4": 34.49102325311494, + "c5": -4.811203915145676, + "c6": -19.523824107263316, + "c7": 3.42959409265346 }, - "vertexSeeds": { - "c1": 3.1571127445357745, - "c2": 3.151605247170599, - "c3": 3.243333434492471, - "c4": 2.9411587568784645, - "c5": 3.0139165807464483, - "c6": 3.0757106797326985, - "c7": 3.1261634393193183 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -234555,23 +234555,23 @@ "year": 1772, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -21.127937382959946, - "c2": -3.984510444638616, - "c3": -19.12467660145847, - "c4": -21.420116952489963, - "c5": 36.560002141655346, - "c6": 9.293341698060786, - "c7": 20.73350175666271 + "points": { + "c1": 33.87383385130239, + "c2": -31.167962327870647, + "c3": 5.614494383568243, + "c4": -18.35428062337, + "c5": -5.761469067309406, + "c6": 33.53564138850841, + "c7": -4.171085234654839 }, - "vertexSeeds": { - "c1": 3.209038912309933, - "c2": 2.9492885491828447, - "c3": 3.233264710187013, - "c4": 3.174149482240556, - "c5": 3.1668024442317892, - "c6": 2.9151240577586455, - "c7": 2.9908893927732634 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -234582,23 +234582,23 @@ "year": 1773, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": 41.90789141246003, - "c2": 8.376124120643446, - "c3": -25.149588265855748, - "c4": -42.57051615169853, - "c5": 52.608529307921074, - "c6": -11.817874140578247, - "c7": 15.411756412150197 + "points": { + "c1": -22.721021242036464, + "c2": 54.70281143542218, + "c3": -41.712873628136194, + "c4": 17.225256144088277, + "c5": 35.59346481436273, + "c6": 41.654280576825144, + "c7": -34.9027960330684 }, - "vertexSeeds": { - "c1": 4.567335051990313, - "c2": 4.369324455408766, - "c3": 4.510276610841169, - "c4": 4.475058592092511, - "c5": 4.550673551518779, - "c6": 4.521708993764714, - "c7": 4.6136543292385515 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693485, + "c3": 5.570966250577909, + "c4": 4.456773000462319, + "c5": 3.3425797503467427, + "c6": 2.2283865002311667, + "c7": 1.1141932501155762 }, "rgb": [77, 76, 132] }, @@ -234609,23 +234609,23 @@ "year": 1773, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": 17.547697693691617, - "c2": -35.49501785936109, - "c3": 30.666751188492327, - "c4": -33.802964051978236, - "c5": -29.465965676550315, - "c6": 38.289568480987285, - "c7": -43.19016154713955 + "points": { + "c1": 0.319216028261458, + "c2": -28.636741003279273, + "c3": -35.86096937494213, + "c4": -22.11407594100345, + "c5": 39.18579339891885, + "c6": 17.51076780236636, + "c7": 35.9837751223087 }, - "vertexSeeds": { - "c1": 4.104112453897964, - "c2": 3.9312651319709175, - "c3": 4.519956227387018, - "c4": 4.044247978612639, - "c5": 4.4648431506221105, - "c6": 4.217714277863869, - "c7": 4.323624640254514 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492372, + "c3": 5.455386037910311, + "c4": 4.364308830328244, + "c5": 3.273231622746183, + "c6": 2.182154415164122, + "c7": 1.091077207582061 }, "rgb": [86, 146, 138] }, @@ -234636,23 +234636,23 @@ "year": 1773, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 45.18418572511639, - "c2": -29.194030516278904, - "c3": -8.476753990568064, - "c4": 30.968321779529234, - "c5": -25.04310735564068, - "c6": -17.23044826555602, - "c7": 5.84455110507642 + "points": { + "c1": -33.83861099984069, + "c2": -43.32301138140116, + "c3": 34.958228364900975, + "c4": -36.80590285401898, + "c5": -33.580996449417086, + "c6": 15.543946038751805, + "c7": 3.313393782572959 }, - "vertexSeeds": { - "c1": 2.613896039166647, - "c2": 2.5789823677427126, - "c3": 2.7102956844747954, - "c4": 2.6717282941769147, - "c5": 2.8535635009214575, - "c6": 2.7611180956830137, - "c7": 2.813942286285198 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073512, + "c3": 3.4905224225612566, + "c4": 2.792417938049008, + "c5": 2.0943134535367522, + "c6": 1.396208969024504, + "c7": 0.6981044845122557 }, "rgb": [86, 146, 138] }, @@ -234663,23 +234663,23 @@ "year": 1773, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 38.80210503220459, - "c2": -15.718065679548701, - "c3": -35.553478775759224, - "c4": -13.150488516403179, - "c5": 35.274704492545304, - "c6": -6.060616000869274, - "c7": 9.74006147339427 + "points": { + "c1": 46.373799291725696, + "c2": 14.075346079350489, + "c3": 8.280740144383003, + "c4": 24.546606677880938, + "c5": 17.19998711661541, + "c6": -31.443089764108084, + "c7": -23.357836539398555 }, - "vertexSeeds": { - "c1": 1.8069948186528497, - "c2": 1.8069948186528497, - "c3": 1.8069948186528497, - "c4": 1.8069948186528497, - "c5": 1.8069948186528497, - "c6": 1.8069948186528497, - "c7": 1.8069948186528497 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -234690,23 +234690,23 @@ "year": 1773, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -12.171431863812387, - "c2": 17.832265913032394, - "c3": 25.09075031106319, - "c4": -19.610875335503685, - "c5": -41.517941656637305, - "c6": 10.055839598458256, - "c7": -17.1975089914881 + "points": { + "c1": -41.63305020383045, + "c2": -14.485034741314848, + "c3": -16.39770606735565, + "c4": -4.183566038201981, + "c5": -43.39013515672095, + "c6": 40.057813389224506, + "c7": 23.24886653005683 }, - "vertexSeeds": { - "c1": 2.7877805205080786, - "c2": 2.8157866684628754, - "c3": 2.7087569704378938, - "c4": 2.801249069305951, - "c5": 2.6828384782344172, - "c6": 2.6112551546831027, - "c7": 2.6834330389473617 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -234717,23 +234717,23 @@ "year": 1773, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 31.116961816102418, - "c2": -29.899040567252925, - "c3": -35.463901421435764, - "c4": 31.691109358766525, - "c5": -10.197852097103926, - "c6": 44.29169343556761, - "c7": 8.461119439929917 + "points": { + "c1": 31.603938985739603, + "c2": -43.91628162777506, + "c3": 7.22421768396314, + "c4": -19.044785605259552, + "c5": 8.85293117740762, + "c6": 11.196963321695833, + "c7": -2.590186541121568 }, - "vertexSeeds": { - "c1": 3.140293747071922, - "c2": 3.417431961160365, - "c3": 2.9800390049538064, - "c4": 3.3010063360297774, - "c5": 3.160108222403058, - "c6": 3.4987212319490517, - "c7": 3.248482895782186 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320389, + "c3": 4.207119741100325, + "c4": 3.365695792880261, + "c5": 2.5242718446601917, + "c6": 1.6828478964401277, + "c7": 0.8414239482200638 }, "rgb": [238, 201, 159] }, @@ -234744,23 +234744,23 @@ "year": 1772, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 10.153737770881712, - "c2": 14.429377441742353, - "c3": 6.448021620664413, - "c4": -21.65465076167012, - "c5": -19.543431320367993, - "c6": -2.7464501312512475, - "c7": -6.379022537146572 + "points": { + "c1": 10.244610705755363, + "c2": -22.411641208154325, + "c3": 2.6532699552858645, + "c4": 17.205277096030287, + "c5": -24.04091174275637, + "c6": 4.886528312893802, + "c7": 18.339752575884603 }, - "vertexSeeds": { - "c1": 6.788902458686626, - "c2": 6.78227023518623, - "c3": 6.36342500688308, - "c4": 6.313683693994357, - "c5": 5.827528897244288, - "c6": 5.911585452151753, - "c7": 6.230156021727708 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.20619509939898, + "c4": 6.564956079519189, + "c5": 4.923717059639396, + "c6": 3.2824780397595945, + "c7": 1.6412390198798021 }, "rgb": [77, 76, 132] }, @@ -234771,23 +234771,23 @@ "year": 1773, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -20.587488534517124, - "c2": 30.99109826386563, - "c3": 2.9716485807725874, - "c4": -8.893939400237905, - "c5": -13.547254451560693, - "c6": 1.8320049733579822, - "c7": 39.58132583107619 + "points": { + "c1": -7.082102474453784, + "c2": -10.108732392094424, + "c3": 14.38993964013548, + "c4": 19.32244176930262, + "c5": 16.64004797641931, + "c6": 22.812414386325266, + "c7": -1.5809128754278632 }, - "vertexSeeds": { - "c1": 2.402539532146432, - "c2": 2.6766836090155026, - "c3": 2.41666714386497, - "c4": 2.394743869689614, - "c5": 2.648344378071958, - "c6": 2.5589604188548067, - "c7": 2.561768170090613 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631067, + "c3": 3.236245954692555, + "c4": 2.5889967637540425, + "c5": 1.94174757281553, + "c6": 1.2944983818770213, + "c7": 0.6472491909385123 }, "rgb": [222, 0, 59] }, @@ -234798,23 +234798,23 @@ "year": 1772, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 25.153134588266994, - "c2": -5.902828794858138, - "c3": 13.60032644614342, - "c4": 36.53734433908199, - "c5": 32.51082319009537, - "c6": 31.362420916724552, - "c7": -6.4114399422362744 + "points": { + "c1": -30.44713602840821, + "c2": 23.03265069689894, + "c3": -3.189061903521562, + "c4": -36.91708244576752, + "c5": -17.619210062552277, + "c6": 6.5979288919098025, + "c7": 7.58871048568232 }, - "vertexSeeds": { - "c1": 2.6051048968760995, - "c2": 2.5325140705246567, - "c3": 2.7265384616147252, - "c4": 2.5389247765026433, - "c5": 2.3984798608632625, - "c6": 2.553798148552433, - "c7": 2.4892465803349144 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.938973647711511, + "c3": 3.282478039759592, + "c4": 2.6259824318076723, + "c5": 1.9694868238557555, + "c6": 1.3129912159038362, + "c7": 0.6564956079519194 }, "rgb": [222, 0, 59] }, @@ -234825,23 +234825,23 @@ "year": 1773, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 37.03305844081709, - "c2": 27.367492243880925, - "c3": -13.578641256638825, - "c4": -6.7118462483379915, - "c5": -11.250703099148637, - "c6": -3.8585953846706786, - "c7": 15.074793030667742 + "points": { + "c1": -25.99413888550944, + "c2": 34.69075601725776, + "c3": -32.30208786315133, + "c4": -6.609322543374979, + "c5": -7.269274138181508, + "c6": 2.8817863453536603, + "c7": 35.89622396373827 }, - "vertexSeeds": { - "c1": 6.474573600178024, - "c2": 6.59080813573574, - "c3": 5.835629941704117, - "c4": 6.657408205554246, - "c5": 5.997516156097002, - "c6": 5.801225448973824, - "c7": 6.25997750077631 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -234852,23 +234852,23 @@ "year": 1773, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -17.066853949994844, - "c2": -24.535410991804582, - "c3": -20.358985649148682, - "c4": 16.008378377962558, - "c5": -27.688995612956504, - "c6": 2.667091942371705, - "c7": 33.84048130476342 + "points": { + "c1": 4.206318396707545, + "c2": 12.420843811966002, + "c3": -0.4567443217361884, + "c4": -22.861295028530144, + "c5": 23.601997904169245, + "c6": 24.817967072481245, + "c7": -24.886506544856424 }, - "vertexSeeds": { - "c1": 6.182095999548321, - "c2": 6.713233058184553, - "c3": 6.1527545762580695, - "c4": 6.651349742819781, - "c5": 6.859664825714053, - "c6": 6.384854208996169, - "c7": 7.084452784897003 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [77, 76, 132] }, @@ -234879,23 +234879,23 @@ "year": 1772, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 29.20575550881368, - "c2": -32.20613823352397, - "c3": -19.652595519869294, - "c4": -16.87907960304416, - "c5": 24.28221437341241, - "c6": -20.870640435434375, - "c7": -5.028191215856822 + "points": { + "c1": 18.26481987973804, + "c2": 24.942258084002106, + "c3": -27.452166932927334, + "c4": -24.643289961449746, + "c5": 35.41818207675682, + "c6": 25.001946954441742, + "c7": -32.787324912123935 }, - "vertexSeeds": { - "c1": 6.2196002844213005, - "c2": 6.5276839157761755, - "c3": 6.128448037976918, - "c4": 6.3236874827500955, - "c5": 6.409363875201919, - "c6": 5.699039572122559, - "c7": 6.324247025683411 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996762, + "c4": 6.343042071197408, + "c5": 4.757281553398053, + "c6": 3.171521035598699, + "c7": 1.5857605177993441 }, "rgb": [77, 76, 132] }, @@ -234906,23 +234906,23 @@ "year": 1772, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -27.673825225817758, - "c2": 1.787943565116798, - "c3": -10.404667828293167, - "c4": -28.214586375161524, - "c5": -17.564141708579488, - "c6": -17.336235659343927, - "c7": -34.436507738492146 + "points": { + "c1": 29.636077575654213, + "c2": -31.83711295885851, + "c3": 17.15287573968881, + "c4": -0.9231933390721139, + "c5": 2.357245786665956, + "c6": -30.84068982990454, + "c7": 4.653450245177851 }, - "vertexSeeds": { - "c1": 7.8774088712108945, - "c2": 7.9346228025106855, - "c3": 7.894702282128578, - "c4": 7.9051021577567, - "c5": 7.844280854786854, - "c6": 8.051346213670506, - "c7": 7.959900852237793 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.65048543689322, + "c3": 9.708737864077664, + "c4": 7.766990291262148, + "c5": 5.8252427184465905, + "c6": 3.883495145631074, + "c7": 1.941747572815556 }, "rgb": [77, 76, 132] }, @@ -234933,23 +234933,23 @@ "year": 1774, "resistanceReported": false, "duration": 61516800, - "curveSeeds": { - "c1": -9.663294575874517, - "c2": 31.5291989100253, - "c3": 38.042522487300175, - "c4": -52.76650265109685, - "c5": -37.515569087803286, - "c6": -22.30716050510066, - "c7": 2.475807710986942 + "points": { + "c1": -61.26988427000448, + "c2": 79.15798216966682, + "c3": 24.917648452159895, + "c4": -68.39153627971824, + "c5": -18.390314721797267, + "c6": -24.45480812077654, + "c7": -49.054315918300524 }, - "vertexSeeds": { - "c1": 2.9713068798488704, - "c2": 2.9955154901701873, - "c3": 3.1678198443936867, - "c4": 3.2075708125324742, - "c5": 3.0705465255073183, - "c6": 2.9463703066180242, - "c7": 3.016928016039711 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -234960,23 +234960,23 @@ "year": 1773, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 16.84926432111949, - "c2": 24.372081341260227, - "c3": 2.054176184248675, - "c4": 37.74692276427727, - "c5": 3.917956489936529, - "c6": -19.841967661163494, - "c7": 23.610211444908586 + "points": { + "c1": -25.39664790845997, + "c2": -8.717737682899894, + "c3": 32.65024662489476, + "c4": -8.03452939837426, + "c5": -8.758750407453675, + "c6": 14.87166861348421, + "c7": 17.424188475020053 }, - "vertexSeeds": { - "c1": 3.131336670951279, - "c2": 3.2262200913875514, - "c3": 3.1530419873683364, - "c4": 3.245913436052299, - "c5": 3.2962535515287237, - "c6": 3.025777355737762, - "c7": 3.0418518702346886 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -234987,23 +234987,23 @@ "year": 1772, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -27.527345552947022, - "c2": -4.512047109787677, - "c3": 2.355309278110475, - "c4": 29.02040358865728, - "c5": -13.348485661153111, - "c6": -10.441558089893654, - "c7": 5.343609609564297 + "points": { + "c1": -14.958774172488948, + "c2": -9.874464979486262, + "c3": 21.34362242519635, + "c4": -9.356818635951491, + "c5": 11.060178958170852, + "c6": 10.42291314646134, + "c7": -29.02659557819733 }, - "vertexSeeds": { - "c1": 1.978783874122402, - "c2": 1.7483011034949216, - "c3": 2.0456027820128275, - "c4": 1.7070314337615833, - "c5": 1.7676861038208285, - "c6": 1.9128078928624097, - "c7": 1.8807329056460205 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.5427646786870097, + "c4": 2.034211742949607, + "c5": 1.525658807212205, + "c6": 1.0171058714748027, + "c7": 0.5085529357374023 }, "rgb": [238, 201, 159] }, @@ -235014,23 +235014,23 @@ "year": 1773, "resistanceReported": false, "duration": 43372800, - "curveSeeds": { - "c1": -15.2066378057729, - "c2": -25.08355417937652, - "c3": -43.77378369872195, - "c4": -2.842662394262099, - "c5": 9.374865273574187, - "c6": -51.75631623753351, - "c7": 16.230404748253193 + "points": { + "c1": -16.32742254863639, + "c2": 28.031811899434345, + "c3": 23.421023528712112, + "c4": -11.211901141207619, + "c5": -58.682603286514926, + "c6": 0.13659382742150683, + "c7": -21.38510514190994 }, - "vertexSeeds": { - "c1": 7.03506900631975, - "c2": 7.144805214065509, - "c3": 6.898149965788859, - "c4": 7.031686785422921, - "c5": 7.2249089045962736, - "c6": 7.554540403437785, - "c7": 7.296505805341043 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847436, + "c3": 9.1077207582062, + "c4": 7.286176606564962, + "c5": 5.464632454923725, + "c6": 3.643088303282488, + "c7": 1.8215441516412507 }, "rgb": [86, 146, 138] }, @@ -235041,23 +235041,23 @@ "year": 1772, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 26.472936824149343, - "c2": 29.4173519074141, - "c3": 19.372816628144413, - "c4": 1.8671399605357237, - "c5": -5.671684802320286, - "c6": -23.41794856833863, - "c7": 1.4677048453889796 + "points": { + "c1": -18.172877537925128, + "c2": 38.09174543230827, + "c3": -15.993220554071208, + "c4": -6.746156244588349, + "c5": -15.010222839734698, + "c6": 3.9549152702305648, + "c7": 21.743178850996856 }, - "vertexSeeds": { - "c1": 6.507027670438403, - "c2": 6.319980760280348, - "c3": 6.47595846920583, - "c4": 6.332988984541727, - "c5": 6.300133451324079, - "c6": 6.362955990629704, - "c7": 6.338899971412701 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951458, + "c3": 7.766990291262168, + "c4": 6.2135922330097015, + "c5": 4.66019417475729, + "c6": 3.1067961165048783, + "c7": 1.5533980582524112 }, "rgb": [86, 146, 138] }, @@ -235068,23 +235068,23 @@ "year": 1772, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -20.621217440443463, - "c2": 20.569646304630396, - "c3": 4.07360392256642, - "c4": -2.478187957021298, - "c5": 20.510793787420184, - "c6": 23.437242165086516, - "c7": 3.2736961956892614 + "points": { + "c1": 26.306640189475416, + "c2": -23.549909000391356, + "c3": 12.593777330783354, + "c4": 18.26090880015645, + "c5": -26.425610748231144, + "c6": 23.428900833542414, + "c7": 19.989635583239405 }, - "vertexSeeds": { - "c1": 7.01697863830834, - "c2": 6.905257492241205, - "c3": 6.861269110925033, - "c4": 7.162913978274733, - "c5": 7.302164714187097, - "c6": 7.293317175847372, - "c7": 6.848181551345384 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -235095,23 +235095,23 @@ "year": 1772, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 3.385377867628467, - "c2": 6.7181633456212815, - "c3": -25.525708654910968, - "c4": 14.229622542856642, - "c5": -21.262133399021415, - "c6": -14.00553320521566, - "c7": 29.49721291706663 + "points": { + "c1": -2.3434998994559066, + "c2": 7.350261311346863, + "c3": 30.959829820244927, + "c4": -31.354126635452428, + "c5": 26.89662527356748, + "c6": -21.775643369625936, + "c7": 0.1947913244218995 }, - "vertexSeeds": { - "c1": 9.686365852084501, - "c2": 9.562083353296925, - "c3": 9.494743472247475, - "c4": 10.054055538524652, - "c5": 9.500651587362366, - "c6": 9.676705763886863, - "c7": 9.538722747161302 + "offsets": { + "c1": 16.86084142394822, + "c2": 14.4521497919556, + "c3": 12.043458159963011, + "c4": 9.63476652797042, + "c5": 7.2260748959778, + "c6": 4.81738326398521, + "c7": 2.4086916319925904 }, "rgb": [77, 76, 132] }, @@ -235122,23 +235122,23 @@ "year": 1772, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -15.721959081161392, - "c2": -13.465346669144273, - "c3": 13.218864287409982, - "c4": -10.406751121760681, - "c5": 3.5362751742821956, - "c6": -5.435855373829732, - "c7": 13.958272747663695 + "points": { + "c1": -18.070002524292587, + "c2": 4.047643978376353, + "c3": -15.230442275763448, + "c4": -18.87056289218274, + "c5": -17.15100642233226, + "c6": 10.50534033202251, + "c7": 19.538106834034604 }, - "vertexSeeds": { - "c1": 6.687445154512356, - "c2": 5.754602149369053, - "c3": 5.767133928864792, - "c4": 6.081935588821298, - "c5": 6.332740047062117, - "c6": 5.660010482408633, - "c7": 6.240130201818218 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -235149,23 +235149,23 @@ "year": 1774, "resistanceReported": false, "duration": 59788800, - "curveSeeds": { - "c1": -66.43798245452166, - "c2": -0.7502096050086209, - "c3": 41.68616904582643, - "c4": -74.68691119812874, - "c5": -21.122013621355173, - "c6": 59.88376221797938, - "c7": 64.48705261141046 + "points": { + "c1": 50.25740449154034, + "c2": 3.8756880436861536, + "c3": -28.485528694325538, + "c4": 67.48682417624036, + "c5": -31.781791164410166, + "c6": 54.5753509073854, + "c7": 75.91998359116675 }, - "vertexSeeds": { - "c1": 5.110291805774752, - "c2": 4.653808434725084, - "c3": 4.9686636688148464, - "c4": 5.0874531551174025, - "c5": 4.518989072047031, - "c6": 4.614708703304541, - "c7": 4.752820133575315 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699026, + "c3": 6.148867313915859, + "c4": 4.9190938511326845, + "c5": 3.6893203883495165, + "c6": 2.4595469255663422, + "c7": 1.2297734627831676 }, "rgb": [58, 15, 49] }, @@ -235176,23 +235176,23 @@ "year": 1773, "resistanceReported": false, "duration": 56764800, - "curveSeeds": { - "c1": -45.44433369609824, - "c2": -4.752627746244983, - "c3": 38.98996719234604, - "c4": 18.28017489239049, - "c5": -9.575351291302113, - "c6": -5.004891565504664, - "c7": -7.835971511669683 + "points": { + "c1": 8.581174218469641, + "c2": 7.568580212876597, + "c3": 5.89142521342157, + "c4": -58.395028217913115, + "c5": -48.253105040807185, + "c6": 3.059474348144292, + "c7": -2.244384618374781 }, - "vertexSeeds": { - "c1": 6.330306460490358, - "c2": 5.9046211913161475, - "c3": 7.018204572914922, - "c4": 6.497617681753645, - "c5": 6.102152835804612, - "c6": 6.640396398575613, - "c7": 6.9214021010212985 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334725, + "c4": 6.805362921867777, + "c5": 5.104022191400831, + "c6": 3.4026814609338842, + "c7": 1.701340730466947 }, "rgb": [58, 15, 49] }, @@ -235203,23 +235203,23 @@ "year": 1774, "resistanceReported": false, "duration": 60048000, - "curveSeeds": { - "c1": 55.94039264612128, - "c2": -20.535393057346234, - "c3": 73.85501747008477, - "c4": -61.91972059007239, - "c5": -49.82823507142159, - "c6": -50.349808185362576, - "c7": 24.863789726567035 + "points": { + "c1": 28.10058340497889, + "c2": -69.14937208558987, + "c3": -62.903923774429316, + "c4": -34.655368327222256, + "c5": 20.26365167919566, + "c6": -53.25903907716308, + "c7": 40.3121499850145 }, - "vertexSeeds": { - "c1": 4.899810750908392, - "c2": 4.7359746414286965, - "c3": 5.074211903667861, - "c4": 5.2759792147070526, - "c5": 4.679257432579818, - "c6": 4.681798262149635, - "c7": 5.104992845691157 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -235230,23 +235230,23 @@ "year": 1773, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": 6.483445042981991, - "c2": 50.6515896677294, - "c3": 6.903731478526701, - "c4": 11.228703705045646, - "c5": 51.711186834705515, - "c6": 53.45650292791977, - "c7": -23.040100667904888 + "points": { + "c1": 1.988738461913833, + "c2": -54.47758284294193, + "c3": 53.91641219186879, + "c4": 35.99480434699808, + "c5": 50.41498147824193, + "c6": -22.211474713827215, + "c7": -56.776034994268265 }, - "vertexSeeds": { - "c1": 3.3153571749501385, - "c2": 2.756584092615439, - "c3": 2.8838963129460597, - "c4": 3.0596166196729104, - "c5": 2.6251228574939978, - "c6": 3.343012654631495, - "c7": 3.3603380150057243 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998614, + "c3": 4.022191400832175, + "c4": 3.2177531206657406, + "c5": 2.413314840499307, + "c6": 1.6088765603328685, + "c7": 0.8044382801664343 }, "rgb": [86, 146, 138] }, @@ -235257,23 +235257,23 @@ "year": 1773, "resistanceReported": false, "duration": 48124800, - "curveSeeds": { - "c1": 38.309213350582866, - "c2": 62.636699268006026, - "c3": 43.90265690211014, - "c4": -41.65071217238385, - "c5": -55.20232056247009, - "c6": -43.80225089710305, - "c7": 47.57757675430034 + "points": { + "c1": 4.993623952344791, + "c2": 62.91653669930693, + "c3": -29.421210918889663, + "c4": 52.20422284724759, + "c5": 19.520525533644545, + "c6": -19.799369193900972, + "c7": 3.4645467974090423 }, - "vertexSeeds": { - "c1": 4.905097613531033, - "c2": 4.88961648973581, - "c3": 4.6629857067168246, - "c4": 4.731394576758253, - "c5": 4.750631494329016, - "c6": 4.706886503796696, - "c7": 4.907275207904585 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296816, + "c3": 5.917706888580673, + "c4": 4.7341655108645435, + "c5": 3.5506241331484008, + "c6": 2.3670827554322718, + "c7": 1.183541377716143 }, "rgb": [86, 146, 138] }, @@ -235284,23 +235284,23 @@ "year": 1773, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 17.799646597359576, - "c2": -13.44906369256838, - "c3": -36.451020902364604, - "c4": -14.201166148406244, - "c5": -33.830991651649846, - "c6": -22.00820205330816, - "c7": 31.129685211390026 + "points": { + "c1": -1.177405075489645, + "c2": -34.093754081714735, + "c3": 38.167773833427376, + "c4": -8.847701764486473, + "c5": 18.802778916148128, + "c6": -7.641688807686322, + "c7": -5.00665731309978 }, - "vertexSeeds": { - "c1": 5.0305811265835665, - "c2": 5.003267237911447, - "c3": 4.953881103695423, - "c4": 5.056637826617822, - "c5": 5.115301669557481, - "c6": 4.84854703234514, - "c7": 5.009889132643727 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [238, 201, 159] }, @@ -235311,23 +235311,23 @@ "year": 1773, "resistanceReported": false, "duration": 39052800, - "curveSeeds": { - "c1": 17.85726179948152, - "c2": 5.114936587624037, - "c3": 19.514707331003933, - "c4": 52.408390135495466, - "c5": 3.936924231739866, - "c6": 52.21313959933403, - "c7": 39.419826860518455 + "points": { + "c1": 2.4455888740616842, + "c2": -11.618416706824263, + "c3": -10.999410715606693, + "c4": -48.44354239101516, + "c5": 38.45369217854399, + "c6": 16.930509649122754, + "c7": -9.485785044289784 }, - "vertexSeeds": { - "c1": 3.9208890641916523, - "c2": 4.396255523661149, - "c3": 4.309002835737002, - "c4": 3.9458912142181046, - "c5": 4.115694659957826, - "c6": 4.19826202013472, - "c7": 4.059139674412198 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [222, 0, 59] }, @@ -235338,23 +235338,23 @@ "year": 1773, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -24.302185491479335, - "c2": 0.13783738661840061, - "c3": -1.7029232278005964, - "c4": -17.646288387031685, - "c5": -4.93248876620077, - "c6": 28.905535306144884, - "c7": -23.349102864193306 + "points": { + "c1": 18.28499512833747, + "c2": -20.325105441454642, + "c3": 33.595997704607385, + "c4": 6.006244333280172, + "c5": -41.94091698434021, + "c6": 15.627701240819533, + "c7": -36.995879169868296 }, - "vertexSeeds": { - "c1": 6.715464895140713, - "c2": 6.7133033624039715, - "c3": 6.740057813157706, - "c4": 6.673292834749129, - "c5": 6.706947118344469, - "c6": 6.6819756723877095, - "c7": 6.66444600613635 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [238, 201, 159] }, @@ -235365,23 +235365,23 @@ "year": 1772, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 14.6848814730917, - "c2": -16.110301659385044, - "c3": -12.284865280212806, - "c4": -0.3983196142256773, - "c5": -24.748424861790667, - "c6": 16.294353059357263, - "c7": 4.7372276843885 + "points": { + "c1": 30.782838533161375, + "c2": -0.991109198365713, + "c3": 25.834476641226154, + "c4": -27.098994930612786, + "c5": 16.050732376353885, + "c6": -7.960510939204134, + "c7": -21.391796726054928 }, - "vertexSeeds": { - "c1": 2.9030507337493634, - "c2": 2.5390111324919116, - "c3": 2.7417219236580275, - "c4": 2.643495403575159, - "c5": 2.7165353514808044, - "c6": 2.92923129313645, - "c7": 2.5777930931690674 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [58, 15, 49] }, @@ -235392,23 +235392,23 @@ "year": 1773, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": -9.074496589256967, - "c2": -13.64271733216571, - "c3": -24.735345184978065, - "c4": 25.426142611413, - "c5": 19.60348136646725, - "c6": 41.42282807014442, - "c7": -38.36457479823771 + "points": { + "c1": -26.202826796816545, + "c2": -13.638476438913045, + "c3": 12.983348364938507, + "c4": 8.427972909041628, + "c5": 50.112044661873696, + "c6": -11.744990880168785, + "c7": 3.4112086364457 }, - "vertexSeeds": { - "c1": 8.031643138244702, - "c2": 7.385595907244912, - "c3": 7.875358016229567, - "c4": 8.039024723220505, - "c5": 7.677896563837237, - "c6": 7.822640346366134, - "c7": 7.655278547227738 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812755, + "c3": 9.662505779010642, + "c4": 7.73000462320851, + "c5": 5.7975034674063775, + "c6": 3.865002311604265, + "c7": 1.9325011558021326 }, "rgb": [86, 146, 138] }, @@ -235419,23 +235419,23 @@ "year": 1773, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -4.484528003760005, - "c2": -35.750497278115226, - "c3": 25.0714547529753, - "c4": 37.74257082383606, - "c5": 4.250546486712672, - "c6": 2.418653282429105, - "c7": 40.87220275973611 + "points": { + "c1": -5.2776507638814465, + "c2": -37.80463762015527, + "c3": 23.80476700192112, + "c4": -13.264680327916196, + "c5": -20.472016556397165, + "c6": -11.356068196778772, + "c7": 25.33091673003932 }, - "vertexSeeds": { - "c1": 2.903447149667858, - "c2": 3.303705152228773, - "c3": 3.5429612580559486, - "c4": 3.3069727025036593, - "c5": 3.2261736738434856, - "c6": 3.2922626911990935, - "c7": 3.1654012351327725 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.253351826167362, + "c4": 3.4026814609338887, + "c5": 2.5520110957004154, + "c6": 1.7013407304669421, + "c7": 0.8506703652334735 }, "rgb": [222, 0, 59] }, @@ -235446,23 +235446,23 @@ "year": 1772, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -19.45046837709113, - "c2": 24.291495510168197, - "c3": -32.0115603635914, - "c4": 34.16524249936792, - "c5": 35.65365343055208, - "c6": -11.215804523280667, - "c7": -36.388015297162376 + "points": { + "c1": 2.7723286196831296, + "c2": 32.63207527638012, + "c3": 15.883639792209209, + "c4": 7.494758707570654, + "c5": 11.668951445073283, + "c6": 16.225338791477, + "c7": -38.66005075811958 }, - "vertexSeeds": { - "c1": 3.3090346072738153, - "c2": 3.3096884108845397, - "c3": 3.309665144665698, - "c4": 3.3224699750444984, - "c5": 3.3041414695180826, - "c6": 3.3215854344152542, - "c7": 3.3075365901013383 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918191, + "c3": 3.975959315765186, + "c4": 3.1807674526121805, + "c5": 2.3855755894590165, + "c6": 1.590383726306011, + "c7": 0.7951918631530055 }, "rgb": [222, 0, 59] }, @@ -235473,23 +235473,23 @@ "year": 1773, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": -12.543483834353786, - "c2": 2.121208636226946, - "c3": 21.513046113920595, - "c4": 17.09898625140977, - "c5": 33.82420754033369, - "c6": -7.084293552960304, - "c7": 49.519158962602276 + "points": { + "c1": -48.40571774609304, + "c2": -34.72861024499042, + "c3": 42.25305760542987, + "c4": -40.4983183384426, + "c5": -44.100052265048284, + "c6": 28.63361791554135, + "c7": 31.735906706210685 }, - "vertexSeeds": { - "c1": 5.728959046348466, - "c2": 5.8162158259531465, - "c3": 5.334826030916366, - "c4": 5.808554842257102, - "c5": 5.727251632273723, - "c6": 6.006695133144368, - "c7": 5.235788674543509 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589457, + "c3": 7.235321312991209, + "c4": 5.788257050392975, + "c5": 4.3411927877947285, + "c6": 2.894128525196481, + "c7": 1.4470642625982337 }, "rgb": [222, 0, 59] }, @@ -235500,23 +235500,23 @@ "year": 1773, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -19.015977752039706, - "c2": 0.32164879472811236, - "c3": -20.73916189294617, - "c4": 1.846180723659181, - "c5": 7.563103651945717, - "c6": -10.389174847466336, - "c7": -35.42545933438074 + "points": { + "c1": -10.701900277919922, + "c2": -12.583532456366264, + "c3": 20.894130233539542, + "c4": 25.96719836366789, + "c5": -33.17693119912559, + "c6": -2.946258427714909, + "c7": 19.34194537266262 }, - "vertexSeeds": { - "c1": 2.94139134730987, - "c2": 3.0346299852054828, - "c3": 3.052379986937241, - "c4": 3.207135146434003, - "c5": 3.013724993080612, - "c6": 3.2639893412954195, - "c7": 3.1805664624480734 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -235527,23 +235527,23 @@ "year": 1772, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 3.313197771614071, - "c2": 5.106750977055249, - "c3": -4.4692627850689775, - "c4": 9.170010221945205, - "c5": 35.5955799623481, - "c6": -14.702480878072755, - "c7": 17.799401180935064 + "points": { + "c1": -35.23243485461273, + "c2": -23.9592688378357, + "c3": -31.211606314910803, + "c4": 32.583105999917294, + "c5": 28.33326272756001, + "c6": 3.2020823558688605, + "c7": 30.32167620664812 }, - "vertexSeeds": { - "c1": 9.57781422696011, - "c2": 9.44103101022723, - "c3": 9.487142166020627, - "c4": 9.235380743443626, - "c5": 9.02569976625048, - "c6": 9.379228194410718, - "c7": 9.170728950693373 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513184, + "c3": 11.789181692094326, + "c4": 9.43134535367545, + "c5": 7.073509015256592, + "c6": 4.715672676837735, + "c7": 2.3578363384188776 }, "rgb": [238, 201, 159] }, @@ -235554,23 +235554,23 @@ "year": 1773, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": -21.504967146816497, - "c2": -2.3510927084726205, - "c3": 0.9821069468216805, - "c4": 44.30305069656711, - "c5": -46.34167956746379, - "c6": 6.533669507226946, - "c7": -42.98477126397464 + "points": { + "c1": 40.8117564750999, + "c2": 41.162840055983594, + "c3": -15.271118501147825, + "c4": -19.285002981614696, + "c5": 49.10306863431829, + "c6": -16.406557503114726, + "c7": -23.606078735874444 }, - "vertexSeeds": { - "c1": 4.9593513209850375, - "c2": 4.864305367844135, - "c3": 4.881127795490136, - "c4": 5.012254517968258, - "c5": 5.106308319538879, - "c6": 5.142265385605589, - "c7": 5.039115928123641 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739243, + "c3": 6.171983356449389, + "c4": 4.937586685159506, + "c5": 3.7031900138696217, + "c6": 2.468793342579753, + "c7": 1.2343966712898835 }, "rgb": [222, 0, 59] }, @@ -235581,23 +235581,23 @@ "year": 1773, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -29.77889712410203, - "c2": 21.05281378797448, - "c3": 12.677272757699889, - "c4": -18.079570145031816, - "c5": 6.53936527330378, - "c6": 31.8282640511341, - "c7": 42.166476654235225 + "points": { + "c1": -43.97101454763196, + "c2": -10.03172136538155, + "c3": 21.31801558460674, + "c4": 22.19802145893486, + "c5": 43.907486410626774, + "c6": 26.64942114636915, + "c7": 16.78415751527355 }, - "vertexSeeds": { - "c1": 4.518620126101188, - "c2": 4.633381231349358, - "c3": 4.385300534931742, - "c4": 4.323733411441857, - "c5": 4.625889536502922, - "c6": 4.43328471344167, - "c7": 4.165005579538957 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773926, + "c3": 5.617198335644939, + "c4": 4.493758668515946, + "c5": 3.3703190013869593, + "c6": 2.246879334257973, + "c7": 1.1234396671289866 }, "rgb": [58, 15, 49] }, @@ -235608,23 +235608,23 @@ "year": 1772, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 15.318929777305762, - "c2": -12.215777056178304, - "c3": 21.402871336750408, - "c4": 17.64367782832428, - "c5": -11.368217707484192, - "c6": -25.323487299748116, - "c7": -13.65648095624337 + "points": { + "c1": 30.921065652118735, + "c2": 7.899253667863626, + "c3": 27.62766678238409, + "c4": 7.195150876935763, + "c5": 27.491796495753327, + "c6": 29.832363572030253, + "c7": 9.453039648634075 }, - "vertexSeeds": { - "c1": 3.2772303964488296, - "c2": 3.2254342623434114, - "c3": 3.3921092291654995, - "c4": 3.0834238452524456, - "c5": 3.1665115499124217, - "c6": 3.4267230588229056, - "c7": 3.486646346705605 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320387, + "c3": 4.207119741100321, + "c4": 3.3656957928802558, + "c5": 2.524271844660197, + "c6": 1.6828478964401312, + "c7": 0.8414239482200656 }, "rgb": [77, 76, 132] }, @@ -235635,23 +235635,23 @@ "year": 1773, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 42.93693415815063, - "c2": 4.871050062483469, - "c3": 3.4296298939724252, - "c4": -1.486626969800156, - "c5": -22.04017872241896, - "c6": -37.918184032722706, - "c7": 10.5629490385245 + "points": { + "c1": 31.738264417823054, + "c2": -21.05024474451938, + "c3": 19.204720658043733, + "c4": 0.635508551678015, + "c5": -8.21830531694129, + "c6": -35.26632394277731, + "c7": 32.12576256491493 }, - "vertexSeeds": { - "c1": 5.288387458706653, - "c2": 5.34350198460188, - "c3": 5.322789759094491, - "c4": 5.055478393034538, - "c5": 5.03463528957757, - "c6": 5.091209871590663, - "c7": 5.277655664532315 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221911, + "c3": 6.449375866851588, + "c4": 5.159500693481265, + "c5": 3.869625520110942, + "c6": 2.579750346740646, + "c7": 1.289875173370323 }, "rgb": [58, 15, 49] }, @@ -235662,23 +235662,23 @@ "year": 1773, "resistanceReported": false, "duration": 54345600, - "curveSeeds": { - "c1": -61.13583787111549, - "c2": -62.57694279398611, - "c3": 61.12146539624044, - "c4": -19.123812317795704, - "c5": 40.88006773050604, - "c6": 38.52565313034128, - "c7": -17.7983881378127 + "points": { + "c1": 64.61036554713709, + "c2": -9.439929297558393, + "c3": 51.82795895677441, + "c4": -23.817044845941837, + "c5": -71.03616967110746, + "c6": 18.372691556334587, + "c7": 51.1112174824878 }, - "vertexSeeds": { - "c1": 9.324708198474998, - "c2": 9.465399215760147, - "c3": 9.511475518150533, - "c4": 9.077061842943031, - "c5": 9.146527587907352, - "c6": 9.226741914200817, - "c7": 9.31598801320015 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748968, + "c3": 11.349976883957483, + "c4": 9.07998150716597, + "c5": 6.809986130374484, + "c6": 4.539990753582998, + "c7": 2.2699953767915133 }, "rgb": [86, 146, 138] }, @@ -235689,23 +235689,23 @@ "year": 1773, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 10.459923716427703, - "c2": -29.555788999335416, - "c3": -6.267144104982879, - "c4": -23.288783272206448, - "c5": -20.816568439272046, - "c6": 7.937117477954942, - "c7": -20.667382544698768 + "points": { + "c1": 9.372150781820999, + "c2": -18.47035851607025, + "c3": 10.85928047673383, + "c4": -4.455222617436412, + "c5": -16.975833512626576, + "c6": 29.227253677755826, + "c7": 24.60727695243311 }, - "vertexSeeds": { - "c1": 4.802192197827213, - "c2": 4.359408077632708, - "c3": 4.447261723395616, - "c4": 4.651519506835016, - "c5": 4.136780868910413, - "c6": 4.084432402706002, - "c7": 4.497984224771058 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -235716,23 +235716,23 @@ "year": 1772, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 21.471002226291475, - "c2": -22.36384324888615, - "c3": -14.725761128670232, - "c4": -14.95640609077272, - "c5": -4.835071258998255, - "c6": -14.908974950634164, - "c7": -6.809908791246961 + "points": { + "c1": 22.615729030290282, + "c2": 1.729580854840755, + "c3": 12.615011116568262, + "c4": -28.52412970293274, + "c5": 0.8154609381273588, + "c6": -20.447933866679435, + "c7": 11.846442071516016 }, - "vertexSeeds": { - "c1": 8.604952695930612, - "c2": 7.670316454979903, - "c3": 8.465854635995214, - "c4": 7.142921488176667, - "c5": 8.570448965317384, - "c6": 7.985804253336302, - "c7": 7.784271437622882 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.399445214979199, + "c3": 10.332871012482661, + "c4": 8.266296809986134, + "c5": 6.199722607489605, + "c6": 4.133148404993067, + "c7": 2.0665742024965383 }, "rgb": [86, 146, 138] }, @@ -235743,23 +235743,23 @@ "year": 1773, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 22.842004663741925, - "c2": -23.832070666584734, - "c3": -21.157709344258674, - "c4": 18.6923689666731, - "c5": 32.76081907891377, - "c6": -14.338107259109346, - "c7": 28.29794748092121 + "points": { + "c1": 11.744876750706922, + "c2": 24.55761300485385, + "c3": 26.891851842728443, + "c4": -13.826165297499141, + "c5": -38.282223178012664, + "c6": -14.761750995468251, + "c7": -34.49259086011356 }, - "vertexSeeds": { - "c1": 4.459075678311575, - "c2": 4.510717325668224, - "c3": 4.374157891437232, - "c4": 4.046605583300163, - "c5": 4.526850704602674, - "c6": 4.175712061364525, - "c7": 4.2792003060533395 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -235770,23 +235770,23 @@ "year": 1773, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": -16.99805803928289, - "c2": 15.83218684004433, - "c3": 29.98845392586871, - "c4": -4.491883761290808, - "c5": -39.76842428285387, - "c6": 28.10786603223201, - "c7": -29.591368435447926 + "points": { + "c1": 41.10371788785176, + "c2": -23.17754524767141, + "c3": 31.434124123130687, + "c4": -33.58560892290275, + "c5": 8.022124980554452, + "c6": -14.112988657593029, + "c7": 10.009561382311176 }, - "vertexSeeds": { - "c1": 7.300544442713349, - "c2": 6.685230226430771, - "c3": 7.29252669706632, - "c4": 7.074425555212581, - "c5": 7.095048369019866, - "c6": 6.7836987091950665, - "c7": 7.3155438303837945 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766989, + "c3": 9.061488673139158, + "c4": 7.249190938511326, + "c5": 5.4368932038834945, + "c6": 3.624595469255663, + "c7": 1.8122977346278315 }, "rgb": [238, 201, 159] }, @@ -235797,23 +235797,23 @@ "year": 1773, "resistanceReported": false, "duration": 47692800, - "curveSeeds": { - "c1": -33.090470592134295, - "c2": 5.070219516627766, - "c3": -32.674579660351355, - "c4": 42.61457875633439, - "c5": -54.09354655875485, - "c6": 44.24071223884615, - "c7": -58.164133320514544 + "points": { + "c1": 55.708890720831064, + "c2": 52.19669050559524, + "c3": 19.807973072786965, + "c4": -1.1184220324866914, + "c5": -2.6245984559555424, + "c6": -62.151881191981786, + "c7": 45.708857954378075 }, - "vertexSeeds": { - "c1": 5.522975901175479, - "c2": 5.683489240647034, - "c3": 5.46790129808734, - "c4": 5.735165570232869, - "c5": 5.781259796799869, - "c6": 6.064072991575323, - "c7": 6.626091815087789 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996762, + "c4": 6.343042071197408, + "c5": 4.757281553398053, + "c6": 3.171521035598699, + "c7": 1.5857605177993441 }, "rgb": [77, 76, 132] }, @@ -235824,23 +235824,23 @@ "year": 1773, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": 28.74033409645331, - "c2": 54.20888905338833, - "c3": -36.89785832734482, - "c4": 17.10287017208435, - "c5": -10.054935117925588, - "c6": 5.8731120761132445, - "c7": -42.096928256486294 + "points": { + "c1": -43.30079048951271, + "c2": -45.83296903339627, + "c3": 54.400271288254444, + "c4": -4.019346387317661, + "c5": 8.404167169487195, + "c6": -1.3251878636346959, + "c7": 44.75639652502109 }, - "vertexSeeds": { - "c1": 1.9125142247050304, - "c2": 1.9504259389151968, - "c3": 2.0616691505050886, - "c4": 1.7592227347767815, - "c5": 2.1365735923529154, - "c6": 2.2272904816480583, - "c7": 1.9916410950338033 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.2177531206657415, + "c3": 2.6814609338881192, + "c4": 2.1451687471104948, + "c5": 1.6088765603328707, + "c6": 1.0725843735552485, + "c7": 0.5362921867776242 }, "rgb": [86, 146, 138] }, @@ -235851,23 +235851,23 @@ "year": 1773, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -24.035056054325366, - "c2": -34.29105756953925, - "c3": 31.449278806048476, - "c4": 7.881616215182376, - "c5": 12.583127971881453, - "c6": 3.1437827824543376, - "c7": 26.81482206199376 + "points": { + "c1": 6.147895629171707, + "c2": -34.176470917031025, + "c3": 24.402230582815612, + "c4": -38.12919384872144, + "c5": -15.190629326910628, + "c6": -28.810491481688466, + "c7": 28.696339846690428 }, - "vertexSeeds": { - "c1": 10.287803338988104, - "c2": 10.275782665285925, - "c3": 10.81852885052901, - "c4": 10.393212543156794, - "c5": 10.656160384961261, - "c6": 10.409224176002228, - "c7": 10.956584694600622 + "offsets": { + "c1": 18.7378640776699, + "c2": 16.061026352288483, + "c3": 13.38418862690706, + "c4": 10.70735090152564, + "c5": 8.03051317614422, + "c6": 5.353675450762841, + "c7": 2.6768377253814206 }, "rgb": [238, 201, 159] }, @@ -235878,23 +235878,23 @@ "year": 1773, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -3.8379795517263986, - "c2": -16.147081912787208, - "c3": -38.84042921871785, - "c4": 10.583861894416614, - "c5": 24.015615054332976, - "c6": -42.0502480736329, - "c7": -39.17913615044109 + "points": { + "c1": 33.96270008334181, + "c2": 29.761275384654517, + "c3": 16.066649497952092, + "c4": 36.032492818412955, + "c5": -40.74949423273968, + "c6": 40.03469057756882, + "c7": 20.7556240061679 }, - "vertexSeeds": { - "c1": 4.638135722002383, - "c2": 4.66386242517624, - "c3": 4.449619377181278, - "c4": 4.645235068626721, - "c5": 4.090595388710314, - "c6": 4.484828421293078, - "c7": 4.515272208877218 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485437, + "c3": 5.663430420711971, + "c4": 4.530744336569578, + "c5": 3.398058252427185, + "c6": 2.2653721682847916, + "c7": 1.1326860841423934 }, "rgb": [222, 0, 59] }, @@ -235905,23 +235905,23 @@ "year": 1772, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 4.378800009057031, - "c2": 3.8612898201581984, - "c3": -0.9824389011093082, - "c4": -19.445265690461547, - "c5": 12.438095382589836, - "c6": 6.1975323257859145, - "c7": 3.451558667154387 + "points": { + "c1": 22.998288239157688, + "c2": -14.768958294765977, + "c3": 30.475072237669643, + "c4": 9.676894863735718, + "c5": 22.267740065241988, + "c6": -14.390721526917446, + "c7": 27.433884734305657 }, - "vertexSeeds": { - "c1": 2.983416235697008, - "c2": 2.8847416613983823, - "c3": 3.1107817078182878, - "c4": 2.609032342116476, - "c5": 2.766536363017407, - "c6": 2.6560214042577166, - "c7": 3.047405550357176 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.63245492371706, + "c3": 3.860379103097548, + "c4": 3.088303282478039, + "c5": 2.31622746185853, + "c6": 1.5441516412390175, + "c7": 0.7720758206195087 }, "rgb": [77, 76, 132] }, @@ -235932,23 +235932,23 @@ "year": 1773, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -10.597191110279049, - "c2": 14.786020907553791, - "c3": 26.598893901145722, - "c4": 9.743072939176045, - "c5": -7.007157589373968, - "c6": -3.6562253518031795, - "c7": 38.87851224319309 + "points": { + "c1": -25.44881006497272, + "c2": -2.2070013584496806, + "c3": 10.725395083787944, + "c4": 5.50819820923563, + "c5": 35.227031523515215, + "c6": -27.400613945895362, + "c7": -33.775934280928425 }, - "vertexSeeds": { - "c1": 4.474304316025377, - "c2": 4.51503305275671, - "c3": 4.682689760271212, - "c4": 4.228571840521862, - "c5": 4.753700271013607, - "c6": 4.318798825396531, - "c7": 4.461829157628883 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -235959,23 +235959,23 @@ "year": 1773, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 25.87872010048146, - "c2": 10.565970635675022, - "c3": -33.15071253113078, - "c4": 14.483214794761679, - "c5": 14.428213014866031, - "c6": -25.581039804418616, - "c7": -7.243303724641951 + "points": { + "c1": -10.975457815857435, + "c2": -7.3713740261106295, + "c3": -17.65330031024295, + "c4": 31.9669525872998, + "c5": 8.797800503956147, + "c6": 32.954507391298606, + "c7": -37.02417130209068 }, - "vertexSeeds": { - "c1": 6.703500474716105, - "c2": 6.508143912334288, - "c3": 6.139703381507239, - "c4": 5.9260149972135405, - "c5": 5.57000739090159, - "c6": 6.58461559999108, - "c7": 6.34853223082642 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -235986,23 +235986,23 @@ "year": 1773, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -17.601423509949942, - "c2": 32.70015782928223, - "c3": 31.566061136976103, - "c4": 8.161368815850437, - "c5": -37.437761603644816, - "c6": -26.401604511344186, - "c7": 26.852183942223817 + "points": { + "c1": -35.0800506629405, + "c2": -25.46457420089238, + "c3": 1.1131899379173618, + "c4": -33.93353787256633, + "c5": 36.75187041843739, + "c6": 12.22298264001838, + "c7": 36.76108770793009 }, - "vertexSeeds": { - "c1": 2.07860817261743, - "c2": 2.070719496406701, - "c3": 2.078746685199701, - "c4": 2.0637846696019833, - "c5": 2.0645375369267818, - "c6": 2.0745936971155623, - "c7": 2.077328803842326 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.995839112343981, + "c3": 2.496532593619951, + "c4": 1.997226074895971, + "c5": 1.4979195561719905, + "c6": 0.9986130374480102, + "c7": 0.4993065187239803 }, "rgb": [222, 0, 59] }, @@ -236013,23 +236013,23 @@ "year": 1773, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 15.086474993533464, - "c2": -7.845621229448533, - "c3": -34.507081273373366, - "c4": -30.561356716213105, - "c5": -6.434574490832475, - "c6": -3.1289859178451707, - "c7": -19.62300508245753 + "points": { + "c1": 9.93633178637559, + "c2": -3.6232410837313296, + "c3": -6.122953620194966, + "c4": -15.360793905943709, + "c5": 13.922078514098452, + "c6": 18.944076504848717, + "c7": -7.006460392436846 }, - "vertexSeeds": { - "c1": 5.611893819501941, - "c2": 5.795099534751722, - "c3": 6.771874945285828, - "c4": 6.484403102179229, - "c5": 6.191291382347289, - "c6": 6.235885234313318, - "c7": 5.739634354767178 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -236040,23 +236040,23 @@ "year": 1773, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 31.29973689677101, - "c2": -5.5907939746570605, - "c3": 2.9385621722482966, - "c4": 33.147438462280675, - "c5": -50.18474908177469, - "c6": -34.72756914575042, - "c7": 19.57842821346435 + "points": { + "c1": 20.720455803530783, + "c2": -54.40864542356425, + "c3": -48.44028582618905, + "c4": 24.4231871866089, + "c5": 18.312652574142533, + "c6": -20.349481124377775, + "c7": 30.926081238745653 }, - "vertexSeeds": { - "c1": 5.313418601087855, - "c2": 6.145291185311452, - "c3": 5.533524212252248, - "c4": 5.35412850777843, - "c5": 6.389530982435616, - "c6": 5.358926894543829, - "c7": 5.505018271971717 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661582, + "c4": 6.158113730929263, + "c5": 4.61858529819695, + "c6": 3.0790568654646315, + "c7": 1.5395284327323158 }, "rgb": [77, 76, 132] }, @@ -236067,23 +236067,23 @@ "year": 1772, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 24.287846909188573, - "c2": 22.22997922616227, - "c3": -23.44935978090926, - "c4": 17.71128250875133, - "c5": -0.2009431094247276, - "c6": -6.693981615731843, - "c7": 16.8580029349188 + "points": { + "c1": 10.710461025563411, + "c2": -0.41124883854862304, + "c3": -15.748321936486608, + "c4": -13.817252520432818, + "c5": -3.767857699898972, + "c6": -15.910427441843654, + "c7": -6.897274183797169 }, - "vertexSeeds": { - "c1": 2.9385138974099356, - "c2": 3.0599655143993996, - "c3": 3.1215789472019515, - "c4": 3.055858712855767, - "c5": 3.223703574568942, - "c6": 3.2465340724534393, - "c7": 2.935569913066639 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -236094,23 +236094,23 @@ "year": 1772, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -5.237907801293595, - "c2": 17.196615579457422, - "c3": -4.29669247790093, - "c4": 20.265158750723252, - "c5": -23.604334314833846, - "c6": 22.634036797783295, - "c7": 3.513777824094795 + "points": { + "c1": -22.405868684517763, + "c2": 22.327510163158948, + "c3": 5.600550721477703, + "c4": -29.004187580175216, + "c5": -10.33146546381684, + "c6": 7.03980709160718, + "c7": -3.822574984648213 }, - "vertexSeeds": { - "c1": 6.3389832448442, - "c2": 6.503788747783061, - "c3": 6.374064440020693, - "c4": 6.060914364458181, - "c5": 6.491589078900791, - "c6": 6.151294615818147, - "c7": 6.295060532694896 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951456, + "c3": 7.766990291262131, + "c4": 6.2135922330097015, + "c5": 4.66019417475729, + "c6": 3.1067961165048597, + "c7": 1.5533980582524298 }, "rgb": [238, 201, 159] }, @@ -236121,23 +236121,23 @@ "year": 1773, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 3.6460619710790496, - "c2": -35.63824307580596, - "c3": -17.626498542211333, - "c4": -20.366494769866165, - "c5": -32.94793515768759, - "c6": -21.9111479103177, - "c7": 13.511341806399727 + "points": { + "c1": 28.4438656145553, + "c2": 28.894588381885065, + "c3": -36.13241444913774, + "c4": 1.3708949145092433, + "c5": -5.246083433319498, + "c6": 20.015078281447344, + "c7": 30.12037195272068 }, - "vertexSeeds": { - "c1": 11.948936398423891, - "c2": 12.713644140716578, - "c3": 12.331017041145756, - "c4": 12.006368431025363, - "c5": 12.461163891738984, - "c6": 12.203812032328962, - "c7": 12.86639635163382 + "offsets": { + "c1": 21.488673139158575, + "c2": 18.418862690707357, + "c3": 15.349052242256137, + "c4": 12.279241793804918, + "c5": 9.209431345353698, + "c6": 6.139620896902439, + "c7": 3.0698104484512196 }, "rgb": [86, 146, 138] }, @@ -236148,23 +236148,23 @@ "year": 1773, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -38.44325783617504, - "c2": -34.67846750760282, - "c3": -21.466511383308752, - "c4": 19.22685836755003, - "c5": -43.33981202616017, - "c6": -21.954692471702227, - "c7": 26.72669726497366 + "points": { + "c1": 38.41268449642575, + "c2": 23.010607696499072, + "c3": 8.584438602407253, + "c4": 22.101658384588468, + "c5": -31.620325172939268, + "c6": 45.691550183052506, + "c7": -33.76671189226461 }, - "vertexSeeds": { - "c1": 4.155245836179895, - "c2": 4.131332791150694, - "c3": 4.105916219861385, - "c4": 4.121749829846417, - "c5": 4.136042224104484, - "c6": 4.092755097030953, - "c7": 4.1443926610947095 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.01941747572815, + "c3": 5.016181229773453, + "c4": 4.012944983818756, + "c5": 3.0097087378640586, + "c6": 2.0064724919093613, + "c7": 1.0032362459546973 }, "rgb": [58, 15, 49] }, @@ -236175,23 +236175,23 @@ "year": 1773, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -3.8764316346166865, - "c2": -2.832117873603231, - "c3": 48.82907812909066, - "c4": -51.576858840109225, - "c5": 46.862135812264086, - "c6": 4.19035808011413, - "c7": -4.245013784725991 + "points": { + "c1": 6.388892742920284, + "c2": 18.378638592228725, + "c3": 14.137651732181965, + "c4": 30.807467363043216, + "c5": 1.8551538651862458, + "c6": -19.564673926059484, + "c7": 0.883208319502053 }, - "vertexSeeds": { - "c1": 6.693802959678052, - "c2": 6.654993172558283, - "c3": 6.636163318437491, - "c4": 6.925602154076033, - "c5": 7.002063655281469, - "c6": 6.243288451820506, - "c7": 6.157477648278047 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [222, 0, 59] }, @@ -236202,23 +236202,23 @@ "year": 1773, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -25.33032500646522, - "c2": -10.487084519691496, - "c3": 7.167954523665159, - "c4": 26.80695185987247, - "c5": -15.482806071791739, - "c6": -1.1054771077410592, - "c7": -6.102561272398368 + "points": { + "c1": 23.01779303767396, + "c2": -1.3088883544281487, + "c3": 11.639394118024299, + "c4": 30.847453389705883, + "c5": 2.7357784130063294, + "c6": -27.88537057300376, + "c7": 2.8132981944413444 }, - "vertexSeeds": { - "c1": 1.117611363744435, - "c2": 1.1439234485539937, - "c3": 1.097959724219236, - "c4": 1.1019005344614174, - "c5": 1.0387884088269659, - "c6": 1.114547663939719, - "c7": 1.1126235004621767 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133154, + "c3": 1.3869625520110953, + "c4": 1.109570041608877, + "c5": 0.8321775312066567, + "c6": 0.5547850208044385, + "c7": 0.27739251040222024 }, "rgb": [58, 15, 49] }, @@ -236229,23 +236229,23 @@ "year": 1772, "resistanceReported": false, "duration": 3456000, - "curveSeeds": { - "c1": 7.879695119279845, - "c2": -1.701469124153416, - "c3": 3.494434295672196, - "c4": -2.8400258885634138, - "c5": -6.998770828453982, - "c6": -3.191326013813102, - "c7": -9.441590544703079 + "points": { + "c1": 2.5023237517360855, + "c2": -12.91283377534281, + "c3": -1.4990992970223385, + "c4": -4.694871074591637, + "c5": 4.522609069233802, + "c6": -4.242494390846197, + "c7": 6.891648161907863 }, - "vertexSeeds": { - "c1": 2.9719887090415793, - "c2": 3.030902551774939, - "c3": 2.9400897381798337, - "c4": 2.9544544769119567, - "c5": 3.0023006517527078, - "c6": 3.0313816608129143, - "c7": 2.96594620327539 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355062, + "c3": 3.6523347202958854, + "c4": 2.921867776236708, + "c5": 2.191400832177531, + "c6": 1.460933888118354, + "c7": 0.730466944059177 }, "rgb": [77, 76, 132] }, @@ -236256,23 +236256,23 @@ "year": 1772, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 31.597527950759144, - "c2": -13.336876192407239, - "c3": -25.364006175452438, - "c4": -25.99690551086919, - "c5": 32.413456250682415, - "c6": -9.53587668765758, - "c7": 30.960984449761753 + "points": { + "c1": -2.504253039871216, + "c2": -17.584313574589608, + "c3": -26.44692280772596, + "c4": -11.871252464410414, + "c5": -2.3048006254594853, + "c6": -7.658067262799673, + "c7": 2.6032934535408785 }, - "vertexSeeds": { - "c1": 4.640844271714509, - "c2": 4.743456886929861, - "c3": 4.072370212230527, - "c4": 4.460403603653343, - "c5": 4.837889911608156, - "c6": 4.466700946460122, - "c7": 4.704896443315828 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -236283,23 +236283,23 @@ "year": 1773, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -41.26919829910267, - "c2": -37.35904498285038, - "c3": -41.436210736942385, - "c4": -27.69011160185663, - "c5": 4.597938043618598, - "c6": 16.597057153490717, - "c7": 32.47801805076142 + "points": { + "c1": -3.5907516008607487, + "c2": -19.095381523489433, + "c3": -25.781218115258067, + "c4": -12.13419664443488, + "c5": -31.16015252697529, + "c6": 17.31169421251232, + "c7": -30.28307928017894 }, - "vertexSeeds": { - "c1": 10.14623247133443, - "c2": 9.644398542314471, - "c3": 9.598336423162525, - "c4": 9.957136024742697, - "c5": 9.168865440343726, - "c6": 9.54324040242421, - "c7": 10.080369308446452 + "offsets": { + "c1": 17.281553398058254, + "c2": 14.812760055478492, + "c3": 12.343966712898757, + "c4": 9.875173370319008, + "c5": 7.406380027739258, + "c6": 4.93758668515951, + "c7": 2.4687933425797612 }, "rgb": [238, 201, 159] }, @@ -236310,23 +236310,23 @@ "year": 1773, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 28.393087998021976, - "c2": 10.228168639143313, - "c3": -2.716009935345067, - "c4": 0.28082436605428995, - "c5": -22.78320792782633, - "c6": -33.409507555372855, - "c7": -10.853361063694493 + "points": { + "c1": -20.614165008962665, + "c2": -17.748950716413514, + "c3": -10.459871938614175, + "c4": -27.260517575393862, + "c5": 19.932591931056763, + "c6": -14.421209116016538, + "c7": 0.9209862693493847 }, - "vertexSeeds": { - "c1": 4.299639892811876, - "c2": 4.0295583190270134, - "c3": 3.9296533132917064, - "c4": 4.2109161242361814, - "c5": 4.245074647157559, - "c6": 4.375331287993939, - "c7": 4.307406705935058 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -236337,23 +236337,23 @@ "year": 1773, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -41.67887296078194, - "c2": -45.28716853354523, - "c3": 38.709534591689476, - "c4": -0.04571245781651356, - "c5": 8.416102749192191, - "c6": -38.52198828095996, - "c7": 22.042839734655246 + "points": { + "c1": 3.7299239857411806, + "c2": -6.21096626825652, + "c3": -27.503860330617062, + "c4": 37.8067682286089, + "c5": 46.5630656909902, + "c6": 14.188673517865922, + "c7": 41.20224251679632 }, - "vertexSeeds": { - "c1": 5.751003539851149, - "c2": 5.572035724104947, - "c3": 5.585327406749294, - "c4": 5.495424875060363, - "c5": 5.581026347774581, - "c6": 5.475529197151777, - "c7": 5.758540798883403 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147029, + "c3": 6.9810448451225104, + "c4": 5.58483587609802, + "c5": 4.188626907073501, + "c6": 2.79241793804901, + "c7": 1.396208969024519 }, "rgb": [58, 15, 49] }, @@ -236364,23 +236364,23 @@ "year": 1772, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 1.4003625430589395, - "c2": -2.6146838688897915, - "c3": 24.194816421647744, - "c4": -15.614563141918234, - "c5": -5.867518298806871, - "c6": 1.695507992865, - "c7": 24.988889661132028 + "points": { + "c1": 23.73770599240492, + "c2": 24.581256796723586, + "c3": 1.5814515500963147, + "c4": -23.98900870116552, + "c5": -1.7791380664368681, + "c6": -8.79984789841949, + "c7": 2.1995605412609187 }, - "vertexSeeds": { - "c1": 6.78085370858579, - "c2": 6.614529704218453, - "c3": 6.497838843670281, - "c4": 6.367441360338097, - "c5": 6.4197414506767885, - "c6": 6.649852322218846, - "c7": 6.478875197587586 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077674, + "c3": 8.0906148867314, + "c4": 6.472491909385126, + "c5": 4.8543689320388514, + "c6": 3.2362459546925493, + "c7": 1.6181229773462746 }, "rgb": [58, 15, 49] }, @@ -236391,23 +236391,23 @@ "year": 1772, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -1.6003569047069028, - "c2": -13.094217093509743, - "c3": 21.62847687894454, - "c4": 5.377479561046005, - "c5": -3.0005190732201896, - "c6": 16.68976635931393, - "c7": 5.672447729858238 + "points": { + "c1": 3.248066787148403, + "c2": 11.747628771129087, + "c3": -4.1988969201395285, + "c4": -14.816048123926187, + "c5": -12.62817233280311, + "c6": 9.719867050393475, + "c7": 17.554634343698623 }, - "vertexSeeds": { - "c1": 5.6938469150166915, - "c2": 6.568000061761547, - "c3": 6.459362765280917, - "c4": 6.550171527091828, - "c5": 5.682506132592778, - "c6": 6.360912708393306, - "c7": 6.407055420407147 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996762, + "c4": 6.343042071197408, + "c5": 4.757281553398053, + "c6": 3.171521035598699, + "c7": 1.5857605177993441 }, "rgb": [86, 146, 138] }, @@ -236418,23 +236418,23 @@ "year": 1773, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -24.401408826056073, - "c2": 12.735911458258052, - "c3": 6.281599818429527, - "c4": 17.695442984988254, - "c5": 24.79983951332644, - "c6": 11.70985065529915, - "c7": 36.76442017318224 + "points": { + "c1": -45.658406934327246, + "c2": 17.123926444660434, + "c3": -0.4878644373605212, + "c4": -33.524855003769794, + "c5": 19.31756133956585, + "c6": 24.266762417697514, + "c7": -31.401621973434043 }, - "vertexSeeds": { - "c1": 4.8302477055241875, - "c2": 4.833625377640589, - "c3": 4.827902853200301, - "c4": 4.830584219078384, - "c5": 4.834051567300414, - "c6": 4.8319823444737615, - "c7": 4.822156169781127 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055511, + "c3": 5.779010633379631, + "c4": 4.623208506703751, + "c5": 3.4674063800276405, + "c6": 2.3116042533517605, + "c7": 1.1558021266758802 }, "rgb": [86, 146, 138] }, @@ -236445,23 +236445,23 @@ "year": 1774, "resistanceReported": false, "duration": 58233600, - "curveSeeds": { - "c1": 60.844883868920036, - "c2": 72.74292502713838, - "c3": -38.221117585729196, - "c4": -37.67379457050631, - "c5": 49.16535257170155, - "c6": 38.447954001848714, - "c7": -68.59162115910846 + "points": { + "c1": 35.02596579223602, + "c2": 7.196184733397558, + "c3": -45.85309434576469, + "c4": 48.75820468162634, + "c5": -68.41252592746878, + "c6": 30.13592122802578, + "c7": 72.08979825174005 }, - "vertexSeeds": { - "c1": 6.301301449781733, - "c2": 6.279751359775604, - "c3": 6.2287546374232985, - "c4": 6.2383269787360875, - "c5": 6.3962620264341865, - "c6": 6.409923264089189, - "c7": 6.233914985766646 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675438, + "c3": 7.859454461396212, + "c4": 6.287563569116959, + "c5": 4.715672676837734, + "c6": 3.1437817845584797, + "c7": 1.5718908922792254 }, "rgb": [58, 15, 49] }, @@ -236472,23 +236472,23 @@ "year": 1773, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 17.360135725531315, - "c2": -31.903384637003985, - "c3": -45.39109820810859, - "c4": 6.5086630792154665, - "c5": 12.948819487602627, - "c6": 47.92139990648922, - "c7": 20.26511386988239 + "points": { + "c1": -30.24509704331842, + "c2": -39.28311700333184, + "c3": -49.85732528708136, + "c4": -30.7484240281541, + "c5": 13.121289464416542, + "c6": -40.335872622377366, + "c7": -37.015941627078064 }, - "vertexSeeds": { - "c1": 2.4522377616392683, - "c2": 2.632658036255466, - "c3": 2.43220489072088, - "c4": 2.594321304204712, - "c5": 2.599142030336056, - "c6": 2.592752554704266, - "c7": 2.532758084353113 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.3749422098936646, + "c4": 2.69995376791493, + "c5": 2.024965325936196, + "c6": 1.3499768839574684, + "c7": 0.6749884419787342 }, "rgb": [238, 201, 159] }, @@ -236499,23 +236499,23 @@ "year": 1773, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 15.643487591638099, - "c2": -10.483734675543602, - "c3": 1.3284540917289505, - "c4": -10.71724626360443, - "c5": 30.893271679266043, - "c6": -29.17216661106408, - "c7": -32.085079085103864 + "points": { + "c1": 28.27782069594815, + "c2": 33.00352348386919, + "c3": -31.126566799340925, + "c4": 6.53809233100943, + "c5": 21.18225818826396, + "c6": 17.055792687365063, + "c7": 7.494100299568963 }, - "vertexSeeds": { - "c1": 6.742573507583787, - "c2": 6.715191043679241, - "c3": 5.987088898155286, - "c4": 6.7398889977417005, - "c5": 6.231217025134439, - "c6": 5.97060227344681, - "c7": 6.147518928209128 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -236526,23 +236526,23 @@ "year": 1773, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 27.96397696763391, - "c2": 2.8219520755341136, - "c3": -38.176456157001965, - "c4": 20.360922592844176, - "c5": 17.53948164926809, - "c6": 13.397962422774192, - "c7": -29.460325948108924 + "points": { + "c1": -40.24951431897018, + "c2": 19.959840252172427, + "c3": -40.63179928176917, + "c4": -16.703561768765997, + "c5": -41.248460270245516, + "c6": -18.45732812637589, + "c7": 12.15687492599713 }, - "vertexSeeds": { - "c1": 6.190309495360613, - "c2": 6.150894266178255, - "c3": 6.062060903104977, - "c4": 5.93987777265054, - "c5": 5.954340936487084, - "c6": 5.708048482395486, - "c7": 6.12795685006684 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -236553,23 +236553,23 @@ "year": 1773, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": 22.34272786366808, - "c2": -39.96173128265656, - "c3": 47.87208900996358, - "c4": -46.05903082958493, - "c5": -23.423707253654207, - "c6": 0.4047016988894825, - "c7": 2.601655827440119 + "points": { + "c1": -29.546563176597108, + "c2": 27.78109129769873, + "c3": -26.274036503656415, + "c4": -40.78444616632127, + "c5": 28.316953448381945, + "c6": -43.258851227162765, + "c7": 19.75737609847294 }, - "vertexSeeds": { - "c1": 5.486553236206923, - "c2": 5.4307502784049975, - "c3": 5.41825174275418, - "c4": 5.57992004923343, - "c5": 5.425670118910875, - "c6": 5.34239762029882, - "c7": 5.635915188294892 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.7498844197873265, + "c4": 5.399907535829858, + "c5": 4.049930651872388, + "c6": 2.6999537679149395, + "c7": 1.3499768839574697 }, "rgb": [222, 0, 59] }, @@ -236580,23 +236580,23 @@ "year": 1773, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 10.439836680121111, - "c2": 23.144879956318476, - "c3": -18.93870789425374, - "c4": 27.01846721508001, - "c5": 15.1758503970729, - "c6": 0.8262115375642267, - "c7": 9.428346277120376 + "points": { + "c1": 1.4950319973641584, + "c2": 10.79506243972078, + "c3": -16.439263641097114, + "c4": -18.304595473231426, + "c5": 22.864976670547236, + "c6": -13.862038696834162, + "c7": -14.95218086714829 }, - "vertexSeeds": { - "c1": 6.327517178627538, - "c2": 6.049156045818212, - "c3": 6.170094916148852, - "c4": 5.784279402406432, - "c5": 6.531194565317337, - "c6": 6.380979107546061, - "c7": 6.2022423446818395 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [86, 146, 138] }, @@ -236607,23 +236607,23 @@ "year": 1773, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -33.279739508967154, - "c2": 0.1071876719570497, - "c3": -1.4242964937877929, - "c4": -15.186832945680898, - "c5": -19.69872812718653, - "c6": 15.699926605410553, - "c7": 14.034889820726804 + "points": { + "c1": 24.839741459369947, + "c2": -21.03150125607728, + "c3": 5.20578350155003, + "c4": 19.510536279633172, + "c5": 27.113498419733176, + "c6": 24.65830786186369, + "c7": -18.038249941367702 }, - "vertexSeeds": { - "c1": 2.074000214762349, - "c2": 2.064936684793233, - "c3": 2.0753788100681003, - "c4": 2.086075159385737, - "c5": 2.045707841630616, - "c6": 2.2654570175979782, - "c7": 2.175236723486699 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266304, + "c3": 2.7739251040221893, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.109570041608878, + "c7": 0.5547850208044373 }, "rgb": [58, 15, 49] }, @@ -236634,23 +236634,23 @@ "year": 1773, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 20.061241497242577, - "c2": 4.8130340881355025, - "c3": 36.32176325482746, - "c4": 24.189588188478652, - "c5": -29.116462991644156, - "c6": -36.14963230228751, - "c7": 40.27501077113379 + "points": { + "c1": 7.999436782228258, + "c2": -6.2348252605626655, + "c3": 12.280081630176944, + "c4": -27.01938434549009, + "c5": 39.52481126178124, + "c6": 21.075357464751804, + "c7": 1.584612566498265 }, - "vertexSeeds": { - "c1": 4.900618488238773, - "c2": 4.878931407917357, - "c3": 4.846777728720169, - "c4": 5.147179652860914, - "c5": 5.080563226786856, - "c6": 4.925826077718781, - "c7": 5.056277843493712 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [222, 0, 59] }, @@ -236661,23 +236661,23 @@ "year": 1773, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -9.323139918129861, - "c2": -10.14575133124374, - "c3": 8.415738978742464, - "c4": -22.64387344895467, - "c5": 29.77847842764537, - "c6": -8.15835906354485, - "c7": -19.597880679578502 + "points": { + "c1": -15.920927691386616, + "c2": 30.273135241305155, + "c3": 28.097377422698848, + "c4": -18.92292200484817, + "c5": -27.5141425580913, + "c6": -22.06575665969615, + "c7": 18.709913901087724 }, - "vertexSeeds": { - "c1": 6.078292393160336, - "c2": 5.582340471181441, - "c3": 5.728879874926689, - "c4": 6.170845239252198, - "c5": 6.705911780188786, - "c6": 5.961970846174421, - "c7": 6.453806490483723 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -236688,23 +236688,23 @@ "year": 1773, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 25.082661633018816, - "c2": -45.93658119647227, - "c3": 16.436469877887305, - "c4": -46.73818019758291, - "c5": -36.912905937742, - "c6": -29.645980395133826, - "c7": -35.26752602720368 + "points": { + "c1": 29.297181379804897, + "c2": -31.181077777313316, + "c3": 14.601222013590224, + "c4": -26.618133371866694, + "c5": -48.192561039338784, + "c6": -9.676455626940957, + "c7": 38.0885417208664 }, - "vertexSeeds": { - "c1": 4.149966396493092, - "c2": 4.165841586772955, - "c3": 3.533077673992668, - "c4": 3.817526668511082, - "c5": 3.840511315321808, - "c6": 3.672345338688524, - "c7": 3.845264475645281 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.1086453999075365, + "c4": 4.086916319926027, + "c5": 3.065187239944523, + "c6": 2.0434581599630137, + "c7": 1.0217290799815044 }, "rgb": [58, 15, 49] }, @@ -236715,23 +236715,23 @@ "year": 1773, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -20.27611192990667, - "c2": -43.00845892254678, - "c3": -13.122950868120142, - "c4": -33.69176188007619, - "c5": -18.095355418108113, - "c6": -30.555098187796858, - "c7": -37.59889586192725 + "points": { + "c1": -10.330090798924026, + "c2": -32.14221049431298, + "c3": -15.620156050091555, + "c4": 14.971913094072654, + "c5": 42.72147345738567, + "c6": -36.747272456244225, + "c7": 30.266145779266125 }, - "vertexSeeds": { - "c1": 5.844768637346533, - "c2": 6.059657261166214, - "c3": 6.341662622129344, - "c4": 6.304734012952305, - "c5": 6.491056442786216, - "c6": 6.417507141767636, - "c7": 5.98690467988894 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514563, + "c3": 7.7669902912621325, + "c4": 6.213592233009705, + "c5": 4.660194174757287, + "c6": 3.1067961165048574, + "c7": 1.5533980582524287 }, "rgb": [222, 0, 59] }, @@ -236742,23 +236742,23 @@ "year": 1773, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 21.112868572323954, - "c2": 27.778949030635616, - "c3": 17.82672367491797, - "c4": -16.54853166631902, - "c5": -1.2808838004597085, - "c6": -9.771699597517287, - "c7": -22.2043047155366 + "points": { + "c1": -28.89901738903954, + "c2": 8.515919820600963, + "c3": -19.641993418531783, + "c4": -17.632896727845512, + "c5": 25.026748534126405, + "c6": 19.635023349940575, + "c7": -3.583432112881127 }, - "vertexSeeds": { - "c1": 2.918242934563831, - "c2": 3.0560626212492035, - "c3": 3.00591331098007, - "c4": 2.833961653521335, - "c5": 2.7810091893690267, - "c6": 3.02297068294758, - "c7": 2.8769833289485733 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515954, + "c3": 3.7447988904299576, + "c4": 2.995839112343969, + "c5": 2.2468793342579727, + "c6": 1.4979195561719845, + "c7": 0.7489597780859882 }, "rgb": [77, 76, 132] }, @@ -236769,23 +236769,23 @@ "year": 1773, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -18.27094941505186, - "c2": 21.092352317703558, - "c3": 0.5614546804963538, - "c4": 2.5670203259463023, - "c5": 12.365467345812611, - "c6": -26.343861900324228, - "c7": -2.782342287956652 + "points": { + "c1": 23.139416773888428, + "c2": 10.298456468973875, + "c3": 0.5145484158515075, + "c4": 17.05564786283781, + "c5": -24.45058320309885, + "c6": -17.661810372519735, + "c7": -27.620665160762723 }, - "vertexSeeds": { - "c1": 4.3803620266064875, - "c2": 4.35929092836004, - "c3": 4.75284628645239, - "c4": 4.3652659498367345, - "c5": 4.761815842174337, - "c6": 4.3703588701423675, - "c7": 4.024272956297269 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -236796,23 +236796,23 @@ "year": 1772, "resistanceReported": true, "duration": 29030400, - "curveSeeds": { - "c1": 22.904955237268553, - "c2": 35.80316582842225, - "c3": 36.364675621906215, - "c4": 12.381196246532745, - "c5": 10.66055668909845, - "c6": -15.329141424282447, - "c7": -27.019019368360517 + "points": { + "c1": 19.986500780540432, + "c2": 11.327247762099773, + "c3": 25.29647484804906, + "c4": -29.81907720888722, + "c5": -28.683419015045153, + "c6": -20.137372838084755, + "c7": -41.11625814765396 }, - "vertexSeeds": { - "c1": 0.5006013333066204, - "c2": 0.5192247357122164, - "c3": 0.4922259241918668, - "c4": 0.5428764441261833, - "c5": 0.5331968295507343, - "c6": 0.5341255463760024, - "c7": 0.4997586053787956 + "offsets": { + "c1": 0.9385113268608414, + "c2": 0.8044382801664359, + "c3": 0.6703652334720294, + "c4": 0.5362921867776239, + "c5": 0.4022191400832174, + "c6": 0.26814609338881196, + "c7": 0.13407304669440542 }, "rgb": [58, 15, 49] }, @@ -236823,23 +236823,23 @@ "year": 1773, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -17.938531296934222, - "c2": 1.8768167771202826, - "c3": 25.202032678749426, - "c4": 16.579319513876932, - "c5": 31.251475673018092, - "c6": 4.095795214769893, - "c7": -32.184353254589006 + "points": { + "c1": -17.61049163833699, + "c2": 4.458893001993239, + "c3": 28.665486223587507, + "c4": -13.547428297069604, + "c5": 23.898406023652086, + "c6": -33.704311858709005, + "c7": -27.61098599845849 }, - "vertexSeeds": { - "c1": 4.520866889327436, - "c2": 4.803049189977316, - "c3": 4.441208710612332, - "c4": 4.071856298582721, - "c5": 4.107694485294826, - "c6": 4.832237206797672, - "c7": 4.335091798450596 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -236850,23 +236850,23 @@ "year": 1773, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 10.926548342774737, - "c2": -2.985258829607929, - "c3": -7.348029827964577, - "c4": 21.99789531206877, - "c5": 26.54178414115946, - "c6": -11.855135180575918, - "c7": 9.324768388153068 + "points": { + "c1": -2.599463204403662, + "c2": 0.7379673603091774, + "c3": -2.7647837644847932, + "c4": 20.983727426037284, + "c5": 7.723485642133802, + "c6": -19.891730876103846, + "c7": -25.90329976239802 }, - "vertexSeeds": { - "c1": 5.236647238727113, - "c2": 4.917059855838998, - "c3": 5.60630893620568, - "c4": 5.446853819304545, - "c5": 4.861435373664802, - "c6": 5.390617643840444, - "c7": 5.535816397204144 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187242, + "c3": 7.0041608876560355, + "c4": 5.60332871012483, + "c5": 4.202496532593616, + "c6": 2.8016643550624103, + "c7": 1.4008321775312051 }, "rgb": [86, 146, 138] }, @@ -236877,23 +236877,23 @@ "year": 1773, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 7.944031236692322, - "c2": 19.299894226074127, - "c3": -9.333843666642345, - "c4": 11.605479670100078, - "c5": 21.52301819129885, - "c6": 10.822024166385152, - "c7": -29.575858292369656 + "points": { + "c1": 26.485431987624963, + "c2": -6.988317400239271, + "c3": 21.038729644704915, + "c4": -5.810609155038065, + "c5": 9.49314152730755, + "c6": 2.9319663392914777, + "c7": -4.4697641377356305 }, - "vertexSeeds": { - "c1": 4.74731544861033, - "c2": 4.319866159687583, - "c3": 4.202460097583762, - "c4": 4.6595740466930575, - "c5": 4.7090653570731895, - "c6": 4.762402713965775, - "c7": 4.168607321449193 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.85159500693481, + "c3": 5.709662505779007, + "c4": 4.5677300046232086, + "c5": 3.425797503467405, + "c6": 2.283865002311601, + "c7": 1.1419325011558037 }, "rgb": [77, 76, 132] }, @@ -236904,23 +236904,23 @@ "year": 1773, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 46.556406748713044, - "c2": 48.50901302562545, - "c3": 20.321419421206727, - "c4": -54.15499689104145, - "c5": 50.190518753504406, - "c6": -28.55951364569182, - "c7": -45.99178731511704 + "points": { + "c1": -49.36403208407519, + "c2": 1.0453345188941512, + "c3": 45.25441383476293, + "c4": -49.24717521615571, + "c5": -18.567022174771203, + "c6": -2.8814976563614465, + "c7": 2.855588847605766 }, - "vertexSeeds": { - "c1": 2.3410247548610195, - "c2": 2.582151825341672, - "c3": 2.344418677493403, - "c4": 2.412393558510535, - "c5": 2.366338840068805, - "c6": 2.4218593739917607, - "c7": 2.5007404597017215 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [222, 0, 59] }, @@ -236931,23 +236931,23 @@ "year": 1773, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 32.553404899304205, - "c2": 35.018389462476115, - "c3": 25.72719824595307, - "c4": 5.658959038702655, - "c5": -20.631374305704924, - "c6": 2.1330457416614976, - "c7": 9.67036161770131 + "points": { + "c1": 3.5872126670381235, + "c2": 32.53113741812546, + "c3": -43.56222716908642, + "c4": -8.570686122853473, + "c5": 8.728766431498563, + "c6": 37.619594408305, + "c7": -17.23086133391871 }, - "vertexSeeds": { - "c1": 5.858842056398306, - "c2": 5.8772379497113265, - "c3": 6.004005101509642, - "c4": 6.026718681790136, - "c5": 6.103857685045024, - "c6": 6.610774386526153, - "c7": 6.532882501556533 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [77, 76, 132] }, @@ -236958,23 +236958,23 @@ "year": 1773, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 6.569417642979126, - "c2": 11.019858970938749, - "c3": 29.352065768620378, - "c4": -4.547187885882444, - "c5": -7.235147343209178, - "c6": 17.58096157914943, - "c7": 22.84967767907392 + "points": { + "c1": -22.551212634689218, + "c2": 3.5329765407957225, + "c3": -40.78409843991703, + "c4": -26.18793208916592, + "c5": 28.317663920368815, + "c6": 5.438604194069626, + "c7": 15.0635006341831 }, - "vertexSeeds": { - "c1": 6.475224543432503, - "c2": 6.062221014955121, - "c3": 6.251873181543767, - "c4": 6.0132361580398825, - "c5": 6.1985170118538155, - "c6": 6.15605048813829, - "c7": 6.630491221273763 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [58, 15, 49] }, @@ -236985,23 +236985,23 @@ "year": 1773, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -35.43344662452442, - "c2": -29.945211249180097, - "c3": -5.0703935106477545, - "c4": -20.461085417460076, - "c5": 0.4444687627247603, - "c6": 27.804983213816847, - "c7": -38.930901208748956 + "points": { + "c1": -24.580695178328146, + "c2": -19.571919172888684, + "c3": 40.742080087844336, + "c4": -30.147286806207845, + "c5": -39.051527081097476, + "c6": -1.980828167800901, + "c7": 34.86137594453856 }, - "vertexSeeds": { - "c1": 10.42980381201195, - "c2": 10.522882466558562, - "c3": 10.556853195761084, - "c4": 10.41630119195761, - "c5": 10.428227847748207, - "c6": 10.526592977111557, - "c7": 10.627043674234342 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122007, + "c3": 12.71382339343511, + "c4": 10.171058714748057, + "c5": 7.628294036061003, + "c6": 5.085529357374106, + "c7": 2.542764678687053 }, "rgb": [77, 76, 132] }, @@ -237012,23 +237012,23 @@ "year": 1773, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -21.32986128018499, - "c2": 1.17617343780028, - "c3": 9.192901746964097, - "c4": 25.01458319770785, - "c5": -17.61519059047112, - "c6": 33.872204114474386, - "c7": 24.129840298638115 + "points": { + "c1": -44.19607525070874, + "c2": 33.677098963491176, + "c3": -4.313306356771669, + "c4": 14.273177242214558, + "c5": 27.662437639081972, + "c6": 34.19612203263718, + "c7": 45.65055722011671 }, - "vertexSeeds": { - "c1": 4.245202348371541, - "c2": 4.1030237736421284, - "c3": 4.18182752748094, - "c4": 4.1793810729374545, - "c5": 3.9949121970170913, - "c6": 4.141240663228375, - "c7": 4.264805467142472 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291265, + "c3": 5.339805825242714, + "c4": 4.271844660194174, + "c5": 3.2038834951456323, + "c6": 2.135922330097083, + "c7": 1.0679611650485414 }, "rgb": [222, 0, 59] }, @@ -237039,23 +237039,23 @@ "year": 1772, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -21.12060487627896, - "c2": -17.977375360659405, - "c3": -14.869841420563127, - "c4": 1.7648964684122923, - "c5": 24.34144116295247, - "c6": -24.914265255635016, - "c7": -11.745599638431566 + "points": { + "c1": 19.995913231853777, + "c2": 11.671660505412383, + "c3": -15.804154317056305, + "c4": -25.663992859339242, + "c5": 4.927669615142634, + "c6": -17.504000800986077, + "c7": 20.283288538320562 }, - "vertexSeeds": { - "c1": 4.350460694590449, - "c2": 4.078621371471407, - "c3": 4.278837458514862, - "c4": 4.1869497874882695, - "c5": 4.663064227955972, - "c6": 4.063597866527704, - "c7": 4.2387234754613505 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -237066,23 +237066,23 @@ "year": 1773, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -22.817492620577948, - "c2": -42.674226357622466, - "c3": -37.18131803342945, - "c4": 33.61052349898937, - "c5": 13.183703698789671, - "c6": 44.20180415599537, - "c7": -33.25349483499409 + "points": { + "c1": -31.224151643097326, + "c2": -0.4473536718652653, + "c3": -21.619974562193466, + "c4": -20.589766207040764, + "c5": 7.995564455666731, + "c6": 43.38185448624541, + "c7": -16.729348837897568 }, - "vertexSeeds": { - "c1": 3.377098312800802, - "c2": 3.400044722631402, - "c3": 3.2813985304288042, - "c4": 3.2324957747440206, - "c5": 3.4820406972235087, - "c6": 3.5433625689293367, - "c7": 3.518058849832289 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481278, + "c3": 4.299583911234393, + "c4": 3.4396671289875163, + "c5": 2.579750346740639, + "c6": 1.719833564493754, + "c7": 0.859916782246877 }, "rgb": [77, 76, 132] }, @@ -237093,23 +237093,23 @@ "year": 1772, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": 20.458070773252814, - "c2": 5.018099949384023, - "c3": 7.287928289915065, - "c4": -20.89102026799955, - "c5": 11.272790471558693, - "c6": -5.518554642258028, - "c7": -6.9851442339864995 + "points": { + "c1": 21.40355308506875, + "c2": 1.0204248526322708, + "c3": 14.864657853364712, + "c4": 9.224466087858133, + "c5": -9.873290663793794, + "c6": 12.372611504461162, + "c7": -13.844883577368408 }, - "vertexSeeds": { - "c1": 3.0060215913941204, - "c2": 3.1691899138287933, - "c3": 2.9315877003010824, - "c4": 3.0771375956488978, - "c5": 3.1100563048638077, - "c6": 3.2490213784838673, - "c7": 3.2341621978342494 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -237120,23 +237120,23 @@ "year": 1773, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -3.840242687358618, - "c2": -17.183266941116507, - "c3": -34.793752909409974, - "c4": -31.116028552198834, - "c5": 14.512257011232151, - "c6": -26.347156847186035, - "c7": 5.175962697569169 + "points": { + "c1": -16.71953335168062, + "c2": -23.006040865034603, + "c3": 17.610812861956283, + "c4": 0.43022280160568727, + "c5": 35.89426329131511, + "c6": -0.8074735664315043, + "c7": 38.397723772301106 }, - "vertexSeeds": { - "c1": 6.371146218730052, - "c2": 6.025693825808595, - "c3": 6.147944567274261, - "c4": 6.1000934399294096, - "c5": 6.389539980973994, - "c6": 6.037385542858869, - "c7": 6.183224231688691 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273244, + "c3": 7.628294036061021, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.051317614424415, + "c7": 1.525658807212192 }, "rgb": [86, 146, 138] }, @@ -237147,23 +237147,23 @@ "year": 1774, "resistanceReported": false, "duration": 50630400, - "curveSeeds": { - "c1": -37.13448576481075, - "c2": 5.304067567482363, - "c3": 5.50603730531796, - "c4": -36.57658382940197, - "c5": -4.533509185911662, - "c6": -62.39563952900641, - "c7": -28.727270515774528 + "points": { + "c1": -31.650436508680585, + "c2": -48.59916349904739, + "c3": -22.525002045423726, + "c4": 33.951080715293585, + "c5": 64.81575899149294, + "c6": -63.67582154683168, + "c7": -2.5360899449466103 }, - "vertexSeeds": { - "c1": 7.282230978779805, - "c2": 6.996095109578378, - "c3": 7.070987003652631, - "c4": 7.036592334824462, - "c5": 7.100847676035391, - "c6": 7.055738095401922, - "c7": 7.2599996337001915 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244113, + "c3": 8.76098012020341, + "c4": 7.008784096162732, + "c5": 5.256588072122057, + "c6": 3.5043920480813804, + "c7": 1.7521960240406764 }, "rgb": [86, 146, 138] }, @@ -237174,23 +237174,23 @@ "year": 1773, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 27.37255090056373, - "c2": 19.921904599005323, - "c3": 7.770748344730414, - "c4": -18.14095252969605, - "c5": 3.1301293907814163, - "c6": -7.203013276403073, - "c7": -26.192872054036375 + "points": { + "c1": -17.679931881750434, + "c2": -13.878672252243081, + "c3": -13.544743109221255, + "c4": -8.609150131490544, + "c5": 30.138702461667123, + "c6": 18.863732866527727, + "c7": -0.5564466970965682 }, - "vertexSeeds": { - "c1": 6.616388426065775, - "c2": 6.25230795125516, - "c3": 5.842832089840856, - "c4": 6.314775025733317, - "c5": 5.943712669576913, - "c6": 6.259860293732457, - "c7": 6.395746546040273 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -237201,23 +237201,23 @@ "year": 1773, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 7.966149550493597, - "c2": 2.54241111632917, - "c3": -4.7105868933836845, - "c4": 24.86341748092549, - "c5": 9.410420079662217, - "c6": -1.3361934127270558, - "c7": -28.394064807779486 + "points": { + "c1": -14.865864405571521, + "c2": -0.5573548598490206, + "c3": -25.17868650839887, + "c4": -34.00508142870067, + "c5": 9.414019097817786, + "c6": 1.2896096097793333, + "c7": 5.932825487117668 }, - "vertexSeeds": { - "c1": 7.298484798615603, - "c2": 6.983271197487017, - "c3": 7.339521642065908, - "c4": 6.341920738225327, - "c5": 7.125554017414817, - "c6": 7.280149535524279, - "c7": 6.891282420521519 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244099, + "c3": 8.760980120203422, + "c4": 7.008784096162734, + "c5": 5.256588072122057, + "c6": 3.504392048081367, + "c7": 1.752196024040677 }, "rgb": [58, 15, 49] }, @@ -237228,23 +237228,23 @@ "year": 1773, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -3.757470689506519, - "c2": -8.816573355017638, - "c3": 25.125037261536654, - "c4": 11.132485984231117, - "c5": 38.58839161667394, - "c6": -1.4499138456102543, - "c7": -6.69997501720524 + "points": { + "c1": 10.52054604827378, + "c2": 26.6565800022807, + "c3": -0.8731846798464815, + "c4": 20.283460210663343, + "c5": 15.42645406093235, + "c6": -44.12816014654314, + "c7": -22.84508160717796 }, - "vertexSeeds": { - "c1": 11.440578911938033, - "c2": 10.725475432164673, - "c3": 11.316198877929093, - "c4": 10.60040697794352, - "c5": 10.514061364924427, - "c6": 11.160391888981115, - "c7": 11.199883943859122 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.53259361997228, + "c3": 13.777161349976879, + "c4": 11.02172907998152, + "c5": 8.26629680998612, + "c6": 5.51086453999076, + "c7": 2.7554322699953597 }, "rgb": [222, 0, 59] }, @@ -237255,23 +237255,23 @@ "year": 1773, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -7.622794337729317, - "c2": 13.48315053064611, - "c3": -23.81740605553272, - "c4": -15.717155576957724, - "c5": -23.781596027630894, - "c6": -10.068429662517438, - "c7": -2.1974774419863152 + "points": { + "c1": 24.12223296799072, + "c2": -31.43298897940733, + "c3": -6.100187961196731, + "c4": -14.090211630397743, + "c5": 24.71218392024865, + "c6": -4.8475593524307925, + "c7": 5.857694726607555 }, - "vertexSeeds": { - "c1": 4.787492836425968, - "c2": 4.709882902848531, - "c3": 4.545051866985085, - "c4": 4.430433349582447, - "c5": 4.467673141492379, - "c6": 4.559222781282115, - "c7": 4.253582346870162 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -237282,23 +237282,23 @@ "year": 1773, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -28.01392953982401, - "c2": -11.781517005118076, - "c3": 2.375526156885307, - "c4": -15.151205657468775, - "c5": -12.575713242850131, - "c6": -16.162532813529104, - "c7": -30.257812064684515 + "points": { + "c1": -16.76293921499673, + "c2": -21.378313201960218, + "c3": -31.020218938912123, + "c4": -28.58374403121601, + "c5": -34.28280878958993, + "c6": 13.721069916651658, + "c7": 10.434765268229853 }, - "vertexSeeds": { - "c1": 4.73936712802693, - "c2": 4.700588358462349, - "c3": 4.2740894386391695, - "c4": 4.488711617122517, - "c5": 4.43342530319604, - "c6": 4.050888253149232, - "c7": 4.355805059633611 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -237309,23 +237309,23 @@ "year": 1773, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 12.57699487280798, - "c2": 8.065629993087605, - "c3": -6.753041574936006, - "c4": -27.732788006323542, - "c5": -21.32776533061642, - "c6": 15.718754254165411, - "c7": -7.385024545195556 + "points": { + "c1": -14.119472360919868, + "c2": -17.157940694349975, + "c3": 16.433814255632768, + "c4": -21.06275695251571, + "c5": -17.935581129315743, + "c6": 24.262371794229267, + "c7": -10.138799818761768 }, - "vertexSeeds": { - "c1": 7.412600749780025, - "c2": 7.4502709238405975, - "c3": 8.772495127817407, - "c4": 7.498892511221468, - "c5": 8.024020694983514, - "c6": 7.6204143021749395, - "c7": 7.7376019730774015 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.56588072122053, + "c3": 10.47156726768378, + "c4": 8.377253814147016, + "c5": 6.282940360610265, + "c6": 4.188626907073514, + "c7": 2.094313453536752 }, "rgb": [58, 15, 49] }, @@ -237336,23 +237336,23 @@ "year": 1773, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -9.067422366168955, - "c2": -31.46579054691351, - "c3": 26.250986519235852, - "c4": -19.98995497305883, - "c5": 14.340257439587496, - "c6": 29.040709730844483, - "c7": -7.170257289910936 + "points": { + "c1": -26.889816231418703, + "c2": -41.19858958681644, + "c3": 10.672309822784406, + "c4": -2.064670881256461, + "c5": -21.563529570509267, + "c6": -8.562744264748211, + "c7": -10.576511477601173 }, - "vertexSeeds": { - "c1": 2.768197407147096, - "c2": 2.630168985981827, - "c3": 2.658121216962709, - "c4": 2.790970014874688, - "c5": 2.6618132865996054, - "c6": 2.8341341151803148, - "c7": 2.50989070366097 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [222, 0, 59] }, @@ -237363,23 +237363,23 @@ "year": 1773, "resistanceReported": false, "duration": 47520000, - "curveSeeds": { - "c1": -6.915191559084647, - "c2": -30.928061159388843, - "c3": 31.359177508443494, - "c4": 55.46807303280565, - "c5": -9.68087535691479, - "c6": 6.169754387307776, - "c7": 20.071488534847006 + "points": { + "c1": 1.0745440204892702, + "c2": 14.433167151885797, + "c3": 36.92717923601417, + "c4": 53.304729210375214, + "c5": 44.284314966146965, + "c6": -1.0099922132180197, + "c7": -12.414528309457296 }, - "vertexSeeds": { - "c1": 6.598869380496721, - "c2": 6.430961697917262, - "c3": 6.459841106853934, - "c4": 6.072736754687773, - "c5": 6.037954989731366, - "c6": 6.275535767925325, - "c7": 6.161224699552093 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037445, + "c3": 8.067498844197878, + "c4": 6.4539990753583, + "c5": 4.840499306518723, + "c6": 3.226999537679145, + "c7": 1.6134997688395776 }, "rgb": [58, 15, 49] }, @@ -237390,23 +237390,23 @@ "year": 1773, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 39.029694046422684, - "c2": 38.690922941943576, - "c3": -16.816804266893367, - "c4": -23.101037643038577, - "c5": 11.418212776898358, - "c6": -35.78029869341957, - "c7": -9.910498620986601 + "points": { + "c1": -4.296072871747278, + "c2": 42.18718541741324, + "c3": -44.27448642583587, + "c4": -0.28804155140369403, + "c5": -23.987644785511325, + "c6": 43.82270621270616, + "c7": 5.736582218083143 }, - "vertexSeeds": { - "c1": 2.5651421912069363, - "c2": 2.7088933083907536, - "c3": 2.8527964706936113, - "c4": 2.7980210476440086, - "c5": 2.647987592083934, - "c6": 2.53984522576393, - "c7": 2.7472919980460673 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.467406380027739, + "c4": 2.773925104022191, + "c5": 2.080443828016643, + "c6": 1.3869625520110955, + "c7": 0.6934812760055478 }, "rgb": [86, 146, 138] }, @@ -237417,23 +237417,23 @@ "year": 1773, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -13.216043592947834, - "c2": 26.879958507792445, - "c3": 25.56416388603339, - "c4": -10.036553346139176, - "c5": 12.151552545968272, - "c6": 19.03146548899946, - "c7": 26.84197271723047 + "points": { + "c1": 22.477144904819028, + "c2": -27.659803211548578, + "c3": 26.674572346012432, + "c4": -11.708331658299564, + "c5": -1.9395641940277493, + "c6": 27.97975395242092, + "c7": 4.724423065142062 }, - "vertexSeeds": { - "c1": 4.129345059987452, - "c2": 4.290824692674204, - "c3": 4.4015336852307545, - "c4": 4.31137804186327, - "c5": 3.946616787397687, - "c6": 4.03931482882503, - "c7": 3.880106483467402 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -237444,23 +237444,23 @@ "year": 1773, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -19.229741116381753, - "c2": -12.816747800372882, - "c3": -21.065155376059586, - "c4": 26.37045180877943, - "c5": -2.8783010022572597, - "c6": 23.825029902863008, - "c7": -15.93376353506924 + "points": { + "c1": -21.941464153098128, + "c2": -21.30313879938857, + "c3": -14.009337085768312, + "c4": 20.88579318328292, + "c5": -5.097709234479044, + "c6": -1.1731542334030785, + "c7": -4.864277237932974 }, - "vertexSeeds": { - "c1": 5.729981591624539, - "c2": 5.774542374929085, - "c3": 5.689226913624003, - "c4": 6.225506219434792, - "c5": 6.57383200222297, - "c6": 5.729859708497796, - "c7": 6.319838862798325 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -237471,23 +237471,23 @@ "year": 1773, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 21.03754134075446, - "c2": 21.504967225286883, - "c3": -11.16928559590676, - "c4": -22.772933342979737, - "c5": -6.490069084457822, - "c6": 24.075358431728723, - "c7": 8.496998171905737 + "points": { + "c1": 28.38537427085798, + "c2": -23.33746936712546, + "c3": -8.012592932390938, + "c4": 12.053984888728031, + "c5": -7.273165812270122, + "c6": 5.605468195438355, + "c7": 13.5969708150921 }, - "vertexSeeds": { - "c1": 5.993044246201068, - "c2": 6.4563382706030605, - "c3": 5.696057608097611, - "c4": 5.959300168691078, - "c5": 5.7193250215261795, - "c6": 6.426516554469917, - "c7": 6.1497693204682005 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -237498,23 +237498,23 @@ "year": 1773, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 8.641535992216863, - "c2": -24.513897326525246, - "c3": 6.90117829966152, - "c4": 3.917891494930064, - "c5": 10.702307253162783, - "c6": 6.015910291624412, - "c7": -26.383548195721033 + "points": { + "c1": -15.583558363513648, + "c2": 17.02015580004839, + "c3": 11.48069397500402, + "c4": -19.769259667643887, + "c5": -24.918773897401422, + "c6": 18.75717826425888, + "c7": -3.187399996892399 }, - "vertexSeeds": { - "c1": 4.838536342901291, - "c2": 4.697721474601639, - "c3": 4.944714452729411, - "c4": 4.788244473942111, - "c5": 4.936502508566133, - "c6": 4.984100924915641, - "c7": 4.942270186478115 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417468, + "c3": 5.987055016181228, + "c4": 4.789644012944988, + "c5": 3.592233009708734, + "c6": 2.394822006472494, + "c7": 1.1974110032362542 }, "rgb": [77, 76, 132] }, @@ -237525,23 +237525,23 @@ "year": 1773, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 35.87833862213064, - "c2": 13.316912705473143, - "c3": 16.625919291960024, - "c4": 24.800635551310776, - "c5": -41.45820558735596, - "c6": -28.649684126228145, - "c7": -10.468050528171016 + "points": { + "c1": -5.859680170480573, + "c2": -29.357136516508845, + "c3": 37.78923733809164, + "c4": 35.66699614603223, + "c5": -19.9433713079619, + "c6": 9.683711285687252, + "c7": -31.055960490076835 }, - "vertexSeeds": { - "c1": 2.986683075662271, - "c2": 2.7303323297658104, - "c3": 2.9352904828303097, - "c4": 3.176608926926902, - "c5": 2.958989736884137, - "c6": 2.8318951378100072, - "c7": 2.870447280859275 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636615, + "c3": 3.814147018030513, + "c4": 3.05131761442441, + "c5": 2.2884882108183073, + "c6": 1.525658807212205, + "c7": 0.7628294036061025 }, "rgb": [86, 146, 138] }, @@ -237552,23 +237552,23 @@ "year": 1773, "resistanceReported": false, "duration": 44236800, - "curveSeeds": { - "c1": -51.983246140476155, - "c2": 40.82647469990423, - "c3": -1.6705742074360685, - "c4": 2.577686566017441, - "c5": -48.17236990978263, - "c6": -43.23741556678938, - "c7": 12.066237853523141 + "points": { + "c1": -1.3555663713436132, + "c2": 51.24935908199338, + "c3": -39.95007659874041, + "c4": -3.6599167647530635, + "c5": -1.2237022752212638, + "c6": 47.35972560266506, + "c7": -3.799709644021 }, - "vertexSeeds": { - "c1": 3.879699158713285, - "c2": 3.4347893948911197, - "c3": 3.6963767662976803, - "c4": 4.0608223856513606, - "c5": 4.07700555096053, - "c6": 3.7502824864246747, - "c7": 3.596801386974132 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [238, 201, 159] }, @@ -237579,23 +237579,23 @@ "year": 1773, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 13.4784399872783, - "c2": -23.602392175142494, - "c3": 17.962376906486725, - "c4": 3.421499163806125, - "c5": 33.09461137356592, - "c6": -22.738955474019576, - "c7": 18.031632383143638 + "points": { + "c1": 18.54205266476243, + "c2": 29.36980188448252, + "c3": 30.879953738306163, + "c4": 20.231965657867562, + "c5": -38.11419643433615, + "c6": 26.669032731205412, + "c7": -23.12191055838369 }, - "vertexSeeds": { - "c1": 5.000226642437528, - "c2": 5.007347435970784, - "c3": 5.0079942583015065, - "c4": 4.998400297693838, - "c5": 4.999869739169841, - "c6": 5.009380961396753, - "c7": 4.996771569997242 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417272, + "c3": 5.987055016181298, + "c4": 4.789644012944848, + "c5": 3.592233009708874, + "c6": 2.394822006472424, + "c7": 1.1974110032364502 }, "rgb": [58, 15, 49] }, @@ -237606,23 +237606,23 @@ "year": 1773, "resistanceReported": false, "duration": 44928000, - "curveSeeds": { - "c1": 19.109065253403685, - "c2": 51.97269218746396, - "c3": -29.217307464494837, - "c4": 36.74218325662706, - "c5": 32.63602682777601, - "c6": -36.71126339974204, - "c7": 3.3453644542933034 + "points": { + "c1": 44.30594950577881, + "c2": 48.780623546675216, + "c3": -4.50894846044217, + "c4": 22.136015577655357, + "c5": 21.623800347333457, + "c6": -5.669312978624589, + "c7": -56.790549796755144 }, - "vertexSeeds": { - "c1": 3.1917332460641994, - "c2": 3.072424684961705, - "c3": 2.99092905832045, - "c4": 3.2642609024566145, - "c5": 3.354034888030646, - "c6": 3.2695651806879744, - "c7": 3.1232005634632105 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441054, + "c3": 4.276467868700879, + "c4": 3.4211742949607022, + "c5": 2.565880721220527, + "c6": 1.7105871474803511, + "c7": 0.8552935737401756 }, "rgb": [222, 0, 59] }, @@ -237633,23 +237633,23 @@ "year": 1773, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 20.847524335011954, - "c2": 1.6378060831391892, - "c3": -25.250886465802648, - "c4": -7.535319133936095, - "c5": 0.5843281362955288, - "c6": -20.09394737474331, - "c7": -0.7007303226024817 + "points": { + "c1": -16.298662010021157, + "c2": 26.1314541075509, + "c3": -5.159703989960928, + "c4": 19.11927061934074, + "c5": 30.461517120963713, + "c6": 16.392163455261446, + "c7": -12.488932255867851 }, - "vertexSeeds": { - "c1": 1.9605588243308514, - "c2": 1.8129144731142917, - "c3": 1.8508782936602242, - "c4": 1.835807073143142, - "c5": 1.8110999810221942, - "c6": 1.9012028006042754, - "c7": 1.8212684483624915 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233015, + "c3": 2.4271844660194186, + "c4": 1.9417475728155356, + "c5": 1.4563106796116527, + "c6": 0.9708737864077658, + "c7": 0.4854368932038829 }, "rgb": [222, 0, 59] }, @@ -237660,23 +237660,23 @@ "year": 1773, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -16.021442243492107, - "c2": 15.621416706177438, - "c3": -10.824608729590008, - "c4": 14.082769239634953, - "c5": 4.483318812665054, - "c6": -22.83827854827775, - "c7": 1.5484444885726454 + "points": { + "c1": -20.39440127768122, + "c2": 24.093637647004808, + "c3": -25.68638022852628, + "c4": 13.774539810911111, + "c5": -4.2573709768699, + "c6": -26.31424708756609, + "c7": -14.296962807501258 }, - "vertexSeeds": { - "c1": 3.970937789370582, - "c2": 4.231484568691341, - "c3": 4.014930755311276, - "c4": 4.29947400119537, - "c5": 4.1635956862580645, - "c6": 4.342179591544172, - "c7": 4.295913027894811 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -237687,23 +237687,23 @@ "year": 1773, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 12.184990584879564, - "c2": -23.732201343592273, - "c3": 34.649152185887644, - "c4": -10.769895212872406, - "c5": 15.67146633608511, - "c6": -1.2100127279442745, - "c7": 18.965582544358874 + "points": { + "c1": -12.29854055042652, + "c2": -7.8177360142699115, + "c3": 34.765074956194326, + "c4": 32.29250290914969, + "c5": -23.114818641465906, + "c6": -18.20234404041368, + "c7": -34.73572886308329 }, - "vertexSeeds": { - "c1": 4.6774475746476885, - "c2": 4.634282429500138, - "c3": 4.039024099449924, - "c4": 4.341661566622882, - "c5": 4.315356326585143, - "c6": 4.833976695827333, - "c7": 4.498062690856123 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -237714,23 +237714,23 @@ "year": 1773, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -41.41030055384475, - "c2": 43.40968243205126, - "c3": -11.163524282432363, - "c4": 22.190306609752703, - "c5": 39.25723652863717, - "c6": 1.408848715877042, - "c7": 1.3415713768941018 + "points": { + "c1": 3.5977532610831204, + "c2": 13.966466922846628, + "c3": -37.91198597257015, + "c4": -17.45469254505489, + "c5": -7.599811397203062, + "c6": -5.855111404970835, + "c7": -35.10194400860995 }, - "vertexSeeds": { - "c1": 1.95665257587541, - "c2": 2.059592117013622, - "c3": 2.240417033396886, - "c4": 2.2513215372775184, - "c5": 2.1421321025629103, - "c6": 2.0266966381918725, - "c7": 2.1845008740986107 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705966, + "c3": 2.704576976421637, + "c4": 2.1636615811373083, + "c5": 1.622746185852983, + "c6": 1.0818307905686573, + "c7": 0.5409153952843286 }, "rgb": [58, 15, 49] }, @@ -237741,23 +237741,23 @@ "year": 1773, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 29.080360061138933, - "c2": 10.740768015719027, - "c3": -32.86374799025002, - "c4": -1.4713648547714016, - "c5": -30.973562494060026, - "c6": 6.6184417345947395, - "c7": 3.819962900273204 + "points": { + "c1": -39.358656024260895, + "c2": -40.73752247577096, + "c3": -33.39825775862468, + "c4": -15.103630641925616, + "c5": -32.62538729153245, + "c6": 40.59777898210919, + "c7": -8.904932807591841 }, - "vertexSeeds": { - "c1": 2.2470579251867986, - "c2": 2.215430056399762, - "c3": 2.1523112155786652, - "c4": 2.0408855915050443, - "c5": 2.2473323959751164, - "c6": 2.0702269991833426, - "c7": 2.303923009938758 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875163, + "c3": 2.866389274156265, + "c4": 2.293111419325011, + "c5": 1.7198335644937597, + "c6": 1.1465557096625054, + "c7": 0.5732778548312543 }, "rgb": [222, 0, 59] }, @@ -237768,23 +237768,23 @@ "year": 1774, "resistanceReported": false, "duration": 51753600, - "curveSeeds": { - "c1": 53.794558828301206, - "c2": 64.77862401588392, - "c3": -3.0373473666223063, - "c4": -64.6258982710549, - "c5": -35.51713980993678, - "c6": -10.411479575710871, - "c7": -1.5007163665907228 + "points": { + "c1": 61.35214876793982, + "c2": -30.119964109825347, + "c3": -52.89509372007457, + "c4": 50.4938821329459, + "c5": -32.92032603784984, + "c6": -30.746921532508317, + "c7": 50.96026665688058 }, - "vertexSeeds": { - "c1": 3.0828229798713487, - "c2": 2.884949724241535, - "c3": 3.1071230524343516, - "c4": 2.9960761900801938, - "c5": 2.7494047568076554, - "c6": 3.0886433273136205, - "c7": 2.881204186900839 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596395, + "c3": 3.791030975496992, + "c4": 3.032824780397595, + "c5": 2.2746185852981977, + "c6": 1.5164123901988005, + "c7": 0.7582061950993971 }, "rgb": [58, 15, 49] }, @@ -237795,23 +237795,23 @@ "year": 1773, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 22.56475162903679, - "c2": -16.72602820793905, - "c3": 15.331847306775387, - "c4": -7.429386826313873, - "c5": -7.8185967873212086, - "c6": -4.101778333760965, - "c7": 5.650636390013062 + "points": { + "c1": -18.691548077612456, + "c2": -10.923277327454183, + "c3": 25.917620684131187, + "c4": -11.654089993617283, + "c5": 20.571231323235757, + "c6": 7.389319773097441, + "c7": -24.362019016343652 }, - "vertexSeeds": { - "c1": 4.047877456313, - "c2": 4.4306534138858495, - "c3": 4.728819369746845, - "c4": 4.421779240203574, - "c5": 4.3616412044070225, - "c6": 4.058649329986694, - "c7": 4.2244810549166605 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -237822,23 +237822,23 @@ "year": 1773, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 15.413264330176666, - "c2": 19.35658122963285, - "c3": -22.448432744191386, - "c4": -30.166622622729854, - "c5": -1.6657167195303089, - "c6": 2.6395527487965182, - "c7": 32.15084184754612 + "points": { + "c1": -37.64693352809139, + "c2": 0.9896801961536283, + "c3": 42.191740583469425, + "c4": 37.59880888063067, + "c5": -21.306266998507265, + "c6": -37.06255799781766, + "c7": 28.005333189828917 }, - "vertexSeeds": { - "c1": 3.2481224585761055, - "c2": 3.125502742606945, - "c3": 3.447107404546736, - "c4": 3.763668446866804, - "c5": 3.346921432430312, - "c6": 3.2308469979080314, - "c7": 3.339428650583224 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.4368932038834945, + "c3": 4.530744336569579, + "c4": 3.624595469255663, + "c5": 2.7184466019417473, + "c6": 1.8122977346278315, + "c7": 0.9061488673139158 }, "rgb": [222, 0, 59] }, @@ -237849,23 +237849,23 @@ "year": 1773, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 31.831216486208035, - "c2": -5.464780056459297, - "c3": -42.206310529129695, - "c4": -21.517086459878904, - "c5": -5.778721366420584, - "c6": 5.321674363944645, - "c7": -10.209033786005435 + "points": { + "c1": -4.906777588013384, + "c2": 1.7161257858681154, + "c3": 33.143893066051945, + "c4": 19.091168615917745, + "c5": -4.2509252659724766, + "c6": -35.32907672434098, + "c7": 23.526624554855843 }, - "vertexSeeds": { - "c1": 5.203430045835426, - "c2": 5.4558098880002355, - "c3": 5.201869832448877, - "c4": 5.07131951586365, - "c5": 5.429339438001283, - "c6": 5.111947063012033, - "c7": 5.491568076519776 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787327, + "c4": 5.399907535829859, + "c5": 4.0499306518724065, + "c6": 2.6999537679149377, + "c7": 1.3499768839574688 }, "rgb": [58, 15, 49] }, @@ -237876,23 +237876,23 @@ "year": 1773, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -8.10137948486642, - "c2": -14.738411804896488, - "c3": 2.497540358671973, - "c4": -13.320695653485968, - "c5": 13.950168204451586, - "c6": -2.643556388001116, - "c7": -3.714928560122896 + "points": { + "c1": -9.102827443773979, + "c2": -17.461515202929107, + "c3": -7.985840297406753, + "c4": 13.017363051530786, + "c5": 17.093480123207897, + "c6": -19.023398723169155, + "c7": -16.234736149006395 }, - "vertexSeeds": { - "c1": 5.9772191997486, - "c2": 6.626385836431839, - "c3": 5.591709900091298, - "c4": 5.688505854749309, - "c5": 6.206623804066785, - "c6": 6.788825203304626, - "c7": 6.2690012137507845 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -237903,23 +237903,23 @@ "year": 1773, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -0.8631888582187344, - "c2": 20.9066079225759, - "c3": 17.440030660529068, - "c4": 10.72558569541495, - "c5": -21.990752428007248, - "c6": -12.686906245756317, - "c7": 9.583347798304182 + "points": { + "c1": -7.415286859803679, + "c2": -25.5583827649627, + "c3": 4.163220328515365, + "c4": -25.853369552033392, + "c5": -20.80528153431232, + "c6": -0.26583903625013505, + "c7": 24.651100383396454 }, - "vertexSeeds": { - "c1": 6.133399853994459, - "c2": 6.059930992407682, - "c3": 6.068753384978116, - "c4": 6.213834508991157, - "c5": 6.167035913305978, - "c6": 6.62944532226522, - "c7": 6.110213488222077 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -237930,23 +237930,23 @@ "year": 1773, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -14.499788599058668, - "c2": 23.368700096261456, - "c3": 21.11133751426778, - "c4": -43.54501975954235, - "c5": -3.628485919209666, - "c6": -2.4063902119241334, - "c7": 16.805969324208526 + "points": { + "c1": -39.26138782732366, + "c2": -19.838326368633055, + "c3": -42.61436932873814, + "c4": 36.01381945786317, + "c5": -35.07146670242662, + "c6": -18.62617767380056, + "c7": 19.28988845347053 }, - "vertexSeeds": { - "c1": 1.8077362999483757, - "c2": 1.841052453996015, - "c3": 1.9600827466008732, - "c4": 1.7756454773774286, - "c5": 1.9352119199748883, - "c6": 1.774984179404395, - "c7": 1.7853436538529386 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233, + "c3": 2.4271844660194164, + "c4": 1.9417475728155322, + "c5": 1.4563106796116483, + "c6": 0.9708737864077642, + "c7": 0.48543689320388034 }, "rgb": [58, 15, 49] }, @@ -237957,23 +237957,23 @@ "year": 1772, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": 14.597828225911947, - "c2": 20.57300387016393, - "c3": -10.422613992207044, - "c4": -15.42458640735649, - "c5": -13.599454543468944, - "c6": 7.7885470557085625, - "c7": 4.961275427872572 + "points": { + "c1": -12.507920798429396, + "c2": 20.713440598745272, + "c3": -13.404936539764428, + "c4": 6.1846378368523105, + "c5": 1.1604912289246698, + "c6": 2.0162349562946105, + "c7": -18.298350154554715 }, - "vertexSeeds": { - "c1": 2.45733134245838, - "c2": 2.413053785967322, - "c3": 2.3410018725387567, - "c4": 2.5384663000009544, - "c5": 2.4576499720787064, - "c6": 2.348402574557106, - "c7": 2.495427626703849 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495134, + "c3": 3.0744336569579263, + "c4": 2.459546925566344, + "c5": 1.8446601941747567, + "c6": 1.2297734627831745, + "c7": 0.6148867313915872 }, "rgb": [77, 76, 132] }, @@ -237984,23 +237984,23 @@ "year": 1773, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 41.39101043004956, - "c2": 10.575199909505336, - "c3": 8.080341807258236, - "c4": 35.06946690000798, - "c5": -33.61506140829492, - "c6": -14.66470449756055, - "c7": 6.725852844618487 + "points": { + "c1": -8.66501437522598, + "c2": -10.395787845065207, + "c3": 13.40404275456899, + "c4": -14.473789496286244, + "c5": 33.858137012163496, + "c6": 25.29611631734049, + "c7": 4.373297109888881 }, - "vertexSeeds": { - "c1": 5.771862652185349, - "c2": 5.818033223962024, - "c3": 5.828579866943182, - "c4": 6.03550959920203, - "c5": 5.239132768274972, - "c6": 6.395556939476254, - "c7": 5.446341235335846 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594546, + "c4": 6.121128062875633, + "c5": 4.59084604715673, + "c6": 3.0605640314378166, + "c7": 1.5302820157189134 }, "rgb": [238, 201, 159] }, @@ -238011,23 +238011,23 @@ "year": 1773, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -8.350824991706475, - "c2": -7.015682633415796, - "c3": -19.884693085523487, - "c4": -19.926707470029875, - "c5": 12.256389793792728, - "c6": 1.8698423940893605, - "c7": -13.303466989428243 + "points": { + "c1": -8.546080890304964, + "c2": -17.01078505064997, + "c3": -19.082346680417174, + "c4": 10.151209526493801, + "c5": -7.460307737853682, + "c6": 24.464648741133153, + "c7": 10.316699839229301 }, - "vertexSeeds": { - "c1": 2.4867091607253893, - "c2": 2.450842749217025, - "c3": 2.6275331205614427, - "c4": 2.4862013457806174, - "c5": 2.7039710375447683, - "c6": 2.5979653508373666, - "c7": 2.855723617346646 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [238, 201, 159] }, @@ -238038,23 +238038,23 @@ "year": 1773, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -3.2065280514138337, - "c2": 26.024407304669488, - "c3": -34.99685381691427, - "c4": 39.961542566560176, - "c5": 23.301584974963014, - "c6": 28.60892954862208, - "c7": -16.359210255319514 + "points": { + "c1": 40.55215849520368, + "c2": 37.772620689663604, + "c3": -3.6820108395191653, + "c4": 43.29655286538419, + "c5": -23.713488092811097, + "c6": -43.209706842531006, + "c7": -42.86818080226438 }, - "vertexSeeds": { - "c1": 1.6587986231820773, - "c2": 1.6925178114559996, - "c3": 1.872807730761368, - "c4": 1.8487369714550255, - "c5": 1.6990496346545751, - "c6": 1.892259091307192, - "c7": 1.6643515488358824 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981971, + "c3": 2.2884882108183073, + "c4": 1.8307905686546473, + "c5": 1.3730929264909837, + "c6": 0.9153952843273236, + "c7": 0.4576976421636636 }, "rgb": [77, 76, 132] }, @@ -238065,23 +238065,23 @@ "year": 1773, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 21.248495776583162, - "c2": 3.918228175410455, - "c3": -38.55689130140949, - "c4": -18.541198924877534, - "c5": -48.413150024939775, - "c6": -40.430872504704695, - "c7": -33.272665990576215 + "points": { + "c1": -39.49907917886505, + "c2": -6.919210758470335, + "c3": 28.815820549617307, + "c4": 8.368163770758365, + "c5": -2.1002313105520543, + "c6": 25.10769749554391, + "c7": 39.933858545395786 }, - "vertexSeeds": { - "c1": 6.9183816004374865, - "c2": 7.16372035313793, - "c3": 7.076674128452696, - "c4": 6.944293095763022, - "c5": 7.416582887076886, - "c6": 6.929577221096081, - "c7": 6.836177396682379 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -238092,23 +238092,23 @@ "year": 1773, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -14.408618775026802, - "c2": 39.973873014116236, - "c3": -2.7458757921538037, - "c4": -37.656933027476526, - "c5": 7.6974259956490485, - "c6": 28.82126316414751, - "c7": 28.170197497342116 + "points": { + "c1": 42.060122170807816, + "c2": 17.93418270426163, + "c3": -9.116721878994106, + "c4": 13.092784987729672, + "c5": -26.17906415425487, + "c6": 33.32159469787905, + "c7": 15.701241639258065 }, - "vertexSeeds": { - "c1": 7.475258663536443, - "c2": 7.267600625995743, - "c3": 7.205703312231525, - "c4": 7.273383322530285, - "c5": 6.976807444056646, - "c6": 7.27249089922258, - "c7": 6.833773484482984 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -238119,23 +238119,23 @@ "year": 1773, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 5.479607940641003, - "c2": 25.610678860900208, - "c3": -1.81894557749321, - "c4": -12.630698246387801, - "c5": -7.977621307739636, - "c6": -14.911550700346705, - "c7": 15.194507126867997 + "points": { + "c1": -7.584331245638516, + "c2": 26.290670263772817, + "c3": 21.927159153988498, + "c4": -12.554268384247663, + "c5": 26.9669721785207, + "c6": 6.482034667914398, + "c7": 19.775562502886302 }, - "vertexSeeds": { - "c1": 4.592356383236146, - "c2": 4.675936323222276, - "c3": 4.594089707539524, - "c4": 4.258611912405832, - "c5": 4.71958036367981, - "c6": 4.837834485026824, - "c7": 4.025545272947997 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -238146,23 +238146,23 @@ "year": 1774, "resistanceReported": false, "duration": 51408000, - "curveSeeds": { - "c1": -52.24655800035113, - "c2": -16.990114777026605, - "c3": 38.065902928016826, - "c4": -21.32923578360353, - "c5": -25.737384674287178, - "c6": 51.53375869534642, - "c7": -25.162915086036364 + "points": { + "c1": -42.079316405065775, + "c2": -35.45801472139401, + "c3": 17.125653072257833, + "c4": -14.914564570009695, + "c5": -8.890622539101628, + "c6": 58.64007242610391, + "c7": 21.609144812650996 }, - "vertexSeeds": { - "c1": 4.672830251081834, - "c2": 4.755973076218206, - "c3": 4.6545508617208515, - "c4": 4.7660764831519185, - "c5": 4.69852819236471, - "c6": 4.878193255953726, - "c7": 4.64008112382591 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256595, + "c3": 5.894590846047156, + "c4": 4.71567267683773, + "c5": 3.5367545076282907, + "c6": 2.357836338418865, + "c7": 1.1789181692094255 }, "rgb": [238, 201, 159] }, @@ -238173,23 +238173,23 @@ "year": 1774, "resistanceReported": false, "duration": 49680000, - "curveSeeds": { - "c1": -17.502829109432234, - "c2": 59.54178461940917, - "c3": -54.41833062872863, - "c4": -22.08800691192498, - "c5": -39.42415248436503, - "c6": -47.8612953310855, - "c7": -17.492744408567525 + "points": { + "c1": 59.97813131194759, + "c2": -27.875150733194268, + "c3": -66.06893418257485, + "c4": 21.45582995649292, + "c5": -35.72288009745711, + "c6": -6.110637113447332, + "c7": 51.71930388085552 }, - "vertexSeeds": { - "c1": 4.035324755499716, - "c2": 4.174079651794767, - "c3": 3.580643774778716, - "c4": 3.714123618104411, - "c5": 3.7622501937717834, - "c6": 4.052173595773737, - "c7": 3.7503178373445203 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [86, 146, 138] }, @@ -238200,23 +238200,23 @@ "year": 1773, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 25.75619359319007, - "c2": 14.467585838694802, - "c3": -0.9875647481217804, - "c4": -15.423531342001137, - "c5": 18.0776123007561, - "c6": 14.921213107926626, - "c7": 12.710443401272371 + "points": { + "c1": 0.9144714354944554, + "c2": 11.040102733209608, + "c3": -12.451727747513349, + "c4": 24.255194009078025, + "c5": -31.650492744855228, + "c6": 31.511564542750875, + "c7": -22.597320194851328 }, - "vertexSeeds": { - "c1": 6.2258246007378295, - "c2": 6.914631893768391, - "c3": 7.105632760921649, - "c4": 6.418771888965123, - "c5": 6.985020835258097, - "c6": 6.1653939676580185, - "c7": 7.053783133328196 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962551, + "c3": 8.599167822468793, + "c4": 6.879334257975034, + "c5": 5.1595006934812755, + "c6": 3.439667128987517, + "c7": 1.7198335644937586 }, "rgb": [77, 76, 132] }, @@ -238227,23 +238227,23 @@ "year": 1773, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 10.182144269720126, - "c2": -6.424422674351071, - "c3": -4.420225418951617, - "c4": -10.362907801385116, - "c5": 14.211507505539764, - "c6": 35.0928560941145, - "c7": 18.337083614541704 + "points": { + "c1": -33.568326544003355, + "c2": -22.520925266473142, + "c3": 34.05508378450673, + "c4": 37.30526411112347, + "c5": -5.590908589931843, + "c6": -36.52433015945508, + "c7": -16.61137304838051 }, - "vertexSeeds": { - "c1": 3.4913062753301554, - "c2": 3.2014757413041237, - "c3": 3.425727976638172, - "c4": 3.189757994534647, - "c5": 3.295242095045695, - "c6": 3.3920387720022656, - "c7": 3.5415327889930173 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.253351826167362, + "c4": 3.4026814609338887, + "c5": 2.5520110957004154, + "c6": 1.7013407304669421, + "c7": 0.8506703652334735 }, "rgb": [222, 0, 59] }, @@ -238254,23 +238254,23 @@ "year": 1773, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -25.465599120461434, - "c2": -8.84070914604576, - "c3": 4.941111906646185, - "c4": 16.25016144795262, - "c5": 17.37213222620747, - "c6": -6.750622970070971, - "c7": -13.237495371100312 + "points": { + "c1": -37.95139429045792, + "c2": -11.357822708916707, + "c3": 41.8885221858287, + "c4": -26.310496401251875, + "c5": -41.53925523289214, + "c6": -33.03133795439226, + "c7": -33.242221865557156 }, - "vertexSeeds": { - "c1": 4.891135085192187, - "c2": 4.802741658480933, - "c3": 4.272954484456316, - "c4": 4.47824870237974, - "c5": 4.493663620118282, - "c6": 4.359030957320689, - "c7": 4.6928123897026826 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337033, + "c3": 5.940822931114196, + "c4": 4.752658344891354, + "c5": 3.5644937586685166, + "c6": 2.376329172445679, + "c7": 1.1881645862228423 }, "rgb": [238, 201, 159] }, @@ -238281,23 +238281,23 @@ "year": 1773, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 11.63243427760598, - "c2": -28.22883349947899, - "c3": -5.138301968761649, - "c4": 32.583904158126046, - "c5": -18.28110576743192, - "c6": -10.086856679003986, - "c7": 3.6061206003729964 + "points": { + "c1": -5.243999351934139, + "c2": 31.618156990796848, + "c3": 22.60900480049323, + "c4": 36.76881188753731, + "c5": -33.366587913296364, + "c6": 26.928425039800402, + "c7": -32.83101510263819 }, - "vertexSeeds": { - "c1": 4.644381573883493, - "c2": 4.678486888994936, - "c3": 4.900014225260303, - "c4": 4.738473437784868, - "c5": 5.000121258750106, - "c6": 4.810733287672767, - "c7": 4.999980230714227 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061025, + "c3": 6.3569116967175185, + "c4": 5.085529357374018, + "c5": 3.8141470180305124, + "c6": 2.5427646786870115, + "c7": 1.2713823393435058 }, "rgb": [222, 0, 59] }, @@ -238308,23 +238308,23 @@ "year": 1773, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 8.20579982016465, - "c2": -5.973022530433209, - "c3": -4.646004142614444, - "c4": -7.392228707445703, - "c5": 34.31894760416323, - "c6": 22.32460985286727, - "c7": 23.718354930622098 + "points": { + "c1": 18.726535274820435, + "c2": 29.815451396573437, + "c3": 18.1339021433089, + "c4": -37.85029625408671, + "c5": -32.871978310285044, + "c6": -38.4781565472841, + "c7": -32.57908196933439 }, - "vertexSeeds": { - "c1": 3.3519149398357566, - "c2": 3.20292456376605, - "c3": 3.1670608521576455, - "c4": 3.33466769325113, - "c5": 3.1935855832614113, - "c6": 3.2334944860655654, - "c7": 3.1464203234366814 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038832, + "c3": 4.045307443365697, + "c4": 3.2362459546925546, + "c5": 2.42718446601942, + "c6": 1.6181229773462773, + "c7": 0.8090614886731347 }, "rgb": [86, 146, 138] }, @@ -238335,23 +238335,23 @@ "year": 1773, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 4.195239855188557, - "c2": -18.615531655148942, - "c3": 6.818579417462729, - "c4": 4.4205535373721965, - "c5": 19.091219589855356, - "c6": 19.063989788278107, - "c7": -1.9099475718994512 + "points": { + "c1": -20.828111619698394, + "c2": -13.266967836193778, + "c3": 24.592426942473622, + "c4": 3.5257762402396615, + "c5": -5.736207580739411, + "c6": -12.344301182142933, + "c7": 22.343143997935762 }, - "vertexSeeds": { - "c1": 2.657835141597202, - "c2": 2.584380499017663, - "c3": 2.5396030617335796, - "c4": 2.7238767721321913, - "c5": 2.707716470707734, - "c6": 2.651193630844568, - "c7": 2.6564358956624408 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [222, 0, 59] }, @@ -238362,23 +238362,23 @@ "year": 1773, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": -15.987683647788394, - "c2": 40.00907672407233, - "c3": 35.365051552095935, - "c4": 32.08945220412549, - "c5": 26.81886257091034, - "c6": -21.635817650518142, - "c7": -3.139646361748156 + "points": { + "c1": 45.373707767692764, + "c2": 39.0667933512145, + "c3": 37.00315784796419, + "c4": -16.85668779523587, + "c5": 12.65226669630701, + "c6": -34.18629536522779, + "c7": -30.395190029735243 }, - "vertexSeeds": { - "c1": 4.956177668036744, - "c2": 5.201468366909349, - "c3": 5.488095120340213, - "c4": 5.688100329676125, - "c5": 5.681225664105138, - "c6": 5.258977728754287, - "c7": 5.699758289874307 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153952, + "c6": 2.8294036061026415, + "c7": 1.4147018030513208 }, "rgb": [77, 76, 132] }, @@ -238389,23 +238389,23 @@ "year": 1774, "resistanceReported": false, "duration": 54518400, - "curveSeeds": { - "c1": -65.28841471602726, - "c2": 64.99104892376425, - "c3": -41.837733674829245, - "c4": -52.69336214929611, - "c5": 6.108711772056552, - "c6": 67.55816246753756, - "c7": 64.6158116434489 + "points": { + "c1": -41.05187381859352, + "c2": -32.943297399706815, + "c3": 63.1225645483519, + "c4": -11.028285652649267, + "c5": 24.6379311643295, + "c6": 10.825977343236673, + "c7": 9.285415314166585 }, - "vertexSeeds": { - "c1": 6.306478757237498, - "c2": 5.935524452951179, - "c3": 6.022545062940325, - "c4": 6.0497587645761985, - "c5": 6.123783001984935, - "c6": 6.197303316979919, - "c7": 6.21160583125076 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152565, + "c3": 7.558945908460472, + "c4": 6.047156726768376, + "c5": 4.535367545076283, + "c6": 3.023578363384188, + "c7": 1.511789181692094 }, "rgb": [238, 201, 159] }, @@ -238416,23 +238416,23 @@ "year": 1773, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": 22.608354377405934, - "c2": 13.572532292236605, - "c3": 5.157020325806624, - "c4": -5.23984975221348, - "c5": -9.507469119885837, - "c6": -6.377864711700688, - "c7": -20.964768355580098 + "points": { + "c1": -15.578487762830202, + "c2": -17.972671748789754, + "c3": -21.87415743852333, + "c4": -8.43428231025539, + "c5": -0.975492402971593, + "c6": 20.82108190216356, + "c7": -2.0226120316376814 }, - "vertexSeeds": { - "c1": 9.027381785460731, - "c2": 7.783927987445335, - "c3": 8.008102215099724, - "c4": 8.526877766527527, - "c5": 8.163295311687172, - "c6": 8.534695940647143, - "c7": 7.92695180873204 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.95423023578363, + "c3": 10.795191863153034, + "c4": 8.636153490522425, + "c5": 6.477115117891815, + "c6": 4.318076745261206, + "c7": 2.1590383726306093 }, "rgb": [86, 146, 138] }, @@ -238443,23 +238443,23 @@ "year": 1773, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -11.140794309995592, - "c2": 14.188569826776941, - "c3": -20.81236521053079, - "c4": 26.61616255401212, - "c5": -42.0592264283639, - "c6": -18.587529066390243, - "c7": -27.641449582565286 + "points": { + "c1": 16.440873849674055, + "c2": -13.70778619780619, + "c3": 14.765506534594266, + "c4": -10.255472200253031, + "c5": 45.19467191658947, + "c6": 26.448196164734654, + "c7": 15.194385926421909 }, - "vertexSeeds": { - "c1": 1.2419959716451445, - "c2": 1.5297318836930676, - "c3": 1.2496389390580618, - "c4": 1.3820483376108714, - "c5": 1.5012977006871855, - "c6": 1.4324102751751886, - "c7": 1.2120597312782273 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820154, + "c4": 1.534905224225612, + "c5": 1.151178918169209, + "c6": 0.7674526121128056, + "c7": 0.3837263060564023 }, "rgb": [77, 76, 132] }, @@ -238470,23 +238470,23 @@ "year": 1773, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -13.98207776709647, - "c2": -11.768590397006491, - "c3": -1.0402123278150057, - "c4": -20.032818410642907, - "c5": -9.482201790334532, - "c6": -24.195348666675805, - "c7": 11.416340555358978 + "points": { + "c1": 37.3778824419094, + "c2": 35.76390906209682, + "c3": 41.47748457145382, + "c4": -29.3054870477757, + "c5": 38.59245720240505, + "c6": 12.156621358080784, + "c7": -18.879761504853274 }, - "vertexSeeds": { - "c1": 8.574793073871584, - "c2": 8.867430982562723, - "c3": 8.392388252260606, - "c4": 9.734010271765968, - "c5": 9.660059836830644, - "c6": 9.476056710014277, - "c7": 8.499851141097906 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392513, + "c3": 11.719833564493763, + "c4": 9.375866851595005, + "c5": 7.0319001386962565, + "c6": 4.687933425797508, + "c7": 2.343966712898759 }, "rgb": [222, 0, 59] }, @@ -238497,23 +238497,23 @@ "year": 1773, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -30.8450177501501, - "c2": -10.683314069359433, - "c3": -31.483260037974418, - "c4": -22.20712715775226, - "c5": 37.123259938627825, - "c6": 31.583987048003806, - "c7": -25.53475593684553 + "points": { + "c1": -39.0897639686879, + "c2": -12.438500097306044, + "c3": -0.36938594504043465, + "c4": -37.58252110890786, + "c5": -5.83265896294224, + "c6": -0.620321441322119, + "c7": -6.369609141136763 }, - "vertexSeeds": { - "c1": 4.797626705534346, - "c2": 4.923521708150029, - "c3": 4.79579100943137, - "c4": 5.003220094093642, - "c5": 4.785031937915541, - "c6": 4.649296490182588, - "c7": 4.855095375983188 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.2122052704577015, + "c3": 6.010171058714744, + "c4": 4.808136846971798, + "c5": 3.6061026352288508, + "c6": 2.4040684234858936, + "c7": 1.2020342117429468 }, "rgb": [86, 146, 138] }, @@ -238524,23 +238524,23 @@ "year": 1774, "resistanceReported": false, "duration": 43459200, - "curveSeeds": { - "c1": 12.12199634917124, - "c2": -12.79011604434347, - "c3": -47.83656855997029, - "c4": -50.69877581181538, - "c5": -25.448367872752826, - "c6": 1.264260036178662, - "c7": -37.826886585858006 + "points": { + "c1": -20.188576520781936, + "c2": -56.15512952923797, + "c3": 46.054101730028364, + "c4": -6.713660232001473, + "c5": -8.536495323170605, + "c6": -30.76586428265583, + "c7": 45.97873106716786 }, - "vertexSeeds": { - "c1": 1.835710588928447, - "c2": 1.8121635343869953, - "c3": 1.826800836548513, - "c4": 1.7761795959940916, - "c5": 1.8012258434969093, - "c6": 1.7897978587110963, - "c7": 1.783403874569743 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.6629680998613017, + "c3": 2.219140083217756, + "c4": 1.7753120665742035, + "c5": 1.3314840499306508, + "c6": 0.8876560332870981, + "c7": 0.44382801664355276 }, "rgb": [77, 76, 132] }, @@ -238551,23 +238551,23 @@ "year": 1773, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -38.86934822571262, - "c2": 17.332437448920473, - "c3": 20.57812134624355, - "c4": -20.291365001965513, - "c5": -33.56379440326021, - "c6": 44.657856046179816, - "c7": 27.284175180766667 + "points": { + "c1": -23.35716550420823, + "c2": 13.86864515029032, + "c3": 1.3466316154580937, + "c4": 36.13295945099567, + "c5": 14.555400246998559, + "c6": 48.98358782942573, + "c7": -12.78699172173004 }, - "vertexSeeds": { - "c1": 4.156047983549737, - "c2": 3.732823702754228, - "c3": 4.006616921317119, - "c4": 4.223657992506215, - "c5": 4.165348809322705, - "c6": 3.5782606292171613, - "c7": 3.747816103377912 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009707, + "c3": 5.177993527508091, + "c4": 4.142394822006471, + "c5": 3.1067961165048557, + "c6": 2.0711974110032356, + "c7": 1.0355987055016203 }, "rgb": [222, 0, 59] }, @@ -238578,23 +238578,23 @@ "year": 1773, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": -7.34371898843491, - "c2": -2.380639314482824, - "c3": -12.98904793656404, - "c4": 17.33505107142856, - "c5": 14.758633943086444, - "c6": 2.7126291544019985, - "c7": 7.430572962292182 + "points": { + "c1": -13.32016841401784, + "c2": 6.374339983419535, + "c3": 15.243624466887255, + "c4": -5.508805236795489, + "c5": -7.082280191714666, + "c6": -12.726970370744358, + "c7": -20.965594969855992 }, - "vertexSeeds": { - "c1": 2.937104210737511, - "c2": 3.0070928844724385, - "c3": 2.980927795683133, - "c4": 3.0197342283050403, - "c5": 2.956138688399956, - "c6": 3.116545043586883, - "c7": 3.248507846493991 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -238605,23 +238605,23 @@ "year": 1773, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 34.726602091358885, - "c2": -34.33695532373786, - "c3": -5.128591664714143, - "c4": 4.851675277611157, - "c5": -26.687697743618116, - "c6": -24.54220720934758, - "c7": -19.197364973179774 + "points": { + "c1": 7.005456337758972, + "c2": -15.62422208953005, + "c3": 1.6127755360042144, + "c4": 10.655144301835314, + "c5": 16.98323758305296, + "c6": -29.75144776438839, + "c7": -10.305513046653854 }, - "vertexSeeds": { - "c1": 3.706250838593702, - "c2": 4.400932104852531, - "c3": 3.6789980555337385, - "c4": 3.946576277601074, - "c5": 4.267328719335933, - "c6": 4.201793875479543, - "c7": 4.1855095127446145 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.3245492371705945, + "c3": 5.27045769764216, + "c4": 4.216366158113731, + "c5": 3.1622746185852972, + "c6": 2.108183079056863, + "c7": 1.0540915395284287 }, "rgb": [238, 201, 159] }, @@ -238632,23 +238632,23 @@ "year": 1774, "resistanceReported": true, "duration": 42249600, - "curveSeeds": { - "c1": -28.03352104870633, - "c2": -16.916703947349056, - "c3": -33.03486540266898, - "c4": 19.093565702996422, - "c5": -9.157983795567553, - "c6": 40.87310514328153, - "c7": 12.445732609724907 + "points": { + "c1": -50.31858955998022, + "c2": 17.940757878505188, + "c3": 15.338104326150237, + "c4": 35.31260964360862, + "c5": 39.57319061069493, + "c6": -51.52741601600321, + "c7": -4.002768796389809 }, - "vertexSeeds": { - "c1": 4.06062326158132, - "c2": 4.053305875366088, - "c3": 4.10076866523813, - "c4": 4.087290216380988, - "c5": 4.0454352015987505, - "c6": 4.100380540531585, - "c7": 3.958393270186682 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [77, 76, 132] }, @@ -238659,23 +238659,23 @@ "year": 1773, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -4.539923622914351, - "c2": 32.5974953813691, - "c3": 32.390578814317635, - "c4": -24.22530821911463, - "c5": -4.957919932209002, - "c6": 44.322365465044285, - "c7": 9.26088331497526 + "points": { + "c1": 22.686015205431076, + "c2": 28.808414263699632, + "c3": 20.22595558233884, + "c4": -40.21749089719657, + "c5": -45.4936537790461, + "c6": -0.751301928600526, + "c7": 17.92393840343155 }, - "vertexSeeds": { - "c1": 4.928403544841758, - "c2": 5.070999961310873, - "c3": 4.954713496457105, - "c4": 4.849625765789781, - "c5": 4.976196468073762, - "c6": 4.894410052455377, - "c7": 5.158583335902131 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [86, 146, 138] }, @@ -238686,23 +238686,23 @@ "year": 1773, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 37.6364671393285, - "c2": 22.022143215240064, - "c3": -16.390466266698517, - "c4": -39.857918826855226, - "c5": -2.0688030862813847, - "c6": 44.71875533487258, - "c7": -15.21724608488018 + "points": { + "c1": 32.35413945951913, + "c2": -53.071827962233044, + "c3": -7.220131120496951, + "c4": 5.277621099855963, + "c5": 12.227816204852175, + "c6": 47.06757136809334, + "c7": 48.29578446051906 }, - "vertexSeeds": { - "c1": 2.9200064363588583, - "c2": 3.005171899914083, - "c3": 2.9262085381703016, - "c4": 3.0050512513633763, - "c5": 2.929167976489988, - "c6": 2.9832295280753804, - "c7": 2.9171060587427227 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.3273231622746104, + "c3": 3.606102635228861, + "c4": 2.884882108183083, + "c5": 2.1636615811373052, + "c6": 1.4424410540915558, + "c7": 0.7212205270457779 }, "rgb": [58, 15, 49] }, @@ -238713,23 +238713,23 @@ "year": 1773, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": -48.8843370933676, - "c2": 28.72410962111129, - "c3": 9.660484104928834, - "c4": 23.941588764574867, - "c5": 12.33256477330302, - "c6": 15.718061024858407, - "c7": -17.98382330141979 + "points": { + "c1": 40.917222006901945, + "c2": -34.13574461009953, + "c3": 37.84933245045308, + "c4": -21.93178546713663, + "c5": 18.99204311875929, + "c6": -52.41088226848879, + "c7": 22.73146005152693 }, - "vertexSeeds": { - "c1": 1.6764026041569235, - "c2": 1.695857234082605, - "c3": 1.678469746932699, - "c4": 1.6096778541938705, - "c5": 1.6812884820779366, - "c6": 1.6469175502433175, - "c7": 1.669605394861081 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [58, 15, 49] }, @@ -238740,23 +238740,23 @@ "year": 1773, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -9.759056857392551, - "c2": -2.200237138070385, - "c3": -36.41775903555556, - "c4": -37.01122148751694, - "c5": 42.32746250334153, - "c6": 22.43596680716528, - "c7": 31.807071016927885 + "points": { + "c1": -44.544106128380136, + "c2": -16.195279304608693, + "c3": -24.360257113072407, + "c4": 6.20345887980222, + "c5": 9.670759955645458, + "c6": 19.25765479840232, + "c7": -21.893805805355885 }, - "vertexSeeds": { - "c1": 9.030492617515526, - "c2": 8.714066460356443, - "c3": 8.462590750164441, - "c4": 8.568796287452347, - "c5": 8.777816230638377, - "c6": 9.023092143904739, - "c7": 8.601653528110987 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743413, + "c3": 10.772075820619511, + "c4": 8.617660656495609, + "c5": 6.463245492371707, + "c6": 4.308830328247804, + "c7": 2.154415164123902 }, "rgb": [77, 76, 132] }, @@ -238767,23 +238767,23 @@ "year": 1773, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -31.84210517478041, - "c2": 22.411617205942235, - "c3": 4.242118545572225, - "c4": -16.831751947444534, - "c5": 8.116759326959617, - "c6": -16.077671051814654, - "c7": -2.6445169262171895 + "points": { + "c1": 34.831487447241855, + "c2": 9.6279456251766, + "c3": -13.868179108949832, + "c4": -10.240217054385713, + "c5": 29.691231217756624, + "c6": -32.7867572629286, + "c7": -20.22250424091423 }, - "vertexSeeds": { - "c1": 2.1229665507713578, - "c2": 1.709909224116044, - "c3": 1.8358543588595073, - "c4": 1.8759578013288063, - "c5": 2.141528622158718, - "c6": 1.6991712888993038, - "c7": 1.8945979893765001 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048548, + "c3": 2.5889967637540456, + "c4": 2.071197411003237, + "c5": 1.5533980582524263, + "c6": 1.0355987055016176, + "c7": 0.5177993527508088 }, "rgb": [238, 201, 159] }, @@ -238794,23 +238794,23 @@ "year": 1773, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": 23.956472054739486, - "c2": 0.7444081103549962, - "c3": -43.67113446146151, - "c4": 34.53364393145244, - "c5": 34.652790494943325, - "c6": 35.011534672608626, - "c7": -33.00099998333183 + "points": { + "c1": -1.7098254157635182, + "c2": 14.990319730240195, + "c3": -10.759628887197245, + "c4": -46.20620367080304, + "c5": 4.364498930677321, + "c6": -14.863294058658582, + "c7": 19.17122683428078 }, - "vertexSeeds": { - "c1": 8.213616066468585, - "c2": 8.920007315485746, - "c3": 8.516604402668996, - "c4": 8.75374022028818, - "c5": 8.311585433066117, - "c6": 8.278501093583031, - "c7": 8.945052437574532 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.843273231622744, + "c3": 10.702727693018955, + "c4": 8.562182154415163, + "c5": 6.421636615811372, + "c6": 4.281091077207582, + "c7": 2.140545538603791 }, "rgb": [86, 146, 138] }, @@ -238821,23 +238821,23 @@ "year": 1773, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 31.710593555629814, - "c2": -9.212614625791051, - "c3": -9.37949097945647, - "c4": -29.161684124311154, - "c5": -27.48997278616423, - "c6": 0.7239567346374329, - "c7": -24.158897653978695 + "points": { + "c1": -23.505970003238797, + "c2": 22.89748954068552, + "c3": 23.696669832595596, + "c4": -9.701678282387242, + "c5": -34.190236782178125, + "c6": 12.47843213889066, + "c7": -20.796002976245774 }, - "vertexSeeds": { - "c1": 3.4898112236489816, - "c2": 3.513791287365072, - "c3": 3.407708242528432, - "c4": 3.365499525897729, - "c5": 3.299200741277305, - "c6": 3.298202168313071, - "c7": 3.495925881636833 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435504, + "c4": 3.5506241331484096, + "c5": 2.662968099861307, + "c6": 1.7753120665742048, + "c7": 0.8876560332871024 }, "rgb": [86, 146, 138] }, @@ -238848,23 +238848,23 @@ "year": 1773, "resistanceReported": false, "duration": 8208000, - "curveSeeds": { - "c1": 18.036247543285334, - "c2": 0.031342592144824266, - "c3": -13.910533470824344, - "c4": -3.931158832189505, - "c5": 5.910962421270309, - "c6": 11.338544779956411, - "c7": 7.054369958825429 + "points": { + "c1": -10.908869156648569, + "c2": -4.092311809750598, + "c3": -4.761640063576845, + "c4": 20.06923480552355, + "c5": 4.875466891129211, + "c6": -8.260787749397748, + "c7": 11.398677491404705 }, - "vertexSeeds": { - "c1": 5.644090798943136, - "c2": 6.419338553686352, - "c3": 6.145613510468681, - "c4": 6.574501187543709, - "c5": 6.035179505602826, - "c6": 6.368254524364203, - "c7": 5.688037640812683 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -238875,23 +238875,23 @@ "year": 1773, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 12.545827732779038, - "c2": 30.037556151060542, - "c3": 30.58011850162768, - "c4": 20.966310101507773, - "c5": 9.328557849831405, - "c6": -32.51725023219682, - "c7": 21.530224602536478 + "points": { + "c1": 39.41979446159226, + "c2": 0.055342918756316806, + "c3": -8.70924629545577, + "c4": 4.99104614337076, + "c5": 22.463834827014267, + "c6": 3.775077074056526, + "c7": 16.54356175860658 }, - "vertexSeeds": { - "c1": 5.285849559108692, - "c2": 5.319067647321225, - "c3": 5.23795600310811, - "c4": 4.921903286251671, - "c5": 5.010845911323205, - "c6": 5.140420184599544, - "c7": 5.373178865587409 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.7115117891816976, + "c3": 6.426259824318068, + "c4": 5.141007859454458, + "c5": 3.8557558945908488, + "c6": 2.5705039297272396, + "c7": 1.2852519648636096 }, "rgb": [86, 146, 138] }, @@ -238902,23 +238902,23 @@ "year": 1773, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -15.478449727688073, - "c2": 9.325956820929285, - "c3": 7.746764475212629, - "c4": 34.71528457766149, - "c5": 11.672974908465264, - "c6": -5.174450023239245, - "c7": -11.39775873959685 + "points": { + "c1": -35.168742290210766, + "c2": 25.92662025754919, + "c3": -13.463167176490227, + "c4": -8.73505821000095, + "c5": 24.759352567735363, + "c6": -37.04707733670863, + "c7": 16.488732600485243 }, - "vertexSeeds": { - "c1": 7.473784011629049, - "c2": 7.068944652675856, - "c3": 7.3293760219213215, - "c4": 7.116397533808084, - "c5": 7.137419004376418, - "c6": 7.0333520043283535, - "c7": 7.1908222130749735 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -238929,23 +238929,23 @@ "year": 1773, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -35.36923101414651, - "c2": -1.1002337543505902, - "c3": -3.8764587702293483, - "c4": -35.43009208032877, - "c5": -14.678325578314642, - "c6": 16.146082556425895, - "c7": 12.520306216428985 + "points": { + "c1": 3.354021520287027, + "c2": 33.92344593774989, + "c3": 31.097203749289974, + "c4": 10.473361244806, + "c5": -21.21343514935519, + "c6": -28.355924319745473, + "c7": 31.39310067665798 }, - "vertexSeeds": { - "c1": 5.463829719976063, - "c2": 5.5780115235336085, - "c3": 4.763318702131046, - "c4": 5.177124241255804, - "c5": 5.440104293901645, - "c6": 4.716204973890285, - "c7": 5.2739421831084154 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664357, + "c3": 6.703652334720299, + "c4": 5.36292186777624, + "c5": 4.022191400832173, + "c6": 2.6814609338881157, + "c7": 1.3407304669440578 }, "rgb": [58, 15, 49] }, @@ -238956,23 +238956,23 @@ "year": 1774, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": -47.42187782265486, - "c2": -20.51382698672169, - "c3": -23.49277288546723, - "c4": -37.91306124380177, - "c5": 46.86670540827554, - "c6": 8.052566697906293, - "c7": 18.812874073226048 + "points": { + "c1": -23.42921638015803, + "c2": 19.241896721785913, + "c3": 13.28691505674508, + "c4": -49.18856183915475, + "c5": 11.824669014008556, + "c6": 7.790851784878754, + "c7": 17.444638325875196 }, - "vertexSeeds": { - "c1": 6.811686400855848, - "c2": 6.438694879695995, - "c3": 5.933407137815271, - "c4": 6.7712611645072265, - "c5": 5.953320986256485, - "c6": 5.621466213986488, - "c7": 5.98608585678113 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -238983,23 +238983,23 @@ "year": 1773, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 12.833717789636282, - "c2": -1.9024519585394302, - "c3": 21.107967823028858, - "c4": 14.01350886000764, - "c5": 32.48241601234052, - "c6": -13.383913749030086, - "c7": -8.31091619662526 + "points": { + "c1": 0.2986323099923993, + "c2": 35.12193357135756, + "c3": 17.50999631339468, + "c4": 36.30358268770023, + "c5": -28.534217679090595, + "c6": -17.961506590305948, + "c7": -32.33555475389964 }, - "vertexSeeds": { - "c1": 1.6594759556332037, - "c2": 1.7638507460267667, - "c3": 1.71255805304211, - "c4": 1.7499616556960111, - "c5": 1.8222167725243832, - "c6": 1.707696142048649, - "c7": 1.6639857401201963 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.690707350901526, + "c3": 2.2422561257512714, + "c4": 1.793804900601017, + "c5": 1.345353675450763, + "c6": 0.8969024503005085, + "c7": 0.44845122515025426 }, "rgb": [238, 201, 159] }, @@ -239010,23 +239010,23 @@ "year": 1774, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -50.4957580662163, - "c2": 48.09013101404598, - "c3": 4.964765562325191, - "c4": -52.57033942670105, - "c5": 45.98193698642447, - "c6": 5.730435668134078, - "c7": 3.0239369884224345 + "points": { + "c1": -4.932578512448657, + "c2": 9.643592038703147, + "c3": -50.880476663199474, + "c4": -22.65008910430347, + "c5": 23.361119650063642, + "c6": -20.973871881588522, + "c7": 15.517736529280924 }, - "vertexSeeds": { - "c1": 4.378625143831993, - "c2": 4.395256292765012, - "c3": 4.4227700018307265, - "c4": 4.195506681323403, - "c5": 3.821034210118721, - "c6": 3.9825689818467365, - "c7": 4.126352710403416 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -239037,23 +239037,23 @@ "year": 1773, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -8.919930017237595, - "c2": -16.216112777844227, - "c3": -14.614879828035296, - "c4": -2.042632550964555, - "c5": -10.850841307392574, - "c6": -18.57060315313575, - "c7": -4.819918945417296 + "points": { + "c1": 15.661184224897738, + "c2": 4.675737450985732, + "c3": 10.550622106551028, + "c4": 13.774010602811636, + "c5": -19.2489151868711, + "c6": 11.491245844450155, + "c7": 19.267165658022073 }, - "vertexSeeds": { - "c1": 6.64906986977849, - "c2": 6.4765049062190165, - "c3": 6.005744405254106, - "c4": 6.377685523971462, - "c5": 6.811683730205465, - "c6": 5.780890744925824, - "c7": 6.429478533921562 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -239064,23 +239064,23 @@ "year": 1773, "resistanceReported": true, "duration": 34819200, - "curveSeeds": { - "c1": -9.731254454356637, - "c2": 7.057088341026905, - "c3": -20.956272929567525, - "c4": 21.076873371437713, - "c5": -17.872599090273713, - "c6": 6.5534906110682485, - "c7": -15.652464028408346 + "points": { + "c1": -40.662642813350075, + "c2": -46.73555352117946, + "c3": 32.26492704422387, + "c4": -25.983922832569828, + "c5": -0.16628687989594937, + "c6": 15.351502772115325, + "c7": -19.404393013013497 }, - "vertexSeeds": { - "c1": 3.8563218667567187, - "c2": 4.0002343019784465, - "c3": 3.9062599673494884, - "c4": 3.8584465664652416, - "c5": 3.9662524712208054, - "c6": 4.117982759544323, - "c7": 3.8666145792666438 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647715, + "c3": 4.969949144706421, + "c4": 3.9759593157651394, + "c5": 2.9819694868238575, + "c6": 1.9879796578825635, + "c7": 0.9939898289412817 }, "rgb": [86, 146, 138] }, @@ -239091,23 +239091,23 @@ "year": 1774, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -47.44739330887886, - "c2": -51.21826121370009, - "c3": -53.631770166478866, - "c4": 38.18195280063284, - "c5": 25.81949043082834, - "c6": 27.79317190884555, - "c7": -24.332479348904652 + "points": { + "c1": -26.02193620071464, + "c2": -19.248185868877492, + "c3": 33.93623892239937, + "c4": -30.71485839456593, + "c5": -22.99193382731231, + "c6": 6.436665091830243, + "c7": -28.228018310212022 }, - "vertexSeeds": { - "c1": 2.4866203326869494, - "c2": 2.3067609194229663, - "c3": 2.3688644875526847, - "c4": 2.5741778959437456, - "c5": 2.4752146408046554, - "c6": 2.2265572862104475, - "c7": 2.2806738076253086 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.7447988904299567, + "c3": 3.1206657420249617, + "c4": 2.496532593619973, + "c5": 1.8723994452149784, + "c6": 1.2482662968099834, + "c7": 0.6241331484049917 }, "rgb": [77, 76, 132] }, @@ -239118,23 +239118,23 @@ "year": 1773, "resistanceReported": false, "duration": 7171200, - "curveSeeds": { - "c1": -5.411818702957081, - "c2": -0.6199486915093004, - "c3": -2.9105001830616555, - "c4": -7.945008270896929, - "c5": -4.928735435611262, - "c6": -10.918922116739573, - "c7": -1.9375349362247025 + "points": { + "c1": 11.372527777866019, + "c2": -11.052561723532618, + "c3": -4.404116608808925, + "c4": 16.143654734581126, + "c5": 6.432366351711799, + "c6": -13.251742888646579, + "c7": 7.4260466571817005 }, - "vertexSeeds": { - "c1": 5.945383017628495, - "c2": 6.046510748366881, - "c3": 6.0498547789400305, - "c4": 5.409946463078858, - "c5": 5.750646903009409, - "c6": 5.599297938589878, - "c7": 5.465540171572449 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [77, 76, 132] }, @@ -239145,23 +239145,23 @@ "year": 1773, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -21.587028642568107, - "c2": -22.815234758516187, - "c3": 13.583063091480831, - "c4": 18.16028088925929, - "c5": -25.042054624443587, - "c6": -23.562220436782685, - "c7": -10.033021417948738 + "points": { + "c1": 27.03150357626965, + "c2": -17.222275014955557, + "c3": 19.016193026095493, + "c4": 10.905528530328816, + "c5": 20.623841879638363, + "c6": 16.060138840207657, + "c7": -4.999316067900526 }, - "vertexSeeds": { - "c1": 5.643345530086982, - "c2": 5.512887838794663, - "c3": 5.723260168440777, - "c4": 5.741380008092114, - "c5": 5.538022328340237, - "c6": 5.4778756387969745, - "c7": 5.481856594942789 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106807, + "c3": 6.9579288025889925, + "c4": 5.566343042071206, + "c5": 4.17475728155339, + "c6": 2.783171521035603, + "c7": 1.3915857605177873 }, "rgb": [58, 15, 49] }, @@ -239172,23 +239172,23 @@ "year": 1773, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -15.6475384127985, - "c2": -15.443376257410058, - "c3": 15.58507790207431, - "c4": 1.587283709155951, - "c5": -17.78658168496853, - "c6": 7.148882438871496, - "c7": 19.053315817906743 + "points": { + "c1": -20.955434661675966, + "c2": 4.15416292985088, + "c3": 9.663115007061894, + "c4": -18.46086427329536, + "c5": -13.83211211833489, + "c6": -2.2385792834392753, + "c7": -5.9413303217114155 }, - "vertexSeeds": { - "c1": 3.8669996571829794, - "c2": 3.8617553741844435, - "c3": 3.871412513257824, - "c4": 3.8442255513942163, - "c5": 3.8363103834058525, - "c6": 3.8529616564279556, - "c7": 3.8436709016039146 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.5755894590846315, + "c3": 4.646324549237162, + "c4": 3.717059639389755, + "c5": 2.787794729542285, + "c6": 1.8585298196948774, + "c7": 0.9292649098474078 }, "rgb": [222, 0, 59] }, @@ -239199,23 +239199,23 @@ "year": 1773, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": -5.357798035749353, - "c2": 0.3373411926267593, - "c3": 0.8373914885883273, - "c4": -8.201246059768925, - "c5": -6.555511303931677, - "c6": 14.350492644413734, - "c7": -5.368807917753527 + "points": { + "c1": -20.455547708334244, + "c2": 19.839204820506666, + "c3": 7.009503263432336, + "c4": -11.899890499866684, + "c5": 17.444214748969678, + "c6": 16.329902470463487, + "c7": 12.959371583040173 }, - "vertexSeeds": { - "c1": 4.154164796720681, - "c2": 4.101709628245293, - "c3": 4.08337879749158, - "c4": 4.125936051591089, - "c5": 4.100647221604563, - "c6": 4.088385810556072, - "c7": 4.157097092342397 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808603, + "c3": 5.062413314840507, + "c4": 4.04993065187241, + "c5": 3.037447988904289, + "c6": 2.0249653259361926, + "c7": 1.0124826629680963 }, "rgb": [77, 76, 132] }, @@ -239226,23 +239226,23 @@ "year": 1773, "resistanceReported": false, "duration": 6739200, - "curveSeeds": { - "c1": 2.5880659723843102, - "c2": -3.193578530362199, - "c3": -6.2099082453671475, - "c4": 4.153107465474001, - "c5": -11.703409055543437, - "c6": -3.991818746060593, - "c7": 11.938195927657581 + "points": { + "c1": 6.346404287276883, + "c2": -7.831635550953909, + "c3": 17.161357177137884, + "c4": -6.956902650115461, + "c5": -15.471397121558505, + "c6": -18.243024360005425, + "c7": 3.741287485762321 }, - "vertexSeeds": { - "c1": 2.4880289525515566, - "c2": 2.527667320420338, - "c3": 2.490525234552559, - "c4": 2.356537402786704, - "c5": 2.49818971469778, - "c6": 2.546291568930667, - "c7": 2.397525356054052 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495116, + "c3": 3.0744336569579334, + "c4": 2.4595469255663445, + "c5": 1.8446601941747558, + "c6": 1.2297734627831722, + "c7": 0.6148867313915888 }, "rgb": [238, 201, 159] }, @@ -239253,23 +239253,23 @@ "year": 1773, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -24.90259647812416, - "c2": -0.6531027914799026, - "c3": 21.279891758957575, - "c4": -27.61722386152306, - "c5": 33.65238324936337, - "c6": -21.079725246662665, - "c7": 24.01624688123357 + "points": { + "c1": 10.20027759857713, + "c2": -17.651926940844923, + "c3": -12.481908113890196, + "c4": -26.1903329710157, + "c5": 21.741736847306726, + "c6": -12.94753569063041, + "c7": -18.577604613042745 }, - "vertexSeeds": { - "c1": 8.503231247605612, - "c2": 8.274982661442973, - "c3": 7.801469195605414, - "c4": 8.40408169057436, - "c5": 8.2636180580743, - "c6": 8.475404928843036, - "c7": 8.666573438713813 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582527, + "c3": 10.679611650485441, + "c4": 8.543689320388342, + "c5": 6.407766990291256, + "c6": 4.271844660194171, + "c7": 2.1359223300970855 }, "rgb": [77, 76, 132] }, @@ -239280,23 +239280,23 @@ "year": 1773, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 34.49277314872526, - "c2": 25.641049573001922, - "c3": 12.617935948846231, - "c4": 7.240515241546085, - "c5": -26.847899628018087, - "c6": -29.381220332730162, - "c7": 35.38425267903452 + "points": { + "c1": 31.5649407228764, + "c2": -26.236637665557197, + "c3": 26.915209172815423, + "c4": -17.044153628709985, + "c5": 24.315922866687146, + "c6": -22.94161164832663, + "c7": -10.895076603614502 }, - "vertexSeeds": { - "c1": 8.34995885076621, - "c2": 7.7805260196012505, - "c3": 8.77547645552957, - "c4": 7.796729234530898, - "c5": 8.888170278462312, - "c6": 8.363800315497478, - "c7": 8.059521295869686 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502084, + "c3": 10.633379565418405, + "c4": 8.506703652334714, + "c5": 6.380027739251036, + "c6": 4.253351826167357, + "c7": 2.1266759130836785 }, "rgb": [77, 76, 132] }, @@ -239307,23 +239307,23 @@ "year": 1773, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 6.0148181097007765, - "c2": 1.3850053713244073, - "c3": 19.78154906947328, - "c4": -25.792196564273137, - "c5": 3.4908854273850523, - "c6": 14.394013847119282, - "c7": 13.758684924369312 + "points": { + "c1": -4.096983874732587, + "c2": 7.1226008178972435, + "c3": 1.4069445948457187, + "c4": -26.015303773635967, + "c5": 3.684515692908615, + "c6": -5.9449864250797155, + "c7": 17.521112175667163 }, - "vertexSeeds": { - "c1": 4.0007727137184705, - "c2": 4.230693093234463, - "c3": 3.9108914767935326, - "c4": 4.025095330306522, - "c5": 3.9703723869424254, - "c6": 3.934823900572124, - "c7": 4.143299710441288 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [222, 0, 59] }, @@ -239334,23 +239334,23 @@ "year": 1773, "resistanceReported": false, "duration": 6393600, - "curveSeeds": { - "c1": 9.51110171109909, - "c2": 15.921782332200781, - "c3": -1.6101616948804018, - "c4": -7.47708980601508, - "c5": -11.537063216856485, - "c6": -0.30507016573076484, - "c7": -16.5357034712237 + "points": { + "c1": 7.754625353604894, + "c2": 4.9220005347407, + "c3": 8.574825800420829, + "c4": -4.081820576936668, + "c5": 9.359667903483327, + "c6": -16.362903585579037, + "c7": -3.818335396043386 }, - "vertexSeeds": { - "c1": 2.6372367261066256, - "c2": 2.4361684537427375, - "c3": 2.515296546900756, - "c4": 2.7050745929860454, - "c5": 2.5530271693669033, - "c6": 2.7160840484833333, - "c7": 2.7273929532967633 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [222, 0, 59] }, @@ -239361,23 +239361,23 @@ "year": 1773, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": -2.7335822910965977, - "c2": -14.516056091306961, - "c3": -9.065372190319259, - "c4": -14.110360022272, - "c5": -0.07056369840993071, - "c6": 4.391293036173828, - "c7": -10.66499178754569 + "points": { + "c1": 4.726314311361961, + "c2": -14.763777051848283, + "c3": -3.963348527767664, + "c4": -10.193152869821756, + "c5": -17.876360071730097, + "c6": 16.91384598525946, + "c7": 11.381318189798865 }, - "vertexSeeds": { - "c1": 6.183419380513798, - "c2": 6.020274187899391, - "c3": 6.077806225627691, - "c4": 6.083754265878648, - "c5": 6.044244153240793, - "c6": 6.052189329150575, - "c7": 6.208093283145077 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [222, 0, 59] }, @@ -239388,23 +239388,23 @@ "year": 1774, "resistanceReported": false, "duration": 44323200, - "curveSeeds": { - "c1": 54.531843741930544, - "c2": -38.79654449641604, - "c3": 30.05408318765717, - "c4": -44.57875096318517, - "c5": 40.7438512941484, - "c6": 40.06407674420127, - "c7": 10.797020991954597 + "points": { + "c1": -58.121889777748564, + "c2": 55.411110982692506, + "c3": -42.00937706727327, + "c4": -10.521591086508572, + "c5": 8.430011792989205, + "c6": -32.703827826861556, + "c7": -8.602403908343625 }, - "vertexSeeds": { - "c1": 5.2988479241258934, - "c2": 5.149955412340152, - "c3": 5.036893569363723, - "c4": 5.320841857914827, - "c5": 5.166201484330036, - "c6": 5.141971185177353, - "c7": 5.01584836806546 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141478, + "c3": 6.403143781784575, + "c4": 5.122515025427642, + "c5": 3.841886269070739, + "c6": 2.5612575127138357, + "c7": 1.2806287563569037 }, "rgb": [238, 201, 159] }, @@ -239415,23 +239415,23 @@ "year": 1773, "resistanceReported": true, "duration": 29548800, - "curveSeeds": { - "c1": 11.755459319727962, - "c2": -38.76862354039172, - "c3": 28.181499872522025, - "c4": -40.15973904814263, - "c5": -4.509569472759743, - "c6": -2.407826976364575, - "c7": -22.905068929901702 + "points": { + "c1": 21.66290481708738, + "c2": -39.546402711076404, + "c3": -36.55505537327463, + "c4": 23.59810573936649, + "c5": -16.604386250158782, + "c6": -0.5995039037067684, + "c7": -41.323840276449424 }, - "vertexSeeds": { - "c1": 6.2792875837978945, - "c2": 6.2180080152724555, - "c3": 6.161902389149851, - "c4": 6.257209273932706, - "c5": 6.1425988417801305, - "c6": 6.238479566324137, - "c7": 6.2832978414067435 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112354, + "c3": 7.535829865926972, + "c4": 6.028663892741592, + "c5": 4.521497919556143, + "c6": 3.014331946370762, + "c7": 1.507165973185381 }, "rgb": [86, 146, 138] }, @@ -239442,23 +239442,23 @@ "year": 1773, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 12.291705400377488, - "c2": -25.230024682597215, - "c3": 30.703244616435782, - "c4": 23.285884126536153, - "c5": 29.010042050755274, - "c6": -16.015586573151932, - "c7": 22.76664684703581 + "points": { + "c1": 29.9686815484132, + "c2": 30.71876863006601, + "c3": 21.800857799557562, + "c4": 23.66730879659712, + "c5": 26.967645111407833, + "c6": 29.088081340324194, + "c7": 31.634596397645396 }, - "vertexSeeds": { - "c1": 5.091320492497313, - "c2": 5.244887602924336, - "c3": 4.85165683707831, - "c4": 4.933048667662168, - "c5": 5.026321667903413, - "c6": 4.934450487819525, - "c7": 5.147948258926785 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940351, + "c3": 6.28756356911697, + "c4": 5.030050855293568, + "c5": 3.772538141470187, + "c6": 2.515025427646784, + "c7": 1.257512713823392 }, "rgb": [86, 146, 138] }, @@ -239469,23 +239469,23 @@ "year": 1773, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 1.287593422076334, - "c2": -30.57685009301312, - "c3": -23.38075673042964, - "c4": -24.64080446176165, - "c5": 20.21378090019916, - "c6": -19.267667531073375, - "c7": -21.81355218262585 + "points": { + "c1": 26.47472433342672, + "c2": -32.00798445460104, + "c3": -8.468502834793853, + "c4": 33.590718331099794, + "c5": 25.773800789335894, + "c6": 1.0642511517721545, + "c7": -35.49685191728727 }, - "vertexSeeds": { - "c1": 9.285239330772283, - "c2": 8.955995532966545, - "c3": 9.13712097722671, - "c4": 9.196012643730551, - "c5": 9.125144305637559, - "c6": 9.097535207560766, - "c7": 9.120373796090668 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.67545076282941, + "c3": 11.39620896902449, + "c4": 9.116967175219598, + "c5": 6.837725381414705, + "c6": 4.558483587609785, + "c7": 2.2792417938048923 }, "rgb": [77, 76, 132] }, @@ -239496,23 +239496,23 @@ "year": 1774, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -42.427406532818004, - "c2": 20.867556414486174, - "c3": -50.624823030720975, - "c4": -34.574902886506834, - "c5": -26.017365884916604, - "c6": 14.032838438318777, - "c7": 45.719626058840646 + "points": { + "c1": -33.418546177936534, + "c2": 40.33638173655255, + "c3": 44.70574800658473, + "c4": 50.2872765574171, + "c5": 46.76768417765574, + "c6": 44.85434935762643, + "c7": -35.85179815300461 }, - "vertexSeeds": { - "c1": 6.323427637868089, - "c2": 6.44336822805448, - "c3": 6.346440767142623, - "c4": 6.7052418056596474, - "c5": 6.550070712459579, - "c6": 6.720653483974021, - "c7": 6.495898238606006 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.021266759130844, + "c4": 6.417013407304681, + "c5": 4.812760055478518, + "c6": 3.208506703652327, + "c7": 1.6042533518261635 }, "rgb": [58, 15, 49] }, @@ -239523,23 +239523,23 @@ "year": 1774, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": -37.701946388630375, - "c2": -10.00586173641792, - "c3": -13.692695643770755, - "c4": -33.34169702879541, - "c5": 49.31210815156346, - "c6": -5.984779439295828, - "c7": -50.33193540440574 + "points": { + "c1": -52.942978057777644, + "c2": 19.81261936521188, + "c3": 21.593739274408726, + "c4": -38.30848962582501, + "c5": 29.324976223705015, + "c6": -37.6621975874731, + "c7": -33.076731223961204 }, - "vertexSeeds": { - "c1": 3.913369514746464, - "c2": 4.083750721325542, - "c3": 4.439709729474937, - "c4": 4.136995723594965, - "c5": 4.195449000839702, - "c6": 4.052213086609057, - "c7": 3.9087283564590676 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -239550,23 +239550,23 @@ "year": 1773, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 0.05065377620724121, - "c2": 30.710318622666307, - "c3": 30.199981685408858, - "c4": 15.138541030286227, - "c5": -4.393136435413382, - "c6": -24.41924629872537, - "c7": 8.816860355891016 + "points": { + "c1": 22.116593046608322, + "c2": 8.686059999494233, + "c3": 38.51747726499376, + "c4": 37.020313685037706, + "c5": 5.632532339895548, + "c6": 37.25891946584801, + "c7": 19.874676094791006 }, - "vertexSeeds": { - "c1": 2.0996284559682956, - "c2": 2.060017320989496, - "c3": 2.1753101061778013, - "c4": 2.0028659508845514, - "c5": 2.0411944716858397, - "c6": 2.2505945851267017, - "c7": 2.1651503779482515 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705962, + "c3": 2.704576976421637, + "c4": 2.163661581137308, + "c5": 1.6227461858529832, + "c6": 1.081830790568654, + "c7": 0.540915395284325 }, "rgb": [238, 201, 159] }, @@ -239577,23 +239577,23 @@ "year": 1774, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 21.29753582926452, - "c2": -33.40540650574048, - "c3": 36.63926282700882, - "c4": 11.879624754923185, - "c5": 2.159828795756056, - "c6": 24.99397229368016, - "c7": 29.81074605519855 + "points": { + "c1": -18.571204954572252, + "c2": 31.211999105243876, + "c3": -14.82572648098067, + "c4": -41.34957882528512, + "c5": 49.778064441883146, + "c6": 34.50490020554959, + "c7": 8.695930254081915 }, - "vertexSeeds": { - "c1": 6.075407746946729, - "c2": 6.187943934021049, - "c3": 6.405510107170593, - "c4": 6.563475386279897, - "c5": 6.606111216590086, - "c6": 6.113196386956281, - "c7": 6.5464257473683505 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -239604,23 +239604,23 @@ "year": 1773, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": 3.003916750826722, - "c2": 3.4190052083048776, - "c3": 13.75982300193155, - "c4": -5.5258581601344705, - "c5": -15.249112267075255, - "c6": -12.738935648756568, - "c7": -10.895689968699765 + "points": { + "c1": 10.138756025838166, + "c2": 2.318908820164495, + "c3": -16.095873729612645, + "c4": -2.142711964121631, + "c5": -16.147845329028037, + "c6": 13.108571001235958, + "c7": -5.600237283081498 }, - "vertexSeeds": { - "c1": 4.618689974207853, - "c2": 4.723803339637652, - "c3": 4.515164690914691, - "c4": 4.398621635231035, - "c5": 4.8878432039534685, - "c6": 4.770929955992135, - "c7": 4.756442625630389 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099818 }, "rgb": [222, 0, 59] }, @@ -239631,23 +239631,23 @@ "year": 1774, "resistanceReported": false, "duration": 49852800, - "curveSeeds": { - "c1": -16.339494650131236, - "c2": 34.812698222320265, - "c3": 52.024429733374006, - "c4": 47.76318559446864, - "c5": -55.194563256252735, - "c6": -26.334906446732, - "c7": -32.483302490584826 + "points": { + "c1": 15.098810516029019, + "c2": -37.07686149131342, + "c3": 38.934424629046546, + "c4": 42.8683269234956, + "c5": -18.535397758342135, + "c6": -61.419398457759215, + "c7": 41.9173994350748 }, - "vertexSeeds": { - "c1": 4.2433087413207415, - "c2": 4.735760095271605, - "c3": 4.166787203813705, - "c4": 4.159246387457875, - "c5": 4.536508266324326, - "c6": 4.256841236404544, - "c7": 4.519112342316957 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -239658,23 +239658,23 @@ "year": 1773, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 2.781781230130413, - "c2": -33.23131554660086, - "c3": 26.311899653148885, - "c4": 15.532062915074704, - "c5": 31.024240939488564, - "c6": -16.522229314281528, - "c7": -7.754324651367085 + "points": { + "c1": -18.051771512852874, + "c2": 18.10537263075838, + "c3": -12.847331358235348, + "c4": -18.867058266861594, + "c5": -30.206426319450003, + "c6": -9.817431618924058, + "c7": -34.65120789210695 }, - "vertexSeeds": { - "c1": 3.0039462845292175, - "c2": 3.357373854793977, - "c3": 3.078097352875762, - "c4": 2.985090543314235, - "c5": 2.924084389177457, - "c6": 2.9547002529809334, - "c7": 2.940052205898009 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [238, 201, 159] }, @@ -239685,23 +239685,23 @@ "year": 1773, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -12.166675794655381, - "c2": 16.285576143384382, - "c3": -24.62764154018938, - "c4": -25.719112901040564, - "c5": 8.020936471263319, - "c6": 8.73042541262432, - "c7": -13.98531790469576 + "points": { + "c1": -14.53810593689178, + "c2": 13.928268964179821, + "c3": -0.7347044838174988, + "c4": -23.851211983654846, + "c5": 14.393721539225844, + "c6": 9.577183249335576, + "c7": 4.830002353544252 }, - "vertexSeeds": { - "c1": 2.2900699013465884, - "c2": 2.1827831902403507, - "c3": 2.27055178153584, - "c4": 2.2041602141885717, - "c5": 2.150409009714281, - "c6": 2.186171023809927, - "c7": 2.27130470492021 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.7198335644937577, + "c6": 1.1465557096625065, + "c7": 0.5732778548312513 }, "rgb": [238, 201, 159] }, @@ -239712,23 +239712,23 @@ "year": 1773, "resistanceReported": false, "duration": 4147200, - "curveSeeds": { - "c1": -1.4003819949725642, - "c2": 3.813197937801398, - "c3": -0.22453913096050115, - "c4": -3.909641293858103, - "c5": 2.632064217445489, - "c6": 12.81575387856131, - "c7": -2.7599698398741985 + "points": { + "c1": -11.218836240094905, + "c2": -4.120931524640866, + "c3": 7.718478299751826, + "c4": 8.820381341336173, + "c5": 4.289219643903458, + "c6": -5.734994909918889, + "c7": 2.6407954558289184 }, - "vertexSeeds": { - "c1": 2.642427649169608, - "c2": 2.85445129188449, - "c3": 2.546595728026462, - "c4": 2.81108722962769, - "c5": 2.837725652378035, - "c6": 2.6100791271401524, - "c7": 2.5309688792915996 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [222, 0, 59] }, @@ -239739,23 +239739,23 @@ "year": 1774, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": -21.50737772561568, - "c2": -28.604301828099224, - "c3": 27.530732197845545, - "c4": 6.898063329809368, - "c5": 40.95449470317268, - "c6": -31.92556225716909, - "c7": -39.037283785804576 + "points": { + "c1": -37.15731054089334, + "c2": -27.55584819955694, + "c3": 5.846497645994013, + "c4": 9.271845914379135, + "c5": -48.00662819006566, + "c6": 14.61939799169172, + "c7": -39.035030941821574 }, - "vertexSeeds": { - "c1": 6.809735355286561, - "c2": 6.6421551020861465, - "c3": 6.69562897756552, - "c4": 5.911512786872569, - "c5": 6.323342259520983, - "c6": 6.240161114733163, - "c7": 6.593840930250302 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -239766,23 +239766,23 @@ "year": 1774, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": 24.10035259266862, - "c2": -31.51643861830224, - "c3": -2.8259260763055565, - "c4": 15.039509520494214, - "c5": 41.85834935146929, - "c6": -20.80766543977943, - "c7": 13.027140060631133 + "points": { + "c1": 47.246512861934995, + "c2": -2.7888984859926964, + "c3": 24.863473257700058, + "c4": -19.305711636515646, + "c5": -30.84145440537422, + "c6": 37.23947522606428, + "c7": 18.749844204194382 }, - "vertexSeeds": { - "c1": 5.009307154042588, - "c2": 5.720483620024349, - "c3": 6.034133709823575, - "c4": 5.901497945084029, - "c5": 5.4505658393273455, - "c6": 5.117186500451667, - "c7": 5.469906237673548 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710123, + "c3": 7.304669440591767, + "c4": 5.843735552473422, + "c5": 4.382801664355067, + "c6": 2.921867776236711, + "c7": 1.4609338881183556 }, "rgb": [238, 201, 159] }, @@ -239793,23 +239793,23 @@ "year": 1773, "resistanceReported": false, "duration": 3974400, - "curveSeeds": { - "c1": -6.499088864674261, - "c2": -9.951095475873764, - "c3": -12.62842682874129, - "c4": -8.571754124137339, - "c5": -4.414304994676138, - "c6": 12.82428440044659, - "c7": 10.497911974020283 + "points": { + "c1": 1.8714409895127169, + "c2": -2.474193827528092, + "c3": -3.9957301314881644, + "c4": -7.643116641110229, + "c5": -5.987648556185771, + "c6": 11.273204161968238, + "c7": -8.371546559324571 }, - "vertexSeeds": { - "c1": 4.540245067754691, - "c2": 4.447081039594409, - "c3": 4.408340208577975, - "c4": 4.535218496722021, - "c5": 4.502797781212134, - "c6": 4.400546230355232, - "c7": 4.385728817890425 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492376, + "c3": 5.455386037910317, + "c4": 4.364308830328246, + "c5": 3.273231622746188, + "c6": 2.18215441516413, + "c7": 1.091077207582058 }, "rgb": [222, 0, 59] }, @@ -239820,23 +239820,23 @@ "year": 1773, "resistanceReported": false, "duration": 3974400, - "curveSeeds": { - "c1": 4.935338685515216, - "c2": -3.2908596879142014, - "c3": 2.409036433360974, - "c4": 7.614970498664007, - "c5": 9.997146383924516, - "c6": -6.56467582612355, - "c7": 8.850694763047287 + "points": { + "c1": 11.634539730945178, + "c2": 9.167640579576936, + "c3": -2.1195228110923416, + "c4": -12.27036363811237, + "c5": 8.919492099595601, + "c6": 3.953526063722549, + "c7": -12.359042162612306 }, - "vertexSeeds": { - "c1": 6.353050216996876, - "c2": 6.466515171016759, - "c3": 6.138123306952318, - "c4": 6.71008434749069, - "c5": 5.614358197640754, - "c6": 6.652986401965273, - "c7": 5.970836435719016 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -239847,23 +239847,23 @@ "year": 1773, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -19.228162109337767, - "c2": 18.80271776316256, - "c3": 18.888819585367603, - "c4": 21.321685856970053, - "c5": -10.246577370253197, - "c6": -11.42862978084414, - "c7": -18.071169056998535 + "points": { + "c1": 20.6445557299137, + "c2": 11.705191047089475, + "c3": -24.10945640339145, + "c4": -19.51746360016357, + "c5": -4.7136766682712725, + "c6": 1.2508008587000994, + "c7": -17.434579344175987 }, - "vertexSeeds": { - "c1": 4.347710313091206, - "c2": 4.429154218375166, - "c3": 4.426417512681369, - "c4": 4.506658143871067, - "c5": 4.324447047898836, - "c6": 4.4515683424270245, - "c7": 4.315380854557356 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452153, + "c3": 5.4322699953767986, + "c4": 4.345815996301431, + "c5": 3.2593619972260766, + "c6": 2.1729079981507224, + "c7": 1.0864539990753543 }, "rgb": [222, 0, 59] }, @@ -239874,23 +239874,23 @@ "year": 1773, "resistanceReported": false, "duration": 3369600, - "curveSeeds": { - "c1": -4.767990826607036, - "c2": 5.573390901280073, - "c3": -12.306324363262009, - "c4": 8.26288360523604, - "c5": 8.481642559873693, - "c6": 1.240048704045801, - "c7": -2.148576437397587 + "points": { + "c1": -7.919520802691477, + "c2": 6.619279991171032, + "c3": -5.916176690432652, + "c4": 13.026453486665089, + "c5": 10.505280036919208, + "c6": -11.112040661527104, + "c7": -12.308516395020481 }, - "vertexSeeds": { - "c1": 2.241932688531784, - "c2": 2.1143539367958963, - "c3": 2.1857485439016386, - "c4": 2.0954901434913857, - "c5": 2.024073733726249, - "c6": 2.1263698591771494, - "c7": 2.0909776872393255 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746185, + "c3": 2.7276930189551565, + "c4": 2.1821544151641246, + "c5": 1.6366158113730924, + "c6": 1.0910772075820603, + "c7": 0.545538603791032 }, "rgb": [58, 15, 49] }, @@ -239901,23 +239901,23 @@ "year": 1773, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 8.969734246409885, - "c2": 5.391176744119939, - "c3": -22.176247023969854, - "c4": -23.85063480795186, - "c5": 1.404542424276599, - "c6": 15.23671264501536, - "c7": 21.107671329548218 + "points": { + "c1": -5.900371724624474, + "c2": 13.237426660261768, + "c3": -8.856760790780982, + "c4": 5.289348683170687, + "c5": 11.31721136258269, + "c6": -14.940422239113541, + "c7": 6.728501154146855 }, - "vertexSeeds": { - "c1": 4.106287458335659, - "c2": 4.579370576450083, - "c3": 4.698190756697281, - "c4": 4.055886158431477, - "c5": 4.496985005794289, - "c6": 4.8339851205691, - "c7": 4.465910698905626 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -239928,23 +239928,23 @@ "year": 1773, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 16.99789994617562, - "c2": -29.82557854731854, - "c3": -25.202946416955093, - "c4": -2.040866215599287, - "c5": 11.277335786906633, - "c6": 32.81345588893009, - "c7": -37.38400282357781 + "points": { + "c1": -28.951983286795503, + "c2": -4.1604768955467435, + "c3": -14.047254035123512, + "c4": -32.51102355269451, + "c5": 4.227191017246177, + "c6": 19.475563596528147, + "c7": 18.088189740318768 }, - "vertexSeeds": { - "c1": 3.1389298404852957, - "c2": 3.1201193274039496, - "c3": 3.429682873902998, - "c4": 3.2788233343363724, - "c5": 3.1481719693954173, - "c6": 3.3126409986469367, - "c7": 3.269688778743757 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [86, 146, 138] }, @@ -239955,23 +239955,23 @@ "year": 1773, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 15.79557255362159, - "c2": -25.05375074863221, - "c3": 15.838963550104957, - "c4": -6.625580022756303, - "c5": 44.659487320210275, - "c6": 45.184338592259024, - "c7": 20.284963039118864 + "points": { + "c1": 23.462719485051252, + "c2": -19.817978193577048, + "c3": 17.751068239436037, + "c4": -3.9827420755222036, + "c5": -29.248963236188956, + "c6": -9.321252841591445, + "c7": 37.8883204618198 }, - "vertexSeeds": { - "c1": 4.13149250605113, - "c2": 4.009958414296331, - "c3": 4.480854092190585, - "c4": 3.9691193768071473, - "c5": 4.522100576785012, - "c6": 4.341718233478657, - "c7": 4.523508262193422 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411927, + "c3": 5.409153952843271, + "c4": 4.327323162274616, + "c5": 3.2454923717059603, + "c6": 2.1636615811373114, + "c7": 1.0818307905686557 }, "rgb": [222, 0, 59] }, @@ -239982,23 +239982,23 @@ "year": 1774, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": 24.744370071256547, - "c2": -25.090025501515125, - "c3": 28.95054583954731, - "c4": 7.396956240932056, - "c5": 14.341436775704004, - "c6": -29.51121668065353, - "c7": 41.018154418160684 + "points": { + "c1": -7.375204244839722, + "c2": 18.560422403253618, + "c3": -33.48557764344889, + "c4": -11.089248209186302, + "c5": 7.20350562240278, + "c6": 27.569237750353118, + "c7": -33.720353040330735 }, - "vertexSeeds": { - "c1": 5.107265242731932, - "c2": 4.904663074669462, - "c3": 5.099566790630946, - "c4": 4.668333727361358, - "c5": 4.835758428900646, - "c6": 4.822933712314342, - "c7": 4.98401608574611 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980585, + "c3": 6.31067961165049, + "c4": 5.048543689320395, + "c5": 3.7864077669902927, + "c6": 2.5242718446601975, + "c7": 1.262135922330095 }, "rgb": [222, 0, 59] }, @@ -240009,23 +240009,23 @@ "year": 1773, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 13.072537441532333, - "c2": -25.093119618928405, - "c3": 31.207927581413372, - "c4": 16.115964991930973, - "c5": -25.572079594516588, - "c6": -32.856574717581175, - "c7": 8.679563662404831 + "points": { + "c1": 24.52149552349305, + "c2": -1.0165944961409608, + "c3": -32.798071740415054, + "c4": -5.300971918508154, + "c5": -18.97170276842267, + "c6": -23.756490780292623, + "c7": 24.824185968430506 }, - "vertexSeeds": { - "c1": 1.1520546689054352, - "c2": 1.189598573015963, - "c3": 1.0852981887515087, - "c4": 1.2551771528248505, - "c5": 1.1111512701369668, - "c6": 1.1737053927116308, - "c7": 1.0788570889866802 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948685, + "c3": 1.5487748497457228, + "c4": 1.2390198797965783, + "c5": 0.9292649098474343, + "c6": 0.6195099398982886, + "c7": 0.3097549699491443 }, "rgb": [86, 146, 138] }, @@ -240036,23 +240036,23 @@ "year": 1773, "resistanceReported": false, "duration": 2678400, - "curveSeeds": { - "c1": 7.007204396250669, - "c2": 0.9242658034464686, - "c3": -4.526330458871117, - "c4": 5.21168585294904, - "c5": 1.0022557161975438, - "c6": 0.4057790764109246, - "c7": 6.578495961002494 + "points": { + "c1": 11.562716483666636, + "c2": -11.811958908357756, + "c3": -10.472069343787703, + "c4": 13.203880353026667, + "c5": -3.1207883648630794, + "c6": 10.584485439625803, + "c7": -11.698549626686255 }, - "vertexSeeds": { - "c1": 5.846896359142185, - "c2": 6.405750785986859, - "c3": 5.606335801803194, - "c4": 6.03082858282712, - "c5": 6.7653222791565035, - "c6": 6.404714797554251, - "c7": 5.590202807750028 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -240063,23 +240063,23 @@ "year": 1773, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -2.4563857960693447, - "c2": 13.749410489082617, - "c3": -7.670200292329211, - "c4": 2.3689774691718846, - "c5": 16.340899401451335, - "c6": -10.90615767636188, - "c7": 18.034898659438834 + "points": { + "c1": 5.950323044779182, + "c2": 6.334299529038493, + "c3": -14.314456503672963, + "c4": 13.900024988496792, + "c5": -22.26259008903407, + "c6": -2.5652455697879155, + "c7": 0.7743928900110362 }, - "vertexSeeds": { - "c1": 6.687717950119057, - "c2": 6.511538844378245, - "c3": 6.9341790320923735, - "c4": 7.081638387478649, - "c5": 6.591325634996542, - "c6": 6.36968389342111, - "c7": 6.769879474020328 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.81830790568654, + "c3": 9.01525658807212, + "c4": 7.2122052704577, + "c5": 5.40915395284327, + "c6": 3.60610263522884, + "c7": 1.80305131761442 }, "rgb": [77, 76, 132] }, @@ -240090,23 +240090,23 @@ "year": 1773, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 27.916134883226174, - "c2": -2.1870422696946648, - "c3": -26.15779073387943, - "c4": 19.840992677186367, - "c5": -1.3691257235539815, - "c6": -10.609433926283003, - "c7": 23.393017786325967 + "points": { + "c1": -25.87741949301583, + "c2": 32.153483995286834, + "c3": -25.947292746868513, + "c4": 15.223703176451671, + "c5": -1.0676914270000921, + "c6": -29.74939006408268, + "c7": 1.624863834658143 }, - "vertexSeeds": { - "c1": 3.7387007761328244, - "c2": 3.5596993155602163, - "c3": 3.739540103262422, - "c4": 3.520282794156129, - "c5": 3.7707606053838982, - "c6": 3.6450991323524375, - "c7": 3.770503518164478 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304204, + "c4": 3.7540453074433624, + "c5": 2.8155339805825275, + "c6": 1.8770226537216852, + "c7": 0.9385113268608426 }, "rgb": [77, 76, 132] }, @@ -240117,23 +240117,23 @@ "year": 1774, "resistanceReported": false, "duration": 50198400, - "curveSeeds": { - "c1": -59.20545733439044, - "c2": 46.9568051381528, - "c3": -61.09241278236511, - "c4": 33.76540825124734, - "c5": 26.901399812755727, - "c6": 1.0640327263517122, - "c7": 11.237196486975066 + "points": { + "c1": -37.21195310897347, + "c2": -63.55690420878331, + "c3": -7.10004916143, + "c4": -47.159488544697126, + "c5": 53.55501883718141, + "c6": 45.43541912128926, + "c7": -15.753483663969881 }, - "vertexSeeds": { - "c1": 6.776795025908638, - "c2": 6.633391984218295, - "c3": 6.9726486291516885, - "c4": 6.639296790191146, - "c5": 6.92505324462763, - "c6": 6.869632471193725, - "c7": 6.783350299629665 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721212, + "c3": 8.460471567267696, + "c4": 6.76837725381415, + "c5": 5.076282940360606, + "c6": 3.3841886269070613, + "c7": 1.6920943134535449 }, "rgb": [238, 201, 159] }, @@ -240144,23 +240144,23 @@ "year": 1774, "resistanceReported": false, "duration": 50284800, - "curveSeeds": { - "c1": 61.97427654282549, - "c2": 46.52170809301877, - "c3": 53.18042265866012, - "c4": 58.07690424978048, - "c5": -27.2492994341805, - "c6": -31.607918090358808, - "c7": 40.88444749083985 + "points": { + "c1": 56.87966021055635, + "c2": 40.82816454040804, + "c3": 44.66381059695726, + "c4": -3.9716112483786645, + "c5": -63.493500279487485, + "c6": -4.325633147330066, + "c7": 43.781908277081115 }, - "vertexSeeds": { - "c1": 0.05829015544041451, - "c2": 0.05829015544041451, - "c3": 0.05829015544041451, - "c4": 0.05829015544041451, - "c5": 0.05829015544041451, - "c6": 0.05829015544041451, - "c7": 0.05829015544041451 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -240171,23 +240171,23 @@ "year": 1773, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 13.195991664356562, - "c2": -30.86032435088897, - "c3": -5.233279237528315, - "c4": 26.333284482720487, - "c5": 42.445140319183764, - "c6": 2.0551914229630555, - "c7": -3.3838171889348487 + "points": { + "c1": 30.194569035835258, + "c2": -15.501179312389077, + "c3": -36.6315989244236, + "c4": 25.98205158410076, + "c5": 27.398865905667478, + "c6": 24.416097330601744, + "c7": 9.702515260061766 }, - "vertexSeeds": { - "c1": 9.192063453515633, - "c2": 9.470147186558519, - "c3": 9.356402566254072, - "c4": 9.606340057415103, - "c5": 9.127822315552793, - "c6": 9.482310604325486, - "c7": 9.258751045500796 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110962, + "c3": 11.55802126675912, + "c4": 9.2464170134073, + "c5": 6.934812760055481, + "c6": 4.623208506703662, + "c7": 2.311604253351819 }, "rgb": [238, 201, 159] }, @@ -240198,23 +240198,23 @@ "year": 1773, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -2.3611742667539275, - "c2": -17.738827729406744, - "c3": -14.04960826269174, - "c4": -9.765271825318958, - "c5": -3.5843412245840653, - "c6": 18.02020197672079, - "c7": -18.281462687565416 + "points": { + "c1": 26.870879349036798, + "c2": -7.002166661072231, + "c3": -18.37737802684734, + "c4": -21.14391453608155, + "c5": 16.84962279357972, + "c6": 29.27698970297284, + "c7": -29.713869047371308 }, - "vertexSeeds": { - "c1": 1.4296873192839894, - "c2": 1.347574641340488, - "c3": 1.4242688917104822, - "c4": 1.4632770075300756, - "c5": 1.3395086634344349, - "c6": 1.447749850841934, - "c7": 1.4928917605051675 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.16366158113731, + "c3": 1.8030513176144225, + "c4": 1.4424410540915387, + "c5": 1.081830790568655, + "c6": 0.7212205270457713, + "c7": 0.3606102635228837 }, "rgb": [238, 201, 159] }, @@ -240225,23 +240225,23 @@ "year": 1773, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 24.181270615657326, - "c2": -20.135188481492296, - "c3": -24.07633750326793, - "c4": 37.04367992770321, - "c5": 14.411367540200771, - "c6": 13.685267221116895, - "c7": -24.471661631315257 + "points": { + "c1": -26.37547806404417, + "c2": -32.44392511560841, + "c3": 27.541111424032394, + "c4": -15.715763030387564, + "c5": -38.8747297357223, + "c6": -36.530144588657386, + "c7": -0.2434279768245986 }, - "vertexSeeds": { - "c1": 1.9697972377661364, - "c2": 1.9910009121338645, - "c3": 1.975797709437083, - "c4": 1.975627897035647, - "c5": 2.020470432760076, - "c6": 2.0697749939448533, - "c7": 2.0336459373293057 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.9958391123439645, + "c3": 2.4965325936199676, + "c4": 1.997226074895979, + "c5": 1.4979195561719822, + "c6": 0.9986130374479855, + "c7": 0.4993065187239885 }, "rgb": [86, 146, 138] }, @@ -240252,23 +240252,23 @@ "year": 1773, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -28.620816051334362, - "c2": -25.775140261120605, - "c3": -15.34561553029571, - "c4": 31.520234369305605, - "c5": 24.41846269603449, - "c6": 32.65024908777206, - "c7": -2.7098957917705135 + "points": { + "c1": 32.84559882669013, + "c2": 5.123871828900491, + "c3": 21.331902351331777, + "c4": -30.264827622047846, + "c5": -35.92076995082383, + "c6": 7.60265595617841, + "c7": 33.522406751298085 }, - "vertexSeeds": { - "c1": 7.901624056054421, - "c2": 8.081865224820442, - "c3": 8.119422804584364, - "c4": 8.121726906127922, - "c5": 8.134518175706003, - "c6": 8.055816457330208, - "c7": 8.092411056474923 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054104, + "c3": 9.801202034211768, + "c4": 7.8409616273693885, + "c5": 5.880721220527052, + "c6": 3.920480813684716, + "c7": 1.9602404068423798 }, "rgb": [77, 76, 132] }, @@ -240279,23 +240279,23 @@ "year": 1773, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -27.303601139853725, - "c2": -6.067652712821193, - "c3": 26.09341409952596, - "c4": 23.945598962380643, - "c5": 11.56735826781214, - "c6": -7.17025187627145, - "c7": -35.08256245331994 + "points": { + "c1": -19.205787541833132, + "c2": 33.44330669146815, + "c3": -16.92963335164903, + "c4": -36.11654614836928, + "c5": 4.326084659330817, + "c6": -31.994414640609413, + "c7": -5.618404619735713 }, - "vertexSeeds": { - "c1": 9.799513894754288, - "c2": 10.210903874044632, - "c3": 10.370682691984447, - "c4": 10.03619073904009, - "c5": 10.155135083326927, - "c6": 10.318731412695758, - "c7": 10.335786833121247 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599156, + "c3": 12.413314840499325, + "c4": 9.930651872399451, + "c5": 7.447988904299578, + "c6": 4.965325936199726, + "c7": 2.482662968099873 }, "rgb": [238, 201, 159] }, @@ -240306,23 +240306,23 @@ "year": 1773, "resistanceReported": false, "duration": 1814400, - "curveSeeds": { - "c1": -6.264184975045884, - "c2": 9.800083212160821, - "c3": 1.9507748341212618, - "c4": 8.479038499646698, - "c5": 9.999299051945869, - "c6": 1.775812349202294, - "c7": -2.9179125061194675 + "points": { + "c1": 2.4420399460853695, + "c2": 13.09444502987196, + "c3": 9.199158471076334, + "c4": -10.055730032856212, + "c5": -8.273778943666462, + "c6": 9.227036597654045, + "c7": -13.573122769790892 }, - "vertexSeeds": { - "c1": 6.767188027411624, - "c2": 5.985577688290741, - "c3": 5.948701635623232, - "c4": 6.0404028304281425, - "c5": 6.205842729578554, - "c6": 6.012915903874256, - "c7": 5.786731177468522 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -240333,23 +240333,23 @@ "year": 1773, "resistanceReported": false, "duration": 1641600, - "curveSeeds": { - "c1": 8.836917643356053, - "c2": -9.099964615061868, - "c3": 4.315073364587004, - "c4": -2.794112925335737, - "c5": -2.3018141302383537, - "c6": -2.1921336221548096, - "c7": -5.381863301341897 + "points": { + "c1": 1.508571780468161, + "c2": 13.359973558647084, + "c3": 9.557377009797815, + "c4": -6.491772456871652, + "c5": -7.465601515487298, + "c6": -6.4699946607636205, + "c7": 11.60267288914724 }, - "vertexSeeds": { - "c1": 6.166793178295957, - "c2": 5.987536968740918, - "c3": 6.717670497377883, - "c4": 6.811444684851507, - "c5": 6.457031482309123, - "c6": 6.210980313384706, - "c7": 6.261677250441006 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -240360,23 +240360,23 @@ "year": 1773, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 5.398751326790865, - "c2": -16.6833232548495, - "c3": -31.901126729737932, - "c4": -17.676859138842033, - "c5": 1.8455917283531278, - "c6": -26.716650040942522, - "c7": -32.20001591277572 + "points": { + "c1": 34.721534295616834, + "c2": -10.34923964913525, + "c3": 46.465623594254424, + "c4": 22.812278117029066, + "c5": -18.012910160150163, + "c6": -41.74115031521671, + "c7": -25.62967554508188 }, - "vertexSeeds": { - "c1": 1.278624530941164, - "c2": 1.1981355816030776, - "c3": 1.3402614294779107, - "c4": 1.3609247894178458, - "c5": 1.1808254659553998, - "c6": 1.3273178826538572, - "c7": 1.2449440057774719 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.024965325936199, + "c3": 1.6874711049468343, + "c4": 1.349976883957467, + "c5": 1.0124826629680994, + "c6": 0.6749884419787321, + "c7": 0.33749422098936743 }, "rgb": [58, 15, 49] }, @@ -240387,23 +240387,23 @@ "year": 1774, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -25.917523209919665, - "c2": 10.104696542182602, - "c3": 20.406253995812705, - "c4": 40.84889936193193, - "c5": -22.098189875421145, - "c6": 30.77815358570595, - "c7": -10.898604519533762 + "points": { + "c1": 13.915974782241669, + "c2": 4.234415641370866, + "c3": 11.818136791216396, + "c4": 45.81337480573147, + "c5": 28.892026200094932, + "c6": 21.43913476326061, + "c7": 35.7927114886118 }, - "vertexSeeds": { - "c1": 2.36127093761388, - "c2": 2.4242192299339003, - "c3": 2.5469562394382295, - "c4": 2.4375814351174414, - "c5": 2.520725282603996, - "c6": 2.513533714423455, - "c7": 2.4456910584431037 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495116, + "c3": 3.0744336569579334, + "c4": 2.4595469255663445, + "c5": 1.8446601941747558, + "c6": 1.2297734627831722, + "c7": 0.6148867313915888 }, "rgb": [77, 76, 132] }, @@ -240414,23 +240414,23 @@ "year": 1773, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -36.63351580558391, - "c2": -10.631081902322435, - "c3": 40.98623098862227, - "c4": 7.574845949093941, - "c5": -21.251520209261784, - "c6": -3.7656612522557253, - "c7": -34.65201693837134 + "points": { + "c1": -38.85262227003807, + "c2": 9.271876387119526, + "c3": -24.15086703892847, + "c4": 17.49546135574134, + "c5": 1.8754297519424128, + "c6": 13.127852052057612, + "c7": 10.827395412169771 }, - "vertexSeeds": { - "c1": 3.9631730055405576, - "c2": 4.014459480693921, - "c3": 4.367977335384398, - "c4": 3.9849284149013835, - "c5": 4.007403908175611, - "c6": 4.250167939296462, - "c7": 4.223268569030008 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170598, + "c3": 5.270457697642162, + "c4": 4.216366158113732, + "c5": 3.1622746185852963, + "c6": 2.108183079056866, + "c7": 1.0540915395284305 }, "rgb": [77, 76, 132] }, @@ -240441,23 +240441,23 @@ "year": 1773, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 20.436117076724976, - "c2": 21.566318404501807, - "c3": 34.448395476074765, - "c4": -12.284453267066425, - "c5": 9.820820606630889, - "c6": 35.8656784089637, - "c7": 1.9711030276846557 + "points": { + "c1": 23.723290703650818, + "c2": 21.52734807459955, + "c3": -35.75548412004086, + "c4": 9.806288756650112, + "c5": 6.999804642045937, + "c6": -25.712768274669205, + "c7": 29.10338463205923 }, - "vertexSeeds": { - "c1": 2.7479196335479292, - "c2": 2.9223124640522715, - "c3": 2.860401580104265, - "c4": 2.678228052812548, - "c5": 2.758279170436854, - "c6": 2.5921585834282594, - "c7": 2.5206440817106492 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [58, 15, 49] }, @@ -240468,23 +240468,23 @@ "year": 1773, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 17.714799664168517, - "c2": -30.176157549611627, - "c3": 14.100936395619357, - "c4": 2.7986413594381077, - "c5": -5.299154011537681, - "c6": -37.81204486614891, - "c7": 26.440913444201158 + "points": { + "c1": 16.119116383367135, + "c2": 17.3042559554193, + "c3": -29.222781399975418, + "c4": -27.06204866378804, + "c5": -42.081845426794054, + "c6": -28.450852041387904, + "c7": 25.932523080094228 }, - "vertexSeeds": { - "c1": 5.592378834239179, - "c2": 5.704375879567488, - "c3": 5.800349633828075, - "c4": 6.182276112215195, - "c5": 5.9821267803249745, - "c6": 6.268539433312163, - "c7": 5.471561228900181 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.57004160887656, + "c3": 7.9750346740637985, + "c4": 6.3800277392510365, + "c5": 4.7850208044382745, + "c6": 3.1900138696255134, + "c7": 1.5950069348127518 }, "rgb": [77, 76, 132] }, @@ -240495,23 +240495,23 @@ "year": 1773, "resistanceReported": false, "duration": 777600, - "curveSeeds": { - "c1": -9.461920084816995, - "c2": 0.7455522493897853, - "c3": -3.4867908348522043, - "c4": 0.7467374655324637, - "c5": 0.7834336686118046, - "c6": 9.50177831591547, - "c7": 9.202782643879544 + "points": { + "c1": 5.102796722173007, + "c2": 2.5627944959051554, + "c3": -3.8464017504467076, + "c4": -5.315415728849091, + "c5": -6.745165840067442, + "c6": 8.845896993521073, + "c7": -0.6310827236936962 }, - "vertexSeeds": { - "c1": 3.2951330033576043, - "c2": 3.589251743913426, - "c3": 3.409908746284845, - "c4": 3.625074336730613, - "c5": 3.552208958293603, - "c6": 3.3140333549824073, - "c7": 3.7092683503842596 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435504, + "c4": 3.5506241331484096, + "c5": 2.662968099861307, + "c6": 1.7753120665742048, + "c7": 0.8876560332871024 }, "rgb": [58, 15, 49] }, @@ -240522,23 +240522,23 @@ "year": 1773, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 27.413112221401107, - "c2": 3.3519288937451748, - "c3": -11.630824227464352, - "c4": 0.7599001933934488, - "c5": -16.384044173221916, - "c6": -10.791289972622067, - "c7": -1.2506722875925576 + "points": { + "c1": -31.24388215264011, + "c2": 2.702858542518726, + "c3": 13.144824994603312, + "c4": 3.473237330799229, + "c5": -16.875108303330133, + "c6": -7.154229632741593, + "c7": 2.193612251691775 }, - "vertexSeeds": { - "c1": 3.250919238151863, - "c2": 3.2242671640199525, - "c3": 3.0852119750986056, - "c4": 3.19993362780026, - "c5": 2.9299322003533925, - "c6": 2.912470045458919, - "c7": 3.129237403510613 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -240549,23 +240549,23 @@ "year": 1773, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -0.29822695553376377, - "c2": -19.73826131117408, - "c3": -7.190405515744633, - "c4": 20.595012964736675, - "c5": 29.885318918548194, - "c6": -5.958977493656818, - "c7": 1.3708076473320787 + "points": { + "c1": -11.37935501055511, + "c2": 20.398689883904638, + "c3": -9.366731863902281, + "c4": 25.839918960065646, + "c5": -2.3916189628559152, + "c6": -15.392360473331717, + "c7": 12.844502591316946 }, - "vertexSeeds": { - "c1": 9.847299672554186, - "c2": 9.170734884128674, - "c3": 9.923264466114375, - "c4": 9.595817855793335, - "c5": 9.001792078588874, - "c6": 9.53800212339156, - "c7": 8.576770627750365 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754503, + "c3": 11.927877947295425, + "c4": 9.542302357836336, + "c5": 7.156726768377257, + "c6": 4.771151178918168, + "c7": 2.385575589459078 }, "rgb": [238, 201, 159] }, @@ -240576,23 +240576,23 @@ "year": 1773, "resistanceReported": false, "duration": 172800, - "curveSeeds": { - "c1": -3.8491534853337503, - "c2": 0.7458381589932035, - "c3": 1.7560277758974312, - "c4": 0.4768773736712575, - "c5": -10.092709273938619, - "c6": 5.707748628115533, - "c7": 1.6932465474583012 + "points": { + "c1": -2.2261299149001967, + "c2": -6.2296707560804565, + "c3": -10.293109640934379, + "c4": 10.893996378477441, + "c5": -11.84973215332527, + "c6": -5.595705455927854, + "c7": -6.63772240134416 }, - "vertexSeeds": { - "c1": 3.1352733916249673, - "c2": 2.9468970008804534, - "c3": 3.00878282009093, - "c4": 3.257756905840759, - "c5": 3.188526247830194, - "c6": 3.0367067606275193, - "c7": 2.9413808639673475 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -240603,23 +240603,23 @@ "year": 1773, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 22.64393179166842, - "c2": 1.5840818306347373, - "c3": -43.40898223932153, - "c4": -43.05952505428763, - "c5": 12.619760657073286, - "c6": 29.474302663063327, - "c7": -37.32938339317347 + "points": { + "c1": 39.123064400061054, + "c2": -17.768649970606788, + "c3": -22.785413394824012, + "c4": -34.23120353159911, + "c5": -34.664597672075125, + "c6": 35.203953168644674, + "c7": 18.129447062582187 }, - "vertexSeeds": { - "c1": 6.820183910552264, - "c2": 6.954066779983345, - "c3": 6.6249317325643124, - "c4": 7.015878576989968, - "c5": 7.101727828590179, - "c6": 6.510071549294655, - "c7": 6.601547382839051 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.18030513176144, + "c3": 8.483587609801196, + "c4": 6.786870087840954, + "c5": 5.0901525658807305, + "c6": 3.3934350439204866, + "c7": 1.6967175219602433 }, "rgb": [86, 146, 138] }, @@ -240630,23 +240630,23 @@ "year": 1774, "resistanceReported": false, "duration": 40003200, - "curveSeeds": { - "c1": -39.70508057968381, - "c2": -3.9883497820970177, - "c3": -25.777109843005874, - "c4": -20.846079661506074, - "c5": 29.459129239637505, - "c6": -4.768488841357481, - "c7": 14.795077991258907 + "points": { + "c1": 8.545954072564214, + "c2": -12.709013183330633, + "c3": 10.236954899209962, + "c4": -51.48023284598602, + "c5": 38.06351560368951, + "c6": 49.598624320192414, + "c7": -36.10854489260686 }, - "vertexSeeds": { - "c1": 0.39203585531925594, - "c2": 0.39290008934623166, - "c3": 0.3853745496964048, - "c4": 0.4221078711441655, - "c5": 0.38711576104437395, - "c6": 0.392364447189974, - "c7": 0.3820078914059091 + "offsets": { + "c1": 0.7443365695792881, + "c2": 0.6380027739251037, + "c3": 0.5316689782709195, + "c4": 0.4253351826167362, + "c5": 0.31900138696255187, + "c6": 0.21266759130836763, + "c7": 0.10633379565418426 }, "rgb": [222, 0, 59] }, @@ -240657,23 +240657,23 @@ "year": 1774, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 26.933641299553315, - "c2": 39.79971763569726, - "c3": -12.876403954300446, - "c4": 22.553733969482025, - "c5": -40.706109597850485, - "c6": 35.57346870929753, - "c7": 31.26192100419611 + "points": { + "c1": -15.579351411993635, + "c2": 7.060793006942511, + "c3": -34.12843117459149, + "c4": -20.985157941273933, + "c5": 6.440947111973138, + "c6": 44.73218258015797, + "c7": 9.657560546342857 }, - "vertexSeeds": { - "c1": 5.764360442431798, - "c2": 6.16168514226567, - "c3": 6.22978376155384, - "c4": 5.615982139309627, - "c5": 6.290013670608984, - "c6": 5.752676743074475, - "c7": 6.115333949250671 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [86, 146, 138] }, @@ -240684,23 +240684,23 @@ "year": 1774, "resistanceReported": false, "duration": 50630400, - "curveSeeds": { - "c1": -57.37089942383081, - "c2": -31.175681980495895, - "c3": 4.352720063567332, - "c4": -58.0790521374633, - "c5": 53.60447283714319, - "c6": 47.7204004441123, - "c7": 25.27117657091857 + "points": { + "c1": -10.590582456965663, + "c2": -50.26330633243521, + "c3": -65.50602982096098, + "c4": -15.69668845774001, + "c5": 58.868072550717386, + "c6": -5.266931354877876, + "c7": -34.07426470594807 }, - "vertexSeeds": { - "c1": 8.921399522812383, - "c2": 8.429609775286574, - "c3": 9.011933943498653, - "c4": 8.873606524559456, - "c5": 8.293508521575049, - "c6": 9.11544730568876, - "c7": 8.01380005264577 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.50901525658807, + "c3": 11.257512713823393, + "c4": 9.006010171058714, + "c5": 6.754507628294035, + "c6": 4.503005085529357, + "c7": 2.2515025427646784 }, "rgb": [86, 146, 138] }, @@ -240711,23 +240711,23 @@ "year": 1773, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 13.647819853107514, - "c2": 35.26381092877967, - "c3": 21.382075605899807, - "c4": 12.196798633204999, - "c5": -6.599028635874092, - "c6": -6.805924586134289, - "c7": -18.363831971470916 + "points": { + "c1": -7.776098945788661, + "c2": 26.341111664886277, + "c3": -17.914571257434904, + "c4": -35.24619391179971, + "c5": -41.439450677898705, + "c6": -3.303235948991336, + "c7": 7.379211699241701 }, - "vertexSeeds": { - "c1": 7.351517409561786, - "c2": 6.997592786019198, - "c3": 7.04616295403512, - "c4": 6.903111463700684, - "c5": 7.02313636551163, - "c6": 7.009717752151235, - "c7": 7.070666767402092 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -240738,23 +240738,23 @@ "year": 1773, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -2.6056268137846565, - "c2": -3.396353758892486, - "c3": -15.65488335093246, - "c4": -16.37285084914836, - "c5": 13.87176399528746, - "c6": -13.94223118908132, - "c7": 10.760990455433838 + "points": { + "c1": -1.8315604577292248, + "c2": -19.464666088081252, + "c3": -5.209534632377473, + "c4": -14.615383041415011, + "c5": -11.711104327120024, + "c6": 1.7150660312418573, + "c7": -7.010764312216619 }, - "vertexSeeds": { - "c1": 1.4344915962921303, - "c2": 1.5894298322746532, - "c3": 1.3799695156875176, - "c4": 1.468828382453521, - "c5": 1.4100374538164275, - "c6": 1.410660834281625, - "c7": 1.321342239329292 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [58, 15, 49] }, @@ -240765,23 +240765,23 @@ "year": 1774, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 8.2604652067781, - "c2": 55.735342343575134, - "c3": 32.26485243051979, - "c4": -37.75743411689286, - "c5": -44.51825358461044, - "c6": -5.894630488032085, - "c7": -25.33129369383895 + "points": { + "c1": -24.170657755180073, + "c2": -23.822709648531905, + "c3": -21.78580677246906, + "c4": -21.75188602797934, + "c5": -38.31067906732194, + "c6": -42.59634782878145, + "c7": -44.22884667695463 }, - "vertexSeeds": { - "c1": 7.318401767745711, - "c2": 7.29260683765971, - "c3": 7.1523459085113705, - "c4": 7.370282231895824, - "c5": 7.341895108638729, - "c6": 7.089883208465658, - "c7": 7.242950991788277 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324557, + "c3": 8.807212205270446, + "c4": 7.045769764216362, + "c5": 5.2843273231622785, + "c6": 3.5228848821081673, + "c7": 1.7614424410540837 }, "rgb": [77, 76, 132] }, @@ -240792,23 +240792,23 @@ "year": 1773, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -6.089637977381489, - "c2": -23.941356477276692, - "c3": 16.238534035734713, - "c4": 25.02809721495576, - "c5": 24.334462733078556, - "c6": 23.07429499922782, - "c7": -12.070621075047752 + "points": { + "c1": -0.6119955164436988, + "c2": 3.203028332770554, + "c3": 10.900803339102485, + "c4": 25.048487479942853, + "c5": -24.079550177323025, + "c6": -28.85404821432178, + "c7": -15.795461269101006 }, - "vertexSeeds": { - "c1": 2.230178852931036, - "c2": 2.217254742682611, - "c3": 2.2299542346418186, - "c4": 2.2195969094986996, - "c5": 2.217389372743798, - "c6": 2.223002502852837, - "c7": 2.2319090636376737 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.217753120665757, + "c3": 2.6814609338880953, + "c4": 2.1451687471104868, + "c5": 1.6088765603328785, + "c6": 1.0725843735552703, + "c7": 0.5362921867776084 }, "rgb": [238, 201, 159] }, @@ -240819,23 +240819,23 @@ "year": 1774, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -21.81092208347747, - "c2": -3.1814915931149272, - "c3": 10.030433341750864, - "c4": 2.301209152362567, - "c5": -1.9910658113181512, - "c6": 44.884494691889046, - "c7": -23.250978089147793 + "points": { + "c1": -32.88927234288453, + "c2": 31.174074778355816, + "c3": -26.743362982478295, + "c4": 38.46272993703951, + "c5": 46.00594390525167, + "c6": 52.58692305215973, + "c7": 7.88282058046628 }, - "vertexSeeds": { - "c1": 2.543564815011528, - "c2": 2.5548655708224475, - "c3": 2.577470502147403, - "c4": 2.6722865536973477, - "c5": 2.5419966743925904, - "c6": 2.5965877543117757, - "c7": 2.6087108378792396 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228854, + "c3": 3.0050855293573724, + "c4": 2.404068423485903, + "c5": 1.8030513176144212, + "c6": 1.2020342117429514, + "c7": 0.6010171058714817 }, "rgb": [238, 201, 159] }, @@ -240846,23 +240846,23 @@ "year": 1773, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -21.742609440778025, - "c2": 11.029159549160173, - "c3": -24.842951847059144, - "c4": 12.955169130806834, - "c5": 6.7203530652588235, - "c6": 2.8999776313241483, - "c7": -15.064931147659099 + "points": { + "c1": 17.653856488845992, + "c2": 24.395967965049525, + "c3": -3.862666304487359, + "c4": 9.925689740568128, + "c5": -28.308852977224998, + "c6": -8.874454734081045, + "c7": 20.02502591765744 }, - "vertexSeeds": { - "c1": 7.299986006647113, - "c2": 7.673252449058135, - "c3": 7.302278795884154, - "c4": 7.573565218816477, - "c5": 7.614754139990256, - "c6": 7.526068602423951, - "c7": 7.5738024911179345 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169206, + "c3": 9.292649098474334, + "c4": 7.434119278779462, + "c5": 5.575589459084617, + "c6": 3.7170596393897455, + "c7": 1.8585298196948727 }, "rgb": [77, 76, 132] }, @@ -240873,23 +240873,23 @@ "year": 1773, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -3.721317430432869, - "c2": -14.1041611304672, - "c3": 21.45269210396056, - "c4": 1.1913275510807573, - "c5": 20.42849537826649, - "c6": 2.0120459649017945, - "c7": -17.207029414085934 + "points": { + "c1": 1.5612066153332016, + "c2": 17.951382843017576, + "c3": -2.9372058069582643, + "c4": -9.24587004801579, + "c5": 6.635500169955261, + "c6": -10.782564059537805, + "c7": -3.9485778448609103 }, - "vertexSeeds": { - "c1": 3.555470425708288, - "c2": 3.5293418696049135, - "c3": 3.545434958145965, - "c4": 3.549983516546732, - "c5": 3.572792268330104, - "c6": 3.611750725210777, - "c7": 3.522881452443109 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.1872399445214885, + "c3": 4.32269995376793, + "c4": 3.4581599630143374, + "c5": 2.5936199722607443, + "c6": 1.7290799815071511, + "c7": 0.8645399907535929 }, "rgb": [58, 15, 49] }, @@ -240900,23 +240900,23 @@ "year": 1775, "resistanceReported": false, "duration": 68860800, - "curveSeeds": { - "c1": -29.735191042082846, - "c2": -41.7334348884676, - "c3": -59.58032442773805, - "c4": -7.2253150809416695, - "c5": -81.77333945738133, - "c6": 73.91539529150526, - "c7": 0.8355201083140003 + "points": { + "c1": -80.04453260794328, + "c2": -51.47775968116146, + "c3": 3.8024579536479024, + "c4": 56.740586537646266, + "c5": -22.43861228551701, + "c6": 32.7031918137081, + "c7": -61.681458575471716 }, - "vertexSeeds": { - "c1": 8.007538931739388, - "c2": 8.045337359564734, - "c3": 7.86405285455977, - "c4": 7.8288239714931995, - "c5": 7.89232104295306, - "c6": 7.77197195115207, - "c7": 7.80435354071415 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.53952843273233, + "c3": 9.616273693943594, + "c4": 7.693018955154887, + "c5": 5.769764216366151, + "c6": 3.8465094775774435, + "c7": 1.9232547387887076 }, "rgb": [58, 15, 49] }, @@ -240927,23 +240927,23 @@ "year": 1774, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 0.09044636280226825, - "c2": 21.35714687356009, - "c3": 16.17568250426666, - "c4": 18.468771939712063, - "c5": 21.599686039940018, - "c6": -26.587760170597228, - "c7": 33.6085362967688 + "points": { + "c1": -32.385876326846486, + "c2": 33.32387119188524, + "c3": 2.555869473385492, + "c4": 39.04400675348496, + "c5": 21.484148778121103, + "c6": 4.3900761391976815, + "c7": 39.880134126501325 }, - "vertexSeeds": { - "c1": 7.6390762552057305, - "c2": 8.49019567255651, - "c3": 8.318170811415689, - "c4": 7.897252970786038, - "c5": 8.025923834568353, - "c6": 7.897050768499461, - "c7": 7.85807712321687 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938972, + "c3": 10.30975496994915, + "c4": 8.247803975959318, + "c5": 6.185852981969486, + "c6": 4.123901987979665, + "c7": 2.0619509939898326 }, "rgb": [77, 76, 132] }, @@ -240954,23 +240954,23 @@ "year": 1774, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -1.7672729373635292, - "c2": -30.168502189066697, - "c3": -1.0940877399396243, - "c4": 8.168621897694642, - "c5": -23.270668432879308, - "c6": -8.179240133172641, - "c7": -10.88647704190679 + "points": { + "c1": -38.18969876135624, + "c2": 21.2812622951124, + "c3": -24.038377514226276, + "c4": -26.608162475354156, + "c5": 31.070225799419845, + "c6": -40.010467494536094, + "c7": 24.44935407761939 }, - "vertexSeeds": { - "c1": 5.931891490288132, - "c2": 6.158418892743984, - "c3": 6.214039228276129, - "c4": 6.097908886432581, - "c5": 6.164816855118002, - "c6": 5.901428760221003, - "c7": 5.892572651752039 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [77, 76, 132] }, @@ -240981,23 +240981,23 @@ "year": 1773, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 13.49096211103473, - "c2": 12.222408664401872, - "c3": -4.331423526362194, - "c4": -25.230890004712144, - "c5": -22.027235023006337, - "c6": 24.964945161461994, - "c7": 6.3320903735376355 + "points": { + "c1": -7.878660745257548, + "c2": -8.61099010254291, + "c3": -22.139075075064973, + "c4": 3.6748832216825456, + "c5": 25.44512278985484, + "c6": -2.4165898707097533, + "c7": 25.18729414256317 }, - "vertexSeeds": { - "c1": 5.765901261369546, - "c2": 5.293638014919597, - "c3": 5.391479409255372, - "c4": 5.844310174363532, - "c5": 5.259260975220248, - "c6": 5.8036434874915965, - "c7": 5.469183631507232 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267685, + "c3": 7.050392972723073, + "c4": 5.640314378178461, + "c5": 4.23023578363385, + "c6": 2.820157189089223, + "c7": 1.4100785945446115 }, "rgb": [222, 0, 59] }, @@ -241008,23 +241008,23 @@ "year": 1774, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -2.5576989551099842, - "c2": 6.272462230416799, - "c3": 28.325173444448765, - "c4": -14.595416519354188, - "c5": 45.42844730979992, - "c6": -31.99513588722639, - "c7": 16.284503600620297 + "points": { + "c1": 0.6868660763227297, + "c2": -14.661768208068096, + "c3": 43.607685470685524, + "c4": -44.07178324700631, + "c5": -34.143685801286, + "c6": 25.056517313068497, + "c7": -23.688214385971104 }, - "vertexSeeds": { - "c1": 6.881913023676033, - "c2": 7.157378198177693, - "c3": 7.315785658504591, - "c4": 7.438000573149724, - "c5": 6.904039240626593, - "c6": 6.825847034930988, - "c7": 7.348931852956081 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485436, + "c3": 8.899676375404532, + "c4": 7.119741100323624, + "c5": 5.339805825242718, + "c6": 3.559870550161812, + "c7": 1.779935275080906 }, "rgb": [58, 15, 49] }, @@ -241035,23 +241035,23 @@ "year": 1773, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 12.63533732261007, - "c2": 17.587151132347344, - "c3": 22.034589765289446, - "c4": 4.780396573863548, - "c5": -2.000029196716973, - "c6": -8.16787680362825, - "c7": 15.16321159789181 + "points": { + "c1": -8.228570463435815, + "c2": 20.110691230271918, + "c3": 23.036242780982022, + "c4": 26.827744399810967, + "c5": 8.968688886607872, + "c6": 15.665520516912537, + "c7": -7.242480259882715 }, - "vertexSeeds": { - "c1": 3.0081339104008156, - "c2": 3.0803641959277046, - "c3": 3.111633100766981, - "c4": 3.293716272626628, - "c5": 3.2084167717721153, - "c6": 3.1190693890793617, - "c7": 3.0775597548292937 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [86, 146, 138] }, @@ -241062,23 +241062,23 @@ "year": 1774, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 19.775060863533568, - "c2": -36.37152370391826, - "c3": 15.19550312071297, - "c4": -22.83456934156083, - "c5": -19.94267688140994, - "c6": -29.00809465552074, - "c7": 0.2766906441763055 + "points": { + "c1": 36.41393575190201, + "c2": 13.880664603524451, + "c3": 19.060446118306345, + "c4": -26.19462884624936, + "c5": -12.856079482237664, + "c6": -1.53305831224948, + "c7": 6.81913505302029 }, - "vertexSeeds": { - "c1": 6.295214125041793, - "c2": 6.286226253580305, - "c3": 5.9595764673226315, - "c4": 6.380113678043035, - "c5": 6.259417512876919, - "c6": 6.769695887667418, - "c7": 6.767359650191294 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077667, + "c3": 8.090614886731398, + "c4": 6.472491909385116, + "c5": 4.854368932038834, + "c6": 3.2362459546925644, + "c7": 1.6181229773462822 }, "rgb": [86, 146, 138] }, @@ -241089,23 +241089,23 @@ "year": 1774, "resistanceReported": false, "duration": 43113600, - "curveSeeds": { - "c1": 55.714583624040216, - "c2": -32.82762869310733, - "c3": 20.47191133675298, - "c4": -26.37611067897, - "c5": -19.452626781834766, - "c6": 22.49227654298015, - "c7": 26.940385023786035 + "points": { + "c1": -10.16344697638079, + "c2": 13.296995112826622, + "c3": 37.2971193701285, + "c4": -41.32463628435835, + "c5": 35.37340951857533, + "c6": -58.71691556615451, + "c7": 4.965439815069615 }, - "vertexSeeds": { - "c1": 6.99757880184543, - "c2": 7.2586178987752525, - "c3": 7.072023937482506, - "c4": 7.305317248976332, - "c5": 7.417547484327023, - "c6": 6.808351891136928, - "c7": 7.4084555553950535 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -241116,23 +241116,23 @@ "year": 1774, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": 32.53324343682616, - "c2": 45.37055894679715, - "c3": 29.690470018819816, - "c4": -20.03526313805755, - "c5": -6.206761946865612, - "c6": -49.977594267183946, - "c7": -45.74038463552968 + "points": { + "c1": -50.46405610916601, + "c2": 12.217611928585235, + "c3": 55.61577651169046, + "c4": 36.45551626058917, + "c5": 28.90867846834373, + "c6": 43.32567853412561, + "c7": -30.481851700008836 }, - "vertexSeeds": { - "c1": 8.409329740351039, - "c2": 8.69978137760018, - "c3": 8.553510852991202, - "c4": 8.546273526170276, - "c5": 8.16210523729637, - "c6": 8.376508796430372, - "c7": 7.962575747976676 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140092, + "c3": 10.425335182616733, + "c4": 8.340268146093395, + "c5": 6.255201109570035, + "c6": 4.170134073046698, + "c7": 2.0850670365233586 }, "rgb": [222, 0, 59] }, @@ -241143,23 +241143,23 @@ "year": 1773, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 16.050773718484727, - "c2": -12.974322743611282, - "c3": -12.143409269463376, - "c4": -16.203596863179687, - "c5": 32.23481776956486, - "c6": -14.576624906696125, - "c7": 2.8586932129383626 + "points": { + "c1": 25.83359906408611, + "c2": -32.06608046175796, + "c3": 20.925881485198573, + "c4": -15.112052147935934, + "c5": 19.13374788932687, + "c6": 10.131616916062022, + "c7": -22.530748137544705 }, - "vertexSeeds": { - "c1": 3.0085805224703135, - "c2": 3.020770204093935, - "c3": 3.006836849413654, - "c4": 2.9993374323024335, - "c5": 2.998835248591404, - "c6": 2.999732453606067, - "c7": 3.0140379476216084 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355084, + "c3": 3.6523347202958787, + "c4": 2.9218677762367222, + "c5": 2.1914008321775174, + "c6": 1.4609338881183611, + "c7": 0.7304669440591564 }, "rgb": [222, 0, 59] }, @@ -241170,23 +241170,23 @@ "year": 1774, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": -5.794811934395533, - "c2": 3.795988176413516, - "c3": -42.47247122494081, - "c4": -44.3929668505884, - "c5": -30.56208063418479, - "c6": -15.151093332761686, - "c7": -10.673340999678317 + "points": { + "c1": 35.272372615122116, + "c2": -26.050801883063365, + "c3": -15.105088719161245, + "c4": -31.690783117719846, + "c5": -31.868117415590504, + "c6": -24.001363608056757, + "c7": 12.61156625510587 }, - "vertexSeeds": { - "c1": 11.96475889264426, - "c2": 11.615818335617945, - "c3": 11.449033197646791, - "c4": 10.984752237996176, - "c5": 11.888219059035498, - "c6": 11.357008457166925, - "c7": 11.202375460252965 + "offsets": { + "c1": 20.097087378640776, + "c2": 17.226074895977806, + "c3": 14.35506241331484, + "c4": 11.48404993065187, + "c5": 8.613037447988903, + "c6": 5.742024965325935, + "c7": 2.8710124826629677 }, "rgb": [86, 146, 138] }, @@ -241197,23 +241197,23 @@ "year": 1774, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -32.59308780300469, - "c2": 22.84768954774482, - "c3": 12.990416889915217, - "c4": -36.95076725983544, - "c5": 26.833786644064418, - "c6": -22.814275857589834, - "c7": 21.33390780106631 + "points": { + "c1": 11.508533539293914, + "c2": -18.048369842862314, + "c3": 42.995815712173425, + "c4": -42.70522698939981, + "c5": 15.109472345023278, + "c6": -42.43349646529071, + "c7": 26.279993519699346 }, - "vertexSeeds": { - "c1": 5.747410513846396, - "c2": 6.349824273481884, - "c3": 5.858057394984244, - "c4": 6.145283964059284, - "c5": 5.863299103057098, - "c6": 6.650292242031096, - "c7": 6.217208896092025 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -241224,23 +241224,23 @@ "year": 1774, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": -13.07533986943993, - "c2": -30.67154261767359, - "c3": 34.37975790152332, - "c4": -24.307749813240658, - "c5": -5.937108529260726, - "c6": -35.06582924566915, - "c7": 18.877240694500713 + "points": { + "c1": 9.979837813815479, + "c2": -12.070219187822936, + "c3": -21.67511025142425, + "c4": 11.3575178896224, + "c5": 8.375453235681597, + "c6": -44.63861565940452, + "c7": 41.514550642690764 }, - "vertexSeeds": { - "c1": 6.6595409244904324, - "c2": 6.735170612302548, - "c3": 6.947903167220082, - "c4": 6.908504975924071, - "c5": 6.908807681395081, - "c6": 6.255921749379777, - "c7": 6.907731060015311 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [86, 146, 138] }, @@ -241251,23 +241251,23 @@ "year": 1774, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 34.72910320329824, - "c2": 11.94807948003514, - "c3": 20.612269150953566, - "c4": -30.264394576575835, - "c5": -7.979749356212423, - "c6": -31.67915590417328, - "c7": -37.90030590314485 + "points": { + "c1": 9.287279980207252, + "c2": 19.424778228122854, + "c3": 37.43516333893167, + "c4": 7.942164699415862, + "c5": -31.630165044750854, + "c6": 12.108179266204253, + "c7": -33.63831217257041 }, - "vertexSeeds": { - "c1": 13.892458545285729, - "c2": 14.08253730537642, - "c3": 13.111411260587017, - "c4": 13.805864549498617, - "c5": 14.123457226121394, - "c6": 13.902829704578943, - "c7": 12.944643220643423 + "offsets": { + "c1": 23.915857605177994, + "c2": 20.499306518724005, + "c3": 17.082755432269995, + "c4": 13.666204345816004, + "c5": 10.24965325936199, + "c6": 6.833102172908002, + "c7": 3.4165510864539885 }, "rgb": [86, 146, 138] }, @@ -241278,23 +241278,23 @@ "year": 1774, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 3.618748439380127, - "c2": 21.865597199787018, - "c3": 0.3123997581932869, - "c4": -36.34168927621182, - "c5": 40.88182143292066, - "c6": 36.42982796657488, - "c7": -25.35603781766547 + "points": { + "c1": -6.8913752811682585, + "c2": -11.036275525359379, + "c3": -31.229457640065583, + "c4": -21.314267452736484, + "c5": 12.47710300179164, + "c6": 22.260873350185776, + "c7": 30.026665999396243 }, - "vertexSeeds": { - "c1": 6.8796082787620065, - "c2": 6.975435638964569, - "c3": 6.802733932512391, - "c4": 6.851818312733974, - "c5": 6.904912609288336, - "c6": 6.477865890788936, - "c7": 6.804628512430583 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640772, + "c3": 8.41423948220064, + "c4": 6.731391585760509, + "c5": 5.048543689320376, + "c6": 3.3656957928802647, + "c7": 1.6828478964401323 }, "rgb": [77, 76, 132] }, @@ -241305,23 +241305,23 @@ "year": 1774, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": 26.469818123876912, - "c2": -11.408787222567447, - "c3": 23.78303575906451, - "c4": -25.29086190397985, - "c5": 36.606146212842326, - "c6": 53.66171261308357, - "c7": -50.90164444375908 + "points": { + "c1": 53.10767303987409, + "c2": 44.14311754747123, + "c3": -20.599490590841526, + "c4": -26.702056196206186, + "c5": -29.78127335300734, + "c6": -39.189326636981335, + "c7": -34.9552470235616 }, - "vertexSeeds": { - "c1": 0.8792494042481526, - "c2": 0.9625995770685969, - "c3": 0.9851259826630774, - "c4": 0.8789040018169806, - "c5": 0.9605613405158219, - "c6": 0.9295508979291364, - "c7": 0.9027496285912934 + "offsets": { + "c1": 1.8770226537216828, + "c2": 1.6088765603328707, + "c3": 1.3407304669440592, + "c4": 1.0725843735552472, + "c5": 0.8044382801664354, + "c6": 0.5362921867776236, + "c7": 0.2681460933888118 }, "rgb": [58, 15, 49] }, @@ -241332,23 +241332,23 @@ "year": 1774, "resistanceReported": false, "duration": 45619200, - "curveSeeds": { - "c1": -40.33996390516655, - "c2": 33.144271997128826, - "c3": -48.8827299779628, - "c4": 39.03289907142053, - "c5": -36.5550522298864, - "c6": 18.871688372612283, - "c7": -7.480820754599549 + "points": { + "c1": 50.04480268365725, + "c2": 33.11362988597867, + "c3": 56.51750353202719, + "c4": 26.590170814531533, + "c5": 48.44100198837377, + "c6": 0.53102190926856, + "c7": 9.027902869021801 }, - "vertexSeeds": { - "c1": 7.792724644321625, - "c2": 7.62072935685505, - "c3": 7.82475245295394, - "c4": 7.631602851099474, - "c5": 7.325458431774054, - "c6": 7.608974687412359, - "c7": 7.808491283046893 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.20665742024965, + "c3": 9.33888118354137, + "c4": 7.471104946833091, + "c5": 5.603328710124811, + "c6": 3.7355524734165595, + "c7": 1.8677762367082797 }, "rgb": [77, 76, 132] }, @@ -241359,23 +241359,23 @@ "year": 1773, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -12.464446264873551, - "c2": 32.69355584975115, - "c3": 12.809185744277102, - "c4": 13.87886539547928, - "c5": 1.4928781198491592, - "c6": 20.593436515369234, - "c7": 23.482938407561306 + "points": { + "c1": -20.396687318218333, + "c2": -22.58802446532276, + "c3": 29.92752493830453, + "c4": -22.00139661686925, + "c5": -28.54772077622053, + "c6": 14.784267290722575, + "c7": 30.114818301041197 }, - "vertexSeeds": { - "c1": 7.4243480175948005, - "c2": 7.425610667087302, - "c3": 7.299109867873746, - "c4": 7.467443874645216, - "c5": 7.582428303497865, - "c6": 7.571520926811524, - "c7": 7.583970580652821 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128984, + "c3": 9.269533055940816, + "c4": 7.415626444752676, + "c5": 5.561719833564506, + "c6": 3.707813222376338, + "c7": 1.853906611188169 }, "rgb": [238, 201, 159] }, @@ -241386,23 +241386,23 @@ "year": 1774, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -26.218054866758667, - "c2": -20.186154000739986, - "c3": 2.433961611014034, - "c4": 40.38818166930804, - "c5": 16.148931082617345, - "c6": 32.91290685940838, - "c7": -35.69699717048975 + "points": { + "c1": 27.72010773954672, + "c2": 0.04737849883424872, + "c3": -37.084721996749195, + "c4": -21.29678803890141, + "c5": -37.72504822293782, + "c6": 35.67586232525849, + "c7": -16.961204508945343 }, - "vertexSeeds": { - "c1": 6.522337989479178, - "c2": 5.733286285439015, - "c3": 5.791066712030217, - "c4": 6.340676399609907, - "c5": 5.578654631954292, - "c6": 6.179419621680012, - "c7": 6.710247916557197 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -241413,23 +241413,23 @@ "year": 1774, "resistanceReported": false, "duration": 45878400, - "curveSeeds": { - "c1": -39.05095654471576, - "c2": -13.821935497435163, - "c3": -10.378400725113053, - "c4": -48.54287223646988, - "c5": 0.5555836724552208, - "c6": 50.81851328827124, - "c7": -30.383681033544743 + "points": { + "c1": -9.260945180018687, + "c2": 15.7212353662755, + "c3": -18.90291236831179, + "c4": 48.850958011313814, + "c5": -35.692606559785844, + "c6": 41.58782225915004, + "c7": -41.70047658630814 }, - "vertexSeeds": { - "c1": 3.570723233616146, - "c2": 3.503892701269807, - "c3": 3.9028315569738252, - "c4": 3.8985400587330363, - "c5": 3.5081343938669467, - "c6": 3.6992987877371575, - "c7": 4.04723639569238 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728154, + "c3": 5.016181229773465, + "c4": 4.0129449838187705, + "c5": 3.009708737864077, + "c6": 2.006472491909388, + "c7": 1.003236245954694 }, "rgb": [222, 0, 59] }, @@ -241440,23 +241440,23 @@ "year": 1775, "resistanceReported": false, "duration": 58579200, - "curveSeeds": { - "c1": -15.735863402594106, - "c2": 50.692545490467126, - "c3": -43.844550152257646, - "c4": -61.61678165459314, - "c5": -34.911899729369296, - "c6": -18.27454898210835, - "c7": -53.65832250838274 + "points": { + "c1": 63.25195863240326, + "c2": 33.937843457490686, + "c3": 50.04865453123779, + "c4": 30.635730097391217, + "c5": -10.648714846211291, + "c6": -24.635298405350888, + "c7": 9.210705445613215 }, - "vertexSeeds": { - "c1": 2.2625315796242336, - "c2": 2.674547533198163, - "c3": 2.5866459930391246, - "c4": 2.221118136617476, - "c5": 2.556092492011236, - "c6": 2.2631764565995116, - "c7": 2.3848159565520244 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.911234396671292, + "c3": 3.259361997226074, + "c4": 2.607489597780861, + "c5": 1.9556171983356434, + "c6": 1.3037447988904305, + "c7": 0.6518723994452128 }, "rgb": [58, 15, 49] }, @@ -241467,23 +241467,23 @@ "year": 1773, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -21.659343571841156, - "c2": -27.76953206523732, - "c3": -15.903834525934673, - "c4": 0.8879483687045919, - "c5": 6.634466882649818, - "c6": 17.324575444834174, - "c7": -28.2318443662758 + "points": { + "c1": -23.29016111866282, + "c2": 14.496451581366031, + "c3": -25.548506375639036, + "c4": -39.736275483879936, + "c5": 29.257667893250918, + "c6": -9.43519028024554, + "c7": 39.50012762111222 }, - "vertexSeeds": { - "c1": 4.448560758934315, - "c2": 5.164462028306092, - "c3": 4.1057535758010415, - "c4": 4.088861387536507, - "c5": 4.849711673338411, - "c6": 4.87464617432674, - "c7": 4.109100162053755 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -241494,23 +241494,23 @@ "year": 1774, "resistanceReported": false, "duration": 45532800, - "curveSeeds": { - "c1": -13.25322208419309, - "c2": 2.9024288554474467, - "c3": -46.26766346677633, - "c4": -20.885976574447255, - "c5": 22.795996652176832, - "c6": 41.77349232866465, - "c7": -9.259629306872412 + "points": { + "c1": -32.144719287802, + "c2": -14.689579406688054, + "c3": -46.75160258921928, + "c4": 38.015581514741946, + "c5": -53.633238994341326, + "c6": 10.413275495446136, + "c7": 37.29150503484886 }, - "vertexSeeds": { - "c1": 5.434634844288548, - "c2": 5.193890192210552, - "c3": 5.065245027486785, - "c4": 5.418960071404997, - "c5": 6.0388758507679805, - "c6": 5.428983613582446, - "c7": 5.789058893704714 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192324, + "c4": 5.899214054553863, + "c5": 4.4244105409153915, + "c6": 2.9496070272769317, + "c7": 1.4748035136384605 }, "rgb": [222, 0, 59] }, @@ -241521,23 +241521,23 @@ "year": 1774, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 15.691022513960448, - "c2": -11.175387803029757, - "c3": 21.70754069656914, - "c4": 1.3476319267219452, - "c5": -24.69647033635855, - "c6": -17.270647770037264, - "c7": -8.286686110429198 + "points": { + "c1": 15.021401501893259, + "c2": -21.698682557581737, + "c3": -34.559089801198716, + "c4": 24.252917808100584, + "c5": -9.397749720751094, + "c6": 19.423749389504714, + "c7": 27.540662279425327 }, - "vertexSeeds": { - "c1": 5.900373857745844, - "c2": 6.042041888348481, - "c3": 6.030258919920783, - "c4": 5.897025894621954, - "c5": 6.157202915041326, - "c6": 6.164048683420759, - "c7": 6.018636823422195 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [77, 76, 132] }, @@ -241548,23 +241548,23 @@ "year": 1774, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 37.541236244819196, - "c2": 8.359167644723833, - "c3": 6.106861440738555, - "c4": -19.475978025590525, - "c5": -12.27961487037414, - "c6": -12.057782041279957, - "c7": 29.24697997143435 + "points": { + "c1": -40.17619008244711, + "c2": -31.201673598115658, + "c3": 33.869652328429375, + "c4": -33.397997074828005, + "c5": 7.739035415764576, + "c6": -19.105921628661847, + "c7": -38.61492585347701 }, - "vertexSeeds": { - "c1": 6.92260677814456, - "c2": 7.0011313361403005, - "c3": 7.120214991288017, - "c4": 7.37261994416399, - "c5": 7.024410661331649, - "c6": 7.317803117327727, - "c7": 7.256741721508861 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -241575,23 +241575,23 @@ "year": 1774, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 6.377817748262622, - "c2": 4.631844069772889, - "c3": 30.97001302411614, - "c4": 3.100066398875626, - "c5": -12.874558966049605, - "c6": -14.885154559583526, - "c7": 42.59019773048904 + "points": { + "c1": 9.9044642670017, + "c2": -6.543336697591336, + "c3": -4.840734716375067, + "c4": 34.47541270205136, + "c5": -38.16825657297352, + "c6": 32.90737145726766, + "c7": 42.00310601338231 }, - "vertexSeeds": { - "c1": 3.9381144122366587, - "c2": 3.498449455768521, - "c3": 3.4306860909032038, - "c4": 4.025811118341775, - "c5": 3.5484851197285145, - "c6": 3.986116719269772, - "c7": 3.428585779216306 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [222, 0, 59] }, @@ -241602,23 +241602,23 @@ "year": 1773, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 9.906751729289972, - "c2": -25.752064906094855, - "c3": -13.001938459405796, - "c4": 27.156433599957637, - "c5": 10.424151993621912, - "c6": 9.910568425974084, - "c7": -24.20179766054811 + "points": { + "c1": 26.20283418266814, + "c2": -3.802532038974725, + "c3": 21.078557008923468, + "c4": 12.163337630688105, + "c5": -25.69377330277773, + "c6": -11.513717946071509, + "c7": -8.670380230311928 }, - "vertexSeeds": { - "c1": 3.273383153775375, - "c2": 3.2847974887498927, - "c3": 3.2624203881502183, - "c4": 3.0310273571567445, - "c5": 3.2083712964912583, - "c6": 3.313423572585579, - "c7": 3.299167483883449 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.02219140083218, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328672, + "c7": 0.8044382801664377 }, "rgb": [222, 0, 59] }, @@ -241629,23 +241629,23 @@ "year": 1774, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 12.960974673123282, - "c2": 13.845314069973135, - "c3": 22.039958849887014, - "c4": 2.868314231038987, - "c5": -2.8344017153586307, - "c6": 17.323152792008173, - "c7": -31.834201097982135 + "points": { + "c1": 37.876902243305814, + "c2": 28.017671287543656, + "c3": 13.766546004314044, + "c4": -33.263162456263466, + "c5": 39.38637815450702, + "c6": -23.378977129631718, + "c7": 17.08397733502376 }, - "vertexSeeds": { - "c1": 3.2232616881550338, - "c2": 3.615964309160576, - "c3": 3.3795970906200172, - "c4": 3.605936581859001, - "c5": 3.6180750109905397, - "c6": 3.3073542766675343, - "c7": 3.458275218105831 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.62320850670365, + "c4": 3.698566805362921, + "c5": 2.773925104022192, + "c6": 1.8492834026814629, + "c7": 0.9246417013407289 }, "rgb": [238, 201, 159] }, @@ -241656,23 +241656,23 @@ "year": 1774, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 30.099249256041077, - "c2": -22.62674261211143, - "c3": 12.530278208833622, - "c4": 13.060833178261078, - "c5": -4.473169509820011, - "c6": -34.01046505538718, - "c7": 24.701457187111245 + "points": { + "c1": 38.271741318906464, + "c2": -39.00742915735515, + "c3": -0.32546902665414734, + "c4": 40.71028785437433, + "c5": -14.33175906033873, + "c6": -11.900601528577905, + "c7": 10.96830869985267 }, - "vertexSeeds": { - "c1": 6.75050813216103, - "c2": 7.049304376128043, - "c3": 6.959886196896667, - "c4": 6.71680045969244, - "c5": 6.647391405772846, - "c6": 6.7486578640351125, - "c7": 6.70994722188315 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640769, + "c3": 8.414239482200658, + "c4": 6.731391585760521, + "c5": 5.048543689320384, + "c6": 3.365695792880275, + "c7": 1.6828478964401374 }, "rgb": [238, 201, 159] }, @@ -241683,23 +241683,23 @@ "year": 1774, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -4.1351973353509734, - "c2": 14.65840229907785, - "c3": -2.9559902970051652, - "c4": 21.813393007139148, - "c5": -34.885970145210756, - "c6": 28.67591693030665, - "c7": 35.81540692600132 + "points": { + "c1": -9.323778191025887, + "c2": 23.16593175670443, + "c3": 10.121439812295137, + "c4": 30.49283760379408, + "c5": 13.968771281202976, + "c6": 2.26476769069496, + "c7": -12.088201197295465 }, - "vertexSeeds": { - "c1": 6.113793043908983, - "c2": 5.662666844928218, - "c3": 5.6698120488961194, - "c4": 5.720243518357069, - "c5": 6.598362742255251, - "c6": 6.816603597845903, - "c7": 5.696210458907835 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -241710,23 +241710,23 @@ "year": 1774, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -5.424111219319894, - "c2": -14.900476260834811, - "c3": -27.722627199604364, - "c4": -9.921914001544192, - "c5": 14.882250401710223, - "c6": 0.38502567206316485, - "c7": 10.618703420006248 + "points": { + "c1": 32.25214331276781, + "c2": -1.9095913481568587, + "c3": -7.680434171699588, + "c4": 23.989807967794675, + "c5": 16.33222282467802, + "c6": 16.48373987413595, + "c7": -3.967020934233176 }, - "vertexSeeds": { - "c1": 6.503495849247799, - "c2": 6.546521260268264, - "c3": 5.651095096809134, - "c4": 6.141164421315673, - "c5": 6.142019035888743, - "c6": 6.189937539843215, - "c7": 5.858336384616878 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -241737,23 +241737,23 @@ "year": 1774, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 7.13820758415924, - "c2": 0.856664920514703, - "c3": 10.342277127021688, - "c4": -35.11856762529434, - "c5": 9.910161426112879, - "c6": 12.747072773766064, - "c7": -36.407892784874576 + "points": { + "c1": -6.210075799858288, + "c2": -25.305310633167956, + "c3": 29.630000721839124, + "c4": 41.85045869249727, + "c5": -38.24406611361854, + "c6": -8.655057149918925, + "c7": -38.96474442237438 }, - "vertexSeeds": { - "c1": 4.88752127408371, - "c2": 5.158277752273308, - "c3": 4.884271731497606, - "c4": 5.338420105453804, - "c5": 4.91369313951742, - "c6": 5.352786189148354, - "c7": 4.78276423303303 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141476, + "c3": 6.403143781784556, + "c4": 5.12251502542765, + "c5": 3.841886269070738, + "c6": 2.561257512713825, + "c7": 1.2806287563569125 }, "rgb": [58, 15, 49] }, @@ -241764,23 +241764,23 @@ "year": 1773, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -32.3094371327763, - "c2": -31.545094740977607, - "c3": 10.614533696465081, - "c4": -2.3887901510747653, - "c5": 25.588177921424347, - "c6": 27.475756549715832, - "c7": -7.323999313131537 + "points": { + "c1": -10.931807004906801, + "c2": -4.727324678481331, + "c3": 20.786996803959, + "c4": 17.510395740737096, + "c5": -34.01953062425653, + "c6": 14.171191729150863, + "c7": 22.467625847294975 }, - "vertexSeeds": { - "c1": 4.4235698986225405, - "c2": 4.642482836644617, - "c3": 4.382709415783255, - "c4": 4.2493923575963874, - "c5": 4.635910657026706, - "c6": 4.595759012005686, - "c7": 4.784079378570832 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -241791,23 +241791,23 @@ "year": 1774, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 2.985507583217597, - "c2": -19.02166913835752, - "c3": 4.655634224670543, - "c4": -23.267116916443854, - "c5": 7.500189767758329, - "c6": 36.26633606620129, - "c7": -25.869446715849342 + "points": { + "c1": -38.09297731378049, + "c2": -10.629425663132555, + "c3": -18.559541631235682, + "c4": 23.105451921557467, + "c5": 7.974860792280431, + "c6": 14.361732480851714, + "c7": 10.761703143804631 }, - "vertexSeeds": { - "c1": 1.6920630960280865, - "c2": 1.6234695667723922, - "c3": 1.621216332250247, - "c4": 1.5727280248863174, - "c5": 1.6132592672174164, - "c6": 1.5580196989267923, - "c7": 1.560310490116976 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619973, + "c3": 2.080443828016642, + "c4": 1.6643550624133145, + "c5": 1.2482662968099865, + "c6": 0.8321775312066588, + "c7": 0.4160887656033278 }, "rgb": [86, 146, 138] }, @@ -241818,23 +241818,23 @@ "year": 1774, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -16.421716588570497, - "c2": 8.948496183637168, - "c3": -8.432205267141558, - "c4": -33.50944604747069, - "c5": 12.62483489585999, - "c6": 11.872339258532293, - "c7": -10.366009069519155 + "points": { + "c1": -20.466227686374996, + "c2": 13.421199048506395, + "c3": -23.305932845620575, + "c4": -22.131324462321746, + "c5": 3.7081671910265683, + "c6": -33.456141463682265, + "c7": 23.418688142034007 }, - "vertexSeeds": { - "c1": 4.5822907679399885, - "c2": 4.6475741137569715, - "c3": 4.622757234576712, - "c4": 5.270674452371074, - "c5": 4.767676699432012, - "c6": 5.115928783501166, - "c7": 4.6226169859965385 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -241845,23 +241845,23 @@ "year": 1774, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -5.612041863596055, - "c2": 5.356666163486956, - "c3": -5.142459566437999, - "c4": -27.57422769432874, - "c5": -16.616422585077025, - "c6": 2.5785821873362664, - "c7": 9.05360685789018 + "points": { + "c1": 37.64187974941591, + "c2": -2.4824627308663523, + "c3": 5.501824206293364, + "c4": 32.475890516005705, + "c5": 36.5316089803968, + "c6": -18.25287077595008, + "c7": 5.552945260435564 }, - "vertexSeeds": { - "c1": 4.520010153733389, - "c2": 4.803101407392638, - "c3": 5.095521487082943, - "c4": 5.0895786310129205, - "c5": 5.010817519805655, - "c6": 4.79432508562285, - "c7": 4.856249398174929 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819691, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.730929264909849, + "c6": 2.487286176606568, + "c7": 1.2436430883032807 }, "rgb": [222, 0, 59] }, @@ -241872,23 +241872,23 @@ "year": 1773, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": 7.843554286156152, - "c2": 8.011734617869998, - "c3": 16.82403236159153, - "c4": -2.1266150937034354, - "c5": -16.314409889158675, - "c6": 20.62323030530366, - "c7": 11.344599528340137 + "points": { + "c1": 9.95626744401385, + "c2": -18.124421924918003, + "c3": -0.2688616010530289, + "c4": -13.042243829499869, + "c5": -9.782420906050069, + "c6": -8.935014523449912, + "c7": 20.621589847017855 }, - "vertexSeeds": { - "c1": 2.1840810975127924, - "c2": 2.1760757799232704, - "c3": 2.15535763009271, - "c4": 1.9808084485963904, - "c5": 2.424895469406168, - "c6": 2.388555288906003, - "c7": 2.002718348722766 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484043, + "c3": 2.9588534442903374, + "c4": 2.3670827554322695, + "c5": 1.7753120665742022, + "c6": 1.1835413777161348, + "c7": 0.5917706888580674 }, "rgb": [222, 0, 59] }, @@ -241899,23 +241899,23 @@ "year": 1773, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -2.941704033501228, - "c2": 4.60778514354454, - "c3": 1.1171702364334095, - "c4": 1.785256621975165, - "c5": -18.322071551434846, - "c6": -20.669484029615553, - "c7": -20.010369086645923 + "points": { + "c1": 2.1872055917052435, + "c2": -19.1916296907714, + "c3": -16.23846116341784, + "c4": -23.368120442514684, + "c5": -2.802715980544079, + "c6": 10.07044589969924, + "c7": 17.232630728965223 }, - "vertexSeeds": { - "c1": 3.097554876841449, - "c2": 3.1273797764175657, - "c3": 3.125616418934948, - "c4": 3.1140159203918194, - "c5": 3.091489253827041, - "c6": 3.10875749408591, - "c7": 3.0924284770072545 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515972, + "c3": 3.7447988904299265, + "c4": 2.995839112343956, + "c5": 2.246879334257986, + "c6": 1.497919556171941, + "c7": 0.7489597780859705 }, "rgb": [222, 0, 59] }, @@ -241926,23 +241926,23 @@ "year": 1774, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 20.24028073983409, - "c2": -8.972220224726307, - "c3": 10.097274602608373, - "c4": 6.799257785827692, - "c5": -1.550669148754423, - "c6": 6.610723991701491, - "c7": 25.361364929785324 + "points": { + "c1": 5.834687060776474, + "c2": 7.585392609397573, + "c3": 0.005266049570586517, + "c4": 6.937153035604588, + "c5": -24.051485294438855, + "c6": 4.551072292728897, + "c7": 11.342755176057558 }, - "vertexSeeds": { - "c1": 6.208439533034236, - "c2": 6.787314566736093, - "c3": 5.880344393017785, - "c4": 6.696994009809313, - "c5": 6.337562100825222, - "c6": 5.931606369680649, - "c7": 5.5579232713508295 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -241953,23 +241953,23 @@ "year": 1774, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": -11.51672370317337, - "c2": 37.14461919410002, - "c3": 21.914274367411622, - "c4": -9.905085793678523, - "c5": 37.53046036055473, - "c6": 21.797084028373263, - "c7": 16.458738285926373 + "points": { + "c1": -37.65218545919715, + "c2": 42.296828150198465, + "c3": 12.831554583706037, + "c4": -49.251963961022625, + "c5": -28.09572308296941, + "c6": 50.03189105254535, + "c7": -48.281428066974435 }, - "vertexSeeds": { - "c1": 8.225103565158717, - "c2": 8.304411500955617, - "c3": 8.70145784029868, - "c4": 8.389795429906192, - "c5": 8.388694858052727, - "c6": 8.656278942872255, - "c7": 8.208607063891273 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.51040221914007, + "c3": 10.425335182616738, + "c4": 8.34026814609338, + "c5": 6.2552011095700495, + "c6": 4.17013407304669, + "c7": 2.0850670365233306 }, "rgb": [77, 76, 132] }, @@ -241980,23 +241980,23 @@ "year": 1774, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 24.159868969140078, - "c2": -15.268764041666486, - "c3": 33.26962800891374, - "c4": -4.402569111504345, - "c5": -15.68153242917371, - "c6": 27.653511184283644, - "c7": 3.894733722174678 + "points": { + "c1": 5.725088220168274, + "c2": -7.7003438929225965, + "c3": -22.19867057090584, + "c4": -5.539526776743724, + "c5": 12.567958752119296, + "c6": -34.99243054177723, + "c7": 11.130198956008797 }, - "vertexSeeds": { - "c1": 2.232501620174412, - "c2": 2.1705346347290995, - "c3": 2.1234484970186327, - "c4": 2.013350235949962, - "c5": 2.228070300628189, - "c6": 2.2236184633519334, - "c7": 2.2169223118788692 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266295, + "c3": 2.773925104022192, + "c4": 2.2191400832177512, + "c5": 1.6643550624133132, + "c6": 1.1095700416088756, + "c7": 0.5547850208044378 }, "rgb": [238, 201, 159] }, @@ -242007,23 +242007,23 @@ "year": 1774, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -0.18176894549277733, - "c2": -22.400564454825258, - "c3": 3.7103311056143866, - "c4": 10.726161965967819, - "c5": -14.325559909470662, - "c6": -27.140330122121426, - "c7": -8.191658416445776 + "points": { + "c1": -35.895189583918416, + "c2": -18.279018345365753, + "c3": 10.198171612756681, + "c4": -11.575164297605173, + "c5": -24.382676509188855, + "c6": 24.801410305047654, + "c7": 3.3583148388381048 }, - "vertexSeeds": { - "c1": 4.558905464528283, - "c2": 4.311603795956078, - "c3": 4.237439366209482, - "c4": 4.739152649291626, - "c5": 4.674395635497104, - "c6": 4.750364672248084, - "c7": 4.462591457006674 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -242034,23 +242034,23 @@ "year": 1773, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 24.58141481839753, - "c2": -10.125401215153751, - "c3": 12.465896762968331, - "c4": 21.5347458015947, - "c5": 18.06990169395274, - "c6": -1.3929542047000396, - "c7": -19.36027064976635 + "points": { + "c1": 12.526201655130123, + "c2": -29.013899349877114, + "c3": -27.364271734922426, + "c4": 23.91714543826113, + "c5": 27.767625442884693, + "c6": 30.18521255358658, + "c7": 4.091391971603642 }, - "vertexSeeds": { - "c1": 4.038177760934218, - "c2": 3.8942456557130285, - "c3": 4.203443973477987, - "c4": 3.9519893442428033, - "c5": 3.981878996875603, - "c6": 3.855648790388125, - "c7": 4.068417231023176 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009707, + "c3": 5.177993527508091, + "c4": 4.142394822006471, + "c5": 3.1067961165048557, + "c6": 2.0711974110032356, + "c7": 1.0355987055016203 }, "rgb": [86, 146, 138] }, @@ -242061,23 +242061,23 @@ "year": 1774, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 18.727668040804623, - "c2": 10.4916974583684, - "c3": -8.528601285220521, - "c4": 38.908843393236445, - "c5": -18.34268909333018, - "c6": 36.334542022378024, - "c7": 23.396259035062883 + "points": { + "c1": -3.7192121112597363, + "c2": 20.666417691866656, + "c3": 32.18034579012238, + "c4": 12.993058781122116, + "c5": 27.168501882526506, + "c6": -16.844372714613147, + "c7": 11.277448371784068 }, - "vertexSeeds": { - "c1": 7.240663599293962, - "c2": 7.024715017814174, - "c3": 7.051416908865052, - "c4": 7.17558561631019, - "c5": 7.0782856867383, - "c6": 7.11449515983651, - "c7": 7.235628607892738 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -242088,23 +242088,23 @@ "year": 1773, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -26.884139465616755, - "c2": -24.696432754609845, - "c3": -18.806708128091596, - "c4": -19.153108837605146, - "c5": -8.698914361723872, - "c6": -12.571792349598102, - "c7": -29.877895503143204 + "points": { + "c1": 23.38510489674588, + "c2": 20.089187158305904, + "c3": 3.209828254806993, + "c4": 11.601107296334355, + "c5": -15.637603111929224, + "c6": 12.36002818876458, + "c7": -29.278210257839547 }, - "vertexSeeds": { - "c1": 6.579132576172418, - "c2": 6.990046249948049, - "c3": 6.781812205397065, - "c4": 6.269351152402876, - "c5": 7.307919505179783, - "c6": 6.934977010837313, - "c7": 6.257584618019004 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938053, + "c4": 7.13823393435044, + "c5": 5.353675450762828, + "c6": 3.569116967175215, + "c7": 1.784558483587613 }, "rgb": [238, 201, 159] }, @@ -242115,23 +242115,23 @@ "year": 1774, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 16.885336330666455, - "c2": -40.069216986730126, - "c3": -40.4118548253465, - "c4": 47.537504287502465, - "c5": -39.03736115306565, - "c6": -7.99314654654323, - "c7": -7.652203010580244 + "points": { + "c1": 37.47448048073225, + "c2": 51.44973215517563, + "c3": -6.531875955570911, + "c4": -4.526840844258743, + "c5": 44.63836213896118, + "c6": -21.213826259572713, + "c7": -13.065141531524255 }, - "vertexSeeds": { - "c1": 2.5779643491147244, - "c2": 2.5661039283392824, - "c3": 2.3836830254722345, - "c4": 2.3294843331867296, - "c5": 2.4644216051135954, - "c6": 2.3599843053422487, - "c7": 2.376741369448479 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [222, 0, 59] }, @@ -242142,23 +242142,23 @@ "year": 1773, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 9.518139884350113, - "c2": -8.26473559493375, - "c3": -14.393422079486479, - "c4": -2.523845856365746, - "c5": 4.756152486560943, - "c6": 11.037102246610473, - "c7": 7.838550230033491 + "points": { + "c1": 1.564958663776828, + "c2": 7.122056534261539, + "c3": -25.36323237643101, + "c4": 29.85827638973668, + "c5": -18.619535894208443, + "c6": 3.572809210627696, + "c7": 18.100590156686238 }, - "vertexSeeds": { - "c1": 2.6710364509649636, - "c2": 2.76234002235537, - "c3": 2.712257068346023, - "c4": 2.686545576712339, - "c5": 2.874308962552602, - "c6": 2.5904968523727963, - "c7": 2.799682166979488 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [77, 76, 132] }, @@ -242169,23 +242169,23 @@ "year": 1774, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -6.354581815615607, - "c2": -24.812417699488034, - "c3": -20.113058843286147, - "c4": 18.936101162056566, - "c5": -7.980784644587487, - "c6": -6.970965406355788, - "c7": -16.931867879689072 + "points": { + "c1": -2.8189753020440875, + "c2": -25.680498626746015, + "c3": 8.202433351712912, + "c4": -13.660065646221899, + "c5": 28.586262723439702, + "c6": 9.637878872846898, + "c7": 11.764412059313642 }, - "vertexSeeds": { - "c1": 1.771633315518473, - "c2": 1.9539842320953487, - "c3": 1.8563738214154504, - "c4": 1.828294968017136, - "c5": 1.87005992548988, - "c6": 1.8992314884674828, - "c7": 1.8424203534891013 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [77, 76, 132] }, @@ -242196,23 +242196,23 @@ "year": 1774, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -5.810356190236259, - "c2": 2.2801363875065306, - "c3": 3.5864823506260635, - "c4": 17.942266069875735, - "c5": 20.210400464100857, - "c6": -31.579023140733018, - "c7": 18.41157533854286 + "points": { + "c1": -27.917333655871197, + "c2": 12.23924419359188, + "c3": 27.196646732784004, + "c4": -10.950269887897328, + "c5": 17.06465608078382, + "c6": -5.297865436121651, + "c7": -9.351689966131957 }, - "vertexSeeds": { - "c1": 5.91769385997229, - "c2": 5.777230307470286, - "c3": 5.6586719741980405, - "c4": 6.319018961104147, - "c5": 6.726367443581666, - "c6": 6.675075078045859, - "c7": 5.961532968676991 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -242223,23 +242223,23 @@ "year": 1773, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -15.120000491335082, - "c2": 21.99227344494842, - "c3": 13.98546663677742, - "c4": -4.891296720869732, - "c5": -9.768754616759166, - "c6": 13.301562761661732, - "c7": -5.251966671045253 + "points": { + "c1": 13.989070363223409, + "c2": -11.749270544763318, + "c3": -16.07645683677501, + "c4": -1.7379299494504323, + "c5": -8.563411479349616, + "c6": -5.791120654323041, + "c7": -0.5324655400690794 }, - "vertexSeeds": { - "c1": 2.931337990605177, - "c2": 3.14916409578632, - "c3": 3.216304418354901, - "c4": 2.8622818267142036, - "c5": 3.0298847860704496, - "c6": 2.9809906186888147, - "c7": 3.3009620739780194 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998614, + "c3": 4.022191400832178, + "c4": 3.217753120665744, + "c5": 2.413314840499309, + "c6": 1.6088765603328694, + "c7": 0.8044382801664347 }, "rgb": [222, 0, 59] }, @@ -242250,23 +242250,23 @@ "year": 1774, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 17.114746799189838, - "c2": -21.369609292191363, - "c3": -1.1290774412336688, - "c4": -24.929702668015754, - "c5": -14.355892518188135, - "c6": -0.618179840259323, - "c7": 14.79270501807018 + "points": { + "c1": -8.835425684806587, + "c2": 2.389324306189586, + "c3": -11.511232942358369, + "c4": 10.779249764067842, + "c5": 24.13611945228658, + "c6": -4.2427220239584, + "c7": -25.64277467323338 }, - "vertexSeeds": { - "c1": 6.086469165404041, - "c2": 6.24195017060622, - "c3": 6.409274839100374, - "c4": 5.733681055857183, - "c5": 6.084444373207297, - "c6": 6.15830226205204, - "c7": 5.6224680796854685 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -242277,23 +242277,23 @@ "year": 1774, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -34.049763718937434, - "c2": -17.244247103152652, - "c3": -33.97773822735999, - "c4": -15.57332774398122, - "c5": -2.9264443561822873, - "c6": 14.47484777558747, - "c7": -29.969585955657685 + "points": { + "c1": 18.942607451407703, + "c2": -19.046568508668646, + "c3": -8.128770815487226, + "c4": -34.613139647308365, + "c5": -3.6462794223403066, + "c6": 26.21064490449504, + "c7": 34.802656459290674 }, - "vertexSeeds": { - "c1": 5.318817616319901, - "c2": 5.294457267037748, - "c3": 5.32512811412491, - "c4": 5.17731346139062, - "c5": 5.344522037737813, - "c6": 5.340227190925775, - "c7": 5.331812847882437 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221911, + "c3": 6.449375866851588, + "c4": 5.159500693481265, + "c5": 3.869625520110942, + "c6": 2.579750346740646, + "c7": 1.289875173370323 }, "rgb": [238, 201, 159] }, @@ -242304,23 +242304,23 @@ "year": 1775, "resistanceReported": true, "duration": 62121600, - "curveSeeds": { - "c1": 58.69032569970065, - "c2": 6.78915694221898, - "c3": -6.4008768962172695, - "c4": 0.22436726037130938, - "c5": -35.92238996716432, - "c6": -57.594879722404784, - "c7": -6.521799135739968 + "points": { + "c1": 70.83173074837185, + "c2": -77.4655418809112, + "c3": -61.74218270040599, + "c4": -50.703456732014544, + "c5": 62.09041676312944, + "c6": 67.94319312298228, + "c7": 54.19131348587695 }, - "vertexSeeds": { - "c1": 1.9745622533882938, - "c2": 1.943029769322086, - "c3": 1.9618190695462003, - "c4": 1.9561163711015417, - "c5": 1.9689647236917123, - "c6": 1.9614865720488954, - "c7": 1.9798496541282855 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142847, + "c3": 2.3809523809523845, + "c4": 1.904761904761898, + "c5": 1.4285714285714355, + "c6": 0.952380952380949, + "c7": 0.4761904761904864 }, "rgb": [222, 0, 59] }, @@ -242331,23 +242331,23 @@ "year": 1773, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -7.338617110726837, - "c2": -23.50655100116938, - "c3": -14.619738362558465, - "c4": -16.622653669100185, - "c5": -7.994143007212024, - "c6": 5.376787257987875, - "c7": 20.177135314701896 + "points": { + "c1": 17.672291881123698, + "c2": 12.266843840254346, + "c3": -28.122255028627126, + "c4": -15.585222403544922, + "c5": 5.64942060828551, + "c6": 24.549893762265057, + "c7": 16.326462302013603 }, - "vertexSeeds": { - "c1": 7.02821214297734, - "c2": 6.83686303986936, - "c3": 6.721404044994128, - "c4": 6.201436292679716, - "c5": 6.791421360988561, - "c6": 6.58348652159688, - "c7": 6.91775610645795 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [58, 15, 49] }, @@ -242358,23 +242358,23 @@ "year": 1774, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 29.750762527056196, - "c2": -6.3963730713457885, - "c3": -35.61796084393516, - "c4": 1.3606007338839987, - "c5": 0.04089850080566748, - "c6": 2.2034548030826286, - "c7": -14.550518929604266 + "points": { + "c1": -1.9171618225234184, + "c2": 28.73227902114283, + "c3": 2.379378367866771, + "c4": 3.078093797596374, + "c5": -26.40531560594617, + "c6": 15.856488610140104, + "c7": 2.347151525789762 }, - "vertexSeeds": { - "c1": 6.6883099280395655, - "c2": 6.529489995886054, - "c3": 6.605331014272429, - "c4": 6.62421455407441, - "c5": 6.950368421241211, - "c6": 6.5506391660127115, - "c7": 6.850387899479882 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439672, + "c3": 8.298659269533063, + "c4": 6.6389274156264575, + "c5": 4.97919556171985, + "c6": 3.3194637078132145, + "c7": 1.6597318539066073 }, "rgb": [77, 76, 132] }, @@ -242385,23 +242385,23 @@ "year": 1774, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -0.9326743925202905, - "c2": -6.445852823064811, - "c3": 27.382285107070494, - "c4": 31.829350270848877, - "c5": -2.0306324739380024, - "c6": 22.638751143701718, - "c7": -25.928843804940225 + "points": { + "c1": -5.3592019359294945, + "c2": -19.48711819428095, + "c3": -32.933294330358244, + "c4": 9.120248965236435, + "c5": 29.96867735939655, + "c6": -3.2300647007424956, + "c7": 29.559557849910945 }, - "vertexSeeds": { - "c1": 3.3926901612004854, - "c2": 3.314913903940529, - "c3": 3.3044263270637404, - "c4": 3.4489702162480733, - "c5": 3.4222028392929036, - "c6": 3.396775834911414, - "c7": 3.3111392288128694 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360606, + "c3": 4.230235783633848, + "c4": 3.384188626907075, + "c5": 2.538141470180303, + "c6": 1.6920943134535307, + "c7": 0.8460471567267724 }, "rgb": [58, 15, 49] }, @@ -242412,23 +242412,23 @@ "year": 1774, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 41.96687859396445, - "c2": 3.1649557711926164, - "c3": -28.297565149052865, - "c4": -31.26886635766765, - "c5": 20.831281493003274, - "c6": -43.257600760000216, - "c7": 44.20577249098585 + "points": { + "c1": 18.98427706709826, + "c2": 13.757289557452339, + "c3": 45.242058578418764, + "c4": 31.938009506537313, + "c5": 10.239299327294027, + "c6": -7.442344732950332, + "c7": -15.75980848219725 }, - "vertexSeeds": { - "c1": 8.370336509878575, - "c2": 8.914883524262448, - "c3": 8.964435853275106, - "c4": 8.749562020176963, - "c5": 8.399339500997451, - "c6": 8.442860442541772, - "c7": 8.7387298337732 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904297, + "c3": 10.864539990753583, + "c4": 8.691631992602865, + "c5": 6.518723994452149, + "c6": 4.3458159963014324, + "c7": 2.1729079981507162 }, "rgb": [238, 201, 159] }, @@ -242439,23 +242439,23 @@ "year": 1774, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -0.9469245042135057, - "c2": -15.61059264950714, - "c3": -31.77875974902516, - "c4": 14.772073820447552, - "c5": -5.901632651123236, - "c6": 1.2220484823297824, - "c7": 23.28013949844663 + "points": { + "c1": 28.235460433473065, + "c2": -10.788208323977788, + "c3": 21.88214930748879, + "c4": -10.34077862984277, + "c5": -15.94244461998662, + "c6": 21.854322568787858, + "c7": -5.779648576308446 }, - "vertexSeeds": { - "c1": 2.741688886421955, - "c2": 2.559580702033342, - "c3": 2.8515981377178674, - "c4": 2.5543618116599274, - "c5": 2.661865862495588, - "c6": 2.6616920395440595, - "c7": 2.7170433934295994 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [238, 201, 159] }, @@ -242466,23 +242466,23 @@ "year": 1774, "resistanceReported": false, "duration": 37843200, - "curveSeeds": { - "c1": 20.88840542167045, - "c2": 15.583526120493723, - "c3": 22.706677018736734, - "c4": -51.413608903361855, - "c5": -42.60039256598086, - "c6": 11.864030236912662, - "c7": -43.251603550051996 + "points": { + "c1": -38.084953192439194, + "c2": -32.987025574601034, + "c3": 1.4995520946144012, + "c4": 47.633086930341285, + "c5": -26.532007766614818, + "c6": -31.295181905084522, + "c7": -31.08567784126558 }, - "vertexSeeds": { - "c1": 3.5338761626120294, - "c2": 3.3512037838449147, - "c3": 3.2871619762475985, - "c4": 3.4351934687778836, - "c5": 3.3068662648011213, - "c6": 3.383961463478724, - "c7": 3.4049620654786077 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441055, + "c3": 4.276467868700881, + "c4": 3.4211742949607076, + "c5": 2.565880721220522, + "c6": 1.7105871474803482, + "c7": 0.8552935737401741 }, "rgb": [86, 146, 138] }, @@ -242493,23 +242493,23 @@ "year": 1773, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 3.1207772571557726, - "c2": 2.961830980029397, - "c3": -25.188316601732737, - "c4": 5.279838963119815, - "c5": -13.39588933728789, - "c6": 8.259625036206351, - "c7": 28.323008923375248 + "points": { + "c1": -22.922646597332296, + "c2": 22.367642051813725, + "c3": 12.033333606367037, + "c4": -1.7532120085548542, + "c5": 10.829694383091358, + "c6": -4.010516015732602, + "c7": 8.288222551510678 }, - "vertexSeeds": { - "c1": 2.1802218276152603, - "c2": 2.1932957978751895, - "c3": 2.1413451783572675, - "c4": 2.207001934659565, - "c5": 2.190653925054647, - "c6": 2.4285937724277544, - "c7": 2.2569913341579833 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.9819694868238558, + "c4": 2.3855755894590844, + "c5": 1.7891816920943133, + "c6": 1.1927877947295422, + "c7": 0.5963938973647711 }, "rgb": [58, 15, 49] }, @@ -242520,23 +242520,23 @@ "year": 1773, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -19.48014262239186, - "c2": -16.34402943120919, - "c3": 4.1115853287095945, - "c4": 14.417020181648788, - "c5": 5.875775381760107, - "c6": 20.655583725763393, - "c7": 15.401526388129746 + "points": { + "c1": 4.707848835168697, + "c2": -16.66685340043516, + "c3": -2.9645255753870465, + "c4": -12.609585987478937, + "c5": -2.7846013325401557, + "c6": -23.347551937120947, + "c7": 30.306219728996425 }, - "vertexSeeds": { - "c1": 3.0147318403245444, - "c2": 3.125359467304025, - "c3": 3.1280349696909333, - "c4": 2.9983290362792507, - "c5": 3.2355846089369207, - "c6": 3.109364299301951, - "c7": 3.167617041145731 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [58, 15, 49] }, @@ -242547,23 +242547,23 @@ "year": 1774, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 24.717817179323703, - "c2": 20.269998180480925, - "c3": -14.140307140777388, - "c4": 13.612960136262572, - "c5": 15.017389711069136, - "c6": -7.463744057719957, - "c7": 1.0496535542581782 + "points": { + "c1": 12.564171949370724, + "c2": 19.5851642174788, + "c3": 7.527957826643679, + "c4": -38.66488455149941, + "c5": -22.936670985255994, + "c6": 2.7522152474816437, + "c7": -40.995838289741094 }, - "vertexSeeds": { - "c1": 0.6533443635137733, - "c2": 0.6377628819912393, - "c3": 0.6534382611972396, - "c4": 0.6330177587209402, - "c5": 0.6352500783920167, - "c6": 0.6432956393284024, - "c7": 0.677475900198657 + "offsets": { + "c1": 1.197411003236246, + "c2": 1.0263522884882113, + "c3": 0.8552935737401762, + "c4": 0.6842348589921393, + "c5": 0.5131761442441045, + "c6": 0.34211742949606966, + "c7": 0.17105871474803483 }, "rgb": [222, 0, 59] }, @@ -242574,23 +242574,23 @@ "year": 1774, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 26.39914606980163, - "c2": 9.114884169934754, - "c3": -33.558917519077326, - "c4": 14.307424452999754, - "c5": -31.353574217870133, - "c6": 22.80229925633899, - "c7": 24.826514855066684 + "points": { + "c1": -10.295635403331612, + "c2": -8.070782596295185, + "c3": -8.15682887059392, + "c4": -20.724772507511183, + "c5": -2.0473758530608066, + "c6": 4.483990630355827, + "c7": 13.45207786658083 }, - "vertexSeeds": { - "c1": 4.684214631546978, - "c2": 5.180298786803285, - "c3": 4.59685526595994, - "c4": 4.755476928337877, - "c5": 4.85678128922153, - "c6": 5.012236098428329, - "c7": 4.540667877441926 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299554, + "c6": 2.4965325936199734, + "c7": 1.2482662968099818 }, "rgb": [77, 76, 132] }, @@ -242601,23 +242601,23 @@ "year": 1774, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 20.54847497386706, - "c2": -10.895562423782625, - "c3": -26.136774182795687, - "c4": -26.70473132244224, - "c5": 25.089773935439602, - "c6": 18.613634898607884, - "c7": 29.559446396417805 + "points": { + "c1": 12.854515639047882, + "c2": -3.9928890472453205, + "c3": -19.85325646398226, + "c4": -8.940996415029339, + "c5": 32.735253598331674, + "c6": 30.53661444617898, + "c7": 5.600259273741841 }, - "vertexSeeds": { - "c1": 3.1743777784259857, - "c2": 3.2264089303571337, - "c3": 2.9690409718162627, - "c4": 3.147670240560323, - "c5": 3.1907936509689763, - "c6": 3.286381314632229, - "c7": 3.206228498119682 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [58, 15, 49] }, @@ -242628,23 +242628,23 @@ "year": 1774, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -26.63882309207576, - "c2": -12.249456217884937, - "c3": 21.616017305702478, - "c4": -16.019994434823076, - "c5": 15.926171420804614, - "c6": 8.518663773057419, - "c7": -16.413631741548873 + "points": { + "c1": 19.17284008307969, + "c2": -17.64489277142733, + "c3": -8.841527430589093, + "c4": -1.8491133675770612, + "c5": 2.387415426739075, + "c6": 33.78695148939512, + "c7": -32.058772212469506 }, - "vertexSeeds": { - "c1": 7.6348714831603495, - "c2": 7.6115010733794675, - "c3": 7.493564760171239, - "c4": 7.500063359438422, - "c5": 7.588678269177757, - "c6": 7.524452604461129, - "c7": 7.747072507781998 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.09570041608875, + "c3": 9.246417013407308, + "c4": 7.3971336107258345, + "c5": 5.547850208044392, + "c6": 3.6985668053629173, + "c7": 1.849283402681475 }, "rgb": [238, 201, 159] }, @@ -242655,23 +242655,23 @@ "year": 1774, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 24.468174338546454, - "c2": -12.505563904924, - "c3": 12.892863941567065, - "c4": -19.980480529718836, - "c5": -21.786725835375112, - "c6": -14.959920329044138, - "c7": 21.616232921205828 + "points": { + "c1": 25.161839458169254, + "c2": 29.806075170354006, + "c3": -0.7847355537586012, + "c4": 7.344527378221571, + "c5": -28.36396621014819, + "c6": 33.71551126627723, + "c7": -20.70070500833278 }, - "vertexSeeds": { - "c1": 4.36577950482305, - "c2": 4.801893569500349, - "c3": 4.165833057997681, - "c4": 4.302790606439681, - "c5": 4.244239050786732, - "c6": 4.5543492444196225, - "c7": 4.469049173662203 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -242682,23 +242682,23 @@ "year": 1773, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -15.632256139528467, - "c2": -3.6423108558011776, - "c3": -5.5019139979361, - "c4": -11.479761192119646, - "c5": -5.552156535279895, - "c6": 7.04747295724891, - "c7": -14.766489962695221 + "points": { + "c1": -12.596241115604478, + "c2": -14.64241259673678, + "c3": -20.50596976575835, + "c4": 25.488903173659377, + "c5": -9.229438808051185, + "c6": -26.342350816587857, + "c7": -20.423293314402127 }, - "vertexSeeds": { - "c1": 9.509141210080777, - "c2": 9.610116454622808, - "c3": 9.834056397624437, - "c4": 9.28461697484178, - "c5": 9.65894274676468, - "c6": 9.365588243583092, - "c7": 9.261372793936003 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.091539528432726, + "c3": 11.742949607027267, + "c4": 9.394359685621836, + "c5": 7.045769764216377, + "c6": 4.697179842810918, + "c7": 2.348589921405459 }, "rgb": [238, 201, 159] }, @@ -242709,23 +242709,23 @@ "year": 1774, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -25.935913923939886, - "c2": -33.150590305773534, - "c3": -25.236838408287674, - "c4": 28.753172527322327, - "c5": -17.520141570591587, - "c6": -6.659793794805207, - "c7": -2.147652512240633 + "points": { + "c1": 1.5845694673327273, + "c2": -22.859374627155525, + "c3": -6.072402222042861, + "c4": -5.3474203867963865, + "c5": 17.195415101139567, + "c6": -24.33141129501177, + "c7": -24.150738703487356 }, - "vertexSeeds": { - "c1": 4.276697855491226, - "c2": 4.230955486934591, - "c3": 4.826533651674873, - "c4": 4.5916163330834685, - "c5": 4.279839267427587, - "c6": 4.295771522229435, - "c7": 4.069835608414061 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -242736,23 +242736,23 @@ "year": 1774, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -31.180523633137774, - "c2": -20.578925094025752, - "c3": -36.1573950763514, - "c4": 13.325154548030746, - "c5": 3.9593297672789873, - "c6": 11.738032000971572, - "c7": 16.96675690088525 + "points": { + "c1": 5.997864818830962, + "c2": 39.82406505127962, + "c3": -5.673508549508661, + "c4": -1.7166207580476467, + "c5": -36.24948219829505, + "c6": 28.31066466264876, + "c7": -27.484899065035663 }, - "vertexSeeds": { - "c1": 4.235642927976932, - "c2": 4.580885848550901, - "c3": 4.7829886140099775, - "c4": 4.209325714688109, - "c5": 4.804873555156938, - "c6": 4.523352066425539, - "c7": 4.109141911780251 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055476, + "c3": 5.779010633379568, + "c4": 4.623208506703652, + "c5": 3.467406380027738, + "c6": 2.3116042533518235, + "c7": 1.1558021266759146 }, "rgb": [77, 76, 132] }, @@ -242763,23 +242763,23 @@ "year": 1774, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 24.422262309607984, - "c2": -25.0591416953065, - "c3": 15.279598862413405, - "c4": 24.096255121471845, - "c5": -29.063296139818437, - "c6": 12.579076436340277, - "c7": 5.000973091081281 + "points": { + "c1": 13.04754822358288, + "c2": -16.268131579937013, + "c3": -17.666951049852976, + "c4": 15.25020667152669, + "c5": -8.439493249659481, + "c6": -24.70230604887418, + "c7": 2.1446586360653583 }, - "vertexSeeds": { - "c1": 5.076170526994207, - "c2": 5.222021650855018, - "c3": 5.742616362551908, - "c4": 5.603861005450096, - "c5": 5.248874169238236, - "c6": 5.218291306458407, - "c7": 5.735081268922915 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.957928802589002, + "c4": 5.566343042071199, + "c5": 4.174757281553396, + "c6": 2.783171521035593, + "c7": 1.3915857605178032 }, "rgb": [58, 15, 49] }, @@ -242790,23 +242790,23 @@ "year": 1774, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 14.61920922085805, - "c2": 11.075077325592101, - "c3": -0.710980105206346, - "c4": 23.713819375803748, - "c5": 28.714353093455518, - "c6": 26.39960266789424, - "c7": 15.902916818326826 + "points": { + "c1": -1.3882662517713946, + "c2": -3.0746728928827096, + "c3": -26.811822663959997, + "c4": -31.0538806481412, + "c5": 9.812308035912288, + "c6": 28.581374925847392, + "c7": -28.940839580712428 }, - "vertexSeeds": { - "c1": 4.5806614830085906, - "c2": 4.46494987362755, - "c3": 4.406903731966746, - "c4": 4.1580984979915785, - "c5": 4.658716067389488, - "c6": 4.465507210310139, - "c7": 4.6065827458520845 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693481, + "c3": 5.570966250577902, + "c4": 4.456773000462321, + "c5": 3.3425797503467405, + "c6": 2.2283865002311605, + "c7": 1.1141932501155802 }, "rgb": [238, 201, 159] }, @@ -242817,23 +242817,23 @@ "year": 1774, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 10.950299009551685, - "c2": -6.854191565449174, - "c3": -25.35731695926538, - "c4": -29.393337667719962, - "c5": -30.238619897342115, - "c6": -20.648182547377015, - "c7": 9.718958484247366 + "points": { + "c1": -13.550681184276819, + "c2": 23.982052366786967, + "c3": -14.014346659034452, + "c4": -4.8945329204956565, + "c5": 35.46158638990876, + "c6": 37.000984851437906, + "c7": 7.938718555286513 }, - "vertexSeeds": { - "c1": 4.725443399913853, - "c2": 5.313007584725831, - "c3": 5.308762986926559, - "c4": 4.491514843364455, - "c5": 5.231943521040458, - "c6": 4.7159464777992985, - "c7": 5.188759695743611 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382797, + "c3": 6.541840036985669, + "c4": 5.233472029588531, + "c5": 3.9251040221914035, + "c6": 2.6167360147942706, + "c7": 1.3083680073971378 }, "rgb": [86, 146, 138] }, @@ -242844,23 +242844,23 @@ "year": 1774, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -7.534009922322859, - "c2": 13.945125967519306, - "c3": 22.569716759523185, - "c4": -0.6080967005033457, - "c5": 26.97464039405447, - "c6": -9.352849990267234, - "c7": -20.969269911739033 + "points": { + "c1": -1.0250365237240224, + "c2": 7.855469114240279, + "c3": 31.724556404078072, + "c4": -32.542611015940324, + "c5": -31.65711362486919, + "c6": 28.581845539257948, + "c7": 16.202508121478594 }, - "vertexSeeds": { - "c1": 2.9899388207292015, - "c2": 3.291914864979131, - "c3": 3.0859519190465807, - "c4": 3.162521363327755, - "c5": 3.261341172417892, - "c6": 3.173528137386036, - "c7": 3.2006624578836758 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [77, 76, 132] }, @@ -242871,23 +242871,23 @@ "year": 1774, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -5.947335991811485, - "c2": -10.212614459346774, - "c3": -13.163864236531474, - "c4": 38.30105920419333, - "c5": -0.6948855028631797, - "c6": 22.02623109050034, - "c7": -28.482716480362917 + "points": { + "c1": 25.796558877918308, + "c2": 38.65282027885113, + "c3": -2.9550368198650148, + "c4": 9.442026712223438, + "c5": 31.40450158204495, + "c6": 42.844947425434746, + "c7": -40.20086560059779 }, - "vertexSeeds": { - "c1": 7.599234295717327, - "c2": 7.583992136878245, - "c3": 7.537496927851172, - "c4": 7.422600813636259, - "c5": 7.4847439254893615, - "c6": 7.273301257596656, - "c7": 7.355709096534365 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048539, + "c3": 9.223300970873778, + "c4": 7.378640776699045, + "c5": 5.533980582524284, + "c6": 3.6893203883495227, + "c7": 1.8446601941747613 }, "rgb": [238, 201, 159] }, @@ -242898,23 +242898,23 @@ "year": 1774, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -33.94800041146384, - "c2": 0.6165761230285725, - "c3": 1.6898964808504786, - "c4": -5.020438483289119, - "c5": -27.983303957645578, - "c6": 16.399377693217005, - "c7": 16.564466796723266 + "points": { + "c1": 30.274502381438367, + "c2": 21.099256092344426, + "c3": -2.442884815198518, + "c4": -9.973368429438281, + "c5": -25.566600541818595, + "c6": 34.717545397019535, + "c7": -26.937798213789545 }, - "vertexSeeds": { - "c1": 8.665668113516167, - "c2": 8.615095041979602, - "c3": 8.662603662392664, - "c4": 8.656142163269847, - "c5": 8.674167003837656, - "c6": 8.602349477018358, - "c7": 8.604407471933195 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059698, + "c3": 10.379103097549681, + "c4": 8.3032824780398, + "c5": 6.2274618585297805, + "c6": 4.1516412390199, + "c7": 2.075820619509881 }, "rgb": [238, 201, 159] }, @@ -242925,23 +242925,23 @@ "year": 1774, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -33.62255344166751, - "c2": 10.551251728063768, - "c3": 7.821934683454536, - "c4": 18.753202584828237, - "c5": -23.81886719589034, - "c6": 6.987659780593965, - "c7": -3.9068291098163463 + "points": { + "c1": -8.1958266814175, + "c2": -27.37689135994076, + "c3": 25.095358912446777, + "c4": -12.334487337268374, + "c5": -18.913298133110377, + "c6": -23.507344080131233, + "c7": 6.352834943960545 }, - "vertexSeeds": { - "c1": 7.270157522164965, - "c2": 7.518435915309822, - "c3": 7.532461390384374, - "c4": 7.352385322067376, - "c5": 7.523852597145296, - "c6": 7.341647312245021, - "c7": 7.470750421175838 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766977, + "c3": 9.061488673139175, + "c4": 7.249190938511332, + "c5": 5.436893203883488, + "c6": 3.6245954692556874, + "c7": 1.8122977346278437 }, "rgb": [238, 201, 159] }, @@ -242952,23 +242952,23 @@ "year": 1774, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -7.771337875378958, - "c2": -12.286045278152653, - "c3": -25.04898071637723, - "c4": 0.43982566688053026, - "c5": -12.525000561664317, - "c6": 34.27196204893798, - "c7": 34.65545499939809 + "points": { + "c1": -12.261720512548425, + "c2": -36.938134938450276, + "c3": -22.70023405573439, + "c4": 13.012041424524519, + "c5": 35.74517564324205, + "c6": -10.347518616082588, + "c7": -8.955596395720423 }, - "vertexSeeds": { - "c1": 3.786172506577419, - "c2": 3.623206723247286, - "c3": 3.9166776475295446, - "c4": 3.9634312258244098, - "c5": 3.7185901693037007, - "c6": 4.057158837396216, - "c7": 3.663635479264536 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446603, + "c3": 4.854368932038837, + "c4": 3.883495145631071, + "c5": 2.9126213592233055, + "c6": 1.9417475728155316, + "c7": 0.9708737864077658 }, "rgb": [58, 15, 49] }, @@ -242979,23 +242979,23 @@ "year": 1774, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 38.16655790207077, - "c2": 34.32865973865635, - "c3": 11.33881943498703, - "c4": 40.78145099595097, - "c5": 9.945537105085712, - "c6": 28.755990552871232, - "c7": 24.36009265119221 + "points": { + "c1": 44.41242718629477, + "c2": 30.785010600520685, + "c3": 3.117021317832581, + "c4": -47.20064464723389, + "c5": -11.557373054437157, + "c6": 39.28912562189412, + "c7": -13.207582925085639 }, - "vertexSeeds": { - "c1": 8.14092770429011, - "c2": 7.513621770281766, - "c3": 7.941921503426426, - "c4": 8.179517913779865, - "c5": 7.833147312586874, - "c6": 7.96366540733406, - "c7": 7.6716253713692 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013866, + "c3": 9.778085991678214, + "c4": 7.822468793342583, + "c5": 5.866851595006933, + "c6": 3.911234396671282, + "c7": 1.9556171983356307 }, "rgb": [58, 15, 49] }, @@ -243006,23 +243006,23 @@ "year": 1774, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 12.875785563119155, - "c2": 14.178839770887631, - "c3": 16.524780668934742, - "c4": 28.40696083546263, - "c5": -0.15037965019797284, - "c6": -21.419722221121653, - "c7": 13.76958275162944 + "points": { + "c1": -15.234544664672548, + "c2": -24.395160266630167, + "c3": -6.649560448984069, + "c4": -31.308866380903126, + "c5": 9.577626390003687, + "c6": -21.13600566757081, + "c7": -1.546736909940961 }, - "vertexSeeds": { - "c1": 6.7730883664559345, - "c2": 6.39218278334803, - "c3": 6.615091091215933, - "c4": 5.704551278388119, - "c5": 5.660595539624083, - "c6": 6.164354491936836, - "c7": 6.1353679375548795 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -243033,23 +243033,23 @@ "year": 1774, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -34.58814819964137, - "c2": -24.347770658504874, - "c3": -22.083568974875558, - "c4": -28.524683627236087, - "c5": -36.444325469934284, - "c6": 34.403828996940355, - "c7": -4.552081548364086 + "points": { + "c1": 23.29181392216764, + "c2": 5.309888899922086, + "c3": 24.589712586505236, + "c4": 39.63688862910325, + "c5": -5.2246111209896995, + "c6": 42.14467952884741, + "c7": 30.108887225513207 }, - "vertexSeeds": { - "c1": 8.192310782642384, - "c2": 8.194473834619252, - "c3": 8.155307317491113, - "c4": 7.916396563391772, - "c5": 8.080464004461785, - "c6": 7.889369442027315, - "c7": 8.157872738578606 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.011095700416087, + "c3": 10.009246417013408, + "c4": 8.007397133610725, + "c5": 6.0055478502080435, + "c6": 4.003698566805363, + "c7": 2.0018492834026813 }, "rgb": [86, 146, 138] }, @@ -243060,23 +243060,23 @@ "year": 1774, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": -25.00273841423424, - "c2": 22.305483890573086, - "c3": -26.38942035581612, - "c4": 3.4131077892735107, - "c5": 42.052847233679316, - "c6": 50.990164019884105, - "c7": 30.07686395187376 + "points": { + "c1": -45.9151971613446, + "c2": -16.11514400020299, + "c3": 4.874332599015588, + "c4": 5.864620685607356, + "c5": 20.79129737488165, + "c6": 16.357173082687993, + "c7": 13.718309764073425 }, - "vertexSeeds": { - "c1": 6.136035135148938, - "c2": 6.089611550778185, - "c3": 6.160925416809928, - "c4": 6.145450188415948, - "c5": 6.1634516100199015, - "c6": 6.187074676382006, - "c7": 6.183301429523382 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871057, + "c3": 7.397133610725831, + "c4": 5.917706888580704, + "c5": 4.438280166435479, + "c6": 2.958853444290352, + "c7": 1.479426722145127 }, "rgb": [238, 201, 159] }, @@ -243087,23 +243087,23 @@ "year": 1774, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -36.96905539463908, - "c2": -30.19183564897274, - "c3": 1.9746853718993833, - "c4": -32.12562230384234, - "c5": 39.60799076563607, - "c6": -35.745856282374234, - "c7": 27.972054085839467 + "points": { + "c1": 20.37488640570389, + "c2": -37.332420791148884, + "c3": 15.96915719966416, + "c4": 25.184640926050527, + "c5": 25.220479660064477, + "c6": 38.66222241669835, + "c7": 4.375577827100209 }, - "vertexSeeds": { - "c1": 5.256473609496853, - "c2": 5.173636785335579, - "c3": 5.150287139674298, - "c4": 5.300989647537337, - "c5": 5.3610186518918335, - "c6": 5.300339127330513, - "c7": 5.374136549569174 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385114, + "c4": 5.17799352750809, + "c5": 3.883495145631068, + "c6": 2.588996763754045, + "c7": 1.2944983818770226 }, "rgb": [58, 15, 49] }, @@ -243114,23 +243114,23 @@ "year": 1774, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -9.91348257692215, - "c2": 2.8061873190377042, - "c3": 6.44386440304709, - "c4": 20.285667708381897, - "c5": -4.995458268318682, - "c6": -14.717664421061501, - "c7": 12.059195151935736 + "points": { + "c1": -11.43499861921574, + "c2": -23.50913903654319, + "c3": -18.53722474792173, + "c4": 4.38740103265172, + "c5": -27.533982025651472, + "c6": -27.781394721879007, + "c7": -22.121959336479996 }, - "vertexSeeds": { - "c1": 2.003328292436292, - "c2": 1.8795997142463838, - "c3": 1.883157059206171, - "c4": 1.9968705465032301, - "c5": 1.9595213931430553, - "c6": 1.8362855641329174, - "c7": 2.0076713888541144 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037444, + "c3": 2.473416551086454, + "c4": 1.9787332408691631, + "c5": 1.4840499306518722, + "c6": 0.9893666204345816, + "c7": 0.4946833102172908 }, "rgb": [58, 15, 49] }, @@ -243141,23 +243141,23 @@ "year": 1774, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 16.409301989955694, - "c2": 0.9106856695843177, - "c3": -13.922952794784898, - "c4": 19.481395012689212, - "c5": 11.091743714727052, - "c6": -14.165192543429981, - "c7": -22.307976837641917 + "points": { + "c1": 22.805026149819824, + "c2": -10.216932894065128, + "c3": 13.898585048095534, + "c4": -38.3744685318652, + "c5": -25.91420779609338, + "c6": 9.10456134782212, + "c7": -14.428377221407956 }, - "vertexSeeds": { - "c1": 2.2854090083325436, - "c2": 2.409558868466979, - "c3": 2.3034755574930377, - "c4": 2.343687197572509, - "c5": 2.4413815825843708, - "c6": 2.2557665161973777, - "c7": 2.503973821533692 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.051317614424411, + "c3": 2.5427646786870075, + "c4": 2.0342117429496063, + "c5": 1.5256588072122055, + "c6": 1.0171058714748045, + "c7": 0.5085529357374011 }, "rgb": [77, 76, 132] }, @@ -243168,23 +243168,23 @@ "year": 1774, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 32.52135328067578, - "c2": -39.507589893522706, - "c3": -37.798869544515284, - "c4": -14.484426941783944, - "c5": 38.40030225523455, - "c6": -18.549660099233474, - "c7": -35.701085233517745 + "points": { + "c1": -12.477084861224991, + "c2": -37.51625145233982, + "c3": 22.460237302975756, + "c4": -38.433776368040384, + "c5": -5.858235914723629, + "c6": 22.135625744967257, + "c7": 31.039286145127235 }, - "vertexSeeds": { - "c1": 1.8460827048753894, - "c2": 1.942008056501927, - "c3": 1.8079635325527241, - "c4": 1.9024816796597095, - "c5": 1.893968479057948, - "c6": 1.8804887646483917, - "c7": 1.8848761956817401 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.801664355062411, + "c3": 2.334720295885345, + "c4": 1.867776236708274, + "c5": 1.4008321775312083, + "c6": 0.933888118354137, + "c7": 0.46694405917706594 }, "rgb": [86, 146, 138] }, @@ -243195,23 +243195,23 @@ "year": 1774, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": -52.365279703453886, - "c2": -10.481708556673262, - "c3": -17.9841694362624, - "c4": -1.1819551514653739, - "c5": 24.903645601109062, - "c6": 23.567921854404133, - "c7": -26.972743538898868 + "points": { + "c1": -7.912776859722449, + "c2": -11.332507573833162, + "c3": -22.944319906517684, + "c4": 22.79792008171522, + "c5": 1.8734154508286451, + "c6": 48.723433001524086, + "c7": -43.346040744401094 }, - "vertexSeeds": { - "c1": 5.431763913483223, - "c2": 5.395824933723228, - "c3": 5.189826521661375, - "c4": 5.184382272787519, - "c5": 5.259550968317512, - "c6": 5.33940079941368, - "c7": 5.188261295107938 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382811, + "c3": 6.541840036985656, + "c4": 5.23347202958853, + "c5": 3.9251040221914053, + "c6": 2.6167360147942795, + "c7": 1.3083680073971253 }, "rgb": [222, 0, 59] }, @@ -243222,23 +243222,23 @@ "year": 1774, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 21.209595797724262, - "c2": 2.0230134214699653, - "c3": -25.039364428729453, - "c4": 9.086358341194419, - "c5": 10.50816124380971, - "c6": -28.00352289489549, - "c7": 25.652435656266967 + "points": { + "c1": -22.50067452686121, + "c2": 11.794569003663838, + "c3": -29.574373047222895, + "c4": -22.914035162577065, + "c5": 14.91748372292139, + "c6": 3.158649638480803, + "c7": 13.32279245433891 }, - "vertexSeeds": { - "c1": 6.019730049695224, - "c2": 6.6961472715652555, - "c3": 6.204151768806406, - "c4": 6.100535495498324, - "c5": 6.3097498180356935, - "c6": 6.575296894316864, - "c7": 5.804780925305277 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -243249,23 +243249,23 @@ "year": 1774, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -29.251237836583133, - "c2": -14.572097804161501, - "c3": 4.009357824561377, - "c4": 43.83401661614032, - "c5": -21.299148267452054, - "c6": -37.52878144548185, - "c7": -39.823831306768916 + "points": { + "c1": 26.607436195453957, + "c2": 13.153457065816923, + "c3": 11.186955811626433, + "c4": -36.59913130710652, + "c5": 32.358059138382686, + "c6": 32.54056397639958, + "c7": -40.54262874428963 }, - "vertexSeeds": { - "c1": 3.8565547481389, - "c2": 3.6808649382164207, - "c3": 3.802680469871918, - "c4": 3.8876487801390067, - "c5": 3.673484550180497, - "c6": 3.923218777390614, - "c7": 3.825452686221184 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205266, + "c3": 4.715672676837728, + "c4": 3.7725381414701773, + "c5": 2.829403606102639, + "c6": 1.8862690707350886, + "c7": 0.9431345353675392 }, "rgb": [222, 0, 59] }, @@ -243276,23 +243276,23 @@ "year": 1774, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 17.16580411173353, - "c2": -2.010848028940714, - "c3": -23.198880114154754, - "c4": -20.803395116838015, - "c5": -22.99949002991658, - "c6": -26.07089471594834, - "c7": -13.161154984916209 + "points": { + "c1": 36.7091766283801, + "c2": -44.16095014368048, + "c3": 45.40793698191437, + "c4": 28.024646621199203, + "c5": -29.428790826915076, + "c6": -28.937918808416235, + "c7": 20.359843645170322 }, - "vertexSeeds": { - "c1": 8.172309272601652, - "c2": 8.275662331536342, - "c3": 8.547181629857844, - "c4": 8.4274661694431, - "c5": 8.715864782702534, - "c6": 8.61926774468308, - "c7": 8.46727467827424 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.649098474341189, + "c3": 10.54091539528432, + "c4": 8.432732316227474, + "c5": 6.324549237170604, + "c6": 4.216366158113737, + "c7": 2.1081830790568685 }, "rgb": [86, 146, 138] }, @@ -243303,23 +243303,23 @@ "year": 1774, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 1.772708188844284, - "c2": -15.422852110300337, - "c3": 25.05330569511038, - "c4": -17.37684832258717, - "c5": -19.608820480768888, - "c6": 18.16008998092292, - "c7": 17.012911226308283 + "points": { + "c1": 20.729291876631734, + "c2": -28.833715537663732, + "c3": 38.036127082937725, + "c4": 13.007009729561048, + "c5": 44.1438786415187, + "c6": 24.0325215110973, + "c7": -33.173187907598574 }, - "vertexSeeds": { - "c1": 5.855077737032609, - "c2": 5.8629687578749055, - "c3": 6.197682785904229, - "c4": 5.8225046574044805, - "c5": 5.859490307523497, - "c6": 6.292462735763027, - "c7": 5.766775200533978 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072113, + "c3": 7.512713823393437, + "c4": 6.010171058714741, + "c5": 4.507628294036067, + "c6": 3.0050855293573706, + "c7": 1.502542764678696 }, "rgb": [222, 0, 59] }, @@ -243330,23 +243330,23 @@ "year": 1774, "resistanceReported": false, "duration": 45532800, - "curveSeeds": { - "c1": 58.5801719833244, - "c2": -6.64088927407083, - "c3": 41.19206380008372, - "c4": 18.840859237801972, - "c5": 12.840877411933867, - "c6": -25.02587104484389, - "c7": 9.662407986859215 + "points": { + "c1": 56.006001768125195, + "c2": 57.80670251334552, + "c3": 16.650076531019927, + "c4": 27.89658407432352, + "c5": -58.07253543898625, + "c6": 27.089455902469417, + "c7": 46.692574936826155 }, - "vertexSeeds": { - "c1": 3.5530025108424708, - "c2": 3.453750678497095, - "c3": 4.014628740932957, - "c4": 3.7676734309408286, - "c5": 3.535674699444252, - "c6": 3.8130860369563133, - "c7": 4.062901435210829 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [58, 15, 49] }, @@ -243357,23 +243357,23 @@ "year": 1774, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -10.353081845007438, - "c2": 26.03778593268499, - "c3": -38.14309367864906, - "c4": 17.564518484120235, - "c5": 36.181508344983676, - "c6": -0.9161327232384835, - "c7": 9.611030093162256 + "points": { + "c1": 4.285401901136609, + "c2": -21.874017973973185, + "c3": 43.27250774289654, + "c4": -35.509534180892686, + "c5": -17.055892839692547, + "c6": 22.96089240364936, + "c7": -37.47879303681913 }, - "vertexSeeds": { - "c1": 1.0101204474518495, - "c2": 0.9668279479166906, - "c3": 1.0249964027672864, - "c4": 1.0153908408011887, - "c5": 1.0288457136002296, - "c6": 0.9491190798820591, - "c7": 0.9347224246315665 + "offsets": { + "c1": 1.7475728155339807, + "c2": 1.4979195561719831, + "c3": 1.2482662968099854, + "c4": 0.9986130374479879, + "c5": 0.7489597780859903, + "c6": 0.49930651872399523, + "c7": 0.24965325936199761 }, "rgb": [58, 15, 49] }, @@ -243384,23 +243384,23 @@ "year": 1773, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": -18.19077699629969, - "c2": 14.544479543999387, - "c3": 0.0628784838888059, - "c4": -9.100912844871626, - "c5": 8.053974678413056, - "c6": 15.449994934895287, - "c7": -17.412223985442704 + "points": { + "c1": -10.859217815299079, + "c2": -5.571964896881898, + "c3": 15.925960988805286, + "c4": -13.350910938732191, + "c5": 1.2740186354610081, + "c6": 5.887699528998308, + "c7": 2.1277368541356836 }, - "vertexSeeds": { - "c1": 2.9072108010964626, - "c2": 2.903763171968981, - "c3": 3.1937061034629246, - "c4": 3.2257450066059254, - "c5": 3.0270616759248914, - "c6": 3.2234903218910964, - "c7": 3.0658717854510757 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -243411,23 +243411,23 @@ "year": 1774, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 23.186340313487385, - "c2": -21.869555604257506, - "c3": 5.2106375836180305, - "c4": 35.159153797343045, - "c5": 5.754621786333395, - "c6": 26.568799280634998, - "c7": 30.60908327559239 + "points": { + "c1": 37.017366647305586, + "c2": -7.97123777966091, + "c3": 27.50581818894795, + "c4": -17.07430322792276, + "c5": -33.33680543996952, + "c6": -12.149447986719125, + "c7": 13.739211134289967 }, - "vertexSeeds": { - "c1": 3.7031799324070356, - "c2": 3.5126844412576808, - "c3": 3.7141202414614387, - "c4": 3.743831227053193, - "c5": 3.4582291704677584, - "c6": 3.421331666944001, - "c7": 3.617059222002011 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170131, + "c4": 3.6800739713361086, + "c5": 2.7600554785020797, + "c6": 1.840036985668051, + "c7": 0.9200184928340286 }, "rgb": [238, 201, 159] }, @@ -243438,23 +243438,23 @@ "year": 1774, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -32.260003105847545, - "c2": -38.073476775338825, - "c3": -30.48406295757749, - "c4": -0.19602060288916334, - "c5": -31.51900133357084, - "c6": -35.61345063144272, - "c7": 32.86598051855913 + "points": { + "c1": 0.45230803430894184, + "c2": -3.8053793535922367, + "c3": -37.4576490038259, + "c4": 3.353028100796152, + "c5": 11.419599155360693, + "c6": 36.81036708906615, + "c7": 6.6742334139858315 }, - "vertexSeeds": { - "c1": 7.176935727461403, - "c2": 6.814571798376897, - "c3": 7.042221806937413, - "c4": 6.901635878054469, - "c5": 6.885939954668273, - "c6": 7.4669914609345085, - "c7": 6.849786845463555 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -243465,23 +243465,23 @@ "year": 1774, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -0.9519593562179303, - "c2": 16.224400998950376, - "c3": 13.372869533314667, - "c4": -21.138863068285612, - "c5": -13.734806340974382, - "c6": -18.968412172365696, - "c7": -13.488887399454667 + "points": { + "c1": 25.174067256750245, + "c2": -3.018687893850167, + "c3": -6.855678501940719, + "c4": 26.38608350000634, + "c5": -15.48683527078198, + "c6": 8.308800534893326, + "c7": -9.634042044470338 }, - "vertexSeeds": { - "c1": 2.6601111690303734, - "c2": 2.7897718825759523, - "c3": 2.714940020763664, - "c4": 2.48994423787004, - "c5": 2.821891928087559, - "c6": 2.7430443148041452, - "c7": 2.8429263272161718 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -243492,23 +243492,23 @@ "year": 1775, "resistanceReported": false, "duration": 53740800, - "curveSeeds": { - "c1": -42.00178429324044, - "c2": 38.63562064129542, - "c3": 3.558339089412442, - "c4": 12.46175633400216, - "c5": 22.990977073156785, - "c6": 21.52997515374703, - "c7": 23.451457085705613 + "points": { + "c1": 5.7444693242057525, + "c2": -58.79814862437153, + "c3": 36.589449946218096, + "c4": -59.082707835514285, + "c5": 9.60250949448421, + "c6": -23.784241989755266, + "c7": -48.10296103081818 }, - "vertexSeeds": { - "c1": 5.702896771177674, - "c2": 5.541973225241238, - "c3": 5.477611241116556, - "c4": 5.42092970232109, - "c5": 5.637807599780452, - "c6": 5.733818124345403, - "c7": 5.573215275483114 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945905, + "c3": 6.865464632454915, + "c4": 5.492371705963927, + "c5": 4.119278779472938, + "c6": 2.746185852981978, + "c7": 1.373092926490989 }, "rgb": [77, 76, 132] }, @@ -243519,23 +243519,23 @@ "year": 1774, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 12.04482827839692, - "c2": -28.435310148905153, - "c3": -11.847856332396034, - "c4": -7.263246116939499, - "c5": 28.382072376327443, - "c6": -30.899573552076838, - "c7": 2.39947748795295 + "points": { + "c1": 37.77336270584182, + "c2": -41.58635960660782, + "c3": 6.971932427031241, + "c4": 14.545816850518833, + "c5": -42.31513542569752, + "c6": 0.8541582364293134, + "c7": -32.87351706795623 }, - "vertexSeeds": { - "c1": 4.592957475349669, - "c2": 4.479501006554545, - "c3": 4.112178371478895, - "c4": 4.614098452611816, - "c5": 4.546438185909848, - "c6": 4.144207473279613, - "c7": 4.502826975299726 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -243546,23 +243546,23 @@ "year": 1774, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -11.044450394547894, - "c2": 17.029189271278174, - "c3": -10.996091457887555, - "c4": 14.806111554012961, - "c5": 10.554160918355162, - "c6": -7.16205310783641, - "c7": -23.926446368885404 + "points": { + "c1": -0.14572810527653246, + "c2": -1.6957545687339142, + "c3": -20.497438734641428, + "c4": 10.320230657368253, + "c5": 15.048667982454052, + "c6": 6.22400198177969, + "c7": -13.816969293797676 }, - "vertexSeeds": { - "c1": 1.8604074340217782, - "c2": 1.8075335921745732, - "c3": 1.9051321768700114, - "c4": 1.8030725642258953, - "c5": 1.9136329299142694, - "c6": 1.8101932035436912, - "c7": 1.8697058950125327 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [86, 146, 138] }, @@ -243573,23 +243573,23 @@ "year": 1774, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -23.690228771316427, - "c2": -14.648879574015728, - "c3": -14.403508729410643, - "c4": 19.26788247620072, - "c5": 4.554961893260842, - "c6": -18.77974726003884, - "c7": -5.284446033463883 + "points": { + "c1": -20.5872042753849, + "c2": -12.708278621330695, + "c3": 18.811360586742293, + "c4": 22.727915635561207, + "c5": -2.715869984239742, + "c6": 28.656698064187875, + "c7": -24.441100954553413 }, - "vertexSeeds": { - "c1": 1.8908807812560398, - "c2": 1.7352344669587232, - "c3": 1.9492803536418974, - "c4": 1.9286924354433421, - "c5": 1.8070547562187003, - "c6": 1.9137531285129479, - "c7": 1.873540790447106 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635242, + "c3": 2.4503005085529357, + "c4": 1.9602404068423498, + "c5": 1.4701803051317606, + "c6": 0.9801202034211749, + "c7": 0.4900601017105859 }, "rgb": [238, 201, 159] }, @@ -243600,23 +243600,23 @@ "year": 1774, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -12.345753593409137, - "c2": 20.430765951266025, - "c3": 5.652426050300761, - "c4": -13.186549489280155, - "c5": 11.725385531895036, - "c6": 19.54911560491415, - "c7": -10.931567342527257 + "points": { + "c1": -7.680438804640083, + "c2": -19.051276272835857, + "c3": 27.52284530283594, + "c4": 5.367320258667341, + "c5": -26.060887307905546, + "c6": -18.120577106719985, + "c7": -23.324482358570275 }, - "vertexSeeds": { - "c1": 6.017095378963383, - "c2": 5.8416914866463285, - "c3": 5.349950419957705, - "c4": 5.516740750919567, - "c5": 6.042287470327027, - "c6": 5.91241428844134, - "c7": 6.097339061266436 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031903, + "c3": 7.489597780859912, + "c4": 5.9916782246879325, + "c5": 4.493758668515952, + "c6": 2.9958391123439596, + "c7": 1.4979195561719798 }, "rgb": [77, 76, 132] }, @@ -243627,23 +243627,23 @@ "year": 1774, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -22.878223562588474, - "c2": 35.415842735961455, - "c3": -21.284105457271743, - "c4": 32.660555743143526, - "c5": 3.2713717293392577, - "c6": 20.863925913147042, - "c7": -17.124255851984252 + "points": { + "c1": -27.00931557126755, + "c2": 4.950614071207305, + "c3": 2.4029956748557453, + "c4": -27.357766724785975, + "c5": 2.2636847463831202, + "c6": 6.838108453771028, + "c7": -9.219394244828813 }, - "vertexSeeds": { - "c1": 4.296668323017755, - "c2": 4.708413582293657, - "c3": 4.2457958176379345, - "c4": 4.465250369027839, - "c5": 4.808974730445011, - "c6": 4.227784161890395, - "c7": 4.457486485649517 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -243654,23 +243654,23 @@ "year": 1774, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -7.796066658742738, - "c2": -11.503763365399166, - "c3": 26.40400549780462, - "c4": -10.51864946794634, - "c5": -4.825387215585408, - "c6": 40.12039537931409, - "c7": -41.801487950179265 + "points": { + "c1": 4.908585504819143, + "c2": 33.449363472624825, + "c3": 32.27092675385019, + "c4": -22.097576872798758, + "c5": -39.99012552991159, + "c6": -44.7438292784188, + "c7": -11.978174633027876 }, - "vertexSeeds": { - "c1": 5.275265605813463, - "c2": 5.325269984800853, - "c3": 4.768906939973486, - "c4": 4.683650620186377, - "c5": 4.626494296708087, - "c6": 4.71919558756791, - "c7": 4.464302746580947 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342584, + "c3": 6.518723994452148, + "c4": 5.214979195561722, + "c5": 3.911234396671287, + "c6": 2.607489597780861, + "c7": 1.3037447988904256 }, "rgb": [77, 76, 132] }, @@ -243681,23 +243681,23 @@ "year": 1774, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -1.4788452539467087, - "c2": 24.93299734787061, - "c3": 18.613137476140835, - "c4": -21.264285431604417, - "c5": 0.04583540260706798, - "c6": 0.28858629011865844, - "c7": 13.795292101223474 + "points": { + "c1": -29.55724214615663, + "c2": 22.623072108620264, + "c3": 3.8144336870229054, + "c4": -31.870243004454082, + "c5": -41.447380538966165, + "c6": -31.81673798966849, + "c7": 19.43773974893893 }, - "vertexSeeds": { - "c1": 3.537199146850655, - "c2": 3.525652560004676, - "c3": 3.518812894355495, - "c4": 3.5863231288394393, - "c5": 3.968716792595913, - "c6": 3.4978094269011946, - "c7": 3.886737204973923 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366158, + "c3": 4.8081368469717995, + "c4": 3.846509477577439, + "c5": 2.884882108183079, + "c6": 1.9232547387887196, + "c7": 0.9616273693943598 }, "rgb": [222, 0, 59] }, @@ -243708,23 +243708,23 @@ "year": 1774, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 21.76879630982946, - "c2": -20.576098818968248, - "c3": 20.67966292898914, - "c4": 19.371652616746168, - "c5": -24.885691981364708, - "c6": -15.00778305065099, - "c7": 13.851238883749872 + "points": { + "c1": -22.774270587610147, + "c2": 17.508529975627987, + "c3": -18.419745753661957, + "c4": 15.424880837468699, + "c5": 1.178268955787729, + "c6": 9.30357616334311, + "c7": -31.436085299262388 }, - "vertexSeeds": { - "c1": 9.62390294054892, - "c2": 9.528975291376401, - "c3": 9.549804231887007, - "c4": 9.651687545981728, - "c5": 9.654819517114893, - "c6": 9.539929969596361, - "c7": 9.535957794484418 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070686, + "c3": 11.534905224225628, + "c4": 9.227924179380457, + "c5": 6.9209431345354, + "c6": 4.6139620896902285, + "c7": 2.3069810448451715 }, "rgb": [86, 146, 138] }, @@ -243735,23 +243735,23 @@ "year": 1773, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -22.703669931773234, - "c2": -7.4869276460114484, - "c3": -19.388494280405013, - "c4": -7.787547407706235, - "c5": 25.517032169268948, - "c6": 2.618024443536015, - "c7": -1.6153130856454858 + "points": { + "c1": 3.9608888564718896, + "c2": -26.261354106622615, + "c3": 27.40394055627576, + "c4": 0.2950037227731386, + "c5": -1.020723464450679, + "c6": 7.281858823064535, + "c7": 7.215186674636524 }, - "vertexSeeds": { - "c1": 3.6541948832753643, - "c2": 3.5437248780315582, - "c3": 3.684559929606507, - "c4": 3.541920920705325, - "c5": 3.280051856638657, - "c6": 3.219198212323219, - "c7": 3.483998912593017 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682383, + "c3": 4.415164123901989, + "c4": 3.5321312991215885, + "c5": 2.6490984743411947, + "c6": 1.7660656495607943, + "c7": 0.8830328247803937 }, "rgb": [77, 76, 132] }, @@ -243762,23 +243762,23 @@ "year": 1774, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 10.075076286689452, - "c2": 5.4796789017956264, - "c3": -19.4314238759433, - "c4": 17.139151491206462, - "c5": -18.34184147743563, - "c6": -16.332012981735964, - "c7": 0.34270225710123725 + "points": { + "c1": -11.783163047907735, + "c2": -2.1716556731300862, + "c3": 12.285782245430283, + "c4": 15.468414105238729, + "c5": 5.685292982393001, + "c6": 21.004700535264526, + "c7": 19.929111189797666 }, - "vertexSeeds": { - "c1": 3.9866039706373657, - "c2": 3.9694086636924015, - "c3": 4.443014842159369, - "c4": 4.327639997803872, - "c5": 3.879041631459286, - "c6": 4.044342018366814, - "c7": 4.446330312147515 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -243789,23 +243789,23 @@ "year": 1774, "resistanceReported": true, "duration": 27734400, - "curveSeeds": { - "c1": 38.350332249829336, - "c2": 0.7504723681166183, - "c3": -0.6834530831745482, - "c4": 7.09414388660327, - "c5": 37.557300760867506, - "c6": -30.879083854564385, - "c7": -26.42642746673382 + "points": { + "c1": -28.405985652732106, + "c2": 41.478821273756395, + "c3": -12.490372451387916, + "c4": 4.525447413268125, + "c5": 15.707093758497656, + "c6": -12.46370643565492, + "c7": -25.782176953949403 }, - "vertexSeeds": { - "c1": 2.2338023662587125, - "c2": 2.3096352659851953, - "c3": 2.1511249202578204, - "c4": 2.19600978340415, - "c5": 2.1908208085610212, - "c6": 2.28938057852249, - "c7": 2.2612038018454426 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.32871012482663, + "c3": 2.7739251040221924, + "c4": 2.2191400832177504, + "c5": 1.6643550624133123, + "c6": 1.1095700416088752, + "c7": 0.5547850208044376 }, "rgb": [86, 146, 138] }, @@ -243816,23 +243816,23 @@ "year": 1774, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -25.74355664395625, - "c2": -14.66198893239914, - "c3": 8.29218031080044, - "c4": 6.077307766041095, - "c5": -6.184728351361393, - "c6": -2.3937791970963502, - "c7": -14.336368842685621 + "points": { + "c1": -7.7545121180390595, + "c2": 15.678022205524108, + "c3": -21.751249708311466, + "c4": -16.712672376895952, + "c5": -11.8871974688664, + "c6": 19.257965916929436, + "c7": -11.71014433612206 }, - "vertexSeeds": { - "c1": 4.905755322868351, - "c2": 5.147421424522763, - "c3": 5.347029712136501, - "c4": 5.642727038330497, - "c5": 5.23368298628069, - "c6": 5.437661858151259, - "c7": 5.422706721110945 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055482, + "c4": 5.547850208044377, + "c5": 4.160887656033283, + "c6": 2.7739251040221884, + "c7": 1.3869625520110942 }, "rgb": [86, 146, 138] }, @@ -243843,23 +243843,23 @@ "year": 1775, "resistanceReported": false, "duration": 46137600, - "curveSeeds": { - "c1": -37.101000291957504, - "c2": -40.970826217430215, - "c3": 53.992235017356656, - "c4": 0.7509181096529502, - "c5": -1.5814453157580957, - "c6": -29.736420891035195, - "c7": -19.52208580968842 + "points": { + "c1": 39.73870831144978, + "c2": 22.340019289759063, + "c3": 29.247292952029973, + "c4": 0.08355559135922874, + "c5": -40.62276449015556, + "c6": 60.93249799662798, + "c7": -17.67239668220155 }, - "vertexSeeds": { - "c1": 2.7703184677343877, - "c2": 2.5463087620833864, - "c3": 2.7141258020707797, - "c4": 2.642800661375883, - "c5": 2.782281264879633, - "c6": 2.542393935523719, - "c7": 2.565245486480337 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [58, 15, 49] }, @@ -243870,23 +243870,23 @@ "year": 1774, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -40.39040561588329, - "c2": -30.910059878580324, - "c3": -28.485918545258272, - "c4": 18.92935670337726, - "c5": 13.03356819571107, - "c6": 4.3446830939350605, - "c7": -10.750970714577296 + "points": { + "c1": 5.343650117801175, + "c2": -37.6666977794348, + "c3": -42.3386559499511, + "c4": -22.047892600574063, + "c5": -30.63506589402457, + "c6": 12.783948579479663, + "c7": -13.75979120872221 }, - "vertexSeeds": { - "c1": 5.2921594052350365, - "c2": 5.614733921244866, - "c3": 5.500218067275935, - "c4": 5.477060993002251, - "c5": 5.135790094884565, - "c6": 5.531465020909226, - "c7": 5.196871411218922 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.23855755894591, + "c3": 6.865464632454929, + "c4": 5.492371705963945, + "c5": 4.119278779472962, + "c6": 2.7461858529819656, + "c7": 1.3730929264909828 }, "rgb": [77, 76, 132] }, @@ -243897,23 +243897,23 @@ "year": 1774, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -5.986451175585707, - "c2": -34.14312830863886, - "c3": 5.224186173584144, - "c4": -25.17409096125355, - "c5": -28.8803018785248, - "c6": 16.820011016643598, - "c7": 0.3522786573399941 + "points": { + "c1": -5.546070030196404, + "c2": 14.239235939074824, + "c3": -15.153277033375353, + "c4": -12.098181570180301, + "c5": -34.829142937289475, + "c6": -18.111129626826948, + "c7": 25.717955458490792 }, - "vertexSeeds": { - "c1": 1.751917915891486, - "c2": 1.8809874550167678, - "c3": 1.765676840421199, - "c4": 1.8466107395979816, - "c5": 1.936140573410257, - "c6": 1.9167307521724515, - "c7": 1.756084470347851 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.3347202958853472, + "c4": 1.867776236708275, + "c5": 1.4008321775312074, + "c6": 0.9338881183541395, + "c7": 0.46694405917707194 }, "rgb": [58, 15, 49] }, @@ -243924,23 +243924,23 @@ "year": 1774, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 8.5670602329604, - "c2": 28.29464496575396, - "c3": 37.572920454137616, - "c4": 11.008382999853751, - "c5": 22.17015848354619, - "c6": -5.476246001216822, - "c7": 24.43165586889728 + "points": { + "c1": 22.296237158560388, + "c2": 9.631956920585331, + "c3": 19.919377456014125, + "c4": 4.768018854387158, + "c5": 37.448261413648936, + "c6": -39.01812899146203, + "c7": 4.386239623661197 }, - "vertexSeeds": { - "c1": 11.36874858549003, - "c2": 11.575481720238631, - "c3": 10.910458948735904, - "c4": 10.608799267446994, - "c5": 11.238365785505426, - "c6": 11.580507116227729, - "c7": 11.361219845148803 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.588072122052726, + "c3": 13.823393435043915, + "c4": 11.058714748035149, + "c5": 8.294036061026341, + "c6": 5.529357374017574, + "c7": 2.764678687008767 }, "rgb": [238, 201, 159] }, @@ -243951,23 +243951,23 @@ "year": 1774, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 26.97493231105716, - "c2": 5.165663855029763, - "c3": -13.011790312337546, - "c4": -28.094134205285293, - "c5": -40.96612646923013, - "c6": 27.63787694500884, - "c7": -31.18587329189107 + "points": { + "c1": -12.369692566722826, + "c2": 39.95383234772058, + "c3": 16.94845395662668, + "c4": -32.49899288457527, + "c5": 9.0022078262719, + "c6": 37.68990822675616, + "c7": -33.116043168069744 }, - "vertexSeeds": { - "c1": 0.7778617133665784, - "c2": 0.7114136183520257, - "c3": 0.7114448163634882, - "c4": 0.7678915680596075, - "c5": 0.7573059973509233, - "c6": 0.7708489103037196, - "c7": 0.7828678638477958 + "offsets": { + "c1": 1.3592233009708738, + "c2": 1.1650485436893203, + "c3": 0.9708737864077664, + "c4": 0.7766990291262148, + "c5": 0.582524271844661, + "c6": 0.3883495145631074, + "c7": 0.1941747572815537 }, "rgb": [238, 201, 159] }, @@ -243978,23 +243978,23 @@ "year": 1774, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 24.159748560544298, - "c2": -10.479803122397191, - "c3": -1.2564713590104404, - "c4": 14.581705249260484, - "c5": -10.196372179486254, - "c6": 23.075616118665753, - "c7": 23.021633453584403 + "points": { + "c1": 20.327059469886724, + "c2": 6.841581837616797, + "c3": -26.394713388037292, + "c4": -6.400794989641856, + "c5": -10.000359907107857, + "c6": -5.171074207051902, + "c7": 15.22931257337829 }, - "vertexSeeds": { - "c1": 7.903624686126607, - "c2": 7.6245083590462235, - "c3": 8.365366717568769, - "c4": 8.270797136406552, - "c5": 8.209942575107787, - "c6": 7.5970203749783485, - "c7": 8.04690855169619 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496529, + "c3": 10.055478502080451, + "c4": 8.044382801664359, + "c5": 6.0332871012482645, + "c6": 4.022191400832172, + "c7": 2.0110957004160928 }, "rgb": [77, 76, 132] }, @@ -244005,23 +244005,23 @@ "year": 1775, "resistanceReported": false, "duration": 45532800, - "curveSeeds": { - "c1": -15.312299285000229, - "c2": -7.429450397069495, - "c3": -19.95023848216325, - "c4": -1.917400058981542, - "c5": -20.42509196804391, - "c6": -47.36061138033827, - "c7": -13.467226910776105 + "points": { + "c1": -23.217478547956084, + "c2": -12.933973491369848, + "c3": -55.2141596059728, + "c4": 10.39382324706984, + "c5": -35.70892634734986, + "c6": -52.355702670991626, + "c7": -52.35129783199427 }, - "vertexSeeds": { - "c1": 2.9637611136065787, - "c2": 3.0293086357106533, - "c3": 2.9937508983910344, - "c4": 2.992308477977739, - "c5": 3.1935248978875705, - "c6": 3.0227569918243384, - "c7": 3.1320921111304743 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [222, 0, 59] }, @@ -244032,23 +244032,23 @@ "year": 1774, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -15.981816028120484, - "c2": -10.543277375337944, - "c3": 15.976702112426999, - "c4": -10.290923206641477, - "c5": 16.173308242834622, - "c6": -12.183160962051323, - "c7": 8.906669423389388 + "points": { + "c1": -21.85228566359619, + "c2": 16.0281493699271, + "c3": 15.376238379044523, + "c4": -18.201342533099805, + "c5": -1.6819100689049193, + "c6": -7.45201008983047, + "c7": 11.446989061992838 }, - "vertexSeeds": { - "c1": 4.265421072465989, - "c2": 5.296673236181042, - "c3": 4.740208466685757, - "c4": 4.33200157247801, - "c5": 4.9345676076385905, - "c6": 4.232351998106605, - "c7": 4.84719273106664 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -244059,23 +244059,23 @@ "year": 1774, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 18.276977334441526, - "c2": -0.5088247588890091, - "c3": -5.316913464355675, - "c4": 12.09079733229656, - "c5": 0.1844097220978007, - "c6": 3.935679283057013, - "c7": -2.8969184575269544 + "points": { + "c1": -2.1119389714479233, + "c2": -24.25093602961391, + "c3": -13.400363941355465, + "c4": 7.419598564503481, + "c5": -15.188148664345825, + "c6": -16.25680118234206, + "c7": 2.036573023868602 }, - "vertexSeeds": { - "c1": 1.5194803967641568, - "c2": 1.3202447573282838, - "c3": 1.4940678601688546, - "c4": 1.3549588806042967, - "c5": 1.5284994997203492, - "c6": 1.346134604123651, - "c7": 1.433183902635313 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [222, 0, 59] }, @@ -244086,23 +244086,23 @@ "year": 1774, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 11.00036806435432, - "c2": -10.236797847359046, - "c3": -1.1786776356828526, - "c4": -2.5839403241554066, - "c5": -22.694084475183974, - "c6": -2.18292314311606, - "c7": 20.116759201831528 + "points": { + "c1": -14.926440140425358, + "c2": 23.329680790346806, + "c3": -13.638459075301801, + "c4": 16.548884538571528, + "c5": 24.403823349019873, + "c6": -26.20279784793449, + "c7": -6.672813518220067 }, - "vertexSeeds": { - "c1": 2.877052017143646, - "c2": 2.7582910209569023, - "c3": 2.9050098623308016, - "c4": 3.0358525644617136, - "c5": 3.0049385263272437, - "c6": 2.7984375062002074, - "c7": 2.9072800874383002 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355065, + "c3": 3.6523347202958822, + "c4": 2.921867776236707, + "c5": 2.1914008321775325, + "c6": 1.4609338881183576, + "c7": 0.7304669440591748 }, "rgb": [77, 76, 132] }, @@ -244113,23 +244113,23 @@ "year": 1774, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 15.757506027010784, - "c2": 8.720914123903839, - "c3": 1.0156686026958894, - "c4": -32.176553051407616, - "c5": 31.99026641120743, - "c6": -9.64784112651305, - "c7": -28.145471436375697 + "points": { + "c1": -25.08547797880346, + "c2": -8.038950622673148, + "c3": -6.865695813167896, + "c4": 10.532464544725684, + "c5": 28.892851887466634, + "c6": 16.484541494114907, + "c7": -21.991431959569585 }, - "vertexSeeds": { - "c1": 2.0543992170334264, - "c2": 2.0340378998221627, - "c3": 2.0874301285189754, - "c4": 2.1666400868937474, - "c5": 2.166642016464748, - "c6": 2.258371431045859, - "c7": 2.1604041932036573 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746185, + "c3": 2.7276930189551565, + "c4": 2.1821544151641246, + "c5": 1.6366158113730924, + "c6": 1.0910772075820603, + "c7": 0.545538603791032 }, "rgb": [238, 201, 159] }, @@ -244140,23 +244140,23 @@ "year": 1774, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 22.38141137787023, - "c2": 16.934488183031448, - "c3": 11.188181223873158, - "c4": -7.910711922455569, - "c5": -10.960653015455174, - "c6": -12.68379234867784, - "c7": 6.875775126504713 + "points": { + "c1": 1.6774489242384938, + "c2": -9.997872382805674, + "c3": 10.951425490729093, + "c4": -1.8806170276988787, + "c5": 7.6588912664760045, + "c6": 24.341237380684213, + "c7": -1.1010748415792087 }, - "vertexSeeds": { - "c1": 5.9418889506719115, - "c2": 6.635298093675324, - "c3": 5.756222480492103, - "c4": 6.088969509922092, - "c5": 6.807204285302073, - "c6": 6.187263040697367, - "c7": 6.264254968029829 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [58, 15, 49] }, @@ -244167,23 +244167,23 @@ "year": 1774, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 2.5441494289370468, - "c2": -17.335443432347702, - "c3": 28.809643976856904, - "c4": 38.943855159998336, - "c5": -19.788295174421297, - "c6": -31.977169524773913, - "c7": 6.499811139583308 + "points": { + "c1": 19.662653286277077, + "c2": -24.342041773302192, + "c3": -16.26663649641315, + "c4": -22.933697760028227, + "c5": -17.83500936649127, + "c6": -31.572603959876155, + "c7": -37.19551909827289 }, - "vertexSeeds": { - "c1": 11.895745149065345, - "c2": 12.054948429499785, - "c3": 12.011901112272941, - "c4": 11.978945087765474, - "c5": 11.895796788338219, - "c6": 11.969743207816576, - "c7": 12.102249375514335 + "offsets": { + "c1": 20.258899676375407, + "c2": 17.3647711511789, + "c3": 14.470642625982396, + "c4": 11.576514100785888, + "c5": 8.682385575589382, + "c6": 5.788257050393012, + "c7": 2.894128525196506 }, "rgb": [77, 76, 132] }, @@ -244194,23 +244194,23 @@ "year": 1774, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 3.678609604753632, - "c2": -29.114486547174735, - "c3": -27.859875614384492, - "c4": 29.66292232458722, - "c5": -27.95851017127015, - "c6": 32.098951166625426, - "c7": -4.361761792976576 + "points": { + "c1": -20.320550351530155, + "c2": 13.075960561412153, + "c3": -2.554077239239966, + "c4": 30.313815236163677, + "c5": -32.665692401260124, + "c6": 11.362777312893385, + "c7": -3.676186685666842 }, - "vertexSeeds": { - "c1": 3.8301102688807855, - "c2": 3.8048428083942682, - "c3": 3.879995086025388, - "c4": 3.7477109248967473, - "c5": 3.7533962302788297, - "c6": 3.844399611940101, - "c7": 3.8694238431671013 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124833, + "c3": 4.66944059177068, + "c4": 3.735552473416548, + "c5": 2.8016643550624165, + "c6": 1.8677762367082638, + "c7": 0.9338881183541319 }, "rgb": [238, 201, 159] }, @@ -244221,23 +244221,23 @@ "year": 1774, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 0.07019940160450489, - "c2": 23.672965594946987, - "c3": 3.280980087410825, - "c4": 5.888317000295359, - "c5": -4.766159491865743, - "c6": 29.02370680845661, - "c7": -17.4412261105328 + "points": { + "c1": 33.68002238365412, + "c2": 14.915174195353181, + "c3": -25.517486237128473, + "c4": -19.05901484107903, + "c5": -26.63040213194381, + "c6": 15.301718343452237, + "c7": 39.61300706283217 }, - "vertexSeeds": { - "c1": 4.793025322388543, - "c2": 4.871011712589081, - "c3": 4.832078577322105, - "c4": 4.74932275294153, - "c5": 4.57439765419365, - "c6": 4.658061397833782, - "c7": 4.802636140894555 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342584, + "c3": 6.518723994452148, + "c4": 5.214979195561722, + "c5": 3.911234396671287, + "c6": 2.607489597780861, + "c7": 1.3037447988904256 }, "rgb": [86, 146, 138] }, @@ -244248,23 +244248,23 @@ "year": 1774, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -0.06293630071444767, - "c2": 9.824842540083083, - "c3": 20.675132376639247, - "c4": -0.68680865816496, - "c5": 18.603135877099106, - "c6": -0.894719592712196, - "c7": -13.53776334482758 + "points": { + "c1": -2.2957314129596753, + "c2": 21.004995160312085, + "c3": -11.934597466630425, + "c4": 4.4930115295497295, + "c5": 2.7711036459591973, + "c6": -9.044611934341201, + "c7": -25.402631039382527 }, - "vertexSeeds": { - "c1": 9.461864802241912, - "c2": 8.258191317396555, - "c3": 8.397249568998461, - "c4": 9.217028363348511, - "c5": 8.780505341622936, - "c6": 8.123000045919616, - "c7": 9.405413922185359 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.758668515950072, + "c3": 11.46555709662506, + "c4": 9.172445677300052, + "c5": 6.879334257975032, + "c6": 4.586222838650021, + "c7": 2.2931114193250104 }, "rgb": [86, 146, 138] }, @@ -244275,23 +244275,23 @@ "year": 1774, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 15.637256649398417, - "c2": -14.946057277779772, - "c3": -21.841841616583665, - "c4": 18.54068228294763, - "c5": -30.05972089295973, - "c6": -47.211149646351046, - "c7": -3.612777659885431 + "points": { + "c1": -39.08845607473764, + "c2": 18.634346794081694, + "c3": 17.968441275822713, + "c4": 3.414969364172407, + "c5": 15.319676473337964, + "c6": -7.192814941183656, + "c7": 23.32593839459591 }, - "vertexSeeds": { - "c1": 4.003638673077473, - "c2": 4.331294362954669, - "c3": 3.931179128942626, - "c4": 4.3586560316484455, - "c5": 4.39690107713096, - "c6": 4.229316855827425, - "c7": 3.9072437830735747 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -244302,23 +244302,23 @@ "year": 1774, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -13.277032630663694, - "c2": 16.998527670517653, - "c3": -17.359310810017746, - "c4": -10.402835174909601, - "c5": 11.654782871617726, - "c6": 15.501385465384907, - "c7": -20.15123857962367 + "points": { + "c1": 1.0163037223062332, + "c2": -9.626271396947741, + "c3": -18.232941070707096, + "c4": -17.287883931738943, + "c5": 3.9973699327859897, + "c6": -13.416418404118316, + "c7": 1.9778215629932703 }, - "vertexSeeds": { - "c1": 5.631156761752169, - "c2": 5.778185666193549, - "c3": 6.003364003125313, - "c4": 5.9115121414524125, - "c5": 6.036552067933891, - "c6": 6.170184449397963, - "c7": 5.558211627619439 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -244329,23 +244329,23 @@ "year": 1774, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -12.025796727202852, - "c2": 15.959816343620624, - "c3": -21.714208105962065, - "c4": 20.404248906352144, - "c5": -2.152455039151615, - "c6": 7.185108237469969, - "c7": -1.5755355002069997 + "points": { + "c1": -5.707724823049933, + "c2": -21.0973873693484, + "c3": -17.439695953209757, + "c4": -7.887962807930666, + "c5": 20.139226548393694, + "c6": 13.55146791003483, + "c7": 12.001214699103102 }, - "vertexSeeds": { - "c1": 5.668670107828797, - "c2": 6.494884370025717, - "c3": 6.28252465877642, - "c4": 6.5925136196144845, - "c5": 5.637243125100597, - "c6": 6.031610422047251, - "c7": 5.840123844096205 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715672, + "c3": 7.882570503929728, + "c4": 6.306056403143781, + "c5": 4.729542302357836, + "c6": 3.1530282015718907, + "c7": 1.5765141007859453 }, "rgb": [222, 0, 59] }, @@ -244356,23 +244356,23 @@ "year": 1774, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -8.097284685804034, - "c2": -11.478024876564128, - "c3": -7.505041023667573, - "c4": -2.7615270148820557, - "c5": -35.428571573459465, - "c6": 35.324213580018785, - "c7": 17.684646318039576 + "points": { + "c1": 8.072720795733481, + "c2": -21.428138806717854, + "c3": 34.886948250995324, + "c4": 41.033186120122146, + "c5": -46.66050491787339, + "c6": 44.09271241380102, + "c7": -19.207329167642513 }, - "vertexSeeds": { - "c1": 3.954991809595039, - "c2": 4.787507219758548, - "c3": 4.743554356961807, - "c4": 4.170836958295406, - "c5": 4.143975749127705, - "c6": 4.179720969854353, - "c7": 4.199205792318109 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975033, + "c3": 5.73277854831253, + "c4": 4.586222838650023, + "c5": 3.439667128987514, + "c6": 2.2931114193250113, + "c7": 1.1465557096625032 }, "rgb": [238, 201, 159] }, @@ -244383,23 +244383,23 @@ "year": 1774, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -18.813793475474345, - "c2": 26.09514944363266, - "c3": 9.522832544929688, - "c4": -15.124707179614866, - "c5": 11.794582968879336, - "c6": 3.518519560383183, - "c7": -16.35809198828069 + "points": { + "c1": -5.835063660630372, + "c2": 21.879358614815313, + "c3": 17.000395046062796, + "c4": 27.7163603443534, + "c5": 20.48330822460665, + "c6": -12.570878396538749, + "c7": -21.222419953171887 }, - "vertexSeeds": { - "c1": 1.1179051702498117, - "c2": 1.0175659437027067, - "c3": 1.1246110886642147, - "c4": 1.0185029180375442, - "c5": 1.0543592657728504, - "c6": 1.109652353840467, - "c7": 1.090272889354516 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.6366158113730926, + "c3": 1.363846509477577, + "c4": 1.0910772075820632, + "c5": 0.8183079056865472, + "c6": 0.5455386037910316, + "c7": 0.2727693018955158 }, "rgb": [77, 76, 132] }, @@ -244410,23 +244410,23 @@ "year": 1774, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": 24.837092443784663, - "c2": -41.303146999527385, - "c3": -5.9302648728711205, - "c4": -42.63067020790965, - "c5": 47.25913897727849, - "c6": -9.95396874268554, - "c7": -56.35582968277229 + "points": { + "c1": -19.84280342353908, + "c2": 1.851396630715314, + "c3": -13.995108023947815, + "c4": -15.181630238961866, + "c5": -25.350181748799443, + "c6": -1.8449626165489335, + "c7": 29.871663318832468 }, - "vertexSeeds": { - "c1": 2.3082218041331335, - "c2": 2.3037561054096045, - "c3": 2.192309652885766, - "c4": 2.0718208354085834, - "c5": 2.1820958556801937, - "c6": 2.1228357224576637, - "c7": 2.141642234555299 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.4674063800277386, + "c3": 2.8895053166897826, + "c4": 2.3116042533518257, + "c5": 1.7337031900138693, + "c6": 1.1558021266759129, + "c7": 0.5779010633379564 }, "rgb": [222, 0, 59] }, @@ -244437,23 +244437,23 @@ "year": 1774, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -1.0517169648169116, - "c2": -0.5000225415002149, - "c3": -19.375586827622342, - "c4": -14.439170831439768, - "c5": 16.329423592997706, - "c6": 13.729789410180821, - "c7": -1.9894591213019588 + "points": { + "c1": 12.19959239151406, + "c2": -2.1789242396292323, + "c3": -15.053152974625753, + "c4": -18.195094099539148, + "c5": 1.1559786384742168, + "c6": -5.579165952382876, + "c7": -19.458161462411105 }, - "vertexSeeds": { - "c1": 5.038329352712108, - "c2": 5.3455604028132715, - "c3": 4.888025454137204, - "c4": 5.360834166570086, - "c5": 5.065638790078912, - "c6": 5.3060102124415796, - "c7": 5.579452469465654 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055482, + "c4": 5.547850208044377, + "c5": 4.160887656033283, + "c6": 2.7739251040221884, + "c7": 1.3869625520110942 }, "rgb": [86, 146, 138] }, @@ -244464,23 +244464,23 @@ "year": 1774, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -2.803075228227211, - "c2": -19.184077861566557, - "c3": -9.667237242333906, - "c4": -12.39106205512892, - "c5": -12.6962127491479, - "c6": -18.31289912294931, - "c7": -13.017319655646903 + "points": { + "c1": 9.39412954577632, + "c2": -12.965490028294601, + "c3": 23.845631920237732, + "c4": 6.004481265483104, + "c5": -15.052332197055442, + "c6": 0.6528684722043003, + "c7": -16.417668112028927 }, - "vertexSeeds": { - "c1": 4.218707531049886, - "c2": 3.8352664567875387, - "c3": 3.9556229748831653, - "c4": 4.090071366069868, - "c5": 4.287353292169802, - "c6": 4.161758023573905, - "c7": 4.406198818619723 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -244491,23 +244491,23 @@ "year": 1774, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": 10.565420493716829, - "c2": -20.312937106178232, - "c3": 14.982093757276914, - "c4": -13.356024973928328, - "c5": 33.97426253844978, - "c6": 15.383636846259634, - "c7": -31.828776589267946 + "points": { + "c1": 48.948602041361696, + "c2": 48.04107690239975, + "c3": -21.69395071102327, + "c4": 51.84060974476273, + "c5": 5.423946506038547, + "c6": 16.169043582840843, + "c7": -30.06118017240279 }, - "vertexSeeds": { - "c1": 1.7030875645783523, - "c2": 1.7975431160865016, - "c3": 1.7664725195794746, - "c4": 1.776205239539118, - "c5": 1.7986025671746892, - "c6": 1.791113718234499, - "c7": 1.7105893480930303 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.635228848821082, + "c3": 2.196024040684235, + "c4": 1.756819232547388, + "c5": 1.317614424410541, + "c6": 0.878409616273694, + "c7": 0.439204808136847 }, "rgb": [77, 76, 132] }, @@ -244518,23 +244518,23 @@ "year": 1774, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": 21.75504481626082, - "c2": -41.07675029217648, - "c3": -14.02311704865086, - "c4": -20.285751789233927, - "c5": 26.242851322817998, - "c6": 25.629651273478785, - "c7": 19.54145722127386 + "points": { + "c1": 0.47679070869065043, + "c2": -39.7319319440352, + "c3": -19.878879895290268, + "c4": -55.06277315178208, + "c5": 26.386970852479763, + "c6": 11.38556564289668, + "c7": 23.376098484037072 }, - "vertexSeeds": { - "c1": 7.28860017428878, - "c2": 7.2899873701463624, - "c3": 7.214145168645575, - "c4": 7.142463014014825, - "c5": 7.282420473963697, - "c6": 7.199789200543344, - "c7": 7.250440172750893 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324545, + "c3": 8.807212205270448, + "c4": 7.0457697642163515, + "c5": 5.2843273231622545, + "c6": 3.522884882108194, + "c7": 1.761442441054097 }, "rgb": [238, 201, 159] }, @@ -244545,23 +244545,23 @@ "year": 1774, "resistanceReported": true, "duration": 32572800, - "curveSeeds": { - "c1": 1.2466421773389271, - "c2": -24.087404610541576, - "c3": -43.83514911451076, - "c4": 27.22589282561085, - "c5": 9.534653300960677, - "c6": 5.166981283625063, - "c7": 41.12320083883362 + "points": { + "c1": -2.732784522949032, + "c2": -15.399127655098859, + "c3": 34.78497878284853, + "c4": 33.80598703807511, + "c5": 0.7385028711562995, + "c6": 17.98229879004031, + "c7": 30.854585440966467 }, - "vertexSeeds": { - "c1": 4.611637411643448, - "c2": 4.165829757313478, - "c3": 4.752916531488814, - "c4": 4.461115400565202, - "c5": 4.164053078300419, - "c6": 4.050245539446128, - "c7": 4.426995853466733 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.7790106333795634, + "c4": 4.623208506703655, + "c5": 3.4674063800277413, + "c6": 2.3116042533518275, + "c7": 1.1558021266759138 }, "rgb": [86, 146, 138] }, @@ -244572,23 +244572,23 @@ "year": 1775, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": -27.652719677675474, - "c2": -5.922836115879264, - "c3": -56.61147937345081, - "c4": -42.26903887040875, - "c5": 11.087697741786904, - "c6": -32.455658534510235, - "c7": 49.24971866798841 + "points": { + "c1": -52.52801313509449, + "c2": 14.421578474741246, + "c3": 16.396616007536586, + "c4": 8.955541508144968, + "c5": -5.125255863223977, + "c6": 20.235504883767696, + "c7": 5.4341033877479035 }, - "vertexSeeds": { - "c1": 4.201481077859882, - "c2": 4.661214136690935, - "c3": 4.117497915123182, - "c4": 4.51080860674112, - "c5": 4.008104669442308, - "c6": 4.282546727143831, - "c7": 4.098952810970266 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176144, + "c3": 5.848358760980119, + "c4": 4.678687008784099, + "c5": 3.509015256588074, + "c6": 2.3393435043920494, + "c7": 1.1696717521960247 }, "rgb": [222, 0, 59] }, @@ -244599,23 +244599,23 @@ "year": 1774, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": 1.7541878591001705, - "c2": -21.762313777142687, - "c3": -5.502518114262269, - "c4": -14.13033323030454, - "c5": 15.80617353840401, - "c6": -10.71719111693786, - "c7": 2.3246307285532453 + "points": { + "c1": -23.404209311658708, + "c2": 17.37768319733366, + "c3": -4.2690807335763665, + "c4": -5.90949133952655, + "c5": 20.387145974602973, + "c6": 12.176920439600948, + "c7": 6.560066582955184 }, - "vertexSeeds": { - "c1": 6.760360206091785, - "c2": 6.353677086523338, - "c3": 6.3538607763109995, - "c4": 6.718631817130859, - "c5": 6.2929946790456786, - "c6": 6.129489477636309, - "c7": 6.674381230898761 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -244626,23 +244626,23 @@ "year": 1775, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": 5.648471463673317, - "c2": 48.00227452973916, - "c3": -22.055060343972727, - "c4": -26.918735623692292, - "c5": 6.606687727239027, - "c6": 14.439568234489265, - "c7": 44.895186016978805 + "points": { + "c1": 0.9579521039605581, + "c2": 15.73282547911375, + "c3": -51.474164177326855, + "c4": 13.924702492005316, + "c5": -4.410468408480689, + "c6": -57.2434119484944, + "c7": 51.75494804658326 }, - "vertexSeeds": { - "c1": 5.842235839562225, - "c2": 5.322995391890978, - "c3": 5.702280155319125, - "c4": 5.601817943418635, - "c5": 5.8865655560234265, - "c6": 5.672880572469772, - "c7": 5.529128789957354 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [86, 146, 138] }, @@ -244653,23 +244653,23 @@ "year": 1774, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 4.62409375149425, - "c2": 25.701942434234255, - "c3": -34.35815281615176, - "c4": 7.941562930257604, - "c5": 10.018439659309898, - "c6": 22.11752401278561, - "c7": 33.758892928260025 + "points": { + "c1": 31.99533543721185, + "c2": -24.595443214518145, + "c3": -31.700134385685026, + "c4": 30.09243786098692, + "c5": 31.91413669544808, + "c6": -34.20631889001817, + "c7": -26.679533987547757 }, - "vertexSeeds": { - "c1": 1.791259108676142, - "c2": 1.7699013184690877, - "c3": 2.012380450146059, - "c4": 1.8918471332345401, - "c5": 1.752733671709737, - "c6": 1.9497938736109568, - "c7": 1.8957242435283137 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.427184466019417, + "c4": 1.941747572815535, + "c5": 1.4563106796116496, + "c6": 0.9708737864077674, + "c7": 0.4854368932038821 }, "rgb": [77, 76, 132] }, @@ -244680,23 +244680,23 @@ "year": 1774, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 4.656663085418721, - "c2": 49.760538516838125, - "c3": -44.19165500698643, - "c4": -48.82421977883176, - "c5": -25.11964364483452, - "c6": 11.458797419700424, - "c7": -35.54931181872497 + "points": { + "c1": -46.55270262016762, + "c2": -8.939666262904645, + "c3": -14.861973779831622, + "c4": 7.446187252846251, + "c5": -49.355760882910836, + "c6": 45.50935878116498, + "c7": -16.181738485031815 }, - "vertexSeeds": { - "c1": 3.6311714366330863, - "c2": 3.3392424122500746, - "c3": 3.431039429838977, - "c4": 3.628033035095174, - "c5": 3.5118013208354246, - "c6": 3.3962455903250377, - "c7": 3.439503526068883 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.4368932038834945, + "c3": 4.530744336569579, + "c4": 3.624595469255663, + "c5": 2.7184466019417473, + "c6": 1.8122977346278315, + "c7": 0.9061488673139158 }, "rgb": [238, 201, 159] }, @@ -244707,23 +244707,23 @@ "year": 1775, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": -17.61429388444089, - "c2": 54.68653795064312, - "c3": -36.35364688352251, - "c4": -9.71938505465139, - "c5": -18.470550771969876, - "c6": 44.90525339035849, - "c7": -49.037058052842376 + "points": { + "c1": 21.61097917602357, + "c2": -26.26468265493403, + "c3": 4.524373249386571, + "c4": 4.6455889723067045, + "c5": 48.07258188618042, + "c6": -43.95567165854969, + "c7": -54.09341662396084 }, - "vertexSeeds": { - "c1": 5.5615173219955105, - "c2": 5.689588017839035, - "c3": 5.734096859530579, - "c4": 5.519557000092844, - "c5": 5.469464205647488, - "c6": 5.455568608395838, - "c7": 5.647783049197578 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.888580674988434, + "c4": 5.510864539990742, + "c5": 4.133148404993049, + "c6": 2.7554322699953855, + "c7": 1.3777161349976927 }, "rgb": [58, 15, 49] }, @@ -244734,23 +244734,23 @@ "year": 1775, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": -41.267630724023185, - "c2": -42.53346760754601, - "c3": -22.820687744508888, - "c4": 35.29794900291097, - "c5": -28.23857776634324, - "c6": 33.92810514297042, - "c7": -9.768464318905082 + "points": { + "c1": 49.69733580654453, + "c2": -44.836004018789474, + "c3": -43.60088266175425, + "c4": -4.3759008211967085, + "c5": 4.784204523677879, + "c6": -17.11263803833628, + "c7": 7.662106185137375 }, - "vertexSeeds": { - "c1": 3.70129202395841, - "c2": 3.2049160227153988, - "c3": 3.201822285681362, - "c4": 2.9432719082628327, - "c5": 2.758380300144723, - "c6": 2.871525773902054, - "c7": 3.644598969076378 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.7142857142857135, + "c3": 4.761904761904762, + "c4": 3.809523809523809, + "c5": 2.857142857142858, + "c6": 1.9047619047619044, + "c7": 0.9523809523809509 }, "rgb": [238, 201, 159] }, @@ -244761,23 +244761,23 @@ "year": 1775, "resistanceReported": false, "duration": 50889600, - "curveSeeds": { - "c1": -27.66851780220596, - "c2": -53.0020003191044, - "c3": 19.780028540126807, - "c4": 38.46983001297616, - "c5": -56.40356132444659, - "c6": 44.62299768354181, - "c7": -51.87504841399481 + "points": { + "c1": 42.68240509820485, + "c2": 25.96196881417623, + "c3": -19.959110031318595, + "c4": 9.787628559582913, + "c5": -14.19596568508667, + "c6": -61.626255183601124, + "c7": -7.965366149507986 }, - "vertexSeeds": { - "c1": 3.8332720987856788, - "c2": 4.050642883801021, - "c3": 4.127133481452784, - "c4": 3.9103531914324114, - "c5": 3.901314198738716, - "c6": 4.059517658861363, - "c7": 3.8865567275802886 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [238, 201, 159] }, @@ -244788,23 +244788,23 @@ "year": 1774, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 15.101383781155612, - "c2": 24.054052809502025, - "c3": -4.649774941328623, - "c4": -9.303099693725223, - "c5": -14.880566130820004, - "c6": 20.300331845795938, - "c7": 27.986318777832267 + "points": { + "c1": -6.640624489740091, + "c2": -11.659904696498849, + "c3": -4.049821346610344, + "c4": 34.8673189646686, + "c5": 38.679086767083064, + "c6": 27.882802325860368, + "c7": -2.469660566035799 }, - "vertexSeeds": { - "c1": 7.25915433948724, - "c2": 7.905813205967474, - "c3": 7.143188042048644, - "c4": 8.41995240110271, - "c5": 7.638532522512895, - "c6": 8.40233853926098, - "c7": 8.17958540414574 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809986, + "c3": 10.402219140083213, + "c4": 8.32177531206657, + "c5": 6.241331484049926, + "c6": 4.160887656033289, + "c7": 2.0804438280166364 }, "rgb": [222, 0, 59] }, @@ -244815,23 +244815,23 @@ "year": 1774, "resistanceReported": false, "duration": 8121600, - "curveSeeds": { - "c1": 18.70974579075131, - "c2": 12.726627761334353, - "c3": -16.355315324124383, - "c4": 8.49847601244489, - "c5": 13.04268640526897, - "c6": -1.8510427837220789, - "c7": -16.526886568175087 + "points": { + "c1": 2.19043200093396, + "c2": 16.45231209202205, + "c3": 10.280529391064334, + "c4": -1.4861963483143406, + "c5": 8.86168768252115, + "c6": 11.047148525886303, + "c7": -19.217497777764592 }, - "vertexSeeds": { - "c1": 10.337301563037219, - "c2": 9.848743289847427, - "c3": 9.52251897421448, - "c4": 9.104284011520479, - "c5": 10.581758054044734, - "c6": 9.718578907065327, - "c7": 10.027071007839405 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363388, + "c3": 12.85251964863616, + "c4": 10.282015718908912, + "c5": 7.711511789181694, + "c6": 5.141007859454456, + "c7": 2.570503929727228 }, "rgb": [222, 0, 59] }, @@ -244842,23 +244842,23 @@ "year": 1774, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -16.053355383941316, - "c2": -6.995672159125256, - "c3": 3.7611837995092365, - "c4": 21.66288413505266, - "c5": 4.055608905026144, - "c6": -19.23228340680202, - "c7": 1.064880663863125 + "points": { + "c1": 25.99965148010135, + "c2": 25.880050085729053, + "c3": 14.981928817186606, + "c4": -29.605940038804356, + "c5": 9.17368086119533, + "c6": -0.7644562783868096, + "c7": 13.962587102401848 }, - "vertexSeeds": { - "c1": 3.214075474351899, - "c2": 3.306724275435973, - "c3": 3.111272838408745, - "c4": 3.1935628232389104, - "c5": 3.2288928569441677, - "c6": 3.3595713131061853, - "c7": 3.1959724058413617 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [222, 0, 59] }, @@ -244869,23 +244869,23 @@ "year": 1775, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": 0.14396154066724165, - "c2": 2.799213584369639, - "c3": -26.478205970804275, - "c4": -23.411515212011473, - "c5": -21.652491656839416, - "c6": 40.4931514562389, - "c7": -15.241880340108047 + "points": { + "c1": -46.35799579060079, + "c2": 48.459679135785386, + "c3": 30.327087821003694, + "c4": 33.16166103641836, + "c5": 38.96707205995832, + "c6": -24.04145200933778, + "c7": -50.225529982033756 }, - "vertexSeeds": { - "c1": 6.590563880606078, - "c2": 6.216846133568424, - "c3": 6.34811968101624, - "c4": 5.439114172468374, - "c5": 6.508165070913164, - "c6": 5.761475388370239, - "c7": 5.775936280633344 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715672, + "c3": 7.882570503929728, + "c4": 6.306056403143781, + "c5": 4.729542302357836, + "c6": 3.1530282015718907, + "c7": 1.5765141007859453 }, "rgb": [222, 0, 59] }, @@ -244896,23 +244896,23 @@ "year": 1774, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": -15.713954259835305, - "c2": -8.497020891361545, - "c3": -13.738599505852637, - "c4": -1.027493156598748, - "c5": 17.116778666567303, - "c6": 15.547013247791252, - "c7": 11.071957448634258 + "points": { + "c1": -9.062648960923811, + "c2": 14.625309269204113, + "c3": -2.3566561917185105, + "c4": 18.30091919770611, + "c5": -1.9402640129209203, + "c6": -7.902532302414363, + "c7": -8.938323999071088 }, - "vertexSeeds": { - "c1": 5.586914338418462, - "c2": 5.905929738855286, - "c3": 6.355139436098156, - "c4": 6.47131090392462, - "c5": 6.432711458745478, - "c6": 6.6866334461378045, - "c7": 6.701539788823775 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -244923,23 +244923,23 @@ "year": 1774, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": -6.239458090513063, - "c2": 7.086731164901469, - "c3": 15.008367713870388, - "c4": -17.525881227380367, - "c5": -15.4395022779046, - "c6": -5.281974482990499, - "c7": -17.501434578304377 + "points": { + "c1": 19.835610000677224, + "c2": -14.179714615482194, + "c3": -0.496675645043954, + "c4": 16.97596434727927, + "c5": 13.973707577616107, + "c6": 12.537619263806054, + "c7": -16.76634565337829 }, - "vertexSeeds": { - "c1": 6.097489023531272, - "c2": 6.751069764869028, - "c3": 5.7352123150057075, - "c4": 5.579898992422556, - "c5": 6.178227742640706, - "c6": 5.973621665084818, - "c7": 6.790034984656345 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -244950,23 +244950,23 @@ "year": 1774, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 15.344619217309372, - "c2": -6.459073815832248, - "c3": -20.873097869799196, - "c4": 11.11399236433548, - "c5": -36.49157944496653, - "c6": 37.56446762295479, - "c7": -27.89168747654605 + "points": { + "c1": -8.01634749594237, + "c2": 0.9040047751242639, + "c3": 43.74485565719298, + "c4": 3.5861100177000154, + "c5": -5.629177317103604, + "c6": 29.110404342835828, + "c7": -17.372295028272372 }, - "vertexSeeds": { - "c1": 7.154271106433577, - "c2": 6.884449543123757, - "c3": 7.2954629980666725, - "c4": 6.876937061264615, - "c5": 7.083734669410713, - "c6": 6.902600734372327, - "c7": 6.890661586033142 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244115, + "c3": 8.760980120203419, + "c4": 7.008784096162744, + "c5": 5.256588072122047, + "c6": 3.504392048081372, + "c7": 1.7521960240406962 }, "rgb": [86, 146, 138] }, @@ -244977,23 +244977,23 @@ "year": 1774, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 36.073370093500536, - "c2": -14.807127808151503, - "c3": 1.2702870325808675, - "c4": 2.734233346045251, - "c5": -39.34398030310269, - "c6": -35.2988374246021, - "c7": 28.849116975912175 + "points": { + "c1": 8.967829646886898, + "c2": 11.198221824671805, + "c3": 25.877940209018085, + "c4": -31.714732707640415, + "c5": 32.096696261224416, + "c6": 9.367714337676965, + "c7": 41.679158721626344 }, - "vertexSeeds": { - "c1": 7.864278848167763, - "c2": 7.843126016997139, - "c3": 7.758304098652147, - "c4": 7.887844228326976, - "c5": 7.774583764790235, - "c6": 7.640223785021236, - "c7": 7.775421419588549 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410532, + "c3": 9.431345353675464, + "c4": 7.545076282940365, + "c5": 5.658807212205266, + "c6": 3.7725381414701986, + "c7": 1.8862690707350993 }, "rgb": [77, 76, 132] }, @@ -245004,23 +245004,23 @@ "year": 1774, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -5.38795478001753, - "c2": -7.421930075725484, - "c3": -24.159675093190693, - "c4": 31.84766851926136, - "c5": 10.892625762400883, - "c6": -28.124357318204083, - "c7": -0.6524807416685761 + "points": { + "c1": 0.7288564582750681, + "c2": 19.300536981791197, + "c3": 20.93158242564806, + "c4": -11.61375781745581, + "c5": -19.30761193789538, + "c6": 27.887939660357688, + "c7": 15.223990013397447 }, - "vertexSeeds": { - "c1": 2.584505007234714, - "c2": 2.578106095767204, - "c3": 2.926329462049052, - "c4": 2.9043765037529123, - "c5": 3.2093065807057455, - "c6": 3.260079016934635, - "c7": 3.223607205019509 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877947, + "c3": 3.952843273231622, + "c4": 3.162274618585301, + "c5": 2.3717059639389753, + "c6": 1.5811373092926504, + "c7": 0.7905686546463252 }, "rgb": [238, 201, 159] }, @@ -245031,23 +245031,23 @@ "year": 1774, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 7.195980331508856, - "c2": -8.51608218196219, - "c3": -23.55340293483676, - "c4": -29.149609149218296, - "c5": -24.156412428493333, - "c6": 25.662898835537376, - "c7": -20.18671053219009 + "points": { + "c1": -31.51900975031829, + "c2": -4.514135297768888, + "c3": -16.112376886749942, + "c4": 0.06590363958571999, + "c5": 0.08515443644355258, + "c6": 9.086453571616751, + "c7": 7.561289572102595 }, - "vertexSeeds": { - "c1": 8.866063194840732, - "c2": 8.459225201760198, - "c3": 8.082745727724658, - "c4": 8.722973145385483, - "c5": 8.973939032094306, - "c6": 8.008375748513046, - "c7": 8.376350004921099 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.370319001386964, + "c3": 11.141932501155807, + "c4": 8.913546000924647, + "c5": 6.685159500693476, + "c6": 4.456773000462317, + "c7": 2.2283865002311587 }, "rgb": [58, 15, 49] }, @@ -245058,23 +245058,23 @@ "year": 1774, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": -34.26127925541082, - "c2": 28.120431448524172, - "c3": -17.418934508601318, - "c4": -26.704444534109985, - "c5": 38.28032868505031, - "c6": 12.70068387090054, - "c7": 13.032177715907707 + "points": { + "c1": 15.559738916980052, + "c2": -29.510362206247958, + "c3": 28.12612114126499, + "c4": -42.896480367727655, + "c5": 4.111854444216, + "c6": -10.670871210484506, + "c7": 30.936357985634046 }, - "vertexSeeds": { - "c1": 3.1057728374288756, - "c2": 3.4553618299381377, - "c3": 3.415227265756738, - "c4": 3.139324955465419, - "c5": 3.172433222844104, - "c6": 3.387214749365522, - "c7": 3.419980612246399 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239942, + "c3": 4.160887656033283, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133112, + "c7": 0.8321775312066598 }, "rgb": [77, 76, 132] }, @@ -245085,23 +245085,23 @@ "year": 1774, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 20.8673624463608, - "c2": -42.59892113713546, - "c3": 23.132817116357586, - "c4": -8.339756972057742, - "c5": -1.4263914478683404, - "c6": -5.333795393484245, - "c7": 14.40872475254433 + "points": { + "c1": -29.970756575636955, + "c2": -25.542987383379877, + "c3": -39.92563391651188, + "c4": -48.72429015274408, + "c5": -15.365798288206065, + "c6": 9.450499134244417, + "c7": 1.2293097011751541 }, - "vertexSeeds": { - "c1": 6.4451976228809, - "c2": 6.370443681723145, - "c3": 6.089744781072614, - "c4": 6.870000997613888, - "c5": 5.519780294652302, - "c6": 5.89183433245307, - "c7": 6.333309430669999 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284328, + "c3": 8.78409616273694, + "c4": 7.027276930189552, + "c5": 5.270457697642164, + "c6": 3.513638465094776, + "c7": 1.756819232547388 }, "rgb": [222, 0, 59] }, @@ -245112,23 +245112,23 @@ "year": 1774, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -17.425490988851564, - "c2": -0.615433580539495, - "c3": -5.355355937724362, - "c4": 15.47626856577375, - "c5": -35.243835043881205, - "c6": -8.02188790388987, - "c7": -8.62379160196869 + "points": { + "c1": 5.436000884413083, + "c2": 22.232975862965517, + "c3": -38.76996692083133, + "c4": -10.063945356894664, + "c5": -27.312801259471982, + "c6": 33.61101571268219, + "c7": -29.99463004709165 }, - "vertexSeeds": { - "c1": 4.135283514511517, - "c2": 4.413023576041157, - "c3": 4.209314105221317, - "c4": 4.443871437407755, - "c5": 4.386278514692137, - "c6": 3.947963560120961, - "c7": 4.285362405327475 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -245139,23 +245139,23 @@ "year": 1774, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 6.048113760888533, - "c2": 32.8435704108234, - "c3": -19.35316133348642, - "c4": -17.84899224992153, - "c5": 2.418131346954034, - "c6": -17.713226550337122, - "c7": -19.820915637229096 + "points": { + "c1": -26.825379265983646, + "c2": -24.31016032759374, + "c3": 6.3860974198044715, + "c4": 3.648805701649003, + "c5": -18.18352777557125, + "c6": -2.741720897062244, + "c7": -8.727220805173044 }, - "vertexSeeds": { - "c1": 1.226343961469026, - "c2": 1.148652249169916, - "c3": 2.0757527640133855, - "c4": 1.770381868715989, - "c5": 1.9619864058830834, - "c6": 1.46223365059673, - "c7": 1.8884084023243126 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504854, + "c3": 2.588996763754045, + "c4": 2.071197411003236, + "c5": 1.5533980582524276, + "c6": 1.035598705501618, + "c7": 0.5177993527508086 }, "rgb": [238, 201, 159] }, @@ -245166,23 +245166,23 @@ "year": 1775, "resistanceReported": false, "duration": 46137600, - "curveSeeds": { - "c1": -51.60558334897641, - "c2": 1.8359784725335118, - "c3": 55.82093656560546, - "c4": -24.047287419156802, - "c5": 41.234185679293454, - "c6": -53.24281624478645, - "c7": -3.990730317501857 + "points": { + "c1": -47.81095037141557, + "c2": 61.455514456058914, + "c3": -23.720040482169132, + "c4": -54.178293834229805, + "c5": -27.579010901158213, + "c6": -62.297300569245365, + "c7": 59.938316476625694 }, - "vertexSeeds": { - "c1": 7.770394499933745, - "c2": 7.804589786690695, - "c3": 7.846470216333577, - "c4": 7.849391486966124, - "c5": 7.8407469030010875, - "c6": 7.830207014240506, - "c7": 7.846156730337092 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289854, + "c3": 9.361997226074854, + "c4": 7.489597780859852, + "c5": 5.6171983356448525, + "c6": 3.744798890430001, + "c7": 1.8723994452150006 }, "rgb": [77, 76, 132] }, @@ -245193,23 +245193,23 @@ "year": 1774, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 7.484820402073318, - "c2": 28.114744978368435, - "c3": -18.74089564690038, - "c4": 13.425170145684838, - "c5": -4.392726601966725, - "c6": -10.87965354569437, - "c7": 22.19030528316653 + "points": { + "c1": 20.831534485737393, + "c2": 27.15326497964626, + "c3": 11.123002681289456, + "c4": -5.3768492548520115, + "c5": -8.250828308669266, + "c6": 25.906465207968168, + "c7": 22.398789728513492 }, - "vertexSeeds": { - "c1": 7.240315108361337, - "c2": 6.224396179474016, - "c3": 6.411673397250306, - "c4": 6.3081150112859925, - "c5": 6.497152630210833, - "c6": 7.104081563392601, - "c7": 6.999623066693167 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042993, + "c3": 8.645399907535836, + "c4": 6.916319926028667, + "c5": 5.1872399445214965, + "c6": 3.458159963014339, + "c7": 1.7290799815071696 }, "rgb": [222, 0, 59] }, @@ -245220,23 +245220,23 @@ "year": 1774, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -31.64587489886314, - "c2": 21.97652919495158, - "c3": 17.88387117046075, - "c4": -20.53346751304227, - "c5": 30.78209047429346, - "c6": 25.19870025017932, - "c7": 13.036078525143282 + "points": { + "c1": 0.5496445247759283, + "c2": 19.964629016986997, + "c3": -17.13814524554087, + "c4": -28.103494270608586, + "c5": -27.605983064862848, + "c6": -39.705535888841666, + "c7": -12.187214676936321 }, - "vertexSeeds": { - "c1": 3.179054432020953, - "c2": 3.219484906686527, - "c3": 3.2655244995189063, - "c4": 2.8387993886059104, - "c5": 3.2382387395321497, - "c6": 3.297751985835286, - "c7": 2.923811684399073 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877947, + "c3": 3.952843273231621, + "c4": 3.1622746185853017, + "c5": 2.3717059639389766, + "c6": 1.5811373092926508, + "c7": 0.7905686546463254 }, "rgb": [238, 201, 159] }, @@ -245247,23 +245247,23 @@ "year": 1775, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -38.973527854214446, - "c2": -14.582958589150259, - "c3": -38.13409316205319, - "c4": 30.1482456445015, - "c5": 19.484046591007328, - "c6": -26.85684631292105, - "c7": 47.25497333922645 + "points": { + "c1": -40.58145270771625, + "c2": -22.72698789720338, + "c3": 25.428106398557873, + "c4": -0.4601676660625884, + "c5": -21.337182614587846, + "c6": 25.179070265136303, + "c7": -0.02428580849861106 }, - "vertexSeeds": { - "c1": 2.2950024240005846, - "c2": 2.340886092103541, - "c3": 2.339347731098401, - "c4": 2.3427925683849984, - "c5": 2.202924788499639, - "c6": 2.0799449871406317, - "c7": 2.3601506405277703 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027739, + "c3": 2.8895053166897835, + "c4": 2.311604253351824, + "c5": 1.733703190013868, + "c6": 1.155802126675912, + "c7": 0.577901063337956 }, "rgb": [86, 146, 138] }, @@ -245274,23 +245274,23 @@ "year": 1774, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": -13.256208882163417, - "c2": 4.63496722221122, - "c3": 10.36863018653154, - "c4": 10.598401761677362, - "c5": -10.372415229889333, - "c6": -16.27260162909212, - "c7": 12.97073235926895 + "points": { + "c1": 10.803752070537644, + "c2": -9.693204076089714, + "c3": -1.3716423491018404, + "c4": -7.7626703859918, + "c5": -2.8876102658519045, + "c6": 11.052686857390405, + "c7": 2.224404309075986 }, - "vertexSeeds": { - "c1": 6.0383396227999055, - "c2": 6.8076812777167754, - "c3": 6.143899152257685, - "c4": 6.462423878188388, - "c5": 6.8060483107788805, - "c6": 6.754066744302468, - "c7": 6.280139133938743 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -245301,23 +245301,23 @@ "year": 1774, "resistanceReported": false, "duration": 6220800, - "curveSeeds": { - "c1": 10.478987032119829, - "c2": -9.930955736377719, - "c3": 16.312519490946215, - "c4": -14.416822536747798, - "c5": 10.282547335365479, - "c6": 13.685606231892223, - "c7": -12.946751542370352 + "points": { + "c1": -10.315920543604115, + "c2": 2.1469449761596806, + "c3": -4.099088521958736, + "c4": 8.039198844230008, + "c5": 14.022101820068244, + "c6": 4.805589522411399, + "c7": 16.585213140462457 }, - "vertexSeeds": { - "c1": 6.118427916335569, - "c2": 6.10530931218986, - "c3": 5.925827456502791, - "c4": 6.592366114821969, - "c5": 5.996771660142173, - "c6": 6.6429801622156015, - "c7": 6.499142774720885 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -245328,23 +245328,23 @@ "year": 1774, "resistanceReported": false, "duration": 6048000, - "curveSeeds": { - "c1": -12.25869926616975, - "c2": 5.045560763208702, - "c3": 9.25783425392623, - "c4": -14.981584771429596, - "c5": -2.5713480024189046, - "c6": -11.522995098289208, - "c7": -8.624002001709584 + "points": { + "c1": 13.765162159522788, + "c2": 2.6446614856885944, + "c3": 12.36154026417957, + "c4": -7.094547931812686, + "c5": 1.5708251751055222, + "c6": 13.58344893126764, + "c7": -10.687074995182359 }, - "vertexSeeds": { - "c1": 6.8166711735586905, - "c2": 6.674049122001911, - "c3": 6.039814461188676, - "c4": 6.250725119502904, - "c5": 6.2675187774754475, - "c6": 6.2281830841888866, - "c7": 5.627667066984766 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -245355,23 +245355,23 @@ "year": 1774, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": 14.65081405371814, - "c2": 0.22084039360204955, - "c3": 14.608395817472044, - "c4": 2.1305158663815362, - "c5": -15.297639761580704, - "c6": -12.558614166660735, - "c7": -15.752499026163667 + "points": { + "c1": 10.768002820060069, + "c2": 18.064430989004858, + "c3": 14.651478737007661, + "c4": -7.860507060037335, + "c5": 16.090878964823087, + "c6": 6.51778309013417, + "c7": -4.762802675729931 }, - "vertexSeeds": { - "c1": 2.7236528216896314, - "c2": 2.5095611593751874, - "c3": 2.684622213772193, - "c4": 2.579647281698732, - "c5": 2.7542064575351675, - "c6": 2.5163224080198336, - "c7": 2.709370331433756 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033285, + "c3": 3.467406380027741, + "c4": 2.7739251040221915, + "c5": 2.0804438280166426, + "c6": 1.3869625520110958, + "c7": 0.693481276005549 }, "rgb": [238, 201, 159] }, @@ -245382,23 +245382,23 @@ "year": 1775, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": -11.577687523638737, - "c2": -30.355491400950637, - "c3": -14.468352527924907, - "c4": 20.77862931461099, - "c5": 36.07976826330964, - "c6": 24.40676964492156, - "c7": 37.21233422727992 + "points": { + "c1": -46.55234469688892, + "c2": 39.20934668459588, + "c3": 36.496750084669365, + "c4": 35.39393927177863, + "c5": 43.228064906671754, + "c6": 40.001792948904274, + "c7": -26.38971870709311 }, - "vertexSeeds": { - "c1": 3.2009653258851336, - "c2": 3.115942081125015, - "c3": 3.0057182127891617, - "c4": 2.99912218103944, - "c5": 3.237301707482939, - "c6": 3.2714309021660237, - "c7": 3.1457446085761167 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [58, 15, 49] }, @@ -245409,23 +245409,23 @@ "year": 1774, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -35.15609470790897, - "c2": -21.643087298080516, - "c3": -8.737866383748312, - "c4": -20.20410530287989, - "c5": -32.67778052797876, - "c6": 20.066079632020298, - "c7": -5.7497007897648515 + "points": { + "c1": -29.62926515626065, + "c2": -24.25252180263984, + "c3": 5.422873955079147, + "c4": -0.9257237979391206, + "c5": -17.471504423950847, + "c6": -3.4908500658595543, + "c7": 22.228021932203994 }, - "vertexSeeds": { - "c1": 2.316254554931882, - "c2": 2.0044831369522136, - "c3": 2.2657303651418275, - "c4": 2.183393360287289, - "c5": 2.0758416806261857, - "c6": 1.9943745716711971, - "c7": 2.2034415639984077 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.439667128987519, + "c3": 2.866389274156264, + "c4": 2.2931114193250126, + "c5": 1.7198335644937581, + "c6": 1.1465557096625063, + "c7": 0.5732778548312518 }, "rgb": [86, 146, 138] }, @@ -245436,23 +245436,23 @@ "year": 1774, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": -13.00642923731419, - "c2": -7.856419846407793, - "c3": -4.652481027625443, - "c4": -3.104086566070281, - "c5": -13.793992986815619, - "c6": 15.851933359454812, - "c7": -7.252083163637883 + "points": { + "c1": -5.319167786489706, + "c2": -9.994737273118856, + "c3": 8.190642193469902, + "c4": 8.16614203961553, + "c5": 2.6578491072240915, + "c6": 2.7967386767830362, + "c7": 12.34185303388151 }, - "vertexSeeds": { - "c1": 1.0166923016665812, - "c2": 1.0083350918778624, - "c3": 1.089239542160775, - "c4": 1.0101872219242163, - "c5": 0.9778737602072632, - "c6": 1.0895225031852558, - "c7": 1.0105244085949792 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133148, + "c3": 1.386962552011096, + "c4": 1.1095700416088756, + "c5": 0.8321775312066566, + "c6": 0.5547850208044378, + "c7": 0.2773925104022189 }, "rgb": [77, 76, 132] }, @@ -245463,23 +245463,23 @@ "year": 1774, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 26.802048790838505, - "c2": -5.038078619371223, - "c3": -12.396151149595736, - "c4": -26.043219164788596, - "c5": 21.40937436858183, - "c6": -7.867569336008202, - "c7": 20.15550607493237 + "points": { + "c1": 26.219317159186744, + "c2": -21.474782362670652, + "c3": -28.89872402814951, + "c4": -21.289950773188078, + "c5": -14.176491978354896, + "c6": 8.180069986946812, + "c7": -25.852176745446627 }, - "vertexSeeds": { - "c1": 0.6846145746688153, - "c2": 0.7186499791152743, - "c3": 0.736318571304312, - "c4": 0.7116874076289219, - "c5": 0.7402312765211706, - "c6": 0.776082136669145, - "c7": 0.7274541033689758 + "offsets": { + "c1": 1.3268608414239482, + "c2": 1.137309292649098, + "c3": 0.9477577438742477, + "c4": 0.7582061950993992, + "c5": 0.568654646324549, + "c6": 0.3791030975496987, + "c7": 0.18955154877485028 }, "rgb": [77, 76, 132] }, @@ -245490,23 +245490,23 @@ "year": 1775, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 11.080567672183932, - "c2": -44.24801846681072, - "c3": 22.151966125684723, - "c4": 47.00072966930374, - "c5": 31.249840653797207, - "c6": -27.599882111140477, - "c7": 36.835447832245464 + "points": { + "c1": -10.416585861948903, + "c2": 48.7369729497246, + "c3": -9.653913125164983, + "c4": 47.5223974342053, + "c5": -35.77686627415943, + "c6": 45.48159804997718, + "c7": 15.260315219490096 }, - "vertexSeeds": { - "c1": 5.648425099613744, - "c2": 5.269228325493425, - "c3": 6.11848213843425, - "c4": 5.181995429304478, - "c5": 5.378482583198229, - "c6": 6.099079827216865, - "c7": 5.370083465526243 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192324, + "c4": 5.899214054553863, + "c5": 4.4244105409153915, + "c6": 2.9496070272769317, + "c7": 1.4748035136384605 }, "rgb": [238, 201, 159] }, @@ -245517,23 +245517,23 @@ "year": 1774, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": -4.630630429846191, - "c2": 5.567951576733996, - "c3": 9.636305248056267, - "c4": -8.390806540466873, - "c5": 7.895973113623384, - "c6": -14.717592156002942, - "c7": 0.405293652342003 + "points": { + "c1": 11.720212278290266, + "c2": -17.56060721302419, + "c3": -1.2780004200251227, + "c4": 11.512357806630742, + "c5": 7.085016817208718, + "c6": 3.310836838047752, + "c7": -5.37760420708222 }, - "vertexSeeds": { - "c1": 6.0968448974550284, - "c2": 6.037368392183157, - "c3": 6.567748710033635, - "c4": 5.645681162886049, - "c5": 6.383290595212845, - "c6": 5.78431590945639, - "c7": 5.931979081468426 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -245544,23 +245544,23 @@ "year": 1774, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": -22.126396813695255, - "c2": 34.56796080698543, - "c3": -11.428574309296195, - "c4": 32.158930099834556, - "c5": -28.450083055605152, - "c6": 4.949621731577956, - "c7": 33.94880227651782 + "points": { + "c1": -24.5688809569681, + "c2": 47.78978659064202, + "c3": 8.855290070236158, + "c4": 5.696553610004457, + "c5": 17.35147104707722, + "c6": -12.176182774652524, + "c7": -3.9113067542615596 }, - "vertexSeeds": { - "c1": 3.6418951867980227, - "c2": 3.7037164677815806, - "c3": 3.8425554049400246, - "c4": 3.5029439710459296, - "c5": 3.615517352125908, - "c6": 3.7110757848211082, - "c7": 3.6823926736842005 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004162, + "c3": 4.600092464170136, + "c4": 3.680073971336111, + "c5": 2.760055478502085, + "c6": 1.8400369856680592, + "c7": 0.9200184928340257 }, "rgb": [77, 76, 132] }, @@ -245571,23 +245571,23 @@ "year": 1774, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 22.309691693685828, - "c2": -24.305754168459753, - "c3": 9.705861969585605, - "c4": 19.538181099727588, - "c5": 9.884984419652895, - "c6": -14.416752641562097, - "c7": 17.858748161906234 + "points": { + "c1": -6.135196764360131, + "c2": 7.024323512714503, + "c3": 22.678963061045756, + "c4": 2.901720129267769, + "c5": -14.088772671073855, + "c6": -25.313842915709248, + "c7": 5.9805271012432115 }, - "vertexSeeds": { - "c1": 8.451794254865398, - "c2": 7.972926699477401, - "c3": 8.422328951435228, - "c4": 7.979664200465931, - "c5": 8.137694722014455, - "c6": 8.238707425721335, - "c7": 7.96937407394033 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.17753120665741, + "c3": 10.147942672214521, + "c4": 8.118354137771606, + "c5": 6.088765603328719, + "c6": 4.059177068885803, + "c7": 2.0295885344428877 }, "rgb": [222, 0, 59] }, @@ -245598,23 +245598,23 @@ "year": 1774, "resistanceReported": false, "duration": 4924800, - "curveSeeds": { - "c1": -1.3372708507269842, - "c2": 7.436491006372666, - "c3": 7.91701134064283, - "c4": -2.169554437329065, - "c5": -8.732978116164297, - "c6": -10.239806045570784, - "c7": -6.359933139675379 + "points": { + "c1": 3.010423915702912, + "c2": -5.766448746826047, + "c3": 16.328862504999616, + "c4": 16.576273573440606, + "c5": -14.317849223034175, + "c6": -9.203643533456464, + "c7": 3.2424177400287313 }, - "vertexSeeds": { - "c1": 1.3211104093618755, - "c2": 1.3312547816668097, - "c3": 1.4653158266005515, - "c4": 1.3046322706055498, - "c5": 1.428041981673094, - "c6": 1.5842419503485945, - "c7": 1.2639956212948733 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [222, 0, 59] }, @@ -245625,23 +245625,23 @@ "year": 1774, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 16.122100522068507, - "c2": 43.625513777329004, - "c3": -0.05279464629300179, - "c4": 34.113937974745795, - "c5": 42.00613373972274, - "c6": 26.848554148598808, - "c7": -6.795568642149874 + "points": { + "c1": -21.47586660735416, + "c2": 22.58809405134177, + "c3": 45.995391387259076, + "c4": 45.28847587733223, + "c5": 30.893671839553406, + "c6": 41.85002633923034, + "c7": 2.135118239746056 }, - "vertexSeeds": { - "c1": 3.220952516598021, - "c2": 3.1722609075106387, - "c3": 3.0439067564826527, - "c4": 3.131833924769464, - "c5": 2.9687914363781696, - "c6": 3.147067734779964, - "c7": 3.25571017182749 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -245652,23 +245652,23 @@ "year": 1774, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -4.537537809121922, - "c2": -15.953983594009532, - "c3": 5.909469907569662, - "c4": -20.375929111347013, - "c5": 14.974367197946034, - "c6": 11.280977259134598, - "c7": -1.3586144581254196 + "points": { + "c1": -17.079775138551224, + "c2": -12.366980489888128, + "c3": -29.815893956760277, + "c4": 24.627961927719664, + "c5": 1.1462364715195257, + "c6": 7.529900940360843, + "c7": 20.823764900902734 }, - "vertexSeeds": { - "c1": 8.601486588362393, - "c2": 8.82144508295604, - "c3": 8.563503611597266, - "c4": 8.646049975562125, - "c5": 8.695677690356748, - "c6": 8.482387972943934, - "c7": 8.47875514570273 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.81553398058252, + "c3": 10.679611650485427, + "c4": 8.543689320388337, + "c5": 6.407766990291243, + "c6": 4.271844660194184, + "c7": 2.135922330097092 }, "rgb": [77, 76, 132] }, @@ -245679,23 +245679,23 @@ "year": 1775, "resistanceReported": false, "duration": 42854400, - "curveSeeds": { - "c1": 34.214820696030166, - "c2": -8.926930163609732, - "c3": -34.92357986394403, - "c4": -43.7773458113675, - "c5": -36.36146861494548, - "c6": 36.92951829752122, - "c7": -39.155100854377544 + "points": { + "c1": 30.809307492783866, + "c2": -29.821580176855594, + "c3": -17.09195255538541, + "c4": -13.953465716006129, + "c5": -57.061610182452256, + "c6": 11.144661929029262, + "c7": 57.80625773968216 }, - "vertexSeeds": { - "c1": 6.345134902042329, - "c2": 6.551173018855972, - "c3": 6.167771930080673, - "c4": 6.507741587428041, - "c5": 6.135413518768872, - "c6": 6.242571570798201, - "c7": 6.354385533026828 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077667, + "c3": 8.090614886731398, + "c4": 6.472491909385116, + "c5": 4.854368932038834, + "c6": 3.2362459546925644, + "c7": 1.6181229773462822 }, "rgb": [58, 15, 49] }, @@ -245706,23 +245706,23 @@ "year": 1774, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -30.50568760850912, - "c2": 6.152908302018538, - "c3": -19.307494237131127, - "c4": 6.168494678019158, - "c5": -29.992019104522978, - "c6": 5.659393729776994, - "c7": -4.695467071893301 + "points": { + "c1": 31.439856733490068, + "c2": -9.948648985865038, + "c3": 9.688292685657999, + "c4": 5.202855100111499, + "c5": 5.284289388317752, + "c6": 8.57961871740477, + "c7": 0.5162891995762209 }, - "vertexSeeds": { - "c1": 1.8925191965386836, - "c2": 2.073389019937243, - "c3": 2.0408903126435964, - "c4": 1.893160382811124, - "c5": 1.911921457139057, - "c6": 2.1034503632885913, - "c7": 2.117573935891711 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244114, + "c3": 2.5427646786870066, + "c4": 2.0342117429496063, + "c5": 1.5256588072122057, + "c6": 1.0171058714748011, + "c7": 0.5085529357374006 }, "rgb": [222, 0, 59] }, @@ -245733,23 +245733,23 @@ "year": 1774, "resistanceReported": false, "duration": 3196800, - "curveSeeds": { - "c1": -4.960164758274516, - "c2": 3.197323155734866, - "c3": -9.385854410219498, - "c4": 6.905588042322988, - "c5": 5.375571393896843, - "c6": 6.186223337142364, - "c7": -12.431094533700966 + "points": { + "c1": 8.814711673208945, + "c2": 1.8695622002526004, + "c3": 13.811275958729892, + "c4": 1.1002360872897068, + "c5": -1.8035470387888513, + "c6": 0.9338002386144897, + "c7": -15.356468628866267 }, - "vertexSeeds": { - "c1": 2.9265439652318075, - "c2": 3.0150163376960224, - "c3": 2.9254373219501204, - "c4": 2.798045046626109, - "c5": 2.7979083626088865, - "c6": 2.861528115281685, - "c7": 2.7933242799486098 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475725, + "c3": 3.7216828478964437, + "c4": 2.977346278317153, + "c5": 2.2330097087378626, + "c6": 1.4886731391585726, + "c7": 0.7443365695792904 }, "rgb": [238, 201, 159] }, @@ -245760,23 +245760,23 @@ "year": 1774, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 23.0856149280814, - "c2": -27.279319309864036, - "c3": 10.732425444560473, - "c4": -30.376407241699862, - "c5": -10.299760902603108, - "c6": -24.36281853405162, - "c7": 3.0188899734111594 + "points": { + "c1": 6.934481322171607, + "c2": -0.998671069158398, + "c3": 30.849256871402886, + "c4": -29.55073012170396, + "c5": -16.343990609696267, + "c6": -24.010136647612903, + "c7": -24.333955972788033 }, - "vertexSeeds": { - "c1": 2.2784093955141196, - "c2": 2.430683871244343, - "c3": 2.5435616974878066, - "c4": 2.3238550050774367, - "c5": 2.543484524444497, - "c6": 2.462619578730645, - "c7": 2.312457636020785 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349516, + "c3": 3.0744336569579316, + "c4": 2.4595469255663427, + "c5": 1.844660194174758, + "c6": 1.2297734627831733, + "c7": 0.6148867313915888 }, "rgb": [77, 76, 132] }, @@ -245787,23 +245787,23 @@ "year": 1774, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 14.819774491485767, - "c2": -3.4116407436411933, - "c3": 26.441976608928663, - "c4": -39.97725216752327, - "c5": 24.99430233538373, - "c6": -42.48365051316407, - "c7": 25.621820248910915 + "points": { + "c1": -12.656461197110225, + "c2": -44.86896016955196, + "c3": 19.21087005943408, + "c4": -24.672170649389695, + "c5": 40.176427178506366, + "c6": -38.31620113277896, + "c7": -29.73671707049901 }, - "vertexSeeds": { - "c1": 6.781172706967375, - "c2": 6.5492302962134605, - "c3": 6.3073799678379565, - "c4": 6.672944655864398, - "c5": 6.977371328458378, - "c6": 6.110489505752706, - "c7": 6.714339384179422 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.09708737864078, + "c3": 8.41423948220064, + "c4": 6.731391585760516, + "c5": 5.04854368932039, + "c6": 3.365695792880251, + "c7": 1.6828478964401254 }, "rgb": [222, 0, 59] }, @@ -245814,23 +245814,23 @@ "year": 1774, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -17.423387186950343, - "c2": -29.952549079070526, - "c3": -2.9745825136776247, - "c4": -36.52987488352762, - "c5": 34.947940205867376, - "c6": -34.5602195681562, - "c7": -32.51277591371703 + "points": { + "c1": -9.25496898058563, + "c2": 21.630093672508828, + "c3": 30.52759792906972, + "c4": -35.87874853447849, + "c5": -29.973238906462957, + "c6": 10.307221770019531, + "c7": 46.132398982280385 }, - "vertexSeeds": { - "c1": 5.081136232755119, - "c2": 4.802348409599497, - "c3": 4.916061599433099, - "c4": 4.568924174257624, - "c5": 5.083808423199641, - "c6": 5.11258661566645, - "c7": 5.101612286849488 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [222, 0, 59] }, @@ -245841,23 +245841,23 @@ "year": 1774, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": -7.516758356193712, - "c2": -5.348294759961634, - "c3": -6.4386146128505946, - "c4": 7.521418631772136, - "c5": 12.615094619628092, - "c6": 3.6131518956904216, - "c7": 8.126352624088227 + "points": { + "c1": 5.09172209677547, + "c2": -17.368129335420647, + "c3": -13.4472081168707, + "c4": -8.948698547583145, + "c5": -1.7153168222315713, + "c6": -10.789102082667378, + "c7": 6.354379683087814 }, - "vertexSeeds": { - "c1": 4.449909965757245, - "c2": 4.434072107656355, - "c3": 4.436573154389239, - "c4": 4.46757885153404, - "c5": 4.434515158946293, - "c6": 4.490564288843555, - "c7": 4.466093764258363 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371694, + "c3": 5.386037910309732, + "c4": 4.308830328247811, + "c5": 3.231622746185847, + "c6": 2.1544151641238836, + "c7": 1.0772075820619205 }, "rgb": [238, 201, 159] }, @@ -245868,23 +245868,23 @@ "year": 1774, "resistanceReported": false, "duration": 8380800, - "curveSeeds": { - "c1": 4.89722252762693, - "c2": -10.152416724854156, - "c3": -14.80074255848034, - "c4": 0.3988707739087509, - "c5": 15.394944776060086, - "c6": 3.2081559124215033, - "c7": 10.463703944216885 + "points": { + "c1": 2.835561238422965, + "c2": 20.988053689937473, + "c3": -15.777854427850325, + "c4": 12.555458618994017, + "c5": -10.363543067135366, + "c6": 7.483574590241503, + "c7": 8.826225081785282 }, - "vertexSeeds": { - "c1": 4.083830518344408, - "c2": 4.078200102021984, - "c3": 4.123886171135183, - "c4": 4.199625304799878, - "c5": 4.076690827444198, - "c6": 4.244299156806271, - "c7": 4.143913612877983 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889035, + "c3": 5.108645399907538, + "c4": 4.086916319926024, + "c5": 3.065187239944527, + "c6": 2.043458159963012, + "c7": 1.021729079981515 }, "rgb": [58, 15, 49] }, @@ -245895,23 +245895,23 @@ "year": 1774, "resistanceReported": false, "duration": 2505600, - "curveSeeds": { - "c1": 3.7784760785087226, - "c2": -4.358344693546101, - "c3": -5.906872776210713, - "c4": -7.797712363471126, - "c5": 8.19444877405658, - "c6": 4.149860534236767, - "c7": 9.70506052360559 + "points": { + "c1": 2.9234822839871644, + "c2": -1.2275060196916758, + "c3": 2.4796380676814334, + "c4": 11.972222602453394, + "c5": -11.301479424834337, + "c6": -4.61062704119098, + "c7": 11.174884983611415 }, - "vertexSeeds": { - "c1": 1.4999264993878718, - "c2": 1.4680126197767467, - "c3": 1.5552380983090528, - "c4": 1.4138095496543477, - "c5": 1.367567815447807, - "c6": 1.5057155956110326, - "c7": 1.4829216562663212 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [77, 76, 132] }, @@ -245922,23 +245922,23 @@ "year": 1774, "resistanceReported": false, "duration": 2505600, - "curveSeeds": { - "c1": -9.8297081671114, - "c2": -5.936315961899357, - "c3": -11.816400968138836, - "c4": -8.66741007607677, - "c5": 1.4354365629008239, - "c6": 2.6687672400468667, - "c7": 4.383510760025077 + "points": { + "c1": -10.126702784361665, + "c2": -8.391452719687088, + "c3": -10.687393133364075, + "c4": -1.7424162721817886, + "c5": -7.411625085195919, + "c6": -4.078812849739686, + "c7": 1.9085838146923049 }, - "vertexSeeds": { - "c1": 5.78867081036232, - "c2": 5.885636204599511, - "c3": 5.684688014481544, - "c4": 6.229764044657172, - "c5": 6.2822486230675025, - "c6": 6.588560341301683, - "c7": 5.629372143078525 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -245949,23 +245949,23 @@ "year": 1774, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -30.797046685977076, - "c2": 17.178172811032198, - "c3": 32.150349276810786, - "c4": 10.56896198667497, - "c5": 7.578144371693234, - "c6": 28.982046945254908, - "c7": 21.111716370617074 + "points": { + "c1": 33.74854900644597, + "c2": 32.53872656350288, + "c3": -12.112772991357325, + "c4": -0.12700745781688738, + "c5": -31.33112916825168, + "c6": -9.5954261774951, + "c7": -8.552540038861196 }, - "vertexSeeds": { - "c1": 1.8571164827233377, - "c2": 1.806150065462612, - "c3": 1.6637788979128822, - "c4": 1.6816734673354652, - "c5": 1.8452798301876097, - "c6": 1.7190613008585398, - "c7": 1.8089949502141476 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.690707350901526, + "c3": 2.2422561257512714, + "c4": 1.793804900601017, + "c5": 1.345353675450763, + "c6": 0.8969024503005085, + "c7": 0.44845122515025426 }, "rgb": [238, 201, 159] }, @@ -245976,23 +245976,23 @@ "year": 1775, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": 6.355609442458295, - "c2": -43.21528274451289, - "c3": -9.401346290117068, - "c4": 14.435793424258996, - "c5": -24.274531160607, - "c6": -42.65503549734655, - "c7": -15.313009177333676 + "points": { + "c1": -45.01874381641338, + "c2": -5.623762534143879, + "c3": 32.156079248108824, + "c4": 0.05238156014587503, + "c5": 1.7177385155196063, + "c6": -15.058776649565054, + "c7": 24.085124099439412 }, - "vertexSeeds": { - "c1": 6.899421310942139, - "c2": 7.38856041686609, - "c3": 7.18548463311973, - "c4": 7.535117101431997, - "c5": 7.303623781864625, - "c6": 7.342173952641329, - "c7": 7.286844939527666 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807206, + "c3": 9.084604715672677, + "c4": 7.2676837725381365, + "c5": 5.45076282940361, + "c6": 3.6338418862690682, + "c7": 1.8169209431345263 }, "rgb": [58, 15, 49] }, @@ -246003,23 +246003,23 @@ "year": 1775, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -14.828328116150288, - "c2": -1.3061860370267055, - "c3": -21.79645942503815, - "c4": -2.63381327694033, - "c5": 30.680316500434003, - "c6": 8.251447428789099, - "c7": -27.20527512912424 + "points": { + "c1": 24.090455996094107, + "c2": 26.050145719745558, + "c3": 18.05673779218789, + "c4": -6.156447955842481, + "c5": 20.15075661403415, + "c6": 47.84832678455895, + "c7": 48.284376315826165 }, - "vertexSeeds": { - "c1": 5.959503906551677, - "c2": 5.638342808207362, - "c3": 5.646661338567326, - "c4": 5.382376200248418, - "c5": 5.565805084083346, - "c6": 5.780901333504307, - "c7": 5.642935615493887 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [77, 76, 132] }, @@ -246030,23 +246030,23 @@ "year": 1774, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 18.35837612886263, - "c2": -27.01647439219529, - "c3": -17.232558347723455, - "c4": 5.7543228895322756, - "c5": -2.9331969271931513, - "c6": -10.10518745399888, - "c7": 28.43510927497679 + "points": { + "c1": 25.78651266047315, + "c2": -34.404939709334364, + "c3": -2.5701501311529924, + "c4": -5.224296305377322, + "c5": 31.04750403153986, + "c6": 13.6849286855605, + "c7": -4.1502407991854895 }, - "vertexSeeds": { - "c1": 6.836204291338196, - "c2": 6.738461979115731, - "c3": 6.9161653651131765, - "c4": 6.666830920275203, - "c5": 6.683732943322534, - "c6": 7.000175081772088, - "c7": 6.992943197207054 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560323, + "c3": 8.368007397133594, + "c4": 6.6944059177068915, + "c5": 5.0208044382801615, + "c6": 3.347202958853432, + "c7": 1.67360147942673 }, "rgb": [77, 76, 132] }, @@ -246057,23 +246057,23 @@ "year": 1774, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 17.552562655777443, - "c2": -3.4509516865756424, - "c3": -1.742528496146086, - "c4": -28.68647733209594, - "c5": -28.08853350515303, - "c6": -7.335161107831716, - "c7": -2.882446157664827 + "points": { + "c1": 14.801217581749327, + "c2": -25.374248310886387, + "c3": -13.812601688324072, + "c4": 25.797137719177456, + "c5": -13.243520695993904, + "c6": -4.289895107882007, + "c7": -19.183980430041487 }, - "vertexSeeds": { - "c1": 5.077269629254896, - "c2": 5.183839384279748, - "c3": 4.8521649301840375, - "c4": 4.919904874388271, - "c5": 4.883878760243822, - "c6": 4.8498123436382095, - "c7": 5.030489204899113 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [238, 201, 159] }, @@ -246084,23 +246084,23 @@ "year": 1774, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -0.9823420364170303, - "c2": 30.7500066918779, - "c3": 1.5833033676940644, - "c4": 6.114265945604039, - "c5": 3.1768849829387094, - "c6": -10.256252686759218, - "c7": 9.257293651284698 + "points": { + "c1": -36.17427892809638, + "c2": -22.03325888062526, + "c3": 35.946833835453305, + "c4": -25.750035564756757, + "c5": 31.759797806629578, + "c6": -15.795604576149533, + "c7": 6.208498835782329 }, - "vertexSeeds": { - "c1": 6.051753305206271, - "c2": 6.079089117772446, - "c3": 6.550787190830621, - "c4": 6.6677519581485525, - "c5": 5.823497934682489, - "c6": 6.647773633693117, - "c7": 6.135172390892259 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [77, 76, 132] }, @@ -246111,23 +246111,23 @@ "year": 1774, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 15.735238523323417, - "c2": 14.437658348043257, - "c3": 16.66629655128053, - "c4": 8.095892794931487, - "c5": -0.39751874650053054, - "c6": 8.661162796932125, - "c7": 24.1509753381131 + "points": { + "c1": -37.437143108418695, + "c2": 33.92318086930477, + "c3": 14.82751809024014, + "c4": 27.58737301561183, + "c5": 15.736958054921608, + "c6": 3.9252380605782875, + "c7": 19.175122476361068 }, - "vertexSeeds": { - "c1": 6.759198288464885, - "c2": 6.986903951284668, - "c3": 7.022622868223792, - "c4": 6.9554655811636374, - "c5": 6.900254376071019, - "c6": 6.92634349343833, - "c7": 7.262270094879738 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083218, + "c3": 8.668515950069349, + "c4": 6.934812760055479, + "c5": 5.201109570041609, + "c6": 3.4674063800277395, + "c7": 1.7337031900138697 }, "rgb": [86, 146, 138] }, @@ -246138,23 +246138,23 @@ "year": 1774, "resistanceReported": false, "duration": 2073600, - "curveSeeds": { - "c1": 11.196743277453535, - "c2": 5.796735985300824, - "c3": 1.2717586720514493, - "c4": 7.992465104220127, - "c5": 11.990393215627016, - "c6": 2.1194509553086043, - "c7": 2.169219646013529 + "points": { + "c1": -7.133204758168493, + "c2": 9.63390114772777, + "c3": -2.8663043214371093, + "c4": 11.694310894632522, + "c5": 12.187543006879658, + "c6": 6.888713392063568, + "c7": 5.603121650659876 }, - "vertexSeeds": { - "c1": 3.141431087294823, - "c2": 3.018108738709688, - "c3": 3.1169909816338737, - "c4": 3.1523350933064895, - "c5": 3.1950518967574153, - "c6": 3.073287337384753, - "c7": 3.144918301498537 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -246165,23 +246165,23 @@ "year": 1774, "resistanceReported": false, "duration": 2073600, - "curveSeeds": { - "c1": 9.207048967909834, - "c2": -10.846574835392826, - "c3": 10.5185961660614, - "c4": 10.402968459130257, - "c5": 5.118610622566532, - "c6": 2.974921235934488, - "c7": -11.376801711740415 + "points": { + "c1": 11.642166757407136, + "c2": 4.053244577479269, + "c3": 0.13071029972487658, + "c4": 2.286012537918136, + "c5": -9.801104631782835, + "c6": -6.719803579875542, + "c7": 7.88095883678136 }, - "vertexSeeds": { - "c1": 6.64484704843662, - "c2": 6.175812270657712, - "c3": 6.422244128230613, - "c4": 6.336474647895419, - "c5": 5.626650538590971, - "c6": 6.550489537588982, - "c7": 5.929769040047382 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -246192,23 +246192,23 @@ "year": 1774, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 7.676372081603581, - "c2": -38.59903337126691, - "c3": -30.651369532672184, - "c4": 22.886424172595824, - "c5": 10.332591109775045, - "c6": -40.97669477617965, - "c7": 35.7909915811469 + "points": { + "c1": 0.7987444310820919, + "c2": 34.18826967831505, + "c3": 3.2278873686210687, + "c4": -41.248540586324786, + "c5": 8.10884262159228, + "c6": -29.718364796310386, + "c7": 22.36446677207634 }, - "vertexSeeds": { - "c1": 5.414121463620322, - "c2": 5.4482362586462, - "c3": 5.566463764351718, - "c4": 5.422977561908688, - "c5": 5.498635070266689, - "c6": 5.4435026523349475, - "c7": 5.5275537028533215 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583919, + "c3": 6.657420249653276, + "c4": 5.325936199722633, + "c5": 3.9944521497919303, + "c6": 2.662968099861287, + "c7": 1.3314840499306435 }, "rgb": [58, 15, 49] }, @@ -246219,23 +246219,23 @@ "year": 1774, "resistanceReported": false, "duration": 1728000, - "curveSeeds": { - "c1": -4.543232847953517, - "c2": -8.297705749795277, - "c3": -8.171980315339695, - "c4": -5.24001320188263, - "c5": 8.122513156805898, - "c6": 11.688282077182404, - "c7": -0.43875208641914476 + "points": { + "c1": -2.0240839034611877, + "c2": -5.76642519229617, + "c3": -7.699400973973994, + "c4": -6.882957264908292, + "c5": -4.379188699624965, + "c6": -12.05904619230897, + "c7": 8.783310705141684 }, - "vertexSeeds": { - "c1": 6.518443278669052, - "c2": 6.63676447542112, - "c3": 5.911758929645292, - "c4": 6.2645627025361, - "c5": 6.481370451267907, - "c6": 6.603336198910953, - "c7": 5.802424573478045 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -246246,23 +246246,23 @@ "year": 1774, "resistanceReported": false, "duration": 1728000, - "curveSeeds": { - "c1": -0.21730816310079248, - "c2": -0.6434348097446172, - "c3": -1.036717512019484, - "c4": 1.0468359699174474, - "c5": -9.577563249836412, - "c6": -10.413673149088039, - "c7": 10.462224525672845 + "points": { + "c1": 12.483604520460542, + "c2": 9.50556120449258, + "c3": -1.6371748975097358, + "c4": 3.8879379398395955, + "c5": -7.127333376900261, + "c6": -3.723088938331548, + "c7": 12.993020476382842 }, - "vertexSeeds": { - "c1": 1.813615686499836, - "c2": 1.8480735918352635, - "c3": 1.8511259273917193, - "c4": 1.9175901751158055, - "c5": 1.9050995206351236, - "c6": 1.8170303938119234, - "c7": 1.8903400567325224 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [222, 0, 59] }, @@ -246273,23 +246273,23 @@ "year": 1774, "resistanceReported": false, "duration": 1728000, - "curveSeeds": { - "c1": -7.750348915084139, - "c2": -8.193614000501455, - "c3": -2.9354467354868383, - "c4": 5.184893719793109, - "c5": -10.407912581271551, - "c6": -2.958679224335306, - "c7": 10.188868291073227 + "points": { + "c1": 9.066380296039217, + "c2": 6.224908891984821, + "c3": 6.92579141216104, + "c4": 5.543583713040178, + "c5": -3.222421792713872, + "c6": 13.434334666045153, + "c7": 12.523740170864968 }, - "vertexSeeds": { - "c1": 7.5220558430385, - "c2": 7.366166540028388, - "c3": 6.929566652637792, - "c4": 6.543171669765471, - "c5": 6.555215128981729, - "c6": 6.358583433447114, - "c7": 6.350457362364295 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887658, + "c3": 9.130836800739717, + "c4": 7.304669440591765, + "c5": 5.478502080443824, + "c6": 3.6523347202958827, + "c7": 1.8261673601479413 }, "rgb": [222, 0, 59] }, @@ -246300,23 +246300,23 @@ "year": 1774, "resistanceReported": false, "duration": 1728000, - "curveSeeds": { - "c1": 0.39254412122117444, - "c2": -8.877916597730792, - "c3": 2.3299778320561177, - "c4": 1.3491222471315254, - "c5": -3.185270793426687, - "c6": -7.172033995664941, - "c7": 6.302593763664319 + "points": { + "c1": -10.881563785588355, + "c2": -9.42574781535767, + "c3": -11.138673863349023, + "c4": -3.8863469917808118, + "c5": -2.3418042498321423, + "c6": 13.553784870507307, + "c7": -7.667090197978005 }, - "vertexSeeds": { - "c1": 2.7824182597521165, - "c2": 2.7327917588984394, - "c3": 2.55983263398267, - "c4": 2.692841119910742, - "c5": 2.574922796063675, - "c6": 2.7873903713354986, - "c7": 2.5858133270743626 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [86, 146, 138] }, @@ -246327,23 +246327,23 @@ "year": 1775, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -40.520519277881306, - "c2": 24.29230766209355, - "c3": 45.95492337709115, - "c4": -14.742588376643496, - "c5": 3.834912068431464, - "c6": -4.595647634667721, - "c7": -38.29345132787051 + "points": { + "c1": 47.02028525714027, + "c2": -36.24388063473452, + "c3": 34.662138070209394, + "c4": -40.62455044992622, + "c5": -47.16577874664741, + "c6": 10.120462256742087, + "c7": -48.22724136574157 }, - "vertexSeeds": { - "c1": 2.1955958549222796, - "c2": 2.1955958549222796, - "c3": 2.1955958549222796, - "c4": 2.1955958549222796, - "c5": 2.1955958549222796, - "c6": 2.1955958549222796, - "c7": 2.1955958549222796 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -246354,23 +246354,23 @@ "year": 1774, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 13.85592350916287, - "c2": -3.053866853552069, - "c3": -17.015211634070848, - "c4": 14.239543941814844, - "c5": 24.752400192377984, - "c6": -32.80964106837472, - "c7": 27.35107955548181 + "points": { + "c1": 30.578271149491258, + "c2": -1.1268058574163646, + "c3": -17.041509982028536, + "c4": -9.76847213375062, + "c5": -9.579971404900647, + "c6": 25.774414005513307, + "c7": -10.732286610833892 }, - "vertexSeeds": { - "c1": 2.1939989320248077, - "c2": 2.2539814035788375, - "c3": 2.113286841165403, - "c4": 2.0392936962297634, - "c5": 1.932323815397959, - "c6": 2.15208381839047, - "c7": 1.9632152979444433 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551547, + "c4": 2.1821544151641237, + "c5": 1.6366158113730929, + "c6": 1.0910772075820618, + "c7": 0.5455386037910309 }, "rgb": [238, 201, 159] }, @@ -246381,23 +246381,23 @@ "year": 1774, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 14.643263041612265, - "c2": 0.05502217425931377, - "c3": 17.391494725202328, - "c4": -31.456274837122024, - "c5": 21.739178526454992, - "c6": -21.026755184286692, - "c7": -28.97226554214357 + "points": { + "c1": 31.682268611020632, + "c2": -25.704065815645848, + "c3": -13.281372642825293, + "c4": -24.643559787599713, + "c5": -33.83117504363409, + "c6": 21.929592712287068, + "c7": -27.36211369902938 }, - "vertexSeeds": { - "c1": 6.224820823446748, - "c2": 5.826395026262228, - "c3": 6.542884356338713, - "c4": 6.168965767248772, - "c5": 6.098392544826952, - "c6": 6.373150275798641, - "c7": 6.429302009325605 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [86, 146, 138] }, @@ -246408,23 +246408,23 @@ "year": 1774, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 25.232017052507118, - "c2": 15.676641968972035, - "c3": -20.900673754355427, - "c4": -0.10385584560760464, - "c5": 11.327602043324852, - "c6": -18.759257185930057, - "c7": 10.427611224853514 + "points": { + "c1": 27.41998653710239, + "c2": 20.414909486850625, + "c3": 4.049846390370405, + "c4": 33.504901441987016, + "c5": 14.495172659956879, + "c6": 4.366745762218677, + "c7": -18.450991438145437 }, - "vertexSeeds": { - "c1": 2.86954407170565, - "c2": 2.512099294165, - "c3": 2.6161820747476128, - "c4": 2.80028221704992, - "c5": 2.773370965572302, - "c6": 2.481274699723742, - "c7": 2.7734645676817196 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033289, + "c3": 3.467406380027738, + "c4": 2.7739251040221933, + "c5": 2.0804438280166417, + "c6": 1.3869625520110966, + "c7": 0.6934812760055514 }, "rgb": [222, 0, 59] }, @@ -246435,23 +246435,23 @@ "year": 1774, "resistanceReported": false, "duration": 1036800, - "curveSeeds": { - "c1": -5.435792887335181, - "c2": 1.1222770342839343, - "c3": 8.188205183182733, - "c4": -1.3751005396769092, - "c5": -0.5700958158828904, - "c6": -3.44128482780809, - "c7": -4.424731682985758 + "points": { + "c1": -0.7154751507412023, + "c2": -10.440661740548414, + "c3": 4.862361932847092, + "c4": -9.06846539450167, + "c5": -10.113287884003126, + "c6": -6.1180881330719, + "c7": 4.957657611820279 }, - "vertexSeeds": { - "c1": 6.193079800911479, - "c2": 6.702376193149899, - "c3": 6.4101759853550435, - "c4": 6.1808519093969325, - "c5": 6.788524060257379, - "c6": 6.721541533466161, - "c7": 6.142638468901251 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -246462,23 +246462,23 @@ "year": 1774, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -0.028761078822036268, - "c2": 35.77182943960962, - "c3": 36.49389173975504, - "c4": 0.16585230180918842, - "c5": 10.022559904394257, - "c6": -7.3193357091323925, - "c7": -4.541543072880941 + "points": { + "c1": -3.7148916305296495, + "c2": 18.151394083082074, + "c3": -34.04014736792288, + "c4": 7.9567288372587015, + "c5": -3.8224048557381636, + "c6": -12.755603042674505, + "c7": 6.176544224908092 }, - "vertexSeeds": { - "c1": 3.7594315814861283, - "c2": 3.6417607792790827, - "c3": 3.4957284318268, - "c4": 3.7430295531909374, - "c5": 3.863082661395499, - "c6": 3.6928306265465247, - "c7": 3.913225467162573 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304204, + "c4": 3.7540453074433624, + "c5": 2.8155339805825275, + "c6": 1.8770226537216852, + "c7": 0.9385113268608426 }, "rgb": [58, 15, 49] }, @@ -246489,23 +246489,23 @@ "year": 1774, "resistanceReported": false, "duration": 518400, - "curveSeeds": { - "c1": 1.5379270136024807, - "c2": -2.4576246400651893, - "c3": -6.594732981045613, - "c4": 7.624910386093072, - "c5": -2.269723251422933, - "c6": -1.8310504263580683, - "c7": -2.1816780874789305 + "points": { + "c1": -4.551060460106758, + "c2": 9.681204945502893, + "c3": -1.4951049854203102, + "c4": 5.581482215318092, + "c5": 8.880041057391024, + "c6": -6.970139326238142, + "c7": 11.886705327199786 }, - "vertexSeeds": { - "c1": 7.684781144671977, - "c2": 7.102035246237227, - "c3": 6.822414213389569, - "c4": 7.594844517084843, - "c5": 6.57591067893669, - "c6": 6.3551672735165265, - "c7": 7.0003575860970075 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.2464170134073, + "c4": 7.397133610725842, + "c5": 5.547850208044384, + "c6": 3.6985668053629257, + "c7": 1.8492834026814577 }, "rgb": [77, 76, 132] }, @@ -246516,23 +246516,23 @@ "year": 1774, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 22.44703023380061, - "c2": 1.2680439435283937, - "c3": -15.14916520089986, - "c4": 5.908703866708279, - "c5": -9.867257888828828, - "c6": 6.318451422242845, - "c7": 15.087842321536769 + "points": { + "c1": 18.311424488708646, + "c2": 7.498229044895538, + "c3": -28.422028801487468, + "c4": 25.52638018447398, + "c5": -3.7519473902314218, + "c6": -23.269464077969257, + "c7": -0.3207476642449585 }, - "vertexSeeds": { - "c1": 1.6491753698130012, - "c2": 1.5275326291707325, - "c3": 1.4899049432506422, - "c4": 1.5536000985252796, - "c5": 1.6676894692814477, - "c6": 1.4845950891207502, - "c7": 1.5392505308499813 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499306, + "c3": 2.0110957004160874, + "c4": 1.608876560332873, + "c5": 1.2066574202496545, + "c6": 0.8044382801664365, + "c7": 0.40221914008321824 }, "rgb": [238, 201, 159] }, @@ -246543,23 +246543,23 @@ "year": 1774, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 12.351886659976891, - "c2": -3.1105619287002497, - "c3": 29.26666551935196, - "c4": -5.502831342821899, - "c5": -30.771728309312152, - "c6": 25.831324363317776, - "c7": 31.40670695129174 + "points": { + "c1": -36.398383149611085, + "c2": 15.272765545697325, + "c3": -9.144365476797581, + "c4": -40.83593810073747, + "c5": -1.7852529597849056, + "c6": -1.4422877978879427, + "c7": 35.76403671539924 }, - "vertexSeeds": { - "c1": 7.0640037668749125, - "c2": 7.150727055234817, - "c3": 7.144380754366261, - "c4": 7.057333955840463, - "c5": 6.999275848906149, - "c6": 7.079006394079555, - "c7": 7.027603411273716 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882098, + "c3": 8.552935737401741, + "c4": 6.842348589921438, + "c5": 5.1317614424410785, + "c6": 3.421174294960719, + "c7": 1.7105871474803596 }, "rgb": [77, 76, 132] }, @@ -246570,23 +246570,23 @@ "year": 1774, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 40.89017326275429, - "c2": -32.31553553858656, - "c3": 3.369307551692856, - "c4": 13.016072889936126, - "c5": 34.79573965640027, - "c6": -36.0698161230234, - "c7": 2.6030907112563213 + "points": { + "c1": -38.733282045026, + "c2": 13.062492729430197, + "c3": 23.668200774253137, + "c4": -23.288577991765226, + "c5": -5.881774744015161, + "c6": 27.182548404348324, + "c7": 5.578145976956343 }, - "vertexSeeds": { - "c1": 6.645537164591889, - "c2": 6.716794803144969, - "c3": 6.680419723702167, - "c4": 6.814483145935645, - "c5": 6.697579370498275, - "c6": 6.684450281400309, - "c7": 6.669022003134418 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158097, + "c3": 8.136846971798457, + "c4": 6.509477577438753, + "c5": 4.8821081830790485, + "c6": 3.2547387887193437, + "c7": 1.6273693943597043 }, "rgb": [77, 76, 132] }, @@ -246597,23 +246597,23 @@ "year": 1776, "resistanceReported": false, "duration": 73958400, - "curveSeeds": { - "c1": 67.05108153813612, - "c2": 83.44615852517279, - "c3": 55.756499166391905, - "c4": -56.77318587853027, - "c5": 81.8632639410882, - "c6": 27.002114331038285, - "c7": -49.00198038111981 + "points": { + "c1": 61.688814770776474, + "c2": 33.76572713172406, + "c3": -15.341267092736985, + "c4": -67.49453431137613, + "c5": 86.47405112431207, + "c6": -75.69062370164738, + "c7": -8.572816476253763 }, - "vertexSeeds": { - "c1": 9.280290777532157, - "c2": 8.287715798008195, - "c3": 9.04040280916547, - "c4": 8.815543882883784, - "c5": 9.038500597760935, - "c6": 8.34954808812909, - "c7": 9.145375910355519 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.675450762829406, + "c3": 11.396208969024501, + "c4": 9.116967175219605, + "c5": 6.837725381414697, + "c6": 4.558483587609802, + "c7": 2.279241793804895 }, "rgb": [238, 201, 159] }, @@ -246624,23 +246624,23 @@ "year": 1775, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 6.79211151006669, - "c2": 33.82510398479796, - "c3": -5.739911681505248, - "c4": 19.406331658060566, - "c5": -10.37163375632423, - "c6": -0.3373065915477227, - "c7": 26.467676233408554 + "points": { + "c1": 41.30312552869003, + "c2": -25.486906301291853, + "c3": -27.23764823497735, + "c4": -34.327012208639154, + "c5": 3.6529445199393322, + "c6": 0.8275487432842468, + "c7": -37.19474315966291 }, - "vertexSeeds": { - "c1": 2.7831738586553714, - "c2": 2.805894763932526, - "c3": 2.784494312951558, - "c4": 2.631601559255836, - "c5": 2.5278304011398793, - "c6": 2.5571576876346036, - "c7": 2.6233155650040314 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [58, 15, 49] }, @@ -246651,23 +246651,23 @@ "year": 1775, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -24.17461935739796, - "c2": 2.9239290177761816, - "c3": -43.668471736883944, - "c4": -34.00007899214148, - "c5": 3.4887976445342517, - "c6": 13.326173850429655, - "c7": 30.70402630863532 + "points": { + "c1": 16.362035272879524, + "c2": -11.645172125742292, + "c3": -19.00697626101044, + "c4": -16.71598513840848, + "c5": 44.81716804526911, + "c6": 37.93614033420914, + "c7": 23.94613774788455 }, - "vertexSeeds": { - "c1": 1.7797627035841728, - "c2": 1.9197765764611057, - "c3": 1.8492748878178997, - "c4": 1.7895097596230989, - "c5": 1.8925092527352871, - "c6": 1.7858688106852918, - "c7": 1.827229778092748 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [86, 146, 138] }, @@ -246678,23 +246678,23 @@ "year": 1774, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 22.22225800093007, - "c2": 33.3432998075849, - "c3": 31.793529309186198, - "c4": 0.5860565850807902, - "c5": -2.581795581444979, - "c6": -34.54978424651391, - "c7": -12.97919965546797 + "points": { + "c1": 28.646685133369957, + "c2": -8.499240833808415, + "c3": 15.831404721502985, + "c4": 6.677161580992774, + "c5": -15.790101435638217, + "c6": 27.15979880624886, + "c7": 6.095785892069458 }, - "vertexSeeds": { - "c1": 6.955090331237651, - "c2": 7.180391792337407, - "c3": 7.33924198679896, - "c4": 7.184711764618816, - "c5": 7.097155390051904, - "c6": 7.3834927897133955, - "c7": 7.411631678492419 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -246705,23 +246705,23 @@ "year": 1775, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -43.51603824114425, - "c2": 39.49989529097349, - "c3": 35.35718558035875, - "c4": 23.01127672340879, - "c5": -24.649005666268938, - "c6": -36.01222218614154, - "c7": 32.751509019310866 + "points": { + "c1": -20.003350347724005, + "c2": -10.316286237619458, + "c3": 33.20064802454015, + "c4": 28.249933580556537, + "c5": 42.56143666427986, + "c6": 7.341410723120568, + "c7": -43.91384176264868 }, - "vertexSeeds": { - "c1": 2.6723046083451285, - "c2": 2.5288960223730013, - "c3": 2.4422841684292176, - "c4": 2.7511447260422375, - "c5": 2.5526001851431115, - "c6": 2.7643537357797, - "c7": 2.641512302058715 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [77, 76, 132] }, @@ -246732,23 +246732,23 @@ "year": 1774, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -30.326096293848146, - "c2": -23.743166499148266, - "c3": 11.038202047500135, - "c4": -19.02205709218804, - "c5": -28.404132623442422, - "c6": -16.954611961473017, - "c7": -16.511391791245998 + "points": { + "c1": 3.1895773709557247, + "c2": -13.157317936176444, + "c3": -4.020358111147885, + "c4": -31.130834056533253, + "c5": -32.639700694698426, + "c6": -30.061873758843547, + "c7": -10.09940505039581 }, - "vertexSeeds": { - "c1": 6.631033468495754, - "c2": 6.644627485404162, - "c3": 6.5865040583553265, - "c4": 6.635326256273151, - "c5": 6.611463539750348, - "c6": 6.5993537663979565, - "c7": 6.640444271617106 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796162, + "c3": 7.928802588996697, + "c4": 6.343042071197389, + "c5": 4.757281553398081, + "c6": 3.1715210355987735, + "c7": 1.5857605177993077 }, "rgb": [238, 201, 159] }, @@ -246759,23 +246759,23 @@ "year": 1775, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -12.731289126509335, - "c2": 34.76082489985609, - "c3": -5.803970284097019, - "c4": 14.238717685610183, - "c5": 23.248054607415582, - "c6": 40.635307916554424, - "c7": 5.747700465435798 + "points": { + "c1": 39.399606239921965, + "c2": -1.3910247841798977, + "c3": 34.18520507847006, + "c4": 34.1822727692349, + "c5": -5.311767670703688, + "c6": -28.285713738079735, + "c7": 16.414233388768473 }, - "vertexSeeds": { - "c1": 6.178418580160295, - "c2": 6.17142215716199, - "c3": 6.174186398166087, - "c4": 6.0302975674057455, - "c5": 6.049822652179128, - "c6": 6.003256146163758, - "c7": 5.985947536832558 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871007, + "c3": 7.397133610725831, + "c4": 5.917706888580654, + "c5": 4.438280166435528, + "c6": 2.958853444290352, + "c7": 1.479426722145176 }, "rgb": [86, 146, 138] }, @@ -246786,23 +246786,23 @@ "year": 1775, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": -31.417618071223156, - "c2": 18.956892834380604, - "c3": -46.3618026500725, - "c4": 32.373357445404515, - "c5": 36.117929174352746, - "c6": -9.37090020095561, - "c7": -49.67962904408739 + "points": { + "c1": -34.511269225822176, + "c2": -12.752789337883577, + "c3": -48.672849610426155, + "c4": 23.34172857928224, + "c5": 19.92871930123581, + "c6": -43.77441000645622, + "c7": 6.019751907186489 }, - "vertexSeeds": { - "c1": 6.719655785676305, - "c2": 6.657424459043497, - "c3": 6.279118123686924, - "c4": 6.615183231424469, - "c5": 6.085608097577912, - "c6": 6.269897114304141, - "c7": 5.740346181858305 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037445, + "c3": 8.067498844197878, + "c4": 6.4539990753583, + "c5": 4.840499306518723, + "c6": 3.226999537679145, + "c7": 1.6134997688395776 }, "rgb": [86, 146, 138] }, @@ -246813,23 +246813,23 @@ "year": 1775, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": -18.807583061799434, - "c2": 38.6592398130323, - "c3": -17.491507887165334, - "c4": 15.122094040467644, - "c5": 4.258516952069776, - "c6": 40.85935686535154, - "c7": 55.49104733040956 + "points": { + "c1": 5.549456587852816, + "c2": -48.670507038559535, + "c3": -1.4090481996476925, + "c4": -54.060525189664766, + "c5": 7.0275429862348915, + "c6": -47.35742132136034, + "c7": 32.73147476434089 }, - "vertexSeeds": { - "c1": 1.8905174585767122, - "c2": 1.8816924869426706, - "c3": 1.8956197975071987, - "c4": 1.8596877316769564, - "c5": 1.871503614240557, - "c6": 1.8480821098655178, - "c7": 1.883584293503973 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.801664355062417, + "c3": 2.3347202958853432, + "c4": 1.8677762367082784, + "c5": 1.400832177531204, + "c6": 0.9338881183541392, + "c7": 0.4669440591770742 }, "rgb": [58, 15, 49] }, @@ -246840,23 +246840,23 @@ "year": 1774, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -31.4840923543779, - "c2": 24.624669443514804, - "c3": 18.314899066765612, - "c4": -7.503943495655612, - "c5": 9.530158260118071, - "c6": -33.63413502319409, - "c7": 12.356242120200584 + "points": { + "c1": -6.435818620542193, + "c2": 24.66838668887101, + "c3": -10.791292998753548, + "c4": 4.832924547191077, + "c5": -38.67715361278852, + "c6": 13.433403688294064, + "c7": 6.375985683331471 }, - "vertexSeeds": { - "c1": 2.3763913951403, - "c2": 2.398137067633491, - "c3": 2.3981219328980474, - "c4": 2.431938271910203, - "c5": 2.5597768899686724, - "c6": 2.5140756729282154, - "c7": 2.5213833168732744 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [222, 0, 59] }, @@ -246867,23 +246867,23 @@ "year": 1775, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": -35.693676672192, - "c2": 43.41307490965505, - "c3": 4.359515371710707, - "c4": -22.117858654736217, - "c5": -30.708839497489965, - "c6": 28.113077816479674, - "c7": 40.56431181097906 + "points": { + "c1": 22.348866686572663, + "c2": 47.98664537860178, + "c3": 3.855006171714244, + "c4": -26.535429133108444, + "c5": -18.70110382415813, + "c6": -12.773943940527388, + "c7": 44.51196142345252 }, - "vertexSeeds": { - "c1": 8.882708586085432, - "c2": 8.738779969228286, - "c3": 8.752443762910609, - "c4": 8.87326555151286, - "c5": 8.8955334049909, - "c6": 8.824232866054473, - "c7": 8.754971388964233 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502105, + "c3": 10.63337956541837, + "c4": 8.50670365233471, + "c5": 6.3800277392510525, + "c6": 4.253351826167316, + "c7": 2.126675913083658 }, "rgb": [238, 201, 159] }, @@ -246894,23 +246894,23 @@ "year": 1775, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": 13.982002623930455, - "c2": 10.11562440354956, - "c3": -20.89935874187863, - "c4": 35.23084074443554, - "c5": -22.858213158526286, - "c6": -39.09363058538746, - "c7": 14.664969512635707 + "points": { + "c1": -33.52034941495886, + "c2": -49.418367212192386, + "c3": 33.82346136853282, + "c4": -29.85046436606082, + "c5": -4.984815914919167, + "c6": -3.7945882811024063, + "c7": 45.10616492160689 }, - "vertexSeeds": { - "c1": 6.0404318316857015, - "c2": 6.037141508016663, - "c3": 6.005548237897114, - "c4": 6.0328906050552, - "c5": 6.034440561074239, - "c6": 6.024012102107091, - "c7": 6.041442068061321 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589405, + "c3": 7.2353213129912985, + "c4": 5.7882570503930015, + "c5": 4.341192787794703, + "c6": 2.8941285251964044, + "c7": 1.4470642625982981 }, "rgb": [77, 76, 132] }, @@ -246921,23 +246921,23 @@ "year": 1774, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 15.66305632445789, - "c2": 31.354929251328954, - "c3": 19.212489609020537, - "c4": 4.086633785912213, - "c5": 10.17981052122746, - "c6": 10.526807660879456, - "c7": 6.645506014192861 + "points": { + "c1": 22.636668553521552, + "c2": 22.14053039365413, + "c3": -37.978523619047536, + "c4": -32.67281077513428, + "c5": 26.22638672324871, + "c6": 29.56209939651052, + "c7": 20.24808347150873 }, - "vertexSeeds": { - "c1": 8.155547101871525, - "c2": 8.152299831779718, - "c3": 7.883315898363576, - "c4": 7.995988224849328, - "c5": 7.992679569898144, - "c6": 8.04175690832969, - "c7": 7.945689415396252 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013856, + "c3": 9.77808599167823, + "c4": 7.822468793342571, + "c5": 5.8668515950069455, + "c6": 3.9112343966712855, + "c7": 1.9556171983356603 }, "rgb": [58, 15, 49] }, @@ -246948,23 +246948,23 @@ "year": 1774, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 6.104559171721135, - "c2": -1.685213517877834, - "c3": 5.797422934240984, - "c4": 15.5093759323251, - "c5": 21.26931182034145, - "c6": -30.68257906520445, - "c7": 11.461755423438568 + "points": { + "c1": 40.12155967412692, + "c2": -8.028302004858446, + "c3": 15.677799303077315, + "c4": 5.157160984434832, + "c5": 6.222977399397692, + "c6": 14.35981846035989, + "c7": 10.138252381802538 }, - "vertexSeeds": { - "c1": 7.183228074833537, - "c2": 7.194522679705017, - "c3": 7.20705980950008, - "c4": 7.147810188422439, - "c5": 7.272212886263589, - "c6": 7.133861236029079, - "c7": 7.246885880119924 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123401, + "c3": 8.691631992602879, + "c4": 6.953305594082268, + "c5": 5.214979195561744, + "c6": 3.476652797041134, + "c7": 1.7383263985205237 }, "rgb": [77, 76, 132] }, @@ -246975,23 +246975,23 @@ "year": 1774, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 22.192871733411017, - "c2": -5.38237498989216, - "c3": 6.2315987844765885, - "c4": 17.19447149389626, - "c5": 6.966884442331832, - "c6": 5.509857784324783, - "c7": -23.780008854226562 + "points": { + "c1": -21.20141660576506, + "c2": 8.857599609445558, + "c3": -19.683857677671302, + "c4": 7.6571132572201535, + "c5": -3.0466273768980514, + "c6": -4.084742100466041, + "c7": 12.526121180859164 }, - "vertexSeeds": { - "c1": 7.761492708871359, - "c2": 7.513160522734482, - "c3": 7.479409401692332, - "c4": 7.8080253114947995, - "c5": 7.766940959322188, - "c6": 7.547888519061816, - "c7": 7.611693791670201 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370314, + "c3": 9.408229311141923, + "c4": 7.5265834489135335, + "c5": 5.644937586685143, + "c6": 3.7632917244567814, + "c7": 1.8816458622283907 }, "rgb": [77, 76, 132] }, @@ -247002,23 +247002,23 @@ "year": 1774, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -34.35317719835989, - "c2": 7.161982873462186, - "c3": 16.25999922951928, - "c4": -36.81140047762125, - "c5": -38.763445066308314, - "c6": 29.295035771348005, - "c7": 2.3353007713669243 + "points": { + "c1": 24.104063136623402, + "c2": -31.48982083426147, + "c3": -5.5515232106973045, + "c4": -9.437398863785937, + "c5": 14.23695590997756, + "c6": -28.588207609350604, + "c7": -9.143320860875555 }, - "vertexSeeds": { - "c1": 6.499457314396434, - "c2": 6.090154905550482, - "c3": 6.034186667421722, - "c4": 6.370674988297312, - "c5": 5.930092003409896, - "c6": 6.326819065709221, - "c7": 6.205233958800428 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [58, 15, 49] }, @@ -247029,23 +247029,23 @@ "year": 1775, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": -47.26161192690867, - "c2": -37.28731005772296, - "c3": 26.005680776295627, - "c4": -42.0774142250438, - "c5": -45.320182738312724, - "c6": -22.126505717748646, - "c7": 46.50166276705419 + "points": { + "c1": 43.25627812066741, + "c2": 29.166275594251438, + "c3": 38.55705975006429, + "c4": -52.95694557750743, + "c5": -28.0184093170843, + "c6": -30.813084577527665, + "c7": 35.82021574386628 }, - "vertexSeeds": { - "c1": 7.983104438391371, - "c2": 7.998401419533051, - "c3": 7.976944180810613, - "c4": 8.061304120700795, - "c5": 7.88138962211564, - "c6": 8.070256062654979, - "c7": 8.022084762120642 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852977, + "c3": 9.685621821544139, + "c4": 7.748497457235303, + "c5": 5.811373092926468, + "c6": 3.874248728617672, + "c7": 1.937124364308836 }, "rgb": [222, 0, 59] }, @@ -247056,23 +247056,23 @@ "year": 1774, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -8.42642221063754, - "c2": 5.437799184251496, - "c3": -7.71224206349941, - "c4": -14.186051104356189, - "c5": -35.21415168776945, - "c6": -7.2089633171678145, - "c7": -14.449203273068719 + "points": { + "c1": -42.010850589854655, + "c2": -41.84055691425041, + "c3": 43.00725051808673, + "c4": -21.876545083727855, + "c5": -5.121064879533137, + "c6": -32.04722390560019, + "c7": -1.2451999087925572 }, - "vertexSeeds": { - "c1": 10.154821956661321, - "c2": 10.183863626822724, - "c3": 10.147806057519139, - "c4": 10.191471218498977, - "c5": 10.404206023528308, - "c6": 9.51193736417988, - "c7": 10.644420706708797 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363392, + "c3": 12.852519648636145, + "c4": 10.282015718908921, + "c5": 7.711511789181696, + "c6": 5.141007859454461, + "c7": 2.5705039297272236 }, "rgb": [77, 76, 132] }, @@ -247083,23 +247083,23 @@ "year": 1774, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -20.28273545816162, - "c2": 19.100236210944956, - "c3": 22.6096407274296, - "c4": -9.846111828916882, - "c5": 9.220518613270677, - "c6": -18.46051897034279, - "c7": -3.6613246554676486 + "points": { + "c1": 1.5795872042725279, + "c2": 3.5257964057373243, + "c3": -5.605668263803082, + "c4": -23.46050991153424, + "c5": 2.1216160253081355, + "c6": -20.88660572480603, + "c7": -21.461226883243356 }, - "vertexSeeds": { - "c1": 5.896421029296264, - "c2": 5.994973466054744, - "c3": 5.831927860116296, - "c4": 6.0781624684164575, - "c5": 5.911843033943983, - "c6": 5.789629273034594, - "c7": 5.834000864573367 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.76560332871013, + "c3": 7.3046694405917645, + "c4": 5.843735552473414, + "c5": 4.382801664355065, + "c6": 2.921867776236715, + "c7": 1.4609338881183496 }, "rgb": [58, 15, 49] }, @@ -247110,23 +247110,23 @@ "year": 1774, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -27.696143083049805, - "c2": -8.584349974663802, - "c3": 26.022035567759207, - "c4": -9.153051731682488, - "c5": 1.3980670999637255, - "c6": -2.112351894001389, - "c7": -17.985497144789367 + "points": { + "c1": 12.403852958754765, + "c2": -17.01963488841777, + "c3": -16.67091345305227, + "c4": -27.362286999241096, + "c5": 4.5773598593834315, + "c6": 4.618290509800982, + "c7": -25.96282391856397 }, - "vertexSeeds": { - "c1": 8.415672176111078, - "c2": 8.218286582933946, - "c3": 8.986959738520374, - "c4": 7.92703445676877, - "c5": 7.796272683193178, - "c6": 9.104637855927516, - "c7": 7.797969040570404 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110953, + "c3": 11.55802126675913, + "c4": 9.246417013407301, + "c5": 6.93481276005548, + "c6": 4.623208506703651, + "c7": 2.3116042533518217 }, "rgb": [77, 76, 132] }, @@ -247137,23 +247137,23 @@ "year": 1774, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 23.767031494802033, - "c2": 10.35721196157845, - "c3": -29.40887069739086, - "c4": 23.01389594845844, - "c5": -31.055475017570576, - "c6": 25.714357012831712, - "c7": -6.596608154486248 + "points": { + "c1": 7.497570643375219, + "c2": -29.161270386037774, + "c3": 32.44011042319399, + "c4": 18.70126555861922, + "c5": 11.989509968838718, + "c6": 23.99775735779479, + "c7": 9.084347171342237 }, - "vertexSeeds": { - "c1": 4.301974831646077, - "c2": 4.663878608143161, - "c3": 4.610054430562286, - "c4": 4.324765260619842, - "c5": 4.1004243346849645, - "c6": 4.205672431326394, - "c7": 4.406013223191128 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -247164,23 +247164,23 @@ "year": 1775, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 30.136255758039, - "c2": -32.637393242925285, - "c3": 32.97918310870703, - "c4": 39.82387736049253, - "c5": -43.98893092286268, - "c6": 38.508722516856054, - "c7": -33.88457201872163 + "points": { + "c1": 37.48905899595988, + "c2": -2.5582303851242756, + "c3": -28.939332542684827, + "c4": 32.468864988424656, + "c5": -42.97619941003456, + "c6": 37.99344976420056, + "c7": -29.046922672750107 }, - "vertexSeeds": { - "c1": 9.257655562837023, - "c2": 9.337391862776576, - "c3": 9.216819316945566, - "c4": 9.229437574793742, - "c5": 9.269532408342718, - "c6": 9.318476972170938, - "c7": 9.209552459317035 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.370319001386916, + "c3": 11.141932501155818, + "c4": 8.91354600092461, + "c5": 6.685159500693513, + "c6": 4.456773000462305, + "c7": 2.2283865002310974 }, "rgb": [58, 15, 49] }, @@ -247191,23 +247191,23 @@ "year": 1774, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 18.658163303005807, - "c2": 14.376272357551969, - "c3": -3.198078279480228, - "c4": -25.18250172966361, - "c5": 37.639394780645134, - "c6": 35.39479106202019, - "c7": -32.210738664481994 + "points": { + "c1": 24.981986946435512, + "c2": 2.004222673107371, + "c3": -35.5896536275976, + "c4": -34.06056407095333, + "c5": -35.79878970016123, + "c6": 6.995688804443986, + "c7": -0.6040111948592326 }, - "vertexSeeds": { - "c1": 4.126700916403356, - "c2": 3.613801929701763, - "c3": 3.6575429432825524, - "c4": 4.307311668879935, - "c5": 4.136502698667779, - "c6": 3.8304486805639164, - "c7": 3.647798785356436 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969486, + "c3": 5.154877484974575, + "c4": 4.123901987979659, + "c5": 3.092926490984743, + "c6": 2.061950993989832, + "c7": 1.030975496994916 }, "rgb": [86, 146, 138] }, @@ -247218,23 +247218,23 @@ "year": 1775, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 33.205958798952715, - "c2": 28.238609289044724, - "c3": -25.141101132802703, - "c4": -26.901559270131933, - "c5": 16.185722145521517, - "c6": -18.30407268337617, - "c7": 36.41968588880477 + "points": { + "c1": 24.43853569179918, + "c2": 16.256891152910107, + "c3": -7.07289498953908, + "c4": -20.615935281796087, + "c5": 9.683378329986866, + "c6": 4.638604047807192, + "c7": 20.532928206752167 }, - "vertexSeeds": { - "c1": 7.04141823133344, - "c2": 6.955307230815398, - "c3": 6.70556825702447, - "c4": 6.676856350652903, - "c5": 6.785896590465245, - "c6": 6.929430448207495, - "c7": 6.690477313258361 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640769, + "c3": 8.414239482200658, + "c4": 6.731391585760521, + "c5": 5.048543689320384, + "c6": 3.365695792880275, + "c7": 1.6828478964401374 }, "rgb": [86, 146, 138] }, @@ -247245,23 +247245,23 @@ "year": 1775, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 18.796438265277338, - "c2": -35.91189204732788, - "c3": -44.42670993872242, - "c4": 44.43373456100533, - "c5": 1.2299313931769689, - "c6": -27.774937310195323, - "c7": 20.00269607137995 + "points": { + "c1": -4.215530459915485, + "c2": -6.949085255394415, + "c3": -26.988340117166015, + "c4": -36.154964079913015, + "c5": -18.233271563242077, + "c6": -38.03781282846005, + "c7": 31.234451045040565 }, - "vertexSeeds": { - "c1": 4.14695349954194, - "c2": 3.9160226666862625, - "c3": 3.8671696329625957, - "c4": 3.97356769699637, - "c5": 4.055783392213766, - "c6": 4.350852431517521, - "c7": 4.3065733962420305 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -247272,23 +247272,23 @@ "year": 1774, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 29.044682085622597, - "c2": 8.455567021200025, - "c3": 24.03909540488185, - "c4": -18.626035891972094, - "c5": -16.122066806651944, - "c6": -5.511450700718594, - "c7": 23.228294434402514 + "points": { + "c1": 30.89281962216897, + "c2": -20.228237054383584, + "c3": 4.457838513257975, + "c4": 11.379743867103343, + "c5": -10.315000256755631, + "c6": -27.91832801132695, + "c7": 4.487914253398294 }, - "vertexSeeds": { - "c1": 4.225044981982867, - "c2": 4.07556979505523, - "c3": 3.934307938220426, - "c4": 4.3148287207059655, - "c5": 3.9499690363926843, - "c6": 4.039776928885755, - "c7": 4.3040141231769775 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [77, 76, 132] }, @@ -247299,23 +247299,23 @@ "year": 1775, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -31.789313854867075, - "c2": 17.116325744938194, - "c3": 25.719873588438972, - "c4": 24.917817422343774, - "c5": -9.5867215704205, - "c6": 21.6488653539189, - "c7": -36.288472911274994 + "points": { + "c1": 36.38060414259644, + "c2": 20.52165801920131, + "c3": -37.34328654783998, + "c4": 37.402173713408416, + "c5": -40.95308449667815, + "c6": 28.987373237976897, + "c7": 5.391988465020624 }, - "vertexSeeds": { - "c1": 6.250838668145897, - "c2": 5.721619674071483, - "c3": 6.5190903908439415, - "c4": 6.784264827698369, - "c5": 6.1327606435925395, - "c6": 5.719758809875247, - "c7": 5.668097112656614 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -247326,23 +247326,23 @@ "year": 1775, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 32.867652908308585, - "c2": 14.472521561218208, - "c3": -28.392405384411497, - "c4": -17.682111106387868, - "c5": -31.264550093696197, - "c6": 26.814257499873847, - "c7": 23.014565614652085 + "points": { + "c1": -19.773230686387805, + "c2": -8.11687871717799, + "c3": -1.1489425306800811, + "c4": -21.2668679424173, + "c5": -39.67773207347746, + "c6": -27.20766788799232, + "c7": 32.37949050938175 }, - "vertexSeeds": { - "c1": 6.645280868381158, - "c2": 6.35004369894668, - "c3": 6.658346984565566, - "c4": 6.461329871562298, - "c5": 5.840099642123148, - "c6": 5.847046795902155, - "c7": 5.714326672726193 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -247353,23 +247353,23 @@ "year": 1775, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": -19.039140668193156, - "c2": -44.01162266770685, - "c3": -40.75656800377475, - "c4": -12.478998814827463, - "c5": 15.457434493808933, - "c6": -32.30413354525315, - "c7": 2.622595836401402 + "points": { + "c1": 27.06583942572398, + "c2": -56.19402994880946, + "c3": 54.558607302499794, + "c4": -44.169687574816855, + "c5": 30.97998496636231, + "c6": -40.37903671307635, + "c7": -15.2549482760692 }, - "vertexSeeds": { - "c1": 5.849301987529013, - "c2": 5.701024777415324, - "c3": 5.6440696283261635, - "c4": 5.66973635178723, - "c5": 5.721867425248183, - "c6": 5.554700637014993, - "c7": 5.4877275848477955 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187252, + "c3": 7.004160887656029, + "c4": 5.603328710124835, + "c5": 4.202496532593612, + "c6": 2.8016643550624174, + "c7": 1.4008321775312227 }, "rgb": [238, 201, 159] }, @@ -247380,23 +247380,23 @@ "year": 1775, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -9.204892510788056, - "c2": -40.98249270691668, - "c3": -23.281372034798302, - "c4": -12.99450864629059, - "c5": 20.656270005428965, - "c6": 6.3267074177048315, - "c7": -26.620245072106812 + "points": { + "c1": -0.19078272608310698, + "c2": -6.684569226946962, + "c3": -31.280973352574208, + "c4": 38.477842387026, + "c5": -15.626737532036639, + "c6": -3.9015318444981233, + "c7": 34.993519987596414 }, - "vertexSeeds": { - "c1": 9.063234147469378, - "c2": 8.99390889838043, - "c3": 8.961791955300987, - "c4": 8.880743355752939, - "c5": 8.742378387424832, - "c6": 9.124433062811429, - "c7": 8.925085235994246 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.31484049930651, + "c3": 11.095700416088777, + "c4": 8.876560332871016, + "c5": 6.657420249653255, + "c6": 4.438280166435522, + "c7": 2.219140083217761 }, "rgb": [86, 146, 138] }, @@ -247407,23 +247407,23 @@ "year": 1775, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 41.31781220394143, - "c2": 23.513676251648405, - "c3": -4.240648784794594, - "c4": -25.707126661365436, - "c5": -27.070582709863366, - "c6": -36.24047618751841, - "c7": -3.9771568799898063 + "points": { + "c1": -48.206797494512834, + "c2": 3.999724477338688, + "c3": 32.106079909562496, + "c4": -2.8826929764519846, + "c5": -2.3508985939855336, + "c6": 26.95427075455288, + "c7": 42.205379159333475 }, - "vertexSeeds": { - "c1": 6.748794566080889, - "c2": 6.880349237590659, - "c3": 7.16015001013598, - "c4": 6.7253063301752, - "c5": 6.6505417016669774, - "c6": 6.87427794795855, - "c7": 6.8869450956759986 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.576051779935268, + "c4": 6.860841423948211, + "c5": 5.145631067961174, + "c6": 3.430420711974116, + "c7": 1.715210355987058 }, "rgb": [238, 201, 159] }, @@ -247434,23 +247434,23 @@ "year": 1774, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": 9.311072422732988, - "c2": -17.417518722981495, - "c3": 6.480927726790092, - "c4": 4.497491685795243, - "c5": -18.67171037264486, - "c6": -1.1764407702163062, - "c7": 12.730318202119886 + "points": { + "c1": -16.50057456095665, + "c2": 7.061034706174382, + "c3": 17.722305131918464, + "c4": -18.84371681436797, + "c5": -19.39796525330309, + "c6": -20.625019815884464, + "c7": -21.485991486576335 }, - "vertexSeeds": { - "c1": 2.318440623472002, - "c2": 2.364786109339996, - "c3": 2.450205721660682, - "c4": 2.4415416163660058, - "c5": 2.324782271600356, - "c6": 2.363374115312366, - "c7": 2.3428042707799346 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228854, + "c3": 3.0050855293573724, + "c4": 2.404068423485903, + "c5": 1.803051317614427, + "c6": 1.2020342117429514, + "c7": 0.6010171058714757 }, "rgb": [238, 201, 159] }, @@ -247461,23 +247461,23 @@ "year": 1774, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -21.727021976783217, - "c2": 36.22890524080346, - "c3": -1.825936063538947, - "c4": -6.673021922159354, - "c5": 1.3656439936045857, - "c6": -3.6220558993095864, - "c7": -30.450726029257645 + "points": { + "c1": -33.02505213580773, + "c2": -39.56565718582435, + "c3": -35.53159813061146, + "c4": -3.6395805938046877, + "c5": -25.612652931814416, + "c6": 2.9717620380557364, + "c7": 32.48140590886843 }, - "vertexSeeds": { - "c1": 7.328818313972749, - "c2": 7.74354825802417, - "c3": 7.688181628174137, - "c4": 7.380048465023529, - "c5": 7.431387609365707, - "c6": 7.3392883253733485, - "c7": 7.425980334296362 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450767, + "c3": 9.454461396208977, + "c4": 7.563569116967185, + "c5": 5.672676837725393, + "c6": 3.781784558483582, + "c7": 1.890892279241791 }, "rgb": [86, 146, 138] }, @@ -247488,23 +247488,23 @@ "year": 1775, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -30.948316550500973, - "c2": 45.15236109751026, - "c3": -33.08814171266684, - "c4": -52.259923485182085, - "c5": -22.805965869477717, - "c6": -37.383055548479945, - "c7": -7.52430392159345 + "points": { + "c1": -53.632310274246564, + "c2": 5.018330271763112, + "c3": 15.360686270657332, + "c4": -44.256759361480164, + "c5": 2.9184423219148385, + "c6": 3.7000914779011183, + "c7": 1.3272400002667766 }, - "vertexSeeds": { - "c1": 15.495679288766066, - "c2": 15.765426661142607, - "c3": 15.758847363813032, - "c4": 15.281930600192347, - "c5": 15.258803190499922, - "c6": 15.922447146912038, - "c7": 15.810066938916998 + "offsets": { + "c1": 26.957928802589, + "c2": 23.106796116504853, + "c3": 19.255663430420714, + "c4": 15.40453074433657, + "c5": 11.553398058252426, + "c6": 7.702265372168285, + "c7": 3.8511326860841426 }, "rgb": [77, 76, 132] }, @@ -247515,23 +247515,23 @@ "year": 1775, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 3.9178007132919035, - "c2": -43.18493786940353, - "c3": -3.960131188232637, - "c4": -6.447701249041998, - "c5": 7.489263716935739, - "c6": -2.9326282613106116, - "c7": 38.78899817339755 + "points": { + "c1": -18.50365418056397, + "c2": -6.248590998876516, + "c3": 47.61330923864853, + "c4": -8.390750984982205, + "c5": -21.32695672804555, + "c6": -39.5042065783909, + "c7": -24.31321846412221 }, - "vertexSeeds": { - "c1": 3.1135442071939456, - "c2": 3.45442180145732, - "c3": 3.3603252471653855, - "c4": 3.4746320520055716, - "c5": 3.4661613903581077, - "c6": 3.4689107211825942, - "c7": 3.385707419233976 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400834, + "c3": 4.253351826167364, + "c4": 3.4026814609338873, + "c5": 2.552011095700417, + "c6": 1.7013407304669468, + "c7": 0.8506703652334765 }, "rgb": [86, 146, 138] }, @@ -247542,23 +247542,23 @@ "year": 1775, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -36.477120835689114, - "c2": 17.327141690569917, - "c3": -23.67571333179061, - "c4": 23.42329297783843, - "c5": -14.133825898517347, - "c6": 36.41357141076607, - "c7": 31.52095269685894 + "points": { + "c1": 5.0127969466854765, + "c2": 31.141955062292027, + "c3": 12.640626866038119, + "c4": 28.25721491369268, + "c5": -15.696144506224535, + "c6": 9.78867403198199, + "c7": 25.42999288214861 }, - "vertexSeeds": { - "c1": 5.830756397015863, - "c2": 6.462817004947876, - "c3": 5.748242151827643, - "c4": 6.619783423323101, - "c5": 5.929440855456427, - "c6": 5.8312277446849885, - "c7": 6.2939425838811545 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -247569,23 +247569,23 @@ "year": 1774, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 18.9052000831421, - "c2": -28.097167212765417, - "c3": -24.16458401211732, - "c4": -25.334815525999193, - "c5": 26.618804190932792, - "c6": -1.4608611805038478, - "c7": -3.8682268927446586 + "points": { + "c1": -25.671232271162534, + "c2": -8.693317293787395, + "c3": -5.4818399093435275, + "c4": -23.481258683394945, + "c5": -25.970484859983248, + "c6": 26.6968533760133, + "c7": -30.26592628192248 }, - "vertexSeeds": { - "c1": 3.898429996328277, - "c2": 3.6637757387520082, - "c3": 3.5364215592228057, - "c4": 4.01923557662527, - "c5": 4.067055372424739, - "c6": 4.013229636868575, - "c7": 3.737586151460255 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607491, + "c3": 4.946833102172905, + "c4": 3.9574664817383254, + "c5": 2.9680998613037457, + "c6": 1.9787332408691658, + "c7": 0.9893666204345798 }, "rgb": [58, 15, 49] }, @@ -247596,23 +247596,23 @@ "year": 1774, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -5.961939265659414, - "c2": -19.950321466209644, - "c3": -5.200566482495461, - "c4": 23.313881872970008, - "c5": -31.067561949854568, - "c6": -20.83908109692022, - "c7": -12.24011323739224 + "points": { + "c1": 1.472967889612704, + "c2": 20.91940940866948, + "c3": 11.625912877777793, + "c4": -11.780789242017882, + "c5": 10.744641433886848, + "c6": 3.0041176377057184, + "c7": -16.318046887654443 }, - "vertexSeeds": { - "c1": 6.67363243784644, - "c2": 6.028376536539393, - "c3": 6.884618387406102, - "c4": 6.984988330543105, - "c5": 6.927326619680728, - "c6": 7.111995111179965, - "c7": 6.221891375744262 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841889, + "c3": 8.529819694868232, + "c4": 6.823855755894589, + "c5": 5.117891816920944, + "c6": 3.4119278779472997, + "c7": 1.7059639389736445 }, "rgb": [86, 146, 138] }, @@ -247623,23 +247623,23 @@ "year": 1775, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 25.710406267515815, - "c2": -8.54389024456864, - "c3": -37.999397298477795, - "c4": -26.44761149836371, - "c5": -28.18147964288749, - "c6": -29.428536651784967, - "c7": 10.48454142371672 + "points": { + "c1": 14.438872526299853, + "c2": -20.527754736094845, + "c3": -17.306887818172942, + "c4": -31.49665997252896, + "c5": 39.51153791836306, + "c6": -14.641199408112254, + "c7": -26.533199805183273 }, - "vertexSeeds": { - "c1": 5.21838873300774, - "c2": 4.976356238213265, - "c3": 5.190014794756943, - "c4": 5.074657565543564, - "c5": 5.1467728807589594, - "c6": 5.191032665015595, - "c7": 5.363341049952664 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385112, + "c4": 5.177993527508089, + "c5": 3.8834951456310645, + "c6": 2.5889967637540408, + "c7": 1.294498381877017 }, "rgb": [238, 201, 159] }, @@ -247650,23 +247650,23 @@ "year": 1775, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -5.266561419667482, - "c2": 4.582128290164611, - "c3": -2.4645974720625787, - "c4": -4.5781781979584295, - "c5": -37.433454009204794, - "c6": -22.36750335165384, - "c7": 10.250930434095352 + "points": { + "c1": -25.2364864851945, + "c2": -15.87066308810856, + "c3": 14.70880584840161, + "c4": 24.832935743549697, + "c5": -0.4035343095806354, + "c6": 25.575287002353022, + "c7": 15.294211836411073 }, - "vertexSeeds": { - "c1": 3.9035150639272427, - "c2": 3.6498179705288987, - "c3": 3.939481630717795, - "c4": 4.090208481821255, - "c5": 3.7759170993843516, - "c6": 3.7893947863524655, - "c7": 3.959269128833538 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728154, + "c3": 5.016181229773465, + "c4": 4.0129449838187705, + "c5": 3.009708737864077, + "c6": 2.006472491909388, + "c7": 1.003236245954694 }, "rgb": [58, 15, 49] }, @@ -247677,23 +247677,23 @@ "year": 1775, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": -13.219087450093014, - "c2": -50.26148174664036, - "c3": 1.6530190700443654, - "c4": 10.638159491377927, - "c5": -49.66155963525648, - "c6": 27.985498624361973, - "c7": 2.582493904575223 + "points": { + "c1": -13.519485509655347, + "c2": 23.503527442232787, + "c3": -13.931512196206782, + "c4": -19.94069379232048, + "c5": -34.2613787831596, + "c6": -6.800073812605632, + "c7": 43.42976423501063 }, - "vertexSeeds": { - "c1": 7.484476388475503, - "c2": 7.521399948858294, - "c3": 7.51107812346093, - "c4": 7.679541442423268, - "c5": 7.602838851514016, - "c6": 7.604576321989451, - "c7": 7.681034806708696 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968123, + "c3": 9.177068885806742, + "c4": 7.3416551086454165, + "c5": 5.506241331484034, + "c6": 3.6708275543227082, + "c7": 1.835413777161326 }, "rgb": [86, 146, 138] }, @@ -247704,23 +247704,23 @@ "year": 1775, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 20.50938397293885, - "c2": 14.398114692389868, - "c3": 14.104783710778449, - "c4": -19.826165310044892, - "c5": 14.367600622083387, - "c6": -45.3132287610447, - "c7": -44.95119334504381 + "points": { + "c1": -38.23345224814916, + "c2": -33.889746964321816, + "c3": 27.240495605419554, + "c4": -21.60631679583448, + "c5": -34.946802812348984, + "c6": -28.218284453929282, + "c7": 51.16147089882908 }, - "vertexSeeds": { - "c1": 7.905731046877694, - "c2": 8.456222393000047, - "c3": 7.753633754189156, - "c4": 7.577672110855667, - "c5": 8.42118905021995, - "c6": 8.140706996784939, - "c7": 7.7275222722351815 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220527, + "c3": 10.47156726768377, + "c4": 8.377253814147014, + "c5": 6.28294036061027, + "c6": 4.188626907073513, + "c7": 2.0943134535367567 }, "rgb": [77, 76, 132] }, @@ -247731,23 +247731,23 @@ "year": 1775, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -8.48664714120222, - "c2": -6.682812051890984, - "c3": 29.599683767150985, - "c4": -36.890720100940264, - "c5": -5.786369480099189, - "c6": 2.3726418110062895, - "c7": -7.50524267023129 + "points": { + "c1": 38.83016294592205, + "c2": 27.520928934607987, + "c3": 18.745585261628797, + "c4": 15.545025257084141, + "c5": -30.853468264288924, + "c6": -22.82738378454406, + "c7": -26.779842974948988 }, - "vertexSeeds": { - "c1": 3.322819715469347, - "c2": 3.5670046251491385, - "c3": 2.904417825743522, - "c4": 2.9030626996345723, - "c5": 3.7653809927229127, - "c6": 3.0772115001365643, - "c7": 2.9208052465492833 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044383, + "c3": 4.623208506703652, + "c4": 3.698566805362919, + "c5": 2.7739251040221897, + "c6": 1.8492834026814595, + "c7": 0.9246417013407298 }, "rgb": [86, 146, 138] }, @@ -247758,23 +247758,23 @@ "year": 1774, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -4.1501757508717425, - "c2": 33.66784726620641, - "c3": 34.10453252086437, - "c4": -14.228302044532825, - "c5": -29.362552605487643, - "c6": -27.062400286574103, - "c7": -5.53150861486262 + "points": { + "c1": 37.65584999627518, + "c2": -22.825299387424476, + "c3": 0.3432555417177383, + "c4": 9.114410544055211, + "c5": 24.0605185177008, + "c6": 24.794155224115656, + "c7": 31.99294826753173 }, - "vertexSeeds": { - "c1": 9.661778153869495, - "c2": 10.010079870282437, - "c3": 9.897346977287551, - "c4": 9.877811582381403, - "c5": 10.051133778540802, - "c6": 9.303714680982639, - "c7": 9.210629245549434 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.284327323162264, + "c3": 12.736939435968562, + "c4": 10.18955154877485, + "c5": 7.6421636615811375, + "c6": 5.094775774387425, + "c7": 2.5473878871937123 }, "rgb": [58, 15, 49] }, @@ -247785,23 +247785,23 @@ "year": 1774, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -23.659824246450146, - "c2": 3.5676932669417063, - "c3": -2.4537370762166475, - "c4": 18.83677750149656, - "c5": -19.80264164707408, - "c6": 0.06871517480277944, - "c7": 19.79101770901502 + "points": { + "c1": -7.900399469504073, + "c2": 8.630677903168444, + "c3": -23.526406290367575, + "c4": -5.17495867971132, + "c5": -26.96137450141777, + "c6": 27.392674124885158, + "c7": -6.045134578178633 }, - "vertexSeeds": { - "c1": 4.65051579314996, - "c2": 4.665412149587124, - "c3": 4.790277653260838, - "c4": 4.547363982013187, - "c5": 4.16372133190818, - "c6": 4.37158403831611, - "c7": 4.409431998688117 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -247812,23 +247812,23 @@ "year": 1774, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": 1.773195374690907, - "c2": -1.3634985529554555, - "c3": -10.376967416707627, - "c4": -3.7429057998099484, - "c5": -8.495018810617495, - "c6": -9.214128243848524, - "c7": 8.944930645746382 + "points": { + "c1": 1.0450976208716156, + "c2": 0.8708250279095076, + "c3": 3.407831444922195, + "c4": 13.526704244415612, + "c5": -5.693622672959215, + "c6": -17.756851006519735, + "c7": -15.2989774796131 }, - "vertexSeeds": { - "c1": 3.4202064820586284, - "c2": 3.4079981551561462, - "c3": 3.419708238337365, - "c4": 3.4125488790368204, - "c5": 3.408963052930567, - "c6": 3.4223544843277622, - "c7": 3.401322628952485 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159524, + "c3": 4.114655570966216, + "c4": 3.291724456772989, + "c5": 2.468793342579762, + "c6": 1.6458622283864535, + "c7": 0.8229311141932267 }, "rgb": [77, 76, 132] }, @@ -247839,23 +247839,23 @@ "year": 1775, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -33.99898189622089, - "c2": -2.067498805973443, - "c3": 22.690881491119043, - "c4": 4.115502266887958, - "c5": -6.6544052651131445, - "c6": 9.546802627110466, - "c7": 33.77750106923308 + "points": { + "c1": -33.95055044618391, + "c2": 21.808481886585668, + "c3": 8.395261941663833, + "c4": -17.853387705424513, + "c5": -2.758238907385227, + "c6": -29.477806775700614, + "c7": 32.83886612069426 }, - "vertexSeeds": { - "c1": 6.311776813692096, - "c2": 5.751570951231225, - "c3": 6.485404775414011, - "c4": 6.660154755370569, - "c5": 6.30182166565648, - "c6": 5.8481545262324754, - "c7": 5.846997678446683 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798434, + "c4": 6.509477577438744, + "c5": 4.882108183079056, + "c6": 3.254738788719367, + "c7": 1.6273693943596885 }, "rgb": [77, 76, 132] }, @@ -247866,23 +247866,23 @@ "year": 1775, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 32.63088043709392, - "c2": 17.332063728998833, - "c3": 11.585348008419992, - "c4": -38.18131914831595, - "c5": 44.58086042770434, - "c6": -15.943122747240949, - "c7": -22.661911347115307 + "points": { + "c1": 41.34425220367869, + "c2": -2.0664579960868537, + "c3": -9.726287827043471, + "c4": -40.75810083854552, + "c5": -2.2512051641705497, + "c6": 20.018086001121958, + "c7": 41.67791872443425 }, - "vertexSeeds": { - "c1": 8.109145473134106, - "c2": 7.69227408513519, - "c3": 8.095889505607948, - "c4": 7.891266512105287, - "c5": 8.038795381679968, - "c6": 7.834147099138706, - "c7": 7.78656414115105 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013866, + "c3": 9.778085991678214, + "c4": 7.822468793342583, + "c5": 5.866851595006933, + "c6": 3.911234396671282, + "c7": 1.9556171983356307 }, "rgb": [77, 76, 132] }, @@ -247893,23 +247893,23 @@ "year": 1775, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": -26.03446730562863, - "c2": -45.52594043656706, - "c3": -31.951713514217857, - "c4": 1.870215959598518, - "c5": -34.20002613316647, - "c6": -18.344062533694313, - "c7": 12.053775701511128 + "points": { + "c1": 27.594696737373418, + "c2": -36.076355595538786, + "c3": 3.919205562505944, + "c4": -34.66012498882071, + "c5": -17.52197418367229, + "c6": -19.016982912262918, + "c7": -31.770731737118414 }, - "vertexSeeds": { - "c1": 4.44692422638383, - "c2": 4.28171741231372, - "c3": 4.375194993699175, - "c4": 4.349919979664255, - "c5": 4.297755668644779, - "c6": 4.351249462575829, - "c7": 4.453505746181255 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492376, + "c3": 5.455386037910317, + "c4": 4.364308830328246, + "c5": 3.273231622746188, + "c6": 2.18215441516413, + "c7": 1.091077207582058 }, "rgb": [238, 201, 159] }, @@ -247920,23 +247920,23 @@ "year": 1774, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 10.53118948786743, - "c2": -5.047680198786665, - "c3": 8.175155871922549, - "c4": -24.025937295731467, - "c5": 5.076155274781854, - "c6": -25.822240742095616, - "c7": 30.871044908443224 + "points": { + "c1": -24.2699099460512, + "c2": 30.690621959547933, + "c3": 27.43459815549975, + "c4": 31.990794767419807, + "c5": -9.217067666130571, + "c6": -20.560185658264693, + "c7": -16.579222861330795 }, - "vertexSeeds": { - "c1": 4.256780939527314, - "c2": 3.9430416395616676, - "c3": 3.8821987150701633, - "c4": 4.164659447067112, - "c5": 4.074639447053188, - "c6": 3.9272907768331478, - "c7": 4.256621456151325 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889043, + "c3": 5.108645399907536, + "c4": 4.086916319926028, + "c5": 3.0651872399445215, + "c6": 2.043458159963014, + "c7": 1.021729079981507 }, "rgb": [58, 15, 49] }, @@ -247947,23 +247947,23 @@ "year": 1774, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -26.491787954843716, - "c2": 10.531916254322702, - "c3": -30.29410603814543, - "c4": 26.76279413530886, - "c5": 17.877580747854417, - "c6": -9.608788784513322, - "c7": 0.24628091617393721 + "points": { + "c1": -2.4071768822959356, + "c2": -1.152016278369274, + "c3": 2.381701972908459, + "c4": -3.326982761083869, + "c5": 24.219020100061478, + "c6": 21.061103303683602, + "c7": -24.888014780219883 }, - "vertexSeeds": { - "c1": 4.237117257691349, - "c2": 4.3975543773131225, - "c3": 4.044911146791174, - "c4": 4.824645461742521, - "c5": 4.031965981173068, - "c6": 4.428995185786243, - "c7": 4.292700171675001 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -247974,23 +247974,23 @@ "year": 1774, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -9.271988604762157, - "c2": 2.9372026838148386, - "c3": 16.492541503323878, - "c4": -1.787803923331694, - "c5": 0.9152472955305626, - "c6": 5.752036361273014, - "c7": 3.0178928325648613 + "points": { + "c1": 14.256680562168341, + "c2": -8.594819889657927, + "c3": -9.916617569639275, + "c4": -6.680919217558291, + "c5": -23.08198209731775, + "c6": -19.734568372223706, + "c7": -19.353612418893025 }, - "vertexSeeds": { - "c1": 1.851906555924097, - "c2": 1.880054095121148, - "c3": 1.816629207562959, - "c4": 1.8897079748237515, - "c5": 1.8601814002623878, - "c6": 1.8971854324015558, - "c7": 1.8027390552234341 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022192, + "c3": 2.311604253351827, + "c4": 1.8492834026814624, + "c5": 1.3869625520110938, + "c6": 0.9246417013407293, + "c7": 0.46232085067036466 }, "rgb": [86, 146, 138] }, @@ -248001,23 +248001,23 @@ "year": 1775, "resistanceReported": false, "duration": 49507200, - "curveSeeds": { - "c1": -18.441364993317322, - "c2": -54.14701163012168, - "c3": 45.6634411877515, - "c4": 28.20968229074603, - "c5": -13.70127504219797, - "c6": -34.757727063023786, - "c7": 48.303310631541805 + "points": { + "c1": -31.045337705344032, + "c2": 28.06057320686429, + "c3": -55.41719600030235, + "c4": 59.62721644989654, + "c5": 43.6125393466246, + "c6": 1.79223061086698, + "c7": -55.11114714779032 }, - "vertexSeeds": { - "c1": 4.230707081265511, - "c2": 4.7833682843608525, - "c3": 4.5509950909216315, - "c4": 4.6186967054312476, - "c5": 4.356564045683544, - "c6": 4.340613583721896, - "c7": 5.038747560712933 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578367, + "c3": 6.0795191863153, + "c4": 4.863615349052244, + "c5": 3.6477115117891836, + "c6": 2.431807674526122, + "c7": 1.215903837263061 }, "rgb": [238, 201, 159] }, @@ -248028,23 +248028,23 @@ "year": 1775, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -35.63327610029587, - "c2": -36.25112637863608, - "c3": 29.385015303322504, - "c4": 24.746898811388192, - "c5": -18.75672517034179, - "c6": 15.901446912836825, - "c7": -22.77299262386579 + "points": { + "c1": 6.674173531799326, + "c2": -5.054146790673393, + "c3": 2.362162534021998, + "c4": 6.529212892646385, + "c5": -5.644117787740285, + "c6": 1.0392827629686323, + "c7": -3.018705934377607 }, - "vertexSeeds": { - "c1": 3.075059892942341, - "c2": 3.203352357878291, - "c3": 3.2293957795014507, - "c4": 3.044263322503159, - "c5": 3.093815062432164, - "c6": 2.9962232425721167, - "c7": 3.065429286368227 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -248055,23 +248055,23 @@ "year": 1775, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 6.212459794389346, - "c2": -35.28873754987237, - "c3": 18.43424300923232, - "c4": -12.218245691836351, - "c5": 13.94142670539054, - "c6": -20.022506440716892, - "c7": 3.8114526609552826 + "points": { + "c1": -34.264234501474604, + "c2": 35.108948387741535, + "c3": -14.74363905000618, + "c4": 28.237322887662344, + "c5": 35.53915328295457, + "c6": -15.516291297411698, + "c7": -17.270781543148384 }, - "vertexSeeds": { - "c1": 6.329760893384957, - "c2": 6.012357878037942, - "c3": 6.0230269100112155, - "c4": 6.04565646059234, - "c5": 6.73299226414203, - "c6": 6.630189395350691, - "c7": 6.468615231593786 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -248082,23 +248082,23 @@ "year": 1775, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 29.444552322872624, - "c2": 34.981062704680795, - "c3": -23.743358007276342, - "c4": -8.835555280365085, - "c5": -10.06281978431392, - "c6": -10.485761528015736, - "c7": -31.30145775062921 + "points": { + "c1": 19.602150315897653, + "c2": -33.12761283995407, + "c3": -32.520759311770234, + "c4": 38.26373412485137, + "c5": 26.961982990501866, + "c6": 25.925004530996603, + "c7": -5.91673212884713 }, - "vertexSeeds": { - "c1": 4.708260242810758, - "c2": 4.949882829719733, - "c3": 4.705548313176276, - "c4": 4.125916662624752, - "c5": 4.2505918998618455, - "c6": 4.358735815817905, - "c7": 4.091461608912087 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -248109,23 +248109,23 @@ "year": 1775, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 23.975101481903344, - "c2": -13.274504177411348, - "c3": 27.4270920238038, - "c4": -14.091956852741898, - "c5": 12.21327476561212, - "c6": 8.095382789039853, - "c7": -34.43490706773959 + "points": { + "c1": -5.999233113347973, + "c2": -28.975574009619713, + "c3": -29.105184570591476, + "c4": 28.850822877609332, + "c5": -26.607540499007357, + "c6": -30.317130882098958, + "c7": 1.851657841414081 }, - "vertexSeeds": { - "c1": 5.358333023460273, - "c2": 5.182418072277457, - "c3": 4.757932403498603, - "c4": 5.5322594954492885, - "c5": 5.582422650001883, - "c6": 4.7021191238738655, - "c7": 4.8471921329857 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825239, + "c3": 6.796116504854364, + "c4": 5.436893203883499, + "c5": 4.077669902912622, + "c6": 2.718446601941747, + "c7": 1.3592233009708707 }, "rgb": [238, 201, 159] }, @@ -248136,23 +248136,23 @@ "year": 1774, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 7.181144257159804, - "c2": 3.190022440913488, - "c3": -0.7289174535326524, - "c4": -12.977557461209802, - "c5": -20.2452199157021, - "c6": 20.605672878044878, - "c7": 13.367465156527196 + "points": { + "c1": -0.33813416144501574, + "c2": 7.703290056469683, + "c3": 3.8012059035217156, + "c4": 16.451237729876482, + "c5": 20.61091386752493, + "c6": -8.76216130606041, + "c7": -5.9545763295905765 }, - "vertexSeeds": { - "c1": 6.72946641519423, - "c2": 6.949139278811992, - "c3": 6.945970203872169, - "c4": 6.577182432980715, - "c5": 6.5942861186356065, - "c6": 6.860254204719428, - "c7": 6.789917972899986 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439672, + "c3": 8.298659269533063, + "c4": 6.6389274156264575, + "c5": 4.97919556171985, + "c6": 3.3194637078132145, + "c7": 1.6597318539066073 }, "rgb": [86, 146, 138] }, @@ -248163,23 +248163,23 @@ "year": 1775, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": 3.105855961500687, - "c2": 12.98155451890105, - "c3": -19.811963852695833, - "c4": 52.497154297728045, - "c5": -53.18034427685304, - "c6": -33.8407479611185, - "c7": 12.310754931912527 + "points": { + "c1": -42.17757337839021, + "c2": 50.29379509235626, + "c3": 22.933143192899948, + "c4": 12.853348862276249, + "c5": -21.57864611845448, + "c6": 7.205682602970455, + "c7": 2.785896479694145 }, - "vertexSeeds": { - "c1": 4.748281253149993, - "c2": 4.308148583073516, - "c3": 4.391643616025624, - "c4": 4.226726332310643, - "c5": 4.311335281149772, - "c6": 4.2912952367681285, - "c7": 4.034150847053675 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -248190,23 +248190,23 @@ "year": 1775, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 29.59470294970147, - "c2": 18.844856793165697, - "c3": -35.32491490568551, - "c4": 13.154560857124324, - "c5": -24.487862239787578, - "c6": 15.494983635685834, - "c7": -33.24198770164777 + "points": { + "c1": -44.47402116159388, + "c2": 8.155767513928438, + "c3": -26.98932487143336, + "c4": 9.234264141733114, + "c5": 19.30961984666942, + "c6": 15.766675715190942, + "c7": -19.911806881227054 }, - "vertexSeeds": { - "c1": 2.635817687478752, - "c2": 2.5352146404086926, - "c3": 2.5367048563550054, - "c4": 2.3868800481998798, - "c5": 2.502619702805875, - "c6": 2.6143292679791723, - "c7": 2.424125765932982 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104063, + "c3": 3.166897827092002, + "c4": 2.5335182616736054, + "c5": 1.9001386962552012, + "c6": 1.2667591308368007, + "c7": 0.6333795654184003 }, "rgb": [77, 76, 132] }, @@ -248217,23 +248217,23 @@ "year": 1774, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -12.716788234731691, - "c2": 18.38524409957209, - "c3": -3.6044802975535255, - "c4": 1.0423953740859062, - "c5": -25.169627931455167, - "c6": 1.7365674957848114, - "c7": 18.983619494145785 + "points": { + "c1": -27.26520136839622, + "c2": 12.755251025394664, + "c3": -29.953078105567617, + "c4": 2.3192971911396256, + "c5": -7.306099629351852, + "c6": 16.251704233068445, + "c7": -19.854039860987502 }, - "vertexSeeds": { - "c1": 4.765021801865045, - "c2": 4.128678494652545, - "c3": 4.602172271134935, - "c4": 4.582150500639558, - "c5": 4.691417232899453, - "c6": 4.399817289715812, - "c7": 4.2435394646291895 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [86, 146, 138] }, @@ -248244,23 +248244,23 @@ "year": 1774, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -11.005777557240616, - "c2": -0.4458962572565355, - "c3": -30.89827677962803, - "c4": -21.466032431383056, - "c5": 22.03539581844788, - "c6": -9.590150232951387, - "c7": -2.4507710096875535 + "points": { + "c1": 14.104104746348675, + "c2": 25.28664864533856, + "c3": 25.01419649816819, + "c4": 26.32805677592433, + "c5": -17.28051180975472, + "c6": 30.16150059269593, + "c7": 9.372813573613492 }, - "vertexSeeds": { - "c1": 6.983724846686123, - "c2": 6.980607025620495, - "c3": 7.747568485603406, - "c4": 8.596245278994974, - "c5": 8.070380954892793, - "c6": 7.744044567556226, - "c7": 8.902696905009236 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.7877947295423, + "c3": 10.656495607951914, + "c4": 8.525196486361537, + "c5": 6.39389736477115, + "c6": 4.262598243180764, + "c7": 2.131299121590386 }, "rgb": [58, 15, 49] }, @@ -248271,23 +248271,23 @@ "year": 1775, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -39.85709842964975, - "c2": -18.849661656284432, - "c3": 13.187238395833361, - "c4": 29.814808827329216, - "c5": -49.756968189104654, - "c6": 41.06590245362686, - "c7": 30.360908701914695 + "points": { + "c1": -33.86709133020888, + "c2": 21.891411182238357, + "c3": 48.952472503540974, + "c4": -0.49650237532526376, + "c5": -42.45337402701034, + "c6": 35.99011197058596, + "c7": 47.76690261824008 }, - "vertexSeeds": { - "c1": 8.886590183842097, - "c2": 9.77267633033624, - "c3": 9.63761441912312, - "c4": 9.805207650851147, - "c5": 9.26973716498648, - "c6": 9.191441730561507, - "c7": 9.873977946048662 + "offsets": { + "c1": 17.055016181229774, + "c2": 14.61858529819695, + "c3": 12.182154415164124, + "c4": 9.745723532131299, + "c5": 7.309292649098475, + "c6": 4.8728617660656495, + "c7": 2.4364308830328247 }, "rgb": [77, 76, 132] }, @@ -248298,23 +248298,23 @@ "year": 1775, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -7.893737428628224, - "c2": 30.43119768274707, - "c3": 5.269512718970411, - "c4": 5.2437703640595, - "c5": 4.415450089676561, - "c6": -19.935096786701564, - "c7": 25.296053035642238 + "points": { + "c1": 0.7952769889262612, + "c2": -21.103620514311835, + "c3": 13.596320088269351, + "c4": 13.999969992313751, + "c5": 23.37099621242261, + "c6": -31.875807710182325, + "c7": 21.343851219575008 }, - "vertexSeeds": { - "c1": 3.1611171987507896, - "c2": 3.5981626950951497, - "c3": 3.1958653771089907, - "c4": 3.5006060547652966, - "c5": 3.577166130009244, - "c6": 3.5849774927518743, - "c7": 3.1085903998011704 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [238, 201, 159] }, @@ -248325,23 +248325,23 @@ "year": 1775, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 9.933836097183026, - "c2": -27.14677643494624, - "c3": 16.350403013771036, - "c4": 20.836537002210136, - "c5": 43.03279870342689, - "c6": 32.96480532064557, - "c7": -34.60715561333661 + "points": { + "c1": -0.020585665788843244, + "c2": -46.613140150119975, + "c3": 2.1171662511922307, + "c4": -19.07097289633343, + "c5": -26.533999360466954, + "c6": 35.21573230988453, + "c7": -10.000861650646605 }, - "vertexSeeds": { - "c1": 9.151909437930879, - "c2": 9.110858121302067, - "c3": 9.161695156386726, - "c4": 9.141037414166806, - "c5": 9.131014825780905, - "c6": 9.112678910205366, - "c7": 9.117862820683548 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742025029, + "c3": 10.933888118354046, + "c4": 8.74711049468328, + "c5": 6.560332871012514, + "c6": 4.3735552473417485, + "c7": 2.1867776236707654 }, "rgb": [86, 146, 138] }, @@ -248352,23 +248352,23 @@ "year": 1775, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 13.615827158471816, - "c2": -42.172359252817095, - "c3": -29.818182283503695, - "c4": 29.68267976945669, - "c5": -27.377625200755993, - "c6": -21.025620471944112, - "c7": 29.785568269632414 + "points": { + "c1": 22.84510216786891, + "c2": -15.096537159400036, + "c3": -29.205103281369514, + "c4": -12.494311681888348, + "c5": 8.431680660416873, + "c6": 31.932178027257258, + "c7": 4.845522607744343 }, - "vertexSeeds": { - "c1": 6.364211514866668, - "c2": 6.438721868835494, - "c3": 5.952690954397713, - "c4": 5.9063014999112164, - "c5": 6.106120064718652, - "c6": 6.223535468661674, - "c7": 6.171995125108419 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434122, + "c3": 7.7207582061951054, + "c4": 6.176606564956089, + "c5": 4.632454923717072, + "c6": 3.088303282478034, + "c7": 1.544151641239017 }, "rgb": [86, 146, 138] }, @@ -248379,23 +248379,23 @@ "year": 1774, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -26.992291420062386, - "c2": 11.315563087863772, - "c3": 24.475502679210607, - "c4": -29.99897129089857, - "c5": -3.078892356749993, - "c6": -4.327299927661599, - "c7": 21.869873682217218 + "points": { + "c1": 32.92820272355434, + "c2": 5.970896190812134, + "c3": 23.40736368570343, + "c4": 0.18094804510261042, + "c5": -11.329846355146227, + "c6": 26.45317594743127, + "c7": -6.623490557853074 }, - "vertexSeeds": { - "c1": 2.3602265277688015, - "c2": 2.2623276964699017, - "c3": 2.23934693777607, - "c4": 2.2241357316587433, - "c5": 2.2365962932612624, - "c6": 2.28719644134086, - "c7": 2.2300530592937737 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.4674063800277377, + "c3": 2.8895053166897844, + "c4": 2.3116042533518266, + "c5": 1.7337031900138689, + "c6": 1.155802126675911, + "c7": 0.5779010633379578 }, "rgb": [238, 201, 159] }, @@ -248406,23 +248406,23 @@ "year": 1774, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 6.332559198182253, - "c2": 11.730761893094353, - "c3": 23.000726045873172, - "c4": -18.15817632276677, - "c5": 0.2781130231423745, - "c6": 10.635637798012198, - "c7": 22.267530530443686 + "points": { + "c1": -17.166638444880114, + "c2": -18.11611429801004, + "c3": -24.16253079964436, + "c4": -4.6500826512576054, + "c5": 26.99920719030667, + "c6": -18.542915005308146, + "c7": 9.787133491593316 }, - "vertexSeeds": { - "c1": 2.026613697757315, - "c2": 2.078109690667824, - "c3": 1.9119183610308033, - "c4": 2.0202047239700733, - "c5": 1.8581319209711895, - "c6": 1.9431523538907007, - "c7": 1.9130812764999279 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244096, + "c3": 2.54276467868701, + "c4": 2.0342117429496076, + "c5": 1.5256588072122048, + "c6": 1.0171058714748018, + "c7": 0.5085529357374028 }, "rgb": [86, 146, 138] }, @@ -248433,23 +248433,23 @@ "year": 1774, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": -18.67602752470604, - "c2": 13.824649427337043, - "c3": 12.130979375256615, - "c4": 3.1777029882708234, - "c5": -15.917534435675531, - "c6": 15.390526589754806, - "c7": -19.572793454826144 + "points": { + "c1": 6.5263073088975645, + "c2": -0.8522338308145088, + "c3": -14.738886273975183, + "c4": 22.153746800739405, + "c5": -18.661165415130547, + "c6": -0.6554287660380744, + "c7": -17.154720679003827 }, - "vertexSeeds": { - "c1": 1.9276461739150061, - "c2": 1.8595082972096373, - "c3": 1.948664260507292, - "c4": 1.8446840618556535, - "c5": 1.939679455802733, - "c6": 1.9268996810178398, - "c7": 1.7532184440520169 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102636, + "c3": 2.357836338418864, + "c4": 1.886269070735088, + "c5": 1.4147018030513159, + "c6": 0.943134535367544, + "c7": 0.471567267683772 }, "rgb": [222, 0, 59] }, @@ -248460,23 +248460,23 @@ "year": 1775, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -29.854593585929848, - "c2": -3.9317935807014806, - "c3": 7.528222665829219, - "c4": 14.278343314500496, - "c5": -30.584301403255758, - "c6": 6.219221458755634, - "c7": 22.68565065371908 + "points": { + "c1": -22.48831112185566, + "c2": -0.9294877082516351, + "c3": -27.196969635659727, + "c4": 18.795084823011237, + "c5": -0.6337523167374997, + "c6": 13.255894944082549, + "c7": 23.616375236258243 }, - "vertexSeeds": { - "c1": 5.4382035146416055, - "c2": 5.3459669164988615, - "c3": 4.846738819828923, - "c4": 4.997597162737128, - "c5": 5.277690789573952, - "c6": 5.382262759055273, - "c7": 4.855467632935181 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787329, + "c4": 5.39990753582986, + "c5": 4.049930651872392, + "c6": 2.699953767914937, + "c7": 1.3499768839574684 }, "rgb": [77, 76, 132] }, @@ -248487,23 +248487,23 @@ "year": 1775, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -11.856912160129657, - "c2": -9.591508936813987, - "c3": -16.389088933889802, - "c4": -32.40183744371572, - "c5": 22.859797802437853, - "c6": 8.720596044549012, - "c7": 1.111949918826447 + "points": { + "c1": 19.31201299338519, + "c2": 33.521308063788624, + "c3": -27.044235093555653, + "c4": -23.669854819666796, + "c5": 34.71142805334354, + "c6": 25.056686754724993, + "c7": -22.329066777192722 }, - "vertexSeeds": { - "c1": 5.410558126335201, - "c2": 5.487959827339444, - "c3": 5.450170177406548, - "c4": 5.422711258067872, - "c5": 5.48834543376953, - "c6": 5.468192873624411, - "c7": 5.44873306190015 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.8779472954230085, + "c3": 6.564956079519157, + "c4": 5.251964863615304, + "c5": 3.9389736477115567, + "c6": 2.6259824318077043, + "c7": 1.3129912159038521 }, "rgb": [58, 15, 49] }, @@ -248514,23 +248514,23 @@ "year": 1775, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 24.74331243810036, - "c2": 18.34889209601039, - "c3": -0.9993188002277691, - "c4": 36.42161312766949, - "c5": 18.238871511874443, - "c6": 10.934689480872052, - "c7": -6.395616279458963 + "points": { + "c1": -32.58561134033346, + "c2": 10.403242894019485, + "c3": -8.909084942380801, + "c4": 0.747456937051119, + "c5": -19.74066984077675, + "c6": -26.23252713906404, + "c7": -1.1317579197088534 }, - "vertexSeeds": { - "c1": 8.059244255173681, - "c2": 7.2436898759051225, - "c3": 7.875429956005382, - "c4": 7.482770451194469, - "c5": 7.933621298594689, - "c6": 7.132991215054785, - "c7": 7.953431005521441 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.67822468793342, + "c3": 9.731853906611189, + "c4": 7.7854831252889465, + "c5": 5.8391123439667165, + "c6": 3.8927415626444732, + "c7": 1.9463707813222428 }, "rgb": [238, 201, 159] }, @@ -248541,23 +248541,23 @@ "year": 1775, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -8.910622572338987, - "c2": -25.733809290293657, - "c3": -5.493315851400826, - "c4": -5.850395565192532, - "c5": 13.658759818918675, - "c6": -27.198657706575077, - "c7": 31.826171175582907 + "points": { + "c1": -27.436631683051353, + "c2": -29.402468761613825, + "c3": -25.34822502676157, + "c4": -19.186545634104164, + "c5": 2.638801385521681, + "c6": -2.151206249336866, + "c7": 31.7663760262545 }, - "vertexSeeds": { - "c1": 4.260784546201442, - "c2": 4.72477954616442, - "c3": 4.187957454562909, - "c4": 4.341328367256769, - "c5": 4.351801833057616, - "c6": 4.625489669727971, - "c7": 4.174932665294405 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -248568,23 +248568,23 @@ "year": 1775, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 35.18989440761548, - "c2": -10.311589268815908, - "c3": -34.728798283342236, - "c4": 30.628788433482967, - "c5": 47.02667900210284, - "c6": -27.80962018421539, - "c7": 23.590483740707683 + "points": { + "c1": -14.059276404855368, + "c2": 45.20383441510654, + "c3": 30.6555809711667, + "c4": -49.016302141158214, + "c5": 0.9137209297202133, + "c6": 33.00456021914992, + "c7": 17.112850500128417 }, - "vertexSeeds": { - "c1": 3.0854923727869745, - "c2": 2.9432409646715225, - "c3": 3.6114058606094837, - "c4": 3.7896313883765727, - "c5": 3.2376753105580436, - "c6": 3.929165563766496, - "c7": 3.58850807137072 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486822, + "c3": 4.877484974572354, + "c4": 3.9019879796578825, + "c5": 2.926490984743411, + "c6": 1.9509939898289428, + "c7": 0.9754969949144714 }, "rgb": [238, 201, 159] }, @@ -248595,23 +248595,23 @@ "year": 1777, "resistanceReported": false, "duration": 83894400, - "curveSeeds": { - "c1": 94.89980139279925, - "c2": -3.4399926126016993, - "c3": -60.03067167701405, - "c4": -70.5181492329161, - "c5": -20.45622895685591, - "c6": 96.94969154058441, - "c7": 12.201231273242328 + "points": { + "c1": 75.55424375716788, + "c2": -15.68789632629968, + "c3": -75.31929612323783, + "c4": 14.408251094772396, + "c5": -53.44867057226296, + "c6": 66.19028362817033, + "c7": 65.58662295336774 }, - "vertexSeeds": { - "c1": 6.484336586478128, - "c2": 6.441493173533695, - "c3": 6.636085014435813, - "c4": 6.486328857059124, - "c5": 6.742155869466345, - "c6": 6.486998586666082, - "c7": 6.770240688579075 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -248622,23 +248622,23 @@ "year": 1774, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -16.837190945979458, - "c2": 13.58048402383421, - "c3": -22.320027269154586, - "c4": -17.48736421822297, - "c5": -15.961102500625518, - "c6": -4.980836158575883, - "c7": -13.65465348910289 + "points": { + "c1": 1.0427010377449264, + "c2": 22.203609728444974, + "c3": 1.119680574474856, + "c4": 1.721795442573729, + "c5": -9.437983587733896, + "c6": -2.462940792997024, + "c7": 19.82572563567708 }, - "vertexSeeds": { - "c1": 4.410906852319679, - "c2": 3.8466565599753326, - "c3": 4.116201582574567, - "c4": 4.670935287169443, - "c5": 4.162160724937249, - "c6": 4.194531849253105, - "c7": 3.875759510670018 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773925, + "c3": 5.617198335644938, + "c4": 4.493758668515946, + "c5": 3.37031900138696, + "c6": 2.246879334257973, + "c7": 1.1234396671289866 }, "rgb": [86, 146, 138] }, @@ -248649,23 +248649,23 @@ "year": 1775, "resistanceReported": true, "duration": 36806400, - "curveSeeds": { - "c1": 43.70105963157538, - "c2": 8.235391335067554, - "c3": -14.384221118847172, - "c4": 44.99861041399979, - "c5": -2.400857133377116, - "c6": 38.06357973958118, - "c7": 33.26902937978442 + "points": { + "c1": -39.276268162929156, + "c2": -0.12998957921161036, + "c3": -12.233676994701426, + "c4": -35.568629133759984, + "c5": -30.521092545366805, + "c6": -31.682816849809225, + "c7": -30.805150227697595 }, - "vertexSeeds": { - "c1": 5.847894016750367, - "c2": 5.965659005015904, - "c3": 5.965896707292723, - "c4": 5.63508067489572, - "c5": 6.027910475305366, - "c6": 6.172212474582963, - "c7": 6.176597310036738 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [77, 76, 132] }, @@ -248676,23 +248676,23 @@ "year": 1775, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 14.484698832109245, - "c2": -25.734607884496132, - "c3": 25.917983618057697, - "c4": 7.134989400022533, - "c5": -21.92831066964762, - "c6": -3.9922180146549344, - "c7": 20.764761911413466 + "points": { + "c1": -24.458463273359534, + "c2": 30.91879179184331, + "c3": -26.740791172661943, + "c4": 33.30262998804681, + "c5": -6.689884413050365, + "c6": 15.662512726426627, + "c7": 0.6802515185566946 }, - "vertexSeeds": { - "c1": 6.217742127840595, - "c2": 6.019540252151411, - "c3": 6.207664858279545, - "c4": 5.588364897531956, - "c5": 6.094786803706275, - "c6": 6.5385913148272286, - "c7": 6.676515400005285 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -248703,23 +248703,23 @@ "year": 1774, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -16.455692220489027, - "c2": 4.579954914634467, - "c3": -9.359114974452153, - "c4": -20.147097663496663, - "c5": 4.034553966049586, - "c6": -13.436333725681033, - "c7": 5.992058585803093 + "points": { + "c1": 6.487441778743033, + "c2": 20.300592666791637, + "c3": 3.544195622048864, + "c4": 22.788666009566192, + "c5": 9.839094031465578, + "c6": 9.049079883473041, + "c7": -23.276440309772653 }, - "vertexSeeds": { - "c1": 8.241953494864878, - "c2": 8.158676996905161, - "c3": 8.06080626247468, - "c4": 8.240347163146097, - "c5": 7.9897161128985195, - "c6": 8.306451010145619, - "c7": 8.21302571306224 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375867, + "c3": 9.98613037447989, + "c4": 7.988904299583911, + "c5": 5.991678224687933, + "c6": 3.9944521497919556, + "c7": 1.9972260748959778 }, "rgb": [238, 201, 159] }, @@ -248730,23 +248730,23 @@ "year": 1775, "resistanceReported": true, "duration": 26697600, - "curveSeeds": { - "c1": -10.783386277788349, - "c2": -7.83561568344502, - "c3": -4.529136880642348, - "c4": 11.677198730067687, - "c5": 29.191438352710833, - "c6": -15.645517609379489, - "c7": 26.640186705158357 + "points": { + "c1": 21.495181763033493, + "c2": 18.475747650313693, + "c3": 31.492781531290348, + "c4": -16.2061748119331, + "c5": -21.80590589512519, + "c6": 23.912383253507343, + "c7": 11.794098391279022 }, - "vertexSeeds": { - "c1": 2.3812882619524944, - "c2": 2.526933996521641, - "c3": 2.501356389176169, - "c4": 2.391326927571631, - "c5": 2.535968941064752, - "c6": 2.3712187888558356, - "c7": 2.402431577509898 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092955, + "c3": 3.0513176144244083, + "c4": 2.441054091539529, + "c5": 1.8307905686546457, + "c6": 1.2205270457697626, + "c7": 0.6102635228848792 }, "rgb": [86, 146, 138] }, @@ -248757,23 +248757,23 @@ "year": 1775, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -2.155529829875931, - "c2": -11.78266813704452, - "c3": -11.590374328252587, - "c4": -25.760881588938837, - "c5": -16.74701583483099, - "c6": 3.089963544770356, - "c7": 6.967365686426312 + "points": { + "c1": -19.398793200490108, + "c2": -25.296077450850404, + "c3": 24.244878276234786, + "c4": -23.99560392506038, + "c5": 14.070821026793702, + "c6": -11.698695428288922, + "c7": -27.448405975664837 }, - "vertexSeeds": { - "c1": 1.3525764799290976, - "c2": 1.278056463242355, - "c3": 1.3059159385288557, - "c4": 1.388681985810021, - "c5": 1.335763336297148, - "c6": 1.386274607088745, - "c7": 1.312885694397216 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361997, + "c3": 1.6874711049468332, + "c4": 1.3499768839574664, + "c5": 1.0124826629680999, + "c6": 0.6749884419787332, + "c7": 0.3374942209893666 }, "rgb": [77, 76, 132] }, @@ -248784,23 +248784,23 @@ "year": 1775, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -20.72646723643563, - "c2": -7.0126921098315975, - "c3": 28.82079047010001, - "c4": 24.69196296414017, - "c5": 29.966471098508134, - "c6": 9.274592682551717, - "c7": -22.848497904575247 + "points": { + "c1": 26.122246577833025, + "c2": -32.753687379722116, + "c3": -32.10765408629921, + "c4": -23.05986489583867, + "c5": 29.627588677970344, + "c6": 10.070259676615876, + "c7": -6.865675186704845 }, - "vertexSeeds": { - "c1": 2.479070718050511, - "c2": 2.5638807546486277, - "c3": 2.31516020327839, - "c4": 2.5217407140490042, - "c5": 2.501658984167726, - "c6": 2.417129832270601, - "c7": 2.594569866991906 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [58, 15, 49] }, @@ -248811,23 +248811,23 @@ "year": 1775, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -18.147889403064045, - "c2": 42.55573407166235, - "c3": -43.50071889417173, - "c4": 18.04738556144745, - "c5": -5.123283561465605, - "c6": -16.7229478753591, - "c7": 29.842055358389963 + "points": { + "c1": -28.735662352729552, + "c2": -20.27023101317763, + "c3": 27.498687490642062, + "c4": 36.54867669716541, + "c5": 32.550193093596185, + "c6": 22.65714986955124, + "c7": -13.672201938739171 }, - "vertexSeeds": { - "c1": 8.384754118299782, - "c2": 8.16659060867706, - "c3": 8.462311140294739, - "c4": 8.450659256897252, - "c5": 8.531024611676992, - "c6": 8.51524122100484, - "c7": 8.219235020866511 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858517, + "c3": 10.26352288488211, + "c4": 8.210818307905678, + "c5": 6.158113730929273, + "c6": 4.105409153952839, + "c7": 2.0527045769764336 }, "rgb": [86, 146, 138] }, @@ -248838,23 +248838,23 @@ "year": 1775, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 6.069678749327775, - "c2": -6.3725679136879805, - "c3": -3.544107380788418, - "c4": -5.411788499349267, - "c5": 5.778724127523969, - "c6": -21.663630934662983, - "c7": -12.239819732148646 + "points": { + "c1": -5.132445906210108, + "c2": -6.730925691171127, + "c3": 30.11576713888887, + "c4": 8.402017346119926, + "c5": -28.140416347066456, + "c6": -8.655151977050629, + "c7": -9.514739078491584 }, - "vertexSeeds": { - "c1": 5.628335883718923, - "c2": 5.97889682459146, - "c3": 6.165157207491351, - "c4": 5.6478539087636515, - "c5": 5.641955921275595, - "c6": 5.577923882235182, - "c7": 6.227648158567439 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -248865,23 +248865,23 @@ "year": 1775, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 20.87375807423099, - "c2": -5.615458717092924, - "c3": -13.701197014556389, - "c4": 7.470259843974162, - "c5": 19.592329352124906, - "c6": -17.123775166726137, - "c7": -30.66373631162302 + "points": { + "c1": 18.800660969445993, + "c2": -9.067584892993299, + "c3": 14.92462466224454, + "c4": 9.94800429152177, + "c5": -0.5109380078005401, + "c6": 26.400113961591003, + "c7": -15.02207085637534 }, - "vertexSeeds": { - "c1": 4.669041274367986, - "c2": 4.263097333430607, - "c3": 4.25447270912976, - "c4": 4.068500313755564, - "c5": 4.315792332168507, - "c6": 4.386705313144198, - "c7": 4.536198413424411 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -248892,23 +248892,23 @@ "year": 1775, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -13.975501078088413, - "c2": 28.058961170155705, - "c3": -7.105897463628175, - "c4": 6.734563263741165, - "c5": 13.417523031441256, - "c6": -19.212982857198313, - "c7": -33.36476294705474 + "points": { + "c1": 39.06531156820386, + "c2": -41.794731918418584, + "c3": -20.536609246018603, + "c4": -47.90597517279491, + "c5": -48.52930760994841, + "c6": 43.166829680009606, + "c7": -17.837915031809487 }, - "vertexSeeds": { - "c1": 3.6356737909209618, - "c2": 3.85509106615544, - "c3": 3.9597091457301383, - "c4": 3.7202943735570755, - "c5": 3.763162344739364, - "c6": 3.8757656314678854, - "c7": 4.0063776271956835 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446603, + "c3": 4.854368932038837, + "c4": 3.883495145631071, + "c5": 2.9126213592233055, + "c6": 1.9417475728155316, + "c7": 0.9708737864077658 }, "rgb": [77, 76, 132] }, @@ -248919,23 +248919,23 @@ "year": 1775, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 29.661340781038305, - "c2": 33.49648650330079, - "c3": -31.65702356584552, - "c4": -30.80526934410095, - "c5": -24.686704904767325, - "c6": -5.916353873378686, - "c7": -13.6172371992708 + "points": { + "c1": -15.541900786832677, + "c2": 27.62943669934738, + "c3": -31.44853572976238, + "c4": 30.54335333712153, + "c5": 33.12974311730069, + "c6": -28.87041332273939, + "c7": 13.288003914234984 }, - "vertexSeeds": { - "c1": 4.542536803169265, - "c2": 4.195988597445485, - "c3": 4.125666979498273, - "c4": 4.3843366988398405, - "c5": 4.35797302865407, - "c6": 4.502854765396545, - "c7": 4.439337789152336 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492371, + "c3": 5.455386037910308, + "c4": 4.364308830328244, + "c5": 3.2732316227461813, + "c6": 2.1821544151641183, + "c7": 1.0910772075820552 }, "rgb": [58, 15, 49] }, @@ -248946,23 +248946,23 @@ "year": 1775, "resistanceReported": true, "duration": 25228800, - "curveSeeds": { - "c1": 31.244519297734087, - "c2": -14.803174920529472, - "c3": 34.878003697217736, - "c4": 20.528368422175966, - "c5": -32.04707739093453, - "c6": 31.751794725668802, - "c7": 19.31731653178373 + "points": { + "c1": -25.710950510250584, + "c2": -35.97431852645797, + "c3": 19.079462204357235, + "c4": -32.70502523955329, + "c5": -23.36031522708713, + "c6": -5.933042765488146, + "c7": -14.26158924957982 }, - "vertexSeeds": { - "c1": 3.6975413660462286, - "c2": 3.3775581684419884, - "c3": 3.3797504274678976, - "c4": 3.3890061936730222, - "c5": 3.3027177052825327, - "c6": 3.9585185126497446, - "c7": 3.5734195576848244 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.7142857142857135, + "c3": 4.7619047619047645, + "c4": 3.80952380952381, + "c5": 2.8571428571428568, + "c6": 1.9047619047619029, + "c7": 0.9523809523809539 }, "rgb": [58, 15, 49] }, @@ -248973,23 +248973,23 @@ "year": 1775, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -5.76666934875184, - "c2": 19.642105316426644, - "c3": 26.599482580101878, - "c4": -15.25926633551078, - "c5": -31.834853485408104, - "c6": 3.2402635573833223, - "c7": -38.76871533075979 + "points": { + "c1": 12.50369775901877, + "c2": 37.502127652388765, + "c3": 20.129995628532328, + "c4": -33.030924317273474, + "c5": 27.847265364055616, + "c6": -39.09649929405407, + "c7": 35.411105412163124 }, - "vertexSeeds": { - "c1": 1.0836978040503449, - "c2": 1.1153814047716841, - "c3": 1.0923792931174492, - "c4": 1.1211478301094173, - "c5": 1.1564931332167832, - "c6": 1.0530955742477661, - "c7": 1.063488109917773 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937597, + "c3": 1.433194637078132, + "c4": 1.1465557096625065, + "c5": 0.8599167822468788, + "c6": 0.5732778548312533, + "c7": 0.28663892741562563 }, "rgb": [58, 15, 49] }, @@ -249000,23 +249000,23 @@ "year": 1775, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -18.07220918812007, - "c2": 13.381287677624368, - "c3": 2.313131291657907, - "c4": 17.426970095669144, - "c5": 27.0245026787202, - "c6": 25.717220724164594, - "c7": -12.442852992641914 + "points": { + "c1": 7.610784328144131, + "c2": 16.793916343307824, + "c3": -30.7134148601904, + "c4": -30.072216137222966, + "c5": -23.051626646868527, + "c6": 18.65854093106871, + "c7": 0.34996281029538423 }, - "vertexSeeds": { - "c1": 3.0251883075727917, - "c2": 2.8389921197632306, - "c3": 3.146810283583068, - "c4": 3.3849314499315586, - "c5": 3.568171544978091, - "c6": 3.0616229602649807, - "c7": 3.2549030346284917 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.24271844660194, + "c3": 4.368932038834949, + "c4": 3.495145631067962, + "c5": 2.62135922330097, + "c6": 1.7475728155339787, + "c7": 0.8737864077669873 }, "rgb": [238, 201, 159] }, @@ -249027,23 +249027,23 @@ "year": 1775, "resistanceReported": false, "duration": 49161600, - "curveSeeds": { - "c1": -18.008866380734936, - "c2": 29.305118348834355, - "c3": 0.9900097134673302, - "c4": -24.56116748482416, - "c5": -51.27115190243422, - "c6": 34.48916710730903, - "c7": 57.431121070744425 + "points": { + "c1": 19.547559526283422, + "c2": 37.5740009298939, + "c3": -6.847918251722923, + "c4": 61.92685886218088, + "c5": 12.682459010662384, + "c6": 12.026006226593296, + "c7": -22.275547204325797 }, - "vertexSeeds": { - "c1": 2.5513392177912135, - "c2": 3.057869196126894, - "c3": 2.6871777468247413, - "c4": 3.0327652217969536, - "c5": 3.055143901859101, - "c6": 2.969082523227367, - "c7": 3.0860513880639946 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.52149791955617, + "c3": 3.767914932963474, + "c4": 3.0143319463707816, + "c5": 2.260748959778085, + "c6": 1.5071659731853884, + "c7": 0.7535829865926967 }, "rgb": [222, 0, 59] }, @@ -249054,23 +249054,23 @@ "year": 1775, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 20.837394924069123, - "c2": -4.416869400628443, - "c3": -34.377687481855794, - "c4": -24.98180657597203, - "c5": -0.9318105242225627, - "c6": -22.71835516010394, - "c7": -29.998589432091528 + "points": { + "c1": -21.157038804446238, + "c2": -40.40531556840615, + "c3": 29.661578213492916, + "c4": -31.303225725549204, + "c5": -39.020862882718454, + "c6": -30.021884923487097, + "c7": 31.99107236699608 }, - "vertexSeeds": { - "c1": 5.309741391782805, - "c2": 5.150419291083397, - "c3": 5.347640128112937, - "c4": 5.281985347700022, - "c5": 5.243438502490643, - "c6": 5.06234655779622, - "c7": 5.2939133998709 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221911, + "c3": 6.449375866851588, + "c4": 5.159500693481265, + "c5": 3.869625520110942, + "c6": 2.579750346740646, + "c7": 1.289875173370323 }, "rgb": [222, 0, 59] }, @@ -249081,23 +249081,23 @@ "year": 1775, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 11.16157875870038, - "c2": 42.25081061600066, - "c3": 15.139342315831584, - "c4": 11.0156928836806, - "c5": 6.1850978140911295, - "c6": -42.07428654140675, - "c7": 8.377447850864016 + "points": { + "c1": 3.4214982054439744, + "c2": 39.34659819662721, + "c3": 10.232811344899268, + "c4": -28.076112514668168, + "c5": 38.505707162895135, + "c6": -2.4096172025500593, + "c7": 5.435119454667088 }, - "vertexSeeds": { - "c1": 5.227326878345764, - "c2": 5.130817843747632, - "c3": 5.486233622121438, - "c4": 5.4160908273185, - "c5": 5.192033480140084, - "c6": 5.418881191257749, - "c7": 5.140595810434395 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.87794729542302, + "c3": 6.564956079519178, + "c4": 5.251964863615365, + "c5": 3.938973647711524, + "c6": 2.6259824318076825, + "c7": 1.3129912159038413 }, "rgb": [77, 76, 132] }, @@ -249108,23 +249108,23 @@ "year": 1775, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": -36.37054844297431, - "c2": -25.983771967935724, - "c3": 12.89315201479485, - "c4": -41.6155504663813, - "c5": 15.24726248382521, - "c6": -23.87408971073868, - "c7": -45.06310685739863 + "points": { + "c1": -43.43920627480909, + "c2": -9.883457368931367, + "c3": -18.417500793145287, + "c4": 11.335775277439467, + "c5": 42.94573298765111, + "c6": 30.19123795514666, + "c7": 41.40386348156035 }, - "vertexSeeds": { - "c1": 8.449610396195466, - "c2": 8.14970775749743, - "c3": 8.937326027411354, - "c4": 9.009286337319322, - "c5": 9.0975496500143, - "c6": 8.535513522775485, - "c7": 8.88283479228646 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.398058252427187, + "c3": 11.165048543689329, + "c4": 8.932038834951454, + "c5": 6.699029126213594, + "c6": 4.466019417475733, + "c7": 2.2330097087378604 }, "rgb": [77, 76, 132] }, @@ -249135,23 +249135,23 @@ "year": 1775, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -20.30741946534265, - "c2": -14.127492526490823, - "c3": 27.179931166581685, - "c4": 19.005431792079353, - "c5": -8.950663023117993, - "c6": 0.9532529640743945, - "c7": 16.508156955166772 + "points": { + "c1": 25.442556987812754, + "c2": 29.249389725829435, + "c3": 19.15052638504287, + "c4": 24.756761075093696, + "c5": 24.451046521413996, + "c6": 5.8320146651860405, + "c7": 3.9396697074701414 }, - "vertexSeeds": { - "c1": 3.7104055006063836, - "c2": 3.399834810761689, - "c3": 3.7719334618488713, - "c4": 3.6588323292918346, - "c5": 3.398885950081053, - "c6": 3.673499166287925, - "c7": 3.5214824092190513 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [86, 146, 138] }, @@ -249162,23 +249162,23 @@ "year": 1775, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -43.77044157463084, - "c2": 22.124442022255984, - "c3": 30.13023685751582, - "c4": -28.964952119485716, - "c5": 19.988663327308494, - "c6": -32.862143316949364, - "c7": 34.33529943472569 + "points": { + "c1": -8.821551931440638, + "c2": -34.85644755943284, + "c3": 41.92739613963045, + "c4": -26.321800638056935, + "c5": -8.156345104964956, + "c6": -41.4700381601716, + "c7": 0.7171598845199014 }, - "vertexSeeds": { - "c1": 1.8407414529681, - "c2": 1.7440713350947594, - "c3": 1.9334422055486595, - "c4": 1.7316489407247175, - "c5": 1.8313801381737864, - "c6": 1.7708952226553545, - "c7": 1.758093646728045 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624147, + "c3": 2.3347202958853472, + "c4": 1.867776236708275, + "c5": 1.4008321775312074, + "c6": 0.9338881183541395, + "c7": 0.46694405917707194 }, "rgb": [238, 201, 159] }, @@ -249189,23 +249189,23 @@ "year": 1775, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -40.68243076339538, - "c2": -11.453663920550582, - "c3": -20.189267553662084, - "c4": -39.541799809078654, - "c5": 15.73832851475585, - "c6": 5.569474041043819, - "c7": 34.21317503294055 + "points": { + "c1": 30.548885145545846, + "c2": 3.291512640830085, + "c3": -13.98592535110074, + "c4": 11.480452822875847, + "c5": 33.903597349506036, + "c6": -6.168376188464563, + "c7": 18.822673610044212 }, - "vertexSeeds": { - "c1": 3.881345710533066, - "c2": 4.174599204812917, - "c3": 4.60436204819206, - "c4": 4.539631603351491, - "c5": 3.8507104431953865, - "c6": 4.511514039196475, - "c7": 3.855748295320886 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773925, + "c3": 5.617198335644938, + "c4": 4.493758668515946, + "c5": 3.37031900138696, + "c6": 2.246879334257973, + "c7": 1.1234396671289866 }, "rgb": [77, 76, 132] }, @@ -249216,23 +249216,23 @@ "year": 1775, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 13.558479252989414, - "c2": -42.336663207924694, - "c3": -11.105659830153023, - "c4": 20.37679413545073, - "c5": 40.62231263178867, - "c6": 35.86743685787288, - "c7": -7.790581706976965 + "points": { + "c1": -13.146213541402652, + "c2": -19.165724548243222, + "c3": -29.84131693957114, + "c4": 31.96799671019371, + "c5": -26.006405127459903, + "c6": -42.13857566365809, + "c7": 27.644783286338985 }, - "vertexSeeds": { - "c1": 6.214787064681539, - "c2": 6.60730893941977, - "c3": 6.986243092734922, - "c4": 6.892013557639885, - "c5": 6.642648957152883, - "c6": 6.270684758966804, - "c7": 6.2156497254615015 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [86, 146, 138] }, @@ -249243,23 +249243,23 @@ "year": 1775, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 13.57716069132767, - "c2": 26.510108553326766, - "c3": 32.752725590757535, - "c4": 26.880690441333627, - "c5": -16.191206586145455, - "c6": -0.632792883892904, - "c7": 23.807899357630262 + "points": { + "c1": -16.53140454413129, + "c2": -23.562408258985403, + "c3": 23.301525578723876, + "c4": 0.12063709414489665, + "c5": 17.715251604127992, + "c6": 31.505841436244353, + "c7": 24.75167008495633 }, - "vertexSeeds": { - "c1": 6.675355165326829, - "c2": 6.615892789007498, - "c3": 6.70107991648929, - "c4": 6.713026952457797, - "c5": 6.699124085549612, - "c6": 6.664956977767821, - "c7": 6.704058686441424 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997224, + "c3": 8.044382801664355, + "c4": 6.435506241331483, + "c5": 4.826629680998612, + "c6": 3.2177531206657415, + "c7": 1.6088765603328707 }, "rgb": [238, 201, 159] }, @@ -249270,23 +249270,23 @@ "year": 1775, "resistanceReported": false, "duration": 45446400, - "curveSeeds": { - "c1": 11.092366598297438, - "c2": -18.690579776994824, - "c3": -21.520873013377148, - "c4": -55.47585059706082, - "c5": -39.93680253833443, - "c6": -40.20520733089067, - "c7": -11.917126571850211 + "points": { + "c1": -29.58144833957008, + "c2": 49.242038067324124, + "c3": -28.497458700428446, + "c4": 38.606069122748245, + "c5": -10.391067665429162, + "c6": -13.63964197134434, + "c7": -1.631712391582525 }, - "vertexSeeds": { - "c1": 4.548185210346971, - "c2": 5.560175950261661, - "c3": 5.276761961801054, - "c4": 4.615139237250065, - "c5": 5.461980968499343, - "c6": 4.787968658200982, - "c7": 4.8627015181689455 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583916, + "c3": 6.657420249653257, + "c4": 5.32593619972261, + "c5": 3.9944521497919525, + "c6": 2.6629680998613, + "c7": 1.3314840499306475 }, "rgb": [222, 0, 59] }, @@ -249297,23 +249297,23 @@ "year": 1775, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -19.998592437431448, - "c2": -6.72274466600031, - "c3": -18.425384777156594, - "c4": 10.66014231367199, - "c5": 29.301915286993378, - "c6": 17.90854516912156, - "c7": 24.75330072943011 + "points": { + "c1": 0.6842439859545308, + "c2": -10.259796759711563, + "c3": 20.998956581704967, + "c4": 19.85036243020601, + "c5": -23.395015423900222, + "c6": -30.3939943371059, + "c7": -22.09887674346141 }, - "vertexSeeds": { - "c1": 5.239020010457847, - "c2": 4.61485140779965, - "c3": 5.24522709844001, - "c4": 4.8967227414645045, - "c5": 5.065920438049652, - "c6": 5.231063477566946, - "c7": 4.594165270354507 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -249324,23 +249324,23 @@ "year": 1775, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 7.938145516438887, - "c2": -39.33262949764625, - "c3": 6.016888707604778, - "c4": -21.88963424858826, - "c5": 21.70185570576173, - "c6": -34.24784831577793, - "c7": 12.251437208267546 + "points": { + "c1": 36.09007532029952, + "c2": 7.424264432615722, + "c3": -37.15343249103641, + "c4": -25.517645040313315, + "c5": -33.618069082104405, + "c6": -45.58815679794514, + "c7": 3.537713602374751 }, - "vertexSeeds": { - "c1": 4.615054060213334, - "c2": 4.224585680126568, - "c3": 4.557948595719567, - "c4": 4.663528513399287, - "c5": 4.278427725027873, - "c6": 4.449212277321399, - "c7": 4.852392440206498 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135922, + "c3": 5.825242718446602, + "c4": 4.660194174757281, + "c5": 3.495145631067961, + "c6": 2.3300970873786406, + "c7": 1.1650485436893203 }, "rgb": [222, 0, 59] }, @@ -249351,23 +249351,23 @@ "year": 1775, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -22.905206733491617, - "c2": 11.37198241289142, - "c3": 17.493327390589435, - "c4": 1.5482775120678127, - "c5": 3.670782684188172, - "c6": -2.5499127370787704, - "c7": 17.623665934197085 + "points": { + "c1": 3.5873127867216326, + "c2": 15.94014590172764, + "c3": 23.573157485148784, + "c4": -17.798803764631216, + "c5": 10.805142404747244, + "c6": 23.497559002116482, + "c7": 25.72967384852901 }, - "vertexSeeds": { - "c1": 5.637815520171929, - "c2": 6.5073114462815385, - "c3": 5.817968481554654, - "c4": 5.7673069122785865, - "c5": 6.075803761789878, - "c6": 6.307690425626518, - "c7": 6.632957489252031 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -249378,23 +249378,23 @@ "year": 1775, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 25.521347689064886, - "c2": -7.656814299022599, - "c3": -19.283340813385422, - "c4": -9.317679664732623, - "c5": 9.384122940037177, - "c6": 12.931748992562898, - "c7": -7.448647729210283 + "points": { + "c1": -22.312821565652925, + "c2": 3.569221170486859, + "c3": -1.6997868320293676, + "c4": -15.12414320426705, + "c5": 18.684261188049444, + "c6": 1.6618963370279545, + "c7": 20.83309495404703 }, - "vertexSeeds": { - "c1": 5.062491868185327, - "c2": 4.566767293836576, - "c3": 4.7251535151743855, - "c4": 5.126333274896436, - "c5": 5.2263627541651845, - "c6": 4.7999872527536915, - "c7": 4.897995059475796 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859916, + "c3": 6.2413314840499305, + "c4": 4.993065187239944, + "c5": 3.744798890429958, + "c6": 2.496532593619972, + "c7": 1.248266296809986 }, "rgb": [86, 146, 138] }, @@ -249405,23 +249405,23 @@ "year": 1775, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 13.664546120947676, - "c2": -19.591832947743285, - "c3": -12.34815985940237, - "c4": 11.95807939467857, - "c5": 0.4124081757162408, - "c6": -25.155626840633285, - "c7": 22.580263228821657 + "points": { + "c1": 24.2615462291881, + "c2": 9.306924707756124, + "c3": -8.597354799330066, + "c4": -10.543410869888191, + "c5": 20.26372111593212, + "c6": -17.079927675713755, + "c7": 13.842262671410829 }, - "vertexSeeds": { - "c1": 8.276563302316227, - "c2": 8.88747814668805, - "c3": 8.988253056081035, - "c4": 8.182671507693593, - "c5": 8.087567068211808, - "c6": 8.384248368196618, - "c7": 8.709632415957262 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.25936199722608, + "c3": 11.049468331021727, + "c4": 8.839574664817386, + "c5": 6.6296809986130345, + "c6": 4.419787332408693, + "c7": 2.209893666204341 }, "rgb": [86, 146, 138] }, @@ -249432,23 +249432,23 @@ "year": 1775, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -17.905260414842363, - "c2": -33.226730320643874, - "c3": 39.75598715747243, - "c4": -33.80624560428655, - "c5": -27.565073352470307, - "c6": -13.310200600619655, - "c7": -18.248657873886653 + "points": { + "c1": -5.747549366620561, + "c2": -3.9293225101433578, + "c3": 20.054414273445474, + "c4": 15.02570375698351, + "c5": -4.5934106318863, + "c6": -9.434140963953546, + "c7": -19.825334987630907 }, - "vertexSeeds": { - "c1": 5.693150326339576, - "c2": 6.033286694858111, - "c3": 5.637515064673949, - "c4": 6.112096790139689, - "c5": 6.162073426932881, - "c6": 5.780585034248541, - "c7": 5.684387359038586 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871021, + "c3": 7.3971336107258425, + "c4": 5.917706888580681, + "c5": 4.438280166435502, + "c6": 2.9588534442903405, + "c7": 1.479426722145179 }, "rgb": [77, 76, 132] }, @@ -249459,23 +249459,23 @@ "year": 1776, "resistanceReported": true, "duration": 46137600, - "curveSeeds": { - "c1": -0.365385163107959, - "c2": 26.75583322692747, - "c3": 5.704953554478315, - "c4": 49.586126316796076, - "c5": 22.895560202030715, - "c6": 54.08025395368369, - "c7": 16.749907001845024 + "points": { + "c1": 53.44686987327993, + "c2": -45.29494670987979, + "c3": 24.55374799461233, + "c4": 14.966114501474557, + "c5": 28.79198049137377, + "c6": -5.307182636488719, + "c7": 28.100407918940867 }, - "vertexSeeds": { - "c1": 6.460431199756162, - "c2": 6.650939908284925, - "c3": 6.546907235308145, - "c4": 6.644808490866021, - "c5": 6.380465242645154, - "c6": 6.853650063773023, - "c7": 6.712228906727581 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -249486,23 +249486,23 @@ "year": 1775, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 19.694090399275023, - "c2": 20.28547068859648, - "c3": 4.484957189939763, - "c4": 18.77159098212515, - "c5": -12.722877672459592, - "c6": -16.016627772305917, - "c7": -20.065554768755593 + "points": { + "c1": 19.86889709842009, + "c2": 27.312184214871973, + "c3": -0.7521045972927034, + "c4": 26.01649932388877, + "c5": -23.45916392649083, + "c6": 12.615012680881119, + "c7": 20.94351166760833 }, - "vertexSeeds": { - "c1": 5.878989570173874, - "c2": 6.470446341406957, - "c3": 5.885865949504875, - "c4": 6.197735748740176, - "c5": 5.733787203077932, - "c6": 6.218237905926125, - "c7": 6.17453468220464 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -249513,23 +249513,23 @@ "year": 1774, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 23.542843502028308, - "c2": 14.797531819965197, - "c3": 25.75606668048413, - "c4": -6.507323524076181, - "c5": -6.9947919383348385, - "c6": -17.50078189506828, - "c7": -10.093677327456135 + "points": { + "c1": -9.618075974965446, + "c2": 27.02188798793468, + "c3": -16.317894536392515, + "c4": -25.177631572886018, + "c5": -10.18834355768826, + "c6": 22.099611196303304, + "c7": -10.032865328977412 }, - "vertexSeeds": { - "c1": 2.055887799870876, - "c2": 2.2182052440572733, - "c3": 2.1812224896881607, - "c4": 2.1721983728725314, - "c5": 2.235029850669518, - "c6": 2.0083738634737767, - "c7": 2.237409106403017 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746185, + "c3": 2.7276930189551565, + "c4": 2.1821544151641246, + "c5": 1.6366158113730924, + "c6": 1.0910772075820603, + "c7": 0.545538603791032 }, "rgb": [238, 201, 159] }, @@ -249540,23 +249540,23 @@ "year": 1775, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 4.2385209520202665, - "c2": 23.317971446348103, - "c3": 24.36301045753421, - "c4": -3.973406725798455, - "c5": -11.141684763986461, - "c6": 16.87467315843164, - "c7": 38.17928103316225 + "points": { + "c1": -1.068304323218804, + "c2": 19.129842611683408, + "c3": -49.70975789749674, + "c4": -52.4859074241343, + "c5": -13.61830372415423, + "c6": -41.61182492741017, + "c7": 11.912887829262012 }, - "vertexSeeds": { - "c1": 7.797023890643983, - "c2": 6.816935142388544, - "c3": 7.402737027113036, - "c4": 7.09384600066364, - "c5": 6.855301907596078, - "c6": 6.932490972685569, - "c7": 7.043814276648884 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571434, + "c3": 9.523809523809524, + "c4": 7.619047619047623, + "c5": 5.714285714285711, + "c6": 3.8095238095238115, + "c7": 1.9047619047619118 }, "rgb": [222, 0, 59] }, @@ -249567,23 +249567,23 @@ "year": 1775, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -13.646922696173213, - "c2": 19.787828132086773, - "c3": -18.401674301720984, - "c4": 5.9216627875212, - "c5": 35.405658927242996, - "c6": 16.876084968337842, - "c7": -4.792018416518005 + "points": { + "c1": -33.35711497790399, + "c2": 1.673725290501764, + "c3": 6.80784594262542, + "c4": 2.9556360869834464, + "c5": 0.23313075404607986, + "c6": 20.028071034962757, + "c7": -20.08522571165289 }, - "vertexSeeds": { - "c1": 2.828710986626122, - "c2": 2.8300175375309933, - "c3": 2.7474766368556955, - "c4": 2.65008674791317, - "c5": 2.7325495757816323, - "c6": 2.7257171899432397, - "c7": 2.6089127267019703 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [77, 76, 132] }, @@ -249594,23 +249594,23 @@ "year": 1775, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 8.447879428323908, - "c2": 6.012505127350643, - "c3": -36.9254505435936, - "c4": 7.082385349111512, - "c5": 26.0965338520351, - "c6": 34.79387842467887, - "c7": -32.42031417753657 + "points": { + "c1": 15.361069787818593, + "c2": -14.718289508565526, + "c3": 6.387768185725399, + "c4": 8.262063528418544, + "c5": -12.564484254755854, + "c6": -0.23097830316507384, + "c7": 43.0441174031423 }, - "vertexSeeds": { - "c1": 5.5759793321455495, - "c2": 5.591368741102412, - "c3": 5.676010944952179, - "c4": 5.7820107089469035, - "c5": 5.460395841632794, - "c6": 5.591469844592944, - "c7": 5.704392116083142 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147029, + "c3": 6.9810448451225104, + "c4": 5.58483587609802, + "c5": 4.188626907073501, + "c6": 2.79241793804901, + "c7": 1.396208969024519 }, "rgb": [238, 201, 159] }, @@ -249621,23 +249621,23 @@ "year": 1775, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 10.239446745590897, - "c2": -28.709531613392212, - "c3": 5.939076481655221, - "c4": -10.075101561777359, - "c5": 13.793264763763702, - "c6": 17.686250557008456, - "c7": -35.377416215502556 + "points": { + "c1": 31.605320856360926, + "c2": -7.283411140469163, + "c3": 18.367926955143936, + "c4": -24.483946255335717, + "c5": -35.62845284473397, + "c6": 46.12703760993383, + "c7": -44.2234867366734 }, - "vertexSeeds": { - "c1": 5.932319261876907, - "c2": 5.5650152678322025, - "c3": 5.826086639565747, - "c4": 5.558549420846369, - "c5": 5.6903242742754525, - "c6": 5.560933558246317, - "c7": 5.636514041382029 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348138, + "c3": 7.096625057790102, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160468, + "c7": 1.419325011558009 }, "rgb": [222, 0, 59] }, @@ -249648,23 +249648,23 @@ "year": 1775, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 19.969588872617948, - "c2": 2.596178068902944, - "c3": -12.71199246631527, - "c4": 17.770759602542626, - "c5": 34.40421735357227, - "c6": 1.066497014385206, - "c7": 26.38036497052972 + "points": { + "c1": -45.22470408962555, + "c2": -12.422215580796546, + "c3": -32.67022939663101, + "c4": 40.376239241232405, + "c5": 38.320437060057294, + "c6": 8.752896154589074, + "c7": 45.706949594767615 }, - "vertexSeeds": { - "c1": 6.892160117042043, - "c2": 6.86040922289953, - "c3": 6.5768112448897975, - "c4": 6.529475866260532, - "c5": 6.557672688628704, - "c6": 6.66307603148218, - "c7": 6.636041127906844 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479893, + "c3": 8.321775312066583, + "c4": 6.657420249653272, + "c5": 4.993065187239932, + "c6": 3.328710124826622, + "c7": 1.664355062413311 }, "rgb": [77, 76, 132] }, @@ -249675,23 +249675,23 @@ "year": 1775, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 21.3649882270869, - "c2": 4.06891620321554, - "c3": 15.856610978454245, - "c4": -2.6623394999928216, - "c5": -14.573021236164626, - "c6": -2.889286126308395, - "c7": -5.821339708806512 + "points": { + "c1": 5.899035869252341, + "c2": -7.888649882699852, + "c3": -20.643311905061022, + "c4": -21.92713778138672, + "c5": -24.689471964161, + "c6": 21.72533111115867, + "c7": -11.303403532184705 }, - "vertexSeeds": { - "c1": 4.348162861237562, - "c2": 4.307624159134409, - "c3": 4.186940269295477, - "c4": 4.389959289830907, - "c5": 3.824073004392783, - "c6": 4.129493556692088, - "c7": 4.324267169985262 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [222, 0, 59] }, @@ -249702,23 +249702,23 @@ "year": 1775, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 29.258774346842593, - "c2": -25.295293750446028, - "c3": -24.791057956980012, - "c4": 29.47952447995882, - "c5": 4.606474687213023, - "c6": 19.606116547881655, - "c7": -7.461411937111347 + "points": { + "c1": 4.632168773917648, + "c2": -36.66247798499744, + "c3": -1.5329401567086265, + "c4": 5.339978850043707, + "c5": 34.95708398760443, + "c6": 36.996217364471754, + "c7": -34.32664578447018 }, - "vertexSeeds": { - "c1": 6.039304268346377, - "c2": 5.624156098690113, - "c3": 6.448830740583378, - "c4": 6.290477281878232, - "c5": 5.757144723407413, - "c6": 6.76569214431123, - "c7": 5.820532599773641 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -249729,23 +249729,23 @@ "year": 1775, "resistanceReported": false, "duration": 42681600, - "curveSeeds": { - "c1": 36.510613215428606, - "c2": 4.897450208218736, - "c3": 19.84513541756479, - "c4": 30.961380314545153, - "c5": -55.79225611925265, - "c6": -19.684091410706188, - "c7": 53.73731028133318 + "points": { + "c1": -19.52027268793072, + "c2": 52.51501393123671, + "c3": 14.8674761624154, + "c4": 5.39611317801959, + "c5": 56.34427793682519, + "c6": -37.97218268266126, + "c7": 27.200640915369533 }, - "vertexSeeds": { - "c1": 7.94137038670665, - "c2": 8.155158762832176, - "c3": 8.073051137511362, - "c4": 8.889642657090773, - "c5": 7.951629312401462, - "c6": 8.164135594100127, - "c7": 8.810220053090672 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864075, + "c3": 10.841423948220061, + "c4": 8.67313915857606, + "c5": 6.504854368932045, + "c6": 4.33656957928803, + "c7": 2.168284789644015 }, "rgb": [58, 15, 49] }, @@ -249756,23 +249756,23 @@ "year": 1775, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -6.420440687611496, - "c2": 2.920766251930047, - "c3": -15.650024125172122, - "c4": -9.124172665654694, - "c5": 0.8870637556364116, - "c6": -2.859761492895675, - "c7": 4.834739432915185 + "points": { + "c1": -16.307927326893775, + "c2": -2.616215449720457, + "c3": 1.5539357251151635, + "c4": 22.735737000058997, + "c5": -4.76307450762269, + "c6": 14.155331168782382, + "c7": -13.520042337610144 }, - "vertexSeeds": { - "c1": 2.0725960157420946, - "c2": 1.955727219207034, - "c3": 2.0310223694286234, - "c4": 2.0160362844293553, - "c5": 2.03930431407719, - "c6": 1.9568268103294848, - "c7": 2.0165919306404207 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244096, + "c3": 2.54276467868701, + "c4": 2.0342117429496076, + "c5": 1.5256588072122048, + "c6": 1.0171058714748018, + "c7": 0.5085529357374028 }, "rgb": [86, 146, 138] }, @@ -249783,23 +249783,23 @@ "year": 1775, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 3.027517962497626, - "c2": 2.429568387151388, - "c3": -10.709056770931841, - "c4": 5.226843008246373, - "c5": 2.672637389880098, - "c6": -22.08726720423143, - "c7": -4.259498972888434 + "points": { + "c1": 19.69087785567325, + "c2": -16.06241360885288, + "c3": 18.728449387509187, + "c4": -23.633127824217134, + "c5": 23.52858912138491, + "c6": 8.566219819618304, + "c7": 21.1357553210605 }, - "vertexSeeds": { - "c1": 5.028877064453732, - "c2": 4.709364930908829, - "c3": 5.003612400182369, - "c4": 4.975891404270809, - "c5": 4.900514037745263, - "c6": 5.410418048384977, - "c7": 4.8998139985944364 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583916, + "c3": 6.657420249653257, + "c4": 5.32593619972261, + "c5": 3.9944521497919525, + "c6": 2.6629680998613, + "c7": 1.3314840499306475 }, "rgb": [77, 76, 132] }, @@ -249810,23 +249810,23 @@ "year": 1775, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -21.308381348835052, - "c2": -21.61559245894246, - "c3": -3.1805147502669158, - "c4": 7.905286668580931, - "c5": 23.185008024469468, - "c6": 16.74199990181696, - "c7": -7.952164286089879 + "points": { + "c1": -22.813125099507484, + "c2": 9.958298867980446, + "c3": -6.059189066616103, + "c4": 24.471525854403936, + "c5": 20.137195357462126, + "c6": 19.513632170272658, + "c7": -9.311179474757662 }, - "vertexSeeds": { - "c1": 4.202663732427762, - "c2": 4.187878356295437, - "c3": 4.356394105551499, - "c4": 4.00909543067536, - "c5": 4.263194108810753, - "c6": 4.025751493114518, - "c7": 3.8446483895851236 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [58, 15, 49] }, @@ -249837,23 +249837,23 @@ "year": 1774, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 15.886411402549392, - "c2": 4.141770217281778, - "c3": -6.793090215968846, - "c4": -8.668624356623122, - "c5": -21.921003486784574, - "c6": 18.755538528188254, - "c7": -8.066584109662525 + "points": { + "c1": -17.703150450967144, + "c2": -10.618248887245986, + "c3": -8.935800016495387, + "c4": -23.646662014780656, + "c5": 16.422627312258122, + "c6": 6.6032656570132815, + "c7": -2.4706447171548724 }, - "vertexSeeds": { - "c1": 0.2835160723647791, - "c2": 0.2711298476638514, - "c3": 0.2666677029317702, - "c4": 0.29138716320824454, - "c5": 0.25541722015174734, - "c6": 0.27814709122986503, - "c7": 0.2551851001019465 + "offsets": { + "c1": 0.517799352750809, + "c2": 0.44382801664355037, + "c3": 0.3698566805362922, + "c4": 0.2958853444290336, + "c5": 0.22191400832177544, + "c6": 0.1479426722145168, + "c7": 0.07397133610725863 }, "rgb": [238, 201, 159] }, @@ -249864,23 +249864,23 @@ "year": 1774, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -0.7159531323833583, - "c2": 21.402387383016837, - "c3": -0.21744346952625193, - "c4": -5.223344675546777, - "c5": 7.583682755143801, - "c6": -14.283483462848178, - "c7": -2.503920441892763 + "points": { + "c1": -7.437379932952666, + "c2": 17.15264963239347, + "c3": -10.3906478058252, + "c4": 19.76933019619318, + "c5": 5.924047986320701, + "c6": -9.022299521459766, + "c7": -6.483029876480753 }, - "vertexSeeds": { - "c1": 3.934821854636341, - "c2": 3.978002949349403, - "c3": 3.8983219404400584, - "c4": 4.140821582246783, - "c5": 4.088936006379252, - "c6": 4.255124048969272, - "c7": 4.240510971160312 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170599, + "c3": 5.270457697642162, + "c4": 4.216366158113733, + "c5": 3.162274618585296, + "c6": 2.1081830790568663, + "c7": 1.054091539528437 }, "rgb": [77, 76, 132] }, @@ -249891,23 +249891,23 @@ "year": 1776, "resistanceReported": false, "duration": 54259200, - "curveSeeds": { - "c1": -3.7233164677828654, - "c2": 6.543894851488361, - "c3": -10.500058170020921, - "c4": 64.56273328206618, - "c5": 18.339132362887923, - "c6": 6.073908450009199, - "c7": -48.137832630808596 + "points": { + "c1": 45.087452210081125, + "c2": 29.866767999493945, + "c3": -27.451437777333588, + "c4": -16.116504835676317, + "c5": -61.481473315222345, + "c6": -59.06365021142455, + "c7": 29.817984746499135 }, - "vertexSeeds": { - "c1": 8.323410644258493, - "c2": 8.171741329838149, - "c3": 7.77122567685772, - "c4": 8.131054592853152, - "c5": 7.790659943465153, - "c6": 8.41157560463731, - "c7": 8.202967668365936 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536756, + "c3": 10.078594544613967, + "c4": 8.062875635691178, + "c5": 6.047156726768389, + "c6": 4.031437817845578, + "c7": 2.015718908922789 }, "rgb": [58, 15, 49] }, @@ -249918,23 +249918,23 @@ "year": 1775, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -36.394291441215834, - "c2": -5.190877862957869, - "c3": 37.41602464535683, - "c4": 40.76475663879516, - "c5": -0.5655522331499299, - "c6": 3.9632792261786776, - "c7": 29.75851149795578 + "points": { + "c1": 7.743064733414343, + "c2": -32.86264510639248, + "c3": -5.316185288457831, + "c4": -5.7873360080916285, + "c5": 18.03415446242282, + "c6": 23.58078120845198, + "c7": 38.0749065554856 }, - "vertexSeeds": { - "c1": 9.004651002892324, - "c2": 9.276017246643416, - "c3": 9.441606263229254, - "c4": 9.590703153730722, - "c5": 9.507196237072156, - "c6": 9.597392691272715, - "c7": 9.659038409516649 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110949, + "c3": 11.55802126675914, + "c4": 9.246417013407306, + "c5": 6.9348127600554745, + "c6": 4.6232085067036435, + "c7": 2.3116042533518315 }, "rgb": [58, 15, 49] }, @@ -249945,23 +249945,23 @@ "year": 1775, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 8.84858197885865, - "c2": -5.960434177138893, - "c3": -18.153760646309657, - "c4": -22.537468452605257, - "c5": 21.739890012867004, - "c6": -12.858674260934345, - "c7": -7.0165222273507375 + "points": { + "c1": 2.1285926673800724, + "c2": 8.514216520819414, + "c3": 20.64868048893121, + "c4": 25.000650971019663, + "c5": 11.176235225130096, + "c6": -8.289917479729532, + "c7": 22.862014238802328 }, - "vertexSeeds": { - "c1": 5.851961183456806, - "c2": 6.0275170157072075, - "c3": 5.6558316315023065, - "c4": 5.521797609545372, - "c5": 5.93758446307861, - "c6": 5.877661662792451, - "c7": 6.022590139188312 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192324, + "c4": 5.899214054553863, + "c5": 4.4244105409153915, + "c6": 2.9496070272769317, + "c7": 1.4748035136384605 }, "rgb": [86, 146, 138] }, @@ -249972,23 +249972,23 @@ "year": 1775, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": 22.904401378558184, - "c2": -15.867516053980113, - "c3": -16.250185858146203, - "c4": 1.9514122258631268, - "c5": 4.76892982072555, - "c6": 13.6392238045199, - "c7": 13.138034596769486 + "points": { + "c1": -23.93725030064931, + "c2": -10.993793825030913, + "c3": -12.113687654198838, + "c4": -15.923576220812892, + "c5": 22.202219886393472, + "c6": -2.2856662749828267, + "c7": 10.5691256379056 }, - "vertexSeeds": { - "c1": 2.728352690691493, - "c2": 2.6904938276766077, - "c3": 2.532946237970453, - "c4": 2.765528444573379, - "c5": 2.5831078647681127, - "c6": 2.6928073292328887, - "c7": 2.5692536500516345 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.10540915395284, + "c3": 3.421174294960704, + "c4": 2.73693943596856, + "c5": 2.052704576976424, + "c6": 1.36846971798428, + "c7": 0.684234858992144 }, "rgb": [58, 15, 49] }, @@ -249999,23 +249999,23 @@ "year": 1775, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -21.96464224642409, - "c2": 6.622036979584994, - "c3": -10.936029606306908, - "c4": -11.307926712253233, - "c5": -10.805563311873685, - "c6": 16.327410725857266, - "c7": -20.464674367591137 + "points": { + "c1": -10.363224397147764, + "c2": -2.0240748005641294, + "c3": -16.76208041682991, + "c4": -18.130018861881886, + "c5": 3.381995893540875, + "c6": -12.304692906085036, + "c7": 9.856327000926147 }, - "vertexSeeds": { - "c1": 3.263226028477849, - "c2": 3.2649874538499932, - "c3": 3.3734144070659053, - "c4": 3.183326328560282, - "c5": 3.4454614012122207, - "c6": 3.3529727126698434, - "c7": 3.3099016654362594 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199727, + "c3": 4.137771613499767, + "c4": 3.310217290799818, + "c5": 2.4826629680998584, + "c6": 1.655108645399909, + "c7": 0.8275543226999593 }, "rgb": [238, 201, 159] }, @@ -250026,23 +250026,23 @@ "year": 1775, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -3.196309566708738, - "c2": -4.372655997721303, - "c3": 6.211000316853159, - "c4": 6.5011324361242515, - "c5": 13.510716372511407, - "c6": -7.182498623151927, - "c7": -14.735608670863883 + "points": { + "c1": -4.459760559100875, + "c2": -14.468982310325531, + "c3": -13.585588775183878, + "c4": -14.146024799970057, + "c5": 24.430086472659713, + "c6": 13.411789426486454, + "c7": -18.43351772011309 }, - "vertexSeeds": { - "c1": 5.999846667998649, - "c2": 6.182645151696987, - "c3": 5.8300218521809235, - "c4": 6.256513794411781, - "c5": 6.4537175120992325, - "c6": 6.398181629323724, - "c7": 5.613833549896087 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -250053,23 +250053,23 @@ "year": 1775, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 17.139351112603542, - "c2": -8.561198687054057, - "c3": -15.57125188096174, - "c4": -2.69611865604244, - "c5": 18.129451542723544, - "c6": 19.58351158625363, - "c7": -7.0960592731753405 + "points": { + "c1": 21.86188004123727, + "c2": 7.282969915781617, + "c3": -20.441704491069764, + "c4": -15.776686397194965, + "c5": 13.22521936685412, + "c6": 2.8047843039075744, + "c7": -24.021989682264905 }, - "vertexSeeds": { - "c1": 6.178209285186229, - "c2": 6.041361390690378, - "c3": 5.720496619224355, - "c4": 6.188280784291365, - "c5": 6.64592837217519, - "c6": 5.59689686668908, - "c7": 5.833485216253495 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -250080,23 +250080,23 @@ "year": 1775, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": 5.922972137135407, - "c2": -2.7397661583263577, - "c3": 14.2969438627781, - "c4": -12.032129195226927, - "c5": 22.028275513467328, - "c6": -14.194608712970686, - "c7": -14.172927768908572 + "points": { + "c1": -23.537842762610786, + "c2": -5.6239613242343545, + "c3": -10.767520853048739, + "c4": -20.51693779395929, + "c5": 5.324855580670359, + "c6": -15.431786425557746, + "c7": 3.4767139433435936 }, - "vertexSeeds": { - "c1": 3.120397727538939, - "c2": 3.0705199095720763, - "c3": 3.295649724147386, - "c4": 3.156468319024046, - "c5": 3.296473589477143, - "c6": 3.211225252165357, - "c7": 3.078246502260083 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [58, 15, 49] }, @@ -250107,23 +250107,23 @@ "year": 1775, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 3.5692161628463346, - "c2": -13.118020751274598, - "c3": 11.937724221985889, - "c4": 4.671664877118197, - "c5": 5.985830823516174, - "c6": -21.484668131178477, - "c7": 12.120906486456349 + "points": { + "c1": 0.942398229616483, + "c2": 18.757734575575746, + "c3": 8.913575816498472, + "c4": 15.010443087377581, + "c5": 8.864318555658684, + "c6": -12.675964193298134, + "c7": -20.36701123110409 }, - "vertexSeeds": { - "c1": 1.751023489364638, - "c2": 1.697800920707841, - "c3": 1.5932050698683562, - "c4": 1.7566574914036177, - "c5": 1.696423373922668, - "c6": 1.6204044386571996, - "c7": 1.7328545816477838 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210815, + "c3": 2.1960240406842355, + "c4": 1.7568192325473881, + "c5": 1.3176144244105408, + "c6": 0.8784096162736951, + "c7": 0.43920480813684754 }, "rgb": [222, 0, 59] }, @@ -250134,23 +250134,23 @@ "year": 1775, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 15.191365242796401, - "c2": 2.9267223085726073, - "c3": -0.26403517906640417, - "c4": -5.820532316198385, - "c5": 9.255456849605316, - "c6": 8.462232372409318, - "c7": -1.8508472359772377 + "points": { + "c1": -25.221134342386378, + "c2": -2.9006192295380018, + "c3": 1.3482151005663283, + "c4": 8.030449395902416, + "c5": -15.08970690994342, + "c6": -13.845576159715758, + "c7": 11.22820260952706 }, - "vertexSeeds": { - "c1": 0.272020725388601, - "c2": 0.272020725388601, - "c3": 0.272020725388601, - "c4": 0.272020725388601, - "c5": 0.272020725388601, - "c6": 0.272020725388601, - "c7": 0.272020725388601 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -250161,23 +250161,23 @@ "year": 1775, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -10.147289997488123, - "c2": -34.98600650289109, - "c3": -0.8409256936132934, - "c4": -1.2257447898592346, - "c5": 8.929717208680891, - "c6": -9.336798666432504, - "c7": -39.15820903143121 + "points": { + "c1": 7.657154694259617, + "c2": 10.34040445089608, + "c3": -34.564774742358495, + "c4": -21.40324658385135, + "c5": 28.836551455860267, + "c6": 11.89881043173687, + "c7": -16.94165437734057 }, - "vertexSeeds": { - "c1": 5.910697474476383, - "c2": 5.8270716202251425, - "c3": 6.245209496601906, - "c4": 6.22230518406522, - "c5": 6.781110060174646, - "c6": 5.574709585862096, - "c7": 5.984549530016873 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -250188,23 +250188,23 @@ "year": 1775, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -22.94984404110758, - "c2": 11.945145659613694, - "c3": 19.061368222484546, - "c4": 27.186365515093478, - "c5": -6.964440218816957, - "c6": 7.099570894351643, - "c7": 17.22385789414202 + "points": { + "c1": 26.445411938836678, + "c2": -15.831071182146143, + "c3": 1.3378445968748025, + "c4": -28.707586729813443, + "c5": -10.754437230402072, + "c6": 6.577955948019664, + "c7": -23.29096793325381 }, - "vertexSeeds": { - "c1": 6.81270039038569, - "c2": 6.761609374140644, - "c3": 6.725609686034147, - "c4": 6.678461543174733, - "c5": 6.7508359972504755, - "c6": 6.674539761774187, - "c7": 6.914719575007471 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.93065187239945, + "c3": 8.275543226999545, + "c4": 6.620434581599643, + "c5": 4.965325936199739, + "c6": 3.310217290799807, + "c7": 1.6551086453999035 }, "rgb": [86, 146, 138] }, @@ -250215,23 +250215,23 @@ "year": 1775, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 10.07304483926444, - "c2": 12.460390410946687, - "c3": -14.976230903513802, - "c4": -8.800563318839979, - "c5": -17.771774937695852, - "c6": 13.788359641514155, - "c7": -11.679726282073402 + "points": { + "c1": 23.61301840354463, + "c2": 0.5275426578182945, + "c3": -9.549305037348425, + "c4": -12.789355478790037, + "c5": -12.048510156724516, + "c6": 15.064133849292702, + "c7": 11.913597377162425 }, - "vertexSeeds": { - "c1": 8.141422674851084, - "c2": 9.600306786052702, - "c3": 8.166458064113355, - "c4": 8.786923501658416, - "c5": 9.049171687664108, - "c6": 9.436970219873656, - "c7": 9.446552668352204 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.558021266759132, + "c4": 9.246417013407298, + "c5": 6.934812760055474, + "c6": 4.623208506703649, + "c7": 2.3116042533518244 }, "rgb": [238, 201, 159] }, @@ -250242,23 +250242,23 @@ "year": 1775, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 3.848738078762331, - "c2": 23.086533304085314, - "c3": -30.85393127447952, - "c4": 13.510572985108205, - "c5": 18.960231920814614, - "c6": 3.3068753924722785, - "c7": 20.441140800128103 + "points": { + "c1": 33.659831441432424, + "c2": -50.52927692171244, + "c3": -41.49533790011736, + "c4": 14.449161589364799, + "c5": 46.46319973848579, + "c6": 40.34205008749543, + "c7": 53.533619128525395 }, - "vertexSeeds": { - "c1": 7.850020147614826, - "c2": 8.147868570192129, - "c3": 7.944734060067047, - "c4": 7.8087704362518044, - "c5": 7.999010252874879, - "c6": 7.993092278870022, - "c7": 8.143867588102328 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094314, + "c3": 9.824318076745262, + "c4": 7.859454461396209, + "c5": 5.894590846047157, + "c6": 3.9297272306981044, + "c7": 1.9648636153490522 }, "rgb": [238, 201, 159] }, @@ -250269,23 +250269,23 @@ "year": 1775, "resistanceReported": false, "duration": 40435200, - "curveSeeds": { - "c1": -7.526451706257326, - "c2": -14.903196579868407, - "c3": 19.263186426703932, - "c4": 29.936573846983386, - "c5": 24.48288598351602, - "c6": -16.96990623809107, - "c7": 13.229973654965555 + "points": { + "c1": 17.502096705986453, + "c2": -16.941588439541135, + "c3": 23.02141998157213, + "c4": -4.297091659768654, + "c5": 46.465232408614106, + "c6": -22.537590684035855, + "c7": 2.920147517435069 }, - "vertexSeeds": { - "c1": 9.702359962305607, - "c2": 9.690622622853972, - "c3": 9.699245886708923, - "c4": 9.652994908831419, - "c5": 9.705954637983302, - "c6": 9.609368628675004, - "c7": 9.696826759183777 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151242, + "c3": 11.581137309292625, + "c4": 9.264909847434161, + "c5": 6.948682385575545, + "c6": 4.632454923717081, + "c7": 2.316227461858617 }, "rgb": [238, 201, 159] }, @@ -250296,23 +250296,23 @@ "year": 1775, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 29.146600450626508, - "c2": -31.56603199545301, - "c3": -31.34822436229284, - "c4": -1.848722849939577, - "c5": 4.633418810926884, - "c6": -0.17538088211189518, - "c7": 39.41134615063794 + "points": { + "c1": -9.532772163695597, + "c2": -36.185191845618824, + "c3": 2.9162377758019105, + "c4": 12.377731155390528, + "c5": -10.829178271241624, + "c6": 32.49753472966293, + "c7": 30.75282626212625 }, - "vertexSeeds": { - "c1": 1.4764216198348636, - "c2": 1.4630840377923142, - "c3": 1.450053744381236, - "c4": 1.4713695973049081, - "c5": 1.4711310006403455, - "c6": 1.4418829107356732, - "c7": 1.4970077926565415 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177566, + "c3": 1.84928340268146, + "c4": 1.4794267221451711, + "c5": 1.1095700416088747, + "c6": 0.7397133610725856, + "c7": 0.36985668053628906 }, "rgb": [86, 146, 138] }, @@ -250323,23 +250323,23 @@ "year": 1776, "resistanceReported": false, "duration": 42422400, - "curveSeeds": { - "c1": -16.154390883871727, - "c2": -21.01661038068019, - "c3": -39.33183668868622, - "c4": 34.85867429789328, - "c5": 37.59991037635297, - "c6": -53.77393470298125, - "c7": 29.6710695763583 + "points": { + "c1": -2.2039079037184592, + "c2": -56.66497042782209, + "c3": -39.06240696728334, + "c4": -30.881382745550354, + "c5": 44.28416655233368, + "c6": 18.667081764345873, + "c7": -47.076239667043694 }, - "vertexSeeds": { - "c1": 3.972895334890567, - "c2": 4.264912508246074, - "c3": 4.036256688342783, - "c4": 4.138490451367609, - "c5": 4.110106310840102, - "c6": 4.237544170197361, - "c7": 4.335513553863033 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.35228848821082, + "c3": 5.293573740175678, + "c4": 4.234858992140544, + "c5": 3.17614424410541, + "c6": 2.117429496070276, + "c7": 1.0587147480351342 }, "rgb": [77, 76, 132] }, @@ -250350,23 +250350,23 @@ "year": 1776, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": 30.821046804906793, - "c2": -10.09347801542507, - "c3": 30.880167940976072, - "c4": -10.887126527581515, - "c5": 53.85182903514555, - "c6": -7.56205991349578, - "c7": -16.010033248349863 + "points": { + "c1": 5.840138604987395, + "c2": -5.797617849552104, + "c3": 43.96060780655208, + "c4": 4.681633644149812, + "c5": -8.63531529296906, + "c6": 16.988322770224748, + "c7": -39.875594989257735 }, - "vertexSeeds": { - "c1": 3.5095145917390367, - "c2": 3.5269405148740245, - "c3": 3.24575453271863, - "c4": 3.29620557093804, - "c5": 3.46300424357561, - "c6": 3.4143136802328042, - "c7": 3.3233394056560055 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400837, + "c3": 4.253351826167359, + "c4": 3.4026814609338913, + "c5": 2.5520110957004136, + "c6": 1.7013407304669457, + "c7": 0.8506703652334778 }, "rgb": [238, 201, 159] }, @@ -250377,23 +250377,23 @@ "year": 1775, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -7.206717163914449, - "c2": -12.852460287060666, - "c3": 18.104967231411866, - "c4": 10.816858621412639, - "c5": -17.150331415422784, - "c6": -13.238800384600125, - "c7": 0.23772746799835787 + "points": { + "c1": -2.152478986218725, + "c2": 14.98032789610141, + "c3": 15.715873774423667, + "c4": -5.901915581140145, + "c5": -3.5457413089289034, + "c6": 8.77885770961754, + "c7": 9.52614958946619 }, - "vertexSeeds": { - "c1": 7.41528567545162, - "c2": 7.271072977467396, - "c3": 7.335555569092428, - "c4": 7.142493412209998, - "c5": 6.856768105886757, - "c6": 6.986672378540499, - "c7": 6.860550592266057 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -250404,23 +250404,23 @@ "year": 1775, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -2.021838901600752, - "c2": -3.3171704026752877, - "c3": 6.085794717200763, - "c4": -29.641250708665233, - "c5": 28.951012670230682, - "c6": 30.04282188460776, - "c7": -0.6027207577965754 + "points": { + "c1": 24.166723344655807, + "c2": -33.79640473374126, + "c3": -36.49552706112383, + "c4": -25.446763082220205, + "c5": -9.391197135060708, + "c6": -5.015530256251182, + "c7": -33.518548282305886 }, - "vertexSeeds": { - "c1": 3.137184388620387, - "c2": 3.317962156367776, - "c3": 3.287992806431452, - "c4": 3.5551971309961807, - "c5": 3.7006958444055105, - "c6": 3.0370551234166148, - "c7": 3.1149736353282376 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044383, + "c3": 4.623208506703653, + "c4": 3.698566805362919, + "c5": 2.7739251040221893, + "c6": 1.8492834026814595, + "c7": 0.9246417013407298 }, "rgb": [222, 0, 59] }, @@ -250431,23 +250431,23 @@ "year": 1775, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": 15.368521852494482, - "c2": -3.0588467745899877, - "c3": 2.377611331816091, - "c4": -13.705582878408443, - "c5": -19.617759883959632, - "c6": 11.02855897223941, - "c7": 19.03186187556406 + "points": { + "c1": -10.367031518186225, + "c2": 15.907611352657135, + "c3": 13.080741931838055, + "c4": -8.981437916229863, + "c5": -9.007172293503855, + "c6": -6.028715969136613, + "c7": -6.853970902837332 }, - "vertexSeeds": { - "c1": 2.951826173238709, - "c2": 2.9315223788503584, - "c3": 3.2387937848513784, - "c4": 3.1829399944725685, - "c5": 3.2558396689719378, - "c6": 3.021309519338821, - "c7": 3.2355423987810012 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998615, + "c3": 4.022191400832176, + "c4": 3.2177531206657433, + "c5": 2.4133148404993046, + "c6": 1.6088765603328716, + "c7": 0.8044382801664391 }, "rgb": [222, 0, 59] }, @@ -250458,23 +250458,23 @@ "year": 1776, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": 6.625195444860331, - "c2": 28.815971715668823, - "c3": -34.310522324666906, - "c4": 27.30186746743138, - "c5": -49.066034210864174, - "c6": 25.47362720106645, - "c7": 36.576878231610365 + "points": { + "c1": 54.137985531457005, + "c2": 42.093611355107285, + "c3": 56.51772353863791, + "c4": -2.511435387729648, + "c5": 3.9706990188634563, + "c6": 37.345086900740355, + "c7": 15.285923550269061 }, - "vertexSeeds": { - "c1": 3.779740797020213, - "c2": 3.9322909455512676, - "c3": 3.8817138840114005, - "c4": 3.945120213324807, - "c5": 3.7931174290983005, - "c6": 3.7914555606559066, - "c7": 3.8001576090503533 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -250485,23 +250485,23 @@ "year": 1775, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -8.89406756205166, - "c2": 35.370685884495856, - "c3": 3.064500253412689, - "c4": 23.364697560926786, - "c5": 4.399198773124063, - "c6": 1.6066281877504522, - "c7": 3.8514259757003657 + "points": { + "c1": -38.81494698974607, + "c2": 13.95247337801672, + "c3": -37.28656067923745, + "c4": -30.502210674654492, + "c5": -22.130163133980773, + "c6": 10.844913820481871, + "c7": -27.937199401318843 }, - "vertexSeeds": { - "c1": 3.9159910984948203, - "c2": 3.983843021500779, - "c3": 3.760720733976964, - "c4": 3.845076985265058, - "c5": 3.9744034757291766, - "c6": 3.783448522630981, - "c7": 3.933878369568683 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366162, + "c3": 4.808136846971799, + "c4": 3.8465094775774413, + "c5": 2.8848821081830773, + "c6": 1.9232547387887207, + "c7": 0.9616273693943637 }, "rgb": [86, 146, 138] }, @@ -250512,23 +250512,23 @@ "year": 1776, "resistanceReported": false, "duration": 58492800, - "curveSeeds": { - "c1": -8.695915916209657, - "c2": -0.20381882169643006, - "c3": 14.77223230424535, - "c4": 12.633508072376628, - "c5": 0.018122169625442552, - "c6": -12.057001939975223, - "c7": -3.9400996371145993 + "points": { + "c1": -46.594368875265914, + "c2": 63.42048887766228, + "c3": 1.2287951321578419, + "c4": 28.170911089654908, + "c5": 71.3527012294339, + "c6": -9.774031072331084, + "c7": -64.7371313581124 }, - "vertexSeeds": { - "c1": 3.953949013204596, - "c2": 3.8659953414404162, - "c3": 4.064463754810829, - "c4": 3.750207395874224, - "c5": 4.039185174595638, - "c6": 4.206579652008225, - "c7": 3.9037060587618657 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251043, + "c3": 5.3166897827092, + "c4": 4.253351826167362, + "c5": 3.190013869625519, + "c6": 2.126675913083681, + "c7": 1.0633379565418433 }, "rgb": [222, 0, 59] }, @@ -250539,23 +250539,23 @@ "year": 1775, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": 23.088550631809653, - "c2": -36.200110227573944, - "c3": 23.49348103556497, - "c4": -40.171173530821605, - "c5": 16.41580570300691, - "c6": 26.621211653073416, - "c7": 21.920805478292053 + "points": { + "c1": -21.784790980693458, + "c2": 1.4011093486505857, + "c3": 20.881221868890464, + "c4": -8.72580922727856, + "c5": -14.519306330694079, + "c6": -54.339456985931506, + "c7": -18.41125679321692 }, - "vertexSeeds": { - "c1": 1.6519775266224244, - "c2": 1.6545494219771495, - "c3": 1.7437226883883672, - "c4": 1.7237386346186045, - "c5": 1.7075001180508658, - "c6": 1.7332829299938917, - "c7": 1.689122239281254 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.524271844660192, + "c3": 2.1035598705501646, + "c4": 1.6828478964401303, + "c5": 1.262135922330096, + "c6": 0.8414239482200687, + "c7": 0.42071197411003436 }, "rgb": [86, 146, 138] }, @@ -250566,23 +250566,23 @@ "year": 1775, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": 0.51439930249499, - "c2": 2.5072707978417803, - "c3": 1.2453830544001754, - "c4": -11.362590245900993, - "c5": -15.207419038332745, - "c6": -6.356927102040544, - "c7": -12.376554740572733 + "points": { + "c1": -6.103050741678629, + "c2": 0.05590180928825106, + "c3": 21.326510070906565, + "c4": -20.8776857049241, + "c5": 7.495914664227172, + "c6": -5.243096317501465, + "c7": 13.252507875252249 }, - "vertexSeeds": { - "c1": 6.726898777721282, - "c2": 6.010014209652206, - "c3": 5.688166487341529, - "c4": 5.679808184330214, - "c5": 6.065259125936227, - "c6": 6.442363158587188, - "c7": 6.569443869515263 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -250593,23 +250593,23 @@ "year": 1775, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": -3.491619757207843, - "c2": -10.771701932353679, - "c3": 16.883220188541785, - "c4": -10.818006515010351, - "c5": 16.433529002665303, - "c6": 13.482859514068615, - "c7": -5.250519500706131 + "points": { + "c1": -13.339977748794222, + "c2": 21.574576234298448, + "c3": -17.50790239818882, + "c4": 6.761681217293329, + "c5": -7.535134164069941, + "c6": 15.183943954221718, + "c7": 9.999041252805899 }, - "vertexSeeds": { - "c1": 1.5582450122777753, - "c2": 1.4686308392383935, - "c3": 1.5170832258162177, - "c4": 1.2496351007067317, - "c5": 1.358421086756655, - "c6": 1.4004196244513996, - "c7": 1.5026587948700447 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [77, 76, 132] }, @@ -250620,23 +250620,23 @@ "year": 1775, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": 18.990754800578046, - "c2": -15.990710655136054, - "c3": 19.74732647213162, - "c4": 9.254847651499848, - "c5": -6.208989123068481, - "c6": 12.754702089664654, - "c7": 15.287749631273073 + "points": { + "c1": 20.87707144124792, + "c2": -13.900285063280439, + "c3": 18.016280782504587, + "c4": 16.152314339968427, + "c5": 19.92908267822397, + "c6": 4.926461291854778, + "c7": -20.727155583499652 }, - "vertexSeeds": { - "c1": 9.198252770283199, - "c2": 8.962603660437031, - "c3": 8.902607934937523, - "c4": 8.573492546247138, - "c5": 8.575121571595938, - "c6": 8.593203132419172, - "c7": 9.749793132461905 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.31345353675451, + "c3": 11.92787794729542, + "c4": 9.542302357836338, + "c5": 7.156726768377255, + "c6": 4.7711511789181635, + "c7": 2.3855755894590818 }, "rgb": [77, 76, 132] }, @@ -250647,23 +250647,23 @@ "year": 1775, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": -1.9138120794910165, - "c2": 9.28555719985026, - "c3": -28.29453731308865, - "c4": -20.96724544534625, - "c5": 20.01242318224098, - "c6": -26.8334058550268, - "c7": -7.887210059372713 + "points": { + "c1": -18.13057805094526, + "c2": 32.92790096306193, + "c3": 1.2339922969963126, + "c4": 10.147737029914495, + "c5": -27.273109568494167, + "c6": -19.694200497746323, + "c7": -22.08465923419535 }, - "vertexSeeds": { - "c1": 6.850503063509457, - "c2": 6.698187990392672, - "c3": 6.872311646766137, - "c4": 6.794954271310609, - "c5": 6.769616030216125, - "c6": 6.902233418002641, - "c7": 6.8330751988730105 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479876, + "c3": 8.321775312066578, + "c4": 6.657420249653251, + "c5": 4.993065187239953, + "c6": 3.3287101248266255, + "c7": 1.6643550624133276 }, "rgb": [86, 146, 138] }, @@ -250674,23 +250674,23 @@ "year": 1775, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": -7.501934940191974, - "c2": -6.07050062222104, - "c3": -5.0654600654444035, - "c4": 17.39809237171928, - "c5": -16.522235643163935, - "c6": -4.231424294101199, - "c7": -5.314204608366021 + "points": { + "c1": -4.104028754650898, + "c2": 13.742256044184117, + "c3": 1.1117779687676403, + "c4": 5.199077245400023, + "c5": 4.401182193552678, + "c6": -16.537634881463465, + "c7": -8.933458900684437 }, - "vertexSeeds": { - "c1": 1.839341890430615, - "c2": 1.9204796416725403, - "c3": 1.8667219764073604, - "c4": 1.7193726166454408, - "c5": 2.1880093547012303, - "c6": 2.05363529254523, - "c7": 1.7657770366040162 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852986, + "c3": 2.635228848821081, + "c4": 2.108183079056866, + "c5": 1.5811373092926484, + "c6": 1.054091539528433, + "c7": 0.5270457697642174 }, "rgb": [77, 76, 132] }, @@ -250701,23 +250701,23 @@ "year": 1774, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": -17.950408291868033, - "c2": -14.365392951327712, - "c3": -7.0427182469461, - "c4": -1.5721306322092943, - "c5": 15.728804553079947, - "c6": 1.0669794332594797, - "c7": -17.89719937430779 + "points": { + "c1": -17.53959839791388, + "c2": 1.758345723996193, + "c3": -19.769659868129267, + "c4": -1.4448758462389648, + "c5": 10.054692492339058, + "c6": 14.24566278816711, + "c7": -3.299062118134991 }, - "vertexSeeds": { - "c1": 10.519183925297655, - "c2": 9.796590057714676, - "c3": 9.100284012080113, - "c4": 10.143755309428421, - "c5": 10.437695059977523, - "c6": 10.495008447236664, - "c7": 9.222355947640244 + "offsets": { + "c1": 18.155339805825243, + "c2": 15.561719833564487, + "c3": 12.96809986130375, + "c4": 10.374479889042995, + "c5": 7.780859916782249, + "c6": 5.187239944521503, + "c7": 2.5936199722607465 }, "rgb": [238, 201, 159] }, @@ -250728,23 +250728,23 @@ "year": 1775, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 29.175978819338177, - "c2": 14.844229139657415, - "c3": -18.939167790847062, - "c4": -6.804361172978744, - "c5": 10.888219510191483, - "c6": -4.944961442104198, - "c7": -25.5980161525624 + "points": { + "c1": 18.530916785020892, + "c2": -10.195805753191436, + "c3": 9.563609883523831, + "c4": 27.026191023003, + "c5": -5.262017399084172, + "c6": 24.674298978919516, + "c7": 14.729540026885275 }, - "vertexSeeds": { - "c1": 6.92617434372193, - "c2": 6.603093856566191, - "c3": 6.17899654911372, - "c4": 6.683002972327334, - "c5": 6.982216521172887, - "c6": 6.4164841958778736, - "c7": 6.7626790811996536 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284323, + "c3": 8.784096162736942, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947745, + "c7": 1.7568192325473924 }, "rgb": [222, 0, 59] }, @@ -250755,23 +250755,23 @@ "year": 1775, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -21.164387753202167, - "c2": -16.428098864656967, - "c3": 27.05885604552875, - "c4": 11.912236129257685, - "c5": 15.609292382130072, - "c6": 16.129747549208453, - "c7": -18.916132454740193 + "points": { + "c1": -25.418033112607123, + "c2": -18.966999474911454, + "c3": 22.563008078039182, + "c4": 15.348380004762888, + "c5": -6.922127478052996, + "c6": 20.777656605802044, + "c7": -12.01571499003036 }, - "vertexSeeds": { - "c1": 8.142568319088952, - "c2": 7.969310505682323, - "c3": 7.973673501395194, - "c4": 8.163141967524085, - "c5": 8.15414034445508, - "c6": 8.03098151074071, - "c7": 8.18957612579051 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295439, + "c3": 9.939898289412847, + "c4": 7.951918631530294, + "c5": 5.963938973647701, + "c6": 3.975959315765147, + "c7": 1.9879796578825932 }, "rgb": [86, 146, 138] }, @@ -250782,23 +250782,23 @@ "year": 1776, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -16.42914837877585, - "c2": -27.22078376804898, - "c3": 26.97542670422517, - "c4": 12.521270990069098, - "c5": -23.609682223333852, - "c6": 44.64038113357218, - "c7": 4.251828058919635 + "points": { + "c1": 3.1210218802608694, + "c2": -16.806423328075432, + "c3": 11.184580706861809, + "c4": -18.71245956646022, + "c5": -22.031506108476556, + "c6": 54.19305194146841, + "c7": -3.1937106472657533 }, - "vertexSeeds": { - "c1": 6.791013711377746, - "c2": 6.8466355232538465, - "c3": 6.607626018210653, - "c4": 6.784150242614199, - "c5": 6.88039539473529, - "c6": 6.930369038101601, - "c7": 6.638523096619925 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -250809,23 +250809,23 @@ "year": 1776, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": 36.83478331618971, - "c2": -45.76885126426613, - "c3": -5.873763267618195, - "c4": -10.552707260571964, - "c5": -53.38021721901885, - "c6": 28.912049219588987, - "c7": -35.24858284363892 + "points": { + "c1": 46.59963313824657, + "c2": -33.062100705140296, + "c3": 9.452436999589345, + "c4": 33.235552882389705, + "c5": 7.289537766785365, + "c6": 44.99246674476422, + "c7": 30.19005687040218 }, - "vertexSeeds": { - "c1": 9.50837826558881, - "c2": 9.463570242979486, - "c3": 9.48725990992796, - "c4": 9.465087405603835, - "c5": 9.480725630577826, - "c6": 9.438563094177086, - "c7": 9.473933756756786 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748934, + "c3": 11.349976883957416, + "c4": 9.079981507166076, + "c5": 6.809986130374557, + "c6": 4.539990753583038, + "c7": 2.269995376791519 }, "rgb": [238, 201, 159] }, @@ -250836,23 +250836,23 @@ "year": 1775, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -30.692933925612287, - "c2": 41.723014022927885, - "c3": 1.0693420405827254, - "c4": 32.15186937508311, - "c5": 5.261629339000997, - "c6": -8.941212027514467, - "c7": 32.40383900781141 + "points": { + "c1": 22.161096743081572, + "c2": 30.104020565153917, + "c3": -2.7861551070313837, + "c4": -12.976751144253953, + "c5": 46.573135235744246, + "c6": 45.33442870104497, + "c7": -25.61155425989158 }, - "vertexSeeds": { - "c1": 3.3947402448097805, - "c2": 3.57308686877971, - "c3": 3.3836144143594997, - "c4": 3.3932839309038223, - "c5": 3.6121375826319837, - "c6": 3.6152388159003603, - "c7": 3.376832991311738 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.2427184466019465, + "c3": 4.36893203883495, + "c4": 3.4951456310679645, + "c5": 2.621359223300968, + "c6": 1.7475728155339822, + "c7": 0.8737864077669962 }, "rgb": [58, 15, 49] }, @@ -250863,23 +250863,23 @@ "year": 1776, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 11.736625185301634, - "c2": 14.203813532586778, - "c3": -26.125029678839276, - "c4": 35.34881356222134, - "c5": -13.012362083650807, - "c6": -24.893225478668178, - "c7": 4.980950440221065 + "points": { + "c1": 12.865456597691619, + "c2": -4.675648722488297, + "c3": -36.705918262126374, + "c4": 39.4791501396744, + "c5": 16.055225626010156, + "c6": -53.20028678666865, + "c7": -10.093335942639342 }, - "vertexSeeds": { - "c1": 6.61894331142306, - "c2": 6.916625661949796, - "c3": 6.942616118983287, - "c4": 6.414594887071899, - "c5": 6.913521953191495, - "c6": 6.76881647237592, - "c7": 6.563987371012009 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -250890,23 +250890,23 @@ "year": 1775, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": -6.878514660361773, - "c2": 0.6310541685929181, - "c3": -14.953378020165434, - "c4": 4.2962466669129284, - "c5": -3.152191862009049, - "c6": -1.5587059566086587, - "c7": -13.08001799099183 + "points": { + "c1": -3.4738377982196873, + "c2": 13.742078443959162, + "c3": 11.640584496302338, + "c4": 1.3659995387395263, + "c5": 3.0563132668033894, + "c6": -7.8097468966821655, + "c7": 2.7003420332220465 }, - "vertexSeeds": { - "c1": 5.821375182021191, - "c2": 6.378804517418383, - "c3": 5.742036854675751, - "c4": 5.775342798721406, - "c5": 6.0021929581679245, - "c6": 6.359679438050321, - "c7": 5.64572575397363 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -250917,23 +250917,23 @@ "year": 1775, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -23.087576265151966, - "c2": -19.251252547437925, - "c3": 0.6645081700868687, - "c4": 2.2288966973507343, - "c5": 28.24609783682012, - "c6": 9.360834388022738, - "c7": 27.33752986624861 + "points": { + "c1": -16.410923532542583, + "c2": 19.189294259301512, + "c3": -41.95318958828415, + "c4": 10.253002857050674, + "c5": 5.861913553774329, + "c6": 38.14586041630478, + "c7": 43.96042609457876 }, - "vertexSeeds": { - "c1": 6.5763730385333865, - "c2": 6.444992983111864, - "c3": 6.6056135712617445, - "c4": 6.467670131274093, - "c5": 6.468062996844899, - "c6": 6.512414189552865, - "c7": 6.394774925209954 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.45908460471569, + "c3": 7.882570503929703, + "c4": 6.306056403143774, + "c5": 4.729542302357845, + "c6": 3.153028201571915, + "c7": 1.5765141007859291 }, "rgb": [222, 0, 59] }, @@ -250944,23 +250944,23 @@ "year": 1775, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 18.59895921786498, - "c2": 17.67019087065524, - "c3": -13.28269551033479, - "c4": -29.42981748237102, - "c5": 0.9149572446980905, - "c6": -22.898115138930933, - "c7": 15.835695259375868 + "points": { + "c1": 26.795768257203136, + "c2": -4.106185762996297, + "c3": -8.846945126430747, + "c4": 12.628403741037047, + "c5": 7.2900189727412155, + "c6": 6.1804073718891175, + "c7": 6.762362828367522 }, - "vertexSeeds": { - "c1": 4.90335193892222, - "c2": 4.756751462306851, - "c3": 5.049291024648195, - "c4": 4.8586447217294575, - "c5": 5.5818174025309535, - "c6": 5.47007291604998, - "c7": 5.065094767401289 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785019, + "c3": 6.773000462320848, + "c4": 5.418400369856678, + "c5": 4.063800277392507, + "c6": 2.7092001849283363, + "c7": 1.3546000924641652 }, "rgb": [86, 146, 138] }, @@ -250971,23 +250971,23 @@ "year": 1775, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -10.522563403581074, - "c2": -28.442808159033785, - "c3": -9.230911135347707, - "c4": 20.393841419739147, - "c5": -31.418483927152355, - "c6": -22.777812734175804, - "c7": -33.58259910753786 + "points": { + "c1": 38.118070996328555, + "c2": 28.21742242860836, + "c3": 26.15853203004177, + "c4": -38.391736103977834, + "c5": -35.137424998444196, + "c6": 13.04841762212827, + "c7": -10.854381077905273 }, - "vertexSeeds": { - "c1": 3.92280322228525, - "c2": 3.8345054288871934, - "c3": 3.895625175558589, - "c4": 4.059732312903649, - "c5": 4.171289637826857, - "c6": 3.93350821807486, - "c7": 3.887804298621143 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [238, 201, 159] }, @@ -250998,23 +250998,23 @@ "year": 1776, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 0.8070148688280128, - "c2": 34.817194960615446, - "c3": 29.77111207146242, - "c4": -26.268877009764736, - "c5": -51.29763241946948, - "c6": 15.641465460220978, - "c7": -35.718187597261974 + "points": { + "c1": -38.84387906414274, + "c2": 7.955635832963132, + "c3": 17.20193727470454, + "c4": -11.354789201052938, + "c5": 50.66234289354045, + "c6": -21.271074311281808, + "c7": 25.449176364925897 }, - "vertexSeeds": { - "c1": 2.601344356365661, - "c2": 2.766460028230233, - "c3": 2.7671959330930127, - "c4": 2.676600163321566, - "c5": 2.784593741489428, - "c6": 2.760434587709833, - "c7": 2.6683072855745107 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832172, + "c3": 3.3518261673601497, + "c4": 2.6814609338881152, + "c5": 2.0110957004160923, + "c6": 1.3407304669440576, + "c7": 0.6703652334720348 }, "rgb": [86, 146, 138] }, @@ -251025,23 +251025,23 @@ "year": 1775, "resistanceReported": false, "duration": 6739200, - "curveSeeds": { - "c1": 8.648774751435319, - "c2": 16.644648490124926, - "c3": 0.059998901236262725, - "c4": -0.06030918416459485, - "c5": -5.155513114263764, - "c6": -13.834054351229542, - "c7": 3.9261287202255417 + "points": { + "c1": 0.5666199090311181, + "c2": 6.500826592476141, + "c3": -0.9439593577560963, + "c4": 11.9839892856191, + "c5": -14.509524678704318, + "c6": 11.241542075251683, + "c7": -5.940849433933215 }, - "vertexSeeds": { - "c1": 4.192028506156689, - "c2": 3.9572125893162653, - "c3": 4.028458494132689, - "c4": 4.015356619640823, - "c5": 4.405109609721193, - "c6": 3.814837032850526, - "c7": 4.349384418611074 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -251052,23 +251052,23 @@ "year": 1775, "resistanceReported": false, "duration": 6739200, - "curveSeeds": { - "c1": -0.20549311917564594, - "c2": 6.262947910881227, - "c3": 13.511672496179376, - "c4": 0.2069128633732582, - "c5": -12.14905003763917, - "c6": 13.933317739977564, - "c7": -12.11784698876631 + "points": { + "c1": 11.938981727510605, + "c2": 9.069566351097514, + "c3": 2.0234345669247134, + "c4": 15.83462694863331, + "c5": -2.7501879534004345, + "c6": 8.76944037822333, + "c7": 6.224168147941146 }, - "vertexSeeds": { - "c1": 6.355066641891038, - "c2": 5.706125371224656, - "c3": 5.791436289455313, - "c4": 6.093856738767319, - "c5": 6.528742084347291, - "c6": 6.79542480768546, - "c7": 5.984697637021677 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -251079,23 +251079,23 @@ "year": 1775, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 10.45093164379837, - "c2": 7.904702201296676, - "c3": -8.11773337071335, - "c4": -0.27013784404694263, - "c5": 12.003604758981307, - "c6": -7.514751655283261, - "c7": -6.034945900920674 + "points": { + "c1": -1.6517982412976657, + "c2": -5.798292703304265, + "c3": 0.6521693578818883, + "c4": -8.41911422516684, + "c5": 3.0204531281786338, + "c6": -15.072926291550441, + "c7": -13.203967487700854 }, - "vertexSeeds": { - "c1": 5.915177893521996, - "c2": 5.666667029544921, - "c3": 6.082995922144001, - "c4": 6.308362512054504, - "c5": 5.758854708388307, - "c6": 6.686500867751092, - "c7": 6.800496258290182 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -251106,23 +251106,23 @@ "year": 1775, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 18.818173328139267, - "c2": 20.055861462041783, - "c3": 10.226069138830233, - "c4": 14.062164856362521, - "c5": -26.432181010588305, - "c6": -1.1638596562191275, - "c7": -19.71127049825949 + "points": { + "c1": 9.990279544104851, + "c2": -32.74741938945152, + "c3": 25.323380770489614, + "c4": 6.544544502828728, + "c5": -26.108365035878606, + "c6": -23.807798011605247, + "c7": 20.028862308970865 }, - "vertexSeeds": { - "c1": 5.511608319656139, - "c2": 6.088352912297636, - "c3": 5.4552031898816065, - "c4": 5.430259213425147, - "c5": 5.429726730987717, - "c6": 5.722487964011314, - "c7": 5.530653863061166 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.93203883495145, + "c3": 7.443365695792879, + "c4": 5.954692556634307, + "c5": 4.466019417475725, + "c6": 2.9773462783171434, + "c7": 1.4886731391585717 }, "rgb": [58, 15, 49] }, @@ -251133,23 +251133,23 @@ "year": 1775, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 19.811976700050394, - "c2": 17.997581939687777, - "c3": -33.26637895781019, - "c4": -46.0985283313355, - "c5": 20.395343350107964, - "c6": -36.036945359571256, - "c7": 25.63839013065045 + "points": { + "c1": -24.05372797958323, + "c2": 32.49166678398383, + "c3": 0.07051492201549081, + "c4": -31.43509695073641, + "c5": -21.77169011593761, + "c6": 2.8310751738464006, + "c7": 13.180667915728357 }, - "vertexSeeds": { - "c1": 5.665196643677795, - "c2": 5.833596928488208, - "c3": 6.094579527943418, - "c4": 5.983258036134324, - "c5": 5.588061577350839, - "c6": 6.061645918687634, - "c7": 5.796859136703153 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [58, 15, 49] }, @@ -251160,23 +251160,23 @@ "year": 1775, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 22.13390302428418, - "c2": 22.143667343252204, - "c3": 49.031468824214585, - "c4": -21.5216235924273, - "c5": 9.404844013558268, - "c6": -45.93200427654555, - "c7": -45.727895989293565 + "points": { + "c1": 46.94478140395502, + "c2": 36.718943371750385, + "c3": 5.098456556164912, + "c4": -33.20703347556207, + "c5": -45.55168598406733, + "c6": -42.944695829242804, + "c7": -8.529763325076907 }, - "vertexSeeds": { - "c1": 5.229798381524007, - "c2": 5.779893869962879, - "c3": 5.393103099229467, - "c4": 4.771762671092288, - "c5": 4.783238970273494, - "c6": 5.3460979157331465, - "c7": 5.190197975280851 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026356, + "c3": 6.91169671752196, + "c4": 5.529357374017571, + "c5": 4.147018030513174, + "c6": 2.7646786870087854, + "c7": 1.3823393435043927 }, "rgb": [77, 76, 132] }, @@ -251187,23 +251187,23 @@ "year": 1775, "resistanceReported": true, "duration": 15638400, - "curveSeeds": { - "c1": -23.767637353756204, - "c2": -24.098067790559014, - "c3": 11.259880066116661, - "c4": 4.8700141170049704, - "c5": 22.864913984043678, - "c6": -0.040263442700791074, - "c7": -23.060653064506702 + "points": { + "c1": 22.2798656152295, + "c2": -10.083756718963496, + "c3": 26.670907843258274, + "c4": 16.68143071321845, + "c5": 12.443988141932625, + "c6": 9.566190634839042, + "c7": 13.746350303166292 }, - "vertexSeeds": { - "c1": 1.337501259017372, - "c2": 1.4436307804701665, - "c3": 1.3306173711809788, - "c4": 1.426160125960647, - "c5": 1.3801676327375603, - "c6": 1.4479851359192915, - "c7": 1.4545057422827745 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097088, + "c3": 1.779935275080908, + "c4": 1.4239482200647244, + "c5": 1.067961165048544, + "c6": 0.7119741100323638, + "c7": 0.3559870550161803 }, "rgb": [58, 15, 49] }, @@ -251214,23 +251214,23 @@ "year": 1775, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -27.990203385063914, - "c2": 13.938720277210699, - "c3": 34.445565279588195, - "c4": 3.4003019250788284, - "c5": -22.672984180673993, - "c6": 20.00131880282011, - "c7": 37.311572482464285 + "points": { + "c1": -15.537815776168518, + "c2": -19.72575647532519, + "c3": 8.204720663066539, + "c4": 40.34235745053611, + "c5": -12.001071808633153, + "c6": -12.8162757514167, + "c7": -11.33448655212134 }, - "vertexSeeds": { - "c1": 4.501769083004483, - "c2": 4.555280102066209, - "c3": 4.720237127387152, - "c4": 4.554897967568568, - "c5": 4.5528100087590015, - "c6": 4.533079555332136, - "c7": 4.5415913776711445 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934818, + "c3": 5.709662505779009, + "c4": 4.567730004623212, + "c5": 3.425797503467402, + "c6": 2.283865002311606, + "c7": 1.1419325011557961 }, "rgb": [77, 76, 132] }, @@ -251241,23 +251241,23 @@ "year": 1775, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -26.39324257098008, - "c2": 11.376531912855675, - "c3": -42.7032982002704, - "c4": -26.077821762037097, - "c5": 1.7009758208975825, - "c6": -42.45205031953503, - "c7": 5.286457373812986 + "points": { + "c1": 43.74907806366507, + "c2": -20.424485981375465, + "c3": 29.503133527964437, + "c4": 43.886136401637515, + "c5": -8.475276294653703, + "c6": 36.58721388105975, + "c7": -7.481666952102806 }, - "vertexSeeds": { - "c1": 4.4739524190193976, - "c2": 4.555509516951946, - "c3": 4.441361868236779, - "c4": 4.344890668670761, - "c5": 4.294985919705482, - "c6": 4.4562343010960035, - "c7": 4.411020529405325 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.5464632454923715, + "c3": 5.455386037910309, + "c4": 4.364308830328247, + "c5": 3.2732316227461857, + "c6": 2.1821544151641237, + "c7": 1.0910772075820618 }, "rgb": [77, 76, 132] }, @@ -251268,23 +251268,23 @@ "year": 1776, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": -41.22746360509912, - "c2": 17.993158481773797, - "c3": -19.24831346860681, - "c4": 21.583425016810345, - "c5": 0.9012747821841103, - "c6": 46.07760169463304, - "c7": -7.239314668512591 + "points": { + "c1": 7.1287428751228035, + "c2": -9.535090171410538, + "c3": 39.277045313976366, + "c4": -32.25628970898481, + "c5": -16.216879700441886, + "c6": 14.221996016619507, + "c7": 23.253256300061587 }, - "vertexSeeds": { - "c1": 6.773962849071397, - "c2": 7.023968211729395, - "c3": 6.948580046079239, - "c4": 6.488961803990853, - "c5": 6.726114837259449, - "c6": 6.194573396697878, - "c7": 6.832219015520785 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [77, 76, 132] }, @@ -251295,23 +251295,23 @@ "year": 1775, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -5.108489914753465, - "c2": 0.2020726699330364, - "c3": 4.742331245890195, - "c4": -12.502980513828488, - "c5": 10.190527282946299, - "c6": 14.66102545901266, - "c7": -2.996885439612713 + "points": { + "c1": 0.4474851443875245, + "c2": -4.203045231888959, + "c3": 5.554147040208125, + "c4": -11.497718737216461, + "c5": 14.669951717439925, + "c6": 3.0648642153345165, + "c7": 1.8857723620210542 }, - "vertexSeeds": { - "c1": 2.930930145876089, - "c2": 3.248405489597411, - "c3": 3.250705348779642, - "c4": 2.994970531107365, - "c5": 3.2785808189228094, - "c6": 2.9316013565954666, - "c7": 3.2199101209471204 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [238, 201, 159] }, @@ -251322,23 +251322,23 @@ "year": 1775, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -8.783020994148718, - "c2": -7.100001792450852, - "c3": 0.9893277340135498, - "c4": -4.002174926259666, - "c5": 0.08826592496324714, - "c6": -12.356089020004152, - "c7": -11.385518589248669 + "points": { + "c1": 7.182249901175702, + "c2": 15.179842055138156, + "c3": -5.256439621091673, + "c4": -11.004501662917495, + "c5": 0.7180152627410763, + "c6": -10.714282175053208, + "c7": -15.473440964619762 }, - "vertexSeeds": { - "c1": 5.762449258039626, - "c2": 5.682652053440854, - "c3": 5.7142311384186355, - "c4": 5.657610975154749, - "c5": 5.738930766039238, - "c6": 5.648186156633008, - "c7": 5.681000145568846 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066583, + "c3": 6.934812760055495, + "c4": 5.547850208044409, + "c5": 4.16088765603326, + "c6": 2.7739251040221737, + "c7": 1.3869625520110869 }, "rgb": [222, 0, 59] }, @@ -251349,23 +251349,23 @@ "year": 1776, "resistanceReported": false, "duration": 67132800, - "curveSeeds": { - "c1": 55.740424332179316, - "c2": 35.00952967310107, - "c3": -76.74322749183878, - "c4": 61.63290763784562, - "c5": 55.50045092982813, - "c6": -37.202020003452965, - "c7": -0.37558083337515313 + "points": { + "c1": -12.200570519525627, + "c2": 14.670882815610312, + "c3": -59.00400954017314, + "c4": 68.99331964570604, + "c5": -5.8668216126840065, + "c6": 62.07454824296224, + "c7": 45.182494800846854 }, - "vertexSeeds": { - "c1": 7.572431699993826, - "c2": 7.978982128083055, - "c3": 7.86196677487212, - "c4": 7.757040820020232, - "c5": 7.827222498766394, - "c6": 7.712634651275693, - "c7": 8.120099698727662 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255205, + "c3": 9.916782246879324, + "c4": 7.933425797503463, + "c5": 5.950069348127602, + "c6": 3.966712898751742, + "c7": 1.9833564493758606 }, "rgb": [86, 146, 138] }, @@ -251376,23 +251376,23 @@ "year": 1777, "resistanceReported": false, "duration": 68083200, - "curveSeeds": { - "c1": -52.96521332437845, - "c2": 4.3575403982993635, - "c3": 3.204691234894952, - "c4": -82.45783835274902, - "c5": 5.089895362697021, - "c6": 60.73351912072738, - "c7": 55.188147347207206 + "points": { + "c1": 85.04420347065425, + "c2": 70.18867370026337, + "c3": 11.448152612265403, + "c4": -39.33823371142724, + "c5": 85.23954838973148, + "c6": 63.00825979753185, + "c7": 33.60243498164782 }, - "vertexSeeds": { - "c1": 4.053284790331037, - "c2": 3.8033936700319906, - "c3": 3.8940446675204368, - "c4": 3.9536788000494596, - "c5": 3.7818394299093607, - "c6": 3.841621658095521, - "c7": 4.051137939694783 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -251403,23 +251403,23 @@ "year": 1775, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 12.549587980982217, - "c2": 24.89218046167411, - "c3": -46.11879102209769, - "c4": -10.911115375604425, - "c5": -11.148008440718037, - "c6": 25.268152695192946, - "c7": 0.22094393035642668 + "points": { + "c1": -17.249030344664988, + "c2": 11.01345600800385, + "c3": 37.600491204147126, + "c4": -9.554727266603209, + "c5": 6.82132921834711, + "c6": 45.96752193190381, + "c7": -0.49992176475940653 }, - "vertexSeeds": { - "c1": 5.57820620407589, - "c2": 5.834078103695136, - "c3": 6.445757398288282, - "c4": 6.548966867012677, - "c5": 6.388731940091402, - "c6": 6.425977397835876, - "c7": 5.879456790714606 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996762, + "c4": 6.343042071197408, + "c5": 4.757281553398053, + "c6": 3.171521035598699, + "c7": 1.5857605177993441 }, "rgb": [222, 0, 59] }, @@ -251430,23 +251430,23 @@ "year": 1775, "resistanceReported": false, "duration": 4752000, - "curveSeeds": { - "c1": 14.82221521117371, - "c2": 10.477359536269987, - "c3": -7.757063530116753, - "c4": -6.547465631389102, - "c5": -1.6849579995930437, - "c6": -3.063446429568808, - "c7": -5.994096679001734 + "points": { + "c1": -14.00912209591031, + "c2": 6.673025715375559, + "c3": -16.639572071213653, + "c4": 15.070721051058314, + "c5": -5.984882531624747, + "c6": 13.186137572253937, + "c7": -12.085708643108466 }, - "vertexSeeds": { - "c1": 4.851035042369417, - "c2": 4.788591431276016, - "c3": 5.7358280562313055, - "c4": 5.080583650881878, - "c5": 5.307224761559966, - "c6": 5.233057554456414, - "c7": 5.172286589616011 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055482, + "c4": 5.547850208044377, + "c5": 4.160887656033283, + "c6": 2.7739251040221884, + "c7": 1.3869625520110942 }, "rgb": [86, 146, 138] }, @@ -251457,23 +251457,23 @@ "year": 1776, "resistanceReported": false, "duration": 37843200, - "curveSeeds": { - "c1": -41.86728786254237, - "c2": -18.273604745238423, - "c3": 4.684856115136228, - "c4": -11.215934846913527, - "c5": 24.115232389115683, - "c6": -35.85814845776118, - "c7": 1.061024115380718 + "points": { + "c1": 36.16235643339741, + "c2": 35.451755234712444, + "c3": -29.865651159071007, + "c4": 12.803911605253724, + "c5": -8.149415180564816, + "c6": -6.50010573813163, + "c7": -15.647093833208373 }, - "vertexSeeds": { - "c1": 1.315815536100283, - "c2": 1.2751603244055671, - "c3": 1.2139776439100671, - "c4": 1.1620551307177802, - "c5": 1.3345522936373289, - "c6": 1.188380404546932, - "c7": 1.1556600389387766 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155345, + "c3": 1.6181229773462793, + "c4": 1.294498381877024, + "c5": 0.9708737864077672, + "c6": 0.6472491909385106, + "c7": 0.3236245954692553 }, "rgb": [77, 76, 132] }, @@ -251484,23 +251484,23 @@ "year": 1775, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 20.819678684531887, - "c2": -23.49440585713075, - "c3": 3.114225786962564, - "c4": -12.239139183443697, - "c5": 9.68611382223861, - "c6": -34.35381093156503, - "c7": 3.966245861904568 + "points": { + "c1": -31.7967851031624, + "c2": -16.67742638048717, + "c3": -15.718761808561801, + "c4": 16.655476773942276, + "c5": 31.434507618043142, + "c6": 29.003943951250108, + "c7": -24.277750673119925 }, - "vertexSeeds": { - "c1": 2.828251840317751, - "c2": 2.601632396881454, - "c3": 2.8431625050221747, - "c4": 2.754529615436893, - "c5": 2.8255789595551652, - "c6": 2.6528978972197663, - "c7": 2.878989245362943 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.4674063800277413, + "c4": 2.7739251040221866, + "c5": 2.08044382801664, + "c6": 1.3869625520110933, + "c7": 0.6934812760055467 }, "rgb": [77, 76, 132] }, @@ -251511,23 +251511,23 @@ "year": 1776, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -39.8516739126352, - "c2": -16.405975686887913, - "c3": 14.335682520082088, - "c4": 48.11574715150549, - "c5": 30.43002480950601, - "c6": 33.50522806839071, - "c7": -14.213957172010879 + "points": { + "c1": -15.313890672688807, + "c2": -40.08212594990021, + "c3": 30.00469960459604, + "c4": -22.86354877493026, + "c5": 22.88419195069521, + "c6": -26.15920347323478, + "c7": -41.36845149508547 }, - "vertexSeeds": { - "c1": 3.872457829102117, - "c2": 4.0362430686695765, - "c3": 3.8126836804698296, - "c4": 3.789572047166311, - "c5": 3.889433068604151, - "c6": 3.796419204506763, - "c7": 3.9948183243271465 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -251538,23 +251538,23 @@ "year": 1775, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 26.542287600245537, - "c2": 17.092376444186364, - "c3": 15.782053729490713, - "c4": 11.633772046666635, - "c5": 27.81937158055745, - "c6": -34.9146032847034, - "c7": -14.542651572115755 + "points": { + "c1": 45.808335497246254, + "c2": -35.70243557658216, + "c3": -40.69079525110544, + "c4": -33.673607003667286, + "c5": 8.178252237257219, + "c6": -34.55934917448904, + "c7": -30.513503377745124 }, - "vertexSeeds": { - "c1": 5.226683937823834, - "c2": 5.226683937823834, - "c3": 5.226683937823834, - "c4": 5.226683937823834, - "c5": 5.226683937823834, - "c6": 5.226683937823834, - "c7": 5.226683937823834 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -251565,23 +251565,23 @@ "year": 1776, "resistanceReported": false, "duration": 44064000, - "curveSeeds": { - "c1": 27.19390947737697, - "c2": 30.59506736488155, - "c3": -22.706033732842904, - "c4": 54.95174502933403, - "c5": -11.58522957338517, - "c6": -54.51822806247529, - "c7": 34.62495996935261 + "points": { + "c1": -47.82975703264829, + "c2": -29.06435595922971, + "c3": 57.679348115730285, + "c4": 59.32925099871647, + "c5": 30.450499247653973, + "c6": 26.772071580678848, + "c7": 44.68855155148939 }, - "vertexSeeds": { - "c1": 6.236891330596559, - "c2": 6.205288768320833, - "c3": 6.300280338870243, - "c4": 6.303812193562837, - "c5": 5.983775156720295, - "c6": 6.433863422422983, - "c7": 6.118238964866849 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434119, + "c3": 7.720758206195099, + "c4": 6.176606564956079, + "c5": 4.632454923717059, + "c6": 3.0883032824780394, + "c7": 1.5441516412390197 }, "rgb": [238, 201, 159] }, @@ -251592,23 +251592,23 @@ "year": 1775, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -28.60272209863853, - "c2": -6.670026868491398, - "c3": 10.396697301351644, - "c4": -32.66740960389752, - "c5": 21.798885781050103, - "c6": -1.0297748197219079, - "c7": 1.0878402881012477 + "points": { + "c1": -25.80874659127142, + "c2": 36.35740040084258, + "c3": -8.312960160661248, + "c4": -19.60306634616484, + "c5": 3.265193721327954, + "c6": 39.55299567466135, + "c7": -27.70590343228096 }, - "vertexSeeds": { - "c1": 7.062953336516158, - "c2": 6.516277044060847, - "c3": 6.880741293768799, - "c4": 6.733327445814062, - "c5": 6.782981220241171, - "c6": 6.49345592396701, - "c7": 6.79708247484492 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841885, + "c3": 8.529819694868237, + "c4": 6.82385575589459, + "c5": 5.117891816920943, + "c6": 3.411927877947295, + "c7": 1.7059639389736474 }, "rgb": [238, 201, 159] }, @@ -251619,23 +251619,23 @@ "year": 1776, "resistanceReported": false, "duration": 48988800, - "curveSeeds": { - "c1": -56.52436495945528, - "c2": 10.586709481062009, - "c3": 44.43223805356934, - "c4": -0.5962891964052801, - "c5": 34.61585177755911, - "c6": -56.91514126545499, - "c7": 41.05320096385251 + "points": { + "c1": -38.163319885790834, + "c2": 18.71165981367423, + "c3": 40.10572721824157, + "c4": 41.30089502889555, + "c5": -2.4600386069665063, + "c6": 42.80528820075769, + "c7": 28.959938542469956 }, - "vertexSeeds": { - "c1": 4.350156699868128, - "c2": 4.436703118146353, - "c3": 4.383607724404606, - "c4": 4.234543013123703, - "c5": 4.24690397161964, - "c6": 4.421566735528133, - "c7": 4.2169212731793895 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251036, + "c3": 5.316689782709191, + "c4": 4.253351826167363, + "c5": 3.190013869625518, + "c6": 2.1266759130836728, + "c7": 1.0633379565418275 }, "rgb": [86, 146, 138] }, @@ -251646,23 +251646,23 @@ "year": 1775, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -27.329642494658795, - "c2": 11.02939312099781, - "c3": -34.38352515108622, - "c4": 37.09459445770164, - "c5": -42.13664997371461, - "c6": -26.923352778085313, - "c7": 5.454978118046633 + "points": { + "c1": -31.384295579634387, + "c2": 19.122611727796162, + "c3": -22.56480922615163, + "c4": 28.552650859194223, + "c5": -35.743721169269115, + "c6": -5.154535002047837, + "c7": 19.889037959741977 }, - "vertexSeeds": { - "c1": 5.031364715345134, - "c2": 4.679946526992799, - "c3": 4.9505411220518445, - "c4": 4.797984327059855, - "c5": 4.902898135903478, - "c6": 5.379591956519494, - "c7": 5.369810713549193 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385112, + "c4": 5.177993527508089, + "c5": 3.8834951456310645, + "c6": 2.5889967637540408, + "c7": 1.294498381877017 }, "rgb": [222, 0, 59] }, @@ -251673,23 +251673,23 @@ "year": 1775, "resistanceReported": false, "duration": 3542400, - "curveSeeds": { - "c1": 1.696763841687634, - "c2": 10.529213871058763, - "c3": -5.090395803442151, - "c4": -1.3699409492704824, - "c5": -3.746619835681697, - "c6": 12.346924023966368, - "c7": 1.601235846227171 + "points": { + "c1": 9.631590137766493, + "c2": -12.34932717670777, + "c3": 5.722238900024264, + "c4": 13.979534638326564, + "c5": 11.035646478753373, + "c6": -11.220480157199141, + "c7": -0.760462401324812 }, - "vertexSeeds": { - "c1": 2.0911192828470546, - "c2": 2.126865503697585, - "c3": 2.063694222969236, - "c4": 1.9489453857238668, - "c5": 2.1557925216566574, - "c6": 2.1360768570588733, - "c7": 1.9894425727121134 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705966, + "c3": 2.704576976421637, + "c4": 2.1636615811373083, + "c5": 1.622746185852983, + "c6": 1.0818307905686573, + "c7": 0.5409153952843286 }, "rgb": [77, 76, 132] }, @@ -251700,23 +251700,23 @@ "year": 1775, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 12.860892750014806, - "c2": 15.1236970546681, - "c3": -37.24548059246694, - "c4": -31.479398425413557, - "c5": 4.898775330332086, - "c6": 27.730386773395963, - "c7": 16.148509593486388 + "points": { + "c1": -35.8851010182438, + "c2": 37.4673493768579, + "c3": 23.585462534252883, + "c4": -38.469001373855185, + "c5": -13.704746417882248, + "c6": -27.466231440170468, + "c7": 35.18984922231543 }, - "vertexSeeds": { - "c1": 1.8927874995801814, - "c2": 1.8954588038367859, - "c3": 1.9225614578617738, - "c4": 1.8287707483167017, - "c5": 1.939231604204246, - "c6": 1.91504648515903, - "c7": 1.9192203160049268 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142856, + "c3": 2.3809523809523787, + "c4": 1.9047619047619055, + "c5": 1.428571428571428, + "c6": 0.9523809523809506, + "c7": 0.4761904761904731 }, "rgb": [222, 0, 59] }, @@ -251727,23 +251727,23 @@ "year": 1775, "resistanceReported": false, "duration": 3369600, - "curveSeeds": { - "c1": 2.0996019636321197, - "c2": -7.12027939440228, - "c3": 7.262951894759501, - "c4": -8.302151716163813, - "c5": -2.6752332391299376, - "c6": 12.093851828500215, - "c7": -12.98390303145986 + "points": { + "c1": -14.537127848441488, + "c2": -11.16470655177227, + "c3": 4.327000272901929, + "c4": 15.534158490959742, + "c5": 3.464875229426392, + "c6": -11.603613985957503, + "c7": 3.7577778254452223 }, - "vertexSeeds": { - "c1": 0.1360103626943005, - "c2": 0.1360103626943005, - "c3": 0.1360103626943005, - "c4": 0.1360103626943005, - "c5": 0.1360103626943005, - "c6": 0.1360103626943005, - "c7": 0.1360103626943005 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -251754,23 +251754,23 @@ "year": 1776, "resistanceReported": false, "duration": 66268800, - "curveSeeds": { - "c1": 41.009317855072354, - "c2": 32.478922779589354, - "c3": 67.85622824176502, - "c4": -20.63386843173555, - "c5": 11.220503271976952, - "c6": -32.18620705485938, - "c7": 48.45663808942791 + "points": { + "c1": -11.788317156012894, + "c2": 16.08202795025079, + "c3": 14.75669830528922, + "c4": 24.041793647126696, + "c5": 29.42101753987545, + "c6": -73.75261246656875, + "c7": -0.15946857316433238 }, - "vertexSeeds": { - "c1": 3.046914993509768, - "c2": 3.096566442956005, - "c3": 3.2286314807407104, - "c4": 3.151619617510758, - "c5": 2.9844453644367417, - "c6": 3.2259871964871745, - "c7": 3.142224333148052 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -251781,23 +251781,23 @@ "year": 1775, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -6.4959373252591845, - "c2": 27.320257895049508, - "c3": 13.843349855718884, - "c4": 4.808860085662246, - "c5": 31.667995721196164, - "c6": 4.647317556556807, - "c7": -12.265731519562966 + "points": { + "c1": 30.625972453155654, + "c2": -12.906130817801124, + "c3": 15.372502935325173, + "c4": 3.3620064538392, + "c5": 10.409698784002039, + "c6": -0.6644570980326989, + "c7": 17.11346902111997 }, - "vertexSeeds": { - "c1": 7.241069745287777, - "c2": 7.446431711106098, - "c3": 8.28991302474403, - "c4": 7.836471670962486, - "c5": 7.859750607132382, - "c6": 8.294432297103864, - "c7": 8.223243752336918 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214977, + "c3": 9.893666204345816, + "c4": 7.9149329634766525, + "c5": 5.936199722607489, + "c6": 3.9574664817383263, + "c7": 1.9787332408691631 }, "rgb": [86, 146, 138] }, @@ -251808,23 +251808,23 @@ "year": 1775, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 17.058223379367483, - "c2": 32.26713114355074, - "c3": 22.8195914313227, - "c4": -27.590015598766445, - "c5": 6.41730715655936, - "c6": 19.002825551178653, - "c7": -31.58330978116997 + "points": { + "c1": 33.35766438456771, + "c2": 6.532568251599059, + "c3": 4.054881269513025, + "c4": -11.818656104789895, + "c5": 28.246326754475817, + "c6": 20.447638251295686, + "c7": 5.841216213671387 }, - "vertexSeeds": { - "c1": 4.243915966647201, - "c2": 4.3287721214405535, - "c3": 4.331834814052248, - "c4": 3.6922437342979615, - "c5": 3.8446927700281295, - "c6": 3.9487013959269226, - "c7": 4.016404271253925 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210818, + "c3": 5.293573740175684, + "c4": 4.2348589921405475, + "c5": 3.1761442441054117, + "c6": 2.1174294960702764, + "c7": 1.0587147480351407 }, "rgb": [58, 15, 49] }, @@ -251835,23 +251835,23 @@ "year": 1775, "resistanceReported": false, "duration": 2937600, - "curveSeeds": { - "c1": -8.21698454542081, - "c2": 1.9741567142084762, - "c3": 3.7768915458665084, - "c4": -5.615395712588144, - "c5": -0.30515173166631904, - "c6": 8.468384959076012, - "c7": 2.2192004249157886 + "points": { + "c1": -13.901281707873755, + "c2": -11.26520720572411, + "c3": -9.707096171051631, + "c4": 3.0507491893319383, + "c5": -5.6024808903029335, + "c6": 10.34025100563866, + "c7": 0.23654247007926976 }, - "vertexSeeds": { - "c1": 3.8349681428841835, - "c2": 3.856973115319467, - "c3": 3.2871041970314367, - "c4": 3.6263638095049884, - "c5": 3.703082480701091, - "c6": 3.691637388447571, - "c7": 3.5562358957694586 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044385, + "c3": 4.6232085067036515, + "c4": 3.6985668053629235, + "c5": 2.7739251040221897, + "c6": 1.8492834026814617, + "c7": 0.9246417013407279 }, "rgb": [222, 0, 59] }, @@ -251862,23 +251862,23 @@ "year": 1775, "resistanceReported": false, "duration": 2419200, - "curveSeeds": { - "c1": -6.334206222030243, - "c2": 1.4261530166679908, - "c3": -4.337112042267005, - "c4": 6.623693686259678, - "c5": 3.0889811177938302, - "c6": 0.7090767022070175, - "c7": -4.166485336738209 + "points": { + "c1": -8.300638449103989, + "c2": 14.383496673774495, + "c3": 0.5944118257476969, + "c4": 2.974219809377068, + "c5": -0.5113588299508987, + "c6": 9.986131199485047, + "c7": 11.295819629621096 }, - "vertexSeeds": { - "c1": 5.766601272602283, - "c2": 5.781234443225137, - "c3": 5.89660728124205, - "c4": 6.653370375358089, - "c5": 6.784845412761963, - "c6": 5.891735315899555, - "c7": 6.380595291286208 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [77, 76, 132] }, @@ -251889,23 +251889,23 @@ "year": 1775, "resistanceReported": false, "duration": 2419200, - "curveSeeds": { - "c1": -7.482642221019425, - "c2": -3.1190517490496816, - "c3": 1.4830648912556033, - "c4": -3.5774811971198694, - "c5": -9.187321689434047, - "c6": -1.5903906241659609, - "c7": 6.308534293850929 + "points": { + "c1": 11.437165492726791, + "c2": 7.420860008362531, + "c3": -12.717832356277114, + "c4": 14.347365382888448, + "c5": -4.35494823434758, + "c6": -4.74865580752761, + "c7": 14.55533991494783 }, - "vertexSeeds": { - "c1": 5.785493392778987, - "c2": 6.688786110975241, - "c3": 5.855924958598037, - "c4": 6.327079813441622, - "c5": 5.909489080315952, - "c6": 6.607572113509283, - "c7": 6.096568644310795 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -251916,23 +251916,23 @@ "year": 1775, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 1.9082702506519738, - "c2": 22.49174423933116, - "c3": -11.173917537968222, - "c4": -23.840776706866826, - "c5": 17.869216619155303, - "c6": -10.207130058819693, - "c7": -38.45436652129339 + "points": { + "c1": -6.341731310682491, + "c2": 2.973961048754198, + "c3": 20.94563898347763, + "c4": 39.3826873276904, + "c5": -33.28061387171867, + "c6": -27.867700524424848, + "c7": 28.9175972820912 }, - "vertexSeeds": { - "c1": 4.586125525637361, - "c2": 4.901016634012343, - "c3": 4.5819380230735165, - "c4": 5.126565080399348, - "c5": 4.729842005586528, - "c6": 4.927463857140327, - "c7": 4.839138477203015 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.3509015256588, + "c3": 6.125751271382342, + "c4": 4.900601017105866, + "c5": 3.6754507628294, + "c6": 2.450300508552933, + "c7": 1.2251502542764665 }, "rgb": [222, 0, 59] }, @@ -251943,23 +251943,23 @@ "year": 1775, "resistanceReported": false, "duration": 2332800, - "curveSeeds": { - "c1": -4.206683010442799, - "c2": 8.462432640408347, - "c3": 8.170654509942496, - "c4": 5.42576951438665, - "c5": -11.657839574935403, - "c6": 11.172760524882788, - "c7": -6.848024088796546 + "points": { + "c1": 4.037951751604345, + "c2": -13.72477429483282, + "c3": -11.253950498348935, + "c4": -12.248058783365739, + "c5": 7.808021039090937, + "c6": 10.42627710126642, + "c7": -12.101484552073305 }, - "vertexSeeds": { - "c1": 3.0648360748088925, - "c2": 3.203986217209871, - "c3": 3.148665604867894, - "c4": 3.146794287436407, - "c5": 3.1969730435841637, - "c6": 3.1143690619996027, - "c7": 3.226173277194524 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -251970,23 +251970,23 @@ "year": 1775, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -14.101642903657957, - "c2": 5.67849228761353, - "c3": -5.5766388989714315, - "c4": -11.13487057296031, - "c5": -37.681077007881925, - "c6": 19.983118304146664, - "c7": -8.676555351757038 + "points": { + "c1": -23.229483509783858, + "c2": -23.975504767453106, + "c3": 15.07198981685822, + "c4": -7.23008206451388, + "c5": 10.97514733523456, + "c6": -7.418669181729818, + "c7": 34.019875312637616 }, - "vertexSeeds": { - "c1": 7.464852281662168, - "c2": 7.310638459265522, - "c3": 7.1677011893967295, - "c4": 7.525740172458597, - "c5": 6.423325867577606, - "c6": 7.506828901611662, - "c7": 7.184984754383358 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.2464170134073, + "c4": 7.397133610725842, + "c5": 5.547850208044384, + "c6": 3.6985668053629257, + "c7": 1.8492834026814577 }, "rgb": [238, 201, 159] }, @@ -251997,23 +251997,23 @@ "year": 1775, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": -37.9841814760871, - "c2": -23.8927221417734, - "c3": -26.79483816485813, - "c4": -7.8083921622028, - "c5": -23.810262866957604, - "c6": -3.7389528916206913, - "c7": 25.452363728007157 + "points": { + "c1": -41.84411386546157, + "c2": 27.00051737288294, + "c3": 17.224842293531466, + "c4": 31.948607526562142, + "c5": 34.32817584103397, + "c6": 22.373842952868785, + "c7": -17.53520553486913 }, - "vertexSeeds": { - "c1": 4.754108758059432, - "c2": 4.717875113223701, - "c3": 4.685564260409645, - "c4": 4.395678887073508, - "c5": 4.5140611738698695, - "c6": 4.066843183244636, - "c7": 4.594326566240818 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095702, + "c3": 5.802126675913086, + "c4": 4.64170134073047, + "c5": 3.4812760055478487, + "c6": 2.3208506703652323, + "c7": 1.1604253351826161 }, "rgb": [58, 15, 49] }, @@ -252024,23 +252024,23 @@ "year": 1775, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 19.01764938991859, - "c2": -16.598196592004996, - "c3": -11.196352974095678, - "c4": 7.734299672483921, - "c5": 4.567489937388977, - "c6": 3.545044246478291, - "c7": -1.8438211529118504 + "points": { + "c1": 17.60628160148481, + "c2": -28.61131432257258, + "c3": 12.65156839810183, + "c4": -30.66647966850907, + "c5": -14.591898749936789, + "c6": -25.282570512397026, + "c7": 16.65059516354046 }, - "vertexSeeds": { - "c1": 7.338860154368706, - "c2": 7.434237105233295, - "c3": 6.873097561058093, - "c4": 7.437418575508605, - "c5": 7.257853827785842, - "c6": 7.44578627000677, - "c7": 7.1477174569253075 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -252051,23 +252051,23 @@ "year": 1775, "resistanceReported": false, "duration": 2073600, - "curveSeeds": { - "c1": -10.089067162614159, - "c2": 10.533849088416357, - "c3": -4.207326189579527, - "c4": -0.8789896353773834, - "c5": -0.833640531812172, - "c6": -10.668492195577517, - "c7": -9.828959898641113 + "points": { + "c1": -13.884657058482397, + "c2": -13.423668260595859, + "c3": 3.116420952317842, + "c4": -5.639059354218819, + "c5": 6.973494169183237, + "c6": 0.8455266545800519, + "c7": 4.436608192826267 }, - "vertexSeeds": { - "c1": 5.145932169305865, - "c2": 4.7809201509176, - "c3": 5.411579188031892, - "c4": 5.463266393196967, - "c5": 5.493243905328376, - "c6": 5.721368619789416, - "c7": 5.0695477019891015 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986127, + "c3": 6.888580674988446, + "c4": 5.510864539990753, + "c5": 4.133148404993071, + "c6": 2.755432269995379, + "c7": 1.377716134997687 }, "rgb": [77, 76, 132] }, @@ -252078,23 +252078,23 @@ "year": 1775, "resistanceReported": false, "duration": 1555200, - "curveSeeds": { - "c1": -11.238096402721311, - "c2": -5.150423417612853, - "c3": -5.516694141283312, - "c4": 2.5283907963361756, - "c5": 3.8651999507560646, - "c6": -4.564833493121373, - "c7": 11.303566191168414 + "points": { + "c1": 4.951921611466709, + "c2": 12.25365377973122, + "c3": -10.188071399798623, + "c4": -2.974768337772753, + "c5": 2.8320808913951154, + "c6": 7.544630780014032, + "c7": 10.836389178144618 }, - "vertexSeeds": { - "c1": 2.9476925179840956, - "c2": 3.2644002267502614, - "c3": 3.0709129192390514, - "c4": 3.022857239229769, - "c5": 3.1338592741953737, - "c6": 3.103694891171698, - "c7": 3.1022713248619813 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [77, 76, 132] }, @@ -252105,23 +252105,23 @@ "year": 1775, "resistanceReported": false, "duration": 1382400, - "curveSeeds": { - "c1": -10.825585009881822, - "c2": -11.406237940735826, - "c3": -8.145303169946533, - "c4": 9.896408851447088, - "c5": 1.8934963066156438, - "c6": 4.089827702296224, - "c7": -9.816818089363641 + "points": { + "c1": 6.656595315432707, + "c2": -3.0448315456417614, + "c3": 0.45712709890004355, + "c4": 5.027544992945675, + "c5": -10.474934056044846, + "c6": -7.960301755398147, + "c7": -1.205477311192098 }, - "vertexSeeds": { - "c1": 4.129521211629215, - "c2": 4.298115968535371, - "c3": 4.266364652276685, - "c4": 4.32846231802198, - "c5": 3.885760526643413, - "c6": 3.9730665882131877, - "c7": 4.032376456014961 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [86, 146, 138] }, @@ -252132,23 +252132,23 @@ "year": 1775, "resistanceReported": false, "duration": 1382400, - "curveSeeds": { - "c1": -3.8717567240969295, - "c2": 4.578992418298931, - "c3": 6.316941043205716, - "c4": -6.532182621288712, - "c5": -3.844147209881231, - "c6": 1.3030899683255583, - "c7": -1.9662921568024068 + "points": { + "c1": -2.522829948026633, + "c2": 6.658833791117317, + "c3": -8.55911293108191, + "c4": -8.329453334618728, + "c5": -3.8994044984456284, + "c6": 9.637839151178458, + "c7": -2.653812416952393 }, - "vertexSeeds": { - "c1": 5.9894957410063885, - "c2": 6.420186408438632, - "c3": 6.688240807737778, - "c4": 6.698376006479063, - "c5": 6.155375302031093, - "c6": 6.769456515831949, - "c7": 6.113443536117617 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [238, 201, 159] }, @@ -252159,23 +252159,23 @@ "year": 1775, "resistanceReported": false, "duration": 1296000, - "curveSeeds": { - "c1": 8.42997051061339, - "c2": -6.111746637710093, - "c3": -10.201478224749687, - "c4": 2.747611940647033, - "c5": -8.057434127639823, - "c6": 7.918509456315185, - "c7": 4.947323847793999 + "points": { + "c1": -9.746794774760708, + "c2": 2.8317322687928232, + "c3": -8.63185230443402, + "c4": -5.8851301045128555, + "c5": -7.094202338297672, + "c6": 7.893567837254338, + "c7": -6.795979113600296 }, - "vertexSeeds": { - "c1": 1.9091153334502076, - "c2": 1.9363964143437042, - "c3": 1.9332859331517147, - "c4": 1.8850902623480188, - "c5": 1.9498843432647892, - "c6": 1.9301283934357696, - "c7": 1.903696449751774 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142855, + "c3": 2.380952380952382, + "c4": 1.9047619047619033, + "c5": 1.4285714285714302, + "c6": 0.9523809523809517, + "c7": 0.4761904761904785 }, "rgb": [86, 146, 138] }, @@ -252186,23 +252186,23 @@ "year": 1775, "resistanceReported": false, "duration": 1296000, - "curveSeeds": { - "c1": 4.609959455959171, - "c2": -4.3229753386455005, - "c3": -8.971290758676162, - "c4": 5.964137811202821, - "c5": 8.85386698169506, - "c6": 6.309451022052418, - "c7": -10.552701948585845 + "points": { + "c1": 3.5768865344195184, + "c2": -10.394323953204402, + "c3": -5.485723816177004, + "c4": -5.631368957524005, + "c5": -6.423215695955475, + "c6": 4.348602841187525, + "c7": 1.9119141343370014 }, - "vertexSeeds": { - "c1": 5.337590578886856, - "c2": 5.788220379767123, - "c3": 6.059423377192109, - "c4": 5.857988767492933, - "c5": 5.565414013713161, - "c6": 5.384523856965258, - "c7": 5.484337204653575 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871017, + "c3": 7.397133610725839, + "c4": 5.917706888580674, + "c5": 4.438280166435509, + "c6": 2.9588534442903436, + "c7": 1.4794267221451654 }, "rgb": [58, 15, 49] }, @@ -252213,23 +252213,23 @@ "year": 1775, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 20.139613860466525, - "c2": -18.381570812832724, - "c3": 18.06409684076177, - "c4": 38.48442060643364, - "c5": -18.003566558237928, - "c6": 7.8805050074352465, - "c7": 34.000838570170096 + "points": { + "c1": -3.98797762667661, + "c2": 25.360306885984564, + "c3": -42.23869837618962, + "c4": 1.7635796941782331, + "c5": 34.12055827815758, + "c6": -11.979448058349952, + "c7": -28.95263872584919 }, - "vertexSeeds": { - "c1": 8.167323530536255, - "c2": 7.68193108098177, - "c3": 7.531829635469249, - "c4": 8.192620271988899, - "c5": 7.742064621991613, - "c6": 8.657471598405614, - "c7": 7.91944490276504 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.399445214979199, + "c3": 10.33287101248267, + "c4": 8.266296809986128, + "c5": 6.1997226074895995, + "c6": 4.1331484049930705, + "c7": 2.066574202496529 }, "rgb": [58, 15, 49] }, @@ -252240,23 +252240,23 @@ "year": 1775, "resistanceReported": false, "duration": 1123200, - "curveSeeds": { - "c1": -6.678949176905911, - "c2": -0.338407157853867, - "c3": -7.034904909029052, - "c4": 9.567893479983997, - "c5": -4.3752174932773125, - "c6": 7.882920721627922, - "c7": 8.304118729722777 + "points": { + "c1": 12.80744581079702, + "c2": 8.61403685585509, + "c3": 7.947421425706612, + "c4": 2.08387796199462, + "c5": -1.9726196802917428, + "c6": -6.565810655374126, + "c7": 2.5773507274810967 }, - "vertexSeeds": { - "c1": 4.340742378662667, - "c2": 4.658208620099079, - "c3": 4.655486006819199, - "c4": 4.443068990272878, - "c5": 4.634858160337326, - "c6": 4.1861390154091325, - "c7": 4.480775689451914 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814149, + "c3": 5.640314378178453, + "c4": 4.512251502542764, + "c5": 3.3841886269070747, + "c6": 2.256125751271378, + "c7": 1.128062875635689 }, "rgb": [58, 15, 49] }, @@ -252267,23 +252267,23 @@ "year": 1775, "resistanceReported": false, "duration": 1036800, - "curveSeeds": { - "c1": -6.656133862762036, - "c2": -3.2245503686765646, - "c3": 5.927298324262038, - "c4": 4.604486094628365, - "c5": -1.878682917495933, - "c6": 3.929047859752046, - "c7": 6.154339468262604 + "points": { + "c1": 9.372596234361572, + "c2": 3.914222040405731, + "c3": -1.5919517203580966, + "c4": 10.916659176822671, + "c5": 10.79969156307713, + "c6": 4.227551622068747, + "c7": -12.80176125113781 }, - "vertexSeeds": { - "c1": 3.2945890917078455, - "c2": 3.0890900841106377, - "c3": 3.030087390585218, - "c4": 3.2911216862896433, - "c5": 3.0640304013936386, - "c6": 3.114627622826007, - "c7": 3.005069657408162 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877944, + "c3": 3.952843273231624, + "c4": 3.1622746185852963, + "c5": 2.371705963938976, + "c6": 1.5811373092926482, + "c7": 0.7905686546463279 }, "rgb": [86, 146, 138] }, @@ -252294,23 +252294,23 @@ "year": 1775, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 17.373399065787275, - "c2": 14.775965657354845, - "c3": 19.953641152157402, - "c4": -16.06337363344513, - "c5": 5.743177216131773, - "c6": 22.822187863952273, - "c7": 24.252431682498738 + "points": { + "c1": -8.431765085936984, + "c2": 25.205965864358085, + "c3": 9.097943390314825, + "c4": 18.83334742148046, + "c5": 11.38805298949034, + "c6": 2.028584087713142, + "c7": -2.4144357592153654 }, - "vertexSeeds": { - "c1": 4.556338021420889, - "c2": 4.641099604051226, - "c3": 5.059194723588767, - "c4": 4.88106860225529, - "c5": 5.155543366304753, - "c6": 4.614072333616279, - "c7": 4.717587689168731 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779469, + "c3": 6.195099398982893, + "c4": 4.956079519186316, + "c5": 3.71705963938974, + "c6": 2.478039759593158, + "c7": 1.2390198797965817 }, "rgb": [77, 76, 132] }, @@ -252321,23 +252321,23 @@ "year": 1775, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 10.731678030437955, - "c2": 0.5125817107762067, - "c3": -4.598412269340962, - "c4": 1.7500126772852518, - "c5": -24.469102679174796, - "c6": -28.43099574594342, - "c7": 4.090629701588114 + "points": { + "c1": 18.34970540878855, + "c2": 20.41886963731715, + "c3": 2.7071055656534355, + "c4": -20.056480696088805, + "c5": 4.09951381986545, + "c6": 22.164108479427625, + "c7": 22.935288462870965 }, - "vertexSeeds": { - "c1": 3.5664043966950945, - "c2": 3.209116943350872, - "c3": 3.4661068741175907, - "c4": 3.461842234168978, - "c5": 3.0943767572989835, - "c6": 3.1715802636195356, - "c7": 3.299607353782522 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521497, + "c3": 4.322699953767914, + "c4": 3.4581599630143294, + "c5": 2.5936199722607456, + "c6": 1.7290799815071616, + "c7": 0.8645399907535776 }, "rgb": [222, 0, 59] }, @@ -252348,23 +252348,23 @@ "year": 1775, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 28.589536935943293, - "c2": -8.913430740068868, - "c3": -6.069004182293263, - "c4": -6.2846623071274195, - "c5": 18.732778408733793, - "c6": 24.839477061155627, - "c7": -24.758347045279358 + "points": { + "c1": 4.756713469286126, + "c2": -10.973357417746683, + "c3": -30.802732471598304, + "c4": -36.111451139285, + "c5": 34.0800233640719, + "c6": -38.70588845849181, + "c7": -27.644502103414464 }, - "vertexSeeds": { - "c1": 5.609686917375914, - "c2": 5.745598437150129, - "c3": 5.617384933436765, - "c4": 5.526742478109042, - "c5": 5.60990479271824, - "c6": 5.721060318006774, - "c7": 5.764168715166188 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066585, + "c3": 6.934812760055474, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.7739251040221955, + "c7": 1.3869625520110838 }, "rgb": [86, 146, 138] }, @@ -252375,23 +252375,23 @@ "year": 1776, "resistanceReported": false, "duration": 50457600, - "curveSeeds": { - "c1": 7.19646352507246, - "c2": -41.75694438394555, - "c3": 19.71701891812461, - "c4": 61.25791511049103, - "c5": 14.61826816940804, - "c6": -12.304780164286484, - "c7": -43.661678388821485 + "points": { + "c1": 56.03173806100108, + "c2": -8.689255353362427, + "c3": 43.92846436412084, + "c4": -58.18861119889912, + "c5": 43.785182464735385, + "c6": -19.560734362634463, + "c7": 56.33163521619605 }, - "vertexSeeds": { - "c1": 6.376497824192666, - "c2": 6.2553241620932, - "c3": 6.688902643367571, - "c4": 6.391356309346794, - "c5": 6.157941138034171, - "c6": 6.5719717636794135, - "c7": 6.635113665603041 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.65325936199722, + "c3": 8.044382801664362, + "c4": 6.4355062413314865, + "c5": 4.82662968099861, + "c6": 3.2177531206657535, + "c7": 1.6088765603328767 }, "rgb": [86, 146, 138] }, @@ -252402,23 +252402,23 @@ "year": 1776, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -36.7499898410348, - "c2": -15.06133539977247, - "c3": -5.046789296967525, - "c4": -32.33424306284808, - "c5": 24.164197200006356, - "c6": -14.956996565349776, - "c7": 33.94629105233619 + "points": { + "c1": -22.390019677319263, + "c2": 39.07368116175991, + "c3": 37.68500172084306, + "c4": -30.542720607496083, + "c5": -41.12299340331005, + "c6": 26.106028617288942, + "c7": -29.300171804015587 }, - "vertexSeeds": { - "c1": 2.871716093305456, - "c2": 2.6824538781347065, - "c3": 2.6771659068884692, - "c4": 2.697097132784819, - "c5": 2.4343827572164702, - "c6": 2.4320303837049573, - "c7": 2.727452693173524 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [86, 146, 138] }, @@ -252429,23 +252429,23 @@ "year": 1778, "resistanceReported": false, "duration": 109814400, - "curveSeeds": { - "c1": 11.611173495801694, - "c2": 23.07441813873575, - "c3": -21.61607527179325, - "c4": -30.507535485054802, - "c5": -93.26573080197683, - "c6": -3.488345162283082, - "c7": 45.690431483608535 + "points": { + "c1": -106.98371054489233, + "c2": -91.77532202193706, + "c3": -85.79958710601005, + "c4": 108.05415208798155, + "c5": -131.7996114393942, + "c6": -82.68971069397256, + "c7": -13.494607023728676 }, - "vertexSeeds": { - "c1": 6.953884215545049, - "c2": 7.055299110142281, - "c3": 5.9809089458711675, - "c4": 6.75300097061303, - "c5": 6.976719445860884, - "c6": 5.362808783988588, - "c7": 6.275963407424621 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.762829403606101, + "c3": 8.969024503005086, + "c4": 7.175219602404067, + "c5": 5.381414701803053, + "c6": 3.5876098012020337, + "c7": 1.793804900601014 }, "rgb": [58, 15, 49] }, @@ -252456,23 +252456,23 @@ "year": 1776, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -13.448061302281452, - "c2": 42.542537675732675, - "c3": 14.247832548872978, - "c4": -37.22718297396038, - "c5": 2.0318311068196095, - "c6": 3.0186579425391358, - "c7": -36.85515768057093 + "points": { + "c1": 24.160000115661518, + "c2": 8.80918143754954, + "c3": -19.894757220863927, + "c4": -2.2982029722788866, + "c5": -39.94918723071913, + "c6": 6.890005111864028, + "c7": -11.463732633929041 }, - "vertexSeeds": { - "c1": 6.2076425267052855, - "c2": 5.5693428022363936, - "c3": 5.418881638524337, - "c4": 5.709965404037881, - "c5": 5.656800174253412, - "c6": 6.140318404048583, - "c7": 5.548635252079942 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031903, + "c3": 7.489597780859912, + "c4": 5.9916782246879325, + "c5": 4.493758668515952, + "c6": 2.9958391123439596, + "c7": 1.4979195561719798 }, "rgb": [77, 76, 132] }, @@ -252483,23 +252483,23 @@ "year": 1775, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 10.541934583114813, - "c2": -13.957070020378719, - "c3": -12.061033277234525, - "c4": -11.778222631896371, - "c5": -12.217947617415735, - "c6": -17.48406950662837, - "c7": -8.783701123969276 + "points": { + "c1": 9.458965831936979, + "c2": 17.019455876889722, + "c3": -13.548970017580531, + "c4": 21.001138266061538, + "c5": 12.452754112535835, + "c6": 1.9748613176124046, + "c7": -17.606494426374354 }, - "vertexSeeds": { - "c1": 6.1407367680200755, - "c2": 6.47667918184887, - "c3": 5.809352934838327, - "c4": 6.493256792368073, - "c5": 5.649654009760573, - "c6": 6.613725390111649, - "c7": 6.441578713091953 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [86, 146, 138] }, @@ -252510,23 +252510,23 @@ "year": 1776, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": 25.784729170500242, - "c2": -26.910089611689084, - "c3": -9.086644263591346, - "c4": 20.55267418314699, - "c5": 24.258761055985246, - "c6": 32.49396559377699, - "c7": 24.700861547594656 + "points": { + "c1": -30.737783089090364, + "c2": -32.19499328959324, + "c3": -32.28284178267377, + "c4": -31.136417152527105, + "c5": 31.01014912577243, + "c6": -17.09362980274603, + "c7": 15.215132653496823 }, - "vertexSeeds": { - "c1": 9.58214012285084, - "c2": 9.891150119082672, - "c3": 9.650874564453954, - "c4": 9.709693804720336, - "c5": 9.576661161487042, - "c6": 9.615967608432664, - "c7": 9.342156836632737 + "offsets": { + "c1": 17.055016181229774, + "c2": 14.618585298196967, + "c3": 12.182154415164119, + "c4": 9.745723532131313, + "c5": 7.3092926490984835, + "c6": 4.872861766065657, + "c7": 2.4364308830328283 }, "rgb": [77, 76, 132] }, @@ -252537,23 +252537,23 @@ "year": 1776, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -20.07733364632353, - "c2": 7.7022033942335, - "c3": 28.24176021424445, - "c4": -33.37042730237525, - "c5": 6.418182235093653, - "c6": -14.604021410492177, - "c7": 41.347005601828826 + "points": { + "c1": -13.438799220623007, + "c2": 14.187884066928135, + "c3": -19.579168714639234, + "c4": -5.002139410826601, + "c5": 40.20109872516518, + "c6": -28.790698406597944, + "c7": 11.866046536773098 }, - "vertexSeeds": { - "c1": 5.071975427278097, - "c2": 5.215374617512749, - "c3": 5.364424482769532, - "c4": 5.254872335647179, - "c5": 5.2464306949997725, - "c6": 5.387632363355834, - "c7": 5.244827887665768 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262126, + "c3": 6.472491909385117, + "c4": 5.177993527508085, + "c5": 3.883495145631075, + "c6": 2.5889967637540425, + "c7": 1.2944983818770093 }, "rgb": [58, 15, 49] }, @@ -252564,23 +252564,23 @@ "year": 1776, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -6.316465690827222, - "c2": -39.419304348179175, - "c3": 30.281952315412, - "c4": 40.867359980406206, - "c5": -40.82418250424236, - "c6": 13.796142008905697, - "c7": 9.254161223355986 + "points": { + "c1": 9.584605272126183, + "c2": -8.291611087565315, + "c3": 22.568661598949504, + "c4": -15.045790382070791, + "c5": 9.67554714429128, + "c6": -23.55282391043383, + "c7": 28.79899364879745 }, - "vertexSeeds": { - "c1": 6.425244269117602, - "c2": 6.668430619904101, - "c3": 6.881092112663033, - "c4": 6.56084089157082, - "c5": 6.495841085742045, - "c6": 6.833683165960664, - "c7": 6.9296303951600535 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066581, + "c4": 6.65742024965327, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624133119 }, "rgb": [222, 0, 59] }, @@ -252591,23 +252591,23 @@ "year": 1775, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -2.3173556547143335, - "c2": 15.79488424772834, - "c3": -7.5312075565104575, - "c4": -4.713866129466828, - "c5": -0.7715613327365212, - "c6": 0.40849145826224387, - "c7": 16.832143055542723 + "points": { + "c1": 19.419283392539313, + "c2": -2.5233800236125425, + "c3": -8.851421190068143, + "c4": 16.978063701119737, + "c5": 7.445183112932156, + "c6": 21.455293470397855, + "c7": 11.168438285843031 }, - "vertexSeeds": { - "c1": 2.905396017330021, - "c2": 2.901463442356419, - "c3": 2.971193676806265, - "c4": 2.9029944982677356, - "c5": 2.9063981271167063, - "c6": 2.8913508446713276, - "c7": 2.996219146672032 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.3273231622746176, + "c3": 3.6061026352288486, + "c4": 2.8848821081830787, + "c5": 2.1636615811373088, + "c6": 1.4424410540915393, + "c7": 0.7212205270457697 }, "rgb": [222, 0, 59] }, @@ -252618,23 +252618,23 @@ "year": 1775, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -15.205075652783318, - "c2": 6.727818058418983, - "c3": 3.070615406872758, - "c4": -17.226870333402776, - "c5": -6.459605529710213, - "c6": -14.324737578744738, - "c7": -14.494499009939581 + "points": { + "c1": -17.542387362957008, + "c2": 13.762646550612928, + "c3": 0.8476826351780566, + "c4": -10.67267406457995, + "c5": -17.839684494548, + "c6": -12.943765914386935, + "c7": 13.523304653622347 }, - "vertexSeeds": { - "c1": 3.9740059333025286, - "c2": 3.891463811943934, - "c3": 3.9294861611908956, - "c4": 3.9109336601039923, - "c5": 3.970988727530562, - "c6": 4.024589073035525, - "c7": 3.9202863319439447 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406384, + "c3": 4.831252889505324, + "c4": 3.8650023116042638, + "c5": 2.89875173370318, + "c6": 1.93250115580212, + "c7": 0.96625057790106 }, "rgb": [77, 76, 132] }, @@ -252645,23 +252645,23 @@ "year": 1776, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": -23.790722377197305, - "c2": 38.05111840666099, - "c3": 46.68539651281375, - "c4": -47.511243478203596, - "c5": -8.515897779599456, - "c6": -14.121382842815997, - "c7": 50.487557079026416 + "points": { + "c1": 48.08202006219453, + "c2": 39.460773774065785, + "c3": 29.995806760993176, + "c4": 18.173238752444433, + "c5": 15.466091425072008, + "c6": 20.096728019256773, + "c7": 19.140911007895994 }, - "vertexSeeds": { - "c1": 6.38470929460648, - "c2": 6.799528387702357, - "c3": 6.691036015107249, - "c4": 6.479567175555419, - "c5": 6.638974658340396, - "c6": 6.918458536979117, - "c7": 6.62531923623536 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533063, + "c4": 6.638927415626433, + "c5": 4.979195561719824, + "c6": 3.3194637078132163, + "c7": 1.6597318539066082 }, "rgb": [77, 76, 132] }, @@ -252672,23 +252672,23 @@ "year": 1776, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 12.6198703607973, - "c2": 11.578265604122976, - "c3": -32.11571791529192, - "c4": -2.2536502953151683, - "c5": -36.35292966187183, - "c6": 2.0994640126543374, - "c7": -9.094205722340611 + "points": { + "c1": -27.79718942204073, + "c2": 34.79949079445704, + "c3": 7.276548342809754, + "c4": 4.281622934695534, + "c5": -3.840865627297788, + "c6": -37.01033819743682, + "c7": -45.16860604272607 }, - "vertexSeeds": { - "c1": 2.9475255003680774, - "c2": 2.9237272076618446, - "c3": 2.933287588301533, - "c4": 3.211726664265762, - "c5": 3.0843390067939933, - "c6": 3.0842660667802075, - "c7": 2.952759197101775 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -252699,23 +252699,23 @@ "year": 1776, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -0.2674622285185251, - "c2": -20.590346588599274, - "c3": 23.983910250790842, - "c4": -14.932580309843477, - "c5": -6.0110499974784375, - "c6": -14.661040220017032, - "c7": -3.86444871196737 + "points": { + "c1": 24.90138449593144, + "c2": 40.541224206597136, + "c3": 21.423103815138234, + "c4": 8.298474659470727, + "c5": -32.56393539912658, + "c6": -2.6278268311165576, + "c7": 38.27249202788154 }, - "vertexSeeds": { - "c1": 6.356186093876422, - "c2": 6.23063435695257, - "c3": 6.027682413490703, - "c4": 6.327421997753033, - "c5": 6.2192123298129856, - "c6": 6.193286153083881, - "c7": 6.323648089242994 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273244, + "c3": 7.628294036061021, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.051317614424415, + "c7": 1.525658807212192 }, "rgb": [238, 201, 159] }, @@ -252726,23 +252726,23 @@ "year": 1776, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -1.9674068385717973, - "c2": 3.9637131317825833, - "c3": 12.983636816723468, - "c4": 2.157516812630277, - "c5": 15.641858333448774, - "c6": 0.9242206541014042, - "c7": -5.88783168889433 + "points": { + "c1": -34.24687060362131, + "c2": 16.056998475231303, + "c3": -26.56719630374957, + "c4": 23.878198170860962, + "c5": 25.86762945705184, + "c6": -38.658499132796116, + "c7": 1.4579926250018715 }, - "vertexSeeds": { - "c1": 4.527838387281905, - "c2": 4.416964816610351, - "c3": 4.376343115678874, - "c4": 4.4181551236842385, - "c5": 4.674199043305796, - "c6": 4.583326904004799, - "c7": 4.564607366728966 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [238, 201, 159] }, @@ -252753,23 +252753,23 @@ "year": 1776, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": -15.958581570722465, - "c2": -4.3309292242808155, - "c3": 31.19467226393848, - "c4": -4.599434698303128, - "c5": 23.247905069673003, - "c6": -20.455076000833937, - "c7": 9.775977269064057 + "points": { + "c1": 20.749936570197384, + "c2": -22.495916351513895, + "c3": -33.795297106027476, + "c4": -17.40682618858304, + "c5": 40.31084227379535, + "c6": -40.453859943829855, + "c7": -41.30715659827159 }, - "vertexSeeds": { - "c1": 9.318784326902811, - "c2": 9.828092234037817, - "c3": 9.431492895734719, - "c4": 9.644504153470228, - "c5": 9.087188089204119, - "c6": 9.393301233551373, - "c7": 9.509860475677474 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.034674063800272, + "c3": 12.528895053166886, + "c4": 10.023116042533514, + "c5": 7.5173370319001425, + "c6": 5.011558021266757, + "c7": 2.505779010633385 }, "rgb": [86, 146, 138] }, @@ -252780,23 +252780,23 @@ "year": 1776, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 4.246401726427607, - "c2": 28.763224643424508, - "c3": -34.74119684102295, - "c4": -6.4799318841599245, - "c5": 21.79415825719471, - "c6": -16.811131842172493, - "c7": -18.48659726659671 + "points": { + "c1": -2.6151494925717316, + "c2": -22.045755398171583, + "c3": 33.53185449060487, + "c4": -16.67314671116482, + "c5": -30.283523526082313, + "c6": -26.27812849327848, + "c7": -31.229169974158708 }, - "vertexSeeds": { - "c1": 2.0100625610421474, - "c2": 2.1320194319308143, - "c3": 1.8743214450287105, - "c4": 2.2678238616687367, - "c5": 1.7949255503744639, - "c6": 1.7953207348073552, - "c7": 2.2874068033537376 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [58, 15, 49] }, @@ -252807,23 +252807,23 @@ "year": 1775, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 1.1235005275422125, - "c2": -24.278487300895556, - "c3": -24.402650140734465, - "c4": 21.669855325238338, - "c5": 25.831224076744675, - "c6": -8.621476361544392, - "c7": -26.021427359881287 + "points": { + "c1": -23.243656313391014, + "c2": 6.644376376196746, + "c3": -23.412285160845993, + "c4": -8.011361720664485, + "c5": -34.0482119630357, + "c6": -24.217980375738648, + "c7": -18.881326597641106 }, - "vertexSeeds": { - "c1": 7.941997828385028, - "c2": 7.845693734121991, - "c3": 8.430427078513716, - "c4": 8.662531161048566, - "c5": 8.994383074306354, - "c6": 7.815378615594716, - "c7": 8.463467351651094 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703193, + "c3": 10.74895977808599, + "c4": 8.599167822468797, + "c5": 6.449375866851592, + "c6": 4.299583911234398, + "c7": 2.149791955617204 }, "rgb": [58, 15, 49] }, @@ -252834,23 +252834,23 @@ "year": 1775, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -17.766611829825333, - "c2": -1.9799020277056059, - "c3": 32.48535483507848, - "c4": 10.053248542903205, - "c5": -9.185551713318699, - "c6": -27.88324540306172, - "c7": 21.24912966398255 + "points": { + "c1": 28.161362204513978, + "c2": 0.7247331936695787, + "c3": 23.84792544302276, + "c4": -33.2485288577291, + "c5": 5.67085910016111, + "c6": -34.630800238955786, + "c7": 31.361934188657585 }, - "vertexSeeds": { - "c1": 1.117578006100849, - "c2": 1.1452763432234259, - "c3": 1.1635438518583054, - "c4": 1.1007846391160754, - "c5": 1.015713906268615, - "c6": 1.173278923340289, - "c7": 1.1641370303953555 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144238, + "c3": 1.5025427646786869, + "c4": 1.20203421174295, + "c5": 0.9015256588072119, + "c6": 0.6010171058714738, + "c7": 0.3005085529357369 }, "rgb": [58, 15, 49] }, @@ -252861,23 +252861,23 @@ "year": 1776, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -7.350117344439724, - "c2": 8.183473262842966, - "c3": -20.482754885144605, - "c4": -15.445531321785786, - "c5": 40.169998238003565, - "c6": -31.209591958136787, - "c7": 5.045422390159899 + "points": { + "c1": 26.237695514195828, + "c2": 10.19432201570666, + "c3": -8.481254529559813, + "c4": -16.21152607985664, + "c5": 11.793587086202614, + "c6": 40.54413080843488, + "c7": 19.417278794294482 }, - "vertexSeeds": { - "c1": 3.9671167433079813, - "c2": 4.072138988416876, - "c3": 4.051681430650941, - "c4": 4.020743009747375, - "c5": 3.9429667988862147, - "c6": 3.9054909688337616, - "c7": 3.9665936912850794 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [77, 76, 132] }, @@ -252888,23 +252888,23 @@ "year": 1776, "resistanceReported": false, "duration": 45792000, - "curveSeeds": { - "c1": -27.95637157287114, - "c2": 28.700813849624645, - "c3": 5.406483465055125, - "c4": -5.8755917727743, - "c5": 45.5970521747772, - "c6": -14.867827024529177, - "c7": 25.941087775118255 + "points": { + "c1": 21.371845562694126, + "c2": 26.45351797361929, + "c3": 43.31826811982712, + "c4": 9.49055430575114, + "c5": -24.969321333824432, + "c6": 57.27909447669101, + "c7": 26.694100399966665 }, - "vertexSeeds": { - "c1": 7.0566440773269905, - "c2": 7.042403509251951, - "c3": 7.0951299194690165, - "c4": 7.016032209894041, - "c5": 7.416651866310123, - "c6": 6.84307204681915, - "c7": 7.407162107042982 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445221, + "c3": 8.876560332871025, + "c4": 7.101248266296807, + "c5": 5.3259361997226105, + "c6": 3.5506241331484145, + "c7": 1.7753120665741962 }, "rgb": [238, 201, 159] }, @@ -252915,23 +252915,23 @@ "year": 1776, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 16.574475645407965, - "c2": -8.553109436368011, - "c3": -7.466648496077731, - "c4": 39.23974754018228, - "c5": -0.6703738393508587, - "c6": 17.56731045285604, - "c7": -0.1257106704459261 + "points": { + "c1": 9.823538678485093, + "c2": 37.65810196044235, + "c3": -3.988701486177753, + "c4": 21.167347138697068, + "c5": -15.159078963192371, + "c6": -17.887146048115163, + "c7": -40.986721662245166 }, - "vertexSeeds": { - "c1": 6.237214016789591, - "c2": 6.505749598875381, - "c3": 6.401745935881964, - "c4": 6.340076520339759, - "c5": 6.336291979664908, - "c6": 6.022437921745358, - "c7": 6.5390537968157485 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [58, 15, 49] }, @@ -252942,23 +252942,23 @@ "year": 1775, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -4.093534054358528, - "c2": -1.1447563514616945, - "c3": -20.490559994627304, - "c4": -10.519861476622848, - "c5": 12.500664135195453, - "c6": 23.390775723160612, - "c7": 3.840034028086258 + "points": { + "c1": -0.7808978217591616, + "c2": 8.918257300564196, + "c3": 3.606079470442843, + "c4": -7.7937655093779235, + "c5": 24.02723122567809, + "c6": -9.42125127297166, + "c7": 18.90095095526409 }, - "vertexSeeds": { - "c1": 4.3385868036831186, - "c2": 4.849255562162518, - "c3": 4.826663206355064, - "c4": 4.370731797336483, - "c5": 4.854971389399356, - "c6": 4.4060638362811515, - "c7": 4.8272347930175 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176147, + "c3": 5.84835876098012, + "c4": 4.678687008784099, + "c5": 3.5090152565880697, + "c6": 2.3393435043920494, + "c7": 1.1696717521960205 }, "rgb": [77, 76, 132] }, @@ -252969,23 +252969,23 @@ "year": 1775, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 23.84542646452559, - "c2": -12.965149338773596, - "c3": 6.310375049415658, - "c4": 4.817465782518287, - "c5": 1.8029955650178557, - "c6": -18.942252588461976, - "c7": -3.3838153618740314 + "points": { + "c1": -31.92493243913158, + "c2": 20.96034162589379, + "c3": -9.546103463773658, + "c4": 12.119662872912407, + "c5": -2.0422423555186278, + "c6": 23.006968369813436, + "c7": -24.798060571427612 }, - "vertexSeeds": { - "c1": 4.41114006968279, - "c2": 4.097013973441455, - "c3": 4.411701607609197, - "c4": 4.3320823688211805, - "c5": 4.434944320577435, - "c6": 4.193471656374285, - "c7": 4.449159711878496 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572813, + "c3": 5.501618122977348, + "c4": 4.401294498381875, + "c5": 3.3009708737864094, + "c6": 2.2006472491909377, + "c7": 1.1003236245954717 }, "rgb": [222, 0, 59] }, @@ -252996,23 +252996,23 @@ "year": 1775, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": 11.595199337255966, - "c2": 12.483084350807552, - "c3": -4.3040609830333185, - "c4": -2.541123814662514, - "c5": 11.794978409703273, - "c6": 2.0589750914541973, - "c7": -0.7499093577434799 + "points": { + "c1": 13.187007713115293, + "c2": 1.9363252237358815, + "c3": -4.981219339439013, + "c4": -6.752799024466366, + "c5": 4.7702555705642915, + "c6": -8.896637138688307, + "c7": -8.731654306930029 }, - "vertexSeeds": { - "c1": 3.884419038701813, - "c2": 3.865374431662006, - "c3": 3.8893309314550217, - "c4": 3.8671130589749043, - "c5": 3.8875443585850524, - "c6": 3.847383485870707, - "c7": 3.826807269367194 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205271, + "c3": 4.715672676837726, + "c4": 3.7725381414701804, + "c5": 2.8294036061026353, + "c6": 1.8862690707350902, + "c7": 0.9431345353675451 }, "rgb": [77, 76, 132] }, @@ -253023,23 +253023,23 @@ "year": 1776, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 30.9110532792199, - "c2": 22.883441705202543, - "c3": -4.4061756885496095, - "c4": 29.76006943443879, - "c5": -8.152069365345753, - "c6": -15.12022041727797, - "c7": -23.202245356899635 + "points": { + "c1": -28.119763163692262, + "c2": -36.61090249077311, + "c3": -38.55549717307222, + "c4": 3.5305780446690846, + "c5": -21.402225151239733, + "c6": -27.03060193243252, + "c7": -2.530776321787066 }, - "vertexSeeds": { - "c1": 8.75420049789607, - "c2": 8.558589794161508, - "c3": 8.551349354821152, - "c4": 8.793365421058109, - "c5": 8.529005451579762, - "c6": 8.820192300247335, - "c7": 8.525960540149022 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300958, + "c3": 10.517799352750782, + "c4": 8.414239482200655, + "c5": 6.310679611650479, + "c6": 4.2071197411003025, + "c7": 2.1035598705501264 }, "rgb": [58, 15, 49] }, @@ -253050,23 +253050,23 @@ "year": 1776, "resistanceReported": false, "duration": 46137600, - "curveSeeds": { - "c1": 5.058005942404073, - "c2": 33.92191668605931, - "c3": 19.905335720016005, - "c4": 32.41154960734823, - "c5": 12.03343323065878, - "c6": -22.452287466943886, - "c7": 3.053420863221355 + "points": { + "c1": -56.2286126296757, + "c2": 32.80958699311103, + "c3": 59.97159627717459, + "c4": 48.325743745214844, + "c5": -21.73004473313619, + "c6": 42.32141606195747, + "c7": -32.078618137821906 }, - "vertexSeeds": { - "c1": 4.265404570988649, - "c2": 4.2673454781066384, - "c3": 4.245429998735281, - "c4": 4.241063420951254, - "c5": 4.238503362504197, - "c6": 4.236773583922036, - "c7": 4.2715911667269895 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889072, + "c3": 5.108645399907492, + "c4": 4.086916319926014, + "c5": 3.065187239944536, + "c6": 2.043458159963058, + "c7": 1.0217290799814782 }, "rgb": [86, 146, 138] }, @@ -253077,23 +253077,23 @@ "year": 1776, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 38.42016347500202, - "c2": -25.083023030042373, - "c3": 21.38587838522728, - "c4": -39.276020562308254, - "c5": -9.091709900091018, - "c6": 2.6806134250543465, - "c7": 39.064373088665796 + "points": { + "c1": -35.13404228510271, + "c2": 17.119146286082568, + "c3": 15.967459147982474, + "c4": 3.310105721688579, + "c5": -3.9887866573822777, + "c6": 5.121694902818021, + "c7": -38.64527009597531 }, - "vertexSeeds": { - "c1": 4.8533740899534985, - "c2": 4.87913804229998, - "c3": 4.923019870279679, - "c4": 4.9007643682236415, - "c5": 4.9350537539632935, - "c6": 4.859498266183498, - "c7": 4.866826627397374 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256583, + "c3": 5.894590846047146, + "c4": 4.715672676837709, + "c5": 3.536754507628272, + "c6": 2.357836338418874, + "c7": 1.178918169209437 }, "rgb": [86, 146, 138] }, @@ -253104,23 +253104,23 @@ "year": 1776, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 41.9476049753649, - "c2": 41.53364754365032, - "c3": 41.681946148720755, - "c4": 15.790274255708681, - "c5": -35.17437883283615, - "c6": 1.677701741620595, - "c7": 33.12082537977254 + "points": { + "c1": -23.228962797273063, + "c2": 47.01073982742915, + "c3": 3.663067071758178, + "c4": 6.081946504571036, + "c5": 0.5217009210283834, + "c6": 22.142770924493874, + "c7": 16.89286730891969 }, - "vertexSeeds": { - "c1": 4.204498520049699, - "c2": 4.356630128346363, - "c3": 4.030241082654356, - "c4": 3.9432953173568746, - "c5": 4.351394154986462, - "c6": 3.926778156008761, - "c7": 3.9632426437578028 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [238, 201, 159] }, @@ -253131,23 +253131,23 @@ "year": 1776, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 23.457532344129106, - "c2": -0.5502170220154454, - "c3": 10.912653648279218, - "c4": -36.94385931043889, - "c5": -36.117022748338854, - "c6": -21.4474149985707, - "c7": 15.36851134331615 + "points": { + "c1": 17.39418292079739, + "c2": -7.928315823317391, + "c3": -18.912102773672775, + "c4": -2.663066236587646, + "c5": -4.954684880725026, + "c6": 17.330693460950073, + "c7": -21.12199034753494 }, - "vertexSeeds": { - "c1": 5.79519991439059, - "c2": 5.904199227000693, - "c3": 5.862387228506739, - "c4": 5.820487694030053, - "c5": 5.833486258525721, - "c6": 5.393318526020879, - "c7": 5.952668681039868 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.65464632454924, + "c3": 7.212205270457692, + "c4": 5.769764216366156, + "c5": 4.32732316227462, + "c6": 2.8848821081830707, + "c7": 1.4424410540915353 }, "rgb": [86, 146, 138] }, @@ -253158,23 +253158,23 @@ "year": 1775, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 21.647504810133086, - "c2": 19.493682429595474, - "c3": -13.015455090152686, - "c4": 10.897612594978717, - "c5": -11.448999046746792, - "c6": 26.737219369157792, - "c7": 4.661529748462996 + "points": { + "c1": -5.075223237909842, + "c2": -5.391928452850362, + "c3": -0.46940603549976956, + "c4": 10.666722739355727, + "c5": -4.303195952155356, + "c6": -25.005292865749112, + "c7": 16.42024425046681 }, - "vertexSeeds": { - "c1": 8.114501204316882, - "c2": 6.55092662395509, - "c3": 6.154490377603899, - "c4": 6.322182249750972, - "c5": 6.456164278963569, - "c6": 7.003468336706684, - "c7": 7.596107091530493 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099858, + "c3": 10.402219140083217, + "c4": 8.321775312066572, + "c5": 6.241331484049931, + "c6": 4.160887656033286, + "c7": 2.08044382801664 }, "rgb": [222, 0, 59] }, @@ -253185,23 +253185,23 @@ "year": 1775, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -20.156971759901342, - "c2": -14.01224440541425, - "c3": 12.90559231370332, - "c4": -1.3311373327795124, - "c5": -10.516044213499551, - "c6": 4.560413773438906, - "c7": 11.684605427367305 + "points": { + "c1": -25.64115510675032, + "c2": -5.755275101741827, + "c3": 26.24660401159012, + "c4": -9.91018989140823, + "c5": -4.182815016629128, + "c6": 19.862456130596062, + "c7": -4.804276595487202 }, - "vertexSeeds": { - "c1": 10.753004422299103, - "c2": 11.749116766985573, - "c3": 11.15883745913983, - "c4": 10.375305723293215, - "c5": 9.884859598533975, - "c6": 9.843409175622579, - "c7": 10.631495609043847 + "offsets": { + "c1": 19.902912621359224, + "c2": 17.059639389736482, + "c3": 14.216366158113724, + "c4": 11.373092926490983, + "c5": 8.529819694868241, + "c6": 5.686546463245501, + "c7": 2.8432732316227405 }, "rgb": [86, 146, 138] }, @@ -253212,23 +253212,23 @@ "year": 1775, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 2.622411417181212, - "c2": 4.987506138581033, - "c3": -20.961768868621228, - "c4": -2.7395235026880584, - "c5": 18.238564735752682, - "c6": -17.085480090199688, - "c7": -12.935945945793009 + "points": { + "c1": -2.9172284537398028, + "c2": 10.126909340394732, + "c3": 26.506073544822286, + "c4": -10.72314944616484, + "c5": 1.8755359720300646, + "c6": 28.55910378779125, + "c7": -7.112529143676017 }, - "vertexSeeds": { - "c1": 7.595801500933099, - "c2": 7.47695017167437, - "c3": 7.897011782305375, - "c4": 6.909600940006627, - "c5": 8.065332035032672, - "c6": 7.641710529674353, - "c7": 7.062167228670871 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.6504854368932, + "c3": 9.708737864077674, + "c4": 7.766990291262137, + "c5": 5.8252427184466, + "c6": 3.883495145631074, + "c7": 1.941747572815537 }, "rgb": [58, 15, 49] }, @@ -253239,23 +253239,23 @@ "year": 1775, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 25.272155391119824, - "c2": -7.19528778965163, - "c3": 18.984742185785727, - "c4": 11.645304683239182, - "c5": -12.67115227794747, - "c6": 2.188391544295566, - "c7": 25.794949178997108 + "points": { + "c1": 15.991695170685595, + "c2": -11.12156451630463, + "c3": 15.329805801504165, + "c4": 0.22034036770216758, + "c5": 22.297367855777665, + "c6": 5.430891192310369, + "c7": 3.972010829189358 }, - "vertexSeeds": { - "c1": 4.5845652744584875, - "c2": 4.450586187889338, - "c3": 4.4593499427103, - "c4": 4.323087321382872, - "c5": 4.604003475104242, - "c6": 4.460007004087521, - "c7": 4.383811185330259 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613042, + "c3": 5.524734165510859, + "c4": 4.419787332408689, + "c5": 3.314840499306521, + "c6": 2.209893666204338, + "c7": 1.104946833102169 }, "rgb": [238, 201, 159] }, @@ -253266,23 +253266,23 @@ "year": 1776, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -10.584007318559813, - "c2": 20.288975431119276, - "c3": 21.33437430475341, - "c4": 14.388082798321001, - "c5": 34.35728845425457, - "c6": 30.913774941284373, - "c7": 31.936591176953712 + "points": { + "c1": 20.603693253471768, + "c2": -15.95520970956597, + "c3": 23.730308705729854, + "c4": -18.859885376574848, + "c5": -24.372711947498935, + "c6": 20.81603309832525, + "c7": 7.511814202921016 }, - "vertexSeeds": { - "c1": 3.9288249166495297, - "c2": 4.134342609579079, - "c3": 4.131194816571417, - "c4": 3.991740003517646, - "c5": 4.03012801372222, - "c6": 3.891365000075745, - "c7": 3.874459082819192 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607493, + "c3": 4.946833102172903, + "c4": 3.9574664817383245, + "c5": 2.9680998613037466, + "c6": 1.9787332408691685, + "c7": 0.989366620434578 }, "rgb": [58, 15, 49] }, @@ -253293,23 +253293,23 @@ "year": 1776, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 14.4428791931823, - "c2": -22.737836709314752, - "c3": 17.282439605230437, - "c4": 1.8613454516251338, - "c5": -32.66372283718464, - "c6": -28.799327667445798, - "c7": -27.618098829482815 + "points": { + "c1": 7.258408491184433, + "c2": 17.119192029519837, + "c3": -31.265659267639244, + "c4": 6.667848415023137, + "c5": 6.651854283187454, + "c6": -8.458821573873227, + "c7": -24.224807064767525 }, - "vertexSeeds": { - "c1": 3.965000426013433, - "c2": 4.0303022721523485, - "c3": 3.896886656975914, - "c4": 4.0682925674724135, - "c5": 3.997384394932739, - "c6": 4.093768030526143, - "c7": 4.137025467217321 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [238, 201, 159] }, @@ -253320,23 +253320,23 @@ "year": 1776, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 6.114620337152225, - "c2": 10.868512833290012, - "c3": -17.162842826387354, - "c4": -16.651922504245654, - "c5": -6.001530582370243, - "c6": 34.60825637862677, - "c7": -8.687860124587047 + "points": { + "c1": -39.13700356072032, + "c2": -32.67654609879632, + "c3": -21.700878220387438, + "c4": -37.381053086675806, + "c5": 27.16144285901624, + "c6": -16.665348060715743, + "c7": -0.10412824410368415 }, - "vertexSeeds": { - "c1": 3.865847652677783, - "c2": 3.864647517874194, - "c3": 3.8409763224601177, - "c4": 3.8119643607461424, - "c5": 3.8532742496355707, - "c6": 3.8461807108219994, - "c7": 3.836140685828969 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044409, + "c3": 4.6232085067036435, + "c4": 3.6985668053629395, + "c5": 2.7739251040221737, + "c6": 1.8492834026814697, + "c7": 0.9246417013407041 }, "rgb": [238, 201, 159] }, @@ -253347,23 +253347,23 @@ "year": 1776, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": 50.13706777342177, - "c2": 14.000160738327573, - "c3": -19.164975398805375, - "c4": -22.683385258184337, - "c5": -42.069472034880164, - "c6": 11.747066496284198, - "c7": 36.22994686456945 + "points": { + "c1": 8.75759290193951, + "c2": -32.415220396791234, + "c3": 28.953243937583316, + "c4": 36.03467063651458, + "c5": -14.685126836546992, + "c6": 50.190325147242014, + "c7": 43.27021429111638 }, - "vertexSeeds": { - "c1": 2.8989322809232667, - "c2": 2.976247630770516, - "c3": 2.9461335867484086, - "c4": 2.876913802182977, - "c5": 2.8575272355439383, - "c6": 2.8138049660628766, - "c7": 2.703443213343124 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234399, + "c3": 3.582986592695327, + "c4": 2.8663892741562633, + "c5": 2.1497919556171996, + "c6": 1.4331946370781272, + "c7": 0.7165973185390636 }, "rgb": [58, 15, 49] }, @@ -253374,23 +253374,23 @@ "year": 1776, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 5.415520134343367, - "c2": -8.594707597367652, - "c3": 29.848805427186996, - "c4": 39.916326609583756, - "c5": 12.771496908250711, - "c6": -4.453805310556021, - "c7": 1.0630098525451928 + "points": { + "c1": 45.79074535708249, + "c2": 9.863243947146465, + "c3": 26.029753702647675, + "c4": 28.37906795131064, + "c5": -4.571217277844184, + "c6": -29.083591113837144, + "c7": 10.47787333163933 }, - "vertexSeeds": { - "c1": 3.5532960255978066, - "c2": 3.642860712080514, - "c3": 3.638479154968928, - "c4": 3.711852034951399, - "c5": 3.6238688704308664, - "c6": 3.6456568558424287, - "c7": 3.460292339503777 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803055, + "c3": 4.484512251502538, + "c4": 3.5876098012020328, + "c5": 2.6907073509015276, + "c6": 1.793804900601022, + "c7": 0.8969024503005054 }, "rgb": [86, 146, 138] }, @@ -253401,23 +253401,23 @@ "year": 1776, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -0.31518558149925013, - "c2": -16.18346436011312, - "c3": 4.684617081283221, - "c4": -27.290241051170675, - "c5": 25.909330023525662, - "c6": -33.115165306472235, - "c7": 16.465788717551625 + "points": { + "c1": 24.28197271830203, + "c2": -21.034630340080806, + "c3": 1.5800313958190415, + "c4": -14.55393474345411, + "c5": -12.446338712865618, + "c6": -30.46621948930961, + "c7": 8.599782380122974 }, - "vertexSeeds": { - "c1": 6.488052582064292, - "c2": 6.845541772579948, - "c3": 6.787235156424527, - "c4": 6.754619194777595, - "c5": 6.373084227024273, - "c6": 6.842964248254517, - "c7": 6.931729613334004 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -253428,23 +253428,23 @@ "year": 1776, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 1.6387161559557484, - "c2": -28.105176398971235, - "c3": 30.69098187914431, - "c4": -12.939905407923373, - "c5": 0.36719538152712516, - "c6": -23.824617541227674, - "c7": -2.518242750383589 + "points": { + "c1": 32.08308274260076, + "c2": -31.58528374871378, + "c3": 24.598404148100357, + "c4": -13.005496381683287, + "c5": -8.604012781510587, + "c6": 17.273092057886643, + "c7": 4.710100562315439 }, - "vertexSeeds": { - "c1": 6.811509934824079, - "c2": 6.7598661509099465, - "c3": 6.36167148135735, - "c4": 6.448456888406858, - "c5": 6.497047449836611, - "c6": 6.793170031163383, - "c7": 6.490334010142839 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -253455,23 +253455,23 @@ "year": 1776, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 36.31558910950079, - "c2": -17.60020644264149, - "c3": -9.808300435951331, - "c4": 0.4001953973340733, - "c5": -35.43557302308965, - "c6": 9.023734112888988, - "c7": 10.63096977807313 + "points": { + "c1": -11.427538047432218, + "c2": -12.663402372277652, + "c3": 10.192196598615375, + "c4": 24.13852743379732, + "c5": 9.154223234507576, + "c6": 38.128682287380656, + "c7": 37.93078647691121 }, - "vertexSeeds": { - "c1": 8.420688255179316, - "c2": 8.430172244565037, - "c3": 8.42456462815308, - "c4": 8.415904651372028, - "c5": 8.421905745111456, - "c6": 8.430364473235965, - "c7": 8.416753789014287 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.06657420249619, + "c3": 10.055478502080557, + "c4": 8.044382801664126, + "c5": 6.0332871012484945, + "c6": 4.022191400832063, + "c7": 2.0110957004164316 }, "rgb": [86, 146, 138] }, @@ -253482,23 +253482,23 @@ "year": 1775, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -2.3783673988886527, - "c2": 18.84224442502493, - "c3": 12.387693535470333, - "c4": 20.475786109731438, - "c5": -8.198777743376802, - "c6": 24.026194259435513, - "c7": -25.50288425680805 + "points": { + "c1": -21.725854885827466, + "c2": 22.683298740571843, + "c3": -16.59710974535615, + "c4": 19.768926438686997, + "c5": 3.2315001069706, + "c6": 19.454244731028446, + "c7": 23.610853379519092 }, - "vertexSeeds": { - "c1": 3.2282599533508, - "c2": 3.248539922039729, - "c3": 3.189107358421359, - "c4": 3.3041934456624182, - "c5": 3.1942244193538984, - "c6": 3.264638348323079, - "c7": 3.2293524183134945 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079051, + "c3": 4.068423485899217, + "c4": 3.2547387887193677, + "c5": 2.441054091539533, + "c6": 1.6273693943596839, + "c7": 0.8136846971798491 }, "rgb": [77, 76, 132] }, @@ -253509,23 +253509,23 @@ "year": 1776, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": 24.52622095965132, - "c2": 19.682793000749548, - "c3": 13.272900199416092, - "c4": 11.638240910066465, - "c5": -15.36851086939106, - "c6": -24.85990723101027, - "c7": 2.915841570396708 + "points": { + "c1": 44.07808793347386, + "c2": -46.011806091083585, + "c3": -26.229975957372147, + "c4": 44.753751471680395, + "c5": 21.62225163125931, + "c6": -43.50649078925231, + "c7": 49.0416549806967 }, - "vertexSeeds": { - "c1": 6.975388601036269, - "c2": 6.975388601036269, - "c3": 6.975388601036269, - "c4": 6.975388601036269, - "c5": 6.975388601036269, - "c6": 6.975388601036269, - "c7": 6.975388601036269 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -253536,23 +253536,23 @@ "year": 1776, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -3.291118262378383, - "c2": 32.512899224597476, - "c3": -22.861199655809727, - "c4": -17.81779077147872, - "c5": 22.042389002603812, - "c6": 26.72360237211319, - "c7": 1.12930360127325 + "points": { + "c1": -9.599350179386327, + "c2": -10.798294983198684, + "c3": -33.740492081337294, + "c4": -6.226719944762451, + "c5": -23.688794616729886, + "c6": 27.029662973688644, + "c7": -15.887754532491435 }, - "vertexSeeds": { - "c1": 5.413069487829993, - "c2": 5.718863216651015, - "c3": 5.765459279550517, - "c4": 5.545411199755065, - "c5": 5.640973751710446, - "c6": 5.648405777686553, - "c7": 5.714031087070611 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206658, + "c3": 6.934812760055468, + "c4": 5.547850208044379, + "c5": 4.16088765603329, + "c6": 2.773925104022201, + "c7": 1.3869625520110893 }, "rgb": [222, 0, 59] }, @@ -253563,23 +253563,23 @@ "year": 1776, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -0.9780202480981295, - "c2": 0.5904938118073702, - "c3": 12.151351705284085, - "c4": 10.851638119228028, - "c5": 17.29317135587914, - "c6": 18.2652212371801, - "c7": -8.288862398731137 + "points": { + "c1": 15.553909251229193, + "c2": -20.775867051808206, + "c3": 13.433757731404306, + "c4": -3.920227286451478, + "c5": -31.547594089457508, + "c6": 16.589123518629236, + "c7": 12.579510105761074 }, - "vertexSeeds": { - "c1": 3.1635453468048675, - "c2": 3.1684061071317626, - "c3": 3.0637540314476897, - "c4": 3.1864011695148906, - "c5": 2.9002556738842817, - "c6": 3.1237612196644484, - "c7": 3.0648218765584194 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -253590,23 +253590,23 @@ "year": 1776, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 13.597983474064598, - "c2": 23.29584897564628, - "c3": 8.484308141567247, - "c4": -10.647478064206116, - "c5": 19.257446848053334, - "c6": -5.395091289162899, - "c7": -29.38862689618064 + "points": { + "c1": 31.44152451991991, + "c2": 16.186366526113773, + "c3": 28.35737533340393, + "c4": 7.643461958564593, + "c5": -27.111079331184584, + "c6": -25.40341521959313, + "c7": 1.2494172665019647 }, - "vertexSeeds": { - "c1": 2.007789263605814, - "c2": 1.9153673560221183, - "c3": 2.2873471129236704, - "c4": 1.9715878170383787, - "c5": 2.1099051007202316, - "c6": 2.1848541859886357, - "c7": 2.1093046103457516 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [58, 15, 49] }, @@ -253617,23 +253617,23 @@ "year": 1776, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": -2.5078509478295814, - "c2": -4.703102586347384, - "c3": 33.403947402743356, - "c4": -1.312156246473009, - "c5": -43.38077540037285, - "c6": 0.8020472553316509, - "c7": -18.82772541899602 + "points": { + "c1": 35.876531719493755, + "c2": 26.23081737623687, + "c3": -48.16544540666031, + "c4": 27.780325291169476, + "c5": -49.31238334686032, + "c6": 44.73191447591191, + "c7": -48.855138094848606 }, - "vertexSeeds": { - "c1": 7.833704649848832, - "c2": 7.261725406633228, - "c3": 7.876305199055703, - "c4": 7.849095603024564, - "c5": 7.571663015135132, - "c6": 7.732431316118045, - "c7": 7.386289889313321 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.56726768377254, + "c3": 9.639389736477119, + "c4": 7.711511789181684, + "c5": 5.783633841886264, + "c6": 3.855755894590842, + "c7": 1.927877947295421 }, "rgb": [222, 0, 59] }, @@ -253644,23 +253644,23 @@ "year": 1776, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -9.10923922868566, - "c2": 22.544386384932118, - "c3": -31.05289840083047, - "c4": 13.592579031213027, - "c5": 31.514081276142768, - "c6": 18.521473422627146, - "c7": 31.883491186592288 + "points": { + "c1": -30.880579162439737, + "c2": -32.054989399292154, + "c3": -10.06787860855708, + "c4": 18.512328820673254, + "c5": 37.144024787430276, + "c6": -36.72753593026246, + "c7": 2.9086133611487597 }, - "vertexSeeds": { - "c1": 5.044610319594013, - "c2": 5.3357915007139445, - "c3": 5.0668071877635406, - "c4": 5.306102970578261, - "c5": 5.237401780084539, - "c6": 5.182245953380556, - "c7": 5.217045944426733 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503464, + "c3": 6.611188164586216, + "c4": 5.288950531668969, + "c5": 3.9667128987517417, + "c6": 2.6444752658344948, + "c7": 1.3222376329172474 }, "rgb": [238, 201, 159] }, @@ -253671,23 +253671,23 @@ "year": 1775, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -12.07368529526073, - "c2": -8.89789618431886, - "c3": 23.551852329437004, - "c4": -28.23372516007449, - "c5": 2.19756000737544, - "c6": -5.481935381859412, - "c7": -1.5256832779034752 + "points": { + "c1": 10.684849059872512, + "c2": -12.008212670707337, + "c3": -26.539917647613976, + "c4": -10.000678072330697, + "c5": -2.8320768096602187, + "c6": -0.06211303525877909, + "c7": 13.06390033334442 }, - "vertexSeeds": { - "c1": 5.7780003423604525, - "c2": 5.954904547764415, - "c3": 6.813984598600688, - "c4": 6.462149243360411, - "c5": 6.27388944836531, - "c6": 6.669654497255788, - "c7": 5.80420141613275 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [58, 15, 49] }, @@ -253698,23 +253698,23 @@ "year": 1776, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": -33.85767484175719, - "c2": 23.035684805429895, - "c3": 42.566172883925574, - "c4": 29.64608848131529, - "c5": -30.725137404239558, - "c6": -42.706371525754214, - "c7": -12.035842377009487 + "points": { + "c1": -28.728495560744463, + "c2": -13.66574309843201, + "c3": -26.011020575201066, + "c4": 5.8028552959737, + "c5": 11.645590789415891, + "c6": -23.923794054915255, + "c7": 39.09258506258341 }, - "vertexSeeds": { - "c1": 6.908766264375718, - "c2": 7.069382158509758, - "c3": 7.064694381509216, - "c4": 7.207738735277683, - "c5": 7.101988568408426, - "c6": 7.146606440816294, - "c7": 7.118550427603187 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042991, + "c3": 8.645399907535817, + "c4": 6.916319926028668, + "c5": 5.187239944521496, + "c6": 3.4581599630143227, + "c7": 1.7290799815071722 }, "rgb": [238, 201, 159] }, @@ -253725,23 +253725,23 @@ "year": 1776, "resistanceReported": true, "duration": 34128000, - "curveSeeds": { - "c1": -22.99906814422282, - "c2": 43.40815465259617, - "c3": -26.344135308190612, - "c4": 8.149647610304122, - "c5": 19.13022355294595, - "c6": -13.953053222123145, - "c7": -32.890769358130555 + "points": { + "c1": -42.17143896319865, + "c2": 14.400099743736178, + "c3": 37.374803524124005, + "c4": 36.7854396026697, + "c5": -39.09741723198883, + "c6": -21.92043172645794, + "c7": -34.59663170707317 }, - "vertexSeeds": { - "c1": 8.11282679952698, - "c2": 4.560436519492258, - "c3": 6.974698120489959, - "c4": 7.300241986816851, - "c5": 6.437157447148863, - "c6": 8.655260902658416, - "c7": 6.443826568059856 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065187, + "c3": 10.957004160887655, + "c4": 8.765603328710126, + "c5": 6.574202496532592, + "c6": 4.382801664355063, + "c7": 2.1914008321775316 }, "rgb": [238, 201, 159] }, @@ -253752,23 +253752,23 @@ "year": 1776, "resistanceReported": false, "duration": 49507200, - "curveSeeds": { - "c1": 49.29190149782755, - "c2": 29.53454085501575, - "c3": -9.20193099460014, - "c4": -1.85715083219403, - "c5": 60.89027356516877, - "c6": 54.54488519615785, - "c7": -45.94182496720721 + "points": { + "c1": 37.992042690197195, + "c2": 17.555490101194252, + "c3": 33.26084707317153, + "c4": -59.07122493132974, + "c5": 36.95704923529249, + "c6": -55.522428015117626, + "c7": 45.28970047806034 }, - "vertexSeeds": { - "c1": 6.496433184939395, - "c2": 6.6052419630124675, - "c3": 6.071952029888214, - "c4": 6.139140371328002, - "c5": 6.07378545804381, - "c6": 6.2168974682592175, - "c7": 6.3939895729005185 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715663, + "c3": 7.88257050392973, + "c4": 6.306056403143775, + "c5": 4.729542302357843, + "c6": 3.1530282015718876, + "c7": 1.5765141007859549 }, "rgb": [238, 201, 159] }, @@ -253779,23 +253779,23 @@ "year": 1776, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -29.662858228616265, - "c2": -20.36827200893226, - "c3": -10.136494589490116, - "c4": -11.047568753921418, - "c5": -16.658610355459246, - "c6": 7.742799750644899, - "c7": 21.785729525982802 + "points": { + "c1": 0.6958685098518345, + "c2": 22.922139182409786, + "c3": -19.248900053976193, + "c4": 4.033559012286524, + "c5": -26.701522370264005, + "c6": -6.9605020841503595, + "c7": -6.871866658097538 }, - "vertexSeeds": { - "c1": 5.450576105833545, - "c2": 5.362369940309166, - "c3": 4.925619895425167, - "c4": 5.5465037645055695, - "c5": 5.34512402384457, - "c6": 5.021750457002735, - "c7": 6.24617585689883 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.582061950993988, + "c4": 6.065649560795197, + "c5": 4.549237170596397, + "c6": 3.0328247803975983, + "c7": 1.5164123901987991 }, "rgb": [238, 201, 159] }, @@ -253806,23 +253806,23 @@ "year": 1776, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 10.826278755410804, - "c2": 24.037373372862703, - "c3": -33.374361448324535, - "c4": 3.1745301828120347, - "c5": -39.46364599252505, - "c6": -32.118836016828276, - "c7": 27.757107327024244 + "points": { + "c1": 11.08436674339081, + "c2": 20.21005079125247, + "c3": 21.258779327988577, + "c4": -12.6109769070524, + "c5": -33.87061138634393, + "c6": 20.345142177303842, + "c7": -25.688701650125672 }, - "vertexSeeds": { - "c1": 5.448444960202256, - "c2": 5.970849499525148, - "c3": 5.43997793013172, - "c4": 5.862209163923425, - "c5": 5.311159991739059, - "c6": 5.169465792853633, - "c7": 5.5192677912445305 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [238, 201, 159] }, @@ -253833,23 +253833,23 @@ "year": 1776, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -16.249884049147845, - "c2": 30.980911696887716, - "c3": -23.072326349194086, - "c4": -15.380386698285683, - "c5": -17.504978224797522, - "c6": 7.634117340758664, - "c7": -1.41237255843658 + "points": { + "c1": 27.12247704105937, + "c2": 13.736728163469756, + "c3": -26.78773164922968, + "c4": -33.12699256261113, + "c5": -21.68256953310499, + "c6": -25.630679117491287, + "c7": 6.571036578419395 }, - "vertexSeeds": { - "c1": 9.533775016230594, - "c2": 9.70350273412675, - "c3": 9.6332838684841, - "c4": 9.593917778759755, - "c5": 9.732906786875775, - "c6": 9.441624652093713, - "c7": 9.43280574270829 + "offsets": { + "c1": 16.601941747572816, + "c2": 14.230235783633841, + "c3": 11.85852981969487, + "c4": 9.486823855755894, + "c5": 7.1151178918169204, + "c6": 4.743411927877947, + "c7": 2.3717059639389735 }, "rgb": [86, 146, 138] }, @@ -253860,23 +253860,23 @@ "year": 1776, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -35.22109509472355, - "c2": -25.755207974265755, - "c3": 32.24645255658477, - "c4": 14.225708522996399, - "c5": -24.846753224193712, - "c6": 19.85176470454003, - "c7": -32.124397850565174 + "points": { + "c1": -42.21940938321903, + "c2": 23.956822938739222, + "c3": 41.086163992615326, + "c4": -39.14199452553773, + "c5": -44.40876714910015, + "c6": -22.520507803314498, + "c7": 36.189935958879204 }, - "vertexSeeds": { - "c1": 1.347434369066596, - "c2": 1.4704240572472673, - "c3": 1.3433565180849625, - "c4": 1.477817567436972, - "c5": 1.239389059512165, - "c6": 1.2786459534922565, - "c7": 1.2652645320451767 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.191400832177532, + "c3": 1.8261673601479425, + "c4": 1.4609338881183547, + "c5": 1.0957004160887651, + "c6": 0.7304669440591773, + "c7": 0.36523347202958867 }, "rgb": [77, 76, 132] }, @@ -253887,23 +253887,23 @@ "year": 1776, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 12.1125754648935, - "c2": -23.422316643836357, - "c3": -25.227273880566738, - "c4": 17.861529852926996, - "c5": 23.24436330162217, - "c6": 14.853904025225834, - "c7": -19.454820952050436 + "points": { + "c1": 23.816362926751502, + "c2": 15.767728014378847, + "c3": -13.29940052054064, + "c4": 6.7579147063476555, + "c5": -32.987073031222245, + "c6": 4.60306795906196, + "c7": -31.6844866391109 }, - "vertexSeeds": { - "c1": 5.408122678431553, - "c2": 5.193571042789478, - "c3": 5.2462461459116065, - "c4": 5.258179082655395, - "c5": 5.208747671066666, - "c6": 5.200571789251994, - "c7": 5.099274806267388 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302353, + "c3": 6.495607951918641, + "c4": 5.196486361534909, + "c5": 3.8973647711511763, + "c6": 2.5982431807674655, + "c7": 1.2991215903837328 }, "rgb": [58, 15, 49] }, @@ -253914,23 +253914,23 @@ "year": 1776, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 37.573554097977166, - "c2": -5.574466269113756, - "c3": -12.98086032575748, - "c4": 25.497101969439278, - "c5": 17.612651309441418, - "c6": -35.35731706079391, - "c7": 8.243666168860514 + "points": { + "c1": 1.0624536297980924, + "c2": -33.27176002351359, + "c3": 12.499865025424178, + "c4": -12.101681497328276, + "c5": -32.46149035565481, + "c6": 22.242484417999023, + "c7": 2.8456721746993665 }, - "vertexSeeds": { - "c1": 4.057480128907748, - "c2": 3.840826146442433, - "c3": 4.022081469650037, - "c4": 4.053553252109838, - "c5": 3.9098237523989923, - "c6": 3.8736582548644836, - "c7": 4.0076185561364435 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [77, 76, 132] }, @@ -253941,23 +253941,23 @@ "year": 1776, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 22.05511472779949, - "c2": 28.612800024133207, - "c3": 36.72719210256943, - "c4": 13.431583797583812, - "c5": 40.378275649254476, - "c6": -12.963882157687983, - "c7": -44.32933035090023 + "points": { + "c1": 8.828027780353786, + "c2": 18.28616587543965, + "c3": -17.099180064085523, + "c4": -0.5088398952438595, + "c5": -20.51481716114084, + "c6": 6.2251130517888384, + "c7": -30.553515063359715 }, - "vertexSeeds": { - "c1": 7.273577448872203, - "c2": 6.58826383892384, - "c3": 6.9812341377680145, - "c4": 7.168883845974851, - "c5": 7.161282802615118, - "c6": 7.189232392399415, - "c7": 7.057212816418811 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.48543689320388, + "c3": 8.737864077669899, + "c4": 6.990291262135917, + "c5": 5.2427184466019465, + "c6": 3.495145631067965, + "c7": 1.7475728155339825 }, "rgb": [238, 201, 159] }, @@ -253968,23 +253968,23 @@ "year": 1776, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 14.973597133717433, - "c2": 21.751859376392062, - "c3": 36.04704083552596, - "c4": 32.43625810990653, - "c5": -26.026459579809014, - "c6": 22.516836568694025, - "c7": 10.088644137756404 + "points": { + "c1": -7.663452456738963, + "c2": 27.52225669663744, + "c3": 33.57056580379111, + "c4": -18.41796000805442, + "c5": 23.828411391550944, + "c6": -32.924734519379726, + "c7": -15.795693538885587 }, - "vertexSeeds": { - "c1": 5.54617885177387, - "c2": 5.764206958443796, - "c3": 5.727679617780957, - "c4": 5.488256160034215, - "c5": 5.71696225133478, - "c6": 5.63159047030174, - "c7": 5.521020350196145 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055484, + "c4": 5.547850208044369, + "c5": 4.160887656033276, + "c6": 2.7739251040221844, + "c7": 1.3869625520110922 }, "rgb": [238, 201, 159] }, @@ -253995,23 +253995,23 @@ "year": 1776, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 1.280718272736209, - "c2": -39.967374891360635, - "c3": 6.174376171086259, - "c4": -19.194646177402248, - "c5": 21.197913182887746, - "c6": 25.35818791124595, - "c7": 25.871411010817027 + "points": { + "c1": 43.62932110246119, + "c2": -15.267636002777099, + "c3": 30.90935532042093, + "c4": -19.34702435102614, + "c5": 13.743976421476816, + "c6": 31.80560614678697, + "c7": -31.88220801486864 }, - "vertexSeeds": { - "c1": 3.087355732992905, - "c2": 2.881397607838278, - "c3": 2.4890587821107126, - "c4": 2.243406716318759, - "c5": 2.834627397811714, - "c6": 2.1960039021739104, - "c7": 2.165981635198284 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757282, + "c3": 3.883495145631067, + "c4": 3.1067961165048543, + "c5": 2.330097087378641, + "c6": 1.5533980582524272, + "c7": 0.776699029126213 }, "rgb": [58, 15, 49] }, @@ -254022,23 +254022,23 @@ "year": 1776, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -16.86642352590319, - "c2": -20.37390255521548, - "c3": 24.740281239798012, - "c4": 6.837716305303299, - "c5": -17.268700442254108, - "c6": 7.8553251507140125, - "c7": 18.670309781942404 + "points": { + "c1": 12.043225640512858, + "c2": 26.66279037836948, + "c3": -20.7111665899716, + "c4": -26.430822411662252, + "c5": -25.338471425536653, + "c6": 14.990514119986635, + "c7": -8.415038844010692 }, - "vertexSeeds": { - "c1": 6.7870155471697835, - "c2": 6.553317001628701, - "c3": 6.666566471268815, - "c4": 6.363891603696844, - "c5": 6.667861491247925, - "c6": 6.76142809858171, - "c7": 6.781159594721791 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -254049,23 +254049,23 @@ "year": 1776, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -4.464318520934807, - "c2": 8.447832573423266, - "c3": -24.44818059554732, - "c4": 13.61415962873225, - "c5": 23.077965550445025, - "c6": 0.6956135106696308, - "c7": -5.2588951711650616 + "points": { + "c1": 27.998616218557302, + "c2": 5.7900985040609285, + "c3": -31.322491824593, + "c4": -25.48972101389303, + "c5": 6.4840977670125355, + "c6": 32.34311763812289, + "c7": 5.83666185434528 }, - "vertexSeeds": { - "c1": 3.927209705041527, - "c2": 3.9458311731231412, - "c3": 4.004814770602093, - "c4": 4.076108693310722, - "c5": 4.0104702103692675, - "c6": 4.087521008991713, - "c7": 4.028790509346424 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [77, 76, 132] }, @@ -254076,23 +254076,23 @@ "year": 1776, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -10.669025279885382, - "c2": 8.277757027065334, - "c3": -0.7919642901876287, - "c4": -5.5617167503709055, - "c5": 28.316420157519133, - "c6": 28.360555218395334, - "c7": 9.54152242699525 + "points": { + "c1": 4.865438575755867, + "c2": -15.989196877036793, + "c3": 31.788159049504756, + "c4": 19.308389108611166, + "c5": -7.549075453661043, + "c6": -30.71161526178487, + "c7": -21.67833374391892 }, - "vertexSeeds": { - "c1": 7.316633440622821, - "c2": 7.32262649895423, - "c3": 7.3327381503200035, - "c4": 7.333741332833454, - "c5": 7.308367453104417, - "c6": 7.324221914904524, - "c7": 7.331105235080325 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284262, + "c3": 8.78409616273704, + "c4": 7.027276930189585, + "c5": 5.270457697642131, + "c6": 3.513638465094676, + "c7": 1.7568192325474543 }, "rgb": [238, 201, 159] }, @@ -254103,23 +254103,23 @@ "year": 1776, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 18.33621990814457, - "c2": 18.696598750530534, - "c3": 18.06782608808839, - "c4": -18.327700172361233, - "c5": -23.54917406058243, - "c6": -4.88505467495974, - "c7": -30.82388794860406 + "points": { + "c1": -8.78605028790702, + "c2": 14.752679377096989, + "c3": 3.015624902158109, + "c4": 26.701325685510383, + "c5": 17.59124421919345, + "c6": 0.3290663144458108, + "c7": -32.7819405572522 }, - "vertexSeeds": { - "c1": 11.00552983058997, - "c2": 11.472290653098502, - "c3": 11.51739153175374, - "c4": 11.133524817941774, - "c5": 11.500381825547237, - "c6": 10.76581934099155, - "c7": 11.53080265333375 + "offsets": { + "c1": 19.385113268608414, + "c2": 16.615811373092946, + "c3": 13.846509477577433, + "c4": 11.077207582061963, + "c5": 8.307905686546452, + "c6": 5.538603791030981, + "c7": 2.7693018955154702 }, "rgb": [58, 15, 49] }, @@ -254130,23 +254130,23 @@ "year": 1775, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -3.4667617031285403, - "c2": -3.08061339710223, - "c3": 26.610697107549882, - "c4": 9.054039088983536, - "c5": -12.592774139438742, - "c6": 5.777705613180352, - "c7": 22.95217223648102 + "points": { + "c1": -7.330865761029084, + "c2": -0.6428805692657065, + "c3": 12.058103296686227, + "c4": -6.61566385466357, + "c5": 1.8114406744436664, + "c6": -23.344118093937645, + "c7": 0.5479921359817297 }, - "vertexSeeds": { - "c1": 5.882728445035426, - "c2": 6.20760942184561, - "c3": 6.238609932048775, - "c4": 5.567538397052888, - "c5": 6.3637849944445, - "c6": 6.130447433013861, - "c7": 5.966007509212517 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.136846971798432, + "c4": 6.509477577438738, + "c5": 4.882108183079054, + "c6": 3.254738788719369, + "c7": 1.6273693943596845 }, "rgb": [222, 0, 59] }, @@ -254157,23 +254157,23 @@ "year": 1776, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -17.165811756198625, - "c2": 24.2053652720216, - "c3": -8.6131740703804, - "c4": -0.07571813635654934, - "c5": -28.75300497357122, - "c6": -23.558303580528257, - "c7": 4.711392978849251 + "points": { + "c1": -19.380822359322046, + "c2": -28.388036947415223, + "c3": -18.72494022190356, + "c4": 31.919716302036846, + "c5": 31.30063356110894, + "c6": -23.25259500354976, + "c7": -19.406408011375504 }, - "vertexSeeds": { - "c1": 6.190002695421393, - "c2": 6.01374237127469, - "c3": 6.005828814460518, - "c4": 6.322847737569464, - "c5": 6.141744754096367, - "c6": 6.043278378817245, - "c7": 6.159197134304392 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192786, + "c3": 7.582061950993983, + "c4": 6.0656495607952055, + "c5": 4.549237170596403, + "c6": 3.0328247803976027, + "c7": 1.5164123901988014 }, "rgb": [222, 0, 59] }, @@ -254184,23 +254184,23 @@ "year": 1776, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 4.565378210163107, - "c2": 6.48205079596168, - "c3": -10.064546766284604, - "c4": -16.54934426636828, - "c5": 0.643822928484898, - "c6": 25.452838895515224, - "c7": -7.749231799039649 + "points": { + "c1": -23.226317625093827, + "c2": -15.17804326445479, + "c3": -21.52251525791146, + "c4": -29.18987023286177, + "c5": -31.524741048094757, + "c6": -18.466202222445965, + "c7": 9.757627212274464 }, - "vertexSeeds": { - "c1": 6.486389398480814, - "c2": 6.452147717113552, - "c3": 6.744178489162537, - "c4": 6.843795297360515, - "c5": 6.407746578314945, - "c6": 6.913884065929228, - "c7": 6.721150933577684 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -254211,23 +254211,23 @@ "year": 1776, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -13.219540644082642, - "c2": -14.830130695635642, - "c3": -4.770676581337941, - "c4": -13.002117679353795, - "c5": 16.235511957325254, - "c6": -26.459879827609743, - "c7": -13.57619193391292 + "points": { + "c1": 18.007078404493804, + "c2": -25.551369509064983, + "c3": -22.3577892368298, + "c4": 15.42748795045329, + "c5": 13.317926872224433, + "c6": 18.96000465779614, + "c7": -7.031604547052634 }, - "vertexSeeds": { - "c1": 10.033942497734815, - "c2": 10.064287019951104, - "c3": 9.863897994238348, - "c4": 10.835698268990775, - "c5": 9.84418314332387, - "c6": 11.11833797902848, - "c7": 11.141330670940754 + "offsets": { + "c1": 19.25566343042071, + "c2": 16.504854368932033, + "c3": 13.754045307443354, + "c4": 11.0032362459547, + "c5": 8.252427184466022, + "c6": 5.501618122977344, + "c7": 2.7508090614886664 }, "rgb": [58, 15, 49] }, @@ -254238,23 +254238,23 @@ "year": 1777, "resistanceReported": false, "duration": 49939200, - "curveSeeds": { - "c1": 51.38748630872219, - "c2": -36.09350435887896, - "c3": 46.085094392919146, - "c4": 31.428227678763378, - "c5": 50.58059953439337, - "c6": 1.3505450786970385, - "c7": -29.454095935462135 + "points": { + "c1": 33.566752075126644, + "c2": 12.888454887891541, + "c3": 48.6090974751786, + "c4": 19.021995356445828, + "c5": 43.55777154353798, + "c6": 45.8229992694518, + "c7": -2.1723764437358426 }, - "vertexSeeds": { - "c1": 2.135637457702373, - "c2": 2.167116336331158, - "c3": 2.0449228685746035, - "c4": 2.1262422957053193, - "c5": 2.0459459106968994, - "c6": 2.1489584818115968, - "c7": 2.170548934027937 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [222, 0, 59] }, @@ -254265,23 +254265,23 @@ "year": 1775, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -13.052649789362713, - "c2": -2.220782486738102, - "c3": 12.754981430920758, - "c4": 16.119399731173203, - "c5": 22.69966736909597, - "c6": 11.930094559132563, - "c7": -4.664129032205771 + "points": { + "c1": 23.374959183719078, + "c2": 10.020613523121376, + "c3": 1.6650395045097532, + "c4": -14.692582299825823, + "c5": -12.352940057846432, + "c6": 15.39346819637801, + "c7": -17.42026214971469 }, - "vertexSeeds": { - "c1": 3.191072246521327, - "c2": 2.9845895876601953, - "c3": 3.2628920093351677, - "c4": 3.213541372324087, - "c5": 2.910449142922208, - "c6": 3.133455617324688, - "c7": 3.121311210103265 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -254292,23 +254292,23 @@ "year": 1776, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 3.7107781265639836, - "c2": -12.094473886120397, - "c3": -21.929708405760362, - "c4": -20.01763393316363, - "c5": 24.31493445944756, - "c6": -17.43905509625413, - "c7": -24.438603560264077 + "points": { + "c1": -16.02237522047431, + "c2": 1.0554030723114671, + "c3": 5.297658855363647, + "c4": 10.6527280509945, + "c5": -8.550555852229603, + "c6": -18.832823352409694, + "c7": -28.881926274174766 }, - "vertexSeeds": { - "c1": 8.976427107707774, - "c2": 8.413997300346411, - "c3": 8.880949108888395, - "c4": 8.407615961218674, - "c5": 8.413339579921887, - "c6": 8.246448760706448, - "c7": 8.625495319955379 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.843273231622751, + "c3": 10.702727693018945, + "c4": 8.56218215441516, + "c5": 6.421636615811376, + "c6": 4.281091077207569, + "c7": 2.1405455386037846 }, "rgb": [58, 15, 49] }, @@ -254319,23 +254319,23 @@ "year": 1776, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -18.229100955660645, - "c2": 3.316182121350476, - "c3": 7.156378454961757, - "c4": -26.145795056632902, - "c5": -12.620177228371933, - "c6": -22.25015539932221, - "c7": 18.255148079660483 + "points": { + "c1": 23.018844800886217, + "c2": 16.831285844798938, + "c3": -1.1134639054796693, + "c4": 11.830103137577414, + "c5": -10.431636539606142, + "c6": 5.034950790382322, + "c7": -9.828860629188416 }, - "vertexSeeds": { - "c1": 6.9191479074845015, - "c2": 6.472513044479893, - "c3": 6.77108870811712, - "c4": 6.439851173296345, - "c5": 6.952834237835134, - "c6": 6.379941901911435, - "c7": 6.95536502417367 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -254346,23 +254346,23 @@ "year": 1776, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -21.05149028467549, - "c2": -10.142330641372642, - "c3": 4.465839286626327, - "c4": 17.978069881319676, - "c5": -19.122830566573796, - "c6": 12.417480052860569, - "c7": 3.139407329449881 + "points": { + "c1": -25.517741008006197, + "c2": -16.280027960247523, + "c3": 12.186750256117804, + "c4": 4.014013236468173, + "c5": 39.1748560485601, + "c6": -38.350396512925016, + "c7": 27.854962149975094 }, - "vertexSeeds": { - "c1": 5.280239112947088, - "c2": 5.766927668137915, - "c3": 5.612024898657235, - "c4": 5.35330276686419, - "c5": 5.973683621704486, - "c6": 5.516773868058918, - "c7": 5.796070705677117 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [77, 76, 132] }, @@ -254373,23 +254373,23 @@ "year": 1776, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 2.2162225624181673, - "c2": -11.483411320244613, - "c3": 9.855666333186825, - "c4": -8.716561085293513, - "c5": -8.254533265723406, - "c6": 26.03733128354306, - "c7": 1.2663266742296884 + "points": { + "c1": -6.049400374666298, + "c2": -26.315879688245648, + "c3": -23.555751468668895, + "c4": -15.560937358504995, + "c5": -26.580988612264246, + "c6": 3.2491044524964536, + "c7": 14.28050029552643 }, - "vertexSeeds": { - "c1": 4.259977951043059, - "c2": 4.004377829329873, - "c3": 4.122881851502083, - "c4": 4.1577474690339855, - "c5": 4.109358042568609, - "c6": 4.029633448692391, - "c7": 4.169837851974316 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889048, + "c3": 5.108645399907535, + "c4": 4.086916319926033, + "c5": 3.0651872399445184, + "c6": 2.0434581599630164, + "c7": 1.021729079981514 }, "rgb": [86, 146, 138] }, @@ -254400,23 +254400,23 @@ "year": 1776, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -18.523250391816166, - "c2": -0.6316309890692224, - "c3": -29.3335795650191, - "c4": -41.16647369406407, - "c5": 6.827440404287657, - "c6": 14.741417060155243, - "c7": 0.7373354964585133 + "points": { + "c1": -22.78228845203118, + "c2": -31.486804421531104, + "c3": 15.609789833145882, + "c4": -3.34097557651873, + "c5": 16.031576874673625, + "c6": -6.728862679413972, + "c7": 7.12108282682982 }, - "vertexSeeds": { - "c1": 4.693173100313936, - "c2": 4.881679729617697, - "c3": 5.013171281781026, - "c4": 5.043777249541005, - "c5": 4.723908676963926, - "c6": 4.825270597905583, - "c7": 4.996647664268763 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [222, 0, 59] }, @@ -254427,23 +254427,23 @@ "year": 1776, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 24.695911085469376, - "c2": 47.15157163369774, - "c3": 26.679785421866896, - "c4": 32.051700304584784, - "c5": -16.123260943893, - "c6": 11.079285641407651, - "c7": 43.13078392170789 + "points": { + "c1": -23.931439192383237, + "c2": -20.121603889663337, + "c3": 12.413291168964882, + "c4": 37.35430360014723, + "c5": 25.897602534106042, + "c6": 37.66153960894111, + "c7": -48.36600648563522 }, - "vertexSeeds": { - "c1": 1.1169951889470178, - "c2": 1.046847551331894, - "c3": 0.9864297506089665, - "c4": 1.0828949461987605, - "c5": 1.0339331492972221, - "c6": 1.1079321624234981, - "c7": 1.0603690687849816 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937586, + "c3": 1.4331946370781328, + "c4": 1.146555709662506, + "c5": 0.8599167822468793, + "c6": 0.5732778548312524, + "c7": 0.28663892741562685 }, "rgb": [58, 15, 49] }, @@ -254454,23 +254454,23 @@ "year": 1776, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -12.916774008609934, - "c2": 18.62693351945149, - "c3": -33.599388179655016, - "c4": -12.476112794256544, - "c5": -16.181459692604818, - "c6": -34.60213078774075, - "c7": -7.744392406596024 + "points": { + "c1": -36.1394425964319, + "c2": -4.9470309097327885, + "c3": 22.020370159156833, + "c4": -26.967176377006233, + "c5": 31.92725208502283, + "c6": -33.488009389960965, + "c7": 1.697047086082911 }, - "vertexSeeds": { - "c1": 5.5689968489124215, - "c2": 5.718856750722544, - "c3": 6.077073330933581, - "c4": 5.579961408983483, - "c5": 5.574113594120811, - "c6": 5.6756204832875765, - "c7": 5.896677926904762 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830796, + "c3": 7.374017568192323, + "c4": 5.899214054553864, + "c5": 4.4244105409153915, + "c6": 2.949607027276932, + "c7": 1.4748035136384592 }, "rgb": [58, 15, 49] }, @@ -254481,23 +254481,23 @@ "year": 1776, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -2.2795920583342593, - "c2": -17.423232999767972, - "c3": -16.17557069400121, - "c4": -26.347202654347814, - "c5": 23.155044804282902, - "c6": -8.065529818037984, - "c7": 12.281025138024788 + "points": { + "c1": 17.284310920064414, + "c2": -12.796983496636162, + "c3": -9.856836282497987, + "c4": 24.03064071219883, + "c5": 4.019480971449902, + "c6": -17.35042573128931, + "c7": 0.4225963569992075 }, - "vertexSeeds": { - "c1": 2.9400795124306325, - "c2": 3.0624325880630305, - "c3": 3.024312388692631, - "c4": 2.9745689847800874, - "c5": 3.042431209182433, - "c6": 3.047915946809293, - "c7": 2.9296381957299684 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515946, + "c3": 3.744798890429964, + "c4": 2.9958391123439685, + "c5": 2.246879334257973, + "c6": 1.497919556171978, + "c7": 0.7489597780859953 }, "rgb": [58, 15, 49] }, @@ -254508,23 +254508,23 @@ "year": 1776, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 2.2529448001132515, - "c2": 20.406229512258356, - "c3": 24.35182477836178, - "c4": 0.05370089290968849, - "c5": 4.560469139163651, - "c6": 3.4257871820729093, - "c7": -10.892739608364849 + "points": { + "c1": -14.618646988006109, + "c2": 2.160131836087807, + "c3": 14.285854473571412, + "c4": 7.974511735014708, + "c5": 26.80673001684478, + "c6": 23.209971367071212, + "c7": -5.131587080820864 }, - "vertexSeeds": { - "c1": 10.272792646900053, - "c2": 10.277990556838013, - "c3": 10.03204055904981, - "c4": 10.05749423585873, - "c5": 10.266507383448179, - "c6": 10.1713687033684, - "c7": 10.10642408976673 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317572, + "c3": 12.251502542764744, + "c4": 9.801202034211766, + "c5": 7.350901525658786, + "c6": 4.900601017105807, + "c7": 2.4503005085529783 }, "rgb": [58, 15, 49] }, @@ -254535,23 +254535,23 @@ "year": 1776, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -23.10890789489774, - "c2": 25.527794661488223, - "c3": 27.26375465818225, - "c4": 18.475175374822463, - "c5": -31.400791643039938, - "c6": -4.4617551524105465, - "c7": -1.4590007453344995 + "points": { + "c1": -8.378881735020432, + "c2": -35.868519600636574, + "c3": 26.77850673866783, + "c4": -28.21728638033982, + "c5": -23.310253895979212, + "c6": -18.979456609006274, + "c7": 12.026816102593799 }, - "vertexSeeds": { - "c1": 3.853028574743064, - "c2": 3.947447662602782, - "c3": 4.018922673973432, - "c4": 3.89368095812214, - "c5": 3.905920016551781, - "c6": 3.997050573078641, - "c7": 3.807362865098779 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [238, 201, 159] }, @@ -254562,23 +254562,23 @@ "year": 1776, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 25.17145482332807, - "c2": 8.450885401072746, - "c3": 5.285133962146432, - "c4": -4.657445105924449, - "c5": 26.70445182621284, - "c6": 0.9744330274106723, - "c7": 17.89960460890878 + "points": { + "c1": 1.1642485112341951, + "c2": 0.6017065544905442, + "c3": -0.9854399215133149, + "c4": -20.531647265999666, + "c5": 3.1729390151406633, + "c6": 11.649462686478834, + "c7": 4.693084489638267 }, - "vertexSeeds": { - "c1": 6.818837628515289, - "c2": 6.583015034361975, - "c3": 6.743491422889516, - "c4": 6.8712526601016055, - "c5": 6.447249714671013, - "c6": 6.804924956023474, - "c7": 6.422912856368833 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -254589,23 +254589,23 @@ "year": 1776, "resistanceReported": true, "duration": 28598400, - "curveSeeds": { - "c1": -6.675136997615809, - "c2": -6.850498245031304, - "c3": 26.26740725916204, - "c4": 12.559415822830715, - "c5": 34.83325858352589, - "c6": 21.788487502624683, - "c7": 38.95459070928551 + "points": { + "c1": -13.506732894040454, + "c2": 29.913101401883452, + "c3": -7.827787368042742, + "c4": 36.86719321938064, + "c5": 16.552346464620612, + "c6": -15.906213705059727, + "c7": -15.190745068663468 }, - "vertexSeeds": { - "c1": 1.192704882195609, - "c2": 1.1477376804867305, - "c3": 1.1343526137382234, - "c4": 1.1944415892845963, - "c5": 1.2024249923219867, - "c6": 1.217143072409753, - "c7": 1.137971461267275 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.775312066574202, + "c3": 1.4794267221451678, + "c4": 1.1835413777161337, + "c5": 0.8876560332871024, + "c6": 0.5917706888580684, + "c7": 0.2958853444290342 }, "rgb": [58, 15, 49] }, @@ -254616,23 +254616,23 @@ "year": 1776, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 12.608295861848198, - "c2": -35.77694306568025, - "c3": -27.486872287126168, - "c4": -18.80356917418314, - "c5": -10.35029070395948, - "c6": -1.147136893062381, - "c7": -8.471781152589958 + "points": { + "c1": 16.779905256107767, + "c2": 9.285522307327113, + "c3": -8.960623070410133, + "c4": 34.32025653213424, + "c5": -21.005400244840274, + "c6": -23.978841549872364, + "c7": 18.84461447641754 }, - "vertexSeeds": { - "c1": 6.325503883494849, - "c2": 6.334574984111699, - "c3": 6.361220741383071, - "c4": 6.317831614601974, - "c5": 6.339843400816314, - "c6": 6.319965628201299, - "c7": 6.368859564164222 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273213, + "c3": 7.628294036060991, + "c4": 6.102635228848768, + "c5": 4.576976421636545, + "c6": 3.051317614424445, + "c7": 1.5256588072122226 }, "rgb": [86, 146, 138] }, @@ -254643,23 +254643,23 @@ "year": 1776, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": -3.3096125966262733, - "c2": -35.38301491555547, - "c3": -12.35134124299207, - "c4": -5.9662111756185325, - "c5": -22.706856783575102, - "c6": 43.59431326798811, - "c7": -26.03532865859562 + "points": { + "c1": 22.193335009373826, + "c2": -24.588816686758182, + "c3": 53.334760795962424, + "c4": 48.80179133283697, + "c5": -15.870782500517358, + "c6": 35.01689188228288, + "c7": -1.7227464008148132 }, - "vertexSeeds": { - "c1": 4.380956102988393, - "c2": 4.319811577049655, - "c3": 4.075128945815196, - "c4": 4.444663675259011, - "c5": 4.458347809289563, - "c6": 4.529770202331906, - "c7": 4.049563466020375 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -254670,23 +254670,23 @@ "year": 1776, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 12.791746681345707, - "c2": -22.294415019209044, - "c3": -10.177361520496053, - "c4": 32.045972878344216, - "c5": -11.787745149865824, - "c6": -1.2084830270971452, - "c7": -38.33388619539826 + "points": { + "c1": -10.880139004472298, + "c2": 16.401171383036072, + "c3": -32.45853857288218, + "c4": -14.400908157767343, + "c5": 0.7294674531254799, + "c6": -23.83907654783482, + "c7": 32.67118429878866 }, - "vertexSeeds": { - "c1": 9.62577160896802, - "c2": 9.661177708003045, - "c3": 9.627649633118772, - "c4": 9.630943532328848, - "c5": 9.680430550374806, - "c6": 9.652312900548223, - "c7": 9.630803492889005 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520111022, + "c3": 11.558021266759031, + "c4": 9.246417013407271, + "c5": 6.934812760055511, + "c6": 4.623208506703751, + "c7": 2.3116042533517605 }, "rgb": [222, 0, 59] }, @@ -254697,23 +254697,23 @@ "year": 1776, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 24.196109044175152, - "c2": 11.495202841412727, - "c3": -16.320593205951592, - "c4": -17.796118253785963, - "c5": 3.3887635860384933, - "c6": -22.640953292915615, - "c7": -10.070769780107604 + "points": { + "c1": -19.690200756417763, + "c2": -14.853638255962139, + "c3": -17.53619972198458, + "c4": 35.54631001484695, + "c5": 19.52138757223998, + "c6": 34.06590229314398, + "c7": -34.47229983821579 }, - "vertexSeeds": { - "c1": 6.473264627496503, - "c2": 6.6057832525475195, - "c3": 6.774195680100608, - "c4": 6.416102668531425, - "c5": 6.653733561057296, - "c6": 6.541135895212674, - "c7": 6.673560874267099 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -254724,23 +254724,23 @@ "year": 1776, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -2.1961135329568364, - "c2": -10.975857296871148, - "c3": 13.8193812953226, - "c4": 24.099282044744513, - "c5": 17.015252303042672, - "c6": 7.997139044371785, - "c7": -19.21005490663295 + "points": { + "c1": -23.0237554708512, + "c2": -20.00952589044889, + "c3": -20.4313777828068, + "c4": -8.895412323432595, + "c5": 19.557651860345295, + "c6": 25.262580447602126, + "c7": -8.466665356017014 }, - "vertexSeeds": { - "c1": 2.9025230957687977, - "c2": 2.7248087268860175, - "c3": 2.9416294517544217, - "c4": 2.8217328564287834, - "c5": 2.80166690809318, - "c6": 2.8200890030314962, - "c7": 2.898445767744765 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.24410540915395, + "c3": 3.5367545076282996, + "c4": 2.829403606102637, + "c5": 2.122052704576975, + "c6": 1.4147018030513128, + "c7": 0.7073509015256623 }, "rgb": [58, 15, 49] }, @@ -254751,23 +254751,23 @@ "year": 1776, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 5.2319535834005215, - "c2": -9.722344760260686, - "c3": 18.655408543430667, - "c4": -4.569809789167543, - "c5": -16.662039795004667, - "c6": 23.8370406590346, - "c7": 6.191335075994402 + "points": { + "c1": 3.3126260184802554, + "c2": -20.82648448916014, + "c3": -18.675711534505297, + "c4": -9.655745721048223, + "c5": 0.5005374090044263, + "c6": 5.753273361464004, + "c7": 12.671694601590872 }, - "vertexSeeds": { - "c1": 6.451475848256894, - "c2": 6.369353472111501, - "c3": 6.879646837887563, - "c4": 6.901998287118724, - "c5": 6.6094626330189, - "c6": 6.553631334419425, - "c7": 6.635046224815845 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -254778,23 +254778,23 @@ "year": 1776, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 12.791379740532072, - "c2": 6.333097816742438, - "c3": 22.204438622389176, - "c4": -24.943376781197287, - "c5": 5.778970063843147, - "c6": -3.778105477020272, - "c7": 15.270730116002909 + "points": { + "c1": -22.856924323886247, + "c2": 19.85086645292391, + "c3": -19.511902478908688, + "c4": -22.818368881230874, + "c5": -25.6836046768584, + "c6": 17.067060419273517, + "c7": -20.315492902119068 }, - "vertexSeeds": { - "c1": 7.694906309989237, - "c2": 7.6831700627067185, - "c3": 7.714445841051409, - "c4": 7.7315424049756905, - "c5": 7.704102811689056, - "c6": 7.803010018770898, - "c7": 7.737248824594716 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.17891816920943, + "c3": 9.31576514100786, + "c4": 7.452612112806287, + "c5": 5.589459084604715, + "c6": 3.7263060564031436, + "c7": 1.8631530282015718 }, "rgb": [238, 201, 159] }, @@ -254805,23 +254805,23 @@ "year": 1776, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -1.96581410637382, - "c2": -20.94792384755252, - "c3": 32.93830864308184, - "c4": -26.561553021207718, - "c5": 4.959528987779883, - "c6": 24.205516018784294, - "c7": -36.53828337180676 + "points": { + "c1": -26.467553874438, + "c2": -19.057366056947796, + "c3": -24.116914764470213, + "c4": -37.01671909852455, + "c5": 30.754046231219547, + "c6": 12.424649883118406, + "c7": 14.871617578388097 }, - "vertexSeeds": { - "c1": 6.768048072659635, - "c2": 7.04472440577758, - "c3": 6.9799947805647315, - "c4": 6.694541379778874, - "c5": 6.9988917410028595, - "c6": 6.554861089756586, - "c7": 7.104338216487546 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.576051779935268, + "c4": 6.860841423948211, + "c5": 5.145631067961174, + "c6": 3.430420711974116, + "c7": 1.715210355987058 }, "rgb": [86, 146, 138] }, @@ -254832,23 +254832,23 @@ "year": 1776, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 27.699299121200873, - "c2": -8.546577637343901, - "c3": -2.7069108363979026, - "c4": -30.5436635554955, - "c5": -26.578103590305005, - "c6": 32.92377512255164, - "c7": -2.4624033858328076 + "points": { + "c1": -3.0891973752384274, + "c2": -21.192835978269926, + "c3": -31.77807539475527, + "c4": -0.43343687924829766, + "c5": 1.5400288245442013, + "c6": 13.903440439884122, + "c7": -26.771964820434256 }, - "vertexSeeds": { - "c1": 3.70273787175299, - "c2": 5.425195310495861, - "c3": 3.168448984499425, - "c4": 4.589671068292654, - "c5": 3.6111920458707214, - "c6": 4.710776311297208, - "c7": 5.509638891232316 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785019, + "c3": 6.77300046232085, + "c4": 5.4184003698566805, + "c5": 4.0638002773925095, + "c6": 2.7092001849283402, + "c7": 1.354600092464171 }, "rgb": [238, 201, 159] }, @@ -254859,23 +254859,23 @@ "year": 1776, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 7.902331319545695, - "c2": -5.664741452251366, - "c3": 13.720054844069018, - "c4": 4.211004697589722, - "c5": -12.636107597389639, - "c6": 12.552513750874667, - "c7": -18.659477658385505 + "points": { + "c1": -17.098359508402154, + "c2": 27.924936291350875, + "c3": -5.597523628698244, + "c4": -14.127531460270562, + "c5": 11.991291485885434, + "c6": 6.011693796998067, + "c7": 7.870774284628418 }, - "vertexSeeds": { - "c1": 3.816759156581356, - "c2": 3.9008597401759366, - "c3": 3.8669965887774915, - "c4": 4.102624352469842, - "c5": 4.04675998191213, - "c6": 4.110670397298819, - "c7": 3.926503073682903 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [58, 15, 49] }, @@ -254886,23 +254886,23 @@ "year": 1776, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": -33.62990024245699, - "c2": -28.708112867098084, - "c3": -49.30944386113329, - "c4": -36.81790445606323, - "c5": -33.83226377702469, - "c6": -36.9929476289346, - "c7": 22.392109187133435 + "points": { + "c1": -51.45268391264225, + "c2": 31.61125698264754, + "c3": -35.11507403501478, + "c4": -6.499761221859991, + "c5": -49.27829077382277, + "c6": -1.7179455569938256, + "c7": -29.69338306392088 }, - "vertexSeeds": { - "c1": 2.9598211969930897, - "c2": 2.956906944278328, - "c3": 3.0170899354700103, - "c4": 3.140878522342775, - "c5": 3.1880781702841174, - "c6": 3.009892893124635, - "c7": 2.9762776003607283 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -254913,23 +254913,23 @@ "year": 1776, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 2.9365350658696094, - "c2": -5.29600171902451, - "c3": -15.58614428892546, - "c4": -13.924037630821061, - "c5": -19.949742030256456, - "c6": 7.013668266477069, - "c7": -23.727258651157808 + "points": { + "c1": 21.622288290261068, + "c2": -3.937026203328717, + "c3": -6.75213270600786, + "c4": -17.32539700090877, + "c5": -3.7665205307566367, + "c6": -14.165545125044058, + "c7": 18.46360005977013 }, - "vertexSeeds": { - "c1": 2.103135101549921, - "c2": 1.9608481847177524, - "c3": 2.2825716270194, - "c4": 1.8260658976855106, - "c5": 1.9694119748183054, - "c6": 1.951501824038442, - "c7": 2.062365820647199 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [77, 76, 132] }, @@ -254940,23 +254940,23 @@ "year": 1776, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 7.020218254427903, - "c2": 9.84716135766459, - "c3": -9.75813272821602, - "c4": -23.616120934319955, - "c5": 13.160207380557303, - "c6": 12.486838074719131, - "c7": -2.5895204003113825 + "points": { + "c1": 25.339710684035637, + "c2": -24.21420354842795, + "c3": -21.005393493356948, + "c4": -13.325745464642354, + "c5": -16.267752436407935, + "c6": -18.913987861933823, + "c7": -23.961131492118156 }, - "vertexSeeds": { - "c1": 6.687016605707621, - "c2": 6.506228582226473, - "c3": 6.438188798130082, - "c4": 6.421896619068233, - "c5": 6.474196406697428, - "c6": 6.391628113253412, - "c7": 6.382787084989282 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -254967,23 +254967,23 @@ "year": 1776, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -21.70890493673976, - "c2": -1.8111648007369539, - "c3": 18.410989530133847, - "c4": -23.403246947556315, - "c5": 1.6785964122546986, - "c6": 0.13247113071492578, - "c7": 12.630043151203068 + "points": { + "c1": 21.35515255165165, + "c2": 24.336916789927486, + "c3": 25.693878279312727, + "c4": -19.14497361618239, + "c5": 9.620155373173397, + "c6": 7.7476645428722435, + "c7": -1.152168860716646 }, - "vertexSeeds": { - "c1": 3.9178894432101545, - "c2": 3.9498965317162127, - "c3": 3.993333941005232, - "c4": 4.027047462576241, - "c5": 3.924231091712878, - "c6": 3.8924765306550158, - "c7": 3.914215506163735 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [58, 15, 49] }, @@ -254994,23 +254994,23 @@ "year": 1776, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": -23.350912188822065, - "c2": -22.20095024307797, - "c3": -33.30999586161985, - "c4": 20.30368171227537, - "c5": 3.869024586567633, - "c6": -28.900836000498053, - "c7": -54.19265283017094 + "points": { + "c1": -9.154757284548793, + "c2": 43.05461363464445, + "c3": -17.39134966921803, + "c4": 43.72258002787627, + "c5": -8.052397906176303, + "c6": -45.18366350789301, + "c7": 52.57156392945763 }, - "vertexSeeds": { - "c1": 5.586080640296142, - "c2": 5.162715409421697, - "c3": 5.369433564389376, - "c4": 4.845603872636938, - "c5": 5.496140186414973, - "c6": 5.047688390323849, - "c7": 4.91332033476911 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [58, 15, 49] }, @@ -255021,23 +255021,23 @@ "year": 1776, "resistanceReported": true, "duration": 30931200, - "curveSeeds": { - "c1": -20.71035530934334, - "c2": 22.924824029874138, - "c3": 24.489466050917535, - "c4": -25.33504208947923, - "c5": -39.00986235326012, - "c6": 41.55421502011979, - "c7": 40.54258724661033 + "points": { + "c1": -28.019480775495573, + "c2": 5.809006283932838, + "c3": -2.042931299888153, + "c4": -11.622451075671442, + "c5": 29.437779472280177, + "c6": 13.047141799974916, + "c7": 0.5126919688951617 }, - "vertexSeeds": { - "c1": 6.708192207512315, - "c2": 6.504645916552867, - "c3": 6.654005180733945, - "c4": 6.544243570708567, - "c5": 6.463174562113722, - "c6": 6.8245060245661255, - "c7": 6.761921756394451 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -255048,23 +255048,23 @@ "year": 1776, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 14.639106060541984, - "c2": 38.00697993270714, - "c3": 11.15687111963954, - "c4": 37.193829994935456, - "c5": -35.06459973400955, - "c6": -19.540263928611104, - "c7": 24.893136891516647 + "points": { + "c1": 33.4482856868827, + "c2": 43.33706573202336, + "c3": -40.984910664304586, + "c4": 42.054787961540214, + "c5": -40.06699808246929, + "c6": 11.933329129094005, + "c7": 22.40964335790224 }, - "vertexSeeds": { - "c1": 3.8665803108808294, - "c2": 3.8665803108808294, - "c3": 3.8665803108808294, - "c4": 3.8665803108808294, - "c5": 3.8665803108808294, - "c6": 3.8665803108808294, - "c7": 3.8665803108808294 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -255075,23 +255075,23 @@ "year": 1776, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -37.684117550371695, - "c2": 24.321707202074933, - "c3": -25.754658006550482, - "c4": -14.197868040908563, - "c5": -14.268163921697841, - "c6": 13.237677441545223, - "c7": -40.30605146528405 + "points": { + "c1": 19.22565409831067, + "c2": 41.59951839720404, + "c3": -45.72932272696955, + "c4": -15.76679252444514, + "c5": -38.95526131399644, + "c6": 27.50647625766517, + "c7": -24.19403332719075 }, - "vertexSeeds": { - "c1": 4.699921022691872, - "c2": 4.686849344436656, - "c3": 4.597453134438786, - "c4": 4.834664073734353, - "c5": 4.86978936133535, - "c6": 4.775790199453225, - "c7": 4.89515289943991 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176148, + "c3": 5.848358760980119, + "c4": 4.678687008784099, + "c5": 3.5090152565880692, + "c6": 2.3393435043920494, + "c7": 1.1696717521960198 }, "rgb": [86, 146, 138] }, @@ -255102,23 +255102,23 @@ "year": 1776, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -30.049745670343043, - "c2": 4.750616442690131, - "c3": -11.82117213654216, - "c4": -36.648417022231286, - "c5": 10.85055092702921, - "c6": 18.51122039790245, - "c7": -12.135189480554075 + "points": { + "c1": 9.785227666901093, + "c2": -27.4639659430093, + "c3": 36.88012688639054, + "c4": -23.881950110517366, + "c5": -26.503837566639316, + "c6": -2.8126666375282596, + "c7": 12.405064358845088 }, - "vertexSeeds": { - "c1": 3.874333719708644, - "c2": 3.8637786864224264, - "c3": 3.810182771589855, - "c4": 3.8124172221785435, - "c5": 3.930023521130794, - "c6": 3.886425898945522, - "c7": 3.833017365028917 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446601, + "c3": 4.854368932038835, + "c4": 3.8834951456310676, + "c5": 2.9126213592233006, + "c6": 1.9417475728155338, + "c7": 0.9708737864077669 }, "rgb": [86, 146, 138] }, @@ -255129,23 +255129,23 @@ "year": 1776, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 39.17122443921134, - "c2": 29.90393474161732, - "c3": 14.339019351213075, - "c4": 27.864221468197798, - "c5": -17.51796175370256, - "c6": -35.9106797255899, - "c7": -37.638703336886024 + "points": { + "c1": 29.2581446148409, + "c2": 5.5940682431195015, + "c3": 1.182016303025776, + "c4": -22.463779195055295, + "c5": -2.9392255708756423, + "c6": -5.058884891322215, + "c7": -23.360455108134264 }, - "vertexSeeds": { - "c1": 9.451524162287322, - "c2": 9.258774795453904, - "c3": 10.04197138683841, - "c4": 9.85160871426192, - "c5": 8.996292020414538, - "c6": 9.237479490157012, - "c7": 10.385570042304128 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.979195561719827, + "c3": 12.482662968099847, + "c4": 9.986130374479892, + "c5": 7.4895977808599135, + "c6": 4.993065187239933, + "c7": 2.4965325936199667 }, "rgb": [222, 0, 59] }, @@ -255156,23 +255156,23 @@ "year": 1776, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -0.03765883785867885, - "c2": -12.210900630449073, - "c3": 25.027868324614964, - "c4": 12.649337724956204, - "c5": -22.11459285406994, - "c6": 7.954393002351708, - "c7": 24.078536392908582 + "points": { + "c1": -18.87328421614317, + "c2": -7.038650671690256, + "c3": -16.91636154165743, + "c4": 11.099219162927305, + "c5": -14.415788012695796, + "c6": -1.5411406460602066, + "c7": -23.499720679533098 }, - "vertexSeeds": { - "c1": 3.8557153643275246, - "c2": 3.8431101229644664, - "c3": 3.7876322454675306, - "c4": 3.9668261431622147, - "c5": 4.0489403550743335, - "c6": 3.840125938231543, - "c7": 3.9356608015189916 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -255183,23 +255183,23 @@ "year": 1776, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 20.76323939201911, - "c2": -20.771661046978707, - "c3": -19.53820931531515, - "c4": -7.2763127865677255, - "c5": -29.078922182729382, - "c6": -4.343645271572164, - "c7": 0.4104496162419551 + "points": { + "c1": -2.0976418587094585, + "c2": 0.19622247856588615, + "c3": -24.75549226312579, + "c4": -15.293405740461239, + "c5": 34.74919174819331, + "c6": 40.38619222089464, + "c7": 2.873322430957046 }, - "vertexSeeds": { - "c1": 6.873611702184399, - "c2": 6.910619611730525, - "c3": 6.96294922395754, - "c4": 7.190175017330883, - "c5": 7.274305748713287, - "c6": 7.144576562124526, - "c7": 7.275878165600718 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485436, + "c3": 8.899676375404532, + "c4": 7.119741100323624, + "c5": 5.339805825242718, + "c6": 3.559870550161812, + "c7": 1.779935275080906 }, "rgb": [77, 76, 132] }, @@ -255210,23 +255210,23 @@ "year": 1776, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 5.224845494713925, - "c2": -2.976081840303376, - "c3": 9.559643289456616, - "c4": 0.5116011579806994, - "c5": 10.082262502496292, - "c6": 14.82651007541066, - "c7": -28.940677555104127 + "points": { + "c1": -26.43359242615432, + "c2": -22.903433392769983, + "c3": 4.480562242305389, + "c4": -2.6474847528473227, + "c5": -0.3020564830823531, + "c6": 12.545269822966794, + "c7": -30.584457449750296 }, - "vertexSeeds": { - "c1": 3.929576631378774, - "c2": 3.8169825899932532, - "c3": 3.7977136335672457, - "c4": 4.184382589458159, - "c5": 3.916035678592302, - "c6": 3.7697787368559372, - "c7": 3.9351097981547922 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.01941747572815, + "c3": 5.016181229773461, + "c4": 4.012944983818773, + "c5": 3.009708737864075, + "c6": 2.0064724919093773, + "c7": 1.0032362459546886 }, "rgb": [86, 146, 138] }, @@ -255237,23 +255237,23 @@ "year": 1776, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 2.229381027561864, - "c2": 4.17054975203623, - "c3": 1.2638101248454348, - "c4": 13.31511815338218, - "c5": 33.78364294861532, - "c6": -32.54531919703535, - "c7": 30.118666436609324 + "points": { + "c1": -42.51709127418205, + "c2": -20.794887571805916, + "c3": 18.27638504005136, + "c4": -41.339076838348696, + "c5": -6.228165878835412, + "c6": -30.720120222639736, + "c7": -38.95048333338542 }, - "vertexSeeds": { - "c1": 5.192464330425865, - "c2": 4.9765583387343275, - "c3": 5.4430404314120375, - "c4": 5.198970201120369, - "c5": 4.853633081018071, - "c6": 5.201483718536851, - "c7": 5.183913743636057 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543692, + "c3": 6.634304207119745, + "c4": 5.307443365695798, + "c5": 3.9805825242718402, + "c6": 2.6537216828478933, + "c7": 1.3268608414239467 }, "rgb": [58, 15, 49] }, @@ -255264,23 +255264,23 @@ "year": 1777, "resistanceReported": false, "duration": 44496000, - "curveSeeds": { - "c1": -48.38448390036142, - "c2": -4.119159161570039, - "c3": -43.72356672312124, - "c4": -53.29852998025408, - "c5": 45.75362800352978, - "c6": -54.08336982913767, - "c7": 5.433311746249501 + "points": { + "c1": 1.1112069781309089, + "c2": -16.03390863159668, + "c3": -59.33577585564922, + "c4": -6.165028043839769, + "c5": -11.1447156513211, + "c6": 47.86051264725299, + "c7": -50.782172218336 }, - "vertexSeeds": { - "c1": 6.7059418476902595, - "c2": 6.458324176345342, - "c3": 6.610382685958126, - "c4": 6.7613259759043745, - "c5": 6.72834119306036, - "c6": 6.884725349338949, - "c7": 6.67003785257301 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -255291,23 +255291,23 @@ "year": 1776, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 28.388936832660995, - "c2": -36.67447602996277, - "c3": -32.647360219700545, - "c4": -40.27877875700585, - "c5": 25.360317622932037, - "c6": 42.2785844021596, - "c7": -16.77371941124691 + "points": { + "c1": -30.2208874820152, + "c2": -43.93559024217109, + "c3": -2.7996923415533246, + "c4": -5.667510749797188, + "c5": -2.001654230505686, + "c6": -12.259825925734475, + "c7": -6.902518742770781 }, - "vertexSeeds": { - "c1": 6.442456273990219, - "c2": 6.4628626360118595, - "c3": 6.429877762331794, - "c4": 6.393578933248761, - "c5": 6.451386862411169, - "c6": 6.442336319299163, - "c7": 6.400419367667868 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675432, + "c3": 7.859454461396173, + "c4": 6.287563569116976, + "c5": 4.715672676837716, + "c6": 3.1437817845584566, + "c7": 1.5718908922791972 }, "rgb": [238, 201, 159] }, @@ -255318,23 +255318,23 @@ "year": 1776, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 3.921693536773283, - "c2": -22.24432051215335, - "c3": 12.146830702616505, - "c4": 7.321342882419433, - "c5": 5.05267792811734, - "c6": -6.618441888839989, - "c7": 22.353897434182315 + "points": { + "c1": -13.155822972278193, + "c2": 1.606007043456259, + "c3": -19.98638200480495, + "c4": 8.718556744552572, + "c5": 25.53191959401449, + "c6": -7.315613445523226, + "c7": 10.878080259747335 }, - "vertexSeeds": { - "c1": 4.052985348011822, - "c2": 3.909380333561855, - "c3": 4.021612884938899, - "c4": 3.913078877275703, - "c5": 3.852904423767692, - "c6": 3.846348699784399, - "c7": 4.025042413879155 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -255345,23 +255345,23 @@ "year": 1777, "resistanceReported": false, "duration": 59097600, - "curveSeeds": { - "c1": -57.527543232692736, - "c2": -59.44647988660126, - "c3": 50.04614192258032, - "c4": -12.768195570163854, - "c5": 68.27470456507112, - "c6": -37.06666662383665, - "c7": 57.38621034798393 + "points": { + "c1": -47.88743297888312, + "c2": -22.29878243052827, + "c3": -60.00275703866154, + "c4": -30.33100585051568, + "c5": 31.69284950954163, + "c6": 37.77358193322327, + "c7": -19.760547691605097 }, - "vertexSeeds": { - "c1": 5.961250041309551, - "c2": 6.072543888487732, - "c3": 5.851680426592633, - "c4": 5.537854833672102, - "c5": 5.53489713699394, - "c6": 5.790979888114739, - "c7": 5.263807026718464 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.7378640776699, + "c3": 7.281553398058249, + "c4": 5.825242718446596, + "c5": 4.368932038834957, + "c6": 2.9126213592233046, + "c7": 1.4563106796116523 }, "rgb": [222, 0, 59] }, @@ -255372,23 +255372,23 @@ "year": 1776, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -10.025294874017435, - "c2": 21.572969339760437, - "c3": -22.524559763350695, - "c4": 16.457082502761597, - "c5": 17.210183462951637, - "c6": 2.418689132277663, - "c7": 6.614511462870706 + "points": { + "c1": -0.608018161792728, + "c2": -14.079257237726448, + "c3": 2.286417064175769, + "c4": 5.417254271626973, + "c5": 19.959937342048516, + "c6": -16.634062917533093, + "c7": -2.865789926197003 }, - "vertexSeeds": { - "c1": 3.4679059075728733, - "c2": 3.44349210151727, - "c3": 3.4243094109303387, - "c4": 3.363563661629977, - "c5": 3.3544907136858195, - "c6": 3.2347137268951163, - "c7": 3.401491777024513 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033291, + "c4": 3.328710124826635, + "c5": 2.4965325936199787, + "c6": 1.6643550624133119, + "c7": 0.8321775312066559 }, "rgb": [222, 0, 59] }, @@ -255399,23 +255399,23 @@ "year": 1776, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": 6.533784463923997, - "c2": 10.94691318135218, - "c3": 2.8287446636249136, - "c4": -8.08979369759351, - "c5": 10.635071548934704, - "c6": -11.509178855811605, - "c7": -0.020103311497582155 + "points": { + "c1": 14.659022408198311, + "c2": 22.893651141845297, + "c3": -23.91395876301599, + "c4": -11.306997355345404, + "c5": -7.326295913820413, + "c6": 12.072973424655267, + "c7": 6.752449275815227 }, - "vertexSeeds": { - "c1": 3.918172544312081, - "c2": 4.052210942939716, - "c3": 3.9460193176811322, - "c4": 3.9211754629464726, - "c5": 4.10421854562582, - "c6": 4.0533817711224405, - "c7": 3.836379047675686 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [238, 201, 159] }, @@ -255426,23 +255426,23 @@ "year": 1776, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 2.566812564404131, - "c2": -7.275638808758238, - "c3": 9.318747517058263, - "c4": -36.84108337178948, - "c5": 11.539105763864107, - "c6": -4.459190777723457, - "c7": 31.592655591969056 + "points": { + "c1": -19.406626308390234, + "c2": 44.835343156419704, + "c3": 2.6732349225152134, + "c4": -19.47251584791289, + "c5": 12.075462232405421, + "c6": 33.99746339617901, + "c7": -24.164228814284105 }, - "vertexSeeds": { - "c1": 4.255181347150259, - "c2": 4.255181347150259, - "c3": 4.255181347150259, - "c4": 4.255181347150259, - "c5": 4.255181347150259, - "c6": 4.255181347150259, - "c7": 4.255181347150259 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -255453,23 +255453,23 @@ "year": 1776, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 20.796787175066903, - "c2": 33.608034171038305, - "c3": 2.7472161384409404, - "c4": -38.89165409544867, - "c5": 2.535601439137835, - "c6": 10.276930620380675, - "c7": -1.552316038535075 + "points": { + "c1": -32.281547548354865, + "c2": -7.530107859584753, + "c3": -2.2935104881624184, + "c4": -45.29470716014457, + "c5": -5.582646431959269, + "c6": -17.168540025327907, + "c7": 4.8259192480663415 }, - "vertexSeeds": { - "c1": 7.102028447958198, - "c2": 6.843792667071747, - "c3": 7.22169141440682, - "c4": 7.395569262445317, - "c5": 6.964347772132611, - "c6": 7.086306601717276, - "c7": 7.330012263292516 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -255480,23 +255480,23 @@ "year": 1776, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 12.555038933118226, - "c2": -5.378007641088125, - "c3": -32.816270390792795, - "c4": -17.686113538511243, - "c5": 34.33099846254726, - "c6": 3.9068366667117473, - "c7": 37.784363588170365 + "points": { + "c1": 17.45805757140591, + "c2": -12.618600441649168, + "c3": 14.614099073725228, + "c4": -39.74198354405503, + "c5": -12.665639474283651, + "c6": 25.401552537398402, + "c7": 8.449386526434033 }, - "vertexSeeds": { - "c1": 0.4665615164625884, - "c2": 0.4854945468723506, - "c3": 0.4732357181182755, - "c4": 0.47576204450086723, - "c5": 0.46406015237396075, - "c6": 0.47557138309063096, - "c7": 0.4493088013065839 + "offsets": { + "c1": 0.8414239482200648, + "c2": 0.7212205270457703, + "c3": 0.6010171058714743, + "c4": 0.48081368469717967, + "c5": 0.36061026352288517, + "c6": 0.24040684234859058, + "c7": 0.12020342117429456 }, "rgb": [222, 0, 59] }, @@ -255507,23 +255507,23 @@ "year": 1776, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -5.112529769218231, - "c2": 12.087175509695001, - "c3": 20.82541774677287, - "c4": 20.26033316940179, - "c5": 6.3611540746881055, - "c6": 20.19862943627144, - "c7": 19.989672514580747 + "points": { + "c1": -21.75672569237465, + "c2": 10.243698432381088, + "c3": -22.35045744167745, + "c4": 1.1288817753021547, + "c5": -7.630973539544101, + "c6": -2.7767027007099507, + "c7": 9.402307046093185 }, - "vertexSeeds": { - "c1": 6.395500752287809, - "c2": 6.592459929935534, - "c3": 6.396207825025451, - "c4": 6.482292770946034, - "c5": 6.951314933132576, - "c6": 6.588732619683846, - "c7": 6.920654223702009 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -255534,23 +255534,23 @@ "year": 1776, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 15.070674418574747, - "c2": 4.846300826563727, - "c3": 5.148854166321787, - "c4": -1.386845122024642, - "c5": 13.208734479148774, - "c6": -7.643070260013955, - "c7": -15.60600603042214 + "points": { + "c1": -24.446974799210192, + "c2": -6.755118351244153, + "c3": 7.662568920072125, + "c4": 0.004580311804566861, + "c5": 22.99291725114484, + "c6": -9.892041004933237, + "c7": 16.87509692128264 }, - "vertexSeeds": { - "c1": 3.832497098773472, - "c2": 3.9840839272660027, - "c3": 3.9620395206327923, - "c4": 3.982159581710435, - "c5": 4.005789606021383, - "c6": 3.954812624830108, - "c7": 4.008722000051257 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -255561,23 +255561,23 @@ "year": 1776, "resistanceReported": true, "duration": 10368000, - "curveSeeds": { - "c1": 20.151871632214835, - "c2": 3.313558603631563, - "c3": 4.519275152009538, - "c4": -18.40765637058773, - "c5": 10.522527946389122, - "c6": 14.991322036152233, - "c7": 4.791567651897626 + "points": { + "c1": 22.621939633636515, + "c2": -13.760273301842151, + "c3": 13.212109279436575, + "c4": 19.090611535113247, + "c5": 21.171397780647787, + "c6": -1.2622048975278268, + "c7": 11.318597076915914 }, - "vertexSeeds": { - "c1": 4.748177272581976, - "c2": 5.078115190766789, - "c3": 4.66614307936457, - "c4": 5.020061843836946, - "c5": 4.847200972090681, - "c6": 4.9181879347648465, - "c7": 4.8029487919395795 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [238, 201, 159] }, @@ -255588,23 +255588,23 @@ "year": 1776, "resistanceReported": false, "duration": 40348800, - "curveSeeds": { - "c1": 13.288549838566631, - "c2": 48.81956511298889, - "c3": 25.782718577469332, - "c4": -19.83986740857388, - "c5": -52.27161417790612, - "c6": -21.41233860872361, - "c7": -21.528236499626175 + "points": { + "c1": 24.143258276906728, + "c2": 14.241627831335485, + "c3": -33.143629379777025, + "c4": -46.15310028811449, + "c5": 9.776172789320007, + "c6": -53.895824805957524, + "c7": -55.608951631408786 }, - "vertexSeeds": { - "c1": 4.138085762046447, - "c2": 3.9230060151061066, - "c3": 3.824610089569664, - "c4": 4.10266456065374, - "c5": 3.9097890745043893, - "c6": 3.9619857992694527, - "c7": 3.942944467930378 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [222, 0, 59] }, @@ -255615,23 +255615,23 @@ "year": 1776, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 17.55112586818695, - "c2": 27.988245309111257, - "c3": 8.644906859193938, - "c4": 20.736889278470628, - "c5": -3.588836225725302, - "c6": 8.981235875873608, - "c7": -9.299246090913176 + "points": { + "c1": 0.6616587706582138, + "c2": -20.323946463726138, + "c3": 9.909620591439172, + "c4": 23.273102653890376, + "c5": -23.58788805309037, + "c6": -15.682669750050298, + "c7": -9.474291464304827 }, - "vertexSeeds": { - "c1": 6.417436213649941, - "c2": 6.909050218295261, - "c3": 6.72358292030799, - "c4": 6.544680903975577, - "c5": 6.77334764995687, - "c6": 6.570440247079331, - "c7": 6.763298442307849 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -255642,23 +255642,23 @@ "year": 1776, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": -13.863204851881363, - "c2": -17.186845572305998, - "c3": -21.958919183084628, - "c4": -50.73961229712888, - "c5": 33.69543610653425, - "c6": 43.807214405601904, - "c7": -11.095171506379508 + "points": { + "c1": 39.129086142643224, + "c2": 47.015541036744004, + "c3": -11.620511524161046, + "c4": 32.27068227245095, + "c5": -36.87602162732894, + "c6": 46.24101291428642, + "c7": -44.86473501653576 }, - "vertexSeeds": { - "c1": 3.4732042447027736, - "c2": 3.072608811206778, - "c3": 3.2029702834268186, - "c4": 3.455143237824389, - "c5": 3.1347262220926813, - "c6": 3.29683739634561, - "c7": 3.142407220700716 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033289, + "c4": 3.3287101248266326, + "c5": 2.4965325936199765, + "c6": 1.6643550624133128, + "c7": 0.8321775312066564 }, "rgb": [222, 0, 59] }, @@ -255669,23 +255669,23 @@ "year": 1776, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -26.848736756244346, - "c2": 9.049226823715557, - "c3": 10.356224130687252, - "c4": 28.85082549286924, - "c5": 23.486942308491415, - "c6": 30.252787330575664, - "c7": -51.094024104288074 + "points": { + "c1": -50.188866077291536, + "c2": -11.929299715091354, + "c3": -11.167350410883664, + "c4": 7.819446378611815, + "c5": -48.53668887329714, + "c6": 12.401039547938602, + "c7": -52.3195830039283 }, - "vertexSeeds": { - "c1": 4.3916569403726005, - "c2": 4.4565761854367025, - "c3": 4.389680904563706, - "c4": 4.341933710037047, - "c5": 4.47671629011319, - "c6": 4.63093184000449, - "c7": 4.570765133776468 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653257, + "c3": 5.547850208044379, + "c4": 4.438280166435512, + "c5": 3.328710124826634, + "c6": 2.219140083217756, + "c7": 1.109570041608878 }, "rgb": [58, 15, 49] }, @@ -255696,23 +255696,23 @@ "year": 1776, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 31.519776793429926, - "c2": -23.32367760581927, - "c3": -13.806399040761232, - "c4": -36.42203377422495, - "c5": 30.006761158391853, - "c6": 32.81414047423385, - "c7": 37.13785056137422 + "points": { + "c1": -23.356527496244045, + "c2": -38.81004003545499, + "c3": -26.06070216500445, + "c4": 10.493175083337391, + "c5": -18.07937436870607, + "c6": 38.60630460981143, + "c7": 23.418549933316342 }, - "vertexSeeds": { - "c1": 6.816253294664265, - "c2": 7.208461799994981, - "c3": 7.034880077669026, - "c4": 6.858361626018787, - "c5": 7.3292071981142985, - "c6": 6.887997152566445, - "c7": 6.850522313078316 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -255723,23 +255723,23 @@ "year": 1776, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 25.165346528825104, - "c2": 23.861082100230888, - "c3": 27.595306532184082, - "c4": 27.627432484528427, - "c5": 31.414205956690992, - "c6": 27.530103077062478, - "c7": -27.30834392409589 + "points": { + "c1": 27.02192992045066, + "c2": 10.949527227667858, + "c3": -2.625168569222865, + "c4": -21.269245525238556, + "c5": 37.464416484657065, + "c6": 23.29559610173149, + "c7": -36.75994239238394 }, - "vertexSeeds": { - "c1": 6.995854052251445, - "c2": 7.102227951751443, - "c3": 7.208585964680088, - "c4": 7.190291863863358, - "c5": 6.959569165414344, - "c6": 6.879244760290793, - "c7": 7.310325067142692 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485436, + "c3": 8.899676375404532, + "c4": 7.119741100323624, + "c5": 5.339805825242718, + "c6": 3.559870550161812, + "c7": 1.779935275080906 }, "rgb": [58, 15, 49] }, @@ -255750,23 +255750,23 @@ "year": 1776, "resistanceReported": true, "duration": 8294400, - "curveSeeds": { - "c1": 4.697460302461298, - "c2": 12.930350581458619, - "c3": 2.274191796992401, - "c4": -10.375357275673254, - "c5": 14.288950629858896, - "c6": 13.76688008185144, - "c7": -7.6497467547483655 + "points": { + "c1": 19.503483041955242, + "c2": -8.837300542449825, + "c3": 14.86304464084418, + "c4": 1.195419487235828, + "c5": -8.493485324664093, + "c6": -3.951164520465195, + "c7": -4.986534041656505 }, - "vertexSeeds": { - "c1": 3.098060752943084, - "c2": 3.254731412441078, - "c3": 3.0329692034844347, - "c4": 2.9369712214477537, - "c5": 3.220999226014006, - "c6": 3.1700990265159223, - "c7": 3.173211375069869 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -255777,23 +255777,23 @@ "year": 1777, "resistanceReported": false, "duration": 50112000, - "curveSeeds": { - "c1": 31.472483879018426, - "c2": -19.282524149028674, - "c3": -28.21750727558426, - "c4": -59.90787769249695, - "c5": 14.90028571682575, - "c6": -52.35745750816845, - "c7": -21.31089857338805 + "points": { + "c1": -30.876834591900355, + "c2": 26.732542772449207, + "c3": -61.35935261065359, + "c4": 33.556202595524056, + "c5": 0.951154423151678, + "c6": 13.686994226377834, + "c7": 52.969872856824566 }, - "vertexSeeds": { - "c1": 3.915091244947225, - "c2": 3.903140393251912, - "c3": 3.5882496917741777, - "c4": 3.773170185924263, - "c5": 3.786100404926714, - "c6": 3.6511928468456265, - "c7": 3.7040187742826625 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.65880721220527, + "c3": 4.715672676837723, + "c4": 3.772538141470186, + "c5": 2.8294036061026393, + "c6": 1.886269070735093, + "c7": 0.9431345353675465 }, "rgb": [222, 0, 59] }, @@ -255804,23 +255804,23 @@ "year": 1776, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 30.127946564688536, - "c2": -26.49243801983668, - "c3": -19.529441975174176, - "c4": 6.063968152336912, - "c5": 16.22115680950529, - "c6": -25.58570358547221, - "c7": -12.198033861181024 + "points": { + "c1": -27.34837206879881, + "c2": -37.81980824411211, + "c3": -7.413225062337162, + "c4": -44.16280784022971, + "c5": -45.85894906156017, + "c6": -26.036306269889153, + "c7": -14.066884246227893 }, - "vertexSeeds": { - "c1": 0.31206456533973587, - "c2": 0.3148847984529181, - "c3": 0.345719884264003, - "c4": 0.3475943040457074, - "c5": 0.32445498992862054, - "c6": 0.31828783767047014, - "c7": 0.3406675878500167 + "offsets": { + "c1": 0.6148867313915858, + "c2": 0.5270457697642168, + "c3": 0.43920480813684687, + "c4": 0.35136384650947794, + "c5": 0.26352288488210784, + "c6": 0.17568192325473897, + "c7": 0.08784096162737003 }, "rgb": [238, 201, 159] }, @@ -255831,23 +255831,23 @@ "year": 1776, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": -5.884905004602784, - "c2": 12.590199112020173, - "c3": 11.373232102142332, - "c4": -0.9893349655661332, - "c5": 7.633735284603176, - "c6": 12.90871238024003, - "c7": -16.370588444326177 + "points": { + "c1": -6.517613961604697, + "c2": -7.651724456613907, + "c3": 3.157359252417578, + "c4": 5.520797488385874, + "c5": 11.901025090894013, + "c6": -1.8888085039847518, + "c7": -4.272301501252134 }, - "vertexSeeds": { - "c1": 6.682302138321265, - "c2": 6.384633610970681, - "c3": 6.4657481196010025, - "c4": 6.643979663420956, - "c5": 6.726367918804643, - "c6": 6.606263010848003, - "c7": 6.913350058508365 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -255858,23 +255858,23 @@ "year": 1776, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -9.721217484595044, - "c2": -30.587410767364023, - "c3": 27.79177339244405, - "c4": 15.13103659479232, - "c5": -28.18412286774907, - "c6": 31.636325508189785, - "c7": -25.972884794311803 + "points": { + "c1": -18.010777866914918, + "c2": -11.676105886670932, + "c3": -11.52078341300409, + "c4": -22.877626120803605, + "c5": -8.292575703256887, + "c6": 11.238263167558344, + "c7": 14.431842721336707 }, - "vertexSeeds": { - "c1": 6.783361777768576, - "c2": 6.688448004572767, - "c3": 6.678892296868776, - "c4": 6.957958853539339, - "c5": 6.520154505759241, - "c6": 6.249301219362753, - "c7": 6.5169162642238625 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [238, 201, 159] }, @@ -255885,23 +255885,23 @@ "year": 1776, "resistanceReported": false, "duration": 6739200, - "curveSeeds": { - "c1": -10.334383980993792, - "c2": 10.374979437514728, - "c3": -7.939210786425589, - "c4": 15.16357563569122, - "c5": -12.095410268541936, - "c6": 13.998977398988949, - "c7": -4.763591738472547 + "points": { + "c1": -13.258147385357365, + "c2": 10.223718234285638, + "c3": 2.2450158575878554, + "c4": -3.140457362298889, + "c5": 16.421882815945164, + "c6": -5.2281820027974995, + "c7": 12.329121657018526 }, - "vertexSeeds": { - "c1": 1.828394751182216, - "c2": 2.109700941434748, - "c3": 1.990778073916589, - "c4": 2.2197404823288682, - "c5": 2.187874108935956, - "c6": 1.8887637289490147, - "c7": 1.8302361828685747 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [77, 76, 132] }, @@ -255912,23 +255912,23 @@ "year": 1776, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -14.125213444946201, - "c2": -28.201063955506694, - "c3": 9.78218604513173, - "c4": -31.677222179512658, - "c5": -14.103847247214308, - "c6": -28.928740239878106, - "c7": 23.93196193542755 + "points": { + "c1": -7.26859549490883, + "c2": 18.657405779505957, + "c3": -29.51033888296309, + "c4": -7.790978013348948, + "c5": -13.207972976369039, + "c6": -6.697843164197149, + "c7": 27.40541795700529 }, - "vertexSeeds": { - "c1": 8.277061847540931, - "c2": 8.921081789917007, - "c3": 7.623266457239948, - "c4": 8.66853857851656, - "c5": 8.364838735450043, - "c6": 8.695843610534185, - "c7": 8.65016399708624 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.78779472954231, + "c3": 10.656495607951918, + "c4": 8.525196486361537, + "c5": 6.3938973647711475, + "c6": 4.2625982431807685, + "c7": 2.1312991215903905 }, "rgb": [238, 201, 159] }, @@ -255939,23 +255939,23 @@ "year": 1777, "resistanceReported": true, "duration": 47692800, - "curveSeeds": { - "c1": 21.266922207859118, - "c2": 7.360981627092833, - "c3": 9.20502654945873, - "c4": 49.65240007025272, - "c5": -54.16802798713495, - "c6": -25.860780980945243, - "c7": 3.3604265838003116 + "points": { + "c1": -13.25365311129891, + "c2": 32.98779749417865, + "c3": -13.986800569961424, + "c4": -56.317424942347984, + "c5": -19.8577524724898, + "c6": 5.412626766924149, + "c7": -12.786505938719174 }, - "vertexSeeds": { - "c1": 4.995008262546797, - "c2": 5.352403615919382, - "c3": 5.257171477951886, - "c4": 4.81042432738525, - "c5": 4.876061040638233, - "c6": 4.678955117122816, - "c7": 5.22317314032877 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221916, + "c3": 6.449375866851599, + "c4": 5.159500693481282, + "c5": 3.8696255201109513, + "c6": 2.5797503467406346, + "c7": 1.2898751733703173 }, "rgb": [58, 15, 49] }, @@ -255966,23 +255966,23 @@ "year": 1776, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": -2.245121402749305, - "c2": 15.4860887045852, - "c3": 10.024391418486111, - "c4": 12.305314237619811, - "c5": 16.1579455285375, - "c6": 5.515394436669805, - "c7": 5.496896703060223 + "points": { + "c1": 6.340111407406788, + "c2": -13.99457450135991, + "c3": 4.182177076520535, + "c4": 16.07401937129777, + "c5": -10.522196982253512, + "c6": 6.186358836511214, + "c7": -16.25601646105931 }, - "vertexSeeds": { - "c1": 5.7024454926693515, - "c2": 5.930915905922182, - "c3": 5.534533885645189, - "c4": 5.3296681037163784, - "c5": 5.275944668448184, - "c6": 5.944619159586585, - "c7": 5.735207775654598 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [86, 146, 138] }, @@ -255993,23 +255993,23 @@ "year": 1776, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 42.66495209689222, - "c2": -34.98839279293324, - "c3": 18.516146216362046, - "c4": 38.85759295190036, - "c5": 41.32971036182451, - "c6": 38.500278931320864, - "c7": -34.96373048341418 + "points": { + "c1": 34.66728533961508, + "c2": 32.47305785318585, + "c3": -39.749108657348074, + "c4": -11.66643167118474, + "c5": -13.713154030569491, + "c6": 1.9085812241310762, + "c7": -26.06367235574977 }, - "vertexSeeds": { - "c1": 8.356120375013305, - "c2": 8.551362339872302, - "c3": 8.681035401602045, - "c4": 8.716120097937447, - "c5": 8.39561283887168, - "c6": 8.383974835164484, - "c7": 8.36810963430224 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099843, + "c3": 10.402219140083222, + "c4": 8.321775312066563, + "c5": 6.241331484049941, + "c6": 4.160887656033282, + "c7": 2.0804438280166218 }, "rgb": [58, 15, 49] }, @@ -256020,23 +256020,23 @@ "year": 1776, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 21.847953170114113, - "c2": -22.91065874845738, - "c3": 10.606661954549647, - "c4": 29.884042694924933, - "c5": -9.005355771866522, - "c6": 2.687304127360246, - "c7": -6.205711293576488 + "points": { + "c1": 20.91077708216568, + "c2": -20.259555461943663, + "c3": 12.353834803852003, + "c4": 1.6693825527737474, + "c5": -16.848020268651354, + "c6": -9.785007458502648, + "c7": -19.532607570488324 }, - "vertexSeeds": { - "c1": 1.5717084553653562, - "c2": 1.5507425191929467, - "c3": 1.5575481494532353, - "c4": 1.5818453276609659, - "c5": 1.569436152417524, - "c6": 1.5419598406608592, - "c7": 1.6048745475624755 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499305, + "c3": 2.01109570041609, + "c4": 1.6088765603328714, + "c5": 1.2066574202496525, + "c6": 0.8044382801664336, + "c7": 0.40221914008321885 }, "rgb": [58, 15, 49] }, @@ -256047,23 +256047,23 @@ "year": 1776, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -8.49522817528731, - "c2": 24.628950169091254, - "c3": 21.77878165009335, - "c4": 15.122245864862222, - "c5": -20.723717119182858, - "c6": 4.867689122810383, - "c7": -27.743217516751137 + "points": { + "c1": 21.867456376158692, + "c2": 14.06845567684227, + "c3": 20.075085273281317, + "c4": 13.352666001901227, + "c5": 10.32463074607648, + "c6": -35.46571789661141, + "c7": -24.703315793282457 }, - "vertexSeeds": { - "c1": 4.676286323539559, - "c2": 5.432232534285136, - "c3": 4.458386888926493, - "c4": 4.784233210507472, - "c5": 4.983049705517948, - "c6": 4.817956593871651, - "c7": 5.033748064308239 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785017, + "c3": 6.7730004623208515, + "c4": 5.418400369856678, + "c5": 4.063800277392509, + "c6": 2.709200184928339, + "c7": 1.3546000924641695 }, "rgb": [77, 76, 132] }, @@ -256074,23 +256074,23 @@ "year": 1776, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": 8.355618461376626, - "c2": 11.772885486322597, - "c3": -11.08216990185517, - "c4": 4.956372225438535, - "c5": -10.051436085642889, - "c6": 0.31872190676927303, - "c7": -11.122711594246951 + "points": { + "c1": -2.550203845787685, + "c2": 8.07173792621482, + "c3": 15.326639768094378, + "c4": -0.2572176764076346, + "c5": 17.55048847655007, + "c6": 16.343535805264974, + "c7": 11.90982297523426 }, - "vertexSeeds": { - "c1": 1.5094930521247285, - "c2": 1.496548323486833, - "c3": 1.5092885349745946, - "c4": 1.5072356216086096, - "c5": 1.507643855745306, - "c6": 1.5155337897130825, - "c7": 1.511238356371594 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.191400832177542, + "c3": 1.8261673601479271, + "c4": 1.460933888118349, + "c5": 1.095700416088771, + "c6": 0.7304669440591564, + "c7": 0.3652334720295782 }, "rgb": [238, 201, 159] }, @@ -256101,23 +256101,23 @@ "year": 1778, "resistanceReported": false, "duration": 71452800, - "curveSeeds": { - "c1": 40.80596950693912, - "c2": 83.89627838335853, - "c3": -11.155283866931981, - "c4": -47.40952097504787, - "c5": -59.694109958319444, - "c6": 71.58099861877194, - "c7": 73.95382041341365 + "points": { + "c1": -32.26430542742837, + "c2": 20.7690960842682, + "c3": 26.731903575486086, + "c4": -57.9078666649246, + "c5": 28.695591817037155, + "c6": -54.18816980011521, + "c7": 83.97249907509449 }, - "vertexSeeds": { - "c1": 10.725388601036268, - "c2": 10.725388601036268, - "c3": 10.725388601036268, - "c4": 10.725388601036268, - "c5": 10.725388601036268, - "c6": 10.725388601036268, - "c7": 10.725388601036268 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -256128,23 +256128,23 @@ "year": 1776, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -19.713109020001227, - "c2": 29.98955103853126, - "c3": -40.72326064354615, - "c4": -25.46657116275072, - "c5": 31.296424236249536, - "c6": -30.823058092806555, - "c7": 21.856879683757697 + "points": { + "c1": -11.044496788247386, + "c2": -28.057280876503622, + "c3": 14.763679057176539, + "c4": -39.23777622393694, + "c5": 42.597726640626234, + "c6": 45.334145688826766, + "c7": 13.740644713775168 }, - "vertexSeeds": { - "c1": 6.162735766367807, - "c2": 6.290962583856784, - "c3": 6.13114905276901, - "c4": 5.837542679380661, - "c5": 5.896016387006763, - "c6": 5.89927564724269, - "c7": 6.358720116424884 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [58, 15, 49] }, @@ -256155,23 +256155,23 @@ "year": 1776, "resistanceReported": false, "duration": 5702400, - "curveSeeds": { - "c1": -7.923553363859181, - "c2": -1.616211501973634, - "c3": -9.348855218749359, - "c4": 12.62083346988571, - "c5": -9.794942098939504, - "c6": -7.345640376087568, - "c7": 1.7970405306650434 + "points": { + "c1": -8.665851912945918, + "c2": 2.3571250854065973, + "c3": 11.940573919104235, + "c4": 0.5008161842218577, + "c5": -17.288383464890263, + "c6": -13.49812023887035, + "c7": -10.520646078075423 }, - "vertexSeeds": { - "c1": 3.924895446244892, - "c2": 4.021286070040747, - "c3": 3.8896690990979637, - "c4": 3.9669621852713934, - "c5": 3.9798530641752548, - "c6": 3.8137331951231417, - "c7": 4.001295545133559 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [58, 15, 49] }, @@ -256182,23 +256182,23 @@ "year": 1776, "resistanceReported": false, "duration": 5529600, - "curveSeeds": { - "c1": 9.001619405312322, - "c2": 9.865711483778409, - "c3": 12.8349500710492, - "c4": 12.341326944552971, - "c5": -2.8983525874762677, - "c6": -8.60779616400125, - "c7": 6.5322555271436755 + "points": { + "c1": 8.386894015618712, + "c2": -11.913194674333234, + "c3": 17.86253472527785, + "c4": 14.087488752984218, + "c5": 8.254774208522253, + "c6": -6.332359320047383, + "c7": 15.44847064637747 }, - "vertexSeeds": { - "c1": 6.938585505049769, - "c2": 6.545557983229542, - "c3": 6.618679799775107, - "c4": 6.577062093696501, - "c5": 6.85019856524721, - "c6": 6.778714225871358, - "c7": 6.789790037484354 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -256209,23 +256209,23 @@ "year": 1776, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 27.94792175002089, - "c2": -14.731462329877882, - "c3": 1.1074774561176568, - "c4": -11.481259207373835, - "c5": 6.312443239293124, - "c6": 27.53863094450596, - "c7": 3.4804531985418663 + "points": { + "c1": 17.590641952834424, + "c2": -14.02098535412641, + "c3": 24.298793034556375, + "c4": 32.421124225137575, + "c5": 4.026685259757045, + "c6": 19.578515691768537, + "c7": -26.120777885472087 }, - "vertexSeeds": { - "c1": 3.8524613473886014, - "c2": 3.791567477672633, - "c3": 3.9804469704189405, - "c4": 3.853542385509583, - "c5": 3.8661538318347826, - "c6": 3.806080570144157, - "c7": 4.045078119546593 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [58, 15, 49] }, @@ -256236,23 +256236,23 @@ "year": 1776, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -36.31716208409792, - "c2": 37.10017422868965, - "c3": -14.069404237531295, - "c4": 10.334851838842475, - "c5": 9.644529529960202, - "c6": 32.90008951751764, - "c7": 26.370694220224678 + "points": { + "c1": -25.435935341049372, + "c2": -40.89293153033451, + "c3": 11.557867222285104, + "c4": -12.465021801196912, + "c5": -39.101840226466834, + "c6": 16.055238200966087, + "c7": -18.06013893126004 }, - "vertexSeeds": { - "c1": 3.9937999139305544, - "c2": 4.639136461319618, - "c3": 4.0414096555690335, - "c4": 4.143396977944461, - "c5": 4.257988141602664, - "c6": 4.508164935303163, - "c7": 3.9928838177413097 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653261, + "c3": 5.547850208044381, + "c4": 4.438280166435507, + "c5": 3.3287101248266278, + "c6": 2.2191400832177535, + "c7": 1.1095700416088743 }, "rgb": [77, 76, 132] }, @@ -256263,23 +256263,23 @@ "year": 1776, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -31.650668015132254, - "c2": -10.606206615159842, - "c3": -23.024975807494982, - "c4": 28.952088160727545, - "c5": -6.053387806677893, - "c6": 31.32284481038553, - "c7": 14.915079255129715 + "points": { + "c1": 10.486128360840134, + "c2": -32.0755441938117, + "c3": 25.52658193314329, + "c4": 33.70609932216887, + "c5": -30.235918748187803, + "c6": 25.534426959792242, + "c7": -17.17210820580402 }, - "vertexSeeds": { - "c1": 6.535300989708684, - "c2": 6.940570769424455, - "c3": 6.451029255669992, - "c4": 6.560394559642364, - "c5": 6.866693532818484, - "c6": 6.876755194199445, - "c7": 6.7759022197939585 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -256290,23 +256290,23 @@ "year": 1776, "resistanceReported": false, "duration": 4924800, - "curveSeeds": { - "c1": 6.540339458209388, - "c2": 13.524792960855798, - "c3": 3.237256201550668, - "c4": 2.256922614134357, - "c5": 13.845132159138437, - "c6": -1.2073708218115904, - "c7": 8.891279114691304 + "points": { + "c1": 16.286970627159196, + "c2": -6.21492426930317, + "c3": -6.092354565444786, + "c4": 4.75036579499049, + "c5": 12.258271572067802, + "c6": 17.05192399210711, + "c7": -5.142402790534172 }, - "vertexSeeds": { - "c1": 4.057365943301148, - "c2": 3.9618427702318795, - "c3": 3.96456367322158, - "c4": 3.8344653207451262, - "c5": 3.9173368310702834, - "c6": 3.869850885845196, - "c7": 4.108725683884937 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [238, 201, 159] }, @@ -256317,23 +256317,23 @@ "year": 1776, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 2.2259954823466614, - "c2": 16.907763259269338, - "c3": 30.62063969704274, - "c4": -29.430108971934068, - "c5": 4.919835826414122, - "c6": 23.811681606022113, - "c7": 32.021200404138604 + "points": { + "c1": -21.00429121280376, + "c2": 21.118182491539294, + "c3": -32.36090496144121, + "c4": 18.815252572282525, + "c5": -2.159693952985279, + "c6": -10.26852353781841, + "c7": -16.364029575973444 }, - "vertexSeeds": { - "c1": 3.0222636633616244, - "c2": 3.1153454658210573, - "c3": 3.1427135977957468, - "c4": 3.0385566091671845, - "c5": 2.8830785412990543, - "c6": 3.0236272870482743, - "c7": 3.1050495580917246 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757285, + "c3": 3.883495145631067, + "c4": 3.106796116504856, + "c5": 2.330097087378639, + "c6": 1.553398058252428, + "c7": 0.7766990291262175 }, "rgb": [77, 76, 132] }, @@ -256344,23 +256344,23 @@ "year": 1776, "resistanceReported": false, "duration": 4752000, - "curveSeeds": { - "c1": 9.705203288188098, - "c2": 10.916982373951996, - "c3": 4.2603517415475025, - "c4": -2.299924471055853, - "c5": 12.340754964078688, - "c6": 5.604556835278903, - "c7": -7.086550373420172 + "points": { + "c1": 5.545924870950589, + "c2": 11.605845813460373, + "c3": 9.334072566325332, + "c4": 3.0165129489674776, + "c5": 6.499662417716536, + "c6": 0.2976556551743741, + "c7": -14.66885765081115 }, - "vertexSeeds": { - "c1": 6.436105336423209, - "c2": 6.8717735666149995, - "c3": 6.429061919832517, - "c4": 6.955461095536612, - "c5": 6.560534863802065, - "c6": 6.4717681227013335, - "c7": 6.74239769354844 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -256371,23 +256371,23 @@ "year": 1776, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -25.312623829949164, - "c2": 9.496517903371597, - "c3": -31.70974386021285, - "c4": -5.1247458256661425, - "c5": -20.81389938356766, - "c6": -30.059662245735588, - "c7": -6.782655518054948 + "points": { + "c1": 20.077702976923533, + "c2": 15.59084557529416, + "c3": 33.03711993782416, + "c4": 7.161233366862213, + "c5": 1.4381164942732099, + "c6": -7.051095308541637, + "c7": -18.39071824097542 }, - "vertexSeeds": { - "c1": 2.880053819527256, - "c2": 2.71248655027, - "c3": 2.7226744177229736, - "c4": 2.821756267990072, - "c5": 2.712087773558583, - "c6": 2.707048305591314, - "c7": 2.793535450930284 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113727, + "c3": 3.5136384650947807, + "c4": 2.810910772075822, + "c5": 2.1081830790568636, + "c6": 1.405455386037917, + "c7": 0.7027276930189585 }, "rgb": [77, 76, 132] }, @@ -256398,23 +256398,23 @@ "year": 1776, "resistanceReported": false, "duration": 4579200, - "curveSeeds": { - "c1": 6.917633587830537, - "c2": 3.714512457828711, - "c3": -5.838724008266098, - "c4": 13.648378256189897, - "c5": -1.7633711705096111, - "c6": -0.04519874363718834, - "c7": 12.7412037744107 + "points": { + "c1": -3.0624744986825423, + "c2": 10.841139503248115, + "c3": -6.6677518403557965, + "c4": -13.401577336143554, + "c5": -7.2027668602596275, + "c6": -7.610753250899572, + "c7": 14.707002539121099 }, - "vertexSeeds": { - "c1": 2.0739690561648922, - "c2": 2.0786420155951957, - "c3": 2.137374087184082, - "c4": 2.0752009453214164, - "c5": 2.1440304968294046, - "c6": 2.1389244786392916, - "c7": 2.0563734209180984 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185853, + "c3": 2.6352288488210855, + "c4": 2.1081830790568645, + "c5": 1.58113730929265, + "c6": 1.0540915395284354, + "c7": 0.5270457697642145 }, "rgb": [222, 0, 59] }, @@ -256425,23 +256425,23 @@ "year": 1776, "resistanceReported": false, "duration": 4406400, - "curveSeeds": { - "c1": 1.4086676764496993, - "c2": 6.904517552026526, - "c3": -4.0932969504523715, - "c4": 7.000576549934571, - "c5": -6.295677599435013, - "c6": 9.879660026140378, - "c7": -6.594554848659751 + "points": { + "c1": -10.344385086110687, + "c2": 9.28031536241108, + "c3": -11.95429385333861, + "c4": 15.835618803279004, + "c5": 10.812053245602211, + "c6": -8.953728588727838, + "c7": 9.177439473573372 }, - "vertexSeeds": { - "c1": 3.95305123880611, - "c2": 3.8233908781246657, - "c3": 3.7841939972489596, - "c4": 3.789640642545053, - "c5": 3.7956347836059363, - "c6": 4.037784157900926, - "c7": 3.8238499820670446 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -256452,23 +256452,23 @@ "year": 1776, "resistanceReported": false, "duration": 4233600, - "curveSeeds": { - "c1": -7.744918997597919, - "c2": -10.92881618960981, - "c3": -7.253776474003909, - "c4": -5.98032302325338, - "c5": 4.100572449693406, - "c6": 11.29489613539279, - "c7": -5.5851404230997375 + "points": { + "c1": 0.17394839244132498, + "c2": 2.8302303128987703, + "c3": 0.9963168793097203, + "c4": 14.422330599204997, + "c5": -9.411954864282166, + "c6": -12.154743945928114, + "c7": -5.342345269581983 }, - "vertexSeeds": { - "c1": 3.894687432704902, - "c2": 3.8236428486264065, - "c3": 3.9306957077035434, - "c4": 3.8233960468921895, - "c5": 3.7977327674434793, - "c6": 3.839888800317251, - "c7": 3.8889615605747503 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -256479,23 +256479,23 @@ "year": 1776, "resistanceReported": true, "duration": 3888000, - "curveSeeds": { - "c1": 7.56709702592048, - "c2": 3.6449579788603206, - "c3": -0.6016062013556915, - "c4": -11.293011035418058, - "c5": 0.19430845010689524, - "c6": -10.654741272849478, - "c7": -3.264890278654276 + "points": { + "c1": 10.456221155452475, + "c2": -13.857605119110575, + "c3": 4.439395836502875, + "c4": 8.623993398894253, + "c5": -15.147751138191504, + "c6": -14.842766893483828, + "c7": 7.522295502205054 }, - "vertexSeeds": { - "c1": 3.94361713884282, - "c2": 3.8648669264571938, - "c3": 3.9473696374647362, - "c4": 3.9336350977818784, - "c5": 4.130641344292359, - "c6": 4.043957474714029, - "c7": 4.119736026511718 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607493, + "c3": 4.946833102172903, + "c4": 3.9574664817383245, + "c5": 2.9680998613037466, + "c6": 1.9787332408691685, + "c7": 0.989366620434578 }, "rgb": [77, 76, 132] }, @@ -256506,23 +256506,23 @@ "year": 1776, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -24.521317525562775, - "c2": 21.465679303981986, - "c3": 1.445126794348198, - "c4": 24.66674787426716, - "c5": 35.75830527440158, - "c6": -4.067654945238118, - "c7": 22.72197022894941 + "points": { + "c1": 31.36163138625588, + "c2": 27.324090761781505, + "c3": 16.507375429394358, + "c4": 1.046836187981178, + "c5": 8.901643801327367, + "c6": 32.35753705558662, + "c7": -35.30329685201387 }, - "vertexSeeds": { - "c1": 9.430044889395228, - "c2": 9.858252781783957, - "c3": 9.267608091689873, - "c4": 9.905309652209397, - "c5": 9.422182078246614, - "c6": 10.070243985502083, - "c7": 10.04109777985782 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995856, + "c3": 12.066574202496525, + "c4": 9.653259361997238, + "c5": 7.239944521497928, + "c6": 4.826629680998619, + "c7": 2.4133148404993094 }, "rgb": [238, 201, 159] }, @@ -256533,23 +256533,23 @@ "year": 1776, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 34.53094159127285, - "c2": -21.595734529123014, - "c3": 24.295380916185685, - "c4": 39.249112380847976, - "c5": -23.45775034500255, - "c6": -34.991809746824885, - "c7": 28.17676797441335 + "points": { + "c1": -19.611499370962342, + "c2": -17.517029219471784, + "c3": 1.2876971760948237, + "c4": 19.525569635343558, + "c5": 37.778140001397034, + "c6": -1.9457966007969532, + "c7": 31.606315373953606 }, - "vertexSeeds": { - "c1": 6.935560067490453, - "c2": 6.329238586620746, - "c3": 6.61562835318153, - "c4": 6.419436596361099, - "c5": 6.56727612040849, - "c6": 6.909637822959333, - "c7": 6.9223862448998235 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [86, 146, 138] }, @@ -256560,23 +256560,23 @@ "year": 1776, "resistanceReported": false, "duration": 3283200, - "curveSeeds": { - "c1": 3.248993197481834, - "c2": 13.036109306899569, - "c3": 13.407049661781247, - "c4": -10.712305955270281, - "c5": -0.41036001842804204, - "c6": -1.1322981631216926, - "c7": -1.412306796702925 + "points": { + "c1": -10.873735476400878, + "c2": 15.279697983111461, + "c3": -0.01440386180054709, + "c4": 1.7967552668136548, + "c5": -2.300654742777539, + "c6": -8.154072084744495, + "c7": 15.035459958660542 }, - "vertexSeeds": { - "c1": 6.021581638698223, - "c2": 6.212066610022379, - "c3": 6.026743712632354, - "c4": 5.875303100463458, - "c5": 6.09210860756399, - "c6": 5.818473752229026, - "c7": 5.860720229072969 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [238, 201, 159] }, @@ -256587,23 +256587,23 @@ "year": 1776, "resistanceReported": false, "duration": 3196800, - "curveSeeds": { - "c1": -0.023235870486560728, - "c2": -3.7313551767159474, - "c3": -12.37357648981059, - "c4": 12.685911771914997, - "c5": -8.790149614153318, - "c6": -5.713934825136775, - "c7": -0.2979177293711679 + "points": { + "c1": 15.228607618623, + "c2": -9.383147005842552, + "c3": -9.33824554846108, + "c4": -12.682962840966685, + "c5": 1.5052823000745992, + "c6": -12.61342814331235, + "c7": 8.003987064335108 }, - "vertexSeeds": { - "c1": 3.1001489007282186, - "c2": 2.9172143148399585, - "c3": 3.1382690025028404, - "c4": 3.087418239741068, - "c5": 3.128908432548663, - "c6": 2.9920581487109508, - "c7": 3.1159383427417824 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -256614,23 +256614,23 @@ "year": 1776, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -41.09581890189202, - "c2": 37.96877351171298, - "c3": -30.536560735096998, - "c4": 37.60335326447402, - "c5": 42.050311629102, - "c6": -42.69564536375487, - "c7": 37.835280567287384 + "points": { + "c1": 8.811158272781157, + "c2": 8.82078429397712, + "c3": -31.083773019129023, + "c4": -7.9368050101475305, + "c5": -17.228717679597068, + "c6": -43.20763011582342, + "c7": 16.122245856206305 }, - "vertexSeeds": { - "c1": 6.093385580424702, - "c2": 6.434783582057951, - "c3": 6.442373902025294, - "c4": 6.2411222398842074, - "c5": 6.429587442264084, - "c6": 6.6714225535257, - "c7": 6.330735074455469 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876556, + "c3": 7.97503467406381, + "c4": 6.3800277392510445, + "c5": 4.785020804438278, + "c6": 3.190013869625532, + "c7": 1.595006934812766 }, "rgb": [77, 76, 132] }, @@ -256641,23 +256641,23 @@ "year": 1776, "resistanceReported": false, "duration": 2332800, - "curveSeeds": { - "c1": 3.8263919705119296, - "c2": -4.000932477239807, - "c3": 11.511115817169069, - "c4": -3.6892237556355862, - "c5": 7.567814761074745, - "c6": 2.9129036740255057, - "c7": -6.602013050170545 + "points": { + "c1": 10.06351290031998, + "c2": -3.406562311391541, + "c3": 11.33343567231418, + "c4": -4.4198197778863, + "c5": -11.52897824167927, + "c6": -5.641001516584639, + "c7": 9.120258696323395 }, - "vertexSeeds": { - "c1": 3.834876348012789, - "c2": 3.8120724785388065, - "c3": 3.825868285034556, - "c4": 3.854682872405318, - "c5": 3.69619658263056, - "c6": 3.64478807614695, - "c7": 3.8245243843534387 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.57558945908461, + "c3": 4.646324549237169, + "c4": 3.71705963938974, + "c5": 2.7877947295423, + "c6": 1.85852981969487, + "c7": 0.9292649098474405 }, "rgb": [222, 0, 59] }, @@ -256668,23 +256668,23 @@ "year": 1776, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -13.942614933543542, - "c2": 21.602716677146162, - "c3": 15.540489278730199, - "c4": -11.837631965938908, - "c5": -24.00011364299124, - "c6": 0.7689908493216606, - "c7": 13.910619430565724 + "points": { + "c1": 27.789474395370533, + "c2": -30.100270854933996, + "c3": -6.795189675555193, + "c4": 33.283926210014044, + "c5": 31.49054395078116, + "c6": 26.274063886498467, + "c7": -21.540853141151224 }, - "vertexSeeds": { - "c1": 4.506785191680269, - "c2": 4.488864704335258, - "c3": 4.40372968970517, - "c4": 4.283115808372819, - "c5": 4.411734661030481, - "c6": 4.376683594360256, - "c7": 4.412708340552442 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411928, + "c3": 5.4091539528432735, + "c4": 4.327323162274618, + "c5": 3.245492371705964, + "c6": 2.163661581137309, + "c7": 1.0818307905686546 }, "rgb": [58, 15, 49] }, @@ -256695,23 +256695,23 @@ "year": 1777, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": -2.799101699323991, - "c2": -47.089538225919284, - "c3": 51.81752044646352, - "c4": -12.608283686528097, - "c5": -53.33958272303744, - "c6": -50.37608862772294, - "c7": -16.698037595232258 + "points": { + "c1": 34.79010635645918, + "c2": -6.040987477776746, + "c3": 29.97403460656065, + "c4": -40.373423232581004, + "c5": 40.58377662597424, + "c6": 42.595749883162085, + "c7": 43.31120769568189 }, - "vertexSeeds": { - "c1": 6.6290798884424795, - "c2": 5.98416391354416, - "c3": 5.503694527753408, - "c4": 5.4451615464037495, - "c5": 7.383183286474004, - "c6": 5.952979665953923, - "c7": 6.554951532270149 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [77, 76, 132] }, @@ -256722,23 +256722,23 @@ "year": 1777, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": -15.590647687197205, - "c2": -21.771434630458756, - "c3": -1.7664804440298596, - "c4": 5.413814549697285, - "c5": -46.123791095032686, - "c6": 51.023515660320584, - "c7": 7.225483784912285 + "points": { + "c1": -12.621199400167264, + "c2": -8.122362206905159, + "c3": 30.733937908510327, + "c4": -3.518728328914058, + "c5": 24.060493857614375, + "c6": -18.249988743617862, + "c7": -34.47819533221572 }, - "vertexSeeds": { - "c1": 5.49120868863719, - "c2": 5.526558120461615, - "c3": 5.558755585105809, - "c4": 5.571522181421937, - "c5": 5.427096629489986, - "c6": 5.289706931480186, - "c7": 5.57418374575598 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.18307905686547, + "c3": 6.819232547387878, + "c4": 5.455386037910306, + "c5": 4.091539528432735, + "c6": 2.727693018955164, + "c7": 1.3638465094775711 }, "rgb": [238, 201, 159] }, @@ -256749,23 +256749,23 @@ "year": 1776, "resistanceReported": false, "duration": 1900800, - "curveSeeds": { - "c1": 10.026765185683015, - "c2": -3.2274404666240297, - "c3": -7.309716607950812, - "c4": 7.179632544258457, - "c5": 1.2991052244043715, - "c6": -4.3801217136586805, - "c7": 10.106096916309674 + "points": { + "c1": -13.839091775542261, + "c2": -6.2369517770813845, + "c3": 2.6471565557180554, + "c4": 6.243318896232513, + "c5": 11.817079203351462, + "c6": -13.443597089172933, + "c7": -6.263991163775954 }, - "vertexSeeds": { - "c1": 3.942383377136274, - "c2": 4.056139174431432, - "c3": 4.051777806969564, - "c4": 3.913869421546604, - "c5": 3.7891002537115095, - "c6": 3.9151878887513165, - "c7": 3.82853115978716 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [58, 15, 49] }, @@ -256776,23 +256776,23 @@ "year": 1776, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 18.50154800366917, - "c2": 5.692122937571483, - "c3": 26.07575318921677, - "c4": 27.645475079146607, - "c5": 26.922759204942935, - "c6": 22.48136894502815, - "c7": 34.66656650604891 + "points": { + "c1": 21.07097908786291, + "c2": -38.8401928302582, + "c3": -36.21392388114968, + "c4": 33.50357591012275, + "c5": 6.451863677402898, + "c6": 33.645634312564994, + "c7": 10.320763526867339 }, - "vertexSeeds": { - "c1": 5.815158938568178, - "c2": 5.936972408866074, - "c3": 5.998237951737419, - "c4": 5.80975639425258, - "c5": 5.639664770259777, - "c6": 5.749560939269624, - "c7": 5.841422360280728 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629677, + "c3": 7.258437355524728, + "c4": 5.8067498844198004, + "c5": 4.35506241331485, + "c6": 2.9033749422099002, + "c7": 1.4516874711049501 }, "rgb": [77, 76, 132] }, @@ -256803,23 +256803,23 @@ "year": 1777, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 34.41286658674119, - "c2": -30.643228600455387, - "c3": 8.773548629375625, - "c4": -37.02863229033896, - "c5": 44.03120637953671, - "c6": -5.402066372718906, - "c7": -0.24698424924108764 + "points": { + "c1": -40.58125037633256, + "c2": 10.50559007010608, + "c3": 3.381506864068321, + "c4": -39.43237470495286, + "c5": 6.816193041479217, + "c6": 11.64447175238783, + "c7": -45.713428259626205 }, - "vertexSeeds": { - "c1": 5.254433516668489, - "c2": 5.273766429410269, - "c3": 5.332546067866905, - "c4": 5.390027297001784, - "c5": 5.003175788718778, - "c6": 5.3231404770168425, - "c7": 5.132852872549524 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342573, + "c3": 6.518723994452158, + "c4": 5.214979195561722, + "c5": 3.9112343966712864, + "c6": 2.6074895977808503, + "c7": 1.303744798890436 }, "rgb": [77, 76, 132] }, @@ -256830,23 +256830,23 @@ "year": 1776, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -35.708568647013365, - "c2": -21.802333973589406, - "c3": -39.42028559032969, - "c4": -3.433080519360182, - "c5": 43.972707426603264, - "c6": 13.474824658015798, - "c7": -22.405283988230515 + "points": { + "c1": 39.84452414755644, + "c2": 31.077381385523125, + "c3": -11.70006748946227, + "c4": 46.758925615896175, + "c5": -10.242188065853341, + "c6": 26.815219976776106, + "c7": 13.088459944780979 }, - "vertexSeeds": { - "c1": 8.196127085053686, - "c2": 8.282047776994311, - "c3": 7.69472205605453, - "c4": 8.13365317565053, - "c5": 8.191601201110114, - "c6": 7.828042708725286, - "c7": 7.5619527765367325 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255205, + "c3": 9.916782246879324, + "c4": 7.933425797503463, + "c5": 5.950069348127602, + "c6": 3.966712898751742, + "c7": 1.9833564493758606 }, "rgb": [222, 0, 59] }, @@ -256857,23 +256857,23 @@ "year": 1776, "resistanceReported": false, "duration": 4320000, - "curveSeeds": { - "c1": -1.1989236634176947, - "c2": -2.203952008424505, - "c3": 5.6191762036176165, - "c4": -13.66433135395897, - "c5": 10.272605474886099, - "c6": -11.298509224801641, - "c7": -13.111250541252028 + "points": { + "c1": 16.198837974357673, + "c2": -11.661591174779193, + "c3": 10.782804598661645, + "c4": 0.1633608161168496, + "c5": 8.681473854535486, + "c6": -6.012787658953943, + "c7": 14.42078859577132 }, - "vertexSeeds": { - "c1": 3.8106010971159017, - "c2": 3.833738070233674, - "c3": 3.873341586901393, - "c4": 3.870973731051215, - "c5": 3.7052666576779627, - "c6": 3.7399027097255417, - "c7": 3.974787632122569 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.7420249653259345, + "c3": 4.785020804438277, + "c4": 3.82801664355062, + "c5": 2.8710124826629717, + "c6": 1.9140083217753148, + "c7": 0.9570041608876574 }, "rgb": [86, 146, 138] }, @@ -256884,23 +256884,23 @@ "year": 1776, "resistanceReported": false, "duration": 864000, - "curveSeeds": { - "c1": -5.104338112961646, - "c2": -0.8215045342676905, - "c3": -6.438211751017638, - "c4": -3.983194060985495, - "c5": -5.8632771660711445, - "c6": -5.424873944180387, - "c7": -2.82167677773203 + "points": { + "c1": -10.623775276555007, + "c2": -1.619169258702943, + "c3": -6.727388621093983, + "c4": 7.062998392686561, + "c5": -9.319269060380615, + "c6": 12.764390034084448, + "c7": -7.433913696106541 }, - "vertexSeeds": { - "c1": 4.060549937943423, - "c2": 3.97452329703516, - "c3": 3.9427689550135905, - "c4": 3.925625270597411, - "c5": 4.039171447980395, - "c6": 4.012557042274547, - "c7": 4.0508584385141155 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446601, + "c3": 4.854368932038835, + "c4": 3.8834951456310676, + "c5": 2.9126213592233006, + "c6": 1.9417475728155338, + "c7": 0.9708737864077669 }, "rgb": [238, 201, 159] }, @@ -256911,23 +256911,23 @@ "year": 1776, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": 8.241110387853318, - "c2": -16.021987251404685, - "c3": 15.89230001770208, - "c4": -4.938682152283155, - "c5": -5.797484976916538, - "c6": -5.5996140583058285, - "c7": -15.578539840462035 + "points": { + "c1": 4.012896203413916, + "c2": -22.01011873463858, + "c3": -11.482907011971985, + "c4": 18.88317031149364, + "c5": 16.897560054078102, + "c6": -9.490487094366681, + "c7": -10.241595872141845 }, - "vertexSeeds": { - "c1": 3.8366343439758452, - "c2": 3.7551951211357486, - "c3": 3.929086963130214, - "c4": 3.850101126409873, - "c5": 3.842545054825904, - "c6": 3.774196243742806, - "c7": 3.876302285561144 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.7420249653259345, + "c3": 4.785020804438275, + "c4": 3.828016643550618, + "c5": 2.8710124826629597, + "c6": 1.9140083217753163, + "c7": 0.9570041608876582 }, "rgb": [238, 201, 159] }, @@ -256938,23 +256938,23 @@ "year": 1776, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -17.334066949243287, - "c2": -20.15038855543291, - "c3": 14.971840848311238, - "c4": -16.00162429925906, - "c5": -33.20196563588029, - "c6": -25.872789281591245, - "c7": 18.0597648746175 + "points": { + "c1": -16.038730559511297, + "c2": -21.84013259553528, + "c3": -5.1535110438117435, + "c4": 9.437917075993205, + "c5": -4.20629321769723, + "c6": 27.696254549029902, + "c7": 28.99914998023253 }, - "vertexSeeds": { - "c1": 6.193229118862097, - "c2": 6.135844165390304, - "c3": 6.075970400019069, - "c4": 6.635391621525855, - "c5": 6.358325963687294, - "c6": 6.200516568299038, - "c7": 6.015833772118725 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916783, + "c3": 7.998150716597324, + "c4": 6.398520573277862, + "c5": 4.798890429958384, + "c6": 3.199260286638922, + "c7": 1.599630143319461 }, "rgb": [222, 0, 59] }, @@ -256965,23 +256965,23 @@ "year": 1776, "resistanceReported": false, "duration": 172800, - "curveSeeds": { - "c1": -1.324122140919135, - "c2": 6.4907570067851825, - "c3": 7.05397259744141, - "c4": -0.3187265173453717, - "c5": -7.496944192819493, - "c6": -0.167353995846792, - "c7": -8.202940692164823 + "points": { + "c1": 8.018006005140416, + "c2": 7.421321360085363, + "c3": 3.2625566801641614, + "c4": 10.507663082561399, + "c5": -7.6363807181480645, + "c6": -4.517035629172402, + "c7": 5.0702795513864185 }, - "vertexSeeds": { - "c1": 2.2210390556599284, - "c2": 1.9780397274891885, - "c3": 1.8917827592624734, - "c4": 1.8019453920951345, - "c5": 2.2859138814658455, - "c6": 1.8756323571207598, - "c7": 2.11362861264441 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [58, 15, 49] }, @@ -256992,23 +256992,23 @@ "year": 1777, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": -38.28733888625005, - "c2": 36.89876668347026, - "c3": -46.44011327534697, - "c4": -24.54364381101077, - "c5": 45.09664388785579, - "c6": 27.125453262385122, - "c7": -19.26557641635437 + "points": { + "c1": -35.9294576601465, + "c2": -56.39719711361616, + "c3": -50.992269600871346, + "c4": -3.3774408141274677, + "c5": 24.726524699181027, + "c6": 33.32711298304744, + "c7": -17.680790418534876 }, - "vertexSeeds": { - "c1": 5.31377018937734, - "c2": 5.238288915541696, - "c3": 5.225317589017335, - "c4": 5.595392503238921, - "c5": 5.430193168764308, - "c6": 5.177927355068383, - "c7": 5.233090205758978 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [222, 0, 59] }, @@ -257019,23 +257019,23 @@ "year": 1777, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": 51.37427751230434, - "c2": 11.57578895349291, - "c3": 37.89439047479163, - "c4": 10.222479526396974, - "c5": -42.21605840560483, - "c6": 8.459308368228086, - "c7": 13.261111371892788 + "points": { + "c1": 34.90876254312321, + "c2": -38.84841969957711, + "c3": 36.26833823664892, + "c4": 34.07493416636124, + "c5": 36.456695143546334, + "c6": -50.1802552303282, + "c7": -25.89826672003093 }, - "vertexSeeds": { - "c1": 5.101174869184955, - "c2": 5.039901305196228, - "c3": 4.95799615673504, - "c4": 4.977039588337448, - "c5": 5.160725623911197, - "c6": 4.890700449705813, - "c7": 5.180141564702654 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [238, 201, 159] }, @@ -257046,23 +257046,23 @@ "year": 1777, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 1.805356306037389, - "c2": -37.902761268057844, - "c3": 24.851992531999485, - "c4": 19.115671744751644, - "c5": -31.853761833723773, - "c6": 7.735969037926388, - "c7": 31.612212478083435 + "points": { + "c1": 0.892600610104239, + "c2": -0.8335111486353668, + "c3": 41.84952040906634, + "c4": 16.950315649622226, + "c5": 38.57752897480883, + "c6": -1.3458382558580695, + "c7": 41.10867546595645 }, - "vertexSeeds": { - "c1": 3.775061151636368, - "c2": 3.5872481697681162, - "c3": 3.5965646196809358, - "c4": 3.6074870389032343, - "c5": 3.656658805501015, - "c6": 3.6658493893445354, - "c7": 3.7521651368449844 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044386, + "c3": 4.623208506703647, + "c4": 3.69856680536292, + "c5": 2.773925104022193, + "c6": 1.8492834026814657, + "c7": 0.9246417013407271 }, "rgb": [222, 0, 59] }, @@ -257073,23 +257073,23 @@ "year": 1777, "resistanceReported": false, "duration": 59702400, - "curveSeeds": { - "c1": -55.82659837722683, - "c2": 48.7804060858828, - "c3": -46.931222653676826, - "c4": 54.67306406462795, - "c5": 5.444294762203086, - "c6": 35.43758488293183, - "c7": -35.16910004544724 + "points": { + "c1": 24.573936881310843, + "c2": 49.544467069660826, + "c3": -23.09648966019538, + "c4": -46.76596810727661, + "c5": -31.006284890158533, + "c6": 66.19969818172795, + "c7": -14.59943013215998 }, - "vertexSeeds": { - "c1": 6.872273065283621, - "c2": 7.277805803819254, - "c3": 6.826883686597842, - "c4": 6.962305029606979, - "c5": 7.408111222839325, - "c6": 7.45858557340428, - "c7": 7.143945478557239 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -257100,23 +257100,23 @@ "year": 1778, "resistanceReported": false, "duration": 92102400, - "curveSeeds": { - "c1": -105.9731884888126, - "c2": 53.567799509549374, - "c3": -53.698400900504645, - "c4": -27.19328439341136, - "c5": -5.911583428500691, - "c6": 82.28575190915687, - "c7": 7.2266761354475335 + "points": { + "c1": -44.859199624402066, + "c2": 104.02498026980136, + "c3": 87.29489513509377, + "c4": -54.02792676125521, + "c5": -77.9665585173666, + "c6": 44.133091962965935, + "c7": 72.38169052831874 }, - "vertexSeeds": { - "c1": 4.3894234127924765, - "c2": 4.281283063882784, - "c3": 4.645901313857969, - "c4": 4.299299955537768, - "c5": 4.641653070319072, - "c6": 4.5509954913674715, - "c7": 4.437951931417358 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733705, + "c3": 5.594082293111422, + "c4": 4.475265834489139, + "c5": 3.356449375866857, + "c6": 2.237632917244565, + "c7": 1.1188164586222824 }, "rgb": [86, 146, 138] }, @@ -257127,23 +257127,23 @@ "year": 1777, "resistanceReported": false, "duration": 60220800, - "curveSeeds": { - "c1": 26.9276142615345, - "c2": 58.734300297696834, - "c3": 63.11021936679394, - "c4": 4.1767585091197645, - "c5": -1.0508413705713764, - "c6": -70.15053250830016, - "c7": 62.42801561591581 + "points": { + "c1": -30.974192514230907, + "c2": -9.332663817492303, + "c3": -23.082623306202507, + "c4": -67.15970556993128, + "c5": -18.849030817086465, + "c6": -36.10763111156529, + "c7": 34.30413388563838 }, - "vertexSeeds": { - "c1": 2.23899898942051, - "c2": 2.1561613248071487, - "c3": 2.2514927162445995, - "c4": 2.2196253819557348, - "c5": 2.146849143047373, - "c6": 2.188678907834768, - "c7": 2.225029619534769 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705961, + "c3": 2.7045769764216407, + "c4": 2.1636615811373106, + "c5": 1.6227461858529806, + "c6": 1.0818307905686508, + "c7": 0.54091539528433 }, "rgb": [238, 201, 159] }, @@ -257154,23 +257154,23 @@ "year": 1777, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": 45.601715040924084, - "c2": 5.024586661378471, - "c3": -30.130495779515375, - "c4": -37.245554959386325, - "c5": -36.05861120958389, - "c6": 9.203777967960086, - "c7": 16.43947519957316 + "points": { + "c1": 7.826715591811812, + "c2": -42.27320001891924, + "c3": 32.100621550958515, + "c4": 36.48479339360224, + "c5": -11.089813198680197, + "c6": -14.348677046587078, + "c7": 47.11669835084016 }, - "vertexSeeds": { - "c1": 1.84253112642489, - "c2": 1.8524756255313541, - "c3": 1.8091524881617327, - "c4": 1.8600403612701153, - "c5": 1.7727132402666832, - "c6": 1.8716337276994988, - "c7": 1.8020046262678548 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981971, + "c3": 2.2884882108183056, + "c4": 1.8307905686546455, + "c5": 1.3730929264909855, + "c6": 0.9153952843273255, + "c7": 0.45769764216365993 }, "rgb": [77, 76, 132] }, @@ -257181,23 +257181,23 @@ "year": 1777, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -7.31383065186818, - "c2": -32.68013226744914, - "c3": 13.064939015896577, - "c4": -40.11206516446128, - "c5": -44.42891372518152, - "c6": -9.18814806529614, - "c7": 18.056567293034988 + "points": { + "c1": 17.45746580153852, + "c2": -40.42386714754986, + "c3": -11.42825020190078, + "c4": 30.73098229980846, + "c5": -43.14407966541698, + "c6": -25.416391490089634, + "c7": 32.4427378705891 }, - "vertexSeeds": { - "c1": 4.7541677329679555, - "c2": 5.149604104737932, - "c3": 5.138093951585435, - "c4": 5.053581678545142, - "c5": 4.636376615265166, - "c6": 4.633227116456872, - "c7": 5.087650050383669 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [58, 15, 49] }, @@ -257208,23 +257208,23 @@ "year": 1777, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 15.68761194037237, - "c2": 34.03294249881489, - "c3": -22.590435386425487, - "c4": -19.120303881126933, - "c5": -18.055293350615514, - "c6": 35.313446741822304, - "c7": -4.01125737972324 + "points": { + "c1": -13.16928198492647, + "c2": 11.22886229049373, + "c3": 16.149487259807984, + "c4": 0.325877733519377, + "c5": 5.0192992517792945, + "c6": -34.81490059870791, + "c7": 7.759024513570893 }, - "vertexSeeds": { - "c1": 4.213283572232388, - "c2": 4.124375689442774, - "c3": 4.197423473591435, - "c4": 4.01334841706549, - "c5": 4.294932383227332, - "c6": 4.033640952687435, - "c7": 4.052150331721915 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [86, 146, 138] }, @@ -257235,23 +257235,23 @@ "year": 1777, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -43.003493258439924, - "c2": 33.44746741043152, - "c3": 5.67025128782695, - "c4": 30.864803562067415, - "c5": 20.331640011484318, - "c6": -22.79071162513037, - "c7": 0.8120537293658785 + "points": { + "c1": 17.530641658434135, + "c2": 42.93314839654301, + "c3": -10.069542232130097, + "c4": -42.399997126480244, + "c5": 19.611118661981088, + "c6": 6.957608065037427, + "c7": -3.383794630895295 }, - "vertexSeeds": { - "c1": 9.581513746687888, - "c2": 9.126909168075763, - "c3": 8.987229510307248, - "c4": 9.671463020543674, - "c5": 9.481834619366852, - "c6": 9.225274702841597, - "c7": 8.927940604359597 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055477, + "c6": 4.6232085067036515, + "c7": 2.3116042533518257 }, "rgb": [58, 15, 49] }, @@ -257262,23 +257262,23 @@ "year": 1777, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": 27.461727685209844, - "c2": -27.856019359857864, - "c3": -34.424643887287715, - "c4": -25.85629038077249, - "c5": 21.347874850036796, - "c6": 19.16863047599856, - "c7": 52.12527429130504 + "points": { + "c1": -54.11309463069862, + "c2": -22.89113196314114, + "c3": -46.083804913315454, + "c4": -26.066490066313563, + "c5": 31.660895510505547, + "c6": -10.690840271663319, + "c7": -4.987952975769218 }, - "vertexSeeds": { - "c1": 0.5900498742287024, - "c2": 0.5639788744568435, - "c3": 0.5658458446529305, - "c4": 0.5984845279703431, - "c5": 0.5881914913134223, - "c6": 0.6065201253962275, - "c7": 0.6099987686662565 + "offsets": { + "c1": 1.0679611650485437, + "c2": 0.9153952843273224, + "c3": 0.7628294036061037, + "c4": 0.6102635228848824, + "c5": 0.4576976421636612, + "c6": 0.3051317614424412, + "c7": 0.15256588072122126 }, "rgb": [86, 146, 138] }, @@ -257289,23 +257289,23 @@ "year": 1777, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -24.900806705922417, - "c2": -30.404611542649455, - "c3": 21.326246150974676, - "c4": -36.564384491387386, - "c5": -36.28647081828765, - "c6": 10.192283310269644, - "c7": 32.59321689013979 + "points": { + "c1": 4.781573458587985, + "c2": -28.178802475600154, + "c3": -29.95695668662493, + "c4": 4.942776256051594, + "c5": -17.79229942947308, + "c6": 5.578621809510594, + "c7": 13.260293727924612 }, - "vertexSeeds": { - "c1": 4.365882232620287, - "c2": 4.029806972527325, - "c3": 3.936349751225516, - "c4": 4.343454976125384, - "c5": 4.437134632333946, - "c6": 4.093350508841198, - "c7": 4.02541457305813 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [77, 76, 132] }, @@ -257316,23 +257316,23 @@ "year": 1776, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 12.384405578371478, - "c2": -32.109972970009444, - "c3": -36.119224153722186, - "c4": -14.210813298320922, - "c5": -18.264141438571198, - "c6": -30.868981172030438, - "c7": -36.5531340194111 + "points": { + "c1": -32.63941117658323, + "c2": -8.098875081786474, + "c3": -10.556110317995994, + "c4": -23.695646334170267, + "c5": 30.17710886728708, + "c6": -5.525552001098703, + "c7": -25.52782564071905 }, - "vertexSeeds": { - "c1": 7.087150131337318, - "c2": 7.507883195155284, - "c3": 7.762621131005271, - "c4": 7.446999190904803, - "c5": 7.352888772569805, - "c6": 7.366589255053496, - "c7": 7.635637298067389 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128979, + "c3": 9.269533055940826, + "c4": 7.415626444752653, + "c5": 5.5617198335645, + "c6": 3.7078132223763265, + "c7": 1.853906611188153 }, "rgb": [58, 15, 49] }, @@ -257343,23 +257343,23 @@ "year": 1777, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 22.049151045434165, - "c2": 45.56493810939239, - "c3": -32.964197919459885, - "c4": -31.97754690523565, - "c5": -32.05393748132605, - "c6": -15.050124852453315, - "c7": 43.30972474090816 + "points": { + "c1": -28.609894037492836, + "c2": 8.529196266706407, + "c3": -43.98954679766099, + "c4": -9.475142421089238, + "c5": 29.81664500011835, + "c6": -31.07309031851782, + "c7": 41.23289632957542 }, - "vertexSeeds": { - "c1": 7.148101866388281, - "c2": 6.810042792016654, - "c3": 7.201970132215324, - "c4": 7.20778883313948, - "c5": 6.675465883793233, - "c6": 7.058157891475882, - "c7": 6.771820158195461 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123447, + "c3": 8.691631992602863, + "c4": 6.953305594082299, + "c5": 5.214979195561714, + "c6": 3.4766527970411496, + "c7": 1.738326398520585 }, "rgb": [58, 15, 49] }, @@ -257370,23 +257370,23 @@ "year": 1776, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -8.954225323046703, - "c2": -14.050725182209483, - "c3": -17.852130480039296, - "c4": -19.108256116781305, - "c5": -8.264130753463725, - "c6": -16.273632897057443, - "c7": 3.2670383714914166 + "points": { + "c1": 6.301600578899269, + "c2": 34.07679326935772, + "c3": 22.10521088103029, + "c4": 10.415828965321523, + "c5": -23.81023475788292, + "c6": -17.707847513556388, + "c7": 10.5333419175059 }, - "vertexSeeds": { - "c1": 9.472588216656867, - "c2": 8.956858245500452, - "c3": 9.493520901469275, - "c4": 9.168030417777388, - "c5": 9.27912316164363, - "c6": 9.3211229655318, - "c7": 8.745155006656425 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.61997226074897, + "c3": 11.349976883957464, + "c4": 9.07998150716598, + "c5": 6.809986130374473, + "c6": 4.53999075358299, + "c7": 2.2699953767915058 }, "rgb": [238, 201, 159] }, @@ -257397,23 +257397,23 @@ "year": 1777, "resistanceReported": false, "duration": 60739200, - "curveSeeds": { - "c1": -7.7677722893622985, - "c2": -43.82449703549264, - "c3": -31.349255063617974, - "c4": 17.271500632195, - "c5": 46.992745833677276, - "c6": -25.301349240478615, - "c7": 32.95459688809581 + "points": { + "c1": 34.85500913664224, + "c2": -28.356116665679394, + "c3": 62.44654616923975, + "c4": 31.970490998862957, + "c5": -74.83776380311792, + "c6": 3.5012183037488285, + "c7": 55.22860900917448 }, - "vertexSeeds": { - "c1": 5.961509283067585, - "c2": 5.231824171155106, - "c3": 5.661062711891654, - "c4": 5.910189160054998, - "c5": 5.85418289452749, - "c6": 5.907730615561831, - "c7": 5.783585771109422 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [238, 201, 159] }, @@ -257424,23 +257424,23 @@ "year": 1777, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -6.801539550080022, - "c2": 24.181409613364956, - "c3": 38.625842572910294, - "c4": 37.08456951951495, - "c5": -38.56546781272299, - "c6": 21.44661559250097, - "c7": -6.8134037265244345 + "points": { + "c1": -0.526643498205722, + "c2": 40.99709189464168, + "c3": 14.640950969797792, + "c4": 44.14552032157615, + "c5": -4.680437110556085, + "c6": 6.865898156796547, + "c7": 33.9611063441346 }, - "vertexSeeds": { - "c1": 6.723155009480162, - "c2": 6.41704962318822, - "c3": 6.836907992383006, - "c4": 6.686541615111656, - "c5": 6.863280122175924, - "c6": 6.794264453926539, - "c7": 6.706867454082642 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [86, 146, 138] }, @@ -257451,23 +257451,23 @@ "year": 1777, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -19.002579101691136, - "c2": 14.808492227254114, - "c3": -4.091296075793778, - "c4": -34.65602197048249, - "c5": 32.672223737311235, - "c6": 1.2092303181309916, - "c7": 12.408513285348292 + "points": { + "c1": 5.394173929664532, + "c2": 3.924340952040559, + "c3": 44.734288992797964, + "c4": 41.75035530051763, + "c5": 14.513831960927504, + "c6": 24.389347477957763, + "c7": -34.71500382352615 }, - "vertexSeeds": { - "c1": 7.4942393915471515, - "c2": 7.21764877940983, - "c3": 7.642629572805879, - "c4": 7.680993919103701, - "c5": 7.414894894169676, - "c6": 7.324943074390829, - "c7": 7.643560314906766 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008313, + "c3": 9.20018492834027, + "c4": 7.360147942672208, + "c5": 5.520110957004167, + "c6": 3.680073971336104, + "c7": 1.840036985668042 }, "rgb": [86, 146, 138] }, @@ -257478,23 +257478,23 @@ "year": 1776, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 5.873383400150182, - "c2": -35.448261737866346, - "c3": 32.48366083120874, - "c4": 39.35587310325573, - "c5": 5.15636910571893, - "c6": 36.42463300767024, - "c7": 18.904185868903518 + "points": { + "c1": 12.153257945136048, + "c2": 8.139623535630058, + "c3": 3.967711532624321, + "c4": -32.61267089087903, + "c5": 13.060148868446312, + "c6": 17.39428644617624, + "c7": -25.71483309962473 }, - "vertexSeeds": { - "c1": 2.6946954610382567, - "c2": 2.6801973554785303, - "c3": 2.641037589082333, - "c4": 2.6580976414240607, - "c5": 2.671949608816682, - "c6": 2.5205970797199635, - "c7": 2.619649096905038 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631074, + "c3": 3.236245954692555, + "c4": 2.588996763754049, + "c5": 1.9417475728155305, + "c6": 1.2944983818770246, + "c7": 0.6472491909385187 }, "rgb": [238, 201, 159] }, @@ -257505,23 +257505,23 @@ "year": 1777, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -30.924685080898577, - "c2": 21.1036218227731, - "c3": -1.8830445805669314, - "c4": -19.6711731030799, - "c5": 9.548681165712388, - "c6": -38.933277413839406, - "c7": -21.705797740201962 + "points": { + "c1": -20.165425494995365, + "c2": -11.42208385425047, + "c3": -32.17641188942485, + "c4": 42.035990890303836, + "c5": -1.0919458031227478, + "c6": 31.018610529491667, + "c7": 9.57124857941642 }, - "vertexSeeds": { - "c1": 2.6136297944169122, - "c2": 2.661106881766784, - "c3": 2.6547668338843105, - "c4": 2.6406806233847675, - "c5": 2.514738756443932, - "c6": 2.656370450376686, - "c7": 2.7144210802611433 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712846, + "c3": 3.259361997226076, + "c4": 2.6074895977808565, + "c5": 1.9556171983356483, + "c6": 1.3037447988904283, + "c7": 0.65187239944522 }, "rgb": [58, 15, 49] }, @@ -257532,23 +257532,23 @@ "year": 1777, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 10.367254661532634, - "c2": 24.013148033184855, - "c3": -12.758364106493087, - "c4": 7.121148139987817, - "c5": -13.852733720122302, - "c6": 33.976126327249396, - "c7": -2.332735971486798 + "points": { + "c1": -18.004202756861357, + "c2": 2.82284296793069, + "c3": -1.5519567531696126, + "c4": 38.25294071064318, + "c5": 29.729264687400224, + "c6": -31.255777551489356, + "c7": -3.773207100211785 }, - "vertexSeeds": { - "c1": 6.565576926853869, - "c2": 6.399577836630892, - "c3": 6.442237690413187, - "c4": 6.365450197230788, - "c5": 6.952014013436423, - "c6": 6.858419215392318, - "c7": 6.792010452796453 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -257559,23 +257559,23 @@ "year": 1776, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -22.76690671643182, - "c2": 4.9904821795176275, - "c3": 27.014735152169628, - "c4": -10.2299750277896, - "c5": -18.107531616184964, - "c6": -30.12457700626894, - "c7": 24.80601016141067 + "points": { + "c1": -4.3651496457164285, + "c2": 29.189550856979025, + "c3": 1.0215908004781085, + "c4": 33.03471115086522, + "c5": 0.2483005712058599, + "c6": -27.088348749030192, + "c7": 29.796906923926386 }, - "vertexSeeds": { - "c1": 4.4396385262506834, - "c2": 4.7792444573583195, - "c3": 4.322440945158658, - "c4": 4.308564348182351, - "c5": 4.2992922018172965, - "c6": 4.347400449460495, - "c7": 4.594747221596813 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [58, 15, 49] }, @@ -257586,23 +257586,23 @@ "year": 1776, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -11.878675869261627, - "c2": -20.536322343524024, - "c3": -13.426992294921082, - "c4": 12.041035361967978, - "c5": 16.445389398823124, - "c6": -24.937071876811117, - "c7": -7.972016159782008 + "points": { + "c1": 20.976153923539542, + "c2": -33.45834654107904, + "c3": -26.620477272600972, + "c4": -6.27039816834802, + "c5": 8.498918479937835, + "c6": -3.733022744545373, + "c7": -19.112448214701026 }, - "vertexSeeds": { - "c1": 8.920978227601099, - "c2": 9.362432279300826, - "c3": 9.21690112803139, - "c4": 9.234085437582632, - "c5": 8.726079178232206, - "c6": 8.922794054952988, - "c7": 9.177728507965 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909843, + "c3": 11.442441054091551, + "c4": 9.153952843273236, + "c5": 6.865464632454922, + "c6": 4.576976421636628, + "c7": 2.288488210818314 }, "rgb": [77, 76, 132] }, @@ -257613,23 +257613,23 @@ "year": 1777, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -32.98689836982218, - "c2": -1.8344731440171174, - "c3": -8.347933908075454, - "c4": 27.961656008803352, - "c5": 20.731677546030312, - "c6": -19.089034885422784, - "c7": -2.039815533942466 + "points": { + "c1": -17.740139255623557, + "c2": 10.057208788246555, + "c3": 10.096544891793982, + "c4": 24.268616620404636, + "c5": 20.353808592363364, + "c6": 10.927350790540899, + "c7": 8.667449931590916 }, - "vertexSeeds": { - "c1": 9.064038724258106, - "c2": 9.494580776052263, - "c3": 9.526010197087867, - "c4": 9.688499063446104, - "c5": 9.007088517651226, - "c6": 9.107285206618933, - "c7": 9.632219311819977 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110962, + "c3": 11.558021266759122, + "c4": 9.246417013407301, + "c5": 6.934812760055481, + "c6": 4.62320850670366, + "c7": 2.3116042533518204 }, "rgb": [238, 201, 159] }, @@ -257640,23 +257640,23 @@ "year": 1776, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 26.77619851930701, - "c2": 22.11393883522353, - "c3": -13.399017165242086, - "c4": 11.461699971261645, - "c5": 19.82756510290674, - "c6": 4.49282216730051, - "c7": 10.204413182906492 + "points": { + "c1": 19.13549524167339, + "c2": 28.063194111709585, + "c3": -3.171401815352759, + "c4": 1.1515470218015977, + "c5": -26.538423144756585, + "c6": 24.402826035219668, + "c7": 3.973721787561921 }, - "vertexSeeds": { - "c1": 9.060921656591, - "c2": 9.327461344581398, - "c3": 9.539324489253449, - "c4": 9.008902669285078, - "c5": 9.4791819020768, - "c6": 9.144940279749253, - "c7": 9.380429684516663 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151176, + "c3": 11.581137309292647, + "c4": 9.264909847434117, + "c5": 6.948682385575588, + "c6": 4.6324549237170585, + "c7": 2.3162274618585292 }, "rgb": [77, 76, 132] }, @@ -257667,23 +257667,23 @@ "year": 1776, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -35.082760101765174, - "c2": -2.184547347746566, - "c3": 21.19022982850138, - "c4": -28.218018350195187, - "c5": -6.281989008416147, - "c6": 21.373046875809777, - "c7": 34.81538230245047 + "points": { + "c1": 27.161684967476234, + "c2": -25.14171300450909, + "c3": -2.335582221604575, + "c4": -29.141103732510636, + "c5": 22.803890803292063, + "c6": -30.4307515392044, + "c7": 5.567194960583819 }, - "vertexSeeds": { - "c1": 10.284035537178111, - "c2": 10.606004746278092, - "c3": 10.392623581415434, - "c4": 10.579612117703745, - "c5": 11.096105049558924, - "c6": 10.348176075753646, - "c7": 11.265359006772906 + "offsets": { + "c1": 19.741100323624593, + "c2": 16.920943134535374, + "c3": 14.100785945446134, + "c4": 11.280628756356919, + "c5": 8.460471567267676, + "c6": 5.640314378178459, + "c7": 2.8201571890892416 }, "rgb": [222, 0, 59] }, @@ -257694,23 +257694,23 @@ "year": 1776, "resistanceReported": true, "duration": 11836800, - "curveSeeds": { - "c1": -7.600636263488674, - "c2": 17.575312644805926, - "c3": -18.141362705608238, - "c4": -17.13369765846371, - "c5": -14.683670707892452, - "c6": -8.695791393240752, - "c7": -4.254712034054354 + "points": { + "c1": 2.1069763206738834, + "c2": 17.870512259824125, + "c3": -5.5371759357466175, + "c4": 11.625040278429395, + "c5": -19.716214626158735, + "c6": 9.737081278836293, + "c7": 20.10640995537065 }, - "vertexSeeds": { - "c1": 7.14814533710295, - "c2": 7.150904719447316, - "c3": 6.84073367789874, - "c4": 6.869881497242668, - "c5": 7.0679627081737895, - "c6": 6.587881685714695, - "c7": 7.018188693616636 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922324, + "c3": 8.576051779935284, + "c4": 6.860841423948224, + "c5": 5.145631067961162, + "c6": 3.4304207119741004, + "c7": 1.7152103559870613 }, "rgb": [77, 76, 132] }, @@ -257721,23 +257721,23 @@ "year": 1776, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": -14.498120477659228, - "c2": 8.646359209230045, - "c3": -3.3561168300495847, - "c4": 3.9507440947844685, - "c5": -4.865328293463298, - "c6": 4.443618230830815, - "c7": -11.565852041126998 + "points": { + "c1": -17.106224394733893, + "c2": 15.218286590511365, + "c3": -1.54063342286317, + "c4": -1.4334768145794925, + "c5": 10.323279642408249, + "c6": -17.5622742777941, + "c7": 13.580638331786457 }, - "vertexSeeds": { - "c1": 4.255181347150259, - "c2": 4.255181347150259, - "c3": 4.255181347150259, - "c4": 4.255181347150259, - "c5": 4.255181347150259, - "c6": 4.255181347150259, - "c7": 4.255181347150259 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -257748,23 +257748,23 @@ "year": 1777, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -33.84964293520096, - "c2": 27.1547608629971, - "c3": -7.1343290481466966, - "c4": -31.42919421212183, - "c5": -29.03007981294636, - "c6": -33.88206255853589, - "c7": -13.905090130127096 + "points": { + "c1": -10.53294459965457, + "c2": 2.1557302978536725, + "c3": -5.217966625894128, + "c4": -13.341567088608429, + "c5": -19.1373803067258, + "c6": -12.670701729607373, + "c7": -38.37496305443984 }, - "vertexSeeds": { - "c1": 12.33002816153805, - "c2": 11.819173569981178, - "c3": 11.719026827761471, - "c4": 12.183204120439518, - "c5": 11.975071803752636, - "c6": 12.259590259977807, - "c7": 11.737400032855149 + "offsets": { + "c1": 21.197411003236247, + "c2": 18.169209431345344, + "c3": 15.141007859454437, + "c4": 12.112806287563576, + "c5": 9.084604715672672, + "c6": 6.056403143781766, + "c7": 3.0282015718909054 }, "rgb": [77, 76, 132] }, @@ -257775,23 +257775,23 @@ "year": 1777, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 11.333263073791557, - "c2": -3.5103164708463552, - "c3": 39.09521550839991, - "c4": -23.133548771721475, - "c5": 23.477186785040182, - "c6": -32.451643464784866, - "c7": 0.983231687791573 + "points": { + "c1": -12.458350595891154, + "c2": 33.29140628940075, + "c3": 22.53119417296316, + "c4": -13.232870292119326, + "c5": 0.1800187639712263, + "c6": -23.043716872664312, + "c7": 31.056727023765298 }, - "vertexSeeds": { - "c1": 2.8474724274661765, - "c2": 2.766209763645342, - "c3": 2.803163354975119, - "c4": 2.8350559218605045, - "c5": 2.7993726302249065, - "c6": 2.7830708653940084, - "c7": 2.8226115057974885 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952835, + "c3": 3.4211742949607147, + "c4": 2.736939435968566, + "c5": 2.0527045769764176, + "c6": 1.3684697179842693, + "c7": 0.6842348589921483 }, "rgb": [238, 201, 159] }, @@ -257802,23 +257802,23 @@ "year": 1777, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": -18.853568789739946, - "c2": 40.91963986013892, - "c3": 9.971648456987701, - "c4": 44.354259585952455, - "c5": 1.2844023570327536, - "c6": -25.26352525833027, - "c7": 14.020413469152452 + "points": { + "c1": 32.23130488783159, + "c2": 31.884777865400032, + "c3": -7.684009679646586, + "c4": -11.475073632930119, + "c5": 35.620078593049634, + "c6": -9.582227138931835, + "c7": -29.152980198973346 }, - "vertexSeeds": { - "c1": 5.838333864322573, - "c2": 5.545966138753957, - "c3": 5.743850882658588, - "c4": 5.7791924242979436, - "c5": 5.878276146044723, - "c6": 5.9701817966345585, - "c7": 5.60128604842481 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [86, 146, 138] }, @@ -257829,23 +257829,23 @@ "year": 1776, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -12.396631434551082, - "c2": 2.6328500994875945, - "c3": 3.5774123264464173, - "c4": 12.409307587034316, - "c5": -19.231775879050304, - "c6": -25.61334413373182, - "c7": -3.158562497027564 + "points": { + "c1": 2.630411743838309, + "c2": -13.901780701614321, + "c3": 28.204967665492873, + "c4": 7.921836148586635, + "c5": -19.692670495520417, + "c6": -2.3603455508274465, + "c7": -32.871028284707435 }, - "vertexSeeds": { - "c1": 6.877127739725673, - "c2": 6.722387088173539, - "c3": 6.759816451090236, - "c4": 6.409967229388423, - "c5": 6.943964148179279, - "c6": 6.366039180538642, - "c7": 6.704682653523866 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -257856,23 +257856,23 @@ "year": 1777, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -25.49512679753346, - "c2": 26.91500228164756, - "c3": 22.59414509235083, - "c4": -25.469232124458017, - "c5": 36.59990270917005, - "c6": -24.404430732917728, - "c7": -41.151248095127535 + "points": { + "c1": -4.6964342070286165, + "c2": -24.9947072101401, + "c3": 39.27341362015443, + "c4": 11.421706089145076, + "c5": 2.127768631740551, + "c6": -21.47611816184629, + "c7": 21.71317139602884 }, - "vertexSeeds": { - "c1": 6.294669947139254, - "c2": 6.270507310613926, - "c3": 6.20154489192321, - "c4": 6.257590326605688, - "c5": 6.186384084771159, - "c6": 6.199383320178441, - "c7": 6.269039525589175 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072122, + "c3": 7.512713823393435, + "c4": 6.010171058714747, + "c5": 4.507628294036061, + "c6": 3.0050855293573737, + "c7": 1.5025427646786869 }, "rgb": [222, 0, 59] }, @@ -257883,23 +257883,23 @@ "year": 1777, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 4.504892166178976, - "c2": -8.12407354405778, - "c3": 20.012966161427634, - "c4": 26.431150269746475, - "c5": -10.605009558789678, - "c6": -0.7099492277441399, - "c7": -36.466203073622395 + "points": { + "c1": -25.02355134470225, + "c2": -37.3894336957725, + "c3": 34.56139418334211, + "c4": 27.776000641087897, + "c5": -14.561451959977525, + "c6": -10.711431334761649, + "c7": -22.756059962160126 }, - "vertexSeeds": { - "c1": 4.016801848134237, - "c2": 4.2266514295957345, - "c3": 4.205122632808187, - "c4": 3.9936425730113307, - "c5": 4.274045283928716, - "c6": 4.145396500328928, - "c7": 3.9402836751454213 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929263, + "c3": 5.131761442441051, + "c4": 4.105409153952839, + "c5": 3.0790568654646266, + "c6": 2.0527045769764247, + "c7": 1.0263522884882124 }, "rgb": [222, 0, 59] }, @@ -257910,23 +257910,23 @@ "year": 1777, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 19.100766263294382, - "c2": 43.89790779903981, - "c3": 23.54599044117466, - "c4": 38.635964007947315, - "c5": 45.35238083626111, - "c6": 35.93999953883277, - "c7": 13.694517477484105 + "points": { + "c1": 22.819747874286556, + "c2": -52.42805144758693, + "c3": 22.351300946237494, + "c4": 44.72053683708668, + "c5": 19.325389028026002, + "c6": 36.58396685479054, + "c7": -51.63612608435895 }, - "vertexSeeds": { - "c1": 7.420258896665664, - "c2": 8.464207757820592, - "c3": 8.334795546530698, - "c4": 7.256145604562647, - "c5": 7.015555820231716, - "c6": 8.521122122439218, - "c7": 8.852145409665482 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145632, + "c3": 11.00323624595469, + "c4": 8.802588996763754, + "c5": 6.601941747572811, + "c6": 4.401294498381874, + "c7": 2.200647249190937 }, "rgb": [238, 201, 159] }, @@ -257937,23 +257937,23 @@ "year": 1777, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -41.73633909256944, - "c2": 27.179976382807197, - "c3": -6.2114572111867545, - "c4": -6.590654468055327, - "c5": 20.314443729145353, - "c6": 24.721661560529895, - "c7": -11.21218259485201 + "points": { + "c1": -12.036570541185625, + "c2": -42.323682735866605, + "c3": 40.06940496075477, + "c4": 25.57481340130319, + "c5": 40.75262992106309, + "c6": 8.90238103935571, + "c7": 20.59947905140099 }, - "vertexSeeds": { - "c1": 4.4325362116369, - "c2": 4.718917913455631, - "c3": 4.239433100169175, - "c4": 4.379896988361203, - "c5": 5.04979193761612, - "c6": 4.336816798248756, - "c7": 4.256865600682457 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538142, + "c3": 6.056403143781785, + "c4": 4.845122515025428, + "c5": 3.633841886269071, + "c6": 2.422561257512714, + "c7": 1.211280628756357 }, "rgb": [238, 201, 159] }, @@ -257964,23 +257964,23 @@ "year": 1777, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 34.71769958893419, - "c2": 12.409044172672452, - "c3": -6.602830593054577, - "c4": -22.98987849694215, - "c5": 20.02357120713055, - "c6": 39.35116836730064, - "c7": 24.632271635604944 + "points": { + "c1": -11.523490786271033, + "c2": 34.3355719472084, + "c3": -27.60771403894144, + "c4": 11.34158886295198, + "c5": 40.580272959624786, + "c6": 12.090303410161482, + "c7": 13.150646037598563 }, - "vertexSeeds": { - "c1": 6.955155801888715, - "c2": 7.022712497207346, - "c3": 7.096247732308529, - "c4": 7.048526954512332, - "c5": 7.088693311440898, - "c6": 7.406908426198551, - "c7": 7.356089142437237 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -257991,23 +257991,23 @@ "year": 1777, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -8.9367185035615, - "c2": 21.699499094780236, - "c3": 35.0606119683781, - "c4": 12.579379294813506, - "c5": -23.312188741616467, - "c6": 0.5892021740721134, - "c7": -25.432698197854045 + "points": { + "c1": -15.147102592671498, + "c2": 14.61217088994377, + "c3": -28.736490931181986, + "c4": -39.68030457074092, + "c5": -29.503022164726293, + "c6": 35.20611856361347, + "c7": -32.65321108128212 }, - "vertexSeeds": { - "c1": 5.654145077720207, - "c2": 5.654145077720207, - "c3": 5.654145077720207, - "c4": 5.654145077720207, - "c5": 5.654145077720207, - "c6": 5.654145077720207, - "c7": 5.654145077720207 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -258018,23 +258018,23 @@ "year": 1777, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -35.05014307343954, - "c2": 38.32385025808032, - "c3": -32.79203793631302, - "c4": -34.50278852516175, - "c5": -12.40411511269533, - "c6": 11.438208950015813, - "c7": 8.18051127718762 + "points": { + "c1": -12.824231592354316, + "c2": 37.44948714339774, + "c3": 40.24425601115012, + "c4": 34.35533202435105, + "c5": 29.74322868382935, + "c6": 39.202893336724564, + "c7": 41.3157588580414 }, - "vertexSeeds": { - "c1": 4.653879316737835, - "c2": 4.869333134726081, - "c3": 5.199068603364568, - "c4": 4.5439340928276435, - "c5": 4.841333527782177, - "c6": 4.7610895875940695, - "c7": 4.933664628769719 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.5728155339805845, + "c3": 6.31067961165049, + "c4": 5.048543689320387, + "c5": 3.7864077669902922, + "c6": 2.524271844660191, + "c7": 1.2621359223300954 }, "rgb": [86, 146, 138] }, @@ -258045,23 +258045,23 @@ "year": 1776, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -4.315683854170558, - "c2": 4.409599835839394, - "c3": -22.381447066128054, - "c4": 9.299579275409094, - "c5": 10.512293898184424, - "c6": 2.593359414954314, - "c7": -4.358349204585533 + "points": { + "c1": -27.141921412673998, + "c2": 29.644407855307648, + "c3": -0.9122342339361467, + "c4": 23.35073094794408, + "c5": 30.866394578045806, + "c6": 30.82907566723231, + "c7": -6.019812113722281 }, - "vertexSeeds": { - "c1": 3.7327213323866135, - "c2": 3.7832000324953894, - "c3": 3.3786430881498104, - "c4": 3.465827916286915, - "c5": 3.6967540505206236, - "c6": 3.4565456306364055, - "c7": 3.7852035606306784 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [238, 201, 159] }, @@ -258072,23 +258072,23 @@ "year": 1776, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 20.148177313039106, - "c2": 29.857545259247694, - "c3": 6.388113280021884, - "c4": -5.63383860546984, - "c5": -18.83504982952811, - "c6": 17.056921953665423, - "c7": 22.68620861938153 + "points": { + "c1": -30.976190449549573, + "c2": -1.6032136987218593, + "c3": -4.032065144762026, + "c4": 12.755265617586105, + "c5": 26.872235498621293, + "c6": 32.596351472503365, + "c7": -23.71296210586101 }, - "vertexSeeds": { - "c1": 6.726464200547494, - "c2": 6.765578591595555, - "c3": 6.572054874428754, - "c4": 6.4986992297589214, - "c5": 6.653639243857359, - "c6": 6.545506051556126, - "c7": 6.313412025025485 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.206195099398988, + "c4": 6.564956079519195, + "c5": 4.923717059639402, + "c6": 3.282478039759587, + "c7": 1.6412390198797935 }, "rgb": [77, 76, 132] }, @@ -258099,23 +258099,23 @@ "year": 1777, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -17.50224798100354, - "c2": 20.997320232955083, - "c3": 8.74160512102489, - "c4": -31.613152740775035, - "c5": -2.8513538730885735, - "c6": 13.20820268962305, - "c7": -29.219841987632325 + "points": { + "c1": 32.06907497046934, + "c2": 35.11146218244817, + "c3": -15.468051802194527, + "c4": -24.271151925414017, + "c5": -17.443762759541563, + "c6": 14.94906703039858, + "c7": 31.090396758405227 }, - "vertexSeeds": { - "c1": 6.632167946485218, - "c2": 6.699170552024405, - "c3": 6.386224874396469, - "c4": 6.876346339740966, - "c5": 6.380587072461227, - "c6": 6.478538496568483, - "c7": 6.501018824418961 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -258126,23 +258126,23 @@ "year": 1776, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 4.691880847863374, - "c2": 5.309378171365182, - "c3": -28.418128690687453, - "c4": -2.9862248076629605, - "c5": -1.5676447737044228, - "c6": -23.16035589539402, - "c7": 4.9026627075146365 + "points": { + "c1": 14.486983914019469, + "c2": 21.90916194721074, + "c3": -19.5744099720535, + "c4": 21.711961145632948, + "c5": 16.80684652417031, + "c6": 19.80036900648208, + "c7": 22.26572705829752 }, - "vertexSeeds": { - "c1": 9.717342241006548, - "c2": 9.85994078767046, - "c3": 10.38966920724932, - "c4": 10.139757702623221, - "c5": 10.121709562926654, - "c6": 9.68815982094952, - "c7": 10.020677909906922 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.00693481276005, + "c3": 12.505779010633367, + "c4": 10.004623208506686, + "c5": 7.5034674063800475, + "c6": 5.002311604253364, + "c7": 2.501155802126682 }, "rgb": [86, 146, 138] }, @@ -258153,23 +258153,23 @@ "year": 1777, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 5.678553358988125, - "c2": -10.013552924048025, - "c3": -26.09055405786023, - "c4": 12.081554251935117, - "c5": 1.2842640912346113, - "c6": 23.40135320336622, - "c7": -24.95444992306375 + "points": { + "c1": -13.616478382603919, + "c2": -32.03926671581333, + "c3": -28.521937218000588, + "c4": 11.348368436570524, + "c5": 26.817322630929624, + "c6": 30.63242589907083, + "c7": 4.786301585266031 }, - "vertexSeeds": { - "c1": 4.889445333521607, - "c2": 4.71626028174162, - "c3": 4.90133441259284, - "c4": 4.8203777670077255, - "c5": 4.843490228431225, - "c6": 4.924729880256759, - "c7": 5.086281733715475 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618575, + "c3": 6.102635228848824, + "c4": 4.882108183079061, + "c5": 3.661581137309299, + "c6": 2.4410540915395256, + "c7": 1.2205270457697628 }, "rgb": [86, 146, 138] }, @@ -258180,23 +258180,23 @@ "year": 1777, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -16.041102817276343, - "c2": 2.634467935493497, - "c3": 36.22747580263188, - "c4": 42.80171708397331, - "c5": -38.05841343796366, - "c6": 28.35389296593639, - "c7": 10.755366280432419 + "points": { + "c1": 9.370679491129941, + "c2": 20.096238677358805, + "c3": -35.40105553190291, + "c4": 37.39484789872342, + "c5": 16.664108571320533, + "c6": -23.57659249567795, + "c7": -26.295464178622584 }, - "vertexSeeds": { - "c1": 3.234095449543043, - "c2": 2.657473021343461, - "c3": 3.240343989762171, - "c4": 2.5048472028062063, - "c5": 2.6690991593848055, - "c6": 3.1383141321993673, - "c7": 2.471310051699979 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.9066111881645855, + "c4": 3.1252889505316714, + "c5": 2.343966712898754, + "c6": 1.5626444752658357, + "c7": 0.7813222376329179 }, "rgb": [58, 15, 49] }, @@ -258207,23 +258207,23 @@ "year": 1777, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 32.76945996649983, - "c2": -8.444099929068472, - "c3": -32.503899047648495, - "c4": 39.76744470225288, - "c5": -14.668823548416373, - "c6": 31.31113140108699, - "c7": 28.854473793959833 + "points": { + "c1": 24.741551937954732, + "c2": 32.77953768670596, + "c3": 39.84839766063018, + "c4": -42.68185622918769, + "c5": 35.86063510490795, + "c6": -13.182261187446272, + "c7": 7.332927230068435 }, - "vertexSeeds": { - "c1": 9.401586078201479, - "c2": 9.413018017853428, - "c3": 9.316433213902748, - "c4": 8.894488497341717, - "c5": 9.400408430928326, - "c6": 9.214730154551214, - "c7": 8.905141246770235 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055477, + "c6": 4.6232085067036515, + "c7": 2.3116042533518257 }, "rgb": [77, 76, 132] }, @@ -258234,23 +258234,23 @@ "year": 1777, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -28.432000830614268, - "c2": 22.009550239305177, - "c3": -22.94941257981297, - "c4": 24.47363471290263, - "c5": -4.77159902554072, - "c6": -19.423554844149145, - "c7": 5.6427720691326115 + "points": { + "c1": 28.530341373675853, + "c2": -33.62659596963233, + "c3": 26.73412313551478, + "c4": -2.5178274203509687, + "c5": -18.77862048632743, + "c6": 6.672341478345352, + "c7": 32.49033391040298 }, - "vertexSeeds": { - "c1": 3.81963963426078, - "c2": 3.7947111116181222, - "c3": 3.922561072907527, - "c4": 3.9483677911564015, - "c5": 4.006926276616734, - "c6": 3.8610770034012223, - "c7": 3.940697473691241 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -258261,23 +258261,23 @@ "year": 1776, "resistanceReported": false, "duration": 7516800, - "curveSeeds": { - "c1": -13.324232414613117, - "c2": 1.7563101552693539, - "c3": 11.347278281941033, - "c4": -8.140112736099539, - "c5": -5.230939754656866, - "c6": -12.122789018069215, - "c7": -10.235677642016425 + "points": { + "c1": -13.552387473753758, + "c2": -3.7547698935936005, + "c3": -8.217145634900401, + "c4": 0.43285291247634206, + "c5": 6.419164329716459, + "c6": 10.293127485290803, + "c7": -17.951208228039423 }, - "vertexSeeds": { - "c1": 5.797283953457834, - "c2": 5.804368599905756, - "c3": 5.80345252469916, - "c4": 5.79447791792688, - "c5": 5.801678997865804, - "c6": 5.792314518379397, - "c7": 5.790392641113129 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066338, + "c3": 6.934812760055557, + "c4": 5.547850208044225, + "c5": 4.160887656033444, + "c6": 2.7739251040221125, + "c7": 1.386962552011332 }, "rgb": [238, 201, 159] }, @@ -258288,23 +258288,23 @@ "year": 1777, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 13.187800909768619, - "c2": 33.8104147649791, - "c3": -29.35082902820541, - "c4": 11.417885967362317, - "c5": 29.390951089761714, - "c6": 30.182627053681955, - "c7": 25.114775194654243 + "points": { + "c1": 4.2785915453954, + "c2": -40.08934467382742, + "c3": 35.510641455187084, + "c4": 12.063658067367335, + "c5": 13.019576465593047, + "c6": -31.37741123122219, + "c7": 30.2181961449931 }, - "vertexSeeds": { - "c1": 7.7552989811833095, - "c2": 7.72578701325057, - "c3": 7.7276629434408, - "c4": 7.8430044455459935, - "c5": 7.779168692678928, - "c6": 7.760083849739125, - "c7": 7.734558773434999 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289836, + "c3": 9.361997226074909, + "c4": 7.48959778085989, + "c5": 5.617198335644964, + "c6": 3.744798890429945, + "c7": 1.872399445214926 }, "rgb": [58, 15, 49] }, @@ -258315,23 +258315,23 @@ "year": 1777, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -34.646185203623055, - "c2": -7.91764011556797, - "c3": -39.836058559138344, - "c4": -26.707601751398933, - "c5": -40.97927925779844, - "c6": -27.891778564045318, - "c7": 17.179303269582 + "points": { + "c1": 31.073353612152687, + "c2": -5.975144649481479, + "c3": 6.56807977686271, + "c4": 20.62195322145702, + "c5": -17.973223052960698, + "c6": 3.8365996861611933, + "c7": 9.999870500476717 }, - "vertexSeeds": { - "c1": 8.194716006993511, - "c2": 8.025772826712645, - "c3": 7.865736527107465, - "c4": 8.44139747841468, - "c5": 8.32226198736437, - "c6": 7.854631027910891, - "c7": 7.754543322104426 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [58, 15, 49] }, @@ -258342,23 +258342,23 @@ "year": 1777, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -31.192651440857247, - "c2": -24.393190371758987, - "c3": 32.34565763640654, - "c4": -15.98867930506865, - "c5": 16.38148004481637, - "c6": 19.213992469254556, - "c7": -35.700293246888315 + "points": { + "c1": 6.490703772760725, + "c2": -15.32922907166034, + "c3": 33.303226996834084, + "c4": -9.843522622436208, + "c5": -0.4770863169030406, + "c6": 26.217700665273526, + "c7": 3.478190067219913 }, - "vertexSeeds": { - "c1": 16.875340100211467, - "c2": 16.79797158902081, - "c3": 16.94034198254521, - "c4": 16.804690098220178, - "c5": 16.73501890356728, - "c6": 16.93114516367963, - "c7": 17.027420926833116 + "offsets": { + "c1": 28.446601941747574, + "c2": 24.382801664355036, + "c3": 20.319001386962498, + "c4": 16.25520110956996, + "c5": 12.191400832177424, + "c6": 8.127600554785076, + "c7": 4.063800277392538 }, "rgb": [86, 146, 138] }, @@ -258369,23 +258369,23 @@ "year": 1776, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -4.409942378580848, - "c2": -1.3430595367405793, - "c3": -19.84840224330775, - "c4": 6.849524266526782, - "c5": 3.5315782396232542, - "c6": 10.493524990252627, - "c7": 11.397963326161129 + "points": { + "c1": -2.6430115077311207, + "c2": 7.0110252718025805, + "c3": 14.951009001748176, + "c4": 26.53589206464565, + "c5": 22.756637454812626, + "c6": -22.266840118128147, + "c7": 24.420884142647253 }, - "vertexSeeds": { - "c1": 12.336253188425436, - "c2": 12.53713472042609, - "c3": 13.372684576501745, - "c4": 11.63281951666034, - "c5": 12.982073798425253, - "c6": 12.696773216428078, - "c7": 12.83183407698703 + "offsets": { + "c1": 22.459546925566343, + "c2": 19.25104022191402, + "c3": 16.04253351826167, + "c4": 12.834026814609345, + "c5": 9.625520110957023, + "c6": 6.4170134073046725, + "c7": 3.2085067036523487 }, "rgb": [222, 0, 59] }, @@ -258396,23 +258396,23 @@ "year": 1777, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 20.01323605564223, - "c2": 16.244840447896472, - "c3": 4.401906863216347, - "c4": -10.81380264724088, - "c5": 12.87199406407482, - "c6": 19.88624522576567, - "c7": 29.874054947054397 + "points": { + "c1": 6.406519420450479, + "c2": -32.802645169798694, + "c3": -34.76266803750222, + "c4": 32.27227994673369, + "c5": 21.86890335937469, + "c6": 5.316591233681919, + "c7": -15.632029535711602 }, - "vertexSeeds": { - "c1": 6.7460131334284545, - "c2": 6.836502230418745, - "c3": 6.528514772060753, - "c4": 6.758215034566397, - "c5": 6.912914925588069, - "c6": 6.723587403902936, - "c7": 6.837547771759238 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -258423,23 +258423,23 @@ "year": 1777, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 31.834970968845475, - "c2": 22.720723718090014, - "c3": -2.4619771831412365, - "c4": 17.48713737602138, - "c5": -22.5603494756098, - "c6": 19.02000480132419, - "c7": 3.6072936523192283 + "points": { + "c1": -30.927543181831414, + "c2": 9.579037635334927, + "c3": -9.239066314807339, + "c4": 30.537769928884522, + "c5": -21.803507960686808, + "c6": 16.239783100978478, + "c7": 33.764764071844986 }, - "vertexSeeds": { - "c1": 7.030014376512785, - "c2": 6.18746983964338, - "c3": 6.627703347684055, - "c4": 6.954382208573971, - "c5": 7.110452716135828, - "c6": 7.0338809016951025, - "c7": 6.200939356892654 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [222, 0, 59] }, @@ -258450,23 +258450,23 @@ "year": 1777, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 44.89387345037247, - "c2": 17.358479511599683, - "c3": -15.214326618449121, - "c4": 44.74510122696411, - "c5": -35.72015852766623, - "c6": -2.2314537920229895, - "c7": -39.86410106753981 + "points": { + "c1": 29.862423523322263, + "c2": 40.070250967921, + "c3": 44.90602149502071, + "c4": -18.10672815506264, + "c5": -26.562035780636343, + "c6": -17.181639727160373, + "c7": -30.591689409147616 }, - "vertexSeeds": { - "c1": 7.67908959577384, - "c2": 7.921936171559455, - "c3": 7.863465643426275, - "c4": 7.673537566669608, - "c5": 7.703744988856428, - "c6": 7.930137930823625, - "c7": 7.992459255143421 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933424, + "c3": 9.731853906611189, + "c4": 7.78548312528895, + "c5": 5.839112343966712, + "c6": 3.892741562644475, + "c7": 1.9463707813222375 }, "rgb": [58, 15, 49] }, @@ -258477,23 +258477,23 @@ "year": 1777, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 1.2752816965320548, - "c2": -0.5050967462853997, - "c3": 28.536958765079767, - "c4": 15.664303809195602, - "c5": 21.898481774587026, - "c6": -24.109662330173663, - "c7": -16.66373429217489 + "points": { + "c1": 8.842874826985401, + "c2": 14.64479097539639, + "c3": 33.13303533372037, + "c4": 17.65956961158531, + "c5": -10.793305474999656, + "c6": 2.3533337930471703, + "c7": 27.39816196850314 }, - "vertexSeeds": { - "c1": 6.923813758977723, - "c2": 6.4694086153283665, - "c3": 6.401213854731602, - "c4": 6.574284444257426, - "c5": 6.733483153661283, - "c6": 6.91283249654453, - "c7": 6.49169481096488 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -258504,23 +258504,23 @@ "year": 1777, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -19.778783806007386, - "c2": 0.6659509018988103, - "c3": 2.952817920316491, - "c4": -18.500561413525585, - "c5": 36.03311496697361, - "c6": -26.43063057190576, - "c7": -25.414279214648417 + "points": { + "c1": -4.3744553848015855, + "c2": 5.819320260789176, + "c3": 7.256318035375237, + "c4": -2.269992613969592, + "c5": 29.343670511264875, + "c6": 38.583238273785796, + "c7": 20.18852189302654 }, - "vertexSeeds": { - "c1": 1.3755399276340337, - "c2": 1.3403800443256524, - "c3": 1.382031986075666, - "c4": 1.3209309945117085, - "c5": 1.365491867835867, - "c6": 1.3334260173742674, - "c7": 1.2929492696167197 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361997, + "c3": 1.6874711049468332, + "c4": 1.3499768839574664, + "c5": 1.0124826629680999, + "c6": 0.6749884419787332, + "c7": 0.3374942209893666 }, "rgb": [77, 76, 132] }, @@ -258531,23 +258531,23 @@ "year": 1777, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 28.14159390973324, - "c2": -16.39869242643524, - "c3": -29.520457025847737, - "c4": 30.05430304893205, - "c5": -5.996537009925891, - "c6": 28.032299197386564, - "c7": -2.735783887705928 + "points": { + "c1": 4.103844460005213, + "c2": 7.199581431252177, + "c3": -2.4021513227603393, + "c4": -23.857034401747466, + "c5": 12.896819785933914, + "c6": 14.975336080083629, + "c7": 29.95556574031483 }, - "vertexSeeds": { - "c1": 7.41584654654525, - "c2": 6.64601679612434, - "c3": 6.802853031067597, - "c4": 7.6154928686230585, - "c5": 7.439939381736992, - "c6": 6.713259881344514, - "c7": 7.472017022900316 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.09570041608877, + "c3": 9.246417013407303, + "c4": 7.397133610725847, + "c5": 5.5478502080443794, + "c6": 3.6985668053629235, + "c7": 1.8492834026814557 }, "rgb": [86, 146, 138] }, @@ -258558,23 +258558,23 @@ "year": 1777, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 9.259375434209623, - "c2": -9.00072817984563, - "c3": -6.397276635758718, - "c4": -18.664802700876848, - "c5": -14.900778760177246, - "c6": 9.038269926711834, - "c7": -0.26167568191600665 + "points": { + "c1": 25.791152363780355, + "c2": 2.1623448550415247, + "c3": 16.331649512390392, + "c4": 18.671335816192986, + "c5": -8.100546894167458, + "c6": -4.1148156753110925, + "c7": 26.147443281507343 }, - "vertexSeeds": { - "c1": 6.58056490173501, - "c2": 6.925302891286612, - "c3": 6.647758006756123, - "c4": 6.860021671827872, - "c5": 6.8452898961986, - "c6": 6.887478373096746, - "c7": 6.912960723778762 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -258585,23 +258585,23 @@ "year": 1777, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 42.64225389533456, - "c2": 15.737558227565856, - "c3": 4.286717777764828, - "c4": -20.020246366525374, - "c5": -44.65579625835421, - "c6": -6.02062031315657, - "c7": 37.71587484804188 + "points": { + "c1": -40.860112963950066, + "c2": 29.881679610606, + "c3": -31.03560464144728, + "c4": 21.95454068830645, + "c5": -6.5114465660437375, + "c6": 46.003666427852366, + "c7": 12.550514534109737 }, - "vertexSeeds": { - "c1": 7.889862949313747, - "c2": 7.86466614131754, - "c3": 8.496796200456558, - "c4": 8.271295846503264, - "c5": 8.267654572344426, - "c6": 8.1420855490542, - "c7": 7.795663444092414 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [58, 15, 49] }, @@ -258612,23 +258612,23 @@ "year": 1776, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -7.778220289616577, - "c2": 27.956770489416158, - "c3": -16.064491778711332, - "c4": 5.290195347875709, - "c5": -12.64042390710318, - "c6": 24.02703169591694, - "c7": 12.685167984367396 + "points": { + "c1": -14.7905553193857, + "c2": 22.835650247154533, + "c3": -8.374411357274635, + "c4": 22.79318187561917, + "c5": 23.957928411314313, + "c6": -24.649074749807838, + "c7": 9.283493810316571 }, - "vertexSeeds": { - "c1": 2.897992104767474, - "c2": 2.712834965056628, - "c3": 2.4889134535085597, - "c4": 2.8626883573222317, - "c5": 3.251016410271402, - "c6": 3.113896093069175, - "c7": 2.9393420692228087 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837724, + "c3": 3.9297272306981053, + "c4": 3.143781784558483, + "c5": 2.357836338418864, + "c6": 1.5718908922792414, + "c7": 0.7859454461396187 }, "rgb": [58, 15, 49] }, @@ -258639,23 +258639,23 @@ "year": 1777, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 18.305275726814536, - "c2": 46.65872017135863, - "c3": -39.43158257582835, - "c4": 7.443115410629794, - "c5": 8.634255713677213, - "c6": 15.688690651051203, - "c7": -14.626252106953586 + "points": { + "c1": -18.571887864514373, + "c2": -40.7355793034584, + "c3": 49.33411987035971, + "c4": 24.234598875519886, + "c5": -41.99717978606623, + "c6": 42.76029789923172, + "c7": 17.668878317719525 }, - "vertexSeeds": { - "c1": 6.854826414837073, - "c2": 6.834480608738219, - "c3": 7.639201163319128, - "c4": 7.861282664070482, - "c5": 7.4630764670931296, - "c6": 8.016047961723338, - "c7": 6.752261793162738 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933428, + "c3": 9.731853906611184, + "c4": 7.785483125288948, + "c5": 5.839112343966714, + "c6": 3.8927415626444795, + "c7": 1.9463707813222348 }, "rgb": [77, 76, 132] }, @@ -258666,23 +258666,23 @@ "year": 1777, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -19.66257580666145, - "c2": 29.436212445528675, - "c3": -12.188243329724287, - "c4": 23.883433878832747, - "c5": -0.7775222451983197, - "c6": 3.0332017668737805, - "c7": -31.125594599836713 + "points": { + "c1": -16.752916694043556, + "c2": 28.441280463618646, + "c3": 9.43220112074458, + "c4": 33.49982398827922, + "c5": 6.255397123914548, + "c6": 26.615986048259032, + "c7": -22.35210926403093 }, - "vertexSeeds": { - "c1": 9.084686171363318, - "c2": 9.240229845432577, - "c3": 9.21581880795042, - "c4": 9.368945838292708, - "c5": 9.195731180975496, - "c6": 9.012940649520715, - "c7": 8.876136464886613 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708748, + "c3": 11.326860841423944, + "c4": 9.061488673139165, + "c5": 6.796116504854362, + "c6": 4.530744336569582, + "c7": 2.2653721682848023 }, "rgb": [222, 0, 59] }, @@ -258693,23 +258693,23 @@ "year": 1777, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 6.059127416720436, - "c2": -13.070122374236735, - "c3": 2.881645676992612, - "c4": -20.9294078776769, - "c5": -14.859088656754935, - "c6": -21.74923424761232, - "c7": 35.64789493762083 + "points": { + "c1": 38.709937778012616, + "c2": 26.206439284388196, + "c3": 35.328532902531364, + "c4": -2.1488726034838805, + "c5": 38.10372847147319, + "c6": 15.191824837937062, + "c7": -16.502668854565634 }, - "vertexSeeds": { - "c1": 2.350639348532588, - "c2": 2.3354629033943377, - "c3": 2.348728078392578, - "c4": 2.360367284683376, - "c5": 2.369182859804746, - "c6": 2.3476907864297383, - "c7": 2.358859972846539 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779472832, + "c3": 2.8432732316227503, + "c4": 2.274618585298189, + "c5": 1.7059639389736558, + "c6": 1.1373092926490944, + "c7": 0.5686546463245613 }, "rgb": [238, 201, 159] }, @@ -258720,23 +258720,23 @@ "year": 1777, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -25.863649654730718, - "c2": 22.273017418417297, - "c3": -23.398359460742558, - "c4": 29.078497102191072, - "c5": 15.65448584208756, - "c6": 6.774907847040389, - "c7": -20.78133427478594 + "points": { + "c1": -27.435265975188, + "c2": 9.370519274972843, + "c3": 18.023445494168236, + "c4": -23.1884052614677, + "c5": -30.266061288025895, + "c6": 29.25735785509473, + "c7": 12.070905550125062 }, - "vertexSeeds": { - "c1": 6.916142517262615, - "c2": 6.920162623819422, - "c3": 6.417234387904614, - "c4": 6.491187180637775, - "c5": 6.922990729796648, - "c6": 6.859923050849365, - "c7": 6.831844480390494 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066581, + "c4": 6.65742024965327, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624133119 }, "rgb": [222, 0, 59] }, @@ -258747,23 +258747,23 @@ "year": 1777, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 14.64519757413856, - "c2": 19.412422153235237, - "c3": -24.888844999566025, - "c4": 25.732466423955774, - "c5": -5.643211525308871, - "c6": 9.342252633218212, - "c7": 20.648176254538033 + "points": { + "c1": -11.827521439991123, + "c2": -3.883800032070564, + "c3": 27.484427664509163, + "c4": 26.520971891511174, + "c5": 14.995787879206787, + "c6": 24.779130309832425, + "c7": 2.738626781889259 }, - "vertexSeeds": { - "c1": 4.8409264660228315, - "c2": 4.963830062822619, - "c3": 4.971259684295015, - "c4": 4.917795204225479, - "c5": 4.976763191097195, - "c6": 4.8775439290336395, - "c7": 4.895496609792634 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.21220527045771, + "c3": 6.01017105871473, + "c4": 4.8081368469717924, + "c5": 3.606102635228855, + "c6": 2.4040684234858962, + "c7": 1.202034211742959 }, "rgb": [222, 0, 59] }, @@ -258774,23 +258774,23 @@ "year": 1777, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 9.73500525187783, - "c2": 16.20908352095332, - "c3": -24.21364848442632, - "c4": 7.327258464076891, - "c5": 15.358695156260218, - "c6": -17.240531975065036, - "c7": 29.315428375757776 + "points": { + "c1": -24.553488176221013, + "c2": 19.530559477883706, + "c3": -7.722692435465326, + "c4": 28.797816196518596, + "c5": -33.28806960776174, + "c6": 25.104295269800645, + "c7": -1.5058236058056451 }, - "vertexSeeds": { - "c1": 12.274086452505886, - "c2": 12.863159300218092, - "c3": 12.082847098666559, - "c4": 12.868359735461548, - "c5": 12.724008509447243, - "c6": 11.872571633298893, - "c7": 11.756183062385485 + "offsets": { + "c1": 22.006472491909385, + "c2": 18.862690707350918, + "c3": 15.718908922792423, + "c4": 12.575127138233926, + "c5": 9.431345353675459, + "c6": 6.287563569116994, + "c7": 3.143781784558497 }, "rgb": [222, 0, 59] }, @@ -258801,23 +258801,23 @@ "year": 1777, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 4.497511466698292, - "c2": -26.93072870202488, - "c3": -17.291822192079877, - "c4": 17.2861803190141, - "c5": -28.473512688654143, - "c6": 28.959637421640323, - "c7": -17.127354434555716 + "points": { + "c1": -14.595772701768407, + "c2": -0.5308597039579936, + "c3": -13.715371734189002, + "c4": -19.107421295611772, + "c5": 0.4838337164976778, + "c6": 10.656980172078562, + "c7": 5.407337308051282 }, - "vertexSeeds": { - "c1": 2.1473532382590625, - "c2": 2.22634972834137, - "c3": 2.1850622032890157, - "c4": 2.2930950159010037, - "c5": 2.272280118906694, - "c6": 2.0818148878918334, - "c7": 2.167939345934053 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826631, + "c3": 2.7739251040221906, + "c4": 2.219140083217754, + "c5": 1.6643550624133134, + "c6": 1.109570041608877, + "c7": 0.5547850208044405 }, "rgb": [77, 76, 132] }, @@ -258828,23 +258828,23 @@ "year": 1777, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 38.983092338532586, - "c2": -30.004552882977347, - "c3": -26.550873006143316, - "c4": 10.282890863475792, - "c5": -23.77035465482956, - "c6": -16.403282488238386, - "c7": 20.086435626761578 + "points": { + "c1": 17.130253218561485, + "c2": 38.81647471466778, + "c3": 42.14063104447381, + "c4": -0.03313344137895058, + "c5": -42.466237322803615, + "c6": -4.521494491477057, + "c7": 29.20383282264916 }, - "vertexSeeds": { - "c1": 6.398452080390804, - "c2": 6.891113239974941, - "c3": 6.513965767709399, - "c4": 6.937980910494093, - "c5": 6.747233183494295, - "c6": 6.547946451172593, - "c7": 6.569712585291829 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -258855,23 +258855,23 @@ "year": 1777, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -44.20150939182895, - "c2": 7.352166141395244, - "c3": -27.809720406136204, - "c4": -30.596493241613196, - "c5": -14.44251169825488, - "c6": 1.832993284543896, - "c7": -43.738823263226585 + "points": { + "c1": -14.386629793409533, + "c2": -42.97759900637362, + "c3": 9.664005115613868, + "c4": -38.97355871484561, + "c5": 40.31850835779768, + "c6": 2.2630725349958, + "c7": 12.471954640015916 }, - "vertexSeeds": { - "c1": 5.365111997348806, - "c2": 5.31122743920989, - "c3": 5.280309233052796, - "c4": 5.383055031339812, - "c5": 5.126925521644312, - "c6": 5.041717063316062, - "c7": 5.147700307083474 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.73925104022192, + "c3": 6.449375866851587, + "c4": 5.159500693481273, + "c5": 3.86962552011096, + "c6": 2.5797503467406266, + "c7": 1.2898751733703133 }, "rgb": [222, 0, 59] }, @@ -258882,23 +258882,23 @@ "year": 1777, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -21.79992082018912, - "c2": -34.25377007507037, - "c3": -33.865984807059405, - "c4": -6.536023242314634, - "c5": 16.175464631092893, - "c6": -30.26723828691002, - "c7": 5.841276457065916 + "points": { + "c1": 30.049702163263937, + "c2": -29.336256085709522, + "c3": -11.975907232310906, + "c4": 7.813535900275326, + "c5": 11.61888561541386, + "c6": 21.735481829746668, + "c7": -22.15523362417669 }, - "vertexSeeds": { - "c1": 9.786671445728041, - "c2": 8.973312652730327, - "c3": 9.15112088344745, - "c4": 9.120219690723026, - "c5": 10.042962165124827, - "c6": 9.58265177796833, - "c7": 9.21098116627577 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.979195561719827, + "c3": 12.482662968099847, + "c4": 9.986130374479892, + "c5": 7.4895977808599135, + "c6": 4.993065187239933, + "c7": 2.4965325936199667 }, "rgb": [222, 0, 59] }, @@ -258909,23 +258909,23 @@ "year": 1777, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 1.3636127235506805, - "c2": -23.803377731602943, - "c3": 20.07662961038337, - "c4": -24.913951932876184, - "c5": -15.403868774311684, - "c6": -25.071868913771787, - "c7": -26.01623623776352 + "points": { + "c1": 2.340076810967382, + "c2": -31.677719544094476, + "c3": 21.88044761861488, + "c4": 23.092177838852457, + "c5": 18.065789326835272, + "c6": 18.781050310196058, + "c7": -29.283032385778615 }, - "vertexSeeds": { - "c1": 5.8424301172632465, - "c2": 6.023271126412256, - "c3": 6.276377805307856, - "c4": 5.93646250151358, - "c5": 6.113685837931898, - "c6": 5.9268646302027825, - "c7": 6.067689447265695 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [238, 201, 159] }, @@ -258936,23 +258936,23 @@ "year": 1777, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 23.171550037703966, - "c2": -4.1564207037551455, - "c3": -30.021868148203605, - "c4": 16.0475450491505, - "c5": 24.6805876661667, - "c6": 28.739767488619684, - "c7": 15.233041592752862 + "points": { + "c1": -32.581141853481796, + "c2": -8.85756461880558, + "c3": 27.9460872985235, + "c4": -17.75028005274442, + "c5": 10.973198467001723, + "c6": -31.705711082626266, + "c7": 11.06814882338741 }, - "vertexSeeds": { - "c1": 10.154354404697171, - "c2": 10.154765991573964, - "c3": 10.132025295211934, - "c4": 10.151226852208257, - "c5": 10.176585838168005, - "c6": 10.15599745388584, - "c7": 10.148632393151665 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116413, + "c3": 12.135922330096903, + "c4": 9.708737864077394, + "c5": 7.281553398058529, + "c6": 4.854368932039018, + "c7": 2.427184466019509 }, "rgb": [58, 15, 49] }, @@ -258963,23 +258963,23 @@ "year": 1776, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 19.8960491328885, - "c2": 2.340526880066239, - "c3": 25.969496430668144, - "c4": -20.243151781688866, - "c5": -10.35725985582552, - "c6": -20.13905669195781, - "c7": 12.021164016624482 + "points": { + "c1": 22.654605406606713, + "c2": -15.765537969683592, + "c3": -11.518398183059013, + "c4": 25.848849327002938, + "c5": -28.002240773118938, + "c6": 17.23014688790886, + "c7": 15.552058324495185 }, - "vertexSeeds": { - "c1": 4.7019444548497935, - "c2": 4.585093737380598, - "c3": 4.676421858847818, - "c4": 4.614423871831853, - "c5": 4.646374654926611, - "c6": 4.37624883275753, - "c7": 4.792525610900882 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055481, + "c3": 5.779010633379564, + "c4": 4.623208506703654, + "c5": 3.467406380027737, + "c6": 2.311604253351827, + "c7": 1.1558021266759098 }, "rgb": [86, 146, 138] }, @@ -258990,23 +258990,23 @@ "year": 1777, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -10.64824947495934, - "c2": -20.55495233979611, - "c3": 9.38279595733664, - "c4": -2.910447460241034, - "c5": 7.354930891105425, - "c6": -27.752421133833103, - "c7": 16.18506198007568 + "points": { + "c1": 20.166168257720557, + "c2": 0.20984774679699214, + "c3": -0.7335127056283461, + "c4": -12.780111419068188, + "c5": 19.791331594383315, + "c6": 16.41759122419076, + "c7": 20.604747916595315 }, - "vertexSeeds": { - "c1": 4.254029113665814, - "c2": 4.193079722968565, - "c3": 4.276194217741729, - "c4": 4.216697657912637, - "c5": 4.2915858986278215, - "c6": 4.2727975102083215, - "c7": 4.200056594725453 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929267, + "c3": 5.131761442441058, + "c4": 4.105409153952835, + "c5": 3.0790568654646266, + "c6": 2.0527045769764176, + "c7": 1.0263522884882088 }, "rgb": [222, 0, 59] }, @@ -259017,23 +259017,23 @@ "year": 1776, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 11.908196665535275, - "c2": 26.034458533058658, - "c3": 15.583826832218822, - "c4": 10.821932519853494, - "c5": -19.142843907534797, - "c6": 2.9973985806775616, - "c7": -6.053385970267751 + "points": { + "c1": -26.750210478639346, + "c2": 6.93358938100646, + "c3": 19.239018435918215, + "c4": -1.766893279887693, + "c5": 28.83477131072893, + "c6": 22.960623913577773, + "c7": -12.341108702510233 }, - "vertexSeeds": { - "c1": 9.437048126042585, - "c2": 9.687107885295786, - "c3": 9.447590925535431, - "c4": 9.712491191821323, - "c5": 9.768622129544214, - "c6": 9.076675439843987, - "c7": 8.980648663710532 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312064, + "c3": 11.673601479426722, + "c4": 9.338881183541377, + "c5": 7.004160887656032, + "c6": 4.669440591770688, + "c7": 2.334720295885344 }, "rgb": [58, 15, 49] }, @@ -259044,23 +259044,23 @@ "year": 1777, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 24.00829932339994, - "c2": -25.591564239308692, - "c3": 18.783832756327385, - "c4": 5.140365274831481, - "c5": 26.436366123604948, - "c6": -25.43820736751645, - "c7": 18.69058057497925 + "points": { + "c1": -7.5965791256705195, + "c2": 20.18554143931982, + "c3": -6.509720648177954, + "c4": -8.67821151086979, + "c5": 12.622055218839904, + "c6": -25.321734398813355, + "c7": -18.445037931290084 }, - "vertexSeeds": { - "c1": 6.88401847341085, - "c2": 6.918820674399349, - "c3": 6.627611335502187, - "c4": 6.650287863298947, - "c5": 6.5584965652075295, - "c6": 6.6393308134695905, - "c7": 6.84177751194395 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -259071,23 +259071,23 @@ "year": 1777, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 1.5559255274784434, - "c2": -0.27566089538639105, - "c3": -15.526424278753254, - "c4": -17.97108879192332, - "c5": -7.90852885090327, - "c6": 5.718020325646858, - "c7": -7.748310381129354 + "points": { + "c1": -13.07308545183663, + "c2": 11.380953106957104, + "c3": -28.367142464084978, + "c4": -0.2714179678854478, + "c5": -13.009793348762017, + "c6": 12.568818851045823, + "c7": 11.943728723701351 }, - "vertexSeeds": { - "c1": 6.774010465305564, - "c2": 6.585476895472278, - "c3": 6.91320832877315, - "c4": 6.878268309255075, - "c5": 6.62309165279908, - "c6": 6.9460115600024155, - "c7": 6.786626325607526 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -259098,23 +259098,23 @@ "year": 1777, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 35.34148685520914, - "c2": -37.66248828810092, - "c3": 1.63822529122573, - "c4": -37.055496012797526, - "c5": -30.430092039869596, - "c6": -2.1939859756877453, - "c7": -32.81800000873517 + "points": { + "c1": -36.04336217973227, + "c2": -7.854806610988462, + "c3": -27.44747378512995, + "c4": 36.42827835489416, + "c5": 29.446357492883138, + "c6": 38.96914341656199, + "c7": -39.39678407246712 }, - "vertexSeeds": { - "c1": 6.131821658823151, - "c2": 6.536080611622667, - "c3": 6.387896228900603, - "c4": 6.604069933858186, - "c5": 6.9884643253112, - "c6": 7.103555953152648, - "c7": 6.446827818108707 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [77, 76, 132] }, @@ -259125,23 +259125,23 @@ "year": 1777, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 6.051435823121945, - "c2": 3.6618614645885934, - "c3": 26.42374147745824, - "c4": -17.24615830569703, - "c5": -8.916226713503342, - "c6": 8.498166955283455, - "c7": 24.269447910079432 + "points": { + "c1": 21.47241913466109, + "c2": 3.178620921860311, + "c3": 24.68166083345326, + "c4": -23.973665332371947, + "c5": 18.04886853590759, + "c6": -14.384287082259583, + "c7": -13.616182610757063 }, - "vertexSeeds": { - "c1": 4.108821254440463, - "c2": 3.8802230984128134, - "c3": 4.037379013322033, - "c4": 3.9756267587994225, - "c5": 3.8104636070613105, - "c6": 4.134206797953609, - "c7": 3.912796309128449 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [58, 15, 49] }, @@ -259152,23 +259152,23 @@ "year": 1777, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 39.0703681548506, - "c2": 13.889716608328833, - "c3": 29.85295067140042, - "c4": -36.01199054986369, - "c5": -4.728758527293536, - "c6": 21.258795705978827, - "c7": 14.238663762175733 + "points": { + "c1": 38.230980477291524, + "c2": 29.165978596176714, + "c3": 31.898570032473316, + "c4": 7.906055737551668, + "c5": -26.03389075122879, + "c6": -18.424324647458125, + "c7": 32.676361856147295 }, - "vertexSeeds": { - "c1": 6.110725611128415, - "c2": 6.088686089012473, - "c3": 6.416193257890102, - "c4": 6.496609282933519, - "c5": 6.254357384625147, - "c6": 6.158883581038233, - "c7": 6.001610167234278 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514571, + "c3": 7.766990291262134, + "c4": 6.213592233009713, + "c5": 4.660194174757277, + "c6": 3.1067961165048565, + "c7": 1.5533980582524198 }, "rgb": [77, 76, 132] }, @@ -259179,23 +259179,23 @@ "year": 1777, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 22.12070726600838, - "c2": 23.80114242930638, - "c3": 6.631877929750658, - "c4": 25.825280581441135, - "c5": 26.286725963652913, - "c6": 2.8804706637353306, - "c7": -21.058728158197955 + "points": { + "c1": -11.585256079977192, + "c2": 17.542066406671957, + "c3": -17.419053959126778, + "c4": 21.987482191189784, + "c5": 8.144435336824863, + "c6": 2.696819559516605, + "c7": -26.335378377300408 }, - "vertexSeeds": { - "c1": 6.977065245645054, - "c2": 7.068378171504704, - "c3": 7.016806499571499, - "c4": 7.155338210913008, - "c5": 7.152023364010902, - "c6": 7.136368519412585, - "c7": 7.07978199450922 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882125, + "c3": 8.55293573740173, + "c4": 6.8423485899213965, + "c5": 5.1317614424410625, + "c6": 3.421174294960729, + "c7": 1.7105871474803336 }, "rgb": [58, 15, 49] }, @@ -259206,23 +259206,23 @@ "year": 1777, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -12.04656334902019, - "c2": 23.793441454490157, - "c3": 24.995271944802404, - "c4": -0.9975852936013894, - "c5": -15.803396384375095, - "c6": 28.702455865564822, - "c7": -1.9700406851477652 + "points": { + "c1": -17.29726192337328, + "c2": -10.933196521274606, + "c3": 24.505340711805943, + "c4": -21.31616469146744, + "c5": -25.426685561829288, + "c6": 16.80922738754259, + "c7": -27.983557134973164 }, - "vertexSeeds": { - "c1": 4.964864847685913, - "c2": 4.90733187115817, - "c3": 4.607900259817737, - "c4": 4.904707273363487, - "c5": 5.045573758869257, - "c6": 4.60937836450645, - "c7": 5.202778031178022 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859915, + "c3": 6.241331484049927, + "c4": 4.993065187239945, + "c5": 3.7447988904299576, + "c6": 2.49653259361997, + "c7": 1.2482662968099814 }, "rgb": [58, 15, 49] }, @@ -259233,23 +259233,23 @@ "year": 1777, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 31.202998240890913, - "c2": -5.538246783688962, - "c3": -22.391162242377376, - "c4": 30.622340214520186, - "c5": -32.51735212253194, - "c6": 28.23880818040133, - "c7": -6.110914765041599 + "points": { + "c1": -23.379911799158187, + "c2": -11.544684206088096, + "c3": 29.743647434978804, + "c4": -4.951578654703482, + "c5": -12.857999016987893, + "c6": -30.10653071626463, + "c7": 3.4202230485837006 }, - "vertexSeeds": { - "c1": 10.600286797421612, - "c2": 10.469878748410636, - "c3": 9.696590083516936, - "c4": 10.46397212324627, - "c5": 10.22287713608694, - "c6": 9.723744459713311, - "c7": 10.875894272324455 + "offsets": { + "c1": 18.705501618122977, + "c2": 16.03328710124827, + "c3": 13.361072584373563, + "c4": 10.688858067498856, + "c5": 8.01664355062412, + "c6": 5.344429033749415, + "c7": 2.6722145168747073 }, "rgb": [86, 146, 138] }, @@ -259260,23 +259260,23 @@ "year": 1777, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 11.803147183561748, - "c2": -17.04575128189592, - "c3": -6.573620107356643, - "c4": -15.975073681182652, - "c5": 2.3825493261021045, - "c6": -1.6153513732624774, - "c7": -2.6937143504293743 + "points": { + "c1": 10.374552952927665, + "c2": 13.105673338871306, + "c3": -14.407124551691483, + "c4": 2.083904329309476, + "c5": -11.788473926728294, + "c6": 1.651794326564758, + "c7": -4.8717887988666355 }, - "vertexSeeds": { - "c1": 7.905428870010914, - "c2": 7.9378442736098265, - "c3": 7.898916761679047, - "c4": 7.938774022300104, - "c5": 7.919693057471572, - "c6": 7.944038532646628, - "c7": 7.889824217351925 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490914, + "c3": 9.477577438742594, + "c4": 7.582061950994026, + "c5": 5.686546463245457, + "c6": 3.7910309754968874, + "c7": 1.8955154877485692 }, "rgb": [86, 146, 138] }, @@ -259287,23 +259287,23 @@ "year": 1777, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -9.710136603947895, - "c2": 39.909943273060776, - "c3": -33.840498428365095, - "c4": -6.631204969823173, - "c5": 44.167575483841645, - "c6": 10.486692748031402, - "c7": 46.8116915406093 + "points": { + "c1": 13.438799921688926, + "c2": -10.416557726376666, + "c3": -46.67231804017639, + "c4": 38.11583735933182, + "c5": -14.879533058949512, + "c6": 43.770862796106954, + "c7": -52.04319902791917 }, - "vertexSeeds": { - "c1": 6.557826285140024, - "c2": 6.160554837532341, - "c3": 6.71156739460803, - "c4": 6.663409613364143, - "c5": 5.928086161254524, - "c6": 5.852633322535609, - "c7": 5.825420127611205 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [58, 15, 49] }, @@ -259314,23 +259314,23 @@ "year": 1777, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 13.622479835554778, - "c2": 20.35507119469966, - "c3": 8.582320083149241, - "c4": -10.709051760018866, - "c5": -15.217781599505184, - "c6": 3.970073840600378, - "c7": -27.194192203329642 + "points": { + "c1": -9.256247736911465, + "c2": -15.319386444363701, + "c3": -17.2429929452013, + "c4": 13.837649188463892, + "c5": -26.22601888362536, + "c6": -31.413151312585583, + "c7": 7.352225767440814 }, - "vertexSeeds": { - "c1": 5.785148750467096, - "c2": 5.822330571453439, - "c3": 5.865520676181397, - "c4": 5.818681760860207, - "c5": 5.752966335588041, - "c6": 5.7688980984767575, - "c7": 5.825825238858042 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.40499306518724, + "c3": 7.004160887656034, + "c4": 5.603328710124827, + "c5": 4.20249653259362, + "c6": 2.8016643550624134, + "c7": 1.4008321775312067 }, "rgb": [77, 76, 132] }, @@ -259341,23 +259341,23 @@ "year": 1777, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -1.2867006545130906, - "c2": -2.413668744795281, - "c3": -21.990445103539624, - "c4": -9.203666299369203, - "c5": -5.141680501406636, - "c6": -19.309138801059756, - "c7": -12.866424516801157 + "points": { + "c1": 8.745078723103322, + "c2": 5.83340431651126, + "c3": -14.730558318699254, + "c4": 2.4800765761243575, + "c5": -25.28154744943834, + "c6": -18.86830068463737, + "c7": 20.80170212399398 }, - "vertexSeeds": { - "c1": 4.046913151302838, - "c2": 4.033362934194506, - "c3": 3.944477007259974, - "c4": 3.7727146630204778, - "c5": 3.9564766508199543, - "c6": 4.026104678632492, - "c7": 3.7760738089688304 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [238, 201, 159] }, @@ -259368,23 +259368,23 @@ "year": 1777, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -13.086656985037584, - "c2": 4.414827532238522, - "c3": -0.47115464288416575, - "c4": 21.45146136307896, - "c5": 3.90690291932658, - "c6": -12.581416452535409, - "c7": 18.892327433856078 + "points": { + "c1": 20.401682014445345, + "c2": -26.614347877809628, + "c3": -4.568676276681771, + "c4": 16.760086492280845, + "c5": -3.3312876357823527, + "c6": -16.126204580834152, + "c7": 29.757276689343943 }, - "vertexSeeds": { - "c1": 2.1458614294635985, - "c2": 1.7938663593060338, - "c3": 2.2339909850109523, - "c4": 1.9426426574524895, - "c5": 2.0946048911202926, - "c6": 1.8558698903613742, - "c7": 1.7940113568841158 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.2177531206657415, + "c3": 2.6814609338881192, + "c4": 2.1451687471104948, + "c5": 1.6088765603328707, + "c6": 1.0725843735552485, + "c7": 0.5362921867776242 }, "rgb": [86, 146, 138] }, @@ -259395,23 +259395,23 @@ "year": 1777, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 10.830121806439124, - "c2": 7.942819789374134, - "c3": -0.590985672789138, - "c4": -31.16275484839044, - "c5": -27.43173785819162, - "c6": 0.7511623456832126, - "c7": 25.124974281664016 + "points": { + "c1": -25.314985237651555, + "c2": 14.586874344272942, + "c3": -16.11124365403325, + "c4": -39.09913511768767, + "c5": -6.608404886089573, + "c6": -14.227536956639625, + "c7": -31.551734614911254 }, - "vertexSeeds": { - "c1": 12.394617262467222, - "c2": 12.347506795966337, - "c3": 12.356079892793101, - "c4": 12.34066542841721, - "c5": 12.404782665900386, - "c6": 12.53069159555535, - "c7": 12.434069168260125 + "offsets": { + "c1": 21.003236245954692, + "c2": 18.00277392510404, + "c3": 15.00231160425339, + "c4": 12.001849283402606, + "c5": 9.001386962551955, + "c6": 6.000924641701303, + "c7": 3.0004623208506516 }, "rgb": [238, 201, 159] }, @@ -259422,23 +259422,23 @@ "year": 1777, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -14.072469398017578, - "c2": -30.141772513819014, - "c3": 40.35954816044567, - "c4": -6.368045322466408, - "c5": 22.8384526541643, - "c6": -36.4633397910424, - "c7": -34.61904070127049 + "points": { + "c1": 24.96915621128204, + "c2": -17.84898730929407, + "c3": 0.7210145291934396, + "c4": 30.350856420796077, + "c5": 37.641037741717994, + "c6": 20.222859063926265, + "c7": 4.244948925540356 }, - "vertexSeeds": { - "c1": 3.945056410793555, - "c2": 3.903819045891479, - "c3": 3.9468756213608818, - "c4": 4.07757284355239, - "c5": 3.975049355126885, - "c6": 3.937834269443205, - "c7": 3.921060964781488 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [86, 146, 138] }, @@ -259449,23 +259449,23 @@ "year": 1777, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 2.635304235075349, - "c2": 16.346146479222185, - "c3": 15.80413213370172, - "c4": -0.5183303777633483, - "c5": -5.483977450086893, - "c6": 15.403698859856917, - "c7": 17.555873563528074 + "points": { + "c1": -10.659894096913753, + "c2": 21.211215927386327, + "c3": -12.06185627762476, + "c4": -22.393784454476847, + "c5": 16.305368406968284, + "c6": 17.819987926086164, + "c7": -0.42251967842690874 }, - "vertexSeeds": { - "c1": 10.627937125488593, - "c2": 10.573700825543677, - "c3": 10.678271498477157, - "c4": 10.698301484603444, - "c5": 10.68025353345474, - "c6": 10.670428790536464, - "c7": 10.649614585700101 + "offsets": { + "c1": 17.89644012944984, + "c2": 15.339805825242792, + "c3": 12.78317152103549, + "c4": 10.226537216828444, + "c5": 7.669902912621396, + "c6": 5.113268608414349, + "c7": 2.5566343042070474 }, "rgb": [77, 76, 132] }, @@ -259476,23 +259476,23 @@ "year": 1777, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -25.64858879387986, - "c2": 6.751222378833823, - "c3": -10.017517796303014, - "c4": -8.976409761080813, - "c5": 21.04089391729603, - "c6": 8.363424715720264, - "c7": -29.788222057656736 + "points": { + "c1": 1.8906741692624252, + "c2": 27.543385349242115, + "c3": 3.6866787535442214, + "c4": 31.126207570957135, + "c5": -26.984596714181425, + "c6": -5.210117285059056, + "c7": -4.436522649280235 }, - "vertexSeeds": { - "c1": 4.393815388152925, - "c2": 4.133974236473287, - "c3": 4.3126487707738175, - "c4": 3.866264220001462, - "c5": 3.9317491322445957, - "c6": 4.01852506158769, - "c7": 4.269307736413922 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255187, + "c6": 2.1266759130836816, + "c7": 1.0633379565418375 }, "rgb": [77, 76, 132] }, @@ -259503,23 +259503,23 @@ "year": 1777, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -0.34331087141676164, - "c2": 10.102870351032351, - "c3": 6.770589251284086, - "c4": -14.071273047204876, - "c5": 10.723978095069725, - "c6": -10.23849394326657, - "c7": 4.084904536593431 + "points": { + "c1": 18.025319830596768, + "c2": 18.466410855431267, + "c3": 1.9958988043132813, + "c4": -6.515116621144742, + "c5": 4.527532055343222, + "c6": -6.213469035280916, + "c7": 21.535596043028935 }, - "vertexSeeds": { - "c1": 4.055866562019068, - "c2": 3.8315974838447326, - "c3": 3.9949108574858982, - "c4": 3.8865130818665783, - "c5": 3.792154744574165, - "c6": 3.881217369495396, - "c7": 4.00604100688343 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [238, 201, 159] }, @@ -259530,23 +259530,23 @@ "year": 1777, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 1.1210685056605598, - "c2": -26.43219215277682, - "c3": 5.003718701207049, - "c4": -12.389116464762267, - "c5": -29.036764896092155, - "c6": 1.2748754993005136, - "c7": 27.53833776717773 + "points": { + "c1": 9.253844623385028, + "c2": -3.3640205468664917, + "c3": -20.402031573568635, + "c4": -10.718086960277052, + "c5": -29.684783149576035, + "c6": 26.589248302212127, + "c7": 10.362059926586845 }, - "vertexSeeds": { - "c1": 1.8942890141956275, - "c2": 1.8762808823049317, - "c3": 1.9180193203183582, - "c4": 1.867939241308678, - "c5": 1.886834478500595, - "c6": 1.9201055021091724, - "c7": 1.8885097897096694 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022189, + "c3": 2.3116042533518217, + "c4": 1.8492834026814542, + "c5": 1.3869625520111022, + "c6": 0.9246417013407349, + "c7": 0.46232085067036743 }, "rgb": [238, 201, 159] }, @@ -259557,23 +259557,23 @@ "year": 1777, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 12.210294086627364, - "c2": -35.29038094131803, - "c3": -23.555851682118842, - "c4": 3.2650725670807574, - "c5": 41.797614462441075, - "c6": 23.856313392681244, - "c7": 38.96249089822395 + "points": { + "c1": -3.1768579879238885, + "c2": -47.772786953964356, + "c3": -43.04808862579054, + "c4": -34.18575730658898, + "c5": 32.78436477221911, + "c6": -23.22741510860594, + "c7": 31.592400131808418 }, - "vertexSeeds": { - "c1": 6.51669011649374, - "c2": 6.590423790414267, - "c3": 6.237564250743788, - "c4": 6.710687405235165, - "c5": 6.36635832097953, - "c6": 6.124949487433354, - "c7": 6.412148248472544 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110956998, + "c3": 8.021266759130846, + "c4": 6.4170134073046725, + "c5": 4.812760055478499, + "c6": 3.208506703652326, + "c7": 1.6042533518261732 }, "rgb": [86, 146, 138] }, @@ -259584,23 +259584,23 @@ "year": 1777, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -38.45703449336984, - "c2": -15.976376835565262, - "c3": -16.228028259614216, - "c4": 8.940140425730469, - "c5": 33.721067908871376, - "c6": -31.71831472765728, - "c7": 9.934090873135638 + "points": { + "c1": 32.719738937591416, + "c2": 22.674338547868288, + "c3": 1.4775162982948657, + "c4": -3.4956210965082803, + "c5": 0.9224859808950541, + "c6": -15.114655274390422, + "c7": -9.297952729056313 }, - "vertexSeeds": { - "c1": 5.021565888193082, - "c2": 5.116637397259173, - "c3": 5.322038115226524, - "c4": 4.793990229376575, - "c5": 5.201458577951309, - "c6": 5.121125718403686, - "c7": 5.126039027643928 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583916, + "c3": 6.657420249653255, + "c4": 5.325936199722608, + "c5": 3.994452149791961, + "c6": 2.662968099861301, + "c7": 1.3314840499306535 }, "rgb": [222, 0, 59] }, @@ -259611,23 +259611,23 @@ "year": 1777, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -30.578194118634265, - "c2": -2.3570620729544203, - "c3": 2.3947823405884847, - "c4": 6.324196725612104, - "c5": 26.080727978201423, - "c6": 19.84960522032477, - "c7": -26.726358695268058 + "points": { + "c1": -13.494773628799315, + "c2": -25.65301832151641, + "c3": 3.0492814974667084, + "c4": -6.6727949750132005, + "c5": -23.209685912063943, + "c6": -31.126174230274557, + "c7": 7.137840061510836 }, - "vertexSeeds": { - "c1": 4.94584135447453, - "c2": 4.993120663137251, - "c3": 5.135664172385809, - "c4": 4.877998203741933, - "c5": 5.107128214040201, - "c6": 4.917048992013148, - "c7": 5.180512453289327 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.43411927877948, + "c3": 6.195099398982882, + "c4": 4.956079519186311, + "c5": 3.71705963938974, + "c6": 2.4780397595931554, + "c7": 1.2390198797965846 }, "rgb": [238, 201, 159] }, @@ -259638,23 +259638,23 @@ "year": 1777, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": 6.578910455539997, - "c2": 13.91488467347665, - "c3": -0.8035516419179913, - "c4": 3.903067313134539, - "c5": 11.570071447453941, - "c6": 8.42462549389181, - "c7": 15.372090721925417 + "points": { + "c1": -14.611963486849067, + "c2": 3.0090883393984598, + "c3": 10.038876708597304, + "c4": -9.447259135219182, + "c5": -4.487226316077194, + "c6": -5.449018604393846, + "c7": 7.075731809675947 }, - "vertexSeeds": { - "c1": 6.675796774115512, - "c2": 6.933134047689681, - "c3": 6.528041089502825, - "c4": 6.82946202898703, - "c5": 6.955390116597136, - "c6": 6.765807857199147, - "c7": 6.541472004288261 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -259665,23 +259665,23 @@ "year": 1777, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 18.151719372687893, - "c2": 2.8402755884421893, - "c3": 1.2520716069681086, - "c4": 21.488782694693654, - "c5": -5.04749185258019, - "c6": 1.595618935071176, - "c7": -21.40535495833994 + "points": { + "c1": 25.808876973208925, + "c2": -5.850706952919634, + "c3": -4.731874443226406, + "c4": 20.434988048145, + "c5": 7.972251109012795, + "c6": 19.153950632474036, + "c7": 22.994085848293906 }, - "vertexSeeds": { - "c1": 4.036992646703237, - "c2": 3.7751062736209624, - "c3": 3.780425510658059, - "c4": 3.904096731247563, - "c5": 4.0725590604405655, - "c6": 3.820235116279959, - "c7": 4.045444631815021 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.8529819694868195, + "c3": 4.877484974572353, + "c4": 3.9019879796578794, + "c5": 2.926490984743414, + "c6": 1.9509939898289397, + "c7": 0.9754969949144741 }, "rgb": [58, 15, 49] }, @@ -259692,23 +259692,23 @@ "year": 1777, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": 2.0833261285712155, - "c2": -2.1427125194079863, - "c3": -10.137936410230795, - "c4": -8.643907650701712, - "c5": 9.75767607073541, - "c6": -9.18794420782261, - "c7": -1.150134573226751 + "points": { + "c1": 1.5313632277501732, + "c2": -14.36182092570792, + "c3": 18.382940408404814, + "c4": -2.5057956284919882, + "c5": 16.35103056021896, + "c6": 2.577471744965191, + "c7": 19.000957893765552 }, - "vertexSeeds": { - "c1": 6.390276121962044, - "c2": 6.532616627475074, - "c3": 6.665816437826257, - "c4": 6.545048859383043, - "c5": 6.907361224500374, - "c6": 6.783668800060912, - "c7": 6.705215821146697 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -259719,23 +259719,23 @@ "year": 1777, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -13.414723723768706, - "c2": 16.102123693518777, - "c3": 18.152466304641756, - "c4": -9.056190277509133, - "c5": -4.456964816660792, - "c6": -17.467967688385695, - "c7": -5.339855476135321 + "points": { + "c1": -0.05481362188456984, + "c2": -2.0286190826510158, + "c3": 1.5148692102176327, + "c4": -16.13959871870221, + "c5": -18.62563787495641, + "c6": -1.6165119188441075, + "c7": 14.266524620278481 }, - "vertexSeeds": { - "c1": 3.8509657419002683, - "c2": 3.8836251996541002, - "c3": 3.995820745997764, - "c4": 3.878040890714858, - "c5": 4.115760532190513, - "c6": 3.8639268980436525, - "c7": 3.8163744015887304 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [77, 76, 132] }, @@ -259746,23 +259746,23 @@ "year": 1777, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": 10.22241978898936, - "c2": -12.368133811582975, - "c3": 17.97152360300052, - "c4": 18.318279097612724, - "c5": 13.230404808265078, - "c6": 8.560125667011299, - "c7": -6.578583454609282 + "points": { + "c1": 2.611530728684123, + "c2": -12.116782130613606, + "c3": -18.621573087379538, + "c4": 14.461437057835091, + "c5": 14.33030081231525, + "c6": -16.145181436284506, + "c7": 7.297936588704701 }, - "vertexSeeds": { - "c1": 4.010822790696008, - "c2": 3.8121100650448585, - "c3": 3.9475018188850575, - "c4": 3.9601787549365106, - "c5": 3.7750830938213653, - "c6": 4.03363122861133, - "c7": 3.881664049934078 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -259773,23 +259773,23 @@ "year": 1777, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -3.9821635824756676, - "c2": 13.677222854966505, - "c3": -2.4132349412722007, - "c4": -4.123876233915073, - "c5": 17.22490780619417, - "c6": 11.780909437755273, - "c7": -15.06684957927495 + "points": { + "c1": 2.1169702305657445, + "c2": 13.402748992074944, + "c3": 20.052283584899595, + "c4": 6.641130934178523, + "c5": 14.891277955351956, + "c6": -16.21796396717151, + "c7": -18.844735024655012 }, - "vertexSeeds": { - "c1": 3.0646192041824243, - "c2": 3.1990554275617527, - "c3": 3.016257936301641, - "c4": 2.9108217807993384, - "c5": 3.233279040105183, - "c6": 3.020375855574544, - "c7": 3.2534258987657605 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -259800,23 +259800,23 @@ "year": 1777, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 0.4745832543163431, - "c2": 5.512534802449196, - "c3": 19.07691487445296, - "c4": 35.44333242876765, - "c5": -33.909667416623485, - "c6": 4.214155565117267, - "c7": 0.20239588193881985 + "points": { + "c1": 22.994118035705128, + "c2": -14.814632073330259, + "c3": -28.56078601038417, + "c4": -24.717080549850614, + "c5": -33.022180897463755, + "c6": -8.665856587531366, + "c7": 17.10253258178384 }, - "vertexSeeds": { - "c1": 6.365767349922207, - "c2": 6.102229452252437, - "c3": 6.900881134153392, - "c4": 7.0905416371743835, - "c5": 6.136391809087823, - "c6": 6.365308861885893, - "c7": 6.740952349553451 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [222, 0, 59] }, @@ -259827,23 +259827,23 @@ "year": 1777, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 16.531506587056484, - "c2": -21.619658516381968, - "c3": -21.637232505677094, - "c4": 24.935745212923933, - "c5": 6.99019977323497, - "c6": 5.642761547685936, - "c7": -6.153138213986146 + "points": { + "c1": 4.1524766815908905, + "c2": -19.53019611233375, + "c3": -3.677793714326544, + "c4": 23.801468819468496, + "c5": -8.75454855869025, + "c6": -33.89555242298236, + "c7": 28.84220255600811 }, - "vertexSeeds": { - "c1": 7.695114786018712, - "c2": 7.562801497826532, - "c3": 7.62788347121991, - "c4": 7.570664874280252, - "c5": 7.729831010506105, - "c6": 7.577760443204231, - "c7": 7.671798772538288 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088745, + "c3": 9.246417013407335, + "c4": 7.397133610725854, + "c5": 5.547850208044372, + "c6": 3.6985668053628897, + "c7": 1.849283402681482 }, "rgb": [86, 146, 138] }, @@ -259854,23 +259854,23 @@ "year": 1777, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -1.9907148019624117, - "c2": -29.544569020752444, - "c3": 0.3656957672788934, - "c4": 3.25225362241639, - "c5": 34.35783000279032, - "c6": 9.809471300471635, - "c7": -31.184484974581963 + "points": { + "c1": -8.346124497959948, + "c2": 32.42615161673585, + "c3": -30.711892808370422, + "c4": 13.611616337761319, + "c5": 35.92802746672396, + "c6": 11.246914300126441, + "c7": -1.674828076035979 }, - "vertexSeeds": { - "c1": 8.39056637466942, - "c2": 9.010439664415767, - "c3": 9.714592332326376, - "c4": 8.639262601729238, - "c5": 9.197443412247326, - "c6": 9.270028429061897, - "c7": 9.191596638031056 + "offsets": { + "c1": 16.73139158576052, + "c2": 14.341192787794732, + "c3": 11.950993989828946, + "c4": 9.560795191863159, + "c5": 7.170596393897361, + "c6": 4.780397595931574, + "c7": 2.390198797965787 }, "rgb": [222, 0, 59] }, @@ -259881,23 +259881,23 @@ "year": 1778, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": -34.305469167885214, - "c2": 5.891894504807659, - "c3": -48.70224323842261, - "c4": -28.820952387003704, - "c5": 17.350695297745638, - "c6": -26.834732105939278, - "c7": -15.601327926299724 + "points": { + "c1": -33.10712226858922, + "c2": -24.662506722139806, + "c3": 14.122851965579734, + "c4": -1.693872061223253, + "c5": -43.7248530989749, + "c6": -6.651328625076026, + "c7": -53.80732128124078 }, - "vertexSeeds": { - "c1": 9.193526111402994, - "c2": 9.141982519561529, - "c3": 9.005700966759633, - "c4": 8.789078088450815, - "c5": 8.948909223356345, - "c6": 9.100957034958832, - "c7": 8.800064915821151 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789192, + "c3": 11.373092926490981, + "c4": 9.098474341192794, + "c5": 6.823855755894584, + "c6": 4.549237170596397, + "c7": 2.2746185852982097 }, "rgb": [58, 15, 49] }, @@ -259908,23 +259908,23 @@ "year": 1777, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": 15.735431979464568, - "c2": 1.209773544755727, - "c3": -7.135659937971365, - "c4": 0.6940315922555094, - "c5": -8.341248063671296, - "c6": 6.530273062950435, - "c7": -13.730113280797035 + "points": { + "c1": -11.045256766830056, + "c2": 13.106573323666598, + "c3": -6.533261498519442, + "c4": -11.944740290665562, + "c5": -3.8954845593877323, + "c6": -12.27797876624992, + "c7": 16.989741247581005 }, - "vertexSeeds": { - "c1": 6.545912747592599, - "c2": 6.885979961508953, - "c3": 6.648719087660294, - "c4": 6.4939930392373135, - "c5": 6.58198362608899, - "c6": 6.573194076124242, - "c7": 6.812549465643668 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -259935,23 +259935,23 @@ "year": 1777, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 12.016097538566413, - "c2": -9.401513099463624, - "c3": -17.723599144144814, - "c4": -20.018524171012565, - "c5": 12.922981926009406, - "c6": 30.071340465698682, - "c7": -38.59411743977478 + "points": { + "c1": 41.120893118621495, + "c2": 27.576579572947495, + "c3": -2.357002887105857, + "c4": -19.629324331053304, + "c5": 38.780082866933384, + "c6": -32.30675308623846, + "c7": 28.41155307875438 }, - "vertexSeeds": { - "c1": 10.148880561160098, - "c2": 10.627460494971269, - "c3": 10.291032789105206, - "c4": 10.496940491186855, - "c5": 10.311705178987175, - "c6": 10.744361751935054, - "c7": 10.352553580258686 + "offsets": { + "c1": 18.41423948220065, + "c2": 15.783633841886253, + "c3": 13.1530282015719, + "c4": 10.522422561257503, + "c5": 7.891816920943147, + "c6": 5.261211280628752, + "c7": 2.630605640314355 }, "rgb": [58, 15, 49] }, @@ -259962,23 +259962,23 @@ "year": 1777, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": -2.797087580078502, - "c2": 11.372635655385867, - "c3": 11.707932775801343, - "c4": -14.306281747337604, - "c5": -0.47494028331553295, - "c6": -10.2314082774067, - "c7": -7.326499300934476 + "points": { + "c1": 2.8339818302334763, + "c2": 2.9594679703976006, + "c3": -19.035720384895008, + "c4": 13.476094840231173, + "c5": -7.109072713574953, + "c6": 9.94567819728855, + "c7": -17.035588385098766 }, - "vertexSeeds": { - "c1": 3.222219482251845, - "c2": 3.239264682999115, - "c3": 3.205375913384909, - "c4": 3.2665192364306352, - "c5": 3.2790015568270525, - "c6": 3.2232484745289014, - "c7": 3.2602565552253235 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837716, + "c3": 3.9297272306980866, + "c4": 3.143781784558488, + "c5": 2.357836338418858, + "c6": 1.5718908922792283, + "c7": 0.7859454461395986 }, "rgb": [238, 201, 159] }, @@ -259989,23 +259989,23 @@ "year": 1777, "resistanceReported": false, "duration": 9244800, - "curveSeeds": { - "c1": 6.431792123119276, - "c2": 18.10430253582536, - "c3": -9.337722095473442, - "c4": 5.211134283090868, - "c5": 1.0457428024661368, - "c6": -8.480559198689482, - "c7": 14.65469799528853 + "points": { + "c1": -0.4342694823297357, + "c2": 9.745033614714082, + "c3": -3.572486452452903, + "c4": 14.29326222705167, + "c5": -6.751312536425562, + "c6": -14.913626677945576, + "c7": -18.825586511798814 }, - "vertexSeeds": { - "c1": 4.165557515695993, - "c2": 4.1101375399327535, - "c3": 3.969775163899927, - "c4": 4.010875218561424, - "c5": 4.131253508366166, - "c6": 4.158994814311492, - "c7": 4.1074645992017595 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687925, + "c3": 4.993065187239948, + "c4": 3.994452149791951, + "c5": 2.995839112343972, + "c6": 1.9972260748959756, + "c7": 0.9986130374479967 }, "rgb": [238, 201, 159] }, @@ -260016,23 +260016,23 @@ "year": 1777, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 18.910510060667647, - "c2": 20.513048493747924, - "c3": -30.788781731487084, - "c4": 44.12635806597137, - "c5": -22.61725985700403, - "c6": -21.457979520126436, - "c7": -4.651172552123434 + "points": { + "c1": 19.95808517143714, + "c2": 37.599550799857376, + "c3": 6.567080896899256, + "c4": -32.744244907434684, + "c5": 43.310466351331506, + "c6": 35.457668327984244, + "c7": 45.44364431338773 }, - "vertexSeeds": { - "c1": 3.2150660423124515, - "c2": 3.1659225576006214, - "c3": 3.111173287661004, - "c4": 3.1485381188940025, - "c5": 3.2379778015603735, - "c6": 3.0154860744570176, - "c7": 2.969408464128429 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -260043,23 +260043,23 @@ "year": 1778, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 7.346902866815597, - "c2": -23.40084795725999, - "c3": 5.429122333505838, - "c4": 15.42676850308812, - "c5": 23.811143290227825, - "c6": 16.23302711718889, - "c7": -9.107850556911181 + "points": { + "c1": -12.210566691951534, + "c2": 40.451443947620355, + "c3": -29.969937947470402, + "c4": 5.949452154501664, + "c5": -2.396472644245165, + "c6": 12.992760128654261, + "c7": -18.433600075538727 }, - "vertexSeeds": { - "c1": 3.8566124608024266, - "c2": 3.9770937120417407, - "c3": 3.9039408378911307, - "c4": 3.994007348304776, - "c5": 3.827430268318555, - "c6": 4.054639448558313, - "c7": 3.951295856236362 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -260070,23 +260070,23 @@ "year": 1777, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 22.781680856132965, - "c2": 0.1848878590029699, - "c3": -4.422214775622166, - "c4": 30.351509424476966, - "c5": -13.970827141534098, - "c6": -5.430755861534404, - "c7": 16.356215104629243 + "points": { + "c1": 16.057957412944802, + "c2": 24.95498384855385, + "c3": 29.065045927239517, + "c4": 18.704263037417917, + "c5": 10.462963351623678, + "c6": 1.5090550521598658, + "c7": 28.368395771820786 }, - "vertexSeeds": { - "c1": 1.1229392765552773, - "c2": 1.1346150771420052, - "c3": 1.1209700810558232, - "c4": 1.0347324315996704, - "c5": 1.1330956932570313, - "c6": 1.0995557656876107, - "c7": 1.0256820188010378 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133154, + "c3": 1.3869625520110953, + "c4": 1.109570041608877, + "c5": 0.8321775312066567, + "c6": 0.5547850208044385, + "c7": 0.27739251040222024 }, "rgb": [86, 146, 138] }, @@ -260097,23 +260097,23 @@ "year": 1777, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 0.5016883471599343, - "c2": 5.324187309663678, - "c3": -11.152099896213858, - "c4": 37.66833566156111, - "c5": 41.01307997263233, - "c6": 41.57422833632487, - "c7": 27.997278600653253 + "points": { + "c1": -21.78457498286386, + "c2": 27.85245316883711, + "c3": -38.87486739063713, + "c4": -22.69063141154279, + "c5": 31.686599261208777, + "c6": -40.74602208443273, + "c7": -4.449043485890876 }, - "vertexSeeds": { - "c1": 10.064766839378239, - "c2": 10.064766839378239, - "c3": 10.064766839378239, - "c4": 10.064766839378239, - "c5": 10.064766839378239, - "c6": 10.064766839378239, - "c7": 10.064766839378239 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -260124,23 +260124,23 @@ "year": 1777, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": -8.924726795483, - "c2": 3.9755159849735584, - "c3": 13.133981116854002, - "c4": 1.730893322920359, - "c5": 6.627888449522146, - "c6": -4.709946913487276, - "c7": -10.320940686868758 + "points": { + "c1": -12.77720254943132, + "c2": 7.608211911689285, + "c3": 12.04238639408495, + "c4": -13.449416165643397, + "c5": 15.462469185899945, + "c6": -4.754848150619855, + "c7": 2.3373527528728175 }, - "vertexSeeds": { - "c1": 3.874110386758389, - "c2": 3.837231475637877, - "c3": 3.9548261025226528, - "c4": 3.8045341755585387, - "c5": 3.945504605919605, - "c6": 4.037688352641517, - "c7": 3.9887376996129875 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [58, 15, 49] }, @@ -260151,23 +260151,23 @@ "year": 1777, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 11.720250813560277, - "c2": 1.6403970450808103, - "c3": -31.701236625564718, - "c4": 11.111092277486534, - "c5": 20.888816405529482, - "c6": -20.659848208549004, - "c7": 16.275220101570312 + "points": { + "c1": 34.82606473272159, + "c2": 9.40634112727615, + "c3": -12.944163203236194, + "c4": -33.62597404788943, + "c5": -15.68737170802218, + "c6": -2.415442387927051, + "c7": -28.1318893793619 }, - "vertexSeeds": { - "c1": 10.947488156311257, - "c2": 11.602973066822946, - "c3": 10.644361087647649, - "c4": 10.704588183938679, - "c5": 11.184884520154796, - "c6": 11.702857703103179, - "c7": 10.896720526507197 + "offsets": { + "c1": 19.54692556634304, + "c2": 16.754507628294036, + "c3": 13.96208969024503, + "c4": 11.169671752196024, + "c5": 8.377253814147018, + "c6": 5.584835876098012, + "c7": 2.792417938049006 }, "rgb": [222, 0, 59] }, @@ -260178,23 +260178,23 @@ "year": 1777, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 18.573510865684284, - "c2": 23.00541943858382, - "c3": -18.763224480324745, - "c4": 27.809826782338554, - "c5": 15.511405695155588, - "c6": 10.56240186388181, - "c7": -1.5791749261131045 + "points": { + "c1": 29.44717648790349, + "c2": 1.740980543977571, + "c3": 27.230961131604502, + "c4": -15.760584519207818, + "c5": 13.281671803102263, + "c6": 12.724409853386604, + "c7": 28.970161116500563 }, - "vertexSeeds": { - "c1": 3.215746552872687, - "c2": 2.9916168085666586, - "c3": 3.1370774283963896, - "c4": 3.2378060003171236, - "c5": 3.234112956003675, - "c6": 3.0065925603863564, - "c7": 3.108946291123139 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -260205,23 +260205,23 @@ "year": 1777, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 23.202940523615382, - "c2": -10.34237769269378, - "c3": 18.82911255609629, - "c4": 26.660602116008718, - "c5": 28.916673088354102, - "c6": 2.458173069174144, - "c7": -42.76482187945539 + "points": { + "c1": 26.33290105873762, + "c2": -35.39318442873556, + "c3": -16.010696994925684, + "c4": -16.736760183574194, + "c5": 42.46004010842232, + "c6": 43.951355367516, + "c7": -37.53823080994403 }, - "vertexSeeds": { - "c1": 5.826555720776518, - "c2": 5.831507594151042, - "c3": 5.850460234542593, - "c4": 5.864108412332643, - "c5": 5.779292442919843, - "c6": 5.854244898135902, - "c7": 5.783761791957837 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187224, + "c3": 7.004160887656002, + "c4": 5.603328710124779, + "c5": 4.202496532593668, + "c6": 2.8016643550624454, + "c7": 1.4008321775312227 }, "rgb": [86, 146, 138] }, @@ -260232,23 +260232,23 @@ "year": 1777, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -24.886974833802526, - "c2": 30.283260100203634, - "c3": 2.6649073049669667, - "c4": 20.50560288366917, - "c5": -8.013378774528942, - "c6": -13.719030686752344, - "c7": 29.00635442369849 + "points": { + "c1": 26.236215720318903, + "c2": 19.87062158524951, + "c3": -24.66327294747831, + "c4": 22.025762378208306, + "c5": -30.06826623726797, + "c6": -12.136520197008029, + "c7": -27.51006188245705 }, - "vertexSeeds": { - "c1": 6.208248830691462, - "c2": 6.147177670991513, - "c3": 6.504457781406068, - "c4": 6.142830965732173, - "c5": 6.23713245948767, - "c6": 6.340511539488767, - "c7": 6.439215795043294 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795646, + "c4": 6.232085067036513, + "c5": 4.674063800277402, + "c6": 3.1160425335182684, + "c7": 1.5580212667591342 }, "rgb": [238, 201, 159] }, @@ -260259,23 +260259,23 @@ "year": 1778, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -20.160783677085558, - "c2": 8.012205667249738, - "c3": 20.982651091642424, - "c4": 40.430313515956584, - "c5": 40.21132177421697, - "c6": -20.261776965483882, - "c7": -43.14305855395405 + "points": { + "c1": -0.9023595709968646, + "c2": -24.254966247925246, + "c3": -2.840046530300725, + "c4": 33.45195117047783, + "c5": 47.786783402072004, + "c6": -25.024219978782806, + "c7": 29.127666645205238 }, - "vertexSeeds": { - "c1": 4.141538284567332, - "c2": 4.542933658258891, - "c3": 4.137346155942699, - "c4": 4.800801808784402, - "c5": 4.79678051644947, - "c6": 4.350485924005608, - "c7": 4.306323229384909 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055479, + "c3": 5.779010633379563, + "c4": 4.623208506703651, + "c5": 3.4674063800277395, + "c6": 2.3116042533518284, + "c7": 1.155802126675911 }, "rgb": [58, 15, 49] }, @@ -260286,23 +260286,23 @@ "year": 1777, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 28.425546179574624, - "c2": 13.190088512935624, - "c3": -21.310302696801397, - "c4": 13.018377837491002, - "c5": 24.547122479086646, - "c6": 31.619883854457854, - "c7": 13.620884307421584 + "points": { + "c1": -8.49489198650912, + "c2": 10.241807057296434, + "c3": -7.877786188616085, + "c4": 33.09170437497991, + "c5": -1.169348797593159, + "c6": -27.689510409401947, + "c7": 18.99219957712971 }, - "vertexSeeds": { - "c1": 8.505546348798072, - "c2": 8.216054750395807, - "c3": 7.996112152643393, - "c4": 8.328566880865216, - "c5": 8.38292793459121, - "c6": 7.985425065680349, - "c7": 7.994144798932615 + "offsets": { + "c1": 14.627831715210357, + "c2": 12.538141470180316, + "c3": 10.448451225150253, + "c4": 8.358760980120211, + "c5": 6.269070735090147, + "c6": 4.1793804900601055, + "c7": 2.0896902450300625 }, "rgb": [238, 201, 159] }, @@ -260313,23 +260313,23 @@ "year": 1777, "resistanceReported": false, "duration": 1123200, - "curveSeeds": { - "c1": -10.282435680166309, - "c2": -6.670930043765499, - "c3": 9.082576558352962, - "c4": 1.3752537539039604, - "c5": 4.693998009012347, - "c6": 5.763325001736348, - "c7": 10.838825813185949 + "points": { + "c1": -4.397388929431084, + "c2": -9.165820751716995, + "c3": 6.536699926704184, + "c4": 0.37595814357038826, + "c5": 10.516857436586822, + "c6": -5.07398753459883, + "c7": -2.9476091573468644 }, - "vertexSeeds": { - "c1": 3.385966843732481, - "c2": 3.254565244779837, - "c3": 3.3572160450113975, - "c4": 3.325608255540334, - "c5": 3.336145084219253, - "c6": 3.419287753962573, - "c7": 3.1913370621376598 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033291, + "c4": 3.328710124826635, + "c5": 2.4965325936199787, + "c6": 1.6643550624133119, + "c7": 0.8321775312066559 }, "rgb": [77, 76, 132] }, @@ -260340,23 +260340,23 @@ "year": 1777, "resistanceReported": false, "duration": 1036800, - "curveSeeds": { - "c1": -6.0812185230433595, - "c2": -0.04726418838476931, - "c3": -2.963537409283438, - "c4": -3.7905717125220173, - "c5": -5.727740899104872, - "c6": 8.65679182097958, - "c7": -9.607997829214042 + "points": { + "c1": -3.8861410309855327, + "c2": 7.310021612695431, + "c3": 3.57918537713927, + "c4": -3.933330504899315, + "c5": -2.3063547077408977, + "c6": -3.099952805385831, + "c7": 5.405846132848806 }, - "vertexSeeds": { - "c1": 6.836273757403223, - "c2": 7.032330305461635, - "c3": 6.678459794822568, - "c4": 6.68350316554363, - "c5": 6.77029358165049, - "c6": 6.881367456695054, - "c7": 6.6192987602484505 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760056, + "c3": 8.391123439667137, + "c4": 6.712898751733691, + "c5": 5.034674063800268, + "c6": 3.3564493758668457, + "c7": 1.6782246879334228 }, "rgb": [222, 0, 59] }, @@ -260367,23 +260367,23 @@ "year": 1777, "resistanceReported": false, "duration": 604800, - "curveSeeds": { - "c1": -0.47208810753846286, - "c2": -9.613879357951436, - "c3": -6.778252081115366, - "c4": -0.7923682511191643, - "c5": 5.8455088556200785, - "c6": -0.1619648107774676, - "c7": -7.688245291118385 + "points": { + "c1": -9.707658479471947, + "c2": -10.064186106943414, + "c3": 9.167609789562572, + "c4": -10.08468841236043, + "c5": -8.257353141461259, + "c6": -1.5888833714763955, + "c7": -6.8921378686421235 }, - "vertexSeeds": { - "c1": 1.945516204528247, - "c2": 2.1165258701457397, - "c3": 1.9014399634480432, - "c4": 1.9172114673180762, - "c5": 2.2724088927465758, - "c6": 1.7912561963046287, - "c7": 1.9350131142838618 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [238, 201, 159] }, @@ -260394,23 +260394,23 @@ "year": 1777, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -33.66463781243881, - "c2": -36.926701057222886, - "c3": 17.01833350974418, - "c4": -16.50138917680965, - "c5": 26.456616924140263, - "c6": 20.239913314859635, - "c7": 36.54480230941513 + "points": { + "c1": -20.4200659515524, + "c2": -12.659200158913862, + "c3": 33.927671152788704, + "c4": 35.43988391006357, + "c5": -15.001529929221622, + "c6": -37.6008425486569, + "c7": -13.816292942951325 }, - "vertexSeeds": { - "c1": 6.945216886238708, - "c2": 7.076467477321679, - "c3": 7.036529032673528, - "c4": 7.20481770914982, - "c5": 7.129337111110348, - "c6": 7.285346909238484, - "c7": 7.46682488377823 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -260421,23 +260421,23 @@ "year": 1777, "resistanceReported": false, "duration": 172800, - "curveSeeds": { - "c1": 6.005033618220503, - "c2": -1.4730266694092027, - "c3": -5.876530500109876, - "c4": 5.038270048155791, - "c5": 3.1679037782792694, - "c6": -1.242501784872541, - "c7": -1.4408144089993922 + "points": { + "c1": -4.881998938092041, + "c2": 4.254418770703486, + "c3": 0.3789801394681369, + "c4": 11.14784862201378, + "c5": 4.327149409158322, + "c6": 2.527722675861133, + "c7": -7.609488762280726 }, - "vertexSeeds": { - "c1": 6.418562595529799, - "c2": 6.9458421187920445, - "c3": 6.514521809969211, - "c4": 6.387479840746354, - "c5": 6.623430634705953, - "c6": 6.790196510071492, - "c7": 6.805926671019066 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -260448,23 +260448,23 @@ "year": 1777, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 24.681791040493017, - "c2": -25.30235437412178, - "c3": 34.97019230926802, - "c4": -0.6650990649287962, - "c5": -0.535780486368175, - "c6": -7.38993928300324, - "c7": -37.13865661167655 + "points": { + "c1": 1.32815387023291, + "c2": 3.547638729500733, + "c3": -10.92499638746392, + "c4": -39.28563426190005, + "c5": 32.823198500716025, + "c6": -10.9155274677281, + "c7": 4.863263552711572 }, - "vertexSeeds": { - "c1": 3.0555436789898662, - "c2": 3.180743275366001, - "c3": 3.232200501173299, - "c4": 2.901167859358188, - "c5": 3.0230021132132148, - "c6": 3.1719019990889827, - "c7": 3.0721103937117933 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -260475,23 +260475,23 @@ "year": 1778, "resistanceReported": false, "duration": 47520000, - "curveSeeds": { - "c1": -52.69721168507165, - "c2": 40.096648730973854, - "c3": -53.79526783511838, - "c4": 60.81573315753393, - "c5": -40.826115675099565, - "c6": -2.7866996981798664, - "c7": 22.42500240245215 + "points": { + "c1": -63.68485305252026, + "c2": -61.344306296951736, + "c3": 58.05085614885647, + "c4": -54.413463517972296, + "c5": 61.120874003972745, + "c6": 47.33943798937524, + "c7": 1.162167927217439 }, - "vertexSeeds": { - "c1": 6.2869814610024, - "c2": 5.878384591850952, - "c3": 5.828506372034991, - "c4": 5.913327135218281, - "c5": 5.987952499300218, - "c6": 6.023479220484047, - "c7": 5.930489648583291 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.01525658807213, + "c3": 7.512713823393431, + "c4": 6.0101710587147545, + "c5": 4.507628294036055, + "c6": 3.0050855293573773, + "c7": 1.5025427646786775 }, "rgb": [238, 201, 159] }, @@ -260502,23 +260502,23 @@ "year": 1778, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": 46.94817179776385, - "c2": 1.0341860449157707, - "c3": -1.2372611046533137, - "c4": 50.9708609925672, - "c5": 44.71444597784475, - "c6": 12.975417453514723, - "c7": -52.1962047571911 + "points": { + "c1": 26.608828946167037, + "c2": 51.001558874057594, + "c3": -59.64065485607075, + "c4": 6.250256569053732, + "c5": -35.297414684167656, + "c6": 34.89449012609424, + "c7": -33.1001523037315 }, - "vertexSeeds": { - "c1": 5.436514716877694, - "c2": 5.53166640353658, - "c3": 7.1207899160458465, - "c4": 5.908259304594488, - "c5": 5.582709314660012, - "c6": 5.364565674193929, - "c7": 7.31215518170205 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [86, 146, 138] }, @@ -260529,23 +260529,23 @@ "year": 1777, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -3.5967547495820895, - "c2": -40.048640544835, - "c3": -33.789805060632105, - "c4": -37.425691463819945, - "c5": -11.792250157088631, - "c6": -27.673629624544617, - "c7": 3.2321543139185493 + "points": { + "c1": 11.356728649192732, + "c2": 42.46781325477633, + "c3": 14.12068441643811, + "c4": -7.711395210629405, + "c5": 7.021703911136996, + "c6": 13.721503407671953, + "c7": -12.862092011884002 }, - "vertexSeeds": { - "c1": 14.705906483942144, - "c2": 14.27482835797349, - "c3": 14.64718896399589, - "c4": 15.597260314624826, - "c5": 14.355453295885694, - "c6": 14.830459012552371, - "c7": 14.700010504880218 + "offsets": { + "c1": 26.116504854368934, + "c2": 22.38557558945908, + "c3": 18.654646324549226, + "c4": 14.923717059639372, + "c5": 11.192787794729519, + "c6": 7.461858529819707, + "c7": 3.7309292649098533 }, "rgb": [77, 76, 132] }, @@ -260556,23 +260556,23 @@ "year": 1778, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 34.11095459122898, - "c2": -9.140755417636662, - "c3": 35.99040497318693, - "c4": 33.29611321321308, - "c5": -36.3029065490346, - "c6": 33.12801252631018, - "c7": -10.201890359180439 + "points": { + "c1": 34.63101443636179, + "c2": 43.07314665836922, + "c3": -42.91537505856793, + "c4": -39.053859841298866, + "c5": -17.573048069501453, + "c6": 23.33306115911865, + "c7": 24.08177096718577 }, - "vertexSeeds": { - "c1": 4.538552577489861, - "c2": 4.458961659585156, - "c3": 4.75956866202389, - "c4": 4.552046287906875, - "c5": 4.597549661503265, - "c6": 4.484936579488323, - "c7": 4.82454509894494 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -260583,23 +260583,23 @@ "year": 1777, "resistanceReported": true, "duration": 25833600, - "curveSeeds": { - "c1": 36.44293570584395, - "c2": -11.809951135133147, - "c3": 4.776927551843642, - "c4": -36.36289014346234, - "c5": -32.86181586673006, - "c6": 24.344787548577457, - "c7": -37.53343455085091 + "points": { + "c1": 5.486649338917246, + "c2": -11.732587063258332, + "c3": -27.324062885779387, + "c4": -32.682479834852124, + "c5": 35.82388731567197, + "c6": 21.29546295625282, + "c7": 11.11432759194809 }, - "vertexSeeds": { - "c1": 8.043647554774463, - "c2": 7.894374361066917, - "c3": 8.053665547338255, - "c4": 8.819250337805878, - "c5": 8.559999974085214, - "c6": 8.563787619521115, - "c7": 9.845935625561127 + "offsets": { + "c1": 16.666666666666664, + "c2": 14.285714285714285, + "c3": 11.904761904761905, + "c4": 9.523809523809526, + "c5": 7.142857142857138, + "c6": 4.761904761904759, + "c7": 2.3809523809523796 }, "rgb": [58, 15, 49] }, @@ -260610,23 +260610,23 @@ "year": 1778, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 33.42146836609045, - "c2": 18.51997036580415, - "c3": 6.756896059762305, - "c4": 0.9801378197682595, - "c5": -24.482105062281637, - "c6": -19.068669633920916, - "c7": 13.945459609362182 + "points": { + "c1": -16.644007421948846, + "c2": 36.56648554867141, + "c3": -21.67652895389512, + "c4": 34.530376206881115, + "c5": 35.582461096838685, + "c6": 7.718504226505942, + "c7": -2.428829445607846 }, - "vertexSeeds": { - "c1": 3.927432501141045, - "c2": 4.4255888572387985, - "c3": 4.280803149386553, - "c4": 4.047399824356185, - "c5": 4.246278371249518, - "c6": 4.456917647786873, - "c7": 4.059511999705546 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [222, 0, 59] }, @@ -260637,23 +260637,23 @@ "year": 1777, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 17.103912527409335, - "c2": -19.917633703349757, - "c3": 2.3837528007073487, - "c4": -35.91398898657198, - "c5": 35.92144362997996, - "c6": 34.225418406091364, - "c7": -25.49174771230392 + "points": { + "c1": -2.969463335820109, + "c2": 30.869079226260666, + "c3": 26.106015514438468, + "c4": -12.258008467812985, + "c5": 23.290919152485735, + "c6": -5.69346810754093, + "c7": 28.38417137765127 }, - "vertexSeeds": { - "c1": 5.7895602030026385, - "c2": 5.483146333727214, - "c3": 5.274245778484533, - "c4": 5.541783802601706, - "c5": 5.575653840097909, - "c6": 5.688930354647257, - "c7": 5.977238681496823 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.65464632454924, + "c3": 7.212205270457692, + "c4": 5.769764216366156, + "c5": 4.32732316227462, + "c6": 2.8848821081830707, + "c7": 1.4424410540915353 }, "rgb": [77, 76, 132] }, @@ -260664,23 +260664,23 @@ "year": 1778, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 39.87167372990818, - "c2": -32.454134582480954, - "c3": 30.4556955523866, - "c4": -1.7104639919363862, - "c5": -12.452930255419123, - "c6": 10.60265508435991, - "c7": -3.6065765010711814 + "points": { + "c1": 17.93006678544858, + "c2": 17.230568982629784, + "c3": -11.779192297481991, + "c4": -13.456561404327385, + "c5": -35.78850542307151, + "c6": -25.928325274570927, + "c7": 3.223917007881397 }, - "vertexSeeds": { - "c1": 6.083500593235378, - "c2": 5.932208278714165, - "c3": 6.02416008607392, - "c4": 6.222125256693448, - "c5": 6.130318423117913, - "c6": 5.8606490808525695, - "c7": 6.005932810394649 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [238, 201, 159] }, @@ -260691,23 +260691,23 @@ "year": 1777, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -36.990296589497284, - "c2": 8.063715445093116, - "c3": 11.153621781741137, - "c4": 37.9460065564254, - "c5": -30.24077602462002, - "c6": 34.912480592886, - "c7": -10.533790893230922 + "points": { + "c1": 5.6948941850084935, + "c2": 42.809535679239204, + "c3": 37.698162941902, + "c4": -4.198283056704305, + "c5": 34.50798386939317, + "c6": -41.059131967344534, + "c7": -34.288152506448355 }, - "vertexSeeds": { - "c1": 7.472135899496221, - "c2": 7.893004614430239, - "c3": 7.787903586150918, - "c4": 7.8322765497345355, - "c5": 7.389765647557354, - "c6": 7.4295523392385965, - "c7": 7.867230845506773 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.48404993065187, + "c3": 9.57004160887656, + "c4": 7.6560332871012475, + "c5": 5.742024965325935, + "c6": 3.8280166435506238, + "c7": 1.9140083217753119 }, "rgb": [58, 15, 49] }, @@ -260718,23 +260718,23 @@ "year": 1778, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 38.47183216023818, - "c2": -33.417745491477525, - "c3": -40.78158877444997, - "c4": -29.52813965814842, - "c5": 33.87864910333957, - "c6": 40.386548952295, - "c7": -26.931130898766973 + "points": { + "c1": -11.04234279909501, + "c2": -10.33703737811554, + "c3": -22.24026443330142, + "c4": 28.92302398525726, + "c5": -18.753212710007823, + "c6": 36.73415800108563, + "c7": -2.0411421047419296 }, - "vertexSeeds": { - "c1": 10.578657417157633, - "c2": 10.737232354541788, - "c3": 10.35243924369842, - "c4": 10.374265915564564, - "c5": 9.98618065810913, - "c6": 10.823575226016544, - "c7": 9.812947249820429 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524276, + "c3": 12.944983818770233, + "c4": 10.35598705501619, + "c5": 7.766990291262146, + "c6": 5.177993527508103, + "c7": 2.5889967637540434 }, "rgb": [58, 15, 49] }, @@ -260745,23 +260745,23 @@ "year": 1778, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 3.3958745876422327, - "c2": 5.125048910867932, - "c3": -12.199151635823615, - "c4": -29.476318229308152, - "c5": 7.500941217040527, - "c6": -40.85241185815612, - "c7": -40.35995004812301 + "points": { + "c1": -42.84673548867753, + "c2": 16.435493439595056, + "c3": 12.600930063877556, + "c4": -12.275115910768989, + "c5": 26.692612305287795, + "c6": -10.431376005835403, + "c7": -0.47194602843386235 }, - "vertexSeeds": { - "c1": 5.617815864281501, - "c2": 6.015745015667969, - "c3": 5.803560433235079, - "c4": 6.0321255496627515, - "c5": 5.559102582589093, - "c6": 5.908402414587826, - "c7": 6.150483235006611 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [77, 76, 132] }, @@ -260772,23 +260772,23 @@ "year": 1777, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 39.80970002872485, - "c2": -17.496391350312706, - "c3": 34.79130845959702, - "c4": -27.32806694191062, - "c5": 5.850660923027803, - "c6": 26.521350626043343, - "c7": 11.01467878783864 + "points": { + "c1": 40.12959274528754, + "c2": 28.721256052932972, + "c3": 38.57780162978382, + "c4": 41.592380524065845, + "c5": -2.587813410679132, + "c6": -1.411107497141451, + "c7": -4.858907901521306 }, - "vertexSeeds": { - "c1": 6.7827951689802255, - "c2": 7.065973180895039, - "c3": 6.627746249595777, - "c4": 7.3891090339043775, - "c5": 7.401387030677764, - "c6": 6.422461536391271, - "c7": 7.363987655564332 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565885, + "c3": 8.945908460471575, + "c4": 7.156726768377252, + "c5": 5.367545076282942, + "c6": 3.5783633841886324, + "c7": 1.7891816920943224 }, "rgb": [86, 146, 138] }, @@ -260799,23 +260799,23 @@ "year": 1778, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": -49.43791184924947, - "c2": 24.923876192715895, - "c3": -49.26010248109402, - "c4": -7.71703088575746, - "c5": 12.412098356877976, - "c6": -25.12828224701831, - "c7": -25.454841292600978 + "points": { + "c1": -16.37662451677774, + "c2": 43.022237615828004, + "c3": 23.924656710612112, + "c4": -52.46104799902107, + "c5": -6.90523398130162, + "c6": -4.377595468129279, + "c7": 47.63423227408842 }, - "vertexSeeds": { - "c1": 2.3098846372837665, - "c2": 2.194863887193653, - "c3": 2.340443037105513, - "c4": 2.474471640008701, - "c5": 2.4713743171764797, - "c6": 2.299985408104192, - "c7": 2.463903457434418 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228847, + "c3": 3.0050855293573746, + "c4": 2.4040684234858984, + "c5": 1.8030513176144254, + "c6": 1.2020342117429492, + "c7": 0.6010171058714762 }, "rgb": [77, 76, 132] }, @@ -260826,23 +260826,23 @@ "year": 1777, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 22.47511361623225, - "c2": -23.17612769071946, - "c3": 14.692187981564459, - "c4": -17.681790457889875, - "c5": 31.098200653229313, - "c6": 9.212185800574765, - "c7": 30.30582721603828 + "points": { + "c1": -36.870071073807644, + "c2": 1.5391494124121436, + "c3": 1.9563545068048214, + "c4": 20.456647350104518, + "c5": 2.601787670431321, + "c6": -36.04022539318921, + "c7": -22.393455473891336 }, - "vertexSeeds": { - "c1": 5.809501694752774, - "c2": 5.765563741536015, - "c3": 5.774294838824249, - "c4": 5.676878162588058, - "c5": 5.627101395022357, - "c6": 5.860295368682269, - "c7": 5.509841031919194 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [238, 201, 159] }, @@ -260853,23 +260853,23 @@ "year": 1777, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -20.942090760350524, - "c2": -25.422400909710092, - "c3": 13.709951249691166, - "c4": 32.448583972254056, - "c5": 7.16430294754889, - "c6": -12.065422895749482, - "c7": -22.48682642830281 + "points": { + "c1": -13.659309793006763, + "c2": 13.685759301974379, + "c3": -5.812917711251167, + "c4": 14.544575617000419, + "c5": 14.324008863326867, + "c6": 10.534212571247132, + "c7": -5.329350693743201 }, - "vertexSeeds": { - "c1": 11.987894278707872, - "c2": 11.111499160720628, - "c3": 11.703996945287448, - "c4": 11.895374877536293, - "c5": 10.901649728160828, - "c6": 11.431397214130964, - "c7": 11.774862384243713 + "offsets": { + "c1": 20, + "c2": 17.142857142857142, + "c3": 14.285714285714286, + "c4": 11.428571428571427, + "c5": 8.571428571428571, + "c6": 5.7142857142857135, + "c7": 2.8571428571428568 }, "rgb": [58, 15, 49] }, @@ -260880,23 +260880,23 @@ "year": 1778, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 7.742946489566073, - "c2": -29.786719776002066, - "c3": 9.653358029266798, - "c4": -35.02137701108805, - "c5": 28.640733540338033, - "c6": 12.98553275868263, - "c7": -7.3257600047026905 + "points": { + "c1": -22.043265203162647, + "c2": 26.411198254778952, + "c3": -21.34205977757071, + "c4": 34.092272344265055, + "c5": -4.669034234491214, + "c6": -0.8730897742815458, + "c7": -24.891738140497736 }, - "vertexSeeds": { - "c1": 3.913324320244427, - "c2": 3.936653016887246, - "c3": 3.8873178125356067, - "c4": 4.0484750217431635, - "c5": 3.8543755711484597, - "c6": 3.858743892534547, - "c7": 3.8702874814097794 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [58, 15, 49] }, @@ -260907,23 +260907,23 @@ "year": 1777, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 10.808399510981886, - "c2": -33.232100487090186, - "c3": 29.381948327838842, - "c4": 1.2403862986970253, - "c5": 5.8803664546799155, - "c6": 15.437596972719817, - "c7": -14.320935431461237 + "points": { + "c1": -18.82353075680176, + "c2": -36.6043004761406, + "c3": 34.50397026016776, + "c4": -15.672711330298242, + "c5": 30.50234812952631, + "c6": 33.7402585105922, + "c7": -21.309523854815 }, - "vertexSeeds": { - "c1": 10.808657198232746, - "c2": 11.24070202136766, - "c3": 10.755719404878777, - "c4": 11.161783909799691, - "c5": 10.875515679246336, - "c6": 11.359181523853502, - "c7": 10.818001409375004 + "offsets": { + "c1": 19.385113268608414, + "c2": 16.615811373092924, + "c3": 13.846509477577438, + "c4": 11.07720758206195, + "c5": 8.307905686546462, + "c6": 5.538603791030975, + "c7": 2.7693018955154876 }, "rgb": [77, 76, 132] }, @@ -260934,23 +260934,23 @@ "year": 1778, "resistanceReported": false, "duration": 40003200, - "curveSeeds": { - "c1": 44.894537942684835, - "c2": 10.606972721850582, - "c3": 14.210177126486158, - "c4": -9.607931387768488, - "c5": 24.348214984500473, - "c6": 41.84044199668105, - "c7": -38.26411789509172 + "points": { + "c1": 40.08574209059293, + "c2": 44.33989858648607, + "c3": 26.97866905027894, + "c4": -55.067234019638136, + "c5": 21.73326663686605, + "c6": -24.032718558227764, + "c7": 20.188786172145058 }, - "vertexSeeds": { - "c1": 7.919178852667901, - "c2": 7.929858435125309, - "c3": 7.8966268655250165, - "c4": 7.887785131712063, - "c5": 7.883003338245731, - "c6": 7.929549666608202, - "c7": 7.938601961981742 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926491038, + "c3": 9.477577438742406, + "c4": 7.582061950993963, + "c5": 5.686546463245519, + "c6": 3.7910309754970757, + "c7": 1.8955154877484437 }, "rgb": [222, 0, 59] }, @@ -260961,23 +260961,23 @@ "year": 1777, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -8.958964285822404, - "c2": 23.366314959499192, - "c3": 15.466850707347561, - "c4": -24.106544736765517, - "c5": 16.678131370152983, - "c6": -18.86280419735622, - "c7": 30.135708436275294 + "points": { + "c1": 16.330257990999343, + "c2": 11.488555501356963, + "c3": -33.28449585025735, + "c4": -21.258749603945155, + "c5": 7.346272238231016, + "c6": 19.79552444773553, + "c7": -29.105345200277245 }, - "vertexSeeds": { - "c1": 6.916696322329227, - "c2": 6.189508812955407, - "c3": 6.241375620818931, - "c4": 6.284834926215163, - "c5": 6.5212324567096305, - "c6": 6.661791654935534, - "c7": 7.0070946672174745 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [58, 15, 49] }, @@ -260988,23 +260988,23 @@ "year": 1777, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": -3.3896620294073223, - "c2": 3.9142850257334487, - "c3": -0.8112442917762657, - "c4": -8.758097042853985, - "c5": 6.215747187324116, - "c6": 8.94548193766462, - "c7": -14.253880386720079 + "points": { + "c1": 14.606786367634268, + "c2": 18.42001601749467, + "c3": -2.3064592781334987, + "c4": -7.73599230488267, + "c5": -9.57682181525494, + "c6": -7.2784312078161655, + "c7": 6.817824456731337 }, - "vertexSeeds": { - "c1": 3.3900216689477447, - "c2": 3.1769975982258294, - "c3": 3.4139536787944533, - "c4": 3.2964866034159694, - "c5": 3.440209031207933, - "c6": 3.375883511797475, - "c7": 3.205292840446938 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199724, + "c3": 4.137771613499772, + "c4": 3.31021729079982, + "c5": 2.4826629680998673, + "c6": 1.6551086453999044, + "c7": 0.8275543226999522 }, "rgb": [222, 0, 59] }, @@ -261015,23 +261015,23 @@ "year": 1777, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 2.3275344589974196, - "c2": 15.867790675150932, - "c3": 10.577695170625642, - "c4": 18.257653654595938, - "c5": 15.153094918655132, - "c6": 12.33019844238829, - "c7": 4.753893542879993 + "points": { + "c1": 21.78281064132992, + "c2": -2.0713895758692864, + "c3": -23.33740821775772, + "c4": 1.5496479058383699, + "c5": -9.69392430630923, + "c6": -19.830745558914835, + "c7": -16.208255199332847 }, - "vertexSeeds": { - "c1": 3.1588660779733932, - "c2": 3.088452465215506, - "c3": 3.216738193943155, - "c4": 3.11915490085202, - "c5": 2.9555435458474375, - "c6": 2.93115913342476, - "c7": 2.9535023678419736 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -261042,23 +261042,23 @@ "year": 1777, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -13.645353209578982, - "c2": -20.56100495421843, - "c3": 26.947348448406217, - "c4": -3.018264664542901, - "c5": -31.04019651672253, - "c6": -3.303601284230737, - "c7": -31.373124148746076 + "points": { + "c1": -23.61736110351579, + "c2": 15.727008319711238, + "c3": -8.335418724072149, + "c4": 9.071815076576208, + "c5": 27.44286191350018, + "c6": 29.19876852486705, + "c7": -10.230889341966144 }, - "vertexSeeds": { - "c1": 6.785438030204563, - "c2": 6.8560236562561, - "c3": 7.023670959260697, - "c4": 6.76360493962606, - "c5": 6.779280031922926, - "c6": 7.073977201101488, - "c7": 6.8677716050835675 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761454, + "c3": 8.483587609801198, + "c4": 6.78687008784097, + "c5": 5.0901525658807145, + "c6": 3.393435043920485, + "c7": 1.6967175219602548 }, "rgb": [238, 201, 159] }, @@ -261069,23 +261069,23 @@ "year": 1778, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -33.127133387801386, - "c2": 9.434205734482347, - "c3": -31.11179910413664, - "c4": -34.445126683729036, - "c5": 0.5405901293467963, - "c6": 5.443268443150615, - "c7": 11.256281634051994 + "points": { + "c1": 15.863836597946907, + "c2": 5.777931181625867, + "c3": 22.79734494214538, + "c4": 2.7986338204644596, + "c5": -17.919461334882765, + "c6": 34.501724147147826, + "c7": 18.807006970313864 }, - "vertexSeeds": { - "c1": 2.8643204711046746, - "c2": 2.734762697187189, - "c3": 2.9779614760850617, - "c4": 2.960727409964337, - "c5": 2.973770224948077, - "c6": 2.8720600774614553, - "c7": 2.951063417164576 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274619, + "c3": 3.6061026352288503, + "c4": 2.8848821081830813, + "c5": 2.1636615811373128, + "c6": 1.4424410540915376, + "c7": 0.7212205270457688 }, "rgb": [222, 0, 59] }, @@ -261096,23 +261096,23 @@ "year": 1777, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -18.28006069109003, - "c2": -19.581419231852866, - "c3": 0.814018846943906, - "c4": -12.246558345721427, - "c5": 11.565617560216541, - "c6": -9.530536874554622, - "c7": 15.482944353765266 + "points": { + "c1": 5.711509532056201, + "c2": -17.721294463206462, + "c3": 12.167895785138871, + "c4": -12.050338104651926, + "c5": 19.425913327161343, + "c6": 5.555337558932958, + "c7": -3.9700177354775192 }, - "vertexSeeds": { - "c1": 5.754372583906504, - "c2": 5.765475754121123, - "c3": 5.794426220526818, - "c4": 5.796721723942296, - "c5": 5.785803180264262, - "c6": 5.764298834869382, - "c7": 5.742853706957494 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066613, + "c3": 6.934812760055419, + "c4": 5.547850208044363, + "c5": 4.160887656033307, + "c6": 2.77392510402225, + "c7": 1.3869625520110562 }, "rgb": [238, 201, 159] }, @@ -261123,23 +261123,23 @@ "year": 1778, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 16.009495138488994, - "c2": -0.4682498840368474, - "c3": 10.610264204226759, - "c4": 9.963619404571027, - "c5": 6.979153582260189, - "c6": 26.20222022881274, - "c7": -14.23194074599665 + "points": { + "c1": 32.45388170222465, + "c2": -18.97809565568604, + "c3": -0.3717265223435646, + "c4": -14.338450436319249, + "c5": 20.764320494020716, + "c6": -0.5587251479444788, + "c7": 20.76833150089928 }, - "vertexSeeds": { - "c1": 6.545669341779193, - "c2": 6.4363363585143745, - "c3": 6.630400947788199, - "c4": 6.913700719916399, - "c5": 6.630830828569248, - "c6": 6.698187997699726, - "c7": 6.764949782277251 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -261150,23 +261150,23 @@ "year": 1777, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": -12.05130001515842, - "c2": -18.01471281847501, - "c3": -1.8128090950722786, - "c4": -2.8741071666437996, - "c5": 18.7531376607781, - "c6": -13.68679262940799, - "c7": -10.55780625577085 + "points": { + "c1": -15.101166406819559, + "c2": 0.4495051692310206, + "c3": -1.4611747702482312, + "c4": 12.799763752780848, + "c5": -3.4165483299327697, + "c6": -8.304301658787857, + "c7": 12.856448358562751 }, - "vertexSeeds": { - "c1": 1.4766839378238343, - "c2": 1.4766839378238343, - "c3": 1.4766839378238343, - "c4": 1.4766839378238343, - "c5": 1.4766839378238343, - "c6": 1.4766839378238343, - "c7": 1.4766839378238343 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -261177,23 +261177,23 @@ "year": 1778, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -28.956561841292327, - "c2": 12.89601169271062, - "c3": 27.000358581096517, - "c4": 4.014420925238614, - "c5": -16.914032714581424, - "c6": 23.392185326005436, - "c7": 9.452417737872853 + "points": { + "c1": 19.794203847680613, + "c2": 20.76734704548584, + "c3": 2.4514731000488297, + "c4": -5.5105413144288775, + "c5": -24.79003173335969, + "c6": 19.981278661362417, + "c7": 13.55507379977621 }, - "vertexSeeds": { - "c1": 6.344757391874682, - "c2": 6.017849497868448, - "c3": 6.303473998840372, - "c4": 5.885809774771012, - "c5": 5.963734393996526, - "c6": 5.945712160743479, - "c7": 6.198909605951101 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [238, 201, 159] }, @@ -261204,23 +261204,23 @@ "year": 1778, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -15.239567489884848, - "c2": 16.445870750931476, - "c3": 29.903344165995243, - "c4": -26.145003146783118, - "c5": -3.0119400907564042, - "c6": -0.5113396858485899, - "c7": -30.713421541070076 + "points": { + "c1": 18.234660339826128, + "c2": -3.154009936059637, + "c3": -45.13084515141049, + "c4": 43.54615345359766, + "c5": -13.757744102657668, + "c6": 44.69328071213442, + "c7": 33.97871036721593 }, - "vertexSeeds": { - "c1": 7.480569948186528, - "c2": 7.480569948186528, - "c3": 7.480569948186528, - "c4": 7.480569948186528, - "c5": 7.480569948186528, - "c6": 7.480569948186528, - "c7": 7.480569948186528 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -261231,23 +261231,23 @@ "year": 1778, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 41.20228226062543, - "c2": -26.878583488704596, - "c3": 3.5382780546366916, - "c4": -31.719999966322526, - "c5": -2.316067207939547, - "c6": -6.668083810137539, - "c7": -1.8724214664275252 + "points": { + "c1": 21.155843789505617, + "c2": -24.229669377981768, + "c3": 21.970098728100446, + "c4": 45.122342798389575, + "c5": -31.693523327904227, + "c6": -2.6637115486619294, + "c7": -28.579846219740293 }, - "vertexSeeds": { - "c1": 8.93283491033904, - "c2": 8.55935270988331, - "c3": 8.049868992789756, - "c4": 8.427573423243105, - "c5": 8.38689414065255, - "c6": 8.600797675961301, - "c7": 9.165978083972934 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306511, + "c3": 11.095700416088766, + "c4": 8.876560332871007, + "c5": 6.657420249653263, + "c6": 4.438280166435503, + "c7": 2.219140083217759 }, "rgb": [238, 201, 159] }, @@ -261258,23 +261258,23 @@ "year": 1778, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 9.513002481836082, - "c2": 2.7372159780908802, - "c3": 21.961410899009437, - "c4": -5.579563346612886, - "c5": -23.16249628922442, - "c6": -17.120282873061562, - "c7": 26.649222338059893 + "points": { + "c1": 2.1216556575614405, + "c2": 36.81023648354197, + "c3": -19.534677764951194, + "c4": 1.1877265916556112, + "c5": -23.75224246729318, + "c6": 9.389940526885788, + "c7": -3.8052949987143663 }, - "vertexSeeds": { - "c1": 9.209467419194002, - "c2": 9.348365960152782, - "c3": 9.280688406355786, - "c4": 9.140223984319107, - "c5": 9.250898334747014, - "c6": 8.697318768240153, - "c7": 9.234601341300172 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.536754507628297, + "c3": 11.280628756356919, + "c4": 9.024503005085538, + "c5": 6.768377253814159, + "c6": 4.512251502542759, + "c7": 2.2561257512713797 }, "rgb": [77, 76, 132] }, @@ -261285,23 +261285,23 @@ "year": 1778, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 24.600003875269884, - "c2": 29.266800372934377, - "c3": -30.101788272096417, - "c4": 27.946981145908154, - "c5": 22.68611475081454, - "c6": -0.8575153771669513, - "c7": 4.003561283889219 + "points": { + "c1": 26.02002085424042, + "c2": -8.500029186179134, + "c3": -32.36957124308997, + "c4": 25.721961222284726, + "c5": 20.495247176161918, + "c6": -31.065006444862547, + "c7": 33.03956359029152 }, - "vertexSeeds": { - "c1": 4.703159852060976, - "c2": 4.541341064597726, - "c3": 4.809939623587875, - "c4": 4.537040646168661, - "c5": 4.79818284064529, - "c6": 4.695912292829414, - "c7": 4.599682798910005 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.0735090152565885, + "c3": 5.894590846047158, + "c4": 4.715672676837726, + "c5": 3.5367545076282942, + "c6": 2.357836338418863, + "c7": 1.1789181692094315 }, "rgb": [77, 76, 132] }, @@ -261312,23 +261312,23 @@ "year": 1777, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 16.020868138575057, - "c2": -14.842209690503648, - "c3": 18.1972174840751, - "c4": -23.802176173042092, - "c5": -16.284895971434825, - "c6": -13.204266239923253, - "c7": 1.2489788983734016 + "points": { + "c1": -28.110190469626588, + "c2": -1.2171947286935705, + "c3": 21.425454178234478, + "c4": 19.327191759590225, + "c5": 18.864682338133928, + "c6": -29.548412933578128, + "c7": 19.18100387883265 }, - "vertexSeeds": { - "c1": 9.74234275665001, - "c2": 9.757345896420654, - "c3": 9.82473512989946, - "c4": 9.732694901585132, - "c5": 9.733233275733378, - "c6": 9.764136911752226, - "c7": 9.827234755869833 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.09153952843268, + "c3": 11.742949607027292, + "c4": 9.394359685621787, + "c5": 7.045769764216399, + "c6": 4.697179842810893, + "c7": 2.3485899214053885 }, "rgb": [238, 201, 159] }, @@ -261339,23 +261339,23 @@ "year": 1778, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -3.309268686324259, - "c2": -28.568322140013933, - "c3": 7.634266605657707, - "c4": -20.887169436702866, - "c5": 12.876299631194804, - "c6": 26.776214657164225, - "c7": -3.9585918851133073 + "points": { + "c1": 16.56932237818343, + "c2": 24.34709184677252, + "c3": 16.23633355006909, + "c4": 17.506541492134104, + "c5": -15.593082604871942, + "c6": 4.121415729523235, + "c7": 25.30817978376671 }, - "vertexSeeds": { - "c1": 5.2154894778698555, - "c2": 5.289742722115739, - "c3": 5.221147244371705, - "c4": 5.236957768988013, - "c5": 5.256007342361959, - "c6": 5.2224209343237415, - "c7": 5.184983691298683 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036060999, + "c3": 6.35691169671753, + "c4": 5.085529357373999, + "c5": 3.814147018030531, + "c6": 2.5427646786869995, + "c7": 1.2713823393434682 }, "rgb": [86, 146, 138] }, @@ -261366,23 +261366,23 @@ "year": 1778, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 7.229806575492919, - "c2": 15.15046745932857, - "c3": -27.81731485792413, - "c4": -4.904437258261492, - "c5": -20.742531790100138, - "c6": 7.448341971673063, - "c7": -20.099990394678613 + "points": { + "c1": -15.797598636567, + "c2": 22.148712958868312, + "c3": -3.0254050113695996, + "c4": -29.6507721508454, + "c5": -22.012449667457254, + "c6": -24.76978204310025, + "c7": -13.031330136897456 }, - "vertexSeeds": { - "c1": 4.291261242721048, - "c2": 4.177120114799045, - "c3": 4.302345605749322, - "c4": 4.352251919219139, - "c5": 4.2210469626859854, - "c6": 4.177394006483404, - "c7": 4.297609193949952 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049925, + "c3": 5.2011095700416154, + "c4": 4.160887656033289, + "c5": 3.1206657420249626, + "c6": 2.0804438280166533, + "c7": 1.0402219140083266 }, "rgb": [222, 0, 59] }, @@ -261393,23 +261393,23 @@ "year": 1778, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -11.801732077279944, - "c2": 20.117907941976892, - "c3": -4.474110343895266, - "c4": 2.3574096251479837, - "c5": -17.63517363443605, - "c6": -17.746247403988555, - "c7": 5.5580977802885165 + "points": { + "c1": -3.2197809664908803, + "c2": -29.312995437435017, + "c3": 4.899662101104415, + "c4": -5.23217902496425, + "c5": -8.33951742972, + "c6": 14.615865444998757, + "c7": 17.389411853397892 }, - "vertexSeeds": { - "c1": 10.02658066644989, - "c2": 10.242027999915216, - "c3": 10.297387690952592, - "c4": 10.217046532751763, - "c5": 10.678895985148326, - "c6": 10.097333060791428, - "c7": 10.714054216878198 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524292, + "c3": 12.944983818770222, + "c4": 10.355987055016195, + "c5": 7.766990291262124, + "c6": 5.1779935275080975, + "c7": 2.5889967637540705 }, "rgb": [238, 201, 159] }, @@ -261420,23 +261420,23 @@ "year": 1778, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -5.77393043538245, - "c2": -11.780921664876967, - "c3": -21.815336639515976, - "c4": -25.35006981292186, - "c5": 6.350228091794968, - "c6": -28.73628160823958, - "c7": 22.24613740985675 + "points": { + "c1": -18.924406565913138, + "c2": -29.22150738349838, + "c3": -19.980884198656774, + "c4": 5.448294333773781, + "c5": -1.828761177218123, + "c6": 30.076004072819075, + "c7": -9.181064150002278 }, - "vertexSeeds": { - "c1": 11.086617612350706, - "c2": 10.861905593417058, - "c3": 11.275651527370945, - "c4": 10.932398774956232, - "c5": 11.17751714713177, - "c6": 10.865627082201264, - "c7": 10.916437862338377 + "offsets": { + "c1": 18.96440129449838, + "c2": 16.255201109570073, + "c3": 13.546000924641687, + "c4": 10.836800739713384, + "c5": 8.127600554784996, + "c6": 5.418400369856692, + "c7": 2.7092001849283047 }, "rgb": [86, 146, 138] }, @@ -261447,23 +261447,23 @@ "year": 1778, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -14.35132985858931, - "c2": -3.3177213219448305, - "c3": -26.08724336756591, - "c4": -6.138924881006091, - "c5": 10.641153583034544, - "c6": 17.158885625026706, - "c7": 34.273739666862056 + "points": { + "c1": 21.890939785753062, + "c2": -27.371293960715466, + "c3": -3.7001419100872255, + "c4": 9.193425346256305, + "c5": -11.862380623138407, + "c6": 32.22603426585614, + "c7": -7.185312551373201 }, - "vertexSeeds": { - "c1": 7.5654389465072525, - "c2": 6.422458665623968, - "c3": 6.762955886693097, - "c4": 7.3713980102415295, - "c5": 7.576088302345648, - "c6": 6.662342570152095, - "c7": 5.807332745411452 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807214, + "c3": 9.084604715672675, + "c4": 7.267683772538144, + "c5": 5.450762829403603, + "c6": 3.633841886269072, + "c7": 1.8169209431345397 }, "rgb": [58, 15, 49] }, @@ -261474,23 +261474,23 @@ "year": 1778, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 3.7713040766397086, - "c2": 24.50666219138212, - "c3": -4.831334281082224, - "c4": -22.837404730362344, - "c5": -5.186543509657081, - "c6": -24.503462480225146, - "c7": 22.16638257678607 + "points": { + "c1": -14.596373744323394, + "c2": 19.492848748653635, + "c3": 34.59038437411412, + "c4": 27.552436571113788, + "c5": 14.852226794648992, + "c6": -21.415323816974595, + "c7": -26.195852074466707 }, - "vertexSeeds": { - "c1": 7.402927999796104, - "c2": 7.897082612830302, - "c3": 7.94248655681234, - "c4": 7.950208537410937, - "c5": 7.308919869690256, - "c6": 7.636142708089183, - "c7": 7.319075813947077 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651874, + "c3": 9.570041608876567, + "c4": 7.656033287101256, + "c5": 5.742024965325927, + "c6": 3.828016643550618, + "c7": 1.914008321775309 }, "rgb": [238, 201, 159] }, @@ -261501,23 +261501,23 @@ "year": 1778, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 9.834887222716862, - "c2": 8.533573732494187, - "c3": 27.664765841605547, - "c4": 7.284460794386025, - "c5": -25.332751036929867, - "c6": 6.038255574150472, - "c7": -21.796175644339073 + "points": { + "c1": -18.6292146871362, + "c2": -0.9448964626700196, + "c3": -12.55805350364048, + "c4": -5.821267679829621, + "c5": 17.394513110465677, + "c6": 0.0997757547447975, + "c7": -9.532000720945966 }, - "vertexSeeds": { - "c1": 6.4733951271048635, - "c2": 6.74796525187931, - "c3": 6.741431321539921, - "c4": 6.551614195851764, - "c5": 6.818746124819036, - "c6": 6.928123080451473, - "c7": 6.691931161186658 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -261528,23 +261528,23 @@ "year": 1778, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 25.873910133639008, - "c2": -16.025525144379834, - "c3": 3.268421177595428, - "c4": -18.874467866150727, - "c5": -21.84757854947634, - "c6": 27.975552037191598, - "c7": 25.731313242840727 + "points": { + "c1": 1.042229775847435, + "c2": 17.27573133274143, + "c3": -7.250445051115516, + "c4": -15.555558413398437, + "c5": -14.462011243273013, + "c6": 2.2316176594632253, + "c7": 4.563939899602595 }, - "vertexSeeds": { - "c1": 6.663077403480103, - "c2": 6.73283856868136, - "c3": 6.594359761279016, - "c4": 6.360295966047315, - "c5": 6.464982596048328, - "c6": 6.888359755055345, - "c7": 6.613489897445248 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -261555,23 +261555,23 @@ "year": 1778, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -9.413707242076484, - "c2": -31.10101201856214, - "c3": -31.256748834695863, - "c4": -1.2911497407102601, - "c5": 21.54973060442149, - "c6": -9.66973597305433, - "c7": 6.2938670328281034 + "points": { + "c1": -37.5850643892113, + "c2": 14.497461371712305, + "c3": 29.12651178598375, + "c4": -20.259125707351814, + "c5": 9.92946668880328, + "c6": -23.80357077416898, + "c7": 37.42134529641997 }, - "vertexSeeds": { - "c1": 12.896145522042243, - "c2": 13.186104255254303, - "c3": 12.849214315301522, - "c4": 12.539299383505874, - "c5": 12.97192319520364, - "c6": 11.934882039960886, - "c7": 12.17823878940115 + "offsets": { + "c1": 22.168284789644012, + "c2": 19.001386962552, + "c3": 15.834489135460023, + "c4": 12.667591308368012, + "c5": 9.500693481276, + "c6": 6.333795654184023, + "c7": 3.1668978270920114 }, "rgb": [77, 76, 132] }, @@ -261582,23 +261582,23 @@ "year": 1778, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 0.8083211114827193, - "c2": -5.904794778814253, - "c3": -21.701806164276768, - "c4": 16.62826757774033, - "c5": 30.739861118268706, - "c6": -4.853507814449436, - "c7": 25.239696130081782 + "points": { + "c1": -8.686701150772755, + "c2": -21.664625121392, + "c3": 35.67151102063394, + "c4": -7.555577339170448, + "c5": 9.935961667058706, + "c6": -2.398694668378795, + "c7": 18.61152671383097 }, - "vertexSeeds": { - "c1": 2.506476683937824, - "c2": 2.506476683937824, - "c3": 2.506476683937824, - "c4": 2.506476683937824, - "c5": 2.506476683937824, - "c6": 2.506476683937824, - "c7": 2.506476683937824 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -261609,23 +261609,23 @@ "year": 1778, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 14.932072808314249, - "c2": -0.3310461727336431, - "c3": -15.313488100223077, - "c4": -5.54014566256301, - "c5": 0.5099671028379085, - "c6": 22.354809666591724, - "c7": 7.616904834311814 + "points": { + "c1": -2.6224898083697212, + "c2": 0.7880465020857628, + "c3": -27.259198667112276, + "c4": -19.601982866905157, + "c5": -1.503692243123698, + "c6": 25.530978325672987, + "c7": -24.776689086131924 }, - "vertexSeeds": { - "c1": 3.944035702937705, - "c2": 4.055575848877439, - "c3": 3.828895992374183, - "c4": 3.997351493470453, - "c5": 4.0025270854282216, - "c6": 3.8843348915265006, - "c7": 3.986342347820964 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -261636,23 +261636,23 @@ "year": 1778, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -2.020308950002633, - "c2": -0.6350077572998316, - "c3": 16.459940439850197, - "c4": -13.634691843193474, - "c5": -21.024589550413836, - "c6": 8.050536195682934, - "c7": -12.587982856923663 + "points": { + "c1": 17.28143720006865, + "c2": -24.21015455743433, + "c3": -3.8612657697278756, + "c4": 16.927575365634443, + "c5": -20.424898199226853, + "c6": -12.067601872762726, + "c7": 6.035269298879445 }, - "vertexSeeds": { - "c1": 6.380899494815143, - "c2": 6.3787712633549924, - "c3": 6.386892298720102, - "c4": 6.593994002449492, - "c5": 6.818464616935939, - "c6": 6.436971266808265, - "c7": 6.637912572098306 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -261663,23 +261663,23 @@ "year": 1778, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 20.101782821803464, - "c2": 17.69095670072583, - "c3": -8.927027592094348, - "c4": 10.314346301193677, - "c5": 21.884604641357104, - "c6": -25.96189998695171, - "c7": -16.475668587774095 + "points": { + "c1": 9.71151727954047, + "c2": -1.976426773327347, + "c3": -0.6672611518291092, + "c4": 15.388170236255174, + "c5": -16.336054095253072, + "c6": 2.729839587521166, + "c7": 0.46130724184839167 }, - "vertexSeeds": { - "c1": 8.559793451190325, - "c2": 8.633217403865183, - "c3": 8.532829891396053, - "c4": 8.649965476038126, - "c5": 8.580450932001884, - "c6": 8.510472828647746, - "c7": 8.603325740947321 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.399445214979151, + "c3": 10.332871012482677, + "c4": 8.2662968099861, + "c5": 6.199722607489627, + "c6": 4.13314840499305, + "c7": 2.066574202496474 }, "rgb": [77, 76, 132] }, @@ -261690,23 +261690,23 @@ "year": 1778, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": 6.724278598763455, - "c2": 45.3141587071259, - "c3": -5.097736633835574, - "c4": 39.47481638843783, - "c5": -41.959534167733906, - "c6": 27.16618516774126, - "c7": -14.937186056816081 + "points": { + "c1": 38.57783000919328, + "c2": 24.181375880164197, + "c3": 15.317829481087486, + "c4": -48.69116329293035, + "c5": -34.92740930560643, + "c6": 20.261732467007434, + "c7": -41.30900154275194 }, - "vertexSeeds": { - "c1": 5.3296517888344725, - "c2": 5.332173264192362, - "c3": 5.536393459295544, - "c4": 5.232924600990045, - "c5": 5.421482655062404, - "c6": 5.243669770100012, - "c7": 5.6287767191875355 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.726768377253824, + "c4": 5.381414701803054, + "c5": 4.036061026352285, + "c6": 2.6907073509015387, + "c7": 1.3453536754507693 }, "rgb": [77, 76, 132] }, @@ -261717,23 +261717,23 @@ "year": 1778, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -19.17665364049509, - "c2": -2.6856500281244564, - "c3": 24.245163851678647, - "c4": 6.950716663613875, - "c5": -0.7245592795821025, - "c6": -17.508475815759667, - "c7": -0.5923766089249796 + "points": { + "c1": -8.034720234560062, + "c2": -7.2783251589721125, + "c3": 1.1346089269493582, + "c4": 16.12961388485747, + "c5": -14.774445447254855, + "c6": -21.81589131184837, + "c7": -5.627662436446503 }, - "vertexSeeds": { - "c1": 5.294693084204689, - "c2": 5.249016888974029, - "c3": 5.093671063667639, - "c4": 5.288400133765982, - "c5": 5.147417656835141, - "c6": 5.045739936733127, - "c7": 5.346316693076933 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262148, + "c3": 6.47249190938511, + "c4": 5.177993527508098, + "c5": 3.883495145631061, + "c6": 2.588996763754049, + "c7": 1.2944983818770375 }, "rgb": [222, 0, 59] }, @@ -261744,23 +261744,23 @@ "year": 1778, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 15.884306201574319, - "c2": 30.694223009550264, - "c3": 16.44718031946757, - "c4": 30.727686870300097, - "c5": 12.01062305592668, - "c6": 7.843844632384815, - "c7": 8.107455791805052 + "points": { + "c1": 4.4688651472127745, + "c2": -14.441770387448912, + "c3": -19.249598933867766, + "c4": -23.121684882724487, + "c5": 2.1691188307957248, + "c6": 29.780783432793513, + "c7": 16.767771141089263 }, - "vertexSeeds": { - "c1": 9.32642487046632, - "c2": 9.32642487046632, - "c3": 9.32642487046632, - "c4": 9.32642487046632, - "c5": 9.32642487046632, - "c6": 9.32642487046632, - "c7": 9.32642487046632 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -261771,23 +261771,23 @@ "year": 1778, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -16.57651677944348, - "c2": 6.808704451412552, - "c3": 10.699643581551527, - "c4": 30.43484485294651, - "c5": 2.2941386747660886, - "c6": -4.600367837128353, - "c7": -4.60410969501341 + "points": { + "c1": 26.69929314894545, + "c2": 31.63361025162456, + "c3": -14.704493674094834, + "c4": 32.335334467192055, + "c5": 25.33005113549231, + "c6": 34.91991762345752, + "c7": 15.78838153571413 }, - "vertexSeeds": { - "c1": 7.540411196516924, - "c2": 9.252312144939735, - "c3": 7.614754945381716, - "c4": 8.679205328591111, - "c5": 8.149253631691957, - "c6": 8.755056987538666, - "c7": 9.161662664815145 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.50901525658807, + "c3": 11.257512713823393, + "c4": 9.006010171058714, + "c5": 6.754507628294035, + "c6": 4.503005085529357, + "c7": 2.2515025427646784 }, "rgb": [77, 76, 132] }, @@ -261798,23 +261798,23 @@ "year": 1778, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -10.225381229759002, - "c2": -11.174123980293665, - "c3": -31.830207979172865, - "c4": -25.859637932476794, - "c5": -28.49684041205576, - "c6": 14.19500410585323, - "c7": -14.348874207341566 + "points": { + "c1": 33.326005350453954, + "c2": -31.84439232361325, + "c3": 6.036600468832738, + "c4": -21.164736440901578, + "c5": 8.917175191815687, + "c6": 35.62988639060016, + "c7": 29.57002812626486 }, - "vertexSeeds": { - "c1": 6.305958492241936, - "c2": 6.19427779950422, - "c3": 6.0929260881880944, - "c4": 5.901515117212782, - "c5": 6.645768610900668, - "c6": 6.409171507662812, - "c7": 5.926541373621077 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957002, + "c3": 8.021266759130834, + "c4": 6.417013407304677, + "c5": 4.812760055478507, + "c6": 3.2085067036523385, + "c7": 1.6042533518261692 }, "rgb": [238, 201, 159] }, @@ -261825,23 +261825,23 @@ "year": 1778, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 17.68847140341436, - "c2": 0.06831001470541764, - "c3": -17.524525145989056, - "c4": 31.006698212878078, - "c5": 5.236636986362356, - "c6": 36.22135067310627, - "c7": -32.380151771898426 + "points": { + "c1": 18.183815627852866, + "c2": -22.825266706303914, + "c3": 18.469405813831848, + "c4": -31.606622834405737, + "c5": 3.9306029904978033, + "c6": -5.037021343938299, + "c7": -33.77978884173598 }, - "vertexSeeds": { - "c1": 8.417072505081002, - "c2": 7.678462043999639, - "c3": 7.879710201187252, - "c4": 8.459607886016293, - "c5": 7.47921033139465, - "c6": 8.466897414001698, - "c7": 7.754904207682068 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.34396671289875, + "c3": 10.286638927415623, + "c4": 8.22931114193251, + "c5": 6.171983356449381, + "c6": 4.114655570966255, + "c7": 2.0573277854831273 }, "rgb": [58, 15, 49] }, @@ -261852,23 +261852,23 @@ "year": 1778, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -43.157036534408135, - "c2": 42.139496822103816, - "c3": -6.838171072579023, - "c4": -39.79219913470081, - "c5": 15.70949937418883, - "c6": 33.83964022141678, - "c7": -40.28220940314282 + "points": { + "c1": 42.6157442881425, + "c2": -7.180722850731925, + "c3": -38.488518987410856, + "c4": -18.721844418250196, + "c5": -18.08040718916003, + "c6": -25.15054517723039, + "c7": -30.477057038190214 }, - "vertexSeeds": { - "c1": 2.2874384220434285, - "c2": 2.383053906293377, - "c3": 2.1244605799825136, - "c4": 2.2895252609255863, - "c5": 2.32270052267157, - "c6": 2.2077816421814127, - "c7": 2.3790875246710357 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679605, + "c3": 2.9126213592233023, + "c4": 2.330097087378641, + "c5": 1.7475728155339803, + "c6": 1.1650485436893192, + "c7": 0.582524271844661 }, "rgb": [77, 76, 132] }, @@ -261879,23 +261879,23 @@ "year": 1778, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 11.195285324912106, - "c2": -5.434979304646518, - "c3": 18.834010168349124, - "c4": 6.361894346563382, - "c5": 14.21385582615445, - "c6": 7.4301105255722675, - "c7": 31.76581038127955 + "points": { + "c1": -6.0301244248062815, + "c2": -12.162841995797336, + "c3": 7.024602135410092, + "c4": 33.68689884677987, + "c5": 19.274707552329986, + "c6": 27.700334477628132, + "c7": -17.171521836847184 }, - "vertexSeeds": { - "c1": 9.563868972924547, - "c2": 9.557603761042017, - "c3": 9.532105890628237, - "c4": 9.608039926024247, - "c5": 9.535582402769899, - "c6": 9.791252860668745, - "c7": 9.583756697518394 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392502, + "c3": 11.719833564493744, + "c4": 9.375866851594985, + "c5": 7.031900138696227, + "c6": 4.6879334257974685, + "c7": 2.3439667128987094 }, "rgb": [222, 0, 59] }, @@ -261906,23 +261906,23 @@ "year": 1778, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 21.690646464245482, - "c2": -26.37003832119481, - "c3": 24.32124560315932, - "c4": 24.27739346653137, - "c5": -40.501566702667134, - "c6": 7.418513101436709, - "c7": 6.546591995386109 + "points": { + "c1": 11.466481791778271, + "c2": -13.50106482660711, + "c3": -28.164371323680008, + "c4": 29.488240347124865, + "c5": 26.092063344420744, + "c6": -3.437835804312172, + "c7": 23.223719384456523 }, - "vertexSeeds": { - "c1": 5.779036239028007, - "c2": 6.075389886563758, - "c3": 5.999031724149358, - "c4": 6.100718233587053, - "c5": 5.91795874800084, - "c6": 6.1358905369787875, - "c7": 6.030015316313417 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112335, + "c3": 7.535829865926956, + "c4": 6.028663892741556, + "c5": 4.521497919556178, + "c6": 3.014331946370778, + "c7": 1.5071659731853997 }, "rgb": [86, 146, 138] }, @@ -261933,23 +261933,23 @@ "year": 1778, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -5.3536704679895415, - "c2": -22.2768906841105, - "c3": 13.134060618644874, - "c4": -29.7709705748823, - "c5": -4.4460787631801, - "c6": -21.886084348050794, - "c7": -12.38848082609237 + "points": { + "c1": -0.10322270499223407, + "c2": -25.899084590725234, + "c3": 7.351536204662111, + "c4": 8.531749697552428, + "c5": -14.565789755877304, + "c6": 24.602208658619077, + "c7": -3.047793680791198 }, - "vertexSeeds": { - "c1": 7.627436904307173, - "c2": 7.4934706477418285, - "c3": 7.913750993455366, - "c4": 8.025852515132511, - "c5": 7.940619291020879, - "c6": 8.033358740510485, - "c7": 7.936865647157138 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812755, + "c3": 9.662505779010642, + "c4": 7.73000462320851, + "c5": 5.7975034674063775, + "c6": 3.865002311604265, + "c7": 1.9325011558021326 }, "rgb": [58, 15, 49] }, @@ -261960,23 +261960,23 @@ "year": 1778, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -1.1327041766123571, - "c2": -18.90978971966713, - "c3": 23.260470749216097, - "c4": -31.916178681803377, - "c5": 19.508248328875126, - "c6": -32.55320458642122, - "c7": -21.51606996292172 + "points": { + "c1": -34.64897546934612, + "c2": -17.758498546340896, + "c3": 33.51239721457175, + "c4": 27.745505130510793, + "c5": -9.625997163069481, + "c6": 30.064156285027067, + "c7": -16.16457381568453 }, - "vertexSeeds": { - "c1": 12.228690716639647, - "c2": 12.713468394707945, - "c3": 12.067240602230642, - "c4": 12.065740379720022, - "c5": 12.283342135769608, - "c6": 12.6123720972176, - "c7": 12.30128700056483 + "offsets": { + "c1": 21.262135922330096, + "c2": 18.22468793342581, + "c3": 15.187239944521478, + "c4": 12.149791955617193, + "c5": 9.112343966712904, + "c6": 6.074895977808617, + "c7": 3.0374479889042876 }, "rgb": [222, 0, 59] }, @@ -261987,23 +261987,23 @@ "year": 1778, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -16.06726009500301, - "c2": -13.917022746060667, - "c3": 11.428503447398114, - "c4": -3.7620777861862784, - "c5": 0.060064760532366535, - "c6": -17.425141513495937, - "c7": -12.232248976015319 + "points": { + "c1": -24.382532324149793, + "c2": 2.9576491084104397, + "c3": 7.4044378374666735, + "c4": 23.585854952556993, + "c5": -25.125330251871425, + "c6": -9.807987716203943, + "c7": 15.900299638070209 }, - "vertexSeeds": { - "c1": 6.363774439097683, - "c2": 6.8883164604090386, - "c3": 6.5383291310901805, - "c4": 6.639328122032017, - "c5": 6.8012357106061465, - "c6": 6.8524300816719155, - "c7": 6.774016598784163 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -262014,23 +262014,23 @@ "year": 1778, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 16.514694187293323, - "c2": 18.147113474511606, - "c3": -26.96443807471635, - "c4": -23.80170874212766, - "c5": 28.392882642630667, - "c6": -23.857089262881026, - "c7": 24.505681070757007 + "points": { + "c1": -12.96215578423639, + "c2": 22.06869352609285, + "c3": -6.595772518310419, + "c4": 5.152934400055891, + "c5": 24.436025452075803, + "c6": 1.827082157677964, + "c7": -13.006805027268843 }, - "vertexSeeds": { - "c1": 7.596898898538353, - "c2": 7.44032053965233, - "c3": 7.983574544998067, - "c4": 7.719472813422592, - "c5": 7.556318896730036, - "c6": 7.70649926151251, - "c7": 7.36930163036369 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343042, + "c4": 7.637540453074433, + "c5": 5.7281553398058245, + "c6": 3.8187702265372163, + "c7": 1.9093851132686082 }, "rgb": [58, 15, 49] }, @@ -262041,23 +262041,23 @@ "year": 1778, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -27.488221158655616, - "c2": -16.703435521295823, - "c3": -2.184842790938788, - "c4": 33.23461862503941, - "c5": -8.388590371784169, - "c6": -27.84776150069814, - "c7": -21.35582394138078 + "points": { + "c1": 35.257848014111936, + "c2": -25.37929361357679, + "c3": -30.825112241686895, + "c4": -23.798384849211658, + "c5": 38.01032481360999, + "c6": -34.3959798238579, + "c7": 35.472515128809825 }, - "vertexSeeds": { - "c1": 11.321577542125631, - "c2": 12.291538535052863, - "c3": 12.22553387675816, - "c4": 11.127425762740785, - "c5": 12.550999552341652, - "c6": 11.052203401445656, - "c7": 11.086403439828299 + "offsets": { + "c1": 21.58576051779935, + "c2": 18.50208044382802, + "c3": 15.418400369856675, + "c4": 12.334720295885345, + "c5": 9.251040221914014, + "c6": 6.167360147942669, + "c7": 3.083680073971338 }, "rgb": [86, 146, 138] }, @@ -262068,23 +262068,23 @@ "year": 1778, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 7.145632137106261, - "c2": 28.59330005387394, - "c3": 6.343350142886898, - "c4": -35.49409460390217, - "c5": 18.613856060608697, - "c6": 22.283115795900848, - "c7": -36.05211283330307 + "points": { + "c1": -15.798959202291282, + "c2": 26.99485198627692, + "c3": -17.059289164222307, + "c4": -6.703266708985389, + "c5": 0.5230588724708056, + "c6": -20.439364074498915, + "c7": 8.346108239059213 }, - "vertexSeeds": { - "c1": 3.102017392342071, - "c2": 3.8004570467164696, - "c3": 3.6768294221215134, - "c4": 3.5515952779746915, - "c5": 3.613749376882923, - "c6": 3.111844156735561, - "c7": 3.6375763490033775 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963941, + "c3": 4.576976421636615, + "c4": 3.6615811373092937, + "c5": 2.7461858529819683, + "c6": 1.8307905686546468, + "c7": 0.9153952843273252 }, "rgb": [58, 15, 49] }, @@ -262095,23 +262095,23 @@ "year": 1778, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -34.973282348981954, - "c2": -16.77311442453113, - "c3": -11.727231949844015, - "c4": 25.613577260045936, - "c5": -31.49824406789467, - "c6": 2.2120330433366107, - "c7": -22.72982996070257 + "points": { + "c1": -16.142485288137156, + "c2": 0.382597190644681, + "c3": -36.87546118018368, + "c4": 23.82093313846501, + "c5": 37.45497145562837, + "c6": -33.577196582743504, + "c7": -11.417842602114984 }, - "vertexSeeds": { - "c1": 4.226746794787768, - "c2": 3.986962263636986, - "c3": 4.198394166263577, - "c4": 3.959868639691414, - "c5": 4.211608963116423, - "c6": 3.9484800978541057, - "c7": 3.969306351751313 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [86, 146, 138] }, @@ -262122,23 +262122,23 @@ "year": 1778, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -31.19720155847808, - "c2": -41.58727565441832, - "c3": -5.045697638585885, - "c4": 3.583315510844834, - "c5": -14.41601643519397, - "c6": 34.30323157289879, - "c7": -26.513085424604206 + "points": { + "c1": -18.74688517115835, + "c2": -43.2603513027079, + "c3": 4.861493969236406, + "c4": 34.90157734565802, + "c5": -37.22944821007361, + "c6": -17.818689760361412, + "c7": -27.05230386645073 }, - "vertexSeeds": { - "c1": 3.3675319573786187, - "c2": 3.366307124718284, - "c3": 3.108692403685233, - "c4": 3.2776094926196584, - "c5": 3.1370595088934135, - "c6": 3.254524150671161, - "c7": 3.245291487699656 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441057, + "c3": 4.276467868700877, + "c4": 3.4211742949607045, + "c5": 2.565880721220525, + "c6": 1.7105871474803522, + "c7": 0.8552935737401728 }, "rgb": [86, 146, 138] }, @@ -262149,23 +262149,23 @@ "year": 1778, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": -18.847678446258715, - "c2": -9.539722893448834, - "c3": -3.49527709875316, - "c4": 18.97193094956605, - "c5": 12.314125705661716, - "c6": 6.6845652767424255, - "c7": -6.634994988998354 + "points": { + "c1": -4.585372584539538, + "c2": -20.860940453170212, + "c3": -6.480511864207518, + "c4": 3.8316257480608193, + "c5": 11.561712628479555, + "c6": 15.63425490942236, + "c7": -3.565551504317231 }, - "vertexSeeds": { - "c1": 5.8084108052372265, - "c2": 5.78628763840987, - "c3": 5.790691053531973, - "c4": 5.781979926899525, - "c5": 5.793230819424491, - "c6": 5.790062858476177, - "c7": 5.790461895120279 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066613, + "c3": 6.934812760055557, + "c4": 5.5478502080445, + "c5": 4.160887656033169, + "c6": 2.7739251040221125, + "c7": 1.3869625520110562 }, "rgb": [238, 201, 159] }, @@ -262176,23 +262176,23 @@ "year": 1778, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -11.843774839535792, - "c2": 2.776255306870386, - "c3": -12.372083507809423, - "c4": 4.693408258170798, - "c5": 7.732512715514801, - "c6": 14.250933829621943, - "c7": 19.140962382624785 + "points": { + "c1": -3.9613923481646403, + "c2": 5.292913647376025, + "c3": 11.32229944095387, + "c4": -13.275734785230553, + "c5": -16.990719885174933, + "c6": -20.116675224759987, + "c7": 16.18635779813274 }, - "vertexSeeds": { - "c1": 6.6560159650558495, - "c2": 6.736160844471996, - "c3": 6.924658949505523, - "c4": 6.538664845361988, - "c5": 6.78064479375631, - "c6": 6.366757580949068, - "c7": 6.56430436059708 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -262203,23 +262203,23 @@ "year": 1778, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -4.2207602470479735, - "c2": -2.068452542330256, - "c3": 13.404734025853209, - "c4": -3.863704259751877, - "c5": -11.770279476069206, - "c6": 14.603455157099546, - "c7": 19.865364214807464 + "points": { + "c1": -13.292501137922875, + "c2": -2.2707074246902295, + "c3": 21.868518095297105, + "c4": 6.258542766558481, + "c5": -3.3674380400631314, + "c6": -0.07382349369891017, + "c7": -10.40350242073758 }, - "vertexSeeds": { - "c1": 10.920064957772178, - "c2": 10.883663983834865, - "c3": 10.194309158779362, - "c4": 10.89525003076137, - "c5": 10.192464102077714, - "c6": 10.316788368337107, - "c7": 10.884939274592433 + "offsets": { + "c1": 18.349514563106798, + "c2": 15.728155339805813, + "c3": 13.106796116504832, + "c4": 10.48543689320389, + "c5": 7.8640776699029065, + "c6": 5.242718446601923, + "c7": 2.6213592233009835 }, "rgb": [222, 0, 59] }, @@ -262230,23 +262230,23 @@ "year": 1778, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -37.61236813472238, - "c2": 3.843646644213436, - "c3": 0.8171694817840205, - "c4": -22.03421424085915, - "c5": -31.232248178463948, - "c6": 23.68541004038478, - "c7": -10.650118324002872 + "points": { + "c1": -13.162023220778362, + "c2": 37.51885936681931, + "c3": -33.36557395324943, + "c4": 31.65509359242091, + "c5": 36.19631052929658, + "c6": -23.93611563062582, + "c7": 40.141022564691596 }, - "vertexSeeds": { - "c1": 5.487365878310667, - "c2": 5.554412316374404, - "c3": 5.993387892656632, - "c4": 5.459042316717596, - "c5": 6.032179034189205, - "c6": 6.092818400543032, - "c7": 5.477398170158852 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.12621359223301, + "c3": 7.605177993527509, + "c4": 6.084142394822006, + "c5": 4.563106796116505, + "c6": 3.042071197411003, + "c7": 1.5210355987055015 }, "rgb": [86, 146, 138] }, @@ -262257,23 +262257,23 @@ "year": 1778, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 5.783429092287896, - "c2": 5.9982901110071865, - "c3": -27.99639825110045, - "c4": 19.26742349778923, - "c5": 10.545333128770054, - "c6": 26.186389561481263, - "c7": -19.555105265855122 + "points": { + "c1": -37.70480525534665, + "c2": 16.30071425690175, + "c3": 17.843139099753785, + "c4": 12.562362369481129, + "c5": -21.103265769459316, + "c6": -19.612787312749287, + "c7": -3.0209225096584404 }, - "vertexSeeds": { - "c1": 5.964014732396556, - "c2": 6.073446694557084, - "c3": 5.7457815922244615, - "c4": 5.99549443755558, - "c5": 6.157524543410984, - "c6": 5.758434254188038, - "c7": 5.693613227135893 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830781, + "c3": 7.374017568192327, + "c4": 5.899214054553854, + "c5": 4.424410540915401, + "c6": 2.949607027276927, + "c7": 1.4748035136384738 }, "rgb": [77, 76, 132] }, @@ -262284,23 +262284,23 @@ "year": 1778, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": -12.871333050303871, - "c2": -9.110124672695285, - "c3": -9.05437098752981, - "c4": 18.549336673439583, - "c5": -20.637271595056923, - "c6": -9.25501769671617, - "c7": -3.7928508575617137 + "points": { + "c1": -7.918836561098914, + "c2": 7.128731230889578, + "c3": 22.82724039257303, + "c4": 12.835959148608566, + "c5": 11.54435557279156, + "c6": 19.896625483768986, + "c7": -9.382833748244861 }, - "vertexSeeds": { - "c1": 2.2687629321686025, - "c2": 1.8097407628812288, - "c3": 2.2532448603595596, - "c4": 2.266905869476832, - "c5": 1.9866046481762514, - "c6": 1.860951414188896, - "c7": 2.1337637295003224 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [222, 0, 59] }, @@ -262311,23 +262311,23 @@ "year": 1778, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 15.884500901542573, - "c2": -0.8865085742230434, - "c3": -20.3575192858905, - "c4": -19.043232197582874, - "c5": -0.1920603007788415, - "c6": 18.306189080813887, - "c7": -11.970173027229672 + "points": { + "c1": 21.844633430741155, + "c2": -10.111045318335547, + "c3": 1.3632972108123376, + "c4": 0.5620035847805056, + "c5": 12.719739928339713, + "c6": -5.299786172718459, + "c7": 2.809558752553876 }, - "vertexSeeds": { - "c1": 6.914161730377044, - "c2": 6.581261252192452, - "c3": 6.847191030352381, - "c4": 6.556039056549734, - "c5": 6.389383340706359, - "c6": 6.832763275683814, - "c7": 6.543959167593293 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -262338,23 +262338,23 @@ "year": 1778, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 13.05007387015948, - "c2": 1.7958340533538077, - "c3": 21.110003025440847, - "c4": -0.9960741498725483, - "c5": 2.7603482723738537, - "c6": -21.968720707201395, - "c7": 26.2554793903048 + "points": { + "c1": -12.76202190352624, + "c2": -28.124564088272187, + "c3": -8.284628527353252, + "c4": 26.423436055526714, + "c5": 24.563086336105698, + "c6": 17.063102206342066, + "c7": -20.185859028992336 }, - "vertexSeeds": { - "c1": 3.6286365655612465, - "c2": 4.295020645503209, - "c3": 4.468524533355131, - "c4": 3.8059667033485396, - "c5": 3.791277222144795, - "c6": 3.6295601299712503, - "c7": 4.197003549665522 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532594, + "c3": 5.478502080443829, + "c4": 4.382801664355064, + "c5": 3.2871012482662993, + "c6": 2.1914008321775342, + "c7": 1.095700416088769 }, "rgb": [58, 15, 49] }, @@ -262365,23 +262365,23 @@ "year": 1778, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -17.54013480002554, - "c2": -25.78533138207368, - "c3": -12.530841196431023, - "c4": 30.51915195563025, - "c5": -14.737512935061002, - "c6": 28.201256898762296, - "c7": -28.50329879718781 + "points": { + "c1": -18.8456914423526, + "c2": 12.619906688898219, + "c3": -7.042067723907849, + "c4": 2.722319769463631, + "c5": 22.728666549043382, + "c6": -25.03220095755445, + "c7": -23.386917273328958 }, - "vertexSeeds": { - "c1": 10.280383140530505, - "c2": 10.382261041732741, - "c3": 9.85932303985037, - "c4": 10.601378568233871, - "c5": 10.15565799902883, - "c6": 9.845621739002711, - "c7": 9.869259111930186 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363395, + "c3": 12.852519648636136, + "c4": 10.282015718908916, + "c5": 7.7115117891816976, + "c6": 5.141007859454479, + "c7": 2.570503929727219 }, "rgb": [77, 76, 132] }, @@ -262392,23 +262392,23 @@ "year": 1778, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 13.508638150361861, - "c2": -14.075347927632134, - "c3": 21.265248123156958, - "c4": -26.247452727833974, - "c5": -21.404082380967033, - "c6": 33.38469164354138, - "c7": -4.277350629134574 + "points": { + "c1": -17.363556321198406, + "c2": 21.628438485905733, + "c3": 33.34603291468171, + "c4": 30.165452605475288, + "c5": -8.376347574190106, + "c6": -27.79877253562357, + "c7": 24.896173918171804 }, - "vertexSeeds": { - "c1": 11.154018914131546, - "c2": 11.237049640181302, - "c3": 10.863148447534083, - "c4": 10.800140899096075, - "c5": 10.821726593183175, - "c6": 11.5549182362786, - "c7": 10.601694945801151 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.532593619972275, + "c3": 13.777161349976865, + "c4": 11.021729079981501, + "c5": 8.266296809986137, + "c6": 5.510864539990773, + "c7": 2.7554322699953646 }, "rgb": [77, 76, 132] }, @@ -262419,23 +262419,23 @@ "year": 1778, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": -16.793053370664104, - "c2": -5.806756963523592, - "c3": -8.970700949298838, - "c4": -10.845816466069714, - "c5": -7.645215289436274, - "c6": -8.566216214583719, - "c7": 18.435701393510598 + "points": { + "c1": -15.925155747219776, + "c2": -17.450083839891143, + "c3": -2.5210358529067385, + "c4": 4.178850662150488, + "c5": 11.422255867187559, + "c6": -14.812932461738118, + "c7": 8.89032734185659 }, - "vertexSeeds": { - "c1": 9.937524182456787, - "c2": 10.556226435090931, - "c3": 10.51375514294569, - "c4": 10.496554339276384, - "c5": 10.272022428665368, - "c6": 10.291723900888352, - "c7": 10.318824011012655 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363404, + "c3": 12.852519648636148, + "c4": 10.282015718908937, + "c5": 7.71151178918168, + "c6": 5.141007859454469, + "c7": 2.5705039297272556 }, "rgb": [77, 76, 132] }, @@ -262446,23 +262446,23 @@ "year": 1778, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": 23.877159147215366, - "c2": -16.309099619168585, - "c3": -30.800489386569883, - "c4": -0.6748792252558928, - "c5": 9.30833827102137, - "c6": 13.423247084400856, - "c7": 29.35206605662063 + "points": { + "c1": 23.426892961899128, + "c2": 3.583899104671204, + "c3": 37.85796733148503, + "c4": -6.359192621620451, + "c5": 13.577293368139692, + "c6": 52.144947410825935, + "c7": -11.315369021616497 }, - "vertexSeeds": { - "c1": 10.979749426276813, - "c2": 10.994859816648239, - "c3": 10.472191908763277, - "c4": 10.7152114602089, - "c5": 10.17573056915972, - "c6": 9.763332620156282, - "c7": 9.853623852076504 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.811373092926502, + "c3": 13.176144244105426, + "c4": 10.540915395284323, + "c5": 7.905686546463251, + "c6": 5.270457697642177, + "c7": 2.6352288488210887 }, "rgb": [86, 146, 138] }, @@ -262473,23 +262473,23 @@ "year": 1778, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -6.230876854178405, - "c2": 21.374469880465554, - "c3": 10.914596178753811, - "c4": -5.145214847783301, - "c5": -3.6604662372084427, - "c6": 0.6448229389228004, - "c7": 21.738960893616884 + "points": { + "c1": 13.919798286488557, + "c2": 18.226752926151946, + "c3": -1.8596097677022847, + "c4": 16.60970843023467, + "c5": 21.31809212195237, + "c6": 20.77260485549123, + "c7": -5.819668460100001 }, - "vertexSeeds": { - "c1": 3.161669198904514, - "c2": 3.1463447043118173, - "c3": 3.1817318910971117, - "c4": 2.8985104981919023, - "c5": 3.2189182134668597, - "c6": 2.9371119726545745, - "c7": 3.09425754454672 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -262500,23 +262500,23 @@ "year": 1778, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": 4.309383498802578, - "c2": 14.211258386796068, - "c3": 4.416548485419142, - "c4": 1.1584990631935987, - "c5": 10.498792497610964, - "c6": 3.1629545359385993, - "c7": -10.459620502508962 + "points": { + "c1": -2.5840233566243143, + "c2": 19.20115344505426, + "c3": -13.921225417793362, + "c4": 11.928995143865173, + "c5": 11.924087705262785, + "c6": 16.11783730728424, + "c7": -9.769735069176443 }, - "vertexSeeds": { - "c1": 2.1458673063344067, - "c2": 2.1668499732279365, - "c3": 2.1931780194181933, - "c4": 2.142508798514834, - "c5": 2.189266647904434, - "c6": 2.2034863983432804, - "c7": 2.238785343723509 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705961, + "c3": 2.7045769764216407, + "c4": 2.1636615811373106, + "c5": 1.6227461858529806, + "c6": 1.0818307905686508, + "c7": 0.54091539528433 }, "rgb": [86, 146, 138] }, @@ -262527,23 +262527,23 @@ "year": 1779, "resistanceReported": false, "duration": 43977600, - "curveSeeds": { - "c1": -24.64373886981239, - "c2": 41.663170790738796, - "c3": -23.838052060480713, - "c4": 56.349299871861, - "c5": -47.273908866065725, - "c6": 21.163535330446983, - "c7": -20.84562134077649 + "points": { + "c1": -22.29068494884274, + "c2": 29.159657119856085, + "c3": 50.253796889861185, + "c4": 3.588995827942739, + "c5": -34.363523973665835, + "c6": -19.954548168236364, + "c7": 57.49020041923689 }, - "vertexSeeds": { - "c1": 5.149794688574098, - "c2": 5.913743893647005, - "c3": 7.46658762720209, - "c4": 5.730199140968818, - "c5": 4.624974725335131, - "c6": 6.635791905005617, - "c7": 6.679437383971408 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927875, + "c3": 9.153952843273231, + "c4": 7.323162274618583, + "c5": 5.49237170596394, + "c6": 3.6615811373092915, + "c7": 1.8307905686546457 }, "rgb": [77, 76, 132] }, @@ -262554,23 +262554,23 @@ "year": 1778, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 6.661879137216232, - "c2": -14.851614729737122, - "c3": 26.031844199724695, - "c4": 2.2042234045014766, - "c5": 1.095363258471501, - "c6": -19.969140331499986, - "c7": 26.755104976713326 + "points": { + "c1": 11.382077330448453, + "c2": -3.1110584830024592, + "c3": 10.459427050469799, + "c4": -28.95001475374695, + "c5": -23.689384959759558, + "c6": -34.54181832638656, + "c7": -14.565655115719675 }, - "vertexSeeds": { - "c1": 9.077197269282895, - "c2": 8.664563537830373, - "c3": 8.656629361592417, - "c4": 8.874286576835656, - "c5": 8.99063591376873, - "c6": 8.718840731192078, - "c7": 8.749433269061578 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306507, + "c3": 11.095700416088768, + "c4": 8.876560332871007, + "c5": 6.657420249653264, + "c6": 4.438280166435503, + "c7": 2.219140083217762 }, "rgb": [86, 146, 138] }, @@ -262581,23 +262581,23 @@ "year": 1778, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 2.6925798049425964, - "c2": 20.69841862935251, - "c3": 23.46868030693848, - "c4": -4.423663820331033, - "c5": -20.598109934796398, - "c6": 25.19701080778804, - "c7": -24.616972047736454 + "points": { + "c1": 24.047183037651102, + "c2": 20.713946807198738, + "c3": 7.839442285119304, + "c4": 1.0110121241490724, + "c5": -25.627314865613833, + "c6": -24.536530861285183, + "c7": -19.896202671399386 }, - "vertexSeeds": { - "c1": 11.098050503614116, - "c2": 10.251390853121032, - "c3": 11.109656389106727, - "c4": 10.615556319847332, - "c5": 10.741236141151669, - "c6": 10.123826101555654, - "c7": 10.889026730943304 + "offsets": { + "c1": 18.576051779935277, + "c2": 15.922330097087391, + "c3": 13.268608414239468, + "c4": 10.614886731391582, + "c5": 7.9611650485436956, + "c6": 5.30744336569581, + "c7": 2.6537216828478862 }, "rgb": [77, 76, 132] }, @@ -262608,23 +262608,23 @@ "year": 1778, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 2.6693605203240836, - "c2": -23.795825438229578, - "c3": 32.042207819988086, - "c4": 28.52512484573551, - "c5": -2.358649944309093, - "c6": 38.513723631589464, - "c7": -6.256503994969258 + "points": { + "c1": -2.319112082920668, + "c2": -35.67104767348222, + "c3": -47.48047263506841, + "c4": 23.620690773405478, + "c5": 14.664637317139906, + "c6": 0.2915693948576603, + "c7": -48.43807440260251 }, - "vertexSeeds": { - "c1": 7.906159559535226, - "c2": 8.230641973223245, - "c3": 8.098579821655239, - "c4": 8.032957763390625, - "c5": 8.103918003724036, - "c6": 7.962119087642566, - "c7": 8.017932709771383 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255189, + "c3": 9.916782246879336, + "c4": 7.9334257975034586, + "c5": 5.950069348127608, + "c6": 3.9667128987517293, + "c7": 1.983356449375851 }, "rgb": [77, 76, 132] }, @@ -262635,23 +262635,23 @@ "year": 1778, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -18.259034036194826, - "c2": -23.767854532386515, - "c3": 16.95434287429063, - "c4": -14.019602298354936, - "c5": -5.751241775201478, - "c6": 21.504914659737878, - "c7": -14.832671605098032 + "points": { + "c1": -34.88483510732822, + "c2": 8.354208826607064, + "c3": -25.61007802532849, + "c4": 2.2751508401766856, + "c5": -1.6737676302956643, + "c6": -37.2460214643763, + "c7": -16.906910775004224 }, - "vertexSeeds": { - "c1": 9.306602462975238, - "c2": 8.667239522726934, - "c3": 9.319378971162278, - "c4": 9.359747075542892, - "c5": 8.87735996255686, - "c6": 9.373847295409071, - "c7": 8.91235026876233 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.42579750346741, + "c3": 11.188164586222843, + "c4": 8.950531668978279, + "c5": 6.712898751733714, + "c6": 4.47526583448913, + "c7": 2.237632917244565 }, "rgb": [222, 0, 59] }, @@ -262662,23 +262662,23 @@ "year": 1778, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -15.160004095245334, - "c2": -36.70131643609822, - "c3": -25.18720486118852, - "c4": -18.27653789316147, - "c5": -39.938754676283786, - "c6": 33.932524211063786, - "c7": -6.773476762095996 + "points": { + "c1": 12.701426748476678, + "c2": -40.177988819347256, + "c3": -20.686002488872276, + "c4": 45.89676133548111, + "c5": 22.091152508992273, + "c6": 34.71026109393534, + "c7": -21.44394283599132 }, - "vertexSeeds": { - "c1": 10.32016039102955, - "c2": 9.819553954651326, - "c3": 9.858559272641486, - "c4": 11.975250851433465, - "c5": 10.442579149855463, - "c6": 11.4537491796471, - "c7": 9.98181830736074 + "offsets": { + "c1": 20.388349514563107, + "c2": 17.4757281553398, + "c3": 14.5631067961165, + "c4": 11.650485436893215, + "c5": 8.73786407766991, + "c6": 5.825242718446607, + "c7": 2.9126213592233037 }, "rgb": [86, 146, 138] }, @@ -262689,23 +262689,23 @@ "year": 1778, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 15.6935812370184, - "c2": 26.188906965738347, - "c3": 14.62193235518535, - "c4": 2.546504177269995, - "c5": -16.475853947639436, - "c6": -27.661075056418166, - "c7": -6.542306698864703 + "points": { + "c1": 30.125870463648845, + "c2": -19.76506522334973, + "c3": -12.939020824729493, + "c4": 0.3284319205882653, + "c5": -3.988627373418833, + "c6": 33.64579005004479, + "c7": 17.85793631897875 }, - "vertexSeeds": { - "c1": 8.293769479576978, - "c2": 8.563935904352107, - "c3": 8.395527120257647, - "c4": 8.537543655497396, - "c5": 8.612492681727314, - "c6": 8.00637306645782, - "c7": 8.61543808872765 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898755, + "c3": 10.286638927415634, + "c4": 8.229311141932511, + "c5": 6.171983356449389, + "c6": 4.114655570966244, + "c7": 2.057327785483122 }, "rgb": [238, 201, 159] }, @@ -262716,23 +262716,23 @@ "year": 1778, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 1.2460907502276442, - "c2": 18.36641786263004, - "c3": 7.851479305846514, - "c4": -16.620287234794848, - "c5": 0.08833865334240443, - "c6": 14.515997262348176, - "c7": -22.14094208252949 + "points": { + "c1": -28.908197233346, + "c2": -18.381005790707853, + "c3": -13.811090028433897, + "c4": 17.36850237452175, + "c5": 7.350237659067947, + "c6": -23.091340473999743, + "c7": 3.599268778956766 }, - "vertexSeeds": { - "c1": 6.290360237650324, - "c2": 6.304659741208552, - "c3": 5.7620422609951785, - "c4": 5.660175485462748, - "c5": 6.304454493724343, - "c6": 6.041068741982662, - "c7": 6.2680754490646 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661576, + "c4": 6.158113730929259, + "c5": 4.6185852981969395, + "c6": 3.0790568654646364, + "c7": 1.5395284327323182 }, "rgb": [86, 146, 138] }, @@ -262743,23 +262743,23 @@ "year": 1778, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -7.415908554929651, - "c2": -24.21803532372533, - "c3": -5.475285368240957, - "c4": -28.44183449112309, - "c5": 1.7707765876782098, - "c6": 13.862245164219853, - "c7": 14.731786888284166 + "points": { + "c1": 1.2003883192892104, + "c2": -3.6981536838360185, + "c3": -1.478432000004883, + "c4": -28.738857926713152, + "c5": 14.436480218772843, + "c6": -10.490054802160376, + "c7": -23.949934087726298 }, - "vertexSeeds": { - "c1": 11.674110027602488, - "c2": 11.250916314167217, - "c3": 11.94425798089493, - "c4": 11.797803243990032, - "c5": 11.210433778087635, - "c6": 11.418489472035093, - "c7": 12.191680374583392 + "offsets": { + "c1": 20.42071197411003, + "c2": 17.503467406380047, + "c3": 14.586222838650015, + "c4": 11.66897827092003, + "c5": 8.751733703190002, + "c6": 5.834489135460015, + "c7": 2.9172445677299863 }, "rgb": [58, 15, 49] }, @@ -262770,23 +262770,23 @@ "year": 1778, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 26.09205946801763, - "c2": -28.038208030399478, - "c3": -22.394612533217014, - "c4": 25.930350391154008, - "c5": 30.030452255710728, - "c6": -23.763896973360175, - "c7": 25.982632512491357 + "points": { + "c1": 8.041712263017828, + "c2": 3.4472278112519845, + "c3": 11.797312503473321, + "c4": 36.0555558513786, + "c5": -28.637418096399323, + "c6": -0.3113431728896856, + "c7": 5.0324183619785146 }, - "vertexSeeds": { - "c1": 10.773347226018362, - "c2": 11.366994783018333, - "c3": 10.831781096903178, - "c4": 10.997528913289997, - "c5": 11.254511791226928, - "c6": 11.645439263057987, - "c7": 10.770095596297377 + "offsets": { + "c1": 19.676375404530745, + "c2": 16.865464632454913, + "c3": 14.054553860379121, + "c4": 11.243643088303289, + "c5": 8.432732316227456, + "c6": 5.621821544151624, + "c7": 2.8109107720758324 }, "rgb": [77, 76, 132] }, @@ -262797,23 +262797,23 @@ "year": 1778, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -21.118580248205348, - "c2": -17.681026460444528, - "c3": 6.90934000493802, - "c4": -10.44529415876044, - "c5": -25.487592093597883, - "c6": -19.85423568032418, - "c7": -27.106429712280338 + "points": { + "c1": 19.441845093681515, + "c2": -9.124620443953887, + "c3": -22.29420749065732, + "c4": 23.58471527242621, + "c5": -17.0014895136654, + "c6": -22.00604975042112, + "c7": 7.996824487149198 }, - "vertexSeeds": { - "c1": 9.650968391161896, - "c2": 9.27541232003762, - "c3": 7.808345880220333, - "c4": 9.347706448609687, - "c5": 9.241723221667733, - "c6": 8.34757128016736, - "c7": 9.200871605027318 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110953, + "c3": 11.558021266759134, + "c4": 9.246417013407305, + "c5": 6.934812760055476, + "c6": 4.623208506703657, + "c7": 2.3116042533518284 }, "rgb": [86, 146, 138] }, @@ -262824,23 +262824,23 @@ "year": 1779, "resistanceReported": false, "duration": 50025600, - "curveSeeds": { - "c1": 58.76671608451767, - "c2": 9.791879748135244, - "c3": 14.444783441190552, - "c4": -1.499152970190842, - "c5": 26.384100556938648, - "c6": 36.22763793803752, - "c7": 23.065600185994356 + "points": { + "c1": 61.45832659737822, + "c2": 27.387299268847983, + "c3": 50.21889265131027, + "c4": 52.51084071393875, + "c5": 22.743869856314163, + "c6": 11.251795996908811, + "c7": 11.161461709951055 }, - "vertexSeeds": { - "c1": 5.721954639483514, - "c2": 4.127780488516124, - "c3": 5.572814568730119, - "c4": 4.074788613360365, - "c5": 6.299567016281146, - "c6": 5.856879080917978, - "c7": 7.284393103933928 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938975, + "c3": 10.309754969949145, + "c4": 8.247803975959316, + "c5": 6.185852981969486, + "c6": 4.123901987979657, + "c7": 2.06195099398983 }, "rgb": [238, 201, 159] }, @@ -262851,23 +262851,23 @@ "year": 1778, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 17.756027775198064, - "c2": 24.215598223436714, - "c3": -19.216871445718617, - "c4": 11.326587286175709, - "c5": -9.597146034896934, - "c6": -3.8559300531826537, - "c7": -26.730844042042154 + "points": { + "c1": -40.949994465456484, + "c2": 31.824672865573334, + "c3": 15.88137703913133, + "c4": 13.502457139013657, + "c5": 13.717197943606209, + "c6": -27.557312261441563, + "c7": -12.26943084803369 }, - "vertexSeeds": { - "c1": 8.468313322012133, - "c2": 8.397654004775138, - "c3": 9.030192570351577, - "c4": 8.775471852158054, - "c5": 8.523771161052496, - "c6": 9.011832371294613, - "c7": 9.026794703733502 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.1761442441054, + "c3": 10.980120203421178, + "c4": 8.784096162736935, + "c5": 6.5880721220527105, + "c6": 4.3920480813684675, + "c7": 2.196024040684223 }, "rgb": [222, 0, 59] }, @@ -262878,23 +262878,23 @@ "year": 1778, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 4.232483315202302, - "c2": -7.8810479160394635, - "c3": 33.58517233591766, - "c4": 3.5482888610237495, - "c5": -15.43739844440244, - "c6": -14.139399608207587, - "c7": 7.980407966674498 + "points": { + "c1": -34.91996507168862, + "c2": -24.765521829544234, + "c3": 38.24516715042081, + "c4": -45.3950021677508, + "c5": -16.31147870485839, + "c6": -43.81844532287943, + "c7": 37.09696248457425 }, - "vertexSeeds": { - "c1": 4.597856554618502, - "c2": 4.59169026960288, - "c3": 4.597398105454824, - "c4": 4.596726645033677, - "c5": 4.598883514858761, - "c6": 4.596135538301033, - "c7": 4.597677528115476 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572847, + "c3": 5.501618122977409, + "c4": 4.401294498381971, + "c5": 3.300970873786314, + "c6": 2.200647249190876, + "c7": 1.100323624595438 }, "rgb": [222, 0, 59] }, @@ -262905,23 +262905,23 @@ "year": 1778, "resistanceReported": false, "duration": 3542400, - "curveSeeds": { - "c1": -7.012055676991102, - "c2": 8.70086785601543, - "c3": -7.428123648307168, - "c4": -13.594981875551367, - "c5": 5.583215462533067, - "c6": -4.97692975978344, - "c7": -8.182337590867295 + "points": { + "c1": -12.558224296372872, + "c2": 10.266925048614757, + "c3": 9.615681565981658, + "c4": 10.697512248056364, + "c5": 11.311018337870985, + "c6": 14.749456979035523, + "c7": -1.4970273692086113 }, - "vertexSeeds": { - "c1": 3.2961829795501756, - "c2": 3.25167057248605, - "c3": 3.264912057955307, - "c4": 3.2144874914480965, - "c5": 3.2395879755753643, - "c6": 3.3382098564736578, - "c7": 3.1959240070425836 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998608, + "c3": 4.022191400832183, + "c4": 3.2177531206657433, + "c5": 2.413314840499304, + "c6": 1.6088765603328785, + "c7": 0.8044382801664393 }, "rgb": [238, 201, 159] }, @@ -262932,23 +262932,23 @@ "year": 1778, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": 7.828615474452299, - "c2": -6.372569250744359, - "c3": -14.822983250801828, - "c4": 5.140994922148128, - "c5": 15.987989745778052, - "c6": 8.245649240989135, - "c7": 3.9012456251067 + "points": { + "c1": 11.47685941667562, + "c2": -11.69700076732063, + "c3": 11.57506912137551, + "c4": -1.825925145799694, + "c5": -15.362676058708507, + "c6": 8.842851408452521, + "c7": 0.12776341519900214 }, - "vertexSeeds": { - "c1": 3.2296740865339424, - "c2": 3.2465046183281223, - "c3": 3.229495463968476, - "c4": 3.23140865340938, - "c5": 3.2632125278132444, - "c6": 3.24651632130446, - "c7": 3.248757010860454 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797526, + "c3": 3.906611188164553, + "c4": 3.125288950531658, + "c5": 2.343966712898763, + "c6": 1.562644475265868, + "c7": 0.7813222376328951 }, "rgb": [238, 201, 159] }, @@ -262959,23 +262959,23 @@ "year": 1778, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 4.158994641387935, - "c2": -2.059664524787898, - "c3": 23.060119681331166, - "c4": 29.31858321249419, - "c5": 23.476431101189178, - "c6": 4.4049221766180295, - "c7": -16.83075935493492 + "points": { + "c1": 19.759124142411203, + "c2": 13.611275985538398, + "c3": 28.186529064554968, + "c4": -2.7005244290581665, + "c5": -7.832300235473053, + "c6": 0.12468804486611162, + "c7": 29.45215652944249 }, - "vertexSeeds": { - "c1": 9.630098497668609, - "c2": 9.929939132597418, - "c3": 10.55307128836098, - "c4": 9.234005030033785, - "c5": 9.734553824571234, - "c6": 9.692341723751317, - "c7": 9.559036303353924 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323173, + "c3": 12.829403606102629, + "c4": 10.26352288488211, + "c5": 7.69764216366158, + "c6": 5.131761442441049, + "c7": 2.5658807212205312 }, "rgb": [238, 201, 159] }, @@ -262986,23 +262986,23 @@ "year": 1778, "resistanceReported": false, "duration": 1382400, - "curveSeeds": { - "c1": -4.295469168230402, - "c2": -6.749913485738173, - "c3": -3.3362402387553516, - "c4": -11.01995938065711, - "c5": -2.353024837556857, - "c6": 1.6209525102893991, - "c7": -3.257998655064352 + "points": { + "c1": -8.859722631178466, + "c2": 8.811504042085371, + "c3": -0.7589307319345142, + "c4": 13.034606967706278, + "c5": 8.909630835597987, + "c6": 8.464613390363148, + "c7": 6.385496184261115 }, - "vertexSeeds": { - "c1": 6.390780798167623, - "c2": 6.592262375009598, - "c3": 6.560603630570844, - "c4": 6.60561496924078, - "c5": 6.484271014712466, - "c6": 6.483251934274266, - "c7": 6.797114777157213 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -263013,23 +263013,23 @@ "year": 1778, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 0.18317077591491682, - "c2": 17.48201224270038, - "c3": -1.3184762608405265, - "c4": 22.752221377721067, - "c5": -9.419044755626825, - "c6": -20.072937020584273, - "c7": -6.5067128342804 + "points": { + "c1": 16.861727743891155, + "c2": -29.63120960541221, + "c3": -17.183747321028903, + "c4": -20.97975379013812, + "c5": 13.333140476938834, + "c6": -9.169318894073022, + "c7": -22.412711449276586 }, - "vertexSeeds": { - "c1": 6.8329789007317885, - "c2": 6.412552768929233, - "c3": 6.743748799823573, - "c4": 6.540952421688439, - "c5": 6.9520861908556295, - "c6": 6.778935940480414, - "c7": 6.474299331443817 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -263040,23 +263040,23 @@ "year": 1778, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -6.320139818263321, - "c2": -15.999025691068777, - "c3": 18.39220406983093, - "c4": 18.15933186331044, - "c5": 33.60925690542446, - "c6": 35.45838212555417, - "c7": 16.505637685797566 + "points": { + "c1": 21.937305526401246, + "c2": -1.5504778464896702, + "c3": 5.6534799831185865, + "c4": 17.841134431903825, + "c5": -28.24655246129903, + "c6": 4.6694857677798325, + "c7": 12.101757739859195 }, - "vertexSeeds": { - "c1": 6.790569829459339, - "c2": 6.934819870827534, - "c3": 6.823914996764805, - "c4": 6.635113143778105, - "c5": 6.834201637522178, - "c6": 6.54222736292127, - "c7": 6.5365180421256674 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -263067,23 +263067,23 @@ "year": 1778, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -8.46775609011091, - "c2": 1.9510049361642068, - "c3": -20.371678990926384, - "c4": 13.209543266080217, - "c5": 12.503478036039866, - "c6": 11.318085935960724, - "c7": -4.5171820508957445 + "points": { + "c1": 16.43203006305059, + "c2": 23.11895148952408, + "c3": -26.00366287922196, + "c4": -25.823304530411605, + "c5": -26.69449304267059, + "c6": 21.823255933734828, + "c7": 4.658848179124394 }, - "vertexSeeds": { - "c1": 8.430703300611471, - "c2": 8.24509428266506, - "c3": 8.876953001550586, - "c4": 8.415406031193248, - "c5": 8.303230300651848, - "c6": 8.916619257784443, - "c7": 8.526074158032817 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662973, + "c3": 10.725843735552484, + "c4": 8.580674988441974, + "c5": 6.4355062413314865, + "c6": 4.290337494220999, + "c7": 2.1451687471105103 }, "rgb": [58, 15, 49] }, @@ -263094,23 +263094,23 @@ "year": 1778, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 23.245004656777304, - "c2": 7.460145458133994, - "c3": -1.7700313884104055, - "c4": -16.99539147533597, - "c5": 7.434884729581636, - "c6": -2.1112649997029607, - "c7": 22.635179486188022 + "points": { + "c1": 24.685879652617636, + "c2": -23.233455485698013, + "c3": -7.245643842495294, + "c4": 20.954500138581196, + "c5": 12.430158006727225, + "c6": -5.1851022465032806, + "c7": -12.203752397829065 }, - "vertexSeeds": { - "c1": 14.899290269608702, - "c2": 14.308349868476508, - "c3": 15.154599330648361, - "c4": 15.257502841639404, - "c5": 15.200093592176932, - "c6": 14.095720692212332, - "c7": 15.192757748183068 + "offsets": { + "c1": 27.119741100323623, + "c2": 23.24549237170597, + "c3": 19.37124364308829, + "c4": 15.496994914470637, + "c5": 11.622746185852986, + "c6": 7.748497457235333, + "c7": 3.8742487286176526 }, "rgb": [58, 15, 49] }, @@ -263121,23 +263121,23 @@ "year": 1778, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 34.37657324982735, - "c2": 23.708104387381873, - "c3": -23.064979397233397, - "c4": -24.48351780704645, - "c5": -35.39067878795634, - "c6": 10.168439707914658, - "c7": -40.75645611939955 + "points": { + "c1": 5.92026322558069, + "c2": 24.30412301400616, + "c3": -13.7912854307456, + "c4": -38.90029749757368, + "c5": 16.952963508193122, + "c6": -3.091093319006461, + "c7": -30.818491353731012 }, - "vertexSeeds": { - "c1": 3.641517889704709, - "c2": 3.6368985967225047, - "c3": 3.412069147490448, - "c4": 3.5083539220577253, - "c5": 3.7346878529136567, - "c6": 3.822269567326791, - "c7": 3.6006967590911754 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.4923717059639365, + "c3": 4.576976421636616, + "c4": 3.661581137309291, + "c5": 2.7461858529819714, + "c6": 1.8307905686546455, + "c7": 0.9153952843273193 }, "rgb": [222, 0, 59] }, @@ -263148,23 +263148,23 @@ "year": 1778, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 22.243545823382167, - "c2": 2.7649075862130523, - "c3": 29.788470424028038, - "c4": -7.088565445133614, - "c5": 24.489568176251584, - "c6": -28.44771289967672, - "c7": -25.981557938442084 + "points": { + "c1": 28.59025242072316, + "c2": 26.271314071635665, + "c3": -21.872901943319864, + "c4": 1.3955050975606937, + "c5": 10.772760761512586, + "c6": -1.1928414102237035, + "c7": -26.24001146028587 }, - "vertexSeeds": { - "c1": 2.982816011239898, - "c2": 2.925782303810504, - "c3": 3.267014405892663, - "c4": 3.2329241619208053, - "c5": 3.2590404818103904, - "c6": 3.1670046508920615, - "c7": 3.1901541651400023 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837723, + "c3": 3.9297272306980995, + "c4": 3.1437817845584846, + "c5": 2.3578363384188616, + "c6": 1.5718908922792383, + "c7": 0.785945446139615 }, "rgb": [222, 0, 59] }, @@ -263175,23 +263175,23 @@ "year": 1778, "resistanceReported": false, "duration": 6134400, - "curveSeeds": { - "c1": 3.009927315330355, - "c2": -5.062739907836486, - "c3": 4.3891689106987, - "c4": -3.114564136724127, - "c5": 9.22177024176655, - "c6": 4.035258075048279, - "c7": -12.285309545942098 + "points": { + "c1": 10.10425822917541, + "c2": -12.178898352578521, + "c3": 12.626229001730465, + "c4": -12.28380478334874, + "c5": 4.048242368872462, + "c6": 13.907371004568923, + "c7": 8.478598404144822 }, - "vertexSeeds": { - "c1": 8.158340239931215, - "c2": 7.814707346564671, - "c3": 8.247974956238455, - "c4": 8.506325648889513, - "c5": 7.994894119774154, - "c6": 7.809838902778239, - "c7": 7.818590293605075 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737862, + "c3": 10.194174757281548, + "c4": 8.155339805825234, + "c5": 6.11650485436892, + "c6": 4.0776699029126275, + "c7": 2.0388349514563138 }, "rgb": [222, 0, 59] }, @@ -263202,23 +263202,23 @@ "year": 1778, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 11.658500994896944, - "c2": -23.771490461306332, - "c3": -9.890648305479722, - "c4": -19.028943503294055, - "c5": 3.7841765461139154, - "c6": 29.9381542343431, - "c7": 14.666903111384467 + "points": { + "c1": 21.485314808860736, + "c2": 18.63793373304228, + "c3": 4.262796387239909, + "c4": 9.003998854976466, + "c5": 29.535837934612687, + "c6": 2.444667465624832, + "c7": 29.68873871038764 }, - "vertexSeeds": { - "c1": 11.142499881122134, - "c2": 11.457729196807888, - "c3": 11.600583871458893, - "c4": 11.4175240196888, - "c5": 11.740432090121526, - "c6": 11.733703215586392, - "c7": 10.988578472109225 + "offsets": { + "c1": 20, + "c2": 17.142857142857125, + "c3": 14.28571428571429, + "c4": 11.428571428571416, + "c5": 8.571428571428584, + "c6": 5.714285714285708, + "c7": 2.857142857142874 }, "rgb": [86, 146, 138] }, @@ -263229,23 +263229,23 @@ "year": 1780, "resistanceReported": false, "duration": 76291200, - "curveSeeds": { - "c1": -5.240228276554291, - "c2": -52.33986836370567, - "c3": 44.821137478097256, - "c4": -19.59578471406502, - "c5": -85.030485085815, - "c6": 48.122009437691446, - "c7": -32.054029553862314 + "points": { + "c1": 44.6040803670038, + "c2": -92.17781322389375, + "c3": -0.8824331235350513, + "c4": -23.802576984953447, + "c5": -94.82170242275853, + "c6": 15.741706151352048, + "c7": 66.4860097124554 }, - "vertexSeeds": { - "c1": 10.679180490650225, - "c2": 10.644365936352408, - "c3": 10.55110255926206, - "c4": 10.636760560113013, - "c5": 10.753732609002013, - "c6": 10.75058986005413, - "c7": 10.466614972090179 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323147, + "c3": 12.829403606102604, + "c4": 10.263522884882057, + "c5": 7.697642163661634, + "c6": 5.131761442441089, + "c7": 2.5658807212205446 }, "rgb": [77, 76, 132] }, @@ -263256,23 +263256,23 @@ "year": 1778, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 7.91376916291982, - "c2": -9.079961138801306, - "c3": -31.212937810667913, - "c4": 9.77737781049614, - "c5": 6.682847133270428, - "c6": -9.62241612985314, - "c7": 30.702734186875567 + "points": { + "c1": 31.050762047185067, + "c2": -19.75455032946781, + "c3": -25.488165389228566, + "c4": 24.335084609162088, + "c5": -37.732543171807066, + "c6": 21.97783510855843, + "c7": 21.044570574133637 }, - "vertexSeeds": { - "c1": 7.659139287402191, - "c2": 7.490551437449243, - "c3": 7.754406005359687, - "c4": 7.614239759650903, - "c5": 7.3697755678040675, - "c6": 7.173302267869418, - "c7": 7.691464413885073 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289867, + "c3": 9.3619972260749, + "c4": 7.489597780859911, + "c5": 5.617198335644944, + "c6": 3.7447988904299554, + "c7": 1.8723994452149675 }, "rgb": [238, 201, 159] }, @@ -263283,23 +263283,23 @@ "year": 1778, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -10.558108567662988, - "c2": 34.69366102143972, - "c3": -15.030332821450308, - "c4": 28.00008916113579, - "c5": 21.38508438689717, - "c6": -11.810493227463478, - "c7": -18.94363033365246 + "points": { + "c1": 2.249765288014288, + "c2": 33.114798935282906, + "c3": 6.468973222333567, + "c4": 12.1392813297415, + "c5": 29.480334814928796, + "c6": -29.161175679219795, + "c7": -13.975724857453923 }, - "vertexSeeds": { - "c1": 6.035308292228321, - "c2": 5.815370676806429, - "c3": 6.046314690670433, - "c4": 6.108036513559854, - "c5": 5.8536085039862655, - "c6": 6.13948497251449, - "c7": 6.120760372280158 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911234, + "c3": 7.420249653259362, + "c4": 5.936199722607489, + "c5": 4.452149791955617, + "c6": 2.9680998613037444, + "c7": 1.4840499306518722 }, "rgb": [222, 0, 59] }, @@ -263310,23 +263310,23 @@ "year": 1779, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 7.897439857493524, - "c2": -31.481236637881082, - "c3": -47.708282935417046, - "c4": -1.9091718617057865, - "c5": 6.033745231159685, - "c6": -8.957590752050777, - "c7": -51.6288217806141 + "points": { + "c1": 4.395428432003598, + "c2": -36.71040146528823, + "c3": -29.901377465427075, + "c4": -31.066441833938235, + "c5": -41.08133626166089, + "c6": 11.994871182465197, + "c7": 29.661606507383873 }, - "vertexSeeds": { - "c1": 1.0364372713881873, - "c2": 0.9794073748924594, - "c3": 1.030294987951778, - "c4": 1.04139085465123, - "c5": 1.0086233807337548, - "c6": 1.0519680893920744, - "c7": 0.9800204519802547 + "offsets": { + "c1": 1.8446601941747571, + "c2": 1.581137309292648, + "c3": 1.317614424410541, + "c4": 1.054091539528432, + "c5": 0.7905686546463252, + "c6": 0.527045769764216, + "c7": 0.2635228848821069 }, "rgb": [238, 201, 159] }, @@ -263337,23 +263337,23 @@ "year": 1778, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -18.07048501185937, - "c2": 17.531112497756332, - "c3": 11.977386100602182, - "c4": -4.519726416094571, - "c5": 19.665983069165243, - "c6": 6.688701197971518, - "c7": -21.06137430144261 + "points": { + "c1": 21.22311780188776, + "c2": -32.07061819658148, + "c3": 3.4151081266971772, + "c4": 32.70358232998048, + "c5": -25.834343815581107, + "c6": 12.759737915170497, + "c7": -3.9556626694448553 }, - "vertexSeeds": { - "c1": 4.6411273884374165, - "c2": 4.790419658225839, - "c3": 5.073206393137148, - "c4": 4.865472047858935, - "c5": 5.071550674989651, - "c6": 4.472432113890815, - "c7": 4.715569856551246 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779478, + "c3": 6.195099398982892, + "c4": 4.956079519186312, + "c5": 3.7170596393897326, + "c6": 2.4780397595931594, + "c7": 1.239019879796573 }, "rgb": [222, 0, 59] }, @@ -263364,23 +263364,23 @@ "year": 1778, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -4.780182781326296, - "c2": 23.9046376077917, - "c3": -6.948905041590308, - "c4": -7.858753968339027, - "c5": 13.097547621721525, - "c6": -13.408328558972162, - "c7": 1.3767773054353896 + "points": { + "c1": 26.284839456751854, + "c2": -21.53617958963386, + "c3": 22.96876126800025, + "c4": -3.2706924688403234, + "c5": 19.842598853976995, + "c6": 34.41987247774587, + "c7": 10.832014531414444 }, - "vertexSeeds": { - "c1": 7.92175025389172, - "c2": 6.885321495065119, - "c3": 7.452081439377199, - "c4": 7.277282610247186, - "c5": 6.817482909247407, - "c6": 7.124965496792721, - "c7": 7.746007299895116 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571434, + "c3": 9.523809523809524, + "c4": 7.619047619047623, + "c5": 5.714285714285711, + "c6": 3.8095238095238115, + "c7": 1.9047619047619118 }, "rgb": [238, 201, 159] }, @@ -263391,23 +263391,23 @@ "year": 1778, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -4.550759025837021, - "c2": 21.936445350093237, - "c3": 3.6168269832177558, - "c4": -15.889221635951259, - "c5": -22.23989313935384, - "c6": -14.778044959215755, - "c7": 24.709962707238432 + "points": { + "c1": -7.00013195974768, + "c2": -8.972754109815554, + "c3": 20.58166802610163, + "c4": -29.060000896359103, + "c5": -6.129490013525743, + "c6": 31.639329889662086, + "c7": 20.861503156598047 }, - "vertexSeeds": { - "c1": 8.064551477070511, - "c2": 7.662373178067975, - "c3": 7.684045278693464, - "c4": 7.8607384175685215, - "c5": 8.005897297940702, - "c6": 8.264824914709004, - "c7": 7.884838639991882 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295428, + "c3": 9.939898289412843, + "c4": 7.951918631530279, + "c5": 5.963938973647714, + "c6": 3.975959315765129, + "c7": 1.9879796578825646 }, "rgb": [238, 201, 159] }, @@ -263418,23 +263418,23 @@ "year": 1780, "resistanceReported": false, "duration": 59875200, - "curveSeeds": { - "c1": 25.81005969708876, - "c2": 55.57134296283897, - "c3": -27.45554466852338, - "c4": 45.82167861360658, - "c5": 9.23730334470767, - "c6": -35.73377786927535, - "c7": -69.42365658596204 + "points": { + "c1": 0.6425956433067057, + "c2": -67.04956191709539, + "c3": -19.977787441093795, + "c4": 68.91799516635189, + "c5": 51.28417629298343, + "c6": -57.65919859103124, + "c7": 27.57469895238097 }, - "vertexSeeds": { - "c1": 8.797141481008381, - "c2": 8.656356305883579, - "c3": 8.376952509834314, - "c4": 8.243231927966637, - "c5": 8.323347880858714, - "c6": 8.47342427483276, - "c7": 8.116026032330048 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300965, + "c3": 10.517799352750819, + "c4": 8.41423948220065, + "c5": 6.310679611650483, + "c6": 4.207119741100336, + "c7": 2.103559870550168 }, "rgb": [86, 146, 138] }, @@ -263445,23 +263445,23 @@ "year": 1779, "resistanceReported": false, "duration": 50025600, - "curveSeeds": { - "c1": -23.410768627688867, - "c2": 24.990435822007484, - "c3": -42.98461620661775, - "c4": -41.26600207991809, - "c5": 35.53956284898712, - "c6": -49.89032489091568, - "c7": -3.171525346741653 + "points": { + "c1": 2.158643894184195, + "c2": 7.398402213805625, + "c3": 46.91256090842502, + "c4": -42.968166368872204, + "c5": 49.0315933502075, + "c6": -31.58120197798562, + "c7": 57.37013826963812 }, - "vertexSeeds": { - "c1": 7.706227120284132, - "c2": 7.716833552110927, - "c3": 7.674081407753951, - "c4": 7.696744947308381, - "c5": 7.666461614757415, - "c6": 7.710698382067461, - "c7": 7.654541047214211 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088818, + "c3": 9.246417013407287, + "c4": 7.397133610725879, + "c5": 5.5478502080443475, + "c6": 3.6985668053629395, + "c7": 1.8492834026814082 }, "rgb": [58, 15, 49] }, @@ -263472,23 +263472,23 @@ "year": 1779, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 16.125335844849737, - "c2": -10.877640040920703, - "c3": 18.067319754362323, - "c4": 37.032968863801216, - "c5": 9.5288025264489, - "c6": 17.929640159986036, - "c7": -27.52486625475745 + "points": { + "c1": 1.3658394463983043, + "c2": -25.767402839826573, + "c3": 11.76250266978954, + "c4": -31.84736664895084, + "c5": -35.01129562107117, + "c6": -32.00359616545704, + "c7": -6.459069879798918 }, - "vertexSeeds": { - "c1": 14.046647330283719, - "c2": 13.820627155878258, - "c3": 14.81068489348341, - "c4": 14.238580901703198, - "c5": 14.103751136098484, - "c6": 13.831066865457185, - "c7": 14.464379106865943 + "offsets": { + "c1": 24.789644012944983, + "c2": 21.248266296809973, + "c3": 17.706888580675006, + "c4": 14.165510864539995, + "c5": 10.624133148404987, + "c6": 7.082755432270018, + "c7": 3.541377716135009 }, "rgb": [222, 0, 59] }, @@ -263499,23 +263499,23 @@ "year": 1779, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 14.75663970595025, - "c2": -38.95452124184486, - "c3": 2.704271282798615, - "c4": -29.402897704772634, - "c5": 12.749397719917326, - "c6": -3.2336540348227842, - "c7": -21.121495685643126 + "points": { + "c1": -30.146146975587197, + "c2": -12.851148718764918, + "c3": -2.7934440601724404, + "c4": -46.21755812131384, + "c5": -6.83924398462711, + "c6": 29.144570668431577, + "c7": -32.4669390314057 }, - "vertexSeeds": { - "c1": 6.406768097998124, - "c2": 6.909548835272859, - "c3": 6.812945225460061, - "c4": 6.700680558516186, - "c5": 6.728919308048333, - "c6": 6.681132329500309, - "c7": 6.671270975656085 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359226, + "c3": 8.252427184466026, + "c4": 6.601941747572803, + "c5": 4.951456310679602, + "c6": 3.3009708737864014, + "c7": 1.6504854368932007 }, "rgb": [77, 76, 132] }, @@ -263526,23 +263526,23 @@ "year": 1778, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -30.075714885815557, - "c2": 10.293598548319018, - "c3": -22.852397193959376, - "c4": 19.694825313018164, - "c5": -30.468896645302138, - "c6": 26.093455782021138, - "c7": 19.763148984314554 + "points": { + "c1": -34.247206016635765, + "c2": -27.148545179785398, + "c3": -30.004314152836525, + "c4": -27.635939077085528, + "c5": 1.2713126474921026, + "c6": -38.48535638348395, + "c7": -16.436674202152272 }, - "vertexSeeds": { - "c1": 4.836192197229629, - "c2": 4.819151739013804, - "c3": 4.893215721255468, - "c4": 4.882859677562703, - "c5": 5.012066522499361, - "c6": 4.889570155302307, - "c7": 4.936881364006919 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497922, + "c3": 6.033287101248261, + "c4": 4.826629680998611, + "c5": 3.619972260748961, + "c6": 2.4133148404993006, + "c7": 1.2066574202496503 }, "rgb": [58, 15, 49] }, @@ -263553,23 +263553,23 @@ "year": 1779, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -13.450845107793157, - "c2": 22.247040589026305, - "c3": -39.95499727523236, - "c4": 16.842984191773517, - "c5": -26.734695155800008, - "c6": -35.05395463656466, - "c7": 32.95221468934012 + "points": { + "c1": -47.827802381576504, + "c2": -10.810142143423072, + "c3": -39.36743580988972, + "c4": -45.515283817987225, + "c5": 28.761164538798745, + "c6": 46.28756151187367, + "c7": 14.318673388332371 }, - "vertexSeeds": { - "c1": 8.574869753832251, - "c2": 8.51274981571719, - "c3": 8.419792932855598, - "c4": 8.540633321441286, - "c5": 9.011416388971819, - "c6": 8.849533115759936, - "c7": 8.675766583032814 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.1761442441054, + "c3": 10.980120203421178, + "c4": 8.784096162736935, + "c5": 6.5880721220527105, + "c6": 4.3920480813684675, + "c7": 2.196024040684223 }, "rgb": [238, 201, 159] }, @@ -263580,23 +263580,23 @@ "year": 1779, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 28.497431338494728, - "c2": -36.415143929119395, - "c3": 12.521632598007336, - "c4": -30.847850314089573, - "c5": -8.6684134138923, - "c6": -28.667470994810962, - "c7": -33.896173694533594 + "points": { + "c1": 32.84047312873901, + "c2": -20.16800021805884, + "c3": -23.57778421398883, + "c4": -24.80550161282075, + "c5": 22.277112388011716, + "c6": -14.972970436755503, + "c7": -37.89710302892922 }, - "vertexSeeds": { - "c1": 11.273617169486759, - "c2": 11.246768268078316, - "c3": 11.220462287851591, - "c4": 11.384522326335825, - "c5": 11.724128621233968, - "c6": 11.574770953240385, - "c7": 11.980467978166196 + "offsets": { + "c1": 20, + "c2": 17.142857142857128, + "c3": 14.285714285714306, + "c4": 11.428571428571434, + "c5": 8.571428571428564, + "c6": 5.714285714285694, + "c7": 2.857142857142871 }, "rgb": [58, 15, 49] }, @@ -263607,23 +263607,23 @@ "year": 1778, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -3.810218647448842, - "c2": -6.267775979182552, - "c3": -18.91927927651537, - "c4": -25.296895825642142, - "c5": 18.042924233455743, - "c6": 1.7287267107596662, - "c7": 3.4059687224418234 + "points": { + "c1": 8.690204571401196, + "c2": -7.603393043501345, + "c3": -20.021651269368224, + "c4": -17.683648266373297, + "c5": -17.2355942535918, + "c6": -12.20146771687508, + "c7": -4.019835803276646 }, - "vertexSeeds": { - "c1": 2.5765387844170387, - "c2": 2.6010422887752584, - "c3": 2.6405749132962804, - "c4": 2.582373961309494, - "c5": 2.580880629376098, - "c6": 2.6811930041130543, - "c7": 2.504317107438392 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712895, + "c3": 3.259361997226075, + "c4": 2.6074895977808596, + "c5": 1.9556171983356447, + "c6": 1.3037447988904298, + "c7": 0.6518723994452149 }, "rgb": [238, 201, 159] }, @@ -263634,23 +263634,23 @@ "year": 1778, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -12.659320410018806, - "c2": 1.6880201969762219, - "c3": 19.42420350951877, - "c4": -14.2458502769845, - "c5": 15.915951332004191, - "c6": 6.799160238246532, - "c7": -14.430852376808975 + "points": { + "c1": 19.850486872365963, + "c2": 20.82244149797254, + "c3": 17.33908840790005, + "c4": -22.022837191691057, + "c5": 15.017206981343875, + "c6": -12.514159525682093, + "c7": 15.117811907244473 }, - "vertexSeeds": { - "c1": 2.569112780805021, - "c2": 2.590675297491353, - "c3": 2.6649897987989277, - "c4": 2.5536292769686795, - "c5": 2.444530820157806, - "c6": 2.7162294011586634, - "c7": 2.4675302009680364 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712864, + "c3": 3.2593619972260757, + "c4": 2.6074895977808574, + "c5": 1.9556171983356472, + "c6": 1.3037447988904287, + "c7": 0.6518723994452144 }, "rgb": [222, 0, 59] }, @@ -263661,23 +263661,23 @@ "year": 1778, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -32.10475722933665, - "c2": -3.145334941209022, - "c3": -19.91769688242642, - "c4": -23.28044625064912, - "c5": -13.399468927072995, - "c6": 14.141737742212491, - "c7": 18.87414142772682 + "points": { + "c1": 3.5228004378419513, + "c2": 3.1550214407355455, + "c3": -6.610608909364554, + "c4": -16.044393415819744, + "c5": -22.511478624056018, + "c6": -10.940153552934785, + "c7": 14.507900461560617 }, - "vertexSeeds": { - "c1": 6.474386816876022, - "c2": 6.340179985029231, - "c3": 6.725829599122643, - "c4": 6.447682264201946, - "c5": 6.7066612495168965, - "c6": 6.4371905610495315, - "c7": 6.430951717064255 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198326, + "c3": 8.159963014331948, + "c4": 6.52797041146555, + "c5": 4.8959778085991745, + "c6": 3.263985205732775, + "c7": 1.6319926028663765 }, "rgb": [238, 201, 159] }, @@ -263688,23 +263688,23 @@ "year": 1779, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 7.63100189586676, - "c2": 0.02029730306531974, - "c3": 13.768963812136143, - "c4": -37.20432783511389, - "c5": 4.697652043502217, - "c6": 3.540714635560718, - "c7": 3.635545545357708 + "points": { + "c1": -1.9540374046644473, + "c2": -39.00720398612599, + "c3": 2.0483175272697025, + "c4": 26.429553741304687, + "c5": 29.153031166469432, + "c6": -29.89965806864869, + "c7": 7.955876786226028 }, - "vertexSeeds": { - "c1": 3.992103372234477, - "c2": 3.900877501312812, - "c3": 4.021325037879613, - "c4": 4.233461952198574, - "c5": 4.2746931988609145, - "c6": 4.161963764849399, - "c7": 3.9009372301521745 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.21359223300971, + "c3": 5.177993527508087, + "c4": 4.142394822006471, + "c5": 3.106796116504855, + "c6": 2.0711974110032396, + "c7": 1.0355987055016156 }, "rgb": [86, 146, 138] }, @@ -263715,23 +263715,23 @@ "year": 1779, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 36.611054174295745, - "c2": 11.213908021827251, - "c3": 21.97391107512118, - "c4": 8.475971116367162, - "c5": 39.385208270279875, - "c6": 36.03107628093538, - "c7": 15.395529132932786 + "points": { + "c1": 18.005798608478372, + "c2": 1.5576816624898555, + "c3": -33.206517962663014, + "c4": 15.012011437542526, + "c5": -36.09018219984147, + "c6": -16.79136945900392, + "c7": 14.182471365387748 }, - "vertexSeeds": { - "c1": 3.862835097176406, - "c2": 3.8212540036744986, - "c3": 3.8673898308802626, - "c4": 3.900473108117836, - "c5": 3.8134912481827326, - "c6": 3.823302648926427, - "c7": 3.8196964600999146 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124816, + "c3": 4.669440591770668, + "c4": 3.735552473416557, + "c5": 2.801664355062408, + "c6": 1.8677762367082595, + "c7": 0.9338881183541112 }, "rgb": [222, 0, 59] }, @@ -263742,23 +263742,23 @@ "year": 1779, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 9.824027256852773, - "c2": -9.43287258213659, - "c3": -2.7971752236604743, - "c4": 23.688283247356452, - "c5": 28.07638912114119, - "c6": -1.3913819773410232, - "c7": -24.590828553749173 + "points": { + "c1": -31.737648652750842, + "c2": 24.855527790302354, + "c3": 29.110530361041675, + "c4": -31.075648164845745, + "c5": -15.614873837531011, + "c6": -30.447330944719887, + "c7": -20.025062301023457 }, - "vertexSeeds": { - "c1": 6.579549745008694, - "c2": 6.526412257384285, - "c3": 6.212846918852814, - "c4": 6.108989085199743, - "c5": 6.458025809827505, - "c6": 6.081515067204044, - "c7": 6.247502172886238 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715663, + "c3": 7.88257050392973, + "c4": 6.306056403143775, + "c5": 4.729542302357843, + "c6": 3.1530282015718876, + "c7": 1.5765141007859549 }, "rgb": [77, 76, 132] }, @@ -263769,23 +263769,23 @@ "year": 1779, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -40.85375837629628, - "c2": -22.56986292191854, - "c3": 5.876084745996387, - "c4": 26.462524909699468, - "c5": -10.179895803995816, - "c6": 12.94415501871925, - "c7": -24.66882046745145 + "points": { + "c1": 40.36005325193926, + "c2": 16.03403224293104, + "c3": 8.662399717566757, + "c4": 24.28139389495351, + "c5": -3.7888735016233, + "c6": -41.27009613013783, + "c7": -5.70025553284929 }, - "vertexSeeds": { - "c1": 8.052665803390937, - "c2": 8.453317752073525, - "c3": 8.367919325762683, - "c4": 8.737628107988739, - "c5": 8.63562849238815, - "c6": 8.142955235136188, - "c7": 8.275555346933062 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140078, + "c3": 10.425335182616745, + "c4": 8.340268146093392, + "c5": 6.255201109570039, + "c6": 4.1701340730467065, + "c7": 2.0850670365233532 }, "rgb": [58, 15, 49] }, @@ -263796,23 +263796,23 @@ "year": 1779, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 0.004270076124580413, - "c2": -4.535867200625827, - "c3": 26.421760281672597, - "c4": -4.023153808247933, - "c5": -3.051722570279047, - "c6": 12.820335184594732, - "c7": -13.184816112008475 + "points": { + "c1": 29.436889493058608, + "c2": 22.475971057218707, + "c3": 11.245910858963605, + "c4": 16.401435873750287, + "c5": 19.189468469641234, + "c6": -22.37582519767792, + "c7": -28.706126278051844 }, - "vertexSeeds": { - "c1": 7.173605280022219, - "c2": 7.760724632220781, - "c3": 7.18845843445838, - "c4": 7.178447133742275, - "c5": 7.2256582543706385, - "c6": 7.163898453429884, - "c7": 7.446235714842548 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128999, + "c3": 9.26953305594082, + "c4": 7.415626444752665, + "c5": 5.561719833564488, + "c6": 3.7078132223763327, + "c7": 1.8539066111881772 }, "rgb": [77, 76, 132] }, @@ -263823,23 +263823,23 @@ "year": 1779, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -26.30505908029361, - "c2": 11.289891733243643, - "c3": -32.35046496126945, - "c4": 14.049730019722496, - "c5": -34.3235228718781, - "c6": -25.273834085536976, - "c7": 22.4964566591036 + "points": { + "c1": 5.440864709945025, + "c2": -38.46688969253994, + "c3": -20.49461259869164, + "c4": -11.152990304876791, + "c5": -23.24567223756167, + "c6": -32.27743186161466, + "c7": 36.56368484291407 }, - "vertexSeeds": { - "c1": 2.946007933412129, - "c2": 3.063138443054408, - "c3": 2.9410885798985715, - "c4": 2.94956041307726, - "c5": 3.0228148572877083, - "c6": 2.8980996970243615, - "c7": 3.101463318404386 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.52149791955617, + "c3": 3.767914932963473, + "c4": 3.0143319463707763, + "c5": 2.260748959778079, + "c6": 1.507165973185394, + "c7": 0.753582986592697 }, "rgb": [77, 76, 132] }, @@ -263850,23 +263850,23 @@ "year": 1779, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 25.446309386455958, - "c2": -15.158419470801736, - "c3": 5.997114875330745, - "c4": 23.98869745931249, - "c5": 9.687356191047634, - "c6": -20.375468266672364, - "c7": 21.509968568003927 + "points": { + "c1": 18.491672127956633, + "c2": 24.154514090075907, + "c3": -13.147817779392778, + "c4": -0.6465738316435576, + "c5": 23.68246517446636, + "c6": 11.89533569731438, + "c7": -10.481167550184 }, - "vertexSeeds": { - "c1": 6.919722843677248, - "c2": 6.558980226765372, - "c3": 6.3821484993122874, - "c4": 6.702701407089017, - "c5": 6.866230515956822, - "c6": 6.925681785637817, - "c7": 6.860112621362553 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -263877,23 +263877,23 @@ "year": 1779, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 32.99155212601254, - "c2": 14.935256077791642, - "c3": 6.970200848787137, - "c4": -24.14906868141889, - "c5": 30.404813278581408, - "c6": 8.743003211751926, - "c7": 24.126398917456008 + "points": { + "c1": 40.44943641977854, + "c2": -13.481481924494197, + "c3": -41.353769690116884, + "c4": 39.95189113252089, + "c5": 21.635536561150232, + "c6": 15.871464816983384, + "c7": -30.60977612606834 }, - "vertexSeeds": { - "c1": 5.320435954380566, - "c2": 5.092518686806062, - "c3": 5.457657653208072, - "c4": 5.0604495467134525, - "c5": 5.210867058474853, - "c6": 5.404175851156338, - "c7": 5.4580851949374045 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [238, 201, 159] }, @@ -263904,23 +263904,23 @@ "year": 1779, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 6.870679136131031, - "c2": -12.34880381522988, - "c3": -12.56995238566458, - "c4": 3.7495965134038407, - "c5": -16.79460924813615, - "c6": -12.450623286313416, - "c7": 9.076318218490599 + "points": { + "c1": -13.126591314145193, + "c2": 1.453250291184876, + "c3": 0.8590078987157135, + "c4": -20.771914847716992, + "c5": 9.048364233710146, + "c6": -9.191738075389566, + "c7": -10.637763932804923 }, - "vertexSeeds": { - "c1": 5.4353819939278525, - "c2": 5.483424746635713, - "c3": 5.6166227839874745, - "c4": 5.583621606638313, - "c5": 5.424359208531034, - "c6": 5.563279172129551, - "c7": 5.5290477084599345 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905692, + "c3": 6.842348589921415, + "c4": 5.473878871937105, + "c5": 4.105409153952829, + "c6": 2.7369394359685524, + "c7": 1.3684697179842762 }, "rgb": [58, 15, 49] }, @@ -263931,23 +263931,23 @@ "year": 1779, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 31.030977142120143, - "c2": 22.41170873258249, - "c3": -12.68682725124977, - "c4": -28.0370109065724, - "c5": 12.415903196529612, - "c6": 16.515677059216458, - "c7": -0.2198728619055501 + "points": { + "c1": 1.00546552633962, + "c2": -17.857562214406187, + "c3": -24.533241469911005, + "c4": -28.894658192788366, + "c5": 17.59289268121495, + "c6": -9.466470284094417, + "c7": -5.4693329776211 }, - "vertexSeeds": { - "c1": 7.141846349868445, - "c2": 7.098280631561535, - "c3": 7.170442666560678, - "c4": 6.844335186167127, - "c5": 7.363364690019159, - "c6": 6.532021039436357, - "c7": 6.94241080591237 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284328, + "c3": 8.78409616273694, + "c4": 7.027276930189552, + "c5": 5.270457697642164, + "c6": 3.513638465094776, + "c7": 1.756819232547388 }, "rgb": [86, 146, 138] }, @@ -263958,23 +263958,23 @@ "year": 1778, "resistanceReported": false, "duration": 6048000, - "curveSeeds": { - "c1": 1.3569794567479185, - "c2": -14.895612743820934, - "c3": -13.081243680966674, - "c4": -2.0191509735660134, - "c5": -9.455881073147545, - "c6": 15.996291515902058, - "c7": -2.9402374202209174 + "points": { + "c1": 6.975153300345934, + "c2": 5.500228374865927, + "c3": 16.286125672491316, + "c4": -5.688572401337128, + "c5": 7.321500034080575, + "c6": 5.837462206994974, + "c7": -5.369824271114073 }, - "vertexSeeds": { - "c1": 5.580593887037056, - "c2": 5.671552821599877, - "c3": 5.501019713455088, - "c4": 5.653524637175219, - "c5": 5.69270385646842, - "c6": 5.594693162519919, - "c7": 5.769415277437485 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147021, + "c3": 6.98104484512252, + "c4": 5.584835876098002, + "c5": 4.188626907073501, + "c6": 2.792417938049001, + "c7": 1.3962089690245005 }, "rgb": [58, 15, 49] }, @@ -263985,23 +263985,23 @@ "year": 1779, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -21.70884586031412, - "c2": -19.94918870939366, - "c3": 14.686618301189288, - "c4": 22.379491396982946, - "c5": 18.67811087294646, - "c6": -3.0366149239805473, - "c7": 16.78347442042043 + "points": { + "c1": 16.91323403601056, + "c2": 8.60581144360329, + "c3": 8.167206162183415, + "c4": -16.104042153340863, + "c5": 9.857818873156528, + "c6": 5.944409813631321, + "c7": -9.14520330333449 }, - "vertexSeeds": { - "c1": 6.589954153286914, - "c2": 6.5086805452301, - "c3": 6.449781684346788, - "c4": 6.529353044439542, - "c5": 6.393992043761452, - "c6": 6.690289164485265, - "c7": 6.427408042977733 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -264012,23 +264012,23 @@ "year": 1779, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -31.07933173989806, - "c2": -7.025178570361184, - "c3": 6.117048681069846, - "c4": 25.778604787062555, - "c5": -11.80966401495483, - "c6": -30.016176950246557, - "c7": 2.3560030891852506 + "points": { + "c1": -19.65740087638362, + "c2": 11.382417595363414, + "c3": 27.321812007382633, + "c4": -14.44915614870186, + "c5": -37.00490020824933, + "c6": -27.786606809631827, + "c7": 30.282936512533965 }, - "vertexSeeds": { - "c1": 6.289082972118393, - "c2": 6.317913639215482, - "c3": 5.9627457590496, - "c4": 6.134644218489999, - "c5": 6.670559223814478, - "c6": 5.870994765864765, - "c7": 6.556302909037361 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [238, 201, 159] }, @@ -264039,23 +264039,23 @@ "year": 1779, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -5.0785533396746665, - "c2": 22.93716719129924, - "c3": 16.257362222341953, - "c4": 20.483786873279698, - "c5": -4.553469933644454, - "c6": 20.387654138004223, - "c7": -29.975193679635954 + "points": { + "c1": 20.941055314073168, + "c2": -7.377462256007881, + "c3": -6.186288581956113, + "c4": 32.671375738840894, + "c5": 15.73716107974208, + "c6": 7.302597219021166, + "c7": 10.503439449931392 }, - "vertexSeeds": { - "c1": 4.615227690537779, - "c2": 4.685056404571732, - "c3": 4.598865368106342, - "c4": 4.692382262148135, - "c5": 4.66904775353868, - "c6": 4.6176908840255795, - "c7": 4.671439297957481 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773919, + "c3": 5.617198335644926, + "c4": 4.493758668515934, + "c5": 3.370319001386941, + "c6": 2.246879334257948, + "c7": 1.1234396671289928 }, "rgb": [86, 146, 138] }, @@ -264066,23 +264066,23 @@ "year": 1779, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 11.78840539743473, - "c2": 15.07830660575005, - "c3": -16.56965295476847, - "c4": -13.367124541395965, - "c5": -16.88635848610595, - "c6": 3.0565950168078295, - "c7": -15.634712469767663 + "points": { + "c1": -20.350920163089064, + "c2": 12.807966340850122, + "c3": -19.18582677742898, + "c4": -4.869643531885597, + "c5": -2.8573416307894064, + "c6": 4.817304668746523, + "c7": -0.8399851082706533 }, - "vertexSeeds": { - "c1": 5.339976891040619, - "c2": 5.08002679185626, - "c3": 5.1859157489838195, - "c4": 5.078031990038941, - "c5": 5.065348336087341, - "c6": 5.4152668534574255, - "c7": 5.026036571062019 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342573, + "c3": 6.518723994452158, + "c4": 5.214979195561722, + "c5": 3.9112343966712864, + "c6": 2.6074895977808503, + "c7": 1.303744798890436 }, "rgb": [238, 201, 159] }, @@ -264093,23 +264093,23 @@ "year": 1779, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 10.74428794566731, - "c2": -42.98081197599189, - "c3": -17.775631893157943, - "c4": -39.399904043771805, - "c5": 28.04803159474457, - "c6": 50.952710267939565, - "c7": 26.31508572361558 + "points": { + "c1": -13.620337127881577, + "c2": -20.7964123103555, + "c3": -3.564894471855389, + "c4": -20.826145618769267, + "c5": 44.57629675717631, + "c6": 40.105062953018844, + "c7": 20.38996620953651 }, - "vertexSeeds": { - "c1": 6.002529104846628, - "c2": 5.580858241980107, - "c3": 5.839191945165557, - "c4": 5.8536479579320755, - "c5": 5.578904479754175, - "c6": 5.764249995617459, - "c7": 5.842338199829389 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468786, + "c3": 7.165973185390672, + "c4": 5.732778548312532, + "c5": 4.299583911234393, + "c6": 2.8663892741562544, + "c7": 1.4331946370781392 }, "rgb": [77, 76, 132] }, @@ -264120,23 +264120,23 @@ "year": 1779, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 6.096676644038439, - "c2": -4.788814134912236, - "c3": -3.655912307233816, - "c4": 29.663072421028524, - "c5": 7.866885009594142, - "c6": -16.513267011069544, - "c7": -11.233269412643043 + "points": { + "c1": 25.5766858500645, + "c2": 35.61797546148965, + "c3": 0.7928566000699675, + "c4": -12.731654651563908, + "c5": 19.50663063443863, + "c6": 32.526240417135, + "c7": 6.105828351529446 }, - "vertexSeeds": { - "c1": 7.141851039815542, - "c2": 7.226417736758212, - "c3": 7.407788034782451, - "c4": 7.116866306061495, - "c5": 7.286246172584139, - "c6": 7.532798102809817, - "c7": 7.489327003291001 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847443, + "c3": 9.107720758206193, + "c4": 7.286176606564963, + "c5": 5.464632454923711, + "c6": 3.6430883032824815, + "c7": 1.8215441516412514 }, "rgb": [222, 0, 59] }, @@ -264147,23 +264147,23 @@ "year": 1779, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -32.17936012787102, - "c2": -4.038432727036948, - "c3": -13.551510340916195, - "c4": 7.289522807599965, - "c5": -3.5466468189949154, - "c6": 20.067282308634866, - "c7": 34.28909058463381 + "points": { + "c1": 22.83028885835496, + "c2": -11.473149338399505, + "c3": -9.331901691460914, + "c4": 13.654757074963499, + "c5": -33.44022811274104, + "c6": 2.2794637239250974, + "c7": 27.524422751413454 }, - "vertexSeeds": { - "c1": 4.253404875604016, - "c2": 4.131245503401663, - "c3": 4.109336556311223, - "c4": 4.327473091911061, - "c5": 4.242326703092923, - "c6": 3.877199813611006, - "c7": 4.154782492947886 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.21359223300971, + "c3": 5.177993527508087, + "c4": 4.142394822006471, + "c5": 3.106796116504855, + "c6": 2.0711974110032396, + "c7": 1.0355987055016156 }, "rgb": [77, 76, 132] }, @@ -264174,23 +264174,23 @@ "year": 1779, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": -11.875745668750039, - "c2": -4.706873044063794, - "c3": -7.113148806043531, - "c4": -10.49214150611868, - "c5": 6.299291957947677, - "c6": -16.360615788812005, - "c7": 15.906864154394043 + "points": { + "c1": 16.60564111251096, + "c2": -2.192463354158434, + "c3": 14.879505357641072, + "c4": -17.79174198320315, + "c5": 18.31099078879322, + "c6": 4.519525883514991, + "c7": 12.168424700506861 }, - "vertexSeeds": { - "c1": 4.045138382657552, - "c2": 4.032238032877052, - "c3": 3.9125822364860676, - "c4": 3.878206613465455, - "c5": 4.046073778074239, - "c6": 3.8373212643818753, - "c7": 4.003217470234421 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -264201,23 +264201,23 @@ "year": 1779, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": 11.278719981015374, - "c2": 15.276460584044791, - "c3": -0.9098107478237871, - "c4": -6.093532935555556, - "c5": -18.352342038894424, - "c6": -8.545841952125958, - "c7": -3.617771764973428 + "points": { + "c1": -16.084075895296507, + "c2": -9.645139733088861, + "c3": 16.502331255739072, + "c4": 3.3896222484513174, + "c5": 17.19250069418665, + "c6": -12.63116180088876, + "c7": -5.247753891574579 }, - "vertexSeeds": { - "c1": 4.0302701109568, - "c2": 3.9146579806585025, - "c3": 3.8700307397995575, - "c4": 4.0007889214084535, - "c5": 3.7725339641791007, - "c6": 3.785405656272892, - "c7": 3.9380656606162128 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -264228,23 +264228,23 @@ "year": 1779, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": -10.925213142966605, - "c2": 10.493044101639612, - "c3": -16.54176589847657, - "c4": -5.084092724748945, - "c5": 10.376376297746027, - "c6": -3.9349517723905763, - "c7": -3.9802392022528252 + "points": { + "c1": 9.893231150867766, + "c2": -5.46088182468805, + "c3": -10.598332571202333, + "c4": 0.5416241842954967, + "c5": 12.726976624642937, + "c6": -13.581162383346172, + "c7": -3.0030514608514878 }, - "vertexSeeds": { - "c1": 4.85192847990437, - "c2": 4.669129231894785, - "c3": 4.881106779037974, - "c4": 4.811983400185126, - "c5": 4.755374409296016, - "c6": 4.842705817295269, - "c7": 4.73722274750595 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457688, + "c3": 6.010171058714751, + "c4": 4.808136846971803, + "c5": 3.606102635228855, + "c6": 2.4040684234858962, + "c7": 1.2020342117429481 }, "rgb": [222, 0, 59] }, @@ -264255,23 +264255,23 @@ "year": 1779, "resistanceReported": false, "duration": 7171200, - "curveSeeds": { - "c1": 16.314530925551693, - "c2": -16.18920621998291, - "c3": -16.881884792585744, - "c4": 13.025080756684709, - "c5": -1.5613599798963627, - "c6": -7.365242737071174, - "c7": -4.6575796772041755 + "points": { + "c1": -3.709716586123527, + "c2": 4.617870539707006, + "c3": 10.351106623988734, + "c4": 15.587654309351528, + "c5": 13.590529916520047, + "c6": 19.392618897837743, + "c7": 4.364410359557894 }, - "vertexSeeds": { - "c1": 3.945651377119995, - "c2": 3.917305733713051, - "c3": 3.9386459476517293, - "c4": 3.8196048094795954, - "c5": 3.7970798615471675, - "c6": 4.019368465512044, - "c7": 3.9750273301637176 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -264282,23 +264282,23 @@ "year": 1779, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 4.283268615320878, - "c2": 11.378968175766595, - "c3": 18.790026876221376, - "c4": 8.419838215446887, - "c5": -34.15084668942882, - "c6": 5.886947105205806, - "c7": 0.8682645154065796 + "points": { + "c1": -4.692330924807258, + "c2": 34.04171066997705, + "c3": -2.1193251772317723, + "c4": 27.920902529698594, + "c5": -25.669124073117807, + "c6": -29.59877319031551, + "c7": 7.63485908913804 }, - "vertexSeeds": { - "c1": 3.5365959100223705, - "c2": 3.4478288115597797, - "c3": 3.377569815745218, - "c4": 3.453446744264131, - "c5": 3.455754612777297, - "c6": 3.621112355050995, - "c7": 3.464759858872189 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642167, + "c3": 4.392048081368465, + "c4": 3.5136384650947745, + "c5": 2.6352288488210833, + "c6": 1.7568192325473817, + "c7": 0.8784096162736909 }, "rgb": [86, 146, 138] }, @@ -264309,23 +264309,23 @@ "year": 1779, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -17.99956157622632, - "c2": -9.68915281130895, - "c3": 10.357865102250344, - "c4": 20.9205550070294, - "c5": -2.5892657248220416, - "c6": -27.851991553838733, - "c7": 10.252865167187942 + "points": { + "c1": 32.18731267413177, + "c2": -9.515298111623505, + "c3": -10.236003142896955, + "c4": -31.93874399381277, + "c5": 30.029426529100256, + "c6": 1.3339023106722152, + "c7": 15.69703646772873 }, - "vertexSeeds": { - "c1": 4.312431906935678, - "c2": 4.306669408987985, - "c3": 4.29455782540354, - "c4": 4.328318417506533, - "c5": 4.295161752028799, - "c6": 4.31222202200984, - "c7": 4.317132587765399 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009738, + "c3": 5.177993527508047, + "c4": 4.142394822006458, + "c5": 3.106796116504869, + "c6": 2.0711974110032805, + "c7": 1.0355987055015887 }, "rgb": [86, 146, 138] }, @@ -264336,23 +264336,23 @@ "year": 1779, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -21.962323282006473, - "c2": 6.733009419741222, - "c3": -9.857942698515224, - "c4": -26.70640173359261, - "c5": -7.810533946882902, - "c6": -30.04590967132543, - "c7": 15.973372758502052 + "points": { + "c1": 19.952786882793873, + "c2": -0.37956195329986286, + "c3": -1.3270519577859297, + "c4": 26.083974794519726, + "c5": -18.79809857512816, + "c6": 0.2318737054567208, + "c7": -30.56765570061722 }, - "vertexSeeds": { - "c1": 8.122510084081002, - "c2": 8.61404647143695, - "c3": 8.11904544459082, - "c4": 8.448640238947688, - "c5": 8.164063395671427, - "c6": 8.495185360609085, - "c7": 8.571001495009492 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059646, + "c3": 10.37910309754969, + "c4": 8.303282478039756, + "c5": 6.227461858529823, + "c6": 4.151641239019868, + "c7": 2.075820619509934 }, "rgb": [86, 146, 138] }, @@ -264363,23 +264363,23 @@ "year": 1779, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": -4.793295328973981, - "c2": -7.8659008290982015, - "c3": 12.934622619847666, - "c4": 14.867184171684961, - "c5": -13.44291049400006, - "c6": 0.08136479373023064, - "c7": -12.585360862076344 + "points": { + "c1": -6.240784965727999, + "c2": 16.77396948843454, + "c3": -3.605352024031216, + "c4": -11.88071160794642, + "c5": -3.610125938431821, + "c6": 1.8393330878923635, + "c7": 6.23100993979693 }, - "vertexSeeds": { - "c1": 3.9187245198508665, - "c2": 3.829004299892167, - "c3": 3.9100307464517265, - "c4": 3.7901473496004363, - "c5": 3.9821059424180354, - "c6": 3.892581308136045, - "c7": 4.016022344440187 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [238, 201, 159] }, @@ -264390,23 +264390,23 @@ "year": 1779, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -39.55094353916272, - "c2": 10.717797792298995, - "c3": -2.1328471938460964, - "c4": 13.364640383914, - "c5": 1.9420596782769621, - "c6": -27.39543715551615, - "c7": -16.444379626725137 + "points": { + "c1": 17.565312104246672, + "c2": 14.775542531208977, + "c3": 13.43417311840296, + "c4": 5.479115040555499, + "c5": -18.12600583322385, + "c6": 41.64474984161748, + "c7": -25.619569238953797 }, - "vertexSeeds": { - "c1": 2.953404144670686, - "c2": 3.097953757948431, - "c3": 3.1249267227062605, - "c4": 2.9743026893743503, - "c5": 3.01133921413936, - "c6": 2.985280215486626, - "c7": 3.113307812501728 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596394, + "c3": 3.791030975496995, + "c4": 3.0328247803975956, + "c5": 2.274618585298197, + "c6": 1.5164123901987978, + "c7": 0.7582061950993989 }, "rgb": [86, 146, 138] }, @@ -264417,23 +264417,23 @@ "year": 1779, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -20.81943580110492, - "c2": -5.4604539843079465, - "c3": -18.223243035446515, - "c4": -23.513595685412824, - "c5": 28.23827885192219, - "c6": -25.66174931904947, - "c7": -22.554272072151285 + "points": { + "c1": -30.21930441244848, + "c2": -3.848598153776834, + "c3": -30.19351195609959, + "c4": -3.356194367634899, + "c5": -18.469202495504913, + "c6": 24.6637944957007, + "c7": -14.780544007068968 }, - "vertexSeeds": { - "c1": 2.897893905868959, - "c2": 3.1322780950168925, - "c3": 3.0251745172129834, - "c4": 2.9222070439623082, - "c5": 3.0662372922638528, - "c6": 3.0186249962069867, - "c7": 3.1378143344088323 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.022191400832173, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328679, + "c7": 0.8044382801664307 }, "rgb": [77, 76, 132] }, @@ -264444,23 +264444,23 @@ "year": 1779, "resistanceReported": false, "duration": 3974400, - "curveSeeds": { - "c1": 3.22973729293712, - "c2": 5.9221507826673125, - "c3": -13.57566012404312, - "c4": -14.230599701095827, - "c5": -2.6485224704842913, - "c6": -0.8813159618409898, - "c7": 2.7635807626035813 + "points": { + "c1": 10.03677887071214, + "c2": 5.206322676599633, + "c3": 6.674052396223139, + "c4": -8.816662731017045, + "c5": 1.854297109581605, + "c6": 11.253061065990547, + "c7": 14.982367917140913 }, - "vertexSeeds": { - "c1": 3.9528930594767586, - "c2": 3.8919178421813077, - "c3": 3.9604874957679193, - "c4": 3.9319875538156763, - "c5": 3.947000495690028, - "c6": 3.8939726880913383, - "c7": 3.915881513619394 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527038, + "c3": 4.900601017105874, + "c4": 3.9204808136846925, + "c5": 2.9403606102635282, + "c6": 1.9602404068423462, + "c7": 0.9801202034211641 }, "rgb": [86, 146, 138] }, @@ -264471,23 +264471,23 @@ "year": 1779, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -21.856514756424186, - "c2": 0.07310260463524187, - "c3": -7.0416317942190645, - "c4": 22.434240614167596, - "c5": 19.28855818778109, - "c6": 9.417314830011133, - "c7": -8.018746317288512 + "points": { + "c1": 1.7035601864784198, + "c2": 24.650732433165086, + "c3": 21.793871670413413, + "c4": -18.510978350694522, + "c5": 18.445257360837235, + "c6": -1.438503198738573, + "c7": 2.328752839353232 }, - "vertexSeeds": { - "c1": 3.938235461207716, - "c2": 3.8535412161371982, - "c3": 4.0825313249387065, - "c4": 4.096944758573467, - "c5": 4.039189027155521, - "c6": 3.862434165500668, - "c7": 3.876912216245557 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768376, + "c3": 5.039297272306981, + "c4": 4.0314378178455845, + "c5": 3.023578363384188, + "c6": 2.0157189089227923, + "c7": 1.0078594544613961 }, "rgb": [77, 76, 132] }, @@ -264498,23 +264498,23 @@ "year": 1779, "resistanceReported": false, "duration": 1296000, - "curveSeeds": { - "c1": -1.038023125385724, - "c2": 5.249572078951623, - "c3": -9.182734205699425, - "c4": 6.257508509959507, - "c5": 6.551689099056922, - "c6": 3.8200366490379096, - "c7": 8.112603971167278 + "points": { + "c1": 5.013820347711015, + "c2": -12.909538537287647, + "c3": -12.24326029864912, + "c4": 2.1782711628825275, + "c5": 8.355924367758057, + "c6": 12.391179360466747, + "c7": 6.742089151781357 }, - "vertexSeeds": { - "c1": 3.837025203649674, - "c2": 3.87846031075255, - "c3": 3.8145433225918794, - "c4": 3.9633235304034122, - "c5": 3.772409129957699, - "c6": 4.052191768253974, - "c7": 3.8958459184036482 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -264525,23 +264525,23 @@ "year": 1780, "resistanceReported": false, "duration": 55468800, - "curveSeeds": { - "c1": -30.9759158988033, - "c2": 62.21515051043873, - "c3": 58.47160692109553, - "c4": -52.33278200381158, - "c5": -60.301719164703044, - "c6": -66.56156931195335, - "c7": -40.792945547416466 + "points": { + "c1": 3.8232326097541147, + "c2": 6.330228128771893, + "c3": -69.19818654599231, + "c4": -29.583422260445772, + "c5": 46.76757104730788, + "c6": 1.919272798241181, + "c7": -24.772483811437674 }, - "vertexSeeds": { - "c1": 10.299065026678374, - "c2": 9.97310997639845, - "c3": 9.701744372758256, - "c4": 10.278888236188997, - "c5": 10.095040700229314, - "c6": 10.121790656390386, - "c7": 10.109988443915388 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.86823855755896, + "c3": 12.390198797965764, + "c4": 9.912159038372621, + "c5": 7.43411927877948, + "c6": 4.956079519186311, + "c7": 2.478039759593169 }, "rgb": [222, 0, 59] }, @@ -264552,23 +264552,23 @@ "year": 1780, "resistanceReported": false, "duration": 40435200, - "curveSeeds": { - "c1": -22.839609329897193, - "c2": 23.519614780953823, - "c3": 28.616553361639554, - "c4": -53.43806206769865, - "c5": 40.05406150418214, - "c6": 24.207899333585893, - "c7": -50.7741509766275 + "points": { + "c1": -39.08265071081101, + "c2": 56.07861124730565, + "c3": -29.119171268416228, + "c4": -18.91192598167728, + "c5": -48.90603781636369, + "c6": -2.743932957052543, + "c7": 24.036447288365416 }, - "vertexSeeds": { - "c1": 3.701144642935459, - "c2": 3.62944729943217, - "c3": 3.7160121891954083, - "c4": 3.6447807784898463, - "c5": 3.728424477645229, - "c6": 3.68329133264673, - "c7": 3.6409356141711373 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762825, + "c3": 4.461396208969016, + "c4": 3.569116967175207, + "c5": 2.6768377253814273, + "c6": 1.7845584835876185, + "c7": 0.8922792417938092 }, "rgb": [222, 0, 59] }, @@ -264579,23 +264579,23 @@ "year": 1780, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -3.813297596874712, - "c2": -24.23167140875048, - "c3": 27.372157517071614, - "c4": -27.230460294872035, - "c5": 18.729038446254584, - "c6": 24.782604074466462, - "c7": 39.42991727081022 + "points": { + "c1": 29.4584767340247, + "c2": 41.03961658748079, + "c3": -34.00695423660525, + "c4": 21.15580117839376, + "c5": -9.973224058120252, + "c6": -34.20537680443212, + "c7": -44.36905149504377 }, - "vertexSeeds": { - "c1": 7.426711445871804, - "c2": 7.80814094507708, - "c3": 7.643189093022384, - "c4": 7.261156342936968, - "c5": 7.500187513542498, - "c6": 7.330902601729547, - "c7": 7.319460439360033 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.20665742024966, + "c3": 9.338881183541368, + "c4": 7.471104946833099, + "c5": 5.60332871012483, + "c6": 3.7355524734165613, + "c7": 1.8677762367082689 }, "rgb": [86, 146, 138] }, @@ -264606,23 +264606,23 @@ "year": 1779, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -37.49474099767467, - "c2": 26.145013983394293, - "c3": 1.8319640250371094, - "c4": -18.186164088959043, - "c5": 12.829321177599077, - "c6": 4.739035381029467, - "c7": -9.494375315266058 + "points": { + "c1": -6.266796346953917, + "c2": 33.84884165815319, + "c3": -20.599258936190587, + "c4": 17.384979638968673, + "c5": -28.760329559623734, + "c6": 16.86294770671227, + "c7": -35.64316909995172 }, - "vertexSeeds": { - "c1": 5.546132865955746, - "c2": 5.934457598177346, - "c3": 5.60848537347589, - "c4": 6.170243902112714, - "c5": 6.04647982020732, - "c6": 6.241335201774098, - "c7": 6.2348104052420235 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.01525658807212, + "c3": 7.51271382339343, + "c4": 6.010171058714741, + "c5": 4.507628294036067, + "c6": 3.0050855293573777, + "c7": 1.5025427646786889 }, "rgb": [58, 15, 49] }, @@ -264633,23 +264633,23 @@ "year": 1779, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 2.20908386606456, - "c2": -28.52304867335335, - "c3": 0.013805982159283303, - "c4": -25.13960433005279, - "c5": 10.332175347153004, - "c6": -9.282431441388233, - "c7": -32.39861214729772 + "points": { + "c1": 32.96173349172052, + "c2": 34.31711415852368, + "c3": 39.0719623892856, + "c4": 17.99231337012195, + "c5": -38.07110522331452, + "c6": -32.77860594162621, + "c7": 26.480846821527905 }, - "vertexSeeds": { - "c1": 6.110347885851945, - "c2": 5.84245377892205, - "c3": 5.836491012739117, - "c4": 6.541237582320689, - "c5": 6.3605870943917715, - "c6": 6.396449164525541, - "c7": 6.20678552845133 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [238, 201, 159] }, @@ -264660,23 +264660,23 @@ "year": 1779, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -27.034535068747044, - "c2": -23.12003674508582, - "c3": 0.8484390595324669, - "c4": 19.732826452391897, - "c5": -21.687355654346995, - "c6": 27.204944879126465, - "c7": -3.8476519639505327 + "points": { + "c1": 19.35401111803381, + "c2": -28.0068531021295, + "c3": 24.080711436112566, + "c4": 10.993011064453924, + "c5": -31.055818015260726, + "c6": 24.679151758159968, + "c7": -12.25994207273294 }, - "vertexSeeds": { - "c1": 5.200974398499204, - "c2": 5.4008455584019295, - "c3": 5.037138278866897, - "c4": 5.4002259072083, - "c5": 5.232043349637009, - "c6": 5.180908761327801, - "c7": 5.267286191123092 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302353, + "c3": 6.495607951918641, + "c4": 5.196486361534909, + "c5": 3.8973647711511763, + "c6": 2.5982431807674655, + "c7": 1.2991215903837328 }, "rgb": [58, 15, 49] }, @@ -264687,23 +264687,23 @@ "year": 1780, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -34.28811555852051, - "c2": 6.9578836768376675, - "c3": -28.38804515390626, - "c4": 46.50735295132026, - "c5": -16.688389017909582, - "c6": -4.335105992555803, - "c7": 42.21213288779927 + "points": { + "c1": 45.93208829349837, + "c2": -6.64524797551401, + "c3": -17.37136292110366, + "c4": 18.857835878282117, + "c5": -7.118021569548048, + "c6": 39.26068948308871, + "c7": -42.53379982409722 }, - "vertexSeeds": { - "c1": 0.8455612511349347, - "c2": 0.8472589213622079, - "c3": 0.8232093975086858, - "c4": 0.8422097361823419, - "c5": 0.8240226237673046, - "c6": 0.8182499534755283, - "c7": 0.8466346752665721 + "offsets": { + "c1": 1.4563106796116505, + "c2": 1.248266296809987, + "c3": 1.0402219140083233, + "c4": 0.8321775312066596, + "c5": 0.624133148404996, + "c6": 0.41608876560332725, + "c7": 0.20804438280166362 }, "rgb": [58, 15, 49] }, @@ -264714,23 +264714,23 @@ "year": 1780, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -26.153792699832422, - "c2": -23.167958368157404, - "c3": -14.114924602857375, - "c4": -23.33863830459914, - "c5": 11.378940592790912, - "c6": 25.052092332454272, - "c7": -5.504522523843086 + "points": { + "c1": -0.8648403670367983, + "c2": -31.87683251463105, + "c3": 21.185264859466223, + "c4": 0.21372886831611027, + "c5": -20.568019214737475, + "c6": -20.564351755905935, + "c7": -1.8399848885210872 }, - "vertexSeeds": { - "c1": 3.90772554000568, - "c2": 3.959149042870373, - "c3": 4.053492842364154, - "c4": 4.050229633253129, - "c5": 3.9149231250195045, - "c6": 3.978988443091437, - "c7": 4.009401215098522 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -264741,23 +264741,23 @@ "year": 1780, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -4.894774144564487, - "c2": -2.0325831284590237, - "c3": -17.990089523623805, - "c4": 18.106585886281145, - "c5": -24.634561646381975, - "c6": -18.374651820306152, - "c7": 18.710396537290855 + "points": { + "c1": -36.79764818917788, + "c2": -27.029465159787357, + "c3": 13.903823005046235, + "c4": -40.23559150549889, + "c5": 11.781490829929794, + "c6": -4.975300055021599, + "c7": 36.5799880587792 }, - "vertexSeeds": { - "c1": 9.437096273307404, - "c2": 9.746383915356905, - "c3": 9.608020753528525, - "c4": 9.600126574542825, - "c5": 9.278764311381282, - "c6": 9.138699797698411, - "c7": 9.487770014315569 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352279, + "c3": 11.696717521960245, + "c4": 9.357374017568187, + "c5": 7.01803051317615, + "c6": 4.6786870087840935, + "c7": 2.3393435043920356 }, "rgb": [58, 15, 49] }, @@ -264768,23 +264768,23 @@ "year": 1780, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -35.77950456136052, - "c2": -0.7050752290503439, - "c3": 38.3281767696912, - "c4": 7.662190043911451, - "c5": 0.20388284799753364, - "c6": 38.10347261147369, - "c7": 28.783241600958377 + "points": { + "c1": 29.55854046187912, + "c2": -19.031912579921805, + "c3": -2.954178775295617, + "c4": 36.378223866586694, + "c5": -7.398911762686197, + "c6": -18.831396641751333, + "c7": 18.075824306993745 }, - "vertexSeeds": { - "c1": 5.588308847850094, - "c2": 5.602132145500619, - "c3": 5.567258775373837, - "c4": 5.6092467772309575, - "c5": 5.525459738008523, - "c6": 5.5094307226208405, - "c7": 5.5535816666546705 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664355, + "c3": 6.703652334720296, + "c4": 5.362921867776237, + "c5": 4.0221914008321775, + "c6": 2.6814609338881183, + "c7": 1.3407304669440592 }, "rgb": [222, 0, 59] }, @@ -264795,23 +264795,23 @@ "year": 1780, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -12.27967196986316, - "c2": -38.63612485957263, - "c3": 38.73916998517237, - "c4": 40.87030465274742, - "c5": 34.17016050242512, - "c6": 28.25786334472106, - "c7": 2.1351637808807666 + "points": { + "c1": 32.94899526415996, + "c2": -42.14164483469622, + "c3": 21.923639545453895, + "c4": 18.490882852153405, + "c5": -29.351638985035745, + "c6": 28.28080931904431, + "c7": -7.0328117832586585 }, - "vertexSeeds": { - "c1": 7.176375543260255, - "c2": 7.16071804898895, - "c3": 7.091677132243281, - "c4": 6.746964351152967, - "c5": 7.516748384649432, - "c6": 7.508873138053305, - "c7": 7.509010785536295 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.81830790568655, + "c3": 9.015256588072114, + "c4": 7.212205270457695, + "c5": 5.409153952843275, + "c6": 3.606102635228839, + "c7": 1.8030513176144194 }, "rgb": [222, 0, 59] }, @@ -264822,23 +264822,23 @@ "year": 1779, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 22.147237665088408, - "c2": -8.554578309365969, - "c3": 8.184249213544792, - "c4": 1.9594526048265983, - "c5": -5.798665963830164, - "c6": -10.784570106108553, - "c7": 21.16717263596153 + "points": { + "c1": 28.394218532552205, + "c2": -3.23409417560962, + "c3": -13.954990912453292, + "c4": -13.315253932283783, + "c5": 3.090656272431641, + "c6": -16.361865748494107, + "c7": 4.845987709435743 }, - "vertexSeeds": { - "c1": 9.003744964457471, - "c2": 9.216953152387157, - "c3": 8.961155699422559, - "c4": 8.309682163912463, - "c5": 9.000325103909475, - "c6": 9.062055739140803, - "c7": 8.892422904345125 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789176, + "c3": 11.373092926490983, + "c4": 9.09847434119279, + "c5": 6.823855755894588, + "c6": 4.549237170596384, + "c7": 2.274618585298192 }, "rgb": [238, 201, 159] }, @@ -264849,23 +264849,23 @@ "year": 1779, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 1.2993665922041515, - "c2": -21.17918050181534, - "c3": -23.059779672653757, - "c4": 16.69759155571416, - "c5": -2.6396613651828815, - "c6": 12.512568363157111, - "c7": -18.49702820113167 + "points": { + "c1": 18.497161995478333, + "c2": -7.101320885129621, + "c3": 12.929200944173626, + "c4": 15.008408200607438, + "c5": -0.9487206944438142, + "c6": 21.98376963390103, + "c7": 22.71793630406663 }, - "vertexSeeds": { - "c1": 3.3850592104869937, - "c2": 3.4482208952587223, - "c3": 3.4565018232755724, - "c4": 3.5142457662226674, - "c5": 3.340563482651298, - "c6": 3.5714762978243493, - "c7": 3.578418936535448 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521501, + "c3": 4.322699953767911, + "c4": 3.4581599630143307, + "c5": 2.5936199722607505, + "c6": 1.7290799815071707, + "c7": 0.8645399907535799 }, "rgb": [222, 0, 59] }, @@ -264876,23 +264876,23 @@ "year": 1780, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 13.134918565298797, - "c2": -11.74688685595762, - "c3": 6.953633127031914, - "c4": -5.821014769064771, - "c5": 34.33518413085261, - "c6": -32.726987121659874, - "c7": -10.066294746220407 + "points": { + "c1": 7.463921684165278, + "c2": 26.078980629747846, + "c3": -35.41463510257313, + "c4": -20.731128689356577, + "c5": -32.26180953539129, + "c6": -24.650893010240964, + "c7": -27.561811294537257 }, - "vertexSeeds": { - "c1": 6.202055226499757, - "c2": 5.872192903633655, - "c3": 5.827565180909285, - "c4": 6.048076067666842, - "c5": 5.744699471307944, - "c6": 5.792718945924262, - "c7": 5.849905378477461 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951467, + "c3": 7.443365695792877, + "c4": 5.954692556634311, + "c5": 4.466019417475722, + "c6": 2.9773462783171554, + "c7": 1.4886731391585888 }, "rgb": [86, 146, 138] }, @@ -264903,23 +264903,23 @@ "year": 1780, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 33.32840688723566, - "c2": 26.828913420926654, - "c3": -22.074386400522542, - "c4": -19.468485146070833, - "c5": 0.4934520618998164, - "c6": 9.999817795900476, - "c7": -2.7853123159375244 + "points": { + "c1": -36.67509353400247, + "c2": 6.541053452859863, + "c3": 38.02302107070726, + "c4": 32.83020999667302, + "c5": -23.731577236488956, + "c6": -28.405243183557758, + "c7": 3.405765217891833 }, - "vertexSeeds": { - "c1": 7.169689119170984, - "c2": 7.169689119170984, - "c3": 7.169689119170984, - "c4": 7.169689119170984, - "c5": 7.169689119170984, - "c6": 7.169689119170984, - "c7": 7.169689119170984 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -264930,23 +264930,23 @@ "year": 1780, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 0.1718900247227424, - "c2": -20.61911057236426, - "c3": -3.498885598899065, - "c4": -19.002122984633154, - "c5": -35.322456179277225, - "c6": 24.058388359272108, - "c7": -25.211115892040645 + "points": { + "c1": 11.17220900751618, + "c2": -18.648259767192737, + "c3": -14.17929813646073, + "c4": 16.897482927339816, + "c5": -25.944768541347187, + "c6": 25.297602377374282, + "c7": -20.20949846698765 }, - "vertexSeeds": { - "c1": 3.516079479179595, - "c2": 3.5590160336226058, - "c3": 3.582367945303745, - "c4": 3.50244783587074, - "c5": 3.5374194211969576, - "c6": 3.5117261334095575, - "c7": 3.5228471372723393 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481272, + "c3": 4.2995839112343885, + "c4": 3.439667128987534, + "c5": 2.57975034674065, + "c6": 1.719833564493767, + "c7": 0.8599167822468835 }, "rgb": [238, 201, 159] }, @@ -264957,23 +264957,23 @@ "year": 1780, "resistanceReported": false, "duration": 44755200, - "curveSeeds": { - "c1": -18.19680785935992, - "c2": -39.94119419859128, - "c3": -49.713832548386904, - "c4": 15.587505616008393, - "c5": 57.08887445466117, - "c6": -26.885739761474767, - "c7": -57.143851764545104 + "points": { + "c1": -10.962713783375179, + "c2": 12.632224420867793, + "c3": 14.586109013487082, + "c4": 27.29044695464396, + "c5": 19.248995535651098, + "c6": -3.1360047256603565, + "c7": 58.60125725466535 }, - "vertexSeeds": { - "c1": 7.93840912635501, - "c2": 7.6774858801984625, - "c3": 8.213191393284198, - "c4": 7.875890116462962, - "c5": 7.710277030070613, - "c6": 7.961764861615389, - "c7": 7.685349819261737 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295414, + "c3": 9.939898289412856, + "c4": 7.951918631530275, + "c5": 5.963938973647719, + "c6": 3.9759593157651376, + "c7": 1.9879796578825801 }, "rgb": [58, 15, 49] }, @@ -264984,23 +264984,23 @@ "year": 1780, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -21.975762812268105, - "c2": -20.156120399123264, - "c3": 24.406008544460988, - "c4": 1.686539866567152, - "c5": -3.980282588453285, - "c6": -24.287915400790418, - "c7": -27.24621014713459 + "points": { + "c1": -37.97966597284625, + "c2": 15.63413292741508, + "c3": -42.83005247531843, + "c4": 28.656887660914236, + "c5": 13.707492749969958, + "c6": -23.392456848546697, + "c7": -27.58963548493141 }, - "vertexSeeds": { - "c1": 4.595745423413585, - "c2": 4.532502377144795, - "c3": 4.370760335183175, - "c4": 4.5229405669280425, - "c5": 4.526334606574975, - "c6": 4.596388806287164, - "c7": 4.506599930451551 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.6019417475728135, + "c3": 5.501618122977342, + "c4": 4.40129449838187, + "c5": 3.300970873786415, + "c6": 2.2006472491909435, + "c7": 1.1003236245954717 }, "rgb": [238, 201, 159] }, @@ -265011,23 +265011,23 @@ "year": 1780, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 46.37499898716187, - "c2": 31.13985736391259, - "c3": 1.7462674842377126, - "c4": -4.830472369231295, - "c5": 30.849806956318183, - "c6": 1.5563778720129804, - "c7": 23.045522814222586 + "points": { + "c1": 28.82531910656656, + "c2": 3.903271076335116, + "c3": -46.4814342209889, + "c4": 39.761120300131545, + "c5": 38.2931306770411, + "c6": 49.12773870262196, + "c7": -22.291396480167684 }, - "vertexSeeds": { - "c1": 3.58522833620476, - "c2": 3.5777818294912467, - "c3": 3.6121687400660605, - "c4": 3.7190870144683124, - "c5": 3.6065642615665197, - "c6": 3.653429827562629, - "c7": 3.618551096567573 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762832, + "c3": 4.461396208969031, + "c4": 3.5691169671752294, + "c5": 2.6768377253814273, + "c6": 1.7845584835876036, + "c7": 0.8922792417938018 }, "rgb": [222, 0, 59] }, @@ -265038,23 +265038,23 @@ "year": 1780, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -33.862409998728964, - "c2": -14.678523135101308, - "c3": 20.182045341999007, - "c4": 13.78614988472745, - "c5": 22.43282281366725, - "c6": 7.054463560193085, - "c7": -28.47647467537628 + "points": { + "c1": 7.740379582266918, + "c2": 30.68318271733724, + "c3": -42.91073855219014, + "c4": -40.471581267952395, + "c5": 12.154187742522133, + "c6": -23.812008006086415, + "c7": 10.758268941768499 }, - "vertexSeeds": { - "c1": 4.896821219310717, - "c2": 5.381624284908666, - "c3": 5.312555562953101, - "c4": 4.911151493031298, - "c5": 5.166468982400452, - "c6": 5.010201059763459, - "c7": 5.041551487565471 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270458, + "c3": 6.7267683772538085, + "c4": 5.381414701803049, + "c5": 4.03606102635229, + "c6": 2.690707350901532, + "c7": 1.345353675450759 }, "rgb": [222, 0, 59] }, @@ -265065,23 +265065,23 @@ "year": 1780, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -26.077308328999788, - "c2": -7.405105770234968, - "c3": -3.774374276060499, - "c4": 15.48808676944202, - "c5": 1.8229308742635908, - "c6": 11.914622477996076, - "c7": 23.726538149461007 + "points": { + "c1": 14.343158586876939, + "c2": 3.415939636855434, + "c3": -16.737392719973794, + "c4": 27.833861969681728, + "c5": 12.042328080071144, + "c6": 31.20614063475829, + "c7": -7.8600177324153435 }, - "vertexSeeds": { - "c1": 7.168378520289381, - "c2": 7.170540771142366, - "c3": 7.697547447988937, - "c4": 7.5305290011559745, - "c5": 7.486342410951609, - "c6": 7.425453422498474, - "c7": 7.711578126331932 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.15117891816922, + "c3": 9.292649098474339, + "c4": 7.43411927877948, + "c5": 5.5755894590846, + "c6": 3.71705963938974, + "c7": 1.858529819694881 }, "rgb": [86, 146, 138] }, @@ -265092,23 +265092,23 @@ "year": 1779, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 21.526020266934477, - "c2": 5.179223393498294, - "c3": 6.824876602447279, - "c4": 13.233893221797882, - "c5": 27.55835697759098, - "c6": 17.814375674603053, - "c7": -11.748109125629966 + "points": { + "c1": -16.183868396080832, + "c2": -6.600226474243019, + "c3": -19.548720496833504, + "c4": 21.83390578289797, + "c5": -7.284150409009463, + "c6": -21.75979457389793, + "c7": -0.6690690494854437 }, - "vertexSeeds": { - "c1": 3.5105734427255846, - "c2": 3.5646820356413045, - "c3": 3.4329181063173126, - "c4": 3.6367111648080885, - "c5": 3.544347340120537, - "c6": 3.360032134279218, - "c7": 3.6159253968573593 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601945, + "c3": 4.368932038834947, + "c4": 3.4951456310679596, + "c5": 2.6213592233009724, + "c6": 1.7475728155339743, + "c7": 0.8737864077669871 }, "rgb": [58, 15, 49] }, @@ -265119,23 +265119,23 @@ "year": 1780, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -15.02450348655692, - "c2": -12.543679856985381, - "c3": 2.547147125005843, - "c4": 16.443314241281684, - "c5": -9.779314859803396, - "c6": 5.390534975879831, - "c7": 4.087315666476201 + "points": { + "c1": 7.92529033908032, + "c2": -4.951286544517419, + "c3": -20.62409625940139, + "c4": -8.46696148273158, + "c5": -35.05987062715244, + "c6": -25.64173555246183, + "c7": 13.347270877507079 }, - "vertexSeeds": { - "c1": 6.013814671456295, - "c2": 6.0836021745650894, - "c3": 6.344815284993605, - "c4": 5.927230560354749, - "c5": 6.2115731586156615, - "c6": 6.061217399447427, - "c7": 6.27606320075855 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434119, + "c3": 7.720758206195099, + "c4": 6.176606564956079, + "c5": 4.632454923717059, + "c6": 3.0883032824780394, + "c7": 1.5441516412390197 }, "rgb": [77, 76, 132] }, @@ -265146,23 +265146,23 @@ "year": 1780, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 19.032086179725468, - "c2": -15.553405828722592, - "c3": -13.384377935563371, - "c4": -3.1007536680925476, - "c5": 7.911383306090194, - "c6": -7.0844878609674105, - "c7": 3.237380963688004 + "points": { + "c1": 11.179017977363976, + "c2": -7.659634026089456, + "c3": 8.133055625714377, + "c4": 33.7266171570423, + "c5": -12.119362727658785, + "c6": -7.613128331708886, + "c7": 1.750204483215434 }, - "vertexSeeds": { - "c1": 10.109648189709512, - "c2": 9.355590615914613, - "c3": 9.330604596027051, - "c4": 9.689629351328843, - "c5": 9.840939354424405, - "c6": 10.108042969899474, - "c7": 10.258596262053288 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679621, + "c3": 12.45954692556633, + "c4": 9.96763754045307, + "c5": 7.4757281553398105, + "c6": 4.983818770226535, + "c7": 2.491909385113275 }, "rgb": [58, 15, 49] }, @@ -265173,23 +265173,23 @@ "year": 1780, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 19.391457557112084, - "c2": 14.633726695238224, - "c3": -8.857530813896247, - "c4": -23.95436119062297, - "c5": 24.428259222297783, - "c6": -7.859914647870294, - "c7": -24.970273904509977 + "points": { + "c1": 21.81058531781136, + "c2": 7.260622059895859, + "c3": -12.620434292296942, + "c4": -23.378293224139295, + "c5": -9.204797515594802, + "c6": -27.90090730950966, + "c7": -2.978908264386206 }, - "vertexSeeds": { - "c1": 6.858179307304235, - "c2": 6.336486123107061, - "c3": 6.405260246126733, - "c4": 6.6209776639072775, - "c5": 6.355523748042228, - "c6": 6.688834462931181, - "c7": 6.709801547518058 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319006, + "c3": 8.229311141932508, + "c4": 6.583448913546011, + "c5": 4.937586685159514, + "c6": 3.291724456772995, + "c7": 1.6458622283864974 }, "rgb": [58, 15, 49] }, @@ -265200,23 +265200,23 @@ "year": 1780, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -38.346826903427925, - "c2": 5.156986312726367, - "c3": -37.35316182864006, - "c4": 12.061486565203793, - "c5": 17.908403019372493, - "c6": -31.490334065879715, - "c7": 8.760184777491652 + "points": { + "c1": -38.30305777010155, + "c2": 16.333804062425813, + "c3": -23.922253750788574, + "c4": -12.480657381269737, + "c5": -29.008214164511667, + "c6": 30.141379449567054, + "c7": 3.871398762062711 }, - "vertexSeeds": { - "c1": 8.62128466789967, - "c2": 9.19266036724059, - "c3": 8.769888735693051, - "c4": 9.16286051231764, - "c5": 8.888695020090735, - "c6": 8.888336284845778, - "c7": 8.727782295853629 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105418, + "c3": 10.980120203421164, + "c4": 8.784096162736937, + "c5": 6.588072122052709, + "c6": 4.392048081368454, + "c7": 2.196024040684227 }, "rgb": [77, 76, 132] }, @@ -265227,23 +265227,23 @@ "year": 1780, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 34.96189424058608, - "c2": 14.178942406944053, - "c3": -44.48721575649511, - "c4": 8.700471343259963, - "c5": 42.56105682713308, - "c6": -4.124490839834422, - "c7": 31.17452424107804 + "points": { + "c1": 36.51706581885119, + "c2": 35.14831858851576, + "c3": -15.388229307147032, + "c4": -31.870770845144406, + "c5": 39.18988055961547, + "c6": 35.57039676596583, + "c7": -37.79986735942815 }, - "vertexSeeds": { - "c1": 6.583216203405671, - "c2": 6.802519354938276, - "c3": 6.863085488817717, - "c4": 6.101851718029462, - "c5": 6.5269389793734955, - "c6": 6.967330662384612, - "c7": 6.5364435369821505 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680998, + "c3": 8.437355524734166, + "c4": 6.749884419787332, + "c5": 5.062413314840499, + "c6": 3.374942209893666, + "c7": 1.687471104946833 }, "rgb": [58, 15, 49] }, @@ -265254,23 +265254,23 @@ "year": 1780, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -40.14248327476371, - "c2": -16.591387386709524, - "c3": -33.17945059243481, - "c4": -25.32212880065762, - "c5": 23.669060292973164, - "c6": 18.870828386614555, - "c7": 2.1642530194651357 + "points": { + "c1": 5.295042258447047, + "c2": 12.396566105153596, + "c3": 22.242511537904853, + "c4": -31.185092475742422, + "c5": -13.645601158610408, + "c6": -3.987300859221669, + "c7": -21.355395690736948 }, - "vertexSeeds": { - "c1": 10.382832295216472, - "c2": 10.364804868861075, - "c3": 10.379690490548597, - "c4": 10.538627918539525, - "c5": 11.100143644633839, - "c6": 11.078584882542827, - "c7": 10.53802098280089 + "offsets": { + "c1": 18.6084142394822, + "c2": 15.950069348127588, + "c3": 13.29172445677302, + "c4": 10.633379565418407, + "c5": 7.975034674063794, + "c6": 5.316689782709226, + "c7": 2.658344891354613 }, "rgb": [222, 0, 59] }, @@ -265281,23 +265281,23 @@ "year": 1780, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 7.697563268065647, - "c2": 14.20425007258271, - "c3": 3.082170705139319, - "c4": 3.935369365412697, - "c5": 6.397046245734106, - "c6": -19.362927873231698, - "c7": 1.9285182023804701 + "points": { + "c1": 19.459117181366636, + "c2": -8.381420592677765, + "c3": -16.301636146173394, + "c4": -10.111264818046177, + "c5": -16.416178641818433, + "c6": 18.419760065285125, + "c7": -18.578494450094095 }, - "vertexSeeds": { - "c1": 9.854446422305067, - "c2": 10.00968252062594, - "c3": 9.868055770134916, - "c4": 9.906562084628174, - "c5": 9.521063557555394, - "c6": 10.197651467990793, - "c7": 9.968265076398296 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.674063800277372, + "c3": 12.228386500231165, + "c4": 9.782709200184936, + "c5": 7.337031900138686, + "c6": 4.891354600092457, + "c7": 2.4456773000462286 }, "rgb": [86, 146, 138] }, @@ -265308,23 +265308,23 @@ "year": 1780, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": -42.42063242339514, - "c2": -25.727947906224, - "c3": -48.15572000692945, - "c4": 40.346322482021975, - "c5": 15.868723318099384, - "c6": -20.60943510932968, - "c7": 48.457770083236156 + "points": { + "c1": 7.358968453894612, + "c2": -28.76798676182196, + "c3": 7.522918974073747, + "c4": 4.575971632873575, + "c5": 29.418953545992267, + "c6": 34.949229944936405, + "c7": 29.387561714252755 }, - "vertexSeeds": { - "c1": 6.5809900963396215, - "c2": 7.038096537369246, - "c3": 6.575635014937378, - "c4": 6.8884953480897995, - "c5": 6.8010317386621315, - "c6": 6.565465204496262, - "c7": 6.81392550746321 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721214, + "c3": 8.460471567267671, + "c4": 6.76837725381415, + "c5": 5.076282940360607, + "c6": 3.384188626907064, + "c7": 1.6920943134535429 }, "rgb": [77, 76, 132] }, @@ -265335,23 +265335,23 @@ "year": 1780, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 4.03335666336428, - "c2": 1.8048452469743026, - "c3": -30.62182921447453, - "c4": -10.29796087668079, - "c5": -19.523901252925334, - "c6": 17.852586836275, - "c7": -29.95636122526689 + "points": { + "c1": -4.336143946109235, + "c2": 8.118660711453629, + "c3": -19.798446502554356, + "c4": 29.246152940278478, + "c5": 26.517274731315737, + "c6": -25.000330616337827, + "c7": -1.4885840633949101 }, - "vertexSeeds": { - "c1": 7.011681503265226, - "c2": 7.694735447055164, - "c3": 7.668292833585921, - "c4": 6.900773122705629, - "c5": 7.181003519076964, - "c6": 6.802236177926434, - "c7": 7.594981321756281 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289876, + "c3": 9.361997226074896, + "c4": 7.489597780859917, + "c5": 5.617198335644938, + "c6": 3.7447988904299585, + "c7": 1.8723994452149793 }, "rgb": [238, 201, 159] }, @@ -265362,23 +265362,23 @@ "year": 1780, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -7.610250890033559, - "c2": 7.317933119171791, - "c3": 1.520492871434243, - "c4": -10.95318786342769, - "c5": 12.458039999567873, - "c6": -17.346004951053878, - "c7": -18.728017739509745 + "points": { + "c1": 23.213187767491824, + "c2": 23.117202383538583, + "c3": 22.41710920166267, + "c4": 5.482346832138546, + "c5": 27.736598780463027, + "c6": -9.371049838122154, + "c7": -20.66880231593963 }, - "vertexSeeds": { - "c1": 7.135351892360899, - "c2": 7.691262052184556, - "c3": 7.591679968184533, - "c4": 7.472847240065804, - "c5": 7.361903792069283, - "c6": 7.4564166836597305, - "c7": 7.747108546830593 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169208, + "c3": 9.292649098474337, + "c4": 7.434119278779466, + "c5": 5.575589459084595, + "c6": 3.7170596393897424, + "c7": 1.8585298196948525 }, "rgb": [86, 146, 138] }, @@ -265389,23 +265389,23 @@ "year": 1780, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -20.19517888682964, - "c2": 15.60076360842131, - "c3": -5.8306341109619595, - "c4": 19.30383760033434, - "c5": 19.877913090122874, - "c6": 27.415045359916554, - "c7": 16.261395921363793 + "points": { + "c1": 11.940119456474058, + "c2": -8.901681311790284, + "c3": -10.27532345151587, + "c4": -12.864527977549965, + "c5": 21.909746781885914, + "c6": 12.624772966962936, + "c7": 10.832092719056284 }, - "vertexSeeds": { - "c1": 6.85582953566386, - "c2": 6.584569154260801, - "c3": 6.423693272497301, - "c4": 6.730370882946314, - "c5": 6.471906824323414, - "c6": 6.7431838076942885, - "c7": 6.35376851451309 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319006, + "c3": 8.229311141932508, + "c4": 6.583448913546011, + "c5": 4.937586685159514, + "c6": 3.291724456772995, + "c7": 1.6458622283864974 }, "rgb": [58, 15, 49] }, @@ -265416,23 +265416,23 @@ "year": 1780, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -42.4644918814629, - "c2": 29.95426763009246, - "c3": -12.171493733356616, - "c4": -35.92646252973441, - "c5": 32.652954364172246, - "c6": 15.276569011365758, - "c7": 28.133498235517933 + "points": { + "c1": -35.859518079427, + "c2": 13.645886515941676, + "c3": 24.770852164355333, + "c4": 43.79016396281091, + "c5": 3.4762349559609618, + "c6": -13.40224027723966, + "c7": 15.803722739986675 }, - "vertexSeeds": { - "c1": 3.99117875036973, - "c2": 3.904294743651152, - "c3": 3.9368973315404974, - "c4": 3.8229250459284057, - "c5": 3.9555662008407197, - "c6": 3.9030973988260302, - "c7": 4.098111860321687 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [86, 146, 138] }, @@ -265443,23 +265443,23 @@ "year": 1780, "resistanceReported": false, "duration": 7689600, - "curveSeeds": { - "c1": -17.320849401033453, - "c2": 16.106813698069505, - "c3": 17.59139317178413, - "c4": 14.981906954219209, - "c5": 12.415257001062592, - "c6": 10.302894356966068, - "c7": 8.11556965862 + "points": { + "c1": -10.40881793972578, + "c2": -19.620374727094365, + "c3": 13.869758667146318, + "c4": -10.425175651457621, + "c5": -11.587063805657225, + "c6": 10.291650208698108, + "c7": 19.34282821464623 }, - "vertexSeeds": { - "c1": 5.924502375292857, - "c2": 5.505543925695862, - "c3": 5.756496172928405, - "c4": 5.937496794688337, - "c5": 5.653523544535557, - "c6": 6.054180284896278, - "c7": 5.715713330196455 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [222, 0, 59] }, @@ -265470,23 +265470,23 @@ "year": 1780, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -13.959644898670902, - "c2": 13.939316290128048, - "c3": 16.98295829094974, - "c4": -26.523490042400333, - "c5": 20.43418414165673, - "c6": -8.955998934793652, - "c7": -10.931693702408673 + "points": { + "c1": -8.516657143877179, + "c2": 37.38719055362243, + "c3": -12.072548958530462, + "c4": 21.736587362837362, + "c5": 39.77838878661137, + "c6": -23.133707254610467, + "c7": 24.37251824646532 }, - "vertexSeeds": { - "c1": 6.311289869075181, - "c2": 5.949169056098388, - "c3": 6.1156718302114115, - "c4": 6.613984008585037, - "c5": 5.935447003482922, - "c6": 6.187490943346097, - "c7": 6.191057031467125 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [238, 201, 159] }, @@ -265497,23 +265497,23 @@ "year": 1780, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -21.304723635022476, - "c2": 34.89424705777494, - "c3": 34.23016542435273, - "c4": 7.789126631113923, - "c5": 6.300581140230626, - "c6": 31.94079355457429, - "c7": -26.89159040338561 + "points": { + "c1": -33.839967330194625, + "c2": 0.8269743323882679, + "c3": 41.20830416546452, + "c4": -27.778579317489918, + "c5": -29.816063214509676, + "c6": 40.8694357739599, + "c7": 5.288380162680802 }, - "vertexSeeds": { - "c1": 7.823805126704036, - "c2": 8.276154885105695, - "c3": 7.704185454061327, - "c4": 7.662082685520754, - "c5": 8.130364290519571, - "c6": 7.678405331319556, - "c7": 8.109492043953125 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214969, + "c3": 9.89366620434582, + "c4": 7.914932963476646, + "c5": 5.936199722607496, + "c6": 3.957466481738323, + "c7": 1.9787332408691507 }, "rgb": [86, 146, 138] }, @@ -265524,23 +265524,23 @@ "year": 1781, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": 10.905937671903892, - "c2": 1.5851166565837218, - "c3": -11.302490970935537, - "c4": -28.37541959414993, - "c5": 46.61639456517685, - "c6": 22.51811609367968, - "c7": 24.64779692574379 + "points": { + "c1": 53.03873366716573, + "c2": -25.019860105390922, + "c3": 16.28766980365596, + "c4": 45.032251845373466, + "c5": -48.248242165266134, + "c6": 24.893811788716448, + "c7": 52.67541619033652 }, - "vertexSeeds": { - "c1": 2.440580462406123, - "c2": 2.8038825731715447, - "c3": 2.9845618678132837, - "c4": 1.166405256282941, - "c5": 2.8458835292365787, - "c6": 1.473839348033427, - "c7": 0.9810389011840235 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530275 }, "rgb": [58, 15, 49] }, @@ -265551,23 +265551,23 @@ "year": 1780, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -7.159195759092441, - "c2": 6.285526501645165, - "c3": 34.018949670913, - "c4": 26.88692000963337, - "c5": 1.0071977833456174, - "c6": -39.99499847295458, - "c7": -21.373244794850688 + "points": { + "c1": -26.826620564105568, + "c2": 39.43689936928354, + "c3": -15.32658002116726, + "c4": -42.59108521459975, + "c5": 10.187856674101305, + "c6": -26.230730227395163, + "c7": 29.340944028012814 }, - "vertexSeeds": { - "c1": 4.733221402748907, - "c2": 4.663883802382511, - "c3": 4.745925984690074, - "c4": 5.052985927152651, - "c5": 4.756584111607159, - "c6": 4.83658126273089, - "c7": 4.809806203323691 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578353, + "c3": 6.079519186315306, + "c4": 4.863615349052246, + "c5": 3.647711511789188, + "c6": 2.431807674526118, + "c7": 1.21590383726307 }, "rgb": [86, 146, 138] }, @@ -265578,23 +265578,23 @@ "year": 1780, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -5.5060505540482545, - "c2": -20.596075301713814, - "c3": 23.378496831256143, - "c4": -17.001984759544417, - "c5": -3.9577180363263125, - "c6": 2.1120260150166175, - "c7": -9.62842878066948 + "points": { + "c1": 0.35260361861590184, + "c2": 13.996344348677034, + "c3": 14.84080014736304, + "c4": 14.140059660760315, + "c5": -22.670672704659854, + "c6": -5.1698467220766595, + "c7": 22.652188792782162 }, - "vertexSeeds": { - "c1": 6.53409141070295, - "c2": 6.81835110672147, - "c3": 6.76359182066425, - "c4": 6.871584542459586, - "c5": 6.513725041154265, - "c6": 6.76448918825066, - "c7": 6.465507267821877 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.84743411927879, + "c3": 8.206195099398979, + "c4": 6.564956079519193, + "c5": 4.923717059639382, + "c6": 3.2824780397595963, + "c7": 1.6412390198798104 }, "rgb": [238, 201, 159] }, @@ -265605,23 +265605,23 @@ "year": 1780, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 21.909727747970635, - "c2": 9.234729158248538, - "c3": -5.378754543089233, - "c4": 1.6605121494311952, - "c5": -10.876889603209563, - "c6": -20.851275301773878, - "c7": 2.093595056284048 + "points": { + "c1": -6.258913518447521, + "c2": 23.9447870089301, + "c3": -14.854461942217869, + "c4": -14.968795145301499, + "c5": -11.486393579960199, + "c6": -15.305481794858007, + "c7": 13.609197482210824 }, - "vertexSeeds": { - "c1": 3.6617988411278173, - "c2": 3.6654665833847724, - "c3": 3.562155684290955, - "c4": 3.6078798021971807, - "c5": 3.6056727612853314, - "c6": 3.538114273684319, - "c7": 3.6435915338453397 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642169, + "c3": 4.392048081368462, + "c4": 3.513638465094773, + "c5": 2.6352288488210847, + "c6": 1.756819232547377, + "c7": 0.8784096162736885 }, "rgb": [86, 146, 138] }, @@ -265632,23 +265632,23 @@ "year": 1780, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 23.372568175658742, - "c2": -39.12112128666752, - "c3": -5.65947687211424, - "c4": 30.707782806110387, - "c5": 39.43558992223079, - "c6": 34.38051023929978, - "c7": 38.036855694767894 + "points": { + "c1": -30.07057742566819, + "c2": 13.352916072726373, + "c3": 8.73558376314881, + "c4": 13.964515485112756, + "c5": -39.052446140492556, + "c6": 16.39150900764612, + "c7": 1.1051763098048681 }, - "vertexSeeds": { - "c1": 6.069981557285719, - "c2": 6.099628076117211, - "c3": 6.092139619451357, - "c4": 6.027305265004955, - "c5": 6.139590857262437, - "c6": 6.121503147385427, - "c7": 6.122192625958846 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790568, + "c3": 7.3509015256588075, + "c4": 5.880721220527046, + "c5": 4.410540915395284, + "c6": 2.940360610263523, + "c7": 1.4701803051317615 }, "rgb": [222, 0, 59] }, @@ -265659,23 +265659,23 @@ "year": 1781, "resistanceReported": false, "duration": 44755200, - "curveSeeds": { - "c1": 20.695971570104327, - "c2": -10.034023128040978, - "c3": -15.925335807572274, - "c4": -32.56137364393062, - "c5": 58.45179568448193, - "c6": -34.86658546256871, - "c7": -58.0641166038179 + "points": { + "c1": -54.07521383414931, + "c2": -58.11174159367928, + "c3": -40.62263251043882, + "c4": 33.620349441565615, + "c5": -33.92968091756647, + "c6": 44.851562068540865, + "c7": -41.588774958072534 }, - "vertexSeeds": { - "c1": 8.694004526878402, - "c2": 8.465963950366874, - "c3": 8.263889109298397, - "c4": 8.101380542545023, - "c5": 8.378568043039405, - "c6": 7.738377869761439, - "c7": 7.6521879654541864 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864075, + "c3": 10.841423948220058, + "c4": 8.673139158576053, + "c5": 6.504854368932038, + "c6": 4.336569579288022, + "c7": 2.1682847896440163 }, "rgb": [58, 15, 49] }, @@ -265686,23 +265686,23 @@ "year": 1781, "resistanceReported": false, "duration": 56332800, - "curveSeeds": { - "c1": 46.42795194930851, - "c2": 15.722053392417294, - "c3": 51.94238851484802, - "c4": 43.6299244138083, - "c5": 17.92005406569325, - "c6": -8.227943695229477, - "c7": 67.15710593408818 + "points": { + "c1": -19.126911775101732, + "c2": -16.05870405790528, + "c3": 68.70417667362614, + "c4": 41.28047544914506, + "c5": 36.45836205876826, + "c6": -40.527383465567155, + "c7": 10.94032722503087 }, - "vertexSeeds": { - "c1": 2.974236678479158, - "c2": 2.9742954184113493, - "c3": 2.7526129681848186, - "c4": 2.863892980300251, - "c5": 2.9057620217870896, - "c6": 3.0053287019846633, - "c7": 2.6790733814140038 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435508, + "c3": 3.698566805362924, + "c4": 2.9588534442903405, + "c5": 2.2191400832177504, + "c6": 1.4794267221451671, + "c7": 0.7397133610725836 }, "rgb": [238, 201, 159] }, @@ -265713,23 +265713,23 @@ "year": 1781, "resistanceReported": false, "duration": 49939200, - "curveSeeds": { - "c1": 27.812686681887556, - "c2": 59.16560346461819, - "c3": -55.20935542543144, - "c4": -17.053960623616767, - "c5": -25.815138386209718, - "c6": 17.274150889901847, - "c7": -11.581835946393937 + "points": { + "c1": -17.157298680155684, + "c2": 55.09256386504697, + "c3": 59.51960093447387, + "c4": 61.766433322813796, + "c5": 24.661501930332037, + "c6": -59.499530342946954, + "c7": -1.338683433653273 }, - "vertexSeeds": { - "c1": 5.226966968512052, - "c2": 5.4242190879110295, - "c3": 5.6986007950873026, - "c4": 5.27989274037188, - "c5": 5.990149692247908, - "c6": 5.915352752892877, - "c7": 5.854961639091334 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [222, 0, 59] }, @@ -265740,23 +265740,23 @@ "year": 1781, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": 11.336593638223732, - "c2": -16.037045136358017, - "c3": -20.395295514003806, - "c4": -10.463289749656944, - "c5": 25.836844476676546, - "c6": 18.185955063165835, - "c7": 11.465459080529214 + "points": { + "c1": -55.46299296378772, + "c2": 34.472630658916046, + "c3": -50.60722367299063, + "c4": -19.615991573086262, + "c5": 18.719832854112468, + "c6": 33.77750183393398, + "c7": 51.33135517888583 }, - "vertexSeeds": { - "c1": 6.359829919489009, - "c2": 6.581121467824419, - "c3": 6.593555472889614, - "c4": 6.758845504511326, - "c5": 6.955132177736131, - "c6": 6.601848219642538, - "c7": 6.729015763086393 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -265767,23 +265767,23 @@ "year": 1781, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -5.5889012891123215, - "c2": -7.3667967521999955, - "c3": 15.968251755526104, - "c4": 5.901403632841621, - "c5": -5.198573116826658, - "c6": -34.101423892926235, - "c7": -37.08921250872539 + "points": { + "c1": -31.382253854835838, + "c2": 13.164790991413902, + "c3": 31.847261301447844, + "c4": -18.20075043579603, + "c5": 4.383602491111347, + "c6": -13.028933621647312, + "c7": 39.513435710557246 }, - "vertexSeeds": { - "c1": 1.6033260401966827, - "c2": 1.6010919504808985, - "c3": 1.6339974952531042, - "c4": 1.6564377918881006, - "c5": 1.6366340314652912, - "c6": 1.6000500015526478, - "c7": 1.6138138487239355 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.4133148404993094, + "c3": 2.0110957004160874, + "c4": 1.6088765603328732, + "c5": 1.206657420249651, + "c6": 0.8044382801664366, + "c7": 0.40221914008321424 }, "rgb": [238, 201, 159] }, @@ -265794,23 +265794,23 @@ "year": 1781, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": -6.578301953745658, - "c2": 44.8047267224545, - "c3": 42.76757555885275, - "c4": 17.170152913093794, - "c5": 16.702045220813368, - "c6": -32.40371854732004, - "c7": 42.820210853280635 + "points": { + "c1": -16.71209229720968, + "c2": -47.57020830611493, + "c3": -42.79238398720589, + "c4": -21.575073662493466, + "c5": -15.767942512089391, + "c6": -12.882920031121152, + "c7": -17.951524737922625 }, - "vertexSeeds": { - "c1": 5.988334645192735, - "c2": 5.756894982968793, - "c3": 5.9082661640857035, - "c4": 5.574430993307921, - "c5": 5.637091829780573, - "c6": 5.592803846681043, - "c7": 5.977313323323617 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710117, + "c3": 7.304669440591773, + "c4": 5.843735552473411, + "c5": 4.3828016643550685, + "c6": 2.9218677762367053, + "c7": 1.4609338881183427 }, "rgb": [238, 201, 159] }, @@ -265821,23 +265821,23 @@ "year": 1781, "resistanceReported": false, "duration": 44323200, - "curveSeeds": { - "c1": 18.555248757350938, - "c2": 45.28301899764476, - "c3": -24.805430773226902, - "c4": 17.703278081938947, - "c5": 38.433928548424205, - "c6": 52.33456288144964, - "c7": -52.456163804714436 + "points": { + "c1": -11.669484000848087, + "c2": -24.49863713631879, + "c3": 30.007337856297198, + "c4": -18.17308451004179, + "c5": -28.32288278051677, + "c6": 3.460802400682212, + "c7": -5.307182938431339 }, - "vertexSeeds": { - "c1": 5.7663527421314305, - "c2": 5.790745537199579, - "c3": 6.091408919716001, - "c4": 5.789780226109991, - "c5": 5.834648133947323, - "c6": 6.118982094832833, - "c7": 5.989271879655933 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.98751733703191, + "c3": 7.489597780859914, + "c4": 5.9916782246879405, + "c5": 4.4937586685159445, + "c6": 2.9958391123439703, + "c7": 1.4979195561719962 }, "rgb": [77, 76, 132] }, @@ -265848,23 +265848,23 @@ "year": 1781, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": 38.87461460135356, - "c2": -16.373883676424455, - "c3": 31.415004358523618, - "c4": 39.08466753415493, - "c5": -38.13630928429155, - "c6": 34.54425333216621, - "c7": 4.09975385007786 + "points": { + "c1": 6.091167142850601, + "c2": 25.74390980996165, + "c3": -49.256295776937655, + "c4": 46.88069563441445, + "c5": -1.072510730781218, + "c6": 51.44216259038471, + "c7": 38.88454133706598 }, - "vertexSeeds": { - "c1": 7.051083625142643, - "c2": 7.099642886307516, - "c3": 7.0593129080254995, - "c4": 7.082117918435977, - "c5": 6.991136881587895, - "c6": 6.982481466193168, - "c7": 7.150796504351637 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.26352288488213, + "c3": 8.552935737401748, + "c4": 6.8423485899214205, + "c5": 5.131761442441039, + "c6": 3.4211742949607102, + "c7": 1.710587147480381 }, "rgb": [238, 201, 159] }, @@ -265875,23 +265875,23 @@ "year": 1781, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -22.5917399648082, - "c2": -21.13973505589843, - "c3": 10.837699566807203, - "c4": -8.233542848259514, - "c5": -36.16921592727115, - "c6": -18.83387509051859, - "c7": 23.22369718916493 + "points": { + "c1": 20.039678460147307, + "c2": -30.272297355047485, + "c3": -27.369983574315306, + "c4": -31.06280758009774, + "c5": 25.56015209477802, + "c6": 16.24662608863745, + "c7": -25.043133688248435 }, - "vertexSeeds": { - "c1": 7.105204634141062, - "c2": 7.214415730599817, - "c3": 7.24686290527919, - "c4": 6.920780766314645, - "c5": 7.106862122980289, - "c6": 6.926468132398898, - "c7": 7.260704040501669 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163675, + "c3": 8.71474803513638, + "c4": 6.971798428109118, + "c5": 5.2288488210818205, + "c6": 3.485899214054559, + "c7": 1.7429496070272619 }, "rgb": [238, 201, 159] }, @@ -265902,23 +265902,23 @@ "year": 1780, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -5.662174395160008, - "c2": -9.984456388625373, - "c3": -21.96214670477094, - "c4": 9.233917871156354, - "c5": 17.827747358188642, - "c6": -13.369281555056931, - "c7": 21.279804130481327 + "points": { + "c1": -8.95546349754263, + "c2": -4.480276943378051, + "c3": -7.003312092356698, + "c4": 4.442575754094989, + "c5": -15.232261974046857, + "c6": 24.181975434012823, + "c7": 4.773199439555157 }, - "vertexSeeds": { - "c1": 4.060702747594174, - "c2": 4.0488258757238444, - "c3": 4.054217457351404, - "c4": 4.0521040237520785, - "c5": 4.02569982740695, - "c6": 4.032069272074634, - "c7": 4.067981703789732 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486851, + "c3": 4.877484974572344, + "c4": 3.9019879796579007, + "c5": 2.9264909847433933, + "c6": 1.9509939898289503, + "c7": 0.9754969949144427 }, "rgb": [222, 0, 59] }, @@ -265929,23 +265929,23 @@ "year": 1781, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 2.268385381441142, - "c2": 15.331083484333263, - "c3": 15.35870865138714, - "c4": 35.017811763460585, - "c5": 5.681360934102436, - "c6": -24.719022333610816, - "c7": 34.222623148674714 + "points": { + "c1": 20.04897326322893, + "c2": 6.52936385102452, + "c3": 33.275852566437194, + "c4": 35.529054038691214, + "c5": 35.4251022872654, + "c6": 33.0734461014445, + "c7": -19.768338169854704 }, - "vertexSeeds": { - "c1": 4.5496697334573195, - "c2": 4.5662882727023355, - "c3": 4.61654855754655, - "c4": 4.81468886019116, - "c5": 4.479004777095435, - "c6": 4.430132895121913, - "c7": 4.466079448017212 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -265956,23 +265956,23 @@ "year": 1780, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 17.26088377859834, - "c2": 28.311426861245245, - "c3": -10.29778448837418, - "c4": -33.73950666978095, - "c5": 34.29997802770546, - "c6": -16.414971769805103, - "c7": 32.777186833350136 + "points": { + "c1": 14.821543346691868, + "c2": 25.57062624113778, + "c3": -11.256694229494435, + "c4": 18.91264117376761, + "c5": 2.4391461688809457, + "c6": -38.050407461638244, + "c7": -23.178770254822883 }, - "vertexSeeds": { - "c1": 11.697728943645215, - "c2": 11.832564407922133, - "c3": 11.657364979940557, - "c4": 11.745256192187808, - "c5": 11.777751286837846, - "c6": 11.773695022479847, - "c7": 11.691067297466294 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133116, + "c3": 13.869625520110894, + "c4": 11.09570041608867, + "c5": 8.321775312066446, + "c6": 5.547850208044446, + "c7": 2.773925104022223 }, "rgb": [222, 0, 59] }, @@ -265983,23 +265983,23 @@ "year": 1780, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -34.81960475939292, - "c2": -2.448982937463505, - "c3": 20.914057346303906, - "c4": -17.1610096348728, - "c5": 33.159422913312284, - "c6": -16.887009751417953, - "c7": -0.5302327746422932 + "points": { + "c1": 37.306501720682164, + "c2": 5.28105928676203, + "c3": 21.61221753259781, + "c4": 34.08494157285661, + "c5": 18.14624061327799, + "c6": 25.48842268051412, + "c7": 22.740688684484702 }, - "vertexSeeds": { - "c1": 11.338406000012561, - "c2": 11.897398231929312, - "c3": 11.837899098021035, - "c4": 11.863599144141059, - "c5": 10.230126722208102, - "c6": 11.099672384763906, - "c7": 10.123775454597215 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.198335644937597, + "c3": 14.331946370781319, + "c4": 11.465557096625064, + "c5": 8.599167822468788, + "c6": 5.732778548312532, + "c7": 2.8663892741562766 }, "rgb": [77, 76, 132] }, @@ -266010,23 +266010,23 @@ "year": 1780, "resistanceReported": true, "duration": 17280000, - "curveSeeds": { - "c1": -3.5437124538329066, - "c2": 28.52813433741632, - "c3": -19.943377473311045, - "c4": 15.290301202945848, - "c5": -25.65943498945246, - "c6": 28.055665407802934, - "c7": 25.640668133425834 + "points": { + "c1": -29.189291506750052, + "c2": 19.984605310146826, + "c3": 3.926084841871507, + "c4": -22.67755544607939, + "c5": 4.624463596814579, + "c6": 4.594747012933347, + "c7": -9.80766327773571 }, - "vertexSeeds": { - "c1": 5.8998021533172125, - "c2": 5.213514927200713, - "c3": 5.191109361413885, - "c4": 5.944927769738059, - "c5": 5.735366390897839, - "c6": 5.2350532272475565, - "c7": 5.860376947211434 + "offsets": { + "c1": 10, + "c2": 8.571428571428568, + "c3": 7.142857142857149, + "c4": 5.714285714285716, + "c5": 4.285714285714284, + "c6": 2.8571428571428514, + "c7": 1.4285714285714324 }, "rgb": [238, 201, 159] }, @@ -266037,23 +266037,23 @@ "year": 1780, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 24.25821986548918, - "c2": 14.57872272176931, - "c3": -2.862377023961468, - "c4": 11.522257323599092, - "c5": 20.042884320177016, - "c6": -3.4005746095452203, - "c7": 20.326104856592814 + "points": { + "c1": 16.293435227279332, + "c2": -30.38687160930676, + "c3": -14.596031323968234, + "c4": -25.717024629197258, + "c5": 27.13068802725701, + "c6": 8.19372467994598, + "c7": 8.033626068720558 }, - "vertexSeeds": { - "c1": 5.17370740248152, - "c2": 5.36224467642592, - "c3": 5.507732303962868, - "c4": 5.451608614977175, - "c5": 5.554718907860345, - "c6": 5.100711776548006, - "c7": 5.321414456514762 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543683, + "c3": 6.634304207119751, + "c4": 5.3074433656957964, + "c5": 3.9805825242718416, + "c6": 2.6537216828479093, + "c7": 1.3268608414239547 }, "rgb": [77, 76, 132] }, @@ -266064,23 +266064,23 @@ "year": 1781, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 37.99941481921358, - "c2": 6.013330904662091, - "c3": -0.8918696465677627, - "c4": -14.94183934725713, - "c5": -14.799337163769689, - "c6": -7.62236749229227, - "c7": -35.678308412161044 + "points": { + "c1": -34.61310980070708, + "c2": 10.33671981024687, + "c3": -15.935866034831843, + "c4": -5.912242019851945, + "c5": 8.283811543807339, + "c6": -10.78830927060092, + "c7": -10.85902218507669 }, - "vertexSeeds": { - "c1": 3.0758804092461967, - "c2": 3.122560364353504, - "c3": 3.2350177921091277, - "c4": 3.179241241697151, - "c5": 3.1876471037528518, - "c6": 3.25601546736802, - "c7": 3.2137995515158306 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877949, + "c3": 3.952843273231626, + "c4": 3.162274618585303, + "c5": 2.3717059639389797, + "c6": 1.5811373092926464, + "c7": 0.7905686546463232 }, "rgb": [58, 15, 49] }, @@ -266091,23 +266091,23 @@ "year": 1780, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 10.158466067476251, - "c2": 4.630728114801212, - "c3": 8.356016073047126, - "c4": -10.525968055481329, - "c5": -12.32823429726487, - "c6": 10.120380253763567, - "c7": -22.501184528671445 + "points": { + "c1": -0.3578414459872725, + "c2": 10.167847541798142, + "c3": -13.199153592805757, + "c4": -30.75456231117125, + "c5": 0.25791236408116447, + "c6": 12.381190431282644, + "c7": 17.359462432353002 }, - "vertexSeeds": { - "c1": 6.870726401048979, - "c2": 6.6393526746005795, - "c3": 6.441651845575118, - "c4": 6.555822266116896, - "c5": 6.547690436740112, - "c6": 6.670839921471352, - "c7": 6.6754622698105575 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066581, + "c4": 6.65742024965327, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624133119 }, "rgb": [77, 76, 132] }, @@ -266118,23 +266118,23 @@ "year": 1780, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -23.93799035545345, - "c2": -2.9317045361849203, - "c3": -4.325975908817341, - "c4": -19.622642861657546, - "c5": 22.828837767400884, - "c6": 19.825710829776433, - "c7": -15.870383645235467 + "points": { + "c1": 11.839561239467713, + "c2": 11.34815469331732, + "c3": 1.8411205292208344, + "c4": -23.165361512400363, + "c5": -2.6731512786320195, + "c6": -26.671754106543663, + "c7": -17.64952736836992 }, - "vertexSeeds": { - "c1": 4.0074211850958354, - "c2": 4.112697305185155, - "c3": 3.9909608440054063, - "c4": 4.123860685064351, - "c5": 4.082780680053947, - "c6": 3.862026873416583, - "c7": 3.994253414251297 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [58, 15, 49] }, @@ -266145,23 +266145,23 @@ "year": 1780, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 10.321157733382947, - "c2": 25.70932596964917, - "c3": -21.47066394245837, - "c4": 5.088823665323986, - "c5": -13.827924607059161, - "c6": -12.156178665984182, - "c7": -5.39551806092086 + "points": { + "c1": 8.060894789056732, + "c2": -12.172293988125013, + "c3": 18.224310850322574, + "c4": 3.6878447194770274, + "c5": 10.933359976328134, + "c6": -15.52463547557414, + "c7": -20.44716862194932 }, - "vertexSeeds": { - "c1": 3.8696384042719467, - "c2": 3.8193364793211013, - "c3": 3.9252207070163685, - "c4": 3.7875504470520958, - "c5": 3.9293376221121434, - "c6": 3.9946224585728154, - "c7": 4.048727042940915 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [58, 15, 49] }, @@ -266172,23 +266172,23 @@ "year": 1780, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -19.767907511296237, - "c2": -1.1364466362208745, - "c3": 19.279659069279546, - "c4": -7.437671447399225, - "c5": -16.103473900274338, - "c6": 7.194957467884272, - "c7": -1.1899234837994044 + "points": { + "c1": 16.44842443806774, + "c2": 14.911549788591785, + "c3": 26.514963187240767, + "c4": -6.8232673397144055, + "c5": 2.8205475814586123, + "c6": -20.607140520685924, + "c7": 19.85640336011022 }, - "vertexSeeds": { - "c1": 6.741977335461669, - "c2": 6.861868650336178, - "c3": 6.9557863783571845, - "c4": 6.844596327224174, - "c5": 6.6985220782195105, - "c6": 6.735803984831043, - "c7": 6.555786056155857 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -266199,23 +266199,23 @@ "year": 1781, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -24.533376196097542, - "c2": 7.812639980216254, - "c3": -32.70109459704242, - "c4": 11.437838666841024, - "c5": -24.84975052889446, - "c6": -10.485258704794674, - "c7": -21.352308946469908 + "points": { + "c1": -30.73894840455844, + "c2": -31.017828449827718, + "c3": -12.235340210227545, + "c4": 25.663224166463174, + "c5": 7.384509070192344, + "c6": 8.758998407822638, + "c7": -19.266517237400492 }, - "vertexSeeds": { - "c1": 4.2444063961274034, - "c2": 4.178867552782078, - "c3": 4.198429312243332, - "c4": 4.190223918870212, - "c5": 4.242726703932442, - "c6": 4.192402432037254, - "c7": 4.235570474112527 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848799, + "c3": 5.085529357374025, + "c4": 4.068423485899199, + "c5": 3.0513176144244247, + "c6": 2.0342117429495996, + "c7": 1.0171058714747745 }, "rgb": [238, 201, 159] }, @@ -266226,23 +266226,23 @@ "year": 1781, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 24.170318488784154, - "c2": -44.34484613324426, - "c3": -36.179637134543725, - "c4": -46.895228311864734, - "c5": 0.41685772543437594, - "c6": 13.907714518372046, - "c7": 2.798195581787027 + "points": { + "c1": -19.621956805453472, + "c2": 3.2351655024129684, + "c3": 6.806468732111611, + "c4": -25.726299116829747, + "c5": 4.966588541270056, + "c6": -43.78808506279717, + "c7": -39.836243696227605 }, - "vertexSeeds": { - "c1": 5.984046825135468, - "c2": 5.947870749989504, - "c3": 5.757862856228138, - "c4": 5.842500649200327, - "c5": 5.763378373396162, - "c6": 5.845627862731285, - "c7": 6.00138937780295 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [77, 76, 132] }, @@ -266253,23 +266253,23 @@ "year": 1781, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 9.045000943014195, - "c2": 16.761441937838192, - "c3": 12.242625447924361, - "c4": -20.822372048640762, - "c5": -22.327623146783694, - "c6": 7.52586693331876, - "c7": -24.50877467461594 + "points": { + "c1": 19.577224327183316, + "c2": -12.371181358173676, + "c3": 15.99810206684473, + "c4": 4.923396340717616, + "c5": -5.328089215099265, + "c6": -0.1583258533695755, + "c7": 2.233540883282977 }, - "vertexSeeds": { - "c1": 9.071217927131011, - "c2": 8.919801306287985, - "c3": 9.00591615206781, - "c4": 8.516202460005692, - "c5": 8.554186847731591, - "c6": 8.634606551425966, - "c7": 8.619423473288753 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.981969486823848, + "c3": 10.81830790568656, + "c4": 8.654646324549242, + "c5": 6.490984743411924, + "c6": 4.327323162274634, + "c7": 2.163661581137317 }, "rgb": [86, 146, 138] }, @@ -266280,23 +266280,23 @@ "year": 1781, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 9.828119014246557, - "c2": 22.664711642667438, - "c3": -20.634227031685008, - "c4": 21.372406861761608, - "c5": 29.143297157913405, - "c6": 12.831934099054873, - "c7": 28.433127767227784 + "points": { + "c1": -31.231067369326283, + "c2": -27.313357182024163, + "c3": 0.5931293946003535, + "c4": -19.348618508233486, + "c5": -22.89753461212687, + "c6": -32.698874522619874, + "c7": -23.76942696156585 }, - "vertexSeeds": { - "c1": 7.542077313046835, - "c2": 7.403641600315076, - "c3": 7.628525995120211, - "c4": 7.274060246033118, - "c5": 7.27615489283434, - "c6": 7.719025117121237, - "c7": 7.53176725313702 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249662, + "c3": 9.338881183541375, + "c4": 7.471104946833109, + "c5": 5.603328710124821, + "c6": 3.7355524734165546, + "c7": 1.867776236708266 }, "rgb": [238, 201, 159] }, @@ -266307,23 +266307,23 @@ "year": 1781, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -17.464671510654227, - "c2": -20.412246694776456, - "c3": 2.157598473435101, - "c4": -21.85046677348067, - "c5": -22.4673718123168, - "c6": -0.11508163858577092, - "c7": 3.3293512850824953 + "points": { + "c1": 11.796258036302575, + "c2": 15.506323347246159, + "c3": 0.40506531659774936, + "c4": -14.417501942827545, + "c5": -7.803915672874037, + "c6": 23.7875940070372, + "c7": -38.24426439965076 }, - "vertexSeeds": { - "c1": 3.9219100016907067, - "c2": 3.8806054070632388, - "c3": 4.060334245842551, - "c4": 3.8941335560991424, - "c5": 3.931909487693934, - "c6": 3.941645953071062, - "c7": 3.9447734039312756 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -266334,23 +266334,23 @@ "year": 1781, "resistanceReported": false, "duration": 36288000, - "curveSeeds": { - "c1": -10.917147113054426, - "c2": 17.57383955856848, - "c3": 2.8030486322496557, - "c4": -7.88857652914885, - "c5": 19.854494895643413, - "c6": 30.732197793257853, - "c7": -30.4094115792962 + "points": { + "c1": -28.371293341659825, + "c2": 28.630482175319443, + "c3": -34.73609466411345, + "c4": -41.714506859123546, + "c5": -22.89481445193656, + "c6": -48.89142591382904, + "c7": 47.6200705682452 }, - "vertexSeeds": { - "c1": 5.03881001924268, - "c2": 5.2037137360882815, - "c3": 4.889855743960223, - "c4": 5.179467079341432, - "c5": 4.455490766133783, - "c6": 4.901641928855506, - "c7": 4.7233714625615075 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859916, + "c3": 6.241331484049929, + "c4": 4.993065187239942, + "c5": 3.7447988904299603, + "c6": 2.496532593619974, + "c7": 1.248266296809987 }, "rgb": [58, 15, 49] }, @@ -266361,23 +266361,23 @@ "year": 1781, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -5.377920237913571, - "c2": -18.611354099238103, - "c3": 16.69323892921156, - "c4": -29.079860094171266, - "c5": 34.24686702703386, - "c6": -8.943189590646256, - "c7": 19.538997354773507 + "points": { + "c1": 2.1462453675599704, + "c2": -38.045123560424074, + "c3": -10.475586155733673, + "c4": -2.709342660114281, + "c5": 1.1566635968179853, + "c6": -1.4904038937713935, + "c7": 5.379400610362083 }, - "vertexSeeds": { - "c1": 10.316186266173258, - "c2": 10.319206515281257, - "c3": 10.325438583709229, - "c4": 10.322586530880658, - "c5": 10.31462407087072, - "c6": 10.30694750749688, - "c7": 10.333305199290447 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.78502080443786, + "c3": 12.320850670365372, + "c4": 9.856680536291906, + "c5": 7.39251040221942, + "c6": 4.928340268145953, + "c7": 2.4641701340734667 }, "rgb": [238, 201, 159] }, @@ -266388,23 +266388,23 @@ "year": 1781, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -42.38957164665936, - "c2": -9.236932936188097, - "c3": -9.53595763715522, - "c4": -44.63202805685032, - "c5": 38.56506861704398, - "c6": -29.276220780285552, - "c7": -18.20288755274618 + "points": { + "c1": 28.98200944017252, + "c2": 20.835652305090832, + "c3": -6.4016296765649585, + "c4": 13.724714349430414, + "c5": 44.197042081680536, + "c6": -3.907193778046171, + "c7": -12.896725121703632 }, - "vertexSeeds": { - "c1": 3.905248519459907, - "c2": 3.74728688461006, - "c3": 3.867297494067415, - "c4": 3.8551478388016203, - "c5": 3.6322561050190814, - "c6": 3.6229756926200554, - "c7": 3.8170549794613584 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124831, + "c3": 4.669440591770687, + "c4": 3.7355524734165546, + "c5": 2.8016643550624103, + "c6": 1.8677762367082773, + "c7": 0.933888118354133 }, "rgb": [86, 146, 138] }, @@ -266415,23 +266415,23 @@ "year": 1781, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 23.04239121328309, - "c2": -27.515117929391252, - "c3": 8.0111891079178, - "c4": 10.465946859294291, - "c5": 10.864590000620701, - "c6": -9.859855443591591, - "c7": 17.00825413851168 + "points": { + "c1": -25.06819499323499, + "c2": -20.888214301777285, + "c3": -5.263391840592309, + "c4": -15.491817139673845, + "c5": 30.230819059598204, + "c6": -2.1419885344828913, + "c7": -17.226731744410536 }, - "vertexSeeds": { - "c1": 7.749215939912082, - "c2": 7.849395497383878, - "c3": 7.767151696842847, - "c4": 7.671493235848414, - "c5": 7.867079080382646, - "c6": 7.464896191906592, - "c7": 8.0570088466095 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893202, + "c3": 9.70873786407767, + "c4": 7.766990291262135, + "c5": 5.825242718446601, + "c6": 3.8834951456310676, + "c7": 1.9417475728155338 }, "rgb": [222, 0, 59] }, @@ -266442,23 +266442,23 @@ "year": 1781, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 5.483308491029707, - "c2": -17.188842392561803, - "c3": -16.351862295827402, - "c4": -21.91818834699509, - "c5": 20.44811041026684, - "c6": -7.9182646103706205, - "c7": -2.4311868243621966 + "points": { + "c1": 13.154003711120918, + "c2": -17.987234161607457, + "c3": 7.95114460465928, + "c4": 2.7560845226319977, + "c5": 16.829713504264898, + "c6": -3.697963210566037, + "c7": 16.504924105506685 }, - "vertexSeeds": { - "c1": 3.6499144209019265, - "c2": 3.7254763898720613, - "c3": 3.6931421837559526, - "c4": 3.8450997152989754, - "c5": 3.6677460148696834, - "c6": 3.7517277301653698, - "c7": 3.7272465184190824 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703652, + "c4": 3.6985668053629213, + "c5": 2.773925104022191, + "c6": 1.8492834026814606, + "c7": 0.9246417013407303 }, "rgb": [238, 201, 159] }, @@ -266469,23 +266469,23 @@ "year": 1781, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 26.625525507216494, - "c2": 14.071324670692121, - "c3": -29.73659499452507, - "c4": -7.396117235220842, - "c5": 3.5956357852361265, - "c6": -4.932979065116037, - "c7": -18.192530407399197 + "points": { + "c1": -8.123119169249883, + "c2": 25.96106019490952, + "c3": 40.35701670414656, + "c4": 10.352925294702914, + "c5": 12.764145657856858, + "c6": 26.169280494234002, + "c7": -26.724362749034846 }, - "vertexSeeds": { - "c1": 6.522146614620472, - "c2": 6.5975291086836325, - "c3": 6.640213855876007, - "c4": 6.580341934589474, - "c5": 6.473021206675231, - "c6": 6.60424789267646, - "c7": 6.797178478051088 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -266496,23 +266496,23 @@ "year": 1781, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -32.19724477887357, - "c2": 14.924807051025525, - "c3": 16.27713097486552, - "c4": 3.2990480326015117, - "c5": 14.571180537703349, - "c6": 23.948427086710332, - "c7": -20.723299623897006 + "points": { + "c1": 18.07093080941, + "c2": 2.58033098824059, + "c3": -15.943503535564528, + "c4": 13.300689426386626, + "c5": -4.192096292437554, + "c6": -29.183555660830535, + "c7": -26.004023816228866 }, - "vertexSeeds": { - "c1": 8.502088525564051, - "c2": 8.41050523250174, - "c3": 8.384285324112282, - "c4": 8.367618241929598, - "c5": 8.660419572949118, - "c6": 9.065772845933367, - "c7": 8.514473050934724 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864084, + "c3": 10.841423948220077, + "c4": 8.67313915857605, + "c5": 6.504854368932042, + "c6": 4.336569579288036, + "c7": 2.1682847896440065 }, "rgb": [238, 201, 159] }, @@ -266523,23 +266523,23 @@ "year": 1781, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -23.09789159803376, - "c2": 8.444940247848354, - "c3": 12.340820607026732, - "c4": -22.02621999236669, - "c5": -20.7990392366916, - "c6": 0.7045880981948862, - "c7": -2.0988356544772557 + "points": { + "c1": -22.95618655082798, + "c2": 4.8329155997632505, + "c3": 23.012284892655142, + "c4": 12.780339031110923, + "c5": 30.703073558403435, + "c6": 14.953709711674744, + "c7": 18.03306919984688 }, - "vertexSeeds": { - "c1": 3.8043580334213685, - "c2": 3.9150147666364616, - "c3": 3.83194401737209, - "c4": 3.8689354242355507, - "c5": 3.8198306111740887, - "c6": 3.787233056243097, - "c7": 3.8843342279587882 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [58, 15, 49] }, @@ -266550,23 +266550,23 @@ "year": 1781, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 25.092879665705375, - "c2": 18.854390916352713, - "c3": -10.70143471620992, - "c4": 11.9957883707347, - "c5": -7.038170517893349, - "c6": 1.4456289018784858, - "c7": 7.441076295755408 + "points": { + "c1": -12.112590413368672, + "c2": 32.417840446772445, + "c3": -12.516260019514139, + "c4": 10.482906221117226, + "c5": 12.00376564789704, + "c6": 19.694657689177518, + "c7": -13.657606715776804 }, - "vertexSeeds": { - "c1": 6.183966110931443, - "c2": 5.943520719131133, - "c3": 5.862883676666912, - "c4": 5.980699195111202, - "c5": 5.969983623459217, - "c6": 6.123839559470166, - "c7": 5.888975142523913 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.87656033287101, + "c3": 7.397133610725835, + "c4": 5.917706888580663, + "c5": 4.43828016643552, + "c6": 2.9588534442903467, + "c7": 1.4794267221451733 }, "rgb": [58, 15, 49] }, @@ -266577,23 +266577,23 @@ "year": 1781, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -21.001811821691934, - "c2": -18.19916132877932, - "c3": 10.704801760639263, - "c4": 27.587712936358024, - "c5": 23.926384296965104, - "c6": 3.8160529912675045, - "c7": -28.305947006752927 + "points": { + "c1": 3.52322931476008, + "c2": 2.7731982978133303, + "c3": -14.243950691811364, + "c4": 21.67013943617536, + "c5": -0.5439485836310034, + "c6": 3.2894090502165056, + "c7": 27.90374512497354 }, - "vertexSeeds": { - "c1": 4.477906847135762, - "c2": 4.643510181014789, - "c3": 4.679058135423255, - "c4": 4.510369848057686, - "c5": 4.663032801252876, - "c6": 4.6866070376341105, - "c7": 4.585010541877673 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [238, 201, 159] }, @@ -266604,23 +266604,23 @@ "year": 1781, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -24.277459661334174, - "c2": -32.64546725446892, - "c3": 9.448030062296851, - "c4": 31.621575155736025, - "c5": 6.268685038926556, - "c6": 11.038362687552166, - "c7": -32.70262374899175 + "points": { + "c1": -34.10072830316661, + "c2": -30.557091370387138, + "c3": -10.235615152155876, + "c4": 20.234006987286584, + "c5": -31.976751803370924, + "c6": 33.626684604078974, + "c7": 25.901096585432214 }, - "vertexSeeds": { - "c1": 6.6820966550274585, - "c2": 6.214585722405627, - "c3": 6.368023497180717, - "c4": 6.3461822612572405, - "c5": 6.66786891545103, - "c6": 6.624578960874822, - "c7": 6.339598646165593 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037438, + "c3": 8.067498844197877, + "c4": 6.4539990753582925, + "c5": 4.840499306518731, + "c6": 3.2269995376791463, + "c7": 1.613499768839562 }, "rgb": [58, 15, 49] }, @@ -266631,23 +266631,23 @@ "year": 1781, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -6.7373076515987975, - "c2": -23.192157199848847, - "c3": -24.56077192554352, - "c4": -12.581072266815223, - "c5": 32.13098889158391, - "c6": 3.578172130914325, - "c7": 25.89939176369571 + "points": { + "c1": -11.736464832733915, + "c2": -23.204069802949483, + "c3": -31.671238692889126, + "c4": -3.6891518263882084, + "c5": 32.745999603703964, + "c6": 12.871600441099616, + "c7": -10.787610927183898 }, - "vertexSeeds": { - "c1": 8.692269323650846, - "c2": 8.719023052881786, - "c3": 8.578724893807777, - "c4": 8.654832474115686, - "c5": 8.085074056475918, - "c6": 8.08167758301967, - "c7": 8.238870746698195 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260743, + "c3": 10.494683310217278, + "c4": 8.395746648173835, + "c5": 6.296809986130372, + "c6": 4.197873324086907, + "c7": 2.0989366620434424 }, "rgb": [58, 15, 49] }, @@ -266658,23 +266658,23 @@ "year": 1781, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 26.64024035955822, - "c2": 33.057637092725514, - "c3": -14.817753958919688, - "c4": 23.838754981963262, - "c5": 28.513300356913064, - "c6": -0.9357688593056821, - "c7": 18.566526033023706 + "points": { + "c1": -0.7911952913832323, + "c2": -7.0723219645808335, + "c3": -32.06944363814284, + "c4": 6.008873981332954, + "c5": -2.992991079593736, + "c6": 2.9223393126462938, + "c7": -25.433139930302822 }, - "vertexSeeds": { - "c1": 7.459165180881359, - "c2": 7.901374973704059, - "c3": 7.413589968280694, - "c4": 7.467997710927809, - "c5": 7.525642461917892, - "c6": 7.483123812262725, - "c7": 7.327498239965219 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571429, + "c3": 9.523809523809524, + "c4": 7.619047619047619, + "c5": 5.714285714285714, + "c6": 3.8095238095238093, + "c7": 1.9047619047619047 }, "rgb": [222, 0, 59] }, @@ -266685,23 +266685,23 @@ "year": 1781, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 21.30655220833905, - "c2": 28.701016555021013, - "c3": -16.967851867037314, - "c4": 16.083873216980642, - "c5": -27.40715614734671, - "c6": 25.232770428260885, - "c7": 15.240515916954038 + "points": { + "c1": -8.503145211866087, + "c2": 19.0755819938798, + "c3": -8.203370176952664, + "c4": 17.509795005774507, + "c5": -17.033115286008588, + "c6": -15.724431580310245, + "c7": -13.099308299993403 }, - "vertexSeeds": { - "c1": 7.318066137808172, - "c2": 6.79199370155461, - "c3": 7.051327244233194, - "c4": 7.309651599473503, - "c5": 7.058557261009576, - "c6": 7.383875772264951, - "c7": 7.384733198640246 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364779, + "c3": 8.830328247803967, + "c4": 7.064262598243178, + "c5": 5.298196948682389, + "c6": 3.5321312991216, + "c7": 1.7660656495607892 }, "rgb": [222, 0, 59] }, @@ -266712,23 +266712,23 @@ "year": 1782, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": 38.78779652510545, - "c2": -12.894987059119003, - "c3": -35.67161895979362, - "c4": -29.958597294708618, - "c5": -24.348935160136897, - "c6": 1.8758429665657559, - "c7": 39.620118074125756 + "points": { + "c1": -21.402194083056237, + "c2": 51.094941811975474, + "c3": -12.949165705288046, + "c4": -46.875657789558815, + "c5": -4.653506831312477, + "c6": -50.192322023927645, + "c7": 12.143321789848713 }, - "vertexSeeds": { - "c1": 3.9306241365411263, - "c2": 4.165089164836277, - "c3": 4.192714445267229, - "c4": 3.9722192439126935, - "c5": 3.9695170962481963, - "c6": 4.011689364934155, - "c7": 4.1213508071610665 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [238, 201, 159] }, @@ -266739,23 +266739,23 @@ "year": 1782, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -45.818121915895986, - "c2": 11.149004239902283, - "c3": -12.442253651000733, - "c4": 10.58714668034144, - "c5": 16.67113898683708, - "c6": -13.355518120282753, - "c7": -33.46390663633716 + "points": { + "c1": -26.341503480429733, + "c2": -24.176845071316976, + "c3": -8.137350793131873, + "c4": -13.117064863359417, + "c5": 11.09868068710356, + "c6": -42.40250264451058, + "c7": -37.900813914182606 }, - "vertexSeeds": { - "c1": 6.051051032868867, - "c2": 6.229044042884359, - "c3": 6.271810579599043, - "c4": 5.927539585587503, - "c5": 6.109596078215582, - "c6": 6.02943206463908, - "c7": 6.1600910204364165 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152576, + "c3": 7.558945908460468, + "c4": 6.0471567267683835, + "c5": 4.5353675450762765, + "c6": 3.0235783633841917, + "c7": 1.5117891816921072 }, "rgb": [238, 201, 159] }, @@ -266766,23 +266766,23 @@ "year": 1781, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 4.690432740873817, - "c2": 21.507284239759457, - "c3": 24.332234111000318, - "c4": 15.891255269874222, - "c5": -7.8710063818172955, - "c6": -24.924628918640398, - "c7": 27.498991036442206 + "points": { + "c1": -15.841113876294187, + "c2": -19.988722894357963, + "c3": -19.211067422318045, + "c4": 13.17758337830486, + "c5": -28.117323476798187, + "c6": 4.837812020991329, + "c7": 6.684059407311686 }, - "vertexSeeds": { - "c1": 4.031765248324114, - "c2": 3.926929706561806, - "c3": 4.208466513179426, - "c4": 4.072303015106381, - "c5": 3.9076817500512857, - "c6": 4.152657220527047, - "c7": 3.8768268267636623 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [238, 201, 159] }, @@ -266793,23 +266793,23 @@ "year": 1781, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 1.4859237802859369, - "c2": 32.54595671778041, - "c3": -34.02292265411702, - "c4": -10.784513454482031, - "c5": -10.724122083819196, - "c6": -6.62869539299027, - "c7": 26.304903263632553 + "points": { + "c1": 29.10450415305364, + "c2": 29.174970905440375, + "c3": 5.434421496809804, + "c4": 10.384215568141578, + "c5": 23.395253418205904, + "c6": -28.883893533694124, + "c7": -5.414362837507298 }, - "vertexSeeds": { - "c1": 10.56231669673194, - "c2": 10.411558335986758, - "c3": 10.634158348397888, - "c4": 10.579525015580117, - "c5": 10.69358564159232, - "c6": 10.36177655009924, - "c7": 10.839540595418313 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.08876560332872, + "c3": 13.407304669440574, + "c4": 10.725843735552466, + "c5": 8.04438280166436, + "c6": 5.362921867776255, + "c7": 2.6814609338881064 }, "rgb": [77, 76, 132] }, @@ -266820,23 +266820,23 @@ "year": 1781, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 17.297903396961395, - "c2": -8.176607840562724, - "c3": 25.63803814416196, - "c4": -1.5804532976905818, - "c5": -14.261949354172412, - "c6": -15.267362123365075, - "c7": -11.814522894751779 + "points": { + "c1": 27.95317579221181, + "c2": -14.14544232297143, + "c3": 33.585808605385786, + "c4": -18.998671239247788, + "c5": -25.164432084672118, + "c6": -17.49316877929753, + "c7": 7.801487956822307 }, - "vertexSeeds": { - "c1": 3.97068719659865, - "c2": 4.087266734527747, - "c3": 3.9244174764125708, - "c4": 3.837578101006263, - "c5": 4.023523321975404, - "c6": 3.9571078807896494, - "c7": 3.9423959339784678 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [58, 15, 49] }, @@ -266847,23 +266847,23 @@ "year": 1781, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -24.990176954653485, - "c2": 16.755890768796284, - "c3": 9.465087122579234, - "c4": -38.15560252013366, - "c5": -44.781451849725464, - "c6": -3.6939865779801906, - "c7": -42.70403683606152 + "points": { + "c1": 1.4163929969541584, + "c2": -44.09814706270831, + "c3": 22.229831304038832, + "c4": -18.480570688677656, + "c5": -11.934282867404775, + "c6": 37.04662534665068, + "c7": 39.326593354699305 }, - "vertexSeeds": { - "c1": 9.449093295101086, - "c2": 9.451381729940255, - "c3": 9.389178444315164, - "c4": 9.473811620751341, - "c5": 9.234551055567579, - "c6": 8.835386563805065, - "c7": 9.037009001392544 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.61997226074897, + "c3": 11.349976883957464, + "c4": 9.07998150716598, + "c5": 6.809986130374473, + "c6": 4.53999075358299, + "c7": 2.2699953767915058 }, "rgb": [86, 146, 138] }, @@ -266874,23 +266874,23 @@ "year": 1781, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 4.969540339177804, - "c2": 17.079751993193668, - "c3": -16.21719400998559, - "c4": 11.217917519518096, - "c5": -15.454620772746999, - "c6": -22.1484175748337, - "c7": -32.5817292440197 + "points": { + "c1": -31.932110527094004, + "c2": 28.402912731294435, + "c3": -27.258506948384326, + "c4": 28.20394417158964, + "c5": -18.5333794109751, + "c6": -4.987257507280653, + "c7": -0.4657838365099636 }, - "vertexSeeds": { - "c1": 5.462970190782547, - "c2": 5.452919701090142, - "c3": 5.720369429545218, - "c4": 5.857530862558168, - "c5": 5.926015172936991, - "c6": 5.589417875742989, - "c7": 5.859049648670402 + "offsets": { + "c1": 10, + "c2": 8.571428571428578, + "c3": 7.142857142857141, + "c4": 5.71428571428572, + "c5": 4.28571428571428, + "c6": 2.85714285714286, + "c7": 1.4285714285714388 }, "rgb": [77, 76, 132] }, @@ -266901,23 +266901,23 @@ "year": 1781, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -19.973935684460695, - "c2": 17.52012433081427, - "c3": 13.676451768121439, - "c4": -20.866717365236866, - "c5": 31.628538561581024, - "c6": -32.59000455899212, - "c7": 30.391295375257016 + "points": { + "c1": -2.3772123994953986, + "c2": -27.297084840793463, + "c3": -19.35044800927442, + "c4": -16.66860869998974, + "c5": 28.34249361209349, + "c6": -35.692853626955326, + "c7": -36.90381386376741 }, - "vertexSeeds": { - "c1": 7.202902704242319, - "c2": 7.016043337254241, - "c3": 7.136385741323852, - "c4": 6.866099416000255, - "c5": 6.965066079838384, - "c6": 7.124850136377642, - "c7": 7.2136246354808655 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203882, + "c3": 8.737864077669903, + "c4": 6.990291262135922, + "c5": 5.242718446601941, + "c6": 3.495145631067961, + "c7": 1.7475728155339805 }, "rgb": [58, 15, 49] }, @@ -266928,23 +266928,23 @@ "year": 1781, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -7.669982320190641, - "c2": 20.72290875351363, - "c3": -45.527232439661006, - "c4": -25.329186979295784, - "c5": -10.535682676155417, - "c6": -17.975800486548028, - "c7": 32.412798541252606 + "points": { + "c1": -10.207867771539703, + "c2": -27.51171531769315, + "c3": 6.895741013947024, + "c4": 9.072203344968493, + "c5": 38.8466542084961, + "c6": 38.55127711534464, + "c7": -11.059869277975153 }, - "vertexSeeds": { - "c1": 6.23474162731749, - "c2": 6.7894271982429855, - "c3": 6.760919366477558, - "c4": 6.264993660258885, - "c5": 6.444195160459951, - "c6": 6.844522975935263, - "c7": 6.8762370367139605 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680998, + "c3": 8.437355524734166, + "c4": 6.749884419787332, + "c5": 5.062413314840499, + "c6": 3.374942209893666, + "c7": 1.687471104946833 }, "rgb": [77, 76, 132] }, @@ -266955,23 +266955,23 @@ "year": 1781, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": 7.689240160792863, - "c2": -30.57665055862278, - "c3": 11.351762763664887, - "c4": 38.641835885006905, - "c5": -38.80024282982115, - "c6": -10.84876744992583, - "c7": -4.387484648978685 + "points": { + "c1": -37.083141835861895, + "c2": 31.252532079982593, + "c3": 17.466166656988626, + "c4": -44.3055900468611, + "c5": 2.7180245096592657, + "c6": 47.003180627746865, + "c7": -13.602889084551776 }, - "vertexSeeds": { - "c1": 7.925565862464385, - "c2": 7.768715599946504, - "c3": 8.044394689892945, - "c4": 7.7254962934902, - "c5": 7.95723001034484, - "c6": 8.009475543899194, - "c7": 7.940168460790616 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134525, + "c3": 9.847434119278782, + "c4": 7.8779472954230165, + "c5": 5.908460471567274, + "c6": 3.9389736477115083, + "c7": 1.9694868238557652 }, "rgb": [86, 146, 138] }, @@ -266982,23 +266982,23 @@ "year": 1782, "resistanceReported": false, "duration": 43718400, - "curveSeeds": { - "c1": 10.67835699765127, - "c2": 49.33483703479725, - "c3": -4.471233706937063, - "c4": 22.14061329648208, - "c5": -7.504111709518348, - "c6": -6.2049754379959765, - "c7": -54.57098688378328 + "points": { + "c1": 19.013173896762815, + "c2": 52.04174976592595, + "c3": -30.227492329826568, + "c4": 22.95346242326969, + "c5": 1.5978245651563228, + "c6": -16.278569431738823, + "c7": 51.234143517718984 }, - "vertexSeeds": { - "c1": 3.8264240462055357, - "c2": 3.944672378588407, - "c3": 3.828416726710887, - "c4": 3.9221374508081883, - "c5": 3.8306436383794202, - "c6": 4.114903013038701, - "c7": 4.112746400218187 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [222, 0, 59] }, @@ -267009,23 +267009,23 @@ "year": 1781, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 28.228398920274543, - "c2": 1.292093792340566, - "c3": 19.429168482598264, - "c4": 12.464696066954147, - "c5": 30.497370274415687, - "c6": 14.385439225454569, - "c7": -27.30989933056116 + "points": { + "c1": -32.52148030176952, + "c2": -35.485355347103265, + "c3": 17.33663247162736, + "c4": 21.757681375311265, + "c5": 20.662028588339, + "c6": 41.51527293215581, + "c7": 23.855997953653826 }, - "vertexSeeds": { - "c1": 3.775101794769188, - "c2": 3.8069225757611647, - "c3": 4.047928914703744, - "c4": 4.00550502938402, - "c5": 3.819271716595794, - "c6": 3.913925814464658, - "c7": 3.968865111660627 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -267036,23 +267036,23 @@ "year": 1782, "resistanceReported": false, "duration": 36028800, - "curveSeeds": { - "c1": 18.954280276378206, - "c2": -17.989081505849573, - "c3": -1.6467747678377052, - "c4": -2.5258180023157806, - "c5": 0.6750450381155417, - "c6": -28.449153450175306, - "c7": 38.932416434591225 + "points": { + "c1": -37.28526669869379, + "c2": -44.20757965044572, + "c3": -15.753471791138239, + "c4": -16.920676279137652, + "c5": -32.19947497111397, + "c6": 9.399020705788224, + "c7": 8.244937397120275 }, - "vertexSeeds": { - "c1": 5.436996739251069, - "c2": 5.808392710259502, - "c3": 5.419926995249412, - "c4": 5.805486856436188, - "c5": 5.584115261320777, - "c6": 5.603658038560247, - "c7": 5.606948157607356 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [222, 0, 59] }, @@ -267063,23 +267063,23 @@ "year": 1781, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -31.127185613820913, - "c2": -18.20617391790057, - "c3": -32.57426470367369, - "c4": 16.030525774600363, - "c5": -0.45828829654284675, - "c6": -25.253543582940374, - "c7": -21.98095450368849 + "points": { + "c1": -10.027050862695312, + "c2": 28.365118503798953, + "c3": -12.302237838431175, + "c4": -25.08704582900193, + "c5": 5.1616464408638905, + "c6": 20.912614948277607, + "c7": -34.5794723223359 }, - "vertexSeeds": { - "c1": 5.01625868475887, - "c2": 4.948861125342401, - "c3": 5.3414205797447405, - "c4": 4.867697690896348, - "c5": 5.121391740525871, - "c6": 5.281620655149507, - "c7": 5.0093043958801715 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101246, + "c3": 6.380027739251034, + "c4": 5.104022191400843, + "c5": 3.828016643550632, + "c6": 2.5520110957004216, + "c7": 1.2760055478502108 }, "rgb": [222, 0, 59] }, @@ -267090,23 +267090,23 @@ "year": 1781, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -14.266474886325241, - "c2": -0.5999977647621364, - "c3": -14.015486869488173, - "c4": 10.433905498693306, - "c5": 1.0375879682267488, - "c6": 14.317097676881914, - "c7": -11.287532566519364 + "points": { + "c1": -17.51490899255237, + "c2": 14.65224322182064, + "c3": 21.486399442557612, + "c4": 21.696215638821542, + "c5": -3.8508909854535425, + "c6": -9.157734652703068, + "c7": -21.51132496091907 }, - "vertexSeeds": { - "c1": 3.7329140703489023, - "c2": 3.9169928991557046, - "c3": 3.773514759076234, - "c4": 3.921666582634016, - "c5": 3.8993452084054927, - "c6": 3.973585114187739, - "c7": 3.989308498090561 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466065, + "c3": 4.854368932038834, + "c4": 3.883495145631071, + "c5": 2.9126213592232975, + "c6": 1.9417475728155356, + "c7": 0.970873786407762 }, "rgb": [86, 146, 138] }, @@ -267117,23 +267117,23 @@ "year": 1781, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 20.342488175431775, - "c2": -21.619117029987464, - "c3": -17.924174351171928, - "c4": 14.15037936042561, - "c5": -6.596849580642264, - "c6": 7.620102099728875, - "c7": -23.445956798648844 + "points": { + "c1": 4.895482218220629, + "c2": -20.491250934588958, + "c3": 25.32106320837282, + "c4": 0.6965988353014154, + "c5": 2.213532455941575, + "c6": -21.23341873186909, + "c7": -4.228050981698821 }, - "vertexSeeds": { - "c1": 3.6469813178643258, - "c2": 3.4896441896414725, - "c3": 3.4631703981470716, - "c4": 3.4990504230179504, - "c5": 3.367555690715632, - "c6": 3.42976845473018, - "c7": 3.393894223528356 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642167, + "c3": 4.392048081368465, + "c4": 3.5136384650947745, + "c5": 2.6352288488210833, + "c6": 1.7568192325473817, + "c7": 0.8784096162736909 }, "rgb": [238, 201, 159] }, @@ -267144,23 +267144,23 @@ "year": 1782, "resistanceReported": false, "duration": 37843200, - "curveSeeds": { - "c1": -7.995602057690689, - "c2": 33.609642017009925, - "c3": -40.98000908529285, - "c4": 21.77688785147115, - "c5": -49.128981381746264, - "c6": -29.936642011628198, - "c7": 44.932036399923525 + "points": { + "c1": 33.26038146908436, + "c2": -18.206149018549496, + "c3": -20.192563850427476, + "c4": -16.82417667620411, + "c5": 0.8411472441232064, + "c6": -15.482756553881288, + "c7": -53.0856983188705 }, - "vertexSeeds": { - "c1": 11.693076828694823, - "c2": 11.150890553088768, - "c3": 11.343111908228767, - "c4": 11.122506335261841, - "c5": 11.77036222878672, - "c6": 11.790369819544388, - "c7": 11.064150200972996 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.198335644937583, + "c3": 14.33194637078131, + "c4": 11.465557096625039, + "c5": 8.599167822468768, + "c6": 5.732778548312542, + "c7": 2.866389274156271 }, "rgb": [238, 201, 159] }, @@ -267171,23 +267171,23 @@ "year": 1782, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 25.538894267588994, - "c2": -17.364303949264055, - "c3": -21.750310701184436, - "c4": 9.912698079017737, - "c5": 32.643376400276416, - "c6": 21.214775113877828, - "c7": 11.340587726111949 + "points": { + "c1": 20.41829719655241, + "c2": -6.413030661747577, + "c3": 41.90255177275464, + "c4": -13.053495374526186, + "c5": -19.09106271440405, + "c6": -37.84234595175532, + "c7": -28.783158466553257 }, - "vertexSeeds": { - "c1": 1.7662488081439154, - "c2": 1.737062811434315, - "c3": 1.7383612845961995, - "c4": 1.7571535343189828, - "c5": 1.7612344983391053, - "c6": 1.7184875545760112, - "c7": 1.7219594927715642 + "offsets": { + "c1": 2.9773462783171523, + "c2": 2.552011095700414, + "c3": 2.1266759130836763, + "c4": 1.7013407304669381, + "c5": 1.2760055478502141, + "c6": 0.8506703652334762, + "c7": 0.4253351826167381 }, "rgb": [86, 146, 138] }, @@ -267198,23 +267198,23 @@ "year": 1781, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 3.2554923845044144, - "c2": -10.380854588740235, - "c3": 18.816411988509486, - "c4": 29.18384669279442, - "c5": 14.320470513835978, - "c6": 20.94162635226641, - "c7": 27.029875127803066 + "points": { + "c1": 38.87255168914828, + "c2": 34.74871842006965, + "c3": -29.11050721328042, + "c4": 8.130073434944379, + "c5": -9.808173302407397, + "c6": 41.050827331704795, + "c7": -17.936873411204598 }, - "vertexSeeds": { - "c1": 6.566537199004631, - "c2": 6.558207678020227, - "c3": 6.6031020331724095, - "c4": 6.557799199072482, - "c5": 6.566757586731319, - "c6": 6.573901375974654, - "c7": 6.603329571148126 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715613, + "c3": 7.882570503929817, + "c4": 6.306056403143812, + "c5": 4.729542302357807, + "c6": 3.1530282015718014, + "c7": 1.576514100786005 }, "rgb": [238, 201, 159] }, @@ -267225,23 +267225,23 @@ "year": 1781, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 22.983749873218855, - "c2": -23.70953087459828, - "c3": -13.244835102664775, - "c4": -0.8494556664425232, - "c5": -13.955656783932008, - "c6": 16.18262037324329, - "c7": 15.368595297350375 + "points": { + "c1": 8.281662304770173, + "c2": 12.685224242104312, + "c3": 19.85994666910522, + "c4": -11.095905263535276, + "c5": 13.592043332519921, + "c6": 22.41246953767358, + "c7": -20.692414735064038 }, - "vertexSeeds": { - "c1": 2.389243469925335, - "c2": 2.3201509138778422, - "c3": 2.2349613119688048, - "c4": 2.3366726876295614, - "c5": 2.2520808547730664, - "c6": 2.265525530182381, - "c7": 2.325251562686454 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.439667128987517, + "c3": 2.866389274156263, + "c4": 2.2931114193250095, + "c5": 1.7198335644937557, + "c6": 1.1465557096625076, + "c7": 0.5732778548312538 }, "rgb": [222, 0, 59] }, @@ -267252,23 +267252,23 @@ "year": 1781, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -27.70250059873812, - "c2": 15.060001108267805, - "c3": 35.09299236427188, - "c4": 34.19644956741389, - "c5": 35.16631397294516, - "c6": 15.131336971459014, - "c7": 6.948872232839733 + "points": { + "c1": -29.54343475620125, + "c2": 33.916750375083396, + "c3": -35.867594409019745, + "c4": -40.12077238687699, + "c5": -33.18442832223777, + "c6": -34.0114911438403, + "c7": -31.53887046753411 }, - "vertexSeeds": { - "c1": 7.12879817830575, - "c2": 7.174657913297238, - "c3": 7.141094294753748, - "c4": 7.221835352798707, - "c5": 7.08020796465435, - "c6": 7.751552676932155, - "c7": 7.20436267781732 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407298, + "c4": 7.397133610725835, + "c5": 5.54785020804439, + "c6": 3.698566805362927, + "c7": 1.8492834026814635 }, "rgb": [58, 15, 49] }, @@ -267279,23 +267279,23 @@ "year": 1781, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -6.674449896527541, - "c2": 20.945705823353748, - "c3": -3.2182643251255563, - "c4": -21.79984740174162, - "c5": 5.396943530771672, - "c6": 21.72600407517917, - "c7": -11.276200082387444 + "points": { + "c1": 8.914156307519605, + "c2": -2.3796316968441893, + "c3": -18.00317050376642, + "c4": -1.4644541297380869, + "c5": 6.073638183656421, + "c6": 21.644024425515347, + "c7": 21.165333276725747 }, - "vertexSeeds": { - "c1": 1.3784085308403955, - "c2": 1.3073768205991285, - "c3": 1.324180710393934, - "c4": 1.3473291646166787, - "c5": 1.2722892364958738, - "c6": 1.2687446550348713, - "c7": 1.3025638040641991 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.997226074895976, + "c3": 1.6643550624133172, + "c4": 1.3314840499306524, + "c5": 0.998613037447988, + "c6": 0.6657420249653291, + "c7": 0.33287101248266454 }, "rgb": [58, 15, 49] }, @@ -267306,23 +267306,23 @@ "year": 1781, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 16.44757950332958, - "c2": 28.336768354614822, - "c3": 15.105554622822805, - "c4": -0.4751602817254792, - "c5": 25.63783174286859, - "c6": 12.240458668667312, - "c7": 13.182877002542146 + "points": { + "c1": -4.323955725444186, + "c2": 26.649855438424282, + "c3": 14.359999103370484, + "c4": -27.655214945176468, + "c5": 10.895020418322204, + "c6": 9.446823819795632, + "c7": -28.722195307742002 }, - "vertexSeeds": { - "c1": 5.744061549001417, - "c2": 5.777519263989583, - "c3": 5.788068922805195, - "c4": 5.534868494263463, - "c5": 5.364632775676732, - "c6": 5.342640124640866, - "c7": 5.648051828156649 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267678, + "c3": 7.050392972723077, + "c4": 5.640314378178458, + "c5": 4.230235783633839, + "c6": 2.820157189089238, + "c7": 1.410078594544619 }, "rgb": [222, 0, 59] }, @@ -267333,23 +267333,23 @@ "year": 1781, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 25.352446320190808, - "c2": -31.218696468307254, - "c3": 11.715212638416801, - "c4": -7.056216637006454, - "c5": 23.303402623952955, - "c6": 29.531552766390824, - "c7": 6.244292329632003 + "points": { + "c1": 31.34702108875421, + "c2": -15.342532444535106, + "c3": -3.249038454832217, + "c4": 25.494580635426907, + "c5": -12.9534727949967, + "c6": -17.302015285941955, + "c7": 7.77471254033577 }, - "vertexSeeds": { - "c1": 4.471330714030111, - "c2": 5.296929043038213, - "c3": 4.25959305736234, - "c4": 4.515614115952644, - "c5": 7.913360267437584, - "c6": 7.335264117216225, - "c7": 8.062554513926369 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697642, + "c3": 10.171058714748037, + "c4": 8.136846971798427, + "c5": 6.102635228848821, + "c6": 4.068423485899215, + "c7": 2.0342117429496076 }, "rgb": [58, 15, 49] }, @@ -267360,23 +267360,23 @@ "year": 1781, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": -1.109262965712972, - "c2": -13.456785405216758, - "c3": -3.2324494274342985, - "c4": 17.788712544515207, - "c5": 18.043193989906705, - "c6": 18.543627784577154, - "c7": -12.851466703675044 + "points": { + "c1": -2.8480911720724364, + "c2": 0.6413159811110312, + "c3": -18.69329214830889, + "c4": 9.55645546915057, + "c5": 0.942416405042728, + "c6": -17.035400254225998, + "c7": 15.926940499236245 }, - "vertexSeeds": { - "c1": 0.7406905095788905, - "c2": 0.7696786417665025, - "c3": 0.8068688523708312, - "c4": 0.7465959917713907, - "c5": 0.779156409155473, - "c6": 0.7639739184641801, - "c7": 0.7495907228093055 + "offsets": { + "c1": 1.423948220064725, + "c2": 1.2205270457697646, + "c3": 1.0171058714748042, + "c4": 0.8136846971798417, + "c5": 0.6102635228848813, + "c6": 0.40684234858992085, + "c7": 0.20342117429496043 }, "rgb": [222, 0, 59] }, @@ -267387,23 +267387,23 @@ "year": 1781, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": -19.523143292544916, - "c2": -20.404698561109093, - "c3": 10.58184211848603, - "c4": -5.618248836181307, - "c5": 10.172150836228447, - "c6": 10.8026527158347, - "c7": -20.496825519046574 + "points": { + "c1": 2.219081645335134, + "c2": 7.619928739883594, + "c3": -13.49925580453884, + "c4": 19.0037438538206, + "c5": 7.656078843440845, + "c6": 16.635041439585972, + "c7": -16.01681893937179 }, - "vertexSeeds": { - "c1": 2.0672451047943277, - "c2": 2.275199695168495, - "c3": 2.6315252565571083, - "c4": 2.315984002932629, - "c5": 2.641664842829326, - "c6": 2.0640914546376674, - "c7": 2.20301242826348 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.912621359223301, + "c3": 2.4271844660194177, + "c4": 1.9417475728155333, + "c5": 1.4563106796116512, + "c6": 0.9708737864077667, + "c7": 0.4854368932038821 }, "rgb": [58, 15, 49] }, @@ -267414,23 +267414,23 @@ "year": 1782, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -27.14576673106435, - "c2": 17.429835781719724, - "c3": -20.682876114518617, - "c4": -1.6202769139834743, - "c5": 31.425647871209748, - "c6": -19.955388132106375, - "c7": -23.73076433212346 + "points": { + "c1": -21.885905407202973, + "c2": -34.33502071383744, + "c3": -16.330057340900158, + "c4": 14.809825821550376, + "c5": -13.208845350750725, + "c6": 18.728710444346255, + "c7": -1.946146280829808 }, - "vertexSeeds": { - "c1": 6.894815885471251, - "c2": 8.001120959637053, - "c3": 6.820704546541547, - "c4": 8.100476392328321, - "c5": 7.325816527010852, - "c6": 8.011926120261647, - "c7": 7.318295563054956 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.9001386962552, + "c3": 9.916782246879333, + "c4": 7.933425797503466, + "c5": 5.9500693481276, + "c6": 3.966712898751733, + "c7": 1.9833564493758664 }, "rgb": [77, 76, 132] }, @@ -267441,23 +267441,23 @@ "year": 1781, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 1.3045172181762794, - "c2": -30.494421386015045, - "c3": -23.253415850815387, - "c4": 14.301135845935612, - "c5": -30.086173017486114, - "c6": -11.978245524162428, - "c7": -5.847063616695955 + "points": { + "c1": 10.270766650761203, + "c2": -9.524670579276126, + "c3": -24.369003036473032, + "c4": 31.709485836503944, + "c5": 4.296892167137628, + "c6": -12.485522673833827, + "c7": 16.422799921569407 }, - "vertexSeeds": { - "c1": 1.297321253217865, - "c2": 1.2394142712414578, - "c3": 1.1788832073358058, - "c4": 1.256483677777901, - "c5": 1.2809871953652467, - "c6": 1.1773548476885554, - "c7": 1.258610085581423 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350902, + "c3": 1.5718908922792418, + "c4": 1.2575127138233935, + "c5": 0.9431345353675451, + "c6": 0.6287563569116967, + "c7": 0.31437817845584837 }, "rgb": [222, 0, 59] }, @@ -267468,23 +267468,23 @@ "year": 1781, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -28.349400062478086, - "c2": 32.18687285474941, - "c3": -6.077686940297955, - "c4": -13.387046414776126, - "c5": -18.443612196656595, - "c6": -25.292458100021207, - "c7": -27.803188687130124 + "points": { + "c1": 9.687919092932887, + "c2": 15.780063425696255, + "c3": -1.2895355579604129, + "c4": 1.781096028104038, + "c5": -0.44968783655292555, + "c6": 21.88336415413673, + "c7": 35.372233324043606 }, - "vertexSeeds": { - "c1": 6.397033028317849, - "c2": 6.4796689077850145, - "c3": 6.47337394690854, - "c4": 6.426940687349729, - "c5": 6.471164897332145, - "c6": 6.431663791719199, - "c7": 6.484954191474077 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474385, + "c3": 7.743874248728604, + "c4": 6.195099398982924, + "c5": 4.646324549237142, + "c6": 3.097549699491462, + "c7": 1.548774849745782 }, "rgb": [77, 76, 132] }, @@ -267495,23 +267495,23 @@ "year": 1782, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -34.515059242266304, - "c2": 19.915192463687298, - "c3": -4.089421656478237, - "c4": -31.934983420335872, - "c5": 10.422013816184844, - "c6": -12.511550604110678, - "c7": -24.38371087995186 + "points": { + "c1": -2.321254922521959, + "c2": -24.382706430062782, + "c3": 32.621521938171284, + "c4": 33.62382773278841, + "c5": -22.43642364514787, + "c6": 28.51651466659804, + "c7": -22.601329109490173 }, - "vertexSeeds": { - "c1": 11.586504746339223, - "c2": 11.61043797799016, - "c3": 10.706306991108857, - "c4": 11.121799062548268, - "c5": 11.630774278768248, - "c6": 11.259682159124328, - "c7": 11.185604413244409 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.64355062413316, + "c3": 13.869625520110937, + "c4": 11.095700416088757, + "c5": 8.32177531206658, + "c6": 5.547850208044402, + "c7": 2.7739251040221786 }, "rgb": [58, 15, 49] }, @@ -267522,23 +267522,23 @@ "year": 1782, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -25.54556874652947, - "c2": 27.982187552170842, - "c3": 13.041364660760806, - "c4": -8.703579110680806, - "c5": 21.22606973021574, - "c6": -25.79461095699981, - "c7": -28.50057401449589 + "points": { + "c1": 30.75254353815481, + "c2": 10.632490003600076, + "c3": -19.81002928078658, + "c4": -20.24490375443223, + "c5": -17.599405676334143, + "c6": 8.82210910278365, + "c7": 2.5853107490444103 }, - "vertexSeeds": { - "c1": 9.01347797324955, - "c2": 8.355715523659507, - "c3": 8.321677193033166, - "c4": 8.520012357290577, - "c5": 8.170825217843571, - "c6": 8.29467278661463, - "c7": 9.051894402810584 + "offsets": { + "c1": 15.436893203883495, + "c2": 13.231622746185856, + "c3": 11.026352288488203, + "c4": 8.821081830790567, + "c5": 6.615811373092928, + "c6": 4.41054091539529, + "c7": 2.2052704576976376 }, "rgb": [238, 201, 159] }, @@ -267549,23 +267549,23 @@ "year": 1782, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -13.071762269625289, - "c2": -2.374515263992784, - "c3": -17.056408288813785, - "c4": 9.765945002970334, - "c5": -9.418772069268634, - "c6": -32.86919096227596, - "c7": 0.7812993526763918 + "points": { + "c1": 11.348236316757756, + "c2": 12.127206279269757, + "c3": -24.10948232580884, + "c4": -3.058414135003453, + "c5": 30.96582189017984, + "c6": -1.073889523200073, + "c7": -22.662432181598415 }, - "vertexSeeds": { - "c1": 11.806367387760544, - "c2": 11.575712500828532, - "c3": 11.862094851683807, - "c4": 12.013113744436769, - "c5": 11.556675127620807, - "c6": 11.257288274603631, - "c7": 11.564726925651112 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.198335644937583, + "c3": 14.33194637078131, + "c4": 11.465557096625039, + "c5": 8.599167822468768, + "c6": 5.732778548312542, + "c7": 2.866389274156271 }, "rgb": [222, 0, 59] }, @@ -267576,23 +267576,23 @@ "year": 1781, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 20.948790549642702, - "c2": 10.346317177391953, - "c3": -26.373903879070912, - "c4": 7.104597801337391, - "c5": 8.01142145592604, - "c6": -23.023314171886216, - "c7": -18.344535130829765 + "points": { + "c1": -11.660485473468778, + "c2": -3.55231059733498, + "c3": 0.9835729620941436, + "c4": 18.837944423563236, + "c5": -10.665770454681883, + "c6": 27.309820121227254, + "c7": -20.797188624641635 }, - "vertexSeeds": { - "c1": 12.738042171872877, - "c2": 12.396658653353798, - "c3": 12.999986237957916, - "c4": 12.913308823907764, - "c5": 12.376622100849588, - "c6": 12.844510513139276, - "c7": 12.575525101682901 + "offsets": { + "c1": 21.90938511326861, + "c2": 18.77947295423025, + "c3": 15.649560795191844, + "c4": 12.519648636153486, + "c5": 9.389736477115125, + "c6": 6.259824318076721, + "c7": 3.1299121590383603 }, "rgb": [222, 0, 59] }, @@ -267603,23 +267603,23 @@ "year": 1781, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -1.5710405679486144, - "c2": 5.457791771354557, - "c3": -14.338848422454, - "c4": -9.126198793926616, - "c5": -8.384662162893523, - "c6": -2.208358917997316, - "c7": -11.78024184254439 + "points": { + "c1": -9.608980576988806, + "c2": -14.60860295541526, + "c3": 7.284981560255304, + "c4": 29.20470922483738, + "c5": -10.673365314044759, + "c6": 10.438596283070872, + "c7": 1.8160750774105523 }, - "vertexSeeds": { - "c1": 10.541411821913908, - "c2": 10.383602066367741, - "c3": 10.530084024235059, - "c4": 10.288033190532603, - "c5": 10.310341044797257, - "c6": 11.009740246128834, - "c7": 10.84218079720685 + "offsets": { + "c1": 18.54368932038835, + "c2": 15.894590846047143, + "c3": 13.245492371705982, + "c4": 10.596393897364777, + "c5": 7.947295423023571, + "c6": 5.298196948682411, + "c7": 2.6490984743412054 }, "rgb": [238, 201, 159] }, @@ -267630,23 +267630,23 @@ "year": 1782, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 16.112207828870453, - "c2": -3.451169761279978, - "c3": -12.020602297531447, - "c4": -18.163267950417104, - "c5": -22.97202574145077, - "c6": -11.865863224366176, - "c7": -7.136304855302221 + "points": { + "c1": -37.54626598942923, + "c2": 15.813946388129253, + "c3": 32.60143660252545, + "c4": -30.980347949388403, + "c5": 34.45607856164409, + "c6": -27.17924127604336, + "c7": -2.324257690640124 }, - "vertexSeeds": { - "c1": 10.079633605869757, - "c2": 9.734459328767123, - "c3": 9.765885425676958, - "c4": 9.805609251801524, - "c5": 9.824131720933954, - "c6": 10.057396802913802, - "c7": 9.745665869025707 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.42441054091537, + "c3": 12.020342117429538, + "c4": 9.616273693943612, + "c5": 7.212205270457685, + "c6": 4.808136846971806, + "c7": 2.4040684234858785 }, "rgb": [58, 15, 49] }, @@ -267657,23 +267657,23 @@ "year": 1782, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 6.381435035207765, - "c2": 29.195341038926173, - "c3": 7.969013521025573, - "c4": -11.235918862483498, - "c5": 10.494655421599255, - "c6": -25.614581892383864, - "c7": 22.924915017476827 + "points": { + "c1": -2.125803562270363, + "c2": -23.424832453075783, + "c3": 32.633863148189, + "c4": 27.435762863835492, + "c5": -22.781869729221356, + "c6": -11.230267332672764, + "c7": 29.739797969254106 }, - "vertexSeeds": { - "c1": 4.468828540523775, - "c2": 4.616524423818408, - "c3": 4.336297486342379, - "c4": 4.48745024622854, - "c5": 4.403204987793661, - "c6": 4.440761826359615, - "c7": 4.6063823850437045 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216363, + "c3": 5.8714748035136415, + "c4": 4.697179842810912, + "c5": 3.5228848821081815, + "c6": 2.3485899214054515, + "c7": 1.1742949607027298 }, "rgb": [86, 146, 138] }, @@ -267684,23 +267684,23 @@ "year": 1782, "resistanceReported": true, "duration": 18921600, - "curveSeeds": { - "c1": -15.097726044868148, - "c2": -11.276980728429741, - "c3": -19.244751559595397, - "c4": 5.617413268788837, - "c5": -19.282276457089516, - "c6": 25.04587924544085, - "c7": -12.68384681251537 + "points": { + "c1": -5.1753315713209, + "c2": 8.241030811465578, + "c3": -29.78292107424321, + "c4": 15.599938899497253, + "c5": -29.496722038408585, + "c6": 2.1135646773043675, + "c7": -23.24084358224289 }, - "vertexSeeds": { - "c1": 2.8033226727260074, - "c2": 2.816745800689692, - "c3": 2.79155750067643, - "c4": 2.757639187334883, - "c5": 2.591756368687001, - "c6": 2.5892731287711634, - "c7": 2.7988690205511193 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.3980582524271865, + "c4": 2.718446601941751, + "c5": 2.038834951456307, + "c6": 1.3592233009708714, + "c7": 0.6796116504854357 }, "rgb": [86, 146, 138] }, @@ -267711,23 +267711,23 @@ "year": 1782, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 6.174474111165328, - "c2": -3.881199254423599, - "c3": -8.002053069125584, - "c4": 19.135515040264682, - "c5": 19.12720497150713, - "c6": -1.3460554713929618, - "c7": 0.7404982248842593 + "points": { + "c1": -10.196651832414219, + "c2": 29.6092237053477, + "c3": 29.697523874464853, + "c4": -3.8672876619140766, + "c5": 20.616040389752516, + "c6": -2.664287485354439, + "c7": -13.956109157270063 }, - "vertexSeeds": { - "c1": 3.9553552683548614, - "c2": 3.894641303228354, - "c3": 3.9537365201839174, - "c4": 3.695886745640476, - "c5": 3.7821952072432947, - "c6": 3.6956742622101904, - "c7": 3.9087403075342477 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245494, + "c3": 4.7387887193712475, + "c4": 3.791030975496988, + "c5": 2.843273231622741, + "c6": 1.895515487748494, + "c7": 0.947757743874247 }, "rgb": [86, 146, 138] }, @@ -267738,23 +267738,23 @@ "year": 1782, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 11.638735279636848, - "c2": 29.77339020050006, - "c3": -24.856116398631155, - "c4": -18.530513027163067, - "c5": 13.352463130138219, - "c6": -16.848525014014516, - "c7": -30.638776261791374 + "points": { + "c1": -16.110155812633273, + "c2": -4.454598814462493, + "c3": -14.126345980256506, + "c4": 10.964079609543944, + "c5": -33.55049990490859, + "c6": 13.459923418826762, + "c7": 7.315606622366936 }, - "vertexSeeds": { - "c1": 5.420589148587304, - "c2": 5.5473049693529255, - "c3": 5.549773783939424, - "c4": 5.4527821774108745, - "c5": 5.4695157513180765, - "c6": 5.349562891408994, - "c7": 5.472357774595005 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704577, + "c3": 6.726768377253815, + "c4": 5.381414701803052, + "c5": 4.0360610263522885, + "c6": 2.690707350901526, + "c7": 1.345353675450763 }, "rgb": [238, 201, 159] }, @@ -267765,23 +267765,23 @@ "year": 1782, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -1.4623398424012848, - "c2": 30.837268047597803, - "c3": 25.128559672106405, - "c4": 22.794061329506526, - "c5": 28.36902596684402, - "c6": 32.91466780379605, - "c7": 30.874537606971458 + "points": { + "c1": -3.260999283985356, + "c2": 35.479676745862506, + "c3": -18.09223057320229, + "c4": 31.96644742133266, + "c5": 16.467280537753297, + "c6": -24.44404175642438, + "c7": -19.05560450725212 }, - "vertexSeeds": { - "c1": 7.6688428989999275, - "c2": 7.608212649172569, - "c3": 7.669262621822059, - "c4": 7.592973320744078, - "c5": 7.702650338713319, - "c6": 7.562535255145692, - "c7": 7.656026825574465 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088755, + "c3": 9.246417013407287, + "c4": 7.397133610725817, + "c5": 5.547850208044409, + "c6": 3.6985668053629395, + "c7": 1.8492834026814697 }, "rgb": [238, 201, 159] }, @@ -267792,23 +267792,23 @@ "year": 1781, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 15.252999819885105, - "c2": 13.789974478302426, - "c3": 12.441748207452534, - "c4": 22.2698371634525, - "c5": -6.333515110117968, - "c6": 6.510775362170637, - "c7": -23.273761727830447 + "points": { + "c1": -13.520525539107263, + "c2": -20.474400832523997, + "c3": -24.35580228333235, + "c4": -18.134106890969782, + "c5": 24.42007266933119, + "c6": 5.819905739726472, + "c7": -23.4964883960223 }, - "vertexSeeds": { - "c1": 13.545095212838467, - "c2": 13.764204368478872, - "c3": 14.46954985951837, - "c4": 13.837605167804849, - "c5": 13.514557531309935, - "c6": 14.387312451648706, - "c7": 13.937227274277921 + "offsets": { + "c1": 24.401294498381876, + "c2": 20.91539528432732, + "c3": 17.42949607027277, + "c4": 13.943596856218214, + "c5": 10.45769764216366, + "c6": 6.971798428109107, + "c7": 3.4858992140545535 }, "rgb": [222, 0, 59] }, @@ -267819,23 +267819,23 @@ "year": 1782, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 10.537178722043194, - "c2": -24.40715171935253, - "c3": -4.526303332141204, - "c4": 27.437031867280076, - "c5": 28.104999060089035, - "c6": 22.403639773200624, - "c7": -17.893888961961117 + "points": { + "c1": 26.00757739618939, + "c2": 10.750027998449347, + "c3": -7.684175150952328, + "c4": -21.07194273778351, + "c5": 4.997757748720595, + "c6": -11.755118200481721, + "c7": 18.409834437774855 }, - "vertexSeeds": { - "c1": 10.061580299046733, - "c2": 9.88073842848065, - "c3": 10.26791340717986, - "c4": 10.15408705839737, - "c5": 10.254899471300728, - "c6": 10.026404391082654, - "c7": 10.022721923697766 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961173, + "c3": 12.621359223300983, + "c4": 10.097087378640753, + "c5": 7.572815533980564, + "c6": 5.048543689320376, + "c7": 2.524271844660188 }, "rgb": [77, 76, 132] }, @@ -267846,23 +267846,23 @@ "year": 1782, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 10.625963670365884, - "c2": -12.631093400227172, - "c3": -9.562861211046808, - "c4": 20.368951727270314, - "c5": -21.127663673197155, - "c6": 2.674149480050019, - "c7": 12.956333103165797 + "points": { + "c1": 26.7787512677223, + "c2": -5.960930763206445, + "c3": -5.604131279632178, + "c4": -32.21361778359709, + "c5": 1.6554715331795222, + "c6": 31.847182141692343, + "c7": -26.59460715383978 }, - "vertexSeeds": { - "c1": 8.841311778968748, - "c2": 8.630705932150887, - "c3": 9.257051725482217, - "c4": 8.877709579658749, - "c5": 8.80653060895119, - "c6": 9.286198785758042, - "c7": 8.900443870691682 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547858, + "c3": 11.23439667128987, + "c4": 8.987517337031905, + "c5": 6.740638002773918, + "c6": 4.4937586685159525, + "c7": 2.2468793342579656 }, "rgb": [86, 146, 138] }, @@ -267873,23 +267873,23 @@ "year": 1782, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -5.681114673849049, - "c2": 12.95685359845146, - "c3": -31.08767830218087, - "c4": -11.951264633455583, - "c5": 22.60416764332075, - "c6": -0.0948886593860152, - "c7": -12.297861406966167 + "points": { + "c1": -6.541045192565328, + "c2": 28.628948741471405, + "c3": -2.7614014623109, + "c4": 3.768826171622841, + "c5": 22.50997461108019, + "c6": -8.83470808722685, + "c7": 22.11976278184006 }, - "vertexSeeds": { - "c1": 10.830138697643179, - "c2": 11.438028537533862, - "c3": 11.069296962842705, - "c4": 11.26731887805701, - "c5": 10.950887934486378, - "c6": 11.243837921474377, - "c7": 11.391759519942964 + "offsets": { + "c1": 19.093851132686083, + "c2": 16.366158113730922, + "c3": 13.638465094775764, + "c4": 10.910772075820628, + "c5": 8.183079056865468, + "c6": 5.4553860379103085, + "c7": 2.7276930189551476 }, "rgb": [86, 146, 138] }, @@ -267900,23 +267900,23 @@ "year": 1782, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 16.72559879400614, - "c2": -14.539260966291366, - "c3": -24.42088831806396, - "c4": -29.58319252366431, - "c5": -18.189528283719532, - "c6": -31.409549298064046, - "c7": 19.872164159802864 + "points": { + "c1": -32.48207403673712, + "c2": -27.60475385267645, + "c3": 32.64867004815836, + "c4": 22.010265909871777, + "c5": -18.591872649067984, + "c6": 16.022073164680798, + "c7": 3.342123447759505 }, - "vertexSeeds": { - "c1": 4.1288806482636655, - "c2": 4.049438614085335, - "c3": 4.017805319348474, - "c4": 4.021062329768223, - "c5": 4.041572936371858, - "c6": 4.058687074049411, - "c7": 4.0169363373297315 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.1303744798890465, + "c3": 5.10864539990753, + "c4": 4.0869163199260266, + "c5": 3.0651872399445232, + "c6": 2.043458159963007, + "c7": 1.0217290799815035 }, "rgb": [86, 146, 138] }, @@ -267927,23 +267927,23 @@ "year": 1782, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -6.883371537109252, - "c2": -22.888369324968593, - "c3": -4.528540147117614, - "c4": 20.33215710338613, - "c5": -18.084464875906384, - "c6": -21.37051977649758, - "c7": -1.6437966037016274 + "points": { + "c1": 6.434153758628469, + "c2": 22.027569817611287, + "c3": 26.07208569208811, + "c4": 21.32285787996519, + "c5": 33.55189570528504, + "c6": -8.597596364442538, + "c7": -32.3998764961935 }, - "vertexSeeds": { - "c1": 6.439178849796071, - "c2": 6.5287673571887215, - "c3": 6.639579653705766, - "c4": 6.408044289168901, - "c5": 6.734280859790362, - "c6": 6.617337587357514, - "c7": 6.4451644149280565 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.81969486823856, + "c3": 8.183079056865472, + "c4": 6.546463245492381, + "c5": 4.9098474341192695, + "c6": 3.27323162274618, + "c7": 1.63661581137309 }, "rgb": [238, 201, 159] }, @@ -267954,23 +267954,23 @@ "year": 1782, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 22.353401860316374, - "c2": -6.709700631112838, - "c3": -4.24017245437463, - "c4": 20.98623418773809, - "c5": -17.459331065725372, - "c6": -18.86987896534223, - "c7": 14.270347035952206 + "points": { + "c1": -12.962880025684576, + "c2": -14.231634595707526, + "c3": -10.93211368727296, + "c4": -10.74776414655756, + "c5": -10.465046156552827, + "c6": -30.037273241563714, + "c7": -9.082280193610764 }, - "vertexSeeds": { - "c1": 11.618709093402034, - "c2": 11.620978398573415, - "c3": 11.530425335959487, - "c4": 11.529250704857464, - "c5": 11.533754866822887, - "c6": 11.52338853787723, - "c7": 11.565744926869339 + "offsets": { + "c1": 19.48220064724919, + "c2": 16.699029126213485, + "c3": 13.915857605178028, + "c4": 11.132686084142325, + "c5": 8.349514563106865, + "c6": 5.566343042071162, + "c7": 2.7831715210357038 }, "rgb": [86, 146, 138] }, @@ -267981,23 +267981,23 @@ "year": 1782, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 4.955156426392872, - "c2": 6.694898016216801, - "c3": 14.437656584533688, - "c4": -4.185509344516262, - "c5": 14.77252078959079, - "c6": -13.082009643697702, - "c7": 4.582249247775472 + "points": { + "c1": 27.356756441582245, + "c2": 11.470833122088532, + "c3": 4.399581035119322, + "c4": -24.582287701462736, + "c5": -4.8284751091579565, + "c6": 1.1691948860838188, + "c7": 24.833240022868 }, - "vertexSeeds": { - "c1": 4.557963886462012, - "c2": 4.495138370508238, - "c3": 4.519640993250216, - "c4": 4.5324849553745405, - "c5": 4.5044659103002855, - "c6": 4.512904676991952, - "c7": 4.457526247155131 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653268, + "c3": 5.547850208044379, + "c4": 4.438280166435512, + "c5": 3.3287101248266233, + "c6": 2.219140083217756, + "c7": 1.109570041608867 }, "rgb": [58, 15, 49] }, @@ -268008,23 +268008,23 @@ "year": 1782, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 12.780174991692743, - "c2": 10.805139019239387, - "c3": -1.017617023858108, - "c4": 0.15953927305485038, - "c5": 2.929199873537886, - "c6": 20.853098522820684, - "c7": -4.700315921666121 + "points": { + "c1": -5.030800925980447, + "c2": -3.0236307815917307, + "c3": -3.713265762872627, + "c4": -23.24368801706493, + "c5": -20.848374223503527, + "c6": -24.537626816824133, + "c7": -19.141005453712467 }, - "vertexSeeds": { - "c1": 4.74010696369051, - "c2": 4.904281734482154, - "c3": 4.3037848890915935, - "c4": 4.814798097159265, - "c5": 4.707250465156122, - "c6": 4.661923688399197, - "c7": 5.04417230703492 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578368, + "c3": 6.0795191863153, + "c4": 4.863615349052245, + "c5": 3.647711511789184, + "c6": 2.4318076745261226, + "c7": 1.2159038372630613 }, "rgb": [222, 0, 59] }, @@ -268035,23 +268035,23 @@ "year": 1782, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 1.503599346633628, - "c2": -5.505985349445517, - "c3": -27.27816641630055, - "c4": 37.038663809592364, - "c5": 29.291913914680507, - "c6": 2.4228625339255956, - "c7": -1.4565521532207981 + "points": { + "c1": -6.701013639106193, + "c2": 19.03826455995852, + "c3": -36.71338855833992, + "c4": 21.06755105716035, + "c5": 11.851752051638528, + "c6": -13.675255852804963, + "c7": 16.282232230354595 }, - "vertexSeeds": { - "c1": 3.8515154012929376, - "c2": 3.96876462031718, - "c3": 3.8496170747836387, - "c4": 3.9407735765713428, - "c5": 4.0597462472101995, - "c6": 3.905471766742725, - "c7": 3.8047943033537575 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -268062,23 +268062,23 @@ "year": 1782, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -16.313052231204345, - "c2": -15.068038110730047, - "c3": 25.922739264191797, - "c4": -13.3525277806697, - "c5": -24.92444557248802, - "c6": -6.210570149530447, - "c7": 13.485973145215617 + "points": { + "c1": -19.199915975823128, + "c2": -18.643141193001334, + "c3": -22.378370872538678, + "c4": -22.227831954686682, + "c5": 22.67797905357442, + "c6": 18.273160441813516, + "c7": 24.488105553200192 }, - "vertexSeeds": { - "c1": 6.530316665635723, - "c2": 6.388938516613168, - "c3": 6.855546102296862, - "c4": 6.701576998330279, - "c5": 6.534394253393631, - "c6": 6.929237311236328, - "c7": 6.681356832779188 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -268089,23 +268089,23 @@ "year": 1782, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -1.6315200009477309, - "c2": -9.218892201266833, - "c3": -14.334688997322576, - "c4": 11.155925592944975, - "c5": 29.652632958129153, - "c6": 0.9777018891550995, - "c7": 38.55055225979074 + "points": { + "c1": 4.525296526683739, + "c2": -40.831588661296664, + "c3": 37.08431626516509, + "c4": -29.101226857697988, + "c5": 8.050335274332852, + "c6": -24.437498831088742, + "c7": 21.594154224060723 }, - "vertexSeeds": { - "c1": 13.58160621761658, - "c2": 13.58160621761658, - "c3": 13.58160621761658, - "c4": 13.58160621761658, - "c5": 13.58160621761658, - "c6": 13.58160621761658, - "c7": 13.58160621761658 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -268116,23 +268116,23 @@ "year": 1782, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -4.521143298925324, - "c2": 4.703360743284428, - "c3": -36.0085029950752, - "c4": 20.181867956277188, - "c5": 15.047951909308836, - "c6": -14.925370748084323, - "c7": 34.15905188666374 + "points": { + "c1": 7.090978520618023, + "c2": 1.7463776096220442, + "c3": 2.3674644432515635, + "c4": 23.47812074952092, + "c5": 1.4055379660807503, + "c6": 38.20220174097671, + "c7": -8.19794464488048 }, - "vertexSeeds": { - "c1": 12.581187116818267, - "c2": 12.60492423650212, - "c3": 12.546694504589652, - "c4": 12.590265717203538, - "c5": 12.604558046170858, - "c6": 12.539536961628713, - "c7": 12.581491927647024 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.03051317614433, + "c3": 15.02542764678704, + "c4": 12.02034211742975, + "c5": 9.015256588071866, + "c6": 6.010171058714577, + "c7": 3.0050855293572885 }, "rgb": [238, 201, 159] }, @@ -268143,23 +268143,23 @@ "year": 1782, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -6.557962746215626, - "c2": -14.713837770692574, - "c3": -10.672498512610103, - "c4": -0.4450745372606768, - "c5": 11.790783434316438, - "c6": -15.43676419534708, - "c7": -7.572390972455782 + "points": { + "c1": -19.85974391835499, + "c2": 13.781973766686349, + "c3": -0.31399908777266816, + "c4": -17.74509480213481, + "c5": 12.745984285519533, + "c6": 6.208182968446174, + "c7": -19.07745735205215 }, - "vertexSeeds": { - "c1": 3.2536427033438864, - "c2": 3.1543998950914993, - "c3": 3.077904147486201, - "c4": 3.0813009804890177, - "c5": 3.1883380293398305, - "c6": 3.1089489591987785, - "c7": 3.091358338138448 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.7156726768377215, + "c3": 3.92972723069811, + "c4": 3.143781784558485, + "c5": 2.3578363384188608, + "c6": 1.5718908922792494, + "c7": 0.7859454461396247 }, "rgb": [86, 146, 138] }, @@ -268170,23 +268170,23 @@ "year": 1782, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -42.07401751035989, - "c2": -36.24354227353635, - "c3": 22.987424842047957, - "c4": -22.381357386786757, - "c5": -12.482044618908432, - "c6": -21.60054238269438, - "c7": 20.14974059223914 + "points": { + "c1": -16.33342473759378, + "c2": -26.77065332124276, + "c3": -29.588911912922974, + "c4": 26.344990958339423, + "c5": 12.890826249235111, + "c6": -1.486597651142766, + "c7": 24.345481622421218 }, - "vertexSeeds": { - "c1": 4.639361004932518, - "c2": 4.828754220676977, - "c3": 4.869481180000444, - "c4": 4.828795277126558, - "c5": 4.782497033546872, - "c6": 4.736370197184096, - "c7": 4.606071608272753 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296803, + "c3": 5.9177068885806765, + "c4": 4.7341655108645355, + "c5": 3.5506241331484087, + "c6": 2.3670827554322678, + "c7": 1.1835413777161274 }, "rgb": [86, 146, 138] }, @@ -268197,23 +268197,23 @@ "year": 1782, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 15.477549799710658, - "c2": 4.5707612390568855, - "c3": 23.07153463320607, - "c4": -1.5281144662889687, - "c5": -21.308028333894068, - "c6": 1.2096323713241475, - "c7": -20.78168553870743 + "points": { + "c1": -28.475157763425273, + "c2": -30.650870820076825, + "c3": -8.741155632558964, + "c4": -30.82917112656549, + "c5": -10.280674830688586, + "c6": -30.593319378204992, + "c7": 27.72658352028551 }, - "vertexSeeds": { - "c1": 6.67009049717812, - "c2": 6.546150852592524, - "c3": 6.935907783504779, - "c4": 6.718002194074736, - "c5": 6.459563078410236, - "c6": 6.667906093990182, - "c7": 6.451189226272496 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -268224,23 +268224,23 @@ "year": 1782, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -13.781227417314984, - "c2": 16.70461853245198, - "c3": 25.093590121555025, - "c4": 21.77883984397871, - "c5": -18.727819104889953, - "c6": -22.67425088094059, - "c7": 8.345602176776573 + "points": { + "c1": 4.903356153002207, + "c2": -2.4376147783452353, + "c3": -23.231645797146825, + "c4": -36.624646689541834, + "c5": -16.307817224195873, + "c6": -9.408263828955693, + "c7": -33.99269493626407 }, - "vertexSeeds": { - "c1": 3.86981470630977, - "c2": 4.1358315283149665, - "c3": 3.841756349526162, - "c4": 3.9726768796485854, - "c5": 4.099523284539386, - "c6": 3.9692067513996845, - "c7": 3.9997596775246023 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [86, 146, 138] }, @@ -268251,23 +268251,23 @@ "year": 1782, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -16.94967707786724, - "c2": 21.06880573604429, - "c3": 17.516257464810998, - "c4": 3.7316330054358495, - "c5": 22.52983738758971, - "c6": 13.418164312604759, - "c7": 24.22098220668179 + "points": { + "c1": -25.625147697477445, + "c2": 26.808095643127764, + "c3": 7.490474255361576, + "c4": -2.7040601410018965, + "c5": -13.198275084234506, + "c6": 15.799729478589022, + "c7": -6.124229024484642 }, - "vertexSeeds": { - "c1": 9.96720348633, - "c2": 10.390057849145615, - "c3": 10.353675168305285, - "c4": 9.939238665283607, - "c5": 10.568973183647827, - "c6": 9.957820354651835, - "c7": 10.38236776601789 + "offsets": { + "c1": 17.702265372168284, + "c2": 15.173370319001394, + "c3": 12.644475265834501, + "c4": 10.115580212667567, + "c5": 7.586685159500674, + "c6": 5.057790106333783, + "c7": 2.5288950531668917 }, "rgb": [77, 76, 132] }, @@ -268278,23 +268278,23 @@ "year": 1782, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -31.965837720366252, - "c2": -35.452673720853255, - "c3": 9.345402951600292, - "c4": -6.078965831532479, - "c5": 9.364159488967054, - "c6": 21.33039195247604, - "c7": -8.22416735246832 + "points": { + "c1": 38.462836270202445, + "c2": -9.432700995856216, + "c3": 10.47052710203635, + "c4": 40.46520189480438, + "c5": -34.03025650047543, + "c6": -20.541213078213772, + "c7": 29.767548963554148 }, - "vertexSeeds": { - "c1": 8.031051545738563, - "c2": 8.035559322782467, - "c3": 8.005099255911418, - "c4": 8.360563371658486, - "c5": 8.049445024245056, - "c6": 8.578811018120943, - "c7": 8.45068524511685 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059634, + "c3": 10.37910309754971, + "c4": 8.303282478039762, + "c5": 6.227461858529817, + "c6": 4.151641239019871, + "c7": 2.0758206195099462 }, "rgb": [222, 0, 59] }, @@ -268305,23 +268305,23 @@ "year": 1782, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -2.2365047637073197, - "c2": 18.117145012691594, - "c3": -3.8610694016493667, - "c4": 14.715894243612262, - "c5": -22.92643067619894, - "c6": 8.14008239878607, - "c7": -4.8004381260607545 + "points": { + "c1": -23.696922465522142, + "c2": 14.448703651677057, + "c3": 15.695410358594913, + "c4": 19.339999681914605, + "c5": -15.40326141098662, + "c6": -15.559881610047114, + "c7": -9.024134287899322 }, - "vertexSeeds": { - "c1": 10.923050888265495, - "c2": 10.756098328869188, - "c3": 10.855809667802738, - "c4": 10.977208721110085, - "c5": 10.826208619302934, - "c6": 10.58223813185604, - "c7": 11.054521064729569 + "offsets": { + "c1": 18.478964401294498, + "c2": 15.839112343966747, + "c3": 13.199260286638914, + "c4": 10.559408229311165, + "c5": 7.919556171983333, + "c6": 5.2797041146555825, + "c7": 2.6398520573278312 }, "rgb": [77, 76, 132] }, @@ -268332,23 +268332,23 @@ "year": 1782, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 30.927750918356715, - "c2": -11.945423321323624, - "c3": 13.92243676167287, - "c4": 41.99188563316536, - "c5": -6.07715215374612, - "c6": -10.482211148887039, - "c7": -36.023587323487455 + "points": { + "c1": -22.04702467426635, + "c2": -21.12659293819003, + "c3": 34.195087449901585, + "c4": -44.104245989599995, + "c5": 35.357774647126554, + "c6": 1.5108862344287246, + "c7": 18.668265227431007 }, - "vertexSeeds": { - "c1": 12.948533165226857, - "c2": 12.366015183669745, - "c3": 12.766568512441413, - "c4": 12.425199004623785, - "c5": 12.854586915376714, - "c6": 12.767280159661304, - "c7": 12.60347992258782 + "offsets": { + "c1": 21.68284789644013, + "c2": 18.585298196948663, + "c3": 15.487748497457263, + "c4": 12.390198797965798, + "c5": 9.292649098474332, + "c6": 6.195099398982869, + "c7": 3.097549699491464 }, "rgb": [238, 201, 159] }, @@ -268359,23 +268359,23 @@ "year": 1782, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -22.42379624775014, - "c2": -1.055046560416013, - "c3": -26.458919514465848, - "c4": -1.2731924371813719, - "c5": 9.722761895316193, - "c6": 2.472775667730378, - "c7": -26.54142309231509 + "points": { + "c1": 7.532293270041013, + "c2": -11.860056310431546, + "c3": -16.833935745770276, + "c4": -3.868395262953335, + "c5": 12.872658100564056, + "c6": 20.385272439714253, + "c7": 15.773827328172292 }, - "vertexSeeds": { - "c1": 5.063225539244149, - "c2": 4.7993141129328665, - "c3": 5.049787963937308, - "c4": 5.017068926230904, - "c5": 4.9242999823126405, - "c6": 4.962334978337518, - "c7": 5.005574385081286 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538142, + "c3": 6.056403143781785, + "c4": 4.845122515025428, + "c5": 3.633841886269071, + "c6": 2.422561257512714, + "c7": 1.211280628756357 }, "rgb": [77, 76, 132] }, @@ -268386,23 +268386,23 @@ "year": 1782, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -29.923526952255585, - "c2": -27.636411172907206, - "c3": -5.487355091975129, - "c4": -19.51589258918733, - "c5": -12.185840030274239, - "c6": 26.354908669231776, - "c7": -5.394457608205684 + "points": { + "c1": 24.21825274818444, + "c2": -19.5907373857291, + "c3": 11.878962790959456, + "c4": -12.505548823289217, + "c5": 14.575634039547815, + "c6": -19.760152035631087, + "c7": 0.7535893297939182 }, - "vertexSeeds": { - "c1": 3.9788782024362375, - "c2": 4.012401500629935, - "c3": 3.861388552412351, - "c4": 3.952102423065889, - "c5": 3.9874200337827648, - "c6": 3.8594868285619195, - "c7": 3.8583300540478014 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [238, 201, 159] }, @@ -268413,23 +268413,23 @@ "year": 1784, "resistanceReported": false, "duration": 86918400, - "curveSeeds": { - "c1": -28.192731356964188, - "c2": -84.33909691985029, - "c3": 96.58661886071351, - "c4": -11.075128081145394, - "c5": 49.87359561053742, - "c6": 99.14754713846204, - "c7": -60.988246193168386 + "points": { + "c1": -18.705280735310325, + "c2": -85.59921122066385, + "c3": 10.72010435590147, + "c4": -96.94763922556803, + "c5": 8.753133584415622, + "c6": -60.21945181368799, + "c7": 104.23755975616473 }, - "vertexSeeds": { - "c1": 5.251577516033401, - "c2": 6.5161414405585685, - "c3": 7.461983026189696, - "c4": 5.27564567387879, - "c5": 5.22290898720764, - "c6": 5.704406900634846, - "c7": 6.468815836078852 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [58, 15, 49] }, @@ -268440,23 +268440,23 @@ "year": 1782, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -4.219233597341532, - "c2": 11.870842237319664, - "c3": 16.124678306386933, - "c4": 11.179813547899158, - "c5": -14.24295031342054, - "c6": 5.6225469638735, - "c7": -1.9895857366149912 + "points": { + "c1": 13.282829742819331, + "c2": -20.90550832105044, + "c3": 5.359151022938605, + "c4": 24.40913920336765, + "c5": 15.130656564002159, + "c6": 4.611173455567531, + "c7": 15.368276742501827 }, - "vertexSeeds": { - "c1": 4.201263971009879, - "c2": 4.279217712843213, - "c3": 4.367209193575342, - "c4": 4.288778401407924, - "c5": 4.33253881581573, - "c6": 4.130475445080821, - "c7": 4.364670737843345 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170602, + "c3": 5.270457697642161, + "c4": 4.216366158113734, + "c5": 3.1622746185852946, + "c6": 2.108183079056867, + "c7": 1.0540915395284398 }, "rgb": [58, 15, 49] }, @@ -268467,23 +268467,23 @@ "year": 1784, "resistanceReported": false, "duration": 65059200, - "curveSeeds": { - "c1": -58.98058538251964, - "c2": 3.4358602242090797, - "c3": -4.0375951190261645, - "c4": 19.45745896101205, - "c5": 36.4565967828957, - "c6": 0.5591424052888101, - "c7": -63.29277876292249 + "points": { + "c1": -30.482179353126888, + "c2": 45.79038433132747, + "c3": -0.5547395575086114, + "c4": -45.62317557699535, + "c5": 36.786456353153255, + "c6": 1.7080724149777353, + "c7": -36.67609024073545 }, - "vertexSeeds": { - "c1": 3.150180178814542, - "c2": 3.279755014477206, - "c3": 2.9110655019990404, - "c4": 2.877010970091162, - "c5": 3.242658782357796, - "c6": 2.8416602855974222, - "c7": 3.1512939325981444 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837728, + "c3": 3.9297272306981035, + "c4": 3.143781784558485, + "c5": 2.3578363384188608, + "c6": 1.5718908922792425, + "c7": 0.7859454461396179 }, "rgb": [77, 76, 132] }, @@ -268494,23 +268494,23 @@ "year": 1782, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -22.354621205582074, - "c2": 6.092628443521701, - "c3": 8.932743125779915, - "c4": 18.468901023018155, - "c5": 23.13287411931472, - "c6": 2.4228996387519715, - "c7": -15.14848906862155 + "points": { + "c1": -8.811344810893814, + "c2": 7.197436283315149, + "c3": 3.777401171807753, + "c4": -10.020789233904111, + "c5": 9.54845050289591, + "c6": -8.35938563294096, + "c7": 19.157891828377096 }, - "vertexSeeds": { - "c1": 3.660831831103637, - "c2": 3.801767501169751, - "c3": 3.8633430915224705, - "c4": 3.7524524226749167, - "c5": 3.80223483344963, - "c6": 4.048799625564234, - "c7": 3.7223346012796776 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466, + "c3": 4.854368932038833, + "c4": 3.8834951456310645, + "c5": 2.9126213592232966, + "c6": 1.9417475728155285, + "c7": 0.9708737864077607 }, "rgb": [238, 201, 159] }, @@ -268521,23 +268521,23 @@ "year": 1782, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 4.018153628104827, - "c2": 36.80329968854721, - "c3": 24.116557657658817, - "c4": 26.47026834108547, - "c5": -18.170440012714586, - "c6": 32.88108547510919, - "c7": 24.231421432505456 + "points": { + "c1": 12.526988319189705, + "c2": -36.28805940415879, + "c3": 7.09930829405311, + "c4": -36.866432329902985, + "c5": -9.777296764396148, + "c6": -0.2659149218306638, + "c7": 10.110603023010029 }, - "vertexSeeds": { - "c1": 5.61819366664921, - "c2": 5.503774813436389, - "c3": 5.732146445340513, - "c4": 5.573612469174501, - "c5": 5.612790904263447, - "c6": 5.709971003086737, - "c7": 5.641598770235542 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066578, + "c3": 6.934812760055488, + "c4": 5.547850208044397, + "c5": 4.160887656033307, + "c6": 2.7739251040221813, + "c7": 1.3869625520110906 }, "rgb": [77, 76, 132] }, @@ -268548,23 +268548,23 @@ "year": 1782, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -0.6042586317162879, - "c2": 9.11232017686418, - "c3": -2.306752174078177, - "c4": -8.654005087344315, - "c5": -1.6254794702211584, - "c6": -21.275094763285043, - "c7": 11.068423297107266 + "points": { + "c1": 21.876228183371673, + "c2": -21.966512656132185, + "c3": -1.3759177069353505, + "c4": 23.768997578218297, + "c5": 18.900565678761126, + "c6": 12.912460774386965, + "c7": 19.62148431926829 }, - "vertexSeeds": { - "c1": 7.303744727447048, - "c2": 7.332108313586594, - "c3": 7.521663026174825, - "c4": 7.723339991691975, - "c5": 7.434220960630536, - "c6": 7.683752841946982, - "c7": 7.300785616049886 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.17891816920944, + "c3": 9.315765141007857, + "c4": 7.452612112806294, + "c5": 5.58945908460471, + "c6": 3.726306056403147, + "c7": 1.8631530282015845 }, "rgb": [58, 15, 49] }, @@ -268575,23 +268575,23 @@ "year": 1783, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 28.445777826732566, - "c2": -35.41116672870356, - "c3": -17.268338440814738, - "c4": -21.242514369869003, - "c5": 26.74631392948055, - "c6": -28.312110897191303, - "c7": -38.54933512500237 + "points": { + "c1": -42.54839748330408, + "c2": 9.607496979391925, + "c3": -26.29098929223556, + "c4": -42.97020881018432, + "c5": 21.6096245053145, + "c6": 31.248167110071336, + "c7": -38.75922537455862 }, - "vertexSeeds": { - "c1": 8.559661659121844, - "c2": 8.210081171741482, - "c3": 8.394403621221565, - "c4": 8.417378704858333, - "c5": 8.289882630769892, - "c6": 8.31000921186231, - "c7": 8.41695103947663 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099865, + "c3": 10.402219140083226, + "c4": 8.321775312066558, + "c5": 6.241331484049918, + "c6": 4.160887656033279, + "c7": 2.0804438280166395 }, "rgb": [77, 76, 132] }, @@ -268602,23 +268602,23 @@ "year": 1783, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -29.948274674041542, - "c2": -34.543605553646145, - "c3": -6.921050835129279, - "c4": -3.93888660584647, - "c5": -36.90145562803045, - "c6": -39.91673973508884, - "c7": 23.60388907372206 + "points": { + "c1": 28.08353598761778, + "c2": 7.740936768521308, + "c3": 23.439870815294483, + "c4": -34.2275788600339, + "c5": 21.649877924615907, + "c6": -25.424385157104087, + "c7": 11.228794630665924 }, - "vertexSeeds": { - "c1": 3.918769562810077, - "c2": 3.909942002763327, - "c3": 3.9192415522070188, - "c4": 3.910052581069857, - "c5": 3.9133644610813896, - "c6": 3.9129044954363064, - "c7": 3.9092320811411856 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.6033287101248535, + "c3": 4.6694405917707416, + "c4": 3.7355524734166305, + "c5": 2.801664355062334, + "c6": 1.8677762367082225, + "c7": 0.9338881183541112 }, "rgb": [238, 201, 159] }, @@ -268629,23 +268629,23 @@ "year": 1783, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 25.76752106070871, - "c2": -27.84328040106908, - "c3": 0.4021288425579641, - "c4": -9.783713403346376, - "c5": 42.489429279643396, - "c6": -6.577673343273474, - "c7": -4.618183761447902 + "points": { + "c1": 39.547791183562644, + "c2": 13.452712219810508, + "c3": -43.88089671623327, + "c4": 19.893361076415964, + "c5": 35.02551840827508, + "c6": 12.901998245805139, + "c7": -20.412121809342104 }, - "vertexSeeds": { - "c1": 4.812632231857322, - "c2": 5.074329225345939, - "c3": 5.063018826085655, - "c4": 4.847925601611372, - "c5": 5.161229885959162, - "c6": 5.261064781409563, - "c7": 4.83498788036786 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940369, + "c3": 6.287563569116965, + "c4": 5.030050855293579, + "c5": 3.7725381414701755, + "c6": 2.5150254276467896, + "c7": 1.2575127138233948 }, "rgb": [86, 146, 138] }, @@ -268656,23 +268656,23 @@ "year": 1783, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -38.573266807711235, - "c2": 29.7701707110431, - "c3": -29.125598694078175, - "c4": -28.302628159961756, - "c5": 25.3353246603209, - "c6": -25.260524325891083, - "c7": -17.474475459245472 + "points": { + "c1": -39.167983529319265, + "c2": 34.889058169849626, + "c3": -0.7631724826500559, + "c4": -5.911662439899324, + "c5": 44.13480543691515, + "c6": -26.21267582693503, + "c7": -19.782102020344432 }, - "vertexSeeds": { - "c1": 3.7933174313160416, - "c2": 3.9099834720992646, - "c3": 3.9322853709647716, - "c4": 3.867903104313932, - "c5": 4.009117532044584, - "c6": 4.060199800952176, - "c7": 3.79451111154498 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -268683,23 +268683,23 @@ "year": 1782, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 10.009317645595239, - "c2": 8.776963317414584, - "c3": -9.108472272274081, - "c4": 12.939779567560365, - "c5": -11.952983300402447, - "c6": 6.647542762769731, - "c7": 16.918389655807907 + "points": { + "c1": 20.36002788624082, + "c2": 26.099052320645917, + "c3": 19.18280536991658, + "c4": -10.606354121771531, + "c5": -10.725983140567454, + "c6": -18.582799086694525, + "c7": 9.387722863955084 }, - "vertexSeeds": { - "c1": 15.52461139896373, - "c2": 15.52461139896373, - "c3": 15.52461139896373, - "c4": 15.52461139896373, - "c5": 15.52461139896373, - "c6": 15.52461139896373, - "c7": 15.52461139896373 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -268710,23 +268710,23 @@ "year": 1782, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -9.212637418728345, - "c2": 24.168215901364675, - "c3": 3.4222088318999226, - "c4": -25.56874894761011, - "c5": -1.9476501457735154, - "c6": 13.925045500986556, - "c7": 27.05397430105026 + "points": { + "c1": 14.187921118688891, + "c2": -21.43218916051202, + "c3": 10.167132560427419, + "c4": 6.0263815004586405, + "c5": 0.4656122532619804, + "c6": 13.021305913850064, + "c7": -36.4756312352019 }, - "vertexSeeds": { - "c1": 6.606219862940705, - "c2": 6.873811471928207, - "c3": 6.854569202287775, - "c4": 6.76780105993045, - "c5": 6.41573436903363, - "c6": 6.91249805111207, - "c7": 6.912303594457669 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -268737,23 +268737,23 @@ "year": 1782, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -19.75509158398718, - "c2": -4.933589752393743, - "c3": -2.7001581762599827, - "c4": 6.853335855014436, - "c5": 0.2002632954192265, - "c6": 10.435973255845774, - "c7": -7.935365403860528 + "points": { + "c1": 2.0446013129001948, + "c2": 13.905565591183162, + "c3": -4.263280000134937, + "c4": 0.7447377761381127, + "c5": -6.726105094009959, + "c6": -6.924105287434767, + "c7": 5.457201457171582 }, - "vertexSeeds": { - "c1": 5.867202740922034, - "c2": 5.9069476699177335, - "c3": 5.498283941390217, - "c4": 5.8297023084431165, - "c5": 5.901671882069412, - "c6": 5.554056841265921, - "c7": 5.613490867586328 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348124, + "c3": 7.096625057790099, + "c4": 5.677300046232098, + "c5": 4.257975034674073, + "c6": 2.838650023116049, + "c7": 1.4193250115580245 }, "rgb": [58, 15, 49] }, @@ -268764,23 +268764,23 @@ "year": 1782, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 26.593932255805928, - "c2": 30.671257643562516, - "c3": -15.42296550947712, - "c4": -27.18751817193663, - "c5": 19.821016054610315, - "c6": -18.650130987801838, - "c7": -19.13954623817697 + "points": { + "c1": 1.8986366517291486, + "c2": -28.37815897301343, + "c3": -7.8216189891076695, + "c4": -4.43150337950431, + "c5": -17.89414408616325, + "c6": -23.98014019283587, + "c7": 7.520891076327672 }, - "vertexSeeds": { - "c1": 5.737267830565836, - "c2": 6.023857218380201, - "c3": 6.170223554219468, - "c4": 6.006630174282976, - "c5": 5.9402466250387, - "c6": 6.002724495558606, - "c7": 5.966552895771856 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830799, + "c3": 7.374017568192322, + "c4": 5.899214054553867, + "c5": 4.424410540915389, + "c6": 2.9496070272769335, + "c7": 1.4748035136384556 }, "rgb": [222, 0, 59] }, @@ -268791,23 +268791,23 @@ "year": 1782, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 8.348864715869134, - "c2": -11.028212688529475, - "c3": -15.552399341042337, - "c4": 2.3693433174393626, - "c5": -14.7004941349873, - "c6": -19.77244308444363, - "c7": 17.61484644970978 + "points": { + "c1": 29.376063539123237, + "c2": 12.215407764617296, + "c3": 10.635445067986744, + "c4": -12.314263497213979, + "c5": -7.470010959123655, + "c6": -25.97300032964925, + "c7": -21.182867784197775 }, - "vertexSeeds": { - "c1": 3.964399162904696, - "c2": 4.504481986752716, - "c3": 4.481040992371396, - "c4": 4.915563578116059, - "c5": 4.592140125136081, - "c6": 5.103361706139822, - "c7": 4.742656454655375 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739251, + "c3": 6.171983356449376, + "c4": 4.937586685159499, + "c5": 3.7031900138696248, + "c6": 2.4687933425797515, + "c7": 1.2343966712898733 }, "rgb": [58, 15, 49] }, @@ -268818,23 +268818,23 @@ "year": 1783, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -17.886580304048618, - "c2": 23.90992701122179, - "c3": 11.442570295960977, - "c4": 16.791598920486855, - "c5": 18.529572132055073, - "c6": -3.7499331696145504, - "c7": -9.618374607463728 + "points": { + "c1": -10.463403753572365, + "c2": 20.96888227445404, + "c3": -29.418466766490283, + "c4": -17.82933077745555, + "c5": -25.91755325159088, + "c6": -14.299274084197403, + "c7": -15.454528466480493 }, - "vertexSeeds": { - "c1": 6.440038106183389, - "c2": 6.6906761937575565, - "c3": 6.494350902303719, - "c4": 6.846804880223818, - "c5": 6.868373371082555, - "c6": 6.782685572055659, - "c7": 6.58462483982955 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -268845,23 +268845,23 @@ "year": 1782, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -15.587478074531099, - "c2": -12.204360677969362, - "c3": -13.131602161685565, - "c4": 2.2176317828032133, - "c5": -8.44569567347109, - "c6": 4.514868361888961, - "c7": -18.89604920605311 + "points": { + "c1": -3.3494726192995863, + "c2": 11.795651348911978, + "c3": 3.7732087903721663, + "c4": 17.146105126346836, + "c5": 2.5154140895977726, + "c6": -16.902993762179122, + "c7": -11.82285380832219 }, - "vertexSeeds": { - "c1": 14.714993566298453, - "c2": 14.604942629179137, - "c3": 14.796210934820378, - "c4": 14.754886643709744, - "c5": 14.745160701697001, - "c6": 15.439458153757416, - "c7": 14.874056893777208 + "offsets": { + "c1": 25.792880258899675, + "c2": 22.10818307905687, + "c3": 18.423485899214064, + "c4": 14.738788719371263, + "c5": 11.054091539528457, + "c6": 7.36939435968561, + "c7": 3.684697179842805 }, "rgb": [58, 15, 49] }, @@ -268872,23 +268872,23 @@ "year": 1782, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -2.140141176433147, - "c2": -1.7924069343193416, - "c3": 12.82465250439251, - "c4": 19.23068531673455, - "c5": 22.25725876926331, - "c6": -22.491233213682822, - "c7": -15.343520369632577 + "points": { + "c1": 14.127928457244245, + "c2": 13.61917039027768, + "c3": -13.383744034188657, + "c4": 2.4490511445378793, + "c5": -23.797141204033103, + "c6": -22.162381162692085, + "c7": 7.7844044146688915 }, - "vertexSeeds": { - "c1": 12.80436027660733, - "c2": 12.949491231841844, - "c3": 12.943385875052526, - "c4": 12.466819581307142, - "c5": 12.253678974760557, - "c6": 12.720330775213958, - "c7": 12.920291626030322 + "offsets": { + "c1": 22.006472491909385, + "c2": 18.862690707350914, + "c3": 15.718908922792398, + "c4": 12.57512713823393, + "c5": 9.431345353675457, + "c6": 6.287563569116986, + "c7": 3.1437817845584712 }, "rgb": [86, 146, 138] }, @@ -268899,23 +268899,23 @@ "year": 1783, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 25.287664990714255, - "c2": 9.732257583691478, - "c3": 13.139191242093716, - "c4": -35.03805405002567, - "c5": 29.313633573348632, - "c6": -9.244026557887398, - "c7": 18.09941273144993 + "points": { + "c1": -31.826147763127373, + "c2": -1.3839811578234134, + "c3": -22.17717067522127, + "c4": -19.711840685675195, + "c5": -8.170613482579185, + "c6": 41.540162104529124, + "c7": -24.92194247981827 }, - "vertexSeeds": { - "c1": 8.690490769979796, - "c2": 8.173057844166802, - "c3": 8.624241107415546, - "c4": 8.14227229149664, - "c5": 8.099385999461015, - "c6": 8.652959766898984, - "c7": 8.440273403894569 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099854, + "c3": 10.402219140083227, + "c4": 8.321775312066576, + "c5": 6.241331484049927, + "c6": 4.1608876560332995, + "c7": 2.0804438280166497 }, "rgb": [77, 76, 132] }, @@ -268926,23 +268926,23 @@ "year": 1782, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 11.131819825936784, - "c2": -6.346322412881079, - "c3": 15.247465398507668, - "c4": -18.759435536121725, - "c5": -19.90627986787763, - "c6": -14.662756194727812, - "c7": -8.075704231925505 + "points": { + "c1": -4.473680076361351, + "c2": 16.134658460813196, + "c3": -4.323091392775616, + "c4": 2.333418270511192, + "c5": -17.87345472992039, + "c6": -23.29381199402998, + "c7": 17.450417013135823 }, - "vertexSeeds": { - "c1": 6.5899771754128675, - "c2": 6.3366476573456225, - "c3": 6.318147803487112, - "c4": 6.714601151631341, - "c5": 6.661924627924872, - "c6": 6.470597815702947, - "c7": 6.244622722216678 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037438, + "c3": 8.067498844197877, + "c4": 6.4539990753582925, + "c5": 4.840499306518731, + "c6": 3.2269995376791463, + "c7": 1.613499768839562 }, "rgb": [238, 201, 159] }, @@ -268953,23 +268953,23 @@ "year": 1782, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -5.084928662928089, - "c2": -14.518678213872729, - "c3": 3.53167732807389, - "c4": -8.410172312355854, - "c5": 12.194460390038788, - "c6": 14.386578089977132, - "c7": 23.241831359704587 + "points": { + "c1": 12.726755546256289, + "c2": -23.013592090974146, + "c3": -26.321689962945488, + "c4": 14.941038050236028, + "c5": 26.465021384652143, + "c6": -26.248877690689845, + "c7": -24.098465657311465 }, - "vertexSeeds": { - "c1": 6.921633001772615, - "c2": 6.943690483104069, - "c3": 6.878148649709749, - "c4": 6.50705121011065, - "c5": 6.6019671788545535, - "c6": 6.666176309581943, - "c7": 6.587231558849983 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -268980,23 +268980,23 @@ "year": 1782, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 9.619508044961371, - "c2": 3.468954570241454, - "c3": -13.917058191479638, - "c4": -2.230284845273104, - "c5": -10.086246096065555, - "c6": -20.464487037491878, - "c7": -8.217863626045036 + "points": { + "c1": 16.035823658220217, + "c2": 8.050669654866638, + "c3": 1.2668352335416166, + "c4": 17.418586264049836, + "c5": -19.563238639077845, + "c6": 17.317373408590612, + "c7": -2.7788870738972875 }, - "vertexSeeds": { - "c1": 3.7829920333231857, - "c2": 4.023190772838349, - "c3": 4.050869071588756, - "c4": 4.055546353828456, - "c5": 3.863660966202223, - "c6": 3.777487924740374, - "c7": 3.773039406669811 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -269007,23 +269007,23 @@ "year": 1783, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 5.571876372309962, - "c2": -6.841133975488429, - "c3": -24.59718000171935, - "c4": 8.145585317052866, - "c5": -3.3385715549881887, - "c6": 1.3235952572422, - "c7": 4.764108732298489 + "points": { + "c1": -3.994195067466922, + "c2": 18.384537460926555, + "c3": -20.76554916500876, + "c4": 2.056963272204687, + "c5": 27.32008706909612, + "c6": 5.678289727217152, + "c7": 18.33793938280265 }, - "vertexSeeds": { - "c1": 9.717218045497006, - "c2": 10.222839039955309, - "c3": 9.594175297832257, - "c4": 9.555509046643643, - "c5": 9.55922969817462, - "c6": 10.247539088099193, - "c7": 9.687015761192727 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518717, + "c3": 12.367082755432257, + "c4": 9.893666204345799, + "c5": 7.420249653259359, + "c6": 4.946833102172899, + "c7": 2.47341655108646 }, "rgb": [238, 201, 159] }, @@ -269034,23 +269034,23 @@ "year": 1783, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -9.647117047894254, - "c2": 9.013054361942189, - "c3": 2.442223992381038, - "c4": 23.006126459648918, - "c5": 12.621464413432072, - "c6": 17.995954157774882, - "c7": -6.70170312818534 + "points": { + "c1": 22.814125859350717, + "c2": -14.476540704520511, + "c3": 3.097664380178127, + "c4": -4.005027130054657, + "c5": -10.423778740794582, + "c6": 26.56639430536061, + "c7": 0.9149137307609578 }, - "vertexSeeds": { - "c1": 8.340988599078392, - "c2": 8.328397318295453, - "c3": 8.026113445737531, - "c4": 7.867278338984276, - "c5": 8.415712165856819, - "c6": 8.051746024862288, - "c7": 8.211547366685368 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147487, + "c4": 8.081368469717994, + "c5": 6.061026352288501, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [58, 15, 49] }, @@ -269061,23 +269061,23 @@ "year": 1783, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -23.140378512569093, - "c2": 14.21174298020885, - "c3": 4.97014253402439, - "c4": -19.889162431963115, - "c5": 14.958189196717743, - "c6": -12.747021726952157, - "c7": -16.53938973399334 + "points": { + "c1": -12.399949689294905, + "c2": -26.569654641118188, + "c3": -17.203042858521375, + "c4": -1.2655993294692607, + "c5": 12.502231213235351, + "c6": 5.687166583603091, + "c7": -14.306717422620554 }, - "vertexSeeds": { - "c1": 12.209813693069727, - "c2": 11.883179972236599, - "c3": 11.90095628727355, - "c4": 12.571247120149138, - "c5": 12.192835029610357, - "c6": 12.31627632769816, - "c7": 12.432099316099768 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.03051317614423, + "c3": 15.025427646786888, + "c4": 12.020342117429502, + "c5": 9.015256588072114, + "c6": 6.010171058714773, + "c7": 3.0050855293573866 }, "rgb": [86, 146, 138] }, @@ -269088,23 +269088,23 @@ "year": 1783, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 15.332859021660184, - "c2": 23.69285798466543, - "c3": -8.579822624721531, - "c4": 18.6958893680072, - "c5": -21.240135501781413, - "c6": 10.312238785417868, - "c7": 1.6196698460307886 + "points": { + "c1": -24.63948687292912, + "c2": 13.765642430189935, + "c3": 16.46857523863296, + "c4": 8.735448151987178, + "c5": 10.587595134622852, + "c6": -24.025418223267014, + "c7": 13.945532216498407 }, - "vertexSeeds": { - "c1": 5.343877591430593, - "c2": 5.928264948347813, - "c3": 5.333695181400896, - "c4": 5.757805113507609, - "c5": 5.169659394143456, - "c6": 5.206049365130895, - "c7": 5.348730988449144 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [222, 0, 59] }, @@ -269115,23 +269115,23 @@ "year": 1783, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 6.034411889587744, - "c2": 14.26561214654781, - "c3": 5.345408377802187, - "c4": -8.203475033151452, - "c5": 25.811648234125684, - "c6": 16.178325641021992, - "c7": -27.03459146764653 + "points": { + "c1": 17.716155867861204, + "c2": 35.463017105848664, + "c3": -3.3759358573972236, + "c4": 17.82375418023613, + "c5": 29.157205396769186, + "c6": -35.08987261139144, + "c7": 0.8227151168358375 }, - "vertexSeeds": { - "c1": 7.2742017413374125, - "c2": 7.081284508982521, - "c3": 6.508229145810482, - "c4": 7.299900760801509, - "c5": 6.5243965451991, - "c6": 6.212265521890653, - "c7": 7.001238810082841 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.81830790568654, + "c3": 9.01525658807212, + "c4": 7.2122052704577, + "c5": 5.40915395284327, + "c6": 3.60610263522884, + "c7": 1.80305131761442 }, "rgb": [222, 0, 59] }, @@ -269142,23 +269142,23 @@ "year": 1783, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -3.4658901502575787, - "c2": -7.867778490729064, - "c3": 17.41743072833738, - "c4": -5.216748574295085, - "c5": -17.229071906913287, - "c6": -10.922507844182006, - "c7": -0.06677752187971109 + "points": { + "c1": -6.573920586945508, + "c2": -21.227273505719342, + "c3": -21.791147268756887, + "c4": 15.06830811889337, + "c5": 15.287862301007564, + "c6": 17.0947108220888, + "c7": 20.254943517609426 }, - "vertexSeeds": { - "c1": 6.555116633485002, - "c2": 6.64457670737322, - "c3": 6.524563802569511, - "c4": 6.685189098052399, - "c5": 6.77611811524277, - "c6": 6.553720701133643, - "c7": 6.649411115599651 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -269169,23 +269169,23 @@ "year": 1783, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -11.72086667688063, - "c2": 13.094530837921504, - "c3": -19.642989444507897, - "c4": -25.932408229632784, - "c5": 27.601950438798994, - "c6": -6.538162245988175, - "c7": 19.767044730694835 + "points": { + "c1": 22.468956429835778, + "c2": -18.36029146817561, + "c3": 6.33038795522544, + "c4": -21.184457146735355, + "c5": 11.88506121132194, + "c6": -3.4426719089631668, + "c7": -21.550430684057048 }, - "vertexSeeds": { - "c1": 10.514084920845926, - "c2": 9.639944978013668, - "c3": 9.865984330369196, - "c4": 9.950105378838902, - "c5": 9.836377900103484, - "c6": 9.744546430406285, - "c7": 10.365362064883186 + "offsets": { + "c1": 17.57281553398058, + "c2": 15.062413314840505, + "c3": 12.552011095700427, + "c4": 10.041608876560352, + "c5": 7.53120665742023, + "c6": 5.020804438280176, + "c7": 2.510402219140077 }, "rgb": [86, 146, 138] }, @@ -269196,23 +269196,23 @@ "year": 1783, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 23.43546133036751, - "c2": 18.14530847020753, - "c3": -14.030031791077032, - "c4": -24.930326599185566, - "c5": -7.514494433799822, - "c6": -25.67890201578098, - "c7": 25.286341545027476 + "points": { + "c1": 18.69177599865254, + "c2": 26.451249831725583, + "c3": 23.607145939358034, + "c4": -12.26063730424762, + "c5": -20.74016576939141, + "c6": -12.340516044891757, + "c7": -23.04501017208571 }, - "vertexSeeds": { - "c1": 14.39045170157087, - "c2": 14.536675506254761, - "c3": 13.909309880919869, - "c4": 14.323003273142605, - "c5": 13.870744588029012, - "c6": 14.203653553582694, - "c7": 13.649485797483951 + "offsets": { + "c1": 24.724919093851135, + "c2": 21.192787794729558, + "c3": 17.660656495607935, + "c4": 14.128525196486356, + "c5": 10.596393897364779, + "c6": 7.0642625982432, + "c7": 3.5321312991215783 }, "rgb": [238, 201, 159] }, @@ -269223,23 +269223,23 @@ "year": 1783, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -10.76328757496524, - "c2": -4.06366061613128, - "c3": -3.122700098347252, - "c4": -10.086376169705257, - "c5": -4.953189507917486, - "c6": 21.581149228252315, - "c7": 14.301391344920404 + "points": { + "c1": 16.016473491245954, + "c2": 9.224575943626654, + "c3": 0.03526880698555601, + "c4": -6.792536417230643, + "c5": -2.3635265333700914, + "c6": -28.19512906108216, + "c7": -17.570194631647603 }, - "vertexSeeds": { - "c1": 6.121173173538609, - "c2": 6.035764933545045, - "c3": 6.15327616019234, - "c4": 6.130529306009331, - "c5": 6.1660633622893535, - "c6": 6.242408806167755, - "c7": 6.0448652624657395 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233002, + "c3": 7.605177993527519, + "c4": 6.08414239482201, + "c5": 4.563106796116501, + "c6": 3.0420711974109924, + "c7": 1.5210355987055089 }, "rgb": [238, 201, 159] }, @@ -269250,23 +269250,23 @@ "year": 1783, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -1.5512614896071213, - "c2": 9.144730325162591, - "c3": -1.8512451747151601, - "c4": 11.535376818396848, - "c5": -6.137356143719284, - "c6": -4.430343920119451, - "c7": -14.771902489447958 + "points": { + "c1": 12.170667852084847, + "c2": -6.2774252543603275, + "c3": 12.545479586666055, + "c4": -10.629167217730984, + "c5": 6.645810561150604, + "c6": 21.27907682662525, + "c7": 3.989944416201091 }, - "vertexSeeds": { - "c1": 8.968168426270235, - "c2": 9.283173725778006, - "c3": 9.439723678609338, - "c4": 8.932784140665431, - "c5": 9.0642430002284, - "c6": 9.460953557065926, - "c7": 9.452933939498596 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070734, + "c3": 11.534905224225612, + "c4": 9.227924179380489, + "c5": 6.920943134535367, + "c6": 4.6139620896902445, + "c7": 2.3069810448451222 }, "rgb": [222, 0, 59] }, @@ -269277,23 +269277,23 @@ "year": 1783, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -22.80288623074988, - "c2": 5.168356570999688, - "c3": 8.993296795933837, - "c4": 19.935512471627185, - "c5": -9.249993048411401, - "c6": -0.9045195174801819, - "c7": -6.543920224170741 + "points": { + "c1": 18.500446802320262, + "c2": -14.164330545236815, + "c3": 17.7940812180981, + "c4": -16.384245515869605, + "c5": -1.9688096017434198, + "c6": -22.187006843411517, + "c7": 17.247781770616257 }, - "vertexSeeds": { - "c1": 6.588627830094112, - "c2": 6.875293313940935, - "c3": 6.564345718994362, - "c4": 6.64995936203482, - "c5": 6.353816856960942, - "c6": 6.696629340870707, - "c7": 6.770143750517082 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -269304,23 +269304,23 @@ "year": 1783, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -22.6433630303731, - "c2": 10.475545994509751, - "c3": 2.6643510680560105, - "c4": 16.19147173828157, - "c5": 8.10644083435566, - "c6": 13.81830075928908, - "c7": 8.469028708460037 + "points": { + "c1": 13.358966794393694, + "c2": -0.5492707919084587, + "c3": -16.842774496632956, + "c4": 2.7663582254191468, + "c5": -9.897074667951717, + "c6": 7.012699305820895, + "c7": 14.791262494812791 }, - "vertexSeeds": { - "c1": 6.405872582795403, - "c2": 6.391094431812818, - "c3": 6.665102699181924, - "c4": 6.446642351808409, - "c5": 6.3888781412540085, - "c6": 6.404750637503777, - "c7": 6.859076195802778 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -269331,23 +269331,23 @@ "year": 1783, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -7.532228274433379, - "c2": -2.0259217488972467, - "c3": -22.717851759014398, - "c4": 24.574798497744457, - "c5": -12.874631939129205, - "c6": 5.248983098141313, - "c7": -4.7079301034383185 + "points": { + "c1": -29.262501149826395, + "c2": -15.533835867024406, + "c3": -16.65027156092519, + "c4": 0.0577467771390161, + "c5": 28.946565508056327, + "c6": 8.724979532575166, + "c7": 20.619661859809224 }, - "vertexSeeds": { - "c1": 7.036486301187686, - "c2": 7.019302306090497, - "c3": 7.329243329631682, - "c4": 7.311262351494813, - "c5": 7.252540031487336, - "c6": 7.230850894796281, - "c7": 7.167527544813305 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244111, + "c3": 8.760980120203412, + "c4": 7.008784096162734, + "c5": 5.256588072122056, + "c6": 3.504392048081356, + "c7": 1.752196024040678 }, "rgb": [77, 76, 132] }, @@ -269358,23 +269358,23 @@ "year": 1783, "resistanceReported": true, "duration": 24710400, - "curveSeeds": { - "c1": 27.731235321034916, - "c2": 35.568623439264414, - "c3": -6.50235112225263, - "c4": -24.20057738594395, - "c5": 9.557769824169661, - "c6": -7.980567956603249, - "c7": -19.17225894173448 + "points": { + "c1": -6.433363948530953, + "c2": 19.745944956340466, + "c3": 12.422872044016081, + "c4": -2.7502125519337497, + "c5": -12.331335220341948, + "c6": -35.35745681333078, + "c7": -9.203458389985272 }, - "vertexSeeds": { - "c1": 3.0559466527321937, - "c2": 2.8082829716439823, - "c3": 3.27259179645793, - "c4": 3.4567798667170115, - "c5": 2.636858790900122, - "c6": 3.0871825717286447, - "c7": 2.7028394415657124 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.2413314840499305, + "c3": 5.2011095700416075, + "c4": 4.160887656033286, + "c5": 3.1206657420249653, + "c6": 2.080443828016642, + "c7": 1.040221914008321 }, "rgb": [58, 15, 49] }, @@ -269385,23 +269385,23 @@ "year": 1783, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 3.5472143730672165, - "c2": 0.5296647049802807, - "c3": 6.770026398454153, - "c4": 9.136806282535108, - "c5": 15.593981482803496, - "c6": 13.058123460402424, - "c7": -6.805760674898181 + "points": { + "c1": -0.22192440603433639, + "c2": -17.772711389295818, + "c3": -4.6049468754485865, + "c4": -7.637272252486586, + "c5": -21.83199049879002, + "c6": 9.112612396417898, + "c7": 5.795733523258097 }, - "vertexSeeds": { - "c1": 9.094968608271126, - "c2": 8.875611517791402, - "c3": 8.868063497220668, - "c4": 8.790894851251657, - "c5": 8.746901247831408, - "c6": 9.080876836286254, - "c7": 8.60109343894938 + "offsets": { + "c1": 16.310679611650485, + "c2": 13.98058252427185, + "c3": 11.650485436893202, + "c4": 9.320388349514568, + "c5": 6.990291262135918, + "c6": 4.660194174757284, + "c7": 2.330097087378649 }, "rgb": [238, 201, 159] }, @@ -269412,23 +269412,23 @@ "year": 1783, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -24.740331032881, - "c2": 10.486900745565226, - "c3": 21.799457301355663, - "c4": -19.099230634263627, - "c5": 25.430166236563682, - "c6": 22.14401586247533, - "c7": 17.932136706968176 + "points": { + "c1": 14.411422276726913, + "c2": -17.460666145319628, + "c3": -24.55058255054451, + "c4": 17.569293773215993, + "c5": 26.715642261280298, + "c6": 23.77605631585671, + "c7": -17.26928317402181 }, - "vertexSeeds": { - "c1": 8.703632437097038, - "c2": 8.646033753674194, - "c3": 8.588158045000553, - "c4": 8.540359189101867, - "c5": 8.455623879338852, - "c6": 8.436231008013976, - "c7": 8.549445164051866 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099847, + "c3": 10.402219140083238, + "c4": 8.321775312066581, + "c5": 6.241331484049923, + "c6": 4.160887656033266, + "c7": 2.0804438280166573 }, "rgb": [222, 0, 59] }, @@ -269439,23 +269439,23 @@ "year": 1783, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 32.530295732193466, - "c2": 31.844418562921305, - "c3": -26.950214569099753, - "c4": -15.491581793575936, - "c5": 0.7195151062256215, - "c6": 21.53086343964101, - "c7": -1.7391455033132424 + "points": { + "c1": -6.186187487708207, + "c2": -22.012155992630362, + "c3": -10.077074716058217, + "c4": 32.54834578371998, + "c5": 24.32681061944958, + "c6": 22.15006143733858, + "c7": 12.561362661773515 }, - "vertexSeeds": { - "c1": 10.522648755495508, - "c2": 10.622155595336631, - "c3": 10.511401217588935, - "c4": 10.817218217726376, - "c5": 10.593803155832683, - "c6": 10.467323414551021, - "c7": 10.292938754714866 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.977808599167808, + "c3": 13.314840499306538, + "c4": 10.65187239944522, + "c5": 7.988904299583904, + "c6": 5.325936199722633, + "c7": 2.6629680998613163 }, "rgb": [77, 76, 132] }, @@ -269466,23 +269466,23 @@ "year": 1783, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -25.08861129699013, - "c2": -26.062125909126785, - "c3": 16.331801327431553, - "c4": -3.6167356239687507, - "c5": -23.6641986339588, - "c6": 0.5860043214868078, - "c7": 22.686796778415687 + "points": { + "c1": 3.365013832667387, + "c2": 6.603157096655952, + "c3": -26.635419467330244, + "c4": -26.706715301244717, + "c5": -17.42813130099635, + "c6": 11.78201021103045, + "c7": 27.367835376564248 }, - "vertexSeeds": { - "c1": 6.839682626319806, - "c2": 6.746576713480537, - "c3": 6.573599706832822, - "c4": 6.452619933493336, - "c5": 6.511150531722073, - "c6": 6.935312424506484, - "c7": 6.513614810843618 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -269493,23 +269493,23 @@ "year": 1783, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 27.66229724174576, - "c2": 13.467073240476438, - "c3": 17.00628769445283, - "c4": -44.38142304797141, - "c5": 8.144123997425993, - "c6": 4.168310498374538, - "c7": -19.710262456701155 + "points": { + "c1": 9.012536007333829, + "c2": 39.45776989438606, + "c3": 21.61509344589679, + "c4": 13.469886335049736, + "c5": 3.653492262479112, + "c6": 17.020948270014614, + "c7": 41.85899805569498 }, - "vertexSeeds": { - "c1": 3.967332446664318, - "c2": 3.8332898997358313, - "c3": 3.9759061935145095, - "c4": 4.04879603447851, - "c5": 3.99789955718478, - "c6": 3.7828117805921173, - "c7": 3.9115799289412805 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [238, 201, 159] }, @@ -269520,23 +269520,23 @@ "year": 1783, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -6.252755368233025, - "c2": 13.341141726846544, - "c3": -9.576055592031107, - "c4": 15.282656498688702, - "c5": 16.042839160434944, - "c6": -20.846486023956757, - "c7": 5.625657103243157 + "points": { + "c1": -2.116732708289362, + "c2": 13.800108104171443, + "c3": -33.37254710423855, + "c4": 26.471478880732676, + "c5": -23.689565383906213, + "c6": -35.103300599149414, + "c7": -14.337461691383957 }, - "vertexSeeds": { - "c1": 3.8991306253375853, - "c2": 3.88059463942877, - "c3": 3.985338103410787, - "c4": 3.9038646143157014, - "c5": 3.773313202006665, - "c6": 3.8081882271546603, - "c7": 3.793141307946951 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [58, 15, 49] }, @@ -269547,23 +269547,23 @@ "year": 1783, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 32.77319260729145, - "c2": 31.478303596563066, - "c3": -24.351968881244296, - "c4": -29.765682611847446, - "c5": 5.029653755796467, - "c6": -4.748432031789182, - "c7": -2.73576719806362 + "points": { + "c1": -3.3480923012814614, + "c2": -13.796811431093431, + "c3": -14.157370020631564, + "c4": -12.342138609193654, + "c5": 5.228603170083105, + "c6": -23.060221192673296, + "c7": 4.036127685601386 }, - "vertexSeeds": { - "c1": 14.228554234162596, - "c2": 14.193477168900156, - "c3": 14.178147703788081, - "c4": 14.257074834147286, - "c5": 14.181618485963662, - "c6": 14.271261358765534, - "c7": 14.202913455816338 + "offsets": { + "c1": 23.818770226537218, + "c2": 20.416088765603202, + "c3": 17.013407304669634, + "c4": 13.610725843735619, + "c5": 10.208044382801601, + "c6": 6.805362921867583, + "c7": 3.402681460934017 }, "rgb": [77, 76, 132] }, @@ -269574,23 +269574,23 @@ "year": 1784, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 43.07877170673689, - "c2": 5.071801828768741, - "c3": -29.771645509663376, - "c4": 3.582676133676962, - "c5": -40.23501999385017, - "c6": 47.65014240544966, - "c7": 34.398719972207516 + "points": { + "c1": 47.710201961259685, + "c2": -47.204386132266784, + "c3": 8.283166556969555, + "c4": 5.730043914889933, + "c5": -11.86353431197253, + "c6": -27.598686479445128, + "c7": -6.5600703844975925 }, - "vertexSeeds": { - "c1": 6.181196316296874, - "c2": 5.9139392337969445, - "c3": 6.041613810820134, - "c4": 6.215969581185142, - "c5": 6.102460052405926, - "c6": 6.163332230942677, - "c7": 6.110414573599227 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [86, 146, 138] }, @@ -269601,23 +269601,23 @@ "year": 1783, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 17.676429575114902, - "c2": 28.597208393435317, - "c3": -18.239962528114802, - "c4": 21.58807933903106, - "c5": -9.043443472014133, - "c6": 13.032163354895772, - "c7": -14.536488760838008 + "points": { + "c1": 10.277707904959641, + "c2": 9.326823816396448, + "c3": -18.359711226923995, + "c4": -31.65230774065681, + "c5": -18.18579156358861, + "c6": 35.37754969723705, + "c7": -5.138041331041734 }, - "vertexSeeds": { - "c1": 6.394560330189124, - "c2": 6.418162179310077, - "c3": 6.553125231241321, - "c4": 6.781148850182921, - "c5": 6.649266719184757, - "c6": 6.5317408600150335, - "c7": 6.552153658811697 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -269628,23 +269628,23 @@ "year": 1783, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 4.867470237020491, - "c2": 17.790218961413174, - "c3": -8.396041579477274, - "c4": 15.146770146684794, - "c5": 8.61459229640603, - "c6": 11.425096570443351, - "c7": -1.3355109902443978 + "points": { + "c1": -26.797440884201322, + "c2": -23.26572741675806, + "c3": -10.05506661153785, + "c4": 11.66749529137104, + "c5": 8.08493984905219, + "c6": 10.065551102262681, + "c7": 18.226811843790166 }, - "vertexSeeds": { - "c1": 1.8924100059734463, - "c2": 1.9080827391977695, - "c3": 1.9320185480005128, - "c4": 1.92817022696132, - "c5": 1.9220492785458534, - "c6": 1.8991650828048101, - "c7": 1.9094124383859732 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.801664355062415, + "c3": 2.3347202958853477, + "c4": 1.8677762367082806, + "c5": 1.4008321775312016, + "c6": 0.9338881183541344, + "c7": 0.4669440591770672 }, "rgb": [238, 201, 159] }, @@ -269655,23 +269655,23 @@ "year": 1783, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -28.08021107249133, - "c2": -21.968202391444414, - "c3": 11.306769565244622, - "c4": 8.689402830940224, - "c5": -20.138958512041125, - "c6": -28.091387616568625, - "c7": 25.573249170976986 + "points": { + "c1": 26.03640638904095, + "c2": 5.412429841690603, + "c3": 8.127928148790026, + "c4": -28.530644510565438, + "c5": -30.25871947136563, + "c6": 4.060060903851003, + "c7": -7.9413524571919325 }, - "vertexSeeds": { - "c1": 6.916448734197113, - "c2": 6.593136669078075, - "c3": 6.679476068880279, - "c4": 6.467123746724066, - "c5": 6.389777913453387, - "c6": 6.440792406158269, - "c7": 6.871444651238314 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -269682,23 +269682,23 @@ "year": 1783, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 3.7324513095671463, - "c2": 19.307038527890413, - "c3": 21.04866975206115, - "c4": -23.858689779844443, - "c5": 9.783745108363071, - "c6": 1.9248780020717007, - "c7": 18.843654888036788 + "points": { + "c1": -21.641434705835255, + "c2": -19.206003321255558, + "c3": -12.086356845105911, + "c4": -16.88311354824079, + "c5": -9.763399742345573, + "c6": 22.762948841650562, + "c7": -23.16343490675118 }, - "vertexSeeds": { - "c1": 2.8736039843574144, - "c2": 2.8897183016585317, - "c3": 2.7343755513961403, - "c4": 2.854507755600887, - "c5": 2.8898665179115866, - "c6": 2.6983193871817717, - "c7": 2.8703259333399784 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033281, + "c3": 3.467406380027741, + "c4": 2.773925104022188, + "c5": 2.080443828016647, + "c6": 1.386962552011094, + "c7": 0.6934812760055531 }, "rgb": [58, 15, 49] }, @@ -269709,23 +269709,23 @@ "year": 1784, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 46.00260218221632, - "c2": -7.329622956352864, - "c3": -35.64295625858824, - "c4": -27.69137797108017, - "c5": -31.258896502600763, - "c6": -17.925046240453256, - "c7": -12.263188180061185 + "points": { + "c1": 27.6084671301806, + "c2": -29.607788312812744, + "c3": -33.460521407870345, + "c4": 30.30478159882948, + "c5": 36.37694554263061, + "c6": -4.326856475722231, + "c7": 47.826611064752555 }, - "vertexSeeds": { - "c1": 7.524356601133707, - "c2": 7.532322665507673, - "c3": 7.520771008014659, - "c4": 7.522753611231184, - "c5": 7.524382578155304, - "c6": 7.526924741465935, - "c7": 7.531337375344084 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.79056865464602, + "c3": 8.992140545538707, + "c4": 7.19371243643068, + "c5": 5.395284327323367, + "c6": 3.59685621821534, + "c7": 1.7984281091080276 }, "rgb": [238, 201, 159] }, @@ -269736,23 +269736,23 @@ "year": 1784, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -30.00061002345421, - "c2": 35.12697509644591, - "c3": -22.178173223341787, - "c4": 13.32277608951491, - "c5": -44.49243595296597, - "c6": -41.726158008286205, - "c7": 45.729810653210585 + "points": { + "c1": -26.677642613792695, + "c2": -16.679499422378704, + "c3": -33.16758666723402, + "c4": -10.840228537154765, + "c5": 31.044118967169943, + "c6": 30.16217247269322, + "c7": 2.340321907478746 }, - "vertexSeeds": { - "c1": 3.7482780006024226, - "c2": 2.5929616934101896, - "c3": 2.6721515910744564, - "c4": 2.9142044922513404, - "c5": 3.8054096059073315, - "c6": 4.064454103164764, - "c7": 4.404267944077064 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055478, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.773925104022191, + "c7": 1.3869625520110955 }, "rgb": [222, 0, 59] }, @@ -269763,23 +269763,23 @@ "year": 1783, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -33.07393595657552, - "c2": -29.40438948330575, - "c3": -13.60913198450822, - "c4": 20.548206663543404, - "c5": 8.505747100839613, - "c6": -9.786345168972261, - "c7": 17.7891905679898 + "points": { + "c1": -27.503232389612045, + "c2": -13.002549967507989, + "c3": 7.898340099049982, + "c4": -33.574030672997296, + "c5": -38.15022896856345, + "c6": 36.43635684996735, + "c7": 36.43133502113223 }, - "vertexSeeds": { - "c1": 4.374038425387763, - "c2": 4.060875272720125, - "c3": 3.9254386358300435, - "c4": 4.393155292910338, - "c5": 3.9178249646600456, - "c6": 4.26910607638903, - "c7": 3.9814960011491207 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [238, 201, 159] }, @@ -269790,23 +269790,23 @@ "year": 1783, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -7.734029250424214, - "c2": -6.620722393433486, - "c3": 2.2800973910677413, - "c4": 5.621946041354484, - "c5": 26.52578911044064, - "c6": 23.832297593210342, - "c7": -32.93852044420132 + "points": { + "c1": -29.085861427439156, + "c2": 2.1267195488837487, + "c3": 32.63651697238918, + "c4": 23.4233110498501, + "c5": 34.83127707416279, + "c6": -11.879101883426845, + "c7": 2.537472195473036 }, - "vertexSeeds": { - "c1": 15.899115284100262, - "c2": 15.997996513274822, - "c3": 15.64019594314574, - "c4": 15.610627521738708, - "c5": 15.851394003123671, - "c6": 15.783379972867099, - "c7": 16.17524284518583 + "offsets": { + "c1": 27.184466019417474, + "c2": 23.300970873786433, + "c3": 19.417475728155303, + "c4": 15.533980582524258, + "c5": 11.650485436893216, + "c6": 7.766990291262087, + "c7": 3.8834951456310436 }, "rgb": [86, 146, 138] }, @@ -269817,23 +269817,23 @@ "year": 1784, "resistanceReported": false, "duration": 46224000, - "curveSeeds": { - "c1": -5.30003926454507, - "c2": -44.772127169570396, - "c3": -25.369101114394432, - "c4": 39.72228528384304, - "c5": 8.053917860163416, - "c6": 34.35570368389717, - "c7": -20.641089651386814 + "points": { + "c1": 43.537091031722504, + "c2": -34.82157962795409, + "c3": -57.86103951613672, + "c4": -5.64546090679071, + "c5": 31.12339921721435, + "c6": 1.2328012228224807, + "c7": -31.981951220383753 }, - "vertexSeeds": { - "c1": 6.004399677227917, - "c2": 6.614723946227602, - "c3": 5.883018188224345, - "c4": 6.403162266971368, - "c5": 6.300104863239867, - "c6": 6.694214625851562, - "c7": 5.971779809203057 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [58, 15, 49] }, @@ -269844,23 +269844,23 @@ "year": 1786, "resistanceReported": false, "duration": 109814400, - "curveSeeds": { - "c1": 29.450403432283963, - "c2": 97.25490171483193, - "c3": 113.29939060583055, - "c4": 56.28473916103434, - "c5": -128.33692384518102, - "c6": -43.28247676535847, - "c7": -51.7487572763894 + "points": { + "c1": -75.48637885841097, + "c2": 54.92012905907666, + "c3": 44.15114914218975, + "c4": 56.13430804167089, + "c5": 40.52826994327202, + "c6": -28.229796576474172, + "c7": -46.282446675518585 }, - "vertexSeeds": { - "c1": 2.647083451273136, - "c2": 2.9704908801188346, - "c3": 2.785121749271274, - "c4": 2.446436137990954, - "c5": 2.4861369012196626, - "c6": 2.4721134465954413, - "c7": 2.5144469990989005 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676836, + "c3": 3.837263060564032, + "c4": 3.069810448451224, + "c5": 2.3023578363384196, + "c6": 1.534905224225612, + "c7": 0.767452612112806 }, "rgb": [238, 201, 159] }, @@ -269871,23 +269871,23 @@ "year": 1784, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": -24.611402865780818, - "c2": 30.189597970985062, - "c3": 18.45218151633206, - "c4": -48.55344195824811, - "c5": 10.989562972366087, - "c6": -14.320812010466113, - "c7": -5.562089872831763 + "points": { + "c1": -39.93601169160848, + "c2": 51.22935920431304, + "c3": 14.475782508850742, + "c4": -46.88273546591914, + "c5": -16.190159947853864, + "c6": 22.812398188751104, + "c7": -45.35409262445039 }, - "vertexSeeds": { - "c1": 8.348345854412875, - "c2": 8.053527000086182, - "c3": 9.562743986094773, - "c4": 9.092755021413627, - "c5": 9.849047325932816, - "c6": 8.533666473481174, - "c7": 9.326413897621299 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.174757281553397, + "c3": 11.812297734627832, + "c4": 9.449838187702264, + "c5": 7.0873786407766985, + "c6": 4.724919093851132, + "c7": 2.362459546925566 }, "rgb": [58, 15, 49] }, @@ -269898,23 +269898,23 @@ "year": 1784, "resistanceReported": false, "duration": 53049600, - "curveSeeds": { - "c1": 32.38441450548177, - "c2": 62.576552771491606, - "c3": 22.345264903745985, - "c4": 28.503683926904685, - "c5": -40.32676870849581, - "c6": -20.219940547337693, - "c7": 22.725600139829282 + "points": { + "c1": -11.871467364727707, + "c2": 21.012453214862433, + "c3": -2.864122369414133, + "c4": 62.428749356156146, + "c5": -5.200342946568313, + "c6": -43.784034455112845, + "c7": -6.699298138018136 }, - "vertexSeeds": { - "c1": 2.9036114908046318, - "c2": 2.9046453853242125, - "c3": 2.831797587508082, - "c4": 2.884590036767604, - "c5": 2.927464134393764, - "c6": 2.7949015212907753, - "c7": 2.7669567436876674 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194175, + "c3": 3.559870550161812, + "c4": 2.8478964401294498, + "c5": 2.1359223300970873, + "c6": 1.4239482200647249, + "c7": 0.7119741100323624 }, "rgb": [86, 146, 138] }, @@ -269925,23 +269925,23 @@ "year": 1784, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 41.58600323411813, - "c2": -13.276577500187322, - "c3": 42.72929124224438, - "c4": -51.98589547579249, - "c5": -42.10172247639143, - "c6": 36.03625280745565, - "c7": 32.28286054110074 + "points": { + "c1": 44.133669388023215, + "c2": 16.378847746154754, + "c3": 32.72203427967306, + "c4": -29.504867305305453, + "c5": 9.077880040791335, + "c6": 43.00543510945044, + "c7": 19.59128420611483 }, - "vertexSeeds": { - "c1": 5.367834097744101, - "c2": 5.187613499243909, - "c3": 5.617194081669759, - "c4": 5.245524280490252, - "c5": 5.238464032427049, - "c6": 5.256191337445794, - "c7": 5.489854096002639 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [86, 146, 138] }, @@ -269952,23 +269952,23 @@ "year": 1784, "resistanceReported": false, "duration": 45273600, - "curveSeeds": { - "c1": -13.1494132865923, - "c2": 42.021901617985776, - "c3": 8.251756237905724, - "c4": -11.444825490208636, - "c5": 50.39594941000273, - "c6": 15.46253401920184, - "c7": -39.27631630930736 + "points": { + "c1": 17.5659522090712, + "c2": -16.678416409442434, + "c3": -57.73426637476996, + "c4": 18.42076297695749, + "c5": 30.438985274576922, + "c6": 24.745016349182265, + "c7": 29.142699415181397 }, - "vertexSeeds": { - "c1": 3.2076532732157843, - "c2": 3.3917457549144983, - "c3": 3.282608421709256, - "c4": 3.237844779358247, - "c5": 3.276642418905177, - "c6": 3.2388747516260725, - "c7": 3.332430949898361 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159501, + "c3": 4.114655570966251, + "c4": 3.2917244567730006, + "c5": 2.4687933425797506, + "c6": 1.6458622283865003, + "c7": 0.8229311141932502 }, "rgb": [58, 15, 49] }, @@ -269979,23 +269979,23 @@ "year": 1783, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 13.629303241480368, - "c2": -4.253617564696828, - "c3": 19.779223988815158, - "c4": -20.945130251460117, - "c5": -2.071277714246463, - "c6": -19.642733514018243, - "c7": -4.462889826782636 + "points": { + "c1": -23.758785333825905, + "c2": -18.53317808208318, + "c3": 11.978595689633803, + "c4": -21.654003425181195, + "c5": -18.346281465946706, + "c6": -13.102950600595808, + "c7": -6.34887110731583 }, - "vertexSeeds": { - "c1": 5.637472665049361, - "c2": 5.991175213589646, - "c3": 5.8623670581191, - "c4": 5.99653967729481, - "c5": 5.209761362399589, - "c6": 5.513206228924561, - "c7": 5.582341220883724 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [222, 0, 59] }, @@ -270006,23 +270006,23 @@ "year": 1783, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 0.11890713642863204, - "c2": 19.862249920322128, - "c3": 17.358741859036606, - "c4": -4.093320983774561, - "c5": 15.55550915437886, - "c6": -15.280198658574403, - "c7": -31.569931355358026 + "points": { + "c1": 36.25726199091895, + "c2": 6.905271546101794, + "c3": -34.128399091545845, + "c4": 13.136972693092424, + "c5": 31.70809427229986, + "c6": -2.782894249930102, + "c7": -18.47474857329364 }, - "vertexSeeds": { - "c1": 6.71684454321748, - "c2": 6.427858686882735, - "c3": 6.457296342512297, - "c4": 6.4111623283585635, - "c5": 6.365428727511647, - "c6": 6.836158594401242, - "c7": 6.908591857544198 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -270033,23 +270033,23 @@ "year": 1783, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 40.82287348175665, - "c2": 41.356180768749404, - "c3": 22.17640632551855, - "c4": -32.856609171204276, - "c5": -9.100073412671648, - "c6": 19.524154429702932, - "c7": -34.83853536488915 + "points": { + "c1": 16.16920339197023, + "c2": 39.62647039986309, + "c3": 23.821633863338924, + "c4": 14.032027549449339, + "c5": 6.594123872595809, + "c6": -20.092794330893092, + "c7": -41.93449808366616 }, - "vertexSeeds": { - "c1": 12.290657706421705, - "c2": 12.37087807545923, - "c3": 12.502837040802405, - "c4": 11.547672487790548, - "c5": 12.237573110066464, - "c6": 11.510781346400579, - "c7": 12.398717600095582 + "offsets": { + "c1": 21.100323624595468, + "c2": 18.085991678224676, + "c3": 15.071659731853922, + "c4": 12.057327785483132, + "c5": 9.042995839112338, + "c6": 6.0286638927415455, + "c7": 3.0143319463707923 }, "rgb": [86, 146, 138] }, @@ -270060,23 +270060,23 @@ "year": 1784, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 9.615204241622706, - "c2": 35.67952975566692, - "c3": 27.031218241518346, - "c4": -43.67603875333647, - "c5": 29.034075751911786, - "c6": 33.970092682927714, - "c7": -30.660515613209704 + "points": { + "c1": -4.847194841651195, + "c2": 41.60694206151322, + "c3": -22.79712186092144, + "c4": 18.805237706905743, + "c5": 24.86924856135259, + "c6": 34.87585619014813, + "c7": 27.766564471151426 }, - "vertexSeeds": { - "c1": 2.906779556654937, - "c2": 3.040986846799759, - "c3": 2.926837503035062, - "c4": 3.084107947497414, - "c5": 3.003429062556947, - "c6": 3.0115592370879747, - "c7": 2.926079691128066 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435503, + "c3": 3.6985668053629275, + "c4": 2.9588534442903396, + "c5": 2.2191400832177517, + "c6": 1.4794267221451636, + "c7": 0.739713361072588 }, "rgb": [77, 76, 132] }, @@ -270087,23 +270087,23 @@ "year": 1783, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 23.39294318555759, - "c2": 10.390423607269334, - "c3": -9.716746601881962, - "c4": 34.216277076277436, - "c5": 17.894560341004293, - "c6": -0.2477996327209624, - "c7": 14.962340950793518 + "points": { + "c1": -8.680506068932033, + "c2": 30.87208901460788, + "c3": 19.031680154965493, + "c4": 35.326599204665214, + "c5": 11.189416464130673, + "c6": 17.871839830452878, + "c7": 31.667392167100303 }, - "vertexSeeds": { - "c1": 6.411884001626857, - "c2": 6.573470349638031, - "c3": 6.831695655470431, - "c4": 6.752999519318494, - "c5": 6.948433799859465, - "c6": 6.522738605230932, - "c7": 6.493225090454925 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -270114,23 +270114,23 @@ "year": 1783, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -0.3837238424404603, - "c2": 27.11106110017706, - "c3": 27.80449285763752, - "c4": -21.87170306319253, - "c5": -34.767353933219894, - "c6": -29.671834889584986, - "c7": -17.82308738465615 + "points": { + "c1": 31.544560914392484, + "c2": 31.779290418703347, + "c3": -28.278461029738942, + "c4": -21.475145055585717, + "c5": 28.43709464999109, + "c6": 30.478180592968265, + "c7": -9.482421131512282 }, - "vertexSeeds": { - "c1": 4.104048236467533, - "c2": 4.230807705498087, - "c3": 3.9585952484665596, - "c4": 4.28153375730697, - "c5": 4.305233188760326, - "c6": 3.947782341091127, - "c7": 3.989683718814572 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [238, 201, 159] }, @@ -270141,23 +270141,23 @@ "year": 1783, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 21.27720736286262, - "c2": -2.8004153653920056, - "c3": -31.079323560147948, - "c4": 2.302102316796649, - "c5": 23.117421309202, - "c6": 5.731645881210724, - "c7": -33.327640862682316 + "points": { + "c1": -40.766012456868445, + "c2": -41.40575373128905, + "c3": 0.04274952125650344, + "c4": 19.581439783759933, + "c5": 32.50774925829431, + "c6": 14.561224827245695, + "c7": 8.312957009969566 }, - "vertexSeeds": { - "c1": 3.3278319461383083, - "c2": 3.211579826951543, - "c3": 3.041816374695527, - "c4": 3.112478361417296, - "c5": 3.0611464861620603, - "c6": 3.28905712700401, - "c7": 3.17936056565422 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079057, + "c3": 4.068423485899214, + "c4": 3.2547387887193713, + "c5": 2.4410540915395287, + "c6": 1.6273693943596856, + "c7": 0.8136846971798428 }, "rgb": [222, 0, 59] }, @@ -270168,23 +270168,23 @@ "year": 1784, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -27.4304706301672, - "c2": -30.895144362108848, - "c3": 28.30219409212763, - "c4": -38.93638161181124, - "c5": -7.278573029496997, - "c6": 26.17329146322755, - "c7": 39.57869706101052 + "points": { + "c1": -7.871167904374772, + "c2": -40.44380481964525, + "c3": -43.169738242593375, + "c4": 22.0545918396056, + "c5": -21.32412182626848, + "c6": -21.30227723863009, + "c7": -35.159209476606094 }, - "vertexSeeds": { - "c1": 7.063119223602272, - "c2": 6.890809892212347, - "c3": 7.314569087692175, - "c4": 6.60632002735104, - "c5": 7.032752526354074, - "c6": 7.074007933017525, - "c7": 7.130453590228531 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284328, + "c3": 8.78409616273694, + "c4": 7.027276930189552, + "c5": 5.270457697642164, + "c6": 3.513638465094776, + "c7": 1.756819232547388 }, "rgb": [77, 76, 132] }, @@ -270195,23 +270195,23 @@ "year": 1783, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 4.503937666880596, - "c2": -19.01501654321388, - "c3": -4.9165507678950995, - "c4": 14.123438856060133, - "c5": -1.2736484390080847, - "c6": -24.478743429494415, - "c7": -10.165484762968372 + "points": { + "c1": -17.511632395923577, + "c2": -2.0120435165821853, + "c3": -1.3112952769139845, + "c4": -25.60587092452884, + "c5": -8.329471913713764, + "c6": -21.328345069576457, + "c7": 4.804963296524541 }, - "vertexSeeds": { - "c1": 12.20768423766366, - "c2": 12.32924969007147, - "c3": 12.61249930653746, - "c4": 12.2771448981116, - "c5": 12.52943858711137, - "c6": 12.546810781460778, - "c7": 12.73078149465814 + "offsets": { + "c1": 21.45631067961165, + "c2": 18.39112343966713, + "c3": 15.325936199722609, + "c4": 12.260748959778086, + "c5": 9.195561719833565, + "c6": 6.130374479889043, + "c7": 3.0651872399445215 }, "rgb": [58, 15, 49] }, @@ -270222,23 +270222,23 @@ "year": 1783, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 8.984339062793214, - "c2": -14.519140286511865, - "c3": 29.158579273298006, - "c4": -20.72659619154932, - "c5": -9.813153536785947, - "c6": 20.259636817936464, - "c7": 24.3438420382225 + "points": { + "c1": -13.38473223385429, + "c2": -17.332313889340405, + "c3": 23.161825858108866, + "c4": 1.7587502478812063, + "c5": -9.210227057786366, + "c6": 24.87566654547332, + "c7": -6.598613303837119 }, - "vertexSeeds": { - "c1": 4.140373957699194, - "c2": 4.269248954690146, - "c3": 4.30719471660193, - "c4": 4.229142649042873, - "c5": 4.0729803401370175, - "c6": 4.068190507188481, - "c7": 4.277544276044815 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009712, + "c3": 5.177993527508098, + "c4": 4.14239482200647, + "c5": 3.106796116504856, + "c6": 2.071197411003242, + "c7": 1.0355987055016145 }, "rgb": [86, 146, 138] }, @@ -270249,23 +270249,23 @@ "year": 1783, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -28.728285893517274, - "c2": 4.418249684162589, - "c3": 3.226894995999345, - "c4": 7.642181519853928, - "c5": -0.15833613045435868, - "c6": -27.295181353357197, - "c7": 20.39910434584612 + "points": { + "c1": -24.015119297910147, + "c2": 17.4970696008913, + "c3": 4.184790255716322, + "c4": 15.753480444782227, + "c5": 18.11463029007915, + "c6": 10.183210017739825, + "c7": 4.585290453404703 }, - "vertexSeeds": { - "c1": 1.9946073629432277, - "c2": 2.0093871855197833, - "c3": 2.193155206016157, - "c4": 2.0278983194656024, - "c5": 2.0484909421179243, - "c6": 1.9588020059165228, - "c7": 1.886003966466549 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [77, 76, 132] }, @@ -270276,23 +270276,23 @@ "year": 1783, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 21.340587794604264, - "c2": 11.413670383679918, - "c3": 7.7685204129443655, - "c4": 0.07472434964735086, - "c5": -10.78019183384535, - "c6": 21.25234368127428, - "c7": -24.766602374958588 + "points": { + "c1": -16.39292429467462, + "c2": 3.6723495453261528, + "c3": -22.466938928580525, + "c4": -3.1697108509380456, + "c5": 9.65736755731606, + "c6": 25.02441861265231, + "c7": -26.61075076591199 }, - "vertexSeeds": { - "c1": 2.2134113215632203, - "c2": 2.2811961102697738, - "c3": 2.3804719454717898, - "c4": 2.322275295062129, - "c5": 2.443473844993982, - "c6": 2.299092878552625, - "c7": 2.401844514120995 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081824, + "c3": 2.935737401756819, + "c4": 2.348589921405455, + "c5": 1.7614424410540912, + "c6": 1.1742949607027275, + "c7": 0.5871474803513638 }, "rgb": [58, 15, 49] }, @@ -270303,23 +270303,23 @@ "year": 1783, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -20.818511660398634, - "c2": 1.3716487728885838, - "c3": 10.451805926598638, - "c4": 9.61140268255027, - "c5": -2.3829089408105766, - "c6": -17.10043637937878, - "c7": 17.40031068704993 + "points": { + "c1": 11.310960493399769, + "c2": 7.353809676182479, + "c3": 6.697057712927027, + "c4": 12.64207100048521, + "c5": 11.551676777175743, + "c6": 4.5387102972335605, + "c7": 19.074688325905 }, - "vertexSeeds": { - "c1": 3.789831236681734, - "c2": 3.93380333718761, - "c3": 3.961081917390001, - "c4": 3.9669133045170333, - "c5": 4.024396631744567, - "c6": 3.9583464004432787, - "c7": 3.9469661225557964 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -270330,23 +270330,23 @@ "year": 1783, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -5.972576678801275, - "c2": -30.360407281398928, - "c3": -28.794500506361945, - "c4": -11.565147011461132, - "c5": 14.714691625269325, - "c6": -14.411947988889093, - "c7": 14.18701662962306 + "points": { + "c1": 13.03939456970491, + "c2": 27.743352484163623, + "c3": 17.33069493984319, + "c4": -19.04931976136056, + "c5": -25.84892330881249, + "c6": 4.592220579627437, + "c7": 17.542214136642585 }, - "vertexSeeds": { - "c1": 16.722684373389967, - "c2": 15.614978214870783, - "c3": 16.06566051291197, - "c4": 16.793967457833087, - "c5": 16.129135681384874, - "c6": 16.243828699020753, - "c7": 16.702227860217054 + "offsets": { + "c1": 28.058252427184467, + "c2": 24.049930651872394, + "c3": 20.04160887656032, + "c4": 16.03328710124825, + "c5": 12.024965325936218, + "c6": 8.016643550624146, + "c7": 4.008321775312073 }, "rgb": [238, 201, 159] }, @@ -270357,23 +270357,23 @@ "year": 1784, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 48.66409857836394, - "c2": -25.80476843940457, - "c3": -35.504514220244445, - "c4": 13.075368223489534, - "c5": -22.576990775523132, - "c6": -8.019302357488108, - "c7": -35.83278384781732 + "points": { + "c1": 17.505265455717357, + "c2": 42.560231693634286, + "c3": -44.69439469963688, + "c4": 26.29952559845885, + "c5": -8.973054510213373, + "c6": 31.709741260150402, + "c7": -36.808053493352645 }, - "vertexSeeds": { - "c1": 9.60218043030414, - "c2": 9.973283800795466, - "c3": 9.474855830036487, - "c4": 9.841643830215926, - "c5": 9.555278493151445, - "c6": 9.665044567200407, - "c7": 9.731855974692639 + "offsets": { + "c1": 17.216828478964402, + "c2": 14.757281553398052, + "c3": 12.297734627831703, + "c4": 9.838187702265397, + "c5": 7.378640776699026, + "c6": 4.919093851132699, + "c7": 2.4595469255663494 }, "rgb": [86, 146, 138] }, @@ -270384,23 +270384,23 @@ "year": 1783, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 23.086662695166268, - "c2": 1.1412228747814268, - "c3": 37.47655329842678, - "c4": 28.547205294623154, - "c5": 22.474865279936836, - "c6": 31.330184741133777, - "c7": 32.513687618976164 + "points": { + "c1": -11.41423554373316, + "c2": -33.284643910959545, + "c3": 31.147427990082207, + "c4": -35.35539061566077, + "c5": -10.317684231255566, + "c6": -23.557211369958374, + "c7": 18.37594344700593 }, - "vertexSeeds": { - "c1": 8.751637424405809, - "c2": 8.776304126845256, - "c3": 9.260203412452428, - "c4": 9.208554076068932, - "c5": 9.336688600199633, - "c6": 9.307022958916878, - "c7": 9.308803898900013 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507628, + "c3": 11.211280628756358, + "c4": 8.969024503005086, + "c5": 6.726768377253814, + "c6": 4.484512251502543, + "c7": 2.2422561257512714 }, "rgb": [86, 146, 138] }, @@ -270411,23 +270411,23 @@ "year": 1784, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 22.490826534204132, - "c2": 9.558852549271379, - "c3": 31.42231294641489, - "c4": -10.384202509090663, - "c5": 0.3573608715457084, - "c6": 10.35506863395738, - "c7": 7.797797901474169 + "points": { + "c1": 15.408011985449683, + "c2": 39.141334230374824, + "c3": -33.70636110189951, + "c4": -42.15516035938775, + "c5": -3.5199671981966034, + "c6": -25.480110079569492, + "c7": 43.28536786005958 }, - "vertexSeeds": { - "c1": 5.212043456499106, - "c2": 5.186252739815158, - "c3": 5.1736007212589925, - "c4": 5.229602273979815, - "c5": 5.481670136553274, - "c6": 5.175629990506025, - "c7": 5.456417008976926 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.96116504854368, + "c3": 6.634304207119745, + "c4": 5.307443365695787, + "c5": 3.980582524271852, + "c6": 2.6537216828478933, + "c7": 1.3268608414239347 }, "rgb": [238, 201, 159] }, @@ -270438,23 +270438,23 @@ "year": 1783, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -27.618097940961327, - "c2": -14.885394722824454, - "c3": -17.172146121815366, - "c4": 10.934335456958706, - "c5": -5.6090219120493, - "c6": 25.774663398442, - "c7": 0.06838698454479442 + "points": { + "c1": -19.331814745197182, + "c2": -14.78261800212994, + "c3": 12.731511590284413, + "c4": 27.135371158243316, + "c5": 17.500931614213833, + "c6": -19.866044679840858, + "c7": -33.668510422416105 }, - "vertexSeeds": { - "c1": 4.007863483690029, - "c2": 3.800650488417016, - "c3": 3.8569711532564654, - "c4": 3.9698477287793685, - "c5": 3.8800203651490146, - "c6": 3.8491698532580454, - "c7": 4.020520635709502 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -270465,23 +270465,23 @@ "year": 1784, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": -43.45369246057982, - "c2": 16.155455398742305, - "c3": 53.17744722962159, - "c4": 37.031141864027845, - "c5": -9.316500690371214, - "c6": 3.878556163172206, - "c7": 5.5122187693801905 + "points": { + "c1": 48.6087339895703, + "c2": -36.59757961377919, + "c3": 1.4838495194312387, + "c4": 48.59118014995262, + "c5": -38.75232804530254, + "c6": 22.4924885731521, + "c7": -12.152558079121597 }, - "vertexSeeds": { - "c1": 3.928057151679154, - "c2": 3.6911048867078624, - "c3": 3.6963189831798826, - "c4": 3.7739064813277223, - "c5": 3.942559276791803, - "c6": 3.9483056193224533, - "c7": 3.9344637079215765 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245494, + "c3": 4.7387887193712475, + "c4": 3.791030975496988, + "c5": 2.843273231622741, + "c6": 1.895515487748494, + "c7": 0.947757743874247 }, "rgb": [58, 15, 49] }, @@ -270492,23 +270492,23 @@ "year": 1783, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -14.852942176297743, - "c2": 10.927270475094666, - "c3": -14.99948472256078, - "c4": -5.8081346079012235, - "c5": 20.95284860234608, - "c6": 17.736043183712972, - "c7": 10.647309326409172 + "points": { + "c1": -0.6874976941150557, + "c2": -9.881211335822389, + "c3": -14.091192441410215, + "c4": -4.4455389502215645, + "c5": -7.433100089640899, + "c6": 24.64226001979197, + "c7": -9.311029890819436 }, - "vertexSeeds": { - "c1": 6.815678707568868, - "c2": 6.407837483122378, - "c3": 6.3834256113545935, - "c4": 6.948991948919371, - "c5": 6.578265605751058, - "c6": 6.454691085944515, - "c7": 6.454676282909282 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -270519,23 +270519,23 @@ "year": 1784, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -37.31132677485362, - "c2": 7.419268244274882, - "c3": 10.441511608155778, - "c4": 23.846353556247628, - "c5": -34.25849963489272, - "c6": -29.53760318886175, - "c7": 4.897364522544585 + "points": { + "c1": 18.28498997390242, + "c2": 10.60951501445426, + "c3": 16.588357338199856, + "c4": -20.286009850278464, + "c5": -6.622093385094175, + "c6": -39.950898301601306, + "c7": 28.115127621794514 }, - "vertexSeeds": { - "c1": 8.139931515644252, - "c2": 7.798592481146369, - "c3": 8.025509466322044, - "c4": 8.104058705139995, - "c5": 8.121741351647659, - "c6": 8.45195925621357, - "c7": 8.237348905484058 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147487, + "c4": 8.081368469717994, + "c5": 6.061026352288501, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [58, 15, 49] }, @@ -270546,23 +270546,23 @@ "year": 1784, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 33.39447568674689, - "c2": -27.3131687169581, - "c3": 12.67994773392499, - "c4": 12.826415605716463, - "c5": -1.3475233413779364, - "c6": 20.12724670591261, - "c7": 12.852993608215208 + "points": { + "c1": 9.758859179314598, + "c2": 20.83355287641271, + "c3": -41.72017550048628, + "c4": 26.00702437930056, + "c5": -43.28244253180327, + "c6": -13.306794876242193, + "c7": 4.877518781652249 }, - "vertexSeeds": { - "c1": 7.710407291394198, - "c2": 7.157927646242617, - "c3": 7.198892253478951, - "c4": 7.329236455526407, - "c5": 8.061883217468262, - "c6": 7.259378385947285, - "c7": 7.579541701656115 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.6504854368932, + "c3": 9.708737864077666, + "c4": 7.766990291262131, + "c5": 5.825242718446607, + "c6": 3.883495145631071, + "c7": 1.9417475728155356 }, "rgb": [77, 76, 132] }, @@ -270573,23 +270573,23 @@ "year": 1784, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 2.6290244680423953, - "c2": -16.504821296330558, - "c3": -3.9402039996559495, - "c4": 45.90133508477305, - "c5": -15.900087137290235, - "c6": 14.95704292316988, - "c7": 46.22463283281519 + "points": { + "c1": 48.679477178557065, + "c2": -22.561330126389716, + "c3": -36.02041710872404, + "c4": -18.930743762579066, + "c5": 20.81256106427263, + "c6": -26.69604272712056, + "c7": 44.2437898012556 }, - "vertexSeeds": { - "c1": 5.329700320721407, - "c2": 6.069143111615008, - "c3": 5.534973633867224, - "c4": 5.814372159856573, - "c5": 5.27213103423425, - "c6": 5.676000535061704, - "c7": 5.797098673889694 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750343, + "c3": 7.32778548312529, + "c4": 5.862228386500227, + "c5": 4.396671289875178, + "c6": 2.9311141932501137, + "c7": 1.4655570966250506 }, "rgb": [77, 76, 132] }, @@ -270600,23 +270600,23 @@ "year": 1784, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -37.35785159457204, - "c2": -9.904665821819442, - "c3": 5.1111704614947655, - "c4": -38.361000962915526, - "c5": 7.139793368518539, - "c6": -25.55940014808494, - "c7": 10.507859241434254 + "points": { + "c1": -32.8047913730903, + "c2": -18.40760830664808, + "c3": 41.972904949649276, + "c4": 16.68132561053916, + "c5": -10.739481023873527, + "c6": 29.40085515983047, + "c7": 18.673338904537623 }, - "vertexSeeds": { - "c1": 5.5097340365412695, - "c2": 5.778624933594512, - "c3": 5.601743312188621, - "c4": 5.525833691183808, - "c5": 5.718444144112826, - "c6": 5.473038222269885, - "c7": 5.516739541876931 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147007, + "c3": 6.981044845122518, + "c4": 5.584835876098005, + "c5": 4.188626907073516, + "c6": 2.7924179380490024, + "c7": 1.3962089690245139 }, "rgb": [77, 76, 132] }, @@ -270627,23 +270627,23 @@ "year": 1783, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -5.436993260988444, - "c2": -31.31392601598276, - "c3": 28.509856902444696, - "c4": -11.857779970007947, - "c5": -27.60558955818601, - "c6": 25.83404949394643, - "c7": -26.979852980982162 + "points": { + "c1": -33.53340307887236, + "c2": 14.179935755419685, + "c3": 27.012609402517093, + "c4": -34.73654892898377, + "c5": -19.865300059647467, + "c6": 28.90301491632424, + "c7": -20.168579856652862 }, - "vertexSeeds": { - "c1": 9.679505561012464, - "c2": 10.255227368023126, - "c3": 10.00487318688782, - "c4": 10.019268935644632, - "c5": 9.42330678999533, - "c6": 9.61106128719817, - "c7": 9.973354518690556 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317603, + "c3": 12.251502542764657, + "c4": 9.801202034211748, + "c5": 7.350901525658801, + "c6": 4.9006010171058545, + "c7": 2.4503005085529272 }, "rgb": [77, 76, 132] }, @@ -270654,23 +270654,23 @@ "year": 1783, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -0.510416310231534, - "c2": 18.920029305058442, - "c3": -7.388329090627472, - "c4": -22.860270830849835, - "c5": 28.33736995366708, - "c6": 20.37813083204177, - "c7": -19.294827893627865 + "points": { + "c1": 35.78002897301258, + "c2": -8.183671556345484, + "c3": -10.967329112632356, + "c4": -34.403923799364144, + "c5": -16.73125953762838, + "c6": -23.02167087569878, + "c7": 4.326227400000512 }, - "vertexSeeds": { - "c1": 8.746529037513278, - "c2": 9.043487003962756, - "c3": 9.003970923391758, - "c4": 9.036376847989025, - "c5": 9.075520101768646, - "c6": 8.894797187674843, - "c7": 9.092694700095775 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904304, + "c3": 10.864539990753594, + "c4": 8.691631992602845, + "c5": 6.518723994452133, + "c6": 4.345815996301423, + "c7": 2.1729079981507113 }, "rgb": [86, 146, 138] }, @@ -270681,23 +270681,23 @@ "year": 1783, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 15.429084540054632, - "c2": 5.6397648730330445, - "c3": -18.843165612801904, - "c4": -8.520746951567649, - "c5": -2.8458991069825785, - "c6": -3.732943673583211, - "c7": 14.941097864827071 + "points": { + "c1": 30.418458833398404, + "c2": -25.911298792171472, + "c3": -16.639579546425956, + "c4": -8.146831180473782, + "c5": -15.348821795352816, + "c6": -11.378184086446542, + "c7": 6.423426889156005 }, - "vertexSeeds": { - "c1": 11.719356648103695, - "c2": 11.454007525863442, - "c3": 11.734519747876043, - "c4": 11.501121058393617, - "c5": 11.648321800923418, - "c6": 11.86428189651025, - "c7": 11.855372075240346 + "offsets": { + "c1": 19.93527508090615, + "c2": 17.0873786407767, + "c3": 14.239482200647249, + "c4": 11.391585760517799, + "c5": 8.54368932038835, + "c6": 5.6957928802588995, + "c7": 2.8478964401294498 }, "rgb": [238, 201, 159] }, @@ -270708,23 +270708,23 @@ "year": 1784, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -15.364922566757155, - "c2": -10.556849212921072, - "c3": -20.838707422321633, - "c4": 25.147828838722724, - "c5": 19.649500255881925, - "c6": -35.78558632005892, - "c7": 35.92241861844203 + "points": { + "c1": -0.2009517675214454, + "c2": -20.37507401564774, + "c3": -34.364502873642586, + "c4": 4.201571971176179, + "c5": -22.20197607397793, + "c6": -14.43826242558179, + "c7": 32.079545158400144 }, - "vertexSeeds": { - "c1": 1.318096308152813, - "c2": 1.3405536453818796, - "c3": 1.3947039022615362, - "c4": 1.3753926992372192, - "c5": 1.3768115787100685, - "c6": 1.3807205839899148, - "c7": 1.35136037525524 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.024965325936203, + "c3": 1.6874711049468323, + "c4": 1.3499768839574686, + "c5": 1.012482662968098, + "c6": 0.6749884419787343, + "c7": 0.3374942209893637 }, "rgb": [86, 146, 138] }, @@ -270735,23 +270735,23 @@ "year": 1783, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -15.327967468678942, - "c2": 10.496753015280127, - "c3": 5.900548170159368, - "c4": 2.1089941580995486, - "c5": 14.142650204412917, - "c6": 6.1908234017925, - "c7": -23.312987274132958 + "points": { + "c1": -32.461040738095924, + "c2": 26.87118209480846, + "c3": -7.250435835333253, + "c4": 28.465690656864247, + "c5": -9.530015426101784, + "c6": 14.897882328390459, + "c7": -24.482707929522878 }, - "vertexSeeds": { - "c1": 12.152082611915136, - "c2": 12.716163851629526, - "c3": 11.663658914425044, - "c4": 12.73289921212855, - "c5": 12.612914459915089, - "c6": 12.06185295306258, - "c7": 12.687937453270893 + "offsets": { + "c1": 21.326860841423947, + "c2": 18.280166435506235, + "c3": 15.233472029588523, + "c4": 12.18677762367085, + "c5": 9.140083217753137, + "c6": 6.093388811835425, + "c7": 3.0466944059177123 }, "rgb": [238, 201, 159] }, @@ -270762,23 +270762,23 @@ "year": 1783, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -6.8014389440449, - "c2": 4.371463898432765, - "c3": 3.007681926071861, - "c4": 25.331658982836977, - "c5": -25.795062614592638, - "c6": 2.9448707604494615, - "c7": -12.195645619293433 + "points": { + "c1": -31.14171590415469, + "c2": -25.219777965171996, + "c3": 22.514684759285295, + "c4": 9.520808911949615, + "c5": 30.46193669027401, + "c6": 10.870752649424581, + "c7": -13.394274343916635 }, - "vertexSeeds": { - "c1": 11.142663763823794, - "c2": 11.166169671681985, - "c3": 11.167667544608134, - "c4": 11.182186612655132, - "c5": 11.19047829527674, - "c6": 11.17362424998735, - "c7": 11.17754837329572 + "offsets": { + "c1": 18.673139158576053, + "c2": 16.00554785020812, + "c3": 13.337956541840189, + "c4": 10.670365233472257, + "c5": 8.002773925103796, + "c6": 5.335182616735864, + "c7": 2.667591308367932 }, "rgb": [238, 201, 159] }, @@ -270789,23 +270789,23 @@ "year": 1783, "resistanceReported": false, "duration": 7430400, - "curveSeeds": { - "c1": 8.756754423510067, - "c2": 1.956985075946168, - "c3": 0.7479385986164289, - "c4": 7.990824715206934, - "c5": -17.03433821205287, - "c6": -0.997819980848508, - "c7": 8.981618954407207 + "points": { + "c1": -6.2737307341070245, + "c2": -9.052064059292215, + "c3": 19.281108014329018, + "c4": -7.382230641092482, + "c5": -14.136086551569793, + "c6": 4.90031307396163, + "c7": -16.956333885390553 }, - "vertexSeeds": { - "c1": 4.946065391439677, - "c2": 4.9536840787779335, - "c3": 4.939800763970429, - "c4": 4.942454266184021, - "c5": 4.939579678831225, - "c6": 4.963893052962479, - "c7": 4.962139710554484 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337065, + "c3": 5.94082293111426, + "c4": 4.752658344891455, + "c5": 3.5644937586685326, + "c6": 2.3763291724457276, + "c7": 1.1881645862228047 }, "rgb": [222, 0, 59] }, @@ -270816,23 +270816,23 @@ "year": 1784, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": -46.92121080040936, - "c2": -15.721457997103109, - "c3": -35.72677301640931, - "c4": 38.97104686234359, - "c5": -4.782683630471624, - "c6": -7.141557149099093, - "c7": -12.533037008358662 + "points": { + "c1": -47.890446458109466, + "c2": -27.96660372696896, + "c3": 19.021867345426166, + "c4": -47.46177493502178, + "c5": 23.280361071168507, + "c6": -41.84158482741848, + "c7": 46.46469352505604 }, - "vertexSeeds": { - "c1": 3.4196788845249615, - "c2": 3.428646282332804, - "c3": 3.579614491111851, - "c4": 3.556643467033386, - "c5": 3.42424115730383, - "c6": 3.456323746303526, - "c7": 3.58645420575418 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642168, + "c3": 4.392048081368468, + "c4": 3.513638465094779, + "c5": 2.635228848821079, + "c6": 1.7568192325473895, + "c7": 0.8784096162737 }, "rgb": [238, 201, 159] }, @@ -270843,23 +270843,23 @@ "year": 1783, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 32.071246836774066, - "c2": -28.046812452151666, - "c3": -13.977380169368331, - "c4": 29.853133117567154, - "c5": -13.45434896548835, - "c6": 9.483857854966395, - "c7": -21.370442731917283 + "points": { + "c1": -34.08600871189223, + "c2": 19.895274105775144, + "c3": 10.208213604104266, + "c4": -16.768753142518285, + "c5": -35.884072631770294, + "c6": -31.523497086763587, + "c7": 6.8887024228039735 }, - "vertexSeeds": { - "c1": 5.514644588519416, - "c2": 5.9089326791526, - "c3": 5.451322853893831, - "c4": 5.983961004193979, - "c5": 5.820219395076601, - "c6": 5.9784191421035855, - "c7": 5.879110231980136 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [86, 146, 138] }, @@ -270870,23 +270870,23 @@ "year": 1784, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 3.917013440154186, - "c2": 34.19989331172053, - "c3": 13.374776648120054, - "c4": 8.02279666958335, - "c5": 14.01487640050238, - "c6": -36.04392033899529, - "c7": 36.37766483827596 + "points": { + "c1": 34.51176054618372, + "c2": 28.889069316439844, + "c3": -14.51734801152637, + "c4": 6.511426981838085, + "c5": 14.769890359055786, + "c6": 2.7590897319268137, + "c7": -1.342298681754663 }, - "vertexSeeds": { - "c1": 8.545209099034546, - "c2": 8.719082538306147, - "c3": 8.64669794860755, - "c4": 8.572235978256971, - "c5": 8.61137534768299, - "c6": 8.587069144519106, - "c7": 8.642592923599654 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099836, + "c3": 10.402219140083252, + "c4": 8.321775312066586, + "c5": 6.241331484049918, + "c6": 4.160887656033334, + "c7": 2.080443828016667 }, "rgb": [222, 0, 59] }, @@ -270897,23 +270897,23 @@ "year": 1783, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 19.769790053004986, - "c2": 0.7384382747084395, - "c3": 4.940908564561081, - "c4": -10.098420464262393, - "c5": -8.222248375325393, - "c6": -11.375398034280074, - "c7": 27.89784502511314 + "points": { + "c1": -24.40370835734361, + "c2": -26.3223354016, + "c3": 19.924407512250674, + "c4": -17.77586722596123, + "c5": 30.310514988340415, + "c6": 19.636450699872235, + "c7": 26.93229071137158 }, - "vertexSeeds": { - "c1": 3.937370236005374, - "c2": 4.024556475583571, - "c3": 3.803997139622918, - "c4": 4.009292505485445, - "c5": 3.8294174816635125, - "c6": 3.9473380044245348, - "c7": 3.87682100910601 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -270924,23 +270924,23 @@ "year": 1783, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 13.866004023977304, - "c2": -14.032142046009376, - "c3": 16.334594931077376, - "c4": -25.750870363372172, - "c5": -32.39138469659035, - "c6": 6.949031121931121, - "c7": -12.119015225099794 + "points": { + "c1": -26.350994067986278, + "c2": -24.520596847816883, + "c3": 25.773808575117357, + "c4": 1.5320340386014735, + "c5": -26.787465004192452, + "c6": 29.008901087432292, + "c7": 1.870628490339172 }, - "vertexSeeds": { - "c1": 11.89320318148976, - "c2": 11.667171374045383, - "c3": 11.443730599660771, - "c4": 11.267141368293679, - "c5": 11.589805390347255, - "c6": 11.400223028382792, - "c7": 10.944311877895474 + "offsets": { + "c1": 19.93527508090615, + "c2": 17.08737864077669, + "c3": 14.239482200647236, + "c4": 11.391585760517781, + "c5": 8.543689320388367, + "c6": 5.695792880258913, + "c7": 2.8478964401294564 }, "rgb": [238, 201, 159] }, @@ -270951,23 +270951,23 @@ "year": 1784, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 17.07574189191142, - "c2": -9.972218152418364, - "c3": 34.26039307803049, - "c4": 38.564894595316275, - "c5": -1.8473404830751292, - "c6": -47.34489134673288, - "c7": -28.833561804323033 + "points": { + "c1": 0.16059110828756218, + "c2": 22.897925864600325, + "c3": -16.911058074087812, + "c4": -38.316301731065785, + "c5": 7.393762088014064, + "c6": -48.2188960765811, + "c7": 47.3570023663184 }, - "vertexSeeds": { - "c1": 3.449636746869824, - "c2": 3.671490150798267, - "c3": 3.513944322562081, - "c4": 3.709390587123755, - "c5": 3.4566246289268583, - "c6": 3.705177560738227, - "c7": 3.5832562188896717 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.43689320388349, + "c3": 4.5307443365695805, + "c4": 3.62459546925566, + "c5": 2.7184466019417504, + "c6": 1.81229773462783, + "c7": 0.9061488673139101 }, "rgb": [77, 76, 132] }, @@ -270978,23 +270978,23 @@ "year": 1784, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -36.31910313529047, - "c2": 21.106536780873206, - "c3": 25.59724082927589, - "c4": 26.847613476220346, - "c5": -33.95036108515807, - "c6": -34.82261000174893, - "c7": -35.83269617384109 + "points": { + "c1": 9.829756200987653, + "c2": -17.562681315998407, + "c3": 18.933288134331903, + "c4": 9.077580659037643, + "c5": -4.763572695339846, + "c6": 2.1983554542348642, + "c7": 34.087968660283664 }, - "vertexSeeds": { - "c1": 7.782794461957699, - "c2": 7.5669564568866665, - "c3": 7.90835216102334, - "c4": 7.511501905097965, - "c5": 7.4663005630177315, - "c6": 7.633780843747037, - "c7": 7.579839656714671 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812755, + "c3": 9.662505779010642, + "c4": 7.73000462320851, + "c5": 5.7975034674063775, + "c6": 3.865002311604265, + "c7": 1.9325011558021326 }, "rgb": [238, 201, 159] }, @@ -271005,23 +271005,23 @@ "year": 1783, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 22.715541673494677, - "c2": 28.216796723649935, - "c3": 8.962937538622228, - "c4": -27.775625490418125, - "c5": -13.79174251123014, - "c6": -13.5940433355684, - "c7": -27.098477861503063 + "points": { + "c1": 12.295812231093961, + "c2": 11.481139647781966, + "c3": 21.54865545800638, + "c4": -21.145998875718327, + "c5": -8.688601757882726, + "c6": 21.39138243798196, + "c7": 14.211906201632729 }, - "vertexSeeds": { - "c1": 4.96176473470889, - "c2": 5.011497501520017, - "c3": 4.772093293022168, - "c4": 4.916898175114729, - "c5": 4.988119928852245, - "c6": 4.926488452887402, - "c7": 4.7623646582203065 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.2676837725381525, + "c3": 6.056403143781782, + "c4": 4.845122515025436, + "c5": 3.6338418862690762, + "c6": 2.422561257512718, + "c7": 1.211280628756359 }, "rgb": [86, 146, 138] }, @@ -271032,23 +271032,23 @@ "year": 1783, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 20.433593197299814, - "c2": -13.168876474460623, - "c3": -11.100736643785293, - "c4": 15.417099040166562, - "c5": -17.269273749879538, - "c6": 16.073386019380138, - "c7": -16.09796030593843 + "points": { + "c1": 17.9308674793455, + "c2": -19.911879053998078, + "c3": 11.553949758279273, + "c4": -1.0412934803290383, + "c5": -18.53920555999165, + "c6": 15.82185322739305, + "c7": 19.701301152816427 }, - "vertexSeeds": { - "c1": 11.911360351070602, - "c2": 12.612722099890949, - "c3": 12.190803317621842, - "c4": 11.895636390285159, - "c5": 11.672934778347122, - "c6": 12.381035260402818, - "c7": 12.247715528923818 + "offsets": { + "c1": 21.197411003236247, + "c2": 18.169209431345344, + "c3": 15.141007859454437, + "c4": 12.112806287563576, + "c5": 9.084604715672672, + "c6": 6.056403143781766, + "c7": 3.0282015718909054 }, "rgb": [58, 15, 49] }, @@ -271059,23 +271059,23 @@ "year": 1784, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -7.3342222642691155, - "c2": 13.345653182784972, - "c3": -12.665092887205201, - "c4": -0.6774554384738707, - "c5": 25.445375607045932, - "c6": -18.800943431658382, - "c7": 0.20007444202066438 + "points": { + "c1": 23.891144692771093, + "c2": -17.225811434070934, + "c3": 39.901428592192346, + "c4": 4.790348533435903, + "c5": -16.79812658273233, + "c6": 23.2874271563604, + "c7": 35.93417699495761 }, - "vertexSeeds": { - "c1": 3.779149230321688, - "c2": 3.905376981789491, - "c3": 3.9908680074951715, - "c4": 4.0430300078689925, - "c5": 3.852109647707199, - "c6": 3.9387101404567058, - "c7": 4.033364951258155 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -271086,23 +271086,23 @@ "year": 1784, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": -30.91575130561876, - "c2": -17.81321595000655, - "c3": -51.455937864290306, - "c4": -15.024004124019775, - "c5": 8.361189439391666, - "c6": 9.89835732089449, - "c7": -1.7302689953148445 + "points": { + "c1": 38.349021862598825, + "c2": -23.40728782738603, + "c3": 28.7188580790638, + "c4": -36.07670948892692, + "c5": -13.513922141331548, + "c6": 20.753394427113385, + "c7": -48.17382327107192 }, - "vertexSeeds": { - "c1": 2.0155075787604773, - "c2": 2.1631213145141133, - "c3": 2.153488046924272, - "c4": 2.15510819765804, - "c5": 2.092304721317953, - "c6": 1.9294458793028921, - "c7": 2.024058003922432 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300527, + "c5": 1.5672676837725366, + "c6": 1.0448451225150244, + "c7": 0.5224225612575122 }, "rgb": [77, 76, 132] }, @@ -271113,23 +271113,23 @@ "year": 1784, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -6.0527874530677295, - "c2": -2.5741090500678254, - "c3": -14.057251309248489, - "c4": 17.208022492667894, - "c5": -9.131072186883962, - "c6": -33.524242431853466, - "c7": 13.287996206019287 + "points": { + "c1": -26.734568040835732, + "c2": 36.762177028478206, + "c3": -23.51994643736441, + "c4": -31.95437501691566, + "c5": -13.5511437040815, + "c6": 36.68228525710252, + "c7": 18.31168473583785 }, - "vertexSeeds": { - "c1": 12.01300918406217, - "c2": 12.547449264202656, - "c3": 12.096660236422341, - "c4": 12.5562388229202, - "c5": 12.314374245585288, - "c6": 12.572896146071132, - "c7": 12.452578229425546 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.030513176144265, + "c3": 15.025427646786863, + "c4": 12.02034211742951, + "c5": 9.015256588072107, + "c6": 6.010171058714755, + "c7": 3.005085529357403 }, "rgb": [58, 15, 49] }, @@ -271140,23 +271140,23 @@ "year": 1785, "resistanceReported": false, "duration": 68860800, - "curveSeeds": { - "c1": -52.83759246046072, - "c2": -1.8724214808256505, - "c3": 27.61220172332048, - "c4": 73.06670735856375, - "c5": 81.92593798998973, - "c6": 1.4146618682874106, - "c7": -23.570646934436454 + "points": { + "c1": -56.49248985964514, + "c2": 66.27635460994992, + "c3": -12.019693249225966, + "c4": -5.53089258448091, + "c5": 2.895705381145035, + "c6": -23.83289454993072, + "c7": 48.20651996716046 }, - "vertexSeeds": { - "c1": 7.111387006168281, - "c2": 7.115947992030314, - "c3": 6.437098444380715, - "c4": 7.319219618681369, - "c5": 6.3393089544839665, - "c6": 7.258209335154196, - "c7": 6.060386432590835 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [58, 15, 49] }, @@ -271167,23 +271167,23 @@ "year": 1784, "resistanceReported": false, "duration": 37843200, - "curveSeeds": { - "c1": -33.27628636574948, - "c2": 31.046824123084257, - "c3": 18.705562379544155, - "c4": 19.26327378101673, - "c5": 41.01182198629382, - "c6": -11.323022662466279, - "c7": 27.81715771983591 + "points": { + "c1": 10.907894737424066, + "c2": -52.491634265315234, + "c3": 12.673188584550878, + "c4": -43.56634124338348, + "c5": -17.826852009536253, + "c6": -16.756144578329057, + "c7": 25.817392647074605 }, - "vertexSeeds": { - "c1": 7.674172018316593, - "c2": 7.507315622067358, - "c3": 7.289386482797686, - "c4": 7.6390503640374465, - "c5": 7.664600608126424, - "c6": 7.25616473280568, - "c7": 7.574105944622858 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.246417013407312, + "c4": 7.397133610725854, + "c5": 5.547850208044372, + "c6": 3.698566805362915, + "c7": 1.8492834026814575 }, "rgb": [222, 0, 59] }, @@ -271194,23 +271194,23 @@ "year": 1784, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 12.727817719424884, - "c2": 35.383477284259904, - "c3": -49.21077952428265, - "c4": -12.59475572414786, - "c5": 30.821593384242412, - "c6": 17.367275474058765, - "c7": -37.68511068200049 + "points": { + "c1": -34.990038819427255, + "c2": 24.668576408747988, + "c3": -8.286923327736297, + "c4": -16.316320387244758, + "c5": 17.337889699356943, + "c6": -28.191726541888904, + "c7": -41.66552783292246 }, - "vertexSeeds": { - "c1": 8.920872663569215, - "c2": 8.766379635696255, - "c3": 7.81992851814395, - "c4": 8.102145527127798, - "c5": 8.133091232608322, - "c6": 8.42280962706074, - "c7": 8.09314676930573 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904294, + "c3": 10.864539990753585, + "c4": 8.691631992602861, + "c5": 6.518723994452141, + "c6": 4.345815996301431, + "c7": 2.172907998150709 }, "rgb": [86, 146, 138] }, @@ -271221,23 +271221,23 @@ "year": 1784, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -31.398678822501893, - "c2": 16.846635766102438, - "c3": -24.4748044793475, - "c4": -27.36500588954019, - "c5": 19.591191325169817, - "c6": 4.594181688228673, - "c7": -7.352934878213382 + "points": { + "c1": 0.935927443129664, + "c2": -22.85972689233464, + "c3": -17.17598217161745, + "c4": 38.83757877610155, + "c5": -17.14699600313076, + "c6": -23.896336082566233, + "c7": 44.74156331372575 }, - "vertexSeeds": { - "c1": 8.05135465593496, - "c2": 7.9460156856002255, - "c3": 7.705524607700608, - "c4": 7.27455201036209, - "c5": 7.912105582325863, - "c6": 7.482658423817397, - "c7": 8.21708993555199 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214977, + "c3": 9.893666204345816, + "c4": 7.9149329634766525, + "c5": 5.936199722607489, + "c6": 3.9574664817383263, + "c7": 1.9787332408691631 }, "rgb": [86, 146, 138] }, @@ -271248,23 +271248,23 @@ "year": 1786, "resistanceReported": false, "duration": 87004800, - "curveSeeds": { - "c1": 8.576030663459619, - "c2": -52.00911604903035, - "c3": -3.145184970980253, - "c4": -23.922132716542848, - "c5": -15.979490001758492, - "c6": 3.9640017405380945, - "c7": -71.53777704667596 + "points": { + "c1": -85.97071186684887, + "c2": -50.753749615703356, + "c3": 20.681019930434317, + "c4": 12.310205315925543, + "c5": -94.09126474023044, + "c6": -89.40192447330281, + "c7": -89.44905993549533 }, - "vertexSeeds": { - "c1": 6.230771737236592, - "c2": 6.003979825210789, - "c3": 6.106468606873267, - "c4": 5.930994563465597, - "c5": 6.354789178781331, - "c6": 5.868159431224331, - "c7": 6.125172848919286 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [238, 201, 159] }, @@ -271275,23 +271275,23 @@ "year": 1784, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 10.53704549920419, - "c2": -32.81339747677154, - "c3": -27.649421455018327, - "c4": 21.832608226215207, - "c5": -8.278034735153561, - "c6": -8.38882021439931, - "c7": 27.31647777495578 + "points": { + "c1": 3.7025599492289842, + "c2": -11.86957042462629, + "c3": 8.571833313852444, + "c4": 8.628913035807734, + "c5": -39.5861475372755, + "c6": 18.662792099834462, + "c7": 38.729930891717636 }, - "vertexSeeds": { - "c1": 3.5099516128204615, - "c2": 3.5973347914593026, - "c3": 3.5541470930695054, - "c4": 3.7528077260144848, - "c5": 3.6883838013970127, - "c6": 3.6216844169680766, - "c7": 3.5923769434289694 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923722, + "c3": 4.553860379103097, + "c4": 3.6430883032824815, + "c5": 2.7323162274618555, + "c6": 1.8215441516412407, + "c7": 0.9107720758206257 }, "rgb": [86, 146, 138] }, @@ -271302,23 +271302,23 @@ "year": 1783, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 5.654132912922027, - "c2": 1.1150959210734506, - "c3": -7.2011004733703174, - "c4": 30.208320014674168, - "c5": -19.148719705709553, - "c6": -30.751975887440338, - "c7": -30.504936851246395 + "points": { + "c1": 5.9571953266979065, + "c2": 13.147126833919856, + "c3": -22.78540931398151, + "c4": -28.36643948337739, + "c5": -29.114645732019177, + "c6": -10.142412459330274, + "c7": 9.778618805610861 }, - "vertexSeeds": { - "c1": 4.174234960719793, - "c2": 4.095561103682052, - "c3": 3.9003920445831013, - "c4": 4.177840161821896, - "c5": 3.8930479981285466, - "c6": 4.172107078518803, - "c7": 3.8951814356690275 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [86, 146, 138] }, @@ -271329,23 +271329,23 @@ "year": 1784, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 21.29181295487045, - "c2": -2.1693633354130384, - "c3": 13.603277901940203, - "c4": -21.36824926325459, - "c5": -33.97094595967943, - "c6": 12.584622955575199, - "c7": 8.1932775385512 + "points": { + "c1": 6.911278111342185, + "c2": 33.63467817037174, + "c3": -10.031394670561397, + "c4": -17.272829048272484, + "c5": 46.65346097073707, + "c6": -31.13228183543052, + "c7": -39.92286601185608 }, - "vertexSeeds": { - "c1": 5.091483658811506, - "c2": 4.426285682076418, - "c3": 4.700056820997516, - "c4": 4.6156050623524765, - "c5": 4.5298819780548625, - "c6": 5.066933422494765, - "c7": 4.720971550854186 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106796, + "c3": 6.957928802588997, + "c4": 5.566343042071197, + "c5": 4.174757281553398, + "c6": 2.7831715210355985, + "c7": 1.3915857605177993 }, "rgb": [86, 146, 138] }, @@ -271356,23 +271356,23 @@ "year": 1783, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -16.415443925333882, - "c2": -6.4497460881835345, - "c3": -0.43804171182880935, - "c4": 9.738563759388697, - "c5": 8.880796970480255, - "c6": 7.6411655207363935, - "c7": -2.8035608795447793 + "points": { + "c1": 23.26723930944175, + "c2": -21.123570315371996, + "c3": 20.36120050524689, + "c4": -15.550758000143555, + "c5": 4.458368087313673, + "c6": 18.567167190102225, + "c7": 3.386070498106232 }, - "vertexSeeds": { - "c1": 6.2453765824866245, - "c2": 6.103738689591402, - "c3": 5.9707787314968, - "c4": 6.100511531845004, - "c5": 6.163606623155348, - "c6": 6.184531297605108, - "c7": 6.08651787817081 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112354, + "c3": 7.535829865926949, + "c4": 6.028663892741569, + "c5": 4.5214979195561655, + "c6": 3.0143319463707847, + "c7": 1.5071659731854035 }, "rgb": [222, 0, 59] }, @@ -271383,23 +271383,23 @@ "year": 1784, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 5.175770717564298, - "c2": 8.916198424870132, - "c3": 26.627575264856098, - "c4": 23.330102516290893, - "c5": 13.187107442976263, - "c6": -6.401960609019106, - "c7": -0.7791842433582588 + "points": { + "c1": -34.028178868358914, + "c2": 1.2928817522802518, + "c3": -32.909285345975874, + "c4": -21.65823901274114, + "c5": -26.365767306863106, + "c6": 24.623435664784587, + "c7": -6.260361117156361 }, - "vertexSeeds": { - "c1": 1.4710115002925415, - "c2": 1.4913683146336196, - "c3": 1.5077747880620869, - "c4": 1.4183746876372403, - "c5": 1.4076775211776094, - "c6": 1.4149830969737283, - "c7": 1.5004531507372048 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257977, + "c3": 1.8723994452149788, + "c4": 1.4979195561719845, + "c5": 1.1234396671289864, + "c6": 0.7489597780859922, + "c7": 0.3744798890429941 }, "rgb": [238, 201, 159] }, @@ -271410,23 +271410,23 @@ "year": 1783, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -21.05777966967156, - "c2": 12.361537974102866, - "c3": -5.397469201257486, - "c4": -7.6164187742904055, - "c5": -6.814495033506976, - "c6": 16.793984516573545, - "c7": -8.27883568654467 + "points": { + "c1": -6.400001829126204, + "c2": 17.674474959697903, + "c3": -3.6092706584819645, + "c4": 10.17419320486934, + "c5": 17.447191792275206, + "c6": 24.910018431076864, + "c7": -0.6407942293555102 }, - "vertexSeeds": { - "c1": 6.88658517376238, - "c2": 6.718068967652797, - "c3": 6.524659286156427, - "c4": 6.65714598634066, - "c5": 6.503023575979959, - "c6": 6.396062586170133, - "c7": 6.668931625889928 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -271437,23 +271437,23 @@ "year": 1784, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -21.620266963263376, - "c2": -16.027505251314494, - "c3": -18.760904939500218, - "c4": -13.084578862350831, - "c5": -5.8084943168236975, - "c6": -13.243897023548794, - "c7": 6.360674599325307 + "points": { + "c1": -31.547788417931905, + "c2": 10.201705720444352, + "c3": 4.013947528633523, + "c4": 4.229283580737267, + "c5": -33.02274578233135, + "c6": -38.0244461521438, + "c7": 19.538972476068054 }, - "vertexSeeds": { - "c1": 3.7035501790043344, - "c2": 3.4857070220722775, - "c3": 3.867344355589663, - "c4": 4.013782368752439, - "c5": 3.744497682733479, - "c6": 3.5541569114999128, - "c7": 3.489478468768843 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [222, 0, 59] }, @@ -271464,23 +271464,23 @@ "year": 1783, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -13.506314713057375, - "c2": 11.396471366399336, - "c3": -17.543032454169843, - "c4": -2.6199049979725437, - "c5": 26.05194903368997, - "c6": 18.138361990951022, - "c7": 15.49386488462002 + "points": { + "c1": -23.131902988395105, + "c2": -23.846497862226705, + "c3": 26.250094741725167, + "c4": 23.399911393532758, + "c5": -18.642976107469465, + "c6": 9.365286880062296, + "c7": -3.9985948471218045 }, - "vertexSeeds": { - "c1": 6.7332441796115665, - "c2": 6.789634865968439, - "c3": 6.864406598612984, - "c4": 6.748494101690081, - "c5": 6.681799141401433, - "c6": 6.433851611466318, - "c7": 6.950710166265948 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -271491,23 +271491,23 @@ "year": 1784, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -37.911270558451285, - "c2": -40.75001038690275, - "c3": -41.61455958233211, - "c4": -18.283401725628774, - "c5": -7.416169916809146, - "c6": 26.838691364457546, - "c7": 29.635354274008904 + "points": { + "c1": -27.330058282380794, + "c2": 46.19405978369721, + "c3": 36.43481857087653, + "c4": 25.532998511705202, + "c5": -0.9603546156475176, + "c6": -39.378120450756505, + "c7": 20.629689503774003 }, - "vertexSeeds": { - "c1": 4.047200844454008, - "c2": 3.861925501603554, - "c3": 3.854599711900719, - "c4": 3.870822143282647, - "c5": 4.143817314081304, - "c6": 4.118042671241525, - "c7": 4.029316846781543 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647709, + "c3": 4.9699491447064315, + "c4": 3.9759593157651425, + "c5": 2.9819694868238544, + "c6": 1.9879796578825766, + "c7": 0.9939898289412883 }, "rgb": [222, 0, 59] }, @@ -271518,23 +271518,23 @@ "year": 1783, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -6.8350508526499, - "c2": 13.986379824383917, - "c3": -13.088907061494158, - "c4": -6.814268328596462, - "c5": 24.20901256599067, - "c6": -3.5284904552728946, - "c7": 4.230042839051542 + "points": { + "c1": 18.184412939380998, + "c2": -15.46616325247756, + "c3": -19.464284172390624, + "c4": -8.964647607566175, + "c5": -17.557514614866452, + "c6": -26.85883559400763, + "c7": -29.06311807351346 }, - "vertexSeeds": { - "c1": 11.836164015148517, - "c2": 11.797455521423366, - "c3": 12.620241157880502, - "c4": 11.907940452364402, - "c5": 12.639422822860904, - "c6": 12.53410422159033, - "c7": 11.90048711066668 + "offsets": { + "c1": 21.197411003236247, + "c2": 18.169209431345344, + "c3": 15.141007859454437, + "c4": 12.112806287563576, + "c5": 9.084604715672672, + "c6": 6.056403143781766, + "c7": 3.0282015718909054 }, "rgb": [77, 76, 132] }, @@ -271545,23 +271545,23 @@ "year": 1784, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 25.339718390741773, - "c2": -12.596618147693746, - "c3": -11.633043724499021, - "c4": 26.253459134596035, - "c5": -19.912012226741638, - "c6": 34.19104795760096, - "c7": 31.783023018137044 + "points": { + "c1": 10.06442692847876, + "c2": 13.303574669933688, + "c3": 34.32463365985983, + "c4": 6.338788364073373, + "c5": 25.401342468956045, + "c6": 21.0792460974546, + "c7": -25.135203784323522 }, - "vertexSeeds": { - "c1": 9.592446887711937, - "c2": 9.363801329341337, - "c3": 8.840256895076541, - "c4": 9.164593781492693, - "c5": 9.041873119323478, - "c6": 8.821927403195792, - "c7": 8.949995440731179 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909843, + "c3": 11.442441054091551, + "c4": 9.153952843273236, + "c5": 6.865464632454922, + "c6": 4.576976421636628, + "c7": 2.288488210818314 }, "rgb": [238, 201, 159] }, @@ -271572,23 +271572,23 @@ "year": 1784, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 21.06148493202577, - "c2": -0.8056767242181415, - "c3": 15.144319793768354, - "c4": 27.626449892304755, - "c5": -13.257564212297627, - "c6": -19.631736290932636, - "c7": -26.408064958322505 + "points": { + "c1": 34.088681145934814, + "c2": -10.732623397339651, + "c3": 6.67883331282146, + "c4": 27.567711326559696, + "c5": 22.521972538233605, + "c6": 1.6379768754550312, + "c7": -19.65195909286414 }, - "vertexSeeds": { - "c1": 6.490427669783592, - "c2": 6.434617156564752, - "c3": 6.821585139996865, - "c4": 6.464746972751544, - "c5": 6.524139244876198, - "c6": 6.658128084306303, - "c7": 6.850270233202375 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -271599,23 +271599,23 @@ "year": 1783, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -27.662557810492483, - "c2": 16.855065554793732, - "c3": -12.26936335778949, - "c4": 11.789994480513478, - "c5": 24.42463724035423, - "c6": 0.9227765518168951, - "c7": 8.819420513568573 + "points": { + "c1": -26.46111594325746, + "c2": 17.955838578272548, + "c3": -5.045892751725912, + "c4": -19.42398413522927, + "c5": 11.930838184614117, + "c6": -27.76689644460665, + "c7": 3.4848348511507368 }, - "vertexSeeds": { - "c1": 13.81777963444389, - "c2": 13.421871150817685, - "c3": 13.66589158707089, - "c4": 12.79759347952157, - "c5": 13.310863974517908, - "c6": 12.88753740206457, - "c7": 12.686877421241899 + "offsets": { + "c1": 23.106796116504853, + "c2": 19.805825242718456, + "c3": 16.50485436893202, + "c4": 13.203883495145625, + "c5": 9.902912621359228, + "c6": 6.601941747572833, + "c7": 3.3009708737863956 }, "rgb": [238, 201, 159] }, @@ -271626,23 +271626,23 @@ "year": 1784, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -25.87494364160768, - "c2": -14.84114353148053, - "c3": -13.924693947435195, - "c4": 9.656634673181443, - "c5": 19.753010967890525, - "c6": 16.270811147536918, - "c7": -32.91116091437213 + "points": { + "c1": -20.424402446249275, + "c2": 17.204992596502194, + "c3": 10.109161728338556, + "c4": 31.051540522043908, + "c5": 14.344514065515114, + "c6": -5.857165642546001, + "c7": -17.95950710249473 }, - "vertexSeeds": { - "c1": 9.606381916260094, - "c2": 9.481360441031145, - "c3": 9.4655414506551, - "c4": 9.4238325281189, - "c5": 9.414714486119804, - "c6": 9.550723295503305, - "c7": 9.438181813697335 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.84188626907072, + "c3": 11.534905224225636, + "c4": 9.227924179380498, + "c5": 6.92094313453536, + "c6": 4.613962089690221, + "c7": 2.306981044845138 }, "rgb": [238, 201, 159] }, @@ -271653,23 +271653,23 @@ "year": 1784, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -2.050308937502244, - "c2": -35.59565123282063, - "c3": -28.134438272914295, - "c4": -33.96048584839866, - "c5": -20.68932202454226, - "c6": 27.71265316267548, - "c7": -25.925477832330593 + "points": { + "c1": 5.770870315235193, + "c2": -1.7029258914631384, + "c3": -10.958278377942698, + "c4": -19.904313925982244, + "c5": 27.69162124846696, + "c6": -24.850367118104998, + "c7": -11.848754469652622 }, - "vertexSeeds": { - "c1": 11.33310828578838, - "c2": 11.979995285306078, - "c3": 11.220473644542725, - "c4": 11.369033681906176, - "c5": 11.031075199470406, - "c6": 11.97732094951529, - "c7": 11.570791858183506 + "offsets": { + "c1": 20.19417475728155, + "c2": 17.30929264909847, + "c3": 14.424410540915394, + "c4": 11.539528432732315, + "c5": 8.654646324549235, + "c6": 5.769764216366157, + "c7": 2.8848821081830787 }, "rgb": [86, 146, 138] }, @@ -271680,23 +271680,23 @@ "year": 1784, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 31.21909051742624, - "c2": 16.21924711875625, - "c3": -22.934272569610293, - "c4": 33.09239929709899, - "c5": -18.45485275418169, - "c6": -9.227392129638677, - "c7": 11.063285791172596 + "points": { + "c1": 17.460896045779563, + "c2": 27.980338356909257, + "c3": -34.07379330171761, + "c4": -26.05390488732542, + "c5": 12.255906493100603, + "c6": 28.472010037768925, + "c7": -34.87596593881471 }, - "vertexSeeds": { - "c1": 7.517977883841908, - "c2": 7.252910509775646, - "c3": 7.589276107109313, - "c4": 7.1546529537917785, - "c5": 7.512307319200259, - "c6": 7.089753419146898, - "c7": 7.051831977200678 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766989, + "c3": 9.061488673139158, + "c4": 7.249190938511326, + "c5": 5.4368932038834945, + "c6": 3.624595469255663, + "c7": 1.8122977346278315 }, "rgb": [222, 0, 59] }, @@ -271707,23 +271707,23 @@ "year": 1784, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -14.359626817086017, - "c2": -1.0068992625235111, - "c3": -7.239663293540964, - "c4": 23.015359052685227, - "c5": 28.066282735051416, - "c6": -6.463763215632554, - "c7": 3.2375298348581083 + "points": { + "c1": -11.47736091213146, + "c2": -21.283799901822384, + "c3": 17.121006960734135, + "c4": 30.775129135838895, + "c5": 9.449974113497845, + "c6": 27.838982237285308, + "c7": -32.571624128777714 }, - "vertexSeeds": { - "c1": 1.3595808118287491, - "c2": 1.3737924461297304, - "c3": 1.4516821390288956, - "c4": 1.418833528908496, - "c5": 1.2935587072047023, - "c6": 1.3110291825338605, - "c7": 1.4454306150014635 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.1081830790568636, + "c3": 1.7568192325473886, + "c4": 1.405455386037909, + "c5": 1.054091539528434, + "c6": 0.7027276930189545, + "c7": 0.3513638465094754 }, "rgb": [222, 0, 59] }, @@ -271734,23 +271734,23 @@ "year": 1783, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 25.60228796814775, - "c2": 15.022178679491986, - "c3": -5.457611216657536, - "c4": -19.27344788810001, - "c5": 17.214658562519844, - "c6": -7.788964265586458, - "c7": 9.340708883793006 + "points": { + "c1": -5.358955137802113, + "c2": -16.31705037658847, + "c3": 22.918723976702637, + "c4": 11.13603554145216, + "c5": 17.865132651961687, + "c6": -22.918894413285123, + "c7": -2.4043034479778065 }, - "vertexSeeds": { - "c1": 12.743036866010373, - "c2": 12.931700753573608, - "c3": 13.590693850396953, - "c4": 12.90511759411217, - "c5": 13.445520390933622, - "c6": 13.350699816355176, - "c7": 13.720058731627894 + "offsets": { + "c1": 23.07443365695793, + "c2": 19.778085991678232, + "c3": 16.481738326398535, + "c4": 13.185390661118836, + "c5": 9.889042995839095, + "c6": 6.592695330559397, + "c7": 3.2963476652796984 }, "rgb": [77, 76, 132] }, @@ -271761,23 +271761,23 @@ "year": 1784, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -25.69516280210064, - "c2": -3.199472508888423, - "c3": -26.55081702112626, - "c4": -5.403936619989317, - "c5": 22.898498190179545, - "c6": 0.158418222855488, - "c7": 22.355633395753266 + "points": { + "c1": 4.138298107613544, + "c2": 11.157074873894366, + "c3": 23.6430025013007, + "c4": -7.293817840722298, + "c5": 14.278692519184347, + "c6": -35.53487935992734, + "c7": 10.06776438837278 }, - "vertexSeeds": { - "c1": 2.1607470334712224, - "c2": 2.0330822492405054, - "c3": 2.1097179405970663, - "c4": 2.062904255957584, - "c5": 2.1113074368310167, - "c6": 2.1602377473276966, - "c7": 2.052200685436416 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [238, 201, 159] }, @@ -271788,23 +271788,23 @@ "year": 1783, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 22.112120151011176, - "c2": -8.691099269389753, - "c3": 24.427496648320968, - "c4": 9.01789450076506, - "c5": 11.46222377497061, - "c6": 20.225578506433486, - "c7": -16.676218351847886 + "points": { + "c1": 18.938170862527443, + "c2": 19.433010561583764, + "c3": 15.008794778614998, + "c4": 23.548169567629863, + "c5": 1.3841559735842885, + "c6": -4.387888360055147, + "c7": -4.934345549982762 }, - "vertexSeeds": { - "c1": 7.418328736592596, - "c2": 7.754493018244447, - "c3": 7.746522800939053, - "c4": 7.733812999925217, - "c5": 7.937106300887559, - "c6": 7.930464015700534, - "c7": 7.556837386460774 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732316, + "c3": 9.616273693943599, + "c4": 7.693018955154878, + "c5": 5.769764216366158, + "c6": 3.846509477577439, + "c7": 1.9232547387887196 }, "rgb": [222, 0, 59] }, @@ -271815,23 +271815,23 @@ "year": 1783, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 2.991136647471656, - "c2": 5.718910986375015, - "c3": 2.8984021388525107, - "c4": -18.34347783510369, - "c5": 10.945773840305051, - "c6": -0.4592757328989592, - "c7": 8.399061501453055 + "points": { + "c1": -26.629119396168548, + "c2": 19.30086926656478, + "c3": -27.20427476486613, + "c4": 16.42039718380221, + "c5": 16.439616952582817, + "c6": -17.78177511791572, + "c7": -8.402273735724059 }, - "vertexSeeds": { - "c1": 7.737335205515195, - "c2": 7.859548811034427, - "c3": 8.095178271656556, - "c4": 8.32056710974613, - "c5": 8.121340681434909, - "c6": 8.099056026364176, - "c7": 8.20463212147475 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375858, + "c3": 9.986130374479893, + "c4": 7.988904299583905, + "c5": 5.9916782246879405, + "c6": 3.9944521497919525, + "c7": 1.9972260748959876 }, "rgb": [222, 0, 59] }, @@ -271842,23 +271842,23 @@ "year": 1784, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 23.726167173507037, - "c2": 37.66940238987293, - "c3": 6.97494758422922, - "c4": -5.685096939982728, - "c5": 10.678078432116173, - "c6": 6.154858592602558, - "c7": -3.9242294505277826 + "points": { + "c1": -38.561786501894794, + "c2": -11.983218145352275, + "c3": -13.188825143577642, + "c4": -4.935318547111088, + "c5": -12.658910031847334, + "c6": -4.668745480281892, + "c7": -7.017859753104567 }, - "vertexSeeds": { - "c1": 8.49582894591611, - "c2": 8.236112084581604, - "c3": 8.056435856237334, - "c4": 8.360114647349905, - "c5": 8.249901415305251, - "c6": 8.400772631795888, - "c7": 7.825877743499083 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [86, 146, 138] }, @@ -271869,23 +271869,23 @@ "year": 1784, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -5.047774925354474, - "c2": -34.14459642213393, - "c3": -2.9884953022903673, - "c4": 31.949564193764502, - "c5": -38.229324693492174, - "c6": -25.916496268835196, - "c7": -17.115543348958223 + "points": { + "c1": -1.7549449932978192, + "c2": -34.09365798798583, + "c3": 32.11065282495154, + "c4": 11.189232166107992, + "c5": 26.04391213234588, + "c6": -22.560980098203903, + "c7": -15.973251030709125 }, - "vertexSeeds": { - "c1": 6.298569061799229, - "c2": 6.553716017482644, - "c3": 6.720603840126949, - "c4": 6.526533011830109, - "c5": 6.293849644847887, - "c6": 6.399604972591586, - "c7": 6.283491366939418 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198326, + "c3": 8.159963014331948, + "c4": 6.52797041146555, + "c5": 4.8959778085991745, + "c6": 3.263985205732775, + "c7": 1.6319926028663765 }, "rgb": [86, 146, 138] }, @@ -271896,23 +271896,23 @@ "year": 1784, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 3.4892846327708114, - "c2": 38.23056606021905, - "c3": 1.2755847049936833, - "c4": 31.581710247392778, - "c5": -6.422640052138277, - "c6": 33.94000168953556, - "c7": -6.0289491957643335 + "points": { + "c1": -28.02334810884022, + "c2": 3.7141848546333165, + "c3": 2.0288512114861774, + "c4": -25.478205616429182, + "c5": 30.84457501288462, + "c6": 2.4713616727249033, + "c7": 34.517722907563495 }, - "vertexSeeds": { - "c1": 6.120563985926076, - "c2": 5.934199508623402, - "c3": 5.90830622646154, - "c4": 5.903962468115431, - "c5": 6.0366097522880615, - "c6": 6.008749996368968, - "c7": 5.810606025811738 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750357, + "c3": 7.327785483125286, + "c4": 5.862228386500238, + "c5": 4.396671289875168, + "c6": 2.931114193250119, + "c7": 1.4655570966250486 }, "rgb": [222, 0, 59] }, @@ -271923,23 +271923,23 @@ "year": 1784, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": 45.01939826904464, - "c2": 30.585121497154574, - "c3": 20.687868642948942, - "c4": -26.540130126782127, - "c5": -45.638068424234554, - "c6": 9.792696259839758, - "c7": 49.029798943421156 + "points": { + "c1": -10.969946586884092, + "c2": 41.732171713362504, + "c3": 49.004015312155374, + "c4": -4.874303896649913, + "c5": -51.60794799440619, + "c6": 12.307064220937534, + "c7": -8.492004745583472 }, - "vertexSeeds": { - "c1": 2.4563950214055317, - "c2": 2.3375517714943275, - "c3": 2.2602511894775446, - "c4": 2.499712167872003, - "c5": 2.2394650579077426, - "c6": 2.543127516130443, - "c7": 2.386389447060691 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.661581137309291, + "c3": 3.05131761442441, + "c4": 2.441054091539529, + "c5": 1.8307905686546455, + "c6": 1.2205270457697615, + "c7": 0.6102635228848807 }, "rgb": [238, 201, 159] }, @@ -271950,23 +271950,23 @@ "year": 1784, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 2.6140019490982525, - "c2": 0.5385091816799417, - "c3": -32.40424030965393, - "c4": -20.634810254993187, - "c5": -1.0704357925542638, - "c6": 12.686823232853776, - "c7": -18.45988854110523 + "points": { + "c1": 4.882792360310056, + "c2": 10.033056255477504, + "c3": -3.4164784373975294, + "c4": 46.92140292078871, + "c5": -35.299970871572924, + "c6": -32.84297890746775, + "c7": 33.647269982752945 }, - "vertexSeeds": { - "c1": 3.8937913082870472, - "c2": 3.734488347231547, - "c3": 3.706207368765227, - "c4": 3.8783874768308517, - "c5": 3.8552116210237717, - "c6": 3.8180227508206883, - "c7": 3.764106944757493 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165043, + "c3": 4.692556634304208, + "c4": 3.7540453074433624, + "c5": 2.815533980582527, + "c6": 1.8770226537216812, + "c7": 0.9385113268608355 }, "rgb": [222, 0, 59] }, @@ -271977,23 +271977,23 @@ "year": 1784, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -8.57094193567401, - "c2": 12.93663598180671, - "c3": 5.134726574524372, - "c4": 20.581906795548463, - "c5": -23.157069486820745, - "c6": -4.484370888721063, - "c7": -22.76085752690117 + "points": { + "c1": -7.314206557659169, + "c2": 22.687127713566397, + "c3": 5.282950601003215, + "c4": -6.893730561508178, + "c5": 0.22725673626164422, + "c6": -4.556259091378351, + "c7": 0.48899831187205933 }, - "vertexSeeds": { - "c1": 8.062152318068716, - "c2": 8.754937420836516, - "c3": 8.611305370940528, - "c4": 8.101308872950202, - "c5": 8.29639055181049, - "c6": 8.02885450677926, - "c7": 8.23111514876313 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330098, + "c3": 10.517799352750806, + "c4": 8.414239482200653, + "c5": 6.310679611650479, + "c6": 4.2071197411003265, + "c7": 2.1035598705501735 }, "rgb": [86, 146, 138] }, @@ -272004,23 +272004,23 @@ "year": 1784, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -2.182205502651634, - "c2": 30.65563834781858, - "c3": -23.79767260038868, - "c4": -23.07062335986498, - "c5": -26.020696914738267, - "c6": 8.213264451225562, - "c7": -33.97614880968413 + "points": { + "c1": -24.14574303018812, + "c2": -21.83178698702887, + "c3": -3.2516996476078575, + "c4": -18.460186561190103, + "c5": 7.499976676008899, + "c6": 23.668757562402917, + "c7": 8.066593017641821 }, - "vertexSeeds": { - "c1": 3.042526294841084, - "c2": 2.9940413710910314, - "c3": 3.141604068485941, - "c4": 2.899347409703452, - "c5": 3.1286903888726614, - "c6": 3.02080051126437, - "c7": 3.0549261333479203 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.52149791955617, + "c3": 3.767914932963473, + "c4": 3.0143319463707763, + "c5": 2.260748959778079, + "c6": 1.507165973185394, + "c7": 0.753582986592697 }, "rgb": [86, 146, 138] }, @@ -272031,23 +272031,23 @@ "year": 1784, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 14.84669006593262, - "c2": 3.063110420006552, - "c3": 31.76976425389124, - "c4": 34.99821721940769, - "c5": 1.394136052890289, - "c6": -10.718436226103176, - "c7": 17.155051330283214 + "points": { + "c1": 28.278241771353038, + "c2": 19.849705565301697, + "c3": -23.66802801826762, + "c4": -28.58292467360029, + "c5": -34.33801747711904, + "c6": 28.73272549725759, + "c7": 13.756633351861737 }, - "vertexSeeds": { - "c1": 12.04753914372314, - "c2": 11.77576864654232, - "c3": 12.167326562149189, - "c4": 12.094681366780486, - "c5": 11.705247612599857, - "c6": 12.32052085973503, - "c7": 12.061259072405132 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.75312066574201, + "c3": 14.794267221451694, + "c4": 11.835413777161339, + "c5": 8.876560332871026, + "c6": 5.917706888580669, + "c7": 2.9588534442903147 }, "rgb": [86, 146, 138] }, @@ -272058,23 +272058,23 @@ "year": 1784, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 16.345154091011707, - "c2": -28.72296569828652, - "c3": -32.027106943923265, - "c4": -11.601356215584403, - "c5": -17.34859291218037, - "c6": 35.65831410578649, - "c7": -35.23716457194637 + "points": { + "c1": 42.76377730604331, + "c2": 0.7064556958366381, + "c3": -8.20443840625515, + "c4": -4.224087747675071, + "c5": 45.36772549370872, + "c6": 41.394949660480904, + "c7": -43.23212566778778 }, - "vertexSeeds": { - "c1": 10.571566241971738, - "c2": 10.239920017012171, - "c3": 10.24382186720399, - "c4": 10.345023269470714, - "c5": 10.189500168669808, - "c6": 10.360516606260292, - "c7": 10.62187731159729 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122051, + "c3": 12.713823393435042, + "c4": 10.171058714748034, + "c5": 7.628294036061026, + "c6": 5.085529357374017, + "c7": 2.5427646786870084 }, "rgb": [58, 15, 49] }, @@ -272085,23 +272085,23 @@ "year": 1784, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 10.760653098426339, - "c2": 10.662712135742076, - "c3": 17.266417190579993, - "c4": -30.385741443191602, - "c5": -0.509263644000832, - "c6": 43.63733254886722, - "c7": 41.6733840723267 + "points": { + "c1": -37.91052075700656, + "c2": -29.103918676455883, + "c3": -12.71497549664931, + "c4": 25.397269122325994, + "c5": 5.712685999431599, + "c6": -36.59860858411727, + "c7": -44.92774724191732 }, - "vertexSeeds": { - "c1": 11.690171046712534, - "c2": 11.781018550764488, - "c3": 11.982939553177768, - "c4": 11.610128531708435, - "c5": 11.733446475643058, - "c6": 11.840514618153358, - "c7": 11.883327540213303 + "offsets": { + "c1": 20.032362459546928, + "c2": 17.170596393897398, + "c3": 14.308830328247794, + "c4": 11.447064262598264, + "c5": 8.585298196948663, + "c6": 5.723532131299132, + "c7": 2.8617660656495314 }, "rgb": [222, 0, 59] }, @@ -272112,23 +272112,23 @@ "year": 1783, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 19.219903263570785, - "c2": -4.679709549565537, - "c3": -9.417527578364233, - "c4": -21.345529212436652, - "c5": -0.18908717364436, - "c6": -17.827091553687843, - "c7": -26.352885294889692 + "points": { + "c1": 5.7187232546833044, + "c2": 28.019881290200928, + "c3": -2.269458685611376, + "c4": -23.64488768507567, + "c5": 12.421914872131943, + "c6": -0.7369088301817541, + "c7": 25.073862845553222 }, - "vertexSeeds": { - "c1": 3.944793454378156, - "c2": 3.9392438839500734, - "c3": 4.4404182812991415, - "c4": 4.122446575025286, - "c5": 4.500222681096206, - "c6": 4.3324576687843575, - "c7": 3.896282037427272 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309758, + "c4": 4.308830328247804, + "c5": 3.2316227461858538, + "c6": 2.154415164123904, + "c7": 1.07720758206195 }, "rgb": [77, 76, 132] }, @@ -272139,23 +272139,23 @@ "year": 1784, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 31.611213885214042, - "c2": 25.11790716918898, - "c3": -4.3321574560770415, - "c4": -11.074035362132612, - "c5": 42.900906438215415, - "c6": 34.31956846982507, - "c7": 35.53248990521192 + "points": { + "c1": 34.027733336471016, + "c2": 33.17078734545554, + "c3": 21.18500404132365, + "c4": 7.666965194860033, + "c5": -8.191594970126928, + "c6": -2.6729032501859464, + "c7": -38.3920484766121 }, - "vertexSeeds": { - "c1": 2.1666493610268023, - "c2": 2.095424214856655, - "c3": 2.1069123829815686, - "c4": 2.127806750546661, - "c5": 2.264354193660275, - "c6": 2.0246501547977784, - "c7": 2.122490690372768 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551547, + "c4": 2.1821544151641237, + "c5": 1.6366158113730929, + "c6": 1.0910772075820618, + "c7": 0.5455386037910309 }, "rgb": [58, 15, 49] }, @@ -272166,23 +272166,23 @@ "year": 1783, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 14.758441190709409, - "c2": 20.171317918519666, - "c3": -14.993910441432398, - "c4": 17.43552948646025, - "c5": -18.71745211731354, - "c6": 13.653375024071853, - "c7": 1.063130324728732 + "points": { + "c1": -5.367597004227449, + "c2": 27.971486815946303, + "c3": 19.13367522291991, + "c4": 28.98531246602744, + "c5": 22.462053220823062, + "c6": 17.163584522168943, + "c7": 30.740736578390294 }, - "vertexSeeds": { - "c1": 8.917633205141806, - "c2": 9.42935839633017, - "c3": 9.209637284457276, - "c4": 9.16768680612397, - "c5": 9.090582761304185, - "c6": 9.16493607240819, - "c7": 8.744664028128769 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.61997226074897, + "c3": 11.349976883957464, + "c4": 9.07998150716598, + "c5": 6.809986130374473, + "c6": 4.53999075358299, + "c7": 2.2699953767915058 }, "rgb": [86, 146, 138] }, @@ -272193,23 +272193,23 @@ "year": 1784, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 22.34988091784807, - "c2": 15.592631799024389, - "c3": 3.362045287834299, - "c4": 37.20369956218798, - "c5": -8.936447670407329, - "c6": 23.559998199070925, - "c7": -14.305677922348686 + "points": { + "c1": -3.0246643925101893, + "c2": -17.92010287955674, + "c3": 28.672945595707688, + "c4": -39.14178868226777, + "c5": 4.2514904634409305, + "c6": -38.37702355677639, + "c7": 0.668256258940815 }, - "vertexSeeds": { - "c1": 5.557603618036759, - "c2": 5.435238791498864, - "c3": 5.449138090384184, - "c4": 5.4065878815040715, - "c5": 5.464906993586966, - "c6": 5.2682643048221, - "c7": 5.5760055038019045 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583909, + "c3": 6.657420249653253, + "c4": 5.325936199722599, + "c5": 3.9944521497919436, + "c6": 2.6629680998613097, + "c7": 1.3314840499306548 }, "rgb": [58, 15, 49] }, @@ -272220,23 +272220,23 @@ "year": 1784, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 5.60913125899723, - "c2": 29.342383089866345, - "c3": -8.034645147984723, - "c4": 7.443545983681503, - "c5": 3.9282976219351724, - "c6": -31.616220210527963, - "c7": -33.70749163609968 + "points": { + "c1": 19.863634055422438, + "c2": -8.826276835100455, + "c3": 29.77771467640494, + "c4": -0.961712713066305, + "c5": 30.47601167319526, + "c6": 27.43398271319235, + "c7": -16.901420957257596 }, - "vertexSeeds": { - "c1": 6.451115385131706, - "c2": 6.5733052574193485, - "c3": 6.376588237063074, - "c4": 6.633986321118973, - "c5": 6.876207498585605, - "c6": 6.507626752141657, - "c7": 6.723538588412706 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -272247,23 +272247,23 @@ "year": 1784, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 9.974312922906634, - "c2": 13.792963236645782, - "c3": -12.700782820816869, - "c4": -33.68872650055149, - "c5": -39.25531195230996, - "c6": -30.01879225905602, - "c7": -26.40749503947987 + "points": { + "c1": -27.358700954079307, + "c2": -25.430791977909024, + "c3": 44.01445342939791, + "c4": 29.825551607969082, + "c5": 38.68991446538556, + "c6": 17.832711819896588, + "c7": 33.85020141068863 }, - "vertexSeeds": { - "c1": 6.091233833596973, - "c2": 6.552814623669197, - "c3": 6.293680382356981, - "c4": 6.0377931884520235, - "c5": 6.3123906014979445, - "c6": 6.154484923833352, - "c7": 5.817297137906083 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.40360610263523, + "c3": 7.836338418862694, + "c4": 6.2690707350901445, + "c5": 4.701803051317609, + "c6": 3.1345353675450722, + "c7": 1.5672676837725361 }, "rgb": [222, 0, 59] }, @@ -272274,23 +272274,23 @@ "year": 1783, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 9.34616764593541, - "c2": 19.609000282199467, - "c3": 14.693267701115431, - "c4": -24.393995631259887, - "c5": 6.523407024245479, - "c6": -21.368406916620177, - "c7": 13.40125563232938 + "points": { + "c1": 11.263483418450946, + "c2": -29.21910933943451, + "c3": -6.0625358101412665, + "c4": -4.937835891686873, + "c5": 18.26027855655832, + "c6": 25.75895356180211, + "c7": 7.357866641327512 }, - "vertexSeeds": { - "c1": 3.922527455329779, - "c2": 3.821994784850241, - "c3": 4.024174154687363, - "c4": 3.793165756189657, - "c5": 3.8276028907949424, - "c6": 3.911109590715326, - "c7": 3.896206715146536 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -272301,23 +272301,23 @@ "year": 1784, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 1.8144493768150127, - "c2": 31.95715143770856, - "c3": 22.451126342549813, - "c4": -10.957821323893995, - "c5": -26.39114737640095, - "c6": -45.42902624872303, - "c7": -33.23774505807345 + "points": { + "c1": -7.11439945037565, + "c2": -10.100801128631389, + "c3": -10.926432211141822, + "c4": -36.83164217054863, + "c5": -40.69440653548861, + "c6": 25.473365533540004, + "c7": 32.829360287844324 }, - "vertexSeeds": { - "c1": 6.245304513549982, - "c2": 5.939200946167563, - "c3": 6.210222926952518, - "c4": 6.188809511068289, - "c5": 6.082035198350992, - "c6": 6.049717162212013, - "c7": 6.099601473251667 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991681, + "c3": 7.466481738326404, + "c4": 5.973185390661103, + "c5": 4.479889042995827, + "c6": 2.9865926953305517, + "c7": 1.4932963476652759 }, "rgb": [77, 76, 132] }, @@ -272328,23 +272328,23 @@ "year": 1784, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 10.636175858033475, - "c2": 5.250873198515599, - "c3": 11.308764373118095, - "c4": -31.570554162534982, - "c5": 32.35921065153417, - "c6": -11.486756309168314, - "c7": 23.929650483980176 + "points": { + "c1": 18.479223946364584, + "c2": -29.58419098187101, + "c3": -37.15955638570529, + "c4": -31.192527638377946, + "c5": 15.771855340506413, + "c6": 28.550705981478373, + "c7": 29.478502977063485 }, - "vertexSeeds": { - "c1": 3.035497451369442, - "c2": 3.0567810691129664, - "c3": 2.909124049787092, - "c4": 3.0538929576940768, - "c5": 3.0885015254452144, - "c6": 3.050253707281435, - "c7": 3.11783002409699 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515946, + "c3": 3.744798890429964, + "c4": 2.9958391123439685, + "c5": 2.246879334257973, + "c6": 1.497919556171978, + "c7": 0.7489597780859953 }, "rgb": [77, 76, 132] }, @@ -272355,23 +272355,23 @@ "year": 1784, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 22.065672587718026, - "c2": -9.360868896025995, - "c3": -21.70897095884788, - "c4": -10.57321057269887, - "c5": -33.58224034757554, - "c6": 33.483397642446675, - "c7": -29.95465449695364 + "points": { + "c1": 11.020248934648798, + "c2": 16.72448743856014, + "c3": 17.24559537052093, + "c4": 25.91804600698994, + "c5": 26.372161591162623, + "c6": -16.606819755269917, + "c7": -12.332657571015122 }, - "vertexSeeds": { - "c1": 8.145760065734882, - "c2": 7.706340253645364, - "c3": 7.6205294371482735, - "c4": 7.771984841208919, - "c5": 8.055374162210999, - "c6": 7.6231065220503424, - "c7": 8.090115449672592 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134525, + "c3": 9.847434119278782, + "c4": 7.8779472954230165, + "c5": 5.908460471567274, + "c6": 3.9389736477115083, + "c7": 1.9694868238557652 }, "rgb": [58, 15, 49] }, @@ -272382,23 +272382,23 @@ "year": 1784, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -9.103740336923416, - "c2": -23.484222494253054, - "c3": -28.66201874352067, - "c4": 1.193256125728297, - "c5": 18.060321354027707, - "c6": -0.4476816426366703, - "c7": -3.269028291348789 + "points": { + "c1": 27.763018162527608, + "c2": -22.04853193461468, + "c3": 0.37779899654039895, + "c4": 16.87202752275799, + "c5": 3.660584241996851, + "c6": -28.573871482126215, + "c7": 25.087779783325068 }, - "vertexSeeds": { - "c1": 10.258705071357937, - "c2": 10.903924878763876, - "c3": 10.986203869948065, - "c4": 10.761824268241243, - "c5": 10.294283477497457, - "c6": 11.066888873850472, - "c7": 10.923795775260954 + "offsets": { + "c1": 18.54368932038835, + "c2": 15.894590846047143, + "c3": 13.245492371705982, + "c4": 10.596393897364777, + "c5": 7.947295423023571, + "c6": 5.298196948682411, + "c7": 2.6490984743412054 }, "rgb": [222, 0, 59] }, @@ -272409,23 +272409,23 @@ "year": 1784, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -23.40118321321121, - "c2": -19.15708834474187, - "c3": -9.85686304686909, - "c4": -10.632789164191593, - "c5": 10.116957020293263, - "c6": -6.919504309209543, - "c7": 11.567409383844321 + "points": { + "c1": -22.327338363377216, + "c2": -17.722636637755862, + "c3": -19.34750629657095, + "c4": -27.27321173037069, + "c5": 16.564698247603054, + "c6": 28.326769322823765, + "c7": -6.176359622277548 }, - "vertexSeeds": { - "c1": 10.576302927338082, - "c2": 10.477077071263247, - "c3": 10.912130084584332, - "c4": 10.58956545519074, - "c5": 10.833524859728179, - "c6": 10.607170730874207, - "c7": 10.775312791186636 + "offsets": { + "c1": 18.54368932038835, + "c2": 15.894590846047143, + "c3": 13.245492371705982, + "c4": 10.596393897364777, + "c5": 7.947295423023571, + "c6": 5.298196948682411, + "c7": 2.6490984743412054 }, "rgb": [77, 76, 132] }, @@ -272436,23 +272436,23 @@ "year": 1784, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 2.8141029891641267, - "c2": -5.106461438704066, - "c3": 24.218608058325763, - "c4": -24.399928588632324, - "c5": -32.71520295119443, - "c6": 37.51426294036745, - "c7": 29.881459176037232 + "points": { + "c1": -16.41971062730748, + "c2": 23.920745752444738, + "c3": 1.5837653002315122, + "c4": -44.28329111635018, + "c5": -1.6265324072457616, + "c6": -36.72373896984294, + "c7": 20.47988218347681 }, - "vertexSeeds": { - "c1": 5.5304127894491835, - "c2": 6.168350188520324, - "c3": 5.733585250837349, - "c4": 5.90944236543597, - "c5": 6.014475515626662, - "c6": 5.858530088287342, - "c7": 6.321190143470505 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353673, + "c3": 7.674526121128059, + "c4": 6.139620896902445, + "c5": 4.60471567267683, + "c6": 3.069810448451229, + "c7": 1.5349052242256145 }, "rgb": [58, 15, 49] }, @@ -272463,23 +272463,23 @@ "year": 1784, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": -40.88753966591747, - "c2": -38.70936506587783, - "c3": -1.576555482896481, - "c4": -19.70736103776145, - "c5": -19.443562191337712, - "c6": 18.548781768988974, - "c7": 6.240097501162133 + "points": { + "c1": 31.279378234327524, + "c2": 32.720143433007976, + "c3": -36.28987740425134, + "c4": 6.663664452860964, + "c5": 1.1626183960766951, + "c6": 14.993848730575365, + "c7": 14.595290234475357 }, - "vertexSeeds": { - "c1": 1.2573495542716793, - "c2": 1.3645748913644715, - "c3": 1.4384065301582938, - "c4": 1.583805717298265, - "c5": 1.572575725551725, - "c6": 1.3545513575234975, - "c7": 1.352262095628109 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820163, + "c4": 1.5349052242256134, + "c5": 1.1511789181692107, + "c6": 0.7674526121128077, + "c7": 0.38372630605640495 }, "rgb": [222, 0, 59] }, @@ -272490,23 +272490,23 @@ "year": 1785, "resistanceReported": false, "duration": 65318400, - "curveSeeds": { - "c1": 12.806951243622876, - "c2": -20.508411532582684, - "c3": -9.779833901209386, - "c4": -64.5834953001582, - "c5": 26.678170459171554, - "c6": -20.8549023738842, - "c7": 67.50748443155078 + "points": { + "c1": 18.674230074811646, + "c2": -51.608400287713636, + "c3": -40.595720215877236, + "c4": -70.53142728166623, + "c5": -77.12485571146048, + "c6": 18.447227381879514, + "c7": -57.174248873343565 }, - "vertexSeeds": { - "c1": 7.030545904462514, - "c2": 6.726711479621073, - "c3": 7.009968103655105, - "c4": 6.957918511056263, - "c5": 6.665874554244442, - "c6": 6.751622099708312, - "c7": 6.762173928886294 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922324, + "c3": 8.576051779935284, + "c4": 6.860841423948224, + "c5": 5.145631067961162, + "c6": 3.4304207119741004, + "c7": 1.7152103559870613 }, "rgb": [86, 146, 138] }, @@ -272517,23 +272517,23 @@ "year": 1784, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 0.46022724734863374, - "c2": -28.20958737063518, - "c3": -28.623224858243034, - "c4": 2.709221629127107, - "c5": 39.90734463581143, - "c6": -2.557786840558819, - "c7": 18.278954429090867 + "points": { + "c1": 32.822867753857025, + "c2": -14.417478150177324, + "c3": -3.8659419176070173, + "c4": -6.454355100415825, + "c5": -27.07524222048446, + "c6": -14.293475949462351, + "c7": -10.892185797311626 }, - "vertexSeeds": { - "c1": 2.4187339625627335, - "c2": 2.303451754768267, - "c3": 2.207812772958046, - "c4": 2.37477656827531, - "c5": 2.3391059171891677, - "c6": 2.424603056261069, - "c7": 2.357050634461584 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081833, + "c3": 2.9357374017568207, + "c4": 2.3485899214054546, + "c5": 1.7614424410540916, + "c6": 1.1742949607027289, + "c7": 0.5871474803513628 }, "rgb": [77, 76, 132] }, @@ -272544,23 +272544,23 @@ "year": 1785, "resistanceReported": false, "duration": 59097600, - "curveSeeds": { - "c1": 50.94224742379687, - "c2": 49.03309225829196, - "c3": -47.13184839794911, - "c4": -18.834835995970074, - "c5": -26.411619912073164, - "c6": 53.83480567167493, - "c7": 50.70915851226111 + "points": { + "c1": -0.6025956714828737, + "c2": -35.00754698644913, + "c3": 26.966330345557793, + "c4": 12.088236000025645, + "c5": -18.985276677170823, + "c6": -62.48681516743089, + "c7": -2.0738682020135 }, - "vertexSeeds": { - "c1": 2.5409058121318253, - "c2": 2.92284742941277, - "c3": 2.643543657440973, - "c4": 2.5645732751905186, - "c5": 2.8568128535220114, - "c6": 2.6690150308831417, - "c7": 2.9061224228216473 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [238, 201, 159] }, @@ -272571,23 +272571,23 @@ "year": 1784, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -5.7929035641557896, - "c2": -5.052336275084205, - "c3": -6.761326474578084, - "c4": 5.888269355064402, - "c5": -8.884772547103893, - "c6": 24.44761469662388, - "c7": -16.759149068317747 + "points": { + "c1": 28.699415887395624, + "c2": -16.262822474816936, + "c3": -19.846847593808654, + "c4": -27.367543617921925, + "c5": -21.688767476948524, + "c6": 0.5984168187071148, + "c7": -4.602866633467457 }, - "vertexSeeds": { - "c1": 10.400942117514134, - "c2": 10.018559741116334, - "c3": 11.124420715178763, - "c4": 10.241669882338593, - "c5": 9.730311388966243, - "c6": 10.193992647342094, - "c7": 10.5642774972373 + "offsets": { + "c1": 18.867313915857604, + "c2": 16.17198335644937, + "c3": 13.476652797041138, + "c4": 10.781322237632905, + "c5": 8.0859916782247, + "c6": 5.390661118816466, + "c7": 2.695330559408233 }, "rgb": [86, 146, 138] }, @@ -272598,23 +272598,23 @@ "year": 1784, "resistanceReported": false, "duration": 41212800, - "curveSeeds": { - "c1": -48.26498291902442, - "c2": -43.7422111350088, - "c3": -12.796789120121936, - "c4": -19.063032803384267, - "c5": -48.77689952137308, - "c6": 22.470724976983853, - "c7": 51.917467885978404 + "points": { + "c1": 31.02395843800641, + "c2": -16.077627279292756, + "c3": 19.072491691612917, + "c4": 14.84937072907882, + "c5": 39.81755568371637, + "c6": 49.98999169723141, + "c7": -45.76071383302087 }, - "vertexSeeds": { - "c1": 8.028220390196408, - "c2": 7.694466198569766, - "c3": 8.040244662237933, - "c4": 8.846991754211798, - "c5": 8.929118947662325, - "c6": 8.714357984871075, - "c7": 8.199480196612454 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662971, + "c3": 10.725843735552468, + "c4": 8.580674988441976, + "c5": 6.435506241331486, + "c6": 4.290337494220995, + "c7": 2.145168747110491 }, "rgb": [86, 146, 138] }, @@ -272625,23 +272625,23 @@ "year": 1784, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -13.642824244546237, - "c2": -6.302849066905409, - "c3": -38.105537436120215, - "c4": 24.47407794419272, - "c5": 33.02771955071277, - "c6": -11.108290793447914, - "c7": 37.861003096470945 + "points": { + "c1": -26.85630467278877, + "c2": 38.41560921299584, + "c3": -4.239813012144452, + "c4": -39.676050724682604, + "c5": -34.75974851331431, + "c6": -29.666374180692014, + "c7": -11.723680607254039 }, - "vertexSeeds": { - "c1": 5.897715212099018, - "c2": 5.88253967135458, - "c3": 6.199970611243008, - "c4": 6.144538199640954, - "c5": 6.3063689898710695, - "c6": 6.304979984935429, - "c7": 5.865061836523722 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [222, 0, 59] }, @@ -272652,23 +272652,23 @@ "year": 1784, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -26.742071632586203, - "c2": 22.992944163297665, - "c3": -14.67230646660602, - "c4": -27.259416803545776, - "c5": -3.6210251537570883, - "c6": -20.70409909362528, - "c7": -17.47076343860396 + "points": { + "c1": 31.184913190786943, + "c2": -34.06877783949114, + "c3": 16.672024414826915, + "c4": 36.96215192482232, + "c5": -23.094328982249955, + "c6": -24.149416262237384, + "c7": -0.6691489138271933 }, - "vertexSeeds": { - "c1": 3.386334132047944, - "c2": 3.5324887685724495, - "c3": 3.4347284970358842, - "c4": 3.414303708899798, - "c5": 3.5328577224187105, - "c6": 3.477214226733147, - "c7": 3.441468505689694 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601941, + "c3": 4.368932038834951, + "c4": 3.495145631067961, + "c5": 2.6213592233009706, + "c6": 1.7475728155339805, + "c7": 0.8737864077669902 }, "rgb": [77, 76, 132] }, @@ -272679,23 +272679,23 @@ "year": 1784, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -24.168755494073505, - "c2": -19.512517763521373, - "c3": -2.854812862234798, - "c4": 10.929476237876692, - "c5": 3.3937617165339695, - "c6": -11.80415057208458, - "c7": -17.145296179942036 + "points": { + "c1": 19.587199741360116, + "c2": -17.694516182882715, + "c3": 7.5672457349035085, + "c4": 13.580330816537746, + "c5": 15.497351882066738, + "c6": -10.443496953708927, + "c7": 9.574596755314609 }, - "vertexSeeds": { - "c1": 3.0406648553490276, - "c2": 3.0892369700815876, - "c3": 2.914237746180305, - "c4": 3.0101398511168593, - "c5": 3.2566520139478374, - "c6": 3.1797229695156775, - "c7": 3.2089673278490642 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -272706,23 +272706,23 @@ "year": 1784, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 23.545233347099824, - "c2": 14.209921819326418, - "c3": -13.735145691510755, - "c4": -19.630196078708707, - "c5": -24.156937818669274, - "c6": 16.292627809911444, - "c7": -3.1927745217926287 + "points": { + "c1": -7.932614894025086, + "c2": -11.754280488376981, + "c3": 37.10811085550444, + "c4": 1.746126302468241, + "c5": -17.801301009502193, + "c6": -1.4564236406245143, + "c7": -6.440489264318021 }, - "vertexSeeds": { - "c1": 7.76137720683479, - "c2": 7.829501328031914, - "c3": 7.543996185524268, - "c4": 7.712022633542831, - "c5": 7.9369072551287525, - "c6": 7.644146643290139, - "c7": 7.705103259877454 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410078, + "c4": 7.6745261211280615, + "c5": 5.7558945908460455, + "c6": 3.8372630605640308, + "c7": 1.9186315302820154 }, "rgb": [238, 201, 159] }, @@ -272733,23 +272733,23 @@ "year": 1784, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 20.0580614583306, - "c2": 18.736760575578757, - "c3": -0.9317485222128781, - "c4": -31.992771246159933, - "c5": 3.1897611839316085, - "c6": -17.188417134071376, - "c7": 14.211863746000368 + "points": { + "c1": 7.463030036539365, + "c2": -13.437546773141413, + "c3": 13.142634373369404, + "c4": -11.820220248677494, + "c5": -35.81411081456661, + "c6": 7.4951049087908785, + "c7": 12.448581013621421 }, - "vertexSeeds": { - "c1": 9.490601478187632, - "c2": 10.32990034980321, - "c3": 9.90688383362611, - "c4": 9.646669780323435, - "c5": 10.265255819451719, - "c6": 9.933287540686806, - "c7": 10.348300181862195 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.868238557558932, + "c3": 12.390198797965805, + "c4": 9.912159038372636, + "c5": 7.434119278779487, + "c6": 4.956079519186318, + "c7": 2.478039759593169 }, "rgb": [238, 201, 159] }, @@ -272760,23 +272760,23 @@ "year": 1784, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 9.211546442923904, - "c2": 22.527420160268576, - "c3": -21.695312127075663, - "c4": -4.850475537424959, - "c5": 17.834944633495503, - "c6": -0.22866413783707173, - "c7": -20.357604249157724 + "points": { + "c1": -10.434246998722351, + "c2": 29.087085187660357, + "c3": 9.641931081134807, + "c4": 22.577373736637973, + "c5": -1.9747743353626603, + "c6": 28.815488276045166, + "c7": 7.19835191785441 }, - "vertexSeeds": { - "c1": 9.100079810825198, - "c2": 9.17046989789802, - "c3": 9.07171882027332, - "c4": 9.189141870964932, - "c5": 9.665626793134289, - "c6": 9.279451993704525, - "c7": 9.642975265593575 + "offsets": { + "c1": 16.763754045307444, + "c2": 14.368932038834954, + "c3": 11.974110032362466, + "c4": 9.579288025889959, + "c5": 7.184466019417468, + "c6": 4.789644012944979, + "c7": 2.3948220064724897 }, "rgb": [86, 146, 138] }, @@ -272787,23 +272787,23 @@ "year": 1784, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 11.683916413209275, - "c2": -1.741844375022481, - "c3": 32.22108028761524, - "c4": 39.32553742146915, - "c5": 47.209373780930875, - "c6": 30.80787806437037, - "c7": 4.717903433943867 + "points": { + "c1": -26.893093186581197, + "c2": -43.119727915566095, + "c3": -10.390378185990485, + "c4": -38.758688388717175, + "c5": 44.22475270837954, + "c6": 35.59138768874297, + "c7": 21.61761046578556 }, - "vertexSeeds": { - "c1": 7.254457752804456, - "c2": 7.3844314684261825, - "c3": 6.926395484416928, - "c4": 6.868338003735104, - "c5": 7.392692747495319, - "c6": 7.096032951963435, - "c7": 6.902651675779886 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -272814,23 +272814,23 @@ "year": 1784, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -28.948680850957224, - "c2": -27.844635135557905, - "c3": -21.559080496871342, - "c4": 14.716342791265806, - "c5": 15.627460334933485, - "c6": -9.385288479969418, - "c7": 20.664712214903535 + "points": { + "c1": 15.468162699559304, + "c2": -8.679451527056763, + "c3": 7.969974493667269, + "c4": 17.645293477792524, + "c5": -0.4562194512242179, + "c6": 11.80391828009623, + "c7": -12.947155175996983 }, - "vertexSeeds": { - "c1": 12.624963235762834, - "c2": 12.118075548431676, - "c3": 11.661743671018067, - "c4": 12.47447858277325, - "c5": 12.089271040088972, - "c6": 12.371192179830466, - "c7": 12.525638561030343 + "offsets": { + "c1": 21.326860841423947, + "c2": 18.280166435506235, + "c3": 15.233472029588523, + "c4": 12.18677762367085, + "c5": 9.140083217753137, + "c6": 6.093388811835425, + "c7": 3.0466944059177123 }, "rgb": [238, 201, 159] }, @@ -272841,23 +272841,23 @@ "year": 1784, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 25.743256873597794, - "c2": 26.028928908960324, - "c3": -3.6976056311535928, - "c4": 19.70509920167614, - "c5": -17.911486677671594, - "c6": -10.205168549451177, - "c7": -9.400666120702013 + "points": { + "c1": 27.128798384084817, + "c2": -27.088032101336232, + "c3": -1.2792854974012826, + "c4": 23.954829740746426, + "c5": 29.40743722145011, + "c6": 11.021718113184555, + "c7": -22.666474486921672 }, - "vertexSeeds": { - "c1": 12.21907667546648, - "c2": 12.272836470409075, - "c3": 11.869418859964915, - "c4": 11.973361161508913, - "c5": 11.95299413906609, - "c6": 11.769447367912258, - "c7": 12.62358884589402 + "offsets": { + "c1": 21.553398058252426, + "c2": 18.4743411927878, + "c3": 15.395284327323173, + "c4": 12.316227461858547, + "c5": 9.237170596393879, + "c6": 6.158113730929253, + "c7": 3.0790568654646266 }, "rgb": [77, 76, 132] }, @@ -272868,23 +272868,23 @@ "year": 1784, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -12.584803287102105, - "c2": 13.764903468976378, - "c3": 3.6918750668065243, - "c4": -9.219996239402366, - "c5": 1.8870970353210694, - "c6": 24.293694444084238, - "c7": -9.436021046882765 + "points": { + "c1": 7.119364977501078, + "c2": -28.949742925531595, + "c3": 4.079160877487979, + "c4": 30.075567404328503, + "c5": -7.00381550926318, + "c6": 4.05478964177091, + "c7": 27.851517406617724 }, - "vertexSeeds": { - "c1": 6.370576216661641, - "c2": 6.450389762573503, - "c3": 6.371234614501041, - "c4": 6.592657229857482, - "c5": 6.785910418692725, - "c6": 6.437420429498311, - "c7": 6.808040587463803 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -272895,23 +272895,23 @@ "year": 1784, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": -4.686355754894301, - "c2": -31.33919577145348, - "c3": -8.210388223125449, - "c4": -19.78534308483524, - "c5": -49.923370477053055, - "c6": -10.758552374375377, - "c7": -25.70535551424217 + "points": { + "c1": -2.9691874513415684, + "c2": 38.32249411956427, + "c3": -53.46386719437453, + "c4": -18.024653076364814, + "c5": -39.66910855248581, + "c6": 36.99137627684273, + "c7": 1.4818386622642876 }, - "vertexSeeds": { - "c1": 4.1240220930196445, - "c2": 3.91082156345389, - "c3": 4.0860496380132725, - "c4": 3.9358555911717716, - "c5": 4.247664874436703, - "c6": 4.143642652328033, - "c7": 3.9287366550395086 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244145, + "c6": 2.03421174294961, + "c7": 1.017105871474805 }, "rgb": [77, 76, 132] }, @@ -272922,23 +272922,23 @@ "year": 1784, "resistanceReported": true, "duration": 34646400, - "curveSeeds": { - "c1": 4.42369334494952, - "c2": 24.556370684531778, - "c3": -39.36030832227064, - "c4": 26.464878169993305, - "c5": -5.462558734983439, - "c6": -29.916033635376163, - "c7": -7.130237659294522 + "points": { + "c1": 11.652944951485381, + "c2": -38.088022850436936, + "c3": 42.003475076139615, + "c4": -18.44865828874817, + "c5": 47.53458339205469, + "c6": -20.50183835456569, + "c7": -40.31751752274167 }, - "vertexSeeds": { - "c1": 6.706969232186116, - "c2": 6.928390774429686, - "c3": 7.1301400735629255, - "c4": 7.140503143780372, - "c5": 7.005633783208391, - "c6": 6.751408979879714, - "c7": 6.78310000615727 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123447, + "c3": 8.691631992602863, + "c4": 6.953305594082299, + "c5": 5.214979195561714, + "c6": 3.4766527970411496, + "c7": 1.738326398520585 }, "rgb": [238, 201, 159] }, @@ -272949,23 +272949,23 @@ "year": 1784, "resistanceReported": false, "duration": 45100800, - "curveSeeds": { - "c1": -30.72354147012513, - "c2": -3.8317689831370814, - "c3": 33.65695122185141, - "c4": -6.972556271907884, - "c5": -14.18499076184456, - "c6": -55.04572514970916, - "c7": 34.686258643925434 + "points": { + "c1": 10.143683771086508, + "c2": 1.1197929306579226, + "c3": 31.757011211250408, + "c4": -16.229339480482473, + "c5": -50.377526353969344, + "c6": -36.74184207863284, + "c7": 26.59164456547571 }, - "vertexSeeds": { - "c1": 8.463705766590115, - "c2": 8.77868261386858, - "c3": 7.863812857020392, - "c4": 8.742995578833558, - "c5": 8.930854773366121, - "c6": 9.005956205449117, - "c7": 8.935823543755534 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864075, + "c3": 10.841423948220061, + "c4": 8.67313915857606, + "c5": 6.504854368932045, + "c6": 4.33656957928803, + "c7": 2.168284789644015 }, "rgb": [222, 0, 59] }, @@ -272976,23 +272976,23 @@ "year": 1784, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -23.685353240102703, - "c2": 21.54320990172004, - "c3": -0.9612593784527377, - "c4": -29.096336358693243, - "c5": -25.340420062471928, - "c6": 36.4073991311593, - "c7": -31.38246873272398 + "points": { + "c1": -37.947676521226576, + "c2": -23.63746040557159, + "c3": -3.625318003069573, + "c4": -31.683997949702857, + "c5": -32.34758368330809, + "c6": 7.85893547104768, + "c7": -38.88743860866306 }, - "vertexSeeds": { - "c1": 4.059429918189776, - "c2": 3.868108610587666, - "c3": 4.019024197623604, - "c4": 3.989350168563823, - "c5": 4.02486956696816, - "c6": 3.882391730029779, - "c7": 4.002086348619925 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [58, 15, 49] }, @@ -273003,23 +273003,23 @@ "year": 1783, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": -12.75045074604847, - "c2": 11.94274182476964, - "c3": 6.587564926241633, - "c4": 15.069623153803981, - "c5": 10.822914631118458, - "c6": 5.12178353022512, - "c7": 2.4822078717580034 + "points": { + "c1": -17.835456595283294, + "c2": 1.921562912577123, + "c3": -9.586872850524273, + "c4": -20.274476280392555, + "c5": -5.999467374620277, + "c6": 20.712967753996516, + "c7": -20.002475121769315 }, - "vertexSeeds": { - "c1": 3.0482371244622333, - "c2": 3.202341932391811, - "c3": 2.916693636172651, - "c4": 2.8966524299525314, - "c5": 3.17636627269249, - "c6": 3.035869875915928, - "c7": 2.990534988102147 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -273030,23 +273030,23 @@ "year": 1784, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 21.483430182807, - "c2": -27.767776798580535, - "c3": 9.436189910122827, - "c4": 14.312842638951814, - "c5": -32.09973532879814, - "c6": -27.826860098831652, - "c7": -0.3761700038643241 + "points": { + "c1": 6.1426340972226825, + "c2": -14.52379651315, + "c3": 25.247886002906114, + "c4": 29.060376765022767, + "c5": 11.44369602441732, + "c6": -30.644912512784956, + "c7": -3.0050868130150974 }, - "vertexSeeds": { - "c1": 12.460996769363241, - "c2": 12.41727375023377, - "c3": 12.446538917158087, - "c4": 12.481007061114175, - "c5": 12.438354740229071, - "c6": 12.44925430693899, - "c7": 12.532670063053903 + "offsets": { + "c1": 20.97087378640777, + "c2": 17.975034674063767, + "c3": 14.979195561719767, + "c4": 11.983356449375764, + "c5": 8.987517337032003, + "c6": 5.991678224688002, + "c7": 2.995839112344001 }, "rgb": [77, 76, 132] }, @@ -273057,23 +273057,23 @@ "year": 1784, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -30.35434989702842, - "c2": -34.869221509127414, - "c3": -19.709537426739466, - "c4": -22.56106849418758, - "c5": -19.57863026101709, - "c6": -17.665175522513486, - "c7": -1.2448073841550453 + "points": { + "c1": 8.993837712320577, + "c2": 24.629396239157437, + "c3": 33.60572596012856, + "c4": 8.824679131718767, + "c5": -28.898242698142003, + "c6": 17.194839682973438, + "c7": 18.180015695764865 }, - "vertexSeeds": { - "c1": 7.308550732841974, - "c2": 6.255500584928836, - "c3": 6.567310311733398, - "c4": 5.3931638437374865, - "c5": 5.446087184954695, - "c6": 5.79165960450373, - "c7": 5.618080944183943 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [58, 15, 49] }, @@ -273084,23 +273084,23 @@ "year": 1785, "resistanceReported": false, "duration": 64800000, - "curveSeeds": { - "c1": -2.8672992074330494, - "c2": 30.592177284883505, - "c3": -20.667729238444196, - "c4": -17.268115874151725, - "c5": 70.03716588716347, - "c6": 35.15411970532291, - "c7": 59.59196497288801 + "points": { + "c1": 68.86301145662085, + "c2": 53.10449938164135, + "c3": 39.25426819724753, + "c4": -0.3802648284173955, + "c5": 46.21211851675682, + "c6": -82.33810897456891, + "c7": 43.76031502751054 }, - "vertexSeeds": { - "c1": 3.432178157548992, - "c2": 4.44682620729784, - "c3": 4.458829458882484, - "c4": 3.890031375307395, - "c5": 3.8380477364489876, - "c6": 3.2599111910493948, - "c7": 4.399651016919297 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411927, + "c3": 5.4091539528432735, + "c4": 4.3273231622746176, + "c5": 3.2454923717059647, + "c6": 2.1636615811373088, + "c7": 1.0818307905686528 }, "rgb": [238, 201, 159] }, @@ -273111,23 +273111,23 @@ "year": 1784, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": -42.90765583566863, - "c2": -36.103350348703934, - "c3": -25.07484969907503, - "c4": 27.227210226085937, - "c5": 0.6334398251580566, - "c6": 26.595822234193555, - "c7": 54.96222449694657 + "points": { + "c1": -54.98959035279689, + "c2": 57.053480377643645, + "c3": 7.363301919822085, + "c4": -45.704865387170415, + "c5": 4.629673852111786, + "c6": -44.10032488823374, + "c7": -19.86189179158086 }, - "vertexSeeds": { - "c1": 8.521094053646074, - "c2": 8.514632921187992, - "c3": 8.352246612695918, - "c4": 8.266418148438515, - "c5": 8.526993147514915, - "c6": 8.466581666004178, - "c7": 8.318527980717315 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019423, + "c3": 10.355987055016191, + "c4": 8.28478964401296, + "c5": 6.213592233009729, + "c6": 4.142394822006462, + "c7": 2.071197411003231 }, "rgb": [222, 0, 59] }, @@ -273138,23 +273138,23 @@ "year": 1784, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 1.1365584860297062, - "c2": -17.558701469378413, - "c3": -4.772745075724785, - "c4": 11.68864517367956, - "c5": -23.67844573993321, - "c6": 12.382865797801628, - "c7": 30.75878271792358 + "points": { + "c1": -13.189186647421781, + "c2": -37.2281877965382, + "c3": 31.375165458257797, + "c4": -10.180218713213542, + "c5": -29.04262978546197, + "c6": 1.2985470609226866, + "c7": 7.179263989144864 }, - "vertexSeeds": { - "c1": 9.90611594150077, - "c2": 10.379467766138887, - "c3": 9.860690664293664, - "c4": 9.712280917734661, - "c5": 10.526473941412327, - "c6": 10.580496688375131, - "c7": 10.003357152223023 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961173, + "c3": 12.621359223300983, + "c4": 10.097087378640753, + "c5": 7.572815533980564, + "c6": 5.048543689320376, + "c7": 2.524271844660188 }, "rgb": [238, 201, 159] }, @@ -273165,23 +273165,23 @@ "year": 1784, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -31.717723862103924, - "c2": 28.880192036671872, - "c3": 7.60529311341638, - "c4": -33.8603177743374, - "c5": 8.05166357808907, - "c6": -15.95073342288099, - "c7": -20.112706245666146 + "points": { + "c1": -30.56318681856396, + "c2": 8.695597032879327, + "c3": 22.286512659124753, + "c4": 34.187905266340465, + "c5": -31.271658561002994, + "c6": 27.752975541941538, + "c7": -14.418592989574265 }, - "vertexSeeds": { - "c1": 11.056050388647042, - "c2": 11.535956258182201, - "c3": 11.91177297907689, - "c4": 12.08399316109501, - "c5": 11.257059341902185, - "c6": 11.601396435162695, - "c7": 11.03897544870812 + "offsets": { + "c1": 20.19417475728155, + "c2": 17.30929264909847, + "c3": 14.424410540915394, + "c4": 11.539528432732315, + "c5": 8.654646324549235, + "c6": 5.769764216366157, + "c7": 2.8848821081830787 }, "rgb": [86, 146, 138] }, @@ -273192,23 +273192,23 @@ "year": 1784, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 24.78879207996055, - "c2": 2.646267817545148, - "c3": 23.060177819785004, - "c4": -18.417775556333712, - "c5": -0.6169553226240083, - "c6": -4.949497147362866, - "c7": 11.63588825103539 + "points": { + "c1": -15.37628925983401, + "c2": -9.348470138596259, + "c3": 22.8896949404076, + "c4": -15.837866577068647, + "c5": -0.9265891802635409, + "c6": 26.24465101508909, + "c7": -13.00023345484735 }, - "vertexSeeds": { - "c1": 8.045754843369005, - "c2": 8.256820303931311, - "c3": 8.020446299322035, - "c4": 7.953253463294666, - "c5": 8.41095013997591, - "c6": 8.259289492458588, - "c7": 8.01010600524706 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147487, + "c4": 8.081368469717994, + "c5": 6.061026352288501, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [58, 15, 49] }, @@ -273219,23 +273219,23 @@ "year": 1784, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -3.1465972713697177, - "c2": -16.776973233152944, - "c3": -11.209823324756119, - "c4": -13.488407516472318, - "c5": -5.0233075045313775, - "c6": -13.259415831630925, - "c7": 2.6580887435096834 + "points": { + "c1": 13.833681392663916, + "c2": -6.391617676209734, + "c3": -6.887812434553421, + "c4": 21.972549180123227, + "c5": -19.377814400954257, + "c6": 8.825366665773824, + "c7": -7.367573943497604 }, - "vertexSeeds": { - "c1": 8.387196922528318, - "c2": 8.590355070986258, - "c3": 8.9264525317641, - "c4": 8.557427896286361, - "c5": 8.680644197594953, - "c6": 8.732472999660846, - "c7": 8.413002758395175 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864084, + "c3": 10.841423948220077, + "c4": 8.67313915857605, + "c5": 6.504854368932042, + "c6": 4.336569579288036, + "c7": 2.1682847896440065 }, "rgb": [77, 76, 132] }, @@ -273246,23 +273246,23 @@ "year": 1784, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -3.145244978624227, - "c2": 19.032164844747246, - "c3": -12.125446648965294, - "c4": -13.208004284473528, - "c5": 13.276842267165595, - "c6": 3.2623697807159537, - "c7": 16.58406218148564 + "points": { + "c1": 1.1385800217413546, + "c2": 10.92608156908279, + "c3": 12.47591917711459, + "c4": 6.860495134468856, + "c5": 11.032013366620198, + "c6": -0.2635887945124509, + "c7": 4.752148766912185 }, - "vertexSeeds": { - "c1": 12.0301759315749, - "c2": 12.193883865686324, - "c3": 11.513454319627535, - "c4": 11.786206547052297, - "c5": 12.173939567792965, - "c6": 11.578882124876408, - "c7": 12.23283113889296 + "offsets": { + "c1": 20.906148867313913, + "c2": 17.919556171983373, + "c3": 14.93296347665279, + "c4": 11.94637078132225, + "c5": 8.959778085991665, + "c6": 5.973185390661125, + "c7": 2.9865926953305846 }, "rgb": [58, 15, 49] }, @@ -273273,23 +273273,23 @@ "year": 1784, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 20.05458185408898, - "c2": -22.01095471466133, - "c3": -6.079242371970384, - "c4": 3.752678895594393, - "c5": -6.3892243662353145, - "c6": -15.423527436704717, - "c7": 0.16316963106778104 + "points": { + "c1": -28.051410290376165, + "c2": 0.9244661586075438, + "c3": -10.571467340183435, + "c4": 21.09469595542206, + "c5": 21.928230407194384, + "c6": -11.07956471092847, + "c7": 4.338303710127313 }, - "vertexSeeds": { - "c1": 8.23381552461524, - "c2": 8.224062220593899, - "c3": 8.660683041030865, - "c4": 8.176016112855043, - "c5": 8.678746403409919, - "c6": 8.468758591085857, - "c7": 8.435437458393752 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019412, + "c3": 10.355987055016168, + "c4": 8.284789644012948, + "c5": 6.213592233009706, + "c6": 4.142394822006463, + "c7": 2.0711974110032427 }, "rgb": [238, 201, 159] }, @@ -273300,23 +273300,23 @@ "year": 1784, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 35.03088478603974, - "c2": -13.281947122637327, - "c3": 35.094472546923434, - "c4": -14.39994292850854, - "c5": 23.635070044028993, - "c6": -18.04784161297832, - "c7": -29.579733748096658 + "points": { + "c1": 15.547642036829856, + "c2": -33.4762261708885, + "c3": 31.003653419710638, + "c4": 24.45390272751404, + "c5": -6.9920897774097455, + "c6": -4.39779915652381, + "c7": -38.65411770356742 }, - "vertexSeeds": { - "c1": 11.143436181122588, - "c2": 10.841742752317106, - "c3": 10.92138844766702, - "c4": 11.131773929076003, - "c5": 10.765929752328386, - "c6": 11.019160846066413, - "c7": 10.575328253472572 + "offsets": { + "c1": 18.673139158576053, + "c2": 16.005547850208057, + "c3": 13.33795654184002, + "c4": 10.670365233472022, + "c5": 8.002773925104028, + "c6": 5.335182616735991, + "c7": 2.6675913083679954 }, "rgb": [222, 0, 59] }, @@ -273327,23 +273327,23 @@ "year": 1784, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -29.422676780477907, - "c2": -20.903548073369024, - "c3": 15.72760055275657, - "c4": -32.260557791122814, - "c5": 2.464221905273739, - "c6": 23.897390500045347, - "c7": 30.380699043564576 + "points": { + "c1": 32.47384077057539, + "c2": -21.651722815325954, + "c3": -21.959354925411848, + "c4": -13.302057395204397, + "c5": 33.62101130461599, + "c6": 13.35989182102302, + "c7": 28.849499911517455 }, - "vertexSeeds": { - "c1": 6.180544811842272, - "c2": 5.794697643756761, - "c3": 5.938767735559432, - "c4": 5.871085929694667, - "c5": 6.154583427908937, - "c6": 6.0965254083154115, - "c7": 5.568308804655522 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871012, + "c3": 7.39713361072584, + "c4": 5.917706888580669, + "c5": 4.438280166435513, + "c6": 2.9588534442903422, + "c7": 1.4794267221451711 }, "rgb": [238, 201, 159] }, @@ -273354,23 +273354,23 @@ "year": 1784, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -27.203854814824396, - "c2": 40.23422084345196, - "c3": 25.36017286810071, - "c4": 2.4941880703862367, - "c5": -11.085067584799233, - "c6": 23.954572507632157, - "c7": -37.23897823089665 + "points": { + "c1": 21.319035110805522, + "c2": 46.9408247732019, + "c3": 15.116402156881627, + "c4": -38.4048098350397, + "c5": -33.84063055207047, + "c6": 3.3476562782001125, + "c7": -4.991346812107636 }, - "vertexSeeds": { - "c1": 4.128122649378537, - "c2": 4.163033847806857, - "c3": 4.280145698310389, - "c4": 4.1337937389657595, - "c5": 4.1545931130693, - "c6": 4.139841775686119, - "c7": 4.057339203814237 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009712, + "c3": 5.177993527508098, + "c4": 4.14239482200647, + "c5": 3.106796116504856, + "c6": 2.071197411003242, + "c7": 1.0355987055016145 }, "rgb": [222, 0, 59] }, @@ -273381,23 +273381,23 @@ "year": 1784, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -33.887845314605784, - "c2": -45.50734605039086, - "c3": -43.30016421121577, - "c4": 43.74502500960015, - "c5": 10.929917866810527, - "c6": 43.908067643779496, - "c7": -34.10822225684575 + "points": { + "c1": -37.04402224037891, + "c2": -22.057159085568998, + "c3": -13.132489191527434, + "c4": -42.995675029051576, + "c5": 13.44586087283033, + "c6": 49.109612862485655, + "c7": 15.680184890229334 }, - "vertexSeeds": { - "c1": 8.61466022229014, - "c2": 8.569397761225131, - "c3": 8.245328455129686, - "c4": 8.525232227356923, - "c5": 8.248193698557236, - "c6": 8.453658984033641, - "c7": 8.330522357978998 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140092, + "c3": 10.425335182616733, + "c4": 8.340268146093395, + "c5": 6.255201109570035, + "c6": 4.170134073046698, + "c7": 2.0850670365233586 }, "rgb": [86, 146, 138] }, @@ -273408,23 +273408,23 @@ "year": 1784, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 32.87367875312074, - "c2": -9.139493921960266, - "c3": 3.7460676821654744, - "c4": 27.72605642304473, - "c5": -0.8218179137208637, - "c6": 25.718500415439543, - "c7": -18.13461167782671 + "points": { + "c1": 0.41212570678406735, + "c2": 3.6838052246605244, + "c3": 29.867663279402493, + "c4": -0.5237529532586862, + "c5": -19.71499520734203, + "c6": -24.203223617173983, + "c7": 14.623204561663023 }, - "vertexSeeds": { - "c1": 1.7487628737824443, - "c2": 1.8022402697242639, - "c3": 1.7324917281740877, - "c4": 1.7749850303913333, - "c5": 1.7597088655033055, - "c6": 1.7550521447066894, - "c7": 1.751843239150568 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.690707350901526, + "c3": 2.2422561257512714, + "c4": 1.793804900601017, + "c5": 1.345353675450763, + "c6": 0.8969024503005085, + "c7": 0.44845122515025426 }, "rgb": [238, 201, 159] }, @@ -273435,23 +273435,23 @@ "year": 1784, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 31.29514103597088, - "c2": 2.452191425241878, - "c3": 10.007816696146662, - "c4": -29.155420096705072, - "c5": 23.61857394635851, - "c6": 5.750778200175354, - "c7": 10.571060950476216 + "points": { + "c1": -8.81844037984694, + "c2": -19.42380129005024, + "c3": 29.49414798130575, + "c4": -32.74667007362098, + "c5": -7.550797767951401, + "c6": -7.152877328551362, + "c7": -33.899852457007825 }, - "vertexSeeds": { - "c1": 7.508555018867535, - "c2": 7.531467609843386, - "c3": 7.835127907845125, - "c4": 7.842071187567033, - "c5": 7.13144620848876, - "c6": 7.24803094499946, - "c7": 7.514432688349015 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330096, + "c3": 9.385113268608414, + "c4": 7.50809061488673, + "c5": 5.631067961165048, + "c6": 3.754045307443365, + "c7": 1.8770226537216825 }, "rgb": [86, 146, 138] }, @@ -273462,23 +273462,23 @@ "year": 1784, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 34.56220717331119, - "c2": -23.341851696436418, - "c3": 19.988961199282052, - "c4": -16.378709747880702, - "c5": -4.714427710034677, - "c6": -2.0857672115586396, - "c7": 2.0957808125706663 + "points": { + "c1": 24.19373068418983, + "c2": 1.4977409891418034, + "c3": 16.772771714948647, + "c4": 36.248335491073426, + "c5": -7.028082637731309, + "c6": 28.21075690772266, + "c7": 30.04373200372904 }, - "vertexSeeds": { - "c1": 6.629243449471519, - "c2": 6.6435639609861, - "c3": 6.964996712937385, - "c4": 6.734097015938399, - "c5": 6.912558995324991, - "c6": 7.028239994871386, - "c7": 6.614980781905656 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043005, + "c3": 8.645399907535827, + "c4": 6.91631992602867, + "c5": 5.187239944521492, + "c6": 3.458159963014335, + "c7": 1.7290799815071778 }, "rgb": [86, 146, 138] }, @@ -273489,23 +273489,23 @@ "year": 1784, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -37.977464405830275, - "c2": -17.746847071737108, - "c3": -33.7500575656302, - "c4": -16.85208646601408, - "c5": 6.343259464009307, - "c6": 24.77749119678535, - "c7": 31.56823037031893 + "points": { + "c1": -30.725455952390554, + "c2": 2.3371755860594376, + "c3": 3.072696425074355, + "c4": -39.88124276420682, + "c5": -32.656626702256006, + "c6": -18.694339378927666, + "c7": -35.798804356468594 }, - "vertexSeeds": { - "c1": 6.724207153612335, - "c2": 6.285865762237048, - "c3": 6.550445717025943, - "c4": 6.434878653132393, - "c5": 6.457325455319156, - "c6": 6.424972507001123, - "c7": 6.230393839268889 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037438, + "c3": 8.067498844197877, + "c4": 6.4539990753582925, + "c5": 4.840499306518731, + "c6": 3.2269995376791463, + "c7": 1.613499768839562 }, "rgb": [222, 0, 59] }, @@ -273516,23 +273516,23 @@ "year": 1784, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -1.8563160019888585, - "c2": -12.494459921413515, - "c3": 24.828493385167206, - "c4": 0.8625723848152447, - "c5": 1.6166685577276283, - "c6": -35.69412535387398, - "c7": -21.42132525019486 + "points": { + "c1": 5.7510395906544645, + "c2": 12.197417200500752, + "c3": 36.080080032425315, + "c4": 22.57339945433761, + "c5": -19.04994091761083, + "c6": 21.55799975548723, + "c7": -24.889307658952006 }, - "vertexSeeds": { - "c1": 6.0173285229765465, - "c2": 6.208411151192406, - "c3": 6.055113530949511, - "c4": 5.989452717335602, - "c5": 5.894236110904622, - "c6": 6.078934138706022, - "c7": 5.989225365159008 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [86, 146, 138] }, @@ -273543,23 +273543,23 @@ "year": 1784, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": 21.039134024327915, - "c2": 10.878943586712232, - "c3": 10.2372474785113, - "c4": 46.8764881403773, - "c5": -11.495805076804729, - "c6": 54.14528440244538, - "c7": -45.98228086671685 + "points": { + "c1": -19.350907439325418, + "c2": 16.340457632777806, + "c3": 5.117238872097239, + "c4": 26.563873187508854, + "c5": -6.733907512731129, + "c6": -3.3242147970374845, + "c7": 17.756192188077755 }, - "vertexSeeds": { - "c1": 4.973092486056083, - "c2": 6.300642076319399, - "c3": 5.16553988499864, - "c4": 6.525488210487526, - "c5": 5.669981755607688, - "c6": 4.957698095330634, - "c7": 5.87375995012726 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675452, + "c3": 7.859454461396212, + "c4": 6.2875635691169665, + "c5": 4.715672676837726, + "c6": 3.143781784558486, + "c7": 1.571890892279243 }, "rgb": [86, 146, 138] }, @@ -273570,23 +273570,23 @@ "year": 1784, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -27.36993503243592, - "c2": -27.514051561423187, - "c3": -31.79256531755296, - "c4": 36.98687380047684, - "c5": -12.788625420699418, - "c6": -21.790666275369684, - "c7": 5.529225780642463 + "points": { + "c1": -33.209930222920626, + "c2": 32.00133077758612, + "c3": -27.319583045084663, + "c4": -36.70761104633984, + "c5": 37.24212496436391, + "c6": -31.60707400199687, + "c7": 26.40593230121854 }, - "vertexSeeds": { - "c1": 6.121001132310125, - "c2": 6.1879465394532325, - "c3": 7.188845343640103, - "c4": 6.361885904446662, - "c5": 6.698132827114783, - "c6": 7.02769152256876, - "c7": 7.036127456185752 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042998, + "c3": 8.645399907535833, + "c4": 6.916319926028659, + "c5": 5.187239944521494, + "c6": 3.4581599630143294, + "c7": 1.7290799815071647 }, "rgb": [238, 201, 159] }, @@ -273597,23 +273597,23 @@ "year": 1784, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -24.06337218573572, - "c2": 3.5919358702990856, - "c3": 21.081129562459147, - "c4": 0.959537005327924, - "c5": 16.943594421711566, - "c6": 14.752644589051634, - "c7": -2.7178932906356437 + "points": { + "c1": -12.349659288838858, + "c2": 27.56249416609237, + "c3": -5.798751181537408, + "c4": 24.963502392320684, + "c5": -22.650087918296904, + "c6": -18.249325007664588, + "c7": 26.918098855178286 }, - "vertexSeeds": { - "c1": 4.995188423506705, - "c2": 4.7606247528711805, - "c3": 4.9700165979115285, - "c4": 4.860349291543537, - "c5": 4.666187804538993, - "c6": 4.673889446485944, - "c7": 4.912402741718533 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.1844660194174725, + "c3": 5.987055016181222, + "c4": 4.7896440129449855, + "c5": 3.5922330097087363, + "c6": 2.3948220064724866, + "c7": 1.197411003236237 }, "rgb": [86, 146, 138] }, @@ -273624,23 +273624,23 @@ "year": 1784, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -4.442351330207018, - "c2": 6.995392145905711, - "c3": -12.814214508650753, - "c4": 16.287831294376666, - "c5": 30.68474112110485, - "c6": -8.836175815039624, - "c7": 0.09860029202067011 + "points": { + "c1": 37.0314328957962, + "c2": -15.613579019480063, + "c3": 42.24911282894021, + "c4": 12.876790471415383, + "c5": -23.310155938671112, + "c6": -20.88863182205659, + "c7": -2.060911203683837 }, - "vertexSeeds": { - "c1": 3.6824565061656864, - "c2": 3.682047279697442, - "c3": 3.6740249080408263, - "c4": 3.6014217735923584, - "c5": 3.7407934864237125, - "c6": 3.601841335038036, - "c7": 3.6612962617428635 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843273, + "c3": 4.507628294036061, + "c4": 3.6061026352288486, + "c5": 2.7045769764216363, + "c6": 1.8030513176144243, + "c7": 0.9015256588072121 }, "rgb": [77, 76, 132] }, @@ -273651,23 +273651,23 @@ "year": 1784, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -1.304457830674803, - "c2": 21.727082421237238, - "c3": 16.974246407920806, - "c4": 2.9407859324654986, - "c5": 24.908554258669586, - "c6": 13.861757357354183, - "c7": 21.521734453625886 + "points": { + "c1": -17.392020949712872, + "c2": -15.615560731603935, + "c3": 24.36648434079255, + "c4": -0.5478056573677641, + "c5": 20.924515757944537, + "c6": -27.402294745696366, + "c7": -5.542811353374855 }, - "vertexSeeds": { - "c1": 8.427590486065256, - "c2": 8.405418803343977, - "c3": 8.02869450096807, - "c4": 7.994203574817298, - "c5": 8.121238465900666, - "c6": 8.17780292289767, - "c7": 8.085812138555388 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147487, + "c4": 8.081368469717994, + "c5": 6.061026352288501, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [77, 76, 132] }, @@ -273678,23 +273678,23 @@ "year": 1785, "resistanceReported": false, "duration": 51235200, - "curveSeeds": { - "c1": -1.1819769294995837, - "c2": -48.81910200157594, - "c3": 34.497500559342, - "c4": -28.112839361851364, - "c5": -24.69196752325154, - "c6": 17.92296012044514, - "c7": 19.117685732513493 + "points": { + "c1": -33.22897683759379, + "c2": 57.5479289174837, + "c3": 18.5167889904441, + "c4": 9.522942540168515, + "c5": 24.45690333968298, + "c6": -54.56064472866157, + "c7": -12.28742115004109 }, - "vertexSeeds": { - "c1": 6.3431487293314115, - "c2": 6.718843225915563, - "c3": 6.583292706569037, - "c4": 6.105165691083491, - "c5": 6.557165342974978, - "c6": 6.187617795973858, - "c7": 6.442681828924222 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [222, 0, 59] }, @@ -273705,23 +273705,23 @@ "year": 1784, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 16.28548973608335, - "c2": -5.946228090996037, - "c3": -44.31546255307448, - "c4": 27.882131065530032, - "c5": -18.846331039450032, - "c6": 23.626784729961656, - "c7": 16.41462882972614 + "points": { + "c1": -38.161383597410705, + "c2": -51.241640794665116, + "c3": -48.684686885046126, + "c4": -27.98377754002539, + "c5": -17.743003529006096, + "c6": 12.334239059923384, + "c7": -48.233412821552925 }, - "vertexSeeds": { - "c1": 3.380077042811633, - "c2": 3.423174319931209, - "c3": 3.300488308360289, - "c4": 3.463809169431536, - "c5": 3.335167824678153, - "c6": 3.4164863837532904, - "c7": 3.5108465318241264 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360609, + "c3": 4.230235783633838, + "c4": 3.3841886269070813, + "c5": 2.5381414701803107, + "c6": 1.6920943134535407, + "c7": 0.8460471567267703 }, "rgb": [222, 0, 59] }, @@ -273732,23 +273732,23 @@ "year": 1785, "resistanceReported": false, "duration": 58579200, - "curveSeeds": { - "c1": 23.707843212705484, - "c2": 0.8264409968580253, - "c3": -66.83613295270149, - "c4": 7.247346041557961, - "c5": -43.47847208057455, - "c6": 40.51583407567064, - "c7": 48.710881649117596 + "points": { + "c1": -76.19370097367644, + "c2": -7.81360858685855, + "c3": -54.7959216119079, + "c4": 30.230517646949423, + "c5": 48.05861687499997, + "c6": -63.470555119198366, + "c7": -10.3280362876893 }, - "vertexSeeds": { - "c1": 4.193726867799958, - "c2": 3.7026066465079674, - "c3": 4.065463740864005, - "c4": 4.040508327842411, - "c5": 3.3840023222439064, - "c6": 3.021764689691778, - "c7": 3.8067659988945453 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733705, + "c3": 5.594082293111418, + "c4": 4.475265834489136, + "c5": 3.356449375866851, + "c6": 2.237632917244568, + "c7": 1.1188164586222853 }, "rgb": [58, 15, 49] }, @@ -273759,23 +273759,23 @@ "year": 1784, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -7.483603340206063, - "c2": -5.181977759141688, - "c3": -31.24052310653139, - "c4": 6.9633547640653575, - "c5": -20.87762246460401, - "c6": -1.3302163474313105, - "c7": -22.38051092243831 + "points": { + "c1": -28.999142707075656, + "c2": 21.816533030934934, + "c3": -7.356794273543187, + "c4": -24.001195333375442, + "c5": -28.585156836485865, + "c6": 24.45071977081846, + "c7": -8.711973463627075 }, - "vertexSeeds": { - "c1": 5.012264383181874, - "c2": 5.411514527910378, - "c3": 5.212556964904351, - "c4": 5.29298898519014, - "c5": 4.532743582190912, - "c6": 4.748471519009862, - "c7": 5.090558348080058 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055478, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.773925104022191, + "c7": 1.3869625520110955 }, "rgb": [58, 15, 49] }, @@ -273786,23 +273786,23 @@ "year": 1784, "resistanceReported": false, "duration": 39916800, - "curveSeeds": { - "c1": -10.362703987744993, - "c2": -51.34488905609108, - "c3": -4.059131204071413, - "c4": -20.217741803505042, - "c5": -41.27345717885269, - "c6": 46.02476677162597, - "c7": -17.983766415751433 + "points": { + "c1": -8.21411570658438, + "c2": -39.910166334542225, + "c3": 52.74595730932777, + "c4": 7.344597706038968, + "c5": -22.25284719988555, + "c6": 18.315966834398502, + "c7": 1.9288379811174394 }, - "vertexSeeds": { - "c1": 2.6891699890401535, - "c2": 2.6930786294975086, - "c3": 2.688252696896234, - "c4": 2.8047157562678366, - "c5": 2.6308546944958002, - "c6": 2.6771179829121468, - "c7": 2.5884478215058224 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.7739251040221893, + "c5": 2.0804438280166453, + "c6": 1.3869625520110946, + "c7": 0.6934812760055439 }, "rgb": [238, 201, 159] }, @@ -273813,23 +273813,23 @@ "year": 1784, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -27.56627969914773, - "c2": -45.38362512329077, - "c3": 23.106171718132337, - "c4": -45.16687069512689, - "c5": -16.593058097775806, - "c6": -23.590845797661427, - "c7": -20.04689524991919 + "points": { + "c1": -33.01415788722858, + "c2": 0.528940514365388, + "c3": 15.990717699900905, + "c4": 43.91866687739259, + "c5": -3.1233942089147533, + "c6": -2.6264437867210404, + "c7": 36.745129415057455 }, - "vertexSeeds": { - "c1": 7.469192705273457, - "c2": 8.657476483137994, - "c3": 7.628221602243789, - "c4": 7.018104583047599, - "c5": 7.393485149468227, - "c6": 8.206901900877488, - "c7": 8.309958362572283 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099861, + "c3": 10.40221914008322, + "c4": 8.321775312066578, + "c5": 6.241331484049936, + "c6": 4.160887656033284, + "c7": 2.0804438280166515 }, "rgb": [58, 15, 49] }, @@ -273840,23 +273840,23 @@ "year": 1784, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -9.756861094757475, - "c2": 12.945489357091354, - "c3": 31.895756760102365, - "c4": -12.300355826756089, - "c5": 29.642624249741324, - "c6": 19.569994180607935, - "c7": -1.0397498224803883 + "points": { + "c1": -12.943553928670003, + "c2": 12.60921336294627, + "c3": -29.40933815010601, + "c4": -25.261564552509896, + "c5": -22.28398144634383, + "c6": -10.54918955143133, + "c7": -14.475144407162222 }, - "vertexSeeds": { - "c1": 6.099076078115947, - "c2": 6.491209511817911, - "c3": 6.01205795438182, - "c4": 6.240133768835494, - "c5": 6.099063606960887, - "c6": 6.098396978428364, - "c7": 6.429732105964841 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554784, + "c3": 7.790106333795654, + "c4": 6.232085067036523, + "c5": 4.674063800277392, + "c6": 3.1160425335182613, + "c7": 1.5580212667591307 }, "rgb": [77, 76, 132] }, @@ -273867,23 +273867,23 @@ "year": 1785, "resistanceReported": false, "duration": 43891200, - "curveSeeds": { - "c1": 53.57913986714857, - "c2": -27.640234148464803, - "c3": 26.11273512745163, - "c4": 7.659406605320498, - "c5": 22.538737885753335, - "c6": -38.835843690839994, - "c7": 57.783041593571355 + "points": { + "c1": -45.906366575333884, + "c2": -20.515493332381673, + "c3": 17.201609533020672, + "c4": 51.626662954323066, + "c5": -36.95476119073517, + "c6": 28.652487926987774, + "c7": -34.28725703741641 }, - "vertexSeeds": { - "c1": 9.326656499948964, - "c2": 8.775513247476127, - "c3": 8.891836362232214, - "c4": 9.315011176007687, - "c5": 9.137182231179839, - "c6": 8.862582207081614, - "c7": 9.340284113944241 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.42579750346741, + "c3": 11.188164586222843, + "c4": 8.950531668978279, + "c5": 6.712898751733714, + "c6": 4.47526583448913, + "c7": 2.237632917244565 }, "rgb": [222, 0, 59] }, @@ -273894,23 +273894,23 @@ "year": 1784, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": -25.161793751401266, - "c2": -24.34798992916463, - "c3": 50.7081371661325, - "c4": 28.790498106987073, - "c5": -52.910491456325396, - "c6": -29.165565270042705, - "c7": 36.613216711981025 + "points": { + "c1": -48.421203377424725, + "c2": 24.54261619538987, + "c3": 48.51404733270063, + "c4": 14.901687322024088, + "c5": -21.164277004278382, + "c6": -51.70274945494343, + "c7": -23.343287434613117 }, - "vertexSeeds": { - "c1": 5.459965456954764, - "c2": 5.545513235321884, - "c3": 5.418120014407394, - "c4": 5.366269848987085, - "c5": 5.518350985698649, - "c6": 5.495776171277406, - "c7": 5.437967640453692 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543683, + "c3": 6.634304207119751, + "c4": 5.3074433656957964, + "c5": 3.9805825242718416, + "c6": 2.6537216828479093, + "c7": 1.3268608414239547 }, "rgb": [238, 201, 159] }, @@ -273921,23 +273921,23 @@ "year": 1785, "resistanceReported": false, "duration": 50371200, - "curveSeeds": { - "c1": 18.116846248793536, - "c2": -17.26516251194756, - "c3": -9.30374808227316, - "c4": 57.718414341158535, - "c5": -60.10414221517688, - "c6": -39.05149449940006, - "c7": -24.52627719944624 + "points": { + "c1": 26.89933590876683, + "c2": -53.056213689068855, + "c3": 51.548495573588895, + "c4": -60.212675456778236, + "c5": -53.36545613624202, + "c6": -43.3150201796809, + "c7": 12.542201085934593 }, - "vertexSeeds": { - "c1": 2.143407541320095, - "c2": 2.1956173107023695, - "c3": 2.2412283070859886, - "c4": 2.160697361101417, - "c5": 2.2702831826070504, - "c6": 2.1717977380933986, - "c7": 2.141039399713307 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746188, + "c3": 2.7276930189551587, + "c4": 2.182154415164123, + "c5": 1.636615811373094, + "c6": 1.091077207582065, + "c7": 0.545538603791029 }, "rgb": [238, 201, 159] }, @@ -273948,23 +273948,23 @@ "year": 1784, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 30.01958676079215, - "c2": -23.89139459496028, - "c3": 25.561501374856405, - "c4": -16.02273934206375, - "c5": -33.32225861048997, - "c6": 24.876202005925222, - "c7": -27.974336166197194 + "points": { + "c1": 48.96832928736325, + "c2": 29.195164239904287, + "c3": 43.93391607246083, + "c4": -32.76141183586684, + "c5": -30.29215585650357, + "c6": 23.97953751259466, + "c7": -24.972502175740708 }, - "vertexSeeds": { - "c1": 5.732937368785333, - "c2": 5.524359334513197, - "c3": 5.982983494497589, - "c4": 5.429242657896533, - "c5": 5.580304758721642, - "c6": 5.9053265178732195, - "c7": 5.978369550168674 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871012, + "c3": 7.39713361072584, + "c4": 5.917706888580669, + "c5": 4.438280166435513, + "c6": 2.9588534442903422, + "c7": 1.4794267221451711 }, "rgb": [58, 15, 49] }, @@ -273975,23 +273975,23 @@ "year": 1784, "resistanceReported": false, "duration": 39052800, - "curveSeeds": { - "c1": 32.37426038625016, - "c2": 29.230021116156593, - "c3": 44.57582229984202, - "c4": -47.894444765826314, - "c5": -30.91071624759492, - "c6": -0.026055652093219805, - "c7": -39.101771881243906 + "points": { + "c1": 50.47944621069249, + "c2": 8.311360051666028, + "c3": 8.693917983990538, + "c4": -46.75158198436408, + "c5": 50.71470099734056, + "c6": -11.606381115008183, + "c7": -17.650664378053506 }, - "vertexSeeds": { - "c1": 7.925484609414604, - "c2": 7.923698268689064, - "c3": 7.752817515144988, - "c4": 7.112231152714225, - "c5": 7.059198672338819, - "c6": 7.433572972446518, - "c7": 6.9489814822590805 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651869, + "c3": 9.570041608876567, + "c4": 7.65603328710125, + "c5": 5.7420249653259345, + "c6": 3.8280166435506184, + "c7": 1.9140083217753157 }, "rgb": [77, 76, 132] }, @@ -274002,23 +274002,23 @@ "year": 1784, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 20.388165690517262, - "c2": -14.968240917543653, - "c3": -37.98372935753727, - "c4": 8.989226945910637, - "c5": -30.175065279280282, - "c6": 10.5175261243213, - "c7": -39.77454431608956 + "points": { + "c1": -7.112456920923648, + "c2": -35.45002920116273, + "c3": -22.720553968027332, + "c4": -44.051787222190775, + "c5": -41.44446757985115, + "c6": -8.903364647192369, + "c7": 7.095683363844401 }, - "vertexSeeds": { - "c1": 10.409238868465565, - "c2": 9.865870863212804, - "c3": 10.172049766221047, - "c4": 10.215712120615597, - "c5": 10.024042999176004, - "c6": 10.283261161631302, - "c7": 10.019714078373395 + "offsets": { + "c1": 17.734627831715212, + "c2": 15.20110957004161, + "c3": 12.667591308368008, + "c4": 10.134073046694406, + "c5": 7.600554785020805, + "c6": 5.067036523347203, + "c7": 2.5335182616736014 }, "rgb": [238, 201, 159] }, @@ -274029,23 +274029,23 @@ "year": 1784, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": 16.74843548889634, - "c2": 2.0277392198581055, - "c3": 5.896366929204596, - "c4": 15.585344891025962, - "c5": 6.039584387853637, - "c6": -6.4014261821103915, - "c7": 7.2622377982644295 + "points": { + "c1": -35.613001391644666, + "c2": -5.33255422820033, + "c3": -21.278806483261796, + "c4": 5.0049955425045525, + "c5": -4.333693798635352, + "c6": 11.135653096207278, + "c7": -9.458374990869899 }, - "vertexSeeds": { - "c1": 7.318630624236137, - "c2": 7.416348597398057, - "c3": 6.989701953875805, - "c4": 7.229494176576463, - "c5": 7.329904001256865, - "c6": 7.4217545584882645, - "c7": 6.982799784270055 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -274056,23 +274056,23 @@ "year": 1784, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -1.2459026089192022, - "c2": 37.12119042633928, - "c3": -33.30382093560222, - "c4": 12.691715006681726, - "c5": 21.642473840355848, - "c6": 6.918154336011668, - "c7": -23.264921638238988 + "points": { + "c1": -3.6075955800398134, + "c2": -27.297260998332234, + "c3": 0.6506775849814659, + "c4": 32.04514300600937, + "c5": -14.155385721144356, + "c6": -47.989235489191834, + "c7": 30.59567770325232 }, - "vertexSeeds": { - "c1": 3.4377486999013023, - "c2": 3.212693370488363, - "c3": 3.5904540897003874, - "c4": 3.9595793945668984, - "c5": 3.93063950439476, - "c6": 3.8367271554001694, - "c7": 3.5297961602010517 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.6865464632454925, + "c3": 4.738788719371245, + "c4": 3.7910309754969926, + "c5": 2.8432732316227445, + "c6": 1.8955154877484963, + "c7": 0.9477577438742482 }, "rgb": [238, 201, 159] }, @@ -274083,23 +274083,23 @@ "year": 1784, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 7.440969044030183, - "c2": 6.9290547250641765, - "c3": -11.395639761346768, - "c4": -5.251166119971241, - "c5": 25.391280272259287, - "c6": 9.216310526973054, - "c7": -16.639705869793957 + "points": { + "c1": 3.0741443596646647, + "c2": 12.989303392656055, + "c3": 20.24973684935189, + "c4": -11.714266602049062, + "c5": -27.68563092510317, + "c6": 20.39047639483327, + "c7": 10.018702952508647 }, - "vertexSeeds": { - "c1": 6.42426621621168, - "c2": 6.5460699617550295, - "c3": 6.501646562333911, - "c4": 6.424787568839238, - "c5": 6.671157174587854, - "c6": 6.487347191146786, - "c7": 6.85750812199062 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -274110,23 +274110,23 @@ "year": 1784, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -12.290417067256161, - "c2": -19.793629665017168, - "c3": -4.608165193830864, - "c4": -24.3982377036793, - "c5": 40.51201797929724, - "c6": -24.801885239334684, - "c7": -16.73866683882312 + "points": { + "c1": -27.1253791931247, + "c2": -39.582406818697315, + "c3": 0.9990655299951143, + "c4": -33.78115910208116, + "c5": -42.61244836881994, + "c6": -9.741115770445674, + "c7": -5.811976379602655 }, - "vertexSeeds": { - "c1": 5.145296350717016, - "c2": 5.191689021206349, - "c3": 5.052642348519929, - "c4": 5.051117515812136, - "c5": 5.309773372997149, - "c6": 5.1188076141245755, - "c7": 5.143726230331882 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503464, + "c3": 6.611188164586216, + "c4": 5.288950531668969, + "c5": 3.9667128987517417, + "c6": 2.6444752658344948, + "c7": 1.3222376329172474 }, "rgb": [58, 15, 49] }, @@ -274137,23 +274137,23 @@ "year": 1784, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 2.556247194794672, - "c2": -14.777100626018186, - "c3": -36.86866343922692, - "c4": -17.011867974141754, - "c5": 16.232416765124157, - "c6": 20.266084671754157, - "c7": -7.579281547360324 + "points": { + "c1": -35.69923564376984, + "c2": 8.567140808607057, + "c3": 29.034215388053155, + "c4": 9.907796491913416, + "c5": -2.297017477990451, + "c6": -5.204650330781369, + "c7": 18.158471992595068 }, - "vertexSeeds": { - "c1": 14.187172523550318, - "c2": 14.90552875862954, - "c3": 15.196465213447624, - "c4": 15.232064650558991, - "c5": 14.839138699293194, - "c6": 14.741031710769297, - "c7": 14.549094499888803 + "offsets": { + "c1": 25.792880258899675, + "c2": 22.10818307905687, + "c3": 18.423485899214064, + "c4": 14.738788719371263, + "c5": 11.054091539528457, + "c6": 7.36939435968561, + "c7": 3.684697179842805 }, "rgb": [58, 15, 49] }, @@ -274164,23 +274164,23 @@ "year": 1784, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -21.48125781284489, - "c2": 3.790493920159598, - "c3": -7.291730370656936, - "c4": 11.736949046138356, - "c5": 5.217488558441097, - "c6": -7.0345974725522495, - "c7": 9.738494417406663 + "points": { + "c1": -0.9898688592911, + "c2": -42.005873716784556, + "c3": -15.31611187805602, + "c4": 23.635391654661767, + "c5": -43.629213770093315, + "c6": 41.13707364264457, + "c7": -22.089078983152934 }, - "vertexSeeds": { - "c1": 3.8186751959830745, - "c2": 4.049426624679214, - "c3": 3.9822830503986326, - "c4": 3.9592580065558196, - "c5": 3.906331820236879, - "c6": 3.774451962006205, - "c7": 3.93561089499852 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -274191,23 +274191,23 @@ "year": 1784, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -22.60184567698039, - "c2": -8.601051463416823, - "c3": 44.92043036379673, - "c4": -37.037993082753346, - "c5": -7.988137118364278, - "c6": -36.40126067894157, - "c7": -44.52894786681462 + "points": { + "c1": -11.287898877614879, + "c2": -31.901129268963075, + "c3": 46.23960450751513, + "c4": 30.201355361271048, + "c5": 26.851093610179994, + "c6": 32.67558270302424, + "c7": -27.80383460348243 }, - "vertexSeeds": { - "c1": 6.393582520485974, - "c2": 6.824983573330665, - "c3": 6.552486302727346, - "c4": 6.579494943904019, - "c5": 6.7498328571626685, - "c6": 6.841541301852274, - "c7": 6.464080783416025 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066581, + "c4": 6.65742024965327, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624133119 }, "rgb": [58, 15, 49] }, @@ -274218,23 +274218,23 @@ "year": 1784, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -10.59599645090692, - "c2": -11.732266572237645, - "c3": -6.027672046696008, - "c4": -15.572373357722647, - "c5": 11.228052131661727, - "c6": -23.735554614627546, - "c7": 6.048663872161718 + "points": { + "c1": 25.352498256253803, + "c2": 30.383559435973524, + "c3": 24.476133842055873, + "c4": 24.686133591967355, + "c5": -3.5281293621272205, + "c6": -7.748659099820539, + "c7": -18.33384326977751 }, - "vertexSeeds": { - "c1": 7.905552481677051, - "c2": 8.201650625924602, - "c3": 7.863607083585571, - "c4": 8.222254844837487, - "c5": 8.185433417658933, - "c6": 7.9165748713275095, - "c7": 8.070522264045481 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147487, + "c4": 8.081368469717994, + "c5": 6.061026352288501, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [86, 146, 138] }, @@ -274245,23 +274245,23 @@ "year": 1784, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": -16.887869696865316, - "c2": -0.18960226492799137, - "c3": -34.01992764686143, - "c4": -34.03359302750776, - "c5": -27.767746174995512, - "c6": 36.78410792138093, - "c7": -39.72727864151282 + "points": { + "c1": 51.534166298106534, + "c2": 23.429971894137317, + "c3": -27.651934139536475, + "c4": -13.58199499298081, + "c5": -0.022007511318868467, + "c6": 41.99100287537788, + "c7": 37.48797911600713 }, - "vertexSeeds": { - "c1": 3.0984971994987744, - "c2": 3.095594546306828, - "c3": 2.9635645866903118, - "c4": 3.1127411836565924, - "c5": 3.0558914460288955, - "c6": 2.91669568180051, - "c7": 3.06777135348595 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596394, + "c3": 3.791030975496995, + "c4": 3.0328247803975956, + "c5": 2.274618585298197, + "c6": 1.5164123901987978, + "c7": 0.7582061950993989 }, "rgb": [77, 76, 132] }, @@ -274272,23 +274272,23 @@ "year": 1784, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 1.714862242512094, - "c2": -5.837632944987153, - "c3": -20.096546694103964, - "c4": 11.489711520636241, - "c5": -22.059545043212164, - "c6": 9.44082562685442, - "c7": 15.334088985787112 + "points": { + "c1": -11.237785483163567, + "c2": -12.538278042551358, + "c3": 14.405164403526612, + "c4": 19.611448324376724, + "c5": 26.20422459378596, + "c6": 11.939329414308709, + "c7": -22.294987262873143 }, - "vertexSeeds": { - "c1": 8.857118881346222, - "c2": 8.570458244035715, - "c3": 9.155426907922791, - "c4": 8.844981549612186, - "c5": 8.972175197330657, - "c6": 8.678913077466575, - "c7": 8.851312965897922 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306515, + "c3": 11.095700416088757, + "c4": 8.876560332871025, + "c5": 6.657420249653268, + "c6": 4.438280166435512, + "c7": 2.219140083217756 }, "rgb": [222, 0, 59] }, @@ -274299,23 +274299,23 @@ "year": 1784, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 26.449763216816898, - "c2": -21.205553995046383, - "c3": -14.446556470052741, - "c4": -32.534638827822874, - "c5": -26.99740985472173, - "c6": 22.960104484681693, - "c7": 14.451485282961833 + "points": { + "c1": 27.800864881342818, + "c2": -33.06151083745555, + "c3": 33.486811727519935, + "c4": 28.28771412035401, + "c5": -2.8471989506891546, + "c6": 33.517897792003595, + "c7": 26.91738381479884 }, - "vertexSeeds": { - "c1": 7.095392852180168, - "c2": 7.094047352493103, - "c3": 6.966623785006429, - "c4": 6.979781797620033, - "c5": 6.859055299834981, - "c6": 6.568542317165337, - "c7": 6.754067055157706 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.576051779935268, + "c4": 6.860841423948211, + "c5": 5.145631067961174, + "c6": 3.430420711974116, + "c7": 1.715210355987058 }, "rgb": [222, 0, 59] }, @@ -274326,23 +274326,23 @@ "year": 1784, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -2.3728873256943714, - "c2": -2.6897858807128827, - "c3": -35.18873416768172, - "c4": -22.275055241161823, - "c5": 30.363118302947015, - "c6": -21.852342383744492, - "c7": 10.88408141755454 + "points": { + "c1": 21.700256297680824, + "c2": -9.371249921750028, + "c3": 24.147525576385974, + "c4": 21.030482197653072, + "c5": 13.855670223082498, + "c6": 41.264959461935945, + "c7": -14.69989378587126 }, - "vertexSeeds": { - "c1": 4.732565731579245, - "c2": 4.370196027995557, - "c3": 4.6843253849765825, - "c4": 4.344677579465009, - "c5": 4.610790698077151, - "c6": 4.386712886624473, - "c7": 4.486861859194215 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894592, + "c3": 5.686546463245495, + "c4": 4.549237170596388, + "c5": 3.411927877947291, + "c6": 2.274618585298194, + "c7": 1.137309292649097 }, "rgb": [86, 146, 138] }, @@ -274353,23 +274353,23 @@ "year": 1784, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 34.07114680819573, - "c2": 33.06138093186765, - "c3": 10.893340723721671, - "c4": -33.454032773575555, - "c5": -20.46825197688547, - "c6": -32.266591088415474, - "c7": -4.859037340191996 + "points": { + "c1": 7.103844146205894, + "c2": 33.60446262974053, + "c3": 12.810191247068659, + "c4": -14.951731060005315, + "c5": 30.804155164603166, + "c6": 41.2051763764235, + "c7": -39.978299322307755 }, - "vertexSeeds": { - "c1": 5.2364722005113835, - "c2": 5.130542515079356, - "c3": 5.223282413377666, - "c4": 4.920229769501775, - "c5": 4.985047167423616, - "c6": 5.09765256375275, - "c7": 5.234319288413314 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [238, 201, 159] }, @@ -274380,23 +274380,23 @@ "year": 1784, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 18.695914473497083, - "c2": -34.29587425489131, - "c3": -32.12806764417792, - "c4": -16.299488363170074, - "c5": 32.11219717641708, - "c6": 25.847925351446186, - "c7": 29.309632481550203 + "points": { + "c1": -28.26374774981825, + "c2": -29.177085252755056, + "c3": 14.939754697572383, + "c4": -17.970805307109188, + "c5": 21.310789461309874, + "c6": 38.9482074339839, + "c7": 8.724199811998162 }, - "vertexSeeds": { - "c1": 12.23692941780725, - "c2": 12.841379588342761, - "c3": 12.27223882456942, - "c4": 12.56298634597591, - "c5": 11.904301570650198, - "c6": 12.53453539249897, - "c7": 12.398912376067873 + "offsets": { + "c1": 21.81229773462783, + "c2": 18.69625520110957, + "c3": 15.580212667591308, + "c4": 12.464170134073045, + "c5": 9.348127600554784, + "c6": 6.232085067036523, + "c7": 3.1160425335182613 }, "rgb": [77, 76, 132] }, @@ -274407,23 +274407,23 @@ "year": 1784, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -14.083086854154967, - "c2": 33.52575335993388, - "c3": 26.60574242154867, - "c4": -14.163543866555909, - "c5": 13.47403088233903, - "c6": 2.6908283401923967, - "c7": -33.10945431369126 + "points": { + "c1": -0.4751966271185637, + "c2": -17.499160414416966, + "c3": -31.350976735631708, + "c4": 0.4815276653964844, + "c5": -26.94787970723745, + "c6": 14.266095471799296, + "c7": -36.60810466898356 }, - "vertexSeeds": { - "c1": 6.481835746998683, - "c2": 6.558600203381241, - "c3": 6.3358317532345, - "c4": 6.284072091538803, - "c5": 6.220959475620804, - "c6": 6.5358002498065755, - "c7": 6.5359593362182435 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675464, + "c3": 7.859454461396204, + "c4": 6.287563569116976, + "c5": 4.715672676837716, + "c6": 3.143781784558488, + "c7": 1.5718908922792596 }, "rgb": [238, 201, 159] }, @@ -274434,23 +274434,23 @@ "year": 1784, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -32.90158708517325, - "c2": -33.45360339202682, - "c3": 18.00334721652083, - "c4": 26.453327739102143, - "c5": -24.09034446498642, - "c6": -21.718183145507385, - "c7": 4.163359327792129 + "points": { + "c1": 35.150572017225194, + "c2": -33.04835824903983, + "c3": 17.082440130695545, + "c4": 10.813415461775598, + "c5": 3.3694760595331346, + "c6": -8.484276563261986, + "c7": 33.5841543678339 }, - "vertexSeeds": { - "c1": 7.114928876816921, - "c2": 7.556580744678793, - "c3": 7.227887366480084, - "c4": 7.140907781096481, - "c5": 7.177804868030389, - "c6": 7.128993117904472, - "c7": 7.362511908868053 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807207, + "c3": 9.084604715672668, + "c4": 7.267683772538132, + "c5": 5.450762829403593, + "c6": 3.6338418862690767, + "c7": 1.8169209431345383 }, "rgb": [238, 201, 159] }, @@ -274461,23 +274461,23 @@ "year": 1785, "resistanceReported": false, "duration": 40089600, - "curveSeeds": { - "c1": 17.463626215125792, - "c2": -28.59872673396239, - "c3": 29.616263363175854, - "c4": -15.701648607614871, - "c5": 48.947739198903584, - "c6": -28.82391207981741, - "c7": -25.71183187585728 + "points": { + "c1": 0.16169960807380335, + "c2": -31.75118371934439, + "c3": -16.669272122707035, + "c4": 24.36903224833022, + "c5": -16.38837897652421, + "c6": 29.36387245765831, + "c7": -40.86171414211698 }, - "vertexSeeds": { - "c1": 9.149265243475655, - "c2": 8.169024659931715, - "c3": 8.627697396873861, - "c4": 7.949824668644149, - "c5": 7.807401847418755, - "c6": 7.890106436543368, - "c7": 8.715567397000349 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407305, + "c4": 7.397133610725845, + "c5": 5.5478502080443866, + "c6": 3.69856680536292, + "c7": 1.84928340268146 }, "rgb": [86, 146, 138] }, @@ -274488,23 +274488,23 @@ "year": 1784, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -21.218304601166246, - "c2": 16.04275707812527, - "c3": -2.4690592062116608, - "c4": 17.639866826159405, - "c5": 3.23660385451565, - "c6": 9.3127288672691, - "c7": -39.55737790234231 + "points": { + "c1": 9.492157698485144, + "c2": 10.64562936919075, + "c3": 25.903103165557745, + "c4": -36.72082230088662, + "c5": 41.56137130447491, + "c6": -6.7130581369554605, + "c7": 37.297952557457116 }, - "vertexSeeds": { - "c1": 6.375962888051383, - "c2": 6.300647715073343, - "c3": 6.170482875348339, - "c4": 6.64905774430733, - "c5": 6.211593404712509, - "c6": 6.570026275264679, - "c7": 6.311162369437112 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836329, + "c3": 7.951918631530284, + "c4": 6.361534905224219, + "c5": 4.771151178918175, + "c6": 3.1807674526121095, + "c7": 1.5903837263060658 }, "rgb": [77, 76, 132] }, @@ -274515,23 +274515,23 @@ "year": 1786, "resistanceReported": false, "duration": 80006400, - "curveSeeds": { - "c1": -34.50109024918777, - "c2": 78.87622890317657, - "c3": -60.716381784221504, - "c4": 91.66848974712597, - "c5": -11.308852697050128, - "c6": -70.77384621053481, - "c7": -26.575690614056455 + "points": { + "c1": -54.263161454354744, + "c2": 58.425574054947546, + "c3": 56.572351311286624, + "c4": 31.909507936468103, + "c5": 60.76009952896449, + "c6": -92.31717354604623, + "c7": -74.25725664034519 }, - "vertexSeeds": { - "c1": 17.95829021433837, - "c2": 16.02440249955846, - "c3": 17.603094777277178, - "c4": 15.97913888440407, - "c5": 16.919822312030433, - "c6": 16.349566410482826, - "c7": 15.953299215591828 + "offsets": { + "c1": 31.06796116504854, + "c2": 26.62968099861303, + "c3": 22.19140083217752, + "c4": 17.753120665742035, + "c5": 13.314840499306527, + "c6": 8.876560332871017, + "c7": 4.438280166435509 }, "rgb": [86, 146, 138] }, @@ -274542,23 +274542,23 @@ "year": 1784, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -37.93116091455781, - "c2": 0.6490095432911858, - "c3": -28.80422634324824, - "c4": -12.279625422167303, - "c5": 17.523735891720037, - "c6": -27.486955796694566, - "c7": -6.882255614348921 + "points": { + "c1": 7.367837021100264, + "c2": 29.848714370697053, + "c3": -9.050215169741016, + "c4": -6.588954749093013, + "c5": 38.41560440690185, + "c6": 0.5789298892234882, + "c7": -0.39866297402079454 }, - "vertexSeeds": { - "c1": 6.237347065685938, - "c2": 6.15074071648533, - "c3": 6.1119716803433315, - "c4": 6.061178860487819, - "c5": 5.898553482683081, - "c6": 6.3178941359921685, - "c7": 6.093695492687069 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [86, 146, 138] }, @@ -274569,23 +274569,23 @@ "year": 1784, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": -0.7713964745435646, - "c2": -7.212919743428941, - "c3": 43.396029069865946, - "c4": -37.941641511770136, - "c5": -6.489665006248536, - "c6": -7.732989437259796, - "c7": 34.063510145963605 + "points": { + "c1": 7.030428555282157, + "c2": 10.008492538073092, + "c3": 27.452670733573044, + "c4": 43.15104970734858, + "c5": 25.374483228214658, + "c6": 5.511241371103921, + "c7": -0.5378430970265455 }, - "vertexSeeds": { - "c1": 8.176423060700037, - "c2": 8.176804624690224, - "c3": 8.639670377811997, - "c4": 8.498229674603003, - "c5": 8.59808333188197, - "c6": 8.152224435697498, - "c7": 8.354327257656609 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099865, + "c3": 10.402219140083226, + "c4": 8.321775312066558, + "c5": 6.241331484049918, + "c6": 4.160887656033279, + "c7": 2.0804438280166395 }, "rgb": [222, 0, 59] }, @@ -274596,23 +274596,23 @@ "year": 1784, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -14.695126494501515, - "c2": 0.8016476372663703, - "c3": -20.733069782309503, - "c4": 12.705755962845565, - "c5": -24.511991244123465, - "c6": -35.19310092426438, - "c7": -41.21182543406692 + "points": { + "c1": -9.554541831042108, + "c2": 20.938540857929283, + "c3": -8.058361840985512, + "c4": -19.10377537627063, + "c5": -21.21585600041657, + "c6": 32.2202881633597, + "c7": -41.763606319833166 }, - "vertexSeeds": { - "c1": 5.957820370377707, - "c2": 5.5540797341532855, - "c3": 5.990817021511809, - "c4": 5.5296938445889126, - "c5": 5.564304516393532, - "c6": 5.549946166516497, - "c7": 6.255216232850115 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112338, + "c3": 7.535829865926955, + "c4": 6.028663892741559, + "c5": 4.521497919556175, + "c6": 3.0143319463707794, + "c7": 1.5071659731853833 }, "rgb": [77, 76, 132] }, @@ -274623,23 +274623,23 @@ "year": 1784, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 32.31682914214747, - "c2": -0.33348416962313365, - "c3": 41.22802394760653, - "c4": 41.37040750134193, - "c5": 40.07550422238559, - "c6": -42.675415415830535, - "c7": 22.37424190910292 + "points": { + "c1": 42.9006097019807, + "c2": 38.78981975947498, + "c3": 39.87914640573452, + "c4": 27.440704360984213, + "c5": 42.478391795778165, + "c6": 27.824511447389682, + "c7": -30.797214457978335 }, - "vertexSeeds": { - "c1": 5.779710873961287, - "c2": 5.765145539626274, - "c3": 5.648754657533443, - "c4": 5.582197604745289, - "c5": 5.583538956623818, - "c6": 5.712616784769841, - "c7": 5.41746397365656 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147027, + "c3": 6.981044845122512, + "c4": 5.584835876098018, + "c5": 4.188626907073504, + "c6": 2.792417938049009, + "c7": 1.3962089690244943 }, "rgb": [86, 146, 138] }, @@ -274650,23 +274650,23 @@ "year": 1784, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 21.937228808373, - "c2": 3.4169829997241052, - "c3": -0.8889937890699002, - "c4": -10.212664678002454, - "c5": -19.63739738264433, - "c6": -11.270033218750864, - "c7": 5.6216162265925576 + "points": { + "c1": 33.10974136491291, + "c2": -2.585873689894669, + "c3": -37.49966855107829, + "c4": -11.883948064487758, + "c5": -20.78518568230169, + "c6": -17.335723418100024, + "c7": 2.689375490888274 }, - "vertexSeeds": { - "c1": 4.09262314443844, - "c2": 3.9848240563448605, - "c3": 3.8683105237509228, - "c4": 4.050076326474777, - "c5": 3.950382790636546, - "c6": 3.9326778008820176, - "c7": 3.995460121768069 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527044, + "c3": 4.900601017105867, + "c4": 3.9204808136847062, + "c5": 2.940360610263529, + "c6": 1.9602404068423531, + "c7": 0.9801202034211766 }, "rgb": [222, 0, 59] }, @@ -274677,23 +274677,23 @@ "year": 1784, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -46.70093552119895, - "c2": -46.28713070916844, - "c3": 30.260714634827202, - "c4": 25.505724474905485, - "c5": -11.827699262494846, - "c6": -10.41776333719502, - "c7": 29.86276235879358 + "points": { + "c1": 10.104584620270813, + "c2": -19.54743689244524, + "c3": -12.621788328837418, + "c4": 31.27136291898018, + "c5": 41.03290293972193, + "c6": -13.211783926426364, + "c7": -47.73365269138318 }, - "vertexSeeds": { - "c1": 6.514133297724402, - "c2": 6.610606266207529, - "c3": 6.9848103989483, - "c4": 6.980807146445725, - "c5": 6.899250221467398, - "c6": 6.8705089290082055, - "c7": 6.644667174299395 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560328, + "c3": 8.368007397133603, + "c4": 6.694405917706877, + "c5": 5.020804438280177, + "c6": 3.3472029588534515, + "c7": 1.6736014794267258 }, "rgb": [77, 76, 132] }, @@ -274704,23 +274704,23 @@ "year": 1784, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 18.434971569546462, - "c2": -19.266643342873127, - "c3": 30.613281843583515, - "c4": -34.38450251040279, - "c5": -20.17382855647746, - "c6": 22.513686173095422, - "c7": -24.620125261815872 + "points": { + "c1": 9.863050013861837, + "c2": -27.88360137113569, + "c3": -28.801034057083065, + "c4": 30.351927832976408, + "c5": 18.13609732217209, + "c6": -17.64284080048861, + "c7": -8.844981201706627 }, - "vertexSeeds": { - "c1": 4.527076609575098, - "c2": 4.345384114395747, - "c3": 4.476826967814651, - "c4": 4.615028559255705, - "c5": 4.299873174690326, - "c6": 4.4653965128191775, - "c7": 4.2900201156836255 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653257, + "c3": 5.547850208044379, + "c4": 4.438280166435512, + "c5": 3.328710124826634, + "c6": 2.219140083217756, + "c7": 1.109570041608878 }, "rgb": [86, 146, 138] }, @@ -274731,23 +274731,23 @@ "year": 1784, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 10.636944583635632, - "c2": 18.986188774066022, - "c3": -26.669275679945336, - "c4": 40.50052961615352, - "c5": 24.298440894448838, - "c6": -23.12348113464555, - "c7": 5.813495138024429 + "points": { + "c1": -8.179945722394464, + "c2": -3.3803096249334175, + "c3": 25.633766794573127, + "c4": 11.770228294962145, + "c5": 30.761041991506183, + "c6": -33.346740512378126, + "c7": 6.829142889165311 }, - "vertexSeeds": { - "c1": 6.602766912603463, - "c2": 6.613148396595376, - "c3": 6.740331036410727, - "c4": 6.4724679463453745, - "c5": 6.529214334374186, - "c6": 6.457705526740577, - "c7": 6.845311238559902 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -274758,23 +274758,23 @@ "year": 1785, "resistanceReported": false, "duration": 50457600, - "curveSeeds": { - "c1": -43.51745297120334, - "c2": -14.902983719863613, - "c3": -6.376240103375068, - "c4": 54.09476442800178, - "c5": -47.995427741996124, - "c6": -16.210028857345073, - "c7": 6.7109458843510765 + "points": { + "c1": -49.478040250590496, + "c2": -23.691367766236546, + "c3": 47.51259129171302, + "c4": -9.260354526474075, + "c5": -41.785752767512264, + "c6": 0.4571865553898107, + "c7": 51.34011900429981 }, - "vertexSeeds": { - "c1": 3.933691932768264, - "c2": 3.9939645230039735, - "c3": 4.079445369165415, - "c4": 4.000451843488493, - "c5": 3.979937356756634, - "c6": 4.046052721482638, - "c7": 3.9628610917295704 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.96393897364771, + "c3": 4.969949144706422, + "c4": 3.9759593157651345, + "c5": 2.9819694868238473, + "c6": 1.987979657882575, + "c7": 0.9939898289412875 }, "rgb": [77, 76, 132] }, @@ -274785,23 +274785,23 @@ "year": 1784, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": -26.602900071233915, - "c2": 1.9451457924544613, - "c3": -4.750693382306977, - "c4": -38.26523569692567, - "c5": 22.552766043796183, - "c6": 33.13192857554205, - "c7": -8.1554916474023 + "points": { + "c1": -47.530896870089414, + "c2": -32.69861736025578, + "c3": 43.344619950451744, + "c4": -3.7951256172217924, + "c5": 33.489275644029064, + "c6": 18.886773740894753, + "c7": -15.609937656621874 }, - "vertexSeeds": { - "c1": 1.617143149952859, - "c2": 1.5752243435626654, - "c3": 1.5802652154006704, - "c4": 1.5370244023027066, - "c5": 1.6397493144498565, - "c6": 1.651019311929032, - "c7": 1.6263126745184864 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590827, + "c3": 1.9879796578825732, + "c4": 1.5903837263060572, + "c5": 1.1927877947295413, + "c6": 0.7951918631530319, + "c7": 0.39759593157651596 }, "rgb": [58, 15, 49] }, @@ -274812,23 +274812,23 @@ "year": 1784, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 4.8924834540363555, - "c2": -0.1389746174535489, - "c3": 25.853878050917757, - "c4": -4.425245063709845, - "c5": 8.407587528268522, - "c6": -22.51596156901949, - "c7": -0.17893941360765808 + "points": { + "c1": 15.989315328590735, + "c2": -18.818574630909147, + "c3": 22.693654734772785, + "c4": -17.27324636164314, + "c5": 17.57054439791652, + "c6": -0.3862867145601605, + "c7": -18.095175989734393 }, - "vertexSeeds": { - "c1": 2.9549899950110436, - "c2": 3.0098895312579437, - "c3": 3.026120632402046, - "c4": 2.992307535896681, - "c5": 2.9330715249630144, - "c6": 2.9150576574338354, - "c7": 2.92655229285618 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515946, + "c3": 3.744798890429964, + "c4": 2.9958391123439685, + "c5": 2.246879334257973, + "c6": 1.497919556171978, + "c7": 0.7489597780859953 }, "rgb": [238, 201, 159] }, @@ -274839,23 +274839,23 @@ "year": 1784, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -14.32245877553784, - "c2": -31.500349186802943, - "c3": 14.10498330904823, - "c4": 12.796484432403005, - "c5": -11.688645186569545, - "c6": -10.933079904341607, - "c7": 17.529696120436057 + "points": { + "c1": -32.67475786666857, + "c2": -9.758337232820207, + "c3": 26.856212059009096, + "c4": -7.7579565423398975, + "c5": 11.480713657491847, + "c6": -36.944051879905935, + "c7": -28.713960915261215 }, - "vertexSeeds": { - "c1": 6.566947529520857, - "c2": 7.130265400739331, - "c3": 7.145368583026187, - "c4": 6.357494295504898, - "c5": 6.496849728622886, - "c6": 6.461494735389098, - "c7": 6.200214197137041 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.23578363384188, + "c3": 8.52981969486824, + "c4": 6.823855755894586, + "c5": 5.117891816920946, + "c6": 3.411927877947293, + "c7": 1.7059639389736403 }, "rgb": [77, 76, 132] }, @@ -274866,23 +274866,23 @@ "year": 1784, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -7.4796041850061386, - "c2": -23.690021563641146, - "c3": -38.26216338302144, - "c4": -24.86364926558169, - "c5": -6.632032757605167, - "c6": -9.388015994139032, - "c7": -35.92916786245882 + "points": { + "c1": 18.25262845156648, + "c2": -28.558055246347216, + "c3": 34.63637095741621, + "c4": 36.90812331794083, + "c5": 18.1380618654156, + "c6": -8.512500315624116, + "c7": -28.913854467063583 }, - "vertexSeeds": { - "c1": 7.088300990448979, - "c2": 6.195995295248557, - "c3": 6.421827548053628, - "c4": 6.2908853290772635, - "c5": 6.972566819233121, - "c6": 6.353267115629961, - "c7": 6.496443569128321 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761441, + "c3": 8.483587609801198, + "c4": 6.78687008784097, + "c5": 5.090152565880727, + "c6": 3.393435043920485, + "c7": 1.6967175219602424 }, "rgb": [58, 15, 49] }, @@ -274893,23 +274893,23 @@ "year": 1784, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 39.648041695849244, - "c2": 22.246639196611454, - "c3": -7.5989471601708445, - "c4": 31.270714263234296, - "c5": 35.263100185252895, - "c6": -31.778861947197168, - "c7": -31.00269327870547 + "points": { + "c1": -41.410353296027104, + "c2": -44.16528128465593, + "c3": 1.6789599365356835, + "c4": 38.61572518999874, + "c5": -22.629260409706916, + "c6": 30.324938477723236, + "c7": 36.15249935616805 }, - "vertexSeeds": { - "c1": 10.925231844781512, - "c2": 10.83629841830114, - "c3": 11.161211610518595, - "c4": 10.064878604734403, - "c5": 11.682385303897368, - "c6": 10.055542654940604, - "c7": 11.483305018032052 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.03051317614424, + "c3": 15.025427646786865, + "c4": 12.020342117429488, + "c5": 9.015256588072111, + "c6": 6.010171058714736, + "c7": 3.0050855293573595 }, "rgb": [58, 15, 49] }, @@ -274920,23 +274920,23 @@ "year": 1785, "resistanceReported": false, "duration": 52704000, - "curveSeeds": { - "c1": 42.691541948718, - "c2": 16.555708515163474, - "c3": -59.24084320190837, - "c4": -18.617749495095204, - "c5": 35.732883562744576, - "c6": -52.24513059273239, - "c7": -43.5209223196335 + "points": { + "c1": 20.815187934960633, + "c2": -42.79113180165045, + "c3": -33.80846705849978, + "c4": -34.209619596440255, + "c5": -62.89166099172485, + "c6": -57.340187776120025, + "c7": -43.15073481569094 }, - "vertexSeeds": { - "c1": 6.755073195838282, - "c2": 7.475920300419523, - "c3": 5.977348946141913, - "c4": 6.170712392480981, - "c5": 6.684371184857393, - "c6": 7.1987221520607445, - "c7": 5.873846419729921 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456309, + "c3": 10.032362459546926, + "c4": 8.02588996763754, + "c5": 6.019417475728154, + "c6": 4.01294498381877, + "c7": 2.006472491909385 }, "rgb": [77, 76, 132] }, @@ -274947,23 +274947,23 @@ "year": 1784, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 16.17395469163857, - "c2": -1.425600161501297, - "c3": -14.549026062568144, - "c4": 23.549527199992127, - "c5": 18.955235429360798, - "c6": 13.121680750754564, - "c7": 12.65052308348448 + "points": { + "c1": 21.225928076464015, + "c2": 24.535168798149577, + "c3": -8.330759883872076, + "c4": 12.881184571325164, + "c5": 9.427281724403485, + "c6": 25.269850771348942, + "c7": -16.10724982019415 }, - "vertexSeeds": { - "c1": 7.230347085671383, - "c2": 6.844391060492903, - "c3": 7.037323580720745, - "c4": 7.074829460632172, - "c5": 7.2248719261406675, - "c6": 6.799644247020607, - "c7": 7.083689274782395 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364779, + "c3": 8.830328247803967, + "c4": 7.064262598243178, + "c5": 5.298196948682389, + "c6": 3.5321312991216, + "c7": 1.7660656495607892 }, "rgb": [58, 15, 49] }, @@ -274974,23 +274974,23 @@ "year": 1784, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": 50.032287392089806, - "c2": 4.5226359033985375, - "c3": -14.958243622757912, - "c4": -2.0373326586155116, - "c5": -7.883662039766797, - "c6": 26.884072411959657, - "c7": -13.723189924662691 + "points": { + "c1": -15.570252360070938, + "c2": 35.568420405098, + "c3": -4.953521913856811, + "c4": 40.01409982934283, + "c5": -49.75755481202068, + "c6": -33.556073989857836, + "c7": 50.844450668968 }, - "vertexSeeds": { - "c1": 1.893401405884625, - "c2": 1.870671676457069, - "c3": 1.8666642019885438, - "c4": 1.9481733442869429, - "c5": 1.8297591214621018, - "c6": 1.9897881274466318, - "c7": 1.919598373720259 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.0790568654646338, + "c3": 2.5658807212205264, + "c4": 2.0527045769764225, + "c5": 1.5395284327323153, + "c6": 1.0263522884882113, + "c7": 0.5131761442441073 }, "rgb": [86, 146, 138] }, @@ -275001,23 +275001,23 @@ "year": 1784, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 18.16122373269937, - "c2": 7.309024107487822, - "c3": -3.3075172042368237, - "c4": -31.050304126879148, - "c5": 40.13016818038969, - "c6": -16.995977171666375, - "c7": 24.78556538830297 + "points": { + "c1": 7.132909475377794, + "c2": -2.7761363615307957, + "c3": 33.688954673013185, + "c4": 13.742948317170182, + "c5": -39.50678772297877, + "c6": 31.039500082048207, + "c7": 14.800892496167243 }, - "vertexSeeds": { - "c1": 1.088300994506679, - "c2": 1.0929888968889214, - "c3": 1.1123052814377994, - "c4": 1.0957646302862412, - "c5": 1.1179010627726946, - "c6": 1.1170335459080785, - "c7": 1.152522856498631 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535378, + "c3": 1.4100785945446126, + "c4": 1.1280628756356907, + "c5": 0.8460471567267689, + "c6": 0.5640314378178436, + "c7": 0.2820157189089218 }, "rgb": [77, 76, 132] }, @@ -275028,23 +275028,23 @@ "year": 1784, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 5.31978452415224, - "c2": -22.148321706249973, - "c3": 7.3494667308733455, - "c4": 35.45006489411938, - "c5": 19.7902010780368, - "c6": 19.454600508939976, - "c7": 32.073456063907514 + "points": { + "c1": -10.392879217492883, + "c2": 13.54534766122628, + "c3": -6.985287390164476, + "c4": 35.74155115968912, + "c5": 16.135090332079294, + "c6": -2.889205589850256, + "c7": -16.79623019134053 }, - "vertexSeeds": { - "c1": 7.880887072952429, - "c2": 7.451484171505706, - "c3": 7.803055216516663, - "c4": 7.375141687092117, - "c5": 7.6165833197326185, - "c6": 7.759390701479181, - "c7": 7.4919279909343075 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370321, + "c3": 9.408229311141938, + "c4": 7.526583448913554, + "c5": 5.64493758668517, + "c6": 3.7632917244567667, + "c7": 1.8816458622283834 }, "rgb": [86, 146, 138] }, @@ -275055,23 +275055,23 @@ "year": 1784, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": 32.29899010332739, - "c2": 26.34091715889422, - "c3": -7.1053604068659695, - "c4": 20.175537969889724, - "c5": -32.53937044789605, - "c6": 44.45404782669643, - "c7": -29.83693023886955 + "points": { + "c1": 30.055799262728137, + "c2": -41.88063297242281, + "c3": -37.786443201193215, + "c4": -31.09960500438099, + "c5": -20.453760570451337, + "c6": 39.24332227989614, + "c7": 41.47033254236013 }, - "vertexSeeds": { - "c1": 3.7344518973796474, - "c2": 3.7402041285841143, - "c3": 3.5045122536281337, - "c4": 4.13969798246959, - "c5": 3.9919134229215696, - "c6": 4.09713559426454, - "c7": 4.087572296486689 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009709, + "c3": 5.1779935275080895, + "c4": 4.14239482200647, + "c5": 3.106796116504856, + "c6": 2.071197411003238, + "c7": 1.035598705501619 }, "rgb": [58, 15, 49] }, @@ -275082,23 +275082,23 @@ "year": 1784, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 10.328746191896485, - "c2": -12.709761073005971, - "c3": -14.591474979793514, - "c4": 32.98707181602116, - "c5": -19.95282080249695, - "c6": -17.31685673228286, - "c7": 1.8116196089791359 + "points": { + "c1": 27.20954733462152, + "c2": -22.237471759211786, + "c3": 35.71288267887333, + "c4": -7.2046776582590475, + "c5": 26.81970288109443, + "c6": 12.971295794978978, + "c7": 32.03372834683309 }, - "vertexSeeds": { - "c1": 12.516212544439124, - "c2": 12.806607760889014, - "c3": 13.95027350147137, - "c4": 13.282444822578249, - "c5": 12.894977794477366, - "c6": 13.727553221616008, - "c7": 14.011211793759871 + "offsets": { + "c1": 23.818770226537218, + "c2": 20.416088765603337, + "c3": 17.01340730466943, + "c4": 13.61072584373555, + "c5": 10.208044382801669, + "c6": 6.805362921867788, + "c7": 3.4026814609338807 }, "rgb": [222, 0, 59] }, @@ -275109,23 +275109,23 @@ "year": 1784, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -30.53006781083004, - "c2": 41.00786968726322, - "c3": -16.865431629640973, - "c4": 30.413215099495865, - "c5": -44.62345081315136, - "c6": 16.701453374635456, - "c7": -24.059893078342544 + "points": { + "c1": -25.986652982699432, + "c2": -9.500807478323594, + "c3": 18.451094374453426, + "c4": -48.46194108577077, + "c5": 32.44803477227172, + "c6": -27.790414104790152, + "c7": -26.928315297468536 }, - "vertexSeeds": { - "c1": 7.019222183535425, - "c2": 7.162529241127928, - "c3": 6.81266485969942, - "c4": 7.184044755627149, - "c5": 6.9063074681961885, - "c6": 7.126916735943743, - "c7": 7.317078276007451 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -275136,23 +275136,23 @@ "year": 1784, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 24.674096340653996, - "c2": -11.774150595599949, - "c3": 23.81718130250897, - "c4": 27.10241733813878, - "c5": -18.621357821384635, - "c6": -13.318977179620486, - "c7": 0.5312212389292981 + "points": { + "c1": 9.133165791560508, + "c2": -26.73656828845863, + "c3": -25.11009819792674, + "c4": -19.351428526659287, + "c5": 8.142966958249083, + "c6": -25.62194937428476, + "c7": 4.015172521491749 }, - "vertexSeeds": { - "c1": 2.96930015941674, - "c2": 2.917493606935399, - "c3": 2.922571817207178, - "c4": 3.12361508458525, - "c5": 3.08970220811507, - "c6": 3.125682715917491, - "c7": 2.999359140724089 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596394, + "c3": 3.791030975496995, + "c4": 3.0328247803975956, + "c5": 2.274618585298197, + "c6": 1.5164123901987978, + "c7": 0.7582061950993989 }, "rgb": [238, 201, 159] }, @@ -275163,23 +275163,23 @@ "year": 1784, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 7.206843025186387, - "c2": -38.27465827425471, - "c3": -9.913501553954568, - "c4": 17.18252048157474, - "c5": 29.81734617039458, - "c6": 21.317430723398438, - "c7": -12.155372760612124 + "points": { + "c1": 10.45529414278856, + "c2": 7.1192609186745415, + "c3": 31.878684851456164, + "c4": 15.493778215143898, + "c5": 6.4222726639480925, + "c6": -32.09673156419019, + "c7": -6.4921196240560874 }, - "vertexSeeds": { - "c1": 9.395749977483089, - "c2": 9.250665769401824, - "c3": 9.614489510013389, - "c4": 8.748765583792833, - "c5": 8.691824610370048, - "c6": 9.313477298528813, - "c7": 8.892158541768191 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011095, + "c3": 11.558021266759138, + "c4": 9.246417013407306, + "c5": 6.934812760055475, + "c6": 4.623208506703644, + "c7": 2.311604253351831 }, "rgb": [58, 15, 49] }, @@ -275190,23 +275190,23 @@ "year": 1784, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 36.172603591814365, - "c2": -25.359001243168002, - "c3": 43.16094226557422, - "c4": 22.6595099412593, - "c5": -24.4553475309668, - "c6": 34.31946177803269, - "c7": 39.10643931078462 + "points": { + "c1": -34.4924700736901, + "c2": 26.86955805616485, + "c3": -34.07036909143533, + "c4": 23.704229255135473, + "c5": -39.106346094569744, + "c6": 2.1655833557135225, + "c7": -18.1836594670606 }, - "vertexSeeds": { - "c1": 10.066310664062367, - "c2": 10.071214496150287, - "c3": 10.067035535064997, - "c4": 10.07335537506751, - "c5": 10.072048367923113, - "c6": 10.082257403419069, - "c7": 10.082198572189725 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915943, + "c3": 12.020342117428676, + "c4": 9.616273693943324, + "c5": 7.2122052704579716, + "c6": 4.8081368469726185, + "c7": 2.4040684234853527 }, "rgb": [58, 15, 49] }, @@ -275217,23 +275217,23 @@ "year": 1784, "resistanceReported": false, "duration": 3888000, - "curveSeeds": { - "c1": -11.550485957628819, - "c2": 10.780062608166594, - "c3": -7.935098909379064, - "c4": 13.802366516520687, - "c5": -1.5925212437179113, - "c6": -7.584497142640505, - "c7": -13.849548363784884 + "points": { + "c1": -7.219152944871846, + "c2": -8.94167465375031, + "c3": 15.600843003907507, + "c4": 5.15684405505629, + "c5": -5.19187802349348, + "c6": 8.46585397345373, + "c7": 12.49976336032281 }, - "vertexSeeds": { - "c1": 0.05829015544041451, - "c2": 0.05829015544041451, - "c3": 0.05829015544041451, - "c4": 0.05829015544041451, - "c5": 0.05829015544041451, - "c6": 0.05829015544041451, - "c7": 0.05829015544041451 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -275244,23 +275244,23 @@ "year": 1784, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 22.637521851552407, - "c2": 38.68363632615687, - "c3": 5.651406011041352, - "c4": 24.26117005810545, - "c5": -27.014301751491708, - "c6": -43.09462308574084, - "c7": -26.631237159022714 + "points": { + "c1": 13.356622414256307, + "c2": 36.415625803287725, + "c3": 45.85131162314008, + "c4": 3.352089861260673, + "c5": 25.82991150208808, + "c6": 5.791381588484548, + "c7": -11.128473976058437 }, - "vertexSeeds": { - "c1": 10.774962686408747, - "c2": 10.660878183010428, - "c3": 10.89013344539741, - "c4": 11.022058993013161, - "c5": 11.089118392346569, - "c6": 10.5932134728793, - "c7": 10.89223841558523 + "offsets": { + "c1": 19.093851132686083, + "c2": 16.366158113730933, + "c3": 13.638465094775786, + "c4": 10.910772075820596, + "c5": 8.183079056865447, + "c6": 5.455386037910298, + "c7": 2.727693018955149 }, "rgb": [86, 146, 138] }, @@ -275271,23 +275271,23 @@ "year": 1785, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": -26.94899326554914, - "c2": 14.14594630837221, - "c3": -39.9582120604818, - "c4": -46.318057510181205, - "c5": -24.441009213237347, - "c6": -21.59860141915264, - "c7": 44.80929691424625 + "points": { + "c1": -19.678319342991706, + "c2": 24.586115002969834, + "c3": -19.679122047157804, + "c4": -9.507646028616001, + "c5": 37.28243205193566, + "c6": -0.10761044320189939, + "c7": 32.2785370773602 }, - "vertexSeeds": { - "c1": 11.651036006189068, - "c2": 11.114612038610632, - "c3": 10.92150899299016, - "c4": 10.806925537851994, - "c5": 11.63497076546956, - "c6": 10.783739869848766, - "c7": 11.456025719316674 + "offsets": { + "c1": 19.741100323624593, + "c2": 16.920943134535353, + "c3": 14.100785945446155, + "c4": 11.280628756356917, + "c5": 8.460471567267676, + "c6": 5.640314378178479, + "c7": 2.8201571890892394 }, "rgb": [222, 0, 59] }, @@ -275298,23 +275298,23 @@ "year": 1784, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 3.581225350960125, - "c2": -26.162539323901296, - "c3": 21.597354354190298, - "c4": -22.186068640830648, - "c5": 22.516755561619913, - "c6": 9.327660158461182, - "c7": -24.445575412528218 + "points": { + "c1": -3.27066804042488, + "c2": 10.218776501234796, + "c3": 21.756543587077704, + "c4": 26.301842980975135, + "c5": -2.2825119511060556, + "c6": 3.5191868795304764, + "c7": 3.443756625183557 }, - "vertexSeeds": { - "c1": 4.346789085067397, - "c2": 4.340727180229735, - "c3": 4.422848516421947, - "c4": 4.523042821112168, - "c5": 4.245989182509286, - "c6": 4.3123389010266475, - "c7": 4.2314840785788626 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411934, + "c3": 5.409153952843272, + "c4": 4.327323162274623, + "c5": 3.2454923717059603, + "c6": 2.1636615811373114, + "c7": 1.081830790568649 }, "rgb": [238, 201, 159] }, @@ -275325,23 +275325,23 @@ "year": 1784, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 1.2712793255125732, - "c2": -20.793867301285736, - "c3": -15.463637650159109, - "c4": -10.524697409572864, - "c5": 13.386850308066641, - "c6": -21.763329085193494, - "c7": -13.879472402080967 + "points": { + "c1": -12.71770394349992, + "c2": -1.867928929518186, + "c3": -3.3108663768857234, + "c4": 4.2085227987163165, + "c5": -22.435703302234067, + "c6": 10.844963781401717, + "c7": -1.930266091288619 }, - "vertexSeeds": { - "c1": 2.4085086487445277, - "c2": 2.394639886276863, - "c3": 2.5301693654704547, - "c4": 2.3479026244139054, - "c5": 2.5372319931989975, - "c6": 2.5294178704332033, - "c7": 2.4685625572107894 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349516, + "c3": 3.0744336569579316, + "c4": 2.4595469255663427, + "c5": 1.844660194174758, + "c6": 1.2297734627831733, + "c7": 0.6148867313915888 }, "rgb": [77, 76, 132] }, @@ -275352,23 +275352,23 @@ "year": 1784, "resistanceReported": true, "duration": 21859200, - "curveSeeds": { - "c1": -17.11711068265333, - "c2": -9.526108690011284, - "c3": -24.217287877119254, - "c4": -6.056207269134543, - "c5": -15.156931160759381, - "c6": 31.084564809939565, - "c7": -18.75339538052159 + "points": { + "c1": 9.182097460251974, + "c2": 20.655340062350625, + "c3": 28.93187812495148, + "c4": -19.900073914822496, + "c5": 29.4910621244437, + "c6": -9.262619306131693, + "c7": 5.326233278530275 }, - "vertexSeeds": { - "c1": 4.97733185132808, - "c2": 4.768175801233235, - "c3": 4.672081841048889, - "c4": 4.649499990680099, - "c5": 5.009217535985676, - "c6": 4.5961065608011, - "c7": 4.983925915056242 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618591, + "c3": 6.102635228848817, + "c4": 4.882108183079058, + "c5": 3.6615811373092915, + "c6": 2.441054091539525, + "c7": 1.2205270457697583 }, "rgb": [86, 146, 138] }, @@ -275379,23 +275379,23 @@ "year": 1784, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 38.779875876975964, - "c2": 42.32976285915275, - "c3": -36.083729583073925, - "c4": -5.7100319534071176, - "c5": -35.95880598498721, - "c6": -11.09506207913082, - "c7": 9.036392226343722 + "points": { + "c1": -16.019569683294456, + "c2": 1.502743411722939, + "c3": -38.71981410328755, + "c4": -30.691228502598968, + "c5": -39.77200351143811, + "c6": 20.547267833479737, + "c7": 35.73688348271166 }, - "vertexSeeds": { - "c1": 4.549153614516816, - "c2": 4.498045586454013, - "c3": 4.516881019986734, - "c4": 4.556803910123837, - "c5": 4.525190449748972, - "c6": 4.567359962815541, - "c7": 4.563471024816571 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572815, + "c3": 5.501618122977347, + "c4": 4.401294498381877, + "c5": 3.3009708737864076, + "c6": 2.2006472491909386, + "c7": 1.1003236245954693 }, "rgb": [86, 146, 138] }, @@ -275406,23 +275406,23 @@ "year": 1785, "resistanceReported": false, "duration": 46310400, - "curveSeeds": { - "c1": 5.5183483201474814, - "c2": -28.00592541542064, - "c3": 33.71407378908445, - "c4": 35.68624148309654, - "c5": 57.50335766430882, - "c6": 11.055716727170505, - "c7": 5.971392720872458 + "points": { + "c1": 10.815798639850655, + "c2": 62.58824601395561, + "c3": -45.34640864829825, + "c4": -53.689039827114186, + "c5": -44.378588701519206, + "c6": -48.62981075473472, + "c7": -60.37311320155618 }, - "vertexSeeds": { - "c1": 3.24659922352903, - "c2": 3.0478465361132066, - "c3": 3.188236217310226, - "c4": 3.6392810504960074, - "c5": 3.040578475140348, - "c6": 2.7826511224521573, - "c7": 2.9494663410710147 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.392048081368468, + "c4": 3.5136384650947776, + "c5": 2.6352288488210833, + "c6": 1.7568192325473888, + "c7": 0.8784096162736944 }, "rgb": [86, 146, 138] }, @@ -275433,23 +275433,23 @@ "year": 1785, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -10.5035088026641, - "c2": 20.210195647334857, - "c3": 43.348182545526114, - "c4": 44.63556108644717, - "c5": -3.0786746601566506, - "c6": -37.05759326730609, - "c7": -36.24788795850971 + "points": { + "c1": 11.225507523859775, + "c2": 23.460153921672244, + "c3": 5.134833691020859, + "c4": -41.22170326947049, + "c5": -10.525437023182853, + "c6": 36.156494511972525, + "c7": -28.802906844049062 }, - "vertexSeeds": { - "c1": 3.9913734352231254, - "c2": 4.293683336501021, - "c3": 4.091140745185094, - "c4": 4.160307302956108, - "c5": 4.047937396279106, - "c6": 4.2715543818500175, - "c7": 3.9633634019067965 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [86, 146, 138] }, @@ -275460,23 +275460,23 @@ "year": 1784, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 9.696464084287548, - "c2": 15.502189762860482, - "c3": 7.11468995688012, - "c4": 14.214286257257328, - "c5": -15.506935720870315, - "c6": -11.01621155064811, - "c7": 11.491588651286207 + "points": { + "c1": 16.850243187574264, + "c2": 5.332052698288045, + "c3": -2.311206433530444, + "c4": 1.0732504046997882, + "c5": -2.785972922314585, + "c6": 7.995800990072482, + "c7": 25.546781806215883 }, - "vertexSeeds": { - "c1": 6.483552309423261, - "c2": 6.214807964008358, - "c3": 6.304711467282894, - "c4": 6.417629482092571, - "c5": 6.216304584414294, - "c6": 6.378424091304074, - "c7": 6.559176102591772 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836329, + "c3": 7.951918631530284, + "c4": 6.361534905224219, + "c5": 4.771151178918175, + "c6": 3.1807674526121095, + "c7": 1.5903837263060658 }, "rgb": [77, 76, 132] }, @@ -275487,23 +275487,23 @@ "year": 1784, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 2.1166446454040795, - "c2": 31.19929063734896, - "c3": -4.870184672895817, - "c4": 13.394463191509494, - "c5": -3.7331494944278845, - "c6": -37.38307567270528, - "c7": 25.278441765630944 + "points": { + "c1": 3.4954082849720223, + "c2": 11.436909671531758, + "c3": 4.93057906801598, + "c4": -22.860903637371013, + "c5": 38.49640158549929, + "c6": -32.201170642107236, + "c7": -0.3118547202546722 }, - "vertexSeeds": { - "c1": 2.22383050182295, - "c2": 2.1925588660668174, - "c3": 2.1952881302123446, - "c4": 2.2208936208583934, - "c5": 2.2373381278122024, - "c6": 2.203199903118665, - "c7": 2.2982540949619277 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668488, + "c3": 2.7970411465557103, + "c4": 2.2376329172445657, + "c5": 1.6782246879334277, + "c6": 1.1188164586222829, + "c7": 0.5594082293111384 }, "rgb": [222, 0, 59] }, @@ -275514,23 +275514,23 @@ "year": 1785, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -50.143636074298755, - "c2": 18.67000424894681, - "c3": 3.8416290415912115, - "c4": 48.59022738278581, - "c5": 27.347997381087907, - "c6": -17.400817370746154, - "c7": -5.080485481662734 + "points": { + "c1": -4.540152315760324, + "c2": -1.145958200861962, + "c3": 15.434384171581286, + "c4": -1.156794182992698, + "c5": -48.91045812849302, + "c6": 1.7923534194622732, + "c7": 25.67260493305851 }, - "vertexSeeds": { - "c1": 5.629985064152991, - "c2": 5.5721737797486, - "c3": 5.605206783729796, - "c4": 5.716586667114164, - "c5": 5.976621269350593, - "c6": 5.991516058997083, - "c7": 5.756713624354566 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669903, + "c3": 7.281553398058253, + "c4": 5.825242718446601, + "c5": 4.368932038834951, + "c6": 2.9126213592233006, + "c7": 1.4563106796116503 }, "rgb": [238, 201, 159] }, @@ -275541,23 +275541,23 @@ "year": 1785, "resistanceReported": false, "duration": 46051200, - "curveSeeds": { - "c1": 29.539927706990063, - "c2": -57.55516767258794, - "c3": -21.917936218491455, - "c4": -14.169090010990068, - "c5": 53.41628997465674, - "c6": 23.73550766870715, - "c7": 51.425990159696774 + "points": { + "c1": -29.09798775893622, + "c2": -53.21953896308039, + "c3": -20.311916830464007, + "c4": -5.073609502445144, + "c5": 30.600156004943607, + "c6": 11.418704503612283, + "c7": 60.21879394282136 }, - "vertexSeeds": { - "c1": 4.216520479347547, - "c2": 3.6823154952359625, - "c3": 4.072855775901896, - "c4": 3.920370144329421, - "c5": 3.9831773701807407, - "c6": 3.7772861070209727, - "c7": 3.9005072734821185 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374015, + "c4": 4.068423485899212, + "c5": 3.0513176144244065, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [222, 0, 59] }, @@ -275568,23 +275568,23 @@ "year": 1784, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -18.739491723124146, - "c2": -1.0115296689759106, - "c3": -3.7224514485067743, - "c4": 39.45708110511678, - "c5": 24.023590587997766, - "c6": -20.56192513501893, - "c7": 34.56883491560689 + "points": { + "c1": 11.529747329763964, + "c2": -37.27236542233356, + "c3": -40.39279592679362, + "c4": -10.927824475729764, + "c5": -0.4495238528741581, + "c6": -17.312403750391702, + "c7": 4.053637998511945 }, - "vertexSeeds": { - "c1": 5.7268747535045845, - "c2": 5.646796811383049, - "c3": 5.18883465795009, - "c4": 5.212664816842487, - "c5": 5.392882956917813, - "c6": 5.451960022300067, - "c7": 5.318840790302179 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388353, + "c3": 7.119741100323632, + "c4": 5.695792880258898, + "c5": 4.271844660194176, + "c6": 2.847896440129455, + "c7": 1.423948220064721 }, "rgb": [86, 146, 138] }, @@ -275595,23 +275595,23 @@ "year": 1784, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 27.81508113961132, - "c2": 25.824895706414143, - "c3": 31.386510453639946, - "c4": -25.27763085934192, - "c5": 25.77312642580034, - "c6": 22.98863473646723, - "c7": 4.636028655055828 + "points": { + "c1": -27.22402457680143, + "c2": 14.063395200905887, + "c3": 33.06346019947976, + "c4": -18.142247788447484, + "c5": -29.783911179750806, + "c6": 19.54161330795347, + "c7": 13.744427646179581 }, - "vertexSeeds": { - "c1": 9.387971321569603, - "c2": 9.251610256702696, - "c3": 9.381594381593997, - "c4": 9.369861343586338, - "c5": 9.447304233879056, - "c6": 9.510774643383039, - "c7": 9.462899308244184 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748934, + "c3": 11.349976883957476, + "c4": 9.079981507165957, + "c5": 6.809986130374497, + "c6": 4.539990753582979, + "c7": 2.269995376791519 }, "rgb": [238, 201, 159] }, @@ -275622,23 +275622,23 @@ "year": 1785, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 7.3460956890908164, - "c2": 28.826088007445108, - "c3": 18.598974584244985, - "c4": -42.756138518325194, - "c5": 35.82686852837088, - "c6": -44.31114112388146, - "c7": -35.46629033796605 + "points": { + "c1": 29.595854587144927, + "c2": -19.858622216022702, + "c3": 17.869754802405353, + "c4": -9.256991186865783, + "c5": -25.890725162946772, + "c6": 8.661637785163855, + "c7": 1.1036311984657488 }, - "vertexSeeds": { - "c1": 5.411807421245456, - "c2": 7.112942365780716, - "c3": 5.990368948714275, - "c4": 6.6181659887317394, - "c5": 5.961097035860892, - "c6": 6.934261506225408, - "c7": 7.285395821222259 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [222, 0, 59] }, @@ -275649,23 +275649,23 @@ "year": 1784, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -33.61630778075834, - "c2": -30.10962550309667, - "c3": -35.384379128283115, - "c4": 30.745823980597237, - "c5": -24.909256229667022, - "c6": 21.82994633305396, - "c7": 5.290556634967892 + "points": { + "c1": 38.808019992879736, + "c2": -2.232314578734538, + "c3": -8.20390919510293, + "c4": -31.8308050530603, + "c5": -15.879518728021363, + "c6": 15.47441576238613, + "c7": 10.785229150261692 }, - "vertexSeeds": { - "c1": 3.2991009278325376, - "c2": 3.289403437758648, - "c3": 3.12296555126661, - "c4": 3.0899551716712264, - "c5": 3.18404154270256, - "c6": 3.275505464601925, - "c7": 3.129827399952569 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877941, + "c3": 3.952843273231625, + "c4": 3.1622746185852946, + "c5": 2.371705963938978, + "c6": 1.5811373092926473, + "c7": 0.7905686546463164 }, "rgb": [58, 15, 49] }, @@ -275676,23 +275676,23 @@ "year": 1785, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -9.498976517557402, - "c2": 36.49066415362129, - "c3": -26.21393044842615, - "c4": -43.378189135135955, - "c5": 1.8188606593441463, - "c6": -10.008339604583341, - "c7": -20.862527720616214 + "points": { + "c1": -19.544915743374464, + "c2": -45.71915686807803, + "c3": -4.992072620541585, + "c4": -27.464165290819377, + "c5": 40.57517093901988, + "c6": -27.257202087802817, + "c7": -47.16642106565338 }, - "vertexSeeds": { - "c1": 2.3071080801074055, - "c2": 2.535358285828537, - "c3": 2.534955875968383, - "c4": 2.4621203651429746, - "c5": 2.325551465322996, - "c6": 2.2574832120384705, - "c7": 2.31119912235182 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349516, + "c3": 3.0744336569579307, + "c4": 2.4595469255663427, + "c5": 1.844660194174758, + "c6": 1.2297734627831731, + "c7": 0.6148867313915847 }, "rgb": [77, 76, 132] }, @@ -275703,23 +275703,23 @@ "year": 1784, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 4.052362138576189, - "c2": -10.592723105697603, - "c3": -20.875324386494682, - "c4": -10.0432750613193, - "c5": -5.360341301743588, - "c6": -21.38154820306493, - "c7": -2.5356904206191366 + "points": { + "c1": -19.165961475856164, + "c2": 4.829164098563545, + "c3": -23.82226177648161, + "c4": -19.329395229761964, + "c5": 21.684875726279387, + "c6": 22.482045483513964, + "c7": -23.975906810358342 }, - "vertexSeeds": { - "c1": 1.42628641968702, - "c2": 1.4847550979460744, - "c3": 1.3512192781099752, - "c4": 1.2523917514855294, - "c5": 1.5322720822729154, - "c6": 1.3813879249420087, - "c7": 1.2585618755316685 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177535, + "c3": 1.8492834026814617, + "c4": 1.4794267221451678, + "c5": 1.1095700416088758, + "c6": 0.7397133610725839, + "c7": 0.36985668053629195 }, "rgb": [238, 201, 159] }, @@ -275730,23 +275730,23 @@ "year": 1785, "resistanceReported": false, "duration": 54345600, - "curveSeeds": { - "c1": -42.63244857366297, - "c2": 13.089739772542927, - "c3": 19.252906651322917, - "c4": 50.95657880377452, - "c5": -59.20688759673723, - "c6": -29.728806700440522, - "c7": 16.956869184727537 + "points": { + "c1": 54.7935526769859, + "c2": -37.896566088035215, + "c3": 27.018927388472136, + "c4": -53.41067635790857, + "c5": 31.071038955258217, + "c6": -60.36473722495053, + "c7": 16.309477022381486 }, - "vertexSeeds": { - "c1": 2.558179483080264, - "c2": 2.5467428821032128, - "c3": 2.4810113799451092, - "c4": 2.4915605556260445, - "c5": 2.4568132217776064, - "c6": 2.515079485390792, - "c7": 2.483736607452303 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495116, + "c3": 3.074433656957923, + "c4": 2.4595469255663343, + "c5": 1.844660194174766, + "c6": 1.2297734627831776, + "c7": 0.6148867313915888 }, "rgb": [86, 146, 138] }, @@ -275757,23 +275757,23 @@ "year": 1785, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": 21.100179942272533, - "c2": -33.3726220629315, - "c3": 24.113599403289754, - "c4": 38.49821838865729, - "c5": -12.756243508217189, - "c6": -10.852749670029858, - "c7": -41.82433644417682 + "points": { + "c1": 18.597226196312832, + "c2": -38.90491439265219, + "c3": 38.91536359883264, + "c4": 29.627984055710698, + "c5": 26.55207278717107, + "c6": 35.34910870864036, + "c7": 33.5809307880443 }, - "vertexSeeds": { - "c1": 9.437571483739326, - "c2": 9.407422623028147, - "c3": 8.571023181095686, - "c4": 9.245387798640689, - "c5": 9.069751585588396, - "c6": 9.422795804098309, - "c7": 8.695820899561989 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588073, + "c3": 11.257512713823399, + "c4": 9.006010171058712, + "c5": 6.754507628294037, + "c6": 4.503005085529361, + "c7": 2.251502542764686 }, "rgb": [238, 201, 159] }, @@ -275784,23 +275784,23 @@ "year": 1785, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": 16.20446877266857, - "c2": 12.838648063307573, - "c3": -35.482320361457575, - "c4": -7.383791656372296, - "c5": -33.66850115516735, - "c6": 8.520245618997507, - "c7": 38.44694468063003 + "points": { + "c1": 5.139558597579949, + "c2": 3.0243176239083454, + "c3": 2.7972084825912162, + "c4": -32.80602061602329, + "c5": -35.55801648571267, + "c6": -41.39863716189902, + "c7": -18.629853990351855 }, - "vertexSeeds": { - "c1": 7.414626832115673, - "c2": 7.846048443241422, - "c3": 7.6675535316744305, - "c4": 7.586029969434004, - "c5": 7.786441624518428, - "c6": 7.580346580935273, - "c7": 7.477845030321211 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410552, + "c3": 9.431345353675448, + "c4": 7.545076282940368, + "c5": 5.658807212205264, + "c6": 3.772538141470184, + "c7": 1.886269070735103 }, "rgb": [222, 0, 59] }, @@ -275811,23 +275811,23 @@ "year": 1785, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -18.09506480819415, - "c2": -13.027288892410908, - "c3": 3.3375481820033457, - "c4": -12.94966914361131, - "c5": -44.11593514732795, - "c6": 22.357799749739286, - "c7": 7.683055849975972 + "points": { + "c1": 22.573057034573722, + "c2": -3.3576793182743714, + "c3": 12.310883475383505, + "c4": 3.5775216697698724, + "c5": 9.34232751642434, + "c6": 16.78307891491147, + "c7": -32.907467097393834 }, - "vertexSeeds": { - "c1": 3.640320680926181, - "c2": 3.681534709549504, - "c3": 3.4067132740006647, - "c4": 3.445492017368518, - "c5": 3.472936725675562, - "c6": 3.4506578476230003, - "c7": 3.685604190747263 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.3259361997226105, + "c3": 4.438280166435512, + "c4": 3.5506241331484034, + "c5": 2.6629680998613052, + "c6": 1.7753120665742073, + "c7": 0.8876560332870981 }, "rgb": [222, 0, 59] }, @@ -275838,23 +275838,23 @@ "year": 1785, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 37.47833320459046, - "c2": -14.650732843119776, - "c3": -15.017451472066327, - "c4": 3.4529663409286897, - "c5": 14.559937204896137, - "c6": -48.323513264723296, - "c7": -38.6137392974196 + "points": { + "c1": 37.995298791197946, + "c2": 26.531939765529067, + "c3": 34.889696670622435, + "c4": 40.76340712540938, + "c5": 23.113437828348815, + "c6": 44.85621783136235, + "c7": 35.5634838130836 }, - "vertexSeeds": { - "c1": 3.4361284321855106, - "c2": 3.2589544893543874, - "c3": 3.480175501732127, - "c4": 3.409543192059928, - "c5": 3.3080284966533746, - "c6": 3.312476924314704, - "c7": 3.336898454388856 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400837, + "c3": 4.253351826167359, + "c4": 3.4026814609338913, + "c5": 2.5520110957004136, + "c6": 1.7013407304669457, + "c7": 0.8506703652334778 }, "rgb": [77, 76, 132] }, @@ -275865,23 +275865,23 @@ "year": 1784, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 37.70157188528976, - "c2": -28.10682130633366, - "c3": -13.696570661864172, - "c4": -27.818880099570656, - "c5": 32.87278349815765, - "c6": -22.34763830185639, - "c7": -4.742241368823457 + "points": { + "c1": 25.924540518296048, + "c2": 34.972016942106144, + "c3": 44.89224908801905, + "c4": 2.7768617842321817, + "c5": -11.20127400098071, + "c6": 21.060362529457016, + "c7": -1.0615544253929343 }, - "vertexSeeds": { - "c1": 8.002356842052466, - "c2": 7.784926672195793, - "c3": 7.682201566037554, - "c4": 8.182291273989485, - "c5": 7.806654731735068, - "c6": 7.814011135307137, - "c7": 7.706100413641185 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174756, + "c3": 9.870550161812298, + "c4": 7.896440129449838, + "c5": 5.922330097087378, + "c6": 3.948220064724919, + "c7": 1.9741100323624594 }, "rgb": [86, 146, 138] }, @@ -275892,23 +275892,23 @@ "year": 1785, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": 50.78146972500442, - "c2": 42.80571025250908, - "c3": -38.7597855096508, - "c4": -26.938308795427837, - "c5": 53.89554043683918, - "c6": -4.388634373511302, - "c7": -30.81599444424213 + "points": { + "c1": 44.064227994917964, + "c2": 26.910727951065034, + "c3": -13.910993450131066, + "c4": 14.74630437102389, + "c5": -46.0591827776463, + "c6": 34.491986951608816, + "c7": 30.777864109355825 }, - "vertexSeeds": { - "c1": 5.869223542948734, - "c2": 5.7581603412990425, - "c3": 5.606619128357975, - "c4": 5.56755783339779, - "c5": 5.627809395416411, - "c6": 5.7044638552562645, - "c7": 5.692064608920137 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256582, + "c4": 5.658807212205262, + "c5": 4.2441054091539625, + "c6": 2.829403606102642, + "c7": 1.414701803051321 }, "rgb": [86, 146, 138] }, @@ -275919,23 +275919,23 @@ "year": 1784, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -25.31898054006868, - "c2": 22.982730939682984, - "c3": 27.857175571930437, - "c4": 5.975833231283577, - "c5": 26.225901289910627, - "c6": -9.399950295806004, - "c7": 20.7055154264624 + "points": { + "c1": -24.747311069674605, + "c2": 15.34766894899429, + "c3": 11.593419431253757, + "c4": 1.8714362909346818, + "c5": 23.592543746517606, + "c6": 4.067069827648176, + "c7": 10.824861143502027 }, - "vertexSeeds": { - "c1": 4.450757510227881, - "c2": 4.225871705966187, - "c3": 4.308463975445025, - "c4": 4.325597300223995, - "c5": 4.2910875656812335, - "c6": 4.474109076328307, - "c7": 4.477674517143364 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411934, + "c3": 5.409153952843272, + "c4": 4.327323162274623, + "c5": 3.2454923717059603, + "c6": 2.1636615811373114, + "c7": 1.081830790568649 }, "rgb": [77, 76, 132] }, @@ -275946,23 +275946,23 @@ "year": 1784, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 4.129327004894471, - "c2": 7.880721082837567, - "c3": 27.524441722080695, - "c4": -14.085521676394368, - "c5": -21.49393804718736, - "c6": -2.4877860516827823, - "c7": -30.451166034240273 + "points": { + "c1": -22.665506510337128, + "c2": 25.41909704266238, + "c3": 18.947129914750654, + "c4": 11.696734448859821, + "c5": -5.8491266575148515, + "c6": -3.081209132852731, + "c7": 31.83599340634194 }, - "vertexSeeds": { - "c1": 5.629172689814104, - "c2": 5.97642896206703, - "c3": 5.69064121347075, - "c4": 5.720647466170273, - "c5": 5.942852312711356, - "c6": 5.955707331532243, - "c7": 5.847671872732102 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750357, + "c3": 7.327785483125286, + "c4": 5.862228386500238, + "c5": 4.396671289875168, + "c6": 2.931114193250119, + "c7": 1.4655570966250486 }, "rgb": [86, 146, 138] }, @@ -275973,23 +275973,23 @@ "year": 1785, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -40.387801987458616, - "c2": -20.992158833528176, - "c3": 32.37461363036524, - "c4": 38.242518235242265, - "c5": 26.84572729725543, - "c6": 29.018225085425904, - "c7": 29.033481490286952 + "points": { + "c1": 34.838936912694074, + "c2": -39.40372278758154, + "c3": -37.42391581225142, + "c4": -37.89069842103604, + "c5": 40.36914688299316, + "c6": -41.260398803933654, + "c7": 15.830229089280728 }, - "vertexSeeds": { - "c1": 5.516828520749372, - "c2": 5.60246585246662, - "c3": 5.619219562872482, - "c4": 5.973962522390379, - "c5": 5.567526850056561, - "c6": 5.3920064175283136, - "c7": 5.402425999346238 + "offsets": { + "c1": 10, + "c2": 8.571428571428578, + "c3": 7.142857142857141, + "c4": 5.71428571428572, + "c5": 4.28571428571428, + "c6": 2.85714285714286, + "c7": 1.4285714285714388 }, "rgb": [86, 146, 138] }, @@ -276000,23 +276000,23 @@ "year": 1785, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": 34.5743803562753, - "c2": -8.800829903432053, - "c3": 44.472276399941705, - "c4": 20.29556215370748, - "c5": -45.31130504405139, - "c6": 11.741929769884457, - "c7": -21.564388643458813 + "points": { + "c1": 49.58509885061855, + "c2": 2.1279169062074104, + "c3": 45.89456325744355, + "c4": -35.61181940994765, + "c5": 15.552530166476743, + "c6": -45.53262157190853, + "c7": 16.508457701986075 }, - "vertexSeeds": { - "c1": 6.159324514838316, - "c2": 6.080725599578752, - "c3": 6.209389540266748, - "c4": 6.020042974046955, - "c5": 5.9727536268451775, - "c6": 6.265550659081157, - "c7": 6.34241273353047 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [86, 146, 138] }, @@ -276027,23 +276027,23 @@ "year": 1785, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": 0.9947374602783228, - "c2": 23.515195679856944, - "c3": -5.3483633235743255, - "c4": 43.430403724378934, - "c5": -35.16911830274714, - "c6": 1.4353962297970355, - "c7": 18.260348463170374 + "points": { + "c1": -49.55786220707578, + "c2": 13.16993396849687, + "c3": 10.389322573831556, + "c4": -17.82708258434517, + "c5": -37.799232173243254, + "c6": 14.32719692073347, + "c7": 1.0009076425783832 }, - "vertexSeeds": { - "c1": 7.8099477514216495, - "c2": 8.189949016843446, - "c3": 7.870912029424619, - "c4": 7.951936246669085, - "c5": 8.575201490020453, - "c6": 8.621392715218006, - "c7": 8.603135299725764 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.84327323162274, + "c3": 10.702727693018955, + "c4": 8.56218215441516, + "c5": 6.4216366158113765, + "c6": 4.28109107720758, + "c7": 2.1405455386037833 }, "rgb": [86, 146, 138] }, @@ -276054,23 +276054,23 @@ "year": 1785, "resistanceReported": true, "duration": 28944000, - "curveSeeds": { - "c1": 25.707114954775484, - "c2": 15.684526037767071, - "c3": 17.76549012818436, - "c4": 1.1024156319038099, - "c5": 25.00935410584365, - "c6": -0.5329987028219634, - "c7": -32.160030416925565 + "points": { + "c1": -31.03580284478494, + "c2": -10.493214821979429, + "c3": 35.292282086977885, + "c4": -10.065138371082377, + "c5": -42.75053294235943, + "c6": -9.15360374733956, + "c7": 22.25578650363503 }, - "vertexSeeds": { - "c1": 0.30299456184162793, - "c2": 0.3295781472850296, - "c3": 0.3102782667929768, - "c4": 0.2797187726684471, - "c5": 0.29572646307488426, - "c6": 0.2758586075717407, - "c7": 0.3247872231282027 + "offsets": { + "c1": 0.5825242718446602, + "c2": 0.4993065187239942, + "c3": 0.4160887656033289, + "c4": 0.33287101248266293, + "c5": 0.2496532593619969, + "c6": 0.16643550624133163, + "c7": 0.08321775312066564 }, "rgb": [86, 146, 138] }, @@ -276081,23 +276081,23 @@ "year": 1784, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 2.1794951704622214, - "c2": 25.290232758245217, - "c3": 12.09905678181606, - "c4": 16.499789532038022, - "c5": -18.802127384491857, - "c6": 12.35690846088361, - "c7": -3.221252110977918 + "points": { + "c1": 25.150723827419178, + "c2": 22.114272769121214, + "c3": 26.065438605464955, + "c4": -22.903320400587493, + "c5": 5.671907846229644, + "c6": -8.215294677342424, + "c7": 8.362014269622023 }, - "vertexSeeds": { - "c1": 11.187990412866226, - "c2": 10.358085243240062, - "c3": 9.670593485315047, - "c4": 10.834897457528541, - "c5": 10.493142400967612, - "c6": 10.79652206952693, - "c7": 9.76758629206745 + "offsets": { + "c1": 19.320388349514563, + "c2": 16.560332871012484, + "c3": 13.800277392510406, + "c4": 11.04022191400833, + "c5": 8.280166435506251, + "c6": 5.520110957004155, + "c7": 2.760055478502087 }, "rgb": [222, 0, 59] }, @@ -276108,23 +276108,23 @@ "year": 1785, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": -21.710538378825824, - "c2": -3.4799280228795055, - "c3": -54.193589325316125, - "c4": -0.48467394419769505, - "c5": -18.404557604752583, - "c6": 32.48762473661078, - "c7": -19.991712840887907 + "points": { + "c1": 45.029872033811856, + "c2": 55.11145512589266, + "c3": -30.30511758979965, + "c4": -55.87673137876863, + "c5": 26.281938568965444, + "c6": -39.882288813017155, + "c7": -16.92473338682511 }, - "vertexSeeds": { - "c1": 0.3328308288556843, - "c2": 0.3476598757176965, - "c3": 0.33929272490821144, - "c4": 0.3537597286790266, - "c5": 0.35791803864120814, - "c6": 0.33521930508487663, - "c7": 0.3556493536215354 + "offsets": { + "c1": 0.7119741100323626, + "c2": 0.610263522884882, + "c3": 0.5085529357374021, + "c4": 0.4068423485899215, + "c5": 0.305131761442441, + "c6": 0.20342117429496043, + "c7": 0.10171058714748053 }, "rgb": [86, 146, 138] }, @@ -276135,23 +276135,23 @@ "year": 1784, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 5.026994179760912, - "c2": -6.488364493752332, - "c3": 17.93296731180596, - "c4": -15.689761931481474, - "c5": -37.93518818513278, - "c6": -36.71649781932338, - "c7": -14.735757667180316 + "points": { + "c1": -14.493950439038656, + "c2": 26.273481286291165, + "c3": -1.2656673279699149, + "c4": -6.576959588186341, + "c5": 15.670032932630754, + "c6": -3.155211253346316, + "c7": 28.338930110759215 }, - "vertexSeeds": { - "c1": 6.835891659128369, - "c2": 6.968997359958461, - "c3": 6.911615171078073, - "c4": 6.924682403020833, - "c5": 6.900919142390006, - "c6": 6.893281123625254, - "c7": 6.878253771735636 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.9861303744799, + "c3": 8.321775312066595, + "c4": 6.657420249653291, + "c5": 4.993065187239913, + "c6": 3.3287101248266087, + "c7": 1.6643550624133043 }, "rgb": [86, 146, 138] }, @@ -276162,23 +276162,23 @@ "year": 1785, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 29.701351838957898, - "c2": 38.79660910740868, - "c3": -10.670732603598402, - "c4": 27.916951468027598, - "c5": 28.3695038153652, - "c6": -39.161941242608215, - "c7": -11.386685562963336 + "points": { + "c1": 14.375078804521003, + "c2": 37.163915913402825, + "c3": -18.47321009094568, + "c4": 9.431692690405093, + "c5": 12.665261875113899, + "c6": -26.560349248290432, + "c7": -20.699836904078726 }, - "vertexSeeds": { - "c1": 2.7500543063863176, - "c2": 2.8682335802237717, - "c3": 2.775987448354983, - "c4": 2.7785326947871662, - "c5": 2.718464063032998, - "c6": 2.816516446707988, - "c7": 2.848694360791338 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073504, + "c3": 3.490522422561259, + "c4": 2.7924179380490024, + "c5": 2.094313453536758, + "c6": 1.3962089690245012, + "c7": 0.6981044845122569 }, "rgb": [77, 76, 132] }, @@ -276189,23 +276189,23 @@ "year": 1785, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 6.108215399876151, - "c2": 12.510350641773059, - "c3": -37.87070767541256, - "c4": -50.567318970757434, - "c5": -39.06559708696055, - "c6": -7.9584001494576455, - "c7": -23.913077029876163 + "points": { + "c1": -43.308318564269214, + "c2": -39.30229383716011, + "c3": 8.494250298402065, + "c4": -29.30253420138573, + "c5": 52.302112752477356, + "c6": 25.326620767227794, + "c7": -34.78471999713393 }, - "vertexSeeds": { - "c1": 5.150125413561467, - "c2": 5.856724281793003, - "c3": 4.950048442839754, - "c4": 5.891797122006254, - "c5": 4.906229328393371, - "c6": 5.577555539360862, - "c7": 4.92181375739496 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991681, + "c3": 7.466481738326397, + "c4": 5.973185390661114, + "c5": 4.479889042995838, + "c6": 2.986592695330563, + "c7": 1.4932963476652794 }, "rgb": [238, 201, 159] }, @@ -276216,23 +276216,23 @@ "year": 1784, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -2.2711987323078375, - "c2": -11.768679937359327, - "c3": 20.923700320835604, - "c4": 21.429725178636343, - "c5": -21.48362554347812, - "c6": 13.622058196588416, - "c7": -0.37717131134631643 + "points": { + "c1": 5.779806757464112, + "c2": -0.7401414691365495, + "c3": -6.052620659567921, + "c4": -7.3841977691133565, + "c5": -7.904551468054425, + "c6": -18.189512204245485, + "c7": 3.2944820170419753 }, - "vertexSeeds": { - "c1": 3.6133165342122417, - "c2": 3.5768500643471226, - "c3": 3.6258208271449144, - "c4": 3.7452470248621057, - "c5": 3.730400187506175, - "c6": 3.7438327929172286, - "c7": 3.69822693117958 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803052, + "c3": 4.484512251502543, + "c4": 3.587609801202034, + "c5": 2.690707350901526, + "c6": 1.793804900601017, + "c7": 0.8969024503005085 }, "rgb": [222, 0, 59] }, @@ -276243,23 +276243,23 @@ "year": 1785, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 19.65028686596237, - "c2": -17.106221029727863, - "c3": 7.3606341329137805, - "c4": -37.05943647564416, - "c5": 38.71819698233027, - "c6": -20.452464354812523, - "c7": 34.793394908995836 + "points": { + "c1": -28.551640643512698, + "c2": 29.741259943213578, + "c3": 23.417219637276517, + "c4": 4.8085181517671245, + "c5": 14.443186980849731, + "c6": -20.430880333454205, + "c7": 24.132107452658403 }, - "vertexSeeds": { - "c1": 8.14334863827294, - "c2": 7.946807562845597, - "c3": 7.94638920426918, - "c4": 7.976314224379216, - "c5": 8.15019390986402, - "c6": 8.222708347188377, - "c7": 8.044830572207875 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.78918169209432, + "c3": 9.824318076745275, + "c4": 7.85945446139623, + "c5": 5.894590846047136, + "c6": 3.9297272306980906, + "c7": 1.9648636153490453 }, "rgb": [238, 201, 159] }, @@ -276270,23 +276270,23 @@ "year": 1784, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -4.346253394346245, - "c2": -20.27183614175675, - "c3": -2.406677994334551, - "c4": 11.06368187905078, - "c5": -9.643884748299882, - "c6": 5.223888822610942, - "c7": -13.209952961156734 + "points": { + "c1": -24.726027623929063, + "c2": -25.680454622807687, + "c3": -7.2801748694738215, + "c4": 3.4137479453153112, + "c5": 22.497645016738193, + "c6": 22.894751040849346, + "c7": 6.462682124531451 }, - "vertexSeeds": { - "c1": 2.0058047315986274, - "c2": 2.1076646949561586, - "c3": 1.9154412260518103, - "c4": 2.0289780767441346, - "c5": 1.930416908877936, - "c6": 1.8936492736450785, - "c7": 2.0603461272723296 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244114, + "c3": 2.5427646786870066, + "c4": 2.0342117429496063, + "c5": 1.5256588072122057, + "c6": 1.0171058714748011, + "c7": 0.5085529357374006 }, "rgb": [77, 76, 132] }, @@ -276297,23 +276297,23 @@ "year": 1785, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": 4.772053280716861, - "c2": -15.0268167971443, - "c3": 43.594757489723236, - "c4": -18.340256246979536, - "c5": 10.894816008734914, - "c6": 7.466476411107507, - "c7": -35.81228929064944 + "points": { + "c1": 6.33562366589446, + "c2": -31.70146606354373, + "c3": -39.687963815683474, + "c4": -1.8218955959160539, + "c5": -8.361539476785694, + "c6": 4.780470295232369, + "c7": -40.23042292690707 }, - "vertexSeeds": { - "c1": 5.45964643811683, - "c2": 5.681795770659174, - "c3": 5.885835193862203, - "c4": 5.205577876926416, - "c5": 5.522282099602217, - "c6": 5.552647074273853, - "c7": 5.6666660928657615 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [222, 0, 59] }, @@ -276324,23 +276324,23 @@ "year": 1785, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 18.037906498304366, - "c2": -1.6073650582364607, - "c3": -9.83481441410629, - "c4": 16.65181784401875, - "c5": -9.05101882078526, - "c6": 32.05191032998012, - "c7": 26.955884031066915 + "points": { + "c1": -8.162028567653337, + "c2": -1.851690005838961, + "c3": 0.8285793590142134, + "c4": -32.535689798658744, + "c5": -40.26457449960056, + "c6": 34.17043941215856, + "c7": 43.483998544314886 }, - "vertexSeeds": { - "c1": 6.894314081265585, - "c2": 6.806127187856743, - "c3": 6.974737075943701, - "c4": 6.79671311115489, - "c5": 6.903462273766308, - "c6": 7.183700289038093, - "c7": 7.035649619528521 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123447, + "c3": 8.691631992602863, + "c4": 6.953305594082299, + "c5": 5.214979195561714, + "c6": 3.4766527970411496, + "c7": 1.738326398520585 }, "rgb": [86, 146, 138] }, @@ -276351,23 +276351,23 @@ "year": 1784, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -2.0864194408401175, - "c2": 16.668580123941208, - "c3": 17.72351299168709, - "c4": -12.91683517225, - "c5": -8.154881759736384, - "c6": 20.72815677912035, - "c7": -13.467037955259624 + "points": { + "c1": -19.372711697549178, + "c2": -22.966906457315165, + "c3": -3.800133149164658, + "c4": 24.345175986049806, + "c5": -16.06298220182174, + "c6": 6.420566716892505, + "c7": 15.287988186518898 }, - "vertexSeeds": { - "c1": 7.044227241969191, - "c2": 7.22913441483458, - "c3": 7.116724298091395, - "c4": 7.161489004762247, - "c5": 6.930707586856516, - "c6": 7.187430712980184, - "c7": 7.251989022823132 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163673, + "c3": 8.714748035136381, + "c4": 6.971798428109115, + "c5": 5.228848821081823, + "c6": 3.4858992140545575, + "c7": 1.7429496070272916 }, "rgb": [238, 201, 159] }, @@ -276378,23 +276378,23 @@ "year": 1784, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -26.364175915628238, - "c2": 3.628773901706353, - "c3": -9.158868319031615, - "c4": 16.04821521919733, - "c5": -30.554909979691686, - "c6": -5.227953612038217, - "c7": -6.169618293697056 + "points": { + "c1": 20.986092238997017, + "c2": -27.082222895385826, + "c3": -31.003633163789825, + "c4": -35.49441247482339, + "c5": 2.761701978873127, + "c6": -26.91660782421487, + "c7": -10.629748154866828 }, - "vertexSeeds": { - "c1": 5.874973017963691, - "c2": 6.0174896013281405, - "c3": 6.264061482432958, - "c4": 6.2394488486482, - "c5": 6.016131076864889, - "c6": 5.889075602037638, - "c7": 6.238249530294591 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112335, + "c3": 7.535829865926956, + "c4": 6.028663892741556, + "c5": 4.521497919556178, + "c6": 3.014331946370778, + "c7": 1.5071659731853997 }, "rgb": [58, 15, 49] }, @@ -276405,23 +276405,23 @@ "year": 1784, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -1.3487341412619287, - "c2": -17.36857591425092, - "c3": 21.370672732362877, - "c4": -4.490941163743241, - "c5": -11.052548612905365, - "c6": 36.08733511062167, - "c7": -25.90744280428565 + "points": { + "c1": 31.53797436444824, + "c2": 28.152409024065342, + "c3": 27.141146087320216, + "c4": 19.903802474691872, + "c5": -24.776572357320006, + "c6": -0.061054345117682374, + "c7": -29.518650891783295 }, - "vertexSeeds": { - "c1": 2.89963742973626, - "c2": 2.9646112171973833, - "c3": 3.0810211164042536, - "c4": 3.0644769020958282, - "c5": 3.1301321180576265, - "c6": 2.9690118630316915, - "c7": 3.012010070997071 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596394, + "c3": 3.791030975496995, + "c4": 3.0328247803975956, + "c5": 2.274618585298197, + "c6": 1.5164123901987978, + "c7": 0.7582061950993989 }, "rgb": [77, 76, 132] }, @@ -276432,23 +276432,23 @@ "year": 1785, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": 7.2376140715106985, - "c2": -15.279218622038776, - "c3": 43.701406954153285, - "c4": 22.582057914151093, - "c5": -14.496097398802029, - "c6": 10.365336456051324, - "c7": 21.918366354790976 + "points": { + "c1": 17.473188999155127, + "c2": 43.79033975435867, + "c3": -13.128556226771792, + "c4": -4.220329137818332, + "c5": -45.71729492083202, + "c6": -52.008908736444184, + "c7": 23.412960235242608 }, - "vertexSeeds": { - "c1": 9.544803644790775, - "c2": 9.67556086839059, - "c3": 10.015129942138906, - "c4": 9.473402578192585, - "c5": 9.713916038199752, - "c6": 9.170000306626697, - "c7": 8.918299506301773 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995833, + "c3": 12.066574202496536, + "c4": 9.653259361997225, + "c5": 7.239944521497916, + "c6": 4.8266296809986065, + "c7": 2.41331484049931 }, "rgb": [86, 146, 138] }, @@ -276459,23 +276459,23 @@ "year": 1785, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 21.943839556925774, - "c2": 22.114363599698272, - "c3": -9.099934055629106, - "c4": -5.626867065374974, - "c5": -45.356520351647006, - "c6": -26.05401460156885, - "c7": -4.7323500478458485 + "points": { + "c1": 6.899905800557633, + "c2": 38.15208381864063, + "c3": -2.483264386227617, + "c4": -2.056706148880643, + "c5": 9.10155945611855, + "c6": 4.926283243091895, + "c7": -15.679671575124424 }, - "vertexSeeds": { - "c1": 7.167906583585346, - "c2": 7.074786437316689, - "c3": 7.205189068122703, - "c4": 7.392693089960536, - "c5": 7.344440750512392, - "c6": 7.419518236996136, - "c7": 6.890771689916624 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -276486,23 +276486,23 @@ "year": 1784, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 31.630789421662044, - "c2": 3.328434207741644, - "c3": -27.601353199298288, - "c4": -2.2605108726866945, - "c5": -27.256722850412917, - "c6": -20.87594040483166, - "c7": 16.00015562241699 + "points": { + "c1": 28.94402753381783, + "c2": 8.844474213273273, + "c3": 21.25888715402128, + "c4": 20.208914038782382, + "c5": 16.707376335378733, + "c6": -27.415198044092357, + "c7": 33.756599921062445 }, - "vertexSeeds": { - "c1": 11.338123429893882, - "c2": 11.538956237801408, - "c3": 11.201194994807807, - "c4": 11.553335948258594, - "c5": 11.492353319608918, - "c6": 11.493958830545775, - "c7": 11.773595869995871 + "offsets": { + "c1": 20.097087378640776, + "c2": 17.226074895977806, + "c3": 14.35506241331484, + "c4": 11.48404993065187, + "c5": 8.613037447988903, + "c6": 5.742024965325935, + "c7": 2.8710124826629677 }, "rgb": [222, 0, 59] }, @@ -276513,23 +276513,23 @@ "year": 1785, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 54.603813046509096, - "c2": -6.786183682624625, - "c3": -45.20836668867166, - "c4": -13.8360518517595, - "c5": 19.27004773478695, - "c6": -38.48093375637128, - "c7": -51.8560088023455 + "points": { + "c1": -34.18219799828324, + "c2": -0.6238296956916187, + "c3": 39.965150596368694, + "c4": 53.79445963775442, + "c5": 52.43656869409954, + "c6": 50.88362288012295, + "c7": 41.31773769454026 }, - "vertexSeeds": { - "c1": 6.7810880829015545, - "c2": 6.7810880829015545, - "c3": 6.7810880829015545, - "c4": 6.7810880829015545, - "c5": 6.7810880829015545, - "c6": 6.7810880829015545, - "c7": 6.7810880829015545 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -276540,23 +276540,23 @@ "year": 1785, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": 2.6886154941450826, - "c2": -38.47608188580071, - "c3": -10.4816731056901, - "c4": -38.981679322572674, - "c5": -30.74005380668069, - "c6": 40.37761929925545, - "c7": -12.882587419725738 + "points": { + "c1": 13.811525371207743, + "c2": 56.37827214154823, + "c3": -30.14089822836001, + "c4": -10.501417938745078, + "c5": 29.029913859630774, + "c6": 25.28275709785928, + "c7": 32.27838702158689 }, - "vertexSeeds": { - "c1": 8.227482594574738, - "c2": 7.672512928461398, - "c3": 7.406007379654939, - "c4": 8.05989473690643, - "c5": 8.175330017012842, - "c6": 7.8353023348802555, - "c7": 7.42781840815263 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094317, + "c3": 9.824318076745266, + "c4": 7.8594544613962, + "c5": 5.89459084604715, + "c6": 3.9297272306981, + "c7": 1.96486361534905 }, "rgb": [222, 0, 59] }, @@ -276567,23 +276567,23 @@ "year": 1785, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -48.18493857951916, - "c2": -43.343079930220455, - "c3": -4.694882882376774, - "c4": 34.95726962633573, - "c5": -26.725407875378107, - "c6": 45.59799252229314, - "c7": 42.98405554679968 + "points": { + "c1": -51.83752736015274, + "c2": 34.169906805115005, + "c3": 30.955063439600636, + "c4": -33.25405945302599, + "c5": -23.478379385264077, + "c6": -42.373929416577795, + "c7": 23.340301411499496 }, - "vertexSeeds": { - "c1": 5.832602591402034, - "c2": 5.913237025375858, - "c3": 5.988606104107941, - "c4": 5.777889290196529, - "c5": 5.9534784174108655, - "c6": 5.798151642570085, - "c7": 5.709431287448087 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830781, + "c3": 7.374017568192327, + "c4": 5.899214054553854, + "c5": 4.424410540915401, + "c6": 2.949607027276927, + "c7": 1.4748035136384738 }, "rgb": [86, 146, 138] }, @@ -276594,23 +276594,23 @@ "year": 1785, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 36.18946846050807, - "c2": 5.551111359745981, - "c3": -0.23805973396642344, - "c4": -36.51946168681305, - "c5": 32.05183653918071, - "c6": -32.25781005637858, - "c7": -23.3029263305851 + "points": { + "c1": 11.123731836942156, + "c2": -10.608781326287328, + "c3": -29.97544324433212, + "c4": 21.84224198112792, + "c5": 37.887281208770986, + "c6": -27.956615354822954, + "c7": 7.63663056433618 }, - "vertexSeeds": { - "c1": 4.32873615751969, - "c2": 4.210846334337038, - "c3": 4.0413853687881165, - "c4": 4.469297209585166, - "c5": 4.058060305826002, - "c6": 4.064410760190963, - "c7": 4.455461044483498 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309757, + "c4": 4.308830328247808, + "c5": 3.2316227461858507, + "c6": 2.1544151641239004, + "c7": 1.0772075820619502 }, "rgb": [222, 0, 59] }, @@ -276621,23 +276621,23 @@ "year": 1785, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 27.6945593683243, - "c2": 0.582561355586499, - "c3": -34.746573205116405, - "c4": 6.851212221018734, - "c5": -32.80731932501868, - "c6": 6.682545473249434, - "c7": -13.242092429108503 + "points": { + "c1": 16.5518512063962, + "c2": 27.20092490064504, + "c3": -48.80064611159793, + "c4": 16.807146098266948, + "c5": -48.57101994641165, + "c6": 53.09584773210026, + "c7": -51.10810080314778 }, - "vertexSeeds": { - "c1": 3.9584104878236968, - "c2": 3.937350004561627, - "c3": 3.9950416289658066, - "c4": 3.8635190961552928, - "c5": 3.9574043736207813, - "c6": 3.872962613689599, - "c7": 3.8555525765913345 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -276648,23 +276648,23 @@ "year": 1785, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 23.950429458425255, - "c2": -31.278468950369504, - "c3": 28.77761487400889, - "c4": 23.13601289271903, - "c5": -14.221599000477283, - "c6": -6.0818021279569265, - "c7": -25.173103246295845 + "points": { + "c1": 23.245006094831766, + "c2": -28.751191254188882, + "c3": 16.061319485069554, + "c4": -34.97565642833639, + "c5": 40.30139863042842, + "c6": 7.032484021885615, + "c7": 10.208836688820085 }, - "vertexSeeds": { - "c1": 10.467125408856523, - "c2": 10.04265350387376, - "c3": 10.771350327945898, - "c4": 9.997913993167248, - "c5": 10.483059573949348, - "c6": 10.62500800032733, - "c7": 10.428884863711357 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403624, + "c3": 12.875635691169665, + "c4": 10.30050855293575, + "c5": 7.72538141470179, + "c6": 5.150254276467875, + "c7": 2.5751271382339156 }, "rgb": [58, 15, 49] }, @@ -276675,23 +276675,23 @@ "year": 1784, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 9.458442020680074, - "c2": 6.188096258060561, - "c3": -6.247340275211897, - "c4": 5.019748272160811, - "c5": 13.442570612275773, - "c6": 21.578582980441453, - "c7": -23.384990271918518 + "points": { + "c1": -9.165613974032627, + "c2": 17.51578976843428, + "c3": 11.766551243893126, + "c4": -23.453706099528635, + "c5": 7.923669144638346, + "c6": -14.622445092294804, + "c7": 14.331349864515389 }, - "vertexSeeds": { - "c1": 9.998013413073215, - "c2": 10.034910176830119, - "c3": 10.143038437415635, - "c4": 10.75346841084407, - "c5": 10.185423712504123, - "c6": 10.801074490879765, - "c7": 10.366099507744329 + "offsets": { + "c1": 18.155339805825243, + "c2": 15.561719833564513, + "c3": 12.968099861303738, + "c4": 10.374479889043009, + "c5": 7.7808599167822345, + "c6": 5.1872399445215045, + "c7": 2.593619972260774 }, "rgb": [238, 201, 159] }, @@ -276702,23 +276702,23 @@ "year": 1785, "resistanceReported": false, "duration": 46483200, - "curveSeeds": { - "c1": -8.745757803475378, - "c2": -50.11781811685957, - "c3": -43.31689526350157, - "c4": -24.336380250351965, - "c5": -53.6212203544012, - "c6": 35.897492939652714, - "c7": -20.771801071077952 + "points": { + "c1": -59.08413307698941, + "c2": -9.839316768944457, + "c3": -29.311752435256444, + "c4": 54.898669627238554, + "c5": 24.629479730215984, + "c6": 9.021266617799348, + "c7": -53.510741196882584 }, - "vertexSeeds": { - "c1": 12.673850839276383, - "c2": 12.048338560516413, - "c3": 12.207635702275331, - "c4": 12.707311087182434, - "c5": 11.834814766017196, - "c6": 12.271610280541475, - "c7": 11.762750667634378 + "offsets": { + "c1": 21.22977346278317, + "c2": 18.19694868238559, + "c3": 15.164123901988008, + "c4": 12.131299121590375, + "c5": 9.098474341192794, + "c6": 6.065649560795213, + "c7": 3.0328247803976307 }, "rgb": [222, 0, 59] }, @@ -276729,23 +276729,23 @@ "year": 1785, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 16.462628302551643, - "c2": -36.23861691416343, - "c3": -16.77462182042, - "c4": -10.810830606833385, - "c5": -4.6460891377475235, - "c6": -8.914937572966124, - "c7": 19.07491080092131 + "points": { + "c1": 30.62704547841544, + "c2": -20.354273339992957, + "c3": 7.425637274453784, + "c4": 44.417407493483964, + "c5": -5.14610865178124, + "c6": -44.86991708344831, + "c7": 27.222560277073413 }, - "vertexSeeds": { - "c1": 17.672597784922566, - "c2": 17.242901869271954, - "c3": 16.372833792402, - "c4": 16.649516064491902, - "c5": 18.309727774628755, - "c6": 17.808412399739243, - "c7": 18.36910669121371 + "offsets": { + "c1": 31.2621359223301, + "c2": 26.796116504854364, + "c3": 22.330097087378636, + "c4": 17.8640776699029, + "c5": 13.398058252427196, + "c6": 8.932038834951465, + "c7": 4.466019417475732 }, "rgb": [222, 0, 59] }, @@ -276756,23 +276756,23 @@ "year": 1784, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 15.469355708518634, - "c2": -10.832103359424774, - "c3": -1.4909630493534962, - "c4": -6.631591179245607, - "c5": 6.614073905863997, - "c6": 1.3580228002625674, - "c7": -4.809292906554582 + "points": { + "c1": 26.677162726676386, + "c2": 14.603612895721234, + "c3": 32.407637553477116, + "c4": -19.187179684417572, + "c5": -20.46787376208808, + "c6": -0.04533977200265582, + "c7": -27.35789116866878 }, - "vertexSeeds": { - "c1": 3.031770536361211, - "c2": 3.036448668880637, - "c3": 3.042560185235448, - "c4": 2.9598031327278265, - "c5": 2.9536945722573114, - "c6": 3.1518166547817774, - "c7": 3.101879608907412 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.54923717059639, + "c3": 3.791030975497, + "c4": 3.0328247803975974, + "c5": 2.274618585298195, + "c6": 1.5164123901987925, + "c7": 0.7582061950994027 }, "rgb": [58, 15, 49] }, @@ -276783,23 +276783,23 @@ "year": 1785, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 43.41733371842566, - "c2": 22.788503840100937, - "c3": -23.954905596011706, - "c4": 1.1354717285281168, - "c5": -27.26537184456454, - "c6": 7.858185520765652, - "c7": -35.85904777082635 + "points": { + "c1": 0.40220399119475303, + "c2": -2.947325509477203, + "c3": 37.216579193691324, + "c4": 51.147922392427496, + "c5": 26.428153576790542, + "c6": -50.603357158522755, + "c7": 50.09036367973538 }, - "vertexSeeds": { - "c1": 10.428114964414656, - "c2": 10.291796849277196, - "c3": 10.50914094103332, - "c4": 10.378203947795313, - "c5": 10.306729294426676, - "c6": 10.93952535992671, - "c7": 10.13804498293526 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.08876560332872, + "c3": 13.407304669440578, + "c4": 10.725843735552468, + "c5": 8.04438280166436, + "c6": 5.362921867776218, + "c7": 2.681460933888109 }, "rgb": [77, 76, 132] }, @@ -276810,23 +276810,23 @@ "year": 1784, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -6.461532238523052, - "c2": -2.854743342886689, - "c3": 7.427369517251492, - "c4": -30.32745227923964, - "c5": -33.2446673777505, - "c6": 12.76205440217997, - "c7": -7.644532665214211 + "points": { + "c1": 33.52320483001206, + "c2": 13.019660801313663, + "c3": -34.55494869041867, + "c4": 29.21330371208751, + "c5": 29.80270740310459, + "c6": 29.78092468907944, + "c7": -25.114312273324295 }, - "vertexSeeds": { - "c1": 4.752249036186204, - "c2": 4.8050974897395635, - "c3": 4.750418824508182, - "c4": 4.710727674743197, - "c5": 4.761689887513664, - "c6": 4.829129801246095, - "c7": 4.721892320532328 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.96255201109571, + "c3": 5.802126675913074, + "c4": 4.641701340730464, + "c5": 3.481276005547855, + "c6": 2.3208506703652194, + "c7": 1.1604253351826097 }, "rgb": [238, 201, 159] }, @@ -276837,23 +276837,23 @@ "year": 1785, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 11.816570811052102, - "c2": -27.135655311496585, - "c3": -27.619107105718683, - "c4": -29.985051892441156, - "c5": 16.965152517597204, - "c6": 25.253968883744612, - "c7": 42.72066580848297 + "points": { + "c1": -3.138974396838492, + "c2": -36.7516108714665, + "c3": -23.158672407779072, + "c4": -25.274829373597353, + "c5": 3.5357749152080586, + "c6": 21.443127497555942, + "c7": -13.694325890316769 }, - "vertexSeeds": { - "c1": 9.650938957072851, - "c2": 10.51303737735417, - "c3": 10.267596760477787, - "c4": 10.066963923912756, - "c5": 10.41276625338161, - "c6": 9.680302671147345, - "c7": 10.478668904310402 + "offsets": { + "c1": 17.637540453074433, + "c2": 15.117891816920942, + "c3": 12.598243180767453, + "c4": 10.078594544613962, + "c5": 7.558945908460471, + "c6": 5.039297272306981, + "c7": 2.5196486361534904 }, "rgb": [77, 76, 132] }, @@ -276864,23 +276864,23 @@ "year": 1785, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -27.148290596417365, - "c2": 3.2302849009869092, - "c3": -10.754772441821167, - "c4": 15.547341658320889, - "c5": -24.203678643497234, - "c6": 7.172196028922244, - "c7": 16.677091990213363 + "points": { + "c1": 34.035960925654564, + "c2": -11.486880799341492, + "c3": 11.073800439546488, + "c4": 21.7197042159694, + "c5": 6.137818579249185, + "c6": 11.16206966848101, + "c7": 23.212239620865994 }, - "vertexSeeds": { - "c1": 4.849026824531955, - "c2": 4.99245695002208, - "c3": 4.923209793329283, - "c4": 4.756554256277115, - "c5": 5.033877867733029, - "c6": 4.888833844140292, - "c7": 4.89743619000057 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.2399445214979155, + "c3": 6.033287101248272, + "c4": 4.8266296809986144, + "c5": 3.6199722607489577, + "c6": 2.413314840499301, + "c7": 1.2066574202496567 }, "rgb": [238, 201, 159] }, @@ -276891,23 +276891,23 @@ "year": 1785, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 43.79710362210252, - "c2": -35.8548187390421, - "c3": 6.169552534800815, - "c4": -14.008957963307054, - "c5": -47.96555541674855, - "c6": 38.88661023784827, - "c7": -17.755903206692082 + "points": { + "c1": -49.646862535014066, + "c2": -22.11933619650776, + "c3": 41.580961992004866, + "c4": 11.201134922894944, + "c5": 4.063351004679085, + "c6": 52.085526083121785, + "c7": 31.788952144372097 }, - "vertexSeeds": { - "c1": 2.1260911926918813, - "c2": 2.1052499676057543, - "c3": 2.0801654519789547, - "c4": 1.940568840373732, - "c5": 2.155039838295745, - "c6": 2.219504642321189, - "c7": 2.197517689324625 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705966, + "c3": 2.704576976421637, + "c4": 2.1636615811373083, + "c5": 1.622746185852983, + "c6": 1.0818307905686573, + "c7": 0.5409153952843286 }, "rgb": [222, 0, 59] }, @@ -276918,23 +276918,23 @@ "year": 1784, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": -9.513656741888127, - "c2": -8.409191372212309, - "c3": -8.852602386865987, - "c4": 3.4622748407859056, - "c5": 11.424022989815587, - "c6": -5.485978486501024, - "c7": 0.028915243856715733 + "points": { + "c1": -14.992056858134783, + "c2": 15.870346719232234, + "c3": -14.528719336214355, + "c4": 13.159477895936295, + "c5": -12.746622061650413, + "c6": 3.2941121924782593, + "c7": -4.417889442051873 }, - "vertexSeeds": { - "c1": 3.030748412265079, - "c2": 2.9548479694310013, - "c3": 3.0154694864155984, - "c4": 3.1783642611473026, - "c5": 2.914562075105238, - "c6": 3.1678210615892186, - "c7": 3.1542339555708754 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [238, 201, 159] }, @@ -276945,23 +276945,23 @@ "year": 1785, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 29.5683527903566, - "c2": 6.5188450416235, - "c3": -39.22842252989492, - "c4": -13.418374567421623, - "c5": 28.96188176336733, - "c6": 17.77592574696991, - "c7": 16.259546338257934 + "points": { + "c1": -31.78424839434174, + "c2": 10.91822579645438, + "c3": 20.46683995587874, + "c4": 18.599128843356624, + "c5": -45.51245145269002, + "c6": -9.324346908583436, + "c7": 8.863994225952602 }, - "vertexSeeds": { - "c1": 7.25242405231374, - "c2": 7.297485166369098, - "c3": 7.308084217691371, - "c4": 7.443858726321662, - "c5": 7.2202412472529085, - "c6": 7.272592770538465, - "c7": 6.921085550196879 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -276972,23 +276972,23 @@ "year": 1785, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": -16.32066277943337, - "c2": 9.859564476478887, - "c3": 12.164099585680752, - "c4": -6.671636776250374, - "c5": -4.579128056176799, - "c6": -41.78543992271312, - "c7": 36.174465759924814 + "points": { + "c1": -46.92890200360714, + "c2": 48.51598017013538, + "c3": -5.977223914528061, + "c4": 8.66726154332303, + "c5": 4.886056571767426, + "c6": -2.034569101186186, + "c7": -11.903356489529692 }, - "vertexSeeds": { - "c1": 6.618187957980769, - "c2": 6.464061315672292, - "c3": 6.737412074832239, - "c4": 6.221060094881919, - "c5": 6.1658827970284165, - "c6": 6.131207493592686, - "c7": 6.2719951632790565 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [238, 201, 159] }, @@ -276999,23 +276999,23 @@ "year": 1784, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -18.253980265746396, - "c2": -20.506743071023884, - "c3": -11.879487820580701, - "c4": -17.367722463777618, - "c5": -4.563649672567706, - "c6": -11.209551088340424, - "c7": -14.46138498608544 + "points": { + "c1": -1.2241897948423777, + "c2": -19.061051964454983, + "c3": -18.353689535860802, + "c4": 15.27422448090146, + "c5": -21.23937330729104, + "c6": 19.717911828964418, + "c7": 20.927763920226788 }, - "vertexSeeds": { - "c1": 9.103909393745253, - "c2": 8.320199207704395, - "c3": 9.491339737904262, - "c4": 10.202796796252212, - "c5": 10.101550384253752, - "c6": 10.162713049810021, - "c7": 8.410852600219053 + "offsets": { + "c1": 17.89644012944984, + "c2": 15.339805825242719, + "c3": 12.7831715210356, + "c4": 10.22653721682848, + "c5": 7.669902912621359, + "c6": 5.11326860841424, + "c7": 2.55663430420712 }, "rgb": [238, 201, 159] }, @@ -277026,23 +277026,23 @@ "year": 1785, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 1.6865157739368115, - "c2": -21.563379300067506, - "c3": 40.95173910284652, - "c4": 30.931873521948205, - "c5": 25.194630184115127, - "c6": -12.382953660368187, - "c7": -6.844160019448026 + "points": { + "c1": -39.42782966615515, + "c2": 18.950681257914596, + "c3": -22.483290052665726, + "c4": 14.343093026224082, + "c5": -9.786851191953396, + "c6": -43.55945153148151, + "c7": -19.987159105803606 }, - "vertexSeeds": { - "c1": 4.171513540293837, - "c2": 4.249243456557602, - "c3": 4.3906698393021575, - "c4": 4.157764262036487, - "c5": 4.239352603214551, - "c6": 4.161774377453319, - "c7": 4.272644427553853 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.4355062413314785, + "c3": 5.3629218677762385, + "c4": 4.290337494220986, + "c5": 3.2177531206657455, + "c6": 2.145168747110493, + "c7": 1.0725843735552525 }, "rgb": [86, 146, 138] }, @@ -277053,23 +277053,23 @@ "year": 1785, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 20.165043556042235, - "c2": -6.884080165970431, - "c3": -45.290573389068754, - "c4": 2.78562546849669, - "c5": 40.942808418976085, - "c6": 1.7157722271233737, - "c7": -23.231572122036038 + "points": { + "c1": 3.2780939333482806, + "c2": -26.320731641818746, + "c3": -20.486052588370114, + "c4": -17.325167520119393, + "c5": 3.283507195952403, + "c6": -4.0566865919208155, + "c7": 53.08421219341443 }, - "vertexSeeds": { - "c1": 5.937492186578024, - "c2": 6.244835592519717, - "c3": 6.378735965278972, - "c4": 5.824307710339557, - "c5": 6.255184714011274, - "c6": 5.94691563435686, - "c7": 6.19599962508954 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [58, 15, 49] }, @@ -277080,23 +277080,23 @@ "year": 1784, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -6.221877030182561, - "c2": 21.506119999337052, - "c3": -23.309908730634685, - "c4": -6.83629149571777, - "c5": -11.476038433581074, - "c6": -6.766124822959309, - "c7": 6.284064357745876 + "points": { + "c1": 8.007867187920205, + "c2": -8.653324541220378, + "c3": -26.46848879081638, + "c4": 11.383092733452997, + "c5": 8.80199667974916, + "c6": -14.573696420145023, + "c7": 4.210396292048532 }, - "vertexSeeds": { - "c1": 11.596282211864517, - "c2": 11.753379177540634, - "c3": 12.004963042731799, - "c4": 11.84498375260978, - "c5": 11.760890413985122, - "c6": 12.301801396257153, - "c7": 11.547226199643047 + "offsets": { + "c1": 20.74433656957929, + "c2": 17.78085991678227, + "c3": 14.8173832639852, + "c4": 11.853906611188178, + "c5": 8.890429958391111, + "c6": 5.926953305594089, + "c7": 2.9634766527970227 }, "rgb": [86, 146, 138] }, @@ -277107,23 +277107,23 @@ "year": 1784, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 8.244768881854142, - "c2": -4.9793472439088475, - "c3": 2.364984399919827, - "c4": 13.060784473609175, - "c5": 13.741142790356975, - "c6": -17.150230483854237, - "c7": 21.67433103791899 + "points": { + "c1": 7.630017767057538, + "c2": 5.736319168395333, + "c3": 21.13580941350766, + "c4": 24.20391019674487, + "c5": 25.097333317829666, + "c6": -13.543483981768297, + "c7": 12.354372364338715 }, - "vertexSeeds": { - "c1": 10.263417804115887, - "c2": 10.628934592833843, - "c3": 9.976881652699081, - "c4": 10.482891735380436, - "c5": 10.225115395595388, - "c6": 10.00115119267232, - "c7": 10.635633279907845 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122058, + "c3": 12.713823393435055, + "c4": 10.171058714748053, + "c5": 7.628294036061051, + "c6": 5.085529357374005, + "c7": 2.5427646786870026 }, "rgb": [58, 15, 49] }, @@ -277134,23 +277134,23 @@ "year": 1785, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 26.779572131382764, - "c2": -8.63883701644474, - "c3": -16.82796375803959, - "c4": -8.70685889819271, - "c5": 28.647887782751, - "c6": -25.151656123687136, - "c7": 1.0008556734411513 + "points": { + "c1": 12.426834732978442, + "c2": 26.07823799382073, + "c3": -8.546582780304078, + "c4": -0.7153213817639354, + "c5": 3.9808641574947927, + "c6": 13.919579650963342, + "c7": 10.983117072903532 }, - "vertexSeeds": { - "c1": 5.655514582811911, - "c2": 5.60902893337576, - "c3": 5.586343243146697, - "c4": 5.554910976624835, - "c5": 5.552343472714064, - "c6": 5.441758446258934, - "c7": 5.420929650004095 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.18307905686547, + "c3": 6.819232547387878, + "c4": 5.455386037910306, + "c5": 4.091539528432735, + "c6": 2.727693018955164, + "c7": 1.3638465094775711 }, "rgb": [58, 15, 49] }, @@ -277161,23 +277161,23 @@ "year": 1785, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -39.752858673337066, - "c2": 20.036580739098767, - "c3": 39.51204953301391, - "c4": -3.9624072549100546, - "c5": -36.404257404720944, - "c6": -27.956175984433195, - "c7": -35.970300546732545 + "points": { + "c1": 17.28817350888339, + "c2": 40.42178279636116, + "c3": 7.517412564398526, + "c4": -6.967351796652352, + "c5": 13.489993410784024, + "c6": -31.051628288662315, + "c7": -24.992812852244505 }, - "vertexSeeds": { - "c1": 4.964422063803052, - "c2": 5.1153725769385945, - "c3": 4.942660209662166, - "c4": 5.055777559305134, - "c5": 4.960516065143923, - "c6": 5.191693232954414, - "c7": 5.231581205031742 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061029, + "c3": 6.356911696717527, + "c4": 5.085529357374027, + "c5": 3.8141470180305257, + "c6": 2.5427646786870026, + "c7": 1.2713823393435013 }, "rgb": [58, 15, 49] }, @@ -277188,23 +277188,23 @@ "year": 1784, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 3.8471114071743386, - "c2": -4.858963982532899, - "c3": 14.743209036282188, - "c4": 18.89165539757314, - "c5": 6.728281377635625, - "c6": -12.09998400426863, - "c7": -9.951730975056803 + "points": { + "c1": -10.428676928611587, + "c2": 2.9564532939344055, + "c3": -3.1802045648629793, + "c4": 6.142370041532651, + "c5": 12.231250599136345, + "c6": 16.74747036011715, + "c7": 21.178945617717076 }, - "vertexSeeds": { - "c1": 9.033120454555581, - "c2": 8.584635555529799, - "c3": 9.124621450883643, - "c4": 8.878037005381968, - "c5": 8.713004821260727, - "c6": 8.543144346409035, - "c7": 8.576109215050725 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984741, + "c3": 10.910772075820613, + "c4": 8.728617660656486, + "c5": 6.54646324549238, + "c6": 4.3643088303282545, + "c7": 2.1821544151641272 }, "rgb": [77, 76, 132] }, @@ -277215,23 +277215,23 @@ "year": 1785, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": -2.0341589849565693, - "c2": -37.889058630122776, - "c3": -27.48832743466303, - "c4": 29.42633879058173, - "c5": 47.09508076503547, - "c6": -6.414412727260405, - "c7": -10.264328935394502 + "points": { + "c1": 13.783460894225549, + "c2": -46.571663129349815, + "c3": -4.110146034224982, + "c4": -24.499509135506937, + "c5": -1.3040294016400154, + "c6": 3.4626422643592463, + "c7": 13.317729036610793 }, - "vertexSeeds": { - "c1": 4.030325204969478, - "c2": 3.97943336428606, - "c3": 3.974391697622323, - "c4": 3.910856635967939, - "c5": 3.954054854797846, - "c6": 4.133258156680722, - "c7": 4.220845248884464 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244145, + "c6": 2.03421174294961, + "c7": 1.017105871474805 }, "rgb": [58, 15, 49] }, @@ -277242,23 +277242,23 @@ "year": 1785, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": 35.69202416741045, - "c2": -40.384680181375685, - "c3": 0.3053740797302211, - "c4": -51.04738994229349, - "c5": 22.97299110616136, - "c6": 32.42373905240983, - "c7": -17.640221665411644 + "points": { + "c1": 16.914088996029292, + "c2": 37.30658848081893, + "c3": 25.318014464769377, + "c4": 20.972415463042537, + "c5": 43.56586037711244, + "c6": -49.38477625976877, + "c7": -42.33512422478115 }, - "vertexSeeds": { - "c1": 5.1529925086665065, - "c2": 5.190051812806331, - "c3": 5.069026791957652, - "c4": 5.268913712687851, - "c5": 5.036520471058539, - "c6": 5.080178929705245, - "c7": 5.04193333164093 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650477, + "c4": 5.048543689320385, + "c5": 3.786407766990294, + "c6": 2.5242718446601926, + "c7": 1.2621359223300914 }, "rgb": [86, 146, 138] }, @@ -277269,23 +277269,23 @@ "year": 1784, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -15.934175241514046, - "c2": 0.8248819847393136, - "c3": 1.8606832791352197, - "c4": 1.4125316074653043, - "c5": 22.318527244223088, - "c6": 15.863772529436009, - "c7": 1.2551573234238944 + "points": { + "c1": 18.264710104038304, + "c2": 21.800267799773362, + "c3": -24.108892849958497, + "c4": -26.938539806844133, + "c5": 5.85738298870076, + "c6": 4.428009528737274, + "c7": -16.145500771880975 }, - "vertexSeeds": { - "c1": 10.224708071515176, - "c2": 10.314496497312945, - "c3": 10.171687272663098, - "c4": 10.793490592325423, - "c5": 10.003737957775483, - "c6": 10.06646365366344, - "c7": 10.243191469481896 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403624, + "c3": 12.875635691169665, + "c4": 10.30050855293575, + "c5": 7.72538141470179, + "c6": 5.150254276467875, + "c7": 2.5751271382339156 }, "rgb": [86, 146, 138] }, @@ -277296,23 +277296,23 @@ "year": 1785, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -25.093418483794267, - "c2": -20.668908005975286, - "c3": -24.16561820139345, - "c4": 22.58993014836839, - "c5": 36.71712356443001, - "c6": -30.62819557685556, - "c7": -4.825798150173512 + "points": { + "c1": -39.15069903761309, + "c2": 27.858356003494123, + "c3": -27.559975105731738, + "c4": 16.913342698054656, + "c5": -33.19796319250249, + "c6": -13.822243462489652, + "c7": 20.732038901656104 }, - "vertexSeeds": { - "c1": 11.232343336355596, - "c2": 11.192878559165973, - "c3": 11.197569877611954, - "c4": 11.211390479966958, - "c5": 11.198946812913272, - "c6": 11.271602426290448, - "c7": 11.264409341035087 + "offsets": { + "c1": 18.867313915857604, + "c2": 16.171983356449346, + "c3": 13.476652797041085, + "c4": 10.781322237632823, + "c5": 8.08599167822478, + "c6": 5.39066111881652, + "c7": 2.69533055940826 }, "rgb": [77, 76, 132] }, @@ -277323,23 +277323,23 @@ "year": 1784, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -26.623261758827137, - "c2": 11.922257531601353, - "c3": 15.408730254737343, - "c4": 1.0199121542171667, - "c5": 5.186751560075578, - "c6": -18.805994660276042, - "c7": 24.69457743030904 + "points": { + "c1": -11.52005465505896, + "c2": -19.328486182823042, + "c3": 17.611452001428518, + "c4": -17.40738207382725, + "c5": -18.246290821781532, + "c6": -20.60929404593569, + "c7": -19.06414247559318 }, - "vertexSeeds": { - "c1": 2.8479705634248997, - "c2": 2.894974961596833, - "c3": 2.864495945241378, - "c4": 2.770612833637988, - "c5": 2.8211945884645373, - "c6": 2.7739337720673896, - "c7": 2.7466628416173733 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153952, + "c3": 3.536754507628291, + "c4": 2.829403606102631, + "c5": 2.1220527045769813, + "c6": 1.414701803051321, + "c7": 0.7073509015256605 }, "rgb": [238, 201, 159] }, @@ -277350,23 +277350,23 @@ "year": 1784, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -25.886815127136607, - "c2": 18.432666719794188, - "c3": -10.554144349460461, - "c4": -25.643311608496408, - "c5": 12.217015684778755, - "c6": -22.57481379705254, - "c7": 13.138518803500343 + "points": { + "c1": 14.349706000054365, + "c2": -17.277684623774594, + "c3": -0.8192003057609902, + "c4": 11.435565764914994, + "c5": -8.173553744256207, + "c6": -7.439899894804487, + "c7": -28.257455321381464 }, - "vertexSeeds": { - "c1": 4.891645182008458, - "c2": 4.790455120026032, - "c3": 5.018108336196825, - "c4": 4.887208156267801, - "c5": 5.061476192155364, - "c6": 4.76863650187864, - "c7": 4.863480355911826 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538139, + "c3": 6.056403143781778, + "c4": 4.84512251502543, + "c5": 3.6338418862690696, + "c6": 2.4225612575127213, + "c7": 1.2112806287563607 }, "rgb": [58, 15, 49] }, @@ -277377,23 +277377,23 @@ "year": 1787, "resistanceReported": false, "duration": 92793600, - "curveSeeds": { - "c1": -19.568155729516988, - "c2": -49.444259714460415, - "c3": 40.43371488013699, - "c4": 47.5951637741403, - "c5": 84.66018102785577, - "c6": -76.36800833852493, - "c7": -53.65055993197204 + "points": { + "c1": 83.15371010653806, + "c2": -50.63394231507691, + "c3": -106.83068742595765, + "c4": -42.08768154170858, + "c5": -54.84261274208236, + "c6": 102.94943968249876, + "c7": -68.83565315489244 }, - "vertexSeeds": { - "c1": 2.6531863155113395, - "c2": 2.791977831216171, - "c3": 2.7904845383698738, - "c4": 2.6659672161441303, - "c5": 2.5791500342620406, - "c6": 2.5327430837354243, - "c7": 3.006768719701965 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877949, + "c3": 3.952843273231622, + "c4": 3.1622746185852986, + "c5": 2.3717059639389753, + "c6": 1.5811373092926484, + "c7": 0.790568654646325 }, "rgb": [222, 0, 59] }, @@ -277404,23 +277404,23 @@ "year": 1784, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -3.485943904203559, - "c2": -3.4457979572791793, - "c3": 1.9846487601197147, - "c4": -12.2703276893441, - "c5": -9.086272775430242, - "c6": 18.232595801894718, - "c7": 0.6135186920489524 + "points": { + "c1": 7.78818316821458, + "c2": 7.344700225242576, + "c3": -12.65582859265768, + "c4": 9.169623524350435, + "c5": 14.766579943764803, + "c6": 26.21147197341937, + "c7": 0.5694002368521183 }, - "vertexSeeds": { - "c1": 6.773838405754229, - "c2": 6.590946984772338, - "c3": 7.059273308138648, - "c4": 6.761677072672581, - "c5": 6.8259874951210335, - "c6": 6.877153351924431, - "c7": 6.641807160461955 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922324, + "c3": 8.576051779935284, + "c4": 6.860841423948224, + "c5": 5.145631067961162, + "c6": 3.4304207119741004, + "c7": 1.7152103559870613 }, "rgb": [58, 15, 49] }, @@ -277431,23 +277431,23 @@ "year": 1785, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -6.4709265109554295, - "c2": -43.02971282656787, - "c3": -11.023231791946145, - "c4": 31.58332710476713, - "c5": -35.88152828414338, - "c6": -36.945321238884745, - "c7": 39.86028313514115 + "points": { + "c1": -2.09318234041951, + "c2": -9.802936408901573, + "c3": -14.862196856405117, + "c4": 23.742483884777066, + "c5": 11.904010142907815, + "c6": 22.732606774658358, + "c7": -6.579710733845481 }, - "vertexSeeds": { - "c1": 8.583009884794595, - "c2": 8.64302055701277, - "c3": 8.709542025979035, - "c4": 8.607286567125849, - "c5": 8.58407687290674, - "c6": 8.626908047955844, - "c7": 8.673051390517283 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099817, + "c3": 10.402219140083231, + "c4": 8.321775312066544, + "c5": 6.24133148404996, + "c6": 4.160887656033272, + "c7": 2.0804438280165845 }, "rgb": [238, 201, 159] }, @@ -277458,23 +277458,23 @@ "year": 1785, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 47.38736406430278, - "c2": -20.940298646275423, - "c3": -40.28303710787118, - "c4": 0.6611550923232556, - "c5": -31.18286594235432, - "c6": 16.43914098057676, - "c7": -24.582428676090164 + "points": { + "c1": -42.243729386884226, + "c2": 28.367349387360257, + "c3": -8.925572140066187, + "c4": 52.673168719118046, + "c5": -33.59665369605929, + "c6": -38.636620319438066, + "c7": -10.107567821130871 }, - "vertexSeeds": { - "c1": 2.374996425456495, - "c2": 2.4197382844040587, - "c3": 2.4185101597234944, - "c4": 2.308438716425082, - "c5": 2.3877445400779704, - "c6": 2.4392261416666656, - "c7": 2.3438460553412828 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228846, + "c3": 3.0050855293573733, + "c4": 2.4040684234859007, + "c5": 1.803051317614423, + "c6": 1.2020342117429503, + "c7": 0.6010171058714777 }, "rgb": [238, 201, 159] }, @@ -277485,23 +277485,23 @@ "year": 1785, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 32.960077887952636, - "c2": -34.09706639209378, - "c3": 6.781899282241206, - "c4": -32.16992821148187, - "c5": -35.5785188421723, - "c6": 14.059784656407388, - "c7": -32.55035887918234 + "points": { + "c1": 7.371283575456722, + "c2": -10.832645319453178, + "c3": -13.517455511417864, + "c4": -37.025918363239356, + "c5": 12.642444052728877, + "c6": 20.878468242879933, + "c7": -16.275370676654788 }, - "vertexSeeds": { - "c1": 5.901767800119201, - "c2": 5.941873032105102, - "c3": 5.8993160762242605, - "c4": 5.869546218971408, - "c5": 6.001245372632152, - "c6": 5.833536800450055, - "c7": 5.907342801202811 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066558, + "c3": 6.934812760055502, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022223, + "c7": 1.3869625520111115 }, "rgb": [222, 0, 59] }, @@ -277512,23 +277512,23 @@ "year": 1785, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -29.639738224477536, - "c2": -2.5869379501405767, - "c3": -0.6789026501914677, - "c4": 18.37356948073827, - "c5": -9.65291312696402, - "c6": -7.690830139438507, - "c7": -26.43201636430615 + "points": { + "c1": 12.774176453619262, + "c2": -27.502606185055885, + "c3": 7.630274476173426, + "c4": -26.222302063344635, + "c5": 32.24053191951221, + "c6": -27.568838094941672, + "c7": -0.18461621908214454 }, - "vertexSeeds": { - "c1": 6.161161935144324, - "c2": 6.363184025691397, - "c3": 6.207492540880621, - "c4": 6.4442078381971015, - "c5": 6.150993732329581, - "c6": 6.124604047013552, - "c7": 6.197766454276766 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554784, + "c3": 7.790106333795654, + "c4": 6.232085067036523, + "c5": 4.674063800277392, + "c6": 3.1160425335182613, + "c7": 1.5580212667591307 }, "rgb": [77, 76, 132] }, @@ -277539,23 +277539,23 @@ "year": 1785, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 2.643915281263258, - "c2": -19.547165489309407, - "c3": 18.824890539554058, - "c4": 21.465256046836654, - "c5": 25.85129706656002, - "c6": -3.1711437147046944, - "c7": 13.764337239942034 + "points": { + "c1": 27.112938061603334, + "c2": -4.739193638427292, + "c3": 17.132931665396594, + "c4": 26.57231305494931, + "c5": 9.95393586383521, + "c6": 0.9046281204459028, + "c7": -23.934079861108216 }, - "vertexSeeds": { - "c1": 9.770419891576324, - "c2": 9.07348276169107, - "c3": 9.109817806567658, - "c4": 9.616585690755022, - "c5": 9.531403178909395, - "c6": 9.738200480517756, - "c7": 9.570267452721405 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513168, + "c3": 11.789181692094319, + "c4": 9.431345353675445, + "c5": 7.073509015256595, + "c6": 4.715672676837722, + "c7": 2.3578363384188505 }, "rgb": [222, 0, 59] }, @@ -277566,23 +277566,23 @@ "year": 1784, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 15.036595520995476, - "c2": 16.004484289240366, - "c3": -20.266066704863434, - "c4": 27.273527528077146, - "c5": 1.666226014609645, - "c6": -10.104165257539666, - "c7": 18.121183437671206 + "points": { + "c1": -10.353971657375794, + "c2": -10.577512273048828, + "c3": -29.935271927127932, + "c4": -10.808509128064856, + "c5": 17.08176735319187, + "c6": 4.327434913915049, + "c7": -18.711089444819308 }, - "vertexSeeds": { - "c1": 7.428170930296331, - "c2": 7.422258678597233, - "c3": 7.234938990459576, - "c4": 7.394551076197487, - "c5": 7.422736655175391, - "c6": 7.634572831008014, - "c7": 7.392157258336485 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249662, + "c3": 9.338881183541375, + "c4": 7.471104946833109, + "c5": 5.603328710124821, + "c6": 3.7355524734165546, + "c7": 1.867776236708266 }, "rgb": [77, 76, 132] }, @@ -277593,23 +277593,23 @@ "year": 1785, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -8.494517952819322, - "c2": 15.609656548619334, - "c3": 18.918218839292635, - "c4": 18.77989204731398, - "c5": 6.256301660179481, - "c6": 24.759571878130778, - "c7": -30.41977124044903 + "points": { + "c1": -13.646060776998397, + "c2": -2.351988612188503, + "c3": -6.038099573124924, + "c4": 12.242202785861892, + "c5": 13.819909573553105, + "c6": -18.251409423481636, + "c7": 30.182160890887126 }, - "vertexSeeds": { - "c1": 9.328868383874918, - "c2": 8.709416034476108, - "c3": 8.716341225562884, - "c4": 9.19433030373791, - "c5": 8.771961050175467, - "c6": 9.183654117818717, - "c7": 8.49122173754741 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467415, + "c3": 11.188164586222834, + "c4": 8.950531668978275, + "c5": 6.7128987517336975, + "c6": 4.475265834489138, + "c7": 2.23763291724456 }, "rgb": [238, 201, 159] }, @@ -277620,23 +277620,23 @@ "year": 1784, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 0.29161203801410807, - "c2": -19.677627199197335, - "c3": -6.290532904055926, - "c4": -8.336118341369673, - "c5": 21.386485388172087, - "c6": 12.780258510163844, - "c7": -2.9943441692526918 + "points": { + "c1": 23.156570767429027, + "c2": 21.812894263001947, + "c3": -4.559008044484074, + "c4": -9.912809102086342, + "c5": -19.31325775111517, + "c6": 23.423623526855277, + "c7": -11.249507618232515 }, - "vertexSeeds": { - "c1": 8.746151835796933, - "c2": 9.130496380802962, - "c3": 8.791148821335451, - "c4": 8.813172303062121, - "c5": 8.967260791554645, - "c6": 9.149496687057985, - "c7": 9.13851978836013 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708735, + "c3": 11.32686084142394, + "c4": 9.061488673139149, + "c5": 6.796116504854356, + "c6": 4.530744336569586, + "c7": 2.265372168284793 }, "rgb": [222, 0, 59] }, @@ -277647,23 +277647,23 @@ "year": 1784, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 15.682051261676541, - "c2": -14.085276623307626, - "c3": 23.285200780735437, - "c4": 5.869579184719953, - "c5": 22.364039761206193, - "c6": -18.95025943207824, - "c7": 9.046336055335715 + "points": { + "c1": -5.01948480398875, + "c2": 19.050272797915426, + "c3": -15.575675343749287, + "c4": 26.46454031830026, + "c5": -17.634476327804784, + "c6": -18.64615461026762, + "c7": 25.126841831439968 }, - "vertexSeeds": { - "c1": 7.774811857497633, - "c2": 7.8970425442644565, - "c3": 7.913523414684714, - "c4": 8.004300051178875, - "c5": 7.412324065854292, - "c6": 7.97006969541252, - "c7": 7.725448958685005 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410078, + "c4": 7.6745261211280615, + "c5": 5.7558945908460455, + "c6": 3.8372630605640308, + "c7": 1.9186315302820154 }, "rgb": [222, 0, 59] }, @@ -277674,23 +277674,23 @@ "year": 1785, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -28.764755620143475, - "c2": 0.07271484866576827, - "c3": -3.53642506841895, - "c4": 24.63752866896904, - "c5": 5.37435437182161, - "c6": 17.009074092887367, - "c7": 26.36708475827085 + "points": { + "c1": 10.925609192250178, + "c2": 22.921020942839547, + "c3": 27.424342651322256, + "c4": -22.712345700054428, + "c5": -29.76246177280875, + "c6": -4.644265486255492, + "c7": -5.162331386295957 }, - "vertexSeeds": { - "c1": 10.459521130849545, - "c2": 9.623076709137539, - "c3": 10.873449921355771, - "c4": 10.126863916374521, - "c5": 9.354328826546565, - "c6": 10.478515309432863, - "c7": 10.33555197372125 + "offsets": { + "c1": 18.155339805825243, + "c2": 15.56171983356449, + "c3": 12.968099861303736, + "c4": 10.37447988904301, + "c5": 7.780859916782258, + "c6": 5.187239944521505, + "c7": 2.5936199722607527 }, "rgb": [238, 201, 159] }, @@ -277701,23 +277701,23 @@ "year": 1784, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -5.568372869023406, - "c2": -8.28197004583788, - "c3": -6.838996605197199, - "c4": -7.862190691288529, - "c5": 21.505066575858173, - "c6": 15.232752138627994, - "c7": 6.924914633996764 + "points": { + "c1": -20.23465356535963, + "c2": -5.958194952589988, + "c3": -5.237628264269901, + "c4": 3.406983361224455, + "c5": -1.352854045771565, + "c6": 10.514891455534325, + "c7": -9.756006651196511 }, - "vertexSeeds": { - "c1": 2.905434462618687, - "c2": 3.1646619309628936, - "c3": 3.2498025825164416, - "c4": 2.9860168247199326, - "c5": 3.0399954649935816, - "c6": 3.0856497861624126, - "c7": 3.0027936214103144 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -277728,23 +277728,23 @@ "year": 1785, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 26.812673648081102, - "c2": 20.384550986708632, - "c3": 30.14308989211372, - "c4": 41.977308040181754, - "c5": -14.632910065162058, - "c6": 20.320694610434927, - "c7": -16.400921182777452 + "points": { + "c1": 28.250141205399473, + "c2": -30.96960870618389, + "c3": -12.01331265326531, + "c4": -29.098182457471946, + "c5": -4.004027943872998, + "c6": -24.264277201692263, + "c7": -34.38507836333753 }, - "vertexSeeds": { - "c1": 5.254572765272159, - "c2": 5.6016124252258415, - "c3": 5.572858319787565, - "c4": 5.287019402608073, - "c5": 6.058595070252447, - "c6": 6.002598714869565, - "c7": 5.830843163810652 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [222, 0, 59] }, @@ -277755,23 +277755,23 @@ "year": 1785, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 26.400638749800848, - "c2": 15.401010079716258, - "c3": 21.51448741579155, - "c4": -16.086956741340213, - "c5": 1.1284866751221045, - "c6": -6.8613363047896065, - "c7": -11.090860301154052 + "points": { + "c1": -20.294945911663604, + "c2": 19.898984515885203, + "c3": -15.432674418907627, + "c4": -19.146005817164973, + "c5": -9.061187793443768, + "c6": 0.25247944581363413, + "c7": 31.037347549224762 }, - "vertexSeeds": { - "c1": 9.031043628469169, - "c2": 8.946559646189884, - "c3": 9.033080739303582, - "c4": 9.477260933140872, - "c5": 9.37899715334504, - "c6": 9.176771193010241, - "c7": 9.148299651350479 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668526, + "c3": 11.303744798890428, + "c4": 9.04299583911235, + "c5": 6.782246879334252, + "c6": 4.521497919556175, + "c7": 2.2607489597780988 }, "rgb": [58, 15, 49] }, @@ -277782,23 +277782,23 @@ "year": 1784, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": -16.59628164777684, - "c2": 5.810627084818012, - "c3": 22.425466153839807, - "c4": 10.679886974896554, - "c5": 9.269000649804504, - "c6": -20.996502235404137, - "c7": -11.46446073724391 + "points": { + "c1": -2.3390017890869608, + "c2": -20.542741367835205, + "c3": 6.462149012197827, + "c4": -0.22374014457367863, + "c5": -20.87227577284954, + "c6": 17.006545803979563, + "c7": 20.200200146450527 }, - "vertexSeeds": { - "c1": 14.493375775625179, - "c2": 13.826308582552736, - "c3": 14.583842448331483, - "c4": 14.461434267967805, - "c5": 13.898639155222911, - "c6": 14.473185064377496, - "c7": 13.692141603036719 + "offsets": { + "c1": 24.660194174757283, + "c2": 21.137309292649114, + "c3": 17.6144244105409, + "c4": 14.091539528432726, + "c5": 10.568654646324557, + "c6": 7.045769764216342, + "c7": 3.522884882108171 }, "rgb": [86, 146, 138] }, @@ -277809,23 +277809,23 @@ "year": 1785, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -44.11880933402563, - "c2": -43.99894184185717, - "c3": -41.78701236411735, - "c4": -11.691376356983284, - "c5": 19.572387726277434, - "c6": -9.277245319166553, - "c7": 15.297731758649029 + "points": { + "c1": 21.968647740370976, + "c2": 40.36470942964453, + "c3": 5.946997207257972, + "c4": 9.786828004555758, + "c5": -1.5643048786739868, + "c6": 8.789017166441454, + "c7": -38.242585968465804 }, - "vertexSeeds": { - "c1": 9.089519258436983, - "c2": 8.45836457150344, - "c3": 10.454403337828474, - "c4": 8.632953585588067, - "c5": 9.052882459753034, - "c6": 10.167810078607332, - "c7": 8.655782609651794 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133145, + "c3": 13.869625520110953, + "c4": 11.09570041608876, + "c5": 8.321775312066572, + "c6": 5.54785020804438, + "c7": 2.773925104022187 }, "rgb": [238, 201, 159] }, @@ -277836,23 +277836,23 @@ "year": 1785, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -20.863491141522786, - "c2": -27.71515585228835, - "c3": -6.000671485489573, - "c4": -2.973023035090815, - "c5": 25.93456129403114, - "c6": -16.384644641070317, - "c7": -13.16505070471304 + "points": { + "c1": -11.458704616513984, + "c2": 12.334226919002582, + "c3": 4.389346530017811, + "c4": -0.6887340987072186, + "c5": -2.932152436417855, + "c6": 23.55367013264282, + "c7": 12.78635307776161 }, - "vertexSeeds": { - "c1": 12.121549860850891, - "c2": 11.635046386114192, - "c3": 11.9289112651824, - "c4": 11.827575124386117, - "c5": 11.837111486685105, - "c6": 11.602027100317562, - "c7": 11.79171362718991 + "offsets": { + "c1": 20.42071197411003, + "c2": 17.503467406380032, + "c3": 14.586222838650034, + "c4": 11.668978270919991, + "c5": 8.751733703189995, + "c6": 5.834489135459996, + "c7": 2.917244567729998 }, "rgb": [238, 201, 159] }, @@ -277863,23 +277863,23 @@ "year": 1784, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -8.971417938119918, - "c2": -0.34710783270171675, - "c3": -7.383212130749882, - "c4": 7.415142321336923, - "c5": -20.258262733489858, - "c6": 1.4917739708993025, - "c7": 24.047130140824493 + "points": { + "c1": 5.8902416566058875, + "c2": -3.5132886134378367, + "c3": -10.543403073859151, + "c4": -1.568370515428306, + "c5": 17.696338775930492, + "c6": 17.156477241478697, + "c7": 14.364076585440365 }, - "vertexSeeds": { - "c1": 4.251762084499255, - "c2": 4.247718445301201, - "c3": 4.094375511009355, - "c4": 4.171271870741856, - "c5": 4.171610491058926, - "c6": 4.222766115534566, - "c7": 4.225808775634893 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130372, + "c3": 5.247341655108639, + "c4": 4.197873324086918, + "c5": 3.148404993065186, + "c6": 2.0989366620434535, + "c7": 1.0494683310217212 }, "rgb": [86, 146, 138] }, @@ -277890,23 +277890,23 @@ "year": 1785, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 10.257679144489025, - "c2": 9.457023580017456, - "c3": -1.5020606609482599, - "c4": -23.367586830063438, - "c5": -21.60907670634333, - "c6": 22.32790845755776, - "c7": 2.684041208403265 + "points": { + "c1": 28.434454476260214, + "c2": 5.737808252428373, + "c3": 27.349400904983383, + "c4": 2.37863069420888, + "c5": -1.8981573460268173, + "c6": -16.313909624423133, + "c7": -9.208155431545773 }, - "vertexSeeds": { - "c1": 5.484405298291181, - "c2": 5.935443987157842, - "c3": 5.7955418661807485, - "c4": 5.176300725813359, - "c5": 5.772898681656992, - "c6": 5.720488615394617, - "c7": 5.682054598556781 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [222, 0, 59] }, @@ -277917,23 +277917,23 @@ "year": 1785, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -25.787511195687667, - "c2": -6.549746583067336, - "c3": 1.4096924438172707, - "c4": 23.659413181895996, - "c5": -22.624043184567697, - "c6": 13.221817271559406, - "c7": 13.64714594425789 + "points": { + "c1": 20.55508135392179, + "c2": 30.926572560918213, + "c3": 18.865866697787016, + "c4": 23.780845734673203, + "c5": 14.6075834702356, + "c6": 7.364350559609999, + "c7": 20.06419995324222 }, - "vertexSeeds": { - "c1": 4.605804172811957, - "c2": 4.514317364701556, - "c3": 4.645566123766105, - "c4": 4.468580660175393, - "c5": 4.442012148943707, - "c6": 4.654969019064651, - "c7": 4.438078145488534 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854363, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271883, + "c6": 2.2653721682847876, + "c7": 1.1326860841424002 }, "rgb": [77, 76, 132] }, @@ -277944,23 +277944,23 @@ "year": 1785, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -4.265738706742006, - "c2": 15.127699263902677, - "c3": 6.2177810580593444, - "c4": -28.025317460289884, - "c5": 1.3023169993801602, - "c6": 30.164517989645333, - "c7": 39.758148332343765 + "points": { + "c1": -34.22407550301047, + "c2": -39.717738015579066, + "c3": -34.79413079043557, + "c4": 4.036290682838349, + "c5": 10.575909485985015, + "c6": 25.780214515385097, + "c7": -36.32501297953464 }, - "vertexSeeds": { - "c1": 6.218853766623345, - "c2": 6.096008310350839, - "c3": 6.154939638548837, - "c4": 6.251041191312986, - "c5": 6.2684622459555275, - "c6": 6.207997726034306, - "c7": 6.416083848839895 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675445, + "c3": 7.859454461396218, + "c4": 6.28756356911697, + "c5": 4.715672676837722, + "c6": 3.143781784558475, + "c7": 1.5718908922792474 }, "rgb": [58, 15, 49] }, @@ -277971,23 +277971,23 @@ "year": 1785, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 21.76734552507309, - "c2": 24.426046287615414, - "c3": -15.584471049900278, - "c4": 2.765282424681086, - "c5": 28.751433504892823, - "c6": 12.109200547857029, - "c7": 25.726314519814593 + "points": { + "c1": -18.07712345263189, + "c2": -13.075282064924657, + "c3": 23.510777356099524, + "c4": 13.953529149210802, + "c5": -17.197897963294526, + "c6": 25.059521059146938, + "c7": -23.13778798236895 }, - "vertexSeeds": { - "c1": 10.260366972649779, - "c2": 9.780973276709453, - "c3": 9.847106611588673, - "c4": 10.133258338598342, - "c5": 9.593343325046616, - "c6": 10.057475093075952, - "c7": 9.844839597140739 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679605, + "c3": 12.45954692556633, + "c4": 9.967637540453056, + "c5": 7.47572815533978, + "c6": 4.983818770226528, + "c7": 2.4919093851132748 }, "rgb": [238, 201, 159] }, @@ -277998,23 +277998,23 @@ "year": 1784, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": 19.21320132828183, - "c2": 15.632521358558687, - "c3": 5.793571803523768, - "c4": 2.028553849280758, - "c5": -18.20113675497637, - "c6": -1.2441064597367806, - "c7": 10.95690710768427 + "points": { + "c1": 14.446114521957416, + "c2": 3.2458648846399605, + "c3": -9.230089024492335, + "c4": -5.497572411243901, + "c5": 22.14728545852439, + "c6": -22.408977725009283, + "c7": -9.605679777742987 }, - "vertexSeeds": { - "c1": 4.299872036305354, - "c2": 4.299669876437746, - "c3": 4.408993593444848, - "c4": 4.199782324664331, - "c5": 4.328198533577523, - "c6": 4.416532178688087, - "c7": 4.458656254306967 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331489, + "c3": 5.362921867776235, + "c4": 4.290337494220993, + "c5": 3.2177531206657384, + "c6": 2.1451687471104965, + "c7": 1.0725843735552545 }, "rgb": [86, 146, 138] }, @@ -278025,23 +278025,23 @@ "year": 1785, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 10.327034689717884, - "c2": 3.6705373486285424, - "c3": -4.023676924993914, - "c4": -24.073377357814017, - "c5": -8.003031639806125, - "c6": 30.359610947272337, - "c7": -24.804199580918272 + "points": { + "c1": 2.365314208105545, + "c2": -19.753402473716598, + "c3": -2.9216031597545253, + "c4": -36.26630633692932, + "c5": 5.483071732573606, + "c6": -45.787010298062114, + "c7": 40.63004785561184 }, - "vertexSeeds": { - "c1": 6.530505468594759, - "c2": 6.143819154246812, - "c3": 6.356701640768961, - "c4": 6.211603379651417, - "c5": 6.48219913084691, - "c6": 6.3433186841444025, - "c7": 6.111313826390702 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836329, + "c3": 7.951918631530284, + "c4": 6.361534905224219, + "c5": 4.771151178918175, + "c6": 3.1807674526121095, + "c7": 1.5903837263060658 }, "rgb": [86, 146, 138] }, @@ -278052,23 +278052,23 @@ "year": 1785, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 30.825101859596856, - "c2": -20.358299469765516, - "c3": -25.074602841316686, - "c4": -19.67782578791094, - "c5": 25.436002855588868, - "c6": -3.9536022285606194, - "c7": -13.340180996251117 + "points": { + "c1": -2.3155690130432873, + "c2": -19.25957864797962, + "c3": -3.8370557687527977, + "c4": 25.27709958177364, + "c5": 17.468325696420493, + "c6": 22.75217522406612, + "c7": -16.728802369169887 }, - "vertexSeeds": { - "c1": 9.234561516071587, - "c2": 9.778711278216353, - "c3": 5.793672605247287, - "c4": 5.801697415173258, - "c5": 9.565031193715445, - "c6": 7.742925652254184, - "c7": 6.909841485130551 + "offsets": { + "c1": 16.601941747572816, + "c2": 14.230235783633843, + "c3": 11.858529819694867, + "c4": 9.486823855755894, + "c5": 7.115117891816921, + "c6": 4.743411927877945, + "c7": 2.3717059639389726 }, "rgb": [222, 0, 59] }, @@ -278079,23 +278079,23 @@ "year": 1784, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": 0.16172068654594796, - "c2": -4.267480699008644, - "c3": 16.9572871528772, - "c4": 12.061926226319443, - "c5": 20.725601875370657, - "c6": 14.939473457476296, - "c7": 10.380156373453254 + "points": { + "c1": -19.866019285844434, + "c2": 19.936143589033236, + "c3": 8.471917131625702, + "c4": -15.574071381644298, + "c5": -4.834125166679822, + "c6": -7.839172250566861, + "c7": -19.867584137927576 }, - "vertexSeeds": { - "c1": 11.246993238919316, - "c2": 12.000208287954033, - "c3": 12.196549810251659, - "c4": 11.129740953680091, - "c5": 10.441223122859094, - "c6": 11.356894718321968, - "c7": 11.250240572885403 + "offsets": { + "c1": 20.841423948220065, + "c2": 17.86407766990291, + "c3": 14.886731391585753, + "c4": 11.90938511326862, + "c5": 8.932038834951465, + "c6": 5.95469255663431, + "c7": 2.977346278317155 }, "rgb": [77, 76, 132] }, @@ -278106,23 +278106,23 @@ "year": 1785, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 19.373959947075353, - "c2": -26.85809015930299, - "c3": 18.912695088668446, - "c4": 28.328358227597068, - "c5": 20.287389110368846, - "c6": 19.454688988056336, - "c7": 6.2508431593909854 + "points": { + "c1": -21.608973985786108, + "c2": 21.219278855983198, + "c3": -9.456616304586198, + "c4": 1.4354433112452725, + "c5": -20.136691429987273, + "c6": -25.888629064721663, + "c7": 24.23186982603397 }, - "vertexSeeds": { - "c1": 4.907361975129984, - "c2": 5.1953225649919546, - "c3": 4.998082690578567, - "c4": 5.133279559773342, - "c5": 5.112531720517139, - "c6": 5.038482609069109, - "c7": 5.128607605063543 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251046, + "c4": 5.1040221914008415, + "c5": 3.8280166435506366, + "c6": 2.55201109570041, + "c7": 1.276005547850205 }, "rgb": [222, 0, 59] }, @@ -278133,23 +278133,23 @@ "year": 1785, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -25.35101476574493, - "c2": 10.842687098355483, - "c3": 3.2263050265306283, - "c4": -16.948376195592765, - "c5": -24.312522197196497, - "c6": -2.39333002908041, - "c7": 1.444282459863281 + "points": { + "c1": -6.670702868060868, + "c2": 21.96862521930374, + "c3": 25.520422835205565, + "c4": 12.334863176475722, + "c5": -18.59104013149075, + "c6": 16.957317464107703, + "c7": -20.00877106245708 }, - "vertexSeeds": { - "c1": 3.9844215598413744, - "c2": 3.943457459306128, - "c3": 4.042326620414128, - "c4": 4.1633140967786115, - "c5": 3.8727838039942126, - "c6": 3.7818509292347833, - "c7": 4.0251442253711565 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [58, 15, 49] }, @@ -278160,23 +278160,23 @@ "year": 1785, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -10.274861267996275, - "c2": -18.214310003211196, - "c3": -17.7713973281074, - "c4": -29.546538415735668, - "c5": 20.21740739600436, - "c6": 22.00169165354756, - "c7": 21.40323696091228 + "points": { + "c1": 34.35077644468922, + "c2": 32.074048239427086, + "c3": 25.738394730795186, + "c4": -33.595686032300364, + "c5": -13.780541679208465, + "c6": -28.867081864271825, + "c7": -8.64782557147252 }, - "vertexSeeds": { - "c1": 11.437506786126619, - "c2": 10.887193454097515, - "c3": 10.658384318098218, - "c4": 11.12181568652994, - "c5": 10.6421639247201, - "c6": 10.993347074790275, - "c7": 11.093320961279398 + "offsets": { + "c1": 19.19093851132686, + "c2": 16.4493758668516, + "c3": 13.70781322237634, + "c4": 10.96625057790108, + "c5": 8.224687933425779, + "c6": 5.483125288950519, + "c7": 2.7415626444752594 }, "rgb": [86, 146, 138] }, @@ -278187,23 +278187,23 @@ "year": 1785, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -33.691538196669185, - "c2": -6.95408244898271, - "c3": 39.7204896422735, - "c4": 13.73724289270286, - "c5": -20.693252654864857, - "c6": -18.640416458419438, - "c7": 35.19746182932699 + "points": { + "c1": 20.412393450792784, + "c2": -11.303579023591418, + "c3": 13.485031196462288, + "c4": -38.85225909527749, + "c5": 32.753770660997795, + "c6": 28.817996179203, + "c7": -32.59725505463511 }, - "vertexSeeds": { - "c1": 6.3302014607317725, - "c2": 5.893571788153029, - "c3": 6.062495544506763, - "c4": 6.145801701740402, - "c5": 5.818171687866406, - "c6": 5.831561442227262, - "c7": 6.062050944579475 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [58, 15, 49] }, @@ -278214,23 +278214,23 @@ "year": 1785, "resistanceReported": false, "duration": 40348800, - "curveSeeds": { - "c1": -20.491487549576853, - "c2": 40.69150303719568, - "c3": -19.92025636766646, - "c4": 28.746477139480028, - "c5": 12.819069357429278, - "c6": -16.864540239203095, - "c7": -22.54762857801138 + "points": { + "c1": 52.470248266242216, + "c2": -9.378323972497476, + "c3": -32.794570796581255, + "c4": 37.015242001265754, + "c5": -5.1062260567203595, + "c6": -16.07849293379197, + "c7": -5.778593008504508 }, - "vertexSeeds": { - "c1": 7.092948762806035, - "c2": 7.568096020158695, - "c3": 7.611735588218896, - "c4": 7.630390549984241, - "c5": 6.989883485078904, - "c6": 7.582672991221642, - "c7": 7.529769649160893 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088759, + "c3": 9.246417013407305, + "c4": 7.397133610725838, + "c5": 5.5478502080443866, + "c6": 3.698566805362919, + "c7": 1.8492834026814524 }, "rgb": [58, 15, 49] }, @@ -278241,23 +278241,23 @@ "year": 1785, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 39.826663038569556, - "c2": -35.40337370714122, - "c3": -18.393539930171535, - "c4": 41.9059130368696, - "c5": -16.543434110094772, - "c6": 6.112322401786905, - "c7": 22.329188228304254 + "points": { + "c1": 18.892285199152916, + "c2": 12.484755681576758, + "c3": -6.107368171838409, + "c4": -33.08887972894667, + "c5": -7.013552714961698, + "c6": -26.30727160554692, + "c7": -20.01117695713019 }, - "vertexSeeds": { - "c1": 3.1716588750094377, - "c2": 3.361462050075562, - "c3": 3.296409007121783, - "c4": 3.1532762173461335, - "c5": 3.258986788084988, - "c6": 3.37198463140746, - "c7": 3.175412546094448 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.90984743411928, + "c3": 4.091539528432736, + "c4": 3.2732316227461906, + "c5": 2.4549237170596347, + "c6": 1.63661581137309, + "c7": 0.818307905686545 }, "rgb": [77, 76, 132] }, @@ -278268,23 +278268,23 @@ "year": 1785, "resistanceReported": true, "duration": 19008000, - "curveSeeds": { - "c1": 15.075388984400448, - "c2": 16.457607192555173, - "c3": -7.020487984986623, - "c4": -9.648176353527827, - "c5": 14.393037138364207, - "c6": 5.881914625597055, - "c7": -29.6859644682042 + "points": { + "c1": -6.0741555572051205, + "c2": 16.18368675773271, + "c3": 21.619529422228972, + "c4": -14.116565658761125, + "c5": 12.301722487008455, + "c6": 5.575616367747486, + "c7": 4.849160015634261 }, - "vertexSeeds": { - "c1": 3.852858327946831, - "c2": 3.874424999581906, - "c3": 3.832263049893918, - "c4": 4.006652810210899, - "c5": 4.078362390339922, - "c6": 3.8161805524778787, - "c7": 3.8955654309406964 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [222, 0, 59] }, @@ -278295,23 +278295,23 @@ "year": 1787, "resistanceReported": false, "duration": 105408000, - "curveSeeds": { - "c1": -9.991742580019448, - "c2": 101.52502326814712, - "c3": 110.93517277853218, - "c4": 4.327117645543723, - "c5": 33.11155818013961, - "c6": 34.04918390907616, - "c7": 8.36385524007764 + "points": { + "c1": 22.97204726230774, + "c2": -74.470817937552, + "c3": 26.643173565430402, + "c4": 45.42612867158792, + "c5": 12.251200627014555, + "c6": -60.735099610331204, + "c7": -98.15194993841595 }, - "vertexSeeds": { - "c1": 4.637130725392952, - "c2": 4.450182433472644, - "c3": 3.926092203579301, - "c4": 4.709172527222825, - "c5": 3.803291394150054, - "c6": 4.582814734647193, - "c7": 3.58477442488811 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055476, + "c3": 5.779010633379565, + "c4": 4.623208506703651, + "c5": 3.4674063800277395, + "c6": 2.3116042533518253, + "c7": 1.155802126675911 }, "rgb": [77, 76, 132] }, @@ -278322,23 +278322,23 @@ "year": 1785, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -7.496435785237985, - "c2": -10.389378663579816, - "c3": 2.2094158477858343, - "c4": -10.945275641792168, - "c5": -13.549732242497466, - "c6": 14.290030502685873, - "c7": -33.88792731409217 + "points": { + "c1": -22.079472183110873, + "c2": -32.71712452815542, + "c3": 9.067998616066902, + "c4": -4.226580377767306, + "c5": 7.687460952473941, + "c6": -19.618105491268093, + "c7": 27.55615111797016 }, - "vertexSeeds": { - "c1": 6.6172915448781024, - "c2": 6.715795460838876, - "c3": 6.646262788962596, - "c4": 6.699172735183696, - "c5": 6.594581809670706, - "c6": 6.727906691483513, - "c7": 6.6457531039715905 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675432, + "c3": 7.859454461396173, + "c4": 6.287563569116976, + "c5": 4.715672676837716, + "c6": 3.1437817845584566, + "c7": 1.5718908922791972 }, "rgb": [86, 146, 138] }, @@ -278349,23 +278349,23 @@ "year": 1786, "resistanceReported": false, "duration": 44841600, - "curveSeeds": { - "c1": -23.505819412801564, - "c2": 56.44107434119691, - "c3": -1.6115677798265438, - "c4": -50.6244850426608, - "c5": -58.50864045136732, - "c6": 49.29484222591158, - "c7": 0.5568418555403127 + "points": { + "c1": -1.0729880482637313, + "c2": 56.3318751856916, + "c3": -27.96958503848157, + "c4": -34.131028262206314, + "c5": 16.714208426216672, + "c6": -1.1016710946506407, + "c7": 17.563264393891373 }, - "vertexSeeds": { - "c1": 1.830250866844341, - "c2": 1.9348716667372798, - "c3": 1.8949092155491807, - "c4": 1.9878244755786476, - "c5": 1.9241507061319238, - "c6": 1.9392727265944512, - "c7": 1.7323338696971589 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635242, + "c3": 2.4503005085529357, + "c4": 1.9602404068423498, + "c5": 1.4701803051317606, + "c6": 0.9801202034211749, + "c7": 0.4900601017105859 }, "rgb": [222, 0, 59] }, @@ -278376,23 +278376,23 @@ "year": 1785, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 23.257625569850312, - "c2": 12.884936835157, - "c3": 23.68304949066087, - "c4": -21.76643849173755, - "c5": -17.576276822986618, - "c6": 24.220691970737896, - "c7": -8.911038305654866 + "points": { + "c1": 3.1512813629742737, + "c2": 28.160550018918165, + "c3": 23.45854700160416, + "c4": 11.094506032918531, + "c5": 8.135356449289958, + "c6": -15.568406244557792, + "c7": -3.608091160095018 }, - "vertexSeeds": { - "c1": 9.7575469956525, - "c2": 10.070932497817942, - "c3": 9.584203792011095, - "c4": 10.006362460326704, - "c5": 9.749821468472915, - "c6": 9.294278990382505, - "c7": 9.595970235249041 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915376, + "c3": 12.020342117429502, + "c4": 9.616273693943606, + "c5": 7.21220527045771, + "c6": 4.8081368469717924, + "c7": 2.4040684234858962 }, "rgb": [86, 146, 138] }, @@ -278403,23 +278403,23 @@ "year": 1785, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -0.1113468278536125, - "c2": 14.249528068854172, - "c3": 6.3443694005680165, - "c4": -14.16686784972957, - "c5": -25.232397963577423, - "c6": 7.424931340128108, - "c7": 4.558866190906318 + "points": { + "c1": -22.44151082608542, + "c2": -18.737494708346297, + "c3": -24.817091410770225, + "c4": -32.463264718589556, + "c5": 28.88092036237387, + "c6": -28.273367186722666, + "c7": 10.514258904986697 }, - "vertexSeeds": { - "c1": 7.308879397655574, - "c2": 7.951122594921481, - "c3": 7.409446224242481, - "c4": 7.678272957941466, - "c5": 7.654273020173077, - "c6": 7.976703804431178, - "c7": 7.38563142607418 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571429, + "c3": 9.523809523809524, + "c4": 7.619047619047619, + "c5": 5.714285714285714, + "c6": 3.8095238095238093, + "c7": 1.9047619047619047 }, "rgb": [77, 76, 132] }, @@ -278430,23 +278430,23 @@ "year": 1785, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": -27.54467531469024, - "c2": 28.4820053644995, - "c3": 22.154497574904113, - "c4": 36.99552438392695, - "c5": 16.975611394547144, - "c6": -12.631202616136108, - "c7": -18.47541765096011 + "points": { + "c1": -41.58397351810124, + "c2": -40.05859431679121, + "c3": 21.378278599481945, + "c4": 3.5243745582025454, + "c5": 30.576747788083367, + "c6": -15.61210756468963, + "c7": -42.1593580107931 }, - "vertexSeeds": { - "c1": 6.6432114819572385, - "c2": 6.343005524277888, - "c3": 6.2555431546484614, - "c4": 6.2114543841434795, - "c5": 6.511148936780331, - "c6": 6.7728034865880336, - "c7": 6.643881062425011 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077666, + "c3": 8.090614886731395, + "c4": 6.472491909385109, + "c5": 4.85436893203884, + "c6": 3.2362459546925546, + "c7": 1.6181229773462704 }, "rgb": [86, 146, 138] }, @@ -278457,23 +278457,23 @@ "year": 1785, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -20.146193536719345, - "c2": 6.627032800152321, - "c3": 12.14730913142187, - "c4": -15.10447196727963, - "c5": -14.917459026568391, - "c6": 11.278143330051194, - "c7": 19.416085033302657 + "points": { + "c1": -13.314978897395822, + "c2": 9.880215777152515, + "c3": -10.486887437742801, + "c4": 26.126683254883673, + "c5": 20.621707685507232, + "c6": 4.565661258134334, + "c7": -12.88816244218231 }, - "vertexSeeds": { - "c1": 11.206112453097681, - "c2": 10.783284843923278, - "c3": 11.340418939875105, - "c4": 11.337941125812057, - "c5": 11.338052137538485, - "c6": 11.237328346702558, - "c7": 10.856192291438688 + "offsets": { + "c1": 19.093851132686083, + "c2": 16.36615811373094, + "c3": 13.638465094775755, + "c4": 10.910772075820612, + "c5": 8.18307905686547, + "c6": 5.455386037910328, + "c7": 2.7276930189551423 }, "rgb": [86, 146, 138] }, @@ -278484,23 +278484,23 @@ "year": 1786, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": 27.990547644548897, - "c2": -16.20268074973479, - "c3": -45.70897421935996, - "c4": -24.658709892148863, - "c5": -13.583358780241568, - "c6": -46.79311229374548, - "c7": -34.042957417920306 + "points": { + "c1": 42.64170393158476, + "c2": 1.6502641068979642, + "c3": 51.54218935079095, + "c4": -3.5103945987424083, + "c5": -10.414835815352063, + "c6": 38.74192449284358, + "c7": -0.4876867110613148 }, - "vertexSeeds": { - "c1": 4.285392072556197, - "c2": 4.310342428202009, - "c3": 4.219641960576415, - "c4": 4.156486978952842, - "c5": 4.060627498601022, - "c6": 4.061839204913908, - "c7": 4.365116973883253 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [238, 201, 159] }, @@ -278511,23 +278511,23 @@ "year": 1785, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -26.050321999177203, - "c2": 14.050402339577097, - "c3": 23.323730583578772, - "c4": 25.96516199851002, - "c5": -4.184390314550807, - "c6": -6.099721873433509, - "c7": -14.023960100473387 + "points": { + "c1": -2.3827685589656333, + "c2": -0.47922293388300474, + "c3": 1.3109489440401951, + "c4": 20.252267505057986, + "c5": 15.824091133604874, + "c6": 7.840101070216313, + "c7": -11.550037009205848 }, - "vertexSeeds": { - "c1": 7.395257506487509, - "c2": 7.33766930843425, - "c3": 7.59911344493441, - "c4": 7.249521078848228, - "c5": 7.374363020023694, - "c6": 7.4482558811834965, - "c7": 7.212936598388584 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330106, + "c3": 9.38511326860841, + "c4": 7.508090614886737, + "c5": 5.631067961165042, + "c6": 3.7540453074433686, + "c7": 1.8770226537216954 }, "rgb": [58, 15, 49] }, @@ -278538,23 +278538,23 @@ "year": 1785, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 14.000065582578102, - "c2": 5.113833797225894, - "c3": -28.264459327922676, - "c4": 15.544756130625565, - "c5": -10.20414975359677, - "c6": 12.789517168716344, - "c7": 21.186646990828493 + "points": { + "c1": 27.60103912032846, + "c2": 14.41106168620113, + "c3": -0.03259876318315946, + "c4": -17.82038386901786, + "c5": -4.6199909728006645, + "c6": 0.5219170825817336, + "c7": 14.017332142824756 }, - "vertexSeeds": { - "c1": 2.6794948650386914, - "c2": 2.6595494014556285, - "c3": 2.568955458091086, - "c4": 2.6465119664633825, - "c5": 2.576625609877261, - "c6": 2.710095401250208, - "c7": 2.6515331338926766 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115087, + "c3": 3.282478039759598, + "c4": 2.625982431807676, + "c5": 1.9694868238557544, + "c6": 1.3129912159038435, + "c7": 0.6564956079519217 }, "rgb": [86, 146, 138] }, @@ -278565,23 +278565,23 @@ "year": 1785, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 10.395057621908407, - "c2": 29.791612763708386, - "c3": 23.144093438941667, - "c4": -17.293075983965124, - "c5": 0.4022563275626396, - "c6": 31.490900483828668, - "c7": -3.9607548993496025 + "points": { + "c1": -29.112822441903823, + "c2": 19.206874549892262, + "c3": 34.723801607563686, + "c4": -12.386977558627922, + "c5": 37.94298484152951, + "c6": 5.849420970838054, + "c7": 26.808790705689532 }, - "vertexSeeds": { - "c1": 9.420487052651884, - "c2": 9.392713138283089, - "c3": 10.047232218637268, - "c4": 10.045752567409885, - "c5": 9.614155239654837, - "c6": 9.596561770098674, - "c7": 9.937212009371587 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.50762829403608, + "c3": 12.089690245030045, + "c4": 9.671752196024054, + "c5": 7.25381414701804, + "c6": 4.835876098012027, + "c7": 2.4179380490060134 }, "rgb": [238, 201, 159] }, @@ -278592,23 +278592,23 @@ "year": 1785, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": -11.602321718272016, - "c2": -40.02770388223189, - "c3": 25.556144681241477, - "c4": 14.84450199323311, - "c5": -44.83995102422879, - "c6": -20.664265993448986, - "c7": -9.337755729484705 + "points": { + "c1": -2.698073745784413, + "c2": -4.3324610139316775, + "c3": 46.21051336060971, + "c4": 15.902901899872546, + "c5": -49.039956868761024, + "c6": -54.88749314296581, + "c7": 54.17327346664979 }, - "vertexSeeds": { - "c1": 9.565413831372581, - "c2": 9.024320120494243, - "c3": 9.619258905400692, - "c4": 8.996163945683783, - "c5": 9.45510847906685, - "c6": 8.975487321575567, - "c7": 8.85559653578426 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110949, + "c3": 11.55802126675914, + "c4": 9.246417013407306, + "c5": 6.9348127600554745, + "c6": 4.6232085067036435, + "c7": 2.3116042533518315 }, "rgb": [58, 15, 49] }, @@ -278619,23 +278619,23 @@ "year": 1785, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -14.007462817714124, - "c2": 30.639223568425727, - "c3": 10.898827451058168, - "c4": 39.565675823158834, - "c5": -32.01109400975996, - "c6": 16.06753368648903, - "c7": 12.434297852382663 + "points": { + "c1": -44.23161691186427, + "c2": 43.2978809069268, + "c3": 1.8608825451134692, + "c4": -19.481830135282877, + "c5": -17.15797199290324, + "c6": -32.51357234699836, + "c7": 17.143133704384688 }, - "vertexSeeds": { - "c1": 4.3348750194113235, - "c2": 4.23296684849784, - "c3": 4.209894481891294, - "c4": 4.315718500093769, - "c5": 4.397911653073741, - "c6": 4.403288339087586, - "c7": 4.1721148755507285 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251043, + "c3": 5.316689782709205, + "c4": 4.253351826167367, + "c5": 3.1900138696255285, + "c6": 2.1266759130836763, + "c7": 1.0633379565418382 }, "rgb": [238, 201, 159] }, @@ -278646,23 +278646,23 @@ "year": 1785, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -34.554081002432355, - "c2": -35.11529136784358, - "c3": -8.491039553294478, - "c4": 3.3672141928571477, - "c5": 8.853116145208439, - "c6": -1.2567887401488704, - "c7": 20.79602167785424 + "points": { + "c1": -40.006646909249554, + "c2": -28.647402931514694, + "c3": -4.364196673837419, + "c4": 4.424319391405021, + "c5": -18.42475904940977, + "c6": -19.946201919739387, + "c7": -47.585115727062615 }, - "vertexSeeds": { - "c1": 9.758103243924937, - "c2": 10.287653890541861, - "c3": 10.544908694347855, - "c4": 10.278685523759997, - "c5": 9.91724961432808, - "c6": 9.959796229196517, - "c7": 10.005954816313318 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [86, 146, 138] }, @@ -278673,23 +278673,23 @@ "year": 1785, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -45.25649513161769, - "c2": -23.657950164162166, - "c3": -25.047896872886323, - "c4": 1.6527137880380565, - "c5": -31.799854634633306, - "c6": 25.26967632982487, - "c7": 2.276367500183568 + "points": { + "c1": 14.233490155412333, + "c2": -47.425205186034205, + "c3": 41.992188942230875, + "c4": -3.6329348826449177, + "c5": 32.67374399584076, + "c6": -27.415378559956885, + "c7": 39.40834869293955 }, - "vertexSeeds": { - "c1": 6.984296682426526, - "c2": 7.078237607983226, - "c3": 6.863699694344611, - "c4": 6.948269864968315, - "c5": 7.158696059501326, - "c6": 7.137305582995814, - "c7": 6.9683748102844785 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -278700,23 +278700,23 @@ "year": 1786, "resistanceReported": false, "duration": 51321600, - "curveSeeds": { - "c1": -32.235590385768646, - "c2": -0.603681172222835, - "c3": -65.74264604008113, - "c4": -23.719026115064963, - "c5": 43.4934179066085, - "c6": -15.784437515893437, - "c7": 1.8082691481679944 + "points": { + "c1": -22.246662654306398, + "c2": 33.7356056270074, + "c3": 28.73015849689712, + "c4": -11.146059353068416, + "c5": -60.03896284561443, + "c6": -53.96889123406343, + "c7": 29.837950435353264 }, - "vertexSeeds": { - "c1": 3.389531643901699, - "c2": 3.3262124345801225, - "c3": 3.4182302445276824, - "c4": 3.4199857609700013, - "c5": 3.695584949165378, - "c6": 3.6696896415718903, - "c7": 3.590557746182368 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.3814147018030525, + "c3": 4.4845122515025455, + "c4": 3.587609801202037, + "c5": 2.6907073509015293, + "c6": 1.793804900601022, + "c7": 0.8969024503005143 }, "rgb": [58, 15, 49] }, @@ -278727,23 +278727,23 @@ "year": 1785, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 27.277132828182538, - "c2": -39.96789516297182, - "c3": -35.18115226772108, - "c4": 9.670226526051799, - "c5": -4.175902615538206, - "c6": -42.11944718976788, - "c7": -3.7241855279624474 + "points": { + "c1": 18.57766135187382, + "c2": 35.241204697847074, + "c3": -45.00680153766276, + "c4": -46.86683259474114, + "c5": 7.419524327657449, + "c6": 34.534156172627824, + "c7": 21.208165610216433 }, - "vertexSeeds": { - "c1": 3.37569370348516, - "c2": 3.201524105023071, - "c3": 3.201787915137784, - "c4": 3.3320286140441113, - "c5": 3.2855870589913883, - "c6": 3.289263072302146, - "c7": 3.106773928959195 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365699, + "c4": 3.236245954692558, + "c5": 2.427184466019417, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [58, 15, 49] }, @@ -278754,23 +278754,23 @@ "year": 1785, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 4.485846503485718, - "c2": -6.929405071902625, - "c3": 22.147384549575527, - "c4": -24.213741638917774, - "c5": -21.47657829212649, - "c6": -28.116454053311877, - "c7": 24.2070123427129 + "points": { + "c1": -5.06584313604316, + "c2": -15.508251361290865, + "c3": 28.994458381915727, + "c4": -0.012963452527547048, + "c5": 6.612753980280992, + "c6": 7.439129118507118, + "c7": 2.776200907222119 }, - "vertexSeeds": { - "c1": 4.740506173434562, - "c2": 4.890431216127321, - "c3": 4.820804874300074, - "c4": 4.654739508692448, - "c5": 4.846165534000959, - "c6": 4.614050621230901, - "c7": 4.699370989801498 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377256, + "c3": 5.963938973647708, + "c4": 4.771151178918168, + "c5": 3.578363384188628, + "c6": 2.38557558945908, + "c7": 1.19278779472954 }, "rgb": [86, 146, 138] }, @@ -278781,23 +278781,23 @@ "year": 1785, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -22.41002260081367, - "c2": -47.68432835350213, - "c3": -48.17294928085335, - "c4": 26.184615165479848, - "c5": -44.74962592224611, - "c6": 19.555211017095893, - "c7": 10.600455873400591 + "points": { + "c1": 3.653397671749893, + "c2": 46.95886973088607, + "c3": -9.043567959465854, + "c4": -25.995218004808684, + "c5": 7.341543765443809, + "c6": -44.70234706371604, + "c7": 28.768677776504894 }, - "vertexSeeds": { - "c1": 4.797295177423657, - "c2": 4.504629703917106, - "c3": 4.567374224381881, - "c4": 4.7953689853580155, - "c5": 4.694287642941521, - "c6": 4.8014980547767685, - "c7": 4.567220397463721 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015252, + "c3": 5.75589459084605, + "c4": 4.604715672676835, + "c5": 3.4535367545076325, + "c6": 2.3023578363384174, + "c7": 1.1511789181692151 }, "rgb": [222, 0, 59] }, @@ -278808,23 +278808,23 @@ "year": 1785, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -27.547804912246107, - "c2": 12.398279740758994, - "c3": -4.68996847590639, - "c4": -5.9663691301801975, - "c5": -0.9986437402408939, - "c6": 25.091423844225716, - "c7": 7.276061828715115 + "points": { + "c1": 2.4779624638678825, + "c2": 23.564234036348395, + "c3": 33.32298384515421, + "c4": -1.7761349707069982, + "c5": 26.492772292865553, + "c6": 12.67038383851154, + "c7": -25.454128922537713 }, - "vertexSeeds": { - "c1": 6.763612039020398, - "c2": 6.775860320851526, - "c3": 6.759489474959846, - "c4": 6.7890865973973975, - "c5": 6.779085710650436, - "c6": 6.745249695424244, - "c7": 6.784609607748071 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117937, + "c3": 8.11373092926484, + "c4": 6.490984743411905, + "c5": 4.868238557558969, + "c6": 3.245492371706033, + "c7": 1.6227461858529357 }, "rgb": [77, 76, 132] }, @@ -278835,23 +278835,23 @@ "year": 1785, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -2.938172576899298, - "c2": 32.50938599272463, - "c3": 6.615136788415967, - "c4": 19.5657589869763, - "c5": -15.038125488047346, - "c6": -15.62158502378885, - "c7": 37.98166906440761 + "points": { + "c1": 20.695136418250463, + "c2": -25.55293637264517, + "c3": 20.39860746145606, + "c4": -0.2191626687401751, + "c5": -38.03202098498626, + "c6": -35.714714651458635, + "c7": -39.62471332246208 }, - "vertexSeeds": { - "c1": 5.8863825496025735, - "c2": 5.339214054110947, - "c3": 5.753761478978691, - "c4": 6.168172777945178, - "c5": 5.802135697934666, - "c6": 5.603672343151959, - "c7": 5.57582958926008 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871017, + "c3": 7.397133610725839, + "c4": 5.917706888580674, + "c5": 4.438280166435509, + "c6": 2.9588534442903436, + "c7": 1.4794267221451654 }, "rgb": [238, 201, 159] }, @@ -278862,23 +278862,23 @@ "year": 1786, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": -5.946333186214922, - "c2": 21.661182872271574, - "c3": 52.504897683084856, - "c4": 6.028481036100466, - "c5": 16.851748410480887, - "c6": -23.886676788656942, - "c7": -52.41398891460156 + "points": { + "c1": 14.764167961772067, + "c2": -38.57176638953955, + "c3": 53.44613568703479, + "c4": 52.289636806011295, + "c5": -42.02608797477612, + "c6": 44.67915230980389, + "c7": 15.373103134497008 }, - "vertexSeeds": { - "c1": 3.152028964046214, - "c2": 3.432345422057615, - "c3": 3.5899930055288287, - "c4": 3.2587669656459375, - "c5": 3.3462106753147305, - "c6": 3.577687358240592, - "c7": 3.4219683486934533 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561719, + "c3": 4.345815996301433, + "c4": 3.476652797041146, + "c5": 2.6074895977808596, + "c6": 1.738326398520573, + "c7": 0.8691631992602865 }, "rgb": [86, 146, 138] }, @@ -278889,23 +278889,23 @@ "year": 1785, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -28.18749526183629, - "c2": 10.32134892907338, - "c3": 19.428620150468078, - "c4": 11.692201830252067, - "c5": 23.53676138477767, - "c6": 34.65480255635355, - "c7": 24.57423319713319 + "points": { + "c1": -29.08155715486817, + "c2": 9.90693669404208, + "c3": -28.103593323216685, + "c4": 26.14778148460241, + "c5": 24.794375501367362, + "c6": 1.5816771238185936, + "c7": -12.64238396713126 }, - "vertexSeeds": { - "c1": 3.8731471952147065, - "c2": 3.8931607235490078, - "c3": 3.9938554135960005, - "c4": 3.836325362952162, - "c5": 3.7278719257892736, - "c6": 3.705057852202593, - "c7": 4.04068148757461 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446599, + "c3": 4.854368932038828, + "c4": 3.883495145631069, + "c5": 2.9126213592232997, + "c6": 1.9417475728155296, + "c7": 0.9708737864077699 }, "rgb": [77, 76, 132] }, @@ -278916,23 +278916,23 @@ "year": 1785, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": 14.778681790549932, - "c2": 16.40965191062979, - "c3": -5.539357440846985, - "c4": 8.963296014581996, - "c5": -4.766141820621442, - "c6": 1.6358067506826792, - "c7": 5.619382393012948 + "points": { + "c1": -8.447394526736579, + "c2": 19.023307961098517, + "c3": -0.11788726157063323, + "c4": -1.8370831157542256, + "c5": 15.264051386311934, + "c6": 7.951776152338329, + "c7": 7.2344011602793294 }, - "vertexSeeds": { - "c1": 2.3453973047123498, - "c2": 2.4106541576139953, - "c3": 2.2768495696387983, - "c4": 2.394683798289334, - "c5": 2.1407420838584876, - "c6": 2.4492710349371625, - "c7": 2.474404647751445 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288503, + "c3": 3.0050855293573737, + "c4": 2.4040684234859, + "c5": 1.8030513176144263, + "c6": 1.20203421174295, + "c7": 0.6010171058714762 }, "rgb": [222, 0, 59] }, @@ -278943,23 +278943,23 @@ "year": 1785, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 29.127422598442948, - "c2": -30.389691610839343, - "c3": -17.770905204844382, - "c4": -3.329945875559389, - "c5": -17.14534209711696, - "c6": -0.717253672550271, - "c7": 25.690014223132366 + "points": { + "c1": 28.309869659875943, + "c2": -26.819075050608962, + "c3": -13.729267438007135, + "c4": 37.151292781080556, + "c5": 18.269301757049732, + "c6": -37.86999042001619, + "c7": 14.359729326402736 }, - "vertexSeeds": { - "c1": 9.937911499872357, - "c2": 9.983832951574946, - "c3": 10.289105657561999, - "c4": 10.364689245799411, - "c5": 10.237499435317078, - "c6": 9.85337006242959, - "c7": 10.62998657151015 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [222, 0, 59] }, @@ -278970,23 +278970,23 @@ "year": 1785, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -0.3751625926614963, - "c2": -40.90781619923569, - "c3": -29.89322378434899, - "c4": 10.062732128755414, - "c5": -24.674618978647572, - "c6": 22.291554097791405, - "c7": 31.34409966790905 + "points": { + "c1": -43.03978851960106, + "c2": -18.819827706912413, + "c3": -10.283449900670433, + "c4": -44.879490593774676, + "c5": 36.63219457071506, + "c6": 21.129975456261775, + "c7": 14.441988367772218 }, - "vertexSeeds": { - "c1": 4.866500413408712, - "c2": 5.6016545810371285, - "c3": 5.14739960449096, - "c4": 5.077287127362278, - "c5": 7.435994279691501, - "c6": 7.614483218054534, - "c7": 6.745196865142013 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887658, + "c3": 9.130836800739715, + "c4": 7.304669440591773, + "c5": 5.478502080443831, + "c6": 3.652334720295884, + "c7": 1.826167360147942 }, "rgb": [77, 76, 132] }, @@ -278997,23 +278997,23 @@ "year": 1785, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 5.525905206069044, - "c2": -24.959247929597282, - "c3": 0.7891264702012144, - "c4": 19.072379523569214, - "c5": 13.0047535172891, - "c6": -10.44874241525859, - "c7": -8.737577335717035 + "points": { + "c1": -1.5638644896659066, + "c2": 6.368147778389346, + "c3": 19.019553610045175, + "c4": 21.39636185788095, + "c5": 7.023054647839569, + "c6": -27.019058918209534, + "c7": 27.592120208499896 }, - "vertexSeeds": { - "c1": 10.049310370700471, - "c2": 9.81733953599059, - "c3": 10.197252445320336, - "c4": 9.385785446546144, - "c5": 10.109432510366817, - "c6": 10.104048865420085, - "c7": 9.567553617170658 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156706, + "c3": 12.159038372630611, + "c4": 9.727230698104492, + "c5": 7.295423023578376, + "c6": 4.863615349052236, + "c7": 2.43180767452614 }, "rgb": [238, 201, 159] }, @@ -279024,23 +279024,23 @@ "year": 1785, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -16.953230454038554, - "c2": 5.606856884742889, - "c3": 12.526341697240177, - "c4": -17.685565258344422, - "c5": 6.51034834863777, - "c6": -32.348673697861166, - "c7": 5.95795252216643 + "points": { + "c1": -38.37356539127179, + "c2": 10.742259285913157, + "c3": 1.1343301595629356, + "c4": 10.935402516595254, + "c5": 3.428006882287775, + "c6": -33.29654093986521, + "c7": 6.168369293905222 }, - "vertexSeeds": { - "c1": 9.305565961552231, - "c2": 9.15447996204715, - "c3": 9.820569448707717, - "c4": 8.94404401769929, - "c5": 9.39678903476982, - "c6": 9.597117376421581, - "c7": 9.940859044848356 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.646324549237182, + "c3": 12.205270457697642, + "c4": 9.764216366158113, + "c5": 7.323162274618585, + "c6": 4.8821081830790565, + "c7": 2.4410540915395282 }, "rgb": [77, 76, 132] }, @@ -279051,23 +279051,23 @@ "year": 1785, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -13.867534080716911, - "c2": 22.371140203141486, - "c3": -0.9739316826771685, - "c4": -19.537214694442188, - "c5": -19.07243324036407, - "c6": -8.368273397456008, - "c7": 18.963565291821673 + "points": { + "c1": 7.672099370635223, + "c2": 0.549081885379799, + "c3": -32.061147665691564, + "c4": -30.446232027985392, + "c5": 20.042570277780676, + "c6": 35.20980564370979, + "c7": -14.406531141431781 }, - "vertexSeeds": { - "c1": 3.857337777377146, - "c2": 4.0787456313549875, - "c3": 4.086538215173751, - "c4": 4.1135586178542765, - "c5": 3.937253771347622, - "c6": 4.07630379339948, - "c7": 4.0637666480151875 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607491, + "c3": 4.946833102172912, + "c4": 3.957466481738332, + "c5": 2.9680998613037524, + "c6": 1.9787332408691596, + "c7": 0.9893666204345798 }, "rgb": [86, 146, 138] }, @@ -279078,23 +279078,23 @@ "year": 1785, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 2.575291513715637, - "c2": 0.4473930641702708, - "c3": 4.034376728023563, - "c4": 27.746751965399785, - "c5": -5.468973178315174, - "c6": -4.240413121644153, - "c7": -24.201783391425607 + "points": { + "c1": 31.336485547822477, + "c2": 26.353170046977368, + "c3": -25.885482279293377, + "c4": 10.963962741877367, + "c5": 9.304305827319915, + "c6": -15.334638965869935, + "c7": -21.997513335975533 }, - "vertexSeeds": { - "c1": 9.147532171407304, - "c2": 8.5225735959664, - "c3": 9.049741033225125, - "c4": 8.838065211296426, - "c5": 8.50065489598197, - "c6": 8.490266052397137, - "c7": 9.059619934887358 + "offsets": { + "c1": 15.436893203883495, + "c2": 13.23162274618585, + "c3": 11.026352288488203, + "c4": 8.82108183079056, + "c5": 6.615811373092914, + "c6": 4.41054091539529, + "c7": 2.205270457697645 }, "rgb": [86, 146, 138] }, @@ -279105,23 +279105,23 @@ "year": 1785, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -12.561772607356904, - "c2": -12.959426495552169, - "c3": 2.47384317646695, - "c4": -10.531515223805673, - "c5": -10.51473798767244, - "c6": 0.10926236145872537, - "c7": 20.702079652684013 + "points": { + "c1": 19.478515184137073, + "c2": -25.500843785542983, + "c3": 34.276857630330205, + "c4": -17.488263920388295, + "c5": -16.61539616023052, + "c6": 14.184744131051026, + "c7": -28.295270525277502 }, - "vertexSeeds": { - "c1": 2.233445017536607, - "c2": 2.1874666703387464, - "c3": 2.1624454520314984, - "c4": 2.2124153785033736, - "c5": 2.1758683846176594, - "c6": 2.196814875358824, - "c7": 2.177028519895966 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504856, + "c3": 2.588996763754049, + "c4": 2.071197411003242, + "c5": 1.5533980582524345, + "c6": 1.0355987055016145, + "c7": 0.5177993527508072 }, "rgb": [238, 201, 159] }, @@ -279132,23 +279132,23 @@ "year": 1785, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -18.262400004547096, - "c2": 10.038526046914583, - "c3": -1.1591312742537347, - "c4": 2.0927623146134273, - "c5": 22.60929772481083, - "c6": -21.206799603119432, - "c7": -22.943579268900624 + "points": { + "c1": 14.20744715532004, + "c2": 3.258220849699452, + "c3": 2.008543295408387, + "c4": 17.08290071282365, + "c5": -27.202268817734556, + "c6": -18.30057892972922, + "c7": -26.923630421167587 }, - "vertexSeeds": { - "c1": 7.244214698447524, - "c2": 6.99063060577176, - "c3": 7.042599603388611, - "c4": 7.20893406700582, - "c5": 7.266364875377079, - "c6": 7.229383617967675, - "c7": 7.238141767509142 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163673, + "c3": 8.714748035136381, + "c4": 6.971798428109115, + "c5": 5.228848821081823, + "c6": 3.4858992140545575, + "c7": 1.7429496070272916 }, "rgb": [77, 76, 132] }, @@ -279159,23 +279159,23 @@ "year": 1785, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -35.61733067134109, - "c2": -14.413101836784069, - "c3": 21.31157073363339, - "c4": -17.6975965513517, - "c5": -32.47701350803969, - "c6": 3.4764497931299516, - "c7": -28.862581806487306 + "points": { + "c1": -37.53590795968621, + "c2": 4.111243267999171, + "c3": 4.8602359440997205, + "c4": -18.65711406846099, + "c5": -10.984964184795128, + "c6": -22.96954670365179, + "c7": 0.002940023188934049 }, - "vertexSeeds": { - "c1": 4.161332107886167, - "c2": 4.124105221387694, - "c3": 3.9521609373022, - "c4": 4.213138152876289, - "c5": 4.221130699230092, - "c6": 4.291901120137635, - "c7": 4.152520168914042 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969485, + "c3": 5.154877484974578, + "c4": 4.12390198797966, + "c5": 3.0929264909847425, + "c6": 2.0619509939898246, + "c7": 1.0309754969949176 }, "rgb": [86, 146, 138] }, @@ -279186,23 +279186,23 @@ "year": 1785, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 25.7697878804338, - "c2": -13.442204994714682, - "c3": -15.441554501303578, - "c4": 25.161771109661668, - "c5": 11.578605419107578, - "c6": 13.760569076948993, - "c7": 14.696126503207427 + "points": { + "c1": -18.42471895245749, + "c2": -4.33386316598537, + "c3": 8.225007648499613, + "c4": 20.92243159814445, + "c5": -28.42776101184019, + "c6": -30.89619254131252, + "c7": 28.58910642724023 }, - "vertexSeeds": { - "c1": 2.9795465102661205, - "c2": 3.013164761154605, - "c3": 2.9798336260351013, - "c4": 3.190355833467385, - "c5": 2.943711338474542, - "c6": 3.0344034996884646, - "c7": 3.0236109277685963 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.6047156726768375, + "c3": 3.837263060564031, + "c4": 3.069810448451225, + "c5": 2.3023578363384187, + "c6": 1.5349052242256125, + "c7": 0.7674526121128062 }, "rgb": [222, 0, 59] }, @@ -279213,23 +279213,23 @@ "year": 1785, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 19.763235554262344, - "c2": 36.522005246120614, - "c3": 19.80466728753114, - "c4": 29.67125333640611, - "c5": 14.219018505386273, - "c6": -34.6028551116831, - "c7": -20.75521829646294 + "points": { + "c1": -12.425080791207009, + "c2": -38.99779876381903, + "c3": -36.91453368981133, + "c4": -38.83165479942005, + "c5": 26.955479117685627, + "c6": -16.178616791941074, + "c7": 10.276471727920118 }, - "vertexSeeds": { - "c1": 1.533579933928087, - "c2": 1.637846572109647, - "c3": 1.5621854797346908, - "c4": 1.5258951301406978, - "c5": 1.6658515239700116, - "c6": 1.5820913084758228, - "c7": 1.6439855323769272 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.44105409153953, + "c3": 2.0342117429496054, + "c4": 1.6273693943596852, + "c5": 1.220527045769765, + "c6": 0.8136846971798404, + "c7": 0.4068423485899202 }, "rgb": [58, 15, 49] }, @@ -279240,23 +279240,23 @@ "year": 1785, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": 10.325306622119808, - "c2": 3.106757261612092, - "c3": 11.684105153407074, - "c4": -0.10206676635435841, - "c5": 5.868054480074981, - "c6": -4.762710749756614, - "c7": -13.591931282595201 + "points": { + "c1": 0.20343653877334944, + "c2": -0.13966232172111503, + "c3": -22.409828642008737, + "c4": 5.449479613709382, + "c5": 1.5632262908205767, + "c6": 16.679665811111242, + "c7": 9.849757215691838 }, - "vertexSeeds": { - "c1": 4.371761658031088, - "c2": 4.371761658031088, - "c3": 4.371761658031088, - "c4": 4.371761658031088, - "c5": 4.371761658031088, - "c6": 4.371761658031088, - "c7": 4.371761658031088 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -279267,23 +279267,23 @@ "year": 1785, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": 1.1786041057021777, - "c2": -29.978465879842098, - "c3": -29.274038220322574, - "c4": 10.941198985016591, - "c5": -26.11892902576238, - "c6": 32.42097865851584, - "c7": 44.40719699041167 + "points": { + "c1": -0.21417745632618335, + "c2": 40.39362100404704, + "c3": 39.432166724376025, + "c4": -29.51493159218603, + "c5": -10.052733080607851, + "c6": -29.620809664830958, + "c7": 17.607201487505897 }, - "vertexSeeds": { - "c1": 5.627178303394737, - "c2": 5.754235147638401, - "c3": 5.718559946146382, - "c4": 5.381240003306927, - "c5": 5.549063353290344, - "c6": 5.5852896687588, - "c7": 5.671213615970091 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055478, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.773925104022191, + "c7": 1.3869625520110955 }, "rgb": [58, 15, 49] }, @@ -279294,23 +279294,23 @@ "year": 1785, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -2.531313470105143, - "c2": -5.441557087002874, - "c3": 9.33029193080408, - "c4": -13.26215420007928, - "c5": -9.723813136701192, - "c6": -6.001237712311044, - "c7": -8.794670193336287 + "points": { + "c1": 17.653667679447143, + "c2": -19.207165852913775, + "c3": -0.4406900938077527, + "c4": -7.821878415657839, + "c5": 13.954713340138195, + "c6": -22.699416783478398, + "c7": -10.633096104873921 }, - "vertexSeeds": { - "c1": 3.917248539964209, - "c2": 4.001146043911893, - "c3": 3.7560192033985684, - "c4": 3.792723019288715, - "c5": 3.9563030441287665, - "c6": 3.9886879265926605, - "c7": 3.7511988046136837 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325941, + "c3": 4.785020804438279, + "c4": 3.8280166435506273, + "c5": 2.871012482662965, + "c6": 1.9140083217753137, + "c7": 0.9570041608876625 }, "rgb": [58, 15, 49] }, @@ -279321,23 +279321,23 @@ "year": 1786, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -42.32134521210657, - "c2": -38.24476624204304, - "c3": 17.065742600489102, - "c4": 9.473463685674773, - "c5": -8.530872552386604, - "c6": -36.34857505412076, - "c7": -15.799671039053464 + "points": { + "c1": 20.791384734676072, + "c2": 28.291709152507067, + "c3": -43.00935643581431, + "c4": 27.85072733258545, + "c5": 9.68617667515845, + "c6": -28.017529104121373, + "c7": -9.757012275275791 }, - "vertexSeeds": { - "c1": 11.449818652048222, - "c2": 12.299483806757623, - "c3": 11.675051475241894, - "c4": 10.840214362212933, - "c5": 11.450580388723347, - "c6": 10.814354440933, - "c7": 10.919319768815482 + "offsets": { + "c1": 20.74433656957929, + "c2": 17.780859916782248, + "c3": 14.817383263985207, + "c4": 11.853906611188165, + "c5": 8.890429958391124, + "c6": 5.926953305594083, + "c7": 2.9634766527970413 }, "rgb": [77, 76, 132] }, @@ -279348,23 +279348,23 @@ "year": 1785, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 25.968795184953812, - "c2": 11.376199113804446, - "c3": 24.815199023702853, - "c4": -15.668448795079424, - "c5": 11.62103819887139, - "c6": -20.729220594362353, - "c7": -36.314151091381255 + "points": { + "c1": -27.46158931575736, + "c2": 45.85060359471769, + "c3": -36.92982042845306, + "c4": 25.99486302970825, + "c5": -37.48179406057035, + "c6": -5.96179039220074, + "c7": 47.014781813504065 }, - "vertexSeeds": { - "c1": 6.094472655389243, - "c2": 8.321712417417315, - "c3": 6.866246080128141, - "c4": 6.1262575684084295, - "c5": 7.879128946226348, - "c6": 8.505641294994703, - "c7": 8.360635997745934 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898753, + "c3": 10.286638927415629, + "c4": 8.229311141932504, + "c5": 6.171983356449379, + "c6": 4.114655570966255, + "c7": 2.0573277854831247 }, "rgb": [86, 146, 138] }, @@ -279375,23 +279375,23 @@ "year": 1785, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 29.79773079839918, - "c2": 8.944483037791997, - "c3": 22.069766947603753, - "c4": 28.309800336399086, - "c5": 24.673838606008438, - "c6": -22.30996163639376, - "c7": 0.7838566754026033 + "points": { + "c1": 20.364248231411203, + "c2": -27.60564965728893, + "c3": 28.795098165480518, + "c4": 16.79210521189586, + "c5": -8.973223192909842, + "c6": 29.822882565412108, + "c7": -22.763209661888148 }, - "vertexSeeds": { - "c1": 10.990386880361918, - "c2": 10.736064738206846, - "c3": 10.77272157196825, - "c4": 10.54805680841924, - "c5": 10.954563555763245, - "c6": 10.87223182458905, - "c7": 10.610321680433145 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.811373092926463, + "c3": 13.176144244105421, + "c4": 10.540915395284308, + "c5": 7.905686546463266, + "c6": 5.270457697642154, + "c7": 2.635228848821112 }, "rgb": [222, 0, 59] }, @@ -279402,23 +279402,23 @@ "year": 1785, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -27.374770110607358, - "c2": -43.338341261889425, - "c3": -42.00951180196949, - "c4": -4.7493950485229846, - "c5": 25.78639342430558, - "c6": -15.49215336215073, - "c7": -29.92474428509621 + "points": { + "c1": -29.243479108413716, + "c2": -2.908386640181007, + "c3": 17.98683163196673, + "c4": -15.819007846146487, + "c5": 19.430048498428356, + "c6": 3.013209692003791, + "c7": 0.7023642723350321 }, - "vertexSeeds": { - "c1": 8.03062293489127, - "c2": 7.992711131210097, - "c3": 7.4003221906921075, - "c4": 7.7124565006020385, - "c5": 8.455159883375654, - "c6": 7.94312940888031, - "c7": 7.933522388715463 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.17105871474803, + "c4": 8.136846971798423, + "c5": 6.102635228848813, + "c6": 4.068423485899218, + "c7": 2.034211742949609 }, "rgb": [86, 146, 138] }, @@ -279429,23 +279429,23 @@ "year": 1785, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 11.274663621302267, - "c2": 44.562741814235665, - "c3": 41.330384672474864, - "c4": -42.592550462606916, - "c5": 40.188012383880704, - "c6": -6.928859474127236, - "c7": -4.420635989950043 + "points": { + "c1": 7.004449586003645, + "c2": 14.620587288749078, + "c3": 17.9588752298136, + "c4": 13.430384841565157, + "c5": -19.328252413794914, + "c6": -16.988325603463423, + "c7": -15.14535984269908 }, - "vertexSeeds": { - "c1": 9.219631465296352, - "c2": 9.178548991061982, - "c3": 9.118963888980417, - "c4": 9.376277807122495, - "c5": 9.371471571444566, - "c6": 9.28120480566026, - "c7": 9.195919705713004 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789181, + "c3": 11.373092926490985, + "c4": 9.098474341192787, + "c5": 6.8238557558945905, + "c6": 4.549237170596394, + "c7": 2.274618585298197 }, "rgb": [58, 15, 49] }, @@ -279456,23 +279456,23 @@ "year": 1785, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -30.008246989140524, - "c2": -30.756430930758235, - "c3": 13.779005034893125, - "c4": 27.2894722158181, - "c5": -19.994323310761025, - "c6": -4.476825573234741, - "c7": 16.899403618782983 + "points": { + "c1": -8.148854126167695, + "c2": -20.944471766067142, + "c3": 30.617083429277628, + "c4": 18.65737725308469, + "c5": -31.61956726827678, + "c6": 31.518129269139294, + "c7": 16.29803017039314 }, - "vertexSeeds": { - "c1": 11.043072525813846, - "c2": 10.990406484018077, - "c3": 10.924847009194155, - "c4": 11.65699637753099, - "c5": 11.295840271962888, - "c6": 11.110530415820838, - "c7": 11.193012333649978 + "offsets": { + "c1": 19.676375404530745, + "c2": 16.865464632454913, + "c3": 14.054553860379121, + "c4": 11.243643088303289, + "c5": 8.432732316227456, + "c6": 5.621821544151624, + "c7": 2.8109107720758324 }, "rgb": [58, 15, 49] }, @@ -279483,23 +279483,23 @@ "year": 1785, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -4.598075487202504, - "c2": 3.589472951519298, - "c3": 17.895242226979242, - "c4": -29.75178466185832, - "c5": -26.504283524637515, - "c6": 23.505771312181814, - "c7": -14.19125619162023 + "points": { + "c1": -25.014726066321362, + "c2": 0.3945927161093934, + "c3": -1.6552396800422002, + "c4": -4.476462229647311, + "c5": -16.17104354134545, + "c6": -29.238951678588595, + "c7": -31.02772248583739 }, - "vertexSeeds": { - "c1": 3.160138998605941, - "c2": 3.404258131609829, - "c3": 3.563362595636948, - "c4": 2.9988071051231104, - "c5": 3.2369426708166333, - "c6": 3.56871141149006, - "c7": 3.535125215126318 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481275, + "c3": 4.299583911234399, + "c4": 3.439667128987518, + "c5": 2.5797503467406373, + "c6": 1.7198335644937566, + "c7": 0.8599167822468808 }, "rgb": [77, 76, 132] }, @@ -279510,23 +279510,23 @@ "year": 1785, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -16.48703059642761, - "c2": -15.01991957226504, - "c3": 2.937653208122615, - "c4": 8.829654400632474, - "c5": 0.7595359819358158, - "c6": 5.535673180977405, - "c7": -12.413164086844487 + "points": { + "c1": 19.742239787116507, + "c2": 14.954892604619811, + "c3": -0.9584354469010492, + "c4": -4.767063526359653, + "c5": -23.763295693431157, + "c6": -24.32004756721069, + "c7": -23.772192746829116 }, - "vertexSeeds": { - "c1": 3.735983938379912, - "c2": 3.610264071994051, - "c3": 3.6911370476698937, - "c4": 3.6313562019066468, - "c5": 3.5329000695859003, - "c6": 3.4855756123949257, - "c7": 3.607313792788337 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923722, + "c3": 4.553860379103097, + "c4": 3.6430883032824815, + "c5": 2.7323162274618555, + "c6": 1.8215441516412407, + "c7": 0.9107720758206257 }, "rgb": [77, 76, 132] }, @@ -279537,23 +279537,23 @@ "year": 1785, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -25.673370050179265, - "c2": -16.679754507401388, - "c3": -9.274253492207986, - "c4": -18.88754797328451, - "c5": -1.6019676240000358, - "c6": -4.665812414009753, - "c7": 1.1068377101136235 + "points": { + "c1": 2.1254892497331923, + "c2": 9.419256512397638, + "c3": 17.99861439144197, + "c4": -0.847069986420081, + "c5": -29.74375234159111, + "c6": -22.975376960488894, + "c7": -9.227219432335652 }, - "vertexSeeds": { - "c1": 5.78121686800813, - "c2": 5.89404971923389, - "c3": 5.6639578756161315, - "c4": 5.7344502512685445, - "c5": 5.916096038058093, - "c6": 5.638603133545239, - "c7": 5.593210490940673 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256582, + "c4": 5.658807212205262, + "c5": 4.2441054091539625, + "c6": 2.829403606102642, + "c7": 1.414701803051321 }, "rgb": [58, 15, 49] }, @@ -279564,23 +279564,23 @@ "year": 1785, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 1.9150776252057327, - "c2": 23.457459956762108, - "c3": -14.980466923428933, - "c4": -21.728311289284242, - "c5": 2.7204163805152177, - "c6": 13.819594323404878, - "c7": 13.749303452895703 + "points": { + "c1": 15.244819725279704, + "c2": -19.54992299267436, + "c3": -24.1622179231615, + "c4": 2.446575996663345, + "c5": -1.4304764917019135, + "c6": -14.641746881908356, + "c7": -3.930121717950012 }, - "vertexSeeds": { - "c1": 8.490490660197683, - "c2": 8.579090604170325, - "c3": 8.681776455334045, - "c4": 8.701422840612777, - "c5": 8.28273830975061, - "c6": 8.71112244235097, - "c7": 8.66648425823719 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.78779472954231, + "c3": 10.656495607951909, + "c4": 8.525196486361532, + "c5": 6.393897364771155, + "c6": 4.262598243180777, + "c7": 2.1312991215903776 }, "rgb": [77, 76, 132] }, @@ -279591,23 +279591,23 @@ "year": 1785, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 18.080285712277192, - "c2": 21.91081422534891, - "c3": 3.8346131203623486, - "c4": -18.601947683020672, - "c5": 16.16470681289636, - "c6": 7.088991426074436, - "c7": 11.269912511004147 + "points": { + "c1": 18.517694722967196, + "c2": 23.1203761667396, + "c3": 13.781889738172342, + "c4": 1.896312454399407, + "c5": -18.323409720446172, + "c6": 13.358247201506192, + "c7": -21.60298868294057 }, - "vertexSeeds": { - "c1": 2.5928900949287073, - "c2": 2.625901994855508, - "c3": 2.6329839171668388, - "c4": 2.4815620383050008, - "c5": 2.4392277343665474, - "c6": 2.441770176310766, - "c7": 2.683193249474929 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631069, + "c3": 3.236245954692558, + "c4": 2.5889967637540474, + "c5": 1.9417475728155364, + "c6": 1.2944983818770257, + "c7": 0.6472491909385109 }, "rgb": [86, 146, 138] }, @@ -279618,23 +279618,23 @@ "year": 1785, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": -12.56950511378432, - "c2": 6.283892938884396, - "c3": -2.8722944511627837, - "c4": -7.121909425035483, - "c5": -10.39027747602853, - "c6": 9.830867179681881, - "c7": 7.857721289055373 + "points": { + "c1": -18.37278458792968, + "c2": -16.713778085855814, + "c3": 3.95571343715147, + "c4": 13.679994488519636, + "c5": -9.56061091049328, + "c6": 21.29272502823302, + "c7": 20.507531788791997 }, - "vertexSeeds": { - "c1": 4.033534396197145, - "c2": 4.2090943667826695, - "c3": 4.066547015218574, - "c4": 4.012098463375794, - "c5": 4.198924569198678, - "c6": 3.9817444102888384, - "c7": 3.8788494243129286 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041607, + "c4": 4.160887656033289, + "c5": 3.120665742024963, + "c6": 2.0804438280166444, + "c7": 1.0402219140083182 }, "rgb": [86, 146, 138] }, @@ -279645,23 +279645,23 @@ "year": 1785, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 8.504501003825862, - "c2": -17.34271691559028, - "c3": -26.313829298133218, - "c4": -16.81270374654885, - "c5": -17.907552258097027, - "c6": 8.464589845780257, - "c7": 20.410408096642175 + "points": { + "c1": -1.072090115135552, + "c2": -29.74109823713338, + "c3": 19.0789054273171, + "c4": -5.747875418663192, + "c5": 0.08388247088895184, + "c6": 8.801933646107667, + "c7": 7.7486293654824046 }, - "vertexSeeds": { - "c1": 3.40425353709634, - "c2": 3.2821108126987584, - "c3": 3.2593197241741336, - "c4": 3.378313983656246, - "c5": 3.311796097190021, - "c6": 3.251471830326681, - "c7": 3.4099479857102546 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.9098474341192775, + "c3": 4.091539528432729, + "c4": 3.2732316227461933, + "c5": 2.4549237170596445, + "c6": 1.6366158113730966, + "c7": 0.8183079056865483 }, "rgb": [58, 15, 49] }, @@ -279672,23 +279672,23 @@ "year": 1785, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -29.829372973668026, - "c2": -21.940849787364122, - "c3": -36.339050915559525, - "c4": -25.876437460926198, - "c5": 18.77713457049562, - "c6": -35.826905004446076, - "c7": 24.77345021522639 + "points": { + "c1": -7.96340794303735, + "c2": -12.913687515173272, + "c3": 12.977400060036466, + "c4": -30.8448604063881, + "c5": 26.274074607849926, + "c6": 35.300489760965405, + "c7": -29.719730604554982 }, - "vertexSeeds": { - "c1": 4.08855623595407, - "c2": 4.420198427032074, - "c3": 4.3158950405441345, - "c4": 4.315228359912927, - "c5": 4.342711774454532, - "c6": 3.6365723160121317, - "c7": 3.616315642606457 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251041, + "c3": 5.316689782709202, + "c4": 4.2533518261673615, + "c5": 3.1900138696255205, + "c6": 2.1266759130836816, + "c7": 1.0633379565418408 }, "rgb": [86, 146, 138] }, @@ -279699,23 +279699,23 @@ "year": 1785, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 40.280964122582795, - "c2": -35.60494821221814, - "c3": -38.72432984401081, - "c4": 21.091797936170828, - "c5": -25.805200946714894, - "c6": -32.102881731865715, - "c7": -0.20696864943791127 + "points": { + "c1": -6.81480524806058, + "c2": 15.309808116062086, + "c3": -7.219964010768479, + "c4": 37.423044978644434, + "c5": -32.5039190952335, + "c6": 40.38925451573369, + "c7": -40.0107057463325 }, - "vertexSeeds": { - "c1": 8.65706350120255, - "c2": 8.622699705203727, - "c3": 8.44519162825294, - "c4": 8.430331266027709, - "c5": 8.745638139452895, - "c6": 8.383650926974651, - "c7": 8.737328544867925 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743413, + "c3": 10.772075820619511, + "c4": 8.617660656495609, + "c5": 6.463245492371707, + "c6": 4.308830328247804, + "c7": 2.154415164123902 }, "rgb": [58, 15, 49] }, @@ -279726,23 +279726,23 @@ "year": 1786, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 31.96365070435334, - "c2": -14.779910991026064, - "c3": 36.06847618288954, - "c4": -24.674425653747452, - "c5": 31.537862540271092, - "c6": 30.365707395616596, - "c7": 41.61832550509642 + "points": { + "c1": 15.789273682206428, + "c2": 46.9472315286621, + "c3": -46.34692044784065, + "c4": 4.807515102679382, + "c5": -0.7351031193867072, + "c6": 28.355100201437125, + "c7": 40.071997918132325 }, - "vertexSeeds": { - "c1": 8.323410484739416, - "c2": 8.171164238901843, - "c3": 8.209770526097499, - "c4": 7.973532646620184, - "c5": 8.075343682692594, - "c6": 8.206943142168729, - "c7": 8.190766199542475 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [58, 15, 49] }, @@ -279753,23 +279753,23 @@ "year": 1785, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -14.606913286871205, - "c2": 7.137838174351753, - "c3": 1.9448168517854043, - "c4": 6.192898210415439, - "c5": 19.88932587470829, - "c6": -23.62116672677554, - "c7": -19.647269558730695 + "points": { + "c1": 16.207395892920346, + "c2": 22.141737217686412, + "c3": 23.783855438047716, + "c4": -17.230910817416667, + "c5": 20.40631942707345, + "c6": -18.152405963812356, + "c7": -22.293778490732695 }, - "vertexSeeds": { - "c1": 6.846505902265485, - "c2": 6.613130961372828, - "c3": 6.713871609029723, - "c4": 7.0872948763720025, - "c5": 6.574651518063965, - "c6": 6.883052950406435, - "c7": 6.756428262231002 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761436, + "c3": 8.483587609801212, + "c4": 6.786870087840965, + "c5": 5.090152565880718, + "c6": 3.393435043920493, + "c7": 1.6967175219602466 }, "rgb": [86, 146, 138] }, @@ -279780,23 +279780,23 @@ "year": 1785, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -28.84818749977713, - "c2": 4.4326814619103985, - "c3": -26.308750838511116, - "c4": 27.09719655009866, - "c5": 8.33566197315551, - "c6": 19.156849288401226, - "c7": 13.200733767686636 + "points": { + "c1": -16.21225955608689, + "c2": -11.317645376561888, + "c3": -11.299833518800487, + "c4": -38.29220562716505, + "c5": -3.850025077561142, + "c6": -35.509558192335405, + "c7": -3.6979546461370845 }, - "vertexSeeds": { - "c1": 1.3829377690283693, - "c2": 1.4124062054741577, - "c3": 1.4709625895257976, - "c4": 1.4476667085994708, - "c5": 1.4813236847453959, - "c6": 1.4423184766712, - "c7": 1.4290896475900234 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.1636615811373074, + "c3": 1.8030513176144267, + "c4": 1.4424410540915402, + "c5": 1.0818307905686537, + "c6": 0.7212205270457731, + "c7": 0.36061026352288655 }, "rgb": [222, 0, 59] }, @@ -279807,23 +279807,23 @@ "year": 1785, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 34.55734110603956, - "c2": -15.523553172885265, - "c3": -0.3667910694450853, - "c4": 3.0542276553767707, - "c5": 12.513621189143763, - "c6": -15.096494722346367, - "c7": 9.990745709516503 + "points": { + "c1": 0.8132346747016257, + "c2": 35.94481778376149, + "c3": -24.414619830231945, + "c4": 37.36631670767319, + "c5": 40.002251232266616, + "c6": -1.9608401780461193, + "c7": -8.669173131956377 }, - "vertexSeeds": { - "c1": 6.8654633992732395, - "c2": 6.804310171804805, - "c3": 7.196423139178715, - "c4": 7.31155724449785, - "c5": 7.463753073525726, - "c6": 6.999724456571543, - "c7": 7.314522172056944 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -279834,23 +279834,23 @@ "year": 1786, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": -49.344698044816965, - "c2": 15.873555916625754, - "c3": 7.115841531248833, - "c4": 48.00667777186565, - "c5": -22.780482344483012, - "c6": -13.070279309613781, - "c7": 40.508146836951035 + "points": { + "c1": -45.79543336050539, + "c2": 19.136688891540764, + "c3": 41.498283153358905, + "c4": -23.560211681871486, + "c5": 49.99992803719275, + "c6": 23.23035986103175, + "c7": 42.19469634824528 }, - "vertexSeeds": { - "c1": 1.2233728559097357, - "c2": 1.2468046391949625, - "c3": 1.2910238889859913, - "c4": 1.2068778824973105, - "c5": 1.2188850091837236, - "c6": 1.2410407821971357, - "c7": 1.2405159175084863 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350929, + "c3": 1.571890892279241, + "c4": 1.2575127138233952, + "c5": 0.9431345353675433, + "c6": 0.6287563569116976, + "c7": 0.3143781784558488 }, "rgb": [86, 146, 138] }, @@ -279861,23 +279861,23 @@ "year": 1785, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 25.584751072740175, - "c2": 8.719607111331328, - "c3": -20.29281247468268, - "c4": -18.77103437579225, - "c5": -1.677207974404979, - "c6": 5.818629508183548, - "c7": 19.180791639393 + "points": { + "c1": -0.5505165591364332, + "c2": 34.42216253423557, + "c3": 39.371530423179024, + "c4": -10.129435118636529, + "c5": -21.671578858980165, + "c6": -3.8042037519132705, + "c7": 12.519722518547162 }, - "vertexSeeds": { - "c1": 1.3549055859476204, - "c2": 1.3483724285290928, - "c3": 1.3562249675712366, - "c4": 1.3576348561341527, - "c5": 1.3432505461149258, - "c6": 1.3583103665938063, - "c7": 1.3555788076308504 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155433, + "c3": 1.6181229773462646, + "c4": 1.2944983818770182, + "c5": 0.9708737864077717, + "c6": 0.6472491909385252, + "c7": 0.3236245954692465 }, "rgb": [58, 15, 49] }, @@ -279888,23 +279888,23 @@ "year": 1786, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -34.717296723639876, - "c2": -1.893042770503591, - "c3": 49.62563755287569, - "c4": -7.567557686369824, - "c5": -29.192427002535602, - "c6": 18.172156420973394, - "c7": -24.329247396299206 + "points": { + "c1": 31.673707603562846, + "c2": 32.35579768854852, + "c3": 0.2602153308909365, + "c4": -22.993715913486472, + "c5": 0.015996244175212837, + "c6": -50.58674792633721, + "c7": -40.51099439406546 }, - "vertexSeeds": { - "c1": 5.497787661201425, - "c2": 5.85765791276014, - "c3": 5.999199082874138, - "c4": 5.562441189996073, - "c5": 5.847905731661753, - "c6": 5.596586057392317, - "c7": 5.378728136870754 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [86, 146, 138] }, @@ -279915,23 +279915,23 @@ "year": 1786, "resistanceReported": false, "duration": 49420800, - "curveSeeds": { - "c1": 37.039330872235595, - "c2": -41.68700418723446, - "c3": -48.612048731342874, - "c4": 46.56471049508029, - "c5": 57.086981339314235, - "c6": -2.5834220079064494, - "c7": 43.072091528034406 + "points": { + "c1": -20.950090733754266, + "c2": -10.724607952578324, + "c3": -49.443223795359295, + "c4": 40.337187290486696, + "c5": 5.59517339311617, + "c6": 41.94165713262814, + "c7": -23.37131756732783 }, - "vertexSeeds": { - "c1": 2.0493917231922305, - "c2": 2.2540413135195765, - "c3": 2.2055879678677632, - "c4": 1.8818856444287806, - "c5": 1.8996281068522398, - "c6": 1.8869721531759798, - "c7": 1.8911414807367808 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746185, + "c3": 2.727693018955155, + "c4": 2.1821544151641232, + "c5": 1.636615811373091, + "c6": 1.0910772075820616, + "c7": 0.5455386037910296 }, "rgb": [238, 201, 159] }, @@ -279942,23 +279942,23 @@ "year": 1785, "resistanceReported": true, "duration": 28857600, - "curveSeeds": { - "c1": 25.163255426079175, - "c2": -32.004732505495156, - "c3": -4.696050652592646, - "c4": 8.754578897983414, - "c5": -18.630805723033788, - "c6": -19.64807160906176, - "c7": -37.48879281122754 + "points": { + "c1": -26.5881735032403, + "c2": -3.6382803016530474, + "c3": -43.25762101603114, + "c4": 3.4612637009254783, + "c5": -19.475280235498715, + "c6": 38.34205920728222, + "c7": 15.072466943579975 }, - "vertexSeeds": { - "c1": 5.7815179085111605, - "c2": 4.880650466615184, - "c3": 5.167195735871832, - "c4": 5.072922517638174, - "c5": 5.289863382229706, - "c6": 4.7040805335053415, - "c7": 5.889183714452933 + "offsets": { + "c1": 10, + "c2": 8.571428571428573, + "c3": 7.142857142857145, + "c4": 5.714285714285717, + "c5": 4.28571428571429, + "c6": 2.857142857142855, + "c7": 1.4285714285714315 }, "rgb": [86, 146, 138] }, @@ -279969,23 +279969,23 @@ "year": 1786, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -30.30291124022152, - "c2": 34.236429889618094, - "c3": -36.87410584060493, - "c4": -12.402574403959036, - "c5": -15.554078521835294, - "c6": 29.645321270670976, - "c7": -25.758574076441853 + "points": { + "c1": 47.1010709945417, + "c2": 30.712824226017673, + "c3": 46.28513888396982, + "c4": 19.5601111001193, + "c5": 16.97732389542034, + "c6": 8.659963363793658, + "c7": -31.061725998363563 }, - "vertexSeeds": { - "c1": 7.822151508083822, - "c2": 7.89058091101, - "c3": 8.222648998099762, - "c4": 8.064647937987472, - "c5": 8.689670672230973, - "c6": 8.03651190601103, - "c7": 7.883581308405006 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099856, + "c3": 10.402219140083222, + "c4": 8.321775312066574, + "c5": 6.241331484049928, + "c6": 4.160887656033295, + "c7": 2.0804438280166475 }, "rgb": [86, 146, 138] }, @@ -279996,23 +279996,23 @@ "year": 1785, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -4.087367928221447, - "c2": -3.713106643120554, - "c3": 7.253306086398744, - "c4": -27.79738414617287, - "c5": -1.2021561793313396, - "c6": -2.2745696112042495, - "c7": -22.305254186794507 + "points": { + "c1": 30.503298366076862, + "c2": -36.39994115628727, + "c3": 37.67925509370711, + "c4": -7.94922101479164, + "c5": 25.11853156500169, + "c6": -29.303050425899972, + "c7": 10.964240911924954 }, - "vertexSeeds": { - "c1": 10.519002337231994, - "c2": 10.831413248065818, - "c3": 10.756440523849434, - "c4": 10.398986912591534, - "c5": 10.368965503405274, - "c6": 10.859525250667826, - "c7": 10.78472975394058 + "offsets": { + "c1": 18.25242718446602, + "c2": 15.644937586685153, + "c3": 13.037447988904283, + "c4": 10.429958391123415, + "c5": 7.822468793342603, + "c6": 5.214979195561735, + "c7": 2.6074895977808676 }, "rgb": [238, 201, 159] }, @@ -280023,23 +280023,23 @@ "year": 1786, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 40.85514630192305, - "c2": -7.556141713102228, - "c3": 22.756344821389483, - "c4": -4.033898182631269, - "c5": 49.542533030140355, - "c6": 37.21203607913494, - "c7": 50.60096478922322 + "points": { + "c1": 24.846750399907556, + "c2": -45.07772910633388, + "c3": 50.25655599311086, + "c4": 44.53452520682351, + "c5": -53.034847569039, + "c6": -50.93779511996109, + "c7": -31.33591209184047 }, - "vertexSeeds": { - "c1": 4.976259620956756, - "c2": 4.9454553108261035, - "c3": 5.163384088252196, - "c4": 5.19274804569561, - "c5": 4.99995780284239, - "c6": 4.57208333075013, - "c7": 4.855449923423396 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423026, + "c3": 6.564956079519193, + "c4": 5.251964863615348, + "c5": 3.938973647711513, + "c6": 2.625982431807679, + "c7": 1.3129912159038395 }, "rgb": [238, 201, 159] }, @@ -280050,23 +280050,23 @@ "year": 1785, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 21.280453711298374, - "c2": -23.071808078445443, - "c3": -19.162738334000792, - "c4": -20.114657738969946, - "c5": 7.553695828517117, - "c6": -17.62284483004673, - "c7": 11.878655712266042 + "points": { + "c1": -20.33995130017379, + "c2": 17.38457095301214, + "c3": 20.912278300190483, + "c4": -26.534244832635004, + "c5": 7.222759392386688, + "c6": -5.2523893903407775, + "c7": 6.461133865531568 }, - "vertexSeeds": { - "c1": 5.235269933527895, - "c2": 5.491608798475065, - "c3": 5.371402863119144, - "c4": 5.250854941566712, - "c5": 5.229149196396205, - "c6": 5.402051404049071, - "c7": 5.045010627420241 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423017, + "c3": 6.564956079519196, + "c4": 5.251964863615352, + "c5": 3.9389736477115087, + "c6": 2.625982431807687, + "c7": 1.3129912159038435 }, "rgb": [86, 146, 138] }, @@ -280077,23 +280077,23 @@ "year": 1785, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -4.316291856482248, - "c2": 10.066708135375933, - "c3": 25.029332439074345, - "c4": 8.96229999441011, - "c5": -5.366811911234539, - "c6": -26.305860973120755, - "c7": 9.02087207440696 + "points": { + "c1": 18.69787275305226, + "c2": 13.138583079638039, + "c3": -18.37568650816948, + "c4": 0.6690044529485526, + "c5": 2.6090634387478318, + "c6": 6.647894830026374, + "c7": -27.73820999882563 }, - "vertexSeeds": { - "c1": 6.171588302557387, - "c2": 5.876769239555638, - "c3": 6.265693674505237, - "c4": 6.1213089912370755, - "c5": 5.938498899106004, - "c6": 6.249096036794467, - "c7": 6.335050988644665 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.12621359223301, + "c3": 7.605177993527509, + "c4": 6.084142394822006, + "c5": 4.563106796116505, + "c6": 3.042071197411003, + "c7": 1.5210355987055015 }, "rgb": [77, 76, 132] }, @@ -280104,23 +280104,23 @@ "year": 1785, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -21.575803378505128, - "c2": 2.0567417090916713, - "c3": -8.346795239571323, - "c4": 16.52967610493129, - "c5": -14.794273452657118, - "c6": -15.841332767277187, - "c7": -6.913655233812902 + "points": { + "c1": 8.36947452957493, + "c2": -1.2857919830060602, + "c3": 14.774738543892745, + "c4": -5.5398139650470135, + "c5": 5.847997399801965, + "c6": 3.06305836574456, + "c7": 3.1386115284878073 }, - "vertexSeeds": { - "c1": 8.01358764067872, - "c2": 7.866870839789922, - "c3": 8.547093959994891, - "c4": 8.353188003308198, - "c5": 8.332956546411378, - "c6": 8.300020864683429, - "c7": 8.249136406958263 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737866, + "c3": 10.19417475728156, + "c4": 8.155339805825252, + "c5": 6.116504854368944, + "c6": 4.077669902912615, + "c7": 2.0388349514563076 }, "rgb": [238, 201, 159] }, @@ -280131,23 +280131,23 @@ "year": 1786, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 8.254724821280703, - "c2": 30.832250470217474, - "c3": 14.089961670379147, - "c4": -35.51979183072388, - "c5": -13.338652892835483, - "c6": -16.945941572450984, - "c7": 10.496680775270192 + "points": { + "c1": -42.1289579948748, + "c2": 33.041521834145115, + "c3": 13.098131154110618, + "c4": 17.957514179482175, + "c5": -17.831192947285327, + "c6": -29.4307043316221, + "c7": 33.568669249918656 }, - "vertexSeeds": { - "c1": 8.264427923324122, - "c2": 8.854039457524987, - "c3": 9.394588409974713, - "c4": 9.227966748279306, - "c5": 8.378089275594032, - "c6": 9.054025958798649, - "c7": 9.24263293216537 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668519, + "c3": 11.303744798890426, + "c4": 9.042995839112342, + "c5": 6.782246879334259, + "c6": 4.521497919556177, + "c7": 2.2607489597780828 }, "rgb": [222, 0, 59] }, @@ -280158,23 +280158,23 @@ "year": 1785, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -32.52396357880357, - "c2": -36.80074721943822, - "c3": -34.29671999431304, - "c4": -31.405859580047267, - "c5": 15.207823761797435, - "c6": 11.803817386806209, - "c7": -22.517262089299678 + "points": { + "c1": -24.504584475384053, + "c2": 14.655036068526407, + "c3": -6.847214422495625, + "c4": -19.66231056203891, + "c5": 36.09687190192355, + "c6": 0.16262619899984543, + "c7": -8.34633984165892 }, - "vertexSeeds": { - "c1": 5.798466897304729, - "c2": 5.795458957719464, - "c3": 5.80033415420428, - "c4": 5.806800217586488, - "c5": 5.796565665256093, - "c6": 5.798626940201436, - "c7": 5.800608283875521 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066338, + "c3": 6.934812760055557, + "c4": 5.547850208044225, + "c5": 4.160887656033444, + "c6": 2.7739251040221125, + "c7": 1.386962552011332 }, "rgb": [238, 201, 159] }, @@ -280185,23 +280185,23 @@ "year": 1785, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 3.5807406971494693, - "c2": -3.0820850558203787, - "c3": -24.522407937471417, - "c4": -4.163819521245234, - "c5": -1.6163192856271102, - "c6": 16.226406903114928, - "c7": 0.7286648199669443 + "points": { + "c1": 26.24100356179637, + "c2": 3.8408085088501522, + "c3": -3.468273159121175, + "c4": -9.278345642869233, + "c5": 2.3534500003942256, + "c6": 16.4646727171298, + "c7": 16.97860075048017 }, - "vertexSeeds": { - "c1": 8.025447067515898, - "c2": 7.601366628845708, - "c3": 7.846200933240803, - "c4": 7.43057726795875, - "c5": 7.676992808687551, - "c6": 7.54890137151017, - "c7": 7.91775537353585 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410078, + "c4": 7.6745261211280615, + "c5": 5.7558945908460455, + "c6": 3.8372630605640308, + "c7": 1.9186315302820154 }, "rgb": [77, 76, 132] }, @@ -280212,23 +280212,23 @@ "year": 1785, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 20.29477123227396, - "c2": 13.014063915008364, - "c3": 23.44921348961355, - "c4": 1.8003215660130003, - "c5": -7.3884534502073365, - "c6": -6.896702304499577, - "c7": -12.776574524018969 + "points": { + "c1": -2.024323663263676, + "c2": -25.98505823713099, + "c3": -6.083770526182619, + "c4": -5.077359779895517, + "c5": 3.806569438340521, + "c6": -24.554740397111026, + "c7": -13.589553557298629 }, - "vertexSeeds": { - "c1": 6.699234345163422, - "c2": 7.174677466957567, - "c3": 6.8029855705687705, - "c4": 6.871590020643758, - "c5": 7.028649095664782, - "c6": 6.865040124527878, - "c7": 6.686166505717191 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922324, + "c3": 8.576051779935284, + "c4": 6.860841423948224, + "c5": 5.145631067961162, + "c6": 3.4304207119741004, + "c7": 1.7152103559870613 }, "rgb": [238, 201, 159] }, @@ -280239,23 +280239,23 @@ "year": 1785, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 23.458998753429476, - "c2": 10.558905553362806, - "c3": -17.292592683732543, - "c4": -19.089757586466035, - "c5": 27.846647746500814, - "c6": 2.7811951508790003, - "c7": 25.26576079850478 + "points": { + "c1": 28.9648948881677, + "c2": -36.82624342453479, + "c3": -16.77124147772497, + "c4": -29.1087502953037, + "c5": -19.43205763517603, + "c6": -10.892050804248363, + "c7": 33.49340034774365 }, - "vertexSeeds": { - "c1": 12.748502837817382, - "c2": 13.727930912946938, - "c3": 13.94213511588217, - "c4": 14.181861606802983, - "c5": 13.318382387306869, - "c6": 13.539590097985089, - "c7": 14.083333874253507 + "offsets": { + "c1": 23.948220064724918, + "c2": 20.527045769764218, + "c3": 17.10587147480352, + "c4": 13.68469717984282, + "c5": 10.263522884882123, + "c6": 6.842348589921423, + "c7": 3.421174294960725 }, "rgb": [222, 0, 59] }, @@ -280266,23 +280266,23 @@ "year": 1785, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -5.727588646199965, - "c2": 22.232290822564146, - "c3": -0.3470992288807331, - "c4": -21.79158642795027, - "c5": -5.764290201754015, - "c6": 15.734505375647664, - "c7": -0.5146618672555476 + "points": { + "c1": -13.316298022419536, + "c2": -3.6181448809442003, + "c3": 2.5523428029165096, + "c4": -24.616984138955786, + "c5": -14.815379081764688, + "c6": 9.258293374933892, + "c7": 13.423241766282956 }, - "vertexSeeds": { - "c1": 9.081017643716299, - "c2": 9.30208554041799, - "c3": 9.012028560125074, - "c4": 9.402668491832312, - "c5": 9.395198381920746, - "c6": 9.47836886561805, - "c7": 9.082783581514857 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.61997226074897, + "c3": 11.349976883957464, + "c4": 9.07998150716598, + "c5": 6.809986130374473, + "c6": 4.53999075358299, + "c7": 2.2699953767915058 }, "rgb": [86, 146, 138] }, @@ -280293,23 +280293,23 @@ "year": 1785, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 16.487103194379323, - "c2": 6.936741218070239, - "c3": 2.091699792428468, - "c4": 24.67312822620802, - "c5": -7.05308264359833, - "c6": -2.8723700139084727, - "c7": 13.262760865173952 + "points": { + "c1": 8.456432310111474, + "c2": -24.9018450162098, + "c3": -26.54776999635673, + "c4": 20.642710416494253, + "c5": 17.487948157770482, + "c6": 15.298605462616834, + "c7": 16.349157581322004 }, - "vertexSeeds": { - "c1": 3.0310880829015545, - "c2": 3.0310880829015545, - "c3": 3.0310880829015545, - "c4": 3.0310880829015545, - "c5": 3.0310880829015545, - "c6": 3.0310880829015545, - "c7": 3.0310880829015545 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -280320,23 +280320,23 @@ "year": 1786, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 27.634438672980004, - "c2": -28.355324136725404, - "c3": 23.111526447678663, - "c4": -41.78860791130403, - "c5": -24.87091474720337, - "c6": -41.884598887088345, - "c7": 20.950831206354486 + "points": { + "c1": -18.2471189819551, + "c2": 34.0839465901634, + "c3": 0.48928609530779, + "c4": 4.983651878965333, + "c5": -26.118331527854895, + "c6": 30.378521698057405, + "c7": -31.13705876389941 }, - "vertexSeeds": { - "c1": 5.881984645224797, - "c2": 5.852901259156918, - "c3": 5.792135107447653, - "c4": 5.72757424310872, - "c5": 5.73973570030117, - "c6": 5.7898762256892295, - "c7": 5.908063297662726 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388367, + "c3": 7.119741100323618, + "c4": 5.695792880258913, + "c5": 4.271844660194162, + "c6": 2.8478964401294564, + "c7": 1.4239482200647062 }, "rgb": [238, 201, 159] }, @@ -280347,23 +280347,23 @@ "year": 1785, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -17.69102731543609, - "c2": -20.933765547917947, - "c3": -35.82259759608948, - "c4": 12.146377015388147, - "c5": 18.29004129163492, - "c6": 37.21533808110852, - "c7": -18.548149723975484 + "points": { + "c1": -23.959038320099175, + "c2": 39.81877079861645, + "c3": 19.482307214644543, + "c4": 26.35864724656856, + "c5": -37.34247810732762, + "c6": -28.281308264027672, + "c7": 23.014719834514246 }, - "vertexSeeds": { - "c1": 3.0709198707941625, - "c2": 3.547562326148496, - "c3": 3.6874112193924278, - "c4": 3.8320866575291346, - "c5": 3.4480318686270475, - "c6": 3.0266011911571713, - "c7": 3.208786255534393 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044383, + "c3": 4.623208506703652, + "c4": 3.698566805362919, + "c5": 2.7739251040221897, + "c6": 1.8492834026814595, + "c7": 0.9246417013407298 }, "rgb": [86, 146, 138] }, @@ -280374,23 +280374,23 @@ "year": 1785, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -9.399839360837277, - "c2": -9.022194758972034, - "c3": -24.432813376144402, - "c4": 6.031239692891038, - "c5": -2.3543447297117837, - "c6": 24.62705593480423, - "c7": 14.116757266114337 + "points": { + "c1": -24.461457334039046, + "c2": 8.662282764957745, + "c3": -21.909773234454953, + "c4": -6.0351516480393315, + "c5": -7.1522089919652, + "c6": -23.77879629674348, + "c7": 30.990607645086214 }, - "vertexSeeds": { - "c1": 7.087013498699942, - "c2": 6.793161953274369, - "c3": 7.1705488231387795, - "c4": 7.181281228256897, - "c5": 7.108904426656778, - "c6": 6.852103953246678, - "c7": 6.804520570315623 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364779, + "c3": 8.830328247803967, + "c4": 7.064262598243178, + "c5": 5.298196948682389, + "c6": 3.5321312991216, + "c7": 1.7660656495607892 }, "rgb": [77, 76, 132] }, @@ -280401,23 +280401,23 @@ "year": 1785, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -14.874188067418753, - "c2": -18.046878020981623, - "c3": 26.99963187751829, - "c4": -14.597263481674581, - "c5": 20.609897133549644, - "c6": -30.1036757509874, - "c7": 11.574465838039842 + "points": { + "c1": 26.468257452058545, + "c2": -18.159442509270658, + "c3": -9.380320063326714, + "c4": 8.86923561523512, + "c5": 17.058170984997155, + "c6": -3.078302719867416, + "c7": -29.722554419430537 }, - "vertexSeeds": { - "c1": 3.8053790368350797, - "c2": 3.7872008005384985, - "c3": 3.776832180720065, - "c4": 3.7512376506463307, - "c5": 3.765801638282692, - "c6": 3.7957207370673194, - "c7": 3.786486048774389 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923743, + "c3": 4.55386037910309, + "c4": 3.6430883032824957, + "c5": 2.7323162274618418, + "c6": 1.8215441516412478, + "c7": 0.9107720758205937 }, "rgb": [58, 15, 49] }, @@ -280428,23 +280428,23 @@ "year": 1786, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 14.065273116743043, - "c2": 25.751295574208264, - "c3": 32.511512519238444, - "c4": -0.4006695411129684, - "c5": 38.73141215907423, - "c6": -27.84273289547351, - "c7": 40.559960587645485 + "points": { + "c1": 17.116446156172493, + "c2": 31.923225160629705, + "c3": -13.644685827719428, + "c4": -42.51130055122875, + "c5": 5.989627088614824, + "c6": 8.395348382960186, + "c7": 38.27190680494956 }, - "vertexSeeds": { - "c1": 3.2388179553586607, - "c2": 3.095562518905491, - "c3": 3.0973576127943625, - "c4": 3.1076089999951955, - "c5": 3.0313046769319256, - "c6": 3.0761612581055044, - "c7": 3.1798597924554954 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.66019417475728, + "c3": 3.8834951456310645, + "c4": 3.1067961165048494, + "c5": 2.330097087378634, + "c6": 1.5533980582524307, + "c7": 0.7766990291262154 }, "rgb": [77, 76, 132] }, @@ -280455,23 +280455,23 @@ "year": 1785, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 21.04174520895173, - "c2": 9.693006015587436, - "c3": 6.246742358727317, - "c4": 22.631005476363498, - "c5": -11.23487590537661, - "c6": 6.799187542778029, - "c7": -5.2739509991628175 + "points": { + "c1": -23.514486770796424, + "c2": -21.291967966422042, + "c3": 13.433145195767509, + "c4": 3.1550385096278752, + "c5": 18.920735453038567, + "c6": 9.15870363353502, + "c7": 8.961792601064573 }, - "vertexSeeds": { - "c1": 4.181463068326061, - "c2": 4.148689377940859, - "c3": 4.270793928750488, - "c4": 4.263068897387123, - "c5": 4.046834218358274, - "c6": 4.167850144847644, - "c7": 4.082395000923332 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.1303744798890465, + "c3": 5.10864539990753, + "c4": 4.0869163199260266, + "c5": 3.0651872399445232, + "c6": 2.043458159963007, + "c7": 1.0217290799815035 }, "rgb": [238, 201, 159] }, @@ -280482,23 +280482,23 @@ "year": 1786, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -19.436118718258715, - "c2": -37.678316581224465, - "c3": -36.451635903126814, - "c4": 21.147888142848593, - "c5": 37.792045376430686, - "c6": 42.203560511607414, - "c7": -5.6375564210679485 + "points": { + "c1": -28.101209783593564, + "c2": -41.27730572816143, + "c3": -11.146889684999628, + "c4": -17.04644938734437, + "c5": -20.075729971009526, + "c6": -45.24655852979509, + "c7": -13.081936196919884 }, - "vertexSeeds": { - "c1": 8.193158716234269, - "c2": 8.415381350501871, - "c3": 8.571960783705594, - "c4": 8.490161623512067, - "c5": 7.96991351387878, - "c6": 8.592609975746377, - "c7": 8.52678079690773 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858526, + "c3": 10.263522884882102, + "c4": 8.210818307905678, + "c5": 6.158113730929253, + "c6": 4.105409153952849, + "c7": 2.0527045769764247 }, "rgb": [238, 201, 159] }, @@ -280509,23 +280509,23 @@ "year": 1786, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": 46.993462056588136, - "c2": -23.133128844862973, - "c3": 3.5382765146668618, - "c4": -8.297670111364674, - "c5": -31.550461376619424, - "c6": 7.888101338265727, - "c7": -42.204470905952356 + "points": { + "c1": 0.48036297076999546, + "c2": -28.63355345040422, + "c3": -1.7228971141501432, + "c4": 27.082637583177466, + "c5": 11.158299523250164, + "c6": -25.194499148778366, + "c7": -8.97815984537283 }, - "vertexSeeds": { - "c1": 5.228698565310679, - "c2": 5.21398353573311, - "c3": 4.889523982922885, - "c4": 5.281319910100907, - "c5": 5.005315053160993, - "c6": 5.212639674818787, - "c7": 4.982630475491586 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -280536,23 +280536,23 @@ "year": 1785, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 5.643480906065548, - "c2": -19.930541606043505, - "c3": -16.531324633212446, - "c4": -5.587876098184296, - "c5": -6.141892729652039, - "c6": 18.31422390376425, - "c7": 1.038910616574995 + "points": { + "c1": 22.077147370333698, + "c2": -27.315688912540487, + "c3": 21.55034523570255, + "c4": -2.2335681097061553, + "c5": 22.980391483523647, + "c6": 8.785760628602247, + "c7": 26.167856705229113 }, - "vertexSeeds": { - "c1": 4.1307722000878275, - "c2": 4.221105207726722, - "c3": 4.303181075538689, - "c4": 4.3260582231115166, - "c5": 4.244560131888151, - "c6": 4.132953241620555, - "c7": 4.280166014206052 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049925, + "c3": 5.2011095700416154, + "c4": 4.160887656033289, + "c5": 3.1206657420249626, + "c6": 2.0804438280166533, + "c7": 1.0402219140083266 }, "rgb": [58, 15, 49] }, @@ -280563,23 +280563,23 @@ "year": 1785, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -15.242695235740172, - "c2": 30.001225356238464, - "c3": -22.80511877324107, - "c4": 0.9293954385950016, - "c5": 10.840747718341035, - "c6": -12.113237750471324, - "c7": 32.293909090581195 + "points": { + "c1": -38.35383566108403, + "c2": -1.5482318535193969, + "c3": -20.13576218432927, + "c4": 0.6134198442870371, + "c5": 38.54213025351696, + "c6": 2.9175719192758436, + "c7": 30.44691436031036 }, - "vertexSeeds": { - "c1": 5.734043609967465, - "c2": 5.91272523842243, - "c3": 5.705602358259227, - "c4": 5.784092413549243, - "c5": 5.827186500884352, - "c6": 5.975402670138915, - "c7": 5.927220287385201 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589471, + "c3": 7.235321312991212, + "c4": 5.788257050392982, + "c5": 4.341192787794722, + "c6": 2.894128525196491, + "c7": 1.4470642625982308 }, "rgb": [77, 76, 132] }, @@ -280590,23 +280590,23 @@ "year": 1785, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -7.736968012835042, - "c2": 15.437749058127956, - "c3": 31.190890425838035, - "c4": -25.22072492040389, - "c5": 27.39815627626573, - "c6": 25.045927329402986, - "c7": -24.755861033460217 + "points": { + "c1": -22.462717446583, + "c2": -0.703505183183573, + "c3": -26.72509729757943, + "c4": 24.976987884951242, + "c5": -1.5597348203999246, + "c6": -19.769740094431036, + "c7": 25.752002997471493 }, - "vertexSeeds": { - "c1": 7.848014250224108, - "c2": 8.052542368361008, - "c3": 8.045386493109657, - "c4": 7.9036161994144845, - "c5": 8.177199627836838, - "c6": 8.028976025198894, - "c7": 8.11062653690818 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.92787794729542, + "c3": 9.939898289412843, + "c4": 7.951918631530269, + "c5": 5.963938973647695, + "c6": 3.97595931576515, + "c7": 1.987979657882575 }, "rgb": [86, 146, 138] }, @@ -280617,23 +280617,23 @@ "year": 1785, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 4.879026329519117, - "c2": 20.704910893469055, - "c3": 2.2539267063176567, - "c4": 18.0866924718321, - "c5": -14.055046760267704, - "c6": -0.4812812067552379, - "c7": 14.949773472050524 + "points": { + "c1": 13.155565063122253, + "c2": 18.551898609421684, + "c3": 25.926647030189102, + "c4": 6.713784444853971, + "c5": -3.8723788428913437, + "c6": -9.32541685804507, + "c7": -13.181094571428797 }, - "vertexSeeds": { - "c1": 7.276932231433631, - "c2": 7.2134542756618325, - "c3": 7.488735195512501, - "c4": 7.511973832694243, - "c5": 7.144117829128784, - "c6": 7.047208832714053, - "c7": 7.370687182760935 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807207, + "c3": 9.084604715672668, + "c4": 7.267683772538132, + "c5": 5.450762829403593, + "c6": 3.6338418862690767, + "c7": 1.8169209431345383 }, "rgb": [77, 76, 132] }, @@ -280644,23 +280644,23 @@ "year": 1786, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": -43.36053288351744, - "c2": 27.464723106815597, - "c3": -35.088979246221314, - "c4": -11.305718931490333, - "c5": 27.808943437783697, - "c6": 47.03072167505853, - "c7": 35.06097174661481 + "points": { + "c1": -3.671411436525972, + "c2": -22.319127774526056, + "c3": -28.892153801932363, + "c4": -5.051906482485144, + "c5": -23.804640409091846, + "c6": -21.053588170262817, + "c7": -35.03906137453897 }, - "vertexSeeds": { - "c1": 11.02322277851989, - "c2": 11.890131936280397, - "c3": 12.377195257209774, - "c4": 11.414539753611091, - "c5": 10.681821945639289, - "c6": 10.513703659881408, - "c7": 10.464003628764415 + "offsets": { + "c1": 20.679611650485437, + "c2": 17.725381414701804, + "c3": 14.77115117891817, + "c4": 11.816920943134535, + "c5": 8.862690707350902, + "c6": 5.908460471567268, + "c7": 2.954230235783634 }, "rgb": [86, 146, 138] }, @@ -280671,23 +280671,23 @@ "year": 1785, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -3.094570876465383, - "c2": 4.867293959631578, - "c3": -9.01456140567663, - "c4": 11.890875226969719, - "c5": 15.35972792151901, - "c6": 6.742851388037529, - "c7": 18.42080183475347 + "points": { + "c1": -14.329342373678431, + "c2": -18.78766601267776, + "c3": -11.092729351155779, + "c4": -10.03085597913967, + "c5": -6.150486640659555, + "c6": 17.109432251747982, + "c7": -11.3254360979914 }, - "vertexSeeds": { - "c1": 6.766070205058924, - "c2": 6.606819770900984, - "c3": 5.953159073560318, - "c4": 6.218811327198855, - "c5": 6.4596997690101565, - "c6": 6.709616884000622, - "c7": 6.282380100154825 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077667, + "c3": 8.090614886731398, + "c4": 6.472491909385116, + "c5": 4.854368932038834, + "c6": 3.2362459546925644, + "c7": 1.6181229773462822 }, "rgb": [58, 15, 49] }, @@ -280698,23 +280698,23 @@ "year": 1785, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -18.14055139709003, - "c2": -2.6728884081112056, - "c3": 3.1103855818109096, - "c4": -20.038799885830194, - "c5": -10.804380404525254, - "c6": -9.273040944807061, - "c7": -17.670948855409762 + "points": { + "c1": 3.0110033748548943, + "c2": -4.627905582067811, + "c3": -7.657335892167403, + "c4": -21.9688757523323, + "c5": 16.53229072110114, + "c6": 24.54272284915436, + "c7": -21.188297593779318 }, - "vertexSeeds": { - "c1": 10.566944801731402, - "c2": 10.245509040538082, - "c3": 10.296354469910794, - "c4": 10.437494392242808, - "c5": 10.51024002538535, - "c6": 10.592701261098313, - "c7": 10.54345078712959 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.284327323162236, + "c3": 12.736939435968575, + "c4": 10.189551548774826, + "c5": 7.642163661581163, + "c6": 5.094775774387413, + "c7": 2.5473878871936626 }, "rgb": [58, 15, 49] }, @@ -280725,23 +280725,23 @@ "year": 1785, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 7.906412732424474, - "c2": 6.963552794553447, - "c3": 12.11852295260329, - "c4": 21.45413202997558, - "c5": 0.7282081700490828, - "c6": -3.3414533773760624, - "c7": -10.69711202287711 + "points": { + "c1": 7.369395684096645, + "c2": 21.057293590475595, + "c3": 20.601639062069317, + "c4": 30.190918256065657, + "c5": -26.598810349816418, + "c6": -23.31077408002949, + "c7": -30.115028179066115 }, - "vertexSeeds": { - "c1": 2.4226060856931473, - "c2": 2.4290275695312964, - "c3": 2.3969998134892134, - "c4": 2.4291827608192036, - "c5": 2.3997915645554637, - "c6": 2.3273709299246126, - "c7": 2.3716982673582634 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690665, + "c3": 3.028201571890894, + "c4": 2.422561257512711, + "c5": 1.8169209431345332, + "c6": 1.2112806287563556, + "c7": 0.6056403143781778 }, "rgb": [86, 146, 138] }, @@ -280752,23 +280752,23 @@ "year": 1786, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 14.276600510234324, - "c2": 41.55492728230962, - "c3": -5.629965445499948, - "c4": -28.225531365974586, - "c5": -11.004497592821274, - "c6": -10.972575456453448, - "c7": 34.73682923780197 + "points": { + "c1": 6.796268723744518, + "c2": 38.970252084065336, + "c3": 11.629639963096963, + "c4": -9.543689301189474, + "c5": 23.602188901659616, + "c6": 6.5909053470196, + "c7": 1.8130185083662482 }, - "vertexSeeds": { - "c1": 6.3113742192521745, - "c2": 8.38473730938771, - "c3": 8.1140802945234, - "c4": 6.086655511786192, - "c5": 6.963538549824782, - "c6": 6.86803087645632, - "c7": 7.099970405084473 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456309, + "c3": 10.032362459546926, + "c4": 8.02588996763754, + "c5": 6.019417475728154, + "c6": 4.01294498381877, + "c7": 2.006472491909385 }, "rgb": [222, 0, 59] }, @@ -280779,23 +280779,23 @@ "year": 1785, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -20.16587071036016, - "c2": -12.009514848928664, - "c3": -2.145355073325092, - "c4": -22.261780239664116, - "c5": 16.052816800531225, - "c6": 13.081904098363722, - "c7": -17.308605198760645 + "points": { + "c1": 21.213541890632314, + "c2": 24.22951234320948, + "c3": -5.293994155058318, + "c4": 11.401734725850467, + "c5": -7.966542145807896, + "c6": 27.385739371268883, + "c7": -2.7059027229219765 }, - "vertexSeeds": { - "c1": 9.759242224076385, - "c2": 9.830248537007286, - "c3": 9.766670838761282, - "c4": 9.8352915170524, - "c5": 9.612768946567128, - "c6": 9.946669984832546, - "c7": 9.647999037640453 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076266, + "c3": 12.112806287563576, + "c4": 9.690245030050844, + "c5": 7.267683772538133, + "c6": 4.845122515025422, + "c7": 2.422561257512711 }, "rgb": [77, 76, 132] }, @@ -280806,23 +280806,23 @@ "year": 1786, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -5.103818966597764, - "c2": -16.295189038139295, - "c3": -38.16965979859454, - "c4": 11.776887525034226, - "c5": -2.73910679804208, - "c6": 1.0504538450501286, - "c7": 26.582496384346555 + "points": { + "c1": -8.782637111169755, + "c2": 3.0725424464741593, + "c3": 3.83939519693417, + "c4": 43.39328209536677, + "c5": -20.591569761164173, + "c6": -27.091762108846183, + "c7": 30.224217620218525 }, - "vertexSeeds": { - "c1": 7.663777429048964, - "c2": 9.824007049013993, - "c3": 8.734930116624131, - "c4": 9.369200662448202, - "c5": 8.5287985946435, - "c6": 9.799910386048294, - "c7": 8.67152455168036 + "offsets": { + "c1": 16.73139158576052, + "c2": 14.34119278779473, + "c3": 11.950993989828943, + "c4": 9.560795191863154, + "c5": 7.170596393897365, + "c6": 4.780397595931577, + "c7": 2.3901987979657884 }, "rgb": [86, 146, 138] }, @@ -280833,23 +280833,23 @@ "year": 1786, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 12.659523776355847, - "c2": 29.246208057967436, - "c3": 36.87764202810489, - "c4": -20.022169550637592, - "c5": -12.869798425154912, - "c6": 36.33034396022289, - "c7": -29.959579090409783 + "points": { + "c1": -22.760053109246343, + "c2": 0.22779226590402146, + "c3": 24.97647486335738, + "c4": -20.093298659346996, + "c5": 36.41156812034062, + "c6": 7.387226206834555, + "c7": -4.291940912438747 }, - "vertexSeeds": { - "c1": 0.26350957221014704, - "c2": 0.25487744333534645, - "c3": 0.25550542806685317, - "c4": 0.2711822311795987, - "c5": 0.26718375767801517, - "c6": 0.2694825586759761, - "c7": 0.26388029640091243 + "offsets": { + "c1": 0.48543689320388345, + "c2": 0.4160887656033289, + "c3": 0.3467406380027735, + "c4": 0.27739251040221896, + "c5": 0.20804438280166446, + "c6": 0.13869625520110906, + "c7": 0.06934812760055453 }, "rgb": [77, 76, 132] }, @@ -280860,23 +280860,23 @@ "year": 1786, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -21.668502273429183, - "c2": -0.7566865046804381, - "c3": -39.78315144160148, - "c4": 7.320847008095704, - "c5": 35.794660936579156, - "c6": -9.698450516759515, - "c7": -21.697033815929295 + "points": { + "c1": 33.761044267714446, + "c2": 28.430141792945427, + "c3": 40.67827666914635, + "c4": 8.752072608490558, + "c5": -7.747566682650351, + "c6": -33.58150688376793, + "c7": -35.30267084019319 }, - "vertexSeeds": { - "c1": 4.027901343738785, - "c2": 4.022099094178564, - "c3": 4.025007616250428, - "c4": 4.028252767283517, - "c5": 4.0261674211399185, - "c6": 4.035522126703963, - "c7": 4.02331521455599 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406408, + "c3": 4.831252889505372, + "c4": 3.8650023116043357, + "c5": 2.898751733703108, + "c6": 1.9325011558020717, + "c7": 0.9662505779010359 }, "rgb": [86, 146, 138] }, @@ -280887,23 +280887,23 @@ "year": 1785, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 23.589540869932023, - "c2": -7.898294229977463, - "c3": -4.042183494007279, - "c4": -19.4345874396467, - "c5": 32.311470591611055, - "c6": 29.49847795712877, - "c7": -11.42981365451617 + "points": { + "c1": -18.01707465194118, + "c2": -18.477886679528478, + "c3": -36.79669627764724, + "c4": 15.020812252570174, + "c5": -2.6360046017878105, + "c6": -21.250824699971787, + "c7": -17.182446013599563 }, - "vertexSeeds": { - "c1": 8.452712205880543, - "c2": 8.184326193684575, - "c3": 8.0094377335326, - "c4": 7.923911274321767, - "c5": 8.279290151965956, - "c6": 8.477861981711623, - "c7": 8.500312323730682 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [58, 15, 49] }, @@ -280914,23 +280914,23 @@ "year": 1785, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -13.539949752256797, - "c2": 3.096934128990341, - "c3": 17.81276071614472, - "c4": 14.571168870132556, - "c5": -11.512447049949596, - "c6": -17.31957970504377, - "c7": -17.678709669262503 + "points": { + "c1": -20.175291727486176, + "c2": 5.673070615074348, + "c3": 0.3183827840802458, + "c4": -20.84558934984581, + "c5": 20.725676483769394, + "c6": -21.51068772123718, + "c7": 22.643304499217646 }, - "vertexSeeds": { - "c1": 4.765334998646494, - "c2": 4.763898261874558, - "c3": 4.775027321596332, - "c4": 4.609830612986532, - "c5": 4.55846398620653, - "c6": 4.743702556960384, - "c7": 4.818250119246681 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176144, + "c3": 5.848358760980121, + "c4": 4.678687008784096, + "c5": 3.509015256588072, + "c6": 2.339343504392048, + "c7": 1.169671752196024 }, "rgb": [86, 146, 138] }, @@ -280941,23 +280941,23 @@ "year": 1786, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": -43.46923917140043, - "c2": 42.10141731611542, - "c3": 58.32701939998699, - "c4": 20.417396332980395, - "c5": 27.530237797865887, - "c6": 17.53411404106817, - "c7": 10.104066201433191 + "points": { + "c1": 8.14883670915534, + "c2": -29.13774520268364, + "c3": 23.797611854574463, + "c4": -29.844980625054696, + "c5": 15.43141531036246, + "c6": 14.889033993443952, + "c7": 13.485957348553391 }, - "vertexSeeds": { - "c1": 2.480156185425736, - "c2": 2.440613353868393, - "c3": 2.475669952809761, - "c4": 2.4421041822911906, - "c5": 2.3501788579637144, - "c6": 2.4751709518148135, - "c7": 2.234367990855341 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.661581137309294, + "c3": 3.051317614424411, + "c4": 2.4410540915395273, + "c5": 1.8307905686546437, + "c6": 1.2205270457697637, + "c7": 0.6102635228848802 }, "rgb": [238, 201, 159] }, @@ -280968,23 +280968,23 @@ "year": 1785, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -17.9519745894746, - "c2": -6.567457034962931, - "c3": -11.767168265003814, - "c4": -28.075988068994427, - "c5": 0.0892263268676281, - "c6": 12.741348345926383, - "c7": -20.62842524132502 + "points": { + "c1": 8.864872368381675, + "c2": 8.263341339797769, + "c3": -20.105511861676263, + "c4": -10.931004344753536, + "c5": 22.53919931609058, + "c6": 10.16510533772258, + "c7": 7.548844748248911 }, - "vertexSeeds": { - "c1": 9.186300675816867, - "c2": 9.452008966795429, - "c3": 9.199735954269464, - "c4": 8.88971658495712, - "c5": 9.238802039009242, - "c6": 9.017398161117649, - "c7": 9.375059168234095 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.536754507628304, + "c3": 11.28062875635691, + "c4": 9.024503005085537, + "c5": 6.7683772538141405, + "c6": 4.512251502542768, + "c7": 2.256125751271395 }, "rgb": [77, 76, 132] }, @@ -280995,23 +280995,23 @@ "year": 1786, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 11.139554182291022, - "c2": -9.979865539828097, - "c3": -9.429871590178777, - "c4": -29.276179146003372, - "c5": -22.41033662253165, - "c6": -42.607418892652625, - "c7": 0.587456043751466 + "points": { + "c1": -32.61736592910228, + "c2": 42.18248269753652, + "c3": 1.6900483503907822, + "c4": 9.913231245192776, + "c5": 43.7502425493063, + "c6": -20.16961588934908, + "c7": -22.38537243436661 }, - "vertexSeeds": { - "c1": 6.86156687118222, - "c2": 6.99630636310386, - "c3": 7.149676163838054, - "c4": 6.90561322494378, - "c5": 6.910248276496913, - "c6": 6.862356972784463, - "c7": 7.175087016535133 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083208, + "c3": 8.668515950069352, + "c4": 6.934812760055472, + "c5": 5.201109570041616, + "c6": 3.467406380027736, + "c7": 1.7337031900138802 }, "rgb": [238, 201, 159] }, @@ -281022,23 +281022,23 @@ "year": 1785, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -28.489075502037572, - "c2": 6.043668168756206, - "c3": -29.55448248066158, - "c4": -3.4386323656091236, - "c5": 32.22516337335087, - "c6": 23.316546214835256, - "c7": -5.033279419446767 + "points": { + "c1": 20.98310649174593, + "c2": -2.592005472575039, + "c3": -22.914067510363324, + "c4": 2.6974745331966616, + "c5": 31.488744886318543, + "c6": 29.679398300543895, + "c7": -14.57672824015281 }, - "vertexSeeds": { - "c1": 4.941901060373922, - "c2": 4.841790633233987, - "c3": 4.657286170090567, - "c4": 4.827070329604885, - "c5": 4.9699627372088475, - "c6": 4.8918420068442305, - "c7": 4.928503761723834 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [86, 146, 138] }, @@ -281049,23 +281049,23 @@ "year": 1786, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -13.503326860529267, - "c2": 13.036898987789584, - "c3": 40.83484201578163, - "c4": 37.13239511333417, - "c5": 4.168981694492402, - "c6": 30.000423641377765, - "c7": 43.59207908818375 + "points": { + "c1": 11.825461879058082, + "c2": 46.120602931142415, + "c3": -44.64165903918016, + "c4": 18.375644907660032, + "c5": -35.04142324206723, + "c6": 40.34691453830732, + "c7": 39.651308090255895 }, - "vertexSeeds": { - "c1": 8.609132316882091, - "c2": 8.420470363450896, - "c3": 8.60942480635509, - "c4": 8.527964233779688, - "c5": 8.842926067390936, - "c6": 8.851929866998333, - "c7": 8.199886212229185 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381423, + "c3": 10.564031437817842, + "c4": 8.451225150254283, + "c5": 6.338418862690701, + "c6": 4.225612575127141, + "c7": 2.112806287563581 }, "rgb": [222, 0, 59] }, @@ -281076,23 +281076,23 @@ "year": 1786, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 19.637467695936486, - "c2": 30.134818616788777, - "c3": -3.328262931456024, - "c4": -24.059738698107118, - "c5": -11.95447410496897, - "c6": -26.963742163031533, - "c7": 33.84249999050097 + "points": { + "c1": -25.66951992632881, + "c2": -14.40698032345066, + "c3": 7.354082781331243, + "c4": -7.8273230008991455, + "c5": 5.065914665873635, + "c6": 28.138457412484243, + "c7": -17.699871664435292 }, - "vertexSeeds": { - "c1": 10.989913127067362, - "c2": 10.459715366695141, - "c3": 10.567504026504636, - "c4": 11.036962073524688, - "c5": 11.03370608379064, - "c6": 10.828824872940611, - "c7": 10.454523830745087 + "offsets": { + "c1": 19.158576051779935, + "c2": 16.42163661581138, + "c3": 13.684697179842798, + "c4": 10.947757743874243, + "c5": 8.21081830790569, + "c6": 5.473878871937108, + "c7": 2.736939435968554 }, "rgb": [77, 76, 132] }, @@ -281103,23 +281103,23 @@ "year": 1786, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 6.0228767024172285, - "c2": -28.776328839574397, - "c3": 8.740675215122643, - "c4": -24.687876262533262, - "c5": -26.40849881008969, - "c6": -19.067560356799696, - "c7": -5.112565627097837 + "points": { + "c1": -19.49870123603429, + "c2": 42.34900776008996, + "c3": 36.27846152160423, + "c4": -40.010613918461345, + "c5": 7.534994564241444, + "c6": -38.475104984329725, + "c7": -7.130619679326863 }, - "vertexSeeds": { - "c1": 8.027181742639085, - "c2": 7.998773293390203, - "c3": 8.038424250179691, - "c4": 7.975515379815047, - "c5": 8.009566517901746, - "c6": 8.003716397022622, - "c7": 8.007976732284611 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692148, + "c3": 9.593157651409996, + "c4": 7.674526121128034, + "c5": 5.755894590846074, + "c6": 3.8372630605641125, + "c7": 1.918631530281961 }, "rgb": [238, 201, 159] }, @@ -281130,23 +281130,23 @@ "year": 1785, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -17.39268093503326, - "c2": -25.523555499311755, - "c3": 20.08244379564023, - "c4": 23.236982219779314, - "c5": -25.785432200094466, - "c6": 19.854513644605234, - "c7": -19.843938817160883 + "points": { + "c1": 15.042181748993116, + "c2": -7.002071649975356, + "c3": 12.239098439981618, + "c4": -9.837717517143378, + "c5": 19.22523916994478, + "c6": 12.042712057544527, + "c7": -1.6053741802383712 }, - "vertexSeeds": { - "c1": 4.958443533117765, - "c2": 4.886897972500809, - "c3": 4.875033561790171, - "c4": 5.153564564022028, - "c5": 4.889240573651611, - "c6": 5.1894241799994525, - "c7": 4.97635602727106 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819692, + "c3": 6.2182154415164055, + "c4": 4.974572353213119, + "c5": 3.7309292649098333, + "c6": 2.4872861766065597, + "c7": 1.2436430883032734 }, "rgb": [77, 76, 132] }, @@ -281157,23 +281157,23 @@ "year": 1786, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 9.863009725696749, - "c2": -34.40746629062336, - "c3": -25.748749799491222, - "c4": 30.778557606607734, - "c5": 46.15378745977485, - "c6": 48.22397148700645, - "c7": 26.119716390951638 + "points": { + "c1": 20.781641834987198, + "c2": 6.102528975304423, + "c3": -53.24583168802833, + "c4": -39.8125730403079, + "c5": -16.982918639107012, + "c6": -10.285121453163008, + "c7": -21.083339202475564 }, - "vertexSeeds": { - "c1": 5.5141858768287175, - "c2": 5.506039022153002, - "c3": 5.721555561889971, - "c4": 5.536772345597645, - "c5": 5.545234493002866, - "c6": 5.68237371742614, - "c7": 5.6106814691621025 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227472, + "c3": 7.027276930189549, + "c4": 5.621821544151648, + "c5": 4.2163661581137255, + "c6": 2.810910772075824, + "c7": 1.4054553860379222 }, "rgb": [58, 15, 49] }, @@ -281184,23 +281184,23 @@ "year": 1786, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -3.881180565630274, - "c2": 16.224145156956276, - "c3": 8.197228139586038, - "c4": 36.11118638320474, - "c5": -25.55153614850506, - "c6": 6.372894576457945, - "c7": 38.43464623019034 + "points": { + "c1": 21.255435515786417, + "c2": -3.569564252889407, + "c3": 6.465167472881824, + "c4": -5.588989380580138, + "c5": -24.564586389663738, + "c6": 17.641781199752508, + "c7": -7.0859089610948445 }, - "vertexSeeds": { - "c1": 4.492929100547596, - "c2": 4.498540372673215, - "c3": 4.485537304495549, - "c4": 4.754427063157302, - "c5": 4.674823412913824, - "c6": 4.480074282801698, - "c7": 4.741011192610464 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -281211,23 +281211,23 @@ "year": 1786, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 1.963410014900063, - "c2": 42.83735049233026, - "c3": 48.549082671538486, - "c4": 25.282479156850258, - "c5": -3.890436864413175, - "c6": -45.51227789118916, - "c7": -41.28678759748234 + "points": { + "c1": 13.450526756004422, + "c2": -49.39749655362237, + "c3": -46.54906613582733, + "c4": 54.57526110621302, + "c5": 9.923434367655418, + "c6": -16.91990478834495, + "c7": 45.023273875227744 }, - "vertexSeeds": { - "c1": 6.107079405146618, - "c2": 5.679038911395842, - "c3": 5.850834049863515, - "c4": 5.9329175443827475, - "c5": 6.086167401001343, - "c6": 5.821211882049556, - "c7": 5.849262099755147 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830799, + "c3": 7.374017568192322, + "c4": 5.899214054553867, + "c5": 4.424410540915389, + "c6": 2.9496070272769335, + "c7": 1.4748035136384556 }, "rgb": [238, 201, 159] }, @@ -281238,23 +281238,23 @@ "year": 1785, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -9.737931912701722, - "c2": 14.327563317007858, - "c3": 28.959831502468916, - "c4": 0.6724927697962428, - "c5": 7.798250509165484, - "c6": -13.526175390985571, - "c7": 21.89922313453752 + "points": { + "c1": 5.310985461167441, + "c2": -30.4764427403057, + "c3": 21.978257450067574, + "c4": -6.255811926081712, + "c5": 15.19620153980545, + "c6": -21.743070774100246, + "c7": 12.659708763401923 }, - "vertexSeeds": { - "c1": 8.748779591726281, - "c2": 8.795138485146932, - "c3": 7.57085089632399, - "c4": 7.1916431371266905, - "c5": 8.04826272269047, - "c6": 8.196327826526844, - "c7": 7.142472455818481 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904296, + "c3": 10.864539990753585, + "c4": 8.691631992602863, + "c5": 6.518723994452143, + "c6": 4.345815996301432, + "c7": 2.172907998150712 }, "rgb": [77, 76, 132] }, @@ -281265,23 +281265,23 @@ "year": 1786, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 14.981483775333118, - "c2": 6.808330516248631, - "c3": -2.3722884800866595, - "c4": -14.869976071678902, - "c5": 17.16736931798843, - "c6": 12.526452939148783, - "c7": -27.194000673525295 + "points": { + "c1": 38.154432789360484, + "c2": 28.3429756643539, + "c3": -36.16015237233169, + "c4": -0.2081031430454061, + "c5": -2.743231415479272, + "c6": 29.460154981597697, + "c7": 13.11188170019907 }, - "vertexSeeds": { - "c1": 7.2190013676374845, - "c2": 7.422283271994738, - "c3": 7.550219278928035, - "c4": 7.333655407100594, - "c5": 7.3927844549590445, - "c6": 7.323331812296408, - "c7": 7.597279919308772 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048532, + "c3": 9.223300970873789, + "c4": 7.3786407766990205, + "c5": 5.533980582524279, + "c6": 3.6893203883495103, + "c7": 1.844660194174768 }, "rgb": [58, 15, 49] }, @@ -281292,23 +281292,23 @@ "year": 1786, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -12.57003386437654, - "c2": 8.730476562319204, - "c3": 23.641591755140084, - "c4": 31.549478548030194, - "c5": -39.10215977167935, - "c6": 5.550316672773626, - "c7": 11.059693589371946 + "points": { + "c1": 2.5672220772517775, + "c2": -25.31105804372072, + "c3": 9.583535797232187, + "c4": -12.145492575342892, + "c5": 25.23785249771346, + "c6": -38.8546125376541, + "c7": -16.26970685616544 }, - "vertexSeeds": { - "c1": 8.43884297587671, - "c2": 7.999695532001237, - "c3": 8.6972893300772, - "c4": 8.70896301881092, - "c5": 8.095665455858244, - "c6": 8.37978858212861, - "c7": 8.057925392096019 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099854, + "c3": 10.402219140083227, + "c4": 8.321775312066576, + "c5": 6.241331484049927, + "c6": 4.1608876560332995, + "c7": 2.0804438280166497 }, "rgb": [58, 15, 49] }, @@ -281319,23 +281319,23 @@ "year": 1786, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": -28.64480678316744, - "c2": -43.254565356540155, - "c3": -37.31315722236011, - "c4": 37.47626338742875, - "c5": -32.37482496820638, - "c6": -18.976443261498076, - "c7": 5.852193887208145 + "points": { + "c1": -38.3513779478222, + "c2": 36.423461516274436, + "c3": -24.382922383349406, + "c4": 34.977248396578084, + "c5": -46.747884008664236, + "c6": -24.59269508569072, + "c7": -12.748011818551703 }, - "vertexSeeds": { - "c1": 8.424167694916243, - "c2": 8.240782032636561, - "c3": 8.551924750725432, - "c4": 8.33221765575531, - "c5": 8.272529004749135, - "c6": 8.022400059975883, - "c7": 7.920427338634852 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.288488210818304, + "c3": 10.240406842348582, + "c4": 8.192325473878864, + "c5": 6.144244105409142, + "c6": 4.0961627369394416, + "c7": 2.0480813684697208 }, "rgb": [77, 76, 132] }, @@ -281346,23 +281346,23 @@ "year": 1786, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 8.225458150901282, - "c2": 24.936052003086473, - "c3": -6.155440999923204, - "c4": 30.463635746236633, - "c5": 7.5413302433350395, - "c6": -0.2029479553484279, - "c7": -33.97461755298297 + "points": { + "c1": -25.4354130402969, + "c2": -38.65893372870821, + "c3": 9.127788740687102, + "c4": 22.835004422829215, + "c5": -9.916761373064269, + "c6": -17.07303798745271, + "c7": 12.593748157084896 }, - "vertexSeeds": { - "c1": 8.274433693370513, - "c2": 8.305320376866872, - "c3": 8.885360705166745, - "c4": 8.70892778684858, - "c5": 8.393997525630846, - "c6": 8.595694048689685, - "c7": 8.688128036698458 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582527, + "c3": 10.679611650485445, + "c4": 8.54368932038836, + "c5": 6.407766990291253, + "c6": 4.271844660194168, + "c7": 2.135922330097084 }, "rgb": [77, 76, 132] }, @@ -281373,23 +281373,23 @@ "year": 1786, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -10.595357820436128, - "c2": -36.460541374983244, - "c3": -32.10019972867927, - "c4": 26.391938636382477, - "c5": 1.7194055395112073, - "c6": -30.1087673397804, - "c7": 40.93901111310808 + "points": { + "c1": -28.422970238733104, + "c2": 9.509004625513377, + "c3": 18.005430947629506, + "c4": -14.645278543280703, + "c5": -18.486301840204778, + "c6": -35.929411320976314, + "c7": 36.33649878719753 }, - "vertexSeeds": { - "c1": 5.420411900440418, - "c2": 5.699860462935525, - "c3": 5.279697157527895, - "c4": 5.5474047969296745, - "c5": 5.701815296155789, - "c6": 5.314510161076194, - "c7": 5.444660726419508 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945917, + "c3": 6.865464632454921, + "c4": 5.492371705963945, + "c5": 4.119278779472949, + "c6": 2.7461858529819727, + "c7": 1.3730929264909963 }, "rgb": [222, 0, 59] }, @@ -281400,23 +281400,23 @@ "year": 1786, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -10.89848999009521, - "c2": 26.70461592547983, - "c3": 22.379096401334742, - "c4": -1.939660105089061, - "c5": 1.613792275881842, - "c6": -16.98892604813328, - "c7": -21.966815157380637 + "points": { + "c1": -1.5900179090505304, + "c2": -18.145884140282018, + "c3": -36.78082751564215, + "c4": -28.41789969268527, + "c5": 2.396487592056822, + "c6": 17.371634597253824, + "c7": -13.418535062971923 }, - "vertexSeeds": { - "c1": 6.413177416857471, - "c2": 6.7740353977616, - "c3": 6.4626100751157445, - "c4": 5.560701959539425, - "c5": 6.9943821560239305, - "c6": 6.990955125349702, - "c7": 6.766660407470368 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841882, + "c3": 8.52981969486824, + "c4": 6.823855755894589, + "c5": 5.117891816920937, + "c6": 3.4119278779472944, + "c7": 1.7059639389736432 }, "rgb": [238, 201, 159] }, @@ -281427,23 +281427,23 @@ "year": 1787, "resistanceReported": false, "duration": 72316800, - "curveSeeds": { - "c1": -45.377702403338375, - "c2": 81.1028596407717, - "c3": -20.812432740686845, - "c4": 54.973591412240324, - "c5": -64.29718415778697, - "c6": -15.649639765165702, - "c7": -36.91940272704201 + "points": { + "c1": -84.82667284438963, + "c2": 0.37658990328962716, + "c3": 62.692391601952664, + "c4": -6.420785768361355, + "c5": -14.596537664881936, + "c6": 27.35928143442443, + "c7": -83.00928482600654 }, - "vertexSeeds": { - "c1": 5.628358823805888, - "c2": 5.355925385750382, - "c3": 5.728003686154141, - "c4": 5.318050296895488, - "c5": 5.466906164363477, - "c6": 5.484609409946089, - "c7": 5.342459291542629 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945914, + "c3": 6.8654646324549145, + "c4": 5.492371705963936, + "c5": 4.119278779472957, + "c6": 2.746185852981957, + "c7": 1.3730929264909786 }, "rgb": [58, 15, 49] }, @@ -281454,23 +281454,23 @@ "year": 1785, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 13.925122165271489, - "c2": 0.7502383878596035, - "c3": 2.4132818972302204, - "c4": -14.735680037410614, - "c5": 12.715180038572989, - "c6": 12.652739393830444, - "c7": 24.2396493325204 + "points": { + "c1": -34.24622379492418, + "c2": 1.8397145522144314, + "c3": -21.454126836079624, + "c4": 3.4408801789577836, + "c5": 7.996781468911365, + "c6": 30.888935110899602, + "c7": -11.133791253000208 }, - "vertexSeeds": { - "c1": 7.346246917202407, - "c2": 7.825762805656234, - "c3": 7.835970808049648, - "c4": 7.3382334785782595, - "c5": 7.346294530894492, - "c6": 7.395165356932964, - "c7": 7.915549650310897 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692084, + "c3": 9.593157651410081, + "c4": 7.674526121128057, + "c5": 5.755894590846051, + "c6": 3.8372630605640285, + "c7": 1.9186315302820232 }, "rgb": [86, 146, 138] }, @@ -281481,23 +281481,23 @@ "year": 1786, "resistanceReported": false, "duration": 46656000, - "curveSeeds": { - "c1": -1.3749810694534759, - "c2": -61.05812987774479, - "c3": -29.358822352637024, - "c4": 33.379049349502424, - "c5": 15.687212480898424, - "c6": 56.15516671334811, - "c7": 52.46439844560037 + "points": { + "c1": 0.033964524447455346, + "c2": 8.06658622763176, + "c3": 8.35355657929746, + "c4": -25.38384651069633, + "c5": 37.760730374280115, + "c6": -49.41204516523236, + "c7": -55.55049377180496 }, - "vertexSeeds": { - "c1": 7.042770057568441, - "c2": 6.973373295699195, - "c3": 6.021084262619515, - "c4": 7.051159446777872, - "c5": 6.827001121385591, - "c6": 7.146255323551561, - "c7": 6.39924125854183 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123437, + "c3": 8.691631992602863, + "c4": 6.9533055940822885, + "c5": 5.214979195561724, + "c6": 3.4766527970411487, + "c7": 1.7383263985205744 }, "rgb": [77, 76, 132] }, @@ -281508,23 +281508,23 @@ "year": 1785, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -23.1690262929612, - "c2": -14.49869122682327, - "c3": 27.69824159979703, - "c4": 15.75104718985466, - "c5": -12.526760385241978, - "c6": 24.095632903804514, - "c7": 19.8410720038423 + "points": { + "c1": -2.120661840651266, + "c2": 29.00633453956464, + "c3": -27.230004050821233, + "c4": -9.56198567865998, + "c5": 27.000245204132185, + "c6": 27.178813675452076, + "c7": 14.150212270055206 }, - "vertexSeeds": { - "c1": 6.114175286904503, - "c2": 6.264811029074041, - "c3": 6.421354742097656, - "c4": 5.992793567020546, - "c5": 6.344504042554502, - "c6": 6.244662789254271, - "c7": 6.335158016152179 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [86, 146, 138] }, @@ -281535,23 +281535,23 @@ "year": 1786, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -32.925936621172696, - "c2": 25.897746552776027, - "c3": -27.253408606869662, - "c4": -13.486609334250112, - "c5": -17.040429451100774, - "c6": 10.057665129274902, - "c7": -0.4001245701874865 + "points": { + "c1": 9.928951052280027, + "c2": -1.0612230541242695, + "c3": 35.50966293132552, + "c4": -1.656148061604128, + "c5": 10.7890237003323, + "c6": 30.364270527146758, + "c7": -20.024624571043777 }, - "vertexSeeds": { - "c1": 7.062956238494436, - "c2": 6.637203296282529, - "c3": 6.869132793423529, - "c4": 6.725918544195725, - "c5": 7.387564838035865, - "c6": 6.827522339018013, - "c7": 6.39789704065377 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.62413314840499, + "c3": 8.853444290337496, + "c4": 7.082755432269994, + "c5": 5.312066574202499, + "c6": 3.541377716134997, + "c7": 1.7706888580674947 }, "rgb": [222, 0, 59] }, @@ -281562,23 +281562,23 @@ "year": 1785, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 1.3433083198688252, - "c2": -26.59963566019803, - "c3": -21.662627837435036, - "c4": 12.286920781883964, - "c5": 25.109021292457598, - "c6": 0.8871224968503739, - "c7": -17.771620002349053 + "points": { + "c1": 2.0966751081450568, + "c2": 23.559419006384665, + "c3": -20.97680703513695, + "c4": -11.219595509547595, + "c5": 17.541879927668752, + "c6": 9.419663828101456, + "c7": 26.405786402635385 }, - "vertexSeeds": { - "c1": 7.108889369386674, - "c2": 7.7325730649291975, - "c3": 7.757602687847332, - "c4": 7.283470830106254, - "c5": 7.611603035122673, - "c6": 7.655782444596738, - "c7": 7.598272883332883 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.67822468793342, + "c3": 9.731853906611189, + "c4": 7.7854831252889465, + "c5": 5.8391123439667165, + "c6": 3.8927415626444732, + "c7": 1.9463707813222428 }, "rgb": [77, 76, 132] }, @@ -281589,23 +281589,23 @@ "year": 1786, "resistanceReported": false, "duration": 44841600, - "curveSeeds": { - "c1": -16.520535649382083, - "c2": -51.9426725157766, - "c3": 54.074423960501704, - "c4": -52.20003876524259, - "c5": 28.38000114763345, - "c6": -13.204563087071605, - "c7": -18.09360899544283 + "points": { + "c1": 50.813352395044106, + "c2": -37.321934494025555, + "c3": 57.699261072560404, + "c4": -2.6961569167541626, + "c5": -45.73066674461685, + "c6": -10.809223894542853, + "c7": 40.0091526215798 }, - "vertexSeeds": { - "c1": 12.032451335320767, - "c2": 11.422280099908374, - "c3": 12.266723511884102, - "c4": 11.615957807322179, - "c5": 12.045706736059712, - "c6": 12.011696298955119, - "c7": 11.528195991207992 + "offsets": { + "c1": 20.485436893203886, + "c2": 17.55894590846048, + "c3": 14.632454923717074, + "c4": 11.70596393897367, + "c5": 8.779472954230263, + "c6": 5.8529819694868115, + "c7": 2.9264909847434057 }, "rgb": [222, 0, 59] }, @@ -281616,23 +281616,23 @@ "year": 1786, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 0.026541373597098072, - "c2": 33.66860220512302, - "c3": 3.090403172969566, - "c4": 30.48467470862296, - "c5": -28.259656100544547, - "c6": 25.171294675737983, - "c7": -16.80600669074951 + "points": { + "c1": -24.313689820845024, + "c2": -24.255430044777427, + "c3": -17.066507349947326, + "c4": 36.3349481285515, + "c5": -40.801834011104454, + "c6": 23.303587061309244, + "c7": 14.328492404490092 }, - "vertexSeeds": { - "c1": 6.096283885920727, - "c2": 6.4935688711298525, - "c3": 6.440485030903169, - "c4": 6.271203149344668, - "c5": 6.837718229821449, - "c6": 6.306637703851899, - "c7": 6.790008367982042 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [77, 76, 132] }, @@ -281643,23 +281643,23 @@ "year": 1786, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 35.13161779270739, - "c2": 20.42811790871957, - "c3": 43.806791706530035, - "c4": 13.605585283919275, - "c5": 18.84186164731952, - "c6": -29.197407288152572, - "c7": 40.34801819300134 + "points": { + "c1": 26.728301972239507, + "c2": 17.331756278935188, + "c3": 40.528972307531944, + "c4": 35.18347638064316, + "c5": -13.684046724387734, + "c6": -7.892691468029923, + "c7": 40.090306280228575 }, - "vertexSeeds": { - "c1": 2.7951077490315077, - "c2": 3.028796008810937, - "c3": 2.7275607400093893, - "c4": 2.8362382702379003, - "c5": 2.7679144748116586, - "c6": 2.898719798025892, - "c7": 2.731876069558147 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355065, + "c3": 3.6523347202958822, + "c4": 2.921867776236707, + "c5": 2.1914008321775325, + "c6": 1.4609338881183576, + "c7": 0.7304669440591748 }, "rgb": [238, 201, 159] }, @@ -281670,23 +281670,23 @@ "year": 1785, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 9.402450502778592, - "c2": -18.368386062298388, - "c3": -0.6819190215612068, - "c4": 25.693251737991474, - "c5": 0.7227410105108341, - "c6": -8.811714688575972, - "c7": -9.471898182079332 + "points": { + "c1": -13.021206941172167, + "c2": 8.742249875452252, + "c3": -23.206866624364853, + "c4": -28.899047264372836, + "c5": -23.753474277474044, + "c6": 7.973972948753726, + "c7": -30.741115948821175 }, - "vertexSeeds": { - "c1": 1.6091390163399188, - "c2": 1.5462105745882746, - "c3": 1.5403653430282742, - "c4": 1.629414934781063, - "c5": 1.5845173379972808, - "c6": 1.5624244126982805, - "c7": 1.6457053212209602 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590827, + "c3": 1.9879796578825732, + "c4": 1.5903837263060572, + "c5": 1.1927877947295413, + "c6": 0.7951918631530319, + "c7": 0.39759593157651596 }, "rgb": [77, 76, 132] }, @@ -281697,23 +281697,23 @@ "year": 1786, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 37.84152053607598, - "c2": -2.6335611707814763, - "c3": 2.381244400693056, - "c4": -2.389007353756959, - "c5": -22.80658968297575, - "c6": -6.445680968193443, - "c7": -24.584168163555535 + "points": { + "c1": -9.78084450774509, + "c2": 26.55767728911217, + "c3": 23.644699258246085, + "c4": 2.9059239765731064, + "c5": 18.61019378136772, + "c6": 7.6618035580365245, + "c7": -6.968719196881935 }, - "vertexSeeds": { - "c1": 11.62752837058931, - "c2": 12.021516750579085, - "c3": 11.609951132379152, - "c4": 11.992479900301873, - "c5": 11.676155947851711, - "c6": 12.012232215503174, - "c7": 11.805815253549643 + "offsets": { + "c1": 20.22653721682848, + "c2": 17.337031900138694, + "c3": 14.447526583448914, + "c4": 11.55802126675913, + "c5": 8.668515950069347, + "c6": 5.779010633379565, + "c7": 2.8895053166897826 }, "rgb": [222, 0, 59] }, @@ -281724,23 +281724,23 @@ "year": 1786, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 9.267785613184003, - "c2": -1.9719990481362508, - "c3": -4.776848886131468, - "c4": -27.2973109910102, - "c5": 9.705958851101698, - "c6": -9.052698222005773, - "c7": 22.651442431037907 + "points": { + "c1": 4.414466396551468, + "c2": -22.764939103459326, + "c3": -6.481109740900539, + "c4": -9.78504236552175, + "c5": -31.0260616121299, + "c6": -15.20390003889825, + "c7": -4.186157055905216 }, - "vertexSeeds": { - "c1": 2.1597969078973733, - "c2": 2.175991695971107, - "c3": 2.1702024345962374, - "c4": 2.1430385590921968, - "c5": 2.0223904371054346, - "c6": 2.134249697368497, - "c7": 2.093694547174597 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.1900138696255214, + "c3": 2.6583448913546026, + "c4": 2.12667591308368, + "c5": 1.5950069348127607, + "c6": 1.063337956541842, + "c7": 0.531668978270923 }, "rgb": [86, 146, 138] }, @@ -281751,23 +281751,23 @@ "year": 1785, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 11.209880600975602, - "c2": -29.017303880027445, - "c3": -2.036874054626825, - "c4": 13.327446357644298, - "c5": -10.727118687290357, - "c6": -8.921659119684996, - "c7": 4.195719945782805 + "points": { + "c1": -25.328493181061507, + "c2": -22.811671481896276, + "c3": 9.764648642222717, + "c4": -16.046515147058024, + "c5": -12.229652851995965, + "c6": -6.77308540358311, + "c7": 18.947532567604526 }, - "vertexSeeds": { - "c1": 3.1089603772388887, - "c2": 3.194623640440767, - "c3": 3.0394302874008314, - "c4": 3.0824601429593437, - "c5": 3.0238308406246968, - "c6": 2.975173520963815, - "c7": 2.973972192003692 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -281778,23 +281778,23 @@ "year": 1786, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": 22.786193030074244, - "c2": 21.035696185094636, - "c3": 46.52985488119991, - "c4": 32.2283918979315, - "c5": -17.419459105840254, - "c6": -36.47505099794091, - "c7": 51.48955088497041 + "points": { + "c1": 28.559090660848952, + "c2": 14.380356423418206, + "c3": -32.88432224893675, + "c4": -35.56303835170091, + "c5": -23.077295901532267, + "c6": 44.86109681597905, + "c7": 7.970475398620941 }, - "vertexSeeds": { - "c1": 5.251365963712527, - "c2": 5.299020498152168, - "c3": 4.804536586374046, - "c4": 5.292092237636702, - "c5": 5.354909483659039, - "c6": 4.948525454905802, - "c7": 5.4508384269688905 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664355, + "c3": 6.703652334720294, + "c4": 5.362921867776234, + "c5": 4.022191400832174, + "c6": 2.681460933888114, + "c7": 1.34073046694406 }, "rgb": [77, 76, 132] }, @@ -281805,23 +281805,23 @@ "year": 1785, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -26.518327606962778, - "c2": 25.97890855474301, - "c3": 19.52525161917693, - "c4": 12.856740424136223, - "c5": -27.862497838627363, - "c6": 7.548905347245299, - "c7": 28.658912007948945 + "points": { + "c1": -7.616462060509612, + "c2": -19.256861842204856, + "c3": 16.208483242541124, + "c4": 15.751839115410665, + "c5": -22.607543002567212, + "c6": 12.691397434576064, + "c7": -17.78335566953711 }, - "vertexSeeds": { - "c1": 5.837920550489319, - "c2": 5.868050571817535, - "c3": 6.160854455125473, - "c4": 6.206929402275846, - "c5": 5.73327152351256, - "c6": 6.145181698928213, - "c7": 6.095110284200073 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951467, + "c3": 7.443365695792877, + "c4": 5.954692556634311, + "c5": 4.466019417475722, + "c6": 2.9773462783171554, + "c7": 1.4886731391585888 }, "rgb": [222, 0, 59] }, @@ -281832,23 +281832,23 @@ "year": 1785, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -23.525744704841006, - "c2": -25.963052702357295, - "c3": -10.170218755194398, - "c4": -13.267980636429503, - "c5": 16.36201013601017, - "c6": -5.146215349275103, - "c7": -25.09575481155246 + "points": { + "c1": 27.760852893975347, + "c2": -6.700233916255922, + "c3": -2.4504847625150212, + "c4": -4.492832548361978, + "c5": 15.717362122969767, + "c6": 25.041458977379207, + "c7": 24.5725074994398 }, - "vertexSeeds": { - "c1": 9.02643395764495, - "c2": 8.8514439961769, - "c3": 9.323188903017842, - "c4": 9.234327152235746, - "c5": 8.698307715529314, - "c6": 9.015074462232269, - "c7": 9.238888119017592 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.536754507628304, + "c3": 11.28062875635691, + "c4": 9.024503005085537, + "c5": 6.7683772538141405, + "c6": 4.512251502542768, + "c7": 2.256125751271395 }, "rgb": [222, 0, 59] }, @@ -281859,23 +281859,23 @@ "year": 1786, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -19.295878169679288, - "c2": -17.5270153997139, - "c3": 9.3767434258774, - "c4": -15.092802735497195, - "c5": -29.54152068725515, - "c6": 15.46074903267278, - "c7": -28.608540940957386 + "points": { + "c1": 30.79882925496736, + "c2": -15.434526835162718, + "c3": 21.8824499653901, + "c4": 18.242816733396012, + "c5": 28.451483321017804, + "c6": -32.933934265116626, + "c7": 13.042472346330108 }, - "vertexSeeds": { - "c1": 6.748163194184102, - "c2": 6.507662751106762, - "c3": 6.69284645288084, - "c4": 6.895815896960148, - "c5": 6.712961258629921, - "c6": 6.49874855870078, - "c7": 6.785108111289693 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066581, + "c4": 6.65742024965327, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624133119 }, "rgb": [86, 146, 138] }, @@ -281886,23 +281886,23 @@ "year": 1785, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 27.43850506747618, - "c2": -19.454525643702258, - "c3": 7.282326352897314, - "c4": 17.070607696490896, - "c5": -15.683219046237433, - "c6": -3.1354294559942204, - "c7": 12.965635943116588 + "points": { + "c1": 12.376831077544537, + "c2": 0.2551648845763772, + "c3": 12.730414380201694, + "c4": -22.200268315491538, + "c5": -19.377608685509504, + "c6": 29.278570560845914, + "c7": -17.466103816940286 }, - "vertexSeeds": { - "c1": 0.5533339798384396, - "c2": 0.5677383510276038, - "c3": 0.5476473065603887, - "c4": 0.5624651365978133, - "c5": 0.5779600391812479, - "c6": 0.5535584684921079, - "c7": 0.5464743901308003 + "offsets": { + "c1": 1.0032362459546926, + "c2": 0.85991678224688, + "c3": 0.7165973185390654, + "c4": 0.5732778548312527, + "c5": 0.42995839112344, + "c6": 0.28663892741562547, + "c7": 0.14331946370781273 }, "rgb": [86, 146, 138] }, @@ -281913,23 +281913,23 @@ "year": 1786, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": 42.84724209699917, - "c2": 39.42162091632146, - "c3": -14.482366452594952, - "c4": -53.371252507775026, - "c5": -54.02418379906819, - "c6": 15.863961933444884, - "c7": -25.9613302120408 + "points": { + "c1": 32.70510849357255, + "c2": -40.676180057910045, + "c3": -18.87261392106337, + "c4": -12.281074140413132, + "c5": -30.08703339495488, + "c6": -46.470965766595, + "c7": 47.187077141568324 }, - "vertexSeeds": { - "c1": 7.497629347840284, - "c2": 8.043437636285859, - "c3": 7.158266752165187, - "c4": 8.187352512586687, - "c5": 7.0340088014753, - "c6": 7.36950872339099, - "c7": 7.200692454471697 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.56588072122053, + "c3": 10.471567267683772, + "c4": 8.377253814147021, + "c5": 6.2829403606102625, + "c6": 4.188626907073511, + "c7": 2.0943134535367514 }, "rgb": [238, 201, 159] }, @@ -281940,23 +281940,23 @@ "year": 1786, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 21.70945065116623, - "c2": 29.441618914240202, - "c3": 46.103103172909094, - "c4": 1.2825768200914922, - "c5": 39.059229316901416, - "c6": -24.939373994530296, - "c7": 26.767203409189754 + "points": { + "c1": -38.63385985314885, + "c2": -1.068922034450182, + "c3": 12.389110871111349, + "c4": -39.178832629860615, + "c5": 39.205056278823044, + "c6": 15.301381948219195, + "c7": -1.5066344758452104 }, - "vertexSeeds": { - "c1": 2.990838908761125, - "c2": 2.900962688414081, - "c3": 2.9279269993137804, - "c4": 2.8476159140160133, - "c5": 2.804911251152395, - "c6": 2.850126818034815, - "c7": 2.9032197222128993 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234391, + "c3": 3.5829865926953324, + "c4": 2.866389274156261, + "c5": 2.1497919556172023, + "c6": 1.4331946370781306, + "c7": 0.7165973185390587 }, "rgb": [222, 0, 59] }, @@ -281967,23 +281967,23 @@ "year": 1785, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -22.738418413583744, - "c2": 20.403224987166908, - "c3": 2.087431778802639, - "c4": 10.353122745736606, - "c5": -28.102658994793703, - "c6": 14.540584864656083, - "c7": 5.6495179502352855 + "points": { + "c1": -3.979682468989047, + "c2": 1.7228593567876942, + "c3": -25.487000932732652, + "c4": 27.55460171819415, + "c5": 8.087685773573078, + "c6": -10.76529099329473, + "c7": 18.465270537933783 }, - "vertexSeeds": { - "c1": 5.679307973260539, - "c2": 5.531850080612826, - "c3": 5.650563027611927, - "c4": 5.802858284449879, - "c5": 5.42141997908625, - "c6": 5.723647932091282, - "c7": 5.538563549781644 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106801, + "c3": 6.957928802588987, + "c4": 5.5663430420711935, + "c5": 4.174757281553401, + "c6": 2.7831715210356083, + "c7": 1.391585760517793 }, "rgb": [58, 15, 49] }, @@ -281994,23 +281994,23 @@ "year": 1786, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 16.270256348368008, - "c2": 15.675425161233946, - "c3": -3.2005518582130463, - "c4": -4.149432461414335, - "c5": 16.686650977494864, - "c6": -5.6776623858695, - "c7": 5.040820614725341 + "points": { + "c1": 6.174301633110723, + "c2": 13.744395328388173, + "c3": 15.81841906371021, + "c4": 32.39827364591956, + "c5": -20.11499443877154, + "c6": -37.36893393009441, + "c7": 31.969061630449104 }, - "vertexSeeds": { - "c1": 9.250017457687123, - "c2": 9.568910270111026, - "c3": 8.395343103316067, - "c4": 8.774918484156501, - "c5": 9.41713515807745, - "c6": 8.930861234032507, - "c7": 9.15692532754684 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352293, + "c3": 11.69671752196024, + "c4": 9.357374017568196, + "c5": 7.018030513176141, + "c6": 4.678687008784098, + "c7": 2.339343504392055 }, "rgb": [86, 146, 138] }, @@ -282021,23 +282021,23 @@ "year": 1786, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -11.272614801637054, - "c2": -37.455018983472854, - "c3": -25.948035779684357, - "c4": 29.683617668521606, - "c5": 4.200949782318467, - "c6": 32.61085725583585, - "c7": 35.25356096645932 + "points": { + "c1": -31.85554850403328, + "c2": 11.096692010867677, + "c3": 32.15460736433276, + "c4": -10.43907134661093, + "c5": 2.8198677883867163, + "c6": 1.7585019364320331, + "c7": 4.323718964007568 }, - "vertexSeeds": { - "c1": 5.812855521002824, - "c2": 5.540882584294521, - "c3": 5.331389761996156, - "c4": 5.445809596612124, - "c5": 5.558749529659335, - "c6": 5.632468385393481, - "c7": 5.7406285181123415 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147027, + "c3": 6.981044845122512, + "c4": 5.584835876098018, + "c5": 4.188626907073504, + "c6": 2.792417938049009, + "c7": 1.3962089690244943 }, "rgb": [58, 15, 49] }, @@ -282048,23 +282048,23 @@ "year": 1785, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 8.115268639131315, - "c2": 23.846451565072435, - "c3": -25.437276356143865, - "c4": 24.91878502975714, - "c5": -18.76455849672668, - "c6": 13.754831205021304, - "c7": -21.310279946805103 + "points": { + "c1": -16.961561529979384, + "c2": 27.048939849231687, + "c3": 16.985281036941593, + "c4": 13.757551171055255, + "c5": 3.5449670952240098, + "c6": 10.779404565271527, + "c7": 2.460824412987339 }, - "vertexSeeds": { - "c1": 7.134059894469103, - "c2": 7.382025718575802, - "c3": 7.7183793770761016, - "c4": 7.255899953471681, - "c5": 7.264015759038862, - "c6": 7.619242814047066, - "c7": 7.262026589627995 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370314, + "c3": 9.40822931114194, + "c4": 7.526583448913548, + "c5": 5.644937586685157, + "c6": 3.7632917244567836, + "c7": 1.8816458622283918 }, "rgb": [86, 146, 138] }, @@ -282075,23 +282075,23 @@ "year": 1785, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -11.36210025866607, - "c2": 12.606967050493495, - "c3": 7.200751843168739, - "c4": 4.874682851968558, - "c5": -19.807342849408872, - "c6": 21.763017598603255, - "c7": -11.757149876613516 + "points": { + "c1": 0.4520642255915597, + "c2": -15.940284428953749, + "c3": 9.832420989763591, + "c4": -25.521634304493972, + "c5": 11.619130145262972, + "c6": 21.237444601767407, + "c7": 18.354820179123188 }, - "vertexSeeds": { - "c1": 3.4878576043532283, - "c2": 3.4493314741871397, - "c3": 3.420206408003396, - "c4": 3.447285105174887, - "c5": 3.490594939664257, - "c6": 3.5751405827841096, - "c7": 3.4368430214200862 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561719, + "c3": 4.345815996301433, + "c4": 3.476652797041146, + "c5": 2.6074895977808596, + "c6": 1.738326398520573, + "c7": 0.8691631992602865 }, "rgb": [58, 15, 49] }, @@ -282102,23 +282102,23 @@ "year": 1786, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 35.987979957696865, - "c2": -8.532776662702993, - "c3": -15.99514713832965, - "c4": -41.3707188793519, - "c5": 0.24894015658593105, - "c6": -4.545386006489771, - "c7": -30.728896576761763 + "points": { + "c1": -44.756574979840195, + "c2": 47.888862692844995, + "c3": -34.7647154816451, + "c4": -38.91505508064106, + "c5": -47.72224715103844, + "c6": -24.54375992095128, + "c7": -8.015158471265018 }, - "vertexSeeds": { - "c1": 12.488394196454983, - "c2": 13.389437110027393, - "c3": 13.17365193250061, - "c4": 12.916524102989055, - "c5": 13.725337713562691, - "c6": 12.103606945210235, - "c7": 13.64249885537434 + "offsets": { + "c1": 22.97734627831715, + "c2": 19.694868238557557, + "c3": 16.412390198797965, + "c4": 13.129912159038371, + "c5": 9.847434119278779, + "c6": 6.5649560795191855, + "c7": 3.2824780397595927 }, "rgb": [86, 146, 138] }, @@ -282129,23 +282129,23 @@ "year": 1785, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 21.27076438400102, - "c2": 3.4587150453251354, - "c3": 0.06391977266106608, - "c4": 22.391651704651643, - "c5": -7.698656997470252, - "c6": 24.86139533472072, - "c7": -24.488947206967005 + "points": { + "c1": 12.581624316892317, + "c2": 25.676210127203873, + "c3": 0.14787912919770463, + "c4": 10.617099910655405, + "c5": -7.939298656503226, + "c6": -5.507559839684308, + "c7": 6.934588589616212 }, - "vertexSeeds": { - "c1": 6.489396610665782, - "c2": 7.789531758925485, - "c3": 6.930717316647176, - "c4": 6.331929810120707, - "c5": 6.2293343600301405, - "c6": 7.483123307573772, - "c7": 7.5622554468242384 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.2621359223301, + "c3": 9.385113268608412, + "c4": 7.508090614886734, + "c5": 5.631067961165045, + "c6": 3.754045307443367, + "c7": 1.877022653721687 }, "rgb": [58, 15, 49] }, @@ -282156,23 +282156,23 @@ "year": 1786, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 12.855508433710234, - "c2": 7.087080169307043, - "c3": -5.574897635719914, - "c4": 21.616539089860296, - "c5": -4.530133623378653, - "c6": 10.732182732617652, - "c7": -22.350606042404696 + "points": { + "c1": 24.21555976603723, + "c2": -6.686136153525602, + "c3": -24.080187529475946, + "c4": -30.254842391926125, + "c5": 10.20875511265183, + "c6": 41.41228768258296, + "c7": 32.32322542460227 }, - "vertexSeeds": { - "c1": 8.151573731464174, - "c2": 8.463631784584026, - "c3": 8.158122510337293, - "c4": 8.255457129733262, - "c5": 7.264309531341523, - "c6": 7.386073574325988, - "c7": 8.139487478966002 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748032, + "c4": 8.136846971798425, + "c5": 6.102635228848815, + "c6": 4.068423485899206, + "c7": 2.0342117429495983 }, "rgb": [222, 0, 59] }, @@ -282183,23 +282183,23 @@ "year": 1786, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 29.65103970536493, - "c2": 34.782197284141425, - "c3": -6.352609476875784, - "c4": 15.332501239980608, - "c5": -24.982016331511005, - "c6": -30.561598974719598, - "c7": -27.110817096655616 + "points": { + "c1": -18.791345579771843, + "c2": 0.9208567237338343, + "c3": -11.10074037359572, + "c4": 43.48791766255521, + "c5": -9.118563496934527, + "c6": -38.39459898901121, + "c7": 32.01402852591891 }, - "vertexSeeds": { - "c1": 10.24346162073157, - "c2": 11.007966634471344, - "c3": 10.940118367723285, - "c4": 10.136769642342827, - "c5": 10.235270193194383, - "c6": 10.497774574965455, - "c7": 10.839795684030037 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846063, + "c3": 13.129912159038373, + "c4": 10.503929727230714, + "c5": 7.877947295423024, + "c6": 5.251964863615364, + "c7": 2.6259824318076745 }, "rgb": [238, 201, 159] }, @@ -282210,23 +282210,23 @@ "year": 1785, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 4.359108783277119, - "c2": 16.756630716139057, - "c3": -2.215218246575663, - "c4": 6.881047946980331, - "c5": 10.092017602639984, - "c6": 8.593017161728575, - "c7": 14.078842812675902 + "points": { + "c1": 5.889502661765178, + "c2": -25.849785266199355, + "c3": 6.578966772474018, + "c4": -13.075179145001641, + "c5": 27.648237067024844, + "c6": -22.883847005348432, + "c7": -18.490603206267117 }, - "vertexSeeds": { - "c1": 4.69446758992484, - "c2": 4.557280745162687, - "c3": 4.788881173741622, - "c4": 4.552945979061913, - "c5": 4.642120169893215, - "c6": 4.588505760439049, - "c7": 4.540599646309875 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.87933425797503, + "c3": 5.732778548312531, + "c4": 4.58622283865002, + "c5": 3.4396671289875216, + "c6": 2.29311141932501, + "c7": 1.1465557096625114 }, "rgb": [222, 0, 59] }, @@ -282237,23 +282237,23 @@ "year": 1785, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 16.493514654656114, - "c2": -11.732447107616016, - "c3": -22.479885141265097, - "c4": 1.8656048466765256, - "c5": -15.68119112141385, - "c6": -16.36453958698797, - "c7": -19.04091776245227 + "points": { + "c1": 10.299727501075257, + "c2": -7.382229687724056, + "c3": 25.057247862905687, + "c4": 19.028168383802463, + "c5": 24.598386182128007, + "c6": 16.721453773786852, + "c7": 18.327409379891396 }, - "vertexSeeds": { - "c1": 11.861454590508696, - "c2": 11.059396869466326, - "c3": 11.945117131258012, - "c4": 11.871287832517154, - "c5": 11.418789114585346, - "c6": 11.081621160512858, - "c7": 11.887097438706874 + "offsets": { + "c1": 20.129449838187703, + "c2": 17.253814147018026, + "c3": 14.378178455848346, + "c4": 11.502542764678713, + "c5": 8.626907073509035, + "c6": 5.751271382339357, + "c7": 2.8756356911696783 }, "rgb": [58, 15, 49] }, @@ -282264,23 +282264,23 @@ "year": 1786, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 13.918462045147201, - "c2": 2.1625651240440504, - "c3": 28.426254078743526, - "c4": -7.321367593860671, - "c5": -9.399446199514706, - "c6": -1.6736721672259591, - "c7": 2.4267676565620633 + "points": { + "c1": 10.549028197481753, + "c2": -19.47596968774838, + "c3": 34.08535087276384, + "c4": -7.206617017088124, + "c5": -27.230274224951266, + "c6": 3.776908032564805, + "c7": 3.3065311543756835 }, - "vertexSeeds": { - "c1": 5.662091945842608, - "c2": 5.782136111450084, - "c3": 5.555538979484317, - "c4": 5.399413710783468, - "c5": 5.544602258778661, - "c6": 5.677714159094434, - "c7": 5.628347877381856 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106801, + "c3": 6.957928802588987, + "c4": 5.5663430420711935, + "c5": 4.174757281553401, + "c6": 2.7831715210356083, + "c7": 1.391585760517793 }, "rgb": [222, 0, 59] }, @@ -282291,23 +282291,23 @@ "year": 1786, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": -46.193288669617225, - "c2": -46.31557332058326, - "c3": 24.878341505452667, - "c4": 25.32163823403711, - "c5": 50.29602192883638, - "c6": 14.666364367082977, - "c7": 10.497588414596898 + "points": { + "c1": 52.17178966636628, + "c2": -4.895506820740472, + "c3": -46.74317920564401, + "c4": 14.956688551140559, + "c5": -6.0567293885577556, + "c6": 17.69345542262434, + "c7": 20.140172166204835 }, - "vertexSeeds": { - "c1": 3.321082641227173, - "c2": 3.2617480041892026, - "c3": 3.190502726922218, - "c4": 3.2459761219043504, - "c5": 3.2882973229584893, - "c6": 3.2196864331805353, - "c7": 3.2398059245673974 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.9098474341192775, + "c3": 4.091539528432729, + "c4": 3.2732316227461933, + "c5": 2.4549237170596445, + "c6": 1.6366158113730966, + "c7": 0.8183079056865483 }, "rgb": [238, 201, 159] }, @@ -282318,23 +282318,23 @@ "year": 1786, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -17.364764562984497, - "c2": 2.1373943102198965, - "c3": 23.43810812322272, - "c4": 21.085071186854968, - "c5": -26.010430347441307, - "c6": 13.002853536774381, - "c7": -1.5785325384239215 + "points": { + "c1": 8.814219972835168, + "c2": -5.886515463877366, + "c3": 33.65070729361494, + "c4": -21.792675958653646, + "c5": 16.296195790647054, + "c6": 6.466886314066699, + "c7": 27.675164571090534 }, - "vertexSeeds": { - "c1": 7.569247647966901, - "c2": 8.634447797305803, - "c3": 8.305086803825692, - "c4": 8.290811457751293, - "c5": 8.724679175671776, - "c6": 8.477086253514084, - "c7": 8.67125599264771 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467406, + "c3": 11.188164586222834, + "c4": 8.950531668978266, + "c5": 6.7128987517336975, + "c6": 4.475265834489129, + "c7": 2.23763291724456 }, "rgb": [77, 76, 132] }, @@ -282345,23 +282345,23 @@ "year": 1786, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 31.47931373048462, - "c2": -33.490897787708654, - "c3": 27.89486128520455, - "c4": 12.023515997550916, - "c5": 29.933726952451863, - "c6": 0.36805174883114944, - "c7": 29.423778051173812 + "points": { + "c1": -19.104426395087998, + "c2": -6.083132497992089, + "c3": 3.1128059790639995, + "c4": 34.94627035163272, + "c5": -18.72162952156712, + "c6": 2.5273657790259136, + "c7": -16.883648872904747 }, - "vertexSeeds": { - "c1": 18.599648046360755, - "c2": 18.03428808975303, - "c3": 18.551022551776544, - "c4": 18.955470891103438, - "c5": 17.579647180370806, - "c6": 19.020222654029084, - "c7": 17.456276258490643 + "offsets": { + "c1": 31.715210355987054, + "c2": 27.184466019417496, + "c3": 22.653721682847888, + "c4": 18.12297734627833, + "c5": 13.592233009708725, + "c6": 9.061488673139165, + "c7": 4.5307443365696045 }, "rgb": [222, 0, 59] }, @@ -282372,23 +282372,23 @@ "year": 1786, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 1.397383832499493, - "c2": 29.403863708965318, - "c3": -34.925638514368515, - "c4": 32.365094156241824, - "c5": -20.729635125132475, - "c6": 32.643795781433894, - "c7": -10.464964468395458 + "points": { + "c1": 14.31672008941699, + "c2": 23.081577799919074, + "c3": -0.7011133064740775, + "c4": -12.725938835083664, + "c5": -11.047417876896873, + "c6": 22.927582131987364, + "c7": 39.68621147729037 }, - "vertexSeeds": { - "c1": 4.924270688724476, - "c2": 4.91227589874528, - "c3": 5.030813039449543, - "c4": 5.041097763474087, - "c5": 4.896130548192044, - "c6": 4.7764032040656925, - "c7": 5.010865078889371 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.4618585298196995, + "c3": 6.218215441516419, + "c4": 4.9745723532131185, + "c5": 3.7309292649098498, + "c6": 2.4872861766065593, + "c7": 1.2436430883032796 }, "rgb": [77, 76, 132] }, @@ -282399,23 +282399,23 @@ "year": 1786, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 12.541119563774458, - "c2": -34.34690056812322, - "c3": 23.37278324521789, - "c4": -4.981271861574314, - "c5": 7.619808388303028, - "c6": 8.314667741400477, - "c7": 5.480839045051162 + "points": { + "c1": 14.771888110253684, + "c2": 27.256855185839072, + "c3": 4.8461383377834935, + "c4": 19.998684288354482, + "c5": -2.3597904238110274, + "c6": -15.367308731534447, + "c7": 30.765240930640516 }, - "vertexSeeds": { - "c1": 4.595840650495257, - "c2": 4.5331299477818146, - "c3": 4.611415752243189, - "c4": 4.549305328333007, - "c5": 4.593301228678851, - "c6": 4.4388716990000985, - "c7": 4.348887612860169 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653257, + "c3": 5.547850208044379, + "c4": 4.438280166435512, + "c5": 3.328710124826634, + "c6": 2.219140083217756, + "c7": 1.109570041608878 }, "rgb": [86, 146, 138] }, @@ -282426,23 +282426,23 @@ "year": 1786, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 35.468605115656416, - "c2": -35.72823636918073, - "c3": -9.559753292525006, - "c4": -18.42739943337497, - "c5": -39.014741339478114, - "c6": -30.890229499750454, - "c7": 33.82176103534583 + "points": { + "c1": -21.83404546697451, + "c2": -34.645642799891455, + "c3": -33.135252718838785, + "c4": 9.97049495324422, + "c5": -8.887914953685126, + "c6": 27.67447825488489, + "c7": 39.464321680597905 }, - "vertexSeeds": { - "c1": 3.7976656754571043, - "c2": 3.675689087094414, - "c3": 3.747002364793944, - "c4": 3.7333549678849565, - "c5": 3.8223357012158306, - "c6": 3.757935219999269, - "c7": 3.635532597936425 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963944, + "c3": 4.576976421636615, + "c4": 3.661581137309296, + "c5": 2.7461858529819665, + "c6": 1.830790568654648, + "c7": 0.9153952843273184 }, "rgb": [238, 201, 159] }, @@ -282453,23 +282453,23 @@ "year": 1786, "resistanceReported": false, "duration": 39225600, - "curveSeeds": { - "c1": -5.411905753313164, - "c2": 14.934747627718941, - "c3": 10.442753046998078, - "c4": -5.600361234275802, - "c5": 12.172205746350194, - "c6": -33.23253549339868, - "c7": -42.23802079565135 + "points": { + "c1": -33.34831411864259, + "c2": 52.770205456290434, + "c3": -10.100101422088002, + "c4": 43.709447481765174, + "c5": -13.086407584613056, + "c6": 38.4100986009859, + "c7": -15.845821424750284 }, - "vertexSeeds": { - "c1": 6.789365512801795, - "c2": 6.875493546098805, - "c3": 6.785106290557371, - "c4": 6.496138721959831, - "c5": 6.512006686363881, - "c6": 6.631098519872215, - "c7": 6.941309539900065 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -282480,23 +282480,23 @@ "year": 1786, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -18.831209170226668, - "c2": 31.53772204608847, - "c3": 19.864182063974077, - "c4": 31.115539485394862, - "c5": -15.161752010485355, - "c6": 14.951158152379364, - "c7": 28.60740677614379 + "points": { + "c1": 25.785378727678086, + "c2": 10.152799891179733, + "c3": 9.189683428519032, + "c4": -25.43056592203255, + "c5": 16.533339925993914, + "c6": -5.178974262105722, + "c7": 18.255540731930438 }, - "vertexSeeds": { - "c1": 1.7246092917853924, - "c2": 1.727818894111411, - "c3": 1.7295688325381722, - "c4": 1.7336183882966303, - "c5": 1.719332052359689, - "c6": 1.7249141073997674, - "c7": 1.7278694774656738 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.524271844660185, + "c3": 2.1035598705501646, + "c4": 1.6828478964401234, + "c5": 1.262135922330103, + "c6": 0.8414239482200617, + "c7": 0.42071197411002037 }, "rgb": [77, 76, 132] }, @@ -282507,23 +282507,23 @@ "year": 1786, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 10.187296253219209, - "c2": -1.0065123201231714, - "c3": -26.607179553259236, - "c4": -12.835457300493616, - "c5": -19.838261017897686, - "c6": 3.4633236168146055, - "c7": -32.05080645238484 + "points": { + "c1": 24.034004334046777, + "c2": 0.42735679276623983, + "c3": 12.553012320436828, + "c4": 4.365494768538959, + "c5": -21.487110088460472, + "c6": 14.085779622717602, + "c7": -27.39293547766806 }, - "vertexSeeds": { - "c1": 5.787225757752595, - "c2": 5.7922826252915165, - "c3": 5.806477762967203, - "c4": 5.794595688993997, - "c5": 5.783850647037473, - "c6": 5.798906290112577, - "c7": 5.764562657130989 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206652, + "c3": 6.934812760055557, + "c4": 5.547850208044409, + "c5": 4.16088765603326, + "c6": 2.7739251040221125, + "c7": 1.3869625520111482 }, "rgb": [222, 0, 59] }, @@ -282534,23 +282534,23 @@ "year": 1786, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -14.790244982223342, - "c2": -1.805617083729139, - "c3": 26.41206260366929, - "c4": 18.676810461035267, - "c5": -14.64216153782947, - "c6": -20.37900761482476, - "c7": 6.857700562048024 + "points": { + "c1": 9.084965903970932, + "c2": -30.650808139155064, + "c3": 2.2152374231535674, + "c4": -7.253269869010001, + "c5": -35.595435995732714, + "c6": 18.293431798969188, + "c7": -7.427726831454276 }, - "vertexSeeds": { - "c1": 7.300915687185477, - "c2": 7.236809842392428, - "c3": 7.060388985161598, - "c4": 6.91092984972828, - "c5": 6.928875053521884, - "c6": 7.242462277250317, - "c7": 6.906701703910199 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -282561,23 +282561,23 @@ "year": 1786, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -22.773517936788288, - "c2": -13.682118131737639, - "c3": -15.911769701622987, - "c4": 14.507593976360397, - "c5": 9.698897015274632, - "c6": 31.24177157441425, - "c7": 15.802356474628027 + "points": { + "c1": -27.390889869855286, + "c2": -20.61801655671721, + "c3": -16.583020288947516, + "c4": -19.78799587349576, + "c5": -17.396782257687104, + "c6": -26.124660260634585, + "c7": -20.310997311115482 }, - "vertexSeeds": { - "c1": 8.155495357070444, - "c2": 8.076418120850784, - "c3": 8.192903119392529, - "c4": 7.881109593181539, - "c5": 8.201270380180782, - "c6": 8.137361935256749, - "c7": 8.323417239695054 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576983, + "c3": 10.10171058714747, + "c4": 8.081368469717981, + "c5": 6.061026352288492, + "c6": 4.040684234859003, + "c7": 2.020342117429489 }, "rgb": [86, 146, 138] }, @@ -282588,23 +282588,23 @@ "year": 1785, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -17.804077898243165, - "c2": 19.977638771889943, - "c3": 6.323426167443024, - "c4": -10.065730052974674, - "c5": 3.3374155017712326, - "c6": 4.55914029297395, - "c7": -4.451576507085242 + "points": { + "c1": 13.653798932239795, + "c2": 14.960942605484405, + "c3": -7.286344269400502, + "c4": 5.793590999023326, + "c5": 20.4767542161634, + "c6": 7.828766382258905, + "c7": -13.061330588209543 }, - "vertexSeeds": { - "c1": 6.085111120805291, - "c2": 5.752984990477797, - "c3": 5.835742428819243, - "c4": 6.015626514963795, - "c5": 6.076491356903798, - "c6": 5.854085702456901, - "c7": 6.148984718309548 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830794, + "c3": 7.374017568192332, + "c4": 5.899214054553871, + "c5": 4.424410540915409, + "c6": 2.949607027276923, + "c7": 1.4748035136384614 }, "rgb": [58, 15, 49] }, @@ -282615,23 +282615,23 @@ "year": 1786, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 24.803029813662718, - "c2": -14.52515636742778, - "c3": -7.404480075199274, - "c4": 10.910480937193114, - "c5": 25.960015979343922, - "c6": 37.10663594894365, - "c7": 17.178092263076124 + "points": { + "c1": 11.913563761898814, + "c2": 43.20395101103378, + "c3": -19.06652074403156, + "c4": -34.321299627614614, + "c5": 32.61806683468711, + "c6": -37.64524480433167, + "c7": 32.64643875531071 }, - "vertexSeeds": { - "c1": 5.440008832904284, - "c2": 4.975344584676902, - "c3": 4.874077485805546, - "c4": 5.183546510337334, - "c5": 5.486634087463243, - "c6": 5.209052410959291, - "c7": 5.278430758554065 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583904, + "c3": 6.657420249653259, + "c4": 5.325936199722601, + "c5": 3.994452149791955, + "c6": 2.662968099861297, + "c7": 1.3314840499306517 }, "rgb": [238, 201, 159] }, @@ -282642,23 +282642,23 @@ "year": 1786, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -35.482393214190054, - "c2": -1.5119303122443526, - "c3": 36.732681369486905, - "c4": -41.07547338260935, - "c5": -43.41191155468569, - "c6": -21.507261527362836, - "c7": 30.721298058661425 + "points": { + "c1": 23.674581502744722, + "c2": -41.20860391450392, + "c3": 24.31326675601145, + "c4": -39.52191357240316, + "c5": 12.86422293015196, + "c6": 32.678958894617914, + "c7": 14.947253652181097 }, - "vertexSeeds": { - "c1": 7.498003496644056, - "c2": 7.500752599336671, - "c3": 7.556487001003091, - "c4": 7.5328043518459635, - "c5": 7.485323647802476, - "c6": 7.481852949418605, - "c7": 7.5334229899242615 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324562, + "c3": 8.80721220527048, + "c4": 7.0457697642164, + "c5": 5.284327323162242, + "c6": 3.522884882108161, + "c7": 1.7614424410540805 }, "rgb": [77, 76, 132] }, @@ -282669,23 +282669,23 @@ "year": 1787, "resistanceReported": false, "duration": 48211200, - "curveSeeds": { - "c1": 18.875318157439537, - "c2": 2.2701962883356117, - "c3": 38.074593708681235, - "c4": 49.12364758964388, - "c5": 35.31984903864817, - "c6": 39.68373280419236, - "c7": 24.910092442423462 + "points": { + "c1": 23.30827933389382, + "c2": -52.91342093023854, + "c3": 19.267508959564395, + "c4": -38.058170590905746, + "c5": -11.78074227650545, + "c6": -51.107205877771456, + "c7": 18.844674375575522 }, - "vertexSeeds": { - "c1": 4.2954946462500345, - "c2": 4.596624390664851, - "c3": 4.4800814429152975, - "c4": 4.527511762514012, - "c5": 4.490258795943478, - "c6": 4.270971596863103, - "c7": 4.580705966193897 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653257, + "c3": 5.547850208044379, + "c4": 4.438280166435512, + "c5": 3.328710124826634, + "c6": 2.219140083217756, + "c7": 1.109570041608878 }, "rgb": [58, 15, 49] }, @@ -282696,23 +282696,23 @@ "year": 1786, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -22.871743799407206, - "c2": -25.19089779616876, - "c3": 1.8470168673827558, - "c4": 36.2359384123062, - "c5": -26.6034135468866, - "c6": 9.380111704968705, - "c7": -16.872187660041142 + "points": { + "c1": -19.43887841902488, + "c2": 10.714774026228689, + "c3": 12.748819374395687, + "c4": 34.91822575247156, + "c5": 36.49609389814471, + "c6": -14.124864529067906, + "c7": 7.708833618585828 }, - "vertexSeeds": { - "c1": 6.723063710918744, - "c2": 6.5688764492953435, - "c3": 6.418279046222261, - "c4": 6.909383859706972, - "c5": 6.95942848910229, - "c6": 6.705156291062721, - "c7": 6.755004753630662 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066581, + "c4": 6.65742024965327, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624133119 }, "rgb": [77, 76, 132] }, @@ -282723,23 +282723,23 @@ "year": 1786, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -3.0690464298072015, - "c2": -21.760896030791773, - "c3": 10.383167039956685, - "c4": 13.420162969952546, - "c5": -14.078744106049559, - "c6": 29.65982315160986, - "c7": -0.7791137051885819 + "points": { + "c1": -22.686358656185817, + "c2": -26.769512703870816, + "c3": -10.955985587821509, + "c4": -0.0695310812020864, + "c5": -3.2575052894725367, + "c6": -30.525460343298334, + "c7": -30.048322045127893 }, - "vertexSeeds": { - "c1": 2.169136787027445, - "c2": 2.0133780088277784, - "c3": 2.9827188771732844, - "c4": 2.3181336332617333, - "c5": 2.601359563934247, - "c6": 2.0033525092418274, - "c7": 2.110491879248306 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797503, + "c3": 3.9066111881645873, + "c4": 3.1252889505316697, + "c5": 2.3439667128987516, + "c6": 1.5626444752658348, + "c7": 0.7813222376329181 }, "rgb": [222, 0, 59] }, @@ -282750,23 +282750,23 @@ "year": 1786, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -41.91759959269736, - "c2": 36.10300882543988, - "c3": -22.36078125914708, - "c4": -9.214084965675724, - "c5": 17.95669475296814, - "c6": 41.29313621550899, - "c7": -13.809966755667276 + "points": { + "c1": -23.105374937152014, + "c2": 45.974792425887806, + "c3": 26.32364380249374, + "c4": -19.42798870042781, + "c5": 30.362400625404042, + "c6": -2.7335770442678253, + "c7": -29.54240827536671 }, - "vertexSeeds": { - "c1": 7.011559217208939, - "c2": 7.571463030671917, - "c3": 7.50925345207168, - "c4": 7.013989050635618, - "c5": 7.080420007272544, - "c6": 7.376835711402919, - "c7": 6.962278921953127 + "offsets": { + "c1": 12.653721682847896, + "c2": 10.846047156726767, + "c3": 9.038372630605641, + "c4": 7.230698104484512, + "c5": 5.423023578363384, + "c6": 3.615349052242256, + "c7": 1.807674526121128 }, "rgb": [77, 76, 132] }, @@ -282777,23 +282777,23 @@ "year": 1786, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -16.68502599304051, - "c2": -44.87782787469255, - "c3": 10.168120773860714, - "c4": -47.55419311692079, - "c5": -6.768703005342303, - "c6": -33.70366124182688, - "c7": -30.012286931330188 + "points": { + "c1": 33.18616660364312, + "c2": -39.69711102947759, + "c3": 10.525988768646677, + "c4": -19.710387045793652, + "c5": -42.098370459933115, + "c6": -6.373567579148535, + "c7": -39.725861781363214 }, - "vertexSeeds": { - "c1": 12.204948758556926, - "c2": 12.806214035234953, - "c3": 13.232107112473544, - "c4": 12.470337475272617, - "c5": 13.221207175740512, - "c6": 12.674135350529825, - "c7": 12.191003578363354 + "offsets": { + "c1": 22.20064724919094, + "c2": 19.029126213592225, + "c3": 15.857605177993547, + "c4": 12.68608414239483, + "c5": 9.514563106796112, + "c6": 6.343042071197393, + "c7": 3.171521035598717 }, "rgb": [222, 0, 59] }, @@ -282804,23 +282804,23 @@ "year": 1787, "resistanceReported": false, "duration": 59788800, - "curveSeeds": { - "c1": 35.23970112366277, - "c2": -25.833166494317027, - "c3": -49.47649182491479, - "c4": 52.09825575383559, - "c5": 59.02300269658127, - "c6": -9.497629174285606, - "c7": -59.146053125348445 + "points": { + "c1": 38.53612933210792, + "c2": -18.396268431213535, + "c3": 8.17856228424526, + "c4": -45.7467572960502, + "c5": -36.30488786769498, + "c6": 37.55782348889852, + "c7": 34.95449081246814 }, - "vertexSeeds": { - "c1": 5.206658763964819, - "c2": 5.983286718525905, - "c3": 6.592385487008102, - "c4": 5.740324164325491, - "c5": 4.961876869461947, - "c6": 5.275183813633018, - "c7": 6.951804892258995 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560332, + "c3": 8.368007397133608, + "c4": 6.694405917706885, + "c5": 5.020804438280169, + "c6": 3.3472029588534458, + "c7": 1.6736014794267229 }, "rgb": [77, 76, 132] }, @@ -282831,23 +282831,23 @@ "year": 1786, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -7.810802507858426, - "c2": -11.003817492276035, - "c3": -13.878977486137995, - "c4": -8.822397296052674, - "c5": 13.693288446594053, - "c6": 25.356420308226618, - "c7": -26.118512510561864 + "points": { + "c1": 13.469927739967204, + "c2": 11.23430429804251, + "c3": -7.57897197615905, + "c4": 26.475891868749947, + "c5": 23.98517822966648, + "c6": 21.024760977548176, + "c7": 22.366157708707775 }, - "vertexSeeds": { - "c1": 7.170561257962091, - "c2": 6.960466706222312, - "c3": 7.047587609780572, - "c4": 7.051492994372137, - "c5": 7.1581896350064635, - "c6": 7.349828145362028, - "c7": 7.093537952973193 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284314, + "c3": 8.784096162736944, + "c4": 7.027276930189543, + "c5": 5.270457697642173, + "c6": 3.5136384650947714, + "c7": 1.7568192325473697 }, "rgb": [86, 146, 138] }, @@ -282858,23 +282858,23 @@ "year": 1786, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 18.982815756537455, - "c2": 42.929807791746036, - "c3": -36.542669933548765, - "c4": 28.21738241799455, - "c5": 39.83307240104869, - "c6": 25.84207295117769, - "c7": 23.360343011388743 + "points": { + "c1": 44.34771131272203, + "c2": -30.940329402164384, + "c3": -46.89617873675277, + "c4": 31.943426510551227, + "c5": 3.70597306694831, + "c6": 47.70524094009064, + "c7": 15.849851113159112 }, - "vertexSeeds": { - "c1": 10.375079643750524, - "c2": 11.182295414994112, - "c3": 10.755966370589267, - "c4": 11.254718040121494, - "c5": 10.411604694341774, - "c6": 10.66672225462407, - "c7": 10.85103644654329 + "offsets": { + "c1": 18.899676375404532, + "c2": 16.199722607489605, + "c3": 13.499768839574676, + "c4": 10.79981507165975, + "c5": 8.099861303744824, + "c6": 5.399907535829854, + "c7": 2.699953767914927 }, "rgb": [86, 146, 138] }, @@ -282885,23 +282885,23 @@ "year": 1786, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 4.139755700397039, - "c2": -29.374324960352336, - "c3": 26.9672509358966, - "c4": -23.57702805866157, - "c5": -19.394612559058647, - "c6": -8.822247005888329, - "c7": 29.649735113547905 + "points": { + "c1": -22.355586586323138, + "c2": -7.598663844328737, + "c3": -29.126970561099384, + "c4": 19.194726099677318, + "c5": 1.1501148618821588, + "c6": 9.424758777357255, + "c7": -31.18801199309063 }, - "vertexSeeds": { - "c1": 9.067670454909162, - "c2": 8.837632628697703, - "c3": 9.367755235930977, - "c4": 8.94444481528847, - "c5": 9.012289454211482, - "c6": 9.310437409893579, - "c7": 9.021705700114833 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.61997226074897, + "c3": 11.349976883957464, + "c4": 9.07998150716598, + "c5": 6.809986130374473, + "c6": 4.53999075358299, + "c7": 2.2699953767915058 }, "rgb": [222, 0, 59] }, @@ -282912,23 +282912,23 @@ "year": 1786, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 13.259563857378659, - "c2": 7.76897629615857, - "c3": -8.499563629149932, - "c4": -14.007096359423745, - "c5": 23.019134585702396, - "c6": 20.175777890045822, - "c7": 2.0606988870290834 + "points": { + "c1": 2.5048698186276255, + "c2": 27.704980061489294, + "c3": -24.492586612071893, + "c4": 15.71933884040481, + "c5": -33.28766662302944, + "c6": -29.931963681516542, + "c7": -19.597353372377846 }, - "vertexSeeds": { - "c1": 6.805189225195008, - "c2": 6.740624689432684, - "c3": 7.126417338519176, - "c4": 6.747479427603351, - "c5": 6.828669889351009, - "c6": 6.809011769682184, - "c7": 6.933764964110847 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.23578363384188, + "c3": 8.529819694868248, + "c4": 6.823855755894594, + "c5": 5.11789181692094, + "c6": 3.411927877947286, + "c7": 1.7059639389736538 }, "rgb": [58, 15, 49] }, @@ -282939,23 +282939,23 @@ "year": 1786, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 3.0342515889592505, - "c2": 25.922329439647314, - "c3": 13.524826787666136, - "c4": 25.664238923878656, - "c5": 15.238112608209008, - "c6": 26.35130807704813, - "c7": -10.961670486478432 + "points": { + "c1": 16.65284758793856, + "c2": -15.36928136942728, + "c3": 12.857760659354312, + "c4": 23.369308966109514, + "c5": 16.61529351348881, + "c6": -14.466853137204385, + "c7": 6.922808936634276 }, - "vertexSeeds": { - "c1": 4.638559417942444, - "c2": 4.874073846652191, - "c3": 4.905196719634162, - "c4": 4.870909701439608, - "c5": 4.714868985463601, - "c6": 4.68559999988787, - "c7": 4.736278381671718 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296803, + "c3": 5.9177068885806765, + "c4": 4.7341655108645355, + "c5": 3.5506241331484087, + "c6": 2.3670827554322678, + "c7": 1.1835413777161274 }, "rgb": [77, 76, 132] }, @@ -282966,23 +282966,23 @@ "year": 1786, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 5.574819891335391, - "c2": 21.741831823591756, - "c3": 13.717863214621122, - "c4": 3.156014189794938, - "c5": 11.480331972508491, - "c6": -26.62245289949058, - "c7": -4.432000872301369 + "points": { + "c1": -17.662575019306175, + "c2": 20.712657606517656, + "c3": -30.460631225695796, + "c4": 13.46405198766644, + "c5": -20.148105255275674, + "c6": 0.5629635025794961, + "c7": 9.769402725746307 }, - "vertexSeeds": { - "c1": 9.185511440203395, - "c2": 8.916641358669214, - "c3": 9.096160440532099, - "c4": 9.06214404419087, - "c5": 9.006697614773174, - "c6": 8.761643297201802, - "c7": 8.797795222397347 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.61997226074897, + "c3": 11.349976883957464, + "c4": 9.07998150716598, + "c5": 6.809986130374473, + "c6": 4.53999075358299, + "c7": 2.2699953767915058 }, "rgb": [86, 146, 138] }, @@ -282993,23 +282993,23 @@ "year": 1786, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 2.192995578937836, - "c2": -3.5365881548910814, - "c3": 18.801743701513274, - "c4": -6.436335506351153, - "c5": -5.866954599207627, - "c6": -5.872376616586301, - "c7": 3.450009960627664 + "points": { + "c1": 29.957937377373604, + "c2": 3.6424021549072947, + "c3": -11.522262670400284, + "c4": 13.003165569967592, + "c5": 21.195875039503605, + "c6": -27.556712982029385, + "c7": 27.937378450336233 }, - "vertexSeeds": { - "c1": 5.3641353450831355, - "c2": 5.586852733081703, - "c3": 5.3388707320222455, - "c4": 5.586007450878012, - "c5": 5.595861892538444, - "c6": 5.30349106021465, - "c7": 5.377192843069163 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704577, + "c3": 6.726768377253815, + "c4": 5.381414701803052, + "c5": 4.0360610263522885, + "c6": 2.690707350901526, + "c7": 1.345353675450763 }, "rgb": [77, 76, 132] }, @@ -283020,23 +283020,23 @@ "year": 1786, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 37.87980458064931, - "c2": 41.55354835427878, - "c3": 12.734514710229263, - "c4": -42.124856122488836, - "c5": -48.18501353745416, - "c6": -22.137421140811508, - "c7": -43.66388862133311 + "points": { + "c1": -20.966477631495682, + "c2": -9.7332872815536, + "c3": 27.321863457562905, + "c4": -43.384005905166276, + "c5": 43.22807242128808, + "c6": -23.95481376540529, + "c7": -26.787428566670055 }, - "vertexSeeds": { - "c1": 6.823498750841537, - "c2": 6.341722831529588, - "c3": 6.659709820724862, - "c4": 6.796665476408232, - "c5": 6.741809388634695, - "c6": 6.300833629704425, - "c7": 6.569124247765814 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359222, + "c3": 8.252427184466018, + "c4": 6.601941747572814, + "c5": 4.951456310679611, + "c6": 3.300970873786407, + "c7": 1.6504854368932036 }, "rgb": [58, 15, 49] }, @@ -283047,23 +283047,23 @@ "year": 1786, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -34.18795027203, - "c2": 18.864672337086105, - "c3": -35.89580287353415, - "c4": 21.888125640701602, - "c5": 26.365075462956, - "c6": -23.379889257337815, - "c7": -2.9087080103004723 + "points": { + "c1": -14.847443284424305, + "c2": 27.794948197717815, + "c3": -37.43231949269187, + "c4": -2.7482318846681366, + "c5": -4.23742875279499, + "c6": 29.20653822781074, + "c7": 13.698214155973254 }, - "vertexSeeds": { - "c1": 2.375184174607795, - "c2": 2.446433344367759, - "c3": 2.4044309559151738, - "c4": 2.4446690188776357, - "c5": 2.456486096802054, - "c6": 2.3844709714557704, - "c7": 2.385450123760174 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188624, + "c3": 2.9819694868238567, + "c4": 2.3855755894590827, + "c5": 1.7891816920943153, + "c6": 1.1927877947295413, + "c7": 0.596393897364774 }, "rgb": [58, 15, 49] }, @@ -283074,23 +283074,23 @@ "year": 1786, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -27.371009130376265, - "c2": 13.518129393649282, - "c3": -7.704235287934253, - "c4": 13.592111877086865, - "c5": 18.807696410476858, - "c6": 23.063394972047988, - "c7": -2.1751051496848888 + "points": { + "c1": 14.970668494847217, + "c2": 8.554361701640559, + "c3": 24.993247864279063, + "c4": 24.74116027179773, + "c5": -19.350272667668477, + "c6": -28.980020747865613, + "c7": -11.484710963455765 }, - "vertexSeeds": { - "c1": 1.9982794965086743, - "c2": 1.9137433812960485, - "c3": 1.9841152848034085, - "c4": 2.017963578941763, - "c5": 2.022013830641877, - "c6": 2.053937224439669, - "c7": 1.9181805658724675 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037466, + "c3": 2.4734165510864514, + "c4": 1.9787332408691622, + "c5": 1.4840499306518733, + "c6": 0.9893666204345842, + "c7": 0.494683310217289 }, "rgb": [86, 146, 138] }, @@ -283101,23 +283101,23 @@ "year": 1786, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -22.63448875954084, - "c2": 2.8123317412021756, - "c3": -10.039943086353695, - "c4": -17.092698746828127, - "c5": -27.321713730982008, - "c6": -2.8718986629080554, - "c7": -6.212348620719858 + "points": { + "c1": 28.06895937419064, + "c2": 8.540300734773929, + "c3": 11.834252989711523, + "c4": 21.06528101877649, + "c5": 6.522449334854215, + "c6": 26.776475417927003, + "c7": 10.658276804692548 }, - "vertexSeeds": { - "c1": 5.838110944762508, - "c2": 3.1339152990517256, - "c3": 6.152487746733452, - "c4": 4.4785864953689085, - "c5": 3.67338068196927, - "c6": 4.89645403847664, - "c7": 3.5648094313150267 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123439, + "c3": 8.691631992602867, + "c4": 6.953305594082292, + "c5": 5.21497919556172, + "c6": 3.476652797041147, + "c7": 1.7383263985205728 }, "rgb": [58, 15, 49] }, @@ -283128,23 +283128,23 @@ "year": 1787, "resistanceReported": false, "duration": 53740800, - "curveSeeds": { - "c1": -28.732782332403957, - "c2": -37.79845682110547, - "c3": -4.0996989356494, - "c4": -23.08458114184704, - "c5": 17.082567017410526, - "c6": 41.54812247428835, - "c7": -37.88386204386694 + "points": { + "c1": -32.66992563836609, + "c2": 16.975236287206414, + "c3": -26.878406519408394, + "c4": 45.82391879668245, + "c5": 20.44894905301811, + "c6": 26.099012253004574, + "c7": 47.4103064737908 }, - "vertexSeeds": { - "c1": 6.367549740206835, - "c2": 5.806657904836243, - "c3": 6.104729257470384, - "c4": 6.632566151507793, - "c5": 7.548925044514728, - "c6": 5.948886893571121, - "c7": 7.493219823170101 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490985, + "c3": 9.477577438742488, + "c4": 7.58206195099399, + "c5": 5.6865464632454925, + "c6": 3.791030975496995, + "c7": 1.8955154877484974 }, "rgb": [238, 201, 159] }, @@ -283155,23 +283155,23 @@ "year": 1786, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -2.171820467752326, - "c2": -19.98803927145881, - "c3": -11.33951996522315, - "c4": 16.406580131420462, - "c5": 4.0168068053373815, - "c6": 27.333948753438, - "c7": -5.810335449445304 + "points": { + "c1": -21.06805358005521, + "c2": -0.3950540537952918, + "c3": -9.007765461846873, + "c4": -5.6570851478005935, + "c5": 39.523413398274776, + "c6": -15.913788381489205, + "c7": 27.087944513609393 }, - "vertexSeeds": { - "c1": 7.977815878154007, - "c2": 7.945802770229087, - "c3": 7.9001583342896975, - "c4": 8.46245724422617, - "c5": 8.005317865470987, - "c6": 8.028467495343326, - "c7": 8.112535657304806 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.28848821081831, + "c3": 10.240406842348596, + "c4": 8.19232547387888, + "c5": 6.144244105409144, + "c6": 4.096162736939429, + "c7": 2.0480813684697146 }, "rgb": [222, 0, 59] }, @@ -283182,23 +283182,23 @@ "year": 1786, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -9.445572391967811, - "c2": 0.29840729001442057, - "c3": 16.032813700994343, - "c4": 14.16300525712101, - "c5": 13.333405836768744, - "c6": 14.642956454962462, - "c7": 15.872090031744367 + "points": { + "c1": -30.333526466716126, + "c2": 13.719699116222653, + "c3": 31.081194118280802, + "c4": -31.38708562124337, + "c5": -6.674563562237445, + "c6": -13.116652839680665, + "c7": 30.897235212138195 }, - "vertexSeeds": { - "c1": 3.0031119089159177, - "c2": 3.0413154711930828, - "c3": 3.102226601057929, - "c4": 3.001406205140972, - "c5": 2.91747176761423, - "c6": 3.0962874935857347, - "c7": 3.09618112216108 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.52149791955617, + "c3": 3.767914932963473, + "c4": 3.0143319463707763, + "c5": 2.260748959778079, + "c6": 1.507165973185394, + "c7": 0.753582986592697 }, "rgb": [77, 76, 132] }, @@ -283209,23 +283209,23 @@ "year": 1786, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -3.8914386467160575, - "c2": 28.782935540262933, - "c3": 0.20906346143170396, - "c4": 19.26959070243945, - "c5": -2.49968998248886, - "c6": 15.331266856292352, - "c7": -18.75222942749029 + "points": { + "c1": -9.29347112559455, + "c2": 3.2667795220830342, + "c3": 1.7416597367380575, + "c4": -15.43722930300736, + "c5": -3.429141153246274, + "c6": 19.501195171859585, + "c7": 32.77255305243005 }, - "vertexSeeds": { - "c1": 5.650564241785527, - "c2": 5.678671538704562, - "c3": 5.6342162735989305, - "c4": 5.680762572955926, - "c5": 5.355485588052107, - "c6": 5.552766204333485, - "c7": 5.400309529215857 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.18307905686547, + "c3": 6.819232547387878, + "c4": 5.455386037910306, + "c5": 4.091539528432735, + "c6": 2.727693018955164, + "c7": 1.3638465094775711 }, "rgb": [86, 146, 138] }, @@ -283236,23 +283236,23 @@ "year": 1786, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -29.757846638470497, - "c2": -20.120384799229484, - "c3": -34.86073788137102, - "c4": 14.652908275276872, - "c5": -17.96221753108491, - "c6": 29.079603735334132, - "c7": 8.813730544038542 + "points": { + "c1": 10.646214209648406, + "c2": 37.08565958000199, + "c3": -32.10821352161394, + "c4": -6.52331536499247, + "c5": -26.09642336913434, + "c6": 36.43624464095328, + "c7": 0.1074871380117699 }, - "vertexSeeds": { - "c1": 12.640604487485238, - "c2": 12.27364006017195, - "c3": 13.028783311222407, - "c4": 12.288697035023585, - "c5": 12.123707878609041, - "c6": 12.195059232280315, - "c7": 12.285375066677611 + "offsets": { + "c1": 21.844660194174757, + "c2": 18.723994452149807, + "c3": 15.60332871012485, + "c4": 12.482662968099856, + "c5": 9.361997226074903, + "c6": 6.24133148404995, + "c7": 3.120665742024953 }, "rgb": [222, 0, 59] }, @@ -283263,23 +283263,23 @@ "year": 1786, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -8.314624074881348, - "c2": 2.9478946766444913, - "c3": -6.863730629661404, - "c4": -14.908264499623606, - "c5": -10.302362336315088, - "c6": -10.74692933035848, - "c7": -11.712157755217017 + "points": { + "c1": -7.728142577686672, + "c2": 2.760088112065759, + "c3": 4.131645365556196, + "c4": 11.014737793526535, + "c5": -15.967818763000626, + "c6": -11.576605046880932, + "c7": -5.3989839757499105 }, - "vertexSeeds": { - "c1": 6.421166003389277, - "c2": 6.437478643683512, - "c3": 6.252956649142514, - "c4": 6.12503494293249, - "c5": 6.059841722940047, - "c6": 6.038834499284725, - "c7": 6.083682567916191 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [58, 15, 49] }, @@ -283290,23 +283290,23 @@ "year": 1786, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 17.59380396273291, - "c2": -23.025133707688667, - "c3": -23.48816903462427, - "c4": 0.028074221369035257, - "c5": 23.76840159708941, - "c6": -6.817986025077655, - "c7": -16.24325251532086 + "points": { + "c1": 12.261682348216613, + "c2": -2.286689532197002, + "c3": -7.096827582896161, + "c4": 10.099339309747226, + "c5": -10.549559134763737, + "c6": 24.657673465453694, + "c7": -9.43264505156559 }, - "vertexSeeds": { - "c1": 4.708469777851191, - "c2": 4.773539944307932, - "c3": 4.771310168412998, - "c4": 4.831824820499857, - "c5": 4.795138388796125, - "c6": 4.667576582406758, - "c7": 4.837434958182855 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055482, + "c3": 5.779010633379559, + "c4": 4.62320850670365, + "c5": 3.467406380027741, + "c6": 2.311604253351832, + "c7": 1.1558021266759089 }, "rgb": [86, 146, 138] }, @@ -283317,23 +283317,23 @@ "year": 1786, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -21.52953606019466, - "c2": -28.129840111885937, - "c3": 4.85970806265756, - "c4": 14.942721289410045, - "c5": -16.729224649127524, - "c6": -19.18298805183322, - "c7": 27.679906069511837 + "points": { + "c1": -6.935561287014522, + "c2": -29.203883661247428, + "c3": -19.03146854256298, + "c4": -10.057956646821332, + "c5": -25.13788074270482, + "c6": 19.324997569930396, + "c7": -21.439577630627312 }, - "vertexSeeds": { - "c1": 4.028209227388036, - "c2": 4.123666844257572, - "c3": 3.877182088194643, - "c4": 3.923724394734761, - "c5": 4.059479792819009, - "c6": 4.1649186601406765, - "c7": 4.156315275993526 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [222, 0, 59] }, @@ -283344,23 +283344,23 @@ "year": 1786, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -28.772201618914412, - "c2": 24.185193560522148, - "c3": -11.101669333325908, - "c4": 1.550580909435812, - "c5": 4.604412828261129, - "c6": -15.983720446598323, - "c7": 12.642921855973487 + "points": { + "c1": -12.11707647234962, + "c2": -13.059132962795257, + "c3": 12.447886013594719, + "c4": -27.2853196397925, + "c5": 22.71436949757495, + "c6": -30.000050186891148, + "c7": -20.16088699285229 }, - "vertexSeeds": { - "c1": 5.987374625398284, - "c2": 6.293245822704526, - "c3": 6.236812286868516, - "c4": 6.391284912411824, - "c5": 6.169265108397346, - "c6": 6.290195379255048, - "c7": 6.209294346284921 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393897, + "c3": 7.697642163661581, + "c4": 6.158113730929264, + "c5": 4.618585298196948, + "c6": 3.079056865464632, + "c7": 1.539528432732316 }, "rgb": [77, 76, 132] }, @@ -283371,23 +283371,23 @@ "year": 1786, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": -4.864977376669202, - "c2": -36.485829874231094, - "c3": 47.225845757404976, - "c4": 23.06416284221762, - "c5": 10.038826094383886, - "c6": -27.460134454261908, - "c7": 44.98497961028965 + "points": { + "c1": -6.459106444230528, + "c2": 30.061788967412078, + "c3": -48.95948374751636, + "c4": -50.64955059664552, + "c5": -2.173238170435873, + "c6": -29.621642420397297, + "c7": -29.06223403653972 }, - "vertexSeeds": { - "c1": 6.368404526803966, - "c2": 6.650753902466501, - "c3": 6.499029887352366, - "c4": 6.504673983652816, - "c5": 6.558917297267957, - "c6": 6.542551968622806, - "c7": 6.232167076667915 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.65325936199722, + "c3": 8.044382801664362, + "c4": 6.4355062413314865, + "c5": 4.82662968099861, + "c6": 3.2177531206657535, + "c7": 1.6088765603328767 }, "rgb": [77, 76, 132] }, @@ -283398,23 +283398,23 @@ "year": 1787, "resistanceReported": false, "duration": 47001600, - "curveSeeds": { - "c1": -50.134023086438376, - "c2": -47.732048879290716, - "c3": 25.28905963476506, - "c4": -19.478523377800784, - "c5": 19.908143471324813, - "c6": 8.056516773876375, - "c7": -47.57101889178249 + "points": { + "c1": -6.193264174808078, + "c2": 20.286049435975166, + "c3": -20.722223024246752, + "c4": 6.921103827328672, + "c5": 17.674905863392418, + "c6": 5.2722099872555575, + "c7": -27.648667066517902 }, - "vertexSeeds": { - "c1": 9.895804972586125, - "c2": 9.476084043434415, - "c3": 10.515308071608539, - "c4": 9.535614444202475, - "c5": 10.411377297132963, - "c6": 9.503125658849232, - "c7": 9.296784454991403 + "offsets": { + "c1": 17.864077669902912, + "c2": 15.312066574202502, + "c3": 12.76005547850207, + "c4": 10.208044382801662, + "c5": 7.656033287101251, + "c6": 5.104022191400831, + "c7": 2.5520110957004087 }, "rgb": [58, 15, 49] }, @@ -283425,23 +283425,23 @@ "year": 1787, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": 26.104826058020862, - "c2": 55.87583615524973, - "c3": -39.17527884173211, - "c4": -32.98685708063454, - "c5": 52.515638881464184, - "c6": -36.1189225506346, - "c7": 34.20660113612537 + "points": { + "c1": 41.80958186269689, + "c2": 22.78264165969459, + "c3": -30.740153090354468, + "c4": 2.8854091278822835, + "c5": -11.704093925677135, + "c6": 16.73881951014353, + "c7": -9.069156556160415 }, - "vertexSeeds": { - "c1": 10.456009105502547, - "c2": 10.12223400409162, - "c3": 10.224635835842928, - "c4": 9.963155719029942, - "c5": 10.595457947852436, - "c6": 10.716787077559376, - "c7": 10.703132567805863 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403617, + "c3": 12.875635691169654, + "c4": 10.30050855293573, + "c5": 7.7253814147018085, + "c6": 5.150254276467886, + "c7": 2.5751271382339227 }, "rgb": [222, 0, 59] }, @@ -283452,23 +283452,23 @@ "year": 1786, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 9.60917196476246, - "c2": 24.28056061720737, - "c3": -5.464451074892811, - "c4": 3.0562951487869867, - "c5": 19.278972490244882, - "c6": 15.945517069659402, - "c7": -4.0439419802016054 + "points": { + "c1": 16.319981234956366, + "c2": 31.645465884559428, + "c3": -23.979200504532606, + "c4": 13.402124344257174, + "c5": -30.353037163242618, + "c6": -21.3565884163416, + "c7": -25.038461753745338 }, - "vertexSeeds": { - "c1": 4.161017630101228, - "c2": 3.926154601258349, - "c3": 3.9026530856103334, - "c4": 3.96862682129543, - "c5": 3.939923790301887, - "c6": 3.8889910192026766, - "c7": 3.873036296144307 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [58, 15, 49] }, @@ -283479,23 +283479,23 @@ "year": 1785, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 10.44083441001472, - "c2": -10.377686013947352, - "c3": -8.510817208894036, - "c4": -10.034726573013984, - "c5": 3.6606278145628828, - "c6": 11.147350273228732, - "c7": 17.597939554646864 + "points": { + "c1": -4.812591956814323, + "c2": -9.750793039020124, + "c3": -14.13611597805854, + "c4": -17.436325779159265, + "c5": 4.809107345239713, + "c6": 1.2050561915993718, + "c7": 3.676983489960751 }, - "vertexSeeds": { - "c1": 2.3717559869802476, - "c2": 2.425032380691699, - "c3": 2.3528370064714497, - "c4": 2.4139619856454613, - "c5": 2.496902642992839, - "c6": 2.444045809159251, - "c7": 2.51334359800287 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.68932038834951, + "c3": 3.0744336569579302, + "c4": 2.45954692556634, + "c5": 1.8446601941747607, + "c6": 1.22977346278317, + "c7": 0.614886731391585 }, "rgb": [58, 15, 49] }, @@ -283506,23 +283506,23 @@ "year": 1787, "resistanceReported": false, "duration": 46656000, - "curveSeeds": { - "c1": 45.94815528752062, - "c2": -30.24124396299652, - "c3": -1.3755778167233004, - "c4": -41.16688313990336, - "c5": 11.499361813015739, - "c6": -2.601930216868297, - "c7": 43.970166142015444 + "points": { + "c1": -47.04181397430523, + "c2": 50.678438157264, + "c3": -16.668336493415154, + "c4": 4.0371477311719275, + "c5": -32.486047082883644, + "c6": 44.67109394640656, + "c7": -31.18667364971356 }, - "vertexSeeds": { - "c1": 4.710299952947614, - "c2": 6.736712925166736, - "c3": 6.8024200462184226, - "c4": 6.561226303560295, - "c5": 5.9359838824068785, - "c6": 6.024829787238082, - "c7": 4.8480683295846605 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066578, + "c4": 6.657420249653259, + "c5": 4.993065187239946, + "c6": 3.328710124826632, + "c7": 1.6643550624133132 }, "rgb": [238, 201, 159] }, @@ -283533,23 +283533,23 @@ "year": 1786, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 30.43582635602843, - "c2": 21.658289216760217, - "c3": -3.5072888591678932, - "c4": -19.550571524460928, - "c5": -25.037620470936453, - "c6": 31.35871520614181, - "c7": -7.270735061189097 + "points": { + "c1": -5.930664026781809, + "c2": -26.7651086830956, + "c3": 27.746980231236606, + "c4": -26.794574527729324, + "c5": -15.89240435565548, + "c6": -23.74741829291373, + "c7": -33.608239976754405 }, - "vertexSeeds": { - "c1": 13.46199963538513, - "c2": 12.74311823132904, - "c3": 13.420780327462634, - "c4": 12.816850870110612, - "c5": 12.769896400799364, - "c6": 13.305745595751764, - "c7": 13.080304437275913 + "offsets": { + "c1": 22.97734627831715, + "c2": 19.694868238557564, + "c3": 16.412390198797976, + "c4": 13.12991215903839, + "c5": 9.847434119278804, + "c6": 6.564956079519174, + "c7": 3.282478039759587 }, "rgb": [222, 0, 59] }, @@ -283560,23 +283560,23 @@ "year": 1786, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -24.81240373608017, - "c2": 25.04628361588958, - "c3": 19.769413401097992, - "c4": 31.557681168528376, - "c5": -18.56331140312835, - "c6": -7.442941726130336, - "c7": -12.385065565415807 + "points": { + "c1": 20.69154872002801, + "c2": 30.736565964458464, + "c3": 22.720853176968006, + "c4": 7.637468205681152, + "c5": -14.406261145678009, + "c6": -15.17431618184811, + "c7": -7.261750295692611 }, - "vertexSeeds": { - "c1": 7.916904657094501, - "c2": 7.846091028519286, - "c3": 8.266316024994444, - "c4": 8.520713546119012, - "c5": 8.47918817544092, - "c6": 7.936736260311355, - "c7": 8.200321965152618 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737866, + "c3": 10.19417475728156, + "c4": 8.155339805825252, + "c5": 6.116504854368944, + "c6": 4.077669902912615, + "c7": 2.0388349514563076 }, "rgb": [58, 15, 49] }, @@ -283587,23 +283587,23 @@ "year": 1788, "resistanceReported": false, "duration": 77500800, - "curveSeeds": { - "c1": -91.34585250144843, - "c2": -91.58848940350235, - "c3": 23.713804584633934, - "c4": 18.268719612160908, - "c5": 91.16098182590639, - "c6": -49.864218573542, - "c7": 77.68926577755099 + "points": { + "c1": 13.30875453181352, + "c2": -95.58787908250389, + "c3": -33.520308630115984, + "c4": -96.05678638767857, + "c5": -78.27820230536872, + "c6": 71.78724479691306, + "c7": -74.85608879892004 }, - "vertexSeeds": { - "c1": 5.608033287216159, - "c2": 5.606770669343074, - "c3": 5.611519907457836, - "c4": 5.599223879710962, - "c5": 5.613760768376112, - "c6": 5.596468994834448, - "c7": 5.61412384181615 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664126, + "c3": 6.703652334720372, + "c4": 5.362921867776084, + "c5": 4.02219140083233, + "c6": 2.681460933888042, + "c7": 1.3407304669442879 }, "rgb": [86, 146, 138] }, @@ -283614,23 +283614,23 @@ "year": 1786, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -31.140121788856305, - "c2": -8.707213865937675, - "c3": 3.284582932284337, - "c4": 5.644483871184548, - "c5": 14.549543250758447, - "c6": -19.355088937674516, - "c7": -26.880938574831497 + "points": { + "c1": 40.522187923401546, + "c2": 21.817553805957417, + "c3": 40.08155500310424, + "c4": 21.849401201340925, + "c5": 10.134090795163658, + "c6": -33.26441330463279, + "c7": 30.12166624357498 }, - "vertexSeeds": { - "c1": 6.439112591597864, - "c2": 6.742805714567558, - "c3": 6.627757549014134, - "c4": 7.284178938801109, - "c5": 6.510168591724818, - "c6": 7.313696281892312, - "c7": 6.799955035447467 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.73509015256588, + "c3": 8.945908460471564, + "c4": 7.156726768377262, + "c5": 5.367545076282946, + "c6": 3.578363384188631, + "c7": 1.7891816920943155 }, "rgb": [58, 15, 49] }, @@ -283641,23 +283641,23 @@ "year": 1787, "resistanceReported": false, "duration": 56505600, - "curveSeeds": { - "c1": -13.660646788328286, - "c2": -68.2051723059625, - "c3": 34.79861956285875, - "c4": -64.31455214664432, - "c5": 40.287699803484145, - "c6": 16.560034557396577, - "c7": -44.652875052379784 + "points": { + "c1": 62.594557707741686, + "c2": 44.310927600168455, + "c3": 49.43873069832355, + "c4": 44.48167874331082, + "c5": 60.31502390805109, + "c6": 22.389704925137394, + "c7": 50.69337553520822 }, - "vertexSeeds": { - "c1": 5.93553377358256, - "c2": 6.563863764428697, - "c3": 6.060666433533269, - "c4": 5.722507393948838, - "c5": 6.450759037986429, - "c6": 6.556151816846451, - "c7": 6.5799685825440655 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836336, + "c3": 7.951918631530278, + "c4": 6.361534905224232, + "c5": 4.771151178918174, + "c6": 3.180767452612116, + "c7": 1.590383726306058 }, "rgb": [77, 76, 132] }, @@ -283668,23 +283668,23 @@ "year": 1786, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 30.87898596677111, - "c2": -11.925268678037021, - "c3": -23.972437290747816, - "c4": -10.151384109652849, - "c5": 21.972193685982454, - "c6": 28.275091260678778, - "c7": -34.91913256935131 + "points": { + "c1": -5.886401339140711, + "c2": 16.68291946975227, + "c3": 19.166206826051237, + "c4": -20.762399262889865, + "c5": 9.716778701778217, + "c6": -22.372375063568292, + "c7": -36.152711861460425 }, - "vertexSeeds": { - "c1": 10.1319863401795, - "c2": 10.246236331453252, - "c3": 10.022628050127318, - "c4": 10.131871947204116, - "c5": 9.926679660101046, - "c6": 10.084450458654032, - "c7": 9.904374315001414 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.78502080443829, + "c3": 12.320850670365257, + "c4": 9.85668053629222, + "c5": 7.392510402219184, + "c6": 4.928340268146071, + "c7": 2.4641701340730355 }, "rgb": [86, 146, 138] }, @@ -283695,23 +283695,23 @@ "year": 1786, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": 19.932016487072133, - "c2": 8.321268922984956, - "c3": 1.770344856842371, - "c4": -10.771685503333478, - "c5": -2.213603465251495, - "c6": 7.17146336030984, - "c7": -16.52118426269012 + "points": { + "c1": -10.166834134465192, + "c2": 17.996049282556967, + "c3": 17.613280915743957, + "c4": 19.81560677566145, + "c5": 15.989049974922338, + "c6": -15.58028056340046, + "c7": 7.527971124939139 }, - "vertexSeeds": { - "c1": 2.3567950279516214, - "c2": 2.3790878771668003, - "c3": 2.4609871384064994, - "c4": 2.179138843321817, - "c5": 2.22045785460949, - "c6": 2.0860663099709558, - "c7": 2.3850321398017784 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288503, + "c3": 3.0050855293573737, + "c4": 2.4040684234859, + "c5": 1.8030513176144263, + "c6": 1.20203421174295, + "c7": 0.6010171058714762 }, "rgb": [58, 15, 49] }, @@ -283722,23 +283722,23 @@ "year": 1786, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -3.322986885793803, - "c2": 9.870547129863056, - "c3": -19.943311672796796, - "c4": 3.4473731168041972, - "c5": -19.51478831106127, - "c6": 15.789061519757787, - "c7": -0.8447204799243409 + "points": { + "c1": 12.764467500066743, + "c2": -22.7598713686982, + "c3": -6.347229138266162, + "c4": 3.5322320824484272, + "c5": 4.68829271772854, + "c6": -22.39694645313636, + "c7": -0.5363650830003266 }, - "vertexSeeds": { - "c1": 5.207938462890119, - "c2": 5.761241213610395, - "c3": 5.271578044453414, - "c4": 5.7390945703708525, - "c5": 5.195471128168188, - "c6": 5.704287647240925, - "c7": 5.191819021073735 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [58, 15, 49] }, @@ -283749,23 +283749,23 @@ "year": 1786, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 25.546115279467834, - "c2": -22.95720297115902, - "c3": -27.56804171483612, - "c4": -17.763862923287263, - "c5": -21.93101576308392, - "c6": 27.534141952654743, - "c7": 27.498504945602335 + "points": { + "c1": -20.56200172008537, + "c2": -9.909752129057324, + "c3": -4.233113701046928, + "c4": -7.127624531962326, + "c5": -23.516959278504697, + "c6": 25.509750556762455, + "c7": 23.757724211357804 }, - "vertexSeeds": { - "c1": 10.7127428717862, - "c2": 11.29566557793331, - "c3": 10.742072133652943, - "c4": 10.920044097505988, - "c5": 9.849823544166325, - "c6": 9.856256277468873, - "c7": 10.58211447343819 + "offsets": { + "c1": 18.996763754045308, + "c2": 16.282940360610258, + "c3": 13.56911696717523, + "c4": 10.855293573740179, + "c5": 8.141470180305129, + "c6": 5.427646786870077, + "c7": 2.7138233934350513 }, "rgb": [238, 201, 159] }, @@ -283776,23 +283776,23 @@ "year": 1786, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -43.43801937587165, - "c2": 0.40036659119480333, - "c3": -0.0004000165901416608, - "c4": 47.19551390945112, - "c5": -34.857146382033974, - "c6": -4.832976268887329, - "c7": -2.9473880935754906 + "points": { + "c1": -4.068361760670889, + "c2": -36.652195598168596, + "c3": 8.150746295313702, + "c4": -24.796126665006568, + "c5": 32.94974764548809, + "c6": 12.774962697861909, + "c7": 1.3358740457399776 }, - "vertexSeeds": { - "c1": 7.291847675259722, - "c2": 7.562426109150264, - "c3": 8.101027063277787, - "c4": 7.966546002081794, - "c5": 7.175518961601461, - "c6": 7.249267083520158, - "c7": 7.966253962038076 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852977, + "c3": 9.685621821544153, + "c4": 7.748497457235318, + "c5": 5.811373092926494, + "c6": 3.874248728617659, + "c7": 1.9371243643088358 }, "rgb": [222, 0, 59] }, @@ -283803,23 +283803,23 @@ "year": 1786, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -12.555011700106942, - "c2": -10.410791641339792, - "c3": 17.76867000641075, - "c4": 9.667117346413995, - "c5": 11.128963867166938, - "c6": 20.939067721625257, - "c7": 0.6774077101560643 + "points": { + "c1": -18.261333420681662, + "c2": 24.785481158444725, + "c3": -24.390672159737203, + "c4": 0.05262202160253082, + "c5": -22.906745670742424, + "c6": 22.488458849143534, + "c7": 18.951750493101045 }, - "vertexSeeds": { - "c1": 3.8066955346747227, - "c2": 3.9655211781415525, - "c3": 4.00613618781213, - "c4": 3.9014694016245888, - "c5": 3.9169522508545347, - "c6": 3.9314677352712066, - "c7": 3.7734045175070388 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -283830,23 +283830,23 @@ "year": 1787, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": -30.363097118931528, - "c2": -34.654956568825284, - "c3": 51.405471926079265, - "c4": -33.96836023414053, - "c5": -31.84801057429554, - "c6": -49.49537564394651, - "c7": 12.00294662677684 + "points": { + "c1": 4.165627776257466, + "c2": -35.54668121021155, + "c3": 17.250677623524375, + "c4": -43.502482077165475, + "c5": 4.263265155021102, + "c6": -8.029583753761294, + "c7": 41.59860902720447 }, - "vertexSeeds": { - "c1": 9.69559585492228, - "c2": 9.69559585492228, - "c3": 9.69559585492228, - "c4": 9.69559585492228, - "c5": 9.69559585492228, - "c6": 9.69559585492228, - "c7": 9.69559585492228 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -283857,23 +283857,23 @@ "year": 1786, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": -1.4755952486316204, - "c2": -38.71554348284816, - "c3": 32.817622867396814, - "c4": -25.65974977331642, - "c5": -5.120521469932854, - "c6": -43.166532525588615, - "c7": 44.77723135893765 + "points": { + "c1": 37.74320536459559, + "c2": 17.006473396017135, + "c3": 50.69803229891553, + "c4": 6.372147129386754, + "c5": 3.7012478883319204, + "c6": 20.708714818171778, + "c7": -15.465108077513761 }, - "vertexSeeds": { - "c1": 2.049696377613479, - "c2": 5.141891424071218, - "c3": 3.633957666959927, - "c4": 2.9004861692666166, - "c5": 3.1882902057578995, - "c6": 5.402012314734543, - "c7": 3.154066021133475 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385113, + "c4": 5.17799352750809, + "c5": 3.883495145631068, + "c6": 2.5889967637540447, + "c7": 1.2944983818770233 }, "rgb": [238, 201, 159] }, @@ -283884,23 +283884,23 @@ "year": 1786, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": 38.314324448326865, - "c2": 12.772773608811164, - "c3": 17.258098150544264, - "c4": -35.15657732188273, - "c5": -30.381685214138084, - "c6": 39.63406040557654, - "c7": 7.757521967217144 + "points": { + "c1": 43.530531696418386, + "c2": 17.351169748337718, + "c3": -14.019647162612848, + "c4": -50.88113380347642, + "c5": 7.1201898129276415, + "c6": -16.811321132874795, + "c7": 33.27936123272908 }, - "vertexSeeds": { - "c1": 15.13864557696347, - "c2": 15.074585988840914, - "c3": 15.002965396033145, - "c4": 15.603094425899553, - "c5": 16.145539541979044, - "c6": 15.769957410717286, - "c7": 15.43536631882238 + "offsets": { + "c1": 27.119741100323623, + "c2": 23.24549237170598, + "c3": 19.371243643088295, + "c4": 15.496994914470653, + "c5": 11.62274618585297, + "c6": 7.7484974572353265, + "c7": 3.874248728617643 }, "rgb": [222, 0, 59] }, @@ -283911,23 +283911,23 @@ "year": 1786, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 21.78267196091204, - "c2": 20.54427868178133, - "c3": 12.2794981728726, - "c4": -16.34143188843509, - "c5": 19.015606056069245, - "c6": 30.12309164764416, - "c7": 5.731284342207175 + "points": { + "c1": 8.953193503003845, + "c2": 14.730722213993644, + "c3": -30.874555215101545, + "c4": -1.2236089116841171, + "c5": -12.985367458227614, + "c6": 10.154201187811317, + "c7": -1.6529585826928113 }, - "vertexSeeds": { - "c1": 8.49264841482091, - "c2": 8.674730805856733, - "c3": 8.355290020876847, - "c4": 8.397801841898337, - "c5": 8.5675336383958, - "c6": 8.405887179884738, - "c7": 8.663895434338794 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099877, + "c3": 10.402219140083211, + "c4": 8.321775312066586, + "c5": 6.241331484049918, + "c6": 4.160887656033293, + "c7": 2.080443828016667 }, "rgb": [77, 76, 132] }, @@ -283938,23 +283938,23 @@ "year": 1786, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -7.638233254349299, - "c2": 21.81541127430062, - "c3": -21.978186614575257, - "c4": -11.415417469084389, - "c5": -19.352192473129982, - "c6": -30.30574269255917, - "c7": 22.2838874227436 + "points": { + "c1": -1.606968692601729, + "c2": -2.7823967741674878, + "c3": 14.11914210908946, + "c4": -20.18546189592474, + "c5": -3.513411240146919, + "c6": -3.391090554934266, + "c7": 14.595950455865456 }, - "vertexSeeds": { - "c1": 6.619810989413114, - "c2": 7.0953657467638855, - "c3": 6.483406998804746, - "c4": 6.7308648552417, - "c5": 6.616578305972913, - "c6": 6.785946294339373, - "c7": 6.539250307500986 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922333, + "c3": 8.57605177993528, + "c4": 6.860841423948209, + "c5": 5.145631067961157, + "c6": 3.4304207119741044, + "c7": 1.7152103559870522 }, "rgb": [86, 146, 138] }, @@ -283965,23 +283965,23 @@ "year": 1786, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 40.686767253980264, - "c2": 7.20129965445323, - "c3": 35.1092880920491, - "c4": -31.09659189466816, - "c5": 6.9620433758001, - "c6": 1.7399663434572474, - "c7": 41.1097881031874 + "points": { + "c1": -33.61728738859199, + "c2": -40.18065550677831, + "c3": 40.50780328209353, + "c4": -15.359256283295117, + "c5": -44.3203455671174, + "c6": 19.536696138647258, + "c7": -39.795948479232834 }, - "vertexSeeds": { - "c1": 4.156790630585919, - "c2": 4.168771819707141, - "c3": 3.9684303157904703, - "c4": 4.014002419679213, - "c5": 4.152486216123001, - "c6": 3.9371861391403065, - "c7": 3.93207635544511 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929263, + "c3": 5.131761442441051, + "c4": 4.105409153952839, + "c5": 3.0790568654646266, + "c6": 2.0527045769764247, + "c7": 1.0263522884882124 }, "rgb": [77, 76, 132] }, @@ -283992,23 +283992,23 @@ "year": 1786, "resistanceReported": false, "duration": 6912000, - "curveSeeds": { - "c1": -1.2223816563132317, - "c2": 14.726219822737349, - "c3": -1.434680112575407, - "c4": 11.160129438815915, - "c5": 7.854700657259549, - "c6": -14.10309323008056, - "c7": 15.691359576381018 + "points": { + "c1": -15.311159097996981, + "c2": -11.143367723238189, + "c3": 15.776460088990106, + "c4": -6.983591859482988, + "c5": 18.612885551963664, + "c6": -8.306068516792589, + "c7": -3.7847858085270687 }, - "vertexSeeds": { - "c1": 6.303505226091075, - "c2": 6.753205733507899, - "c3": 6.443052567694822, - "c4": 6.309353049903966, - "c5": 6.565426923704136, - "c6": 6.682756887365858, - "c7": 6.449602740417376 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198326, + "c3": 8.159963014331948, + "c4": 6.52797041146555, + "c5": 4.8959778085991745, + "c6": 3.263985205732775, + "c7": 1.6319926028663765 }, "rgb": [86, 146, 138] }, @@ -284019,23 +284019,23 @@ "year": 1786, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 27.017028439494055, - "c2": -21.625722913092105, - "c3": 1.8857459262743284, - "c4": -15.820733854532694, - "c5": -20.847515704729283, - "c6": 27.17919652454725, - "c7": -10.689141969007586 + "points": { + "c1": 14.03140687443181, + "c2": -13.268070354304342, + "c3": 29.008834193033685, + "c4": 27.35602827146098, + "c5": 9.187686712973196, + "c6": 22.994310413014226, + "c7": 26.34749679922828 }, - "vertexSeeds": { - "c1": 2.9827818250004263, - "c2": 3.1005809558552957, - "c3": 2.957980986054423, - "c4": 3.101163304925233, - "c5": 2.797857298376846, - "c6": 2.8886914825849948, - "c7": 3.158351747468662 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.60471567267684, + "c3": 3.8372630605640303, + "c4": 3.0698104484512267, + "c5": 2.302357836338417, + "c6": 1.5349052242256134, + "c7": 0.7674526121128098 }, "rgb": [77, 76, 132] }, @@ -284046,23 +284046,23 @@ "year": 1786, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -0.18734502651289375, - "c2": -5.403221505995649, - "c3": 5.821160291341137, - "c4": -17.769248945174684, - "c5": -3.0126135940816994, - "c6": -7.708656009716005, - "c7": -17.874470622025008 + "points": { + "c1": 30.044208840229118, + "c2": 10.02035950677326, + "c3": -12.516964327031083, + "c4": 36.05520275026066, + "c5": 31.67161042148635, + "c6": -0.7918298174578453, + "c7": -3.843073019808841 }, - "vertexSeeds": { - "c1": 1.1734783046416633, - "c2": 1.142409566709115, - "c3": 1.156533834350977, - "c4": 1.1965169757538225, - "c5": 1.1942495933868151, - "c6": 1.1393605302347944, - "c7": 1.0936223875450108 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742022, + "c3": 1.4794267221451687, + "c4": 1.1835413777161348, + "c5": 0.8876560332871011, + "c6": 0.5917706888580674, + "c7": 0.2958853444290337 }, "rgb": [222, 0, 59] }, @@ -284073,23 +284073,23 @@ "year": 1786, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -30.123924167760126, - "c2": 6.402435089025452, - "c3": -2.3721242213261817, - "c4": 30.351719403992014, - "c5": -18.31395234530449, - "c6": 3.3858157227447947, - "c7": 13.03654890884684 + "points": { + "c1": -18.39370261794042, + "c2": -6.503428094082167, + "c3": -34.20444342746462, + "c4": 38.89962003872463, + "c5": 35.2283080387732, + "c6": 26.902654631663587, + "c7": -22.318248704018156 }, - "vertexSeeds": { - "c1": 2.672198285478477, - "c2": 1.361099584474145, - "c3": 2.065774582612576, - "c4": 2.6547739678561983, - "c5": 2.3710900809837057, - "c6": 2.114865098493379, - "c7": 2.1791655337917337 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033287, + "c3": 3.4674063800277395, + "c4": 2.773925104022191, + "c5": 2.0804438280166435, + "c6": 1.386962552011096, + "c7": 0.6934812760055475 }, "rgb": [238, 201, 159] }, @@ -284100,23 +284100,23 @@ "year": 1786, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -15.56370487101507, - "c2": -9.62398756637981, - "c3": -3.705024565707916, - "c4": 20.225554778562604, - "c5": -13.42105397267337, - "c6": -12.633797563891719, - "c7": 13.310744464375595 + "points": { + "c1": 32.543586252397965, + "c2": -27.81151920990683, + "c3": -4.890685278119449, + "c4": -39.421636785457295, + "c5": -42.11421212101177, + "c6": 30.264826388399847, + "c7": -29.560569205256012 }, - "vertexSeeds": { - "c1": 9.891496132370024, - "c2": 10.48812937074153, - "c3": 10.04559458257856, - "c4": 10.684186821196358, - "c5": 9.87263076058926, - "c6": 10.3370315041576, - "c7": 9.99384301183892 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.284327323162286, + "c3": 12.736939435968544, + "c4": 10.189551548774844, + "c5": 7.642163661581143, + "c6": 5.0947757743874424, + "c7": 2.5473878871937212 }, "rgb": [58, 15, 49] }, @@ -284127,23 +284127,23 @@ "year": 1786, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -28.6291951320991, - "c2": 12.41732772701424, - "c3": -30.503934392157255, - "c4": 0.31207883555880755, - "c5": 25.63775053528053, - "c6": -4.198202806780465, - "c7": -14.261167603066127 + "points": { + "c1": 16.272055679261328, + "c2": -26.763640975845078, + "c3": 15.687733021048736, + "c4": 17.176900735891046, + "c5": 22.45478357469029, + "c6": -7.819502823339491, + "c7": -9.457130853303411 }, - "vertexSeeds": { - "c1": 9.401530784765244, - "c2": 9.934104051522958, - "c3": 9.831270951272307, - "c4": 9.905745137362619, - "c5": 9.487743330913476, - "c6": 10.13541287881666, - "c7": 9.522908763532511 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076266, + "c3": 12.112806287563576, + "c4": 9.690245030050844, + "c5": 7.267683772538133, + "c6": 4.845122515025422, + "c7": 2.422561257512711 }, "rgb": [77, 76, 132] }, @@ -284154,23 +284154,23 @@ "year": 1786, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 13.93643472031713, - "c2": -1.2410594915345428, - "c3": -3.434953510903707, - "c4": -14.177772035987715, - "c5": -6.520618662460837, - "c6": -14.880280496708098, - "c7": 11.482501991373582 + "points": { + "c1": -7.833009928243278, + "c2": 1.7497285230119601, + "c3": 21.135238408650018, + "c4": 27.65662375803646, + "c5": -16.895700842956543, + "c6": -6.610236921901105, + "c7": -17.093207665107023 }, - "vertexSeeds": { - "c1": 6.389822238626122, - "c2": 6.446865078795502, - "c3": 6.372643922314347, - "c4": 6.277892274503165, - "c5": 6.228429580315821, - "c6": 6.1707933774637045, - "c7": 6.3216853455595166 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916773, + "c3": 7.998150716597321, + "c4": 6.398520573277848, + "c5": 4.798890429958398, + "c6": 3.199260286638924, + "c7": 1.599630143319451 }, "rgb": [58, 15, 49] }, @@ -284181,23 +284181,23 @@ "year": 1786, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 29.398832858930234, - "c2": -5.329220602024144, - "c3": -20.06333468523474, - "c4": -22.963274391474968, - "c5": -33.0994163781204, - "c6": -18.605125826928724, - "c7": 27.0229151515517 + "points": { + "c1": -31.735384722434418, + "c2": 22.60887526881647, + "c3": -14.848987377003251, + "c4": -30.39182174289396, + "c5": -21.248812201677588, + "c6": -20.023279502246602, + "c7": 3.087731687544128 }, - "vertexSeeds": { - "c1": 11.280930529111577, - "c2": 11.456690183781703, - "c3": 11.230953088216987, - "c4": 11.263875213636588, - "c5": 11.412012189179393, - "c6": 11.341666021152436, - "c7": 11.604343337591486 + "offsets": { + "c1": 19.644012944983817, + "c2": 16.837725381414675, + "c3": 14.031437817845593, + "c4": 11.22515025427645, + "c5": 8.418862690707368, + "c6": 5.612575127138225, + "c7": 2.8062875635690823 }, "rgb": [86, 146, 138] }, @@ -284208,23 +284208,23 @@ "year": 1786, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -14.206389754023203, - "c2": -24.757316640308556, - "c3": 23.10703247332979, - "c4": 26.147941205002095, - "c5": 17.34557186346993, - "c6": 23.91969059425119, - "c7": -2.920058157631992 + "points": { + "c1": -15.931955770494756, + "c2": -23.402177443709444, + "c3": -20.88342169602558, + "c4": 1.2009906005852073, + "c5": 15.529279095689002, + "c6": -7.262382187714142, + "c7": -12.933931029733799 }, - "vertexSeeds": { - "c1": 1.709372746343223, - "c2": 1.6794230449119378, - "c3": 1.6392420940726045, - "c4": 1.6274190893442464, - "c5": 1.6366993500135678, - "c6": 1.6781430125818655, - "c7": 1.6777910689865134 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797484, + "c3": 2.0573277854831282, + "c4": 1.6458622283865012, + "c5": 1.2343966712898742, + "c6": 0.8229311141932542, + "c7": 0.4114655570966271 }, "rgb": [58, 15, 49] }, @@ -284235,23 +284235,23 @@ "year": 1786, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 15.010955722161928, - "c2": 0.11950668274984011, - "c3": -23.268862782964398, - "c4": -12.632897287960748, - "c5": -26.26984976591792, - "c6": -12.706123834448114, - "c7": 16.072204826831918 + "points": { + "c1": -20.918150238941685, + "c2": -13.952310615461117, + "c3": 22.400858431974765, + "c4": 14.596397791654486, + "c5": -28.20944001029988, + "c6": 26.508837554624282, + "c7": -9.704063996026665 }, - "vertexSeeds": { - "c1": 2.793985443568814, - "c2": 2.641243921284763, - "c3": 2.670185928000757, - "c4": 2.8790214743114997, - "c5": 2.819553661595845, - "c6": 2.6092042016770947, - "c7": 2.878903199580758 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.773925104022189, + "c5": 2.080443828016646, + "c6": 1.3869625520110944, + "c7": 0.6934812760055515 }, "rgb": [77, 76, 132] }, @@ -284262,23 +284262,23 @@ "year": 1786, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 12.371763319056434, - "c2": 20.25364872357359, - "c3": 30.64700159603906, - "c4": 12.369757898685513, - "c5": 32.44305819820519, - "c6": -0.12870456805360675, - "c7": -27.420768689416857 + "points": { + "c1": 26.371047106478983, + "c2": 5.825395737254901, + "c3": 1.3765716938615356, + "c4": 1.1053571427468398, + "c5": -2.708306619126496, + "c6": 36.49685743883195, + "c7": 1.618946453320497 }, - "vertexSeeds": { - "c1": 8.42986414523063, - "c2": 8.429867149539765, - "c3": 8.525760660499552, - "c4": 8.507693319558632, - "c5": 8.657767672530978, - "c6": 8.738774336205829, - "c7": 8.79535760759373 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461858, + "c3": 10.610263522884884, + "c4": 8.488210818307905, + "c5": 6.366158113730929, + "c6": 4.244105409153953, + "c7": 2.1220527045769764 }, "rgb": [58, 15, 49] }, @@ -284289,23 +284289,23 @@ "year": 1786, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -0.24097141897081187, - "c2": 6.732893690931498, - "c3": 5.3395069444951275, - "c4": 11.50551977891783, - "c5": 24.44255169039581, - "c6": -22.934683510263007, - "c7": -24.652848723213527 + "points": { + "c1": -21.751417826923817, + "c2": 21.635371460500664, + "c3": -23.484084982680066, + "c4": -13.144702101301666, + "c5": -7.3994739131577845, + "c6": 19.799702804332284, + "c7": -20.715230374277702 }, - "vertexSeeds": { - "c1": 5.49190795083119, - "c2": 5.465542100459536, - "c3": 5.689424535536121, - "c4": 5.407051786545093, - "c5": 5.563832081517888, - "c6": 5.666634043819957, - "c7": 5.396555111855918 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187247, + "c3": 7.004160887656024, + "c4": 5.603328710124823, + "c5": 4.202496532593623, + "c6": 2.801664355062423, + "c7": 1.4008321775312003 }, "rgb": [58, 15, 49] }, @@ -284316,23 +284316,23 @@ "year": 1786, "resistanceReported": true, "duration": 18748800, - "curveSeeds": { - "c1": 0.6980160754207674, - "c2": 5.356730875791424, - "c3": 17.857386596979484, - "c4": -12.050740682765095, - "c5": 1.1634329149068847, - "c6": 12.810397398548485, - "c7": -5.067314194519124 + "points": { + "c1": -14.472657038125892, + "c2": -3.141984152781358, + "c3": 28.376021426541236, + "c4": -25.280407656112285, + "c5": 5.68271915335302, + "c6": -11.794486130163019, + "c7": 7.088298071766921 }, - "vertexSeeds": { - "c1": 5.298781494999116, - "c2": 5.2297757908406854, - "c3": 5.0102167931956485, - "c4": 5.049865764075935, - "c5": 5.329843449556141, - "c6": 5.141243045610389, - "c7": 5.76607797081396 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227458, + "c3": 7.0272769301895535, + "c4": 5.621821544151639, + "c5": 4.216366158113734, + "c6": 2.8109107720758195, + "c7": 1.4054553860379098 }, "rgb": [238, 201, 159] }, @@ -284343,23 +284343,23 @@ "year": 1786, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -3.4584033431139076, - "c2": 33.40124635745198, - "c3": -33.497903031069015, - "c4": -2.827593126428134, - "c5": 24.016675893721086, - "c6": 5.037422563305704, - "c7": 16.77743156037114 + "points": { + "c1": -0.8314351790230674, + "c2": -28.199845580259037, + "c3": 7.415097559752532, + "c4": -10.243614690056585, + "c5": -22.80117518124489, + "c6": 31.402778918562376, + "c7": -27.1911320563323 }, - "vertexSeeds": { - "c1": 4.243070616090495, - "c2": 4.307233095205419, - "c3": 4.222907615309985, - "c4": 4.29880849539643, - "c5": 4.29799484529293, - "c6": 4.312154579065214, - "c7": 4.281437165771684 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969496, + "c3": 5.15487748497457, + "c4": 4.123901987979664, + "c5": 3.092926490984738, + "c6": 2.061950993989832, + "c7": 1.0309754969949056 }, "rgb": [86, 146, 138] }, @@ -284370,23 +284370,23 @@ "year": 1787, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": -47.10339101355956, - "c2": -38.8509400725913, - "c3": 39.1698719425581, - "c4": -28.850920010677303, - "c5": 16.611268442654037, - "c6": 22.071201255441807, - "c7": -34.95917379518568 + "points": { + "c1": -30.117971196074656, + "c2": -2.2637322223631102, + "c3": 12.805869369440998, + "c4": -32.179555143168635, + "c5": -37.54374952876773, + "c6": 33.38818359250982, + "c7": 3.8949136754496507 }, - "vertexSeeds": { - "c1": 6.776434971455, - "c2": 6.929774698152949, - "c3": 4.552528167047484, - "c4": 6.896780349847025, - "c5": 4.420513235105772, - "c6": 4.45706236420327, - "c7": 5.440087820128037 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761441, + "c3": 8.483587609801203, + "c4": 6.786870087840964, + "c5": 5.090152565880721, + "c6": 3.393435043920481, + "c7": 1.6967175219602404 }, "rgb": [86, 146, 138] }, @@ -284397,23 +284397,23 @@ "year": 1786, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 15.612908563169235, - "c2": 21.492418563442847, - "c3": 16.859575425285655, - "c4": -7.077169754687979, - "c5": 2.5366859829130703, - "c6": 18.611589820183482, - "c7": 11.481835895069139 + "points": { + "c1": -8.726249305367567, + "c2": 8.132168445947578, + "c3": -3.240982904547586, + "c4": 32.45863105340387, + "c5": -18.028784863527957, + "c6": 34.318514417063476, + "c7": -1.3798925809055689 }, - "vertexSeeds": { - "c1": 8.590219574425486, - "c2": 8.596208835850483, - "c3": 8.861650625191222, - "c4": 8.325182675353608, - "c5": 8.149766486088836, - "c6": 8.625754636963194, - "c7": 8.782974375630554 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662962, + "c3": 10.725843735552475, + "c4": 8.580674988441974, + "c5": 6.435506241331487, + "c6": 4.290337494220987, + "c7": 2.1451687471105 }, "rgb": [58, 15, 49] }, @@ -284424,23 +284424,23 @@ "year": 1786, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 9.780311499754873, - "c2": 43.40901887835838, - "c3": 29.78361992427908, - "c4": 2.7292932060345265, - "c5": -24.019692339696423, - "c6": 14.318276912943759, - "c7": -20.043242699241194 + "points": { + "c1": -2.933175708474714, + "c2": -35.77190452971661, + "c3": 35.60140410689168, + "c4": 2.3191963250507257, + "c5": -10.917073458276626, + "c6": -17.98777761447362, + "c7": 33.90916429378342 }, - "vertexSeeds": { - "c1": 6.498417401764003, - "c2": 6.390636505434874, - "c3": 6.214359632457689, - "c4": 6.352947582944855, - "c5": 6.5339767545371314, - "c6": 6.370792876265143, - "c7": 6.551850855081544 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675464, + "c3": 7.859454461396204, + "c4": 6.287563569116976, + "c5": 4.715672676837716, + "c6": 3.143781784558488, + "c7": 1.5718908922792596 }, "rgb": [222, 0, 59] }, @@ -284451,23 +284451,23 @@ "year": 1786, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -24.999447718394215, - "c2": 2.4888405882681575, - "c3": 15.353964565508004, - "c4": 3.4411179478634715, - "c5": 7.873532414276685, - "c6": 14.537918558833443, - "c7": -23.86212136103902 + "points": { + "c1": 3.248998053828508, + "c2": 5.201808129177181, + "c3": 26.329938102198263, + "c4": -14.6996287882368, + "c5": 6.912724538164987, + "c6": -1.352433089919927, + "c7": -20.631079141199386 }, - "vertexSeeds": { - "c1": 8.37279887950485, - "c2": 8.405482574482729, - "c3": 7.907193766407346, - "c4": 8.194756266572622, - "c5": 8.459699978995365, - "c6": 8.342784420777816, - "c7": 8.543860557267358 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.28848821081831, + "c3": 10.240406842348596, + "c4": 8.19232547387888, + "c5": 6.144244105409144, + "c6": 4.096162736939429, + "c7": 2.0480813684697146 }, "rgb": [222, 0, 59] }, @@ -284478,23 +284478,23 @@ "year": 1787, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -17.515290912669258, - "c2": 37.53591492063781, - "c3": 42.76892131031008, - "c4": 45.84479004837834, - "c5": 20.347930011391227, - "c6": -43.90510490066693, - "c7": 1.095011695056293 + "points": { + "c1": 46.15015119129154, + "c2": 46.81706637179256, + "c3": 27.85412210122884, + "c4": 6.261007016321422, + "c5": -27.257804804816214, + "c6": -29.801599425185447, + "c7": -32.753859618780695 }, - "vertexSeeds": { - "c1": 6.537789739908779, - "c2": 6.692426574376242, - "c3": 5.878941413875431, - "c4": 6.720789282462537, - "c5": 5.9977534522644484, - "c6": 5.998170678845388, - "c7": 5.941261226222357 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158115, + "c3": 8.136846971798429, + "c4": 6.509477577438743, + "c5": 4.882108183079057, + "c6": 3.2547387887193713, + "c7": 1.6273693943596856 }, "rgb": [77, 76, 132] }, @@ -284505,23 +284505,23 @@ "year": 1787, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": -7.907075058541963, - "c2": 45.30692263369122, - "c3": -16.455579351296073, - "c4": 55.79305847548385, - "c5": 5.343230297314257, - "c6": 18.212138355289717, - "c7": -47.15968837111416 + "points": { + "c1": -33.47752492553248, + "c2": -53.00425528622231, + "c3": -15.368947332653939, + "c4": -52.93199125043968, + "c5": 21.06079439906528, + "c6": 49.787928013208834, + "c7": 25.85350605337826 }, - "vertexSeeds": { - "c1": 6.4118765120280425, - "c2": 5.889259175791322, - "c3": 5.909065096887735, - "c4": 6.315807165959148, - "c5": 5.829740643806986, - "c6": 6.502009198801372, - "c7": 6.534948186409442 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037444, + "c3": 8.067498844197875, + "c4": 6.453999075358295, + "c5": 4.840499306518728, + "c6": 3.2269995376791476, + "c7": 1.6134997688395678 }, "rgb": [86, 146, 138] }, @@ -284532,23 +284532,23 @@ "year": 1787, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": -7.803222174136678, - "c2": -46.790150006388764, - "c3": 2.017437848901345, - "c4": 3.894313182839447, - "c5": 23.591852234913482, - "c6": 43.09345018377558, - "c7": 0.5510037652461293 + "points": { + "c1": 7.874314706616929, + "c2": -20.73077509077963, + "c3": -11.51077533383225, + "c4": -24.83689701889659, + "c5": 44.40849966412076, + "c6": -42.156268099152285, + "c7": 20.929347911562168 }, - "vertexSeeds": { - "c1": 7.371385769268693, - "c2": 8.178949753341035, - "c3": 8.374185017719006, - "c4": 8.033733224744246, - "c5": 8.345076851918067, - "c6": 8.39220436582174, - "c7": 8.40064317574687 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496533, + "c3": 10.055478502080444, + "c4": 8.044382801664355, + "c5": 6.033287101248266, + "c6": 4.0221914008321775, + "c7": 2.0110957004160888 }, "rgb": [77, 76, 132] }, @@ -284559,23 +284559,23 @@ "year": 1786, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -22.07093836190859, - "c2": -24.457243907934508, - "c3": 21.19146771846777, - "c4": -2.607427787903813, - "c5": 4.324070936476662, - "c6": -22.172372128501397, - "c7": -3.958370387811197 + "points": { + "c1": 25.179529000101873, + "c2": -21.916074723478758, + "c3": 24.07688263819908, + "c4": 27.25703464073237, + "c5": -10.736451418474253, + "c6": 23.482272704445073, + "c7": -7.242713509198111 }, - "vertexSeeds": { - "c1": 6.264752420381914, - "c2": 5.822797094764518, - "c3": 6.130799451005573, - "c4": 6.082283095878115, - "c5": 6.238877991513703, - "c6": 5.951864820849456, - "c7": 6.2232393092402685 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112354, + "c3": 7.535829865926949, + "c4": 6.028663892741569, + "c5": 4.5214979195561655, + "c6": 3.0143319463707847, + "c7": 1.5071659731854035 }, "rgb": [222, 0, 59] }, @@ -284586,23 +284586,23 @@ "year": 1787, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": 16.652935471194446, - "c2": 7.413255337527076, - "c3": -6.912337708166554, - "c4": 14.257398842841518, - "c5": 9.511314351599651, - "c6": -27.56367944607277, - "c7": -12.174946507720897 + "points": { + "c1": -50.69158726650511, + "c2": 21.095395874158932, + "c3": -16.27036153319297, + "c4": -41.11793388135767, + "c5": -35.05813221431952, + "c6": 42.976607611918716, + "c7": 31.9566142950004 }, - "vertexSeeds": { - "c1": 1.888756974004254, - "c2": 1.8451884942062595, - "c3": 1.9483293361633796, - "c4": 1.9048530330300526, - "c5": 2.057266947700766, - "c6": 1.8966426967920795, - "c7": 1.8655741301353181 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.9958391123439654, + "c3": 2.496532593619972, + "c4": 1.9972260748959787, + "c5": 1.4979195561719827, + "c6": 0.9986130374479866, + "c7": 0.4993065187239933 }, "rgb": [77, 76, 132] }, @@ -284613,23 +284613,23 @@ "year": 1787, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": -38.08426095697401, - "c2": -19.875997390325914, - "c3": 6.882216699848939, - "c4": -20.172210222732744, - "c5": 28.425322015560674, - "c6": -5.474518561591523, - "c7": -0.1904070941100997 + "points": { + "c1": 28.092525212488262, + "c2": 4.373615117059032, + "c3": 20.82497837518965, + "c4": 48.41361138069242, + "c5": 21.0988724795179, + "c6": -32.977343198347704, + "c7": 26.197678560172825 }, - "vertexSeeds": { - "c1": 5.26494601754675, - "c2": 5.2378528504575455, - "c3": 5.274664209799752, - "c4": 5.270726906942737, - "c5": 5.174420114142853, - "c6": 5.363218781278393, - "c7": 5.128326969362827 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342588, + "c3": 6.5187239944521655, + "c4": 5.214979195561715, + "c5": 3.911234396671294, + "c6": 2.607489597780872, + "c7": 1.3037447988904216 }, "rgb": [77, 76, 132] }, @@ -284640,23 +284640,23 @@ "year": 1786, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 30.854307614444053, - "c2": -13.570998362959696, - "c3": 7.636429623183069, - "c4": 19.8267748210531, - "c5": 4.513974670045144, - "c6": 34.87010463196705, - "c7": -27.59817192231181 + "points": { + "c1": 26.740294602265536, + "c2": -28.687590922443295, + "c3": -31.00031869955597, + "c4": -28.79142871613268, + "c5": -25.34073978964226, + "c6": -20.382890780120597, + "c7": -24.297596856334625 }, - "vertexSeeds": { - "c1": 1.682353524684554, - "c2": 1.5902780253070876, - "c3": 1.828766468636787, - "c4": 1.8087003621103244, - "c5": 1.5670943430736575, - "c6": 1.1751136817878318, - "c7": 1.698634387034791 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450762, + "c3": 2.612112806287564, + "c4": 2.0896902450300514, + "c5": 1.5672676837725381, + "c6": 1.044845122515025, + "c7": 0.5224225612575131 }, "rgb": [77, 76, 132] }, @@ -284667,23 +284667,23 @@ "year": 1786, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 35.37692968354555, - "c2": 12.67113876984395, - "c3": 5.051809196815576, - "c4": -27.035397091880007, - "c5": -8.965528087170604, - "c6": -2.5423867533908435, - "c7": 36.57714629839784 + "points": { + "c1": 7.14138207061464, + "c2": -13.829517005659337, + "c3": 14.811377124508319, + "c4": 35.345545148317704, + "c5": 36.85732651400303, + "c6": -20.847317195433366, + "c7": 30.41366994400955 }, - "vertexSeeds": { - "c1": 2.1980079529113303, - "c2": 2.2832224561676946, - "c3": 2.0020998964890118, - "c4": 2.083235941436009, - "c5": 2.048701060951316, - "c6": 2.015458207718544, - "c7": 2.3452621821757287 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875176, + "c3": 2.866389274156264, + "c4": 2.293111419325011, + "c5": 1.719833564493758, + "c6": 1.1465557096625065, + "c7": 0.5732778548312533 }, "rgb": [58, 15, 49] }, @@ -284694,23 +284694,23 @@ "year": 1786, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -35.68495983272977, - "c2": 1.5399190768025335, - "c3": 24.630676546842096, - "c4": -2.3063432423296106, - "c5": 5.784776319559214, - "c6": -34.72510363489052, - "c7": 39.493218073452056 + "points": { + "c1": -24.77811155611625, + "c2": 5.990524637037396, + "c3": -5.238558308706423, + "c4": 24.39739035053411, + "c5": -24.0979387877633, + "c6": 35.20869240817767, + "c7": 12.201490371770255 }, - "vertexSeeds": { - "c1": 6.965661086230627, - "c2": 7.0415613840276015, - "c3": 6.981176112821214, - "c4": 6.985246188924382, - "c5": 7.002803651382077, - "c6": 7.0165030728806075, - "c7": 6.998794122071704 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761424, + "c3": 8.483587609801164, + "c4": 6.786870087840972, + "c5": 5.090152565880712, + "c6": 3.393435043920452, + "c7": 1.6967175219601922 }, "rgb": [222, 0, 59] }, @@ -284721,23 +284721,23 @@ "year": 1786, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 36.07610994996568, - "c2": 31.75575155010788, - "c3": -9.354559383982561, - "c4": -0.7709074817209256, - "c5": -23.280692132450998, - "c6": 5.497319710508762, - "c7": 27.47525589831968 + "points": { + "c1": -16.23085769366063, + "c2": -5.7185252281133145, + "c3": -13.965720508814957, + "c4": -15.337286978527146, + "c5": -2.1528924602794888, + "c6": 37.403324167478736, + "c7": 12.524190494141706 }, - "vertexSeeds": { - "c1": 3.791408114802624, - "c2": 3.8313397954210537, - "c3": 3.8090132085145667, - "c4": 3.9730237931930006, - "c5": 3.7884678509083014, - "c6": 3.7704016755754113, - "c7": 3.8487472479160045 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567262, + "c3": 4.923717059639391, + "c4": 3.9389736477115083, + "c5": 2.954230235783637, + "c6": 1.9694868238557541, + "c7": 0.9847434119278826 }, "rgb": [222, 0, 59] }, @@ -284748,23 +284748,23 @@ "year": 1786, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 25.06165512692477, - "c2": 11.078034668778201, - "c3": -11.299102880296658, - "c4": -26.82356994171357, - "c5": 18.89966694717433, - "c6": -2.448988989591289, - "c7": 14.337467470026937 + "points": { + "c1": 3.338055744704377, + "c2": -23.394792408398345, + "c3": 17.752165497318067, + "c4": 28.250872529676535, + "c5": 8.76339332303381, + "c6": -28.501663907804303, + "c7": -11.678198398128806 }, - "vertexSeeds": { - "c1": 2.4368447676020852, - "c2": 2.428826778983742, - "c3": 2.4403978725644593, - "c4": 2.529963771134115, - "c5": 2.5813216263738985, - "c6": 2.4715525431805303, - "c7": 2.5224135025821863 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.7447988904299634, + "c3": 3.1206657420249635, + "c4": 2.496532593619976, + "c5": 1.8723994452149757, + "c6": 1.248266296809988, + "c7": 0.624133148404994 }, "rgb": [58, 15, 49] }, @@ -284775,23 +284775,23 @@ "year": 1787, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 28.818323525053124, - "c2": 1.5671289933966364, - "c3": -32.877102023256626, - "c4": 27.54426037453721, - "c5": 16.147161446486145, - "c6": 13.831979056366542, - "c7": 39.0944062240471 + "points": { + "c1": 10.853525113043347, + "c2": -38.51811200827637, + "c3": 13.518766281850638, + "c4": 23.440876805195195, + "c5": -45.40618095365334, + "c6": 18.067792811407976, + "c7": -1.8815814440756355 }, - "vertexSeeds": { - "c1": 5.590212172221834, - "c2": 5.477416397276896, - "c3": 5.849529221222686, - "c4": 5.91904034257039, - "c5": 5.648825937636154, - "c6": 5.239526887094925, - "c7": 5.908251053218611 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [58, 15, 49] }, @@ -284802,23 +284802,23 @@ "year": 1787, "resistanceReported": false, "duration": 39916800, - "curveSeeds": { - "c1": -37.82347728418786, - "c2": 35.61146437879359, - "c3": 30.71695125577086, - "c4": -23.40829019070365, - "c5": -5.652787371080223, - "c6": 34.61019179696604, - "c7": 28.97951942603529 + "points": { + "c1": -54.06152619150878, + "c2": -19.79840942352481, + "c3": -35.73326941071439, + "c4": 26.565281554955625, + "c5": -30.987797050714622, + "c6": -40.289376095537975, + "c7": 7.606236397502244 }, - "vertexSeeds": { - "c1": 5.598013201530761, - "c2": 5.547469994123447, - "c3": 5.4653731136474155, - "c4": 5.643991385163306, - "c5": 5.328691213190259, - "c6": 5.279008448764845, - "c7": 5.832552606303052 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [58, 15, 49] }, @@ -284829,23 +284829,23 @@ "year": 1786, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 8.866614928514096, - "c2": 26.317991595331684, - "c3": 18.316290600273376, - "c4": -10.325243202010036, - "c5": 16.67391583156526, - "c6": -14.288880857253263, - "c7": -1.3733079409003075 + "points": { + "c1": -23.88021815014397, + "c2": 16.727833847321747, + "c3": -29.107081832933734, + "c4": 13.119557428844843, + "c5": 3.9749437472280107, + "c6": 22.383214567552336, + "c7": -9.083575398405852 }, - "vertexSeeds": { - "c1": 8.752459212130868, - "c2": 8.809592372565739, - "c3": 8.919689586904546, - "c4": 8.883658099049894, - "c5": 8.84418656106925, - "c6": 8.791354183874962, - "c7": 8.892246726303904 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542325, + "c3": 10.656495607951886, + "c4": 8.525196486361525, + "c5": 6.3938973647711626, + "c6": 4.262598243180723, + "c7": 2.1312991215903616 }, "rgb": [86, 146, 138] }, @@ -284856,23 +284856,23 @@ "year": 1786, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 24.935936517391454, - "c2": 21.474233689338313, - "c3": 3.7593551624563943, - "c4": -20.27923640844919, - "c5": 9.59639264093753, - "c6": -32.68626636305797, - "c7": 7.354216708785131 + "points": { + "c1": -39.73332052522703, + "c2": -6.791879934785655, + "c3": -20.64266210565545, + "c4": -40.52995873357163, + "c5": -20.878132590802203, + "c6": 23.756682972475502, + "c7": -2.066947190177494 }, - "vertexSeeds": { - "c1": 6.343927211360496, - "c2": 6.101967460769727, - "c3": 6.3859248951507395, - "c4": 6.174293049632929, - "c5": 6.327625075542912, - "c6": 6.421424590318017, - "c7": 6.498994295204867 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715663, + "c3": 7.88257050392973, + "c4": 6.306056403143775, + "c5": 4.729542302357843, + "c6": 3.1530282015718876, + "c7": 1.5765141007859549 }, "rgb": [86, 146, 138] }, @@ -284883,23 +284883,23 @@ "year": 1787, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": -43.0740419306636, - "c2": -1.8269723122944725, - "c3": -8.807521892767234, - "c4": -43.592092062736846, - "c5": 21.929305901768963, - "c6": 28.207121104434073, - "c7": 20.556937442838937 + "points": { + "c1": 34.21735103348744, + "c2": 22.324770788059062, + "c3": -3.520169730435093, + "c4": -46.00316551929787, + "c5": 35.00945181038819, + "c6": -41.923541505588915, + "c7": -47.45244743710752 }, - "vertexSeeds": { - "c1": 5.922070174531838, - "c2": 6.610040834424064, - "c3": 5.815271644972169, - "c4": 6.065052051030593, - "c5": 6.251445534673897, - "c6": 5.846908680716695, - "c7": 6.58622515525428 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957009, + "c3": 8.02126675913083, + "c4": 6.417013407304668, + "c5": 4.812760055478504, + "c6": 3.2085067036523407, + "c7": 1.6042533518261635 }, "rgb": [222, 0, 59] }, @@ -284910,23 +284910,23 @@ "year": 1786, "resistanceReported": true, "duration": 16416000, - "curveSeeds": { - "c1": 0.7818654054420406, - "c2": -8.145280247856284, - "c3": 24.385452812501793, - "c4": -17.053921005857013, - "c5": 16.993150005050506, - "c6": 1.606145625945313, - "c7": 8.154185790252061 + "points": { + "c1": -13.06669328351435, + "c2": -5.758523390344983, + "c3": 23.854358914594616, + "c4": 9.108288959193143, + "c5": -8.03528796172926, + "c6": 11.329590032123942, + "c7": 7.354884686448738 }, - "vertexSeeds": { - "c1": 4.500169459021255, - "c2": 4.694517242966788, - "c3": 5.0060307884003645, - "c4": 4.3664702074466195, - "c5": 5.008925080434417, - "c6": 5.11966669428651, - "c7": 4.282616797590619 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819699, + "c3": 6.218215441516414, + "c4": 4.974572353213129, + "c5": 3.7309292649098493, + "c6": 2.4872861766065646, + "c7": 1.2436430883032796 }, "rgb": [222, 0, 59] }, @@ -284937,23 +284937,23 @@ "year": 1787, "resistanceReported": false, "duration": 47433600, - "curveSeeds": { - "c1": -6.5985896465621465, - "c2": 37.4199008316166, - "c3": -8.539714041758458, - "c4": -42.212455246404204, - "c5": 32.88229082967351, - "c6": -37.708850032054855, - "c7": 32.36297571640857 + "points": { + "c1": 36.55602235120682, + "c2": -31.16449456439117, + "c3": -20.774410911554874, + "c4": 19.50249727562462, + "c5": 13.292743494676415, + "c6": -54.42784341423237, + "c7": -47.60846736052415 }, - "vertexSeeds": { - "c1": 0.23878509314816782, - "c2": 0.24292744878131867, - "c3": 0.24307311959052363, - "c4": 0.21965614014678794, - "c5": 0.2178857888059257, - "c6": 0.22097257170820456, - "c7": 0.22311378036162324 + "offsets": { + "c1": 0.45307443365695793, + "c2": 0.3883495145631067, + "c3": 0.3236245954692558, + "c4": 0.25889967637540456, + "c5": 0.19417475728155334, + "c6": 0.1294498381877021, + "c7": 0.06472491909385124 }, "rgb": [222, 0, 59] }, @@ -284964,23 +284964,23 @@ "year": 1787, "resistanceReported": false, "duration": 59443200, - "curveSeeds": { - "c1": -54.87859364220791, - "c2": -62.694610917085335, - "c3": -6.4010052824518056, - "c4": -58.06432462630397, - "c5": 20.662064340713357, - "c6": -36.35895887940184, - "c7": -4.602118504786546 + "points": { + "c1": -42.625340139840155, + "c2": 49.71554783886599, + "c3": 35.99537620835734, + "c4": 15.589553710929138, + "c5": 10.632943323647268, + "c6": -25.646692899550963, + "c7": -25.558331733569673 }, - "vertexSeeds": { - "c1": 2.519805982244816, - "c2": 2.53120015330686, - "c3": 2.5328120403723755, - "c4": 2.5289587103260933, - "c5": 2.5179920548929724, - "c6": 2.5105077291066857, - "c7": 2.5324006645685397 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897357, + "c3": 3.097549699491447, + "c4": 2.478039759593157, + "c5": 1.8585298196948679, + "c6": 1.2390198797965786, + "c7": 0.6195099398982893 }, "rgb": [77, 76, 132] }, @@ -284991,23 +284991,23 @@ "year": 1786, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -3.229561440774109, - "c2": 20.291711884700103, - "c3": 5.718019939916662, - "c4": 16.59699601420775, - "c5": 3.955849591949569, - "c6": 6.796118571038761, - "c7": 17.320906835158556 + "points": { + "c1": 17.12746385408766, + "c2": -16.64917867081596, + "c3": -2.7664388553818817, + "c4": -1.3494632406166325, + "c5": -7.393430931972185, + "c6": 13.886245682549404, + "c7": -16.6823068820405 }, - "vertexSeeds": { - "c1": 1.5300591542379667, - "c2": 1.51141438604867, - "c3": 1.5193174422971876, - "c4": 1.5235750490752673, - "c5": 1.513119224255605, - "c6": 1.4984718681365807, - "c7": 1.5329590249167737 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177455, + "c3": 1.8492834026814637, + "c4": 1.4794267221451636, + "c5": 1.109570041608882, + "c6": 0.7397133610725818, + "c7": 0.3698566805363001 }, "rgb": [77, 76, 132] }, @@ -285018,23 +285018,23 @@ "year": 1786, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 13.979780445268815, - "c2": -8.321853158517083, - "c3": -8.562138304245845, - "c4": -14.802492989445192, - "c5": 6.129809351703024, - "c6": -13.943085203805879, - "c7": -30.153583192896964 + "points": { + "c1": 23.951870891097236, + "c2": 29.84215487495092, + "c3": -34.52490394580476, + "c4": 20.42819969514072, + "c5": 6.109072343093523, + "c6": -27.122196557283708, + "c7": 2.1625225102423116 }, - "vertexSeeds": { - "c1": 0.8359405814359452, - "c2": 0.9588028664818462, - "c3": 0.8598522291728975, - "c4": 0.9696129515419658, - "c5": 0.8398977698773482, - "c6": 0.8269820693779291, - "c7": 0.9267108090960069 + "offsets": { + "c1": 1.650485436893204, + "c2": 1.414701803051318, + "c3": 1.1789181692094308, + "c4": 0.9431345353675449, + "c5": 0.707350901525659, + "c6": 0.471567267683772, + "c7": 0.235783633841886 }, "rgb": [238, 201, 159] }, @@ -285045,23 +285045,23 @@ "year": 1786, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 9.534410620779113, - "c2": -4.875139064116787, - "c3": -29.368914408332266, - "c4": -6.242634074876559, - "c5": -12.952762239712854, - "c6": 20.214724009653366, - "c7": -2.294480785024085 + "points": { + "c1": -30.40063534369202, + "c2": 5.479671598832134, + "c3": -16.878690221847847, + "c4": 19.849453069849034, + "c5": 18.10522500462244, + "c6": 23.806240472783543, + "c7": 28.651751456552972 }, - "vertexSeeds": { - "c1": 15.713792741796421, - "c2": 15.659470615105677, - "c3": 15.363865975268066, - "c4": 15.094971315728555, - "c5": 15.610056595108201, - "c6": 15.522672240786425, - "c7": 15.819413334639778 + "offsets": { + "c1": 27.02265372168285, + "c2": 23.162274618585318, + "c3": 19.301895515487743, + "c4": 15.441516412390211, + "c5": 11.58113730929264, + "c6": 7.7207582061951054, + "c7": 3.860379103097573 }, "rgb": [222, 0, 59] }, @@ -285072,23 +285072,23 @@ "year": 1786, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 5.432300436885509, - "c2": 12.090524199386532, - "c3": -4.056342405983077, - "c4": -5.14943299518027, - "c5": 19.209920927039033, - "c6": -17.773623112584158, - "c7": -22.93269534643679 + "points": { + "c1": 0.6276709861676899, + "c2": -26.88332941799932, + "c3": 23.328171025213383, + "c4": -12.653370520386453, + "c5": -5.337512424694765, + "c6": -18.75403272096198, + "c7": 12.901761720363329 }, - "vertexSeeds": { - "c1": 8.155378056714557, - "c2": 8.09866727742502, - "c3": 7.865142518724182, - "c4": 7.965301153363342, - "c5": 7.862028775191299, - "c6": 7.852809093149039, - "c7": 7.9163189914412735 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134525, + "c3": 9.847434119278782, + "c4": 7.8779472954230165, + "c5": 5.908460471567274, + "c6": 3.9389736477115083, + "c7": 1.9694868238557652 }, "rgb": [77, 76, 132] }, @@ -285099,23 +285099,23 @@ "year": 1787, "resistanceReported": false, "duration": 57196800, - "curveSeeds": { - "c1": -9.531976081281506, - "c2": 71.49092246263243, - "c3": 31.276351648181247, - "c4": 64.72422842971389, - "c5": -44.02639197901701, - "c6": -28.666594516181632, - "c7": 3.3211859465904325 + "points": { + "c1": -31.71728953037922, + "c2": 70.88769428884677, + "c3": 73.75547452347442, + "c4": 60.464785184958345, + "c5": -11.877255118785314, + "c6": -16.698964787518207, + "c7": 6.74951730451005 }, - "vertexSeeds": { - "c1": 8.567228118802253, - "c2": 8.31732471636722, - "c3": 8.561933035435917, - "c4": 8.398426895376595, - "c5": 8.315727674540195, - "c6": 9.006418491394818, - "c7": 8.668481967467415 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703184, + "c3": 10.748959778086002, + "c4": 8.599167822468797, + "c5": 6.449375866851592, + "c6": 4.299583911234387, + "c7": 2.149791955617205 }, "rgb": [77, 76, 132] }, @@ -285126,23 +285126,23 @@ "year": 1786, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -1.0899645115987155, - "c2": -17.35606891268553, - "c3": -20.463198519081832, - "c4": -19.307338356121793, - "c5": 11.480933710202045, - "c6": 23.467291409975722, - "c7": 32.95499760656118 + "points": { + "c1": 16.350159657428556, + "c2": 7.571452539994041, + "c3": -34.4172746387956, + "c4": -35.44727613472501, + "c5": 33.587368784669934, + "c6": -10.959695017284126, + "c7": 27.08834908658305 }, - "vertexSeeds": { - "c1": 1.951656736402921, - "c2": 1.8661428879621613, - "c3": 2.045935920253214, - "c4": 1.9436894078150753, - "c5": 1.8750213671616633, - "c6": 1.8807516160168585, - "c7": 1.876919514265813 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037453, + "c3": 2.473416551086455, + "c4": 1.978733240869165, + "c5": 1.4840499306518704, + "c6": 0.9893666204345803, + "c7": 0.4946833102172902 }, "rgb": [58, 15, 49] }, @@ -285153,23 +285153,23 @@ "year": 1787, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -46.64199874140886, - "c2": -16.27433811017839, - "c3": 6.672346258815729, - "c4": 2.2432072504184433, - "c5": -1.5195065625336923, - "c6": 17.750023662612875, - "c7": -2.741149281211108 + "points": { + "c1": 6.44589395504628, + "c2": -26.26656160619048, + "c3": -38.63204254762922, + "c4": -43.16260383546357, + "c5": -21.407915206869756, + "c6": 39.15257122598416, + "c7": 10.776535270075442 }, - "vertexSeeds": { - "c1": 0.12303900443885338, - "c2": 0.13067100311904492, - "c3": 0.12270468983302527, - "c4": 0.13000606491015243, - "c5": 0.1297917336049137, - "c6": 0.12732139424961603, - "c7": 0.11666524549595479 + "offsets": { + "c1": 0.2588996763754045, + "c2": 0.22191400832177519, + "c3": 0.1849283402681461, + "c4": 0.1479426722145168, + "c5": 0.11095700416088772, + "c6": 0.0739713361072584, + "c7": 0.036985668053629316 }, "rgb": [77, 76, 132] }, @@ -285180,23 +285180,23 @@ "year": 1786, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 17.849719451747415, - "c2": -15.957144325493534, - "c3": -14.091302375263917, - "c4": 18.487031342668427, - "c5": 11.7693874163139, - "c6": -21.44603724738581, - "c7": -24.72964447270887 + "points": { + "c1": 28.825742439353096, + "c2": 3.97723760335084, + "c3": 14.354941437156231, + "c4": -26.030878985133953, + "c5": 15.71312675353673, + "c6": -13.405464858398673, + "c7": 20.56850562845757 }, - "vertexSeeds": { - "c1": 2.917371850858031, - "c2": 2.938467934106739, - "c3": 2.952534962382967, - "c4": 2.963113812552619, - "c5": 2.9597538218258914, - "c6": 2.940700803397748, - "c7": 2.93434040686031 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194195, + "c3": 3.5598705501618055, + "c4": 2.8478964401294635, + "c5": 2.135922330097074, + "c6": 1.4239482200647318, + "c7": 0.7119741100323422 }, "rgb": [238, 201, 159] }, @@ -285207,23 +285207,23 @@ "year": 1786, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -16.226936150651884, - "c2": -25.23901583406306, - "c3": 5.200329834214308, - "c4": -27.97731786714715, - "c5": -17.44641062733592, - "c6": -29.895164492762817, - "c7": -19.989125313429092 + "points": { + "c1": -22.508455220412788, + "c2": 0.4087002952961072, + "c3": 18.654689726125802, + "c4": -30.787432867292754, + "c5": -36.03278650251538, + "c6": -9.992349047073095, + "c7": -6.066791599621652 }, - "vertexSeeds": { - "c1": 1.5845129279517056, - "c2": 1.5830070432996275, - "c3": 1.6164704450906113, - "c4": 1.6707462605466474, - "c5": 1.6719236652484302, - "c6": 1.554487954195064, - "c7": 1.607554181573005 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [86, 146, 138] }, @@ -285234,23 +285234,23 @@ "year": 1787, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": 28.431975720768442, - "c2": -56.407621105151684, - "c3": -24.629487324597328, - "c4": 38.78680789211402, - "c5": 15.235717399588104, - "c6": -45.03205541929811, - "c7": 12.273208149929935 + "points": { + "c1": 24.610503595020397, + "c2": -56.978132089281665, + "c3": 6.014103503310231, + "c4": 16.99027327599577, + "c5": -30.621724729903168, + "c6": -27.826209745510468, + "c7": -4.115429800884598 }, - "vertexSeeds": { - "c1": 4.822977271877484, - "c2": 5.592233849614603, - "c3": 4.96776234586775, - "c4": 4.572868042082278, - "c5": 5.053897410990719, - "c6": 4.420035046747107, - "c7": 5.142723295587448 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911232, + "c3": 7.420249653259363, + "c4": 5.936199722607488, + "c5": 4.452149791955619, + "c6": 2.968099861303744, + "c7": 1.484049930651872 }, "rgb": [222, 0, 59] }, @@ -285261,23 +285261,23 @@ "year": 1787, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 13.932444801946076, - "c2": 39.286474608144125, - "c3": -20.933265885206918, - "c4": -20.375654930389725, - "c5": -44.44076754947636, - "c6": -24.742261221141185, - "c7": 2.5649449294568853 + "points": { + "c1": 37.9357130286782, + "c2": 19.575405479591915, + "c3": 26.062352051982977, + "c4": -9.799478041610783, + "c5": 1.8003253394943002, + "c6": 21.279551666497618, + "c7": -6.893458976195134 }, - "vertexSeeds": { - "c1": 10.963062734943641, - "c2": 11.526779742164278, - "c3": 10.761927561847962, - "c4": 10.624591293735875, - "c5": 11.5576561215638, - "c6": 11.231794743020457, - "c7": 11.56629649848758 + "offsets": { + "c1": 19.93527508090615, + "c2": 17.087378640776706, + "c3": 14.239482200647263, + "c4": 11.391585760517795, + "c5": 8.543689320388353, + "c6": 5.69579288025891, + "c7": 2.8478964401294675 }, "rgb": [77, 76, 132] }, @@ -285288,23 +285288,23 @@ "year": 1786, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -14.576781547310485, - "c2": -12.041759640600123, - "c3": -20.95711730174426, - "c4": 1.4289279027923918, - "c5": 17.07209498263107, - "c6": 24.464683544557474, - "c7": -24.807347645999002 + "points": { + "c1": -23.26836569855374, + "c2": 30.239469687171514, + "c3": -9.823983665450257, + "c4": -9.89856219387186, + "c5": 26.83229331302595, + "c6": 26.308713360354787, + "c7": 26.06130969145483 }, - "vertexSeeds": { - "c1": 1.5107955730050062, - "c2": 1.5278840529636482, - "c3": 1.5383144171060108, - "c4": 1.5060733450924237, - "c5": 1.5227751326960584, - "c6": 1.446120716067024, - "c7": 1.5166954135549457 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257973, + "c3": 1.872399445214982, + "c4": 1.4979195561719842, + "c5": 1.1234396671289866, + "c6": 0.748959778085989, + "c7": 0.37447988904299767 }, "rgb": [77, 76, 132] }, @@ -285315,23 +285315,23 @@ "year": 1786, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 20.622993884428425, - "c2": 2.0959962652965736, - "c3": 6.70308758322782, - "c4": 23.13293797718371, - "c5": 18.301620455351312, - "c6": 0.6005765251964306, - "c7": -4.887224145855221 + "points": { + "c1": -8.264497756477176, + "c2": 20.389618206803092, + "c3": -16.509351313166796, + "c4": 13.437345043543559, + "c5": -8.907219829796876, + "c6": -14.597577799963872, + "c7": -7.746020128104437 }, - "vertexSeeds": { - "c1": 5.688023443521054, - "c2": 5.8024022280290675, - "c3": 5.787305057167321, - "c4": 5.706374789662875, - "c5": 5.784758571365162, - "c6": 5.755207700225628, - "c7": 5.760173612498715 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066583, + "c3": 6.934812760055495, + "c4": 5.547850208044409, + "c5": 4.16088765603326, + "c6": 2.7739251040221737, + "c7": 1.3869625520110869 }, "rgb": [222, 0, 59] }, @@ -285342,23 +285342,23 @@ "year": 1787, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -8.936036710121463, - "c2": 42.13602385636613, - "c3": 16.943011416112114, - "c4": 12.97260283788011, - "c5": -35.04054226409745, - "c6": 12.484145310082816, - "c7": -30.016612761023897 + "points": { + "c1": -34.980067858807566, + "c2": 30.252637506076475, + "c3": 28.50556305458219, + "c4": 40.06284792091201, + "c5": 22.789638149353912, + "c6": -25.576859998397342, + "c7": 22.631038996865392 }, - "vertexSeeds": { - "c1": 6.492979822962353, - "c2": 6.268331649803198, - "c3": 6.335073540789115, - "c4": 6.646981696245936, - "c5": 6.73027087303065, - "c6": 6.587545969160066, - "c7": 6.816738456042591 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319004, + "c3": 8.229311141932506, + "c4": 6.583448913545993, + "c5": 4.937586685159495, + "c6": 3.2917244567729966, + "c7": 1.6458622283864983 }, "rgb": [86, 146, 138] }, @@ -285369,23 +285369,23 @@ "year": 1787, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 27.42763368897016, - "c2": 37.6556055691224, - "c3": 21.711594329486985, - "c4": -1.823643854760121, - "c5": -23.288032086912658, - "c6": -27.51205639168063, - "c7": -27.3732569495825 + "points": { + "c1": 22.930493839930804, + "c2": -18.864049999706587, + "c3": -42.85742106140818, + "c4": -5.401015766669964, + "c5": 14.482330545672916, + "c6": -28.760962962868945, + "c7": 20.158151719569737 }, - "vertexSeeds": { - "c1": 8.774287416600998, - "c2": 8.014818294607858, - "c3": 8.570225359440878, - "c4": 7.810138710471955, - "c5": 8.41984082918334, - "c6": 8.355832958753838, - "c7": 7.937656572332537 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864075, + "c3": 10.841423948220061, + "c4": 8.67313915857606, + "c5": 6.504854368932045, + "c6": 4.33656957928803, + "c7": 2.168284789644015 }, "rgb": [58, 15, 49] }, @@ -285396,23 +285396,23 @@ "year": 1786, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -21.214769689332215, - "c2": -14.817683621864965, - "c3": -26.847895418256265, - "c4": 14.541435263040668, - "c5": 27.21743239602391, - "c6": -10.780402362681468, - "c7": 1.298014739169922 + "points": { + "c1": -31.67541430583007, + "c2": -7.582026876772346, + "c3": -8.402031730573142, + "c4": 1.2868801724366534, + "c5": -9.196972826641556, + "c6": 22.19321274148424, + "c7": -34.6485016293899 }, - "vertexSeeds": { - "c1": 8.272629594675116, - "c2": 8.439602972865517, - "c3": 8.096492204059917, - "c4": 8.167110477483034, - "c5": 8.329369976949138, - "c6": 8.500001044489176, - "c7": 8.029937568017619 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140092, + "c3": 10.425335182616733, + "c4": 8.340268146093395, + "c5": 6.255201109570035, + "c6": 4.170134073046698, + "c7": 2.0850670365233586 }, "rgb": [222, 0, 59] }, @@ -285423,23 +285423,23 @@ "year": 1787, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": 32.6319723414167, - "c2": 2.12629545684338, - "c3": 28.748476499490707, - "c4": -47.83057749512366, - "c5": -57.56284080543598, - "c6": 1.9657870275445788, - "c7": -51.217116056815456 + "points": { + "c1": 3.9118112457401963, + "c2": -12.93257319986298, + "c3": 20.275786272889718, + "c4": -22.736128971609148, + "c5": 34.71027769295044, + "c6": 14.860607135586037, + "c7": 48.70631533573784 }, - "vertexSeeds": { - "c1": 3.0666287097735907, - "c2": 2.8013021204254698, - "c3": 3.124012969020818, - "c4": 2.8092097945441594, - "c5": 2.467408598552743, - "c6": 3.039453380639107, - "c7": 2.512133788948091 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.6047156726768375, + "c3": 3.8372630605640308, + "c4": 3.069810448451224, + "c5": 2.302357836338418, + "c6": 1.5349052242256112, + "c7": 0.7674526121128046 }, "rgb": [222, 0, 59] }, @@ -285450,23 +285450,23 @@ "year": 1786, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -15.498753923902271, - "c2": -19.815184412704166, - "c3": -11.134990614131922, - "c4": -27.579464907585255, - "c5": 33.271372292993576, - "c6": -5.898464905947407, - "c7": -35.788160203486214 + "points": { + "c1": -11.882930547193439, + "c2": -0.34422549383118195, + "c3": 25.498637484410764, + "c4": -32.44517780558681, + "c5": 38.62887270270723, + "c6": -23.682038033764094, + "c7": 35.45352416716628 }, - "vertexSeeds": { - "c1": 5.552864637693138, - "c2": 5.435865607329611, - "c3": 5.309174838839258, - "c4": 5.259277099822434, - "c5": 5.387920010229009, - "c6": 5.119114993432821, - "c7": 5.533762573326407 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543683, + "c3": 6.634304207119751, + "c4": 5.3074433656957964, + "c5": 3.9805825242718416, + "c6": 2.6537216828479093, + "c7": 1.3268608414239547 }, "rgb": [86, 146, 138] }, @@ -285477,23 +285477,23 @@ "year": 1787, "resistanceReported": false, "duration": 54604800, - "curveSeeds": { - "c1": 52.580917847271465, - "c2": -3.481667430795426, - "c3": 13.398250648313663, - "c4": 46.89492124403435, - "c5": -26.97848616311792, - "c6": -55.48422201358552, - "c7": 12.72204671925104 + "points": { + "c1": -20.212919733595385, + "c2": 0.6644451896734012, + "c3": -35.326413801410496, + "c4": 24.41595094592023, + "c5": 49.894513516408225, + "c6": -28.367837668488647, + "c7": -13.14611128615514 }, - "vertexSeeds": { - "c1": 4.482068079911484, - "c2": 4.5580419357132005, - "c3": 5.3312506949729075, - "c4": 4.042198582792333, - "c5": 5.142849664836087, - "c6": 5.88160112581024, - "c7": 4.8129805113090525 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871016, + "c3": 7.397133610725843, + "c4": 5.9177068885806765, + "c5": 4.438280166435505, + "c6": 2.9588534442903383, + "c7": 1.4794267221451691 }, "rgb": [222, 0, 59] }, @@ -285504,23 +285504,23 @@ "year": 1786, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 8.161225475430914, - "c2": 7.494700832517239, - "c3": 17.270720955369512, - "c4": -16.09400684919535, - "c5": 8.747894870633736, - "c6": 6.067641960676351, - "c7": -0.7798983229311247 + "points": { + "c1": -11.486535337945833, + "c2": -14.044468384336604, + "c3": -21.191038939112644, + "c4": 10.232573002082155, + "c5": 15.565890897024552, + "c6": 11.962209112028923, + "c7": 21.68788668553306 }, - "vertexSeeds": { - "c1": 4.299372408068034, - "c2": 4.27057024390408, - "c3": 4.168712123844854, - "c4": 4.203691180177049, - "c5": 4.139321644520743, - "c6": 4.234634887828371, - "c7": 4.320078593458477 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090157, + "c3": 5.224225612575135, + "c4": 4.1793804900601, + "c5": 3.1345353675450784, + "c6": 2.0896902450300567, + "c7": 1.0448451225150348 }, "rgb": [86, 146, 138] }, @@ -285531,23 +285531,23 @@ "year": 1787, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": -18.68509532250482, - "c2": -28.25357344389487, - "c3": -3.7901329857301675, - "c4": 11.000266541898561, - "c5": 11.545901152895539, - "c6": -19.533957562668764, - "c7": -13.117479436264809 + "points": { + "c1": -13.198278228218363, + "c2": 37.65218047544649, + "c3": 13.954728976458334, + "c4": -28.7760354440265, + "c5": 18.731697174203312, + "c6": 16.373927620383903, + "c7": -41.706198855491856 }, - "vertexSeeds": { - "c1": 3.0150372886240673, - "c2": 2.973522272979456, - "c3": 2.8570108512284014, - "c4": 2.459609554826412, - "c5": 2.792066849029796, - "c6": 2.8776648726908807, - "c7": 2.4057056868574014 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998612, + "c3": 4.022191400832177, + "c4": 3.21775312066574, + "c5": 2.4133148404993072, + "c6": 1.6088765603328716, + "c7": 0.8044382801664358 }, "rgb": [238, 201, 159] }, @@ -285558,23 +285558,23 @@ "year": 1787, "resistanceReported": false, "duration": 48470400, - "curveSeeds": { - "c1": -44.302269085774924, - "c2": 6.422218820502877, - "c3": 53.16255323527663, - "c4": -48.18624686940707, - "c5": -48.319561682594355, - "c6": 37.33704982050749, - "c7": 12.652507742326037 + "points": { + "c1": -16.98576783761483, + "c2": -55.43838762144037, + "c3": 0.7757675892582938, + "c4": -49.572379540944226, + "c5": -47.94544842086613, + "c6": -14.920171760159583, + "c7": -48.36211380091814 }, - "vertexSeeds": { - "c1": 4.868945297083075, - "c2": 10.31530678534965, - "c3": 7.408461569232793, - "c4": 5.913859458713249, - "c5": 9.158314459832471, - "c6": 10.851289901358294, - "c7": 7.812137879489734 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524274, + "c3": 12.944983818770227, + "c4": 10.355987055016184, + "c5": 7.766990291262138, + "c6": 5.177993527508094, + "c7": 2.5889967637540447 }, "rgb": [58, 15, 49] }, @@ -285585,23 +285585,23 @@ "year": 1786, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": 18.709962468057263, - "c2": -11.90805159192838, - "c3": -5.829247260185415, - "c4": -12.24021961331897, - "c5": 0.3407504475771006, - "c6": 11.42923808467075, - "c7": -18.474636926201093 + "points": { + "c1": 15.153769024871167, + "c2": -17.30488625140429, + "c3": 17.296823210724753, + "c4": -19.372031117979077, + "c5": 18.25585326270233, + "c6": 0.8432106373290438, + "c7": 17.83109503747022 }, - "vertexSeeds": { - "c1": 3.7191606560524253, - "c2": 3.6720800735090204, - "c3": 3.7271344964750814, - "c4": 3.73864890784513, - "c5": 3.6126386026741395, - "c6": 3.5387673508009554, - "c7": 3.43023839626348 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883498, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941745, + "c6": 1.8122977346278328, + "c7": 0.9061488673139122 }, "rgb": [77, 76, 132] }, @@ -285612,23 +285612,23 @@ "year": 1787, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": -32.09561380705655, - "c2": -41.6808378610877, - "c3": -30.79726912306024, - "c4": 16.744364527745013, - "c5": -43.613285703646, - "c6": 14.749615947083193, - "c7": -41.66016286683113 + "points": { + "c1": 0.693257578606449, + "c2": 36.871495208981024, + "c3": -46.15663970460088, + "c4": 4.143345702869418, + "c5": 25.35513426780495, + "c6": -15.300141372585848, + "c7": -15.819454122110784 }, - "vertexSeeds": { - "c1": 3.0149080192116573, - "c2": 2.848923656965054, - "c3": 2.8860270652622475, - "c4": 3.051898166202086, - "c5": 3.084843529227066, - "c6": 2.9606781177179045, - "c7": 3.020817875009673 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998614, + "c3": 4.022191400832175, + "c4": 3.2177531206657406, + "c5": 2.413314840499307, + "c6": 1.6088765603328685, + "c7": 0.8044382801664343 }, "rgb": [222, 0, 59] }, @@ -285639,23 +285639,23 @@ "year": 1786, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 4.200017170663337, - "c2": -13.694842593891082, - "c3": 10.43602475186568, - "c4": -3.6681286366035195, - "c5": 0.5339660215492188, - "c6": -20.483178381985155, - "c7": -12.608636928768934 + "points": { + "c1": -34.228677545257035, + "c2": -22.36257895536899, + "c3": 25.546381874297566, + "c4": 13.905380445885399, + "c5": 27.862708042041547, + "c6": -24.22108771052897, + "c7": 16.748410906894456 }, - "vertexSeeds": { - "c1": 7.959908129967713, - "c2": 7.959286189957619, - "c3": 7.961219162451327, - "c4": 7.959224423616458, - "c5": 7.947503569417606, - "c6": 7.96631378367961, - "c7": 7.960907087216455 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177530884, + "c3": 9.500693481276114, + "c4": 7.600554785020589, + "c5": 5.700416088765819, + "c6": 3.8002773925102944, + "c7": 1.9001386962555251 }, "rgb": [58, 15, 49] }, @@ -285666,23 +285666,23 @@ "year": 1788, "resistanceReported": false, "duration": 57888000, - "curveSeeds": { - "c1": -33.60296314806134, - "c2": -22.77443979701127, - "c3": 52.156872665676076, - "c4": 68.75778428746763, - "c5": -29.669117151266477, - "c6": -68.77231678475715, - "c7": 13.970671720083672 + "points": { + "c1": 46.088141752567864, + "c2": -43.406610083034316, + "c3": -46.19170626984926, + "c4": 27.924269990004774, + "c5": 11.064690020117482, + "c6": -59.648600445663554, + "c7": -1.4433868752310985 }, - "vertexSeeds": { - "c1": 5.826397660745415, - "c2": 5.361283844800841, - "c3": 5.559256992523161, - "c4": 5.903002469053093, - "c5": 5.9617236440228245, - "c6": 5.332498626662894, - "c7": 5.764281799852653 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [77, 76, 132] }, @@ -285693,23 +285693,23 @@ "year": 1786, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -13.483192430627248, - "c2": 16.518132184110165, - "c3": 23.493636046855983, - "c4": 16.658735204568792, - "c5": -22.589749908502775, - "c6": -2.478875989154478, - "c7": 18.996818477668754 + "points": { + "c1": 0.4845575647794824, + "c2": 15.976165352351003, + "c3": 16.668419730655813, + "c4": 16.46716808470783, + "c5": 5.348492700561902, + "c6": -5.9586284977055115, + "c7": -11.555923121171432 }, - "vertexSeeds": { - "c1": 2.8699852532871652, - "c2": 3.0344204061519804, - "c3": 2.955909272547725, - "c4": 3.0842959055482377, - "c5": 3.4716544817232484, - "c6": 3.1939960668511196, - "c7": 2.9166603644058484 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280164, + "c3": 4.184003698566806, + "c4": 3.347202958853443, + "c5": 2.5104022191400843, + "c6": 1.6736014794267215, + "c7": 0.8368007397133589 }, "rgb": [86, 146, 138] }, @@ -285720,23 +285720,23 @@ "year": 1786, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": -8.591679141026457, - "c2": 9.849668358449055, - "c3": -18.81507541493583, - "c4": -3.8128395882242287, - "c5": -0.5283588763852123, - "c6": 6.87651723788267, - "c7": 11.794955521113955 + "points": { + "c1": -18.140743838433472, + "c2": -12.647189805293069, + "c3": -21.389963139265298, + "c4": -16.270480513157505, + "c5": -8.78643456802351, + "c6": 3.872477279411381, + "c7": -4.070968376711736 }, - "vertexSeeds": { - "c1": 6.434346162359975, - "c2": 6.5638310900832515, - "c3": 6.57176944713496, - "c4": 6.440541491488939, - "c5": 6.704636297931304, - "c6": 6.5313463682444475, - "c7": 6.771478619652934 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198326, + "c3": 8.159963014331948, + "c4": 6.52797041146555, + "c5": 4.8959778085991745, + "c6": 3.263985205732775, + "c7": 1.6319926028663765 }, "rgb": [238, 201, 159] }, @@ -285747,23 +285747,23 @@ "year": 1787, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -35.65183002015877, - "c2": -32.69588109646034, - "c3": -37.34726223887596, - "c4": -21.859236115691207, - "c5": -29.828894175717373, - "c6": -19.58596095095077, - "c7": 35.92758995547092 + "points": { + "c1": 2.1034045968875574, + "c2": 31.52202366690635, + "c3": -28.475769382605975, + "c4": -21.032322845751764, + "c5": 16.52245643155522, + "c6": -41.760548405727256, + "c7": -14.06817251560679 }, - "vertexSeeds": { - "c1": 12.320671534638866, - "c2": 12.597364833242858, - "c3": 13.148348727501919, - "c4": 12.702724907758164, - "c5": 12.63589866897241, - "c6": 12.751740632057071, - "c7": 12.713749236287223 + "offsets": { + "c1": 22.39482200647249, + "c2": 19.195561719833552, + "c3": 15.996301433194654, + "c4": 12.797041146555717, + "c5": 9.597780859916776, + "c6": 6.398520573277878, + "c7": 3.199260286638939 }, "rgb": [86, 146, 138] }, @@ -285774,23 +285774,23 @@ "year": 1787, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 27.14679200769811, - "c2": 7.0731586861005695, - "c3": -12.561728266270805, - "c4": -42.77857407882667, - "c5": 29.851355342812454, - "c6": -9.000656439788322, - "c7": -24.72512687683627 + "points": { + "c1": 12.522183664505803, + "c2": -31.090753767842784, + "c3": -22.552545646039313, + "c4": -31.759232960924177, + "c5": 39.769794964577855, + "c6": 22.319774933659005, + "c7": -19.31105485437298 }, - "vertexSeeds": { - "c1": 5.760911793159179, - "c2": 5.770934600045151, - "c3": 5.744551586649545, - "c4": 5.770331181172934, - "c5": 5.777398907703953, - "c6": 5.7372878497638276, - "c7": 5.74435796462008 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066613, + "c3": 6.934812760055419, + "c4": 5.547850208044363, + "c5": 4.160887656033307, + "c6": 2.77392510402225, + "c7": 1.3869625520110562 }, "rgb": [77, 76, 132] }, @@ -285801,23 +285801,23 @@ "year": 1787, "resistanceReported": false, "duration": 53827200, - "curveSeeds": { - "c1": -14.909184612124953, - "c2": 3.9494870258456984, - "c3": 22.85463557066346, - "c4": -17.66903500167858, - "c5": 28.03333119712451, - "c6": 35.36522924214398, - "c7": 44.092342334207586 + "points": { + "c1": 59.0113326269057, + "c2": 41.235297616603944, + "c3": -42.73954170196099, + "c4": 42.79376186601165, + "c5": 1.9526928529070062, + "c6": -32.06833743667436, + "c7": 1.5153609604357285 }, - "vertexSeeds": { - "c1": 12.717059154509757, - "c2": 12.57837257854507, - "c3": 12.742552953510062, - "c4": 12.373673776607196, - "c5": 12.625158501117314, - "c6": 12.4700897623602, - "c7": 12.277804187954517 + "offsets": { + "c1": 22.03883495145631, + "c2": 18.89042995839114, + "c3": 15.742024965325928, + "c4": 12.59361997226076, + "c5": 9.44521497919555, + "c6": 6.29680998613038, + "c7": 3.1484049930652107 }, "rgb": [222, 0, 59] }, @@ -285828,23 +285828,23 @@ "year": 1786, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -27.136557533972343, - "c2": 8.809001103913417, - "c3": -2.747645021779796, - "c4": -18.101609433446185, - "c5": 25.630559735211754, - "c6": 21.990513500442496, - "c7": -23.765951100657613 + "points": { + "c1": -17.29464003731227, + "c2": 0.9746938143667343, + "c3": 1.1046395036053056, + "c4": 4.306687073144154, + "c5": -21.855148385470127, + "c6": -12.093210348332754, + "c7": -18.804401366929348 }, - "vertexSeeds": { - "c1": 1.4617281993939357, - "c2": 1.4710707615283896, - "c3": 1.462295245646227, - "c4": 1.488842616726917, - "c5": 1.4929093294281848, - "c6": 1.4848932834665305, - "c7": 1.469098942920102 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.1636615811373012, + "c3": 1.8030513176144267, + "c4": 1.4424410540915342, + "c5": 1.0818307905686597, + "c6": 0.7212205270457671, + "c7": 0.36061026352289255 }, "rgb": [222, 0, 59] }, @@ -285855,23 +285855,23 @@ "year": 1786, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 21.25363418800967, - "c2": -11.581105615338107, - "c3": -4.903429597026992, - "c4": -27.71590700999193, - "c5": -24.005656723465925, - "c6": 27.283941153034093, - "c7": -32.90326902811641 + "points": { + "c1": 19.458735202792994, + "c2": 37.581100619291306, + "c3": -32.39319297820947, + "c4": -32.968842522572835, + "c5": 19.230979537725062, + "c6": -16.53876011198467, + "c7": -38.99217189102056 }, - "vertexSeeds": { - "c1": 3.963352183377133, - "c2": 4.132843465878359, - "c3": 4.68099772424367, - "c4": 4.37539965080635, - "c5": 4.485231549428372, - "c6": 4.439835056810521, - "c7": 4.634734361022559 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733702, + "c3": 5.594082293111416, + "c4": 4.475265834489136, + "c5": 3.356449375866851, + "c6": 2.2376329172445653, + "c7": 1.1188164586222855 }, "rgb": [86, 146, 138] }, @@ -285882,23 +285882,23 @@ "year": 1786, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 15.715994406442043, - "c2": 13.730172373104296, - "c3": 25.131052306041006, - "c4": -6.180015200120373, - "c5": -3.5056166065688643, - "c6": -6.310201362526971, - "c7": 0.817939642480237 + "points": { + "c1": 1.3023891812121846, + "c2": -11.548745145757753, + "c3": 1.800715020572703, + "c4": -20.80649475530048, + "c5": 8.214295755821958, + "c6": -18.033090043565643, + "c7": -10.445568307508232 }, - "vertexSeeds": { - "c1": 3.5995060469458116, - "c2": 3.4178114591335156, - "c3": 3.5158972635230583, - "c4": 3.6276150938458196, - "c5": 3.4772956673526645, - "c6": 3.6002117829126266, - "c7": 3.422554354436058 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642167, + "c3": 4.392048081368465, + "c4": 3.5136384650947745, + "c5": 2.6352288488210833, + "c6": 1.7568192325473817, + "c7": 0.8784096162736909 }, "rgb": [58, 15, 49] }, @@ -285909,23 +285909,23 @@ "year": 1786, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 6.00656424105258, - "c2": -19.408309291254955, - "c3": 18.618058999664683, - "c4": -10.000216784633642, - "c5": -16.39196172312831, - "c6": -12.239064866216484, - "c7": -1.4253294002303427 + "points": { + "c1": -23.54031797064178, + "c2": -19.241783414558263, + "c3": 3.076538246968358, + "c4": -25.30522715875744, + "c5": 15.697244690288592, + "c6": -25.229750788552032, + "c7": -19.774874764457614 }, - "vertexSeeds": { - "c1": 4.4117307942504755, - "c2": 4.456418078017857, - "c3": 4.503120535585196, - "c4": 4.458954762508058, - "c5": 4.435627886256159, - "c6": 4.61893804499893, - "c7": 4.861809592255701 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377257, + "c3": 5.963938973647711, + "c4": 4.7711511789181715, + "c5": 3.578363384188625, + "c6": 2.3855755894590858, + "c7": 1.1927877947295389 }, "rgb": [58, 15, 49] }, @@ -285936,23 +285936,23 @@ "year": 1786, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -1.5292280922008246, - "c2": -13.506848611969978, - "c3": -18.63918664554962, - "c4": -33.8724828330934, - "c5": 15.349249440638935, - "c6": -10.638107039362207, - "c7": 20.014038764018558 + "points": { + "c1": -28.770919930991177, + "c2": 22.480107463170675, + "c3": -21.823037466513746, + "c4": 27.589478093923255, + "c5": -23.12818755466465, + "c6": 23.91962540368813, + "c7": 21.21742939206458 }, - "vertexSeeds": { - "c1": 1.8374676177592562, - "c2": 1.9441806465532412, - "c3": 2.160882500174983, - "c4": 1.8901332888067248, - "c5": 1.8672938662004726, - "c6": 2.1442137450757364, - "c7": 1.9870764070937765 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551543, + "c4": 2.182154415164123, + "c5": 1.6366158113730918, + "c6": 1.0910772075820625, + "c7": 0.5455386037910291 }, "rgb": [238, 201, 159] }, @@ -285963,23 +285963,23 @@ "year": 1786, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -32.66989438316815, - "c2": -18.36241374159364, - "c3": 29.095558538950094, - "c4": -3.676330287311842, - "c5": 0.8134467666408227, - "c6": -32.70239897519714, - "c7": -4.665549410112508 + "points": { + "c1": -3.7143056112023984, + "c2": 23.311710778609616, + "c3": 6.621203948770237, + "c4": 6.046607239222155, + "c5": -8.21828107806233, + "c6": 12.157786220352804, + "c7": -12.236572949766312 }, - "vertexSeeds": { - "c1": 7.3252704799238035, - "c2": 7.338088145803388, - "c3": 6.945988279958251, - "c4": 6.864872738336133, - "c5": 7.356293827596737, - "c6": 6.856555855834802, - "c7": 6.882297593059174 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284333, + "c3": 8.78409616273693, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947634, + "c7": 1.7568192325473817 }, "rgb": [77, 76, 132] }, @@ -285990,23 +285990,23 @@ "year": 1786, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -25.38936395240742, - "c2": 19.938197695303423, - "c3": -26.069699161256196, - "c4": -27.95925602978725, - "c5": -6.64786963944595, - "c6": 10.247799307247398, - "c7": -19.06890076456159 + "points": { + "c1": 22.055346243314062, + "c2": 27.442747463005944, + "c3": -24.7820408881463, + "c4": 3.965433936943249, + "c5": 3.791261805213928, + "c6": -9.600635521943907, + "c7": 15.969674807093249 }, - "vertexSeeds": { - "c1": 14.618007825691901, - "c2": 13.88696805273472, - "c3": 14.438891933520923, - "c4": 14.613066118169117, - "c5": 14.485619629171813, - "c6": 14.709798811428671, - "c7": 14.328026766111456 + "offsets": { + "c1": 24.724919093851135, + "c2": 21.192787794729558, + "c3": 17.660656495607935, + "c4": 14.128525196486356, + "c5": 10.596393897364779, + "c6": 7.0642625982432, + "c7": 3.5321312991215783 }, "rgb": [77, 76, 132] }, @@ -286017,23 +286017,23 @@ "year": 1786, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -12.52543433982092, - "c2": 6.312605495600614, - "c3": 6.376053401701537, - "c4": -21.286470528817848, - "c5": 0.3909720462131929, - "c6": -6.221965100509426, - "c7": 14.587180893498296 + "points": { + "c1": -14.614831498573334, + "c2": -16.630532634175797, + "c3": 6.204473760994876, + "c4": 20.273885901504233, + "c5": 1.24575156379478, + "c6": 16.09135146914223, + "c7": 18.294433207145342 }, - "vertexSeeds": { - "c1": 1.089444057442644, - "c2": 1.2972523121189974, - "c3": 1.1789563780348669, - "c4": 1.3092105017379794, - "c5": 1.1159997860908974, - "c6": 1.063521199224868, - "c7": 1.2670857807794715 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753123, + "c3": 1.595006934812761, + "c4": 1.2760055478502084, + "c5": 0.9570041608876557, + "c6": 0.6380027739251042, + "c7": 0.3190013869625526 }, "rgb": [222, 0, 59] }, @@ -286044,23 +286044,23 @@ "year": 1787, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": -39.36622020441905, - "c2": -46.81660637249091, - "c3": 7.536695817006816, - "c4": 37.58056932491458, - "c5": -7.589426666800968, - "c6": -29.141579693310778, - "c7": 17.4573461149551 + "points": { + "c1": 22.572811771703883, + "c2": -15.592674403942304, + "c3": 29.11266802443842, + "c4": -1.5106566558429932, + "c5": -16.575262817057187, + "c6": 7.999603463384069, + "c7": 26.91743941173287 }, - "vertexSeeds": { - "c1": 6.1378848379898265, - "c2": 6.353872370071806, - "c3": 5.831303599987106, - "c4": 5.8842524138571966, - "c5": 6.355114785559884, - "c6": 6.461181298291968, - "c7": 5.933846475206577 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951456, + "c3": 7.766990291262141, + "c4": 6.213592233009711, + "c5": 4.66019417475728, + "c6": 3.1067961165048494, + "c7": 1.5533980582524307 }, "rgb": [222, 0, 59] }, @@ -286071,23 +286071,23 @@ "year": 1786, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -14.467419841495037, - "c2": -14.768466567507751, - "c3": -31.364055556521652, - "c4": -22.10976299715089, - "c5": -29.29119850804834, - "c6": -33.809872219571446, - "c7": -23.151313803535164 + "points": { + "c1": 24.448576676401736, + "c2": -17.63950686739734, + "c3": 12.364699393156812, + "c4": -32.936274315295265, + "c5": -33.26021552435544, + "c6": -16.59980562500982, + "c7": 31.424791290508267 }, - "vertexSeeds": { - "c1": 6.383393260267339, - "c2": 6.269518419849985, - "c3": 6.1596245032119255, - "c4": 6.1910455605924595, - "c5": 6.032149442947283, - "c6": 6.408153190512003, - "c7": 6.03551798841676 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158115, + "c3": 8.136846971798429, + "c4": 6.509477577438743, + "c5": 4.882108183079057, + "c6": 3.2547387887193713, + "c7": 1.6273693943596856 }, "rgb": [86, 146, 138] }, @@ -286098,23 +286098,23 @@ "year": 1787, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 40.64177216436879, - "c2": -27.996709654535156, - "c3": 23.457329912644866, - "c4": -40.39486376193156, - "c5": 2.808464203860815, - "c6": 24.87113854968152, - "c7": -25.709458829074816 + "points": { + "c1": -26.19784677431476, + "c2": -11.059331375100875, + "c3": -24.60471272878691, + "c4": 3.1222042893292468, + "c5": -3.263656294319105, + "c6": -21.218321379130913, + "c7": 22.29492199431425 }, - "vertexSeeds": { - "c1": 12.45906796244773, - "c2": 9.468096009377357, - "c3": 9.324107543399988, - "c4": 8.13391366139377, - "c5": 11.943517209101895, - "c6": 10.292396471929242, - "c7": 11.328284683741538 + "offsets": { + "c1": 20.809061488673137, + "c2": 17.836338418862688, + "c3": 14.863615349052239, + "c4": 11.890892279241788, + "c5": 8.91816920943135, + "c6": 5.945446139620899, + "c7": 2.9727230698104496 }, "rgb": [86, 146, 138] }, @@ -286125,23 +286125,23 @@ "year": 1787, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": -27.455741254171496, - "c2": -20.501324948708803, - "c3": -34.76631556253993, - "c4": -7.391411944008546, - "c5": -15.146529066395274, - "c6": 41.968874557752066, - "c7": 36.047772660431285 + "points": { + "c1": -1.6231063412440463, + "c2": -23.92796816745591, + "c3": -25.605751842108084, + "c4": 41.72583050055375, + "c5": -30.405523655353768, + "c6": -28.387985183238765, + "c7": 17.717125891014454 }, - "vertexSeeds": { - "c1": 12.16632335114585, - "c2": 12.611448246241965, - "c3": 12.14105498033364, - "c4": 15.885812705395514, - "c5": 15.712804536950786, - "c6": 13.06987993479604, - "c7": 12.008286506081717 + "offsets": { + "c1": 27.928802588996763, + "c2": 23.938973647711514, + "c3": 19.949144706426264, + "c4": 15.959315765141014, + "c5": 11.969486823855762, + "c6": 7.979657882570513, + "c7": 3.9898289412852503 }, "rgb": [238, 201, 159] }, @@ -286152,23 +286152,23 @@ "year": 1786, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -29.2351765783038, - "c2": 12.32946034367069, - "c3": -22.309285823065366, - "c4": 14.358103963918303, - "c5": -31.397496081173454, - "c6": 7.354730299808999, - "c7": -19.768738613116472 + "points": { + "c1": -19.558153296910536, + "c2": 22.813370127580015, + "c3": 12.33715133275485, + "c4": -32.475162506593335, + "c5": -0.08314365126135215, + "c6": 33.60525655860071, + "c7": 32.43137004923121 }, - "vertexSeeds": { - "c1": 5.1404927471344894, - "c2": 5.280628662519693, - "c3": 5.4031374236737495, - "c4": 5.486774509493428, - "c5": 5.341373337017957, - "c6": 5.16956899232878, - "c7": 5.516831895143219 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664353, + "c3": 6.70365233472029, + "c4": 5.362921867776228, + "c5": 4.022191400832186, + "c6": 2.6814609338881246, + "c7": 1.3407304669440623 }, "rgb": [58, 15, 49] }, @@ -286179,23 +286179,23 @@ "year": 1787, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 26.683201269214337, - "c2": -22.89893583161094, - "c3": 42.05214924546061, - "c4": -7.3491543182674945, - "c5": -46.68110182400478, - "c6": -18.936163552610534, - "c7": -22.75820592754054 + "points": { + "c1": 35.443550828291066, + "c2": 35.662945405118464, + "c3": -43.80272789349132, + "c4": -42.57128548291529, + "c5": 7.974253715790418, + "c6": -26.155795287753282, + "c7": -5.235732965750572 }, - "vertexSeeds": { - "c1": 3.949055650132343, - "c2": 4.160288874913561, - "c3": 4.168280936805052, - "c4": 4.298336896490494, - "c5": 4.13891930939047, - "c6": 4.003205619336943, - "c7": 4.159387860540984 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969485, + "c3": 5.154877484974578, + "c4": 4.12390198797966, + "c5": 3.0929264909847425, + "c6": 2.0619509939898246, + "c7": 1.0309754969949176 }, "rgb": [222, 0, 59] }, @@ -286206,23 +286206,23 @@ "year": 1786, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": -8.4111040363799, - "c2": 0.45778887152888714, - "c3": 14.374362478850689, - "c4": -3.566529100538709, - "c5": -19.716261847936888, - "c6": -14.087143624063518, - "c7": 1.0124669584616974 + "points": { + "c1": 14.09781878186013, + "c2": 2.46888794057546, + "c3": -2.0411368173044906, + "c4": 3.3462622818615344, + "c5": -14.268387041943203, + "c6": 14.39133430333386, + "c7": -1.1529781469443776 }, - "vertexSeeds": { - "c1": 1.075210108663877, - "c2": 1.0804622010417235, - "c3": 1.1124348938884738, - "c4": 1.054545362876594, - "c5": 1.0811837194500895, - "c6": 1.09997857612516, - "c7": 1.1027063374679633 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.636615811373094, + "c3": 1.3638465094775793, + "c4": 1.0910772075820614, + "c5": 0.818307905686547, + "c6": 0.5455386037910325, + "c7": 0.2727693018955145 }, "rgb": [58, 15, 49] }, @@ -286233,23 +286233,23 @@ "year": 1786, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -11.467131590096821, - "c2": -5.080185534049264, - "c3": 19.466773330681228, - "c4": -23.875564595758245, - "c5": 0.3950067191050479, - "c6": 11.59940718490948, - "c7": 16.540027771806237 + "points": { + "c1": -25.185483623144084, + "c2": -1.611952721193056, + "c3": -22.613244325771454, + "c4": 20.64578644299648, + "c5": 20.708592029395042, + "c6": 19.610789744271898, + "c7": -12.947865602510088 }, - "vertexSeeds": { - "c1": 1.147743767862037, - "c2": 1.2099047613239924, - "c3": 1.2374733287894286, - "c4": 1.1789338122041302, - "c5": 1.1891839714893857, - "c6": 1.1600534695589597, - "c7": 1.2094749419260358 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.803051317614427, + "c3": 1.5025427646786862, + "c4": 1.2020342117429514, + "c5": 0.9015256588072135, + "c6": 0.6010171058714757, + "c7": 0.30050855293573786 }, "rgb": [238, 201, 159] }, @@ -286260,23 +286260,23 @@ "year": 1787, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -30.463403610385306, - "c2": 14.739529359884003, - "c3": -5.373781331419771, - "c4": 9.659562115951474, - "c5": -33.43864886516483, - "c6": 39.6352836284311, - "c7": 36.01714558629129 + "points": { + "c1": -20.663038129282707, + "c2": -30.03301573109667, + "c3": -38.82908305510107, + "c4": -36.00861313653643, + "c5": 4.826220227203649, + "c6": 25.274353832094278, + "c7": -22.611644109556302 }, - "vertexSeeds": { - "c1": 2.9522180004353213, - "c2": 2.9542918279894628, - "c3": 3.0891870628356446, - "c4": 3.0735379255935857, - "c5": 3.023531098124514, - "c6": 2.9244166738783997, - "c7": 3.0710342112892315 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475722, + "c3": 3.721682847896442, + "c4": 2.9773462783171487, + "c5": 2.233009708737868, + "c6": 1.4886731391585744, + "c7": 0.7443365695792937 }, "rgb": [58, 15, 49] }, @@ -286287,23 +286287,23 @@ "year": 1787, "resistanceReported": true, "duration": 26179200, - "curveSeeds": { - "c1": 2.539875231552408, - "c2": -21.935382917865997, - "c3": 33.84837376754943, - "c4": 4.236524049145331, - "c5": -9.79213884467055, - "c6": -0.987787268120023, - "c7": -8.167478680673735 + "points": { + "c1": 35.33996966378541, + "c2": 29.665884566777123, + "c3": 24.405766550573517, + "c4": -16.241081580788133, + "c5": -25.53838092894277, + "c6": 8.189400993412399, + "c7": 10.291267048655946 }, - "vertexSeeds": { - "c1": 5.0432200660538795, - "c2": 5.158791797587475, - "c3": 5.086501354502665, - "c4": 4.911782089672896, - "c5": 4.5916641606167925, - "c6": 4.9002592484938585, - "c7": 4.953098548648323 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859924, + "c3": 6.2413314840499305, + "c4": 4.993065187239944, + "c5": 3.744798890429958, + "c6": 2.496532593619972, + "c7": 1.248266296809986 }, "rgb": [77, 76, 132] }, @@ -286314,23 +286314,23 @@ "year": 1786, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -2.7905062892377046, - "c2": -22.754519573879513, - "c3": -0.11947031190882385, - "c4": -11.152099818961002, - "c5": 27.354855224871738, - "c6": -16.42595189862667, - "c7": -25.981361517809795 + "points": { + "c1": 4.492544930143833, + "c2": 19.44698598497749, + "c3": 13.291455672756424, + "c4": -14.493895833796351, + "c5": -14.422573540788282, + "c6": -2.9896810687915796, + "c7": 14.610048247093527 }, - "vertexSeeds": { - "c1": 10.097807299860056, - "c2": 10.154817052622471, - "c3": 10.130249638429952, - "c4": 10.023230435582988, - "c5": 10.080487687691852, - "c6": 10.10242177510864, - "c7": 10.067562557189238 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156726, + "c3": 12.159038372630604, + "c4": 9.727230698104483, + "c5": 7.295423023578363, + "c6": 4.863615349052242, + "c7": 2.431807674526121 }, "rgb": [77, 76, 132] }, @@ -286341,23 +286341,23 @@ "year": 1787, "resistanceReported": false, "duration": 42336000, - "curveSeeds": { - "c1": 11.56294214299568, - "c2": 35.328238119345244, - "c3": 18.864939296886632, - "c4": -37.02538010528667, - "c5": -48.34208562902596, - "c6": -15.820191648987084, - "c7": -20.9832576185715 + "points": { + "c1": -28.41401939424148, + "c2": -53.08880739176053, + "c3": 12.642475486270442, + "c4": 38.786413706389055, + "c5": -5.081084394383751, + "c6": 24.805451853850684, + "c7": -8.862420548509583 }, - "vertexSeeds": { - "c1": 2.293210335704647, - "c2": 2.319564450161454, - "c3": 2.2026104354623413, - "c4": 2.288888455357022, - "c5": 2.2672808585299613, - "c6": 2.2649596120976123, - "c7": 2.3145980004578695 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668488, + "c3": 2.7970411465557103, + "c4": 2.2376329172445657, + "c5": 1.6782246879334277, + "c6": 1.1188164586222829, + "c7": 0.5594082293111384 }, "rgb": [86, 146, 138] }, @@ -286368,23 +286368,23 @@ "year": 1786, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 19.180676011427956, - "c2": 17.74116097349568, - "c3": -19.410586704532353, - "c4": 13.266296234764987, - "c5": -1.7640564485795878, - "c6": 17.958472454319377, - "c7": 25.602400086858005 + "points": { + "c1": 21.780390354368215, + "c2": 21.10481775564692, + "c3": 1.5339906021596121, + "c4": 4.20368429633367, + "c5": 3.4130922891613196, + "c6": -3.0620487331256108, + "c7": -29.794989350528635 }, - "vertexSeeds": { - "c1": 7.699523151865872, - "c2": 4.855462367410786, - "c3": 6.326384253666727, - "c4": 5.631617739301233, - "c5": 5.010306054604324, - "c6": 6.848359670116142, - "c7": 4.787174227998714 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407305, + "c4": 7.397133610725842, + "c5": 5.547850208044384, + "c6": 3.698566805362921, + "c7": 1.8492834026814582 }, "rgb": [86, 146, 138] }, @@ -286395,23 +286395,23 @@ "year": 1786, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 7.8001622815729235, - "c2": -3.7391929709748126, - "c3": -11.954764751111682, - "c4": -23.822787545972382, - "c5": -25.174086850911852, - "c6": 2.602966337663645, - "c7": -13.44037557138934 + "points": { + "c1": 26.016331434308256, + "c2": -9.454072687659249, + "c3": 13.045064262933444, + "c4": 12.61570231574094, + "c5": 18.88519066656228, + "c6": 14.661603739491966, + "c7": -1.0291036188298435 }, - "vertexSeeds": { - "c1": 7.302104293519774, - "c2": 6.581145138672498, - "c3": 6.873942979225552, - "c4": 6.73596418872432, - "c5": 6.9285562922383965, - "c6": 7.668862509666352, - "c7": 6.380701419106972 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.42857142857143, + "c3": 9.523809523809529, + "c4": 7.619047619047619, + "c5": 5.714285714285715, + "c6": 3.8095238095238133, + "c7": 1.9047619047619102 }, "rgb": [238, 201, 159] }, @@ -286422,23 +286422,23 @@ "year": 1787, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -7.943873595850164, - "c2": -27.663465401661558, - "c3": 34.9057158467609, - "c4": 29.598711751192397, - "c5": 25.193605470714147, - "c6": 0.5839025210371673, - "c7": -10.728248067710574 + "points": { + "c1": -23.507516794165642, + "c2": 25.594763366632023, + "c3": -18.217220903235713, + "c4": -7.240882851063404, + "c5": 21.318544060697832, + "c6": 14.380828960838102, + "c7": 44.896051939433576 }, - "vertexSeeds": { - "c1": 3.5600533220025183, - "c2": 3.7668823517341723, - "c3": 3.6777370615604643, - "c4": 3.677534950964427, - "c5": 3.74023238956394, - "c6": 3.725311810379319, - "c7": 3.5995897561919037 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963934, + "c3": 4.576976421636617, + "c4": 3.6615811373092897, + "c5": 2.7461858529819723, + "c6": 1.8307905686546448, + "c7": 0.9153952843273275 }, "rgb": [86, 146, 138] }, @@ -286449,23 +286449,23 @@ "year": 1787, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -22.088029765121732, - "c2": -8.212290546173904, - "c3": -30.027220860584972, - "c4": -35.491123987568145, - "c5": -26.939392053360358, - "c6": -4.276314268128509, - "c7": -23.022485536090493 + "points": { + "c1": 19.834241680067116, + "c2": -39.29965265983201, + "c3": -3.1938313827729132, + "c4": 38.94322833074208, + "c5": 11.977168983825791, + "c6": -15.031139055551897, + "c7": 4.33301362748513 }, - "vertexSeeds": { - "c1": 3.477979274611399, - "c2": 3.477979274611399, - "c3": 3.477979274611399, - "c4": 3.477979274611399, - "c5": 3.477979274611399, - "c6": 3.477979274611399, - "c7": 3.477979274611399 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -286476,23 +286476,23 @@ "year": 1787, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -31.391693246964262, - "c2": 25.022050939724465, - "c3": -45.38849645065708, - "c4": 37.459852024497366, - "c5": 36.06555992780828, - "c6": 37.34888009613657, - "c7": -25.0909579213714 + "points": { + "c1": 11.27068419165797, + "c2": -10.392809144754168, + "c3": 21.32367671785562, + "c4": -29.626151204885225, + "c5": -17.247264719476036, + "c6": 20.1212132225984, + "c7": 10.897389265280957 }, - "vertexSeeds": { - "c1": 6.223371471897259, - "c2": 6.9220834228194, - "c3": 6.466143100256458, - "c4": 6.956044512302919, - "c5": 7.276501591996897, - "c6": 4.948482861604504, - "c7": 4.3434992661809115 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163662, + "c3": 8.714748035136386, + "c4": 6.97179842810911, + "c5": 5.228848821081833, + "c6": 3.485899214054557, + "c7": 1.742949607027276 }, "rgb": [238, 201, 159] }, @@ -286503,23 +286503,23 @@ "year": 1787, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -27.10623025909686, - "c2": 27.08904356358576, - "c3": 31.322641606657598, - "c4": 3.2798839009440712, - "c5": -34.325599152019315, - "c6": 32.874274175101505, - "c7": -30.540069866666762 + "points": { + "c1": -0.9486776928528968, + "c2": 26.745371852540003, + "c3": 8.833932762300478, + "c4": -26.406346369818806, + "c5": -37.01851986867028, + "c6": 1.767290872174506, + "c7": 37.319649717649895 }, - "vertexSeeds": { - "c1": 5.299255157174474, - "c2": 5.127142833846434, - "c3": 5.113564643506776, - "c4": 4.931184230633956, - "c5": 5.225268888580184, - "c6": 4.910099220359431, - "c7": 5.100387273234111 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061031, + "c3": 6.356911696717512, + "c4": 5.085529357374014, + "c5": 3.8141470180305155, + "c6": 2.5427646786870173, + "c7": 1.2713823393435086 }, "rgb": [86, 146, 138] }, @@ -286530,23 +286530,23 @@ "year": 1786, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -0.4458663917952954, - "c2": 11.163772930188635, - "c3": 4.34140322003174, - "c4": 8.821372955174887, - "c5": 15.9912290747625, - "c6": -6.7521935283878705, - "c7": -1.1598426403140216 + "points": { + "c1": 14.665351294673904, + "c2": -11.997321862637671, + "c3": 6.5054636030886, + "c4": -3.4807260593814995, + "c5": 20.416211580507145, + "c6": -18.82495353125358, + "c7": 9.792500035853955 }, - "vertexSeeds": { - "c1": 1.4228501152577826, - "c2": 1.5230532944364945, - "c3": 1.4843942115237532, - "c4": 1.5338662093864566, - "c5": 1.4204385485854518, - "c6": 1.4785847691998553, - "c7": 1.454683609126686 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177517, + "c3": 1.8492834026814637, + "c4": 1.4794267221451698, + "c5": 1.1095700416088758, + "c6": 0.7397133610725818, + "c7": 0.369856680536294 }, "rgb": [86, 146, 138] }, @@ -286557,23 +286557,23 @@ "year": 1787, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -1.0098112949484985, - "c2": 18.992513068708725, - "c3": -39.50248135419418, - "c4": -10.345003285779462, - "c5": -27.03431666279952, - "c6": 36.78360208237039, - "c7": 11.572789385013692 + "points": { + "c1": 19.646608545929652, + "c2": -8.140421131640664, + "c3": 16.199789970469972, + "c4": -19.069675533581183, + "c5": 12.799211775741036, + "c6": 1.9407128864076526, + "c7": 11.614219994472244 }, - "vertexSeeds": { - "c1": 8.719935475416134, - "c2": 8.68646518571134, - "c3": 8.765727187650008, - "c4": 9.165567329871163, - "c5": 9.248561081486391, - "c6": 9.129625044930329, - "c7": 9.017775783729846 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226065, + "c3": 11.049468331021732, + "c4": 8.839574664817377, + "c5": 6.6296809986130425, + "c6": 4.4197873324086885, + "c7": 2.209893666204334 }, "rgb": [77, 76, 132] }, @@ -286584,23 +286584,23 @@ "year": 1787, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -22.64107539769365, - "c2": 39.439203460362975, - "c3": 7.568379771838188, - "c4": -1.126332144810334, - "c5": 34.89077628844851, - "c6": -26.112869170895852, - "c7": -13.428945793225985 + "points": { + "c1": -20.63318938346323, + "c2": -1.2038185550715212, + "c3": -31.64461181249249, + "c4": 23.659187337641242, + "c5": 42.53812554808367, + "c6": -33.91843117567012, + "c7": 21.517054826368664 }, - "vertexSeeds": { - "c1": 10.360835486129245, - "c2": 10.91566549022782, - "c3": 10.610212421469315, - "c4": 11.070411928737867, - "c5": 10.98946380160704, - "c6": 10.206657200628669, - "c7": 10.867513136543103 + "offsets": { + "c1": 18.705501618122977, + "c2": 16.03328710124826, + "c3": 13.361072584373543, + "c4": 10.688858067498868, + "c5": 8.016643550624151, + "c6": 5.344429033749434, + "c7": 2.672214516874717 }, "rgb": [238, 201, 159] }, @@ -286611,23 +286611,23 @@ "year": 1788, "resistanceReported": false, "duration": 61862400, - "curveSeeds": { - "c1": -1.2970736977808315, - "c2": 37.604858514903725, - "c3": 58.570855526370664, - "c4": -19.268644470071067, - "c5": 72.67777986152343, - "c6": 56.62314797887559, - "c7": 60.57375389746805 + "points": { + "c1": 17.61265743251245, + "c2": -34.378891683861816, + "c3": 12.96674306661562, + "c4": -52.112071676411276, + "c5": 58.53236127479208, + "c6": -67.5467852393958, + "c7": -48.84403397869454 }, - "vertexSeeds": { - "c1": 6.5833305559252295, - "c2": 6.479897569156768, - "c3": 6.797226255933661, - "c4": 6.416546990576856, - "c5": 6.619017514848077, - "c6": 6.8390748947904525, - "c7": 6.94538575385789 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066581, + "c4": 6.65742024965327, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624133119 }, "rgb": [222, 0, 59] }, @@ -286638,23 +286638,23 @@ "year": 1787, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -16.504820680073035, - "c2": -16.753369816594745, - "c3": 20.748785362516536, - "c4": 10.91264187576926, - "c5": 22.55806523787946, - "c6": -3.1626888487411122, - "c7": -34.04547301650637 + "points": { + "c1": 3.249412352196046, + "c2": 29.249559663288778, + "c3": 36.52105887352788, + "c4": -6.602383464018999, + "c5": 30.238724034216972, + "c6": -15.074334534817524, + "c7": -27.034980030475662 }, - "vertexSeeds": { - "c1": 7.498341145087711, - "c2": 7.754055947827727, - "c3": 8.159972638950139, - "c4": 7.8667516063983705, - "c5": 8.145789275128589, - "c6": 7.949286475365035, - "c7": 8.178054876646907 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973646, + "c3": 9.754969949144705, + "c4": 7.803975959315764, + "c5": 5.852981969486823, + "c6": 3.901987979657882, + "c7": 1.950993989828941 }, "rgb": [238, 201, 159] }, @@ -286665,23 +286665,23 @@ "year": 1788, "resistanceReported": false, "duration": 65750400, - "curveSeeds": { - "c1": -78.81755095130309, - "c2": -58.498095871668426, - "c3": 40.468571977343245, - "c4": 46.210117442093065, - "c5": 66.24875846789561, - "c6": 67.97491501460107, - "c7": 66.76589785951754 + "points": { + "c1": -75.72702307849532, + "c2": 29.990718929002313, + "c3": -72.03316309942443, + "c4": 15.84453800479551, + "c5": -49.96916759970998, + "c6": -67.49845796263932, + "c7": -69.82031751991288 }, - "vertexSeeds": { - "c1": 7.345764177562492, - "c2": 7.697547176507186, - "c3": 7.180314883384827, - "c4": 7.6087506930279645, - "c5": 7.486030191978143, - "c6": 7.332292276872464, - "c7": 7.278244989146568 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.246417013407312, + "c4": 7.397133610725854, + "c5": 5.547850208044372, + "c6": 3.698566805362915, + "c7": 1.8492834026814575 }, "rgb": [58, 15, 49] }, @@ -286692,23 +286692,23 @@ "year": 1786, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 7.550311484845945, - "c2": 18.841612668724107, - "c3": 6.625441533448107, - "c4": -11.563384775423618, - "c5": 17.66386460296881, - "c6": -0.4930610324678213, - "c7": -5.888914528436366 + "points": { + "c1": 22.761801676837724, + "c2": 15.047357982280563, + "c3": 11.900472467466653, + "c4": 4.513129837244431, + "c5": -1.8054845482418926, + "c6": -15.710313455181327, + "c7": -9.492576062555486 }, - "vertexSeeds": { - "c1": 8.761976445015343, - "c2": 8.642569998214928, - "c3": 8.642512880889518, - "c4": 8.37020233533564, - "c5": 8.607118301503755, - "c6": 8.589436140552772, - "c7": 8.15652527874518 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461865, + "c3": 10.610263522884873, + "c4": 8.488210818307902, + "c5": 6.366158113730933, + "c6": 4.2441054091539625, + "c7": 2.12205270457697 }, "rgb": [77, 76, 132] }, @@ -286719,23 +286719,23 @@ "year": 1787, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -39.10392535851309, - "c2": 29.942123393042202, - "c3": 35.116134616373365, - "c4": 41.40352751950062, - "c5": -10.734909501281152, - "c6": 14.269670237950528, - "c7": 38.39388104419391 + "points": { + "c1": 35.68793919020995, + "c2": -26.260912309425272, + "c3": 38.44529705620328, + "c4": -40.85859933128768, + "c5": -35.38621835404298, + "c6": 7.1422017791901595, + "c7": 41.959971142756224 }, - "vertexSeeds": { - "c1": 1.9790181776790612, - "c2": 2.0126240153984902, - "c3": 1.709964945165766, - "c4": 1.7077087347680193, - "c5": 1.7764760574180782, - "c6": 1.7279696581323958, - "c7": 1.5915208741298223 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.4271844660194177, + "c4": 1.9417475728155333, + "c5": 1.4563106796116512, + "c6": 0.9708737864077688, + "c7": 0.4854368932038844 }, "rgb": [222, 0, 59] }, @@ -286746,23 +286746,23 @@ "year": 1787, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -2.3782983767472032, - "c2": -26.10515765302069, - "c3": -32.96267811673611, - "c4": -38.88327949994889, - "c5": -2.557392488589379, - "c6": -42.9527898613556, - "c7": -14.154926772579607 + "points": { + "c1": -30.10386512508081, + "c2": 11.181283104862544, + "c3": 15.283852943463692, + "c4": -24.46959354779374, + "c5": -5.847774298207909, + "c6": 7.364388308746037, + "c7": 38.015913128680275 }, - "vertexSeeds": { - "c1": 9.387418889842642, - "c2": 9.789199930851822, - "c3": 8.9053130233937, - "c4": 9.16891408568707, - "c5": 9.607105436032645, - "c6": 9.420770656036087, - "c7": 9.812577590747583 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754501, + "c3": 11.927877947295425, + "c4": 9.542302357836334, + "c5": 7.156726768377258, + "c6": 4.771151178918167, + "c7": 2.385575589459091 }, "rgb": [58, 15, 49] }, @@ -286773,23 +286773,23 @@ "year": 1787, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 39.635169175683664, - "c2": -25.18699408133416, - "c3": 45.82622216937042, - "c4": -9.206420162552874, - "c5": -0.5330436292279686, - "c6": -4.04259610265278, - "c7": -17.730332856263235 + "points": { + "c1": 4.5508332930943, + "c2": 11.83425382291621, + "c3": -9.224342113882493, + "c4": 21.816906369953664, + "c5": 38.5656744343998, + "c6": 20.827988568256536, + "c7": -11.702653790981849 }, - "vertexSeeds": { - "c1": 10.867695876749641, - "c2": 10.630673776877893, - "c3": 10.164816738595375, - "c4": 10.431708692959642, - "c5": 10.20387391341865, - "c6": 10.648279277352888, - "c7": 10.202336341327996 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846035, + "c3": 13.129912159038392, + "c4": 10.503929727230704, + "c5": 7.877947295423017, + "c6": 5.251964863615374, + "c7": 2.625982431807687 }, "rgb": [86, 146, 138] }, @@ -286800,23 +286800,23 @@ "year": 1786, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 25.286263563265468, - "c2": 9.201769448241631, - "c3": 7.894111646909121, - "c4": 19.026208555493515, - "c5": -8.784132142338912, - "c6": -18.560661782612577, - "c7": -25.81673221430152 + "points": { + "c1": -13.399177448603467, + "c2": -16.622852224589074, + "c3": 4.990185424655333, + "c4": 5.806122800217334, + "c5": -28.043350876917465, + "c6": 6.701804264938868, + "c7": 0.5712830952791066 }, - "vertexSeeds": { - "c1": 8.544533760134668, - "c2": 8.836304138274905, - "c3": 8.369314888845945, - "c4": 8.618011663857045, - "c5": 8.450437441045661, - "c6": 8.344897064041964, - "c7": 8.536266711254028 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461865, + "c3": 10.610263522884873, + "c4": 8.488210818307902, + "c5": 6.366158113730933, + "c6": 4.2441054091539625, + "c7": 2.12205270457697 }, "rgb": [238, 201, 159] }, @@ -286827,23 +286827,23 @@ "year": 1786, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 2.332435685462464, - "c2": -14.878642069378724, - "c3": 15.111152078649159, - "c4": 18.55888224362472, - "c5": 12.04498490935357, - "c6": -3.9328566447238167, - "c7": -0.4477706017512837 + "points": { + "c1": -8.848083843081966, + "c2": 21.93733461827266, + "c3": 26.43823977204872, + "c4": -6.591439784798919, + "c5": -22.323772599517955, + "c6": 3.5719594209498347, + "c7": 10.690174423089818 }, - "vertexSeeds": { - "c1": 3.700020370459435, - "c2": 3.727685930642352, - "c3": 3.954289293086247, - "c4": 3.7481783927859422, - "c5": 3.834125668187288, - "c6": 3.9754192743588086, - "c7": 3.6903923336183206 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446601, + "c3": 4.854368932038835, + "c4": 3.8834951456310676, + "c5": 2.9126213592233006, + "c6": 1.9417475728155338, + "c7": 0.9708737864077669 }, "rgb": [58, 15, 49] }, @@ -286854,23 +286854,23 @@ "year": 1787, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": -41.85549032163087, - "c2": -10.890944853081756, - "c3": 23.300159056349074, - "c4": 21.523808269832358, - "c5": -30.6753806050365, - "c6": 40.5861055606898, - "c7": -29.78152023582952 + "points": { + "c1": -35.01290385251868, + "c2": -34.57869601080712, + "c3": 27.694590856042993, + "c4": 2.6229813532377193, + "c5": 10.660453079498623, + "c6": -52.9620211186156, + "c7": -56.65410727982138 }, - "vertexSeeds": { - "c1": 6.255334651362415, - "c2": 6.262675762288288, - "c3": 5.963444173365409, - "c4": 6.294335163782723, - "c5": 5.828213322698107, - "c6": 6.183326635022396, - "c7": 6.345806061573703 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [86, 146, 138] }, @@ -286881,23 +286881,23 @@ "year": 1787, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 6.307422892175076, - "c2": 3.4313756469304195, - "c3": -11.644384352864137, - "c4": -11.34542566336242, - "c5": -8.924559832886484, - "c6": 16.626575919517414, - "c7": 18.42923233358522 + "points": { + "c1": -27.292547054097298, + "c2": -37.48282519906936, + "c3": -16.254203540391593, + "c4": -25.707886153279684, + "c5": -29.224317518887446, + "c6": 2.225820189217366, + "c7": 2.0184082877550154 }, - "vertexSeeds": { - "c1": 8.047513300545056, - "c2": 8.069285013498217, - "c3": 8.008205087477327, - "c4": 8.05394277408203, - "c5": 7.853584745394397, - "c6": 8.055093692815312, - "c7": 7.923206265091367 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.65048543689322, + "c3": 9.708737864077664, + "c4": 7.766990291262148, + "c5": 5.8252427184465905, + "c6": 3.883495145631074, + "c7": 1.941747572815556 }, "rgb": [77, 76, 132] }, @@ -286908,23 +286908,23 @@ "year": 1787, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -31.82577712945259, - "c2": 1.818630023618418, - "c3": -28.55600379464593, - "c4": 27.3804153069713, - "c5": 2.0208712218851517, - "c6": -28.260978691694625, - "c7": -1.120484738741304 + "points": { + "c1": -1.9693106040762487, + "c2": 9.4706434453119, + "c3": 8.32718493036625, + "c4": -31.35060843741103, + "c5": -16.532793455179004, + "c6": 19.1418299027127, + "c7": -6.779575049559732 }, - "vertexSeeds": { - "c1": 9.587018247938952, - "c2": 9.475876948502627, - "c3": 9.588819264320334, - "c4": 9.636504508293754, - "c5": 9.520184352644048, - "c6": 9.672836428594463, - "c7": 9.419854080776208 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110963, + "c3": 11.558021266759146, + "c4": 9.246417013407328, + "c5": 6.934812760055453, + "c6": 4.6232085067036355, + "c7": 2.3116042533518177 }, "rgb": [86, 146, 138] }, @@ -286935,23 +286935,23 @@ "year": 1787, "resistanceReported": false, "duration": 51494400, - "curveSeeds": { - "c1": -10.250348455473606, - "c2": 30.892334480779425, - "c3": 49.5812132250679, - "c4": -57.05165881182983, - "c5": -10.684295962307587, - "c6": -40.50298098708334, - "c7": -19.164942146100756 + "points": { + "c1": -60.88588337631686, + "c2": 49.32105254203459, + "c3": -8.099258288919025, + "c4": -31.003210230687152, + "c5": -41.65121363154725, + "c6": -17.422225609494525, + "c7": -44.454979708402284 }, - "vertexSeeds": { - "c1": 7.866577965858587, - "c2": 7.620108885068542, - "c3": 7.384141469515057, - "c4": 7.364851103949214, - "c5": 7.4278990214364295, - "c6": 7.807658025553244, - "c7": 7.680924057759794 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410078, + "c4": 7.6745261211280615, + "c5": 5.7558945908460455, + "c6": 3.8372630605640308, + "c7": 1.9186315302820154 }, "rgb": [58, 15, 49] }, @@ -286962,23 +286962,23 @@ "year": 1786, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 18.33490454054215, - "c2": 25.174882023234193, - "c3": 11.537134834978996, - "c4": -24.43046439787013, - "c5": -23.873000704376167, - "c6": 21.258415900271917, - "c7": 14.662888667525916 + "points": { + "c1": 28.409702285981847, + "c2": -27.722476532332788, + "c3": 3.402261142027651, + "c4": 10.723698923087493, + "c5": 23.29802763819897, + "c6": 11.941478525845074, + "c7": -6.206236507028933 }, - "vertexSeeds": { - "c1": 10.637986427438511, - "c2": 10.837508393958027, - "c3": 10.50620998963513, - "c4": 10.435408812865083, - "c5": 10.268286040935974, - "c6": 10.921020820596693, - "c7": 10.820405228758034 + "offsets": { + "c1": 18.576051779935277, + "c2": 15.922330097087366, + "c3": 13.268608414239502, + "c4": 10.614886731391593, + "c5": 7.961165048543683, + "c6": 5.307443365695819, + "c7": 2.6537216828479093 }, "rgb": [58, 15, 49] }, @@ -286989,23 +286989,23 @@ "year": 1787, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 29.534609949929077, - "c2": -33.230627176242905, - "c3": -0.878382865012739, - "c4": -14.97294696067717, - "c5": 20.00661623123949, - "c6": 10.293657828391432, - "c7": 24.489991910154153 + "points": { + "c1": 11.35087638187661, + "c2": 27.9890053665453, + "c3": 27.745449510975405, + "c4": -28.621994903980386, + "c5": -36.81615486916233, + "c6": -2.3196372124826397, + "c7": 17.612718157523226 }, - "vertexSeeds": { - "c1": 6.509479940177266, - "c2": 6.765965311261581, - "c3": 6.5413540357026125, - "c4": 6.738365325965094, - "c5": 6.715616394441756, - "c6": 6.91775169045132, - "c7": 6.822343414827954 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439664, + "c3": 8.298659269533053, + "c4": 6.638927415626452, + "c5": 4.979195561719839, + "c6": 3.319463707813226, + "c7": 1.659731853906613 }, "rgb": [86, 146, 138] }, @@ -287016,23 +287016,23 @@ "year": 1788, "resistanceReported": false, "duration": 53395200, - "curveSeeds": { - "c1": 33.49189142812335, - "c2": -46.58593385275178, - "c3": -30.45247952326038, - "c4": -8.301272991059363, - "c5": -13.544270582808473, - "c6": 44.30436736645987, - "c7": -61.725982867974984 + "points": { + "c1": -29.114118739534504, + "c2": 22.84099786969955, + "c3": -56.620979738481665, + "c4": -29.931534535673784, + "c5": -21.862796495114125, + "c6": 48.288722613729945, + "c7": 41.59825316280937 }, - "vertexSeeds": { - "c1": 10.402428047597725, - "c2": 10.393476998697944, - "c3": 10.082733415720995, - "c4": 10.187780906708046, - "c5": 9.582892326019829, - "c6": 9.788663214941332, - "c7": 10.227026735208893 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599161, + "c3": 12.413314840499293, + "c4": 9.93065187239947, + "c5": 7.447988904299581, + "c6": 4.965325936199735, + "c7": 2.4826629680998673 }, "rgb": [222, 0, 59] }, @@ -287043,23 +287043,23 @@ "year": 1787, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 13.359508775926223, - "c2": 5.5871897217127895, - "c3": -5.147156068807284, - "c4": 6.508192946654056, - "c5": 14.734902578505483, - "c6": 16.601338110037354, - "c7": -11.022694427671393 + "points": { + "c1": -25.94602422826385, + "c2": 25.23925025718178, + "c3": -2.0472571720121557, + "c4": -23.613439583973733, + "c5": 30.64165159664099, + "c6": -5.904102050020072, + "c7": -21.24850643724487 }, - "vertexSeeds": { - "c1": 3.8117946188973097, - "c2": 5.070438088105575, - "c3": 5.276843760636611, - "c4": 4.517438677454953, - "c5": 4.524811725509958, - "c6": 4.366978273373745, - "c7": 4.089321852737813 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463245, + "c3": 6.588072122052702, + "c4": 5.270457697642162, + "c5": 3.9528432732316237, + "c6": 2.635228848821081, + "c7": 1.3176144244105394 }, "rgb": [86, 146, 138] }, @@ -287070,23 +287070,23 @@ "year": 1786, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -11.144930940045263, - "c2": -19.467411955894292, - "c3": -1.9960155836645939, - "c4": 16.210833762010477, - "c5": 10.798469264941044, - "c6": 25.47132047629891, - "c7": -25.114159372472262 + "points": { + "c1": 16.116058908956862, + "c2": -22.633419534086762, + "c3": 25.354358179910175, + "c4": -7.543972928640528, + "c5": -14.516120076963421, + "c6": 18.93473345002373, + "c7": 20.91186504801981 }, - "vertexSeeds": { - "c1": 8.71037509870609, - "c2": 8.630574461702848, - "c3": 8.700837104841012, - "c4": 8.615244100326148, - "c5": 8.62615162239708, - "c6": 8.615024447090894, - "c7": 8.685398214478042 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809986, + "c3": 10.402219140083217, + "c4": 8.321775312066572, + "c5": 6.24133148404993, + "c6": 4.160887656033286, + "c7": 2.080443828016643 }, "rgb": [222, 0, 59] }, @@ -287097,23 +287097,23 @@ "year": 1787, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 0.6744335121681999, - "c2": 38.56527428145656, - "c3": 25.60762242696682, - "c4": 10.624183924779267, - "c5": -1.1152529247533707, - "c6": 36.08083954034098, - "c7": -31.298729253653946 + "points": { + "c1": -22.22898482687958, + "c2": -46.39936165208219, + "c3": -35.198212441779745, + "c4": 41.94188467343644, + "c5": -28.571538892494043, + "c6": -46.400095262540134, + "c7": 8.550772157348206 }, - "vertexSeeds": { - "c1": 7.161131630688637, - "c2": 7.278202993597398, - "c3": 7.929125902330153, - "c4": 7.124549236126409, - "c5": 8.173766340593177, - "c6": 8.062256060029487, - "c7": 7.3618052732445705 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054093, + "c3": 9.801202034211746, + "c4": 7.8409616273694, + "c5": 5.8807212205270405, + "c6": 3.9204808136846934, + "c7": 1.9602404068423467 }, "rgb": [77, 76, 132] }, @@ -287124,23 +287124,23 @@ "year": 1787, "resistanceReported": true, "duration": 23846400, - "curveSeeds": { - "c1": -8.42860440534464, - "c2": -9.473008149971246, - "c3": 32.94201096857651, - "c4": -24.658243437785796, - "c5": 2.2457256310124194, - "c6": 1.2789995931233307, - "c7": 1.8864442218554487 + "points": { + "c1": 31.76958965871789, + "c2": -1.514190520920053, + "c3": -4.654023374636303, + "c4": -5.334920164821007, + "c5": 17.615789316397432, + "c6": 34.83011109532195, + "c7": -16.907315815804928 }, - "vertexSeeds": { - "c1": 6.900138315165374, - "c2": 6.930776304972356, - "c3": 6.931948132657223, - "c4": 6.875596840873149, - "c5": 6.910516389574116, - "c6": 6.78569987986305, - "c7": 6.802913798773269 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447987, + "c3": 8.321775312066602, + "c4": 6.65742024965327, + "c5": 4.993065187239935, + "c6": 3.328710124826601, + "c7": 1.6643550624133339 }, "rgb": [58, 15, 49] }, @@ -287151,23 +287151,23 @@ "year": 1787, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 29.478091305873875, - "c2": 8.92299390587629, - "c3": 4.60596585546012, - "c4": -1.3654105304592505, - "c5": -18.18976127026656, - "c6": -31.168801636460593, - "c7": -26.682354910800132 + "points": { + "c1": 22.942993360571855, + "c2": -22.80014788973051, + "c3": 16.439305012476744, + "c4": -27.55193216499405, + "c5": -26.639321504050763, + "c6": 22.31878943438676, + "c7": 18.508764052333 }, - "vertexSeeds": { - "c1": 7.0132120962916655, - "c2": 7.0572101824949, - "c3": 7.02302065832807, - "c4": 7.000906286509079, - "c5": 7.023084893227955, - "c6": 7.058581956508316, - "c7": 7.053145358782694 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.12482662968098, + "c3": 8.437355524734128, + "c4": 6.749884419787274, + "c5": 5.062413314840557, + "c6": 3.3749422098937045, + "c7": 1.6874711049468523 }, "rgb": [222, 0, 59] }, @@ -287178,23 +287178,23 @@ "year": 1787, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 19.433981249871458, - "c2": 14.59874086025944, - "c3": 17.059311434049214, - "c4": -31.022109446624338, - "c5": -0.2630276133500047, - "c6": -29.229214250343343, - "c7": -31.091642843442305 + "points": { + "c1": -2.8700570912039893, + "c2": 29.268323825419827, + "c3": -18.772504786610924, + "c4": -27.04196805991785, + "c5": 28.13296217007921, + "c6": 5.620707087596443, + "c7": -16.365505950263834 }, - "vertexSeeds": { - "c1": 6.144620877297996, - "c2": 6.108385477835553, - "c3": 6.008689700272604, - "c4": 5.935004249877426, - "c5": 6.078570929096141, - "c6": 5.858264624355589, - "c7": 6.197310832800233 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911234, + "c3": 7.420249653259362, + "c4": 5.936199722607489, + "c5": 4.452149791955617, + "c6": 2.9680998613037444, + "c7": 1.4840499306518722 }, "rgb": [222, 0, 59] }, @@ -287205,23 +287205,23 @@ "year": 1787, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -6.3455303813803, - "c2": 22.222859343785956, - "c3": -33.103541640521115, - "c4": 2.5395125299894232, - "c5": 30.65308291030596, - "c6": 26.7454495032232, - "c7": 2.85744066129336 + "points": { + "c1": 15.024717937040286, + "c2": 0.6259015890123578, + "c3": 31.380012874857464, + "c4": -11.671383466907379, + "c5": 13.998436217649711, + "c6": -30.157277149695883, + "c7": 19.489054318853142 }, - "vertexSeeds": { - "c1": 5.638793385104901, - "c2": 5.850897789540257, - "c3": 5.9882664014607165, - "c4": 5.648792438116447, - "c5": 5.356785709247442, - "c6": 5.636298993914635, - "c7": 5.854098413718423 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911234, + "c3": 7.420249653259362, + "c4": 5.936199722607489, + "c5": 4.452149791955617, + "c6": 2.9680998613037444, + "c7": 1.4840499306518722 }, "rgb": [238, 201, 159] }, @@ -287232,23 +287232,23 @@ "year": 1787, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 34.48101769099476, - "c2": -18.821984186482496, - "c3": 19.207652872612577, - "c4": -31.24776904242006, - "c5": -11.645227265880408, - "c6": 0.5334505325705265, - "c7": 26.846349750053122 + "points": { + "c1": -18.340033781238642, + "c2": 3.833397394725708, + "c3": -15.987511460587719, + "c4": 7.071075783453239, + "c5": -15.5143005299544, + "c6": 8.477407705218681, + "c7": 8.420650549682954 }, - "vertexSeeds": { - "c1": 10.850211400318264, - "c2": 10.45944720888952, - "c3": 10.516130799848886, - "c4": 10.372188577110096, - "c5": 10.165316187816483, - "c6": 11.008541474834372, - "c7": 10.913871897129772 + "offsets": { + "c1": 18.41423948220065, + "c2": 15.783633841886253, + "c3": 13.1530282015719, + "c4": 10.522422561257503, + "c5": 7.891816920943147, + "c6": 5.261211280628752, + "c7": 2.630605640314355 }, "rgb": [58, 15, 49] }, @@ -287259,23 +287259,23 @@ "year": 1787, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 21.367001300386264, - "c2": 5.266655259630369, - "c3": 2.1054438657469916, - "c4": -17.459191929879754, - "c5": -34.46422332615496, - "c6": -10.213100783203618, - "c7": -4.337736980994993 + "points": { + "c1": -0.07296539805378899, + "c2": 5.098569564659627, + "c3": 37.55385688805168, + "c4": 26.33755478246472, + "c5": -8.233392346596624, + "c6": 37.02563635156221, + "c7": -25.41147798565693 }, - "vertexSeeds": { - "c1": 0.2400703429528528, - "c2": 0.24640260086270127, - "c3": 0.2515096831622429, - "c4": 0.24081523685254666, - "c5": 0.2352444794119045, - "c6": 0.23482132007871084, - "c7": 0.23495623816464367 + "offsets": { + "c1": 0.45307443365695793, + "c2": 0.388349514563107, + "c3": 0.32362459546925615, + "c4": 0.2588996763754044, + "c5": 0.1941747572815535, + "c6": 0.12944983818770261, + "c7": 0.0647249190938509 }, "rgb": [86, 146, 138] }, @@ -287286,23 +287286,23 @@ "year": 1787, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": 33.723320145703774, - "c2": 55.32896646190785, - "c3": 9.441659512885543, - "c4": -33.801049360412634, - "c5": 5.2531954126667415, - "c6": 15.17226456997664, - "c7": 49.195159024940416 + "points": { + "c1": -9.298743454684697, + "c2": -23.883081906478452, + "c3": -0.7119110959176354, + "c4": 26.45114382000981, + "c5": 49.94665974131602, + "c6": 19.791533954579755, + "c7": 19.363468178763036 }, - "vertexSeeds": { - "c1": 6.3875664539819335, - "c2": 6.448094122602718, - "c3": 6.752823851790609, - "c4": 6.5073491390077, - "c5": 6.4129053500004565, - "c6": 6.704047966158632, - "c7": 6.451192710642892 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.206195099398988, + "c4": 6.564956079519195, + "c5": 4.923717059639402, + "c6": 3.282478039759587, + "c7": 1.6412390198797935 }, "rgb": [238, 201, 159] }, @@ -287313,23 +287313,23 @@ "year": 1786, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 22.499522824452185, - "c2": 26.090836056328797, - "c3": 28.039106519542372, - "c4": -0.6714441913731193, - "c5": -13.368096237150839, - "c6": -13.579181790192214, - "c7": -28.293356784412843 + "points": { + "c1": -4.37388114258032, + "c2": -6.853806165862899, + "c3": 15.028607933186969, + "c4": 28.730557375818606, + "c5": 11.412952537188971, + "c6": 1.9738202487130678, + "c7": 21.103776146130897 }, - "vertexSeeds": { - "c1": 7.588001388716542, - "c2": 7.911002543775908, - "c3": 7.668795778121116, - "c4": 7.370230463144522, - "c5": 7.799675096336443, - "c6": 7.4995059266173945, - "c7": 7.840493027975124 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.48404993065187, + "c3": 9.57004160887656, + "c4": 7.6560332871012475, + "c5": 5.742024965325935, + "c6": 3.8280166435506238, + "c7": 1.9140083217753119 }, "rgb": [77, 76, 132] }, @@ -287340,23 +287340,23 @@ "year": 1787, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -35.32961351895788, - "c2": -22.663696744978, - "c3": -12.5599470749919, - "c4": 3.9772663028385367, - "c5": 11.052054515581318, - "c6": -16.874503648777036, - "c7": 13.079932345365904 + "points": { + "c1": -7.744992671569673, + "c2": -27.964085404961267, + "c3": 15.668348092826278, + "c4": 5.618928633393473, + "c5": 36.45760520341159, + "c6": -5.327703991169855, + "c7": -29.756499293087266 }, - "vertexSeeds": { - "c1": 7.789593202595282, - "c2": 7.898592877404263, - "c3": 7.792383376766862, - "c4": 7.912324016241644, - "c5": 7.871013463452067, - "c6": 7.792717697974442, - "c7": 7.899659850850403 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490997, + "c3": 9.477577438742511, + "c4": 7.582061950994026, + "c5": 5.68654646324554, + "c6": 3.7910309754969713, + "c7": 1.8955154877484857 }, "rgb": [86, 146, 138] }, @@ -287367,23 +287367,23 @@ "year": 1788, "resistanceReported": false, "duration": 64108800, - "curveSeeds": { - "c1": -63.96300515850262, - "c2": -59.13417016958931, - "c3": 41.95354973182397, - "c4": 70.55157625437649, - "c5": 63.61757416652928, - "c6": -74.67261433886148, - "c7": 31.273615510856743 + "points": { + "c1": 28.14616119363515, + "c2": 63.51845955945079, + "c3": -57.073646375061074, + "c4": 31.876239261760915, + "c5": 24.828679733377328, + "c6": 29.743498648383678, + "c7": 48.39412360255248 }, - "vertexSeeds": { - "c1": 6.334286636213969, - "c2": 6.583356810450852, - "c3": 6.4169824198616805, - "c4": 6.0621382139190265, - "c5": 6.447946874072384, - "c6": 6.489812995071066, - "c7": 6.26237216985289 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715663, + "c3": 7.88257050392973, + "c4": 6.306056403143775, + "c5": 4.729542302357843, + "c6": 3.1530282015718876, + "c7": 1.5765141007859549 }, "rgb": [86, 146, 138] }, @@ -287394,23 +287394,23 @@ "year": 1787, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 3.7482215937659404, - "c2": 21.98849932201277, - "c3": 21.655089478208666, - "c4": -17.34973770245752, - "c5": -30.165807894671794, - "c6": 10.510174805547983, - "c7": -40.587794156450926 + "points": { + "c1": 28.80443256011118, + "c2": -12.463591447287065, + "c3": 33.684989326369106, + "c4": -17.11659189263199, + "c5": 19.689981680225927, + "c6": 23.43670643956031, + "c7": -14.678157710273709 }, - "vertexSeeds": { - "c1": 7.391269385229535, - "c2": 7.338015706711707, - "c3": 7.189510270401054, - "c4": 7.277163437327544, - "c5": 7.33397127349932, - "c6": 7.181780418709128, - "c7": 7.46948220459633 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525665, + "c3": 8.922792417938062, + "c4": 7.138233934350459, + "c5": 5.353675450762855, + "c6": 3.569116967175207, + "c7": 1.7845584835876036 }, "rgb": [86, 146, 138] }, @@ -287421,23 +287421,23 @@ "year": 1787, "resistanceReported": false, "duration": 49766400, - "curveSeeds": { - "c1": -46.83686870742763, - "c2": -12.344269510093568, - "c3": 33.01188253612628, - "c4": -64.23445651022092, - "c5": 49.37862484832948, - "c6": 11.169270638611238, - "c7": -11.217083773689517 + "points": { + "c1": 18.66203317706072, + "c2": 29.762449781946756, + "c3": -65.38367255433829, + "c4": 38.86420294850035, + "c5": 7.61284309710301, + "c6": 41.01656417226616, + "c7": 3.016367964302347 }, - "vertexSeeds": { - "c1": 6.732108267629678, - "c2": 6.711855832143972, - "c3": 6.714800403845554, - "c4": 7.078536411798931, - "c5": 7.11720876948595, - "c6": 6.907808052025415, - "c7": 6.757962175417055 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083213, + "c3": 8.668515950069358, + "c4": 6.9348127600554825, + "c5": 5.201109570041607, + "c6": 3.4674063800277297, + "c7": 1.733703190013876 }, "rgb": [58, 15, 49] }, @@ -287448,23 +287448,23 @@ "year": 1787, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 22.929378392368882, - "c2": -26.4026984251785, - "c3": -2.118101756983556, - "c4": -21.088891929012394, - "c5": 0.8336850724865528, - "c6": 2.0843592397026853, - "c7": -0.1145932323926857 + "points": { + "c1": -11.756420431081366, + "c2": -32.07418912543433, + "c3": 18.840156413001303, + "c4": 9.21687008890735, + "c5": 12.68901288664351, + "c6": -3.5924408540243995, + "c7": -29.212802723443343 }, - "vertexSeeds": { - "c1": 13.28575754439267, - "c2": 13.14259852719316, - "c3": 12.790506397103034, - "c4": 13.504246867483907, - "c5": 13.208061426384427, - "c6": 12.996953118881653, - "c7": 12.810215903190146 + "offsets": { + "c1": 22.815533980582526, + "c2": 19.556171983356446, + "c3": 16.296809986130363, + "c4": 13.037447988904326, + "c5": 9.778085991678244, + "c6": 6.518723994452163, + "c7": 3.2593619972260814 }, "rgb": [86, 146, 138] }, @@ -287475,23 +287475,23 @@ "year": 1786, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 12.234067580322147, - "c2": 12.271768446125435, - "c3": 18.45611298845533, - "c4": -23.649513366341527, - "c5": 0.3561712914680122, - "c6": -4.904891875318139, - "c7": -0.20391592844465833 + "points": { + "c1": -15.3634301741299, + "c2": -18.833526958825296, + "c3": 22.31476852109887, + "c4": -12.055046455671324, + "c5": -2.218395803592294, + "c6": -19.596542025920904, + "c7": 0.4614325402782633 }, - "vertexSeeds": { - "c1": 5.261218244219491, - "c2": 5.239920448351473, - "c3": 5.14075554555586, - "c4": 5.162423728477842, - "c5": 5.251367700532153, - "c6": 5.250816865001037, - "c7": 5.262502274842073 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.5728155339805685, + "c3": 6.3106796116505075, + "c4": 5.048543689320396, + "c5": 3.7864077669902843, + "c6": 2.5242718446602233, + "c7": 1.2621359223301116 }, "rgb": [58, 15, 49] }, @@ -287502,23 +287502,23 @@ "year": 1787, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 25.665051826716322, - "c2": -21.65422253917074, - "c3": 18.93830862454937, - "c4": 23.615665053429645, - "c5": 37.261802675827646, - "c6": -13.753171724644904, - "c7": -0.4971618277409888 + "points": { + "c1": -6.554989233607884, + "c2": 29.32825574505099, + "c3": 9.758208329069788, + "c4": 10.931699198461644, + "c5": 35.02757957120965, + "c6": 15.365366616512041, + "c7": 11.75488542612041 }, - "vertexSeeds": { - "c1": 5.75315749301943, - "c2": 5.807230685061045, - "c3": 5.805263101820674, - "c4": 6.157812488351338, - "c5": 5.782356159863912, - "c6": 5.616408832366828, - "c7": 6.39587951579431 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353673, + "c3": 7.674526121128059, + "c4": 6.139620896902445, + "c5": 4.60471567267683, + "c6": 3.0698104484512156, + "c7": 1.5349052242256143 }, "rgb": [86, 146, 138] }, @@ -287529,23 +287529,23 @@ "year": 1787, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 17.897427775109435, - "c2": -22.81766600183001, - "c3": -50.138744041171826, - "c4": 40.145842684271614, - "c5": 10.623426899979407, - "c6": -10.943505920246778, - "c7": -52.23631883785616 + "points": { + "c1": -14.128749008576833, + "c2": 26.006008041391013, + "c3": -24.503074604343606, + "c4": -44.919472431090135, + "c5": 15.339096977746692, + "c6": -1.1840523940552075, + "c7": 47.94180576092218 }, - "vertexSeeds": { - "c1": 3.330819176412775, - "c2": 3.6451892346857475, - "c3": 3.5392645203447404, - "c4": 3.7789435980374777, - "c5": 3.459496598260266, - "c6": 3.6410846682712257, - "c7": 3.6700961406930057 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.52011095700416, + "c3": 4.600092464170132, + "c4": 3.680073971336104, + "c5": 2.7600554785020837, + "c6": 1.8400369856680556, + "c7": 0.9200184928340278 }, "rgb": [222, 0, 59] }, @@ -287556,23 +287556,23 @@ "year": 1787, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 20.562459977839367, - "c2": -19.554880671220783, - "c3": -32.964334833908204, - "c4": -11.927659098419156, - "c5": -37.24919976939657, - "c6": -3.379258524756338, - "c7": -39.96326953674824 + "points": { + "c1": 28.551531785356275, + "c2": -0.26388672005044356, + "c3": -36.87224026695824, + "c4": 45.80767873094675, + "c5": -36.938364109389966, + "c6": 29.69575171149981, + "c7": -30.720470827858474 }, - "vertexSeeds": { - "c1": 8.752010462843874, - "c2": 8.475899866360168, - "c3": 8.466433685403539, - "c4": 8.529780320638855, - "c5": 8.511569537377847, - "c6": 8.35116280167442, - "c7": 8.275912004019295 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220527, + "c3": 10.471567267683774, + "c4": 8.377253814147018, + "c5": 6.282940360610263, + "c6": 4.188626907073509, + "c7": 2.0943134535367545 }, "rgb": [86, 146, 138] }, @@ -287583,23 +287583,23 @@ "year": 1788, "resistanceReported": false, "duration": 49248000, - "curveSeeds": { - "c1": -59.6969337782798, - "c2": -39.879792954925996, - "c3": 51.51946639783624, - "c4": 10.51861175040034, - "c5": -46.78149562071588, - "c6": 7.343774399365188, - "c7": 56.82755843632326 + "points": { + "c1": 4.04381101930602, + "c2": 41.967846443732626, + "c3": -56.023255910001396, + "c4": 51.52744701856126, + "c5": -61.544018482841025, + "c6": 30.919479094017262, + "c7": 5.212367917713095 }, - "vertexSeeds": { - "c1": 2.9677319582563397, - "c2": 2.9847284257482323, - "c3": 3.0523051758991273, - "c4": 3.020307935520476, - "c5": 3.0450155113240345, - "c6": 2.86492256531195, - "c7": 2.8238387114448575 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515948, + "c3": 3.7447988904299545, + "c4": 2.995839112343968, + "c5": 2.246879334257974, + "c6": 1.4979195561719805, + "c7": 0.7489597780859937 }, "rgb": [58, 15, 49] }, @@ -287610,23 +287610,23 @@ "year": 1787, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 20.641443558989145, - "c2": -5.2774180083887, - "c3": -23.680293615053962, - "c4": -34.146405357740335, - "c5": -14.131119702945373, - "c6": 30.932513584031682, - "c7": -18.49632483241742 + "points": { + "c1": 3.2765496665964093, + "c2": -38.13463171274202, + "c3": 8.283853411457962, + "c4": -36.52652898985654, + "c5": 3.840149442973683, + "c6": 22.894297679214773, + "c7": 35.680673081646376 }, - "vertexSeeds": { - "c1": 4.750124214070954, - "c2": 4.781984810412015, - "c3": 4.846707402883544, - "c4": 4.932092408935851, - "c5": 4.721446513578614, - "c6": 4.767717448524694, - "c7": 5.006532632671736 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [86, 146, 138] }, @@ -287637,23 +287637,23 @@ "year": 1787, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 34.222894221790554, - "c2": -35.53819614981052, - "c3": 14.243940340613307, - "c4": -41.00045284542145, - "c5": -19.95322086144154, - "c6": 32.36849729185694, - "c7": -29.681083083583182 + "points": { + "c1": 31.801337292633676, + "c2": -20.743368695211835, + "c3": -8.691542242454908, + "c4": -12.998249735935914, + "c5": -1.2823924404434734, + "c6": 36.32640684606403, + "c7": 41.40691274729906 }, - "vertexSeeds": { - "c1": 7.939250287550521, - "c2": 8.037456826087181, - "c3": 7.628265627576738, - "c4": 7.484844152768291, - "c5": 7.664873565275099, - "c6": 8.114598409740069, - "c7": 7.993619503495138 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.67822468793342, + "c3": 9.731853906611198, + "c4": 7.785483125288953, + "c5": 5.83911234396671, + "c6": 3.892741562644487, + "c7": 1.9463707813222435 }, "rgb": [238, 201, 159] }, @@ -287664,23 +287664,23 @@ "year": 1789, "resistanceReported": false, "duration": 86745600, - "curveSeeds": { - "c1": -10.215864851167467, - "c2": 101.56441850866577, - "c3": 62.340422918924986, - "c4": 77.49733550246592, - "c5": 27.855912781046158, - "c6": -43.823420515441256, - "c7": 5.367680138649803 + "points": { + "c1": 102.73182767868934, + "c2": 4.442069474479169, + "c3": -49.4329661596584, + "c4": 60.10074575390669, + "c5": 52.75278300544403, + "c6": 79.96084473834077, + "c7": -58.98998824816353 }, - "vertexSeeds": { - "c1": 3.0664240965484426, - "c2": 3.603899394791762, - "c3": 2.8167000273730602, - "c4": 3.517925101485955, - "c5": 2.7638342863765377, - "c6": 3.264822264009064, - "c7": 2.8453335057682936 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642163, + "c3": 4.392048081368471, + "c4": 3.5136384650947763, + "c5": 2.6352288488210815, + "c6": 1.7568192325473895, + "c7": 0.8784096162736947 }, "rgb": [86, 146, 138] }, @@ -287691,23 +287691,23 @@ "year": 1787, "resistanceReported": true, "duration": 21686400, - "curveSeeds": { - "c1": 22.808889537509216, - "c2": -12.435384553046426, - "c3": -17.25640762950542, - "c4": 14.544362970738149, - "c5": -14.267836410991446, - "c6": 25.36723595282733, - "c7": 7.459770700295998 + "points": { + "c1": -12.427545705678856, + "c2": -25.29440261230613, + "c3": -34.891778647733524, + "c4": -11.24290155995638, + "c5": -30.807140365407083, + "c6": 31.30974929925094, + "c7": -19.924704574996767 }, - "vertexSeeds": { - "c1": 1.934065868752057, - "c2": 1.952143150498967, - "c3": 1.990542212889343, - "c4": 2.0375750150385112, - "c5": 1.9926207695769307, - "c6": 2.0575784834305986, - "c7": 2.025622095160021 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841877, + "c3": 2.5196486361534887, + "c4": 2.01571890892279, + "c5": 1.5117891816920914, + "c6": 1.0078594544613926, + "c7": 0.5039297272306937 }, "rgb": [86, 146, 138] }, @@ -287718,23 +287718,23 @@ "year": 1786, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 6.4624148217363455, - "c2": -23.58366873191634, - "c3": -0.7637631028366201, - "c4": -6.861504100211089, - "c5": 8.447662226501382, - "c6": -8.587199595375854, - "c7": 1.365179179583162 + "points": { + "c1": -19.817786656976317, + "c2": 7.274567020425398, + "c3": 18.053012226031452, + "c4": -22.497790413404633, + "c5": 8.16029103533587, + "c6": 25.374498737220232, + "c7": 24.730350982769256 }, - "vertexSeeds": { - "c1": 13.605353726165186, - "c2": 14.144543397273225, - "c3": 13.273807084251894, - "c4": 13.992337760510186, - "c5": 13.354226181126686, - "c6": 13.639346561485107, - "c7": 13.172829737392584 + "offsets": { + "c1": 23.656957928802587, + "c2": 20.277392510402237, + "c3": 16.89782709200184, + "c4": 13.51826167360149, + "c5": 10.138696255201097, + "c6": 6.759130836800745, + "c7": 3.379565418400395 }, "rgb": [222, 0, 59] }, @@ -287745,23 +287745,23 @@ "year": 1787, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -16.99015686729171, - "c2": 8.355658862895467, - "c3": -2.1147392524980546, - "c4": -37.1471146561081, - "c5": 8.275310675650545, - "c6": 10.290099256032121, - "c7": 28.057447248073295 + "points": { + "c1": 28.922004374138105, + "c2": 17.107772974579454, + "c3": -10.774735923675479, + "c4": 25.893607759395813, + "c5": 38.1030726131307, + "c6": -2.5385815410281154, + "c7": -20.517366858731812 }, - "vertexSeeds": { - "c1": 5.168929560634753, - "c2": 4.587724281689484, - "c3": 4.546741611144796, - "c4": 4.6686682314321155, - "c5": 5.222174969797127, - "c6": 5.444508774592717, - "c7": 5.328157577743018 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055474, + "c4": 5.547850208044383, + "c5": 4.160887656033285, + "c6": 2.773925104022188, + "c7": 1.386962552011094 }, "rgb": [222, 0, 59] }, @@ -287772,23 +287772,23 @@ "year": 1787, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 9.825675426501732, - "c2": -0.19999680978598633, - "c3": -20.30249492630682, - "c4": 20.191780781422125, - "c5": -9.879649929226641, - "c6": 27.547639992218947, - "c7": 25.486725924607214 + "points": { + "c1": 10.06488847972745, + "c2": 29.339558593491326, + "c3": -30.34642707283392, + "c4": -0.02731344402771896, + "c5": -34.06881097001874, + "c6": -9.937865673036164, + "c7": -9.684932660488645 }, - "vertexSeeds": { - "c1": 2.6068118472300164, - "c2": 2.9452830494961066, - "c3": 2.979123440006496, - "c4": 2.680754251173218, - "c5": 2.9668371100414372, - "c6": 3.0045192752184433, - "c7": 2.758311059102702 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314841, + "c3": 3.6292186777623687, + "c4": 2.9033749422098962, + "c5": 2.1775312066574237, + "c6": 1.451687471104945, + "c7": 0.7258437355524725 }, "rgb": [222, 0, 59] }, @@ -287799,23 +287799,23 @@ "year": 1787, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -3.4998771612022104, - "c2": 2.489610539337008, - "c3": -26.27346971629536, - "c4": 21.66341829979823, - "c5": -2.099341901285918, - "c6": 15.077749183314253, - "c7": 23.01241247170728 + "points": { + "c1": -24.453627684235816, + "c2": 4.838374456785004, + "c3": -9.117437228660307, + "c4": 3.361266549380254, + "c5": 31.28222697654681, + "c6": -15.738869202466201, + "c7": -11.777058868005877 }, - "vertexSeeds": { - "c1": 1.3512459562013583, - "c2": 1.3671758445333488, - "c3": 1.349459495060526, - "c4": 1.3716178191851105, - "c5": 1.3706552807114747, - "c6": 1.4086657933657796, - "c7": 1.3756779574964344 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.052704576976423, + "c3": 1.7105871474803538, + "c4": 1.3684697179842762, + "c5": 1.0263522884882073, + "c6": 0.6842348589921381, + "c7": 0.34211742949606905 }, "rgb": [86, 146, 138] }, @@ -287826,23 +287826,23 @@ "year": 1787, "resistanceReported": false, "duration": 41644800, - "curveSeeds": { - "c1": 21.825235386264907, - "c2": 37.08598034541771, - "c3": -28.140913422165085, - "c4": 30.62962485810317, - "c5": 13.739910563424473, - "c6": -22.544398206907523, - "c7": -39.87953222877419 + "points": { + "c1": -19.505495423253926, + "c2": -48.354450687997655, + "c3": -10.24553265423291, + "c4": 20.746016684966264, + "c5": 44.52533018781794, + "c6": 29.004074803493126, + "c7": -11.669747096436978 }, - "vertexSeeds": { - "c1": 6.304980885800691, - "c2": 5.910252448742634, - "c3": 6.169937179412525, - "c4": 6.208275170620036, - "c5": 5.836518464046268, - "c6": 5.957165233441473, - "c7": 5.975074694962963 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [238, 201, 159] }, @@ -287853,23 +287853,23 @@ "year": 1787, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -24.881825724418103, - "c2": 35.81802559675118, - "c3": 24.542297747763648, - "c4": 35.259038948192945, - "c5": -36.33581026726379, - "c6": 2.517002800032323, - "c7": -22.439046666162128 + "points": { + "c1": 22.697756834670564, + "c2": -25.469623840738553, + "c3": -24.20790978780031, + "c4": 37.54373757227771, + "c5": -18.6202333191075, + "c6": 36.0144511550664, + "c7": -10.467550296553135 }, - "vertexSeeds": { - "c1": 9.785748137964916, - "c2": 9.718990307421128, - "c3": 9.76596407643934, - "c4": 9.738820289674509, - "c5": 9.700372535246037, - "c6": 9.795924942310663, - "c7": 9.744494905391877 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.14701803051315, + "c3": 11.789181692094354, + "c4": 9.431345353675466, + "c5": 7.073509015256575, + "c6": 4.715672676837685, + "c7": 2.3578363384188896 }, "rgb": [86, 146, 138] }, @@ -287880,23 +287880,23 @@ "year": 1787, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 25.58976446971548, - "c2": 14.86267659658925, - "c3": 7.326808621826334, - "c4": 18.56788080112865, - "c5": -16.46098799633743, - "c6": -18.888524702703144, - "c7": 11.603970428460823 + "points": { + "c1": -7.42523953021761, + "c2": -2.2664459416199456, + "c3": 2.0695411284070744, + "c4": 6.527917530892605, + "c5": 15.405059665786172, + "c6": -1.0407920628273004, + "c7": 17.210635173046523 }, - "vertexSeeds": { - "c1": 5.798894051488168, - "c2": 5.682231754410125, - "c3": 5.871001425819742, - "c4": 5.985445681715937, - "c5": 5.931823887544045, - "c6": 5.7846397623232875, - "c7": 5.81701017333809 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710123, + "c3": 7.3046694405917645, + "c4": 5.84373555247343, + "c5": 4.382801664355072, + "c6": 2.921867776236715, + "c7": 1.4609338881183576 }, "rgb": [77, 76, 132] }, @@ -287907,23 +287907,23 @@ "year": 1787, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 28.86473290471303, - "c2": -33.84736930157092, - "c3": 9.48300999203331, - "c4": -29.19528789419096, - "c5": 20.54255254989473, - "c6": 8.860678499593163, - "c7": -7.245582529244221 + "points": { + "c1": 7.44060984403189, + "c2": -31.695168564634216, + "c3": 15.970696848248195, + "c4": 12.137918601670982, + "c5": -23.855632897773692, + "c6": -19.55765707970377, + "c7": -10.84071597215273 }, - "vertexSeeds": { - "c1": 2.2215502855561238, - "c2": 2.263693395912097, - "c3": 2.218296691542235, - "c4": 2.2696731254558244, - "c5": 2.2719491923905766, - "c6": 2.2378409460042903, - "c7": 2.2433819620422266 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826634, + "c3": 2.7739251040221893, + "c4": 2.219140083217756, + "c5": 1.6643550624133117, + "c6": 1.109570041608878, + "c7": 0.5547850208044335 }, "rgb": [222, 0, 59] }, @@ -287934,23 +287934,23 @@ "year": 1786, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": -5.8854609309316075, - "c2": -13.876718693986094, - "c3": -3.10321939793479, - "c4": 12.564551789401975, - "c5": 19.133126305592796, - "c6": 1.3791801711541716, - "c7": 21.17840265579691 + "points": { + "c1": 11.776375706294644, + "c2": -13.563321384305336, + "c3": 10.215420232522362, + "c4": 22.873778409766544, + "c5": 23.22130595639417, + "c6": -14.305624496504521, + "c7": -24.335659690481545 }, - "vertexSeeds": { - "c1": 4.861329612476879, - "c2": 4.561140553809559, - "c3": 4.6427477181608365, - "c4": 4.738686012236926, - "c5": 4.444806421072144, - "c6": 4.767943944793185, - "c7": 4.518696810243578 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.01803051317614, + "c3": 5.848358760980122, + "c4": 4.6786870087840935, + "c5": 3.5090152565880746, + "c6": 2.3393435043920467, + "c7": 1.1696717521960187 }, "rgb": [58, 15, 49] }, @@ -287961,23 +287961,23 @@ "year": 1787, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": 46.92953713616674, - "c2": -36.611878030831946, - "c3": 6.512540622277207, - "c4": -30.4407514339, - "c5": -41.66062556465529, - "c6": -2.314608645864766, - "c7": 38.65969078977595 + "points": { + "c1": 41.794174459447504, + "c2": -9.668247194495173, + "c3": -26.599850111913412, + "c4": 44.23438102111963, + "c5": 51.81613925875119, + "c6": -23.20052147178545, + "c7": 20.44773997898899 }, - "vertexSeeds": { - "c1": 6.053609019515017, - "c2": 5.6123257159674615, - "c3": 7.011779925383535, - "c4": 6.570276347421448, - "c5": 6.557364391378369, - "c6": 6.051499783471431, - "c7": 6.707617758739875 + "offsets": { + "c1": 12.653721682847896, + "c2": 10.84604715672677, + "c3": 9.038372630605638, + "c4": 7.230698104484512, + "c5": 5.42302357836338, + "c6": 3.6153490522422533, + "c7": 1.8076745261211267 }, "rgb": [222, 0, 59] }, @@ -287988,23 +287988,23 @@ "year": 1787, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 5.005331232613727, - "c2": 28.330700282708605, - "c3": -11.732706842513032, - "c4": 19.924916914283536, - "c5": -6.647862002206754, - "c6": -2.6920835851027185, - "c7": -22.637299161448347 + "points": { + "c1": 26.491579157711165, + "c2": -12.371113314805296, + "c3": -3.935610123401162, + "c4": 17.51424514239644, + "c5": 22.40442544714074, + "c6": 21.873366607085472, + "c7": 7.397418046522361 }, - "vertexSeeds": { - "c1": 2.052108489145243, - "c2": 1.9479255460721676, - "c3": 1.9967910140085063, - "c4": 1.9349179785174098, - "c5": 1.9914520841172303, - "c6": 2.059367239829961, - "c7": 2.048972496019822 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.9958391123439685, + "c3": 2.49653259361997, + "c4": 1.9972260748959771, + "c5": 1.4979195561719842, + "c6": 0.9986130374479855, + "c7": 0.49930651872399273 }, "rgb": [238, 201, 159] }, @@ -288015,23 +288015,23 @@ "year": 1787, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": -23.009292694033903, - "c2": 11.316927324064608, - "c3": 14.979624545971511, - "c4": -10.680234897519043, - "c5": 26.623737892041483, - "c6": -8.948395177983059, - "c7": -23.41630149736742 + "points": { + "c1": 48.74229259916404, + "c2": 22.521292259446433, + "c3": 5.44131447245438, + "c4": 8.826418156509703, + "c5": -22.862948525277734, + "c6": 7.330791513327085, + "c7": 23.405305844036242 }, - "vertexSeeds": { - "c1": 9.091856980197337, - "c2": 9.175151392149576, - "c3": 9.251860322901251, - "c4": 9.491731060544545, - "c5": 9.049007428374454, - "c6": 9.374499106207681, - "c7": 9.025292452769541 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909843, + "c3": 11.442441054091551, + "c4": 9.153952843273236, + "c5": 6.865464632454922, + "c6": 4.576976421636628, + "c7": 2.288488210818314 }, "rgb": [238, 201, 159] }, @@ -288042,23 +288042,23 @@ "year": 1787, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 8.617633950479515, - "c2": -9.675754798720732, - "c3": -1.0143368692539454, - "c4": 2.0475468531745307, - "c5": -8.961558511239485, - "c6": 0.2538246817006353, - "c7": 19.294399464752438 + "points": { + "c1": -26.457225808440313, + "c2": -22.471249543882635, + "c3": -1.1272354322525828, + "c4": 7.988978052322089, + "c5": 4.319545925716156, + "c6": -1.395041474858843, + "c7": -17.47007619230646 }, - "vertexSeeds": { - "c1": 6.825193910065122, - "c2": 7.356894100194655, - "c3": 7.345327547164712, - "c4": 6.881409124169873, - "c5": 7.118388701980921, - "c6": 7.154334114742819, - "c7": 6.901682582152501 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364779, + "c3": 8.830328247803967, + "c4": 7.064262598243178, + "c5": 5.298196948682389, + "c6": 3.5321312991216, + "c7": 1.7660656495607892 }, "rgb": [86, 146, 138] }, @@ -288069,23 +288069,23 @@ "year": 1787, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -10.569395603948088, - "c2": -4.367725296451937, - "c3": 9.415571392943455, - "c4": -16.608321578166453, - "c5": 13.43208414648111, - "c6": -2.435474166628026, - "c7": 35.62682979035051 + "points": { + "c1": -15.506099855507607, + "c2": 32.57509536396691, + "c3": 3.598581032331616, + "c4": -13.05198194550784, + "c5": -3.427582121801585, + "c6": -1.1814498196344587, + "c7": 17.07330708591114 }, - "vertexSeeds": { - "c1": 5.208701535408497, - "c2": 5.156520117585618, - "c3": 5.3036627654569495, - "c4": 5.170646196057572, - "c5": 4.959634237312678, - "c6": 5.330610792098292, - "c7": 5.071031176167778 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318083, + "c4": 5.141007859454471, + "c5": 3.8557558945908363, + "c6": 2.5705039297272245, + "c7": 1.2852519648636123 }, "rgb": [222, 0, 59] }, @@ -288096,23 +288096,23 @@ "year": 1787, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 41.68183526460922, - "c2": 17.875942540924406, - "c3": 36.34398673510424, - "c4": 3.4569597977810034, - "c5": 35.34452733103096, - "c6": 19.406729750639002, - "c7": 10.113308500089687 + "points": { + "c1": 18.238441297300454, + "c2": 11.3764588311521, + "c3": -33.71423187816343, + "c4": -26.072951160694686, + "c5": 42.562700899563495, + "c6": -15.799702498028207, + "c7": 14.510853632962714 }, - "vertexSeeds": { - "c1": 6.556954214120787, - "c2": 6.659574741890835, - "c3": 6.068073039258124, - "c4": 6.195174489500484, - "c5": 7.015528462381754, - "c6": 6.354841275544188, - "c7": 6.227656743220325 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [238, 201, 159] }, @@ -288123,23 +288123,23 @@ "year": 1787, "resistanceReported": false, "duration": 42422400, - "curveSeeds": { - "c1": 4.180260571324872, - "c2": 40.55194262210835, - "c3": -30.47638438240328, - "c4": 35.70352054798919, - "c5": -40.58289689269276, - "c6": -17.682721812594075, - "c7": 16.839571329740885 + "points": { + "c1": -28.5448653635944, + "c2": -20.754824327993035, + "c3": -6.474284058567704, + "c4": 24.057599289209996, + "c5": 29.78883309555423, + "c6": 33.887809945204175, + "c7": 40.81330405742788 }, - "vertexSeeds": { - "c1": 2.270033892805713, - "c2": 2.5493811403189763, - "c3": 5.495730123643152, - "c4": 4.914034984414316, - "c5": 2.8931209502889454, - "c6": 5.945396270366793, - "c7": 4.791438682561023 + "offsets": { + "c1": 10, + "c2": 8.571428571428573, + "c3": 7.142857142857143, + "c4": 5.7142857142857135, + "c5": 4.2857142857142865, + "c6": 2.8571428571428568, + "c7": 1.428571428571428 }, "rgb": [222, 0, 59] }, @@ -288150,23 +288150,23 @@ "year": 1787, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 0.39150014621858276, - "c2": -16.339424265344558, - "c3": 23.285407485137448, - "c4": -27.39305760381832, - "c5": 20.609242145007272, - "c6": 38.3642160979028, - "c7": 16.66289789765667 + "points": { + "c1": -31.25202619906424, + "c2": 36.63082844304621, + "c3": -17.522366930173092, + "c4": -19.65526980519972, + "c5": 15.48970834231715, + "c6": 36.3246377922989, + "c7": 26.441153266461072 }, - "vertexSeeds": { - "c1": 5.113130238374445, - "c2": 5.051902710260647, - "c3": 5.4879866169198355, - "c4": 5.487192781857349, - "c5": 5.471916656539545, - "c6": 5.185245350691709, - "c7": 5.291402587805688 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503464, + "c3": 6.611188164586216, + "c4": 5.288950531668969, + "c5": 3.9667128987517417, + "c6": 2.6444752658344948, + "c7": 1.3222376329172474 }, "rgb": [77, 76, 132] }, @@ -288177,23 +288177,23 @@ "year": 1787, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -21.40391273425891, - "c2": 12.411394466160974, - "c3": -1.1168662538605112, - "c4": 5.045243694848853, - "c5": 7.660438641820694, - "c6": 4.236953693229232, - "c7": -5.462733357348402 + "points": { + "c1": 27.03218648064308, + "c2": 17.75543642900165, + "c3": -3.4300152577293197, + "c4": -14.728147558288143, + "c5": 18.916869774983542, + "c6": -27.833495630095953, + "c7": 18.224550514650016 }, - "vertexSeeds": { - "c1": 5.48587494562867, - "c2": 5.391609784791919, - "c3": 5.218684676644381, - "c4": 5.293269173297361, - "c5": 5.485389928897562, - "c6": 5.203663425948816, - "c7": 5.267510427364842 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463239, + "c3": 6.588072122052714, + "c4": 5.270457697642167, + "c5": 3.9528432732316197, + "c6": 2.6352288488210727, + "c7": 1.3176144244105472 }, "rgb": [86, 146, 138] }, @@ -288204,23 +288204,23 @@ "year": 1787, "resistanceReported": false, "duration": 44496000, - "curveSeeds": { - "c1": -26.121745680831367, - "c2": 53.55776653060987, - "c3": 4.287296271588865, - "c4": -11.042137713627795, - "c5": 15.522878370953904, - "c6": -34.71491041588111, - "c7": -31.70055517797417 + "points": { + "c1": 31.87008800484473, + "c2": 22.244946066832426, + "c3": 17.393275197866956, + "c4": -26.045997491645558, + "c5": 58.07511301573227, + "c6": 42.070991221446405, + "c7": 55.76463143234231 }, - "vertexSeeds": { - "c1": 5.686583544989803, - "c2": 5.853232449471962, - "c3": 5.549978728283206, - "c4": 5.666878586899006, - "c5": 6.269795594378909, - "c6": 6.728166594270698, - "c7": 6.6569092249004305 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198338, + "c3": 8.159963014331945, + "c4": 6.527970411465558, + "c5": 4.895977808599171, + "c6": 3.263985205732777, + "c7": 1.63199260286639 }, "rgb": [222, 0, 59] }, @@ -288231,23 +288231,23 @@ "year": 1787, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 5.052577139012254, - "c2": 0.8550967922422359, - "c3": -8.6226130359737, - "c4": -27.392575238129698, - "c5": -1.8039256079663843, - "c6": -9.604199598540415, - "c7": 24.295002512989665 + "points": { + "c1": -29.734314055610888, + "c2": 10.990226974405655, + "c3": -21.39619626362014, + "c4": -11.800175096549282, + "c5": 3.267309685694439, + "c6": 2.72861547809595, + "c7": -6.251573025983944 }, - "vertexSeeds": { - "c1": 7.062214969389182, - "c2": 6.764049372081816, - "c3": 6.772218015051044, - "c4": 7.134483517906396, - "c5": 6.759974106971256, - "c6": 6.763039421429557, - "c7": 7.513449069080702 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766987, + "c3": 9.061488673139154, + "c4": 7.24919093851132, + "c5": 5.4368932038834865, + "c6": 3.624595469255653, + "c7": 1.8122977346278197 }, "rgb": [86, 146, 138] }, @@ -288258,23 +288258,23 @@ "year": 1787, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -32.637521113627166, - "c2": -31.083686219839272, - "c3": -10.841350939825617, - "c4": 26.47945991202598, - "c5": -31.80775551773188, - "c6": -42.580956244904264, - "c7": -20.128575207157894 + "points": { + "c1": -17.619640132803905, + "c2": 38.02686619096928, + "c3": -4.928439089396228, + "c4": -38.42787948374991, + "c5": 31.947191195795448, + "c6": -0.8520088689855001, + "c7": -10.752217385955916 }, - "vertexSeeds": { - "c1": 2.719635932419138, - "c2": 2.7027647823140617, - "c3": 2.701039463443785, - "c4": 2.7292731953282625, - "c5": 2.727321906180637, - "c6": 2.745000580397763, - "c7": 2.714705298837436 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751752, + "c3": 3.305594082293105, + "c4": 2.6444752658345014, + "c5": 1.9833564493758542, + "c6": 1.3222376329172507, + "c7": 0.6611188164586034 }, "rgb": [77, 76, 132] }, @@ -288285,23 +288285,23 @@ "year": 1787, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 25.880417490011148, - "c2": 12.194753773593817, - "c3": 1.0551765353531692, - "c4": 11.985998235793978, - "c5": 5.2159392449047886, - "c6": -28.195616972032234, - "c7": -3.572820767688455 + "points": { + "c1": -35.169483388975216, + "c2": -11.4032972997935, + "c3": 26.037222496306043, + "c4": 30.877319377035164, + "c5": -1.4365768749709247, + "c6": -6.561628758122385, + "c7": -13.480980506236207 }, - "vertexSeeds": { - "c1": 13.033062389530594, - "c2": 13.082367895089275, - "c3": 13.583983170069995, - "c4": 13.635013306288453, - "c5": 13.373664189752166, - "c6": 13.743254551340076, - "c7": 13.483372179442725 + "offsets": { + "c1": 23.78640776699029, + "c2": 20.3883495145631, + "c3": 16.99029126213591, + "c4": 13.59223300970876, + "c5": 10.194174757281571, + "c6": 6.79611650485438, + "c7": 3.39805825242719 }, "rgb": [77, 76, 132] }, @@ -288312,23 +288312,23 @@ "year": 1787, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -22.428531734742776, - "c2": 11.957158812335187, - "c3": -19.673073471064594, - "c4": 18.738389693375552, - "c5": 1.9359924266719268, - "c6": -24.8629236800228, - "c7": 4.247933967645203 + "points": { + "c1": 3.0113787305950623, + "c2": -13.222061200974998, + "c3": 8.679542504688413, + "c4": 24.408509798292677, + "c5": 28.73300879008245, + "c6": -26.41411766056122, + "c7": 5.8217224609043114 }, - "vertexSeeds": { - "c1": 7.3464369990128295, - "c2": 6.945266344552445, - "c3": 7.002101805091162, - "c4": 6.88226372644623, - "c5": 7.032223939565502, - "c6": 6.823342306530167, - "c7": 6.891681692706474 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364779, + "c3": 8.830328247803967, + "c4": 7.064262598243178, + "c5": 5.298196948682389, + "c6": 3.5321312991216, + "c7": 1.7660656495607892 }, "rgb": [86, 146, 138] }, @@ -288339,23 +288339,23 @@ "year": 1787, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 4.172379829117688, - "c2": 15.683017378220416, - "c3": 23.175432544190986, - "c4": -12.735695548672673, - "c5": -25.4585987225583, - "c6": 15.852045688262901, - "c7": 22.16680273266947 + "points": { + "c1": 13.153758668001675, + "c2": -9.489226224474816, + "c3": -14.456112277917768, + "c4": -8.485110460805398, + "c5": -9.857731517942316, + "c6": -25.347226358361315, + "c7": 6.606208722401259 }, - "vertexSeeds": { - "c1": 8.076046186421959, - "c2": 7.662775826846152, - "c3": 7.934018401128657, - "c4": 7.716587377497165, - "c5": 7.7130722825662446, - "c6": 7.558535377787489, - "c7": 7.970146891086224 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893208, + "c3": 9.708737864077678, + "c4": 7.766990291262148, + "c5": 5.825242718446616, + "c6": 3.883495145631061, + "c7": 1.9417475728155305 }, "rgb": [222, 0, 59] }, @@ -288366,23 +288366,23 @@ "year": 1787, "resistanceReported": true, "duration": 18057600, - "curveSeeds": { - "c1": -17.28011205748829, - "c2": -19.403559468355667, - "c3": 13.406408591549809, - "c4": 3.9107843186084246, - "c5": 29.0906555861116, - "c6": -4.093271924869857, - "c7": -20.514991198022045 + "points": { + "c1": -22.781238121031265, + "c2": -14.591012223914444, + "c3": -20.765687958004797, + "c4": -19.618036407776508, + "c5": -3.772190669560935, + "c6": 6.7315962919494545, + "c7": 5.359743652296611 }, - "vertexSeeds": { - "c1": 3.1793891424036644, - "c2": 3.1821808085858074, - "c3": 3.181364936675867, - "c4": 3.1834500016591734, - "c5": 3.1717126009231236, - "c6": 3.1784163704839785, - "c7": 3.1863369449064285 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636637, + "c3": 3.814147018030556, + "c4": 3.0513176144244754, + "c5": 2.2884882108182425, + "c6": 1.5256588072121617, + "c7": 0.7628294036060809 }, "rgb": [86, 146, 138] }, @@ -288393,23 +288393,23 @@ "year": 1787, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": 7.8554662403559945, - "c2": 8.193137276630793, - "c3": 1.1159853179763104, - "c4": 47.98052972275494, - "c5": -43.62261513409937, - "c6": -56.93033447967524, - "c7": -46.904700728070836 + "points": { + "c1": -18.861692442929993, + "c2": -22.535198559827997, + "c3": 14.426683729439006, + "c4": -31.767596351749912, + "c5": 8.555725449236292, + "c6": -3.7509822422191093, + "c7": 29.18793138317139 }, - "vertexSeeds": { - "c1": 8.709991710151222, - "c2": 8.724053114528546, - "c3": 8.673056517264298, - "c4": 8.716906998825264, - "c5": 8.673477130347065, - "c6": 8.65497952300759, - "c7": 8.682488642703506 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099836, + "c3": 10.40221914008317, + "c4": 8.321775312066501, + "c5": 6.241331484050001, + "c6": 4.160887656033334, + "c7": 2.080443828016667 }, "rgb": [238, 201, 159] }, @@ -288420,23 +288420,23 @@ "year": 1787, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -9.863155621990895, - "c2": 2.8996398554495926, - "c3": -3.0242436634364047, - "c4": 19.40978710917289, - "c5": -11.156073407394889, - "c6": -15.947947913228802, - "c7": -29.478150129018108 + "points": { + "c1": -27.659106939542347, + "c2": 28.99230442108967, + "c3": -8.126384307815641, + "c4": 15.02516610507778, + "c5": 1.8240666931953697, + "c6": 32.413063394366816, + "c7": 15.639098103876982 }, - "vertexSeeds": { - "c1": 4.9573898452225365, - "c2": 4.693153811083163, - "c3": 5.0086985105165, - "c4": 4.691799935189311, - "c5": 4.9077467665021866, - "c6": 4.809907888021512, - "c7": 4.82404517141452 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [58, 15, 49] }, @@ -288447,23 +288447,23 @@ "year": 1787, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 9.344762794682048, - "c2": 0.8662063527388995, - "c3": 1.5837427947792264, - "c4": -12.870483528729121, - "c5": -12.638584680973565, - "c6": 18.133777618596895, - "c7": -25.363030514921203 + "points": { + "c1": 20.87719448434889, + "c2": -28.854341645451388, + "c3": -24.886817221056496, + "c4": 33.40775256149452, + "c5": -0.21131945449347, + "c6": -14.13675102543942, + "c7": 11.842456763614265 }, - "vertexSeeds": { - "c1": 4.472645322704703, - "c2": 4.440706020455243, - "c3": 4.406526532896321, - "c4": 4.580407443819627, - "c5": 4.310566852953507, - "c6": 4.103785806803068, - "c7": 4.5232511627932155 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.7961165048543695, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271816, + "c6": 2.2653721682847876, + "c7": 1.1326860841423938 }, "rgb": [238, 201, 159] }, @@ -288474,23 +288474,23 @@ "year": 1787, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -37.21168430146368, - "c2": 13.98748455308953, - "c3": -29.896044219118686, - "c4": 18.620576517740204, - "c5": -8.39099347047982, - "c6": 29.49114079488723, - "c7": -29.444511004233952 + "points": { + "c1": -24.590313615765403, + "c2": -37.7923528283894, + "c3": -28.05402634217139, + "c4": -24.23353868640223, + "c5": 3.7939454574910485, + "c6": -2.797580247591277, + "c7": 11.766812843780599 }, - "vertexSeeds": { - "c1": 14.096064472160457, - "c2": 15.104326569196386, - "c3": 14.507856313097099, - "c4": 15.245101223149389, - "c5": 13.969275922545576, - "c6": 14.11361441964022, - "c7": 15.201384053751818 + "offsets": { + "c1": 25.533980582524272, + "c2": 21.886269070735104, + "c3": 18.238557558945892, + "c4": 14.59084604715672, + "c5": 10.943134535367552, + "c6": 7.295423023578341, + "c7": 3.6477115117891703 }, "rgb": [58, 15, 49] }, @@ -288501,23 +288501,23 @@ "year": 1787, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 1.2543917042289934, - "c2": 10.769007562291343, - "c3": 0.46400023346293295, - "c4": -22.879272112099088, - "c5": 9.636522259375568, - "c6": -17.37314383639277, - "c7": -4.090771681279431 + "points": { + "c1": -11.460335918361217, + "c2": 13.536182726629058, + "c3": -28.12896134491745, + "c4": -9.868381087118113, + "c5": 23.002768148133825, + "c6": 27.698051843463645, + "c7": 33.6154786054342 }, - "vertexSeeds": { - "c1": 6.552656926704428, - "c2": 6.549773300249797, - "c3": 6.495285737754222, - "c4": 6.5777670824217696, - "c5": 6.483657168864527, - "c6": 6.518856736482569, - "c7": 6.485004996273088 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.45908460471564, + "c3": 7.882570503929738, + "c4": 6.306056403143759, + "c5": 4.729542302357859, + "c6": 3.1530282015718796, + "c7": 1.5765141007859007 }, "rgb": [58, 15, 49] }, @@ -288528,23 +288528,23 @@ "year": 1787, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 3.1481884055039018, - "c2": 31.73426589158042, - "c3": 1.412471562992863, - "c4": 23.004658184659846, - "c5": -7.640643662264544, - "c6": -11.875612612168759, - "c7": -17.066222397944408 + "points": { + "c1": -17.320442264197858, + "c2": 10.60026940723045, + "c3": -26.225564349786943, + "c4": 32.85803487575539, + "c5": 7.996673842297881, + "c6": -11.999558822208257, + "c7": -12.916079118045037 }, - "vertexSeeds": { - "c1": 2.6659642738101312, - "c2": 2.7183267362977173, - "c3": 2.722449304554255, - "c4": 2.7961408645841628, - "c5": 2.6821464856003114, - "c6": 2.8592517109645486, - "c7": 2.612674319726876 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073511, + "c3": 3.4905224225612597, + "c4": 2.7924179380490095, + "c5": 2.0943134535367594, + "c6": 1.3962089690245092, + "c7": 0.6981044845122503 }, "rgb": [222, 0, 59] }, @@ -288555,23 +288555,23 @@ "year": 1787, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 18.848283102830685, - "c2": 11.225788354618594, - "c3": -1.4473287353768143, - "c4": -10.0420871651204, - "c5": 12.62656844473279, - "c6": 12.90485523103208, - "c7": 4.269737848834346 + "points": { + "c1": 36.72110153973618, + "c2": 38.45568719765717, + "c3": 17.085232056053968, + "c4": -33.58451180647573, + "c5": -31.89771814520538, + "c6": -11.144914124768917, + "c7": 37.05297944783767 }, - "vertexSeeds": { - "c1": 7.066804886041496, - "c2": 6.89024916013837, - "c3": 7.059533873763472, - "c4": 7.08981168667488, - "c5": 6.6195612811670035, - "c6": 6.764453851956011, - "c7": 7.187161168502759 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962551, + "c3": 8.599167822468793, + "c4": 6.879334257975034, + "c5": 5.1595006934812755, + "c6": 3.439667128987517, + "c7": 1.7198335644937586 }, "rgb": [58, 15, 49] }, @@ -288582,23 +288582,23 @@ "year": 1787, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 39.03468480072691, - "c2": 33.956113477108204, - "c3": 39.22455759450513, - "c4": 1.4269362516159063, - "c5": -35.08826189659117, - "c6": 11.526199945778458, - "c7": -0.8881613762303289 + "points": { + "c1": 27.514641969469565, + "c2": -33.471114040757826, + "c3": 11.158247703949264, + "c4": -16.628141815783234, + "c5": -16.69625227426599, + "c6": -12.45086323366013, + "c7": 41.7489985925243 }, - "vertexSeeds": { - "c1": 2.2416211358430624, - "c2": 2.353575525341323, - "c3": 2.195808139702571, - "c4": 2.292714997911916, - "c5": 2.109430440668994, - "c6": 2.327976973989713, - "c7": 2.3154834416661325 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081833, + "c3": 2.9357374017568207, + "c4": 2.3485899214054546, + "c5": 1.7614424410540916, + "c6": 1.1742949607027289, + "c7": 0.5871474803513628 }, "rgb": [238, 201, 159] }, @@ -288609,23 +288609,23 @@ "year": 1787, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 29.124657301334786, - "c2": -26.632214768021484, - "c3": -29.428620919324146, - "c4": -27.458421757151168, - "c5": 29.791898903763233, - "c6": -19.91011369979298, - "c7": -3.7761432293134938 + "points": { + "c1": -7.032190632597015, + "c2": 24.196800142951055, + "c3": 28.68843469396515, + "c4": 19.464307880126633, + "c5": -11.10603022172802, + "c6": -4.354181713160479, + "c7": 31.978289614377758 }, - "vertexSeeds": { - "c1": 5.507662233921117, - "c2": 6.602813314900006, - "c3": 6.301340757302199, - "c4": 6.539373005554528, - "c5": 6.2422023001677776, - "c6": 6.175672704071549, - "c7": 5.636067372722085 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520112, + "c3": 8.344891354600096, + "c4": 6.6759130836800775, + "c5": 5.006934812760052, + "c6": 3.3379565418400348, + "c7": 1.6689782709200174 }, "rgb": [238, 201, 159] }, @@ -288636,23 +288636,23 @@ "year": 1787, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -10.633967941107223, - "c2": -19.93047735649926, - "c3": -32.59443356904397, - "c4": -40.58793017945244, - "c5": -41.8635900997302, - "c6": 17.92429553433096, - "c7": -21.70002042355659 + "points": { + "c1": -28.808415254425974, + "c2": -28.552353892908783, + "c3": -11.805437278645421, + "c4": -17.05703499786799, + "c5": -3.1006407574192068, + "c6": -23.200230245223793, + "c7": -18.115989561854533 }, - "vertexSeeds": { - "c1": 5.020455146151386, - "c2": 5.249087716267051, - "c3": 5.273828379878968, - "c4": 5.197881795697432, - "c5": 5.132633152647769, - "c6": 4.988730211783995, - "c7": 5.052832678581496 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -288663,23 +288663,23 @@ "year": 1787, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -23.19564617357527, - "c2": -20.677804702775543, - "c3": 18.60726824457123, - "c4": 15.768987370300081, - "c5": -4.248883934396488, - "c6": -16.13436038958573, - "c7": -21.774514513238145 + "points": { + "c1": 14.1691571370013, + "c2": 9.02606951807676, + "c3": -37.19177060239507, + "c4": -0.5915332416309695, + "c5": -9.439884393898428, + "c6": 24.680736749466277, + "c7": -8.849758309211929 }, - "vertexSeeds": { - "c1": 1.4294528100458894, - "c2": 1.5311130086210762, - "c3": 1.503929011470894, - "c4": 1.4353036881679884, - "c5": 1.424036334502276, - "c6": 1.5411792839066556, - "c7": 1.500761766861065 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.997226074895976, + "c3": 1.6643550624133152, + "c4": 1.3314840499306506, + "c5": 0.9986130374479899, + "c6": 0.6657420249653253, + "c7": 0.3328710124826609 }, "rgb": [77, 76, 132] }, @@ -288690,23 +288690,23 @@ "year": 1787, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 15.615978879455838, - "c2": 21.575225693205006, - "c3": 9.940760312089168, - "c4": 1.760717249657155, - "c5": -24.32319938854645, - "c6": -0.6388948179892289, - "c7": -23.33598714580033 + "points": { + "c1": -0.7246067769399573, + "c2": 7.121559247796469, + "c3": -29.3155986464889, + "c4": -0.0957774667072897, + "c5": 28.860278304042225, + "c6": 12.044710066598704, + "c7": -6.031696370969016 }, - "vertexSeeds": { - "c1": 4.575560493714158, - "c2": 4.726376099941341, - "c3": 4.774705324088463, - "c4": 4.717309114857799, - "c5": 4.650709438780173, - "c6": 4.55820692182716, - "c7": 4.777091402905074 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055482, + "c3": 5.779010633379559, + "c4": 4.62320850670365, + "c5": 3.467406380027741, + "c6": 2.311604253351832, + "c7": 1.1558021266759089 }, "rgb": [58, 15, 49] }, @@ -288717,23 +288717,23 @@ "year": 1787, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -18.219602157746255, - "c2": -10.267522967608055, - "c3": -11.645703089705584, - "c4": 2.3974384755204454, - "c5": -12.47129535899252, - "c6": 21.737173705989733, - "c7": 22.927950723490895 + "points": { + "c1": -16.624157553891724, + "c2": 12.863003065068654, + "c3": 36.23896231267341, + "c4": 35.316909674108814, + "c5": 13.329745361491511, + "c6": -23.41995708448312, + "c7": -36.6065986023356 }, - "vertexSeeds": { - "c1": 2.0220635220225702, - "c2": 1.9668894563175472, - "c3": 2.0033060275462247, - "c4": 2.0244295258352882, - "c5": 1.923203453619237, - "c6": 2.068118777259153, - "c7": 2.100211952401241 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.588996763754045, + "c4": 2.071197411003236, + "c5": 1.5533980582524272, + "c6": 1.035598705501618, + "c7": 0.517799352750809 }, "rgb": [77, 76, 132] }, @@ -288744,23 +288744,23 @@ "year": 1787, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 7.184292273586198, - "c2": 29.362849615034865, - "c3": 10.417143544859488, - "c4": 10.792716574056154, - "c5": -3.217738983618549, - "c6": 4.408698857335711, - "c7": 29.501214196319484 + "points": { + "c1": -15.760548181406719, + "c2": -23.248716206903474, + "c3": -8.104811849166175, + "c4": 9.68587716078503, + "c5": -18.768628375041352, + "c6": 3.6444312925202347, + "c7": -2.5952540163570106 }, - "vertexSeeds": { - "c1": 8.522012433199516, - "c2": 8.789163447593399, - "c3": 8.794955168126517, - "c4": 8.651158039070769, - "c5": 8.527044943400503, - "c6": 8.712232035675145, - "c7": 8.646539463368022 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864084, + "c3": 10.841423948220077, + "c4": 8.67313915857605, + "c5": 6.504854368932042, + "c6": 4.336569579288036, + "c7": 2.1682847896440065 }, "rgb": [58, 15, 49] }, @@ -288771,23 +288771,23 @@ "year": 1787, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -27.040873331909914, - "c2": -5.82729702366208, - "c3": 23.284142116705098, - "c4": 19.187763272541332, - "c5": 30.796607591468515, - "c6": 34.77743105982135, - "c7": 31.691282699740427 + "points": { + "c1": -13.338586705903062, + "c2": 35.9275802506306, + "c3": 19.438743319304045, + "c4": -18.08364098803916, + "c5": 27.550708858073335, + "c6": 25.572932303510285, + "c7": 28.322147810065843 }, - "vertexSeeds": { - "c1": 1.9795759088458427, - "c2": 2.052916448224646, - "c3": 1.9547587018227335, - "c4": 2.093002102899218, - "c5": 2.053248367328604, - "c6": 1.9601535626115383, - "c7": 1.9847811481522213 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.023578363384186, + "c3": 2.519648636153491, + "c4": 2.0157189089227905, + "c5": 1.5117891816920959, + "c6": 1.0078594544613952, + "c7": 0.5039297272307005 }, "rgb": [77, 76, 132] }, @@ -288798,23 +288798,23 @@ "year": 1788, "resistanceReported": false, "duration": 48211200, - "curveSeeds": { - "c1": -6.543296063237456, - "c2": -56.36608795908769, - "c3": 52.77729509496393, - "c4": 41.61926897449381, - "c5": 54.96212398970441, - "c6": -19.432914002203233, - "c7": -42.781909387813265 + "points": { + "c1": -9.296422551625206, + "c2": 60.77056728839527, + "c3": -9.21175078074409, + "c4": 29.91928699092459, + "c5": 19.630666154665775, + "c6": -31.901879349339424, + "c7": -0.02235648014077185 }, - "vertexSeeds": { - "c1": 4.396187611324797, - "c2": 4.4846802097992144, - "c3": 4.46538935532096, - "c4": 4.511857213136972, - "c5": 4.539718140559871, - "c6": 4.536772453195769, - "c7": 4.516388261872995 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.5742024965326, + "c3": 5.4785020804438265, + "c4": 4.382801664355067, + "c5": 3.287101248266293, + "c6": 2.1914008321775333, + "c7": 1.09570041608876 }, "rgb": [58, 15, 49] }, @@ -288825,23 +288825,23 @@ "year": 1787, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 18.178333335630498, - "c2": -32.70495303272568, - "c3": 27.324632203607145, - "c4": -15.464255659623227, - "c5": -22.70957197962799, - "c6": 4.934217926895315, - "c7": -21.145114231693437 + "points": { + "c1": -22.42312816976087, + "c2": 9.337646949770715, + "c3": -22.667548958223755, + "c4": 4.4540017718067375, + "c5": -17.12123539403325, + "c6": -18.693629209236768, + "c7": -37.56771157653503 }, - "vertexSeeds": { - "c1": 0.48538083490115225, - "c2": 0.4712985869786882, - "c3": 0.47655275966392385, - "c4": 0.5016785746286405, - "c5": 0.5032993552475877, - "c6": 0.48704039359193274, - "c7": 0.4706171667865461 + "offsets": { + "c1": 0.8737864077669903, + "c2": 0.7489597780859921, + "c3": 0.6241331484049925, + "c4": 0.4993065187239943, + "c5": 0.37447988904299606, + "c6": 0.24965325936199637, + "c7": 0.12482662968099818 }, "rgb": [238, 201, 159] }, @@ -288852,23 +288852,23 @@ "year": 1787, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -22.136856950919864, - "c2": 18.02220640170988, - "c3": 20.22625898892224, - "c4": -22.53556612994672, - "c5": -23.924461753826435, - "c6": -16.32057203746904, - "c7": -11.526541498788998 + "points": { + "c1": -22.58397641585418, + "c2": -26.387468961614527, + "c3": 26.924922033006794, + "c4": 10.850450791623985, + "c5": 19.816460434404497, + "c6": -14.680086129529666, + "c7": 15.924139653278225 }, - "vertexSeeds": { - "c1": 4.209774233753835, - "c2": 4.19748008206515, - "c3": 3.951536717625777, - "c4": 4.129221948395424, - "c5": 4.140103385363874, - "c6": 3.9628696814976867, - "c7": 4.024387941656343 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [238, 201, 159] }, @@ -288879,23 +288879,23 @@ "year": 1787, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": -9.230208502989129, - "c2": 24.72928832024344, - "c3": 47.992758508599195, - "c4": 3.9716496346837573, - "c5": -34.44583460856306, - "c6": 25.610039580113124, - "c7": 50.18319421072293 + "points": { + "c1": -23.529774471993818, + "c2": 29.726802756361025, + "c3": 4.653612751806378, + "c4": -0.8889645722614503, + "c5": 11.481953774909954, + "c6": -34.35590720892686, + "c7": -37.345432194707676 }, - "vertexSeeds": { - "c1": 9.809905054536856, - "c2": 9.863606971335257, - "c3": 9.283712858056841, - "c4": 9.881476693166658, - "c5": 9.504082093842376, - "c6": 9.372040675465298, - "c7": 10.073544999016915 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.50762829403608, + "c3": 12.089690245030045, + "c4": 9.671752196024054, + "c5": 7.25381414701804, + "c6": 4.835876098012027, + "c7": 2.4179380490060134 }, "rgb": [58, 15, 49] }, @@ -288906,23 +288906,23 @@ "year": 1787, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -36.255649264067564, - "c2": -18.59438504939387, - "c3": 31.72469012491071, - "c4": 20.17756091473533, - "c5": 18.416878555189236, - "c6": 22.221395410451244, - "c7": 21.596737715702318 + "points": { + "c1": -33.629707642716724, + "c2": -24.4480974475551, + "c3": -23.138628410636397, + "c4": -28.439362994020733, + "c5": -7.372544103731499, + "c6": 28.516635597306546, + "c7": 38.29098801754944 }, - "vertexSeeds": { - "c1": 10.851930524725859, - "c2": 11.095246249504156, - "c3": 11.023315388475092, - "c4": 11.059977882168441, - "c5": 10.852036877907087, - "c6": 10.740313633515791, - "c7": 10.766451616600639 + "offsets": { + "c1": 18.6084142394822, + "c2": 15.950069348127613, + "c3": 13.291724456773025, + "c4": 10.633379565418437, + "c5": 7.975034674063764, + "c6": 5.316689782709176, + "c7": 2.658344891354588 }, "rgb": [58, 15, 49] }, @@ -288933,23 +288933,23 @@ "year": 1787, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -23.61384538634083, - "c2": 17.185407284033722, - "c3": -5.458582483485149, - "c4": 15.15204223521372, - "c5": -9.124498229509499, - "c6": -11.758544325421633, - "c7": -14.295654619491676 + "points": { + "c1": -17.512630069055703, + "c2": 19.701931786029775, + "c3": 10.260313504143603, + "c4": 3.0476346994953154, + "c5": 12.150891171480595, + "c6": -13.062192898029538, + "c7": 20.180402462479556 }, - "vertexSeeds": { - "c1": 4.9382270586508366, - "c2": 4.942657168253717, - "c3": 4.872833922178174, - "c4": 4.806367568605523, - "c5": 4.877353445997022, - "c6": 4.871499265260504, - "c7": 4.96407774569525 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497934, + "c3": 6.03328710124826, + "c4": 4.826629680998623, + "c5": 3.619972260748967, + "c6": 2.4133148404993117, + "c7": 1.2066574202496558 }, "rgb": [77, 76, 132] }, @@ -288960,23 +288960,23 @@ "year": 1788, "resistanceReported": false, "duration": 45878400, - "curveSeeds": { - "c1": 52.64763118508754, - "c2": 4.608668695452174, - "c3": -1.6674562789074372, - "c4": 39.99979092767955, - "c5": 7.9472260664434415, - "c6": -19.45382132048774, - "c7": -19.426915121061498 + "points": { + "c1": 3.2522816220453947, + "c2": -22.578689074873026, + "c3": 15.140067166355728, + "c4": -53.53189430590048, + "c5": -9.064122006106665, + "c6": -10.22740886822973, + "c7": -43.61486608177701 }, - "vertexSeeds": { - "c1": 4.5771696705760005, - "c2": 4.715721037063703, - "c3": 4.5725615065067675, - "c4": 4.595112367972543, - "c5": 4.476308695739127, - "c6": 4.756727801767341, - "c7": 4.456928225187175 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [238, 201, 159] }, @@ -288987,23 +288987,23 @@ "year": 1787, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": 20.517597632787883, - "c2": -20.618513548781497, - "c3": -15.248065670075398, - "c4": 13.867614939824065, - "c5": -21.259088279198583, - "c6": -0.7504247639559942, - "c7": 7.885318588743065 + "points": { + "c1": 1.2179083381920819, + "c2": -1.7852556076277537, + "c3": -4.9804767411030895, + "c4": -21.014196672711932, + "c5": -5.137300065563654, + "c6": 12.089865483232714, + "c7": -20.342905532072635 }, - "vertexSeeds": { - "c1": 1.5458020972548367, - "c2": 1.574919884556181, - "c3": 1.569772219005045, - "c4": 1.6057781119535348, - "c5": 1.680954263761715, - "c6": 1.5589741592911892, - "c7": 1.595519022086495 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.44105409153953, + "c3": 2.034211742949605, + "c4": 1.6273693943596852, + "c5": 1.220527045769765, + "c6": 0.813684697179845, + "c7": 0.40684234858992 }, "rgb": [77, 76, 132] }, @@ -289014,23 +289014,23 @@ "year": 1787, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -28.396137707286655, - "c2": -6.579255601873022, - "c3": 21.750053980367724, - "c4": 9.793821790939411, - "c5": -40.33984649057147, - "c6": 26.029239832793905, - "c7": -11.960677947632679 + "points": { + "c1": -25.363185572374626, + "c2": -17.114350237428358, + "c3": 28.49520117067466, + "c4": -2.972338075811173, + "c5": 32.35682942757957, + "c6": -13.049565646030484, + "c7": 18.092908044348626 }, - "vertexSeeds": { - "c1": 8.271142201171763, - "c2": 8.041609552295068, - "c3": 8.116750115681173, - "c4": 8.18892591859909, - "c5": 8.442585663380399, - "c6": 8.175656280202743, - "c7": 7.795064115582938 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [86, 146, 138] }, @@ -289041,23 +289041,23 @@ "year": 1787, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 6.195955070318803, - "c2": 7.595930620245781, - "c3": 2.013782985707337, - "c4": 41.85656026976563, - "c5": 2.0979922361414083, - "c6": 8.724877018074011, - "c7": -30.147850895439266 + "points": { + "c1": -2.911440345779191, + "c2": -48.56807505427633, + "c3": 12.109956201728018, + "c4": -44.81762556462642, + "c5": 10.977693445096008, + "c6": -0.9319152565936193, + "c7": 14.169642288150492 }, - "vertexSeeds": { - "c1": 2.571428713211387, - "c2": 2.776823083320763, - "c3": 2.6067223062290488, - "c4": 2.6341409428881355, - "c5": 2.6346285707369566, - "c6": 2.619161644057548, - "c7": 2.7582714685307668 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791955, + "c3": 3.3287101248266295, + "c4": 2.6629680998613035, + "c5": 1.9972260748959776, + "c6": 1.3314840499306517, + "c7": 0.6657420249653259 }, "rgb": [77, 76, 132] }, @@ -289068,23 +289068,23 @@ "year": 1787, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -2.6652496093382574, - "c2": -18.352617074355503, - "c3": -9.309906089562237, - "c4": 13.287959898706532, - "c5": -14.636457675907312, - "c6": -19.57210909258241, - "c7": -16.03411221678372 + "points": { + "c1": 16.209544448120845, + "c2": 13.054553228362238, + "c3": 1.487688040660185, + "c4": -23.867144402596896, + "c5": 24.41997174800919, + "c6": -0.305501892073643, + "c7": -6.822842837625032 }, - "vertexSeeds": { - "c1": 8.514435136489842, - "c2": 8.132153054366102, - "c3": 8.156304592313758, - "c4": 8.453131165222134, - "c5": 7.9523391405381325, - "c6": 8.937422541216632, - "c7": 8.425568945712573 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904294, + "c3": 10.864539990753585, + "c4": 8.691631992602861, + "c5": 6.518723994452141, + "c6": 4.345815996301431, + "c7": 2.172907998150709 }, "rgb": [77, 76, 132] }, @@ -289095,23 +289095,23 @@ "year": 1787, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 31.929201649468077, - "c2": 12.235832433603875, - "c3": 22.879344430821604, - "c4": 17.998776776306343, - "c5": -14.171657543745109, - "c6": -28.363681657711375, - "c7": -8.325953700989189 + "points": { + "c1": -18.105041499616547, + "c2": 33.41906001549601, + "c3": 35.22355320302089, + "c4": 23.375132714798156, + "c5": 14.164825194247925, + "c6": -1.56670283411502, + "c7": 29.029604653800938 }, - "vertexSeeds": { - "c1": 4.768596516928638, - "c2": 4.6318541125872015, - "c3": 4.714212403441917, - "c4": 4.638378095976229, - "c5": 4.557973463021711, - "c6": 4.359000581216876, - "c7": 4.340829794829837 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975039, + "c3": 5.732778548312528, + "c4": 4.586222838650026, + "c5": 3.4396671289875154, + "c6": 2.293111419325013, + "c7": 1.1465557096625025 }, "rgb": [77, 76, 132] }, @@ -289122,23 +289122,23 @@ "year": 1787, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -0.12474899366594627, - "c2": -24.515874300133312, - "c3": -3.9503042360387752, - "c4": -0.49132007385934173, - "c5": 31.45326413365187, - "c6": -26.167496669773257, - "c7": -27.519349177415922 + "points": { + "c1": -2.333059017083613, + "c2": 30.307946028915808, + "c3": -27.551404264481064, + "c4": -24.75187083043855, + "c5": 24.67782042875737, + "c6": 27.472226636973886, + "c7": 32.453205109726255 }, - "vertexSeeds": { - "c1": 2.4018206942424496, - "c2": 2.3877553010958312, - "c3": 2.2888875029631772, - "c4": 2.3095484913435973, - "c5": 2.3462530458142554, - "c6": 2.5742146725516695, - "c7": 2.4584386545131336 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.800277392510402, + "c3": 3.1668978270920003, + "c4": 2.533518261673599, + "c5": 1.900138696255201, + "c6": 1.2667591308367996, + "c7": 0.6333795654184013 }, "rgb": [77, 76, 132] }, @@ -289149,23 +289149,23 @@ "year": 1788, "resistanceReported": false, "duration": 52617600, - "curveSeeds": { - "c1": -11.087271706146034, - "c2": -44.072635225287286, - "c3": 33.768498550517606, - "c4": -28.033407983394078, - "c5": 16.64627810973606, - "c6": -50.41265770037124, - "c7": 6.140955033942902 + "points": { + "c1": -0.27597864252986426, + "c2": 23.70350383966492, + "c3": 33.17963278071346, + "c4": 35.84369424805617, + "c5": -27.634872019596322, + "c6": -3.142667792826998, + "c7": 69.51558558510669 }, - "vertexSeeds": { - "c1": 5.646468407816273, - "c2": 5.307005286264571, - "c3": 5.292879236955736, - "c4": 5.399120064402431, - "c5": 5.458689798045203, - "c6": 5.9146978210881365, - "c7": 5.385072827051422 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [86, 146, 138] }, @@ -289176,23 +289176,23 @@ "year": 1787, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -20.506296599830808, - "c2": -7.820202825035, - "c3": -6.902513210571197, - "c4": 6.938468222730791, - "c5": 15.032868784181225, - "c6": -17.849636872923277, - "c7": -2.833889309831015 + "points": { + "c1": 0.36617653229500036, + "c2": -27.64586322351416, + "c3": 11.148353773856712, + "c4": -15.82469048383447, + "c5": 17.563295776739743, + "c6": -21.562067444013827, + "c7": 24.08513123022218 }, - "vertexSeeds": { - "c1": 4.944808325565176, - "c2": 5.003978836266904, - "c3": 4.971316549629995, - "c4": 4.950356520569833, - "c5": 5.007371899108595, - "c6": 4.994354085229006, - "c7": 4.979655861341802 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457685, + "c3": 6.010171058714722, + "c4": 4.808136846971757, + "c5": 3.60610263522889, + "c6": 2.404068423485927, + "c7": 1.2020342117429634 }, "rgb": [86, 146, 138] }, @@ -289203,23 +289203,23 @@ "year": 1787, "resistanceReported": true, "duration": 29980800, - "curveSeeds": { - "c1": -28.44754836847123, - "c2": -35.867378477097645, - "c3": -33.88366370170742, - "c4": -19.311275761595642, - "c5": 23.080178897805695, - "c6": 35.09652410415937, - "c7": 41.17813576009682 + "points": { + "c1": 0.4432551616143101, + "c2": -10.139910439876012, + "c3": -4.145579065086835, + "c4": -31.233375092332217, + "c5": -2.8229194775667494, + "c6": 32.91632937571602, + "c7": 42.26463080664681 }, - "vertexSeeds": { - "c1": 2.0654467238828493, - "c2": 2.11003650535814, - "c3": 2.1196424312424966, - "c4": 2.2554362941021013, - "c5": 2.061019823648436, - "c6": 2.04844486997442, - "c7": 2.0384247598453795 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551547, + "c4": 2.1821544151641237, + "c5": 1.6366158113730929, + "c6": 1.0910772075820618, + "c7": 0.5455386037910309 }, "rgb": [86, 146, 138] }, @@ -289230,23 +289230,23 @@ "year": 1787, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 34.228807642699906, - "c2": 1.8036186883553995, - "c3": 21.697700349704043, - "c4": 32.72095793669186, - "c5": -34.933774101055235, - "c6": -1.4181508846801023, - "c7": -21.314002220269003 + "points": { + "c1": -31.546735564019162, + "c2": -9.65648206645993, + "c3": 32.78520343248883, + "c4": -19.138342309854636, + "c5": 7.283680056595784, + "c6": -31.979536623857065, + "c7": 0.2584381516347136 }, - "vertexSeeds": { - "c1": 4.82761403916676, - "c2": 4.989428649647312, - "c3": 4.410047879506596, - "c4": 4.378652175699576, - "c5": 4.663011238717478, - "c6": 4.272922438222952, - "c7": 4.849816732282534 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457698, + "c3": 6.0101710587147466, + "c4": 4.808136846971797, + "c5": 3.6061026352288454, + "c6": 2.404068423485895, + "c7": 1.2020342117429446 }, "rgb": [238, 201, 159] }, @@ -289257,23 +289257,23 @@ "year": 1788, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -38.48267613991355, - "c2": 41.091935324541815, - "c3": 20.037030443196848, - "c4": 51.89413009028939, - "c5": 45.19188297765226, - "c6": -21.463754899032025, - "c7": 0.7171144282859387 + "points": { + "c1": -19.57438474944754, + "c2": 1.4077895547679518, + "c3": -29.836687089078225, + "c4": 10.313374251656548, + "c5": 19.394271157534853, + "c6": -10.534619315294734, + "c7": -51.894101304361826 }, - "vertexSeeds": { - "c1": 10.830206217926968, - "c2": 10.60655765361035, - "c3": 10.713727071700688, - "c4": 10.767525086776125, - "c5": 10.67161341913964, - "c6": 10.739214642127328, - "c7": 10.177885428558817 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846035, + "c3": 13.129912159038392, + "c4": 10.503929727230704, + "c5": 7.877947295423017, + "c6": 5.251964863615374, + "c7": 2.625982431807687 }, "rgb": [222, 0, 59] }, @@ -289284,23 +289284,23 @@ "year": 1787, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -21.501154536156378, - "c2": 22.436754073352446, - "c3": -9.019185869195535, - "c4": 0.6204895658484091, - "c5": 8.759825500943833, - "c6": 17.66114742067777, - "c7": 4.206452941069223 + "points": { + "c1": 2.7118497694902644, + "c2": 8.949975826189103, + "c3": 3.4117738054348976, + "c4": 0.7303798453018189, + "c5": 16.671443987431232, + "c6": -5.679355659093581, + "c7": 30.61433277591223 }, - "vertexSeeds": { - "c1": 6.338816622460264, - "c2": 6.281628250238288, - "c3": 6.446700994478913, - "c4": 6.599131056556937, - "c5": 6.455811156989704, - "c6": 6.2675584931875, - "c7": 6.156566264966072 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796109, + "c3": 7.928802588996767, + "c4": 6.343042071197405, + "c5": 4.757281553398065, + "c6": 3.1715210355987025, + "c7": 1.5857605177993623 }, "rgb": [77, 76, 132] }, @@ -289311,23 +289311,23 @@ "year": 1788, "resistanceReported": false, "duration": 50976000, - "curveSeeds": { - "c1": 2.7756207293703454, - "c2": 50.35114276947655, - "c3": 30.024689968271886, - "c4": -23.95380193670922, - "c5": 42.85360613920983, - "c6": -31.598725857569804, - "c7": -5.335439698441711 + "points": { + "c1": -63.91775763349356, + "c2": 30.13704850934512, + "c3": 61.75150253012755, + "c4": 13.98341326722317, + "c5": 7.58063292297102, + "c6": -15.685225826663498, + "c7": 42.57961271731885 }, - "vertexSeeds": { - "c1": 6.698290676381116, - "c2": 6.401585521154614, - "c3": 6.591290049973078, - "c4": 6.726533766336291, - "c5": 6.610331220215669, - "c6": 6.586961879398572, - "c7": 6.6079033041871105 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037438, + "c3": 8.067498844197877, + "c4": 6.4539990753582925, + "c5": 4.840499306518731, + "c6": 3.2269995376791463, + "c7": 1.613499768839562 }, "rgb": [77, 76, 132] }, @@ -289338,23 +289338,23 @@ "year": 1787, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": -12.49195738588272, - "c2": -36.249979108392935, - "c3": -25.956530680546173, - "c4": -18.7286288941256, - "c5": -26.375778226701755, - "c6": 49.788701660363486, - "c7": -23.300945976153056 + "points": { + "c1": 11.003610266656963, + "c2": 29.29084701424641, + "c3": 43.52746033749946, + "c4": -44.572956801512554, + "c5": 43.149305227171055, + "c6": 23.14567187159973, + "c7": -52.35804371030066 }, - "vertexSeeds": { - "c1": 6.325860803294736, - "c2": 6.294792873679551, - "c3": 6.281535421867027, - "c4": 5.984293144753522, - "c5": 6.408268353756494, - "c6": 6.306499179422776, - "c7": 6.037875351272481 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393897, + "c3": 7.697642163661581, + "c4": 6.158113730929264, + "c5": 4.618585298196948, + "c6": 3.079056865464632, + "c7": 1.539528432732316 }, "rgb": [86, 146, 138] }, @@ -289365,23 +289365,23 @@ "year": 1787, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -41.07647903615238, - "c2": -6.729092432700398, - "c3": 1.4383485181191418, - "c4": -42.57723055290259, - "c5": 11.413239501988826, - "c6": 30.496866415684742, - "c7": -4.651160663188698 + "points": { + "c1": -10.671094296439229, + "c2": -12.912306421353883, + "c3": -4.376151199787763, + "c4": 23.90686464954927, + "c5": 47.6693421924733, + "c6": 23.61519079951605, + "c7": 45.77458681607123 }, - "vertexSeeds": { - "c1": 9.587854851497966, - "c2": 9.110330148298702, - "c3": 9.274182631424818, - "c4": 9.609685763052447, - "c5": 9.376478914793395, - "c6": 9.141005019155504, - "c7": 9.09166591475497 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.925104022191402, + "c3": 11.60425335182617, + "c4": 9.283402681460935, + "c5": 6.962552011095701, + "c6": 4.641701340730467, + "c7": 2.3208506703652336 }, "rgb": [77, 76, 132] }, @@ -289392,23 +289392,23 @@ "year": 1787, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -0.8123774114230287, - "c2": 7.7363953476184335, - "c3": 21.187245225079188, - "c4": -23.645910881159246, - "c5": -18.654096199978746, - "c6": -1.1127001046305267, - "c7": -20.79662013638154 + "points": { + "c1": 0.32913683683169026, + "c2": -30.66994142760421, + "c3": -1.422084999472304, + "c4": -12.722752054685902, + "c5": -17.948327007561858, + "c6": -7.254427839370194, + "c7": 25.47183348874438 }, - "vertexSeeds": { - "c1": 13.782453800910421, - "c2": 13.362198519894529, - "c3": 14.059988303403026, - "c4": 14.18911839806245, - "c5": 13.514444652020888, - "c6": 13.272011146585122, - "c7": 13.329365884564929 + "offsets": { + "c1": 23.818770226537218, + "c2": 20.41608876560332, + "c3": 17.01340730466946, + "c4": 13.61072584373556, + "c5": 10.20804438280166, + "c6": 6.805362921867801, + "c7": 3.4026814609339007 }, "rgb": [222, 0, 59] }, @@ -289419,23 +289419,23 @@ "year": 1787, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -5.657709442253999, - "c2": -19.580733118688265, - "c3": -34.01274636272052, - "c4": -16.31479168493289, - "c5": -23.218795226070934, - "c6": -6.779315529832122, - "c7": -33.804819164413004 + "points": { + "c1": 9.335442335752418, + "c2": -4.1496708158672675, + "c3": 36.48460434236499, + "c4": 0.6498960605169728, + "c5": 31.835066776426245, + "c6": -0.57218131564332, + "c7": -6.670426120668619 }, - "vertexSeeds": { - "c1": 9.954339944302772, - "c2": 9.728692949072487, - "c3": 10.410424477461602, - "c4": 10.361434195108135, - "c5": 10.351566667061759, - "c6": 10.167196306656244, - "c7": 9.719540966564312 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [238, 201, 159] }, @@ -289446,23 +289446,23 @@ "year": 1787, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 1.1879450455965355, - "c2": 1.0354957713750181, - "c3": -37.592593959579816, - "c4": -23.038911252358886, - "c5": 19.21395368417725, - "c6": -24.19469277611703, - "c7": -34.3114570608882 + "points": { + "c1": -33.545989699977724, + "c2": -6.231114856538717, + "c3": -11.745794762276983, + "c4": -8.568731100690627, + "c5": 6.776429502396411, + "c6": -30.690431395944998, + "c7": -29.673775840004435 }, - "vertexSeeds": { - "c1": 4.226457285310245, - "c2": 4.553839296027334, - "c3": 3.8954457267039637, - "c4": 4.4046256438454705, - "c5": 4.550914763287393, - "c6": 4.392457590188382, - "c7": 4.517161587782488 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.7406380027739266, + "c3": 5.617198335644936, + "c4": 4.493758668515951, + "c5": 3.3703190013869655, + "c6": 2.2468793342579754, + "c7": 1.1234396671289901 }, "rgb": [238, 201, 159] }, @@ -289473,23 +289473,23 @@ "year": 1787, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": 23.905712477792697, - "c2": -12.824494591718228, - "c3": 30.821723008999733, - "c4": 3.7937848720743546, - "c5": -25.23527518696456, - "c6": 21.408690050127667, - "c7": -34.044797815440006 + "points": { + "c1": 13.021133808583606, + "c2": -25.861458068002115, + "c3": 35.04796736147228, + "c4": -54.21383342995844, + "c5": -3.9117677659161316, + "c6": -53.32485419412665, + "c7": -38.668297857020534 }, - "vertexSeeds": { - "c1": 3.26862312853557, - "c2": 4.4195359809587345, - "c3": 4.573639168670981, - "c4": 4.6162030231079765, - "c5": 4.307460090525371, - "c6": 4.324113094328457, - "c7": 4.475174256765641 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653257, + "c3": 5.547850208044383, + "c4": 4.438280166435506, + "c5": 3.3287101248266286, + "c6": 2.2191400832177544, + "c7": 1.1095700416088772 }, "rgb": [58, 15, 49] }, @@ -289500,23 +289500,23 @@ "year": 1787, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 20.49910139959818, - "c2": 16.021699600770546, - "c3": -34.64512419458297, - "c4": -13.312247860502012, - "c5": -12.061391648248296, - "c6": -11.502066657642096, - "c7": 24.1854431354974 + "points": { + "c1": -37.97114449163817, + "c2": 16.70028116956643, + "c3": -1.1876490137840818, + "c4": -23.39451934345822, + "c5": -16.32179491617151, + "c6": 26.76468441285669, + "c7": 36.88942869841477 }, - "vertexSeeds": { - "c1": 7.78439793362703, - "c2": 6.798300282204653, - "c3": 7.143631040685195, - "c4": 7.646101740735764, - "c5": 7.847107421456885, - "c6": 7.165828175892862, - "c7": 7.483016007657864 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531207, + "c3": 9.500693481276006, + "c4": 7.600554785020805, + "c5": 5.7004160887656035, + "c6": 3.8002773925104023, + "c7": 1.9001386962552012 }, "rgb": [86, 146, 138] }, @@ -289527,23 +289527,23 @@ "year": 1787, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 7.834123594742209, - "c2": -8.159236563539494, - "c3": -15.510017630555279, - "c4": -9.974738502610709, - "c5": 21.270701864818697, - "c6": -3.707741468400563, - "c7": -8.089390095895943 + "points": { + "c1": -14.88027153669503, + "c2": -21.191717513151833, + "c3": -25.430094070858416, + "c4": 15.045526262359317, + "c5": -1.770771883380057, + "c6": -8.722113865102372, + "c7": -18.632085700398076 }, - "vertexSeeds": { - "c1": 2.6221314240073124, - "c2": 2.614474984715984, - "c3": 2.6058911869071095, - "c4": 2.622637670146262, - "c5": 2.6058752340140474, - "c6": 2.6084992258305175, - "c7": 2.6101720339346004 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.772538141470198, + "c3": 3.143781784558519, + "c4": 2.5150254276468407, + "c5": 1.8862690707350367, + "c6": 1.2575127138233577, + "c7": 0.6287563569116789 }, "rgb": [86, 146, 138] }, @@ -289554,23 +289554,23 @@ "year": 1787, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": -0.2124369256359202, - "c2": 51.54317963722968, - "c3": 2.4169702696779893, - "c4": 45.0565047669379, - "c5": -11.88373158966317, - "c6": 6.554484717551659, - "c7": 3.9594039501075926 + "points": { + "c1": 38.08730697547468, + "c2": 14.931675094537262, + "c3": -28.479121131804437, + "c4": -2.2568987851509235, + "c5": -16.245032705231807, + "c6": 47.81565425615451, + "c7": -46.32690026459272 }, - "vertexSeeds": { - "c1": 2.4244772852665823, - "c2": 2.2632431799685535, - "c3": 2.278454514509213, - "c4": 2.235015078961243, - "c5": 2.249907802800188, - "c6": 2.2417886296039566, - "c7": 2.3707074208307817 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679605, + "c3": 2.9126213592232992, + "c4": 2.3300970873786384, + "c5": 1.7475728155339774, + "c6": 1.165048543689322, + "c7": 0.5825242718446552 }, "rgb": [77, 76, 132] }, @@ -289581,23 +289581,23 @@ "year": 1787, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -5.216357674983662, - "c2": -24.57245782622927, - "c3": 20.566434902404318, - "c4": -20.84841487392128, - "c5": -20.487779958123593, - "c6": 43.221676625166076, - "c7": 2.38959584088861 + "points": { + "c1": -15.739369675169904, + "c2": -40.05097364674323, + "c3": -39.924453247778295, + "c4": 43.810602184834714, + "c5": 0.029719006365354517, + "c6": 0.3540838506226507, + "c7": 2.705916997473487 }, - "vertexSeeds": { - "c1": 1.7787751448941236, - "c2": 1.7507435478460536, - "c3": 1.8372312087434384, - "c4": 1.8120871864493335, - "c5": 1.7573321467076306, - "c6": 1.7927928750625362, - "c7": 1.817515791248101 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.7184466019417473, + "c3": 2.2653721682847894, + "c4": 1.8122977346278315, + "c5": 1.3592233009708736, + "c6": 0.9061488673139158, + "c7": 0.4530744336569579 }, "rgb": [77, 76, 132] }, @@ -289608,23 +289608,23 @@ "year": 1787, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 12.816273606646718, - "c2": 4.645289241035023, - "c3": -7.371002972792255, - "c4": -5.795061185751607, - "c5": -40.53777612535947, - "c6": 31.723071260331267, - "c7": 14.74976541257336 + "points": { + "c1": 16.55744281969048, + "c2": 9.209495750603594, + "c3": 41.62549829149293, + "c4": 38.46415302251101, + "c5": -8.992023164662555, + "c6": -34.3102694238469, + "c7": -36.5241964967869 }, - "vertexSeeds": { - "c1": 4.989302152842344, - "c2": 4.9038581989205525, - "c3": 4.976130741597966, - "c4": 4.974985574396526, - "c5": 5.218867433338989, - "c6": 5.200869351989199, - "c7": 5.244179471270268 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020809, + "c3": 6.33379565418401, + "c4": 5.067036523347191, + "c5": 3.800277392510393, + "c6": 2.5335182616735956, + "c7": 1.2667591308367978 }, "rgb": [58, 15, 49] }, @@ -289635,23 +289635,23 @@ "year": 1788, "resistanceReported": false, "duration": 51840000, - "curveSeeds": { - "c1": 52.73784184153401, - "c2": 26.382432478975545, - "c3": -18.859726945622754, - "c4": -12.010163466809558, - "c5": 11.25603174157898, - "c6": -56.07218049095824, - "c7": 8.683615818783252 + "points": { + "c1": -42.60372952353481, + "c2": 4.7167565444854205, + "c3": 15.309911158294426, + "c4": -14.399438012841173, + "c5": -61.540192140808045, + "c6": 30.05733684683983, + "c7": 41.27931177148828 }, - "vertexSeeds": { - "c1": 3.9122979140820986, - "c2": 3.892854696729366, - "c3": 4.028474912932991, - "c4": 3.9192731541023287, - "c5": 3.942603158212797, - "c6": 4.049716235740647, - "c7": 3.861263303241743 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -289662,23 +289662,23 @@ "year": 1787, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -11.556462023724864, - "c2": 5.420740942185848, - "c3": -1.6258872581698682, - "c4": 3.106798263011598, - "c5": -19.603911048902006, - "c6": 18.159423020049005, - "c7": -9.687755113550141 + "points": { + "c1": -17.9980407946139, + "c2": 23.440115342564795, + "c3": -17.13085575801094, + "c4": -25.551614868683934, + "c5": -16.4379822008067, + "c6": -20.243347395558246, + "c7": 27.117503511485992 }, - "vertexSeeds": { - "c1": 1.1274206869429122, - "c2": 1.1205961094199377, - "c3": 1.0696110305350737, - "c4": 1.0570866186987353, - "c5": 1.3011120976208277, - "c6": 1.0425785188019858, - "c7": 1.1057282776553734 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350893, + "c3": 1.571890892279242, + "c4": 1.257512713823394, + "c5": 0.9431345353675457, + "c6": 0.6287563569116974, + "c7": 0.31437817845584926 }, "rgb": [86, 146, 138] }, @@ -289689,23 +289689,23 @@ "year": 1787, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 23.035960283496326, - "c2": -8.842048090195938, - "c3": 11.406234508230778, - "c4": -25.423641297034912, - "c5": 5.7156672437988725, - "c6": 22.28888588226498, - "c7": -12.190297521460417 + "points": { + "c1": 28.579209427572717, + "c2": 24.416431995093273, + "c3": 22.004719620413685, + "c4": -11.615263189401666, + "c5": -29.110275364524217, + "c6": -25.11802241698645, + "c7": -1.7005883503327794 }, - "vertexSeeds": { - "c1": 7.689508773076729, - "c2": 7.766840711462985, - "c3": 7.648873807166804, - "c4": 7.751266577058505, - "c5": 7.764267120207575, - "c6": 7.69076426911324, - "c7": 7.7232658564778145 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667129007, + "c3": 9.269533055940862, + "c4": 7.41562644475265, + "c5": 5.561719833564504, + "c6": 3.707813222376358, + "c7": 1.8539066111882125 }, "rgb": [238, 201, 159] }, @@ -289716,23 +289716,23 @@ "year": 1787, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 26.155654546418255, - "c2": -3.88729111610931, - "c3": -17.05368989756489, - "c4": -31.53454774002559, - "c5": -33.98428933701021, - "c6": 13.23591007683659, - "c7": -2.119569657004128 + "points": { + "c1": 2.939315574832847, + "c2": 28.488677381014945, + "c3": -2.2468147050008938, + "c4": -18.63866768516901, + "c5": 36.66430523956762, + "c6": -13.24342052894016, + "c7": 16.293129178632775 }, - "vertexSeeds": { - "c1": 6.473404665656615, - "c2": 7.099566766931485, - "c3": 6.596661623462612, - "c4": 6.990927942713148, - "c5": 7.165436964036233, - "c6": 7.072845685902662, - "c7": 6.872398963150703 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069343, + "c4": 6.934812760055472, + "c5": 5.2011095700416, + "c6": 3.467406380027744, + "c7": 1.733703190013872 }, "rgb": [222, 0, 59] }, @@ -289743,23 +289743,23 @@ "year": 1787, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 33.071187153512696, - "c2": -29.961174713231685, - "c3": -2.998699583255757, - "c4": 1.7461951826846303, - "c5": 15.684148585519175, - "c6": 39.451789561892554, - "c7": -34.33159904577883 + "points": { + "c1": -33.58838437863042, + "c2": -32.27669315988962, + "c3": 40.21685955635118, + "c4": -14.731728959200108, + "c5": 12.780092755929275, + "c6": -35.084582392576785, + "c7": 4.767803195803943 }, - "vertexSeeds": { - "c1": 5.2871537206596235, - "c2": 5.081862549447167, - "c3": 5.400703354956487, - "c4": 5.161785046036755, - "c5": 5.06103116088773, - "c6": 5.309983393394233, - "c7": 5.803170145823643 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307905, + "c3": 7.073509015256586, + "c4": 5.658807212205265, + "c5": 4.244105409153946, + "c6": 2.8294036061026264, + "c7": 1.4147018030513197 }, "rgb": [86, 146, 138] }, @@ -289770,23 +289770,23 @@ "year": 1787, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 25.741172789432476, - "c2": -38.89348975120186, - "c3": -39.40714274018434, - "c4": 17.55066166847999, - "c5": -14.74309832523345, - "c6": -39.80748242648422, - "c7": -2.238376312626059 + "points": { + "c1": -28.424756397953217, + "c2": -20.276316621236237, + "c3": 30.87585248943754, + "c4": 25.025167195723505, + "c5": 31.09354749900968, + "c6": 14.78920895864654, + "c7": -35.61340023516236 }, - "vertexSeeds": { - "c1": 3.0287313039199892, - "c2": 2.9830555251475395, - "c3": 2.97584049749744, - "c4": 3.07393308708372, - "c5": 3.088376304538851, - "c6": 2.922220648501536, - "c7": 2.963602310011703 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515946, + "c3": 3.744798890429964, + "c4": 2.9958391123439685, + "c5": 2.246879334257973, + "c6": 1.497919556171978, + "c7": 0.7489597780859953 }, "rgb": [222, 0, 59] }, @@ -289797,23 +289797,23 @@ "year": 1787, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -10.010578630513411, - "c2": -18.959784541794747, - "c3": -24.62746211591627, - "c4": -17.25266316713492, - "c5": 22.480560994913574, - "c6": -31.486007125175576, - "c7": -25.67629156677723 + "points": { + "c1": -27.08989761560769, + "c2": 22.811643634303387, + "c3": -3.904248559630698, + "c4": 17.317522123450672, + "c5": 17.91900788393525, + "c6": -7.8711036374699255, + "c7": -23.409629089873672 }, - "vertexSeeds": { - "c1": 6.062669273505276, - "c2": 6.284838609972048, - "c3": 6.043571068729853, - "c4": 5.936017831655233, - "c5": 5.8033410358496145, - "c6": 6.4596216336005865, - "c7": 6.16110750805302 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675452, + "c3": 7.859454461396212, + "c4": 6.2875635691169744, + "c5": 4.715672676837734, + "c6": 3.1437817845584792, + "c7": 1.5718908922792396 }, "rgb": [58, 15, 49] }, @@ -289824,23 +289824,23 @@ "year": 1787, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 26.842485116695514, - "c2": -21.88030895073866, - "c3": -6.503426537220214, - "c4": 39.471999687832735, - "c5": 10.263620197976664, - "c6": -15.189184209428056, - "c7": -12.178899850140276 + "points": { + "c1": 25.566420697047633, + "c2": 19.630624827278552, + "c3": -49.116585449560446, + "c4": 29.10108294958411, + "c5": -36.052187145996726, + "c6": -21.10284943775123, + "c7": 28.681363219241618 }, - "vertexSeeds": { - "c1": 8.220169648801583, - "c2": 8.241693991676222, - "c3": 8.124510298737617, - "c4": 8.60887194905338, - "c5": 8.069784264502502, - "c6": 8.0257882297646, - "c7": 8.555633248916578 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019412, + "c3": 10.355987055016168, + "c4": 8.284789644012948, + "c5": 6.213592233009706, + "c6": 4.142394822006463, + "c7": 2.0711974110032427 }, "rgb": [238, 201, 159] }, @@ -289851,23 +289851,23 @@ "year": 1787, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 15.616336129635123, - "c2": -36.52988903548098, - "c3": -34.36348101452485, - "c4": 35.02734086114692, - "c5": 26.933414142123546, - "c6": -17.192058081609098, - "c7": -45.50478834871309 + "points": { + "c1": 10.414069853259676, + "c2": 0.25541097801466606, + "c3": 45.38903071631177, + "c4": -36.655391589654755, + "c5": -8.219908556697625, + "c6": -6.839175355059737, + "c7": 18.764771199127374 }, - "vertexSeeds": { - "c1": 4.080908460026447, - "c2": 3.999150370141212, - "c3": 4.052210237841293, - "c4": 4.2484263772602375, - "c5": 3.998627253190443, - "c6": 4.04094258912396, - "c7": 4.059772795840073 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049927, + "c3": 5.201109570041614, + "c4": 4.160887656033288, + "c5": 3.1206657420249635, + "c6": 2.0804438280166497, + "c7": 1.0402219140083249 }, "rgb": [238, 201, 159] }, @@ -289878,23 +289878,23 @@ "year": 1787, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -42.78451897419176, - "c2": -37.468637126405895, - "c3": -0.01492027049439315, - "c4": 34.97759979900553, - "c5": -6.140327586525338, - "c6": -19.048990402500152, - "c7": -0.6482541149088021 + "points": { + "c1": -30.009807072246673, + "c2": -36.3042667188017, + "c3": 35.05659858174491, + "c4": -0.34661847208980845, + "c5": -13.367425924205705, + "c6": -5.032578829569957, + "c7": -2.951289760976202 }, - "vertexSeeds": { - "c1": 11.513500145647399, - "c2": 11.628709323704712, - "c3": 11.732677396384998, - "c4": 11.772775290119597, - "c5": 11.740948784845525, - "c6": 11.494027213791052, - "c7": 11.452818292977726 + "offsets": { + "c1": 19.70873786407767, + "c2": 16.893203883495197, + "c3": 14.077669902912604, + "c4": 11.262135922330131, + "c5": 8.44660194174754, + "c6": 5.631067961165066, + "c7": 2.8155339805824737 }, "rgb": [77, 76, 132] }, @@ -289905,23 +289905,23 @@ "year": 1787, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -6.1731266463966215, - "c2": 5.155474084950622, - "c3": 15.908820814961988, - "c4": -15.000126527515087, - "c5": -24.970420333915612, - "c6": -27.251291543335455, - "c7": -24.55016457614107 + "points": { + "c1": -22.194196426797127, + "c2": -13.798820203643281, + "c3": -7.476770696351576, + "c4": -23.89007832732088, + "c5": 24.790010855622672, + "c6": -25.228275920790974, + "c7": 7.58973380125882 }, - "vertexSeeds": { - "c1": 5.585231245096083, - "c2": 5.875361421708292, - "c3": 5.59577364722843, - "c4": 5.570885648008274, - "c5": 5.795483948411935, - "c6": 5.809563188083313, - "c7": 5.887070644429211 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227453, + "c3": 7.027276930189566, + "c4": 5.621821544151647, + "c5": 4.216366158113726, + "c6": 2.8109107720758395, + "c7": 1.4054553860379198 }, "rgb": [77, 76, 132] }, @@ -289932,23 +289932,23 @@ "year": 1787, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -33.28597860854001, - "c2": 25.45052216528032, - "c3": -34.47536213999848, - "c4": -35.33031695351159, - "c5": -10.217243256404878, - "c6": -11.973192804648676, - "c7": -9.209735371796462 + "points": { + "c1": 37.393607052988685, + "c2": -31.527643606281508, + "c3": 18.499737546334636, + "c4": 11.404800067119062, + "c5": 22.641147885056142, + "c6": 39.124199798545305, + "c7": 27.309030273131512 }, - "vertexSeeds": { - "c1": 8.689241124217261, - "c2": 8.545357448222866, - "c3": 8.905043422159633, - "c4": 8.787091156417294, - "c5": 8.554829742451812, - "c6": 8.21747220544651, - "c7": 8.12488833507729 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904296, + "c3": 10.86453999075359, + "c4": 8.691631992602868, + "c5": 6.518723994452148, + "c6": 4.345815996301426, + "c7": 2.1729079981507216 }, "rgb": [77, 76, 132] }, @@ -289959,23 +289959,23 @@ "year": 1787, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 38.69476370559848, - "c2": 46.18922037639913, - "c3": -18.9727938193853, - "c4": 30.213878778846173, - "c5": -34.48529585182136, - "c6": 40.84350703881827, - "c7": -18.534290543774876 + "points": { + "c1": -40.13201750413164, + "c2": -29.43911280141938, + "c3": 11.84749956081022, + "c4": -17.78503263892486, + "c5": -31.389493239014854, + "c6": -28.7489510011025, + "c7": -4.203737980941497 }, - "vertexSeeds": { - "c1": 4.421715816046445, - "c2": 4.484831818314222, - "c3": 4.402745724616773, - "c4": 4.445519443098008, - "c5": 4.2620750049776195, - "c6": 4.238649145083365, - "c7": 4.272864528897341 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.478502080443828, + "c4": 4.382801664355062, + "c5": 3.2871012482662967, + "c6": 2.191400832177531, + "c7": 1.0957004160887656 }, "rgb": [222, 0, 59] }, @@ -289986,23 +289986,23 @@ "year": 1787, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -19.432631285988386, - "c2": 30.00924646371033, - "c3": -9.038683771375464, - "c4": 24.512927617405776, - "c5": -6.911210718471331, - "c6": -22.756516847036778, - "c7": -19.063659670508365 + "points": { + "c1": -8.612588766801984, + "c2": -11.587695870770954, + "c3": -27.521817433944317, + "c4": -8.737856225586214, + "c5": -3.238048311151278, + "c6": -18.128318405514374, + "c7": 31.186536212432827 }, - "vertexSeeds": { - "c1": 4.062098462483767, - "c2": 4.059369904930782, - "c3": 3.7845996585331108, - "c4": 4.000465579774226, - "c5": 4.010836838552133, - "c6": 4.068106217950642, - "c7": 4.09178943421203 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527046, + "c3": 4.900601017105871, + "c4": 3.920480813684697, + "c5": 2.940360610263523, + "c6": 1.9602404068423485, + "c7": 0.9801202034211742 }, "rgb": [222, 0, 59] }, @@ -290013,23 +290013,23 @@ "year": 1787, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 28.93757822014667, - "c2": -8.396171975973203, - "c3": -21.566720304666365, - "c4": 41.15196294183604, - "c5": -3.54252474754513, - "c6": 14.293655359997715, - "c7": 28.07535865305504 + "points": { + "c1": -14.044286609885063, + "c2": -7.654577769482316, + "c3": -36.66217150874241, + "c4": -13.516642656833668, + "c5": -13.795309934885758, + "c6": 43.78233901349078, + "c7": 6.43421705066018 }, - "vertexSeeds": { - "c1": 8.794179294481696, - "c2": 8.858133923804228, - "c3": 8.915020941148402, - "c4": 8.723476929610474, - "c5": 8.630241527075203, - "c6": 8.3336907416079, - "c7": 8.923664120931921 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582536, + "c3": 10.679611650485434, + "c4": 8.543689320388358, + "c5": 6.407766990291256, + "c6": 4.271844660194179, + "c7": 2.135922330097102 }, "rgb": [86, 146, 138] }, @@ -290040,23 +290040,23 @@ "year": 1787, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 9.27072240047939, - "c2": -25.315588139049513, - "c3": -4.812899448467988, - "c4": 22.614751211412344, - "c5": -11.40381724348615, - "c6": 9.828998751985072, - "c7": 18.87018531782437 + "points": { + "c1": 9.96024798683359, + "c2": 11.783559385270355, + "c3": 16.236308095651058, + "c4": -22.832274201928712, + "c5": -11.683566364430888, + "c6": -8.977955946577026, + "c7": 7.667841276772759 }, - "vertexSeeds": { - "c1": 4.071270696398646, - "c2": 4.232499415556084, - "c3": 4.370015673627905, - "c4": 4.331980900763125, - "c5": 4.175688991779707, - "c6": 4.172587908094294, - "c7": 4.161098954968378 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090157, + "c3": 5.224225612575135, + "c4": 4.1793804900601, + "c5": 3.1345353675450784, + "c6": 2.0896902450300567, + "c7": 1.0448451225150348 }, "rgb": [86, 146, 138] }, @@ -290067,23 +290067,23 @@ "year": 1788, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": 32.74138784355236, - "c2": -22.851887689081153, - "c3": 28.294086474787704, - "c4": 32.76295192176612, - "c5": -22.637693702762682, - "c6": 51.310055954492654, - "c7": -6.849186387063774 + "points": { + "c1": 40.20941113028209, + "c2": 6.163561497826564, + "c3": 15.424724472090546, + "c4": 59.9242923772683, + "c5": -23.903753929711343, + "c6": -19.598929838335984, + "c7": 32.3562426319134 }, - "vertexSeeds": { - "c1": 4.188411881368524, - "c2": 4.539860319908977, - "c3": 4.094796835777184, - "c4": 3.8946500091316425, - "c5": 3.194200731232691, - "c6": 4.232757996899492, - "c7": 3.237467109540888 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532594, + "c3": 5.478502080443829, + "c4": 4.382801664355064, + "c5": 3.2871012482662985, + "c6": 2.1914008321775333, + "c7": 1.0957004160887651 }, "rgb": [86, 146, 138] }, @@ -290094,23 +290094,23 @@ "year": 1787, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -26.70905375001979, - "c2": -24.61744975529049, - "c3": -1.4755546137713367, - "c4": -37.9128662887665, - "c5": -5.319488237542885, - "c6": 27.409334463277574, - "c7": -15.937838473975926 + "points": { + "c1": 12.355301769858876, + "c2": -2.086809863667682, + "c3": -1.0233286017331267, + "c4": -0.2677455955003012, + "c5": 3.395930116577105, + "c6": 22.154974551909547, + "c7": 13.21719553616672 }, - "vertexSeeds": { - "c1": 4.527097650940183, - "c2": 4.51307700617006, - "c3": 4.543496309460582, - "c4": 4.487067514284404, - "c5": 4.581286447948345, - "c6": 4.58167495803373, - "c7": 4.50431493347483 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653268, + "c3": 5.547850208044379, + "c4": 4.438280166435512, + "c5": 3.3287101248266233, + "c6": 2.219140083217756, + "c7": 1.109570041608867 }, "rgb": [238, 201, 159] }, @@ -290121,23 +290121,23 @@ "year": 1787, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -2.554258978870614, - "c2": -30.21517858318972, - "c3": 24.641892151818276, - "c4": 41.39374097738341, - "c5": -34.781168697670644, - "c6": 44.226064610515415, - "c7": -23.690298186323226 + "points": { + "c1": 24.382591548907563, + "c2": 1.730223405486484, + "c3": -18.58264320946874, + "c4": -33.479526421895905, + "c5": 0.06144672508291649, + "c6": 34.79185617045734, + "c7": 32.04152172909172 }, - "vertexSeeds": { - "c1": 6.363147416822421, - "c2": 6.77412317639908, - "c3": 7.136209633796271, - "c4": 6.615864632000197, - "c5": 7.370299776211715, - "c6": 6.9565577626441275, - "c7": 7.313032575867541 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404995, + "c3": 8.853444290337498, + "c4": 7.08275543227, + "c5": 5.3120665742024915, + "c6": 3.5413777161349937, + "c7": 1.7706888580674969 }, "rgb": [86, 146, 138] }, @@ -290148,23 +290148,23 @@ "year": 1787, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 1.2050021949030665, - "c2": -31.921840783774883, - "c3": -23.5595898405033, - "c4": -20.52976974926279, - "c5": -16.156555817795507, - "c6": -18.224306687376696, - "c7": -21.526940234232754 + "points": { + "c1": -17.670362213746856, + "c2": -27.196168266164662, + "c3": 19.92240926418455, + "c4": -4.164967059686635, + "c5": 10.145848042432995, + "c6": 27.060528862357607, + "c7": -7.399264788944567 }, - "vertexSeeds": { - "c1": 8.616645888415924, - "c2": 8.655320517451573, - "c3": 8.670257990678738, - "c4": 8.70150415210532, - "c5": 8.294672975155759, - "c6": 8.61146221237541, - "c7": 8.661569326370405 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059629, + "c3": 10.379103097549715, + "c4": 8.303282478039764, + "c5": 6.227461858529814, + "c6": 4.151641239019865, + "c7": 2.07582061950995 }, "rgb": [238, 201, 159] }, @@ -290175,23 +290175,23 @@ "year": 1788, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 21.269937505364666, - "c2": 17.38952178038511, - "c3": -10.812885394122297, - "c4": 33.52855282069214, - "c5": 19.578522907918696, - "c6": -1.0082885639970414, - "c7": -2.752188842841356 + "points": { + "c1": 23.609139394181256, + "c2": -53.36027621180998, + "c3": -48.81738712447081, + "c4": -4.555618336273611, + "c5": -44.97789373924497, + "c6": 15.274951401778026, + "c7": -45.5321067800673 }, - "vertexSeeds": { - "c1": 4.3147817936767465, - "c2": 4.147604690058918, - "c3": 4.222909039562177, - "c4": 4.222087317396492, - "c5": 4.468014514148784, - "c6": 4.507263582934819, - "c7": 4.3590387654172424 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411927, + "c3": 5.40915395284327, + "c4": 4.327323162274614, + "c5": 3.245492371705958, + "c6": 2.1636615811373128, + "c7": 1.0818307905686564 }, "rgb": [77, 76, 132] }, @@ -290202,23 +290202,23 @@ "year": 1787, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": 4.099435910261967, - "c2": -47.45562738724021, - "c3": -13.067346800157871, - "c4": 34.282596865452646, - "c5": 26.241011188737446, - "c6": 17.551322610464396, - "c7": 41.25047133086737 + "points": { + "c1": -34.66616465216105, + "c2": 47.16757511808159, + "c3": 37.446864448015575, + "c4": 37.788784069915465, + "c5": -4.777423348053489, + "c6": 2.589341872307635, + "c7": -23.76618544472039 }, - "vertexSeeds": { - "c1": 3.744742464794531, - "c2": 3.6565270906913545, - "c3": 3.841017855981271, - "c4": 3.7442950939859276, - "c5": 3.842371382108545, - "c6": 3.7709471957896707, - "c7": 3.745488908983438 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044375, + "c3": 4.623208506703654, + "c4": 3.6985668053629173, + "c5": 2.773925104022196, + "c6": 1.8492834026814586, + "c7": 0.9246417013407375 }, "rgb": [222, 0, 59] }, @@ -290229,23 +290229,23 @@ "year": 1787, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 13.957526964420598, - "c2": -1.2009929709424192, - "c3": -13.641330235869095, - "c4": 3.0761622634311827, - "c5": -4.869946365169689, - "c6": 13.325727243380218, - "c7": -30.099200546287285 + "points": { + "c1": 13.633718271033857, + "c2": 27.273793606166755, + "c3": -5.809355806503902, + "c4": -17.835821525464606, + "c5": -23.191058718865452, + "c6": 21.58946711005371, + "c7": -26.09790509079534 }, - "vertexSeeds": { - "c1": 2.0443464095474453, - "c2": 2.041469383951961, - "c3": 2.090339545864384, - "c4": 2.136260705793103, - "c5": 2.037156299240415, - "c6": 2.1315581886173347, - "c7": 2.0795400163391413 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300527, + "c5": 1.567267683772541, + "c6": 1.0448451225150241, + "c7": 0.5224225612575121 }, "rgb": [222, 0, 59] }, @@ -290256,23 +290256,23 @@ "year": 1787, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 15.576190245733095, - "c2": 23.854873301542483, - "c3": 28.748144899280845, - "c4": 23.432655653742103, - "c5": -4.628962785704445, - "c6": -44.57840716488778, - "c7": -12.168773740235295 + "points": { + "c1": 44.62468410250723, + "c2": 23.952149394391057, + "c3": -12.508467390218115, + "c4": -0.8108712675526348, + "c5": -9.90976971262851, + "c6": -24.68768682167049, + "c7": 22.53055510211705 }, - "vertexSeeds": { - "c1": 3.7279015806027718, - "c2": 3.734168983995648, - "c3": 3.8018806696394623, - "c4": 3.7814220044706346, - "c5": 3.6930846738597087, - "c6": 3.7534726238333813, - "c7": 3.821272983015108 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044388, + "c3": 4.6232085067036435, + "c4": 3.6985668053629186, + "c5": 2.773925104022194, + "c6": 1.8492834026814697, + "c7": 0.9246417013407245 }, "rgb": [238, 201, 159] }, @@ -290283,23 +290283,23 @@ "year": 1788, "resistanceReported": false, "duration": 50284800, - "curveSeeds": { - "c1": -11.697462140770973, - "c2": 8.044743603161649, - "c3": 7.234372583996816, - "c4": 24.127639742796816, - "c5": 5.694672795786843, - "c6": 6.087701778749874, - "c7": 0.4835478962081936 + "points": { + "c1": -67.07737415408613, + "c2": -47.5505935387702, + "c3": -64.44059916325803, + "c4": -16.30274007771571, + "c5": -31.521891011771217, + "c6": 4.091510330332682, + "c7": 47.90427871704853 }, - "vertexSeeds": { - "c1": 4.737701144798749, - "c2": 4.659188550716073, - "c3": 4.461481077438425, - "c4": 4.941350769142795, - "c5": 4.368361156634516, - "c6": 4.596058820593912, - "c7": 4.967224092047441 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377253, + "c3": 5.9639389736477115, + "c4": 4.771151178918169, + "c5": 3.5783633841886267, + "c6": 2.3855755894590844, + "c7": 1.1927877947295422 }, "rgb": [86, 146, 138] }, @@ -290310,23 +290310,23 @@ "year": 1787, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -3.063265857766119, - "c2": 21.13294768094508, - "c3": 12.947836963943992, - "c4": -28.034500051908278, - "c5": -24.251770690012542, - "c6": -0.8484372540377585, - "c7": 21.96297026447131 + "points": { + "c1": 22.652387628491205, + "c2": 24.114287520592043, + "c3": 23.59521815691189, + "c4": -9.320710118172425, + "c5": 10.582045854584628, + "c6": 14.616576876634504, + "c7": 5.508077012992594 }, - "vertexSeeds": { - "c1": 3.4210031350139536, - "c2": 3.4321839935324214, - "c3": 3.2520565832865445, - "c4": 3.201789785475066, - "c5": 3.232713690852811, - "c6": 3.277961695946761, - "c7": 3.3472929406739724 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159499, + "c3": 4.114655570966247, + "c4": 3.291724456773008, + "c5": 2.468793342579756, + "c6": 1.645862228386504, + "c7": 0.822931114193252 }, "rgb": [77, 76, 132] }, @@ -290337,23 +290337,23 @@ "year": 1787, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 2.0257241661246397, - "c2": -36.051465489455246, - "c3": 46.97268713421955, - "c4": -43.74913810700917, - "c5": -30.576430308345767, - "c6": -5.83455839239096, - "c7": -35.146421833621325 + "points": { + "c1": 35.7076499728911, + "c2": 10.81476661772885, + "c3": -34.98681874809476, + "c4": -24.38054268278877, + "c5": -17.361398748512464, + "c6": 17.744209021070496, + "c7": -43.003984447702976 }, - "vertexSeeds": { - "c1": 11.00843797447589, - "c2": 10.922767561739104, - "c3": 11.727363024420638, - "c4": 10.962934596251324, - "c5": 11.9498771171046, - "c6": 11.697150959357922, - "c7": 10.844360282255787 + "offsets": { + "c1": 20.550161812297734, + "c2": 17.614424410540913, + "c3": 14.67868700878409, + "c4": 11.74294960702729, + "c5": 8.807212205270469, + "c6": 5.871474803513645, + "c7": 2.9357374017568225 }, "rgb": [77, 76, 132] }, @@ -290364,23 +290364,23 @@ "year": 1788, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": -50.478335808232224, - "c2": -22.360254028588045, - "c3": 20.59871361025442, - "c4": -41.936470586504974, - "c5": -43.085603171555974, - "c6": 31.203156324475046, - "c7": -40.51342268197941 + "points": { + "c1": -16.940075932167886, + "c2": -15.926354057398953, + "c3": -35.51839499894971, + "c4": -59.64114573251581, + "c5": -19.299816757622246, + "c6": -24.73644989325613, + "c7": 59.75353111531176 }, - "vertexSeeds": { - "c1": 6.353810502156624, - "c2": 6.337791753407519, - "c3": 6.149288126099648, - "c4": 6.146586458017795, - "c5": 6.150355258910961, - "c6": 6.420794210908589, - "c7": 6.705625795119864 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110956998, + "c3": 8.021266759130846, + "c4": 6.4170134073046725, + "c5": 4.812760055478499, + "c6": 3.208506703652326, + "c7": 1.6042533518261732 }, "rgb": [222, 0, 59] }, @@ -290391,23 +290391,23 @@ "year": 1787, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 7.408155802014328, - "c2": 31.92459091428851, - "c3": -36.860513182863315, - "c4": 3.6626475888143446, - "c5": -40.4737523730211, - "c6": -0.4561191597828582, - "c7": -31.80268773615998 + "points": { + "c1": 20.256184154903714, + "c2": 35.00887022816877, + "c3": -5.409382965060367, + "c4": -46.29724185134436, + "c5": -23.836680553325728, + "c6": 20.92839620937915, + "c7": -30.010085436131362 }, - "vertexSeeds": { - "c1": 6.844177110982687, - "c2": 7.593918645857873, - "c3": 6.173451265208983, - "c4": 6.287298420334919, - "c5": 6.190227556862978, - "c6": 8.130981006094766, - "c7": 6.9834823449011125 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054088, + "c3": 9.801202034211745, + "c4": 7.840961627369393, + "c5": 5.880721220527048, + "c6": 3.9204808136846965, + "c7": 1.9602404068423442 }, "rgb": [58, 15, 49] }, @@ -290418,23 +290418,23 @@ "year": 1787, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -10.796345418711008, - "c2": -19.10857496048454, - "c3": 11.88650204867313, - "c4": 18.172438596719473, - "c5": -0.8881174385480435, - "c6": -25.784614766178176, - "c7": 17.547574463053977 + "points": { + "c1": 21.329947890720057, + "c2": -21.015003815006406, + "c3": 16.379979491908315, + "c4": 13.71038277721022, + "c5": -27.53474861708772, + "c6": -9.26044727153809, + "c7": -26.036328688491086 }, - "vertexSeeds": { - "c1": 0.7988515832251407, - "c2": 0.8044920901060968, - "c3": 0.773640881195437, - "c4": 0.7674070480293119, - "c5": 0.81470054223571, - "c6": 0.8132001419749164, - "c7": 0.7964427805095257 + "offsets": { + "c1": 1.3915857605177993, + "c2": 1.1927877947295413, + "c3": 0.9939898289412866, + "c4": 0.7951918631530286, + "c5": 0.5963938973647707, + "c6": 0.39759593157651596, + "c7": 0.19879796578825798 }, "rgb": [238, 201, 159] }, @@ -290445,23 +290445,23 @@ "year": 1787, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -37.45714689137612, - "c2": 14.203812924210347, - "c3": -12.834684538764087, - "c4": 35.638690777431435, - "c5": -6.021755840614617, - "c6": -14.267007047674326, - "c7": 18.46891297606419 + "points": { + "c1": -3.040532948686142, + "c2": 21.782195201477023, + "c3": 32.83846067838935, + "c4": -0.8299319851204174, + "c5": -22.877195892408636, + "c6": 34.310159064368946, + "c7": 0.6358284254240587 }, - "vertexSeeds": { - "c1": 3.46388632995134, - "c2": 3.5971604597209743, - "c3": 3.4105106239643828, - "c4": 3.4022397378509432, - "c5": 3.1856506162283265, - "c6": 3.6729308252846025, - "c7": 3.337513022423316 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.32593619972261, + "c3": 4.438280166435503, + "c4": 3.550624133148404, + "c5": 2.662968099861305, + "c6": 1.775312066574205, + "c7": 0.8876560332870996 }, "rgb": [238, 201, 159] }, @@ -290472,23 +290472,23 @@ "year": 1787, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -20.3854867515088, - "c2": -14.106336173370762, - "c3": 0.5506662028072888, - "c4": -25.40110755909703, - "c5": -18.52505880910286, - "c6": -18.58114939462643, - "c7": 6.836983152276083 + "points": { + "c1": -1.969228114887688, + "c2": 28.50312873275614, + "c3": -3.8838887819145533, + "c4": 9.909197362630636, + "c5": -21.92771264510779, + "c6": 24.681179755830655, + "c7": -14.482419602471104 }, - "vertexSeeds": { - "c1": 6.377828151829322, - "c2": 6.352255098057466, - "c3": 6.647781929824087, - "c4": 6.522138382803537, - "c5": 6.346598495545349, - "c6": 6.809398080962675, - "c7": 6.740868865362156 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.81969486823856, + "c3": 8.183079056865472, + "c4": 6.546463245492381, + "c5": 4.9098474341192695, + "c6": 3.27323162274618, + "c7": 1.63661581137309 }, "rgb": [222, 0, 59] }, @@ -290499,23 +290499,23 @@ "year": 1787, "resistanceReported": true, "duration": 28166400, - "curveSeeds": { - "c1": 26.84787182568502, - "c2": 29.189123982694724, - "c3": -2.1827182168439165, - "c4": 13.249969977276265, - "c5": 38.52489358126435, - "c6": 33.31778032594191, - "c7": 36.422109257714595 + "points": { + "c1": -32.97548628473665, + "c2": -29.87032641345018, + "c3": 9.319519293617326, + "c4": 29.552560605354188, + "c5": 21.882701755904733, + "c6": 33.111133171513075, + "c7": -14.446968455128236 }, - "vertexSeeds": { - "c1": 4.139423897185538, - "c2": 3.3253100163736278, - "c3": 4.412778833758475, - "c4": 2.095897746016766, - "c5": 3.633229456970512, - "c6": 3.9705224374147905, - "c7": 3.0024911890380843 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210818, + "c3": 5.293573740175682, + "c4": 4.234858992140546, + "c5": 3.1761442441054086, + "c6": 2.117429496070273, + "c7": 1.0587147480351373 }, "rgb": [238, 201, 159] }, @@ -290526,23 +290526,23 @@ "year": 1787, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 8.138781960554105, - "c2": 16.358895171087944, - "c3": 12.624516125269416, - "c4": -21.358804316942496, - "c5": 2.79823923646142, - "c6": 4.197115975756091, - "c7": 5.8297994441939665 + "points": { + "c1": 11.214648626181045, + "c2": -8.50434977521164, + "c3": -23.83175422615533, + "c4": -17.638585281166428, + "c5": -14.15090508718307, + "c6": 21.10708215059286, + "c7": 15.05183537378771 }, - "vertexSeeds": { - "c1": 2.76940210978153, - "c2": 3.442829460688756, - "c3": 3.448172953281308, - "c4": 3.0284389583249776, - "c5": 3.5493599639865154, - "c6": 2.7074373350158325, - "c7": 3.5180245156215193 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.217753120665742, + "c3": 2.681460933888119, + "c4": 2.145168747110495, + "c5": 1.6088765603328719, + "c6": 1.0725843735552467, + "c7": 0.5362921867776234 }, "rgb": [58, 15, 49] }, @@ -290553,23 +290553,23 @@ "year": 1788, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": 32.710760758293034, - "c2": -18.26655789755757, - "c3": 27.654709970621653, - "c4": 26.90618184004299, - "c5": 41.883583106047595, - "c6": 11.906929832446885, - "c7": -6.486546295278295 + "points": { + "c1": -45.82543655746515, + "c2": -39.28861839480973, + "c3": -38.534679939179085, + "c4": -36.685290634902096, + "c5": 13.584716425477154, + "c6": 30.500401859061384, + "c7": 42.0886273148015 }, - "vertexSeeds": { - "c1": 5.182930882344976, - "c2": 5.045291016053073, - "c3": 5.254176233694816, - "c4": 5.184320962107325, - "c5": 4.879589957695091, - "c6": 4.949732104916058, - "c7": 5.295304120123569 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101254, + "c3": 6.380027739251031, + "c4": 5.104022191400829, + "c5": 3.828016643550627, + "c6": 2.5520110957004247, + "c7": 1.2760055478502124 }, "rgb": [238, 201, 159] }, @@ -290580,23 +290580,23 @@ "year": 1787, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -6.070829881486652, - "c2": -16.29189317375063, - "c3": 20.89712608103582, - "c4": 9.400734919849093, - "c5": -10.521829261091888, - "c6": -16.432628403394247, - "c7": -7.175339943747765 + "points": { + "c1": -5.902968538987135, + "c2": -5.097190482476847, + "c3": -21.083798912410284, + "c4": 19.08953323641289, + "c5": 24.144302819078277, + "c6": -5.957930518695477, + "c7": 8.138460297426349 }, - "vertexSeeds": { - "c1": 4.193093985306914, - "c2": 4.2542340215667895, - "c3": 4.224208467501254, - "c4": 3.7903700339845527, - "c5": 4.1786578426247, - "c6": 3.860709520341106, - "c7": 4.228967652988877 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.108645399907532, + "c4": 4.086916319926029, + "c5": 3.0651872399445206, + "c6": 2.0434581599630115, + "c7": 1.0217290799815026 }, "rgb": [58, 15, 49] }, @@ -290607,23 +290607,23 @@ "year": 1787, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -2.0549310844710256, - "c2": 15.414092462599722, - "c3": -5.017098404009822, - "c4": 14.800964856947733, - "c5": 22.978850357941315, - "c6": 12.53201130286649, - "c7": -5.700846017052562 + "points": { + "c1": 9.2062929969827, + "c2": 11.302432722774785, + "c3": -5.0198516487224225, + "c4": 23.266657764679433, + "c5": 3.9692907288167767, + "c6": -0.3338284506991691, + "c7": -29.265061040335862 }, - "vertexSeeds": { - "c1": 7.093913843274993, - "c2": 6.68930000154757, - "c3": 6.921313393514994, - "c4": 6.827257015017099, - "c5": 7.0909778112649, - "c6": 6.760139610077711, - "c7": 6.809727271546666 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801662, + "c3": 8.506703652334712, + "c4": 6.805362921867779, + "c5": 5.104022191400831, + "c6": 3.402681460933883, + "c7": 1.7013407304669481 }, "rgb": [222, 0, 59] }, @@ -290634,23 +290634,23 @@ "year": 1788, "resistanceReported": false, "duration": 46569600, - "curveSeeds": { - "c1": 7.512816718489411, - "c2": -13.717996728904538, - "c3": 30.37011900014253, - "c4": -24.232077284494153, - "c5": -29.419066607708004, - "c6": 45.03503207380958, - "c7": -58.66028431845769 + "points": { + "c1": 10.851166709946902, + "c2": 27.348400338225737, + "c3": -7.932305129060012, + "c4": 3.8293928933017654, + "c5": -9.596233715066923, + "c6": -30.21786557659236, + "c7": -12.99983631962835 }, - "vertexSeeds": { - "c1": 4.811212958137275, - "c2": 5.104435279365483, - "c3": 4.887441373384572, - "c4": 4.9627340490413205, - "c5": 4.893232415384575, - "c6": 4.6707790345700815, - "c7": 4.7638058046145435 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618579, + "c3": 6.10263522884883, + "c4": 4.882108183079059, + "c5": 3.6615811373092897, + "c6": 2.4410540915395296, + "c7": 1.2205270457697701 }, "rgb": [58, 15, 49] }, @@ -290661,23 +290661,23 @@ "year": 1787, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 14.020293422088407, - "c2": -15.28424998746497, - "c3": -12.822946444445122, - "c4": 25.484279583419628, - "c5": 14.591070779492185, - "c6": -13.592585283053518, - "c7": 18.820511672139183 + "points": { + "c1": -1.4576515695103254, + "c2": 14.102109313580108, + "c3": 22.93046291368126, + "c4": -13.528417015802084, + "c5": 15.638178691303004, + "c6": 20.10065452149737, + "c7": -24.269872037846113 }, - "vertexSeeds": { - "c1": 5.750514948618438, - "c2": 5.721620052085081, - "c3": 5.859958245795013, - "c4": 5.919217759957617, - "c5": 5.847692591740591, - "c6": 5.966633773479422, - "c7": 5.65369682004028 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468806, + "c3": 7.165973185390657, + "c4": 5.732778548312537, + "c5": 4.2995839112343885, + "c6": 2.8663892741562687, + "c7": 1.43319463707812 }, "rgb": [238, 201, 159] }, @@ -290688,23 +290688,23 @@ "year": 1787, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 43.95535478339142, - "c2": -20.223741406666253, - "c3": -3.3316890132606645, - "c4": -29.47325801732429, - "c5": -34.56692562127, - "c6": 17.16954338337076, - "c7": 44.24319310404146 + "points": { + "c1": -39.84982018094983, + "c2": -28.281435270910006, + "c3": -11.787304844703222, + "c4": -23.324054103345837, + "c5": -44.251544379813936, + "c6": 35.095101112279984, + "c7": -4.381159720717051 }, - "vertexSeeds": { - "c1": 6.971308893591509, - "c2": 7.177073763313934, - "c3": 7.281956311722456, - "c4": 7.298612728891227, - "c5": 7.112881564817064, - "c6": 7.298477340046076, - "c7": 6.837162290564213 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -290715,23 +290715,23 @@ "year": 1788, "resistanceReported": false, "duration": 48902400, - "curveSeeds": { - "c1": -2.2807210372473534, - "c2": -52.24159012350061, - "c3": -5.585969472753128, - "c4": 60.12139225144503, - "c5": 23.705585029813918, - "c6": 41.79903545086576, - "c7": 50.30065839955999 + "points": { + "c1": 57.13347863238485, + "c2": 4.8352158130706755, + "c3": 60.92675643425288, + "c4": 47.991131510407754, + "c5": -50.025921622150854, + "c6": -54.500171501566626, + "c7": 40.300734858228466 }, - "vertexSeeds": { - "c1": 4.139794524401931, - "c2": 4.28807397533724, - "c3": 4.087047565879978, - "c4": 3.999378024617267, - "c5": 4.402006933812482, - "c6": 4.3310760902316865, - "c7": 4.001226618463969 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532597, + "c3": 5.478502080443827, + "c4": 4.382801664355064, + "c5": 3.287101248266295, + "c6": 2.191400832177532, + "c7": 1.095700416088763 }, "rgb": [86, 146, 138] }, @@ -290742,23 +290742,23 @@ "year": 1788, "resistanceReported": false, "duration": 40348800, - "curveSeeds": { - "c1": 37.451918219984286, - "c2": 29.67567338964303, - "c3": 37.43657660194717, - "c4": -52.30019505015636, - "c5": 27.07413178837573, - "c6": 48.217151279226464, - "c7": 20.59102126425882 + "points": { + "c1": -8.114918355327035, + "c2": 40.504929680566384, + "c3": 50.11526311534133, + "c4": -22.04888890283052, + "c5": -33.05126609605792, + "c6": -23.135049982352314, + "c7": 34.8463302443618 }, - "vertexSeeds": { - "c1": 8.40888353504157, - "c2": 7.26131043590878, - "c3": 7.983144068091921, - "c4": 7.986213663284673, - "c5": 6.109790077335456, - "c6": 7.009235039174165, - "c7": 7.757291518268358 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456309, + "c3": 10.032362459546926, + "c4": 8.02588996763754, + "c5": 6.019417475728154, + "c6": 4.01294498381877, + "c7": 2.006472491909385 }, "rgb": [86, 146, 138] }, @@ -290769,23 +290769,23 @@ "year": 1787, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": 11.402025625500922, - "c2": -10.861555437800675, - "c3": 14.656172315631856, - "c4": -10.261063336582094, - "c5": 16.877834238203377, - "c6": -12.905754218091115, - "c7": -6.946888304349924 + "points": { + "c1": 17.890210991455554, + "c2": -5.41563647657749, + "c3": -8.24829045411151, + "c4": 16.556717785785345, + "c5": -17.827063981668903, + "c6": 1.576183762365769, + "c7": -20.651151966393357 }, - "vertexSeeds": { - "c1": 1.152541410798955, - "c2": 1.1000091254363251, - "c3": 1.1249990765752447, - "c4": 1.0554511906325197, - "c5": 1.052085545349596, - "c6": 1.1807794841519648, - "c7": 1.07310297978351 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937597, + "c3": 1.433194637078132, + "c4": 1.1465557096625065, + "c5": 0.8599167822468788, + "c6": 0.5732778548312533, + "c7": 0.28663892741562563 }, "rgb": [58, 15, 49] }, @@ -290796,23 +290796,23 @@ "year": 1787, "resistanceReported": true, "duration": 13305600, - "curveSeeds": { - "c1": -14.302827955432692, - "c2": -0.3201498498518873, - "c3": 21.325245004706083, - "c4": -6.231161331758447, - "c5": -13.394103171536289, - "c6": -24.093556444484424, - "c7": -4.3703565658708285 + "points": { + "c1": 22.868938728292562, + "c2": 1.413046788613105, + "c3": -9.121696455053804, + "c4": -21.29389313892732, + "c5": 9.127815874583476, + "c6": 9.60981942039934, + "c7": 8.425631875914462 }, - "vertexSeeds": { - "c1": 4.0803244869381174, - "c2": 4.003242504384373, - "c3": 4.160173121346323, - "c4": 4.025948422920238, - "c5": 4.3250018615186265, - "c6": 4.380412512641913, - "c7": 4.029709382079228 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130374, + "c3": 5.247341655108645, + "c4": 4.197873324086916, + "c5": 3.148404993065187, + "c6": 2.098936662043458, + "c7": 1.049468331021729 }, "rgb": [222, 0, 59] }, @@ -290823,23 +290823,23 @@ "year": 1787, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 15.573450504707367, - "c2": -38.46449968390896, - "c3": 20.699123558244153, - "c4": 10.227202037137232, - "c5": 2.576525835071614, - "c6": 3.550785281502151, - "c7": 37.4075700071258 + "points": { + "c1": 36.880346451665574, + "c2": -11.84257520562187, + "c3": 14.786983519679708, + "c4": -16.84068509573573, + "c5": 3.9074972222991633, + "c6": 25.67518238633761, + "c7": -25.867545887166937 }, - "vertexSeeds": { - "c1": 8.058239099417886, - "c2": 8.660428661605689, - "c3": 8.571839487946654, - "c4": 7.952564956053892, - "c5": 8.96475516326906, - "c6": 8.73201398492744, - "c7": 8.097772654579426 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864075, + "c3": 10.841423948220061, + "c4": 8.67313915857606, + "c5": 6.504854368932045, + "c6": 4.33656957928803, + "c7": 2.168284789644015 }, "rgb": [222, 0, 59] }, @@ -290850,23 +290850,23 @@ "year": 1787, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -4.010597484700078, - "c2": 29.59236715243319, - "c3": -23.1340378910758, - "c4": -17.60652720607281, - "c5": -25.047598490635664, - "c6": -9.986190213815455, - "c7": 15.26731819309299 + "points": { + "c1": 30.58991154590221, + "c2": 9.465229738432974, + "c3": 0.3606225268634091, + "c4": 9.470070461767854, + "c5": -9.13146423850359, + "c6": 4.904007807803119, + "c7": 33.787788215319395 }, - "vertexSeeds": { - "c1": 6.539889062764406, - "c2": 6.307618648696747, - "c3": 6.5494484399302655, - "c4": 6.235475750351797, - "c5": 6.895445207712183, - "c6": 6.3927774878593935, - "c7": 6.891485422054095 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343966, + "c3": 8.298659269533058, + "c4": 6.638927415626441, + "c5": 4.979195561719838, + "c6": 3.3194637078132203, + "c7": 1.6597318539066026 }, "rgb": [77, 76, 132] }, @@ -290877,23 +290877,23 @@ "year": 1788, "resistanceReported": false, "duration": 61603200, - "curveSeeds": { - "c1": -76.15026446076924, - "c2": 40.380953234383824, - "c3": 49.168043213341164, - "c4": -16.766563911241704, - "c5": -39.51311221461724, - "c6": -21.26711917353463, - "c7": -61.44505715727086 + "points": { + "c1": -67.85673122861246, + "c2": -3.5403262311080823, + "c3": 12.67398873174075, + "c4": 60.51544375797452, + "c5": -22.719855153430252, + "c6": 77.25281851426978, + "c7": 72.2214467126396 }, - "vertexSeeds": { - "c1": 2.9477241987941456, - "c2": 3.10741533180992, - "c3": 3.110333191587976, - "c4": 3.1639987086907677, - "c5": 3.126477842418956, - "c6": 3.1644313521590517, - "c7": 3.0173754556009564 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596394, + "c3": 3.791030975496995, + "c4": 3.0328247803975956, + "c5": 2.274618585298197, + "c6": 1.5164123901987978, + "c7": 0.7582061950993989 }, "rgb": [77, 76, 132] }, @@ -290904,23 +290904,23 @@ "year": 1788, "resistanceReported": true, "duration": 39657600, - "curveSeeds": { - "c1": -36.586781623149655, - "c2": 1.7479250234356911, - "c3": 1.2801705503872753, - "c4": 38.0748982830082, - "c5": -37.323733328976374, - "c6": 2.0624100509307013, - "c7": 16.41467010120369 + "points": { + "c1": -41.52349446646857, + "c2": -52.034122071803985, + "c3": -18.35483309026231, + "c4": 17.820559164851865, + "c5": -0.0240365299618972, + "c6": 34.85410062921124, + "c7": 34.322297425864654 }, - "vertexSeeds": { - "c1": 15.075647111970277, - "c2": 13.4007288080615, - "c3": 14.20578928976478, - "c4": 15.659871679415508, - "c5": 15.243211575686068, - "c6": 13.33366430191351, - "c7": 12.369445524736616 + "offsets": { + "c1": 26.537216828478964, + "c2": 22.746185852981963, + "c3": 18.95515487748498, + "c4": 15.164123901987976, + "c5": 11.37309292649099, + "c6": 7.582061950993988, + "c7": 3.791030975496986 }, "rgb": [238, 201, 159] }, @@ -290931,23 +290931,23 @@ "year": 1787, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": -8.337298180601426, - "c2": -4.437990512616571, - "c3": -12.946553334682525, - "c4": -7.723292112451302, - "c5": 15.465070021620392, - "c6": -10.491840001669887, - "c7": 9.550953727839381 + "points": { + "c1": -6.012960854574141, + "c2": 1.8475688555379968, + "c3": 14.490587196070358, + "c4": 6.997130364154085, + "c5": -9.271089814674962, + "c6": 6.165144798871296, + "c7": 0.5007443167351262 }, - "vertexSeeds": { - "c1": 6.505736403350869, - "c2": 6.510534655058301, - "c3": 6.327550082033648, - "c4": 6.820186992588792, - "c5": 6.666592810156269, - "c6": 6.648144997897702, - "c7": 6.454770553405291 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238548, + "c3": 8.183079056865468, + "c4": 6.546463245492365, + "c5": 4.9098474341192855, + "c6": 3.2732316227461826, + "c7": 1.6366158113730802 }, "rgb": [77, 76, 132] }, @@ -290958,23 +290958,23 @@ "year": 1787, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -22.92390656423008, - "c2": -11.046936844609316, - "c3": -21.756854089933565, - "c4": 25.72465293043289, - "c5": 27.285988868256503, - "c6": -21.006103954087607, - "c7": 19.548324874795696 + "points": { + "c1": -12.883349729803783, + "c2": 27.476629851872488, + "c3": -3.610641290376801, + "c4": 20.16206133687394, + "c5": -10.796468843380204, + "c6": -2.368801251903502, + "c7": -29.42129596611842 }, - "vertexSeeds": { - "c1": 2.8205433084693574, - "c2": 2.8265139254539324, - "c3": 2.767729958793478, - "c4": 2.8911256617726138, - "c5": 2.9369814104998357, - "c6": 2.8940030216130994, - "c7": 2.822818889595362 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274617, + "c3": 3.606102635228845, + "c4": 2.8848821081830853, + "c5": 2.1636615811373137, + "c6": 1.4424410540915427, + "c7": 0.7212205270457713 }, "rgb": [238, 201, 159] }, @@ -290985,23 +290985,23 @@ "year": 1788, "resistanceReported": false, "duration": 49680000, - "curveSeeds": { - "c1": -51.91118698100659, - "c2": 36.767426177458816, - "c3": 28.052562193646793, - "c4": -30.336051650950047, - "c5": 15.020369002298196, - "c6": -42.31211652208981, - "c7": 10.690681151790514 + "points": { + "c1": -62.79168969008269, + "c2": -37.26809377171018, + "c3": 52.00455570444281, + "c4": -8.633193389917523, + "c5": -26.322255004134753, + "c6": 13.281647753805814, + "c7": 1.5409548143778267 }, - "vertexSeeds": { - "c1": 3.167580954895095, - "c2": 3.292045397383332, - "c3": 3.205159808190967, - "c4": 3.276137306329888, - "c5": 3.1431832415370464, - "c6": 3.264896406285549, - "c7": 3.328035315157103 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388355, + "c3": 4.045307443365696, + "c4": 3.236245954692557, + "c5": 2.4271844660194177, + "c6": 1.6181229773462784, + "c7": 0.8090614886731392 }, "rgb": [58, 15, 49] }, @@ -291012,23 +291012,23 @@ "year": 1787, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -21.75254314644055, - "c2": -0.10162315011673684, - "c3": 5.38188597392762, - "c4": 3.064269673167342, - "c5": 2.303289437565642, - "c6": -14.592649260722311, - "c7": 22.97010901087617 + "points": { + "c1": -20.605786988596257, + "c2": 20.484954575766942, + "c3": -17.63961646519642, + "c4": 6.408256982659601, + "c5": 2.068999896115116, + "c6": 32.76584827053112, + "c7": -21.728407814829133 }, - "vertexSeeds": { - "c1": 3.478248275510947, - "c2": 3.478986483426161, - "c3": 3.655746476081362, - "c4": 3.5768788278626613, - "c5": 3.738240126336264, - "c6": 3.5741815361008356, - "c7": 3.5145986855111127 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843276, + "c3": 4.507628294036056, + "c4": 3.606102635228847, + "c5": 2.704576976421638, + "c6": 1.803051317614418, + "c7": 0.901525658807209 }, "rgb": [86, 146, 138] }, @@ -291039,23 +291039,23 @@ "year": 1787, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": 16.584905943732203, - "c2": -11.093159948106956, - "c3": -7.277599664231477, - "c4": -2.0400916004427394, - "c5": 12.03720233602494, - "c6": 9.404183810129535, - "c7": -1.930984453486957 + "points": { + "c1": -17.928460352227333, + "c2": 5.397970004068167, + "c3": -19.41776604007827, + "c4": 19.559210412637157, + "c5": -0.4602924938923536, + "c6": 4.78615225595826, + "c7": 14.887086048899462 }, - "vertexSeeds": { - "c1": 0.9126605584642514, - "c2": 0.8941404827205508, - "c3": 0.9008575079427293, - "c4": 0.8961315868720173, - "c5": 0.9062342999793142, - "c6": 0.9033831994944653, - "c7": 0.8950902424191594 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.331484049930647, + "c3": 1.109570041608878, + "c4": 0.8876560332870981, + "c5": 0.6657420249653291, + "c6": 0.44382801664354904, + "c7": 0.22191400832178004 }, "rgb": [77, 76, 132] }, @@ -291066,23 +291066,23 @@ "year": 1787, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 8.973983979540975, - "c2": -24.809552369448596, - "c3": -23.364903881574786, - "c4": 25.384466587832186, - "c5": -21.61641377260274, - "c6": 14.380782404283394, - "c7": -1.7277561792381384 + "points": { + "c1": 28.125080598896538, + "c2": -29.53392549422903, + "c3": -1.4586137756003623, + "c4": -26.72587257635078, + "c5": 32.78448589353005, + "c6": -32.783278649832, + "c7": -32.260541670037455 }, - "vertexSeeds": { - "c1": 5.317833476842921, - "c2": 5.343581233418517, - "c3": 6.032889790657425, - "c4": 5.833841780746178, - "c5": 5.968211550261789, - "c6": 5.568021205443018, - "c7": 5.856942717170724 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750343, + "c3": 7.327785483125295, + "c4": 5.862228386500234, + "c5": 4.396671289875171, + "c6": 2.9311141932501235, + "c7": 1.4655570966250617 }, "rgb": [58, 15, 49] }, @@ -291093,23 +291093,23 @@ "year": 1788, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -10.62321507996191, - "c2": 2.4830481465143848, - "c3": -0.02912671111226217, - "c4": -13.43439426180639, - "c5": -5.854767505449708, - "c6": -44.60610244322739, - "c7": -3.213734952484657 + "points": { + "c1": -46.05427484084857, + "c2": -20.14704530205098, + "c3": -6.194063437586138, + "c4": 26.631519292397734, + "c5": 45.94383938980875, + "c6": 42.46639235246136, + "c7": -11.009663001959204 }, - "vertexSeeds": { - "c1": 6.051028356025839, - "c2": 6.505940494815286, - "c3": 7.0229667653175865, - "c4": 7.055267297111123, - "c5": 6.370212763190252, - "c6": 5.9473603471716165, - "c7": 7.017332276881134 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922329, + "c3": 8.576051779935275, + "c4": 6.860841423948219, + "c5": 5.1456310679611645, + "c6": 3.4304207119741097, + "c7": 1.7152103559870548 }, "rgb": [222, 0, 59] }, @@ -291120,23 +291120,23 @@ "year": 1788, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 12.340706390583279, - "c2": -43.005180077922304, - "c3": 7.7782878221581555, - "c4": -45.62183439945078, - "c5": -25.033134332809777, - "c6": 3.043359924998292, - "c7": -22.957778637547225 + "points": { + "c1": -39.57418728442829, + "c2": 5.85163012860167, + "c3": 6.679902778092433, + "c4": 29.76685857034819, + "c5": -47.50562507343136, + "c6": -23.98596097718446, + "c7": 27.352638508738636 }, - "vertexSeeds": { - "c1": 8.997185980827652, - "c2": 9.066321990083535, - "c3": 8.910861435462818, - "c4": 8.979296824328129, - "c5": 9.000653342532052, - "c6": 9.092805551751121, - "c7": 9.018458145219688 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105394, + "c3": 10.980120203421198, + "c4": 8.784096162736947, + "c5": 6.588072122052697, + "c6": 4.3920480813684994, + "c7": 2.1960240406842497 }, "rgb": [238, 201, 159] }, @@ -291147,23 +291147,23 @@ "year": 1788, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 6.957034332145504, - "c2": -23.584431600007054, - "c3": -15.329459775115343, - "c4": 10.030803825125872, - "c5": -11.123901746155788, - "c6": 18.397839909599078, - "c7": 1.6994535122401686 + "points": { + "c1": 32.59420143771216, + "c2": -37.565730327251345, + "c3": 1.4608904926044985, + "c4": -31.599173764000987, + "c5": -37.09449022036442, + "c6": -34.61082759285242, + "c7": -17.748411819095328 }, - "vertexSeeds": { - "c1": 7.346383924255973, - "c2": 7.454918629671222, - "c3": 7.728132757445211, - "c4": 7.888138608798778, - "c5": 6.993882966708554, - "c6": 7.450370042924725, - "c7": 7.533385068060424 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651869, + "c3": 9.570041608876567, + "c4": 7.65603328710125, + "c5": 5.7420249653259345, + "c6": 3.828016643550618, + "c7": 1.9140083217753159 }, "rgb": [77, 76, 132] }, @@ -291174,23 +291174,23 @@ "year": 1788, "resistanceReported": false, "duration": 48297600, - "curveSeeds": { - "c1": -56.23512967640119, - "c2": 18.819866001643724, - "c3": -35.78255849055112, - "c4": -16.257470179176444, - "c5": -53.266095334648746, - "c6": 43.45551604083118, - "c7": 4.821280787674944 + "points": { + "c1": 4.161937345442695, + "c2": -35.95979797417383, + "c3": -42.288989463986844, + "c4": -31.679447037870233, + "c5": -9.744677827921656, + "c6": -63.50982350920778, + "c7": -13.894261817509381 }, - "vertexSeeds": { - "c1": 7.3566470739255605, - "c2": 7.067285868631932, - "c3": 7.049488645841107, - "c4": 7.3727404186986965, - "c5": 7.149219867831388, - "c6": 7.350330801232923, - "c7": 6.9832241346058535 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324545, + "c3": 8.807212205270444, + "c4": 7.04576976421637, + "c5": 5.284327323162272, + "c6": 3.5228848821081735, + "c7": 1.761442441054098 }, "rgb": [77, 76, 132] }, @@ -291201,23 +291201,23 @@ "year": 1789, "resistanceReported": false, "duration": 78105600, - "curveSeeds": { - "c1": -26.35924827504708, - "c2": -48.52785239199862, - "c3": 84.51381828982568, - "c4": -59.02728703047875, - "c5": -32.33638964184232, - "c6": 44.08661716115964, - "c7": -49.16744985894523 + "points": { + "c1": 13.128317552286504, + "c2": 36.46849696961149, + "c3": 64.26503863055103, + "c4": -49.00571407586502, + "c5": -14.976051077890915, + "c6": 15.078423078483667, + "c7": -11.213648599778097 }, - "vertexSeeds": { - "c1": 3.249675310446198, - "c2": 2.895868277180497, - "c3": 3.3214371571550165, - "c4": 3.2680502328248573, - "c5": 3.541814903084329, - "c6": 3.7968269315052394, - "c7": 3.917494181532045 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446601, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592233023, + "c6": 1.941747572815535, + "c7": 0.9708737864077674 }, "rgb": [86, 146, 138] }, @@ -291228,23 +291228,23 @@ "year": 1788, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": -16.05953775877599, - "c2": -49.09763694722933, - "c3": 3.613702885241622, - "c4": -42.45015268713635, - "c5": -11.762724213066207, - "c6": 28.675903504235094, - "c7": 42.6203461137831 + "points": { + "c1": -1.319412718741063, + "c2": -38.09252752856228, + "c3": -15.601629822463941, + "c4": -36.437221106128035, + "c5": 41.61938885884345, + "c6": 57.4875892350029, + "c7": -9.325073481731685 }, - "vertexSeeds": { - "c1": 2.8756476683937824, - "c2": 2.8756476683937824, - "c3": 2.8756476683937824, - "c4": 2.8756476683937824, - "c5": 2.8756476683937824, - "c6": 2.8756476683937824, - "c7": 2.8756476683937824 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -291255,23 +291255,23 @@ "year": 1787, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 6.0213605179747205, - "c2": 1.032805135525038, - "c3": 38.54264348318635, - "c4": 6.827241201077513, - "c5": -30.594961823616917, - "c6": 8.694666891285152, - "c7": -32.15550081484673 + "points": { + "c1": 11.335115694231838, + "c2": -21.98360926101049, + "c3": 11.322300228158511, + "c4": -27.248089284919516, + "c5": -25.602484731349882, + "c6": -16.26200474165808, + "c7": 24.072746992829025 }, - "vertexSeeds": { - "c1": 2.725641870634532, - "c2": 2.9150708041964286, - "c3": 2.6195751758741244, - "c4": 2.869691420861709, - "c5": 2.5559496678167224, - "c6": 2.55291383913469, - "c7": 2.5558807883722117 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.2163661581137335, + "c3": 3.513638465094775, + "c4": 2.810910772075822, + "c5": 2.108183079056864, + "c6": 1.405455386037911, + "c7": 0.7027276930189528 }, "rgb": [238, 201, 159] }, @@ -291282,23 +291282,23 @@ "year": 1788, "resistanceReported": false, "duration": 44928000, - "curveSeeds": { - "c1": -48.490871314936186, - "c2": -40.2329745006536, - "c3": 42.404527757914394, - "c4": 14.708435506672288, - "c5": 40.523991267319076, - "c6": -13.883482818186131, - "c7": 35.54022285542703 + "points": { + "c1": -48.423891179435344, + "c2": 26.499035957926267, + "c3": 50.62848550516766, + "c4": -33.43899936512895, + "c5": 54.69616083001992, + "c6": -26.339655708393174, + "c7": 35.74853433183395 }, - "vertexSeeds": { - "c1": 1.181136824810634, - "c2": 1.225131530995689, - "c3": 1.165334197616544, - "c4": 1.210655176349306, - "c5": 1.1649413513947438, - "c6": 1.1535379662492347, - "c7": 1.1650309716498326 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.803051317614427, + "c3": 1.5025427646786862, + "c4": 1.2020342117429514, + "c5": 0.9015256588072135, + "c6": 0.6010171058714757, + "c7": 0.30050855293573786 }, "rgb": [77, 76, 132] }, @@ -291309,23 +291309,23 @@ "year": 1788, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -43.71606972167457, - "c2": 9.646913175518073, - "c3": -6.963357226011723, - "c4": -23.719464921527806, - "c5": 15.036313281503986, - "c6": 9.677700295254184, - "c7": 40.027372353089326 + "points": { + "c1": -6.377085311875263, + "c2": -44.82966412221816, + "c3": -3.4731032025896837, + "c4": -41.74016397537111, + "c5": 17.084099378900454, + "c6": -44.49285154964036, + "c7": 8.724919274166247 }, - "vertexSeeds": { - "c1": 7.925227573931071, - "c2": 8.122179093840227, - "c3": 6.156228061139032, - "c4": 7.117341234943975, - "c5": 7.510675312011269, - "c6": 7.3836942604783555, - "c7": 7.4407585807807 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054095, + "c3": 9.801202034211743, + "c4": 7.840961627369393, + "c5": 5.880721220527048, + "c6": 3.9204808136847022, + "c7": 1.9602404068423511 }, "rgb": [86, 146, 138] }, @@ -291336,23 +291336,23 @@ "year": 1788, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": 45.81844928688485, - "c2": -3.0731587470051664, - "c3": 21.744428569272237, - "c4": 43.24364674450671, - "c5": 1.2866334350230701, - "c6": -13.578180148308455, - "c7": -31.418633028197384 + "points": { + "c1": 8.606930467910182, + "c2": -30.490888588260677, + "c3": 16.717174713684678, + "c4": 48.46577766282575, + "c5": -12.328060773382212, + "c6": 20.61936156519564, + "c7": 47.73478291119407 }, - "vertexSeeds": { - "c1": 8.438028452784083, - "c2": 8.341067623343859, - "c3": 8.197812000653624, - "c4": 8.44430500427584, - "c5": 8.342190520436917, - "c6": 7.94892593640804, - "c7": 8.014790359119813 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617205, + "c3": 10.12482662968099, + "c4": 8.099861303744795, + "c5": 6.074895977808603, + "c6": 4.049930651872388, + "c7": 2.024965325936194 }, "rgb": [86, 146, 138] }, @@ -291363,23 +291363,23 @@ "year": 1788, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 0.6085868991928152, - "c2": 22.830210678724207, - "c3": 4.968400025886986, - "c4": 13.18206455833419, - "c5": -1.6034434282888057, - "c6": -14.70968966537324, - "c7": -7.7315871295954395 + "points": { + "c1": -0.8734874159953563, + "c2": -20.752389981144542, + "c3": 17.52444533218192, + "c4": 24.332667666125907, + "c5": -31.775225055328143, + "c6": 11.921039632935212, + "c7": -21.549421280281067 }, - "vertexSeeds": { - "c1": 5.255817292886126, - "c2": 4.383667660862912, - "c3": 5.313200142546547, - "c4": 4.699863567681431, - "c5": 4.472421628712115, - "c6": 5.193535954405901, - "c7": 4.625877638445081 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061022, + "c3": 6.356911696717525, + "c4": 5.085529357374017, + "c5": 3.8141470180305137, + "c6": 2.542764678687011, + "c7": 1.271382339343503 }, "rgb": [238, 201, 159] }, @@ -291390,23 +291390,23 @@ "year": 1787, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -14.342181463881113, - "c2": 6.487287400489198, - "c3": -26.189664462258037, - "c4": -5.710278965164772, - "c5": -0.8699070302343443, - "c6": 5.447069393772878, - "c7": 18.94914806479174 + "points": { + "c1": 18.67445311874722, + "c2": 17.256252653611195, + "c3": -12.868914007812899, + "c4": -0.18145798226878185, + "c5": 18.568985699199676, + "c6": 3.5692031593756397, + "c7": -1.8789411667413844 }, - "vertexSeeds": { - "c1": 0.47939395957275677, - "c2": 0.5169020479278479, - "c3": 0.4833486330299296, - "c4": 0.5171021329604153, - "c5": 0.5590218540835197, - "c6": 0.5138378623129822, - "c7": 0.5302642161801185 + "offsets": { + "c1": 0.9708737864077669, + "c2": 0.8321775312066574, + "c3": 0.693481276005548, + "c4": 0.5547850208044385, + "c5": 0.4160887656033291, + "c6": 0.27739251040221957, + "c7": 0.13869625520111015 }, "rgb": [86, 146, 138] }, @@ -291417,23 +291417,23 @@ "year": 1787, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 40.225109330045214, - "c2": 3.844413528693842, - "c3": 21.622027229783036, - "c4": 29.17254857115715, - "c5": -14.346715636385994, - "c6": 24.444834557012996, - "c7": 14.184674129289988 + "points": { + "c1": -24.792017083304394, + "c2": 21.7535607943542, + "c3": 18.67408791718797, + "c4": 18.21843448082729, + "c5": 36.49382010647422, + "c6": 15.2957772045202, + "c7": -13.6140091162845 }, - "vertexSeeds": { - "c1": 4.768490091777275, - "c2": 4.621776716569379, - "c3": 4.68602024224985, - "c4": 4.733080893027269, - "c5": 4.6054738918132605, - "c6": 4.646514502409704, - "c7": 4.729891002456069 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934803, + "c3": 5.709662505779013, + "c4": 4.567730004623202, + "c5": 3.425797503467412, + "c6": 2.283865002311601, + "c7": 1.1419325011557901 }, "rgb": [222, 0, 59] }, @@ -291444,23 +291444,23 @@ "year": 1787, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 19.46181997811192, - "c2": -5.1235468728220965, - "c3": -19.441808884519205, - "c4": 21.56328546576316, - "c5": -16.84578633529942, - "c6": 15.244018912361696, - "c7": -21.679596923185194 + "points": { + "c1": -11.422618485402669, + "c2": -14.550007817386081, + "c3": 23.87477088004779, + "c4": -4.765149414152187, + "c5": 17.76897708382767, + "c6": -6.8327016548721815, + "c7": 26.626492335329537 }, - "vertexSeeds": { - "c1": 5.569293313289298, - "c2": 5.486603260961485, - "c3": 5.694078650364303, - "c4": 5.571712592581438, - "c5": 5.458572153987778, - "c6": 5.227939040804336, - "c7": 5.232406184945276 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.18307905686547, + "c3": 6.819232547387878, + "c4": 5.455386037910306, + "c5": 4.091539528432735, + "c6": 2.727693018955164, + "c7": 1.3638465094775711 }, "rgb": [222, 0, 59] }, @@ -291471,23 +291471,23 @@ "year": 1787, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 12.563465199961694, - "c2": -13.979785062008323, - "c3": 26.71325268278009, - "c4": -12.546698107050386, - "c5": -27.003381803723016, - "c6": 13.360345653854164, - "c7": 24.331192124220603 + "points": { + "c1": -21.442528119490806, + "c2": 21.23088998291262, + "c3": 5.469063394049822, + "c4": -29.601700841406007, + "c5": 6.889430199952525, + "c6": 2.927601471520777, + "c7": 16.197008690182724 }, - "vertexSeeds": { - "c1": 4.097728852659709, - "c2": 4.079697143185271, - "c3": 4.096141836088449, - "c4": 4.0726610950287325, - "c5": 4.061732949800703, - "c6": 4.08555524298036, - "c7": 4.060952098199496 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527074, + "c3": 4.90060101710583, + "c4": 3.920480813684683, + "c5": 2.940360610263537, + "c6": 1.9602404068423904, + "c7": 0.9801202034211465 }, "rgb": [58, 15, 49] }, @@ -291498,23 +291498,23 @@ "year": 1788, "resistanceReported": true, "duration": 33523200, - "curveSeeds": { - "c1": 36.83725018132457, - "c2": -31.823228262410257, - "c3": -38.13465250359627, - "c4": -29.717945683082107, - "c5": -3.3937062651180554, - "c6": 33.035183237678346, - "c7": -23.523730773814084 + "points": { + "c1": -10.47211364185668, + "c2": -7.755403355083338, + "c3": -26.653625335734716, + "c4": -25.923776185352864, + "c5": 5.966957825307858, + "c6": 18.088905624010657, + "c7": -37.800014194159544 }, - "vertexSeeds": { - "c1": 8.531432505572708, - "c2": 8.55934633244032, - "c3": 8.604755261327128, - "c4": 8.538935645337029, - "c5": 8.606802929095085, - "c6": 8.602446049317775, - "c7": 8.592524747351275 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963939034, + "c3": 10.309754969949127, + "c4": 8.247803975959355, + "c5": 6.1858529819694485, + "c6": 4.123901987979678, + "c7": 2.0619509939897704 }, "rgb": [222, 0, 59] }, @@ -291525,23 +291525,23 @@ "year": 1787, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 8.897488023244563, - "c2": -12.860435048476273, - "c3": 15.749753359482987, - "c4": 20.730761487900573, - "c5": -5.286427096413735, - "c6": 16.175352340578748, - "c7": 17.93005454733167 + "points": { + "c1": -22.412503770800473, + "c2": 23.277768706303384, + "c3": -22.75579993406845, + "c4": 21.12007401691745, + "c5": 5.474443710563261, + "c6": 11.89192914305255, + "c7": -20.760610543170074 }, - "vertexSeeds": { - "c1": 3.131735798235765, - "c2": 3.1077364291445284, - "c3": 3.172734443276293, - "c4": 3.263489860259581, - "c5": 3.1671375814044045, - "c6": 3.169019245423774, - "c7": 3.05815306202431 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877947, + "c3": 3.9528432732316228, + "c4": 3.162274618585298, + "c5": 2.3717059639389735, + "c6": 1.581137309292649, + "c7": 0.7905686546463245 }, "rgb": [238, 201, 159] }, @@ -291552,23 +291552,23 @@ "year": 1787, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": -17.928825356928158, - "c2": -3.839104892457595, - "c3": 15.598281944208786, - "c4": -11.847560814906956, - "c5": -5.468713084447781, - "c6": -20.54871189600849, - "c7": 12.218268157793801 + "points": { + "c1": -13.903066574666088, + "c2": -13.375564704374007, + "c3": -9.038785193983527, + "c4": 18.384672325628593, + "c5": -2.1787099077711325, + "c6": -4.039159256644936, + "c7": 21.651703831775905 }, - "vertexSeeds": { - "c1": 1.4522787376183792, - "c2": 1.4698781668742409, - "c3": 1.489683409606506, - "c4": 1.4389680493734438, - "c5": 1.4410319431652794, - "c6": 1.4484225077041573, - "c7": 1.4818970024532394 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166417, + "c3": 1.7337031900138662, + "c4": 1.3869625520110906, + "c5": 1.0402219140083266, + "c6": 0.6934812760055511, + "c7": 0.34674063800277555 }, "rgb": [86, 146, 138] }, @@ -291579,23 +291579,23 @@ "year": 1788, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": -32.51768773420112, - "c2": -3.123643760218066, - "c3": 50.35796562452232, - "c4": -4.636189672737018, - "c5": 7.906338787770736, - "c6": -28.703516019630502, - "c7": 49.79646183620888 + "points": { + "c1": -50.20448285394781, + "c2": 57.02236503933399, + "c3": 0.929542905342366, + "c4": 13.14394377790498, + "c5": 30.925483491627134, + "c6": -46.16001944567939, + "c7": 15.375049082064294 }, - "vertexSeeds": { - "c1": 10.69765984135295, - "c2": 11.136229809453308, - "c3": 10.698066010494367, - "c4": 10.917664372075762, - "c5": 10.418746250078094, - "c6": 10.600164233496418, - "c7": 10.674908486956332 + "offsets": { + "c1": 18.802588996763753, + "c2": 16.11650485436894, + "c3": 13.430420711974135, + "c4": 10.74433656957928, + "c5": 8.05825242718447, + "c6": 5.372168284789662, + "c7": 2.6860841423948094 }, "rgb": [222, 0, 59] }, @@ -291606,23 +291606,23 @@ "year": 1787, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -13.661344860127997, - "c2": 8.61144248122028, - "c3": 10.565140473138094, - "c4": 6.899586022703929, - "c5": 18.066188937685354, - "c6": 7.577904774537522, - "c7": 16.11852810709604 + "points": { + "c1": -22.666223489884906, + "c2": -21.31545074043312, + "c3": -3.787701601194705, + "c4": -9.116890353324258, + "c5": -25.94698559211927, + "c6": -9.294907973614059, + "c7": 26.654615717865276 }, - "vertexSeeds": { - "c1": 2.4880024595161636, - "c2": 1.4485070166781486, - "c3": 1.643047978524242, - "c4": 1.7965221021589797, - "c5": 1.5037486587700193, - "c6": 1.5630866378526855, - "c7": 2.092469633131122 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194175, + "c3": 3.5598705501618113, + "c4": 2.8478964401294498, + "c5": 2.1359223300970873, + "c6": 1.4239482200647249, + "c7": 0.711974110032362 }, "rgb": [58, 15, 49] }, @@ -291633,23 +291633,23 @@ "year": 1788, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": -5.39078497994376, - "c2": 24.840413993630804, - "c3": 14.507931169228627, - "c4": -2.893996603673507, - "c5": 10.803859940950446, - "c6": -7.115083255941535, - "c7": -19.229731350059616 + "points": { + "c1": -13.341789967136187, + "c2": -2.5593549539389215, + "c3": -31.7692386616993, + "c4": -21.075927553786173, + "c5": -54.87844911775282, + "c6": 4.464640411854624, + "c7": 7.260200457986528 }, - "vertexSeeds": { - "c1": 3.9379878593578836, - "c2": 4.089057077556501, - "c3": 3.9487338692019316, - "c4": 4.155147879800933, - "c5": 4.033440896170983, - "c6": 3.9639113717845698, - "c7": 3.9429713119407768 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.01941747572815, + "c3": 5.016181229773465, + "c4": 4.012944983818767, + "c5": 3.0097087378640808, + "c6": 2.0064724919093835, + "c7": 1.0032362459546862 }, "rgb": [86, 146, 138] }, @@ -291660,23 +291660,23 @@ "year": 1788, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -19.585075759370646, - "c2": 32.811374461812925, - "c3": -41.1821592182112, - "c4": 32.255591868898954, - "c5": -43.72358410283928, - "c6": -19.744004689619846, - "c7": -5.952898813012517 + "points": { + "c1": 30.967261114023906, + "c2": -22.685201176197875, + "c3": 32.9381852232792, + "c4": 12.786471013764078, + "c5": 4.80245969037108, + "c6": 31.34714021080365, + "c7": 3.206984022534961 }, - "vertexSeeds": { - "c1": 8.606979397231793, - "c2": 8.270748405596374, - "c3": 8.465211649864239, - "c4": 8.537994182349866, - "c5": 8.087205246023196, - "c6": 8.660477625574568, - "c7": 8.6749074049189 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099854, + "c3": 10.402219140083227, + "c4": 8.321775312066576, + "c5": 6.241331484049927, + "c6": 4.1608876560332995, + "c7": 2.0804438280166497 }, "rgb": [77, 76, 132] }, @@ -291687,23 +291687,23 @@ "year": 1788, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 34.73770112200096, - "c2": -26.790927870790714, - "c3": -22.621042900037615, - "c4": -27.11701070499441, - "c5": 3.3534196017707174, - "c6": -27.243935760656225, - "c7": -14.407267367441925 + "points": { + "c1": 40.390137587697076, + "c2": -38.46061361265426, + "c3": 13.33486627917732, + "c4": 18.334004746314008, + "c5": -40.24563702209878, + "c6": -0.20227079706448592, + "c7": -34.527328887765414 }, - "vertexSeeds": { - "c1": 3.3274678801236086, - "c2": 3.337271343578604, - "c3": 3.1404954144162223, - "c4": 3.352651057336795, - "c5": 3.0931257840708457, - "c6": 3.1278111934311466, - "c7": 3.1017624406174615 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038837, + "c3": 4.045307443365699, + "c4": 3.2362459546925617, + "c5": 2.4271844660194133, + "c6": 1.6181229773462755, + "c7": 0.8090614886731378 }, "rgb": [77, 76, 132] }, @@ -291714,23 +291714,23 @@ "year": 1787, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -18.335482637507155, - "c2": 17.51448887406952, - "c3": 14.100218419596999, - "c4": -19.704791345267807, - "c5": 16.858835880513666, - "c6": 8.642799192876709, - "c7": 6.047961255547865 + "points": { + "c1": -23.352522133004655, + "c2": 19.61889122802043, + "c3": -22.91945902350851, + "c4": -4.687664538861846, + "c5": 5.689741622257685, + "c6": -17.999629861855478, + "c7": -2.596154698642973 }, - "vertexSeeds": { - "c1": 3.7223637913203396, - "c2": 3.3787853861689987, - "c3": 3.164788469465715, - "c4": 3.132063911712051, - "c5": 3.8310712994508282, - "c6": 3.2451449224116127, - "c7": 3.7248607560132623 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274619, + "c3": 3.6061026352288503, + "c4": 2.884882108183078, + "c5": 2.1636615811373097, + "c6": 1.4424410540915407, + "c7": 0.7212205270457688 }, "rgb": [238, 201, 159] }, @@ -291741,23 +291741,23 @@ "year": 1787, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 4.7038948019503195, - "c2": 13.178312078753095, - "c3": 3.5991891762519472, - "c4": -13.538374651075191, - "c5": -27.227766205999504, - "c6": 4.632793786625889, - "c7": 5.9732501479338325 + "points": { + "c1": -0.9191683962245136, + "c2": -2.242450071520281, + "c3": -7.481725223988764, + "c4": 25.69643561898924, + "c5": 27.361706960767734, + "c6": -2.724384541508684, + "c7": 28.90302847255427 }, - "vertexSeeds": { - "c1": 0.8256497675413091, - "c2": 0.8693059115976137, - "c3": 0.8136887191341254, - "c4": 0.789632625414424, - "c5": 0.8483910844218963, - "c6": 0.8616827189685462, - "c7": 0.8498271997054536 + "offsets": { + "c1": 1.4886731391585761, + "c2": 1.276005547850208, + "c3": 1.0633379565418395, + "c4": 0.8506703652334734, + "c5": 0.638002773925105, + "c6": 0.4253351826167367, + "c7": 0.21266759130836835 }, "rgb": [58, 15, 49] }, @@ -291768,23 +291768,23 @@ "year": 1788, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": -42.19751335279618, - "c2": -11.987157111102483, - "c3": -47.14795243350939, - "c4": -21.48256010981822, - "c5": 28.8718166605733, - "c6": -32.36145739397687, - "c7": 2.4090303651243588 + "points": { + "c1": 36.235669428457285, + "c2": 13.457139012895894, + "c3": -25.347162529246493, + "c4": 33.21241869690773, + "c5": 13.783734503922616, + "c6": 15.59207942884862, + "c7": -37.394316895278656 }, - "vertexSeeds": { - "c1": 6.0075472804212176, - "c2": 6.3038765694170955, - "c3": 6.057750209439946, - "c4": 6.055738157985056, - "c5": 6.416343802610451, - "c6": 6.423394326466836, - "c7": 6.59793502520619 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.486823855755901, + "c3": 7.9056865464632375, + "c4": 6.324549237170594, + "c5": 4.7434119278779505, + "c6": 3.1622746185853066, + "c7": 1.5811373092926435 }, "rgb": [86, 146, 138] }, @@ -291795,23 +291795,23 @@ "year": 1787, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 21.7801500160409, - "c2": 38.97025915325568, - "c3": 38.94772146310375, - "c4": -10.843272868590685, - "c5": -4.387097891023181, - "c6": 13.635031497491298, - "c7": 27.5111790669568 + "points": { + "c1": 5.21480937694939, + "c2": 10.419784005439887, + "c3": 35.86291766619337, + "c4": -11.68646579109376, + "c5": -33.67503834001458, + "c6": 42.04374014627477, + "c7": 23.892363765042063 }, - "vertexSeeds": { - "c1": 6.644062990543491, - "c2": 7.018658881534271, - "c3": 6.281306414542771, - "c4": 6.499301347651093, - "c5": 6.113549876044964, - "c6": 7.102080420244554, - "c7": 6.2296197435266745 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [222, 0, 59] }, @@ -291822,23 +291822,23 @@ "year": 1787, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -15.119651277435892, - "c2": -12.000326501354007, - "c3": 19.279103646640912, - "c4": 21.279787177424154, - "c5": -1.894420019280524, - "c6": 15.499668157408152, - "c7": -8.335374339999449 + "points": { + "c1": -20.215303060617835, + "c2": 17.325551806146507, + "c3": -4.580492051837723, + "c4": 17.890892488814714, + "c5": -11.287953248958024, + "c6": -20.545002194496885, + "c7": -14.937815353285652 }, - "vertexSeeds": { - "c1": 5.755604415490625, - "c2": 5.944708641051759, - "c3": 6.042000649468257, - "c4": 5.94519710433358, - "c5": 6.051027779230118, - "c6": 5.907724293582093, - "c7": 6.186956572051687 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.87656033287102, + "c3": 7.3971336107258345, + "c4": 5.917706888580672, + "c5": 4.43828016643551, + "c6": 2.958853444290348, + "c7": 1.4794267221451622 }, "rgb": [77, 76, 132] }, @@ -291849,23 +291849,23 @@ "year": 1788, "resistanceReported": false, "duration": 48038400, - "curveSeeds": { - "c1": 14.306522701147522, - "c2": 23.735447283137937, - "c3": -7.0626017580170455, - "c4": -62.43155104872335, - "c5": -55.554583791630044, - "c6": 2.3591388639034463, - "c7": 22.169529185466523 + "points": { + "c1": 7.438519059678995, + "c2": 21.754611672284398, + "c3": 10.708727849338302, + "c4": 63.434835290541116, + "c5": 4.584937291386879, + "c6": 57.13268245141468, + "c7": -13.377221995010167 }, - "vertexSeeds": { - "c1": 8.327777255228154, - "c2": 7.917421610482513, - "c3": 7.873602986076053, - "c4": 7.899589804769843, - "c5": 8.399796605770657, - "c6": 8.242759558186837, - "c7": 7.81568826789872 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496538, + "c3": 10.055478502080435, + "c4": 8.044382801664351, + "c5": 6.033287101248269, + "c6": 4.022191400832186, + "c7": 2.011095700416083 }, "rgb": [238, 201, 159] }, @@ -291876,23 +291876,23 @@ "year": 1788, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": 19.18135341512898, - "c2": -45.02418897031513, - "c3": -36.697222341235815, - "c4": -32.737480817139414, - "c5": -13.907201599701743, - "c6": 10.698340791153399, - "c7": -36.227415325528646 + "points": { + "c1": -31.279847205464186, + "c2": -5.673723025957358, + "c3": -8.115751255422886, + "c4": 25.01784935955274, + "c5": -22.496162787751633, + "c6": -31.93936414806707, + "c7": 12.195478218859911 }, - "vertexSeeds": { - "c1": 10.091785426509606, - "c2": 8.679133039492921, - "c3": 9.401451094630554, - "c4": 9.660721407831234, - "c5": 9.251243951922188, - "c6": 9.803097661560225, - "c7": 9.633112155392343 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995833, + "c3": 12.066574202496533, + "c4": 9.65325936199722, + "c5": 7.239944521497922, + "c6": 4.82662968099861, + "c7": 2.4133148404992992 }, "rgb": [238, 201, 159] }, @@ -291903,23 +291903,23 @@ "year": 1788, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 1.343761595853458, - "c2": 24.339438598022028, - "c3": -4.736869698370292, - "c4": 1.4440308169381382, - "c5": 9.052881960766037, - "c6": -42.32567106904884, - "c7": -24.14671128909303 + "points": { + "c1": 33.191248395471774, + "c2": 21.379390958361782, + "c3": 26.391275199903404, + "c4": 29.597547889712985, + "c5": -38.96375568819023, + "c6": -27.90556230545708, + "c7": 39.65114961552804 }, - "vertexSeeds": { - "c1": 5.51480691191602, - "c2": 6.613720792179855, - "c3": 5.6399570222955875, - "c4": 6.003956094570759, - "c5": 6.0766707010911665, - "c6": 6.058431115103117, - "c7": 6.478878978075416 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.486823855755894, + "c3": 7.905686546463241, + "c4": 6.324549237170597, + "c5": 4.743411927877947, + "c6": 3.162274618585295, + "c7": 1.5811373092926513 }, "rgb": [58, 15, 49] }, @@ -291930,23 +291930,23 @@ "year": 1787, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -18.698000611548427, - "c2": 10.427439297728554, - "c3": -17.146059864666434, - "c4": -27.185222834310988, - "c5": 3.6335572853922073, - "c6": 26.912919293026704, - "c7": 7.2950926792156565 + "points": { + "c1": -6.695675162993382, + "c2": -10.626180550766438, + "c3": -7.888221222405193, + "c4": -1.0200912586183648, + "c5": 0.8588124856592216, + "c6": -10.612214556494003, + "c7": -31.683055385770384 }, - "vertexSeeds": { - "c1": 8.469559705987814, - "c2": 9.28080991926894, - "c3": 9.795153222986997, - "c4": 9.565440102940997, - "c5": 9.093298949757482, - "c6": 8.598462417760246, - "c7": 9.129270489526835 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754507, + "c3": 11.92787794729542, + "c4": 9.542302357836334, + "c5": 7.156726768377247, + "c6": 4.771151178918161, + "c7": 2.3855755894590747 }, "rgb": [58, 15, 49] }, @@ -291957,23 +291957,23 @@ "year": 1788, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": 11.876852126693564, - "c2": -41.5509697703865, - "c3": -21.00626449626043, - "c4": 26.6870143346283, - "c5": -7.9365647136118085, - "c6": 48.29457514826274, - "c7": 11.086576818151414 + "points": { + "c1": 48.68672895179276, + "c2": -49.34621012868154, + "c3": -6.417873189610312, + "c4": 14.866329072662197, + "c5": -23.802314356587026, + "c6": 11.921966901313155, + "c7": -0.3485207110061097 }, - "vertexSeeds": { - "c1": 7.939489807357749, - "c2": 8.236204283143119, - "c3": 8.490395526135346, - "c4": 8.268011811946643, - "c5": 8.212932490524414, - "c6": 8.108167582984391, - "c7": 8.394268664195252 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [58, 15, 49] }, @@ -291984,23 +291984,23 @@ "year": 1788, "resistanceReported": false, "duration": 44236800, - "curveSeeds": { - "c1": 49.01753653985762, - "c2": -30.14530173170498, - "c3": 46.67033120582196, - "c4": 25.764126373015095, - "c5": -27.207363357012547, - "c6": -29.001581706142826, - "c7": 29.654391049531718 + "points": { + "c1": -50.73439025528425, + "c2": -32.67695826124332, + "c3": 16.791275119924016, + "c4": 37.4700435018652, + "c5": 37.84925752896347, + "c6": 7.198578276939422, + "c7": 10.850767456614754 }, - "vertexSeeds": { - "c1": 5.506703021914942, - "c2": 5.894154042530883, - "c3": 5.693515473473701, - "c4": 5.646546121821901, - "c5": 5.913223898622912, - "c6": 5.487961662466185, - "c7": 5.528313285021163 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871012, + "c3": 7.397133610725842, + "c4": 5.917706888580671, + "c5": 4.438280166435512, + "c6": 2.958853444290342, + "c7": 1.479426722145171 }, "rgb": [238, 201, 159] }, @@ -292011,23 +292011,23 @@ "year": 1788, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -31.298295753644517, - "c2": 37.41602751664708, - "c3": 0.39252322357209835, - "c4": 11.779195407191672, - "c5": -9.123373183932337, - "c6": -9.217412725890256, - "c7": 5.198305783531126 + "points": { + "c1": -32.059290506014236, + "c2": 17.493320377992163, + "c3": -44.96463215985909, + "c4": -32.266599716581695, + "c5": 6.973152555404383, + "c6": 26.10178015129982, + "c7": 7.673136858334786 }, - "vertexSeeds": { - "c1": 6.937759226184976, - "c2": 6.918235708753448, - "c3": 7.221079909740634, - "c4": 6.766189019985452, - "c5": 7.257255412572244, - "c6": 6.851628943367816, - "c7": 6.80281032609298 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123446, + "c3": 8.691631992602856, + "c4": 6.953305594082289, + "c5": 5.214979195561723, + "c6": 3.476652797041156, + "c7": 1.738326398520567 }, "rgb": [222, 0, 59] }, @@ -292038,23 +292038,23 @@ "year": 1788, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -2.787279993812909, - "c2": -35.308824703688536, - "c3": 0.5824281295711344, - "c4": -27.802069074714673, - "c5": 2.9469290237933237, - "c6": 38.26142528579844, - "c7": 30.900993067466047 + "points": { + "c1": -38.58187005276204, + "c2": 23.65399667484968, + "c3": 8.5815252357324, + "c4": 25.46195401181639, + "c5": -28.315875926482814, + "c6": 7.92981735051697, + "c7": 27.195120740654332 }, - "vertexSeeds": { - "c1": 1.300729718167363, - "c2": 1.411208779327687, - "c3": 1.2039966907661652, - "c4": 1.5821297815609086, - "c5": 1.4520304233259789, - "c6": 1.1962615640046044, - "c7": 1.44290453144378 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.3578363384188625, + "c3": 1.9648636153490517, + "c4": 1.5718908922792412, + "c5": 1.1789181692094304, + "c6": 0.7859454461396213, + "c7": 0.39297272306980896 }, "rgb": [77, 76, 132] }, @@ -292065,23 +292065,23 @@ "year": 1788, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": -27.09217385699059, - "c2": -12.648400504729736, - "c3": 31.63437479061492, - "c4": -18.884750733365394, - "c5": -8.884263324596766, - "c6": -8.993419456532678, - "c7": -29.505431957789067 + "points": { + "c1": -20.888928887525815, + "c2": -28.22031405275462, + "c3": 49.67155522362956, + "c4": -28.66023650747232, + "c5": -5.718431466443697, + "c6": -16.72400453209527, + "c7": -55.41721523711162 }, - "vertexSeeds": { - "c1": 10.099413306054684, - "c2": 10.315455713678109, - "c3": 10.298890869300278, - "c4": 10.400292059684372, - "c5": 10.291584545570114, - "c6": 9.987635579732546, - "c7": 10.20009309419752 + "offsets": { + "c1": 17.702265372168284, + "c2": 15.173370319001394, + "c3": 12.644475265834501, + "c4": 10.115580212667567, + "c5": 7.586685159500674, + "c6": 5.057790106333783, + "c7": 2.5288950531668917 }, "rgb": [86, 146, 138] }, @@ -292092,23 +292092,23 @@ "year": 1788, "resistanceReported": false, "duration": 45360000, - "curveSeeds": { - "c1": 48.91415666147453, - "c2": 3.592138466262419, - "c3": 3.2892054137162887, - "c4": -0.044799997077980436, - "c5": 32.6110870198379, - "c6": 0.27372781718264605, - "c7": 20.964216981541874 + "points": { + "c1": 42.497078791952156, + "c2": 51.9822069267691, + "c3": 14.395081341824316, + "c4": -16.205044376921037, + "c5": -24.31149689655325, + "c6": 26.757682812182175, + "c7": -55.733828874580844 }, - "vertexSeeds": { - "c1": 10.015485223104585, - "c2": 10.094939831590201, - "c3": 8.872771889530217, - "c4": 9.858242098633113, - "c5": 8.959060058210046, - "c6": 10.070409841225235, - "c7": 8.420880367521423 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317613, + "c3": 12.251502542764678, + "c4": 9.80120203421174, + "c5": 7.350901525658811, + "c6": 4.900601017105874, + "c7": 2.450300508552937 }, "rgb": [77, 76, 132] }, @@ -292119,23 +292119,23 @@ "year": 1788, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": 37.39948738969593, - "c2": 25.31652582474147, - "c3": -42.71609905216775, - "c4": 29.899919394756402, - "c5": 31.912264422509686, - "c6": -26.766753553624085, - "c7": -36.94225585376016 + "points": { + "c1": 44.23426088348176, + "c2": 0.8751794386709406, + "c3": 6.040403637151755, + "c4": -14.204050716132983, + "c5": -29.212534613218484, + "c6": -14.296845740728585, + "c7": 7.416299381823308 }, - "vertexSeeds": { - "c1": 7.945950385680339, - "c2": 7.259791054728374, - "c3": 7.3917842621415195, - "c4": 8.048001995730566, - "c5": 8.01943891618706, - "c6": 7.869116681228728, - "c7": 7.940088538502132 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134534, + "c3": 9.847434119278779, + "c4": 7.877947295423023, + "c5": 5.908460471567267, + "c6": 3.9389736477115114, + "c7": 1.9694868238557557 }, "rgb": [222, 0, 59] }, @@ -292146,23 +292146,23 @@ "year": 1788, "resistanceReported": false, "duration": 42681600, - "curveSeeds": { - "c1": 28.009604448732702, - "c2": -45.17571666155561, - "c3": -43.62590469467779, - "c4": -38.17377728622562, - "c5": -3.380670805793649, - "c6": -54.32325398987498, - "c7": 1.7001416443635335 + "points": { + "c1": 40.007680715720696, + "c2": -8.789574972747857, + "c3": -7.034131511631109, + "c4": 13.857634053826487, + "c5": 46.35432306625229, + "c6": -42.05237305498645, + "c7": -25.638208491480142 }, - "vertexSeeds": { - "c1": 9.416087105636212, - "c2": 9.523527285998606, - "c3": 9.872367562453089, - "c4": 9.79155744965941, - "c5": 9.731896817479877, - "c6": 9.439232485943817, - "c7": 9.195892113285485 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513184, + "c3": 11.789181692094326, + "c4": 9.43134535367545, + "c5": 7.073509015256592, + "c6": 4.715672676837735, + "c7": 2.3578363384188776 }, "rgb": [222, 0, 59] }, @@ -292173,23 +292173,23 @@ "year": 1788, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -16.88712754459744, - "c2": 18.937366278909884, - "c3": -7.249423090743132, - "c4": 35.36630055962202, - "c5": 12.31195949901283, - "c6": -31.796337536913995, - "c7": -31.452423459639412 + "points": { + "c1": -18.61609251572605, + "c2": 39.04328741748499, + "c3": -36.01976992737449, + "c4": -19.432540397932005, + "c5": 20.887864379953413, + "c6": 31.287335292065677, + "c7": -22.535736631087524 }, - "vertexSeeds": { - "c1": 9.969375863726086, - "c2": 9.915736449007781, - "c3": 9.1383041630682, - "c4": 9.566132758422865, - "c5": 9.751436585507749, - "c6": 9.056506149527042, - "c7": 8.742904861284163 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809986, + "c3": 10.402219140083217, + "c4": 8.321775312066572, + "c5": 6.24133148404993, + "c6": 4.160887656033286, + "c7": 2.080443828016643 }, "rgb": [238, 201, 159] }, @@ -292200,23 +292200,23 @@ "year": 1787, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -4.69899145504521, - "c2": -11.484398823348192, - "c3": -21.309837338170475, - "c4": 15.519138845698748, - "c5": -3.0036093899749297, - "c6": 16.847844292778397, - "c7": -5.140447642155507 + "points": { + "c1": -13.381241623150055, + "c2": 12.839896238495086, + "c3": 26.999877021768718, + "c4": -13.848585305329088, + "c5": 13.48563065937384, + "c6": 24.808772534235743, + "c7": -19.564795261068625 }, - "vertexSeeds": { - "c1": 3.9169222658309995, - "c2": 4.0292524779259615, - "c3": 3.8879268862693936, - "c4": 3.9084257697219833, - "c5": 3.9903009243305383, - "c6": 3.988952685537178, - "c7": 3.9689498410255912 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [238, 201, 159] }, @@ -292227,23 +292227,23 @@ "year": 1788, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": 32.438229818031395, - "c2": 45.65841892620876, - "c3": 7.306151549434759, - "c4": -47.7090695362989, - "c5": -38.311014640477126, - "c6": 10.201731937753614, - "c7": 23.10083454286808 + "points": { + "c1": -37.480297666376146, + "c2": 19.902274093949664, + "c3": -55.181439521067354, + "c4": 6.749952244773816, + "c5": 11.053893518503038, + "c6": -23.09070918017786, + "c7": -15.940972611363797 }, - "vertexSeeds": { - "c1": 11.520263172859883, - "c2": 11.558121608520448, - "c3": 9.74486764009851, - "c4": 11.451722770463583, - "c5": 10.27465058995672, - "c6": 10.258522090872239, - "c7": 10.100772994844073 + "offsets": { + "c1": 19.644012944983817, + "c2": 16.837725381414693, + "c3": 14.031437817845587, + "c4": 11.225150254276462, + "c5": 8.418862690707355, + "c6": 5.612575127138231, + "c7": 2.8062875635691245 }, "rgb": [238, 201, 159] }, @@ -292254,23 +292254,23 @@ "year": 1788, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -13.280451783642185, - "c2": 39.00790590626602, - "c3": -24.47343116139059, - "c4": -0.7815913812988811, - "c5": 13.183295531981933, - "c6": -20.836303208792742, - "c7": 25.33541937651154 + "points": { + "c1": 28.828976588701195, + "c2": -2.272554935408486, + "c3": 27.15441283271676, + "c4": -40.67817609900802, + "c5": 10.09726485734545, + "c6": -13.269258837874169, + "c7": -10.006736469186777 }, - "vertexSeeds": { - "c1": 6.57500576667237, - "c2": 6.33387802923974, - "c3": 6.258923172041283, - "c4": 6.572225626167537, - "c5": 6.268579827257207, - "c6": 6.542260595297304, - "c7": 6.3999463542606225 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675457, + "c3": 7.859454461396198, + "c4": 6.287563569116963, + "c5": 4.715672676837729, + "c6": 3.1437817845584695, + "c7": 1.5718908922792347 }, "rgb": [58, 15, 49] }, @@ -292281,23 +292281,23 @@ "year": 1788, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 20.708125492815668, - "c2": -41.29772086732731, - "c3": 42.56357726383973, - "c4": -33.195801407683426, - "c5": -30.934006215013838, - "c6": 36.978933287901, - "c7": 38.540898757591236 + "points": { + "c1": 43.82784803939968, + "c2": -21.101302339716945, + "c3": -18.96513769782461, + "c4": -44.725430318201795, + "c5": -2.1375700494444416, + "c6": -1.0105532554900734, + "c7": -23.0508351176043 }, - "vertexSeeds": { - "c1": 4.517877592584032, - "c2": 4.486271202355436, - "c3": 4.417074487161168, - "c4": 4.389313916490235, - "c5": 4.3856321716492035, - "c6": 4.572724836905149, - "c7": 4.568335391635738 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572814, + "c3": 5.5016181229773435, + "c4": 4.401294498381873, + "c5": 3.300970873786402, + "c6": 2.200647249190942, + "c7": 1.10032362459546 }, "rgb": [77, 76, 132] }, @@ -292308,23 +292308,23 @@ "year": 1788, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 44.749189830808454, - "c2": -19.74835036227017, - "c3": 26.205688514629365, - "c4": 43.648719887453076, - "c5": 38.588562902114724, - "c6": -9.772771944223273, - "c7": 26.86695485043682 + "points": { + "c1": -7.572365972094197, + "c2": -25.068132983540803, + "c3": -49.51678230017745, + "c4": -12.56123396677507, + "c5": -45.40646254651821, + "c6": -34.1341004496101, + "c7": -6.67490509271753 }, - "vertexSeeds": { - "c1": 6.723040504047043, - "c2": 6.489767598748554, - "c3": 6.919871342986395, - "c4": 6.425819270673429, - "c5": 6.806182875863213, - "c6": 6.802278501534766, - "c7": 6.502665297402759 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -292335,23 +292335,23 @@ "year": 1788, "resistanceReported": false, "duration": 46224000, - "curveSeeds": { - "c1": 35.91870425298814, - "c2": 31.059916641929185, - "c3": 16.064320845196328, - "c4": -27.1394086606905, - "c5": 14.985730182912114, - "c6": -56.606811637446015, - "c7": -4.207554112975892 + "points": { + "c1": -8.354874838168811, + "c2": -55.78713700314485, + "c3": 26.395273939964092, + "c4": 14.35616580032049, + "c5": -30.504832434859182, + "c6": 0.47854017000051385, + "c7": 46.80987042441429 }, - "vertexSeeds": { - "c1": 8.203803824335187, - "c2": 8.81680636538604, - "c3": 8.551511705356218, - "c4": 8.34622583121068, - "c5": 8.459729961919596, - "c6": 8.20207131026029, - "c7": 8.586393537283831 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582531, + "c3": 10.679611650485427, + "c4": 8.543689320388346, + "c5": 6.4077669902912655, + "c6": 4.271844660194184, + "c7": 2.135922330097081 }, "rgb": [77, 76, 132] }, @@ -292362,23 +292362,23 @@ "year": 1787, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 33.86882852446101, - "c2": 13.8456847912026, - "c3": -18.024814575715713, - "c4": -15.656098248094676, - "c5": 26.238655211328577, - "c6": -22.20123693992008, - "c7": 13.829365538789311 + "points": { + "c1": -29.9187069223172, + "c2": 32.422052314274296, + "c3": -1.626124460082174, + "c4": 10.036488410247713, + "c5": -25.329997342017514, + "c6": 34.98867217206701, + "c7": 14.605677820359404 }, - "vertexSeeds": { - "c1": 7.174024920550937, - "c2": 7.267653504508405, - "c3": 7.216696353317952, - "c4": 6.882052819658148, - "c5": 7.060547741384826, - "c6": 7.015954462973906, - "c7": 6.910296657360908 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284324, + "c3": 8.784096162736933, + "c4": 7.027276930189543, + "c5": 5.270457697642173, + "c6": 3.513638465094782, + "c7": 1.756819232547391 }, "rgb": [77, 76, 132] }, @@ -292389,23 +292389,23 @@ "year": 1788, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -9.484196979916216, - "c2": 35.532493397437506, - "c3": 14.988193254493481, - "c4": 5.325989146146313, - "c5": -11.78178021037304, - "c6": 38.5265036900649, - "c7": 4.40023300529424 + "points": { + "c1": -21.158020086572346, + "c2": 3.53565343440404, + "c3": -26.103768807588395, + "c4": 6.260609904450419, + "c5": -42.24064144190974, + "c6": 3.7257573532774444, + "c7": 16.728144409553373 }, - "vertexSeeds": { - "c1": 4.5190647495444765, - "c2": 4.770019889946613, - "c3": 4.428088468735497, - "c4": 4.761530658882867, - "c5": 4.440544778181493, - "c6": 4.814387406077065, - "c7": 4.737282491783517 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055482, + "c3": 5.7790106333795634, + "c4": 4.623208506703654, + "c5": 3.467406380027736, + "c6": 2.311604253351827, + "c7": 1.1558021266759186 }, "rgb": [58, 15, 49] }, @@ -292416,23 +292416,23 @@ "year": 1789, "resistanceReported": false, "duration": 66441600, - "curveSeeds": { - "c1": -3.7789344077569638, - "c2": 57.55076829074547, - "c3": 52.0538124380477, - "c4": -69.39481183055221, - "c5": -32.1685187534533, - "c6": 54.384250272438166, - "c7": -24.011985405904795 + "points": { + "c1": 15.385961235188645, + "c2": 57.26092816213615, + "c3": -55.93185466391637, + "c4": 36.71273241915257, + "c5": -51.21319080968477, + "c6": -45.72422980543649, + "c7": 35.623000172101754 }, - "vertexSeeds": { - "c1": 12.465881050246846, - "c2": 12.721664541508638, - "c3": 11.88361511899259, - "c4": 12.656754036055741, - "c5": 12.00445154904355, - "c6": 11.911757447269045, - "c7": 12.502720233305668 + "offsets": { + "c1": 21.326860841423947, + "c2": 18.280166435506235, + "c3": 15.233472029588523, + "c4": 12.18677762367085, + "c5": 9.140083217753137, + "c6": 6.093388811835425, + "c7": 3.0466944059177123 }, "rgb": [222, 0, 59] }, @@ -292443,23 +292443,23 @@ "year": 1787, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -8.011895469633316, - "c2": -6.203444185618135, - "c3": 26.217064475276278, - "c4": -3.726940453070249, - "c5": 7.941242811989309, - "c6": 21.635072544926157, - "c7": -20.885108135835914 + "points": { + "c1": -20.25519081122992, + "c2": -16.553369191201607, + "c3": -18.644345303335164, + "c4": 23.980528720313703, + "c5": -2.1934841362594817, + "c6": -7.77234967354077, + "c7": 2.008262570999019 }, - "vertexSeeds": { - "c1": 3.9273209454918803, - "c2": 3.8888856977949824, - "c3": 3.647762606766147, - "c4": 3.9031877996897903, - "c5": 3.9283716760739966, - "c6": 3.9980009912065975, - "c7": 3.6830592439226466 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.8834951456310707, + "c5": 2.9126213592232983, + "c6": 1.9417475728155353, + "c7": 0.970873786407772 }, "rgb": [77, 76, 132] }, @@ -292470,23 +292470,23 @@ "year": 1787, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 14.089334193441303, - "c2": -21.40511401987617, - "c3": 17.857275352634893, - "c4": -25.309659452869777, - "c5": -25.331479737940768, - "c6": -19.194923875405085, - "c7": -22.618288823342613 + "points": { + "c1": -9.712539763678208, + "c2": 20.787932373805162, + "c3": 6.320919531323696, + "c4": -5.535527866103198, + "c5": -4.016803028526738, + "c6": 1.945705029897674, + "c7": -19.989616160063076 }, - "vertexSeeds": { - "c1": 1.6347341964067927, - "c2": 1.6847841727206825, - "c3": 1.6133681664403883, - "c4": 1.6298030680342719, - "c5": 1.686576399031346, - "c6": 1.6401480723668749, - "c7": 1.619340135683408 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.44105409153953, + "c3": 2.0342117429496103, + "c4": 1.62736939435968, + "c5": 1.2205270457697601, + "c6": 0.81368469717984, + "c7": 0.40684234858992 }, "rgb": [222, 0, 59] }, @@ -292497,23 +292497,23 @@ "year": 1788, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 7.201801366232587, - "c2": 44.08601281637682, - "c3": 53.38723845306848, - "c4": 13.159152534763138, - "c5": -23.272465517183864, - "c6": 19.07793119157094, - "c7": -18.194738538314837 + "points": { + "c1": -18.480032649209598, + "c2": -9.776485629801464, + "c3": -49.39293105232568, + "c4": 34.43672942765893, + "c5": 27.63996949411691, + "c6": 41.993683800399666, + "c7": 15.3055625883092 }, - "vertexSeeds": { - "c1": 5.601779306338277, - "c2": 5.567521159823166, - "c3": 5.437818912056144, - "c4": 5.370795169747869, - "c5": 5.018701290819698, - "c6": 4.959776720597225, - "c7": 5.6506791343027665 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785024, + "c3": 6.773000462320845, + "c4": 5.418400369856679, + "c5": 4.063800277392512, + "c6": 2.709200184928333, + "c7": 1.3546000924641666 }, "rgb": [222, 0, 59] }, @@ -292524,23 +292524,23 @@ "year": 1788, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 30.866482996589106, - "c2": -16.10838391880422, - "c3": 15.686625749608119, - "c4": 41.50429062758911, - "c5": 42.005476423826956, - "c6": 17.591248789565135, - "c7": 17.70331818646921 + "points": { + "c1": -36.64422753278061, + "c2": -16.274638671556925, + "c3": -37.293277898402415, + "c4": 42.970266644181756, + "c5": -42.391271998270334, + "c6": 6.562369468486025, + "c7": 1.386263031367271 }, - "vertexSeeds": { - "c1": 8.360126537435704, - "c2": 8.328221967943847, - "c3": 8.491626259933284, - "c4": 8.602221203123163, - "c5": 8.698575414295997, - "c6": 8.435162966133214, - "c7": 8.015333196306255 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140092, + "c3": 10.425335182616733, + "c4": 8.340268146093395, + "c5": 6.255201109570035, + "c6": 4.170134073046698, + "c7": 2.0850670365233586 }, "rgb": [222, 0, 59] }, @@ -292551,23 +292551,23 @@ "year": 1788, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 2.750679429184686, - "c2": -13.072289500725788, - "c3": 25.668209964937482, - "c4": 27.39354357436003, - "c5": -7.28703008301828, - "c6": -31.73598745937666, - "c7": 13.408306554781142 + "points": { + "c1": 43.54850126030927, + "c2": -40.66711268588989, + "c3": -19.783915836392904, + "c4": -30.364569454373832, + "c5": -26.570684972379937, + "c6": 13.277056192586052, + "c7": -43.722629199439076 }, - "vertexSeeds": { - "c1": 4.632509988659233, - "c2": 5.094472774041053, - "c3": 4.813570478992772, - "c4": 4.960520004304522, - "c5": 4.370484172264873, - "c6": 4.737471748363972, - "c7": 4.520121181166084 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020805, + "c3": 6.333795654184003, + "c4": 5.067036523347202, + "c5": 3.8002773925104005, + "c6": 2.5335182616735987, + "c7": 1.2667591308368016 }, "rgb": [86, 146, 138] }, @@ -292578,23 +292578,23 @@ "year": 1788, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -7.7365843812743265, - "c2": -39.64753603335444, - "c3": -5.3762348426615105, - "c4": -43.09051638409623, - "c5": -6.1117786718387705, - "c6": 3.434250667022866, - "c7": 26.755812010324775 + "points": { + "c1": -26.793055873653003, + "c2": -43.93120957361867, + "c3": -19.233323131417492, + "c4": 5.808154609217155, + "c5": -40.005763139680894, + "c6": 21.356661589658742, + "c7": -14.555646415056689 }, - "vertexSeeds": { - "c1": 6.545320239702029, - "c2": 6.783095170080022, - "c3": 6.708210434287963, - "c4": 6.6003700762624105, - "c5": 6.849215301108849, - "c6": 6.6539188091340575, - "c7": 6.712797154794917 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -292605,23 +292605,23 @@ "year": 1788, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": 43.43268965805663, - "c2": -1.0870839484397052, - "c3": 43.09283672296718, - "c4": -0.5799969375875804, - "c5": -32.330268124942435, - "c6": 47.378588905856034, - "c7": -17.045443471984278 + "points": { + "c1": 23.12715299901363, + "c2": -23.067436504461472, + "c3": -50.99920092586645, + "c4": 21.194390851306437, + "c5": -13.065986462627905, + "c6": 0.43981898952949194, + "c7": -5.540841869532137 }, - "vertexSeeds": { - "c1": 9.522384275287248, - "c2": 9.459760341280443, - "c3": 10.150443772981784, - "c4": 9.545269041807135, - "c5": 9.93458690511347, - "c6": 10.160061840331181, - "c7": 9.442894725714476 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317608, + "c3": 12.251502542764666, + "c4": 9.801202034211746, + "c5": 7.350901525658804, + "c6": 4.9006010171058625, + "c7": 2.450300508552942 }, "rgb": [86, 146, 138] }, @@ -292632,23 +292632,23 @@ "year": 1788, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 28.823604037834848, - "c2": 18.73740462470706, - "c3": -46.94535217417767, - "c4": -10.533285901998582, - "c5": -43.00696291416656, - "c6": -0.2667592709886364, - "c7": -30.203096708871076 + "points": { + "c1": -44.25329956209843, + "c2": -22.537974808792104, + "c3": 32.21132953574466, + "c4": 37.101013864897645, + "c5": -2.335426411902425, + "c6": -36.79570930367835, + "c7": -40.95815770870878 }, - "vertexSeeds": { - "c1": 7.712778105911157, - "c2": 8.073006512352638, - "c3": 7.283116744702349, - "c4": 6.718602502866065, - "c5": 7.1857303778383255, - "c6": 6.745763980238387, - "c7": 6.682754148445168 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852977, + "c3": 9.685621821544157, + "c4": 7.748497457235322, + "c5": 5.811373092926488, + "c6": 3.8742487286176557, + "c7": 1.9371243643088332 }, "rgb": [58, 15, 49] }, @@ -292659,23 +292659,23 @@ "year": 1788, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 38.303878307835994, - "c2": -22.99902970590426, - "c3": 36.321068711020054, - "c4": 21.36629934076472, - "c5": 24.39978622039738, - "c6": -31.863460608177675, - "c7": -9.337931270261095 + "points": { + "c1": 9.106639799267107, + "c2": 17.975777310139442, + "c3": 33.33997779959872, + "c4": 14.652651799365792, + "c5": -10.797476190712253, + "c6": 46.134184647742025, + "c7": -3.2147145341589294 }, - "vertexSeeds": { - "c1": 14.856099269972153, - "c2": 14.742345332260127, - "c3": 14.340766131453613, - "c4": 14.882619320878513, - "c5": 15.030704716519308, - "c6": 14.7488196721018, - "c7": 14.53672971321791 + "offsets": { + "c1": 25.210355987055017, + "c2": 21.60887656033287, + "c3": 18.007397133610727, + "c4": 14.40591770688858, + "c5": 10.804438280166435, + "c6": 7.20295885344429, + "c7": 3.601479426722145 }, "rgb": [86, 146, 138] }, @@ -292686,23 +292686,23 @@ "year": 1788, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 40.1886803445166, - "c2": -20.929921267560232, - "c3": 15.851923692354674, - "c4": -23.674388800853883, - "c5": 8.168729543448329, - "c6": -54.44785699899335, - "c7": -8.370459497688252 + "points": { + "c1": -14.544382978722282, + "c2": -27.321742808541337, + "c3": -5.636074804323783, + "c4": -49.86783440005512, + "c5": 6.422498451557331, + "c6": 49.683996120442345, + "c7": 30.98450205399527 }, - "vertexSeeds": { - "c1": 1.901485826708301, - "c2": 2.002615485901977, - "c3": 0.8987844990027827, - "c4": 1.1587837875393001, - "c5": 1.8129203226989232, - "c6": 0.8010559850593744, - "c7": 1.4557184040018287 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.023578363384188, + "c3": 2.51964863615349, + "c4": 2.0157189089227923, + "c5": 1.511789181692094, + "c6": 1.0078594544613961, + "c7": 0.5039297272306981 }, "rgb": [58, 15, 49] }, @@ -292713,23 +292713,23 @@ "year": 1788, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -7.4671893791375155, - "c2": 14.054084840729743, - "c3": 47.16184606489843, - "c4": -21.997376906019714, - "c5": -15.25577242500745, - "c6": 25.14430731864755, - "c7": -47.15975500067117 + "points": { + "c1": 22.716620751101146, + "c2": -28.14223371655197, + "c3": 39.25695406844082, + "c4": -36.50560654333903, + "c5": 39.680170091932155, + "c6": 10.527674492921747, + "c7": 40.12716324586958 }, - "vertexSeeds": { - "c1": 3.790164684491253, - "c2": 4.072540979537775, - "c3": 3.8009654713417147, - "c4": 4.117273314341311, - "c5": 4.144174572078853, - "c6": 3.803498561444381, - "c7": 4.2195454849164475 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808602, + "c3": 5.062413314840496, + "c4": 4.0499306518723985, + "c5": 3.037447988904301, + "c6": 2.024965325936196, + "c7": 1.012482662968098 }, "rgb": [58, 15, 49] }, @@ -292740,23 +292740,23 @@ "year": 1788, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 19.07077936957218, - "c2": 0.34110315442390515, - "c3": -2.0798415569305675, - "c4": -13.374930933441302, - "c5": -1.3095184685069796, - "c6": -18.92907455604998, - "c7": -22.23604598510729 + "points": { + "c1": 26.928817686353362, + "c2": -38.620700266380105, + "c3": -3.170142864253286, + "c4": 30.307113349738195, + "c5": -7.832775093775965, + "c6": 24.87797780110899, + "c7": -36.56668075845378 }, - "vertexSeeds": { - "c1": 6.1175422530361665, - "c2": 6.15329463639895, - "c3": 6.087210495733245, - "c4": 5.929588206847177, - "c5": 5.952652638653429, - "c6": 5.90456510203015, - "c7": 6.057111671132209 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [238, 201, 159] }, @@ -292767,23 +292767,23 @@ "year": 1787, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 20.82316752463433, - "c2": 11.227855774556595, - "c3": -14.433665318879319, - "c4": -16.447563686525754, - "c5": 6.114028847365358, - "c6": 8.072361875901322, - "c7": 5.745309936646507 + "points": { + "c1": -9.113398276633756, + "c2": 21.7772954501568, + "c3": 14.648021059390608, + "c4": -5.806957066027895, + "c5": 25.587693871928437, + "c6": -18.83114125910263, + "c7": -1.7894423151882108 }, - "vertexSeeds": { - "c1": 15.137376087903528, - "c2": 14.880795753909313, - "c3": 15.457512429840744, - "c4": 14.620939604584086, - "c5": 15.308021079963355, - "c6": 15.317012360118687, - "c7": 15.249806297492023 + "offsets": { + "c1": 25.8252427184466, + "c2": 22.13592233009709, + "c3": 18.446601941747584, + "c4": 14.757281553398077, + "c5": 11.067961165048567, + "c6": 7.378640776699016, + "c7": 3.689320388349508 }, "rgb": [222, 0, 59] }, @@ -292794,23 +292794,23 @@ "year": 1788, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": -26.115799779514408, - "c2": 10.552945268378927, - "c3": -17.05561895694037, - "c4": 33.60652926550468, - "c5": -42.810961659179156, - "c6": -1.3781099524222213, - "c7": 31.581345814394687 + "points": { + "c1": -26.769010292449384, + "c2": 34.39725778684497, + "c3": -20.78647549925063, + "c4": 10.781373409046623, + "c5": -36.869504791494634, + "c6": 25.462844067732256, + "c7": 49.88485616983723 }, - "vertexSeeds": { - "c1": 7.827761817852805, - "c2": 8.115923788850996, - "c3": 8.018959350163009, - "c4": 8.430605696960392, - "c5": 8.295626204077092, - "c6": 8.704749016953446, - "c7": 8.682648956867697 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140087, + "c3": 10.425335182616728, + "c4": 8.340268146093386, + "c5": 6.255201109570043, + "c6": 4.170134073046701, + "c7": 2.085067036523342 }, "rgb": [238, 201, 159] }, @@ -292821,23 +292821,23 @@ "year": 1787, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -14.801501256163439, - "c2": 21.48663375332042, - "c3": 23.7667738118164, - "c4": 10.580863846635687, - "c5": -13.237133935699326, - "c6": 10.183987632334194, - "c7": 14.2336064833028 + "points": { + "c1": 25.423880644287465, + "c2": -21.51337783928451, + "c3": -14.743502802743514, + "c4": -0.912336836442698, + "c5": -32.04404503132676, + "c6": 19.453410400628982, + "c7": 25.72318547282974 }, - "vertexSeeds": { - "c1": 0.9308244138499581, - "c2": 0.8230366318683653, - "c3": 0.9003916032547362, - "c4": 0.9197629332105317, - "c5": 0.7938395299698064, - "c6": 0.8506059864922202, - "c7": 0.78031762063813 + "offsets": { + "c1": 1.650485436893204, + "c2": 1.414701803051318, + "c3": 1.1789181692094308, + "c4": 0.9431345353675449, + "c5": 0.707350901525659, + "c6": 0.471567267683772, + "c7": 0.235783633841886 }, "rgb": [222, 0, 59] }, @@ -292848,23 +292848,23 @@ "year": 1788, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 19.80144827198783, - "c2": -21.80480917931858, - "c3": -15.41413270336529, - "c4": 9.133035076849296, - "c5": -6.068770828233355, - "c6": -0.5497284298575096, - "c7": 23.596264201856975 + "points": { + "c1": 8.119708150080022, + "c2": -3.7977666529780123, + "c3": 33.63167646466058, + "c4": -8.198691626158968, + "c5": -12.371915719004278, + "c6": 32.093379489897465, + "c7": -32.770914306759245 }, - "vertexSeeds": { - "c1": 10.322065920043062, - "c2": 9.571047108719165, - "c3": 9.871741369384981, - "c4": 10.308722452325732, - "c5": 10.157916674441427, - "c6": 10.3613114705736, - "c7": 9.928642700262664 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.034674063800276, + "c3": 12.528895053166899, + "c4": 10.023116042533518, + "c5": 7.517337031900138, + "c6": 5.011558021266759, + "c7": 2.5057790106333795 }, "rgb": [86, 146, 138] }, @@ -292875,23 +292875,23 @@ "year": 1788, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -28.850647508925924, - "c2": -26.163765826767605, - "c3": -20.31812152940311, - "c4": -7.7099663322865055, - "c5": 41.12013520866253, - "c6": -14.301192321286507, - "c7": -8.386717834766046 + "points": { + "c1": -35.06070810280566, + "c2": 20.31211217613064, + "c3": -10.372902184649718, + "c4": -20.79483834277901, + "c5": -41.381500720931996, + "c6": 10.695823798271228, + "c7": 7.754983412320108 }, - "vertexSeeds": { - "c1": 2.0719103926958704, - "c2": 2.070116893844295, - "c3": 2.0851541047341398, - "c4": 2.097735468681715, - "c5": 2.0626472188902323, - "c6": 2.064118175067282, - "c7": 2.0804048055651294 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841775, + "c3": 2.519648636153494, + "c4": 2.015718908922785, + "c5": 1.5117891816921014, + "c6": 1.0078594544613926, + "c7": 0.5039297272307088 }, "rgb": [77, 76, 132] }, @@ -292902,23 +292902,23 @@ "year": 1788, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 21.498381810050766, - "c2": 10.367662293664509, - "c3": 10.349593993535017, - "c4": -35.58518499635399, - "c5": 31.813205748277326, - "c6": -21.089929591273524, - "c7": -19.02587303700444 + "points": { + "c1": 20.62081837267465, + "c2": -17.138932848846803, + "c3": 31.406437906039955, + "c4": -34.9140212330746, + "c5": -32.88308347902999, + "c6": 4.536936685008811, + "c7": 15.13288634472272 }, - "vertexSeeds": { - "c1": 4.74382873558255, - "c2": 4.815549062030779, - "c3": 4.769523712825825, - "c4": 4.932319656066695, - "c5": 4.664286067234888, - "c6": 4.575462029275947, - "c7": 4.992890579058463 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417479, + "c3": 5.987055016181225, + "c4": 4.789644012944983, + "c5": 3.5922330097087394, + "c6": 2.3948220064724963, + "c7": 1.197411003236243 }, "rgb": [222, 0, 59] }, @@ -292929,23 +292929,23 @@ "year": 1787, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -27.99615838498132, - "c2": 20.63296820869687, - "c3": 18.703605520729365, - "c4": 20.096462287281017, - "c5": -27.570879652501525, - "c6": -3.6722101949026076, - "c7": 2.812735590684081 + "points": { + "c1": -12.677447838443687, + "c2": -11.506763225500716, + "c3": 21.52032298237143, + "c4": -7.154298807093106, + "c5": -5.757952590218345, + "c6": 15.202527080877513, + "c7": 21.98126510652497 }, - "vertexSeeds": { - "c1": 8.623444564233251, - "c2": 8.770231104872664, - "c3": 8.265093014672619, - "c4": 8.576632000359455, - "c5": 8.18557194610329, - "c6": 8.548154968896503, - "c7": 8.653413629924117 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300965, + "c3": 10.517799352750819, + "c4": 8.41423948220065, + "c5": 6.310679611650483, + "c6": 4.207119741100336, + "c7": 2.103559870550168 }, "rgb": [58, 15, 49] }, @@ -292956,23 +292956,23 @@ "year": 1787, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -0.4424017230297608, - "c2": -23.530027625014394, - "c3": 14.02844286321406, - "c4": -2.6349660167710027, - "c5": 17.569652922597214, - "c6": 12.936833428988422, - "c7": 9.200959897435155 + "points": { + "c1": 13.589724889376868, + "c2": -3.4986291728413654, + "c3": -7.165570712420326, + "c4": 28.88024107763878, + "c5": -15.098264408457787, + "c6": 29.85031398981031, + "c7": 10.414884104711128 }, - "vertexSeeds": { - "c1": 8.564615556204503, - "c2": 8.370765084264617, - "c3": 8.440102888289244, - "c4": 8.53952433974743, - "c5": 7.982586965686346, - "c6": 8.47739227876974, - "c7": 8.204547060914852 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.26074895977809, + "c3": 10.217290799815078, + "c4": 8.173832639852067, + "c5": 6.130374479889034, + "c6": 4.086916319926022, + "c7": 2.043458159963011 }, "rgb": [58, 15, 49] }, @@ -292983,23 +292983,23 @@ "year": 1787, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 3.661016383423714, - "c2": -17.8791877203132, - "c3": 0.5848634807338513, - "c4": -20.777968447620378, - "c5": -9.272381695220854, - "c6": -24.239169318081338, - "c7": 23.06049993552204 + "points": { + "c1": -1.1352275161630097, + "c2": 26.12488213569948, + "c3": -20.124966108995633, + "c4": -2.946958863733361, + "c5": -10.858763191922254, + "c6": -17.907958737881764, + "c7": -24.118999444241847 }, - "vertexSeeds": { - "c1": 7.463329577378005, - "c2": 7.389395172147531, - "c3": 7.579812535749928, - "c4": 7.806213648303249, - "c5": 7.87459226526929, - "c6": 7.789963612936033, - "c7": 7.587470764671149 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410078, + "c4": 7.6745261211280615, + "c5": 5.7558945908460455, + "c6": 3.8372630605640308, + "c7": 1.9186315302820154 }, "rgb": [77, 76, 132] }, @@ -293010,23 +293010,23 @@ "year": 1788, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -20.167620269184898, - "c2": -32.86380420106451, - "c3": -7.62243943091071, - "c4": -26.542125892649764, - "c5": 20.725283433264273, - "c6": -11.023130503601557, - "c7": -14.67738010340717 + "points": { + "c1": -8.945130726684422, + "c2": 18.542719220103116, + "c3": -6.12569885479936, + "c4": 37.111739286453926, + "c5": 20.260182181105783, + "c6": -11.383896537785308, + "c7": 35.727972395893715 }, - "vertexSeeds": { - "c1": 5.15786848500377, - "c2": 5.172477003001969, - "c3": 5.241188016658549, - "c4": 5.4242428281091355, - "c5": 5.2686643806992, - "c6": 5.52924198144313, - "c7": 5.150005888390724 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624126, + "c3": 6.680536292186787, + "c4": 5.3444290337494245, + "c5": 4.008321775312063, + "c6": 2.6722145168747238, + "c7": 1.3361072584373619 }, "rgb": [77, 76, 132] }, @@ -293037,23 +293037,23 @@ "year": 1787, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 20.578627306938564, - "c2": -10.420777005182831, - "c3": 4.1026490794337676, - "c4": -4.315733423828359, - "c5": -29.474958402248948, - "c6": 7.778119907849174, - "c7": 26.04900384537455 + "points": { + "c1": 5.302282532405229, + "c2": -14.932130638907921, + "c3": -27.60017121505676, + "c4": 1.9894569763495653, + "c5": -24.42481557651331, + "c6": -21.550849633790875, + "c7": -10.971382523853446 }, - "vertexSeeds": { - "c1": 6.983262986900374, - "c2": 7.136117173408141, - "c3": 6.763647172398638, - "c4": 7.413200748012025, - "c5": 7.032618650979752, - "c6": 7.120539922399649, - "c7": 7.003326342234231 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.04022191400833, + "c3": 9.200184928340265, + "c4": 7.360147942672219, + "c5": 5.520110957004157, + "c6": 3.6800739713361095, + "c7": 1.8400369856680618 }, "rgb": [77, 76, 132] }, @@ -293064,23 +293064,23 @@ "year": 1787, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -17.83228879500582, - "c2": 23.509596879385445, - "c3": -20.628166437005504, - "c4": -25.99059004182625, - "c5": 24.51752306459326, - "c6": -20.079697323640012, - "c7": -8.335119893253136 + "points": { + "c1": -2.3439606218299467, + "c2": 5.916479968966723, + "c3": 12.166811379258125, + "c4": 18.72639507585576, + "c5": -26.392025005209426, + "c6": 26.693477991150115, + "c7": -19.5072119784994 }, - "vertexSeeds": { - "c1": 10.129584034305324, - "c2": 10.95161436376477, - "c3": 10.908722951729617, - "c4": 10.652040339867822, - "c5": 10.256994339522622, - "c6": 10.64085728843517, - "c7": 10.926140390379558 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846035, + "c3": 13.129912159038392, + "c4": 10.503929727230704, + "c5": 7.877947295423017, + "c6": 5.251964863615374, + "c7": 2.625982431807687 }, "rgb": [58, 15, 49] }, @@ -293091,23 +293091,23 @@ "year": 1789, "resistanceReported": false, "duration": 57110400, - "curveSeeds": { - "c1": -0.9002611647727576, - "c2": 24.754374428647893, - "c3": 14.406689307675279, - "c4": -12.232853074971523, - "c5": -50.14584911749826, - "c6": 21.647429359969152, - "c7": -16.15190814953229 + "points": { + "c1": -45.27360461730886, + "c2": 36.80940557549363, + "c3": -7.1205050773800025, + "c4": -70.08198458335912, + "c5": -40.70861779029055, + "c6": -22.358748601087292, + "c7": -49.698598055127256 }, - "vertexSeeds": { - "c1": 4.501942511577274, - "c2": 4.352720050547946, - "c3": 4.321964463883755, - "c4": 4.169556917305333, - "c5": 4.415202891502242, - "c6": 4.326568259752639, - "c7": 4.1485598240371 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371706, + "c3": 5.386037910309752, + "c4": 4.308830328247811, + "c5": 3.2316227461858578, + "c6": 2.1544151641239053, + "c7": 1.0772075820619527 }, "rgb": [238, 201, 159] }, @@ -293118,23 +293118,23 @@ "year": 1788, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -25.614797368765043, - "c2": -40.107871763622214, - "c3": -28.53171745109588, - "c4": -23.04347933085988, - "c5": -26.612574595480574, - "c6": -22.141396085295465, - "c7": 3.4542382408951156 + "points": { + "c1": 31.334368953511948, + "c2": 43.71687635949416, + "c3": -37.62798419485222, + "c4": -26.221758735844904, + "c5": 45.09318626503684, + "c6": 3.3687979104153456, + "c7": -39.72116717429522 }, - "vertexSeeds": { - "c1": 5.100810500432001, - "c2": 5.3071991716824645, - "c3": 5.062131146947917, - "c4": 4.903374982025365, - "c5": 4.905532378565209, - "c6": 4.852122228926555, - "c7": 5.08309201998206 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061031, + "c3": 6.356911696717512, + "c4": 5.085529357374014, + "c5": 3.8141470180305155, + "c6": 2.5427646786870173, + "c7": 1.2713823393435086 }, "rgb": [238, 201, 159] }, @@ -293145,23 +293145,23 @@ "year": 1788, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": 10.389940016023125, - "c2": -49.15731239318823, - "c3": 35.759053676406104, - "c4": 46.95843023490408, - "c5": 10.808414122031813, - "c6": 48.69734346147852, - "c7": 33.23253541058258 + "points": { + "c1": -45.32897910154209, + "c2": -7.848306320195775, + "c3": -29.161121498908418, + "c4": -15.11209087461372, + "c5": -54.658049595065584, + "c6": -19.809159157399463, + "c7": 18.512292849465034 }, - "vertexSeeds": { - "c1": 6.2094340741344025, - "c2": 6.449233320201995, - "c3": 6.084296446528855, - "c4": 6.214608344178924, - "c5": 6.049351305411882, - "c6": 6.00133332428119, - "c7": 6.357435067262592 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514563, + "c3": 7.766990291262136, + "c4": 6.213592233009709, + "c5": 4.660194174757281, + "c6": 3.1067961165048543, + "c7": 1.5533980582524272 }, "rgb": [86, 146, 138] }, @@ -293172,23 +293172,23 @@ "year": 1788, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -39.13312325432663, - "c2": 20.879820636401732, - "c3": -8.778371862463153, - "c4": 34.71246867371886, - "c5": -25.70131722866366, - "c6": 33.24435741785618, - "c7": -29.587109861028814 + "points": { + "c1": -9.535649773352535, + "c2": -26.905421892120884, + "c3": 14.761866862910225, + "c4": 27.61063821019404, + "c5": -14.086532781198414, + "c6": -22.771366880433423, + "c7": 30.803083547348365 }, - "vertexSeeds": { - "c1": 12.793727721161451, - "c2": 11.889487309453575, - "c3": 12.453166836524874, - "c4": 11.180446545332686, - "c5": 11.864949300115969, - "c6": 11.776425378058294, - "c7": 12.718099555868177 + "offsets": { + "c1": 21.81229773462783, + "c2": 18.69625520110958, + "c3": 15.580212667591303, + "c4": 12.464170134073052, + "c5": 9.348127600554777, + "c6": 6.232085067036526, + "c7": 3.1160425335182755 }, "rgb": [77, 76, 132] }, @@ -293199,23 +293199,23 @@ "year": 1787, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -16.533412467482982, - "c2": -8.343648938407487, - "c3": 27.778747227548937, - "c4": 13.934275227106514, - "c5": -28.309915962972944, - "c6": -5.305414764263936, - "c7": 11.050495716278892 + "points": { + "c1": 4.633022284728327, + "c2": -11.14637022981588, + "c3": 6.055538477841928, + "c4": -22.475979431420562, + "c5": -15.873406438213724, + "c6": -24.425984275845934, + "c7": 14.885164181757432 }, - "vertexSeeds": { - "c1": 8.192703896211125, - "c2": 8.31361669886574, - "c3": 9.320146159081235, - "c4": 8.19019274290183, - "c5": 8.346792588320685, - "c6": 8.596280801012142, - "c7": 8.413888003492115 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708739, + "c3": 11.32686084142395, + "c4": 9.06148867313915, + "c5": 6.796116504854363, + "c6": 4.530744336569575, + "c7": 2.2653721682847876 }, "rgb": [86, 146, 138] }, @@ -293226,23 +293226,23 @@ "year": 1788, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -13.416973250279952, - "c2": -10.518796337605345, - "c3": 17.38084710441533, - "c4": -29.15976008149226, - "c5": -25.393970835756747, - "c6": 23.864808879241018, - "c7": 23.070722450648354 + "points": { + "c1": 16.72962773031537, + "c2": 14.60187659576701, + "c3": -12.293769990611796, + "c4": -1.6525393134282922, + "c5": -6.470803740979278, + "c6": 33.77783027980736, + "c7": -8.929482193297922 }, - "vertexSeeds": { - "c1": 11.50410868225825, - "c2": 10.844965783011569, - "c3": 11.203075157702457, - "c4": 10.863116644831662, - "c5": 11.474538539358342, - "c6": 10.898637403250206, - "c7": 11.184505429009139 + "offsets": { + "c1": 19.676375404530745, + "c2": 16.865464632454913, + "c3": 14.054553860379121, + "c4": 11.243643088303289, + "c5": 8.432732316227456, + "c6": 5.621821544151624, + "c7": 2.8109107720758324 }, "rgb": [238, 201, 159] }, @@ -293253,23 +293253,23 @@ "year": 1788, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 8.9932222266374, - "c2": -5.189079502384306, - "c3": 15.12480085140659, - "c4": -19.41705498319978, - "c5": -5.638092474711858, - "c6": 32.93156407494337, - "c7": -22.58182705133199 + "points": { + "c1": -1.0613025049366698, + "c2": 31.273493020092232, + "c3": 21.390836584302747, + "c4": 12.660509744256736, + "c5": 0.1231901586911377, + "c6": 10.373195283607842, + "c7": -22.40145248387348 }, - "vertexSeeds": { - "c1": 8.825834738714304, - "c2": 8.96258603666984, - "c3": 9.2527459871457, - "c4": 8.946981922069995, - "c5": 9.086395161665052, - "c6": 9.015598409867565, - "c7": 9.101063385115635 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.61997226074897, + "c3": 11.349976883957464, + "c4": 9.07998150716598, + "c5": 6.809986130374473, + "c6": 4.53999075358299, + "c7": 2.2699953767915058 }, "rgb": [86, 146, 138] }, @@ -293280,23 +293280,23 @@ "year": 1788, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": 27.216025717825865, - "c2": 18.684299970675333, - "c3": -48.11026258522043, - "c4": -29.236698658554175, - "c5": -35.113794127549355, - "c6": 2.1618248598122705, - "c7": -3.898182334024696 + "points": { + "c1": 46.520258222840205, + "c2": -50.03584020482933, + "c3": 22.713646157081165, + "c4": 9.040242740379021, + "c5": 25.400616676370596, + "c6": -15.863171904135669, + "c7": -30.493143909318984 }, - "vertexSeeds": { - "c1": 8.520832691536446, - "c2": 7.869493071002963, - "c3": 8.349317228869685, - "c4": 8.202304885561198, - "c5": 7.70431056719734, - "c6": 8.124199483094047, - "c7": 8.084522878661877 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300974, + "c3": 10.517799352750814, + "c4": 8.414239482200653, + "c5": 6.310679611650493, + "c6": 4.20711974110032, + "c7": 2.10355987055016 }, "rgb": [222, 0, 59] }, @@ -293307,23 +293307,23 @@ "year": 1788, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -26.190186481694234, - "c2": -11.997936339893062, - "c3": -35.55439126168242, - "c4": 26.663174160731757, - "c5": 15.795555793534113, - "c6": -8.658285176198824, - "c7": -27.77079541040912 + "points": { + "c1": -37.480704708883735, + "c2": 20.775967304400588, + "c3": -21.508010759785464, + "c4": -16.266367384066722, + "c5": 1.0093368450186446, + "c6": 23.61461601474585, + "c7": -23.031093611444994 }, - "vertexSeeds": { - "c1": 8.444010633052551, - "c2": 7.910230846551036, - "c3": 7.970306169991943, - "c4": 7.965996330294348, - "c5": 7.765761800848817, - "c6": 8.265971587099434, - "c7": 8.354961719839896 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147487, + "c4": 8.081368469717994, + "c5": 6.061026352288501, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [77, 76, 132] }, @@ -293334,23 +293334,23 @@ "year": 1789, "resistanceReported": false, "duration": 58492800, - "curveSeeds": { - "c1": 67.38028551947241, - "c2": 23.67302353031154, - "c3": -67.1586728486894, - "c4": -55.593077351720446, - "c5": -69.63072151792198, - "c6": -61.98285535901502, - "c7": 31.38878196360355 + "points": { + "c1": 66.75551092537438, + "c2": 71.74781660784623, + "c3": 32.834921829786495, + "c4": -36.36437001781184, + "c5": 26.7511114418282, + "c6": 42.89021480339339, + "c7": -72.48532181700006 }, - "vertexSeeds": { - "c1": 6.622628038039533, - "c2": 6.578958869088019, - "c3": 6.756359035020142, - "c4": 6.868566895745519, - "c5": 6.9198013813862955, - "c6": 6.880322239635978, - "c7": 6.8061448259178965 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.93065187239944, + "c3": 8.275543226999527, + "c4": 6.62043458159965, + "c5": 4.965325936199737, + "c6": 3.310217290799825, + "c7": 1.6551086453999124 }, "rgb": [77, 76, 132] }, @@ -293361,23 +293361,23 @@ "year": 1788, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -28.732438090905266, - "c2": -23.85205025343287, - "c3": -33.7871891679442, - "c4": 19.93294558781041, - "c5": 29.746251669738257, - "c6": 5.3823434752169845, - "c7": 8.964147002171977 + "points": { + "c1": 15.98683940986033, + "c2": 15.60546443135987, + "c3": 5.751025374953002, + "c4": -7.286711530006105, + "c5": 8.993318886474299, + "c6": 14.701393728706748, + "c7": -4.256994162468779 }, - "vertexSeeds": { - "c1": 9.704600361460196, - "c2": 9.596226345806093, - "c3": 9.482512072293874, - "c4": 9.959065041545863, - "c5": 9.462587677918915, - "c6": 9.574883584006821, - "c7": 9.31381001261504 + "offsets": { + "c1": 17.184466019417478, + "c2": 14.729542302357832, + "c3": 12.274618585298185, + "c4": 9.819694868238555, + "c5": 7.364771151178924, + "c6": 4.9098474341192775, + "c7": 2.4549237170596463 }, "rgb": [238, 201, 159] }, @@ -293388,23 +293388,23 @@ "year": 1788, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -0.05182037485166546, - "c2": 26.624797655648628, - "c3": 40.774095762705706, - "c4": 10.177949676764186, - "c5": -17.7060280882864, - "c6": 32.49738649099313, - "c7": 24.318849212119936 + "points": { + "c1": -4.827484554172088, + "c2": -44.33480081636072, + "c3": 1.633437704563569, + "c4": 48.66442278818058, + "c5": 39.572674291352605, + "c6": 14.86802012962685, + "c7": 16.9082984647681 }, - "vertexSeeds": { - "c1": 6.0465001764935655, - "c2": 5.9471142532912795, - "c3": 6.137020466770942, - "c4": 6.021379131500108, - "c5": 5.972160793488327, - "c6": 5.959406531016798, - "c7": 5.837311005454094 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.01525658807213, + "c3": 7.512713823393431, + "c4": 6.0101710587147545, + "c5": 4.507628294036055, + "c6": 3.0050855293573773, + "c7": 1.5025427646786775 }, "rgb": [86, 146, 138] }, @@ -293415,23 +293415,23 @@ "year": 1787, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 11.231305957030997, - "c2": -19.616362344598777, - "c3": 1.489889990865695, - "c4": -18.707672057821355, - "c5": -13.751248270703172, - "c6": 18.53392111002629, - "c7": -20.506109762961895 + "points": { + "c1": 20.83463034472024, + "c2": 8.889547354148021, + "c3": 25.1260379343965, + "c4": 29.02885798784684, + "c5": -28.983839921195948, + "c6": 12.302157307926421, + "c7": -22.17234316612154 }, - "vertexSeeds": { - "c1": 5.198403491345428, - "c2": 5.424230257194967, - "c3": 5.150914537267033, - "c4": 5.45829616175331, - "c5": 5.245569017790608, - "c6": 5.458287115630367, - "c7": 5.201652828300375 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583904, + "c3": 6.657420249653269, + "c4": 5.32593619972261, + "c5": 3.994452149791952, + "c6": 2.6629680998613163, + "c7": 1.3314840499306582 }, "rgb": [238, 201, 159] }, @@ -293442,23 +293442,23 @@ "year": 1788, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 19.754079710841765, - "c2": -6.716031290931923, - "c3": -30.07779601926699, - "c4": -42.94580178809112, - "c5": -26.524548985874283, - "c6": -20.083706539228206, - "c7": 2.7209108676011837 + "points": { + "c1": 19.34222450118856, + "c2": 15.388756829012273, + "c3": -25.932995808654276, + "c4": -17.370103669505717, + "c5": -26.18214397312217, + "c6": -7.087065470749138, + "c7": 10.093061726514634 }, - "vertexSeeds": { - "c1": 6.860633709135897, - "c2": 6.63395694103005, - "c3": 6.9658499157508915, - "c4": 6.739682523810122, - "c5": 6.8410077161595675, - "c6": 6.8547599707975575, - "c7": 6.702225660386094 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721214, + "c3": 8.460471567267671, + "c4": 6.76837725381415, + "c5": 5.076282940360607, + "c6": 3.384188626907064, + "c7": 1.6920943134535429 }, "rgb": [58, 15, 49] }, @@ -293469,23 +293469,23 @@ "year": 1787, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 22.481916471594097, - "c2": -5.831122882392265, - "c3": -16.563694057893134, - "c4": -19.412585457399903, - "c5": -16.35302918068819, - "c6": -26.79102070348572, - "c7": -1.6735001435568044 + "points": { + "c1": -19.040953941096653, + "c2": -22.120362030636343, + "c3": -19.38360217252268, + "c4": 19.561490802033816, + "c5": -27.152389334036226, + "c6": 8.27429898082353, + "c7": -15.96350570094376 }, - "vertexSeeds": { - "c1": 8.050343612878278, - "c2": 8.098032218530008, - "c3": 8.765338965359529, - "c4": 8.175539335612626, - "c5": 8.089319696292941, - "c6": 8.514061819832358, - "c7": 8.199361621380268 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220523, + "c3": 10.471567267683783, + "c4": 8.377253814147021, + "c5": 6.282940360610262, + "c6": 4.1886269070735, + "c7": 2.094313453536761 }, "rgb": [86, 146, 138] }, @@ -293496,23 +293496,23 @@ "year": 1788, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 11.029890849929167, - "c2": 3.472518424342063, - "c3": 1.5778012999166364, - "c4": -39.09368249745388, - "c5": 43.61675050827125, - "c6": 43.62998114612688, - "c7": 8.679110621831008 + "points": { + "c1": -20.34697565786026, + "c2": 30.29651670851821, + "c3": 10.530948564566671, + "c4": -11.380472274693247, + "c5": -39.70649255102644, + "c6": -6.090533457625412, + "c7": 18.469336168572838 }, - "vertexSeeds": { - "c1": 1.8008532357045879, - "c2": 1.7873013270237639, - "c3": 1.7693068948151762, - "c4": 1.7933127667512694, - "c5": 1.7187167247982473, - "c6": 1.7064348892086207, - "c7": 1.8217718771683955 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.635228848821082, + "c3": 2.196024040684235, + "c4": 1.756819232547388, + "c5": 1.317614424410541, + "c6": 0.878409616273694, + "c7": 0.439204808136847 }, "rgb": [58, 15, 49] }, @@ -293523,23 +293523,23 @@ "year": 1788, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 10.132755514186996, - "c2": -32.24002337533639, - "c3": 6.7107497389766095, - "c4": 24.088585296659794, - "c5": -7.254722174886368, - "c6": 19.72657239477659, - "c7": -18.502421779795757 + "points": { + "c1": 32.7287943563124, + "c2": -1.9304948548089769, + "c3": 20.82267846000527, + "c4": 21.358015468937737, + "c5": -9.836774570342712, + "c6": 0.9961537428163183, + "c7": 21.99723032107095 }, - "vertexSeeds": { - "c1": 5.450658083913881, - "c2": 5.681802509261858, - "c3": 5.5562612623356555, - "c4": 5.677574699668836, - "c5": 5.458304188335004, - "c6": 5.59321047251002, - "c7": 5.554476048644851 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026363, + "c3": 6.9116967175219575, + "c4": 5.529357374017574, + "c5": 4.147018030513171, + "c6": 2.764678687008787, + "c7": 1.3823393435043836 }, "rgb": [58, 15, 49] }, @@ -293550,23 +293550,23 @@ "year": 1789, "resistanceReported": false, "duration": 53827200, - "curveSeeds": { - "c1": 63.167173007242525, - "c2": -43.77948738346748, - "c3": -15.200159295667667, - "c4": -26.62127660620544, - "c5": 51.093379667435656, - "c6": 27.813332340628406, - "c7": -51.20437746428611 + "points": { + "c1": 0.5365082093615143, + "c2": -55.07298038391394, + "c3": 35.43284223248659, + "c4": -66.54727715427208, + "c5": 61.860753037607964, + "c6": -60.15857462796595, + "c7": -66.45476935486295 }, - "vertexSeeds": { - "c1": 3.4473155664201562, - "c2": 3.4397043091237074, - "c3": 3.0992730653501406, - "c4": 3.3527713606626888, - "c5": 3.1635945653527267, - "c6": 3.195240361304491, - "c7": 3.4920592650799773 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481273, + "c3": 4.299583911234397, + "c4": 3.439667128987515, + "c5": 2.57975034674064, + "c6": 1.7198335644937575, + "c7": 0.8599167822468756 }, "rgb": [222, 0, 59] }, @@ -293577,23 +293577,23 @@ "year": 1788, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -13.357355356149071, - "c2": 9.547150161617846, - "c3": -6.176092493762667, - "c4": 21.302685665906655, - "c5": 0.026291903708305142, - "c6": 5.046944953322981, - "c7": -16.702784618599015 + "points": { + "c1": 15.662896315150483, + "c2": 11.800136613629014, + "c3": 30.088294047404034, + "c4": -26.224061433492906, + "c5": -18.69711030112857, + "c6": -6.046412688571124, + "c7": 19.341275141774325 }, - "vertexSeeds": { - "c1": 9.965293312112271, - "c2": 9.522665044257796, - "c3": 9.78303748971335, - "c4": 9.592449513032747, - "c5": 10.213294669338865, - "c6": 9.803013375850153, - "c7": 9.550926352597367 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.646324549237155, + "c3": 12.205270457697663, + "c4": 9.76421636615812, + "c5": 7.323162274618578, + "c6": 4.88210818307906, + "c7": 2.4410540915395185 }, "rgb": [86, 146, 138] }, @@ -293604,23 +293604,23 @@ "year": 1788, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -22.45703273711912, - "c2": -17.58450164222995, - "c3": 24.15236809140518, - "c4": 29.930202515868928, - "c5": -14.954439245762789, - "c6": 17.246161667249837, - "c7": -26.567045520671044 + "points": { + "c1": 18.62119142211916, + "c2": 33.43269612219429, + "c3": 23.448810436412977, + "c4": 22.87779830121326, + "c5": 1.2906456827448167, + "c6": -35.073116357810704, + "c7": -2.5370464339681504 }, - "vertexSeeds": { - "c1": 6.116711167395238, - "c2": 6.506766377952609, - "c3": 6.3433246098255776, - "c4": 6.1790531124607515, - "c5": 6.372542998736708, - "c6": 6.119059680966897, - "c7": 6.123101746471601 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -293631,23 +293631,23 @@ "year": 1788, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -30.12319145777344, - "c2": -22.470851091636305, - "c3": 12.046582628796443, - "c4": 22.952923262443917, - "c5": -18.980144519080177, - "c6": 22.14043788790567, - "c7": 29.381320886950625 + "points": { + "c1": 26.908381995909984, + "c2": -21.693767888705505, + "c3": -12.470123197081978, + "c4": -3.797682298283924, + "c5": 14.959955027202035, + "c6": -2.3605225801624954, + "c7": 26.044372387423614 }, - "vertexSeeds": { - "c1": 4.500815476520644, - "c2": 4.5422486343907345, - "c3": 4.624144101276015, - "c4": 4.538497124032526, - "c5": 4.433121989622174, - "c6": 4.715818683657143, - "c7": 4.737488335535197 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934809, + "c3": 5.709662505779016, + "c4": 4.567730004623209, + "c5": 3.4257975034674044, + "c6": 2.283865002311611, + "c7": 1.1419325011558055 }, "rgb": [238, 201, 159] }, @@ -293658,23 +293658,23 @@ "year": 1788, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 19.741686648202183, - "c2": -28.89463879978942, - "c3": 15.498231281447396, - "c4": -25.135060216956198, - "c5": 13.653641253875811, - "c6": -39.13966132236492, - "c7": 24.474968962639657 + "points": { + "c1": 6.18627007181567, + "c2": -40.89411375462038, + "c3": 21.215712339303863, + "c4": -34.919518065403096, + "c5": 17.5093856903354, + "c6": -26.18722003471548, + "c7": -11.257397262551688 }, - "vertexSeeds": { - "c1": 6.678154093792381, - "c2": 6.544474282459909, - "c3": 6.743412900608905, - "c4": 6.461657262348772, - "c5": 6.601697724389506, - "c6": 6.67873913635886, - "c7": 6.44644452937889 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198333, + "c3": 8.15996301433194, + "c4": 6.5279704114655495, + "c5": 4.895977808599157, + "c6": 3.263985205732784, + "c7": 1.631992602866392 }, "rgb": [222, 0, 59] }, @@ -293685,23 +293685,23 @@ "year": 1787, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -11.726269461837507, - "c2": 10.362843843228429, - "c3": -8.444308649473097, - "c4": -8.122758148609847, - "c5": 16.155801810528256, - "c6": 23.040087656548277, - "c7": 22.211638048000612 + "points": { + "c1": -23.57120722335623, + "c2": 12.96024680010117, + "c3": 3.0003964019042755, + "c4": 1.5396293227169338, + "c5": -15.757389141155192, + "c6": -9.815731798684318, + "c7": -18.14746256803599 }, - "vertexSeeds": { - "c1": 5.738216265187406, - "c2": 5.687009390903361, - "c3": 5.685592686544649, - "c4": 5.683228472562743, - "c5": 5.629301930158113, - "c6": 5.752472007114972, - "c7": 5.659549163291562 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066592, + "c3": 6.934812760055472, + "c4": 5.547850208044395, + "c5": 4.160887656033275, + "c6": 2.7739251040221977, + "c7": 1.3869625520111197 }, "rgb": [77, 76, 132] }, @@ -293712,23 +293712,23 @@ "year": 1787, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 4.006999691355638, - "c2": -23.83241931257514, - "c3": 9.874973145132095, - "c4": -24.15281305437787, - "c5": 13.65799073871979, - "c6": -26.089814654568784, - "c7": -1.6201506716644083 + "points": { + "c1": 13.474085110244722, + "c2": -23.11822535080809, + "c3": -23.94813493034315, + "c4": 13.430991627820568, + "c5": 15.498239104748578, + "c6": -2.263949721288718, + "c7": 1.2189531769733186 }, - "vertexSeeds": { - "c1": 6.926469381704821, - "c2": 6.466707994330945, - "c3": 6.691982971470527, - "c4": 6.761361601235106, - "c5": 6.619536593589788, - "c6": 6.705476145048574, - "c7": 6.372346687844484 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -293739,23 +293739,23 @@ "year": 1788, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -0.1531740219016413, - "c2": -25.993621342262713, - "c3": -22.240642445327772, - "c4": -10.465157355645836, - "c5": 5.18275614489847, - "c6": 15.57811008638783, - "c7": 32.8890575430939 + "points": { + "c1": -11.641236545736646, + "c2": -4.568437509841548, + "c3": 35.61224135210294, + "c4": -14.08280180503257, + "c5": -20.398924773824074, + "c6": -15.678711386431068, + "c7": -23.12623527396012 }, - "vertexSeeds": { - "c1": 7.825400130106363, - "c2": 7.876735000923688, - "c3": 7.914871615740047, - "c4": 7.876091762126611, - "c5": 7.862590325098525, - "c6": 7.857455081129062, - "c7": 7.842608346376574 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450763, + "c3": 9.45446139620897, + "c4": 7.563569116967176, + "c5": 5.672676837725382, + "c6": 3.781784558483588, + "c7": 1.890892279241794 }, "rgb": [222, 0, 59] }, @@ -293766,23 +293766,23 @@ "year": 1788, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": -3.167135873773276, - "c2": 40.68616757283461, - "c3": 29.761970235181813, - "c4": 16.898358890921806, - "c5": 16.654366079452494, - "c6": 36.58685930882519, - "c7": -45.44437207019169 + "points": { + "c1": -6.0247993943236295, + "c2": 31.339328396443427, + "c3": -24.59864257911536, + "c4": 1.9370100905760523, + "c5": 11.559233412691121, + "c6": -20.687798922965474, + "c7": 33.024764870351426 }, - "vertexSeeds": { - "c1": 2.9711674551065688, - "c2": 3.0335049487261156, - "c3": 3.038151559516498, - "c4": 2.993152762210724, - "c5": 2.7096211221903213, - "c6": 2.724218476909686, - "c7": 3.0079191341373415 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515948, + "c3": 3.7447988904299545, + "c4": 2.995839112343968, + "c5": 2.246879334257974, + "c6": 1.4979195561719805, + "c7": 0.7489597780859937 }, "rgb": [86, 146, 138] }, @@ -293793,23 +293793,23 @@ "year": 1788, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 3.061737449232993, - "c2": 10.272793344621732, - "c3": -9.201910271002745, - "c4": -3.7913220687981557, - "c5": -22.68112149918893, - "c6": -13.521037321487587, - "c7": -8.746843012819099 + "points": { + "c1": -14.62260264445207, + "c2": -8.288941547123788, + "c3": -26.74565666441398, + "c4": 7.652654462379019, + "c5": -26.825193445240984, + "c6": -29.394333567560906, + "c7": 11.768632586753561 }, - "vertexSeeds": { - "c1": 0.8157227208113943, - "c2": 0.8164728368384734, - "c3": 0.8129165397799503, - "c4": 0.8424076334899089, - "c5": 0.8136500926966213, - "c6": 0.832875933058435, - "c7": 0.8426181192213166 + "offsets": { + "c1": 1.4563106796116505, + "c2": 1.2482662968099851, + "c3": 1.0402219140083233, + "c4": 0.8321775312066578, + "c5": 0.6241331484049926, + "c6": 0.41608876560332725, + "c7": 0.20804438280166535 }, "rgb": [77, 76, 132] }, @@ -293820,23 +293820,23 @@ "year": 1788, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -9.705734530472675, - "c2": 8.095491297934387, - "c3": 3.0362602831329184, - "c4": -28.162799828599777, - "c5": -7.063853787727972, - "c6": 6.234796514314553, - "c7": 3.70687083784037 + "points": { + "c1": 24.49490049379652, + "c2": 11.002157054298081, + "c3": 39.503223077586284, + "c4": -38.239712006718854, + "c5": -32.03670393578377, + "c6": -22.428713387371506, + "c7": 25.107453117372103 }, - "vertexSeeds": { - "c1": 8.845931385792829, - "c2": 9.288578952106146, - "c3": 8.982878411469123, - "c4": 8.86815119140456, - "c5": 8.764124745526761, - "c6": 9.081543386750448, - "c7": 8.763472852469125 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547858, + "c3": 11.23439667128987, + "c4": 8.987517337031905, + "c5": 6.740638002773918, + "c6": 4.4937586685159525, + "c7": 2.2468793342579656 }, "rgb": [238, 201, 159] }, @@ -293847,23 +293847,23 @@ "year": 1787, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -13.353130672335045, - "c2": 15.37891964358927, - "c3": -16.037439676163494, - "c4": 10.92260142085993, - "c5": -19.24101399403011, - "c6": -18.02249478270001, - "c7": -13.789618752651986 + "points": { + "c1": -14.983572436497354, + "c2": 13.607793182276609, + "c3": -7.30656924527465, + "c4": -12.814306633600925, + "c5": 18.355731329294912, + "c6": 20.409942968734313, + "c7": -20.051182236822832 }, - "vertexSeeds": { - "c1": 7.811342666295782, - "c2": 8.127138443720844, - "c3": 7.769527495888296, - "c4": 8.286282745358012, - "c5": 7.944867922446209, - "c6": 7.934771718293885, - "c7": 7.656166395449222 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214969, + "c3": 9.89366620434582, + "c4": 7.914932963476646, + "c5": 5.936199722607496, + "c6": 3.957466481738323, + "c7": 1.9787332408691507 }, "rgb": [58, 15, 49] }, @@ -293874,23 +293874,23 @@ "year": 1788, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 9.626830040786416, - "c2": -12.156044996869543, - "c3": 30.07938045943331, - "c4": -26.194909397814257, - "c5": 11.750321045449823, - "c6": -16.878561039734365, - "c7": 23.709676163361017 + "points": { + "c1": -22.269066727143, + "c2": -33.407661429171576, + "c3": 0.691843538428472, + "c4": 0.21545490850897409, + "c5": 18.14305281385745, + "c6": -14.26118459444372, + "c7": -5.698597772750183 }, - "vertexSeeds": { - "c1": 10.122510398323872, - "c2": 9.673120047263637, - "c3": 10.036918871725346, - "c4": 9.744720560958488, - "c5": 10.39570225386614, - "c6": 9.680884579846193, - "c7": 10.155065379655596 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599161, + "c3": 12.413314840499293, + "c4": 9.93065187239947, + "c5": 7.447988904299581, + "c6": 4.965325936199735, + "c7": 2.4826629680998673 }, "rgb": [222, 0, 59] }, @@ -293901,23 +293901,23 @@ "year": 1788, "resistanceReported": true, "duration": 30931200, - "curveSeeds": { - "c1": 13.353027774746593, - "c2": 21.625788349321276, - "c3": 20.686285180663297, - "c4": -5.7018656764792155, - "c5": -39.913541918049894, - "c6": 3.396528278048777, - "c7": 23.936358691724642 + "points": { + "c1": -20.32785356863391, + "c2": 19.835467080465186, + "c3": -29.00270890305588, + "c4": -18.83779914597556, + "c5": 19.695529917540632, + "c6": 39.35118833607299, + "c7": 2.0238814005775225 }, - "vertexSeeds": { - "c1": 2.5750577303856015, - "c2": 3.0833408600360377, - "c3": 2.1127155105332895, - "c4": 2.273848028152234, - "c5": 2.3621884935505273, - "c6": 2.696460169460703, - "c7": 2.714461821790498 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596393, + "c3": 3.791030975496996, + "c4": 3.0328247803975965, + "c5": 2.2746185852981964, + "c6": 1.5164123901987983, + "c7": 0.7582061950993998 }, "rgb": [238, 201, 159] }, @@ -293928,23 +293928,23 @@ "year": 1788, "resistanceReported": false, "duration": 43372800, - "curveSeeds": { - "c1": -12.799376197443564, - "c2": 55.027899023630994, - "c3": 23.781894733168656, - "c4": 47.68537647283948, - "c5": -25.758595700196064, - "c6": -7.828806525344206, - "c7": 0.7813301877560974 + "points": { + "c1": -26.99009175468109, + "c2": -16.382274279619594, + "c3": -2.5173146104921145, + "c4": 49.05564158926646, + "c5": -50.01022839060224, + "c6": -37.45755243177416, + "c7": 25.1221810571747 }, - "vertexSeeds": { - "c1": 10.007337913006156, - "c2": 9.441969044993044, - "c3": 9.471837859034704, - "c4": 9.970387687832293, - "c5": 9.466254246984917, - "c6": 9.542508069963707, - "c7": 9.47437040011301 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.006934812760063, + "c3": 12.505779010633397, + "c4": 10.004623208506692, + "c5": 7.503467406380023, + "c6": 5.002311604253355, + "c7": 2.501155802126669 }, "rgb": [222, 0, 59] }, @@ -293955,23 +293955,23 @@ "year": 1788, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": -0.5916726879040013, - "c2": 4.594318113430774, - "c3": -52.09222509123969, - "c4": 52.75955160582666, - "c5": 34.97026437343426, - "c6": -20.634417405667577, - "c7": -29.794839916053252 + "points": { + "c1": -20.06670769761289, + "c2": 25.13202012658975, + "c3": -11.958843862079704, + "c4": 27.526630748417645, + "c5": 41.58852014209651, + "c6": 58.301654435894534, + "c7": 23.88015460845503 }, - "vertexSeeds": { - "c1": 3.54129141538732, - "c2": 3.6272911238562298, - "c3": 3.6600895643299904, - "c4": 3.550044283239871, - "c5": 3.494390874106858, - "c6": 3.6771602442282676, - "c7": 3.6907610461374856 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762828, + "c3": 4.4613962089690204, + "c4": 3.569116967175214, + "c5": 2.676837725381407, + "c6": 1.7845584835876138, + "c7": 0.8922792417938069 }, "rgb": [222, 0, 59] }, @@ -293982,23 +293982,23 @@ "year": 1787, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -22.631357454796834, - "c2": -9.982867866374484, - "c3": -1.1748483482125813, - "c4": -23.27780503429129, - "c5": 12.408727413283827, - "c6": -11.658848625764959, - "c7": -8.521050804178586 + "points": { + "c1": -0.3634121287965968, + "c2": 16.121599094223207, + "c3": 25.731873014978284, + "c4": 20.515963143037872, + "c5": -10.073987359628717, + "c6": -27.336373013351675, + "c7": -22.126822941865246 }, - "vertexSeeds": { - "c1": 8.38550689255744, - "c2": 7.6937594917699625, - "c3": 7.805832892185459, - "c4": 8.105592272901639, - "c5": 8.188838332690057, - "c6": 8.183314684712665, - "c7": 7.8529805939701385 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576976, + "c3": 10.101710587147478, + "c4": 8.08136846971799, + "c5": 6.061026352288493, + "c6": 4.040684234858995, + "c7": 2.0203421174294975 }, "rgb": [58, 15, 49] }, @@ -294009,23 +294009,23 @@ "year": 1788, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 15.729122137393553, - "c2": -23.17844074052374, - "c3": 22.86466915402834, - "c4": -0.839128173684415, - "c5": 33.647289820006996, - "c6": -3.904993752045147, - "c7": 29.126429084217243 + "points": { + "c1": -27.952845644659433, + "c2": -4.4017013115490045, + "c3": 2.732228360176194, + "c4": -4.952082447147802, + "c5": 1.742871913897723, + "c6": -21.145075414888876, + "c7": 19.512468816614593 }, - "vertexSeeds": { - "c1": 3.5298866064805856, - "c2": 3.719364028449348, - "c3": 3.5889604854335784, - "c4": 3.6860973587385635, - "c5": 3.683290597725705, - "c6": 3.5855482055296, - "c7": 3.5608505712223275 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304204, + "c4": 3.7540453074433615, + "c5": 2.815533980582519, + "c6": 1.8770226537216768, + "c7": 0.938511326860834 }, "rgb": [238, 201, 159] }, @@ -294036,23 +294036,23 @@ "year": 1788, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -14.995312773970728, - "c2": 26.704462834128563, - "c3": -34.86604678956128, - "c4": -35.14326151197284, - "c5": 35.32949382785603, - "c6": -37.04072230123208, - "c7": -32.651445148050065 + "points": { + "c1": 2.465659006936562, + "c2": 47.4176887713123, + "c3": -47.26657372998321, + "c4": 31.059195525585793, + "c5": -40.847983797499246, + "c6": -16.925325565888077, + "c7": 31.909175209505193 }, - "vertexSeeds": { - "c1": 8.504461842991365, - "c2": 8.297926693199802, - "c3": 8.098072375208963, - "c4": 8.628249480503639, - "c5": 8.423216360082158, - "c6": 8.466066376039821, - "c7": 8.665984222132117 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260758, + "c3": 10.494683310217289, + "c4": 8.395746648173839, + "c5": 6.296809986130368, + "c6": 4.1978733240869195, + "c7": 2.0989366620434495 }, "rgb": [86, 146, 138] }, @@ -294063,23 +294063,23 @@ "year": 1788, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -16.998889740543316, - "c2": 14.336317909777357, - "c3": -3.0319411707513524, - "c4": 5.878170148143084, - "c5": 12.954173942926637, - "c6": 18.992548468888835, - "c7": 18.351859956812127 + "points": { + "c1": -1.8708240741753315, + "c2": 14.217757747906681, + "c3": -15.083893446100625, + "c4": -0.4610728173362446, + "c5": -6.335279206908975, + "c6": -9.26900134527667, + "c7": 18.40044597400216 }, - "vertexSeeds": { - "c1": 3.7259333904193244, - "c2": 3.7114527928612677, - "c3": 3.6974342450418898, - "c4": 3.7395760445382304, - "c5": 3.7289450109340248, - "c6": 3.709273550211906, - "c7": 3.722688470600139 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843254, + "c3": 4.507628294036067, + "c4": 3.606102635228836, + "c5": 2.704576976421649, + "c6": 1.803051317614418, + "c7": 0.9015256588072315 }, "rgb": [238, 201, 159] }, @@ -294090,23 +294090,23 @@ "year": 1788, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": 32.736517078358176, - "c2": 25.90441720868975, - "c3": 19.12848650071247, - "c4": 35.181241399122015, - "c5": 17.11363322260003, - "c6": 7.1515717956882625, - "c7": 20.978910676697254 + "points": { + "c1": -0.20096536029299017, + "c2": 42.120649091989534, + "c3": 53.978779574433446, + "c4": 9.445533177549052, + "c5": -51.89253876393863, + "c6": 29.049431355415265, + "c7": -24.635907248244145 }, - "vertexSeeds": { - "c1": 8.430928295076422, - "c2": 8.186903250510143, - "c3": 8.454720737622207, - "c4": 8.144854377163432, - "c5": 8.395180309071712, - "c6": 8.061994420398587, - "c7": 8.096105940600046 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099854, + "c3": 10.402219140083227, + "c4": 8.321775312066576, + "c5": 6.241331484049927, + "c6": 4.1608876560332995, + "c7": 2.0804438280166497 }, "rgb": [86, 146, 138] }, @@ -294117,23 +294117,23 @@ "year": 1788, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 38.80969507612925, - "c2": 45.4528898588244, - "c3": 23.3988619497103, - "c4": 12.857207556401278, - "c5": 33.47509338819301, - "c6": 3.625850782434817, - "c7": -26.791366432280995 + "points": { + "c1": -42.54511876314136, + "c2": 27.65000621055436, + "c3": -7.0804150260787395, + "c4": -40.59530675911758, + "c5": 48.586882766363836, + "c6": 19.660893291593176, + "c7": -15.917977315063354 }, - "vertexSeeds": { - "c1": 3.52547682691028, - "c2": 3.7086697082608016, - "c3": 3.706596884124152, - "c4": 3.4670964027296822, - "c5": 3.5223299885609283, - "c6": 3.6028158389771234, - "c7": 3.3037748199604158 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803051, + "c3": 4.484512251502541, + "c4": 3.5876098012020314, + "c5": 2.6907073509015293, + "c6": 1.7938049006010193, + "c7": 0.8969024503005096 }, "rgb": [77, 76, 132] }, @@ -294144,23 +294144,23 @@ "year": 1788, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -19.956348205097186, - "c2": 16.145198547237285, - "c3": -19.328665557651462, - "c4": -16.526419240674976, - "c5": 8.896154202628686, - "c6": 8.977862362164778, - "c7": -5.365329591591166 + "points": { + "c1": 20.199133311900425, + "c2": 20.212526092255274, + "c3": -12.458446623457053, + "c4": -14.084828180696853, + "c5": -6.512204033322746, + "c6": 6.157939754198338, + "c7": 20.212963190306617 }, - "vertexSeeds": { - "c1": 12.152594894815032, - "c2": 12.166964473855097, - "c3": 12.067499440793057, - "c4": 12.135261116868792, - "c5": 12.020663511664766, - "c6": 11.866047017684291, - "c7": 12.502252133935933 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.030513176144268, + "c3": 15.02542764678686, + "c4": 12.020342117429513, + "c5": 9.015256588072104, + "c6": 6.010171058714756, + "c7": 3.005085529357408 }, "rgb": [238, 201, 159] }, @@ -294171,23 +294171,23 @@ "year": 1788, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -26.570776093167467, - "c2": -23.786298642432044, - "c3": 9.887858852124587, - "c4": 14.995825311828042, - "c5": -14.091716604774433, - "c6": -5.23690818960657, - "c7": -25.600814125323964 + "points": { + "c1": 22.196165062730927, + "c2": -29.52905195457134, + "c3": 31.920650307180573, + "c4": -18.45037090544794, + "c5": -31.16331999418101, + "c6": 29.820384350869674, + "c7": 10.325340647419083 }, - "vertexSeeds": { - "c1": 1.4250390233047143, - "c2": 1.3089641893035333, - "c3": 1.3866312066025503, - "c4": 1.4682208070231388, - "c5": 1.2837464559314664, - "c6": 1.3115430306772267, - "c7": 1.3088244635761597 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097087, + "c3": 1.7799352750809052, + "c4": 1.4239482200647238, + "c5": 1.0679611650485448, + "c6": 0.7119741100323632, + "c7": 0.3559870550161816 }, "rgb": [77, 76, 132] }, @@ -294198,23 +294198,23 @@ "year": 1788, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -3.6769226848747714, - "c2": -27.36224107154705, - "c3": 1.1044884644680906, - "c4": -3.706547463386194, - "c5": -12.486242261806883, - "c6": 0.1281619725448131, - "c7": -19.648223878496246 + "points": { + "c1": 19.94811064092652, + "c2": 8.284645781768813, + "c3": 9.66316210240117, + "c4": 22.37011031047471, + "c5": -0.08559644706226166, + "c6": 8.018837508945293, + "c7": 26.412856328571454 }, - "vertexSeeds": { - "c1": 0.42661483519625587, - "c2": 0.42069812966466863, - "c3": 0.5357566544227503, - "c4": 0.3953149095717572, - "c5": 0.36708020533195473, - "c6": 0.52781373560413, - "c7": 0.5017068920838132 + "offsets": { + "c1": 0.9385113268608414, + "c2": 0.8044382801664355, + "c3": 0.6703652334720297, + "c4": 0.5362921867776236, + "c5": 0.40221914008321774, + "c6": 0.2681460933888119, + "c7": 0.13407304669440584 }, "rgb": [77, 76, 132] }, @@ -294225,23 +294225,23 @@ "year": 1788, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 7.763542367729478, - "c2": -29.360959142294448, - "c3": -4.232304636948921, - "c4": 3.5143422158518405, - "c5": 16.657203579325937, - "c6": -10.389235269778695, - "c7": 13.17626489454544 + "points": { + "c1": -27.22189518248139, + "c2": -11.52888124151331, + "c3": 9.447254963460992, + "c4": 9.10852107682986, + "c5": 6.763101008384993, + "c6": 24.76523349305068, + "c7": 0.8967482083533085 }, - "vertexSeeds": { - "c1": 11.563608266197187, - "c2": 11.7953844215459, - "c3": 11.659745815289517, - "c4": 11.44634754572033, - "c5": 11.63236992983188, - "c6": 11.726205647232648, - "c7": 11.488131527614218 + "offsets": { + "c1": 20.19417475728155, + "c2": 17.309292649098456, + "c3": 14.424410540915419, + "c4": 11.539528432732324, + "c5": 8.654646324549228, + "c6": 5.76976421636619, + "c7": 2.884882108183095 }, "rgb": [77, 76, 132] }, @@ -294252,23 +294252,23 @@ "year": 1788, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -13.751126943348133, - "c2": -13.15441020910627, - "c3": -22.74656438901296, - "c4": 35.6024220119225, - "c5": 21.044958208526353, - "c6": 41.42099756502158, - "c7": -23.541751925943455 + "points": { + "c1": -17.14931947345933, + "c2": 25.530544947217535, + "c3": -29.39714468908423, + "c4": 5.51911458546892, + "c5": -43.486800884601436, + "c6": -22.781756127706554, + "c7": -16.64627569270995 }, - "vertexSeeds": { - "c1": 5.849573968134575, - "c2": 5.197256092486284, - "c3": 5.3771654314894235, - "c4": 5.438667627473093, - "c5": 5.4170617309721445, - "c6": 5.558366556367547, - "c7": 5.175253760655672 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [86, 146, 138] }, @@ -294279,23 +294279,23 @@ "year": 1788, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -19.78749753367773, - "c2": -23.960154634140302, - "c3": 2.904551863472335, - "c4": -21.5861933602485, - "c5": -18.80196121600156, - "c6": -23.955895137224324, - "c7": 6.998849145771217 + "points": { + "c1": -16.403247871561955, + "c2": 20.765732928086173, + "c3": -19.498970756349692, + "c4": 20.215132393776067, + "c5": 21.25111332789661, + "c6": 22.554692796037997, + "c7": -3.3310953039949567 }, - "vertexSeeds": { - "c1": 4.456562883594622, - "c2": 4.434053197674721, - "c3": 4.432818193130139, - "c4": 4.4418914605540625, - "c5": 4.450372728590825, - "c6": 4.468591706786775, - "c7": 4.452201439525717 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291293, + "c3": 5.339805825242673, + "c4": 4.2718446601941595, + "c5": 3.2038834951456465, + "c6": 2.135922330097133, + "c7": 1.0679611650485135 }, "rgb": [238, 201, 159] }, @@ -294306,23 +294306,23 @@ "year": 1787, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 7.256668088277788, - "c2": -2.08145491734118, - "c3": 19.59971094265452, - "c4": -16.288478483873416, - "c5": 7.120765307769066, - "c6": 19.388819955444784, - "c7": -21.512053078972432 + "points": { + "c1": 24.282229436992527, + "c2": -19.599741858269763, + "c3": -10.900647500969797, + "c4": 3.169285193878352, + "c5": -4.970126566841188, + "c6": -17.13742745697693, + "c7": -26.882185279154296 }, - "vertexSeeds": { - "c1": 4.199797638713433, - "c2": 3.6689484145457127, - "c3": 4.4714078033937685, - "c4": 4.561441673052656, - "c5": 3.9050755127453356, - "c6": 4.637965612048197, - "c7": 3.7302413056847263 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814147, + "c3": 5.640314378178457, + "c4": 4.512251502542765, + "c5": 3.3841886269070733, + "c6": 2.2561257512713824, + "c7": 1.1280628756356912 }, "rgb": [58, 15, 49] }, @@ -294333,23 +294333,23 @@ "year": 1788, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 9.804832738513902, - "c2": 9.22271939798307, - "c3": -11.792901579256423, - "c4": -5.606144000724587, - "c5": 13.610946651494544, - "c6": -3.3095380574111957, - "c7": -23.762966518146783 + "points": { + "c1": -27.506559660407586, + "c2": -9.895102290963159, + "c3": 13.774910587198526, + "c4": 27.090347368077182, + "c5": -5.9540503579564685, + "c6": -16.28557938052741, + "c7": 26.88803992162792 }, - "vertexSeeds": { - "c1": 7.9151413573728036, - "c2": 7.256868569631134, - "c3": 7.371310237594295, - "c4": 7.111455978392995, - "c5": 7.27976790431481, - "c6": 6.881193728519485, - "c7": 8.203056987629651 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174761, + "c3": 9.870550161812297, + "c4": 7.89644012944984, + "c5": 5.922330097087375, + "c6": 3.94822006472492, + "c7": 1.9741100323624547 }, "rgb": [58, 15, 49] }, @@ -294360,23 +294360,23 @@ "year": 1788, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -27.001900724783447, - "c2": 11.464359879920323, - "c3": 11.166928012124664, - "c4": 6.712679798944386, - "c5": -1.0248703417216731, - "c6": -23.150721323372444, - "c7": 24.22081625255582 + "points": { + "c1": 16.515194657846507, + "c2": 23.073551409438522, + "c3": 18.447804747296203, + "c4": -31.493073314303842, + "c5": -3.5534721788069916, + "c6": 34.14290164540373, + "c7": 13.9553267948924 }, - "vertexSeeds": { - "c1": 7.710546383195745, - "c2": 7.684794569627257, - "c3": 7.433761583355223, - "c4": 8.037861557788283, - "c5": 7.768285261991046, - "c6": 7.217022029552128, - "c7": 8.063900409890216 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.67822468793342, + "c3": 9.731853906611189, + "c4": 7.7854831252889465, + "c5": 5.8391123439667165, + "c6": 3.8927415626444732, + "c7": 1.9463707813222424 }, "rgb": [58, 15, 49] }, @@ -294387,23 +294387,23 @@ "year": 1788, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 39.72241176121734, - "c2": 3.121260594115867, - "c3": -21.89049069142652, - "c4": -40.90967154420237, - "c5": 21.03256134793572, - "c6": 43.03365596167871, - "c7": 31.51437637303166 + "points": { + "c1": -14.996522636179598, + "c2": -44.20810180249327, + "c3": 13.041789184654569, + "c4": -20.055917515062745, + "c5": 34.9935830882739, + "c6": 30.29573990695399, + "c7": -39.300016063271286 }, - "vertexSeeds": { - "c1": 6.680285145936664, - "c2": 9.715519932237765, - "c3": 9.835044559903647, - "c4": 6.825894033580053, - "c5": 7.697564574194462, - "c6": 7.207384712938427, - "c7": 9.521828329936632 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.78502080443828, + "c3": 12.320850670365232, + "c4": 9.856680536292187, + "c5": 7.392510402219136, + "c6": 4.928340268146091, + "c7": 2.4641701340730453 }, "rgb": [58, 15, 49] }, @@ -294414,23 +294414,23 @@ "year": 1788, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 16.5760389817492, - "c2": 37.3396155311517, - "c3": -15.785920585406352, - "c4": -11.347339154175497, - "c5": 16.41772088399668, - "c6": 2.055365055785046, - "c7": -3.960022979780568 + "points": { + "c1": -40.99660626717131, + "c2": 19.661747796113765, + "c3": 41.77426722377023, + "c4": -27.50199029302493, + "c5": 11.90727349555113, + "c6": 32.41221513421791, + "c7": 42.066695164432964 }, - "vertexSeeds": { - "c1": 4.82910375529347, - "c2": 4.791058320058416, - "c3": 4.960628213540348, - "c4": 4.704414369299117, - "c5": 4.8332854017569735, - "c6": 4.837977104782239, - "c7": 4.784784509568934 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417479, + "c3": 5.987055016181225, + "c4": 4.789644012944983, + "c5": 3.5922330097087394, + "c6": 2.3948220064724963, + "c7": 1.197411003236243 }, "rgb": [222, 0, 59] }, @@ -294441,23 +294441,23 @@ "year": 1788, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": 2.1964674876064834, - "c2": -12.669653981068926, - "c3": -27.71479080916876, - "c4": -12.944890586633711, - "c5": 14.478199613687636, - "c6": 22.046156576564172, - "c7": 18.942555214376213 + "points": { + "c1": 51.307224481104655, + "c2": -41.4991122656897, + "c3": -16.45429562601737, + "c4": 7.654635510435405, + "c5": -36.576188216458426, + "c6": 19.51161181367128, + "c7": 44.97848607769417 }, - "vertexSeeds": { - "c1": 11.310871154959083, - "c2": 11.231809413642035, - "c3": 11.179590912219037, - "c4": 11.259558381269134, - "c5": 10.8258617930928, - "c6": 11.114794371060073, - "c7": 11.192183289139866 + "offsets": { + "c1": 19.644012944983817, + "c2": 16.83772538141469, + "c3": 14.031437817845601, + "c4": 11.225150254276473, + "c5": 8.418862690707344, + "c6": 5.612575127138257, + "c7": 2.8062875635691285 }, "rgb": [77, 76, 132] }, @@ -294468,23 +294468,23 @@ "year": 1788, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -23.60165382979379, - "c2": 13.733400407580742, - "c3": 8.857856391310182, - "c4": 5.772926211881963, - "c5": -15.931098625357375, - "c6": 8.507816148961215, - "c7": -13.981499888038302 + "points": { + "c1": -4.077288228226646, + "c2": -18.26513377470255, + "c3": 13.055561754307664, + "c4": -9.371327622066051, + "c5": -1.8074061913852013, + "c6": -19.86600259748431, + "c7": -24.702437463665532 }, - "vertexSeeds": { - "c1": 2.5944126232008147, - "c2": 2.599994278228521, - "c3": 2.6210734333880326, - "c4": 2.6068426339510573, - "c5": 2.6209455894619884, - "c6": 2.5949206969804774, - "c7": 2.6107953717714576 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.772538141470198, + "c3": 3.143781784558457, + "c4": 2.515025427646778, + "c5": 1.886269070735099, + "c6": 1.2575127138233577, + "c7": 0.6287563569116789 }, "rgb": [77, 76, 132] }, @@ -294495,23 +294495,23 @@ "year": 1788, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -2.620359309889018, - "c2": -33.307885949147504, - "c3": 6.111817733841846, - "c4": -0.6028807728375867, - "c5": 21.907219263859844, - "c6": 22.470535554909965, - "c7": -33.51890852358746 + "points": { + "c1": 32.82004663751677, + "c2": 35.2656977585481, + "c3": -20.033595129701364, + "c4": -29.29865171082256, + "c5": 3.8749363605615343, + "c6": -16.28350938962885, + "c7": 5.9939398708719835 }, - "vertexSeeds": { - "c1": 6.475472702755004, - "c2": 6.840471772155501, - "c3": 6.55862324809407, - "c4": 6.524147443960627, - "c5": 6.354409753719451, - "c6": 6.593181818033141, - "c7": 6.523163330636331 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -294522,23 +294522,23 @@ "year": 1788, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -6.378378280774861, - "c2": -25.03135386818702, - "c3": 34.43262840699265, - "c4": 17.07682999446825, - "c5": 6.066046720012409, - "c6": 21.5325741336775, - "c7": 12.468192744050505 + "points": { + "c1": 9.289180058000149, + "c2": -26.92843445677469, + "c3": -26.435274431564256, + "c4": -23.959819516973504, + "c5": -3.725475231446822, + "c6": -35.320471450374676, + "c7": 5.064760625505372 }, - "vertexSeeds": { - "c1": 6.109066900884406, - "c2": 6.1621826291127535, - "c3": 6.124060408248967, - "c4": 6.189301723917625, - "c5": 6.3280451522535435, - "c6": 6.019142952400533, - "c7": 5.992458877647361 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [222, 0, 59] }, @@ -294549,23 +294549,23 @@ "year": 1788, "resistanceReported": false, "duration": 42681600, - "curveSeeds": { - "c1": 4.750467409420537, - "c2": -17.14158021442706, - "c3": -2.0553608304930577, - "c4": -32.43725850059953, - "c5": -38.02409130659866, - "c6": -30.931631959709787, - "c7": -39.36358100524957 + "points": { + "c1": -8.104436847206323, + "c2": 40.09213627016628, + "c3": -10.468393387507355, + "c4": 34.97729257252736, + "c5": -20.487614809526008, + "c6": -40.76724991178341, + "c7": 28.299426093385932 }, - "vertexSeeds": { - "c1": 5.105753170437716, - "c2": 4.684329931000499, - "c3": 5.08917148067444, - "c4": 4.68806343235441, - "c5": 5.011061590249702, - "c6": 4.934556489067029, - "c7": 4.924761171608423 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699026, + "c3": 6.148867313915859, + "c4": 4.9190938511326845, + "c5": 3.6893203883495165, + "c6": 2.4595469255663422, + "c7": 1.2297734627831676 }, "rgb": [238, 201, 159] }, @@ -294576,23 +294576,23 @@ "year": 1788, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 23.46990596771463, - "c2": 33.28865998254958, - "c3": 12.623437696918195, - "c4": -19.783295394210224, - "c5": 11.495503559970224, - "c6": -14.852540476008176, - "c7": -5.9195720188370515 + "points": { + "c1": 40.43982319654268, + "c2": -14.553909173434768, + "c3": 22.744958776576873, + "c4": -21.61883437864602, + "c5": 1.3006464987263655, + "c6": 17.085693180592443, + "c7": 32.42009993686512 }, - "vertexSeeds": { - "c1": 0.660621761658031, - "c2": 0.660621761658031, - "c3": 0.660621761658031, - "c4": 0.660621761658031, - "c5": 0.660621761658031, - "c6": 0.660621761658031, - "c7": 0.660621761658031 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -294603,23 +294603,23 @@ "year": 1787, "resistanceReported": false, "duration": 80956800, - "curveSeeds": { - "c1": -13.02108515059642, - "c2": 90.1594595821216, - "c3": -51.290981418325124, - "c4": -15.44809396853293, - "c5": -57.791434179534434, - "c6": -60.739682456065985, - "c7": 20.44123646310247 + "points": { + "c1": -90.36294329967608, + "c2": -47.79802563154182, + "c3": -20.519095813187946, + "c4": -9.19719654370131, + "c5": -6.83888710089964, + "c6": -65.95560629046702, + "c7": -81.32809319192938 }, - "vertexSeeds": { - "c1": 1.9525934211725857, - "c2": 2.2627234874035564, - "c3": 2.0676310187036817, - "c4": 1.9304621028180422, - "c5": 1.9245998208371635, - "c6": 2.326362560061059, - "c7": 2.0409064378435904 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668528, + "c3": 2.797041146555709, + "c4": 2.2376329172445684, + "c5": 1.678224687933425, + "c6": 1.1188164586222842, + "c7": 0.5594082293111434 }, "rgb": [58, 15, 49] }, @@ -294630,23 +294630,23 @@ "year": 1788, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": -49.06649204762667, - "c2": 14.410490617593638, - "c3": -48.56989607363928, - "c4": -40.44971530023132, - "c5": -44.623667650886176, - "c6": -44.79039251308078, - "c7": -11.183023147141633 + "points": { + "c1": -1.3957292860478105, + "c2": 27.639691711756115, + "c3": -7.557784400707938, + "c4": 42.44284862580504, + "c5": 43.76776045285111, + "c6": 31.25368648197228, + "c7": -44.22979803434676 }, - "vertexSeeds": { - "c1": 5.450708219993237, - "c2": 5.244291271459115, - "c3": 5.070125047939486, - "c4": 5.383218672862708, - "c5": 5.244880560417046, - "c6": 5.209700718462141, - "c7": 5.425851630671589 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423017, + "c3": 6.564956079519196, + "c4": 5.251964863615352, + "c5": 3.9389736477115087, + "c6": 2.625982431807687, + "c7": 1.3129912159038435 }, "rgb": [77, 76, 132] }, @@ -294657,23 +294657,23 @@ "year": 1788, "resistanceReported": false, "duration": 41731200, - "curveSeeds": { - "c1": -38.8654774796145, - "c2": 51.23511194905695, - "c3": 15.930957065189837, - "c4": 42.27673074717142, - "c5": 34.045306075316994, - "c6": -8.415000720801295, - "c7": -42.61589913468427 + "points": { + "c1": 49.5992530859153, + "c2": 20.36991171779045, + "c3": -53.32501570629019, + "c4": -6.408143333364698, + "c5": 26.176874702644504, + "c6": 35.983031525117774, + "c7": -22.70461058396375 }, - "vertexSeeds": { - "c1": 8.596406063912903, - "c2": 8.523824342036349, - "c3": 7.201622595770245, - "c4": 7.287401902180048, - "c5": 8.038272369879532, - "c6": 6.621639621357769, - "c7": 6.73279457258958 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.45492371705964, + "c3": 10.379103097549699, + "c4": 8.303282478039756, + "c5": 6.227461858529816, + "c6": 4.151641239019875, + "c7": 2.075820619509941 }, "rgb": [222, 0, 59] }, @@ -294684,23 +294684,23 @@ "year": 1788, "resistanceReported": true, "duration": 12441600, - "curveSeeds": { - "c1": -3.804034271359818, - "c2": 12.713090088730759, - "c3": -16.218002607598446, - "c4": -16.390548720423944, - "c5": -10.00941015124513, - "c6": 3.0713537258766976, - "c7": 8.834199976952348 + "points": { + "c1": -20.05618023044676, + "c2": -0.8508548307704018, + "c3": 0.8596888803024854, + "c4": 22.908326701662347, + "c5": -3.8549409975769606, + "c6": 18.180008146581102, + "c7": -7.0269225501881145 }, - "vertexSeeds": { - "c1": 1.9994378748804915, - "c2": 1.9721848685834331, - "c3": 1.9376115436184727, - "c4": 1.9589231859927618, - "c5": 1.8899133373181813, - "c6": 1.8676062882815694, - "c7": 1.8817535371084952 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.4271844660194146, + "c4": 1.9417475728155331, + "c5": 1.4563106796116512, + "c6": 0.9708737864077696, + "c7": 0.4854368932038817 }, "rgb": [222, 0, 59] }, @@ -294711,23 +294711,23 @@ "year": 1788, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 24.685292555948116, - "c2": -8.368000653446469, - "c3": -26.85658671387143, - "c4": -24.372214706629237, - "c5": 18.357470362471993, - "c6": -32.056956233905666, - "c7": -27.06389762683127 + "points": { + "c1": 4.566386792836205, + "c2": 6.742646197495844, + "c3": -1.3101337564916662, + "c4": 6.35233616047951, + "c5": 5.6694379099061365, + "c6": -1.439614796010062, + "c7": -0.2709291704597945 }, - "vertexSeeds": { - "c1": 5.509673707096574, - "c2": 5.774940741916284, - "c3": 5.647215169687596, - "c4": 5.748822550633938, - "c5": 5.807410779013916, - "c6": 5.8246993114245065, - "c7": 5.5668501168497535 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267682, + "c3": 7.050392972723069, + "c4": 5.640314378178455, + "c5": 4.230235783633841, + "c6": 2.8201571890892274, + "c7": 1.4100785945446137 }, "rgb": [238, 201, 159] }, @@ -294738,23 +294738,23 @@ "year": 1788, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 32.944395791881504, - "c2": -14.115463977042058, - "c3": 31.43923354521793, - "c4": -32.046434342019076, - "c5": 29.542669094857686, - "c6": -16.16622018848845, - "c7": 32.04826252567774 + "points": { + "c1": 34.934687770561766, + "c2": 35.20799780233763, + "c3": 27.307653665170818, + "c4": 17.128822866028614, + "c5": -0.9127449411525461, + "c6": -25.27569110532796, + "c7": -14.383365532409826 }, - "vertexSeeds": { - "c1": 1.7885624595161067, - "c2": 1.82860360641708, - "c3": 1.7820222195346929, - "c4": 1.7971891324529992, - "c5": 1.8096124025716134, - "c6": 1.7544448663409817, - "c7": 1.8334655973637421 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.6629680998613035, + "c3": 2.219140083217753, + "c4": 1.7753120665742024, + "c5": 1.3314840499306517, + "c6": 0.8876560332871012, + "c7": 0.4438280166435506 }, "rgb": [77, 76, 132] }, @@ -294765,23 +294765,23 @@ "year": 1789, "resistanceReported": false, "duration": 44409600, - "curveSeeds": { - "c1": 24.283697734678476, - "c2": -33.827428369821526, - "c3": 24.322103555872296, - "c4": 3.725582886512562, - "c5": 57.13578643399456, - "c6": 7.293653944468581, - "c7": -2.8111041951101825 + "points": { + "c1": 58.79610510480584, + "c2": -26.685838616396296, + "c3": 31.684587451777126, + "c4": -32.58315570648308, + "c5": 42.336243628866804, + "c6": 29.85059487239544, + "c7": -17.793156392322373 }, - "vertexSeeds": { - "c1": 2.160447824445805, - "c2": 2.127577467731447, - "c3": 2.1888614768134755, - "c4": 2.2910557090066512, - "c5": 2.2919214679909876, - "c6": 2.2491111058957127, - "c7": 2.1264375547914964 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.3009708737864054, + "c3": 2.750809061488674, + "c4": 2.200647249190937, + "c5": 1.6504854368932058, + "c6": 1.1003236245954684, + "c7": 0.5501618122977373 }, "rgb": [77, 76, 132] }, @@ -294792,23 +294792,23 @@ "year": 1788, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -7.7645262677683995, - "c2": -33.653004735722625, - "c3": -32.876107268940544, - "c4": -33.552260187115785, - "c5": 34.318550214912094, - "c6": -18.158606411273865, - "c7": 2.012142815097313 + "points": { + "c1": -17.582753274304252, + "c2": -8.829499148167386, + "c3": -26.634171496791616, + "c4": 16.957112128298135, + "c5": -24.560844291944527, + "c6": -6.010430212314322, + "c7": -18.27441338317838 }, - "vertexSeeds": { - "c1": 5.016598314839683, - "c2": 5.04601883962561, - "c3": 5.339629791381305, - "c4": 5.145095301729915, - "c5": 5.173753425103948, - "c6": 4.994479591851539, - "c7": 5.279715863365598 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.76699029126213, + "c3": 6.4724919093851225, + "c4": 5.177993527508094, + "c5": 3.883495145631065, + "c6": 2.588996763754058, + "c7": 1.294498381877029 }, "rgb": [238, 201, 159] }, @@ -294819,23 +294819,23 @@ "year": 1788, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 11.245770086954003, - "c2": -5.592695481530807, - "c3": 18.227753374431046, - "c4": 11.122806009051352, - "c5": -25.18201008177857, - "c6": 26.33741972574417, - "c7": -12.317515682191587 + "points": { + "c1": 20.531874722500497, + "c2": -17.461109284565424, + "c3": 1.321879807210351, + "c4": 10.114573775428987, + "c5": 30.352541155866184, + "c6": -3.031015908087703, + "c7": -25.300104239805243 }, - "vertexSeeds": { - "c1": 8.54519825146286, - "c2": 8.592950080893695, - "c3": 8.642609756017762, - "c4": 8.563424599262161, - "c5": 8.630509221512805, - "c6": 8.637789550042854, - "c7": 8.569370441204082 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963939034, + "c3": 10.309754969949127, + "c4": 8.247803975959355, + "c5": 6.1858529819694485, + "c6": 4.123901987979678, + "c7": 2.0619509939897704 }, "rgb": [238, 201, 159] }, @@ -294846,23 +294846,23 @@ "year": 1789, "resistanceReported": false, "duration": 51667200, - "curveSeeds": { - "c1": 50.586273430240084, - "c2": 47.580293619227376, - "c3": -7.820044051564047, - "c4": -11.913047746114614, - "c5": -31.388503962682343, - "c6": -48.01565490718372, - "c7": 43.4617416484397 + "points": { + "c1": -20.296592496730042, + "c2": 44.65155987259871, + "c3": 22.893511054030142, + "c4": -11.583024791223863, + "c5": 41.334604770352726, + "c6": -10.23848993848791, + "c7": -45.1903027321095 }, - "vertexSeeds": { - "c1": 3.081583079350138, - "c2": 3.2799250248979757, - "c3": 3.3333534309937005, - "c4": 3.5218683379829745, - "c5": 4.117781777932015, - "c6": 3.5800574057892, - "c7": 3.499589456544336 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251042, + "c3": 5.316689782709202, + "c4": 4.253351826167362, + "c5": 3.1900138696255222, + "c6": 2.126675913083682, + "c7": 1.0633379565418428 }, "rgb": [238, 201, 159] }, @@ -294873,23 +294873,23 @@ "year": 1788, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 17.200986456463536, - "c2": -18.339141821896927, - "c3": -28.616255780207908, - "c4": -17.383480737035704, - "c5": -2.315089039977412, - "c6": 24.279547491352407, - "c7": 28.67247142350563 + "points": { + "c1": -20.555820702152523, + "c2": -3.345006286884054, + "c3": -1.5618007998101895, + "c4": -30.564376671589624, + "c5": 22.1378594625561, + "c6": 26.370481165437063, + "c7": -23.705307981466127 }, - "vertexSeeds": { - "c1": 9.788149436364893, - "c2": 9.949800829835505, - "c3": 10.57282191367472, - "c4": 10.040227449063108, - "c5": 10.189430119152183, - "c6": 9.93956044304277, - "c7": 10.696493674169496 + "offsets": { + "c1": 17.864077669902912, + "c2": 15.312066574202483, + "c3": 12.760055478502098, + "c4": 10.208044382801669, + "c5": 7.656033287101241, + "c6": 5.104022191400857, + "c7": 2.5520110957004283 }, "rgb": [238, 201, 159] }, @@ -294900,23 +294900,23 @@ "year": 1788, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 39.296956671917904, - "c2": 10.620966449973452, - "c3": -8.200102770727845, - "c4": 7.677174239858438, - "c5": -14.11218093527469, - "c6": 29.227869537875115, - "c7": 14.23485847683071 + "points": { + "c1": 35.595719057090825, + "c2": 39.75124291096859, + "c3": 3.5353016812856097, + "c4": 7.007815632365414, + "c5": 4.348097849047157, + "c6": -44.02729811561729, + "c7": -11.00013760979931 }, - "vertexSeeds": { - "c1": 0.5061113197688829, - "c2": 0.5087955885120073, - "c3": 0.5018668373246093, - "c4": 0.5086866511474225, - "c5": 0.5145642958683194, - "c6": 0.5114638780349239, - "c7": 0.5386870243157086 + "offsets": { + "c1": 0.9385113268608414, + "c2": 0.8044382801664359, + "c3": 0.6703652334720294, + "c4": 0.5362921867776239, + "c5": 0.4022191400832174, + "c6": 0.26814609338881196, + "c7": 0.13407304669440542 }, "rgb": [77, 76, 132] }, @@ -294927,23 +294927,23 @@ "year": 1788, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": 22.434327479708116, - "c2": 13.098860492198291, - "c3": 4.750375603902015, - "c4": 37.37007337304978, - "c5": 2.407402344165874, - "c6": -40.78093733263363, - "c7": -24.315168915964843 + "points": { + "c1": 26.470317146587718, + "c2": 7.818243906673274, + "c3": -26.456284491754953, + "c4": -33.205608793704485, + "c5": 23.441572744041665, + "c6": 4.6550362269865175, + "c7": 12.991384737047198 }, - "vertexSeeds": { - "c1": 3.9532785389744527, - "c2": 3.786890924925766, - "c3": 3.6728129374678575, - "c4": 3.8001277596803225, - "c5": 3.8345694294897767, - "c6": 3.8407259791008004, - "c7": 3.982069642809348 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.7975034674063775, + "c3": 4.831252889505321, + "c4": 3.865002311604255, + "c5": 2.8987517337031887, + "c6": 1.9325011558021326, + "c7": 0.9662505779010663 }, "rgb": [238, 201, 159] }, @@ -294954,23 +294954,23 @@ "year": 1788, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -6.444208228413146, - "c2": -19.917840508811317, - "c3": -33.54112557795526, - "c4": -18.745594690526517, - "c5": 6.881243044547013, - "c6": 3.017891756269208, - "c7": -5.549659218951817 + "points": { + "c1": 33.40840942508622, + "c2": -32.404306145792674, + "c3": 26.82249258860095, + "c4": 6.571199197424875, + "c5": 0.0537008748552239, + "c6": -8.547458686802507, + "c7": 30.215300207893904 }, - "vertexSeeds": { - "c1": 2.6985606183053283, - "c2": 2.5528111071634423, - "c3": 2.5149964957686417, - "c4": 2.9780837046348667, - "c5": 3.3689687063607168, - "c6": 2.9239653611480634, - "c7": 2.2902040272811948 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239944, + "c3": 4.160887656033287, + "c4": 3.328710124826629, + "c5": 2.4965325936199716, + "c6": 1.664355062413314, + "c7": 0.8321775312066575 }, "rgb": [86, 146, 138] }, @@ -294981,23 +294981,23 @@ "year": 1789, "resistanceReported": false, "duration": 58147200, - "curveSeeds": { - "c1": -43.39303219009076, - "c2": 67.77704657197842, - "c3": 30.652792653083367, - "c4": -11.446891563258198, - "c5": 36.89495688998221, - "c6": -71.65414268773692, - "c7": 9.958678498863918 + "points": { + "c1": -56.11640328498553, + "c2": -38.9797680302187, + "c3": 35.93367277183782, + "c4": 53.488796278942544, + "c5": 26.444309346286687, + "c6": 6.075852110821344, + "c7": 21.095611458251668 }, - "vertexSeeds": { - "c1": 5.71025891468141, - "c2": 5.566832434252299, - "c3": 5.504303521089394, - "c4": 5.938825999513977, - "c5": 5.677132706944816, - "c6": 5.56623447557754, - "c7": 5.519043949400955 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388346, + "c3": 7.119741100323618, + "c4": 5.695792880258891, + "c5": 4.2718446601941835, + "c6": 2.8478964401294564, + "c7": 1.4239482200647282 }, "rgb": [238, 201, 159] }, @@ -295008,23 +295008,23 @@ "year": 1788, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -14.337044880744191, - "c2": -18.169107670583355, - "c3": -12.181986562940647, - "c4": -18.436240134493, - "c5": 7.6422887569677656, - "c6": -13.515637707946487, - "c7": -15.140900183332828 + "points": { + "c1": -25.511019500620375, + "c2": -7.724243862077689, + "c3": 0.4142813867094759, + "c4": -7.181133383673604, + "c5": 3.083114675471574, + "c6": -23.613907062043282, + "c7": 13.862396064480542 }, - "vertexSeeds": { - "c1": 2.564766839378238, - "c2": 2.564766839378238, - "c3": 2.564766839378238, - "c4": 2.564766839378238, - "c5": 2.564766839378238, - "c6": 2.564766839378238, - "c7": 2.564766839378238 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -295035,23 +295035,23 @@ "year": 1788, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -23.497749565706865, - "c2": -11.013151740165583, - "c3": 39.951359932676695, - "c4": 37.60775770228534, - "c5": 32.16952801267503, - "c6": 24.703290960833726, - "c7": 48.46742440908497 + "points": { + "c1": -23.098229353748195, + "c2": 35.02564430683471, + "c3": -2.069343568527522, + "c4": 30.134801554224666, + "c5": 44.74545414254527, + "c6": -20.122696525504665, + "c7": -52.33955379074237 }, - "vertexSeeds": { - "c1": 7.983114769941438, - "c2": 7.584549210163818, - "c3": 7.31379485275343, - "c4": 8.156959770697808, - "c5": 7.767449458706292, - "c6": 7.207541370978313, - "c7": 8.116158550210328 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094314, + "c3": 9.824318076745262, + "c4": 7.859454461396209, + "c5": 5.894590846047157, + "c6": 3.9297272306981044, + "c7": 1.9648636153490522 }, "rgb": [222, 0, 59] }, @@ -295062,23 +295062,23 @@ "year": 1788, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 34.394344302912344, - "c2": 3.3896686562860836, - "c3": -12.882705339506735, - "c4": -43.9525913689679, - "c5": 7.870102860988517, - "c6": -12.586128057723926, - "c7": -10.846958410111213 + "points": { + "c1": -11.808435249641896, + "c2": -22.84960768302569, + "c3": -20.489647412150546, + "c4": -21.539102157708506, + "c5": -0.11597554966945012, + "c6": 19.173067146449497, + "c7": 34.244197261440405 }, - "vertexSeeds": { - "c1": 2.986920071764797, - "c2": 3.136152339700568, - "c3": 3.2325956295917475, - "c4": 3.2598231498130086, - "c5": 3.1887272410248415, - "c6": 3.2501542068800258, - "c7": 3.0767788353969125 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797506, + "c3": 3.9066111881645895, + "c4": 3.125288950531674, + "c5": 2.343966712898758, + "c6": 1.5626444752658317, + "c7": 0.7813222376329159 }, "rgb": [58, 15, 49] }, @@ -295089,23 +295089,23 @@ "year": 1788, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 34.23403912401237, - "c2": 0.8543130491202504, - "c3": 41.37726172910605, - "c4": 42.36612557638328, - "c5": 3.5951665039134824, - "c6": -31.245932044505558, - "c7": 0.35501979456996935 + "points": { + "c1": 7.955812559699204, + "c2": -46.175387251039965, + "c3": -12.969201747944254, + "c4": 8.199262047697594, + "c5": -22.432318878113097, + "c6": 41.39338398532392, + "c7": 7.3226439189840065 }, - "vertexSeeds": { - "c1": 2.481943998530807, - "c2": 2.540547051807928, - "c3": 2.003731872231564, - "c4": 2.306708401118961, - "c5": 2.017296028486082, - "c6": 1.9098717598617974, - "c7": 2.37783936755105 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349514, + "c3": 3.074433656957929, + "c4": 2.4595469255663427, + "c5": 1.8446601941747578, + "c6": 1.2297734627831713, + "c7": 0.6148867313915849 }, "rgb": [222, 0, 59] }, @@ -295116,23 +295116,23 @@ "year": 1787, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": 1.4088132006999672, - "c2": 7.03035425654549, - "c3": -5.0244114557654544, - "c4": -14.095643531330786, - "c5": -17.290507788762937, - "c6": 7.219440265452384, - "c7": -4.0420029221004405 + "points": { + "c1": 8.928595910985468, + "c2": -8.258612424770284, + "c3": -18.933395933240234, + "c4": 18.52225428338761, + "c5": -5.827941951810509, + "c6": -0.10273280597747814, + "c7": -22.027008798435883 }, - "vertexSeeds": { - "c1": 1.1852331606217616, - "c2": 1.1852331606217616, - "c3": 1.1852331606217616, - "c4": 1.1852331606217616, - "c5": 1.1852331606217616, - "c6": 1.1852331606217616, - "c7": 1.1852331606217616 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -295143,23 +295143,23 @@ "year": 1788, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 25.054791110977717, - "c2": 20.73392208432093, - "c3": 23.746661043105902, - "c4": -18.854637837955547, - "c5": -10.477977966223076, - "c6": -21.157924114460876, - "c7": -26.83241892105662 + "points": { + "c1": 42.37178946937611, + "c2": -29.313825707463085, + "c3": 17.232277979867668, + "c4": -8.74207405078944, + "c5": -24.439165349533045, + "c6": 28.264578601977234, + "c7": -14.57851471583044 }, - "vertexSeeds": { - "c1": 4.045572173478149, - "c2": 3.8921429321368417, - "c3": 3.755706865777084, - "c4": 4.008414515500065, - "c5": 3.7543430042512913, - "c6": 3.8781164744497363, - "c7": 4.174326222770441 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768379, + "c3": 5.039297272306977, + "c4": 4.031437817845584, + "c5": 3.0235783633841895, + "c6": 2.0157189089227883, + "c7": 1.0078594544613941 }, "rgb": [77, 76, 132] }, @@ -295170,23 +295170,23 @@ "year": 1789, "resistanceReported": false, "duration": 46137600, - "curveSeeds": { - "c1": 56.440412865296615, - "c2": 46.43595949749078, - "c3": 21.250387471526757, - "c4": 1.9106217778301229, - "c5": -4.014743625744039, - "c6": -28.0208694665061, - "c7": 6.708549766615242 + "points": { + "c1": 9.197440431505449, + "c2": 41.125954008275606, + "c3": 2.929944004432322, + "c4": -61.6258639236968, + "c5": 45.433908414553635, + "c6": 25.09824697539613, + "c7": -19.907333246953563 }, - "vertexSeeds": { - "c1": 1.5261393432392014, - "c2": 1.5349348880219553, - "c3": 1.5079876224905293, - "c4": 1.5017428034808156, - "c5": 1.5366316170077887, - "c6": 1.4844680354158433, - "c7": 1.5009887892232172 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257973, + "c3": 1.872399445214982, + "c4": 1.4979195561719842, + "c5": 1.1234396671289866, + "c6": 0.748959778085989, + "c7": 0.37447988904299767 }, "rgb": [58, 15, 49] }, @@ -295197,23 +295197,23 @@ "year": 1789, "resistanceReported": false, "duration": 43459200, - "curveSeeds": { - "c1": -17.496934600073303, - "c2": 49.90131461769923, - "c3": -42.88120932983891, - "c4": -55.29860594443496, - "c5": 41.28029845370628, - "c6": 35.572916292425276, - "c7": 5.028241943025385 + "points": { + "c1": -40.16172765163478, + "c2": -51.38388705300503, + "c3": 59.59690510350141, + "c4": -37.80003796969463, + "c5": 5.626845197071958, + "c6": 40.51151211775796, + "c7": -45.24361438662788 }, - "vertexSeeds": { - "c1": 7.174031241095078, - "c2": 7.301400337957081, - "c3": 7.266771255349949, - "c4": 7.14640405764041, - "c5": 7.178397455559905, - "c6": 7.193102967763749, - "c7": 7.243609534013766 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163673, + "c3": 8.714748035136406, + "c4": 6.971798428109141, + "c5": 5.228848821081875, + "c6": 3.4858992140545317, + "c7": 1.7429496070272659 }, "rgb": [238, 201, 159] }, @@ -295224,23 +295224,23 @@ "year": 1788, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 37.638106500501614, - "c2": -17.659415978588424, - "c3": 2.607041148281475, - "c4": 31.11189920019826, - "c5": -33.91310657222355, - "c6": -2.7595247537135847, - "c7": 28.562006792189003 + "points": { + "c1": 3.081489954196286, + "c2": -35.47843171982008, + "c3": 35.66716626267847, + "c4": 44.0600385622517, + "c5": -40.44216507245086, + "c6": -21.403388063926048, + "c7": 2.9412125659969206 }, - "vertexSeeds": { - "c1": 4.356613843386394, - "c2": 4.265715149951192, - "c3": 4.302966402320298, - "c4": 4.329260802019911, - "c5": 4.0935484178870745, - "c6": 4.100156592792296, - "c7": 4.4030020326518295 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251038, + "c3": 5.316689782709206, + "c4": 4.253351826167362, + "c5": 3.190013869625519, + "c6": 2.126675913083687, + "c7": 1.0633379565418435 }, "rgb": [238, 201, 159] }, @@ -295251,23 +295251,23 @@ "year": 1789, "resistanceReported": false, "duration": 43459200, - "curveSeeds": { - "c1": -10.796298896967187, - "c2": -6.063728813971856, - "c3": -36.549213594725714, - "c4": -3.8409173351978367, - "c5": -17.62977773365843, - "c6": -25.03792142835256, - "c7": -43.55333358799609 + "points": { + "c1": 59.59496063219426, + "c2": 4.235600330376251, + "c3": -55.68550803100896, + "c4": -21.582852805155042, + "c5": -20.705908842389157, + "c6": 21.450572973192962, + "c7": 55.65628163124282 }, - "vertexSeeds": { - "c1": 0.7189119170984456, - "c2": 0.7189119170984456, - "c3": 0.7189119170984456, - "c4": 0.7189119170984456, - "c5": 0.7189119170984456, - "c6": 0.7189119170984456, - "c7": 0.7189119170984456 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -295278,23 +295278,23 @@ "year": 1788, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -45.79092389024654, - "c2": -0.7188008061200719, - "c3": -16.15868204901242, - "c4": -36.283103446951266, - "c5": 9.261475050700064, - "c6": 25.699652264595997, - "c7": -46.4158482193589 + "points": { + "c1": -47.846544666160845, + "c2": -40.09198171556261, + "c3": -29.085911978729293, + "c4": -2.9066033934127162, + "c5": -40.10835829526802, + "c6": 18.259545972084226, + "c7": -2.1065564997701713 }, - "vertexSeeds": { - "c1": 7.394380950176694, - "c2": 7.201407967600622, - "c3": 7.236480911036959, - "c4": 7.3095035948304306, - "c5": 7.439323157310289, - "c6": 7.3366188197468425, - "c7": 7.252924430109698 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485432, + "c3": 8.89967637540452, + "c4": 7.119741100323609, + "c5": 5.339805825242697, + "c6": 3.559870550161786, + "c7": 1.7799352750808743 }, "rgb": [86, 146, 138] }, @@ -295305,23 +295305,23 @@ "year": 1788, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -34.191030241195186, - "c2": 7.632598531419937, - "c3": 37.940859715920624, - "c4": 6.234725901832924, - "c5": -29.83619643491315, - "c6": 23.124880644938997, - "c7": -17.1052915826994 + "points": { + "c1": -17.104897624004913, + "c2": 40.26296737757828, + "c3": 35.712244501980564, + "c4": -19.036012271106994, + "c5": 10.740345451795136, + "c6": 14.79187464306196, + "c7": 15.826011411426286 }, - "vertexSeeds": { - "c1": 5.926742605037154, - "c2": 6.677549422787793, - "c3": 6.326220265961606, - "c4": 6.305266109042037, - "c5": 6.066650668760762, - "c6": 6.379074622474701, - "c7": 5.831598850015641 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117886, + "c3": 8.11373092926491, + "c4": 6.490984743411923, + "c5": 4.868238557558949, + "c6": 3.2454923717059616, + "c7": 1.6227461858529748 }, "rgb": [238, 201, 159] }, @@ -295332,23 +295332,23 @@ "year": 1788, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -23.61165358282397, - "c2": 0.49958047927131943, - "c3": -6.565243054378556, - "c4": -26.94726388967312, - "c5": 7.775031576609585, - "c6": -0.9696309420103368, - "c7": 0.5922063014858132 + "points": { + "c1": -24.360831979796767, + "c2": 3.6202608387006947, + "c3": 22.47762495560017, + "c4": 13.414449102704381, + "c5": 9.06958534402191, + "c6": -28.152334149544828, + "c7": 6.592477326757134 }, - "vertexSeeds": { - "c1": 6.36446510971389, - "c2": 6.7228102921628325, - "c3": 6.53265221297999, - "c4": 6.476517300460001, - "c5": 6.482556221903932, - "c6": 6.442378334183339, - "c7": 6.361335773761771 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -295359,23 +295359,23 @@ "year": 1788, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -0.7298885643227706, - "c2": -8.089655057623887, - "c3": -21.425974657944614, - "c4": 6.308178981957763, - "c5": -18.17812019868959, - "c6": 17.19118302692289, - "c7": 3.66584100105225 + "points": { + "c1": 23.806862021478327, + "c2": 8.329970413885082, + "c3": 10.886175623365038, + "c4": 25.998856374841157, + "c5": -26.83420337734934, + "c6": 4.925235779591649, + "c7": -18.861868086803504 }, - "vertexSeeds": { - "c1": 8.35312298766229, - "c2": 7.351152509503614, - "c3": 7.367943372952748, - "c4": 8.102501206110986, - "c5": 7.802744344773707, - "c6": 7.887493895183294, - "c7": 7.788007889942014 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536744, + "c3": 10.07859454461396, + "c4": 8.062875635691173, + "c5": 6.047156726768372, + "c6": 4.031437817845572, + "c7": 2.015718908922786 }, "rgb": [222, 0, 59] }, @@ -295386,23 +295386,23 @@ "year": 1788, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 14.59755270803418, - "c2": -2.5799724662295773, - "c3": 40.34365722565003, - "c4": 47.03108214287692, - "c5": -47.40450309706251, - "c6": 22.37728054555061, - "c7": 42.08633470622295 + "points": { + "c1": 36.841672851664576, + "c2": -42.25882135480779, + "c3": 21.70718443425539, + "c4": -2.63576241022551, + "c5": 41.02135360069983, + "c6": 41.04760753929498, + "c7": 4.999531614624253 }, - "vertexSeeds": { - "c1": 7.1931620815499775, - "c2": 7.236859848192233, - "c3": 7.233054881318124, - "c4": 7.083460634011336, - "c5": 7.067338595278857, - "c6": 7.156571551548667, - "c7": 7.183084833694025 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043018, + "c3": 8.645399907535822, + "c4": 6.91631992602868, + "c5": 5.187239944521483, + "c6": 3.45815996301434, + "c7": 1.7290799815071434 }, "rgb": [238, 201, 159] }, @@ -295413,23 +295413,23 @@ "year": 1788, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -6.611233902737418, - "c2": 19.128633358765057, - "c3": -12.034004159015398, - "c4": -2.485009901663659, - "c5": 18.26267390866289, - "c6": 11.356771096860172, - "c7": 2.451405828622466 + "points": { + "c1": -10.601684114894677, + "c2": 1.8569741774384525, + "c3": -1.1956457021606468, + "c4": 1.7203129698783144, + "c5": 14.111501627497397, + "c6": 15.981217218957596, + "c7": 19.41347159925718 }, - "vertexSeeds": { - "c1": 6.311726165679524, - "c2": 6.499969843238652, - "c3": 6.087927276857982, - "c4": 6.463449431380935, - "c5": 6.125721257653422, - "c6": 6.483641040729641, - "c7": 6.596197450150652 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715663, + "c3": 7.88257050392973, + "c4": 6.306056403143775, + "c5": 4.729542302357843, + "c6": 3.1530282015718876, + "c7": 1.5765141007859549 }, "rgb": [238, 201, 159] }, @@ -295440,23 +295440,23 @@ "year": 1788, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -5.97647566986663, - "c2": -1.5682237168374513, - "c3": 27.64818937336912, - "c4": -16.7149145003374, - "c5": 34.002937703871694, - "c6": 6.252847201183968, - "c7": -16.49844662199587 + "points": { + "c1": 13.298890170341679, + "c2": -34.90074059970327, + "c3": 35.294767419983785, + "c4": 27.57146874083206, + "c5": -40.27244211099399, + "c6": -21.238571504863156, + "c7": 31.789334475788806 }, - "vertexSeeds": { - "c1": 5.859470239327062, - "c2": 5.844092822906115, - "c3": 5.639823331732353, - "c4": 5.663152644927175, - "c5": 5.813948806681292, - "c6": 5.800486972726891, - "c7": 5.810192062190164 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871005, + "c3": 7.397133610725847, + "c4": 5.917706888580669, + "c5": 4.438280166435513, + "c6": 2.9588534442903347, + "c7": 1.4794267221451574 }, "rgb": [222, 0, 59] }, @@ -295467,23 +295467,23 @@ "year": 1788, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -20.63822932694543, - "c2": -15.327892720310821, - "c3": 10.176782964414272, - "c4": 8.853696007086405, - "c5": -16.696808828815804, - "c6": 27.85478923616462, - "c7": -36.21968612741167 + "points": { + "c1": 32.774324659057186, + "c2": -18.504938381344168, + "c3": 4.318942567970403, + "c4": 10.083374888086936, + "c5": 13.363635244132738, + "c6": 23.931711337726874, + "c7": -17.282079201821862 }, - "vertexSeeds": { - "c1": 11.571856734737434, - "c2": 11.610190240348471, - "c3": 11.659351756456669, - "c4": 11.628449683250256, - "c5": 11.570797870456397, - "c6": 11.591542981800421, - "c7": 11.643334748793842 + "offsets": { + "c1": 19.48220064724919, + "c2": 16.69902912621367, + "c3": 13.915857605177875, + "c4": 11.132686084142355, + "c5": 8.349514563106835, + "c6": 5.566343042071316, + "c7": 2.7831715210355195 }, "rgb": [238, 201, 159] }, @@ -295494,23 +295494,23 @@ "year": 1788, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 0.7736978102422611, - "c2": -5.5196718513456275, - "c3": 16.59560672968572, - "c4": -3.757674484656995, - "c5": 34.27609941342828, - "c6": -39.76175299462118, - "c7": 26.97073876405117 + "points": { + "c1": 34.841819106902925, + "c2": 31.48066623430656, + "c3": -26.61558911483703, + "c4": 26.68325376341732, + "c5": -40.241026749674816, + "c6": -40.49738398254229, + "c7": 16.627077410867535 }, - "vertexSeeds": { - "c1": 6.525042887770156, - "c2": 6.50129287312143, - "c3": 6.907525537543233, - "c4": 6.570467589087967, - "c5": 6.905024746400828, - "c6": 6.796444441164922, - "c7": 6.697941189513212 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -295521,23 +295521,23 @@ "year": 1788, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 37.749679718488366, - "c2": 29.30977387607679, - "c3": 31.017370853890498, - "c4": -32.9799521583066, - "c5": 1.848193870125165, - "c6": 12.08823188220616, - "c7": -21.480801922707997 + "points": { + "c1": -9.611200611520914, + "c2": -25.694329781776386, + "c3": 33.79386351562782, + "c4": -27.56098994303074, + "c5": -2.5753407561404558, + "c6": 37.686218825298354, + "c7": 12.382714773204484 }, - "vertexSeeds": { - "c1": 6.460748228548053, - "c2": 6.387431590653082, - "c3": 6.14820135195171, - "c4": 6.2386449709147875, - "c5": 6.33941007291863, - "c6": 6.043337593677115, - "c7": 6.501909307031284 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715667, + "c3": 7.8825705039297365, + "c4": 6.306056403143785, + "c5": 4.729542302357833, + "c6": 3.1530282015719022, + "c7": 1.5765141007859511 }, "rgb": [77, 76, 132] }, @@ -295548,23 +295548,23 @@ "year": 1788, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 42.701333277075896, - "c2": -20.374515658703938, - "c3": -21.329499906897116, - "c4": -42.220369972491426, - "c5": -31.849538237940266, - "c6": -10.711111639432772, - "c7": -5.3657084042640335 + "points": { + "c1": 27.30534852190052, + "c2": 22.34852754946494, + "c3": 26.6152628929946, + "c4": -20.330010055286603, + "c5": -31.595453898465347, + "c6": -1.712564118874056, + "c7": -11.707018278016257 }, - "vertexSeeds": { - "c1": 6.609968232590298, - "c2": 6.504486406506213, - "c3": 6.527957397724412, - "c4": 6.406263670203333, - "c5": 6.335685115570803, - "c6": 6.4646891470133045, - "c7": 6.8785798729458225 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319006, + "c3": 8.229311141932508, + "c4": 6.583448913546011, + "c5": 4.937586685159514, + "c6": 3.291724456772995, + "c7": 1.6458622283864974 }, "rgb": [86, 146, 138] }, @@ -295575,23 +295575,23 @@ "year": 1788, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -1.6089606315794533, - "c2": -3.16448354367407, - "c3": -24.95948322794865, - "c4": 21.009053782961875, - "c5": 18.902120872085288, - "c6": 14.784791474365985, - "c7": 1.7277823830767005 + "points": { + "c1": -5.189170406301038, + "c2": 0.5961398103147992, + "c3": -10.558098970836628, + "c4": -23.703245171434737, + "c5": 15.193461826259064, + "c6": 16.926001064587748, + "c7": -0.20810220006035252 }, - "vertexSeeds": { - "c1": 4.594756086816182, - "c2": 4.6145285774182545, - "c3": 4.577926365109498, - "c4": 4.565184218445198, - "c5": 4.552447183941502, - "c6": 4.566430313352633, - "c7": 4.581218936009219 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653247, + "c3": 5.547850208044402, + "c4": 4.438280166435512, + "c5": 3.3287101248266233, + "c6": 2.2191400832177783, + "c7": 1.1095700416088892 }, "rgb": [238, 201, 159] }, @@ -295602,23 +295602,23 @@ "year": 1788, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 5.493474780387949, - "c2": -38.53105107747204, - "c3": -39.94516286337609, - "c4": -7.791215126140614, - "c5": -10.107272018103295, - "c6": -5.2875932916233666, - "c7": -10.65559308040853 + "points": { + "c1": 43.29419861557205, + "c2": -35.62158437577333, + "c3": -27.2629897113499, + "c4": -42.24580955344412, + "c5": -45.159755746136156, + "c6": -11.415695476492914, + "c7": -0.84502058058127 }, - "vertexSeeds": { - "c1": 9.492551788888088, - "c2": 9.8171634791487, - "c3": 9.825561966142446, - "c4": 10.031635837916658, - "c5": 9.889918479995918, - "c6": 9.814846474352741, - "c7": 9.461906522137816 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995831, + "c3": 12.066574202496541, + "c4": 9.653259361997229, + "c5": 7.2399445214979155, + "c6": 4.826629680998624, + "c7": 2.413314840499312 }, "rgb": [222, 0, 59] }, @@ -295629,23 +295629,23 @@ "year": 1788, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -1.6383739905802663, - "c2": -6.27335619145753, - "c3": -32.39833764794619, - "c4": -20.54724331097468, - "c5": 0.038060614393117476, - "c6": 30.299312225600303, - "c7": 10.249623788906042 + "points": { + "c1": 28.700224441977618, + "c2": 13.119866604624704, + "c3": 26.390761305128677, + "c4": 33.198805054301246, + "c5": 13.176976020381666, + "c6": 20.181070374466472, + "c7": -24.613927900348656 }, - "vertexSeeds": { - "c1": 1.1125097416915921, - "c2": 1.1354128471427787, - "c3": 1.1938837852891833, - "c4": 1.1341904511774827, - "c5": 1.1222964476452215, - "c6": 1.169624804547221, - "c7": 1.1142874950747275 + "offsets": { + "c1": 2.0388349514563107, + "c2": 1.7475728155339803, + "c3": 1.4563106796116496, + "c4": 1.1650485436893192, + "c5": 0.8737864077669887, + "c6": 0.582524271844661, + "c7": 0.2912621359223276 }, "rgb": [77, 76, 132] }, @@ -295656,23 +295656,23 @@ "year": 1788, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 28.475615752223007, - "c2": -9.152864319308534, - "c3": -28.43938660947329, - "c4": 8.017245043591814, - "c5": 24.184793429866154, - "c6": -10.11295841673591, - "c7": 22.238988642364554 + "points": { + "c1": 13.037485377771397, + "c2": -32.59127451797673, + "c3": 33.05519705900372, + "c4": 35.00556757201521, + "c5": -5.307657587512402, + "c6": -34.25816717237246, + "c7": -11.541817152105 }, - "vertexSeeds": { - "c1": 4.944980410488341, - "c2": 4.5856616490649476, - "c3": 4.701399574311897, - "c4": 4.8334905525967695, - "c5": 4.732162832010111, - "c6": 4.625256260111835, - "c7": 4.844831810794742 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618584, + "c3": 6.102635228848818, + "c4": 4.882108183079053, + "c5": 3.6615811373092875, + "c6": 2.441054091539522, + "c7": 1.2205270457697568 }, "rgb": [238, 201, 159] }, @@ -295683,23 +295683,23 @@ "year": 1788, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 5.335746621430733, - "c2": 2.557231792494047, - "c3": -8.674166335006241, - "c4": 20.707419670331053, - "c5": 24.18210166157073, - "c6": 15.577026639938271, - "c7": 18.058895436830245 + "points": { + "c1": 2.4146399323356142, + "c2": -20.94766649974151, + "c3": 20.618540266473286, + "c4": -23.137271331470348, + "c5": -17.14735051263609, + "c6": 9.35569250783821, + "c7": -13.449661798788956 }, - "vertexSeeds": { - "c1": 4.428606163261399, - "c2": 4.466746487718907, - "c3": 4.4487178720321605, - "c4": 4.441661951024712, - "c5": 4.417716303093171, - "c6": 4.438544682704549, - "c7": 4.448391098559631 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291293, + "c3": 5.339805825242709, + "c4": 4.271844660194195, + "c5": 3.203883495145611, + "c6": 2.1359223300970975, + "c7": 1.0679611650485135 }, "rgb": [222, 0, 59] }, @@ -295710,23 +295710,23 @@ "year": 1788, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 13.463748665373167, - "c2": 34.09447638234781, - "c3": 29.790944571847234, - "c4": 17.556752434176026, - "c5": 24.51113183200357, - "c6": 16.56280360839616, - "c7": -35.437777216357134 + "points": { + "c1": 18.357802845370664, + "c2": 16.521187186088383, + "c3": -1.2793786339807127, + "c4": 12.28475296306059, + "c5": 7.776013180731347, + "c6": -15.259921176725932, + "c7": -30.160249540014156 }, - "vertexSeeds": { - "c1": 6.760162194178815, - "c2": 6.766298954927665, - "c3": 6.697808841504014, - "c4": 6.398610857779576, - "c5": 6.432417137160941, - "c6": 6.899972254839469, - "c7": 6.772974055392114 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -295737,23 +295737,23 @@ "year": 1789, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": -27.294861155444494, - "c2": 15.309392940183713, - "c3": 47.471673233076785, - "c4": -28.268670013986338, - "c5": -20.434453317614555, - "c6": -18.69732582365785, - "c7": -35.52305345723332 + "points": { + "c1": 15.629865808365778, + "c2": 3.6509481374002704, + "c3": -23.093539910649593, + "c4": -34.32809922822965, + "c5": 0.5003160756460758, + "c6": -12.372402862811185, + "c7": 6.950408403854077 }, - "vertexSeeds": { - "c1": 5.321893392150065, - "c2": 5.274348739180729, - "c3": 5.275975207474347, - "c4": 5.253140553717359, - "c5": 5.1379025093408215, - "c6": 5.2307509303166295, - "c7": 5.2186305679452785 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101262, + "c3": 6.3800277392510205, + "c4": 5.1040221914008255, + "c5": 3.828016643550631, + "c6": 2.552011095700436, + "c7": 1.2760055478501948 }, "rgb": [238, 201, 159] }, @@ -295764,23 +295764,23 @@ "year": 1788, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 18.48127917999833, - "c2": 24.778942444067482, - "c3": -6.536759872291029, - "c4": -20.98452736064642, - "c5": -12.066225522860595, - "c6": 16.35855569470789, - "c7": -9.08623024955456 + "points": { + "c1": -20.464805570558532, + "c2": 19.798929378701736, + "c3": -32.06466273745974, + "c4": 6.969682956104876, + "c5": -1.235020825496214, + "c6": 31.710782311587465, + "c7": 20.35936919246908 }, - "vertexSeeds": { - "c1": 4.611095155711748, - "c2": 4.738506576889929, - "c3": 4.687714351625318, - "c4": 4.530979699750091, - "c5": 4.464548970973215, - "c6": 4.690888910880594, - "c7": 4.544116744860391 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.87933425797503, + "c3": 5.732778548312531, + "c4": 4.58622283865002, + "c5": 3.4396671289875216, + "c6": 2.29311141932501, + "c7": 1.1465557096625114 }, "rgb": [86, 146, 138] }, @@ -295791,23 +295791,23 @@ "year": 1788, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -14.480803748816902, - "c2": -20.627128385581763, - "c3": -7.260985751934662, - "c4": -18.324225260297112, - "c5": -15.469938377429404, - "c6": -27.774165012980095, - "c7": 6.417062229242575 + "points": { + "c1": 8.559862697639133, + "c2": -30.82758948552646, + "c3": -27.94151180557778, + "c4": -24.38423941211012, + "c5": -22.43538158195824, + "c6": -23.899283392346774, + "c7": -26.733173584696292 }, - "vertexSeeds": { - "c1": 2.773610749975064, - "c2": 3.006638134985627, - "c3": 2.9200526839419574, - "c4": 2.8349107413013073, - "c5": 2.924663375472426, - "c6": 2.9769180630104515, - "c7": 2.800564694668596 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355064, + "c3": 3.6523347202958876, + "c4": 2.921867776236703, + "c5": 2.1914008321775276, + "c6": 1.4609338881183516, + "c7": 0.7304669440591758 }, "rgb": [77, 76, 132] }, @@ -295818,23 +295818,23 @@ "year": 1788, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 19.362389756082514, - "c2": 16.08954293893939, - "c3": 14.37773169800461, - "c4": -26.881439197126173, - "c5": 17.1135953506068, - "c6": 7.480584340315701, - "c7": -20.87562650042998 + "points": { + "c1": 1.9797104795526224, + "c2": 7.649424961430384, + "c3": -4.4288429224118815, + "c4": -23.77196051303016, + "c5": -27.73076285788365, + "c6": 2.9329381854800545, + "c7": 5.799450588366348 }, - "vertexSeeds": { - "c1": 6.379897032618718, - "c2": 6.418489953411133, - "c3": 6.374256245598738, - "c4": 6.6554883481041385, - "c5": 6.487160003903612, - "c6": 6.8934191432205925, - "c7": 6.582230456507617 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -295845,23 +295845,23 @@ "year": 1788, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -15.410158284791528, - "c2": 33.47398237853744, - "c3": -16.969092133195943, - "c4": -15.196094673795614, - "c5": 39.53130215978909, - "c6": 21.341220606298975, - "c7": 32.245303811642955 + "points": { + "c1": -44.26624721793031, + "c2": -10.887156565350686, + "c3": -31.07390394149209, + "c4": 27.864913193121808, + "c5": 25.779831025007326, + "c6": 41.32426730727238, + "c7": 44.74447307231712 }, - "vertexSeeds": { - "c1": 4.900891167005474, - "c2": 5.205876894341969, - "c3": 4.810960274536397, - "c4": 4.877719206959833, - "c5": 4.935681162164157, - "c6": 4.798929954037171, - "c7": 5.080432863380155 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.4618585298196995, + "c3": 6.218215441516419, + "c4": 4.9745723532131185, + "c5": 3.7309292649098498, + "c6": 2.4872861766065593, + "c7": 1.2436430883032796 }, "rgb": [58, 15, 49] }, @@ -295872,23 +295872,23 @@ "year": 1790, "resistanceReported": false, "duration": 74131200, - "curveSeeds": { - "c1": -52.797501980134754, - "c2": -37.087961380762835, - "c3": 12.194793391737846, - "c4": 43.1580652549499, - "c5": 75.03123568835984, - "c6": -72.86977195896543, - "c7": -39.962215136466796 + "points": { + "c1": -21.795788741906094, + "c2": 7.055835710465189, + "c3": 91.15510696869829, + "c4": 82.33509604498788, + "c5": -4.743185643806143, + "c6": -60.17154787760907, + "c7": 40.55644758522622 }, - "vertexSeeds": { - "c1": 4.243220364894105, - "c2": 4.448514776185564, - "c3": 4.233299783431891, - "c4": 4.4435322328372, - "c5": 4.759923003062002, - "c6": 4.3965861194993545, - "c7": 3.9210402634075754 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [222, 0, 59] }, @@ -295899,23 +295899,23 @@ "year": 1789, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": 17.79530395822831, - "c2": 3.504156879493216, - "c3": -23.335873196062742, - "c4": 28.476363423681526, - "c5": -47.168878890930074, - "c6": 16.041964606907605, - "c7": 28.39630625292397 + "points": { + "c1": 29.67089389203209, + "c2": -28.853812880273086, + "c3": 44.59629130520839, + "c4": 3.728966583708676, + "c5": -32.903291433483716, + "c6": 48.69477848658175, + "c7": -50.85631300557097 }, - "vertexSeeds": { - "c1": 3.165645433027745, - "c2": 4.278817381232721, - "c3": 3.4462323619882183, - "c4": 3.8934583921050434, - "c5": 4.259962805854287, - "c6": 3.683569172571279, - "c7": 3.6875355953810023 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210819, + "c3": 5.293573740175681, + "c4": 4.234858992140546, + "c5": 3.176144244105408, + "c6": 2.117429496070273, + "c7": 1.0587147480351382 }, "rgb": [222, 0, 59] }, @@ -295926,23 +295926,23 @@ "year": 1788, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 11.145646043909942, - "c2": -21.83012657827624, - "c3": 10.420038398403705, - "c4": -8.649749448926485, - "c5": 24.35094492973439, - "c6": -4.497110217183412, - "c7": 36.70916614871832 + "points": { + "c1": 13.895505299141774, + "c2": -27.705956385964214, + "c3": 31.988546028092465, + "c4": -14.347474366749204, + "c5": -39.282288210240395, + "c6": 13.271309884547748, + "c7": 22.865319512047087 }, - "vertexSeeds": { - "c1": 4.167215544768213, - "c2": 3.9933133985616913, - "c3": 4.071429589799256, - "c4": 4.230354807098427, - "c5": 4.274396066344116, - "c6": 3.970906653642021, - "c7": 3.979332303827442 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929263, + "c3": 5.131761442441051, + "c4": 4.105409153952839, + "c5": 3.0790568654646266, + "c6": 2.0527045769764247, + "c7": 1.0263522884882124 }, "rgb": [86, 146, 138] }, @@ -295953,23 +295953,23 @@ "year": 1788, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -36.12845312356245, - "c2": 19.218345954975618, - "c3": 8.12068750556206, - "c4": 22.045861020722768, - "c5": -24.10744544892254, - "c6": -22.3951432569716, - "c7": 29.23179788844064 + "points": { + "c1": -26.93021658085474, + "c2": 43.07726563569264, + "c3": -21.51693745692962, + "c4": 18.019338244478156, + "c5": 19.427360610397145, + "c6": -44.80511726192435, + "c7": -16.363251552024387 }, - "vertexSeeds": { - "c1": 6.606640748641763, - "c2": 6.719942039585965, - "c3": 6.77788967742978, - "c4": 6.882587513022646, - "c5": 7.0899519858757305, - "c6": 6.8142818142690125, - "c7": 6.819856778545638 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962546, + "c3": 8.599167822468804, + "c4": 6.879334257975039, + "c5": 5.159500693481273, + "c6": 3.43966712898753, + "c7": 1.719833564493765 }, "rgb": [77, 76, 132] }, @@ -295980,23 +295980,23 @@ "year": 1789, "resistanceReported": false, "duration": 46224000, - "curveSeeds": { - "c1": 0.1537916894059279, - "c2": -36.19099236306862, - "c3": -48.80754516823026, - "c4": 20.722678891682683, - "c5": 44.254047434290776, - "c6": 24.26998749423796, - "c7": 33.13270102541511 + "points": { + "c1": 11.06646671923722, + "c2": 12.25791624484392, + "c3": 43.06461976323971, + "c4": 41.15752698250589, + "c5": 50.01103757737618, + "c6": 47.21997675688875, + "c7": -32.12012550110791 }, - "vertexSeeds": { - "c1": 4.993021750573004, - "c2": 5.326069997449082, - "c3": 5.5317526354507365, - "c4": 5.368101852045201, - "c5": 5.474720238317118, - "c6": 5.503110783670109, - "c7": 5.847617998966387 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.37725381414701, + "c3": 6.981044845122513, + "c4": 5.584835876098016, + "c5": 4.188626907073505, + "c6": 2.7924179380489953, + "c7": 1.3962089690244976 }, "rgb": [86, 146, 138] }, @@ -296007,23 +296007,23 @@ "year": 1789, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": 24.32757336911512, - "c2": 47.22502192516193, - "c3": 29.000799946186696, - "c4": 41.70779629605179, - "c5": 33.71679344014753, - "c6": -11.830000259249687, - "c7": -7.480275623238541 + "points": { + "c1": 42.89777776801335, + "c2": 9.260398967603045, + "c3": 8.406071616457098, + "c4": -29.7626462407614, + "c5": 1.397333847599377, + "c6": -19.0696663972371, + "c7": -48.180675181512946 }, - "vertexSeeds": { - "c1": 11.846338341636834, - "c2": 12.680268464137306, - "c3": 12.208153478724881, - "c4": 12.489662841405835, - "c5": 11.836345579613502, - "c6": 11.898414390517953, - "c7": 11.899709977427364 + "offsets": { + "c1": 21.35922330097087, + "c2": 18.307905686546455, + "c3": 15.256588072122039, + "c4": 12.205270457697624, + "c5": 9.153952843273247, + "c6": 6.102635228848832, + "c7": 3.051317614424416 }, "rgb": [58, 15, 49] }, @@ -296034,23 +296034,23 @@ "year": 1788, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -10.385463063822725, - "c2": -11.691202687220636, - "c3": -5.781975784528672, - "c4": -3.877095874669237, - "c5": -24.5529262019895, - "c6": 19.26549772026193, - "c7": -23.672380205132313 + "points": { + "c1": -12.773769784465305, + "c2": 27.175546584660548, + "c3": -4.590582548706504, + "c4": -26.57049183466533, + "c5": 24.734387089476986, + "c6": 0.08788271823003768, + "c7": 0.9281041984855491 }, - "vertexSeeds": { - "c1": 6.2651892217589005, - "c2": 6.454591302362014, - "c3": 6.440641128349385, - "c4": 6.547035383368687, - "c5": 6.34953629042216, - "c6": 6.246436949731251, - "c7": 6.698996903910025 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037438, + "c3": 8.067498844197877, + "c4": 6.4539990753582925, + "c5": 4.840499306518731, + "c6": 3.2269995376791463, + "c7": 1.613499768839562 }, "rgb": [238, 201, 159] }, @@ -296061,23 +296061,23 @@ "year": 1788, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 8.806942579111194, - "c2": -13.575024199178735, - "c3": 13.785820952224562, - "c4": -41.49596433572809, - "c5": -40.7667797520479, - "c6": 29.513721020456686, - "c7": -24.413744226826502 + "points": { + "c1": 8.839760999880397, + "c2": -39.51052630157925, + "c3": -32.32473105333285, + "c4": -7.719779057820823, + "c5": -29.22279393494284, + "c6": -12.70356698842096, + "c7": -35.658026678790925 }, - "vertexSeeds": { - "c1": 6.623754996079232, - "c2": 6.312851167229016, - "c3": 6.164421066018972, - "c4": 6.536919171552498, - "c5": 6.5989845002255, - "c6": 6.166801394173886, - "c7": 6.6317359069532005 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037444, + "c3": 8.067498844197882, + "c4": 6.453999075358302, + "c5": 4.840499306518722, + "c6": 3.2269995376791405, + "c7": 1.6134997688395807 }, "rgb": [238, 201, 159] }, @@ -296088,23 +296088,23 @@ "year": 1788, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 6.767633618625574, - "c2": -11.982494953603531, - "c3": 0.7609047265818845, - "c4": 21.69071381377413, - "c5": 17.06884993258457, - "c6": 29.019658116545017, - "c7": -30.233537350995707 + "points": { + "c1": -14.508821167359304, + "c2": 6.251151132780166, + "c3": -38.3719872300421, + "c4": 18.604977959191174, + "c5": 19.60339984699425, + "c6": 14.22741646422773, + "c7": 11.168639453926772 }, - "vertexSeeds": { - "c1": 4.079069357424397, - "c2": 4.120858643372162, - "c3": 4.062715329413261, - "c4": 4.076834109163839, - "c5": 4.00240934437772, - "c6": 4.053738171377246, - "c7": 4.047134944612507 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687929, + "c3": 4.993065187239935, + "c4": 3.994452149791958, + "c5": 2.9958391123439645, + "c6": 1.997226074895971, + "c7": 0.998613037447977 }, "rgb": [86, 146, 138] }, @@ -296115,23 +296115,23 @@ "year": 1788, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -23.764277426154923, - "c2": 16.422308389180678, - "c3": 40.17446151341018, - "c4": -0.7975558250080397, - "c5": 25.33011062986624, - "c6": -9.166427586319305, - "c7": 0.12835324656707314 + "points": { + "c1": -12.967878763273653, + "c2": 30.877604741500136, + "c3": 29.335528276621503, + "c4": -35.42616975230315, + "c5": 5.834477252146584, + "c6": -1.776148268082828, + "c7": 33.49972676847682 }, - "vertexSeeds": { - "c1": 6.151743793829082, - "c2": 6.028318681272969, - "c3": 6.378219528251593, - "c4": 6.318336165148006, - "c5": 5.915930903671383, - "c6": 6.052573627628151, - "c7": 6.049220821570017 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273222, + "c3": 7.628294036061028, + "c4": 6.102635228848814, + "c5": 4.576976421636622, + "c6": 3.051317614424407, + "c7": 1.5256588072121933 }, "rgb": [86, 146, 138] }, @@ -296142,23 +296142,23 @@ "year": 1789, "resistanceReported": false, "duration": 49939200, - "curveSeeds": { - "c1": -4.176798062963513, - "c2": 29.196399087743885, - "c3": 18.39028193841679, - "c4": 63.738366102505424, - "c5": 3.8951289084052974, - "c6": 0.03453644778065268, - "c7": -35.5640268294689 + "points": { + "c1": -1.7302288932094996, + "c2": 54.43619803653168, + "c3": -25.041174039146505, + "c4": 31.978813201433226, + "c5": -36.425352619115706, + "c6": 10.406150733626333, + "c7": 20.461032577315606 }, - "vertexSeeds": { - "c1": 2.9936503088794657, - "c2": 2.972731672011058, - "c3": 3.16988382679442, - "c4": 3.363360806960698, - "c5": 3.2501174189241873, - "c6": 2.770193448818392, - "c7": 3.254675547114683 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.5464632454923715, + "c3": 5.4553860379103085, + "c4": 4.364308830328248, + "c5": 3.2732316227461857, + "c6": 2.1821544151641232, + "c7": 1.0910772075820616 }, "rgb": [77, 76, 132] }, @@ -296169,23 +296169,23 @@ "year": 1788, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -7.1876817409745115, - "c2": -21.11422182294887, - "c3": -22.315438137807245, - "c4": 15.555502198330089, - "c5": -18.537406770023992, - "c6": 22.320539629712435, - "c7": -5.667549714568278 + "points": { + "c1": 13.182876551498488, + "c2": 30.70792628262049, + "c3": -34.751844117222504, + "c4": 19.00886983563717, + "c5": -35.58242058142324, + "c6": 27.253264789020534, + "c7": 29.787382355471664 }, - "vertexSeeds": { - "c1": 2.2097058055219656, - "c2": 2.082595631436594, - "c3": 2.050191945888723, - "c4": 2.235534153635691, - "c5": 2.182270115386907, - "c6": 2.120124808184841, - "c7": 2.117647709162466 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.2454923717059647, + "c3": 2.704576976421638, + "c4": 2.1636615811373114, + "c5": 1.6227461858529848, + "c6": 1.0818307905686533, + "c7": 0.5409153952843266 }, "rgb": [58, 15, 49] }, @@ -296196,23 +296196,23 @@ "year": 1788, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 14.248738424967502, - "c2": 26.48992693011424, - "c3": -1.5583031641047675, - "c4": 9.550188401195594, - "c5": 11.038210731449087, - "c6": 20.315042267971773, - "c7": 15.14591000911319 + "points": { + "c1": 5.63838950729421, + "c2": 28.05134824153669, + "c3": 17.310237871602762, + "c4": -9.820425783069354, + "c5": 1.7153514413424027, + "c6": 2.265089283126027, + "c7": -25.65596602592382 }, - "vertexSeeds": { - "c1": 9.222986132177029, - "c2": 9.57703038050169, - "c3": 9.994395539815772, - "c4": 8.955699022008401, - "c5": 9.481676600443675, - "c6": 9.351225560889956, - "c7": 9.305031488705039 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076294, + "c3": 12.112806287563567, + "c4": 9.69024503005085, + "c5": 7.267683772538136, + "c6": 4.845122515025419, + "c7": 2.422561257512703 }, "rgb": [58, 15, 49] }, @@ -296223,23 +296223,23 @@ "year": 1788, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -0.6796128331020554, - "c2": 2.9442630317051055, - "c3": 15.753129703649535, - "c4": 3.9793845165307324, - "c5": -11.495714787766314, - "c6": 22.883131589812372, - "c7": -26.87304613251878 + "points": { + "c1": -5.1885063848923885, + "c2": 18.413497696729408, + "c3": 10.720085798724526, + "c4": 12.684384553541882, + "c5": -23.156900438399497, + "c6": -25.96446102156208, + "c7": -11.536762152243831 }, - "vertexSeeds": { - "c1": 1.8916451852356075, - "c2": 1.9859710411925726, - "c3": 1.8371120799446552, - "c4": 1.8349015799700141, - "c5": 1.842789712646474, - "c6": 1.907125631096628, - "c7": 1.8989704256450635 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.884882108183079, + "c3": 2.404068423485898, + "c4": 1.9232547387887176, + "c5": 1.4424410540915371, + "c6": 0.9616273693943612, + "c7": 0.4808136846971758 }, "rgb": [86, 146, 138] }, @@ -296250,23 +296250,23 @@ "year": 1789, "resistanceReported": false, "duration": 57715200, - "curveSeeds": { - "c1": -6.047904349892448, - "c2": 42.11184943642367, - "c3": -20.759011686043657, - "c4": -29.594775344103553, - "c5": -24.815639140366493, - "c6": 43.1800904296845, - "c7": -22.707461971714203 + "points": { + "c1": 70.8265689403145, + "c2": -48.3582456102276, + "c3": 70.60239418593378, + "c4": -64.06409215821394, + "c5": -55.40606054107977, + "c6": 54.21487694590297, + "c7": 7.782155151752264 }, - "vertexSeeds": { - "c1": 4.7020725388601035, - "c2": 4.7020725388601035, - "c3": 4.7020725388601035, - "c4": 4.7020725388601035, - "c5": 4.7020725388601035, - "c6": 4.7020725388601035, - "c7": 4.7020725388601035 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -296277,23 +296277,23 @@ "year": 1788, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -18.793976905403735, - "c2": 8.040122850493582, - "c3": -25.600558012663303, - "c4": 0.3977979203099906, - "c5": 9.628497562912202, - "c6": -15.001486669193094, - "c7": 18.708988574469203 + "points": { + "c1": -0.8007432424306913, + "c2": -3.599836264872472, + "c3": 3.942213054012413, + "c4": 8.184434647804544, + "c5": -22.358500497928198, + "c6": 19.979099910429774, + "c7": -7.616756723902434 }, - "vertexSeeds": { - "c1": 6.862304368720258, - "c2": 6.8741854562593465, - "c3": 6.540067611235754, - "c4": 6.445436342364426, - "c5": 6.815867195934658, - "c6": 6.893797379781381, - "c7": 6.938069336942623 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -296304,23 +296304,23 @@ "year": 1788, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 31.71524114384367, - "c2": -20.17125824660154, - "c3": -37.266516002967954, - "c4": 22.02972072466988, - "c5": 8.517301801116147, - "c6": 23.52081756575017, - "c7": -21.613752808386455 + "points": { + "c1": -25.04345949464977, + "c2": -8.138805043824547, + "c3": -29.176410730912902, + "c4": -28.787928748888447, + "c5": 34.20872804399632, + "c6": -1.797286705305659, + "c7": -19.91055574535892 }, - "vertexSeeds": { - "c1": 4.359149327243787, - "c2": 4.202011364826113, - "c3": 3.997389432236311, - "c4": 4.181922704616915, - "c5": 3.9605154104681843, - "c6": 4.257742895681921, - "c7": 4.0284337404109625 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255183, + "c6": 2.1266759130836816, + "c7": 1.063337956541837 }, "rgb": [238, 201, 159] }, @@ -296331,23 +296331,23 @@ "year": 1788, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 19.163921928243496, - "c2": -22.570760431517837, - "c3": -12.059891242731222, - "c4": 14.172844104558088, - "c5": 2.5980021723088207, - "c6": -10.145369718257001, - "c7": 22.25828738058781 + "points": { + "c1": -18.771834877752823, + "c2": 23.862824882901485, + "c3": 29.15983394146903, + "c4": 20.683541256836044, + "c5": 20.04056030571379, + "c6": -17.725240582419026, + "c7": 14.591283545888274 }, - "vertexSeeds": { - "c1": 2.366939521626211, - "c2": 2.0943885693969593, - "c3": 1.7995958233338425, - "c4": 2.501981821968186, - "c5": 2.377027166444662, - "c6": 2.344474779080193, - "c7": 2.057489541133591 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228849, + "c3": 3.0050855293573737, + "c4": 2.404068423485899, + "c5": 1.8030513176144236, + "c6": 1.2020342117429486, + "c7": 0.601017105871475 }, "rgb": [58, 15, 49] }, @@ -296358,23 +296358,23 @@ "year": 1789, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": -54.97022015741804, - "c2": 3.0861777275755387, - "c3": 38.650164307986756, - "c4": 28.371378545529254, - "c5": -6.893180739922087, - "c6": 40.93705240757389, - "c7": 2.2606935327861706 + "points": { + "c1": 28.701936402502625, + "c2": 5.000561025243911, + "c3": 21.69970262365122, + "c4": -13.497302798111328, + "c5": 2.6279584167950816, + "c6": 16.767899488315066, + "c7": 45.0890116603682 }, - "vertexSeeds": { - "c1": 4.919670768442613, - "c2": 5.135660359895706, - "c3": 5.086487753803893, - "c4": 5.106318843668919, - "c5": 4.906538588533688, - "c6": 5.2540066090965025, - "c7": 5.190789320252836 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940351, + "c3": 6.28756356911697, + "c4": 5.030050855293568, + "c5": 3.772538141470187, + "c6": 2.515025427646784, + "c7": 1.257512713823392 }, "rgb": [222, 0, 59] }, @@ -296385,23 +296385,23 @@ "year": 1789, "resistanceReported": true, "duration": 38448000, - "curveSeeds": { - "c1": 17.614567331513825, - "c2": -44.75342839399166, - "c3": 28.408833314534945, - "c4": 34.606726864761086, - "c5": -34.02319707867709, - "c6": 22.354608006730487, - "c7": -11.628042764889834 + "points": { + "c1": -16.609108530006623, + "c2": 30.713442566234235, + "c3": 13.016160662501491, + "c4": 23.739773162510573, + "c5": -44.51947441616156, + "c6": 30.575022924147973, + "c7": 10.504618335773188 }, - "vertexSeeds": { - "c1": 6.833936622772114, - "c2": 6.511357947706866, - "c3": 7.406963675041458, - "c4": 7.385495573406461, - "c5": 6.843479768573714, - "c6": 6.843325767166703, - "c7": 7.150799467761472 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445214, + "c3": 8.876560332871012, + "c4": 7.1012482662968095, + "c5": 5.325936199722607, + "c6": 3.5506241331484047, + "c7": 1.7753120665742024 }, "rgb": [58, 15, 49] }, @@ -296412,23 +296412,23 @@ "year": 1788, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -14.117958629738336, - "c2": 24.19716303764799, - "c3": 27.066762579946, - "c4": 15.312083508079546, - "c5": 3.8222180019236305, - "c6": -31.80010699554235, - "c7": 36.93857065704336 + "points": { + "c1": 36.91697596786125, + "c2": -36.842435688699204, + "c3": 37.96847088762446, + "c4": 35.133463210825695, + "c5": 32.09428251156278, + "c6": 6.520704973756544, + "c7": -10.796228879667279 }, - "vertexSeeds": { - "c1": 8.130756404917, - "c2": 8.061034980716478, - "c3": 8.242078371316753, - "c4": 8.153235931209823, - "c5": 8.518665399741991, - "c6": 7.961752855462617, - "c7": 7.859093104810552 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898752, + "c3": 10.286638927415627, + "c4": 8.2293111419325, + "c5": 6.171983356449376, + "c6": 4.11465557096625, + "c7": 2.057327785483125 }, "rgb": [238, 201, 159] }, @@ -296439,23 +296439,23 @@ "year": 1789, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -20.206002793383398, - "c2": -28.35257466148552, - "c3": -30.50947913971822, - "c4": 2.10304595156051, - "c5": 11.613823893963477, - "c6": -25.30445026034281, - "c7": -40.18804782191127 + "points": { + "c1": -48.82125554910348, + "c2": -10.86897754595357, + "c3": -5.926544925614053, + "c4": -34.30950232258216, + "c5": 14.258265442719143, + "c6": -44.11520692899991, + "c7": -43.2390827754441 }, - "vertexSeeds": { - "c1": 3.3314566143908637, - "c2": 3.126255259887004, - "c3": 3.37205046302542, - "c4": 3.245814024304651, - "c5": 3.3132695835595802, - "c6": 3.3683164822956955, - "c7": 3.177255339625904 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.88210818307906, + "c3": 4.06842348589921, + "c4": 3.2547387887193704, + "c5": 2.44105409153953, + "c6": 1.62736939435969, + "c7": 0.81368469717984 }, "rgb": [86, 146, 138] }, @@ -296466,23 +296466,23 @@ "year": 1788, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 9.929405578446495, - "c2": 4.144755105485817, - "c3": 24.1829880818407, - "c4": 7.325271808887553, - "c5": -13.140467230606356, - "c6": 15.618385511273932, - "c7": -8.957562003333987 + "points": { + "c1": -27.47348648030189, + "c2": 2.6198058824274817, + "c3": 21.701341318578127, + "c4": 23.433999882463706, + "c5": 4.931473250571873, + "c6": 19.882395493984564, + "c7": 13.619417411833748 }, - "vertexSeeds": { - "c1": 8.33456398394564, - "c2": 8.493528158505091, - "c3": 8.656561880843428, - "c4": 7.101269749306963, - "c5": 8.529034341195544, - "c6": 7.739750001688732, - "c7": 8.55593894147565 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582526, + "c3": 10.67961165048544, + "c4": 8.543689320388346, + "c5": 6.407766990291258, + "c6": 4.271844660194173, + "c7": 2.1359223300970864 }, "rgb": [238, 201, 159] }, @@ -296493,23 +296493,23 @@ "year": 1789, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 5.864481769261964, - "c2": -42.52108608906909, - "c3": 29.060543789787637, - "c4": 24.176679110234495, - "c5": -33.28430810253115, - "c6": 26.332807282073382, - "c7": -2.734732276100573 + "points": { + "c1": -1.3741827157062332, + "c2": -13.602141025347372, + "c3": 39.56017709414704, + "c4": 45.98147486709829, + "c5": 44.16309310114281, + "c6": -26.607641134524123, + "c7": 8.777706708065956 }, - "vertexSeeds": { - "c1": 8.328613019346191, - "c2": 8.454989168961342, - "c3": 8.157735726427791, - "c4": 7.9017476019218, - "c5": 7.902513517519636, - "c6": 8.14474812013283, - "c7": 8.634585204431104 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938972, + "c3": 10.30975496994914, + "c4": 8.247803975959329, + "c5": 6.185852981969496, + "c6": 4.123901987979664, + "c7": 2.061950993989832 }, "rgb": [238, 201, 159] }, @@ -296520,23 +296520,23 @@ "year": 1789, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 30.62000078905583, - "c2": -16.434480142975513, - "c3": 14.316487023115577, - "c4": -40.83838465827502, - "c5": 13.54395041836387, - "c6": 26.27971912352171, - "c7": 28.666847816901587 + "points": { + "c1": -6.243525864259652, + "c2": 24.96434162926925, + "c3": -33.7608459125723, + "c4": -33.99956093987365, + "c5": -35.75087779522549, + "c6": 22.029764130499764, + "c7": 14.569865967779627 }, - "vertexSeeds": { - "c1": 2.97653568555438, - "c2": 2.974963129033049, - "c3": 3.1491257137616704, - "c4": 3.0728009523417437, - "c5": 3.1635484340110422, - "c6": 3.183988642731933, - "c7": 2.972861977787002 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636611, + "c3": 3.814147018030518, + "c4": 3.051317614424412, + "c5": 2.2884882108183056, + "c6": 1.5256588072122124, + "c7": 0.7628294036061062 }, "rgb": [77, 76, 132] }, @@ -296547,23 +296547,23 @@ "year": 1788, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 13.290979769419224, - "c2": 30.64667160989262, - "c3": -11.590392387542714, - "c4": -13.964923697563513, - "c5": 3.421822314350358, - "c6": 20.22883332413619, - "c7": 28.346826814029463 + "points": { + "c1": 30.4532365797767, + "c2": -28.9623806666491, + "c3": -22.825066749191677, + "c4": -17.28104685118018, + "c5": -27.21819621905219, + "c6": -31.73056130188983, + "c7": -21.775796951261967 }, - "vertexSeeds": { - "c1": 9.94180756597636, - "c2": 9.965980795439966, - "c3": 9.942741269767192, - "c4": 9.949146970589554, - "c5": 9.938607955243782, - "c6": 9.939478120811449, - "c7": 9.933257423112297 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.257975034673658, + "c3": 11.88164586222852, + "c4": 9.505316689782438, + "c5": 7.128987517337301, + "c6": 4.752658344891219, + "c7": 2.3763291724460824 }, "rgb": [238, 201, 159] }, @@ -296574,23 +296574,23 @@ "year": 1789, "resistanceReported": false, "duration": 48729600, - "curveSeeds": { - "c1": -49.83810645374826, - "c2": 53.87055358773403, - "c3": 7.375168880844846, - "c4": 40.47971354363802, - "c5": -23.885554074049104, - "c6": 27.442805623016078, - "c7": 61.41428960274062 + "points": { + "c1": 37.57359946916689, + "c2": -28.80229111693106, + "c3": -40.377654182266284, + "c4": 32.1648457357237, + "c5": 51.90192619929603, + "c6": -6.980090293456513, + "c7": 54.07863779598878 }, - "vertexSeeds": { - "c1": 3.206913492437499, - "c2": 3.2344189927625124, - "c3": 3.42896416437523, - "c4": 3.269520618993099, - "c5": 3.220713830778145, - "c6": 3.1805694531866986, - "c7": 3.1415731658878006 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.96532593619972, + "c3": 4.137771613499773, + "c4": 3.310217290799816, + "c5": 2.48266296809986, + "c6": 1.6551086453999124, + "c7": 0.8275543226999562 }, "rgb": [238, 201, 159] }, @@ -296601,23 +296601,23 @@ "year": 1789, "resistanceReported": false, "duration": 44496000, - "curveSeeds": { - "c1": 24.18200306239531, - "c2": 29.336218148484207, - "c3": 42.0767207311258, - "c4": 10.042516100365589, - "c5": -56.57853969467666, - "c6": 6.589462720731177, - "c7": 48.438219755082386 + "points": { + "c1": -56.6942342663276, + "c2": 31.2080956893261, + "c3": -19.19910284052439, + "c4": 20.31523960370238, + "c5": 40.5971175299583, + "c6": 8.196223108336952, + "c7": 15.408708044316171 }, - "vertexSeeds": { - "c1": 2.253027124618051, - "c2": 2.2192572570852516, - "c3": 2.091364071558928, - "c4": 2.287702602248373, - "c5": 2.2222384553416146, - "c6": 2.0952267462304786, - "c7": 2.0942854467385192 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.439667128987519, + "c3": 2.8663892741562633, + "c4": 2.2931114193250113, + "c5": 1.7198335644937595, + "c6": 1.146555709662504, + "c7": 0.573277854831252 }, "rgb": [86, 146, 138] }, @@ -296628,23 +296628,23 @@ "year": 1789, "resistanceReported": false, "duration": 52617600, - "curveSeeds": { - "c1": -62.13943774945814, - "c2": 14.285601659542067, - "c3": -36.93807729229168, - "c4": -40.34054798349099, - "c5": 37.36154441037435, - "c6": -9.541443006853662, - "c7": -22.445122621637687 + "points": { + "c1": 59.095646190855604, + "c2": -30.370333547565743, + "c3": 14.994615156344295, + "c4": -50.11632853505043, + "c5": 48.62764255062358, + "c6": -49.12910644604861, + "c7": 63.81698183809655 }, - "vertexSeeds": { - "c1": 5.2916873965849, - "c2": 5.660153576953156, - "c3": 5.679539611426998, - "c4": 5.286775324077498, - "c5": 5.697982896631208, - "c6": 5.690798228496057, - "c7": 5.540498769581206 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [222, 0, 59] }, @@ -296655,23 +296655,23 @@ "year": 1789, "resistanceReported": false, "duration": 49420800, - "curveSeeds": { - "c1": -38.58378937645913, - "c2": -12.789057016203678, - "c3": 4.114098032763522, - "c4": -19.970169984650056, - "c5": 61.98982087312562, - "c6": 41.32343186663199, - "c7": -19.39406859211912 + "points": { + "c1": -45.19425220736677, + "c2": 38.1482732417502, + "c3": -13.470904930786205, + "c4": 19.608488476737378, + "c5": -27.160133986000645, + "c6": 55.60918957409537, + "c7": -53.8239554811647 }, - "vertexSeeds": { - "c1": 6.200455865488199, - "c2": 6.199526576008985, - "c3": 4.843528777788527, - "c4": 5.434335053284824, - "c5": 5.395062402126495, - "c6": 6.541490635902003, - "c7": 5.4781022673751085 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635226, + "c3": 7.836338418862687, + "c4": 6.269070735090153, + "c5": 4.701803051317613, + "c6": 3.1345353675450736, + "c7": 1.5672676837725368 }, "rgb": [86, 146, 138] }, @@ -296682,23 +296682,23 @@ "year": 1790, "resistanceReported": false, "duration": 64713600, - "curveSeeds": { - "c1": -77.97821365699902, - "c2": 26.740555601635506, - "c3": -45.110911037922264, - "c4": 22.74651399731806, - "c5": 47.459445862622886, - "c6": -59.12193107179183, - "c7": 39.37393620333047 + "points": { + "c1": -23.69242300596271, + "c2": 5.038199814706644, + "c3": -13.61476556728067, + "c4": 29.91743831417007, + "c5": -64.05122680455207, + "c6": -40.27165541606341, + "c7": -23.660519159947853 }, - "vertexSeeds": { - "c1": 5.5135686924336795, - "c2": 5.857871380123385, - "c3": 4.766625504787978, - "c4": 4.8749325322799075, - "c5": 6.079345209240941, - "c6": 4.607170913784874, - "c7": 6.322365763140735 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434117, + "c3": 7.720758206195096, + "c4": 6.176606564956081, + "c5": 4.6324549237170585, + "c6": 3.088303282478037, + "c7": 1.5441516412390186 }, "rgb": [77, 76, 132] }, @@ -296709,23 +296709,23 @@ "year": 1790, "resistanceReported": false, "duration": 64368000, - "curveSeeds": { - "c1": 12.798671672823488, - "c2": 20.420191110621275, - "c3": -3.993999248838861, - "c4": -5.1507993989109195, - "c5": 43.780807100068756, - "c6": -8.189184580866126, - "c7": 58.80949956396586 + "points": { + "c1": -75.46807127163487, + "c2": -8.932282395977296, + "c3": 58.01297253485018, + "c4": 67.46017223259969, + "c5": -55.08416700256167, + "c6": 14.119566538029744, + "c7": -0.21668039308624998 }, - "vertexSeeds": { - "c1": 7.398785440433356, - "c2": 7.026517644376435, - "c3": 7.480913877627761, - "c4": 7.132310772046421, - "c5": 7.304130015196316, - "c6": 6.881611246632648, - "c7": 7.381772686385015 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.178918169209437, + "c3": 9.315765141007859, + "c4": 7.452612112806292, + "c5": 5.589459084604712, + "c6": 3.726306056403146, + "c7": 1.8631530282015787 }, "rgb": [58, 15, 49] }, @@ -296736,23 +296736,23 @@ "year": 1790, "resistanceReported": false, "duration": 76204800, - "curveSeeds": { - "c1": 56.08507728169195, - "c2": -37.37405156349512, - "c3": 56.11303594552194, - "c4": -57.537033437944174, - "c5": 69.9465154763868, - "c6": -49.2914842811634, - "c7": 17.37593154036108 + "points": { + "c1": -85.34693034080797, + "c2": -49.63734533349311, + "c3": -46.30668899222191, + "c4": -89.39593616188769, + "c5": 21.713443780234172, + "c6": 2.302842598129857, + "c7": -68.783084223745 }, - "vertexSeeds": { - "c1": 6.436065262825431, - "c2": 6.6012270654378815, - "c3": 6.551258966317022, - "c4": 5.214810913121372, - "c5": 7.161496571199375, - "c6": 7.231815752612395, - "c7": 6.974189627279539 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [58, 15, 49] }, @@ -296763,23 +296763,23 @@ "year": 1790, "resistanceReported": false, "duration": 65750400, - "curveSeeds": { - "c1": 2.015757465963347, - "c2": 3.293022923064001, - "c3": 11.59137618670782, - "c4": 40.392229378424545, - "c5": 10.474956776116343, - "c6": 35.57468504425208, - "c7": 76.84472801593802 + "points": { + "c1": 51.69832252891237, + "c2": 12.036107258009721, + "c3": 62.41091813437575, + "c4": -83.81773430892682, + "c5": 49.86030816036393, + "c6": 58.91562524164914, + "c7": -11.100548632143457 }, - "vertexSeeds": { - "c1": 6.187490101239104, - "c2": 6.199346783333765, - "c3": 6.4222567527923395, - "c4": 5.458402203737243, - "c5": 4.912130794894349, - "c6": 5.391333400114707, - "c7": 5.861755976470784 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661582, + "c4": 6.158113730929263, + "c5": 4.61858529819695, + "c6": 3.0790568654646315, + "c7": 1.5395284327323158 }, "rgb": [86, 146, 138] }, @@ -296790,23 +296790,23 @@ "year": 1788, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -25.72598738377043, - "c2": -20.647721899206687, - "c3": 39.561016103742496, - "c4": 10.306139330384362, - "c5": -34.62213242006394, - "c6": 34.95708703505189, - "c7": 6.089445604792566 + "points": { + "c1": 3.8379910090817333, + "c2": -32.6747781845594, + "c3": 2.863607950504047, + "c4": 33.86770766045732, + "c5": 19.048650625029815, + "c6": 2.914112158215353, + "c7": 22.601456425932234 }, - "vertexSeeds": { - "c1": 5.928529336139801, - "c2": 5.2599334615423246, - "c3": 5.395921798298584, - "c4": 5.611549650361685, - "c5": 5.988855248358669, - "c6": 5.271577415057046, - "c7": 5.5032610073138315 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [222, 0, 59] }, @@ -296817,23 +296817,23 @@ "year": 1788, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 27.48541883980937, - "c2": 14.227799206282732, - "c3": 25.87990579742089, - "c4": 32.66889451493043, - "c5": 20.214089864622736, - "c6": -10.225129509143041, - "c7": -8.414781372623057 + "points": { + "c1": -10.48685385128822, + "c2": -4.232385695567032, + "c3": 40.819939653252035, + "c4": 19.00687713378712, + "c5": -11.663024187941932, + "c6": 36.02328201994726, + "c7": 5.523266618832004 }, - "vertexSeeds": { - "c1": 5.336604857340522, - "c2": 5.373750832495949, - "c3": 5.944716446248455, - "c4": 5.814337593574599, - "c5": 5.250896469332762, - "c6": 5.9894372743431425, - "c7": 5.489515142134695 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [238, 201, 159] }, @@ -296844,23 +296844,23 @@ "year": 1789, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": -55.65473233488528, - "c2": -20.271251007475755, - "c3": 23.2751598889666, - "c4": -28.072817209857725, - "c5": 39.61113107633692, - "c6": 11.965208583154336, - "c7": -24.597155463948145 + "points": { + "c1": -42.98653008793896, + "c2": -1.5913041522029445, + "c3": -53.994200117382235, + "c4": -33.784409496136874, + "c5": 1.5690391006883502, + "c6": 24.131948992339687, + "c7": -39.47768596351123 }, - "vertexSeeds": { - "c1": 2.0723575792779196, - "c2": 2.044042835082148, - "c3": 1.8995863513009001, - "c4": 2.190665153761418, - "c5": 2.0887732421268805, - "c6": 2.187947344497686, - "c7": 1.910556235267213 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852977, + "c3": 2.6352288488210815, + "c4": 2.108183079056865, + "c5": 1.5811373092926488, + "c6": 1.0540915395284325, + "c7": 0.5270457697642162 }, "rgb": [222, 0, 59] }, @@ -296871,23 +296871,23 @@ "year": 1788, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 19.99497937574165, - "c2": -21.087175094481424, - "c3": -8.775190699740506, - "c4": 8.3091835923247, - "c5": 9.61912134393539, - "c6": -20.065228526228985, - "c7": -29.871896945146613 + "points": { + "c1": 2.942351875791161, + "c2": -23.336798428410077, + "c3": 16.441317985968247, + "c4": -29.95018690365257, + "c5": 11.529888566773124, + "c6": -20.30313616893585, + "c7": -34.07620197116398 }, - "vertexSeeds": { - "c1": 9.210580195315453, - "c2": 8.583740781065343, - "c3": 9.556707786755048, - "c4": 8.836269465741537, - "c5": 9.055630072702467, - "c6": 9.088454802643234, - "c7": 8.596157975178794 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909845, + "c3": 11.442441054091532, + "c4": 9.153952843273236, + "c5": 6.8654646324549224, + "c6": 4.576976421636609, + "c7": 2.288488210818313 }, "rgb": [86, 146, 138] }, @@ -296898,23 +296898,23 @@ "year": 1788, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 7.012664878973808, - "c2": 25.454130530719624, - "c3": -22.56833597392337, - "c4": -8.714280209675248, - "c5": 4.346913265997088, - "c6": 13.923828029068467, - "c7": -28.057326965940238 + "points": { + "c1": -30.540611162348785, + "c2": 21.37484498335771, + "c3": -12.206629175588585, + "c4": 11.138508588685383, + "c5": 21.942834082285614, + "c6": 28.484153433310432, + "c7": 30.292816771835135 }, - "vertexSeeds": { - "c1": 3.278508530264873, - "c2": 3.474440831679665, - "c3": 3.323707292055941, - "c4": 3.3539995860972605, - "c5": 3.312068405085468, - "c6": 3.4694111462276958, - "c7": 3.1921675490911534 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033291, + "c4": 3.328710124826635, + "c5": 2.4965325936199787, + "c6": 1.6643550624133119, + "c7": 0.8321775312066559 }, "rgb": [238, 201, 159] }, @@ -296925,23 +296925,23 @@ "year": 1789, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -30.789613796357504, - "c2": -17.89704185321962, - "c3": 37.19024751450676, - "c4": 16.727960198322343, - "c5": -26.459271439125914, - "c6": 51.660734193616356, - "c7": -3.3893725324459183 + "points": { + "c1": 52.53916753615196, + "c2": 18.574188718085885, + "c3": 29.38618730102079, + "c4": -41.19408903574413, + "c5": -38.458324112110276, + "c6": 41.79444334903402, + "c7": -49.84764547544037 }, - "vertexSeeds": { - "c1": 3.589537446844611, - "c2": 3.4554063363025738, - "c3": 3.6730900004092497, - "c4": 3.7363990635713713, - "c5": 3.8254961880792298, - "c6": 3.7616475356978625, - "c7": 3.8623579349823856 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.6310679611650505, + "c3": 4.692556634304206, + "c4": 3.7540453074433673, + "c5": 2.815533980582522, + "c6": 1.8770226537216836, + "c7": 0.9385113268608452 }, "rgb": [58, 15, 49] }, @@ -296952,23 +296952,23 @@ "year": 1789, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": -28.0166014668218, - "c2": -23.90857467581586, - "c3": 4.226347015245118, - "c4": -12.197493204948422, - "c5": 43.70048480117868, - "c6": 20.630185015166354, - "c7": -17.023817560361742 + "points": { + "c1": -47.12595109667457, + "c2": 21.52222040517018, + "c3": -38.843369834556164, + "c4": 7.053324790440783, + "c5": -1.4761731770614261, + "c6": -14.177567949536751, + "c7": 16.552098559711673 }, - "vertexSeeds": { - "c1": 6.937890232927278, - "c2": 6.660167941787518, - "c3": 7.182758466521448, - "c4": 7.244125415608948, - "c5": 6.872032149713152, - "c6": 6.657619644002617, - "c7": 7.160182399334924 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123447, + "c3": 8.691631992602863, + "c4": 6.953305594082299, + "c5": 5.214979195561714, + "c6": 3.4766527970411496, + "c7": 1.738326398520585 }, "rgb": [222, 0, 59] }, @@ -296979,23 +296979,23 @@ "year": 1789, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": -40.53687260751439, - "c2": 40.4655563815041, - "c3": -42.50541073523884, - "c4": -26.839674893017538, - "c5": -9.731432695940775, - "c6": 5.8553812218699335, - "c7": 20.697162030028522 + "points": { + "c1": 18.415996781877567, + "c2": -30.461333127740808, + "c3": -39.67989070594589, + "c4": 13.772776633208196, + "c5": 15.956011725082746, + "c6": -3.1730999252142595, + "c7": 2.9438008703566325 }, - "vertexSeeds": { - "c1": 1.4434735842660973, - "c2": 1.393379061500052, - "c3": 1.4426113448977576, - "c4": 1.4073184381339208, - "c5": 1.4032165678805797, - "c6": 1.4570546653688754, - "c7": 1.4077797526319118 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.1081830790568685, + "c3": 1.7568192325473868, + "c4": 1.4054553860379124, + "c5": 1.0540915395284307, + "c6": 0.7027276930189562, + "c7": 0.3513638465094816 }, "rgb": [222, 0, 59] }, @@ -297006,23 +297006,23 @@ "year": 1788, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 33.104970324676074, - "c2": 30.23903069636701, - "c3": -33.07415002269178, - "c4": -26.40485034479768, - "c5": 34.45256087161452, - "c6": -0.033038614839817626, - "c7": 20.379005781974293 + "points": { + "c1": -3.7477716448918414, + "c2": -31.470069490927695, + "c3": 3.8320387156648223, + "c4": -25.014477694869342, + "c5": 21.479454114773155, + "c6": 33.81296942315264, + "c7": -5.261011020809811 }, - "vertexSeeds": { - "c1": 3.8153335140223943, - "c2": 3.8644281279182797, - "c3": 3.622420642647917, - "c4": 3.71031083302239, - "c5": 3.581096067461105, - "c6": 3.9016369884583555, - "c7": 3.977781035033298 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486825, + "c3": 4.87748497457235, + "c4": 3.901987979657881, + "c5": 2.9264909847434124, + "c6": 1.950993989828944, + "c7": 0.9754969949144685 }, "rgb": [222, 0, 59] }, @@ -297033,23 +297033,23 @@ "year": 1789, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": -26.04072599653913, - "c2": -45.01591410780961, - "c3": -22.24457975400196, - "c4": -11.655981421896861, - "c5": 8.964666845280789, - "c6": -31.539741947086725, - "c7": 39.972649533776526 + "points": { + "c1": -34.62897699184791, + "c2": -42.970342474862946, + "c3": 29.037895996088885, + "c4": 4.620503975134362, + "c5": -27.576844427415633, + "c6": -27.722638757545933, + "c7": 37.757390940122214 }, - "vertexSeeds": { - "c1": 6.9817025463497675, - "c2": 7.119358206534386, - "c3": 7.040819674553867, - "c4": 7.196757070144878, - "c5": 7.335643036374538, - "c6": 7.381093456288752, - "c7": 7.441933157399384 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686538, + "c3": 9.015256588072125, + "c4": 7.212205270457692, + "c5": 5.409153952843279, + "c6": 3.606102635228846, + "c7": 1.803051317614413 }, "rgb": [58, 15, 49] }, @@ -297060,23 +297060,23 @@ "year": 1788, "resistanceReported": true, "duration": 27043200, - "curveSeeds": { - "c1": 32.49188996821694, - "c2": 14.185471734532449, - "c3": -16.089760768498714, - "c4": 16.513635992528663, - "c5": 1.047893687380295, - "c6": 21.468325519010556, - "c7": 3.081912105325614 + "points": { + "c1": 10.075679246527756, + "c2": 14.683323667187238, + "c3": 19.540051353342328, + "c4": -30.092263040510737, + "c5": 38.13697221032167, + "c6": 10.315191633538085, + "c7": 33.18617954599429 }, - "vertexSeeds": { - "c1": 2.2821425037353618, - "c2": 2.39745466334146, - "c3": 2.5779430331073208, - "c4": 2.6519216189597916, - "c5": 2.7200675701871035, - "c6": 2.323711157213362, - "c7": 2.6441436037971253 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194175, + "c3": 3.5598705501618135, + "c4": 2.847896440129451, + "c5": 2.1359223300970895, + "c6": 1.4239482200647255, + "c7": 0.7119741100323638 }, "rgb": [238, 201, 159] }, @@ -297087,23 +297087,23 @@ "year": 1788, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -31.02251827946484, - "c2": -7.5755891133446305, - "c3": 24.47011331457194, - "c4": 29.70763988659855, - "c5": -8.872485710974082, - "c6": -5.197625467759238, - "c7": 15.347561400869246 + "points": { + "c1": -8.64801691555316, + "c2": -29.779699018213684, + "c3": -14.98639307747138, + "c4": -32.3754060494379, + "c5": 29.96206815707017, + "c6": 35.78804989806384, + "c7": 20.92267901387123 }, - "vertexSeeds": { - "c1": 1.6005682943854564, - "c2": 1.5891281753871007, - "c3": 1.5550871305215512, - "c4": 1.517196351087378, - "c5": 1.5965563970457213, - "c6": 1.583936857251159, - "c7": 1.570518005013329 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.3578363384188608, + "c3": 1.964863615349055, + "c4": 1.5718908922792425, + "c5": 1.1789181692094304, + "c6": 0.7859454461396247, + "c7": 0.39297272306981235 }, "rgb": [77, 76, 132] }, @@ -297114,23 +297114,23 @@ "year": 1788, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 27.394378263011326, - "c2": -17.605315614559, - "c3": -10.241979763445798, - "c4": 31.4156428974739, - "c5": 21.896720411870383, - "c6": 2.5204053611631636, - "c7": 26.77427963928818 + "points": { + "c1": 20.064781128263135, + "c2": 14.729567483096076, + "c3": 33.89846228940729, + "c4": 18.77659090044009, + "c5": -28.487242454414464, + "c6": -23.446064426608732, + "c7": -8.869270228168215 }, - "vertexSeeds": { - "c1": 5.424747966428788, - "c2": 5.680013473308358, - "c3": 5.455358317183672, - "c4": 5.75510086281882, - "c5": 5.585901093799755, - "c6": 5.731694446835353, - "c7": 5.603121838399818 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.46047156726768, + "c3": 7.0503929727230625, + "c4": 5.640314378178446, + "c5": 4.230235783633829, + "c6": 2.820157189089234, + "c7": 1.410078594544617 }, "rgb": [58, 15, 49] }, @@ -297141,23 +297141,23 @@ "year": 1788, "resistanceReported": false, "duration": 7084800, - "curveSeeds": { - "c1": 7.183452619525799, - "c2": 7.332024426436494, - "c3": 4.445061723039398, - "c4": 6.287757677386438, - "c5": 7.7258366233749705, - "c6": 4.904699906824991, - "c7": 14.732539098580983 + "points": { + "c1": -1.7179936557391748, + "c2": -6.39204243788102, + "c3": -10.926990819272662, + "c4": -16.634077641360992, + "c5": 11.588988885290355, + "c6": 0.6764862069722959, + "c7": 2.208614679327166 }, - "vertexSeeds": { - "c1": 3.195177257985569, - "c2": 3.2837057744060867, - "c3": 3.3582207098752535, - "c4": 3.1955680807738465, - "c5": 3.3737659360505576, - "c6": 3.243641889262582, - "c7": 3.298368238530292 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.9098474341192775, + "c3": 4.091539528432729, + "c4": 3.2732316227461933, + "c5": 2.4549237170596445, + "c6": 1.6366158113730966, + "c7": 0.8183079056865483 }, "rgb": [222, 0, 59] }, @@ -297168,23 +297168,23 @@ "year": 1789, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": 6.441484847001917, - "c2": -33.993865067990214, - "c3": -2.055467552084714, - "c4": -46.10954956757532, - "c5": 2.601227620692711, - "c6": 23.07346134375181, - "c7": 23.04883977184391 + "points": { + "c1": -20.020154904869322, + "c2": 52.30012196619145, + "c3": 5.989855394082625, + "c4": -12.571707529193844, + "c5": 1.793027413247593, + "c6": -21.93691312010097, + "c7": -26.324768127783248 }, - "vertexSeeds": { - "c1": 5.275266420284356, - "c2": 5.159607948595837, - "c3": 5.397881979779269, - "c4": 5.391853555194877, - "c5": 5.285699076467546, - "c6": 5.419501666396421, - "c7": 5.0593536990509165 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342573, + "c3": 6.518723994452158, + "c4": 5.214979195561722, + "c5": 3.9112343966712864, + "c6": 2.6074895977808503, + "c7": 1.303744798890436 }, "rgb": [238, 201, 159] }, @@ -297195,23 +297195,23 @@ "year": 1788, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 11.447408099126452, - "c2": 11.410019535172484, - "c3": 1.3117479803944079, - "c4": 16.225619489113523, - "c5": -21.52891620752432, - "c6": -1.7977522244245918, - "c7": 14.296066344861604 + "points": { + "c1": -17.924140738634968, + "c2": 1.379188504050262, + "c3": -19.37317626214746, + "c4": -2.755569382340667, + "c5": -8.9196454834881, + "c6": -7.661896366959422, + "c7": -5.874415139170761 }, - "vertexSeeds": { - "c1": 7.622149776892229, - "c2": 7.734817639820549, - "c3": 7.626359777973583, - "c4": 7.706507797484246, - "c5": 7.697617449388488, - "c6": 7.687812305547149, - "c7": 7.710467398077518 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.3971336107258425, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [86, 146, 138] }, @@ -297222,23 +297222,23 @@ "year": 1789, "resistanceReported": false, "duration": 39052800, - "curveSeeds": { - "c1": -2.0230568645916307, - "c2": 34.982600439377734, - "c3": -7.12879338441703, - "c4": -22.190421513290637, - "c5": -14.620989479720606, - "c6": -34.58688508509515, - "c7": -12.955505096069956 + "points": { + "c1": 9.959443067679487, + "c2": -45.240751701663726, + "c3": -35.34550752023111, + "c4": 34.47859428901597, + "c5": -28.914995709244355, + "c6": -54.19410769259057, + "c7": -1.5855210044492338 }, - "vertexSeeds": { - "c1": 11.848817717411258, - "c2": 11.36460647934483, - "c3": 10.852895605516231, - "c4": 11.013218504424188, - "c5": 11.15641814605115, - "c6": 11.285097612245337, - "c7": 11.599372611444718 + "offsets": { + "c1": 19.838187702265373, + "c2": 17.00416088765602, + "c3": 14.170134073046713, + "c4": 11.336107258437362, + "c5": 8.50208044382801, + "c6": 5.668053629218702, + "c7": 2.834026814609351 }, "rgb": [58, 15, 49] }, @@ -297249,23 +297249,23 @@ "year": 1789, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": 49.37515145630134, - "c2": -20.01379985220325, - "c3": -43.94970492632129, - "c4": -50.2918448848303, - "c5": 45.74265343444553, - "c6": -24.691938502890626, - "c7": -47.02386734664181 + "points": { + "c1": 42.060256562966714, + "c2": 53.52417980447012, + "c3": 44.98394645401734, + "c4": -47.81532631867556, + "c5": 17.781013621787054, + "c6": 40.53773448920293, + "c7": 25.59123532666358 }, - "vertexSeeds": { - "c1": 6.249015314902073, - "c2": 6.197338559715828, - "c3": 6.383406535015806, - "c4": 6.2740766060285065, - "c5": 6.044846718484594, - "c6": 6.182782002818598, - "c7": 6.198891191847665 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273226, + "c3": 7.628294036061016, + "c4": 6.102635228848807, + "c5": 4.576976421636597, + "c6": 3.0513176144244194, + "c7": 1.5256588072122097 }, "rgb": [238, 201, 159] }, @@ -297276,23 +297276,23 @@ "year": 1788, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 15.474018753365574, - "c2": 20.281354933494985, - "c3": 12.810518187984915, - "c4": 6.864149348506043, - "c5": -10.135550765907034, - "c6": -8.162991835296562, - "c7": 26.098656222346516 + "points": { + "c1": -26.476645876198727, + "c2": 19.913822474985505, + "c3": 4.609104352971432, + "c4": -8.769900467381866, + "c5": 12.086445110300435, + "c6": 4.937742261159247, + "c7": -25.20851418506675 }, - "vertexSeeds": { - "c1": 0.26229488871418466, - "c2": 0.3108061383462027, - "c3": 0.2683340283762129, - "c4": 0.27803573313322644, - "c5": 0.2914055004640717, - "c6": 0.2647711054533893, - "c7": 0.26448526763768143 + "offsets": { + "c1": 0.5501618122977346, + "c2": 0.4715672676837728, + "c3": 0.3929727230698103, + "c4": 0.3143781784558484, + "c5": 0.23578363384188622, + "c6": 0.15718908922792404, + "c7": 0.07859454461396218 }, "rgb": [238, 201, 159] }, @@ -297303,23 +297303,23 @@ "year": 1789, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": -20.006925540483046, - "c2": 6.248862499438282, - "c3": -7.686439938481762, - "c4": -0.8932437694141768, - "c5": 21.629297898224394, - "c6": -6.925733095477021, - "c7": -45.96395724579042 + "points": { + "c1": -7.398631747813539, + "c2": -27.389684332294696, + "c3": 52.664088921495136, + "c4": 39.622650381392276, + "c5": 22.40817892339838, + "c6": -52.895028360988384, + "c7": 45.90103589120339 }, - "vertexSeeds": { - "c1": 2.4641946075049397, - "c2": 2.6907745560527885, - "c3": 2.943628033935241, - "c4": 2.7220484120507566, - "c5": 2.4451653889011715, - "c6": 2.7130015025611187, - "c7": 2.6784905389234326 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355064, + "c3": 3.652334720295885, + "c4": 2.9218677762367093, + "c5": 2.1914008321775302, + "c6": 1.4609338881183547, + "c7": 0.7304669440591773 }, "rgb": [58, 15, 49] }, @@ -297330,23 +297330,23 @@ "year": 1789, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": 42.67751238653436, - "c2": 3.6211586804514724, - "c3": 45.25679699071681, - "c4": -19.753913957920112, - "c5": 21.6405599507695, - "c6": -30.573674726670767, - "c7": -38.56758359108638 + "points": { + "c1": -21.999478537632136, + "c2": 21.864848842174666, + "c3": -16.535614720732994, + "c4": -55.404760091100975, + "c5": 8.99532248024255, + "c6": -42.59875928430844, + "c7": -42.359375071327264 }, - "vertexSeeds": { - "c1": 7.88482252317329, - "c2": 6.86537005627336, - "c3": 7.237765410130445, - "c4": 8.90517007802569, - "c5": 6.508982737715714, - "c6": 6.695855651422014, - "c7": 7.1430816364525755 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864079, + "c3": 10.841423948220067, + "c4": 8.67313915857605, + "c5": 6.504854368932036, + "c6": 4.336569579288025, + "c7": 2.1682847896440123 }, "rgb": [77, 76, 132] }, @@ -297357,23 +297357,23 @@ "year": 1788, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 9.266769676000393, - "c2": 7.2942945964744155, - "c3": 0.019276238863717765, - "c4": 27.927477899241836, - "c5": -7.180470888611257, - "c6": 22.54129362507794, - "c7": 31.275970665615247 + "points": { + "c1": -4.927106049724944, + "c2": -29.29942278345372, + "c3": -34.01295660257347, + "c4": -13.10014033111229, + "c5": 32.05854451384381, + "c6": 18.127599098167885, + "c7": -9.989050467007107 }, - "vertexSeeds": { - "c1": 3.876360435491456, - "c2": 3.928519507037258, - "c3": 3.8509473864884676, - "c4": 4.065294611071913, - "c5": 4.070871705597602, - "c6": 4.076311107175505, - "c7": 3.9517507059991797 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607495, + "c3": 4.946833102172906, + "c4": 3.95746648173833, + "c5": 2.9680998613037417, + "c6": 1.978733240869165, + "c7": 0.9893666204345882 }, "rgb": [77, 76, 132] }, @@ -297384,23 +297384,23 @@ "year": 1789, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -39.50982241067601, - "c2": 15.676254219544255, - "c3": -22.442050907441462, - "c4": -8.792433471577034, - "c5": 13.647401825807727, - "c6": -39.289353447441655, - "c7": 6.467141110148148 + "points": { + "c1": -30.063108020323597, + "c2": -19.512390988557552, + "c3": -24.76588805029385, + "c4": -3.360338600855549, + "c5": 42.922801967320375, + "c6": -3.4054683665814736, + "c7": -9.961723891277998 }, - "vertexSeeds": { - "c1": 5.737737116662642, - "c2": 5.573010987621581, - "c3": 5.623980855746336, - "c4": 5.592951189356418, - "c5": 5.624421911585329, - "c6": 5.648893044845388, - "c7": 5.6796072288615616 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066558, + "c3": 6.934812760055483, + "c4": 5.547850208044372, + "c5": 4.160887656033298, + "c6": 2.773925104022186, + "c7": 1.3869625520111115 }, "rgb": [238, 201, 159] }, @@ -297411,23 +297411,23 @@ "year": 1788, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -2.8915591981730486, - "c2": -10.976847527808717, - "c3": -16.903591924580635, - "c4": -6.273104632004184, - "c5": 8.750985792928041, - "c6": -14.808983855282467, - "c7": -6.267499041597009 + "points": { + "c1": -22.94298619365675, + "c2": 8.692882980515101, + "c3": -15.883161006865093, + "c4": 18.717962566721333, + "c5": -0.9869733967360155, + "c6": -16.41140405228104, + "c7": 3.85284070772941 }, - "vertexSeeds": { - "c1": 7.51364312427619, - "c2": 8.077163700460659, - "c3": 7.433903833390741, - "c4": 7.013716053710649, - "c5": 7.366114073725461, - "c6": 7.595332946920346, - "c7": 7.664243527462354 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [77, 76, 132] }, @@ -297438,23 +297438,23 @@ "year": 1789, "resistanceReported": false, "duration": 42508800, - "curveSeeds": { - "c1": 48.52361635533738, - "c2": -14.049344157919059, - "c3": 50.51114274011496, - "c4": -7.36131188657081, - "c5": -19.02715611507776, - "c6": 47.339237724032444, - "c7": -21.61801824531674 + "points": { + "c1": 26.102910284549196, + "c2": 7.986686925141839, + "c3": 6.506948066000987, + "c4": -30.34533046864906, + "c5": -25.963647374698652, + "c6": 14.496138624993264, + "c7": 37.72540570152425 }, - "vertexSeeds": { - "c1": 3.8739209934579546, - "c2": 3.9699298884352756, - "c3": 3.9402161145773866, - "c4": 4.056038047333081, - "c5": 3.864228534010657, - "c6": 4.013625708608766, - "c7": 3.983007276468023 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -297465,23 +297465,23 @@ "year": 1789, "resistanceReported": false, "duration": 50976000, - "curveSeeds": { - "c1": -24.133236276805675, - "c2": 44.09280079202985, - "c3": -64.99122470830491, - "c4": 45.631733049509876, - "c5": 63.20888747046304, - "c6": -40.4700508211102, - "c7": -22.025451091081123 + "points": { + "c1": 34.1921001936535, + "c2": -37.492150758989595, + "c3": 43.714118849021645, + "c4": -12.35177981069242, + "c5": 38.53556883549142, + "c6": -62.21385239471715, + "c7": 36.700808070762434 }, - "vertexSeeds": { - "c1": 10.090955087815402, - "c2": 9.725888998603326, - "c3": 9.508133382537792, - "c4": 9.494656511405394, - "c5": 9.693989252811136, - "c6": 9.991238018845737, - "c7": 9.73533064242694 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.674063800277372, + "c3": 12.228386500231165, + "c4": 9.782709200184936, + "c5": 7.337031900138686, + "c6": 4.891354600092457, + "c7": 2.4456773000462286 }, "rgb": [86, 146, 138] }, @@ -297492,23 +297492,23 @@ "year": 1789, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": 7.938101640585266, - "c2": -3.0005214823826094, - "c3": 6.241022706956322, - "c4": -37.88348776601059, - "c5": 5.985511271973657, - "c6": -35.979487816137656, - "c7": 13.17465880246396 + "points": { + "c1": -30.283813784261756, + "c2": -41.349421826478554, + "c3": 12.225075296714017, + "c4": -26.44534927436043, + "c5": -34.68508207784731, + "c6": -29.704417630313426, + "c7": 47.694910606970566 }, - "vertexSeeds": { - "c1": 4.552441980312824, - "c2": 4.5558741318066405, - "c3": 4.715232628335763, - "c4": 4.64067817924502, - "c5": 4.429832792008387, - "c6": 4.502663259531553, - "c7": 4.40840341403357 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854363, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271883, + "c6": 2.2653721682847876, + "c7": 1.1326860841424002 }, "rgb": [86, 146, 138] }, @@ -297519,23 +297519,23 @@ "year": 1788, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 16.81447307838602, - "c2": 3.893314316733907, - "c3": -24.59557028167668, - "c4": -11.464717516235705, - "c5": 13.770846858598052, - "c6": -3.2593056019805857, - "c7": -15.352225390709016 + "points": { + "c1": 3.7422503532966793, + "c2": 17.219246163042694, + "c3": 6.748203953958413, + "c4": 2.403353929086311, + "c5": 28.743985360662474, + "c6": -26.679841879952242, + "c7": 3.947510399783095 }, - "vertexSeeds": { - "c1": 6.392487046632125, - "c2": 6.392487046632125, - "c3": 6.392487046632125, - "c4": 6.392487046632125, - "c5": 6.392487046632125, - "c6": 6.392487046632125, - "c7": 6.392487046632125 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -297546,23 +297546,23 @@ "year": 1789, "resistanceReported": false, "duration": 56851200, - "curveSeeds": { - "c1": -31.336128664954558, - "c2": -16.590523732958104, - "c3": 43.0433459695099, - "c4": 47.4786021312307, - "c5": 64.8686007834324, - "c6": -19.764163297688988, - "c7": -65.11720732341215 + "points": { + "c1": -56.06164509407732, + "c2": 48.72486341182032, + "c3": -44.11346082537975, + "c4": -8.4336567997737, + "c5": 39.360749283229794, + "c6": 15.847459589604881, + "c7": 70.05210484266205 }, - "vertexSeeds": { - "c1": 5.8525670479452865, - "c2": 5.811819754081065, - "c3": 5.930346642622927, - "c4": 5.877807202679934, - "c5": 5.866709196310009, - "c6": 5.975117705250949, - "c7": 5.811033623349074 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871014, + "c3": 7.397133610725845, + "c4": 5.917706888580676, + "c5": 4.438280166435507, + "c6": 2.958853444290338, + "c7": 1.479426722145169 }, "rgb": [86, 146, 138] }, @@ -297573,23 +297573,23 @@ "year": 1789, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 6.559822709284475, - "c2": -27.691915529561534, - "c3": -21.48437072323602, - "c4": -21.37485612966483, - "c5": -39.86067743036488, - "c6": -6.683182912327261, - "c7": 7.13734472463409 + "points": { + "c1": 0.7240459189917772, + "c2": 37.506041785407454, + "c3": -11.553483828337324, + "c4": 29.56945630851252, + "c5": -20.864758928484257, + "c6": 2.6621803169352987, + "c7": 2.8807314978885543 }, - "vertexSeeds": { - "c1": 6.929688876123692, - "c2": 6.710019085049093, - "c3": 6.41878135229885, - "c4": 6.3437106621068775, - "c5": 6.602789674616496, - "c6": 6.642266882034808, - "c7": 6.54269825771397 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439673, + "c3": 8.298659269533047, + "c4": 6.6389274156264415, + "c5": 4.979195561719837, + "c6": 3.3194637078132105, + "c7": 1.6597318539066053 }, "rgb": [58, 15, 49] }, @@ -297600,23 +297600,23 @@ "year": 1788, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -3.197589603908451, - "c2": 0.25294350291648726, - "c3": 34.00322605923075, - "c4": -14.496505463956115, - "c5": 20.965743454185166, - "c6": -8.393963020107659, - "c7": -7.558436776478974 + "points": { + "c1": 11.857034522674986, + "c2": -35.8801163398026, + "c3": -13.062912963996673, + "c4": 21.169447381207704, + "c5": 20.463736694528123, + "c6": 1.533470723125106, + "c7": 7.9379323263447645 }, - "vertexSeeds": { - "c1": 7.14044828018189, - "c2": 8.446371111889492, - "c3": 7.6144517970781385, - "c4": 8.287635160206259, - "c5": 8.505933746400185, - "c6": 8.188898194385551, - "c7": 7.788622982038675 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260747, + "c3": 10.494683310217294, + "c4": 8.395746648173834, + "c5": 6.2968099861303735, + "c6": 4.197873324086922, + "c7": 2.098936662043461 }, "rgb": [86, 146, 138] }, @@ -297627,23 +297627,23 @@ "year": 1788, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -8.850111932007543, - "c2": 33.77028024138585, - "c3": 12.568989256414234, - "c4": 2.093548494586379, - "c5": 9.414217341676292, - "c6": 3.0777942418479824, - "c7": -11.23973208782137 + "points": { + "c1": 9.5570707139928, + "c2": -10.751854423999042, + "c3": -23.20084236906414, + "c4": -33.39968305516795, + "c5": -4.16339297333456, + "c6": 4.8811168818318365, + "c7": -22.963503780143007 }, - "vertexSeeds": { - "c1": 9.507608545013571, - "c2": 9.327625566376444, - "c3": 9.625651497298323, - "c4": 9.462497786980911, - "c5": 9.753064108223972, - "c6": 10.23171344160905, - "c7": 10.015751365980346 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.979195561719848, + "c3": 12.482662968099861, + "c4": 9.986130374479888, + "c5": 7.489597780859916, + "c6": 4.993065187239944, + "c7": 2.496532593619972 }, "rgb": [222, 0, 59] }, @@ -297654,23 +297654,23 @@ "year": 1788, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 25.626005234565113, - "c2": 21.246198071983144, - "c3": 12.046979672208224, - "c4": -32.275869792010944, - "c5": 5.96373008598777, - "c6": 32.472893160071905, - "c7": -30.607920103830384 + "points": { + "c1": -7.187922798340686, + "c2": 18.35928232076354, + "c3": -2.2006578229189344, + "c4": -11.58185036287339, + "c5": 16.146848219184584, + "c6": -15.67182702466937, + "c7": -7.530705845326381 }, - "vertexSeeds": { - "c1": 9.82106379222604, - "c2": 9.853600531107505, - "c3": 9.486095951933077, - "c4": 9.950251609476226, - "c5": 9.923877251591259, - "c6": 9.883285165496623, - "c7": 9.702791821650782 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915387, + "c3": 12.02034211742951, + "c4": 9.616273693943603, + "c5": 7.2122052704576936, + "c6": 4.808136846971816, + "c7": 2.404068423485908 }, "rgb": [86, 146, 138] }, @@ -297681,23 +297681,23 @@ "year": 1789, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": 16.205484911850576, - "c2": 8.983028996611552, - "c3": -47.37337669001643, - "c4": -0.14298585974779598, - "c5": 1.9743647364980816, - "c6": 14.603021822730142, - "c7": -25.838026622419683 + "points": { + "c1": 29.133628253393226, + "c2": -48.42480228740688, + "c3": -31.88494736961773, + "c4": -5.643128114802195, + "c5": -38.69353196909555, + "c6": -41.56965926545169, + "c7": 5.636737205942772 }, - "vertexSeeds": { - "c1": 4.867459017768962, - "c2": 4.608265595096286, - "c3": 4.701207577089975, - "c4": 4.739451383760205, - "c5": 4.961499117175469, - "c6": 4.566750919387197, - "c7": 4.688090350072652 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337035, + "c3": 5.940822931114188, + "c4": 4.752658344891353, + "c5": 3.5644937586685175, + "c6": 2.376329172445682, + "c7": 1.1881645862228358 }, "rgb": [222, 0, 59] }, @@ -297708,23 +297708,23 @@ "year": 1788, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -20.168635660937024, - "c2": -13.11326223082566, - "c3": 13.37814921292533, - "c4": 11.199430884460057, - "c5": -20.657538615248235, - "c6": 13.753880892561149, - "c7": -0.8056734183543952 + "points": { + "c1": -16.050921636485484, + "c2": -21.920428538611326, + "c3": 13.89035892955436, + "c4": 12.665955574565025, + "c5": -14.726572719206706, + "c6": 19.98115037255517, + "c7": 8.555928894235024 }, - "vertexSeeds": { - "c1": 4.153289670921371, - "c2": 4.175103742980444, - "c3": 4.157863112688325, - "c4": 4.165742468408503, - "c5": 4.139486064968136, - "c6": 4.169298276526871, - "c7": 4.145778330727915 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687962, + "c3": 4.993065187239935, + "c4": 3.994452149791975, + "c5": 2.995839112343948, + "c6": 1.9972260748959876, + "c7": 0.9986130374479606 }, "rgb": [222, 0, 59] }, @@ -297735,23 +297735,23 @@ "year": 1789, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -16.985383545666192, - "c2": -38.41254196231634, - "c3": -31.298886541978117, - "c4": 37.859430529523856, - "c5": -29.20951091881655, - "c6": 22.788647142164642, - "c7": -1.6436285648027322 + "points": { + "c1": 26.25520362538176, + "c2": -37.65844447792795, + "c3": 16.468495939717215, + "c4": 2.8657337289081894, + "c5": 21.058946623037592, + "c6": -15.404125540193931, + "c7": -35.72070572456136 }, - "vertexSeeds": { - "c1": 5.05247515797343, - "c2": 3.9789517053580625, - "c3": 4.6674709112382695, - "c4": 4.754302126219703, - "c5": 4.082539733641906, - "c6": 4.585348677254465, - "c7": 4.468687107400344 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859919, + "c3": 6.2413314840499305, + "c4": 4.993065187239943, + "c5": 3.7447988904299594, + "c6": 2.4965325936199716, + "c7": 1.2482662968099838 }, "rgb": [86, 146, 138] }, @@ -297762,23 +297762,23 @@ "year": 1789, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 37.99899253394817, - "c2": -19.14864770473639, - "c3": 9.180886094663109, - "c4": -34.54573285283234, - "c5": 52.63955550432428, - "c6": -24.944297222731052, - "c7": -30.857622380983567 + "points": { + "c1": -43.07075908509515, + "c2": -10.173229573173721, + "c3": 40.570150795338066, + "c4": 41.030504871368834, + "c5": 17.48282618250765, + "c6": -11.7180788260439, + "c7": 27.409988845851117 }, - "vertexSeeds": { - "c1": 3.8499965696863585, - "c2": 4.978891196597191, - "c3": 4.399422758749924, - "c4": 4.143541090265391, - "c5": 5.016578294165613, - "c6": 5.16470892571445, - "c7": 4.895591920059581 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -297789,23 +297789,23 @@ "year": 1788, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -26.29768981881299, - "c2": -16.26262444304427, - "c3": -7.723067471080213, - "c4": -11.392030095921594, - "c5": 28.293810212964857, - "c6": -25.962081512788068, - "c7": 28.95959525478672 + "points": { + "c1": -30.71001886927128, + "c2": -17.44672870566983, + "c3": -9.040161380998253, + "c4": 10.53288998439492, + "c5": 0.06806002268507427, + "c6": 29.48570307097218, + "c7": -34.51863729210514 }, - "vertexSeeds": { - "c1": 10.208138234039989, - "c2": 10.127814144404327, - "c3": 9.898026671553644, - "c4": 9.430455955705545, - "c5": 10.055240209148916, - "c6": 9.676745298939858, - "c7": 9.860254725229893 + "offsets": { + "c1": 17.281553398058254, + "c2": 14.81276005547849, + "c3": 12.34396671289877, + "c4": 9.875173370319008, + "c5": 7.406380027739245, + "c6": 4.937586685159504, + "c7": 2.4687933425797626 }, "rgb": [58, 15, 49] }, @@ -297816,23 +297816,23 @@ "year": 1788, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -16.778519605770455, - "c2": -13.887711135211989, - "c3": 8.212415405657374, - "c4": 18.025198434879673, - "c5": 14.209898786801777, - "c6": -7.696103853882981, - "c7": -4.634409885387271 + "points": { + "c1": -22.068435582985277, + "c2": 19.13595868538324, + "c3": 13.758189883630923, + "c4": -0.48778816571702066, + "c5": 7.9943135417932005, + "c6": 19.203286636404382, + "c7": 18.82925768624276 }, - "vertexSeeds": { - "c1": 0.8268463020934946, - "c2": 0.830123915565472, - "c3": 0.8167788870656577, - "c4": 0.8186988885517112, - "c5": 0.8184050306306702, - "c6": 0.8332628394736691, - "c7": 0.8189975107923246 + "offsets": { + "c1": 1.3915857605177993, + "c2": 1.192787794729538, + "c3": 0.9939898289412866, + "c4": 0.7951918631530254, + "c5": 0.5963938973647739, + "c6": 0.3975959315765127, + "c7": 0.19879796578825137 }, "rgb": [222, 0, 59] }, @@ -297843,23 +297843,23 @@ "year": 1788, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 21.71679378705074, - "c2": -14.146009057854453, - "c3": -12.76811006041632, - "c4": -28.382532641960932, - "c5": -10.413820196319783, - "c6": 2.9138405561832315, - "c7": -8.783962106194071 + "points": { + "c1": -14.886054101905899, + "c2": -21.808710328191566, + "c3": 22.24168594188358, + "c4": -32.70234260103959, + "c5": 33.759461477425674, + "c6": -33.39717807215499, + "c7": -5.135715605738412 }, - "vertexSeeds": { - "c1": 5.438733468046235, - "c2": 5.758666482045797, - "c3": 5.800987372665539, - "c4": 5.787697178165753, - "c5": 5.815966425827021, - "c6": 5.770499669801389, - "c7": 5.858681384350154 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256582, + "c4": 5.658807212205262, + "c5": 4.2441054091539625, + "c6": 2.829403606102642, + "c7": 1.414701803051321 }, "rgb": [86, 146, 138] }, @@ -297870,23 +297870,23 @@ "year": 1788, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 25.176147041890196, - "c2": -5.71282576935257, - "c3": 23.232416859665378, - "c4": -28.55197481423689, - "c5": -4.066237516642666, - "c6": -10.314526002540035, - "c7": -20.555982182779342 + "points": { + "c1": 26.281483002564244, + "c2": 25.06837629138083, + "c3": -10.780309711991777, + "c4": 8.403627773393552, + "c5": 14.862508807929906, + "c6": 9.946576306915823, + "c7": -0.7526120205482059 }, - "vertexSeeds": { - "c1": 6.394103371101021, - "c2": 6.406188592140646, - "c3": 6.433260969820097, - "c4": 6.255186636913711, - "c5": 6.480868233517307, - "c6": 6.193794081944313, - "c7": 6.394017595277576 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836329, + "c3": 7.951918631530284, + "c4": 6.361534905224219, + "c5": 4.771151178918175, + "c6": 3.1807674526121095, + "c7": 1.5903837263060658 }, "rgb": [238, 201, 159] }, @@ -297897,23 +297897,23 @@ "year": 1788, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 13.597098417267059, - "c2": -16.551129126472894, - "c3": 21.230029472858117, - "c4": -19.148521942774064, - "c5": -4.502530526351041, - "c6": -24.983965283857206, - "c7": 13.394153882005302 + "points": { + "c1": -5.600760157705395, + "c2": 10.730045445601444, + "c3": 8.649809225522088, + "c4": -7.355661937147389, + "c5": 11.306877272202865, + "c6": -23.388149633218422, + "c7": 8.436097620931118 }, - "vertexSeeds": { - "c1": 3.7911274148181193, - "c2": 3.78433593691587, - "c3": 3.8497573597234256, - "c4": 3.950864635138373, - "c5": 3.8733136229361174, - "c6": 3.908795851350339, - "c7": 3.9887751250720376 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [58, 15, 49] }, @@ -297924,23 +297924,23 @@ "year": 1789, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": 31.273893748664563, - "c2": -43.607613643013394, - "c3": 40.65763417778068, - "c4": 27.035219053747838, - "c5": -41.636647288331034, - "c6": 10.207951188504381, - "c7": -0.34059742041034013 + "points": { + "c1": -26.681467085730834, + "c2": -0.07718819063669002, + "c3": 18.37283124844778, + "c4": -10.096189553869742, + "c5": -44.52209664467816, + "c6": -46.71904395118225, + "c7": 34.20024179398855 }, - "vertexSeeds": { - "c1": 5.413255993066804, - "c2": 5.36305633990027, - "c3": 5.11276899645605, - "c4": 5.351146497075344, - "c5": 5.3615854208051505, - "c6": 5.113173683562774, - "c7": 5.420465344993032 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302353, + "c3": 6.495607951918641, + "c4": 5.196486361534909, + "c5": 3.8973647711511763, + "c6": 2.5982431807674655, + "c7": 1.2991215903837328 }, "rgb": [58, 15, 49] }, @@ -297951,23 +297951,23 @@ "year": 1788, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 19.967816039094842, - "c2": -30.518710448458524, - "c3": 4.398162119496362, - "c4": -5.805346787547652, - "c5": 5.100350693299603, - "c6": 2.380372606702153, - "c7": -6.771140552580366 + "points": { + "c1": -6.781601149804349, + "c2": 6.174009632773867, + "c3": 37.46782995514355, + "c4": 18.97221088019907, + "c5": -7.862474042031877, + "c6": 22.35340516214466, + "c7": -20.170939416820577 }, - "vertexSeeds": { - "c1": 6.069923708787819, - "c2": 7.993749005750599, - "c3": 6.829311383172797, - "c4": 6.591393983539384, - "c5": 7.49833590165659, - "c6": 7.83245984629122, - "c7": 7.741632148702873 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651869, + "c3": 9.570041608876558, + "c4": 7.656033287101249, + "c5": 5.7420249653259345, + "c6": 3.8280166435506184, + "c7": 1.9140083217753092 }, "rgb": [58, 15, 49] }, @@ -297978,23 +297978,23 @@ "year": 1789, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 23.038759272004462, - "c2": -36.49101768639375, - "c3": -8.897585717981812, - "c4": -12.644541072616885, - "c5": 34.2234044225913, - "c6": 23.73346918196622, - "c7": -7.842480016571894 + "points": { + "c1": 7.296581244047211, + "c2": -2.3684227036661056, + "c3": 9.404734751657458, + "c4": -18.143409935466455, + "c5": -24.830314819620032, + "c6": -30.109512528646228, + "c7": 21.058502588502655 }, - "vertexSeeds": { - "c1": 6.603224711425443, - "c2": 5.968051185418185, - "c3": 8.15978372112422, - "c4": 7.553905670980667, - "c5": 6.731719168389719, - "c6": 7.894197460051377, - "c7": 6.993715975229385 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.73370319001387, + "c3": 9.778085991678225, + "c4": 7.822468793342585, + "c5": 5.866851595006938, + "c6": 3.9112343966712926, + "c7": 1.9556171983356463 }, "rgb": [222, 0, 59] }, @@ -298005,23 +298005,23 @@ "year": 1789, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -37.77081101236476, - "c2": 30.399806111675716, - "c3": 19.822322958772745, - "c4": -28.452442949591536, - "c5": 16.10590493787717, - "c6": -14.316762269842066, - "c7": -33.368832200197325 + "points": { + "c1": 27.31619690651155, + "c2": 29.275171072209957, + "c3": -25.13012132496937, + "c4": 32.091881029075836, + "c5": 34.75979755492149, + "c6": -38.72703016105438, + "c7": 31.687494733651604 }, - "vertexSeeds": { - "c1": 8.234247966591996, - "c2": 8.296911486938672, - "c3": 8.117146112486445, - "c4": 7.571315739042542, - "c5": 8.511054930432337, - "c6": 7.742170779755478, - "c7": 7.586264252036732 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938972, + "c3": 10.30975496994915, + "c4": 8.247803975959318, + "c5": 6.185852981969486, + "c6": 4.123901987979665, + "c7": 2.0619509939898326 }, "rgb": [86, 146, 138] }, @@ -298032,23 +298032,23 @@ "year": 1789, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -29.537984263049584, - "c2": -7.163841158959158, - "c3": 42.29000088784417, - "c4": 20.328283247490788, - "c5": 38.14543134457179, - "c6": -17.267506691756797, - "c7": 24.250384067144765 + "points": { + "c1": -47.4635143220438, + "c2": -30.292395472029312, + "c3": -5.713493388560792, + "c4": -39.38861415508221, + "c5": -28.49072292474182, + "c6": -17.449657557623482, + "c7": -20.18477122459385 }, - "vertexSeeds": { - "c1": 11.316742085100634, - "c2": 11.264178348370768, - "c3": 7.878797205152734, - "c4": 8.98766317122349, - "c5": 9.285972317070364, - "c6": 8.779415305789188, - "c7": 9.377831576914033 + "offsets": { + "c1": 18.96440129449838, + "c2": 16.255201109570038, + "c3": 13.546000924641696, + "c4": 10.836800739713361, + "c5": 8.127600554785019, + "c6": 5.418400369856684, + "c7": 2.709200184928342 }, "rgb": [77, 76, 132] }, @@ -298059,23 +298059,23 @@ "year": 1788, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -0.6505155078088052, - "c2": -2.588462157814, - "c3": 18.032599797946425, - "c4": -0.7324852333505092, - "c5": 20.087488107187795, - "c6": -18.23880091913041, - "c7": -5.34772908618255 + "points": { + "c1": -9.124837986297646, + "c2": 6.658277368332513, + "c3": 1.6691949904670942, + "c4": -2.8979574729153583, + "c5": -1.5051753579702378, + "c6": 0.5336494776261986, + "c7": 23.730117682816847 }, - "vertexSeeds": { - "c1": 7.1693053741441854, - "c2": 5.401510252203833, - "c3": 5.460612648056576, - "c4": 8.26813574456214, - "c5": 5.782617133095044, - "c6": 8.159302394548261, - "c7": 7.193141989262179 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.0374479889043, + "c3": 10.864539990753585, + "c4": 8.691631992602865, + "c5": 6.51872399445215, + "c6": 4.345815996301434, + "c7": 2.1729079981507153 }, "rgb": [86, 146, 138] }, @@ -298086,23 +298086,23 @@ "year": 1789, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": -1.9087916924872275, - "c2": -44.27018211178569, - "c3": -1.5656568447794612, - "c4": 30.704780535531384, - "c5": 39.44575146753914, - "c6": -46.39371641455345, - "c7": -41.00430786775627 + "points": { + "c1": -12.788880094742765, + "c2": 41.15214232222729, + "c3": 5.60283203510086, + "c4": 17.033991293843656, + "c5": -28.139807335224166, + "c6": -21.423974830738242, + "c7": -37.905783362587755 }, - "vertexSeeds": { - "c1": 8.619507739624005, - "c2": 8.634576566320261, - "c3": 8.933203114202504, - "c4": 9.097863959678559, - "c5": 8.861533582233017, - "c6": 8.44824256628622, - "c7": 8.833128137951537 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065178, + "c3": 10.95700416088766, + "c4": 8.76560332871012, + "c5": 6.5742024965326, + "c6": 4.38280166435506, + "c7": 2.1914008321775196 }, "rgb": [222, 0, 59] }, @@ -298113,23 +298113,23 @@ "year": 1788, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 5.913159881474421, - "c2": 11.704896884455835, - "c3": -12.835533190486851, - "c4": 14.879194995706705, - "c5": 23.327409261895113, - "c6": 9.339792650204537, - "c7": 1.516386579688767 + "points": { + "c1": 3.1237741079788606, + "c2": 17.210482631156673, + "c3": 8.80839990311192, + "c4": 23.41768922435479, + "c5": 18.533502952809826, + "c6": -8.829369142744259, + "c7": -8.383758147166166 }, - "vertexSeeds": { - "c1": 14.455072655007415, - "c2": 14.313496146437501, - "c3": 13.950650319661394, - "c4": 14.83112138528035, - "c5": 13.9496271505624, - "c6": 14.857412424556617, - "c7": 14.745432624356226 + "offsets": { + "c1": 24.951456310679614, + "c2": 21.38696255201108, + "c3": 17.822468793342587, + "c4": 14.257975034674054, + "c5": 10.69348127600556, + "c6": 7.128987517337027, + "c7": 3.564493758668535 }, "rgb": [58, 15, 49] }, @@ -298140,23 +298140,23 @@ "year": 1788, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 5.342473748844046, - "c2": 22.731077048439868, - "c3": -11.69926171740575, - "c4": -12.572874359324352, - "c5": -0.07174676142657788, - "c6": -17.10749587002939, - "c7": -19.849979194686973 + "points": { + "c1": -16.095097536764968, + "c2": 11.685981344485864, + "c3": -8.074514440768024, + "c4": -18.299435862196994, + "c5": 3.746228542226877, + "c6": 21.755229664462195, + "c7": 1.9358771763401244 }, - "vertexSeeds": { - "c1": 3.790618011032219, - "c2": 3.775101125766227, - "c3": 3.78151563095165, - "c4": 3.8199119748621007, - "c5": 3.7973804848695587, - "c6": 4.0122291667013235, - "c7": 3.8210701451988576 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -298167,23 +298167,23 @@ "year": 1789, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 15.198442164909125, - "c2": 3.820857157922461, - "c3": -24.45118984951002, - "c4": 22.678455513343287, - "c5": 32.28476148879858, - "c6": -23.23455137330143, - "c7": 17.090769957164248 + "points": { + "c1": 29.43424692629867, + "c2": 26.826153579587867, + "c3": 18.759890499189915, + "c4": 25.45354220710668, + "c5": 37.013193407480614, + "c6": 3.975477717566527, + "c7": -4.890421774487059 }, - "vertexSeeds": { - "c1": 5.802841914195423, - "c2": 5.617349059492474, - "c3": 5.772278655440195, - "c4": 5.505169522367887, - "c5": 5.583190524004114, - "c6": 5.653271301434393, - "c7": 5.722525734577346 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256582, + "c4": 5.658807212205262, + "c5": 4.2441054091539625, + "c6": 2.829403606102642, + "c7": 1.414701803051321 }, "rgb": [58, 15, 49] }, @@ -298194,23 +298194,23 @@ "year": 1789, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": -12.836268628262584, - "c2": -27.918410974741352, - "c3": -23.958584753846505, - "c4": -42.79619604668267, - "c5": -8.874738268084592, - "c6": -37.74876460161395, - "c7": 21.749825441651794 + "points": { + "c1": -28.370355895811404, + "c2": -21.747449188909275, + "c3": 30.548392351283738, + "c4": 39.03003434039556, + "c5": 13.882042290452333, + "c6": -1.3140220488544472, + "c7": 14.4883105350874 }, - "vertexSeeds": { - "c1": 6.304595072157754, - "c2": 6.7139890989540625, - "c3": 6.242874511193146, - "c4": 6.561388519597713, - "c5": 6.821214260817041, - "c6": 6.5188189988872995, - "c7": 6.316857360830638 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238564, + "c3": 8.183079056865456, + "c4": 6.546463245492369, + "c5": 4.909847434119282, + "c6": 3.2732316227461946, + "c7": 1.636615811373087 }, "rgb": [86, 146, 138] }, @@ -298221,23 +298221,23 @@ "year": 1788, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 19.802589470056624, - "c2": -12.977329755269668, - "c3": 11.270637283653876, - "c4": -30.060406350332727, - "c5": 25.36259610963949, - "c6": 23.707811013583438, - "c7": -16.703556576603116 + "points": { + "c1": -12.55815525068293, + "c2": 22.39524401529976, + "c3": 0.47437993563062264, + "c4": -11.245748818806337, + "c5": 26.309522390117756, + "c6": -13.7866336233758, + "c7": 21.411740131467795 }, - "vertexSeeds": { - "c1": 1.233606397678255, - "c2": 1.1787663914348214, - "c3": 1.195235841466614, - "c4": 1.237857004882013, - "c5": 1.2162006066748048, - "c6": 1.1747537473871412, - "c7": 1.2336403247069117 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.803051317614423, + "c3": 1.5025427646786866, + "c4": 1.2020342117429503, + "c5": 0.9015256588072115, + "c6": 0.6010171058714752, + "c7": 0.30050855293573886 }, "rgb": [86, 146, 138] }, @@ -298248,23 +298248,23 @@ "year": 1788, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -21.533732738860834, - "c2": 24.36872779139575, - "c3": -8.237844687034602, - "c4": 26.849914210360566, - "c5": -15.0687965943102, - "c6": 24.925253014290924, - "c7": -17.095230285930125 + "points": { + "c1": -20.135522206026177, + "c2": -33.09436659857814, + "c3": -16.26978790269505, + "c4": 1.9690690006556864, + "c5": 19.26716048095075, + "c6": 14.557222942478248, + "c7": -4.4613811444596045 }, - "vertexSeeds": { - "c1": 6.348247347530714, - "c2": 5.689509211579136, - "c3": 5.864863660560265, - "c4": 6.547505668796378, - "c5": 5.927004157442995, - "c6": 6.813554858726436, - "c7": 5.8574723537244004 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [86, 146, 138] }, @@ -298275,23 +298275,23 @@ "year": 1789, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 29.942354495358387, - "c2": 37.92662863764741, - "c3": -14.24775763100639, - "c4": 21.47744367358853, - "c5": -30.744549509284447, - "c6": 5.388418978080701, - "c7": -30.955354887438396 + "points": { + "c1": -35.95017386085783, + "c2": -17.79309086929565, + "c3": 13.964083906730544, + "c4": 7.369019925436987, + "c5": -25.323933782977583, + "c6": -1.5153625823985948, + "c7": -14.57007121508677 }, - "vertexSeeds": { - "c1": 2.419874308299571, - "c2": 2.350316304303685, - "c3": 2.2601682668618874, - "c4": 2.3584435718577743, - "c5": 2.3750570689782906, - "c6": 2.2807082290541847, - "c7": 2.390859653361972 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081833, + "c3": 2.9357374017568203, + "c4": 2.348589921405452, + "c5": 1.761442441054089, + "c6": 1.174294960702726, + "c7": 0.587147480351363 }, "rgb": [86, 146, 138] }, @@ -298302,23 +298302,23 @@ "year": 1789, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": -35.36744776535094, - "c2": -31.334131330486812, - "c3": -8.339933381044418, - "c4": 3.3488557222385467, - "c5": 18.702266217940206, - "c6": -42.91813440841369, - "c7": 10.715102998164447 + "points": { + "c1": -27.209869576724994, + "c2": 41.61249035932286, + "c3": -39.60111019254764, + "c4": -37.11821318475066, + "c5": -32.76500733978551, + "c6": 16.17603479654123, + "c7": 33.615322853774316 }, - "vertexSeeds": { - "c1": 6.443530215495959, - "c2": 6.337431961254911, - "c3": 6.736319571179647, - "c4": 6.502869694831869, - "c5": 7.284547941949193, - "c6": 7.7488902511666495, - "c7": 7.054778445178242 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984745, + "c3": 10.910772075820617, + "c4": 8.728617660656495, + "c5": 6.546463245492372, + "c6": 4.36430883032825, + "c7": 2.182154415164122 }, "rgb": [86, 146, 138] }, @@ -298329,23 +298329,23 @@ "year": 1789, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 46.32405739809994, - "c2": -34.62113531951154, - "c3": 48.931863400527845, - "c4": 22.37896597511846, - "c5": -4.073096535633269, - "c6": 10.276787267360696, - "c7": 45.507902118504774 + "points": { + "c1": 30.92875215876944, + "c2": -34.67790310074727, + "c3": 25.01901967754398, + "c4": -1.7936311473335422, + "c5": 43.949846725620986, + "c6": 4.8115831345673, + "c7": -0.06801498431691755 }, - "vertexSeeds": { - "c1": 2.3093413988858424, - "c2": 1.9652437705641883, - "c3": 2.6818929987318576, - "c4": 2.7076565747760775, - "c5": 2.7606740052433487, - "c6": 2.604715864518712, - "c7": 2.150505935031111 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952842, + "c3": 3.421174294960704, + "c4": 2.7369394359685626, + "c5": 2.052704576976421, + "c6": 1.3684697179842813, + "c7": 0.6842348589921414 }, "rgb": [77, 76, 132] }, @@ -298356,23 +298356,23 @@ "year": 1788, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 15.332825316437344, - "c2": -16.995243064607468, - "c3": 20.63080366929711, - "c4": 14.973290362947154, - "c5": 12.46087752686811, - "c6": -9.449397757524267, - "c7": 8.41191278511419 + "points": { + "c1": 29.054643336279455, + "c2": 8.04213549381528, + "c3": -18.846514614558455, + "c4": 11.086451509980833, + "c5": 20.53844063746014, + "c6": -9.875488728175348, + "c7": 2.2277005586942735 }, - "vertexSeeds": { - "c1": 11.203616310603282, - "c2": 11.525350828838581, - "c3": 11.030548379021146, - "c4": 11.504390293428797, - "c5": 11.056936947808428, - "c6": 11.184234080207935, - "c7": 11.765811717953952 + "offsets": { + "c1": 19.967637540453072, + "c2": 17.115117891816936, + "c3": 14.26259824318076, + "c4": 11.410078594544624, + "c5": 8.557558945908449, + "c6": 5.705039297272312, + "c7": 2.8525196486361377 }, "rgb": [222, 0, 59] }, @@ -298383,23 +298383,23 @@ "year": 1789, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 30.91331108360326, - "c2": -11.786010181306413, - "c3": 12.765915931573772, - "c4": 31.006584406180664, - "c5": -4.26608589365328, - "c6": -32.56935740794483, - "c7": -31.374599275095928 + "points": { + "c1": 14.918033717488655, + "c2": 13.347849074835239, + "c3": 17.462598405029013, + "c4": -8.31424490088731, + "c5": 19.134504800201448, + "c6": 6.264501716131342, + "c7": 7.541107908758967 }, - "vertexSeeds": { - "c1": 2.136395233783971, - "c2": 2.090679733147295, - "c3": 2.0443142132676884, - "c4": 2.2446451938249954, - "c5": 2.0500398258125165, - "c6": 2.0230563310509058, - "c7": 2.1290813433929734 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746188, + "c3": 2.727693018955155, + "c4": 2.182154415164123, + "c5": 1.636615811373094, + "c6": 1.091077207582065, + "c7": 0.5455386037910325 }, "rgb": [86, 146, 138] }, @@ -298410,23 +298410,23 @@ "year": 1789, "resistanceReported": false, "duration": 37843200, - "curveSeeds": { - "c1": 14.650473426584561, - "c2": 19.133433333769823, - "c3": 42.41044579408233, - "c4": 14.233512670798696, - "c5": -28.908653103546246, - "c6": 33.23332894512297, - "c7": 38.06589946906963 + "points": { + "c1": -46.596486640428644, + "c2": 31.45447924794552, + "c3": -34.88684028082568, + "c4": -34.16928456848423, + "c5": 16.30846698586489, + "c6": 34.957211171883166, + "c7": -51.655799313553445 }, - "vertexSeeds": { - "c1": 2.1268499709119935, - "c2": 2.8683089296580904, - "c3": 2.865962039167692, - "c4": 2.1625304100629172, - "c5": 2.884643451484504, - "c6": 2.4982136114156757, - "c7": 2.927270764335181 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234397, + "c3": 3.5829865926953315, + "c4": 2.866389274156265, + "c5": 2.149791955617199, + "c6": 1.4331946370781332, + "c7": 0.7165973185390659 }, "rgb": [58, 15, 49] }, @@ -298437,23 +298437,23 @@ "year": 1788, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 12.964584640323746, - "c2": 23.39138735876595, - "c3": 8.480099950239673, - "c4": -24.756325450591554, - "c5": -0.3341388132255467, - "c6": -22.84371837578669, - "c7": 5.520297303758323 + "points": { + "c1": 2.496242518031927, + "c2": 8.263128265358581, + "c3": 11.113696269620164, + "c4": -14.874128235373668, + "c5": 11.852595507765145, + "c6": 6.468949355471338, + "c7": 31.415140437993287 }, - "vertexSeeds": { - "c1": 7.1604600966752034, - "c2": 7.6570701665473715, - "c3": 7.25224689685834, - "c4": 7.1598502857132775, - "c5": 7.595854665140367, - "c6": 7.109955405949895, - "c7": 7.16928419345171 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968097, + "c3": 9.177068885806744, + "c4": 7.341655108645391, + "c5": 5.50624133148406, + "c6": 3.670827554322706, + "c7": 1.835413777161353 }, "rgb": [58, 15, 49] }, @@ -298464,23 +298464,23 @@ "year": 1789, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 32.695096733416435, - "c2": 25.5946603949105, - "c3": -10.18526729908341, - "c4": 3.5627320538981877, - "c5": -11.279488669314574, - "c6": -31.997757191689594, - "c7": 6.754147486378663 + "points": { + "c1": 37.90665255366545, + "c2": 25.01496197222356, + "c3": 26.276280131263903, + "c4": -12.714970520449786, + "c5": -5.775921408576444, + "c6": -5.2562216067831855, + "c7": -7.414823221251858 }, - "vertexSeeds": { - "c1": 3.9857607059557494, - "c2": 3.8143443293027093, - "c3": 3.831429587425596, - "c4": 3.9154741398196276, - "c5": 4.041567041118662, - "c6": 3.8507184785495943, - "c7": 4.104697146930346 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567262, + "c3": 4.923717059639391, + "c4": 3.9389736477115083, + "c5": 2.954230235783637, + "c6": 1.9694868238557541, + "c7": 0.9847434119278826 }, "rgb": [86, 146, 138] }, @@ -298491,23 +298491,23 @@ "year": 1789, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 30.281593412603733, - "c2": -45.00914035418279, - "c3": 5.147442531558738, - "c4": -10.973694779153824, - "c5": 10.922303758271333, - "c6": -18.90982546061573, - "c7": -5.0768514171072 + "points": { + "c1": -11.93937585532403, + "c2": 45.61304371490875, + "c3": 14.08478314624687, + "c4": -11.121669975666585, + "c5": -11.077087156388622, + "c6": 37.25962845480462, + "c7": 16.095773088574028 }, - "vertexSeeds": { - "c1": 6.079157713519383, - "c2": 6.026039630444007, - "c3": 5.854830470640615, - "c4": 6.04430207172666, - "c5": 6.073067240957736, - "c6": 5.830833421886593, - "c7": 6.145751949954512 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [77, 76, 132] }, @@ -298518,23 +298518,23 @@ "year": 1788, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -3.397271385178488, - "c2": -0.7254369552858186, - "c3": 17.11487697386583, - "c4": -21.234943934730275, - "c5": 14.339996307897412, - "c6": 19.958974225349838, - "c7": 19.969475437937515 + "points": { + "c1": -14.597329289635407, + "c2": 12.62842661887051, + "c3": -16.529064124159127, + "c4": -23.148797865155615, + "c5": -3.4044411650448723, + "c6": -17.44166016618771, + "c7": 22.16844526514551 }, - "vertexSeeds": { - "c1": 6.634143809616561, - "c2": 6.801275894148062, - "c3": 6.3980281490402655, - "c4": 6.647793971922278, - "c5": 6.768782050232428, - "c6": 6.647977923245746, - "c7": 6.899621156666695 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -298545,23 +298545,23 @@ "year": 1789, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -19.67453703198641, - "c2": 30.906224257635017, - "c3": -11.206527443994101, - "c4": 24.550905996262493, - "c5": -19.49598289574373, - "c6": -5.611227841836147, - "c7": 30.22947486009148 + "points": { + "c1": 4.35316801262676, + "c2": 14.306257849960282, + "c3": -1.4058752356897344, + "c4": 29.671979190751927, + "c5": -19.764409185620345, + "c6": 25.375398422848853, + "c7": -19.920673420753815 }, - "vertexSeeds": { - "c1": 4.068185848260674, - "c2": 3.925037321526429, - "c3": 4.188725887466452, - "c4": 2.691473675067815, - "c5": 3.2527270083691153, - "c6": 3.5418667701281548, - "c7": 4.451611368283739 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379564, + "c4": 4.623208506703652, + "c5": 3.4674063800277377, + "c6": 2.311604253351826, + "c7": 1.155802126675913 }, "rgb": [238, 201, 159] }, @@ -298572,23 +298572,23 @@ "year": 1789, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": -6.959212149151327, - "c2": -22.34096342243198, - "c3": -26.10327705628745, - "c4": 35.31402694619297, - "c5": 0.9514694514021329, - "c6": -20.525446167527058, - "c7": 0.4292010432955635 + "points": { + "c1": -0.12461610723287464, + "c2": 41.25860855493177, + "c3": -10.825971513513856, + "c4": -32.961578525739704, + "c5": -44.34056820111104, + "c6": 28.015921035024675, + "c7": -45.0751358326724 }, - "vertexSeeds": { - "c1": 4.659704134819894, - "c2": 4.03826167864837, - "c3": 4.8556365791868314, - "c4": 5.095463968162163, - "c5": 4.147574178352255, - "c6": 4.38517727936367, - "c7": 4.632256688773413 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986134, + "c3": 6.888580674988442, + "c4": 5.510864539990751, + "c5": 4.133148404993065, + "c6": 2.7554322699953766, + "c7": 1.3777161349976883 }, "rgb": [58, 15, 49] }, @@ -298599,23 +298599,23 @@ "year": 1789, "resistanceReported": false, "duration": 49852800, - "curveSeeds": { - "c1": -40.59095123872697, - "c2": -31.10061604361219, - "c3": -51.91768975863197, - "c4": 35.705822908800684, - "c5": 58.24864860870116, - "c6": -45.97102608325632, - "c7": -17.196766417050675 + "points": { + "c1": -60.223926132689684, + "c2": -1.7775608142869004, + "c3": -51.697980240320945, + "c4": -16.545111571488384, + "c5": -14.469240459491502, + "c6": -30.014787849240037, + "c7": -4.821433820043332 }, - "vertexSeeds": { - "c1": 5.898700756825686, - "c2": 5.98735704956417, - "c3": 5.859877850900838, - "c4": 5.789164888379866, - "c5": 5.5860733201615025, - "c6": 5.6700542566178, - "c7": 5.802489805680281 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629677, + "c3": 7.258437355524728, + "c4": 5.8067498844198004, + "c5": 4.35506241331485, + "c6": 2.9033749422099002, + "c7": 1.4516874711049501 }, "rgb": [222, 0, 59] }, @@ -298626,23 +298626,23 @@ "year": 1789, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 29.252287462546768, - "c2": -18.36814233903781, - "c3": -2.4631456711549333, - "c4": -5.95625362815295, - "c5": 33.05813762045764, - "c6": -24.713867843712443, - "c7": -14.70407569946002 + "points": { + "c1": 24.531284167897873, + "c2": -7.662143164553594, + "c3": 21.300328167925187, + "c4": 22.32076257430593, + "c5": -4.2810670470407, + "c6": -5.62622151940802, + "c7": 17.692513698425934 }, - "vertexSeeds": { - "c1": 1.8231807194943332, - "c2": 1.7077795916657341, - "c3": 1.7084561476821771, - "c4": 1.8126039276117312, - "c5": 1.7394559204464302, - "c6": 1.705832560946736, - "c7": 1.8713602709295445 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981969, + "c3": 2.2884882108183078, + "c4": 1.8307905686546462, + "c5": 1.3730929264909846, + "c6": 0.9153952843273231, + "c7": 0.45769764216366154 }, "rgb": [77, 76, 132] }, @@ -298653,23 +298653,23 @@ "year": 1789, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -11.35718060636557, - "c2": -7.500523214525785, - "c3": -32.57751424775502, - "c4": -15.765032848843962, - "c5": -28.04003751455355, - "c6": 11.770220659960813, - "c7": -18.937814759693946 + "points": { + "c1": 26.70989503309834, + "c2": -33.11945307047414, + "c3": -23.803177042517362, + "c4": 33.64936449350789, + "c5": -4.17840415015354, + "c6": -19.61322265573025, + "c7": 1.5713978938225353 }, - "vertexSeeds": { - "c1": 7.410463647768189, - "c2": 7.008046703266636, - "c3": 6.843033213637131, - "c4": 6.830667408039526, - "c5": 7.22615716607543, - "c6": 7.067563334194735, - "c7": 7.115562735216273 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404999, + "c3": 8.853444290337485, + "c4": 7.082755432269992, + "c5": 5.3120665742024995, + "c6": 3.541377716135007, + "c7": 1.7706888580674924 }, "rgb": [77, 76, 132] }, @@ -298680,23 +298680,23 @@ "year": 1789, "resistanceReported": false, "duration": 46656000, - "curveSeeds": { - "c1": -40.44959230294552, - "c2": 21.010338083164783, - "c3": 24.467792148232647, - "c4": -44.85770979318054, - "c5": 49.12772635745327, - "c6": -3.3760768630881373, - "c7": 46.436949779808074 + "points": { + "c1": -43.30597320880463, + "c2": -8.04289805886161, + "c3": -8.362561301351569, + "c4": -25.429627177462258, + "c5": -32.613317839524015, + "c6": -48.146908039520305, + "c7": -17.85966008901527 }, - "vertexSeeds": { - "c1": 3.364295151253867, - "c2": 3.561095188739737, - "c3": 3.4693267275745505, - "c4": 3.528122248816861, - "c5": 3.453284305088076, - "c6": 3.3304720613829915, - "c7": 3.3993188931807903 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481279, + "c3": 4.299583911234392, + "c4": 3.439667128987516, + "c5": 2.5797503467406395, + "c6": 1.7198335644937526, + "c7": 0.8599167822468763 }, "rgb": [86, 146, 138] }, @@ -298707,23 +298707,23 @@ "year": 1789, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 0.010273323584065963, - "c2": -11.251406326082282, - "c3": 8.053451720338984, - "c4": 36.24406746304136, - "c5": -7.161421008672193, - "c6": -40.082626373237694, - "c7": -32.79443267103119 + "points": { + "c1": 32.39607327651321, + "c2": -13.62106953233031, + "c3": 11.807748739032405, + "c4": 32.415592060214735, + "c5": -6.941420011677067, + "c6": -15.477474903236718, + "c7": 36.56064529275861 }, - "vertexSeeds": { - "c1": 5.377821665525874, - "c2": 5.491833512764057, - "c3": 5.762204421849519, - "c4": 5.709661836372801, - "c5": 5.489259706390851, - "c6": 5.697193901032909, - "c7": 5.509287637887838 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106801, + "c3": 6.957928802588987, + "c4": 5.5663430420711935, + "c5": 4.174757281553401, + "c6": 2.7831715210356083, + "c7": 1.391585760517793 }, "rgb": [238, 201, 159] }, @@ -298734,23 +298734,23 @@ "year": 1788, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": -17.31686125545142, - "c2": 2.8574180459733363, - "c3": 18.6863460257035, - "c4": 0.7092179408496548, - "c5": -8.17436555952484, - "c6": 10.629249371158362, - "c7": -15.005039336861582 + "points": { + "c1": 14.570786818293598, + "c2": 2.239751530141646, + "c3": 18.21128900942925, + "c4": -19.238130173407935, + "c5": 0.6165242425630062, + "c6": -7.281563813370681, + "c7": 13.365200780849221 }, - "vertexSeeds": { - "c1": 9.221391410527003, - "c2": 10.969252153590183, - "c3": 10.64695770818371, - "c4": 10.026936392067638, - "c5": 10.912337302928695, - "c6": 10.477163413279264, - "c7": 9.750844984318356 + "offsets": { + "c1": 19.48220064724919, + "c2": 16.699029126213592, + "c3": 13.915857605177994, + "c4": 11.132686084142394, + "c5": 8.349514563106796, + "c6": 5.566343042071197, + "c7": 2.7831715210355985 }, "rgb": [77, 76, 132] }, @@ -298761,23 +298761,23 @@ "year": 1788, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 19.56415708045423, - "c2": 22.58537894865514, - "c3": 15.051514431516736, - "c4": -23.0679351380416, - "c5": 16.670070583869197, - "c6": -3.7433823918333076, - "c7": -10.49890293937678 + "points": { + "c1": 6.252966520633024, + "c2": -12.400638531304566, + "c3": -10.467456314599918, + "c4": -14.83563563101387, + "c5": 25.12488469662466, + "c6": -22.89700990783627, + "c7": -14.34080883658989 }, - "vertexSeeds": { - "c1": 4.544971447946055, - "c2": 4.993582425195813, - "c3": 4.230905666749453, - "c4": 4.581081906277959, - "c5": 4.93621749470139, - "c6": 4.312892908499192, - "c7": 4.883748612676986 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739251, + "c3": 6.171983356449377, + "c4": 4.937586685159501, + "c5": 3.7031900138696257, + "c6": 2.4687933425797506, + "c7": 1.2343966712898753 }, "rgb": [77, 76, 132] }, @@ -298788,23 +298788,23 @@ "year": 1789, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 31.75013607988032, - "c2": -15.240728250366992, - "c3": 15.504980115308712, - "c4": -17.13102421538929, - "c5": 29.936029678161674, - "c6": -4.329349635780254, - "c7": 39.45470439675127 + "points": { + "c1": -44.16467426739214, + "c2": -38.66646190867553, + "c3": 20.065277421104852, + "c4": -46.65179546345184, + "c5": 21.65478273845258, + "c6": 27.015320091053795, + "c7": -40.58701976915739 }, - "vertexSeeds": { - "c1": 4.734752830964053, - "c2": 5.125309520875686, - "c3": 5.039742625666628, - "c4": 4.938311104339479, - "c5": 4.910522258776639, - "c6": 4.935710432861893, - "c7": 4.842445975501315 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658798, + "c3": 6.1257512713823425, + "c4": 4.900601017105876, + "c5": 3.675450762829399, + "c6": 2.4503005085529326, + "c7": 1.2251502542764663 }, "rgb": [238, 201, 159] }, @@ -298815,23 +298815,23 @@ "year": 1789, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 23.922493559932704, - "c2": -18.702184402410097, - "c3": 31.28792655028387, - "c4": -26.07799218354356, - "c5": 9.351251640415306, - "c6": 9.206013569868468, - "c7": 1.456025033990926 + "points": { + "c1": 10.105410972862643, + "c2": 13.260948433121605, + "c3": -26.765600009841034, + "c4": -29.612115012745136, + "c5": 23.167345392757824, + "c6": 15.131542612946312, + "c7": -25.807588257382584 }, - "vertexSeeds": { - "c1": 6.527676503797414, - "c2": 6.497312817360779, - "c3": 6.412380985118286, - "c4": 6.469249716436387, - "c5": 6.487044642776819, - "c6": 6.408096464839547, - "c7": 6.66788711976032 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066581, + "c4": 6.65742024965327, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624133119 }, "rgb": [77, 76, 132] }, @@ -298842,23 +298842,23 @@ "year": 1788, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 25.962622353558167, - "c2": 27.49666643318828, - "c3": 27.113101057234957, - "c4": 24.60532313666728, - "c5": -2.8463983007811002, - "c6": -21.20580031365342, - "c7": -6.193764145048615 + "points": { + "c1": -25.240431007055882, + "c2": 24.340554675561805, + "c3": -10.34629559332636, + "c4": -6.969551636755021, + "c5": 9.596268030131235, + "c6": -7.2329757020318475, + "c7": -29.903380913690995 }, - "vertexSeeds": { - "c1": 12.657857363180554, - "c2": 12.626592969633085, - "c3": 11.899555801202547, - "c4": 12.382946832133312, - "c5": 12.408759488914315, - "c6": 12.739780880361547, - "c7": 11.868846630763048 + "offsets": { + "c1": 21.262135922330096, + "c2": 18.224687933425784, + "c3": 15.187239944521517, + "c4": 12.149791955617204, + "c5": 9.112343966712892, + "c6": 6.07489597780858, + "c7": 3.037447988904312 }, "rgb": [238, 201, 159] }, @@ -298869,23 +298869,23 @@ "year": 1790, "resistanceReported": false, "duration": 52358400, - "curveSeeds": { - "c1": 45.37478345910705, - "c2": 7.396360012396656, - "c3": 25.76969757980129, - "c4": -20.14578851439171, - "c5": -4.615932822635045, - "c6": 20.084788031939496, - "c7": 12.392070737897939 + "points": { + "c1": 51.2789649785435, + "c2": -62.21563870428558, + "c3": 55.16014048670107, + "c4": -33.984943061979926, + "c5": 5.259899938193755, + "c6": 59.017058556893176, + "c7": -41.30009133374929 }, - "vertexSeeds": { - "c1": 4.662688855488605, - "c2": 4.444324495288021, - "c3": 4.544252503410306, - "c4": 4.490023558682786, - "c5": 4.494056086343512, - "c6": 4.677644590992953, - "c7": 4.27515175633463 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733705, + "c3": 5.594082293111422, + "c4": 4.475265834489139, + "c5": 3.356449375866857, + "c6": 2.237632917244565, + "c7": 1.1188164586222824 }, "rgb": [58, 15, 49] }, @@ -298896,23 +298896,23 @@ "year": 1789, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 19.619229377821995, - "c2": 10.033521827519593, - "c3": 17.59872056666265, - "c4": 23.099714160630484, - "c5": -27.502779123968704, - "c6": 16.476386751210086, - "c7": -9.464074845120088 + "points": { + "c1": -24.768937393485782, + "c2": -19.623215143787863, + "c3": 23.884538126240997, + "c4": 35.74720214069079, + "c5": 38.09180817546512, + "c6": 22.383148818022093, + "c7": 23.134799156194703 }, - "vertexSeeds": { - "c1": 3.959514242712872, - "c2": 3.8677606143167846, - "c3": 4.147278740528651, - "c4": 3.9502807988622544, - "c5": 3.8430369304854404, - "c6": 3.8852039558089415, - "c7": 4.090759073668488 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647707, + "c3": 4.969949144706428, + "c4": 3.9759593157651376, + "c5": 2.9819694868238593, + "c6": 1.9879796578825688, + "c7": 0.9939898289412901 }, "rgb": [86, 146, 138] }, @@ -298923,23 +298923,23 @@ "year": 1789, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 5.820135120142638, - "c2": -2.142131654868301, - "c3": 9.854478620395255, - "c4": 21.729820386738012, - "c5": 36.20114223104686, - "c6": 19.88716889924592, - "c7": 31.442421007172285 + "points": { + "c1": 17.724012744596763, + "c2": 11.838094528025131, + "c3": 13.682914033078816, + "c4": 46.12650154768677, + "c5": 46.02120471730922, + "c6": -6.553521510630986, + "c7": -8.080250184568243 }, - "vertexSeeds": { - "c1": 5.551307110042396, - "c2": 5.215988353077516, - "c3": 5.502916590300424, - "c4": 5.532359523846892, - "c5": 5.186937970901946, - "c6": 5.613008083638153, - "c7": 5.206271162194053 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704575, + "c3": 6.7267683772538085, + "c4": 5.381414701803043, + "c5": 4.036061026352297, + "c6": 2.690707350901532, + "c7": 1.345353675450766 }, "rgb": [238, 201, 159] }, @@ -298950,23 +298950,23 @@ "year": 1788, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 2.379339250281891, - "c2": -2.5344723383524723, - "c3": 3.7627922508641056, - "c4": 0.15952999345567065, - "c5": -3.6945197756611954, - "c6": 4.185140895217362, - "c7": 14.964445171829016 + "points": { + "c1": -0.7958770297544007, + "c2": -4.451626313169005, + "c3": 7.882034471394341, + "c4": 9.798015603955996, + "c5": -12.309921769394123, + "c6": -10.530438378585103, + "c7": -4.300016204574824 }, - "vertexSeeds": { - "c1": 4.82796835871579, - "c2": 4.909508898126227, - "c3": 5.064509316654708, - "c4": 4.8370683881415095, - "c5": 4.670775237785838, - "c6": 4.966169304770116, - "c7": 5.039415426390329 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658801, + "c3": 6.125751271382328, + "c4": 4.900601017105874, + "c5": 3.6754507628294006, + "c6": 2.4503005085529272, + "c7": 1.2251502542764636 }, "rgb": [222, 0, 59] }, @@ -298977,23 +298977,23 @@ "year": 1789, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -12.992464129598552, - "c2": -19.41586547575343, - "c3": 24.865626975538724, - "c4": -22.011624871609452, - "c5": 34.38110675465105, - "c6": 24.48335888096947, - "c7": -5.899002360314974 + "points": { + "c1": -13.642607614174889, + "c2": 12.524317161644255, + "c3": -28.60272102761529, + "c4": 42.29434020251947, + "c5": -27.25595614168227, + "c6": -37.004934942677174, + "c7": -38.302775574676446 }, - "vertexSeeds": { - "c1": 2.570443155762184, - "c2": 2.6176768698376223, - "c3": 2.5478098511851304, - "c4": 2.6466702005832805, - "c5": 2.61670531649379, - "c6": 2.575758503006119, - "c7": 2.6905462744863287 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.938973647711517, + "c3": 3.2824780397595914, + "c4": 2.6259824318076785, + "c5": 1.9694868238557521, + "c6": 1.3129912159038393, + "c7": 0.6564956079519261 }, "rgb": [86, 146, 138] }, @@ -299004,23 +299004,23 @@ "year": 1789, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 17.882303172555808, - "c2": -0.008364088583029172, - "c3": -20.05155609264069, - "c4": 35.76168259768818, - "c5": 38.367986621152866, - "c6": -35.22350239641293, - "c7": -1.9456790160632451 + "points": { + "c1": -18.69808049166335, + "c2": 43.38087756090653, + "c3": -23.887567996457754, + "c4": -18.91398148210523, + "c5": -15.434653895945619, + "c6": -2.589701198247937, + "c7": 17.467442610782633 }, - "vertexSeeds": { - "c1": 6.271672369579337, - "c2": 6.6542914409714635, - "c3": 6.3788483361693, - "c4": 6.324090852695729, - "c5": 6.646778030604828, - "c6": 6.320566530281854, - "c7": 6.726194772079939 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077662, + "c3": 8.090614886731395, + "c4": 6.472491909385107, + "c5": 4.854368932038842, + "c6": 3.2362459546925537, + "c7": 1.6181229773462658 }, "rgb": [77, 76, 132] }, @@ -299031,23 +299031,23 @@ "year": 1790, "resistanceReported": false, "duration": 59961600, - "curveSeeds": { - "c1": 39.30690230239618, - "c2": -10.499632569747945, - "c3": 22.39364421667682, - "c4": 13.545765726815958, - "c5": -38.04203094402925, - "c6": -60.97020324161799, - "c7": -43.56228080820076 + "points": { + "c1": -18.04900116143814, + "c2": -27.23762489797428, + "c3": -41.18807416968348, + "c4": 4.296988873607049, + "c5": -28.239192473469004, + "c6": 75.94713316860295, + "c7": 36.234943128780586 }, - "vertexSeeds": { - "c1": 3.8894838656419837, - "c2": 4.067206391768319, - "c3": 3.3822805629658057, - "c4": 3.8557072862921298, - "c5": 3.6518101777922976, - "c6": 3.2967866932564145, - "c7": 2.969334565735341 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374019, + "c4": 4.068423485899214, + "c5": 3.051317614424413, + "c6": 2.034211742949609, + "c7": 1.0171058714748045 }, "rgb": [77, 76, 132] }, @@ -299058,23 +299058,23 @@ "year": 1789, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": -2.017595880416465, - "c2": 10.212184098848631, - "c3": 29.028511931213515, - "c4": -29.117605733666675, - "c5": -22.244951976992578, - "c6": 27.029827462912806, - "c7": -19.88459477949977 + "points": { + "c1": -45.35521415257916, + "c2": -45.98334296824695, + "c3": -13.015273468189214, + "c4": -0.3085303913158839, + "c5": 29.725475701251128, + "c6": -37.120412871578566, + "c7": -32.85366695004366 }, - "vertexSeeds": { - "c1": 6.783620373169253, - "c2": 7.416692859107015, - "c3": 6.9170175387463875, - "c4": 6.931255728201111, - "c5": 6.79845886100506, - "c6": 7.473412506288819, - "c7": 6.952844729696113 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088759, + "c3": 9.246417013407305, + "c4": 7.397133610725838, + "c5": 5.5478502080443866, + "c6": 3.698566805362919, + "c7": 1.8492834026814524 }, "rgb": [58, 15, 49] }, @@ -299085,23 +299085,23 @@ "year": 1788, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -7.2648330438580935, - "c2": 30.4051700477237, - "c3": -12.296752961773361, - "c4": 22.276529345833985, - "c5": 27.552601288624395, - "c6": 1.3391836265057933, - "c7": 0.13297659022346053 + "points": { + "c1": 25.175766768344147, + "c2": -11.863811202696205, + "c3": -23.612365684189342, + "c4": 7.712054118432604, + "c5": -12.676885648476215, + "c6": -31.904236675363038, + "c7": 8.318586186010734 }, - "vertexSeeds": { - "c1": 5.862465131547084, - "c2": 5.532063677985146, - "c3": 5.217589656361717, - "c4": 5.198162291891712, - "c5": 5.777248044355179, - "c6": 5.14543711305542, - "c7": 5.470559078761754 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307905, + "c3": 7.073509015256586, + "c4": 5.658807212205265, + "c5": 4.244105409153946, + "c6": 2.8294036061026264, + "c7": 1.4147018030513197 }, "rgb": [77, 76, 132] }, @@ -299112,23 +299112,23 @@ "year": 1789, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": 49.03371623964472, - "c2": -8.648899346252072, - "c3": 47.689080624099375, - "c4": -11.384569447438672, - "c5": 18.171428491924473, - "c6": -34.86797705705088, - "c7": -46.18670195777226 + "points": { + "c1": -27.642647164740037, + "c2": -6.629540503418369, + "c3": 51.603249143247865, + "c4": -31.901849282276498, + "c5": -46.60840874994772, + "c6": -24.232509548033555, + "c7": -19.735493935384753 }, - "vertexSeeds": { - "c1": 7.911191051823828, - "c2": 7.908253325921815, - "c3": 7.501524739722042, - "c4": 7.722030850414677, - "c5": 7.762220748953226, - "c6": 7.525676869010504, - "c7": 7.729048980231873 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450767, + "c3": 9.454461396208977, + "c4": 7.563569116967185, + "c5": 5.672676837725393, + "c6": 3.781784558483582, + "c7": 1.890892279241791 }, "rgb": [86, 146, 138] }, @@ -299139,23 +299139,23 @@ "year": 1788, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -4.9016790357454525, - "c2": -7.363940364123497, - "c3": 8.783357825992784, - "c4": 27.59329499057765, - "c5": -7.751866537885185, - "c6": -27.284052821146155, - "c7": -2.9115427093156185 + "points": { + "c1": 21.747457316999178, + "c2": 2.9134335590802785, + "c3": -9.993929305961707, + "c4": 2.946682538288922, + "c5": 14.324006617828541, + "c6": 25.406008799162638, + "c7": -12.470891619577145 }, - "vertexSeeds": { - "c1": 2.363480030283269, - "c2": 2.3386320236798803, - "c3": 2.5329211168334913, - "c4": 2.661617015275406, - "c5": 2.5380773628689606, - "c6": 2.6920346151974592, - "c7": 2.5832710084488726 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692556, + "c4": 2.5889967637540443, + "c5": 1.9417475728155322, + "c6": 1.2944983818770204, + "c7": 0.6472491909385085 }, "rgb": [86, 146, 138] }, @@ -299166,23 +299166,23 @@ "year": 1788, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -4.849675561386086, - "c2": 20.323437431405175, - "c3": 0.4612384223510446, - "c4": 7.160380452607477, - "c5": 23.122351586707474, - "c6": -5.957647492452043, - "c7": 6.665349266941746 + "points": { + "c1": 25.787312981668727, + "c2": 10.348879126032749, + "c3": -23.6315962264572, + "c4": -29.019021100199744, + "c5": 28.053521588897176, + "c6": 12.834030947767921, + "c7": 21.059343962810672 }, - "vertexSeeds": { - "c1": 5.360959979942876, - "c2": 5.082066560013474, - "c3": 5.156751375726782, - "c4": 5.251743920678468, - "c5": 5.129153104648035, - "c6": 5.262768164018134, - "c7": 5.191580735732185 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784564, + "c4": 5.122515025427656, + "c5": 3.8418862690707476, + "c6": 2.561257512713817, + "c7": 1.2806287563569085 }, "rgb": [86, 146, 138] }, @@ -299193,23 +299193,23 @@ "year": 1789, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -20.964343219572257, - "c2": 14.837672722123877, - "c3": 14.628288249026717, - "c4": -40.26705082116337, - "c5": 36.356553946880325, - "c6": 37.11845184409066, - "c7": -7.288836872626227 + "points": { + "c1": -2.9751249578582772, + "c2": -8.552292945398982, + "c3": 17.704273260514547, + "c4": 7.202840381095228, + "c5": -5.303089277131818, + "c6": 42.17604759535713, + "c7": -4.863614405446029 }, - "vertexSeeds": { - "c1": 7.881297926744883, - "c2": 7.7250231498289965, - "c3": 7.8661892552763675, - "c4": 7.7537146738960905, - "c5": 7.907341933820291, - "c6": 7.760331727163202, - "c7": 7.854821052330823 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410522, + "c3": 9.431345353675484, + "c4": 7.545076282940372, + "c5": 5.658807212205261, + "c6": 3.7725381414702235, + "c7": 1.8862690707351117 }, "rgb": [58, 15, 49] }, @@ -299220,23 +299220,23 @@ "year": 1789, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -19.843007247939273, - "c2": 7.743975937818405, - "c3": -9.54827106009737, - "c4": 13.58589115523663, - "c5": -5.337410866941681, - "c6": -37.288455641865994, - "c7": -28.684174371445323 + "points": { + "c1": -23.796855532485292, + "c2": -5.679304499720509, + "c3": 40.72714708598719, + "c4": -37.76985463860776, + "c5": 20.485181709715143, + "c6": 36.20873420023006, + "c7": 31.369682145929083 }, - "vertexSeeds": { - "c1": 7.320952396588973, - "c2": 7.476000863704474, - "c3": 7.277990696073426, - "c4": 7.501769098764686, - "c5": 7.597597523020183, - "c6": 7.055983554451646, - "c7": 7.268886160931417 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927868, + "c3": 9.153952843273235, + "c4": 7.323162274618579, + "c5": 5.4923717059639445, + "c6": 3.6615811373092897, + "c7": 1.830790568654655 }, "rgb": [77, 76, 132] }, @@ -299247,23 +299247,23 @@ "year": 1788, "resistanceReported": false, "duration": 8380800, - "curveSeeds": { - "c1": -18.22544470334505, - "c2": -3.2157912827519493, - "c3": -4.381861177321129, - "c4": 10.288070611903997, - "c5": -4.119140682165767, - "c6": -0.5524876405750305, - "c7": -18.907102624742457 + "points": { + "c1": 4.263185764880912, + "c2": 11.156820457720968, + "c3": -10.10548546587304, + "c4": -10.969437776262906, + "c5": -11.683716987192295, + "c6": 12.198816958901105, + "c7": 16.719101761846197 }, - "vertexSeeds": { - "c1": 10.546114614395432, - "c2": 8.982658466784716, - "c3": 8.856349715311522, - "c4": 8.553289456548958, - "c5": 9.916694038854152, - "c6": 9.299958785659115, - "c7": 8.210080054711367 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961165, + "c3": 12.621359223300969, + "c4": 10.097087378640772, + "c5": 7.572815533980583, + "c6": 5.048543689320386, + "c7": 2.52427184466019 }, "rgb": [238, 201, 159] }, @@ -299274,23 +299274,23 @@ "year": 1788, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 7.365325759925263, - "c2": -9.059245474526495, - "c3": -25.697576344237703, - "c4": -10.022053251538729, - "c5": -14.63417387941495, - "c6": -27.60871517482489, - "c7": 6.92295634477275 + "points": { + "c1": 25.095967436358436, + "c2": 16.175729435305342, + "c3": -9.785700822151615, + "c4": -16.058446911202836, + "c5": -19.605649843306473, + "c6": -23.778375187603462, + "c7": -20.423709385512197 }, - "vertexSeeds": { - "c1": 8.61089781779535, - "c2": 8.406716737035289, - "c3": 8.322420274613599, - "c4": 8.238983248094915, - "c5": 8.07245689451427, - "c6": 8.031849755589702, - "c7": 7.987798095138647 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019412, + "c3": 10.355987055016168, + "c4": 8.284789644012948, + "c5": 6.213592233009706, + "c6": 4.142394822006463, + "c7": 2.0711974110032427 }, "rgb": [238, 201, 159] }, @@ -299301,23 +299301,23 @@ "year": 1789, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 1.0569739327695586, - "c2": 25.403765880272395, - "c3": -8.900207327902653, - "c4": -25.708328525930796, - "c5": 15.28183915799184, - "c6": -14.83821556238091, - "c7": -20.03348488418586 + "points": { + "c1": 33.24524975797205, + "c2": 9.732390711058564, + "c3": -25.014859618603886, + "c4": 18.148953063496343, + "c5": 13.209850535930713, + "c6": -1.4579166501716827, + "c7": 6.389645441063159 }, - "vertexSeeds": { - "c1": 3.543331953339604, - "c2": 3.606834380185629, - "c3": 3.6293849798271602, - "c4": 3.405331492731835, - "c5": 3.648340630666965, - "c6": 3.4137106937202963, - "c7": 3.6490888875252305 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.39204808136847, + "c4": 3.513638465094776, + "c5": 2.635228848821082, + "c6": 1.756819232547388, + "c7": 0.878409616273694 }, "rgb": [238, 201, 159] }, @@ -299328,23 +299328,23 @@ "year": 1790, "resistanceReported": false, "duration": 59875200, - "curveSeeds": { - "c1": -66.9962819203189, - "c2": -3.579887695871733, - "c3": 20.668895237306913, - "c4": 54.87973642931533, - "c5": 29.509358267703846, - "c6": 17.14020244171597, - "c7": 27.12117919762568 + "points": { + "c1": -29.80295133410864, + "c2": 64.21332725004982, + "c3": 10.958397684995532, + "c4": 0.6425891479466657, + "c5": -44.102698889653226, + "c6": -68.5490948578923, + "c7": 54.49929691948236 }, - "vertexSeeds": { - "c1": 1.3101629490367195, - "c2": 1.3897679386349902, - "c3": 1.3940005322399966, - "c4": 1.3184257520960543, - "c5": 1.3490654664860482, - "c6": 1.3397028031439102, - "c7": 1.341997658307727 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.024965325936203, + "c3": 1.6874711049468323, + "c4": 1.3499768839574686, + "c5": 1.012482662968098, + "c6": 0.6749884419787343, + "c7": 0.3374942209893637 }, "rgb": [86, 146, 138] }, @@ -299355,23 +299355,23 @@ "year": 1789, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": -12.3459438242485, - "c2": -29.836075773387282, - "c3": 12.001314412453993, - "c4": -25.71962444842515, - "c5": -24.061816551218204, - "c6": 32.29344555742143, - "c7": 39.82725783254573 + "points": { + "c1": -36.65736566787085, + "c2": 24.54882725044383, + "c3": -37.35412540573219, + "c4": 15.904875725882128, + "c5": 15.72536796195731, + "c6": -50.079271980443295, + "c7": 32.9251703121299 }, - "vertexSeeds": { - "c1": 7.248359431209864, - "c2": 5.5254904060964565, - "c3": 4.784820573608047, - "c4": 5.616053669970089, - "c5": 6.66816346903501, - "c6": 4.6728319341102305, - "c7": 6.856209953360746 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686547, + "c3": 9.015256588072123, + "c4": 7.2122052704577, + "c5": 5.409153952843275, + "c6": 3.606102635228847, + "c7": 1.8030513176144236 }, "rgb": [58, 15, 49] }, @@ -299382,23 +299382,23 @@ "year": 1788, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 17.6483051841921, - "c2": 9.389176858432666, - "c3": -2.033682941601107, - "c4": -11.618722814468782, - "c5": -17.759351404175277, - "c6": 7.180672983588256, - "c7": -27.516467696116248 + "points": { + "c1": 10.465889847241403, + "c2": -11.458115715595266, + "c3": -16.822893875842432, + "c4": 4.569234868895673, + "c5": -18.152733886197545, + "c6": 29.923575537072676, + "c7": -23.57868565446389 }, - "vertexSeeds": { - "c1": 3.99127153412209, - "c2": 4.104302374453381, - "c3": 3.959699567622715, - "c4": 3.9689536499625233, - "c5": 3.9541890147303755, - "c6": 4.0539000508131435, - "c7": 4.002959928642435 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567274, + "c3": 4.9237170596393804, + "c4": 3.9389736477115083, + "c5": 2.954230235783637, + "c6": 1.9694868238557435, + "c7": 0.9847434119278717 }, "rgb": [222, 0, 59] }, @@ -299409,23 +299409,23 @@ "year": 1789, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -34.610432791864255, - "c2": 19.842567031310715, - "c3": -13.007027100493442, - "c4": 19.026501242846663, - "c5": -32.427087885562656, - "c6": 12.046283902020427, - "c7": -38.296228661096094 + "points": { + "c1": 10.02772492489617, + "c2": 7.626478183025959, + "c3": 13.533745368633639, + "c4": -38.05959902932288, + "c5": -10.894563207824284, + "c6": -7.759892990796061, + "c7": 2.41439202980677 }, - "vertexSeeds": { - "c1": 0.5296593584248946, - "c2": 0.6548044009205156, - "c3": 0.5665997519854573, - "c4": 0.5827889677553167, - "c5": 0.528501368398035, - "c6": 0.6689485119301102, - "c7": 0.6440831409428416 + "offsets": { + "c1": 1.197411003236246, + "c2": 1.0263522884882108, + "c3": 0.8552935737401757, + "c4": 0.6842348589921405, + "c5": 0.5131761442441054, + "c6": 0.34211742949607027, + "c7": 0.17105871474803513 }, "rgb": [58, 15, 49] }, @@ -299436,23 +299436,23 @@ "year": 1790, "resistanceReported": false, "duration": 55382400, - "curveSeeds": { - "c1": -52.09778525662948, - "c2": -13.543766349642091, - "c3": -48.18752515808854, - "c4": 42.03424261433216, - "c5": 50.60437399679131, - "c6": -15.779002542384916, - "c7": 5.579516906282734 + "points": { + "c1": 19.600016497672513, + "c2": -4.554871665492826, + "c3": -38.6555060670078, + "c4": 9.043615400469477, + "c5": 52.66229479388883, + "c6": 47.70570245191065, + "c7": -59.48900604254327 }, - "vertexSeeds": { - "c1": 6.3999933483826705, - "c2": 6.8091483013052985, - "c3": 6.420758196783181, - "c4": 6.544058541855067, - "c5": 6.664762936869194, - "c6": 6.772226574487449, - "c7": 6.893584323517821 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -299463,23 +299463,23 @@ "year": 1789, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -12.452667598392704, - "c2": 11.134914755473439, - "c3": -29.60369941496618, - "c4": 9.586534475215906, - "c5": -40.33692386808477, - "c6": -26.64852745517599, - "c7": 15.344298181927634 + "points": { + "c1": -2.8892429862140787, + "c2": -35.731876727203726, + "c3": -13.706529235116957, + "c4": -3.320332056611342, + "c5": 28.77809543998079, + "c6": 15.623877247078951, + "c7": -32.23028188099434 }, - "vertexSeeds": { - "c1": 6.812579125249883, - "c2": 6.536716686917693, - "c3": 6.710521778005775, - "c4": 6.703710756492698, - "c5": 6.809659879293186, - "c6": 6.81521143954914, - "c7": 7.119775979265743 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.20804438280167, + "c3": 8.506703652334712, + "c4": 6.805362921867774, + "c5": 5.104022191400835, + "c6": 3.4026814609338976, + "c7": 1.7013407304669381 }, "rgb": [58, 15, 49] }, @@ -299490,23 +299490,23 @@ "year": 1789, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": -4.80299224434318, - "c2": -0.6605173656646102, - "c3": -5.1699162690265865, - "c4": 8.384442283928422, - "c5": 6.216297329003865, - "c6": -32.79071210854117, - "c7": -19.51926220285321 + "points": { + "c1": 33.55362972006004, + "c2": 35.94459564495829, + "c3": -28.730089974659744, + "c4": 24.748897879165376, + "c5": 39.745532756170185, + "c6": 23.512944883396734, + "c7": 13.303059708982993 }, - "vertexSeeds": { - "c1": 6.771235587656159, - "c2": 6.727706600429595, - "c3": 6.713831822205132, - "c4": 6.750606068980616, - "c5": 6.785589391632169, - "c6": 6.8053721045110445, - "c7": 6.8152873358253405 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158161, + "c3": 8.136846971798414, + "c4": 6.5094775774387745, + "c5": 4.882108183079027, + "c6": 3.2547387887193873, + "c7": 1.6273693943597474 }, "rgb": [77, 76, 132] }, @@ -299517,23 +299517,23 @@ "year": 1788, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -16.65650212450202, - "c2": 3.1776898412151056, - "c3": 8.112012474517229, - "c4": 12.298022715224349, - "c5": -6.848847616612787, - "c6": -14.441434099339215, - "c7": 11.634815293670997 + "points": { + "c1": 14.477543911291427, + "c2": 0.6304597185302931, + "c3": -5.872266734564263, + "c4": -1.786180520807001, + "c5": 0.32389912383090547, + "c6": 9.282356191349308, + "c7": -3.9524842364144632 }, - "vertexSeeds": { - "c1": 4.853045822029408, - "c2": 5.021248807252752, - "c3": 5.058480060214471, - "c4": 5.17098538252461, - "c5": 4.948416048376496, - "c6": 4.968783913201263, - "c7": 4.9009045978474175 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.4618585298196995, + "c3": 6.218215441516419, + "c4": 4.9745723532131185, + "c5": 3.7309292649098498, + "c6": 2.4872861766065593, + "c7": 1.2436430883032796 }, "rgb": [77, 76, 132] }, @@ -299544,23 +299544,23 @@ "year": 1789, "resistanceReported": false, "duration": 45705600, - "curveSeeds": { - "c1": -26.23628680781558, - "c2": -48.41590924326214, - "c3": -3.2990920053107473, - "c4": 34.81969193675647, - "c5": -59.87640216178051, - "c6": -59.609588403203105, - "c7": 42.72717895891661 + "points": { + "c1": -61.91102227314726, + "c2": 52.52036457043866, + "c3": -0.01755999455128432, + "c4": -39.42011897001876, + "c5": -43.125576398910155, + "c6": -22.375675838799104, + "c7": 51.89839431802898 }, - "vertexSeeds": { - "c1": 6.969478131051526, - "c2": 6.794871455315457, - "c3": 6.790964883354042, - "c4": 6.918024927894254, - "c5": 6.942572487666135, - "c6": 6.879256104995354, - "c7": 6.962814425991308 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479881, + "c3": 8.32177531206656, + "c4": 6.657420249653291, + "c5": 4.993065187239968, + "c6": 3.3287101248266455, + "c7": 1.6643550624133228 }, "rgb": [58, 15, 49] }, @@ -299571,23 +299571,23 @@ "year": 1789, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 19.219937707441744, - "c2": -24.9083901002493, - "c3": 9.80577071020501, - "c4": -19.087939973949926, - "c5": 19.877059823440703, - "c6": 25.870314809690385, - "c7": -8.47591818403987 + "points": { + "c1": 29.416541811931907, + "c2": -5.222574767768187, + "c3": 36.07418534471114, + "c4": -31.328370789188362, + "c5": -38.93736203505943, + "c6": -1.9443035692179222, + "c7": -20.396358056868458 }, - "vertexSeeds": { - "c1": 3.98764148173557, - "c2": 3.914170533039084, - "c3": 3.953638143449976, - "c4": 4.055217118678389, - "c5": 4.177674706995627, - "c6": 4.205073322682749, - "c7": 4.223967774658766 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929263, + "c3": 5.131761442441051, + "c4": 4.105409153952839, + "c5": 3.0790568654646266, + "c6": 2.0527045769764247, + "c7": 1.0263522884882124 }, "rgb": [238, 201, 159] }, @@ -299598,23 +299598,23 @@ "year": 1788, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -11.243119955701571, - "c2": -2.6480007596016435, - "c3": -1.945084704819731, - "c4": -23.3620617834149, - "c5": -3.8231629597814596, - "c6": -7.871607899727151, - "c7": -17.006846093159552 + "points": { + "c1": 17.017537759946375, + "c2": -2.331174627017667, + "c3": -7.016491858429848, + "c4": 14.024379018361419, + "c5": -3.021197339080935, + "c6": 5.257527411579311, + "c7": 6.9749482492117885 }, - "vertexSeeds": { - "c1": 6.942791330356332, - "c2": 6.371832214315218, - "c3": 6.382577114126616, - "c4": 6.713118789021793, - "c5": 6.852601776208443, - "c6": 6.363627111797823, - "c7": 6.661925228828085 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -299625,23 +299625,23 @@ "year": 1789, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -24.54346984608344, - "c2": -3.146738522985853, - "c3": 30.167971434182718, - "c4": -5.02311217741271, - "c5": 25.747437540992827, - "c6": -20.772556732682986, - "c7": -2.810918149464495 + "points": { + "c1": 11.524918469344925, + "c2": -32.227985830497936, + "c3": -10.61011532393491, + "c4": -0.5024143946779347, + "c5": 29.78767500260829, + "c6": 28.38762345262151, + "c7": -11.276535395733184 }, - "vertexSeeds": { - "c1": 7.53000711375817, - "c2": 7.451356261111935, - "c3": 7.185946294082189, - "c4": 7.0867024447813325, - "c5": 7.269844966388172, - "c6": 7.233505382265976, - "c7": 7.17477305209083 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847431, + "c3": 9.107720758206188, + "c4": 7.286176606564948, + "c5": 5.464632454923705, + "c6": 3.6430883032824846, + "c7": 1.8215441516412423 }, "rgb": [238, 201, 159] }, @@ -299652,23 +299652,23 @@ "year": 1789, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -22.626509541156416, - "c2": 24.050016286187166, - "c3": 21.943692259670648, - "c4": -9.7664416118808, - "c5": 8.524172258954252, - "c6": 16.204511612818976, - "c7": -9.835769542875383 + "points": { + "c1": -15.06247309167033, + "c2": -24.978552069180548, + "c3": 31.276411937890096, + "c4": 11.464056799978486, + "c5": 9.71772583959487, + "c6": -6.85806337619546, + "c7": 6.894562474729028 }, - "vertexSeeds": { - "c1": 4.900804007871885, - "c2": 5.2024228784926665, - "c3": 5.263777973691171, - "c4": 4.990998188854269, - "c5": 4.986167184602969, - "c6": 5.267952020836092, - "c7": 4.937807029695682 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -299679,23 +299679,23 @@ "year": 1789, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 20.20210812630767, - "c2": 20.98452925855517, - "c3": -20.832433418173878, - "c4": 3.449600400247405, - "c5": -29.649723415510934, - "c6": 27.690064811076887, - "c7": 6.69932198632668 + "points": { + "c1": -32.86968938796608, + "c2": 17.722730361438693, + "c3": -27.602359971985003, + "c4": 29.619684546190115, + "c5": 34.32743001954408, + "c6": 3.3217100042284926, + "c7": 29.815644656004864 }, - "vertexSeeds": { - "c1": 8.710760637481123, - "c2": 8.767303385701075, - "c3": 7.744588869306115, - "c4": 8.711459370313555, - "c5": 8.307239942881179, - "c6": 8.331048149234977, - "c7": 8.506312279463584 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743415, + "c3": 10.772075820619515, + "c4": 8.617660656495602, + "c5": 6.463245492371701, + "c6": 4.308830328247801, + "c7": 2.1544151641239004 }, "rgb": [77, 76, 132] }, @@ -299706,23 +299706,23 @@ "year": 1789, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -29.409367758651715, - "c2": 11.048512329304941, - "c3": -8.826423870690117, - "c4": -33.017368522157525, - "c5": -30.091355641760433, - "c6": -17.51907477144913, - "c7": 32.0574810234705 + "points": { + "c1": -6.635143318051963, + "c2": -13.853066265275164, + "c3": -16.42892630550661, + "c4": -19.81712791656504, + "c5": -15.835292626932294, + "c6": -4.328641442990609, + "c7": -0.5125066882138256 }, - "vertexSeeds": { - "c1": 3.903857210551842, - "c2": 4.055342701817546, - "c3": 4.181850436363588, - "c4": 3.9806533496324805, - "c5": 4.022524566393352, - "c6": 3.876152495602555, - "c7": 4.069145940498614 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728161, + "c3": 5.016181229773461, + "c4": 4.012944983818774, + "c5": 3.009708737864074, + "c6": 2.006472491909387, + "c7": 1.0032362459546993 }, "rgb": [238, 201, 159] }, @@ -299733,23 +299733,23 @@ "year": 1788, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -7.417566072823558, - "c2": 23.744754926636418, - "c3": 14.80829539706199, - "c4": 17.166589469919217, - "c5": 20.086248718087518, - "c6": -20.384354023006843, - "c7": 8.59621674306809 + "points": { + "c1": -10.611885499205972, + "c2": 20.166752564102033, + "c3": -24.078821007974238, + "c4": 17.183554739790452, + "c5": -9.92510132356708, + "c6": -25.459892604043727, + "c7": -21.3361900570559 }, - "vertexSeeds": { - "c1": 6.414354605048265, - "c2": 6.758302270418228, - "c3": 6.801455825028327, - "c4": 6.47369084507227, - "c5": 6.487368810009099, - "c6": 6.951435355232742, - "c7": 6.613013985541893 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -299760,23 +299760,23 @@ "year": 1789, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 23.92729898861839, - "c2": 0.21256929518857248, - "c3": 1.5312738654573437, - "c4": -8.438133015836069, - "c5": -9.13006971060394, - "c6": 0.6647741663929807, - "c7": -7.652208265008806 + "points": { + "c1": -27.621805200340482, + "c2": -0.4814717454586699, + "c3": 28.389031077246898, + "c4": -17.50516443520592, + "c5": 13.613155615708735, + "c6": -23.18035124389064, + "c7": 6.574831680624428 }, - "vertexSeeds": { - "c1": 3.7443595405497963, - "c2": 3.9767875225663807, - "c3": 3.997334671741092, - "c4": 3.7824924454883297, - "c5": 4.003492480826864, - "c6": 3.817867697487947, - "c7": 3.9928483322933337 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406376, + "c3": 4.831252889505318, + "c4": 3.8650023116042505, + "c5": 2.898751733703193, + "c6": 1.9325011558021252, + "c7": 0.9662505779010573 }, "rgb": [238, 201, 159] }, @@ -299787,23 +299787,23 @@ "year": 1789, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": -29.597123394140027, - "c2": -25.624345418162495, - "c3": -15.702807017935662, - "c4": 21.492482108915148, - "c5": 17.964949107676098, - "c6": 44.40095372956723, - "c7": 5.910135079722544 + "points": { + "c1": -39.73724995119477, + "c2": 30.234653893803234, + "c3": 31.866144124522087, + "c4": 24.396764860442055, + "c5": 16.702112973013207, + "c6": -9.139420839146013, + "c7": -35.79878441436412 }, - "vertexSeeds": { - "c1": 7.130937764281182, - "c2": 7.5123303384969935, - "c3": 7.139044589213261, - "c4": 6.967682724975997, - "c5": 6.962593705735042, - "c6": 7.5500424706571625, - "c7": 6.9051364555052945 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686545, + "c3": 9.015256588072122, + "c4": 7.212205270457697, + "c5": 5.409153952843273, + "c6": 3.6061026352288486, + "c7": 1.8030513176144243 }, "rgb": [77, 76, 132] }, @@ -299814,23 +299814,23 @@ "year": 1789, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -1.8353531485479593, - "c2": -6.415862617165136, - "c3": 13.257378896009659, - "c4": -18.051520911737086, - "c5": -10.711598181798557, - "c6": -3.5327231886892676, - "c7": 22.39085684838137 + "points": { + "c1": 9.570420824609581, + "c2": 12.500779167845014, + "c3": -0.10770600321979273, + "c4": 15.161238710689222, + "c5": 10.969373834235032, + "c6": 12.006723537137336, + "c7": 2.418849632415256 }, - "vertexSeeds": { - "c1": 3.56062852905873, - "c2": 3.785866099162549, - "c3": 3.588013661761669, - "c4": 3.5923087314332665, - "c5": 3.5222796003578365, - "c6": 3.361629125198359, - "c7": 3.897998030541604 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124827, + "c3": 4.66944059177069, + "c4": 3.7355524734165533, + "c5": 2.801664355062416, + "c6": 1.867776236708279, + "c7": 0.9338881183541421 }, "rgb": [86, 146, 138] }, @@ -299841,23 +299841,23 @@ "year": 1789, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -24.698633978886065, - "c2": -20.628612139267403, - "c3": -17.460584918670495, - "c4": -8.461806872345079, - "c5": 32.43711760077619, - "c6": 15.738127362143949, - "c7": 31.853206439534702 + "points": { + "c1": 13.458169071247, + "c2": 12.381679541911566, + "c3": 7.616788043070876, + "c4": -9.292467381515486, + "c5": 2.044693312840046, + "c6": -30.520977374131522, + "c7": 3.66733399945538 }, - "vertexSeeds": { - "c1": 2.346618426938809, - "c2": 2.454800465435194, - "c3": 5.380413310098115, - "c4": 4.6952893661367305, - "c5": 2.3121284282129526, - "c6": 7.462692745608043, - "c7": 3.230846112060947 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490985, + "c3": 9.477577438742486, + "c4": 7.582061950993991, + "c5": 5.6865464632454925, + "c6": 3.791030975496994, + "c7": 1.895515487748497 }, "rgb": [222, 0, 59] }, @@ -299868,23 +299868,23 @@ "year": 1789, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -32.26609891959158, - "c2": -2.2097442395320854, - "c3": 35.68575942689114, - "c4": 20.601804638150504, - "c5": -4.7959707100283495, - "c6": -15.972788001824881, - "c7": 19.334901348364696 + "points": { + "c1": 4.8915479664205535, + "c2": -36.11761525358974, + "c3": -23.86997431078607, + "c4": 11.865091162536501, + "c5": -30.741480231460383, + "c6": 9.123057858585398, + "c7": 1.5610590253991106 }, - "vertexSeeds": { - "c1": 1.3337042929903038, - "c2": 1.3768885264931177, - "c3": 1.2867945354629167, - "c4": 1.366396010393827, - "c5": 1.2854993552235474, - "c6": 1.282579846740548, - "c7": 1.3495523809145127 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959805, + "c3": 1.6643550624133137, + "c4": 1.3314840499306537, + "c5": 0.998613037447987, + "c6": 0.6657420249653269, + "c7": 0.33287101248266676 }, "rgb": [77, 76, 132] }, @@ -299895,23 +299895,23 @@ "year": 1789, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 7.5143952085310985, - "c2": -32.98982134885826, - "c3": -11.88805831669967, - "c4": 2.701171763256717, - "c5": -38.26832479424064, - "c6": -28.628004959016195, - "c7": 4.824359091629546 + "points": { + "c1": 11.362151244342066, + "c2": -1.4161065498488838, + "c3": -38.08078995202746, + "c4": 36.49815061868363, + "c5": 10.743331942258678, + "c6": -28.517739468862267, + "c7": -32.78566895391755 }, - "vertexSeeds": { - "c1": 4.86674193167255, - "c2": 5.712912556959395, - "c3": 2.2582801663443974, - "c4": 5.308997997091577, - "c5": 2.5908910195553965, - "c6": 3.607561678788173, - "c7": 2.7640993822475566 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055478, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.773925104022191, + "c7": 1.3869625520110955 }, "rgb": [86, 146, 138] }, @@ -299922,23 +299922,23 @@ "year": 1789, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 10.949399473226379, - "c2": -6.880057077133326, - "c3": -2.931293009060152, - "c4": 6.477521181404924, - "c5": -0.24280153790746795, - "c6": -23.925866554255443, - "c7": -23.04748505165316 + "points": { + "c1": 6.00506738261447, + "c2": -5.935701440491087, + "c3": 23.794212502047586, + "c4": 23.513317647970588, + "c5": 14.564036530928533, + "c6": 20.900385890186143, + "c7": -8.77241168872997 }, - "vertexSeeds": { - "c1": 3.605418408518885, - "c2": 3.7618475498603985, - "c3": 3.5301095858948535, - "c4": 3.537728867072086, - "c5": 3.7251272087780487, - "c6": 3.487446056846048, - "c7": 3.5354151608148787 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843276, + "c3": 4.507628294036056, + "c4": 3.606102635228847, + "c5": 2.704576976421638, + "c6": 1.803051317614418, + "c7": 0.901525658807209 }, "rgb": [86, 146, 138] }, @@ -299949,23 +299949,23 @@ "year": 1789, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 8.348815962824737, - "c2": -24.550351798383033, - "c3": -6.4599654175718335, - "c4": 4.258794531491446, - "c5": 19.250144861028197, - "c6": 26.756153978451728, - "c7": 4.7349535285283295 + "points": { + "c1": 5.953684166514719, + "c2": -12.640976401299813, + "c3": 32.14952006282679, + "c4": 5.326805211311964, + "c5": -23.66170566276542, + "c6": -32.052627589318895, + "c7": -13.67182699311276 }, - "vertexSeeds": { - "c1": 6.895510938718223, - "c2": 7.330314086179585, - "c3": 6.833198706804652, - "c4": 7.338341685933451, - "c5": 7.112031159085798, - "c6": 7.176746495136242, - "c7": 7.061774317195359 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324557, + "c3": 8.80721220527045, + "c4": 7.045769764216363, + "c5": 5.2843273231622785, + "c6": 3.522884882108171, + "c7": 1.7614424410540854 }, "rgb": [238, 201, 159] }, @@ -299976,23 +299976,23 @@ "year": 1789, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -23.17292935540241, - "c2": 7.0160136974931575, - "c3": -15.467449402406338, - "c4": -2.824019876639369, - "c5": 19.75232468557393, - "c6": 1.6534404109395382, - "c7": 28.70477134734935 + "points": { + "c1": 24.14626920188423, + "c2": -8.229552744927158, + "c3": -32.56047676694536, + "c4": 26.509887857097326, + "c5": 25.31204139539031, + "c6": 32.41269096561126, + "c7": -0.8496053213430699 }, - "vertexSeeds": { - "c1": 7.503409202231049, - "c2": 7.896888427102798, - "c3": 7.90538422158325, - "c4": 7.892524457062174, - "c5": 7.699406554291267, - "c6": 7.6798537498134225, - "c7": 8.101324894887293 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.59500693481276, + "c3": 9.662505779010633, + "c4": 7.730004623208506, + "c5": 5.79750346740638, + "c6": 3.865002311604253, + "c7": 1.9325011558021266 }, "rgb": [86, 146, 138] }, @@ -300003,23 +300003,23 @@ "year": 1791, "resistanceReported": false, "duration": 80956800, - "curveSeeds": { - "c1": -69.54185183413692, - "c2": 82.65728619684293, - "c3": -56.33649882968411, - "c4": 68.37156599711759, - "c5": -75.98276233646351, - "c6": -47.857066843282205, - "c7": -26.705419757335235 + "points": { + "c1": 42.94083513022247, + "c2": -92.1213705062652, + "c3": 7.208303047564428, + "c4": 40.21078234242211, + "c5": -97.9072902463218, + "c6": 66.03048813749348, + "c7": 95.83797551102086 }, - "vertexSeeds": { - "c1": 2.988575349125093, - "c2": 2.1334847125713394, - "c3": 1.5958666545242535, - "c4": 1.8756640121200516, - "c5": 1.5102146544490311, - "c6": 2.7427998318657445, - "c7": 1.9174276251722748 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757282, + "c3": 3.883495145631069, + "c4": 3.1067961165048543, + "c5": 2.330097087378641, + "c6": 1.5533980582524278, + "c7": 0.7766990291262139 }, "rgb": [238, 201, 159] }, @@ -300030,23 +300030,23 @@ "year": 1789, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 22.316342746108603, - "c2": -20.687889042205683, - "c3": -10.916504625090987, - "c4": 27.83826697216422, - "c5": 17.251000614433764, - "c6": 20.34443306725069, - "c7": 9.15357975897524 + "points": { + "c1": 9.830284377353614, + "c2": 28.782020647578726, + "c3": 17.547498431056695, + "c4": 11.37597475727361, + "c5": -14.556146027309609, + "c6": -25.359044075822066, + "c7": 15.208277633923366 }, - "vertexSeeds": { - "c1": 5.487989744602352, - "c2": 5.494464021877164, - "c3": 5.608595821204538, - "c4": 5.583605899303887, - "c5": 5.546018749383025, - "c6": 5.8362331031381, - "c7": 5.8107453603213415 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256582, + "c4": 5.658807212205262, + "c5": 4.2441054091539625, + "c6": 2.829403606102642, + "c7": 1.414701803051321 }, "rgb": [222, 0, 59] }, @@ -300057,23 +300057,23 @@ "year": 1789, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 13.093457795723122, - "c2": 18.323008788355747, - "c3": -10.16463676196172, - "c4": 1.245916910855481, - "c5": 31.424153935375433, - "c6": 23.940782075923874, - "c7": -14.628164654843907 + "points": { + "c1": 15.60663846768545, + "c2": 15.955754247296731, + "c3": -4.939897599131392, + "c4": 14.20982689315857, + "c5": 16.64610558927123, + "c6": 13.609447482433232, + "c7": -23.236624776916756 }, - "vertexSeeds": { - "c1": 7.202093566165928, - "c2": 7.123295329872778, - "c3": 7.158062378470302, - "c4": 7.09323044866565, - "c5": 7.130933187319154, - "c6": 7.130109629722288, - "c7": 7.165373211368608 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002737, + "c3": 8.622283865002323, + "c4": 6.897827092001825, + "c5": 5.173370319001411, + "c6": 3.4489135460009126, + "c7": 1.7244567730004134 }, "rgb": [222, 0, 59] }, @@ -300084,23 +300084,23 @@ "year": 1789, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -12.535251213198165, - "c2": -6.589740073738614, - "c3": -28.870573358985798, - "c4": 12.314438206179233, - "c5": 22.350251827630714, - "c6": 6.838137429357339, - "c7": 23.930495846500385 + "points": { + "c1": -32.06215755369558, + "c2": -4.74914168585542, + "c3": -19.1142040228389, + "c4": -16.606085052143584, + "c5": -14.406180241215086, + "c6": 13.859727484909904, + "c7": 30.179871549392153 }, - "vertexSeeds": { - "c1": 7.144334162024795, - "c2": 7.432162197803811, - "c3": 7.170068539303549, - "c4": 7.446466863230527, - "c5": 7.342458538829516, - "c6": 7.439456723529966, - "c7": 7.477943415077225 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.762829403606103, + "c3": 8.969024503005086, + "c4": 7.175219602404068, + "c5": 5.381414701803052, + "c6": 3.587609801202034, + "c7": 1.793804900601017 }, "rgb": [86, 146, 138] }, @@ -300111,23 +300111,23 @@ "year": 1789, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": -37.10177133737918, - "c2": -45.884246372853845, - "c3": -30.341926349103918, - "c4": 4.456222249123286, - "c5": 16.02814321693188, - "c6": -6.64118041520554, - "c7": 48.61474926908885 + "points": { + "c1": -3.1164050699343093, + "c2": 9.484020536503095, + "c3": 2.035518419707927, + "c4": -6.187436282233342, + "c5": 33.71993583267201, + "c6": -39.37039152454334, + "c7": 34.55557265006888 }, - "vertexSeeds": { - "c1": 5.297213500150612, - "c2": 5.154879427975124, - "c3": 4.9592470631819525, - "c4": 5.316131358680162, - "c5": 5.12447732946635, - "c6": 5.191812232555943, - "c7": 5.354006719517835 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141476, + "c3": 6.40314378178455, + "c4": 5.122515025427643, + "c5": 3.841886269070738, + "c6": 2.561257512713832, + "c7": 1.280628756356916 }, "rgb": [238, 201, 159] }, @@ -300138,23 +300138,23 @@ "year": 1789, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 22.210856125476383, - "c2": 21.70768100214932, - "c3": 18.42541486279452, - "c4": 0.4816598088911377, - "c5": -8.67353839636112, - "c6": -18.128559082174572, - "c7": -5.404183072176124 + "points": { + "c1": 23.20253616426092, + "c2": 27.513444063963817, + "c3": 31.744245112806155, + "c4": -6.278270074657151, + "c5": 35.043191367704026, + "c6": 16.257373475561323, + "c7": 23.318552288714677 }, - "vertexSeeds": { - "c1": 5.261426891369026, - "c2": 4.973872410086417, - "c3": 4.883630865055225, - "c4": 4.8898027967886835, - "c5": 4.988605083294622, - "c6": 5.2635389030186115, - "c7": 5.050683074886742 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141476, + "c3": 6.40314378178455, + "c4": 5.122515025427643, + "c5": 3.841886269070738, + "c6": 2.561257512713832, + "c7": 1.280628756356916 }, "rgb": [222, 0, 59] }, @@ -300165,23 +300165,23 @@ "year": 1789, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": -3.6899021264802414, - "c2": -2.200884635297008, - "c3": -29.700719690724366, - "c4": -29.266182210967894, - "c5": -0.08652981088181377, - "c6": -1.9053798183642385, - "c7": 27.649360158427378 + "points": { + "c1": -25.05369251983171, + "c2": -50.711330551142325, + "c3": -20.249888981841263, + "c4": -34.67585181595905, + "c5": 50.466016752365825, + "c6": 21.425105415884268, + "c7": 37.52086280969963 }, - "vertexSeeds": { - "c1": 7.8728788934274005, - "c2": 7.512657012260114, - "c3": 7.622155149226712, - "c4": 7.586004639064232, - "c5": 7.829385911246646, - "c6": 7.412209778919262, - "c7": 7.8555683777186065 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692095, + "c3": 9.593157651410083, + "c4": 7.67452612112807, + "c5": 5.7558945908460375, + "c6": 3.8372630605640246, + "c7": 1.9186315302820123 }, "rgb": [86, 146, 138] }, @@ -300192,23 +300192,23 @@ "year": 1788, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 15.480394028783309, - "c2": 22.617418935310667, - "c3": -10.295144098373006, - "c4": 1.2007965982410553, - "c5": -18.509530538193925, - "c6": -18.898760466033202, - "c7": 21.401680352904656 + "points": { + "c1": 21.330210373796476, + "c2": -5.043924811023981, + "c3": 22.0996955966364, + "c4": -24.36179765821836, + "c5": -18.843436049069496, + "c6": 19.45726454840122, + "c7": -27.03465064637247 }, - "vertexSeeds": { - "c1": 6.587152117374965, - "c2": 6.49402354112832, - "c3": 5.663181469076651, - "c4": 6.742111904430074, - "c5": 7.1204044227908, - "c6": 7.323069328171304, - "c7": 5.752227176489499 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203886, + "c3": 8.737864077669908, + "c4": 6.99029126213592, + "c5": 5.242718446601943, + "c6": 3.4951456310679645, + "c7": 1.7475728155339785 }, "rgb": [86, 146, 138] }, @@ -300219,23 +300219,23 @@ "year": 1789, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -28.951357547063196, - "c2": -22.863120847698127, - "c3": 34.76952746770287, - "c4": 9.618521562341527, - "c5": -23.95076825500636, - "c6": 32.892114802044716, - "c7": 0.3841724799020554 + "points": { + "c1": 29.777000345206062, + "c2": -3.6040709424658672, + "c3": 1.4190149443637239, + "c4": -14.704111932137963, + "c5": 14.970647411337431, + "c6": -28.378906339271733, + "c7": 35.3638651057652 }, - "vertexSeeds": { - "c1": 12.549480031746956, - "c2": 11.605624671833176, - "c3": 12.30363529933094, - "c4": 11.735366771095947, - "c5": 12.999870100560205, - "c6": 11.567000829759282, - "c7": 11.805168881936734 + "offsets": { + "c1": 21.74757281553398, + "c2": 18.640776699029132, + "c3": 15.533980582524281, + "c4": 12.427184466019426, + "c5": 9.320388349514554, + "c6": 6.213592233009702, + "c7": 3.106796116504851 }, "rgb": [238, 201, 159] }, @@ -300246,23 +300246,23 @@ "year": 1789, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -4.365684856665911, - "c2": 25.883989057649828, - "c3": -31.75489808986553, - "c4": 14.09551392521027, - "c5": -29.44417941513928, - "c6": -18.508034649434023, - "c7": 32.30598067630747 + "points": { + "c1": -31.32770367386056, + "c2": -32.3631506802824, + "c3": 23.32190486430978, + "c4": 11.632911720284753, + "c5": -13.503094750702804, + "c6": 16.338722971390418, + "c7": 16.455511394166663 }, - "vertexSeeds": { - "c1": 2.619794512534257, - "c2": 2.658473142366801, - "c3": 2.6766010183214775, - "c4": 2.704247980238096, - "c5": 2.5047516467060302, - "c6": 2.6949749244001584, - "c7": 2.716886241867479 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712886, + "c3": 3.2593619972260717, + "c4": 2.6074895977808557, + "c5": 1.955617198335649, + "c6": 1.303744798890433, + "c7": 0.6518723994452165 }, "rgb": [77, 76, 132] }, @@ -300273,23 +300273,23 @@ "year": 1790, "resistanceReported": false, "duration": 45792000, - "curveSeeds": { - "c1": 54.7960203986784, - "c2": 22.983396826114195, - "c3": 32.18611171990705, - "c4": 0.15709433637383796, - "c5": -47.254935324695786, - "c6": -58.34722836470236, - "c7": -44.09966704349219 + "points": { + "c1": -60.008478780799656, + "c2": -8.388939836225887, + "c3": 42.86020891923315, + "c4": -32.21309878083303, + "c5": -46.510318277443105, + "c6": 33.361133186471584, + "c7": 52.647429282140855 }, - "vertexSeeds": { - "c1": 4.428331662816589, - "c2": 4.26785783455267, - "c3": 4.731082643270072, - "c4": 4.739248890006963, - "c5": 4.656161049789038, - "c6": 4.880179176078268, - "c7": 4.880359812062149 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377252, + "c3": 5.963938973647711, + "c4": 4.77115117891817, + "c5": 3.578363384188626, + "c6": 2.385575589459082, + "c7": 1.192787794729541 }, "rgb": [86, 146, 138] }, @@ -300300,23 +300300,23 @@ "year": 1788, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -13.504976071298953, - "c2": 9.845828956028654, - "c3": 8.581549089010625, - "c4": -2.346577356830725, - "c5": -14.90896527295953, - "c6": -12.742928492787787, - "c7": -7.439545763347157 + "points": { + "c1": 10.240357042186467, + "c2": -14.948523662838435, + "c3": 3.0054788855221766, + "c4": -12.392429170205293, + "c5": -9.469616159718537, + "c6": 8.703596648624774, + "c7": 11.14353893799273 }, - "vertexSeeds": { - "c1": 2.06116018751843, - "c2": 2.1165209522896, - "c3": 2.045672303568194, - "c4": 2.163638272556242, - "c5": 2.130158987613588, - "c6": 2.024651055779953, - "c7": 2.0551910895987806 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [77, 76, 132] }, @@ -300327,23 +300327,23 @@ "year": 1790, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": -15.43379288695526, - "c2": -28.349826266761255, - "c3": 3.7449756055547567, - "c4": 41.35629764482728, - "c5": 9.558466285631212, - "c6": 23.465107621848347, - "c7": -16.100416927874605 + "points": { + "c1": 20.027827434504474, + "c2": -36.034108518317126, + "c3": -35.44913133816119, + "c4": 23.13157184174878, + "c5": -17.443490485294106, + "c6": -3.0511189395422633, + "c7": -56.4118250779428 }, - "vertexSeeds": { - "c1": 5.734988068573038, - "c2": 5.884853216117092, - "c3": 5.828673200710756, - "c4": 5.503762252250547, - "c5": 5.647396566752326, - "c6": 5.48369444873419, - "c7": 5.8027069665532185 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [58, 15, 49] }, @@ -300354,23 +300354,23 @@ "year": 1789, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -2.8560577026103324, - "c2": 29.919948444478457, - "c3": -29.250278763946127, - "c4": 28.32230573555028, - "c5": -1.3702773808400757, - "c6": -22.001177625661708, - "c7": 23.30406548413621 + "points": { + "c1": 14.763875767453165, + "c2": -27.89866917445596, + "c3": 4.060073723079768, + "c4": -7.159492419736811, + "c5": 24.911531165033665, + "c6": -14.149263607800513, + "c7": -9.959263733380965 }, - "vertexSeeds": { - "c1": 13.166441886200895, - "c2": 11.568036141772314, - "c3": 11.443251092696869, - "c4": 12.205906899117306, - "c5": 11.938295224020688, - "c6": 9.066266927494832, - "c7": 12.602049852521903 + "offsets": { + "c1": 23.300970873786408, + "c2": 19.972260748959776, + "c3": 16.643550624133148, + "c4": 13.314840499306523, + "c5": 9.986130374479885, + "c6": 6.657420249653258, + "c7": 3.328710124826631 }, "rgb": [77, 76, 132] }, @@ -300381,23 +300381,23 @@ "year": 1789, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 23.27857168444933, - "c2": -0.8581166954956174, - "c3": -27.814962778864544, - "c4": 12.57512432970056, - "c5": 18.561197796640055, - "c6": 4.424317173352687, - "c7": -18.885989901252316 + "points": { + "c1": -28.94638311794349, + "c2": -10.115692725228602, + "c3": 27.324923354105458, + "c4": -28.527202674534657, + "c5": -9.235496264209758, + "c6": -2.154933840351763, + "c7": -17.108240444135067 }, - "vertexSeeds": { - "c1": 2.295590313639166, - "c2": 2.2818969442974435, - "c3": 2.279310002777282, - "c4": 2.2943833134464975, - "c5": 2.2845761488973, - "c6": 2.3297994566410627, - "c7": 2.260047369153515 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668537, + "c3": 2.7970411465557135, + "c4": 2.2376329172445737, + "c5": 1.6782246879334337, + "c6": 1.11881645862228, + "c7": 0.55940822931114 }, "rgb": [86, 146, 138] }, @@ -300408,23 +300408,23 @@ "year": 1789, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -28.168762856787737, - "c2": 31.854773846970353, - "c3": -25.644926841326708, - "c4": 32.77996064061414, - "c5": -15.233689459708728, - "c6": -17.84162568734249, - "c7": -12.127810339263497 + "points": { + "c1": 18.40514531498635, + "c2": -41.4207464089132, + "c3": 27.302225930632538, + "c4": -4.942014069230659, + "c5": 6.692657597746923, + "c6": -39.231820601136114, + "c7": -3.239654346056028 }, - "vertexSeeds": { - "c1": 8.350337700998367, - "c2": 8.048869029947799, - "c3": 8.801057316677067, - "c4": 8.341419366207775, - "c5": 8.68274785058316, - "c6": 8.218320734901246, - "c7": 8.21068280682516 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260758, + "c3": 10.494683310217289, + "c4": 8.395746648173839, + "c5": 6.296809986130368, + "c6": 4.1978733240869195, + "c7": 2.0989366620434495 }, "rgb": [238, 201, 159] }, @@ -300435,23 +300435,23 @@ "year": 1789, "resistanceReported": true, "duration": 16156800, - "curveSeeds": { - "c1": 20.571782731627025, - "c2": -19.421546673585688, - "c3": 11.318479515626393, - "c4": -22.47316432425465, - "c5": -10.88993430316593, - "c6": 18.39798968708753, - "c7": -16.91833385681722 + "points": { + "c1": 1.4124172898093654, + "c2": 10.058195639896532, + "c3": -19.189214408629983, + "c4": 8.517065293432971, + "c5": 19.898827619217094, + "c6": -15.222910969120123, + "c7": 4.214986218577188 }, - "vertexSeeds": { - "c1": 7.12101965451364, - "c2": 6.82734845110828, - "c3": 7.099409796243334, - "c4": 7.048004194286907, - "c5": 7.018052848480474, - "c6": 7.021677883716362, - "c7": 6.715889232125452 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.45769764216367, + "c3": 8.714748035136381, + "c4": 6.971798428109114, + "c5": 5.228848821081825, + "c6": 3.485899214054557, + "c7": 1.7429496070272887 }, "rgb": [77, 76, 132] }, @@ -300462,23 +300462,23 @@ "year": 1789, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 21.6397562363885, - "c2": 5.290024950769819, - "c3": 2.6831758335271445, - "c4": 4.127430602999034, - "c5": 1.6938818643853324, - "c6": -19.434141455936825, - "c7": 12.82262083027193 + "points": { + "c1": 22.02044149181804, + "c2": -5.304311496524296, + "c3": -15.076437078976923, + "c4": -28.521918785538, + "c5": -21.099960559741916, + "c6": -30.315568815175652, + "c7": -18.533031016058118 }, - "vertexSeeds": { - "c1": 2.2546517499128216, - "c2": 2.201110932417749, - "c3": 2.261386329106491, - "c4": 2.148917894020212, - "c5": 2.1723264738095382, - "c6": 2.2179899732003587, - "c7": 2.210515435552541 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551547, + "c4": 2.1821544151641237, + "c5": 1.6366158113730929, + "c6": 1.0910772075820618, + "c7": 0.5455386037910309 }, "rgb": [222, 0, 59] }, @@ -300489,23 +300489,23 @@ "year": 1790, "resistanceReported": false, "duration": 53740800, - "curveSeeds": { - "c1": -0.5558537460015174, - "c2": 7.327441286942246, - "c3": 65.27493461109947, - "c4": 49.81328933331899, - "c5": 21.78998069269423, - "c6": 57.160718760899115, - "c7": -21.860491298214946 + "points": { + "c1": 60.343304352755695, + "c2": 69.4830708001248, + "c3": 53.216889781209105, + "c4": 69.90573049541692, + "c5": 16.923069542337302, + "c6": 28.36676135256147, + "c7": 30.91693615807607 }, - "vertexSeeds": { - "c1": 4.049865412977657, - "c2": 4.461034299572718, - "c3": 4.416654750917128, - "c4": 4.034161485733459, - "c5": 4.258169221371987, - "c6": 4.468168679544492, - "c7": 4.448679037370479 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452149, + "c3": 5.4322699953767914, + "c4": 4.3458159963014324, + "c5": 3.2593619972260743, + "c6": 2.1729079981507162, + "c7": 1.0864539990753581 }, "rgb": [222, 0, 59] }, @@ -300516,23 +300516,23 @@ "year": 1789, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 3.3531637688071783, - "c2": 8.009535525550767, - "c3": 5.091526391415499, - "c4": -24.071010529722695, - "c5": 10.244896500815727, - "c6": -33.27623309825502, - "c7": 0.32875049284841396 + "points": { + "c1": 13.693458128445549, + "c2": -33.15657993890515, + "c3": 23.773423550622546, + "c4": -18.0114465763537, + "c5": -11.763508661756156, + "c6": 37.913921309324145, + "c7": 36.21369776091911 }, - "vertexSeeds": { - "c1": 7.728134501842014, - "c2": 7.64440399779134, - "c3": 7.731414992347118, - "c4": 7.766818243412512, - "c5": 7.44803337495057, - "c6": 7.624577318455756, - "c7": 7.810561174564976 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.6005547850208135, + "c5": 5.700416088765615, + "c6": 3.800277392510396, + "c7": 1.900138696255198 }, "rgb": [77, 76, 132] }, @@ -300543,23 +300543,23 @@ "year": 1789, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 6.286725502032276, - "c2": -8.255986379631747, - "c3": -4.205210712398724, - "c4": -23.910871530005362, - "c5": 6.751811727523844, - "c6": 10.57117108314175, - "c7": 7.761997213906611 + "points": { + "c1": -7.712310652415788, + "c2": 14.519758185470991, + "c3": 7.202673099193568, + "c4": 12.106185345521965, + "c5": 1.9561529445225503, + "c6": -32.15463783971488, + "c7": 37.8718290326173 }, - "vertexSeeds": { - "c1": 3.7157181258776566, - "c2": 3.545924042707492, - "c3": 3.697010474349183, - "c4": 3.7143026974984363, - "c5": 3.5437798189552314, - "c6": 3.804254633089411, - "c7": 3.4857511681541675 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923722, + "c3": 4.553860379103097, + "c4": 3.6430883032824815, + "c5": 2.7323162274618555, + "c6": 1.8215441516412407, + "c7": 0.9107720758206257 }, "rgb": [86, 146, 138] }, @@ -300570,23 +300570,23 @@ "year": 1789, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -15.757905363076343, - "c2": 16.23908516355192, - "c3": -0.09426467936607708, - "c4": -17.78931222996038, - "c5": 0.43974462941133297, - "c6": 6.144657148732364, - "c7": 15.002445843135689 + "points": { + "c1": -14.817508988595137, + "c2": 3.8620874568754573, + "c3": 28.53332282457422, + "c4": 24.766092708164948, + "c5": -12.302724155316984, + "c6": -2.317010545191323, + "c7": 19.946697852267995 }, - "vertexSeeds": { - "c1": 7.004154138907614, - "c2": 6.763856213008207, - "c3": 6.923474113931612, - "c4": 6.562590100773401, - "c5": 7.01258032341858, - "c6": 6.607363640074123, - "c7": 6.596546329226001 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560336, + "c3": 8.368007397133617, + "c4": 6.694405917706898, + "c5": 5.020804438280156, + "c6": 3.3472029588534378, + "c7": 1.6736014794267189 }, "rgb": [58, 15, 49] }, @@ -300597,23 +300597,23 @@ "year": 1789, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 16.874057547788617, - "c2": 2.8610606597685404, - "c3": 18.70556255442385, - "c4": 17.80157568856685, - "c5": 19.55205781378927, - "c6": -15.078210080829198, - "c7": 17.903796496994623 + "points": { + "c1": -12.744059553964927, + "c2": -8.37619887740502, + "c3": 8.635998744434026, + "c4": -9.095448309185713, + "c5": 1.9488687192776837, + "c6": -24.379151622489104, + "c7": 17.152694323911163 }, - "vertexSeeds": { - "c1": 5.275189150306449, - "c2": 5.22698831630127, - "c3": 5.0653198746490515, - "c4": 5.266193519963312, - "c5": 5.210844306614695, - "c6": 5.043650135488387, - "c7": 5.013400719418033 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020815, + "c3": 6.333795654184001, + "c4": 5.067036523347211, + "c5": 3.8002773925103956, + "c6": 2.5335182616736054, + "c7": 1.26675913083679 }, "rgb": [222, 0, 59] }, @@ -300624,23 +300624,23 @@ "year": 1789, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": -33.648816024415495, - "c2": 43.77865080692233, - "c3": 0.37138656947987414, - "c4": -25.91082465174096, - "c5": -0.8448809469165468, - "c6": 43.69051980711548, - "c7": 47.97142257090195 + "points": { + "c1": -48.032075892071646, + "c2": 10.16060549448978, + "c3": -3.1958313584570064, + "c4": -0.49131682811880495, + "c5": -41.39980223414698, + "c6": 14.586356203837724, + "c7": -51.52905927218033 }, - "vertexSeeds": { - "c1": 8.985192892199528, - "c2": 8.988386035960506, - "c3": 8.617936888513729, - "c4": 9.367806698107792, - "c5": 8.825136014939543, - "c6": 9.403220288172387, - "c7": 8.996158752532665 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.536754507628297, + "c3": 11.280628756356919, + "c4": 9.024503005085538, + "c5": 6.768377253814159, + "c6": 4.512251502542759, + "c7": 2.2561257512713797 }, "rgb": [222, 0, 59] }, @@ -300651,23 +300651,23 @@ "year": 1789, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -8.319225004465757, - "c2": 0.8581893399457599, - "c3": -3.0610918610972426, - "c4": 4.507224911754733, - "c5": -30.806039456318658, - "c6": -13.062537508152566, - "c7": 7.333928496254096 + "points": { + "c1": 13.95189949186193, + "c2": -19.045410870525068, + "c3": 21.76720880440206, + "c4": 26.657014138154516, + "c5": -13.061929260501103, + "c6": -30.60457961661115, + "c7": 33.393212227651915 }, - "vertexSeeds": { - "c1": 3.7041118972424596, - "c2": 3.595344078512298, - "c3": 3.8062128830629156, - "c4": 3.8466864912978513, - "c5": 3.593956247429318, - "c6": 3.7868358518164986, - "c7": 3.6813915782123954 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.60332871012483, + "c3": 4.669440591770687, + "c4": 3.7355524734165533, + "c5": 2.801664355062411, + "c6": 1.8677762367082766, + "c7": 0.9338881183541424 }, "rgb": [238, 201, 159] }, @@ -300678,23 +300678,23 @@ "year": 1789, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -34.50857608875803, - "c2": 36.12195739860873, - "c3": 2.6839183854556694, - "c4": 11.22223744281063, - "c5": 25.11737911312781, - "c6": -38.25282078496534, - "c7": 41.04114536142818 + "points": { + "c1": 34.31583163360219, + "c2": -13.461019338304304, + "c3": -37.47766300375508, + "c4": -25.845581216968473, + "c5": 35.741534707315395, + "c6": 12.615541807847094, + "c7": 34.897871976365764 }, - "vertexSeeds": { - "c1": 3.872940430163779, - "c2": 3.902064865118625, - "c3": 3.928091388619204, - "c4": 4.020900921781175, - "c5": 4.1505765372222605, - "c6": 3.9852970389786293, - "c7": 4.23449030638611 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244145, + "c6": 2.03421174294961, + "c7": 1.017105871474805 }, "rgb": [238, 201, 159] }, @@ -300705,23 +300705,23 @@ "year": 1789, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": -2.5179818774214056, - "c2": -1.3231652311623705, - "c3": -25.097927334512576, - "c4": -5.111328468514323, - "c5": -0.6536296103622519, - "c6": -34.438284925330166, - "c7": -22.078431033794345 + "points": { + "c1": -37.34965076051614, + "c2": 25.93796450273944, + "c3": -7.221215696960023, + "c4": -8.188741997884897, + "c5": -16.64863004009493, + "c6": -4.377763000243121, + "c7": -4.645800609365622 }, - "vertexSeeds": { - "c1": 3.3218960109298723, - "c2": 3.276560930225161, - "c3": 3.4531754356855435, - "c4": 2.944258277218852, - "c5": 2.995724424886684, - "c6": 3.177463092293471, - "c7": 3.6269673695845577 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703651, + "c4": 3.6985668053629235, + "c5": 2.773925104022193, + "c6": 1.8492834026814617, + "c7": 0.9246417013407309 }, "rgb": [58, 15, 49] }, @@ -300732,23 +300732,23 @@ "year": 1789, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 28.12673903767761, - "c2": 4.9851489660263155, - "c3": -22.7373308694516, - "c4": 30.807219239052856, - "c5": -11.254727635682137, - "c6": -6.394427098917298, - "c7": 34.892623218327 + "points": { + "c1": -37.52349942210622, + "c2": 24.660883972027946, + "c3": -26.69313166669139, + "c4": -18.65741563813265, + "c5": 41.3938877931822, + "c6": 34.01954675231133, + "c7": 25.68578748577299 }, - "vertexSeeds": { - "c1": 4.837880356666181, - "c2": 4.698934644109651, - "c3": 4.562527574620393, - "c4": 4.716389981256251, - "c5": 4.464009642926008, - "c6": 4.677494403164083, - "c7": 4.668824367594773 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [77, 76, 132] }, @@ -300759,23 +300759,23 @@ "year": 1789, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -11.76116978275591, - "c2": -26.8623591695334, - "c3": -10.057880096807985, - "c4": -27.22881445236571, - "c5": 6.486058014420713, - "c6": 15.230386216138903, - "c7": -22.450734632845588 + "points": { + "c1": 20.961285432140116, + "c2": 27.254163793470568, + "c3": -30.955417910005583, + "c4": 14.479707967311157, + "c5": -27.212005618433718, + "c6": 9.577024616895244, + "c7": -4.855353601512135 }, - "vertexSeeds": { - "c1": 3.205771982233081, - "c2": 3.3548246916930258, - "c3": 3.356441097159109, - "c4": 3.102719712100207, - "c5": 3.243193404329, - "c6": 3.326457124972959, - "c7": 3.277011136895172 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.8266296809986144, + "c3": 4.02219140083218, + "c4": 3.2177531206657464, + "c5": 2.413314840499312, + "c6": 1.6088765603328679, + "c7": 0.8044382801664339 }, "rgb": [77, 76, 132] }, @@ -300786,23 +300786,23 @@ "year": 1789, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 17.389787036286307, - "c2": 31.33709095510428, - "c3": -26.462113567062673, - "c4": 6.716254525798583, - "c5": 32.38954720819054, - "c6": 32.58805369233125, - "c7": 27.945581143214902 + "points": { + "c1": 34.658945602373116, + "c2": 29.794341289771403, + "c3": 28.07502037468243, + "c4": -0.32047934768059605, + "c5": 32.65631781100097, + "c6": 22.730712229268597, + "c7": 2.481511482023677 }, - "vertexSeeds": { - "c1": 9.153580714081494, - "c2": 8.760518351682935, - "c3": 9.092207979588506, - "c4": 8.92773107294839, - "c5": 9.010021835132996, - "c6": 9.249333508038182, - "c7": 8.755599231154719 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306504, + "c3": 11.095700416088768, + "c4": 8.876560332871003, + "c5": 6.657420249653268, + "c6": 4.438280166435502, + "c7": 2.2191400832177357 }, "rgb": [58, 15, 49] }, @@ -300813,23 +300813,23 @@ "year": 1789, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 13.56940234646639, - "c2": 31.746627616071223, - "c3": 7.900422976316079, - "c4": -31.287355561407466, - "c5": 13.542082688535622, - "c6": -3.828545502844573, - "c7": -23.327025830156764 + "points": { + "c1": -17.746000047740303, + "c2": -4.029564227764684, + "c3": -27.69165608271195, + "c4": -27.137635153713187, + "c5": 20.667065396178536, + "c6": -13.725128850197034, + "c7": 11.35602461578815 }, - "vertexSeeds": { - "c1": 4.276408764120054, - "c2": 4.732677321702475, - "c3": 4.784017838001866, - "c4": 3.8740860523532388, - "c5": 4.220985596621837, - "c6": 4.688685838939048, - "c7": 4.657110611328914 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055475, + "c3": 5.779010633379566, + "c4": 4.623208506703651, + "c5": 3.46740638002774, + "c6": 2.3116042533518253, + "c7": 1.1558021266759104 }, "rgb": [77, 76, 132] }, @@ -300840,23 +300840,23 @@ "year": 1790, "resistanceReported": false, "duration": 46742400, - "curveSeeds": { - "c1": 53.40218242637713, - "c2": 29.97058340692498, - "c3": -54.31727163516627, - "c4": -24.62618330636814, - "c5": -60.97183319125657, - "c6": 0.14978879766775322, - "c7": -9.107742010286373 + "points": { + "c1": -60.38784854569629, + "c2": 26.930085914120248, + "c3": 26.095959305466927, + "c4": 27.653480788822343, + "c5": -39.38952094054393, + "c6": 19.104184167294015, + "c7": 60.12045035214319 }, - "vertexSeeds": { - "c1": 9.1947304881537, - "c2": 8.75443853133952, - "c3": 8.833845818334382, - "c4": 8.802038330957057, - "c5": 9.315052694809053, - "c6": 9.897908289983537, - "c7": 10.029306169945013 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438268, + "c3": 12.320850670365237, + "c4": 9.856680536292192, + "c5": 7.392510402219146, + "c6": 4.928340268146101, + "c7": 2.464170134073056 }, "rgb": [86, 146, 138] }, @@ -300867,23 +300867,23 @@ "year": 1789, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -16.488179256322987, - "c2": -11.75013825809278, - "c3": -2.641497351876513, - "c4": 17.058230207323646, - "c5": -3.784815040129608, - "c6": -24.20775328631111, - "c7": 16.055715339109945 + "points": { + "c1": 8.464679137494286, + "c2": -14.641838735375824, + "c3": 3.501606814151927, + "c4": -1.3684181332809295, + "c5": -24.511271244753388, + "c6": 24.136932110186322, + "c7": -6.492312811877614 }, - "vertexSeeds": { - "c1": 5.246454510607608, - "c2": 5.228124320513221, - "c3": 5.156737064131597, - "c4": 5.177990727883858, - "c5": 5.135142450579863, - "c6": 4.96962236933672, - "c7": 4.985002735236176 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784564, + "c4": 5.122515025427656, + "c5": 3.8418862690707476, + "c6": 2.561257512713817, + "c7": 1.2806287563569085 }, "rgb": [86, 146, 138] }, @@ -300894,23 +300894,23 @@ "year": 1789, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 9.800510583488254, - "c2": 21.20033749344197, - "c3": -8.969437593807939, - "c4": -0.29098097877547247, - "c5": -18.978216818707168, - "c6": -0.8566587336862312, - "c7": 1.9663800795679762 + "points": { + "c1": -0.3686224141396437, + "c2": -16.2371559869786, + "c3": -18.289373402945788, + "c4": -4.921830036480454, + "c5": -12.205572957002605, + "c6": 7.537074645998935, + "c7": -27.825843022865392 }, - "vertexSeeds": { - "c1": 2.7354040954724477, - "c2": 2.591694804716139, - "c3": 2.366146622011479, - "c4": 2.6898181353118478, - "c5": 2.6455365691821147, - "c6": 2.6530951999011156, - "c7": 2.7295508559570067 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.93897364771151, + "c3": 3.282478039759596, + "c4": 2.6259824318076754, + "c5": 1.969486823855755, + "c6": 1.3129912159038377, + "c7": 0.6564956079519205 }, "rgb": [77, 76, 132] }, @@ -300921,23 +300921,23 @@ "year": 1790, "resistanceReported": false, "duration": 56419200, - "curveSeeds": { - "c1": 44.412303491285826, - "c2": -51.94510849204297, - "c3": 28.73261487874514, - "c4": 6.852108389192182, - "c5": 1.4363664895559936, - "c6": 12.717188075731471, - "c7": 49.563366391924546 + "points": { + "c1": 16.87271990628551, + "c2": -38.178843304773764, + "c3": 17.673919563865397, + "c4": 46.61428084180426, + "c5": -28.705280234694527, + "c6": 39.2729753690398, + "c7": 40.015792943929654 }, - "vertexSeeds": { - "c1": 3.051402221976122, - "c2": 2.917776451666473, - "c3": 3.0171133633482805, - "c4": 3.2039453571030014, - "c5": 3.160528461497676, - "c6": 3.1415522262677436, - "c7": 3.1179466016975064 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757286, + "c3": 3.883495145631067, + "c4": 3.1067961165048565, + "c5": 2.3300970873786384, + "c6": 1.5533980582524283, + "c7": 0.7766990291262099 }, "rgb": [222, 0, 59] }, @@ -300948,23 +300948,23 @@ "year": 1790, "resistanceReported": false, "duration": 43632000, - "curveSeeds": { - "c1": -52.38934401806095, - "c2": 44.8057014995854, - "c3": -32.94137367348591, - "c4": -50.77357079040624, - "c5": -19.788148954793925, - "c6": -4.603373366922618, - "c7": -32.324053604618825 + "points": { + "c1": -47.47445275609182, + "c2": 28.39171735257603, + "c3": -35.18572344761339, + "c4": 50.212569236772744, + "c5": -25.568235242968377, + "c6": -58.732997603302444, + "c7": 27.072812461621773 }, - "vertexSeeds": { - "c1": 4.3007739014073, - "c2": 4.40169241824592, - "c3": 4.3554455729571195, - "c4": 4.384523633171751, - "c5": 4.347490519634471, - "c6": 4.401670640381776, - "c7": 4.500194825806842 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733702, + "c3": 5.594082293111416, + "c4": 4.4752658344891305, + "c5": 3.356449375866845, + "c6": 2.237632917244571, + "c7": 1.1188164586222742 }, "rgb": [86, 146, 138] }, @@ -300975,23 +300975,23 @@ "year": 1789, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 14.607895214646696, - "c2": -25.283470160881137, - "c3": -8.929293188303486, - "c4": -23.3419132490885, - "c5": -2.1332280265855132, - "c6": -16.178210108855694, - "c7": 17.18456369923787 + "points": { + "c1": -6.116870721853257, + "c2": 7.206286405393925, + "c3": -31.53541977480618, + "c4": -4.5036204858058255, + "c5": -36.93627507058326, + "c6": -7.464933533117353, + "c7": -5.0204908170378175 }, - "vertexSeeds": { - "c1": 3.9025635851596503, - "c2": 3.7631315781795944, - "c3": 3.7443416785737305, - "c4": 3.6965713162034923, - "c5": 3.935407108667852, - "c6": 3.8325061374132323, - "c7": 3.855289896202896 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245497, + "c3": 4.738788719371242, + "c4": 3.7910309754969984, + "c5": 2.843273231622743, + "c6": 1.8955154877484992, + "c7": 0.9477577438742439 }, "rgb": [238, 201, 159] }, @@ -301002,23 +301002,23 @@ "year": 1789, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": 35.511523969886724, - "c2": -33.41868388446652, - "c3": 25.315864866752364, - "c4": 24.8543058426729, - "c5": 26.791757880012796, - "c6": 3.971478710984691, - "c7": -8.865508318200384 + "points": { + "c1": 17.86252905295939, + "c2": -37.74372901189367, + "c3": -5.815439118039663, + "c4": -44.18498911991661, + "c5": 45.23687853177722, + "c6": -23.790220948042307, + "c7": 39.84706955311461 }, - "vertexSeeds": { - "c1": 10.025906735751295, - "c2": 10.025906735751295, - "c3": 10.025906735751295, - "c4": 10.025906735751295, - "c5": 10.025906735751295, - "c6": 10.025906735751295, - "c7": 10.025906735751295 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -301029,23 +301029,23 @@ "year": 1789, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 22.170383568543272, - "c2": -11.47225216145086, - "c3": 8.772648506833512, - "c4": -15.517632773769193, - "c5": 23.097904240576646, - "c6": 2.8832031048794704, - "c7": -24.818924513948573 + "points": { + "c1": -2.6616704049813293, + "c2": -29.646798955765643, + "c3": -11.294526159415167, + "c4": -4.606109241265159, + "c5": 33.74658858716484, + "c6": 28.444868417544114, + "c7": 36.20116905207749 }, - "vertexSeeds": { - "c1": 6.536462998534047, - "c2": 6.578928156418349, - "c3": 6.388274369077538, - "c4": 6.379087404561444, - "c5": 6.619246009559848, - "c6": 6.938081319585969, - "c7": 6.599644395245931 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533063, + "c4": 6.638927415626433, + "c5": 4.979195561719824, + "c6": 3.3194637078132163, + "c7": 1.6597318539066082 }, "rgb": [238, 201, 159] }, @@ -301056,23 +301056,23 @@ "year": 1789, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 11.127540858374502, - "c2": 13.5806002991826, - "c3": -1.9580439119920428, - "c4": -7.744993373215815, - "c5": 21.54638885890691, - "c6": 17.64432141678558, - "c7": -9.084719694697169 + "points": { + "c1": -21.995093527705166, + "c2": 22.580848772089304, + "c3": 10.257788197882249, + "c4": -0.7759755149648129, + "c5": -18.43769617386254, + "c6": 11.075624233287826, + "c7": 3.9574450908895535 }, - "vertexSeeds": { - "c1": 6.740580503386895, - "c2": 6.349776793142606, - "c3": 5.91060175485051, - "c4": 6.67985039002496, - "c5": 6.468624765603902, - "c6": 6.1060324996853605, - "c7": 6.334814319708765 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278784, + "c3": 8.206195099398979, + "c4": 6.564956079519189, + "c5": 4.923717059639386, + "c6": 3.2824780397595945, + "c7": 1.641239019879804 }, "rgb": [58, 15, 49] }, @@ -301083,23 +301083,23 @@ "year": 1789, "resistanceReported": true, "duration": 16416000, - "curveSeeds": { - "c1": 20.035794479025473, - "c2": 24.23947025320125, - "c3": 0.3638356038933317, - "c4": 17.244529575112335, - "c5": -0.3383225044481719, - "c6": 9.060278569253395, - "c7": -21.84980878867407 + "points": { + "c1": 28.168990662953814, + "c2": -13.410918139282636, + "c3": -8.942179490535768, + "c4": 0.09644622813991433, + "c5": -13.837907160460162, + "c6": -15.290987921089197, + "c7": 2.298463886494101 }, - "vertexSeeds": { - "c1": 0.6573374355122722, - "c2": 0.6160865506352062, - "c3": 0.5710947579826877, - "c4": 0.6231367932618379, - "c5": 0.6401078555833447, - "c6": 0.6047005245774691, - "c7": 0.5581534180221833 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.9708737864077672, + "c3": 0.8090614886731397, + "c4": 0.647249190938512, + "c5": 0.4854368932038836, + "c6": 0.3236245954692553, + "c7": 0.16181229773462766 }, "rgb": [58, 15, 49] }, @@ -301110,23 +301110,23 @@ "year": 1790, "resistanceReported": false, "duration": 42422400, - "curveSeeds": { - "c1": 41.98792881547492, - "c2": -52.13419976192856, - "c3": -51.49056102294983, - "c4": 26.9672409868325, - "c5": -10.863543734453373, - "c6": 44.67434912068932, - "c7": 11.507759070944225 + "points": { + "c1": -27.39866543238597, + "c2": -10.121311273445691, + "c3": -40.46535414633167, + "c4": 20.473013173655595, + "c5": -16.84638854987194, + "c6": 48.75849608794167, + "c7": 38.284171468402526 }, - "vertexSeeds": { - "c1": 4.439291909186514, - "c2": 4.439927252603873, - "c3": 3.77831644766832, - "c4": 5.3363008196651665, - "c5": 4.302381425396025, - "c6": 4.908910681914046, - "c7": 4.454144521143576 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221914, + "c3": 6.449375866851595, + "c4": 5.159500693481275, + "c5": 3.8696255201109553, + "c6": 2.579750346740636, + "c7": 1.2898751733703195 }, "rgb": [58, 15, 49] }, @@ -301137,23 +301137,23 @@ "year": 1789, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 28.29661635950268, - "c2": -12.986427974752964, - "c3": -33.188010448727944, - "c4": 18.330931741752387, - "c5": 9.87826254301062, - "c6": 2.7120643049613875, - "c7": 17.92686949316628 + "points": { + "c1": 14.217458531520371, + "c2": -29.783141333311324, + "c3": -31.029082822138292, + "c4": -11.721925489250044, + "c5": -24.169686540238324, + "c6": -4.5981384535223455, + "c7": -10.047150207075283 }, - "vertexSeeds": { - "c1": 0.8953305581724511, - "c2": 0.8813307175057562, - "c3": 0.8708157431760226, - "c4": 0.8552569712040129, - "c5": 0.9064077183308384, - "c6": 0.9089790116648748, - "c7": 0.8903463804144163 + "offsets": { + "c1": 1.5857605177993526, + "c2": 1.3592233009708745, + "c3": 1.1326860841423936, + "c4": 0.9061488673139153, + "c5": 0.6796116504854373, + "c6": 0.4530744336569591, + "c7": 0.22653721682847813 }, "rgb": [86, 146, 138] }, @@ -301164,23 +301164,23 @@ "year": 1790, "resistanceReported": false, "duration": 45878400, - "curveSeeds": { - "c1": -42.791797015492904, - "c2": -41.83571717555491, - "c3": 35.425090786295705, - "c4": 11.188314595415243, - "c5": -20.686137588556264, - "c6": -5.21325953647932, - "c7": 45.87077610450972 + "points": { + "c1": 58.11451655531865, + "c2": -54.63566879338764, + "c3": 25.481806810009623, + "c4": -53.488710335615885, + "c5": 50.87468163495864, + "c6": 48.34588129200716, + "c7": 18.89264278532277 }, - "vertexSeeds": { - "c1": 8.052825253631266, - "c2": 8.663136786128385, - "c3": 7.957226428151801, - "c4": 7.9195241517708155, - "c5": 8.049289779567477, - "c6": 7.595020385254162, - "c7": 7.757082309586308 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226078, + "c3": 11.049468331021728, + "c4": 8.83957466481738, + "c5": 6.629680998613039, + "c6": 4.4197873324086965, + "c7": 2.2098936662043482 }, "rgb": [77, 76, 132] }, @@ -301191,23 +301191,23 @@ "year": 1789, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -7.0684982246879215, - "c2": 14.243336955874888, - "c3": 26.65139180097364, - "c4": -8.142752783174476, - "c5": 30.751237107276282, - "c6": 4.449449611021365, - "c7": 8.379343689600283 + "points": { + "c1": 21.973167603573145, + "c2": 10.857919197370641, + "c3": -24.730168658611387, + "c4": -22.290224729032797, + "c5": -31.128910412496165, + "c6": -24.11256637277681, + "c7": -19.52132802779777 }, - "vertexSeeds": { - "c1": 1.1232799809929155, - "c2": 1.1249966355681889, - "c3": 1.1064290741994265, - "c4": 1.1576884919610988, - "c5": 1.0958333622541419, - "c6": 1.1425469419913958, - "c7": 1.1414455751693426 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535378, + "c3": 1.4100785945446126, + "c4": 1.1280628756356907, + "c5": 0.8460471567267689, + "c6": 0.5640314378178436, + "c7": 0.2820157189089218 }, "rgb": [238, 201, 159] }, @@ -301218,23 +301218,23 @@ "year": 1789, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 27.62340534951953, - "c2": -11.352368595963807, - "c3": 12.500147695569389, - "c4": 10.065941455918392, - "c5": -1.0496708480403178, - "c6": -19.281332769302637, - "c7": -6.499031132392222 + "points": { + "c1": -23.61682978651269, + "c2": -11.04956718840565, + "c3": 7.237147813108436, + "c4": 31.872463468959147, + "c5": 13.186716849676877, + "c6": -4.336146676247633, + "c7": 4.5018055225196605 }, - "vertexSeeds": { - "c1": 3.2856139538575206, - "c2": 3.280278835226982, - "c3": 3.3852704182082336, - "c4": 3.314304238635217, - "c5": 3.2589402260659277, - "c6": 3.255829449420875, - "c7": 3.36547151243337 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320388, + "c3": 4.207119741100324, + "c4": 3.3656957928802584, + "c5": 2.524271844660194, + "c6": 1.6828478964401292, + "c7": 0.8414239482200646 }, "rgb": [222, 0, 59] }, @@ -301245,23 +301245,23 @@ "year": 1789, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 14.518898313729984, - "c2": 12.948433361317058, - "c3": -33.89468099633091, - "c4": -26.79487682358681, - "c5": -1.8166975303948973, - "c6": 17.6789429031382, - "c7": -35.71219725191699 + "points": { + "c1": -4.507295785782944, + "c2": -15.362922915175016, + "c3": 16.71641382598785, + "c4": -5.498731517822357, + "c5": 22.30026459303251, + "c6": -34.82654185214761, + "c7": -36.39125879742668 }, - "vertexSeeds": { - "c1": 1.7686696169753253, - "c2": 1.7965111717072804, - "c3": 1.8268567327229823, - "c4": 1.7708237629656864, - "c5": 1.8296451441938857, - "c6": 1.847470108300431, - "c7": 1.882681872888347 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981969, + "c3": 2.2884882108183078, + "c4": 1.8307905686546462, + "c5": 1.3730929264909846, + "c6": 0.9153952843273231, + "c7": 0.45769764216366154 }, "rgb": [238, 201, 159] }, @@ -301272,23 +301272,23 @@ "year": 1789, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": -28.04904025558345, - "c2": 21.046828017585725, - "c3": -1.3352540887898812, - "c4": -20.901190124080735, - "c5": -47.565093474209796, - "c6": 28.87785826647867, - "c7": -41.194789822895274 + "points": { + "c1": -28.30209420149635, + "c2": -14.14587719034099, + "c3": -35.778810747553706, + "c4": 46.88508480254286, + "c5": -0.5223660315938758, + "c6": -43.42236377950747, + "c7": 13.4973953460905 }, - "vertexSeeds": { - "c1": 9.842648426852659, - "c2": 9.68613641003229, - "c3": 9.834633132975874, - "c4": 9.71631083518281, - "c5": 10.204115434701524, - "c6": 9.815834303624548, - "c7": 9.67108622671695 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599161, + "c3": 12.413314840499293, + "c4": 9.93065187239947, + "c5": 7.447988904299581, + "c6": 4.965325936199735, + "c7": 2.4826629680998673 }, "rgb": [222, 0, 59] }, @@ -301299,23 +301299,23 @@ "year": 1790, "resistanceReported": false, "duration": 43977600, - "curveSeeds": { - "c1": -50.928711691317936, - "c2": 20.967512908528583, - "c3": -49.49245004377621, - "c4": 46.03948060347094, - "c5": -8.680745725388007, - "c6": -50.48006061390192, - "c7": 56.44249102453035 + "points": { + "c1": -58.40273924276668, + "c2": -18.882314854993943, + "c3": -22.933948841033526, + "c4": 3.501049953624758, + "c5": -5.971217243597735, + "c6": 57.04109788322295, + "c7": -27.061822288216895 }, - "vertexSeeds": { - "c1": 3.7186042569796367, - "c2": 3.7606591347775113, - "c3": 4.014234908352404, - "c4": 3.8761702788773076, - "c5": 3.8014186096636653, - "c6": 3.774161293705642, - "c7": 3.956148178634126 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406376, + "c3": 4.831252889505318, + "c4": 3.8650023116042505, + "c5": 2.898751733703193, + "c6": 1.9325011558021252, + "c7": 0.9662505779010573 }, "rgb": [222, 0, 59] }, @@ -301326,23 +301326,23 @@ "year": 1789, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 3.932649036352341, - "c2": 9.463662891238364, - "c3": -18.862519906873786, - "c4": 4.526761808986091, - "c5": 12.920997380952251, - "c6": 18.842772037417745, - "c7": 15.778301202145897 + "points": { + "c1": -3.549030378972507, + "c2": -4.954882913124418, + "c3": -2.541016152836775, + "c4": 5.514602265768303, + "c5": 4.374624591548887, + "c6": -19.22179724422851, + "c7": -18.638898988029265 }, - "vertexSeeds": { - "c1": 4.601731115923163, - "c2": 4.579099041671699, - "c3": 4.572367431531433, - "c4": 4.594446543163588, - "c5": 4.579779603563681, - "c6": 4.564532668864749, - "c7": 4.586230470894661 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572792, + "c3": 5.501618122977354, + "c4": 4.401294498381862, + "c5": 3.3009708737864236, + "c6": 2.200647249190931, + "c7": 1.1003236245954928 }, "rgb": [86, 146, 138] }, @@ -301353,23 +301353,23 @@ "year": 1789, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -9.692448004327321, - "c2": 20.88476309189162, - "c3": 27.77481576062854, - "c4": -23.232389260209743, - "c5": 17.532909220631197, - "c6": 31.860603112368636, - "c7": 10.907270430682303 + "points": { + "c1": 39.47834164026558, + "c2": -33.70828607776156, + "c3": -2.5526692815039596, + "c4": -24.57913089697862, + "c5": 7.753664865277116, + "c6": -29.349547483039068, + "c7": 21.09706804339249 }, - "vertexSeeds": { - "c1": 5.797650394769474, - "c2": 5.363613196844851, - "c3": 5.8594804215394305, - "c4": 5.76958131200267, - "c5": 5.5410869032440555, - "c6": 5.606006229026558, - "c7": 5.547515379700101 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187249, + "c3": 7.00416088765603, + "c4": 5.603328710124833, + "c5": 4.2024965325936146, + "c6": 2.8016643550624165, + "c7": 1.4008321775311978 }, "rgb": [222, 0, 59] }, @@ -301380,23 +301380,23 @@ "year": 1789, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -32.17672561448839, - "c2": -29.1075242069067, - "c3": -19.718904868260825, - "c4": 4.3338328933504755, - "c5": 6.776526835301063, - "c6": -6.3574952345685, - "c7": 9.780256353701517 + "points": { + "c1": 14.811664308744923, + "c2": -18.24182201149803, + "c3": -7.7799443007283315, + "c4": -34.09049487938738, + "c5": -3.151334124865759, + "c6": -15.537105621521551, + "c7": -33.168503793795296 }, - "vertexSeeds": { - "c1": 1.942312070902493, - "c2": 2.3612946736689944, - "c3": 2.3111321465668775, - "c4": 2.179485964729958, - "c5": 2.1566155039179553, - "c6": 2.2913859890381048, - "c7": 2.3477315210132046 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.661581137309292, + "c3": 3.0513176144244105, + "c4": 2.441054091539528, + "c5": 1.8307905686546468, + "c6": 1.220527045769764, + "c7": 0.610263522884881 }, "rgb": [77, 76, 132] }, @@ -301407,23 +301407,23 @@ "year": 1789, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -24.202008556288927, - "c2": 21.7635035270672, - "c3": 13.567559323411821, - "c4": 7.966172170045908, - "c5": -11.127721597652315, - "c6": -13.846815945192748, - "c7": 30.617571251557266 + "points": { + "c1": 23.153026216683983, + "c2": -30.475276849641336, + "c3": -16.089953339510725, + "c4": 23.449090646699, + "c5": 1.2367515555593016, + "c6": 24.947859429459058, + "c7": -0.17461220849219927 }, - "vertexSeeds": { - "c1": 8.92013916811476, - "c2": 9.271465344087444, - "c3": 9.253111836132119, - "c4": 9.448088483068538, - "c5": 9.495475197529819, - "c6": 9.395996696156269, - "c7": 9.594044991127888 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.758668515950061, + "c3": 11.465557096625062, + "c4": 9.172445677300042, + "c5": 6.879334257975041, + "c6": 4.586222838650021, + "c7": 2.2931114193249997 }, "rgb": [86, 146, 138] }, @@ -301434,23 +301434,23 @@ "year": 1789, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": 9.106408871406241, - "c2": 18.418044293091818, - "c3": 6.379960840405516, - "c4": 3.4531721094106054, - "c5": 11.910498472395837, - "c6": -14.125445243110933, - "c7": -15.948984956760988 + "points": { + "c1": -10.922108737053936, + "c2": 13.188336687040675, + "c3": -15.020618413222142, + "c4": 20.36407036469283, + "c5": -7.814408895521346, + "c6": 16.192823025140925, + "c7": -8.165026522363187 }, - "vertexSeeds": { - "c1": 4.078206559224932, - "c2": 4.0605723619079805, - "c3": 4.066755063658387, - "c4": 4.048196454181408, - "c5": 4.0895272551744055, - "c6": 4.048219450875454, - "c7": 4.076414290403748 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [222, 0, 59] }, @@ -301461,23 +301461,23 @@ "year": 1789, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -0.7061419145902796, - "c2": -3.753121550388652, - "c3": 3.757189547275278, - "c4": 7.575470735448786, - "c5": -29.508689946372737, - "c6": 18.145456756357905, - "c7": -16.609386322442006 + "points": { + "c1": -17.544036394977887, + "c2": -25.408789578204072, + "c3": 0.03334179951249183, + "c4": -27.323253078238285, + "c5": -3.208097175547575, + "c6": 14.866323006781233, + "c7": -22.078824469557816 }, - "vertexSeeds": { - "c1": 2.688459952233846, - "c2": 2.4236540966550613, - "c3": 2.717593828953598, - "c4": 2.459014398540835, - "c5": 2.4603189513428845, - "c6": 2.6749753895440302, - "c7": 2.662534966318584 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751732, + "c3": 3.305594082293108, + "c4": 2.644475265834491, + "c5": 1.9833564493758675, + "c6": 1.3222376329172438, + "c7": 0.6611188164586203 }, "rgb": [77, 76, 132] }, @@ -301488,23 +301488,23 @@ "year": 1789, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -5.032623754776459, - "c2": -22.8850726042563, - "c3": 26.760589564005407, - "c4": -2.248686922978667, - "c5": -9.450643979443843, - "c6": -27.34300664685773, - "c7": 14.688102062942868 + "points": { + "c1": -8.970636445827132, + "c2": -0.49368737923989414, + "c3": -12.35473339028503, + "c4": 31.7765862239562, + "c5": -4.915375712617394, + "c6": 4.231300087964229, + "c7": 27.18796179868974 }, - "vertexSeeds": { - "c1": 3.2518732815234594, - "c2": 3.262199375208944, - "c3": 3.2396773357784596, - "c4": 3.2185611271342838, - "c5": 3.2698242692780743, - "c6": 3.2424351632726993, - "c7": 3.2187641470856074 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636611, + "c3": 3.8141470180305057, + "c4": 3.0513176144243994, + "c5": 2.288488210818293, + "c6": 1.5256588072122124, + "c7": 0.7628294036061062 }, "rgb": [222, 0, 59] }, @@ -301515,23 +301515,23 @@ "year": 1789, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 17.439783290752917, - "c2": 20.539168317731356, - "c3": -1.0562232515579737, - "c4": -1.8097980788685852, - "c5": -23.995346345941947, - "c6": -15.534170279922266, - "c7": -14.152189633433824 + "points": { + "c1": 28.07463481060474, + "c2": 9.326533641196288, + "c3": -28.960357142384858, + "c4": 15.762680926248382, + "c5": -29.34852803742512, + "c6": 21.98375262110368, + "c7": -24.7549858354724 }, - "vertexSeeds": { - "c1": 9.459178825134215, - "c2": 10.508309149948147, - "c3": 10.60482729870637, - "c4": 9.301787923700353, - "c5": 10.292445764450157, - "c6": 10.422960532179559, - "c7": 9.382192405498452 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323154, + "c3": 12.829403606102641, + "c4": 10.263522884882102, + "c5": 7.697642163661577, + "c6": 5.131761442441051, + "c7": 2.5658807212205255 }, "rgb": [77, 76, 132] }, @@ -301542,23 +301542,23 @@ "year": 1789, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -33.89136145006677, - "c2": 8.540203909218931, - "c3": -5.755793050633422, - "c4": 39.11216060733384, - "c5": -17.016359344126407, - "c6": 17.13422854847476, - "c7": 25.12501231752966 + "points": { + "c1": -4.804031522074915, + "c2": -14.094183359753934, + "c3": 48.29396625094943, + "c4": 42.06690580713258, + "c5": 7.331833556681929, + "c6": -22.298696373464104, + "c7": -8.04173623067097 }, - "vertexSeeds": { - "c1": 4.621951174410869, - "c2": 4.606139929045892, - "c3": 4.605658719830314, - "c4": 4.623530755522031, - "c5": 4.623195882708944, - "c6": 4.622085440897324, - "c7": 4.617056346816075 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613069, + "c3": 5.524734165510927, + "c4": 4.419787332408786, + "c5": 3.3148404993064244, + "c6": 2.209893666204283, + "c7": 1.1049468331021415 }, "rgb": [222, 0, 59] }, @@ -301569,23 +301569,23 @@ "year": 1789, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -16.24546069831192, - "c2": -23.151573684222175, - "c3": 39.96581623436118, - "c4": -25.054879439499086, - "c5": 41.66078138261394, - "c6": -15.412095563671443, - "c7": -21.039497823640957 + "points": { + "c1": 26.348424096227, + "c2": 43.121803757839224, + "c3": -36.62666300599645, + "c4": 27.719544621581655, + "c5": 27.001797414383354, + "c6": 31.748149359957416, + "c7": 7.027488289773679 }, - "vertexSeeds": { - "c1": 8.49006252846835, - "c2": 8.493873440590232, - "c3": 8.79281962646652, - "c4": 8.338775599523963, - "c5": 8.523148497524621, - "c6": 8.320592178830257, - "c7": 8.20889635609542 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582524, + "c3": 10.679611650485437, + "c4": 8.54368932038835, + "c5": 6.407766990291262, + "c6": 4.271844660194175, + "c7": 2.1359223300970873 }, "rgb": [77, 76, 132] }, @@ -301596,23 +301596,23 @@ "year": 1789, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -21.36198309610129, - "c2": -4.686486644200329, - "c3": 27.382541976409094, - "c4": 26.19930960644814, - "c5": 2.3095810897203677, - "c6": 28.45060978330328, - "c7": 27.732333768737625 + "points": { + "c1": -19.77164767494712, + "c2": -6.831026119110344, + "c3": 29.804070042327254, + "c4": -6.319108428774317, + "c5": 30.55143599444162, + "c6": 17.77611099195731, + "c7": -32.740470586586504 }, - "vertexSeeds": { - "c1": 2.8557926619370586, - "c2": 2.9653930280845504, - "c3": 3.140437693946534, - "c4": 2.65228494328135, - "c5": 2.5415846343968767, - "c6": 2.7138951443298924, - "c7": 2.7730231772637457 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717061, + "c3": 3.860379103097549, + "c4": 3.0883032824780408, + "c5": 2.316227461858529, + "c6": 1.5441516412390204, + "c7": 0.7720758206195122 }, "rgb": [222, 0, 59] }, @@ -301623,23 +301623,23 @@ "year": 1789, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 1.8631997459376066, - "c2": -0.8064083336498591, - "c3": 24.925446681940006, - "c4": -14.253569887495798, - "c5": -13.82512655625977, - "c6": -14.107448417112131, - "c7": 21.521085297561417 + "points": { + "c1": -9.170873375643517, + "c2": 5.149629004042811, + "c3": -8.544105867051353, + "c4": -17.06506471512323, + "c5": -14.784041841202301, + "c6": -20.409004567500553, + "c7": 5.249412366190835 }, - "vertexSeeds": { - "c1": 7.478592082317944, - "c2": 7.6091622677750514, - "c3": 7.583070277736155, - "c4": 7.51382404748457, - "c5": 6.9796251609951225, - "c6": 7.463128793340933, - "c7": 6.601420181490097 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.92926490984743, + "c3": 9.107720758206197, + "c4": 7.286176606564953, + "c5": 5.464632454923722, + "c6": 3.6430883032824766, + "c7": 1.8215441516412447 }, "rgb": [86, 146, 138] }, @@ -301650,23 +301650,23 @@ "year": 1789, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -8.806914426121867, - "c2": -7.7318970844443236, - "c3": 17.482061926680636, - "c4": 14.42167734491509, - "c5": 13.600522039590153, - "c6": 28.759498870924702, - "c7": 10.483501313476829 + "points": { + "c1": 10.930286378312779, + "c2": 24.107231619308656, + "c3": -5.883479029694552, + "c4": -23.88381127834852, + "c5": -21.62388370888864, + "c6": -5.578628057805279, + "c7": -5.911452579377908 }, - "vertexSeeds": { - "c1": 3.2859044812485756, - "c2": 3.326235047391707, - "c3": 3.2849826974206247, - "c4": 3.2896759243643774, - "c5": 3.275886853076073, - "c6": 3.327267429927371, - "c7": 3.2844575853787874 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958374, + "c3": 3.999075358298665, + "c4": 3.199260286638916, + "c5": 2.399445214979207, + "c6": 1.599630143319458, + "c7": 0.7998150716597489 }, "rgb": [86, 146, 138] }, @@ -301677,23 +301677,23 @@ "year": 1789, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 19.393971260161834, - "c2": -4.091807738430763, - "c3": -19.18696243919849, - "c4": -11.874038956809748, - "c5": 26.632589844158524, - "c6": -20.27205403885263, - "c7": 16.68188707754293 + "points": { + "c1": 1.0327950446663507, + "c2": -20.900605375650443, + "c3": 9.810197184205812, + "c4": -29.523619843912968, + "c5": -1.50605114689737, + "c6": -20.777047969622693, + "c7": 21.67440726343714 }, - "vertexSeeds": { - "c1": 5.791073817813113, - "c2": 5.778442752645197, - "c3": 5.4756004019224, - "c4": 5.499952986967662, - "c5": 5.666369578491478, - "c6": 5.795808467672434, - "c7": 5.71230551681101 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066562, + "c3": 6.934812760055482, + "c4": 5.547850208044376, + "c5": 4.160887656033294, + "c6": 2.773925104022188, + "c7": 1.3869625520111062 }, "rgb": [238, 201, 159] }, @@ -301704,23 +301704,23 @@ "year": 1789, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": 12.531815082320605, - "c2": -1.0927816546674478, - "c3": 3.2384087927147718, - "c4": 4.039287805883216, - "c5": 12.025972497897747, - "c6": -19.22268901920966, - "c7": -6.7919462113551194 + "points": { + "c1": 4.866786314471927, + "c2": 10.492120246765552, + "c3": -15.242622101877451, + "c4": -14.058108808315685, + "c5": -2.184035550214709, + "c6": 19.51515743541553, + "c7": 21.013322425652063 }, - "vertexSeeds": { - "c1": 8.304315233009255, - "c2": 8.325811920899891, - "c3": 8.315729181816893, - "c4": 8.31747385290898, - "c5": 8.324244638129185, - "c6": 8.33542256356317, - "c7": 8.316686184942512 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.92787794729548, + "c3": 9.939898289412966, + "c4": 7.951918631530452, + "c5": 5.963938973647542, + "c6": 3.975959315765028, + "c7": 1.987979657882514 }, "rgb": [77, 76, 132] }, @@ -301731,23 +301731,23 @@ "year": 1789, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 25.5884195360315, - "c2": -22.20037543772056, - "c3": 24.66006639103477, - "c4": 23.44123887150405, - "c5": -1.1890135837288227, - "c6": -15.416934273860564, - "c7": 17.32575163064406 + "points": { + "c1": 31.267119590944606, + "c2": -9.748912141504558, + "c3": 30.071601197793083, + "c4": 5.471765138862512, + "c5": 25.825483820123157, + "c6": -12.993819167193017, + "c7": 21.04682343928558 }, - "vertexSeeds": { - "c1": 9.472322410204418, - "c2": 9.565088244648916, - "c3": 9.5099479478608, - "c4": 9.588535582342052, - "c5": 9.479724828731351, - "c6": 9.604418559888465, - "c7": 9.546430558736638 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.75866851595002, + "c3": 11.465557096625075, + "c4": 9.172445677300015, + "c5": 6.879334257975068, + "c6": 4.5862228386500075, + "c7": 2.2931114193250606 }, "rgb": [238, 201, 159] }, @@ -301758,23 +301758,23 @@ "year": 1789, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -11.902779519821657, - "c2": -5.425652952130605, - "c3": 4.251972711843763, - "c4": 5.122214364841163, - "c5": 22.358275289584334, - "c6": 14.735251455423494, - "c7": 0.26785695237426665 + "points": { + "c1": 14.009821385152485, + "c2": 11.350070391628506, + "c3": 5.141381878093, + "c4": -17.826455218694537, + "c5": 7.732330980370385, + "c6": 11.94055658447656, + "c7": 14.799654601762512 }, - "vertexSeeds": { - "c1": 0.46632124352331605, - "c2": 0.46632124352331605, - "c3": 0.46632124352331605, - "c4": 0.46632124352331605, - "c5": 0.46632124352331605, - "c6": 0.46632124352331605, - "c7": 0.46632124352331605 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -301785,23 +301785,23 @@ "year": 1789, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -16.86144526650817, - "c2": -8.12509590879798, - "c3": -7.323053764906433, - "c4": 0.7989717629308579, - "c5": -17.19881846299335, - "c6": -18.113340246287066, - "c7": 6.35373367402687 + "points": { + "c1": -17.575060040631342, + "c2": -7.136902558631711, + "c3": -14.763787239935365, + "c4": -29.60240718765884, + "c5": -27.660229585995687, + "c6": 11.493910766049034, + "c7": 30.030905141421954 }, - "vertexSeeds": { - "c1": 4.362419814130741, - "c2": 3.910728157216377, - "c3": 4.452830709646823, - "c4": 4.233461172132103, - "c5": 5.0526512652805735, - "c6": 4.4536195309746445, - "c7": 4.33477699037927 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538141, + "c3": 6.056403143781785, + "c4": 4.845122515025427, + "c5": 3.6338418862690722, + "c6": 2.4225612575127133, + "c7": 1.211280628756355 }, "rgb": [77, 76, 132] }, @@ -301812,23 +301812,23 @@ "year": 1789, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 1.1171857125907891, - "c2": 10.57428374467262, - "c3": -26.971274392970873, - "c4": 14.497755124864135, - "c5": -17.517331777394755, - "c6": 6.235290256077306, - "c7": -21.027251812242085 + "points": { + "c1": -16.13281770263672, + "c2": -24.675774643980738, + "c3": -2.6316269115455917, + "c4": 26.706096842858223, + "c5": 27.857880649077067, + "c6": -19.059830856354722, + "c7": 17.61942947186474 }, - "vertexSeeds": { - "c1": 3.0183119263077502, - "c2": 2.9857591616585566, - "c3": 2.8657394763082715, - "c4": 2.8613329941338965, - "c5": 3.007808599807827, - "c6": 2.811644336055709, - "c7": 2.770542228542823 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314844, + "c3": 3.629218677762366, + "c4": 2.9033749422098962, + "c5": 2.177531206657418, + "c6": 1.4516874711049481, + "c7": 0.7258437355524783 }, "rgb": [58, 15, 49] }, @@ -301839,23 +301839,23 @@ "year": 1789, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": -28.457991408850578, - "c2": -32.88144318712392, - "c3": 24.885867455870233, - "c4": 48.37616953049112, - "c5": 20.029376828721063, - "c6": 42.237887092987215, - "c7": 19.19212840458423 + "points": { + "c1": 0.8553527780172914, + "c2": -10.183659218615539, + "c3": 7.70221998129594, + "c4": 45.777472014206744, + "c5": -7.456200542566293, + "c6": 31.06363009107377, + "c7": 7.237626659167695 }, - "vertexSeeds": { - "c1": 6.850659136978036, - "c2": 6.622261915378657, - "c3": 7.204113214063809, - "c4": 6.550690828108648, - "c5": 6.781105318696024, - "c6": 6.746921024874595, - "c7": 7.1760059976386055 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083217, + "c3": 8.668515950069343, + "c4": 6.934812760055472, + "c5": 5.2011095700416, + "c6": 3.467406380027744, + "c7": 1.733703190013872 }, "rgb": [58, 15, 49] }, @@ -301866,23 +301866,23 @@ "year": 1789, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 1.2195187110096555, - "c2": -15.029243458744912, - "c3": 40.52856803794856, - "c4": 39.86617996807783, - "c5": -12.309124538996336, - "c6": -2.546291403223634, - "c7": 20.44071128156463 + "points": { + "c1": -20.908123500728806, + "c2": -9.028561346505356, + "c3": 15.98346307772384, + "c4": -33.0556300637179, + "c5": -22.882048191608053, + "c6": 45.497986933945214, + "c7": -29.690042914394944 }, - "vertexSeeds": { - "c1": 4.0351890173291185, - "c2": 4.173604089490173, - "c3": 3.9457164845434187, - "c4": 4.177197866326636, - "c5": 4.031181176521683, - "c6": 3.916116617768628, - "c7": 3.9950406597491543 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [77, 76, 132] }, @@ -301893,23 +301893,23 @@ "year": 1789, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -5.856108387550748, - "c2": -30.734117578319402, - "c3": 18.298829767976986, - "c4": 11.257360716181903, - "c5": 2.955973394259072, - "c6": 12.691309904802434, - "c7": 9.569734952506156 + "points": { + "c1": -2.128537003413456, + "c2": -0.4077104584569753, + "c3": -17.132075075034955, + "c4": 7.538312946401426, + "c5": -8.70081239629113, + "c6": 15.152930275758045, + "c7": -0.185370361593435 }, - "vertexSeeds": { - "c1": 8.01373855002262, - "c2": 7.979166765575541, - "c3": 8.18548512639416, - "c4": 8.276953086594986, - "c5": 8.1333690491175, - "c6": 8.26947004637025, - "c7": 7.981609556327167 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295418, + "c3": 9.93989828941284, + "c4": 7.951918631530265, + "c5": 5.96393897364773, + "c6": 3.975959315765153, + "c7": 1.9879796578825766 }, "rgb": [58, 15, 49] }, @@ -301920,23 +301920,23 @@ "year": 1789, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -10.404921331793808, - "c2": -21.66261261089879, - "c3": -20.6043053424575, - "c4": -40.51863629603917, - "c5": -37.727126329767216, - "c6": -0.8169084908690678, - "c7": 3.654477449072715 + "points": { + "c1": -31.41499775362251, + "c2": 33.94802815134011, + "c3": -27.863265159287938, + "c4": 13.992100317892188, + "c5": -33.85717446773635, + "c6": 48.039957518305556, + "c7": 35.166736639303636 }, - "vertexSeeds": { - "c1": 1.4697105700179984, - "c2": 1.4793678133505976, - "c3": 1.5187554842228572, - "c4": 1.4396543922602543, - "c5": 1.4823118260697963, - "c6": 1.4745741169444895, - "c7": 1.470669199547355 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257973, + "c3": 1.872399445214982, + "c4": 1.4979195561719842, + "c5": 1.1234396671289866, + "c6": 0.748959778085989, + "c7": 0.37447988904299767 }, "rgb": [238, 201, 159] }, @@ -301947,23 +301947,23 @@ "year": 1789, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 6.736702957834542, - "c2": -5.358006368812202, - "c3": 20.67227483744757, - "c4": 4.435369198724775, - "c5": 24.96137735081106, - "c6": -5.888723303388886, - "c7": 22.518522187156325 + "points": { + "c1": -5.785005211725952, + "c2": 0.2923327914644922, + "c3": 14.216119637785209, + "c4": 27.276433540985447, + "c5": 29.914481998277534, + "c6": 27.773125593777632, + "c7": 13.616032535670055 }, - "vertexSeeds": { - "c1": 3.0869567661178485, - "c2": 3.07693640116613, - "c3": 2.9065193085477103, - "c4": 3.1140947437459316, - "c5": 2.9214557496531843, - "c6": 2.9818386335274014, - "c7": 3.0869603262450473 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596394, + "c3": 3.791030975496995, + "c4": 3.0328247803975956, + "c5": 2.274618585298197, + "c6": 1.5164123901987978, + "c7": 0.7582061950993989 }, "rgb": [77, 76, 132] }, @@ -301974,23 +301974,23 @@ "year": 1789, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -23.17125991169525, - "c2": -25.004393867606318, - "c3": -28.34597397362219, - "c4": 33.518621769702904, - "c5": 23.66703840880311, - "c6": -32.216767442441494, - "c7": -6.068878412185946 + "points": { + "c1": 46.50093747378354, + "c2": -47.19828669138277, + "c3": -44.30342248910913, + "c4": -8.356849147895026, + "c5": -34.78899840339801, + "c6": 28.454443136117803, + "c7": -16.164665923996736 }, - "vertexSeeds": { - "c1": 2.5697895390255083, - "c2": 2.645298090308695, - "c3": 2.790663059012856, - "c4": 2.7671734574997884, - "c5": 2.856600035048419, - "c6": 2.8488965066679484, - "c7": 2.515242975831792 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993064, + "c3": 3.444290337494219, + "c4": 2.755432269995374, + "c5": 2.0665742024965357, + "c6": 1.3777161349976903, + "c7": 0.6888580674988452 }, "rgb": [58, 15, 49] }, @@ -302001,23 +302001,23 @@ "year": 1789, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 14.811492949132983, - "c2": 15.995831476815894, - "c3": -32.32425579231777, - "c4": 12.551190908519132, - "c5": -5.822420902896248, - "c6": 10.572029551244015, - "c7": 37.759769767187365 + "points": { + "c1": 11.746008106181428, + "c2": -15.420175557307541, + "c3": 23.75687432612432, + "c4": -12.680603851886477, + "c5": 26.93910805819, + "c6": 23.71628870771083, + "c7": 17.586101407277994 }, - "vertexSeeds": { - "c1": 12.291148802091172, - "c2": 12.725245660882614, - "c3": 12.47402380224378, - "c4": 12.231687077186583, - "c5": 12.499044567477485, - "c6": 12.243601686011072, - "c7": 12.234646241164516 + "offsets": { + "c1": 22.135922330097088, + "c2": 18.973647711511802, + "c3": 15.811373092926472, + "c4": 12.649098474341187, + "c5": 9.486823855755901, + "c6": 6.324549237170616, + "c7": 3.1622746185852857 }, "rgb": [222, 0, 59] }, @@ -302028,23 +302028,23 @@ "year": 1789, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 24.72580454116914, - "c2": 39.30880403464408, - "c3": -37.507918259085976, - "c4": -6.985946708027875, - "c5": 26.1247815434961, - "c6": -36.991274277031685, - "c7": -8.09350404516362 + "points": { + "c1": 9.075447804713782, + "c2": -16.22920086106283, + "c3": -0.9028837126859202, + "c4": -15.948544456933519, + "c5": 11.680520916037047, + "c6": 6.1684931048679985, + "c7": 49.26884546500834 }, - "vertexSeeds": { - "c1": 7.664880066325827, - "c2": 8.568748364606773, - "c3": 8.081402553415412, - "c4": 7.899423203067958, - "c5": 8.71612002257783, - "c6": 8.252516028922125, - "c7": 8.542527114480995 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099866, + "c3": 10.402219140083215, + "c4": 8.321775312066576, + "c5": 6.241331484049927, + "c6": 4.160887656033288, + "c7": 2.0804438280166506 }, "rgb": [77, 76, 132] }, @@ -302055,23 +302055,23 @@ "year": 1789, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -29.332019329195965, - "c2": 35.05317017896817, - "c3": -34.20200877619569, - "c4": 44.056362190003796, - "c5": 32.32308529171286, - "c6": 36.19231263594783, - "c7": 17.965667203275075 + "points": { + "c1": -0.8173095809031352, + "c2": -7.817626458775152, + "c3": -41.83660698061408, + "c4": 18.452438670958855, + "c5": 33.98800401318441, + "c6": 19.168995746885585, + "c7": -9.889088563848013 }, - "vertexSeeds": { - "c1": 4.010826491855688, - "c2": 4.202487806598836, - "c3": 3.9199542439669384, - "c4": 4.094847921618031, - "c5": 4.151353165099211, - "c6": 3.883485418831896, - "c7": 4.108230336459749 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [238, 201, 159] }, @@ -302082,23 +302082,23 @@ "year": 1789, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -23.000970657270216, - "c2": 4.897587075256354, - "c3": -29.48521794644535, - "c4": -46.38722867119491, - "c5": -43.02582020290297, - "c6": 28.74308825552744, - "c7": 8.175204972612327 + "points": { + "c1": 13.574174657619388, + "c2": 10.91130431567911, + "c3": 18.503749619870476, + "c4": 25.171823637040774, + "c5": 37.05470752243579, + "c6": 39.98703092548337, + "c7": -47.336491614387775 }, - "vertexSeeds": { - "c1": 4.2876308616558365, - "c2": 4.294672358081681, - "c3": 4.311795502457091, - "c4": 4.155336721308098, - "c5": 4.346100287176201, - "c6": 4.383969204746542, - "c7": 4.249029485439833 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130372, + "c3": 5.247341655108639, + "c4": 4.197873324086918, + "c5": 3.148404993065186, + "c6": 2.0989366620434535, + "c7": 1.0494683310217212 }, "rgb": [77, 76, 132] }, @@ -302109,23 +302109,23 @@ "year": 1789, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 3.0978221094012177, - "c2": 14.584187629534036, - "c3": 15.851995138371919, - "c4": 6.806679802393678, - "c5": -4.849139704657507, - "c6": 0.24952331533876304, - "c7": -10.469062901260713 + "points": { + "c1": 24.378709749564763, + "c2": -4.096194893546421, + "c3": -6.5357891552572305, + "c4": 4.5113727428169135, + "c5": -12.800405753630834, + "c6": 14.859184476926863, + "c7": -13.380709758818536 }, - "vertexSeeds": { - "c1": 5.816863284241948, - "c2": 6.025854367763192, - "c3": 5.920184095321045, - "c4": 5.94222411036026, - "c5": 6.105728732532905, - "c6": 5.997379826280631, - "c7": 5.95652754183385 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991674, + "c3": 7.466481738326393, + "c4": 5.9731853906611105, + "c5": 4.479889042995829, + "c6": 2.9865926953305477, + "c7": 1.4932963476652659 }, "rgb": [222, 0, 59] }, @@ -302136,23 +302136,23 @@ "year": 1789, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -44.060562905923234, - "c2": 23.516151961889264, - "c3": 15.301533985590929, - "c4": 0.27860835653597604, - "c5": 29.691516380976495, - "c6": -37.836198367839636, - "c7": -41.761392149486774 + "points": { + "c1": 28.872540668481307, + "c2": -42.55359827727655, + "c3": -19.279919814226165, + "c4": -12.063201340567055, + "c5": 9.193406378791238, + "c6": 28.714797062237096, + "c7": -28.57634665743255 }, - "vertexSeeds": { - "c1": 7.337142408620079, - "c2": 6.69335529336596, - "c3": 6.874342515880373, - "c4": 6.738472952802684, - "c5": 6.682290943769469, - "c6": 7.303156196965897, - "c7": 7.517271039596298 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.95700416088766, + "c3": 9.130836800739718, + "c4": 7.304669440591764, + "c5": 5.478502080443823, + "c6": 3.652334720295882, + "c7": 1.826167360147941 }, "rgb": [238, 201, 159] }, @@ -302163,23 +302163,23 @@ "year": 1789, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 3.086564936544292, - "c2": -10.465393462843911, - "c3": -14.528476536087096, - "c4": 3.3011019446411005, - "c5": -4.52550114632751, - "c6": -11.068325912984712, - "c7": 18.969527635166145 + "points": { + "c1": -8.652395428034644, + "c2": -7.5075757669968155, + "c3": 4.760753903927085, + "c4": -6.9035030316454815, + "c5": 14.968210555536508, + "c6": -10.423756078603702, + "c7": 8.404934792642187 }, - "vertexSeeds": { - "c1": 6.500301419344815, - "c2": 6.969579219039573, - "c3": 6.571198425962458, - "c4": 6.409039480195112, - "c5": 6.656036960822891, - "c6": 6.388979689146572, - "c7": 6.915704490187327 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560328, + "c3": 8.368007397133615, + "c4": 6.694405917706891, + "c5": 5.020804438280164, + "c6": 3.3472029588534387, + "c7": 1.6736014794267258 }, "rgb": [86, 146, 138] }, @@ -302190,23 +302190,23 @@ "year": 1789, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 29.78346138016216, - "c2": 34.0755664817299, - "c3": -17.357734252292673, - "c4": -4.295078077816925, - "c5": -18.098480541221004, - "c6": -7.661647875424375, - "c7": -27.798236690368604 + "points": { + "c1": -39.32029915034349, + "c2": 20.65262563561196, + "c3": 34.15289022376641, + "c4": -38.898345060447625, + "c5": -26.977160848361407, + "c6": -12.492775335769984, + "c7": 29.167475168794418 }, - "vertexSeeds": { - "c1": 5.730256580353699, - "c2": 5.618155533713626, - "c3": 5.409551745374432, - "c4": 5.638187650510017, - "c5": 5.274279418728323, - "c6": 5.495138002889656, - "c7": 5.512965702467386 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905692, + "c3": 6.842348589921396, + "c4": 5.473878871937121, + "c5": 4.105409153952846, + "c6": 2.7369394359685497, + "c7": 1.3684697179842749 }, "rgb": [77, 76, 132] }, @@ -302217,23 +302217,23 @@ "year": 1789, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 41.880454191154925, - "c2": -26.929058795020644, - "c3": 2.4633853007371513, - "c4": -2.0212359102187065, - "c5": 12.409934606184912, - "c6": 11.820723153149558, - "c7": 28.707629873471518 + "points": { + "c1": 32.41651124935812, + "c2": 32.3383092620404, + "c3": -18.110076284640634, + "c4": -15.606358618620973, + "c5": 24.829868978165976, + "c6": -25.71573397376801, + "c7": 18.48676758694542 }, - "vertexSeeds": { - "c1": 3.28500996426952, - "c2": 3.3399792533920722, - "c3": 3.3005885640703663, - "c4": 3.3124477406583535, - "c5": 3.3390886196592358, - "c6": 3.3452780083383864, - "c7": 3.3417871200051024 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038827, + "c3": 4.04530744336571, + "c4": 3.2362459546925617, + "c5": 2.4271844660194133, + "c6": 1.6181229773462644, + "c7": 0.8090614886731484 }, "rgb": [222, 0, 59] }, @@ -302244,23 +302244,23 @@ "year": 1789, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -5.048990634692164, - "c2": -11.887219722564378, - "c3": -19.83855419145664, - "c4": 26.74009980152082, - "c5": -15.29320963748847, - "c6": 6.594978815775342, - "c7": 21.852129241446626 + "points": { + "c1": 15.737557928207401, + "c2": 10.603186977685027, + "c3": 1.4632004265293403, + "c4": 1.5098323104977176, + "c5": -24.653812901220228, + "c6": 7.7425791032219, + "c7": 9.613854659334592 }, - "vertexSeeds": { - "c1": 4.039381578163988, - "c2": 4.026392060349577, - "c3": 3.9994986173521476, - "c4": 3.9544032586270426, - "c5": 3.953127689276365, - "c6": 3.9260369699419146, - "c7": 3.9541965373918666 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406376, + "c3": 4.831252889505308, + "c4": 3.86500231160424, + "c5": 2.898751733703172, + "c6": 1.932501155802136, + "c7": 0.966250577901068 }, "rgb": [77, 76, 132] }, @@ -302271,23 +302271,23 @@ "year": 1789, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -18.974187512413494, - "c2": -0.05279354772406464, - "c3": 7.60067229584908, - "c4": 20.45334362015187, - "c5": 14.711830102669943, - "c6": -0.30257718390493693, - "c7": 25.063747135213212 + "points": { + "c1": 2.538215489791348, + "c2": -23.431191726369455, + "c3": 32.272854116366936, + "c4": 35.461363015105654, + "c5": 17.779824096921587, + "c6": -8.469020542997587, + "c7": -5.723857598852387 }, - "vertexSeeds": { - "c1": 2.352698116973733, - "c2": 2.3507037092764778, - "c3": 2.3840264011601255, - "c4": 2.3861974829649175, - "c5": 2.3974899872778574, - "c6": 2.378250517538774, - "c7": 2.3564189030111553 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027741, + "c3": 2.8895053166897866, + "c4": 2.311604253351832, + "c5": 1.7337031900138633, + "c6": 1.1558021266759089, + "c7": 0.5779010633379544 }, "rgb": [238, 201, 159] }, @@ -302298,23 +302298,23 @@ "year": 1789, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -9.275617357387794, - "c2": -30.771655752124843, - "c3": -19.81137298374102, - "c4": -36.67465926079506, - "c5": -36.99968522880526, - "c6": -21.41110008460365, - "c7": -13.586353904735645 + "points": { + "c1": 33.3663948068764, + "c2": -45.34650270696364, + "c3": -44.730760370818935, + "c4": -1.2757918072870353, + "c5": 12.570774388039617, + "c6": 40.78514121810514, + "c7": 40.652645885451676 }, - "vertexSeeds": { - "c1": 8.822413388660832, - "c2": 8.91759006401398, - "c3": 8.638107295262122, - "c4": 8.861686481081838, - "c5": 8.701616985223332, - "c6": 8.227544971493028, - "c7": 8.470777943854317 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.89875173370319, + "c3": 10.748959778085991, + "c4": 8.599167822468793, + "c5": 6.449375866851595, + "c6": 4.2995839112343965, + "c7": 2.1497919556171983 }, "rgb": [77, 76, 132] }, @@ -302325,23 +302325,23 @@ "year": 1790, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 38.57031734133248, - "c2": 4.121053241073412, - "c3": -17.688038533693376, - "c4": 14.222679330513913, - "c5": 11.670918785803316, - "c6": -49.13077902702902, - "c7": 24.999247456430027 + "points": { + "c1": -23.236855669370904, + "c2": 43.83191756983625, + "c3": -43.62777799253711, + "c4": 31.313275821551358, + "c5": 12.054914665602467, + "c6": -9.11992378798508, + "c7": -13.265788461848082 }, - "vertexSeeds": { - "c1": 4.766994051525277, - "c2": 4.772367705470909, - "c3": 4.727428395348803, - "c4": 4.732271348024827, - "c5": 4.710433073949597, - "c6": 4.718941412843669, - "c7": 4.712886020253977 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069347875, + "c3": 5.7096625057790185, + "c4": 4.567730004623192, + "c5": 3.425797503467422, + "c6": 2.283865002311596, + "c7": 1.1419325011557695 }, "rgb": [77, 76, 132] }, @@ -302352,23 +302352,23 @@ "year": 1789, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -12.005392693164154, - "c2": 6.843946642059116, - "c3": -19.75655875239324, - "c4": 10.261320083130954, - "c5": 17.899783621282737, - "c6": 6.088500259079304, - "c7": -0.379014665561499 + "points": { + "c1": 4.3021238472234415, + "c2": 4.09265317258998, + "c3": 17.240862818494882, + "c4": 2.09297301015728, + "c5": 5.575477072107553, + "c6": -14.343514751404346, + "c7": -9.366512633994809 }, - "vertexSeeds": { - "c1": 6.511681907343833, - "c2": 6.730184766377504, - "c3": 6.849503091061788, - "c4": 6.367912861079054, - "c5": 6.795771814075029, - "c6": 6.4138521220992235, - "c7": 6.76735956353522 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -302379,23 +302379,23 @@ "year": 1790, "resistanceReported": false, "duration": 44496000, - "curveSeeds": { - "c1": 36.22249250861647, - "c2": -17.685133143203494, - "c3": 8.035568660268936, - "c4": 12.481121272867625, - "c5": 54.53902789358885, - "c6": 19.050207728701324, - "c7": -21.345066342709508 + "points": { + "c1": 54.39194302177833, + "c2": 12.53935402003792, + "c3": 35.42064136454978, + "c4": -49.079348319478754, + "c5": 48.107688887823514, + "c6": 12.394420723494036, + "c7": 36.56952963021256 }, - "vertexSeeds": { - "c1": 0.7280600485506559, - "c2": 0.7483409081124992, - "c3": 0.7416738891271673, - "c4": 0.7337137174834885, - "c5": 0.7483857343421385, - "c6": 0.7014874230273485, - "c7": 0.711810082477007 + "offsets": { + "c1": 1.2944983818770228, + "c2": 1.1095700416088758, + "c3": 0.9246417013407319, + "c4": 0.7397133610725849, + "c5": 0.5547850208044379, + "c6": 0.3698566805362909, + "c7": 0.184928340268147 }, "rgb": [86, 146, 138] }, @@ -302406,23 +302406,23 @@ "year": 1789, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 9.616651240077353, - "c2": 25.000096637826502, - "c3": 13.089386286096087, - "c4": -0.6451493877173604, - "c5": -20.701059499439452, - "c6": -30.045366662462595, - "c7": -28.713929927691545 + "points": { + "c1": -1.898716478242342, + "c2": -34.33237398493758, + "c3": -9.632979068534087, + "c4": 25.737614208401503, + "c5": 14.06985514437769, + "c6": 14.062306238504995, + "c7": -10.503484390597844 }, - "vertexSeeds": { - "c1": 4.969573362788047, - "c2": 4.842476512621013, - "c3": 4.878502406835236, - "c4": 4.900954460922431, - "c5": 4.969437771438273, - "c6": 4.848616696986302, - "c7": 4.934611334529382 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497909, + "c3": 6.033287101248268, + "c4": 4.826629680998617, + "c5": 3.6199722607489546, + "c6": 2.4133148404993032, + "c7": 1.2066574202496516 }, "rgb": [238, 201, 159] }, @@ -302433,23 +302433,23 @@ "year": 1790, "resistanceReported": false, "duration": 46915200, - "curveSeeds": { - "c1": 58.387205594909624, - "c2": -4.7813165904019215, - "c3": 4.469846317481192, - "c4": 49.25838988622717, - "c5": 9.467029383622112, - "c6": -45.039857080470995, - "c7": 14.415126253483727 + "points": { + "c1": -36.94111404433588, + "c2": 62.20886652946158, + "c3": -13.652118785637398, + "c4": -2.589714915978753, + "c5": 41.88583057502202, + "c6": 40.1270246755898, + "c7": -2.88411667177936 }, - "vertexSeeds": { - "c1": 3.3239533791315456, - "c2": 3.4554135945018527, - "c3": 3.268310677158416, - "c4": 3.3172930608520743, - "c5": 3.3162738708047983, - "c6": 3.4533787939579565, - "c7": 3.392008054615998 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033291, + "c4": 3.328710124826635, + "c5": 2.4965325936199787, + "c6": 1.6643550624133119, + "c7": 0.8321775312066559 }, "rgb": [86, 146, 138] }, @@ -302460,23 +302460,23 @@ "year": 1791, "resistanceReported": false, "duration": 67996800, - "curveSeeds": { - "c1": 74.08653144233921, - "c2": 64.59523660540913, - "c3": 83.54060113573462, - "c4": -18.47386130480629, - "c5": -8.340584289057261, - "c6": 78.2970779451147, - "c7": -38.08291368366369 + "points": { + "c1": 17.430171855532222, + "c2": 34.40307557887277, + "c3": -37.086417487830296, + "c4": 6.502944902104915, + "c5": -34.08026540999341, + "c6": 74.6743879616782, + "c7": -78.46700211829696 }, - "vertexSeeds": { - "c1": 8.070785193602656, - "c2": 9.178314520905618, - "c3": 8.289321111706608, - "c4": 9.43160978000827, - "c5": 7.3578289445281895, - "c6": 8.573671017653634, - "c7": 9.11636867644714 + "offsets": { + "c1": 16.86084142394822, + "c2": 14.452149791955616, + "c3": 12.043458159963015, + "c4": 9.634766527970411, + "c5": 7.226074895977808, + "c6": 4.817383263985206, + "c7": 2.408691631992603 }, "rgb": [86, 146, 138] }, @@ -302487,23 +302487,23 @@ "year": 1789, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 14.220194770575617, - "c2": 14.387666022875138, - "c3": 1.121933659201062, - "c4": 6.808869011315423, - "c5": -7.216163785511249, - "c6": -10.748095514664254, - "c7": -2.4272994709084834 + "points": { + "c1": 8.732608790716966, + "c2": 18.081616212819853, + "c3": 26.68747996895349, + "c4": 13.612951821416615, + "c5": -32.608895204537085, + "c6": -28.89739967665414, + "c7": 17.17582392733398 }, - "vertexSeeds": { - "c1": 8.615322095709809, - "c2": 8.341815570351878, - "c3": 9.495487579468914, - "c4": 9.122305555423084, - "c5": 9.443273773065881, - "c6": 9.199769183489588, - "c7": 8.510991087637947 + "offsets": { + "c1": 16.310679611650485, + "c2": 13.98058252427184, + "c3": 11.650485436893206, + "c4": 9.320388349514559, + "c5": 6.990291262135914, + "c6": 4.6601941747572795, + "c7": 2.3300970873786344 }, "rgb": [77, 76, 132] }, @@ -302514,23 +302514,23 @@ "year": 1789, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -39.7560295425986, - "c2": -11.24155501725599, - "c3": 30.129245858319578, - "c4": -19.781325516767147, - "c5": 25.84255912069078, - "c6": 25.854496620258814, - "c7": -18.499210126497935 + "points": { + "c1": 21.709632251736053, + "c2": 7.0018423581130875, + "c3": 18.454950022261876, + "c4": 24.539001338466946, + "c5": 36.30226391974739, + "c6": -15.0998588942286, + "c7": 15.43987589264303 }, - "vertexSeeds": { - "c1": 4.423560057632128, - "c2": 4.570401502879033, - "c3": 4.53023484889702, - "c4": 4.585178501309167, - "c5": 4.620209618141316, - "c6": 4.3850165832917085, - "c7": 4.678724132243791 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.8238557558945905, + "c3": 5.6865464632454925, + "c4": 4.549237170596394, + "c5": 3.4119278779472952, + "c6": 2.274618585298197, + "c7": 1.1373092926490984 }, "rgb": [222, 0, 59] }, @@ -302541,23 +302541,23 @@ "year": 1789, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 24.163464366319186, - "c2": -18.007548991163347, - "c3": 10.466487610448194, - "c4": 10.909288452300022, - "c5": 8.256322341707527, - "c6": 11.003563887073494, - "c7": 23.908725908165902 + "points": { + "c1": -27.733358599450472, + "c2": 23.90313014058277, + "c3": -22.009728382273963, + "c4": 25.619312284165336, + "c5": -15.724470188049535, + "c6": -6.110175546077464, + "c7": 3.815132454177796 }, - "vertexSeeds": { - "c1": 7.421993664125318, - "c2": 7.114907091312153, - "c3": 7.5127720864720775, - "c4": 7.407715505492474, - "c5": 7.182354621732718, - "c6": 7.2030260045502565, - "c7": 6.951675950500675 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289876, + "c3": 9.361997226074896, + "c4": 7.489597780859917, + "c5": 5.617198335644938, + "c6": 3.7447988904299585, + "c7": 1.8723994452149793 }, "rgb": [86, 146, 138] }, @@ -302568,23 +302568,23 @@ "year": 1789, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -12.474331174762437, - "c2": -34.19176158084507, - "c3": 2.479529622300923, - "c4": 15.124987013754698, - "c5": -28.208713410997483, - "c6": 9.759682850210922, - "c7": 27.51933629878767 + "points": { + "c1": -0.7866713078680476, + "c2": 24.983420884522126, + "c3": 3.9824573740290745, + "c4": 35.581513504900684, + "c5": -28.784735703418296, + "c6": -12.510608205492382, + "c7": 25.727975488352335 }, - "vertexSeeds": { - "c1": 2.3476570159953543, - "c2": 2.265800256505353, - "c3": 2.251878624861622, - "c4": 2.4472794723357496, - "c5": 2.4261780730565237, - "c6": 2.1977648339390496, - "c7": 2.202947324309224 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886284, + "c3": 2.9819694868238553, + "c4": 2.3855755894590858, + "c5": 1.7891816920943124, + "c6": 1.1927877947295429, + "c7": 0.5963938973647694 }, "rgb": [86, 146, 138] }, @@ -302595,23 +302595,23 @@ "year": 1790, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 41.601878562198934, - "c2": 42.374592683307114, - "c3": -35.580322740765695, - "c4": -41.62219318524868, - "c5": -14.296540261019217, - "c6": -27.698286072499382, - "c7": -28.306251512686096 + "points": { + "c1": -23.42464323032713, + "c2": 45.245041035591555, + "c3": -11.074092128831417, + "c4": 41.721046608042016, + "c5": 39.092054645751276, + "c6": 36.139573267331855, + "c7": -16.937138642276864 }, - "vertexSeeds": { - "c1": 6.291079507645716, - "c2": 5.9323636730268285, - "c3": 6.393148277729275, - "c4": 6.013588410519136, - "c5": 6.080988159673891, - "c6": 5.991217952988383, - "c7": 6.375352788711008 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [77, 76, 132] }, @@ -302622,23 +302622,23 @@ "year": 1789, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 7.022013680714728, - "c2": -20.05314376024311, - "c3": -4.913354392500327, - "c4": 4.648771185198477, - "c5": 10.029131281122076, - "c6": 17.141698163071652, - "c7": 12.32793149865767 + "points": { + "c1": 28.740169460746145, + "c2": -12.945349301067072, + "c3": 2.3186903785099418, + "c4": -15.891819917297411, + "c5": 25.21054937301679, + "c6": -28.50644211557757, + "c7": 27.62593522475092 }, - "vertexSeeds": { - "c1": 4.3009047684245365, - "c2": 4.364945356073674, - "c3": 4.088518050227219, - "c4": 4.163089634764443, - "c5": 4.257231635887413, - "c6": 4.145226361103341, - "c7": 4.138974719946506 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170593, + "c3": 5.270457697642168, + "c4": 4.216366158113732, + "c5": 3.1622746185852963, + "c6": 2.1081830790568716, + "c7": 1.0540915395284358 }, "rgb": [58, 15, 49] }, @@ -302649,23 +302649,23 @@ "year": 1789, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 39.698992738449924, - "c2": 4.424535398655188, - "c3": 19.441769655384213, - "c4": -21.08643393235484, - "c5": 43.20385642441041, - "c6": 35.16575248810043, - "c7": 35.50476676939437 + "points": { + "c1": 31.075238358996863, + "c2": 42.560739846226845, + "c3": -25.085583096306713, + "c4": 31.86144693939695, + "c5": -5.747254985912058, + "c6": -42.55776269370223, + "c7": -26.00761795695168 }, - "vertexSeeds": { - "c1": 10.401225987495879, - "c2": 9.839471824473245, - "c3": 9.851263976752984, - "c4": 10.403208524430115, - "c5": 9.559268251703369, - "c6": 10.192999326482484, - "c7": 10.286064821989786 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.92371705963938, + "c3": 12.436430883032845, + "c4": 9.949144706426267, + "c5": 7.46185852981969, + "c6": 4.974572353213134, + "c7": 2.4872861766065566 }, "rgb": [58, 15, 49] }, @@ -302676,23 +302676,23 @@ "year": 1789, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -7.832503805624636, - "c2": -24.495983549646606, - "c3": 28.79528587555542, - "c4": -26.41633751700524, - "c5": -13.844794423701016, - "c6": 20.305659571637683, - "c7": -20.335092320177143 + "points": { + "c1": -30.021493112745336, + "c2": -20.717720657606495, + "c3": -17.48092963018547, + "c4": 27.089197513977048, + "c5": 29.98586452720287, + "c6": 1.6975875119046364, + "c7": 24.34721332452792 }, - "vertexSeeds": { - "c1": 13.479331784116512, - "c2": 13.451034397003319, - "c3": 13.291070389844533, - "c4": 13.342414122903843, - "c5": 13.38314519986936, - "c6": 13.509654850021398, - "c7": 13.49151400012157 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.41747572815532, + "c3": 16.181229773462743, + "c4": 12.944983818770162, + "c5": 9.708737864077735, + "c6": 6.472491909385157, + "c7": 3.2362459546925786 }, "rgb": [58, 15, 49] }, @@ -302703,23 +302703,23 @@ "year": 1790, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": -45.83721914556769, - "c2": 48.02380000341182, - "c3": -13.607067079045976, - "c4": 24.847439413436888, - "c5": -2.670793921807906, - "c6": -7.928985178258351, - "c7": 51.68687104512691 + "points": { + "c1": -18.984488733698676, + "c2": -49.064726032140186, + "c3": 33.64932679569023, + "c4": 25.579390718198113, + "c5": 0.3527725907765955, + "c6": 15.715035455659475, + "c7": -27.124287472321438 }, - "vertexSeeds": { - "c1": 4.49337243749877, - "c2": 4.538012471575321, - "c3": 4.439728058987794, - "c4": 4.631013514965122, - "c5": 4.997872012892987, - "c6": 4.916214829077282, - "c7": 4.787558204917151 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538138, + "c3": 6.056403143781784, + "c4": 4.84512251502543, + "c5": 3.633841886269069, + "c6": 2.422561257512715, + "c7": 1.2112806287563542 }, "rgb": [86, 146, 138] }, @@ -302730,23 +302730,23 @@ "year": 1790, "resistanceReported": false, "duration": 41299200, - "curveSeeds": { - "c1": 22.24038914211762, - "c2": -31.172172675170422, - "c3": 25.160279851431923, - "c4": 7.667790181076022, - "c5": -18.092603760136235, - "c6": 10.143183691475528, - "c7": 19.690628227262053 + "points": { + "c1": -37.158510449774866, + "c2": 19.196663544754273, + "c3": 29.81196611068482, + "c4": 22.342452880692463, + "c5": 7.94438516009285, + "c6": 22.029538629575143, + "c7": -16.9789173845582 }, - "vertexSeeds": { - "c1": 5.887401676394117, - "c2": 5.7334751425989845, - "c3": 5.932353276655358, - "c4": 6.477683712813246, - "c5": 4.8266974228749655, - "c6": 5.384460879626594, - "c7": 5.5754631620692745 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795655, + "c4": 6.232085067036521, + "c5": 4.674063800277394, + "c6": 3.1160425335182604, + "c7": 1.5580212667591302 }, "rgb": [86, 146, 138] }, @@ -302757,23 +302757,23 @@ "year": 1791, "resistanceReported": false, "duration": 73440000, - "curveSeeds": { - "c1": -43.481395899464445, - "c2": -15.10470181784089, - "c3": -6.821602418097029, - "c4": -65.21052114658022, - "c5": 6.2244545933549915, - "c6": 22.17432270514344, - "c7": 84.08399056602896 + "points": { + "c1": -72.00823804295598, + "c2": 21.847035749991363, + "c3": -40.755402550208345, + "c4": 67.1461343080279, + "c5": -22.268695348461122, + "c6": 68.55334860686189, + "c7": 25.12709672250996 }, - "vertexSeeds": { - "c1": 8.003011299915007, - "c2": 7.489668333207529, - "c3": 7.200693970782702, - "c4": 6.165555407886242, - "c5": 7.545998719021247, - "c6": 8.277033071182757, - "c7": 7.8942343495764495 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456309, + "c3": 10.032362459546926, + "c4": 8.02588996763754, + "c5": 6.019417475728154, + "c6": 4.01294498381877, + "c7": 2.006472491909385 }, "rgb": [58, 15, 49] }, @@ -302784,23 +302784,23 @@ "year": 1790, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 33.59236858533127, - "c2": -29.508010355976054, - "c3": 34.705487561774135, - "c4": -3.3792387327196636, - "c5": -37.402080370636085, - "c6": 41.80793250081123, - "c7": -28.116229591843457 + "points": { + "c1": 43.80949275007475, + "c2": 26.099965310573694, + "c3": 5.31502342819396, + "c4": 7.543888887316207, + "c5": -17.1731086559683, + "c6": 44.901407274211934, + "c7": -1.486185577084015 }, - "vertexSeeds": { - "c1": 6.186103256323068, - "c2": 6.248667994558939, - "c3": 6.095020623347446, - "c4": 6.16582823382126, - "c5": 5.9361676103466445, - "c6": 5.854620179006834, - "c7": 5.868861980943618 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [58, 15, 49] }, @@ -302811,23 +302811,23 @@ "year": 1790, "resistanceReported": false, "duration": 39312000, - "curveSeeds": { - "c1": 50.62456301739298, - "c2": -36.766593790498845, - "c3": -45.66697079974787, - "c4": 35.41699744851659, - "c5": -9.064651885641204, - "c6": 28.530255935500612, - "c7": -0.8548652864017683 + "points": { + "c1": -54.301530962364055, + "c2": -8.518765620384514, + "c3": 20.901534483370078, + "c4": -26.66819293523276, + "c5": 20.290216085489895, + "c6": -29.404475344555838, + "c7": -13.44318646625505 }, - "vertexSeeds": { - "c1": 1.8961919749701583, - "c2": 1.8099760820754698, - "c3": 1.8470184640784435, - "c4": 1.7088776719824545, - "c5": 1.7425767341793788, - "c6": 1.7465379797277565, - "c7": 1.7459711856925615 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.7461858529819683, + "c3": 2.288488210818308, + "c4": 1.8307905686546455, + "c5": 1.3730929264909857, + "c6": 0.9153952843273228, + "c7": 0.45769764216365966 }, "rgb": [58, 15, 49] }, @@ -302838,23 +302838,23 @@ "year": 1789, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 2.751742878684574, - "c2": -13.284900589408533, - "c3": -38.38781127404277, - "c4": 9.503727606225283, - "c5": -23.097404189216675, - "c6": -15.007432830212526, - "c7": -38.676899399901245 + "points": { + "c1": -23.71536041238609, + "c2": 27.204600569845425, + "c3": -8.859424370426439, + "c4": -18.33168399520302, + "c5": 5.645558067568217, + "c6": -37.27077609983062, + "c7": 17.241676786761253 }, - "vertexSeeds": { - "c1": 7.871449142427358, - "c2": 8.19570090614671, - "c3": 8.36759837132113, - "c4": 8.234809424304053, - "c5": 7.7494033741210995, - "c6": 8.758191869070206, - "c7": 8.508540674030144 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.84327323162274, + "c3": 10.702727693018959, + "c4": 8.562182154415165, + "c5": 6.42163661581137, + "c6": 4.281091077207589, + "c7": 2.1405455386037944 }, "rgb": [222, 0, 59] }, @@ -302865,23 +302865,23 @@ "year": 1789, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 4.831058830856648, - "c2": -27.398340284270944, - "c3": -17.134123744775355, - "c4": -37.1365217155093, - "c5": 20.334392931460933, - "c6": 38.98120815340984, - "c7": 13.143269628933758 + "points": { + "c1": 37.00501254150964, + "c2": 6.703833980401598, + "c3": 33.225772901007346, + "c4": 27.166432539238727, + "c5": -8.938904198625984, + "c6": 36.820405563293164, + "c7": -28.648694208940547 }, - "vertexSeeds": { - "c1": 3.9082907443809187, - "c2": 3.923920722247203, - "c3": 3.9145456794066478, - "c4": 3.910976481867164, - "c5": 3.916845314693876, - "c6": 3.9064652750490767, - "c7": 3.9160582887919926 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.6310679611650745, + "c3": 4.69255663430426, + "c4": 3.7540453074434454, + "c5": 2.815533980582444, + "c6": 1.8770226537216292, + "c7": 0.9385113268608146 }, "rgb": [58, 15, 49] }, @@ -302892,23 +302892,23 @@ "year": 1789, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -26.884677415077523, - "c2": 0.06773040449851919, - "c3": -33.516282159551885, - "c4": -5.692228075171016, - "c5": -5.929966610106661, - "c6": -31.48158541966379, - "c7": 10.49806887687759 + "points": { + "c1": 36.60494601632, + "c2": 5.583996019378461, + "c3": -33.373785078707286, + "c4": -38.36651109080384, + "c5": -2.8037064355144707, + "c6": -38.96745199199028, + "c7": 22.76470841190725 }, - "vertexSeeds": { - "c1": 7.904889111474287, - "c2": 7.890061859626759, - "c3": 7.90283384137674, - "c4": 7.943645147522361, - "c5": 7.899123216317387, - "c6": 7.912251328928307, - "c7": 7.92767852078578 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490914, + "c3": 9.477577438742594, + "c4": 7.582061950994026, + "c5": 5.686546463245457, + "c6": 3.7910309754968874, + "c7": 1.8955154877485692 }, "rgb": [77, 76, 132] }, @@ -302919,23 +302919,23 @@ "year": 1790, "resistanceReported": false, "duration": 47433600, - "curveSeeds": { - "c1": -20.949167146627396, - "c2": -30.851869311996776, - "c3": -17.667570892623758, - "c4": 36.934275831109574, - "c5": -42.927193815967826, - "c6": -42.32130846462363, - "c7": 61.196185721029266 + "points": { + "c1": 4.872131008090506, + "c2": 59.28664521716017, + "c3": -63.74053360340727, + "c4": -26.525304851613804, + "c5": 40.325745169996225, + "c6": 36.380963915620114, + "c7": -38.085562159863784 }, - "vertexSeeds": { - "c1": 7.584612998931332, - "c2": 8.013031149362023, - "c3": 7.978251987995437, - "c4": 8.055436791119003, - "c5": 7.971987081686525, - "c6": 7.605592681728823, - "c7": 7.484350857441762 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657417, + "c3": 10.14794267221452, + "c4": 8.118354137771611, + "c5": 6.0887656033287145, + "c6": 4.0591770688858055, + "c7": 2.0295885344429094 }, "rgb": [77, 76, 132] }, @@ -302946,23 +302946,23 @@ "year": 1790, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 33.60568254546948, - "c2": 26.706132779341658, - "c3": 48.11816436572916, - "c4": 46.04096507871952, - "c5": 19.20900200349236, - "c6": -45.75835263013783, - "c7": -22.46125206912137 + "points": { + "c1": 17.12788890510879, + "c2": -44.63818620062573, + "c3": -43.87963813429712, + "c4": 44.66427776544181, + "c5": -0.6360246630720141, + "c6": -24.687732583924305, + "c7": 6.680598914214492 }, - "vertexSeeds": { - "c1": 5.056218811791127, - "c2": 6.1244863269423835, - "c3": 4.486741239149733, - "c4": 5.524075011688096, - "c5": 5.404783538452004, - "c6": 5.8801178882507275, - "c7": 5.350716057772551 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.82108183079057, + "c3": 7.350901525658809, + "c4": 5.880721220527049, + "c5": 4.410540915395282, + "c6": 2.940360610263521, + "c7": 1.4701803051317606 }, "rgb": [77, 76, 132] }, @@ -302973,23 +302973,23 @@ "year": 1790, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": 16.78793978811227, - "c2": -12.801599630075984, - "c3": 35.9480932289073, - "c4": 15.452476523022455, - "c5": 11.102934448435128, - "c6": 34.405148849310905, - "c7": -24.058764839827777 + "points": { + "c1": -32.20002758910953, + "c2": -48.00182821660469, + "c3": 11.085803262215919, + "c4": 49.26595513322215, + "c5": -52.40287189714907, + "c6": -32.07149420800774, + "c7": -22.970456693443275 }, - "vertexSeeds": { - "c1": 12.287142983318391, - "c2": 11.578940763947797, - "c3": 11.836682021595015, - "c4": 11.477714722540759, - "c5": 11.280938894403592, - "c6": 11.466650959003, - "c7": 12.191971033204442 + "offsets": { + "c1": 20.614886731391586, + "c2": 17.66990291262137, + "c3": 14.724919093851115, + "c4": 11.7799352750809, + "c5": 8.834951456310685, + "c6": 5.88996763754043, + "c7": 2.944983818770215 }, "rgb": [58, 15, 49] }, @@ -303000,23 +303000,23 @@ "year": 1790, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -39.58416751504815, - "c2": 1.5807153513359182, - "c3": 25.605626826432818, - "c4": -6.599367026350727, - "c5": -23.32170832347177, - "c6": -14.795611408700005, - "c7": -14.667979594046002 + "points": { + "c1": -23.36616847419371, + "c2": -26.830443444474756, + "c3": 23.979027655994877, + "c4": 10.62872779315743, + "c5": 13.833080555286706, + "c6": -38.55044940641535, + "c7": 24.974961274371076 }, - "vertexSeeds": { - "c1": 3.434936802855222, - "c2": 3.0567456793522734, - "c3": 3.467774902801837, - "c4": 3.3919996348900137, - "c5": 3.216213615707328, - "c6": 3.4324388726987554, - "c7": 3.24922272084922 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280164, + "c3": 4.184003698566808, + "c4": 3.3472029588534453, + "c5": 2.510402219140082, + "c6": 1.6736014794267193, + "c7": 0.8368007397133629 }, "rgb": [58, 15, 49] }, @@ -303027,23 +303027,23 @@ "year": 1790, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 17.223076944420384, - "c2": 15.014708540554302, - "c3": -15.665119564341882, - "c4": 29.02511403026307, - "c5": 21.539596783309285, - "c6": -0.5809690533670349, - "c7": 28.98441721409941 + "points": { + "c1": -40.50326017374756, + "c2": 27.212751924940278, + "c3": -23.592656121652382, + "c4": -7.391891065043012, + "c5": -31.050230998995367, + "c6": 2.9011018206633636, + "c7": 7.587775752867287 }, - "vertexSeeds": { - "c1": 3.7501139606175276, - "c2": 3.507356537225803, - "c3": 3.389701441132442, - "c4": 3.739372554067084, - "c5": 3.555146490635543, - "c6": 3.78433415116071, - "c7": 3.7294251661390967 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703649, + "c4": 3.698566805362921, + "c5": 2.773925104022192, + "c6": 1.8492834026814635, + "c7": 0.9246417013407288 }, "rgb": [222, 0, 59] }, @@ -303054,23 +303054,23 @@ "year": 1790, "resistanceReported": false, "duration": 43113600, - "curveSeeds": { - "c1": -4.324393377218328, - "c2": -35.73994785061706, - "c3": 35.28389868008199, - "c4": 55.94845910708443, - "c5": -2.369220583123898, - "c6": 31.34983817575754, - "c7": -2.0468783655626623 + "points": { + "c1": -16.654235739700326, + "c2": -48.45804296801277, + "c3": -25.423610454547678, + "c4": 34.89991870011559, + "c5": 38.19758007806905, + "c6": 1.680206931150181, + "c7": -11.938381951441158 }, - "vertexSeeds": { - "c1": 2.8248785358277817, - "c2": 2.71489527022706, - "c3": 2.8840830741265817, - "c4": 2.7508857396515642, - "c5": 2.783224268672277, - "c6": 2.8735900247124677, - "c7": 2.8319546519885392 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033281, + "c3": 3.467406380027741, + "c4": 2.773925104022188, + "c5": 2.080443828016647, + "c6": 1.386962552011094, + "c7": 0.6934812760055531 }, "rgb": [77, 76, 132] }, @@ -303081,23 +303081,23 @@ "year": 1790, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 5.269097850238097, - "c2": -41.872033348453954, - "c3": -42.75355725475094, - "c4": 45.87258348498489, - "c5": 32.59371559943186, - "c6": 17.87482008161092, - "c7": 14.200575390441458 + "points": { + "c1": -20.844956415419706, + "c2": -15.708707946877297, + "c3": -31.51577555561596, + "c4": -42.58856392084541, + "c5": 8.346152831545012, + "c6": -43.69121660125816, + "c7": -39.412846302441565 }, - "vertexSeeds": { - "c1": 6.602931839341794, - "c2": 5.936477564004736, - "c3": 5.184022575369272, - "c4": 6.445887985257153, - "c5": 6.626399231553852, - "c6": 5.2665889273765645, - "c7": 6.154103729660634 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203886, + "c3": 8.7378640776699, + "c4": 6.990291262135922, + "c5": 5.242718446601943, + "c6": 3.4951456310679636, + "c7": 1.7475728155339787 }, "rgb": [58, 15, 49] }, @@ -303108,23 +303108,23 @@ "year": 1790, "resistanceReported": false, "duration": 59184000, - "curveSeeds": { - "c1": 53.40147122821905, - "c2": -34.10522277344544, - "c3": 45.793729419997035, - "c4": 64.26940720282202, - "c5": 50.56669271041088, - "c6": 46.73077232990374, - "c7": -9.466366327731606 + "points": { + "c1": -60.92865983314397, + "c2": 55.18750573668261, + "c3": 36.21520622644364, + "c4": -51.40317717749685, + "c5": -53.26689914612108, + "c6": -13.232331948369911, + "c7": 54.82848875279093 }, - "vertexSeeds": { - "c1": 7.56620970368348, - "c2": 7.701357469888544, - "c3": 6.658235966654092, - "c4": 6.906009598640135, - "c5": 7.447921306537926, - "c6": 7.581075097296141, - "c7": 8.372868350382618 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260745, + "c3": 10.494683310217289, + "c4": 8.395746648173834, + "c5": 6.296809986130373, + "c6": 4.1978733240869115, + "c7": 2.0989366620434557 }, "rgb": [58, 15, 49] }, @@ -303135,23 +303135,23 @@ "year": 1789, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 14.533739841280742, - "c2": -9.841122372914143, - "c3": 17.38338950469872, - "c4": -24.847574870574668, - "c5": -22.483090962601683, - "c6": 17.665301687569404, - "c7": 32.08063700360841 + "points": { + "c1": 0.19790003824768831, + "c2": -27.96797465937856, + "c3": 33.301813034367136, + "c4": -18.89087295029676, + "c5": -31.161299455630314, + "c6": 10.732485739076566, + "c7": 0.2639194742525177 }, - "vertexSeeds": { - "c1": 3.8040577089655727, - "c2": 3.781823781677727, - "c3": 3.6890841402292414, - "c4": 3.5733342315517587, - "c5": 3.7717108377954536, - "c6": 3.669871496023787, - "c7": 3.517707891129584 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963944, + "c3": 4.576976421636615, + "c4": 3.661581137309296, + "c5": 2.7461858529819665, + "c6": 1.830790568654648, + "c7": 0.9153952843273184 }, "rgb": [58, 15, 49] }, @@ -303162,23 +303162,23 @@ "year": 1790, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -19.6255554403673, - "c2": 17.1320596563303, - "c3": 30.028826235266962, - "c4": -39.56166287533829, - "c5": -41.83448974013243, - "c6": -2.7720291253136864, - "c7": -26.13495101097003 + "points": { + "c1": -41.93025140491937, + "c2": -26.24540332694947, + "c3": -4.410167536976175, + "c4": -8.575768809887123, + "c5": -12.123929840631249, + "c6": 30.246911944392494, + "c7": 33.36553289321235 }, - "vertexSeeds": { - "c1": 2.7241673953123353, - "c2": 2.743621975803238, - "c3": 2.5845587868918933, - "c4": 2.7257205285865713, - "c5": 2.6077576517446333, - "c6": 2.746942721775961, - "c7": 2.7385070999381886 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.049930651872396, + "c3": 3.374942209893671, + "c4": 2.6999537679149346, + "c5": 2.024965325936198, + "c6": 1.3499768839574617, + "c7": 0.6749884419787365 }, "rgb": [222, 0, 59] }, @@ -303189,23 +303189,23 @@ "year": 1789, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 4.700605806878464, - "c2": -15.556546367613226, - "c3": 21.459241233006352, - "c4": 7.429680746817397, - "c5": 35.88723030043926, - "c6": 24.789094618900535, - "c7": -17.49332257463427 + "points": { + "c1": -12.127434478320605, + "c2": -34.60281599053452, + "c3": 22.14222309320178, + "c4": 12.334747063520233, + "c5": 24.63503649349836, + "c6": 17.147900687823444, + "c7": -11.61427734969486 }, - "vertexSeeds": { - "c1": 3.978633115576996, - "c2": 3.686325833393746, - "c3": 3.996950992967475, - "c4": 3.7058330916896836, - "c5": 3.6930841270514465, - "c6": 3.894646327674386, - "c7": 3.9979087833671048 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325941, + "c3": 4.785020804438279, + "c4": 3.8280166435506273, + "c5": 2.871012482662965, + "c6": 1.9140083217753137, + "c7": 0.9570041608876625 }, "rgb": [238, 201, 159] }, @@ -303216,23 +303216,23 @@ "year": 1790, "resistanceReported": false, "duration": 56505600, - "curveSeeds": { - "c1": -35.69727090857527, - "c2": 60.61078021907953, - "c3": 50.426196746520105, - "c4": 67.7585748232189, - "c5": -47.95252155464138, - "c6": -29.10869066070545, - "c7": 63.39542182383845 + "points": { + "c1": -28.484536384073216, + "c2": 44.614961173962485, + "c3": 19.18046284991601, + "c4": -19.109506485403678, + "c5": 51.29000386492153, + "c6": 59.88301818437681, + "c7": -40.78866066778394 }, - "vertexSeeds": { - "c1": 6.466853192767457, - "c2": 7.297922808652345, - "c3": 7.342529579739427, - "c4": 7.442635664052684, - "c5": 6.107724828372411, - "c6": 5.563750479848014, - "c7": 6.181139713454719 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [222, 0, 59] }, @@ -303243,23 +303243,23 @@ "year": 1790, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 18.303345548228627, - "c2": -44.600291258083054, - "c3": -9.934756163413127, - "c4": -43.06838308345342, - "c5": 6.555702441305158, - "c6": 26.806469676124152, - "c7": 32.43183018584851 + "points": { + "c1": -25.27210124511827, + "c2": 38.15697939794775, + "c3": -45.583985488328345, + "c4": 16.27320771415787, + "c5": 21.942491135523753, + "c6": -15.64162029931348, + "c7": 35.261633803550836 }, - "vertexSeeds": { - "c1": 8.108614816762099, - "c2": 8.164954362499872, - "c3": 7.65675652910354, - "c4": 7.832858294238078, - "c5": 7.9860860882887375, - "c6": 7.615589613376389, - "c7": 7.521303856147181 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013866, + "c3": 9.778085991678214, + "c4": 7.822468793342583, + "c5": 5.866851595006933, + "c6": 3.911234396671282, + "c7": 1.9556171983356307 }, "rgb": [238, 201, 159] }, @@ -303270,23 +303270,23 @@ "year": 1789, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -8.386373277227428, - "c2": 19.576919575538362, - "c3": 4.454316717306739, - "c4": 1.7309024030315143, - "c5": -6.38964497620881, - "c6": 18.87809354572058, - "c7": 25.29368157306918 + "points": { + "c1": -34.69972743836905, + "c2": 32.92190173481103, + "c3": 20.855904958867875, + "c4": 16.507989501359255, + "c5": -17.125153262153653, + "c6": -19.526852771441636, + "c7": 6.053123741867907 }, - "vertexSeeds": { - "c1": 7.886698036995403, - "c2": 8.107026045677117, - "c3": 8.066515896548463, - "c4": 8.073194344321292, - "c5": 7.509055815757173, - "c6": 7.709168246227121, - "c7": 7.687627684625886 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933424, + "c3": 9.731853906611189, + "c4": 7.78548312528895, + "c5": 5.839112343966712, + "c6": 3.892741562644475, + "c7": 1.9463707813222375 }, "rgb": [86, 146, 138] }, @@ -303297,23 +303297,23 @@ "year": 1790, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": -21.5554247855644, - "c2": 41.471111360868754, - "c3": -24.093737131759625, - "c4": 26.558890130296156, - "c5": -29.222941633521096, - "c6": -44.874005580488166, - "c7": -29.90070408683119 + "points": { + "c1": -47.55532811341956, + "c2": 3.422320853021212, + "c3": -9.015442964074772, + "c4": -39.80894456342471, + "c5": 12.400879030065482, + "c6": -41.42696778265245, + "c7": -8.441941453656177 }, - "vertexSeeds": { - "c1": 2.596615485826073, - "c2": 2.5723623709627477, - "c3": 2.5785792385264354, - "c4": 2.6161210604649483, - "c5": 2.651706237619269, - "c6": 2.607746287729882, - "c7": 2.6287479406548866 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506207, + "c3": 3.1900138696255143, + "c4": 2.552011095700407, + "c5": 1.914008321775321, + "c6": 1.2760055478502141, + "c7": 0.6380027739251071 }, "rgb": [222, 0, 59] }, @@ -303324,23 +303324,23 @@ "year": 1790, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 0.5987588969610584, - "c2": -24.71306972522564, - "c3": -17.79161274292308, - "c4": 0.06813440614858735, - "c5": 27.84834080367635, - "c6": 9.814937307361724, - "c7": -28.88066552047757 + "points": { + "c1": 5.258536283307713, + "c2": 29.942525934070346, + "c3": 18.557116058806095, + "c4": 18.756955787237644, + "c5": -17.4391012287862, + "c6": 24.093272629904988, + "c7": 29.809874155025554 }, - "vertexSeeds": { - "c1": 9.854134470757346, - "c2": 10.411709165871576, - "c3": 10.606592201593424, - "c4": 10.574044953668407, - "c5": 9.812648483536567, - "c6": 10.223508201409704, - "c7": 9.799588341902776 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [238, 201, 159] }, @@ -303351,23 +303351,23 @@ "year": 1789, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 6.236172003482491, - "c2": -6.2354519414084635, - "c3": 12.676579703755692, - "c4": 11.236072851920952, - "c5": 4.113291381592472, - "c6": 8.891002002066138, - "c7": -1.0922607501425325 + "points": { + "c1": 4.734469725763027, + "c2": 0.6085029273053593, + "c3": -8.009789015512862, + "c4": 16.79231549039403, + "c5": -1.6954941566458466, + "c6": -3.0359412552324514, + "c7": 9.928428961827699 }, - "vertexSeeds": { - "c1": 3.874898821660543, - "c2": 3.825456651569964, - "c3": 4.071597025940884, - "c4": 3.8053749203814977, - "c5": 4.11001740693356, - "c6": 4.146822364996219, - "c7": 4.168439956973609 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687936, + "c3": 4.993065187239941, + "c4": 3.9944521497919547, + "c5": 2.995839112343968, + "c6": 1.9972260748959814, + "c7": 0.9986130374479866 }, "rgb": [222, 0, 59] }, @@ -303378,23 +303378,23 @@ "year": 1790, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -5.1389604276688985, - "c2": -2.960740303863844, - "c3": -3.41537069588378, - "c4": -15.045532823845086, - "c5": -40.72273763018895, - "c6": 40.02312839781645, - "c7": -4.418014719452145 + "points": { + "c1": -40.049498708013274, + "c2": -17.380634627407748, + "c3": -25.304788355680543, + "c4": -14.819693978468738, + "c5": -44.02905058883695, + "c6": -6.395455562452412, + "c7": -44.16725963739922 }, - "vertexSeeds": { - "c1": 1.3014451344535864, - "c2": 1.2743158367821747, - "c3": 1.293419575902886, - "c4": 1.2853468962593668, - "c5": 1.244600333419151, - "c6": 1.322156496307486, - "c7": 1.3365422925335242 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.941747572815537, + "c3": 1.6181229773462775, + "c4": 1.2944983818770246, + "c5": 0.9708737864077652, + "c6": 0.6472491909385123, + "c7": 0.32362459546925937 }, "rgb": [58, 15, 49] }, @@ -303405,23 +303405,23 @@ "year": 1789, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -23.69266089404462, - "c2": -6.613352367687035, - "c3": 28.230210229118512, - "c4": 7.180735294290535, - "c5": -2.759609028275335, - "c6": -36.28370238192465, - "c7": -29.803257784066048 + "points": { + "c1": -35.35529263198998, + "c2": -37.56229657274892, + "c3": 27.85270008457985, + "c4": 20.442091459570676, + "c5": -31.804605043361025, + "c6": 27.23119419897924, + "c7": -20.934856598433242 }, - "vertexSeeds": { - "c1": 3.702731908773428, - "c2": 3.374771657987232, - "c3": 3.489281722780997, - "c4": 3.5282856989257687, - "c5": 3.5977754244964153, - "c6": 3.556183971739855, - "c7": 3.657973005487292 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.4923717059639365, + "c3": 4.576976421636616, + "c4": 3.661581137309291, + "c5": 2.7461858529819714, + "c6": 1.8307905686546455, + "c7": 0.9153952843273193 }, "rgb": [58, 15, 49] }, @@ -303432,23 +303432,23 @@ "year": 1789, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": 15.151767887991426, - "c2": -9.147163434993027, - "c3": -14.358287598682233, - "c4": -6.658366371014935, - "c5": 14.09638287564588, - "c6": 0.6118025269791154, - "c7": -5.647509768550922 + "points": { + "c1": 4.7303707218917275, + "c2": 22.46852867259583, + "c3": 8.470864245915436, + "c4": -23.318430457348544, + "c5": 9.379129980611637, + "c6": 15.213114264144693, + "c7": -23.068287335442314 }, - "vertexSeeds": { - "c1": 7.721422191404942, - "c2": 7.341352558453628, - "c3": 7.549243473434263, - "c4": 7.361806232471498, - "c5": 7.398023444612672, - "c6": 7.481504283866149, - "c7": 7.141407602287661 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088775, + "c3": 9.246417013407301, + "c4": 7.39713361072585, + "c5": 5.547850208044376, + "c6": 3.698566805362925, + "c7": 1.8492834026814733 }, "rgb": [238, 201, 159] }, @@ -303459,23 +303459,23 @@ "year": 1790, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 18.438604149311168, - "c2": 7.604455747882049, - "c3": 10.058904408659316, - "c4": 0.8807138197071112, - "c5": 21.854968795937182, - "c6": -36.40674419155999, - "c7": -9.97696264341462 + "points": { + "c1": -9.84578449377198, + "c2": 5.589748061866814, + "c3": 30.491121957673215, + "c4": -5.988600636053043, + "c5": -22.237934533753528, + "c6": -29.55837243492941, + "c7": -16.280698334057323 }, - "vertexSeeds": { - "c1": 4.428618316356183, - "c2": 4.432200541899164, - "c3": 4.450760692700113, - "c4": 4.435975315179128, - "c5": 4.461299258434297, - "c6": 4.434221772690102, - "c7": 4.401845363282886 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.40776699029124, + "c3": 5.339805825242726, + "c4": 4.2718446601941595, + "c5": 3.2038834951456465, + "c6": 2.1359223300970798, + "c7": 1.0679611650485665 }, "rgb": [238, 201, 159] }, @@ -303486,23 +303486,23 @@ "year": 1790, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 13.231192163868656, - "c2": -17.514740200208756, - "c3": 39.52131640078904, - "c4": -29.48322457103788, - "c5": 40.82528631732011, - "c6": 14.47889591812384, - "c7": 1.0011301233805554 + "points": { + "c1": 9.857459332260134, + "c2": -28.14400607986717, + "c3": -38.04236524992925, + "c4": -28.28255368826499, + "c5": -22.346898110404993, + "c6": -16.388265646635613, + "c7": 41.59837325748938 }, - "vertexSeeds": { - "c1": 5.882926225185444, - "c2": 5.88882030415613, - "c3": 5.895688009694953, - "c4": 5.856513356513186, - "c5": 5.8613573393370295, - "c6": 5.868307770008131, - "c7": 5.856258203142059 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307946, + "c3": 7.073509015256528, + "c4": 5.658807212205251, + "c5": 4.244105409153973, + "c6": 2.8294036061026957, + "c7": 1.4147018030512775 }, "rgb": [77, 76, 132] }, @@ -303513,23 +303513,23 @@ "year": 1790, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": -22.856210284526796, - "c2": -27.32669520055884, - "c3": -12.705686856928615, - "c4": 29.327785000124308, - "c5": 20.00178525927946, - "c6": -26.718415721252658, - "c7": 12.306368099842807 + "points": { + "c1": 12.863110696726892, + "c2": 25.112707238044223, + "c3": -7.453574483558022, + "c4": -19.168383098274006, + "c5": -40.6271053972583, + "c6": -22.358608075802973, + "c7": -27.188884462789826 }, - "vertexSeeds": { - "c1": 6.489967516790635, - "c2": 6.448167848216904, - "c3": 6.630071240934179, - "c4": 6.761700253128684, - "c5": 6.502248688850144, - "c6": 6.5757781430198055, - "c7": 6.690918041943845 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198326, + "c3": 8.159963014331948, + "c4": 6.52797041146555, + "c5": 4.8959778085991745, + "c6": 3.263985205732775, + "c7": 1.6319926028663765 }, "rgb": [222, 0, 59] }, @@ -303540,23 +303540,23 @@ "year": 1790, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": -41.29461483542721, - "c2": 53.48576916555987, - "c3": 32.84077324185358, - "c4": 20.920198223306414, - "c5": -19.716881452162035, - "c6": 47.74058539286655, - "c7": 43.925166534436244 + "points": { + "c1": -7.072586637622351, + "c2": -1.3806872451488772, + "c3": -19.431519314164888, + "c4": -4.417800119339432, + "c5": -9.762592025732758, + "c6": -5.28996793546284, + "c7": 4.2539903374274814 }, - "vertexSeeds": { - "c1": 6.2815908581098725, - "c2": 6.285511091697101, - "c3": 6.3084478184307, - "c4": 6.258519210934342, - "c5": 6.271320025200678, - "c6": 6.209826309217092, - "c7": 6.222977139229879 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152565, + "c3": 7.558945908460472, + "c4": 6.047156726768376, + "c5": 4.535367545076283, + "c6": 3.023578363384188, + "c7": 1.511789181692094 }, "rgb": [77, 76, 132] }, @@ -303567,23 +303567,23 @@ "year": 1789, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -2.0442361986405544, - "c2": -8.163617927062228, - "c3": -2.353028887902248, - "c4": 18.121459521371662, - "c5": 2.8151902678279406, - "c6": 1.2208712904661425, - "c7": 18.019994044671485 + "points": { + "c1": 17.80834706470568, + "c2": -0.6031854772801424, + "c3": 18.465994292773203, + "c4": -14.440603081788561, + "c5": 4.608433164927419, + "c6": 7.222918463161662, + "c7": -16.440395630124726 }, - "vertexSeeds": { - "c1": 5.280083817736738, - "c2": 4.625414469269809, - "c3": 5.432617996439316, - "c4": 4.650569837683134, - "c5": 4.44386250568351, - "c6": 4.537801202746337, - "c7": 4.532187015882823 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382801, + "c3": 6.541840036985668, + "c4": 5.233472029588534, + "c5": 3.9251040221914004, + "c6": 2.616736014794267, + "c7": 1.3083680073971335 }, "rgb": [58, 15, 49] }, @@ -303594,23 +303594,23 @@ "year": 1789, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 8.388567279362793, - "c2": 25.413519055223748, - "c3": 2.0881533701389294, - "c4": -1.9910324235260255, - "c5": 15.329407908758203, - "c6": 10.20551010045612, - "c7": 18.28846661371953 + "points": { + "c1": -21.91982744152252, + "c2": 14.647520487058461, + "c3": 28.111750135757188, + "c4": 25.748646223398257, + "c5": -7.323001215181883, + "c6": 21.12896266024583, + "c7": -10.095953032997617 }, - "vertexSeeds": { - "c1": 3.164660823282411, - "c2": 3.1962575869792285, - "c3": 3.9322922249275587, - "c4": 2.945279260810996, - "c5": 2.814514103131601, - "c6": 3.6370042121896713, - "c7": 3.6289068335205057 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.7142857142857135, + "c3": 4.761904761904764, + "c4": 3.80952380952381, + "c5": 2.8571428571428568, + "c6": 1.9047619047619035, + "c7": 0.9523809523809533 }, "rgb": [222, 0, 59] }, @@ -303621,23 +303621,23 @@ "year": 1789, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 28.035243598266177, - "c2": 8.261093355522434, - "c3": -8.322481639440912, - "c4": -9.385072054270061, - "c5": 26.205153400783942, - "c6": 28.21466437877124, - "c7": -28.551415649516805 + "points": { + "c1": -7.906786435209401, + "c2": 27.263379371307174, + "c3": 7.243007751000434, + "c4": 31.915984754591562, + "c5": 3.4346966969612325, + "c6": 24.057334437775616, + "c7": 18.097789406227676 }, - "vertexSeeds": { - "c1": 2.8903872178222834, - "c2": 2.8557662495089273, - "c3": 2.8017229802456045, - "c4": 2.726089849188549, - "c5": 2.754809871011629, - "c6": 2.7979657436018237, - "c7": 2.728224279048152 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073504, + "c3": 3.490522422561259, + "c4": 2.7924179380490024, + "c5": 2.094313453536758, + "c6": 1.3962089690245012, + "c7": 0.6981044845122569 }, "rgb": [238, 201, 159] }, @@ -303648,23 +303648,23 @@ "year": 1789, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -9.93123885528551, - "c2": -24.808739500283515, - "c3": 1.9319320250415402, - "c4": -19.726728944882375, - "c5": -10.206448837411287, - "c6": -25.65293710873528, - "c7": 27.564072734587796 + "points": { + "c1": -4.4406371307314565, + "c2": 5.321658996524803, + "c3": -23.966582355351207, + "c4": 12.09040480222098, + "c5": -18.631180661600148, + "c6": 19.2899448508305, + "c7": 29.508284676872435 }, - "vertexSeeds": { - "c1": 5.328494815391015, - "c2": 5.761310428203308, - "c3": 5.923568775280584, - "c4": 5.720840932901327, - "c5": 6.058459990210254, - "c6": 5.943633685680533, - "c7": 5.35269286922909 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.7378640776699, + "c3": 7.281553398058249, + "c4": 5.825242718446596, + "c5": 4.368932038834957, + "c6": 2.9126213592233046, + "c7": 1.4563106796116523 }, "rgb": [58, 15, 49] }, @@ -303675,23 +303675,23 @@ "year": 1789, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 24.039758787768776, - "c2": -6.509318057763274, - "c3": 35.507977430914394, - "c4": 9.91566973932585, - "c5": -14.733288133686894, - "c6": -1.5551006127376539, - "c7": 29.63421089556654 + "points": { + "c1": 25.40336206018773, + "c2": 29.77250155950982, + "c3": 16.674791796171164, + "c4": -13.279846400262795, + "c5": 8.510001575570705, + "c6": 25.873803084648877, + "c7": -29.012572341616995 }, - "vertexSeeds": { - "c1": 5.338772551139707, - "c2": 5.428508110104354, - "c3": 5.145739054792526, - "c4": 5.189185435993376, - "c5": 5.414264629781739, - "c6": 5.259143840471585, - "c7": 5.359583096258089 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503464, + "c3": 6.611188164586216, + "c4": 5.288950531668969, + "c5": 3.9667128987517417, + "c6": 2.6444752658344948, + "c7": 1.3222376329172474 }, "rgb": [238, 201, 159] }, @@ -303702,23 +303702,23 @@ "year": 1790, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 34.60806154937932, - "c2": 12.464596095292507, - "c3": -45.33121511664247, - "c4": 34.386596887801296, - "c5": 24.986488039654425, - "c6": 19.98436712129753, - "c7": 10.43885867160084 + "points": { + "c1": 4.958729693355259, + "c2": -21.248985304518225, + "c3": -23.350142267737198, + "c4": -4.755333514784837, + "c5": 13.667464416868668, + "c6": -30.900051840150127, + "c7": 13.506898750738095 }, - "vertexSeeds": { - "c1": 5.240522225339831, - "c2": 6.745127740550657, - "c3": 6.149737942717097, - "c4": 5.446819979662537, - "c5": 6.871881074848777, - "c6": 6.156514897307491, - "c7": 6.685148698133001 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962553, + "c3": 8.599167822468795, + "c4": 6.879334257975037, + "c5": 5.15950069348128, + "c6": 3.439667128987522, + "c7": 1.719833564493758 }, "rgb": [58, 15, 49] }, @@ -303729,23 +303729,23 @@ "year": 1790, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -54.3567096325024, - "c2": -18.43560345446648, - "c3": -20.008052664053004, - "c4": -48.17492978268349, - "c5": 9.804225573624791, - "c6": -41.90601171388999, - "c7": 28.669423692338853 + "points": { + "c1": 50.747986354026, + "c2": 0.373964301695338, + "c3": 26.79210900676999, + "c4": 44.16084822650349, + "c5": 37.07495350180895, + "c6": -33.74341422824362, + "c7": -10.799413654885228 }, - "vertexSeeds": { - "c1": 2.8086161078845633, - "c2": 2.8803896411799315, - "c3": 2.8409842463539823, - "c4": 2.870856642100469, - "c5": 2.9254876095168587, - "c6": 2.860153597047087, - "c7": 2.8883594400410653 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234396, + "c3": 3.5829865926953275, + "c4": 2.8663892741562598, + "c5": 2.149791955617192, + "c6": 1.4331946370781354, + "c7": 0.7165973185390677 }, "rgb": [238, 201, 159] }, @@ -303756,23 +303756,23 @@ "year": 1790, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": 22.01183481097216, - "c2": 0.007748381401697202, - "c3": -6.889129397404467, - "c4": 2.5956962992220625, - "c5": 20.486940443508246, - "c6": -7.997812770691546, - "c7": 21.45468158642973 + "points": { + "c1": 22.199556480040783, + "c2": 14.96492462366274, + "c3": 5.961976245144577, + "c4": 10.17406716788004, + "c5": 30.522314285980073, + "c6": -33.10193627953238, + "c7": 44.6345958466177 }, - "vertexSeeds": { - "c1": 1.0835703634055744, - "c2": 1.1117647939298096, - "c3": 1.0316745057717749, - "c4": 1.118087622089076, - "c5": 1.0158940621352663, - "c6": 1.0082232368958126, - "c7": 1.0973425597575532 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.6366158113730926, + "c3": 1.363846509477577, + "c4": 1.0910772075820632, + "c5": 0.8183079056865472, + "c6": 0.5455386037910316, + "c7": 0.2727693018955158 }, "rgb": [222, 0, 59] }, @@ -303783,23 +303783,23 @@ "year": 1790, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": -38.80243770073755, - "c2": 28.081726201615126, - "c3": -37.983631083678326, - "c4": 14.72727590171364, - "c5": -46.888380690751724, - "c6": 36.99612384887885, - "c7": 8.171406388067595 + "points": { + "c1": 37.14655463200771, + "c2": 9.358900015279275, + "c3": 9.193982057985068, + "c4": 6.343583439396966, + "c5": 17.12787560436759, + "c6": -10.766447002245187, + "c7": 19.95939774954303 }, - "vertexSeeds": { - "c1": 8.182614075581462, - "c2": 7.875546210258958, - "c3": 7.96791210269429, - "c4": 8.331762411478499, - "c5": 8.093173268980697, - "c6": 7.80366529467745, - "c7": 8.084979099269022 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [238, 201, 159] }, @@ -303810,23 +303810,23 @@ "year": 1790, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -5.265583572524839, - "c2": 0.8649563304614745, - "c3": 30.623791492640834, - "c4": -23.26268379848411, - "c5": 4.128365830886622, - "c6": -32.38028682197752, - "c7": 20.994644157089425 + "points": { + "c1": 1.2615635045718392, + "c2": 29.376597534765423, + "c3": 35.90246292187712, + "c4": 2.954048071913725, + "c5": -39.063452304919466, + "c6": 40.3406155231943, + "c7": 35.19406553525509 }, - "vertexSeeds": { - "c1": 8.538297490512328, - "c2": 6.280150314552644, - "c3": 6.097443026909675, - "c4": 7.110506400282475, - "c5": 6.081728436748674, - "c6": 7.336214736799479, - "c7": 8.359093309798768 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059643, + "c3": 10.379103097549699, + "c4": 8.303282478039762, + "c5": 6.227461858529818, + "c6": 4.151641239019881, + "c7": 2.0758206195099436 }, "rgb": [86, 146, 138] }, @@ -303837,23 +303837,23 @@ "year": 1789, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -5.898888923172574, - "c2": -20.21683516901223, - "c3": 15.648694833302407, - "c4": 7.252348401095048, - "c5": 21.371273656358362, - "c6": 8.851787241238828, - "c7": 15.059771568349063 + "points": { + "c1": 18.6011160642394, + "c2": -8.268882643550327, + "c3": 11.881125821289238, + "c4": 24.45952337624879, + "c5": 18.590369332902505, + "c6": -6.049630996526918, + "c7": -1.471996924462907 }, - "vertexSeeds": { - "c1": 6.294804261125536, - "c2": 6.1258511084465015, - "c3": 5.968792419333699, - "c4": 6.1758637409223205, - "c5": 6.065295795806956, - "c6": 6.257040255225893, - "c7": 6.346047903934061 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [58, 15, 49] }, @@ -303864,23 +303864,23 @@ "year": 1790, "resistanceReported": false, "duration": 48211200, - "curveSeeds": { - "c1": -6.726333526533615, - "c2": -17.841472884856188, - "c3": 34.03030285949153, - "c4": 43.73545839855069, - "c5": 25.73652496327213, - "c6": -58.058178891577114, - "c7": -15.738183152173534 + "points": { + "c1": -39.54932121096079, + "c2": -32.94668361978452, + "c3": -41.20342045817807, + "c4": 63.161903387783426, + "c5": -49.905711394191954, + "c6": -13.269109808232528, + "c7": -2.89344054354698 }, - "vertexSeeds": { - "c1": 1.922371935620932, - "c2": 1.909390795070313, - "c3": 1.9204896890382872, - "c4": 1.9140167790615497, - "c5": 1.9105839636805177, - "c6": 1.9107125927307462, - "c7": 1.9201743475002264 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040222044, + "c3": 2.311604253351806, + "c4": 1.8492834026814542, + "c5": 1.3869625520111022, + "c6": 0.9246417013407501, + "c7": 0.46232085067035206 }, "rgb": [222, 0, 59] }, @@ -303891,23 +303891,23 @@ "year": 1790, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": 27.75537997938153, - "c2": -44.11010241040823, - "c3": -13.476162876616861, - "c4": 19.99462571712337, - "c5": -21.86423664119704, - "c6": -34.10666176795019, - "c7": -25.980661905107404 + "points": { + "c1": -18.18326986613996, + "c2": -22.617880352004548, + "c3": -10.691609396509357, + "c4": -38.08003023323288, + "c5": -14.213109903857386, + "c6": -14.2811932832863, + "c7": -53.317858330744 }, - "vertexSeeds": { - "c1": 4.922602555898049, - "c2": 5.112547669738326, - "c3": 5.171652757508946, - "c4": 5.084582409572431, - "c5": 5.213626141498773, - "c6": 4.981657861252863, - "c7": 5.139909279093184 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.48959778085992, + "c3": 6.241331484049937, + "c4": 4.993065187239954, + "c5": 3.7447988904299487, + "c6": 2.4965325936199663, + "c7": 1.2482662968099831 }, "rgb": [58, 15, 49] }, @@ -303918,23 +303918,23 @@ "year": 1790, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 15.258597374721788, - "c2": 14.976437189548676, - "c3": -36.33759502265461, - "c4": 36.37703652043066, - "c5": 30.59735438013812, - "c6": -15.13006785918531, - "c7": -25.939288966044128 + "points": { + "c1": -8.936492384282637, + "c2": 10.046324570849379, + "c3": -34.82359050754669, + "c4": 12.292195390869189, + "c5": 19.96801066036207, + "c6": -11.471262929256088, + "c7": 36.37307376300708 }, - "vertexSeeds": { - "c1": 6.586743415284347, - "c2": 6.464072778746334, - "c3": 6.291040591677008, - "c4": 6.330905791968477, - "c5": 6.3800555444408165, - "c6": 6.208151048582235, - "c7": 6.221512599440289 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.70873786407767, + "c3": 8.09061488673139, + "c4": 6.472491909385108, + "c5": 4.854368932038828, + "c6": 3.236245954692548, + "c7": 1.618122977346268 }, "rgb": [58, 15, 49] }, @@ -303945,23 +303945,23 @@ "year": 1789, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -7.687128083194876, - "c2": 13.58224751576497, - "c3": 11.910254312573564, - "c4": -12.120958366731214, - "c5": 14.249533905303757, - "c6": 11.81799415357927, - "c7": -19.127716712049136 + "points": { + "c1": 22.291757198141568, + "c2": 6.762096840832786, + "c3": -8.486319888918112, + "c4": -19.30094845823112, + "c5": -14.52635496751199, + "c6": -21.653392256998117, + "c7": -13.240206045647952 }, - "vertexSeeds": { - "c1": 4.336686920377838, - "c2": 4.224528113954559, - "c3": 4.2497334547275, - "c4": 4.486238476809223, - "c5": 4.320700566605697, - "c6": 4.110304794864046, - "c7": 4.3592492227999085 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.478502080443827, + "c4": 4.382801664355061, + "c5": 3.2871012482662954, + "c6": 2.1914008321775293, + "c7": 1.095700416088766 }, "rgb": [58, 15, 49] }, @@ -303972,23 +303972,23 @@ "year": 1790, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -23.78519752654351, - "c2": -40.42388921701736, - "c3": 0.20243400804165645, - "c4": -2.307749509188021, - "c5": -32.839383733887956, - "c6": -40.60724917169559, - "c7": 19.4291673196509 + "points": { + "c1": 37.584447259085906, + "c2": -6.165914712657127, + "c3": -40.86656619678926, + "c4": -16.900806574849252, + "c5": -16.204249856090296, + "c6": 37.0624530685197, + "c7": 40.03639542339903 }, - "vertexSeeds": { - "c1": 8.645343466987514, - "c2": 8.730571553920905, - "c3": 8.581846795550971, - "c4": 9.380833687169785, - "c5": 9.324433218936667, - "c6": 8.726863339699605, - "c7": 8.759573916856452 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.42579750346741, + "c3": 11.188164586222843, + "c4": 8.950531668978279, + "c5": 6.712898751733714, + "c6": 4.47526583448913, + "c7": 2.237632917244565 }, "rgb": [222, 0, 59] }, @@ -303999,23 +303999,23 @@ "year": 1790, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 5.887464818092049, - "c2": 22.92384667870609, - "c3": 16.36785364375757, - "c4": -29.151241734454167, - "c5": -1.9344970471071719, - "c6": 32.88965058571215, - "c7": -19.481655416423756 + "points": { + "c1": -23.785292473496963, + "c2": -35.02491189071766, + "c3": 10.466809398024473, + "c4": -38.288024464750244, + "c5": 31.667177578741715, + "c6": 27.8497956604989, + "c7": -33.74573377172677 }, - "vertexSeeds": { - "c1": 5.150818357075475, - "c2": 5.142654525932661, - "c3": 5.143224301277658, - "c4": 5.149577963533829, - "c5": 5.151958680073051, - "c6": 5.137497556362914, - "c7": 5.136414849116044 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739287, + "c3": 6.171983356449447, + "c4": 4.937586685159606, + "c5": 3.7031900138695204, + "c6": 2.4687933425796804, + "c7": 1.2343966712898402 }, "rgb": [238, 201, 159] }, @@ -304026,23 +304026,23 @@ "year": 1790, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 44.152559343556874, - "c2": -17.838715511353715, - "c3": -25.799517877213855, - "c4": -47.07505311359251, - "c5": -5.597461014523141, - "c6": -46.538422414372945, - "c7": 13.171141424646294 + "points": { + "c1": 26.413544381423108, + "c2": 31.161870387989822, + "c3": 31.165581364436832, + "c4": -40.72575365939777, + "c5": -22.345453252352574, + "c6": -45.22894449301231, + "c7": 1.6723207647878198 }, - "vertexSeeds": { - "c1": 5.970074041798797, - "c2": 6.064451626005554, - "c3": 6.019421492727199, - "c4": 5.998137118643322, - "c5": 5.581402242433332, - "c6": 5.952434143574534, - "c7": 6.080346322517983 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629677, + "c3": 7.258437355524728, + "c4": 5.8067498844198004, + "c5": 4.35506241331485, + "c6": 2.9033749422099002, + "c7": 1.4516874711049501 }, "rgb": [86, 146, 138] }, @@ -304053,23 +304053,23 @@ "year": 1790, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 30.320433527916606, - "c2": 25.46443700482243, - "c3": -5.671317474215066, - "c4": 34.7064804653871, - "c5": -34.629725512866536, - "c6": 7.24085931935187, - "c7": 24.149215704974615 + "points": { + "c1": 7.878750516091685, + "c2": -15.556744296533694, + "c3": 2.3573944137377296, + "c4": 21.795794967910787, + "c5": 36.26375104740356, + "c6": -9.393848061779803, + "c7": -24.304710427953516 }, - "vertexSeeds": { - "c1": 5.844417145816853, - "c2": 6.075516594528737, - "c3": 5.957121988948682, - "c4": 5.954551749929214, - "c5": 6.145140024844831, - "c6": 5.909670511814294, - "c7": 6.168208453174935 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [58, 15, 49] }, @@ -304080,23 +304080,23 @@ "year": 1791, "resistanceReported": false, "duration": 54864000, - "curveSeeds": { - "c1": 25.656813853898228, - "c2": -9.743392038826677, - "c3": -34.493273307595224, - "c4": 37.54544072634533, - "c5": 61.66294166782245, - "c6": -18.469028025971816, - "c7": 23.83341997596898 + "points": { + "c1": 13.447313042470881, + "c2": 8.494199267958109, + "c3": 4.3065280498123, + "c4": -10.120122252442549, + "c5": -3.5024074814506463, + "c6": 26.845927011531927, + "c7": -38.42056581711052 }, - "vertexSeeds": { - "c1": 5.446298930306267, - "c2": 5.885053930347846, - "c3": 6.004736878602861, - "c4": 5.538760760432259, - "c5": 6.018990097270073, - "c6": 5.850514832803132, - "c7": 5.745872731604801 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [77, 76, 132] }, @@ -304107,23 +304107,23 @@ "year": 1789, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -13.73228593262813, - "c2": -10.158896600836993, - "c3": 12.439002752477858, - "c4": -7.197118281445171, - "c5": -7.634958806217396, - "c6": 9.29877427393917, - "c7": -4.984826579150191 + "points": { + "c1": 2.5535411020266707, + "c2": 8.48158761523867, + "c3": -15.117849766975853, + "c4": -23.151836670508473, + "c5": -0.623402519824694, + "c6": -7.991487853895681, + "c7": -23.82674911492704 }, - "vertexSeeds": { - "c1": 10.15444220469562, - "c2": 10.619670934616007, - "c3": 10.025381010066651, - "c4": 9.674889370009838, - "c5": 10.681646260299921, - "c6": 10.604224904711689, - "c7": 10.130542631661987 + "offsets": { + "c1": 18.54368932038835, + "c2": 15.894590846047167, + "c3": 13.24549237170596, + "c4": 10.596393897364779, + "c5": 7.94729542302357, + "c6": 5.298196948682389, + "c7": 2.6490984743411814 }, "rgb": [222, 0, 59] }, @@ -304134,23 +304134,23 @@ "year": 1790, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 31.453732781300843, - "c2": -37.97501152870691, - "c3": -12.349186641362113, - "c4": -11.286346064377256, - "c5": 13.550760312213455, - "c6": 26.768028951551287, - "c7": 28.764757785096066 + "points": { + "c1": 20.013991946480175, + "c2": -26.901888560256246, + "c3": 11.661070672786579, + "c4": 34.85746820186992, + "c5": -31.55126998905075, + "c6": 45.618814107636894, + "c7": -39.762637753085 }, - "vertexSeeds": { - "c1": 7.6259209947504765, - "c2": 7.16061960513057, - "c3": 7.568982180622573, - "c4": 7.384783315503163, - "c5": 7.694107021654815, - "c6": 7.483739768025836, - "c7": 7.409472654707136 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048533, + "c3": 9.223300970873789, + "c4": 7.378640776699022, + "c5": 5.533980582524277, + "c6": 3.689320388349511, + "c7": 1.844660194174766 }, "rgb": [238, 201, 159] }, @@ -304161,23 +304161,23 @@ "year": 1789, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 4.181841967155378, - "c2": -6.993313858280338, - "c3": -3.030434757447459, - "c4": 17.28491581906649, - "c5": -3.6662590534358728, - "c6": 16.701090435744895, - "c7": 19.79397586002257 + "points": { + "c1": 9.236622125870866, + "c2": -19.683410207792424, + "c3": -20.101974057719353, + "c4": -20.54909868999446, + "c5": 17.4882531021876, + "c6": 4.042830101122036, + "c7": 10.34207982170932 }, - "vertexSeeds": { - "c1": 9.205762179242758, - "c2": 9.852166183487006, - "c3": 10.630682849120179, - "c4": 11.188425746804693, - "c5": 9.459834863244819, - "c6": 11.041844403737542, - "c7": 11.537705704521656 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.588072122052704, + "c3": 13.82339343504392, + "c4": 11.058714748035134, + "c5": 8.294036061026349, + "c6": 5.529357374017563, + "c7": 2.7646786870087854 }, "rgb": [77, 76, 132] }, @@ -304188,23 +304188,23 @@ "year": 1790, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -35.12766858761738, - "c2": 25.236102080662803, - "c3": -35.60324640239345, - "c4": 32.59578554001074, - "c5": 7.129900806838556, - "c6": 16.69717501451685, - "c7": -14.42316966177389 + "points": { + "c1": 33.2250951558657, + "c2": 32.095035459452546, + "c3": -20.90730902774838, + "c4": 15.787115857358351, + "c5": 33.73570347389388, + "c6": -10.661619929057991, + "c7": 23.155804114752684 }, - "vertexSeeds": { - "c1": 4.901196608910295, - "c2": 4.5326872493314605, - "c3": 4.416706334350552, - "c4": 4.488076464139875, - "c5": 4.392235721352553, - "c6": 4.883345920436003, - "c7": 4.54007505278043 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216367, + "c3": 5.8714748035136415, + "c4": 4.697179842810909, + "c5": 3.5228848821081833, + "c6": 2.3485899214054577, + "c7": 1.1742949607027255 }, "rgb": [238, 201, 159] }, @@ -304215,23 +304215,23 @@ "year": 1790, "resistanceReported": false, "duration": 51235200, - "curveSeeds": { - "c1": 47.136856564819595, - "c2": 18.371570403772765, - "c3": -30.331081728811462, - "c4": 39.06800434553102, - "c5": -32.745628439141434, - "c6": 36.33879941082334, - "c7": -64.2052743386643 + "points": { + "c1": -19.47135033323019, + "c2": -43.75193815199684, + "c3": -58.70350120020052, + "c4": 3.126021232055166, + "c5": -27.83639044506863, + "c6": 47.932064905197606, + "c7": -22.638903657007333 }, - "vertexSeeds": { - "c1": 9.745686812068872, - "c2": 9.666110764902317, - "c3": 9.445338278122696, - "c4": 9.145218196064635, - "c5": 9.607203424745993, - "c6": 9.083653012833738, - "c7": 9.282456396196991 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231618, + "c3": 11.627369394359697, + "c4": 9.301895515487752, + "c5": 6.976421636615809, + "c6": 4.650947757743886, + "c7": 2.325473878871943 }, "rgb": [77, 76, 132] }, @@ -304242,23 +304242,23 @@ "year": 1789, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -17.15144189964002, - "c2": 20.83700888237278, - "c3": 25.60473943443006, - "c4": 11.17494975400767, - "c5": 6.838524829887618, - "c6": -25.754750096419052, - "c7": -5.506049055868029 + "points": { + "c1": 25.312623409668646, + "c2": 7.239736475392874, + "c3": 2.2613140357133723, + "c4": -20.543240971150354, + "c5": 28.06053802503274, + "c6": 28.259679076143776, + "c7": -8.847267553864196 }, - "vertexSeeds": { - "c1": 6.271371669286166, - "c2": 6.1486573606914146, - "c3": 6.30457054468541, - "c4": 6.012023307632996, - "c5": 6.162980684396273, - "c6": 5.997251750827505, - "c7": 6.454214756106597 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [222, 0, 59] }, @@ -304269,23 +304269,23 @@ "year": 1790, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 6.24521456382346, - "c2": 32.01037567579209, - "c3": -38.8008795372722, - "c4": 36.714230615141005, - "c5": -7.232963757646779, - "c6": 42.181107868759284, - "c7": 15.605858679906483 + "points": { + "c1": 10.999895751357272, + "c2": -35.85828895792468, + "c3": 19.988410093127143, + "c4": 34.87729663981813, + "c5": 24.282384936625903, + "c6": 44.55641820615992, + "c7": -3.576658357033196 }, - "vertexSeeds": { - "c1": 4.7692163159519465, - "c2": 5.795267796901456, - "c3": 5.337216369709239, - "c4": 5.830371824748972, - "c5": 5.41868752095813, - "c6": 6.266305005821934, - "c7": 6.279857597624019 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198335, + "c3": 8.159963014331947, + "c4": 6.527970411465557, + "c5": 4.895977808599167, + "c6": 3.2639852057327783, + "c7": 1.6319926028663891 }, "rgb": [222, 0, 59] }, @@ -304296,23 +304296,23 @@ "year": 1789, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 3.981498346789138, - "c2": 4.967718807935277, - "c3": -14.105775952628818, - "c4": -23.41795347374666, - "c5": 17.639636176143476, - "c6": -19.307851310198426, - "c7": -3.5223115946307253 + "points": { + "c1": -9.525382027088135, + "c2": -5.915506721792919, + "c3": 26.00801217200597, + "c4": -23.899985843732825, + "c5": -0.5719702754093632, + "c6": -12.60915678051307, + "c7": 11.28409563747384 }, - "vertexSeeds": { - "c1": 5.709788224100156, - "c2": 5.657884146886622, - "c3": 5.791771423069392, - "c4": 5.532953594872111, - "c5": 5.838039952410754, - "c6": 5.9018697633057755, - "c7": 5.9415087082118045 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388346, + "c3": 7.119741100323618, + "c4": 5.695792880258891, + "c5": 4.2718446601941835, + "c6": 2.8478964401294564, + "c7": 1.4239482200647282 }, "rgb": [222, 0, 59] }, @@ -304323,23 +304323,23 @@ "year": 1790, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 11.065596417070594, - "c2": -22.177796086775853, - "c3": -16.48772674742206, - "c4": -10.5179636135435, - "c5": -32.18142393766715, - "c6": -34.76200642083433, - "c7": -14.1584162027616 + "points": { + "c1": -0.6416708122382673, + "c2": 36.612123840188005, + "c3": 21.394883438567426, + "c4": -16.935093693357672, + "c5": 17.342156533192842, + "c6": 39.09466626428042, + "c7": 4.941900680782567 }, - "vertexSeeds": { - "c1": 9.875951288769405, - "c2": 10.441509378857589, - "c3": 9.263613077257133, - "c4": 9.282586578531754, - "c5": 9.262632016414091, - "c6": 10.060999203318975, - "c7": 9.081479600200469 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961164, + "c3": 12.621359223300963, + "c4": 10.09708737864078, + "c5": 7.572815533980582, + "c6": 5.048543689320383, + "c7": 2.5242718446601855 }, "rgb": [86, 146, 138] }, @@ -304350,23 +304350,23 @@ "year": 1790, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 39.464853681135615, - "c2": -32.78015128057524, - "c3": 18.33680542942963, - "c4": 23.690899033538308, - "c5": -10.551132269529031, - "c6": -8.22076559824561, - "c7": 22.71238874802998 + "points": { + "c1": 25.379821845456767, + "c2": -18.12932528920056, + "c3": -38.62088208035541, + "c4": 35.92503185528262, + "c5": 16.14456640291995, + "c6": 37.02354494919887, + "c7": -2.8910912903749377 }, - "vertexSeeds": { - "c1": 4.961924676416004, - "c2": 5.037098866676124, - "c3": 5.063850333514832, - "c4": 5.006459455519723, - "c5": 5.208910553191892, - "c6": 4.997916318983517, - "c7": 5.24680199316456 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020809, + "c3": 6.33379565418401, + "c4": 5.067036523347191, + "c5": 3.800277392510393, + "c6": 2.5335182616735956, + "c7": 1.2667591308367978 }, "rgb": [77, 76, 132] }, @@ -304377,23 +304377,23 @@ "year": 1790, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -31.121868817332377, - "c2": 26.18240460517012, - "c3": 1.391576907138969, - "c4": 16.196261175864436, - "c5": 9.015820327819867, - "c6": 28.07809923513247, - "c7": -8.949794242548062 + "points": { + "c1": 14.46966171892391, + "c2": 3.4457030123179706, + "c3": 11.592192090335125, + "c4": -33.66879917688322, + "c5": 5.770075495974851, + "c6": 25.927025387746085, + "c7": -13.240504756284185 }, - "vertexSeeds": { - "c1": 4.846284210939474, - "c2": 4.351028577623252, - "c3": 5.305447143156604, - "c4": 4.626388227502398, - "c5": 4.643662806352277, - "c6": 4.6465730874468685, - "c7": 4.279549981152174 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.68053629218678, + "c4": 5.344429033749423, + "c5": 4.008321775312066, + "c6": 2.6722145168747113, + "c7": 1.3361072584373572 }, "rgb": [222, 0, 59] }, @@ -304404,23 +304404,23 @@ "year": 1789, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -21.278431774780486, - "c2": 7.257412754216855, - "c3": -19.33844969691374, - "c4": -20.713092286946868, - "c5": 17.620765613347974, - "c6": -6.75468181531242, - "c7": 21.08661710455046 + "points": { + "c1": -24.261301582361096, + "c2": 21.056603174914304, + "c3": -3.6584830700037188, + "c4": 3.189780868679648, + "c5": 1.765753670794286, + "c6": 1.132835833171125, + "c7": -9.657824327570767 }, - "vertexSeeds": { - "c1": 0.6340735405616453, - "c2": 0.6364091771462199, - "c3": 0.6060747231570885, - "c4": 0.6036575277653803, - "c5": 0.5851179915880571, - "c6": 0.6189022078649029, - "c7": 0.5735228642337784 + "offsets": { + "c1": 1.1003236245954693, + "c2": 0.9431345353675451, + "c3": 0.7859454461396209, + "c4": 0.6287563569116967, + "c5": 0.47156726768377255, + "c6": 0.31437817845584837, + "c7": 0.15718908922792418 }, "rgb": [86, 146, 138] }, @@ -304431,23 +304431,23 @@ "year": 1790, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -2.4749070017770762, - "c2": -25.54746330980798, - "c3": 18.006684789517408, - "c4": -22.931803105784986, - "c5": -25.118349283428593, - "c6": 24.798563823837902, - "c7": -22.42177676663802 + "points": { + "c1": 6.661294850136414, + "c2": 28.500980767665098, + "c3": 32.647557869666485, + "c4": -30.78322746698328, + "c5": 18.197490590452446, + "c6": 16.258545004448536, + "c7": 2.876850621309572 }, - "vertexSeeds": { - "c1": 5.482271636546804, - "c2": 5.364893944406461, - "c3": 4.764137324458502, - "c4": 5.282985351107753, - "c5": 4.962947756187312, - "c6": 4.91822688666306, - "c7": 5.1844132891202435 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790568, + "c3": 7.350901525658806, + "c4": 5.880721220527042, + "c5": 4.410540915395288, + "c6": 2.940360610263525, + "c7": 1.4701803051317626 }, "rgb": [86, 146, 138] }, @@ -304458,23 +304458,23 @@ "year": 1790, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 12.951379108067236, - "c2": 35.25529701865694, - "c3": -28.714127093220725, - "c4": -12.810366744688913, - "c5": 7.011328404603439, - "c6": -11.149104069262219, - "c7": 26.232782441196242 + "points": { + "c1": -36.118162302455076, + "c2": -32.6833010750049, + "c3": 20.184659156400834, + "c4": 31.965606835112318, + "c5": 30.755733089456065, + "c6": 4.959598272438761, + "c7": 12.908421693232881 }, - "vertexSeeds": { - "c1": 9.53350147197641, - "c2": 9.06296863980851, - "c3": 8.62289044639737, - "c4": 9.275674201326078, - "c5": 9.463042428625235, - "c6": 9.468523771527412, - "c7": 9.71297640997752 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151176, + "c3": 11.581137309292647, + "c4": 9.264909847434117, + "c5": 6.948682385575588, + "c6": 4.6324549237170585, + "c7": 2.3162274618585292 }, "rgb": [238, 201, 159] }, @@ -304485,23 +304485,23 @@ "year": 1790, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -11.972569301576115, - "c2": -6.196320472058076, - "c3": 35.15717211809628, - "c4": 39.714582645906724, - "c5": -28.54268214203665, - "c6": 37.263187241438295, - "c7": -29.78340722607373 + "points": { + "c1": -10.998760754006959, + "c2": 6.875886872980956, + "c3": 13.315985037463165, + "c4": 9.483392626046772, + "c5": 5.3967371490994225, + "c6": 44.7687863570712, + "c7": -5.926798499066969 }, - "vertexSeeds": { - "c1": 5.905500238657015, - "c2": 6.331464351944683, - "c3": 5.920084234566124, - "c4": 5.867194116471066, - "c5": 6.280816811429604, - "c6": 5.862632111297645, - "c7": 5.95917992011575 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [77, 76, 132] }, @@ -304512,23 +304512,23 @@ "year": 1790, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 21.682113719806495, - "c2": -16.05916275372214, - "c3": 13.181232330241734, - "c4": 44.735153440721916, - "c5": -39.58526044269921, - "c6": -13.42784822534297, - "c7": 9.347647641732891 + "points": { + "c1": -9.228218890066302, + "c2": 20.747459562262875, + "c3": 7.310432710401514, + "c4": -31.846313667497963, + "c5": -43.98649751186837, + "c6": -15.28429272764069, + "c7": -40.051786224748156 }, - "vertexSeeds": { - "c1": 3.655893353802352, - "c2": 3.586927022535475, - "c3": 3.5179149825778047, - "c4": 3.7122035732088134, - "c5": 3.7356873771383436, - "c6": 3.622726440348344, - "c7": 3.631720414447352 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883496, + "c3": 4.530744336569582, + "c4": 3.6245954692556563, + "c5": 2.7184466019417424, + "c6": 1.8122977346278282, + "c7": 0.9061488673139141 }, "rgb": [238, 201, 159] }, @@ -304539,23 +304539,23 @@ "year": 1790, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 33.054821852760895, - "c2": -21.82803083507902, - "c3": -25.606589288323864, - "c4": -37.758193213312914, - "c5": -30.463921661049547, - "c6": -8.88515436127971, - "c7": -8.642856953066925 + "points": { + "c1": -25.255483213881984, + "c2": 29.991542274054467, + "c3": -18.889915831002867, + "c4": -7.18324937686004, + "c5": -36.61624578529488, + "c6": 0.428779895314122, + "c7": -6.922802585545178 }, - "vertexSeeds": { - "c1": 3.9999985011220565, - "c2": 3.996033263569579, - "c3": 3.9499573550560285, - "c4": 4.104392112300506, - "c5": 3.9393409948128832, - "c6": 4.105883225250632, - "c7": 3.878688071952731 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.01941747572815, + "c3": 5.016181229773465, + "c4": 4.012944983818767, + "c5": 3.0097087378640808, + "c6": 2.0064724919093835, + "c7": 1.0032362459546862 }, "rgb": [222, 0, 59] }, @@ -304566,23 +304566,23 @@ "year": 1790, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 25.376925590645975, - "c2": -5.395204200152058, - "c3": 1.8722679699057352, - "c4": -31.032988462143408, - "c5": 19.15953167161757, - "c6": -30.055248482447276, - "c7": -10.833286921580822 + "points": { + "c1": -7.250190617248897, + "c2": 40.09157835138043, + "c3": 42.17197661172619, + "c4": -17.148054485045023, + "c5": -33.62445942782781, + "c6": -43.96725830506336, + "c7": 28.5452876617556 }, - "vertexSeeds": { - "c1": 2.4425253373746982, - "c2": 2.347411743994466, - "c3": 2.4140137756032463, - "c4": 2.352927217169373, - "c5": 2.176641431198638, - "c6": 2.355169221802501, - "c7": 2.305816725790257 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081824, + "c3": 2.935737401756819, + "c4": 2.348589921405455, + "c5": 1.7614424410540912, + "c6": 1.1742949607027275, + "c7": 0.5871474803513638 }, "rgb": [58, 15, 49] }, @@ -304593,23 +304593,23 @@ "year": 1789, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": -5.499499223304458, - "c2": 3.5720468691936738, - "c3": -13.909406696928832, - "c4": -0.7142402281287943, - "c5": 18.11526391772319, - "c6": 2.662831949373583, - "c7": 20.61560503487336 + "points": { + "c1": -18.21205992209446, + "c2": 22.174876878927257, + "c3": 13.666110221896375, + "c4": -16.428384595297434, + "c5": 6.358479775969268, + "c6": -11.930540102587761, + "c7": -8.325236964272003 }, - "vertexSeeds": { - "c1": 4.085845213537563, - "c2": 4.118758467139929, - "c3": 4.016822724882145, - "c4": 3.939669229191397, - "c5": 3.772811326798086, - "c6": 3.6773407822421045, - "c7": 4.046123748905683 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [58, 15, 49] }, @@ -304620,23 +304620,23 @@ "year": 1790, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 21.075775974728167, - "c2": 18.28137847154968, - "c3": -42.386005892191825, - "c4": -42.94807901229868, - "c5": -23.878807857503475, - "c6": 22.265938171992083, - "c7": -0.3479546196436658 + "points": { + "c1": -32.06551200291866, + "c2": -7.985111227068366, + "c3": 4.99446711842733, + "c4": 35.296435485830465, + "c5": -33.56436493989381, + "c6": -11.250031143866146, + "c7": -41.6005032765792 }, - "vertexSeeds": { - "c1": 6.524179355057565, - "c2": 6.106198793054295, - "c3": 6.22078642016489, - "c4": 6.529390452746069, - "c5": 6.403240382984915, - "c6": 6.235457456296038, - "c7": 6.09029195864287 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796109, + "c3": 7.928802588996767, + "c4": 6.343042071197405, + "c5": 4.757281553398065, + "c6": 3.1715210355987025, + "c7": 1.5857605177993623 }, "rgb": [86, 146, 138] }, @@ -304647,23 +304647,23 @@ "year": 1789, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 18.566823049105988, - "c2": -2.2736976271569382, - "c3": 15.736037397274867, - "c4": 30.71112623461489, - "c5": 5.72379802196885, - "c6": -11.009653608865644, - "c7": 18.048048589827776 + "points": { + "c1": 19.601452443201516, + "c2": -28.827752525418546, + "c3": -28.887544883962406, + "c4": 16.761827647680093, + "c5": 15.575762686587673, + "c6": -8.34948547282334, + "c7": 0.5048238602063435 }, - "vertexSeeds": { - "c1": 6.152222632126065, - "c2": 6.208349946191908, - "c3": 6.134048818106321, - "c4": 6.165390541358274, - "c5": 6.511251562477575, - "c6": 6.428805391723117, - "c7": 6.327176874187204 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675441, + "c3": 7.859454461396211, + "c4": 6.28756356911696, + "c5": 4.715672676837732, + "c6": 3.14378178455848, + "c7": 1.5718908922792512 }, "rgb": [86, 146, 138] }, @@ -304674,23 +304674,23 @@ "year": 1789, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 16.212413319347448, - "c2": 0.8044624513051595, - "c3": -26.046601807635867, - "c4": -23.52594562288122, - "c5": 17.514195893035314, - "c6": -25.55436075139433, - "c7": 20.44691123907173 + "points": { + "c1": 24.68737088625594, + "c2": 21.057557680746456, + "c3": -16.661348085874685, + "c4": 10.515834656553189, + "c5": 18.534985559101827, + "c6": -21.55071295592974, + "c7": -15.564182107142075 }, - "vertexSeeds": { - "c1": 4.740733383237682, - "c2": 4.866930450677451, - "c3": 4.739171013452835, - "c4": 5.036608397914501, - "c5": 4.859685484934697, - "c6": 4.8039570792241415, - "c7": 4.71483851565172 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618575, + "c3": 6.102635228848824, + "c4": 4.882108183079061, + "c5": 3.661581137309299, + "c6": 2.4410540915395256, + "c7": 1.2205270457697628 }, "rgb": [238, 201, 159] }, @@ -304701,23 +304701,23 @@ "year": 1790, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 3.9337879747618416, - "c2": 21.698486609972285, - "c3": 24.213210188395017, - "c4": 26.266155149548936, - "c5": -19.447118183976293, - "c6": 18.856247376251716, - "c7": -21.89331421622422 + "points": { + "c1": -8.844864404055976, + "c2": -30.73104449284199, + "c3": -24.144387098154233, + "c4": 0.26141107716750867, + "c5": -30.539061552700026, + "c6": -26.346947273970674, + "c7": 17.445891760791568 }, - "vertexSeeds": { - "c1": 4.197695344844018, - "c2": 4.044581843756616, - "c3": 4.2610462343944, - "c4": 4.261998028930907, - "c5": 4.033625209176441, - "c6": 4.271990346137751, - "c7": 4.153097784870222 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090152, + "c3": 5.2242256125751245, + "c4": 4.179380490060108, + "c5": 3.1345353675450807, + "c6": 2.089690245030054, + "c7": 1.044845122515027 }, "rgb": [238, 201, 159] }, @@ -304728,23 +304728,23 @@ "year": 1790, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": 45.96571040206281, - "c2": -0.9604537841354812, - "c3": -23.75614619341126, - "c4": 47.47891543621523, - "c5": 1.845540193113159, - "c6": 18.21722947541778, - "c7": -24.209319727143267 + "points": { + "c1": 14.582590899553082, + "c2": 18.552406625295816, + "c3": 28.624342837600068, + "c4": 19.556374527434585, + "c5": 24.382371905630905, + "c6": 36.06624000326556, + "c7": 9.553049987469393 }, - "vertexSeeds": { - "c1": 4.285026300201421, - "c2": 3.958641876128664, - "c3": 3.9647356376684346, - "c4": 3.9879397691930465, - "c5": 3.9915173424822017, - "c6": 4.1688309325542106, - "c7": 4.032922946055081 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969486, + "c3": 5.15487748497457, + "c4": 4.123901987979664, + "c5": 3.092926490984748, + "c6": 2.061950993989832, + "c7": 1.030975496994916 }, "rgb": [222, 0, 59] }, @@ -304755,23 +304755,23 @@ "year": 1790, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -22.66800595288344, - "c2": 29.94601899000881, - "c3": 25.49650927913853, - "c4": -6.225472288379475, - "c5": -11.218435339856885, - "c6": 33.012027849101585, - "c7": -32.39314544825856 + "points": { + "c1": -21.088434778848075, + "c2": 16.753829962597003, + "c3": -11.93135415173995, + "c4": -11.17533502960659, + "c5": -12.40899396275698, + "c6": 11.772612181364735, + "c7": -35.87783159312287 }, - "vertexSeeds": { - "c1": 3.547374211184171, - "c2": 3.021598426243888, - "c3": 3.3697141553335723, - "c4": 3.3430923150977585, - "c5": 3.1194253512327306, - "c6": 3.5315771874284403, - "c7": 3.3199604218345686 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.253351826167363, + "c4": 3.4026814609338896, + "c5": 2.5520110957004154, + "c6": 1.7013407304669417, + "c7": 0.8506703652334737 }, "rgb": [222, 0, 59] }, @@ -304782,23 +304782,23 @@ "year": 1789, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -14.194758564643294, - "c2": -3.622915795679031, - "c3": -18.2126994133039, - "c4": 7.417541754340693, - "c5": -4.597270089203754, - "c6": 18.530658165423496, - "c7": -1.8453215312629965 + "points": { + "c1": 11.053455672517451, + "c2": 9.368802973136326, + "c3": 11.056717925340664, + "c4": -19.990718094501837, + "c5": 5.044412956976878, + "c6": 22.389302813698464, + "c7": 2.812914868263899 }, - "vertexSeeds": { - "c1": 12.345632424944684, - "c2": 11.796449246161641, - "c3": 12.246745361467127, - "c4": 12.173353189002883, - "c5": 12.538732176718854, - "c6": 12.312398826479326, - "c7": 12.454172814053557 + "offsets": { + "c1": 21.35922330097087, + "c2": 18.307905686546448, + "c3": 15.25658807212207, + "c4": 12.205270457697647, + "c5": 9.153952843273224, + "c6": 6.102635228848846, + "c7": 3.051317614424423 }, "rgb": [77, 76, 132] }, @@ -304809,23 +304809,23 @@ "year": 1790, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 21.038254820818736, - "c2": 8.167100142250774, - "c3": 29.690253134240507, - "c4": -8.158506521239502, - "c5": 26.847270037340166, - "c6": 14.942752730783063, - "c7": 31.298964614728433 + "points": { + "c1": -9.348625371345307, + "c2": -5.429752592267121, + "c3": -35.13550510915228, + "c4": 15.269635512632703, + "c5": -30.511115538294284, + "c6": 6.1425355712157526, + "c7": 19.139713852213397 }, - "vertexSeeds": { - "c1": 3.8100123238560024, - "c2": 3.963997035326374, - "c3": 4.007349308964201, - "c4": 3.872227438068392, - "c5": 3.8376897219472417, - "c6": 3.8808690636258776, - "c7": 3.9689595352284117 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.9916782246879325, + "c3": 4.993065187239942, + "c4": 3.9944521497919596, + "c5": 2.99583911234397, + "c6": 1.9972260748959798, + "c7": 0.9986130374479899 }, "rgb": [77, 76, 132] }, @@ -304836,23 +304836,23 @@ "year": 1790, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": 16.83953301576981, - "c2": 16.44656207516821, - "c3": 7.022814850493262, - "c4": -17.19541123337858, - "c5": 2.442108724499434, - "c6": -35.63741043662661, - "c7": -20.18565556273971 + "points": { + "c1": -38.576058521440906, + "c2": 36.18925691712888, + "c3": 33.434383385343956, + "c4": -8.169649169131745, + "c5": 44.61732788015329, + "c6": 26.976735099365023, + "c7": 43.02641713654675 }, - "vertexSeeds": { - "c1": 5.538275323749671, - "c2": 5.658807146498035, - "c3": 5.598667626237151, - "c4": 5.471853079620242, - "c5": 5.712700428561427, - "c6": 5.710535188135749, - "c7": 5.50990590782367 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066562, + "c3": 6.934812760055482, + "c4": 5.547850208044376, + "c5": 4.160887656033294, + "c6": 2.773925104022188, + "c7": 1.3869625520111062 }, "rgb": [86, 146, 138] }, @@ -304863,23 +304863,23 @@ "year": 1789, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 1.1964289012718154, - "c2": 14.101559024017291, - "c3": -11.789594956213463, - "c4": 23.41838210595983, - "c5": 13.784575181497026, - "c6": -8.982572897015448, - "c7": -10.185302103382945 + "points": { + "c1": -25.64446565297689, + "c2": -23.486642464967062, + "c3": 1.7598437877572835, + "c4": -15.203018632540271, + "c5": -26.956248567787995, + "c6": 3.8549746319341835, + "c7": 29.448051127110055 }, - "vertexSeeds": { - "c1": 5.79124155732911, - "c2": 5.944585979909252, - "c3": 5.868322964587694, - "c4": 6.272842409443237, - "c5": 6.16125310165938, - "c6": 5.8745337289773305, - "c7": 5.783294780259166 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112335, + "c3": 7.535829865926956, + "c4": 6.028663892741556, + "c5": 4.521497919556178, + "c6": 3.014331946370778, + "c7": 1.5071659731853997 }, "rgb": [222, 0, 59] }, @@ -304890,23 +304890,23 @@ "year": 1790, "resistanceReported": true, "duration": 22982400, - "curveSeeds": { - "c1": -26.864374791202906, - "c2": -25.960954275315494, - "c3": 20.957947706416356, - "c4": -34.77411062684841, - "c5": -10.201315476906675, - "c6": 15.10552580778458, - "c7": 19.818117001719592 + "points": { + "c1": -24.839847697526405, + "c2": 10.105845189947047, + "c3": 25.868854349585682, + "c4": -15.3834191442118, + "c5": -5.602606640034981, + "c6": -5.993548958050749, + "c7": 0.5923141608587343 }, - "vertexSeeds": { - "c1": 9.010727364469886, - "c2": 8.93773052424426, - "c3": 9.031281470974687, - "c4": 8.995202207072767, - "c5": 9.031801591027007, - "c6": 9.026954965798542, - "c7": 8.96057598434083 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743474, + "c3": 10.772075820619492, + "c4": 8.61766065649565, + "c5": 6.463245492371666, + "c6": 4.308830328247825, + "c7": 2.154415164123841 }, "rgb": [238, 201, 159] }, @@ -304917,23 +304917,23 @@ "year": 1789, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": 8.44955147734698, - "c2": -4.791303579492421, - "c3": -17.006672916935138, - "c4": 18.675529925125954, - "c5": -11.080240428735092, - "c6": -13.413489903241707, - "c7": 20.829951904432466 + "points": { + "c1": -9.598612380289827, + "c2": 19.727607212111817, + "c3": -10.426379117712656, + "c4": -5.529592615961516, + "c5": -15.527785430469159, + "c6": 21.16347912462754, + "c7": 22.031223759432226 }, - "vertexSeeds": { - "c1": 6.406481633051284, - "c2": 6.091299958336093, - "c3": 6.035577010315562, - "c4": 6.489351486321135, - "c5": 6.313772375185742, - "c6": 6.528656967853526, - "c7": 6.502170458509207 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635228, + "c3": 7.836338418862691, + "c4": 6.269070735090152, + "c5": 4.701803051317614, + "c6": 3.134535367545076, + "c7": 1.567267683772538 }, "rgb": [238, 201, 159] }, @@ -304944,23 +304944,23 @@ "year": 1790, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -24.970904535402966, - "c2": -23.784665293729667, - "c3": 33.340401449409356, - "c4": -19.48215966274187, - "c5": -14.802985002192177, - "c6": 8.288452791111936, - "c7": 1.5007495104616737 + "points": { + "c1": 4.499670253938106, + "c2": 11.307747185192312, + "c3": 47.56233787099168, + "c4": 45.67640974422359, + "c5": -17.99504960089073, + "c6": -17.521369121132054, + "c7": -30.99024563765637 }, - "vertexSeeds": { - "c1": 2.464496496111795, - "c2": 2.3591309317012175, - "c3": 2.503678455163425, - "c4": 2.3398421071294813, - "c5": 2.5027682436330756, - "c6": 2.3161058737404963, - "c7": 2.4969718558682907 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228854, + "c3": 3.0050855293573724, + "c4": 2.404068423485903, + "c5": 1.803051317614427, + "c6": 1.2020342117429514, + "c7": 0.6010171058714757 }, "rgb": [77, 76, 132] }, @@ -304971,23 +304971,23 @@ "year": 1789, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 25.450962158676333, - "c2": -6.1405291147233605, - "c3": -10.406544907355663, - "c4": -0.6366078723184856, - "c5": 23.621500191566483, - "c6": -20.81176168052579, - "c7": -20.747698452505524 + "points": { + "c1": 6.428408596965085, + "c2": -20.26020179067004, + "c3": -24.378710388362165, + "c4": 29.791220590863126, + "c5": -6.74793552587272, + "c6": -6.505907558357649, + "c7": 25.969573511298627 }, - "vertexSeeds": { - "c1": 1.4629754577437335, - "c2": 1.5141731996386707, - "c3": 1.4523816924428032, - "c4": 1.5882740948072795, - "c5": 1.4533181862204467, - "c6": 1.556489162017082, - "c7": 1.548034684839603 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820163, + "c4": 1.5349052242256112, + "c5": 1.1511789181692107, + "c6": 0.7674526121128056, + "c7": 0.38372630605640495 }, "rgb": [58, 15, 49] }, @@ -304998,23 +304998,23 @@ "year": 1790, "resistanceReported": true, "duration": 20822400, - "curveSeeds": { - "c1": 10.83058243341916, - "c2": -11.396800557815482, - "c3": -3.196628956504867, - "c4": -26.227256958020853, - "c5": -15.678639003484975, - "c6": 17.126370318140367, - "c7": -12.788947974103571 + "points": { + "c1": 31.431551008516408, + "c2": 14.127737272091345, + "c3": -7.957683171510752, + "c4": 23.19283297943405, + "c5": 12.45308486131605, + "c6": 11.858620235705068, + "c7": -8.240631617092184 }, - "vertexSeeds": { - "c1": 5.5591106370228305, - "c2": 5.664098655546565, - "c3": 5.457112931739601, - "c4": 5.782780752481938, - "c5": 5.745070904627937, - "c6": 5.492213188955892, - "c7": 5.835487138420824 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187238, + "c3": 7.004160887656028, + "c4": 5.60332871012482, + "c5": 4.20249653259361, + "c6": 2.8016643550624014, + "c7": 1.4008321775311923 }, "rgb": [58, 15, 49] }, @@ -305025,23 +305025,23 @@ "year": 1790, "resistanceReported": true, "duration": 27216000, - "curveSeeds": { - "c1": 14.171317722769686, - "c2": -0.17832604285170106, - "c3": 23.373085692653007, - "c4": 23.31878936225631, - "c5": 13.211613105490237, - "c6": -16.70171176805072, - "c7": 33.73707168090074 + "points": { + "c1": -12.284405735623285, + "c2": -10.515767529600737, + "c3": -20.22031066096076, + "c4": 5.253209545088168, + "c5": 9.670924322346863, + "c6": 3.4629059740788506, + "c7": 20.492998115725754 }, - "vertexSeeds": { - "c1": 4.459674810332493, - "c2": 4.523615625854633, - "c3": 4.534141979486259, - "c4": 4.432520615569742, - "c5": 4.781658286936094, - "c6": 4.576739521204882, - "c7": 4.787221844143379 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -305052,23 +305052,23 @@ "year": 1790, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -6.576677565095753, - "c2": 16.113390761439064, - "c3": 32.34138496153091, - "c4": -29.765086893400053, - "c5": -13.696282316094479, - "c6": -26.66295196427284, - "c7": -31.651320787281424 + "points": { + "c1": 26.797301089685753, + "c2": 0.6815373115286647, + "c3": 21.314089201487157, + "c4": 29.44343707226559, + "c5": -1.6782612311967426, + "c6": 20.121142666653625, + "c7": 15.247944282626918 }, - "vertexSeeds": { - "c1": 3.8277029133405005, - "c2": 3.9087421583156585, - "c3": 3.7934332259820915, - "c4": 3.8922568621552363, - "c5": 3.920550617514297, - "c6": 3.9179774125661337, - "c7": 3.805421652693135 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.71428571428572, + "c3": 4.761904761904761, + "c4": 3.8095238095238133, + "c5": 2.857142857142854, + "c6": 1.9047619047619067, + "c7": 0.9523809523809589 }, "rgb": [238, 201, 159] }, @@ -305079,23 +305079,23 @@ "year": 1790, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -37.97140505317578, - "c2": -24.76309908488986, - "c3": -6.487859479539949, - "c4": -14.402841455482935, - "c5": -2.742139203635162, - "c6": 34.389024700541796, - "c7": 13.932406680911804 + "points": { + "c1": 18.00127371928116, + "c2": 25.72505800127722, + "c3": -7.16634174388863, + "c4": -21.67028777563461, + "c5": -2.1693350780166796, + "c6": -24.17725391357471, + "c7": -1.109051527957682 }, - "vertexSeeds": { - "c1": 7.12261948594957, - "c2": 7.10253559114671, - "c3": 7.137067519941494, - "c4": 7.149793672035715, - "c5": 7.054964444713622, - "c6": 7.233728591165624, - "c7": 7.228762091320263 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042977, + "c3": 8.64539990753586, + "c4": 6.916319926028675, + "c5": 5.1872399445214885, + "c6": 3.4581599630143023, + "c7": 1.7290799815071858 }, "rgb": [77, 76, 132] }, @@ -305106,23 +305106,23 @@ "year": 1789, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 9.104643352398252, - "c2": 0.6798756492156102, - "c3": -0.4310208150830235, - "c4": -3.6255580114758708, - "c5": -24.46615655961942, - "c6": -16.456782919258316, - "c7": -13.389995346238653 + "points": { + "c1": -11.808513520339222, + "c2": -8.390018921762202, + "c3": 23.697635219218856, + "c4": 1.600294742625227, + "c5": -18.818878690076076, + "c6": 26.448938298590942, + "c7": -16.234816715168098 }, - "vertexSeeds": { - "c1": 3.2856850588945603, - "c2": 3.2429106116530675, - "c3": 3.201005257897463, - "c4": 3.1686506304754785, - "c5": 3.1714085373797354, - "c6": 3.3633929481477973, - "c7": 3.244430142161091 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199724, + "c3": 4.137771613499772, + "c4": 3.31021729079982, + "c5": 2.4826629680998673, + "c6": 1.6551086453999044, + "c7": 0.8275543226999522 }, "rgb": [77, 76, 132] }, @@ -305133,23 +305133,23 @@ "year": 1789, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 7.248150042128145, - "c2": -12.467979001834479, - "c3": -1.109898845174957, - "c4": -16.65705191072036, - "c5": 17.17485274631455, - "c6": -25.89854754230719, - "c7": -4.557620135885106 + "points": { + "c1": 8.358663916302476, + "c2": -6.19959169809961, + "c3": -20.918524752663508, + "c4": 16.64160288671055, + "c5": 21.2882646066997, + "c6": 27.76973525703641, + "c7": -18.292068616457037 }, - "vertexSeeds": { - "c1": 7.270313435771894, - "c2": 7.301633550965617, - "c3": 7.369091863087097, - "c4": 7.20618555313552, - "c5": 7.37863596154643, - "c6": 7.597745440636039, - "c7": 7.355220431227731 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887656, + "c3": 9.130836800739715, + "c4": 7.304669440591771, + "c5": 5.478502080443828, + "c6": 3.6523347202958854, + "c7": 1.8261673601479427 }, "rgb": [58, 15, 49] }, @@ -305160,23 +305160,23 @@ "year": 1790, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -5.1767028512299476, - "c2": 24.853698046010884, - "c3": 19.09572217404925, - "c4": -7.051367133479236, - "c5": 16.809438855592752, - "c6": 6.848469631976002, - "c7": 2.4202289069020892 + "points": { + "c1": 4.035216773395867, + "c2": -25.01129955037591, + "c3": 34.104230343608734, + "c4": -15.30320996024938, + "c5": -27.44730501252544, + "c6": -13.95185652563234, + "c7": 27.237592919390607 }, - "vertexSeeds": { - "c1": 6.212441009437711, - "c2": 6.433361121421886, - "c3": 5.756554389793774, - "c4": 5.956219398546415, - "c5": 5.76256949765106, - "c6": 6.338322279557515, - "c7": 6.1746131066332 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661578, + "c4": 6.1581137309292595, + "c5": 4.618585298196941, + "c6": 3.079056865464636, + "c7": 1.539528432732318 }, "rgb": [77, 76, 132] }, @@ -305187,23 +305187,23 @@ "year": 1789, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 25.694312949684807, - "c2": 13.727542304912014, - "c3": -1.1748810999065, - "c4": 4.996688634433752, - "c5": -8.08008895590359, - "c6": 6.8640728948738285, - "c7": 6.412876185120901 + "points": { + "c1": -11.53182738675913, + "c2": -21.99457841663319, + "c3": 12.171332283864807, + "c4": -0.7231114504208982, + "c5": 25.38246981344833, + "c6": 22.695791037979376, + "c7": 13.334578804923488 }, - "vertexSeeds": { - "c1": 5.523028676249377, - "c2": 5.351176416364606, - "c3": 5.607078452366856, - "c4": 5.392334883590498, - "c5": 5.380503315637984, - "c6": 5.297628020666568, - "c7": 5.316035818559843 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.726768377253824, + "c4": 5.381414701803054, + "c5": 4.036061026352285, + "c6": 2.6907073509015387, + "c7": 1.3453536754507693 }, "rgb": [77, 76, 132] }, @@ -305214,23 +305214,23 @@ "year": 1790, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": 6.326107177387115, - "c2": 2.807969213605652, - "c3": 29.7655886170497, - "c4": 34.30962068395684, - "c5": -38.81930894331585, - "c6": 11.944786375678312, - "c7": -35.5352057924092 + "points": { + "c1": -29.961069930697803, + "c2": 33.00427501984123, + "c3": 27.94131615303027, + "c4": -38.53414469762368, + "c5": 41.37532906832861, + "c6": -27.276315571005437, + "c7": 30.814127078760592 }, - "vertexSeeds": { - "c1": 3.0404426480243854, - "c2": 3.214505729950721, - "c3": 3.158007886584153, - "c4": 3.2632697327723212, - "c5": 3.112881759792519, - "c6": 3.158259205141034, - "c7": 3.0930450150625814 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.6879334257975, + "c3": 3.906611188164592, + "c4": 3.125288950531671, + "c5": 2.34396671289875, + "c6": 1.5626444752658422, + "c7": 0.7813222376329211 }, "rgb": [58, 15, 49] }, @@ -305241,23 +305241,23 @@ "year": 1789, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -25.590205127231116, - "c2": 0.40858042328488864, - "c3": -22.027335543540914, - "c4": -10.912665907755265, - "c5": -21.10228122127785, - "c6": -21.489170566449147, - "c7": -7.117160771997792 + "points": { + "c1": 29.567385896241426, + "c2": -18.74385031975108, + "c3": 6.5907629952496904, + "c4": -19.100311720595414, + "c5": -10.391082875528355, + "c6": -27.001250143754202, + "c7": 16.088315001933623 }, - "vertexSeeds": { - "c1": 4.293522084820341, - "c2": 4.404659417069014, - "c3": 4.391932473190905, - "c4": 4.354253794440527, - "c5": 4.38101941689285, - "c6": 4.277018589660993, - "c7": 4.437556982139936 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251048, + "c3": 5.316689782709191, + "c4": 4.253351826167357, + "c5": 3.190013869625524, + "c6": 2.1266759130836905, + "c7": 1.0633379565418335 }, "rgb": [77, 76, 132] }, @@ -305268,23 +305268,23 @@ "year": 1790, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 12.767888278730354, - "c2": 41.45474498186495, - "c3": -0.32785428540212536, - "c4": -36.6866279091599, - "c5": -3.2299456477519186, - "c6": -1.7443948382363246, - "c7": 15.005978079485288 + "points": { + "c1": -20.91511634258471, + "c2": 28.85470096617979, + "c3": 8.480451237485788, + "c4": 39.270284522303385, + "c5": 17.228039926807043, + "c6": -22.169221861419665, + "c7": 5.1498475274946784 }, - "vertexSeeds": { - "c1": 2.492254242637844, - "c2": 2.4791164670212145, - "c3": 2.4912340998296405, - "c4": 2.484793792568554, - "c5": 2.4857071935303536, - "c6": 2.4822105045714733, - "c7": 2.4836146205842065 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228866, + "c3": 3.0050855293573484, + "c4": 2.404068423485891, + "c5": 1.803051317614433, + "c6": 1.2020342117429752, + "c7": 0.6010171058714577 }, "rgb": [77, 76, 132] }, @@ -305295,23 +305295,23 @@ "year": 1790, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 38.46493083646668, - "c2": -4.64469690631514, - "c3": 26.6878231637603, - "c4": -33.40063064284398, - "c5": -10.396253096351536, - "c6": -8.821216092806129, - "c7": 14.109610956122594 + "points": { + "c1": 32.86154149475425, + "c2": -18.328835243752255, + "c3": -10.1610447706367, + "c4": -3.495710420184629, + "c5": -27.455753970047912, + "c6": -36.43517218155593, + "c7": 29.852317827442562 }, - "vertexSeeds": { - "c1": 2.023548109454698, - "c2": 2.1547295204773023, - "c3": 2.134336413253379, - "c4": 2.0718681417256093, - "c5": 2.0922437283391506, - "c6": 2.1708113141502596, - "c7": 2.148382644872235 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [238, 201, 159] }, @@ -305322,23 +305322,23 @@ "year": 1790, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -24.609990697266202, - "c2": -13.330981846906642, - "c3": 20.757529650592005, - "c4": -20.803121697859577, - "c5": 27.870822984846477, - "c6": 21.76466693462534, - "c7": 31.149471179983735 + "points": { + "c1": 11.76629193399149, + "c2": 9.397730692449485, + "c3": -26.225120782321248, + "c4": -24.026554098213506, + "c5": -0.5268112916917786, + "c6": -25.15313825893523, + "c7": 5.672181167084766 }, - "vertexSeeds": { - "c1": 1.163944218181056, - "c2": 1.1084759940237316, - "c3": 1.1783334287921938, - "c4": 1.164369468711661, - "c5": 1.1578220403960644, - "c6": 1.1720488644997271, - "c7": 1.1543594146602518 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.71983356449376, + "c3": 1.4331946370781308, + "c4": 1.1465557096625054, + "c5": 0.85991678224688, + "c6": 0.5732778548312509, + "c7": 0.28663892741562547 }, "rgb": [238, 201, 159] }, @@ -305349,23 +305349,23 @@ "year": 1791, "resistanceReported": false, "duration": 53568000, - "curveSeeds": { - "c1": 51.547044678925715, - "c2": 38.81187487244357, - "c3": -28.538135175257224, - "c4": 0.33852923201361307, - "c5": -61.0788752045496, - "c6": -20.342316513427413, - "c7": 50.88903181243596 + "points": { + "c1": -38.93431488802618, + "c2": 49.96935371550006, + "c3": -60.95079555912743, + "c4": 31.756380166842348, + "c5": -49.247883690306594, + "c6": 30.07774790366112, + "c7": -70.19791165119372 }, - "vertexSeeds": { - "c1": 7.628244309736436, - "c2": 7.784277682496045, - "c3": 7.749039109316549, - "c4": 7.694340727982345, - "c5": 7.6438655031235525, - "c6": 7.673917530394226, - "c7": 7.730105265579924 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169235, + "c3": 9.292649098474334, + "c4": 7.434119278779491, + "c5": 5.575589459084589, + "c6": 3.7170596393897455, + "c7": 1.8585298196949007 }, "rgb": [222, 0, 59] }, @@ -305376,23 +305376,23 @@ "year": 1790, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -3.583879288660185, - "c2": -43.45215229070778, - "c3": 3.3686903586437467, - "c4": 3.839991888074195, - "c5": 15.700684457471112, - "c6": 25.291495170260077, - "c7": -36.32169349873101 + "points": { + "c1": 28.198911103194348, + "c2": 12.472884188934458, + "c3": 1.1354916068654006, + "c4": 31.86559272543498, + "c5": 40.66434551302072, + "c6": 22.297546486446677, + "c7": 21.035369319256688 }, - "vertexSeeds": { - "c1": 2.7590673575129534, - "c2": 2.7590673575129534, - "c3": 2.7590673575129534, - "c4": 2.7590673575129534, - "c5": 2.7590673575129534, - "c6": 2.7590673575129534, - "c7": 2.7590673575129534 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -305403,23 +305403,23 @@ "year": 1790, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": -35.795216932801594, - "c2": -5.555328036676279, - "c3": 13.512917152198838, - "c4": 1.9218931321766703, - "c5": 16.994803197483762, - "c6": 20.345265980833872, - "c7": 11.952729295296002 + "points": { + "c1": 17.037449255248347, + "c2": 31.086287229739497, + "c3": 48.83581978790201, + "c4": 15.202060136903924, + "c5": 35.19514546221244, + "c6": -32.68882173500481, + "c7": 25.120258081727115 }, - "vertexSeeds": { - "c1": 7.609071224213419, - "c2": 7.677186578087737, - "c3": 7.775936030534153, - "c4": 8.177692057756232, - "c5": 7.943067943542371, - "c6": 7.595583352692435, - "c7": 7.639083194176895 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255205, + "c3": 9.916782246879324, + "c4": 7.933425797503463, + "c5": 5.950069348127602, + "c6": 3.966712898751742, + "c7": 1.9833564493758606 }, "rgb": [238, 201, 159] }, @@ -305430,23 +305430,23 @@ "year": 1790, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -20.42579253149158, - "c2": -19.252054381689128, - "c3": 33.553424458512985, - "c4": 2.5482238291557806, - "c5": 31.915192019951398, - "c6": -2.2766612239773742, - "c7": -4.654520883682974 + "points": { + "c1": 20.036668157400612, + "c2": 33.332540866862566, + "c3": -31.5176861579656, + "c4": 31.334787067746923, + "c5": -10.159825540769074, + "c6": -14.494456483476718, + "c7": -26.75509853984726 }, - "vertexSeeds": { - "c1": 4.8750101331855795, - "c2": 4.478196727983096, - "c3": 4.660812068718073, - "c4": 4.7754137295845025, - "c5": 4.567597466367658, - "c6": 4.723557361962997, - "c7": 4.592532542270518 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176147, + "c3": 5.8483587609801155, + "c4": 4.678687008784095, + "c5": 3.5090152565880737, + "c6": 2.3393435043920525, + "c7": 1.1696717521960214 }, "rgb": [58, 15, 49] }, @@ -305457,23 +305457,23 @@ "year": 1790, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 21.85295850700141, - "c2": 24.419361222275775, - "c3": -42.867727203730716, - "c4": 0.7075972162788418, - "c5": 3.3630760589090656, - "c6": -36.37078134620762, - "c7": 9.304877447086014 + "points": { + "c1": 46.78421579831021, + "c2": -0.4736542036683318, + "c3": -22.2022165438523, + "c4": 1.9543876772874, + "c5": 41.94513460198737, + "c6": 29.139081308346995, + "c7": -4.602823612336685 }, - "vertexSeeds": { - "c1": 4.107188130293085, - "c2": 3.9752313287253735, - "c3": 3.9346108115405296, - "c4": 4.029173412537701, - "c5": 4.2192314396552115, - "c6": 4.007491707498094, - "c7": 4.056175371962694 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244145, + "c6": 2.03421174294961, + "c7": 1.017105871474805 }, "rgb": [77, 76, 132] }, @@ -305484,23 +305484,23 @@ "year": 1790, "resistanceReported": false, "duration": 47433600, - "curveSeeds": { - "c1": 22.240608658107348, - "c2": 46.774510580934916, - "c3": 10.576641000253815, - "c4": 61.35236453153934, - "c5": 37.35795163845255, - "c6": -17.818227813500783, - "c7": -3.292173059262659 + "points": { + "c1": 14.420070210300949, + "c2": -21.433928281969067, + "c3": 11.932093418565955, + "c4": -24.118679758251496, + "c5": 37.73781142170722, + "c6": -11.25303793254173, + "c7": -53.056097048119454 }, - "vertexSeeds": { - "c1": 3.7807394942263417, - "c2": 3.5637140518961212, - "c3": 3.8066276770080085, - "c4": 3.7866843802672125, - "c5": 3.76520652927171, - "c6": 3.7826229801415074, - "c7": 3.767137883192386 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.57558945908461, + "c3": 4.646324549237169, + "c4": 3.71705963938974, + "c5": 2.7877947295423, + "c6": 1.85852981969487, + "c7": 0.9292649098474405 }, "rgb": [77, 76, 132] }, @@ -305511,23 +305511,23 @@ "year": 1790, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": 6.389487910442043, - "c2": 7.484577452000522, - "c3": -23.042150977194993, - "c4": 46.95136615028443, - "c5": -23.70950142022602, - "c6": -9.070797912026016, - "c7": 50.50095615457171 + "points": { + "c1": -4.010924763002812, + "c2": 17.58598803850215, + "c3": -37.39049473695921, + "c4": -56.80005168974721, + "c5": 6.671933298026303, + "c6": -49.80700560664365, + "c7": 17.974731114283472 }, - "vertexSeeds": { - "c1": 3.050518134715026, - "c2": 3.050518134715026, - "c3": 3.050518134715026, - "c4": 3.050518134715026, - "c5": 3.050518134715026, - "c6": 3.050518134715026, - "c7": 3.050518134715026 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -305538,23 +305538,23 @@ "year": 1789, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -26.346440977680388, - "c2": 9.132969184866742, - "c3": 18.573079394022177, - "c4": 13.720120873115722, - "c5": -5.251429670219878, - "c6": -13.226187789712535, - "c7": -10.82205981600464 + "points": { + "c1": 12.028380435416384, + "c2": 23.642549742369656, + "c3": 9.93485886219278, + "c4": 11.175232800346944, + "c5": -13.538325140720426, + "c6": 28.353190861034573, + "c7": -26.328045444969117 }, - "vertexSeeds": { - "c1": 3.452560001512972, - "c2": 3.4706282075541397, - "c3": 3.373265811681106, - "c4": 3.381342008764624, - "c5": 3.4805493500323537, - "c6": 3.4444386107664684, - "c7": 3.5884590677135915 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481275, + "c3": 4.299583911234393, + "c4": 3.439667128987512, + "c5": 2.5797503467406306, + "c6": 1.7198335644937626, + "c7": 0.8599167822468813 }, "rgb": [77, 76, 132] }, @@ -305565,23 +305565,23 @@ "year": 1790, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -29.91036406714711, - "c2": 7.208402647166622, - "c3": 6.70335407583903, - "c4": -27.004528891825395, - "c5": 41.539039827931234, - "c6": -40.09559357627459, - "c7": 29.842563949974746 + "points": { + "c1": 17.091787474287123, + "c2": 1.0995793204373214, + "c3": 22.30131549222054, + "c4": 26.642784299673806, + "c5": -19.916486331471123, + "c6": -42.064975966982914, + "c7": 19.810831264079454 }, - "vertexSeeds": { - "c1": 7.346655505276, - "c2": 6.862395049745655, - "c3": 7.208735124028309, - "c4": 7.404797320474787, - "c5": 7.7228344683491725, - "c6": 7.335354540419749, - "c7": 7.018022064984233 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [86, 146, 138] }, @@ -305592,23 +305592,23 @@ "year": 1789, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -22.241834409362838, - "c2": 11.91375510208805, - "c3": -23.982045765306175, - "c4": -25.121579427355076, - "c5": -14.762302049540255, - "c6": -11.403595629873704, - "c7": -8.129932065505105 + "points": { + "c1": -16.88462468401842, + "c2": 4.324771316256285, + "c3": -13.965393807736337, + "c4": -20.535721166549443, + "c5": 4.8908532209112785, + "c6": 21.16208936210577, + "c7": -3.628405952886535 }, - "vertexSeeds": { - "c1": 8.878845512402219, - "c2": 9.22104956743874, - "c3": 8.946412714104262, - "c4": 9.157049004416653, - "c5": 9.310899839358457, - "c6": 8.927039680165226, - "c7": 9.109025677903471 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507638, + "c3": 11.211280628756354, + "c4": 8.969024503005093, + "c5": 6.726768377253808, + "c6": 4.484512251502546, + "c7": 2.242256125751284 }, "rgb": [86, 146, 138] }, @@ -305619,23 +305619,23 @@ "year": 1790, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -34.899759287206734, - "c2": 34.66811621045828, - "c3": 10.377559355181148, - "c4": -24.086820055027037, - "c5": -26.976495313141122, - "c6": 4.902483697436729, - "c7": 4.457259937141018 + "points": { + "c1": 7.209121868800736, + "c2": 23.438593457815387, + "c3": 8.869375007079611, + "c4": 6.47128714844537, + "c5": -36.90454026303864, + "c6": 22.658476324219627, + "c7": 32.09778264085736 }, - "vertexSeeds": { - "c1": 8.67914360887536, - "c2": 8.00367838011619, - "c3": 8.533223786356116, - "c4": 8.319651170270204, - "c5": 8.36606590237155, - "c6": 8.378928171516211, - "c7": 8.29283951648534 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.20388349514563, + "c3": 11.003236245954694, + "c4": 8.802588996763754, + "c5": 6.601941747572815, + "c6": 4.401294498381877, + "c7": 2.2006472491909386 }, "rgb": [86, 146, 138] }, @@ -305646,23 +305646,23 @@ "year": 1789, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 17.89780014626436, - "c2": 11.171566151445418, - "c3": 12.134873801383343, - "c4": 10.486507033552456, - "c5": 21.223227229708108, - "c6": -25.06605726960356, - "c7": -18.848461673582477 + "points": { + "c1": 2.8886397050552475, + "c2": 9.817789224424551, + "c3": -26.696606479876277, + "c4": 0.720136204268087, + "c5": 14.749604473141297, + "c6": -6.92297208082455, + "c7": -14.712013416109587 }, - "vertexSeeds": { - "c1": 8.699172342457164, - "c2": 8.455175553977233, - "c3": 7.180610630801962, - "c4": 7.373239258543573, - "c5": 7.097544080838295, - "c6": 8.565799146898001, - "c7": 8.665493504008396 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.7877947295423, + "c3": 10.656495607951914, + "c4": 8.525196486361537, + "c5": 6.39389736477115, + "c6": 4.262598243180764, + "c7": 2.131299121590386 }, "rgb": [238, 201, 159] }, @@ -305673,23 +305673,23 @@ "year": 1790, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 36.446276139261094, - "c2": -24.390125383317756, - "c3": 8.627422214839015, - "c4": 23.661916774941716, - "c5": 32.260801003880395, - "c6": -0.2335028091063336, - "c7": 39.137658150630294 + "points": { + "c1": 25.527672270968658, + "c2": 5.91123884461345, + "c3": 19.502130517696607, + "c4": -18.735734170292254, + "c5": 0.19055453356536134, + "c6": 4.593738942932582, + "c7": -3.1307666781293975 }, - "vertexSeeds": { - "c1": 5.487908770871256, - "c2": 5.269837159706286, - "c3": 5.499778464699526, - "c4": 5.2269368059992525, - "c5": 5.505264720136522, - "c6": 5.4149753779285685, - "c7": 5.494320722971411 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543688, + "c3": 6.634304207119736, + "c4": 5.307443365695805, + "c5": 3.9805825242718536, + "c6": 2.6537216828479027, + "c7": 1.3268608414239513 }, "rgb": [86, 146, 138] }, @@ -305700,23 +305700,23 @@ "year": 1789, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 22.313040464530413, - "c2": -10.433405914899637, - "c3": 17.675603778679925, - "c4": -0.4507494953617268, - "c5": 10.545991413203321, - "c6": -27.324473950033155, - "c7": -27.267179570373287 + "points": { + "c1": -25.158003449945358, + "c2": 0.10407368941777406, + "c3": -2.3505940751644587, + "c4": -21.62938702082558, + "c5": 12.749535642144199, + "c6": -9.160205251793684, + "c7": -8.811114478680686 }, - "vertexSeeds": { - "c1": 4.981798320476218, - "c2": 4.9605017742513615, - "c3": 5.210040747716491, - "c4": 5.179741001464187, - "c5": 5.23681403431169, - "c6": 5.036522115480376, - "c7": 5.107987598120311 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251046, + "c4": 5.1040221914008415, + "c5": 3.8280166435506366, + "c6": 2.55201109570041, + "c7": 1.276005547850205 }, "rgb": [58, 15, 49] }, @@ -305727,23 +305727,23 @@ "year": 1790, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -43.20963617743795, - "c2": 7.09047845305831, - "c3": 23.761906959510277, - "c4": 6.645983317348154, - "c5": 8.109322613740787, - "c6": -17.26477935416699, - "c7": 18.887011735301286 + "points": { + "c1": 5.078291725766917, + "c2": 11.085928320738937, + "c3": 5.760520012767799, + "c4": 43.882301201489234, + "c5": 35.815423371085934, + "c6": -12.667986182795474, + "c7": -40.18841963200991 }, - "vertexSeeds": { - "c1": 3.2495893738492163, - "c2": 3.3857410024497017, - "c3": 3.4345499509656725, - "c4": 3.3092513768565235, - "c5": 3.4664340532432685, - "c6": 3.2946325170682904, - "c7": 3.4017302982734923 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280164, + "c3": 4.184003698566801, + "c4": 3.3472029588534387, + "c5": 2.5104022191400883, + "c6": 1.6736014794267258, + "c7": 0.8368007397133629 }, "rgb": [222, 0, 59] }, @@ -305754,23 +305754,23 @@ "year": 1790, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 15.233913161681194, - "c2": 35.333188930623386, - "c3": 34.603076704342904, - "c4": 28.92552711011468, - "c5": 22.03230133782484, - "c6": -35.14298276416488, - "c7": 16.42402740006287 + "points": { + "c1": -34.35779869717837, + "c2": 33.41803067182206, + "c3": -34.931775199025545, + "c4": -25.534760039431966, + "c5": -42.500655334818795, + "c6": 23.148614235469914, + "c7": -7.406106508049703 }, - "vertexSeeds": { - "c1": 8.976683937823834, - "c2": 8.976683937823834, - "c3": 8.976683937823834, - "c4": 8.976683937823834, - "c5": 8.976683937823834, - "c6": 8.976683937823834, - "c7": 8.976683937823834 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -305781,23 +305781,23 @@ "year": 1789, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 22.73695212432538, - "c2": -22.00728067474887, - "c3": 24.520222938871942, - "c4": 18.858795528325164, - "c5": -3.3094093819996466, - "c6": -3.773185794227814, - "c7": -2.0961031599120936 + "points": { + "c1": 8.662555927541991, + "c2": 19.780903713608527, + "c3": 17.40490733354299, + "c4": 4.605072270310185, + "c5": -7.512372219999445, + "c6": -10.69242570694011, + "c7": 26.68681658969526 }, - "vertexSeeds": { - "c1": 6.979555721245706, - "c2": 6.831142434716555, - "c3": 7.325961508787637, - "c4": 7.06668186798283, - "c5": 7.129239281668026, - "c6": 7.00531707795093, - "c7": 7.089980520697291 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244111, + "c3": 8.760980120203412, + "c4": 7.008784096162734, + "c5": 5.256588072122056, + "c6": 3.504392048081356, + "c7": 1.752196024040678 }, "rgb": [222, 0, 59] }, @@ -305808,23 +305808,23 @@ "year": 1790, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -8.62498309867717, - "c2": 27.539489463944832, - "c3": 36.1901641749233, - "c4": -38.98301632922113, - "c5": -26.436449086154674, - "c6": 0.889928632043528, - "c7": 35.0698310507364 + "points": { + "c1": 35.39461975380833, + "c2": -10.756897526394248, + "c3": 36.45513772510144, + "c4": 25.080153499656845, + "c5": -12.275744681862953, + "c6": 32.16896061412443, + "c7": -27.769958246366368 }, - "vertexSeeds": { - "c1": 5.17496771000499, - "c2": 5.865514438453818, - "c3": 5.345602997182104, - "c4": 5.532030900113561, - "c5": 5.20189284111879, - "c6": 5.2368574355784325, - "c7": 5.9203414484081645 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [77, 76, 132] }, @@ -305835,23 +305835,23 @@ "year": 1789, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -3.05600956851265, - "c2": 16.600806657054083, - "c3": -1.9056227663766805, - "c4": -19.965280875818046, - "c5": -22.996169599089153, - "c6": 16.694051382479987, - "c7": 6.2827230772565485 + "points": { + "c1": 4.015706707719332, + "c2": -13.280968612449753, + "c3": -4.935603323219304, + "c4": -9.535141199802828, + "c5": 2.222747388836307, + "c6": 15.443514329834638, + "c7": -14.12428341255416 }, - "vertexSeeds": { - "c1": 8.748865799445195, - "c2": 8.153044172412942, - "c3": 8.111394424138865, - "c4": 8.045467205268707, - "c5": 8.698304146971427, - "c6": 7.801620242405565, - "c7": 8.574369774904106 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300978, + "c3": 10.517799352750808, + "c4": 8.414239482200651, + "c5": 6.310679611650482, + "c6": 4.207119741100326, + "c7": 2.103559870550156 }, "rgb": [238, 201, 159] }, @@ -305862,23 +305862,23 @@ "year": 1790, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 18.780232401387522, - "c2": -26.74600824745849, - "c3": 30.212153594816172, - "c4": -22.00843510755184, - "c5": 29.892350006504948, - "c6": -18.559958113602107, - "c7": 8.970627127050953 + "points": { + "c1": 5.370632026655983, + "c2": -17.236582001881526, + "c3": 0.8337254675369934, + "c4": 11.798107448842003, + "c5": 21.043186612918724, + "c6": 8.049059358286556, + "c7": -30.325902214841665 }, - "vertexSeeds": { - "c1": 7.325623059515352, - "c2": 7.73364574412574, - "c3": 7.222671083106195, - "c4": 7.700542156734344, - "c5": 7.308986006880897, - "c6": 7.032255973272451, - "c7": 6.970896860233433 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531205, + "c3": 9.500693481276002, + "c4": 7.6005547850208, + "c5": 5.7004160887655955, + "c6": 3.800277392510406, + "c7": 1.90013869625519 }, "rgb": [238, 201, 159] }, @@ -305889,23 +305889,23 @@ "year": 1789, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 4.057056879010609, - "c2": 6.641609189656155, - "c3": -10.361760096204883, - "c4": -0.34149363415227896, - "c5": -4.55770667396094, - "c6": 17.563555263980522, - "c7": 20.351446094303885 + "points": { + "c1": 26.5011275465065, + "c2": 25.771638446657075, + "c3": -26.40457953600497, + "c4": 7.244057617328341, + "c5": 8.536866336063799, + "c6": -0.9430983970730829, + "c7": 2.109643323798828 }, - "vertexSeeds": { - "c1": 6.074361077661177, - "c2": 6.359781392498802, - "c3": 6.033948139346765, - "c4": 6.373039390299139, - "c5": 6.173232721631524, - "c6": 6.1034046586027415, - "c7": 6.033486820124252 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313453, + "c3": 7.651410078594545, + "c4": 6.121128062875636, + "c5": 4.5908460471567265, + "c6": 3.060564031437818, + "c7": 1.530282015718909 }, "rgb": [58, 15, 49] }, @@ -305916,23 +305916,23 @@ "year": 1790, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 27.130869524581584, - "c2": -13.754748855365289, - "c3": 20.537920524273495, - "c4": -16.872534905331598, - "c5": -27.120686314069157, - "c6": -25.764685746524965, - "c7": 8.552379928917375 + "points": { + "c1": -15.55575541770062, + "c2": -29.611365467809733, + "c3": 14.158846252371255, + "c4": 10.26102537270819, + "c5": -36.931721360577065, + "c6": 28.75217185493119, + "c7": 19.668685696181356 }, - "vertexSeeds": { - "c1": 3.8956614405836416, - "c2": 3.954566532209832, - "c3": 4.10924964525814, - "c4": 3.829058157106298, - "c5": 3.955125705279045, - "c6": 3.863534775573157, - "c7": 4.1374826671921845 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607484, + "c3": 4.94683310217291, + "c4": 3.957466481738323, + "c5": 2.968099861303748, + "c6": 1.9787332408691616, + "c7": 0.9893666204345754 }, "rgb": [238, 201, 159] }, @@ -305943,23 +305943,23 @@ "year": 1790, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 22.44729877139928, - "c2": 24.9486623581499, - "c3": -25.119689053816508, - "c4": 8.497389578278476, - "c5": -27.14545641176194, - "c6": -17.452075280694654, - "c7": 18.40919966562419 + "points": { + "c1": -6.1488463441368175, + "c2": 13.42845979930944, + "c3": -27.899744298466064, + "c4": 8.665444515509083, + "c5": -21.622435511060438, + "c6": 6.1376028507437645, + "c7": -6.949775136920966 }, - "vertexSeeds": { - "c1": 6.766415580328155, - "c2": 6.409730942744812, - "c3": 6.4018205825716175, - "c4": 6.617970855072803, - "c5": 6.366693416475222, - "c6": 6.8898094523212565, - "c7": 6.509693238450482 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -305970,23 +305970,23 @@ "year": 1790, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -29.971937830033134, - "c2": 23.91521907674958, - "c3": -12.987244615116253, - "c4": -23.652843746891534, - "c5": -19.651010132725983, - "c6": -10.675217607381768, - "c7": 12.604925383862259 + "points": { + "c1": 6.742236612897138, + "c2": -32.3345916853549, + "c3": -33.810596503441175, + "c4": 29.757816027473027, + "c5": -34.18090932408393, + "c6": 14.888385451560119, + "c7": -32.84996861309459 }, - "vertexSeeds": { - "c1": 3.9531291642694706, - "c2": 4.171334768184142, - "c3": 4.094127731208789, - "c4": 4.043823515982863, - "c5": 3.8943107827975876, - "c6": 4.245080380759445, - "c7": 3.994018348499045 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244145, + "c6": 2.03421174294961, + "c7": 1.017105871474805 }, "rgb": [238, 201, 159] }, @@ -305997,23 +305997,23 @@ "year": 1790, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": 36.28134226819892, - "c2": -33.20039512970435, - "c3": -8.111344925501278, - "c4": -17.15604236645158, - "c5": -4.484018368521056, - "c6": 21.458971501163738, - "c7": -26.9973783836135 + "points": { + "c1": -50.09983265923997, + "c2": -7.700216733134269, + "c3": -16.9479546337883, + "c4": 10.436664244014118, + "c5": -9.352712849050285, + "c6": 44.413459450843185, + "c7": -41.72248703386454 }, - "vertexSeeds": { - "c1": 2.7025111512125446, - "c2": 2.695289054128794, - "c3": 2.607660183011549, - "c4": 2.6017394308587587, - "c5": 2.602983604698426, - "c6": 2.531792932028876, - "c7": 2.673544917504663 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115087, + "c3": 3.282478039759598, + "c4": 2.625982431807676, + "c5": 1.9694868238557544, + "c6": 1.3129912159038435, + "c7": 0.6564956079519217 }, "rgb": [86, 146, 138] }, @@ -306024,23 +306024,23 @@ "year": 1790, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 8.657540991533118, - "c2": 15.834714754850587, - "c3": 25.911557573846316, - "c4": -8.331216594264994, - "c5": -22.145644488737425, - "c6": -9.44348868703333, - "c7": 20.83929241945453 + "points": { + "c1": 23.121663266834325, + "c2": -27.350025282553354, + "c3": 21.798422287254652, + "c4": -13.066340439624518, + "c5": -12.306120734244882, + "c6": -24.068160473816214, + "c7": 23.979050277677963 }, - "vertexSeeds": { - "c1": 2.0180055976417193, - "c2": 2.038202717341128, - "c3": 2.0796560296025297, - "c4": 1.971220532269028, - "c5": 2.0883004900259126, - "c6": 1.9728678831707829, - "c7": 1.9756362005149979 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244123, + "c3": 2.5427646786870124, + "c4": 2.0342117429496063, + "c5": 1.5256588072122061, + "c6": 1.0171058714748062, + "c7": 0.5085529357373999 }, "rgb": [238, 201, 159] }, @@ -306051,23 +306051,23 @@ "year": 1790, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 1.9020070443979264, - "c2": -14.037038790386525, - "c3": 20.502489624318493, - "c4": 37.39740242972908, - "c5": 27.352185770975233, - "c6": 27.385307215593848, - "c7": 18.879997416396144 + "points": { + "c1": -33.98187372575596, + "c2": -19.349967751604865, + "c3": -32.65625797771581, + "c4": 24.355534691478262, + "c5": -29.072252733357043, + "c6": 12.083346380990498, + "c7": -16.003578664182687 }, - "vertexSeeds": { - "c1": 3.107018801701447, - "c2": 2.9982665586475905, - "c3": 2.983328554647425, - "c4": 3.1925569702546572, - "c5": 3.0582286027440517, - "c6": 2.96208808311417, - "c7": 2.9651265649823015 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676836, + "c3": 3.8372630605640277, + "c4": 3.06981044845122, + "c5": 2.3023578363384236, + "c6": 1.534905224225616, + "c7": 0.767452612112808 }, "rgb": [222, 0, 59] }, @@ -306078,23 +306078,23 @@ "year": 1790, "resistanceReported": false, "duration": 46224000, - "curveSeeds": { - "c1": 3.4191823565550195, - "c2": 29.481081589236716, - "c3": -48.5806957377661, - "c4": -28.12570436953861, - "c5": 44.456844871667904, - "c6": 16.634530287514828, - "c7": -44.28772695594675 + "points": { + "c1": -51.980380426532896, + "c2": 37.51246044074677, + "c3": 60.934474141102505, + "c4": 19.660129844538893, + "c5": -8.677088125091984, + "c6": -60.75868800026067, + "c7": 45.160040723133 }, - "vertexSeeds": { - "c1": 2.7269320843224913, - "c2": 2.7404508082967176, - "c3": 2.850168430145284, - "c4": 2.7750084904232475, - "c5": 2.7962458681571922, - "c6": 2.925210520726487, - "c7": 2.920373451969024 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194173, + "c3": 3.559870550161809, + "c4": 2.8478964401294453, + "c5": 2.1359223300970918, + "c6": 1.4239482200647282, + "c7": 0.7119741100323641 }, "rgb": [238, 201, 159] }, @@ -306105,23 +306105,23 @@ "year": 1790, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -16.260947852602026, - "c2": 29.758914330770708, - "c3": -38.8801013283885, - "c4": 44.00145210448872, - "c5": -28.684600575273933, - "c6": 16.981293448400052, - "c7": -3.224909075035775 + "points": { + "c1": 36.37406152925702, + "c2": 11.696597762288476, + "c3": 25.302966624706016, + "c4": 41.191253075888255, + "c5": 24.883614567752005, + "c6": 30.565419533928775, + "c7": 33.698274837885364 }, - "vertexSeeds": { - "c1": 11.146672063899626, - "c2": 11.590475835222982, - "c3": 11.658758751339432, - "c4": 11.394574602802038, - "c5": 11.783314342574117, - "c6": 11.268300796116911, - "c7": 10.979422577321476 + "offsets": { + "c1": 19.838187702265373, + "c2": 17.00416088765602, + "c3": 14.170134073046713, + "c4": 11.336107258437362, + "c5": 8.50208044382801, + "c6": 5.668053629218702, + "c7": 2.834026814609351 }, "rgb": [238, 201, 159] }, @@ -306132,23 +306132,23 @@ "year": 1790, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -14.08160279651959, - "c2": -4.3105081620209305, - "c3": -0.3439288237576861, - "c4": 23.355896938896905, - "c5": -39.972301999651016, - "c6": 39.277749224060685, - "c7": 39.01859366578057 + "points": { + "c1": 10.717206757528054, + "c2": 32.26378150566504, + "c3": 36.59866740145485, + "c4": -34.048623137648676, + "c5": -39.39857408632791, + "c6": -39.96213135276588, + "c7": 32.933237776164816 }, - "vertexSeeds": { - "c1": 6.810598482139285, - "c2": 6.9951237974129254, - "c3": 6.961920456770113, - "c4": 6.500653875472421, - "c5": 6.892035194172279, - "c6": 6.447261088168437, - "c7": 6.98491053803804 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600552, + "c3": 8.391123439667123, + "c4": 6.712898751733696, + "c5": 5.034674063800287, + "c6": 3.3564493758668577, + "c7": 1.6782246879334288 }, "rgb": [222, 0, 59] }, @@ -306159,23 +306159,23 @@ "year": 1789, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 18.99199794569102, - "c2": 3.92746893553122, - "c3": -18.669059089205394, - "c4": -4.224885343560743, - "c5": 15.168320551041418, - "c6": -14.693462812437321, - "c7": 17.22722995304052 + "points": { + "c1": 8.387942539000544, + "c2": -4.883253596055592, + "c3": -0.42259271296762435, + "c4": 12.71909864175754, + "c5": 11.451722173020144, + "c6": -10.822866382503832, + "c7": 20.7709714402906 }, - "vertexSeeds": { - "c1": 5.650160410384796, - "c2": 5.977600259467585, - "c3": 5.892658874768991, - "c4": 5.685243962825315, - "c5": 5.7515406728801395, - "c6": 5.652151130626799, - "c7": 5.716288428413815 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589457, + "c3": 7.23532131299121, + "c4": 5.788257050392964, + "c5": 4.341192787794739, + "c6": 2.894128525196493, + "c7": 1.4470642625982466 }, "rgb": [77, 76, 132] }, @@ -306186,23 +306186,23 @@ "year": 1790, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 26.854728550661136, - "c2": -27.699935347333064, - "c3": -13.540712149716452, - "c4": 36.59470212344088, - "c5": 4.897851214235949, - "c6": 26.474915244061464, - "c7": -20.435485328539578 + "points": { + "c1": -25.84543403973127, + "c2": -14.982430525686294, + "c3": -28.82057176594453, + "c4": -15.865659854095938, + "c5": 32.42555125860929, + "c6": -5.767641749955899, + "c7": -14.627023297246282 }, - "vertexSeeds": { - "c1": 4.644774434397822, - "c2": 4.670666180750899, - "c3": 4.6547374283660705, - "c4": 4.663214239463083, - "c5": 4.681545876736208, - "c6": 4.676196882500591, - "c7": 4.657906170823435 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.65742024965329, + "c3": 5.547850208044335, + "c4": 4.43828016643549, + "c5": 3.328710124826645, + "c6": 2.2191400832178, + "c7": 1.109570041608845 }, "rgb": [86, 146, 138] }, @@ -306213,23 +306213,23 @@ "year": 1790, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -25.617215274396123, - "c2": -11.88925556703153, - "c3": -16.81652665042484, - "c4": 18.992055783845334, - "c5": 15.450172950519306, - "c6": -7.663789766749019, - "c7": 27.701229999528874 + "points": { + "c1": -29.84813616345306, + "c2": -15.775276093213154, + "c3": 16.447864786279574, + "c4": 8.737089343277361, + "c5": 4.478250029591287, + "c6": 28.524440488640543, + "c7": 2.168367221186706 }, - "vertexSeeds": { - "c1": 3.770367940910589, - "c2": 3.903796236530805, - "c3": 4.0060630252163545, - "c4": 3.925975891065542, - "c5": 4.056386833946219, - "c6": 3.958754325026608, - "c7": 4.032394752582948 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -306240,23 +306240,23 @@ "year": 1790, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": 33.11435050913957, - "c2": 23.98002589183291, - "c3": 33.31542871141757, - "c4": -14.478221758882132, - "c5": -19.39592963125046, - "c6": 20.583061670824605, - "c7": 19.932276734509244 + "points": { + "c1": -8.165002800617174, + "c2": -42.28827810282529, + "c3": 25.527362563547683, + "c4": -18.97648506398035, + "c5": -38.45545997992727, + "c6": 5.9776442179005045, + "c7": -0.6769325910142427 }, - "vertexSeeds": { - "c1": 5.667161620469491, - "c2": 5.5893778256862685, - "c3": 6.391865079896468, - "c4": 6.087372238275745, - "c5": 6.089308081904496, - "c6": 5.553426238526783, - "c7": 5.475515464170769 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273226, + "c3": 7.6282940360610265, + "c4": 6.102635228848817, + "c5": 4.576976421636618, + "c6": 3.0513176144244083, + "c7": 1.525658807212198 }, "rgb": [77, 76, 132] }, @@ -306267,23 +306267,23 @@ "year": 1790, "resistanceReported": false, "duration": 42768000, - "curveSeeds": { - "c1": 45.50027719336396, - "c2": -53.91902648105785, - "c3": -3.899268472233679, - "c4": -8.029937253525723, - "c5": 51.09282780898182, - "c6": 26.735382482429657, - "c7": 33.751471963135955 + "points": { + "c1": -4.57174054140971, + "c2": -28.306792167086616, + "c3": 27.12037040399649, + "c4": 30.922127882143997, + "c5": 42.78733097118565, + "c6": -38.93820156152394, + "c7": -29.701411620377765 }, - "vertexSeeds": { - "c1": 8.116475071681242, - "c2": 8.116674567351334, - "c3": 8.04135289729293, - "c4": 8.094297886156243, - "c5": 8.01169962592822, - "c6": 8.07305430301175, - "c7": 8.131118278588831 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893202, + "c3": 9.70873786407767, + "c4": 7.766990291262135, + "c5": 5.825242718446601, + "c6": 3.8834951456310676, + "c7": 1.9417475728155338 }, "rgb": [86, 146, 138] }, @@ -306294,23 +306294,23 @@ "year": 1790, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -21.280574365024812, - "c2": 8.99790596898454, - "c3": 23.20008151175336, - "c4": 18.763778377707048, - "c5": 25.80582851118627, - "c6": -0.6661994120468364, - "c7": -9.325693089256763 + "points": { + "c1": -17.97214002906486, + "c2": 3.313195426956348, + "c3": 19.3099105034049, + "c4": -20.43110131730043, + "c5": -24.055395374735042, + "c6": 9.50745221330748, + "c7": 23.43600903521763 }, - "vertexSeeds": { - "c1": 6.350039692948489, - "c2": 6.038847213493681, - "c3": 6.256477845462578, - "c4": 6.222973744311236, - "c5": 6.153759366985478, - "c6": 6.320310460117982, - "c7": 6.040962119183643 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [77, 76, 132] }, @@ -306321,23 +306321,23 @@ "year": 1790, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 8.82258371951204, - "c2": -1.746725552408094, - "c3": 9.502036189256202, - "c4": -20.118052973365327, - "c5": 17.968753680261955, - "c6": 24.376048819458447, - "c7": -2.9105746404313777 + "points": { + "c1": -1.9682753423229649, + "c2": -4.796165476781553, + "c3": 4.3079318359790335, + "c4": 13.483782395526525, + "c5": -4.559389497788231, + "c6": -25.03959331898095, + "c7": 15.636277014412698 }, - "vertexSeeds": { - "c1": 5.908203740631631, - "c2": 5.878482670364467, - "c3": 5.679252276409676, - "c4": 5.6019487226871245, - "c5": 5.832780961701774, - "c6": 5.747363642655993, - "c7": 6.154088184598946 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790561, + "c3": 7.35090152565881, + "c4": 5.8807212205270405, + "c5": 4.41054091539529, + "c6": 2.9403606102635202, + "c7": 1.4701803051317703 }, "rgb": [222, 0, 59] }, @@ -306348,23 +306348,23 @@ "year": 1791, "resistanceReported": false, "duration": 50284800, - "curveSeeds": { - "c1": 18.685670847463527, - "c2": 61.11593981399713, - "c3": 56.718657144246436, - "c4": 35.54082487058204, - "c5": -28.96198374771111, - "c6": -61.18645206397897, - "c7": 47.82346418042472 + "points": { + "c1": -27.8404830613851, + "c2": -29.29540259949644, + "c3": 16.11515688495544, + "c4": 60.45767892646275, + "c5": 3.921746149843969, + "c6": 62.86684281396049, + "c7": -5.397906232446132 }, - "vertexSeeds": { - "c1": 8.955493917299652, - "c2": 9.31376452233157, - "c3": 9.268650004233642, - "c4": 9.114648289271063, - "c5": 8.662557643805997, - "c6": 9.051119636646701, - "c7": 8.872155894540164 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547858, + "c3": 11.23439667128987, + "c4": 8.987517337031905, + "c5": 6.740638002773918, + "c6": 4.4937586685159525, + "c7": 2.2468793342579656 }, "rgb": [58, 15, 49] }, @@ -306375,23 +306375,23 @@ "year": 1790, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -39.253808449931476, - "c2": 29.90288404221306, - "c3": -40.48809045993412, - "c4": -12.582358739621458, - "c5": -21.95480403840651, - "c6": -14.654502723565233, - "c7": -41.19954785702341 + "points": { + "c1": -25.880443961270522, + "c2": 26.585170176568596, + "c3": -16.696728324262814, + "c4": 5.4362913448322345, + "c5": 5.346032451832663, + "c6": 5.116572564008116, + "c7": 5.506936218594397 }, - "vertexSeeds": { - "c1": 1.6432961275841036, - "c2": 1.6055965734316797, - "c3": 1.5566052002580215, - "c4": 1.5259821275205339, - "c5": 1.6250846569207984, - "c6": 1.5469277903492513, - "c7": 1.5551821864045743 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499304, + "c3": 2.011095700416089, + "c4": 1.6088765603328694, + "c5": 1.2066574202496545, + "c6": 0.8044382801664347, + "c7": 0.4022191400832152 }, "rgb": [238, 201, 159] }, @@ -306402,23 +306402,23 @@ "year": 1789, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 7.754284449759265, - "c2": -12.846855767379672, - "c3": -24.0701264144658, - "c4": 13.671150829264526, - "c5": -4.030096009517454, - "c6": 7.385785133979034, - "c7": 3.8545434921662576 + "points": { + "c1": -6.452565709207292, + "c2": -8.452497222323295, + "c3": -22.20880025332985, + "c4": -25.708640459235387, + "c5": 9.7070905622545, + "c6": -7.364889113749843, + "c7": -14.379562484318907 }, - "vertexSeeds": { - "c1": 5.640338256325036, - "c2": 6.7822217743705755, - "c3": 5.577808144331395, - "c4": 6.161254514649097, - "c5": 6.379416315047593, - "c6": 5.787201422813128, - "c7": 6.669365490194424 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042997, + "c3": 8.645399907535827, + "c4": 6.916319926028661, + "c5": 5.187239944521501, + "c6": 3.4581599630143347, + "c7": 1.7290799815071674 }, "rgb": [58, 15, 49] }, @@ -306429,23 +306429,23 @@ "year": 1790, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -12.608902624612586, - "c2": -7.549609280198634, - "c3": -0.9910279729409979, - "c4": 29.024707408414514, - "c5": -14.287692912760377, - "c6": -35.56364552512952, - "c7": -17.326897291363753 + "points": { + "c1": -5.728212706567064, + "c2": -35.326404764086874, + "c3": -29.170172137081316, + "c4": -29.33986551942217, + "c5": -17.098379302834065, + "c6": 2.0226541188250806, + "c7": -32.95272937204787 }, - "vertexSeeds": { - "c1": 8.366024062296557, - "c2": 7.998881933097199, - "c3": 8.520122377942702, - "c4": 8.206916042567082, - "c5": 8.047705749674304, - "c6": 8.487516038660036, - "c7": 8.307909497418025 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [238, 201, 159] }, @@ -306456,23 +306456,23 @@ "year": 1790, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -24.1542250630985, - "c2": 7.547714593573019, - "c3": 35.40764380977822, - "c4": 15.949210866656053, - "c5": -11.90447580764674, - "c6": 1.1860105539907764, - "c7": 13.9837705528819 + "points": { + "c1": 0.37842013467980706, + "c2": -16.153061845400543, + "c3": -20.278953859206013, + "c4": -33.37960734654865, + "c5": 31.608807680320368, + "c6": 33.4788262378224, + "c7": 6.388206678039239 }, - "vertexSeeds": { - "c1": 7.586833463467911, - "c2": 7.896966905080242, - "c3": 7.796376596827179, - "c4": 7.951449166579578, - "c5": 7.889758512623732, - "c6": 7.971707053086962, - "c7": 8.074046850032714 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893199, + "c3": 9.708737864077657, + "c4": 7.766990291262138, + "c5": 5.825242718446599, + "c6": 3.883495145631059, + "c7": 1.9417475728155398 }, "rgb": [86, 146, 138] }, @@ -306483,23 +306483,23 @@ "year": 1790, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 5.509680154822586, - "c2": 6.97089855879452, - "c3": -4.427010086175791, - "c4": 13.573751100153583, - "c5": -26.064960419196858, - "c6": 23.558729458982544, - "c7": -19.303923097262867 + "points": { + "c1": -3.152445675542861, + "c2": -16.64290509484389, + "c3": 22.858513416552054, + "c4": 14.658973879898912, + "c5": 13.896041136534915, + "c6": -22.97895947520149, + "c7": -23.25394268593402 }, - "vertexSeeds": { - "c1": 6.6617772523268, - "c2": 6.629030632415504, - "c3": 6.565893929310826, - "c4": 6.812493022181552, - "c5": 6.677701001956067, - "c6": 6.6943677643030695, - "c7": 6.708983574446159 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.23578363384188, + "c3": 8.529819694868248, + "c4": 6.823855755894594, + "c5": 5.11789181692094, + "c6": 3.411927877947286, + "c7": 1.7059639389736538 }, "rgb": [222, 0, 59] }, @@ -306510,23 +306510,23 @@ "year": 1790, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -9.68172840115366, - "c2": -8.739068942634397, - "c3": -36.458141692479415, - "c4": -14.216762113445991, - "c5": -26.139786143191607, - "c6": 23.56975779889894, - "c7": 35.14579459416257 + "points": { + "c1": 6.223097837518345, + "c2": 12.881908027761384, + "c3": 12.928442409842255, + "c4": 8.557587792924409, + "c5": 26.921587860707945, + "c6": 1.2852523857313685, + "c7": 29.079803933394373 }, - "vertexSeeds": { - "c1": 8.262435866487767, - "c2": 8.213400816586056, - "c3": 7.974278234002948, - "c4": 7.517971269939194, - "c5": 8.130280645602408, - "c6": 7.925465542526627, - "c7": 7.770709894119318 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617204, + "c3": 10.124826629680992, + "c4": 8.099861303744797, + "c5": 6.074895977808602, + "c6": 4.049930651872405, + "c7": 2.024965325936196 }, "rgb": [58, 15, 49] }, @@ -306537,23 +306537,23 @@ "year": 1790, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 9.959142737402018, - "c2": -11.954784350190035, - "c3": 23.86269119158957, - "c4": -5.460664889624091, - "c5": 24.994455988230463, - "c6": 30.375391566780507, - "c7": -13.842086782871142 + "points": { + "c1": -31.185194402560168, + "c2": -29.7697890435521, + "c3": 12.062894299920409, + "c4": 27.238665216823286, + "c5": -26.459449535478278, + "c6": 25.626821787550455, + "c7": 17.524936737046794 }, - "vertexSeeds": { - "c1": 9.903652360552105, - "c2": 10.159611894559577, - "c3": 10.122935736426884, - "c4": 9.758750172960562, - "c5": 10.283420364249949, - "c6": 9.984813156027323, - "c7": 10.21493058208592 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.868238557558938, + "c3": 12.390198797965773, + "c4": 9.912159038372653, + "c5": 7.434119278779469, + "c6": 4.956079519186327, + "c7": 2.4780397595931634 }, "rgb": [58, 15, 49] }, @@ -306564,23 +306564,23 @@ "year": 1790, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -6.186565283229463, - "c2": 5.42273621785985, - "c3": -3.269896830906454, - "c4": -24.460051946770065, - "c5": -6.079476674711888, - "c6": 29.706604263834393, - "c7": 0.567850064998261 + "points": { + "c1": 12.10273196556016, + "c2": 11.60674570459296, + "c3": 21.255680316333, + "c4": -22.43784940746003, + "c5": 1.0914638580109752, + "c6": -21.261866667188755, + "c7": 25.425456003651966 }, - "vertexSeeds": { - "c1": 7.751481884872403, - "c2": 7.4389499457133805, - "c3": 7.165894858241223, - "c4": 6.847039649772496, - "c5": 7.844580545833439, - "c6": 7.428023581405647, - "c7": 7.184809007772588 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410538, + "c3": 9.431345353675454, + "c4": 7.545076282940358, + "c5": 5.658807212205274, + "c6": 3.772538141470179, + "c7": 1.8862690707350958 }, "rgb": [222, 0, 59] }, @@ -306591,23 +306591,23 @@ "year": 1790, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 9.254521585575958, - "c2": 21.02058217375788, - "c3": -28.97520021095812, - "c4": -35.848267068845786, - "c5": 10.841862878336642, - "c6": -19.026596811703985, - "c7": 3.9410922702766413 + "points": { + "c1": -6.1426184954977, + "c2": 0.9171128364495331, + "c3": 29.924117090774033, + "c4": -29.41783914775587, + "c5": 20.033703858450295, + "c6": 14.190370747432446, + "c7": -8.84069593856536 }, - "vertexSeeds": { - "c1": 8.033033529075897, - "c2": 8.417428928687874, - "c3": 7.985807901039884, - "c4": 8.341607759731906, - "c5": 8.110803296525388, - "c6": 8.486619358306411, - "c7": 8.58218709369987 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059637, + "c3": 10.379103097549693, + "c4": 8.303282478039751, + "c5": 6.227461858529808, + "c6": 4.151641239019886, + "c7": 2.075820619509943 }, "rgb": [58, 15, 49] }, @@ -306618,23 +306618,23 @@ "year": 1790, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 15.466099759544765, - "c2": 19.249095072483673, - "c3": -16.164447616673485, - "c4": 21.772577266794055, - "c5": 0.4189167733033763, - "c6": -11.720811324901621, - "c7": -25.612524968244895 + "points": { + "c1": 2.475980202031735, + "c2": 28.797716325881048, + "c3": -2.335391123512494, + "c4": -33.50236013522987, + "c5": 28.502176500513094, + "c6": 27.929082122694027, + "c7": 16.186408626316663 }, - "vertexSeeds": { - "c1": 4.17504652520907, - "c2": 3.92245317803916, - "c3": 4.1155434891618565, - "c4": 4.1782969882441146, - "c5": 4.051980573177447, - "c6": 3.853322536066557, - "c7": 3.8709527202304996 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.0471567267683755, + "c3": 5.039297272306977, + "c4": 4.03143781784558, + "c5": 3.023578363384183, + "c6": 2.015718908922785, + "c7": 1.0078594544613875 }, "rgb": [77, 76, 132] }, @@ -306645,23 +306645,23 @@ "year": 1790, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -17.505356655517833, - "c2": 16.107366899430886, - "c3": -17.71025552398077, - "c4": -17.610674819122732, - "c5": -12.838116976947667, - "c6": -32.835206763564514, - "c7": -19.71502761008166 + "points": { + "c1": -35.312882320266475, + "c2": -2.1803137814775013, + "c3": 36.62117851996571, + "c4": 25.464441151663195, + "c5": -7.953263283646404, + "c6": -17.125091471015647, + "c7": -24.705312319136034 }, - "vertexSeeds": { - "c1": 4.019878946970968, - "c2": 3.604722402975425, - "c3": 3.64022295126622, - "c4": 3.871029733920778, - "c5": 3.534108004455226, - "c6": 4.559655917575008, - "c7": 3.9630055490090372 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532594, + "c3": 5.478502080443829, + "c4": 4.382801664355064, + "c5": 3.2871012482662993, + "c6": 2.1914008321775342, + "c7": 1.095700416088769 }, "rgb": [58, 15, 49] }, @@ -306672,23 +306672,23 @@ "year": 1791, "resistanceReported": false, "duration": 64454400, - "curveSeeds": { - "c1": -0.9729129442061577, - "c2": -77.55546839979317, - "c3": -20.227766212449012, - "c4": 24.584711294188253, - "c5": 69.48750280734825, - "c6": -43.95351824871, - "c7": 17.83216567481537 + "points": { + "c1": 59.745346737406464, + "c2": 50.04063081234557, + "c3": -26.85946537946016, + "c4": 79.14703815802935, + "c5": -43.979206136669795, + "c6": 4.484352176654596, + "c7": 37.56624055699051 }, - "vertexSeeds": { - "c1": 3.139716567747901, - "c2": 3.2092345680405394, - "c3": 3.029729811165809, - "c4": 2.9501953528976546, - "c5": 3.2009212220774583, - "c6": 2.8995611553576444, - "c7": 3.1814721277718743 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958388, + "c3": 3.99907535829866, + "c4": 3.1992602866389253, + "c5": 2.3994452149791976, + "c6": 1.5996301433194626, + "c7": 0.7998150716597348 }, "rgb": [58, 15, 49] }, @@ -306699,23 +306699,23 @@ "year": 1790, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 31.103911446048983, - "c2": 18.39310541135726, - "c3": -20.245829724785366, - "c4": 9.877848185969633, - "c5": -0.5099238131395722, - "c6": -8.087829816121904, - "c7": -11.183642378178337 + "points": { + "c1": 13.217369669229882, + "c2": 23.918776902840612, + "c3": 31.61570116828682, + "c4": -10.092189979011803, + "c5": 13.077368640363694, + "c6": 9.009090180763714, + "c7": -6.283592956140801 }, - "vertexSeeds": { - "c1": 6.603602752097934, - "c2": 6.6059935073039915, - "c3": 6.588374015437258, - "c4": 6.593688558959261, - "c5": 6.586812235776442, - "c6": 6.587160635878897, - "c7": 6.600142041796335 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715404, + "c3": 7.882570503929817, + "c4": 6.306056403143603, + "c5": 4.729542302358015, + "c6": 3.1530282015718014, + "c7": 1.5765141007862142 }, "rgb": [77, 76, 132] }, @@ -306726,23 +306726,23 @@ "year": 1790, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 10.622744747404113, - "c2": -10.261340269587539, - "c3": -3.788230869725176, - "c4": 8.130962993800303, - "c5": -3.1434792466621957, - "c6": 36.47399360927316, - "c7": 21.364410702006758 + "points": { + "c1": 36.707122015831764, + "c2": -8.776646387599367, + "c3": -30.57131879218384, + "c4": 2.873297448619148, + "c5": -35.64631129832907, + "c6": -32.29446370311805, + "c7": -33.33264655935364 }, - "vertexSeeds": { - "c1": 3.0275551819441637, - "c2": 3.0391859355080433, - "c3": 3.088068637752405, - "c4": 3.1660275544457237, - "c5": 3.0273296399724066, - "c6": 3.0975874547080493, - "c7": 2.9684631742516254 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.6047156726768375, + "c3": 3.837263060564031, + "c4": 3.069810448451225, + "c5": 2.3023578363384187, + "c6": 1.5349052242256125, + "c7": 0.7674526121128062 }, "rgb": [58, 15, 49] }, @@ -306753,23 +306753,23 @@ "year": 1790, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 1.963757426161365, - "c2": 6.96142700008717, - "c3": 17.600084535896443, - "c4": -1.5177016877855252, - "c5": 12.19087605728238, - "c6": 5.114618890639626, - "c7": -8.67503891641475 + "points": { + "c1": -19.157821903270957, + "c2": -14.561880434323454, + "c3": 16.220040306481742, + "c4": 21.421501658139334, + "c5": 3.2914984730961514, + "c6": -4.3836154712078645, + "c7": -1.6231506521023107 }, - "vertexSeeds": { - "c1": 5.52472648253879, - "c2": 5.770668413442035, - "c3": 5.622371363109554, - "c4": 5.578912454377019, - "c5": 5.463547058040059, - "c6": 5.754366319106727, - "c7": 5.656683236175433 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267692, + "c3": 7.050392972723066, + "c4": 5.640314378178461, + "c5": 4.230235783633836, + "c6": 2.8201571890892305, + "c7": 1.4100785945446257 }, "rgb": [86, 146, 138] }, @@ -306780,23 +306780,23 @@ "year": 1790, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 29.421789843423866, - "c2": -17.84488579874907, - "c3": -2.0924150009656373, - "c4": 7.14474208240734, - "c5": -30.33956842146875, - "c6": -9.025561894222388, - "c7": -12.39336410995578 + "points": { + "c1": -17.84660692337499, + "c2": -32.80384400364312, + "c3": -13.618124757974389, + "c4": 3.6528645794325953, + "c5": -34.92291678844446, + "c6": 6.797833179413722, + "c7": 6.478007769324236 }, - "vertexSeeds": { - "c1": 5.173959952993297, - "c2": 5.385179623824192, - "c3": 5.282007294386971, - "c4": 5.336372018496237, - "c5": 5.180457421532639, - "c6": 5.509691573139314, - "c7": 5.424602859295586 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463239, + "c3": 6.588072122052714, + "c4": 5.270457697642167, + "c5": 3.9528432732316197, + "c6": 2.6352288488210727, + "c7": 1.3176144244105472 }, "rgb": [222, 0, 59] }, @@ -306807,23 +306807,23 @@ "year": 1789, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": 3.1369325016958953, - "c2": 17.424713468700983, - "c3": 18.018204275796986, - "c4": 19.212758886602888, - "c5": 17.8002797596904, - "c6": 16.563649513385595, - "c7": -19.836475387494776 + "points": { + "c1": -23.072573231514074, + "c2": -21.19745726730087, + "c3": 18.404523404752364, + "c4": -20.734981721777807, + "c5": -5.708679678838937, + "c6": -22.992929276873234, + "c7": -6.4448797305992365 }, - "vertexSeeds": { - "c1": 5.1724015798380165, - "c2": 5.776454054710169, - "c3": 4.569679320035773, - "c4": 4.525390621562949, - "c5": 5.67417197735688, - "c6": 4.751422683420177, - "c7": 5.828402200891672 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147016, + "c3": 6.981044845122513, + "c4": 5.584835876098008, + "c5": 4.1886269070735045, + "c6": 2.792417938049004, + "c7": 1.3962089690245 }, "rgb": [77, 76, 132] }, @@ -306834,23 +306834,23 @@ "year": 1790, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 9.646801649972588, - "c2": 36.094387496248906, - "c3": -36.874467152280964, - "c4": 34.45412333830293, - "c5": 21.705663773341165, - "c6": 30.26294348416929, - "c7": 0.9307578491255271 + "points": { + "c1": -33.90430343574404, + "c2": -3.5049559166171065, + "c3": -11.666926679245442, + "c4": 42.72371804193899, + "c5": -22.790802939421262, + "c6": -17.64066858645888, + "c7": -19.97460957930163 }, - "vertexSeeds": { - "c1": 2.317663159507306, - "c2": 2.349172348443326, - "c3": 2.4599091967121254, - "c4": 2.4088410210997457, - "c5": 2.3724015860694285, - "c6": 2.450239969944567, - "c7": 2.273215272225242 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.9819694868238558, + "c4": 2.3855755894590844, + "c5": 1.7891816920943133, + "c6": 1.1927877947295422, + "c7": 0.5963938973647711 }, "rgb": [222, 0, 59] }, @@ -306861,23 +306861,23 @@ "year": 1790, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -39.400375834489395, - "c2": 52.31079943751975, - "c3": -10.376939474227733, - "c4": -4.10294227778725, - "c5": 24.374962274900497, - "c6": 43.31065004798056, - "c7": -12.962248978666928 + "points": { + "c1": 27.983439396042826, + "c2": -20.087129027729468, + "c3": -2.266624215280089, + "c4": 7.486383869983406, + "c5": 17.299129759525712, + "c6": -20.618565851522717, + "c7": 46.898830717817845 }, - "vertexSeeds": { - "c1": 4.449481865284974, - "c2": 4.449481865284974, - "c3": 4.449481865284974, - "c4": 4.449481865284974, - "c5": 4.449481865284974, - "c6": 4.449481865284974, - "c7": 4.449481865284974 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -306888,23 +306888,23 @@ "year": 1790, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -14.165873572354771, - "c2": 12.246323217654531, - "c3": 4.149481159779786, - "c4": -25.39754764622553, - "c5": 9.365872257967883, - "c6": -22.83934184586311, - "c7": -20.439747844494352 + "points": { + "c1": 0.3487667725619694, + "c2": 22.488872094222483, + "c3": 22.836134805367546, + "c4": -14.642922689036839, + "c5": 23.725121346537836, + "c6": 7.270508285943112, + "c7": -19.327404154639485 }, - "vertexSeeds": { - "c1": 3.1864671870053103, - "c2": 3.028343413865489, - "c3": 3.1168482818620182, - "c4": 3.219026403841409, - "c5": 3.1989482656661545, - "c6": 3.2096478495413225, - "c7": 2.984162875621213 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837728, + "c3": 3.9297272306981004, + "c4": 3.1437817845584823, + "c5": 2.357836338418864, + "c6": 1.571890892279246, + "c7": 0.7859454461396181 }, "rgb": [238, 201, 159] }, @@ -306915,23 +306915,23 @@ "year": 1790, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 18.390626365341873, - "c2": 0.24612921593324444, - "c3": -23.996087815735635, - "c4": 1.2966503330945969, - "c5": 5.560963787354289, - "c6": -4.262875270157469, - "c7": -17.698712481823883 + "points": { + "c1": 23.9801049331562, + "c2": 11.577998143648657, + "c3": -19.721317276300002, + "c4": -1.9334810360043448, + "c5": -1.685832215091743, + "c6": 12.279498618945027, + "c7": -34.72444184260417 }, - "vertexSeeds": { - "c1": 2.94388367276277, - "c2": 2.8204406380319456, - "c3": 2.744828212396838, - "c4": 3.0995933403246676, - "c5": 3.115355732502758, - "c6": 3.0989423478447873, - "c7": 2.922760515999576 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556169, + "c3": 3.7679149329634773, + "c4": 3.0143319463707794, + "c5": 2.2607489597780877, + "c6": 1.5071659731853897, + "c7": 0.7535829865926916 }, "rgb": [86, 146, 138] }, @@ -306942,23 +306942,23 @@ "year": 1790, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": -25.32849603614089, - "c2": 11.016248218893871, - "c3": -7.931963521176506, - "c4": -12.821544477798604, - "c5": 37.720014836624564, - "c6": 45.392845613779066, - "c7": 8.923059016676163 + "points": { + "c1": 12.286851991504015, + "c2": -20.42805007780545, + "c3": -31.994609908273922, + "c4": -16.797436156025142, + "c5": 47.827348475864916, + "c6": 45.2466310235584, + "c7": 36.79441049807752 }, - "vertexSeeds": { - "c1": 3.33712653711609, - "c2": 3.2454201484955276, - "c3": 3.185755458092239, - "c4": 3.249803484416622, - "c5": 3.187536816606947, - "c6": 3.528375902441335, - "c7": 3.5295649575277097 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360612, + "c3": 4.230235783633839, + "c4": 3.384188626907073, + "c5": 2.538141470180306, + "c6": 1.6920943134535331, + "c7": 0.8460471567267666 }, "rgb": [58, 15, 49] }, @@ -306969,23 +306969,23 @@ "year": 1790, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 16.253741976871478, - "c2": -11.979767702163773, - "c3": 0.11563030749498182, - "c4": -13.90692877957969, - "c5": 2.2002136382654776, - "c6": 4.6560796628111945, - "c7": 2.9299950922347513 + "points": { + "c1": -0.7331927810507608, + "c2": 17.338461156508725, + "c3": 11.145429943627324, + "c4": 8.097348041297, + "c5": 0.8556043783457561, + "c6": 8.851253083299728, + "c7": 18.34188735488595 }, - "vertexSeeds": { - "c1": 7.754600245685689, - "c2": 7.61608559774559, - "c3": 7.809332487636976, - "c4": 7.773786884509704, - "c5": 7.432702662825568, - "c6": 7.292211191462114, - "c7": 7.569653348281013 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289884, + "c3": 9.361997226074893, + "c4": 7.489597780859924, + "c5": 5.6171983356449315, + "c6": 3.744798890429962, + "c7": 1.872399445214992 }, "rgb": [77, 76, 132] }, @@ -306996,23 +306996,23 @@ "year": 1790, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -8.532881449778328, - "c2": 0.7636309824647363, - "c3": -3.2147042410818436, - "c4": 1.3919399166987958, - "c5": -14.966976571269129, - "c6": -12.410730895994048, - "c7": 10.304329451091967 + "points": { + "c1": -17.68951829446909, + "c2": 20.639851459935308, + "c3": 17.70920780551976, + "c4": 9.433081443095048, + "c5": 12.809909969429697, + "c6": -12.00568053592578, + "c7": -0.24282426611202013 }, - "vertexSeeds": { - "c1": 9.458634250755031, - "c2": 8.760388359863308, - "c3": 8.820887144074245, - "c4": 8.242370231504406, - "c5": 9.171823684720842, - "c6": 8.491278309778235, - "c7": 8.301492109335857 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708739, + "c3": 11.32686084142395, + "c4": 9.06148867313915, + "c5": 6.796116504854363, + "c6": 4.530744336569575, + "c7": 2.2653721682847876 }, "rgb": [222, 0, 59] }, @@ -307023,23 +307023,23 @@ "year": 1790, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": -36.84944305682275, - "c2": -8.538035789041125, - "c3": 8.516248023843424, - "c4": 50.20059448219861, - "c5": 16.66226814677617, - "c6": -50.50678714202294, - "c7": 30.34068453063111 + "points": { + "c1": -14.188514241142371, + "c2": 52.64111693425251, + "c3": 4.445829063281643, + "c4": -10.770020525770654, + "c5": 0.292454022949876, + "c6": 13.59550086687564, + "c7": 0.4190970787602808 }, - "vertexSeeds": { - "c1": 3.965048500382042, - "c2": 3.954311471266505, - "c3": 3.735682152004157, - "c4": 3.735329450567012, - "c5": 3.826399006019855, - "c6": 3.792450836787071, - "c7": 3.9320188964023237 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446599, + "c3": 4.854368932038828, + "c4": 3.883495145631069, + "c5": 2.9126213592232997, + "c6": 1.9417475728155296, + "c7": 0.9708737864077699 }, "rgb": [222, 0, 59] }, @@ -307050,23 +307050,23 @@ "year": 1790, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 3.5181645394243333, - "c2": 19.083806000749675, - "c3": 29.432672613536326, - "c4": 20.17630110417516, - "c5": 1.250512739127167, - "c6": -7.79733470542903, - "c7": 23.76652203311089 + "points": { + "c1": -23.142127275716536, + "c2": -17.768619431963383, + "c3": -34.179337174294794, + "c4": 7.358202246904099, + "c5": -9.4727403867658, + "c6": 8.258760220957441, + "c7": -1.2944510829658853 }, - "vertexSeeds": { - "c1": 9.263703990877449, - "c2": 9.333901419119481, - "c3": 9.198646730767335, - "c4": 9.155512430786859, - "c5": 9.228407297353916, - "c6": 8.997088729451603, - "c7": 9.422587465652489 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513184, + "c3": 11.789181692094326, + "c4": 9.43134535367545, + "c5": 7.073509015256592, + "c6": 4.715672676837735, + "c7": 2.3578363384188776 }, "rgb": [86, 146, 138] }, @@ -307077,23 +307077,23 @@ "year": 1790, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -26.071394868255723, - "c2": -7.245317847903685, - "c3": -27.36927536593016, - "c4": -13.225197124260639, - "c5": 19.801698344097456, - "c6": -12.797771080842097, - "c7": -7.348039463552869 + "points": { + "c1": 7.922024234117803, + "c2": -15.232944194049729, + "c3": 4.1747746699991986, + "c4": 1.7933347722907946, + "c5": 13.311098787379631, + "c6": 25.864684672477406, + "c7": -15.436380219463558 }, - "vertexSeeds": { - "c1": 2.4606467584128455, - "c2": 2.602207273860701, - "c3": 2.668967754009956, - "c4": 2.6732962013949115, - "c5": 2.53477652150022, - "c6": 2.773827649370226, - "c7": 2.688461708738312 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912621, + "c3": 3.398058252427185, + "c4": 2.718446601941749, + "c5": 2.0388349514563124, + "c6": 1.359223300970876, + "c7": 0.6796116504854396 }, "rgb": [58, 15, 49] }, @@ -307104,23 +307104,23 @@ "year": 1790, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -17.787645836728302, - "c2": -21.50381765503314, - "c3": 5.844433140602476, - "c4": -5.821393796461816, - "c5": 12.277833101345507, - "c6": 5.688472302506838, - "c7": 23.560958458534408 + "points": { + "c1": 22.961846830767975, + "c2": -10.234054807750365, + "c3": -15.242764157351438, + "c4": -23.007578636631486, + "c5": -15.453416140704235, + "c6": 9.201348985192752, + "c7": -1.5429844381110165 }, - "vertexSeeds": { - "c1": 6.377885362225323, - "c2": 6.597932797097301, - "c3": 6.405244975386821, - "c4": 6.325964072119801, - "c5": 6.140592120704699, - "c6": 6.360852564656057, - "c7": 6.520525819125604 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077674, + "c3": 8.090614886731386, + "c4": 6.472491909385112, + "c5": 4.854368932038837, + "c6": 3.2362459546925635, + "c7": 1.618122977346274 }, "rgb": [222, 0, 59] }, @@ -307131,23 +307131,23 @@ "year": 1791, "resistanceReported": false, "duration": 52099200, - "curveSeeds": { - "c1": 33.14070999938161, - "c2": 65.09788205496616, - "c3": 13.512179863894858, - "c4": 37.61288349473891, - "c5": -50.88917076622584, - "c6": -61.091974883286184, - "c7": -32.51662862384372 + "points": { + "c1": -18.517949265053574, + "c2": -33.03438113070275, + "c3": -61.67317109671282, + "c4": -16.057080403201553, + "c5": -7.540902780069473, + "c6": -68.47434116685395, + "c7": 35.580206699188764 }, - "vertexSeeds": { - "c1": 7.046178987181344, - "c2": 7.16858699861301, - "c3": 5.855175137938207, - "c4": 7.117484517928861, - "c5": 7.611302668325152, - "c6": 7.748794663531336, - "c7": 5.901942999217818 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456309, + "c3": 10.032362459546926, + "c4": 8.02588996763754, + "c5": 6.019417475728154, + "c6": 4.01294498381877, + "c7": 2.006472491909385 }, "rgb": [222, 0, 59] }, @@ -307158,23 +307158,23 @@ "year": 1790, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -26.13471174855752, - "c2": 8.918858098739477, - "c3": 6.1119854218813074, - "c4": -23.888587232260676, - "c5": -45.498912352785325, - "c6": -15.243780235744303, - "c7": -26.0689541911407 + "points": { + "c1": 16.680921693574454, + "c2": -0.7236050289428846, + "c3": -12.896130934449793, + "c4": -31.459450307130066, + "c5": -38.52565804382128, + "c6": -34.14149192713711, + "c7": 45.44287455325507 }, - "vertexSeeds": { - "c1": 4.152381958907276, - "c2": 3.937660865875503, - "c3": 3.8939025901144686, - "c4": 4.065941005221095, - "c5": 3.8772841955810398, - "c6": 3.999712001053389, - "c7": 3.870650464355623 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687937, + "c3": 4.99306518723994, + "c4": 3.9944521497919543, + "c5": 2.9958391123439685, + "c6": 1.997226074895971, + "c7": 0.9986130374479855 }, "rgb": [58, 15, 49] }, @@ -307185,23 +307185,23 @@ "year": 1790, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": 38.73869887367319, - "c2": 28.33879882298197, - "c3": -1.1507212233079684, - "c4": -31.607551364739784, - "c5": -48.08310076008146, - "c6": 32.431721984365524, - "c7": 20.16855203130656 + "points": { + "c1": -12.148390096927727, + "c2": 4.73582231831724, + "c3": 19.137021794023823, + "c4": -31.510899449601908, + "c5": 12.300658596857915, + "c6": 30.616825963097384, + "c7": -50.52350965887515 }, - "vertexSeeds": { - "c1": 9.63437906164188, - "c2": 9.160565482877328, - "c3": 9.928905926508993, - "c4": 9.756390159445449, - "c5": 9.810082139260345, - "c6": 10.151540481241323, - "c7": 9.555601743785692 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.646324549237182, + "c3": 12.205270457697642, + "c4": 9.764216366158113, + "c5": 7.323162274618585, + "c6": 4.8821081830790565, + "c7": 2.4410540915395282 }, "rgb": [58, 15, 49] }, @@ -307212,23 +307212,23 @@ "year": 1790, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 24.81564638412746, - "c2": 6.1096433824145535, - "c3": -2.889265665003464, - "c4": 15.569351192566494, - "c5": -16.426668373510147, - "c6": -40.14190908053738, - "c7": -34.26781338707367 + "points": { + "c1": -39.15340189620321, + "c2": 1.0050445635291752, + "c3": -39.015025876336075, + "c4": 35.317106408130286, + "c5": 41.286287357487865, + "c6": -30.58731627446784, + "c7": 37.57414052262405 }, - "vertexSeeds": { - "c1": 3.672279792746114, - "c2": 3.672279792746114, - "c3": 3.672279792746114, - "c4": 3.672279792746114, - "c5": 3.672279792746114, - "c6": 3.672279792746114, - "c7": 3.672279792746114 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -307239,23 +307239,23 @@ "year": 1790, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": -28.941533756545063, - "c2": 27.81254590629746, - "c3": -37.20782525273278, - "c4": 24.859001957244047, - "c5": -36.05166792990104, - "c6": 3.4350801248967855, - "c7": 20.960746327456476 + "points": { + "c1": 44.40254335638572, + "c2": -41.93571182848759, + "c3": 17.38033466366454, + "c4": -39.09264898700606, + "c5": -8.878640048417957, + "c6": -33.31822059808279, + "c7": 26.987732110228464 }, - "vertexSeeds": { - "c1": 2.3564819789738314, - "c2": 2.3447284955307492, - "c3": 2.6617659962704865, - "c4": 2.6588364876888257, - "c5": 2.535111406779533, - "c6": 2.6037871815922027, - "c7": 2.2884522234881657 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712873, + "c3": 3.2593619972260752, + "c4": 2.6074895977808583, + "c5": 1.9556171983356436, + "c6": 1.3037447988904292, + "c7": 0.6518723994452146 }, "rgb": [77, 76, 132] }, @@ -307266,23 +307266,23 @@ "year": 1790, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -4.073039706676376, - "c2": -17.164032046961747, - "c3": -12.398592014915074, - "c4": 22.966953479654315, - "c5": -18.973732812078723, - "c6": -16.146606223171784, - "c7": 0.16175403977392477 + "points": { + "c1": 3.9731606661523315, + "c2": 20.893909693911, + "c3": 24.201504076736775, + "c4": 9.035858520292983, + "c5": -12.557149844541414, + "c6": -4.822814173327309, + "c7": 14.526104927633938 }, - "vertexSeeds": { - "c1": 5.454745918830302, - "c2": 5.096906654590749, - "c3": 5.5151880010264005, - "c4": 5.334840950026798, - "c5": 5.361835566544552, - "c6": 5.43162434815035, - "c7": 5.268305260641782 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543683, + "c3": 6.634304207119751, + "c4": 5.3074433656957964, + "c5": 3.9805825242718416, + "c6": 2.6537216828479093, + "c7": 1.3268608414239547 }, "rgb": [77, 76, 132] }, @@ -307293,23 +307293,23 @@ "year": 1790, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -10.435476068737891, - "c2": -19.43667280873308, - "c3": -23.249641385078874, - "c4": 16.695849970705254, - "c5": 8.301855089122782, - "c6": 13.567170092175218, - "c7": 9.791775337352448 + "points": { + "c1": -23.764691415968237, + "c2": 3.8662693260061047, + "c3": 32.81643243967966, + "c4": -2.7042986592555707, + "c5": 7.968667258548656, + "c6": 32.589333273620895, + "c7": -1.841921068973356 }, - "vertexSeeds": { - "c1": 3.8242517844272976, - "c2": 3.8215895159287183, - "c3": 3.8636282587660715, - "c4": 3.8109126779641116, - "c5": 3.8017437270907797, - "c6": 3.792539301618751, - "c7": 3.8377710191292698 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044363, + "c3": 4.623208506703659, + "c4": 3.6985668053629084, + "c5": 2.7739251040222044, + "c6": 1.8492834026814542, + "c7": 0.9246417013407501 }, "rgb": [86, 146, 138] }, @@ -307320,23 +307320,23 @@ "year": 1791, "resistanceReported": false, "duration": 41212800, - "curveSeeds": { - "c1": -24.932861662687024, - "c2": -45.5828103568431, - "c3": -5.250891208959942, - "c4": 9.144325740309803, - "c5": -50.05943244985307, - "c6": -49.61095637883952, - "c7": -51.35032156020445 + "points": { + "c1": -14.887526923612967, + "c2": -28.57636126001947, + "c3": 53.36451386475857, + "c4": 56.33956220857852, + "c5": -45.68812197745298, + "c6": 50.41039508439524, + "c7": -48.000896865933505 }, - "vertexSeeds": { - "c1": 4.3393760498306975, - "c2": 4.099984744386916, - "c3": 3.873561527653662, - "c4": 4.36582501463312, - "c5": 4.145350712071711, - "c6": 4.4246220186213145, - "c7": 4.4565534094217885 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [77, 76, 132] }, @@ -307347,23 +307347,23 @@ "year": 1790, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -2.9563359000751745, - "c2": -37.354225823095604, - "c3": -40.24852747130286, - "c4": -6.971071593316459, - "c5": -21.185710458089652, - "c6": -36.76608232237182, - "c7": 23.789432738911934 + "points": { + "c1": 7.520032838299301, + "c2": 35.307186367584514, + "c3": 33.75552632584019, + "c4": -31.536132315439104, + "c5": -33.94331733003405, + "c6": 25.28417125886795, + "c7": -31.041923629220904 }, - "vertexSeeds": { - "c1": 5.738250138110994, - "c2": 6.060565551061524, - "c3": 5.835751685919173, - "c4": 5.722123363344473, - "c5": 5.797340818451782, - "c6": 6.074477448052121, - "c7": 5.805772172012762 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710124, + "c3": 7.304669440591771, + "c4": 5.843735552473416, + "c5": 4.382801664355062, + "c6": 2.921867776236708, + "c7": 1.460933888118354 }, "rgb": [77, 76, 132] }, @@ -307374,23 +307374,23 @@ "year": 1790, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 17.01540058939942, - "c2": -8.687047410568248, - "c3": -32.045007156911566, - "c4": 29.04036455237513, - "c5": -16.272991040996118, - "c6": 27.716314281378736, - "c7": -24.365106063170543 + "points": { + "c1": -18.98684693294948, + "c2": -25.209168062534452, + "c3": 23.491987338334965, + "c4": -14.337463405212613, + "c5": 34.529788115333545, + "c6": 32.13422567039696, + "c7": 25.14532681281323 }, - "vertexSeeds": { - "c1": 7.031252426143129, - "c2": 7.21937482914327, - "c3": 6.885993458369485, - "c4": 7.28363863284638, - "c5": 7.275591828774791, - "c6": 7.238152418937569, - "c7": 7.317080199821039 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284333, + "c3": 8.78409616273693, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947634, + "c7": 1.7568192325473817 }, "rgb": [58, 15, 49] }, @@ -307401,23 +307401,23 @@ "year": 1790, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 9.333201038034424, - "c2": 25.129326097081403, - "c3": 3.8162043551169162, - "c4": -34.67847637173815, - "c5": 3.667789107984447, - "c6": -7.998375722403498, - "c7": 14.564941558357098 + "points": { + "c1": -29.56052267069993, + "c2": -16.76178662987534, + "c3": -36.45071910493027, + "c4": -11.46770045721961, + "c5": 27.08460172641138, + "c6": -2.719169207061597, + "c7": 35.0538788737087 }, - "vertexSeeds": { - "c1": 3.6098539706910566, - "c2": 3.8472141695378896, - "c3": 3.5702125030544947, - "c4": 3.7617704327003154, - "c5": 3.4813407430844796, - "c6": 3.8699902708552676, - "c7": 3.694395824617067 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366162, + "c3": 4.808136846971799, + "c4": 3.8465094775774413, + "c5": 2.8848821081830773, + "c6": 1.9232547387887207, + "c7": 0.9616273693943637 }, "rgb": [86, 146, 138] }, @@ -307428,23 +307428,23 @@ "year": 1790, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -26.249022415972075, - "c2": 36.41783108088926, - "c3": 6.051046666451839, - "c4": -29.22930498230111, - "c5": -37.26015359536262, - "c6": 11.515031062768436, - "c7": -20.266423989437946 + "points": { + "c1": -15.41561991729781, + "c2": -35.60663353387404, + "c3": 28.156183381687782, + "c4": 38.40011546739805, + "c5": 33.27946913319714, + "c6": 31.906689297913516, + "c7": -18.998835467391757 }, - "vertexSeeds": { - "c1": 4.137016502990771, - "c2": 4.6047284169304135, - "c3": 4.208007419689203, - "c4": 4.912685247489419, - "c5": 3.845105370392752, - "c6": 4.648210500464803, - "c7": 3.8032565294394205 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.10124826629681, + "c3": 5.917706888580674, + "c4": 4.73416551086454, + "c5": 3.550624133148404, + "c6": 2.36708275543227, + "c7": 1.1835413777161368 }, "rgb": [58, 15, 49] }, @@ -307455,23 +307455,23 @@ "year": 1790, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -29.846278197437247, - "c2": -15.807030484785546, - "c3": 37.26592113366148, - "c4": 10.501382349629118, - "c5": 36.10977907508506, - "c6": 37.01722153121469, - "c7": -14.579569065706888 + "points": { + "c1": 9.53206844696954, + "c2": -12.41479924707874, + "c3": -27.97463089919757, + "c4": 23.541951284357765, + "c5": -6.969045507344063, + "c6": -34.061042707145575, + "c7": 5.13712603888527 }, - "vertexSeeds": { - "c1": 5.642285913954883, - "c2": 5.634428879525419, - "c3": 5.608696975933887, - "c4": 5.515836183445531, - "c5": 5.415707238252351, - "c6": 5.406725145463017, - "c7": 5.442985051607777 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945917, + "c3": 6.865464632454921, + "c4": 5.492371705963945, + "c5": 4.119278779472949, + "c6": 2.7461858529819727, + "c7": 1.3730929264909963 }, "rgb": [222, 0, 59] }, @@ -307482,23 +307482,23 @@ "year": 1790, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 13.075054533152098, - "c2": -22.48252326892995, - "c3": -2.530352191359789, - "c4": -4.130196919216225, - "c5": -18.42354785207236, - "c6": 19.152030238451395, - "c7": -10.473264234906704 + "points": { + "c1": 3.1459448136597317, + "c2": -18.086014278465726, + "c3": 9.751525505393971, + "c4": 13.12788393494602, + "c5": 27.134677438084218, + "c6": -16.379411357683093, + "c7": -12.092156330853776 }, - "vertexSeeds": { - "c1": 8.81293119941657, - "c2": 8.611895209092795, - "c3": 8.55987875160037, - "c4": 8.729897904590178, - "c5": 8.644881560211196, - "c6": 8.546824315254733, - "c7": 8.434829909103186 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743419, + "c3": 10.7720758206195, + "c4": 8.617660656495605, + "c5": 6.463245492371709, + "c6": 4.308830328247814, + "c7": 2.154415164123896 }, "rgb": [238, 201, 159] }, @@ -307509,23 +307509,23 @@ "year": 1790, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 0.5927624908656242, - "c2": 28.87431615317108, - "c3": 24.495580058544633, - "c4": -23.28114235244018, - "c5": 31.216282357656368, - "c6": 15.65300949775861, - "c7": -26.474313745285965 + "points": { + "c1": -6.172583949157541, + "c2": 25.477908898593114, + "c3": 36.596145141127124, + "c4": 3.847778417608154, + "c5": 32.22765033810127, + "c6": -9.137523437944832, + "c7": -16.625312636190007 }, - "vertexSeeds": { - "c1": 6.03412894705384, - "c2": 6.398490956726281, - "c3": 5.930317275406419, - "c4": 6.271968694454545, - "c5": 6.159116933242042, - "c6": 5.684239385817124, - "c7": 5.9570360692108295 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.45908460471567, + "c3": 7.882570503929724, + "c4": 6.306056403143777, + "c5": 4.729542302357842, + "c6": 3.1530282015718942, + "c7": 1.5765141007859471 }, "rgb": [222, 0, 59] }, @@ -307536,23 +307536,23 @@ "year": 1790, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": -12.661681701663175, - "c2": 8.306435463981632, - "c3": 20.988269853643967, - "c4": -12.730853470180834, - "c5": -2.1443513972783244, - "c6": -20.634732329354605, - "c7": 19.101588113742235 + "points": { + "c1": 18.063374873307698, + "c2": -4.5613152299280735, + "c3": -19.27703344274333, + "c4": -10.393654802649424, + "c5": 7.0858777367303425, + "c6": -16.90213409694291, + "c7": -8.655087574094317 }, - "vertexSeeds": { - "c1": 8.607128129430237, - "c2": 8.333231880451459, - "c3": 8.179159059021003, - "c4": 8.046255220446824, - "c5": 8.35523332068944, - "c6": 7.9322930371465965, - "c7": 8.511760688043449 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858531, + "c3": 10.263522884882113, + "c4": 8.210818307905694, + "c5": 6.158113730929256, + "c6": 4.105409153952838, + "c7": 2.052704576976419 }, "rgb": [238, 201, 159] }, @@ -307563,23 +307563,23 @@ "year": 1790, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": -6.468317527002187, - "c2": 16.91878243236129, - "c3": -2.308036954188797, - "c4": -13.712432649613502, - "c5": -9.143287867471528, - "c6": 1.96030076946343, - "c7": -9.206435648338559 + "points": { + "c1": -23.766964833634212, + "c2": -2.9820613604204134, + "c3": -6.4319370610768125, + "c4": -14.368418512733152, + "c5": 21.555815185592728, + "c6": -11.399335332019017, + "c7": 3.4314426496421433 }, - "vertexSeeds": { - "c1": 4.98567255594467, - "c2": 4.984099963749809, - "c3": 4.982481792939742, - "c4": 4.976949441120191, - "c5": 4.982552259253943, - "c6": 4.986914577455821, - "c7": 4.978608946080231 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.15672676837705, + "c3": 5.963938973647779, + "c4": 4.771151178918034, + "c5": 3.5783633841887625, + "c6": 2.385575589459017, + "c7": 1.1927877947297456 }, "rgb": [238, 201, 159] }, @@ -307590,23 +307590,23 @@ "year": 1790, "resistanceReported": true, "duration": 24537600, - "curveSeeds": { - "c1": 24.25763120541098, - "c2": -7.643804513476784, - "c3": -14.458105394451934, - "c4": -22.660125690539516, - "c5": 24.74595048188595, - "c6": 7.4861873197746505, - "c7": 5.375040220699809 + "points": { + "c1": 30.542389958817083, + "c2": 10.143431426959488, + "c3": -16.60116563390188, + "c4": 4.41807823369394, + "c5": 27.58868330156953, + "c6": 36.08180748150217, + "c7": 17.88360174810512 }, - "vertexSeeds": { - "c1": 5.1540777708721475, - "c2": 5.103246940909986, - "c3": 5.180900518837888, - "c4": 5.096994513287099, - "c5": 5.101308468562686, - "c6": 5.208082972498529, - "c7": 5.122589770137896 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859916, + "c3": 6.2413314840499305, + "c4": 4.993065187239944, + "c5": 3.744798890429958, + "c6": 2.496532593619972, + "c7": 1.248266296809986 }, "rgb": [222, 0, 59] }, @@ -307617,23 +307617,23 @@ "year": 1791, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": -10.337492627280163, - "c2": -21.0184995131753, - "c3": 49.24944937578745, - "c4": 1.9426900267573899, - "c5": -19.431947667759125, - "c6": -45.520966345066924, - "c7": -36.09178690600875 + "points": { + "c1": 39.69710300133322, + "c2": 36.840009958530445, + "c3": 34.20970809032474, + "c4": -28.953689661247356, + "c5": -48.15650583665184, + "c6": -43.82037152923145, + "c7": 4.305606109523765 }, - "vertexSeeds": { - "c1": 6.10026812672677, - "c2": 6.635944517193453, - "c3": 6.369822991725435, - "c4": 5.968563331537511, - "c5": 6.161387324936811, - "c6": 7.222892301994862, - "c7": 5.926748546516237 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [222, 0, 59] }, @@ -307644,23 +307644,23 @@ "year": 1790, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -23.42826607594858, - "c2": 1.4576301523515482, - "c3": 29.674141543542632, - "c4": -4.351034031858859, - "c5": 34.481643078537815, - "c6": 8.691353445415942, - "c7": 36.55351327918024 + "points": { + "c1": 20.651376937909106, + "c2": -32.75340152117608, + "c3": 20.444696309715155, + "c4": 12.179487151680682, + "c5": 24.86980572766184, + "c6": -12.288823885066058, + "c7": 4.5201579742543885 }, - "vertexSeeds": { - "c1": 5.191237124094077, - "c2": 5.225672626031178, - "c3": 5.159350104905734, - "c4": 5.051723553986543, - "c5": 4.7826483554139285, - "c6": 4.931163943426096, - "c7": 4.883270118026435 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859925, + "c3": 6.241331484049928, + "c4": 4.99306518723995, + "c5": 3.7447988904299625, + "c6": 2.496532593619975, + "c7": 1.2482662968099876 }, "rgb": [222, 0, 59] }, @@ -307671,23 +307671,23 @@ "year": 1790, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -26.55151877081811, - "c2": 5.149645410744949, - "c3": 28.200646599077448, - "c4": -10.99770484187114, - "c5": -21.94944298152005, - "c6": -8.162289067674187, - "c7": 13.258691447773561 + "points": { + "c1": 23.926452886006317, + "c2": -5.689967478390493, + "c3": -31.453131873129134, + "c4": 9.071804727420492, + "c5": 11.856850105742176, + "c6": 14.34677948440818, + "c7": -16.14390949404436 }, - "vertexSeeds": { - "c1": 2.8493939544540328, - "c2": 3.1366171934367912, - "c3": 3.015330163099539, - "c4": 3.0541278225863535, - "c5": 2.918728536119051, - "c6": 2.9338222676054677, - "c7": 2.998469722479412 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556168, + "c3": 3.767914932963478, + "c4": 3.0143319463707785, + "c5": 2.260748959778088, + "c6": 1.5071659731853893, + "c7": 0.7535829865926907 }, "rgb": [58, 15, 49] }, @@ -307698,23 +307698,23 @@ "year": 1790, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 23.172016212673846, - "c2": 22.49850332631548, - "c3": -6.213721530879731, - "c4": -23.81064803012175, - "c5": 10.748929216285589, - "c6": -0.028304001201760798, - "c7": 37.30009607366978 + "points": { + "c1": 21.84067320226263, + "c2": 27.86052206946188, + "c3": -30.664369703713866, + "c4": 37.92398137058743, + "c5": -33.57613116683721, + "c6": 29.49820113279975, + "c7": -28.882196165131358 }, - "vertexSeeds": { - "c1": 3.2590959154276056, - "c2": 3.0327229997690397, - "c3": 3.1586006241952425, - "c4": 3.1187149106885417, - "c5": 3.0840262106545815, - "c6": 3.017656877367514, - "c7": 3.1340765214123296 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837725, + "c3": 3.9297272306981044, + "c4": 3.1437817845584832, + "c5": 2.3578363384188625, + "c6": 1.5718908922792416, + "c7": 0.7859454461396208 }, "rgb": [222, 0, 59] }, @@ -307725,23 +307725,23 @@ "year": 1790, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -13.139220178710023, - "c2": -22.4360690576412, - "c3": -5.930763129631757, - "c4": -15.985556405477737, - "c5": -23.687443838184457, - "c6": -16.77359798035881, - "c7": 33.2481245580047 + "points": { + "c1": 29.310785734986275, + "c2": -2.224357697034705, + "c3": -35.168768028903074, + "c4": 16.421095731823996, + "c5": 26.718365745622187, + "c6": 1.3421763235697952, + "c7": 10.212467946501476 }, - "vertexSeeds": { - "c1": 4.855576469485125, - "c2": 4.586805713429543, - "c3": 4.710676479191197, - "c4": 4.465321399714099, - "c5": 4.562193301385661, - "c6": 4.499065154711119, - "c7": 4.774460060608442 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [77, 76, 132] }, @@ -307752,23 +307752,23 @@ "year": 1790, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -9.07283758442486, - "c2": 9.951309362476039, - "c3": -22.54190016496228, - "c4": 46.50666488832348, - "c5": 36.528684571357324, - "c6": -35.21965745679688, - "c7": 14.736862368144074 + "points": { + "c1": -0.19673942403377254, + "c2": 7.005255024877933, + "c3": -31.512761070127574, + "c4": 48.06939572016456, + "c5": -10.037138705248452, + "c6": 3.025633637063173, + "c7": 20.25261918562854 }, - "vertexSeeds": { - "c1": 5.74977694959575, - "c2": 5.823980499796495, - "c3": 5.8568998195706, - "c4": 5.966386902585581, - "c5": 5.65106313631746, - "c6": 5.577452651332288, - "c7": 5.818157986588063 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468791, + "c3": 7.165973185390655, + "c4": 5.7327785483125195, + "c5": 4.299583911234384, + "c6": 2.866389274156271, + "c7": 1.4331946370781354 }, "rgb": [238, 201, 159] }, @@ -307779,23 +307779,23 @@ "year": 1790, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -17.507442605042634, - "c2": 25.79409065543323, - "c3": 25.777863400251434, - "c4": 24.36204163053896, - "c5": 7.579799658540871, - "c6": 7.749354204714464, - "c7": -31.392512642585373 + "points": { + "c1": -8.421122916916797, + "c2": -0.1254809841847475, + "c3": 23.723003557340085, + "c4": 22.958010616256175, + "c5": 23.037743931264224, + "c6": -14.459787935382185, + "c7": -14.362999148493856 }, - "vertexSeeds": { - "c1": 6.824744814052738, - "c2": 6.593845963087684, - "c3": 6.460637924056517, - "c4": 6.92043280363932, - "c5": 6.859332120912534, - "c6": 6.814104148344471, - "c7": 6.4704935055164965 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -307806,23 +307806,23 @@ "year": 1790, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 0.4127452029040768, - "c2": -20.434891270653353, - "c3": 6.992225609424061, - "c4": 10.163314001192482, - "c5": -11.75811778895147, - "c6": 8.666197384138265, - "c7": -18.11902363135738 + "points": { + "c1": -31.95625218412473, + "c2": -16.71640408739769, + "c3": -19.648656766186914, + "c4": 26.410459992341856, + "c5": 2.1119248145274767, + "c6": 9.222834661040132, + "c7": 25.622088381603604 }, - "vertexSeeds": { - "c1": 1.3045337330989528, - "c2": 1.3346690773166383, - "c3": 1.324818077664394, - "c4": 1.2725840139048958, - "c5": 1.2723077528328155, - "c6": 1.2785135591719365, - "c7": 1.3336051114177652 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.997226074895976, + "c3": 1.6643550624133172, + "c4": 1.3314840499306524, + "c5": 0.998613037447988, + "c6": 0.6657420249653291, + "c7": 0.33287101248266454 }, "rgb": [77, 76, 132] }, @@ -307833,23 +307833,23 @@ "year": 1790, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 5.4208541530047185, - "c2": 30.382335869079505, - "c3": 24.90343783897189, - "c4": 8.062075842404525, - "c5": -8.638457791828117, - "c6": -17.15859565562062, - "c7": 14.991481266057782 + "points": { + "c1": -11.618452924269711, + "c2": 0.2531651670022299, + "c3": 16.73461067603666, + "c4": 0.07040713405145027, + "c5": 50.98280005512242, + "c6": -19.585152387120598, + "c7": 19.551081702008368 }, - "vertexSeeds": { - "c1": 6.522916965066138, - "c2": 6.516742061276388, - "c3": 6.73055514394073, - "c4": 6.224135956474757, - "c5": 6.448039863950454, - "c6": 6.314581707779038, - "c7": 6.622359782646657 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.76421636615812, + "c3": 8.13684697179842, + "c4": 6.509477577438741, + "c5": 4.88210818307906, + "c6": 3.25473878871938, + "c7": 1.62736939435968 }, "rgb": [238, 201, 159] }, @@ -307860,23 +307860,23 @@ "year": 1790, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 14.669318198292917, - "c2": 20.556485338318335, - "c3": 28.08764686867401, - "c4": 22.73939238323476, - "c5": 7.444293624589331, - "c6": -11.737639395531282, - "c7": 19.462904753136694 + "points": { + "c1": -26.891894747181965, + "c2": 3.0156008204476485, + "c3": 19.696366485729197, + "c4": 17.828097056809735, + "c5": 23.478352162150653, + "c6": 11.535618442191133, + "c7": 8.849145685920089 }, - "vertexSeeds": { - "c1": 4.285807714728728, - "c2": 4.062507936329663, - "c3": 4.169449747685002, - "c4": 4.164552086776028, - "c5": 4.28007725347202, - "c6": 4.445096355936443, - "c7": 4.1167156938415035 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492376, + "c3": 5.45538603791031, + "c4": 4.364308830328246, + "c5": 3.273231622746188, + "c6": 2.18215441516413, + "c7": 1.091077207582065 }, "rgb": [222, 0, 59] }, @@ -307887,23 +307887,23 @@ "year": 1790, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 17.190649252162558, - "c2": -30.657169295876855, - "c3": -12.881631378328436, - "c4": -30.488692939334285, - "c5": 23.752081065486152, - "c6": -38.91768666868594, - "c7": 32.851385045905644 + "points": { + "c1": -20.39580460986099, + "c2": -44.148179237726225, + "c3": 41.214681311406224, + "c4": -30.838936805553395, + "c5": 36.94751443806945, + "c6": -43.98440083424066, + "c7": -38.39210669248043 }, - "vertexSeeds": { - "c1": 6.646512881578972, - "c2": 7.063770200462334, - "c3": 7.064624356218322, - "c4": 6.587041325298335, - "c5": 6.773555754820123, - "c6": 6.6545712531348675, - "c7": 7.02739869824129 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002784, + "c3": 8.62228386500231, + "c4": 6.897827092001855, + "c5": 5.173370319001381, + "c6": 3.4489135460009277, + "c7": 1.724456773000474 }, "rgb": [77, 76, 132] }, @@ -307914,23 +307914,23 @@ "year": 1790, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 19.702766020584413, - "c2": -24.795965675463563, - "c3": 22.09800380767207, - "c4": 29.066062862919217, - "c5": 23.33922567117653, - "c6": -28.25240029736019, - "c7": 24.83320311509668 + "points": { + "c1": 10.173423916389368, + "c2": 29.594418227983127, + "c3": -18.015148073406237, + "c4": 5.7927118993769895, + "c5": 28.114925026477827, + "c6": -28.50456490171384, + "c7": -29.334385883948077 }, - "vertexSeeds": { - "c1": 4.211600621627819, - "c2": 4.203775772564105, - "c3": 4.2464034645325635, - "c4": 4.417374036448123, - "c5": 4.175507998896811, - "c6": 4.063924056483598, - "c7": 4.110324962422555 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.3522884882108155, + "c3": 5.293573740175686, + "c4": 4.234858992140547, + "c5": 3.1761442441054077, + "c6": 2.117429496070268, + "c7": 1.0587147480351395 }, "rgb": [86, 146, 138] }, @@ -307941,23 +307941,23 @@ "year": 1790, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 17.2382941518442, - "c2": -33.629736366754365, - "c3": -6.55755178951879, - "c4": 8.185513587464818, - "c5": -31.664422198160654, - "c6": -34.24486586010149, - "c7": -27.929467976922773 + "points": { + "c1": 26.794287334398824, + "c2": -26.83468268667226, + "c3": -28.65987544354584, + "c4": -23.260061444778767, + "c5": -12.772705705899792, + "c6": 5.4606626407103604, + "c7": 24.68311519550703 }, - "vertexSeeds": { - "c1": 5.532487255072426, - "c2": 5.618395474107307, - "c3": 5.417284580652564, - "c4": 6.1851812420034715, - "c5": 6.071074287327037, - "c6": 6.1133703883620925, - "c7": 5.731735632431404 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.07073509015257, + "c3": 7.558945908460469, + "c4": 6.04715672676838, + "c5": 4.535367545076279, + "c6": 3.02357836338419, + "c7": 1.5117891816921016 }, "rgb": [58, 15, 49] }, @@ -307968,23 +307968,23 @@ "year": 1790, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -18.02476182649729, - "c2": 49.87575813205902, - "c3": 8.808085835372147, - "c4": -18.111204085369906, - "c5": 49.097819045711816, - "c6": -31.437311322070595, - "c7": 34.23631263397647 + "points": { + "c1": 50.03455933706657, + "c2": -19.10448048103415, + "c3": -34.24460547556208, + "c4": -35.36455880905221, + "c5": -21.85663907655149, + "c6": 40.609874101872634, + "c7": -38.65768971468229 }, - "vertexSeeds": { - "c1": 2.6461999098213074, - "c2": 2.475799386353363, - "c3": 2.469314640553239, - "c4": 2.463489297243415, - "c5": 2.5736334067967213, - "c6": 2.475252672383411, - "c7": 2.5783773297733683 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590848, + "c3": 3.2131299121590424, + "c4": 2.5705039297272276, + "c5": 1.9278779472954217, + "c6": 1.285251964863616, + "c7": 0.6426259824318058 }, "rgb": [58, 15, 49] }, @@ -307995,23 +307995,23 @@ "year": 1790, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 29.5372458588136, - "c2": 38.11312060840151, - "c3": 23.509023765855794, - "c4": 38.23809001558424, - "c5": -28.32636651628645, - "c6": -2.435298686130018, - "c7": -33.02210259644875 + "points": { + "c1": -7.585809237378996, + "c2": 16.77770627624939, + "c3": -8.123981281076098, + "c4": -7.062807793863065, + "c5": 32.275345556777914, + "c6": 17.03951775099663, + "c7": 14.013353782355217 }, - "vertexSeeds": { - "c1": 4.938199345346934, - "c2": 5.299328645924934, - "c3": 5.36719301196414, - "c4": 5.259082003207353, - "c5": 4.957201621014631, - "c6": 5.087204139052776, - "c7": 5.052121577668693 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.73925104022192, + "c3": 6.449375866851587, + "c4": 5.159500693481273, + "c5": 3.86962552011096, + "c6": 2.5797503467406266, + "c7": 1.2898751733703133 }, "rgb": [86, 146, 138] }, @@ -308022,23 +308022,23 @@ "year": 1790, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 26.23793766141523, - "c2": -36.4933998566725, - "c3": 31.51490397526547, - "c4": 28.997809421540282, - "c5": 6.026944436054734, - "c6": -18.04829648565616, - "c7": 10.912716838410049 + "points": { + "c1": 1.311555789948649, + "c2": 36.81684396349432, + "c3": 11.03274725245494, + "c4": 27.827550266692, + "c5": -4.5825352799079155, + "c6": -18.850283097125267, + "c7": -36.758266788616815 }, - "vertexSeeds": { - "c1": 5.458955361634053, - "c2": 5.344233957689445, - "c3": 5.247316940333672, - "c4": 5.5620216314683875, - "c5": 5.560201542592855, - "c6": 5.119518816015955, - "c7": 5.178472769069169 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583909, + "c3": 6.657420249653253, + "c4": 5.325936199722599, + "c5": 3.9944521497919436, + "c6": 2.6629680998613097, + "c7": 1.3314840499306548 }, "rgb": [238, 201, 159] }, @@ -308049,23 +308049,23 @@ "year": 1790, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 4.435237433877202, - "c2": 7.184428334878984, - "c3": 12.839727296180602, - "c4": -25.22897572951386, - "c5": -14.357653885856863, - "c6": 27.799247426218546, - "c7": -23.774524256885396 + "points": { + "c1": -15.355509935007749, + "c2": -24.72222504524793, + "c3": 4.9856806341661155, + "c4": -18.515747612181386, + "c5": 0.9170131573671298, + "c6": -12.088871269105812, + "c7": 31.322362416393858 }, - "vertexSeeds": { - "c1": 3.6874530414268794, - "c2": 3.773229389654203, - "c3": 3.7037395825742045, - "c4": 3.6909573680558743, - "c5": 3.7045953503972333, - "c6": 3.7607386574839694, - "c7": 3.7465497814820865 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923717, + "c3": 4.553860379103098, + "c4": 3.643088303282478, + "c5": 2.7323162274618586, + "c6": 1.821544151641239, + "c7": 0.9107720758206195 }, "rgb": [58, 15, 49] }, @@ -308076,23 +308076,23 @@ "year": 1790, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -24.025442631422543, - "c2": 36.4909059183318, - "c3": 17.967826689415645, - "c4": 3.7906207331765813, - "c5": 14.589161858253519, - "c6": -7.581478103767473, - "c7": -5.171919750906923 + "points": { + "c1": 4.923317572162404, + "c2": -8.568294518377968, + "c3": 9.991111092790575, + "c4": -12.141034746353203, + "c5": 15.980379094101814, + "c6": -26.03988061260504, + "c7": 17.31846689133313 }, - "vertexSeeds": { - "c1": 5.012548151737482, - "c2": 5.1383870826504126, - "c3": 5.000813446805167, - "c4": 5.101779257275693, - "c5": 5.282507313633906, - "c6": 4.835892088493489, - "c7": 5.2362904622825015 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020811, + "c3": 6.333795654183995, + "c4": 5.0670365233472, + "c5": 3.8002773925104054, + "c6": 2.5335182616735903, + "c7": 1.2667591308367951 }, "rgb": [77, 76, 132] }, @@ -308103,23 +308103,23 @@ "year": 1790, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 8.797657567600133, - "c2": 1.3100115187877464, - "c3": -28.994967143007795, - "c4": 26.821434404797962, - "c5": 33.43991061945505, - "c6": 28.61551246275438, - "c7": 25.413815324654195 + "points": { + "c1": 6.745721054103932, + "c2": 35.726409679277126, + "c3": -18.592760621898332, + "c4": 5.886397623054634, + "c5": -24.95766189100584, + "c6": -20.214143632575905, + "c7": -26.339958375259954 }, - "vertexSeeds": { - "c1": 5.861967567339641, - "c2": 5.776841039158097, - "c3": 5.828706530867548, - "c4": 5.793728564649669, - "c5": 5.748147857231052, - "c6": 5.8360225829627135, - "c7": 5.74435795282386 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.40499306518724, + "c3": 7.004160887656034, + "c4": 5.603328710124827, + "c5": 4.20249653259362, + "c6": 2.8016643550624134, + "c7": 1.4008321775312067 }, "rgb": [86, 146, 138] }, @@ -308130,23 +308130,23 @@ "year": 1790, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 23.46949372965297, - "c2": -23.927911885360913, - "c3": 19.245265601501846, - "c4": 11.999768969509777, - "c5": -18.992967161561896, - "c6": -22.783081326248286, - "c7": -7.402071472524106 + "points": { + "c1": -20.65741324751138, + "c2": -22.809366918848426, + "c3": -0.4261467096886946, + "c4": -11.094061777617913, + "c5": 11.070941151765357, + "c6": 31.719482629652315, + "c7": -18.962082074230604 }, - "vertexSeeds": { - "c1": 6.743466064734719, - "c2": 6.950734715115576, - "c3": 6.601839456867102, - "c4": 6.687534944227564, - "c5": 6.6678006995414805, - "c6": 6.860982225430457, - "c7": 6.758301471774745 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -308157,23 +308157,23 @@ "year": 1790, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": 1.0542832146581063, - "c2": 0.6423683121615795, - "c3": 40.515551971659214, - "c4": 41.75990687675027, - "c5": 7.8878969211748355, - "c6": 35.32995281176759, - "c7": 17.203666281267637 + "points": { + "c1": 17.895422409032683, + "c2": 1.1295256197093906, + "c3": 41.871312647900304, + "c4": -24.57794642533705, + "c5": 17.70867441061265, + "c6": 44.48545808161516, + "c7": 38.84094787437794 }, - "vertexSeeds": { - "c1": 3.672279792746114, - "c2": 3.672279792746114, - "c3": 3.672279792746114, - "c4": 3.672279792746114, - "c5": 3.672279792746114, - "c6": 3.672279792746114, - "c7": 3.672279792746114 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -308184,23 +308184,23 @@ "year": 1791, "resistanceReported": false, "duration": 66009600, - "curveSeeds": { - "c1": -10.789962725397842, - "c2": -54.961489978004565, - "c3": 45.631366911433986, - "c4": -73.86572779380981, - "c5": -60.73400985336704, - "c6": -35.45953882533437, - "c7": 35.90092906268589 + "points": { + "c1": -12.422618455861937, + "c2": 82.69480826487448, + "c3": 17.935451380863157, + "c4": -20.637263177586433, + "c5": -12.242700694259739, + "c6": 12.983355615407888, + "c7": -18.836545378723542 }, - "vertexSeeds": { - "c1": 3.1468045583775264, - "c2": 3.581882310135425, - "c3": 3.666586751561977, - "c4": 3.466035279816483, - "c5": 3.639313773062636, - "c6": 3.13694355795296, - "c7": 3.736539260967392 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703654, + "c4": 3.698566805362922, + "c5": 2.7739251040221906, + "c6": 1.8492834026814589, + "c7": 0.9246417013407318 }, "rgb": [238, 201, 159] }, @@ -308211,23 +308211,23 @@ "year": 1790, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -12.353031063895749, - "c2": 11.272136125648082, - "c3": 7.966870330132174, - "c4": 35.4329016130833, - "c5": 22.25784246521826, - "c6": -11.084452052822602, - "c7": 5.787457363881892 + "points": { + "c1": -39.6035266398727, + "c2": 35.850816087374724, + "c3": -5.765836328962443, + "c4": 31.82146661195742, + "c5": 31.229145447960164, + "c6": -13.419557150471196, + "c7": 35.709569896787286 }, - "vertexSeeds": { - "c1": 3.459836383979084, - "c2": 3.468151482403085, - "c3": 3.4593737111342207, - "c4": 3.474013095266912, - "c5": 3.464596579323142, - "c6": 3.4665988167876582, - "c7": 3.471259714511073 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239968, + "c3": 4.160887656033334, + "c4": 3.3287101248267006, + "c5": 2.4965325936199014, + "c6": 1.6643550624132675, + "c7": 0.8321775312066337 }, "rgb": [222, 0, 59] }, @@ -308238,23 +308238,23 @@ "year": 1791, "resistanceReported": false, "duration": 41126400, - "curveSeeds": { - "c1": 24.984774161570435, - "c2": 44.7236369761468, - "c3": 7.770820602886886, - "c4": 3.4123692686760307, - "c5": 27.619494561029974, - "c6": 27.363261116631016, - "c7": -19.63932022910783 + "points": { + "c1": 47.0586204990886, + "c2": 4.298379538460502, + "c3": 3.9970607304867727, + "c4": 38.76516840222549, + "c5": -31.752650864652143, + "c6": 20.511477259550382, + "c7": 34.557971557098504 }, - "vertexSeeds": { - "c1": 8.181617011400858, - "c2": 8.28178354426094, - "c3": 7.972734430708879, - "c4": 8.007396692601013, - "c5": 8.355905867156388, - "c6": 8.11990474816981, - "c7": 8.03179477558247 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.011095700416094, + "c3": 10.009246417013417, + "c4": 8.007397133610741, + "c5": 6.005547850208064, + "c6": 4.003698566805353, + "c7": 2.0018492834026764 }, "rgb": [222, 0, 59] }, @@ -308265,23 +308265,23 @@ "year": 1790, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 19.303092596246955, - "c2": 4.114688999744828, - "c3": -17.28997670170793, - "c4": 17.380522311923905, - "c5": 5.586833412319606, - "c6": 23.49402501682959, - "c7": 10.907505973771123 + "points": { + "c1": -14.757740661276483, + "c2": 2.2248127193624185, + "c3": 10.829448786203208, + "c4": 0.9506120190067691, + "c5": 8.243325751005464, + "c6": 28.71993396728398, + "c7": 12.873825492246795 }, - "vertexSeeds": { - "c1": 5.241408903435413, - "c2": 5.322506591942756, - "c3": 5.408600759617359, - "c4": 5.636499034718627, - "c5": 5.5918608528416, - "c6": 5.741238172942063, - "c7": 5.259337461164352 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986128, + "c3": 6.888580674988438, + "c4": 5.510864539990748, + "c5": 4.133148404993071, + "c6": 2.7554322699953806, + "c7": 1.3777161349976903 }, "rgb": [77, 76, 132] }, @@ -308292,23 +308292,23 @@ "year": 1790, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -3.3229615595052238, - "c2": -20.727073968531013, - "c3": -1.8534923662507268, - "c4": -30.804343708861424, - "c5": 33.40480412290205, - "c6": -30.60688550619838, - "c7": 35.289907689429285 + "points": { + "c1": 13.223131475551767, + "c2": 20.42792012812992, + "c3": 10.047075977485889, + "c4": -37.861192909043, + "c5": 18.944620857013923, + "c6": 29.819936595580543, + "c7": -11.794972726025204 }, - "vertexSeeds": { - "c1": 10.191759676121064, - "c2": 10.415151522892348, - "c3": 10.669553905210103, - "c4": 10.624048321619217, - "c5": 9.845202212111626, - "c6": 10.257228566693197, - "c7": 9.411219615875694 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.61719833564493, + "c3": 13.014331946370792, + "c4": 10.411465557096628, + "c5": 7.808599167822465, + "c6": 5.205732778548314, + "c7": 2.6028663892741633 }, "rgb": [77, 76, 132] }, @@ -308319,23 +308319,23 @@ "year": 1790, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -2.909727877438833, - "c2": -11.75466796137007, - "c3": 10.738226043628195, - "c4": -5.966456549477115, - "c5": 0.8750982542938637, - "c6": -10.106628648321744, - "c7": -9.315887907205225 + "points": { + "c1": -3.624201254470833, + "c2": -21.46427767924245, + "c3": 22.41950804141717, + "c4": 11.421531603955497, + "c5": 10.914869376708051, + "c6": -21.787050084922377, + "c7": 15.867422822459272 }, - "vertexSeeds": { - "c1": 7.425688402056053, - "c2": 7.251424413351287, - "c3": 6.914290882714879, - "c4": 7.205182909451053, - "c5": 6.9907631215788975, - "c6": 7.301396280187794, - "c7": 7.190974831273177 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646322, + "c3": 8.992140545538598, + "c4": 7.193712436430875, + "c5": 5.395284327323151, + "c6": 3.5968562182154478, + "c7": 1.7984281091077239 }, "rgb": [238, 201, 159] }, @@ -308346,23 +308346,23 @@ "year": 1790, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 2.557222780458318, - "c2": 23.341802471459125, - "c3": 19.17509095418842, - "c4": 14.170980302727948, - "c5": -17.619719818012083, - "c6": 32.49396835369678, - "c7": -32.28386499581195 + "points": { + "c1": -2.303885679090989, + "c2": -31.396533662416736, + "c3": -10.581884707219004, + "c4": 5.389477591954815, + "c5": -36.891084920975246, + "c6": -41.233469359273364, + "c7": -11.057541027513935 }, - "vertexSeeds": { - "c1": 1.720929136742341, - "c2": 1.5664240219328454, - "c3": 1.8732952187275993, - "c4": 1.5813245508648213, - "c5": 1.8238396059363757, - "c6": 1.6049228717713921, - "c7": 1.6173159102038206 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.8848821081830804, + "c3": 2.4040684234858993, + "c4": 1.9232547387887202, + "c5": 1.442441054091539, + "c6": 0.9616273693943601, + "c7": 0.4808136846971811 }, "rgb": [238, 201, 159] }, @@ -308373,23 +308373,23 @@ "year": 1790, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 8.575225067877653, - "c2": -15.247155917489577, - "c3": 20.08045085119671, - "c4": 8.206274956567114, - "c5": 13.500861682465995, - "c6": 0.24756925948484465, - "c7": 16.94805424245432 + "points": { + "c1": -15.687629033581038, + "c2": 8.597441848958098, + "c3": -18.48064504819308, + "c4": -9.632081982229154, + "c5": -23.92288183787569, + "c6": -4.5059100484573555, + "c7": -3.2245032087217496 }, - "vertexSeeds": { - "c1": 2.4971243683688518, - "c2": 2.4921591981796634, - "c3": 2.5001574792204684, - "c4": 2.4977575552587896, - "c5": 2.5072819006153697, - "c6": 2.491176380923598, - "c7": 2.4904205802142023 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269088, + "c3": 3.028201571890867, + "c4": 2.4225612575127053, + "c5": 1.816920943134544, + "c6": 1.2112806287563829, + "c7": 0.6056403143781613 }, "rgb": [58, 15, 49] }, @@ -308400,23 +308400,23 @@ "year": 1790, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -33.86391522112757, - "c2": -34.76315449247439, - "c3": 32.70622918491013, - "c4": -20.817337022813724, - "c5": -2.0460465226834827, - "c6": -29.25153578597046, - "c7": -20.748973589677377 + "points": { + "c1": -36.23328126454095, + "c2": -31.378916070038184, + "c3": 17.641284560644117, + "c4": 7.902488189300406, + "c5": 3.675987646488828, + "c6": 6.036749316569008, + "c7": -18.615921789539062 }, - "vertexSeeds": { - "c1": 3.6368887742034746, - "c2": 3.7087770245770733, - "c3": 3.6782087169963744, - "c4": 3.8017913071931457, - "c5": 3.872227565146162, - "c6": 3.690411272943207, - "c7": 3.617919977507936 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165043, + "c3": 4.692556634304208, + "c4": 3.7540453074433624, + "c5": 2.815533980582527, + "c6": 1.8770226537216812, + "c7": 0.9385113268608355 }, "rgb": [238, 201, 159] }, @@ -308427,23 +308427,23 @@ "year": 1791, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -25.262546319526237, - "c2": -51.469422320667, - "c3": 48.999119448172905, - "c4": 38.71870420652483, - "c5": 1.556003871408997, - "c6": 23.08430483757924, - "c7": -18.208633163644784 + "points": { + "c1": -27.139603885668837, + "c2": -4.894119425157307, + "c3": 23.318274235991694, + "c4": -26.975546136919558, + "c5": 35.44111178191967, + "c6": -14.51252244376878, + "c7": -11.176808181261684 }, - "vertexSeeds": { - "c1": 4.069486834621688, - "c2": 4.085235028627844, - "c3": 4.319613802600069, - "c4": 4.0096796284931475, - "c5": 4.200824366566067, - "c6": 4.201496380452463, - "c7": 4.270017674923116 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [238, 201, 159] }, @@ -308454,23 +308454,23 @@ "year": 1790, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 18.756236969481805, - "c2": 29.65694595653065, - "c3": 11.211385456751778, - "c4": -23.686583322634707, - "c5": 39.66117654241329, - "c6": -20.753390631144196, - "c7": -11.475556238897013 + "points": { + "c1": 36.846910189352116, + "c2": 19.013473521536966, + "c3": -15.455721693202307, + "c4": -0.6029531162106068, + "c5": 41.5960697260666, + "c6": -2.8175316770349355, + "c7": -36.80963844623639 }, - "vertexSeeds": { - "c1": 4.745369080097343, - "c2": 4.909204502387944, - "c3": 4.749811619280244, - "c4": 5.077566283442163, - "c5": 4.985985185918915, - "c6": 4.890899956067659, - "c7": 5.080348839495217 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618582, + "c3": 6.102635228848813, + "c4": 4.882108183079058, + "c5": 3.661581137309291, + "c6": 2.441054091539523, + "c7": 1.220527045769768 }, "rgb": [86, 146, 138] }, @@ -308481,23 +308481,23 @@ "year": 1790, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 8.762945784402476, - "c2": 24.436917050067045, - "c3": 7.645416217379591, - "c4": 5.475977362684045, - "c5": -24.346528289384956, - "c6": 2.3295351087044978, - "c7": -0.5601645381642939 + "points": { + "c1": 1.3937005568297032, + "c2": -7.6110229948060635, + "c3": -26.914103557059068, + "c4": -7.43177801095246, + "c5": -6.6265748228210235, + "c6": 15.077426187477158, + "c7": 22.440557623600434 }, - "vertexSeeds": { - "c1": 2.330684835716572, - "c2": 2.240254775987137, - "c3": 2.2677147597887983, - "c4": 2.2941666868639925, - "c5": 2.252837107440195, - "c6": 2.2784994999202897, - "c7": 2.3700619541902004 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.411927877947295, + "c3": 2.8432732316227445, + "c4": 2.2746185852981946, + "c5": 1.7059639389736445, + "c6": 1.1373092926491002, + "c7": 0.5686546463245501 }, "rgb": [86, 146, 138] }, @@ -308508,23 +308508,23 @@ "year": 1790, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": 12.728280290758796, - "c2": 14.944271961972625, - "c3": 12.185927407176443, - "c4": 2.310223299129728, - "c5": 12.140643880184243, - "c6": 10.295216885078961, - "c7": -6.344655446126717 + "points": { + "c1": 2.606650997176395, + "c2": -15.071239688914009, + "c3": 5.446863808059238, + "c4": -20.39881708265893, + "c5": 0.30880587680616856, + "c6": -16.858848556233227, + "c7": -16.53282424871447 }, - "vertexSeeds": { - "c1": 8.291557192805135, - "c2": 8.497138249467115, - "c3": 7.786010876304933, - "c4": 7.976191499511296, - "c5": 8.220344938650694, - "c6": 8.513353898469555, - "c7": 7.9449386021376 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.51040221914008, + "c3": 10.425335182616731, + "c4": 8.340268146093381, + "c5": 6.255201109570032, + "c6": 4.1701340730466985, + "c7": 2.0850670365233333 }, "rgb": [222, 0, 59] }, @@ -308535,23 +308535,23 @@ "year": 1791, "resistanceReported": false, "duration": 41472000, - "curveSeeds": { - "c1": 29.249658758197604, - "c2": 43.44341865162564, - "c3": 53.92841225569861, - "c4": -42.53261054896625, - "c5": -11.225919013429866, - "c6": 2.65067569524372, - "c7": 10.73580692651145 + "points": { + "c1": 6.992294581600142, + "c2": -39.898787887345776, + "c3": 45.530859626290415, + "c4": -8.283706708393986, + "c5": 23.74533883893475, + "c6": -24.8143481316364, + "c7": 36.49914794117391 }, - "vertexSeeds": { - "c1": 0.938179423004417, - "c2": 0.9519664108055111, - "c3": 0.9412496699986732, - "c4": 1.1044925480731265, - "c5": 0.9940817924789719, - "c6": 1.0795802645361414, - "c7": 0.9380154145445323 + "offsets": { + "c1": 1.8770226537216828, + "c2": 1.6088765603328703, + "c3": 1.3407304669440594, + "c4": 1.0725843735552467, + "c5": 0.8044382801664344, + "c6": 0.5362921867776234, + "c7": 0.26814609338881096 }, "rgb": [86, 146, 138] }, @@ -308562,23 +308562,23 @@ "year": 1790, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 18.99890518474281, - "c2": 5.895156350681461, - "c3": -23.537543100352337, - "c4": 26.612924978034563, - "c5": -12.99779626427146, - "c6": -26.15162931871904, - "c7": 16.117072866573594 + "points": { + "c1": -24.737285615758264, + "c2": 18.588020769146745, + "c3": -18.703925593502913, + "c4": -13.230354689564141, + "c5": 24.901738578242238, + "c6": -12.833794918551327, + "c7": 30.656830212663195 }, - "vertexSeeds": { - "c1": 4.109016525710911, - "c2": 5.10384907320725, - "c3": 5.66203047495237, - "c4": 5.594664277467219, - "c5": 5.066628819578993, - "c6": 5.328817746269243, - "c7": 5.11033417538088 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055476, + "c4": 5.547850208044382, + "c5": 4.160887656033288, + "c6": 2.773925104022191, + "c7": 1.3869625520110942 }, "rgb": [222, 0, 59] }, @@ -308589,23 +308589,23 @@ "year": 1791, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": -21.61066776458686, - "c2": 45.58683403364313, - "c3": -6.732862857569465, - "c4": 0.12243024544788028, - "c5": 9.12135642102524, - "c6": 36.68654028908122, - "c7": -15.650510688499395 + "points": { + "c1": 21.218510783554535, + "c2": -25.27289656398578, + "c3": -42.75123603231214, + "c4": 25.127365344663048, + "c5": -43.327803973903954, + "c6": -3.509865962397349, + "c7": 43.35441630970389 }, - "vertexSeeds": { - "c1": 9.544839569050765, - "c2": 9.624176603658936, - "c3": 8.89352002076532, - "c4": 9.050126751723305, - "c5": 8.995479641489533, - "c6": 9.642858276265073, - "c7": 8.892793518461543 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231618, + "c3": 11.627369394359697, + "c4": 9.301895515487752, + "c5": 6.976421636615809, + "c6": 4.650947757743886, + "c7": 2.325473878871943 }, "rgb": [222, 0, 59] }, @@ -308616,23 +308616,23 @@ "year": 1790, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -0.6583109427120206, - "c2": 23.542443093502342, - "c3": 5.929103887960565, - "c4": -32.09024257435342, - "c5": -29.512801331624807, - "c6": -1.8965034068252962, - "c7": -5.149081642318166 + "points": { + "c1": 29.44333528677332, + "c2": -10.76317938303222, + "c3": 15.660554169536063, + "c4": 34.61985137593808, + "c5": 14.728117957116211, + "c6": 21.621538273964646, + "c7": 1.0710016598098804 }, - "vertexSeeds": { - "c1": 8.176630317530257, - "c2": 8.170412314432413, - "c3": 8.327133208459362, - "c4": 8.281096832320411, - "c5": 8.543815034279223, - "c6": 8.167220136705035, - "c7": 8.217317305157247 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.288488210818304, + "c3": 10.240406842348582, + "c4": 8.192325473878864, + "c5": 6.144244105409142, + "c6": 4.0961627369394416, + "c7": 2.0480813684697208 }, "rgb": [77, 76, 132] }, @@ -308643,23 +308643,23 @@ "year": 1790, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 27.991378696563757, - "c2": 23.02496273580524, - "c3": -11.931124110269007, - "c4": -34.94825808403811, - "c5": 33.08514273710219, - "c6": -3.0350851087534565, - "c7": 23.208217764906117 + "points": { + "c1": -27.077657317984105, + "c2": 9.9816593144675, + "c3": 23.508205325593373, + "c4": 10.334732046525879, + "c5": -16.21881132008319, + "c6": -23.24637086010735, + "c7": -13.832563505377216 }, - "vertexSeeds": { - "c1": 7.286399516361103, - "c2": 5.989826699490077, - "c3": 6.836709839686291, - "c4": 7.133938255337392, - "c5": 6.43873366363438, - "c6": 7.278370162252269, - "c7": 7.0180426920244425 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938052, + "c4": 7.1382339343504375, + "c5": 5.353675450762832, + "c6": 3.5691169671752188, + "c7": 1.7845584835876056 }, "rgb": [86, 146, 138] }, @@ -308670,23 +308670,23 @@ "year": 1790, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 4.554499577357774, - "c2": -1.8616402494276443, - "c3": 20.857977915311054, - "c4": -26.916579967958924, - "c5": -11.967746245814382, - "c6": 18.000776866668346, - "c7": 33.94146071959537 + "points": { + "c1": 36.90718107928923, + "c2": 23.708547789453426, + "c3": 32.28090352710326, + "c4": -12.596345878464348, + "c5": -34.39460234043002, + "c6": 10.309300992049721, + "c7": -37.490560174303376 }, - "vertexSeeds": { - "c1": 1.8147202950834977, - "c2": 1.9591730910623244, - "c3": 1.9600543647333273, - "c4": 1.8544925046799061, - "c5": 1.8136611505016835, - "c6": 1.9286085586605142, - "c7": 1.8959695471918794 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142855, + "c3": 2.380952380952382, + "c4": 1.9047619047619033, + "c5": 1.4285714285714302, + "c6": 0.9523809523809517, + "c7": 0.4761904761904785 }, "rgb": [77, 76, 132] }, @@ -308697,23 +308697,23 @@ "year": 1791, "resistanceReported": false, "duration": 43286400, - "curveSeeds": { - "c1": -6.51779404713335, - "c2": -13.941995988094433, - "c3": 5.7075615524202945, - "c4": 15.277241069928841, - "c5": 40.95474976232219, - "c6": 55.9189133676527, - "c7": -47.822540370538974 + "points": { + "c1": 21.776584846801704, + "c2": -57.99881226166841, + "c3": -5.058567355332997, + "c4": 48.085555596226364, + "c5": 49.275209809355125, + "c6": 3.6155292624611732, + "c7": 39.37551356397643 }, - "vertexSeeds": { - "c1": 7.283267366293047, - "c2": 7.180758701436692, - "c3": 7.148881155286095, - "c4": 7.199267229908462, - "c5": 7.14766165047468, - "c6": 7.264642979653511, - "c7": 7.301152556667695 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163673, + "c3": 8.714748035136406, + "c4": 6.971798428109141, + "c5": 5.228848821081875, + "c6": 3.4858992140545317, + "c7": 1.7429496070272659 }, "rgb": [238, 201, 159] }, @@ -308724,23 +308724,23 @@ "year": 1790, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": -1.9869642602145348, - "c2": -21.681213538762368, - "c3": -22.2972677423671, - "c4": -45.55987698658145, - "c5": -15.28859772585071, - "c6": -14.514389155246135, - "c7": 3.808139837935748 + "points": { + "c1": -21.84606570081911, + "c2": 27.087078599740337, + "c3": 28.29572701230738, + "c4": 37.51941483067854, + "c5": 41.570870907128864, + "c6": -5.186774630759778, + "c7": 3.3465416754837847 }, - "vertexSeeds": { - "c1": 1.50709739553808, - "c2": 1.4886097871040795, - "c3": 1.4636642205502897, - "c4": 1.5347275110372482, - "c5": 1.4986166412874453, - "c6": 1.4723200563497139, - "c7": 1.4263519360096273 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177517, + "c3": 1.8492834026814637, + "c4": 1.4794267221451698, + "c5": 1.1095700416088758, + "c6": 0.7397133610725818, + "c7": 0.369856680536294 }, "rgb": [222, 0, 59] }, @@ -308751,23 +308751,23 @@ "year": 1791, "resistanceReported": true, "duration": 42249600, - "curveSeeds": { - "c1": 1.1157207898673605, - "c2": 5.679819658877435, - "c3": -4.615002857208914, - "c4": 36.22634617016923, - "c5": -18.518345565165482, - "c6": 14.346924325000053, - "c7": -36.60472618576924 + "points": { + "c1": -50.66337990830918, + "c2": -1.055055719258867, + "c3": 8.19029341597119, + "c4": 25.469932575788583, + "c5": -18.214095605219562, + "c6": 52.719732410079324, + "c7": -12.852591797774423 }, - "vertexSeeds": { - "c1": 7.665976051828904, - "c2": 7.274070928041853, - "c3": 7.69355955642995, - "c4": 7.2301935501097825, - "c5": 7.140281212676808, - "c6": 7.235736441273906, - "c7": 7.038166202288292 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968106, + "c3": 9.177068885806742, + "c4": 7.341655108645397, + "c5": 5.506241331484053, + "c6": 3.6708275543227082, + "c7": 1.8354137771613446 }, "rgb": [77, 76, 132] }, @@ -308778,23 +308778,23 @@ "year": 1790, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 2.701885845760163, - "c2": -21.714372128281326, - "c3": -5.717010907509668, - "c4": -27.419487977975948, - "c5": 6.2450623198408906, - "c6": 18.86709997571355, - "c7": 3.0295125512733136 + "points": { + "c1": 14.891778387643186, + "c2": -1.0310476094580032, + "c3": -11.332244821597904, + "c4": -26.103848661773785, + "c5": -3.7165325850278634, + "c6": 25.884708638840998, + "c7": 12.621371904449553 }, - "vertexSeeds": { - "c1": 4.33647193017558, - "c2": 4.242646401329803, - "c3": 4.717408049612969, - "c4": 4.447149627530113, - "c5": 4.560817071488702, - "c6": 4.211104464846175, - "c7": 4.190928496758095 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [86, 146, 138] }, @@ -308805,23 +308805,23 @@ "year": 1790, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -4.818744184635637, - "c2": -3.491335696016627, - "c3": -30.98716760373113, - "c4": 0.1721924483059496, - "c5": 6.801630393096943, - "c6": -12.501329447957229, - "c7": 24.907719106906455 + "points": { + "c1": -15.90469951145458, + "c2": -0.8552127246566883, + "c3": -14.707387630611425, + "c4": -28.152604333580204, + "c5": 30.349621854701354, + "c6": -24.560773860759355, + "c7": 24.156473678421683 }, - "vertexSeeds": { - "c1": 6.36308730197819, - "c2": 6.265065915598569, - "c3": 6.23963956946004, - "c4": 6.292552595615306, - "c5": 6.243037352166903, - "c6": 5.926181993532593, - "c7": 6.215317237926059 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313457, + "c3": 7.651410078594552, + "c4": 6.121128062875646, + "c5": 4.5908460471567185, + "c6": 3.0605640314378126, + "c7": 1.5302820157189063 }, "rgb": [238, 201, 159] }, @@ -308832,23 +308832,23 @@ "year": 1790, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 24.790142749606133, - "c2": -6.135735230894735, - "c3": -26.321679177593865, - "c4": 13.368740852097702, - "c5": 6.280287401115515, - "c6": -23.3134523084593, - "c7": -2.219925131540826 + "points": { + "c1": -36.89005105444957, + "c2": 28.2158060102867, + "c3": 22.936429858204598, + "c4": 23.79618087492586, + "c5": 16.201575919125247, + "c6": 12.272921745836264, + "c7": 35.251441936756805 }, - "vertexSeeds": { - "c1": 6.008357653687653, - "c2": 6.1173619455428145, - "c3": 6.142747484310445, - "c4": 5.903692704145052, - "c5": 6.238403987133522, - "c6": 5.93782531792103, - "c7": 6.0429736280369095 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353678, + "c3": 7.674526121128069, + "c4": 6.139620896902459, + "c5": 4.604715672676849, + "c6": 3.0698104484512196, + "c7": 1.5349052242256098 }, "rgb": [58, 15, 49] }, @@ -308859,23 +308859,23 @@ "year": 1790, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 31.60490336595869, - "c2": 36.034625414549595, - "c3": 32.13451377909493, - "c4": 11.997696605247747, - "c5": 35.11485244114958, - "c6": 30.900142595639977, - "c7": 33.74302404810159 + "points": { + "c1": -36.54827528295103, + "c2": -9.88990373551945, + "c3": 18.25874675931761, + "c4": -11.61717727464784, + "c5": -29.36046461634149, + "c6": 18.41780615489869, + "c7": 13.645722094765347 }, - "vertexSeeds": { - "c1": 5.700961522302748, - "c2": 5.912179276210915, - "c3": 6.08730577670485, - "c4": 5.722198471732959, - "c5": 5.768398813892108, - "c6": 6.019685186418669, - "c7": 6.059068681554598 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871005, + "c3": 7.397133610725847, + "c4": 5.917706888580669, + "c5": 4.438280166435513, + "c6": 2.9588534442903347, + "c7": 1.4794267221451574 }, "rgb": [238, 201, 159] }, @@ -308886,23 +308886,23 @@ "year": 1790, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": 21.24293322148265, - "c2": 16.242227157951845, - "c3": 15.363326610106363, - "c4": -38.55952337305593, - "c5": -35.666341253750744, - "c6": -17.404657946490808, - "c7": -8.901909505563232 + "points": { + "c1": 32.217029806929666, + "c2": -8.826477453842394, + "c3": -34.72780218238673, + "c4": -44.874592741672856, + "c5": 10.48349844463631, + "c6": 32.7556616975593, + "c7": -37.022193373074536 }, - "vertexSeeds": { - "c1": 1.5934842245580936, - "c2": 1.5723784248896018, - "c3": 1.5694556483271556, - "c4": 1.5901616728813552, - "c5": 1.5747077866125703, - "c6": 1.612579491585721, - "c7": 1.552872388155332 + "offsets": { + "c1": 3.0097087378640777, + "c2": 2.5797503467406364, + "c3": 2.1497919556171987, + "c4": 1.7198335644937575, + "c5": 1.28987517337032, + "c6": 0.8599167822468787, + "c7": 0.4299583911234378 }, "rgb": [238, 201, 159] }, @@ -308913,23 +308913,23 @@ "year": 1791, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": -31.445525298953285, - "c2": 31.70267457495588, - "c3": 48.386028259766476, - "c4": -29.933860694040877, - "c5": 40.13976604273259, - "c6": -21.079235769690065, - "c7": 49.70101063748186 + "points": { + "c1": -47.57363523585703, + "c2": -51.15259829907391, + "c3": 3.9449680550063135, + "c4": 27.252150030700392, + "c5": 38.12569630295013, + "c6": 38.04522235848559, + "c7": -15.219755762397334 }, - "vertexSeeds": { - "c1": 2.8958673328640865, - "c2": 2.8480270231025773, - "c3": 2.7578602209511187, - "c4": 2.8602407824525202, - "c5": 2.7247558586133627, - "c6": 2.949075807914573, - "c7": 2.723011174264267 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194175, + "c3": 3.559870550161812, + "c4": 2.8478964401294498, + "c5": 2.1359223300970873, + "c6": 1.4239482200647249, + "c7": 0.7119741100323624 }, "rgb": [222, 0, 59] }, @@ -308940,23 +308940,23 @@ "year": 1790, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -18.40339418668957, - "c2": -11.40481381390144, - "c3": -1.5263363789559499, - "c4": -4.718158322802918, - "c5": 5.5387959525374875, - "c6": -9.613510203644292, - "c7": 15.122287332602461 + "points": { + "c1": -21.03489683104313, + "c2": 26.117649276905063, + "c3": 0.9440858457340155, + "c4": 8.194660533310014, + "c5": -20.24213408598557, + "c6": 20.87344973360058, + "c7": -8.696644344624552 }, - "vertexSeeds": { - "c1": 3.7365147763338644, - "c2": 3.825120120182363, - "c3": 3.7590039712303147, - "c4": 3.7197688936499946, - "c5": 3.746797299416127, - "c6": 3.710443710421651, - "c7": 3.721359923748303 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963938, + "c3": 4.5769764216366156, + "c4": 3.6615811373092924, + "c5": 2.746185852981969, + "c6": 1.8307905686546462, + "c7": 0.9153952843273231 }, "rgb": [86, 146, 138] }, @@ -308967,23 +308967,23 @@ "year": 1790, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 2.714009548123009, - "c2": -22.489532219434736, - "c3": -19.769878475881647, - "c4": 2.5848244357315764, - "c5": -27.682048780181248, - "c6": 3.062178555906158, - "c7": -10.311825618791993 + "points": { + "c1": -31.73257029228826, + "c2": 2.1422282588166297, + "c3": 20.25336424694992, + "c4": 12.67665278905072, + "c5": -11.261637722967013, + "c6": -13.680428079383525, + "c7": -17.41490087766802 }, - "vertexSeeds": { - "c1": 2.9737751017078122, - "c2": 3.2284255870528584, - "c3": 2.937688696622936, - "c4": 2.9664224466450673, - "c5": 3.261024185708371, - "c6": 3.234318323239155, - "c7": 3.0449363690457054 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -308994,23 +308994,23 @@ "year": 1790, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -2.2868519408310632, - "c2": 22.306469487357337, - "c3": 22.159995984468193, - "c4": 25.018344454966094, - "c5": -22.89172070654671, - "c6": 2.6502914188419027, - "c7": -8.446094090313231 + "points": { + "c1": -7.095321196971753, + "c2": 0.22574328628293827, + "c3": 0.11069013602812916, + "c4": 23.609616891799558, + "c5": 25.245022753508355, + "c6": -3.908939588444202, + "c7": -1.7119797793600071 }, - "vertexSeeds": { - "c1": 5.686655951167731, - "c2": 5.6384299385574925, - "c3": 5.802324273224516, - "c4": 5.620860840404127, - "c5": 5.729441860575599, - "c6": 5.805006428918951, - "c7": 5.76819154076632 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066558, + "c3": 6.934812760055502, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022223, + "c7": 1.3869625520111115 }, "rgb": [58, 15, 49] }, @@ -309021,23 +309021,23 @@ "year": 1790, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -6.466136311301803, - "c2": -15.224453935441268, - "c3": 24.981824923215164, - "c4": -36.67214694139477, - "c5": 18.289096948779857, - "c6": 35.346948229081015, - "c7": -27.049482859849803 + "points": { + "c1": 30.437486012901097, + "c2": -17.86166673144129, + "c3": -17.058782219477454, + "c4": 9.699633165924801, + "c5": 20.187367167505336, + "c6": -9.39344139829732, + "c7": -30.01337571992459 }, - "vertexSeeds": { - "c1": 4.915715195641654, - "c2": 4.783189440528706, - "c3": 4.765046133653194, - "c4": 4.943621060536913, - "c5": 4.998318805655234, - "c6": 5.145244674049857, - "c7": 5.1121709165502836 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.46185852981969, + "c3": 6.218215441516422, + "c4": 4.974572353213134, + "c5": 3.730929264909845, + "c6": 2.487286176606567, + "c7": 1.2436430883032783 }, "rgb": [77, 76, 132] }, @@ -309048,23 +309048,23 @@ "year": 1790, "resistanceReported": true, "duration": 23241600, - "curveSeeds": { - "c1": 27.646031108616782, - "c2": -3.9560906375023244, - "c3": 9.434799447142062, - "c4": -3.636806814656314, - "c5": 11.369417278837055, - "c6": -11.718978129926608, - "c7": 33.67704559615846 + "points": { + "c1": 8.57104134543065, + "c2": 25.894474164631617, + "c3": 0.9555918904470317, + "c4": -19.41049906646923, + "c5": -16.19953512738961, + "c6": -24.782881350704763, + "c7": 0.5281257807729389 }, - "vertexSeeds": { - "c1": 2.405559784647641, - "c2": 2.4049752978569163, - "c3": 2.4219384164461535, - "c4": 2.4204212051465306, - "c5": 2.448105190681312, - "c6": 2.4435649918127744, - "c7": 2.4397278632108197 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228849, + "c3": 3.005085529357374, + "c4": 2.4040684234858993, + "c5": 1.8030513176144245, + "c6": 1.2020342117429497, + "c7": 0.6010171058714748 }, "rgb": [86, 146, 138] }, @@ -309075,23 +309075,23 @@ "year": 1791, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": 27.792509196031205, - "c2": -8.56468100648042, - "c3": 0.6623330082031131, - "c4": 3.1841641556776423, - "c5": -24.19455069388087, - "c6": 6.321515654999828, - "c7": -42.665843510616696 + "points": { + "c1": -20.912709826210005, + "c2": 3.404406779140082, + "c3": 48.29273960252965, + "c4": -7.523944427753392, + "c5": 23.438997259012808, + "c6": 38.088245185102764, + "c7": 17.257726824940733 }, - "vertexSeeds": { - "c1": 5.515380726774001, - "c2": 5.560269134694, - "c3": 5.6570954794644095, - "c4": 5.7142389008321715, - "c5": 5.419893285042255, - "c6": 5.240945809167334, - "c7": 5.35691548345466 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066567, + "c3": 6.93481276005548, + "c4": 5.547850208044378, + "c5": 4.160887656033292, + "c6": 2.773925104022189, + "c7": 1.386962552011103 }, "rgb": [86, 146, 138] }, @@ -309102,23 +309102,23 @@ "year": 1791, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": 14.444988139849073, - "c2": -16.11995344938142, - "c3": 32.35076690477738, - "c4": 9.339714379181387, - "c5": -33.80352723242616, - "c6": 23.100922407548047, - "c7": -28.7202173021807 + "points": { + "c1": 0.5779266977673387, + "c2": 15.13430941110952, + "c3": 18.383103982953862, + "c4": -39.938156244682034, + "c5": 41.02407147245453, + "c6": -12.770864849277444, + "c7": 0.828569856667059 }, - "vertexSeeds": { - "c1": 6.214179501921811, - "c2": 5.520877017559429, - "c3": 7.386459810974843, - "c4": 6.654609543557567, - "c5": 5.789132417642843, - "c6": 6.16405523712887, - "c7": 7.7715596281833115 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.15117891816921, + "c3": 9.29264909847434, + "c4": 7.434119278779478, + "c5": 5.575589459084608, + "c6": 3.717059639389739, + "c7": 1.8585298196948694 }, "rgb": [58, 15, 49] }, @@ -309129,23 +309129,23 @@ "year": 1790, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -35.82924955122767, - "c2": -4.946609761330947, - "c3": 1.8642033238247109, - "c4": 0.1165075613516251, - "c5": 14.876771859173708, - "c6": 39.482623695513084, - "c7": 16.58256737030876 + "points": { + "c1": -4.567533389231912, + "c2": -33.68147936611711, + "c3": -22.829490498275, + "c4": 35.469867304876544, + "c5": 15.476457062867176, + "c6": 15.698472335347013, + "c7": -37.29450935485499 }, - "vertexSeeds": { - "c1": 2.877472700857246, - "c2": 2.8586076459868455, - "c3": 3.01313520727652, - "c4": 3.021677690762627, - "c5": 2.867363114674971, - "c6": 2.9936694744049266, - "c7": 2.8921796914566436 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395283, + "c3": 3.6754507628294006, + "c4": 2.9403606102635185, + "c5": 2.205270457697636, + "c6": 1.4701803051317648, + "c7": 0.7350901525658824 }, "rgb": [77, 76, 132] }, @@ -309156,23 +309156,23 @@ "year": 1790, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 14.591124834720105, - "c2": 18.37538601522914, - "c3": 1.3599852632076477, - "c4": -40.58100274022478, - "c5": -2.3803916321621443, - "c6": -11.967509133569635, - "c7": 34.377678560537376 + "points": { + "c1": 10.598560023955642, + "c2": 29.179976213785807, + "c3": -9.499095967682756, + "c4": 6.759309895087178, + "c5": 44.70735783270938, + "c6": 28.324558303974683, + "c7": 35.451402246965344 }, - "vertexSeeds": { - "c1": 0.8387435612084665, - "c2": 0.833113244544627, - "c3": 0.8050232257286712, - "c4": 0.7933212952400737, - "c5": 0.7852430341852787, - "c6": 0.8269343047298633, - "c7": 0.8224313169069984 + "offsets": { + "c1": 1.4563106796116505, + "c2": 1.2482662968099856, + "c3": 1.0402219140083206, + "c4": 0.8321775312066577, + "c5": 0.6241331484049928, + "c6": 0.4160887656033278, + "c7": 0.20804438280166496 }, "rgb": [58, 15, 49] }, @@ -309183,23 +309183,23 @@ "year": 1790, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 20.89220882336008, - "c2": -36.36506880042169, - "c3": -3.6927713060594627, - "c4": 36.65393553644477, - "c5": 19.203254699511092, - "c6": 14.975317442248105, - "c7": -26.401310805566162 + "points": { + "c1": -5.469751502968357, + "c2": -26.807691540981065, + "c3": 27.536846151254927, + "c4": 10.09434349193274, + "c5": -11.158962586812791, + "c6": 37.33801503473722, + "c7": -13.095443999459615 }, - "vertexSeeds": { - "c1": 4.714972902399808, - "c2": 4.619263701444063, - "c3": 4.741313681813844, - "c4": 4.7240463846852325, - "c5": 4.540825287134146, - "c6": 4.806796851152262, - "c7": 4.638420729364776 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055484, + "c3": 5.7790106333795634, + "c4": 4.623208506703656, + "c5": 3.467406380027735, + "c6": 2.311604253351828, + "c7": 1.1558021266759209 }, "rgb": [86, 146, 138] }, @@ -309210,23 +309210,23 @@ "year": 1791, "resistanceReported": false, "duration": 48038400, - "curveSeeds": { - "c1": -35.17962383128357, - "c2": 5.192267241802632, - "c3": 52.10343893283984, - "c4": -14.876913160267165, - "c5": 61.438543428476784, - "c6": -12.238972896102965, - "c7": 39.60746183658862 + "points": { + "c1": 20.298773301463953, + "c2": 40.84963497563898, + "c3": -22.377713218850097, + "c4": -1.3753708875235944, + "c5": 40.02537742594522, + "c6": -37.47351303761814, + "c7": 56.435466083931615 }, - "vertexSeeds": { - "c1": 1.8755919777821868, - "c2": 1.9995668828403095, - "c3": 2.060966122716609, - "c4": 1.742895988762448, - "c5": 2.1082522231915766, - "c6": 1.9640949424721588, - "c7": 1.7755143887932898 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.542764678687008, + "c4": 2.0342117429496063, + "c5": 1.5256588072122037, + "c6": 1.0171058714748016, + "c7": 0.5085529357373996 }, "rgb": [238, 201, 159] }, @@ -309237,23 +309237,23 @@ "year": 1790, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 16.0646425000847, - "c2": -4.453430832481402, - "c3": 8.814402423311684, - "c4": -10.647436989209094, - "c5": 7.764702293577233, - "c6": 4.256326624547768, - "c7": -20.58512678181058 + "points": { + "c1": 7.729856236683389, + "c2": 21.999387480634134, + "c3": 9.316462777746239, + "c4": -22.225509833484093, + "c5": 9.491373534000886, + "c6": 12.05494285776009, + "c7": -15.567063500378083 }, - "vertexSeeds": { - "c1": 2.3023148559013418, - "c2": 2.2936261483705023, - "c3": 2.279623279339953, - "c4": 2.274393752770132, - "c5": 2.306802000771745, - "c6": 2.285677587782329, - "c7": 2.311300174257199 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266175, + "c3": 2.773925104022195, + "c4": 2.219140083217745, + "c5": 1.6643550624133225, + "c6": 1.1095700416088725, + "c7": 0.5547850208044225 }, "rgb": [238, 201, 159] }, @@ -309264,23 +309264,23 @@ "year": 1790, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 7.653509920645238, - "c2": -14.299987536725835, - "c3": -20.811517162320026, - "c4": 18.137057624564463, - "c5": -2.580762564785296, - "c6": -11.762307373488476, - "c7": 2.3391131066619337 + "points": { + "c1": 19.875514773716283, + "c2": -12.873025449332232, + "c3": 2.5224944944688588, + "c4": -8.334936405444104, + "c5": 14.093404121256889, + "c6": 8.020411229267879, + "c7": 11.966141861228891 }, - "vertexSeeds": { - "c1": 1.318588139199958, - "c2": 1.2377659264430487, - "c3": 1.1797556426215965, - "c4": 1.149205342625879, - "c5": 1.1901431658880186, - "c6": 1.2079056514824122, - "c7": 1.3286750581255664 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.941747572815534, + "c3": 1.618122977346278, + "c4": 1.2944983818770222, + "c5": 0.9708737864077661, + "c6": 0.6472491909385102, + "c7": 0.32362459546925426 }, "rgb": [86, 146, 138] }, @@ -309291,23 +309291,23 @@ "year": 1790, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -12.580080027059612, - "c2": 0.4063110542808275, - "c3": -21.906838235220842, - "c4": -4.182020649862785, - "c5": -17.824754012053113, - "c6": 3.218357934948081, - "c7": -22.853824797269745 + "points": { + "c1": 18.497241967370645, + "c2": 27.330875708382305, + "c3": 3.941029285280049, + "c4": -9.427046539635565, + "c5": 17.208199633345668, + "c6": -4.562429927594952, + "c7": -8.571884596391968 }, - "vertexSeeds": { - "c1": 5.217520330010458, - "c2": 5.4000233902349795, - "c3": 5.580502473085845, - "c4": 5.083254778906993, - "c5": 4.4813313595710795, - "c6": 5.51304988041244, - "c7": 5.4871534850658445 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664359, + "c3": 6.703652334720293, + "c4": 5.362921867776235, + "c5": 4.022191400832179, + "c6": 2.6814609338881175, + "c7": 1.340730466944057 }, "rgb": [77, 76, 132] }, @@ -309318,23 +309318,23 @@ "year": 1790, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 32.8592092623112, - "c2": 8.444237995300462, - "c3": -16.756798869126424, - "c4": -6.830076804109233, - "c5": -26.552690020332264, - "c6": -35.631078510690536, - "c7": -33.03996068162408 + "points": { + "c1": 11.90841657297269, + "c2": 18.054812378581865, + "c3": -25.138414850196824, + "c4": -23.029616616646063, + "c5": -34.69352529807782, + "c6": -15.959194816660439, + "c7": 32.910340342331594 }, - "vertexSeeds": { - "c1": 4.2842474052477, - "c2": 4.413374785769265, - "c3": 4.13992989188515, - "c4": 4.12743509946281, - "c5": 4.483671293899649, - "c6": 4.333935113927823, - "c7": 4.109030842760153 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331483, + "c3": 5.362921867776237, + "c4": 4.290337494220989, + "c5": 3.2177531206657415, + "c6": 2.1451687471104943, + "c7": 1.0725843735552472 }, "rgb": [86, 146, 138] }, @@ -309345,23 +309345,23 @@ "year": 1791, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -13.791507103938489, - "c2": 27.209735908506183, - "c3": 33.873419378452006, - "c4": -20.304454002601744, - "c5": 16.21712309519561, - "c6": -21.402572390513228, - "c7": -29.613674899216857 + "points": { + "c1": 32.13073358426538, + "c2": 17.706850641919573, + "c3": 30.107196358388926, + "c4": -3.4641003019342946, + "c5": -31.854393067411284, + "c6": -36.811088663168945, + "c7": -8.662627114664282 }, - "vertexSeeds": { - "c1": 7.671277865303857, - "c2": 7.848814764126363, - "c3": 7.800938717251923, - "c4": 7.625044843520528, - "c5": 7.479222792534676, - "c6": 7.792949752346791, - "c7": 7.808112186610318 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330108, + "c3": 9.385113268608409, + "c4": 7.508090614886739, + "c5": 5.631067961165041, + "c6": 3.7540453074433695, + "c7": 1.877022653721671 }, "rgb": [77, 76, 132] }, @@ -309372,23 +309372,23 @@ "year": 1790, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 2.37309922914163, - "c2": 28.628440007688095, - "c3": 28.04190440521376, - "c4": -27.38263744194315, - "c5": -2.5881992401921146, - "c6": -12.406448897117436, - "c7": -0.18784016484258714 + "points": { + "c1": -24.126681216983577, + "c2": 24.47806719104066, + "c3": 20.361589275159037, + "c4": -16.711699658791467, + "c5": -21.35602109536154, + "c6": 2.1329157877892264, + "c7": -20.744310995739653 }, - "vertexSeeds": { - "c1": 3.9797216693792303, - "c2": 4.222208083622542, - "c3": 4.181807859956477, - "c4": 4.156773405399808, - "c5": 4.122827836061353, - "c6": 4.163421423125994, - "c7": 4.2380661539818245 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.13037447988904, + "c3": 5.108645399907541, + "c4": 4.08691631992603, + "c5": 3.06518723994452, + "c6": 2.0434581599630204, + "c7": 1.0217290799815102 }, "rgb": [222, 0, 59] }, @@ -309399,23 +309399,23 @@ "year": 1790, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 5.991893350756982, - "c2": -27.394904792275277, - "c3": -4.2912303949094905, - "c4": 8.653130795229366, - "c5": 27.985303486258942, - "c6": -8.184185859077004, - "c7": -26.366460178767653 + "points": { + "c1": -0.11179416709842371, + "c2": -21.487334923271362, + "c3": -38.684497627954585, + "c4": -37.33967116723733, + "c5": 8.515831860981685, + "c6": 7.141149938323288, + "c7": -2.0760645134658304 }, - "vertexSeeds": { - "c1": 11.292317938910797, - "c2": 10.160167252563078, - "c3": 9.87045316903635, - "c4": 9.781170573334034, - "c5": 11.199882383962805, - "c6": 10.795247979181203, - "c7": 10.47646651850157 + "offsets": { + "c1": 18.867313915857604, + "c2": 16.17198335644937, + "c3": 13.476652797041138, + "c4": 10.781322237632905, + "c5": 8.0859916782247, + "c6": 5.390661118816466, + "c7": 2.695330559408233 }, "rgb": [58, 15, 49] }, @@ -309426,23 +309426,23 @@ "year": 1791, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 7.139688929766066, - "c2": -8.431854760181771, - "c3": 13.453125523390241, - "c4": -17.156413137676886, - "c5": 2.3663723985334357, - "c6": -27.52664600697534, - "c7": -12.077561556526852 + "points": { + "c1": -46.23732380069064, + "c2": -26.40103308129282, + "c3": 37.41761655375619, + "c4": 23.81055191873463, + "c5": 23.485698156558158, + "c6": -29.937694346901402, + "c7": 23.718901088175627 }, - "vertexSeeds": { - "c1": 4.346026289811473, - "c2": 4.346594580358233, - "c3": 4.36884124141726, - "c4": 4.344642454091449, - "c5": 4.351034152876097, - "c6": 4.3669028475084195, - "c7": 4.363050035313934 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090183, + "c3": 5.224225612575083, + "c4": 4.179380490060087, + "c5": 3.1345353675450913, + "c6": 2.0896902450300954, + "c7": 1.0448451225149957 }, "rgb": [58, 15, 49] }, @@ -309453,23 +309453,23 @@ "year": 1790, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -20.861818041143636, - "c2": 14.406366800596594, - "c3": 5.716251406260746, - "c4": -0.07741909480251152, - "c5": -2.468077758789331, - "c6": 7.3828107998023285, - "c7": -23.870196821776947 + "points": { + "c1": -12.317305205007424, + "c2": -12.843573794864652, + "c3": 16.602592466265357, + "c4": -5.193110254797212, + "c5": 24.649934768215253, + "c6": 13.28624119995694, + "c7": -16.494622590680237 }, - "vertexSeeds": { - "c1": 8.178722347425364, - "c2": 8.106537577206845, - "c3": 8.813017222492487, - "c4": 9.031103615866641, - "c5": 7.834356158517608, - "c6": 8.054318289409625, - "c7": 8.922186944909008 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783639, + "c3": 10.795191863153024, + "c4": 8.636153490522421, + "c5": 6.477115117891819, + "c6": 4.318076745261217, + "c7": 2.1590383726306017 }, "rgb": [222, 0, 59] }, @@ -309480,23 +309480,23 @@ "year": 1790, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 28.81502456319273, - "c2": 31.267783752266745, - "c3": 36.5863695958766, - "c4": -23.58083546181969, - "c5": -37.91576656598877, - "c6": 22.530691516463072, - "c7": 7.086229614176936 + "points": { + "c1": 0.13348409003974382, + "c2": 8.834242465786588, + "c3": 38.40791353445395, + "c4": -24.089281822890804, + "c5": -38.74528915372259, + "c6": 14.888577451014527, + "c7": -26.344732109677732 }, - "vertexSeeds": { - "c1": 4.028267641268792, - "c2": 3.684835270055248, - "c3": 3.8007973081898214, - "c4": 3.9198280676974897, - "c5": 3.885892997856802, - "c6": 4.026258820319485, - "c7": 3.7387183633779064 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446601, + "c3": 4.854368932038835, + "c4": 3.8834951456310676, + "c5": 2.9126213592233006, + "c6": 1.9417475728155338, + "c7": 0.9708737864077669 }, "rgb": [86, 146, 138] }, @@ -309507,23 +309507,23 @@ "year": 1791, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": 19.82731870817703, - "c2": 18.937066111273964, - "c3": -14.275574342994503, - "c4": -48.04922874482263, - "c5": 2.501475865602373, - "c6": 9.351151388308715, - "c7": 46.80944104574128 + "points": { + "c1": 23.647129310976098, + "c2": -18.23883468818562, + "c3": -44.34896134022781, + "c4": -28.96638772412426, + "c5": 0.9194781887111318, + "c6": -34.87118346892103, + "c7": -40.51219018107735 }, - "vertexSeeds": { - "c1": 7.323379032053166, - "c2": 7.438644487446797, - "c3": 7.361922083292922, - "c4": 7.426222615692638, - "c5": 7.5727996770415364, - "c6": 7.232186532415974, - "c7": 7.435700615742188 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962563, + "c3": 8.59916782246879, + "c4": 6.879334257975042, + "c5": 5.159500693481269, + "c6": 3.439667128987521, + "c7": 1.7198335644937732 }, "rgb": [238, 201, 159] }, @@ -309534,23 +309534,23 @@ "year": 1791, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 1.3693619982978547, - "c2": -25.405434648566164, - "c3": 23.406940910794965, - "c4": 41.714469125518626, - "c5": 36.42967615834606, - "c6": 46.08014074850775, - "c7": 18.551752595954746 + "points": { + "c1": 25.192079496613665, + "c2": 32.74910458989769, + "c3": 1.7019686706452433, + "c4": -10.79881743070569, + "c5": -30.779979530743663, + "c6": 54.21826154343048, + "c7": -24.208071546174207 }, - "vertexSeeds": { - "c1": 6.351870683065063, - "c2": 6.343071381277265, - "c3": 6.303626533345942, - "c4": 6.540962733620636, - "c5": 6.295740100907513, - "c6": 6.724863447752196, - "c7": 6.094067445573089 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077678, + "c3": 8.09061488673139, + "c4": 6.472491909385118, + "c5": 4.854368932038831, + "c6": 3.236245954692559, + "c7": 1.6181229773462884 }, "rgb": [58, 15, 49] }, @@ -309561,23 +309561,23 @@ "year": 1790, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 16.811851633505153, - "c2": 18.517872017460814, - "c3": -16.91115525993517, - "c4": 23.797132949228338, - "c5": 11.74641422982057, - "c6": 17.973557617773114, - "c7": -23.057454255508958 + "points": { + "c1": -4.428326148809752, + "c2": -13.78953660193431, + "c3": 26.7903730399722, + "c4": -18.909235347981664, + "c5": -16.399669494176322, + "c6": -12.86854416570822, + "c7": 14.150089156276604 }, - "vertexSeeds": { - "c1": 3.4715133328219325, - "c2": 3.363379102335001, - "c3": 3.529126807199467, - "c4": 3.815771035230573, - "c5": 3.5387532456777056, - "c6": 3.793679992671108, - "c7": 3.869115598870705 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124828, + "c3": 4.66944059177069, + "c4": 3.7355524734165537, + "c5": 2.801664355062411, + "c6": 1.867776236708274, + "c7": 0.933888118354137 }, "rgb": [222, 0, 59] }, @@ -309588,23 +309588,23 @@ "year": 1790, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -0.919550258264838, - "c2": -2.948518765637477, - "c3": 15.634528492939182, - "c4": 21.224435333403903, - "c5": 5.610756696443893, - "c6": 14.480515257376965, - "c7": 15.31486632745623 + "points": { + "c1": 7.630067358399614, + "c2": -18.417435640268035, + "c3": 18.912427539209446, + "c4": -16.641158341062685, + "c5": -20.718525167000667, + "c6": 7.837364519339964, + "c7": 13.438621789879022 }, - "vertexSeeds": { - "c1": 6.29077514753037, - "c2": 6.130091219238555, - "c3": 6.165000659925473, - "c4": 6.507954613300337, - "c5": 6.114460321464792, - "c6": 6.140467621675059, - "c7": 6.305075182688736 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635221, + "c3": 7.836338418862701, + "c4": 6.269070735090156, + "c5": 4.701803051317611, + "c6": 3.1345353675450913, + "c7": 1.5672676837725457 }, "rgb": [58, 15, 49] }, @@ -309615,23 +309615,23 @@ "year": 1790, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -27.294623067424496, - "c2": 24.714623884750758, - "c3": 17.465048014984454, - "c4": 19.022244839781614, - "c5": -25.65918208212296, - "c6": -14.33617147656371, - "c7": 21.27383433326488 + "points": { + "c1": -13.652246739902662, + "c2": 23.293646668976926, + "c3": -2.376569418971826, + "c4": -10.833836879190336, + "c5": 23.651374190445722, + "c6": -14.419843247589682, + "c7": -21.58924218040915 }, - "vertexSeeds": { - "c1": 3.1411039497957014, - "c2": 3.1140251336801312, - "c3": 3.047203839867126, - "c4": 3.22232905546803, - "c5": 3.170887746619999, - "c6": 3.0530741862673154, - "c7": 3.173367141794067 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [58, 15, 49] }, @@ -309642,23 +309642,23 @@ "year": 1790, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -7.650654578323293, - "c2": 8.27121013198381, - "c3": 4.81839272772422, - "c4": 5.285352798065901, - "c5": 2.12007868032374, - "c6": 14.539981521489537, - "c7": -5.236655321396476 + "points": { + "c1": 3.566153559247752, + "c2": 6.0738369928132165, + "c3": -12.67359777507435, + "c4": 14.722969205091829, + "c5": 2.857517080764975, + "c6": -9.847816304317377, + "c7": -8.312510454518453 }, - "vertexSeeds": { - "c1": 5.278055133801885, - "c2": 5.162584134651428, - "c3": 5.165435796452547, - "c4": 5.129044790727831, - "c5": 5.3509169865444, - "c6": 5.370724547626589, - "c7": 5.317768425454871 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543683, + "c3": 6.634304207119751, + "c4": 5.3074433656957964, + "c5": 3.9805825242718416, + "c6": 2.6537216828479093, + "c7": 1.3268608414239547 }, "rgb": [86, 146, 138] }, @@ -309669,23 +309669,23 @@ "year": 1790, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 30.58032283636875, - "c2": 27.52166028189764, - "c3": 32.082034809919776, - "c4": 38.325324414721194, - "c5": 1.6176854681182036, - "c6": -23.122795756973936, - "c7": -24.472580335060357 + "points": { + "c1": 32.959574292640426, + "c2": -39.17187598761812, + "c3": -23.882151896705526, + "c4": 20.381082746541907, + "c5": 25.433072016784408, + "c6": 43.305668176921, + "c7": 15.724246535650032 }, - "vertexSeeds": { - "c1": 4.73659205154592, - "c2": 5.024861689886896, - "c3": 5.0246516089074, - "c4": 4.732938475044744, - "c5": 4.953483376183684, - "c6": 4.97107149914903, - "c7": 4.846613943757484 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [222, 0, 59] }, @@ -309696,23 +309696,23 @@ "year": 1791, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 45.970181256359666, - "c2": 36.41049816479543, - "c3": 14.220639626965976, - "c4": 40.39563948653483, - "c5": 22.85108533698201, - "c6": -27.458640332937367, - "c7": -18.360030262896487 + "points": { + "c1": -21.494158081753973, + "c2": 22.658862679582228, + "c3": -16.21430487298386, + "c4": -51.47963618820648, + "c5": -0.1569864113529107, + "c6": 23.842010538462787, + "c7": -19.508257111326202 }, - "vertexSeeds": { - "c1": 4.394585386637266, - "c2": 4.351299790146229, - "c3": 4.313688579917961, - "c4": 4.1085930846964684, - "c5": 4.288461989189173, - "c6": 4.374851478348746, - "c7": 4.095730295562995 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.3522884882108155, + "c3": 5.293573740175686, + "c4": 4.234858992140547, + "c5": 3.1761442441054077, + "c6": 2.117429496070268, + "c7": 1.0587147480351395 }, "rgb": [58, 15, 49] }, @@ -309723,23 +309723,23 @@ "year": 1791, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -46.40348817331709, - "c2": -43.259553990548774, - "c3": 27.779615295565222, - "c4": 38.75824885050382, - "c5": 38.4209600797696, - "c6": -26.525280421098923, - "c7": 7.486451053633942 + "points": { + "c1": 43.356285359097086, + "c2": -3.482393793682519, + "c3": 0.5975378315773554, + "c4": 20.535911971196626, + "c5": -35.426612844552636, + "c6": -10.112108980455389, + "c7": -1.9594534431248576 }, - "vertexSeeds": { - "c1": 5.078158260212972, - "c2": 5.049977332581796, - "c3": 5.057524223328551, - "c4": 5.090684050742502, - "c5": 5.064531246439315, - "c6": 5.088298000227057, - "c7": 5.0413350935393195 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618619, + "c3": 6.102635228848769, + "c4": 4.88210818307904, + "c5": 3.6615811373093097, + "c6": 2.441054091539459, + "c7": 1.2205270457697295 }, "rgb": [238, 201, 159] }, @@ -309750,23 +309750,23 @@ "year": 1790, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -29.66858543725406, - "c2": -17.29350645914063, - "c3": -33.363648695429184, - "c4": 38.3176468581673, - "c5": 26.948906553254652, - "c6": -35.04325970880872, - "c7": 11.135247257781664 + "points": { + "c1": 10.982641966980282, + "c2": -38.39846701102934, + "c3": -34.05681349636149, + "c4": 36.51198791550639, + "c5": -33.40171632018183, + "c6": -14.104993442113418, + "c7": -10.223992075752214 }, - "vertexSeeds": { - "c1": 10.576847860262472, - "c2": 10.538312110830903, - "c3": 10.339422562164184, - "c4": 10.494403147434321, - "c5": 10.58577951973862, - "c6": 10.451428152501721, - "c7": 10.564984556152012 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961112, + "c3": 12.62135922330099, + "c4": 10.097087378640742, + "c5": 7.572815533980619, + "c6": 5.048543689320371, + "c7": 2.524271844660248 }, "rgb": [222, 0, 59] }, @@ -309777,23 +309777,23 @@ "year": 1790, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -13.060378747604195, - "c2": -3.35367923254789, - "c3": 18.33288899573798, - "c4": 7.8394149469065795, - "c5": -24.303163803448065, - "c6": 0.7815624302634632, - "c7": -18.46228988362386 + "points": { + "c1": -10.852049141480531, + "c2": 11.684390924712368, + "c3": -3.9443617247861162, + "c4": 9.277081392602454, + "c5": -5.347402162862199, + "c6": 8.127180514046337, + "c7": 10.416853502481793 }, - "vertexSeeds": { - "c1": 7.228627475677897, - "c2": 6.910404746094482, - "c3": 7.092167868849258, - "c4": 6.886781253685885, - "c5": 6.830197847844239, - "c6": 7.3896704375977595, - "c7": 6.927926755135075 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -309804,23 +309804,23 @@ "year": 1790, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 8.583813975839966, - "c2": 28.659567410101133, - "c3": 28.124505276321806, - "c4": -25.34746367675209, - "c5": 5.920973107319199, - "c6": 7.600020153392627, - "c7": 23.524047804716098 + "points": { + "c1": 20.795178016869123, + "c2": 1.6038955041357497, + "c3": 8.06733845761243, + "c4": 16.296625744000394, + "c5": 26.24969430121815, + "c6": 5.061879015475377, + "c7": -29.136956759577735 }, - "vertexSeeds": { - "c1": 4.166843096705968, - "c2": 4.027372335969561, - "c3": 3.9155733547879654, - "c4": 3.9324455610863014, - "c5": 4.191434418989507, - "c6": 4.140578078537971, - "c7": 3.9421641346172454 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.04715672676838, + "c3": 5.039297272306988, + "c4": 4.031437817845583, + "c5": 3.02357836338419, + "c6": 2.0157189089227976, + "c7": 1.007859454461405 }, "rgb": [238, 201, 159] }, @@ -309831,23 +309831,23 @@ "year": 1790, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -20.746899777612708, - "c2": 11.78633435424705, - "c3": -16.07053617569619, - "c4": 0.24820768527062853, - "c5": 10.867800307008626, - "c6": 11.374816218390382, - "c7": -5.479817851003176 + "points": { + "c1": -8.598608867717674, + "c2": -17.96874071109998, + "c3": -12.56433115051013, + "c4": 5.9525946122128275, + "c5": -2.813093005441779, + "c6": -24.09309494491733, + "c7": -11.895999563095126 }, - "vertexSeeds": { - "c1": 7.576955047910423, - "c2": 8.947097357330756, - "c3": 7.3417153459498685, - "c4": 9.237289555320114, - "c5": 8.202348873947532, - "c6": 7.614236829945774, - "c7": 8.954033849230303 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708739, + "c3": 11.326860841423949, + "c4": 9.061488673139161, + "c5": 6.796116504854373, + "c6": 4.530744336569577, + "c7": 2.2653721682847885 }, "rgb": [86, 146, 138] }, @@ -309858,23 +309858,23 @@ "year": 1790, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 22.413901303026428, - "c2": 19.004852628676936, - "c3": -28.88167755699966, - "c4": 21.135874594791268, - "c5": -5.302839434184037, - "c6": 9.739592645267471, - "c7": -11.425056477335179 + "points": { + "c1": -15.340459208217167, + "c2": 10.467891786314908, + "c3": 5.135827587861222, + "c4": 16.95773884673389, + "c5": -26.121968576893185, + "c6": 22.994085210709343, + "c7": -14.600242789229288 }, - "vertexSeeds": { - "c1": 1.6174293183093829, - "c2": 1.585326894022589, - "c3": 1.5453287650156964, - "c4": 1.5303207268736867, - "c5": 1.536557795144569, - "c6": 1.5705094917604143, - "c7": 1.582798332741536 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.441054091539529, + "c3": 2.0342117429496085, + "c4": 1.6273693943596834, + "c5": 1.2205270457697626, + "c6": 0.8136846971798417, + "c7": 0.40684234858992085 }, "rgb": [222, 0, 59] }, @@ -309885,23 +309885,23 @@ "year": 1790, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -34.02844828154124, - "c2": -17.49820175165335, - "c3": -1.0724484312819413, - "c4": -11.30531554329881, - "c5": 32.21797886117955, - "c6": 17.019005245304946, - "c7": -32.05454584815682 + "points": { + "c1": 0.9097523930477038, + "c2": 16.95490203378172, + "c3": 12.291835381074364, + "c4": -30.129053393238742, + "c5": 23.785965785714296, + "c6": -20.625340019673715, + "c7": -6.246022702462852 }, - "vertexSeeds": { - "c1": 9.951001100535915, - "c2": 9.75668517268969, - "c3": 9.959766516076272, - "c4": 9.948318980371754, - "c5": 10.391138483387703, - "c6": 10.378609395056325, - "c7": 10.598634422835229 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [222, 0, 59] }, @@ -309912,23 +309912,23 @@ "year": 1790, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 2.194539755238381, - "c2": 12.243584989092206, - "c3": -31.569560180961748, - "c4": -31.56714985953271, - "c5": 17.742785427872995, - "c6": -4.191639754300411, - "c7": 26.762827930975448 + "points": { + "c1": -10.512655098787974, + "c2": -33.843200239129125, + "c3": -20.7966585363495, + "c4": 8.27928632889003, + "c5": -33.79498861726981, + "c6": -27.98273354583302, + "c7": 9.977958466925756 }, - "vertexSeeds": { - "c1": 2.3755280736098423, - "c2": 2.330109170537018, - "c3": 2.3337042112127087, - "c4": 2.299525922834545, - "c5": 2.4669080364237574, - "c6": 2.2929026480739805, - "c7": 2.3527773375880146 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.717059639389739, + "c3": 3.097549699491446, + "c4": 2.478039759593156, + "c5": 1.8585298196948663, + "c6": 1.2390198797965797, + "c7": 0.6195099398982865 }, "rgb": [222, 0, 59] }, @@ -309939,23 +309939,23 @@ "year": 1790, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -24.836356893089047, - "c2": -6.793947008582748, - "c3": -37.222140099044324, - "c4": 35.24041353994376, - "c5": -22.82805962674107, - "c6": 39.42821058024697, - "c7": -22.48230318485477 + "points": { + "c1": -5.713078162203971, + "c2": -26.272886216443183, + "c3": -9.53519829640856, + "c4": -4.383121954869679, + "c5": -13.395694513461468, + "c6": -37.8829172766203, + "c7": 23.976864880994086 }, - "vertexSeeds": { - "c1": 5.8175506102157595, - "c2": 7.9805860324906295, - "c3": 6.027623367716153, - "c4": 8.059101728414213, - "c5": 6.915541959017871, - "c6": 5.927907764594261, - "c7": 6.385138511992367 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456309, + "c3": 10.032362459546926, + "c4": 8.02588996763754, + "c5": 6.019417475728154, + "c6": 4.01294498381877, + "c7": 2.006472491909385 }, "rgb": [238, 201, 159] }, @@ -309966,23 +309966,23 @@ "year": 1790, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -10.60242502608724, - "c2": -4.758812846532177, - "c3": -2.7827487629464187, - "c4": -22.92631875649616, - "c5": -8.146646680860826, - "c6": -11.964949473331131, - "c7": 23.984608275081108 + "points": { + "c1": 18.666426039864774, + "c2": 24.75663681162262, + "c3": 14.307171348221019, + "c4": 8.15669232622276, + "c5": -6.364766019815928, + "c6": 20.683545748353772, + "c7": 21.84004306079096 }, - "vertexSeeds": { - "c1": 5.419368616995318, - "c2": 5.6104805068221015, - "c3": 5.386388502292055, - "c4": 5.398045851318876, - "c5": 5.5099618266048855, - "c6": 5.251035944691304, - "c7": 5.499959406795799 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.726768377253824, + "c4": 5.381414701803054, + "c5": 4.036061026352285, + "c6": 2.6907073509015387, + "c7": 1.3453536754507693 }, "rgb": [77, 76, 132] }, @@ -309993,23 +309993,23 @@ "year": 1790, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 13.25821293350208, - "c2": 7.225473198195125, - "c3": 10.131671201348396, - "c4": -4.891223287305451, - "c5": 26.47510569661206, - "c6": 36.61298795264493, - "c7": 15.73796195348229 + "points": { + "c1": -6.142520956287534, + "c2": -3.598423776037599, + "c3": -18.641240900097102, + "c4": -5.629591140908303, + "c5": -14.096989748854902, + "c6": 21.470538411954855, + "c7": -19.017082216580864 }, - "vertexSeeds": { - "c1": 7.244257258058141, - "c2": 7.2379830385347965, - "c3": 7.49085283174087, - "c4": 7.282518975014125, - "c5": 7.685656089968439, - "c6": 7.666852203114985, - "c7": 7.8913971359226345 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490987, + "c3": 9.477577438742493, + "c4": 7.582061950993999, + "c5": 5.686546463245484, + "c6": 3.7910309754969886, + "c7": 1.8955154877484943 }, "rgb": [58, 15, 49] }, @@ -310020,23 +310020,23 @@ "year": 1790, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -10.949966277645679, - "c2": -9.344142380500909, - "c3": 2.269088910591364, - "c4": 24.275665576264277, - "c5": 26.421745310907713, - "c6": 7.359022507546168, - "c7": 15.299108279244063 + "points": { + "c1": -28.288914909677363, + "c2": -23.06246814773321, + "c3": -4.66037766305643, + "c4": 9.96759545019469, + "c5": 19.202694972104315, + "c6": 7.599045645166601, + "c7": -0.36995146551144487 }, - "vertexSeeds": { - "c1": 5.611972070583932, - "c2": 5.535117710955531, - "c3": 5.667909734509825, - "c4": 5.5710807777158955, - "c5": 5.888685247449527, - "c6": 5.688687547990079, - "c7": 5.8470926719170855 + "offsets": { + "c1": 10, + "c2": 8.57142857142857, + "c3": 7.142857142857136, + "c4": 5.714285714285705, + "c5": 4.285714285714273, + "c6": 2.857142857142864, + "c7": 1.428571428571432 }, "rgb": [77, 76, 132] }, @@ -310047,23 +310047,23 @@ "year": 1791, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -40.46059935604801, - "c2": -13.20651457319558, - "c3": 13.725752145945009, - "c4": 12.550966843876452, - "c5": -7.996442961432919, - "c6": -12.836319708523856, - "c7": 38.46935929550267 + "points": { + "c1": -28.16706179967281, + "c2": -5.008388171358703, + "c3": 7.57567990121828, + "c4": -22.61033750584927, + "c5": 1.572069485540709, + "c6": 0.7149208443140012, + "c7": 38.522801921009844 }, - "vertexSeeds": { - "c1": 6.305210381308757, - "c2": 5.773256300142208, - "c3": 5.25312779764799, - "c4": 6.530016028102262, - "c5": 7.066405722901475, - "c6": 5.884767503881734, - "c7": 5.419144598672928 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [58, 15, 49] }, @@ -310074,23 +310074,23 @@ "year": 1791, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -7.901335780143931, - "c2": 25.300272077753135, - "c3": 10.271707572288996, - "c4": 16.70962558479974, - "c5": -4.347911101412734, - "c6": 40.152688031989356, - "c7": -6.340281728857342 + "points": { + "c1": -5.568689858766902, + "c2": 51.96455158989434, + "c3": -15.319714184647566, + "c4": -1.8141988393505386, + "c5": 35.80366084736674, + "c6": -34.75950474352517, + "c7": 9.665625732662363 }, - "vertexSeeds": { - "c1": 11.63860103626943, - "c2": 11.63860103626943, - "c3": 11.63860103626943, - "c4": 11.63860103626943, - "c5": 11.63860103626943, - "c6": 11.63860103626943, - "c7": 11.63860103626943 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -310101,23 +310101,23 @@ "year": 1791, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 31.57559501811918, - "c2": -12.883904651244304, - "c3": 24.771886162811164, - "c4": -31.157648093391394, - "c5": 26.45936789654761, - "c6": -39.09243298689715, - "c7": -0.06380310489902286 + "points": { + "c1": 42.791728590496085, + "c2": -25.572282691107212, + "c3": -14.412579691892958, + "c4": -27.297018937880168, + "c5": -18.959894547825563, + "c6": 34.894616929232576, + "c7": -10.721535315893831 }, - "vertexSeeds": { - "c1": 6.856774024388807, - "c2": 6.735328053885345, - "c3": 6.622873244214701, - "c4": 6.7558534500611005, - "c5": 6.794698148482397, - "c6": 6.659145062740629, - "c7": 6.8262518626135025 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319008, + "c3": 8.229311141932513, + "c4": 6.583448913546019, + "c5": 4.937586685159483, + "c6": 3.291724456772989, + "c7": 1.6458622283864945 }, "rgb": [77, 76, 132] }, @@ -310128,23 +310128,23 @@ "year": 1791, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -4.2120470572158695, - "c2": -5.923165709621308, - "c3": -19.677558372012314, - "c4": 18.343052867107595, - "c5": 24.16688114614928, - "c6": -39.882115851525874, - "c7": 7.407788013101815 + "points": { + "c1": -16.17874335064658, + "c2": -36.24699771318938, + "c3": -33.31893039619264, + "c4": -19.60105977103257, + "c5": 2.9479811743983504, + "c6": -37.305551684512196, + "c7": 31.18956820357785 }, - "vertexSeeds": { - "c1": 8.966587268738378, - "c2": 8.735376137568949, - "c3": 9.317600269732816, - "c4": 8.77625083237474, - "c5": 9.038264357765122, - "c6": 8.591375379564957, - "c7": 8.848744904276582 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.42579750346741, + "c3": 11.188164586222843, + "c4": 8.950531668978279, + "c5": 6.712898751733714, + "c6": 4.47526583448913, + "c7": 2.237632917244565 }, "rgb": [238, 201, 159] }, @@ -310155,23 +310155,23 @@ "year": 1790, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 22.119528097895568, - "c2": 12.52737708689385, - "c3": -0.20648348906881608, - "c4": -5.945096834321561, - "c5": 36.669355455014454, - "c6": -17.804624959649054, - "c7": 32.408006299962494 + "points": { + "c1": -20.036226285297236, + "c2": -22.596389677754868, + "c3": -34.474278378363024, + "c4": -36.591079964211346, + "c5": -27.218012084073067, + "c6": 26.767518601611798, + "c7": -14.736647694875305 }, - "vertexSeeds": { - "c1": 8.936536954495546, - "c2": 8.810139554042966, - "c3": 8.89998494472055, - "c4": 8.782491559646633, - "c5": 8.956786292040487, - "c6": 8.785531005530814, - "c7": 8.888481936606217 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582538, + "c3": 10.679611650485464, + "c4": 8.54368932038839, + "c5": 6.407766990291222, + "c6": 4.271844660194148, + "c7": 2.135922330097074 }, "rgb": [238, 201, 159] }, @@ -310182,23 +310182,23 @@ "year": 1790, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 0.3461765086269466, - "c2": -20.272424020160145, - "c3": 19.58254774071282, - "c4": -30.877619582527288, - "c5": 27.654845326992465, - "c6": -35.39329006423974, - "c7": -1.4638588760146334 + "points": { + "c1": -30.888266987449, + "c2": 32.058976920865796, + "c3": 15.836600343183981, + "c4": -37.97848044443411, + "c5": 14.24326739874396, + "c6": 24.133940709251014, + "c7": -32.70773240697242 }, - "vertexSeeds": { - "c1": 15.223597113183027, - "c2": 12.876322273339332, - "c3": 11.945249780544557, - "c4": 14.680799676487048, - "c5": 13.067293346166814, - "c6": 12.435943168783131, - "c7": 11.898362346672819 + "offsets": { + "c1": 25.76051779935275, + "c2": 22.080443828016644, + "c3": 18.400369856680538, + "c4": 14.720295885344429, + "c5": 11.040221914008322, + "c6": 7.3601479426722145, + "c7": 3.6800739713361073 }, "rgb": [77, 76, 132] }, @@ -310209,23 +310209,23 @@ "year": 1790, "resistanceReported": true, "duration": 20822400, - "curveSeeds": { - "c1": 5.948905395054524, - "c2": -12.554693116502477, - "c3": 8.298709649778935, - "c4": 21.110838358369897, - "c5": -20.955083070653224, - "c6": -6.296658605404122, - "c7": 3.7357946637643877 + "points": { + "c1": -23.558113498849966, + "c2": 4.331393220792627, + "c3": 20.214117967147374, + "c4": 16.78255380012498, + "c5": -14.511512692578826, + "c6": -19.939810432687324, + "c7": -32.93767965300223 }, - "vertexSeeds": { - "c1": 2.313437495667822, - "c2": 2.372847986223754, - "c3": 2.459461967896056, - "c4": 1.887960177289804, - "c5": 2.2531919689183706, - "c6": 2.329178986698997, - "c7": 2.176215115522082 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484043, + "c3": 2.958853444290337, + "c4": 2.367082755432269, + "c5": 1.7753120665742013, + "c6": 1.1835413777161354, + "c7": 0.5917706888580677 }, "rgb": [238, 201, 159] }, @@ -310236,23 +310236,23 @@ "year": 1790, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 24.595111535577487, - "c2": 6.5160977479122195, - "c3": 0.7566776076841037, - "c4": -9.19330909390494, - "c5": 32.23091346743885, - "c6": -23.740657731753327, - "c7": 2.089420240246284 + "points": { + "c1": 18.522915047223286, + "c2": -2.9532581748408546, + "c3": -23.339326391997332, + "c4": -8.579670888685612, + "c5": 18.428561237507004, + "c6": -35.46138996266534, + "c7": 24.020138542707826 }, - "vertexSeeds": { - "c1": 1.1145444601671146, - "c2": 1.131607484350611, - "c3": 0.942588068287491, - "c4": 0.9198014721903482, - "c5": 0.9502104062677298, - "c6": 0.931047787471872, - "c7": 1.1823363722218958 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937588, + "c3": 1.433194637078132, + "c4": 1.1465557096625054, + "c5": 0.859916782246879, + "c6": 0.5732778548312533, + "c7": 0.28663892741562663 }, "rgb": [77, 76, 132] }, @@ -310263,23 +310263,23 @@ "year": 1790, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -6.995419098913466, - "c2": 20.96887937445426, - "c3": 5.54889586084289, - "c4": 10.924447974506087, - "c5": 7.532682289584351, - "c6": -15.507986097881176, - "c7": -6.269541511032948 + "points": { + "c1": -30.121587129445544, + "c2": -13.273751536786332, + "c3": 12.854852406844294, + "c4": 30.381132791872275, + "c5": 24.179551361326084, + "c6": -26.624001331782225, + "c7": 9.519135867035374 }, - "vertexSeeds": { - "c1": 2.065057299422397, - "c2": 2.0969218619647254, - "c3": 2.0501747167391535, - "c4": 2.1332086151316108, - "c5": 2.1944380572693656, - "c6": 2.120124958230256, - "c7": 2.06450862590835 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185853, + "c3": 2.6352288488210855, + "c4": 2.1081830790568645, + "c5": 1.58113730929265, + "c6": 1.0540915395284354, + "c7": 0.5270457697642145 }, "rgb": [222, 0, 59] }, @@ -310290,23 +310290,23 @@ "year": 1791, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 42.09085930000372, - "c2": 15.253103377834087, - "c3": -31.889781523777636, - "c4": 15.7361162472545, - "c5": -2.4492313965499264, - "c6": -10.716167754782738, - "c7": -7.939495740353671 + "points": { + "c1": -11.66501249134307, + "c2": 30.18049148515872, + "c3": 26.26186142457197, + "c4": -25.397640886984984, + "c5": 16.45710411083281, + "c6": -38.309127407382725, + "c7": -38.05125888865138 }, - "vertexSeeds": { - "c1": 6.168137118160793, - "c2": 6.067422449111606, - "c3": 6.035090967903101, - "c4": 5.874253475476414, - "c5": 5.957383328342502, - "c6": 6.222948955057559, - "c7": 5.84601844698627 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951443, + "c3": 7.443365695792884, + "c4": 5.954692556634297, + "c5": 4.466019417475736, + "c6": 2.9773462783171487, + "c7": 1.4886731391585875 }, "rgb": [58, 15, 49] }, @@ -310317,23 +310317,23 @@ "year": 1790, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 18.568192395413114, - "c2": 11.028964654822794, - "c3": 14.910982138504721, - "c4": 31.23533274803723, - "c5": -7.680219450715423, - "c6": 28.195128142710097, - "c7": 3.520681006797602 + "points": { + "c1": -39.64942727605627, + "c2": 18.23496747548066, + "c3": -2.3544911150193, + "c4": -18.596082693094356, + "c5": 27.31002431414091, + "c6": 6.660886176891147, + "c7": 23.765653011532976 }, - "vertexSeeds": { - "c1": 4.156774711675257, - "c2": 4.0867103757545, - "c3": 4.0334426070760925, - "c4": 3.872547855561867, - "c5": 4.028113989806218, - "c6": 3.928217812656156, - "c7": 4.026554282244242 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647713, + "c3": 4.969949144706431, + "c4": 3.975959315765147, + "c5": 2.9819694868238633, + "c6": 1.987979657882567, + "c7": 0.9939898289412835 }, "rgb": [77, 76, 132] }, @@ -310344,23 +310344,23 @@ "year": 1790, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 20.891188070397476, - "c2": 31.256769044210273, - "c3": -16.837990042626, - "c4": -31.693781863331292, - "c5": -27.710557650567782, - "c6": -6.423825747866239, - "c7": -36.23918218106413 + "points": { + "c1": 3.8362304315958298, + "c2": 6.339317059053371, + "c3": -35.38503742443512, + "c4": 1.2304259369840693, + "c5": 19.624697923513246, + "c6": -28.01051307000434, + "c7": 35.30580892026691 }, - "vertexSeeds": { - "c1": 5.593327194457017, - "c2": 5.2027250740467474, - "c3": 5.256106864200054, - "c4": 5.532467634693, - "c5": 5.7249438956060255, - "c6": 5.503627788519555, - "c7": 5.239478736365661 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026349, + "c3": 6.9116967175219655, + "c4": 5.529357374017571, + "c5": 4.147018030513174, + "c6": 2.764678687008779, + "c7": 1.3823393435043954 }, "rgb": [222, 0, 59] }, @@ -310371,23 +310371,23 @@ "year": 1790, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 27.988185948211765, - "c2": 12.93576377687264, - "c3": -25.149869993476365, - "c4": -30.809854256077877, - "c5": -10.062834814472847, - "c6": 19.21471064823139, - "c7": 31.65682238479286 + "points": { + "c1": -23.26503759314818, + "c2": -0.2369259025410173, + "c3": 26.23410825681107, + "c4": 11.632902694104779, + "c5": -36.395250551628, + "c6": -21.039266174575374, + "c7": 24.231429409900706 }, - "vertexSeeds": { - "c1": 17.330490857929252, - "c2": 16.63134870402896, - "c3": 17.435007676586256, - "c4": 16.69699337724885, - "c5": 17.30049401840581, - "c6": 16.829462670239703, - "c7": 17.21019869740623 + "offsets": { + "c1": 30.355987055016183, + "c2": 26.019417475728154, + "c3": 21.68284789644013, + "c4": 17.346278317152102, + "c5": 13.009708737864077, + "c6": 8.673139158576051, + "c7": 4.3365695792880254 }, "rgb": [58, 15, 49] }, @@ -310398,23 +310398,23 @@ "year": 1791, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -31.020873427756985, - "c2": 29.036654058652204, - "c3": -40.51531262332985, - "c4": -15.58759792348311, - "c5": 15.720767273740286, - "c6": -1.2336844426599356, - "c7": 11.809277482970565 + "points": { + "c1": -34.33462298913088, + "c2": -49.60338870885998, + "c3": -15.42047101932868, + "c4": -6.1263414935922285, + "c5": 6.931957070267401, + "c6": 6.413520149726821, + "c7": -40.363872537282276 }, - "vertexSeeds": { - "c1": 7.30564761313331, - "c2": 7.383760394719084, - "c3": 6.971677156164782, - "c4": 6.957898263078332, - "c5": 7.088587603010859, - "c6": 7.061992675412957, - "c7": 7.3793233107031435 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077676, + "c3": 8.090614886731384, + "c4": 6.472491909385111, + "c5": 4.854368932038838, + "c6": 3.2362459546925657, + "c7": 1.6181229773462726 }, "rgb": [58, 15, 49] }, @@ -310425,23 +310425,23 @@ "year": 1790, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -21.063610171344898, - "c2": 27.391214679837617, - "c3": -26.538821025889845, - "c4": -20.188657929263194, - "c5": 9.140616956517356, - "c6": -4.548673046603053, - "c7": -6.317156505767613 + "points": { + "c1": 26.048477954680727, + "c2": 37.86204183246718, + "c3": -21.72865110621603, + "c4": -17.561592448943536, + "c5": -0.3718180876910324, + "c6": -4.242500801796687, + "c7": 6.181765393155381 }, - "vertexSeeds": { - "c1": 9.674644761490889, - "c2": 9.62891063257215, - "c3": 10.571096687444967, - "c4": 10.164327753030353, - "c5": 10.354745843453536, - "c6": 10.219165685537533, - "c7": 9.454172153535426 + "offsets": { + "c1": 18.7378640776699, + "c2": 16.061026352288483, + "c3": 13.384188626907061, + "c4": 10.707350901525665, + "c5": 8.030513176144247, + "c6": 5.353675450762827, + "c7": 2.676837725381408 }, "rgb": [238, 201, 159] }, @@ -310452,23 +310452,23 @@ "year": 1791, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 41.717007649726426, - "c2": 42.83671784844722, - "c3": 31.351415633529243, - "c4": 0.695721747398629, - "c5": 12.880008608934624, - "c6": 4.465533615687271, - "c7": 22.32271705930735 + "points": { + "c1": -21.7083838770844, + "c2": 25.08388810614761, + "c3": 44.961981494844466, + "c4": -32.55164093868638, + "c5": 33.348665512423494, + "c6": 6.7345218617197915, + "c7": 9.694153386546589 }, - "vertexSeeds": { - "c1": 5.957787754189466, - "c2": 6.865303757660472, - "c3": 7.293803160101474, - "c4": 7.3625719401676655, - "c5": 6.477852606648341, - "c6": 7.184909170378058, - "c7": 7.297547103793987 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852984, + "c3": 9.685621821544155, + "c4": 7.7484974572353265, + "c5": 5.811373092926492, + "c6": 3.8742487286176632, + "c7": 1.9371243643088343 }, "rgb": [222, 0, 59] }, @@ -310479,23 +310479,23 @@ "year": 1791, "resistanceReported": false, "duration": 54000000, - "curveSeeds": { - "c1": -10.59028682525318, - "c2": 50.42935958521163, - "c3": -54.85055042288302, - "c4": -13.549389311332405, - "c5": -36.54284070570289, - "c6": 3.0432934582997717, - "c7": -24.02620139627922 + "points": { + "c1": -17.616623966850774, + "c2": -19.50946981561058, + "c3": 37.80426296601705, + "c4": -53.14702502803601, + "c5": -56.124309369030044, + "c6": 46.75218147185838, + "c7": 47.788406280174996 }, - "vertexSeeds": { - "c1": 4.686885689203902, - "c2": 4.773657486029592, - "c3": 4.769104180574246, - "c4": 4.778255598227372, - "c5": 4.800825764206016, - "c6": 4.699012569539509, - "c7": 4.804993344128102 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055488, + "c3": 5.779010633379562, + "c4": 4.623208506703659, + "c5": 3.4674063800277324, + "c6": 2.3116042533518293, + "c7": 1.155802126675903 }, "rgb": [77, 76, 132] }, @@ -310506,23 +310506,23 @@ "year": 1790, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 22.081347575257805, - "c2": 25.913646781625598, - "c3": 15.223346203360602, - "c4": -1.9181553281309718, - "c5": 20.081760468298743, - "c6": 1.436596802027367, - "c7": -3.4275535281214715 + "points": { + "c1": 24.92401964954693, + "c2": -28.453597844114306, + "c3": -14.97550398552051, + "c4": 14.701855720316264, + "c5": 9.98974811887975, + "c6": 22.070637904058554, + "c7": -2.225775503702188 }, - "vertexSeeds": { - "c1": 4.530042055697496, - "c2": 4.654069170519683, - "c3": 4.456838041129436, - "c4": 4.599861792018548, - "c5": 4.736174168871338, - "c6": 4.649092672914035, - "c7": 4.648230442111575 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015257, + "c3": 5.755894590846048, + "c4": 4.604715672676838, + "c5": 3.4535367545076285, + "c6": 2.302357836338419, + "c7": 1.1511789181692096 }, "rgb": [58, 15, 49] }, @@ -310533,23 +310533,23 @@ "year": 1790, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -30.047730838111207, - "c2": -14.99029848002986, - "c3": 3.6668961871326076, - "c4": -22.913127372732248, - "c5": 1.096851231580466, - "c6": 3.7432215003687332, - "c7": -32.17886858871509 + "points": { + "c1": -20.131869007222807, + "c2": 7.317083302347974, + "c3": -4.826206836540344, + "c4": -25.74929556015769, + "c5": 9.45207310174331, + "c6": 34.94824935781759, + "c7": 33.478549774633834 }, - "vertexSeeds": { - "c1": 5.585614248272201, - "c2": 5.53557072323643, - "c3": 5.518756587611294, - "c4": 5.603030974590419, - "c5": 5.618201525248751, - "c6": 5.617803354094776, - "c7": 5.592011015480905 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825252, + "c3": 6.7961165048543855, + "c4": 5.436893203883521, + "c5": 4.077669902912596, + "c6": 2.7184466019417304, + "c7": 1.3592233009708652 }, "rgb": [58, 15, 49] }, @@ -310560,23 +310560,23 @@ "year": 1790, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -30.68560029178132, - "c2": -28.268352157616057, - "c3": 16.015759828195087, - "c4": 34.42515021171296, - "c5": 32.24947473327613, - "c6": -5.131861242363186, - "c7": -17.96913658029846 + "points": { + "c1": -3.6195266129874355, + "c2": 33.294491066198006, + "c3": -12.9469360901235, + "c4": 10.998150743740062, + "c5": -17.92860752008489, + "c6": 19.789826429277632, + "c7": -5.595701209131178 }, - "vertexSeeds": { - "c1": 7.837122928313379, - "c2": 7.3868707370926, - "c3": 7.320207102338561, - "c4": 7.930343232444697, - "c5": 7.347107216164347, - "c6": 7.836646060305316, - "c7": 8.356298584050382 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.06657420249653, + "c3": 10.05547850208044, + "c4": 8.04438280166435, + "c5": 6.03328710124826, + "c6": 4.02219140083218, + "c7": 2.0110957004160794 }, "rgb": [58, 15, 49] }, @@ -310587,23 +310587,23 @@ "year": 1790, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 19.430504596700608, - "c2": 10.172569784973504, - "c3": 15.588309076315717, - "c4": 14.05540998075773, - "c5": 14.073286579774894, - "c6": -2.3782846008238323, - "c7": -7.922381232636685 + "points": { + "c1": -6.231744629015864, + "c2": 5.942682944104966, + "c3": 0.3149202669076878, + "c4": -23.487640850599778, + "c5": 24.182619871724576, + "c6": 26.71478073359865, + "c7": 9.726241085608464 }, - "vertexSeeds": { - "c1": 6.244800773627844, - "c2": 5.883047140179979, - "c3": 6.005141032891444, - "c4": 6.236497608392775, - "c5": 5.991565890432329, - "c6": 6.31000699990315, - "c7": 6.212561085029828 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [77, 76, 132] }, @@ -310614,23 +310614,23 @@ "year": 1791, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": -28.146047524623665, - "c2": 17.24752185773336, - "c3": -8.372251052961587, - "c4": 42.14923008127235, - "c5": 13.80238535909642, - "c6": -37.51813023125547, - "c7": -2.767398211782222 + "points": { + "c1": -6.983350015646828, + "c2": 23.834895099203948, + "c3": 25.807904385385953, + "c4": 45.07164571449397, + "c5": 54.295500642926555, + "c6": 17.021015547177072, + "c7": 5.815879411382042 }, - "vertexSeeds": { - "c1": 5.054503464338784, - "c2": 5.2517041823320225, - "c3": 5.385901928361191, - "c4": 5.146124472947192, - "c5": 5.507864274534118, - "c6": 5.5368455261959815, - "c7": 5.0711689168816 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624135, + "c3": 6.6805362921867815, + "c4": 5.344429033749428, + "c5": 4.00832177531206, + "c6": 2.6722145168747073, + "c7": 1.3361072584373537 }, "rgb": [86, 146, 138] }, @@ -310641,23 +310641,23 @@ "year": 1790, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 2.419231683456566, - "c2": 28.927368752277005, - "c3": 8.295015967861431, - "c4": -25.756667519334783, - "c5": 28.11704285101343, - "c6": -1.9604228704428692, - "c7": 6.30378063055943 + "points": { + "c1": 20.06322576926717, + "c2": 33.957838149889156, + "c3": -23.506075381462892, + "c4": 26.97138273794713, + "c5": -20.15754041970426, + "c6": 27.401778128902848, + "c7": -15.003652257378569 }, - "vertexSeeds": { - "c1": 1.4136236076030353, - "c2": 1.4878138081384653, - "c3": 1.4584752356012944, - "c4": 1.427250941339983, - "c5": 1.5061185575309954, - "c6": 1.3903941852392392, - "c7": 1.420525855682391 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257977, + "c3": 1.8723994452149788, + "c4": 1.4979195561719845, + "c5": 1.1234396671289864, + "c6": 0.7489597780859922, + "c7": 0.3744798890429941 }, "rgb": [222, 0, 59] }, @@ -310668,23 +310668,23 @@ "year": 1791, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 34.89029321567362, - "c2": -25.43251984511661, - "c3": 25.54270549565942, - "c4": 33.577609727395796, - "c5": -17.16338870227713, - "c6": -16.594580055490553, - "c7": -5.344710969957369 + "points": { + "c1": 9.3052135960992, + "c2": 32.16374784770355, + "c3": 10.599149635770694, + "c4": -3.767626551840273, + "c5": 1.8977922997005479, + "c6": -8.424204795564108, + "c7": -42.833369249722594 }, - "vertexSeeds": { - "c1": 7.850888180290842, - "c2": 7.997241242478199, - "c3": 7.694728378036473, - "c4": 7.654960460213406, - "c5": 7.768848755644824, - "c6": 7.69327286116671, - "c7": 7.921408557160863 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651887, + "c3": 9.570041608876554, + "c4": 7.656033287101259, + "c5": 5.742024965325925, + "c6": 3.8280166435506295, + "c7": 1.9140083217752955 }, "rgb": [238, 201, 159] }, @@ -310695,23 +310695,23 @@ "year": 1790, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 9.128688934512304, - "c2": 17.740676682166836, - "c3": 9.163616840786915, - "c4": 5.548456837755602, - "c5": 26.22001899585647, - "c6": -32.99668700805063, - "c7": -30.012103542923086 + "points": { + "c1": 2.84542505947897, + "c2": 16.63338006475481, + "c3": -35.05783241379491, + "c4": 30.222700554336342, + "c5": 33.426567236968296, + "c6": -12.860663391172611, + "c7": -7.465945929128015 }, - "vertexSeeds": { - "c1": 5.3685369666472615, - "c2": 5.376454927010034, - "c3": 5.682072471458343, - "c4": 5.647287576668256, - "c5": 5.8025230303487705, - "c6": 5.591705447874796, - "c7": 5.385784493799874 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147023, + "c3": 6.981044845122505, + "c4": 5.584835876098008, + "c5": 4.188626907073512, + "c6": 2.7924179380489935, + "c7": 1.3962089690244968 }, "rgb": [222, 0, 59] }, @@ -310722,23 +310722,23 @@ "year": 1790, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": -5.805709242734105, - "c2": -3.6497613858833624, - "c3": -19.04890401312047, - "c4": 18.723130132794534, - "c5": 14.904162451364474, - "c6": 4.326572898137705, - "c7": 7.199026274134294 + "points": { + "c1": 9.622136662532359, + "c2": 20.43330707858762, + "c3": -11.471099660321936, + "c4": -17.134864103361416, + "c5": -12.036360912236617, + "c6": 16.11870387998916, + "c7": 0.8515710798432075 }, - "vertexSeeds": { - "c1": 1.4024941535144333, - "c2": 1.4452772364302642, - "c3": 1.502105968228453, - "c4": 1.4182939890396693, - "c5": 1.4410201301048993, - "c6": 1.5280112597968838, - "c7": 1.4080371380941892 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177535, + "c3": 1.8492834026814613, + "c4": 1.479426722145169, + "c5": 1.1095700416088767, + "c6": 0.7397133610725845, + "c7": 0.3698566805362922 }, "rgb": [77, 76, 132] }, @@ -310749,23 +310749,23 @@ "year": 1791, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -5.209858375161467, - "c2": 30.03775918724793, - "c3": 14.46236509791683, - "c4": 1.2897765866851643, - "c5": 4.51218580707441, - "c6": -26.734286360590094, - "c7": -24.48094199355636 + "points": { + "c1": -22.32652573676507, + "c2": -33.246370652715584, + "c3": 20.546299241580684, + "c4": -7.590517748425768, + "c5": -17.865858680022825, + "c6": 5.113762541175333, + "c7": -29.37182881155136 }, - "vertexSeeds": { - "c1": 6.205289520803743, - "c2": 6.278696961020973, - "c3": 6.31711739915244, - "c4": 6.245010915323039, - "c5": 6.054612347770031, - "c6": 6.304596286111564, - "c7": 6.088928800024433 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434112, + "c3": 7.72075820619511, + "c4": 6.176606564956082, + "c5": 4.632454923717056, + "c6": 3.0883032824780288, + "c7": 1.5441516412390273 }, "rgb": [238, 201, 159] }, @@ -310776,23 +310776,23 @@ "year": 1790, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 7.316329095957013, - "c2": 16.765012238468845, - "c3": 6.640308088415541, - "c4": -10.760833577241714, - "c5": 20.57952552272808, - "c6": -5.795281807704249, - "c7": -15.706025407422267 + "points": { + "c1": 1.0775816095763595, + "c2": 23.026277126107406, + "c3": -20.432210245174314, + "c4": 27.704306714218585, + "c5": -20.857871948724593, + "c6": -28.133222101146128, + "c7": -21.183015334273307 }, - "vertexSeeds": { - "c1": 7.544905402581774, - "c2": 7.720220105074386, - "c3": 7.619773125035731, - "c4": 6.834137619570941, - "c5": 6.723807748158725, - "c6": 7.368833052577818, - "c7": 8.189909517381588 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134537, + "c3": 9.847434119278777, + "c4": 7.877947295423023, + "c5": 5.908460471567269, + "c6": 3.9389736477115074, + "c7": 1.9694868238557537 }, "rgb": [58, 15, 49] }, @@ -310803,23 +310803,23 @@ "year": 1791, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -36.23673344574239, - "c2": -12.090678910388391, - "c3": -17.995552581201427, - "c4": 37.49232438086419, - "c5": -11.139165719288904, - "c6": -16.873441556732356, - "c7": 21.499954582682406 + "points": { + "c1": -31.186997988725818, + "c2": -12.3099261635898, + "c3": -3.2010987454315867, + "c4": 5.671132673688234, + "c5": 19.255453114427873, + "c6": 9.704155437691448, + "c7": 2.989268230595755 }, - "vertexSeeds": { - "c1": 2.9072275612915686, - "c2": 2.9947168188887616, - "c3": 2.91915547992576, - "c4": 2.8656982013824894, - "c5": 2.9950941718488604, - "c6": 3.000699150439912, - "c7": 2.8663263303439868 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395279, + "c3": 3.6754507628294055, + "c4": 2.9403606102635194, + "c5": 2.205270457697646, + "c6": 1.4701803051317597, + "c7": 0.7350901525658865 }, "rgb": [77, 76, 132] }, @@ -310830,23 +310830,23 @@ "year": 1792, "resistanceReported": false, "duration": 61084800, - "curveSeeds": { - "c1": 32.530122401363, - "c2": 75.1829823832752, - "c3": -13.818161772755708, - "c4": 70.51470063204414, - "c5": -39.2087150827541, - "c6": 51.216294721979295, - "c7": -37.73452864601035 + "points": { + "c1": -61.69952630118408, + "c2": 16.78964857686809, + "c3": 42.21382154958772, + "c4": -20.657353911454017, + "c5": 0.10247159935030936, + "c6": 29.578771623742227, + "c7": 46.5740167928502 }, - "vertexSeeds": { - "c1": 4.2653111969137125, - "c2": 4.086863500746113, - "c3": 4.085004277841854, - "c4": 4.0965259153952145, - "c5": 4.097369842327638, - "c6": 4.067956656879479, - "c7": 4.28548117863619 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.4632454923717075, + "c3": 5.386037910309757, + "c4": 4.308830328247808, + "c5": 3.2316227461858507, + "c6": 2.1544151641239004, + "c7": 1.0772075820619502 }, "rgb": [86, 146, 138] }, @@ -310857,23 +310857,23 @@ "year": 1791, "resistanceReported": false, "duration": 51408000, - "curveSeeds": { - "c1": -23.02878424238515, - "c2": -2.8804884775903545, - "c3": 7.425112857145692, - "c4": 10.72266029294255, - "c5": -63.467190742246004, - "c6": -29.234903348738484, - "c7": -5.770257597322036 + "points": { + "c1": 18.25167295258177, + "c2": -12.523876197503505, + "c3": -27.785553259352, + "c4": 24.09886023480459, + "c5": 48.95166093982574, + "c6": -38.34836801528784, + "c7": -31.289255197346037 }, - "vertexSeeds": { - "c1": 5.251786959551205, - "c2": 5.568657956319553, - "c3": 6.698954698958431, - "c4": 6.815996448841112, - "c5": 5.216296823834658, - "c6": 5.404612140904762, - "c7": 6.007515731258038 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882104, + "c3": 8.552935737401757, + "c4": 6.842348589921407, + "c5": 5.131761442441054, + "c6": 3.4211742949606996, + "c7": 1.7105871474803511 }, "rgb": [86, 146, 138] }, @@ -310884,23 +310884,23 @@ "year": 1791, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -11.565345882227867, - "c2": 30.542111356147927, - "c3": -37.78022465892033, - "c4": -25.466162803589146, - "c5": -2.67046345713144, - "c6": -31.20017555738134, - "c7": -38.15069258361855 + "points": { + "c1": 29.21602890209256, + "c2": 9.463237463684628, + "c3": -5.106365176118537, + "c4": 28.35845165490484, + "c5": -42.32371117332125, + "c6": 38.68035613857447, + "c7": -1.9465680177848412 }, - "vertexSeeds": { - "c1": 6.53101722559396, - "c2": 6.634611468259676, - "c3": 6.3432108695000915, - "c4": 6.602087586331487, - "c5": 6.6736373647720235, - "c6": 6.285709586800029, - "c7": 6.15757023390963 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876553, + "c3": 7.975034674063804, + "c4": 6.380027739251035, + "c5": 4.785020804438287, + "c6": 3.1900138696255174, + "c7": 1.5950069348127698 }, "rgb": [86, 146, 138] }, @@ -310911,23 +310911,23 @@ "year": 1790, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -18.084462594226686, - "c2": 10.399481796030777, - "c3": -19.677035817755424, - "c4": 9.28835708088248, - "c5": -19.140933119316937, - "c6": 4.430631152328164, - "c7": 0.6781479871543787 + "points": { + "c1": 13.630796600615689, + "c2": 15.164544718857684, + "c3": -19.975356111025395, + "c4": -17.682873412054683, + "c5": -8.048542588074906, + "c6": 19.463899021937266, + "c7": -18.68441803934061 }, - "vertexSeeds": { - "c1": 1.455218016545991, - "c2": 1.3059750773450967, - "c3": 1.524493063769634, - "c4": 1.542035629629873, - "c5": 1.3476710810855532, - "c6": 1.4090113411803193, - "c7": 1.4195797095589886 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257975, + "c3": 1.8723994452149786, + "c4": 1.4979195561719822, + "c5": 1.1234396671289888, + "c6": 0.7489597780859926, + "c7": 0.3744798890429963 }, "rgb": [58, 15, 49] }, @@ -310938,23 +310938,23 @@ "year": 1790, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -24.141862233616052, - "c2": 22.381140617828674, - "c3": -20.90539708492676, - "c4": 0.18554513438931153, - "c5": -23.42859219129102, - "c6": 10.289282481993009, - "c7": -1.6192134355495789 + "points": { + "c1": -12.904822058703584, + "c2": 28.034568835083455, + "c3": -24.674230356357736, + "c4": 5.75295169609403, + "c5": 5.1724080193878805, + "c6": -20.935230618286916, + "c7": 13.085060059745054 }, - "vertexSeeds": { - "c1": 2.9918275074344507, - "c2": 3.225597388464206, - "c3": 2.953938733597236, - "c4": 3.1350514122438313, - "c5": 2.9856034629228145, - "c6": 2.9670164249220004, - "c7": 3.149609475147865 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -310965,23 +310965,23 @@ "year": 1791, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": 29.852136619698065, - "c2": 50.206036259348174, - "c3": 36.00040470874524, - "c4": -2.35757435120896, - "c5": -50.686250614170746, - "c6": 42.44791824792562, - "c7": -24.404260208274625 + "points": { + "c1": 22.014992445188504, + "c2": 6.968827402082617, + "c3": 7.223951032659471, + "c4": -24.036799714567458, + "c5": 13.3637818414009, + "c6": 6.784990898039602, + "c7": -28.841261391350244 }, - "vertexSeeds": { - "c1": 3.332670828277848, - "c2": 3.5115408120641685, - "c3": 3.5085111573691394, - "c4": 3.1283102750941687, - "c5": 3.0036837739543545, - "c6": 3.4934201627017822, - "c7": 3.142757616180104 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320389, + "c3": 4.207119741100325, + "c4": 3.365695792880261, + "c5": 2.5242718446601917, + "c6": 1.6828478964401277, + "c7": 0.8414239482200638 }, "rgb": [58, 15, 49] }, @@ -310992,23 +310992,23 @@ "year": 1790, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -20.047679010110723, - "c2": -4.781176090527545, - "c3": -11.80749791188958, - "c4": -0.22045692730300814, - "c5": -11.481442223607402, - "c6": -9.167017145882427, - "c7": -0.4370946196939052 + "points": { + "c1": 24.68584494323073, + "c2": 10.592924751212205, + "c3": 17.198656996658503, + "c4": -15.558984752470375, + "c5": 22.592607041113613, + "c6": -13.508933638270241, + "c7": 6.150226829216624 }, - "vertexSeeds": { - "c1": 5.470380784404944, - "c2": 5.470958946431892, - "c3": 5.5608038501398065, - "c4": 5.836596447815932, - "c5": 5.639220700106039, - "c6": 5.697066057428924, - "c7": 5.631771050735622 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187247, + "c3": 7.004160887656024, + "c4": 5.603328710124823, + "c5": 4.202496532593623, + "c6": 2.801664355062423, + "c7": 1.4008321775312003 }, "rgb": [238, 201, 159] }, @@ -311019,23 +311019,23 @@ "year": 1791, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -34.20535354302697, - "c2": -9.84995138543119, - "c3": -5.093941893026994, - "c4": -18.27104709249834, - "c5": 43.31592815643946, - "c6": -11.003100959975278, - "c7": 30.083157474301963 + "points": { + "c1": 38.37919076896676, + "c2": -4.358209547419534, + "c3": 44.14831256525837, + "c4": 40.0800921641814, + "c5": 24.132916608197256, + "c6": 6.30570271823202, + "c7": 22.92831619207174 }, - "vertexSeeds": { - "c1": 3.7209289620480153, - "c2": 3.8664154687338717, - "c3": 3.5498332827695536, - "c4": 3.515173706443212, - "c5": 3.8380826904098173, - "c6": 3.754874271088814, - "c7": 3.5490242491288138 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [222, 0, 59] }, @@ -311046,23 +311046,23 @@ "year": 1791, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -1.2135928483936382, - "c2": 26.672703343134472, - "c3": 12.885814299384947, - "c4": 23.39874325581542, - "c5": 29.808349856447805, - "c6": -4.991587107508849, - "c7": 19.243267017585424 + "points": { + "c1": 10.542919187086987, + "c2": -26.746879809658775, + "c3": 17.490939823523604, + "c4": 40.43234867553106, + "c5": 36.47461119030328, + "c6": 11.62455286766135, + "c7": 27.852043591351105 }, - "vertexSeeds": { - "c1": 4.232233853712371, - "c2": 4.269318444035915, - "c3": 4.29324013403655, - "c4": 4.209507188424993, - "c5": 4.186661754139373, - "c6": 4.224373680052671, - "c7": 4.230168703806931 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929256, + "c3": 5.131761442441056, + "c4": 4.105409153952838, + "c5": 3.0790568654646377, + "c6": 2.052704576976419, + "c7": 1.0263522884882186 }, "rgb": [238, 201, 159] }, @@ -311073,23 +311073,23 @@ "year": 1790, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 27.10493249889138, - "c2": -3.03857399914304, - "c3": 30.980833965229834, - "c4": -30.758538302947656, - "c5": 2.7100708321071565, - "c6": -25.132308620532548, - "c7": 31.315058555677652 + "points": { + "c1": -35.178563761533965, + "c2": -4.459923107446151, + "c3": -2.209216449816445, + "c4": -0.23249734618652695, + "c5": -36.055112889073456, + "c6": 21.1403526191824, + "c7": 10.738095553756914 }, - "vertexSeeds": { - "c1": 6.868695465774998, - "c2": 7.102065347478288, - "c3": 7.376009486675903, - "c4": 7.126101314923869, - "c5": 6.834148663156085, - "c6": 7.144665271041038, - "c7": 7.418065650093435 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048539, + "c3": 9.223300970873792, + "c4": 7.378640776699031, + "c5": 5.533980582524269, + "c6": 3.689320388349509, + "c7": 1.844660194174761 }, "rgb": [86, 146, 138] }, @@ -311100,23 +311100,23 @@ "year": 1790, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 16.044992819000285, - "c2": -6.631307088459067, - "c3": -17.089921730806875, - "c4": -0.9669485504774826, - "c5": 14.432891774433003, - "c6": 34.417358595800394, - "c7": -9.978608116252804 + "points": { + "c1": 13.06156313987669, + "c2": -10.369224199443163, + "c3": -33.52391296387107, + "c4": -28.902638808413144, + "c5": -2.543881762334941, + "c6": 36.12156573379524, + "c7": -32.70923479512718 }, - "vertexSeeds": { - "c1": 5.68016196979327, - "c2": 5.56184200326804, - "c3": 5.689932292975408, - "c4": 5.743820793072598, - "c5": 5.772465619824298, - "c6": 5.681605475433415, - "c7": 5.938781024731753 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348115, + "c3": 7.096625057790109, + "c4": 5.6773000462320775, + "c5": 4.257975034674071, + "c6": 2.8386500231160388, + "c7": 1.4193250115580065 }, "rgb": [77, 76, 132] }, @@ -311127,23 +311127,23 @@ "year": 1790, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -18.68446049638697, - "c2": -3.8918297946512226, - "c3": 23.255849934100468, - "c4": -14.146434754437127, - "c5": -10.737914623300359, - "c6": 9.731536774565079, - "c7": 2.1243269373721105 + "points": { + "c1": -21.031473685210386, + "c2": -4.862962624498763, + "c3": -7.600792198415345, + "c4": 24.271924688798855, + "c5": 0.7781737483366733, + "c6": 23.094199094192625, + "c7": -18.895741530484145 }, - "vertexSeeds": { - "c1": 6.868707488740302, - "c2": 6.354102455087642, - "c3": 6.3889563407231424, - "c4": 6.909758220939942, - "c5": 6.45882919507192, - "c6": 6.668156327689984, - "c7": 6.369936608545701 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359226, + "c3": 8.252427184466026, + "c4": 6.601941747572803, + "c5": 4.951456310679602, + "c6": 3.3009708737864014, + "c7": 1.6504854368932007 }, "rgb": [86, 146, 138] }, @@ -311154,23 +311154,23 @@ "year": 1790, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -11.17673454623803, - "c2": 22.0710514306723, - "c3": 15.885252440044212, - "c4": 6.565975004716648, - "c5": 31.979399156595818, - "c6": 23.230352105992367, - "c7": -29.823433537330473 + "points": { + "c1": 25.913679801510142, + "c2": 0.17736998643226798, + "c3": -33.84731805888493, + "c4": 11.633988138318976, + "c5": 5.694852297001276, + "c6": -32.79793456315897, + "c7": -32.37789407685294 }, - "vertexSeeds": { - "c1": 2.058365479457906, - "c2": 2.1494963975467893, - "c3": 2.1133023737086365, - "c4": 2.0811396161018325, - "c5": 2.0784863222680037, - "c6": 2.146797326395041, - "c7": 2.1569073973820583 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [238, 201, 159] }, @@ -311181,23 +311181,23 @@ "year": 1791, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 36.38184244563123, - "c2": -2.4366552092682596, - "c3": -28.59376095540862, - "c4": -13.476504866875455, - "c5": -28.76893789613917, - "c6": -3.2137116189395982, - "c7": 7.042364113369651 + "points": { + "c1": -8.826911655475548, + "c2": 33.753385218135826, + "c3": -22.266623667468735, + "c4": -14.77755376323681, + "c5": 43.563879506370675, + "c6": -4.564513876423973, + "c7": 7.105477589828318 }, - "vertexSeeds": { - "c1": 7.342854790538651, - "c2": 7.451578998523044, - "c3": 7.400605330110941, - "c4": 7.457037911342034, - "c5": 7.33150920033455, - "c6": 7.447646829958942, - "c7": 7.383672656053308 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152564, + "c3": 8.92279241793808, + "c4": 7.13823393435045, + "c5": 5.35367545076282, + "c6": 3.5691169671752605, + "c7": 1.7845584835876303 }, "rgb": [238, 201, 159] }, @@ -311208,23 +311208,23 @@ "year": 1790, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 29.881991788678487, - "c2": 26.557905093831454, - "c3": 29.10517425523064, - "c4": 31.071368508700463, - "c5": 23.480900357507256, - "c6": -29.764876978308962, - "c7": 13.460021742436094 + "points": { + "c1": -19.594280760668415, + "c2": -26.842469194433924, + "c3": 24.575154040956058, + "c4": 21.943002030170746, + "c5": -23.098132938022236, + "c6": 12.794696797928005, + "c7": -17.063403472037667 }, - "vertexSeeds": { - "c1": 8.344059031401018, - "c2": 8.434806948580796, - "c3": 8.007004106868552, - "c4": 8.089286161443134, - "c5": 8.054115633930165, - "c6": 8.162735740934805, - "c7": 8.152475515457432 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617202, + "c3": 10.124826629681007, + "c4": 8.099861303744786, + "c5": 6.07489597780859, + "c6": 4.049930651872393, + "c7": 2.0249653259361966 }, "rgb": [222, 0, 59] }, @@ -311235,23 +311235,23 @@ "year": 1791, "resistanceReported": true, "duration": 37497600, - "curveSeeds": { - "c1": 37.37306510450704, - "c2": 37.121015698597226, - "c3": 37.55138063757396, - "c4": 4.8918517581842735, - "c5": 41.13383617781307, - "c6": 44.108468092978974, - "c7": 13.045203869400162 + "points": { + "c1": 5.351615848469585, + "c2": -34.20580827384123, + "c3": -46.6804569508413, + "c4": -24.503946839600676, + "c5": 40.57215434687405, + "c6": -15.83826191107805, + "c7": 45.765955256611925 }, - "vertexSeeds": { - "c1": 5.0712435233160615, - "c2": 5.0712435233160615, - "c3": 5.0712435233160615, - "c4": 5.0712435233160615, - "c5": 5.0712435233160615, - "c6": 5.0712435233160615, - "c7": 5.0712435233160615 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -311262,23 +311262,23 @@ "year": 1791, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": 12.03709711823224, - "c2": 23.53921840230646, - "c3": 35.63831348585501, - "c4": 9.126525884302282, - "c5": -39.061523824635785, - "c6": -40.61941115643674, - "c7": -44.45115309758897 + "points": { + "c1": 17.22473634454498, + "c2": -7.009444138317448, + "c3": -43.18356229451763, + "c4": -51.11907762849389, + "c5": -39.05386644052942, + "c6": 25.222109994712937, + "c7": -2.187842186869716 }, - "vertexSeeds": { - "c1": 5.699125171487275, - "c2": 5.360233746207575, - "c3": 5.265030558476038, - "c4": 5.4517212407520415, - "c5": 5.250704774105085, - "c6": 5.353199201123576, - "c7": 5.67979356661569 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945917, + "c3": 6.865464632454921, + "c4": 5.492371705963945, + "c5": 4.119278779472949, + "c6": 2.7461858529819727, + "c7": 1.3730929264909963 }, "rgb": [77, 76, 132] }, @@ -311289,23 +311289,23 @@ "year": 1791, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -16.345185231796105, - "c2": 17.69521672889328, - "c3": -9.699844406689266, - "c4": -7.287771647703387, - "c5": -2.0270479379154196, - "c6": 37.3724832063645, - "c7": 34.54668765398551 + "points": { + "c1": -25.25635900465796, + "c2": -3.499957252302586, + "c3": 39.033085522271385, + "c4": -20.196205383871558, + "c5": -0.169604483338766, + "c6": 29.780908680832816, + "c7": -30.750298565762787 }, - "vertexSeeds": { - "c1": 4.406860778753165, - "c2": 4.3570643089539445, - "c3": 4.361333395193368, - "c4": 4.416498616650079, - "c5": 4.383661202766776, - "c6": 4.344579821560858, - "c7": 4.336285232623525 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210806, + "c3": 5.2935737401757, + "c4": 4.234858992140552, + "c5": 3.176144244105403, + "c6": 2.1174294960702547, + "c7": 1.0587147480351484 }, "rgb": [222, 0, 59] }, @@ -311316,23 +311316,23 @@ "year": 1791, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -24.630265689505528, - "c2": 34.40482289770436, - "c3": 39.20259273811723, - "c4": -16.400471794182664, - "c5": 12.917223827785293, - "c6": -22.45355795854149, - "c7": 18.912968250610234 + "points": { + "c1": 10.713384086077888, + "c2": -16.947089760239056, + "c3": 24.657356912241852, + "c4": -38.61389767843145, + "c5": 10.981566777986693, + "c6": 39.28848314742898, + "c7": -20.865530423452377 }, - "vertexSeeds": { - "c1": 3.103274041012568, - "c2": 2.9135252417447663, - "c3": 3.273151893043814, - "c4": 2.5538760087002332, - "c5": 2.57283984085978, - "c6": 2.6614760056471267, - "c7": 3.1168757814918866 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.79889042995839, + "c3": 3.9990753582986605, + "c4": 3.199260286638928, + "c5": 2.399445214979195, + "c6": 1.5996301433194657, + "c7": 0.7998150716597329 }, "rgb": [222, 0, 59] }, @@ -311343,23 +311343,23 @@ "year": 1791, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -31.041547851077976, - "c2": 19.898090932252614, - "c3": -14.01600574091059, - "c4": -17.967914885997015, - "c5": 16.725180871130135, - "c6": -26.523844345372204, - "c7": -10.271732866059534 + "points": { + "c1": 5.321042747543892, + "c2": -35.606135099235416, + "c3": -7.799171463270703, + "c4": 3.90185676882907, + "c5": -9.724812925656511, + "c6": 4.3368546321245205, + "c7": -13.55505385996949 }, - "vertexSeeds": { - "c1": 7.381526068120977, - "c2": 7.42407761410012, - "c3": 7.48823701168174, - "c4": 7.701246691713884, - "c5": 7.413225946921878, - "c6": 7.7282016136188885, - "c7": 7.5831416211347245 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.65048543689321, + "c3": 9.708737864077667, + "c4": 7.76699029126214, + "c5": 5.8252427184465985, + "c6": 3.88349514563107, + "c7": 1.9417475728155285 }, "rgb": [58, 15, 49] }, @@ -311370,23 +311370,23 @@ "year": 1790, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -9.578474291424659, - "c2": -7.112636942869269, - "c3": 11.393365033700388, - "c4": -24.105414933562525, - "c5": 16.13424683450891, - "c6": -22.63335480436922, - "c7": 19.68023784434369 + "points": { + "c1": 10.496799304668048, + "c2": 21.336751108911, + "c3": 10.882634052017433, + "c4": -7.119843062650656, + "c5": -26.53355246902821, + "c6": -27.685402307098535, + "c7": -11.222482548520873 }, - "vertexSeeds": { - "c1": 5.89639284222897, - "c2": 6.040304391347868, - "c3": 5.8974249188478955, - "c4": 6.333883891820916, - "c5": 5.963202413625386, - "c6": 6.205087867432917, - "c7": 6.143878846945073 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [58, 15, 49] }, @@ -311397,23 +311397,23 @@ "year": 1791, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -26.607469447548908, - "c2": -19.488589609356303, - "c3": -23.72759405297705, - "c4": -33.89386521628622, - "c5": -3.693206158986765, - "c6": 9.007655774136225, - "c7": 17.656404914285027 + "points": { + "c1": 24.575594788447546, + "c2": 11.10675932445551, + "c3": 4.975109282964411, + "c4": 3.0507115592765786, + "c5": 16.85553402289819, + "c6": -36.638507833723814, + "c7": 23.09432094928136 }, - "vertexSeeds": { - "c1": 2.8674787528781054, - "c2": 2.868346333559446, - "c3": 2.8501856174193843, - "c4": 2.805553395731855, - "c5": 2.986811228327187, - "c6": 3.008432238282022, - "c7": 2.921535771568589 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355061, + "c3": 3.6523347202958822, + "c4": 2.921867776236715, + "c5": 2.191400832177536, + "c6": 1.4609338881183576, + "c7": 0.7304669440591788 }, "rgb": [77, 76, 132] }, @@ -311424,23 +311424,23 @@ "year": 1792, "resistanceReported": false, "duration": 63849600, - "curveSeeds": { - "c1": 38.869792180996, - "c2": -10.127944396643727, - "c3": 66.31986268347241, - "c4": 43.13415293838929, - "c5": 15.055284880449406, - "c6": 58.51311227249879, - "c7": -65.46842620433758 + "points": { + "c1": -65.6006046618022, + "c2": 6.7937715040007305, + "c3": 18.90085744937005, + "c4": -59.003392934363475, + "c5": 28.6213143773943, + "c6": 29.5794203556448, + "c7": 16.412892197205466 }, - "vertexSeeds": { - "c1": 6.581726439477098, - "c2": 7.317835103234424, - "c3": 6.074178755205952, - "c4": 4.433286249996946, - "c5": 5.895190216198152, - "c6": 6.200854901751704, - "c7": 7.4259058079802855 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467406, + "c3": 11.188164586222838, + "c4": 8.95053166897827, + "c5": 6.712898751733703, + "c6": 4.475265834489135, + "c7": 2.2376329172445675 }, "rgb": [222, 0, 59] }, @@ -311451,23 +311451,23 @@ "year": 1790, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 27.216040943200305, - "c2": -17.987805563911685, - "c3": 3.658477110312731, - "c4": -18.486937449293258, - "c5": -21.888530401349968, - "c6": 29.34488468307878, - "c7": -26.616535486625278 + "points": { + "c1": -13.629469643421235, + "c2": 11.884809173693455, + "c3": 27.141299142335114, + "c4": 20.9241831597912, + "c5": 19.681464115901463, + "c6": 29.47800466839859, + "c7": 28.857797341866117 }, - "vertexSeeds": { - "c1": 6.659149375762826, - "c2": 6.557654201124556, - "c3": 6.795883716441939, - "c4": 6.863633543742991, - "c5": 6.833180011690431, - "c6": 6.755917734912221, - "c7": 6.878648810385122 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319006, + "c3": 8.229311141932508, + "c4": 6.583448913546011, + "c5": 4.937586685159514, + "c6": 3.291724456772995, + "c7": 1.6458622283864974 }, "rgb": [222, 0, 59] }, @@ -311478,23 +311478,23 @@ "year": 1791, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -5.132752805883001, - "c2": -37.604052792941005, - "c3": 0.7807295458655261, - "c4": -7.88849075118301, - "c5": -16.934554874889823, - "c6": 35.61040725925101, - "c7": 13.667813919580162 + "points": { + "c1": -27.208005181079862, + "c2": -20.03365415718057, + "c3": -33.44646956731029, + "c4": -31.672690775584158, + "c5": -16.366526419231192, + "c6": 9.159160911949847, + "c7": -24.34139601563363 }, - "vertexSeeds": { - "c1": 3.167098445595855, - "c2": 3.167098445595855, - "c3": 3.167098445595855, - "c4": 3.167098445595855, - "c5": 3.167098445595855, - "c6": 3.167098445595855, - "c7": 3.167098445595855 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -311505,23 +311505,23 @@ "year": 1790, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -4.573525513699437, - "c2": -8.898728389234137, - "c3": -10.607519370017652, - "c4": -2.1162730722075302, - "c5": -13.786502429527879, - "c6": -24.03141064591993, - "c7": -9.958136814307302 + "points": { + "c1": -14.683437079402324, + "c2": 22.88721280470283, + "c3": 13.401779387972429, + "c4": 18.84763034196052, + "c5": 15.54372964434722, + "c6": -31.437638453572724, + "c7": -2.9525742562725057 }, - "vertexSeeds": { - "c1": 7.339524847910106, - "c2": 7.4985272969627905, - "c3": 7.465774914496874, - "c4": 7.473561236597569, - "c5": 7.645895025297506, - "c6": 7.54364517054518, - "c7": 7.226395598871871 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927875, + "c3": 9.153952843273224, + "c4": 7.323162274618597, + "c5": 5.492371705963948, + "c6": 3.6615811373092986, + "c7": 1.8307905686546493 }, "rgb": [58, 15, 49] }, @@ -311532,23 +311532,23 @@ "year": 1791, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -11.053651662558217, - "c2": -18.75951466300989, - "c3": -31.00263452258815, - "c4": 10.28838873732996, - "c5": 0.3219186947735011, - "c6": -26.926607493768977, - "c7": -7.198642709028192 + "points": { + "c1": -8.343811765726201, + "c2": -13.24460294471401, + "c3": 13.125097822610819, + "c4": 2.196828369252941, + "c5": 25.385213344245983, + "c6": -31.72351080164929, + "c7": -35.81832376394779 }, - "vertexSeeds": { - "c1": 9.075093645773805, - "c2": 8.401225585390476, - "c3": 9.67341057625738, - "c4": 8.81413459841406, - "c5": 8.44597648570551, - "c6": 7.706821505181855, - "c7": 9.411145280421625 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122046, + "c3": 12.713823393435046, + "c4": 10.171058714748037, + "c5": 7.628294036061029, + "c6": 5.085529357374022, + "c7": 2.5427646786870137 }, "rgb": [77, 76, 132] }, @@ -311559,23 +311559,23 @@ "year": 1790, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -20.79482353696334, - "c2": -15.624871887730126, - "c3": -23.83691531233527, - "c4": 21.183389366543505, - "c5": 24.90384965675508, - "c6": 24.79114586983717, - "c7": 2.7399817772934973 + "points": { + "c1": -27.427234782015745, + "c2": -22.9112640953386, + "c3": 3.156703426403009, + "c4": 15.92688932771458, + "c5": -28.56866709852931, + "c6": 1.408693354975032, + "c7": 14.760177889075035 }, - "vertexSeeds": { - "c1": 5.824661707258793, - "c2": 5.764692814158899, - "c3": 5.751934541289429, - "c4": 5.744450397268347, - "c5": 5.8477516095475846, - "c6": 5.754066246303282, - "c7": 5.826751765942604 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147057, + "c3": 6.9810448451225025, + "c4": 5.5848358760980386, + "c5": 4.188626907073482, + "c6": 2.7924179380490193, + "c7": 1.3962089690244632 }, "rgb": [77, 76, 132] }, @@ -311586,23 +311586,23 @@ "year": 1790, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 15.409688802615154, - "c2": 0.8123482126162358, - "c3": -14.406086806752288, - "c4": -11.576073280092466, - "c5": 12.752600490416132, - "c6": 8.740272215743683, - "c7": 23.61735724719514 + "points": { + "c1": 25.76190144969975, + "c2": -0.8758810702095019, + "c3": 8.494684519565041, + "c4": 1.9088347142424027, + "c5": 17.020295982667534, + "c6": -21.16642088518642, + "c7": -5.301611767960452 }, - "vertexSeeds": { - "c1": 7.5644142873724975, - "c2": 8.090273609738466, - "c3": 7.830965967436643, - "c4": 7.88888360534472, - "c5": 7.561123243784264, - "c6": 8.251452251291031, - "c7": 8.187873523553451 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134525, + "c3": 9.847434119278782, + "c4": 7.8779472954230165, + "c5": 5.908460471567274, + "c6": 3.9389736477115083, + "c7": 1.9694868238557652 }, "rgb": [86, 146, 138] }, @@ -311613,23 +311613,23 @@ "year": 1790, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 3.845813459964006, - "c2": 25.05841036374268, - "c3": 9.235665429484357, - "c4": -25.254675471292863, - "c5": 9.622766710114561, - "c6": -4.222641601985558, - "c7": 17.463016593654686 + "points": { + "c1": 25.134073698268764, + "c2": 14.428633696845253, + "c3": -3.2982327216419876, + "c4": 8.740029817868134, + "c5": -15.337883686433205, + "c6": 15.898034015778805, + "c7": -19.258580171310903 }, - "vertexSeeds": { - "c1": 10.476213131573738, - "c2": 10.758383645236833, - "c3": 10.887615587747357, - "c4": 10.628143394453481, - "c5": 10.260294469946254, - "c6": 10.610659435249497, - "c7": 10.932525060764329 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.977808599167808, + "c3": 13.314840499306538, + "c4": 10.65187239944522, + "c5": 7.988904299583904, + "c6": 5.325936199722633, + "c7": 2.6629680998613163 }, "rgb": [238, 201, 159] }, @@ -311640,23 +311640,23 @@ "year": 1790, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -1.3748339176563285, - "c2": 22.710830991884443, - "c3": 20.864713689786498, - "c4": 2.95310466744165, - "c5": 14.980395967073392, - "c6": -14.792730550245931, - "c7": 29.665931584582673 + "points": { + "c1": -16.007088764341994, + "c2": 28.307996000586826, + "c3": 11.874155558585045, + "c4": 32.675792541215486, + "c5": -17.11887116617195, + "c6": -1.8386510020324351, + "c7": -15.887023772811297 }, - "vertexSeeds": { - "c1": 8.654259726441765, - "c2": 9.294015831892205, - "c3": 8.829631337212142, - "c4": 9.028734053474452, - "c5": 8.688897618508143, - "c6": 9.112941988160904, - "c7": 9.055561564415704 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507638, + "c3": 11.211280628756354, + "c4": 8.969024503005093, + "c5": 6.726768377253808, + "c6": 4.484512251502546, + "c7": 2.242256125751284 }, "rgb": [58, 15, 49] }, @@ -311667,23 +311667,23 @@ "year": 1791, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 18.91582171007351, - "c2": -2.469492458297239, - "c3": 27.826509636272576, - "c4": -15.854764837398353, - "c5": -25.061911113976837, - "c6": 0.12869997876805428, - "c7": 23.229832066175398 + "points": { + "c1": 38.65243144099489, + "c2": -0.6487098202591, + "c3": -17.869267519194768, + "c4": 25.06238353412222, + "c5": -33.5116380246655, + "c6": -16.16834788268956, + "c7": 38.3193445854229 }, - "vertexSeeds": { - "c1": 2.7715190695523995, - "c2": 2.7413573302459486, - "c3": 2.749280256627548, - "c4": 2.7760345269783806, - "c5": 2.760834626856349, - "c6": 2.7891994957306356, - "c7": 2.761273577566954 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832163, + "c3": 3.351826167360153, + "c4": 2.681460933888109, + "c5": 2.011095700416098, + "c6": 1.3407304669440545, + "c7": 0.6703652334720439 }, "rgb": [77, 76, 132] }, @@ -311694,23 +311694,23 @@ "year": 1790, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -8.562501490183239, - "c2": -6.24014513343678, - "c3": 18.156215891412636, - "c4": -13.496380808272118, - "c5": -11.09784215463889, - "c6": 0.10930113953143916, - "c7": 7.216639462916913 + "points": { + "c1": -12.436764107638183, + "c2": 10.223309938631338, + "c3": -23.814855490911132, + "c4": -23.365906804836136, + "c5": -4.857826334638528, + "c6": -21.10195352444831, + "c7": -13.088779075976175 }, - "vertexSeeds": { - "c1": 2.7733023792667075, - "c2": 2.8260396000640715, - "c3": 2.671893728459718, - "c4": 2.6428810603675474, - "c5": 2.7806224927605716, - "c6": 2.554948599655751, - "c7": 2.645408436063617 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912622, + "c3": 3.3980582524271865, + "c4": 2.718446601941751, + "c5": 2.038834951456307, + "c6": 1.3592233009708714, + "c7": 0.6796116504854357 }, "rgb": [77, 76, 132] }, @@ -311721,23 +311721,23 @@ "year": 1790, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -5.181713612414455, - "c2": 28.020889114100413, - "c3": -14.558026598916875, - "c4": -0.8606699549337016, - "c5": 2.641913218363513, - "c6": -26.603369054693413, - "c7": -7.950513924569549 + "points": { + "c1": -5.5168787338796115, + "c2": -31.741478423628696, + "c3": 17.762519403584406, + "c4": -1.7904086905028223, + "c5": 12.793493517693356, + "c6": -12.81458792636477, + "c7": 25.56449812597978 }, - "vertexSeeds": { - "c1": 2.33160621761658, - "c2": 2.33160621761658, - "c3": 2.33160621761658, - "c4": 2.33160621761658, - "c5": 2.33160621761658, - "c6": 2.33160621761658, - "c7": 2.33160621761658 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -311748,23 +311748,23 @@ "year": 1791, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 5.45898687003735, - "c2": -30.457769931348988, - "c3": -9.17456774829963, - "c4": 30.66449836889042, - "c5": 2.5673376708418303, - "c6": -26.61885341606333, - "c7": -32.09902239965471 + "points": { + "c1": -0.8488076906730413, + "c2": 26.283330756307052, + "c3": -23.422587413512847, + "c4": 2.1002208243040243, + "c5": 9.931789309426222, + "c6": -22.726919418200957, + "c7": 26.27184060196582 }, - "vertexSeeds": { - "c1": 6.20502243820393, - "c2": 6.076860438021059, - "c3": 5.872902290984559, - "c4": 6.767227605034721, - "c5": 6.427536184402632, - "c6": 5.8795815812192975, - "c7": 6.583279121551963 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158115, + "c3": 8.136846971798429, + "c4": 6.509477577438743, + "c5": 4.882108183079057, + "c6": 3.2547387887193713, + "c7": 1.6273693943596856 }, "rgb": [86, 146, 138] }, @@ -311775,23 +311775,23 @@ "year": 1791, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 20.847214380450325, - "c2": 9.340214532054688, - "c3": -8.92351859235064, - "c4": -15.780003690462983, - "c5": -15.332987604966963, - "c6": 10.762522413281658, - "c7": 9.206044460771999 + "points": { + "c1": -1.102361300670708, + "c2": -34.01486166631801, + "c3": 19.209715567200504, + "c4": -18.347877410459887, + "c5": 16.13952625296959, + "c6": -2.860280682454807, + "c7": -26.896710895018522 }, - "vertexSeeds": { - "c1": 4.6849469267181325, - "c2": 4.740113173899156, - "c3": 4.851437687044341, - "c4": 4.814587310103115, - "c5": 4.693484406522812, - "c6": 4.782620524063364, - "c7": 4.732987278338237 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176142, + "c3": 5.848358760980115, + "c4": 4.678687008784089, + "c5": 3.509015256588062, + "c6": 2.3393435043920534, + "c7": 1.1696717521960267 }, "rgb": [222, 0, 59] }, @@ -311802,23 +311802,23 @@ "year": 1791, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": -24.10052532699548, - "c2": -14.174204931083594, - "c3": -19.78984177104801, - "c4": -8.738461957262835, - "c5": -26.96789608892555, - "c6": 2.63455841047697, - "c7": -36.92924974102643 + "points": { + "c1": -47.430262845678826, + "c2": 18.48518892784869, + "c3": -28.63170915824113, + "c4": -1.572443752159522, + "c5": 16.64699268748975, + "c6": -3.203666641561746, + "c7": -39.22557181040864 }, - "vertexSeeds": { - "c1": 6.104289981712125, - "c2": 6.2070188132261315, - "c3": 6.1650448957932324, - "c4": 6.399792756624282, - "c5": 6.246732065533933, - "c6": 6.078400742074228, - "c7": 6.144921042498955 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [58, 15, 49] }, @@ -311829,23 +311829,23 @@ "year": 1791, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 16.83364101394381, - "c2": -25.131621865043936, - "c3": 13.273218999918534, - "c4": 18.915840063877674, - "c5": 36.3293439802061, - "c6": 32.39062046645882, - "c7": 8.488023571699173 + "points": { + "c1": -18.689422568423346, + "c2": 36.96835296041592, + "c3": -12.86265762446989, + "c4": -17.9654988236757, + "c5": 4.872607721990519, + "c6": -10.599992270692944, + "c7": 33.01098586771838 }, - "vertexSeeds": { - "c1": 4.013948350847913, - "c2": 3.96731976409764, - "c3": 3.9790538294797075, - "c4": 3.906696487259595, - "c5": 3.90045925963597, - "c6": 3.898835708522367, - "c7": 4.051033695431185 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446608, + "c3": 4.854368932038826, + "c4": 3.8834951456310645, + "c5": 2.912621359223304, + "c6": 1.9417475728155218, + "c7": 0.9708737864077609 }, "rgb": [222, 0, 59] }, @@ -311856,23 +311856,23 @@ "year": 1791, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 15.111280828716502, - "c2": 3.624895270534772, - "c3": 5.645120936451761, - "c4": 6.6753017767633125, - "c5": -13.10444285281985, - "c6": 27.883210972985715, - "c7": -12.762479031762677 + "points": { + "c1": 1.8809667799287482, + "c2": -28.429081551742957, + "c3": -18.54667273944238, + "c4": 11.571408927704425, + "c5": 32.889011097053356, + "c6": 2.8728641983181475, + "c7": 30.367599310783774 }, - "vertexSeeds": { - "c1": 13.98246383892961, - "c2": 14.7085569261648, - "c3": 14.10182495593718, - "c4": 14.63797999461605, - "c5": 14.4631134825404, - "c6": 13.840787079525457, - "c7": 14.650994833434446 + "offsets": { + "c1": 24.724919093851135, + "c2": 21.192787794729558, + "c3": 17.660656495607935, + "c4": 14.128525196486356, + "c5": 10.596393897364779, + "c6": 7.0642625982432, + "c7": 3.5321312991215783 }, "rgb": [58, 15, 49] }, @@ -311883,23 +311883,23 @@ "year": 1791, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 36.12152690094818, - "c2": 10.32734039945354, - "c3": 20.710503376479615, - "c4": 16.755448704430812, - "c5": 37.65174568568955, - "c6": -7.3087358603887935, - "c7": 22.189983032647405 + "points": { + "c1": -32.2745154231149, + "c2": 26.0328515508764, + "c3": -15.116525730131837, + "c4": -27.51500193710603, + "c5": 31.09396194208982, + "c6": 12.844606443404764, + "c7": 17.211128474766014 }, - "vertexSeeds": { - "c1": 3.561267577276586, - "c2": 2.7556410600537027, - "c3": 3.193572401307003, - "c4": 3.6196015609820087, - "c5": 3.0623280741442738, - "c6": 3.161419908436576, - "c7": 2.8414417172857647 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245493, + "c3": 4.738788719371242, + "c4": 3.791030975496995, + "c5": 2.8432732316227467, + "c6": 1.8955154877484959, + "c7": 0.9477577438742479 }, "rgb": [238, 201, 159] }, @@ -311910,23 +311910,23 @@ "year": 1790, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 18.65766895478823, - "c2": 1.8873857465300254, - "c3": 18.799708932763, - "c4": 8.822136977898953, - "c5": -1.475901904882864, - "c6": -13.17890402989794, - "c7": 8.723709861375202 + "points": { + "c1": 2.379908696511997, + "c2": 2.8698725025302707, + "c3": 20.761179392999942, + "c4": 12.511500827544893, + "c5": -16.855499346685267, + "c6": 2.8229625767530635, + "c7": -18.647340039364558 }, - "vertexSeeds": { - "c1": 4.907665892514167, - "c2": 4.8731178877989905, - "c3": 5.87136963976727, - "c4": 4.68001272896114, - "c5": 4.877501549132024, - "c6": 4.8730359179759395, - "c7": 6.0826414417087715 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710128, + "c3": 7.30466944059177, + "c4": 5.843735552473419, + "c5": 4.3828016643550605, + "c6": 2.9218677762367093, + "c7": 1.4609338881183547 }, "rgb": [58, 15, 49] }, @@ -311937,23 +311937,23 @@ "year": 1791, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -24.344160058828262, - "c2": -30.07808070682465, - "c3": 13.2498678475731, - "c4": -38.882906524356905, - "c5": 8.686710692008852, - "c6": -9.750978267965777, - "c7": -13.470783530124184 + "points": { + "c1": 27.321255685368712, + "c2": 13.41747085695544, + "c3": -39.25417627048107, + "c4": 36.35655667864988, + "c5": 9.988080954822024, + "c6": 40.05459024282435, + "c7": 10.003802959988157 }, - "vertexSeeds": { - "c1": 7.294887632811161, - "c2": 7.355781231996452, - "c3": 7.457857200023635, - "c4": 7.044242493533515, - "c5": 7.237407598763976, - "c6": 7.158139104645453, - "c7": 7.440022715995309 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [238, 201, 159] }, @@ -311964,23 +311964,23 @@ "year": 1791, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -6.899518924301752, - "c2": 3.508107267122888, - "c3": 7.93329588400816, - "c4": -7.987464274073975, - "c5": 0.976256354500947, - "c6": -20.28124443068209, - "c7": -12.378339221629453 + "points": { + "c1": -22.419334515701905, + "c2": -34.57132133403403, + "c3": 25.78789904962013, + "c4": -35.23672907275954, + "c5": 11.597959562026332, + "c6": -32.339277713028125, + "c7": -8.7800310121374 }, - "vertexSeeds": { - "c1": 9.581774433954207, - "c2": 10.003050652281864, - "c3": 9.41158041312722, - "c4": 9.275274408305972, - "c5": 10.0189541757592, - "c6": 9.285713087941915, - "c7": 9.679952636904996 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.50762829403608, + "c3": 12.089690245030045, + "c4": 9.671752196024054, + "c5": 7.25381414701804, + "c6": 4.835876098012027, + "c7": 2.4179380490060134 }, "rgb": [77, 76, 132] }, @@ -311991,23 +311991,23 @@ "year": 1791, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -15.358435353424841, - "c2": 27.09999187933522, - "c3": 26.673025424093964, - "c4": 2.7490195127356856, - "c5": -30.764748419978268, - "c6": 20.58503675945007, - "c7": 29.77849129718352 + "points": { + "c1": 20.208927819768142, + "c2": 12.100521920993991, + "c3": 32.25857911855442, + "c4": 12.461243120123704, + "c5": 36.03664437259329, + "c6": 36.45055671929465, + "c7": -40.36452814634794 }, - "vertexSeeds": { - "c1": 4.0214961445500075, - "c2": 4.019574396978129, - "c3": 4.003890637486431, - "c4": 4.028786427599729, - "c5": 4.035675548018757, - "c6": 4.011452360051406, - "c7": 4.006761962448939 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406408, + "c3": 4.831252889505276, + "c4": 3.86500231160424, + "c5": 2.898751733703204, + "c6": 1.9325011558021679, + "c7": 0.9662505779010359 }, "rgb": [222, 0, 59] }, @@ -312018,23 +312018,23 @@ "year": 1790, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -13.623916590237307, - "c2": 19.204697458996435, - "c3": 10.60231538222196, - "c4": -12.645207024228043, - "c5": -5.280926808174762, - "c6": -17.5091991188552, - "c7": -25.59644023381885 + "points": { + "c1": 10.733782480595806, + "c2": -11.41038238977616, + "c3": 23.334536156540743, + "c4": 25.988463318133185, + "c5": 12.976180379310172, + "c6": -19.775578511892924, + "c7": -17.96739487729424 }, - "vertexSeeds": { - "c1": 4.980185136628487, - "c2": 5.243780733024018, - "c3": 4.962230115354486, - "c4": 5.058018194769984, - "c5": 5.317061932716261, - "c6": 5.0508117288159475, - "c7": 5.290234355808626 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251046, + "c4": 5.1040221914008415, + "c5": 3.8280166435506366, + "c6": 2.55201109570041, + "c7": 1.276005547850205 }, "rgb": [238, 201, 159] }, @@ -312045,23 +312045,23 @@ "year": 1790, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -4.842953140029817, - "c2": -21.841332301063993, - "c3": 16.846633639264056, - "c4": -0.13745158708600158, - "c5": -13.133821518013738, - "c6": -10.740787957106173, - "c7": 11.90302650318823 + "points": { + "c1": 8.981586849979983, + "c2": -21.926667099965936, + "c3": 23.466594207008185, + "c4": -20.82809984868941, + "c5": -22.67746961549485, + "c6": -23.533868228539273, + "c7": -6.315462193712371 }, - "vertexSeeds": { - "c1": 4.728619316171144, - "c2": 4.73714842721075, - "c3": 4.639447778582658, - "c4": 4.813530622999728, - "c5": 4.5093208917124015, - "c6": 4.491506395325153, - "c7": 4.603769973099152 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055479, + "c3": 5.779010633379568, + "c4": 4.623208506703656, + "c5": 3.467406380027734, + "c6": 2.311604253351823, + "c7": 1.1558021266759115 }, "rgb": [86, 146, 138] }, @@ -312072,23 +312072,23 @@ "year": 1790, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -3.3176289522393034, - "c2": 23.41766384752091, - "c3": -26.21431587244589, - "c4": 5.330559756044384, - "c5": -11.60663852612403, - "c6": 0.7542790708337499, - "c7": 0.3985949516967686 + "points": { + "c1": 23.83671579238042, + "c2": 13.960476346348589, + "c3": -16.815113278135556, + "c4": 10.348302860356238, + "c5": 13.356868119969736, + "c6": -16.738259261437562, + "c7": 20.366200436730782 }, - "vertexSeeds": { - "c1": 8.972225836263306, - "c2": 9.334509675054822, - "c3": 9.144440043762666, - "c4": 9.052170988733339, - "c5": 9.353028596754017, - "c6": 9.091743385065438, - "c7": 9.513924132345062 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231624, + "c3": 11.627369394359686, + "c4": 9.301895515487749, + "c5": 6.976421636615812, + "c6": 4.650947757743874, + "c7": 2.325473878871937 }, "rgb": [58, 15, 49] }, @@ -312099,23 +312099,23 @@ "year": 1790, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -17.499664784200213, - "c2": 3.8682996483588816, - "c3": 15.852736177491181, - "c4": 15.806297703333726, - "c5": -13.551077453323416, - "c6": 7.199682086640777, - "c7": -12.247593756743589 + "points": { + "c1": 17.461591961476735, + "c2": -24.69654196309219, + "c3": -19.886175359783824, + "c4": 20.76034392182018, + "c5": -2.9124564294359097, + "c6": -15.485859793228713, + "c7": -22.30447556559683 }, - "vertexSeeds": { - "c1": 7.813023946021948, - "c2": 8.243524798281253, - "c3": 7.784579024400524, - "c4": 8.205273305806335, - "c5": 7.7161551480410955, - "c6": 8.361855158561681, - "c7": 8.272195664744698 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375874, + "c3": 9.986130374479881, + "c4": 7.988904299583909, + "c5": 5.991678224687937, + "c6": 3.994452149791944, + "c7": 1.997226074895972 }, "rgb": [77, 76, 132] }, @@ -312126,23 +312126,23 @@ "year": 1791, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -38.646155970113206, - "c2": 39.241513102479615, - "c3": -30.792978463259605, - "c4": -40.078769092460476, - "c5": -35.40072661943294, - "c6": 35.47159056337813, - "c7": 35.430675478990565 + "points": { + "c1": 19.45608340624493, + "c2": -23.200023423997923, + "c3": -42.02514080315494, + "c4": -7.822950630039323, + "c5": -11.612922898723916, + "c6": -16.461501038540664, + "c7": 44.20902989868458 }, - "vertexSeeds": { - "c1": 4.768417514865151, - "c2": 4.843492799560387, - "c3": 4.81443306033891, - "c4": 4.843010181326569, - "c5": 4.786050037788623, - "c6": 4.773156011155405, - "c7": 4.812458739759321 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176144, + "c3": 5.848358760980121, + "c4": 4.678687008784096, + "c5": 3.509015256588072, + "c6": 2.339343504392048, + "c7": 1.169671752196024 }, "rgb": [58, 15, 49] }, @@ -312153,23 +312153,23 @@ "year": 1791, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -15.743939238783348, - "c2": -17.86362408716734, - "c3": -33.29388963449024, - "c4": 36.27053893204703, - "c5": 19.938710597145196, - "c6": -18.522638039658347, - "c7": 30.57915434232453 + "points": { + "c1": -40.387756740758405, + "c2": -41.06165524975922, + "c3": 16.28808426738201, + "c4": 20.67757628707293, + "c5": -30.057906473054885, + "c6": -23.763581530537778, + "c7": 37.021042443379386 }, - "vertexSeeds": { - "c1": 5.058490190684317, - "c2": 5.004429912786707, - "c3": 5.073728182518668, - "c4": 4.970650457059272, - "c5": 5.099571819694489, - "c6": 5.105648520441344, - "c7": 5.137758658843275 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -312180,23 +312180,23 @@ "year": 1791, "resistanceReported": false, "duration": 42681600, - "curveSeeds": { - "c1": 2.490054255138162, - "c2": 14.92011302538296, - "c3": 46.73189045419247, - "c4": 43.292022584193376, - "c5": -48.97287327073633, - "c6": 39.91445350507291, - "c7": 35.202936838996095 + "points": { + "c1": 26.540641997241437, + "c2": 43.89875430831002, + "c3": -3.0861845250672957, + "c4": 2.073047089431782, + "c5": 45.436880936710835, + "c6": 27.394648362756087, + "c7": 58.204308949857406 }, - "vertexSeeds": { - "c1": 4.484979975199127, - "c2": 3.992878590725511, - "c3": 4.794105273073763, - "c4": 4.960285911515329, - "c5": 4.271116381670194, - "c6": 3.7975024887172135, - "c7": 4.114401683602368 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658806, + "c3": 6.12575127138234, + "c4": 4.9006010171058705, + "c5": 3.675450762829404, + "c6": 2.4503005085529352, + "c7": 1.2251502542764658 }, "rgb": [86, 146, 138] }, @@ -312207,23 +312207,23 @@ "year": 1791, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": 34.88823935769062, - "c2": -27.509862877623515, - "c3": -27.268495511686435, - "c4": -48.50111573349545, - "c5": 41.50398216500835, - "c6": 29.927081685669137, - "c7": 20.509111882516365 + "points": { + "c1": -6.862065374751154, + "c2": 20.93528372673326, + "c3": 19.648713419427963, + "c4": -26.63746179999338, + "c5": 12.134523642477205, + "c6": -32.84008587748956, + "c7": -0.925864013194925 }, - "vertexSeeds": { - "c1": 8.50010720829809, - "c2": 8.553561011085762, - "c3": 8.58759748821944, - "c4": 8.543607170546737, - "c5": 8.464396879066395, - "c6": 8.667912601989757, - "c7": 8.400649614038054 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140072, + "c3": 10.42533518261675, + "c4": 8.340268146093393, + "c5": 6.255201109570036, + "c6": 4.1701340730467145, + "c7": 2.0850670365233572 }, "rgb": [77, 76, 132] }, @@ -312234,23 +312234,23 @@ "year": 1791, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -32.02975422499747, - "c2": -24.75624090307604, - "c3": -5.782784961096116, - "c4": -3.874870945421115, - "c5": -25.865671535038366, - "c6": -4.275959344277638, - "c7": -27.050482448304884 + "points": { + "c1": 9.660298879447268, + "c2": -6.287439321324769, + "c3": 14.105523991481377, + "c4": -6.11270875574067, + "c5": 9.57269340113399, + "c6": -10.103024664567041, + "c7": -16.311268714636736 }, - "vertexSeeds": { - "c1": 4.795697832265769, - "c2": 4.682110559633319, - "c3": 4.949071234118882, - "c4": 4.8337707178683145, - "c5": 4.876102843092487, - "c6": 4.846961015787344, - "c7": 4.932920680765937 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337033, + "c3": 5.940822931114196, + "c4": 4.752658344891358, + "c5": 3.564493758668522, + "c6": 2.3763291724456743, + "c7": 1.1881645862228372 }, "rgb": [222, 0, 59] }, @@ -312261,23 +312261,23 @@ "year": 1791, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 16.847018448034476, - "c2": -3.016175693488627, - "c3": 5.124551160059411, - "c4": 4.94150682181948, - "c5": 27.88874679028053, - "c6": -27.279565824770398, - "c7": -16.771442206935074 + "points": { + "c1": 32.68613174454265, + "c2": -21.477267218969203, + "c3": 34.32237787110677, + "c4": -26.366810547002537, + "c5": -14.746600845076355, + "c6": -30.686198302116996, + "c7": 15.626959031396922 }, - "vertexSeeds": { - "c1": 8.539933741652337, - "c2": 8.625586053509688, - "c3": 8.182037098279027, - "c4": 8.505721933975602, - "c5": 8.227279230061548, - "c6": 8.422406111777805, - "c7": 8.27571605480479 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381409, + "c3": 10.564031437817855, + "c4": 8.45122515025428, + "c5": 6.3384188626907045, + "c6": 4.225612575127151, + "c7": 2.1128062875635756 }, "rgb": [86, 146, 138] }, @@ -312288,23 +312288,23 @@ "year": 1791, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": 27.29074325228521, - "c2": 54.89348544278951, - "c3": -40.54167751340563, - "c4": 25.985436087734442, - "c5": 9.284505609496108, - "c6": -56.87074951755343, - "c7": -40.23679087628082 + "points": { + "c1": -15.724636283482361, + "c2": 23.126340333393614, + "c3": -41.97750807401942, + "c4": -0.4776358530106961, + "c5": 9.998017932140428, + "c6": -29.176626495608158, + "c7": -39.35071961107121 }, - "vertexSeeds": { - "c1": 10.05298960371601, - "c2": 9.902075471389868, - "c3": 9.757365420117795, - "c4": 9.786887701436036, - "c5": 9.954502659582028, - "c6": 9.85933582168443, - "c7": 9.751147023851058 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156736, + "c3": 12.159038372630627, + "c4": 9.72723069810444, + "c5": 7.295423023578368, + "c6": 4.86361534905222, + "c7": 2.43180767452611 }, "rgb": [86, 146, 138] }, @@ -312315,23 +312315,23 @@ "year": 1791, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 11.503206601190676, - "c2": -33.890734208757756, - "c3": 2.220215243339254, - "c4": -10.446558102367387, - "c5": -10.514221919420976, - "c6": 28.969484608785756, - "c7": 21.57355324483123 + "points": { + "c1": 34.58563345693822, + "c2": 6.686892840131804, + "c3": -2.715504946759758, + "c4": -9.848228967628401, + "c5": -0.08250470220345107, + "c6": -8.714166410349677, + "c7": -35.476142025022355 }, - "vertexSeeds": { - "c1": 2.509123291092727, - "c2": 2.5195380187535785, - "c3": 2.5080518531097384, - "c4": 2.50805866070956, - "c5": 2.510596073381437, - "c6": 2.517010269212009, - "c7": 2.5119753165496284 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269088, + "c3": 3.028201571890927, + "c4": 2.4225612575127657, + "c5": 1.816920943134484, + "c6": 1.2112806287563227, + "c7": 0.6056403143781613 }, "rgb": [77, 76, 132] }, @@ -312342,23 +312342,23 @@ "year": 1791, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 8.984115295988211, - "c2": -28.053171512288312, - "c3": 33.500213196803315, - "c4": -42.64529101595319, - "c5": -12.235912300325417, - "c6": -38.233768256058745, - "c7": 13.138511416772111 + "points": { + "c1": -21.944922471954484, + "c2": 2.3047703868958394, + "c3": 40.114505783778526, + "c4": -0.41891746688500575, + "c5": -10.689034440808946, + "c6": 37.34891941799022, + "c7": 36.20957485741255 }, - "vertexSeeds": { - "c1": 6.7494619790797845, - "c2": 6.383278898248569, - "c3": 6.59439655624174, - "c4": 6.18061365532796, - "c5": 6.647240340665549, - "c6": 6.455153894077045, - "c7": 6.929173381370608 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [238, 201, 159] }, @@ -312369,23 +312369,23 @@ "year": 1791, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 8.190787946845024, - "c2": 18.933213339134117, - "c3": -9.345526817194145, - "c4": -7.154239135519212, - "c5": 10.596109363126278, - "c6": 22.6146134650041, - "c7": 2.1929239345482294 + "points": { + "c1": -17.83682421101315, + "c2": 18.83274671316481, + "c3": 15.838351254326746, + "c4": 2.0056745638138906, + "c5": -11.279618836841756, + "c6": 24.81921926329322, + "c7": -10.355626939727678 }, - "vertexSeeds": { - "c1": 1.2266016859566793, - "c2": 1.2701637946320146, - "c3": 1.2724753713262802, - "c4": 1.219863297645459, - "c5": 1.2459798109342384, - "c6": 1.2715234738073162, - "c7": 1.2795081718935155 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948705, + "c3": 1.5487748497457225, + "c4": 1.2390198797965806, + "c5": 0.9292649098474323, + "c6": 0.6195099398982903, + "c7": 0.30975496994914514 }, "rgb": [77, 76, 132] }, @@ -312396,23 +312396,23 @@ "year": 1792, "resistanceReported": false, "duration": 55296000, - "curveSeeds": { - "c1": -36.54025656312541, - "c2": 59.853930987784565, - "c3": -24.777033378349266, - "c4": -69.11529275372057, - "c5": 9.383550747412102, - "c6": 51.008346903351125, - "c7": -67.5115059950432 + "points": { + "c1": -8.400345731156364, + "c2": -4.3843783444553, + "c3": -52.11060850124288, + "c4": -42.66597116969177, + "c5": 55.58306565510634, + "c6": 62.336678359417874, + "c7": 53.474254341972724 }, - "vertexSeeds": { - "c1": 2.939969417406271, - "c2": 2.7184047357531163, - "c3": 2.8590468533714275, - "c4": 2.596157114425005, - "c5": 2.8784324651138284, - "c6": 2.9447506817848192, - "c7": 2.9502749932526786 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314838, + "c3": 3.6292186777623674, + "c4": 2.903374942209892, + "c5": 2.177531206657422, + "c6": 1.451687471104946, + "c7": 0.7258437355524701 }, "rgb": [77, 76, 132] }, @@ -312423,23 +312423,23 @@ "year": 1790, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -17.537615524045652, - "c2": 8.246700236505085, - "c3": -20.944700964078425, - "c4": 15.624002249407035, - "c5": -20.80904064008744, - "c6": -11.41358141733148, - "c7": -5.58265831906602 + "points": { + "c1": 21.938593399154705, + "c2": 1.0931174519985092, + "c3": 10.020131695611632, + "c4": 1.4911644877994732, + "c5": 9.792032900726404, + "c6": -2.4642441120284637, + "c7": 23.68110277507774 }, - "vertexSeeds": { - "c1": 6.533250913993234, - "c2": 6.4030787771463, - "c3": 6.652385660036501, - "c4": 6.8900720794631605, - "c5": 6.817693446151228, - "c6": 6.620926551952538, - "c7": 6.858680768020055 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533063, + "c4": 6.638927415626433, + "c5": 4.979195561719824, + "c6": 3.3194637078132163, + "c7": 1.6597318539066082 }, "rgb": [238, 201, 159] }, @@ -312450,23 +312450,23 @@ "year": 1791, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -9.840301747265713, - "c2": -4.217633240878946, - "c3": 24.374468932529325, - "c4": -13.546667623485781, - "c5": -28.44305678858518, - "c6": -15.576242266613466, - "c7": 1.6552337387087874 + "points": { + "c1": 13.787802913803425, + "c2": 35.320920505161, + "c3": -23.69366350023079, + "c4": 23.752672676495905, + "c5": -13.652794996910313, + "c6": -26.676005332466982, + "c7": 20.93771427582321 }, - "vertexSeeds": { - "c1": 0.641079289800609, - "c2": 0.6490301099190763, - "c3": 0.6472001711505682, - "c4": 0.6965096996621635, - "c5": 0.6351800367776157, - "c6": 0.5753258092386522, - "c7": 0.548993466530185 + "offsets": { + "c1": 1.197411003236246, + "c2": 1.0263522884882108, + "c3": 0.8552935737401757, + "c4": 0.6842348589921405, + "c5": 0.5131761442441054, + "c6": 0.34211742949607027, + "c7": 0.17105871474803513 }, "rgb": [222, 0, 59] }, @@ -312477,23 +312477,23 @@ "year": 1791, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 10.771034260413565, - "c2": 5.052496554496578, - "c3": -19.846999512715954, - "c4": -19.079013655108582, - "c5": 0.44418420342151066, - "c6": 25.716508032796007, - "c7": -25.313112898206857 + "points": { + "c1": 15.079423473520784, + "c2": 13.67718313052196, + "c3": -8.67288685592828, + "c4": -8.098590804045163, + "c5": -14.950196824440923, + "c6": 22.262166308706107, + "c7": 25.224643358431358 }, - "vertexSeeds": { - "c1": 6.45599994279555, - "c2": 6.840730621393558, - "c3": 6.548636602198698, - "c4": 6.4700218662315825, - "c5": 6.629510157698153, - "c6": 6.737738589155704, - "c7": 6.555204887029279 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -312504,23 +312504,23 @@ "year": 1791, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 2.5926270588808435, - "c2": 18.19239085937182, - "c3": 9.158997301655432, - "c4": -23.424104855392418, - "c5": 10.511716965602012, - "c6": 29.544670878531292, - "c7": -13.492647250541342 + "points": { + "c1": 30.079394150841743, + "c2": -30.737615755584457, + "c3": 26.239096137282033, + "c4": -0.7502279088609356, + "c5": 2.9856831705298106, + "c6": -1.9005676212915148, + "c7": 24.348231270993146 }, - "vertexSeeds": { - "c1": 7.2735065512224, - "c2": 7.386953636440469, - "c3": 7.149982448767228, - "c4": 7.446675716189677, - "c5": 7.1598327300424405, - "c6": 7.273539647166149, - "c7": 7.4945284469139475 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646322, + "c3": 8.992140545538598, + "c4": 7.193712436430875, + "c5": 5.395284327323151, + "c6": 3.5968562182154478, + "c7": 1.7984281091077239 }, "rgb": [86, 146, 138] }, @@ -312531,23 +312531,23 @@ "year": 1791, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -24.479447754004752, - "c2": -3.281208581700099, - "c3": -44.043766666936335, - "c4": 13.717998117732094, - "c5": 2.3193283433002208, - "c6": -5.621349466839504, - "c7": -6.4286840220243775 + "points": { + "c1": 8.56077837717853, + "c2": 13.302791930143798, + "c3": 4.04635644148798, + "c4": -42.13264019847324, + "c5": 35.63428974079203, + "c6": 33.43080853146459, + "c7": 45.84844585812024 }, - "vertexSeeds": { - "c1": 6.791737635906154, - "c2": 6.724179591752145, - "c3": 6.520588345753404, - "c4": 6.1805614294556515, - "c5": 5.8395692082142086, - "c6": 6.662983736410842, - "c7": 6.420822213308259 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158115, + "c3": 8.136846971798429, + "c4": 6.509477577438743, + "c5": 4.882108183079057, + "c6": 3.2547387887193713, + "c7": 1.6273693943596856 }, "rgb": [222, 0, 59] }, @@ -312558,23 +312558,23 @@ "year": 1790, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 24.527847849631943, - "c2": 14.324168329500079, - "c3": 25.44616733308465, - "c4": 12.732028423628666, - "c5": 17.497484871756253, - "c6": 2.5441955294413603, - "c7": -19.13222712474697 + "points": { + "c1": -16.23412793455156, + "c2": -24.931600310761606, + "c3": -23.69346804313782, + "c4": 17.493566744318247, + "c5": 22.736070051220633, + "c6": 5.227942005954102, + "c7": 11.196807865533852 }, - "vertexSeeds": { - "c1": 5.9069912997657115, - "c2": 6.277776992507736, - "c3": 5.951022673511443, - "c4": 6.0108593745596615, - "c5": 6.218685719269691, - "c6": 6.0383594001236185, - "c7": 6.327317004487336 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152558, + "c3": 7.558945908460482, + "c4": 6.04715672676838, + "c5": 4.535367545076279, + "c6": 3.0235783633842033, + "c7": 1.5117891816921016 }, "rgb": [222, 0, 59] }, @@ -312585,23 +312585,23 @@ "year": 1790, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 21.70250800772823, - "c2": -12.684583899579641, - "c3": -23.395403391346036, - "c4": -16.696090781407534, - "c5": -0.13282865105211883, - "c6": -21.071663460363318, - "c7": -10.840063519680285 + "points": { + "c1": 21.11695176990573, + "c2": 21.67616204599197, + "c3": -6.726756832224119, + "c4": 15.064328834283454, + "c5": -19.685157329400596, + "c6": 9.852813200353548, + "c7": 13.352188573171187 }, - "vertexSeeds": { - "c1": 9.083421043970386, - "c2": 9.254068564307733, - "c3": 8.677134065630932, - "c4": 8.738104803163457, - "c5": 8.60788432739337, - "c6": 8.655159294444744, - "c7": 8.797526135710413 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266293, + "c3": 11.07258437355524, + "c4": 8.85806749884421, + "c5": 6.643550624133157, + "c6": 4.429033749422105, + "c7": 2.2145168747110526 }, "rgb": [222, 0, 59] }, @@ -312612,23 +312612,23 @@ "year": 1791, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -20.916442602806697, - "c2": 10.72421089255652, - "c3": -22.308503328116156, - "c4": 14.785074534582783, - "c5": 25.555152445395713, - "c6": -26.128944198689737, - "c7": 20.85236604856039 + "points": { + "c1": -3.264287602150315, + "c2": 20.928625589825394, + "c3": -0.3290563960757815, + "c4": -29.575003391584442, + "c5": -9.061901088787003, + "c6": -24.392634451437196, + "c7": -25.203787084505596 }, - "vertexSeeds": { - "c1": 2.3463506936722656, - "c2": 2.337530129490589, - "c3": 2.334163464597299, - "c4": 2.3492399086549822, - "c5": 2.3354027431490834, - "c6": 2.340805007783463, - "c7": 2.3473471121703837 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070898, + "c3": 2.820157189089204, + "c4": 2.2561257512713744, + "c5": 1.6920943134535449, + "c6": 1.1280628756357152, + "c7": 0.5640314378178296 }, "rgb": [86, 146, 138] }, @@ -312639,23 +312639,23 @@ "year": 1791, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -37.78076592616273, - "c2": 24.339318421269382, - "c3": 8.446053964505687, - "c4": 28.230312954320397, - "c5": 39.325863420599745, - "c6": 31.968733401894184, - "c7": -9.280343436649538 + "points": { + "c1": -30.290031476736843, + "c2": -19.16840674509277, + "c3": -18.05827613578191, + "c4": -23.760973548322802, + "c5": -6.507579539019318, + "c6": 37.48587730987988, + "c7": 16.415148638102586 }, - "vertexSeeds": { - "c1": 1.6153314728265604, - "c2": 1.6051625173994142, - "c3": 1.6222343638574055, - "c4": 1.6208845682900197, - "c5": 1.630041396869402, - "c6": 1.6255617168408973, - "c7": 1.6002207270752484 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.357836338418854, + "c3": 1.964863615349055, + "c4": 1.5718908922792363, + "c5": 1.1789181692094368, + "c6": 0.7859454461396181, + "c7": 0.3929727230697993 }, "rgb": [238, 201, 159] }, @@ -312666,23 +312666,23 @@ "year": 1791, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -21.848678664063584, - "c2": 4.969191292092503, - "c3": 15.982112033495959, - "c4": 1.27491986581121, - "c5": -4.3646497930263415, - "c6": 10.811955716880306, - "c7": 21.72222235862621 + "points": { + "c1": -8.872811465554175, + "c2": -22.968623140724503, + "c3": -17.45239285825292, + "c4": -25.008520632297685, + "c5": 14.88386050701854, + "c6": 27.809813690295634, + "c7": -23.080435109099966 }, - "vertexSeeds": { - "c1": 9.127471692988438, - "c2": 9.797505933201744, - "c3": 9.881314133036563, - "c4": 9.587523240639113, - "c5": 9.51479052502637, - "c6": 10.102655707166623, - "c7": 9.701858276375484 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076294, + "c3": 12.112806287563567, + "c4": 9.69024503005085, + "c5": 7.267683772538136, + "c6": 4.845122515025419, + "c7": 2.422561257512703 }, "rgb": [86, 146, 138] }, @@ -312693,23 +312693,23 @@ "year": 1791, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -15.607339363426783, - "c2": 13.240317464389964, - "c3": -9.709806544764099, - "c4": 0.516212842371683, - "c5": -10.613905612191644, - "c6": 19.617869162389123, - "c7": -11.39772948657058 + "points": { + "c1": 31.717335963682302, + "c2": -0.5312917645633348, + "c3": -18.55969323030825, + "c4": -19.236150171307166, + "c5": 3.3521989649394044, + "c6": 24.571014719293807, + "c7": 3.4086178817344575 }, - "vertexSeeds": { - "c1": 4.310232447228459, - "c2": 4.334730892656856, - "c3": 4.1305488209333046, - "c4": 3.889283539374273, - "c5": 4.429618250523107, - "c6": 4.996343665684305, - "c7": 4.4068400161899 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618584, + "c3": 6.102635228848821, + "c4": 4.882108183079056, + "c5": 3.6615811373092937, + "c6": 2.441054091539528, + "c7": 1.220527045769762 }, "rgb": [222, 0, 59] }, @@ -312720,23 +312720,23 @@ "year": 1791, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -8.434383970807701, - "c2": 1.5530376864934041, - "c3": 24.349719292368512, - "c4": -17.290147983732012, - "c5": -6.013808283554326, - "c6": -19.827385257741973, - "c7": 6.398387608875609 + "points": { + "c1": 13.572181785826544, + "c2": -3.220088999335868, + "c3": -17.75224966548692, + "c4": 18.42594007154431, + "c5": 5.124199745905422, + "c6": -9.978744295661752, + "c7": -12.775291141912497 }, - "vertexSeeds": { - "c1": 3.5634806692782437, - "c2": 3.7798366743956118, - "c3": 3.6463935095634095, - "c4": 3.9191430492684822, - "c5": 3.5199534425443546, - "c6": 3.703425496194678, - "c7": 3.689281860283929 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285718, + "c3": 4.761904761904761, + "c4": 3.8095238095238115, + "c5": 2.857142857142855, + "c6": 1.9047619047619058, + "c7": 0.952380952380957 }, "rgb": [222, 0, 59] }, @@ -312747,23 +312747,23 @@ "year": 1791, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -21.522289052671972, - "c2": -30.90435193046705, - "c3": -1.569128388053059, - "c4": -20.61956657934514, - "c5": 30.00156672835739, - "c6": 27.95466237633964, - "c7": 5.9850296594367265 + "points": { + "c1": -26.67941001699276, + "c2": 20.131125640456986, + "c3": -2.973796633091837, + "c4": 31.311442011330016, + "c5": -24.06932077612815, + "c6": -19.700319784656532, + "c7": 30.294556143218557 }, - "vertexSeeds": { - "c1": 0.7732069991745918, - "c2": 0.8095750449659287, - "c3": 0.7507234296759713, - "c4": 0.8092410490478172, - "c5": 0.7530925404390375, - "c6": 0.7286614493880069, - "c7": 0.7238813462233694 + "offsets": { + "c1": 1.423948220064725, + "c2": 1.2205270457697646, + "c3": 1.0171058714748042, + "c4": 0.8136846971798437, + "c5": 0.6102635228848832, + "c6": 0.40684234858992097, + "c7": 0.20342117429496048 }, "rgb": [77, 76, 132] }, @@ -312774,23 +312774,23 @@ "year": 1790, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -5.693239236556586, - "c2": -7.170161945758949, - "c3": -15.223322911392625, - "c4": -9.323262662108807, - "c5": -2.388259700976917, - "c6": -10.243757124775147, - "c7": 20.149381207700724 + "points": { + "c1": -17.389793042512547, + "c2": 22.359445958015765, + "c3": -22.466191034735157, + "c4": 14.42794866990398, + "c5": -24.80704611216259, + "c6": -18.496276624156728, + "c7": 13.303154049031829 }, - "vertexSeeds": { - "c1": 6.354498397655261, - "c2": 7.053727597052033, - "c3": 7.214494821591054, - "c4": 6.979378589461204, - "c5": 6.826548403807964, - "c6": 6.138238665502978, - "c7": 7.180938966611428 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968097, + "c3": 9.17706888580675, + "c4": 7.341655108645398, + "c5": 5.506241331484052, + "c6": 3.670827554322699, + "c7": 1.835413777161353 }, "rgb": [238, 201, 159] }, @@ -312801,23 +312801,23 @@ "year": 1791, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 1.9309215097581003, - "c2": 5.357090076230676, - "c3": -27.57537162254318, - "c4": -3.3734332485137486, - "c5": -10.55040204140214, - "c6": 9.613741864615989, - "c7": -11.860774470052718 + "points": { + "c1": 11.273099929446104, + "c2": 33.40521458886687, + "c3": -3.5584642303299034, + "c4": -3.488179278535682, + "c5": -22.59897794665566, + "c6": 4.717540797590011, + "c7": -36.98374694104703 }, - "vertexSeeds": { - "c1": 9.677993531861617, - "c2": 8.780261237685322, - "c3": 9.3855325214889, - "c4": 9.115057689784358, - "c5": 8.954039850898248, - "c6": 9.48948920914664, - "c7": 8.764235747630098 + "offsets": { + "c1": 16.472491909385116, + "c2": 14.11927877947296, + "c3": 11.766065649560792, + "c4": 9.412852519648636, + "c5": 7.05963938973648, + "c6": 4.706426259824311, + "c7": 2.3532131299121555 }, "rgb": [222, 0, 59] }, @@ -312828,23 +312828,23 @@ "year": 1791, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 27.003878569137626, - "c2": 22.23580882690034, - "c3": 28.339393663457813, - "c4": -17.906548754092015, - "c5": 5.821152670467548, - "c6": -34.58755435982297, - "c7": -5.330579921610564 + "points": { + "c1": 35.981223047242864, + "c2": -17.775756113565084, + "c3": 34.67484110986234, + "c4": -12.920609592166823, + "c5": 17.686731700622857, + "c6": -29.86489224180804, + "c7": -28.792792469101368 }, - "vertexSeeds": { - "c1": 1.151581136839403, - "c2": 1.1467416794440626, - "c3": 1.0736174321308658, - "c4": 1.0906155088426601, - "c5": 1.1310451794387937, - "c6": 1.0992645393596632, - "c7": 1.1560292743377927 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937597, + "c3": 1.433194637078132, + "c4": 1.1465557096625065, + "c5": 0.8599167822468788, + "c6": 0.5732778548312533, + "c7": 0.28663892741562563 }, "rgb": [86, 146, 138] }, @@ -312855,23 +312855,23 @@ "year": 1790, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 13.706003586919401, - "c2": -5.441556697199314, - "c3": -2.3247335687456463, - "c4": -16.190195602897976, - "c5": 11.295452438703222, - "c6": 11.532809757070083, - "c7": -3.95877198044246 + "points": { + "c1": -19.89417328994767, + "c2": -23.814413238936805, + "c3": 6.286179079871054, + "c4": -3.5879444976851005, + "c5": -0.8934005578314412, + "c6": 14.988584573666657, + "c7": -10.427331414802616 }, - "vertexSeeds": { - "c1": 0.6900373881172855, - "c2": 0.7275900080360722, - "c3": 0.6947642540501654, - "c4": 0.7207748362282873, - "c5": 0.7425541038227339, - "c6": 0.7354567825396998, - "c7": 0.6890273828008349 + "offsets": { + "c1": 1.3268608414239482, + "c2": 1.137309292649098, + "c3": 0.9477577438742477, + "c4": 0.7582061950993992, + "c5": 0.568654646324549, + "c6": 0.3791030975496987, + "c7": 0.18955154877485028 }, "rgb": [222, 0, 59] }, @@ -312882,23 +312882,23 @@ "year": 1791, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 19.660458665602924, - "c2": -22.671622324928165, - "c3": 8.536361527072543, - "c4": -24.460562014848986, - "c5": -18.214820403828675, - "c6": 22.974958506157925, - "c7": 15.845275306573178 + "points": { + "c1": 6.963427886315799, + "c2": 14.213648934483665, + "c3": -6.695641729108942, + "c4": -7.8754256632966495, + "c5": 0.3125757634317381, + "c6": 6.758544893446555, + "c7": 12.74194414128879 }, - "vertexSeeds": { - "c1": 3.344466278889167, - "c2": 3.285543250379898, - "c3": 3.0899687603708643, - "c4": 3.3836726761475786, - "c5": 3.3288065222588576, - "c6": 3.1841637245998773, - "c7": 3.34777928711358 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079062, + "c3": 4.068423485899213, + "c4": 3.254738788719375, + "c5": 2.441054091539526, + "c6": 1.6273693943596874, + "c7": 0.8136846971798387 }, "rgb": [86, 146, 138] }, @@ -312909,23 +312909,23 @@ "year": 1791, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -14.874259540190245, - "c2": -7.8395984804256855, - "c3": -5.243394685135829, - "c4": -3.897270027355283, - "c5": 0.9077749129680157, - "c6": 3.243144935669129, - "c7": 22.507666374419713 + "points": { + "c1": -29.241425839110814, + "c2": -14.025684722153496, + "c3": -17.77195522891845, + "c4": 2.815167316789605, + "c5": 33.172114716150325, + "c6": -7.029263839362876, + "c7": -12.852012653421383 }, - "vertexSeeds": { - "c1": 1.5660891988249166, - "c2": 1.4434982498151212, - "c3": 1.4137357757635924, - "c4": 1.434475367882079, - "c5": 1.4828528824807197, - "c6": 1.5464976763901939, - "c7": 1.482687373862594 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820163, + "c4": 1.5349052242256116, + "c5": 1.1511789181692105, + "c6": 0.7674526121128058, + "c7": 0.38372630605640473 }, "rgb": [77, 76, 132] }, @@ -312936,23 +312936,23 @@ "year": 1791, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -13.230311187914015, - "c2": -32.419059570893786, - "c3": -15.798367392096228, - "c4": -25.00604113454527, - "c5": -14.536478891526432, - "c6": 16.197205692826117, - "c7": -20.523082074214663 + "points": { + "c1": -33.023128790333274, + "c2": -17.100475238736998, + "c3": 7.200168342526389, + "c4": -8.490065675235854, + "c5": -33.46431661349361, + "c6": 36.16735706720215, + "c7": 19.08845177206924 }, - "vertexSeeds": { - "c1": 2.040155440414508, - "c2": 2.040155440414508, - "c3": 2.040155440414508, - "c4": 2.040155440414508, - "c5": 2.040155440414508, - "c6": 2.040155440414508, - "c7": 2.040155440414508 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -312963,23 +312963,23 @@ "year": 1791, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -49.69282171266778, - "c2": -45.73380648215811, - "c3": -17.710349221603813, - "c4": 20.48516966220339, - "c5": -43.73170893534576, - "c6": -35.75899756110727, - "c7": -14.286320225608556 + "points": { + "c1": -36.31334008923744, + "c2": -5.0765196286030445, + "c3": 19.859741471458733, + "c4": 44.8903860235542, + "c5": 1.6631212754015579, + "c6": -15.929633238344252, + "c7": -32.373265306583214 }, - "vertexSeeds": { - "c1": 1.6451546923759441, - "c2": 1.6358005372961315, - "c3": 1.7279925911185925, - "c4": 1.7089367683316432, - "c5": 1.7581207421401586, - "c6": 1.7381173335786375, - "c7": 1.6474014053249915 + "offsets": { + "c1": 2.9773462783171523, + "c2": 2.5520110957004163, + "c3": 2.1266759130836803, + "c4": 1.7013407304669441, + "c5": 1.2760055478502081, + "c6": 0.8506703652334721, + "c7": 0.42533518261673603 }, "rgb": [238, 201, 159] }, @@ -312990,23 +312990,23 @@ "year": 1791, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -21.13533036966848, - "c2": 4.659571932600901, - "c3": 10.742952694308958, - "c4": 10.708025631070608, - "c5": 5.25271528069948, - "c6": 10.036818525678452, - "c7": 1.211220216885362 + "points": { + "c1": 2.7072712651025306, + "c2": -26.247898631242187, + "c3": 14.022349318987171, + "c4": 6.370490656476253, + "c5": 23.752720205625504, + "c6": 2.4873708057582853, + "c7": 16.58826240787354 }, - "vertexSeeds": { - "c1": 6.016474635360664, - "c2": 6.018644867519875, - "c3": 6.005080217385272, - "c4": 6.012799502164138, - "c5": 6.009458422819124, - "c6": 6.011165679405437, - "c7": 6.011001981047453 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246855, + "c3": 7.165973185390743, + "c4": 5.732778548312366, + "c5": 4.29958391123456, + "c6": 2.866389274156183, + "c7": 1.4331946370783766 }, "rgb": [222, 0, 59] }, @@ -313017,23 +313017,23 @@ "year": 1791, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 23.71023720149624, - "c2": 39.69462339779035, - "c3": -13.321698431905041, - "c4": 23.92065455557203, - "c5": -40.3576394723127, - "c6": 31.88217032747913, - "c7": 28.857138820803826 + "points": { + "c1": 7.159079117957461, + "c2": 21.01800133168635, + "c3": 31.89368213778826, + "c4": 33.43318859501353, + "c5": -21.76955109822627, + "c6": 43.35434543245573, + "c7": -29.680001969583138 }, - "vertexSeeds": { - "c1": 1.8822861034304432, - "c2": 1.7868082729620776, - "c3": 1.9449012114467505, - "c4": 1.941274401837625, - "c5": 1.9351963592576917, - "c6": 1.6819239738509735, - "c7": 1.7415661192779344 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.8848821081830804, + "c3": 2.4040684234858984, + "c4": 1.923254738788719, + "c5": 1.4424410540915402, + "c6": 0.9616273693943582, + "c7": 0.4808136846971791 }, "rgb": [58, 15, 49] }, @@ -313044,23 +313044,23 @@ "year": 1791, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -13.194780097320855, - "c2": 23.366348970617878, - "c3": 7.581166327632786, - "c4": -15.92092399510027, - "c5": -11.406946360414999, - "c6": -6.046219250375621, - "c7": -13.866405498108456 + "points": { + "c1": -9.316289071283169, + "c2": -25.952509771917107, + "c3": 12.02738065669994, + "c4": 24.44192584796695, + "c5": -19.35021440326651, + "c6": -29.885007276057557, + "c7": 2.2637015334349897 }, - "vertexSeeds": { - "c1": 8.205038209624933, - "c2": 8.448452425399084, - "c3": 8.342805899842311, - "c4": 7.849789035650375, - "c5": 8.373921654849786, - "c6": 8.368197174924546, - "c7": 8.538636799475578 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737866, + "c3": 10.19417475728156, + "c4": 8.155339805825252, + "c5": 6.116504854368944, + "c6": 4.077669902912615, + "c7": 2.0388349514563076 }, "rgb": [238, 201, 159] }, @@ -313071,23 +313071,23 @@ "year": 1791, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 37.33348490157856, - "c2": -8.231887105357117, - "c3": -3.7648018971141255, - "c4": 25.368646656573944, - "c5": -21.245478524027767, - "c6": 12.653580296267293, - "c7": -25.9028848513262 + "points": { + "c1": -42.060783331586535, + "c2": -22.16769848958869, + "c3": 22.936091015468975, + "c4": 35.614296142061065, + "c5": -22.248607817508855, + "c6": 3.364270997192385, + "c7": 8.266897174737338 }, - "vertexSeeds": { - "c1": 4.45164780568222, - "c2": 4.642442024006801, - "c3": 4.510268555806612, - "c4": 4.452350532604936, - "c5": 4.775770345131708, - "c6": 4.753598382319238, - "c7": 4.651329090097735 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [58, 15, 49] }, @@ -313098,23 +313098,23 @@ "year": 1791, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -10.827403631006902, - "c2": -2.082768028080494, - "c3": -15.478924246600432, - "c4": -23.382555870635755, - "c5": -8.098099020473455, - "c6": 3.2770142977380203, - "c7": -11.47444718887959 + "points": { + "c1": 29.653428270375947, + "c2": -22.698637774381773, + "c3": -31.076824556666207, + "c4": 3.5611991743696763, + "c5": 23.915470451314725, + "c6": -2.642288624458576, + "c7": -24.20111086799208 }, - "vertexSeeds": { - "c1": 10.509525346613383, - "c2": 10.502902570280323, - "c3": 10.551905822866653, - "c4": 10.561637412394978, - "c5": 10.568304925296781, - "c6": 10.441688733996681, - "c7": 10.507596713361536 + "offsets": { + "c1": 17.637540453074433, + "c2": 15.117891816920942, + "c3": 12.598243180767453, + "c4": 10.078594544613962, + "c5": 7.558945908460471, + "c6": 5.039297272306981, + "c7": 2.5196486361534904 }, "rgb": [58, 15, 49] }, @@ -313125,23 +313125,23 @@ "year": 1791, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -18.287011089349782, - "c2": 20.849192268274983, - "c3": -0.2461245424163785, - "c4": 13.365618708516365, - "c5": -3.9049156218339043, - "c6": 6.011518129552485, - "c7": 9.354889471507981 + "points": { + "c1": -30.214846847175405, + "c2": 25.52465009169716, + "c3": 7.351843880590913, + "c4": -4.574196771321628, + "c5": -19.019236607282657, + "c6": -12.004565553451265, + "c7": 29.14728835759294 }, - "vertexSeeds": { - "c1": 5.32188530524769, - "c2": 5.29732102511439, - "c3": 4.601149681410049, - "c4": 4.465659463604855, - "c5": 4.8389654931929105, - "c6": 5.015265648470177, - "c7": 4.753783033220958 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221912, + "c3": 6.449375866851598, + "c4": 5.159500693481277, + "c5": 3.869625520110956, + "c6": 2.5797503467406386, + "c7": 1.2898751733703215 }, "rgb": [238, 201, 159] }, @@ -313152,23 +313152,23 @@ "year": 1791, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -18.80225438989041, - "c2": -5.124851374579869, - "c3": 0.343245919036427, - "c4": 14.245354970757319, - "c5": 34.146937669761485, - "c6": -25.306938181368967, - "c7": 3.6124600128459434 + "points": { + "c1": 32.15457431612349, + "c2": 29.13201975486851, + "c3": -2.8710801197047644, + "c4": 40.48675472262775, + "c5": -14.74340719844649, + "c6": 23.872757524272927, + "c7": -24.282166336100893 }, - "vertexSeeds": { - "c1": 5.844221365754239, - "c2": 5.86525108028338, - "c3": 5.802662415054578, - "c4": 6.005829253041663, - "c5": 5.791962926466976, - "c6": 5.913301633108707, - "c7": 5.755958552340179 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710121, + "c3": 7.304669440591762, + "c4": 5.843735552473404, + "c5": 4.382801664355076, + "c6": 2.9218677762367173, + "c7": 1.4609338881183587 }, "rgb": [58, 15, 49] }, @@ -313179,23 +313179,23 @@ "year": 1792, "resistanceReported": false, "duration": 48556800, - "curveSeeds": { - "c1": -55.88814173638235, - "c2": 34.238929279354196, - "c3": -61.45705688250359, - "c4": 29.778576738604542, - "c5": 51.34770076883939, - "c6": -16.41325036582554, - "c7": -16.467791157637784 + "points": { + "c1": 17.16114862750665, + "c2": -3.0232482365962667, + "c3": -57.97558063863963, + "c4": -62.903679745128585, + "c5": -9.649196969077003, + "c6": -48.81125531636407, + "c7": 16.016642950696294 }, - "vertexSeeds": { - "c1": 3.804047843015482, - "c2": 3.6182099909991727, - "c3": 3.9130462205125465, - "c4": 4.025692156091209, - "c5": 4.1779761247043385, - "c6": 3.8169367322920915, - "c7": 3.6666320457819164 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848824, + "c3": 5.085529357374017, + "c4": 4.068423485899215, + "c5": 3.0513176144244145, + "c6": 2.0342117429496076, + "c7": 1.0171058714748067 }, "rgb": [238, 201, 159] }, @@ -313206,23 +313206,23 @@ "year": 1791, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -2.1554375712870844, - "c2": 17.81049088146656, - "c3": -25.139224838761464, - "c4": -24.72866831159011, - "c5": -6.125742136043911, - "c6": -5.809945701735796, - "c7": 4.022142935846642 + "points": { + "c1": -26.716035890415878, + "c2": -10.241051344947817, + "c3": -6.075195786784988, + "c4": 18.288846398443475, + "c5": 14.388443317620172, + "c6": 26.031142324068718, + "c7": -6.7399105950908265 }, - "vertexSeeds": { - "c1": 4.296757222229256, - "c2": 3.7809055358817485, - "c3": 4.0736907358402235, - "c4": 3.7703394340702787, - "c5": 4.30726962455144, - "c6": 4.056812275365114, - "c7": 4.114864617421769 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969486, + "c3": 5.154877484974575, + "c4": 4.123901987979659, + "c5": 3.092926490984743, + "c6": 2.061950993989832, + "c7": 1.030975496994916 }, "rgb": [86, 146, 138] }, @@ -313233,23 +313233,23 @@ "year": 1791, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -25.53380276303115, - "c2": -26.29307289117696, - "c3": 13.229653234009948, - "c4": -19.766754389186644, - "c5": 28.78996953144488, - "c6": -24.711227377277588, - "c7": -26.22371629104861 + "points": { + "c1": 31.087268834145625, + "c2": 30.116160083435588, + "c3": -16.872559392942712, + "c4": -6.761929628836729, + "c5": 2.9080837086774025, + "c6": -24.327037991181893, + "c7": -9.653738516479219 }, - "vertexSeeds": { - "c1": 9.91590425388464, - "c2": 9.897351862083186, - "c3": 9.919641746621068, - "c4": 9.91825563838051, - "c5": 9.882585279525744, - "c6": 9.882721395496516, - "c7": 9.904664302662393 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.20249653259353, + "c3": 11.835413777161483, + "c4": 9.468331021729124, + "c5": 7.101248266296765, + "c6": 4.734165510864405, + "c7": 2.3670827554323592 }, "rgb": [77, 76, 132] }, @@ -313260,23 +313260,23 @@ "year": 1791, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -14.711518552960992, - "c2": 30.174250252702876, - "c3": 16.14531277415101, - "c4": 10.143501474246982, - "c5": -28.09973007655877, - "c6": -23.075759227698452, - "c7": -17.54384122790763 + "points": { + "c1": 29.009925434322042, + "c2": 14.076578257196303, + "c3": -18.907385556760794, + "c4": -33.06357887747305, + "c5": 33.48100862288018, + "c6": 8.92925180830332, + "c7": -7.367762812808991 }, - "vertexSeeds": { - "c1": 7.0883920226560235, - "c2": 6.700717270312551, - "c3": 7.068491107392996, - "c4": 6.941316104210381, - "c5": 6.830666762723677, - "c6": 6.884658405898009, - "c7": 7.0767568467131925 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123446, + "c3": 8.691631992602856, + "c4": 6.953305594082289, + "c5": 5.214979195561723, + "c6": 3.476652797041156, + "c7": 1.738326398520567 }, "rgb": [77, 76, 132] }, @@ -313287,23 +313287,23 @@ "year": 1791, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -2.632364022790842, - "c2": 0.7937021384993201, - "c3": 23.597943046171288, - "c4": -3.944109618258917, - "c5": -6.570410744867974, - "c6": -11.037268762054126, - "c7": 21.383885205189607 + "points": { + "c1": 0.9476023562079519, + "c2": 3.922272766336434, + "c3": -20.687715480931978, + "c4": -18.968710054778633, + "c5": -3.0403330010044094, + "c6": -0.11569172780221848, + "c7": 25.11950345434157 }, - "vertexSeeds": { - "c1": 5.717084632823247, - "c2": 5.712462317713079, - "c3": 5.404074493851515, - "c4": 5.3331119512294185, - "c5": 5.463440571305756, - "c6": 5.712144422405677, - "c7": 5.627505906881821 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905695, + "c3": 6.842348589921403, + "c4": 5.4738788719371305, + "c5": 4.105409153952838, + "c6": 2.7369394359685653, + "c7": 1.3684697179842926 }, "rgb": [222, 0, 59] }, @@ -313314,23 +313314,23 @@ "year": 1791, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -23.485218816685663, - "c2": 22.7235499177989, - "c3": -11.746981337450393, - "c4": -19.06163872260409, - "c5": 0.03818549853119535, - "c6": -10.053929448000126, - "c7": 7.356601195091251 + "points": { + "c1": -7.991027046943859, + "c2": 27.17713655621823, + "c3": 14.338678886357158, + "c4": -19.290075285779047, + "c5": -19.73906666847097, + "c6": -22.527413142454407, + "c7": 5.369374713517956 }, - "vertexSeeds": { - "c1": 4.907105731778423, - "c2": 4.00724312114296, - "c3": 4.538507045769141, - "c4": 4.486557611994977, - "c5": 4.257434416399697, - "c6": 4.235497951216942, - "c7": 4.35301579172528 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497917, + "c3": 6.033287101248265, + "c4": 4.826629680998611, + "c5": 3.6199722607489604, + "c6": 2.4133148404993054, + "c7": 1.206657420249651 }, "rgb": [86, 146, 138] }, @@ -313341,23 +313341,23 @@ "year": 1791, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 0.3589176169312651, - "c2": -43.23509091032651, - "c3": 21.845770352590307, - "c4": 24.6546059957856, - "c5": -41.43478335716785, - "c6": -21.723302718406075, - "c7": 19.925092262189082 + "points": { + "c1": -23.143276519900347, + "c2": 14.927219892099998, + "c3": 5.46450294966472, + "c4": 40.521700754404236, + "c5": 9.36416037376194, + "c6": -39.99563853108881, + "c7": 38.20255491336329 }, - "vertexSeeds": { - "c1": 3.733126254736744, - "c2": 3.6906631409895057, - "c3": 3.7995686725404867, - "c4": 3.8468910728884933, - "c5": 3.836984033692131, - "c6": 3.690627345411197, - "c7": 3.7868882041238123 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004168, + "c3": 4.600092464170132, + "c4": 3.680073971336113, + "c5": 2.760055478502075, + "c6": 1.8400369856680565, + "c7": 0.9200184928340374 }, "rgb": [86, 146, 138] }, @@ -313368,23 +313368,23 @@ "year": 1791, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 21.553115693282344, - "c2": 7.905084918738332, - "c3": 9.847130367205786, - "c4": 7.356443248217062, - "c5": -9.230730663330025, - "c6": 7.510690866695562, - "c7": 11.665968992573362 + "points": { + "c1": 26.337244347539084, + "c2": 17.98890802240207, + "c3": 29.995370257187595, + "c4": -6.204052902152579, + "c5": -10.03326508556291, + "c6": 6.593159382065835, + "c7": 9.346804429276524 }, - "vertexSeeds": { - "c1": 13.395564252328501, - "c2": 12.861641582780203, - "c3": 12.70669427378094, - "c4": 13.40821895438425, - "c5": 12.460681234540948, - "c6": 12.735173401213329, - "c7": 13.124016640870487 + "offsets": { + "c1": 22.62135922330097, + "c2": 19.38973647711511, + "c3": 16.15811373092925, + "c4": 12.926490984743394, + "c5": 9.694868238557577, + "c6": 6.463245492371718, + "c7": 3.231622746185859 }, "rgb": [58, 15, 49] }, @@ -313395,23 +313395,23 @@ "year": 1791, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 0.0010192685060275153, - "c2": 35.50550845391588, - "c3": -16.074615202011678, - "c4": 2.1497922143731785, - "c5": 11.4684505409679, - "c6": 5.610873997206227, - "c7": 26.805786758966576 + "points": { + "c1": -32.869603958228225, + "c2": -33.8973286592472, + "c3": -7.5775189475993585, + "c4": -22.728522427308164, + "c5": -27.930828209420973, + "c6": -14.15663138051805, + "c7": 17.0198152507936 }, - "vertexSeeds": { - "c1": 6.769679486753247, - "c2": 6.8462666418263485, - "c3": 6.828469308037717, - "c4": 6.849736452871332, - "c5": 6.856240004848548, - "c6": 6.828686248408032, - "c7": 6.728011344293764 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.84743411927879, + "c3": 8.206195099399002, + "c4": 6.5649560795192174, + "c5": 4.92371705963943, + "c6": 3.2824780397595723, + "c7": 1.6412390198797862 }, "rgb": [222, 0, 59] }, @@ -313422,23 +313422,23 @@ "year": 1791, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -21.223531040939122, - "c2": 10.168587344303322, - "c3": 20.500879683661385, - "c4": 10.147448877207342, - "c5": 20.321932744036264, - "c6": -6.567178528346734, - "c7": 4.945697672969946 + "points": { + "c1": -2.4490331716329194, + "c2": 9.726983905442335, + "c3": 24.586742116630912, + "c4": -20.215649624592608, + "c5": -10.77047492778247, + "c6": 7.692996371082838, + "c7": 6.950052201486049 }, - "vertexSeeds": { - "c1": 4.90680556660502, - "c2": 4.9506918956377834, - "c3": 5.2357203288357494, - "c4": 5.28338213289178, - "c5": 5.03863159563324, - "c6": 4.9728537640545, - "c7": 4.92059913645121 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251046, + "c4": 5.1040221914008415, + "c5": 3.8280166435506366, + "c6": 2.55201109570041, + "c7": 1.276005547850205 }, "rgb": [238, 201, 159] }, @@ -313449,23 +313449,23 @@ "year": 1791, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 29.394164384764196, - "c2": -34.49627673239485, - "c3": 29.77834849188727, - "c4": 30.405720287041902, - "c5": -7.317182780223099, - "c6": 3.9079291804921255, - "c7": 27.90960068264846 + "points": { + "c1": -20.23980425812072, + "c2": 12.757368265886086, + "c3": 20.969076806391953, + "c4": 16.5125380287545, + "c5": -34.16747368506661, + "c6": 18.43866648576018, + "c7": -11.676988168470004 }, - "vertexSeeds": { - "c1": 2.641579740883925, - "c2": 2.6617920453285415, - "c3": 2.6526060728797853, - "c4": 2.6395279924942, - "c5": 2.6622752436407238, - "c6": 2.639899974972153, - "c7": 2.665014769461687 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310547, + "c3": 3.2362459546925613, + "c4": 2.5889967637540363, + "c5": 1.9417475728155433, + "c6": 1.2944983818770182, + "c7": 0.647249190938493 }, "rgb": [58, 15, 49] }, @@ -313476,23 +313476,23 @@ "year": 1791, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -9.08975193976993, - "c2": -4.090381656105059, - "c3": -6.201654760414254, - "c4": 23.5658542756594, - "c5": 29.41514163414912, - "c6": -23.092575748896916, - "c7": -29.63247575683591 + "points": { + "c1": -14.79734200794254, + "c2": 22.834313585952096, + "c3": -16.155234706294443, + "c4": 5.08887341796045, + "c5": -12.6895097305465, + "c6": -31.36271309169612, + "c7": 2.0436486368310582 }, - "vertexSeeds": { - "c1": 2.6819766626032924, - "c2": 2.5760184776025663, - "c3": 2.6559270629755707, - "c4": 2.4771692941796624, - "c5": 2.5615616220003665, - "c6": 2.689737997463371, - "c7": 2.599093602613334 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631065, + "c3": 3.2362459546925613, + "c4": 2.588996763754047, + "c5": 1.9417475728155325, + "c6": 1.294498381877029, + "c7": 0.6472491909385145 }, "rgb": [86, 146, 138] }, @@ -313503,23 +313503,23 @@ "year": 1791, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -32.03485278934224, - "c2": 1.8817347925972143, - "c3": -30.978405006975844, - "c4": -2.142213369452733, - "c5": -1.587513917259237, - "c6": 14.73572316082889, - "c7": 31.10584740643933 + "points": { + "c1": -27.88096981859384, + "c2": 5.866551699119455, + "c3": -32.87942215137653, + "c4": 1.6410769684798083, + "c5": 34.225013085711176, + "c6": -22.66229181165902, + "c7": -34.223163594632325 }, - "vertexSeeds": { - "c1": 7.58229858991887, - "c2": 7.59997061237067, - "c3": 7.62403018501539, - "c4": 6.455400785382547, - "c5": 6.541769627009382, - "c6": 7.0620840686548725, - "c7": 7.398550327997142 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407306, + "c4": 7.397133610725838, + "c5": 5.547850208044379, + "c6": 3.698566805362919, + "c7": 1.8492834026814595 }, "rgb": [77, 76, 132] }, @@ -313530,23 +313530,23 @@ "year": 1791, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 19.771222339910402, - "c2": -25.319085766430582, - "c3": -19.532642877968314, - "c4": -19.102386494722104, - "c5": 17.056915427128587, - "c6": 4.272083381317252, - "c7": -11.075191890225327 + "points": { + "c1": -20.184743522563572, + "c2": -30.8965277884692, + "c3": -15.268885013575666, + "c4": 34.54153917372653, + "c5": 4.007419008588343, + "c6": -23.831524915937152, + "c7": 25.648384687940023 }, - "vertexSeeds": { - "c1": 6.120491977915129, - "c2": 6.125577916950361, - "c3": 6.129158717193527, - "c4": 6.123730141352888, - "c5": 6.123963932145814, - "c6": 6.1327368846601935, - "c7": 6.135943981187203 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750098, + "c3": 7.327785483125373, + "c4": 5.862228386500065, + "c5": 4.39667128987534, + "c6": 2.9311141932500324, + "c7": 1.4655570966253078 }, "rgb": [238, 201, 159] }, @@ -313557,23 +313557,23 @@ "year": 1791, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 0.5921999852282802, - "c2": 25.721659800316587, - "c3": -8.836724830572493, - "c4": 6.423855030950115, - "c5": -5.987175661885193, - "c6": -9.769662974428673, - "c7": -12.26536934453023 + "points": { + "c1": -9.717156636559046, + "c2": -12.079260826624711, + "c3": 11.70957501381178, + "c4": 15.57864420723579, + "c5": -8.369728398363222, + "c6": -12.843277338611038, + "c7": -26.27308857460675 }, - "vertexSeeds": { - "c1": 4.562073097238836, - "c2": 4.594925423421575, - "c3": 4.549565985764174, - "c4": 4.556856857666485, - "c5": 4.5116950613858045, - "c6": 4.510802517310411, - "c7": 4.547687073307242 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572811, + "c3": 5.501618122977336, + "c4": 4.4012944983818985, + "c5": 3.3009708737864236, + "c6": 2.2006472491909492, + "c7": 1.1003236245954746 }, "rgb": [77, 76, 132] }, @@ -313584,23 +313584,23 @@ "year": 1791, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 11.283255512896698, - "c2": 17.078134373187982, - "c3": 18.114549107503297, - "c4": 16.821811068748058, - "c5": 3.565112201158346, - "c6": 3.12635944532067, - "c7": -24.35326792086832 + "points": { + "c1": -16.395129509198345, + "c2": 16.685027874548492, + "c3": 1.4496929682554942, + "c4": 31.723406544981888, + "c5": 8.264987590683017, + "c6": -19.663400535813658, + "c7": -27.81454856813793 }, - "vertexSeeds": { - "c1": 1.8190294319000881, - "c2": 1.802741154573143, - "c3": 1.8554024795636836, - "c4": 1.8251174936652381, - "c5": 1.8092366977076941, - "c6": 1.848170131544549, - "c7": 1.7969344393402984 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.6907073509015236, + "c3": 2.2422561257512745, + "c4": 1.7938049006010182, + "c5": 1.3453536754507618, + "c6": 0.8969024503005054, + "c7": 0.4484512251502565 }, "rgb": [77, 76, 132] }, @@ -313611,23 +313611,23 @@ "year": 1791, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -10.484502484897714, - "c2": 32.82152929862583, - "c3": 31.406181459846024, - "c4": -17.021103996371966, - "c5": -34.280553499827015, - "c6": 15.608976819404567, - "c7": -19.092512234228096 + "points": { + "c1": -30.5638097474099, + "c2": -36.24193269922943, + "c3": 3.6874190846974386, + "c4": 25.73579542763286, + "c5": 31.115655115217436, + "c6": -18.98963362844195, + "c7": -36.22428057440031 }, - "vertexSeeds": { - "c1": 5.913440602786662, - "c2": 6.193333425837167, - "c3": 6.191684798451063, - "c4": 6.187889161774685, - "c5": 6.272017004083782, - "c6": 6.1615908185060855, - "c7": 6.088612233359537 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061032, + "c4": 6.10263522884883, + "c5": 4.576976421636607, + "c6": 3.0513176144244047, + "c7": 1.5256588072122024 }, "rgb": [58, 15, 49] }, @@ -313638,23 +313638,23 @@ "year": 1791, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -5.613248317019547, - "c2": -28.082398687537985, - "c3": -24.832769245339712, - "c4": 12.985536380942996, - "c5": -30.167633369353226, - "c6": -10.25746339771458, - "c7": -30.87000328189756 + "points": { + "c1": 11.409124092209737, + "c2": -23.661710923655296, + "c3": -5.5399619597957965, + "c4": 20.65980428989836, + "c5": 31.66864195888853, + "c6": -14.450404836995563, + "c7": 29.96849411072833 }, - "vertexSeeds": { - "c1": 4.475814798948908, - "c2": 4.351892735940477, - "c3": 4.426167269921247, - "c4": 4.241517636056753, - "c5": 4.302098324092594, - "c6": 4.259908491068847, - "c7": 4.483664176893628 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572813, + "c3": 5.50161812297735, + "c4": 4.401294498381879, + "c5": 3.3009708737864063, + "c6": 2.2006472491909435, + "c7": 1.1003236245954717 }, "rgb": [58, 15, 49] }, @@ -313665,23 +313665,23 @@ "year": 1791, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 23.743273492257188, - "c2": 8.903305225355766, - "c3": -14.348940575541121, - "c4": -2.3087521506575754, - "c5": -4.128379247978678, - "c6": -7.093766775220281, - "c7": 5.955686306800402 + "points": { + "c1": -25.918596712702673, + "c2": -1.9656815598204247, + "c3": 25.965069128694353, + "c4": 7.879830772882663, + "c5": -26.15339890543317, + "c6": 29.48133674276211, + "c7": 20.059866539981364 }, - "vertexSeeds": { - "c1": 5.319442142754599, - "c2": 5.443737197257748, - "c3": 1.8695741415870268, - "c4": 6.958213234580797, - "c5": 3.6079561028514986, - "c6": 3.9091606608501053, - "c7": 2.8801675150928636 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841887, + "c3": 8.52981969486824, + "c4": 6.82385575589459, + "c5": 5.1178918169209435, + "c6": 3.411927877947296, + "c7": 1.705963938973648 }, "rgb": [77, 76, 132] }, @@ -313692,23 +313692,23 @@ "year": 1793, "resistanceReported": false, "duration": 86227200, - "curveSeeds": { - "c1": -80.5298954416005, - "c2": 86.10194646374282, - "c3": 44.99196662744441, - "c4": 17.727400170965893, - "c5": -54.257873091815604, - "c6": 45.181976204293846, - "c7": 16.79334771265067 + "points": { + "c1": -43.235399157577916, + "c2": 3.23840938608609, + "c3": 65.39724294512476, + "c4": 65.28996461220328, + "c5": -7.4163166815803265, + "c6": 81.33488351011187, + "c7": 73.24050685318932 }, - "vertexSeeds": { - "c1": 13.454028540816072, - "c2": 14.148896639635215, - "c3": 13.602950412113893, - "c4": 13.505107655819964, - "c5": 13.551337324326814, - "c6": 14.244247700987271, - "c7": 14.297211647478145 + "offsets": { + "c1": 23.980582524271846, + "c2": 20.554785020804445, + "c3": 17.128987517337045, + "c4": 13.703190013869644, + "c5": 10.277392510402201, + "c6": 6.851595006934802, + "c7": 3.425797503467401 }, "rgb": [77, 76, 132] }, @@ -313719,23 +313719,23 @@ "year": 1791, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 22.158596938244862, - "c2": -17.361321994477127, - "c3": 17.917552075389395, - "c4": -29.694936817672463, - "c5": -33.94316324057508, - "c6": 28.603947174978984, - "c7": -13.1685320096353 + "points": { + "c1": 22.503660661210155, + "c2": 23.063829008144296, + "c3": 13.492972640537609, + "c4": -29.152778689829216, + "c5": -31.152582960506813, + "c6": -24.710871807615693, + "c7": 28.378950030494764 }, - "vertexSeeds": { - "c1": 6.296293818645936, - "c2": 6.067646859197956, - "c3": 6.451200686314331, - "c4": 6.131718059130537, - "c5": 5.981031196143601, - "c6": 6.178507074472454, - "c7": 6.24569779445592 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [77, 76, 132] }, @@ -313746,23 +313746,23 @@ "year": 1791, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 19.571920017387242, - "c2": -5.196188133098342, - "c3": -24.000794433483172, - "c4": 19.895136468254385, - "c5": 27.97307356207429, - "c6": 18.699284884769142, - "c7": -26.04260469562466 + "points": { + "c1": -26.224563282057073, + "c2": 0.6069116035231517, + "c3": 8.927257189760482, + "c4": 27.52778746217526, + "c5": 26.621910836547556, + "c6": -24.692699064083534, + "c7": -15.965514789519453 }, - "vertexSeeds": { - "c1": 5.750499553942045, - "c2": 5.8454498683594815, - "c3": 5.8618446724467255, - "c4": 5.949212742044542, - "c5": 6.074543350239615, - "c6": 6.02269772020553, - "c7": 5.64686388874085 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750357, + "c3": 7.327785483125286, + "c4": 5.862228386500238, + "c5": 4.396671289875168, + "c6": 2.931114193250119, + "c7": 1.4655570966250486 }, "rgb": [238, 201, 159] }, @@ -313773,23 +313773,23 @@ "year": 1791, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 5.03166688221004, - "c2": -6.9966965875377305, - "c3": -4.354765413168458, - "c4": 9.557832398531431, - "c5": 19.47614559765553, - "c6": 3.1771147533668227, - "c7": -15.26417767821184 + "points": { + "c1": -12.30222894135052, + "c2": 12.567954645239169, + "c3": 20.854616094456198, + "c4": 35.501569939407275, + "c5": 12.366431565879992, + "c6": 6.293649097700488, + "c7": 16.117527008279815 }, - "vertexSeeds": { - "c1": 2.2934272520022003, - "c2": 2.295804372511731, - "c3": 2.350433175072797, - "c4": 2.2879576854411687, - "c5": 2.3225382797049945, - "c6": 2.327542287639871, - "c7": 2.2801261030947244 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070756, + "c3": 2.820157189089232, + "c4": 2.2561257512713886, + "c5": 1.6920943134535449, + "c6": 1.1280628756357012, + "c7": 0.5640314378178436 }, "rgb": [77, 76, 132] }, @@ -313800,23 +313800,23 @@ "year": 1791, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 7.415249580882811, - "c2": 20.722970432659505, - "c3": -15.28695309837593, - "c4": -20.605360045829244, - "c5": 21.13595410928912, - "c6": -5.7372231833170595, - "c7": 14.015313389957843 + "points": { + "c1": -2.8424456391011184, + "c2": 23.247960634703023, + "c3": -8.979300791866088, + "c4": -15.147967861848397, + "c5": 9.991679990214148, + "c6": 18.319401287920673, + "c7": 14.460371115028945 }, - "vertexSeeds": { - "c1": 4.798693802423787, - "c2": 4.862431815608522, - "c3": 4.671731047897287, - "c4": 4.659001079924964, - "c5": 4.9216607903395415, - "c6": 4.65385301667443, - "c7": 4.979669097531662 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181233, + "c4": 4.789644012944988, + "c5": 3.5922330097087443, + "c6": 2.394822006472489, + "c7": 1.1974110032362553 }, "rgb": [77, 76, 132] }, @@ -313827,23 +313827,23 @@ "year": 1791, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -28.043144643134788, - "c2": -25.125733564171036, - "c3": 0.810837837131146, - "c4": 28.87909069110586, - "c5": 27.34958210482406, - "c6": -24.83425024079707, - "c7": -1.6713216441843386 + "points": { + "c1": -4.1431919879440215, + "c2": -7.74208401949728, + "c3": -12.78637967250657, + "c4": 7.048572105011843, + "c5": 6.808852949065006, + "c6": -35.87287314938544, + "c7": -0.6063066056743409 }, - "vertexSeeds": { - "c1": 5.101763314433637, - "c2": 4.307223026977121, - "c3": 4.778350346294457, - "c4": 4.430233200627522, - "c5": 4.455563593906619, - "c6": 4.802301959354358, - "c7": 5.090911851104681 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -313854,23 +313854,23 @@ "year": 1791, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 18.793375163131394, - "c2": -19.633187401121013, - "c3": -28.641421883338737, - "c4": -23.00168691365099, - "c5": 5.636333774251192, - "c6": 7.024562857578545, - "c7": 36.46031923841635 + "points": { + "c1": 9.527701233096408, + "c2": -33.69754580012281, + "c3": -2.5561488181468874, + "c4": 24.24734143961492, + "c5": -31.443322042010223, + "c6": 41.58813781371587, + "c7": 31.9178387769902 }, - "vertexSeeds": { - "c1": 10.421571312012045, - "c2": 10.489735624753651, - "c3": 10.4656365408119, - "c4": 10.445014218615901, - "c5": 10.397828226409116, - "c6": 10.452790439965806, - "c7": 10.488220351526712 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.006934812760226, + "c3": 12.505779010633324, + "c4": 10.00462320850682, + "c5": 7.503467406379914, + "c6": 5.00231160425341, + "c7": 2.5011558021265055 }, "rgb": [238, 201, 159] }, @@ -313881,23 +313881,23 @@ "year": 1791, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 13.95734230617083, - "c2": -32.57576960323298, - "c3": -6.071664444445172, - "c4": 26.226139911157055, - "c5": 14.674488697997944, - "c6": -12.391355265378657, - "c7": -22.172323988869614 + "points": { + "c1": -29.14817524233256, + "c2": 1.302330164765742, + "c3": -22.035787313634394, + "c4": 16.207534898471117, + "c5": 3.9229458491620335, + "c6": 30.623521714821656, + "c7": -24.32577788491365 }, - "vertexSeeds": { - "c1": 10.499951449286153, - "c2": 10.759825521724371, - "c3": 10.089257804570732, - "c4": 10.979231705582631, - "c5": 10.542278480688147, - "c6": 10.688977617397024, - "c7": 10.688873851943049 + "offsets": { + "c1": 18.349514563106798, + "c2": 15.728155339805813, + "c3": 13.106796116504832, + "c4": 10.48543689320389, + "c5": 7.8640776699029065, + "c6": 5.242718446601923, + "c7": 2.6213592233009835 }, "rgb": [77, 76, 132] }, @@ -313908,23 +313908,23 @@ "year": 1791, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": 5.210513042350591, - "c2": -50.51691632868425, - "c3": -14.32842931544667, - "c4": 36.26175956004866, - "c5": -21.62879933255747, - "c6": -31.368615810567437, - "c7": 25.298418136344196 + "points": { + "c1": -4.915469564637036, + "c2": -2.199821875910793, + "c3": 16.92547220006766, + "c4": 22.474452846642137, + "c5": 10.329209639288095, + "c6": 8.802622631495893, + "c7": -32.58794069591363 }, - "vertexSeeds": { - "c1": 3.8082901554404147, - "c2": 3.8082901554404147, - "c3": 3.8082901554404147, - "c4": 3.8082901554404147, - "c5": 3.8082901554404147, - "c6": 3.8082901554404147, - "c7": 3.8082901554404147 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -313935,23 +313935,23 @@ "year": 1791, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -24.668318666477003, - "c2": -8.02922774467126, - "c3": 33.45257163819688, - "c4": 22.560259240381413, - "c5": -5.969463380956729, - "c6": -11.444168556435727, - "c7": -21.9904049137295 + "points": { + "c1": 12.569387418466931, + "c2": 19.1381108253519, + "c3": -2.5216992012476283, + "c4": -8.184712046795362, + "c5": -25.072878082115864, + "c6": 17.932609512027675, + "c7": 6.0705776654437855 }, - "vertexSeeds": { - "c1": 3.3801530161935953, - "c2": 3.570083643745135, - "c3": 3.3588030667942403, - "c4": 3.493415173931046, - "c5": 3.390408551321149, - "c6": 3.5029364674429795, - "c7": 3.414472631532044 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.1595006934812755, + "c3": 4.2995839112343965, + "c4": 3.439667128987517, + "c5": 2.5797503467406377, + "c6": 1.7198335644937586, + "c7": 0.8599167822468793 }, "rgb": [58, 15, 49] }, @@ -313962,23 +313962,23 @@ "year": 1791, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -23.44185992484966, - "c2": 15.77928122057915, - "c3": -15.762356575664064, - "c4": 28.98005717242357, - "c5": 17.224342529212706, - "c6": -18.859928515485542, - "c7": -38.10376013241778 + "points": { + "c1": 18.274496073100543, + "c2": -0.7604248104589217, + "c3": 17.3543843956705, + "c4": -0.7347338197198283, + "c5": 17.347654166142227, + "c6": 15.251142300504775, + "c7": 29.919156994167636 }, - "vertexSeeds": { - "c1": 9.041817299284935, - "c2": 8.486743881525468, - "c3": 9.558691905815289, - "c4": 8.712177347234213, - "c5": 8.863855227001427, - "c6": 8.287515960812321, - "c7": 8.612185625641512 + "offsets": { + "c1": 16.116504854368934, + "c2": 13.814147018030509, + "c3": 11.511789181692098, + "c4": 9.209431345353673, + "c5": 6.9070735090152615, + "c6": 4.604715672676837, + "c7": 2.302357836338425 }, "rgb": [58, 15, 49] }, @@ -313989,23 +313989,23 @@ "year": 1791, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -33.587594772141486, - "c2": 12.131818528301181, - "c3": -1.6303640248296745, - "c4": -35.59111342024974, - "c5": 32.863916470077896, - "c6": -34.88116491575053, - "c7": -22.71321598307884 + "points": { + "c1": 1.317289155493583, + "c2": -24.331622295163708, + "c3": -28.3499399344725, + "c4": 10.488453419973176, + "c5": 15.893169920298774, + "c6": 29.205671699766995, + "c7": -32.40057931589119 }, - "vertexSeeds": { - "c1": 6.717641921457258, - "c2": 7.015902540890937, - "c3": 6.784615154506226, - "c4": 7.129228356827343, - "c5": 7.674296501883408, - "c6": 7.169139308056484, - "c7": 7.022854886406551 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169215, + "c3": 9.292649098474337, + "c4": 7.434119278779471, + "c5": 5.575589459084608, + "c6": 3.7170596393897295, + "c7": 1.8585298196948647 }, "rgb": [222, 0, 59] }, @@ -314016,23 +314016,23 @@ "year": 1793, "resistanceReported": false, "duration": 84067200, - "curveSeeds": { - "c1": 88.56924345597199, - "c2": -36.191831530334994, - "c3": 50.805009086975275, - "c4": 62.69926028922072, - "c5": -5.299144602459904, - "c6": 76.6136745719223, - "c7": 15.36342628386808 + "points": { + "c1": 68.06548821173305, + "c2": -90.20179823068777, + "c3": 70.46127161184953, + "c4": -52.64859070704166, + "c5": -85.9477082504279, + "c6": 40.052026107825895, + "c7": -10.614887203309806 }, - "vertexSeeds": { - "c1": 17.034466131394765, - "c2": 17.179733871502002, - "c3": 15.635994639504188, - "c4": 17.147920414566226, - "c5": 14.261361469382049, - "c6": 13.122213103392205, - "c7": 17.843672546283308 + "offsets": { + "c1": 31.3915857605178, + "c2": 26.90707350901525, + "c3": 22.422561257512708, + "c4": 17.93804900601016, + "c5": 13.453536754507626, + "c6": 8.96902450300508, + "c7": 4.484512251502535 }, "rgb": [222, 0, 59] }, @@ -314043,23 +314043,23 @@ "year": 1791, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -11.522387951579113, - "c2": -22.421627887217436, - "c3": -3.450432694904851, - "c4": 15.102573952752891, - "c5": -7.848359053818065, - "c6": -12.716574145231238, - "c7": -6.653336583164069 + "points": { + "c1": 10.296128025660302, + "c2": 31.477194882620374, + "c3": 14.719533971743623, + "c4": 6.217903170200422, + "c5": 33.68383966057714, + "c6": -4.9467571553179575, + "c7": 33.74021218033712 }, - "vertexSeeds": { - "c1": 8.705853554976496, - "c2": 9.04866709328314, - "c3": 8.937359141213767, - "c4": 9.038294203961268, - "c5": 9.025146466366396, - "c6": 9.051717948593804, - "c7": 8.399629051380035 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024965, + "c3": 10.933888118354133, + "c4": 8.747110494683302, + "c5": 6.560332871012471, + "c6": 4.373555247341662, + "c7": 2.186777623670831 }, "rgb": [238, 201, 159] }, @@ -314070,23 +314070,23 @@ "year": 1791, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -33.03776363500103, - "c2": -33.880677977520406, - "c3": 34.8115891304103, - "c4": 31.682923024909044, - "c5": 17.039355686671016, - "c6": -31.816125776954582, - "c7": 25.317155369701553 + "points": { + "c1": 34.99589168413583, + "c2": -37.13526029410979, + "c3": 14.191764018667264, + "c4": -26.62142860483897, + "c5": -8.074803262002554, + "c6": -12.853371117759306, + "c7": 21.456059444387137 }, - "vertexSeeds": { - "c1": 8.253115311179169, - "c2": 6.225376507349673, - "c3": 7.3157919802081235, - "c4": 7.157357800885628, - "c5": 7.45035721738187, - "c6": 7.89072799378082, - "c7": 6.416806109293632 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.843273231622746, + "c3": 10.702727693018952, + "c4": 8.562182154415163, + "c5": 6.421636615811373, + "c6": 4.281091077207584, + "c7": 2.140545538603789 }, "rgb": [86, 146, 138] }, @@ -314097,23 +314097,23 @@ "year": 1791, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 7.56930984899083, - "c2": -3.3226976597853835, - "c3": 27.413746228784188, - "c4": -13.97135856079974, - "c5": -15.923566230455677, - "c6": 29.352088947781073, - "c7": -10.712727111886132 + "points": { + "c1": 15.631433917237075, + "c2": 8.268885800391836, + "c3": -29.175288488097504, + "c4": 24.37836107164184, + "c5": -30.0297198895557, + "c6": 25.49347906681772, + "c7": 11.088506648654715 }, - "vertexSeeds": { - "c1": 5.390868202534816, - "c2": 5.307781697746059, - "c3": 5.461009176976412, - "c4": 5.46548157656013, - "c5": 5.256160187659907, - "c6": 5.414373983072458, - "c7": 5.485541712837766 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -314124,23 +314124,23 @@ "year": 1792, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": 6.852756632857222, - "c2": -60.5329770371622, - "c3": 42.90975529099978, - "c4": -19.806308570816697, - "c5": 55.31308022864097, - "c6": 25.69619277058024, - "c7": -23.370185520608572 + "points": { + "c1": 38.525116500110656, + "c2": -26.666759150927923, + "c3": 60.33591975720243, + "c4": -40.90600684864269, + "c5": -18.880273449129866, + "c6": 31.246552640335253, + "c7": -31.598697437117536 }, - "vertexSeeds": { - "c1": 3.137561213544577, - "c2": 3.072453157622532, - "c3": 2.9880320451115985, - "c4": 3.052697315003159, - "c5": 3.1007575510013683, - "c6": 3.0487576965514567, - "c7": 2.97561323411075 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.54923717059639, + "c3": 3.791030975497, + "c4": 3.0328247803975974, + "c5": 2.274618585298195, + "c6": 1.5164123901987925, + "c7": 0.7582061950994027 }, "rgb": [58, 15, 49] }, @@ -314151,23 +314151,23 @@ "year": 1791, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -12.45255047331484, - "c2": 7.200756444098111, - "c3": 3.623627585384547, - "c4": -22.63543092850178, - "c5": 16.72708770939292, - "c6": 25.718765572658285, - "c7": 1.4141679646363414 + "points": { + "c1": 13.047061954403368, + "c2": -27.956168666480906, + "c3": 21.046458889266717, + "c4": 27.318731264908962, + "c5": -1.0522940470937314, + "c6": -16.757666531758424, + "c7": -28.943266576724987 }, - "vertexSeeds": { - "c1": 4.677877503173511, - "c2": 4.33739291015018, - "c3": 5.007116075881513, - "c4": 4.417078547684551, - "c5": 4.355677143659259, - "c6": 4.55471251170751, - "c7": 5.0122919140128275 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658807, + "c3": 6.12575127138234, + "c4": 4.900601017105871, + "c5": 3.6754507628294033, + "c6": 2.4503005085529357, + "c7": 1.2251502542764678 }, "rgb": [77, 76, 132] }, @@ -314178,23 +314178,23 @@ "year": 1791, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": 7.273674243569555, - "c2": -12.71041009951459, - "c3": -10.364309144581862, - "c4": -10.521759388345892, - "c5": 6.091281226197001, - "c6": -17.47147777220035, - "c7": 19.022802808808628 + "points": { + "c1": 2.4820631067179555, + "c2": 7.650401297819485, + "c3": -17.42499290706368, + "c4": -20.40119649001066, + "c5": 3.899075009744145, + "c6": -0.45220323577924404, + "c7": 13.715103238346657 }, - "vertexSeeds": { - "c1": 1.5220165214639318, - "c2": 1.5191676908864424, - "c3": 1.530918643470923, - "c4": 1.5187580593441967, - "c5": 1.5307915569516122, - "c6": 1.523000071785224, - "c7": 1.530500484648302 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217764, + "c3": 1.8492834026814453, + "c4": 1.4794267221451636, + "c5": 1.109570041608882, + "c6": 0.7397133610726002, + "c7": 0.36985668053628173 }, "rgb": [222, 0, 59] }, @@ -314205,23 +314205,23 @@ "year": 1791, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -7.645102009117064, - "c2": -34.207141799951394, - "c3": 28.11073927077053, - "c4": 7.830973499066346, - "c5": -5.423429536219583, - "c6": -23.656909463197493, - "c7": 5.3801850232351995 + "points": { + "c1": -36.22104402318844, + "c2": -10.974484424931902, + "c3": 28.009105978209895, + "c4": 29.717844713320254, + "c5": -7.41889642498213, + "c6": 1.079621292480887, + "c7": 34.71511992770521 }, - "vertexSeeds": { - "c1": 5.638806555981847, - "c2": 5.862559910204965, - "c3": 5.076828796880761, - "c4": 5.139183842162657, - "c5": 5.844043727165585, - "c6": 4.574692441439453, - "c7": 5.297187621392446 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.54368932038835, + "c3": 7.119741100323623, + "c4": 5.695792880258897, + "c5": 4.27184466019417, + "c6": 2.8478964401294484, + "c7": 1.4239482200647222 }, "rgb": [222, 0, 59] }, @@ -314232,23 +314232,23 @@ "year": 1791, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 33.437043693914035, - "c2": -0.01780930870491204, - "c3": -4.6615623951842835, - "c4": 30.710532529730145, - "c5": 17.152176252076053, - "c6": -6.3556511006992835, - "c7": -7.067814440097205 + "points": { + "c1": 27.17085027849616, + "c2": -2.458835838632325, + "c3": -24.089635857487565, + "c4": 8.321542395149443, + "c5": 21.514727807487972, + "c6": -8.740470134844891, + "c7": 9.114181684848056 }, - "vertexSeeds": { - "c1": 4.0511075595011565, - "c2": 4.078050255821997, - "c3": 4.023760428730931, - "c4": 4.0681473771898435, - "c5": 4.012401718815902, - "c6": 4.003674545008551, - "c7": 4.050825192571285 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486803, + "c3": 4.87748497457236, + "c4": 3.9019879796578683, + "c5": 2.9264909847434253, + "c6": 1.9509939898289341, + "c7": 0.9754969949144427 }, "rgb": [77, 76, 132] }, @@ -314259,23 +314259,23 @@ "year": 1791, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 27.28142081565896, - "c2": -15.116702338803112, - "c3": -25.748408283877943, - "c4": 32.45129990400237, - "c5": -2.683300091789313, - "c6": 17.59639973422386, - "c7": 10.429177298638649 + "points": { + "c1": 7.077428934309431, + "c2": -28.629287226515693, + "c3": 7.246497318354152, + "c4": 6.849459542574458, + "c5": 18.28282457533374, + "c6": -34.50925045190555, + "c7": 22.364189552404873 }, - "vertexSeeds": { - "c1": 4.216321243523316, - "c2": 4.216321243523316, - "c3": 4.216321243523316, - "c4": 4.216321243523316, - "c5": 4.216321243523316, - "c6": 4.216321243523316, - "c7": 4.216321243523316 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -314286,23 +314286,23 @@ "year": 1791, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 3.3449102510113597, - "c2": -22.782148993360614, - "c3": 3.667316158908015, - "c4": -18.89757822111546, - "c5": -7.55083005200596, - "c6": -8.999157149727026, - "c7": -19.553231161271533 + "points": { + "c1": 4.485493065413433, + "c2": 27.18408036141757, + "c3": 7.943510955061747, + "c4": -2.275572029511526, + "c5": 18.357500686649622, + "c6": -5.7126724413061005, + "c7": -4.792440343036187 }, - "vertexSeeds": { - "c1": 4.347563797147251, - "c2": 4.557383743177058, - "c3": 4.503153334474609, - "c4": 4.447078185441928, - "c5": 4.572886047149131, - "c6": 4.178490857346284, - "c7": 4.340879653476761 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653258, + "c3": 5.54785020804438, + "c4": 4.438280166435503, + "c5": 3.3287101248266313, + "c6": 2.2191400832177544, + "c7": 1.1095700416088772 }, "rgb": [238, 201, 159] }, @@ -314313,23 +314313,23 @@ "year": 1791, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -27.70728712396159, - "c2": 2.8523558291319056, - "c3": 8.51464636560534, - "c4": 19.544929529760932, - "c5": 24.66742818553364, - "c6": -4.335650245798664, - "c7": -19.797172525443727 + "points": { + "c1": 4.046785051704063, + "c2": 6.116116443455489, + "c3": 18.538402707334683, + "c4": 15.120520222113377, + "c5": -12.771002232385555, + "c6": 16.20613640746798, + "c7": 27.370091959855017 }, - "vertexSeeds": { - "c1": 7.50577267115751, - "c2": 7.453598375735744, - "c3": 7.308792148770118, - "c4": 7.061490002133788, - "c5": 7.216590048235817, - "c6": 7.537140800322845, - "c7": 7.526936873866383 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686538, + "c3": 9.015256588072125, + "c4": 7.212205270457692, + "c5": 5.409153952843279, + "c6": 3.606102635228846, + "c7": 1.803051317614413 }, "rgb": [222, 0, 59] }, @@ -314340,23 +314340,23 @@ "year": 1791, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 15.384311306853505, - "c2": 14.646588481485693, - "c3": -14.604191061164205, - "c4": 13.065385489200189, - "c5": -19.46189661035807, - "c6": 9.002271272943233, - "c7": -29.90573351838881 + "points": { + "c1": -20.580021306191174, + "c2": -32.65094526342665, + "c3": -6.468144734301781, + "c4": 33.64862767293482, + "c5": -21.077207612042706, + "c6": 26.71310379091514, + "c7": -3.187619007306978 }, - "vertexSeeds": { - "c1": 7.141965348324408, - "c2": 7.21427973443989, - "c3": 7.3925785921647424, - "c4": 7.24423687751558, - "c5": 7.232443922700261, - "c6": 6.839696919815566, - "c7": 7.301401043366789 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -314367,23 +314367,23 @@ "year": 1791, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -2.3348011338717036, - "c2": -26.194570855924614, - "c3": 10.550851490327464, - "c4": -0.3523713458741433, - "c5": -7.4301485295174885, - "c6": -27.527964291588958, - "c7": 4.864792505980095 + "points": { + "c1": 18.952093366541174, + "c2": 15.121123930434006, + "c3": 9.026396041190669, + "c4": -20.793450282879995, + "c5": -18.763054586908396, + "c6": -14.74130449688829, + "c7": -8.770709182503392 }, - "vertexSeeds": { - "c1": 2.8163072658247694, - "c2": 2.7711262077462133, - "c3": 2.844546565239272, - "c4": 2.528352089198907, - "c5": 2.4066823460798146, - "c6": 2.7953990291741575, - "c7": 2.773816732356328 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033285, + "c3": 3.467406380027741, + "c4": 2.7739251040221915, + "c5": 2.0804438280166426, + "c6": 1.3869625520110958, + "c7": 0.6934812760055491 }, "rgb": [222, 0, 59] }, @@ -314394,23 +314394,23 @@ "year": 1791, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 35.646087474418636, - "c2": -9.173309420262559, - "c3": 21.338483107748765, - "c4": 27.764001656341044, - "c5": -0.4851022951880495, - "c6": 22.45412341784241, - "c7": -30.484706128338807 + "points": { + "c1": 11.829695008118648, + "c2": -7.564084213623477, + "c3": 1.8197795691907004, + "c4": 10.215829111780131, + "c5": -29.500947329390108, + "c6": -30.120653483469937, + "c7": -17.5464580477053 }, - "vertexSeeds": { - "c1": 4.168700635053128, - "c2": 4.106493574233234, - "c3": 4.221012720434378, - "c4": 4.02974416174553, - "c5": 3.9181113999167367, - "c6": 4.08332162651829, - "c7": 4.075616841714742 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492374, + "c3": 5.455386037910308, + "c4": 4.3643088303282465, + "c5": 3.273231622746187, + "c6": 2.1821544151641206, + "c7": 1.0910772075820603 }, "rgb": [238, 201, 159] }, @@ -314421,23 +314421,23 @@ "year": 1791, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 2.7899831492305154, - "c2": 7.751873423490359, - "c3": -1.5397288883905702, - "c4": 9.265481273659923, - "c5": -5.3327899884601315, - "c6": -3.781469535543799, - "c7": 8.475593897925819 + "points": { + "c1": 20.561965626089318, + "c2": 23.615158935536336, + "c3": -11.237821897125922, + "c4": -4.859015161474144, + "c5": -13.281884284442636, + "c6": 14.960435205771745, + "c7": 10.753734846507797 }, - "vertexSeeds": { - "c1": 2.3589863592721243, - "c2": 2.3561584584169877, - "c3": 2.363862828067212, - "c4": 2.36095454889926, - "c5": 2.3663345934111697, - "c6": 2.353138786171392, - "c7": 2.3644028134229838 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779473117, + "c3": 2.843273231622722, + "c4": 2.274618585298189, + "c5": 1.7059639389736558, + "c6": 1.1373092926491226, + "c7": 0.5686546463245331 }, "rgb": [58, 15, 49] }, @@ -314448,23 +314448,23 @@ "year": 1791, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -15.206850491939345, - "c2": 26.621469207042338, - "c3": 24.03048524839606, - "c4": -30.527246417498322, - "c5": -24.80274650893574, - "c6": -27.964295380545344, - "c7": -4.115685850536412 + "points": { + "c1": -22.966913617472088, + "c2": 3.744982933726547, + "c3": 6.6222827787727, + "c4": -22.77845012508757, + "c5": 4.280947664247293, + "c6": 24.75203377906025, + "c7": -26.635619085666896 }, - "vertexSeeds": { - "c1": 3.456294812200147, - "c2": 3.547034586171559, - "c3": 3.4091582429090592, - "c4": 3.422747970516846, - "c5": 3.650177445958559, - "c6": 3.4849511039647636, - "c7": 3.420642259369576 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642166, + "c3": 4.392048081368474, + "c4": 3.513638465094781, + "c5": 2.6352288488210887, + "c6": 1.7568192325473848, + "c7": 0.8784096162736924 }, "rgb": [58, 15, 49] }, @@ -314475,23 +314475,23 @@ "year": 1791, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 7.7600855843416525, - "c2": -21.09502531985588, - "c3": 15.981186085189456, - "c4": -3.327737855596247, - "c5": 11.953475126833446, - "c6": -17.27760925969253, - "c7": -23.8347697330632 + "points": { + "c1": 19.8522080044345, + "c2": -16.455055118438864, + "c3": -33.9214137440899, + "c4": 17.906260504318226, + "c5": 26.75205162704735, + "c6": -10.252436662504739, + "c7": -3.476288382232056 }, - "vertexSeeds": { - "c1": 1.5155440414507773, - "c2": 1.5155440414507773, - "c3": 1.5155440414507773, - "c4": 1.5155440414507773, - "c5": 1.5155440414507773, - "c6": 1.5155440414507773, - "c7": 1.5155440414507773 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -314502,23 +314502,23 @@ "year": 1791, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": -6.412512995911314, - "c2": 48.10460462177146, - "c3": 0.49228640786751754, - "c4": -18.72141626969544, - "c5": 47.56850783227998, - "c6": -45.97118316670517, - "c7": 18.584521590171946 + "points": { + "c1": -8.105872361255024, + "c2": 27.754193120366836, + "c3": -42.822687504461086, + "c4": 8.363176341310549, + "c5": 34.06824347879132, + "c6": -8.618172403686614, + "c7": -28.239371215893726 }, - "vertexSeeds": { - "c1": 5.751624353052333, - "c2": 5.2512871940864505, - "c3": 5.772967239726595, - "c4": 5.373376076488573, - "c5": 5.684437131597107, - "c6": 5.754209028597666, - "c7": 5.550065239167363 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026352, + "c3": 6.911696717521961, + "c4": 5.529357374017568, + "c5": 4.147018030513176, + "c6": 2.764678687008784, + "c7": 1.382339343504392 }, "rgb": [238, 201, 159] }, @@ -314529,23 +314529,23 @@ "year": 1791, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 14.183405579528873, - "c2": -21.682478496337836, - "c3": -30.5891859077582, - "c4": -11.097080614384392, - "c5": 24.3911290975961, - "c6": -18.54996663905655, - "c7": 30.308048836970883 + "points": { + "c1": -2.9680430801048985, + "c2": -34.57499196150576, + "c3": 12.186234721032513, + "c4": -7.105025385792789, + "c5": 19.140546382018364, + "c6": 29.95478058345033, + "c7": 30.260105443772176 }, - "vertexSeeds": { - "c1": 5.872974603664394, - "c2": 5.857518316176801, - "c3": 5.853461737468111, - "c4": 5.890431335171653, - "c5": 5.81651942763543, - "c6": 5.909362761425646, - "c7": 5.973215537821657 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468777, + "c3": 7.165973185390686, + "c4": 5.732778548312537, + "c5": 4.2995839112343885, + "c6": 2.866389274156297, + "c7": 1.4331946370781485 }, "rgb": [77, 76, 132] }, @@ -314556,23 +314556,23 @@ "year": 1791, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": -12.460261174654654, - "c2": 43.66903151369838, - "c3": 2.473404626699349, - "c4": -24.243983594771166, - "c5": -13.53514825317989, - "c6": -48.475722582967514, - "c7": -14.228983523672106 + "points": { + "c1": -14.733945656294132, + "c2": -20.692417477474045, + "c3": 45.85266380799947, + "c4": -50.33868452850924, + "c5": -18.522181714432712, + "c6": -5.307529029510128, + "c7": -34.86393791493818 }, - "vertexSeeds": { - "c1": 6.492183106049128, - "c2": 6.9365332364638554, - "c3": 6.994250913121295, - "c4": 6.2548509515316395, - "c5": 6.611361622915771, - "c6": 6.300362844053198, - "c7": 6.801879299844416 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600549, + "c3": 8.391123439667133, + "c4": 6.712898751733699, + "c5": 5.034674063800283, + "c6": 3.3564493758668497, + "c7": 1.678224687933433 }, "rgb": [58, 15, 49] }, @@ -314583,23 +314583,23 @@ "year": 1791, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 38.85464184477395, - "c2": -12.67839037818882, - "c3": -31.2255629165534, - "c4": 5.955524060445789, - "c5": 16.821746785131147, - "c6": -1.5295310695694795, - "c7": 41.59749304271716 + "points": { + "c1": -11.024688620549291, + "c2": -20.00156923572891, + "c3": 27.745042826841228, + "c4": -34.864089610086076, + "c5": 8.978344780816748, + "c6": 21.17212982737111, + "c7": -5.987546875479644 }, - "vertexSeeds": { - "c1": 0.23316062176165803, - "c2": 0.23316062176165803, - "c3": 0.23316062176165803, - "c4": 0.23316062176165803, - "c5": 0.23316062176165803, - "c6": 0.23316062176165803, - "c7": 0.23316062176165803 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -314610,23 +314610,23 @@ "year": 1791, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -0.5781681263963634, - "c2": 15.690801908284456, - "c3": 17.107837656905296, - "c4": -15.12321638124525, - "c5": -1.2289929372838486, - "c6": 6.523567890753718, - "c7": -28.248048139961476 + "points": { + "c1": -22.62386606032245, + "c2": -19.91105446336049, + "c3": 26.637512101478727, + "c4": -31.435654357079404, + "c5": 18.084569226305526, + "c6": -28.709849520257553, + "c7": -24.4138663635742 }, - "vertexSeeds": { - "c1": 7.42378092649608, - "c2": 7.429921797111674, - "c3": 7.350135214109345, - "c4": 7.193506850048004, - "c5": 7.388228798825676, - "c6": 7.462561589334692, - "c7": 7.558625563209886 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807197, + "c3": 9.08460471567268, + "c4": 7.267683772538132, + "c5": 5.450762829403615, + "c6": 3.633841886269066, + "c7": 1.8169209431345492 }, "rgb": [58, 15, 49] }, @@ -314637,23 +314637,23 @@ "year": 1791, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -18.88626378706539, - "c2": -17.935058333452695, - "c3": -20.831638970995552, - "c4": -22.847208293909645, - "c5": 8.141810339145117, - "c6": 6.021984102514949, - "c7": 25.88968707702189 + "points": { + "c1": 26.455886253401864, + "c2": -27.174331128007275, + "c3": -29.604836272519808, + "c4": 25.121658217484246, + "c5": -6.270939348837512, + "c6": -22.257411013950865, + "c7": 10.551870594685006 }, - "vertexSeeds": { - "c1": 3.671259883737972, - "c2": 3.517747796016136, - "c3": 3.59679569860808, - "c4": 3.5688815124234754, - "c5": 3.4109668603685326, - "c6": 3.513945543311349, - "c7": 3.3831815548080635 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.39204808136847, + "c4": 3.513638465094776, + "c5": 2.635228848821082, + "c6": 1.756819232547388, + "c7": 0.878409616273694 }, "rgb": [86, 146, 138] }, @@ -314664,23 +314664,23 @@ "year": 1791, "resistanceReported": true, "duration": 18230400, - "curveSeeds": { - "c1": 26.230165286801633, - "c2": 19.539982172961476, - "c3": 25.932970454629963, - "c4": -9.41980442095715, - "c5": 9.364555978185148, - "c6": 9.411742470297195, - "c7": 19.485381744000467 + "points": { + "c1": 18.63758095771976, + "c2": -16.900370202022938, + "c3": 26.924929296008276, + "c4": 30.11348778454656, + "c5": -31.8798489341968, + "c6": -20.626986064812037, + "c7": -8.437951916304371 }, - "vertexSeeds": { - "c1": 8.45907773446442, - "c2": 8.524484008383482, - "c3": 9.087538327145086, - "c4": 8.564868821632977, - "c5": 8.523474137131853, - "c6": 8.609407214207694, - "c7": 8.544849753059944 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145629, + "c3": 11.003236245954687, + "c4": 8.802588996763745, + "c5": 6.601941747572804, + "c6": 4.401294498381884, + "c7": 2.20064724919092 }, "rgb": [86, 146, 138] }, @@ -314691,23 +314691,23 @@ "year": 1791, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -30.497164030701857, - "c2": -15.021602962318902, - "c3": 15.199239537257505, - "c4": -30.0304983162729, - "c5": -12.47444096635197, - "c6": 30.63418001101587, - "c7": -14.856051645315887 + "points": { + "c1": -6.868424693614205, + "c2": -13.816409976328352, + "c3": 10.553027955014159, + "c4": -3.97559918407746, + "c5": 20.318948673199593, + "c6": 37.715801655488264, + "c7": -9.166679071341417 }, - "vertexSeeds": { - "c1": 2.8837031306858, - "c2": 2.760300557502729, - "c3": 2.931578780509981, - "c4": 2.749855753915927, - "c5": 2.7769136633109603, - "c6": 2.9250197983584667, - "c7": 2.776025682688575 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153947, + "c3": 3.536754507628296, + "c4": 2.829403606102632, + "c5": 2.1220527045769804, + "c6": 1.414701803051316, + "c7": 0.7073509015256644 }, "rgb": [222, 0, 59] }, @@ -314718,23 +314718,23 @@ "year": 1790, "resistanceReported": false, "duration": 6220800, - "curveSeeds": { - "c1": 11.67654448176247, - "c2": 13.68978985670051, - "c3": -14.29233802350932, - "c4": -14.498479933910986, - "c5": 3.0245917431760887, - "c6": -5.773497597038096, - "c7": 9.827339522684365 + "points": { + "c1": 8.19443306156813, + "c2": -7.6445890622732815, + "c3": 14.991975535309088, + "c4": 13.74676692499392, + "c5": 2.826446988545829, + "c6": 0.8642874980893325, + "c7": 6.471549377308818 }, - "vertexSeeds": { - "c1": 3.4578047883074636, - "c2": 3.3614999050913146, - "c3": 3.916464771688172, - "c4": 3.4927370243699425, - "c5": 3.352701137219285, - "c6": 3.3835134651237517, - "c7": 3.353834180399855 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165047, + "c3": 4.692556634304205, + "c4": 3.754045307443363, + "c5": 2.815533980582521, + "c6": 1.8770226537216785, + "c7": 0.9385113268608366 }, "rgb": [238, 201, 159] }, @@ -314745,23 +314745,23 @@ "year": 1791, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 2.384676240269684, - "c2": 11.565299427056516, - "c3": -21.99594089274095, - "c4": -1.8158524456155973, - "c5": 4.37865015228266, - "c6": 8.665918478449264, - "c7": 25.575116706171585 + "points": { + "c1": -34.826088502514956, + "c2": -5.558593051205815, + "c3": 20.76209917676953, + "c4": -14.23230266002495, + "c5": -12.909659830749504, + "c6": -15.866676969995968, + "c7": -33.43636507822439 }, - "vertexSeeds": { - "c1": 8.115985886827717, - "c2": 7.896256271525491, - "c3": 7.856063988090887, - "c4": 7.898745526632615, - "c5": 7.931338940530015, - "c6": 8.083340322264197, - "c7": 7.769263307711074 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933431, + "c3": 9.731853906611198, + "c4": 7.785483125288965, + "c5": 5.839112343966732, + "c6": 3.8927415626444657, + "c7": 1.9463707813222328 }, "rgb": [86, 146, 138] }, @@ -314772,23 +314772,23 @@ "year": 1791, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 20.588108644008337, - "c2": 12.344814476529386, - "c3": -15.98837174168154, - "c4": -1.2563840457445714, - "c5": -19.357485910041152, - "c6": 25.17999085090983, - "c7": -22.138225692900072 + "points": { + "c1": 26.94973006434639, + "c2": -3.4393872717383474, + "c3": -3.52909913376374, + "c4": -0.3828712563485901, + "c5": -27.058552696604472, + "c6": 23.91208952889575, + "c7": -0.2870262119791711 }, - "vertexSeeds": { - "c1": 6.065071375657576, - "c2": 6.075707433321534, - "c3": 6.075512038302593, - "c4": 6.506778946237955, - "c5": 6.460875651869105, - "c6": 6.100187525024736, - "c7": 6.386824460182603 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514555, + "c3": 7.766990291262148, + "c4": 6.213592233009712, + "c5": 4.660194174757278, + "c6": 3.1067961165048694, + "c7": 1.5533980582524347 }, "rgb": [86, 146, 138] }, @@ -314799,23 +314799,23 @@ "year": 1791, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -21.36459770784677, - "c2": -2.488115788162286, - "c3": -7.069856060855411, - "c4": -8.601052129703376, - "c5": 0.4485803796064758, - "c6": -24.366665250147577, - "c7": 4.95226174755588 + "points": { + "c1": -8.745252900193819, + "c2": 3.0835660469653376, + "c3": 25.869229949193908, + "c4": -17.06080067548014, + "c5": -7.021880089939923, + "c6": -2.743496286617919, + "c7": 8.410188774117138 }, - "vertexSeeds": { - "c1": 4.1953696261782145, - "c2": 3.7029549464106575, - "c3": 3.8193758735585424, - "c4": 3.554454181491826, - "c5": 4.281883527698985, - "c6": 3.9174900420518988, - "c7": 3.987564164985765 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371706, + "c3": 5.386037910309757, + "c4": 4.308830328247805, + "c5": 3.231622746185853, + "c6": 2.1544151641239044, + "c7": 1.0772075820619522 }, "rgb": [86, 146, 138] }, @@ -314826,23 +314826,23 @@ "year": 1791, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -19.930250513825143, - "c2": -8.029870425026477, - "c3": 20.44890056326778, - "c4": -19.274454879719865, - "c5": 26.156656056816633, - "c6": -16.029805781245365, - "c7": -30.898418069398065 + "points": { + "c1": 12.367028216703694, + "c2": -21.095000878108582, + "c3": 9.551989459204826, + "c4": -21.482491880267933, + "c5": -5.35430585986056, + "c6": 23.70343704910256, + "c7": -13.025322983596979 }, - "vertexSeeds": { - "c1": 5.444531268724213, - "c2": 6.1684718313509554, - "c3": 5.67561382035626, - "c4": 5.886140283467977, - "c5": 5.728134982272665, - "c6": 5.3458576750165046, - "c7": 6.082303319613123 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830796, + "c3": 7.374017568192323, + "c4": 5.899214054553864, + "c5": 4.4244105409153915, + "c6": 2.949607027276932, + "c7": 1.4748035136384592 }, "rgb": [222, 0, 59] }, @@ -314853,23 +314853,23 @@ "year": 1791, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -10.890503114597678, - "c2": 13.592138808347539, - "c3": -25.538644772707094, - "c4": 0.8224607282402765, - "c5": -21.39712390900987, - "c6": -2.967083757740948, - "c7": -24.196807757809314 + "points": { + "c1": 1.2195782252426426, + "c2": -8.027027827922126, + "c3": 27.884002907135297, + "c4": 31.596144201739946, + "c5": -28.382845476345885, + "c6": 0.10918123894754217, + "c7": 5.506299248190942 }, - "vertexSeeds": { - "c1": 3.0484546432499156, - "c2": 2.86672068306865, - "c3": 3.02890283357922, - "c4": 2.8725195183650634, - "c5": 2.8733634405928066, - "c6": 2.9223601553514027, - "c7": 2.9936101545756384 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395284, + "c3": 3.6754507628294038, + "c4": 2.940360610263523, + "c5": 2.205270457697642, + "c6": 1.4701803051317615, + "c7": 0.7350901525658807 }, "rgb": [238, 201, 159] }, @@ -314880,23 +314880,23 @@ "year": 1791, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 27.700842323930132, - "c2": -22.811826987725492, - "c3": -25.41698983812014, - "c4": -11.837534611811389, - "c5": 7.202720377281381, - "c6": -9.706564559450246, - "c7": 29.077286032919034 + "points": { + "c1": 30.339260871010907, + "c2": 17.974011697847097, + "c3": -27.489065330091865, + "c4": -4.450378165355943, + "c5": -0.5964526931028971, + "c6": -24.634784297153985, + "c7": 5.300264806902973 }, - "vertexSeeds": { - "c1": 4.4941998185667105, - "c2": 4.508021089342691, - "c3": 4.491224440119942, - "c4": 4.501559266802105, - "c5": 4.514629573207397, - "c6": 4.544685287951253, - "c7": 4.505420806091069 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532588, + "c3": 5.478502080443818, + "c4": 4.382801664355084, + "c5": 3.2871012482663122, + "c6": 2.191400832177542, + "c7": 1.095700416088771 }, "rgb": [77, 76, 132] }, @@ -314907,23 +314907,23 @@ "year": 1791, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -6.087344584792234, - "c2": 32.64210493983755, - "c3": -24.365512494888407, - "c4": -33.66241600971309, - "c5": -28.693059853067314, - "c6": -12.33620158623868, - "c7": -11.64384692104414 + "points": { + "c1": 35.82346965754407, + "c2": -5.097701471526076, + "c3": -3.632736182754293, + "c4": 9.976375463193634, + "c5": -12.252397214074811, + "c6": 19.177577358833112, + "c7": -18.015006743352505 }, - "vertexSeeds": { - "c1": 3.7704521875176713, - "c2": 3.75224280792709, - "c3": 3.7067790175388042, - "c4": 3.783313933938042, - "c5": 3.9074249796569434, - "c6": 3.852359306794424, - "c7": 3.892170408499629 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205276, + "c3": 4.715672676837724, + "c4": 3.772538141470184, + "c5": 2.829403606102632, + "c6": 1.886269070735092, + "c7": 0.9431345353675515 }, "rgb": [238, 201, 159] }, @@ -314934,23 +314934,23 @@ "year": 1792, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": 0.9021187168944209, - "c2": 31.274323173222584, - "c3": -48.206144098750066, - "c4": 36.093186261211244, - "c5": 40.2727485890198, - "c6": -10.360421927926218, - "c7": -32.03872976011249 + "points": { + "c1": -28.453015578556336, + "c2": 41.07167473296079, + "c3": 43.00421660104591, + "c4": 52.13494166252379, + "c5": 31.5341547343822, + "c6": 50.188767714467616, + "c7": -12.212152231984412 }, - "vertexSeeds": { - "c1": 5.668364625750726, - "c2": 5.748549327933075, - "c3": 5.848949144461992, - "c4": 5.540135231685732, - "c5": 5.615041388979913, - "c6": 5.438346874897808, - "c7": 5.406862381258012 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468795, + "c3": 7.165973185390663, + "c4": 5.73277854831253, + "c5": 4.299583911234398, + "c6": 2.8663892741562664, + "c7": 1.4331946370781319 }, "rgb": [238, 201, 159] }, @@ -314961,23 +314961,23 @@ "year": 1791, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -7.356553034004175, - "c2": -1.900978706059739, - "c3": -6.670289450925914, - "c4": -36.471973968130264, - "c5": 32.61310096286755, - "c6": 3.571897079415443, - "c7": -17.256694380452274 + "points": { + "c1": -19.425611694022887, + "c2": 23.46789827731412, + "c3": -16.046321496357997, + "c4": -13.285192586406865, + "c5": -35.105947924252426, + "c6": 0.8160056073175852, + "c7": -4.737161369749721 }, - "vertexSeeds": { - "c1": 3.4739898149361457, - "c2": 3.081605956780686, - "c3": 3.0799014933699818, - "c4": 3.392250573715481, - "c5": 3.507961875354411, - "c6": 3.3551709234489775, - "c7": 3.337456055985787 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.253351826167356, + "c4": 3.4026814609338896, + "c5": 2.5520110957004154, + "c6": 1.7013407304669415, + "c7": 0.8506703652334741 }, "rgb": [222, 0, 59] }, @@ -314988,23 +314988,23 @@ "year": 1791, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -29.53958077172172, - "c2": 36.770194600704244, - "c3": 4.444618812422711, - "c4": 3.8949819132845036, - "c5": 35.82661899290923, - "c6": 29.83628130654229, - "c7": -27.13745696136757 + "points": { + "c1": 25.543990597151307, + "c2": 13.47123472607219, + "c3": -18.765640945809963, + "c4": 29.380589390651636, + "c5": -10.828469266149462, + "c6": -39.013930258429234, + "c7": -26.41399002012652 }, - "vertexSeeds": { - "c1": 5.842339427658039, - "c2": 5.221582319448206, - "c3": 5.8382538768272525, - "c4": 5.557145735354712, - "c5": 5.511598966734236, - "c6": 5.174015180477889, - "c7": 5.973979006543365 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [238, 201, 159] }, @@ -315015,23 +315015,23 @@ "year": 1791, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -26.07022601612687, - "c2": -34.361587029054775, - "c3": 14.553211652553728, - "c4": -6.452401438839647, - "c5": 34.70236093445589, - "c6": -29.42630867397398, - "c7": 11.79836700173118 + "points": { + "c1": -35.05100426687711, + "c2": -35.98155566710502, + "c3": -21.192899879970337, + "c4": -4.34247084247712, + "c5": -12.300030279786458, + "c6": -1.4246108913062514, + "c7": -7.6346976070183885 }, - "vertexSeeds": { - "c1": 4.558772240224671, - "c2": 5.4093322964027095, - "c3": 5.019787183876025, - "c4": 4.770573519524083, - "c5": 5.047119596176423, - "c6": 5.496815874165158, - "c7": 4.319344374828127 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664359, + "c3": 6.703652334720293, + "c4": 5.362921867776235, + "c5": 4.022191400832179, + "c6": 2.6814609338881175, + "c7": 1.340730466944057 }, "rgb": [86, 146, 138] }, @@ -315042,23 +315042,23 @@ "year": 1791, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -33.923652983199986, - "c2": -31.55272650432983, - "c3": -32.23140851527236, - "c4": 10.117270381109563, - "c5": 30.099926441480207, - "c6": -20.313740573757066, - "c7": 29.82180632826909 + "points": { + "c1": -17.295508124022426, + "c2": 10.602269330384381, + "c3": 29.517532464399338, + "c4": 39.33260554513764, + "c5": -40.558370841212636, + "c6": 2.117742651400988, + "c7": -37.54557811392829 }, - "vertexSeeds": { - "c1": 4.364782239586618, - "c2": 4.137287209910035, - "c3": 4.201967343709777, - "c4": 4.2569981901812195, - "c5": 4.437240823377598, - "c6": 4.442991147368437, - "c7": 4.387199483769957 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371707, + "c3": 5.3860379103097555, + "c4": 4.308830328247804, + "c5": 3.2316227461858533, + "c6": 2.154415164123902, + "c7": 1.077207582061951 }, "rgb": [77, 76, 132] }, @@ -315069,23 +315069,23 @@ "year": 1791, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 26.304248342996637, - "c2": 24.428684831618597, - "c3": 24.52198561288907, - "c4": 15.97505461040003, - "c5": -13.153615251476236, - "c6": 9.49758179182544, - "c7": 17.191740757507574 + "points": { + "c1": -18.34307306124398, + "c2": -34.121382399604904, + "c3": -13.898862619263447, + "c4": 25.98697875675701, + "c5": 19.136667393822925, + "c6": -0.8589940368268145, + "c7": -18.751475298084674 }, - "vertexSeeds": { - "c1": 6.131931966522634, - "c2": 6.398131528631689, - "c3": 6.010082181784524, - "c4": 6.444451659891118, - "c5": 6.300166938750582, - "c6": 6.132123184855487, - "c7": 6.34320859813811 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.45908460471567, + "c3": 7.882570503929721, + "c4": 6.306056403143774, + "c5": 4.729542302357845, + "c6": 3.1530282015718964, + "c7": 1.5765141007859482 }, "rgb": [86, 146, 138] }, @@ -315096,23 +315096,23 @@ "year": 1791, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -7.098872073219255, - "c2": 16.64090580734091, - "c3": -12.016424713098562, - "c4": 20.7095184568561, - "c5": 10.611870745704696, - "c6": -22.87255577533181, - "c7": 11.344733638597095 + "points": { + "c1": 13.00392401853409, + "c2": -11.207134249569169, + "c3": 22.444496343790167, + "c4": -15.316762231714998, + "c5": -24.846103642805517, + "c6": 11.448674006200523, + "c7": 22.070775897097814 }, - "vertexSeeds": { - "c1": 2.332047253388197, - "c2": 2.3208271192641257, - "c3": 2.197855639699899, - "c4": 2.1942398135627337, - "c5": 2.1850907902661962, - "c6": 2.2646266686947314, - "c7": 2.257385183800799 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841873, + "c3": 2.519648636153488, + "c4": 2.0157189089227927, + "c5": 1.5117891816920936, + "c6": 1.0078594544613946, + "c7": 0.503929727230699 }, "rgb": [222, 0, 59] }, @@ -315123,23 +315123,23 @@ "year": 1791, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -17.017065897781634, - "c2": -1.9394006732107094, - "c3": -18.391261841683594, - "c4": 13.828890134660497, - "c5": -1.034173837858173, - "c6": -6.36011401173068, - "c7": 12.491062218578925 + "points": { + "c1": -23.387631565817056, + "c2": 21.41895577220331, + "c3": 8.902564111585491, + "c4": 10.021170544011767, + "c5": -17.90199488079662, + "c6": 7.92440004404893, + "c7": 7.9398437176247185 }, - "vertexSeeds": { - "c1": 5.101768556359436, - "c2": 5.197831509737591, - "c3": 5.1202929648442215, - "c4": 5.13889496010986, - "c5": 5.130744747128806, - "c6": 5.1897451027545864, - "c7": 5.116924567411848 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819682, + "c3": 6.218215441516435, + "c4": 4.974572353213138, + "c5": 3.730929264909841, + "c6": 2.4872861766065437, + "c7": 1.2436430883032967 }, "rgb": [222, 0, 59] }, @@ -315150,23 +315150,23 @@ "year": 1791, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 6.334525910336215, - "c2": -12.316507393628761, - "c3": -23.92030171680402, - "c4": 1.8144320519580752, - "c5": -21.28695543970169, - "c6": 26.87506997593285, - "c7": -21.862575037688394 + "points": { + "c1": 25.474522170197922, + "c2": 21.912961477222787, + "c3": 10.530728117024736, + "c4": 21.79261128174312, + "c5": 18.664401293515674, + "c6": 23.347112670977552, + "c7": 13.939320549319874 }, - "vertexSeeds": { - "c1": 2.951293067551412, - "c2": 2.954902339504198, - "c3": 2.944659515423941, - "c4": 2.944377924184516, - "c5": 2.9614290149568365, - "c6": 2.945163210065898, - "c7": 2.9586971024224855 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194195, + "c3": 3.559870550161782, + "c4": 2.8478964401294395, + "c5": 2.1359223300970975, + "c6": 1.4239482200647553, + "c7": 0.7119741100323422 }, "rgb": [222, 0, 59] }, @@ -315177,23 +315177,23 @@ "year": 1791, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 4.410953574385186, - "c2": 9.312661827399243, - "c3": 8.084618518639875, - "c4": 8.04312373241049, - "c5": 20.369472035176404, - "c6": -15.01906063093959, - "c7": 22.179116974981266 + "points": { + "c1": 20.651606537240877, + "c2": 26.629987914480086, + "c3": 22.161327243405378, + "c4": -15.474623137213445, + "c5": 22.145419984788074, + "c6": 10.02998803206879, + "c7": 1.178759820109665 }, - "vertexSeeds": { - "c1": 1.8720232461763116, - "c2": 1.8840505679392034, - "c3": 1.9010200644233335, - "c4": 1.9548856314069267, - "c5": 1.9561402109538961, - "c6": 1.9305645757705814, - "c7": 1.9488325841171772 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.8294036061026393, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513152, + "c6": 0.9431345353675465, + "c7": 0.4715672676837685 }, "rgb": [77, 76, 132] }, @@ -315204,23 +315204,23 @@ "year": 1791, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 7.057255144386929, - "c2": 11.205651381097276, - "c3": 1.3195448661274156, - "c4": -2.909120591521827, - "c5": 27.484784166479074, - "c6": -10.833055296702678, - "c7": -2.520256027595064 + "points": { + "c1": -10.995546808684423, + "c2": -6.4782981791281316, + "c3": -16.112726320832046, + "c4": 4.66963924354053, + "c5": 2.035074178586896, + "c6": 32.931917635689445, + "c7": 26.872753367876726 }, - "vertexSeeds": { - "c1": 1.5737962842316375, - "c2": 1.474032659696263, - "c3": 1.4845592332997581, - "c4": 1.4436596093472438, - "c5": 1.5874917048170596, - "c6": 1.5489518784673815, - "c7": 1.5344003343076253 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820163, + "c4": 1.5349052242256112, + "c5": 1.1511789181692107, + "c6": 0.7674526121128056, + "c7": 0.38372630605640495 }, "rgb": [238, 201, 159] }, @@ -315231,23 +315231,23 @@ "year": 1791, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -18.508117615831377, - "c2": 12.566234191347291, - "c3": 4.226955286500861, - "c4": 25.319203831579195, - "c5": -25.740750998646238, - "c6": 14.042161994378723, - "c7": -1.4277017654548878 + "points": { + "c1": -23.12003328060196, + "c2": 1.8708372689135757, + "c3": 26.297842608751708, + "c4": 28.564741345905944, + "c5": -11.534396772490428, + "c6": 20.29260971329331, + "c7": 18.18196989068842 }, - "vertexSeeds": { - "c1": 4.618581143627354, - "c2": 5.039750199302704, - "c3": 4.785333264853159, - "c4": 4.792793882991641, - "c5": 4.879774079529467, - "c6": 4.7881626751990645, - "c7": 4.522038098712883 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538144, + "c3": 6.056403143781787, + "c4": 4.845122515025432, + "c5": 3.633841886269076, + "c6": 2.4225612575127116, + "c7": 1.2112806287563558 }, "rgb": [222, 0, 59] }, @@ -315258,23 +315258,23 @@ "year": 1791, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -7.647380854212223, - "c2": -14.995001467867523, - "c3": 25.869292272646327, - "c4": -17.04949260508036, - "c5": -5.064334171476403, - "c6": 15.665344744772852, - "c7": -14.202663110099696 + "points": { + "c1": 1.5910424928183744, + "c2": 17.4746008054194, + "c3": -2.61890512494244, + "c4": 26.865459740534128, + "c5": 20.40808941424342, + "c6": 26.639642030462262, + "c7": -3.8073056734438673 }, - "vertexSeeds": { - "c1": 4.83822314493599, - "c2": 5.003691147822854, - "c3": 5.015509179579685, - "c4": 5.085224538064049, - "c5": 5.068492211827388, - "c6": 4.9642516938773324, - "c7": 5.031934038899805 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578379, + "c3": 6.079519186315297, + "c4": 4.863615349052253, + "c5": 3.6477115117891894, + "c6": 2.4318076745261266, + "c7": 1.2159038372630633 }, "rgb": [77, 76, 132] }, @@ -315285,23 +315285,23 @@ "year": 1791, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -2.9954345174222716, - "c2": 23.39581496942095, - "c3": 19.883827848810274, - "c4": -4.58306427637017, - "c5": -18.21822382991995, - "c6": -21.232976935347644, - "c7": 12.629394241061444 + "points": { + "c1": 28.623370058193235, + "c2": -11.808151022294869, + "c3": -24.045517578972685, + "c4": 27.34199885920766, + "c5": -23.382264816543813, + "c6": -19.370526827486955, + "c7": -7.70098006384433 }, - "vertexSeeds": { - "c1": 5.460534236177208, - "c2": 5.6910700296674825, - "c3": 5.627615844506185, - "c4": 5.465375379790044, - "c5": 5.624398084833437, - "c6": 5.655522313975051, - "c7": 5.437973451341773 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262122, + "c3": 6.472491909385119, + "c4": 5.1779935275080815, + "c5": 3.8834951456310782, + "c6": 2.5889967637540408, + "c7": 1.294498381877003 }, "rgb": [238, 201, 159] }, @@ -315312,23 +315312,23 @@ "year": 1791, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 16.775908498626432, - "c2": 14.644050219138176, - "c3": 12.539894675965822, - "c4": -25.105235097109404, - "c5": 26.677829688572107, - "c6": -25.554417946095963, - "c7": 3.2522669785901286 + "points": { + "c1": 19.34555614425668, + "c2": -21.591205471909454, + "c3": -3.9236755701372523, + "c4": -13.968081596690864, + "c5": 23.21244510906404, + "c6": -22.73751064635783, + "c7": 7.120336715691476 }, - "vertexSeeds": { - "c1": 4.482596465064287, - "c2": 4.594166328186437, - "c3": 4.715648371072941, - "c4": 4.3981842521619186, - "c5": 4.528800000434446, - "c6": 4.383193738633748, - "c7": 4.500950123179482 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [77, 76, 132] }, @@ -315339,23 +315339,23 @@ "year": 1791, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -17.563568238666534, - "c2": 22.839353367917006, - "c3": 12.832539951257928, - "c4": -8.951878009928503, - "c5": -14.385711753147085, - "c6": -27.55472159787439, - "c7": 28.818929175424962 + "points": { + "c1": -11.704430206026803, + "c2": -1.628690928502678, + "c3": 26.46880267564314, + "c4": -4.430594903311636, + "c5": -29.04497590401718, + "c6": -17.116522886418117, + "c7": 8.028708882096502 }, - "vertexSeeds": { - "c1": 5.1205813656659505, - "c2": 5.32307142556284, - "c3": 5.278863913634779, - "c4": 5.2611040475611075, - "c5": 5.3016147236068365, - "c6": 5.164850294936534, - "c7": 5.225309901462493 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.6282940360610425, + "c3": 6.356911696717516, + "c4": 5.085529357374028, + "c5": 3.8141470180305017, + "c6": 2.542764678687014, + "c7": 1.2713823393434878 }, "rgb": [58, 15, 49] }, @@ -315366,23 +315366,23 @@ "year": 1791, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -5.153322430044341, - "c2": 14.164600405423673, - "c3": -16.932325957485602, - "c4": 23.315912556671822, - "c5": -0.6660395907537513, - "c6": -4.2000161374596345, - "c7": 13.708657765468008 + "points": { + "c1": -3.8899883478067956, + "c2": -20.95938233409987, + "c3": 25.154107723303273, + "c4": -20.738195367584282, + "c5": 6.479440725301281, + "c6": 7.278837275355617, + "c7": -8.472445462916166 }, - "vertexSeeds": { - "c1": 6.164323972136831, - "c2": 5.704988279563179, - "c3": 5.614779974186888, - "c4": 6.010593669435941, - "c5": 5.654969732300845, - "c6": 5.55761401108487, - "c7": 5.8724106196356525 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [77, 76, 132] }, @@ -315393,23 +315393,23 @@ "year": 1791, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -25.422348132076426, - "c2": 6.3804968214386335, - "c3": -24.68830883702121, - "c4": 29.124717916455218, - "c5": -31.567335808106527, - "c6": 38.94374438657129, - "c7": 0.6151980719308483 + "points": { + "c1": -35.81328215050522, + "c2": 14.767226656541254, + "c3": 41.526045267917304, + "c4": 35.90569342841031, + "c5": 31.94530648127877, + "c6": 9.016300196769606, + "c7": 28.785100436746 }, - "vertexSeeds": { - "c1": 12.199958304653618, - "c2": 11.724590989692034, - "c3": 11.965321638721385, - "c4": 12.168812893570472, - "c5": 12.310663413197632, - "c6": 12.367937226854654, - "c7": 11.70383640949912 + "offsets": { + "c1": 20.64724919093851, + "c2": 17.697642163661573, + "c3": 14.748035136384631, + "c4": 11.798428109107695, + "c5": 8.848821081830755, + "c6": 5.899214054553878, + "c7": 2.949607027276939 }, "rgb": [86, 146, 138] }, @@ -315420,23 +315420,23 @@ "year": 1791, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -39.32324954167193, - "c2": -17.942569437294402, - "c3": 5.324687675037431, - "c4": 2.808337861806301, - "c5": -0.03173722805954071, - "c6": 9.492838675339968, - "c7": -20.024370808415412 + "points": { + "c1": 42.453055094944204, + "c2": -43.50890378484519, + "c3": 35.54857430039522, + "c4": 14.489386221059924, + "c5": 32.222525906936355, + "c6": -37.1558529041809, + "c7": 35.80321956149835 }, - "vertexSeeds": { - "c1": 4.614010571002969, - "c2": 4.379503976957587, - "c3": 4.509068734435402, - "c4": 4.669702106391235, - "c5": 4.367038494176492, - "c6": 4.562699942045194, - "c7": 4.408472826237146 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485437, + "c3": 5.663430420711976, + "c4": 4.530744336569583, + "c5": 3.3980582524271905, + "c6": 2.2653721682847867, + "c7": 1.1326860841423934 }, "rgb": [222, 0, 59] }, @@ -315447,23 +315447,23 @@ "year": 1791, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -3.494252027425844, - "c2": 13.920736542315275, - "c3": -29.93337298104173, - "c4": -11.98553515519341, - "c5": 29.93654496793016, - "c6": -35.41085420309917, - "c7": -1.5984375417585284 + "points": { + "c1": -4.328393680954541, + "c2": -8.781479703514101, + "c3": 6.772019813073236, + "c4": -31.66126685929055, + "c5": 8.120632727581132, + "c6": -1.6966945494697754, + "c7": -32.005020045159064 }, - "vertexSeeds": { - "c1": 4.034034766839437, - "c2": 4.050311061204316, - "c3": 4.030510175228647, - "c4": 4.05427272926952, - "c5": 4.034894530557703, - "c6": 4.0265058634847275, - "c7": 4.056140766530705 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466296, + "c3": 4.854368932038794, + "c4": 3.883495145631054, + "c5": 2.9126213592233148, + "c6": 1.9417475728155753, + "c7": 0.9708737864077394 }, "rgb": [222, 0, 59] }, @@ -315474,23 +315474,23 @@ "year": 1791, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -13.318699136828577, - "c2": -9.621664048067071, - "c3": -23.70614450511275, - "c4": 17.664700422659788, - "c5": 11.608126736078258, - "c6": 13.635148630959069, - "c7": -25.45144811833896 + "points": { + "c1": -3.056766560037957, + "c2": -17.178843515746077, + "c3": 2.6999170609658663, + "c4": 1.7399271147610307, + "c5": -4.042009826630039, + "c6": 27.315586560441503, + "c7": -2.9287584096440966 }, - "vertexSeeds": { - "c1": 5.003473026808572, - "c2": 4.736875989166615, - "c3": 5.137870121932119, - "c4": 4.6277830818240675, - "c5": 4.714931205393799, - "c6": 5.032384547552613, - "c7": 5.123917238338985 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302358, + "c3": 6.4956079519186325, + "c4": 5.196486361534905, + "c5": 3.897364771151179, + "c6": 2.5982431807674526, + "c7": 1.2991215903837263 }, "rgb": [58, 15, 49] }, @@ -315501,23 +315501,23 @@ "year": 1791, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -4.706049974702999, - "c2": -25.697959540529418, - "c3": -24.845865933832844, - "c4": -16.64223723890036, - "c5": -15.22241857113973, - "c6": -31.00447212022093, - "c7": 15.201126819306182 + "points": { + "c1": -7.693880259689813, + "c2": -33.40169970227839, + "c3": -20.792846567669308, + "c4": 39.025121046611346, + "c5": 8.02594691618156, + "c6": -24.722686293898732, + "c7": -1.2937011544220525 }, - "vertexSeeds": { - "c1": 1.2772859874563798, - "c2": 1.2873151150125623, - "c3": 1.2291571979223557, - "c4": 1.2717475001352165, - "c5": 1.2558205904963422, - "c6": 1.282313074430309, - "c7": 1.2525154206303473 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753145, + "c3": 1.5950069348127591, + "c4": 1.27600554785021, + "c5": 0.9570041608876542, + "c6": 0.638002773925105, + "c7": 0.31900138696255564 }, "rgb": [86, 146, 138] }, @@ -315528,23 +315528,23 @@ "year": 1791, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -6.9888273030267065, - "c2": 1.5057317043021676, - "c3": 18.21977160573221, - "c4": -21.23226112904024, - "c5": -4.705975835496869, - "c6": -5.955541028669703, - "c7": -5.0252479392514715 + "points": { + "c1": 14.784455976216918, + "c2": -12.692514421898252, + "c3": -4.89773456886941, + "c4": -4.394476773998299, + "c5": 31.79179340146497, + "c6": -12.133774190154366, + "c7": 21.0045874549481 }, - "vertexSeeds": { - "c1": 9.233358317403017, - "c2": 9.883702449235228, - "c3": 9.447989125044051, - "c4": 9.690581289870432, - "c5": 9.814938111140044, - "c6": 9.481747657052528, - "c7": 9.233406719064302 + "offsets": { + "c1": 16.796116504854368, + "c2": 14.396671289875176, + "c3": 11.997226074895982, + "c4": 9.59778085991679, + "c5": 7.198335644937597, + "c6": 4.798890429958385, + "c7": 2.3994452149791927 }, "rgb": [86, 146, 138] }, @@ -315555,23 +315555,23 @@ "year": 1791, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -15.797673947371617, - "c2": -38.93454145180753, - "c3": 33.32745899840114, - "c4": 21.230409159938723, - "c5": -33.51190504588381, - "c6": -30.71776901262304, - "c7": -20.795742846206295 + "points": { + "c1": 42.42226996022556, + "c2": -18.009192254850582, + "c3": 0.49733011474621236, + "c4": -19.50578052729061, + "c5": -15.766235298997781, + "c6": -30.99653102942157, + "c7": 25.384394461198738 }, - "vertexSeeds": { - "c1": 9.171364103482942, - "c2": 10.468656080550696, - "c3": 9.134114977805469, - "c4": 9.092767692916249, - "c5": 9.52833123232453, - "c6": 9.025787422784147, - "c7": 9.542670565548331 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122058, + "c3": 12.713823393435034, + "c4": 10.171058714748032, + "c5": 7.628294036061018, + "c6": 5.085529357374016, + "c7": 2.542764678687002 }, "rgb": [58, 15, 49] }, @@ -315582,23 +315582,23 @@ "year": 1791, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -13.21848174963575, - "c2": 26.21326962303592, - "c3": -3.3270937158706175, - "c4": -11.44865349884951, - "c5": -6.522324628118977, - "c6": -13.04104119003578, - "c7": -14.837450738107172 + "points": { + "c1": 3.254758430877075, + "c2": 6.306910394911796, + "c3": -32.54366987978546, + "c4": 33.653914817660066, + "c5": 0.4992933640046928, + "c6": 27.674682610537644, + "c7": 12.374312697127714 }, - "vertexSeeds": { - "c1": 4.6876825477278805, - "c2": 4.700656037024627, - "c3": 4.47303908979227, - "c4": 4.753764179281667, - "c5": 4.76482571331799, - "c6": 4.603009902396558, - "c7": 4.6259862871752455 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [222, 0, 59] }, @@ -315609,23 +315609,23 @@ "year": 1792, "resistanceReported": false, "duration": 45619200, - "curveSeeds": { - "c1": -26.105731240110323, - "c2": -58.04696975907082, - "c3": -44.78535934866933, - "c4": 36.01981176146104, - "c5": -36.79303154712218, - "c6": -58.41469107652928, - "c7": 31.14286733258804 + "points": { + "c1": -41.216692374606936, + "c2": 54.953196196516885, + "c3": 48.2014117190712, + "c4": -35.350682665754896, + "c5": -2.4885472135392916, + "c6": -48.77116150520244, + "c7": -34.396481862346036 }, - "vertexSeeds": { - "c1": 4.283789774605637, - "c2": 4.291356893590169, - "c3": 4.261810371095969, - "c4": 4.371454798655761, - "c5": 4.336978080250475, - "c6": 4.348121466924096, - "c7": 4.348130461331462 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090148, + "c3": 5.224225612575118, + "c4": 4.179380490060087, + "c5": 3.1345353675450567, + "c6": 2.089690245030061, + "c7": 1.0448451225150306 }, "rgb": [58, 15, 49] }, @@ -315636,23 +315636,23 @@ "year": 1791, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -29.4144752198568, - "c2": 23.602283864418517, - "c3": -24.01707903713964, - "c4": -25.673818610566414, - "c5": 32.61024742056779, - "c6": 33.06786339932424, - "c7": 9.589569880339141 + "points": { + "c1": 4.860881418953561, + "c2": 11.987261424333873, + "c3": -17.590755948315444, + "c4": 18.936447880526437, + "c5": -11.394667499290382, + "c6": -11.351811334177793, + "c7": 7.820730438621453 }, - "vertexSeeds": { - "c1": 5.410887742843447, - "c2": 5.521159447382937, - "c3": 5.517852612855054, - "c4": 4.436569443303815, - "c5": 4.8891818262360065, - "c6": 5.061719182777564, - "c7": 4.955291154505304 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664355, + "c3": 6.703652334720295, + "c4": 5.362921867776235, + "c5": 4.022191400832176, + "c6": 2.681460933888116, + "c7": 1.3407304669440596 }, "rgb": [77, 76, 132] }, @@ -315663,23 +315663,23 @@ "year": 1792, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 45.95157056346653, - "c2": 45.34569162951357, - "c3": 17.250978708782142, - "c4": -39.44343217824978, - "c5": -16.69983367770089, - "c6": 18.598171396830537, - "c7": 21.73004524781173 + "points": { + "c1": -13.408311545221721, + "c2": 10.579836843638894, + "c3": -24.63234859572175, + "c4": 45.949620577250144, + "c5": -8.319056661171459, + "c6": 4.458255312594176, + "c7": 33.48243243018908 }, - "vertexSeeds": { - "c1": 7.311525421521276, - "c2": 6.973607007789589, - "c3": 6.89230474571256, - "c4": 6.815535700104363, - "c5": 7.070204659872604, - "c6": 7.114324308760945, - "c7": 7.24562459342269 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -315690,23 +315690,23 @@ "year": 1791, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 25.500984692645588, - "c2": -6.555929935858401, - "c3": -33.63995221268715, - "c4": -12.779090620289125, - "c5": 6.021001083118563, - "c6": 38.49705603836708, - "c7": -4.334128785096404 + "points": { + "c1": -1.327374238659928, + "c2": 36.299533919877774, + "c3": 16.176666923139322, + "c4": -31.508116058793807, + "c5": 29.667407545125215, + "c6": 17.052052290302427, + "c7": -31.25377442492956 }, - "vertexSeeds": { - "c1": 9.990714544258033, - "c2": 9.841552150200945, - "c3": 9.948038088216927, - "c4": 10.352637054387028, - "c5": 10.584087668335634, - "c6": 10.192576980565091, - "c7": 10.522363449125583 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [77, 76, 132] }, @@ -315717,23 +315717,23 @@ "year": 1791, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -25.968630540044536, - "c2": -20.27922506789594, - "c3": 22.768776008037804, - "c4": 15.57604602195967, - "c5": -14.491589904927526, - "c6": 2.054208937470449, - "c7": -22.09895820200019 + "points": { + "c1": 14.236429231174803, + "c2": -14.126516015435922, + "c3": 15.230862658649066, + "c4": 3.285780172106918, + "c5": 20.759029252032313, + "c6": -20.51386191089304, + "c7": -19.277286207301685 }, - "vertexSeeds": { - "c1": 3.941898380677121, - "c2": 3.9297670324679195, - "c3": 3.937745692747722, - "c4": 3.932161200392168, - "c5": 3.938562908223703, - "c6": 3.9422087846670166, - "c7": 3.9334953552353076 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205298, + "c3": 4.715672676837779, + "c4": 3.7725381414702612, + "c5": 2.829403606102555, + "c6": 1.8862690707350367, + "c7": 0.9431345353675183 }, "rgb": [58, 15, 49] }, @@ -315744,23 +315744,23 @@ "year": 1791, "resistanceReported": false, "duration": 691200, - "curveSeeds": { - "c1": 4.413156788923089, - "c2": -7.452057313705888, - "c3": -7.7710778996921945, - "c4": 1.4945108765315567, - "c5": 2.808365717940722, - "c6": -2.734396103498975, - "c7": -4.830800894230068 + "points": { + "c1": 0.08712425668410795, + "c2": 0.773903048623648, + "c3": 5.296189286311185, + "c4": -0.22584988825861352, + "c5": 11.524002950296014, + "c6": 9.02263024127909, + "c7": -9.526069333986893 }, - "vertexSeeds": { - "c1": 0.7566252695000029, - "c2": 0.7531486475317822, - "c3": 0.763063225740285, - "c4": 0.7784393163688398, - "c5": 0.7713831171531635, - "c6": 0.7527923708061928, - "c7": 0.7483868243678697 + "offsets": { + "c1": 1.3592233009708738, + "c2": 1.1650485436893194, + "c3": 0.9708737864077684, + "c4": 0.776699029126214, + "c5": 0.5825242718446597, + "c6": 0.3883495145631087, + "c7": 0.19417475728155434 }, "rgb": [77, 76, 132] }, @@ -315771,23 +315771,23 @@ "year": 1792, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -43.61910764346224, - "c2": -22.48347282492878, - "c3": 14.548627089486757, - "c4": -26.264580329723813, - "c5": 12.793174688430312, - "c6": -45.89331359655722, - "c7": 20.533440481719495 + "points": { + "c1": -6.5118804070950915, + "c2": 16.31243217816933, + "c3": -20.09148323745461, + "c4": -9.125255270495266, + "c5": -35.9486191794162, + "c6": 33.99586555225689, + "c7": 4.277841416298621 }, - "vertexSeeds": { - "c1": 4.087606002544359, - "c2": 3.971108661965378, - "c3": 4.237164569730373, - "c4": 4.08585679095628, - "c5": 4.145841405329368, - "c6": 4.331963556902806, - "c7": 4.283886662774635 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [77, 76, 132] }, @@ -315798,23 +315798,23 @@ "year": 1791, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -27.18787203811665, - "c2": -12.692233579221766, - "c3": 9.248955706366377, - "c4": 21.53897628166514, - "c5": 26.48120729344775, - "c6": 3.058756184615028, - "c7": 24.76890583522084 + "points": { + "c1": 22.011799543992385, + "c2": -16.951585453846036, + "c3": 10.20866615999756, + "c4": -3.9283026767174043, + "c5": -0.31660545275411067, + "c6": -14.444531992369336, + "c7": 5.4422495278100875 }, - "vertexSeeds": { - "c1": 7.394080625602673, - "c2": 7.364787046418017, - "c3": 7.39230948629275, - "c4": 7.376154260950309, - "c5": 7.396821882436547, - "c6": 7.369984224750156, - "c7": 7.401349172548041 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364822, + "c3": 8.830328247804077, + "c4": 7.064262598243332, + "c5": 5.298196948682236, + "c6": 3.5321312991214904, + "c7": 1.7660656495607452 }, "rgb": [86, 146, 138] }, @@ -315825,23 +315825,23 @@ "year": 1791, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 8.667718481391432, - "c2": -13.732123262225734, - "c3": -22.035094758505323, - "c4": 14.647146651419291, - "c5": -15.52983425476047, - "c6": -16.459018265381463, - "c7": 15.702432420685255 + "points": { + "c1": -11.07855871540756, + "c2": -2.3702285133207326, + "c3": 11.341947734629848, + "c4": -20.379545463877847, + "c5": -15.71137316019933, + "c6": 1.1884479199621367, + "c7": -27.63186786672676 }, - "vertexSeeds": { - "c1": 5.446096676362016, - "c2": 5.556722130951441, - "c3": 5.265098417741647, - "c4": 5.392971308761656, - "c5": 5.343210438857636, - "c6": 5.5647336843380195, - "c7": 5.279951670464107 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624126, + "c3": 6.680536292186787, + "c4": 5.3444290337494245, + "c5": 4.008321775312063, + "c6": 2.6722145168747238, + "c7": 1.3361072584373619 }, "rgb": [77, 76, 132] }, @@ -315852,23 +315852,23 @@ "year": 1792, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": -49.92998210528075, - "c2": 28.512775938010535, - "c3": 17.59980010367505, - "c4": -6.339050992051007, - "c5": 27.83844177363197, - "c6": 50.76814150545323, - "c7": -39.62130448145703 + "points": { + "c1": 1.635796520379408, + "c2": -47.89896398040459, + "c3": 51.81027715903073, + "c4": 30.28960966026348, + "c5": 47.346481238345234, + "c6": -2.210232853420777, + "c7": -19.070860979609563 }, - "vertexSeeds": { - "c1": 8.048361401674901, - "c2": 8.529652450406802, - "c3": 8.290438916364382, - "c4": 7.849997797725117, - "c5": 8.028442834610717, - "c6": 7.888855909739175, - "c7": 8.31331381589667 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769764, + "c3": 10.171058714748028, + "c4": 8.13684697179844, + "c5": 6.102635228848829, + "c6": 4.06842348589922, + "c7": 2.03421174294961 }, "rgb": [86, 146, 138] }, @@ -315879,23 +315879,23 @@ "year": 1791, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": 9.49137371266239, - "c2": 11.616371337044036, - "c3": 2.94040208602447, - "c4": 6.940843115000877, - "c5": -14.155613257858677, - "c6": 0.9046797910318283, - "c7": -10.669987502221424 + "points": { + "c1": 7.823583543695708, + "c2": -6.939919763613538, + "c3": -0.19110635233455397, + "c4": 18.516949275836303, + "c5": 13.521159154332665, + "c6": -12.310975549664345, + "c7": -10.548342198455542 }, - "vertexSeeds": { - "c1": 1.8011708084179034, - "c2": 1.7806765825344826, - "c3": 1.8091950173770874, - "c4": 1.686698159721756, - "c5": 1.799080693783721, - "c6": 1.7957656911381559, - "c7": 1.7417441149794664 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.690707350901526, + "c3": 2.2422561257512714, + "c4": 1.793804900601017, + "c5": 1.345353675450763, + "c6": 0.8969024503005085, + "c7": 0.44845122515025426 }, "rgb": [86, 146, 138] }, @@ -315906,23 +315906,23 @@ "year": 1791, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 2.3994854038904947, - "c2": 19.00703302289454, - "c3": -1.1821807954251469, - "c4": -3.057604021409084, - "c5": -24.227301165997225, - "c6": 4.580658488533363, - "c7": -23.3677376867988 + "points": { + "c1": -9.6309008666016, + "c2": 25.970204220066123, + "c3": -3.446883100396768, + "c4": 11.35402765386278, + "c5": 14.225515773955898, + "c6": 7.973177466312151, + "c7": -26.149266568626995 }, - "vertexSeeds": { - "c1": 3.9143397724986793, - "c2": 3.9131803272744254, - "c3": 3.862243636826167, - "c4": 3.911075111649417, - "c5": 3.847847378388138, - "c6": 3.885776936063787, - "c7": 3.843960832719198 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165053, + "c3": 4.692556634304205, + "c4": 3.7540453074433686, + "c5": 2.815533980582521, + "c6": 1.8770226537216843, + "c7": 0.9385113268608477 }, "rgb": [222, 0, 59] }, @@ -315933,23 +315933,23 @@ "year": 1791, "resistanceReported": false, "duration": 5011200, - "curveSeeds": { - "c1": -14.5172789619674, - "c2": -12.46801716728539, - "c3": -3.1685577818955437, - "c4": -1.789203987638043, - "c5": 9.21147067005276, - "c6": 1.39540776285582, - "c7": 4.7911901052246595 + "points": { + "c1": 6.167669605551925, + "c2": 13.639458795605186, + "c3": -5.103150162750042, + "c4": -14.896584153712418, + "c5": -10.402870853937578, + "c6": -10.377599206963977, + "c7": 14.820542479684612 }, - "vertexSeeds": { - "c1": 5.694672746470718, - "c2": 5.6063045862348355, - "c3": 5.61851902942277, - "c4": 5.461709992720432, - "c5": 5.741494842680053, - "c6": 5.7365362957954575, - "c7": 4.62511288490111 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661582, + "c4": 6.158113730929263, + "c5": 4.61858529819695, + "c6": 3.0790568654646315, + "c7": 1.5395284327323158 }, "rgb": [222, 0, 59] }, @@ -315960,23 +315960,23 @@ "year": 1792, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 17.273168898971377, - "c2": -25.688077974536633, - "c3": 0.30490683331797186, - "c4": -15.74217613115652, - "c5": 29.60138056935459, - "c6": 22.295391410989296, - "c7": -0.7452765027856145 + "points": { + "c1": -16.385070195547794, + "c2": 11.508226439604599, + "c3": 9.869806992715922, + "c4": 26.85590496485851, + "c5": 8.38532439011783, + "c6": -41.38941738011013, + "c7": 46.312456284417166 }, - "vertexSeeds": { - "c1": 7.2456264331355795, - "c2": 7.44109049734203, - "c3": 6.960376320171396, - "c4": 7.288135596079799, - "c5": 7.05208735715536, - "c6": 7.15732266070681, - "c7": 7.066793093153059 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -315987,23 +315987,23 @@ "year": 1792, "resistanceReported": false, "duration": 47260800, - "curveSeeds": { - "c1": -32.27165612048712, - "c2": 15.146194952855375, - "c3": -42.15079489022526, - "c4": -12.98341706510697, - "c5": -32.62312640698903, - "c6": -53.18220878277683, - "c7": -45.9880058392841 + "points": { + "c1": 58.25501551483311, + "c2": -61.38974526007856, + "c3": -49.84422033678519, + "c4": 55.339223268903176, + "c5": -63.135384165842424, + "c6": 34.61251561503946, + "c7": -29.87296876691412 }, - "vertexSeeds": { - "c1": 1.16580310880829, - "c2": 1.16580310880829, - "c3": 1.16580310880829, - "c4": 1.16580310880829, - "c5": 1.16580310880829, - "c6": 1.16580310880829, - "c7": 1.16580310880829 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -316014,23 +316014,23 @@ "year": 1792, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": -36.944531259479255, - "c2": 1.063677283491053, - "c3": 42.31057964176273, - "c4": -20.0393500550167, - "c5": -3.258089481685161, - "c6": -12.774033179835818, - "c7": 42.627232613456755 + "points": { + "c1": 34.576922756914854, + "c2": 34.82865807834911, + "c3": 28.987357177338666, + "c4": 20.396704610623416, + "c5": -40.42141780825186, + "c6": 24.037630353976198, + "c7": 36.11419623782952 }, - "vertexSeeds": { - "c1": 5.339777093005054, - "c2": 5.562587980437732, - "c3": 5.3390249393791445, - "c4": 5.5610766725976335, - "c5": 5.682374201990862, - "c6": 5.521085184108964, - "c7": 5.4514427026020185 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.29403606102636, + "c3": 6.911696717521951, + "c4": 5.529357374017565, + "c5": 4.14701803051318, + "c6": 2.7646786870087716, + "c7": 1.3823393435043858 }, "rgb": [222, 0, 59] }, @@ -316041,23 +316041,23 @@ "year": 1792, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 35.7461056699451, - "c2": -42.622919198571154, - "c3": 6.426973219514437, - "c4": -34.100250676520986, - "c5": 39.24804187556466, - "c6": -48.62187877331718, - "c7": 38.61189246141452 + "points": { + "c1": 28.349398791505728, + "c2": -6.217635650413456, + "c3": -12.290798187985423, + "c4": 42.08879434232204, + "c5": -44.33677183530419, + "c6": -25.65283628799545, + "c7": 24.283886813067063 }, - "vertexSeeds": { - "c1": 2.3653790614305112, - "c2": 2.49553521261771, - "c3": 2.408792438319523, - "c4": 2.345312208510475, - "c5": 2.4784378265115006, - "c6": 2.381235329991379, - "c7": 2.3019699461353014 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228844, + "c3": 3.0050855293573755, + "c4": 2.4040684234859016, + "c5": 1.8030513176144276, + "c6": 1.2020342117429481, + "c7": 0.6010171058714741 }, "rgb": [86, 146, 138] }, @@ -316068,23 +316068,23 @@ "year": 1792, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": -20.56748289398447, - "c2": -7.403268565594146, - "c3": 26.91992795246771, - "c4": -30.949743913464857, - "c5": -27.314703660553654, - "c6": -35.64819746063576, - "c7": 54.1061029592552 + "points": { + "c1": 39.098979803755235, + "c2": 46.82662416467921, + "c3": -13.905655251757153, + "c4": 43.72721988424022, + "c5": -55.5845915615795, + "c6": -18.412407650582352, + "c7": 16.39346203769545 }, - "vertexSeeds": { - "c1": 4.027888791771959, - "c2": 4.123501364589986, - "c3": 3.8562301978329634, - "c4": 4.218815911150428, - "c5": 4.262568864706016, - "c6": 4.0221811998938355, - "c7": 3.9425347873671863 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889045, + "c3": 5.108645399907538, + "c4": 4.086916319926033, + "c5": 3.0651872399445264, + "c6": 2.043458159963012, + "c7": 1.0217290799815144 }, "rgb": [238, 201, 159] }, @@ -316095,23 +316095,23 @@ "year": 1792, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -16.261375530168436, - "c2": 20.141511223880542, - "c3": -29.918900184606663, - "c4": 3.060320001004861, - "c5": 40.00906791640385, - "c6": -18.11195497111989, - "c7": 38.45689477475739 + "points": { + "c1": 20.81747390209206, + "c2": -37.72754719058296, + "c3": 38.25806167241822, + "c4": -20.724919517902745, + "c5": -21.946587357908818, + "c6": -42.34862807438099, + "c7": -28.17121188483405 }, - "vertexSeeds": { - "c1": 4.846821409105511, - "c2": 4.061078411709182, - "c3": 4.487123772487504, - "c4": 4.209826713739161, - "c5": 4.850583612528814, - "c6": 4.47160495116976, - "c7": 4.119598188209679 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176146, + "c3": 5.848358760980119, + "c4": 4.678687008784096, + "c5": 3.509015256588073, + "c6": 2.3393435043920503, + "c7": 1.1696717521960227 }, "rgb": [238, 201, 159] }, @@ -316122,23 +316122,23 @@ "year": 1791, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -17.208320720293077, - "c2": 23.335957999415697, - "c3": 32.19901137937227, - "c4": -11.136131976529352, - "c5": -24.749634303753304, - "c6": 0.981995147690526, - "c7": -25.118721020170796 + "points": { + "c1": 5.941514642070935, + "c2": -8.39050164044976, + "c3": 20.63133441031443, + "c4": -12.135573361436592, + "c5": 26.24954196295115, + "c6": -22.858826925070503, + "c7": -17.72490720829283 }, - "vertexSeeds": { - "c1": 3.856852559257546, - "c2": 3.8106727405865093, - "c3": 3.8132105413537984, - "c4": 3.8147446483295897, - "c5": 3.8319586378572725, - "c6": 3.8159663968814623, - "c7": 3.837535189044411 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044409, + "c3": 4.6232085067036435, + "c4": 3.6985668053629395, + "c5": 2.7739251040221737, + "c6": 1.8492834026814697, + "c7": 0.9246417013407041 }, "rgb": [58, 15, 49] }, @@ -316149,23 +316149,23 @@ "year": 1791, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 22.691920125693056, - "c2": -15.923610215247724, - "c3": 20.33459256294363, - "c4": 3.7309038518409956, - "c5": 12.57376927804518, - "c6": -9.350231271332081, - "c7": 25.14270386778576 + "points": { + "c1": -0.4718751468264273, + "c2": 31.100195347925908, + "c3": 1.5603267935199945, + "c4": -3.8092807251737675, + "c5": 27.432461728833605, + "c6": 8.069850109448797, + "c7": -31.04451313863621 }, - "vertexSeeds": { - "c1": 3.0310880829015545, - "c2": 3.0310880829015545, - "c3": 3.0310880829015545, - "c4": 3.0310880829015545, - "c5": 3.0310880829015545, - "c6": 3.0310880829015545, - "c7": 3.0310880829015545 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -316176,23 +316176,23 @@ "year": 1792, "resistanceReported": false, "duration": 39916800, - "curveSeeds": { - "c1": -44.72116332889729, - "c2": -37.81594928510556, - "c3": 2.499404701264048, - "c4": 1.6794757743913564, - "c5": 15.017016967196021, - "c6": -26.672887066581612, - "c7": 21.624086362309335 + "points": { + "c1": -11.49915949298451, + "c2": -40.52842712881798, + "c3": 21.9741541874861, + "c4": -52.473902047198344, + "c5": 54.370475637781006, + "c6": -51.45568043369774, + "c7": -41.96858019495617 }, - "vertexSeeds": { - "c1": 1.3406735751295336, - "c2": 1.3406735751295336, - "c3": 1.3406735751295336, - "c4": 1.3406735751295336, - "c5": 1.3406735751295336, - "c6": 1.3406735751295336, - "c7": 1.3406735751295336 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -316203,23 +316203,23 @@ "year": 1791, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -2.470152470047857, - "c2": 8.771012714534557, - "c3": 12.808532083071, - "c4": 32.85653518626238, - "c5": -29.67169786932738, - "c6": 19.74278673187728, - "c7": 10.3862407519211 + "points": { + "c1": 0.8007173500158515, + "c2": -34.13025243717954, + "c3": 25.854916268965468, + "c4": 35.56986138631103, + "c5": -16.68409513536278, + "c6": 12.20961836646078, + "c7": -18.820267351091978 }, - "vertexSeeds": { - "c1": 6.9213979026663965, - "c2": 6.857133778845059, - "c3": 6.8733380430728355, - "c4": 6.928691343808129, - "c5": 6.920364675917656, - "c6": 6.908791370165362, - "c7": 6.875509790452534 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399492, + "c3": 8.275543226999522, + "c4": 6.620434581599662, + "c5": 4.965325936199691, + "c6": 3.310217290799831, + "c7": 1.6551086453999702 }, "rgb": [238, 201, 159] }, @@ -316230,23 +316230,23 @@ "year": 1791, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -13.773945788467806, - "c2": 34.91039278985714, - "c3": 1.014843434834816, - "c4": 7.342518976265808, - "c5": -8.01792918152023, - "c6": 1.4045822145030584, - "c7": 21.155644056452424 + "points": { + "c1": 29.958485483805802, + "c2": -4.088450706364377, + "c3": 20.925588662273633, + "c4": -14.720328075322524, + "c5": 33.035300915115656, + "c6": -24.1376811733491, + "c7": -12.067319004661027 }, - "vertexSeeds": { - "c1": 6.25751997012063, - "c2": 6.006609914509017, - "c3": 5.688389694358442, - "c4": 5.826763736077927, - "c5": 5.785529488162733, - "c6": 5.952009797623407, - "c7": 5.708456932311408 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.01525658807212, + "c3": 7.51271382339343, + "c4": 6.010171058714741, + "c5": 4.507628294036067, + "c6": 3.0050855293573777, + "c7": 1.5025427646786889 }, "rgb": [222, 0, 59] }, @@ -316257,23 +316257,23 @@ "year": 1791, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 23.993150330008703, - "c2": -36.130868707838474, - "c3": 17.04051523916121, - "c4": 29.76991821074212, - "c5": -27.33497353897196, - "c6": 8.372978501197537, - "c7": 35.403882568488385 + "points": { + "c1": 6.531348894981825, + "c2": -20.572916010404604, + "c3": 37.450542676493384, + "c4": 3.2651852327397606, + "c5": -10.790364332136907, + "c6": 5.970392281610309, + "c7": 18.985221619775416 }, - "vertexSeeds": { - "c1": 5.968209005650753, - "c2": 5.660325376788952, - "c3": 5.840390269145331, - "c4": 5.501451261298528, - "c5": 5.228043272200779, - "c6": 5.188244649769925, - "c7": 5.26251382792933 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [58, 15, 49] }, @@ -316284,23 +316284,23 @@ "year": 1791, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -20.49198066947487, - "c2": -21.438910928623926, - "c3": 17.178207041874508, - "c4": -27.091446950309773, - "c5": 10.003518282257268, - "c6": -5.91495565059666, - "c7": -9.691823962413963 + "points": { + "c1": 22.122925662008875, + "c2": 31.27623286309131, + "c3": 23.640752248496554, + "c4": -4.8838116643825025, + "c5": -10.993203685441355, + "c6": 27.904058157480996, + "c7": -10.234587852285006 }, - "vertexSeeds": { - "c1": 5.968589760731852, - "c2": 7.413087527413017, - "c3": 7.173063459540896, - "c4": 7.433801057851806, - "c5": 7.188059296355922, - "c6": 7.254774455282275, - "c7": 7.415355232025532 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.178918169209428, + "c3": 9.31576514100786, + "c4": 7.452612112806285, + "c5": 5.589459084604718, + "c6": 3.7263060564031427, + "c7": 1.8631530282015674 }, "rgb": [58, 15, 49] }, @@ -316311,23 +316311,23 @@ "year": 1791, "resistanceReported": true, "duration": 13737600, - "curveSeeds": { - "c1": 3.76996993098912, - "c2": 21.80932337224858, - "c3": 3.0707454782796724, - "c4": -22.24063229125743, - "c5": -21.302738013156564, - "c6": -1.4834397649176765, - "c7": -24.900941801744523 + "points": { + "c1": 2.553140784957126, + "c2": -15.65812328446189, + "c3": -18.173088902944002, + "c4": 10.35730568463826, + "c5": -22.709497149248193, + "c6": -15.361798466046103, + "c7": -25.867564977285262 }, - "vertexSeeds": { - "c1": 4.675156807055563, - "c2": 4.548188021263572, - "c3": 4.317783348661784, - "c4": 4.643459057000515, - "c5": 4.54087503400627, - "c6": 4.336293870808656, - "c7": 4.6464002683456105 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773923, + "c3": 5.617198335644933, + "c4": 4.493758668515945, + "c5": 3.370319001386967, + "c6": 2.246879334257978, + "c7": 1.123439667128989 }, "rgb": [58, 15, 49] }, @@ -316338,23 +316338,23 @@ "year": 1791, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -32.12747682228088, - "c2": 0.4767880306860448, - "c3": 27.937564189595065, - "c4": -11.926744180059387, - "c5": 37.446858783532534, - "c6": 35.403787676085244, - "c7": 18.256897143298623 + "points": { + "c1": 14.164893273393659, + "c2": 21.71204006494036, + "c3": -31.975959001475665, + "c4": 36.34123364579378, + "c5": -29.773189831098147, + "c6": 39.632281239811704, + "c7": -34.71584322292877 }, - "vertexSeeds": { - "c1": 8.899621285022807, - "c2": 9.034054903149155, - "c3": 9.719828254446604, - "c4": 7.854511963478351, - "c5": 7.872196920801286, - "c6": 9.44649745909851, - "c7": 8.456714658662177 + "offsets": { + "c1": 17.055016181229774, + "c2": 14.618585298196953, + "c3": 12.18215441516412, + "c4": 9.745723532131299, + "c5": 7.309292649098476, + "c6": 4.872861766065646, + "c7": 2.436430883032823 }, "rgb": [222, 0, 59] }, @@ -316365,23 +316365,23 @@ "year": 1791, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 13.95246507426878, - "c2": -9.811555533473957, - "c3": -23.594244551475754, - "c4": -12.756426505019057, - "c5": 22.188891373990636, - "c6": 27.24215349789695, - "c7": 7.832171247774987 + "points": { + "c1": 6.687183906933107, + "c2": 17.832282208026598, + "c3": -11.647029119733027, + "c4": -9.305172372489832, + "c5": 26.677890034255498, + "c6": -22.700638166553333, + "c7": -16.47869465770067 }, - "vertexSeeds": { - "c1": 5.129708456167948, - "c2": 4.658062875873895, - "c3": 4.873407290840208, - "c4": 5.180745200989127, - "c5": 5.176786268465433, - "c6": 5.2675985470595865, - "c7": 5.252150816770088 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221919, + "c3": 6.449375866851593, + "c4": 5.159500693481279, + "c5": 3.8696255201109544, + "c6": 2.5797503467406395, + "c7": 1.2898751733703147 }, "rgb": [222, 0, 59] }, @@ -316392,23 +316392,23 @@ "year": 1792, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 9.926667112073645, - "c2": 9.423624194673742, - "c3": 17.565258985981316, - "c4": -14.755332630418302, - "c5": 16.714479259704653, - "c6": -30.968096894714126, - "c7": -36.228805099713284 + "points": { + "c1": -31.709092057383756, + "c2": -15.082873951094918, + "c3": 13.070203613321745, + "c4": 5.243464184705793, + "c5": -43.35691347507247, + "c6": 41.85622396405184, + "c7": -39.78320033738703 }, - "vertexSeeds": { - "c1": 6.474420955603148, - "c2": 7.081181081166371, - "c3": 6.781268919939482, - "c4": 7.146434070021211, - "c5": 7.108802034596927, - "c6": 6.973807784450764, - "c7": 7.081510630032763 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123435, + "c3": 8.691631992602872, + "c4": 6.953305594082295, + "c5": 5.2149791955617175, + "c6": 3.4766527970411407, + "c7": 1.7383263985205772 }, "rgb": [58, 15, 49] }, @@ -316419,23 +316419,23 @@ "year": 1791, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -23.838846441489366, - "c2": 4.755533288141912, - "c3": -24.051157794515667, - "c4": -0.17679706601118994, - "c5": -25.776775282922372, - "c6": 20.371315250545436, - "c7": 24.970739289470373 + "points": { + "c1": -23.49311395694914, + "c2": -30.56279662282482, + "c3": -26.704886420144934, + "c4": 36.47230204118547, + "c5": 25.368891788663404, + "c6": -7.779226312627856, + "c7": -37.18878643471328 }, - "vertexSeeds": { - "c1": 6.141061108518984, - "c2": 6.127205548740619, - "c3": 6.094955386515981, - "c4": 6.025604389284431, - "c5": 6.127753711316811, - "c6": 6.128066657201721, - "c7": 6.0431964332739065 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468763, + "c3": 7.165973185390672, + "c4": 5.732778548312509, + "c5": 4.299583911234417, + "c6": 2.8663892741562544, + "c7": 1.4331946370781627 }, "rgb": [58, 15, 49] }, @@ -316446,23 +316446,23 @@ "year": 1791, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": -5.29862123043746, - "c2": 6.5973625192050065, - "c3": 6.954370324785913, - "c4": 6.168078424050101, - "c5": -12.405382586886681, - "c6": -19.289092922158577, - "c7": 18.557520914948956 + "points": { + "c1": 17.500319224393063, + "c2": 14.149973175799946, + "c3": 10.78527811351739, + "c4": 3.752880620578079, + "c5": -12.745956020845224, + "c6": 5.656792672473806, + "c7": 17.658471990093783 }, - "vertexSeeds": { - "c1": 3.272973677581353, - "c2": 3.3161970650495096, - "c3": 3.3460118774472924, - "c4": 3.1903744884928646, - "c5": 3.3283911420999983, - "c6": 3.338812057448002, - "c7": 3.3016345127018867 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.82662968099861, + "c3": 4.02219140083218, + "c4": 3.217753120665743, + "c5": 2.413314840499305, + "c6": 1.6088765603328672, + "c7": 0.8044382801664377 }, "rgb": [238, 201, 159] }, @@ -316473,23 +316473,23 @@ "year": 1791, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 19.615969382417425, - "c2": -14.196310236531975, - "c3": 5.005560708558868, - "c4": 23.036040479956533, - "c5": -30.958125173509522, - "c6": 30.639576530350006, - "c7": 3.668102929995115 + "points": { + "c1": 16.399135895045262, + "c2": -28.08863678597448, + "c3": -25.853648838402663, + "c4": 27.551646411303928, + "c5": -18.051629843011156, + "c6": 31.172475601106576, + "c7": 8.344562484833801 }, - "vertexSeeds": { - "c1": 2.0923293247361503, - "c2": 2.1326013133984123, - "c3": 2.065745737041745, - "c4": 2.0069088478507138, - "c5": 2.0837004856729244, - "c6": 2.0917168201511394, - "c7": 2.0721212089273644 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504856, + "c3": 2.588996763754049, + "c4": 2.071197411003235, + "c5": 1.553398058252428, + "c6": 1.035598705501621, + "c7": 0.5177993527508072 }, "rgb": [86, 146, 138] }, @@ -316500,23 +316500,23 @@ "year": 1792, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -31.563130113798564, - "c2": 8.430930876758374, - "c3": 39.92873145060981, - "c4": 4.683035929646614, - "c5": 14.036545829823908, - "c6": -35.68312137711258, - "c7": -27.644969682444376 + "points": { + "c1": 36.453805000097894, + "c2": -16.008509657943065, + "c3": -13.807144547158323, + "c4": -46.47820146021726, + "c5": 7.431215927079393, + "c6": -2.484775318295121, + "c7": -19.616611918314355 }, - "vertexSeeds": { - "c1": 5.466002331247343, - "c2": 6.849973926868294, - "c3": 5.510939503749437, - "c4": 6.6635751417537135, - "c5": 5.446066514749083, - "c6": 6.4392292703401095, - "c7": 5.908590100682427 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938048, + "c4": 7.138233934350442, + "c5": 5.353675450762828, + "c6": 3.5691169671752148, + "c7": 1.7845584835876074 }, "rgb": [238, 201, 159] }, @@ -316527,23 +316527,23 @@ "year": 1791, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -9.67068871599286, - "c2": 19.50421130108942, - "c3": 18.334800422243397, - "c4": -18.551808695084304, - "c5": 28.99948367139436, - "c6": 35.043606656623325, - "c7": 9.585747073548575 + "points": { + "c1": -2.60196524348995, + "c2": -22.40804947008074, + "c3": 26.211233319460334, + "c4": 32.965082384030694, + "c5": 5.632548245707248, + "c6": 26.508258018848835, + "c7": 22.91521382996767 }, - "vertexSeeds": { - "c1": 5.682930131221274, - "c2": 5.710029721031104, - "c3": 5.551488912043441, - "c4": 5.498643813445994, - "c5": 5.510121389865966, - "c6": 5.510318039907983, - "c7": 5.640312759704729 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905704, + "c3": 6.842348589921399, + "c4": 5.473878871937137, + "c5": 4.105409153952832, + "c6": 2.7369394359685684, + "c7": 1.3684697179843048 }, "rgb": [58, 15, 49] }, @@ -316554,23 +316554,23 @@ "year": 1791, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 5.666161835800157, - "c2": 25.68326257665728, - "c3": 8.061481817405333, - "c4": -13.449881078525934, - "c5": 13.365324909044897, - "c6": -16.495529679080104, - "c7": 24.981244840901983 + "points": { + "c1": -13.43085984538126, + "c2": 11.298051177864494, + "c3": -4.410865987178312, + "c4": -29.156904266294433, + "c5": 9.481088352165536, + "c6": 22.209115571987105, + "c7": -12.436539938815866 }, - "vertexSeeds": { - "c1": 5.109193340096048, - "c2": 5.0942203531100745, - "c3": 5.109392265210906, - "c4": 5.126609116219127, - "c5": 5.040917096329174, - "c6": 5.11155149685891, - "c7": 5.12355908380958 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658793, + "c3": 6.1257512713823115, + "c4": 4.90060101710583, + "c5": 3.6754507628294455, + "c6": 2.4503005085529637, + "c7": 1.2251502542764818 }, "rgb": [58, 15, 49] }, @@ -316581,23 +316581,23 @@ "year": 1792, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 2.261696429641873, - "c2": 37.23335088342034, - "c3": 21.883898264098917, - "c4": -17.17121890123152, - "c5": 31.03639374654982, - "c6": -4.689640832773655, - "c7": 5.461262847217213 + "points": { + "c1": 36.731184596788495, + "c2": 13.998933961666118, + "c3": 44.087430343650595, + "c4": -9.139972561170069, + "c5": 19.92113479723473, + "c6": 27.722797139900237, + "c7": 3.2210369515030095 }, - "vertexSeeds": { - "c1": 5.088744575671754, - "c2": 5.3287994528339, - "c3": 5.198871311060173, - "c4": 5.367281642043894, - "c5": 5.019624971953229, - "c6": 5.3930392137647525, - "c7": 5.127611163470812 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463243, + "c3": 6.588072122052699, + "c4": 5.270457697642155, + "c5": 3.952843273231631, + "c6": 2.6352288488210878, + "c7": 1.3176144244105439 }, "rgb": [77, 76, 132] }, @@ -316608,23 +316608,23 @@ "year": 1792, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 30.10529737460343, - "c2": 27.472144538418995, - "c3": -23.180325318796747, - "c4": -25.198395009389525, - "c5": -37.71850849761868, - "c6": 10.205186054296604, - "c7": 28.2090389399307 + "points": { + "c1": -5.777851166859669, + "c2": 14.390773513192144, + "c3": -30.778546605182633, + "c4": 14.426911721313829, + "c5": -4.97022551911035, + "c6": 37.77305697698322, + "c7": 40.40748354903098 }, - "vertexSeeds": { - "c1": 8.128012157548103, - "c2": 8.364289928556907, - "c3": 8.43068996172071, - "c4": 7.8647966104337925, - "c5": 7.8000833217349275, - "c6": 7.676594420566722, - "c7": 7.740037953784804 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496527, + "c3": 10.055478502080446, + "c4": 8.044382801664351, + "c5": 6.03328710124827, + "c6": 4.022191400832176, + "c7": 2.011095700416094 }, "rgb": [86, 146, 138] }, @@ -316635,23 +316635,23 @@ "year": 1791, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 3.2946130048745843, - "c2": 15.491387098104195, - "c3": -17.29430145472627, - "c4": -19.794800838852304, - "c5": 23.89468028840363, - "c6": -3.900637439521258, - "c7": 13.661376785918772 + "points": { + "c1": -9.065070613123297, + "c2": -10.208615204858031, + "c3": -5.236335897425036, + "c4": 3.659738460188972, + "c5": -17.284540551571332, + "c6": 21.879916534056637, + "c7": 4.975985438749884 }, - "vertexSeeds": { - "c1": 1.1518848781054745, - "c2": 1.1576617800877922, - "c3": 1.1469017969545179, - "c4": 1.1536618185777463, - "c5": 1.1620941897057755, - "c6": 1.153522197775172, - "c7": 1.1586138440586358 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.692094313453531, + "c3": 1.410078594544616, + "c4": 1.1280628756356872, + "c5": 0.8460471567267724, + "c6": 0.5640314378178436, + "c7": 0.2820157189089288 }, "rgb": [58, 15, 49] }, @@ -316662,23 +316662,23 @@ "year": 1791, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -9.35608364587322, - "c2": 24.771678387312946, - "c3": 12.798164175092545, - "c4": -26.78604622826162, - "c5": 22.013334834150683, - "c6": -4.0029517753193, - "c7": -34.84131576859807 + "points": { + "c1": -5.60896411714954, + "c2": 33.333125149073766, + "c3": -6.600338666673384, + "c4": 3.5007788989259794, + "c5": -12.295274653046615, + "c6": 23.32383186095761, + "c7": 16.905677352772273 }, - "vertexSeeds": { - "c1": 4.497777781765583, - "c2": 4.522035186651453, - "c3": 4.3399163917159305, - "c4": 4.704242577952047, - "c5": 4.3712844245781115, - "c6": 4.720730729328299, - "c7": 4.69042361956951 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814146, + "c3": 5.640314378178453, + "c4": 4.51225150254276, + "c5": 3.384188626907067, + "c6": 2.256125751271386, + "c7": 1.128062875635693 }, "rgb": [77, 76, 132] }, @@ -316689,23 +316689,23 @@ "year": 1791, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 9.80510082233242, - "c2": 22.71867498130611, - "c3": -16.49577818444885, - "c4": 1.578931172818539, - "c5": -15.909545622086139, - "c6": -13.379717837057187, - "c7": -22.062772339603953 + "points": { + "c1": -19.053670535182448, + "c2": 14.98898255179467, + "c3": -14.465718391928657, + "c4": 10.343950134508638, + "c5": 30.810651710604063, + "c6": 8.15842195514827, + "c7": -23.120277732717202 }, - "vertexSeeds": { - "c1": 3.070813076436631, - "c2": 3.0998322192174648, - "c3": 3.158707666227356, - "c4": 3.098376900459213, - "c5": 3.142360845715701, - "c6": 3.1475317997610723, - "c7": 3.133198829397864 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636615, + "c3": 3.814147018030513, + "c4": 3.05131761442441, + "c5": 2.2884882108183073, + "c6": 1.525658807212205, + "c7": 0.7628294036061025 }, "rgb": [58, 15, 49] }, @@ -316716,23 +316716,23 @@ "year": 1791, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 5.584628163237799, - "c2": 1.296923129198131, - "c3": 18.222496480565848, - "c4": 15.137492617690068, - "c5": -27.872987384860036, - "c6": -0.316413800098271, - "c7": 26.218544680012105 + "points": { + "c1": -12.210611438618436, + "c2": -25.310566851370382, + "c3": -29.30364521478581, + "c4": -17.13214538647882, + "c5": -8.513810423328259, + "c6": 2.515201000401216, + "c7": -18.950851643113083 }, - "vertexSeeds": { - "c1": 1.3795336787564767, - "c2": 1.3795336787564767, - "c3": 1.3795336787564767, - "c4": 1.3795336787564767, - "c5": 1.3795336787564767, - "c6": 1.3795336787564767, - "c7": 1.3795336787564767 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -316743,23 +316743,23 @@ "year": 1791, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 16.927709589018384, - "c2": 22.766911260666376, - "c3": 8.268034589716535, - "c4": -12.334493013608354, - "c5": 25.501220082089972, - "c6": 26.077003299175786, - "c7": -24.936189186062624 + "points": { + "c1": 26.04097213300652, + "c2": 24.360793716833356, + "c3": -10.126905167916625, + "c4": -3.5903794731071237, + "c5": -22.458172379356096, + "c6": 8.721826497380576, + "c7": -13.485417530668391 }, - "vertexSeeds": { - "c1": 5.837748411900265, - "c2": 5.752958416757587, - "c3": 6.035028037650174, - "c4": 6.057637177752974, - "c5": 5.918444834523198, - "c6": 5.8330826958039115, - "c7": 6.874841913082312 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922329, + "c3": 8.576051779935272, + "c4": 6.860841423948217, + "c5": 5.145631067961168, + "c6": 3.4304207119741124, + "c7": 1.7152103559870562 }, "rgb": [58, 15, 49] }, @@ -316770,23 +316770,23 @@ "year": 1791, "resistanceReported": true, "duration": 25920000, - "curveSeeds": { - "c1": -22.411162308734987, - "c2": 2.5096039833585593, - "c3": -6.5991084305832, - "c4": -6.500897129011797, - "c5": 2.306243343123313, - "c6": -7.803907321753805, - "c7": 19.83677563363129 + "points": { + "c1": 17.628638925561475, + "c2": -20.203753842942195, + "c3": -39.727842943674574, + "c4": 3.2835546875106587, + "c5": 21.92786801885604, + "c6": 31.477873547193248, + "c7": -21.962687401751488 }, - "vertexSeeds": { - "c1": 2.3878161990919606, - "c2": 2.580173659905621, - "c3": 2.5312311477256424, - "c4": 2.4368099494317197, - "c5": 2.2177137196949683, - "c6": 2.3280148844806243, - "c7": 2.1062648870951306 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712904, + "c3": 3.2593619972260757, + "c4": 2.607489597780862, + "c5": 1.9556171983356452, + "c6": 1.303744798890431, + "c7": 0.6518723994452164 }, "rgb": [58, 15, 49] }, @@ -316797,23 +316797,23 @@ "year": 1791, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -16.968400660176563, - "c2": -25.975318302269173, - "c3": -34.503763954212715, - "c4": -14.55967992418876, - "c5": -18.549677662926314, - "c6": -15.80347138389049, - "c7": -30.23169990942288 + "points": { + "c1": -26.810387742627988, + "c2": -0.9598171411520084, + "c3": 26.399517816934832, + "c4": -8.230709942818862, + "c5": 11.269618219673141, + "c6": 4.921583032708277, + "c7": -29.958449804275272 }, - "vertexSeeds": { - "c1": 4.248070637119798, - "c2": 3.754992750998189, - "c3": 4.344976964210986, - "c4": 4.126309320454026, - "c5": 4.295825117219907, - "c6": 4.033369479032905, - "c7": 3.9935284558245074 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049931, + "c3": 5.20110957004161, + "c4": 4.16088765603329, + "c5": 3.1206657420249684, + "c6": 2.0804438280166475, + "c7": 1.040221914008327 }, "rgb": [86, 146, 138] }, @@ -316824,23 +316824,23 @@ "year": 1791, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -21.08346914491449, - "c2": 2.881225080421501, - "c3": 24.054445096333133, - "c4": 3.362083720864952, - "c5": -20.284407618499316, - "c6": 28.168086466263155, - "c7": -21.83968425471977 + "points": { + "c1": 17.408718399290933, + "c2": -26.238457373537518, + "c3": -13.263575265497451, + "c4": 20.037679147410955, + "c5": 28.616551686278058, + "c6": -13.363302656634435, + "c7": 17.26837956354415 }, - "vertexSeeds": { - "c1": 2.5940388857582235, - "c2": 2.5735209947878985, - "c3": 2.467666275424832, - "c4": 2.4475032731025443, - "c5": 2.420221751095477, - "c6": 2.3449604107512094, - "c7": 2.5564891548811732 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429959, + "c3": 3.120665742024966, + "c4": 2.496532593619974, + "c5": 1.8723994452149815, + "c6": 1.248266296809985, + "c7": 0.6241331484049925 }, "rgb": [86, 146, 138] }, @@ -316851,23 +316851,23 @@ "year": 1792, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": 5.479376997852533, - "c2": -24.984913245163135, - "c3": -9.04894146021676, - "c4": 42.908357860490696, - "c5": -24.62593449976264, - "c6": -13.963370272027348, - "c7": -16.255784464407572 + "points": { + "c1": 18.14304255490147, + "c2": 7.276389555224753, + "c3": -22.26507521011912, + "c4": 12.230138254296499, + "c5": -14.622941005953095, + "c6": -9.961799934223023, + "c7": -22.778638234610455 }, - "vertexSeeds": { - "c1": 6.816862617797546, - "c2": 6.541603456578514, - "c3": 6.953057791731478, - "c4": 6.6646636630884295, - "c5": 6.565885920523082, - "c6": 6.396515818918124, - "c7": 6.8066435925664495 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -316878,23 +316878,23 @@ "year": 1791, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -10.458477258453053, - "c2": 4.1556722947930425, - "c3": 24.949488747355964, - "c4": -1.7334747521616762, - "c5": 17.08743373902464, - "c6": -19.353666673163634, - "c7": -12.896242231093082 + "points": { + "c1": 4.338576822054634, + "c2": 24.389488017014877, + "c3": 19.406001013061292, + "c4": -18.21004405808516, + "c5": -16.49797278977153, + "c6": -19.425805885793025, + "c7": -0.9657469624651185 }, - "vertexSeeds": { - "c1": 6.201001796693119, - "c2": 5.9682488610721, - "c3": 6.258443178867277, - "c4": 5.940483070068765, - "c5": 5.87548078822978, - "c6": 6.167492511564132, - "c7": 5.950619056222149 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072114, + "c3": 7.512713823393421, + "c4": 6.010171058714751, + "c5": 4.507628294036057, + "c6": 3.005085529357363, + "c7": 1.5025427646786942 }, "rgb": [238, 201, 159] }, @@ -316905,23 +316905,23 @@ "year": 1791, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -1.1418904491702015, - "c2": 20.279997539527667, - "c3": -5.340293688217457, - "c4": 9.922332084552341, - "c5": 5.338237397105441, - "c6": -22.811359413560474, - "c7": -1.1940725751947028 + "points": { + "c1": 16.07309940313151, + "c2": -1.504278011776936, + "c3": 4.240359054090266, + "c4": 22.735616312981133, + "c5": 9.465976897357553, + "c6": 17.28180221419483, + "c7": -3.391944421638481 }, - "vertexSeeds": { - "c1": 3.5396922138720432, - "c2": 3.3585014038848704, - "c3": 3.528759477415029, - "c4": 3.3243873951322236, - "c5": 3.3730293234010484, - "c6": 3.4825109865612363, - "c7": 3.440274922370647 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.39204808136847, + "c4": 3.513638465094776, + "c5": 2.635228848821082, + "c6": 1.756819232547388, + "c7": 0.878409616273694 }, "rgb": [238, 201, 159] }, @@ -316932,23 +316932,23 @@ "year": 1791, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 27.493830176164764, - "c2": 25.602178666312653, - "c3": -23.92814967375682, - "c4": 13.523572044239515, - "c5": 29.207634866053205, - "c6": 14.112658400349218, - "c7": -22.07778382416433 + "points": { + "c1": -25.737316859399584, + "c2": -21.15875830099973, + "c3": 27.530848798442044, + "c4": -32.194239978339894, + "c5": 4.083882203211054, + "c6": 21.145133285994916, + "c7": -9.767102689625084 }, - "vertexSeeds": { - "c1": 5.638543880558455, - "c2": 5.6517714345227965, - "c3": 5.661953752135064, - "c4": 5.533584469822978, - "c5": 5.4685703095557505, - "c6": 5.573273874765565, - "c7": 5.650840703644737 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785037, + "c3": 6.7730004623208435, + "c4": 5.418400369856692, + "c5": 4.063800277392498, + "c6": 2.709200184928346, + "c7": 1.3546000924641524 }, "rgb": [77, 76, 132] }, @@ -316959,23 +316959,23 @@ "year": 1791, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -23.689369042678624, - "c2": 23.770061014335564, - "c3": 23.184158406895985, - "c4": -2.333879736327635, - "c5": -19.315106987353666, - "c6": -0.2132958697160916, - "c7": 1.5444556676602161 + "points": { + "c1": -13.42127266719611, + "c2": -22.668198131453778, + "c3": -14.196523002640117, + "c4": 26.922406067443344, + "c5": -6.497877427420207, + "c6": 18.505139687350155, + "c7": -5.062472105852418 }, - "vertexSeeds": { - "c1": 7.5196952672957735, - "c2": 8.517757984670665, - "c3": 8.109177122496588, - "c4": 7.915394468359853, - "c5": 7.939438804081314, - "c6": 7.960914645663261, - "c7": 8.326198745868298 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778082, + "c3": 10.217290799815064, + "c4": 8.173832639852058, + "c5": 6.130374479889041, + "c6": 4.086916319926023, + "c7": 2.0434581599630053 }, "rgb": [222, 0, 59] }, @@ -316986,23 +316986,23 @@ "year": 1792, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -19.078849434211744, - "c2": 25.137029558454657, - "c3": -2.0918353819964253, - "c4": -31.752367676058963, - "c5": 38.424108840875135, - "c6": -4.117172034138029, - "c7": 22.442825707932798 + "points": { + "c1": -37.39855911925763, + "c2": 18.833077017166637, + "c3": 22.014652996107714, + "c4": 3.058574363102771, + "c5": 12.530225612744168, + "c6": 43.675842480085905, + "c7": -4.66967595892838 }, - "vertexSeeds": { - "c1": 2.0332945190770975, - "c2": 2.037766519565809, - "c3": 2.0657869681192076, - "c4": 2.145223332306517, - "c5": 2.1395431763374058, - "c6": 2.1288063255043173, - "c7": 2.113671795243292 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [222, 0, 59] }, @@ -317013,23 +317013,23 @@ "year": 1792, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": -43.38186378162235, - "c2": 19.855324401639088, - "c3": -5.338493536846649, - "c4": -12.53182283147266, - "c5": -42.477808056268955, - "c6": -42.310899800967796, - "c7": -30.71888144249729 + "points": { + "c1": 26.434859276338507, + "c2": 32.0482969828873, + "c3": 24.29455500425724, + "c4": -49.779761892850516, + "c5": 7.9458842067791196, + "c6": 42.12832022664836, + "c7": -11.659474581245846 }, - "vertexSeeds": { - "c1": 2.7469726534460404, - "c2": 2.81279682337814, - "c3": 2.8219560859721335, - "c4": 2.743354288369075, - "c5": 2.9270099771576232, - "c6": 2.8468722898620538, - "c7": 2.8644278602090822 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153952, + "c3": 3.536754507628291, + "c4": 2.829403606102631, + "c5": 2.1220527045769813, + "c6": 1.414701803051321, + "c7": 0.7073509015256605 }, "rgb": [77, 76, 132] }, @@ -317040,23 +317040,23 @@ "year": 1791, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -24.967956443416355, - "c2": 3.8475177743992397, - "c3": -25.14542531199474, - "c4": 24.502163566580148, - "c5": -18.89667013967126, - "c6": -21.2642945923187, - "c7": -18.75944456037341 + "points": { + "c1": -19.34256844344474, + "c2": -15.051929222031717, + "c3": -19.83722899224102, + "c4": -23.926417102271635, + "c5": 17.605936408150054, + "c6": -22.931950150374508, + "c7": -4.757389127157495 }, - "vertexSeeds": { - "c1": 4.859363372607759, - "c2": 4.2484283945246455, - "c3": 4.148802528924067, - "c4": 4.769822606525639, - "c5": 4.322995485938097, - "c6": 4.508947715216968, - "c7": 4.806303682171836 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.0735090152565885, + "c3": 5.894590846047156, + "c4": 4.715672676837729, + "c5": 3.5367545076282965, + "c6": 2.3578363384188643, + "c7": 1.1789181692094322 }, "rgb": [238, 201, 159] }, @@ -317067,23 +317067,23 @@ "year": 1792, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -44.70451821447923, - "c2": 12.77698244258491, - "c3": -9.722152662185955, - "c4": -11.974107400748473, - "c5": 17.420365547737823, - "c6": -37.79956961687668, - "c7": 5.1997241349174175 + "points": { + "c1": -22.98928937598484, + "c2": -25.528878869046753, + "c3": -30.751736677874202, + "c4": 45.13245753526051, + "c5": -24.786731159468456, + "c6": 46.213760075442146, + "c7": 16.270227257070317 }, - "vertexSeeds": { - "c1": 8.190259797690565, - "c2": 7.106325830256741, - "c3": 7.3618728274189325, - "c4": 7.285246712556232, - "c5": 7.428809935250568, - "c6": 8.283721480347985, - "c7": 8.2394788278817 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214977, + "c3": 9.893666204345816, + "c4": 7.9149329634766525, + "c5": 5.936199722607489, + "c6": 3.9574664817383263, + "c7": 1.9787332408691631 }, "rgb": [58, 15, 49] }, @@ -317094,23 +317094,23 @@ "year": 1792, "resistanceReported": false, "duration": 44323200, - "curveSeeds": { - "c1": 42.810636224536694, - "c2": -46.17695107227094, - "c3": 35.616210919824326, - "c4": 57.45317932863156, - "c5": -27.214146415959718, - "c6": -16.867239523002503, - "c7": 16.162718227673963 + "points": { + "c1": -49.346755815279906, + "c2": -44.07674975630238, + "c3": -45.339350018507275, + "c4": -37.292198774503916, + "c5": 37.013498561987674, + "c6": -33.085782178062374, + "c7": -59.04121203169396 }, - "vertexSeeds": { - "c1": 5.233128160596853, - "c2": 5.339395228342396, - "c3": 5.3805530072837415, - "c4": 5.402262522812531, - "c5": 5.361054947396495, - "c6": 5.235228064892293, - "c7": 5.504000850350073 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664348, + "c3": 6.703652334720306, + "c4": 5.362921867776239, + "c5": 4.022191400832174, + "c6": 2.681460933888109, + "c7": 1.3407304669440656 }, "rgb": [222, 0, 59] }, @@ -317121,23 +317121,23 @@ "year": 1791, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -9.858509324904396, - "c2": -20.547535784861367, - "c3": -32.33735223337338, - "c4": -28.794092328094465, - "c5": 27.26098479420873, - "c6": 9.805910409497223, - "c7": -32.356387035089256 + "points": { + "c1": 4.699346946876609, + "c2": -0.3889268254208247, + "c3": 27.361083624794986, + "c4": 15.48254277310987, + "c5": -23.652278210223177, + "c6": 14.715033250974592, + "c7": -5.035139233911504 }, - "vertexSeeds": { - "c1": 1.734245339421299, - "c2": 1.551747079778547, - "c3": 1.4804147888869148, - "c4": 1.5469709866017685, - "c5": 1.4610083990278402, - "c6": 1.383851021695439, - "c7": 1.762363093470165 + "offsets": { + "c1": 3.0097087378640777, + "c2": 2.5797503467406377, + "c3": 2.149791955617198, + "c4": 1.7198335644937597, + "c5": 1.2898751733703198, + "c6": 0.8599167822468798, + "c7": 0.4299583911234399 }, "rgb": [86, 146, 138] }, @@ -317148,23 +317148,23 @@ "year": 1791, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -26.06228565908029, - "c2": -14.152319165362083, - "c3": 17.290328981064363, - "c4": -11.970849611486226, - "c5": 22.838410783511726, - "c6": 9.975517491019154, - "c7": -35.536364737215905 + "points": { + "c1": -5.328079345872595, + "c2": -34.7728705117997, + "c3": -12.016007553148413, + "c4": -20.45882873454916, + "c5": 38.327601028179984, + "c6": -9.321347629926542, + "c7": 4.088853306699555 }, - "vertexSeeds": { - "c1": 8.711319102665017, - "c2": 9.33630451491544, - "c3": 9.164312510746182, - "c4": 9.37313989963425, - "c5": 9.301155037366746, - "c6": 8.95766440796967, - "c7": 8.708137691735395 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507638, + "c3": 11.211280628756354, + "c4": 8.969024503005093, + "c5": 6.726768377253808, + "c6": 4.484512251502546, + "c7": 2.242256125751284 }, "rgb": [238, 201, 159] }, @@ -317175,23 +317175,23 @@ "year": 1791, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 8.122731022370978, - "c2": -11.692125489753838, - "c3": -12.0563748492111, - "c4": -15.712342143958526, - "c5": -4.060691942887274, - "c6": 8.862794977854492, - "c7": 4.58567364942283 + "points": { + "c1": -19.729848216807145, + "c2": 26.39914497404982, + "c3": -28.912555437132767, + "c4": 6.935791691223507, + "c5": 29.67124690605953, + "c6": 29.181158272132016, + "c7": 31.880345224485303 }, - "vertexSeeds": { - "c1": 4.152924368805654, - "c2": 4.081922494307031, - "c3": 4.112206095522433, - "c4": 4.073801578927927, - "c5": 3.824431505676995, - "c6": 3.9711151120414376, - "c7": 4.033757437130937 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291265, + "c3": 5.339805825242718, + "c4": 4.271844660194176, + "c5": 3.2038834951456296, + "c6": 2.135922330097088, + "c7": 1.0679611650485417 }, "rgb": [86, 146, 138] }, @@ -317202,23 +317202,23 @@ "year": 1791, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 2.698661826920187, - "c2": -26.74778113117238, - "c3": 7.6263023170677116, - "c4": 10.56953619424425, - "c5": 16.966368134307352, - "c6": 15.561430133752388, - "c7": -26.054116825510896 + "points": { + "c1": 19.540046567489533, + "c2": 25.61469105369647, + "c3": -16.299732455522488, + "c4": 7.575375904775491, + "c5": 13.944870584827768, + "c6": -16.474405960412618, + "c7": -2.133358053266541 }, - "vertexSeeds": { - "c1": 1.039578056242037, - "c2": 1.0513266642920147, - "c3": 1.0262680369315915, - "c4": 0.9958300377615974, - "c5": 1.056281248224241, - "c6": 0.9914363305453564, - "c7": 1.0326688744372592 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.553398058252428, + "c3": 1.2944983818770246, + "c4": 1.0355987055016176, + "c5": 0.776699029126214, + "c6": 0.5177993527508105, + "c7": 0.2588996763754036 }, "rgb": [58, 15, 49] }, @@ -317229,23 +317229,23 @@ "year": 1791, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": 12.050662868788585, - "c2": -0.24991849114356057, - "c3": 3.426146629476449, - "c4": -5.37416851883099, - "c5": 9.822304585624089, - "c6": -13.62572884227264, - "c7": 17.53294048668253 + "points": { + "c1": 18.97214634125518, + "c2": 8.388092199132675, + "c3": -10.915138302697569, + "c4": 11.24399344787535, + "c5": -3.389319977894349, + "c6": 0.09249823111374056, + "c7": 20.415819393398916 }, - "vertexSeeds": { - "c1": 1.4624201172932463, - "c2": 1.4685694874025161, - "c3": 1.4688106324064574, - "c4": 1.3818664433305403, - "c5": 1.385889997155897, - "c6": 1.348015529735187, - "c7": 1.4076365729960265 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.16366158113731, + "c3": 1.8030513176144225, + "c4": 1.4424410540915387, + "c5": 1.081830790568655, + "c6": 0.7212205270457713, + "c7": 0.3606102635228837 }, "rgb": [86, 146, 138] }, @@ -317256,23 +317256,23 @@ "year": 1791, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 25.854678285389156, - "c2": 28.069621952784807, - "c3": 0.3719460706957065, - "c4": -4.982777821478159, - "c5": 8.53325436050384, - "c6": 9.236900117677884, - "c7": -10.93688931104149 + "points": { + "c1": 25.131726539364564, + "c2": -6.064022931855451, + "c3": 32.30429142184457, + "c4": -36.18723489320405, + "c5": 0.5490567234333739, + "c6": 29.654542328966258, + "c7": -2.1357455853699108 }, - "vertexSeeds": { - "c1": 3.7476009802001657, - "c2": 3.6418350841400127, - "c3": 3.7243780353915583, - "c4": 3.792429459788065, - "c5": 3.743329325862952, - "c6": 3.808170555015169, - "c7": 3.761104148627856 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.4646324549237235, + "c3": 4.55386037910309, + "c4": 3.6430883032824752, + "c5": 2.7323162274618618, + "c6": 1.8215441516412276, + "c7": 0.9107720758206138 }, "rgb": [86, 146, 138] }, @@ -317283,23 +317283,23 @@ "year": 1791, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -20.159963993422345, - "c2": -11.12829913826393, - "c3": -18.06770474554552, - "c4": 3.921898431830833, - "c5": -14.7017063512373, - "c6": 14.709005314466957, - "c7": -8.260316880519344 + "points": { + "c1": -4.083722142493709, + "c2": -0.3515127348185878, + "c3": -7.3577930739733155, + "c4": 9.66911991876512, + "c5": 16.35956643545947, + "c6": -21.091701400572223, + "c7": 1.803212113365717 }, - "vertexSeeds": { - "c1": 1.0987024936499294, - "c2": 1.1029078573398121, - "c3": 1.102448755041575, - "c4": 1.1022975132200246, - "c5": 1.1218366066934373, - "c6": 1.1178939188686978, - "c7": 1.0946297623573944 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.636615811373094, + "c3": 1.3638465094775793, + "c4": 1.091077207582058, + "c5": 0.8183079056865435, + "c6": 0.545538603791029, + "c7": 0.2727693018955145 }, "rgb": [58, 15, 49] }, @@ -317310,23 +317310,23 @@ "year": 1791, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 24.620961391520822, - "c2": -10.915349182436334, - "c3": 9.093234698178335, - "c4": -9.41421512089094, - "c5": -16.91841030354133, - "c6": -2.5032735783712, - "c7": 23.276798630897403 + "points": { + "c1": -1.994334545555759, + "c2": -11.58104729712651, + "c3": 17.04884271069028, + "c4": 4.49198895048599, + "c5": 21.88834646743669, + "c6": 3.6477752244766677, + "c7": 12.434754138473103 }, - "vertexSeeds": { - "c1": 2.4764677540242777, - "c2": 2.503536678504791, - "c3": 2.544788429463236, - "c4": 2.567872124100095, - "c5": 2.560752362567881, - "c6": 2.4698245224148305, - "c7": 2.5952813985103034 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.7447988904299603, + "c3": 3.1206657420249697, + "c4": 2.496532593619963, + "c5": 1.8723994452149724, + "c6": 1.2482662968099816, + "c7": 0.6241331484049908 }, "rgb": [86, 146, 138] }, @@ -317337,23 +317337,23 @@ "year": 1791, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 17.601029371135592, - "c2": 21.934103015752616, - "c3": 17.113266065292276, - "c4": 5.9631245443071315, - "c5": 14.427284062973985, - "c6": -20.096235546606458, - "c7": 12.203812324204964 + "points": { + "c1": -24.954185598917253, + "c2": 16.909487887270718, + "c3": 22.868914221459075, + "c4": 1.5386494301280926, + "c5": 17.40305041686864, + "c6": -9.997059992120885, + "c7": 9.155937284003866 }, - "vertexSeeds": { - "c1": 2.4324047703858374, - "c2": 2.658448401279569, - "c3": 2.4846435996037575, - "c4": 2.6821413844841926, - "c5": 2.7318848355294927, - "c6": 2.7110033785653473, - "c7": 2.5933051852602795 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.0499306518723985, + "c3": 3.3749422098936646, + "c4": 2.69995376791493, + "c5": 2.024965325936203, + "c6": 1.3499768839574686, + "c7": 0.6749884419787343 }, "rgb": [58, 15, 49] }, @@ -317364,23 +317364,23 @@ "year": 1792, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -13.290185869507255, - "c2": 4.5577823357432194, - "c3": -8.576425383379181, - "c4": 1.19564191969544, - "c5": 23.01451032228516, - "c6": -29.041124731065185, - "c7": 6.062623977529796 + "points": { + "c1": 4.989663734815046, + "c2": -9.537425949428311, + "c3": -10.366374279747596, + "c4": 38.425940607031634, + "c5": 33.21582943389144, + "c6": -43.221426181104974, + "c7": 20.22300382607189 }, - "vertexSeeds": { - "c1": 10.050976271978946, - "c2": 8.67601171676668, - "c3": 9.615679469239371, - "c4": 10.14540649312141, - "c5": 8.093836303282371, - "c6": 9.481363377551865, - "c7": 8.525605728444797 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122046, + "c3": 12.71382339343504, + "c4": 10.171058714748035, + "c5": 7.628294036061023, + "c6": 5.085529357374018, + "c7": 2.542764678687013 }, "rgb": [58, 15, 49] }, @@ -317391,23 +317391,23 @@ "year": 1792, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -17.743868129903287, - "c2": 8.014478584415073, - "c3": 13.848939204524001, - "c4": 24.36628867651857, - "c5": 12.824460598176806, - "c6": -23.758612792579587, - "c7": 19.939977599660807 + "points": { + "c1": -0.8852859285095747, + "c2": 13.84885116532196, + "c3": 10.990119390245802, + "c4": -17.19386430155932, + "c5": -0.5954000268385329, + "c6": 43.501982056298, + "c7": -36.01655953663412 }, - "vertexSeeds": { - "c1": 6.946646047226951, - "c2": 6.168899442849527, - "c3": 6.184385453030881, - "c4": 6.226580759686965, - "c5": 6.30855487936811, - "c6": 6.139213117085586, - "c7": 6.2267081208586665 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479888, + "c3": 8.32177531206657, + "c4": 6.657420249653254, + "c5": 4.993065187239937, + "c6": 3.3287101248266198, + "c7": 1.6643550624133168 }, "rgb": [58, 15, 49] }, @@ -317418,23 +317418,23 @@ "year": 1792, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": 45.61894142254579, - "c2": 42.13897364297483, - "c3": -40.99219205564998, - "c4": 39.66990945066486, - "c5": 19.89243699503706, - "c6": 30.273831849410143, - "c7": -33.389502162542996 + "points": { + "c1": 12.566193801657732, + "c2": -40.35158280538927, + "c3": 34.33692409399919, + "c4": -46.863636217657955, + "c5": 9.23416853334745, + "c6": -0.6167321486914474, + "c7": -33.66891061056192 }, - "vertexSeeds": { - "c1": 4.349711351641518, - "c2": 4.323991202934591, - "c3": 4.3468514624801555, - "c4": 4.202738485532825, - "c5": 4.268121853616457, - "c6": 4.065035426401819, - "c7": 4.017133467114827 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090154, + "c3": 5.22422561257513, + "c4": 4.1793804900601055, + "c5": 3.134535367545082, + "c6": 2.0896902450300483, + "c7": 1.0448451225150241 }, "rgb": [238, 201, 159] }, @@ -317445,23 +317445,23 @@ "year": 1792, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 4.021526879312717, - "c2": -16.415526306787847, - "c3": 20.011912405388593, - "c4": -12.663521557133237, - "c5": -4.175182876551645, - "c6": -12.19157565942061, - "c7": 18.168158331940504 + "points": { + "c1": 39.26863989944602, + "c2": -1.7645131308093696, + "c3": 18.336024224608735, + "c4": 13.81878018628155, + "c5": 31.809743222618685, + "c6": 21.883518043169268, + "c7": -34.692299352650096 }, - "vertexSeeds": { - "c1": 4.328119194594122, - "c2": 4.519722100566381, - "c3": 4.296952700536605, - "c4": 4.3862621906077, - "c5": 4.533313983404183, - "c6": 4.298836271593552, - "c7": 4.422290969274837 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452149, + "c3": 5.4322699953767914, + "c4": 4.3458159963014324, + "c5": 3.2593619972260743, + "c6": 2.1729079981507162, + "c7": 1.0864539990753581 }, "rgb": [238, 201, 159] }, @@ -317472,23 +317472,23 @@ "year": 1791, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 11.975055417976026, - "c2": 12.569187441384155, - "c3": -23.63619261711964, - "c4": -14.950309275311948, - "c5": 18.782552462655435, - "c6": 29.155381601062647, - "c7": 28.8761598959747 + "points": { + "c1": -14.594093843756628, + "c2": -23.209905782570214, + "c3": 18.695354526002184, + "c4": 23.823397233033518, + "c5": -2.142484828625747, + "c6": 16.29284658021527, + "c7": -20.587727643923664 }, - "vertexSeeds": { - "c1": 8.42840410396714, - "c2": 7.515689120063801, - "c3": 6.576022425564557, - "c4": 8.183901991094654, - "c5": 6.70444121510791, - "c6": 7.759467471455964, - "c7": 7.799121746770225 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.288488210818306, + "c3": 10.240406842348586, + "c4": 8.192325473878876, + "c5": 6.144244105409157, + "c6": 4.096162736939438, + "c7": 2.048081368469719 }, "rgb": [222, 0, 59] }, @@ -317499,23 +317499,23 @@ "year": 1791, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 25.24160043177241, - "c2": -27.74342222997595, - "c3": -28.614748386741525, - "c4": -33.55883226714873, - "c5": -15.412099252844623, - "c6": -33.73211336952808, - "c7": 30.33519105133307 + "points": { + "c1": -16.29525530176312, + "c2": -31.702976822910465, + "c3": -10.14774747455937, + "c4": -18.197732456283838, + "c5": 8.750797028662753, + "c6": -16.19698263845243, + "c7": -16.981493731010836 }, - "vertexSeeds": { - "c1": 8.124298727094928, - "c2": 7.662769891715802, - "c3": 7.629591763378495, - "c4": 7.790578739425863, - "c5": 7.862777524394994, - "c6": 7.4376409001287085, - "c7": 7.478285639908633 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.67822468793342, + "c3": 9.731853906611198, + "c4": 7.785483125288953, + "c5": 5.83911234396671, + "c6": 3.892741562644487, + "c7": 1.9463707813222435 }, "rgb": [58, 15, 49] }, @@ -317526,23 +317526,23 @@ "year": 1792, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 12.562474249166534, - "c2": -26.293402621828502, - "c3": 35.30465752627986, - "c4": 12.240223493600347, - "c5": -5.704960984948833, - "c6": 33.384416986653186, - "c7": 11.248341678231888 + "points": { + "c1": 34.975569950973345, + "c2": -15.689941079734204, + "c3": 4.936373921076864, + "c4": 11.395294517530054, + "c5": 14.568130749969399, + "c6": -38.35359581370077, + "c7": -19.11596802018735 }, - "vertexSeeds": { - "c1": 2.15499201874418, - "c2": 2.159734571823616, - "c3": 2.035331938222417, - "c4": 2.1480861151746984, - "c5": 2.284565773938197, - "c6": 2.340597238588599, - "c7": 2.4272767851412747 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081824, + "c3": 2.935737401756819, + "c4": 2.348589921405455, + "c5": 1.7614424410540912, + "c6": 1.1742949607027275, + "c7": 0.5871474803513638 }, "rgb": [86, 146, 138] }, @@ -317553,23 +317553,23 @@ "year": 1791, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -2.205251559050943, - "c2": -20.902801541117537, - "c3": 18.692579043472968, - "c4": 21.218258509521185, - "c5": -11.567969913416539, - "c6": 20.740045541812144, - "c7": -19.975143072531665 + "points": { + "c1": 25.894086829829625, + "c2": -24.430739202700696, + "c3": 1.4561851020868666, + "c4": 21.672820351548424, + "c5": -24.748906445620197, + "c6": 23.247213025900393, + "c7": 12.906340810455447 }, - "vertexSeeds": { - "c1": 3.2088605578919585, - "c2": 3.2888367552934037, - "c3": 3.244874677335984, - "c4": 3.2509673459094817, - "c5": 3.280698093010728, - "c6": 3.2538169151295007, - "c7": 3.2449139738848958 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877939, + "c3": 3.9528432732316365, + "c4": 3.162274618585303, + "c5": 2.3717059639389695, + "c6": 1.5811373092926673, + "c7": 0.7905686546463336 }, "rgb": [86, 146, 138] }, @@ -317580,23 +317580,23 @@ "year": 1791, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 23.39797268701914, - "c2": 1.3954190760788805, - "c3": 13.25917315028056, - "c4": 3.4461782153574916, - "c5": -32.00240991306397, - "c6": 27.28964238046536, - "c7": 3.768984734031811 + "points": { + "c1": 17.680405269774155, + "c2": -19.498680333443872, + "c3": -31.907199446234387, + "c4": -14.222478406136815, + "c5": -12.08135374251978, + "c6": 25.12564228478773, + "c7": -14.912656075717482 }, - "vertexSeeds": { - "c1": 5.970333919821911, - "c2": 6.0463916379316975, - "c3": 6.210311163568634, - "c4": 6.219020444886498, - "c5": 6.188660118884187, - "c6": 5.904733563028826, - "c7": 6.066517968319338 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991687, + "c3": 7.466481738326395, + "c4": 5.973185390661125, + "c5": 4.479889042995833, + "c6": 2.9865926953305624, + "c7": 1.4932963476652923 }, "rgb": [222, 0, 59] }, @@ -317607,23 +317607,23 @@ "year": 1792, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -14.737646045829734, - "c2": 39.38469664869079, - "c3": -15.256727659808575, - "c4": 39.15224001067651, - "c5": -26.516172678605134, - "c6": -37.32927943443233, - "c7": -20.028491170789017 + "points": { + "c1": 35.35226341999552, + "c2": -10.580603309672796, + "c3": 10.098993066786434, + "c4": -17.082257510521785, + "c5": 28.995869497643454, + "c6": -26.937508538131226, + "c7": -5.085400661894603 }, - "vertexSeeds": { - "c1": 4.797228840961258, - "c2": 4.9902181035258195, - "c3": 5.0895685857921835, - "c4": 4.843106599702799, - "c5": 4.677335375409978, - "c6": 5.0183013515736254, - "c7": 4.679007976134991 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618579, + "c3": 6.10263522884883, + "c4": 4.882108183079059, + "c5": 3.6615811373092897, + "c6": 2.4410540915395296, + "c7": 1.2205270457697701 }, "rgb": [222, 0, 59] }, @@ -317634,23 +317634,23 @@ "year": 1791, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -28.10460760406621, - "c2": 17.093887454471165, - "c3": -24.127064992554477, - "c4": -1.740264435135181, - "c5": -8.120674445159324, - "c6": 31.018081007891602, - "c7": -17.462208870723963 + "points": { + "c1": 3.031074208217838, + "c2": 27.968863989135777, + "c3": -31.21448600334999, + "c4": -34.72553101932963, + "c5": -8.61692251007048, + "c6": -1.4267733401918363, + "c7": -20.081664629695673 }, - "vertexSeeds": { - "c1": 7.498732713777406, - "c2": 7.436151795720897, - "c3": 7.099487589279117, - "c4": 7.5574506503034735, - "c5": 7.554444616481306, - "c6": 6.9972597138566925, - "c7": 7.051852242268573 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686545, + "c3": 9.015256588072122, + "c4": 7.212205270457697, + "c5": 5.409153952843273, + "c6": 3.6061026352288486, + "c7": 1.8030513176144243 }, "rgb": [58, 15, 49] }, @@ -317661,23 +317661,23 @@ "year": 1791, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 2.7872152935021965, - "c2": -2.4892158526758728, - "c3": 10.814808006815795, - "c4": 3.849534086539844, - "c5": -12.76499896922922, - "c6": 9.071372944700745, - "c7": 0.5006605449172454 + "points": { + "c1": -8.551095455724939, + "c2": -6.3121890948718615, + "c3": 3.883910120517786, + "c4": 6.377114809734838, + "c5": 17.154667069976824, + "c6": -12.719543442154547, + "c7": -11.279880306987362 }, - "vertexSeeds": { - "c1": 4.410814502813023, - "c2": 4.547524686574896, - "c3": 4.60352692996015, - "c4": 4.553573800339616, - "c5": 4.61264654945113, - "c6": 4.5209879898481455, - "c7": 4.6133561471903315 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613035, + "c3": 5.52473416551086, + "c4": 4.419787332408702, + "c5": 3.3148404993065257, + "c6": 2.209893666204351, + "c7": 1.1049468331021755 }, "rgb": [77, 76, 132] }, @@ -317688,23 +317688,23 @@ "year": 1792, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 24.825826941194478, - "c2": -11.017775139470722, - "c3": -1.2172488658964227, - "c4": -5.4167455438258045, - "c5": 23.506903644570855, - "c6": 33.68599983792656, - "c7": 27.355163975054268 + "points": { + "c1": -30.400356629393738, + "c2": -23.119855869842354, + "c3": 14.38252571200313, + "c4": -22.558749817857873, + "c5": -40.90252484656266, + "c6": -3.687454067685252, + "c7": -38.582425149698985 }, - "vertexSeeds": { - "c1": 2.692067371332835, - "c2": 2.6074714046670815, - "c3": 2.6302220331547908, - "c4": 2.8481997118917306, - "c5": 2.6667972990915714, - "c6": 2.5500561555629364, - "c7": 2.833095092690724 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288508, + "c3": 3.0050855293573715, + "c4": 2.4040684234858984, + "c5": 1.8030513176144254, + "c6": 1.2020342117429523, + "c7": 0.601017105871473 }, "rgb": [222, 0, 59] }, @@ -317715,23 +317715,23 @@ "year": 1792, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 21.461781259129936, - "c2": -2.2879551946504364, - "c3": -20.978608026842853, - "c4": -30.81557356963011, - "c5": -5.050863139126349, - "c6": 22.40243030076983, - "c7": -11.807304988615357 + "points": { + "c1": -10.87636912003737, + "c2": 15.637656227295778, + "c3": -39.57690177104054, + "c4": -25.75271178159481, + "c5": -11.289882040652643, + "c6": -22.17946543751938, + "c7": 1.3265764886230258 }, - "vertexSeeds": { - "c1": 5.742235680627887, - "c2": 5.8100041769413835, - "c3": 5.741611593920943, - "c4": 5.6634727746758315, - "c5": 5.715934226065164, - "c6": 5.813015892056408, - "c7": 5.669019808950894 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.37725381414701, + "c3": 6.9810448451225025, + "c4": 5.5848358760980386, + "c5": 4.1886269070735285, + "c6": 2.7924179380490193, + "c7": 1.3962089690245096 }, "rgb": [86, 146, 138] }, @@ -317742,23 +317742,23 @@ "year": 1792, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 15.717477057424311, - "c2": 35.96233189415046, - "c3": 32.92997115545942, - "c4": 40.75764834410442, - "c5": -24.504452275362013, - "c6": 26.313849082624778, - "c7": 29.17589162473022 + "points": { + "c1": -18.630454246571773, + "c2": -21.931211046423194, + "c3": -4.863016029676132, + "c4": 18.673146071544842, + "c5": 24.87821887573947, + "c6": -17.186718467262057, + "c7": -30.642594472946755 }, - "vertexSeeds": { - "c1": 6.379722317230846, - "c2": 6.408695170208744, - "c3": 6.370897198937612, - "c4": 6.382710828644926, - "c5": 6.377656258528197, - "c6": 6.411688880741494, - "c7": 6.354254507542426 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313396, + "c3": 7.651410078594632, + "c4": 6.121128062875665, + "c5": 4.590846047156698, + "c6": 3.060564031437731, + "c7": 1.530282015718967 }, "rgb": [77, 76, 132] }, @@ -317769,23 +317769,23 @@ "year": 1791, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -28.747807342405217, - "c2": -22.88006324236247, - "c3": 1.5785945304755558, - "c4": 21.047002106471055, - "c5": -27.08512752696067, - "c6": -7.657636364375222, - "c7": 21.97991519725133 + "points": { + "c1": 23.133079601035973, + "c2": 29.9603613392552, + "c3": -24.75686197354343, + "c4": -14.451861056365878, + "c5": -14.50633695242852, + "c6": -24.442014718906425, + "c7": -10.470567462565654 }, - "vertexSeeds": { - "c1": 6.823568724780762, - "c2": 5.949392397933905, - "c3": 5.624792754730348, - "c4": 5.8725829156524485, - "c5": 6.14962299344627, - "c6": 5.645937228271949, - "c7": 5.707542748522384 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.15256588072122, + "c3": 8.460471567267687, + "c4": 6.768377253814148, + "c5": 5.07628294036061, + "c6": 3.3841886269070787, + "c7": 1.6920943134535393 }, "rgb": [58, 15, 49] }, @@ -317796,23 +317796,23 @@ "year": 1791, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 5.398796638680338, - "c2": 10.98132830398471, - "c3": 14.341391051737126, - "c4": 12.022133354375036, - "c5": 21.497663739428432, - "c6": -21.052734690874658, - "c7": -21.40783843335228 + "points": { + "c1": 18.981749986169177, + "c2": 26.00361328695262, + "c3": 23.595843889550167, + "c4": -25.90726779444556, + "c5": -6.9470857296892135, + "c6": -28.847999337019317, + "c7": -19.536550373525795 }, - "vertexSeeds": { - "c1": 5.024456791368436, - "c2": 4.925062046410201, - "c3": 4.796251465955321, - "c4": 4.923625245341277, - "c5": 4.745633409357466, - "c6": 4.965051301150582, - "c7": 4.775754306454028 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.2399445214979155, + "c3": 6.033287101248272, + "c4": 4.8266296809986144, + "c5": 3.6199722607489577, + "c6": 2.413314840499301, + "c7": 1.2066574202496567 }, "rgb": [58, 15, 49] }, @@ -317823,23 +317823,23 @@ "year": 1792, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -14.445711375291701, - "c2": 5.444141147056378, - "c3": 33.10036848064118, - "c4": -33.648332599909146, - "c5": 13.56047526504166, - "c6": 23.029626281174288, - "c7": -29.58534029278817 + "points": { + "c1": 27.132603768179763, + "c2": -11.58117781309284, + "c3": 34.62992246803185, + "c4": 7.165733458145105, + "c5": -5.198974929998194, + "c6": 20.328404902864982, + "c7": 1.5996315111670611 }, - "vertexSeeds": { - "c1": 4.3011116166808145, - "c2": 3.991580451730223, - "c3": 4.46875458123163, - "c4": 4.10171592452209, - "c5": 3.9901784264655697, - "c6": 4.243691030522914, - "c7": 4.581485878616929 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572813, + "c3": 5.501618122977348, + "c4": 4.401294498381875, + "c5": 3.30097087378641, + "c6": 2.2006472491909377, + "c7": 1.1003236245954722 }, "rgb": [238, 201, 159] }, @@ -317850,23 +317850,23 @@ "year": 1791, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -26.701441413122964, - "c2": 21.77244313647237, - "c3": -26.738614363443656, - "c4": -20.460052779857836, - "c5": 2.6373730938485096, - "c6": 13.505766271975837, - "c7": 17.643775674233062 + "points": { + "c1": 15.93298370424705, + "c2": 11.102745676783186, + "c3": -26.112120814680367, + "c4": -21.846422413849837, + "c5": 18.898413204090936, + "c6": -5.2213001939588, + "c7": 5.394409920588615 }, - "vertexSeeds": { - "c1": 4.865040106178556, - "c2": 5.278153381497321, - "c3": 4.873152096021376, - "c4": 4.8696894236569745, - "c5": 4.872091162224042, - "c6": 4.871121263002032, - "c7": 5.06188860052348 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -317877,23 +317877,23 @@ "year": 1791, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -4.707975022783003, - "c2": -16.634672155141658, - "c3": -10.5662621785863, - "c4": -16.00461227565711, - "c5": -2.4043068329574844, - "c6": -15.862042251690312, - "c7": -33.228498955782655 + "points": { + "c1": -14.399704065409413, + "c2": -27.812570676746255, + "c3": 15.372842305144978, + "c4": -28.151433774536997, + "c5": -32.97760027858068, + "c6": -14.895322806931489, + "c7": 34.53300876800438 }, - "vertexSeeds": { - "c1": 6.977235569352842, - "c2": 7.147652497260619, - "c3": 6.968763086560508, - "c4": 7.184287386218448, - "c5": 7.001644580250343, - "c6": 7.044476500626, - "c7": 7.048090938960623 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922352, + "c3": 8.576051779935266, + "c4": 6.860841423948235, + "c5": 5.14563106796115, + "c6": 3.4304207119741177, + "c7": 1.7152103559870326 }, "rgb": [222, 0, 59] }, @@ -317904,23 +317904,23 @@ "year": 1791, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -25.53213054130807, - "c2": 9.761018397938923, - "c3": 16.964952535122467, - "c4": 5.895135752001469, - "c5": 23.62908271165696, - "c6": 5.451855114622024, - "c7": 12.90541894719281 + "points": { + "c1": -10.97446273418658, + "c2": 18.78772925327259, + "c3": -5.440837940657243, + "c4": -23.312659549574505, + "c5": 12.26858421265413, + "c6": 22.296269907121168, + "c7": 30.899339960407982 }, - "vertexSeeds": { - "c1": 5.646536276272379, - "c2": 5.874540434723635, - "c3": 5.505742399290834, - "c4": 5.840595218213091, - "c5": 5.857310784321143, - "c6": 5.673621592703527, - "c7": 5.7264445389286305 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227462, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.4054553860379102 }, "rgb": [77, 76, 132] }, @@ -317931,23 +317931,23 @@ "year": 1792, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 31.06686061844131, - "c2": -15.075672415788027, - "c3": 28.68459693938793, - "c4": -0.23808473564855603, - "c5": -33.54919878084332, - "c6": -3.4923963033195875, - "c7": 27.303382283330762 + "points": { + "c1": -11.207339655787408, + "c2": -18.072188590696964, + "c3": 13.171437868333797, + "c4": 19.499819311947597, + "c5": 24.438192118493575, + "c6": -11.55988778327476, + "c7": 40.373192161337116 }, - "vertexSeeds": { - "c1": 2.059585492227979, - "c2": 2.059585492227979, - "c3": 2.059585492227979, - "c4": 2.059585492227979, - "c5": 2.059585492227979, - "c6": 2.059585492227979, - "c7": 2.059585492227979 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -317958,23 +317958,23 @@ "year": 1791, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 24.61527381772207, - "c2": 13.215263189465503, - "c3": -8.067094554726399, - "c4": -8.431174211800418, - "c5": 14.588493262328605, - "c6": -14.628774668159329, - "c7": 22.19205597203392 + "points": { + "c1": -0.2568246087355348, + "c2": 3.0730810382932816, + "c3": 19.764483202511414, + "c4": -24.269313175381747, + "c5": -19.007969917427836, + "c6": 27.767729931147265, + "c7": -29.717894131274 }, - "vertexSeeds": { - "c1": 5.681081391662378, - "c2": 5.806617131887116, - "c3": 6.002779880263242, - "c4": 5.828578090990438, - "c5": 5.7174979658814316, - "c6": 5.840172984233087, - "c7": 5.912378102055105 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911225, + "c3": 7.420249653259364, + "c4": 5.936199722607483, + "c5": 4.452149791955623, + "c6": 2.9680998613037417, + "c7": 1.4840499306518609 }, "rgb": [238, 201, 159] }, @@ -317985,23 +317985,23 @@ "year": 1792, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -1.7494140348765228, - "c2": 14.369011167289798, - "c3": -21.347785745885414, - "c4": -14.5933534179438, - "c5": 30.89784127922112, - "c6": -17.088346814224035, - "c7": 21.83534015969464 + "points": { + "c1": 5.047666705711748, + "c2": -35.67478235549106, + "c3": 5.38685969563727, + "c4": 8.656229834970546, + "c5": -3.1754035722757052, + "c6": -25.837356136336794, + "c7": 26.501141800429643 }, - "vertexSeeds": { - "c1": 4.244647975949339, - "c2": 4.166630092579233, - "c3": 3.9091709701328123, - "c4": 3.9632122364668114, - "c5": 4.130481074973097, - "c6": 3.9467261824888844, - "c7": 4.130502136546687 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244145, + "c6": 2.03421174294961, + "c7": 1.017105871474805 }, "rgb": [238, 201, 159] }, @@ -318012,23 +318012,23 @@ "year": 1792, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 25.357827119966814, - "c2": 23.07699582507739, - "c3": -25.601757145312497, - "c4": -20.68707330357965, - "c5": 39.17453729762133, - "c6": 36.60370699250504, - "c7": 32.71383814209453 + "points": { + "c1": 35.01355560844732, + "c2": 3.0309733643594754, + "c3": -35.19190851459644, + "c4": 23.257768118750207, + "c5": 7.130406389330666, + "c6": 17.25603725869813, + "c7": -1.4438959389491117 }, - "vertexSeeds": { - "c1": 7.044662659375235, - "c2": 6.866300323858275, - "c3": 6.905263037829253, - "c4": 7.009922791439924, - "c5": 7.3529657599600675, - "c6": 6.982330102326535, - "c7": 7.440490859025641 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [222, 0, 59] }, @@ -318039,23 +318039,23 @@ "year": 1791, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 24.30674474186851, - "c2": 22.617237746501633, - "c3": -15.298230753802002, - "c4": -26.32709598827878, - "c5": 12.03653054770987, - "c6": -15.798079536026636, - "c7": -25.450988384317863 + "points": { + "c1": 4.016803544325416, + "c2": -13.833658106341812, + "c3": 15.777206265398572, + "c4": 17.73174095154683, + "c5": 14.640539956848148, + "c6": 20.09710167151322, + "c7": 23.221785943053302 }, - "vertexSeeds": { - "c1": 2.8326834853100302, - "c2": 3.1262142227900025, - "c3": 3.4387945578120624, - "c4": 2.944863552861558, - "c5": 3.191524598437772, - "c6": 3.5473869687948785, - "c7": 2.8382167459709917 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.392048081368468, + "c4": 3.5136384650947776, + "c5": 2.6352288488210833, + "c6": 1.7568192325473888, + "c7": 0.8784096162736944 }, "rgb": [238, 201, 159] }, @@ -318066,23 +318066,23 @@ "year": 1792, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -21.489725570513254, - "c2": 33.0907510108865, - "c3": 1.3147008763463575, - "c4": 35.35597374000002, - "c5": 14.620088887334987, - "c6": 8.428358642991704, - "c7": -18.564195208129213 + "points": { + "c1": 19.88676426319349, + "c2": 0.6568607129858748, + "c3": -0.3079363825170418, + "c4": -16.98520412747772, + "c5": -15.887108909543702, + "c6": -4.766692604084106, + "c7": -1.5415201886709866 }, - "vertexSeeds": { - "c1": 7.961394669727016, - "c2": 8.11014885877554, - "c3": 7.908850279826181, - "c4": 8.074515974437817, - "c5": 8.343674634952805, - "c6": 8.041531507721098, - "c7": 7.900528780875321 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335654, + "c3": 9.963014331946358, + "c4": 7.970411465557092, + "c5": 5.977808599167827, + "c6": 3.9852057327785304, + "c7": 1.9926028663892652 }, "rgb": [58, 15, 49] }, @@ -318093,23 +318093,23 @@ "year": 1792, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -33.19452624589007, - "c2": -16.31342430617504, - "c3": -33.11681323857054, - "c4": 0.9058237840587751, - "c5": -5.683539852592141, - "c6": -10.759341484753204, - "c7": 12.582983521211588 + "points": { + "c1": -28.30389091231168, + "c2": -22.37223733695775, + "c3": 5.5465907956621265, + "c4": 30.605164518061493, + "c5": 22.58851977882791, + "c6": -7.989927972137188, + "c7": -7.525051737574849 }, - "vertexSeeds": { - "c1": 7.057742363148744, - "c2": 7.654944708065184, - "c3": 7.544398137216921, - "c4": 7.642535271636391, - "c5": 6.991816322405781, - "c6": 7.414257003618931, - "c7": 7.4381263628649945 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927868, + "c3": 9.153952843273235, + "c4": 7.323162274618579, + "c5": 5.4923717059639445, + "c6": 3.6615811373092897, + "c7": 1.830790568654655 }, "rgb": [222, 0, 59] }, @@ -318120,23 +318120,23 @@ "year": 1792, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -21.886341602319767, - "c2": 7.146353592593194, - "c3": 36.03146106654474, - "c4": 4.047746314752956, - "c5": -28.317606510456898, - "c6": 4.782703751963254, - "c7": 13.20584457958222 + "points": { + "c1": -10.879341283242248, + "c2": -29.20333819520068, + "c3": 9.669971198134746, + "c4": -34.42087649830691, + "c5": 40.44461180454562, + "c6": 31.27833323821047, + "c7": -4.5055017414789305 }, - "vertexSeeds": { - "c1": 6.728220231713278, - "c2": 7.335184545087348, - "c3": 6.778516504134391, - "c4": 7.0313315932085745, - "c5": 6.72423800284647, - "c6": 7.010899762638788, - "c7": 6.853404807405969 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244115, + "c3": 8.760980120203419, + "c4": 7.008784096162744, + "c5": 5.256588072122047, + "c6": 3.504392048081372, + "c7": 1.7521960240406962 }, "rgb": [86, 146, 138] }, @@ -318147,23 +318147,23 @@ "year": 1792, "resistanceReported": false, "duration": 39225600, - "curveSeeds": { - "c1": 34.04640565170673, - "c2": -1.2581093630436087, - "c3": -27.661898807175234, - "c4": -35.94836125877666, - "c5": -43.517962106132074, - "c6": -51.95576575002473, - "c7": 21.504567384311336 + "points": { + "c1": 25.220855617650493, + "c2": 45.90753309341927, + "c3": -54.10080304783165, + "c4": 1.3490018534934762, + "c5": 46.48419299752383, + "c6": -0.06768546161009681, + "c7": 33.817152498026324 }, - "vertexSeeds": { - "c1": 6.291030893551346, - "c2": 6.038416897705996, - "c3": 6.196400312861303, - "c4": 6.167333112091442, - "c5": 6.355424449502642, - "c6": 6.0668711646182185, - "c7": 6.093895245540188 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554788, + "c3": 7.790106333795659, + "c4": 6.232085067036532, + "c5": 4.674063800277404, + "c6": 3.1160425335182556, + "c7": 1.5580212667591278 }, "rgb": [222, 0, 59] }, @@ -318174,23 +318174,23 @@ "year": 1792, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -23.807076719693484, - "c2": -8.903658004525298, - "c3": -18.88628480654057, - "c4": 24.901466738736445, - "c5": -13.956384180374886, - "c6": 14.814855941102415, - "c7": -6.078853551993234 + "points": { + "c1": 10.296532819068368, + "c2": 34.764181598314394, + "c3": 25.31355158534089, + "c4": -7.6117285302898665, + "c5": 23.173544169828517, + "c6": -18.91696162443021, + "c7": 18.92437337583511 }, - "vertexSeeds": { - "c1": 5.165223966252663, - "c2": 5.241694376849156, - "c3": 5.065580757937902, - "c4": 4.943507939529582, - "c5": 4.945913042613002, - "c6": 5.175991999039794, - "c7": 5.133816104603832 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940357, + "c3": 6.287563569116959, + "c4": 5.030050855293563, + "c5": 3.772538141470192, + "c6": 2.5150254276467945, + "c7": 1.2575127138233972 }, "rgb": [222, 0, 59] }, @@ -318201,23 +318201,23 @@ "year": 1792, "resistanceReported": false, "duration": 42681600, - "curveSeeds": { - "c1": 48.477791117126415, - "c2": -50.23529941153343, - "c3": 18.3950516796819, - "c4": -34.02033735980344, - "c5": 54.31905496343147, - "c6": 56.67353130807817, - "c7": -54.27520457613244 + "points": { + "c1": -32.33527831046412, + "c2": -52.72895252252653, + "c3": 33.148969977220105, + "c4": 11.514402732525937, + "c5": 39.41797228410695, + "c6": -32.379781236925986, + "c7": 4.0724068160037135 }, - "vertexSeeds": { - "c1": 2.761829938644573, - "c2": 2.7841998942246096, - "c3": 2.7914375313251862, - "c4": 2.6858228881678263, - "c5": 2.454512731306312, - "c6": 2.8288152728159366, - "c7": 2.8410369241027515 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234396, + "c3": 3.5829865926953293, + "c4": 2.8663892741562673, + "c5": 2.1497919556172005, + "c6": 1.4331946370781337, + "c7": 0.7165973185390668 }, "rgb": [58, 15, 49] }, @@ -318228,23 +318228,23 @@ "year": 1792, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 26.765494816641066, - "c2": -15.480281545155425, - "c3": -12.707110683626922, - "c4": 32.717223144382054, - "c5": 26.87529505857656, - "c6": 20.224983123076825, - "c7": -11.29269055138841 + "points": { + "c1": -30.80889601025224, + "c2": -25.13228114886835, + "c3": -17.916268163291463, + "c4": -5.464468096319898, + "c5": -18.086987923717714, + "c6": 16.59806625520376, + "c7": 30.95037481096231 }, - "vertexSeeds": { - "c1": 7.262038481541626, - "c2": 7.00541127514797, - "c3": 7.084946629409514, - "c4": 7.275382287493967, - "c5": 7.795185870968378, - "c6": 6.815708918189988, - "c7": 7.192458796396948 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410545, + "c3": 9.431345353675455, + "c4": 7.545076282940367, + "c5": 5.658807212205279, + "c6": 3.772538141470177, + "c7": 1.8862690707351015 }, "rgb": [222, 0, 59] }, @@ -318255,23 +318255,23 @@ "year": 1792, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 1.414920524932974, - "c2": -16.925585452633666, - "c3": -30.804651612758, - "c4": 6.31518008481568, - "c5": 22.15714272612548, - "c6": -5.409629393070816, - "c7": -19.318208310596468 + "points": { + "c1": -25.7097495162342, + "c2": 4.611733304359433, + "c3": -40.0782788300815, + "c4": -36.36170775934389, + "c5": 19.016802994370906, + "c6": -18.151490822639914, + "c7": -23.721081393483573 }, - "vertexSeeds": { - "c1": 6.609222352343643, - "c2": 7.082788393067072, - "c3": 6.7031065407998565, - "c4": 6.762599804855593, - "c5": 6.830291713815693, - "c6": 7.053560134056701, - "c7": 6.6039901915999 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922327, + "c3": 8.576051779935268, + "c4": 6.860841423948211, + "c5": 5.145631067961174, + "c6": 3.430420711974116, + "c7": 1.715210355987058 }, "rgb": [222, 0, 59] }, @@ -318282,23 +318282,23 @@ "year": 1791, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -6.651581872880637, - "c2": -29.038217518330114, - "c3": -6.13288454023127, - "c4": -0.0033354060968520116, - "c5": 1.0085207963178604, - "c6": -28.437778023290935, - "c7": 25.912982475087983 + "points": { + "c1": 26.39265144431552, + "c2": -9.304734511395456, + "c3": -10.171142391000124, + "c4": 14.50303688652739, + "c5": -6.523188997980249, + "c6": 22.966350144533763, + "c7": -0.6680801505899225 }, - "vertexSeeds": { - "c1": 4.635945080337478, - "c2": 4.4094426135367595, - "c3": 4.791333981822677, - "c4": 4.6856968637052745, - "c5": 4.701231899795292, - "c6": 4.500188503815356, - "c7": 4.582758463773716 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015259, + "c3": 5.755894590846051, + "c4": 4.604715672676833, + "c5": 3.453536754507624, + "c6": 2.3023578363384165, + "c7": 1.1511789181692083 }, "rgb": [86, 146, 138] }, @@ -318309,23 +318309,23 @@ "year": 1791, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 26.063956901090194, - "c2": 4.491426726620418, - "c3": -19.352868127429083, - "c4": -11.271673377541742, - "c5": 9.724297346708198, - "c6": 3.711791186206554, - "c7": 11.90950506140289 + "points": { + "c1": -18.44503162209473, + "c2": -1.252180146068099, + "c3": 22.39794785305726, + "c4": 24.60602199916248, + "c5": 4.805794685244777, + "c6": 11.502941385270184, + "c7": -8.243028003925083 }, - "vertexSeeds": { - "c1": 5.788512817395697, - "c2": 5.8400279804998325, - "c3": 5.596864747897035, - "c4": 5.677749600563483, - "c5": 5.632429840511154, - "c6": 5.54104251647015, - "c7": 5.541076910808286 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267682, + "c3": 7.050392972723069, + "c4": 5.640314378178455, + "c5": 4.230235783633841, + "c6": 2.8201571890892274, + "c7": 1.4100785945446137 }, "rgb": [77, 76, 132] }, @@ -318336,23 +318336,23 @@ "year": 1791, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 19.5578588269952, - "c2": 11.267329317438048, - "c3": 18.792737000202457, - "c4": 20.650227783837366, - "c5": -24.603896671462884, - "c6": -20.825929440964906, - "c7": 13.505231386474286 + "points": { + "c1": 16.115284565329148, + "c2": 24.9203148504743, + "c3": 19.16142848356003, + "c4": -19.866161669253994, + "c5": 7.658963781067108, + "c6": 26.132664947395405, + "c7": -25.815343955085968 }, - "vertexSeeds": { - "c1": 8.500806239886876, - "c2": 8.756503915977747, - "c3": 8.734358090106637, - "c4": 8.859132985191422, - "c5": 9.05148259404671, - "c6": 8.802903043063516, - "c7": 8.850978899994773 + "offsets": { + "c1": 15.242718446601941, + "c2": 13.065187239944517, + "c3": 10.887656033287108, + "c4": 8.710124826629684, + "c5": 6.532593619972259, + "c6": 4.355062413314833, + "c7": 2.1775312066574246 }, "rgb": [58, 15, 49] }, @@ -318363,23 +318363,23 @@ "year": 1791, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -6.3836445167668465, - "c2": -8.714979185375956, - "c3": -8.250618114247931, - "c4": -3.684127364764727, - "c5": 14.101853207148832, - "c6": 3.9012110724387448, - "c7": 27.86691755771294 + "points": { + "c1": -9.90510919486384, + "c2": 1.0050436866022885, + "c3": -25.817997671072487, + "c4": -9.631189612132648, + "c5": 13.064730690595479, + "c6": 29.597764108633005, + "c7": 10.951649759145798 }, - "vertexSeeds": { - "c1": 8.315631235306912, - "c2": 7.548720077267445, - "c3": 7.502862707057721, - "c4": 6.772870611576686, - "c5": 7.14459879131835, - "c6": 6.93535554709671, - "c7": 7.221108378748134 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576976, + "c3": 10.101710587147478, + "c4": 8.081368469717981, + "c5": 6.061026352288484, + "c6": 4.040684234858986, + "c7": 2.0203421174294887 }, "rgb": [58, 15, 49] }, @@ -318390,23 +318390,23 @@ "year": 1792, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 21.112505913617355, - "c2": 28.218182494389424, - "c3": 9.765108798746162, - "c4": -1.124243000011269, - "c5": -6.325225995063942, - "c6": -24.696079731864636, - "c7": 27.665200149284395 + "points": { + "c1": -7.696617104692574, + "c2": -30.751443010887783, + "c3": 21.683876629611127, + "c4": -10.48954023367179, + "c5": 25.523304418966, + "c6": -5.423815704462328, + "c7": 3.6360083240711774 }, - "vertexSeeds": { - "c1": 6.5736594370005985, - "c2": 6.931959759681225, - "c3": 6.200562291544057, - "c4": 6.690196364698189, - "c5": 6.883975197287779, - "c6": 6.903735275176334, - "c7": 6.759607936564254 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801207, + "c4": 6.786870087840967, + "c5": 5.090152565880715, + "c6": 3.3934350439204772, + "c7": 1.6967175219602386 }, "rgb": [222, 0, 59] }, @@ -318417,23 +318417,23 @@ "year": 1792, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -11.612152236373397, - "c2": 26.258866880119058, - "c3": -0.3636364297108514, - "c4": -23.045865514045907, - "c5": -8.141392659855544, - "c6": -13.013203155004373, - "c7": -13.80373455703894 + "points": { + "c1": 30.760324537909653, + "c2": -1.8356430701728499, + "c3": -16.247144308415233, + "c4": -19.738557511999836, + "c5": 19.843192691313448, + "c6": 26.02949592881211, + "c7": 11.967504776569896 }, - "vertexSeeds": { - "c1": 6.434722072898658, - "c2": 6.42514208761799, - "c3": 6.480551369120153, - "c4": 6.357744514998702, - "c5": 6.54786084631615, - "c6": 6.291918493438541, - "c7": 6.38829239237316 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595005, + "c3": 7.813222376329164, + "c4": 6.250577901063325, + "c5": 4.687933425797518, + "c6": 3.125288950531679, + "c7": 1.5626444752658395 }, "rgb": [58, 15, 49] }, @@ -318444,23 +318444,23 @@ "year": 1792, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 29.17339304045364, - "c2": 33.859839112807556, - "c3": 28.61890945899338, - "c4": 8.728183620516027, - "c5": -34.282642072671706, - "c6": 28.387381276167943, - "c7": 27.302651445116098 + "points": { + "c1": -35.72174795581014, + "c2": 21.043114538084538, + "c3": 25.152671723258614, + "c4": 4.218348932024583, + "c5": -4.459657916410261, + "c6": 31.52960373713507, + "c7": 34.33527635168142 }, - "vertexSeeds": { - "c1": 4.110120372365405, - "c2": 4.283701608618245, - "c3": 4.2781219920503695, - "c4": 4.30994375410072, - "c5": 4.284472496713647, - "c6": 4.206727790910172, - "c7": 4.293626530680701 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.21359223300971, + "c3": 5.177993527508095, + "c4": 4.142394822006478, + "c5": 3.1067961165048623, + "c6": 2.0711974110032325, + "c7": 1.0355987055016163 }, "rgb": [222, 0, 59] }, @@ -318471,23 +318471,23 @@ "year": 1792, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -40.12672161403647, - "c2": -15.266309176271594, - "c3": 34.357494235960786, - "c4": 13.496693067403733, - "c5": -38.481328043013086, - "c6": 2.713340135725062, - "c7": -18.96639725221133 + "points": { + "c1": 11.27186555711608, + "c2": 11.67922447251064, + "c3": -35.19170362055847, + "c4": -26.52302324407833, + "c5": -29.574254253564597, + "c6": 22.464735265552733, + "c7": -2.3907775759782837 }, - "vertexSeeds": { - "c1": 6.894476669131413, - "c2": 6.8720884313334185, - "c3": 6.849036766496295, - "c4": 6.893165053054271, - "c5": 6.885450477491102, - "c6": 6.895565688995149, - "c7": 6.841249210322466 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319049, + "c3": 8.229311141932431, + "c4": 6.583448913545978, + "c5": 4.937586685159524, + "c6": 3.291724456772907, + "c7": 1.6458622283864535 }, "rgb": [77, 76, 132] }, @@ -318498,23 +318498,23 @@ "year": 1792, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -20.01145355552253, - "c2": 31.032036827249286, - "c3": -35.54260967133307, - "c4": -9.281827301043563, - "c5": -0.9499557145720772, - "c6": 23.39876392766749, - "c7": 25.190140155976067 + "points": { + "c1": -39.59836998469128, + "c2": -31.762842799342543, + "c3": -34.496376375320814, + "c4": 38.46481569154143, + "c5": 39.57979701137981, + "c6": -28.03965820214001, + "c7": -4.3567679968397 }, - "vertexSeeds": { - "c1": 5.904359048935652, - "c2": 6.195402891556332, - "c3": 4.958857764340656, - "c4": 7.087886939866172, - "c5": 6.2988626667204155, - "c6": 4.6854143948324225, - "c7": 4.850059982050215 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284326, + "c3": 8.784096162736942, + "c4": 7.027276930189552, + "c5": 5.270457697642167, + "c6": 3.513638465094777, + "c7": 1.7568192325473873 }, "rgb": [77, 76, 132] }, @@ -318525,23 +318525,23 @@ "year": 1792, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 15.712786019280614, - "c2": -31.00231736986696, - "c3": 1.2393508070013084, - "c4": 28.59524708603027, - "c5": 6.298747893917657, - "c6": 28.958905994126397, - "c7": 16.5626523068548 + "points": { + "c1": -11.706073327382235, + "c2": -11.699983874898304, + "c3": 17.294499285012833, + "c4": 16.431363141506026, + "c5": -26.56158981621449, + "c6": 32.44507581793039, + "c7": 35.97636783737239 }, - "vertexSeeds": { - "c1": 6.537545865063629, - "c2": 6.5173898869527545, - "c3": 6.496132587429182, - "c4": 6.546062784549928, - "c5": 6.504755706481035, - "c6": 6.5240889333896295, - "c7": 6.519721805006487 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159495, + "c3": 7.813222376329262, + "c4": 6.250577901063369, + "c5": 4.687933425797475, + "c6": 3.1252889505315804, + "c7": 1.5626444752658937 }, "rgb": [86, 146, 138] }, @@ -318552,23 +318552,23 @@ "year": 1792, "resistanceReported": false, "duration": 47952000, - "curveSeeds": { - "c1": -41.7473263582372, - "c2": -6.16442290613783, - "c3": 9.449401071222262, - "c4": -17.87873384426323, - "c5": -61.80803454677628, - "c6": 38.144595541569466, - "c7": -47.93908494210762 + "points": { + "c1": -24.659498619177597, + "c2": -3.88135177558825, + "c3": 37.168807468222695, + "c4": 34.1294921666193, + "c5": 26.027571252871994, + "c6": -24.096025133130908, + "c7": 38.024193080386965 }, - "vertexSeeds": { - "c1": 4.1689796273537505, - "c2": 4.413118708338802, - "c3": 4.5810760935105055, - "c4": 4.770399848748075, - "c5": 5.633837640771569, - "c6": 4.5939596606462025, - "c7": 5.2923300463352945 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.07350901525659, + "c4": 5.65880721220527, + "c5": 4.2441054091539545, + "c6": 2.829403606102635, + "c7": 1.4147018030513174 }, "rgb": [86, 146, 138] }, @@ -318579,23 +318579,23 @@ "year": 1791, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 13.651570874514174, - "c2": 7.773761886058413, - "c3": 4.1317804984602695, - "c4": -23.752540413125953, - "c5": 3.4291011438290546, - "c6": -8.513645858374822, - "c7": 15.532348913454502 + "points": { + "c1": 22.009440592681976, + "c2": 31.60852499001301, + "c3": 8.57572206468862, + "c4": -6.41459082247302, + "c5": 11.334767842671788, + "c6": -23.046437917709657, + "c7": -6.142883024524409 }, - "vertexSeeds": { - "c1": 7.293803166084108, - "c2": 7.263579386127972, - "c3": 7.3675237732041845, - "c4": 7.2963646987213755, - "c5": 7.11637403752642, - "c6": 7.109517982280948, - "c7": 7.125458863506422 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.56865464632453, + "c3": 8.807212205270465, + "c4": 7.045769764216354, + "c5": 5.284327323162288, + "c6": 3.522884882108177, + "c7": 1.7614424410540648 }, "rgb": [77, 76, 132] }, @@ -318606,23 +318606,23 @@ "year": 1793, "resistanceReported": false, "duration": 53740800, - "curveSeeds": { - "c1": -68.35783472267852, - "c2": -2.8514710927319555, - "c3": -0.15944008079645755, - "c4": -44.09891824535852, - "c5": -48.337880991801484, - "c6": -48.330050034508155, - "c7": 65.42144584358925 + "points": { + "c1": -58.91977359575179, + "c2": -64.1643518074095, + "c3": -25.546677561376143, + "c4": -56.808222036308166, + "c5": 14.793311362776947, + "c6": 17.90941845787161, + "c7": 3.763040410876627 }, - "vertexSeeds": { - "c1": 4.058779172238538, - "c2": 4.150481148413651, - "c3": 4.231961195673079, - "c4": 4.2535348852215416, - "c5": 4.056040647666642, - "c6": 4.330774323688462, - "c7": 4.289976021379388 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.316689782709196, + "c4": 4.25335182616736, + "c5": 3.190013869625522, + "c6": 2.1266759130836843, + "c7": 1.0633379565418377 }, "rgb": [77, 76, 132] }, @@ -318633,23 +318633,23 @@ "year": 1791, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -27.16985552465604, - "c2": -11.143213386706634, - "c3": 28.06650286146626, - "c4": -26.769936355975332, - "c5": -28.278287434249986, - "c6": -29.329715029437807, - "c7": 9.463256777706455 + "points": { + "c1": -8.509029435364763, + "c2": -15.217398580702088, + "c3": 28.29774221113251, + "c4": -29.084414353655443, + "c5": -24.69003027388144, + "c6": 20.78529148851772, + "c7": -16.402519383324453 }, - "vertexSeeds": { - "c1": 3.989079856112136, - "c2": 4.043909269351217, - "c3": 4.021918608213712, - "c4": 4.066285986514382, - "c5": 3.877604581744957, - "c6": 3.9048801691002755, - "c7": 4.167340801328206 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687937, + "c3": 4.99306518723994, + "c4": 3.9944521497919543, + "c5": 2.9958391123439685, + "c6": 1.997226074895971, + "c7": 0.9986130374479855 }, "rgb": [238, 201, 159] }, @@ -318660,23 +318660,23 @@ "year": 1791, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -15.209657067151868, - "c2": -25.196795844881432, - "c3": 20.78849342653463, - "c4": 18.065483737071624, - "c5": 24.441141637124232, - "c6": 2.7374241158738606, - "c7": -10.821430777078735 + "points": { + "c1": -15.149418030050802, + "c2": -17.01545534968428, + "c3": -21.92758767256842, + "c4": 26.172814585440335, + "c5": 25.083291525546997, + "c6": 13.075725284379025, + "c7": 5.506039069593093 }, - "vertexSeeds": { - "c1": 5.976814167910731, - "c2": 5.645977059935564, - "c3": 5.543443594436945, - "c4": 5.769027467352628, - "c5": 5.67197271779994, - "c6": 5.838690629412449, - "c7": 5.596621391334414 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.71012482662968, + "c3": 7.258437355524734, + "c4": 5.806749884419787, + "c5": 4.35506241331484, + "c6": 2.9033749422098936, + "c7": 1.4516874711049468 }, "rgb": [238, 201, 159] }, @@ -318687,23 +318687,23 @@ "year": 1792, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -3.095849962436432, - "c2": 18.234614267093868, - "c3": 24.385609635679955, - "c4": -11.912169963272198, - "c5": 5.350546215643355, - "c6": 9.444362812999707, - "c7": -0.8066721943459001 + "points": { + "c1": 1.269686245790112, + "c2": 10.227321831823517, + "c3": -30.125034203091225, + "c4": 25.079010085307402, + "c5": -26.865350332931996, + "c6": -7.641098973348793, + "c7": -25.688757519788158 }, - "vertexSeeds": { - "c1": 4.13980118222952, - "c2": 4.181276055983602, - "c3": 4.208406627637287, - "c4": 4.183097530993467, - "c5": 4.214075308656025, - "c6": 4.1808583070558205, - "c7": 4.140796681037388 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768355, + "c3": 5.039297272306988, + "c4": 4.03143781784557, + "c5": 3.023578363384203, + "c6": 2.015718908922785, + "c7": 1.0078594544614177 }, "rgb": [77, 76, 132] }, @@ -318714,23 +318714,23 @@ "year": 1792, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 0.36969856995559525, - "c2": -36.92569595680647, - "c3": -39.88093860735647, - "c4": 3.471090526163934, - "c5": -4.373709896345261, - "c6": 14.716251462916759, - "c7": -1.784426365073024 + "points": { + "c1": 32.047615969203854, + "c2": 25.35943915699763, + "c3": -11.217447311286257, + "c4": -31.037802388893375, + "c5": 4.252358815470977, + "c6": 4.435957379067389, + "c7": -16.506288161381548 }, - "vertexSeeds": { - "c1": 7.189614675207595, - "c2": 8.082492629537427, - "c3": 7.110580850667427, - "c4": 8.094075439110162, - "c5": 7.401157804257991, - "c6": 7.105832591570928, - "c7": 7.337697152789743 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933424, + "c3": 9.731853906611189, + "c4": 7.78548312528895, + "c5": 5.839112343966712, + "c6": 3.892741562644475, + "c7": 1.9463707813222375 }, "rgb": [77, 76, 132] }, @@ -318741,23 +318741,23 @@ "year": 1792, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 16.840285142901152, - "c2": -22.535611181187026, - "c3": 27.769832594366783, - "c4": 17.106764155372176, - "c5": 9.506635826258076, - "c6": 10.649261868358899, - "c7": -27.802004409195796 + "points": { + "c1": -15.557259888678278, + "c2": -25.912716589288976, + "c3": -32.86071901442906, + "c4": 24.693057682706666, + "c5": -4.193039958725716, + "c6": -21.02890277857746, + "c7": -31.834944656515802 }, - "vertexSeeds": { - "c1": 4.417124532660306, - "c2": 4.023535932645392, - "c3": 4.314790494718217, - "c4": 4.056188808712113, - "c5": 4.3859957994174295, - "c6": 4.110907283587661, - "c7": 4.377099574614573 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.38002773925104, + "c3": 5.316689782709199, + "c4": 4.253351826167358, + "c5": 3.1900138696255165, + "c6": 2.1266759130836754, + "c7": 1.0633379565418346 }, "rgb": [86, 146, 138] }, @@ -318768,23 +318768,23 @@ "year": 1792, "resistanceReported": false, "duration": 47606400, - "curveSeeds": { - "c1": -52.602510543646865, - "c2": 56.15645600595759, - "c3": -35.31708871958653, - "c4": -39.52337337674068, - "c5": 30.57959492865006, - "c6": -34.08787184194819, - "c7": -9.889242863190539 + "points": { + "c1": 45.8494741632681, + "c2": -14.864345856029736, + "c3": 6.752330357903631, + "c4": -20.27707260279913, + "c5": -48.008074250738574, + "c6": 33.6424426963017, + "c7": -64.06443847182112 }, - "vertexSeeds": { - "c1": 1.9239846409826977, - "c2": 1.8900274910741979, - "c3": 1.9226705376448454, - "c4": 1.8403684066836081, - "c5": 1.8338736100781237, - "c6": 1.8665395863926133, - "c7": 1.932801717225575 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624134, + "c3": 2.3347202958853446, + "c4": 1.8677762367082755, + "c5": 1.4008321775312067, + "c6": 0.9338881183541378, + "c7": 0.4669440591770689 }, "rgb": [238, 201, 159] }, @@ -318795,23 +318795,23 @@ "year": 1792, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 28.236985355681373, - "c2": 16.927654413646483, - "c3": 26.228923405453994, - "c4": -24.860886002042243, - "c5": -23.62629001600532, - "c6": 12.127454007720008, - "c7": -23.650594029616496 + "points": { + "c1": -20.838938389353416, + "c2": -8.451808319193418, + "c3": -0.40883848901789577, + "c4": 31.446519916998113, + "c5": -24.96525687234699, + "c6": 15.269316041374843, + "c7": -5.25618798556393 }, - "vertexSeeds": { - "c1": 2.5273340621588245, - "c2": 2.7353932868051474, - "c3": 2.881729974474609, - "c4": 2.5945679492506515, - "c5": 2.8447227007616798, - "c6": 2.58038330092486, - "c7": 2.86888486069899 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.7739251040221893, + "c5": 2.0804438280166453, + "c6": 1.3869625520110946, + "c7": 0.6934812760055439 }, "rgb": [58, 15, 49] }, @@ -318822,23 +318822,23 @@ "year": 1792, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 27.006456718904055, - "c2": -4.720739931313197, - "c3": 13.431071808263901, - "c4": -13.58598488603688, - "c5": -29.817937821221214, - "c6": -0.7382561168381017, - "c7": -26.58229722105574 + "points": { + "c1": -20.382127234277448, + "c2": -34.35221446762089, + "c3": -35.41658322813363, + "c4": -13.081555164655757, + "c5": 27.107756802864415, + "c6": -10.661786135031715, + "c7": -16.46310198338826 }, - "vertexSeeds": { - "c1": 5.304013418657198, - "c2": 5.292710278993229, - "c3": 5.170512120766039, - "c4": 4.959808697993401, - "c5": 5.162113670789798, - "c6": 5.16951592999005, - "c7": 5.055010504534401 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061029, + "c3": 6.356911696717527, + "c4": 5.085529357374027, + "c5": 3.8141470180305257, + "c6": 2.5427646786870026, + "c7": 1.2713823393435013 }, "rgb": [77, 76, 132] }, @@ -318849,23 +318849,23 @@ "year": 1791, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 24.75499494520177, - "c2": -15.125379400572056, - "c3": 23.505986886951167, - "c4": -8.75436834423597, - "c5": 18.324456455742034, - "c6": 11.440160945770796, - "c7": -14.329787474849129 + "points": { + "c1": -18.62975487748735, + "c2": 15.97312722053653, + "c3": 22.559869938727832, + "c4": -23.05332440623455, + "c5": -3.4922022451115815, + "c6": -2.9832481279175944, + "c7": -21.251970884868005 }, - "vertexSeeds": { - "c1": 6.109426376857099, - "c2": 6.574398692666779, - "c3": 6.84023493756666, - "c4": 6.926813446583016, - "c5": 6.59366464053198, - "c6": 6.269652594831351, - "c7": 6.4758143626228595 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686543, + "c3": 9.015256588072125, + "c4": 7.212205270457699, + "c5": 5.409153952843272, + "c6": 3.6061026352288534, + "c7": 1.8030513176144267 }, "rgb": [58, 15, 49] }, @@ -318876,23 +318876,23 @@ "year": 1792, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -33.29521193241443, - "c2": -36.06892497922573, - "c3": -18.8857344206681, - "c4": 3.991339409752136, - "c5": -27.935834495667212, - "c6": 6.195963855788655, - "c7": 10.148131231439265 + "points": { + "c1": 36.06765219785099, + "c2": 1.199285469944975, + "c3": 26.929553553472857, + "c4": -29.977981612180418, + "c5": 34.05244223916746, + "c6": -25.737055374332137, + "c7": -27.31039388588473 }, - "vertexSeeds": { - "c1": 3.9278325212917884, - "c2": 3.5240714891374925, - "c3": 3.4653908618019713, - "c4": 3.7292051712905834, - "c5": 3.565965625318077, - "c6": 4.204741577320848, - "c7": 3.4492850972154363 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768377, + "c3": 5.039297272306982, + "c4": 4.031437817845586, + "c5": 3.0235783633841864, + "c6": 2.015718908922791, + "c7": 1.0078594544613955 }, "rgb": [77, 76, 132] }, @@ -318903,23 +318903,23 @@ "year": 1792, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -6.327355287684689, - "c2": -9.811482401927098, - "c3": -10.954154085193647, - "c4": -12.791255472159698, - "c5": -24.218900356850313, - "c6": 24.62704629358294, - "c7": -10.757553762983829 + "points": { + "c1": -21.25691924943284, + "c2": 12.053887362582284, + "c3": 4.287504234798828, + "c4": -17.223510148387348, + "c5": -6.484872135472148, + "c6": -0.533156521920219, + "c7": -7.983092845460444 }, - "vertexSeeds": { - "c1": 3.33368451791012, - "c2": 3.3800659931546972, - "c3": 3.683415483070831, - "c4": 3.6414400617560094, - "c5": 3.44526626630455, - "c6": 3.3122876976557847, - "c7": 3.8077111290231844 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004163, + "c3": 4.600092464170132, + "c4": 3.6800739713361064, + "c5": 2.7600554785020814, + "c6": 1.84003698566805, + "c7": 0.920018492834025 }, "rgb": [58, 15, 49] }, @@ -318930,23 +318930,23 @@ "year": 1792, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -16.675963859302918, - "c2": 27.290984033845803, - "c3": -6.632147903642373, - "c4": -3.4787493494954482, - "c5": -20.15810826495753, - "c6": -7.420287823369673, - "c7": 24.241372223849353 + "points": { + "c1": 34.027193860407536, + "c2": 18.908838473469814, + "c3": -1.0376175418759885, + "c4": 9.161971433004474, + "c5": 32.272278119410544, + "c6": 1.2995007055712335, + "c7": 3.114706594647032 }, - "vertexSeeds": { - "c1": 8.931465720020688, - "c2": 8.849679338242192, - "c3": 8.722142968845867, - "c4": 9.08217654853986, - "c5": 8.966776235170176, - "c6": 9.003577896886958, - "c7": 8.79523790783944 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065185, + "c3": 10.957004160887651, + "c4": 8.765603328710137, + "c5": 6.574202496532602, + "c6": 4.3828016643550685, + "c7": 2.1914008321775342 }, "rgb": [77, 76, 132] }, @@ -318957,23 +318957,23 @@ "year": 1791, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 21.505304747033197, - "c2": 12.264062058081162, - "c3": 21.06203130642486, - "c4": -12.427779828772884, - "c5": -21.08304412892329, - "c6": 13.7565499381904, - "c7": -22.729207619498705 + "points": { + "c1": -5.028806017555379, + "c2": -22.873323693567862, + "c3": -18.531847955671203, + "c4": -15.463776973654323, + "c5": -4.945907157439272, + "c6": 5.36441845859196, + "c7": 4.4346471574434965 }, - "vertexSeeds": { - "c1": 5.887385385853825, - "c2": 5.782232422954071, - "c3": 5.738009220344565, - "c4": 5.886182090090033, - "c5": 5.889999386706701, - "c6": 5.884205867539904, - "c7": 5.8775039917784095 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388333, + "c3": 7.11974110032363, + "c4": 5.695792880258889, + "c5": 4.271844660194185, + "c6": 2.8478964401294444, + "c7": 1.423948220064741 }, "rgb": [77, 76, 132] }, @@ -318984,23 +318984,23 @@ "year": 1792, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -15.538033999124913, - "c2": -2.2677663483282764, - "c3": -16.628972288161776, - "c4": -16.20825605107596, - "c5": -27.593603107059778, - "c6": 21.63842956176668, - "c7": 19.58917670222223 + "points": { + "c1": 29.506177646472054, + "c2": -14.79121949967255, + "c3": 18.35863106512648, + "c4": -17.425984988415358, + "c5": -0.13913382325028323, + "c6": 18.886437575417517, + "c7": -23.924330020244476 }, - "vertexSeeds": { - "c1": 4.559622061587813, - "c2": 4.5314725327460605, - "c3": 5.212803466456184, - "c4": 5.1558999516266075, - "c5": 4.889472538303082, - "c6": 5.546614939691769, - "c7": 4.582006166946271 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.21081830790569, + "c3": 6.8423485899214045, + "c4": 5.473878871937127, + "c5": 4.105409153952841, + "c6": 2.7369394359685635, + "c7": 1.3684697179842817 }, "rgb": [238, 201, 159] }, @@ -319011,23 +319011,23 @@ "year": 1792, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -3.422321234418977, - "c2": -11.834251600793454, - "c3": -5.354791002165086, - "c4": 13.389745579048068, - "c5": 0.17616011254758845, - "c6": -15.032401671413671, - "c7": -0.6433179361064987 + "points": { + "c1": -9.785202227147316, + "c2": 0.6359915098222721, + "c3": -16.064835798425083, + "c4": -2.176676231193227, + "c5": -1.30023769606926, + "c6": -29.0332891724542, + "c7": 30.678644395173343 }, - "vertexSeeds": { - "c1": 3.969324385264589, - "c2": 3.9933144159416334, - "c3": 4.308811193499148, - "c4": 3.930816463307172, - "c5": 4.281387840365046, - "c6": 4.020651844845791, - "c7": 3.998762715571823 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969487, + "c3": 5.154877484974573, + "c4": 4.123901987979658, + "c5": 3.0929264909847434, + "c6": 2.061950993989829, + "c7": 1.0309754969949145 }, "rgb": [58, 15, 49] }, @@ -319038,23 +319038,23 @@ "year": 1792, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 37.412683071305, - "c2": 6.5490978697421625, - "c3": 35.119718033338415, - "c4": -11.282763741868855, - "c5": -32.4217583946958, - "c6": -16.586513540991668, - "c7": -27.27687328821794 + "points": { + "c1": -43.35897313912101, + "c2": 36.376965497192344, + "c3": 15.936279853454295, + "c4": 11.782877470071483, + "c5": 3.3722917494840416, + "c6": 41.532006024496894, + "c7": -20.318359815869158 }, - "vertexSeeds": { - "c1": 8.907118362786395, - "c2": 9.351824630379454, - "c3": 8.814235716078269, - "c4": 9.3180083163152, - "c5": 8.880343134030698, - "c6": 8.85655045122581, - "c7": 9.383637473989426 + "offsets": { + "c1": 16.116504854368934, + "c2": 13.814147018030509, + "c3": 11.511789181692105, + "c4": 9.20943134535368, + "c5": 6.907073509015254, + "c6": 4.60471567267685, + "c7": 2.302357836338425 }, "rgb": [58, 15, 49] }, @@ -319065,23 +319065,23 @@ "year": 1792, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 9.326436017309625, - "c2": 22.66844306060697, - "c3": -4.061102759907893, - "c4": -24.980985999124975, - "c5": 18.004748652263245, - "c6": -29.093368828099294, - "c7": 13.406074402642957 + "points": { + "c1": -9.9394178000801, + "c2": -27.410796848659444, + "c3": -2.608006664617669, + "c4": 16.047040083466953, + "c5": -19.862238047076982, + "c6": -30.228163515537606, + "c7": 12.114181112027303 }, - "vertexSeeds": { - "c1": 7.368140306965496, - "c2": 7.3503586792559945, - "c3": 7.407964924299613, - "c4": 6.8399580494605186, - "c5": 7.177607697720837, - "c6": 7.112267104671903, - "c7": 7.392684984619921 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -319092,23 +319092,23 @@ "year": 1792, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -25.909590539584222, - "c2": -33.562125486182374, - "c3": -33.46624897082462, - "c4": -31.1576138208162, - "c5": 4.340609495108517, - "c6": 16.138165041037247, - "c7": -12.027518956267496 + "points": { + "c1": -18.574791663179507, + "c2": 8.847238907851228, + "c3": 15.294984229996537, + "c4": -34.39730400687802, + "c5": -29.561062217166853, + "c6": -2.44032867271153, + "c7": 11.22866486197534 }, - "vertexSeeds": { - "c1": 4.758513708600831, - "c2": 4.5757207907038255, - "c3": 4.8822999932347395, - "c4": 4.769799135838876, - "c5": 4.930333411014579, - "c6": 4.905742593289589, - "c7": 4.635678870304121 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377257, + "c3": 5.963938973647717, + "c4": 4.771151178918168, + "c5": 3.5783633841886284, + "c6": 2.385575589459089, + "c7": 1.1927877947295393 }, "rgb": [238, 201, 159] }, @@ -319119,23 +319119,23 @@ "year": 1792, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -4.82891961477516, - "c2": 0.5587775035140865, - "c3": -0.17536223070069923, - "c4": -26.474310070342412, - "c5": -18.84715406002014, - "c6": 13.483310518195083, - "c7": 3.768503924737516 + "points": { + "c1": 3.9759956446943363, + "c2": -5.545298198195702, + "c3": 30.004492043560532, + "c4": -9.607177808395523, + "c5": -37.6750991938007, + "c6": -7.515912097585094, + "c7": 28.04962258189893 }, - "vertexSeeds": { - "c1": 4.827011521065169, - "c2": 4.770005926847515, - "c3": 5.049096602919401, - "c4": 4.893824583583275, - "c5": 4.6886404392944065, - "c6": 4.75885081047817, - "c7": 5.063068817257958 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578363, + "c3": 6.079519186315302, + "c4": 4.863615349052242, + "c5": 3.6477115117891814, + "c6": 2.431807674526121, + "c7": 1.2159038372630604 }, "rgb": [222, 0, 59] }, @@ -319146,23 +319146,23 @@ "year": 1791, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -18.20208239049207, - "c2": 3.9090903229901492, - "c3": -20.1033702773861, - "c4": -21.032096001457997, - "c5": 23.600117947059893, - "c6": -10.443080635227453, - "c7": 15.791093587262637 + "points": { + "c1": -21.701494028603907, + "c2": -15.087088324132196, + "c3": 24.81492740116792, + "c4": 12.948672733920809, + "c5": 22.844309208889946, + "c6": 13.391924811129542, + "c7": -20.726123895887117 }, - "vertexSeeds": { - "c1": 5.271631787952517, - "c2": 5.231524369085853, - "c3": 5.2342368138468025, - "c4": 5.2075573702564455, - "c5": 5.264687438350612, - "c6": 5.27111898218203, - "c7": 5.250208206896465 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980619, + "c3": 6.310679611650432, + "c4": 5.048543689320371, + "c5": 3.7864077669903096, + "c6": 2.5242718446601224, + "c7": 1.2621359223300612 }, "rgb": [238, 201, 159] }, @@ -319173,23 +319173,23 @@ "year": 1792, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -1.9857850244911717, - "c2": 14.209953787167201, - "c3": -1.4311564717876948, - "c4": 7.808444937196434, - "c5": 43.76246498315685, - "c6": 19.117864372519158, - "c7": -8.37577538698612 + "points": { + "c1": -38.57857067937935, + "c2": 14.43740500757, + "c3": -13.016260369965302, + "c4": 43.23321401838273, + "c5": 20.66165551522041, + "c6": -27.9229613265043, + "c7": 25.00128109026317 }, - "vertexSeeds": { - "c1": 5.458530627228155, - "c2": 5.424945965806686, - "c3": 5.325052336230616, - "c4": 5.508914149329349, - "c5": 5.383645091352652, - "c6": 5.274213478104192, - "c7": 5.141795599643756 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624133, + "c3": 6.680536292186778, + "c4": 5.344429033749422, + "c5": 4.008321775312067, + "c6": 2.672214516874711, + "c7": 1.3361072584373554 }, "rgb": [86, 146, 138] }, @@ -319200,23 +319200,23 @@ "year": 1792, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -8.105295957323484, - "c2": 10.944608495238931, - "c3": 5.905531782207667, - "c4": -13.057888419446694, - "c5": -9.869919054135728, - "c6": 19.22000570896956, - "c7": -0.8826617699894967 + "points": { + "c1": -13.19597075021283, + "c2": -2.2681075510602184, + "c3": 12.773433133023666, + "c4": 16.789361220214786, + "c5": -0.22442518355345698, + "c6": -28.707638579788597, + "c7": 13.30796410323967 }, - "vertexSeeds": { - "c1": 6.7526589720172705, - "c2": 6.7142340177030375, - "c3": 6.712105149408829, - "c4": 6.730890164722972, - "c5": 6.778915688117592, - "c6": 6.764359579810077, - "c7": 6.7414557780524484 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077653, + "c3": 8.090614886731355, + "c4": 6.472491909385058, + "c5": 4.8543689320388905, + "c6": 3.2362459546925937, + "c7": 1.6181229773462968 }, "rgb": [222, 0, 59] }, @@ -319227,23 +319227,23 @@ "year": 1792, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 11.529031640032159, - "c2": 20.574716415377985, - "c3": 32.45261712562903, - "c4": 16.039069351232257, - "c5": 31.431882151102556, - "c6": -30.495454346352425, - "c7": 25.827749280184676 + "points": { + "c1": -21.074405774924923, + "c2": -26.08265654285327, + "c3": -13.333377712273105, + "c4": -36.55986959961, + "c5": -38.7120666990964, + "c6": -17.409549061268745, + "c7": -16.81947046245665 }, - "vertexSeeds": { - "c1": 7.131080156379481, - "c2": 7.047506024252654, - "c3": 7.240472267800082, - "c4": 6.845548855359957, - "c5": 6.983628932210269, - "c6": 7.244923564636469, - "c7": 6.8934610558942975 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445221, + "c3": 8.876560332871025, + "c4": 7.101248266296807, + "c5": 5.3259361997226105, + "c6": 3.5506241331484145, + "c7": 1.7753120665741962 }, "rgb": [222, 0, 59] }, @@ -319254,23 +319254,23 @@ "year": 1792, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -33.05186862736535, - "c2": 32.41978719476997, - "c3": 17.989002121464473, - "c4": -22.461038217064832, - "c5": -37.5888300591816, - "c6": 34.68841631038691, - "c7": 3.2159632878079734 + "points": { + "c1": 35.66465945252018, + "c2": -24.36465736871734, + "c3": 16.977020103457804, + "c4": -19.70620283465074, + "c5": -34.99120025631055, + "c6": -32.922831595993976, + "c7": -19.545923238946248 }, - "vertexSeeds": { - "c1": 3.766338872363164, - "c2": 3.7680515973397206, - "c3": 3.896504810593541, - "c4": 3.7756974227929994, - "c5": 3.829327058390777, - "c6": 3.838356839122314, - "c7": 3.7547580571125385 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165054, + "c3": 4.692556634304198, + "c4": 3.7540453074433624, + "c5": 2.815533980582527, + "c6": 1.8770226537216916, + "c7": 0.9385113268608355 }, "rgb": [222, 0, 59] }, @@ -319281,23 +319281,23 @@ "year": 1792, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 26.621447717587227, - "c2": 7.328099298834683, - "c3": -0.9279546411468829, - "c4": 23.895216474019282, - "c5": 27.736662814730803, - "c6": -11.88437440485879, - "c7": 23.60641075679337 + "points": { + "c1": 21.140112882681322, + "c2": 13.397159905559114, + "c3": 4.872403057300268, + "c4": -6.492012264216221, + "c5": -7.166519575226424, + "c6": -26.020305506266624, + "c7": -13.266075338407909 }, - "vertexSeeds": { - "c1": 4.61031117537098, - "c2": 4.613868836436848, - "c3": 4.608525086674346, - "c4": 4.613531663871266, - "c5": 4.618416869277891, - "c6": 4.607369968953065, - "c7": 4.623893109642456 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613069, + "c3": 5.524734165510927, + "c4": 4.419787332408786, + "c5": 3.3148404993064244, + "c6": 2.209893666204283, + "c7": 1.1049468331021415 }, "rgb": [77, 76, 132] }, @@ -319308,23 +319308,23 @@ "year": 1792, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -22.37617064815799, - "c2": -9.411570941904955, - "c3": -0.23486250649776252, - "c4": 22.529329966313345, - "c5": -7.7406342980094855, - "c6": -26.277706655823696, - "c7": 0.3389486594269684 + "points": { + "c1": 12.096448077942231, + "c2": 19.08726597632864, + "c3": -20.424888155920357, + "c4": -14.658422103914438, + "c5": -16.371897228148747, + "c6": -29.75746092764283, + "c7": -15.920779858355058 }, - "vertexSeeds": { - "c1": 7.382634379860234, - "c2": 7.440546011474268, - "c3": 7.603927505040829, - "c4": 7.6721333898983275, - "c5": 7.452999552329343, - "c6": 7.64319533007517, - "c7": 7.449748347274622 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.2464170134073, + "c4": 7.397133610725837, + "c5": 5.547850208044388, + "c6": 3.6985668053629257, + "c7": 1.8492834026814629 }, "rgb": [58, 15, 49] }, @@ -319335,23 +319335,23 @@ "year": 1792, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 29.57596772130765, - "c2": 27.72427579093337, - "c3": 2.762112164221975, - "c4": -11.56875757383013, - "c5": -7.288492961507195, - "c6": -4.73241305200316, - "c7": -8.830796728353583 + "points": { + "c1": -21.702096307505634, + "c2": -18.483242111540847, + "c3": -27.55025492695134, + "c4": -28.97444688425458, + "c5": 7.602168142840895, + "c6": -30.97164450646108, + "c7": -0.851932814595223 }, - "vertexSeeds": { - "c1": 5.14473189155423, - "c2": 5.141737780608687, - "c3": 5.148930587861529, - "c4": 4.589734901451639, - "c5": 5.415513326364374, - "c6": 4.915191008049611, - "c7": 4.6224357308894115 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342579, + "c3": 6.51872399445215, + "c4": 5.214979195561719, + "c5": 3.9112343966712895, + "c6": 2.6074895977808596, + "c7": 1.3037447988904298 }, "rgb": [238, 201, 159] }, @@ -319362,23 +319362,23 @@ "year": 1792, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 18.681910430944335, - "c2": -23.595419168834567, - "c3": -14.05716800613781, - "c4": -26.78575965547724, - "c5": 23.035290396821743, - "c6": -22.73769611634359, - "c7": 8.230541972105549 + "points": { + "c1": -31.340561398065127, + "c2": -26.883408707964968, + "c3": 2.7295518051485317, + "c4": 30.70170263294318, + "c5": -17.021847317494906, + "c6": 18.444051837562398, + "c7": -10.850321770096851 }, - "vertexSeeds": { - "c1": 6.045952944777374, - "c2": 6.0563138023862955, - "c3": 6.240160278428712, - "c4": 6.207880394739899, - "c5": 6.14725957293825, - "c6": 6.225473230780134, - "c7": 6.058941894352104 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031893, + "c3": 7.489597780859904, + "c4": 5.991678224687963, + "c5": 4.493758668515972, + "c6": 2.9958391123439814, + "c7": 1.4979195561719907 }, "rgb": [58, 15, 49] }, @@ -319389,23 +319389,23 @@ "year": 1792, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 0.4228716984460945, - "c2": -21.516872478404416, - "c3": 27.99354571525277, - "c4": 1.4839965146591432, - "c5": 11.302599999339034, - "c6": 20.508337885274724, - "c7": -1.6145462996062498 + "points": { + "c1": 28.495289864417014, + "c2": 14.571652578012941, + "c3": 6.672926271097918, + "c4": -10.266538961927612, + "c5": 18.721295821068598, + "c6": 5.96790578932951, + "c7": 8.39874074300283 }, - "vertexSeeds": { - "c1": 6.648479360833163, - "c2": 6.946133786107383, - "c3": 6.739569937259196, - "c4": 6.714808027847269, - "c5": 6.880947192483648, - "c6": 6.71281432172075, - "c7": 6.967612319526287 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479888, + "c3": 8.321775312066574, + "c4": 6.657420249653259, + "c5": 4.993065187239944, + "c6": 3.3287101248266295, + "c7": 1.6643550624133148 }, "rgb": [77, 76, 132] }, @@ -319416,23 +319416,23 @@ "year": 1792, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -7.509257099311981, - "c2": 37.3969900176658, - "c3": -31.234896190497853, - "c4": -8.269202089168054, - "c5": -33.32370922612028, - "c6": -2.0588249081471517, - "c7": -34.44928998466869 + "points": { + "c1": 11.118591493188688, + "c2": 30.364442042623594, + "c3": -37.80935906322387, + "c4": -6.05884806649162, + "c5": 17.617490936013596, + "c6": 16.696084682799196, + "c7": -30.03033858067431 }, - "vertexSeeds": { - "c1": 7.982479174364449, - "c2": 8.437869594380071, - "c3": 8.030017235076858, - "c4": 8.192609887256463, - "c5": 8.726424587964726, - "c6": 8.440019675703363, - "c7": 8.641224276351114 + "offsets": { + "c1": 14.627831715210357, + "c2": 12.538141470180316, + "c3": 10.448451225150253, + "c4": 8.358760980120211, + "c5": 6.269070735090147, + "c6": 4.1793804900601055, + "c7": 2.0896902450300625 }, "rgb": [58, 15, 49] }, @@ -319443,23 +319443,23 @@ "year": 1792, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -8.00984811265635, - "c2": 23.024047983238802, - "c3": -20.00396927992465, - "c4": -2.990249267785977, - "c5": 9.094336254781489, - "c6": -24.608457439954417, - "c7": 14.660706613198982 + "points": { + "c1": 24.20927541901125, + "c2": 11.172580589263056, + "c3": -9.119789305631535, + "c4": 12.184154212667913, + "c5": -12.440039370226064, + "c6": -15.277383786184426, + "c7": -26.285246771822006 }, - "vertexSeeds": { - "c1": 2.5406337511904185, - "c2": 2.50993536595964, - "c3": 2.558066778747173, - "c4": 2.5594732500084683, - "c5": 2.6003417875167307, - "c6": 2.640102220372779, - "c7": 2.577030250332789 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104023, + "c3": 3.166897827092002, + "c4": 2.5335182616736014, + "c5": 1.9001386962552012, + "c6": 1.2667591308368007, + "c7": 0.6333795654184003 }, "rgb": [238, 201, 159] }, @@ -319470,23 +319470,23 @@ "year": 1792, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 32.13044391148116, - "c2": 7.186756066414752, - "c3": 25.130575638804615, - "c4": -21.95488844744873, - "c5": -19.492044316043454, - "c6": -20.79750577207306, - "c7": 17.704261709243077 + "points": { + "c1": -28.89483920834534, + "c2": 12.736161797121078, + "c3": -6.233926259826887, + "c4": -12.850946043722171, + "c5": -8.041661961771869, + "c6": 15.08676141307442, + "c7": -15.036340249437647 }, - "vertexSeeds": { - "c1": 8.842656482226944, - "c2": 8.95972273320617, - "c3": 8.714035391294773, - "c4": 8.61559295528324, - "c5": 8.873837863787237, - "c6": 8.716591724579036, - "c7": 9.042348902040183 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467416, + "c3": 11.188164586222834, + "c4": 8.950531668978277, + "c5": 6.712898751733697, + "c6": 4.4752658344891385, + "c7": 2.2376329172445586 }, "rgb": [222, 0, 59] }, @@ -319497,23 +319497,23 @@ "year": 1792, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 11.139396877389256, - "c2": -1.7565814436003357, - "c3": 15.675323821643094, - "c4": -16.740583226791145, - "c5": -26.767771349608665, - "c6": 28.291345279877877, - "c7": -27.950356295855514 + "points": { + "c1": 23.199331083584877, + "c2": 13.08723895504242, + "c3": 18.624328488360778, + "c4": 24.714778562311178, + "c5": 20.219808104194495, + "c6": -9.471572443880373, + "c7": -4.530969227396767 }, - "vertexSeeds": { - "c1": 3.2287003367661455, - "c2": 2.78706823887137, - "c3": 3.224192732375779, - "c4": 2.8258016024768238, - "c5": 2.9039583240744644, - "c6": 2.944544228168877, - "c7": 3.0103402200981 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429958, + "c3": 3.1206657420249653, + "c4": 2.496532593619972, + "c5": 1.872399445214979, + "c6": 1.248266296809986, + "c7": 0.624133148404993 }, "rgb": [222, 0, 59] }, @@ -319524,23 +319524,23 @@ "year": 1792, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 7.717750972918232, - "c2": -14.473622765507912, - "c3": 34.74646219059116, - "c4": -40.44712469017254, - "c5": 41.38121467680098, - "c6": 20.71499582921495, - "c7": -13.116775794122468 + "points": { + "c1": 2.369172177833022, + "c2": -22.645074925497916, + "c3": 20.179956238097034, + "c4": 40.843479445319005, + "c5": 3.6697551951136447, + "c6": 11.258003007163715, + "c7": -39.39500915469398 }, - "vertexSeeds": { - "c1": 5.531442972530907, - "c2": 5.239229364550346, - "c3": 5.194345775826352, - "c4": 5.562991790177628, - "c5": 5.317743247104291, - "c6": 5.373480463315795, - "c7": 5.192367848068155 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785026, + "c3": 6.773000462320841, + "c4": 5.418400369856677, + "c5": 4.063800277392513, + "c6": 2.709200184928328, + "c7": 1.354600092464164 }, "rgb": [77, 76, 132] }, @@ -319551,23 +319551,23 @@ "year": 1792, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 10.36427038168349, - "c2": 3.105519092074161, - "c3": -7.589864519269835, - "c4": 1.7563398836869695, - "c5": -5.408330147455061, - "c6": -10.094964722652712, - "c7": 19.229789209838465 + "points": { + "c1": -30.99644857854591, + "c2": 32.92030446055505, + "c3": -0.1850483202506794, + "c4": -21.50559312518644, + "c5": -3.7870151306652815, + "c6": -19.522398782151836, + "c7": 27.48867948179172 }, - "vertexSeeds": { - "c1": 5.0492650392144816, - "c2": 5.039079804920411, - "c3": 5.041866953305987, - "c4": 5.045184696620191, - "c5": 5.069975726107389, - "c6": 5.042232875164718, - "c7": 5.047095034294603 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457732, + "c3": 6.010171058714817, + "c4": 4.808136846971901, + "c5": 3.6061026352287464, + "c6": 2.404068423485831, + "c7": 1.2020342117429155 }, "rgb": [77, 76, 132] }, @@ -319578,23 +319578,23 @@ "year": 1792, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 4.186319242126647, - "c2": -15.752388081561065, - "c3": -12.3273859752533, - "c4": 8.210889796161851, - "c5": 9.311530938432377, - "c6": 9.645987674365173, - "c7": 17.037130636072895 + "points": { + "c1": -11.104313399736697, + "c2": -4.38543703253422, + "c3": 8.128411155920439, + "c4": -22.61084930862235, + "c5": 8.530804923701652, + "c6": 12.209622971969964, + "c7": 5.434817893610237 }, - "vertexSeeds": { - "c1": 6.233258096208907, - "c2": 6.503766288012781, - "c3": 6.188798470247021, - "c4": 6.38406531896959, - "c5": 6.449680496393547, - "c6": 6.0801672959682875, - "c7": 6.36274313457762 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514566, + "c3": 7.766990291262142, + "c4": 6.213592233009718, + "c5": 4.660194174757273, + "c6": 3.106796116504849, + "c7": 1.5533980582524245 }, "rgb": [86, 146, 138] }, @@ -319605,23 +319605,23 @@ "year": 1792, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 33.87152304136486, - "c2": -22.494580829998142, - "c3": 18.26510559805436, - "c4": 5.256648335439856, - "c5": 27.69008982933419, - "c6": 10.19552977541327, - "c7": 35.23731761026287 + "points": { + "c1": 20.755365111449613, + "c2": 16.60774451437259, + "c3": 30.240742571415048, + "c4": -21.028065033014467, + "c5": 17.550525249869594, + "c6": -37.5277808552706, + "c7": 0.5855298499893635 }, - "vertexSeeds": { - "c1": 0.33392728269770827, - "c2": 0.3307089034524158, - "c3": 0.3522904280009347, - "c4": 0.3620559421698578, - "c5": 0.36812700164044193, - "c6": 0.34853506109841315, - "c7": 0.3655786514801425 + "offsets": { + "c1": 0.6472491909385114, + "c2": 0.5547850208044387, + "c3": 0.4623208506703648, + "c4": 0.36985668053629206, + "c5": 0.27739251040221935, + "c6": 0.1849283402681466, + "c7": 0.09246417013407272 }, "rgb": [86, 146, 138] }, @@ -319632,23 +319632,23 @@ "year": 1792, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 18.535006658182418, - "c2": -2.0941403051155447, - "c3": 28.66483489334913, - "c4": -33.792569760118056, - "c5": 2.412195059411907, - "c6": 37.45010258467888, - "c7": 24.033555994950625 + "points": { + "c1": -4.677988547327423, + "c2": 34.09032565637005, + "c3": 19.676773333269814, + "c4": 34.459390482415536, + "c5": 21.02698254538008, + "c6": 1.2040451987551393, + "c7": 1.948841609258416 }, - "vertexSeeds": { - "c1": 7.856878203220879, - "c2": 8.061398453207765, - "c3": 7.514421669185723, - "c4": 7.501018625141143, - "c5": 7.672166838636635, - "c6": 8.099971664564858, - "c7": 7.629920010927251 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812755, + "c3": 9.662505779010642, + "c4": 7.73000462320851, + "c5": 5.7975034674063775, + "c6": 3.865002311604265, + "c7": 1.9325011558021326 }, "rgb": [58, 15, 49] }, @@ -319659,23 +319659,23 @@ "year": 1792, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 6.828067041916654, - "c2": 16.18110553765554, - "c3": -15.397509817823664, - "c4": -16.578939044136007, - "c5": -24.65486651573893, - "c6": -0.6750697701973891, - "c7": -16.437704252393985 + "points": { + "c1": 14.56454197303038, + "c2": 24.83846853564711, + "c3": 13.257832899507413, + "c4": 1.1456286115037955, + "c5": 11.419873705439421, + "c6": -1.5031519032676393, + "c7": -29.354958647077904 }, - "vertexSeeds": { - "c1": 2.6093715964085447, - "c2": 2.611889737894329, - "c3": 2.5650463357875295, - "c4": 2.598922761476691, - "c5": 2.592707028019329, - "c6": 2.5823921138549815, - "c7": 2.5800003351549385 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925103956, + "c3": 3.166897827092013, + "c4": 2.5335182616736054, + "c5": 1.9001386962551978, + "c6": 1.26675913083679, + "c7": 0.6333795654184077 }, "rgb": [77, 76, 132] }, @@ -319686,23 +319686,23 @@ "year": 1792, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 12.656990127454968, - "c2": -11.43078248827074, - "c3": 18.3358299746524, - "c4": 10.36709039215161, - "c5": 20.66456939692209, - "c6": -18.58264274729052, - "c7": -20.946761092372505 + "points": { + "c1": -4.804625360125325, + "c2": 5.767612311534293, + "c3": -13.800912127191186, + "c4": -14.382760611203082, + "c5": -0.9132553023919101, + "c6": 6.8526784387397655, + "c7": -21.343176280327405 }, - "vertexSeeds": { - "c1": 1.8298888003177012, - "c2": 1.8030400688961767, - "c3": 1.8872537515071013, - "c4": 1.89607983252865, - "c5": 1.83784404905328, - "c6": 1.789701822935614, - "c7": 1.8461878785680437 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022191, + "c3": 2.311604253351826, + "c4": 1.8492834026814606, + "c5": 1.3869625520110955, + "c6": 0.9246417013407303, + "c7": 0.46232085067036516 }, "rgb": [238, 201, 159] }, @@ -319713,23 +319713,23 @@ "year": 1792, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 7.622840461546446, - "c2": 24.59519562549086, - "c3": 13.099959399917587, - "c4": 43.07966842116028, - "c5": 9.358323052305167, - "c6": -5.687961572183717, - "c7": -17.434931905401356 + "points": { + "c1": 28.963589128108197, + "c2": 17.05289374922416, + "c3": 36.82198764033103, + "c4": -42.03605725834575, + "c5": 0.14320374228793042, + "c6": 42.01583152593082, + "c7": 8.997391819776588 }, - "vertexSeeds": { - "c1": 4.201548020072463, - "c2": 4.988377546569925, - "c3": 4.860264136962189, - "c4": 4.790600949531187, - "c5": 4.949364120435712, - "c6": 4.304540234064969, - "c7": 5.078909349452642 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739254, + "c3": 6.171983356449377, + "c4": 4.937586685159499, + "c5": 3.703190013869627, + "c6": 2.4687933425797497, + "c7": 1.2343966712898733 }, "rgb": [58, 15, 49] }, @@ -319740,23 +319740,23 @@ "year": 1792, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 2.0734095639950887, - "c2": -3.4250509261133395, - "c3": -17.935075298471027, - "c4": 22.972297646938372, - "c5": 26.183330827836947, - "c6": 10.847569329037192, - "c7": 24.694921148629362 + "points": { + "c1": -1.947726607845432, + "c2": -26.540204959555204, + "c3": 7.1303290448542995, + "c4": -17.501638829554995, + "c5": 15.645393141109814, + "c6": 9.35948718597492, + "c7": 12.873765500966151 }, - "vertexSeeds": { - "c1": 7.928860395039964, - "c2": 8.173946511173112, - "c3": 7.584383685864462, - "c4": 7.926510081618093, - "c5": 8.056068624264737, - "c6": 7.926387412300006, - "c7": 7.817332659078269 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973657, + "c3": 9.754969949144702, + "c4": 7.803975959315771, + "c5": 5.852981969486817, + "c6": 3.9019879796578856, + "c7": 1.9509939898289541 }, "rgb": [238, 201, 159] }, @@ -319767,23 +319767,23 @@ "year": 1792, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 10.799267662843853, - "c2": 23.98141639348016, - "c3": -2.5168140877425955, - "c4": 35.85884857509339, - "c5": -12.473344835851393, - "c6": 10.589517118546922, - "c7": -33.62796657126411 + "points": { + "c1": -30.636560655412925, + "c2": 6.075205657460181, + "c3": 28.6138521873917, + "c4": -9.96222807807819, + "c5": 25.44800851884451, + "c6": -31.111267680606563, + "c7": -12.960440150122942 }, - "vertexSeeds": { - "c1": 6.430865685484559, - "c2": 6.114753523838225, - "c3": 6.393386918065381, - "c4": 6.429643296254263, - "c5": 6.215152982928664, - "c6": 6.434906278936088, - "c7": 6.170316803532115 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.23717059639391, + "c3": 7.697642163661576, + "c4": 6.158113730929274, + "c5": 4.6185852981969395, + "c6": 3.079056865464637, + "c7": 1.5395284327323029 }, "rgb": [77, 76, 132] }, @@ -319794,23 +319794,23 @@ "year": 1792, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 24.50665727829945, - "c2": 14.426583098354165, - "c3": -6.622203169574615, - "c4": -25.597859990573006, - "c5": -11.748542143927246, - "c6": 17.644733615868248, - "c7": -14.825715840314583 + "points": { + "c1": -26.823111103994087, + "c2": 12.121561228284683, + "c3": -2.501339879729386, + "c4": -29.36579517927036, + "c5": -2.4836952395275205, + "c6": 22.139484764600624, + "c7": -18.294650727014904 }, - "vertexSeeds": { - "c1": 2.128140252224021, - "c2": 2.2145602954750414, - "c3": 2.169836267666813, - "c4": 2.0730152221942664, - "c5": 2.095338284030165, - "c6": 2.16141001321152, - "c7": 2.060452408314931 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.1900138696255222, + "c3": 2.6583448913546044, + "c4": 2.1266759130836794, + "c5": 1.5950069348127611, + "c6": 1.063337956541843, + "c7": 0.5316689782709249 }, "rgb": [238, 201, 159] }, @@ -319821,23 +319821,23 @@ "year": 1792, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -28.615304118892386, - "c2": -26.603163371380983, - "c3": -15.614839936613848, - "c4": -18.3966590582158, - "c5": -20.80146427086799, - "c6": 19.94748446282292, - "c7": -13.689198669457358 + "points": { + "c1": 23.2032035780097, + "c2": 26.34584995456376, + "c3": 1.7049457738140958, + "c4": -33.14823595296188, + "c5": 16.096504807950964, + "c6": 2.9675971034447173, + "c7": -11.360632411764612 }, - "vertexSeeds": { - "c1": 6.762975032988281, - "c2": 6.556233844092164, - "c3": 6.541631306230935, - "c4": 6.575787421796481, - "c5": 6.4181739330865435, - "c6": 6.566597205873714, - "c7": 6.489411746683288 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -319848,23 +319848,23 @@ "year": 1792, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -18.064037764081867, - "c2": 12.939686785857813, - "c3": -20.462593358588233, - "c4": 1.4471336236282504, - "c5": -6.154172103533586, - "c6": 24.636687584558207, - "c7": -23.423030379872255 + "points": { + "c1": -17.42248851663686, + "c2": -17.99294899140891, + "c3": -10.49825882770045, + "c4": 25.587429340815458, + "c5": -1.634152293330029, + "c6": -6.99838081167599, + "c7": 0.671248904322038 }, - "vertexSeeds": { - "c1": 5.176798792545703, - "c2": 4.083396894168829, - "c3": 4.0840632805702715, - "c4": 5.032394505006651, - "c5": 4.625800794527321, - "c6": 4.06890555240513, - "c7": 5.078960289798208 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [58, 15, 49] }, @@ -319875,23 +319875,23 @@ "year": 1792, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 24.834768957809825, - "c2": -20.814648600922073, - "c3": -20.25643406848217, - "c4": -25.71341568178419, - "c5": -24.98224953797046, - "c6": 6.624244256331391, - "c7": 3.3552826061639784 + "points": { + "c1": -13.411163269568057, + "c2": -17.9565161341192, + "c3": 13.493686891890622, + "c4": 2.5435081261157606, + "c5": -17.514033237151118, + "c6": 9.5227254103775, + "c7": -28.051344601781786 }, - "vertexSeeds": { - "c1": 8.332566404416763, - "c2": 8.254512892026062, - "c3": 7.918274142615518, - "c4": 8.062464896986821, - "c5": 7.958509499756751, - "c6": 8.302485839958988, - "c7": 8.249406167447948 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375858, + "c3": 9.98613037447987, + "c4": 7.988904299583916, + "c5": 5.991678224687929, + "c6": 3.994452149791942, + "c7": 1.997226074895954 }, "rgb": [86, 146, 138] }, @@ -319902,23 +319902,23 @@ "year": 1792, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -14.635112940677743, - "c2": 27.003663845389042, - "c3": 17.47429460366169, - "c4": 36.61308507082427, - "c5": -31.54174121822814, - "c6": -25.50725622124044, - "c7": -22.364297473570318 + "points": { + "c1": 16.720195065319196, + "c2": 34.152854557357585, + "c3": -11.029509793111743, + "c4": 12.550562709831127, + "c5": -33.393554482130604, + "c6": -16.025198073147482, + "c7": -16.667259448240248 }, - "vertexSeeds": { - "c1": 3.737228905829326, - "c2": 3.4718421906704964, - "c3": 3.627460386371069, - "c4": 3.834822000650081, - "c5": 3.405556677175355, - "c6": 3.827729080436824, - "c7": 3.5532367596221803 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325938, + "c3": 4.785020804438279, + "c4": 3.828016643550625, + "c5": 2.8710124826629673, + "c6": 1.9140083217753125, + "c7": 0.9570041608876582 }, "rgb": [238, 201, 159] }, @@ -319929,23 +319929,23 @@ "year": 1792, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": -14.097277657952013, - "c2": 36.25043201604274, - "c3": 6.830579192751522, - "c4": 39.555526390333924, - "c5": -13.822013416387101, - "c6": 17.766446454284647, - "c7": 5.574075196795043 + "points": { + "c1": -23.653127243333945, + "c2": 33.67543836479473, + "c3": -24.121957631724328, + "c4": -48.0430152708273, + "c5": 13.173751559882461, + "c6": 44.316280424430076, + "c7": -0.9930011804450061 }, - "vertexSeeds": { - "c1": 3.631862703354539, - "c2": 3.236947569874342, - "c3": 3.0400334940973246, - "c4": 3.411370447828018, - "c5": 3.0911398359421267, - "c6": 3.506820167134762, - "c7": 3.543275311254577 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883494, + "c3": 4.530744336569578, + "c4": 3.6245954692556657, + "c5": 2.718446601941749, + "c6": 1.8122977346278328, + "c7": 0.9061488673139164 }, "rgb": [238, 201, 159] }, @@ -319956,23 +319956,23 @@ "year": 1792, "resistanceReported": false, "duration": 41299200, - "curveSeeds": { - "c1": 46.92659960446157, - "c2": 28.452703174889535, - "c3": -6.107795286184334, - "c4": -42.33953041193307, - "c5": -42.63052666599459, - "c6": 21.960691684454915, - "c7": -15.287584126128046 + "points": { + "c1": 5.472301313527929, + "c2": 43.41265254354778, + "c3": 27.18857859063516, + "c4": -6.3859191533185395, + "c5": -11.544798788615573, + "c6": -33.870692843784255, + "c7": 39.31824702804842 }, - "vertexSeeds": { - "c1": 3.586544497434487, - "c2": 3.575198329268302, - "c3": 3.3634829232912917, - "c4": 3.421110168876929, - "c5": 3.507836716246019, - "c6": 3.329344420605147, - "c7": 3.4935755235141683 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521501, + "c3": 4.322699953767911, + "c4": 3.4581599630143307, + "c5": 2.5936199722607505, + "c6": 1.7290799815071707, + "c7": 0.8645399907535799 }, "rgb": [222, 0, 59] }, @@ -319983,23 +319983,23 @@ "year": 1792, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 3.3322229399305243, - "c2": -3.7669423170954985, - "c3": -0.27746181017162286, - "c4": 28.26675332258175, - "c5": 1.934579414426537, - "c6": -6.1218035885599775, - "c7": -16.904121124103536 + "points": { + "c1": -30.154292272580353, + "c2": 28.896084754086758, + "c3": -32.943055509882385, + "c4": 23.106904457020207, + "c5": 21.820249995264994, + "c6": -2.6210246975162477, + "c7": -11.735078615494356 }, - "vertexSeeds": { - "c1": 3.2846684727031468, - "c2": 3.143888630150309, - "c3": 3.205503993340049, - "c4": 3.1955500900461855, - "c5": 3.2792484702478824, - "c6": 3.197221169091176, - "c7": 3.186956192060902 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877949, + "c3": 3.952843273231626, + "c4": 3.162274618585303, + "c5": 2.3717059639389797, + "c6": 1.5811373092926464, + "c7": 0.7905686546463232 }, "rgb": [58, 15, 49] }, @@ -320010,23 +320010,23 @@ "year": 1792, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -31.208415320431648, - "c2": 8.106694305616045, - "c3": 19.125112040656568, - "c4": -26.424493967903175, - "c5": 18.55305358025516, - "c6": -19.701729209336897, - "c7": 34.691745632639105 + "points": { + "c1": -33.054519386554524, + "c2": -8.800193957389109, + "c3": -17.614325915077632, + "c4": -0.5472954802746912, + "c5": 29.25954152796468, + "c6": 22.580723253084685, + "c7": -4.348335038151454 }, - "vertexSeeds": { - "c1": 1.0686528497409327, - "c2": 1.0686528497409327, - "c3": 1.0686528497409327, - "c4": 1.0686528497409327, - "c5": 1.0686528497409327, - "c6": 1.0686528497409327, - "c7": 1.0686528497409327 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -320037,23 +320037,23 @@ "year": 1792, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 0.9596202375335778, - "c2": -21.215331970880186, - "c3": 9.512214937497895, - "c4": 4.776380157754126, - "c5": -5.45570773460652, - "c6": -7.402683888340185, - "c7": -10.408358047475922 + "points": { + "c1": -20.037125568682043, + "c2": 6.11449005532139, + "c3": 2.121726797810531, + "c4": 33.0878319081238, + "c5": -21.99233466818089, + "c6": -26.151328614034203, + "c7": 26.193029405096667 }, - "vertexSeeds": { - "c1": 4.645485599680935, - "c2": 4.638717263457444, - "c3": 4.489924857697749, - "c4": 4.698884374828165, - "c5": 4.603457997480354, - "c6": 4.587514020919562, - "c7": 4.5394891431464615 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773915, + "c3": 5.6171983356449395, + "c4": 4.4937586685159445, + "c5": 3.370319001386968, + "c6": 2.2468793342579723, + "c7": 1.1234396671289757 }, "rgb": [222, 0, 59] }, @@ -320064,23 +320064,23 @@ "year": 1792, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -5.840018907204701, - "c2": 1.1647162590736286, - "c3": 24.1187307863444, - "c4": 32.81473046346839, - "c5": 21.449078117183873, - "c6": 28.065680155023458, - "c7": -8.109315149186944 + "points": { + "c1": -31.184489875432757, + "c2": -31.248305795854918, + "c3": 13.493268180996566, + "c4": 19.84589840781296, + "c5": -30.731790425349274, + "c6": 23.82370250669848, + "c7": -9.545749901660436 }, - "vertexSeeds": { - "c1": 7.381874332125762, - "c2": 7.966781778358358, - "c3": 7.9415910588065906, - "c4": 7.857641316261776, - "c5": 7.520769809999585, - "c6": 7.984534699641539, - "c7": 7.119851492781428 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.56726768377254, + "c3": 9.639389736477119, + "c4": 7.711511789181684, + "c5": 5.783633841886264, + "c6": 3.855755894590842, + "c7": 1.927877947295421 }, "rgb": [58, 15, 49] }, @@ -320091,23 +320091,23 @@ "year": 1792, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 24.04456276986264, - "c2": 13.762502403665753, - "c3": -18.400284256858637, - "c4": 4.134155971152218, - "c5": 1.5250645927483752, - "c6": -19.02689308050758, - "c7": -23.212503668138023 + "points": { + "c1": 4.003571106113792, + "c2": 9.702553747383089, + "c3": 16.496324632355414, + "c4": -2.2183183370179123, + "c5": -8.452933428615598, + "c6": 2.6462162609954696, + "c7": -17.55568939977411 }, - "vertexSeeds": { - "c1": 4.91580310880829, - "c2": 4.91580310880829, - "c3": 4.91580310880829, - "c4": 4.91580310880829, - "c5": 4.91580310880829, - "c6": 4.91580310880829, - "c7": 4.91580310880829 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -320118,23 +320118,23 @@ "year": 1792, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -10.284003798920043, - "c2": 27.87381900906022, - "c3": 21.632952705954168, - "c4": -33.26869649400089, - "c5": -0.7019036099927973, - "c6": 27.078642808703343, - "c7": -13.183726546840209 + "points": { + "c1": -18.38688679339986, + "c2": -18.499980364345365, + "c3": -31.57741533094636, + "c4": -32.1785020819114, + "c5": 39.5857354173988, + "c6": 21.396783559972235, + "c7": -6.368722136638553 }, - "vertexSeeds": { - "c1": 1.3336563147568397, - "c2": 1.4076836161686277, - "c3": 1.3196561141893077, - "c4": 1.4572109990697428, - "c5": 1.367713932250446, - "c6": 1.4049013346798132, - "c7": 1.4651312249102613 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097088, + "c3": 1.779935275080908, + "c4": 1.4239482200647244, + "c5": 1.067961165048544, + "c6": 0.7119741100323638, + "c7": 0.3559870550161803 }, "rgb": [77, 76, 132] }, @@ -320145,23 +320145,23 @@ "year": 1792, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -15.363980850511187, - "c2": -0.2909418677880353, - "c3": -13.223446737018179, - "c4": -27.415624598881376, - "c5": 26.481442646355283, - "c6": -23.31664100696387, - "c7": 33.20657095641296 + "points": { + "c1": -9.993438899513087, + "c2": 19.378146492375556, + "c3": -6.610416844828059, + "c4": -3.3466323723408706, + "c5": -17.974058374413545, + "c6": -18.877417918221475, + "c7": 1.849654258480058 }, - "vertexSeeds": { - "c1": 3.832465982786405, - "c2": 3.929253269080573, - "c3": 3.8717150683200945, - "c4": 4.050478987185325, - "c5": 3.90639813743483, - "c6": 3.8949086801287036, - "c7": 3.875030143008465 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.85298196948682, + "c3": 4.877484974572357, + "c4": 3.9019879796578834, + "c5": 2.92649098474341, + "c6": 1.950993989828947, + "c7": 0.9754969949144735 }, "rgb": [238, 201, 159] }, @@ -320172,23 +320172,23 @@ "year": 1792, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -28.06749059188668, - "c2": 20.002606062953074, - "c3": 2.15419553562948, - "c4": -27.411270903682052, - "c5": -22.74180434394107, - "c6": -21.351038780165617, - "c7": 23.72654989543889 + "points": { + "c1": 12.353861341609544, + "c2": -1.1214868836057192, + "c3": -5.934268270346127, + "c4": -21.216365305097465, + "c5": -30.464805293051928, + "c6": 18.088913800451415, + "c7": -11.70984177044825 }, - "vertexSeeds": { - "c1": 9.11840572009185, - "c2": 9.059135480861057, - "c3": 9.130721318522482, - "c4": 9.140071647654674, - "c5": 9.114135457478431, - "c6": 9.052171874425271, - "c7": 9.069295051795942 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984757, + "c3": 10.910772075820647, + "c4": 8.728617660656537, + "c5": 6.546463245492331, + "c6": 4.364308830328221, + "c7": 2.1821544151641104 }, "rgb": [238, 201, 159] }, @@ -320199,23 +320199,23 @@ "year": 1792, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -9.763996890226949, - "c2": -15.767220783723271, - "c3": -22.791323154555375, - "c4": -6.1307477675861115, - "c5": -4.775435317676397, - "c6": 28.132669080625448, - "c7": -5.783288356027015 + "points": { + "c1": 28.79109540370314, + "c2": 22.366035573264284, + "c3": -7.755308295674411, + "c4": 14.215393344934121, + "c5": 30.512377908108903, + "c6": -28.916706747056676, + "c7": -25.676586034913377 }, - "vertexSeeds": { - "c1": 6.2658168670287, - "c2": 6.180380463326808, - "c3": 6.140038735784837, - "c4": 6.221679058047343, - "c5": 6.238257881927038, - "c6": 6.246379752052249, - "c7": 6.2005499191825315 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112336, + "c3": 7.535829865926939, + "c4": 6.028663892741592, + "c5": 4.521497919556193, + "c6": 3.014331946370796, + "c7": 1.507165973185398 }, "rgb": [77, 76, 132] }, @@ -320226,23 +320226,23 @@ "year": 1792, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 13.524010850601773, - "c2": -9.938312743779427, - "c3": -8.510687970038532, - "c4": 11.656275925603506, - "c5": 28.464163569238973, - "c6": -27.975657417661072, - "c7": -9.513104527376584 + "points": { + "c1": 26.153934604620655, + "c2": 25.881277814378674, + "c3": 30.69198294176518, + "c4": -5.247896543663291, + "c5": -1.861203483582262, + "c6": 11.686471628482717, + "c7": -25.155266123768353 }, - "vertexSeeds": { - "c1": 4.326613003004048, - "c2": 4.443504627230074, - "c3": 4.261776085173704, - "c4": 4.256392956269398, - "c5": 4.397345374878994, - "c6": 4.657748746884107, - "c7": 4.615765996935525 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975039, + "c3": 5.732778548312528, + "c4": 4.586222838650026, + "c5": 3.439667128987516, + "c6": 2.293111419325013, + "c7": 1.1465557096625099 }, "rgb": [86, 146, 138] }, @@ -320253,23 +320253,23 @@ "year": 1793, "resistanceReported": false, "duration": 43804800, - "curveSeeds": { - "c1": -20.899345582099315, - "c2": 15.561244828728292, - "c3": -57.881192817049275, - "c4": -42.436093506903816, - "c5": -28.052585924045488, - "c6": 40.15461867022778, - "c7": 9.64841478724125 + "points": { + "c1": -33.27804248849936, + "c2": 45.15555076572748, + "c3": 27.55419394904493, + "c4": -13.263337747402112, + "c5": -27.693479540457908, + "c6": 12.986124824811583, + "c7": 55.85961738068336 }, - "vertexSeeds": { - "c1": 2.9587783154651652, - "c2": 2.768471503906284, - "c3": 2.9064343704317452, - "c4": 2.9987287147318713, - "c5": 2.811402518760967, - "c6": 2.8010897273746163, - "c7": 2.8271813538632244 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395282, + "c3": 3.6754507628294073, + "c4": 2.9403606102635242, + "c5": 2.205270457697641, + "c6": 1.4701803051317663, + "c7": 0.7350901525658832 }, "rgb": [222, 0, 59] }, @@ -320280,23 +320280,23 @@ "year": 1792, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 20.524791747398552, - "c2": 4.239732692332147, - "c3": 7.814670970028494, - "c4": -17.299969299167266, - "c5": -5.19030646317562, - "c6": 20.524526425995127, - "c7": -20.76998948175466 + "points": { + "c1": 16.78398602581281, + "c2": -7.9578756649792695, + "c3": 16.922837714799194, + "c4": 6.543696969204774, + "c5": -17.997908312779288, + "c6": -16.91732755855177, + "c7": 7.495925434256115 }, - "vertexSeeds": { - "c1": 1.0894255693765547, - "c2": 1.0905721401320367, - "c3": 1.1023197208261006, - "c4": 1.0935725746324623, - "c5": 1.0912914485734602, - "c6": 1.0935621268497415, - "c7": 1.1050081077090124 + "offsets": { + "c1": 1.8770226537216828, + "c2": 1.6088765603328652, + "c3": 1.340730466944061, + "c4": 1.0725843735552434, + "c5": 0.8044382801664393, + "c6": 0.5362921867776217, + "c7": 0.26814609338881756 }, "rgb": [77, 76, 132] }, @@ -320307,23 +320307,23 @@ "year": 1792, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 3.1042686179083034, - "c2": 10.942397005277599, - "c3": 8.328318395332246, - "c4": -25.931358099072582, - "c5": -17.196025741998774, - "c6": 11.314581066770202, - "c7": -6.077036923165551 + "points": { + "c1": -6.161977345799144, + "c2": -15.016955184242601, + "c3": -5.228549728551872, + "c4": 4.562584392725931, + "c5": 10.686031520673168, + "c6": 14.637555956525496, + "c7": -9.24562445293212 }, - "vertexSeeds": { - "c1": 4.583117908768939, - "c2": 4.525184343138441, - "c3": 4.456598900582675, - "c4": 4.534405972733332, - "c5": 4.564365766420713, - "c6": 4.669569552963439, - "c7": 4.582196228430358 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854375, + "c3": 5.663430420711972, + "c4": 4.530744336569583, + "c5": 3.3980582524271807, + "c6": 2.2653721682847916, + "c7": 1.1326860841424025 }, "rgb": [77, 76, 132] }, @@ -320334,23 +320334,23 @@ "year": 1792, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 10.31841349531065, - "c2": -21.0643969312909, - "c3": -4.465127963377377, - "c4": 2.426019833692802, - "c5": 12.7363037757167, - "c6": -16.043628533188254, - "c7": 1.073919498342626 + "points": { + "c1": -12.058752002685988, + "c2": 15.555878051897714, + "c3": -29.763528984594025, + "c4": -26.844220323040656, + "c5": 1.6818757791518166, + "c6": -13.580161960483487, + "c7": 22.010171588020214 }, - "vertexSeeds": { - "c1": 4.059969256227296, - "c2": 4.088014849951511, - "c3": 3.948234140865115, - "c4": 3.876075966979411, - "c5": 3.7701918046634946, - "c6": 3.7740134732889197, - "c7": 4.0919650022339935 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567262, + "c3": 4.923717059639391, + "c4": 3.9389736477115083, + "c5": 2.954230235783637, + "c6": 1.9694868238557541, + "c7": 0.9847434119278826 }, "rgb": [58, 15, 49] }, @@ -320361,23 +320361,23 @@ "year": 1792, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -25.756172071310157, - "c2": 24.88002560011679, - "c3": 9.780835747057626, - "c4": 8.296193624833105, - "c5": 14.821373124207877, - "c6": 11.680606948075212, - "c7": -5.110849660739724 + "points": { + "c1": 26.941092544421156, + "c2": -25.49217921782251, + "c3": -19.85190513996807, + "c4": 10.108660400385372, + "c5": -20.985451317536764, + "c6": 28.946497731985506, + "c7": 28.81253522176593 }, - "vertexSeeds": { - "c1": 10.608060212132814, - "c2": 10.566451896772115, - "c3": 10.55442055686904, - "c4": 10.543180175689336, - "c5": 10.565805335989358, - "c6": 10.591239216318122, - "c7": 10.474608427358907 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081787, + "c3": 12.690707350901594, + "c4": 10.152565880721244, + "c5": 7.614424410540893, + "c6": 5.076282940360544, + "c7": 2.5381414701803493 }, "rgb": [58, 15, 49] }, @@ -320388,23 +320388,23 @@ "year": 1792, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 17.54397280694301, - "c2": 3.2729677893482467, - "c3": 19.377462371931145, - "c4": 10.616300753845628, - "c5": 18.964653230318966, - "c6": 18.245065266915724, - "c7": 21.885337801243125 + "points": { + "c1": -7.674009634528723, + "c2": -18.8793010845157, + "c3": -10.00000025353404, + "c4": 21.572305581184374, + "c5": -14.762099063511911, + "c6": 25.68762100671458, + "c7": -24.770766286937405 }, - "vertexSeeds": { - "c1": 2.6367454077660697, - "c2": 2.6413658305636263, - "c3": 2.6922807521896184, - "c4": 2.612477062085317, - "c5": 2.649141698698968, - "c6": 2.615314222124352, - "c7": 2.6777264149701154 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692557, + "c4": 2.588996763754045, + "c5": 1.941747572815534, + "c6": 1.2944983818770226, + "c7": 0.6472491909385113 }, "rgb": [58, 15, 49] }, @@ -320415,23 +320415,23 @@ "year": 1792, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -5.123907115668132, - "c2": -0.851649787206405, - "c3": 10.271460143087829, - "c4": 12.214372778518182, - "c5": -3.038432721199875, - "c6": 11.52988091858969, - "c7": -5.948238427596969 + "points": { + "c1": -22.721009715278026, + "c2": 7.231993623523316, + "c3": 6.908755806966276, + "c4": 14.808467406517472, + "c5": -3.66146381756581, + "c6": -0.8468009019217888, + "c7": -25.92910925890787 }, - "vertexSeeds": { - "c1": 6.706136455690709, - "c2": 6.543212127604007, - "c3": 6.90821453315792, - "c4": 6.859916556875018, - "c5": 6.5976735718718915, - "c6": 6.545917127574553, - "c7": 6.509738533042377 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -320442,23 +320442,23 @@ "year": 1792, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 24.011641032146915, - "c2": 2.1420919697758762, - "c3": -14.21056291238615, - "c4": -18.178659887746235, - "c5": 21.369391808914283, - "c6": 28.70609120326215, - "c7": -5.806446130576596 + "points": { + "c1": 17.826470249607265, + "c2": 5.081141694363314, + "c3": -8.086502258224296, + "c4": 7.773823629865003, + "c5": -26.550946049940453, + "c6": -8.537079924275726, + "c7": -6.97401032740564 }, - "vertexSeeds": { - "c1": 5.236951865953999, - "c2": 5.252759820864862, - "c3": 5.020738149637649, - "c4": 5.252401099954583, - "c5": 5.347653971828681, - "c6": 5.109919994413396, - "c7": 5.297787058933946 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181697, + "c3": 6.426259824318071, + "c4": 5.141007859454459, + "c5": 3.8557558945908483, + "c6": 2.5705039297272294, + "c7": 1.2852519648636114 }, "rgb": [222, 0, 59] }, @@ -320469,23 +320469,23 @@ "year": 1792, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -38.737186738148154, - "c2": 1.9281369196232845, - "c3": 35.830976081122316, - "c4": -15.456665356327154, - "c5": -33.335256896453515, - "c6": 23.84249497279822, - "c7": 25.86481992047726 + "points": { + "c1": -18.67773339694744, + "c2": 25.803684382493245, + "c3": 31.69694495703368, + "c4": 7.313815410038799, + "c5": -41.80385446428535, + "c6": -35.15208834587942, + "c7": 28.024854164123155 }, - "vertexSeeds": { - "c1": 4.132708056075241, - "c2": 4.309432733767406, - "c3": 4.336308900973987, - "c4": 4.315021800677115, - "c5": 4.448843119741054, - "c6": 4.227130627424804, - "c7": 3.973363340965971 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572818, + "c3": 5.501618122977344, + "c4": 4.401294498381876, + "c5": 3.300970873786409, + "c6": 2.2006472491909417, + "c7": 1.1003236245954675 }, "rgb": [238, 201, 159] }, @@ -320496,23 +320496,23 @@ "year": 1792, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": -30.640912021166038, - "c2": -0.8796337108490064, - "c3": -27.16472061635899, - "c4": -7.171835976753215, - "c5": 32.43223124007041, - "c6": -0.72028335648114, - "c7": 6.248792156145065 + "points": { + "c1": -38.706305379081, + "c2": -35.91420836603862, + "c3": -32.76955357002716, + "c4": 21.471474097866476, + "c5": -35.09468441445105, + "c6": -35.178189421194475, + "c7": 26.92471824851326 }, - "vertexSeeds": { - "c1": 5.799127394899955, - "c2": 5.939176664676539, - "c3": 5.933786020818421, - "c4": 5.936397071533724, - "c5": 5.8453439111439245, - "c6": 5.890996846155339, - "c7": 5.866254713370113 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348097, + "c3": 7.096625057790116, + "c4": 5.677300046232064, + "c5": 4.257975034674084, + "c6": 2.838650023116032, + "c7": 1.4193250115580514 }, "rgb": [222, 0, 59] }, @@ -320523,23 +320523,23 @@ "year": 1792, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": 4.502821126672686, - "c2": -3.7615841850284255, - "c3": 44.32087616333109, - "c4": 22.73325188266527, - "c5": 10.913649123890139, - "c6": 3.4883405048357616, - "c7": 34.56465988239712 + "points": { + "c1": 42.37346177354958, + "c2": 35.579169103101265, + "c3": -28.719903032334297, + "c4": 2.4173529939019645, + "c5": 32.29917505002294, + "c6": -9.754197047187269, + "c7": 35.46066658129 }, - "vertexSeeds": { - "c1": 2.616541942065953, - "c2": 2.628337187881253, - "c3": 2.4022387848960465, - "c4": 2.3853702240886907, - "c5": 2.537824753374602, - "c6": 2.4564493653170945, - "c7": 2.5343653605275076 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.8557558945908488, + "c3": 3.2131299121590375, + "c4": 2.5705039297272325, + "c5": 1.9278779472954213, + "c6": 1.2852519648636163, + "c7": 0.6426259824318048 }, "rgb": [77, 76, 132] }, @@ -320550,23 +320550,23 @@ "year": 1792, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 0.717234618787213, - "c2": -23.813630215955637, - "c3": -18.405264088709146, - "c4": -9.972985078718295, - "c5": 27.41433498433199, - "c6": -13.25474716255345, - "c7": 26.075437925327247 + "points": { + "c1": 15.370786976639916, + "c2": 7.844190820400602, + "c3": -9.303124748210884, + "c4": -17.12411360325378, + "c5": -7.23447922705466, + "c6": -27.95030241333368, + "c7": -16.72823909765032 }, - "vertexSeeds": { - "c1": 7.120538196781501, - "c2": 6.37610043125107, - "c3": 7.12904688696743, - "c4": 7.022020157725909, - "c5": 6.411002499826386, - "c6": 6.978389577385995, - "c7": 6.311548085922369 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.34674063800278, + "c3": 8.62228386500231, + "c4": 6.897827092001853, + "c5": 5.173370319001384, + "c6": 3.4489135460009264, + "c7": 1.7244567730004703 }, "rgb": [77, 76, 132] }, @@ -320577,23 +320577,23 @@ "year": 1792, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 21.759719522789553, - "c2": 32.59044829051879, - "c3": 4.734161919684865, - "c4": 9.993342663086494, - "c5": -16.279541182887233, - "c6": 9.110038802212337, - "c7": 25.15258769865173 + "points": { + "c1": 23.127172461342553, + "c2": -28.078821898230515, + "c3": 11.88395888310054, + "c4": -34.511682451928486, + "c5": -6.299866781101908, + "c6": -0.9743260000669096, + "c7": -25.11391505019224 }, - "vertexSeeds": { - "c1": 3.5258215300634608, - "c2": 3.3787265836304203, - "c3": 3.4635551769395136, - "c4": 3.375649278182386, - "c5": 3.286292693522036, - "c6": 3.3469466395382046, - "c7": 3.377548190336989 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521503, + "c3": 4.322699953767914, + "c4": 3.458159963014335, + "c5": 2.593619972260746, + "c6": 1.7290799815071676, + "c7": 0.8645399907535889 }, "rgb": [86, 146, 138] }, @@ -320604,23 +320604,23 @@ "year": 1792, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": -40.66737548346982, - "c2": -18.828212208430724, - "c3": -36.40160319963152, - "c4": 9.354208886343095, - "c5": -17.144356308044845, - "c6": -20.580854280577153, - "c7": -2.184930459183903 + "points": { + "c1": 32.69068739958549, + "c2": -31.540282183271493, + "c3": 33.7710648709211, + "c4": -26.46486605239773, + "c5": -29.97953712417584, + "c6": -26.705660089523878, + "c7": -45.51185914722984 }, - "vertexSeeds": { - "c1": 3.763810811419511, - "c2": 3.251408711043523, - "c3": 3.0453168524920895, - "c4": 3.5319010593063416, - "c5": 3.6611835822394765, - "c6": 3.319221189148015, - "c7": 3.746965793876198 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963941, + "c3": 4.576976421636615, + "c4": 3.6615811373092937, + "c5": 2.7461858529819683, + "c6": 1.8307905686546468, + "c7": 0.9153952843273252 }, "rgb": [58, 15, 49] }, @@ -320631,23 +320631,23 @@ "year": 1792, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 0.7419441822155477, - "c2": -29.6272854005251, - "c3": -29.643892168144795, - "c4": 5.6587235713689665, - "c5": -27.03482910026564, - "c6": -14.257598183492181, - "c7": -2.7040442063570325 + "points": { + "c1": 25.558781174463668, + "c2": 25.638072354770756, + "c3": -14.419690774824975, + "c4": 33.78123313265568, + "c5": -20.317192123351134, + "c6": 16.78135925031944, + "c7": -32.54936729648718 }, - "vertexSeeds": { - "c1": 4.353558991159692, - "c2": 4.197263790877896, - "c3": 4.15506818311165, - "c4": 4.608891786324576, - "c5": 4.507946121723544, - "c6": 4.680794938338276, - "c7": 4.364774666309825 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773923, + "c3": 5.617198335644934, + "c4": 4.493758668515946, + "c5": 3.3703190013869575, + "c6": 2.2468793342579767, + "c7": 1.1234396671289884 }, "rgb": [238, 201, 159] }, @@ -320658,23 +320658,23 @@ "year": 1792, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 15.09511514408226, - "c2": -17.086965364018184, - "c3": 18.569039838849168, - "c4": 0.5838418669300474, - "c5": 6.821583994657697, - "c6": -1.0094878350843146, - "c7": -15.275189236210087 + "points": { + "c1": -4.848407784879061, + "c2": 7.1327625027193555, + "c3": 23.240507162207027, + "c4": -4.066860180151192, + "c5": -12.3444239473573, + "c6": 20.84905710055791, + "c7": 24.059747327122192 }, - "vertexSeeds": { - "c1": 5.6324438870200275, - "c2": 5.512560012781831, - "c3": 5.946137798247887, - "c4": 5.469060699430856, - "c5": 5.364099799876238, - "c6": 5.920799455048906, - "c7": 5.837260140629781 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [86, 146, 138] }, @@ -320685,23 +320685,23 @@ "year": 1793, "resistanceReported": false, "duration": 41990400, - "curveSeeds": { - "c1": 4.0345817797273895, - "c2": -49.687611513355066, - "c3": 22.05677800735286, - "c4": -3.1316855571431788, - "c5": 26.524797919203166, - "c6": -9.477884952374119, - "c7": 46.570740403692554 + "points": { + "c1": -25.848113426046083, + "c2": 10.60822397122216, + "c3": -22.047553578044806, + "c4": -35.494105829832165, + "c5": 56.884947986169706, + "c6": 8.730804642122536, + "c7": 54.411720794970904 }, - "vertexSeeds": { - "c1": 1.9285670025176205, - "c2": 1.950980463854422, - "c3": 1.889877530589652, - "c4": 2.0149238135548306, - "c5": 1.96242207222581, - "c6": 2.0285578686963666, - "c7": 1.9368761909529875 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635207, + "c3": 2.4503005085529366, + "c4": 1.9602404068423471, + "c5": 1.470180305131763, + "c6": 0.9801202034211736, + "c7": 0.49006010171058406 }, "rgb": [58, 15, 49] }, @@ -320712,23 +320712,23 @@ "year": 1792, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -26.25068893946476, - "c2": -13.184339249054482, - "c3": 39.955455625023205, - "c4": 9.486064851317735, - "c5": 13.80948681798332, - "c6": 28.64764013347525, - "c7": 35.56828592106406 + "points": { + "c1": 6.150499673335844, + "c2": 21.022035749719898, + "c3": -9.041557976227452, + "c4": 38.45507101339186, + "c5": -29.234044421621604, + "c6": -1.789504484706832, + "c7": -38.416235762700275 }, - "vertexSeeds": { - "c1": 5.245752901750802, - "c2": 5.116974657334504, - "c3": 5.001111722576724, - "c4": 5.23177193093785, - "c5": 5.020349870096934, - "c6": 5.052699902584265, - "c7": 5.5191066322210025 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.04438280166436, + "c3": 6.703652334720289, + "c4": 5.362921867776234, + "c5": 4.02219140083218, + "c6": 2.681460933888109, + "c7": 1.3407304669440545 }, "rgb": [222, 0, 59] }, @@ -320739,23 +320739,23 @@ "year": 1792, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -4.0868211268838195, - "c2": -23.988383396054548, - "c3": -19.92460296280136, - "c4": 1.7274234360606613, - "c5": -11.992216699083087, - "c6": -24.376954734665947, - "c7": 12.610118393516153 + "points": { + "c1": -12.47581081233196, + "c2": -25.377975868132282, + "c3": -24.91582544813017, + "c4": -33.72551107106226, + "c5": 3.483941447161463, + "c6": -15.273875819675151, + "c7": 4.432365017584722 }, - "vertexSeeds": { - "c1": 8.607512953367877, - "c2": 8.607512953367877, - "c3": 8.607512953367877, - "c4": 8.607512953367877, - "c5": 8.607512953367877, - "c6": 8.607512953367877, - "c7": 8.607512953367877 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -320766,23 +320766,23 @@ "year": 1792, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -3.1146442440014397, - "c2": -12.041924380496514, - "c3": 21.550003091253963, - "c4": 36.91122598619017, - "c5": -13.781895641366319, - "c6": -7.120453411724714, - "c7": 1.8328777341366518 + "points": { + "c1": 0.9470298565442192, + "c2": 22.829049973161517, + "c3": 25.222240130607737, + "c4": -0.1732481533862682, + "c5": -33.84897888658937, + "c6": 38.32096505043791, + "c7": -12.921985477068851 }, - "vertexSeeds": { - "c1": 3.798588515924339, - "c2": 3.9595571167426398, - "c3": 3.9770803406237105, - "c4": 3.921584593405225, - "c5": 3.9905743715177446, - "c6": 3.8685888883008914, - "c7": 3.6127214519433797 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366157, + "c3": 4.808136846971802, + "c4": 3.8465094775774404, + "c5": 2.8848821081830787, + "c6": 1.9232547387887164, + "c7": 0.961627369394362 }, "rgb": [58, 15, 49] }, @@ -320793,23 +320793,23 @@ "year": 1792, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 18.70536011018155, - "c2": -12.501636765283703, - "c3": -18.75448867743193, - "c4": 15.64710984606728, - "c5": 31.61823243647045, - "c6": -5.248196348731092, - "c7": -2.704325801195882 + "points": { + "c1": -25.229281934807943, + "c2": 26.734620806534195, + "c3": 16.64217790701482, + "c4": -8.647639791034084, + "c5": -25.040609837554364, + "c6": 25.784978164072363, + "c7": -18.613239971668246 }, - "vertexSeeds": { - "c1": 5.136927173796247, - "c2": 4.7232103072040745, - "c3": 4.526421268311412, - "c4": 4.772381727051965, - "c5": 5.176208535123989, - "c6": 5.0789252187685126, - "c7": 3.9903981664086716 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900138, + "c3": 6.264447526583449, + "c4": 5.011558021266759, + "c5": 3.758668515950069, + "c6": 2.5057790106333795, + "c7": 1.2528895053166897 }, "rgb": [77, 76, 132] }, @@ -320820,23 +320820,23 @@ "year": 1792, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 25.755422816667718, - "c2": 6.116497312223522, - "c3": 6.077134049462586, - "c4": -16.560830878239027, - "c5": 39.3158144827743, - "c6": 4.810499858581785, - "c7": -28.26011113971179 + "points": { + "c1": -13.13909016341696, + "c2": 41.358391735707826, + "c3": 26.80303894315344, + "c4": 44.423890419548044, + "c5": -38.91947827443089, + "c6": 21.24579559547655, + "c7": 18.965191459832425 }, - "vertexSeeds": { - "c1": 5.686778900246431, - "c2": 5.68561668180152, - "c3": 5.282216677229416, - "c4": 5.499668435483399, - "c5": 5.940746467765419, - "c6": 5.433054952246051, - "c7": 5.646057582224437 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [222, 0, 59] }, @@ -320847,23 +320847,23 @@ "year": 1792, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -44.5201626726987, - "c2": -12.290291925582494, - "c3": -18.273243430874984, - "c4": -7.452078992624351, - "c5": 38.94131728257618, - "c6": -48.600550974518335, - "c7": 7.352033430096363 + "points": { + "c1": 18.244109491349946, + "c2": 4.184667585273246, + "c3": -41.10688503144634, + "c4": 51.717981396978075, + "c5": 35.10464382171109, + "c6": -27.406732632777917, + "c7": 45.88983029340507 }, - "vertexSeeds": { - "c1": 3.5404324276279016, - "c2": 2.8135460995785198, - "c3": 3.483485455841072, - "c4": 2.9441729523940383, - "c5": 3.1113749557464128, - "c6": 3.0827803769685946, - "c7": 3.3291693150636816 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722606, + "c3": 4.438280166435507, + "c4": 3.5506241331484047, + "c5": 2.6629680998613052, + "c6": 1.775312066574203, + "c7": 0.8876560332871009 }, "rgb": [77, 76, 132] }, @@ -320874,23 +320874,23 @@ "year": 1792, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 39.735214952005144, - "c2": -23.91321957571536, - "c3": -4.331476615992706, - "c4": 12.173445868154701, - "c5": -8.978035684609758, - "c6": -11.652839634864804, - "c7": 5.435249891727182 + "points": { + "c1": -4.2373085132906425, + "c2": 10.18624265844867, + "c3": 43.71474139136313, + "c4": -9.72863484916116, + "c5": 26.931142782740316, + "c6": 21.0920496211509, + "c7": 20.49604754245329 }, - "vertexSeeds": { - "c1": 4.739404998860005, - "c2": 5.444586015785414, - "c3": 5.407626134763202, - "c4": 5.234069855432846, - "c5": 5.189990225156293, - "c6": 5.399921764581841, - "c7": 5.230465580682656 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.8224687933425745, + "c3": 6.518723994452154, + "c4": 5.214979195561718, + "c5": 3.911234396671297, + "c6": 2.6074895977808628, + "c7": 1.303744798890428 }, "rgb": [238, 201, 159] }, @@ -320901,23 +320901,23 @@ "year": 1792, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": 32.13972829929516, - "c2": -36.52856166239083, - "c3": -18.487653583502706, - "c4": 10.388176222287164, - "c5": -36.74708151237954, - "c6": -35.273504156890105, - "c7": -19.494193882687924 + "points": { + "c1": 35.45106209688619, + "c2": -33.68352204846252, + "c3": 31.941131168372593, + "c4": 23.292881393951646, + "c5": 22.22120874525251, + "c6": 29.400128221174327, + "c7": -13.681476570057931 }, - "vertexSeeds": { - "c1": 2.063509014111066, - "c2": 2.07327737184212, - "c3": 2.116241237417508, - "c4": 2.0878254420050593, - "c5": 2.0769580496746456, - "c6": 2.1719957193124584, - "c7": 2.1097892731757386 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.19001386962552, + "c3": 2.6583448913545986, + "c4": 2.1266759130836834, + "c5": 1.5950069348127625, + "c6": 1.0633379565418417, + "c7": 0.5316689782709209 }, "rgb": [86, 146, 138] }, @@ -320928,23 +320928,23 @@ "year": 1792, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 15.544604486323394, - "c2": -12.105224479317865, - "c3": 12.273961990994195, - "c4": -3.2296133839133745, - "c5": -15.047492871226964, - "c6": -6.8731784181661055, - "c7": -3.9562489917038732 + "points": { + "c1": -25.626536127897406, + "c2": 7.979123837756781, + "c3": -16.355153960615624, + "c4": 24.35155234459762, + "c5": -23.502355473438463, + "c6": -9.551796030292135, + "c7": 32.478909593339665 }, - "vertexSeeds": { - "c1": 3.5957497800680205, - "c2": 3.602493238004258, - "c3": 3.611319423496086, - "c4": 3.599289206039031, - "c5": 3.607210639535346, - "c6": 3.595774993381777, - "c7": 3.605838707846776 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521523, + "c3": 4.322699953767964, + "c4": 3.4581599630144058, + "c5": 2.5936199722606754, + "c6": 1.729079981507117, + "c7": 0.8645399907535585 }, "rgb": [222, 0, 59] }, @@ -320955,23 +320955,23 @@ "year": 1792, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -14.246259248496173, - "c2": 9.82355851348104, - "c3": -13.356680327356806, - "c4": 36.10752109542323, - "c5": -8.142516324280422, - "c6": 5.751316874687156, - "c7": 15.583714845524796 + "points": { + "c1": 31.977270163142016, + "c2": -27.564690386673515, + "c3": -2.3305792750215133, + "c4": 24.99190157602478, + "c5": 5.694808742471466, + "c6": 17.176079754022467, + "c7": 14.97536635242372 }, - "vertexSeeds": { - "c1": 6.241424059902666, - "c2": 6.245595224234905, - "c3": 6.268235476278676, - "c4": 6.272381695209661, - "c5": 6.162581110357857, - "c6": 6.337478585071337, - "c7": 6.186166075326205 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233015, + "c3": 7.605177993527519, + "c4": 6.084142394822023, + "c5": 4.563106796116489, + "c6": 3.0420711974109924, + "c7": 1.5210355987054962 }, "rgb": [86, 146, 138] }, @@ -320982,23 +320982,23 @@ "year": 1792, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 8.218575927533621, - "c2": 3.8094016370144104, - "c3": 24.53068375752146, - "c4": 33.234452361867, - "c5": -45.21543633361672, - "c6": 26.042298470531335, - "c7": -26.334812957439947 + "points": { + "c1": 27.38275248161979, + "c2": -46.33561404989473, + "c3": -0.5341055488594719, + "c4": 42.74720861866557, + "c5": -21.164649541599506, + "c6": 46.49876728049003, + "c7": -21.466779671839735 }, - "vertexSeeds": { - "c1": 7.499586024790567, - "c2": 7.455016699894884, - "c3": 7.5004021614535, - "c4": 7.525375591940768, - "c5": 7.449772353242481, - "c6": 7.487642913537387, - "c7": 7.528211346581069 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646306, + "c3": 8.992140545538565, + "c4": 7.193712436430822, + "c5": 5.395284327323224, + "c6": 3.596856218215483, + "c7": 1.7984281091077414 }, "rgb": [222, 0, 59] }, @@ -321009,23 +321009,23 @@ "year": 1792, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 28.64379093154959, - "c2": -21.220297988025784, - "c3": -29.33516371698971, - "c4": -14.425025579471622, - "c5": -15.458206115845876, - "c6": 1.5262739565365777, - "c7": -9.054758823994234 + "points": { + "c1": -5.35869089172639, + "c2": 0.9770984590730905, + "c3": -14.49758154554507, + "c4": 38.55894059520497, + "c5": -25.323422758575294, + "c6": -9.101497250769594, + "c7": 1.5939709994277678 }, - "vertexSeeds": { - "c1": 4.9862504419211975, - "c2": 5.001637216755393, - "c3": 5.043447912563192, - "c4": 4.984888313480882, - "c5": 4.989285490310073, - "c6": 5.036302825313844, - "c7": 5.021071774280919 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497953, + "c3": 6.033287101248214, + "c4": 4.826629680998595, + "c5": 3.6199722607489764, + "c6": 2.413314840499358, + "c7": 1.2066574202496188 }, "rgb": [238, 201, 159] }, @@ -321036,23 +321036,23 @@ "year": 1792, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 4.100534728732324, - "c2": -15.51847591096285, - "c3": -0.6013289813803127, - "c4": 12.354002696258974, - "c5": -20.685473808027947, - "c6": 18.604140218352086, - "c7": 2.0559717838936535 + "points": { + "c1": 18.31907967025691, + "c2": -23.37303003966519, + "c3": 23.533709772536042, + "c4": 14.724344050698669, + "c5": -1.2713189405179328, + "c6": -15.59922298718312, + "c7": 18.873614922887427 }, - "vertexSeeds": { - "c1": 1.5738341968911918, - "c2": 1.5738341968911918, - "c3": 1.5738341968911918, - "c4": 1.5738341968911918, - "c5": 1.5738341968911918, - "c6": 1.5738341968911918, - "c7": 1.5738341968911918 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -321063,23 +321063,23 @@ "year": 1792, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 13.87155623681457, - "c2": -32.98504113583149, - "c3": 16.854164596333582, - "c4": -22.97766158426586, - "c5": -15.779555528542819, - "c6": -3.0465553437830053, - "c7": 40.32660251482763 + "points": { + "c1": -18.11711917521811, + "c2": -33.422927990987425, + "c3": -29.613959018219937, + "c4": -12.744608965317386, + "c5": -18.974667472267036, + "c6": 21.717123313985468, + "c7": -10.172636853166487 }, - "vertexSeeds": { - "c1": 3.9292784250384094, - "c2": 3.892713203561562, - "c3": 3.9628634975167047, - "c4": 3.8734143796595717, - "c5": 3.8887369740242104, - "c6": 3.9363272774471016, - "c7": 3.88629600107707 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.6865464632454925, + "c3": 4.738788719371244, + "c4": 3.791030975496995, + "c5": 2.8432732316227463, + "c6": 1.8955154877484974, + "c7": 0.9477577438742487 }, "rgb": [58, 15, 49] }, @@ -321090,23 +321090,23 @@ "year": 1792, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -9.014475853910472, - "c2": -17.379658210364436, - "c3": -5.231547676897325, - "c4": 12.465607944116986, - "c5": -5.551603715595604, - "c6": -20.81419033714171, - "c7": 28.201969698685506 + "points": { + "c1": -23.598916695953047, + "c2": -9.49527979650366, + "c3": 25.108395464893107, + "c4": -17.703177821651018, + "c5": 3.9691547752217033, + "c6": -27.09532346978527, + "c7": -19.331040212180756 }, - "vertexSeeds": { - "c1": 4.566062176165803, - "c2": 4.566062176165803, - "c3": 4.566062176165803, - "c4": 4.566062176165803, - "c5": 4.566062176165803, - "c6": 4.566062176165803, - "c7": 4.566062176165803 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -321117,23 +321117,23 @@ "year": 1792, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 10.529157198212765, - "c2": -10.441543356157393, - "c3": -33.71728201705806, - "c4": 8.366482806281681, - "c5": 17.873391126456333, - "c6": 15.37142723163155, - "c7": 18.829926226917685 + "points": { + "c1": -2.81757188975687, + "c2": 25.504813553941005, + "c3": 23.941188363546175, + "c4": 10.66973767092474, + "c5": -37.431924958941046, + "c6": 33.18630030648217, + "c7": -37.33294891911128 }, - "vertexSeeds": { - "c1": 5.631241973215683, - "c2": 6.159830917601559, - "c3": 5.980164222604378, - "c4": 6.338183746721892, - "c5": 5.624974284334123, - "c6": 5.4062850009082615, - "c7": 5.815890144364241 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [58, 15, 49] }, @@ -321144,23 +321144,23 @@ "year": 1792, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 1.458312885460348, - "c2": -3.2838513862225476, - "c3": 2.3564339813491877, - "c4": -9.593211045592767, - "c5": -0.7540430038235577, - "c6": 2.238273560980037, - "c7": 12.647776228803636 + "points": { + "c1": 16.02994180036582, + "c2": -22.81676218147618, + "c3": -16.139327088883817, + "c4": -2.6825410183875746, + "c5": 15.607232854499607, + "c6": 19.513039293779357, + "c7": 1.3678099609603684 }, - "vertexSeeds": { - "c1": 4.92646299849776, - "c2": 5.035948347656274, - "c3": 5.02908352480573, - "c4": 5.003369559090769, - "c5": 5.075838676159187, - "c6": 4.941199666915536, - "c7": 4.928420175481332 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578371, + "c3": 6.079519186315317, + "c4": 4.863615349052266, + "c5": 3.647711511789212, + "c6": 2.4318076745261057, + "c7": 1.2159038372630797 }, "rgb": [77, 76, 132] }, @@ -321171,23 +321171,23 @@ "year": 1792, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 0.2213120689357595, - "c2": 21.546737028350996, - "c3": -23.85590177335708, - "c4": 7.395676386726496, - "c5": -6.142257289481385, - "c6": -0.2149212295694909, - "c7": 22.6133147875707 + "points": { + "c1": 25.409485935347263, + "c2": -4.23218245712291, + "c3": 24.329935599503223, + "c4": 19.215862419812836, + "c5": -13.886169567542414, + "c6": 10.880856516517262, + "c7": 21.0315530462347 }, - "vertexSeeds": { - "c1": 0.8160621761658031, - "c2": 0.8160621761658031, - "c3": 0.8160621761658031, - "c4": 0.8160621761658031, - "c5": 0.8160621761658031, - "c6": 0.8160621761658031, - "c7": 0.8160621761658031 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -321198,23 +321198,23 @@ "year": 1793, "resistanceReported": false, "duration": 48124800, - "curveSeeds": { - "c1": -20.395880414778482, - "c2": -39.125593055618204, - "c3": -33.62668649286756, - "c4": -15.112646891708998, - "c5": 13.455339731927978, - "c6": -16.029425719723314, - "c7": 41.12296701067419 + "points": { + "c1": -47.02461343279586, + "c2": -5.681148024423727, + "c3": -15.123616603980608, + "c4": -24.89621662746233, + "c5": -58.44492390950263, + "c6": 15.214153369640428, + "c7": -1.0629690964608542 }, - "vertexSeeds": { - "c1": 0.1693793109753316, - "c2": 0.16466078621005759, - "c3": 0.163349439717953, - "c4": 0.1684736241879568, - "c5": 0.16171925171501877, - "c6": 0.15935297640270657, - "c7": 0.16801542514953152 + "offsets": { + "c1": 0.3236245954692557, + "c2": 0.27739251040221935, + "c3": 0.2311604253351824, + "c4": 0.18492834026814603, + "c5": 0.13869625520110967, + "c6": 0.0924641701340733, + "c7": 0.04623208506703636 }, "rgb": [238, 201, 159] }, @@ -321225,23 +321225,23 @@ "year": 1792, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": 34.08251859284791, - "c2": 46.55205562016888, - "c3": 29.095578456061453, - "c4": 46.61443636351107, - "c5": -6.382236599953288, - "c6": -32.31427928112191, - "c7": 28.576235155837132 + "points": { + "c1": 15.493871583641727, + "c2": 46.65281325770888, + "c3": 19.480719885299457, + "c4": 0.4468071030516043, + "c5": 3.752174660892628, + "c6": -32.15855940637532, + "c7": -1.5708553405679737 }, - "vertexSeeds": { - "c1": 5.280516352945277, - "c2": 5.302874197416135, - "c3": 5.329009503937461, - "c4": 5.289418952723628, - "c5": 5.333527063313741, - "c6": 5.312115714018621, - "c7": 5.336704822483999 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101284, + "c3": 6.380027739250986, + "c4": 5.104022191400814, + "c5": 3.828016643550642, + "c6": 2.5520110957004705, + "c7": 1.2760055478501717 }, "rgb": [222, 0, 59] }, @@ -321252,23 +321252,23 @@ "year": 1793, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": -49.50684586167755, - "c2": 37.79424506965481, - "c3": 2.98887138928265, - "c4": 40.84852659414484, - "c5": 44.22385332731997, - "c6": 34.85045686516443, - "c7": -28.34011485882622 + "points": { + "c1": 29.75893504959187, + "c2": -0.6960252580888593, + "c3": -29.146511464352088, + "c4": -30.37006876764693, + "c5": 5.048222993746137, + "c6": 48.21047852375753, + "c7": 1.7857919100834678 }, - "vertexSeeds": { - "c1": 4.458823425422443, - "c2": 4.285827366396407, - "c3": 4.385984441562635, - "c4": 4.252282891466576, - "c5": 4.403593165031329, - "c6": 4.628844070534059, - "c7": 4.177161705640596 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.6574202496532555, + "c3": 5.547850208044383, + "c4": 4.438280166435503, + "c5": 3.3287101248266313, + "c6": 2.2191400832177517, + "c7": 1.109570041608873 }, "rgb": [58, 15, 49] }, @@ -321279,23 +321279,23 @@ "year": 1792, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -21.717006100593004, - "c2": -10.422468118646906, - "c3": 3.5349985585143138, - "c4": 17.747435906546485, - "c5": 18.818834146155147, - "c6": 2.050675286568648, - "c7": -13.458100770069093 + "points": { + "c1": 21.926242780443978, + "c2": -6.834595547671931, + "c3": 16.928988804989537, + "c4": 8.468529745402535, + "c5": -25.61454456379635, + "c6": -8.476055560946705, + "c7": 25.041274895742568 }, - "vertexSeeds": { - "c1": 1.3715602812229766, - "c2": 1.4886523844707042, - "c3": 1.5518405645428426, - "c4": 1.4990125666321727, - "c5": 1.4317961201580334, - "c6": 1.5198807702658141, - "c7": 1.5295351555962113 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257976, + "c3": 1.87239944521498, + "c4": 1.4979195561719845, + "c5": 1.1234396671289866, + "c6": 0.748959778085991, + "c7": 0.3744798890429955 }, "rgb": [77, 76, 132] }, @@ -321306,23 +321306,23 @@ "year": 1793, "resistanceReported": false, "duration": 41644800, - "curveSeeds": { - "c1": 24.212839893940355, - "c2": 12.2587448360226, - "c3": 0.8137785782565317, - "c4": -47.105459036391586, - "c5": 27.775907532137225, - "c6": 12.912107773171684, - "c7": 13.802998292233283 + "points": { + "c1": -40.27233232792028, + "c2": 22.910365239085195, + "c3": 24.932407958133126, + "c4": -27.13186592533406, + "c5": -52.527479116513746, + "c6": -20.048197111931543, + "c7": -25.857973055730316 }, - "vertexSeeds": { - "c1": 4.24387664425221, - "c2": 4.476224762921769, - "c3": 4.507035125885888, - "c4": 4.318007765619863, - "c5": 5.083907142081742, - "c6": 5.239732189237964, - "c7": 4.806098600996267 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101249, + "c3": 6.380027739251043, + "c4": 5.104022191400833, + "c5": 3.828016643550623, + "c6": 2.5520110957004163, + "c7": 1.2760055478502104 }, "rgb": [238, 201, 159] }, @@ -321333,23 +321333,23 @@ "year": 1792, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 4.499280009043929, - "c2": -9.450144954467643, - "c3": 27.211318604694824, - "c4": 12.357384733497447, - "c5": 34.11210423832515, - "c6": -7.660487394199372, - "c7": 29.871589197749834 + "points": { + "c1": -20.22023061924063, + "c2": 7.128636422826283, + "c3": 16.359722270673075, + "c4": 13.866955987337136, + "c5": 8.37627883794098, + "c6": -24.48146247460142, + "c7": -35.47786662741825 }, - "vertexSeeds": { - "c1": 5.1782181371230775, - "c2": 4.8632653666874255, - "c3": 4.784454641010289, - "c4": 5.0769608839985665, - "c5": 4.851963293040572, - "c6": 5.129438395725898, - "c7": 5.0845253604803755 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.51733703190014, + "c3": 6.264447526583451, + "c4": 5.0115580212667625, + "c5": 3.758668515950074, + "c6": 2.505779010633377, + "c7": 1.2528895053166884 }, "rgb": [222, 0, 59] }, @@ -321360,23 +321360,23 @@ "year": 1792, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 3.5357795195687167, - "c2": 25.593670002184037, - "c3": -9.676909997483634, - "c4": 12.560408328776251, - "c5": 17.443179707002205, - "c6": -3.38084711880024, - "c7": 5.54633930682267 + "points": { + "c1": -4.595745817725923, + "c2": -11.048563174176284, + "c3": -5.254284497200089, + "c4": -15.398923447180584, + "c5": -6.640025156586944, + "c6": -22.025023613216096, + "c7": 28.720439216072048 }, - "vertexSeeds": { - "c1": 4.344829798508815, - "c2": 4.199046212945579, - "c3": 4.205244859732724, - "c4": 4.298663201048488, - "c5": 4.214123049769018, - "c6": 4.20110081894855, - "c7": 4.347994059801849 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.2011095700416154, + "c4": 4.160887656033272, + "c5": 3.120665742024954, + "c6": 2.080443828016636, + "c7": 1.040221914008318 }, "rgb": [58, 15, 49] }, @@ -321387,23 +321387,23 @@ "year": 1792, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 32.916919543655666, - "c2": -26.68003214451791, - "c3": -18.812970322201984, - "c4": -32.85194222880382, - "c5": -18.28262711870791, - "c6": -9.627069600995693, - "c7": 24.310928146015996 + "points": { + "c1": 8.968987230141487, + "c2": 24.959801314383014, + "c3": -33.64211626995051, + "c4": 38.81366066885032, + "c5": -0.5178070019400209, + "c6": -24.532395850884043, + "c7": -7.130014684707987 }, - "vertexSeeds": { - "c1": 1.455265925698579, - "c2": 1.4651859402706824, - "c3": 1.4380895340021114, - "c4": 1.3636758180771, - "c5": 1.3695581364953395, - "c6": 1.3989432449618269, - "c7": 1.3812539674395736 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097089, + "c3": 1.7799352750809057, + "c4": 1.4239482200647262, + "c5": 1.0679611650485423, + "c6": 0.7119741100323631, + "c7": 0.3559870550161838 }, "rgb": [58, 15, 49] }, @@ -321414,23 +321414,23 @@ "year": 1792, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 19.968817443605474, - "c2": 15.276733206338513, - "c3": -14.414454246812188, - "c4": 16.67687082809617, - "c5": 2.8719537996918802, - "c6": -26.79814366679961, - "c7": 11.90359799447912 + "points": { + "c1": 8.505344856080882, + "c2": -34.06246733470931, + "c3": -24.016304725426767, + "c4": 25.163327557924177, + "c5": -18.127001683082693, + "c6": 10.427461716010455, + "c7": 26.35174485121742 }, - "vertexSeeds": { - "c1": 5.421023350656382, - "c2": 5.118544125566575, - "c3": 6.132869571313932, - "c4": 5.865797142651684, - "c5": 5.133034362879497, - "c6": 6.024661554318273, - "c7": 5.300171616119563 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [77, 76, 132] }, @@ -321441,23 +321441,23 @@ "year": 1793, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": -45.77714791079639, - "c2": -36.03472471986358, - "c3": 13.36324428200031, - "c4": -8.091429923424357, - "c5": -12.42263248925407, - "c6": -31.1099302919814, - "c7": -16.548737401707164 + "points": { + "c1": -25.21021139114468, + "c2": -16.05859009019543, + "c3": 25.873849773966597, + "c4": -14.690526059552461, + "c5": -44.81274029712874, + "c6": -27.56310274281344, + "c7": 18.824013954157707 }, - "vertexSeeds": { - "c1": 5.971704750172175, - "c2": 5.633522400690012, - "c3": 5.316495957872476, - "c4": 5.582297609101737, - "c5": 5.850632221476671, - "c6": 5.357410358946577, - "c7": 5.589273124584782 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [238, 201, 159] }, @@ -321468,23 +321468,23 @@ "year": 1792, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 28.25460233509383, - "c2": 17.259545323369963, - "c3": 22.198338377262722, - "c4": -16.11523909799906, - "c5": 8.8687295142906, - "c6": -10.24632343388993, - "c7": 30.216378476747465 + "points": { + "c1": -9.682657997444366, + "c2": -16.91019594936441, + "c3": 21.11200488037059, + "c4": 18.647713101944284, + "c5": -16.28786996851627, + "c6": 32.22124960898322, + "c7": -15.284168355114097 }, - "vertexSeeds": { - "c1": 3.0534958447808056, - "c2": 3.2089986672685855, - "c3": 2.5808695284374514, - "c4": 2.531036582619592, - "c5": 2.9721598359759245, - "c6": 3.25350262126676, - "c7": 3.238605899105762 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.743411927877947, + "c3": 3.952843273231622, + "c4": 3.162274618585301, + "c5": 2.3717059639389753, + "c6": 1.5811373092926504, + "c7": 0.7905686546463252 }, "rgb": [58, 15, 49] }, @@ -321495,23 +321495,23 @@ "year": 1792, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -5.173931524519894, - "c2": -23.081411409963415, - "c3": 12.544654101112762, - "c4": 6.580629956412977, - "c5": -8.267917754417414, - "c6": 20.6131757321006, - "c7": -30.266256542539196 + "points": { + "c1": 27.746076408809294, + "c2": 23.185485868210186, + "c3": -6.837499211582596, + "c4": -22.319948433686413, + "c5": -26.322832927463917, + "c6": 31.64573486749923, + "c7": -8.393166390376845 }, - "vertexSeeds": { - "c1": 6.383470206560987, - "c2": 6.273026546452547, - "c3": 6.190662098127272, - "c4": 6.091136785951166, - "c5": 5.796069763621899, - "c6": 5.606535947079349, - "c7": 6.0775107252245375 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273226, + "c3": 7.6282940360610265, + "c4": 6.102635228848817, + "c5": 4.576976421636618, + "c6": 3.0513176144244083, + "c7": 1.5256588072122101 }, "rgb": [77, 76, 132] }, @@ -321522,23 +321522,23 @@ "year": 1792, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -24.43399241976765, - "c2": -13.433223398666305, - "c3": -22.910099279404584, - "c4": -20.287183607045005, - "c5": 5.251077408472241, - "c6": 16.27702928325141, - "c7": 22.85214412836642 + "points": { + "c1": -27.398613385528577, + "c2": 26.30706716980084, + "c3": 16.371496911608382, + "c4": 17.05838914006975, + "c5": -26.68660133850138, + "c6": 9.977008941369242, + "c7": 0.44628033940104217 }, - "vertexSeeds": { - "c1": 3.2542919722291694, - "c2": 3.2756033561448428, - "c3": 3.2843238619126707, - "c4": 3.316215206305586, - "c5": 3.338221823457634, - "c6": 3.2991242451596756, - "c7": 3.298638218540909 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958382, + "c3": 3.999075358298673, + "c4": 3.1992602866389324, + "c5": 2.399445214979191, + "c6": 1.599630143319482, + "c7": 0.799815071659741 }, "rgb": [238, 201, 159] }, @@ -321549,23 +321549,23 @@ "year": 1792, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 19.11001081106315, - "c2": -8.746738337586965, - "c3": -20.883773380807302, - "c4": -23.337455029360203, - "c5": 11.320945685135268, - "c6": -28.231121715296503, - "c7": -2.014665553938496 + "points": { + "c1": -0.13036084716725327, + "c2": -27.72012188392632, + "c3": -3.144213427535327, + "c4": 22.691248172079053, + "c5": -23.51383287160497, + "c6": -24.181781284382346, + "c7": 31.308010881494884 }, - "vertexSeeds": { - "c1": 2.0244394330418025, - "c2": 2.056511014955945, - "c3": 2.0141055005895234, - "c4": 2.2755224509839818, - "c5": 2.158989267007391, - "c6": 2.2002972629393502, - "c7": 2.081501757238442 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.32871012482663, + "c3": 2.773925104022192, + "c4": 2.2191400832177544, + "c5": 1.6643550624133132, + "c6": 1.1095700416088756, + "c7": 0.5547850208044378 }, "rgb": [238, 201, 159] }, @@ -321576,23 +321576,23 @@ "year": 1792, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -5.323992762132981, - "c2": 7.887909783668704, - "c3": -6.384754462388429, - "c4": -14.212587186335726, - "c5": 6.017313283332044, - "c6": -21.149544620792554, - "c7": -8.679382550554937 + "points": { + "c1": 24.06182242884335, + "c2": 22.709711316478348, + "c3": -20.92927216978528, + "c4": -6.727680924392512, + "c5": -2.6149752623688585, + "c6": -29.996010471241814, + "c7": -18.387921525882817 }, - "vertexSeeds": { - "c1": 7.852548305314999, - "c2": 7.851489177981727, - "c3": 7.858802053752204, - "c4": 7.852105009194411, - "c5": 7.860899616974366, - "c6": 7.858029525698185, - "c7": 7.853900646881926 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922329776, + "c3": 9.38511326860852, + "c4": 7.508090614886517, + "c5": 5.631067961165262, + "c6": 3.7540453074432585, + "c7": 1.8770226537220027 }, "rgb": [222, 0, 59] }, @@ -321603,23 +321603,23 @@ "year": 1792, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": 9.72638607423097, - "c2": -1.577029395324871, - "c3": -14.02450844382752, - "c4": 20.635391982193298, - "c5": -19.980276383874347, - "c6": 0.7997369672443639, - "c7": -13.535480882468416 + "points": { + "c1": 16.820472926381896, + "c2": 0.07928464738802887, + "c3": -12.335195812592627, + "c4": -7.609781075525319, + "c5": 11.761206690628406, + "c6": 10.515887462227312, + "c7": -17.420903178023103 }, - "vertexSeeds": { - "c1": 2.675241713746704, - "c2": 2.6861650292757386, - "c3": 2.6708561623158724, - "c4": 2.936367932091708, - "c5": 2.9015962730443543, - "c6": 2.7527457732515392, - "c7": 2.9535986508273635 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314841, + "c3": 3.6292186777623687, + "c4": 2.9033749422098905, + "c5": 2.177531206657418, + "c6": 1.4516874711049452, + "c7": 0.7258437355524726 }, "rgb": [86, 146, 138] }, @@ -321630,23 +321630,23 @@ "year": 1792, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -24.992657422713034, - "c2": 22.225314412749718, - "c3": 23.271349535853773, - "c4": 14.274049290862038, - "c5": 12.004141485430978, - "c6": -27.957599843511556, - "c7": 25.477871108493936 + "points": { + "c1": 27.496128704374563, + "c2": 23.507627714024302, + "c3": -29.015896000842936, + "c4": -18.97469202085437, + "c5": -3.5692843298507455, + "c6": 23.52086715846867, + "c7": 23.18289219590168 }, - "vertexSeeds": { - "c1": 5.298712755579062, - "c2": 5.292834978752207, - "c3": 5.31574107655708, - "c4": 5.303438927393634, - "c5": 5.323273454504558, - "c6": 5.319344779199012, - "c7": 5.2913640427851485 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061062, + "c3": 6.356911696717594, + "c4": 5.085529357374125, + "c5": 3.8141470180304045, + "c6": 2.5427646786869365, + "c7": 1.2713823393434682 }, "rgb": [222, 0, 59] }, @@ -321657,23 +321657,23 @@ "year": 1792, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -11.045372361165054, - "c2": 22.059648032191834, - "c3": 17.666284169909506, - "c4": 19.80682240731137, - "c5": -0.8371963004233649, - "c6": 28.668926284739026, - "c7": -21.930938098407573 + "points": { + "c1": 26.026320628379825, + "c2": 24.638785389703944, + "c3": 1.1368462314027816, + "c4": 19.61877696116213, + "c5": 29.388186936201482, + "c6": 12.312402803388647, + "c7": 23.65722083465396 }, - "vertexSeeds": { - "c1": 3.527865563241503, - "c2": 3.7318253058922846, - "c3": 3.9928718064864883, - "c4": 3.6668474903472896, - "c5": 3.9178211178728404, - "c6": 3.5310549714456596, - "c7": 3.9369074160921698 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486823, + "c3": 4.877484974572351, + "c4": 3.9019879796578802, + "c5": 2.926490984743409, + "c6": 1.9509939898289375, + "c7": 0.9754969949144663 }, "rgb": [86, 146, 138] }, @@ -321684,23 +321684,23 @@ "year": 1792, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -1.4824719758733274, - "c2": -9.355811264443938, - "c3": -19.489564432407867, - "c4": -7.503322310971669, - "c5": 5.65931327057239, - "c6": -9.902277126744387, - "c7": 1.8572029785669173 + "points": { + "c1": 16.93371723841979, + "c2": -0.8032536902784457, + "c3": 15.257971236822272, + "c4": 23.583474858621145, + "c5": 10.608160219244837, + "c6": -18.952725745051342, + "c7": 22.588834126418064 }, - "vertexSeeds": { - "c1": 7.385621025043165, - "c2": 7.311323234724291, - "c3": 7.56877324109076, - "c4": 7.20183556205801, - "c5": 7.305388341733451, - "c6": 7.359778831438353, - "c7": 7.192901581455834 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847447, + "c3": 9.107720758206192, + "c4": 7.286176606564965, + "c5": 5.46463245492371, + "c6": 3.6430883032824823, + "c7": 1.8215441516412276 }, "rgb": [58, 15, 49] }, @@ -321711,23 +321711,23 @@ "year": 1792, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -29.362742068220765, - "c2": -19.843631146683904, - "c3": -29.56131108519293, - "c4": 17.391583111748275, - "c5": 23.415017430640454, - "c6": -8.136232390214289, - "c7": -24.925662868365464 + "points": { + "c1": 20.537975952526182, + "c2": 23.986490255999954, + "c3": -14.02560418928785, + "c4": -32.340609523743495, + "c5": 13.00093683285084, + "c6": 29.521833214312565, + "c7": 25.96680153721355 }, - "vertexSeeds": { - "c1": 10.902538212848901, - "c2": 10.364636628582755, - "c3": 10.626046608145382, - "c4": 10.409070884010907, - "c5": 10.130409462995242, - "c6": 10.275540109879403, - "c7": 10.70145146349477 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846035, + "c3": 13.129912159038392, + "c4": 10.503929727230704, + "c5": 7.877947295423017, + "c6": 5.251964863615374, + "c7": 2.625982431807687 }, "rgb": [86, 146, 138] }, @@ -321738,23 +321738,23 @@ "year": 1792, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 10.709150841480152, - "c2": -2.1469842253822122, - "c3": 15.53745158109156, - "c4": 13.264149042863671, - "c5": -14.115807334238452, - "c6": -6.042723772259823, - "c7": 15.352305062822111 + "points": { + "c1": -3.7108429679096915, + "c2": 19.684950765899018, + "c3": 10.290910977283104, + "c4": -8.971222076985889, + "c5": 14.450449135795573, + "c6": 0.4578287607672422, + "c7": -12.234935544995038 }, - "vertexSeeds": { - "c1": 3.19427768382685, - "c2": 3.1938268544085324, - "c3": 3.152067404762094, - "c4": 3.1935967694718532, - "c5": 3.186376328022661, - "c6": 3.148181275109835, - "c7": 3.1499043320980165 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.60471567267686, + "c3": 3.837263060564024, + "c4": 3.0698104484512396, + "c5": 2.302357836338404, + "c6": 1.5349052242256198, + "c7": 0.7674526121127845 }, "rgb": [77, 76, 132] }, @@ -321765,23 +321765,23 @@ "year": 1792, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 17.135515920917822, - "c2": -13.118596243443868, - "c3": 16.257134594179146, - "c4": 20.63508854734722, - "c5": -10.299248051025636, - "c6": 18.140794207962802, - "c7": -15.333053274800182 + "points": { + "c1": 23.025918205341835, + "c2": -3.9857873351402056, + "c3": -20.17040148492362, + "c4": -14.927423377386248, + "c5": -11.23603296227201, + "c6": -22.011275106580566, + "c7": -18.174589862250222 }, - "vertexSeeds": { - "c1": 4.635263459645919, - "c2": 4.682311004407708, - "c3": 4.644445166091713, - "c4": 4.6503521845395674, - "c5": 4.637864488090992, - "c6": 4.670297178830041, - "c7": 4.66781096421463 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733735, + "c3": 5.594082293111409, + "c4": 4.475265834489157, + "c5": 3.3564493758668306, + "c6": 2.2376329172445786, + "c7": 1.1188164586223261 }, "rgb": [222, 0, 59] }, @@ -321792,23 +321792,23 @@ "year": 1792, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 7.913086345582649, - "c2": -6.660257574379486, - "c3": -15.412735457853096, - "c4": 24.750098227540533, - "c5": 24.263874549842228, - "c6": 25.20507118712476, - "c7": 31.047956174624872 + "points": { + "c1": 33.10975305000909, + "c2": 23.666287245692914, + "c3": 15.603311992898298, + "c4": -5.216877768120192, + "c5": 32.38570827457566, + "c6": -9.165994905510004, + "c7": -26.88231440579086 }, - "vertexSeeds": { - "c1": 7.538860103626943, - "c2": 7.538860103626943, - "c3": 7.538860103626943, - "c4": 7.538860103626943, - "c5": 7.538860103626943, - "c6": 7.538860103626943, - "c7": 7.538860103626943 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -321819,23 +321819,23 @@ "year": 1793, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 53.52824400019458, - "c2": 47.26971319342946, - "c3": -48.69306214090088, - "c4": 17.851744521185047, - "c5": 48.343554531281605, - "c6": -10.785220773338871, - "c7": -3.316796962540394 + "points": { + "c1": 19.680188372366494, + "c2": -39.86502297587366, + "c3": -35.3807536494057, + "c4": -13.012323735111941, + "c5": 0.7052952765461669, + "c6": -31.111185589354488, + "c7": 15.885400259053377 }, - "vertexSeeds": { - "c1": 5.953578269260318, - "c2": 5.6121722598404515, - "c3": 5.678740367728461, - "c4": 5.914658379414127, - "c5": 5.289283152571682, - "c6": 5.692434493654326, - "c7": 5.188118280794206 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [77, 76, 132] }, @@ -321846,23 +321846,23 @@ "year": 1792, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 21.730908083572565, - "c2": 8.958851397612491, - "c3": 24.892858443155312, - "c4": -0.5709639285389727, - "c5": 24.08257310896512, - "c6": -11.970690683353558, - "c7": -22.8929330442998 + "points": { + "c1": 19.35511223895722, + "c2": 13.110188040871094, + "c3": -18.095500078095316, + "c4": 7.4967743935101225, + "c5": 5.503385028651124, + "c6": 13.320233172443942, + "c7": -1.8710154673950505 }, - "vertexSeeds": { - "c1": 8.818625404005159, - "c2": 8.155258898560161, - "c3": 8.38942927325698, - "c4": 8.306071885859602, - "c5": 8.889565007214438, - "c6": 8.026546425929821, - "c7": 8.0790608565421 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783639, + "c3": 10.795191863153022, + "c4": 8.636153490522421, + "c5": 6.477115117891819, + "c6": 4.318076745261202, + "c7": 2.159038372630601 }, "rgb": [238, 201, 159] }, @@ -321873,23 +321873,23 @@ "year": 1792, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 7.918621160157951, - "c2": -12.824499637209913, - "c3": 5.4553364467249565, - "c4": 0.7625241653706105, - "c5": 16.119436852216776, - "c6": -1.2170046630618376, - "c7": 0.9355368260859933 + "points": { + "c1": -7.754179731041532, + "c2": 4.335904942522113, + "c3": -16.574915739745393, + "c4": -2.1158700214567716, + "c5": 1.3469822785405299, + "c6": -2.3061876213967807, + "c7": 12.55755696772756 }, - "vertexSeeds": { - "c1": 1.5832972766579687, - "c2": 1.5689629509886183, - "c3": 1.7344078138413868, - "c4": 1.606306782537259, - "c5": 1.6218932245645281, - "c6": 1.5663274460616006, - "c7": 1.7028128911193674 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.524271844660194, + "c3": 2.103559870550162, + "c4": 1.6828478964401292, + "c5": 1.262135922330097, + "c6": 0.8414239482200646, + "c7": 0.4207119741100323 }, "rgb": [58, 15, 49] }, @@ -321900,23 +321900,23 @@ "year": 1792, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 8.641582198722162, - "c2": 10.360095146502644, - "c3": -8.848400547735235, - "c4": 7.481245222523562, - "c5": 12.954672814388012, - "c6": -3.468984406901079, - "c7": -6.077478994802657 + "points": { + "c1": -1.0245410654264262, + "c2": -20.625564693665144, + "c3": 21.029432762200443, + "c4": 16.582930436230825, + "c5": 17.247447994430118, + "c6": -22.701918021737182, + "c7": 16.19240589985462 }, - "vertexSeeds": { - "c1": 3.4374631388894725, - "c2": 3.3276813419232636, - "c3": 3.5336913126247556, - "c4": 3.522743766478216, - "c5": 3.6414884401768024, - "c6": 3.470130332012244, - "c7": 3.4837473104515664 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.24271844660194, + "c3": 4.368932038834949, + "c4": 3.4951456310679574, + "c5": 2.621359223300966, + "c6": 1.747572815533983, + "c7": 0.8737864077669915 }, "rgb": [58, 15, 49] }, @@ -321927,23 +321927,23 @@ "year": 1792, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 28.11140722750786, - "c2": -14.276009986905896, - "c3": 22.945437467436797, - "c4": -0.07585274238338258, - "c5": -2.4064732308729546, - "c6": -18.083886669521867, - "c7": -8.857866693762873 + "points": { + "c1": -3.2230724967232582, + "c2": -7.7276912077882685, + "c3": -17.127567881875663, + "c4": -6.106615478981745, + "c5": -18.94299045634163, + "c6": -14.957216825602673, + "c7": 16.462984255145003 }, - "vertexSeeds": { - "c1": 4.351924601855709, - "c2": 4.362920699930634, - "c3": 4.479940581987144, - "c4": 4.3381096979177665, - "c5": 4.534220694872901, - "c6": 4.332776336210104, - "c7": 4.398266733317752 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.478502080443828, + "c4": 4.382801664355062, + "c5": 3.2871012482662967, + "c6": 2.191400832177531, + "c7": 1.0957004160887656 }, "rgb": [238, 201, 159] }, @@ -321954,23 +321954,23 @@ "year": 1793, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -10.970505075740107, - "c2": -5.083927680241999, - "c3": -20.294728635343965, - "c4": -0.7589144054165189, - "c5": -0.5180979966598471, - "c6": 36.33240796768522, - "c7": 9.385353328452922 + "points": { + "c1": -28.62447979748911, + "c2": -46.55846113710651, + "c3": 17.588942540957, + "c4": -40.40877721588336, + "c5": 16.099015595584284, + "c6": -16.075187267868202, + "c7": 27.38174692009259 }, - "vertexSeeds": { - "c1": 6.634109844549064, - "c2": 6.562786088117743, - "c3": 6.379928434033033, - "c4": 6.4255789549742355, - "c5": 6.543352284219741, - "c6": 6.44370903097587, - "c7": 6.409332167899354 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077662, + "c3": 8.090614886731395, + "c4": 6.472491909385107, + "c5": 4.854368932038842, + "c6": 3.2362459546925537, + "c7": 1.6181229773462658 }, "rgb": [238, 201, 159] }, @@ -321981,23 +321981,23 @@ "year": 1792, "resistanceReported": false, "duration": 1382400, - "curveSeeds": { - "c1": 10.402652624887804, - "c2": -8.481230479006362, - "c3": -3.292150202673419, - "c4": 8.09034191507412, - "c5": 5.172815034259379, - "c6": 10.044301632763048, - "c7": 10.416095725000417 + "points": { + "c1": -11.340447407950869, + "c2": -7.227433548259888, + "c3": -9.363865824764018, + "c4": 9.51035221266373, + "c5": 10.426979832786436, + "c6": 9.381505232541809, + "c7": 8.081418909144656 }, - "vertexSeeds": { - "c1": 4.099833427988759, - "c2": 4.064445265466535, - "c3": 4.043076831801717, - "c4": 3.8728685945470653, - "c5": 4.065482331503427, - "c6": 4.154584087922303, - "c7": 3.7891399548584155 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728154, + "c3": 5.016181229773463, + "c4": 4.01294498381877, + "c5": 3.009708737864077, + "c6": 2.006472491909385, + "c7": 1.0032362459546924 }, "rgb": [58, 15, 49] }, @@ -322008,23 +322008,23 @@ "year": 1793, "resistanceReported": false, "duration": 47520000, - "curveSeeds": { - "c1": -16.565156638190977, - "c2": 14.331210075665055, - "c3": -24.488543971848223, - "c4": 9.487952312730357, - "c5": -8.510001498223879, - "c6": 9.5226876467529, - "c7": -31.170733542236263 + "points": { + "c1": -52.722193615277, + "c2": -59.22586914203436, + "c3": -37.97336668552519, + "c4": -3.042665687284561, + "c5": -26.666315223831425, + "c6": 21.88196854704381, + "c7": 13.016576841923154 }, - "vertexSeeds": { - "c1": 3.291849484763013, - "c2": 3.3272069204238592, - "c3": 3.336807330450492, - "c4": 3.3046842890392405, - "c5": 3.3088430250548404, - "c6": 3.291224081976259, - "c7": 3.3263682250595386 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958414, + "c3": 3.999075358298652, + "c4": 3.1992602866389426, + "c5": 2.3994452149791803, + "c6": 1.5996301433194713, + "c7": 0.7998150716597621 }, "rgb": [58, 15, 49] }, @@ -322035,23 +322035,23 @@ "year": 1792, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -22.040594451866653, - "c2": -3.3693913264237665, - "c3": 2.3227333157056975, - "c4": -2.3425388699216327, - "c5": -11.1962603011775, - "c6": 28.500782359103127, - "c7": -11.237329567169237 + "points": { + "c1": -24.688794407500577, + "c2": -21.546189887599716, + "c3": -26.036171440415714, + "c4": 30.452645367726447, + "c5": 30.854746409982134, + "c6": 2.368839328850136, + "c7": -18.09051729345169 }, - "vertexSeeds": { - "c1": 1.2758796703922988, - "c2": 1.5139500445417196, - "c3": 1.4570028846721983, - "c4": 1.2160840537590383, - "c5": 1.3532627519280929, - "c6": 1.5075358585856438, - "c7": 1.3500157988890589 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.274618585298196, + "c3": 1.8955154877484974, + "c4": 1.5164123901987987, + "c5": 1.1373092926490984, + "c6": 0.758206195099398, + "c7": 0.37910309754969945 }, "rgb": [222, 0, 59] }, @@ -322062,23 +322062,23 @@ "year": 1792, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 34.13349191059548, - "c2": -19.675969849616987, - "c3": 14.427978616867264, - "c4": 35.58090535801048, - "c5": 33.70137261349508, - "c6": -4.402272800813286, - "c7": -9.801243088855216 + "points": { + "c1": -17.34780652053829, + "c2": -25.577896824240327, + "c3": -33.75080792980681, + "c4": -28.232078912919384, + "c5": -23.763698353711185, + "c6": 31.454248607219412, + "c7": 2.3406748125017884 }, - "vertexSeeds": { - "c1": 9.39455428971554, - "c2": 5.590509368931582, - "c3": 8.88386877160326, - "c4": 5.54285763342597, - "c5": 9.005410394114335, - "c6": 8.198892729605372, - "c7": 7.333540019782037 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.536754507628295, + "c3": 11.280628756356913, + "c4": 9.024503005085531, + "c5": 6.768377253814146, + "c6": 4.512251502542766, + "c7": 2.256125751271385 }, "rgb": [238, 201, 159] }, @@ -322089,23 +322089,23 @@ "year": 1792, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 11.924806286407968, - "c2": 2.6798007606770184, - "c3": -3.043672701830687, - "c4": -23.47378059363188, - "c5": -6.338621309187769, - "c6": 0.7745170886228792, - "c7": -21.952890321630512 + "points": { + "c1": -29.320049197412917, + "c2": -8.793405322141556, + "c3": -18.637638501829866, + "c4": 28.902782612797548, + "c5": -3.1333845150126294, + "c6": -19.918062228237247, + "c7": -4.282886036565994 }, - "vertexSeeds": { - "c1": 7.550744978912096, - "c2": 7.3461412300513125, - "c3": 7.349033698773611, - "c4": 7.529597672362441, - "c5": 7.379333751243737, - "c6": 7.34315528290615, - "c7": 7.237587187905322 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686558, + "c3": 9.015256588072106, + "c4": 7.212205270457692, + "c5": 5.409153952843279, + "c6": 3.606102635228826, + "c7": 1.803051317614413 }, "rgb": [58, 15, 49] }, @@ -322116,23 +322116,23 @@ "year": 1792, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 20.75229133800199, - "c2": 6.486331031336093, - "c3": -9.563688680968419, - "c4": -0.8849118750965985, - "c5": -17.99727321149262, - "c6": -21.48729120456946, - "c7": 22.001223313893647 + "points": { + "c1": 34.53031257048753, + "c2": -25.44362339425221, + "c3": 11.205541592012757, + "c4": 23.413600444350166, + "c5": 18.81891020143481, + "c6": -3.534310118499139, + "c7": -23.613301107329725 }, - "vertexSeeds": { - "c1": 5.145054261905402, - "c2": 4.701342008109133, - "c3": 5.337164255275708, - "c4": 4.706932707342381, - "c5": 4.392534411383542, - "c6": 4.640923393404909, - "c7": 5.113339840913855 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302358, + "c3": 6.4956079519186325, + "c4": 5.196486361534905, + "c5": 3.897364771151179, + "c6": 2.5982431807674526, + "c7": 1.2991215903837263 }, "rgb": [77, 76, 132] }, @@ -322143,23 +322143,23 @@ "year": 1792, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 25.898312537287346, - "c2": 24.19285445875432, - "c3": -26.922899220293733, - "c4": -1.5797161949819767, - "c5": 31.93868957777174, - "c6": -4.951981178856716, - "c7": -12.092759582237228 + "points": { + "c1": 27.51167466769524, + "c2": 31.241271217638356, + "c3": 27.26340238891961, + "c4": 18.947856085636644, + "c5": 23.130958035946513, + "c6": 31.424862588173625, + "c7": 35.36368880481106 }, - "vertexSeeds": { - "c1": 4.094389152670277, - "c2": 4.330196426861743, - "c3": 4.077359428836554, - "c4": 4.101849512854596, - "c5": 4.131235614712147, - "c6": 4.313316628117187, - "c7": 4.201710686692729 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009712, + "c3": 5.177993527508098, + "c4": 4.14239482200647, + "c5": 3.106796116504856, + "c6": 2.071197411003242, + "c7": 1.0355987055016145 }, "rgb": [58, 15, 49] }, @@ -322170,23 +322170,23 @@ "year": 1792, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 9.437925671903038, - "c2": 21.267060961115888, - "c3": -27.84198709991847, - "c4": 22.530827240658525, - "c5": -12.04295324079527, - "c6": 18.851378440043533, - "c7": -28.375037239050954 + "points": { + "c1": 23.316418403383764, + "c2": -7.159424080734521, + "c3": 26.939562156919266, + "c4": 8.868310141363196, + "c5": -18.04917570169239, + "c6": 4.242249288631939, + "c7": -4.332762189940862 }, - "vertexSeeds": { - "c1": 5.502851641622561, - "c2": 5.036499209755375, - "c3": 5.354432328797102, - "c4": 5.509368325102091, - "c5": 5.076807623323673, - "c6": 5.4625976022651175, - "c7": 5.125030357087846 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543683, + "c3": 6.634304207119744, + "c4": 5.307443365695789, + "c5": 3.9805825242718496, + "c6": 2.6537216828478947, + "c7": 1.3268608414239549 }, "rgb": [77, 76, 132] }, @@ -322197,23 +322197,23 @@ "year": 1792, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 0.4286425626334598, - "c2": 8.839028849544608, - "c3": -15.733212310598866, - "c4": -10.299261477686112, - "c5": -0.8664204599434271, - "c6": -26.52799607139406, - "c7": 12.119615193026139 + "points": { + "c1": -24.604890218833134, + "c2": -17.599700831203677, + "c3": 11.032470224059864, + "c4": -25.396844188649396, + "c5": 23.21205531200161, + "c6": -32.126169742804606, + "c7": 4.112469651521181 }, - "vertexSeeds": { - "c1": 1.631938229938921, - "c2": 2.072295957769292, - "c3": 1.880808836510416, - "c4": 2.0249977894180633, - "c5": 1.5983533157581635, - "c6": 1.8047346986036872, - "c7": 1.9951705323347395 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.9958391123439663, + "c3": 2.4965325936199734, + "c4": 1.9972260748959783, + "c5": 1.4979195561719831, + "c6": 0.9986130374479901, + "c7": 0.49930651872399506 }, "rgb": [238, 201, 159] }, @@ -322224,23 +322224,23 @@ "year": 1792, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -11.346447353713803, - "c2": 30.960860916713372, - "c3": 10.832824544612265, - "c4": -29.83849433310421, - "c5": 30.533788292547342, - "c6": 27.224206070267137, - "c7": 5.979224116545787 + "points": { + "c1": 32.95550370800537, + "c2": -24.633486838581693, + "c3": -22.184003217584568, + "c4": 21.74760958479599, + "c5": -23.26987741162058, + "c6": 16.141578786451134, + "c7": 8.297612032368178 }, - "vertexSeeds": { - "c1": 3.9955353090196284, - "c2": 4.114962602347734, - "c3": 4.07240681349789, - "c4": 4.1282139850486494, - "c5": 4.172695475230096, - "c6": 4.252378831121604, - "c7": 4.106424043778112 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090152, + "c3": 5.2242256125751245, + "c4": 4.179380490060108, + "c5": 3.1345353675450807, + "c6": 2.089690245030054, + "c7": 1.044845122515027 }, "rgb": [77, 76, 132] }, @@ -322251,23 +322251,23 @@ "year": 1792, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 20.881942397446295, - "c2": 21.065220030649918, - "c3": -22.81728824137361, - "c4": 13.238471955167178, - "c5": -15.421261442803175, - "c6": 1.8502215132019124, - "c7": -8.195660418767602 + "points": { + "c1": -5.356192178634654, + "c2": -1.1081987584766182, + "c3": -5.728548072193515, + "c4": -21.763401727735413, + "c5": 19.424112138344235, + "c6": -2.746634808896559, + "c7": 10.025265638241237 }, - "vertexSeeds": { - "c1": 3.8847986693856567, - "c2": 3.882619384492162, - "c3": 3.872611722078102, - "c4": 3.873396449693894, - "c5": 3.8771372298871882, - "c6": 3.8764448162606016, - "c7": 3.884502254545981 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.5755894590846315, + "c3": 4.646324549237224, + "c4": 3.717059639389816, + "c5": 2.7877947295422234, + "c6": 1.8585298196948157, + "c7": 0.9292649098474078 }, "rgb": [238, 201, 159] }, @@ -322278,23 +322278,23 @@ "year": 1792, "resistanceReported": false, "duration": 432000, - "curveSeeds": { - "c1": 7.786896506104142, - "c2": -3.000195053434349, - "c3": -1.2790199548762207, - "c4": -3.2289617997020095, - "c5": -2.583705143419343, - "c6": 3.611541003641225, - "c7": -7.386502025215497 + "points": { + "c1": -8.53898084769313, + "c2": -1.4092520853044377, + "c3": -11.978531018726203, + "c4": 3.8794754398787283, + "c5": 10.691668645446057, + "c6": 9.58509658364239, + "c7": -0.9485733744640257 }, - "vertexSeeds": { - "c1": 3.1236940515019316, - "c2": 3.17979571832463, - "c3": 2.959508063231573, - "c4": 3.2122644219806076, - "c5": 3.230269441599849, - "c6": 2.930955615595833, - "c7": 3.0210850078145386 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [77, 76, 132] }, @@ -322305,23 +322305,23 @@ "year": 1793, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": 10.40673817057759, - "c2": 47.97815188998908, - "c3": -36.219629764691334, - "c4": 50.88946961767989, - "c5": -45.459802375071035, - "c6": 49.47364893099001, - "c7": 25.851917886588637 + "points": { + "c1": 6.533018025529373, + "c2": -6.255224807193329, + "c3": 53.08838672123284, + "c4": -8.199409943339177, + "c5": 1.7261630974562294, + "c6": -37.00077663747688, + "c7": -43.09019558219207 }, - "vertexSeeds": { - "c1": 5.9219002053411085, - "c2": 5.311059373311241, - "c3": 5.719078053935608, - "c4": 5.533759198778788, - "c5": 5.752110021292825, - "c6": 5.506654762434563, - "c7": 5.418147764202756 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [77, 76, 132] }, @@ -322332,23 +322332,23 @@ "year": 1793, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": 49.65211954714166, - "c2": -24.440464093403023, - "c3": 30.750802024459112, - "c4": 32.20122390234297, - "c5": 6.90762927576781, - "c6": -47.61403351434253, - "c7": 23.21238869519882 + "points": { + "c1": -10.339420097049413, + "c2": 21.423985932761475, + "c3": 2.2512256128381907, + "c4": -44.25032895502044, + "c5": -13.265961323027923, + "c6": 26.602336559392192, + "c7": 46.736474456473395 }, - "vertexSeeds": { - "c1": 2.307634750587868, - "c2": 0.9473297855984539, - "c3": 3.0217452920504044, - "c4": 3.308136439262634, - "c5": 1.5478021488363045, - "c6": 2.4393434612834173, - "c7": 0.8747047652002207 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360611, + "c3": 4.230235783633843, + "c4": 3.3841886269070733, + "c5": 2.5381414701803053, + "c6": 1.6920943134535373, + "c7": 0.846047156726768 }, "rgb": [238, 201, 159] }, @@ -322359,23 +322359,23 @@ "year": 1793, "resistanceReported": false, "duration": 44928000, - "curveSeeds": { - "c1": -30.833455449711135, - "c2": 50.173910909932204, - "c3": -3.2494710586015145, - "c4": 45.67514034081185, - "c5": -33.61221575549314, - "c6": -34.277794016277085, - "c7": -49.40161553837173 + "points": { + "c1": 17.354179492226052, + "c2": -40.66490581557214, + "c3": -21.315574060730412, + "c4": 46.97616409085039, + "c5": 42.34054766647844, + "c6": 37.82407043082314, + "c7": -38.56330309464135 }, - "vertexSeeds": { - "c1": 1.2153126856803138, - "c2": 1.209905850708485, - "c3": 1.2030699750903588, - "c4": 1.2004333046366091, - "c5": 1.2402591331250314, - "c6": 1.2547937756522323, - "c7": 1.2880711750489506 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753114, + "c3": 1.5950069348127591, + "c4": 1.27600554785021, + "c5": 0.9570041608876557, + "c6": 0.638002773925105, + "c7": 0.3190013869625525 }, "rgb": [77, 76, 132] }, @@ -322386,23 +322386,23 @@ "year": 1794, "resistanceReported": false, "duration": 63676800, - "curveSeeds": { - "c1": 22.63077009582797, - "c2": -64.09549530333486, - "c3": 54.595707425323056, - "c4": 29.466193559480203, - "c5": -26.62748828140176, - "c6": -33.67857735659528, - "c7": 36.265754096767594 + "points": { + "c1": -68.00058877334382, + "c2": 31.349511647125027, + "c3": -62.38373059776235, + "c4": 49.362925807726825, + "c5": 58.95244441954874, + "c6": 71.4937163966578, + "c7": -71.69054972862583 }, - "vertexSeeds": { - "c1": 8.007377787087329, - "c2": 8.050932430636982, - "c3": 8.03621581230697, - "c4": 8.016218541087987, - "c5": 7.999245676831189, - "c6": 8.034014146782638, - "c7": 8.025475145511008 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732297, + "c3": 9.616273693943555, + "c4": 7.6930189551548125, + "c5": 5.769764216366071, + "c6": 3.846509477577483, + "c7": 1.9232547387887415 }, "rgb": [58, 15, 49] }, @@ -322413,23 +322413,23 @@ "year": 1792, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -13.349364105308783, - "c2": 30.049360774999613, - "c3": 18.284643227235946, - "c4": -34.18643952806428, - "c5": 32.80530108440563, - "c6": 0.03204309164418362, - "c7": 4.933109830985451 + "points": { + "c1": -9.497204808064016, + "c2": 36.089538235285346, + "c3": 7.063680253576109, + "c4": 30.658617013739217, + "c5": -35.892682636300265, + "c6": -1.0471947454300121, + "c7": -28.021909836381628 }, - "vertexSeeds": { - "c1": 6.153326683309415, - "c2": 6.1877672907324035, - "c3": 6.311741739148284, - "c4": 6.243495458690551, - "c5": 6.272321239193282, - "c6": 6.15764867631256, - "c7": 6.201402809968696 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233002, + "c3": 7.605177993527494, + "c4": 6.084142394821985, + "c5": 4.563106796116527, + "c6": 3.0420711974110177, + "c7": 1.5210355987055089 }, "rgb": [58, 15, 49] }, @@ -322440,23 +322440,23 @@ "year": 1792, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": -4.850401217266112, - "c2": -4.7769952543425305, - "c3": -8.867344590662618, - "c4": -10.425158210469561, - "c5": -7.895217331274143, - "c6": 0.3764194635794347, - "c7": 0.16631543833730333 + "points": { + "c1": -7.347528045819949, + "c2": 11.166788151572707, + "c3": -18.68260267255223, + "c4": 4.2622242611514665, + "c5": -19.306714276220575, + "c6": 19.207199076097744, + "c7": -2.2345706813463124 }, - "vertexSeeds": { - "c1": 2.191989551344448, - "c2": 3.855633718577727, - "c3": 3.2007994032303646, - "c4": 2.6143965047798616, - "c5": 2.746239703314842, - "c6": 2.845524806787763, - "c7": 3.693951690871228 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703652, + "c4": 3.6985668053629213, + "c5": 2.773925104022191, + "c6": 1.8492834026814606, + "c7": 0.9246417013407303 }, "rgb": [222, 0, 59] }, @@ -322467,23 +322467,23 @@ "year": 1792, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 6.893434163488145, - "c2": 2.3254460003187702, - "c3": 16.970444000457448, - "c4": -15.157773641249195, - "c5": 13.981755549102623, - "c6": -15.501850553969236, - "c7": 5.988730681743945 + "points": { + "c1": 2.0978786996184446, + "c2": 3.2926545586851645, + "c3": 23.28730594874026, + "c4": 17.833341966406117, + "c5": -19.786102274419733, + "c6": -1.2094650077663367, + "c7": 20.90626474838696 }, - "vertexSeeds": { - "c1": 6.064956055588823, - "c2": 6.072679136207557, - "c3": 6.049307079755517, - "c4": 6.076749568875747, - "c5": 6.058641686675268, - "c6": 6.100457461026039, - "c7": 6.0786624884457625 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669943, + "c3": 7.281553398058191, + "c4": 5.825242718446582, + "c5": 4.368932038834972, + "c6": 2.912621359223363, + "c7": 1.456310679611609 }, "rgb": [238, 201, 159] }, @@ -322494,23 +322494,23 @@ "year": 1792, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -7.653007472581628, - "c2": 19.410701062067545, - "c3": 22.547896242566566, - "c4": -17.677499047396374, - "c5": 17.157769081025513, - "c6": -23.25584676782303, - "c7": 19.52947327972997 + "points": { + "c1": -27.96486278251505, + "c2": -6.35013218842937, + "c3": -12.385500774194288, + "c4": 12.379973981109373, + "c5": -33.10494375740649, + "c6": 32.62365642796604, + "c7": 20.58366450749324 }, - "vertexSeeds": { - "c1": 3.524801587714947, - "c2": 2.9593935762568866, - "c3": 3.239155229946183, - "c4": 3.1300290097339434, - "c5": 3.313630254507239, - "c6": 2.9193671967136186, - "c7": 2.8856936997964904 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.07628294036061, + "c3": 4.230235783633842, + "c4": 3.3841886269070733, + "c5": 2.538141470180305, + "c6": 1.6920943134535367, + "c7": 0.8460471567267683 }, "rgb": [77, 76, 132] }, @@ -322521,23 +322521,23 @@ "year": 1792, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 16.015650561205707, - "c2": 2.46891865160606, - "c3": 7.297832896457873, - "c4": 20.079344078899798, - "c5": -14.681031917219844, - "c6": -2.2992459288259006, - "c7": -13.250699856020955 + "points": { + "c1": -27.125477603105413, + "c2": 10.329988881171236, + "c3": 11.719662985607325, + "c4": 10.819507087316726, + "c5": -5.8583444271922325, + "c6": 28.127309402221467, + "c7": -9.108917746609318 }, - "vertexSeeds": { - "c1": 6.483141883503528, - "c2": 6.466331430575057, - "c3": 6.428622483888188, - "c4": 6.436376063602315, - "c5": 6.438638462133945, - "c6": 6.436117880806376, - "c7": 6.427287250709101 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474385, + "c3": 7.7438742487285515, + "c4": 6.195099398982872, + "c5": 4.6463245492371925, + "c6": 3.097549699491513, + "c7": 1.5487748497456795 }, "rgb": [77, 76, 132] }, @@ -322548,23 +322548,23 @@ "year": 1793, "resistanceReported": false, "duration": 44928000, - "curveSeeds": { - "c1": 57.77236835556903, - "c2": -12.722973559658314, - "c3": -27.01812281108998, - "c4": -46.64694166607779, - "c5": -55.86866053312835, - "c6": -30.49860985012555, - "c7": 16.09798821813513 + "points": { + "c1": -37.80402809489402, + "c2": -0.3511350765523673, + "c3": -10.083242388446948, + "c4": 8.667695878537643, + "c5": 13.869667196692475, + "c6": -48.4875123689568, + "c7": -36.99141740470311 }, - "vertexSeeds": { - "c1": 4.370832225971156, - "c2": 4.512413767692739, - "c3": 4.308849097648589, - "c4": 4.285020368932205, - "c5": 4.348227944574124, - "c6": 4.452584010037629, - "c7": 4.455248435733527 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411926, + "c3": 5.409153952843268, + "c4": 4.327323162274611, + "c5": 3.2454923717059545, + "c6": 2.1636615811372977, + "c7": 1.0818307905686406 }, "rgb": [77, 76, 132] }, @@ -322575,23 +322575,23 @@ "year": 1792, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 24.607089485789697, - "c2": 10.633523483571015, - "c3": 25.15643106480677, - "c4": -24.996425545641, - "c5": 18.90934943139951, - "c6": -2.197830102055498, - "c7": -4.151974133597964 + "points": { + "c1": -2.312418140517252, + "c2": -11.348895574481812, + "c3": 20.2388024854742, + "c4": -26.180692465999257, + "c5": -29.307241060500004, + "c6": 26.591150136710954, + "c7": -4.707102396957158 }, - "vertexSeeds": { - "c1": 4.509914499584875, - "c2": 4.4717175068365, - "c3": 4.4542372609561065, - "c4": 4.430416975136055, - "c5": 4.4657190157071085, - "c6": 4.528594985693773, - "c7": 4.462939224102531 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452144, + "c3": 5.432269995376781, + "c4": 4.345815996301454, + "c5": 3.2593619972260903, + "c6": 2.172907998150727, + "c7": 1.0864539990753634 }, "rgb": [58, 15, 49] }, @@ -322602,23 +322602,23 @@ "year": 1792, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 11.257004313224037, - "c2": 18.34159069738248, - "c3": 36.14412296539646, - "c4": -28.855045117363698, - "c5": -38.23723492220701, - "c6": -28.077520775310376, - "c7": -17.28597553775593 + "points": { + "c1": -24.15493878262122, + "c2": 32.815117189187575, + "c3": -41.919774201027735, + "c4": -30.023595045311147, + "c5": 38.97626031624637, + "c6": -6.1855048255248875, + "c7": -8.175675950909081 }, - "vertexSeeds": { - "c1": 4.385467430126166, - "c2": 5.271245121449397, - "c3": 5.6642181970137555, - "c4": 5.389598151180612, - "c5": 5.061469274278059, - "c6": 4.7075750880234075, - "c7": 5.635722996924628 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790109, + "c4": 5.677300046232084, + "c5": 4.257975034674065, + "c6": 2.8386500231160454, + "c7": 1.4193250115580227 }, "rgb": [222, 0, 59] }, @@ -322629,23 +322629,23 @@ "year": 1793, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -18.14485780946806, - "c2": 12.066273687735993, - "c3": -40.738473922267204, - "c4": 4.770761838414359, - "c5": 10.669796246600548, - "c6": 12.70335705620478, - "c7": -16.615593490918013 + "points": { + "c1": 14.63935321829019, + "c2": 10.941758679139767, + "c3": 9.652528036072106, + "c4": 14.304416729871512, + "c5": -3.8369200508872936, + "c6": -8.967468712596776, + "c7": -5.5056414563897675 }, - "vertexSeeds": { - "c1": 4.558174960915102, - "c2": 4.536396510903991, - "c3": 4.558332965810083, - "c4": 4.54241843108281, - "c5": 4.570530883143884, - "c6": 4.544485419410341, - "c7": 4.54186599905571 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.5742024965326245, + "c3": 5.478502080443818, + "c4": 4.382801664355084, + "c5": 3.2871012482662763, + "c6": 2.191400832177542, + "c7": 1.0957004160887345 }, "rgb": [238, 201, 159] }, @@ -322656,23 +322656,23 @@ "year": 1794, "resistanceReported": false, "duration": 69811200, - "curveSeeds": { - "c1": -75.64459753788698, - "c2": 32.794387684986276, - "c3": 46.54128417668478, - "c4": 70.55627409024903, - "c5": -64.63591803837485, - "c6": -11.381627440440354, - "c7": 59.817269575863335 + "points": { + "c1": 29.657896190226026, + "c2": 30.942532275161497, + "c3": -63.29860864545839, + "c4": -72.40428214078707, + "c5": 49.357539550329605, + "c6": -29.54242306873988, + "c7": -16.174665696378256 }, - "vertexSeeds": { - "c1": 3.126085893528553, - "c2": 2.6642645435072927, - "c3": 2.6635864280850106, - "c4": 2.626707370506645, - "c5": 2.7660071343145263, - "c6": 3.021945936445499, - "c7": 2.977268370772526 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.49375866851595, + "c3": 3.744798890429957, + "c4": 2.9958391123439645, + "c5": 2.2468793342579776, + "c6": 1.4979195561719851, + "c7": 0.7489597780859926 }, "rgb": [238, 201, 159] }, @@ -322683,23 +322683,23 @@ "year": 1793, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": 28.62227814179596, - "c2": -12.852159057532088, - "c3": -34.47120692599542, - "c4": -3.8691557954296982, - "c5": -42.39658807545068, - "c6": 26.482171324020513, - "c7": 27.551523287867695 + "points": { + "c1": -42.96141224745879, + "c2": -22.4923383964454, + "c3": -20.07474101919835, + "c4": 2.982208291801932, + "c5": -26.913334826941778, + "c6": 0.09921572525505695, + "c7": -5.419778836740001 }, - "vertexSeeds": { - "c1": 4.617054210502406, - "c2": 5.9867385568589055, - "c3": 5.779452552163162, - "c4": 4.390852857332936, - "c5": 5.3947610086314635, - "c6": 5.595222238595812, - "c7": 5.892969874554943 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061028, + "c4": 6.102635228848821, + "c5": 4.576976421636615, + "c6": 3.0513176144244105, + "c7": 1.5256588072122066 }, "rgb": [86, 146, 138] }, @@ -322710,23 +322710,23 @@ "year": 1792, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 8.725462973390975, - "c2": 28.89809937677066, - "c3": 30.74912389037651, - "c4": 27.590604584537758, - "c5": 13.06830588883524, - "c6": -11.428659110866334, - "c7": 17.66328843356125 + "points": { + "c1": 18.29517900131676, + "c2": 21.010833024933085, + "c3": -25.555578751633465, + "c4": -18.949165600417633, + "c5": 33.41603365520311, + "c6": -10.459377634616352, + "c7": 20.509997173841725 }, - "vertexSeeds": { - "c1": 5.2799397430085175, - "c2": 5.39295052367488, - "c3": 6.116172625359125, - "c4": 5.2948497221758855, - "c5": 4.971054021424514, - "c6": 5.178894961104748, - "c7": 6.279091284404922 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072118, + "c3": 7.5127138233934385, + "c4": 6.010171058714748, + "c5": 4.507628294036059, + "c6": 3.005085529357379, + "c7": 1.5025427646786895 }, "rgb": [58, 15, 49] }, @@ -322737,23 +322737,23 @@ "year": 1793, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 18.34153379332347, - "c2": -35.769006307539705, - "c3": -46.660695120753054, - "c4": 29.699800465033128, - "c5": 24.596518749594487, - "c6": -9.55394519694245, - "c7": 10.894398765795657 + "points": { + "c1": -13.56048635946835, + "c2": 46.395605197345, + "c3": 47.70339432707187, + "c4": 2.3882671019229704, + "c5": -35.90898919396591, + "c6": -47.155314290986574, + "c7": 32.079892324090686 }, - "vertexSeeds": { - "c1": 3.2642041852704446, - "c2": 3.4556932492483563, - "c3": 3.240948178701051, - "c4": 3.259153734379263, - "c5": 3.436388438258512, - "c6": 3.288078652488088, - "c7": 3.184187376018249 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239948, + "c3": 4.160887656033283, + "c4": 3.328710124826628, + "c5": 2.496532593619974, + "c6": 1.664355062413309, + "c7": 0.8321775312066545 }, "rgb": [58, 15, 49] }, @@ -322764,23 +322764,23 @@ "year": 1793, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -23.66817120545615, - "c2": -26.247493788601655, - "c3": 4.5444871714827, - "c4": -40.95047494466426, - "c5": 17.75067321246089, - "c6": 43.33776022462887, - "c7": 45.236856324339904 + "points": { + "c1": -23.4516570852042, + "c2": 6.925514364791965, + "c3": 7.84016608619158, + "c4": 0.07015642764797292, + "c5": -3.6913795014835102, + "c6": -21.416094506540414, + "c7": 27.92369229390136 }, - "vertexSeeds": { - "c1": 6.484059680249811, - "c2": 6.2633224975120605, - "c3": 5.928157115067079, - "c4": 5.8725560977458455, - "c5": 6.019796216909147, - "c6": 6.033662678279569, - "c7": 6.036130130316782 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.859454461396207, + "c4": 6.28756356911697, + "c5": 4.7156726768377215, + "c6": 3.143781784558485, + "c7": 1.5718908922792358 }, "rgb": [77, 76, 132] }, @@ -322791,23 +322791,23 @@ "year": 1792, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -3.8433163469536495, - "c2": 17.100073548040257, - "c3": -1.9998523899682148, - "c4": -6.9213007585773205, - "c5": 14.434041330848352, - "c6": 27.207161701624116, - "c7": -7.502156492502007 + "points": { + "c1": 14.02045306595712, + "c2": 31.02894500862898, + "c3": 12.625098579153821, + "c4": 1.2434953729615685, + "c5": 24.17419372421717, + "c6": -16.257672172323254, + "c7": -11.885280714844871 }, - "vertexSeeds": { - "c1": 4.735606493394308, - "c2": 4.620087758241811, - "c3": 4.67764402544653, - "c4": 4.617931435669942, - "c5": 4.574452095970753, - "c6": 4.718383712915653, - "c7": 4.611825899153377 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854377, + "c3": 5.663430420711964, + "c4": 4.530744336569575, + "c5": 3.3980582524271883, + "c6": 2.2653721682848005, + "c7": 1.1326860841423876 }, "rgb": [58, 15, 49] }, @@ -322818,23 +322818,23 @@ "year": 1792, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -17.712471888919108, - "c2": 25.60390702777198, - "c3": -27.342104234328005, - "c4": 27.80667814597244, - "c5": 30.331613138816323, - "c6": 20.27672923868696, - "c7": 21.26264397501177 + "points": { + "c1": -3.4399060954036713, + "c2": -11.32100186696088, + "c3": -2.837681747219662, + "c4": 26.786915147095897, + "c5": -1.7711285267496848, + "c6": 10.819844252261852, + "c7": -26.442737899701854 }, - "vertexSeeds": { - "c1": 1.94300518134715, - "c2": 1.94300518134715, - "c3": 1.94300518134715, - "c4": 1.94300518134715, - "c5": 1.94300518134715, - "c6": 1.94300518134715, - "c7": 1.94300518134715 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -322845,23 +322845,23 @@ "year": 1792, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 11.65917889221415, - "c2": -9.82322541640941, - "c3": -23.598570342832417, - "c4": -19.250675477736035, - "c5": 22.651974772239797, - "c6": -12.687758897088994, - "c7": 0.2862949151216796 + "points": { + "c1": -23.161815851918067, + "c2": -31.50683376480388, + "c3": 38.33860553084295, + "c4": -22.813623870607294, + "c5": 10.77369317982756, + "c6": -30.917447230227992, + "c7": -32.760490204695 }, - "vertexSeeds": { - "c1": 5.69008577159814, - "c2": 5.379527487303734, - "c3": 5.207266871704282, - "c4": 5.962503520449461, - "c5": 5.762543119297781, - "c6": 5.327482213038032, - "c7": 5.73852660582016 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [77, 76, 132] }, @@ -322872,23 +322872,23 @@ "year": 1792, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 37.917784167541285, - "c2": 8.885905197670894, - "c3": -35.99708150614066, - "c4": 38.82223532863405, - "c5": 16.035900401164746, - "c6": 7.324387516129434, - "c7": 11.21166123428312 + "points": { + "c1": -33.08547038783267, + "c2": -2.37705294793971, + "c3": -6.973576379857455, + "c4": -29.33741824281959, + "c5": -39.75428785819605, + "c6": 40.45156771518147, + "c7": 34.598606282045424 }, - "vertexSeeds": { - "c1": 2.6453266180665986, - "c2": 2.698073753269965, - "c3": 2.6913932171487938, - "c4": 2.684370877089649, - "c5": 2.6623583464701435, - "c6": 2.6428079241767954, - "c7": 2.6857256659952737 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310867, + "c3": 3.236245954692551, + "c4": 2.588996763754058, + "c5": 1.941747572815522, + "c6": 1.294498381877029, + "c7": 0.6472491909385358 }, "rgb": [58, 15, 49] }, @@ -322899,23 +322899,23 @@ "year": 1792, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -29.195884086978793, - "c2": 35.403362496458115, - "c3": -2.1142733954201987, - "c4": -11.754544829520814, - "c5": -8.217019758669093, - "c6": 23.761474610711495, - "c7": 18.086238507278445 + "points": { + "c1": 10.22414949379261, + "c2": -19.479143501970654, + "c3": -7.558654996533868, + "c4": -4.5490979395643265, + "c5": -23.09051928941314, + "c6": 8.564906219973182, + "c7": 7.49360303713101 }, - "vertexSeeds": { - "c1": 3.7556815522991323, - "c2": 4.10014632016747, - "c3": 3.9036391791609155, - "c4": 3.767253550805654, - "c5": 3.886817893277195, - "c6": 3.765645220734283, - "c7": 4.484767046160513 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411925, + "c3": 5.409153952843273, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.1636615811373052, + "c7": 1.0818307905686526 }, "rgb": [222, 0, 59] }, @@ -322926,23 +322926,23 @@ "year": 1793, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 29.220604105596337, - "c2": -24.97974660838632, - "c3": -8.030061464228453, - "c4": 10.464289925078006, - "c5": 24.506158955549154, - "c6": 6.975360548578415, - "c7": -40.55447597133517 + "points": { + "c1": -31.18157906026553, + "c2": -19.343548979251416, + "c3": 23.562450407558757, + "c4": 50.5510666079073, + "c5": -26.395395779684566, + "c6": 9.65994188265978, + "c7": -35.597535256297675 }, - "vertexSeeds": { - "c1": 4.695300664687503, - "c2": 4.8277051090434675, - "c3": 4.084960455064818, - "c4": 4.338322294389735, - "c5": 4.120431551052872, - "c6": 4.792804300679518, - "c7": 4.705329252618755 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -322953,23 +322953,23 @@ "year": 1793, "resistanceReported": false, "duration": 41040000, - "curveSeeds": { - "c1": -17.03833263649321, - "c2": 37.81316483239832, - "c3": -12.908270197424969, - "c4": 43.01212743458789, - "c5": 44.90438882328896, - "c6": -26.92941041360708, - "c7": 28.523407330271105 + "points": { + "c1": -39.10659597015515, + "c2": 48.435296335171806, + "c3": 11.45893531579204, + "c4": 51.738314168710595, + "c5": -24.451561810077123, + "c6": 44.93499948638411, + "c7": 48.320467503351914 }, - "vertexSeeds": { - "c1": 10.70619088836133, - "c2": 10.587582645112228, - "c3": 10.088977757646223, - "c4": 10.38216392692179, - "c5": 10.259380776180468, - "c6": 10.286286490628688, - "c7": 10.635416395249111 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403581, + "c3": 12.875635691169679, + "c4": 10.300508552935721, + "c5": 7.725381414701818, + "c6": 5.1502542764678605, + "c7": 2.5751271382339027 }, "rgb": [86, 146, 138] }, @@ -322980,23 +322980,23 @@ "year": 1793, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -9.015863597681069, - "c2": -0.9742242365796159, - "c3": -13.328253205569869, - "c4": 30.87774636585241, - "c5": 32.291816211758594, - "c6": 17.93712609032667, - "c7": -39.49471231261729 + "points": { + "c1": 7.121329051364057, + "c2": -6.757303146314506, + "c3": -42.632923088175076, + "c4": 5.909360893337897, + "c5": 27.30298483475432, + "c6": 20.840246315488848, + "c7": 7.933639607990592 }, - "vertexSeeds": { - "c1": 9.339865955008714, - "c2": 9.620406299525191, - "c3": 8.991124106572677, - "c4": 9.322361373441625, - "c5": 9.534534841300228, - "c6": 9.047681477504435, - "c7": 9.72729204796553 + "offsets": { + "c1": 16.472491909385116, + "c2": 14.119278779472955, + "c3": 11.766065649560792, + "c4": 9.41285251964865, + "c5": 7.059639389736487, + "c6": 4.706426259824325, + "c7": 2.3532131299121626 }, "rgb": [222, 0, 59] }, @@ -323007,23 +323007,23 @@ "year": 1792, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -12.992214505198508, - "c2": 28.019682435839428, - "c3": -7.176528450034258, - "c4": -15.937697526634413, - "c5": 13.366514862862765, - "c6": 32.32630293094738, - "c7": -1.9112730895076773 + "points": { + "c1": -31.688681578503683, + "c2": -13.2490047079513, + "c3": 1.1939783816434328, + "c4": 1.7130475899758935, + "c5": -8.169212393702605, + "c6": 19.423894332776662, + "c7": 6.393936106645299 }, - "vertexSeeds": { - "c1": 1.94300518134715, - "c2": 1.94300518134715, - "c3": 1.94300518134715, - "c4": 1.94300518134715, - "c5": 1.94300518134715, - "c6": 1.94300518134715, - "c7": 1.94300518134715 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -323034,23 +323034,23 @@ "year": 1792, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 21.768407009069705, - "c2": 15.167291947768561, - "c3": 22.957816959578516, - "c4": -23.362322008156973, - "c5": 14.34105404088686, - "c6": -10.222416764101622, - "c7": 14.603778599749191 + "points": { + "c1": 25.038583192630597, + "c2": -18.37477027874651, + "c3": 22.45715618617711, + "c4": -7.4687734810473145, + "c5": -19.201948750912617, + "c6": -1.2453541373233783, + "c7": 15.938356351532171 }, - "vertexSeeds": { - "c1": 4.6741917153291865, - "c2": 4.698204286534373, - "c3": 4.665892904523096, - "c4": 4.709126755693624, - "c5": 4.712459905870015, - "c6": 4.670764689398319, - "c7": 4.702221943375888 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.7683772538141795, + "c3": 5.640314378178446, + "c4": 4.512251502542787, + "c5": 3.3841886269070525, + "c6": 2.2561257512713935, + "c7": 1.1280628756357338 }, "rgb": [238, 201, 159] }, @@ -323061,23 +323061,23 @@ "year": 1792, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 12.022603418965701, - "c2": 8.032573375948644, - "c3": 3.791599119649497, - "c4": -18.65610690846661, - "c5": 28.64867303817541, - "c6": 18.622642603588723, - "c7": 25.525608585511513 + "points": { + "c1": 4.550428070946005, + "c2": 36.88118200974366, + "c3": -16.51133921193023, + "c4": -8.644671462745084, + "c5": -0.49883764377514694, + "c6": 1.3962205801180119, + "c7": -6.435061733636072 }, - "vertexSeeds": { - "c1": 5.307344527839111, - "c2": 5.302604188362544, - "c3": 5.1440388752866, - "c4": 5.320619113982221, - "c5": 5.030575183869803, - "c6": 5.323158067264001, - "c7": 5.184061847880639 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061029, + "c3": 6.356911696717527, + "c4": 5.085529357374027, + "c5": 3.8141470180305257, + "c6": 2.5427646786870026, + "c7": 1.2713823393435013 }, "rgb": [238, 201, 159] }, @@ -323088,23 +323088,23 @@ "year": 1793, "resistanceReported": false, "duration": 43286400, - "curveSeeds": { - "c1": 14.389470246329957, - "c2": -23.021184935563355, - "c3": 34.60652477302694, - "c4": 56.649179742567235, - "c5": 9.165184606247344, - "c6": -43.560758410129274, - "c7": -47.00767254923248 + "points": { + "c1": -27.71264640511824, + "c2": 30.025268188069425, + "c3": -10.37549225406692, + "c4": 5.622141255628243, + "c5": 23.224824879411067, + "c6": -31.766283355907483, + "c7": 54.26401387303576 }, - "vertexSeeds": { - "c1": 2.4526619008050603, - "c2": 2.3793943936015403, - "c3": 2.461957182978151, - "c4": 2.3470336375554077, - "c5": 2.447635082490548, - "c6": 2.372037177702456, - "c7": 2.433718836960235 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484016, + "c3": 2.9588534442903383, + "c4": 2.3670827554322678, + "c5": 1.7753120665742044, + "c6": 1.1835413777161339, + "c7": 0.5917706888580637 }, "rgb": [86, 146, 138] }, @@ -323115,23 +323115,23 @@ "year": 1793, "resistanceReported": false, "duration": 47779200, - "curveSeeds": { - "c1": 57.336535747848785, - "c2": -62.3439862249319, - "c3": -10.08613846867997, - "c4": 12.203904907540121, - "c5": 44.889752636324005, - "c6": -45.585073251190416, - "c7": -9.765613470006414 + "points": { + "c1": 13.577100757608818, + "c2": 5.894669096070118, + "c3": 12.989340169203231, + "c4": 42.41350267571009, + "c5": -20.98068761241386, + "c6": 55.70581268743106, + "c7": 37.95327626711017 }, - "vertexSeeds": { - "c1": 2.883118437415989, - "c2": 2.915342635042167, - "c3": 3.0032219320382345, - "c4": 3.1051862038076674, - "c5": 3.149074509038448, - "c6": 3.238965562003622, - "c7": 3.186582203447314 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918171, + "c3": 3.9759593157651447, + "c4": 3.1807674526121117, + "c5": 2.3855755894590853, + "c6": 1.590383726306059, + "c7": 0.7951918631530329 }, "rgb": [222, 0, 59] }, @@ -323142,23 +323142,23 @@ "year": 1793, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -26.12914216638072, - "c2": 39.123079364771094, - "c3": -2.186390318364147, - "c4": -3.9916889758352383, - "c5": -14.049924479052077, - "c6": -4.491173797258412, - "c7": -28.1897905094156 + "points": { + "c1": -44.76291957765969, + "c2": 17.57679441151749, + "c3": -2.852549890183937, + "c4": -14.429370780789803, + "c5": -23.518342251625082, + "c6": -0.13891643604319626, + "c7": 2.9261638435723256 }, - "vertexSeeds": { - "c1": 4.741450970700789, - "c2": 4.498157383629747, - "c3": 4.379157379031727, - "c4": 4.6866097861832525, - "c5": 4.684817889550258, - "c6": 4.46817447439113, - "c7": 4.528639451344374 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.0457697642163675, + "c3": 5.871474803513635, + "c4": 4.697179842810909, + "c5": 3.5228848821081837, + "c6": 2.348589921405451, + "c7": 1.1742949607027255 }, "rgb": [58, 15, 49] }, @@ -323169,23 +323169,23 @@ "year": 1792, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": -2.907778264090492, - "c2": 15.840314439093781, - "c3": -3.791917801295014, - "c4": -20.82822667584834, - "c5": -0.31503762922028855, - "c6": -11.371542011203978, - "c7": -12.976284175424137 + "points": { + "c1": 20.18003218252013, + "c2": 6.512335043523553, + "c3": -11.759034011581154, + "c4": 21.201268309505508, + "c5": 9.814230439361125, + "c6": -14.123878508130945, + "c7": 5.897699352704308 }, - "vertexSeeds": { - "c1": 3.2097172313689506, - "c2": 3.135121951946448, - "c3": 2.941169803773132, - "c4": 3.0963196000491813, - "c5": 3.2051444918561476, - "c6": 3.000807795244271, - "c7": 2.936931956031747 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [222, 0, 59] }, @@ -323196,23 +323196,23 @@ "year": 1792, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -14.809660002402772, - "c2": -23.88193506963691, - "c3": -24.5878257440892, - "c4": -30.946678059469047, - "c5": 10.010979266590958, - "c6": 6.5354564971854145, - "c7": 20.070559710086023 + "points": { + "c1": -25.420835649223772, + "c2": 10.444019812676274, + "c3": 37.25379121098261, + "c4": -22.27548802861632, + "c5": -6.520312633512411, + "c6": 1.5399932950660613, + "c7": -35.149242837465955 }, - "vertexSeeds": { - "c1": 4.277378533566227, - "c2": 4.512579698576371, - "c3": 4.431756263380827, - "c4": 4.403194451479096, - "c5": 4.386540675888795, - "c6": 4.204830250187536, - "c7": 4.389821141704725 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411927, + "c3": 5.40915395284327, + "c4": 4.327323162274614, + "c5": 3.245492371705958, + "c6": 2.1636615811373128, + "c7": 1.0818307905686564 }, "rgb": [222, 0, 59] }, @@ -323223,23 +323223,23 @@ "year": 1792, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -16.746964757384013, - "c2": 6.264234429798599, - "c3": -16.745833642808428, - "c4": -3.1698656118995316, - "c5": -6.908095368120659, - "c6": -20.331232637887037, - "c7": -10.845418415517468 + "points": { + "c1": -12.38849743559464, + "c2": 19.353602983000947, + "c3": 18.858805627943923, + "c4": -3.083377631600513, + "c5": -3.454322601166602, + "c6": 15.793643014058645, + "c7": 25.986985963777578 }, - "vertexSeeds": { - "c1": 4.7481016140957335, - "c2": 4.764937581422714, - "c3": 4.645062254255556, - "c4": 4.608139682920079, - "c5": 4.529625951056358, - "c6": 4.627490131671623, - "c7": 4.6799265463459925 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975038, + "c3": 5.732778548312534, + "c4": 4.5862228386500306, + "c5": 3.4396671289875265, + "c6": 2.2931114193250077, + "c7": 1.1465557096625039 }, "rgb": [58, 15, 49] }, @@ -323250,23 +323250,23 @@ "year": 1793, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -24.441407100485655, - "c2": -38.687118427579215, - "c3": -27.45928774985242, - "c4": 7.085480076097021, - "c5": -24.644364552486294, - "c6": -0.09201605629260001, - "c7": 21.945500856654917 + "points": { + "c1": 32.07050823360691, + "c2": 15.936900758577934, + "c3": 6.719459865473112, + "c4": -8.81359612559887, + "c5": 17.12257195776757, + "c6": -17.9574039090965, + "c7": -27.255253014616528 }, - "vertexSeeds": { - "c1": 2.1091325453172973, - "c2": 2.1676783645026196, - "c3": 2.137036824312383, - "c4": 2.1676717868097173, - "c5": 2.3442581741696467, - "c6": 2.154133982346699, - "c7": 2.0946805107936033 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.384188626907073, + "c3": 2.8201571890892274, + "c4": 2.256125751271381, + "c5": 1.692094313453535, + "c6": 1.128062875635689, + "c7": 0.5640314378178427 }, "rgb": [238, 201, 159] }, @@ -323277,23 +323277,23 @@ "year": 1793, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -32.35441190059917, - "c2": 7.139832439342008, - "c3": 10.361641939898306, - "c4": 27.005851559823, - "c5": -7.6665307264693965, - "c6": 36.394175371518315, - "c7": 0.20997366552965957 + "points": { + "c1": 21.523697198824777, + "c2": 33.60183883750511, + "c3": 36.959732323361564, + "c4": -1.2865011150563959, + "c5": 18.760720342442767, + "c6": -16.59362730085417, + "c7": 41.13403002585143 }, - "vertexSeeds": { - "c1": 7.534626637076435, - "c2": 7.501021220598637, - "c3": 7.5165399241025375, - "c4": 7.552888927517303, - "c5": 7.516877056141667, - "c6": 7.5267904306567806, - "c7": 7.538473658857694 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686478, + "c3": 9.015256588072225, + "c4": 7.212205270457732, + "c5": 5.409153952843239, + "c6": 3.6061026352287464, + "c7": 1.8030513176144927 }, "rgb": [86, 146, 138] }, @@ -323304,23 +323304,23 @@ "year": 1792, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 15.836106173487295, - "c2": -15.67090457571567, - "c3": -7.53834824549152, - "c4": -21.163375953818218, - "c5": -7.080604484829383, - "c6": -26.88655206746552, - "c7": -18.15389499469503 + "points": { + "c1": -13.104029589125332, + "c2": 32.24921777297054, + "c3": 32.550795782955674, + "c4": 22.188903225749137, + "c5": 38.21612020957507, + "c6": -9.091552268499584, + "c7": 0.25656726908990635 }, - "vertexSeeds": { - "c1": 6.329298887289065, - "c2": 6.2839312426623355, - "c3": 6.326603915458281, - "c4": 6.361592359634715, - "c5": 6.187171351842794, - "c6": 5.933093397372253, - "c7": 6.122786777039133 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [222, 0, 59] }, @@ -323331,23 +323331,23 @@ "year": 1793, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -25.663068305115946, - "c2": 40.42079639549056, - "c3": 4.359507076558813, - "c4": -21.75880666124706, - "c5": 19.21479922459588, - "c6": -7.0996657385210185, - "c7": -34.671702732067295 + "points": { + "c1": -28.829743534493794, + "c2": -31.943022113832846, + "c3": -0.7349110811212114, + "c4": 10.157124378616352, + "c5": 0.3895110898069376, + "c6": 2.4054793188039483, + "c7": 38.64143214906212 }, - "vertexSeeds": { - "c1": 4.4012006176275245, - "c2": 4.574747515381734, - "c3": 4.404106268004187, - "c4": 4.237209184366823, - "c5": 4.351511672736354, - "c6": 4.442966797443559, - "c7": 4.346673411008732 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733706, + "c3": 5.594082293111418, + "c4": 4.475265834489138, + "c5": 3.356449375866849, + "c6": 2.237632917244569, + "c7": 1.1188164586222802 }, "rgb": [86, 146, 138] }, @@ -323358,23 +323358,23 @@ "year": 1792, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -15.141709544330398, - "c2": -5.823623579195793, - "c3": 7.0286659266323, - "c4": -6.545349950337119, - "c5": 2.6029236373448015, - "c6": 0.25265024018887416, - "c7": 20.787838838673597 + "points": { + "c1": 9.561691784459828, + "c2": 4.991358038557205, + "c3": -0.7439150319454733, + "c4": 23.640051607330232, + "c5": 17.11511611662873, + "c6": -10.094132244298676, + "c7": -0.4260433104103605 }, - "vertexSeeds": { - "c1": 3.6407883874103715, - "c2": 3.6880202375338866, - "c3": 3.655355803303276, - "c4": 3.7213899799203056, - "c5": 3.761589910774274, - "c6": 3.7210677164616777, - "c7": 3.760538413388905 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.4646324549237235, + "c3": 4.55386037910309, + "c4": 3.6430883032824752, + "c5": 2.7323162274618618, + "c6": 1.8215441516412276, + "c7": 0.9107720758206138 }, "rgb": [238, 201, 159] }, @@ -323385,23 +323385,23 @@ "year": 1792, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 29.032484545343927, - "c2": -18.538450432076978, - "c3": -30.025766488931822, - "c4": 2.9883292984727774, - "c5": -16.993592092996607, - "c6": -28.300355105900426, - "c7": -20.487698938380827 + "points": { + "c1": 5.85825879100333, + "c2": -26.87193282924975, + "c3": -18.997210206500785, + "c4": 37.183183137917375, + "c5": -15.221254750376776, + "c6": 24.85984975978571, + "c7": -26.83480489868943 }, - "vertexSeeds": { - "c1": 4.233845969308668, - "c2": 4.2206562496620625, - "c3": 4.20931145352507, - "c4": 4.19317026674699, - "c5": 4.1910930662039805, - "c6": 4.229525519501792, - "c7": 4.235363521321167 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848799, + "c3": 5.085529357374025, + "c4": 4.068423485899199, + "c5": 3.0513176144244247, + "c6": 2.0342117429495996, + "c7": 1.0171058714747745 }, "rgb": [86, 146, 138] }, @@ -323412,23 +323412,23 @@ "year": 1792, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 8.204876447546894, - "c2": 20.38497293525917, - "c3": 9.11278092532175, - "c4": -28.19617395201155, - "c5": 17.684685354300996, - "c6": 23.869773557166944, - "c7": 28.21415533475397 + "points": { + "c1": 8.244674001075659, + "c2": 21.07014388701461, + "c3": -30.62770703698948, + "c4": 14.218505820178862, + "c5": -27.07934589558595, + "c6": 0.9382536915994706, + "c7": -27.940319548290635 }, - "vertexSeeds": { - "c1": 6.5992888078383665, - "c2": 6.929491222464469, - "c3": 6.636625365541789, - "c4": 7.032893728738172, - "c5": 7.166293375925749, - "c6": 7.140519361216038, - "c7": 6.595994341714333 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.42995839112344, + "c3": 8.69163199260287, + "c4": 6.9533055940823, + "c5": 5.214979195561729, + "c6": 3.4766527970411416, + "c7": 1.7383263985205877 }, "rgb": [58, 15, 49] }, @@ -323439,23 +323439,23 @@ "year": 1794, "resistanceReported": false, "duration": 63849600, - "curveSeeds": { - "c1": 72.67019089100621, - "c2": -20.021409745304638, - "c3": 0.8522301069122875, - "c4": -26.25295750757565, - "c5": 55.926574175874165, - "c6": -72.25326127988731, - "c7": -50.50299412834059 + "points": { + "c1": 64.69284129156513, + "c2": 78.88905262459205, + "c3": 39.500680443546685, + "c4": 32.93214869049642, + "c5": 17.8363154569103, + "c6": 70.83868251994657, + "c7": 24.93488629747482 }, - "vertexSeeds": { - "c1": 5.243706289743941, - "c2": 5.6793042396089, - "c3": 5.908631088270398, - "c4": 5.327465075228278, - "c5": 5.534209328955487, - "c6": 5.41807586643854, - "c7": 5.928130567131934 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [58, 15, 49] }, @@ -323466,23 +323466,23 @@ "year": 1793, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 3.141792562863486, - "c2": -32.68991026815143, - "c3": -8.27826647381864, - "c4": -21.759983641611925, - "c5": -18.00395593472094, - "c6": 28.571537990212747, - "c7": 34.206343020239416 + "points": { + "c1": -17.583115630673582, + "c2": -20.914805099962557, + "c3": -33.27809957843806, + "c4": 30.92318178221724, + "c5": -1.6515873260569265, + "c6": 37.30099310773501, + "c7": 32.78753907780275 }, - "vertexSeeds": { - "c1": 1.5457296532649227, - "c2": 1.5384420026305916, - "c3": 1.5395946444305735, - "c4": 1.5382968411904256, - "c5": 1.5504022912214843, - "c6": 1.5498382103366752, - "c7": 1.5495820979336397 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257986, + "c3": 1.8723994452149633, + "c4": 1.497919556171978, + "c5": 1.123439667128993, + "c6": 0.7489597780859705, + "c7": 0.37447988904298524 }, "rgb": [86, 146, 138] }, @@ -323493,23 +323493,23 @@ "year": 1792, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 15.112342386605356, - "c2": 14.377619823239158, - "c3": 8.992949661031204, - "c4": 13.954674336605905, - "c5": -4.851548688644069, - "c6": 1.4452238238290533, - "c7": -7.400003801379828 + "points": { + "c1": 13.883417626806875, + "c2": 6.218905761180459, + "c3": 21.096122937712963, + "c4": 14.322540095697263, + "c5": 12.754325041453768, + "c6": -2.313449772346356, + "c7": -3.0104281472437684 }, - "vertexSeeds": { - "c1": 2.2987306170066435, - "c2": 2.4995970005162054, - "c3": 2.493702239667751, - "c4": 2.3613158972448005, - "c5": 2.3062632792874798, - "c6": 2.332058616140574, - "c7": 2.3438080174515723 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228844, + "c3": 3.0050855293573755, + "c4": 2.4040684234859016, + "c5": 1.8030513176144276, + "c6": 1.2020342117429481, + "c7": 0.6010171058714741 }, "rgb": [222, 0, 59] }, @@ -323520,23 +323520,23 @@ "year": 1792, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": -3.9950195343169703, - "c2": -6.938920686934178, - "c3": 7.7481950331465015, - "c4": 15.375947540207584, - "c5": 15.394574878973124, - "c6": -6.081978308766473, - "c7": -19.198742284199792 + "points": { + "c1": 4.892617336788479, + "c2": 3.721987873948315, + "c3": 17.404931615464584, + "c4": -4.5182553730041555, + "c5": 2.62359403168281, + "c6": -5.144267463333243, + "c7": -2.031588627230331 }, - "vertexSeeds": { - "c1": 2.33160621761658, - "c2": 2.33160621761658, - "c3": 2.33160621761658, - "c4": 2.33160621761658, - "c5": 2.33160621761658, - "c6": 2.33160621761658, - "c7": 2.33160621761658 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -323547,23 +323547,23 @@ "year": 1793, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 33.975269704563274, - "c2": 14.654724015091524, - "c3": -31.219647881756774, - "c4": -17.379226442981587, - "c5": -10.28548992359027, - "c6": -11.870334865786461, - "c7": 16.745113009245713 + "points": { + "c1": 23.943408068544286, + "c2": 2.419540704221731, + "c3": 30.635710031124063, + "c4": 27.728023367093144, + "c5": 34.83595295554768, + "c6": 25.171684561287222, + "c7": -0.7663474128683845 }, - "vertexSeeds": { - "c1": 5.501811822522462, - "c2": 6.490505091496706, - "c3": 5.82129244741059, - "c4": 6.7674436307077, - "c5": 5.3657213274681625, - "c6": 6.456132231659069, - "c7": 6.487944833366832 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640778, + "c3": 8.414239482200644, + "c4": 6.731391585760517, + "c5": 5.048543689320389, + "c6": 3.365695792880262, + "c7": 1.6828478964401272 }, "rgb": [77, 76, 132] }, @@ -323574,23 +323574,23 @@ "year": 1792, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -20.96813464708094, - "c2": -3.607632276421846, - "c3": 23.210798115378545, - "c4": -5.198768455490832, - "c5": 18.501964616136867, - "c6": 17.208998215356438, - "c7": -1.1344981525949436 + "points": { + "c1": -26.3961664665844, + "c2": 15.012663710449921, + "c3": 13.76955282027015, + "c4": -2.665308241521519, + "c5": 5.2394858122038315, + "c6": -18.889960959973962, + "c7": 18.061339725476707 }, - "vertexSeeds": { - "c1": 4.682649430948606, - "c2": 4.384098520345883, - "c3": 4.622171481425977, - "c4": 4.665041741755964, - "c5": 4.716891482035388, - "c6": 4.469737963082482, - "c7": 4.477004297937163 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975037, + "c3": 5.732778548312532, + "c4": 4.586222838650028, + "c5": 3.439667128987524, + "c6": 2.293111419325009, + "c7": 1.1465557096625147 }, "rgb": [77, 76, 132] }, @@ -323601,23 +323601,23 @@ "year": 1793, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 28.320118707031938, - "c2": -2.461857924738574, - "c3": 2.692181986475852, - "c4": -23.946323885392797, - "c5": -8.717140541700697, - "c6": 22.36556174709993, - "c7": -15.162017992140239 + "points": { + "c1": 0.7580655989541256, + "c2": 2.129338151862221, + "c3": -19.043798453262713, + "c4": -6.432831937486533, + "c5": 9.185736261188978, + "c6": -9.448896900288378, + "c7": 37.63555178794422 }, - "vertexSeeds": { - "c1": 3.87495113743872, - "c2": 4.035785635785282, - "c3": 3.8158315248009176, - "c4": 3.9338680633152925, - "c5": 3.9122873797744138, - "c6": 3.9544884134694303, - "c7": 3.918628878963699 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -323628,23 +323628,23 @@ "year": 1793, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": 48.85020032608381, - "c2": 25.336199668212927, - "c3": -46.532901385313714, - "c4": -45.266502222375365, - "c5": -12.824481612889912, - "c6": 12.00278478283795, - "c7": 8.972037064250287 + "points": { + "c1": -17.249449216786836, + "c2": -48.43846622265049, + "c3": 18.120679488588408, + "c4": 36.06016865035028, + "c5": 41.31953533178394, + "c6": 32.41742668691417, + "c7": -2.2753850576339048 }, - "vertexSeeds": { - "c1": 4.723301366541739, - "c2": 4.764227388035834, - "c3": 4.764855816014698, - "c4": 4.7692862125701385, - "c5": 4.7724394609804826, - "c6": 4.75452850257463, - "c7": 4.7468264734335 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934844, + "c3": 5.709662505779, + "c4": 4.56773000462323, + "c5": 3.4257975034673844, + "c6": 2.283865002311615, + "c7": 1.1419325011557695 }, "rgb": [86, 146, 138] }, @@ -323655,23 +323655,23 @@ "year": 1793, "resistanceReported": false, "duration": 50716800, - "curveSeeds": { - "c1": 37.208207173120485, - "c2": -16.614724094055006, - "c3": -4.128327761532702, - "c4": -24.75567363024411, - "c5": 59.32979416802304, - "c6": 46.12525870294495, - "c7": 39.26195890877993 + "points": { + "c1": -51.15341336722578, + "c2": 65.31501473819122, + "c3": 54.881106774331116, + "c4": 18.632170493718576, + "c5": -10.768855466290972, + "c6": 29.459399990659065, + "c7": 23.89011277991493 }, - "vertexSeeds": { - "c1": 0.7575120286201061, - "c2": 0.7540171388878154, - "c3": 0.8009070074005662, - "c4": 0.7944113967634912, - "c5": 0.7597762209271255, - "c6": 0.7476326487627083, - "c7": 0.7864432579663736 + "offsets": { + "c1": 1.3915857605177993, + "c2": 1.1927877947295429, + "c3": 0.9939898289412841, + "c4": 0.7951918631530278, + "c5": 0.5963938973647714, + "c6": 0.3975959315765127, + "c7": 0.19879796578825634 }, "rgb": [77, 76, 132] }, @@ -323682,23 +323682,23 @@ "year": 1793, "resistanceReported": false, "duration": 44064000, - "curveSeeds": { - "c1": 24.965256396955944, - "c2": -28.976753248488563, - "c3": -5.718209141767915, - "c4": -15.665604122374084, - "c5": 49.97250160113715, - "c6": -12.07191912577801, - "c7": -52.89526275081192 + "points": { + "c1": 28.90211902087112, + "c2": -11.87285545964783, + "c3": 2.1289755458987756, + "c4": -52.82686533651022, + "c5": -59.744723492199384, + "c6": -38.25600138077974, + "c7": -25.75202316649827 }, - "vertexSeeds": { - "c1": 2.9314756879241877, - "c2": 2.9680022955165737, - "c3": 3.098448371699903, - "c4": 3.0420360630658525, - "c5": 2.899655658146402, - "c6": 3.0489464634606214, - "c7": 3.0576507271903743 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475722, + "c3": 3.721682847896442, + "c4": 2.9773462783171487, + "c5": 2.233009708737868, + "c6": 1.4886731391585744, + "c7": 0.7443365695792937 }, "rgb": [238, 201, 159] }, @@ -323709,23 +323709,23 @@ "year": 1793, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 18.614164230812428, - "c2": -1.966342448893073, - "c3": 28.430849813664885, - "c4": 3.335346884436106, - "c5": -38.38266680117084, - "c6": 21.69498397820454, - "c7": 28.634959279039244 + "points": { + "c1": 36.044307545008316, + "c2": 11.484618759157513, + "c3": 32.91043932509829, + "c4": -34.5686193293173, + "c5": -15.665909570901611, + "c6": 39.15226233937701, + "c7": 36.024605899902674 }, - "vertexSeeds": { - "c1": 7.112049293434424, - "c2": 7.128367686733185, - "c3": 7.102858000624997, - "c4": 7.125805579967961, - "c5": 7.113205962260051, - "c6": 7.098121739531781, - "c7": 7.125105665476894 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801713, + "c3": 8.506703652334817, + "c4": 6.805362921867921, + "c5": 5.104022191400688, + "c6": 3.4026814609337914, + "c7": 1.7013407304668957 }, "rgb": [58, 15, 49] }, @@ -323736,23 +323736,23 @@ "year": 1792, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -5.112247932253094, - "c2": 5.289189667569893, - "c3": -20.620713024480075, - "c4": -19.95085003589045, - "c5": -14.822219615323434, - "c6": 20.457072267933384, - "c7": 14.619637843295976 + "points": { + "c1": 23.141250816231754, + "c2": 7.8337651128314185, + "c3": -12.251275566415828, + "c4": -14.465118012576818, + "c5": 21.274067819487293, + "c6": 7.550862183415838, + "c7": 14.222089648974631 }, - "vertexSeeds": { - "c1": 3.7341765109133176, - "c2": 3.9615112385065934, - "c3": 3.7891953430313974, - "c4": 3.94265483218421, - "c5": 3.7808621215946356, - "c6": 3.8530989212137894, - "c7": 3.906683181689348 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285716, + "c3": 4.761904761904766, + "c4": 3.8095238095238155, + "c5": 2.8571428571428643, + "c6": 1.9047619047619013, + "c7": 0.9523809523809507 }, "rgb": [222, 0, 59] }, @@ -323763,23 +323763,23 @@ "year": 1792, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -20.47580755601336, - "c2": -13.50488994643974, - "c3": 28.30188274529256, - "c4": -32.8278404166971, - "c5": -31.769662639706656, - "c6": -26.48683696603339, - "c7": -14.312468463122997 + "points": { + "c1": 31.003563275652652, + "c2": -26.42860202535671, + "c3": -18.802637177459086, + "c4": 19.96957555041682, + "c5": -18.201815097278136, + "c6": -23.415319117602664, + "c7": 34.04933606236901 }, - "vertexSeeds": { - "c1": 10.463125587707925, - "c2": 10.48723666110532, - "c3": 10.478850072122917, - "c4": 10.453535433251755, - "c5": 10.594491044674905, - "c6": 10.552620022624998, - "c7": 10.625784577887844 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081858, + "c3": 12.690707350901578, + "c4": 10.1525658807213, + "c5": 7.61442441054102, + "c6": 5.076282940360557, + "c7": 2.5381414701802787 }, "rgb": [238, 201, 159] }, @@ -323790,23 +323790,23 @@ "year": 1792, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": 5.587299486733141, - "c2": -0.47888486943197606, - "c3": 15.646827885827474, - "c4": 2.5349563504864534, - "c5": 8.797441480642256, - "c6": -2.877419423760216, - "c7": 17.56411015458821 + "points": { + "c1": 1.4890814260404035, + "c2": 15.15496473706379, + "c3": 2.7285363238152556, + "c4": -18.210259191032733, + "c5": 18.335726013349547, + "c6": 5.181995756180495, + "c7": -17.686091745885925 }, - "vertexSeeds": { - "c1": 3.238763718675596, - "c2": 3.2820535894733687, - "c3": 3.2804553193889108, - "c4": 3.2697978925380142, - "c5": 3.239123311307971, - "c6": 3.239337531568895, - "c7": 3.238976875013266 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837747, + "c3": 3.9297272306980973, + "c4": 3.1437817845584988, + "c5": 2.357836338418848, + "c6": 1.5718908922792494, + "c7": 0.7859454461395986 }, "rgb": [222, 0, 59] }, @@ -323817,23 +323817,23 @@ "year": 1792, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": -9.343461744680198, - "c2": -7.1730834786332895, - "c3": 6.796401166101688, - "c4": -14.422991005241826, - "c5": 17.157272791458407, - "c6": -10.307110772118909, - "c7": -18.434054708742114 + "points": { + "c1": 22.764195449587884, + "c2": 2.266332472919803, + "c3": -17.321873406598737, + "c4": -8.384131694216236, + "c5": -19.432936626776474, + "c6": -10.050919927948005, + "c7": 12.281274733413806 }, - "vertexSeeds": { - "c1": 2.623206439701697, - "c2": 2.5539712839683686, - "c3": 2.628435943622238, - "c4": 2.5756418179913587, - "c5": 2.706123949624571, - "c6": 2.587255757179954, - "c7": 2.683931720573665 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712846, + "c3": 3.259361997226076, + "c4": 2.6074895977808565, + "c5": 1.9556171983356483, + "c6": 1.3037447988904283, + "c7": 0.65187239944522 }, "rgb": [77, 76, 132] }, @@ -323844,23 +323844,23 @@ "year": 1793, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 8.706658988116217, - "c2": 0.9627227656908346, - "c3": 17.200084635469437, - "c4": 7.089800847491958, - "c5": -14.289382980078546, - "c6": -23.45875611043317, - "c7": -10.47131064223614 + "points": { + "c1": -35.638064689767006, + "c2": -19.332551631553496, + "c3": -21.53116353533366, + "c4": -10.766975385869554, + "c5": -2.7066779407967587, + "c6": 25.66877572567555, + "c7": -31.97635131360643 }, - "vertexSeeds": { - "c1": 7.870436777823152, - "c2": 7.386093016849956, - "c3": 8.466574817614696, - "c4": 7.475223870138862, - "c5": 7.225106774439642, - "c6": 8.951771893784851, - "c7": 8.133641507379645 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.92649098474341, + "c3": 10.772075820619513, + "c4": 8.617660656495607, + "c5": 6.463245492371701, + "c6": 4.3088303282478035, + "c7": 2.1544151641238973 }, "rgb": [77, 76, 132] }, @@ -323871,23 +323871,23 @@ "year": 1793, "resistanceReported": false, "duration": 47001600, - "curveSeeds": { - "c1": -10.147884933605141, - "c2": -34.5669625740416, - "c3": 21.754215998512528, - "c4": 34.96582864693628, - "c5": -25.70363207243883, - "c6": 34.80748010444989, - "c7": 24.492929953697406 + "points": { + "c1": 60.017819129429064, + "c2": 11.291950412949724, + "c3": 42.367256505996714, + "c4": 39.32882343102131, + "c5": -40.40026938291068, + "c6": 0.001792305414234363, + "c7": 51.06944593682886 }, - "vertexSeeds": { - "c1": 3.299473015191386, - "c2": 3.290175700359472, - "c3": 3.3013246793510236, - "c4": 3.286849337357355, - "c5": 3.3010738921732106, - "c6": 3.274158175505984, - "c7": 3.2671042387167146 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.74341192787797, + "c3": 3.9528432732316157, + "c4": 3.1622746185853137, + "c5": 2.371705963938959, + "c6": 1.5811373092926568, + "c7": 0.7905686546463021 }, "rgb": [86, 146, 138] }, @@ -323898,23 +323898,23 @@ "year": 1793, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 12.790844074677182, - "c2": -24.30698681656779, - "c3": -18.54024074658948, - "c4": 25.429392367938235, - "c5": -20.646352146947418, - "c6": 8.187432992153305, - "c7": -38.98341023873603 + "points": { + "c1": 19.145012000967014, + "c2": -22.213162816642622, + "c3": 29.70106487862637, + "c4": 22.216519639965114, + "c5": 22.41732970259106, + "c6": 43.83115750017339, + "c7": -36.75853638887147 }, - "vertexSeeds": { - "c1": 10.870649094622719, - "c2": 10.704583108080167, - "c3": 10.55699999979549, - "c4": 11.279213109494805, - "c5": 11.451153503821883, - "c6": 11.138461144135146, - "c7": 10.997625972398453 + "offsets": { + "c1": 19.12621359223301, + "c2": 16.393897364771163, + "c3": 13.661581137309275, + "c4": 10.929264909847427, + "c5": 8.196948682385582, + "c6": 5.464632454923692, + "c7": 2.732316227461846 }, "rgb": [58, 15, 49] }, @@ -323925,23 +323925,23 @@ "year": 1793, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -21.283096159725744, - "c2": 34.0199122787903, - "c3": -39.08315864351247, - "c4": 1.5621422203905695, - "c5": -37.792799782287574, - "c6": -11.690640127571413, - "c7": -16.429616383344296 + "points": { + "c1": -21.48803755047013, + "c2": 40.41086109636038, + "c3": 17.799301560276056, + "c4": -31.639273605987476, + "c5": 11.094723460217672, + "c6": -20.602011247473555, + "c7": 10.308754790084002 }, - "vertexSeeds": { - "c1": 5.987131927733152, - "c2": 5.98786857751053, - "c3": 5.993286417133127, - "c4": 6.0129261692872715, - "c5": 6.01323331067203, - "c6": 5.99776286683185, - "c7": 6.021714700575692 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509056, + "c3": 7.189089227924262, + "c4": 5.751271382339467, + "c5": 4.313453536754385, + "c6": 2.8756356911695904, + "c7": 1.4378178455847952 }, "rgb": [222, 0, 59] }, @@ -323952,23 +323952,23 @@ "year": 1792, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -17.51445793858111, - "c2": -8.34046383623705, - "c3": 24.980672911660466, - "c4": -11.68503656582091, - "c5": -25.06488286971225, - "c6": 9.914936505798597, - "c7": 5.867224105932404 + "points": { + "c1": 16.721828385704338, + "c2": 22.679344186437913, + "c3": -1.3354980223698298, + "c4": 8.897818503558366, + "c5": 19.825152227824635, + "c6": -2.689150662021458, + "c7": 10.841370263057424 }, - "vertexSeeds": { - "c1": 6.63983485830837, - "c2": 6.656435899027887, - "c3": 6.645506238229478, - "c4": 6.656530463232995, - "c5": 6.635375389204718, - "c6": 6.662043966137216, - "c7": 6.618671851435715 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836277, + "c3": 7.951918631530372, + "c4": 6.361534905224255, + "c5": 4.771151178918139, + "c6": 3.180767452612022, + "c7": 1.5903837263061165 }, "rgb": [77, 76, 132] }, @@ -323979,23 +323979,23 @@ "year": 1792, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 17.821791164971263, - "c2": -7.346812230347208, - "c3": -5.6773321182823615, - "c4": -3.020386922280636, - "c5": 27.36741864638569, - "c6": 10.501533216986427, - "c7": 28.87389360227945 + "points": { + "c1": 23.833357844292767, + "c2": 18.628875341011987, + "c3": -17.88029447131379, + "c4": -26.536243517886604, + "c5": 28.051015212971063, + "c6": 17.074279727232142, + "c7": -28.366000180211003 }, - "vertexSeeds": { - "c1": 7.990736402134758, - "c2": 8.413133985333458, - "c3": 8.137980090295173, - "c4": 8.381583045922302, - "c5": 8.174996702387176, - "c6": 8.240302347457893, - "c7": 8.1995044613081 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496533, + "c3": 10.055478502080444, + "c4": 8.044382801664355, + "c5": 6.033287101248266, + "c6": 4.0221914008321775, + "c7": 2.0110957004160888 }, "rgb": [222, 0, 59] }, @@ -324006,23 +324006,23 @@ "year": 1792, "resistanceReported": true, "duration": 17971200, - "curveSeeds": { - "c1": 19.395866890363386, - "c2": -28.231718295196654, - "c3": -27.362177848602588, - "c4": 3.7965029649864874, - "c5": 11.63114516720318, - "c6": 2.1171667445321134, - "c7": -26.205975606083946 + "points": { + "c1": -23.730106689158745, + "c2": -6.907090678408519, + "c3": 13.609203109217923, + "c4": -16.976681480317083, + "c5": 8.58482225510862, + "c6": 19.320542537241536, + "c7": -13.501881455783941 }, - "vertexSeeds": { - "c1": 2.5917910400247473, - "c2": 2.608568495099189, - "c3": 2.9807235839073827, - "c4": 2.646468774573738, - "c5": 2.5417287805192537, - "c6": 2.4944453850798456, - "c7": 2.500688522292181 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395287, + "c3": 3.6754507628294033, + "c4": 2.9403606102635247, + "c5": 2.205270457697641, + "c6": 1.4701803051317623, + "c7": 0.7350901525658836 }, "rgb": [238, 201, 159] }, @@ -324033,23 +324033,23 @@ "year": 1792, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -4.149519779779709, - "c2": -18.743665870254226, - "c3": -17.00689246481237, - "c4": -15.592750945696737, - "c5": 12.524084280396906, - "c6": -10.171764942167005, - "c7": -1.4504951512183375 + "points": { + "c1": -13.36960541300858, + "c2": 18.506767391240416, + "c3": 24.363319899420155, + "c4": 27.66629036466285, + "c5": 4.204615615252898, + "c6": -22.076075711423726, + "c7": -15.264485803508794 }, - "vertexSeeds": { - "c1": 8.010545180039589, - "c2": 8.468504118730536, - "c3": 8.09165404602647, - "c4": 8.03979131402442, - "c5": 8.289173125623698, - "c6": 8.56457435660946, - "c7": 8.475891336764452 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019412, + "c3": 10.355987055016168, + "c4": 8.284789644012948, + "c5": 6.213592233009706, + "c6": 4.142394822006463, + "c7": 2.0711974110032427 }, "rgb": [77, 76, 132] }, @@ -324060,23 +324060,23 @@ "year": 1792, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 21.860272621043872, - "c2": -6.097832135739594, - "c3": -4.827407070484263, - "c4": -1.850147607822084, - "c5": 13.44250846079338, - "c6": 10.65125241259874, - "c7": 9.718111044578773 + "points": { + "c1": 22.408809468896077, + "c2": 5.266380305338213, + "c3": 10.214192881877235, + "c4": -22.062618044553737, + "c5": 25.946528214264784, + "c6": -23.334132815957084, + "c7": -13.985298129963358 }, - "vertexSeeds": { - "c1": 4.606533441910788, - "c2": 4.5571763668121035, - "c3": 4.533980564310128, - "c4": 4.49316036992088, - "c5": 4.514637482124113, - "c6": 4.5432391429289165, - "c7": 4.582364038741375 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613037, + "c3": 5.524734165510864, + "c4": 4.419787332408691, + "c5": 3.3148404993065186, + "c6": 2.2098936662043456, + "c7": 1.1049468331021728 }, "rgb": [222, 0, 59] }, @@ -324087,23 +324087,23 @@ "year": 1792, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 4.7864311706390374, - "c2": 12.042397857892226, - "c3": -22.5783053623194, - "c4": -0.8575984262704779, - "c5": 2.1896383209210697, - "c6": -19.026502240317285, - "c7": 22.83459353766353 + "points": { + "c1": 12.223545117268458, + "c2": -7.342013101091517, + "c3": 7.137252338348652, + "c4": 3.141991805301185, + "c5": 19.4514084476694, + "c6": 12.317683645882546, + "c7": -21.635715021241325 }, - "vertexSeeds": { - "c1": 3.708289614909167, - "c2": 2.747720749596265, - "c3": 3.7518449423236957, - "c4": 3.1993134409054687, - "c5": 3.4266729334514223, - "c6": 2.897000058420857, - "c7": 3.0897492536036975 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044384, + "c3": 4.623208506703651, + "c4": 3.6985668053629213, + "c5": 2.773925104022192, + "c6": 1.8492834026814593, + "c7": 0.9246417013407296 }, "rgb": [77, 76, 132] }, @@ -324114,23 +324114,23 @@ "year": 1792, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 11.512832735825977, - "c2": 16.26737627579693, - "c3": 6.888883187507762, - "c4": 25.32702515355768, - "c5": -9.009524321408257, - "c6": 2.7568419028732585, - "c7": 24.436595996481234 + "points": { + "c1": 9.137355195720087, + "c2": -2.273705740146216, + "c3": -10.245319566953356, + "c4": -3.2692618801124844, + "c5": -27.281546620082715, + "c6": 11.031418925776176, + "c7": 3.3672203304041695 }, - "vertexSeeds": { - "c1": 4.612838105259998, - "c2": 4.568337438192442, - "c3": 4.568262311177914, - "c4": 4.554138972789825, - "c5": 4.484633207265435, - "c6": 4.487153698114105, - "c7": 4.581818191499902 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653258, + "c3": 5.547850208044382, + "c4": 4.438280166435505, + "c5": 3.328710124826629, + "c6": 2.2191400832177526, + "c7": 1.1095700416088763 }, "rgb": [222, 0, 59] }, @@ -324141,23 +324141,23 @@ "year": 1792, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -26.94054044504563, - "c2": -18.55890533664307, - "c3": 18.945990923658663, - "c4": 6.244114251514837, - "c5": 12.925677452643065, - "c6": -3.631417797703982, - "c7": 11.543383504217111 + "points": { + "c1": -4.159059065428227, + "c2": -12.485590184635779, + "c3": -2.482686457753214, + "c4": 6.347958986495357, + "c5": -10.352145566391584, + "c6": 25.315300407970525, + "c7": 24.370044963574735 }, - "vertexSeeds": { - "c1": 3.2968684546503564, - "c2": 3.3391253614750136, - "c3": 3.3409088336890225, - "c4": 3.3693461412297925, - "c5": 3.371988898283157, - "c6": 3.3661488957923207, - "c7": 3.961568515344468 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285716, + "c3": 4.761904761904762, + "c4": 3.809523809523811, + "c5": 2.8571428571428554, + "c6": 1.9047619047619055, + "c7": 0.9523809523809553 }, "rgb": [86, 146, 138] }, @@ -324168,23 +324168,23 @@ "year": 1793, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 28.80152684349231, - "c2": -16.92286740768777, - "c3": -24.1566477915456, - "c4": -14.91304874077456, - "c5": 4.819089760511908, - "c6": 2.4186445139084114, - "c7": -25.829592952690525 + "points": { + "c1": 32.272627664893164, + "c2": 19.415405136456123, + "c3": 39.4880267166149, + "c4": 1.1169274639132922, + "c5": -18.35857711082443, + "c6": -17.818407339621043, + "c7": -7.821499519426496 }, - "vertexSeeds": { - "c1": 5.738100683630831, - "c2": 5.830541795363848, - "c3": 5.785734127205701, - "c4": 5.821553079289396, - "c5": 5.714153354711164, - "c6": 5.784197684405531, - "c7": 5.836634490787526 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147018, + "c3": 6.981044845122515, + "c4": 5.584835876098012, + "c5": 4.188626907073509, + "c6": 2.792417938049006, + "c7": 1.396208969024503 }, "rgb": [77, 76, 132] }, @@ -324195,23 +324195,23 @@ "year": 1793, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 15.048268064117444, - "c2": -3.2570804850731854, - "c3": 21.925651482112727, - "c4": 32.87933571925507, - "c5": 2.5511488284097297, - "c6": -18.16304380806688, - "c7": -30.080071858582663 + "points": { + "c1": 3.8901598897074194, + "c2": -9.009598598462148, + "c3": 24.51304266321202, + "c4": 0.1521766369620181, + "c5": 16.404234786487564, + "c6": -13.171141174769353, + "c7": 24.634570628639416 }, - "vertexSeeds": { - "c1": 3.6654710082186286, - "c2": 3.65384432723955, - "c3": 3.6980181890977337, - "c4": 3.6895861051957373, - "c5": 3.7103696132490267, - "c6": 3.662556943496796, - "c7": 3.6988439979305747 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722633, + "c3": 4.438280166435498, + "c4": 3.550624133148422, + "c5": 2.662968099861287, + "c6": 1.775312066574211, + "c7": 0.887656033287076 }, "rgb": [222, 0, 59] }, @@ -324222,23 +324222,23 @@ "year": 1793, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -24.76092749329373, - "c2": 7.8545887222646655, - "c3": 15.108499839343267, - "c4": -12.264561373801069, - "c5": 16.59296125096496, - "c6": 4.862080477365446, - "c7": 23.899234862998256 + "points": { + "c1": 11.952120240678816, + "c2": -11.376196951898923, + "c3": -36.933065703445315, + "c4": 37.492901257397165, + "c5": 34.94573197138283, + "c6": 20.757176898599006, + "c7": 28.59720664829956 }, - "vertexSeeds": { - "c1": 5.824951312959813, - "c2": 5.6682633909050075, - "c3": 5.745988999498518, - "c4": 5.779821736938562, - "c5": 5.68000335599709, - "c6": 5.799583766879727, - "c7": 5.697998561430212 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147002, + "c3": 6.981044845122484, + "c4": 5.58483587609802, + "c5": 4.188626907073501, + "c6": 2.792417938048982, + "c7": 1.396208969024519 }, "rgb": [238, 201, 159] }, @@ -324249,23 +324249,23 @@ "year": 1792, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -8.166200065753245, - "c2": 24.101866478365856, - "c3": -7.376515987734862, - "c4": 13.566429998522679, - "c5": -19.592912456776524, - "c6": 3.346719787557042, - "c7": -7.976541471553702 + "points": { + "c1": -22.778046186558974, + "c2": 11.659311214672577, + "c3": 12.275939298873226, + "c4": 24.8924469567524, + "c5": 21.94341798559274, + "c6": 13.20673966860464, + "c7": -24.94330658756293 }, - "vertexSeeds": { - "c1": 5.141669799733885, - "c2": 5.095946206760451, - "c3": 5.139099475196018, - "c4": 5.211734159491854, - "c5": 5.14718494692436, - "c6": 5.1681560447501775, - "c7": 5.057629447564248 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.5728155339805765, + "c3": 6.310679611650474, + "c4": 5.048543689320371, + "c5": 3.786407766990268, + "c6": 2.5242718446602064, + "c7": 1.2621359223301032 }, "rgb": [77, 76, 132] }, @@ -324276,23 +324276,23 @@ "year": 1792, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 27.359456590629577, - "c2": 8.356915677235072, - "c3": 25.073627363667136, - "c4": -26.659124908346467, - "c5": 10.118510988370893, - "c6": -6.5588842562178264, - "c7": -8.19955473521058 + "points": { + "c1": 16.46728288644539, + "c2": 15.87796082935926, + "c3": 20.382106689995332, + "c4": 9.490109880632012, + "c5": 19.570327530306088, + "c6": 12.267821196196884, + "c7": 0.01715036582821483 }, - "vertexSeeds": { - "c1": 6.329079835745388, - "c2": 6.333502530165589, - "c3": 6.3514622003480845, - "c4": 6.3175659009654, - "c5": 6.318607795015459, - "c6": 6.322332930519239, - "c7": 6.317943223853254 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192832, + "c3": 7.582061950994076, + "c4": 6.065649560795321, + "c5": 4.549237170596265, + "c6": 3.03282478039751, + "c7": 1.516412390198755 }, "rgb": [222, 0, 59] }, @@ -324303,23 +324303,23 @@ "year": 1793, "resistanceReported": false, "duration": 50025600, - "curveSeeds": { - "c1": -58.5972906954996, - "c2": -22.946562615258642, - "c3": -53.582057554712456, - "c4": 63.08229035676939, - "c5": -5.55323694428818, - "c6": 46.07263649044674, - "c7": -63.32954271145927 + "points": { + "c1": 61.013880893312006, + "c2": -37.10255303957998, + "c3": -49.08634830662096, + "c4": -18.579371875017657, + "c5": -14.326806858787805, + "c6": 64.82197062851894, + "c7": 29.22900027743769 }, - "vertexSeeds": { - "c1": 4.17847021149015, - "c2": 4.1574177510602395, - "c3": 4.25573216576739, - "c4": 4.289898656675946, - "c5": 4.371793541750509, - "c6": 4.007099903526604, - "c7": 4.2020037462735536 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.3398058252427205, + "c4": 4.271844660194171, + "c5": 3.203883495145628, + "c6": 2.1359223300970855, + "c7": 1.0679611650485428 }, "rgb": [58, 15, 49] }, @@ -324330,23 +324330,23 @@ "year": 1793, "resistanceReported": false, "duration": 47347200, - "curveSeeds": { - "c1": -45.80423492885309, - "c2": -29.16376792418336, - "c3": 45.27524028955432, - "c4": 3.606447670384682, - "c5": 24.17181183083504, - "c6": 8.04586129348182, - "c7": 32.0238449242333 + "points": { + "c1": -20.0263478423499, + "c2": -62.35228862042182, + "c3": 54.60800264269878, + "c4": -57.93311962901544, + "c5": -18.293476804741516, + "c6": 58.045619954991835, + "c7": 48.944356401908436 }, - "vertexSeeds": { - "c1": 3.8925997387981086, - "c2": 3.94386922502816, - "c3": 4.001244803785977, - "c4": 3.792027914858908, - "c5": 3.793219571109665, - "c6": 3.9028676032132807, - "c7": 3.809517516034058 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [58, 15, 49] }, @@ -324357,23 +324357,23 @@ "year": 1792, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -10.522511135215082, - "c2": 19.59727109669242, - "c3": 18.43354890380518, - "c4": 23.50475740232694, - "c5": -7.0590024336612345, - "c6": 10.159133339849983, - "c7": 16.564982331783863 + "points": { + "c1": -10.340736112306324, + "c2": 12.00244341867555, + "c3": -1.9638975560851009, + "c4": -1.1501915590251208, + "c5": -19.182374896307238, + "c6": 21.159446373490017, + "c7": -25.047615914032715 }, - "vertexSeeds": { - "c1": 7.044215559758968, - "c2": 6.839772995589473, - "c3": 7.053706041635237, - "c4": 7.011922456714924, - "c5": 6.9501117571345485, - "c6": 6.93740492965989, - "c7": 6.955385000669402 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882097, + "c3": 8.552935737401773, + "c4": 6.842348589921412, + "c5": 5.131761442441048, + "c6": 3.421174294960726, + "c7": 1.710587147480363 }, "rgb": [77, 76, 132] }, @@ -324384,23 +324384,23 @@ "year": 1792, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 1.992035732943009, - "c2": -3.155242315531545, - "c3": 1.4306760694643046, - "c4": 3.5661635604505832, - "c5": -1.2192033985528532, - "c6": -2.297500661228465, - "c7": -2.360597594746917 + "points": { + "c1": -9.648855212073737, + "c2": 8.731439356653723, + "c3": -9.582184654496583, + "c4": -1.1885455184469933, + "c5": -14.399450239243059, + "c6": 27.588978099586974, + "c7": -29.61217302116023 }, - "vertexSeeds": { - "c1": 9.563375792078915, - "c2": 9.693604598686466, - "c3": 9.199141891332367, - "c4": 9.525666157506468, - "c5": 9.496466493217026, - "c6": 9.168872508432724, - "c7": 8.90144617113405 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151176, + "c3": 11.581137309292647, + "c4": 9.264909847434117, + "c5": 6.948682385575588, + "c6": 4.6324549237170585, + "c7": 2.3162274618585292 }, "rgb": [222, 0, 59] }, @@ -324411,23 +324411,23 @@ "year": 1793, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": -35.829040117028406, - "c2": 39.52215664961385, - "c3": -23.33388089728394, - "c4": -8.716096617116065, - "c5": -38.880889090156835, - "c6": -48.187039220461635, - "c7": -23.268220153470704 + "points": { + "c1": 4.521598956273259, + "c2": -49.20853671808393, + "c3": -52.585104073019465, + "c4": -48.34163261123373, + "c5": -30.745889910166802, + "c6": 30.563247649416027, + "c7": 11.22622869862127 }, - "vertexSeeds": { - "c1": 4.302098446753232, - "c2": 4.275266971241705, - "c3": 4.212043517462984, - "c4": 4.227035312361185, - "c5": 4.216760573010324, - "c6": 4.278023584936281, - "c7": 4.2465682279378285 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969487, + "c3": 5.154877484974573, + "c4": 4.123901987979658, + "c5": 3.0929264909847434, + "c6": 2.061950993989829, + "c7": 1.0309754969949145 }, "rgb": [58, 15, 49] }, @@ -324438,23 +324438,23 @@ "year": 1792, "resistanceReported": false, "duration": 5097600, - "curveSeeds": { - "c1": 1.7777355120863945, - "c2": 1.3782283112951887, - "c3": 14.714458329592883, - "c4": 11.852163569779496, - "c5": -3.235514323945944, - "c6": -2.805164596936958, - "c7": 9.390534817776857 + "points": { + "c1": 5.853467893826416, + "c2": 10.67879861979501, + "c3": -10.631396398022588, + "c4": 12.985247609456774, + "c5": 17.477097778649373, + "c6": 1.6111353504108124, + "c7": 7.346012914910396 }, - "vertexSeeds": { - "c1": 3.116697455904421, - "c2": 3.3916326478339056, - "c3": 3.3830581495743806, - "c4": 3.2775243691652864, - "c5": 3.161312030370837, - "c6": 3.230075039408487, - "c7": 3.1854364213702633 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199721, + "c3": 4.137771613499766, + "c4": 3.3102172907998115, + "c5": 2.4826629680998646, + "c6": 1.65510864539991, + "c7": 0.827554322699955 }, "rgb": [238, 201, 159] }, @@ -324465,23 +324465,23 @@ "year": 1792, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -22.437245402022214, - "c2": -3.495134078184037, - "c3": 1.724649324975715, - "c4": -10.008454596177696, - "c5": 12.728396807724614, - "c6": 20.471029041265602, - "c7": 2.811672065315264 + "points": { + "c1": -14.464742840241257, + "c2": 13.55090090604935, + "c3": 27.73728593441257, + "c4": 27.675629445843775, + "c5": -28.26357720102231, + "c6": -21.756568136242663, + "c7": 4.688004474852022 }, - "vertexSeeds": { - "c1": 7.021833503408192, - "c2": 7.227849823128554, - "c3": 7.248842579144236, - "c4": 7.097917368703913, - "c5": 6.988835422214784, - "c6": 7.462204027913634, - "c7": 7.200990344653999 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -324492,23 +324492,23 @@ "year": 1793, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -27.301232225890466, - "c2": -23.456902806874773, - "c3": 2.562181358456151, - "c4": 21.366418599742744, - "c5": -31.040011137179402, - "c6": 10.139535157668767, - "c7": 35.2362830476184 + "points": { + "c1": 25.743599406605625, + "c2": 6.278121838409028, + "c3": 15.809201801301391, + "c4": 25.696709566119168, + "c5": -36.33266004606645, + "c6": 21.27248847089419, + "c7": 32.29348323831982 }, - "vertexSeeds": { - "c1": 6.14573047187884, - "c2": 6.12133544468947, - "c3": 6.272143224852723, - "c4": 6.185614092530368, - "c5": 6.128540369465254, - "c6": 6.208774925572825, - "c7": 6.162180767165211 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072104, + "c3": 7.512713823393461, + "c4": 6.010171058714756, + "c5": 4.507628294036052, + "c6": 3.005085529357348, + "c7": 1.502542764678704 }, "rgb": [86, 146, 138] }, @@ -324519,23 +324519,23 @@ "year": 1793, "resistanceReported": false, "duration": 41299200, - "curveSeeds": { - "c1": 52.74373277661985, - "c2": 48.03711814113434, - "c3": 24.481126030936352, - "c4": 43.676544351744596, - "c5": 9.596106103158931, - "c6": 12.027218588964985, - "c7": 17.330312957816034 + "points": { + "c1": 13.093152974030161, + "c2": -18.45712823208728, + "c3": -24.19156448328868, + "c4": -14.15693699336294, + "c5": 54.294865021962835, + "c6": 30.437979283110224, + "c7": -12.73643630306885 }, - "vertexSeeds": { - "c1": 4.9166408468178044, - "c2": 4.5355236988666805, - "c3": 4.97856973848155, - "c4": 4.782684417611487, - "c5": 4.5296501169425145, - "c6": 4.567833769021393, - "c7": 4.507644743482491 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [86, 146, 138] }, @@ -324546,23 +324546,23 @@ "year": 1794, "resistanceReported": false, "duration": 60652800, - "curveSeeds": { - "c1": -62.13659582719869, - "c2": 32.03160557453353, - "c3": 9.00089429964882, - "c4": -23.170418495060716, - "c5": 76.32457576538471, - "c6": 12.884698686873023, - "c7": -7.296002242068127 + "points": { + "c1": -59.16044694032087, + "c2": 68.01071240889524, + "c3": -37.27900265730689, + "c4": -36.972050879083916, + "c5": -0.44200762311061226, + "c6": 4.40334177317294, + "c7": -23.37525841202754 }, - "vertexSeeds": { - "c1": 6.551875729693148, - "c2": 6.697965167849425, - "c3": 6.517012305938436, - "c4": 6.6836588649968345, - "c5": 6.4867515319819935, - "c6": 6.936942482104832, - "c7": 6.533227551826588 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -324573,23 +324573,23 @@ "year": 1792, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -1.1562356366936264, - "c2": 25.337448133218988, - "c3": -5.6908142312282415, - "c4": -4.2755232324833266, - "c5": -18.39747513546498, - "c6": 0.6869116700968974, - "c7": 25.615187505166265 + "points": { + "c1": 30.28826118591365, + "c2": 29.849629981055227, + "c3": 10.01884271514852, + "c4": -13.16687149818225, + "c5": -0.8523458531583046, + "c6": -10.504730704944045, + "c7": 24.33613263284528 }, - "vertexSeeds": { - "c1": 5.206160780697563, - "c2": 5.21234388124378, - "c3": 5.413151351622997, - "c4": 5.5913414665618735, - "c5": 5.199876246305536, - "c6": 5.505291263334396, - "c7": 5.2156808529796415 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945905, + "c3": 6.865464632454915, + "c4": 5.492371705963941, + "c5": 4.119278779472952, + "c6": 2.7461858529819634, + "c7": 1.373092926490989 }, "rgb": [86, 146, 138] }, @@ -324600,23 +324600,23 @@ "year": 1793, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": -36.9884994216531, - "c2": -10.592241186647684, - "c3": -36.52217158697848, - "c4": -19.529644284516294, - "c5": 12.953625440479101, - "c6": 33.25244529119297, - "c7": 20.530976587385837 + "points": { + "c1": -6.182464636498246, + "c2": 20.02432147619632, + "c3": 28.961411295992903, + "c4": 47.89919340760473, + "c5": -8.759154456817292, + "c6": -44.968143148384044, + "c7": -15.260157310478796 }, - "vertexSeeds": { - "c1": 6.177475355762495, - "c2": 6.388988036785257, - "c3": 6.155010743398318, - "c4": 6.344093602214923, - "c5": 6.736316323270338, - "c6": 6.564659011132549, - "c7": 6.781748444431753 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319004, + "c3": 8.229311141932506, + "c4": 6.583448913545993, + "c5": 4.937586685159495, + "c6": 3.2917244567729966, + "c7": 1.6458622283864983 }, "rgb": [222, 0, 59] }, @@ -324627,23 +324627,23 @@ "year": 1793, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -1.4074943649673202, - "c2": -0.3043546608513026, - "c3": 28.360896488177957, - "c4": -17.240309663466586, - "c5": 15.342538907328226, - "c6": 29.216838282307066, - "c7": -11.186452305694804 + "points": { + "c1": -10.113713750846937, + "c2": 5.178339685540102, + "c3": 28.892242123952215, + "c4": 24.908396908694428, + "c5": 11.20869016935815, + "c6": 33.79453191027238, + "c7": -5.8719777304459555 }, - "vertexSeeds": { - "c1": 1.3504647648667532, - "c2": 1.2921659172185471, - "c3": 1.2584507259310878, - "c4": 1.2428497125103486, - "c5": 1.3291333322918035, - "c6": 1.3011148449955856, - "c7": 1.2195761702524481 + "offsets": { + "c1": 2.2977346278317152, + "c2": 1.9694868238557566, + "c3": 1.6412390198797977, + "c4": 1.312991215903839, + "c5": 0.9847434119278763, + "c6": 0.6564956079519174, + "c7": 0.3282478039759587 }, "rgb": [86, 146, 138] }, @@ -324654,23 +324654,23 @@ "year": 1793, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 3.8279557318741837, - "c2": -2.574365647050996, - "c3": -14.114269646083873, - "c4": 37.01586452288019, - "c5": 38.00818375041264, - "c6": -41.878834508065985, - "c7": 42.098544827778326 + "points": { + "c1": -29.90030840236203, + "c2": 22.06454297936989, + "c3": -45.72264589195864, + "c4": 20.87495191207678, + "c5": -20.440982487568142, + "c6": -40.40685615954219, + "c7": 37.12902102015143 }, - "vertexSeeds": { - "c1": 3.2253886010362693, - "c2": 3.2253886010362693, - "c3": 3.2253886010362693, - "c4": 3.2253886010362693, - "c5": 3.2253886010362693, - "c6": 3.2253886010362693, - "c7": 3.2253886010362693 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -324681,23 +324681,23 @@ "year": 1792, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 29.096302046651374, - "c2": -6.85961022506617, - "c3": 10.569190987147245, - "c4": -10.267260575248699, - "c5": -17.671323670218953, - "c6": -25.61156394527077, - "c7": -5.406536021151176 + "points": { + "c1": -27.815445336107004, + "c2": -5.337012194180716, + "c3": 26.696862261186297, + "c4": 12.958751764507184, + "c5": 21.106465415792087, + "c6": -1.1669146608742125, + "c7": 15.68825284825219 }, - "vertexSeeds": { - "c1": 7.1781991760260455, - "c2": 7.248791829662517, - "c3": 6.991745950126499, - "c4": 7.471173519736117, - "c5": 7.05591658421568, - "c6": 7.0261573727456925, - "c7": 7.364120441841443 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525665, + "c3": 8.92279241793804, + "c4": 7.138233934350437, + "c5": 5.353675450762832, + "c6": 3.569116967175207, + "c7": 1.7845584835876036 }, "rgb": [86, 146, 138] }, @@ -324708,23 +324708,23 @@ "year": 1793, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -32.270421403433346, - "c2": 26.433855083390505, - "c3": -29.34062209945888, - "c4": 10.233221589724792, - "c5": 14.19897215656902, - "c6": -18.559068079342396, - "c7": -21.110074187549593 + "points": { + "c1": 24.705132524676678, + "c2": -5.728061327571339, + "c3": -9.434499917023125, + "c4": -2.0869611160520734, + "c5": 2.7923859771410875, + "c6": -5.9842852230458945, + "c7": -13.101850114371203 }, - "vertexSeeds": { - "c1": 11.398465098707677, - "c2": 10.99272102296141, - "c3": 11.281027818434014, - "c4": 10.831883881897793, - "c5": 10.902446397144407, - "c6": 11.508047607873541, - "c7": 11.34544118697546 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.532593619972253, + "c3": 13.777161349976868, + "c4": 11.021729079981483, + "c5": 8.266296809986098, + "c6": 5.510864539990771, + "c7": 2.7554322699953855 }, "rgb": [238, 201, 159] }, @@ -324735,23 +324735,23 @@ "year": 1792, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 26.379625283584318, - "c2": 23.043860137933592, - "c3": -16.214335256422075, - "c4": -12.081693886441219, - "c5": -2.2994925098427466, - "c6": 30.982676404046956, - "c7": -0.3410172433434937 + "points": { + "c1": -24.621650424167512, + "c2": 3.0664712468764534, + "c3": 11.464932780950136, + "c4": -23.83355104106148, + "c5": -5.460876005739042, + "c6": -23.06826434930327, + "c7": -27.98736783018714 }, - "vertexSeeds": { - "c1": 3.1724923573867754, - "c2": 3.1057605454801913, - "c3": 3.138308705789954, - "c4": 3.0744238041260807, - "c5": 3.001862728283638, - "c6": 3.17194296075465, - "c7": 3.168517650510859 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636611, + "c3": 3.814147018030518, + "c4": 3.051317614424412, + "c5": 2.2884882108183056, + "c6": 1.5256588072122124, + "c7": 0.7628294036061062 }, "rgb": [222, 0, 59] }, @@ -324762,23 +324762,23 @@ "year": 1792, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 16.251658126510105, - "c2": 20.885203480498216, - "c3": 4.542434216612559, - "c4": -4.385440991624719, - "c5": 0.42694668937905433, - "c6": 23.418556524225632, - "c7": -22.029999070573304 + "points": { + "c1": -16.19565003268007, + "c2": -23.58407587104238, + "c3": -14.344582410919761, + "c4": -8.188746528575095, + "c5": 1.211250618150217, + "c6": 4.097182006158004, + "c7": -18.426764095313313 }, - "vertexSeeds": { - "c1": 5.312751250099603, - "c2": 6.059216480774611, - "c3": 5.271953637314019, - "c4": 5.191890194323821, - "c5": 5.371323863170821, - "c6": 4.973920306652582, - "c7": 5.244583908718659 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911236, + "c3": 7.420249653259364, + "c4": 5.936199722607488, + "c5": 4.452149791955616, + "c6": 2.9680998613037453, + "c7": 1.484049930651874 }, "rgb": [77, 76, 132] }, @@ -324789,23 +324789,23 @@ "year": 1792, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 16.273962927413322, - "c2": -10.18105199510683, - "c3": 21.931234751913998, - "c4": -20.573638300744946, - "c5": -6.112013739082279, - "c6": 20.940495326547122, - "c7": -23.649331023960706 + "points": { + "c1": 15.786501704886057, + "c2": -31.940206363809715, + "c3": -5.875145094439727, + "c4": 15.899273200485169, + "c5": 14.011530427585605, + "c6": -21.45890725951961, + "c7": -23.781967710948443 }, - "vertexSeeds": { - "c1": 6.308656285016003, - "c2": 6.245596479093015, - "c3": 6.2614448825849935, - "c4": 6.281050511012288, - "c5": 6.149052026392854, - "c6": 6.148100447401344, - "c7": 6.239029308240792 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112354, + "c3": 7.535829865926972, + "c4": 6.028663892741592, + "c5": 4.521497919556143, + "c6": 3.014331946370762, + "c7": 1.507165973185381 }, "rgb": [222, 0, 59] }, @@ -324816,23 +324816,23 @@ "year": 1793, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 17.790455384204044, - "c2": -13.867231894399609, - "c3": -44.30546171524941, - "c4": -44.80235706475542, - "c5": -37.64132221844676, - "c6": 1.1096408275326155, - "c7": 42.19701296679191 + "points": { + "c1": -11.590205090575573, + "c2": -38.097170230440796, + "c3": 0.9386457390793197, + "c4": 8.826469476830106, + "c5": 14.709307006906513, + "c6": -27.934444050838437, + "c7": 7.46138484746119 }, - "vertexSeeds": { - "c1": 5.8757198212342345, - "c2": 5.620409445081524, - "c3": 5.808000746307848, - "c4": 5.5170505635038625, - "c5": 5.809857905626205, - "c6": 6.0716453721852215, - "c7": 5.918984042249507 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710135, + "c3": 7.304669440591773, + "c4": 5.843735552473412, + "c5": 4.382801664355068, + "c6": 2.9218677762367236, + "c7": 1.4609338881183618 }, "rgb": [222, 0, 59] }, @@ -324843,23 +324843,23 @@ "year": 1793, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 31.288254819682244, - "c2": 7.752480724114342, - "c3": -28.260579183096638, - "c4": 26.10844044604581, - "c5": 4.40964283957404, - "c6": 16.850709850533093, - "c7": 24.51861107492551 + "points": { + "c1": 27.58001523870319, + "c2": -22.545205288149454, + "c3": 29.12030629183564, + "c4": 12.967399012046954, + "c5": 25.415400505567, + "c6": -27.198778505250793, + "c7": -27.748587708115714 }, - "vertexSeeds": { - "c1": 4.926372802073707, - "c2": 4.924114142739322, - "c3": 4.944332880292041, - "c4": 4.942853915164141, - "c5": 4.9517917473722965, - "c6": 4.938267270828117, - "c7": 4.92414329775394 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296843, + "c3": 5.917706888580624, + "c4": 4.734165510864523, + "c5": 3.5506241331484216, + "c6": 2.36708275543232, + "c7": 1.1835413777161012 }, "rgb": [86, 146, 138] }, @@ -324870,23 +324870,23 @@ "year": 1794, "resistanceReported": false, "duration": 55123200, - "curveSeeds": { - "c1": -61.659393598451054, - "c2": -59.826575423315234, - "c3": 66.8249572056584, - "c4": -1.1188622221468734, - "c5": -22.918336403720687, - "c6": -62.261341273699486, - "c7": -57.28988983678533 + "points": { + "c1": -5.866175971187715, + "c2": 53.76926513429687, + "c3": -34.04648860899208, + "c4": -42.893404747635316, + "c5": 0.6212860245455261, + "c6": 15.234768622211902, + "c7": -2.963035532087133 }, - "vertexSeeds": { - "c1": 6.58544666167843, - "c2": 6.754944577966877, - "c3": 6.815421035775086, - "c4": 6.501301752545197, - "c5": 6.603620211073719, - "c6": 6.393996626378302, - "c7": 6.901402848421482 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -324897,23 +324897,23 @@ "year": 1793, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -8.673949327193881, - "c2": -30.885519965829502, - "c3": 8.854405665663052, - "c4": -26.077135006332583, - "c5": 5.801066425076918, - "c6": -24.315171332022324, - "c7": -7.2164968037970745 + "points": { + "c1": -2.3715198550054524, + "c2": 38.33176885525373, + "c3": 1.9532055755962077, + "c4": 20.501520485802374, + "c5": -29.182129721384058, + "c6": -30.75913397125585, + "c7": -22.502851607404143 }, - "vertexSeeds": { - "c1": 2.076515133626323, - "c2": 2.0808439558415306, - "c3": 2.130102343197897, - "c4": 2.130477849501195, - "c5": 2.0811519793580344, - "c6": 2.1236358187927142, - "c7": 2.14570600803723 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [86, 146, 138] }, @@ -324924,23 +324924,23 @@ "year": 1793, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -16.28066192730337, - "c2": 45.72524587747447, - "c3": 37.79087309270363, - "c4": 19.994304397896578, - "c5": -3.118071096789997, - "c6": 13.539877766916412, - "c7": -10.499752531363804 + "points": { + "c1": -33.15099123343822, + "c2": 19.657497712295957, + "c3": 11.428220738816123, + "c4": -14.132507048365163, + "c5": 0.2676209534861016, + "c6": -0.5489423888192135, + "c7": -46.1453953362042 }, - "vertexSeeds": { - "c1": 4.0897444332052775, - "c2": 4.099783901117665, - "c3": 4.1327274080519025, - "c4": 4.126106553694964, - "c5": 4.114724109304413, - "c6": 4.131447956002686, - "c7": 4.128921362929175 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607468, + "c3": 4.946833102172915, + "c4": 3.957466481738312, + "c5": 2.968099861303759, + "c6": 1.978733240869156, + "c7": 0.9893666204346027 }, "rgb": [86, 146, 138] }, @@ -324951,23 +324951,23 @@ "year": 1792, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 20.059706256525907, - "c2": -12.62811585758785, - "c3": 23.47035398425936, - "c4": -22.000366283876637, - "c5": 15.637280027747721, - "c6": 25.60843040739003, - "c7": -23.550764287605205 + "points": { + "c1": 22.384497679430247, + "c2": 0.8605524147355794, + "c3": 4.669503380460547, + "c4": -29.2695335387553, + "c5": -20.55499370973275, + "c6": 12.233438514348556, + "c7": 17.223162002866587 }, - "vertexSeeds": { - "c1": 3.888863418644041, - "c2": 4.003599326561998, - "c3": 3.860473638412958, - "c4": 4.010086298355745, - "c5": 3.953298024363122, - "c6": 3.7948627227189613, - "c7": 3.9412382946454687 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -324978,23 +324978,23 @@ "year": 1793, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -4.549955801711384, - "c2": -21.704160921498968, - "c3": 28.784117326964015, - "c4": -21.353971139144857, - "c5": 1.2440796202912878, - "c6": 25.37627754186309, - "c7": 4.717532859716968 + "points": { + "c1": -16.034119814441166, + "c2": -21.83361824078174, + "c3": 32.61127766860371, + "c4": 21.467356408555126, + "c5": 31.66839156412376, + "c6": -32.83250330450742, + "c7": -22.286942180990273 }, - "vertexSeeds": { - "c1": 7.291359821468001, - "c2": 7.242549748275993, - "c3": 7.049685656915987, - "c4": 7.092284663451591, - "c5": 6.846511787586977, - "c6": 7.085512161380652, - "c7": 7.348450411457731 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -325005,23 +325005,23 @@ "year": 1793, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 12.762491093058415, - "c2": 35.87591187778481, - "c3": -12.856934269015838, - "c4": -12.002006645517174, - "c5": -30.7310935127284, - "c6": 24.860927369381578, - "c7": -35.80603833747892 + "points": { + "c1": 19.680608387379174, + "c2": 27.57689169172371, + "c3": -4.018542861981125, + "c4": -16.98812553937025, + "c5": 32.834314593032296, + "c6": 38.83883423318162, + "c7": -37.552460885157295 }, - "vertexSeeds": { - "c1": 5.143338880122791, - "c2": 5.16298667687085, - "c3": 5.165333293547071, - "c4": 5.435829000193658, - "c5": 5.1823701941608915, - "c6": 5.377106008069606, - "c7": 5.360480036246465 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.79472954230235, + "c3": 6.495607951918646, + "c4": 5.196486361534911, + "c5": 3.897364771151175, + "c6": 2.5982431807674398, + "c7": 1.2991215903837352 }, "rgb": [222, 0, 59] }, @@ -325032,23 +325032,23 @@ "year": 1792, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 11.0510395817319, - "c2": -4.236067406569198, - "c3": -8.369218632697098, - "c4": -13.97897747095023, - "c5": -10.52346599121341, - "c6": 11.575265675671467, - "c7": 23.75010159905473 + "points": { + "c1": 19.92679920364803, + "c2": 15.323791763968195, + "c3": -12.409777623535788, + "c4": 32.17396901898227, + "c5": -19.408670389924232, + "c6": 6.18342713868406, + "c7": 31.608912762129002 }, - "vertexSeeds": { - "c1": 8.881504777645306, - "c2": 8.829689473695833, - "c3": 8.937990721679471, - "c4": 8.884183093079146, - "c5": 8.96874805999591, - "c6": 8.976961462287916, - "c7": 8.859275364340666 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662982, + "c3": 10.7258437355525, + "c4": 8.58067498844202, + "c5": 6.435506241331537, + "c6": 4.290337494220962, + "c7": 2.145168747110481 }, "rgb": [77, 76, 132] }, @@ -325059,23 +325059,23 @@ "year": 1793, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -23.75194891024114, - "c2": 11.94284929381481, - "c3": 30.7905885793395, - "c4": -1.1094788890286935, - "c5": 7.94385973157663, - "c6": 24.89046704462534, - "c7": -10.889994277714578 + "points": { + "c1": -18.261389098069806, + "c2": 34.12047090227169, + "c3": 14.97685187990443, + "c4": 6.611819542652597, + "c5": -11.412528427498302, + "c6": 36.36209192708394, + "c7": -14.143909145239924 }, - "vertexSeeds": { - "c1": 7.387031232712713, - "c2": 7.647416141805148, - "c3": 7.726783533360548, - "c4": 7.84208994553758, - "c5": 7.458155029748842, - "c6": 7.85258436476246, - "c7": 7.395087461146271 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692095, + "c3": 9.593157651410083, + "c4": 7.67452612112807, + "c5": 5.7558945908460375, + "c6": 3.8372630605640246, + "c7": 1.9186315302820123 }, "rgb": [86, 146, 138] }, @@ -325086,23 +325086,23 @@ "year": 1793, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 41.69925610090628, - "c2": 26.935176659610377, - "c3": -18.55191988722891, - "c4": -33.703261754815166, - "c5": 8.732685824183818, - "c6": 3.6252173975355007, - "c7": 35.09415033116649 + "points": { + "c1": 35.831686986138266, + "c2": 40.19303028053913, + "c3": 15.365334795705984, + "c4": 39.98659439373809, + "c5": -44.62273706543189, + "c6": -17.947000564544208, + "c7": 21.670606707393745 }, - "vertexSeeds": { - "c1": 2.55454933722091, - "c2": 2.5582185592524884, - "c3": 2.6657190424276327, - "c4": 2.493991463022649, - "c5": 2.648962352054048, - "c6": 2.5374264875967794, - "c7": 2.5788929486489924 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.8557558945908514, + "c3": 3.2131299121590366, + "c4": 2.5705039297272347, + "c5": 1.9278779472954195, + "c6": 1.2852519648636174, + "c7": 0.6426259824318021 }, "rgb": [77, 76, 132] }, @@ -325113,23 +325113,23 @@ "year": 1793, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 25.716069248099785, - "c2": -24.31237667350395, - "c3": -18.465562506254976, - "c4": -7.8103120051688535, - "c5": 24.526876412407944, - "c6": -26.01372195349549, - "c7": 21.665368264682165 + "points": { + "c1": 2.5761281460139216, + "c2": 17.732464378590848, + "c3": -8.576044929277302, + "c4": 16.659005579007996, + "c5": -34.22780779967567, + "c6": 14.441943904079501, + "c7": 8.981856668628822 }, - "vertexSeeds": { - "c1": 4.679199127352985, - "c2": 4.750846905025495, - "c3": 4.652684021946245, - "c4": 4.650028853889649, - "c5": 4.673833584474718, - "c6": 4.757503837667636, - "c7": 4.747757382580262 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [222, 0, 59] }, @@ -325140,23 +325140,23 @@ "year": 1792, "resistanceReported": true, "duration": 16156800, - "curveSeeds": { - "c1": 5.391374688368657, - "c2": -16.741542587166034, - "c3": 19.006498968981006, - "c4": 15.663609697277835, - "c5": -5.632782509423983, - "c6": 22.272009119084757, - "c7": 19.50543895473094 + "points": { + "c1": 28.182538248580236, + "c2": -15.280476644356103, + "c3": -14.811089493681852, + "c4": 14.199951736519942, + "c5": 4.019814309641099, + "c6": -3.370443085413214, + "c7": 21.038838493074635 }, - "vertexSeeds": { - "c1": 6.020093700849486, - "c2": 6.022553115405839, - "c3": 5.860997251627634, - "c4": 5.877354713590344, - "c5": 5.853843648289598, - "c6": 5.862231902366468, - "c7": 6.0077688013644295 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629674, + "c3": 7.258437355524721, + "c4": 5.806749884419815, + "c5": 4.355062413314861, + "c6": 2.9033749422099073, + "c7": 1.4516874711049537 }, "rgb": [238, 201, 159] }, @@ -325167,23 +325167,23 @@ "year": 1792, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -21.99839524915805, - "c2": -17.13794376394041, - "c3": 21.543429822910145, - "c4": -0.046765235327185906, - "c5": 17.75190828323232, - "c6": 4.593900293508117, - "c7": -8.662789162478923 + "points": { + "c1": -14.131444889468385, + "c2": 12.138280033495835, + "c3": -24.129876905430795, + "c4": 1.0166478587937604, + "c5": 2.483986282837236, + "c6": 11.447384288868367, + "c7": -15.338649676131988 }, - "vertexSeeds": { - "c1": 4.528814276180666, - "c2": 4.566981725438131, - "c3": 4.525481590503461, - "c4": 4.4658447420628455, - "c5": 4.467642439658891, - "c6": 4.549045735272051, - "c7": 4.482037351757481 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.60194174757282, + "c3": 5.501618122977354, + "c4": 4.401294498381862, + "c5": 3.300970873786396, + "c6": 2.200647249190931, + "c7": 1.1003236245954655 }, "rgb": [58, 15, 49] }, @@ -325194,23 +325194,23 @@ "year": 1792, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -6.321011525959303, - "c2": 26.199904975094086, - "c3": -29.76379293133169, - "c4": -13.695497749098365, - "c5": -28.30079364166395, - "c6": -14.823378346093286, - "c7": 4.551953572587173 + "points": { + "c1": -28.522770430439866, + "c2": -15.455571625560772, + "c3": 21.630535960314184, + "c4": -4.1965593958326295, + "c5": 4.6114035990226725, + "c6": 1.949671629927316, + "c7": -30.56507665288197 }, - "vertexSeeds": { - "c1": 4.755212683582913, - "c2": 4.536340741537482, - "c3": 5.028574340822602, - "c4": 4.674426313148073, - "c5": 4.565071582849264, - "c6": 4.502640470361566, - "c7": 4.843364737706849 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331486, + "c3": 5.362921867776241, + "c4": 4.290337494220988, + "c5": 3.217753120665743, + "c6": 2.145168747110498, + "c7": 1.0725843735552452 }, "rgb": [222, 0, 59] }, @@ -325221,23 +325221,23 @@ "year": 1793, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 15.063767440072489, - "c2": -10.417316271930531, - "c3": -31.257596600015617, - "c4": 8.32485859801045, - "c5": 10.3775188780862, - "c6": 3.1846942654541195, - "c7": 14.06934090960057 + "points": { + "c1": -14.751118329717155, + "c2": -28.72020007646698, + "c3": -14.053892263530706, + "c4": 26.61942338095887, + "c5": -12.474860884138543, + "c6": 3.620286468175209, + "c7": 6.424783877051823 }, - "vertexSeeds": { - "c1": 7.940582898538372, - "c2": 8.32591028750892, - "c3": 8.447535898248848, - "c4": 8.024920409240352, - "c5": 8.055533773318235, - "c6": 7.871894427806482, - "c7": 7.798505696329283 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617202, + "c3": 10.124826629681007, + "c4": 8.099861303744786, + "c5": 6.07489597780859, + "c6": 4.049930651872393, + "c7": 2.0249653259361966 }, "rgb": [222, 0, 59] }, @@ -325248,23 +325248,23 @@ "year": 1793, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -10.263321907170972, - "c2": -39.592372445568884, - "c3": 22.94884367482424, - "c4": -3.346839239874363, - "c5": 36.428377776716935, - "c6": 30.92030859844369, - "c7": -2.4493412527637233 + "points": { + "c1": -25.563516002971415, + "c2": 22.406092035719787, + "c3": 23.523793548466237, + "c4": 11.952446823185902, + "c5": -38.976310663969016, + "c6": -39.623850861677376, + "c7": 27.823501694489842 }, - "vertexSeeds": { - "c1": 4.857038295208661, - "c2": 5.123928424238775, - "c3": 4.9658811548195905, - "c4": 4.810722729636396, - "c5": 4.976734779968, - "c6": 5.0762965255503305, - "c7": 5.041108302033954 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658804, + "c3": 6.125751271382332, + "c4": 4.900601017105861, + "c5": 3.675450762829402, + "c6": 2.4503005085529304, + "c7": 1.2251502542764716 }, "rgb": [222, 0, 59] }, @@ -325275,23 +325275,23 @@ "year": 1793, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -34.38135299931595, - "c2": 44.06233866179498, - "c3": -33.82167275823144, - "c4": -29.886478557281293, - "c5": 26.820164428264135, - "c6": 18.105736163149402, - "c7": -30.048722602819804 + "points": { + "c1": 6.468527904471159, + "c2": -32.42387000436011, + "c3": 36.16884711702244, + "c4": 38.20872760615137, + "c5": -9.398969661373677, + "c6": -17.910235099364577, + "c7": -0.8342131507925998 }, - "vertexSeeds": { - "c1": 2.1013001285203154, - "c2": 2.089144230046808, - "c3": 1.9429128365931738, - "c4": 1.9460180656224733, - "c5": 1.9955124549390952, - "c6": 2.1291735437449395, - "c7": 1.9896726234537183 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.162274618585299, + "c3": 2.6352288488210838, + "c4": 2.108183079056865, + "c5": 1.5811373092926495, + "c6": 1.0540915395284343, + "c7": 0.5270457697642189 }, "rgb": [58, 15, 49] }, @@ -325302,23 +325302,23 @@ "year": 1792, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 29.01693764668042, - "c2": 22.27854321289519, - "c3": -12.855201892183914, - "c4": -3.6214617318918876, - "c5": -11.466710031225933, - "c6": -2.199313467149988, - "c7": -6.971966419729313 + "points": { + "c1": -28.57919215941778, + "c2": -7.849417105954224, + "c3": 7.191983550138644, + "c4": -3.3994384415185657, + "c5": -8.276825405818911, + "c6": -12.40884541779738, + "c7": 20.069370707441387 }, - "vertexSeeds": { - "c1": 5.763307941193277, - "c2": 5.895073677962815, - "c3": 5.688216674430762, - "c4": 5.736137155635875, - "c5": 5.820586355900137, - "c6": 5.486609720737003, - "c7": 5.7370704726018 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589455, + "c3": 7.235321312991218, + "c4": 5.78825705039297, + "c5": 4.341192787794734, + "c6": 2.894128525196485, + "c7": 1.4470642625982488 }, "rgb": [238, 201, 159] }, @@ -325329,23 +325329,23 @@ "year": 1792, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -15.133163693203935, - "c2": -0.4291528729320717, - "c3": 2.795021227806192, - "c4": -7.964018367169565, - "c5": -2.070222900544529, - "c6": -16.38040615177228, - "c7": -9.282631836213175 + "points": { + "c1": -25.250883075215214, + "c2": -4.50274272332404, + "c3": 6.557691580110021, + "c4": 14.309518283701909, + "c5": 24.069787995238936, + "c6": 20.66386373825969, + "c7": -15.29264305838565 }, - "vertexSeeds": { - "c1": 5.706232438065222, - "c2": 5.732691673794419, - "c3": 5.709011547295044, - "c4": 5.7014516838691405, - "c5": 5.746179551205941, - "c6": 5.749770343966779, - "c7": 5.7019037528683745 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945947, + "c3": 6.865464632454866, + "c4": 5.49237170596392, + "c5": 4.119278779472974, + "c6": 2.7461858529818914, + "c7": 1.3730929264909457 }, "rgb": [86, 146, 138] }, @@ -325356,23 +325356,23 @@ "year": 1792, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -6.348308883803945, - "c2": 3.4833492989931933, - "c3": -23.233894240891427, - "c4": 11.437973229241777, - "c5": -2.59401449198473, - "c6": -16.287055587637482, - "c7": -3.8830964307862246 + "points": { + "c1": -25.91004488602574, + "c2": 4.851602514383977, + "c3": -24.31007094795948, + "c4": 17.259991298372306, + "c5": -2.130736216047744, + "c6": 0.580703069999359, + "c7": -10.80975622636068 }, - "vertexSeeds": { - "c1": 6.158918959785698, - "c2": 5.560903885577948, - "c3": 5.681161354249639, - "c4": 6.2028359480663005, - "c5": 6.011235870502973, - "c6": 5.791759221252324, - "c7": 5.6687925973466475 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911227, + "c3": 7.420249653259364, + "c4": 5.936199722607484, + "c5": 4.452149791955622, + "c6": 2.968099861303742, + "c7": 1.4840499306518624 }, "rgb": [86, 146, 138] }, @@ -325383,23 +325383,23 @@ "year": 1793, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -20.910217654989957, - "c2": 31.587417368778716, - "c3": -21.75640557070829, - "c4": 24.309348840390115, - "c5": 1.7892963164153102, - "c6": -30.840687194288748, - "c7": 7.257720494527398 + "points": { + "c1": -46.395747564546234, + "c2": -19.052950251145507, + "c3": -9.291026817567925, + "c4": -22.240441349724804, + "c5": 21.073892072068546, + "c6": -15.193569631328167, + "c7": -7.314802774331319 }, - "vertexSeeds": { - "c1": 9.48326364151391, - "c2": 9.444025165811764, - "c3": 9.52156335906607, - "c4": 9.424781187296361, - "c5": 9.379720990991412, - "c6": 9.445689356743536, - "c7": 9.497581479466799 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789197, + "c3": 11.373092926491013, + "c4": 9.09847434119273, + "c5": 6.823855755894548, + "c6": 4.549237170596365, + "c7": 2.2746185852981826 }, "rgb": [58, 15, 49] }, @@ -325410,23 +325410,23 @@ "year": 1793, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 23.90484661706374, - "c2": 16.152304632237588, - "c3": 20.967389189814057, - "c4": -10.386803894986894, - "c5": 24.299271856518978, - "c6": 29.837436753535165, - "c7": -15.448463378822591 + "points": { + "c1": 19.87137989495468, + "c2": 1.6893911391474532, + "c3": 3.142517007433071, + "c4": -31.72976339114856, + "c5": -7.963691132262486, + "c6": -30.23250437991981, + "c7": -2.18182866928192 }, - "vertexSeeds": { - "c1": 3.900159692673968, - "c2": 3.98258780171932, - "c3": 3.834532879429356, - "c4": 3.902090859954306, - "c5": 3.9381268376746608, - "c6": 3.9134818765170043, - "c7": 3.944318602845436 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285718, + "c3": 4.761904761904769, + "c4": 3.809523809523796, + "c5": 2.857142857142847, + "c6": 1.904761904761898, + "c7": 0.952380952380949 }, "rgb": [238, 201, 159] }, @@ -325437,23 +325437,23 @@ "year": 1793, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 28.88421406125721, - "c2": 31.283232689296867, - "c3": 19.24092417289946, - "c4": 35.994438800862184, - "c5": -0.1822413881738072, - "c6": 38.7848126399757, - "c7": -29.910672735070094 + "points": { + "c1": -27.298990399101946, + "c2": -18.8897298086162, + "c3": -7.021763628020665, + "c4": -15.77700977554164, + "c5": -1.1912130607200595, + "c6": -1.230766447569664, + "c7": 27.551210302820763 }, - "vertexSeeds": { - "c1": 9.17251169686028, - "c2": 9.499479315836986, - "c3": 9.356133598832187, - "c4": 9.025024244857928, - "c5": 8.96141867133619, - "c6": 9.284738194484936, - "c7": 9.241182134936818 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.61997226074897, + "c3": 11.349976883957464, + "c4": 9.07998150716598, + "c5": 6.809986130374473, + "c6": 4.53999075358299, + "c7": 2.2699953767915058 }, "rgb": [58, 15, 49] }, @@ -325464,23 +325464,23 @@ "year": 1792, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": -12.987019540938547, - "c2": -6.861774604021635, - "c3": 2.3618427723702453, - "c4": -11.086323896601112, - "c5": 20.92759872697767, - "c6": -3.7610004933729577, - "c7": -4.842198571410805 + "points": { + "c1": 18.23363220577425, + "c2": -17.673091414801085, + "c3": 20.482169763350996, + "c4": 14.185637142144778, + "c5": -10.351035199304885, + "c6": -6.815938874617171, + "c7": 15.87467172388309 }, - "vertexSeeds": { - "c1": 4.493880979130003, - "c2": 4.492485131113217, - "c3": 4.503298438271659, - "c4": 4.4932655311471565, - "c5": 4.491607282020306, - "c6": 4.49834460708726, - "c7": 4.490558918223912 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371737, + "c3": 5.386037910309709, + "c4": 4.308830328247789, + "c5": 3.2316227461858684, + "c6": 2.154415164123948, + "c7": 1.0772075820619205 }, "rgb": [222, 0, 59] }, @@ -325491,23 +325491,23 @@ "year": 1792, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -14.092397825538038, - "c2": -22.08021079904036, - "c3": -7.700233395959117, - "c4": -13.187568851651388, - "c5": 17.044514112845665, - "c6": 6.792361502416174, - "c7": 15.30769903779888 + "points": { + "c1": 17.101756673801713, + "c2": -8.915919150240224, + "c3": -24.697939468714814, + "c4": 26.289351738692435, + "c5": -25.122454144810558, + "c6": 21.18309838293902, + "c7": -14.041992050936821 }, - "vertexSeeds": { - "c1": 8.316062176165802, - "c2": 8.316062176165802, - "c3": 8.316062176165802, - "c4": 8.316062176165802, - "c5": 8.316062176165802, - "c6": 8.316062176165802, - "c7": 8.316062176165802 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -325518,23 +325518,23 @@ "year": 1793, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 13.456465161061345, - "c2": 20.495686964242985, - "c3": -15.719497310470885, - "c4": -24.661855527495007, - "c5": -20.102618169283538, - "c6": 3.0233668986678808, - "c7": -6.790420656239384 + "points": { + "c1": -30.29943264430261, + "c2": -29.64010773903039, + "c3": -5.5596833295564245, + "c4": -3.407192843092158, + "c5": -18.503772970497522, + "c6": 6.873618600224759, + "c7": -19.87585242426035 }, - "vertexSeeds": { - "c1": 8.449258170703477, - "c2": 7.970734961456925, - "c3": 8.468818589379806, - "c4": 8.718227619177824, - "c5": 8.583691691621663, - "c6": 7.845891910986502, - "c7": 8.036720046016397 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099858, + "c3": 10.402219140083213, + "c4": 8.321775312066569, + "c5": 6.2413314840499226, + "c6": 4.160887656033277, + "c7": 2.0804438280166315 }, "rgb": [238, 201, 159] }, @@ -325545,23 +325545,23 @@ "year": 1792, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 1.208724664191017, - "c2": 18.32815989125085, - "c3": 8.76576215465031, - "c4": 2.0417875752112096, - "c5": 5.772129426228052, - "c6": 15.977435588261628, - "c7": -18.57610366178705 + "points": { + "c1": 20.158775929177878, + "c2": -10.208840153854716, + "c3": 10.748495074263609, + "c4": 12.890036575014868, + "c5": -7.231710585407907, + "c6": 19.38073383231137, + "c7": 17.712856900093954 }, - "vertexSeeds": { - "c1": 3.989827064046471, - "c2": 3.9503979736758272, - "c3": 3.954016097250233, - "c4": 3.8661708828034875, - "c5": 3.8615751449351334, - "c6": 4.0144142955623145, - "c7": 3.802999099919031 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -325572,23 +325572,23 @@ "year": 1793, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": 34.609357722069895, - "c2": 27.1724249350871, - "c3": 45.49414607432343, - "c4": -48.02737414590996, - "c5": 48.481533206708455, - "c6": -23.4422330890444, - "c7": -5.750791911938514 + "points": { + "c1": 43.44076187916696, + "c2": -22.096241543133345, + "c3": 44.69237724130485, + "c4": -40.36011863427533, + "c5": -56.619082360766804, + "c6": -26.151659265122845, + "c7": -19.275776421879854 }, - "vertexSeeds": { - "c1": 5.820055215733122, - "c2": 4.437877420087917, - "c3": 6.296980368056274, - "c4": 5.336424980013607, - "c5": 5.224714818455209, - "c6": 4.230798991892886, - "c7": 5.876999173696436 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635228, + "c3": 7.836338418862689, + "c4": 6.269070735090151, + "c5": 4.7018030513176114, + "c6": 3.1345353675450753, + "c7": 1.5672676837725386 }, "rgb": [86, 146, 138] }, @@ -325599,23 +325599,23 @@ "year": 1792, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 6.714564251478976, - "c2": -19.015934802070554, - "c3": -6.284366132663166, - "c4": 13.939534196299391, - "c5": -18.5800252367315, - "c6": -21.748274078286542, - "c7": 18.364270886518483 + "points": { + "c1": 12.924028887618995, + "c2": -2.8468297095871016, + "c3": -14.011006241748573, + "c4": -2.9234530796697236, + "c5": -8.143474248399247, + "c6": 9.22030151239938, + "c7": 24.12142567249014 }, - "vertexSeeds": { - "c1": 7.975689402038812, - "c2": 7.837039228764678, - "c3": 7.908869163248747, - "c4": 7.709948826551258, - "c5": 7.73736557765758, - "c6": 7.816517179757171, - "c7": 7.74529133483493 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571445, + "c3": 9.523809523809518, + "c4": 7.619047619047631, + "c5": 5.714285714285704, + "c6": 3.8095238095238155, + "c7": 1.9047619047619266 }, "rgb": [77, 76, 132] }, @@ -325626,23 +325626,23 @@ "year": 1793, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -0.8254624147729857, - "c2": -0.2746944074285551, - "c3": 21.649326077195298, - "c4": 33.08893295995068, - "c5": -10.17290306996524, - "c6": -22.33561901433471, - "c7": 38.93681907033785 + "points": { + "c1": -15.77511794784765, + "c2": -42.30463694944785, + "c3": 33.908555930269415, + "c4": 6.550412067451866, + "c5": -16.80668701840745, + "c6": 16.06185127747041, + "c7": -28.285229497630887 }, - "vertexSeeds": { - "c1": 6.915436630504568, - "c2": 6.853266707939166, - "c3": 7.233377396891902, - "c4": 6.899609131802992, - "c5": 6.781143075842062, - "c6": 7.243103891780498, - "c7": 6.912840934606088 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042991, + "c3": 8.645399907535817, + "c4": 6.916319926028668, + "c5": 5.187239944521496, + "c6": 3.4581599630143227, + "c7": 1.7290799815071722 }, "rgb": [86, 146, 138] }, @@ -325653,23 +325653,23 @@ "year": 1793, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -4.7384790345635786, - "c2": 21.44145750339343, - "c3": 11.92990555705775, - "c4": -29.024201347731182, - "c5": 20.53314640193708, - "c6": 5.936408874515507, - "c7": 1.3089301890839096 + "points": { + "c1": 5.298980392440555, + "c2": 10.732937010336023, + "c3": 17.32307883174282, + "c4": -7.286188645648721, + "c5": -14.9604264246179, + "c6": -31.74878526075697, + "c7": 22.334634554092496 }, - "vertexSeeds": { - "c1": 6.053867091342666, - "c2": 5.911877409704965, - "c3": 6.361466514915517, - "c4": 5.929699430852176, - "c5": 6.366675431234502, - "c6": 6.008855993915762, - "c7": 6.088976580658545 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [86, 146, 138] }, @@ -325680,23 +325680,23 @@ "year": 1793, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 14.28188084972708, - "c2": -22.416179030005456, - "c3": 17.87713318220535, - "c4": -25.178031797311917, - "c5": 10.497639250986019, - "c6": 13.574229934971818, - "c7": -10.67206204460706 + "points": { + "c1": -22.7262225598473, + "c2": 3.2267005802752635, + "c3": -34.95174307306966, + "c4": 14.702157674185266, + "c5": -8.557423728873001, + "c6": -32.973759639092656, + "c7": -36.70828493862131 }, - "vertexSeeds": { - "c1": 6.562648099593999, - "c2": 6.170876395089846, - "c3": 6.430239963747674, - "c4": 6.3190426388825305, - "c5": 5.792414077792797, - "c6": 5.724756671716454, - "c7": 5.49957915551159 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.486823855755897, + "c3": 7.905686546463241, + "c4": 6.324549237170595, + "c5": 4.743411927877949, + "c6": 3.162274618585303, + "c7": 1.581137309292646 }, "rgb": [238, 201, 159] }, @@ -325707,23 +325707,23 @@ "year": 1793, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -26.660363081863597, - "c2": -25.178954155058086, - "c3": -21.721832334110346, - "c4": 26.233344755009135, - "c5": 1.4185995152028, - "c6": -19.603892609792403, - "c7": 0.5339052691276294 + "points": { + "c1": 11.503730284416882, + "c2": -32.19261515383023, + "c3": 14.564080384598903, + "c4": -19.529252511450366, + "c5": -20.877201088308254, + "c6": 34.72755358949178, + "c7": 32.10700662938426 }, - "vertexSeeds": { - "c1": 6.549476657211418, - "c2": 6.965861728574856, - "c3": 7.018000577123019, - "c4": 6.662214260578165, - "c5": 6.841310851234886, - "c6": 6.768777332833729, - "c7": 6.591481662284147 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.20804438280166, + "c3": 8.50670365233473, + "c4": 6.80536292186778, + "c5": 5.10402219140083, + "c6": 3.4026814609339007, + "c7": 1.7013407304669503 }, "rgb": [77, 76, 132] }, @@ -325734,23 +325734,23 @@ "year": 1793, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 21.636768589867728, - "c2": 19.0026083818181, - "c3": 13.084439306140276, - "c4": 24.02241479668521, - "c5": 27.589118921633343, - "c6": -20.991516006053303, - "c7": -19.233789449341295 + "points": { + "c1": -15.502426966190363, + "c2": -9.106126598441048, + "c3": 27.228128258890713, + "c4": 23.398559648189, + "c5": -26.04737783481627, + "c6": -1.7168478814902173, + "c7": 3.612818732380539 }, - "vertexSeeds": { - "c1": 1.3275346175879357, - "c2": 1.3379855862757652, - "c3": 1.329388069277425, - "c4": 1.3273006229104247, - "c5": 1.3270051965021714, - "c6": 1.3405564102588459, - "c7": 1.3406455307349248 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155433, + "c3": 1.6181229773462646, + "c4": 1.2944983818770182, + "c5": 0.9708737864077717, + "c6": 0.6472491909385252, + "c7": 0.3236245954692465 }, "rgb": [86, 146, 138] }, @@ -325761,23 +325761,23 @@ "year": 1793, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -20.664068947515737, - "c2": -24.58979606761305, - "c3": 17.91731867884988, - "c4": 18.373717143119045, - "c5": 8.05194068444289, - "c6": -34.89438697732345, - "c7": 1.7182457063220014 + "points": { + "c1": -4.578038547492824, + "c2": 27.048787748601782, + "c3": -31.43102897478363, + "c4": 32.44905796426717, + "c5": -35.77742301562897, + "c6": 7.891398888458966, + "c7": -14.051237857922914 }, - "vertexSeeds": { - "c1": 2.035660559860674, - "c2": 2.1289504935654286, - "c3": 2.0628450897499953, - "c4": 2.2204907891935335, - "c5": 2.4155811052786302, - "c6": 2.254526574103774, - "c7": 2.1141628459298984 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484034, + "c3": 2.958853444290338, + "c4": 2.367082755432269, + "c5": 1.7753120665742033, + "c6": 1.1835413777161345, + "c7": 0.591770688858066 }, "rgb": [77, 76, 132] }, @@ -325788,23 +325788,23 @@ "year": 1793, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -16.84563527275086, - "c2": 40.96107890281763, - "c3": 12.166873753733917, - "c4": -17.35403381726663, - "c5": -5.145621417355926, - "c6": -26.99406037166745, - "c7": -12.222881507291309 + "points": { + "c1": 0.519584258689683, + "c2": 19.728269642079795, + "c3": -1.5348374558828013, + "c4": -34.54605291779741, + "c5": -38.40652208544484, + "c6": 16.67881665208479, + "c7": 25.507997768443246 }, - "vertexSeeds": { - "c1": 6.957095415575496, - "c2": 6.985532989930788, - "c3": 5.374916189382116, - "c4": 6.9098313332439805, - "c5": 7.479195150328227, - "c6": 6.934374836634966, - "c7": 6.0299823240862915 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887655, + "c3": 9.130836800739715, + "c4": 7.304669440591771, + "c5": 5.478502080443831, + "c6": 3.6523347202958867, + "c7": 1.826167360147942 }, "rgb": [222, 0, 59] }, @@ -325815,23 +325815,23 @@ "year": 1793, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 14.621319083502542, - "c2": 14.705328908305333, - "c3": -25.28137144252087, - "c4": -29.263982186143085, - "c5": 1.9272770695410983, - "c6": 20.74923415774998, - "c7": 16.562283695147755 + "points": { + "c1": 9.735690122505837, + "c2": 10.283548230436757, + "c3": 20.102496619132168, + "c4": 6.306379737105011, + "c5": -1.358795163800636, + "c6": -28.61273652802054, + "c7": 4.852562088716034 }, - "vertexSeeds": { - "c1": 4.052396824254406, - "c2": 4.18958814522983, - "c3": 4.0563650809572795, - "c4": 4.21790835073821, - "c5": 4.08851511860284, - "c6": 4.104320523130917, - "c7": 4.074176504731975 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808595, + "c3": 5.0624133148405015, + "c4": 4.049930651872396, + "c5": 3.037447988904303, + "c6": 2.024965325936198, + "c7": 1.0124826629680936 }, "rgb": [58, 15, 49] }, @@ -325842,23 +325842,23 @@ "year": 1793, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 33.51966456448027, - "c2": 37.13052101354173, - "c3": 39.274167594554406, - "c4": 1.495705726599681, - "c5": -8.820485850438413, - "c6": -29.44223911209632, - "c7": 32.22601275459204 + "points": { + "c1": -21.37901345550048, + "c2": 40.54457151648584, + "c3": -9.81230866234446, + "c4": -12.114834128474133, + "c5": -34.30908931826997, + "c6": 36.525805924439844, + "c7": -36.309434342668 }, - "vertexSeeds": { - "c1": 3.030127526781378, - "c2": 2.877328471004784, - "c3": 3.0422872597775905, - "c4": 2.8390507788027435, - "c5": 2.8956283718490776, - "c6": 2.9390530368254155, - "c7": 3.070745416395229 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435505, + "c3": 3.698566805362919, + "c4": 2.958853444290333, + "c5": 2.2191400832177584, + "c6": 1.4794267221451722, + "c7": 0.7397133610725861 }, "rgb": [58, 15, 49] }, @@ -325869,23 +325869,23 @@ "year": 1792, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -21.015024893899948, - "c2": 7.8874744651698485, - "c3": -11.8749345310878, - "c4": 15.086077120307596, - "c5": 11.187735306107523, - "c6": -5.39443088744018, - "c7": 15.603127180392494 + "points": { + "c1": -22.411812478452262, + "c2": -23.165665242010586, + "c3": 26.767094453942267, + "c4": 10.706123008617435, + "c5": -19.943770809184176, + "c6": 5.490834100397219, + "c7": -6.36393384773514 }, - "vertexSeeds": { - "c1": 8.258553325211356, - "c2": 8.329057475000962, - "c3": 8.365982365515052, - "c4": 8.337952813160268, - "c5": 8.302858171838603, - "c6": 8.333704912657874, - "c7": 8.539961424547249 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737853, + "c3": 10.194174757281568, + "c4": 8.155339805825246, + "c5": 6.116504854368927, + "c6": 4.077669902912607, + "c7": 2.0388349514563204 }, "rgb": [222, 0, 59] }, @@ -325896,23 +325896,23 @@ "year": 1793, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 35.65195473385894, - "c2": -31.122091702663482, - "c3": 27.200162143043727, - "c4": 41.78737900523166, - "c5": -32.847029549821556, - "c6": -1.4759787566617106, - "c7": -12.964834370720475 + "points": { + "c1": 17.85185447667648, + "c2": 28.111761553780866, + "c3": -4.240082324311977, + "c4": -16.072187836440715, + "c5": 34.308689549284125, + "c6": 39.228564250911646, + "c7": 2.762294733702767 }, - "vertexSeeds": { - "c1": 2.262552335559556, - "c2": 2.4361152595082327, - "c3": 2.3849962956429316, - "c4": 2.290635846144273, - "c5": 2.3748161052895687, - "c6": 2.329464710173125, - "c7": 2.327087693640493 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288503, + "c3": 3.0050855293573737, + "c4": 2.4040684234859, + "c5": 1.8030513176144263, + "c6": 1.20203421174295, + "c7": 0.6010171058714762 }, "rgb": [58, 15, 49] }, @@ -325923,23 +325923,23 @@ "year": 1792, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -6.0766751587963235, - "c2": 23.473230137082147, - "c3": 6.268518369704935, - "c4": -14.876626269463463, - "c5": -17.420160060335743, - "c6": -8.222675714803856, - "c7": 8.81819334645325 + "points": { + "c1": -18.431811495898586, + "c2": 19.932526076060064, + "c3": 3.3764095020694214, + "c4": -13.481863167740395, + "c5": -16.724758764259796, + "c6": 3.925608371394997, + "c7": 22.331253394258113 }, - "vertexSeeds": { - "c1": 3.527611105241974, - "c2": 3.534133494711474, - "c3": 3.531325180333157, - "c4": 3.5310154896295898, - "c5": 3.5299558520457217, - "c6": 3.533006559293895, - "c7": 3.5179993837530636 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360635, + "c3": 4.23023578363389, + "c4": 3.3841886269071457, + "c5": 2.538141470180233, + "c6": 1.6920943134534887, + "c7": 0.8460471567267444 }, "rgb": [238, 201, 159] }, @@ -325950,23 +325950,23 @@ "year": 1793, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 27.131021280932856, - "c2": 27.394605261462758, - "c3": -4.559275858848281, - "c4": 15.768381798730154, - "c5": -14.788123381077469, - "c6": 28.37669644703078, - "c7": 35.28521218701178 + "points": { + "c1": -33.532954043852044, + "c2": -17.15101818979248, + "c3": -3.5539626943871028, + "c4": 34.89152279345711, + "c5": -22.99140997832523, + "c6": 39.44348074478664, + "c7": 15.944273151325767 }, - "vertexSeeds": { - "c1": 10.898250999244606, - "c2": 10.203597034746176, - "c3": 10.673389778648687, - "c4": 10.892410907388944, - "c5": 10.210195350084122, - "c6": 10.386980905981677, - "c7": 10.331835872577665 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.70041608876559, + "c3": 13.083680073971312, + "c4": 10.466944059177074, + "c5": 7.850208044382795, + "c6": 5.2334720295885155, + "c7": 2.6167360147942795 }, "rgb": [238, 201, 159] }, @@ -325977,23 +325977,23 @@ "year": 1793, "resistanceReported": true, "duration": 18316800, - "curveSeeds": { - "c1": -19.53797250366405, - "c2": -26.999004622918946, - "c3": -22.296219967303134, - "c4": 3.16298936219124, - "c5": -26.50369202854719, - "c6": -4.236678994188434, - "c7": 28.322955161670208 + "points": { + "c1": -24.67956296426705, + "c2": -2.811634997709511, + "c3": 16.1179597991039, + "c4": 22.492294644678573, + "c5": 14.714336574968513, + "c6": 25.563912810067137, + "c7": 27.224818020604765 }, - "vertexSeeds": { - "c1": 6.959433710182273, - "c2": 6.916713873673694, - "c3": 6.8791203186429355, - "c4": 6.978343748018784, - "c5": 6.914496558109096, - "c6": 6.853888781383272, - "c7": 6.890679992750605 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560343, + "c3": 8.368007397133631, + "c4": 6.69440591770692, + "c5": 5.020804438280135, + "c6": 3.347202958853423, + "c7": 1.6736014794267116 }, "rgb": [222, 0, 59] }, @@ -326004,23 +326004,23 @@ "year": 1793, "resistanceReported": false, "duration": 41731200, - "curveSeeds": { - "c1": -17.4429913956085, - "c2": -13.186016109396832, - "c3": 12.961164562152554, - "c4": -28.724747723915545, - "c5": -16.060919453932726, - "c6": 27.317116635470974, - "c7": -31.068026663830935 + "points": { + "c1": 11.285844207310085, + "c2": -23.30157956684434, + "c3": -36.09333647595759, + "c4": 4.464126460603708, + "c5": 0.5848546579419676, + "c6": -30.512836667364827, + "c7": -50.7295703828679 }, - "vertexSeeds": { - "c1": 6.412271481522266, - "c2": 6.458547488629715, - "c3": 6.412894671978623, - "c4": 6.469566677549774, - "c5": 6.402242973391184, - "c6": 6.436594997100346, - "c7": 6.425080443160268 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434163, + "c3": 7.7207582061950335, + "c4": 6.1766065649560575, + "c5": 4.632454923717082, + "c6": 3.0883032824781056, + "c7": 1.544151641238976 }, "rgb": [86, 146, 138] }, @@ -326031,23 +326031,23 @@ "year": 1793, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -2.5688733161276893, - "c2": -7.805914640593446, - "c3": 7.1198381776132855, - "c4": 0.7570922290252611, - "c5": -7.322510518978909, - "c6": 27.709818164801266, - "c7": 21.919659297956155 + "points": { + "c1": -30.763284223142165, + "c2": 8.498813034808808, + "c3": 19.298166857932767, + "c4": -27.807628816685494, + "c5": -21.744788299726284, + "c6": -10.49403713804801, + "c7": 23.16606920399258 }, - "vertexSeeds": { - "c1": 6.374082196418976, - "c2": 6.60205598437056, - "c3": 6.885762672203067, - "c4": 6.387960911861206, - "c5": 6.508716425880538, - "c6": 6.899085682809881, - "c7": 6.632460975608033 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -326058,23 +326058,23 @@ "year": 1793, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -16.74224547500517, - "c2": -24.718525935401036, - "c3": -14.263549069216314, - "c4": -1.866850556076784, - "c5": 2.271190832306722, - "c6": -7.897076072058297, - "c7": -31.189760657845106 + "points": { + "c1": -8.803953375959054, + "c2": -24.855871052442627, + "c3": -1.529962548675698, + "c4": 29.558165376750722, + "c5": -8.65021373486912, + "c6": 4.0903499540834645, + "c7": -23.40575293318016 }, - "vertexSeeds": { - "c1": 4.230508473525354, - "c2": 4.2898925223615665, - "c3": 4.233112170580633, - "c4": 4.498744779675043, - "c5": 4.524029204303428, - "c6": 4.206816055616217, - "c7": 4.276958085806021 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773928, + "c3": 5.617198335644938, + "c4": 4.493758668515947, + "c5": 3.370319001386964, + "c6": 2.2468793342579803, + "c7": 1.1234396671289901 }, "rgb": [222, 0, 59] }, @@ -326085,23 +326085,23 @@ "year": 1793, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 37.32084743850359, - "c2": -1.6767162202601469, - "c3": 8.701982263768528, - "c4": -35.298522577659945, - "c5": -10.099831398520784, - "c6": -9.429257868279503, - "c7": -28.625288927591725 + "points": { + "c1": 23.132825469751317, + "c2": 22.115786839806162, + "c3": -10.482397766271987, + "c4": 31.298163985660864, + "c5": 15.062571480470787, + "c6": 4.400703630378636, + "c7": -25.497951408520997 }, - "vertexSeeds": { - "c1": 6.561368307449065, - "c2": 6.561221624817342, - "c3": 6.55914004576212, - "c4": 6.580904909578419, - "c5": 6.5493544639686085, - "c6": 6.574585174490902, - "c7": 6.5569839867341475 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675495, + "c3": 7.859454461396298, + "c4": 6.2875635691171015, + "c5": 4.715672676837591, + "c6": 3.1437817845583944, + "c7": 1.5718908922791972 }, "rgb": [222, 0, 59] }, @@ -326112,23 +326112,23 @@ "year": 1793, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 28.117061230054823, - "c2": 15.192669671361337, - "c3": -20.004500637205226, - "c4": -14.624004875032508, - "c5": -18.7723330035596, - "c6": 27.952913608522103, - "c7": -36.806985375101156 + "points": { + "c1": -38.25644920240954, + "c2": 25.65888806149467, + "c3": 35.83936251165705, + "c4": -33.004107871408614, + "c5": 9.087872922171023, + "c6": -6.199579616945677, + "c7": -8.013476761609184 }, - "vertexSeeds": { - "c1": 2.92558492552176, - "c2": 2.692143918176147, - "c3": 3.0516239792764246, - "c4": 2.792391782829873, - "c5": 2.9174652700913235, - "c6": 2.7942095814453567, - "c7": 2.8376986140358587 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475728, + "c3": 3.72168284789644, + "c4": 2.977346278317152, + "c5": 2.233009708737864, + "c6": 1.488673139158576, + "c7": 0.744336569579288 }, "rgb": [222, 0, 59] }, @@ -326139,23 +326139,23 @@ "year": 1793, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 13.452687237379166, - "c2": -0.701403487251703, - "c3": -33.3632255417096, - "c4": -27.96590831527666, - "c5": -7.514474052426657, - "c6": -32.758507137263706, - "c7": -18.432663820566958 + "points": { + "c1": 25.78479921961631, + "c2": -30.23024748090955, + "c3": 2.042627353410154, + "c4": 17.250321013076444, + "c5": -16.278344637402874, + "c6": 12.666661350224473, + "c7": -9.541750157415333 }, - "vertexSeeds": { - "c1": 5.262702874467375, - "c2": 5.23593737134658, - "c3": 5.205526225778419, - "c4": 5.226077206001128, - "c5": 5.156321214598494, - "c6": 5.230546766185427, - "c7": 5.1668003671766565 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980583, + "c3": 6.310679611650486, + "c4": 5.048543689320389, + "c5": 3.7864077669902914, + "c6": 2.5242718446601944, + "c7": 1.2621359223300972 }, "rgb": [222, 0, 59] }, @@ -326166,23 +326166,23 @@ "year": 1793, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 2.1917868508614653, - "c2": -23.276559323800818, - "c3": -8.203522617793528, - "c4": 9.82002379493655, - "c5": -24.8867383556061, - "c6": -15.367899156203714, - "c7": 25.892732359590557 + "points": { + "c1": 14.030167317756952, + "c2": 25.406959668921896, + "c3": 12.753579071307986, + "c4": 25.177102830698384, + "c5": -10.33125485614109, + "c6": -14.278555973886458, + "c7": 2.543916240884297 }, - "vertexSeeds": { - "c1": 5.261414936146834, - "c2": 5.309636873314995, - "c3": 5.163041914324976, - "c4": 5.237607878154939, - "c5": 5.207379300564262, - "c6": 5.204518550264516, - "c7": 5.042885739660708 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061036, + "c3": 6.356911696717518, + "c4": 5.085529357374025, + "c5": 3.8141470180305057, + "c6": 2.5427646786870124, + "c7": 1.2713823393435189 }, "rgb": [86, 146, 138] }, @@ -326193,23 +326193,23 @@ "year": 1793, "resistanceReported": false, "duration": 44064000, - "curveSeeds": { - "c1": -28.569135207441054, - "c2": 4.879795788711682, - "c3": -37.77694401484945, - "c4": 47.24163771157911, - "c5": -40.861104975613515, - "c6": 21.39322515093469, - "c7": 40.025533188970606 + "points": { + "c1": 41.98028982366973, + "c2": 22.723287962129554, + "c3": 17.70141106098341, + "c4": -2.2731927929609697, + "c5": 51.58022780773832, + "c6": 15.57741926069945, + "c7": -18.040097519580534 }, - "vertexSeeds": { - "c1": 3.6488253232133303, - "c2": 3.4568003575278583, - "c3": 3.476850848222188, - "c4": 3.4689037178195576, - "c5": 3.471151521925236, - "c6": 3.5720611510723796, - "c7": 3.5638908928101865 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601941, + "c3": 4.368932038834951, + "c4": 3.495145631067961, + "c5": 2.6213592233009706, + "c6": 1.7475728155339805, + "c7": 0.8737864077669902 }, "rgb": [238, 201, 159] }, @@ -326220,23 +326220,23 @@ "year": 1793, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 6.693454415264355, - "c2": 33.12140020642424, - "c3": -22.98520234159701, - "c4": -0.006058152245955739, - "c5": 14.415016551710174, - "c6": -1.4266623026236402, - "c7": -0.33716638780371255 + "points": { + "c1": 15.12861085960347, + "c2": -20.403625382185158, + "c3": 21.157769224693524, + "c4": -13.31408149786947, + "c5": -7.131416864533911, + "c6": 32.95292076020061, + "c7": 19.38777244367384 }, - "vertexSeeds": { - "c1": 3.2654072501481117, - "c2": 3.280592773497583, - "c3": 3.2771466252569104, - "c4": 3.290925095184213, - "c5": 3.257515079884858, - "c6": 3.2489144827620016, - "c7": 3.2501899375707235 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.74341192787797, + "c3": 3.9528432732316157, + "c4": 3.1622746185853137, + "c5": 2.371705963938959, + "c6": 1.5811373092926568, + "c7": 0.7905686546463021 }, "rgb": [86, 146, 138] }, @@ -326247,23 +326247,23 @@ "year": 1793, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -17.30158259895146, - "c2": -24.04306306309452, - "c3": -25.115181866448335, - "c4": 8.252176772122954, - "c5": 4.349168816074506, - "c6": 3.557890442669656, - "c7": -24.776059656934574 + "points": { + "c1": -27.291044383181536, + "c2": -18.624674897886948, + "c3": 30.523733049179594, + "c4": 0.15893943604525873, + "c5": -25.820007345192032, + "c6": -23.818303356528858, + "c7": -28.13950540688217 }, - "vertexSeeds": { - "c1": 6.8111494671113535, - "c2": 6.747877789205616, - "c3": 6.815493886433686, - "c4": 6.702799430317132, - "c5": 6.552992154015286, - "c6": 6.610220758058766, - "c7": 6.899785778635582 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -326274,23 +326274,23 @@ "year": 1793, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -19.88720034323821, - "c2": 6.6828435886485735, - "c3": -17.21983605621337, - "c4": 0.2364959622081919, - "c5": -2.147622307213968, - "c6": -12.984131157036817, - "c7": -0.5979116091972614 + "points": { + "c1": 2.1928156294920242, + "c2": 16.676245237667757, + "c3": -10.294184444763435, + "c4": -1.2808051990550133, + "c5": -1.2830314219470225, + "c6": 20.43000058569762, + "c7": -29.501968563202393 }, - "vertexSeeds": { - "c1": 5.6175676335560025, - "c2": 5.461930662800812, - "c3": 5.465219379717717, - "c4": 5.432495429470222, - "c5": 5.523157977256133, - "c6": 5.403694577544281, - "c7": 5.592120947596974 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865465, + "c3": 6.819232547387887, + "c4": 5.455386037910309, + "c5": 4.091539528432732, + "c6": 2.7276930189551547, + "c7": 1.3638465094775774 }, "rgb": [58, 15, 49] }, @@ -326301,23 +326301,23 @@ "year": 1793, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -14.381154203040765, - "c2": -27.81398207392572, - "c3": 3.174039476138873, - "c4": -19.857032723710937, - "c5": -9.749120649561217, - "c6": -25.984829485577862, - "c7": -34.637397747765945 + "points": { + "c1": -9.764062926685597, + "c2": -30.360038888954477, + "c3": -23.619999672420033, + "c4": -30.34499146519594, + "c5": 33.67555582688959, + "c6": -13.525163535575984, + "c7": -15.232631387470004 }, - "vertexSeeds": { - "c1": 5.2886944556279305, - "c2": 5.476935130980492, - "c3": 5.369762783555324, - "c4": 5.14668749047758, - "c5": 5.056870251222113, - "c6": 5.307574791156334, - "c7": 5.260970209041759 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423029, + "c3": 6.5649560795191775, + "c4": 5.2519648636153455, + "c5": 3.9389736477115145, + "c6": 2.6259824318076834, + "c7": 1.3129912159038313 }, "rgb": [222, 0, 59] }, @@ -326328,23 +326328,23 @@ "year": 1793, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 33.914058325156205, - "c2": -23.94504741270856, - "c3": -21.5600662061926, - "c4": 7.138444527892503, - "c5": -31.563031880529696, - "c6": -10.723603468407195, - "c7": 10.980299056197069 + "points": { + "c1": -34.342198242490674, + "c2": -11.816354358133218, + "c3": -26.700078144703465, + "c4": -25.268387280679416, + "c5": 9.128004786934724, + "c6": -41.58479513680946, + "c7": 27.29294560773394 }, - "vertexSeeds": { - "c1": 0.92395438230454, - "c2": 0.862453119859471, - "c3": 0.906929240782235, - "c4": 0.8787362469785911, - "c5": 0.8779394844342651, - "c6": 0.8817939131106362, - "c7": 0.8871197991493359 + "offsets": { + "c1": 1.5857605177993526, + "c2": 1.3592233009708745, + "c3": 1.1326860841423936, + "c4": 0.9061488673139153, + "c5": 0.6796116504854373, + "c6": 0.4530744336569591, + "c7": 0.22653721682847813 }, "rgb": [86, 146, 138] }, @@ -326355,23 +326355,23 @@ "year": 1793, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 13.221615214717069, - "c2": 18.01965257786349, - "c3": -5.737425024487855, - "c4": 39.487476606731136, - "c5": -15.915148096528053, - "c6": -40.11952189482721, - "c7": 24.793912263292583 + "points": { + "c1": 27.54759475461212, + "c2": 30.246287836976023, + "c3": -11.78292923784722, + "c4": 9.688173818805986, + "c5": -40.9159703087308, + "c6": -25.213764599832835, + "c7": 9.47044665139493 }, - "vertexSeeds": { - "c1": 4.152540504656565, - "c2": 4.169700735725577, - "c3": 3.9029660288193266, - "c4": 4.04172616327111, - "c5": 4.113029519876479, - "c6": 3.9049233193080237, - "c7": 3.9255129419438264 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687936, + "c3": 4.9930651872399485, + "c4": 3.994452149791962, + "c5": 2.9958391123439747, + "c6": 1.9972260748959743, + "c7": 0.9986130374479871 }, "rgb": [222, 0, 59] }, @@ -326382,23 +326382,23 @@ "year": 1793, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 28.57061147272902, - "c2": -0.8663961403950609, - "c3": 3.406102868865453, - "c4": 19.23838646214731, - "c5": -10.536682972870523, - "c6": 19.977275145104954, - "c7": 15.165272558686027 + "points": { + "c1": 25.304803779468536, + "c2": -20.93391900886251, + "c3": -15.043033509370229, + "c4": -27.613950393777444, + "c5": -32.753625138714554, + "c6": -12.350210217416485, + "c7": 1.9646458885013658 }, - "vertexSeeds": { - "c1": 4.684521708572623, - "c2": 3.9730123110579587, - "c3": 5.17292753934419, - "c4": 4.138819290524927, - "c5": 4.82977434035588, - "c6": 4.737223401684005, - "c7": 4.901760109605197 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859919, + "c3": 6.241331484049931, + "c4": 4.993065187239945, + "c5": 3.7447988904299576, + "c6": 2.4965325936199707, + "c7": 1.248266296809987 }, "rgb": [222, 0, 59] }, @@ -326409,23 +326409,23 @@ "year": 1793, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 0.9484115675367271, - "c2": -12.940480635294158, - "c3": 12.052917226581666, - "c4": 18.089064154350847, - "c5": -29.645267087619082, - "c6": -23.003136709203968, - "c7": -24.913452376390694 + "points": { + "c1": -10.365887953284819, + "c2": -23.84624941672181, + "c3": 28.49263037355081, + "c4": -20.343785473332936, + "c5": -25.957383172675137, + "c6": 0.5947479602496983, + "c7": -30.55709319443257 }, - "vertexSeeds": { - "c1": 6.683021685367588, - "c2": 6.705778865061909, - "c3": 6.690312257141053, - "c4": 6.6718359033226715, - "c5": 6.748002223434487, - "c6": 6.740367522595431, - "c7": 6.753739827429074 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037431, + "c3": 8.067498844197837, + "c4": 6.453999075358244, + "c5": 4.84049930651878, + "c6": 3.2269995376791862, + "c7": 1.6134997688395931 }, "rgb": [77, 76, 132] }, @@ -326436,23 +326436,23 @@ "year": 1793, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -22.908226363337388, - "c2": -26.174977403278916, - "c3": 27.957892990537687, - "c4": 24.27695109290447, - "c5": -17.391745681028294, - "c6": 34.50563854450067, - "c7": -11.788120336963896 + "points": { + "c1": -33.32983137318053, + "c2": -30.812222421959078, + "c3": 20.720203064047908, + "c4": -30.18915304188873, + "c5": 4.412181867726829, + "c6": 16.443065850012815, + "c7": 33.61089405053576 }, - "vertexSeeds": { - "c1": 5.185189896931998, - "c2": 5.150991016027537, - "c3": 5.178691645015863, - "c4": 5.18143396044232, - "c5": 5.150410794488752, - "c6": 5.164670495160006, - "c7": 5.1590260964046895 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779508, + "c3": 6.195099398982964, + "c4": 4.956079519186421, + "c5": 3.7170596393896305, + "c6": 2.478039759593087, + "c7": 1.2390198797965435 }, "rgb": [86, 146, 138] }, @@ -326463,23 +326463,23 @@ "year": 1793, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 8.753907394606031, - "c2": 4.103051214263729, - "c3": 29.126978415322164, - "c4": 1.676802100976758, - "c5": 7.860303227646071, - "c6": 0.19591294651648639, - "c7": 4.246260237585091 + "points": { + "c1": -25.80503036326638, + "c2": -22.810421874306478, + "c3": 19.161717620311897, + "c4": 25.49222530294425, + "c5": -12.906317463618379, + "c6": -9.633026624153608, + "c7": 24.830814588770153 }, - "vertexSeeds": { - "c1": 6.411091089671548, - "c2": 6.714510663618937, - "c3": 6.721819260651372, - "c4": 6.627448344963689, - "c5": 6.801241583999166, - "c6": 6.5479993546739275, - "c7": 6.423326795768157 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -326490,23 +326490,23 @@ "year": 1793, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 19.908185604730217, - "c2": 13.939299932035379, - "c3": 24.538337349391615, - "c4": 10.55001473593973, - "c5": 20.14926348104115, - "c6": -15.431421185329707, - "c7": -19.77445125557592 + "points": { + "c1": -18.189058923484332, + "c2": 10.470260701258063, + "c3": -1.4068477677183537, + "c4": 12.742760628036265, + "c5": 20.1354633730134, + "c6": -12.321770121041155, + "c7": 8.66278784000302 }, - "vertexSeeds": { - "c1": 1.7477763480560362, - "c2": 0.8948797287844513, - "c3": 0.8904589643569338, - "c4": 1.4652837569653272, - "c5": 1.3377791681510978, - "c6": 0.9596340143720068, - "c7": 1.8449910628169168 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081824, + "c3": 2.935737401756819, + "c4": 2.348589921405455, + "c5": 1.7614424410540914, + "c6": 1.1742949607027275, + "c7": 0.5871474803513633 }, "rgb": [77, 76, 132] }, @@ -326517,23 +326517,23 @@ "year": 1793, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -5.883746714671485, - "c2": 14.031923218984321, - "c3": 22.454276305445635, - "c4": 27.51022183292832, - "c5": -13.526362354040353, - "c6": 21.00106714902058, - "c7": -25.943047285366987 + "points": { + "c1": 6.130227630399563, + "c2": -5.911271768597086, + "c3": 23.44371848525441, + "c4": -21.034533661654756, + "c5": -24.292330857271182, + "c6": 14.738204250981607, + "c7": -13.770335562430631 }, - "vertexSeeds": { - "c1": 6.135663537823724, - "c2": 6.130774236558918, - "c3": 6.135766015595404, - "c4": 6.116286926611235, - "c5": 6.117637350132461, - "c6": 6.116102887940401, - "c7": 6.104910653608098 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750389, + "c3": 7.327785483125373, + "c4": 5.862228386500356, + "c5": 4.396671289875049, + "c6": 2.9311141932500324, + "c7": 1.4655570966250162 }, "rgb": [58, 15, 49] }, @@ -326544,23 +326544,23 @@ "year": 1794, "resistanceReported": true, "duration": 53654400, - "curveSeeds": { - "c1": -36.59558891674579, - "c2": 42.20539267018985, - "c3": -40.99638830600864, - "c4": 0.2725339249148817, - "c5": 45.52216124984467, - "c6": -59.13883054432099, - "c7": -34.284674057249944 + "points": { + "c1": -24.28245267346656, + "c2": 19.54658042639251, + "c3": 20.510305757238243, + "c4": -34.23100672941533, + "c5": -64.33571550758813, + "c6": -16.8808203269229, + "c7": 13.393771632942304 }, - "vertexSeeds": { - "c1": 2.074936719293863, - "c2": 2.086930840188399, - "c3": 2.022090456293135, - "c4": 1.9723027974957956, - "c5": 2.0738043233201395, - "c6": 1.928790357105581, - "c7": 2.045317103555869 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.023578363384186, + "c3": 2.519648636153491, + "c4": 2.0157189089227905, + "c5": 1.5117891816920959, + "c6": 1.0078594544613952, + "c7": 0.5039297272307005 }, "rgb": [222, 0, 59] }, @@ -326571,23 +326571,23 @@ "year": 1793, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -17.920341577336146, - "c2": -20.491856341564482, - "c3": 13.51928611894391, - "c4": 18.60369404492232, - "c5": 8.057985424056206, - "c6": -6.346271656358837, - "c7": 8.379198596231895 + "points": { + "c1": 4.756413387281071, + "c2": 20.666211317657705, + "c3": 4.72523747360373, + "c4": -25.516705359665337, + "c5": 15.510632704614046, + "c6": -0.49058255292959174, + "c7": 0.8363949366321144 }, - "vertexSeeds": { - "c1": 7.444625421592608, - "c2": 4.291382161281452, - "c3": 4.902191266284809, - "c4": 6.4363792722988675, - "c5": 7.0317065786652835, - "c6": 6.100084440842235, - "c7": 4.0216473319937425 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407303, + "c4": 7.3971336107258425, + "c5": 5.547850208044383, + "c6": 3.698566805362919, + "c7": 1.8492834026814595 }, "rgb": [86, 146, 138] }, @@ -326598,23 +326598,23 @@ "year": 1793, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 5.087233108710414, - "c2": 29.87383697863192, - "c3": 13.380273380042738, - "c4": 9.540685654643298, - "c5": 11.969020275882826, - "c6": -17.661291396596596, - "c7": 31.533400276085487 + "points": { + "c1": 20.90024715573236, + "c2": -8.702065486990065, + "c3": 7.149321555168775, + "c4": -27.270637716344993, + "c5": 5.30252234702219, + "c6": -27.881831921902617, + "c7": -21.078835875935305 }, - "vertexSeeds": { - "c1": 2.525906735751295, - "c2": 2.525906735751295, - "c3": 2.525906735751295, - "c4": 2.525906735751295, - "c5": 2.525906735751295, - "c6": 2.525906735751295, - "c7": 2.525906735751295 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -326625,23 +326625,23 @@ "year": 1793, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -22.39786501371914, - "c2": 9.202255649665801, - "c3": -2.3784516721225586, - "c4": 9.170444695219992, - "c5": -13.13303099386414, - "c6": 24.678751513018526, - "c7": 36.801687364936086 + "points": { + "c1": 36.47332293344702, + "c2": -27.903327840905234, + "c3": 18.52309107519698, + "c4": -28.31426226435504, + "c5": 15.871593492015926, + "c6": -15.731816438104797, + "c7": -33.1871648652335 }, - "vertexSeeds": { - "c1": 5.825851625723452, - "c2": 5.379173672792307, - "c3": 5.589326922720321, - "c4": 5.790688383441175, - "c5": 5.597832593164049, - "c6": 5.554381158703797, - "c7": 5.630562703294902 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147023, + "c3": 6.981044845122505, + "c4": 5.584835876098008, + "c5": 4.188626907073512, + "c6": 2.7924179380489935, + "c7": 1.3962089690244968 }, "rgb": [77, 76, 132] }, @@ -326652,23 +326652,23 @@ "year": 1793, "resistanceReported": true, "duration": 26438400, - "curveSeeds": { - "c1": -23.691066629002858, - "c2": 4.306239204712789, - "c3": 12.580008723383948, - "c4": -9.360751379590546, - "c5": -4.855116973709215, - "c6": 7.842862762797665, - "c7": 10.674586722852297 + "points": { + "c1": 37.80959810115416, + "c2": -6.0521330494976695, + "c3": 16.174371340774677, + "c4": -12.40784472010559, + "c5": 22.775273412732908, + "c6": 34.9782166518792, + "c7": -39.52138342987476 }, - "vertexSeeds": { - "c1": 4.798671641444174, - "c2": 4.595599358824583, - "c3": 4.492939967198517, - "c4": 4.499650481246709, - "c5": 4.60625989387523, - "c6": 4.496057266439743, - "c7": 4.493248873183871 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055477, + "c3": 5.779010633379565, + "c4": 4.6232085067036515, + "c5": 3.4674063800277386, + "c6": 2.3116042533518257, + "c7": 1.1558021266759129 }, "rgb": [77, 76, 132] }, @@ -326679,23 +326679,23 @@ "year": 1793, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -18.791715522375753, - "c2": 20.462574959404023, - "c3": -10.775665515565493, - "c4": 3.9812518259945335, - "c5": -25.57336137296458, - "c6": 24.128340749682593, - "c7": 5.13195903817067 + "points": { + "c1": -24.290212311896155, + "c2": -2.081691701767234, + "c3": 25.225052337650382, + "c4": -15.193709068395606, + "c5": 3.797469883686645, + "c6": 14.79200698301944, + "c7": -19.5376004354772 }, - "vertexSeeds": { - "c1": 4.449358294573292, - "c2": 4.396904936478291, - "c3": 4.436765038346229, - "c4": 4.586594174850832, - "c5": 4.296500306462531, - "c6": 4.464823071802007, - "c7": 4.601013922043471 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.6296809986130345, + "c3": 5.5247341655108695, + "c4": 4.419787332408693, + "c5": 3.3148404993065173, + "c6": 2.209893666204341, + "c7": 1.1049468331021763 }, "rgb": [58, 15, 49] }, @@ -326706,23 +326706,23 @@ "year": 1793, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -32.008522350908514, - "c2": 12.036590679014886, - "c3": -32.41492311217926, - "c4": 40.60556833683785, - "c5": 0.26206292762395833, - "c6": 0.37687834773733897, - "c7": -6.738382060996749 + "points": { + "c1": 12.428806029100649, + "c2": 19.250557028230304, + "c3": -31.634425962571367, + "c4": -39.98439757637459, + "c5": 43.46905911276046, + "c6": 30.186282467133736, + "c7": 43.92874294143388 }, - "vertexSeeds": { - "c1": 6.653691008437672, - "c2": 6.673564012910557, - "c3": 6.594809356194502, - "c4": 6.573685577438924, - "c5": 6.671478813744089, - "c6": 6.583484683533535, - "c7": 6.54399880872521 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916803, + "c3": 7.998150716597311, + "c4": 6.398520573277869, + "c5": 4.7988904299583774, + "c6": 3.1992602866389346, + "c7": 1.5996301433194915 }, "rgb": [238, 201, 159] }, @@ -326733,23 +326733,23 @@ "year": 1793, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 33.759206505080556, - "c2": -22.378420318207084, - "c3": 41.82106975670847, - "c4": 31.25177890797258, - "c5": 5.37062425004698, - "c6": -2.0468496968243315, - "c7": 14.45270829520775 + "points": { + "c1": -14.526533232836346, + "c2": 21.02673599374384, + "c3": 10.256018033607106, + "c4": -42.66500898121957, + "c5": -44.89712268805745, + "c6": -20.00921364604219, + "c7": 40.77291475389268 }, - "vertexSeeds": { - "c1": 7.11139896373057, - "c2": 7.11139896373057, - "c3": 7.11139896373057, - "c4": 7.11139896373057, - "c5": 7.11139896373057, - "c6": 7.11139896373057, - "c7": 7.11139896373057 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -326760,23 +326760,23 @@ "year": 1793, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -5.417231750179155, - "c2": 15.850275261209454, - "c3": 17.551952860701746, - "c4": 37.78092510748676, - "c5": -5.846560252752617, - "c6": 34.410033349362244, - "c7": 36.63780559809407 + "points": { + "c1": 39.258446371579886, + "c2": 41.70781611689443, + "c3": 3.7559472310386397, + "c4": -10.12110605869573, + "c5": -43.069374701785215, + "c6": 31.263088080358067, + "c7": -44.88195068486386 }, - "vertexSeeds": { - "c1": 4.994375337976051, - "c2": 5.054770636351991, - "c3": 4.653912250478962, - "c4": 4.957123457061912, - "c5": 4.736562068302536, - "c6": 4.775531194853666, - "c7": 4.9942318326646316 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [222, 0, 59] }, @@ -326787,23 +326787,23 @@ "year": 1793, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -17.859319151946117, - "c2": -13.931251528515851, - "c3": 29.40785578765598, - "c4": 23.974884623139697, - "c5": -16.503838260229756, - "c6": 2.621596478817491, - "c7": 6.036013668456601 + "points": { + "c1": 12.196544096763237, + "c2": 21.46989639853376, + "c3": -30.140332782126237, + "c4": 26.86837993806689, + "c5": -4.162118116000393, + "c6": 26.838006806543287, + "c7": -9.837520683226362 }, - "vertexSeeds": { - "c1": 6.461788078505444, - "c2": 6.533532957679162, - "c3": 6.7363880783193, - "c4": 6.523660933226772, - "c5": 6.875518845113532, - "c6": 6.57366018870067, - "c7": 6.888095335548594 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640772, + "c3": 8.41423948220064, + "c4": 6.731391585760509, + "c5": 5.048543689320376, + "c6": 3.3656957928802647, + "c7": 1.6828478964401323 }, "rgb": [77, 76, 132] }, @@ -326814,23 +326814,23 @@ "year": 1793, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 35.34053613271698, - "c2": -21.07897175788866, - "c3": -18.61421841193337, - "c4": -2.9518626897484594, - "c5": -35.01126918533451, - "c6": -3.6865688403094623, - "c7": 28.025383038498433 + "points": { + "c1": 23.883408399973327, + "c2": 6.964127805369934, + "c3": 10.14842161694122, + "c4": -27.652249896255423, + "c5": 9.459365419161195, + "c6": -28.06924511139863, + "c7": 20.4244133709689 }, - "vertexSeeds": { - "c1": 6.84203721315146, - "c2": 6.976095154585879, - "c3": 7.404973298278744, - "c4": 7.052188893021667, - "c5": 6.903192458615176, - "c6": 7.197940885232075, - "c7": 7.036965932409684 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485446, + "c3": 8.899676375404528, + "c4": 7.1197411003236315, + "c5": 5.3398058252427125, + "c6": 3.5598705501618157, + "c7": 1.779935275080918 }, "rgb": [222, 0, 59] }, @@ -326841,23 +326841,23 @@ "year": 1793, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 34.76692817711907, - "c2": -0.380223715609759, - "c3": -42.714396886809844, - "c4": 16.07565675732485, - "c5": -5.784412786309581, - "c6": 37.920132465269816, - "c7": 33.39119863041442 + "points": { + "c1": 24.075773083211402, + "c2": -26.463027325155142, + "c3": 42.71098035285951, + "c4": 37.41045292226397, + "c5": 24.065156965473847, + "c6": -43.696013919462786, + "c7": 15.149994141400668 }, - "vertexSeeds": { - "c1": 2.9861392696471447, - "c2": 2.728031018792987, - "c3": 2.9583892651655765, - "c4": 2.723206720988852, - "c5": 2.9509003997829315, - "c6": 2.7419594056114795, - "c7": 3.0074741606895063 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274622, + "c3": 3.6061026352288477, + "c4": 2.8848821081830813, + "c5": 2.1636615811373066, + "c6": 1.4424410540915407, + "c7": 0.721220527045766 }, "rgb": [222, 0, 59] }, @@ -326868,23 +326868,23 @@ "year": 1793, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 15.697525303869753, - "c2": 5.592308998088008, - "c3": -21.263651038179667, - "c4": -26.260839347497985, - "c5": 12.222324191513401, - "c6": -2.4640346468813235, - "c7": 4.636814151678749 + "points": { + "c1": 14.600697007669531, + "c2": -17.596076062678634, + "c3": -28.49053304449773, + "c4": -13.179944794321656, + "c5": -10.220381034484348, + "c6": 16.90824741677345, + "c7": 22.15308054151256 }, - "vertexSeeds": { - "c1": 7.069428368019363, - "c2": 7.260193546282649, - "c3": 7.286875306749328, - "c4": 7.035394416153927, - "c5": 6.815676233854091, - "c6": 7.3408774698166, - "c7": 7.196656276861088 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -326895,23 +326895,23 @@ "year": 1793, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -22.929434830574273, - "c2": 17.508085658505202, - "c3": 32.28817954792028, - "c4": -34.09793626746089, - "c5": 32.72526672451656, - "c6": 13.766641087078987, - "c7": -1.7195541676367156 + "points": { + "c1": 5.143477367747593, + "c2": 31.292899292572926, + "c3": 11.565986264675999, + "c4": -21.88898157721625, + "c5": -10.383241824071582, + "c6": 28.605273118824528, + "c7": 1.3999980796608327 }, - "vertexSeeds": { - "c1": 9.153949192006014, - "c2": 9.202287760063541, - "c3": 9.176272111772775, - "c4": 9.165882469725748, - "c5": 9.20054378803311, - "c6": 9.185726702441345, - "c7": 9.201974351091913 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105327, + "c3": 10.980120203421299, + "c4": 8.784096162736981, + "c5": 6.5880721220526635, + "c6": 4.392048081368345, + "c7": 2.196024040684318 }, "rgb": [222, 0, 59] }, @@ -326922,23 +326922,23 @@ "year": 1794, "resistanceReported": false, "duration": 46310400, - "curveSeeds": { - "c1": -23.4391915018589, - "c2": -54.49058431560919, - "c3": 39.99824946585865, - "c4": -39.97131911822533, - "c5": -30.081740036601012, - "c6": 49.79192884729592, - "c7": -60.4172791131167 + "points": { + "c1": 51.54500897204426, + "c2": -6.001271098339558, + "c3": -44.22608577815298, + "c4": 4.980551691658192, + "c5": -17.872850584023432, + "c6": 52.40206513084213, + "c7": -14.421805676133765 }, - "vertexSeeds": { - "c1": 8.958147780424579, - "c2": 8.470357016463284, - "c3": 9.109180066723699, - "c4": 8.534930632875396, - "c5": 8.917694545311573, - "c6": 9.101822012489798, - "c7": 9.060380730055032 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145629, + "c3": 11.003236245954687, + "c4": 8.802588996763745, + "c5": 6.601941747572804, + "c6": 4.401294498381884, + "c7": 2.20064724919092 }, "rgb": [86, 146, 138] }, @@ -326949,23 +326949,23 @@ "year": 1793, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 8.619360833148725, - "c2": -21.678371280425097, - "c3": 11.861526069042391, - "c4": -27.03274554328657, - "c5": -19.0052652894439, - "c6": -21.724356902911, - "c7": 19.437524546967545 + "points": { + "c1": -12.480187901677699, + "c2": -5.900897043348412, + "c3": 31.11111803804235, + "c4": 4.513750208251373, + "c5": -25.4504759621494, + "c6": 14.548014594170482, + "c7": -20.893615169871552 }, - "vertexSeeds": { - "c1": 7.3594004405620455, - "c2": 7.366749277886152, - "c3": 7.351953414286803, - "c4": 7.364954088995311, - "c5": 7.364114335741486, - "c6": 7.390440388169599, - "c7": 7.381309700248148 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364706, + "c3": 8.830328247804077, + "c4": 7.064262598243215, + "c5": 5.298196948682353, + "c6": 3.5321312991214904, + "c7": 1.7660656495608622 }, "rgb": [222, 0, 59] }, @@ -326976,23 +326976,23 @@ "year": 1793, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -11.480209107287676, - "c2": 6.027811852446806, - "c3": 9.677146640286036, - "c4": 12.190243097033477, - "c5": 8.951114436415121, - "c6": -11.242700197854028, - "c7": -19.835630725933274 + "points": { + "c1": 19.165673829786858, + "c2": 6.97580135116139, + "c3": -5.359667122052684, + "c4": 0.7276807413704951, + "c5": 13.139032152092529, + "c6": -12.75893665544759, + "c7": 17.86512435455263 }, - "vertexSeeds": { - "c1": 3.9256266473053185, - "c2": 3.8662932637466296, - "c3": 3.9137700946221283, - "c4": 4.0558878487624535, - "c5": 3.831409950554885, - "c6": 3.9837474271792273, - "c7": 3.890963509040546 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [238, 201, 159] }, @@ -327003,23 +327003,23 @@ "year": 1793, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": 40.01870076771464, - "c2": -36.14029162319994, - "c3": -51.644495147318985, - "c4": -33.324164879183456, - "c5": 5.7500432143360385, - "c6": -23.709877738132338, - "c7": -0.8376052680863424 + "points": { + "c1": -12.905945542459008, + "c2": 29.431644490288683, + "c3": -24.967750081562702, + "c4": 17.59690177880514, + "c5": -17.350958589235276, + "c6": -41.16761661523881, + "c7": -42.51482397341223 }, - "vertexSeeds": { - "c1": 3.028927500962426, - "c2": 3.009198697567159, - "c3": 2.929192272276022, - "c4": 2.911963054015998, - "c5": 2.9091085145814097, - "c6": 3.0739013693324027, - "c7": 2.971930335843618 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515946, + "c3": 3.744798890429964, + "c4": 2.9958391123439685, + "c5": 2.246879334257973, + "c6": 1.497919556171978, + "c7": 0.7489597780859953 }, "rgb": [77, 76, 132] }, @@ -327030,23 +327030,23 @@ "year": 1793, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 37.09294737023559, - "c2": -18.85441860089381, - "c3": 7.836704508329369, - "c4": 21.32626634237586, - "c5": 0.9688676150993132, - "c6": -8.753834280390102, - "c7": -10.369067971075957 + "points": { + "c1": 6.9525388864713875, + "c2": -31.124744478795236, + "c3": 21.91242962299139, + "c4": -23.040824870910402, + "c5": 0.274838952846288, + "c6": -37.35712922479219, + "c7": -19.875052952453302 }, - "vertexSeeds": { - "c1": 5.600527627479531, - "c2": 5.8073664013658925, - "c3": 5.7573862409575405, - "c4": 6.1214770023270955, - "c5": 4.886333956991638, - "c6": 4.718704818356326, - "c7": 5.934674484236597 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.51456310679612, + "c3": 7.9288025889967635, + "c4": 6.343042071197414, + "c5": 4.757281553398057, + "c6": 3.171521035598707, + "c7": 1.5857605177993535 }, "rgb": [86, 146, 138] }, @@ -327057,23 +327057,23 @@ "year": 1793, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 27.09500833555835, - "c2": 27.989312374082733, - "c3": -8.362053285289356, - "c4": -26.23980625924504, - "c5": 18.698966663940045, - "c6": -16.693993453266362, - "c7": 17.688804992681742 + "points": { + "c1": -8.922941915105064, + "c2": -1.1747812128440458, + "c3": -4.353301978449487, + "c4": -23.40395233923242, + "c5": -0.9081882611573633, + "c6": -29.26595816931825, + "c7": -0.5259020574603888 }, - "vertexSeeds": { - "c1": 6.474382721560385, - "c2": 6.815382484854017, - "c3": 6.527968965259159, - "c4": 6.392787695516183, - "c5": 6.380054396064085, - "c6": 6.656699891243577, - "c7": 6.456718249623806 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -327084,23 +327084,23 @@ "year": 1793, "resistanceReported": false, "duration": 35078400, - "curveSeeds": { - "c1": 11.931911322056585, - "c2": 3.2843785402159824, - "c3": 42.627202564102554, - "c4": -31.02402069130766, - "c5": 39.26483134425502, - "c6": -7.155094248080388, - "c7": 15.155857404635931 + "points": { + "c1": 35.02394831192138, + "c2": 10.72818668890747, + "c3": -42.06464808541205, + "c4": -31.91695343675527, + "c5": 7.853922156411755, + "c6": 1.1264705408570066, + "c7": -41.993797766124864 }, - "vertexSeeds": { - "c1": 6.659913290699852, - "c2": 6.9250904191840625, - "c3": 6.355187265082207, - "c4": 6.8055866205458, - "c5": 6.5096658719679645, - "c6": 6.4553800499849405, - "c7": 6.451265247741616 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -327111,23 +327111,23 @@ "year": 1793, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 18.422363806593246, - "c2": 30.4921054141698, - "c3": 39.163318784632054, - "c4": -18.801225481000476, - "c5": -11.392258460185857, - "c6": 8.416051671965668, - "c7": 4.140959640242109 + "points": { + "c1": -21.807508814114158, + "c2": -8.358183820321948, + "c3": -39.51606656918964, + "c4": -16.864823449361875, + "c5": -6.246679612171491, + "c6": 25.703986684581793, + "c7": -20.584047796408 }, - "vertexSeeds": { - "c1": 4.274743138067742, - "c2": 4.478692703183522, - "c3": 4.636298981100218, - "c4": 4.602358093036943, - "c5": 4.336280087852297, - "c6": 4.403251406450028, - "c7": 4.427587645477674 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693483, + "c3": 5.570966250577904, + "c4": 4.456773000462325, + "c5": 3.3425797503467365, + "c6": 2.228386500231158, + "c7": 1.114193250115579 }, "rgb": [58, 15, 49] }, @@ -327138,23 +327138,23 @@ "year": 1793, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -11.46691605147129, - "c2": 12.87430496768743, - "c3": -16.679993740076338, - "c4": -20.9543565851153, - "c5": 21.635216983155885, - "c6": 1.8789474343638908, - "c7": -13.514878167048103 + "points": { + "c1": 3.672209006630041, + "c2": -9.111565873025366, + "c3": 14.725544791424376, + "c4": -24.524232628664027, + "c5": 28.923253853393753, + "c6": -16.990937644877285, + "c7": 5.500337078179115 }, - "vertexSeeds": { - "c1": 4.369421425217492, - "c2": 4.47351169351785, - "c3": 4.305593178381092, - "c4": 4.36011239355339, - "c5": 4.345426984267022, - "c6": 4.4121217664185135, - "c7": 4.214854205149691 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.5742024965325925, + "c3": 5.478502080443825, + "c4": 4.382801664355069, + "c5": 3.2871012482663016, + "c6": 2.1914008321775347, + "c7": 1.0957004160887673 }, "rgb": [222, 0, 59] }, @@ -327165,23 +327165,23 @@ "year": 1793, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -4.743545731138489, - "c2": -15.846835749923933, - "c3": -30.75676516008096, - "c4": -23.361738772820164, - "c5": 29.61160626075771, - "c6": -5.34464648668704, - "c7": 26.225927220150297 + "points": { + "c1": -20.89887457702205, + "c2": 13.539075635470937, + "c3": -16.659037679437805, + "c4": 27.00455127975559, + "c5": -39.78635456816877, + "c6": 5.266845325354602, + "c7": -20.110688767371673 }, - "vertexSeeds": { - "c1": 4.470155633429097, - "c2": 4.597021849160875, - "c3": 4.573042616619784, - "c4": 4.511840090267673, - "c5": 4.568864703071691, - "c6": 4.549684890957354, - "c7": 4.574370383882055 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572815, + "c3": 5.501618122977347, + "c4": 4.401294498381877, + "c5": 3.3009708737864076, + "c6": 2.2006472491909386, + "c7": 1.1003236245954693 }, "rgb": [58, 15, 49] }, @@ -327192,23 +327192,23 @@ "year": 1793, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -10.81514885626573, - "c2": 0.08407139472159031, - "c3": -14.212282502224472, - "c4": 8.81028345263141, - "c5": 42.14650469698051, - "c6": 43.15186184436261, - "c7": 3.006549828494741 + "points": { + "c1": -8.354486476523967, + "c2": -16.6047297855079, + "c3": 36.42870995260541, + "c4": -43.5071263731981, + "c5": 9.918228644308996, + "c6": 26.71335358945921, + "c7": 23.43346216795286 }, - "vertexSeeds": { - "c1": 5.01468725470864, - "c2": 5.137863430949243, - "c3": 5.061884077637305, - "c4": 5.097342862329771, - "c5": 5.1381812037622225, - "c6": 5.313483574001133, - "c7": 5.143397340095867 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302353, + "c3": 6.495607951918641, + "c4": 5.196486361534909, + "c5": 3.8973647711511763, + "c6": 2.5982431807674655, + "c7": 1.2991215903837328 }, "rgb": [222, 0, 59] }, @@ -327219,23 +327219,23 @@ "year": 1793, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 21.999509932258377, - "c2": -9.70162107127641, - "c3": 9.914238433728286, - "c4": -17.769639981016645, - "c5": -20.578175936878438, - "c6": 26.861245040150088, - "c7": 26.298472090357876 + "points": { + "c1": -28.20925640939604, + "c2": -20.057520796515316, + "c3": -24.69210339106813, + "c4": -16.473294648474514, + "c5": 0.274631036471245, + "c6": 24.258244028052076, + "c7": 13.147228572603105 }, - "vertexSeeds": { - "c1": 9.933218553986185, - "c2": 9.890476379379884, - "c3": 9.913010849504923, - "c4": 9.992310611178615, - "c5": 9.92016145120674, - "c6": 9.967129315090682, - "c7": 9.929210150076235 + "offsets": { + "c1": 16.763754045307444, + "c2": 14.368932038834862, + "c3": 11.97411003236249, + "c4": 9.579288025889907, + "c5": 7.184466019417536, + "c6": 4.789644012944954, + "c7": 2.394822006472477 }, "rgb": [222, 0, 59] }, @@ -327246,23 +327246,23 @@ "year": 1793, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -2.133430822086524, - "c2": 31.397618525546036, - "c3": -24.200516161487265, - "c4": 14.423234062886188, - "c5": 25.79388972952028, - "c6": 3.1179259165696607, - "c7": -13.506098339935154 + "points": { + "c1": -20.820187071211286, + "c2": 26.69373325825238, + "c3": 13.036874303362296, + "c4": -4.618409661279383, + "c5": -20.43879997868515, + "c6": 13.95947849076321, + "c7": -21.919304197775396 }, - "vertexSeeds": { - "c1": 5.327233342072692, - "c2": 5.3360842745158354, - "c3": 5.291165203281459, - "c4": 5.2913127221090015, - "c5": 5.307043811954152, - "c6": 5.2963188944035124, - "c7": 5.320825810863317 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.6560332871012, + "c3": 6.380027739251113, + "c4": 5.104022191400857, + "c5": 3.8280166435506, + "c6": 2.5520110957003435, + "c7": 1.2760055478502563 }, "rgb": [86, 146, 138] }, @@ -327273,23 +327273,23 @@ "year": 1793, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 28.392057285989516, - "c2": -18.123310749810454, - "c3": 14.926022551581077, - "c4": 14.135351347617004, - "c5": 15.272520941931973, - "c6": -2.6218024309778585, - "c7": 20.683675889711886 + "points": { + "c1": -30.01400586271839, + "c2": 18.506245825225392, + "c3": 17.553148531846503, + "c4": -35.29403558361003, + "c5": 27.471560920313337, + "c6": -6.309687117945128, + "c7": 24.986820248124317 }, - "vertexSeeds": { - "c1": 5.107478968250151, - "c2": 5.472511100066732, - "c3": 5.304354916111274, - "c4": 5.36347854398638, - "c5": 5.452307022790835, - "c6": 5.505512829603202, - "c7": 5.34904637686301 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503472, + "c3": 6.611188164586217, + "c4": 5.288950531668978, + "c5": 3.9667128987517404, + "c6": 2.644475265834485, + "c7": 1.3222376329172467 }, "rgb": [58, 15, 49] }, @@ -327300,23 +327300,23 @@ "year": 1793, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -3.538731761435372, - "c2": -28.32305890651792, - "c3": 7.33583088039876, - "c4": -17.491765597414506, - "c5": 4.911853147363388, - "c6": -35.30840907618672, - "c7": -4.0706013790122455 + "points": { + "c1": -12.623870248002476, + "c2": 20.91200126059441, + "c3": -13.60197678603658, + "c4": 40.025722044183, + "c5": 11.741824294507445, + "c6": -39.63469839313843, + "c7": 0.993358754422971 }, - "vertexSeeds": { - "c1": 6.051024299510979, - "c2": 6.0260964086824895, - "c3": 6.1259093024962, - "c4": 6.178309276106677, - "c5": 6.195602971478238, - "c6": 6.1096023955153, - "c7": 5.789565526909822 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.01525658807213, + "c3": 7.512713823393431, + "c4": 6.0101710587147545, + "c5": 4.507628294036055, + "c6": 3.0050855293573773, + "c7": 1.5025427646786775 }, "rgb": [86, 146, 138] }, @@ -327327,23 +327327,23 @@ "year": 1793, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 1.34646076121534, - "c2": -13.471357507910323, - "c3": -14.352676338416153, - "c4": 32.62102429833172, - "c5": 12.410039889851014, - "c6": 12.036970567262898, - "c7": 32.61167925607013 + "points": { + "c1": 28.166350108413994, + "c2": -36.78979473613848, + "c3": 32.27629245084199, + "c4": 7.426710965939783, + "c5": -33.79817201483111, + "c6": 25.80332386368292, + "c7": -25.713872018669232 }, - "vertexSeeds": { - "c1": 7.150557616152192, - "c2": 7.398428616636781, - "c3": 7.222956532454199, - "c4": 7.376077435159292, - "c5": 7.493878407988471, - "c6": 7.5606452334635925, - "c7": 7.4178393718158135 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088775, + "c3": 9.246417013407301, + "c4": 7.39713361072585, + "c5": 5.547850208044376, + "c6": 3.698566805362925, + "c7": 1.8492834026814733 }, "rgb": [86, 146, 138] }, @@ -327354,23 +327354,23 @@ "year": 1793, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 6.411879375725938, - "c2": -29.77798460661698, - "c3": 6.968255473585359, - "c4": 2.196305571277094, - "c5": 22.62548908686196, - "c6": 0.7218650966719125, - "c7": 27.0707492427495 + "points": { + "c1": -6.09510176002291, + "c2": -19.516722190897504, + "c3": 3.25836930034, + "c4": -23.897671352609787, + "c5": 14.274328441873365, + "c6": 12.343350924325243, + "c7": -19.34964150509454 }, - "vertexSeeds": { - "c1": 6.604395670741556, - "c2": 6.626838107988457, - "c3": 6.400219115460219, - "c4": 6.574543458045482, - "c5": 6.425648609282974, - "c6": 6.368196313785842, - "c7": 6.551295508022068 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198338, + "c3": 8.159963014331954, + "c4": 6.527970411465567, + "c5": 4.8959778085991585, + "c6": 3.2639852057327725, + "c7": 1.6319926028663863 }, "rgb": [58, 15, 49] }, @@ -327381,23 +327381,23 @@ "year": 1793, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 4.6188849848877425, - "c2": 0.30488977599756595, - "c3": -42.46123277529105, - "c4": -37.87690767032916, - "c5": 37.5138752291332, - "c6": 11.894437208327503, - "c7": 41.672149641038466 + "points": { + "c1": 24.783769498517763, + "c2": -25.98617096580743, + "c3": 31.275772416537798, + "c4": 41.37130214427683, + "c5": 3.429561304286686, + "c6": -29.739724342432627, + "c7": -16.396183212719546 }, - "vertexSeeds": { - "c1": 4.588437735458833, - "c2": 4.6856058553651465, - "c3": 4.219873982859264, - "c4": 4.910821714216294, - "c5": 4.744127280606253, - "c6": 4.573252858962991, - "c7": 4.104163450383673 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457696, + "c3": 6.010171058714746, + "c4": 4.8081368469717995, + "c5": 3.606102635228848, + "c6": 2.404068423485897, + "c7": 1.202034211742951 }, "rgb": [58, 15, 49] }, @@ -327408,23 +327408,23 @@ "year": 1793, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -32.691671498575204, - "c2": 7.411619539856396, - "c3": 31.25425607327753, - "c4": -13.443932926878759, - "c5": -11.28318764146674, - "c6": -13.226413617991053, - "c7": 9.75818603989164 + "points": { + "c1": 9.103562024033657, + "c2": -35.09861146490803, + "c3": -26.442675404678074, + "c4": -29.796914402974526, + "c5": -29.69146221030743, + "c6": -17.912875239741243, + "c7": 17.74777383099496 }, - "vertexSeeds": { - "c1": 5.245876304362921, - "c2": 5.65003143131844, - "c3": 5.667853105726216, - "c4": 5.271796580241164, - "c5": 5.52350969171737, - "c6": 5.358170170948408, - "c7": 5.500900730685957 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.155339805825248, + "c3": 6.796116504854359, + "c4": 5.436893203883491, + "c5": 4.077669902912624, + "c6": 2.7184466019417353, + "c7": 1.3592233009708676 }, "rgb": [222, 0, 59] }, @@ -327435,23 +327435,23 @@ "year": 1793, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 8.21468358860794, - "c2": -36.13627386333524, - "c3": 17.25494036428624, - "c4": -22.75250166646167, - "c5": 27.91742167844216, - "c6": 32.583057420114734, - "c7": 17.976185609664803 + "points": { + "c1": 33.31385091268553, + "c2": 20.091638009562267, + "c3": -7.305434811511979, + "c4": -15.646791257248342, + "c5": 26.319100768560098, + "c6": -8.361276459856313, + "c7": 38.6099951413151 }, - "vertexSeeds": { - "c1": 2.127514707434467, - "c2": 2.200813778915295, - "c3": 2.1677908594855477, - "c4": 2.142338467673768, - "c5": 2.159258699977394, - "c6": 2.1247673850577447, - "c7": 2.2132335763284896 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746188, + "c3": 2.7276930189551587, + "c4": 2.182154415164123, + "c5": 1.636615811373094, + "c6": 1.091077207582065, + "c7": 0.545538603791029 }, "rgb": [86, 146, 138] }, @@ -327462,23 +327462,23 @@ "year": 1793, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -2.6326466944081943, - "c2": -19.05542339681588, - "c3": 20.14653310344505, - "c4": 13.919363598181427, - "c5": 13.068031946421755, - "c6": 0.9504776481386159, - "c7": 9.814532830278853 + "points": { + "c1": -13.513998178900264, + "c2": 0.6515951393277852, + "c3": 2.2676759600278764, + "c4": -10.204759991569224, + "c5": -18.6145012503994, + "c6": -9.08222224393127, + "c7": 15.328832790780467 }, - "vertexSeeds": { - "c1": 4.011517523777421, - "c2": 3.983698985625195, - "c3": 3.83215228561724, - "c4": 3.861316910844898, - "c5": 4.0102889241631265, - "c6": 3.964897749137703, - "c7": 3.8962670427933688 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.9084604715672695, + "c3": 4.923717059639394, + "c4": 3.9389736477115176, + "c5": 2.954230235783628, + "c6": 1.9694868238557521, + "c7": 0.9847434119278761 }, "rgb": [238, 201, 159] }, @@ -327489,23 +327489,23 @@ "year": 1793, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 29.432536059886594, - "c2": -36.65355755239968, - "c3": 33.781868272829435, - "c4": -43.20691864519174, - "c5": 37.36416933370088, - "c6": 19.00776201936771, - "c7": 4.647651961828316 + "points": { + "c1": -25.98115822491493, + "c2": 27.875442454280552, + "c3": -17.74942821374437, + "c4": -21.10514594196458, + "c5": -29.45860873762321, + "c6": 26.212411082930977, + "c7": -43.74283506126083 }, - "vertexSeeds": { - "c1": 1.2820047747408942, - "c2": 1.250317961453914, - "c3": 1.313923069519063, - "c4": 1.5992325921668575, - "c5": 1.2466548936054418, - "c6": 1.407740456063159, - "c7": 1.558905869684153 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.3300970873786415, + "c3": 1.9417475728155338, + "c4": 1.5533980582524278, + "c5": 1.16504854368932, + "c6": 0.7766990291262139, + "c7": 0.38834951456310696 }, "rgb": [86, 146, 138] }, @@ -327516,23 +327516,23 @@ "year": 1793, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 11.744553133916554, - "c2": -30.696506340667195, - "c3": -11.395644505782126, - "c4": -5.609012897114329, - "c5": 7.58236379577049, - "c6": 28.630344090757937, - "c7": -10.610957139609031 + "points": { + "c1": -14.573010989312795, + "c2": -15.564508829486837, + "c3": 16.783789936676776, + "c4": -24.917146856576256, + "c5": -6.809200551969461, + "c6": 34.32065963180899, + "c7": 24.39466109512209 }, - "vertexSeeds": { - "c1": 4.9223407174677165, - "c2": 5.177341750224125, - "c3": 5.293560477477312, - "c4": 5.185181142325451, - "c5": 5.26570620932862, - "c6": 5.151778049486081, - "c7": 5.102008555845261 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141464, + "c3": 6.403143781784568, + "c4": 5.122515025427649, + "c5": 3.841886269070732, + "c6": 2.5612575127138357, + "c7": 1.2806287563569179 }, "rgb": [86, 146, 138] }, @@ -327543,23 +327543,23 @@ "year": 1793, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -33.04056419398238, - "c2": 29.705135971004424, - "c3": 33.15849678047168, - "c4": 30.38404179955957, - "c5": 21.514528130347323, - "c6": -11.49383643895359, - "c7": 28.14020795222799 + "points": { + "c1": -13.812303938396507, + "c2": -31.170827512228755, + "c3": -6.067940243911227, + "c4": 35.77476498769521, + "c5": -35.73558653046204, + "c6": 14.105330348487108, + "c7": 13.65659218633786 }, - "vertexSeeds": { - "c1": 2.261956534897486, - "c2": 2.250151273398348, - "c3": 2.2578842985585803, - "c4": 2.2630244119822813, - "c5": 2.2332048224390504, - "c6": 2.2635156615713043, - "c7": 2.2328512065637023 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746183, + "c3": 2.72769301895515, + "c4": 2.1821544151641343, + "c5": 1.6366158113731006, + "c6": 1.0910772075820672, + "c7": 0.5455386037910336 }, "rgb": [77, 76, 132] }, @@ -327570,23 +327570,23 @@ "year": 1793, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 25.710948696724536, - "c2": -5.088394076384848, - "c3": 4.817913159788624, - "c4": -6.944941653411075, - "c5": 8.673860076311783, - "c6": 13.504882567567762, - "c7": 29.199231018836066 + "points": { + "c1": -18.960295759037237, + "c2": 10.978024868898864, + "c3": 24.43869094913328, + "c4": 33.9886970469079, + "c5": 26.29218359258271, + "c6": 23.48491791544715, + "c7": 32.82217922846317 }, - "vertexSeeds": { - "c1": 3.183879898719618, - "c2": 3.1882076379046365, - "c3": 3.187717429146531, - "c4": 3.0738895332565175, - "c5": 3.1585094748631364, - "c6": 3.132141969053831, - "c7": 3.130294246742936 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [222, 0, 59] }, @@ -327597,23 +327597,23 @@ "year": 1793, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -7.315886547174095, - "c2": 31.959903559315066, - "c3": -2.0667659799274034, - "c4": -29.87068112883963, - "c5": 23.98066530891566, - "c6": 12.568939287007176, - "c7": -18.388148086186483 + "points": { + "c1": -20.857162271871093, + "c2": -26.931802931479645, + "c3": 7.619485558965195, + "c4": -24.121795033739517, + "c5": -34.93773984149415, + "c6": -7.387056636777615, + "c7": 37.771835902325535 }, - "vertexSeeds": { - "c1": 4.401570194834218, - "c2": 4.247048435374347, - "c3": 4.239139121485212, - "c4": 4.527140927807114, - "c5": 4.432656268435355, - "c6": 4.3327857101598415, - "c7": 4.39367603129184 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.5742024965325925, + "c3": 5.478502080443825, + "c4": 4.382801664355069, + "c5": 3.2871012482663016, + "c6": 2.1914008321775347, + "c7": 1.0957004160887673 }, "rgb": [222, 0, 59] }, @@ -327624,23 +327624,23 @@ "year": 1793, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -13.521912868729537, - "c2": -14.531654894930426, - "c3": -29.294085708917542, - "c4": -35.76329982400401, - "c5": 27.341058713110385, - "c6": 32.92389268944024, - "c7": 1.3942060456628198 + "points": { + "c1": 29.24800814677903, + "c2": 23.054389133741957, + "c3": -36.053002226240864, + "c4": -15.248274173675789, + "c5": -30.130236098950686, + "c6": 27.75814225357736, + "c7": -38.25155487683658 }, - "vertexSeeds": { - "c1": 5.563960364038633, - "c2": 5.330109440392291, - "c3": 5.435860093361554, - "c4": 5.374215649772279, - "c5": 5.294613102221576, - "c6": 5.682240516572964, - "c7": 5.315072384624071 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986137, + "c3": 6.888580674988432, + "c4": 5.5108645399907505, + "c5": 4.133148404993069, + "c6": 2.7554322699953864, + "c7": 1.3777161349976823 }, "rgb": [77, 76, 132] }, @@ -327651,23 +327651,23 @@ "year": 1793, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -15.637499167211486, - "c2": 26.37566494434562, - "c3": 22.684511233168887, - "c4": -3.83311352858955, - "c5": -5.6170881237152805, - "c6": 20.433008021787064, - "c7": 2.9188817441090116 + "points": { + "c1": -20.438651888937407, + "c2": -27.113158495431982, + "c3": -7.00609078596753, + "c4": 23.359265971874176, + "c5": 2.898845450773944, + "c6": 23.16926651554959, + "c7": -5.617417647625675 }, - "vertexSeeds": { - "c1": 7.3383162757856475, - "c2": 7.104606638155598, - "c3": 6.954055254964761, - "c4": 6.824778956382994, - "c5": 7.040353631835502, - "c6": 7.230178552123549, - "c7": 7.264162901200066 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [77, 76, 132] }, @@ -327678,23 +327678,23 @@ "year": 1793, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 33.075633766212235, - "c2": -15.368093884174012, - "c3": -1.7305180822545552, - "c4": -3.9683497301419237, - "c5": -14.533620313827846, - "c6": -32.904073623895144, - "c7": 9.36724132343739 + "points": { + "c1": 31.755590949190065, + "c2": 16.594782767984334, + "c3": -22.814205089705702, + "c4": -5.230510422907635, + "c5": 20.951079944542172, + "c6": -36.69154531318069, + "c7": 7.106294907272918 }, - "vertexSeeds": { - "c1": 2.4405910166073914, - "c2": 2.4865931576499376, - "c3": 2.4471812153816854, - "c4": 2.4636066299377406, - "c5": 2.461399307883273, - "c6": 2.4994633339363563, - "c7": 2.4194008801937255 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690682, + "c3": 3.0282015718908872, + "c4": 2.4225612575127053, + "c5": 1.8169209431345341, + "c6": 1.2112806287563527, + "c7": 0.6056403143781713 }, "rgb": [238, 201, 159] }, @@ -327705,23 +327705,23 @@ "year": 1793, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 30.56730524148592, - "c2": -26.394160764360503, - "c3": 26.209994581654456, - "c4": -1.726740322063943, - "c5": -32.457389923734695, - "c6": 20.27270107140513, - "c7": -25.72818503007695 + "points": { + "c1": -12.905382782872433, + "c2": -9.923603184372311, + "c3": -3.412946834428851, + "c4": -10.169450897749481, + "c5": -3.1140659811680997, + "c6": 6.257719703741095, + "c7": 8.211284283776791 }, - "vertexSeeds": { - "c1": 5.296891716918395, - "c2": 5.211720977435678, - "c3": 5.286656823895502, - "c4": 5.224119379484674, - "c5": 5.251043324033726, - "c6": 5.289960682622212, - "c7": 5.239892163002056 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061026, + "c3": 6.356911696717521, + "c4": 5.085529357374017, + "c5": 3.814147018030513, + "c6": 2.5427646786870084, + "c7": 1.2713823393435042 }, "rgb": [77, 76, 132] }, @@ -327732,23 +327732,23 @@ "year": 1793, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 20.922724498839266, - "c2": 23.838592230460762, - "c3": -30.922111916462043, - "c4": -38.61504219020492, - "c5": 35.91337987147443, - "c6": -9.059852499034125, - "c7": -26.024275499403846 + "points": { + "c1": 6.166834597783847, + "c2": -25.919053863595046, + "c3": -36.444469488042756, + "c4": 2.0634136098804845, + "c5": 13.342264850955331, + "c6": -0.9183361381629354, + "c7": -4.741227460183822 }, - "vertexSeeds": { - "c1": 2.8964744363850197, - "c2": 2.711591596759141, - "c3": 2.942863681884952, - "c4": 2.930683242414726, - "c5": 2.740470188776853, - "c6": 2.938327575954069, - "c7": 2.8987613232230056 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194175, + "c3": 3.559870550161812, + "c4": 2.8478964401294498, + "c5": 2.1359223300970873, + "c6": 1.4239482200647249, + "c7": 0.7119741100323624 }, "rgb": [58, 15, 49] }, @@ -327759,23 +327759,23 @@ "year": 1793, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 11.77060298488015, - "c2": -10.777135211266877, - "c3": 21.31721019211343, - "c4": 16.612280700061746, - "c5": 24.808892513032298, - "c6": -20.867879169008248, - "c7": 4.197989272010517 + "points": { + "c1": 39.40358366778078, + "c2": -7.948006065507617, + "c3": -17.103003327285077, + "c4": 26.913948691415598, + "c5": -10.78352573376505, + "c6": -32.53085536595728, + "c7": -27.56130690461611 }, - "vertexSeeds": { - "c1": 4.284619578063134, - "c2": 4.131005429374144, - "c3": 4.137936003409396, - "c4": 4.350720553852603, - "c5": 4.175096353767539, - "c6": 4.028101639592818, - "c7": 4.315832889520596 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130372, + "c3": 5.247341655108639, + "c4": 4.197873324086918, + "c5": 3.148404993065186, + "c6": 2.0989366620434535, + "c7": 1.0494683310217212 }, "rgb": [238, 201, 159] }, @@ -327786,23 +327786,23 @@ "year": 1793, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 9.746784605331982, - "c2": -7.554430581530486, - "c3": -20.7827635250947, - "c4": -18.06876964304371, - "c5": -27.388432963712027, - "c6": -29.514050855450193, - "c7": 1.377246082850725 + "points": { + "c1": -31.932820263025846, + "c2": 8.036484699380999, + "c3": -23.517920157062214, + "c4": -27.086455816730783, + "c5": -13.185328091815858, + "c6": -14.545508345451122, + "c7": -31.219651099404313 }, - "vertexSeeds": { - "c1": 4.741945734150425, - "c2": 4.483075627946644, - "c3": 4.707162436962015, - "c4": 4.720164580710172, - "c5": 4.652757967687594, - "c6": 4.6255720245599905, - "c7": 4.760584439273127 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135922, + "c3": 5.825242718446602, + "c4": 4.660194174757281, + "c5": 3.495145631067961, + "c6": 2.3300970873786406, + "c7": 1.1650485436893203 }, "rgb": [222, 0, 59] }, @@ -327813,23 +327813,23 @@ "year": 1793, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -14.063364814455525, - "c2": -28.545306071145276, - "c3": 34.93218516428287, - "c4": -8.999559345431507, - "c5": 8.66203546396006, - "c6": -26.26607544722202, - "c7": 30.53947748058502 + "points": { + "c1": 23.864922330332206, + "c2": -9.409866238221746, + "c3": -32.27962043384338, + "c4": -40.47902209034204, + "c5": -9.394145688820512, + "c6": 37.89628508098514, + "c7": 2.0271897514256025 }, - "vertexSeeds": { - "c1": 3.805555983681925, - "c2": 3.6443255273519735, - "c3": 3.542858415245983, - "c4": 3.8026968234950522, - "c5": 3.6188828858432327, - "c6": 3.769760058228814, - "c7": 3.7557603549398353 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044387, + "c3": 4.623208506703651, + "c4": 3.698566805362925, + "c5": 2.773925104022188, + "c6": 1.8492834026814624, + "c7": 0.9246417013407366 }, "rgb": [222, 0, 59] }, @@ -327840,23 +327840,23 @@ "year": 1793, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 30.666017970057993, - "c2": -15.083780344400793, - "c3": -13.34093330180875, - "c4": 7.432112007248023, - "c5": -0.500098706924966, - "c6": 17.006645193986095, - "c7": -19.5791275936296 + "points": { + "c1": 11.260270239727234, + "c2": 0.6750430668301703, + "c3": -2.9634396347847343, + "c4": -20.42994680255955, + "c5": 28.073505134233955, + "c6": 34.22156314472177, + "c7": 0.47168470771037363 }, - "vertexSeeds": { - "c1": 9.084006274067088, - "c2": 9.389688481773524, - "c3": 9.472440998290573, - "c4": 9.090896624881696, - "c5": 9.609355902357123, - "c6": 9.400338296095102, - "c7": 9.519881444669945 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.09153952843272, + "c3": 11.74294960702728, + "c4": 9.394359685621813, + "c5": 7.045769764216371, + "c6": 4.697179842810907, + "c7": 2.3485899214054426 }, "rgb": [238, 201, 159] }, @@ -327867,23 +327867,23 @@ "year": 1793, "resistanceReported": true, "duration": 33782400, - "curveSeeds": { - "c1": 4.187679034354154, - "c2": -24.510350041101567, - "c3": 34.56851558790779, - "c4": -38.425024855922196, - "c5": 12.098756606367928, - "c6": -11.014517307762645, - "c7": 31.251461631033585 + "points": { + "c1": 8.91025129621729, + "c2": -27.91410736440024, + "c3": -13.356501121950032, + "c4": 23.452479291138097, + "c5": 27.573411202225593, + "c6": 47.55999152491197, + "c7": 7.874628590457995 }, - "vertexSeeds": { - "c1": 5.2661587430284476, - "c2": 5.301375510649861, - "c3": 5.2907810910950595, - "c4": 5.295009286597791, - "c5": 5.26588697229094, - "c6": 5.289145495094806, - "c7": 5.285795859617022 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020841, + "c3": 6.333795654184076, + "c4": 5.067036523347311, + "c5": 3.8002773925102944, + "c6": 2.53351826167353, + "c7": 1.266759130836765 }, "rgb": [86, 146, 138] }, @@ -327894,23 +327894,23 @@ "year": 1793, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -22.714324105220815, - "c2": -2.267185255350995, - "c3": -2.515766408110945, - "c4": -18.000130299064782, - "c5": -32.325368159909864, - "c6": 16.098280991812047, - "c7": 30.487805679443426 + "points": { + "c1": -5.036780121871523, + "c2": -31.34895966602506, + "c3": -8.620139402618634, + "c4": -7.4499841209080415, + "c5": 29.26390586916815, + "c6": -14.739967044406075, + "c7": -24.92151594677657 }, - "vertexSeeds": { - "c1": 2.417249170041558, - "c2": 2.6859177614833585, - "c3": 2.947638294861825, - "c4": 2.8188599915706156, - "c5": 2.714960937704762, - "c6": 2.7460198146931467, - "c7": 2.3936893892655866 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.3273231622746176, + "c3": 3.6061026352288463, + "c4": 2.884882108183079, + "c5": 2.1636615811373088, + "c6": 1.442441054091538, + "c7": 0.721220527045769 }, "rgb": [222, 0, 59] }, @@ -327921,23 +327921,23 @@ "year": 1793, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 6.346594482716704, - "c2": 30.184464982812443, - "c3": -12.066976567838811, - "c4": 25.255241595156804, - "c5": -20.229379932277286, - "c6": 12.99036254761468, - "c7": -25.957323736022445 + "points": { + "c1": -15.901099106883397, + "c2": -20.473910586380025, + "c3": -14.32388703717325, + "c4": -15.275858383589103, + "c5": -21.513500006819946, + "c6": -10.068932813602348, + "c7": -18.40082058558643 }, - "vertexSeeds": { - "c1": 6.496947064454353, - "c2": 6.765324564247172, - "c3": 6.575704248050313, - "c4": 6.973871138805129, - "c5": 6.752260622289395, - "c6": 6.663007809205467, - "c7": 7.029090327909394 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.09708737864077, + "c3": 8.414239482200657, + "c4": 6.731391585760521, + "c5": 5.048543689320385, + "c6": 3.3656957928802496, + "c7": 1.6828478964401354 }, "rgb": [86, 146, 138] }, @@ -327948,23 +327948,23 @@ "year": 1793, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -26.865080510818572, - "c2": -20.213062383823136, - "c3": 26.177721787539994, - "c4": 1.5841703746003475, - "c5": 15.965309774844506, - "c6": -27.274480760074134, - "c7": -30.287481775772648 + "points": { + "c1": 36.88185002724744, + "c2": -10.192632445970727, + "c3": 27.40301481792315, + "c4": 25.62797153459067, + "c5": 35.88664191916192, + "c6": 4.227472887645298, + "c7": 20.662445665904492 }, - "vertexSeeds": { - "c1": 4.352331606217616, - "c2": 4.352331606217616, - "c3": 4.352331606217616, - "c4": 4.352331606217616, - "c5": 4.352331606217616, - "c6": 4.352331606217616, - "c7": 4.352331606217616 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -327975,23 +327975,23 @@ "year": 1793, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -1.4171312393553137, - "c2": -15.713134347984909, - "c3": -36.297892142571115, - "c4": -28.576117839674666, - "c5": 3.7256873064692826, - "c6": 31.76477341258974, - "c7": -13.567655267725783 + "points": { + "c1": -8.916636835433223, + "c2": 29.066225845014607, + "c3": -38.39590218982552, + "c4": -25.2766665212826, + "c5": -8.458098211217987, + "c6": -27.000095588375572, + "c7": 29.243447809228137 }, - "vertexSeeds": { - "c1": 6.538655070661637, - "c2": 6.551215897771855, - "c3": 6.759449302493923, - "c4": 6.643104964856046, - "c5": 6.546505532021314, - "c6": 6.6977348947588595, - "c7": 6.792908866766611 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -328002,23 +328002,23 @@ "year": 1793, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 4.035363926542193, - "c2": 24.17263370022246, - "c3": -26.85776594578016, - "c4": 19.649121194393313, - "c5": 21.983512145572522, - "c6": 5.711315525714699, - "c7": 11.947221721485189 + "points": { + "c1": 3.933065873479361, + "c2": -1.92376192410849, + "c3": -5.094278818567908, + "c4": -25.00160242924716, + "c5": 3.145900206947804, + "c6": 26.75573211164188, + "c7": 21.58148169683474 }, - "vertexSeeds": { - "c1": 5.78537733890988, - "c2": 5.77343304278982, - "c3": 5.796364716531111, - "c4": 5.807019300735235, - "c5": 5.8023987915441335, - "c6": 5.788419941362714, - "c7": 5.7816149157972525 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066613, + "c3": 6.934812760055557, + "c4": 5.5478502080445, + "c5": 4.160887656033169, + "c6": 2.7739251040221125, + "c7": 1.3869625520110562 }, "rgb": [238, 201, 159] }, @@ -328029,23 +328029,23 @@ "year": 1793, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -12.927449674342537, - "c2": -3.9676407730630245, - "c3": -7.039006930539337, - "c4": 22.482468640316803, - "c5": 8.10243703046197, - "c6": -24.333602258515175, - "c7": -15.430557825029755 + "points": { + "c1": 7.523833561347118, + "c2": 9.093887149607937, + "c3": -6.923429506660426, + "c4": -18.542092797844752, + "c5": -3.372481297705537, + "c6": 17.308744134047203, + "c7": 19.458667458819995 }, - "vertexSeeds": { - "c1": 7.360874908604046, - "c2": 6.945551906537854, - "c3": 7.26643086730857, - "c4": 7.6310431142202315, - "c5": 7.462339458047321, - "c6": 7.640750026521351, - "c7": 7.632200589660046 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.09570041608876, + "c3": 9.246417013407312, + "c4": 7.397133610725845, + "c5": 5.54785020804438, + "c6": 3.698566805362915, + "c7": 1.8492834026814653 }, "rgb": [77, 76, 132] }, @@ -328056,23 +328056,23 @@ "year": 1793, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -6.405749575153038, - "c2": 19.312151689984127, - "c3": -0.25220151749633146, - "c4": 17.505125945331997, - "c5": 27.83263635304388, - "c6": -19.829960401418965, - "c7": 11.746498807812593 + "points": { + "c1": 33.020495055760435, + "c2": -33.667962164247555, + "c3": -15.159460999733145, + "c4": 0.055685325641299244, + "c5": -27.72474694701077, + "c6": 24.918707762682274, + "c7": -22.896004794403293 }, - "vertexSeeds": { - "c1": 9.341894712541087, - "c2": 9.83977642846061, - "c3": 9.73585519499352, - "c4": 9.557155598838833, - "c5": 9.633192998738455, - "c6": 9.34019732450527, - "c7": 9.612448734292819 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.257975034674075, + "c3": 11.881645862228382, + "c4": 9.505316689782717, + "c5": 7.128987517337023, + "c6": 4.752658344891358, + "c7": 2.376329172445665 }, "rgb": [222, 0, 59] }, @@ -328083,23 +328083,23 @@ "year": 1793, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -11.353777011266438, - "c2": 7.541245809050977, - "c3": 5.857681157122286, - "c4": -24.746832949606514, - "c5": 9.268991947091493, - "c6": 20.32523078620762, - "c7": -15.816202425099949 + "points": { + "c1": 20.662479958143855, + "c2": -19.708102804265664, + "c3": -19.357463481162522, + "c4": -25.097975409479197, + "c5": -28.132284335973228, + "c6": -12.869379443957147, + "c7": 13.778726505138756 }, - "vertexSeeds": { - "c1": 3.668313820751141, - "c2": 3.659815388719302, - "c3": 3.65780525832254, - "c4": 3.668679732708526, - "c5": 3.666847861252266, - "c6": 3.6682820288613343, - "c7": 3.668020008697036 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642189, + "c3": 4.39204808136852, + "c4": 3.513638465094851, + "c5": 2.635228848821007, + "c6": 1.756819232547338, + "c7": 0.878409616273669 }, "rgb": [238, 201, 159] }, @@ -328110,23 +328110,23 @@ "year": 1793, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 21.493977937041088, - "c2": 24.73719659130638, - "c3": -14.854613533786374, - "c4": 19.77067779986138, - "c5": -1.3177017325244762, - "c6": 31.065575019600978, - "c7": -4.463596610328672 + "points": { + "c1": 8.158305335394026, + "c2": -30.39084372465002, + "c3": -6.307262005924663, + "c4": 30.585111772419445, + "c5": 0.943166164338777, + "c6": -26.765777454623414, + "c7": -22.830656781334795 }, - "vertexSeeds": { - "c1": 2.5753678467887586, - "c2": 2.4321456195027498, - "c3": 2.3981882248673374, - "c4": 2.3816215470574917, - "c5": 2.4473789561515726, - "c6": 2.4242642401541477, - "c7": 2.4424456097445275 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.772538141470179, + "c3": 3.1437817845584815, + "c4": 2.515025427646783, + "c5": 1.886269070735094, + "c6": 1.2575127138233961, + "c7": 0.6287563569116981 }, "rgb": [58, 15, 49] }, @@ -328137,23 +328137,23 @@ "year": 1793, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 22.203359832497924, - "c2": 18.793019293136922, - "c3": -11.08127955071016, - "c4": -0.5625237794156455, - "c5": 10.631770005305846, - "c6": -1.8579280025216072, - "c7": 9.470262649108541 + "points": { + "c1": 19.11297904752204, + "c2": -12.063331187351384, + "c3": 2.0147797934745135, + "c4": 1.6567886061674315, + "c5": 24.567868012507965, + "c6": 1.8313873671392855, + "c7": 17.881325330983984 }, - "vertexSeeds": { - "c1": 7.367378879437512, - "c2": 7.417473575135855, - "c3": 6.977601598337408, - "c4": 6.895363613613039, - "c5": 6.870430507631457, - "c6": 7.4137439625584065, - "c7": 7.395193567155643 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [58, 15, 49] }, @@ -328164,23 +328164,23 @@ "year": 1793, "resistanceReported": true, "duration": 21686400, - "curveSeeds": { - "c1": -24.439634314464016, - "c2": -26.46165825806211, - "c3": 23.150069414207564, - "c4": -10.80960410191561, - "c5": -26.703944657413494, - "c6": -20.561986971444497, - "c7": 21.07401891279443 + "points": { + "c1": -0.3659213237732146, + "c2": 4.9034465479291995, + "c3": -34.95072452480973, + "c4": 25.786077730467404, + "c5": -8.755656903281473, + "c6": 15.776745814222345, + "c7": 21.534805363885084 }, - "vertexSeeds": { - "c1": 5.635030230066274, - "c2": 5.57068958948498, - "c3": 5.443386914746805, - "c4": 5.60856310870678, - "c5": 5.704644437749363, - "c6": 5.657134779674031, - "c7": 5.488514787517157 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905695, + "c3": 6.842348589921393, + "c4": 5.47387887193712, + "c5": 4.105409153952848, + "c6": 2.7369394359685755, + "c7": 1.3684697179842724 }, "rgb": [86, 146, 138] }, @@ -328191,23 +328191,23 @@ "year": 1793, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 4.196278551336654, - "c2": -39.87159332335498, - "c3": 18.50561174790598, - "c4": 22.459888645643822, - "c5": 0.7168121946451222, - "c6": -10.73108070798213, - "c7": -22.256620587033304 + "points": { + "c1": -35.49921169633252, + "c2": 25.94334093435495, + "c3": 2.5745348071998677, + "c4": 15.076111426074284, + "c5": -18.50010708373116, + "c6": 22.25360822010937, + "c7": 8.014475807965717 }, - "vertexSeeds": { - "c1": 3.118636854311818, - "c2": 3.1143334723005522, - "c3": 3.1423050402530586, - "c4": 3.124593950098652, - "c5": 3.1127281632209787, - "c6": 3.118111832138476, - "c7": 3.1447304705674526 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556193, + "c3": 3.767914932963519, + "c4": 3.0143319463707705, + "c5": 2.2607489597780965, + "c6": 1.5071659731854228, + "c7": 0.7535829865927488 }, "rgb": [77, 76, 132] }, @@ -328218,23 +328218,23 @@ "year": 1794, "resistanceReported": false, "duration": 44755200, - "curveSeeds": { - "c1": -22.754035054822936, - "c2": 43.92979681647913, - "c3": -8.211212325769687, - "c4": -48.671418606845464, - "c5": 15.429613201381223, - "c6": -46.99955032658339, - "c7": -55.65915588574012 + "points": { + "c1": 46.20414803206901, + "c2": 54.750871629523324, + "c3": 9.194196889870291, + "c4": 46.39690805394206, + "c5": -19.701495845534772, + "c6": 0.5763516479311974, + "c7": -58.88915509076263 }, - "vertexSeeds": { - "c1": 6.314319008847155, - "c2": 6.506878442792564, - "c3": 6.237404695167342, - "c4": 6.440248541912041, - "c5": 6.463154961592976, - "c6": 6.21131416110079, - "c7": 6.4716130397445975 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997229, + "c3": 8.04438280166436, + "c4": 6.435506241331493, + "c5": 4.826629680998624, + "c6": 3.2177531206657357, + "c7": 1.6088765603328679 }, "rgb": [86, 146, 138] }, @@ -328245,23 +328245,23 @@ "year": 1794, "resistanceReported": true, "duration": 65750400, - "curveSeeds": { - "c1": -73.01902524637616, - "c2": 79.38516790605328, - "c3": 42.8484597514547, - "c4": -34.64883654095879, - "c5": -7.5727566111880265, - "c6": 70.44630221258726, - "c7": 73.9956675349242 + "points": { + "c1": 13.947751131662486, + "c2": 31.03334748992779, + "c3": 3.1121406186486524, + "c4": 1.7325403340497587, + "c5": 42.04928574110268, + "c6": -54.14285109477973, + "c7": -73.27198539292749 }, - "vertexSeeds": { - "c1": 3.2109015302641417, - "c2": 3.103501983435878, - "c3": 3.293484504264346, - "c4": 3.2824428066812086, - "c5": 3.2498944700284893, - "c6": 3.0838380798705884, - "c7": 3.1882770522655277 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918169, + "c3": 3.9759593157651407, + "c4": 3.1807674526121126, + "c5": 2.3855755894590844, + "c6": 1.5903837263060563, + "c7": 0.7951918631530281 }, "rgb": [77, 76, 132] }, @@ -328272,23 +328272,23 @@ "year": 1794, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -0.778216237055716, - "c2": 3.448002692838081, - "c3": 43.6161760708193, - "c4": 39.328612284078694, - "c5": -45.92135236077702, - "c6": 18.04085695623673, - "c7": 15.676465731738567 + "points": { + "c1": -49.12467381984436, + "c2": 15.634503896018678, + "c3": -3.8871269900446848, + "c4": 38.20876696690885, + "c5": -19.706559044986022, + "c6": -56.388036274892215, + "c7": -33.07618752166231 }, - "vertexSeeds": { - "c1": 4.7517057582232685, - "c2": 4.868860194855327, - "c3": 4.868096071732475, - "c4": 4.862503087933283, - "c5": 4.717327346147509, - "c6": 4.689518808883215, - "c7": 4.826228982730138 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.0735090152565885, + "c3": 5.894590846047158, + "c4": 4.715672676837726, + "c5": 3.5367545076282942, + "c6": 2.357836338418863, + "c7": 1.1789181692094315 }, "rgb": [222, 0, 59] }, @@ -328299,23 +328299,23 @@ "year": 1793, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -29.230698792723196, - "c2": -20.111702261288134, - "c3": -7.098120544923493, - "c4": 24.490356604275647, - "c5": 3.646797823944347, - "c6": 26.424858749277853, - "c7": 1.0007198146884235 + "points": { + "c1": 13.448716805096865, + "c2": -38.07925617741418, + "c3": 14.83802426083325, + "c4": 25.71115122947051, + "c5": -8.741500381551905, + "c6": 29.825218377969428, + "c7": 7.229016603623656 }, - "vertexSeeds": { - "c1": 5.759127362941309, - "c2": 5.70359995492621, - "c3": 5.8475934156887845, - "c4": 5.888398110326991, - "c5": 5.931163369626497, - "c6": 5.533237176321006, - "c7": 5.827918172011751 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509013, + "c3": 7.189089227924173, + "c4": 5.751271382339357, + "c5": 4.313453536754517, + "c6": 2.8756356911696783, + "c7": 1.4378178455848392 }, "rgb": [77, 76, 132] }, @@ -328326,23 +328326,23 @@ "year": 1793, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 17.173317874364372, - "c2": 1.5764705197510196, - "c3": -23.627684434876105, - "c4": 24.498324718613162, - "c5": 18.475744870656357, - "c6": 21.76383918433993, - "c7": -2.9661394200501476 + "points": { + "c1": 7.124543475266229, + "c2": -22.3035887323196, + "c3": -22.2810817561238, + "c4": -24.983442703350658, + "c5": -8.12999622495903, + "c6": -15.06531843800675, + "c7": -3.6102864219861317 }, - "vertexSeeds": { - "c1": 4.8431241252482415, - "c2": 4.814237350629076, - "c3": 4.979958793443854, - "c4": 4.800756360737924, - "c5": 4.691355367305546, - "c6": 4.98912233474746, - "c7": 4.726690120751163 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [222, 0, 59] }, @@ -328353,23 +328353,23 @@ "year": 1793, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 8.032228139162427, - "c2": 29.895042979669512, - "c3": 11.271511036904876, - "c4": -6.318674310760457, - "c5": 25.08658170191645, - "c6": -7.54351903160806, - "c7": -16.129797346122054 + "points": { + "c1": 27.699397713927127, + "c2": 7.042226156763846, + "c3": 21.066978593670427, + "c4": -7.283444676731367, + "c5": -2.1657656659127973, + "c6": 18.698671039039546, + "c7": -17.871539194272806 }, - "vertexSeeds": { - "c1": 1.4953151630880765, - "c2": 1.475368323634051, - "c3": 1.557156904958781, - "c4": 1.5545338600873873, - "c5": 1.5061559993474067, - "c6": 1.569226693342841, - "c7": 1.4209711289666471 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820163, + "c4": 1.5349052242256112, + "c5": 1.1511789181692107, + "c6": 0.7674526121128056, + "c7": 0.38372630605640495 }, "rgb": [86, 146, 138] }, @@ -328380,23 +328380,23 @@ "year": 1793, "resistanceReported": false, "duration": 3715200, - "curveSeeds": { - "c1": -10.184814634714066, - "c2": -3.726554211140094, - "c3": -12.758658663973343, - "c4": 3.4087300672367515, - "c5": -5.307380348667756, - "c6": 10.062989420461788, - "c7": 7.483057223288471 + "points": { + "c1": 10.797290379307162, + "c2": 9.105201039912219, + "c3": -10.474862862323675, + "c4": 7.725617518536412, + "c5": -9.081579856441891, + "c6": 5.33636578948107, + "c7": -11.276686594774507 }, - "vertexSeeds": { - "c1": 2.079095902671685, - "c2": 2.2930377179868735, - "c3": 2.0703643418737094, - "c4": 2.265297195549193, - "c5": 2.195861435552755, - "c6": 2.3025119677206196, - "c7": 2.282301184333786 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.32871012482663, + "c3": 2.773925104022192, + "c4": 2.2191400832177544, + "c5": 1.6643550624133132, + "c6": 1.1095700416088756, + "c7": 0.5547850208044378 }, "rgb": [86, 146, 138] }, @@ -328407,23 +328407,23 @@ "year": 1793, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 33.20129165049853, - "c2": 23.196014375174414, - "c3": 13.3527395066004, - "c4": 5.309906551326442, - "c5": -0.518120055410705, - "c6": 13.040800615184686, - "c7": -1.00132885120194 + "points": { + "c1": 11.409468290263199, + "c2": 20.35573064995237, + "c3": 3.6104203480373798, + "c4": -17.18613050634336, + "c5": 5.984852210214989, + "c6": 11.172939158165413, + "c7": -14.29855843053592 }, - "vertexSeeds": { - "c1": 6.433192839637839, - "c2": 6.280641329954834, - "c3": 6.682868861842136, - "c4": 6.717714656011626, - "c5": 6.553312005073401, - "c6": 6.571500721680263, - "c7": 6.601094506565644 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997216, + "c3": 8.044382801664366, + "c4": 6.4355062413314865, + "c5": 4.826629680998608, + "c6": 3.217753120665757, + "c7": 1.6088765603328785 }, "rgb": [238, 201, 159] }, @@ -328434,23 +328434,23 @@ "year": 1793, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -21.621431793570032, - "c2": 1.605058805573126, - "c3": -11.668335594733954, - "c4": -22.87090615045937, - "c5": 18.940240477396813, - "c6": 19.681198051240045, - "c7": 2.2414797631872823 + "points": { + "c1": -16.598803153467596, + "c2": -16.077711278034595, + "c3": 10.33380182415884, + "c4": 4.844596531032483, + "c5": 16.871605019427122, + "c6": -6.285977813313892, + "c7": 4.544967675346733 }, - "vertexSeeds": { - "c1": 3.717484436938956, - "c2": 3.7121105930079565, - "c3": 3.735299334422266, - "c4": 3.7083550613931657, - "c5": 3.7342398165886226, - "c6": 3.7144192437522827, - "c7": 3.7417517082034637 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803033, + "c3": 4.484512251502549, + "c4": 3.5876098012020217, + "c5": 2.6907073509015387, + "c6": 1.7938049006010108, + "c7": 0.8969024503005277 }, "rgb": [58, 15, 49] }, @@ -328461,23 +328461,23 @@ "year": 1793, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -21.001383434742884, - "c2": 18.0539288309974, - "c3": -13.91077810944202, - "c4": 27.11868112472675, - "c5": -4.131913660607054, - "c6": -3.54495101531381, - "c7": 21.99406420520181 + "points": { + "c1": 11.818476848735493, + "c2": 20.89639094446926, + "c3": 15.42288655504668, + "c4": 33.654640201504506, + "c5": 5.571394135174948, + "c6": -14.426505713133594, + "c7": 21.417556148707902 }, - "vertexSeeds": { - "c1": 5.246113989637306, - "c2": 5.246113989637306, - "c3": 5.246113989637306, - "c4": 5.246113989637306, - "c5": 5.246113989637306, - "c6": 5.246113989637306, - "c7": 5.246113989637306 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -328488,23 +328488,23 @@ "year": 1793, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 10.365166545197518, - "c2": 15.584140201812318, - "c3": 7.4891291484866755, - "c4": 21.29907203585571, - "c5": -28.267003303354034, - "c6": -12.60776802958301, - "c7": 5.5801628793864 + "points": { + "c1": -14.627492146154157, + "c2": -3.575161417157407, + "c3": -0.41448380476867186, + "c4": -19.596290538624963, + "c5": -26.6480894175327, + "c6": 5.618302855279175, + "c7": -26.515238890550943 }, - "vertexSeeds": { - "c1": 8.75628494135479, - "c2": 8.872421442130323, - "c3": 8.847302465174579, - "c4": 8.931302386591264, - "c5": 8.59830536930807, - "c6": 8.755251616631888, - "c7": 8.671650513738689 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582519, + "c3": 10.679611650485425, + "c4": 8.543689320388376, + "c5": 6.4077669902912815, + "c6": 4.271844660194188, + "c7": 2.135922330097094 }, "rgb": [222, 0, 59] }, @@ -328515,23 +328515,23 @@ "year": 1793, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 19.454470197974324, - "c2": -21.075361736609185, - "c3": 13.904142156864062, - "c4": -18.098945980275488, - "c5": -11.047564794663705, - "c6": 22.440144307826145, - "c7": 2.873354276551453 + "points": { + "c1": -12.461820629970596, + "c2": 18.681148267024597, + "c3": 2.7844190245043094, + "c4": 12.979809446299441, + "c5": 18.945511558432145, + "c6": 18.53764764391871, + "c7": 25.43692809312587 }, - "vertexSeeds": { - "c1": 8.002204265095022, - "c2": 7.997618783534493, - "c3": 8.050119834583148, - "c4": 8.006643857219272, - "c5": 8.045312024138394, - "c6": 8.007801339873732, - "c7": 8.043467052220043 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732371, + "c3": 9.616273693943516, + "c4": 7.693018955154852, + "c5": 5.769764216366186, + "c6": 3.8465094775775213, + "c7": 1.923254738788665 }, "rgb": [86, 146, 138] }, @@ -328542,23 +328542,23 @@ "year": 1793, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 7.823813248833098, - "c2": 10.523286391070528, - "c3": 23.152687295369084, - "c4": -8.781218872699409, - "c5": 11.947149319465595, - "c6": 12.7547410748493, - "c7": 6.243553893670104 + "points": { + "c1": 13.876757206680715, + "c2": 14.823468031211767, + "c3": 18.194929881255767, + "c4": 3.6201046195743736, + "c5": 22.215483682658785, + "c6": -15.242351343686932, + "c7": -2.2236489115156104 }, - "vertexSeeds": { - "c1": 5.421710797565008, - "c2": 5.237612434743574, - "c3": 5.447768001275661, - "c4": 5.340624149126723, - "c5": 5.346338196681731, - "c6": 5.330679047967041, - "c7": 5.296285483307708 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.8779472954230085, + "c3": 6.564956079519192, + "c4": 5.251964863615339, + "c5": 3.9389736477115216, + "c6": 2.6259824318076697, + "c7": 1.3129912159038521 }, "rgb": [238, 201, 159] }, @@ -328569,23 +328569,23 @@ "year": 1793, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -5.058945609595025, - "c2": -10.984004113285323, - "c3": -10.287715651896875, - "c4": -1.8528904259011156, - "c5": -4.323768085482925, - "c6": 15.15816616732193, - "c7": 24.676917626971395 + "points": { + "c1": -15.796094475322338, + "c2": -13.98416311648457, + "c3": -2.6476590299720684, + "c4": -26.96598663900916, + "c5": 29.222023200679075, + "c6": -1.5050857702740288, + "c7": -17.83540551728898 }, - "vertexSeeds": { - "c1": 4.311174814360819, - "c2": 4.204717174187373, - "c3": 4.142553096892826, - "c4": 4.448170137013949, - "c5": 4.487446025197069, - "c6": 4.280335068556593, - "c7": 4.1591523677844195 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371706, + "c3": 5.386037910309752, + "c4": 4.308830328247811, + "c5": 3.2316227461858578, + "c6": 2.1544151641239053, + "c7": 1.0772075820619527 }, "rgb": [222, 0, 59] }, @@ -328596,23 +328596,23 @@ "year": 1793, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 37.89903401653791, - "c2": 11.924126617760564, - "c3": 29.2967681659337, - "c4": 29.55599684058035, - "c5": 20.50827383789042, - "c6": -28.292803254589423, - "c7": 30.63566873801625 + "points": { + "c1": 38.72889396863425, + "c2": 26.18738063558112, + "c3": 35.93200456141331, + "c4": -4.697442192688072, + "c5": 35.66478627269203, + "c6": 9.883400591916583, + "c7": -36.101127105275026 }, - "vertexSeeds": { - "c1": 5.92461687062534, - "c2": 5.810468582327295, - "c3": 5.947185174841723, - "c4": 6.025353679435292, - "c5": 5.953265572347421, - "c6": 6.000325902947795, - "c7": 5.974948741797354 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.76560332871013, + "c3": 7.304669440591781, + "c4": 5.843735552473396, + "c5": 4.382801664355047, + "c6": 2.921867776236698, + "c7": 1.460933888118349 }, "rgb": [77, 76, 132] }, @@ -328623,23 +328623,23 @@ "year": 1793, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -22.772341767456165, - "c2": 28.21479553722989, - "c3": 14.961728352911244, - "c4": -27.868053727148087, - "c5": -24.84071817088013, - "c6": 21.03965634631131, - "c7": 3.168194972329392 + "points": { + "c1": -15.998667050261034, + "c2": -27.584879044785446, + "c3": 13.205354144177988, + "c4": -15.522348173040402, + "c5": 21.285772659923204, + "c6": 8.49698845263952, + "c7": 24.62469807009682 }, - "vertexSeeds": { - "c1": 7.151429326962786, - "c2": 6.979856195303781, - "c3": 6.882736223639168, - "c4": 7.342720504791885, - "c5": 6.860018955053956, - "c6": 7.018779914211506, - "c7": 6.8482731527978835 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404999, + "c3": 8.853444290337485, + "c4": 7.082755432269992, + "c5": 5.3120665742024995, + "c6": 3.541377716135007, + "c7": 1.7706888580674924 }, "rgb": [86, 146, 138] }, @@ -328650,23 +328650,23 @@ "year": 1793, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 25.757777535402347, - "c2": -20.470203892509083, - "c3": -15.19371936455547, - "c4": 19.507946437212794, - "c5": 5.470325316152675, - "c6": 20.22466875939441, - "c7": 3.6028670265486866 + "points": { + "c1": 1.8681133776226488, + "c2": -15.696905923680314, + "c3": -14.958819858892223, + "c4": 6.793408761275465, + "c5": 2.079337115562275, + "c6": 30.628668848313566, + "c7": -0.08867259619940526 }, - "vertexSeeds": { - "c1": 2.3988656413735705, - "c2": 2.4310271276098314, - "c3": 2.404094434124647, - "c4": 2.4331903410221534, - "c5": 2.3977345774043, - "c6": 2.41451975321232, - "c7": 2.44557223447177 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081797, + "c3": 2.935737401756813, + "c4": 2.3485899214054466, + "c5": 1.7614424410540996, + "c6": 1.174294960702733, + "c7": 0.5871474803513665 }, "rgb": [58, 15, 49] }, @@ -328677,23 +328677,23 @@ "year": 1793, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 3.700539034555703, - "c2": -2.829704367812937, - "c3": -4.10271098838113, - "c4": 17.280778285840864, - "c5": -9.62861647331079, - "c6": -3.9868362253139367, - "c7": -21.54766880600642 + "points": { + "c1": 19.19936975303209, + "c2": -23.05374659532172, + "c3": -1.195926579944956, + "c4": 2.3483354115563486, + "c5": 14.333019500327449, + "c6": 5.91956642632152, + "c7": -5.16522922747555 }, - "vertexSeeds": { - "c1": 6.2820788798947, - "c2": 6.46746769819973, - "c3": 6.157821735842934, - "c4": 6.103995422787637, - "c5": 6.272141372562712, - "c6": 6.373345244708027, - "c7": 6.564497483222414 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675448, + "c3": 7.859454461396202, + "c4": 6.2875635691169816, + "c5": 4.715672676837736, + "c6": 3.1437817845584908, + "c7": 1.5718908922792454 }, "rgb": [222, 0, 59] }, @@ -328704,23 +328704,23 @@ "year": 1793, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 26.239120976147287, - "c2": -6.724151624866423, - "c3": -30.78873411154156, - "c4": 0.2847727861113505, - "c5": -11.401805217069505, - "c6": -8.132812772439024, - "c7": 27.963066420506333 + "points": { + "c1": -31.82473836210185, + "c2": 26.183914954371268, + "c3": -24.018390946012158, + "c4": -29.49053886561741, + "c5": -25.27310430106411, + "c6": 25.64938546204968, + "c7": 12.658467575164948 }, - "vertexSeeds": { - "c1": 4.69755643647073, - "c2": 4.6578160869213985, - "c3": 4.348043696043108, - "c4": 4.640382896019099, - "c5": 4.370843948410401, - "c6": 4.472674764656571, - "c7": 4.5332672682471715 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773923, + "c3": 5.617198335644933, + "c4": 4.493758668515945, + "c5": 3.370319001386967, + "c6": 2.246879334257978, + "c7": 1.123439667128989 }, "rgb": [238, 201, 159] }, @@ -328731,23 +328731,23 @@ "year": 1793, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 27.002356224469157, - "c2": -21.039162531787774, - "c3": -2.679651230386348, - "c4": -1.8837602625522152, - "c5": -10.665962335396792, - "c6": 8.406406492317306, - "c7": 26.282556464361146 + "points": { + "c1": -12.859891107418875, + "c2": -26.96317269541832, + "c3": -13.457700019989382, + "c4": -12.999152744187292, + "c5": -16.51119348949606, + "c6": -16.97408237391901, + "c7": -12.277052701113345 }, - "vertexSeeds": { - "c1": 1.89849411242865, - "c2": 1.9023366519412348, - "c3": 1.8876136935500971, - "c4": 1.8867704129408054, - "c5": 1.891888252014786, - "c6": 1.9003689224521274, - "c7": 1.892295180092952 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.7461858529819825, + "c3": 2.2884882108182882, + "c4": 1.8307905686546397, + "c5": 1.3730929264909912, + "c6": 0.9153952843273426, + "c7": 0.45769764216364855 }, "rgb": [238, 201, 159] }, @@ -328758,23 +328758,23 @@ "year": 1793, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -15.261972449337186, - "c2": 17.92199277912946, - "c3": 33.54001171491315, - "c4": 12.424610694472484, - "c5": 7.961275504757246, - "c6": 11.537499728581047, - "c7": 2.3316034724022714 + "points": { + "c1": -21.659757703040537, + "c2": -30.36489653799795, + "c3": 12.261147442975464, + "c4": -20.80754105472615, + "c5": -10.985592804678767, + "c6": 41.99499776186609, + "c7": -4.367559899959893 }, - "vertexSeeds": { - "c1": 2.2771776890840036, - "c2": 2.2654744763839147, - "c3": 2.2359804712030527, - "c4": 2.227061957181745, - "c5": 2.222066601615846, - "c6": 2.329846945185587, - "c7": 2.2463157042519253 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.439667128987515, + "c3": 2.8663892741562655, + "c4": 2.29311141932501, + "c5": 1.7198335644937608, + "c6": 1.146555709662505, + "c7": 0.5732778548312557 }, "rgb": [238, 201, 159] }, @@ -328785,23 +328785,23 @@ "year": 1793, "resistanceReported": false, "duration": 8121600, - "curveSeeds": { - "c1": 18.20692119016992, - "c2": -15.219158128080952, - "c3": 4.937426361767173, - "c4": 18.002201350808985, - "c5": -6.581212705330804, - "c6": 15.09148941051561, - "c7": 5.720933498709176 + "points": { + "c1": 14.985204567680324, + "c2": 3.4813738307265716, + "c3": 16.958691240491586, + "c4": -17.041814057964324, + "c5": 20.73967686687219, + "c6": -16.39293544109494, + "c7": 8.778792093210825 }, - "vertexSeeds": { - "c1": 1.9818652849740932, - "c2": 1.9818652849740932, - "c3": 1.9818652849740932, - "c4": 1.9818652849740932, - "c5": 1.9818652849740932, - "c6": 1.9818652849740932, - "c7": 1.9818652849740932 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -328812,23 +328812,23 @@ "year": 1793, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 25.142089540037162, - "c2": 3.184009213703355, - "c3": -16.56611161775122, - "c4": -3.782203947000948, - "c5": 12.071043999936784, - "c6": -15.772325378294642, - "c7": 1.0664391138250622 + "points": { + "c1": -7.162655274201164, + "c2": 8.024542223749968, + "c3": 11.556010086236597, + "c4": 13.57557950540059, + "c5": -32.30477976582819, + "c6": -29.562148878066758, + "c7": 24.109046055907832 }, - "vertexSeeds": { - "c1": 1.8720845376266038, - "c2": 2.11575526533081, - "c3": 1.9400936983161792, - "c4": 1.8081387597912237, - "c5": 1.835057806816042, - "c6": 2.030312383890159, - "c7": 1.7658696732125532 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.051317614424411, + "c3": 2.5427646786870075, + "c4": 2.0342117429496063, + "c5": 1.5256588072122055, + "c6": 1.0171058714748045, + "c7": 0.5085529357374011 }, "rgb": [222, 0, 59] }, @@ -328839,23 +328839,23 @@ "year": 1793, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 10.380509084072237, - "c2": -1.7683052727349704, - "c3": 20.283498253982593, - "c4": 23.363891411733114, - "c5": 27.782344835475634, - "c6": 9.688073716659865, - "c7": 23.150026138693093 + "points": { + "c1": -12.889402869965135, + "c2": 29.3967530877245, + "c3": 26.098299359329175, + "c4": -10.496866582446138, + "c5": -17.32073608896653, + "c6": 32.39739669033648, + "c7": -12.907501876237752 }, - "vertexSeeds": { - "c1": 0.7015927831181463, - "c2": 0.7429374179500352, - "c3": 0.6726086379868946, - "c4": 0.6880051417971607, - "c5": 0.7021184330863753, - "c6": 0.6999719713570265, - "c7": 0.7087568103427587 + "offsets": { + "c1": 1.2944983818770228, + "c2": 1.1095700416088765, + "c3": 0.92464170134073, + "c4": 0.7397133610725837, + "c5": 0.5547850208044391, + "c6": 0.3698566805362928, + "c7": 0.1849283402681464 }, "rgb": [86, 146, 138] }, @@ -328866,23 +328866,23 @@ "year": 1793, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 30.334662737752197, - "c2": -21.962690291552633, - "c3": -19.76292550183016, - "c4": 17.973739308415283, - "c5": -4.758369862544328, - "c6": -33.03312286098781, - "c7": 23.138459045830437 + "points": { + "c1": -17.536661999719424, + "c2": 34.74554614939945, + "c3": 15.270772507921151, + "c4": -7.209903160256179, + "c5": 5.2856000745766565, + "c6": 17.23904290722337, + "c7": 28.54946340545755 }, - "vertexSeeds": { - "c1": 2.202995576871055, - "c2": 2.669820040874608, - "c3": 2.5470985880365733, - "c4": 2.9878488589787358, - "c5": 3.3512409715431146, - "c6": 2.1449976752791797, - "c7": 2.740358612841479 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119278, + "c3": 4.091539528432731, + "c4": 3.273231622746187, + "c5": 2.4549237170596396, + "c6": 1.6366158113730929, + "c7": 0.8183079056865458 }, "rgb": [77, 76, 132] }, @@ -328893,23 +328893,23 @@ "year": 1793, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 35.296648578512865, - "c2": 25.652386343833044, - "c3": 7.6209673109002125, - "c4": -24.64330525262585, - "c5": -20.171578435098805, - "c6": 25.967445338408687, - "c7": -0.20439848845437325 + "points": { + "c1": 12.484266014346709, + "c2": -1.7996288335429824, + "c3": 31.50286043965371, + "c4": -1.4954088132043637, + "c5": 7.731760673601407, + "c6": -32.2785794015896, + "c7": -25.90110697458752 }, - "vertexSeeds": { - "c1": 2.4138995949591933, - "c2": 2.4276258414942617, - "c3": 2.428289189097667, - "c4": 2.4131095584416014, - "c5": 2.4156775382082727, - "c6": 2.4197212631746456, - "c7": 2.4195431196773556 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.495145631067978, + "c3": 2.912621359223276, + "c4": 2.3300970873786326, + "c5": 1.747572815533989, + "c6": 1.1650485436893452, + "c7": 0.5825242718446436 }, "rgb": [58, 15, 49] }, @@ -328920,23 +328920,23 @@ "year": 1793, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -28.12338459838673, - "c2": -7.335695343796619, - "c3": -10.902890236935942, - "c4": -4.0255582659524975, - "c5": -5.53036255793036, - "c6": -15.619667639085492, - "c7": -20.554261973515743 + "points": { + "c1": -20.27063946616816, + "c2": -20.973876223174074, + "c3": -13.978066701243353, + "c4": -27.21352721122851, + "c5": -28.25069543081602, + "c6": -2.6635759819830866, + "c7": 25.035373394621686 }, - "vertexSeeds": { - "c1": 2.8822640721052153, - "c2": 3.062726205258639, - "c3": 3.021117337864642, - "c4": 2.9028388560557357, - "c5": 3.065079902874757, - "c6": 2.9735095317594302, - "c7": 3.02722760425751 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556172, + "c3": 3.7679149329634765, + "c4": 3.014331946370781, + "c5": 2.260748959778086, + "c6": 1.5071659731853906, + "c7": 0.7535829865926953 }, "rgb": [222, 0, 59] }, @@ -328947,23 +328947,23 @@ "year": 1794, "resistanceReported": false, "duration": 50889600, - "curveSeeds": { - "c1": -8.190332247019413, - "c2": 13.611809553131778, - "c3": -19.88214699997277, - "c4": -28.4762518595972, - "c5": 40.609020328193495, - "c6": 39.05484498745528, - "c7": -6.163359130086775 + "points": { + "c1": -12.203644014307784, + "c2": -49.63299851440423, + "c3": -35.49298059770708, + "c4": 11.994405741015086, + "c5": 54.307890089390284, + "c6": 36.39273395394733, + "c7": 53.09053656435745 }, - "vertexSeeds": { - "c1": 3.9377044441528852, - "c2": 3.651168912890247, - "c3": 3.831339842515554, - "c4": 3.5770769522428725, - "c5": 3.965569360697289, - "c6": 4.010543774886684, - "c7": 4.052728124701169 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527041, + "c3": 4.900601017105871, + "c4": 3.9204808136846996, + "c5": 2.9403606102635207, + "c6": 1.960240406842343, + "c7": 0.9801202034211715 }, "rgb": [222, 0, 59] }, @@ -328974,23 +328974,23 @@ "year": 1793, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 26.01610195202451, - "c2": 16.067125461573436, - "c3": -15.66587219929002, - "c4": 29.474150199278515, - "c5": 14.834060998168344, - "c6": -25.89983019898712, - "c7": -28.44292430506323 + "points": { + "c1": -15.764626976178286, + "c2": 8.757427990927962, + "c3": -1.561477400775832, + "c4": 9.157368649020437, + "c5": -2.9820462066173334, + "c6": 2.9909569319341323, + "c7": 19.317217699720562 }, - "vertexSeeds": { - "c1": 6.235520333946808, - "c2": 6.029637181934628, - "c3": 6.50980810518729, - "c4": 6.265318586304841, - "c5": 5.936689543309892, - "c6": 6.226347072078827, - "c7": 6.354742226618864 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595005, + "c3": 7.813222376329168, + "c4": 6.250577901063331, + "c5": 4.687933425797511, + "c6": 3.1252889505316745, + "c7": 1.5626444752658373 }, "rgb": [86, 146, 138] }, @@ -329001,23 +329001,23 @@ "year": 1793, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 8.24737139011291, - "c2": -9.98840742951932, - "c3": 2.004472592064147, - "c4": -24.833716235668877, - "c5": 25.83348020643802, - "c6": -18.347325917765538, - "c7": -13.93254978471391 + "points": { + "c1": 27.234338264104437, + "c2": 6.42220234320321, + "c3": 21.676727507323193, + "c4": 29.98246893551434, + "c5": -13.679373860897275, + "c6": -2.637281479754815, + "c7": -30.030515290722786 }, - "vertexSeeds": { - "c1": 2.978393552873185, - "c2": 3.232597729996923, - "c3": 3.2148125123269944, - "c4": 3.678947295863575, - "c5": 3.345595176246428, - "c6": 3.6448937235100947, - "c7": 3.6335690025167144 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682386, + "c3": 4.415164123901987, + "c4": 3.532131299121589, + "c5": 2.6490984743411947, + "c6": 1.7660656495607967, + "c7": 0.8830328247803984 }, "rgb": [222, 0, 59] }, @@ -329028,23 +329028,23 @@ "year": 1794, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 19.276868050675056, - "c2": 29.01265060986629, - "c3": -15.182570380345112, - "c4": 31.64286030221991, - "c5": -39.1907098207454, - "c6": 6.297219604759057, - "c7": -4.525169568653496 + "points": { + "c1": -14.414953108446419, + "c2": 4.68632695029725, + "c3": 42.94970802325572, + "c4": -0.5845541551619462, + "c5": -0.5664064626428384, + "c6": 29.326105237811326, + "c7": -9.976835199620801 }, - "vertexSeeds": { - "c1": 6.4576692286333035, - "c2": 6.5084227811333575, - "c3": 6.939940517463489, - "c4": 6.906756572996434, - "c5": 6.525835942334583, - "c6": 6.865066812489136, - "c7": 6.607379227292219 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -329055,23 +329055,23 @@ "year": 1793, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -19.727323728770486, - "c2": -9.522413140481207, - "c3": -18.655919818868902, - "c4": -4.378593128862843, - "c5": -0.26160812023150726, - "c6": -16.94311358196888, - "c7": -0.8705368555818751 + "points": { + "c1": -8.49650600549888, + "c2": -8.995402272993068, + "c3": -18.74419769956163, + "c4": -20.870786405916625, + "c5": -14.568655008337993, + "c6": -6.10409337491458, + "c7": 9.803115486080863 }, - "vertexSeeds": { - "c1": 1.069704257278644, - "c2": 1.0844485249183826, - "c3": 1.0772311799253707, - "c4": 1.0959472762525166, - "c5": 1.0593967891997804, - "c6": 1.069155548830082, - "c7": 1.1013361430417938 + "offsets": { + "c1": 1.8770226537216828, + "c2": 1.6088765603328696, + "c3": 1.340730466944061, + "c4": 1.0725843735552478, + "c5": 0.8044382801664348, + "c6": 0.5362921867776217, + "c7": 0.2681460933888131 }, "rgb": [58, 15, 49] }, @@ -329082,23 +329082,23 @@ "year": 1794, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 39.13680545478705, - "c2": 32.290762065398994, - "c3": -20.92150866880523, - "c4": 26.650980208479993, - "c5": 10.690124291176886, - "c6": 42.74548081233574, - "c7": -8.124596527307823 + "points": { + "c1": 47.8431070726574, + "c2": -6.088322266370497, + "c3": 47.26612805583302, + "c4": 3.3741187675130533, + "c5": 0.642855335610065, + "c6": 11.526371928678834, + "c7": 10.643822812210864 }, - "vertexSeeds": { - "c1": 6.497425469480263, - "c2": 6.452631901082349, - "c3": 6.4728455737096375, - "c4": 6.491339144490885, - "c5": 6.608377325625504, - "c6": 6.609871473282987, - "c7": 6.798999476300561 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -329109,23 +329109,23 @@ "year": 1793, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -16.585444423490028, - "c2": 0.06136199336606296, - "c3": 2.613591485970403, - "c4": -18.540681431555026, - "c5": 27.68183735308014, - "c6": -32.3961836606637, - "c7": -13.892701084533858 + "points": { + "c1": 13.633993678876074, + "c2": 7.802092351714187, + "c3": 11.346284382254346, + "c4": -9.710083039262248, + "c5": 5.577840620752546, + "c6": -2.7316118199512758, + "c7": -27.89414892746821 }, - "vertexSeeds": { - "c1": 4.198251001546329, - "c2": 4.491461560841775, - "c3": 4.248364310169067, - "c4": 4.499407047272362, - "c5": 4.376046155975406, - "c6": 4.188953435292834, - "c7": 4.629363940621654 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485437, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271816, + "c6": 2.2653721682847876, + "c7": 1.1326860841423938 }, "rgb": [77, 76, 132] }, @@ -329136,23 +329136,23 @@ "year": 1793, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 18.049216942272437, - "c2": -33.28688693120377, - "c3": -14.455397522539691, - "c4": 15.995218972354138, - "c5": 9.684134146022984, - "c6": 24.12680398420924, - "c7": 24.859699214351558 + "points": { + "c1": -0.1303018963419973, + "c2": -31.779734290889525, + "c3": -33.486740414479904, + "c4": -14.935354650519553, + "c5": 32.24585156260204, + "c6": -17.866967438846224, + "c7": 24.775665435936332 }, - "vertexSeeds": { - "c1": 1.230670260469662, - "c2": 1.2338072871879897, - "c3": 1.2845033144186568, - "c4": 1.2869627121640452, - "c5": 1.2597407678308024, - "c6": 1.2281422417271868, - "c7": 1.2280681748190792 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753103, + "c3": 1.5950069348127622, + "c4": 1.2760055478502086, + "c5": 0.9570041608876552, + "c6": 0.6380027739251071, + "c7": 0.31900138696255353 }, "rgb": [86, 146, 138] }, @@ -329163,23 +329163,23 @@ "year": 1794, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -15.364558065036558, - "c2": -13.202013804805503, - "c3": -29.51543359328165, - "c4": 0.9595649606241636, - "c5": 16.487898368100147, - "c6": -0.15706964079232932, - "c7": 22.641103331060435 + "points": { + "c1": -1.734209849075242, + "c2": -14.838074024475347, + "c3": -24.677837393072615, + "c4": -40.53266642623553, + "c5": -43.90618843301399, + "c6": -4.049015162272056, + "c7": -20.748601579856334 }, - "vertexSeeds": { - "c1": 2.1776646701971116, - "c2": 2.110440018934184, - "c3": 2.16532498941567, - "c4": 2.029170146511106, - "c5": 2.06785263178943, - "c6": 2.0660528297364946, - "c7": 2.0846385759918085 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852972, + "c3": 2.63522884882108, + "c4": 2.1081830790568685, + "c5": 1.581137309292651, + "c6": 1.0540915395284343, + "c7": 0.5270457697642171 }, "rgb": [222, 0, 59] }, @@ -329190,23 +329190,23 @@ "year": 1794, "resistanceReported": false, "duration": 51580800, - "curveSeeds": { - "c1": -19.978171286404994, - "c2": 1.456878076378743, - "c3": -29.947560343278823, - "c4": 42.328276899426015, - "c5": 15.766154697543158, - "c6": 9.93332885715283, - "c7": -0.9219516699994443 + "points": { + "c1": -17.73939146906615, + "c2": -18.164239834898588, + "c3": -56.03170472884101, + "c4": 66.74702525121049, + "c5": 55.520606241233295, + "c6": 5.864172678665213, + "c7": 1.3425167030520981 }, - "vertexSeeds": { - "c1": 0.9847697811300862, - "c2": 0.9503628750225338, - "c3": 0.9667264095926998, - "c4": 0.9639427775009315, - "c5": 0.9907794222628299, - "c6": 0.9843881885717964, - "c7": 0.9695783170123302 + "offsets": { + "c1": 1.6828478964401297, + "c2": 1.4424410540915384, + "c3": 1.2020342117429514, + "c4": 0.9616273693943603, + "c5": 0.7212205270457692, + "c6": 0.4808136846971782, + "c7": 0.2404068423485911 }, "rgb": [77, 76, 132] }, @@ -329217,23 +329217,23 @@ "year": 1793, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -5.195749440703043, - "c2": 14.36136970595809, - "c3": 22.651559090866904, - "c4": 24.937148260481436, - "c5": 16.713268213758226, - "c6": -5.038262354960953, - "c7": 11.245165653676409 + "points": { + "c1": 10.858012373186433, + "c2": -7.540192897082246, + "c3": 3.892460716466381, + "c4": 3.7728133171597236, + "c5": 12.241530140360709, + "c6": 3.764675294999691, + "c7": -28.049697269731723 }, - "vertexSeeds": { - "c1": 2.8589450075185594, - "c2": 2.9712691109606766, - "c3": 2.9154536518372396, - "c4": 2.824818555641655, - "c5": 2.895982474044125, - "c6": 2.8323470103175747, - "c7": 2.887920665469833 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194169, + "c3": 3.559870550161814, + "c4": 2.847896440129446, + "c5": 2.135922330097091, + "c6": 1.423948220064723, + "c7": 0.7119741100323679 }, "rgb": [238, 201, 159] }, @@ -329244,23 +329244,23 @@ "year": 1793, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 14.06914753879041, - "c2": 15.89674481821529, - "c3": 0.7524333054455568, - "c4": 19.372106279077784, - "c5": -20.076192448069953, - "c6": -22.69536731608908, - "c7": -25.58619119637926 + "points": { + "c1": -16.243774462420895, + "c2": 26.59986060206819, + "c3": 2.3099244594950363, + "c4": -8.276788378316041, + "c5": 37.842798421143314, + "c6": 7.014498871891043, + "c7": -22.40241768681119 }, - "vertexSeeds": { - "c1": 3.007894626838538, - "c2": 2.9579999300903523, - "c3": 2.988033518954028, - "c4": 2.9504012447330834, - "c5": 2.9927670994450457, - "c6": 2.9608891684031944, - "c7": 3.0071010789226675 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274615, + "c3": 3.606102635228842, + "c4": 2.8848821081830684, + "c5": 2.1636615811372955, + "c6": 1.4424410540915462, + "c7": 0.7212205270457731 }, "rgb": [77, 76, 132] }, @@ -329271,23 +329271,23 @@ "year": 1793, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -14.155965781817248, - "c2": 21.552520958997192, - "c3": 28.399144162846838, - "c4": -18.829650820749908, - "c5": 6.765568013882522, - "c6": -20.933652928222408, - "c7": -17.823490537340426 + "points": { + "c1": 32.86327899383075, + "c2": 0.23835769180148247, + "c3": 27.95723866351331, + "c4": 11.635901714264797, + "c5": 30.292545846192326, + "c6": -6.239755840052553, + "c7": 27.614973971577072 }, - "vertexSeeds": { - "c1": 9.668100376558536, - "c2": 10.177403130231994, - "c3": 9.803939354552185, - "c4": 9.574387326931365, - "c5": 9.928484593194312, - "c6": 9.917264383108161, - "c7": 9.521383458488843 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438274, + "c3": 12.32085067036522, + "c4": 9.856680536292211, + "c5": 7.392510402219137, + "c6": 4.928340268146106, + "c7": 2.464170134073053 }, "rgb": [58, 15, 49] }, @@ -329298,23 +329298,23 @@ "year": 1793, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 7.851619741150017, - "c2": 11.245810063232838, - "c3": 17.12711210537217, - "c4": 14.245610365380436, - "c5": 3.42524971892459, - "c6": -1.4064655917231832, - "c7": -22.453387684383785 + "points": { + "c1": -33.54471677461446, + "c2": -20.03315013457841, + "c3": 35.26180107649549, + "c4": -22.213759028576348, + "c5": -8.149172299716057, + "c6": -11.269131698956361, + "c7": 13.457835239767327 }, - "vertexSeeds": { - "c1": 5.326985407757387, - "c2": 5.428145227289895, - "c3": 5.477690649258791, - "c4": 5.475192154531331, - "c5": 5.48008139520006, - "c6": 5.3003042728802185, - "c7": 5.317045781801967 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543683, + "c3": 6.634304207119751, + "c4": 5.3074433656957964, + "c5": 3.9805825242718416, + "c6": 2.6537216828479093, + "c7": 1.3268608414239547 }, "rgb": [238, 201, 159] }, @@ -329325,23 +329325,23 @@ "year": 1793, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -13.030583598801513, - "c2": -20.599965606418767, - "c3": -8.362854702055778, - "c4": -12.200476991542342, - "c5": 17.33660229048111, - "c6": -28.386089294297115, - "c7": -0.30514254460473467 + "points": { + "c1": 24.4218948846288, + "c2": -0.4601429121947902, + "c3": 40.48801698917363, + "c4": -34.60687284900986, + "c5": 15.529908993494573, + "c6": -34.19655357196557, + "c7": -1.0681610326498472 }, - "vertexSeeds": { - "c1": 0.3051620235662455, - "c2": 0.28993016303105595, - "c3": 0.2888737244586455, - "c4": 0.3047095376746542, - "c5": 0.28616625516652905, - "c6": 0.3015087704680211, - "c7": 0.2756636170532593 + "offsets": { + "c1": 0.5501618122977346, + "c2": 0.47156726768377255, + "c3": 0.39297272306981046, + "c4": 0.31437817845584837, + "c5": 0.23578363384188628, + "c6": 0.15718908922792418, + "c7": 0.07859454461396209 }, "rgb": [86, 146, 138] }, @@ -329352,23 +329352,23 @@ "year": 1793, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -9.070133050936143, - "c2": 24.7442152719943, - "c3": 0.5615927300707639, - "c4": -22.46618435347224, - "c5": 8.963236595243231, - "c6": 14.734144383548646, - "c7": 5.032998700632703 + "points": { + "c1": 37.17981913243882, + "c2": 24.754261389505942, + "c3": -6.039915355701698, + "c4": -36.656500073273385, + "c5": -9.304719864628485, + "c6": 3.1903488383995793, + "c7": 34.20682741632422 }, - "vertexSeeds": { - "c1": 6.122242147481187, - "c2": 6.020584297769978, - "c3": 6.277775983712682, - "c4": 6.063316090842432, - "c5": 6.135484542095646, - "c6": 6.0243610934293015, - "c7": 6.29831128530629 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [58, 15, 49] }, @@ -329379,23 +329379,23 @@ "year": 1794, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 35.686748193225256, - "c2": -9.66682520317574, - "c3": -31.42228899181862, - "c4": -28.95468441838698, - "c5": -15.717594923630337, - "c6": 19.631376257229746, - "c7": -28.334924246244807 + "points": { + "c1": -32.86970379514395, + "c2": -4.985135328297666, + "c3": 23.397537649336556, + "c4": -44.93461053321901, + "c5": 4.771258003598817, + "c6": 38.52043264292203, + "c7": 1.990967071031207 }, - "vertexSeeds": { - "c1": 7.218715143189338, - "c2": 6.906328488921374, - "c3": 6.781642672639768, - "c4": 7.08163154317764, - "c5": 6.989550845982804, - "c6": 6.90988629802717, - "c7": 6.661652094477286 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.5131761442441, + "c3": 8.76098012020343, + "c4": 7.0087840961627395, + "c5": 5.25658807212205, + "c6": 3.504392048081379, + "c7": 1.7521960240406895 }, "rgb": [58, 15, 49] }, @@ -329406,23 +329406,23 @@ "year": 1793, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -0.6638745951503608, - "c2": -14.488941861425516, - "c3": -20.425817873205876, - "c4": 19.6305195009863, - "c5": 8.647690630538317, - "c6": 7.3763330971946495, - "c7": 21.202911891578932 + "points": { + "c1": -11.121206056619279, + "c2": -8.768406505636207, + "c3": -18.710999648395525, + "c4": 0.5252847213181759, + "c5": -10.927312260797517, + "c6": 1.9325258004561015, + "c7": 4.596319426132123 }, - "vertexSeeds": { - "c1": 1.1125924124928086, - "c2": 1.1098212272717725, - "c3": 1.2898386812356708, - "c4": 1.2417467270171183, - "c5": 1.2751891562708184, - "c6": 1.2040384540286126, - "c7": 1.155416525693325 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350902, + "c3": 1.5718908922792418, + "c4": 1.2575127138233935, + "c5": 0.9431345353675451, + "c6": 0.6287563569116967, + "c7": 0.31437817845584837 }, "rgb": [58, 15, 49] }, @@ -329433,23 +329433,23 @@ "year": 1793, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 10.757819922148702, - "c2": 21.1837840510569, - "c3": 18.633415785097807, - "c4": -7.996458644250833, - "c5": 25.82322385802679, - "c6": -28.14255593533815, - "c7": 3.292496534068775 + "points": { + "c1": -0.8108243680685661, + "c2": 8.65560242616083, + "c3": 0.7347559781322026, + "c4": 12.013190111993506, + "c5": 4.660059789941823, + "c6": 27.14437994943692, + "c7": 18.4233075321817 }, - "vertexSeeds": { - "c1": 2.0472583169258134, - "c2": 1.965212109906439, - "c3": 1.9817279752397077, - "c4": 1.9242645213776526, - "c5": 1.9685069338869552, - "c6": 2.070009057451131, - "c7": 2.025835335122195 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.023578363384186, + "c3": 2.519648636153491, + "c4": 2.0157189089227905, + "c5": 1.5117891816920959, + "c6": 1.0078594544613952, + "c7": 0.5039297272307005 }, "rgb": [86, 146, 138] }, @@ -329460,23 +329460,23 @@ "year": 1793, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": -2.395074006862318, - "c2": 5.656042888990026, - "c3": 3.792612153398359, - "c4": 3.9232984263929964, - "c5": 9.390208856908348, - "c6": -12.480186340423959, - "c7": -15.384233443454617 + "points": { + "c1": -7.373044844019869, + "c2": 0.8386097047713577, + "c3": -15.255486469713636, + "c4": -12.343850503137848, + "c5": -5.676860058004792, + "c6": -10.54903358618568, + "c7": 12.503257723442534 }, - "vertexSeeds": { - "c1": 3.084866201764531, - "c2": 3.099501106984718, - "c3": 3.179083231914135, - "c4": 3.009111601273763, - "c5": 2.906961168003092, - "c6": 3.1798026282458163, - "c7": 2.9869090777916023 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797504, + "c3": 3.906611188164587, + "c4": 3.125288950531669, + "c5": 2.343966712898752, + "c6": 1.5626444752658346, + "c7": 0.7813222376329173 }, "rgb": [86, 146, 138] }, @@ -329487,23 +329487,23 @@ "year": 1793, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 25.620474255062327, - "c2": 10.863973435372202, - "c3": 17.11818932739844, - "c4": -8.362216480234967, - "c5": 7.78145352923994, - "c6": 14.324261730972928, - "c7": 11.658045847748475 + "points": { + "c1": 0.7161464664358519, + "c2": -15.15248079118724, + "c3": -31.294123952706165, + "c4": 20.5364637359487, + "c5": 4.094093073919851, + "c6": -21.47056016940467, + "c7": -5.88643306814318 }, - "vertexSeeds": { - "c1": 3.849268238794064, - "c2": 3.819373818172518, - "c3": 3.895743960649239, - "c4": 3.8814366388105532, - "c5": 3.8545834225740783, - "c6": 3.799667552819798, - "c7": 3.8914563946503176 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -329514,23 +329514,23 @@ "year": 1793, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 28.348973312169818, - "c2": 8.980513274036873, - "c3": 5.432573146265014, - "c4": 5.267282619904968, - "c5": 18.467453593366024, - "c6": 15.367032166670406, - "c7": 26.03930296205958 + "points": { + "c1": 32.93548575143616, + "c2": 5.076742989651045, + "c3": 9.608749107372248, + "c4": -14.455238360961193, + "c5": 15.435906072070786, + "c6": 1.555409021832304, + "c7": -1.964012457173208 }, - "vertexSeeds": { - "c1": 6.4666330019909335, - "c2": 6.8516648630570725, - "c3": 6.449847549400586, - "c4": 6.863589012234564, - "c5": 6.673408270888957, - "c6": 6.566774848646144, - "c7": 6.51939954403937 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520115, + "c3": 8.3448913546001, + "c4": 6.675913083680085, + "c5": 5.006934812760068, + "c6": 3.337956541840031, + "c7": 1.6689782709200156 }, "rgb": [238, 201, 159] }, @@ -329541,23 +329541,23 @@ "year": 1793, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -21.60746076407084, - "c2": 7.726315819458179, - "c3": 29.75363611607831, - "c4": -13.424737448951742, - "c5": -18.342094460275007, - "c6": 8.307813857589025, - "c7": 29.461302537709614 + "points": { + "c1": -32.73090973232504, + "c2": -18.821702137956333, + "c3": -22.380270775342147, + "c4": -11.554484387097975, + "c5": 14.715275565949796, + "c6": 27.013351784077088, + "c7": 23.754105753869695 }, - "vertexSeeds": { - "c1": 4.002270885103413, - "c2": 4.066954581345613, - "c3": 4.041249355324021, - "c4": 4.01410635059722, - "c5": 3.7929763280744218, - "c6": 4.006578643935133, - "c7": 3.8122505636213235 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527041, + "c3": 4.900601017105873, + "c4": 3.9204808136846943, + "c5": 2.940360610263526, + "c6": 1.9602404068423471, + "c7": 0.9801202034211681 }, "rgb": [58, 15, 49] }, @@ -329568,23 +329568,23 @@ "year": 1793, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -5.954719172997976, - "c2": -8.71225623643613, - "c3": 5.089481467266342, - "c4": -10.082333150164036, - "c5": 6.757560216876822, - "c6": 24.940894568867453, - "c7": 19.506631424366642 + "points": { + "c1": -8.423420436506849, + "c2": 4.569689556922835, + "c3": -1.1861894555853745, + "c4": 19.336729748354163, + "c5": 23.842738817333366, + "c6": 22.03041493526553, + "c7": -23.792527400556395 }, - "vertexSeeds": { - "c1": 4.158559579001387, - "c2": 4.049379035741086, - "c3": 4.087861719974822, - "c4": 4.170529590797258, - "c5": 4.150407405043659, - "c6": 4.112196993427935, - "c7": 4.141404337698788 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.79750346740638, + "c3": 4.831252889505317, + "c4": 3.865002311604253, + "c5": 2.89875173370319, + "c6": 1.9325011558021266, + "c7": 0.9662505779010633 }, "rgb": [238, 201, 159] }, @@ -329595,23 +329595,23 @@ "year": 1794, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -33.72907275474702, - "c2": 3.2359393642788206, - "c3": 26.042089031592113, - "c4": -39.28542936039312, - "c5": -0.5519009837281814, - "c6": -9.139016422430117, - "c7": -32.68150652463561 + "points": { + "c1": -42.8676877646996, + "c2": 6.758309717870823, + "c3": -26.80487570385941, + "c4": 42.058295600710196, + "c5": -9.544567112074795, + "c6": -44.564079312995524, + "c7": 11.777337668210336 }, - "vertexSeeds": { - "c1": 6.257211028591719, - "c2": 6.713315866611428, - "c3": 6.316425437448569, - "c4": 6.6475771851602055, - "c5": 6.550590502441309, - "c6": 6.258452288933225, - "c7": 6.564941782418082 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077682, + "c3": 8.09061488673139, + "c4": 6.472491909385121, + "c5": 4.854368932038828, + "c6": 3.2362459546925604, + "c7": 1.6181229773462922 }, "rgb": [222, 0, 59] }, @@ -329622,23 +329622,23 @@ "year": 1793, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -15.220617030030349, - "c2": 20.61905055488245, - "c3": -1.496058225408838, - "c4": -20.194224237111836, - "c5": -2.4256787604509746, - "c6": 28.145301884395693, - "c7": 12.321759802987536 + "points": { + "c1": -0.8000154410164946, + "c2": 1.600519590690073, + "c3": -30.06910062321316, + "c4": -27.140169207008853, + "c5": -5.273239770398771, + "c6": -26.818091961097746, + "c7": 0.11140731702454687 }, - "vertexSeeds": { - "c1": 5.710183461472016, - "c2": 5.755071366996398, - "c3": 5.810607059604527, - "c4": 5.950346449561899, - "c5": 5.742479755945431, - "c6": 5.714926683189826, - "c7": 5.9797505522875785 + "offsets": { + "c1": 10, + "c2": 8.57142857142857, + "c3": 7.142857142857136, + "c4": 5.714285714285705, + "c5": 4.285714285714273, + "c6": 2.857142857142864, + "c7": 1.428571428571432 }, "rgb": [86, 146, 138] }, @@ -329649,23 +329649,23 @@ "year": 1793, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -12.526528120817545, - "c2": 22.799964574806697, - "c3": -15.19657379807427, - "c4": -7.151829225116888, - "c5": 19.817402514198495, - "c6": 7.954980777035491, - "c7": -3.405733147939781 + "points": { + "c1": 18.510835031325676, + "c2": -3.3484313990849692, + "c3": 12.424806645067711, + "c4": -27.914424837526006, + "c5": 13.41701270951279, + "c6": 8.715389163193556, + "c7": 17.728824801937023 }, - "vertexSeeds": { - "c1": 6.53205150786616, - "c2": 6.487881177789394, - "c3": 6.333355687727652, - "c4": 6.5177182851708615, - "c5": 6.603376714304153, - "c6": 6.323629235077394, - "c7": 6.416242767675964 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876553, + "c3": 7.975034674063804, + "c4": 6.380027739251035, + "c5": 4.785020804438287, + "c6": 3.1900138696255174, + "c7": 1.5950069348127698 }, "rgb": [222, 0, 59] }, @@ -329676,23 +329676,23 @@ "year": 1793, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -20.839559570598666, - "c2": 36.09428391243682, - "c3": 35.64463286681418, - "c4": 35.099782392701016, - "c5": 30.653985034040346, - "c6": -6.182267903271217, - "c7": 23.435605272809866 + "points": { + "c1": -33.70339102616003, + "c2": -17.957418354038637, + "c3": -27.256533465983683, + "c4": 5.830620111030264, + "c5": 20.212027147726666, + "c6": 2.807090438050892, + "c7": 10.809899757669676 }, - "vertexSeeds": { - "c1": 8.906659734130194, - "c2": 8.840445475125627, - "c3": 8.825708131036741, - "c4": 8.896610185167086, - "c5": 8.936942211866864, - "c6": 8.91682869083301, - "c7": 8.830834188723005 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542362, + "c3": 10.6564956079519, + "c4": 8.525196486361576, + "c5": 6.393897364771111, + "c6": 4.262598243180788, + "c7": 2.131299121590464 }, "rgb": [238, 201, 159] }, @@ -329703,23 +329703,23 @@ "year": 1793, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 31.78221045773587, - "c2": -13.966746908099818, - "c3": 12.180236219247831, - "c4": -21.46075209152282, - "c5": -3.604492867143371, - "c6": -34.61792891024557, - "c7": -25.52301124061524 + "points": { + "c1": -0.415593360076997, + "c2": 10.33976710483121, + "c3": -9.486023042840134, + "c4": -24.271077001736533, + "c5": -35.415782701910004, + "c6": -11.234430936254451, + "c7": -1.889103494152451 }, - "vertexSeeds": { - "c1": 4.434714750913761, - "c2": 4.514006029107821, - "c3": 4.405972510601265, - "c4": 4.3341139208519515, - "c5": 4.504087080180738, - "c6": 4.541977108957395, - "c7": 4.5235472995979515 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492371, + "c3": 5.455386037910307, + "c4": 4.364308830328243, + "c5": 3.27323162274619, + "c6": 2.1821544151641272, + "c7": 1.0910772075820636 }, "rgb": [222, 0, 59] }, @@ -329730,23 +329730,23 @@ "year": 1794, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": -23.460153462486215, - "c2": 15.316769921777606, - "c3": 29.808881723278255, - "c4": 17.338890860334132, - "c5": -19.775314620726927, - "c6": -33.50175775767953, - "c7": -35.31115167406131 + "points": { + "c1": -4.802287571955233, + "c2": -21.202103549151364, + "c3": -37.42068510377833, + "c4": -1.2042301896327174, + "c5": -20.69746927063561, + "c6": -35.680741650846855, + "c7": 8.49350413265308 }, - "vertexSeeds": { - "c1": 4.808866550129627, - "c2": 4.901434666464958, - "c3": 4.841004397195814, - "c4": 4.871453549133035, - "c5": 4.87940128621716, - "c6": 4.819410256616823, - "c7": 4.835389910313341 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.0457697642163595, + "c3": 5.871474803513626, + "c4": 4.697179842810893, + "c5": 3.5228848821081993, + "c6": 2.348589921405466, + "c7": 1.174294960702733 }, "rgb": [86, 146, 138] }, @@ -329757,23 +329757,23 @@ "year": 1794, "resistanceReported": false, "duration": 44928000, - "curveSeeds": { - "c1": -9.57987628318584, - "c2": -33.84517279379469, - "c3": 50.27489111658704, - "c4": -1.1942128951204083, - "c5": 50.890708830962666, - "c6": -22.1633476293136, - "c7": -12.66421547901166 + "points": { + "c1": 27.327855917287906, + "c2": 27.51411897651947, + "c3": -15.482056736137466, + "c4": 28.560060240366738, + "c5": 12.000852183578957, + "c6": 14.801489431977998, + "c7": -60.84548056139819 }, - "vertexSeeds": { - "c1": 2.655146690627613, - "c2": 2.516045576142095, - "c3": 2.4115397047333844, - "c4": 2.583261502728604, - "c5": 2.29064220152297, - "c6": 2.589607590795989, - "c7": 2.42097710289887 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550621, + "c3": 3.19001386962552, + "c4": 2.552011095700416, + "c5": 1.9140083217753119, + "c6": 1.276005547850208, + "c7": 0.638002773925104 }, "rgb": [238, 201, 159] }, @@ -329784,23 +329784,23 @@ "year": 1793, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 7.527368388813208, - "c2": -17.96320415648899, - "c3": 19.262310403677844, - "c4": 5.2293355129864665, - "c5": -9.026380117155789, - "c6": 3.903645651044876, - "c7": -7.606190984317152 + "points": { + "c1": 10.066293846106866, + "c2": -20.06810532194735, + "c3": 30.416249307322516, + "c4": -10.021887294843857, + "c5": -11.05851925387606, + "c6": 13.291081187659955, + "c7": 20.87309797998664 }, - "vertexSeeds": { - "c1": 6.688354368601725, - "c2": 6.669841642762135, - "c3": 6.67681646005748, - "c4": 6.665795755539269, - "c5": 6.750318097877968, - "c6": 6.666539532507341, - "c7": 6.685119411218716 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037431, + "c3": 8.067498844197837, + "c4": 6.453999075358244, + "c5": 4.84049930651878, + "c6": 3.2269995376791862, + "c7": 1.6134997688395931 }, "rgb": [58, 15, 49] }, @@ -329811,23 +329811,23 @@ "year": 1794, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 15.862803895760791, - "c2": 8.145384421950268, - "c3": -5.097480681998476, - "c4": -3.5526499794937294, - "c5": -39.00638235894608, - "c6": 13.51624854186224, - "c7": 9.438018586665777 + "points": { + "c1": -19.60319072931444, + "c2": 11.188299729196338, + "c3": 18.834591584167022, + "c4": -35.17900241407737, + "c5": -12.536520245770745, + "c6": -11.750745314807453, + "c7": -18.429610698170283 }, - "vertexSeeds": { - "c1": 4.623375343100726, - "c2": 4.6216850909940534, - "c3": 4.634870970140017, - "c4": 4.612807062146412, - "c5": 4.654618054758461, - "c6": 4.61364092205171, - "c7": 4.633040688869151 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693458, + "c3": 5.570966250577909, + "c4": 4.456773000462305, + "c5": 3.3425797503467565, + "c6": 2.2283865002311525, + "c7": 1.1141932501155487 }, "rgb": [86, 146, 138] }, @@ -329838,23 +329838,23 @@ "year": 1793, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 29.124995556110427, - "c2": -29.593945194288498, - "c3": 8.86789105525554, - "c4": -11.616357860243355, - "c5": -6.434276233463422, - "c6": -7.098654538883029, - "c7": 29.562884737591638 + "points": { + "c1": -29.123283002418923, + "c2": 18.494421318717137, + "c3": 29.395473175973272, + "c4": -13.980215994001696, + "c5": -17.088942471732274, + "c6": 25.492796000126745, + "c7": -9.960260346159824 }, - "vertexSeeds": { - "c1": 7.669314355769543, - "c2": 7.209248710678363, - "c3": 7.981430027343325, - "c4": 7.315591918668435, - "c5": 7.256249346671666, - "c6": 7.517229972470235, - "c7": 7.7072879369692515 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732325, + "c3": 9.616273693943596, + "c4": 7.693018955154884, + "c5": 5.769764216366154, + "c6": 3.846509477577442, + "c7": 1.9232547387887295 }, "rgb": [222, 0, 59] }, @@ -329865,23 +329865,23 @@ "year": 1794, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -38.878741549392096, - "c2": 42.71504607410639, - "c3": 17.635856056010326, - "c4": -19.19051306343327, - "c5": -12.979244515648105, - "c6": -12.52529691189196, - "c7": 15.149563976279666 + "points": { + "c1": -10.579984539570162, + "c2": -18.771436169019346, + "c3": -16.43278862129512, + "c4": 22.143086565005127, + "c5": 26.412287863691525, + "c6": 24.104638252076974, + "c7": 15.677726836241668 }, - "vertexSeeds": { - "c1": 5.746059620471132, - "c2": 5.714965013981538, - "c3": 5.716861543086387, - "c4": 5.705704638403303, - "c5": 5.682873619070848, - "c6": 5.690712967132145, - "c7": 5.845185224223196 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187224, + "c3": 7.004160887656058, + "c4": 5.603328710124835, + "c5": 4.202496532593612, + "c6": 2.8016643550623894, + "c7": 1.4008321775312227 }, "rgb": [238, 201, 159] }, @@ -329892,23 +329892,23 @@ "year": 1793, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -23.42104995589294, - "c2": 27.894988371213397, - "c3": 24.821554716169995, - "c4": 17.01032953086182, - "c5": 8.148904176627472, - "c6": -8.787423134231318, - "c7": -26.96123506421397 + "points": { + "c1": 7.1267160076622, + "c2": -19.799474435748508, + "c3": -9.540855984594057, + "c4": -15.757856534762187, + "c5": 24.94342925872306, + "c6": 0.09967148292790284, + "c7": -25.37900867222673 }, - "vertexSeeds": { - "c1": 6.4413688718339905, - "c2": 6.9294514773491676, - "c3": 6.910650399893063, - "c4": 6.828983053416675, - "c5": 6.649746276563337, - "c6": 6.805183719158376, - "c7": 6.735776160977004 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -329919,23 +329919,23 @@ "year": 1793, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 4.788837763097412, - "c2": -18.170062788597534, - "c3": 6.734794859145168, - "c4": -8.606373312976771, - "c5": -13.790481377794833, - "c6": -1.6344318289592863, - "c7": 14.564757042862588 + "points": { + "c1": 21.128970365211387, + "c2": -28.95167691178074, + "c3": -8.933873630133917, + "c4": -16.382697431706408, + "c5": 26.119775862067925, + "c6": 22.982783544767635, + "c7": 34.61530895331147 }, - "vertexSeeds": { - "c1": 5.540997306301502, - "c2": 5.38516874551019, - "c3": 5.590801880981252, - "c4": 5.434450102463995, - "c5": 5.322947475449881, - "c6": 5.503776218936076, - "c7": 5.449805411953635 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624124, + "c3": 6.680536292186791, + "c4": 5.344429033749427, + "c5": 4.008321775312062, + "c6": 2.672214516874729, + "c7": 1.3361072584373646 }, "rgb": [58, 15, 49] }, @@ -329946,23 +329946,23 @@ "year": 1794, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": 2.8188247793488443, - "c2": 1.1564851474707467, - "c3": -13.008410221382263, - "c4": -34.600634777963684, - "c5": 43.63166188672437, - "c6": -24.967330838374604, - "c7": 14.662117826963545 + "points": { + "c1": -9.825466640533286, + "c2": 36.879903175454345, + "c3": 5.526833239930802, + "c4": -10.502956178795422, + "c5": 27.457368437352272, + "c6": -39.8898673091514, + "c7": 49.05975032260724 }, - "vertexSeeds": { - "c1": 3.2402976317484184, - "c2": 3.1147769233904916, - "c3": 3.1596516519360347, - "c4": 3.292607116864953, - "c5": 3.371102167648975, - "c6": 3.3365830111748576, - "c7": 3.3278834255032295 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038837, + "c3": 4.045307443365699, + "c4": 3.2362459546925617, + "c5": 2.4271844660194133, + "c6": 1.6181229773462755, + "c7": 0.8090614886731378 }, "rgb": [58, 15, 49] }, @@ -329973,23 +329973,23 @@ "year": 1793, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 19.8271242330023, - "c2": -21.301729874422975, - "c3": 22.182253471015507, - "c4": 28.66680923885766, - "c5": 10.231485481535337, - "c6": 23.751841156519156, - "c7": 33.44525162311348 + "points": { + "c1": -7.103590450747223, + "c2": 7.062529277164373, + "c3": 29.111030358377448, + "c4": -1.5701262403014198, + "c5": 4.815625529986434, + "c6": 15.202551227105083, + "c7": 17.024141934252434 }, - "vertexSeeds": { - "c1": 4.567937251111024, - "c2": 4.398477515380145, - "c3": 4.419622505081153, - "c4": 4.373884800243367, - "c5": 4.502113224891302, - "c6": 4.57625946243574, - "c7": 4.481823418497173 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613037, + "c3": 5.524734165510864, + "c4": 4.419787332408691, + "c5": 3.3148404993065186, + "c6": 2.2098936662043456, + "c7": 1.1049468331021728 }, "rgb": [238, 201, 159] }, @@ -330000,23 +330000,23 @@ "year": 1793, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -8.369324999899842, - "c2": 20.1696221342888, - "c3": 16.015728030371818, - "c4": 4.554464533107719, - "c5": 13.081497630346966, - "c6": 23.403034900231788, - "c7": 25.099324829314092 + "points": { + "c1": -7.698762448672721, + "c2": -27.628458059504318, + "c3": 8.045660030152376, + "c4": 3.0840195428447217, + "c5": 17.380836956729695, + "c6": 2.9626853004518097, + "c7": -11.267247478396236 }, - "vertexSeeds": { - "c1": 8.725487318166106, - "c2": 8.538506066689065, - "c3": 8.371539380243146, - "c4": 8.331524507773882, - "c5": 8.3913244371363, - "c6": 8.531692214601707, - "c7": 8.2016650593109 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220523, + "c3": 10.471567267683783, + "c4": 8.377253814147021, + "c5": 6.282940360610262, + "c6": 4.1886269070735, + "c7": 2.094313453536761 }, "rgb": [222, 0, 59] }, @@ -330027,23 +330027,23 @@ "year": 1794, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 9.003327684079878, - "c2": 37.77158533282002, - "c3": -13.327948849334636, - "c4": -22.38442887257756, - "c5": -24.022722167102835, - "c6": -9.609644948026258, - "c7": -29.927223814931637 + "points": { + "c1": 14.868390093879832, + "c2": -42.538077660540495, + "c3": -15.926478039439868, + "c4": 18.863885724247723, + "c5": 1.4529689457675588, + "c6": -41.03517008520413, + "c7": 14.97608550669053 }, - "vertexSeeds": { - "c1": 3.038150466873248, - "c2": 3.03469102928092, - "c3": 3.032585307682561, - "c4": 3.0481076785550183, - "c5": 3.036638841885628, - "c6": 3.050090143659771, - "c7": 3.0431678238925883 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355084, + "c3": 3.652334720295927, + "c4": 2.9218677762367706, + "c5": 2.191400832177469, + "c6": 1.4609338881183127, + "c7": 0.7304669440591564 }, "rgb": [77, 76, 132] }, @@ -330054,23 +330054,23 @@ "year": 1793, "resistanceReported": true, "duration": 16070400, - "curveSeeds": { - "c1": -5.351895416382657, - "c2": 16.226032191891, - "c3": 12.373761825926621, - "c4": 25.182946702054323, - "c5": -13.957601183962439, - "c6": -0.7761051882736432, - "c7": -12.90443209199409 + "points": { + "c1": 1.4639763759620514, + "c2": 22.427777649189636, + "c3": 28.362166637794445, + "c4": -15.098318937750015, + "c5": -4.421630710843967, + "c6": -8.217489239395377, + "c7": -4.864462100867943 }, - "vertexSeeds": { - "c1": 2.27095542694157, - "c2": 2.3016177908490545, - "c3": 2.158801667225555, - "c4": 2.1413141806125817, - "c5": 2.168411702622698, - "c6": 2.3268073871218418, - "c7": 2.1643373260120833 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668537, + "c3": 2.7970411465557086, + "c4": 2.237632917244569, + "c5": 1.6782246879334244, + "c6": 1.1188164586222844, + "c7": 0.55940822931114 }, "rgb": [77, 76, 132] }, @@ -330081,23 +330081,23 @@ "year": 1793, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 17.446113247498488, - "c2": -13.853053265625153, - "c3": 27.97301907978931, - "c4": -23.91678172660874, - "c5": -1.9408392036811577, - "c6": 22.002579761908713, - "c7": -16.994885935805463 + "points": { + "c1": 14.159015882964596, + "c2": 27.330101940872716, + "c3": 20.48580309273153, + "c4": 32.47657346876386, + "c5": 7.8009438507808895, + "c6": -10.612848600702343, + "c7": -20.850771973099732 }, - "vertexSeeds": { - "c1": 6.316319889382836, - "c2": 6.6743528522525075, - "c3": 6.300286429253368, - "c4": 6.328466797824391, - "c5": 6.274150437122693, - "c6": 6.431581011946945, - "c7": 6.740369499814572 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077666, + "c3": 8.0906148867314, + "c4": 6.472491909385116, + "c5": 4.854368932038833, + "c6": 3.2362459546925493, + "c7": 1.6181229773462837 }, "rgb": [222, 0, 59] }, @@ -330108,23 +330108,23 @@ "year": 1794, "resistanceReported": true, "duration": 34646400, - "curveSeeds": { - "c1": -2.3192946878270746, - "c2": 3.070509979772943, - "c3": -47.26208770649211, - "c4": 4.782889954016127, - "c5": 27.65435667227208, - "c6": -1.08419688859005, - "c7": 17.243183277853525 + "points": { + "c1": 29.90060101375547, + "c2": -17.36462466593941, + "c3": 37.180919342309544, + "c4": 6.434883321152803, + "c5": 41.18789603773917, + "c6": 2.4263860404492235, + "c7": 22.72773077144651 }, - "vertexSeeds": { - "c1": 4.125494621821647, - "c2": 4.367138412549791, - "c3": 4.468866459819181, - "c4": 4.31370963144138, - "c5": 4.191227805309984, - "c6": 4.426435630760899, - "c7": 4.318800254253656 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331483, + "c3": 5.362921867776233, + "c4": 4.290337494220996, + "c5": 3.2177531206657464, + "c6": 2.145168747110498, + "c7": 1.072584373555249 }, "rgb": [86, 146, 138] }, @@ -330135,23 +330135,23 @@ "year": 1794, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 35.282447771547155, - "c2": -20.370682285459846, - "c3": -29.05100058002034, - "c4": -34.29054252979191, - "c5": -36.63049206365554, - "c6": -15.374346516842955, - "c7": -22.319376480119868 + "points": { + "c1": -25.80150521022788, + "c2": -3.8290318169177127, + "c3": -33.25015336513192, + "c4": 16.410037496177395, + "c5": -16.349421574811153, + "c6": 1.9410164959767044, + "c7": -18.159938893627103 }, - "vertexSeeds": { - "c1": 7.520882818571491, - "c2": 7.557244651699417, - "c3": 7.560953754047616, - "c4": 7.53546203435761, - "c5": 7.532470860229416, - "c6": 7.543728760610156, - "c7": 7.5581321703286255 + "offsets": { + "c1": 12.653721682847896, + "c2": 10.8460471567267, + "c3": 9.038372630605743, + "c4": 7.230698104484547, + "c5": 5.42302357836335, + "c6": 3.6153490522421534, + "c7": 1.8076745261211964 }, "rgb": [86, 146, 138] }, @@ -330162,23 +330162,23 @@ "year": 1793, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -31.73661745144153, - "c2": -23.116268604770283, - "c3": -8.214728339158697, - "c4": 21.121126004101527, - "c5": 13.243543283326638, - "c6": 17.574556841268233, - "c7": 20.42039954293388 + "points": { + "c1": 30.072923201302203, + "c2": -15.084838322148787, + "c3": -1.9319160065291925, + "c4": 15.912470377069518, + "c5": -33.9684981586202, + "c6": 1.4032656280297289, + "c7": 29.153255140077434 }, - "vertexSeeds": { - "c1": 6.588741624327047, - "c2": 6.618044905148906, - "c3": 6.590931901350379, - "c4": 6.625916666557692, - "c5": 6.609785643858096, - "c6": 6.600941678611779, - "c7": 6.619911725898389 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796057, + "c3": 7.928802588996854, + "c4": 6.343042071197442, + "c5": 4.757281553398029, + "c6": 3.1715210355986154, + "c7": 1.5857605177994127 }, "rgb": [58, 15, 49] }, @@ -330189,23 +330189,23 @@ "year": 1794, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -34.23885495606734, - "c2": -11.79556476367495, - "c3": 5.157453077871615, - "c4": 35.80766481962043, - "c5": 21.99206215192401, - "c6": 7.768223367999354, - "c7": -6.268334951395168 + "points": { + "c1": 9.035594839648894, + "c2": 33.471066980822144, + "c3": 13.600354192439106, + "c4": 21.18179374348091, + "c5": -41.02005801267146, + "c6": 5.802489572240077, + "c7": -6.741523864209505 }, - "vertexSeeds": { - "c1": 4.989426500817805, - "c2": 4.76714316702672, - "c3": 5.03470071629027, - "c4": 4.751481340346387, - "c5": 4.8078195144857165, - "c6": 4.761803642010947, - "c7": 4.815488006850988 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578353, + "c3": 6.079519186315306, + "c4": 4.863615349052246, + "c5": 3.647711511789188, + "c6": 2.431807674526118, + "c7": 1.21590383726307 }, "rgb": [222, 0, 59] }, @@ -330216,23 +330216,23 @@ "year": 1793, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -10.981899586388433, - "c2": -15.590823719077802, - "c3": -28.285625992639513, - "c4": 18.071723941685754, - "c5": -6.620451935438904, - "c6": 9.918718019211596, - "c7": -7.780115261889172 + "points": { + "c1": -0.7791371041346729, + "c2": -25.08857250670788, + "c3": 11.978119604244903, + "c4": -1.2282583657857167, + "c5": 25.94045847609813, + "c6": -22.212998706475005, + "c7": 15.781992857058952 }, - "vertexSeeds": { - "c1": 8.129389086083705, - "c2": 8.070471162880544, - "c3": 8.147105198027738, - "c4": 8.186372057885889, - "c5": 8.380380290173134, - "c6": 8.265570237750252, - "c7": 8.35697984956727 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496541, + "c3": 10.05547850208043, + "c4": 8.04438280166435, + "c5": 6.033287101248271, + "c6": 4.02219140083216, + "c7": 2.01109570041608 }, "rgb": [238, 201, 159] }, @@ -330243,23 +330243,23 @@ "year": 1794, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 4.255661604605649, - "c2": -15.896515781588782, - "c3": 33.64868940500215, - "c4": -21.07164830341051, - "c5": -19.59676111317914, - "c6": -14.474670075369374, - "c7": -25.944398452915873 + "points": { + "c1": 17.679212831588877, + "c2": 4.072641549138787, + "c3": -28.385247776696808, + "c4": -14.242651676753972, + "c5": 26.19951009131541, + "c6": -7.533150866357609, + "c7": 47.08073926262761 }, - "vertexSeeds": { - "c1": 8.179573385213345, - "c2": 7.995428737197057, - "c3": 8.005307884550213, - "c4": 8.097566028967835, - "c5": 8.074334990122166, - "c6": 7.968106063341996, - "c7": 7.981464812327155 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.73370319001386, + "c3": 9.778085991678209, + "c4": 7.822468793342618, + "c5": 5.866851595006963, + "c6": 3.911234396671309, + "c7": 1.9556171983356545 }, "rgb": [222, 0, 59] }, @@ -330270,23 +330270,23 @@ "year": 1794, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 2.0110104160594133, - "c2": -9.108943011471702, - "c3": -6.510050339307469, - "c4": 29.792389593958383, - "c5": 33.124674425194904, - "c6": 28.147616089954077, - "c7": 36.046971740514 + "points": { + "c1": -10.556798768025274, + "c2": 38.704823087724556, + "c3": -41.647863541418126, + "c4": 2.200510300582735, + "c5": 31.78705563507986, + "c6": -17.182783653450766, + "c7": 3.0686871417701624 }, - "vertexSeeds": { - "c1": 11.993904449594357, - "c2": 12.107807159405954, - "c3": 12.368445885143878, - "c4": 12.18558457979918, - "c5": 12.16998762556833, - "c6": 12.141578602702063, - "c7": 12.387181889299553 + "offsets": { + "c1": 21.003236245954692, + "c2": 18.002773925104034, + "c3": 15.002311604253373, + "c4": 12.001849283402713, + "c5": 9.00138696255198, + "c6": 6.000924641701319, + "c7": 3.0004623208506596 }, "rgb": [238, 201, 159] }, @@ -330297,23 +330297,23 @@ "year": 1794, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -14.837015255760555, - "c2": 19.265288104175198, - "c3": -15.385868963902919, - "c4": 21.414343172056412, - "c5": 1.840779510173867, - "c6": -25.404778659439664, - "c7": 27.005767625862326 + "points": { + "c1": -14.145889918697211, + "c2": -19.079817973273652, + "c3": -1.74649532706335, + "c4": -31.38848748676099, + "c5": -7.1108417046529695, + "c6": -12.758410987331, + "c7": 11.528019331286416 }, - "vertexSeeds": { - "c1": 10.467846575359832, - "c2": 10.479339460614696, - "c3": 10.437217798948135, - "c4": 10.508989658454794, - "c5": 10.47727278276682, - "c6": 10.491382298400351, - "c7": 10.48343199736705 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.034674063800349, + "c3": 12.52889505316704, + "c4": 10.023116042533731, + "c5": 7.517337031899925, + "c6": 5.011558021266617, + "c7": 2.5057790106333084 }, "rgb": [77, 76, 132] }, @@ -330324,23 +330324,23 @@ "year": 1794, "resistanceReported": true, "duration": 24883200, - "curveSeeds": { - "c1": -6.168190190173906, - "c2": -15.684266579569421, - "c3": -11.35483262570255, - "c4": -16.692420117854354, - "c5": -9.034031223232148, - "c6": 33.27737829458539, - "c7": -33.29504278790531 + "points": { + "c1": -8.806319101572651, + "c2": 8.864984787715073, + "c3": -5.247465448703501, + "c4": 28.85518095955409, + "c5": 34.45878581014193, + "c6": 7.652174677507574, + "c7": -31.17429192469196 }, - "vertexSeeds": { - "c1": 3.900551574952152, - "c2": 3.827383937465817, - "c3": 3.8686907841914997, - "c4": 3.848694187135869, - "c5": 3.924512525353293, - "c6": 4.159418215998356, - "c7": 3.8592859194615086 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889045, + "c3": 5.108645399907538, + "c4": 4.086916319926033, + "c5": 3.0651872399445264, + "c6": 2.043458159963012, + "c7": 1.0217290799815144 }, "rgb": [238, 201, 159] }, @@ -330351,23 +330351,23 @@ "year": 1794, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 6.305761406441881, - "c2": 26.08428607291505, - "c3": -1.9646213760006255, - "c4": -25.772210926750226, - "c5": 3.0673528844822897, - "c6": -9.786246803186636, - "c7": -25.668006109953314 + "points": { + "c1": -16.1824795188376, + "c2": -12.732175721888176, + "c3": -28.94731211701815, + "c4": -20.784761411011125, + "c5": 28.12201832035099, + "c6": -27.860600624682593, + "c7": -5.391853407679914 }, - "vertexSeeds": { - "c1": 1.7850792517177487, - "c2": 1.791775878205816, - "c3": 1.9006432419592016, - "c4": 1.747850433721188, - "c5": 1.846346796774267, - "c6": 1.8387084926724033, - "c7": 1.8073396748314736 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.7461858529819687, + "c3": 2.2884882108183064, + "c4": 1.830790568654649, + "c5": 1.3730929264909866, + "c6": 0.9153952843273245, + "c7": 0.45769764216366227 }, "rgb": [58, 15, 49] }, @@ -330378,23 +330378,23 @@ "year": 1794, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -26.32423746217233, - "c2": -24.953104825686108, - "c3": 6.123948795285038, - "c4": 19.644814072501788, - "c5": 25.615679701457665, - "c6": -12.533923066780805, - "c7": -10.942366546624747 + "points": { + "c1": -21.922042444135215, + "c2": -22.307907811090757, + "c3": 19.999681439850164, + "c4": 5.601163191311876, + "c5": -20.67318140789957, + "c6": 5.288409595596988, + "c7": 22.8793669979706 }, - "vertexSeeds": { - "c1": 0.8696240674618183, - "c2": 0.8865899446743756, - "c3": 0.8698421684664596, - "c4": 0.8778582290377968, - "c5": 0.8862919210468916, - "c6": 0.8596028524875583, - "c7": 0.9086729315781517 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.3314840499306508, + "c3": 1.109570041608878, + "c4": 0.8876560332871017, + "c5": 0.6657420249653254, + "c6": 0.44382801664354904, + "c7": 0.22191400832177638 }, "rgb": [222, 0, 59] }, @@ -330405,23 +330405,23 @@ "year": 1794, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 8.61028775601433, - "c2": -10.073377352303911, - "c3": 32.285258384384704, - "c4": -17.10221110868347, - "c5": -7.574836101498256, - "c6": 21.056607403562836, - "c7": 23.454860097952114 + "points": { + "c1": 27.52098652877403, + "c2": 10.940063654396369, + "c3": 14.302731478330934, + "c4": -33.03336122704866, + "c5": 24.517907307973886, + "c6": -8.506280207335855, + "c7": -35.31026461533516 }, - "vertexSeeds": { - "c1": 7.7720207253886, - "c2": 7.7720207253886, - "c3": 7.7720207253886, - "c4": 7.7720207253886, - "c5": 7.7720207253886, - "c6": 7.7720207253886, - "c7": 7.7720207253886 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -330432,23 +330432,23 @@ "year": 1794, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 31.88855161978649, - "c2": -35.09548422413496, - "c3": 35.4449415287902, - "c4": -9.598100349081992, - "c5": 21.089950614145685, - "c6": -20.209035356449917, - "c7": -8.861813624815223 + "points": { + "c1": -27.074139594360638, + "c2": 17.1711355546064, + "c3": 6.067943863969006, + "c4": -36.06067788471147, + "c5": -19.798959895091524, + "c6": 7.250185931572226, + "c7": 17.810413861401237 }, - "vertexSeeds": { - "c1": 5.174635413395499, - "c2": 5.249264821035229, - "c3": 5.204740669191138, - "c4": 4.91654003130885, - "c5": 5.064491119754717, - "c6": 5.207109602632052, - "c7": 4.915146013989172 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940351, + "c3": 6.28756356911697, + "c4": 5.030050855293568, + "c5": 3.772538141470187, + "c6": 2.515025427646784, + "c7": 1.257512713823392 }, "rgb": [86, 146, 138] }, @@ -330459,23 +330459,23 @@ "year": 1794, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 8.671812657859753, - "c2": -12.634348194949563, - "c3": -21.61333875623531, - "c4": 25.161984193429205, - "c5": 25.746557204161704, - "c6": 12.169640853876047, - "c7": 2.863857991016552 + "points": { + "c1": 5.092433552589746, + "c2": -16.661309276031545, + "c3": 23.922535935084653, + "c4": 31.047989225373627, + "c5": -1.297397640912095, + "c6": -31.376431949245696, + "c7": 6.937402515732941 }, - "vertexSeeds": { - "c1": 11.16338825703459, - "c2": 10.921484113062006, - "c3": 11.215071407344281, - "c4": 11.060447461827911, - "c5": 11.08685921623296, - "c6": 11.317457679203276, - "c7": 11.157574268223222 + "offsets": { + "c1": 18.899676375404532, + "c2": 16.199722607489598, + "c3": 13.499768839574665, + "c4": 10.799815071659731, + "c5": 8.099861303744799, + "c6": 5.399907535829866, + "c7": 2.699953767914933 }, "rgb": [238, 201, 159] }, @@ -330486,23 +330486,23 @@ "year": 1793, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": 4.679151707325026, - "c2": -20.490585209405417, - "c3": 12.560943757954103, - "c4": -11.632163768071925, - "c5": 0.1971284310638488, - "c6": 0.940718433196043, - "c7": -13.01826452961268 + "points": { + "c1": 10.743808223852238, + "c2": 19.38644082874387, + "c3": -7.459486848772144, + "c4": -18.786043557809222, + "c5": 11.786397160250022, + "c6": -11.318654825612043, + "c7": -0.11359086544152674 }, - "vertexSeeds": { - "c1": 7.007027144276927, - "c2": 7.007048004687422, - "c3": 7.001158247149755, - "c4": 7.0079190136369025, - "c5": 6.996564094375525, - "c6": 7.013877979034614, - "c7": 7.007156196600166 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560046, + "c3": 8.368007397133706, + "c4": 6.694405917706698, + "c5": 5.020804438280356, + "c6": 3.347202958853349, + "c7": 1.6736014794270073 }, "rgb": [77, 76, 132] }, @@ -330513,23 +330513,23 @@ "year": 1794, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -22.956985365845043, - "c2": 14.614765426524151, - "c3": -13.169811464485974, - "c4": -10.38559882982948, - "c5": 24.87025637924011, - "c6": -8.759823135938401, - "c7": -0.45666857113351966 + "points": { + "c1": 16.205396122529848, + "c2": 32.10393349820836, + "c3": -26.645429303460084, + "c4": 26.068586497187383, + "c5": 12.372377601827537, + "c6": -14.306854186977432, + "c7": 5.156427478499168 }, - "vertexSeeds": { - "c1": 7.300772444856314, - "c2": 7.381222473916265, - "c3": 7.316696074970945, - "c4": 7.3690765930679225, - "c5": 7.313073833368131, - "c6": 7.300087991649452, - "c7": 7.372565411223006 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.56865464632453, + "c3": 8.80721220527042, + "c4": 7.045769764216306, + "c5": 5.2843273231623344, + "c6": 3.5228848821082233, + "c7": 1.7614424410541116 }, "rgb": [58, 15, 49] }, @@ -330540,23 +330540,23 @@ "year": 1794, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 6.575656785308361, - "c2": 22.624225501153063, - "c3": 15.221837789504917, - "c4": 18.78797852353705, - "c5": 10.430208824720573, - "c6": -5.407244536948774, - "c7": -10.3490951311449 + "points": { + "c1": 26.308610524183365, + "c2": 18.341077327457178, + "c3": -7.704927613626513, + "c4": -10.897553669511254, + "c5": -14.562210524687156, + "c6": 2.9579767833675916, + "c7": -31.481254039777298 }, - "vertexSeeds": { - "c1": 4.954375852625558, - "c2": 5.085250801464291, - "c3": 5.061039235707164, - "c4": 5.078214391382396, - "c5": 5.022731908943096, - "c6": 5.078474250443799, - "c7": 5.062571782493703 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578337, + "c3": 6.079519186315311, + "c4": 4.863615349052225, + "c5": 3.6477115117891987, + "c6": 2.4318076745261124, + "c7": 1.2159038372630864 }, "rgb": [77, 76, 132] }, @@ -330567,23 +330567,23 @@ "year": 1794, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 6.895739457648723, - "c2": -26.734755789889725, - "c3": -12.253385808183069, - "c4": -5.142405901661977, - "c5": -11.524869043817532, - "c6": -10.05620854448987, - "c7": 25.62227754775209 + "points": { + "c1": -15.638563533788778, + "c2": -9.815031911929513, + "c3": 19.521671686485035, + "c4": -4.82410909294504, + "c5": 25.759546867885383, + "c6": 9.499166644281757, + "c7": -0.9189620890198178 }, - "vertexSeeds": { - "c1": 7.984432108527093, - "c2": 7.750934311340006, - "c3": 7.906345189717827, - "c4": 7.737112192451206, - "c5": 7.921131063332506, - "c6": 7.834415618982273, - "c7": 7.848975701684847 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611628, + "c3": 9.546925566343049, + "c4": 7.637540453074419, + "c5": 5.72815533980584, + "c6": 3.8187702265372097, + "c7": 1.9093851132686301 }, "rgb": [222, 0, 59] }, @@ -330594,23 +330594,23 @@ "year": 1794, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -5.474262832230579, - "c2": 11.434036642201342, - "c3": -7.112240845324184, - "c4": -4.506019318202856, - "c5": -14.666021812613588, - "c6": 21.196818224170585, - "c7": 19.38178946382758 + "points": { + "c1": 10.62322813694096, + "c2": -26.9001403172987, + "c3": -19.821829121503377, + "c4": -26.422434051390216, + "c5": -5.937525072951768, + "c6": 13.439430041463282, + "c7": -27.86757620307145 }, - "vertexSeeds": { - "c1": 2.3865349338772646, - "c2": 2.288354710513982, - "c3": 2.459451743399092, - "c4": 2.4500331189172555, - "c5": 2.3579366763236, - "c6": 2.3437818898286893, - "c7": 2.3424441767998974 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.550624133148405, + "c3": 2.9588534442903387, + "c4": 2.3670827554322718, + "c5": 1.7753120665742, + "c6": 1.1835413777161334, + "c7": 0.5917706888580667 }, "rgb": [77, 76, 132] }, @@ -330621,23 +330621,23 @@ "year": 1794, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 29.7747245113654, - "c2": 30.894107628511165, - "c3": 23.811641475414483, - "c4": 0.47269822196128786, - "c5": 0.6313619682936178, - "c6": 19.037141564616384, - "c7": 11.619075720293274 + "points": { + "c1": -4.709434079114736, + "c2": -25.026442455491832, + "c3": 2.324761872212541, + "c4": 2.1511765594529066, + "c5": -23.2283973263035, + "c6": 16.54501854889842, + "c7": 0.9748962855911927 }, - "vertexSeeds": { - "c1": 2.9357250916519777, - "c2": 2.9262129544489004, - "c3": 3.022083057490779, - "c4": 2.9807324769994596, - "c5": 3.0153433162202097, - "c6": 2.9354301750401, - "c7": 2.992067463954112 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314837, + "c3": 3.6292186777623603, + "c4": 2.9033749422099073, + "c5": 2.1775312066574304, + "c6": 1.4516874711049537, + "c7": 0.7258437355524768 }, "rgb": [238, 201, 159] }, @@ -330648,23 +330648,23 @@ "year": 1794, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": 40.428898068089914, - "c2": -2.861098512580618, - "c3": 7.614140982828118, - "c4": 45.28273862633683, - "c5": 10.44889869966584, - "c6": -18.073451306578484, - "c7": 13.91351913497359 + "points": { + "c1": -43.90723605706664, + "c2": -44.71117008302402, + "c3": 18.481603252834653, + "c4": 27.73873428435632, + "c5": -44.29828079124666, + "c6": -50.57332130137059, + "c7": -0.6597507648437855 }, - "vertexSeeds": { - "c1": 8.560322854873503, - "c2": 8.532593663346605, - "c3": 8.500333185295204, - "c4": 8.571436519400832, - "c5": 8.55516569981415, - "c6": 8.533716410835064, - "c7": 8.575971973893099 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858587, + "c3": 10.263522884882088, + "c4": 8.210818307905726, + "c5": 6.158113730929226, + "c6": 4.105409153952863, + "c7": 2.0527045769764993 }, "rgb": [58, 15, 49] }, @@ -330675,23 +330675,23 @@ "year": 1794, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 22.01887130769914, - "c2": 22.95640586261211, - "c3": -2.2126913185529666, - "c4": -12.680287156690762, - "c5": -17.116131022218212, - "c6": 2.218178913140598, - "c7": -17.366173441238587 + "points": { + "c1": 14.973473494544312, + "c2": 17.064339895804498, + "c3": -13.203331605000997, + "c4": -21.379478068133572, + "c5": -0.2264839049202365, + "c6": -12.65752759624553, + "c7": -2.8524958424013604 }, - "vertexSeeds": { - "c1": 10.477690543686583, - "c2": 10.568432154957991, - "c3": 10.541947892345545, - "c4": 10.550681068191007, - "c5": 10.609025341201548, - "c6": 10.63589629283166, - "c7": 10.489939588304173 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081803, + "c3": 12.69070735090147, + "c4": 10.152565880721337, + "c5": 7.614424410541002, + "c6": 5.076282940360668, + "c7": 2.538141470180334 }, "rgb": [222, 0, 59] }, @@ -330702,23 +330702,23 @@ "year": 1794, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 8.477529633274706, - "c2": -10.433578988087662, - "c3": -3.248000587866027, - "c4": -16.984986829510156, - "c5": -0.05033245110364959, - "c6": -8.155453772657225, - "c7": -11.659484061267221 + "points": { + "c1": -21.842732358218395, + "c2": 20.229194454677675, + "c3": -7.522175057435518, + "c4": -0.9201079471160014, + "c5": -5.521417366271255, + "c6": 11.336834598581817, + "c7": 1.9834782992908053 }, - "vertexSeeds": { - "c1": 4.020004738909955, - "c2": 4.008334818133357, - "c3": 3.7371244377363717, - "c4": 3.8203621424349605, - "c5": 3.987498469317034, - "c6": 3.8207243715467234, - "c7": 3.917258516969206 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366163, + "c3": 4.808136846971794, + "c4": 3.8465094775774373, + "c5": 2.8848821081830813, + "c6": 1.9232547387887247, + "c7": 0.9616273693943564 }, "rgb": [77, 76, 132] }, @@ -330729,23 +330729,23 @@ "year": 1794, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 39.81564067067164, - "c2": 29.795840842463903, - "c3": -4.643460714404625, - "c4": -33.55183650590637, - "c5": -39.44641742732565, - "c6": -34.28165067122171, - "c7": -6.7232010238402395 + "points": { + "c1": -0.06481600996559678, + "c2": -16.372784191697114, + "c3": -36.86814724974295, + "c4": -17.495211344035056, + "c5": -19.713315961481875, + "c6": 29.21358231201171, + "c7": 0.2568241939210054 }, - "vertexSeeds": { - "c1": 2.0962377204144884, - "c2": 2.0437977506992784, - "c3": 2.1231502051132916, - "c4": 2.113750050617339, - "c5": 1.968243111451547, - "c6": 2.116590108486129, - "c7": 2.0932844607492744 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450753, + "c3": 2.6121128062875614, + "c4": 2.089690245030052, + "c5": 1.5672676837725377, + "c6": 1.0448451225150237, + "c7": 0.522422561257514 }, "rgb": [222, 0, 59] }, @@ -330756,23 +330756,23 @@ "year": 1794, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -3.6672643614923857, - "c2": 22.712129967911626, - "c3": -9.255015987208797, - "c4": -10.480958763938668, - "c5": -16.551437259728896, - "c6": 0.21422566376621077, - "c7": 14.5561963901846 + "points": { + "c1": 0.7172725185529671, + "c2": 19.685225000405648, + "c3": 4.2281986830554175, + "c4": -23.68840700966669, + "c5": -13.815819321911771, + "c6": -16.446378718528177, + "c7": 22.62963623430704 }, - "vertexSeeds": { - "c1": 6.6035783933076635, - "c2": 6.587576439454905, - "c3": 6.5595569019181985, - "c4": 6.427835013393476, - "c5": 6.68959149260913, - "c6": 6.443102548557238, - "c7": 6.361748221063376 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198326, + "c3": 8.159963014331948, + "c4": 6.52797041146555, + "c5": 4.8959778085991745, + "c6": 3.263985205732775, + "c7": 1.6319926028663765 }, "rgb": [86, 146, 138] }, @@ -330783,23 +330783,23 @@ "year": 1794, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -2.047335407412749, - "c2": -1.2826851094999476, - "c3": 19.499160019320524, - "c4": -13.26744103158875, - "c5": -12.437277173027045, - "c6": 24.079144291376327, - "c7": 3.3625215670884536 + "points": { + "c1": 18.843754287107018, + "c2": -13.157084738728074, + "c3": 5.811923694389414, + "c4": 3.819376627416162, + "c5": 25.428577244714127, + "c6": 13.567416929021668, + "c7": 22.38635291193991 }, - "vertexSeeds": { - "c1": 7.054286278778253, - "c2": 7.121123623181023, - "c3": 7.167353948926953, - "c4": 6.891437755850147, - "c5": 6.788644293437582, - "c6": 6.85149076546657, - "c7": 6.689475501990708 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882107, + "c3": 8.552935737401757, + "c4": 6.8423485899214045, + "c5": 5.131761442441054, + "c6": 3.4211742949607022, + "c7": 1.7105871474803511 }, "rgb": [238, 201, 159] }, @@ -330810,23 +330810,23 @@ "year": 1794, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -24.053001713828124, - "c2": -19.21116626967647, - "c3": 19.011419015564194, - "c4": -15.795011843922817, - "c5": -23.87620244827851, - "c6": 10.188481386022204, - "c7": 12.440338773509552 + "points": { + "c1": -3.9209009056460893, + "c2": -27.38119163149314, + "c3": -28.40206519250611, + "c4": -28.58056927705435, + "c5": 17.557364568091124, + "c6": -7.717424156442949, + "c7": -18.713289601961883 }, - "vertexSeeds": { - "c1": 6.80696667085077, - "c2": 6.666011871686233, - "c3": 6.693419312507797, - "c4": 6.828899598134251, - "c5": 6.757776390949283, - "c6": 6.700381867125925, - "c7": 6.854026353240559 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238539, + "c3": 8.183079056865493, + "c4": 6.546463245492381, + "c5": 4.9098474341192695, + "c6": 3.2732316227461578, + "c7": 1.6366158113731117 }, "rgb": [238, 201, 159] }, @@ -330837,23 +330837,23 @@ "year": 1794, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 7.336551026594989, - "c2": -9.19629595396297, - "c3": 7.529083239673561, - "c4": 4.2512029590218035, - "c5": 3.70698727611812, - "c6": -9.863341673329632, - "c7": -17.901808167550726 + "points": { + "c1": 27.2126709845785, + "c2": 16.03088032541669, + "c3": -18.040303331895778, + "c4": 21.226576596350313, + "c5": -25.662888231751495, + "c6": 30.193465759245186, + "c7": -24.3642324179035 }, - "vertexSeeds": { - "c1": 3.528199551462406, - "c2": 3.5300941192388393, - "c3": 3.522225989328893, - "c4": 3.5283848553090778, - "c5": 3.535472663811263, - "c6": 3.500382534947497, - "c7": 3.502010185631573 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360635, + "c3": 4.230235783633806, + "c4": 3.3841886269070613, + "c5": 2.5381414701803173, + "c6": 1.6920943134534887, + "c7": 0.8460471567267444 }, "rgb": [77, 76, 132] }, @@ -330864,23 +330864,23 @@ "year": 1794, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 29.40878101595758, - "c2": -30.84405196541386, - "c3": -7.6962670722183475, - "c4": -11.375779447078525, - "c5": -24.88240789919393, - "c6": 21.25852098873547, - "c7": -21.6080942185115 + "points": { + "c1": 19.64847780731835, + "c2": 12.428175356790327, + "c3": -22.59063888707177, + "c4": 32.514040722658066, + "c5": 25.089516751042893, + "c6": -26.887347190707708, + "c7": -2.520714567379798 }, - "vertexSeeds": { - "c1": 7.6378447015466895, - "c2": 7.654183561564233, - "c3": 7.660685964144416, - "c4": 7.641724213000225, - "c5": 7.690066578898015, - "c6": 7.648343165019781, - "c7": 7.679482163831326 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968031, + "c3": 9.177068885806854, + "c4": 7.341655108645435, + "c5": 5.5062413314840155, + "c6": 3.6708275543225954, + "c7": 1.8354137771614194 }, "rgb": [222, 0, 59] }, @@ -330891,23 +330891,23 @@ "year": 1794, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 5.116398905929827, - "c2": -10.526630423562661, - "c3": -13.405964111704705, - "c4": -25.356033778497284, - "c5": 2.464813025854525, - "c6": -28.477001884975287, - "c7": -23.641910417910104 + "points": { + "c1": -25.008404969529657, + "c2": -29.60193673885078, + "c3": -29.001903574863803, + "c4": -13.86312158798647, + "c5": 26.17393193146826, + "c6": -31.329592027426532, + "c7": -11.902809693824974 }, - "vertexSeeds": { - "c1": 2.8049798986496883, - "c2": 2.755959182326503, - "c3": 2.66683646408171, - "c4": 2.829150015174409, - "c5": 2.824297903152454, - "c6": 2.7236177877932173, - "c7": 2.7525733144093403 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912627, + "c3": 3.398058252427182, + "c4": 2.7184466019417513, + "c5": 2.0388349514563067, + "c6": 1.3592233009708756, + "c7": 0.6796116504854446 }, "rgb": [238, 201, 159] }, @@ -330918,23 +330918,23 @@ "year": 1794, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -0.41542881093830886, - "c2": 5.935176098775976, - "c3": -29.76539633162638, - "c4": 26.168206641816553, - "c5": -1.8183362947077768, - "c6": 8.514704809746839, - "c7": -14.67062943639202 + "points": { + "c1": 13.013903006693567, + "c2": -35.96463922449206, + "c3": -23.406183862295556, + "c4": 34.305887358877456, + "c5": -26.16485657932021, + "c6": 19.00042344433153, + "c7": -21.58623884189344 }, - "vertexSeeds": { - "c1": 9.018793523083703, - "c2": 9.06372309290253, - "c3": 9.018278871930935, - "c4": 9.048636485234983, - "c5": 9.053820756798915, - "c6": 9.033625364576443, - "c7": 9.043901519827358 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.981969486823775, + "c3": 10.81830790568667, + "c4": 8.65464632454928, + "c5": 6.490984743411888, + "c6": 4.327323162274496, + "c7": 2.1636615811373914 }, "rgb": [86, 146, 138] }, @@ -330945,23 +330945,23 @@ "year": 1794, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -30.978583039297156, - "c2": -22.556277092994613, - "c3": 18.858314371105237, - "c4": 17.31382837069644, - "c5": -20.274926180522428, - "c6": 32.247453740047035, - "c7": 14.299114152338348 + "points": { + "c1": -12.231862663463303, + "c2": 2.3257355088188305, + "c3": 24.202826339121565, + "c4": -35.631505914973346, + "c5": 0.5126731622358989, + "c6": -31.994838485216476, + "c7": -36.506767119029924 }, - "vertexSeeds": { - "c1": 2.2338047479189584, - "c2": 2.175249088235822, - "c3": 2.1916618297364625, - "c4": 2.127594866142346, - "c5": 2.224331645990529, - "c6": 2.170717437962888, - "c7": 2.1380902297857953 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.051317614424408, + "c3": 2.5427646786870124, + "c4": 2.034211742949608, + "c5": 1.525658807212204, + "c6": 1.0171058714748085, + "c7": 0.5085529357374042 }, "rgb": [86, 146, 138] }, @@ -330972,23 +330972,23 @@ "year": 1794, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 8.010390333739469, - "c2": 0.38934108077351937, - "c3": -11.635922051121465, - "c4": 21.94263091341433, - "c5": -10.474723898013018, - "c6": -5.620002172013457, - "c7": -1.0569454185045508 + "points": { + "c1": -14.239229376647266, + "c2": 24.61326831077486, + "c3": -15.287944775200383, + "c4": -1.8922912027652643, + "c5": -6.286434864696936, + "c6": 17.570691544922934, + "c7": -6.302359019342724 }, - "vertexSeeds": { - "c1": 2.4593100950409092, - "c2": 2.457025277293056, - "c3": 2.594145292605498, - "c4": 2.482337245619669, - "c5": 2.5219982494821807, - "c6": 2.6207817720457767, - "c7": 2.514035620214561 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081864, + "c3": 2.935737401756813, + "c4": 2.348589921405453, + "c5": 1.7614424410540932, + "c6": 1.1742949607027202, + "c7": 0.5871474803513601 }, "rgb": [222, 0, 59] }, @@ -330999,23 +330999,23 @@ "year": 1795, "resistanceReported": false, "duration": 40348800, - "curveSeeds": { - "c1": -20.87047385274743, - "c2": 40.89251747876137, - "c3": -0.7394604336271229, - "c4": 13.775592615922513, - "c5": 0.34452952055490726, - "c6": -40.77441684230693, - "c7": -21.38622693503123 + "points": { + "c1": 15.758831485189965, + "c2": -3.6505829893112107, + "c3": -5.113460836398481, + "c4": 44.005094226940734, + "c5": -33.07089397329246, + "c6": 35.956423181203554, + "c7": 48.403794127705815 }, - "vertexSeeds": { - "c1": 5.391790631158297, - "c2": 5.509473776595415, - "c3": 5.527018940806487, - "c4": 5.351295480475796, - "c5": 5.187473355594069, - "c6": 5.45194264679874, - "c7": 5.491341661312035 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.7498844197873265, + "c4": 5.399907535829858, + "c5": 4.049930651872388, + "c6": 2.6999537679149395, + "c7": 1.3499768839574697 }, "rgb": [238, 201, 159] }, @@ -331026,23 +331026,23 @@ "year": 1794, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 16.774434928565835, - "c2": 12.582671998446155, - "c3": -5.4724237327567415, - "c4": -15.873836047869089, - "c5": 16.711751206355384, - "c6": 11.766949941848889, - "c7": 9.511828669741089 + "points": { + "c1": -3.716846197882546, + "c2": 20.046689574057705, + "c3": 29.23388087103992, + "c4": 3.5923815346257477, + "c5": 26.868056039024044, + "c6": -28.122049804696083, + "c7": -17.047795979514962 }, - "vertexSeeds": { - "c1": 3.2864874718781243, - "c2": 3.271113687032652, - "c3": 3.293609023845047, - "c4": 3.302683148056217, - "c5": 3.3006136211745285, - "c6": 3.29662067801184, - "c7": 3.28413999787413 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.74341192787797, + "c3": 3.952843273231589, + "c4": 3.162274618585287, + "c5": 2.371705963938985, + "c6": 1.5811373092926828, + "c7": 0.7905686546463021 }, "rgb": [86, 146, 138] }, @@ -331053,23 +331053,23 @@ "year": 1795, "resistanceReported": false, "duration": 39571200, - "curveSeeds": { - "c1": 28.981970837771655, - "c2": -15.578292348508448, - "c3": -5.895205380837787, - "c4": -7.654807321922654, - "c5": -48.12962170413404, - "c6": -0.1331349173958145, - "c7": -36.21032053073202 + "points": { + "c1": 28.682451433709474, + "c2": -30.166831499959716, + "c3": -14.993367911959147, + "c4": 13.781602679840574, + "c5": 46.97038570842021, + "c6": 46.16203651891887, + "c7": -6.086768676264249 }, - "vertexSeeds": { - "c1": 3.662826650410235, - "c2": 3.772203895840467, - "c3": 3.8530106831507713, - "c4": 3.7909153545795187, - "c5": 3.80802849742659, - "c6": 3.8494486519488853, - "c7": 3.710694490151544 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325934, + "c3": 4.7850208044382745, + "c4": 3.828016643550625, + "c5": 2.871012482662967, + "c6": 1.9140083217753079, + "c7": 0.9570041608876589 }, "rgb": [86, 146, 138] }, @@ -331080,23 +331080,23 @@ "year": 1794, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -19.27011810641109, - "c2": 5.960993724565469, - "c3": -11.613642758813985, - "c4": 6.257486700227261, - "c5": 27.248560693195017, - "c6": -6.825496215552164, - "c7": 15.855424550458764 + "points": { + "c1": 3.505211401998629, + "c2": -15.2423408059569, + "c3": -12.015952006900946, + "c4": -10.045912789924436, + "c5": 21.435654875321603, + "c6": 1.066065224263479, + "c7": 18.42157203206431 }, - "vertexSeeds": { - "c1": 6.378162966660765, - "c2": 6.376720303748238, - "c3": 6.378025180619774, - "c4": 6.366359409673567, - "c5": 6.392105825771705, - "c6": 6.369269886106553, - "c7": 6.3614805930479825 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273274, + "c3": 7.628294036061112, + "c4": 6.102635228848951, + "c5": 4.576976421636485, + "c6": 3.0513176144243235, + "c7": 1.5256588072121617 }, "rgb": [77, 76, 132] }, @@ -331107,23 +331107,23 @@ "year": 1794, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 20.396831831739167, - "c2": 14.078936877882978, - "c3": -16.80697530770962, - "c4": 7.99270989613353, - "c5": -12.232520587339842, - "c6": -12.839409403284577, - "c7": -16.9278151707584 + "points": { + "c1": 18.48179958302381, + "c2": -20.620606010817355, + "c3": 26.22814895733603, + "c4": 7.685953957012028, + "c5": -1.4602944726668312, + "c6": -27.25365576925383, + "c7": 28.874384380555522 }, - "vertexSeeds": { - "c1": 6.975388601036269, - "c2": 6.975388601036269, - "c3": 6.975388601036269, - "c4": 6.975388601036269, - "c5": 6.975388601036269, - "c6": 6.975388601036269, - "c7": 6.975388601036269 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -331134,23 +331134,23 @@ "year": 1794, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -7.8319370950471345, - "c2": -27.294602820571193, - "c3": 0.8770458395827809, - "c4": -2.444942357413389, - "c5": -15.293737313179887, - "c6": -7.9323156617286195, - "c7": 9.877015748910395 + "points": { + "c1": -16.12168776629619, + "c2": 27.468273862619824, + "c3": 30.701196690769606, + "c4": -5.844320050130456, + "c5": 21.154525609893284, + "c6": -24.11864907302609, + "c7": -4.990601583928871 }, - "vertexSeeds": { - "c1": 8.049695368432134, - "c2": 8.050144951012824, - "c3": 8.05806942856032, - "c4": 8.044858259591152, - "c5": 8.055962107614071, - "c6": 8.050097415122607, - "c7": 8.04564370187296 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.53952843273199, + "c3": 9.616273693943707, + "c4": 7.69301895515466, + "c5": 5.769764216366378, + "c6": 3.84650947757733, + "c7": 1.9232547387890475 }, "rgb": [86, 146, 138] }, @@ -331161,23 +331161,23 @@ "year": 1794, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 7.899530644240247, - "c2": -2.8384057486995644, - "c3": -15.546153292294253, - "c4": -1.1039051121816499, - "c5": -14.139291824649412, - "c6": -9.506887719473784, - "c7": -16.501600549810604 + "points": { + "c1": -3.392969618610291, + "c2": 23.51411653030415, + "c3": 14.467359484464389, + "c4": -13.907828221609037, + "c5": -14.796136813329843, + "c6": -10.963052984951918, + "c7": -2.1705323491365327 }, - "vertexSeeds": { - "c1": 1.8086914861928918, - "c2": 1.7012476226590334, - "c3": 1.811136938472836, - "c4": 1.7052494919404637, - "c5": 1.8628508489465203, - "c6": 1.9231638943096576, - "c7": 1.6901429719751346 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.77392510402219, + "c3": 2.311604253351826, + "c4": 1.84928340268146, + "c5": 1.3869625520110964, + "c6": 0.92464170134073, + "c7": 0.46232085067036643 }, "rgb": [238, 201, 159] }, @@ -331188,23 +331188,23 @@ "year": 1794, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 14.439072582863904, - "c2": -4.089222125721047, - "c3": -21.539134335961705, - "c4": -27.602092022595134, - "c5": 24.12499683206598, - "c6": -23.647380955751338, - "c7": -17.661822154981163 + "points": { + "c1": 18.86510694864211, + "c2": -28.150326970188324, + "c3": -20.475544165188538, + "c4": -26.777403718693158, + "c5": -19.37175161893222, + "c6": 14.462468429634324, + "c7": 16.024481255249842 }, - "vertexSeeds": { - "c1": 8.361015446742819, - "c2": 8.36173499855161, - "c3": 8.356959056380468, - "c4": 8.358646988973815, - "c5": 8.372761646746476, - "c6": 8.368832334861839, - "c7": 8.358187756851787 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375528, + "c3": 9.986130374480004, + "c4": 7.988904299583685, + "c5": 5.991678224688161, + "c6": 3.9944521497918424, + "c7": 1.9972260748963184 }, "rgb": [58, 15, 49] }, @@ -331215,23 +331215,23 @@ "year": 1794, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": 17.16459604271104, - "c2": -13.233520098562984, - "c3": 9.803043901529868, - "c4": -31.103890823229296, - "c5": -31.6144433461923, - "c6": 25.715452113973797, - "c7": -32.25857334901072 + "points": { + "c1": 31.86171430620601, + "c2": 32.93151200938526, + "c3": -48.09286924569556, + "c4": -32.75215277817756, + "c5": 7.791172167877313, + "c6": 24.923253054772857, + "c7": 18.672670543494462 }, - "vertexSeeds": { - "c1": 4.428988480540597, - "c2": 4.395406967280321, - "c3": 4.143159377532321, - "c4": 4.3366693429477685, - "c5": 4.2520549828412495, - "c6": 4.287127409458864, - "c7": 4.376242298527357 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.3522884882108155, + "c3": 5.293573740175686, + "c4": 4.234858992140547, + "c5": 3.1761442441054077, + "c6": 2.117429496070268, + "c7": 1.0587147480351395 }, "rgb": [238, 201, 159] }, @@ -331242,23 +331242,23 @@ "year": 1794, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 0.3851804581994607, - "c2": -16.845687355113206, - "c3": -15.165769307678438, - "c4": 18.56029167676372, - "c5": -20.302785911093302, - "c6": 23.418799798870864, - "c7": -26.012572824441182 + "points": { + "c1": 10.574937676045693, + "c2": -4.237933353956265, + "c3": 4.726464871167266, + "c4": 8.667298542173, + "c5": 17.332698940519883, + "c6": 11.550854261620891, + "c7": 27.979360794038904 }, - "vertexSeeds": { - "c1": 2.37779621143922, - "c2": 2.331781037927236, - "c3": 2.0661614061209654, - "c4": 2.1778767920311077, - "c5": 1.9288272365346721, - "c6": 2.070808396245308, - "c7": 2.3166612683037897 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.7461858529819687, + "c3": 2.288488210818308, + "c4": 1.8307905686546457, + "c5": 1.3730929264909852, + "c6": 0.9153952843273229, + "c7": 0.45769764216366055 }, "rgb": [222, 0, 59] }, @@ -331269,23 +331269,23 @@ "year": 1794, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 14.512134840928802, - "c2": 19.652515549445134, - "c3": -1.685322993254232, - "c4": 27.95149638506166, - "c5": -22.167544406819236, - "c6": -16.77703032297987, - "c7": -5.09361412063237 + "points": { + "c1": -0.11703548259490049, + "c2": -5.510890119879399, + "c3": -10.036075183966847, + "c4": -10.795209037994425, + "c5": 7.17361956930683, + "c6": -7.290356855338118, + "c7": 10.801212327231617 }, - "vertexSeeds": { - "c1": 3.9617787631440486, - "c2": 3.977755053261409, - "c3": 4.010312878515317, - "c4": 4.021304373607411, - "c5": 3.9956683987228208, - "c6": 3.8594690404302385, - "c7": 3.9421665053058867 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -331296,23 +331296,23 @@ "year": 1794, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -4.359587209321052, - "c2": -21.97702092702834, - "c3": -3.675080335527557, - "c4": 23.4710576632803, - "c5": -5.157753136501519, - "c6": -6.6351298936117225, - "c7": 6.502621772632196 + "points": { + "c1": -1.6987285020884073, + "c2": -19.0701446859416, + "c3": -21.94242358502251, + "c4": -20.671455423664966, + "c5": -6.209512410539556, + "c6": 22.282274526628818, + "c7": -22.966069592539245 }, - "vertexSeeds": { - "c1": 4.389713805028921, - "c2": 4.3746406976790055, - "c3": 4.38108237072696, - "c4": 4.38067975092085, - "c5": 4.379212335355809, - "c6": 4.380128414075668, - "c7": 4.382507471004975 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.2968099861304045, + "c3": 5.247341655108705, + "c4": 4.197873324087006, + "c5": 3.148404993065098, + "c6": 2.0989366620433985, + "c7": 1.0494683310216992 }, "rgb": [222, 0, 59] }, @@ -331323,23 +331323,23 @@ "year": 1794, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 13.737570757671449, - "c2": 15.56101914052595, - "c3": -25.21532526759478, - "c4": -11.432802202382476, - "c5": 4.003907168415566, - "c6": -17.276794416478577, - "c7": 2.1785231664090965 + "points": { + "c1": 4.901746471347408, + "c2": 21.878544362139117, + "c3": -29.609740623137494, + "c4": -25.2917510710855, + "c5": 21.984869575692393, + "c6": -25.74053160762608, + "c7": -8.7968027978064 }, - "vertexSeeds": { - "c1": 4.177461139896373, - "c2": 4.177461139896373, - "c3": 4.177461139896373, - "c4": 4.177461139896373, - "c5": 4.177461139896373, - "c6": 4.177461139896373, - "c7": 4.177461139896373 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -331350,23 +331350,23 @@ "year": 1794, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 7.0599743582632115, - "c2": -3.5911261181102603, - "c3": -7.698264376864948, - "c4": -5.508845581267188, - "c5": -21.635230795967107, - "c6": -20.568651550328347, - "c7": -22.512601421828634 + "points": { + "c1": 12.483759401636036, + "c2": -9.59690491827033, + "c3": -29.7339049971796, + "c4": 4.895405917346579, + "c5": 3.90705926206158, + "c6": -3.958334804076216, + "c7": -5.874575864117869 }, - "vertexSeeds": { - "c1": 1.5738341968911918, - "c2": 1.5738341968911918, - "c3": 1.5738341968911918, - "c4": 1.5738341968911918, - "c5": 1.5738341968911918, - "c6": 1.5738341968911918, - "c7": 1.5738341968911918 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -331377,23 +331377,23 @@ "year": 1795, "resistanceReported": true, "duration": 52963200, - "curveSeeds": { - "c1": -48.904077229972046, - "c2": -31.1853464378179, - "c3": -16.02026949617119, - "c4": 15.752496694248492, - "c5": -22.016517540698196, - "c6": 57.00521437861366, - "c7": -14.825721750647624 + "points": { + "c1": -63.28456661123214, + "c2": -3.9309965699788734, + "c3": -36.189975026753594, + "c4": 47.77607688806077, + "c5": 31.677946779153004, + "c6": 12.578619599662204, + "c7": 63.5886157286744 }, - "vertexSeeds": { - "c1": 9.69559585492228, - "c2": 9.69559585492228, - "c3": 9.69559585492228, - "c4": 9.69559585492228, - "c5": 9.69559585492228, - "c6": 9.69559585492228, - "c7": 9.69559585492228 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -331404,23 +331404,23 @@ "year": 1794, "resistanceReported": true, "duration": 15638400, - "curveSeeds": { - "c1": 2.7233991707721366, - "c2": 14.777623182381763, - "c3": -15.357558134928054, - "c4": -22.564449483790554, - "c5": 9.214544135504337, - "c6": 5.814032528391746, - "c7": 12.727072244246262 + "points": { + "c1": 8.230503548243174, + "c2": 10.975807528320598, + "c3": -23.4460846887621, + "c4": -16.95018735730578, + "c5": 10.596880683157803, + "c6": 3.9092337648763085, + "c7": 0.9651540408295283 }, - "vertexSeeds": { - "c1": 4.739821088262114, - "c2": 4.863755593551853, - "c3": 4.898369856536449, - "c4": 4.744760050131285, - "c5": 4.973893449133611, - "c6": 4.7414451208180255, - "c7": 4.727676344016999 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181233, + "c4": 4.789644012944988, + "c5": 3.5922330097087443, + "c6": 2.394822006472489, + "c7": 1.1974110032362553 }, "rgb": [238, 201, 159] }, @@ -331431,23 +331431,23 @@ "year": 1794, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -2.0690504042163838, - "c2": -18.39933043934589, - "c3": 17.080024901104746, - "c4": -23.537582083757602, - "c5": 10.419712803725002, - "c6": -13.290058631464618, - "c7": -23.939181152678803 + "points": { + "c1": 28.954889715354348, + "c2": 25.086196041771167, + "c3": 21.503282055992706, + "c4": 21.835749697959812, + "c5": -7.430557205501074, + "c6": -11.785756687702232, + "c7": 3.0675472033577975 }, - "vertexSeeds": { - "c1": 9.087089417436287, - "c2": 8.829207656060673, - "c3": 9.191143772728154, - "c4": 9.151818062353911, - "c5": 9.153542970530316, - "c6": 8.666083522646085, - "c7": 8.638321092570415 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266293, + "c3": 11.07258437355524, + "c4": 8.85806749884421, + "c5": 6.643550624133157, + "c6": 4.429033749422105, + "c7": 2.2145168747110526 }, "rgb": [77, 76, 132] }, @@ -331458,23 +331458,23 @@ "year": 1794, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 2.5507030667385884, - "c2": -5.385803240451381, - "c3": 7.578427977525102, - "c4": -14.568792592321314, - "c5": 10.336662058963874, - "c6": 17.343563382086984, - "c7": -21.194748760814036 + "points": { + "c1": -20.087597745635343, + "c2": -9.972568053421636, + "c3": 3.89816155946529, + "c4": 17.493532508832665, + "c5": -1.769991261626263, + "c6": 18.705595967647767, + "c7": -13.536389021352834 }, - "vertexSeeds": { - "c1": 7.663516625864932, - "c2": 7.783123113207541, - "c3": 7.178765352092199, - "c4": 7.437672696819906, - "c5": 7.546004798808299, - "c6": 7.801629726527404, - "c7": 7.442774544213439 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.17891816920944, + "c3": 9.315765141007857, + "c4": 7.452612112806294, + "c5": 5.58945908460471, + "c6": 3.726306056403147, + "c7": 1.8631530282015845 }, "rgb": [58, 15, 49] }, @@ -331485,23 +331485,23 @@ "year": 1794, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 9.330871197730946, - "c2": -12.019637435207507, - "c3": 14.823020299339408, - "c4": 21.99539191416223, - "c5": 14.665825785266481, - "c6": 20.898066924861265, - "c7": -10.178948659718323 + "points": { + "c1": 28.384521839807903, + "c2": 20.71583988964001, + "c3": -1.7364629421005233, + "c4": 23.835910528457497, + "c5": -30.899151655817857, + "c6": -32.2340572970489, + "c7": 23.050247558267586 }, - "vertexSeeds": { - "c1": 5.3891400512340155, - "c2": 5.5568634659370515, - "c3": 5.653041360603064, - "c4": 5.255266764017766, - "c5": 5.603710556174701, - "c6": 5.490071161630872, - "c7": 5.510350821551734 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905692, + "c3": 6.842348589921396, + "c4": 5.473878871937121, + "c5": 4.105409153952846, + "c6": 2.7369394359685497, + "c7": 1.3684697179842749 }, "rgb": [222, 0, 59] }, @@ -331512,23 +331512,23 @@ "year": 1794, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 19.95215886050706, - "c2": -3.8951419270552385, - "c3": -19.342642418029545, - "c4": 15.312535491709948, - "c5": 22.105136425405487, - "c6": 21.05799481707111, - "c7": -15.070991453643993 + "points": { + "c1": 10.819686618807783, + "c2": -0.8805562087354062, + "c3": -5.136283089866314, + "c4": 3.03932231352864, + "c5": 27.226873392723395, + "c6": 18.24733069053664, + "c7": -10.874781848573615 }, - "vertexSeeds": { - "c1": 2.924085204883363, - "c2": 2.893398782111908, - "c3": 3.0152353513180703, - "c4": 3.0093850545342584, - "c5": 3.0287401970620533, - "c6": 2.9535396433718426, - "c7": 2.902476517143749 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314834, + "c3": 3.6292186777623687, + "c4": 2.90337494220989, + "c5": 2.177531206657424, + "c6": 1.451687471104945, + "c7": 0.7258437355524789 }, "rgb": [222, 0, 59] }, @@ -331539,23 +331539,23 @@ "year": 1794, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 10.218618466071263, - "c2": 21.497961882830012, - "c3": 2.817957621612411, - "c4": 16.596952532886732, - "c5": 19.5478551313928, - "c6": 23.87567093485015, - "c7": 11.776623013523633 + "points": { + "c1": -24.035693553673102, + "c2": -22.803007737872132, + "c3": -25.732909579174713, + "c4": 11.318199392099054, + "c5": -19.955949944478007, + "c6": 17.43550680866646, + "c7": 7.601436885528109 }, - "vertexSeeds": { - "c1": 8.092416842061382, - "c2": 8.152768328614492, - "c3": 8.149628335065692, - "c4": 8.099731410955451, - "c5": 8.22520026801065, - "c6": 8.131527166580636, - "c7": 8.11420486665813 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134548, + "c3": 9.847434119278804, + "c4": 7.877947295423061, + "c5": 5.90846047156723, + "c6": 3.938973647711487, + "c7": 1.9694868238557435 }, "rgb": [58, 15, 49] }, @@ -331566,23 +331566,23 @@ "year": 1794, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 19.326273374062282, - "c2": 27.127078903423886, - "c3": 32.50934280389661, - "c4": -0.4941943421764776, - "c5": 16.664739512798135, - "c6": 13.414858006736317, - "c7": -32.65308927695655 + "points": { + "c1": -16.741888851631003, + "c2": 27.008276475194393, + "c3": 11.23581555584557, + "c4": -25.136703066065756, + "c5": 6.543019415518408, + "c6": 2.867990404767177, + "c7": 24.279807032815746 }, - "vertexSeeds": { - "c1": 2.8646113411153036, - "c2": 2.918961038678803, - "c3": 3.0269649730227655, - "c4": 2.99412602305186, - "c5": 2.8828562767196977, - "c6": 2.9201778576905104, - "c7": 3.0727495501660873 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.49375866851595, + "c3": 3.7447988904299585, + "c4": 2.9958391123439667, + "c5": 2.246879334257975, + "c6": 1.4979195561719834, + "c7": 0.7489597780859917 }, "rgb": [222, 0, 59] }, @@ -331593,23 +331593,23 @@ "year": 1794, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -1.5860253746787336, - "c2": 14.40332535507947, - "c3": 1.677476533420947, - "c4": 10.270307277887635, - "c5": -19.22805532347172, - "c6": -13.154515739161683, - "c7": -3.3278786415894963 + "points": { + "c1": -10.438916734311768, + "c2": 1.4867697259725645, + "c3": 18.724691515018865, + "c4": -3.9515650354895087, + "c5": -24.406581479571855, + "c6": -18.48898740618521, + "c7": -2.5430800980611217 }, - "vertexSeeds": { - "c1": 4.380711159614094, - "c2": 4.487497625788588, - "c3": 4.41637565535251, - "c4": 4.512668607592983, - "c5": 4.451862630624487, - "c6": 4.254788490254962, - "c7": 4.289433574374905 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492377, + "c3": 5.4553860379103085, + "c4": 4.364308830328252, + "c5": 3.273231622746182, + "c6": 2.182154415164126, + "c7": 1.0910772075820694 }, "rgb": [86, 146, 138] }, @@ -331620,23 +331620,23 @@ "year": 1795, "resistanceReported": false, "duration": 47347200, - "curveSeeds": { - "c1": 9.299739799304504, - "c2": 21.436346793907504, - "c3": -11.579690364958417, - "c4": -41.2240659838272, - "c5": -27.808636638338037, - "c6": 57.7673854078695, - "c7": -14.59427375119958 + "points": { + "c1": -2.500358128695588, + "c2": -37.25423925427835, + "c3": -50.561622251717615, + "c4": -40.483031138243874, + "c5": -26.12397121510334, + "c6": 15.41677620724316, + "c7": -53.331364070612466 }, - "vertexSeeds": { - "c1": 3.6794884246560517, - "c2": 4.0248229141941785, - "c3": 3.880925915782526, - "c4": 4.046745089204133, - "c5": 4.004965110456259, - "c6": 3.632014177574767, - "c7": 3.7294019179136115 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446603, + "c3": 4.854368932038837, + "c4": 3.883495145631071, + "c5": 2.9126213592233055, + "c6": 1.9417475728155316, + "c7": 0.9708737864077658 }, "rgb": [238, 201, 159] }, @@ -331647,23 +331647,23 @@ "year": 1795, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -31.686009439740772, - "c2": -39.074308838018574, - "c3": -39.14224508468017, - "c4": 5.334888727193658, - "c5": -11.707108507159141, - "c6": -1.3839118979125615, - "c7": 8.212861003504337 + "points": { + "c1": 10.30298584423386, + "c2": 35.466940059994656, + "c3": 8.856111594621098, + "c4": 32.49262141447532, + "c5": 9.578392659711135, + "c6": -46.91023947725397, + "c7": 8.742480192658242 }, - "vertexSeeds": { - "c1": 4.507772020725389, - "c2": 4.507772020725389, - "c3": 4.507772020725389, - "c4": 4.507772020725389, - "c5": 4.507772020725389, - "c6": 4.507772020725389, - "c7": 4.507772020725389 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -331674,23 +331674,23 @@ "year": 1795, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 25.586168194662193, - "c2": 41.14624574834326, - "c3": -24.68162737947403, - "c4": 0.24205550919383967, - "c5": -28.57556001958452, - "c6": -37.79078106872346, - "c7": -25.21236509788221 + "points": { + "c1": -16.42298175313373, + "c2": 8.998014092211669, + "c3": -22.258062703821697, + "c4": -27.104375688533345, + "c5": 11.6328749460896, + "c6": 0.5256505733160708, + "c7": 36.22492540548073 }, - "vertexSeeds": { - "c1": 4.290896605208997, - "c2": 4.343402509097886, - "c3": 4.512041720283271, - "c4": 4.394524709979608, - "c5": 4.4883510546453245, - "c6": 4.378764163499672, - "c7": 4.463731021850852 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.5742024965326, + "c3": 5.4785020804438265, + "c4": 4.382801664355067, + "c5": 3.287101248266293, + "c6": 2.1914008321775333, + "c7": 1.09570041608876 }, "rgb": [238, 201, 159] }, @@ -331701,23 +331701,23 @@ "year": 1794, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -0.6464903988459625, - "c2": 11.281863758459021, - "c3": 2.4019009711307753, - "c4": 1.342946299508359, - "c5": -2.5287010881635865, - "c6": -29.19290307732419, - "c7": -5.683186668254898 + "points": { + "c1": 6.3275198682602465, + "c2": -14.390785495817578, + "c3": -16.329534311928576, + "c4": -7.873929398173036, + "c5": 8.861588836355544, + "c6": -11.760222278641187, + "c7": 16.93507001067264 }, - "vertexSeeds": { - "c1": 4.555263066711757, - "c2": 4.599928180432868, - "c3": 4.586086753802641, - "c4": 4.614422325361876, - "c5": 4.5540771614589, - "c6": 4.519608240291938, - "c7": 4.5372751878284765 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653258, + "c3": 5.547850208044382, + "c4": 4.438280166435505, + "c5": 3.328710124826629, + "c6": 2.2191400832177526, + "c7": 1.1095700416088763 }, "rgb": [238, 201, 159] }, @@ -331728,23 +331728,23 @@ "year": 1794, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 18.500527143246174, - "c2": -13.290557215289166, - "c3": 21.617949855911625, - "c4": 19.03049653775752, - "c5": 21.8462414112717, - "c6": -21.859376334103512, - "c7": 21.7313336957331 + "points": { + "c1": 19.947829240599567, + "c2": 1.6881646187129995, + "c3": -12.924617431326052, + "c4": 18.843004811541874, + "c5": -23.501023368131445, + "c6": 7.053947696815115, + "c7": 7.7766816017716 }, - "vertexSeeds": { - "c1": 1.6360515435380127, - "c2": 1.5741485051675266, - "c3": 1.5526228568763942, - "c4": 1.6374870461374154, - "c5": 1.4989931887437355, - "c6": 1.428848197916363, - "c7": 1.4957476844469113 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797493, + "c3": 2.057327785483126, + "c4": 1.6458622283864996, + "c5": 1.234396671289876, + "c6": 0.8229311141932498, + "c7": 0.4114655570966235 }, "rgb": [222, 0, 59] }, @@ -331755,23 +331755,23 @@ "year": 1794, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -9.843428748450133, - "c2": 15.602240681133324, - "c3": 21.64986131261172, - "c4": 8.853422946612476, - "c5": 9.143908500860718, - "c6": -3.4979574001350926, - "c7": -3.1472514759089414 + "points": { + "c1": 12.171594122241927, + "c2": 14.262296261417006, + "c3": -10.76481665421249, + "c4": -24.20207358846433, + "c5": -5.1609784926335145, + "c6": -0.21442132405874403, + "c7": -22.196006625921573 }, - "vertexSeeds": { - "c1": 6.94765637194149, - "c2": 6.697140900333982, - "c3": 6.955605468496477, - "c4": 6.871531218567155, - "c5": 6.424311328704543, - "c6": 6.96769393657408, - "c7": 6.879218076244225 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066581, + "c4": 6.65742024965327, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624133119 }, "rgb": [58, 15, 49] }, @@ -331782,23 +331782,23 @@ "year": 1795, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 1.6982453365198182, - "c2": -13.267447551712952, - "c3": -19.26231371837105, - "c4": 40.457421890998276, - "c5": -19.67856435689352, - "c6": -8.390193038630265, - "c7": -26.7920834203602 + "points": { + "c1": -18.31539009912304, + "c2": -31.246666844394138, + "c3": -40.5493948932433, + "c4": 42.973716267509886, + "c5": -14.163063908512889, + "c6": -34.183472263894146, + "c7": -37.88973363096763 }, - "vertexSeeds": { - "c1": 7.395696194652061, - "c2": 7.381999617358457, - "c3": 7.374928875898939, - "c4": 7.398538647525454, - "c5": 7.380094119410731, - "c6": 7.386768193703862, - "c7": 7.366030719349901 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364822, + "c3": 8.830328247804077, + "c4": 7.064262598243332, + "c5": 5.298196948682236, + "c6": 3.5321312991214904, + "c7": 1.7660656495607452 }, "rgb": [86, 146, 138] }, @@ -331809,23 +331809,23 @@ "year": 1795, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 38.328693711961705, - "c2": -27.92334552463818, - "c3": 2.415009859135651, - "c4": -6.384472343288202, - "c5": -6.028551156991583, - "c6": -13.530213777173511, - "c7": -11.492217380589228 + "points": { + "c1": -39.18500933595733, + "c2": 1.622425936723701, + "c3": 39.2320115972974, + "c4": 22.365437805725392, + "c5": -28.842726455224657, + "c6": -25.36264032725571, + "c7": 18.857491815735344 }, - "vertexSeeds": { - "c1": 11.069127580750608, - "c2": 11.441862040136863, - "c3": 11.115031863631843, - "c4": 11.428731021470416, - "c5": 11.756997017809377, - "c6": 11.353122248555897, - "c7": 11.806525443877687 + "offsets": { + "c1": 19.741100323624593, + "c2": 16.92094313453538, + "c3": 14.100785945446116, + "c4": 11.280628756356903, + "c5": 8.46047156726769, + "c6": 5.640314378178478, + "c7": 2.8201571890892128 }, "rgb": [77, 76, 132] }, @@ -331836,23 +331836,23 @@ "year": 1795, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -28.910839216165588, - "c2": 17.561269109875724, - "c3": 17.589864321492783, - "c4": 43.79192058691146, - "c5": -18.972679507402407, - "c6": -23.684688167258958, - "c7": -11.2591292109133 + "points": { + "c1": -41.23986269276602, + "c2": -34.918191985538115, + "c3": 9.501273454632724, + "c4": 34.65573765942149, + "c5": -39.47513647107773, + "c6": -26.97741389415243, + "c7": 19.05180640310944 }, - "vertexSeeds": { - "c1": 5.132805512048898, - "c2": 4.88191985641922, - "c3": 5.141993389609454, - "c4": 4.982906358576399, - "c5": 4.929801129132123, - "c6": 4.882280755743075, - "c7": 5.190737958296686 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.4895977808599135, + "c3": 6.2413314840499226, + "c4": 4.993065187239933, + "c5": 3.7447988904299434, + "c6": 2.4965325936199796, + "c7": 1.2482662968099898 }, "rgb": [58, 15, 49] }, @@ -331863,23 +331863,23 @@ "year": 1794, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 5.6059410583916005, - "c2": 22.36449321661677, - "c3": -6.235559112899942, - "c4": 10.479493863313703, - "c5": 9.062836661533066, - "c6": 17.635732566386817, - "c7": 9.357161027002132 + "points": { + "c1": -8.708636781534416, + "c2": -3.6891628557535725, + "c3": -11.293787351297773, + "c4": 22.458129451199316, + "c5": -21.149968778537104, + "c6": -15.496120577329059, + "c7": 27.111684262591464 }, - "vertexSeeds": { - "c1": 6.625647668393783, - "c2": 6.625647668393783, - "c3": 6.625647668393783, - "c4": 6.625647668393783, - "c5": 6.625647668393783, - "c6": 6.625647668393783, - "c7": 6.625647668393783 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -331890,23 +331890,23 @@ "year": 1794, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 16.079257174704274, - "c2": -15.42864593773432, - "c3": 4.028945767912376, - "c4": -15.623678255483272, - "c5": 19.29923785257352, - "c6": -21.84492530900574, - "c7": 12.859676977183597 + "points": { + "c1": -1.9295418171860383, + "c2": -14.14607193361194, + "c3": -6.195143677155716, + "c4": -10.181690832445707, + "c5": -13.24550202318253, + "c6": -16.61648023457832, + "c7": -25.111603504477305 }, - "vertexSeeds": { - "c1": 5.428001376537784, - "c2": 5.73584069556728, - "c3": 5.5500605496004765, - "c4": 5.307032970946136, - "c5": 5.584368674673024, - "c6": 5.404338744303332, - "c7": 5.681402990489705 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986137, + "c3": 6.888580674988432, + "c4": 5.5108645399907505, + "c5": 4.133148404993069, + "c6": 2.7554322699953864, + "c7": 1.3777161349976823 }, "rgb": [86, 146, 138] }, @@ -331917,23 +331917,23 @@ "year": 1794, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 5.076016893696611, - "c2": 36.27318921890415, - "c3": -10.382429609010241, - "c4": 30.40869518150491, - "c5": -9.666489966308685, - "c6": 27.853613891427727, - "c7": -22.589224695621443 + "points": { + "c1": -25.69650741236341, + "c2": 31.479824066214263, + "c3": 12.841517012291114, + "c4": 12.993853038417448, + "c5": -0.6835686081726493, + "c6": 21.45762651910519, + "c7": 29.231545870623933 }, - "vertexSeeds": { - "c1": 4.78625797035252, - "c2": 4.703360667744139, - "c3": 4.690267638340033, - "c4": 4.680502364868331, - "c5": 4.608608794124003, - "c6": 4.693054990102077, - "c7": 4.7574437315242495 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457688, + "c3": 6.010171058714751, + "c4": 4.808136846971803, + "c5": 3.606102635228855, + "c6": 2.4040684234858962, + "c7": 1.2020342117429481 }, "rgb": [238, 201, 159] }, @@ -331944,23 +331944,23 @@ "year": 1795, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": 27.446940781451666, - "c2": -32.41393369119457, - "c3": -19.870438447295086, - "c4": -4.060811281509324, - "c5": -11.774960750258025, - "c6": -2.488189665298478, - "c7": -47.76433081695217 + "points": { + "c1": -35.654473524200995, + "c2": 29.214280682286564, + "c3": 10.382429534894001, + "c4": -28.61447692234113, + "c5": -0.6819604390059766, + "c6": 33.897733649082504, + "c7": -14.25080290416863 }, - "vertexSeeds": { - "c1": 6.645305490768205, - "c2": 6.369001118073173, - "c3": 6.70883874939755, - "c4": 6.834355144511575, - "c5": 6.37118673625904, - "c6": 6.683653402308841, - "c7": 6.391886775718846 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -331971,23 +331971,23 @@ "year": 1794, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 19.947634899270753, - "c2": -30.78163802203924, - "c3": 10.973018342235164, - "c4": 24.22128283295426, - "c5": 8.190303255981327, - "c6": 33.46024384724959, - "c7": -33.12001266476325 + "points": { + "c1": 14.225211493878653, + "c2": -18.276766374268313, + "c3": 37.98233216232244, + "c4": 37.203350411946566, + "c5": -1.1984549589420794, + "c6": -23.91268991172366, + "c7": 0.30698157099425316 }, - "vertexSeeds": { - "c1": 4.903439947438554, - "c2": 4.947195350744938, - "c3": 4.914424973791527, - "c4": 4.938439246930418, - "c5": 4.915985783679921, - "c6": 4.909670642070509, - "c7": 4.900288911843866 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296803, + "c3": 5.917706888580663, + "c4": 4.734165510864523, + "c5": 3.5506241331484216, + "c6": 2.367082755432281, + "c7": 1.1835413777161405 }, "rgb": [77, 76, 132] }, @@ -331998,23 +331998,23 @@ "year": 1795, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -20.75204163931134, - "c2": 5.1423477270029565, - "c3": 12.46026595671637, - "c4": 3.9362112033921832, - "c5": -27.321291455159894, - "c6": 30.255090731586243, - "c7": -26.876716999622474 + "points": { + "c1": 33.65966918290007, + "c2": -1.8383493080703346, + "c3": -24.25324957268571, + "c4": -25.188125690065153, + "c5": 14.36486140443661, + "c6": -21.065284122760282, + "c7": -41.33412125796674 }, - "vertexSeeds": { - "c1": 9.624938702985984, - "c2": 9.637719143802752, - "c3": 9.98986014050542, - "c4": 9.702851018042855, - "c5": 10.282782579998452, - "c6": 9.684472656580821, - "c7": 10.1250827098012 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.84049930651871, + "c3": 12.36708275543229, + "c4": 9.893666204345823, + "c5": 7.420249653259355, + "c6": 4.946833102172912, + "c7": 2.473416551086444 }, "rgb": [58, 15, 49] }, @@ -332025,23 +332025,23 @@ "year": 1794, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 10.420948273830355, - "c2": 19.86518945784649, - "c3": 23.450624545164168, - "c4": -2.0629275805121132, - "c5": 27.450021829833766, - "c6": -5.114512953307116, - "c7": -15.903917543627795 + "points": { + "c1": -31.264235941376533, + "c2": 8.120005053383295, + "c3": -6.479170659985268, + "c4": -10.904426860724943, + "c5": -6.179454627027528, + "c6": -5.866196039062416, + "c7": -27.513198457428636 }, - "vertexSeeds": { - "c1": 9.573698953094308, - "c2": 9.700277246681644, - "c3": 9.664481055369556, - "c4": 8.931759651007441, - "c5": 9.18430536922087, - "c6": 8.953154300874637, - "c7": 9.37758755811247 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312059, + "c3": 11.67360147942673, + "c4": 9.33888118354138, + "c5": 7.004160887656029, + "c6": 4.66944059177068, + "c7": 2.33472029588535 }, "rgb": [77, 76, 132] }, @@ -332052,23 +332052,23 @@ "year": 1794, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 9.846381334896588, - "c2": 6.595591007592862, - "c3": -12.058367278965052, - "c4": -10.169128763155403, - "c5": -11.33088207506409, - "c6": -14.988908661523425, - "c7": 0.5579481259762673 + "points": { + "c1": -15.645104741536406, + "c2": 3.286512052724735, + "c3": -10.38933994843538, + "c4": 12.691561160876912, + "c5": -7.668393280147146, + "c6": 10.835057970441088, + "c7": 19.34986464798322 }, - "vertexSeeds": { - "c1": 3.8706176357411026, - "c2": 3.8636424883468465, - "c3": 3.9197807762868346, - "c4": 3.7745883991171256, - "c5": 3.807147943160068, - "c6": 3.984529546617242, - "c7": 3.9125117230623956 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [238, 201, 159] }, @@ -332079,23 +332079,23 @@ "year": 1794, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 9.711819656534459, - "c2": -18.080637275690762, - "c3": 25.69167775764339, - "c4": -27.671771307809767, - "c5": -20.722873521133106, - "c6": 30.459312233597338, - "c7": -8.910945415241233 + "points": { + "c1": 26.743900096370858, + "c2": 1.3784115021519128, + "c3": -25.27573726286105, + "c4": -10.620855326252151, + "c5": 2.0525934800835373, + "c6": 2.3740899340482216, + "c7": -5.191898728312388 }, - "vertexSeeds": { - "c1": 9.732365407147249, - "c2": 9.699645261448529, - "c3": 9.743113018514856, - "c4": 9.788571034609872, - "c5": 9.759098996872, - "c6": 9.729184130509356, - "c7": 9.746884317662627 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312039, + "c3": 11.673601479426669, + "c4": 9.338881183541297, + "c5": 7.004160887656112, + "c6": 4.6694405917707416, + "c7": 2.3347202958853708 }, "rgb": [58, 15, 49] }, @@ -332106,23 +332106,23 @@ "year": 1794, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": -21.65691760818992, - "c2": -1.354284910504397, - "c3": 4.579907149577149, - "c4": -16.78418507392932, - "c5": 11.514900392209007, - "c6": 15.303972751088324, - "c7": 14.529842957760408 + "points": { + "c1": -14.23002266706659, + "c2": 0.91726653636265, + "c3": -18.18049783273824, + "c4": 16.5069418131422, + "c5": -1.5282924252385293, + "c6": -17.741104128696243, + "c7": -20.894387046410536 }, - "vertexSeeds": { - "c1": 3.8949319508064844, - "c2": 3.860170513748007, - "c3": 3.838342911535658, - "c4": 3.896106942429591, - "c5": 3.9248176628713343, - "c6": 3.8564267786071547, - "c7": 3.899501666053989 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165043, + "c3": 4.692556634304198, + "c4": 3.754045307443352, + "c5": 2.8155339805825372, + "c6": 1.8770226537216916, + "c7": 0.9385113268608458 }, "rgb": [222, 0, 59] }, @@ -332133,23 +332133,23 @@ "year": 1795, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 0.6982696533606898, - "c2": -27.423513893081353, - "c3": 43.03823768594455, - "c4": -31.356098268497643, - "c5": 44.38757610109052, - "c6": 43.21064477801684, - "c7": -45.76859005296246 + "points": { + "c1": -38.719678072497004, + "c2": -41.635444464170064, + "c3": 29.16196436415099, + "c4": 33.87154714816066, + "c5": -48.2918373056439, + "c6": 3.6755690886503913, + "c7": -33.58116872707741 }, - "vertexSeeds": { - "c1": 3.7950845287515653, - "c2": 3.898131834141273, - "c3": 3.927047291894909, - "c4": 3.564941951921476, - "c5": 3.6441046365207566, - "c6": 3.582054760503613, - "c7": 3.718541338273294 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768377, + "c3": 5.039297272306982, + "c4": 4.031437817845586, + "c5": 3.0235783633841917, + "c6": 2.015718908922796, + "c7": 1.007859454461401 }, "rgb": [58, 15, 49] }, @@ -332160,23 +332160,23 @@ "year": 1794, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -9.434070286608655, - "c2": -11.116272756129844, - "c3": -9.071789388381553, - "c4": 2.9669930080876057, - "c5": -7.197870291515713, - "c6": -17.29303115274167, - "c7": 7.963484568421045 + "points": { + "c1": 8.678674143753625, + "c2": -17.512063661694263, + "c3": -5.585876005198315, + "c4": -25.227975779958715, + "c5": -3.3245142613184804, + "c6": 2.819238488995474, + "c7": -9.678864156813866 }, - "vertexSeeds": { - "c1": 4.421975069154879, - "c2": 4.24962774703895, - "c3": 4.169105641191683, - "c4": 4.264900490532987, - "c5": 4.266716607472178, - "c6": 4.348773880117707, - "c7": 4.277181970646351 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291266, + "c3": 5.3398058252427125, + "c4": 4.271844660194173, + "c5": 3.203883495145633, + "c6": 2.1359223300970798, + "c7": 1.0679611650485399 }, "rgb": [86, 146, 138] }, @@ -332187,23 +332187,23 @@ "year": 1794, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 30.197385958652628, - "c2": 3.9083084615853316, - "c3": -5.314536920120396, - "c4": -3.2633114434473036, - "c5": 21.479530031805222, - "c6": 16.53502042381368, - "c7": 10.909526818806302 + "points": { + "c1": -13.959245559224609, + "c2": 17.94059538934085, + "c3": -2.0834287700438594, + "c4": 31.27335035892696, + "c5": 27.593888330060537, + "c6": -17.52524087137912, + "c7": -24.961061800970317 }, - "vertexSeeds": { - "c1": 6.383052001922984, - "c2": 6.374766844718933, - "c3": 6.355895458419311, - "c4": 6.378567925077696, - "c5": 6.383191420044572, - "c6": 6.377667591540651, - "c7": 6.355606326717359 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273274, + "c3": 7.628294036061112, + "c4": 6.102635228848951, + "c5": 4.576976421636485, + "c6": 3.0513176144243235, + "c7": 1.5256588072121617 }, "rgb": [77, 76, 132] }, @@ -332214,23 +332214,23 @@ "year": 1795, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 31.444378055685952, - "c2": -9.173368668986988, - "c3": -20.83484384484018, - "c4": -10.501067034280808, - "c5": 37.294306668666, - "c6": 38.878091600424376, - "c7": 0.1559080694997519 + "points": { + "c1": 16.38765577916775, + "c2": -0.03495844265135162, + "c3": -39.24373839368945, + "c4": 11.32630356181346, + "c5": -38.00314430583239, + "c6": -37.94750713651611, + "c7": 18.252089607559363 }, - "vertexSeeds": { - "c1": 7.015794695465648, - "c2": 6.914516746828865, - "c3": 6.8678368019163365, - "c4": 6.886468407345138, - "c5": 6.821647480111638, - "c6": 7.015165756441589, - "c7": 7.058058135350809 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761454, + "c3": 8.483587609801187, + "c4": 6.786870087840956, + "c5": 5.090152565880727, + "c6": 3.3934350439204595, + "c7": 1.6967175219602297 }, "rgb": [238, 201, 159] }, @@ -332241,23 +332241,23 @@ "year": 1795, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 44.751554226496076, - "c2": 31.86135445226713, - "c3": 23.54969553278186, - "c4": -9.701652342641353, - "c5": 27.10865436071895, - "c6": -1.0738920033206298, - "c7": 44.74958416646539 + "points": { + "c1": -3.700144319856804, + "c2": -0.35224945798169216, + "c3": -10.960963931805722, + "c4": 11.49844936255601, + "c5": 15.549556114301119, + "c6": -2.0242594818024813, + "c7": -4.870706780621084 }, - "vertexSeeds": { - "c1": 9.388470556877671, - "c2": 9.976911496007098, - "c3": 9.310509610921075, - "c4": 9.576314952877263, - "c5": 10.09618149045781, - "c6": 9.659526131905343, - "c7": 9.416051341160182 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.646324549237159, + "c3": 12.20527045769766, + "c4": 9.764216366158118, + "c5": 7.323162274618579, + "c6": 4.882108183079059, + "c7": 2.4410540915395402 }, "rgb": [77, 76, 132] }, @@ -332268,23 +332268,23 @@ "year": 1794, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 15.40029036727923, - "c2": 25.882680765410537, - "c3": 4.227247087000396, - "c4": 4.819665335165968, - "c5": -10.294138115675363, - "c6": -18.429830889048976, - "c7": 9.014988450255846 + "points": { + "c1": 21.07059599533329, + "c2": -4.202021486275395, + "c3": -9.11259787076012, + "c4": -11.909239631536053, + "c5": -26.925564256626572, + "c6": 24.68955021612383, + "c7": -4.0055753515414665 }, - "vertexSeeds": { - "c1": 5.863651704836548, - "c2": 5.982193743361956, - "c3": 6.132953231268309, - "c4": 5.695213897158029, - "c5": 5.969969399778379, - "c6": 5.684522948101162, - "c7": 5.918248995151283 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750357, + "c3": 7.327785483125286, + "c4": 5.862228386500238, + "c5": 4.396671289875168, + "c6": 2.931114193250119, + "c7": 1.4655570966250486 }, "rgb": [58, 15, 49] }, @@ -332295,23 +332295,23 @@ "year": 1794, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 10.15034631882386, - "c2": 23.937863522515787, - "c3": -3.317841025738076, - "c4": -3.984675070783627, - "c5": -7.394287889119582, - "c6": -29.495887579373104, - "c7": 4.403188297291852 + "points": { + "c1": -19.23264058724726, + "c2": 6.286101472059826, + "c3": 4.999675472307288, + "c4": 21.814805874853697, + "c5": 15.232600806982461, + "c6": -31.664910945606998, + "c7": 12.665014976290195 }, - "vertexSeeds": { - "c1": 7.564622130859493, - "c2": 7.346726570911557, - "c3": 7.518535281795942, - "c4": 7.364152751291823, - "c5": 7.517021386582921, - "c6": 7.013572384580516, - "c7": 7.279774647507947 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807207, + "c3": 9.084604715672668, + "c4": 7.267683772538132, + "c5": 5.450762829403593, + "c6": 3.6338418862690767, + "c7": 1.8169209431345383 }, "rgb": [58, 15, 49] }, @@ -332322,23 +332322,23 @@ "year": 1795, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -8.409463460661183, - "c2": 21.46455442688928, - "c3": 6.305919782007145, - "c4": -15.949543533754028, - "c5": -31.96859500639275, - "c6": -2.5757046056336037, - "c7": -22.56354142607325 + "points": { + "c1": 28.135465238939943, + "c2": 9.301176340461474, + "c3": 8.929700174783477, + "c4": 23.371504584785228, + "c5": 35.542911094413185, + "c6": -32.82173387762862, + "c7": -19.987039240742217 }, - "vertexSeeds": { - "c1": 3.7390500053249998, - "c2": 3.614592925238075, - "c3": 3.619434887002382, - "c4": 3.761575598119675, - "c5": 3.6729640034888376, - "c6": 3.552652051497436, - "c7": 3.748793675780232 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843269, + "c3": 4.507628294036067, + "c4": 3.6061026352288508, + "c5": 2.7045769764216345, + "c6": 1.803051317614433, + "c7": 0.9015256588072165 }, "rgb": [238, 201, 159] }, @@ -332349,23 +332349,23 @@ "year": 1795, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 13.137963214467348, - "c2": 36.38354869613457, - "c3": -35.72809867276652, - "c4": -21.37309085842483, - "c5": 3.2798559334641553, - "c6": -1.4146081536551947, - "c7": 12.33427882387626 + "points": { + "c1": -32.8502479238011, + "c2": 33.51803418377415, + "c3": -30.740412349534317, + "c4": 26.33452609906226, + "c5": -2.0474987113608094, + "c6": -28.732206938824397, + "c7": 8.36230337658364 }, - "vertexSeeds": { - "c1": 1.436673745912153, - "c2": 1.4293599100542382, - "c3": 1.4372219112789093, - "c4": 1.432599390939424, - "c5": 1.42769840303777, - "c6": 1.4201300444718965, - "c7": 1.4237519654764024 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166533, + "c3": 1.7337031900138546, + "c4": 1.3869625520110906, + "c5": 1.0402219140083266, + "c6": 0.6934812760055625, + "c7": 0.34674063800276406 }, "rgb": [77, 76, 132] }, @@ -332376,23 +332376,23 @@ "year": 1795, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 17.699226868792522, - "c2": 9.531148659535745, - "c3": -30.469850023123122, - "c4": 1.088107983870323, - "c5": 22.840299532952002, - "c6": 20.901298171257366, - "c7": 4.245738012361777 + "points": { + "c1": 7.817540658225617, + "c2": -24.022448236479757, + "c3": -12.343442302849056, + "c4": 5.998548612035222, + "c5": 3.0005040357627877, + "c6": 24.538565837991456, + "c7": -26.45415291862046 }, - "vertexSeeds": { - "c1": 7.855993832857957, - "c2": 7.903258811274053, - "c3": 8.356424346602346, - "c4": 8.342572182119834, - "c5": 8.164309120127838, - "c6": 7.909939177314748, - "c7": 8.39564115787964 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617202, + "c3": 10.124826629681007, + "c4": 8.099861303744786, + "c5": 6.07489597780859, + "c6": 4.049930651872393, + "c7": 2.0249653259361966 }, "rgb": [238, 201, 159] }, @@ -332403,23 +332403,23 @@ "year": 1794, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -2.6350970522084083, - "c2": -23.958872261827715, - "c3": -2.151757877447796, - "c4": 2.6351002914804127, - "c5": 24.28228984196152, - "c6": 18.24883505247808, - "c7": -1.4602150959460864 + "points": { + "c1": 23.17040309720675, + "c2": 2.8079368740483517, + "c3": -11.083146129537656, + "c4": -1.4267624631577789, + "c5": -0.4526649430277203, + "c6": 18.791859145910678, + "c7": 18.36288671051691 }, - "vertexSeeds": { - "c1": 6.743231709456563, - "c2": 6.867206883941567, - "c3": 6.7942971372724585, - "c4": 6.95457637583403, - "c5": 6.675859526351413, - "c6": 6.469087889182728, - "c7": 6.8600045169710935 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -332430,23 +332430,23 @@ "year": 1794, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 23.92128231224057, - "c2": 23.93775621792748, - "c3": -26.562343413150312, - "c4": 18.461688423035895, - "c5": 18.090694410358935, - "c6": -23.318431351803333, - "c7": -5.898454959915021 + "points": { + "c1": -16.916550137588036, + "c2": 24.199945529324857, + "c3": 22.66448477695628, + "c4": -10.866105014480684, + "c5": -9.749733486383409, + "c6": -20.248585942555103, + "c7": 26.132927407162008 }, - "vertexSeeds": { - "c1": 6.29581087458709, - "c2": 6.303182306407893, - "c3": 6.298790508186434, - "c4": 6.3495822743964245, - "c5": 6.321453954109972, - "c6": 6.31537595168145, - "c7": 6.342403301161389 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.09847434119273, + "c3": 7.582061950994076, + "c4": 6.065649560795221, + "c5": 4.549237170596365, + "c6": 3.03282478039751, + "c7": 1.5164123901988553 }, "rgb": [222, 0, 59] }, @@ -332457,23 +332457,23 @@ "year": 1795, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -0.6746842255132535, - "c2": 5.050111824267809, - "c3": -23.64136875443863, - "c4": -4.435292940787882, - "c5": 6.531092826048237, - "c6": 8.573290998681117, - "c7": 19.208717084840778 + "points": { + "c1": 18.340334076933672, + "c2": 5.432128022176769, + "c3": -14.53355097542472, + "c4": 17.19029297561653, + "c5": -20.468515329911128, + "c6": -4.311190347120764, + "c7": 26.334891314079393 }, - "vertexSeeds": { - "c1": 8.58865471352873, - "c2": 8.647852134435103, - "c3": 8.738386662519408, - "c4": 8.705153781886896, - "c5": 8.737688932330506, - "c6": 8.763975756331144, - "c7": 8.730645080204201 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.56588072122055, + "c3": 10.471567267683742, + "c4": 8.377253814147009, + "c5": 6.282940360610275, + "c6": 4.188626907073466, + "c7": 2.094313453536733 }, "rgb": [77, 76, 132] }, @@ -332484,23 +332484,23 @@ "year": 1795, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -31.912357098248663, - "c2": -33.479691449209625, - "c3": -28.869601236918935, - "c4": 33.019829870653304, - "c5": -2.311606649005711, - "c6": 18.88475146001243, - "c7": 25.70002718473028 + "points": { + "c1": -34.169869720428444, + "c2": 12.884409242405376, + "c3": 17.010940180656014, + "c4": 26.12490451320224, + "c5": 21.754103835073288, + "c6": 35.149258058902554, + "c7": 30.506259171997932 }, - "vertexSeeds": { - "c1": 4.698264098563461, - "c2": 4.777932791297924, - "c3": 4.7533220567019026, - "c4": 4.700539908150754, - "c5": 4.7731856543359, - "c6": 4.752664466866903, - "c7": 4.735856489104876 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055482, + "c3": 5.779010633379573, + "c4": 4.623208506703664, + "c5": 3.4674063800277266, + "c6": 2.3116042533518177, + "c7": 1.1558021266759089 }, "rgb": [222, 0, 59] }, @@ -332511,23 +332511,23 @@ "year": 1794, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -18.95264791768362, - "c2": -15.562332330799542, - "c3": 7.83669408058249, - "c4": 27.878122461614623, - "c5": -5.282581782872889, - "c6": -19.491436938766363, - "c7": -2.485624765726108 + "points": { + "c1": 12.557198410050177, + "c2": -13.333095486322026, + "c3": 22.519792606043936, + "c4": 15.202891272487825, + "c5": 21.77122142428172, + "c6": 13.923947263888024, + "c7": -26.260666625257514 }, - "vertexSeeds": { - "c1": 6.817369909867217, - "c2": 9.476866707461854, - "c3": 7.211408241170433, - "c4": 6.372203719346197, - "c5": 6.006407724341423, - "c6": 8.648467059356758, - "c7": 6.192590870932006 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593619, + "c3": 11.835413777161351, + "c4": 9.468331021729076, + "c5": 7.101248266296812, + "c6": 4.734165510864538, + "c7": 2.367082755432269 }, "rgb": [238, 201, 159] }, @@ -332538,23 +332538,23 @@ "year": 1795, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -28.572735676444683, - "c2": 40.70250003588063, - "c3": -7.206299873548026, - "c4": 17.95017616522646, - "c5": 12.497751613579247, - "c6": 4.552128790769849, - "c7": 27.475115001288884 + "points": { + "c1": -38.41954085350001, + "c2": 15.974144137166725, + "c3": 32.83883752869865, + "c4": 9.180493186029842, + "c5": -16.75164654106452, + "c6": -34.06774878047827, + "c7": 31.04863700854439 }, - "vertexSeeds": { - "c1": 4.131866049749697, - "c2": 4.105545527927582, - "c3": 4.138252052766559, - "c4": 4.042259054961726, - "c5": 4.177374982754518, - "c6": 4.165603593206615, - "c7": 4.062837281651038 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687937, + "c3": 4.993065187239952, + "c4": 3.9944521497919667, + "c5": 2.995839112343981, + "c6": 1.997226074895971, + "c7": 0.9986130374479855 }, "rgb": [238, 201, 159] }, @@ -332565,23 +332565,23 @@ "year": 1794, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -12.705139353864244, - "c2": 8.86049988231813, - "c3": 18.892599016684258, - "c4": -12.980656507344417, - "c5": -20.9272417128364, - "c6": 29.867514404827077, - "c7": -19.46364127824552 + "points": { + "c1": 9.709687071515752, + "c2": -8.056640500343551, + "c3": 7.3717907467732715, + "c4": -8.303091136405875, + "c5": 12.667604468160938, + "c6": -32.56032997833189, + "c7": -28.57048193339005 }, - "vertexSeeds": { - "c1": 2.791931809804705, - "c2": 2.8078292281861117, - "c3": 2.7836577576923536, - "c4": 2.7829892685910167, - "c5": 2.725018884980572, - "c6": 2.797955883510014, - "c7": 2.704568017460418 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912616, + "c3": 3.398058252427186, + "c4": 2.718446601941744, + "c5": 2.038834951456314, + "c6": 1.359223300970872, + "c7": 0.6796116504854421 }, "rgb": [58, 15, 49] }, @@ -332592,23 +332592,23 @@ "year": 1794, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -0.1559442305709169, - "c2": 2.677697763770823, - "c3": -21.41756115419993, - "c4": 2.957870443312025, - "c5": 23.591413568187015, - "c6": 23.873807537830793, - "c7": 16.433005546339103 + "points": { + "c1": 23.927306364203716, + "c2": 0.14872285983062383, + "c3": 21.600255620000148, + "c4": 11.950603325464336, + "c5": 11.388614187439238, + "c6": 28.799089861397256, + "c7": 22.661367127023063 }, - "vertexSeeds": { - "c1": 4.098036468191276, - "c2": 4.064643908336432, - "c3": 4.148582179454681, - "c4": 4.073240737758255, - "c5": 4.076521917011098, - "c6": 4.134202843311875, - "c7": 4.076561823817009 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647701, + "c3": 4.969949144706444, + "c4": 3.975959315765147, + "c5": 2.9819694868238504, + "c6": 1.9879796578825535, + "c7": 0.9939898289412966 }, "rgb": [222, 0, 59] }, @@ -332619,23 +332619,23 @@ "year": 1794, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -9.927713677832148, - "c2": 14.7811047258702, - "c3": 1.2844969713069467, - "c4": 25.68362262616784, - "c5": -28.205493697943204, - "c6": -28.585211867941368, - "c7": -1.0755041607332494 + "points": { + "c1": 26.90541208547296, + "c2": 26.677360209350645, + "c3": 15.033566945078618, + "c4": 24.90177691053902, + "c5": -17.443252628270564, + "c6": -4.29592095300735, + "c7": 10.429452716301448 }, - "vertexSeeds": { - "c1": 7.202557905503333, - "c2": 7.4840607218245925, - "c3": 7.0417085111289754, - "c4": 7.633164660656119, - "c5": 7.625050814496099, - "c6": 7.079463100886618, - "c7": 7.416789806607263 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847443, + "c3": 9.107720758206193, + "c4": 7.286176606564963, + "c5": 5.464632454923711, + "c6": 3.6430883032824815, + "c7": 1.8215441516412514 }, "rgb": [58, 15, 49] }, @@ -332646,23 +332646,23 @@ "year": 1794, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 11.062589635695467, - "c2": 24.986048734728314, - "c3": -12.365923066713862, - "c4": 28.257958833932356, - "c5": -17.815995521506782, - "c6": -22.570564377508155, - "c7": 29.00285176586113 + "points": { + "c1": 19.17074131028439, + "c2": -16.930694412018134, + "c3": -9.466440289050357, + "c4": 31.23071223245646, + "c5": 17.533800450394715, + "c6": -5.489840748687712, + "c7": -18.353890335981234 }, - "vertexSeeds": { - "c1": 5.580272726742537, - "c2": 5.3911602452497425, - "c3": 5.5030108264368325, - "c4": 5.447510480293837, - "c5": 5.785523005354704, - "c6": 5.471155891242802, - "c7": 5.463295785250239 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.29403606102636, + "c3": 6.911696717521951, + "c4": 5.529357374017565, + "c5": 4.14701803051318, + "c6": 2.7646786870087716, + "c7": 1.3823393435043858 }, "rgb": [238, 201, 159] }, @@ -332673,23 +332673,23 @@ "year": 1795, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -25.773497195195525, - "c2": -22.04692941768778, - "c3": 13.144622048260615, - "c4": 9.73606369236795, - "c5": 25.622480434700996, - "c6": -27.782834194851176, - "c7": -22.999606288367907 + "points": { + "c1": 26.468429037747, + "c2": -0.5484287746252221, + "c3": -4.119761981067835, + "c4": -13.478022950382737, + "c5": 24.880623659214855, + "c6": -28.020729424087953, + "c7": -15.389499170084555 }, - "vertexSeeds": { - "c1": 4.3616503556245325, - "c2": 4.386995484591897, - "c3": 4.369489258324767, - "c4": 4.367662292736876, - "c5": 4.366963132641721, - "c6": 4.376603650339388, - "c7": 4.353302301718781 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.2968099861304045, + "c3": 5.247341655108601, + "c4": 4.197873324086902, + "c5": 3.1484049930652023, + "c6": 2.098936662043503, + "c7": 1.0494683310216992 }, "rgb": [86, 146, 138] }, @@ -332700,23 +332700,23 @@ "year": 1795, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 11.593823418559353, - "c2": 23.572496285089173, - "c3": 27.304668203583105, - "c4": 5.287213658621404, - "c5": -37.88911193994491, - "c6": -20.240832489087783, - "c7": -33.03355331886789 + "points": { + "c1": -12.160088878081655, + "c2": -29.567423508254308, + "c3": -24.085829304181036, + "c4": 37.82428406363107, + "c5": -27.615914363805736, + "c6": 34.367639049904014, + "c7": -2.6308602220578408 }, - "vertexSeeds": { - "c1": 8.347553032355936, - "c2": 8.32043961049941, - "c3": 8.34840584833061, - "c4": 8.303239701715949, - "c5": 8.331716359071674, - "c6": 8.332233731579507, - "c7": 8.344807842171754 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.95561719833557, + "c3": 9.963014331946484, + "c4": 7.970411465557135, + "c5": 5.977808599167785, + "c6": 3.9852057327784354, + "c7": 1.9926028663893496 }, "rgb": [77, 76, 132] }, @@ -332727,23 +332727,23 @@ "year": 1795, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 17.739171264888583, - "c2": -38.058854958474896, - "c3": 2.5727356084677737, - "c4": -15.273830768297184, - "c5": -0.06038135718102211, - "c6": 26.309672387620893, - "c7": 21.58011925361386 + "points": { + "c1": -7.540943913405954, + "c2": -23.81174398356013, + "c3": -10.765792918902754, + "c4": 41.54616407518185, + "c5": -4.072842878227817, + "c6": 26.330443718778753, + "c7": 10.203707336905502 }, - "vertexSeeds": { - "c1": 2.3121761658031086, - "c2": 2.3121761658031086, - "c3": 2.3121761658031086, - "c4": 2.3121761658031086, - "c5": 2.3121761658031086, - "c6": 2.3121761658031086, - "c7": 2.3121761658031086 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -332754,23 +332754,23 @@ "year": 1795, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -23.04628051230269, - "c2": 31.654333458593776, - "c3": -27.551022710596417, - "c4": -30.693281123562905, - "c5": -34.56322804012713, - "c6": -30.121747384924745, - "c7": 19.096148486465175 + "points": { + "c1": -29.070072162187103, + "c2": 16.22753495480952, + "c3": 37.84294777940743, + "c4": -14.988436591460726, + "c5": 8.693204219447978, + "c6": 13.81285045240061, + "c7": -30.667358670689467 }, - "vertexSeeds": { - "c1": 7.698920690091917, - "c2": 7.4127856723895915, - "c3": 7.388884388801052, - "c4": 7.4947533409060565, - "c5": 7.444194672327969, - "c6": 7.539708909329876, - "c7": 7.566937769106908 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088755, + "c3": 9.246417013407306, + "c4": 7.397133610725837, + "c5": 5.547850208044388, + "c6": 3.6985668053629186, + "c7": 1.849283402681449 }, "rgb": [222, 0, 59] }, @@ -332781,23 +332781,23 @@ "year": 1795, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 40.668160661377165, - "c2": 42.07927564390774, - "c3": -7.566525124335726, - "c4": 8.19246438431832, - "c5": -13.344894320077607, - "c6": 4.820120440715137, - "c7": 38.1944058845719 + "points": { + "c1": -7.427266406738262, + "c2": 0.5744064953926724, + "c3": -12.408675720801526, + "c4": 37.69964146294594, + "c5": -30.131525703026867, + "c6": -0.4511898543810986, + "c7": -3.113599776298827 }, - "vertexSeeds": { - "c1": 8.05468166626698, - "c2": 7.878224594808631, - "c3": 8.129472848048648, - "c4": 7.993634389887572, - "c5": 7.910669091893811, - "c6": 7.936759554123293, - "c7": 7.9597192448822005 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893202, + "c3": 9.70873786407767, + "c4": 7.766990291262135, + "c5": 5.825242718446601, + "c6": 3.8834951456310676, + "c7": 1.9417475728155338 }, "rgb": [77, 76, 132] }, @@ -332808,23 +332808,23 @@ "year": 1794, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -2.4136846384127253, - "c2": -6.111604504913153, - "c3": -5.654988217364853, - "c4": -24.885884356296085, - "c5": -20.55313907213405, - "c6": 21.895685049682307, - "c7": -16.798718940251106 + "points": { + "c1": 0.4935879639632965, + "c2": -20.276901935463872, + "c3": -17.076370471675318, + "c4": 17.186502806573216, + "c5": 23.772579314195568, + "c6": -15.806874409808538, + "c7": -11.843602734081095 }, - "vertexSeeds": { - "c1": 4.922787044820681, - "c2": 4.769325569084047, - "c3": 4.976489803406899, - "c4": 4.951288598548032, - "c5": 4.977217858711861, - "c6": 4.908414385478621, - "c7": 4.670277067315872 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578353, + "c3": 6.079519186315306, + "c4": 4.863615349052246, + "c5": 3.647711511789188, + "c6": 2.431807674526118, + "c7": 1.21590383726307 }, "rgb": [222, 0, 59] }, @@ -332835,23 +332835,23 @@ "year": 1794, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -3.04639108387407, - "c2": -10.609530654930797, - "c3": 28.35927946122529, - "c4": 21.165500800509655, - "c5": -3.4743393097627937, - "c6": 22.483863694652875, - "c7": -5.930841265275969 + "points": { + "c1": -11.026520803214197, + "c2": 3.2334430102060523, + "c3": 0.27244558454507484, + "c4": 0.7500665357842919, + "c5": 19.783075499747866, + "c6": -7.186529232042364, + "c7": 12.518610168265035 }, - "vertexSeeds": { - "c1": 6.689150959165374, - "c2": 6.668726391346556, - "c3": 6.695328722951996, - "c4": 6.738457551854632, - "c5": 6.697559197570355, - "c6": 6.718264446849909, - "c7": 6.672806362366205 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077717, + "c3": 8.090614886731377, + "c4": 6.472491909385145, + "c5": 4.854368932038805, + "c6": 3.2362459546925724, + "c7": 1.6181229773463397 }, "rgb": [86, 146, 138] }, @@ -332862,23 +332862,23 @@ "year": 1795, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 9.8679133810672, - "c2": 21.70626466763081, - "c3": -9.599641271409041, - "c4": -1.4685866959569722, - "c5": 5.147544232436733, - "c6": -11.296519878426668, - "c7": 11.538995513025863 + "points": { + "c1": -22.48971656540836, + "c2": -12.648081184028243, + "c3": -18.40664000829573, + "c4": 17.69323856645306, + "c5": -19.925756565499334, + "c6": 19.102792956680126, + "c7": -15.450738436752868 }, - "vertexSeeds": { - "c1": 6.12406230379585, - "c2": 6.115020484474853, - "c3": 6.101604447378046, - "c4": 6.1037586342449535, - "c5": 6.127329740874879, - "c6": 6.116600358669042, - "c7": 6.106425452296585 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750389, + "c3": 7.327785483125373, + "c4": 5.862228386500356, + "c5": 4.396671289875049, + "c6": 2.9311141932500324, + "c7": 1.4655570966250162 }, "rgb": [238, 201, 159] }, @@ -332889,23 +332889,23 @@ "year": 1795, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 16.60114443112847, - "c2": -13.898518734100751, - "c3": 29.291028073776847, - "c4": -8.434613002583113, - "c5": -18.881208457804856, - "c6": 24.477265780058108, - "c7": -17.394581906771666 + "points": { + "c1": 0.1343034000155967, + "c2": 3.6378482338731786, + "c3": 17.07266664338183, + "c4": -24.114590104892066, + "c5": 30.512432119514393, + "c6": -8.102078265383675, + "c7": -22.285176124852956 }, - "vertexSeeds": { - "c1": 4.478847503612897, - "c2": 4.479293506058424, - "c3": 4.4707780329207125, - "c4": 4.595744156832089, - "c5": 4.502411225650651, - "c6": 4.560712657437502, - "c7": 4.496840516753702 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.60194174757282, + "c3": 5.501618122977354, + "c4": 4.401294498381862, + "c5": 3.300970873786396, + "c6": 2.200647249190931, + "c7": 1.1003236245954655 }, "rgb": [238, 201, 159] }, @@ -332916,23 +332916,23 @@ "year": 1794, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 7.969715150708698, - "c2": 6.2910943879923025, - "c3": -16.8367931084554, - "c4": 1.5019250815584115, - "c5": 8.69147737096144, - "c6": 3.3806999338822585, - "c7": -6.462709173274899 + "points": { + "c1": -6.176202270200292, + "c2": 18.77574566883823, + "c3": 17.524072181675624, + "c4": -20.317228159313295, + "c5": -4.506749894261894, + "c6": -22.70573439743699, + "c7": 24.30569654047309 }, - "vertexSeeds": { - "c1": 4.896870558109365, - "c2": 5.022596828899539, - "c3": 4.95618421759205, - "c4": 4.945085117395188, - "c5": 4.984813441802332, - "c6": 4.707613549819628, - "c7": 4.8533871940004065 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658798, + "c3": 6.1257512713823425, + "c4": 4.900601017105876, + "c5": 3.675450762829399, + "c6": 2.4503005085529326, + "c7": 1.2251502542764663 }, "rgb": [77, 76, 132] }, @@ -332943,23 +332943,23 @@ "year": 1795, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 31.3143870515014, - "c2": -14.89706861932316, - "c3": 12.253653799232687, - "c4": -25.409695390001346, - "c5": 4.494096993834347, - "c6": -20.813984005580856, - "c7": -3.915244465607369 + "points": { + "c1": 0.1914845491920758, + "c2": -5.206107368723885, + "c3": 22.808468920143376, + "c4": 8.377132313111993, + "c5": 22.872704852269855, + "c6": -13.135949139658397, + "c7": -17.395422775864635 }, - "vertexSeeds": { - "c1": 9.026283975644581, - "c2": 8.952490801150352, - "c3": 9.01330182747542, - "c4": 8.997427932019535, - "c5": 8.938892942301726, - "c6": 9.037609966404373, - "c7": 9.007830721065654 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.98196948682381, + "c3": 10.818307905686563, + "c4": 8.654646324549207, + "c5": 6.490984743411959, + "c6": 4.327323162274603, + "c7": 2.1636615811373554 }, "rgb": [238, 201, 159] }, @@ -332970,23 +332970,23 @@ "year": 1795, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -15.236525355117113, - "c2": -13.00247365199515, - "c3": -12.103343236111929, - "c4": -21.941959820565657, - "c5": -7.613742791527713, - "c6": 14.666459015793563, - "c7": 15.979860738577543 + "points": { + "c1": 6.103201464466579, + "c2": -4.001747954948037, + "c3": -20.0141013784446, + "c4": -25.42662419874293, + "c5": 24.22813006101022, + "c6": -23.502997739043543, + "c7": 1.101299406335741 }, - "vertexSeeds": { - "c1": 7.123112252842125, - "c2": 7.191032026449514, - "c3": 7.125229010131531, - "c4": 7.150922477293742, - "c5": 7.153958295700319, - "c6": 7.115844980955874, - "c7": 7.175238021876466 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.3190013869626, + "c3": 8.599167822468777, + "c4": 6.879334257975068, + "c5": 5.1595006934812435, + "c6": 3.439667128987534, + "c7": 1.7198335644938236 }, "rgb": [222, 0, 59] }, @@ -332997,23 +332997,23 @@ "year": 1794, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -8.098749958705564, - "c2": 18.04337267849276, - "c3": -13.137094245050864, - "c4": -23.12468705595263, - "c5": 16.965575749175592, - "c6": 25.1038425235933, - "c7": 24.636890448750492 + "points": { + "c1": 25.04595363584923, + "c2": 7.422219637721092, + "c3": 7.607161476122727, + "c4": -28.31158357368616, + "c5": -5.8341397762890175, + "c6": 7.030458615338311, + "c7": 23.368102785891374 }, - "vertexSeeds": { - "c1": 8.127473069087982, - "c2": 7.334445248491223, - "c3": 8.154248964668058, - "c4": 7.62822295743415, - "c5": 7.712288370888594, - "c6": 7.5103227383917535, - "c7": 8.206668831734447 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094314, + "c3": 9.824318076745262, + "c4": 7.859454461396209, + "c5": 5.894590846047157, + "c6": 3.9297272306981044, + "c7": 1.9648636153490522 }, "rgb": [86, 146, 138] }, @@ -333024,23 +333024,23 @@ "year": 1796, "resistanceReported": false, "duration": 47865600, - "curveSeeds": { - "c1": -3.582161853156201, - "c2": -37.25542442611114, - "c3": -12.108890594592026, - "c4": -47.86216696022789, - "c5": -19.04380098262189, - "c6": 54.318663854935544, - "c7": 53.15966171716054 + "points": { + "c1": -55.00232667148285, + "c2": 1.5732359287398339, + "c3": 25.152583772543878, + "c4": -29.876552256622446, + "c5": 64.09864449950035, + "c6": -61.41032867741752, + "c7": -60.20139560383864 }, - "vertexSeeds": { - "c1": 8.632899700836841, - "c2": 6.97296888044824, - "c3": 6.519125649995866, - "c4": 5.8077093807221, - "c5": 7.853145050240648, - "c6": 5.398756851085468, - "c7": 9.025765031642715 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024968, + "c3": 10.933888118354137, + "c4": 8.74711049468331, + "c5": 6.560332871012484, + "c6": 4.373555247341657, + "c7": 2.1867776236708267 }, "rgb": [86, 146, 138] }, @@ -333051,23 +333051,23 @@ "year": 1795, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 9.280755325012613, - "c2": 17.058932296728585, - "c3": -7.899100531893172, - "c4": 16.508767658376733, - "c5": -9.479343073560553, - "c6": -0.35109921889939244, - "c7": 9.707008065482576 + "points": { + "c1": -35.41615522868453, + "c2": 7.821442070554269, + "c3": 0.977667046239489, + "c4": -13.003650216546028, + "c5": -17.7755514910669, + "c6": 17.159716581076736, + "c7": -29.3560049869847 }, - "vertexSeeds": { - "c1": 6.470274150996944, - "c2": 6.43035434274289, - "c3": 6.534811629487308, - "c4": 6.5276010079396904, - "c5": 6.5316964147433945, - "c6": 6.414258797229573, - "c7": 6.587551838575686 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715654, + "c3": 7.882570503929754, + "c4": 6.306056403143791, + "c5": 4.729542302357827, + "c6": 3.153028201571927, + "c7": 1.5765141007859635 }, "rgb": [58, 15, 49] }, @@ -333078,23 +333078,23 @@ "year": 1794, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 18.018799585352063, - "c2": -14.588141507564167, - "c3": -0.9394620000133393, - "c4": -16.03277926450012, - "c5": 19.55732518096866, - "c6": 0.5043395548433232, - "c7": 12.015990444248999 + "points": { + "c1": 19.981438942399002, + "c2": 20.21919230139936, + "c3": 0.05493222586733992, + "c4": -1.2528057552460865, + "c5": 14.60025634295917, + "c6": -9.716857473859454, + "c7": 5.654439179867861 }, - "vertexSeeds": { - "c1": 7.930220597943795, - "c2": 7.94129284178561, - "c3": 7.943921885089985, - "c4": 7.928597957302571, - "c5": 7.93272868935958, - "c6": 7.935731687741817, - "c7": 7.900176219738736 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.40083217753126, + "c3": 9.500693481275924, + "c4": 7.600554785020778, + "c5": 5.70041608876563, + "c6": 3.800277392510483, + "c7": 1.9001386962551472 }, "rgb": [86, 146, 138] }, @@ -333105,23 +333105,23 @@ "year": 1794, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -19.818052181339958, - "c2": -0.17570807184541337, - "c3": -14.277697565356274, - "c4": -20.314850590012476, - "c5": -17.581312815061718, - "c6": 11.18980174661166, - "c7": 4.8760806762183755 + "points": { + "c1": 11.804590078183782, + "c2": -28.72597222319596, + "c3": 20.00417637433777, + "c4": 24.755171515388252, + "c5": 1.147200070847326, + "c6": -2.567743346602665, + "c7": 23.161745681303668 }, - "vertexSeeds": { - "c1": 3.012138138355809, - "c2": 3.0780805576514347, - "c3": 3.334943695525136, - "c4": 3.4820099893507215, - "c5": 3.2649816613470497, - "c6": 3.0333263349494843, - "c7": 3.2846689805666993 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280163, + "c3": 4.184003698566806, + "c4": 3.3472029588534418, + "c5": 2.5104022191400848, + "c6": 1.6736014794267209, + "c7": 0.8368007397133572 }, "rgb": [222, 0, 59] }, @@ -333132,23 +333132,23 @@ "year": 1795, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 1.010851566090892, - "c2": -4.393922825065303, - "c3": -16.43030192576529, - "c4": -16.460848120898195, - "c5": -7.736908802754673, - "c6": -23.912033640309502, - "c7": 1.7582955793794781 + "points": { + "c1": -10.797678019970043, + "c2": 29.75809667296417, + "c3": -18.502452165683536, + "c4": -11.29244778709144, + "c5": 36.281634163770946, + "c6": -17.533288097969542, + "c7": 13.98922994870081 }, - "vertexSeeds": { - "c1": 3.1459818521214302, - "c2": 3.1975267200676796, - "c3": 3.169659737767507, - "c4": 3.1795846258892326, - "c5": 3.1140978135262922, - "c6": 3.1373011554681445, - "c7": 3.146634295030326 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676829, + "c3": 3.8372630605640445, + "c4": 3.0698104484512294, + "c5": 2.3023578363384143, + "c6": 1.53490522422563, + "c7": 0.767452612112815 }, "rgb": [58, 15, 49] }, @@ -333159,23 +333159,23 @@ "year": 1795, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -22.141991817597756, - "c2": -0.3293070361031951, - "c3": -12.832440902558261, - "c4": 0.9777106752646674, - "c5": -22.039469871582305, - "c6": 23.55805102674279, - "c7": 1.8838458130803701 + "points": { + "c1": 1.203884607142328, + "c2": 14.732651746585645, + "c3": 12.293468526469233, + "c4": -14.56527540423319, + "c5": 37.58442487837277, + "c6": -35.88434586939056, + "c7": -33.91126063057226 }, - "vertexSeeds": { - "c1": 5.911841880346015, - "c2": 5.99044607909529, - "c3": 6.015275358623531, - "c4": 5.571267961730759, - "c5": 5.72211248101864, - "c6": 5.221288188860514, - "c7": 5.251623440122982 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509015, + "c3": 7.1890892279241765, + "c4": 5.751271382339351, + "c5": 4.313453536754513, + "c6": 2.8756356911696757, + "c7": 1.4378178455848378 }, "rgb": [238, 201, 159] }, @@ -333186,23 +333186,23 @@ "year": 1795, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 6.578840677701194, - "c2": 17.513041425751886, - "c3": -23.753790890901254, - "c4": 3.5962561150048984, - "c5": 8.267787767505865, - "c6": -20.364724312981195, - "c7": 16.320695172802402 + "points": { + "c1": -9.989760086409298, + "c2": 28.87593533294701, + "c3": -31.443287825262633, + "c4": 23.325607035637177, + "c5": 17.34913563369254, + "c6": -16.1543429084778, + "c7": -32.26573266446327 }, - "vertexSeeds": { - "c1": 2.0831682620919842, - "c2": 2.1201176226838703, - "c3": 2.049286419537607, - "c4": 2.0514900896054575, - "c5": 2.095222764730831, - "c6": 2.1543004088650597, - "c7": 2.1312959779327225 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [77, 76, 132] }, @@ -333213,23 +333213,23 @@ "year": 1795, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 6.650426763814458, - "c2": -28.468738277695945, - "c3": 31.417505895661087, - "c4": -6.342389770690062, - "c5": 16.96391769193046, - "c6": -27.238202847424965, - "c7": 6.1662598330831315 + "points": { + "c1": 34.578987647571985, + "c2": -21.673348433829283, + "c3": 15.837427128106754, + "c4": -11.594423179277765, + "c5": 8.15388873639651, + "c6": 19.554242348526643, + "c7": -34.0333783122782 }, - "vertexSeeds": { - "c1": 5.822777441075343, - "c2": 5.809641743394449, - "c3": 5.8122296906840125, - "c4": 5.802191380249103, - "c5": 5.792802038633413, - "c6": 5.7948254778603845, - "c7": 5.808676772134818 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106835, + "c3": 6.957928802589075, + "c4": 5.566343042071316, + "c5": 4.174757281553279, + "c6": 2.7831715210355195, + "c7": 1.3915857605177597 }, "rgb": [58, 15, 49] }, @@ -333240,23 +333240,23 @@ "year": 1795, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -12.134058011044743, - "c2": 13.525932904964442, - "c3": 2.298752358015662, - "c4": -21.35836582194448, - "c5": 6.952035491796806, - "c6": 32.728274652846146, - "c7": -8.928062192239203 + "points": { + "c1": 29.816694577099362, + "c2": -23.24630273599052, + "c3": 8.411032079022178, + "c4": -23.232985280485053, + "c5": -2.7593641859799476, + "c6": -27.472955891451953, + "c7": 4.525641131941924 }, - "vertexSeeds": { - "c1": 6.779689045837281, - "c2": 6.519215378570717, - "c3": 6.62536277420143, - "c4": 6.517120187632554, - "c5": 6.714865287363256, - "c6": 6.504107138340083, - "c7": 6.604862237626775 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117896, + "c3": 8.113730929264921, + "c4": 6.490984743411905, + "c5": 4.868238557558929, + "c6": 3.2454923717059523, + "c7": 1.6227461858529761 }, "rgb": [222, 0, 59] }, @@ -333267,23 +333267,23 @@ "year": 1795, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 23.333100455314682, - "c2": 23.381964070513003, - "c3": -22.924995083850746, - "c4": 4.448152037935959, - "c5": 5.529164006060203, - "c6": -20.606804464789676, - "c7": -24.766913846131494 + "points": { + "c1": -26.462794846282556, + "c2": -0.2078599870351141, + "c3": -30.472047298545352, + "c4": -22.357527508634206, + "c5": 19.764398592477722, + "c6": -5.286133553022719, + "c7": 11.018528916003032 }, - "vertexSeeds": { - "c1": 4.417999149781634, - "c2": 4.400210527019914, - "c3": 4.393850175534454, - "c4": 4.409333093942461, - "c5": 4.420206854912706, - "c6": 4.408477137393768, - "c7": 4.409724781427074 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210848, + "c3": 5.293573740175637, + "c4": 4.234858992140531, + "c5": 3.176144244105424, + "c6": 2.1174294960703177, + "c7": 1.0587147480351062 }, "rgb": [86, 146, 138] }, @@ -333294,23 +333294,23 @@ "year": 1795, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -3.3223662130446208, - "c2": 3.676524932918255, - "c3": -4.227493309962007, - "c4": -23.472796898322393, - "c5": -29.794530931475624, - "c6": -24.99554704619762, - "c7": 2.0955415282110508 + "points": { + "c1": -24.619579993071348, + "c2": 33.81689141418779, + "c3": -18.761203494842118, + "c4": 22.02143019890797, + "c5": -19.538387812098154, + "c6": 26.10047202061189, + "c7": 19.081334985368684 }, - "vertexSeeds": { - "c1": 7.199610333334871, - "c2": 7.061948284983358, - "c3": 7.122203980406554, - "c4": 7.148542157013802, - "c5": 7.134806412752467, - "c6": 7.115753502021744, - "c7": 7.135934957112569 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002785, + "c3": 8.622283865002334, + "c4": 6.897827092001883, + "c5": 5.17337031900143, + "c6": 3.4489135460009797, + "c7": 1.7244567730004516 }, "rgb": [238, 201, 159] }, @@ -333321,23 +333321,23 @@ "year": 1795, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 5.7630617088808265, - "c2": 19.594884131168676, - "c3": 25.260574247859395, - "c4": -16.429300209322236, - "c5": -25.967807060153753, - "c6": -24.80992815569261, - "c7": 12.957361918741256 + "points": { + "c1": 9.940775736353082, + "c2": 27.30393634778777, + "c3": -27.86046462290961, + "c4": 18.693265622086216, + "c5": 3.8368912881447343, + "c6": -30.552416228272204, + "c7": -6.628214960306622 }, - "vertexSeeds": { - "c1": 3.7500986549480446, - "c2": 3.7500879262464286, - "c3": 3.765774017505885, - "c4": 3.762636712197122, - "c5": 3.756261805096239, - "c6": 3.7565361835091164, - "c7": 3.7677232170496002 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843298, + "c3": 4.507628294036112, + "c4": 3.606102635228926, + "c5": 2.7045769764215595, + "c6": 1.8030513176143732, + "c7": 0.9015256588071866 }, "rgb": [238, 201, 159] }, @@ -333348,23 +333348,23 @@ "year": 1795, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 28.521796189813273, - "c2": 25.518878997296184, - "c3": 21.34498410390315, - "c4": -25.974183941794365, - "c5": 3.975771108723009, - "c6": 15.279524917436468, - "c7": -5.625969159449266 + "points": { + "c1": 22.449572336579692, + "c2": 6.333315007247535, + "c3": -5.823379791311055, + "c4": 24.818223598814292, + "c5": -27.559771125814763, + "c6": -28.481146228979902, + "c7": 13.356850134549688 }, - "vertexSeeds": { - "c1": 8.276877172572474, - "c2": 8.260618282594574, - "c3": 8.252600682482306, - "c4": 8.09159581798586, - "c5": 8.219506751879923, - "c6": 8.108167688989903, - "c7": 8.040958216959499 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174752, + "c3": 9.870550161812286, + "c4": 7.896440129449862, + "c5": 5.922330097087396, + "c6": 3.948220064724931, + "c7": 1.9741100323624654 }, "rgb": [222, 0, 59] }, @@ -333375,23 +333375,23 @@ "year": 1795, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -40.96855712955809, - "c2": 12.099617735446444, - "c3": 2.5152752400626994, - "c4": -17.442196676358847, - "c5": -19.26425828778934, - "c6": -23.3243111817066, - "c7": -33.667509902110744 + "points": { + "c1": -21.579724687143724, + "c2": -25.41237934977682, + "c3": -9.029463102209306, + "c4": 43.790388666678595, + "c5": 0.6990113876363893, + "c6": 35.6075430812748, + "c7": -31.4301957959222 }, - "vertexSeeds": { - "c1": 6.222015553687347, - "c2": 6.39626648676081, - "c3": 6.200153845852861, - "c4": 6.32449430535242, - "c5": 6.325896994526809, - "c6": 6.126511338077135, - "c7": 6.384097506400026 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795646, + "c4": 6.232085067036513, + "c5": 4.674063800277402, + "c6": 3.1160425335182684, + "c7": 1.5580212667591342 }, "rgb": [77, 76, 132] }, @@ -333402,23 +333402,23 @@ "year": 1795, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 15.087984099434749, - "c2": 25.24162346169735, - "c3": 18.140183819767508, - "c4": 16.397492331771232, - "c5": -29.938121918405496, - "c6": 14.891808223807082, - "c7": -25.16252214045157 + "points": { + "c1": -25.347234869951038, + "c2": -24.158430856106172, + "c3": -7.550143553389219, + "c4": 39.11101742423013, + "c5": -25.113145817998134, + "c6": 36.958420474443, + "c7": -33.37523153819633 }, - "vertexSeeds": { - "c1": 4.468665455542352, - "c2": 4.5456143871444255, - "c3": 4.613086382751231, - "c4": 4.41299272750692, - "c5": 4.521304380191468, - "c6": 4.576213124844773, - "c7": 4.354982902184101 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814144, + "c3": 5.640314378178461, + "c4": 4.5122515025427665, + "c5": 3.384188626907072, + "c6": 2.2561257512713775, + "c7": 1.1280628756356947 }, "rgb": [238, 201, 159] }, @@ -333429,23 +333429,23 @@ "year": 1795, "resistanceReported": false, "duration": 38448000, - "curveSeeds": { - "c1": -2.3868717243027007, - "c2": -8.151503936757798, - "c3": -17.296445840029037, - "c4": -25.186142622266647, - "c5": -6.016708728819616, - "c6": -34.76923729120307, - "c7": -17.475981742245324 + "points": { + "c1": -8.253959787162565, + "c2": -23.991185687713124, + "c3": -27.868546009528394, + "c4": -12.199184611779494, + "c5": -0.9732714413981043, + "c6": -39.3837295454523, + "c7": 50.812036345217905 }, - "vertexSeeds": { - "c1": 13.000237521351119, - "c2": 13.38046747873499, - "c3": 13.09604518790007, - "c4": 11.777444338346267, - "c5": 13.250592449772142, - "c6": 13.742515314148406, - "c7": 13.013606620445005 + "offsets": { + "c1": 23.398058252427184, + "c2": 20.05547850208045, + "c3": 16.712898751733693, + "c4": 13.370319001386958, + "c5": 10.027739251040225, + "c6": 6.68515950069349, + "c7": 3.3425797503467347 }, "rgb": [238, 201, 159] }, @@ -333456,23 +333456,23 @@ "year": 1795, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 27.716663873441867, - "c2": 28.153250972860427, - "c3": 2.4463634309277715, - "c4": -25.666727025223793, - "c5": -0.05644372829425137, - "c6": -19.105123172423028, - "c7": -17.46872022394317 + "points": { + "c1": -28.681152821798964, + "c2": -20.905448992850374, + "c3": 12.377901580311033, + "c4": -13.731231096233532, + "c5": -28.753232744182334, + "c6": -11.238684693455387, + "c7": 7.433329663900082 }, - "vertexSeeds": { - "c1": 2.3167273163718662, - "c2": 2.3231871128233914, - "c3": 2.317537980197471, - "c4": 2.3091598250296363, - "c5": 2.3286016345849427, - "c6": 2.3161436583513897, - "c7": 2.3048636312264863 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668394, + "c3": 2.7970411465557135, + "c4": 2.23763291724456, + "c5": 1.6782246879334337, + "c6": 1.11881645862228, + "c7": 0.5594082293111539 }, "rgb": [58, 15, 49] }, @@ -333483,23 +333483,23 @@ "year": 1795, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 25.10213608107056, - "c2": 3.704771206873822, - "c3": -26.067348503077994, - "c4": -9.404104456529183, - "c5": -33.835829452948616, - "c6": -30.913235336349807, - "c7": 3.893355710115621 + "points": { + "c1": 20.666081475301375, + "c2": 9.078667647651493, + "c3": -34.67410735792281, + "c4": -2.3138280827236954, + "c5": 0.004419695713941962, + "c6": -17.648311425813926, + "c7": 27.497420782175105 }, - "vertexSeeds": { - "c1": 8.098532235073211, - "c2": 8.098609420728671, - "c3": 8.097356853722916, - "c4": 8.079447384873516, - "c5": 8.071728794229536, - "c6": 8.097992105813594, - "c7": 8.100955378855707 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812815, + "c3": 9.662505779010743, + "c4": 7.730004623208671, + "c5": 5.797503467406216, + "c6": 3.8650023116041434, + "c7": 1.9325011558020717 }, "rgb": [58, 15, 49] }, @@ -333510,23 +333510,23 @@ "year": 1795, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -21.896000673659223, - "c2": -21.661922754005964, - "c3": 2.6999204703161475, - "c4": -6.589511025270891, - "c5": -4.8442662220112815, - "c6": -19.80857348901296, - "c7": -25.308485874448095 + "points": { + "c1": -8.8724585599984, + "c2": -15.314895513134354, + "c3": 12.6351382352073, + "c4": -23.62168074622442, + "c5": -23.67473231694277, + "c6": -17.86943407039088, + "c7": -28.98175245359525 }, - "vertexSeeds": { - "c1": 3.153377194895113, - "c2": 3.1513664312189262, - "c3": 3.136985062705467, - "c4": 3.115455324282608, - "c5": 3.123943364295516, - "c6": 3.1129597750682687, - "c7": 3.136763837126615 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596416, + "c3": 3.7910309754969878, + "c4": 3.0328247803976107, + "c5": 2.2746185852981826, + "c6": 1.5164123901988054, + "c7": 0.7582061950993775 }, "rgb": [222, 0, 59] }, @@ -333537,23 +333537,23 @@ "year": 1795, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 17.984057043541, - "c2": -17.494368793196447, - "c3": -28.510521490558375, - "c4": -23.043974254103937, - "c5": 13.430785438973551, - "c6": 14.964791106268905, - "c7": -1.6841270888277933 + "points": { + "c1": -8.667585499914523, + "c2": 4.167158721663888, + "c3": -30.191338922077406, + "c4": 0.37708370829777493, + "c5": -5.972800100263825, + "c6": 15.209644572155796, + "c7": 16.615012352160143 }, - "vertexSeeds": { - "c1": 5.04534889821216, - "c2": 4.9913112089422595, - "c3": 5.012481135642092, - "c4": 5.008030120589065, - "c5": 5.027132755397578, - "c6": 5.02026111141565, - "c7": 5.009433486336701 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497905, + "c3": 6.033287101248239, + "c4": 4.826629680998571, + "c5": 3.6199722607489044, + "c6": 2.413314840499334, + "c7": 1.206657420249667 }, "rgb": [238, 201, 159] }, @@ -333564,23 +333564,23 @@ "year": 1795, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": 54.08428627275826, - "c2": 12.22179731737819, - "c3": -34.03375160110713, - "c4": -19.63085692506892, - "c5": 37.9062134553903, - "c6": -28.38862211416505, - "c7": -26.219407599500098 + "points": { + "c1": 31.432765293506037, + "c2": -31.01617329146843, + "c3": -47.894590015152666, + "c4": -10.15063416787202, + "c5": -28.37333703095637, + "c6": 36.28265542097405, + "c7": -40.14229149151585 }, - "vertexSeeds": { - "c1": 12.35062926159614, - "c2": 12.54082724790999, - "c3": 12.524588702982307, - "c4": 12.370761340780184, - "c5": 12.578123002481226, - "c6": 12.512265223741917, - "c7": 12.33615860286601 + "offsets": { + "c1": 21.100323624595468, + "c2": 18.08599167822472, + "c3": 15.07165973185386, + "c4": 12.05732778548311, + "c5": 9.04299583911236, + "c6": 6.0286638927415, + "c7": 3.01433194637075 }, "rgb": [86, 146, 138] }, @@ -333591,23 +333591,23 @@ "year": 1795, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -32.34916750944044, - "c2": -0.8296874312830056, - "c3": -10.981181505927964, - "c4": 15.270394256667387, - "c5": 6.402500115797068, - "c6": 32.701614125747284, - "c7": -0.6691432629981477 + "points": { + "c1": 23.036453097543514, + "c2": -25.6330408299453, + "c3": 7.152267086224178, + "c4": -22.710551202092404, + "c5": -14.173002267628647, + "c6": 13.900769846318667, + "c7": 15.483106275571004 }, - "vertexSeeds": { - "c1": 6.705139969022944, - "c2": 6.547300625906047, - "c3": 6.982131209227613, - "c4": 6.77174179910644, - "c5": 6.936173094041433, - "c6": 7.020579285223364, - "c7": 6.837870020406694 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600566, + "c3": 8.391123439667126, + "c4": 6.712898751733711, + "c5": 5.034674063800271, + "c6": 3.3564493758668554, + "c7": 1.6782246879334155 }, "rgb": [77, 76, 132] }, @@ -333618,23 +333618,23 @@ "year": 1795, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -22.825676583468184, - "c2": 17.285028256051298, - "c3": -11.511717378823173, - "c4": -4.416991980522223, - "c5": -17.27383034173127, - "c6": 24.773824468699587, - "c7": 20.283846297223732 + "points": { + "c1": 8.243141262720286, + "c2": 22.9787347171956, + "c3": -16.657382141536694, + "c4": 25.917744097362906, + "c5": -22.464892241198783, + "c6": 11.812526280445539, + "c7": -11.23038048422777 }, - "vertexSeeds": { - "c1": 6.793158929919668, - "c2": 6.773904622525501, - "c3": 6.759548817170456, - "c4": 6.754069646826174, - "c5": 6.7748246497837705, - "c6": 6.760807494619016, - "c7": 6.778730019282071 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.73647711511783, + "c3": 8.113730929265001, + "c4": 6.490984743411959, + "c5": 4.868238557558915, + "c6": 3.2454923717058715, + "c7": 1.6227461858530432 }, "rgb": [222, 0, 59] }, @@ -333645,23 +333645,23 @@ "year": 1795, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 35.35436643966884, - "c2": -19.79800782747212, - "c3": -35.46356953499333, - "c4": 31.615755557288878, - "c5": 11.770262788145672, - "c6": -26.02066954616017, - "c7": 11.140073919132753 + "points": { + "c1": -0.09488695724120078, + "c2": 25.843468689504824, + "c3": 6.385041369789867, + "c4": -35.42850134184411, + "c5": 28.29292415673227, + "c6": -4.996310554877994, + "c7": 5.517780011685687 }, - "vertexSeeds": { - "c1": 5.593780130852219, - "c2": 5.045362780895033, - "c3": 5.412849681601563, - "c4": 5.34730803139601, - "c5": 5.605028896538495, - "c6": 5.20062373985038, - "c7": 5.73256779060483 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945914, + "c3": 6.865464632454922, + "c4": 5.492371705963943, + "c5": 4.119278779472951, + "c6": 2.7461858529819714, + "c7": 1.3730929264909786 }, "rgb": [86, 146, 138] }, @@ -333672,23 +333672,23 @@ "year": 1795, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 27.604544181638587, - "c2": 6.205244528544611, - "c3": 7.644128002469316, - "c4": -5.854443759432797, - "c5": 22.041892418807578, - "c6": -15.301708670634852, - "c7": 22.071350462554086 + "points": { + "c1": 16.248313018571103, + "c2": 10.074703494285558, + "c3": 21.81403619981986, + "c4": -20.92233652424449, + "c5": -19.893490494588278, + "c6": 17.421359813084813, + "c7": -8.5240888289689 }, - "vertexSeeds": { - "c1": 5.730108018273381, - "c2": 5.765832866016857, - "c3": 5.768459323823144, - "c4": 5.755385312523303, - "c5": 5.778626985412317, - "c6": 5.695001322211118, - "c7": 5.74550602293689 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026338, + "c3": 6.91169671752193, + "c4": 5.529357374017521, + "c5": 4.147018030513113, + "c6": 2.764678687008816, + "c7": 1.382339343504408 }, "rgb": [58, 15, 49] }, @@ -333699,23 +333699,23 @@ "year": 1795, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -1.2146815670728692, - "c2": -21.783684901989112, - "c3": -15.96478338692016, - "c4": 11.27787273883354, - "c5": -4.34409860951974, - "c6": -24.653596958346466, - "c7": -28.73086057177268 + "points": { + "c1": 10.254570568833685, + "c2": -30.897275593302332, + "c3": 4.943665166989099, + "c4": 17.930080799139212, + "c5": 9.065584695413598, + "c6": 7.7254574654446415, + "c7": -2.2361896998205744 }, - "vertexSeeds": { - "c1": 3.477979274611399, - "c2": 3.477979274611399, - "c3": 3.477979274611399, - "c4": 3.477979274611399, - "c5": 3.477979274611399, - "c6": 3.477979274611399, - "c7": 3.477979274611399 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -333726,23 +333726,23 @@ "year": 1795, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 34.07880617136106, - "c2": -31.830677338096304, - "c3": -4.825196147734911, - "c4": -33.24374925271744, - "c5": 19.453974797564918, - "c6": 17.897694903562503, - "c7": 3.2040600460560142 + "points": { + "c1": 34.77638035783864, + "c2": 16.320504389400213, + "c3": -29.922169373170277, + "c4": -27.591036622240132, + "c5": -19.954342135284392, + "c6": -17.075207566337912, + "c7": 36.00077741696351 }, - "vertexSeeds": { - "c1": 6.454361798733065, - "c2": 6.721158167201441, - "c3": 6.96417827192908, - "c4": 6.609264060896762, - "c5": 7.003453889866003, - "c6": 6.572378013104733, - "c7": 6.9375421271657745 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721218, + "c3": 8.460471567267678, + "c4": 6.768377253814157, + "c5": 5.076282940360618, + "c6": 3.3841886269070787, + "c7": 1.6920943134535393 }, "rgb": [58, 15, 49] }, @@ -333753,23 +333753,23 @@ "year": 1795, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -28.993105738970293, - "c2": 10.072929964703349, - "c3": -26.675306150511275, - "c4": -3.4348082896669005, - "c5": 20.09609823037942, - "c6": -13.130173783175234, - "c7": -7.064340525898373 + "points": { + "c1": 12.192829005055103, + "c2": 15.106406250555466, + "c3": -0.15916821701447148, + "c4": -24.58018783739706, + "c5": 28.50769239581895, + "c6": 27.85823085712962, + "c7": 8.828509390011348 }, - "vertexSeeds": { - "c1": 5.263119379135684, - "c2": 5.6217599961386675, - "c3": 5.027044206129268, - "c4": 5.3690676492857055, - "c5": 5.193766720272838, - "c6": 5.334923849238442, - "c7": 5.314118321212115 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055483, + "c4": 5.547850208044384, + "c5": 4.160887656033285, + "c6": 2.773925104022186, + "c7": 1.386962552011099 }, "rgb": [222, 0, 59] }, @@ -333780,23 +333780,23 @@ "year": 1795, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -19.16148223693986, - "c2": -29.787711026579455, - "c3": -17.71291742651275, - "c4": 4.41276209211329, - "c5": -4.167315707021544, - "c6": -22.935005521770947, - "c7": -38.06361673919676 + "points": { + "c1": 11.75863450807875, + "c2": -14.03584958079918, + "c3": -4.5418620846068265, + "c4": 28.295844842212333, + "c5": -34.45886029052255, + "c6": -10.523702095195254, + "c7": 19.893387154181866 }, - "vertexSeeds": { - "c1": 7.209003653818989, - "c2": 7.2015538045515886, - "c3": 7.222920438198647, - "c4": 7.212152806143148, - "c5": 7.199294602470753, - "c6": 7.235459692717677, - "c7": 7.247307938205612 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.37447988904293, + "c3": 8.645399907535928, + "c4": 6.916319926028698, + "c5": 5.187239944521465, + "c6": 3.458159963014234, + "c7": 1.7290799815072315 }, "rgb": [77, 76, 132] }, @@ -333807,23 +333807,23 @@ "year": 1795, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 10.159366523899017, - "c2": -20.753758829919512, - "c3": -22.396494676708365, - "c4": -21.472931786989683, - "c5": 13.09359793569665, - "c6": -4.883328052049443, - "c7": -1.3951389758407942 + "points": { + "c1": -33.746051104173844, + "c2": -33.56682905018466, + "c3": 1.0750547971137436, + "c4": 33.572887320234074, + "c5": 12.334279076035607, + "c6": 26.475137704630356, + "c7": 32.07634072271081 }, - "vertexSeeds": { - "c1": 6.383930191312498, - "c2": 6.581117598847767, - "c3": 6.764402888896284, - "c4": 6.704963401045747, - "c5": 6.439659778767232, - "c6": 6.793553416192134, - "c7": 6.430467249274293 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -333834,23 +333834,23 @@ "year": 1795, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 34.040414204067446, - "c2": 22.29708390758575, - "c3": -4.518180405612085, - "c4": 25.80344882417706, - "c5": 5.332543204668561, - "c6": -34.09027900301288, - "c7": 4.9359504941488765 + "points": { + "c1": 5.154699957022409, + "c2": 7.400100660395466, + "c3": -15.320467485918762, + "c4": -17.77483213079085, + "c5": 35.019970691227115, + "c6": -8.536234036449269, + "c7": 25.245143970309783 }, - "vertexSeeds": { - "c1": 12.815799968401194, - "c2": 12.108164760330718, - "c3": 12.299069879021241, - "c4": 12.847787771271866, - "c5": 12.725560730228192, - "c6": 12.540005167795274, - "c7": 12.131747620341875 + "offsets": { + "c1": 21.45631067961165, + "c2": 18.391123439667155, + "c3": 15.325936199722598, + "c4": 12.260748959778104, + "c5": 9.195561719833547, + "c6": 6.130374479889052, + "c7": 3.0651872399444953 }, "rgb": [222, 0, 59] }, @@ -333861,23 +333861,23 @@ "year": 1795, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 12.663541076719923, - "c2": 5.4564617026632405, - "c3": 17.066186069313297, - "c4": 17.587801985936572, - "c5": 29.455779541568383, - "c6": 8.348082739897379, - "c7": 21.163545707020198 + "points": { + "c1": -30.62299884895204, + "c2": 26.55813350110325, + "c3": 4.450609761520546, + "c4": 4.234043313936482, + "c5": 34.180900496601154, + "c6": -14.65879329863424, + "c7": -21.876689665799944 }, - "vertexSeeds": { - "c1": 5.015851517271289, - "c2": 5.018620711123592, - "c3": 5.595802323287558, - "c4": 5.573764204411376, - "c5": 5.288932832417993, - "c6": 5.099674737889876, - "c7": 4.833591929510247 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664355, + "c3": 6.703652334720294, + "c4": 5.362921867776234, + "c5": 4.022191400832174, + "c6": 2.681460933888114, + "c7": 1.34073046694406 }, "rgb": [86, 146, 138] }, @@ -333888,23 +333888,23 @@ "year": 1795, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -23.37287359230671, - "c2": -24.539773572824345, - "c3": 19.41210612926173, - "c4": 20.932994433223172, - "c5": 15.361637907876627, - "c6": -14.58995087034313, - "c7": -26.211959396883806 + "points": { + "c1": -21.704521118903244, + "c2": 32.30219158652318, + "c3": -27.448957947761812, + "c4": 35.358535084318476, + "c5": 33.74045615269482, + "c6": 20.860809003813387, + "c7": -8.324725054837682 }, - "vertexSeeds": { - "c1": 4.5584763047418155, - "c2": 4.453845873350395, - "c3": 4.423522635757033, - "c4": 4.585801532876296, - "c5": 4.597172344798393, - "c6": 4.506146345432581, - "c7": 4.50207005524544 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572818, + "c3": 5.501618122977351, + "c4": 4.401294498381884, + "c5": 3.3009708737864165, + "c6": 2.2006472491909346, + "c7": 1.1003236245954673 }, "rgb": [238, 201, 159] }, @@ -333915,23 +333915,23 @@ "year": 1795, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 6.735598114034431, - "c2": -22.70160366685176, - "c3": -17.64145668554437, - "c4": -2.8481124291760587, - "c5": 18.93451052205689, - "c6": 11.553364845508405, - "c7": -16.297670706239348 + "points": { + "c1": -0.9829121046365046, + "c2": 31.4498010513241, + "c3": -13.822611575012612, + "c4": 11.103186441885349, + "c5": 7.787585848624538, + "c6": 19.0518564853581, + "c7": 26.52153395689583 }, - "vertexSeeds": { - "c1": 6.628514991989323, - "c2": 6.5528794762884885, - "c3": 6.5581130377362555, - "c4": 6.698970256043217, - "c5": 6.532195198280326, - "c6": 6.0592645904279445, - "c7": 6.071970344325656 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037447, + "c3": 8.06749884419787, + "c4": 6.453999075358306, + "c5": 4.84049930651873, + "c6": 3.226999537679153, + "c7": 1.6134997688395765 }, "rgb": [222, 0, 59] }, @@ -333942,23 +333942,23 @@ "year": 1795, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 39.48146952358596, - "c2": -19.244111871603653, - "c3": 34.40008101446841, - "c4": 22.002952160532644, - "c5": 11.906930843211413, - "c6": 28.620933004877244, - "c7": -24.314030875766417 + "points": { + "c1": 33.34031275352349, + "c2": 44.50828708453233, + "c3": 23.164857202343143, + "c4": 40.708107092830176, + "c5": 21.607122924862935, + "c6": 20.076208320823838, + "c7": 21.375095862261446 }, - "vertexSeeds": { - "c1": 5.571225854008324, - "c2": 5.7195344149516245, - "c3": 5.5613086647276235, - "c4": 5.661896673995617, - "c5": 5.667146668349655, - "c6": 5.6407833402553615, - "c7": 5.635111014387024 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026347, + "c3": 6.911696717521948, + "c4": 5.529357374017595, + "c5": 4.1470180305131965, + "c6": 2.7646786870087974, + "c7": 1.3823393435043987 }, "rgb": [77, 76, 132] }, @@ -333969,23 +333969,23 @@ "year": 1795, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -5.668136515439322, - "c2": -16.50489223004291, - "c3": 28.123965449301267, - "c4": 23.339643067285863, - "c5": 33.216115003265756, - "c6": -44.34526224962961, - "c7": 44.43843609075458 + "points": { + "c1": -15.093633397566581, + "c2": 2.345546619178357, + "c3": -2.4854287137061064, + "c4": -2.017704196662706, + "c5": -13.99362106875698, + "c6": 43.88830436456128, + "c7": -13.740067857840124 }, - "vertexSeeds": { - "c1": 7.087049192337106, - "c2": 7.15230086748166, - "c3": 7.2113795880776035, - "c4": 7.374564959730522, - "c5": 7.409982272155264, - "c6": 7.157769426958079, - "c7": 7.375992597481656 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404992, + "c3": 8.853444290337494, + "c4": 7.082755432269995, + "c5": 5.312066574202496, + "c6": 3.5413777161349973, + "c7": 1.7706888580674986 }, "rgb": [222, 0, 59] }, @@ -333996,23 +333996,23 @@ "year": 1795, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 33.74836678054717, - "c2": -25.075735105875935, - "c3": -8.170218534780439, - "c4": -5.240161710343195, - "c5": 30.243558851085282, - "c6": -15.232293512899595, - "c7": 25.79602127992659 + "points": { + "c1": -37.11525926366313, + "c2": 21.558264125118555, + "c3": -6.779399679106021, + "c4": -32.62866703599019, + "c5": 14.102124978520528, + "c6": -5.023452570038877, + "c7": -12.097196008015398 }, - "vertexSeeds": { - "c1": 1.602561810869661, - "c2": 1.7700786502191965, - "c3": 1.5710224324167579, - "c4": 1.6484498100877354, - "c5": 1.511065904157503, - "c6": 1.621305080700013, - "c7": 1.6217902799453314 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808588, + "c3": 2.1729079981507167, + "c4": 1.7383263985205724, + "c5": 1.303744798890428, + "c6": 0.8691631992602862, + "c7": 0.4345815996301418 }, "rgb": [77, 76, 132] }, @@ -334023,23 +334023,23 @@ "year": 1795, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -21.378025554927923, - "c2": -14.51371686572234, - "c3": -32.232088370992784, - "c4": -33.22557873751312, - "c5": -21.49881310018912, - "c6": 1.4207182830054563, - "c7": -29.304534933093812 + "points": { + "c1": -3.8169092046437214, + "c2": -10.327957572003946, + "c3": -37.4619430572417, + "c4": -22.22013423994606, + "c5": -10.00881179325387, + "c6": -5.381841391705727, + "c7": 8.11994208106588 }, - "vertexSeeds": { - "c1": 7.640350113507579, - "c2": 7.615559836530547, - "c3": 7.423306049276238, - "c4": 7.288324820652273, - "c5": 7.70140718444586, - "c6": 7.524040176799017, - "c7": 7.639706093073265 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008319, + "c3": 9.200184928340262, + "c4": 7.360147942672206, + "c5": 5.520110957004171, + "c6": 3.6800739713361135, + "c7": 1.8400369856680567 }, "rgb": [77, 76, 132] }, @@ -334050,23 +334050,23 @@ "year": 1795, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": -8.873406629157955, - "c2": -24.24097106658332, - "c3": -13.165884472685477, - "c4": -37.02839289221685, - "c5": -15.980139925457586, - "c6": 11.10597938082033, - "c7": -33.952737722585006 + "points": { + "c1": 30.970125354349484, + "c2": 44.57612373951293, + "c3": 15.165146293575368, + "c4": -48.29153991327603, + "c5": 12.464533798693452, + "c6": -39.48804715912335, + "c7": 46.78562358356559 }, - "vertexSeeds": { - "c1": 7.9811058619908275, - "c2": 8.137621729990048, - "c3": 8.008621896969519, - "c4": 8.057113820200422, - "c5": 8.139807316899303, - "c6": 7.953693294599259, - "c7": 8.013375037768027 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893181, + "c3": 9.708737864077703, + "c4": 7.766990291262148, + "c5": 5.8252427184465905, + "c6": 3.8834951456310343, + "c7": 1.941747572815556 }, "rgb": [86, 146, 138] }, @@ -334077,23 +334077,23 @@ "year": 1795, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 28.409621157416673, - "c2": -20.577050887543216, - "c3": 13.04470514671592, - "c4": 11.11304244214248, - "c5": 30.273572290237574, - "c6": -8.570455733661774, - "c7": -0.9772810052067769 + "points": { + "c1": 28.142929903906975, + "c2": -28.311290776526306, + "c3": 25.06800944999351, + "c4": -19.528233023923928, + "c5": 21.473436568885987, + "c6": 20.59642276442407, + "c7": -28.059340620554345 }, - "vertexSeeds": { - "c1": 10.604739562649623, - "c2": 10.581317011290638, - "c3": 10.576107569286194, - "c4": 10.62658719027347, - "c5": 10.583027077981955, - "c6": 10.647306517321523, - "c7": 10.640067756483928 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081902, + "c3": 12.69070735090167, + "c4": 10.152565880721436, + "c5": 7.614424410540699, + "c6": 5.076282940360466, + "c7": 2.538141470180233 }, "rgb": [58, 15, 49] }, @@ -334104,23 +334104,23 @@ "year": 1795, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -25.538792149670485, - "c2": 21.74435615577788, - "c3": -2.741718727775808, - "c4": -20.90731471913793, - "c5": 25.116829529955133, - "c6": -22.53335406755088, - "c7": -20.347731095242565 + "points": { + "c1": -24.57671888329618, + "c2": -14.724929108378745, + "c3": -23.989171827468994, + "c4": 9.013449638634562, + "c5": -5.979675280910609, + "c6": -28.758805052991992, + "c7": -26.49342464657678 }, - "vertexSeeds": { - "c1": 5.365252919377658, - "c2": 5.342502953657877, - "c3": 5.319465924431188, - "c4": 5.2892994653749765, - "c5": 5.343715707496069, - "c6": 5.314839365779636, - "c7": 5.380099541430336 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181678, + "c3": 6.426259824318048, + "c4": 5.141007859454417, + "c5": 3.8557558945907875, + "c6": 2.57050392972726, + "c7": 1.28525196486363 }, "rgb": [222, 0, 59] }, @@ -334131,23 +334131,23 @@ "year": 1796, "resistanceReported": false, "duration": 39484800, - "curveSeeds": { - "c1": 21.831435252589415, - "c2": 7.584289344526226, - "c3": 7.751650484711909, - "c4": -4.14235702121475, - "c5": -46.52114892249296, - "c6": 29.530991031270602, - "c7": 46.521760579219844 + "points": { + "c1": -24.104505969916758, + "c2": -29.568560123877415, + "c3": -0.6838451811915078, + "c4": 32.49645225868382, + "c5": -11.209844456377972, + "c6": 44.36582905170714, + "c7": -52.79479645952943 }, - "vertexSeeds": { - "c1": 9.596943891050284, - "c2": 9.581089303759438, - "c3": 9.59775045700176, - "c4": 9.559003928514434, - "c5": 9.579295123954818, - "c6": 9.554497175749916, - "c7": 9.557884159962782 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909763, + "c3": 11.442441054091672, + "c4": 9.153952843273277, + "c5": 6.865464632454882, + "c6": 4.576976421636487, + "c7": 2.288488210818395 }, "rgb": [238, 201, 159] }, @@ -334158,23 +334158,23 @@ "year": 1795, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 42.736981531108924, - "c2": 43.51721108963264, - "c3": 22.915222039589437, - "c4": -20.262172213125382, - "c5": -26.755338674182287, - "c6": 38.403205654475556, - "c7": 18.61367279614882 + "points": { + "c1": 22.056007503488473, + "c2": 17.670387291538518, + "c3": 19.477537566030662, + "c4": 15.373112454091554, + "c5": -32.56604752448239, + "c6": 21.290757585004968, + "c7": 4.767344181781056 }, - "vertexSeeds": { - "c1": 10.055229097139707, - "c2": 10.071654726140858, - "c3": 10.083349748544729, - "c4": 10.071871399333496, - "c5": 10.092000339063523, - "c6": 10.053599336674703, - "c7": 10.079293015101651 + "offsets": { + "c1": 16.86084142394822, + "c2": 14.452149791955526, + "c3": 12.04345815996283, + "c4": 9.634766527970138, + "c5": 7.2260748959780825, + "c6": 4.817383263985388, + "c7": 2.408691631992694 }, "rgb": [77, 76, 132] }, @@ -334185,23 +334185,23 @@ "year": 1795, "resistanceReported": true, "duration": 16848000, - "curveSeeds": { - "c1": -17.104087014248346, - "c2": -26.662504819208905, - "c3": -0.8894085133620777, - "c4": 10.487410067050156, - "c5": 4.517237646944288, - "c6": 23.69674149221629, - "c7": 9.671818567348922 + "points": { + "c1": 9.489618062360691, + "c2": -16.775265810992714, + "c3": 15.065612062818786, + "c4": 23.477270327029885, + "c5": 11.831472621286814, + "c6": 9.896732119931421, + "c7": 3.655590798994332 }, - "vertexSeeds": { - "c1": 5.884115492937097, - "c2": 5.813706107179978, - "c3": 5.864110378683917, - "c4": 5.880809158354177, - "c5": 5.88337720547677, - "c6": 5.8679997124750285, - "c7": 5.803096113086982 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227503, + "c3": 7.027276930189539, + "c4": 5.621821544151668, + "c5": 4.216366158113705, + "c6": 2.810910772075834, + "c7": 1.4054553860378705 }, "rgb": [77, 76, 132] }, @@ -334212,23 +334212,23 @@ "year": 1795, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": 18.859463749521097, - "c2": 24.120111937505442, - "c3": -12.784265371364967, - "c4": -32.63837339040691, - "c5": 1.6572436124542875, - "c6": 32.631410424223986, - "c7": -16.734752483017278 + "points": { + "c1": -42.9404416072353, + "c2": 10.735790560050035, + "c3": -40.829844601069055, + "c4": 13.448977652027686, + "c5": -19.39816155897404, + "c6": 15.837838967239023, + "c7": -29.209403266219773 }, - "vertexSeeds": { - "c1": 5.3736867198884966, - "c2": 5.1110526394443445, - "c3": 5.199985537896653, - "c4": 5.20655827282901, - "c5": 5.295757874879538, - "c6": 5.294899074933881, - "c7": 5.186724832614448 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262141, + "c3": 6.4724919093851225, + "c4": 5.177993527508105, + "c5": 3.8834951456310867, + "c6": 2.5889967637540363, + "c7": 1.2944983818770182 }, "rgb": [222, 0, 59] }, @@ -334239,23 +334239,23 @@ "year": 1795, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 19.434294739880997, - "c2": 21.7534147213508, - "c3": -25.4936497934397, - "c4": -16.122886763534602, - "c5": 22.244466835830792, - "c6": 14.881289234586063, - "c7": 11.550151650731081 + "points": { + "c1": -19.53585782278239, + "c2": -16.673472771104148, + "c3": 4.8913571022947195, + "c4": 3.563676969232894, + "c5": -26.73937026177974, + "c6": 4.314912178648285, + "c7": 11.271823532549874 }, - "vertexSeeds": { - "c1": 4.675157984191609, - "c2": 4.546756242585099, - "c3": 4.460818535222172, - "c4": 4.634396607824674, - "c5": 4.551906317083068, - "c6": 4.539188093597262, - "c7": 4.643984094387619 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733701, + "c3": 5.5940822931114145, + "c4": 4.475265834489146, + "c5": 3.3564493758668585, + "c6": 2.237632917244573, + "c7": 1.1188164586222864 }, "rgb": [222, 0, 59] }, @@ -334266,23 +334266,23 @@ "year": 1795, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 32.39530155773964, - "c2": 37.49697560576615, - "c3": -16.724857132077513, - "c4": 31.19707933966339, - "c5": 29.328817212167664, - "c6": 9.410376078679207, - "c7": -0.9872523296031801 + "points": { + "c1": 42.70546640578763, + "c2": -32.65002390971456, + "c3": 14.335114304116978, + "c4": 42.874652576683516, + "c5": 4.780387572952769, + "c6": 0.3621191668316541, + "c7": -34.74850390831365 }, - "vertexSeeds": { - "c1": 4.305721242478899, - "c2": 4.398849171599552, - "c3": 4.343951082220437, - "c4": 4.637922270816747, - "c5": 4.380503119955933, - "c6": 4.37501984602016, - "c7": 4.276445755328058 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653257, + "c3": 5.547850208044379, + "c4": 4.438280166435512, + "c5": 3.328710124826634, + "c6": 2.219140083217756, + "c7": 1.109570041608878 }, "rgb": [58, 15, 49] }, @@ -334293,23 +334293,23 @@ "year": 1795, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 1.323146177228935, - "c2": 16.253684139950913, - "c3": -21.30713485987803, - "c4": 37.372308330321246, - "c5": 37.85874752021036, - "c6": 7.222605128408581, - "c7": -33.85751840451345 + "points": { + "c1": 25.961338096838034, + "c2": -9.815899691438467, + "c3": 32.655199021421126, + "c4": -23.777524016049625, + "c5": -1.5791296610316436, + "c6": -21.09036443826372, + "c7": -43.164181544681924 }, - "vertexSeeds": { - "c1": 3.076899897580457, - "c2": 3.067689786942946, - "c3": 3.167365690859756, - "c4": 3.057167593293534, - "c5": 3.0743093878872214, - "c6": 3.1200319427528433, - "c7": 3.1409715618501455 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757288, + "c3": 3.883495145631066, + "c4": 3.106796116504859, + "c5": 2.3300970873786366, + "c6": 1.5533980582524296, + "c7": 0.7766990291262225 }, "rgb": [77, 76, 132] }, @@ -334320,23 +334320,23 @@ "year": 1795, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 3.723097238656493, - "c2": -28.007641900979362, - "c3": -22.466064063718648, - "c4": -23.449573325971475, - "c5": -20.45629823096361, - "c6": 39.6035158460783, - "c7": 2.475931891310772 + "points": { + "c1": -21.425717984380384, + "c2": -9.52160224358282, + "c3": -43.41368192746681, + "c4": 38.481947700687904, + "c5": 21.358216084841366, + "c6": -43.0435497218788, + "c7": -32.56492903565488 }, - "vertexSeeds": { - "c1": 6.424111609100172, - "c2": 6.8947042920782415, - "c3": 6.855258357507664, - "c4": 6.633414559332373, - "c5": 6.640569247468716, - "c6": 6.882591356510679, - "c7": 6.9546282740454926 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -334347,23 +334347,23 @@ "year": 1795, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 1.7755086658816381, - "c2": 2.9341318909507237, - "c3": -12.196950805886445, - "c4": 0.6762765672620787, - "c5": 28.917461543360744, - "c6": -0.24489417051399442, - "c7": -19.92238067277637 + "points": { + "c1": -1.8767299884832553, + "c2": 15.468918479701593, + "c3": 19.143664124633418, + "c4": -15.37892148453378, + "c5": -16.96664950783637, + "c6": 35.389074136722414, + "c7": 28.014419215229665 }, - "vertexSeeds": { - "c1": 6.3254598171303735, - "c2": 6.28109830531263, - "c3": 6.2739335359882205, - "c4": 6.247819854772837, - "c5": 6.255925625660067, - "c6": 6.278703872833323, - "c7": 6.298728846069421 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273197, + "c3": 7.628294036061036, + "c4": 6.102635228848799, + "c5": 4.576976421636637, + "c6": 3.0513176144243994, + "c7": 1.5256588072122377 }, "rgb": [222, 0, 59] }, @@ -334374,23 +334374,23 @@ "year": 1795, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 10.070604601970015, - "c2": -1.179925605914633, - "c3": 30.137906508191197, - "c4": 26.05495464686724, - "c5": 9.748845540017573, - "c6": -19.855962662076415, - "c7": 19.57471797075961 + "points": { + "c1": -7.730858441787628, + "c2": -19.522225580896666, + "c3": 22.867071862251372, + "c4": -20.47885780099871, + "c5": 30.196667423988018, + "c6": -1.7712152200387266, + "c7": 7.906007868550951 }, - "vertexSeeds": { - "c1": 6.800343244153573, - "c2": 6.495659575700396, - "c3": 6.63091089114435, - "c4": 6.51124472612579, - "c5": 6.419053966607509, - "c6": 6.659994182938159, - "c7": 6.357507319918981 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -334401,23 +334401,23 @@ "year": 1795, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -8.518342144340114, - "c2": 11.952345919829476, - "c3": -23.98748573723438, - "c4": -22.137548532244878, - "c5": 8.549594334269536, - "c6": -24.819226002304305, - "c7": -7.974390283762908 + "points": { + "c1": -7.348276538002274, + "c2": -8.755776734631805, + "c3": 7.31050423199418, + "c4": 1.3372253215347882, + "c5": -11.752806687748704, + "c6": -5.354185333000668, + "c7": 9.257632733767082 }, - "vertexSeeds": { - "c1": 1.800130295804246, - "c2": 1.8004259017147939, - "c3": 1.7553744723560478, - "c4": 1.705441721879862, - "c5": 1.8884320687064924, - "c6": 1.8138939090766395, - "c7": 1.7483539251568456 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981969, + "c3": 2.2884882108183078, + "c4": 1.8307905686546462, + "c5": 1.3730929264909846, + "c6": 0.9153952843273231, + "c7": 0.45769764216366154 }, "rgb": [58, 15, 49] }, @@ -334428,23 +334428,23 @@ "year": 1795, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -7.4209141112565895, - "c2": 22.78901463863553, - "c3": -2.5793536052433126, - "c4": -7.8896627292098955, - "c5": -35.57438443768425, - "c6": 15.851018344758835, - "c7": 13.608206104304955 + "points": { + "c1": -16.63514899276547, + "c2": 30.646450063335905, + "c3": 22.8393831321171, + "c4": 1.0398592272496856, + "c5": -13.68890734235206, + "c6": 0.07011581879670814, + "c7": 6.6781464951385985 }, - "vertexSeeds": { - "c1": 4.17029595910731, - "c2": 4.179269748605286, - "c3": 3.9146616619494603, - "c4": 4.013881603476321, - "c5": 3.910521075689968, - "c6": 3.922646417128718, - "c7": 4.034632529261318 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.0748959778085965, + "c3": 5.062413314840504, + "c4": 4.049930651872401, + "c5": 3.0374479889042982, + "c6": 2.0249653259361953, + "c7": 1.012482662968103 }, "rgb": [58, 15, 49] }, @@ -334455,23 +334455,23 @@ "year": 1795, "resistanceReported": false, "duration": 2678400, - "curveSeeds": { - "c1": 6.586764408002628, - "c2": -3.6223865820644665, - "c3": 1.8246558310379992, - "c4": 7.271405775834792, - "c5": -8.628054735246327, - "c6": 10.533221091402124, - "c7": -9.290835939218091 + "points": { + "c1": 6.294410864983918, + "c2": 0.9909627471586457, + "c3": -2.8165694260116982, + "c4": 6.60069939842384, + "c5": 3.1767853730924056, + "c6": 3.441992196617049, + "c7": -7.31650580565191 }, - "vertexSeeds": { - "c1": 1.290126969212329, - "c2": 1.2307020152239696, - "c3": 1.1787608480168748, - "c4": 1.386907531766282, - "c5": 1.3171334454540333, - "c6": 1.4152599495572278, - "c7": 1.3229645767079479 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.0527045769764216, + "c3": 1.710587147480351, + "c4": 1.3684697179842804, + "c5": 1.0263522884882101, + "c6": 0.6842348589921395, + "c7": 0.3421174294960691 }, "rgb": [222, 0, 59] }, @@ -334482,23 +334482,23 @@ "year": 1795, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 17.07053038639137, - "c2": -13.632641205043802, - "c3": -14.589847399899634, - "c4": 22.796580043444386, - "c5": -6.57387131160878, - "c6": -14.461019106425335, - "c7": 6.04580639062603 + "points": { + "c1": 21.21938340672272, + "c2": -8.814288652279036, + "c3": 0.7893949072332838, + "c4": 0.5635562463114105, + "c5": 4.017438610724021, + "c6": 22.16696274926896, + "c7": -11.188715563668783 }, - "vertexSeeds": { - "c1": 7.30139161836845, - "c2": 7.201515978904724, - "c3": 7.210373739349464, - "c4": 7.016994061177865, - "c5": 6.974399762817048, - "c6": 7.349223923858215, - "c7": 7.145564398927954 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284314, + "c3": 8.784096162736944, + "c4": 7.027276930189543, + "c5": 5.270457697642173, + "c6": 3.5136384650947714, + "c7": 1.7568192325473697 }, "rgb": [238, 201, 159] }, @@ -334509,23 +334509,23 @@ "year": 1795, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 7.233316938524869, - "c2": -16.544655028366286, - "c3": -5.831204082982985, - "c4": 18.905168776307182, - "c5": -17.724175123687782, - "c6": -9.73340789160234, - "c7": 5.430152352823473 + "points": { + "c1": 30.587776068557535, + "c2": -25.551841028423276, + "c3": -27.11236966104272, + "c4": 4.557847173151092, + "c5": 11.523831504935007, + "c6": 5.887034478686463, + "c7": 1.4903695924260525 }, - "vertexSeeds": { - "c1": 8.36402889580564, - "c2": 8.34114834914565, - "c3": 8.361719128059477, - "c4": 8.35846379686686, - "c5": 8.359438249124315, - "c6": 8.340446558494484, - "c7": 8.33802393995543 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375924, + "c3": 9.986130374480004, + "c4": 7.988904299584082, + "c5": 5.991678224687764, + "c6": 3.9944521497918424, + "c7": 1.9972260748959212 }, "rgb": [58, 15, 49] }, @@ -334536,23 +334536,23 @@ "year": 1795, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 36.62192094501564, - "c2": 9.01103762591017, - "c3": 14.733369070289946, - "c4": -37.951166673650846, - "c5": 38.92131340015995, - "c6": -24.776768931169265, - "c7": -7.205723353741227 + "points": { + "c1": -12.264559764948068, + "c2": -1.6609502635106779, + "c3": -5.644020135045885, + "c4": 35.369321232447966, + "c5": -38.573537732420576, + "c6": 7.337575343560118, + "c7": -17.14935367535957 }, - "vertexSeeds": { - "c1": 9.05696312473655, - "c2": 7.62227974486681, - "c3": 8.431527927513054, - "c4": 8.000538760677516, - "c5": 8.14907031797142, - "c6": 7.820957859129993, - "c7": 7.717476648811991 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.53675450762829, + "c3": 11.280628756356915, + "c4": 9.024503005085528, + "c5": 6.768377253814149, + "c6": 4.512251502542764, + "c7": 2.256125751271377 }, "rgb": [58, 15, 49] }, @@ -334563,23 +334563,23 @@ "year": 1795, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -20.50304105281866, - "c2": -5.987870460632603, - "c3": 3.5693641570787626, - "c4": -10.797826254233435, - "c5": -6.359402937652444, - "c6": -11.778256462215076, - "c7": 9.161409188648246 + "points": { + "c1": 27.31113744165059, + "c2": -0.07994533416506044, + "c3": -9.003086354896332, + "c4": 12.03110971438446, + "c5": 18.72102943408584, + "c6": -8.772894545263732, + "c7": 13.377543472908638 }, - "vertexSeeds": { - "c1": 5.351419825362527, - "c2": 5.343784505626527, - "c3": 5.348928807212302, - "c4": 5.394528256145265, - "c5": 5.4041246660612545, - "c6": 5.369675460268446, - "c7": 5.403502259681116 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302395, + "c3": 6.49560795191862, + "c4": 5.196486361534931, + "c5": 3.897364771151155, + "c6": 2.5982431807674655, + "c7": 1.2991215903836895 }, "rgb": [86, 146, 138] }, @@ -334590,23 +334590,23 @@ "year": 1795, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": 1.543097220631367, - "c2": -13.202112478058744, - "c3": 19.406043725282547, - "c4": 3.934287292994995, - "c5": -15.216361518931452, - "c6": -13.53549386790402, - "c7": -3.89086556895921 + "points": { + "c1": 7.473196191978335, + "c2": -20.522532630936084, + "c3": -16.354639898731442, + "c4": 20.662593635995837, + "c5": -13.323529675363094, + "c6": -3.210410442263548, + "c7": 17.570258645916876 }, - "vertexSeeds": { - "c1": 2.996132528621148, - "c2": 2.936378400997579, - "c3": 2.9673363242736257, - "c4": 3.0585153111428713, - "c5": 2.9041318034277013, - "c6": 2.991951271175407, - "c7": 2.9408353715889843 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [58, 15, 49] }, @@ -334617,23 +334617,23 @@ "year": 1795, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -4.405882215056167, - "c2": -16.28328097567195, - "c3": 22.25793934681064, - "c4": -19.783418713475427, - "c5": -19.070072084866283, - "c6": -0.13907103445396274, - "c7": -12.465253855687902 + "points": { + "c1": 5.028265371396667, + "c2": 13.122892915912129, + "c3": -22.408804054164154, + "c4": 28.75301312557951, + "c5": -24.377258664098246, + "c6": -3.1406014131564035, + "c7": 21.375452270486324 }, - "vertexSeeds": { - "c1": 6.768022991056161, - "c2": 6.660256021647964, - "c3": 6.81170813974561, - "c4": 6.946249042165979, - "c5": 6.602644311428788, - "c6": 6.537839014463177, - "c7": 6.72015446874354 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -334644,23 +334644,23 @@ "year": 1795, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -16.353009586646692, - "c2": 26.312444758072985, - "c3": -23.213952102801855, - "c4": 36.600787499369176, - "c5": -24.7473942561344, - "c6": 36.79590042260861, - "c7": -32.52424805216293 + "points": { + "c1": 2.2909878734263316, + "c2": -27.651697901278922, + "c3": -38.01538346565354, + "c4": -3.609285012518498, + "c5": -38.04740060273187, + "c6": -1.589153288992705, + "c7": 39.20263518381874 }, - "vertexSeeds": { - "c1": 5.75396810798901, - "c2": 5.626770822821891, - "c3": 4.890287403935349, - "c4": 5.598502137825137, - "c5": 5.05485683673208, - "c6": 5.672754083462715, - "c7": 5.1960711162274 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267678, + "c3": 7.050392972723069, + "c4": 5.6403143781784495, + "c5": 4.230235783633841, + "c6": 2.8201571890892225, + "c7": 1.4100785945446137 }, "rgb": [77, 76, 132] }, @@ -334671,23 +334671,23 @@ "year": 1795, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 25.952400353121796, - "c2": -28.077188786326502, - "c3": -22.71385629450582, - "c4": 16.400434631430166, - "c5": 24.293238397331834, - "c6": -19.99098986246492, - "c7": 15.930095683445103 + "points": { + "c1": 9.734720425125623, + "c2": -16.18178862661936, + "c3": 5.452675267578904, + "c4": -25.32148012969696, + "c5": -10.212361205986138, + "c6": 2.814948587790113, + "c7": -33.568778821140256 }, - "vertexSeeds": { - "c1": 2.109010739649259, - "c2": 2.066415784002681, - "c3": 2.075548823638892, - "c4": 2.1261913616562484, - "c5": 2.1632090031393965, - "c6": 2.174948584787634, - "c7": 2.1531220199316716 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [86, 146, 138] }, @@ -334698,23 +334698,23 @@ "year": 1796, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": 8.870886171856931, - "c2": -33.94215443677948, - "c3": -46.11313579676078, - "c4": 4.514793648613384, - "c5": -11.719929271146341, - "c6": -26.321084576711, - "c7": -2.400501939078346 + "points": { + "c1": 34.13223005463795, + "c2": 21.815983707945357, + "c3": 35.61325085038238, + "c4": 13.953364075369272, + "c5": -46.37868573023284, + "c6": -50.3761633657106, + "c7": -6.0305890291564666 }, - "vertexSeeds": { - "c1": 0.660621761658031, - "c2": 0.660621761658031, - "c3": 0.660621761658031, - "c4": 0.660621761658031, - "c5": 0.660621761658031, - "c6": 0.660621761658031, - "c7": 0.660621761658031 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -334725,23 +334725,23 @@ "year": 1796, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 15.724749739143157, - "c2": 43.6580908639996, - "c3": -9.512434904753817, - "c4": -12.338180526347635, - "c5": 25.50941427519077, - "c6": 13.816640247704761, - "c7": -37.83887502504468 + "points": { + "c1": -39.76643960914537, + "c2": 53.029345669285256, + "c3": 6.314321097058752, + "c4": -34.79822843065594, + "c5": 24.032618523510273, + "c6": 15.723825280805748, + "c7": -17.53105384825715 }, - "vertexSeeds": { - "c1": 1.5435138936524324, - "c2": 1.6496742007058536, - "c3": 1.609652591543411, - "c4": 1.613547376711525, - "c5": 1.5757019548017208, - "c6": 1.6038172039234815, - "c7": 1.5784458022431778 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177517, + "c3": 1.8492834026814637, + "c4": 1.4794267221451698, + "c5": 1.1095700416088758, + "c6": 0.7397133610725818, + "c7": 0.369856680536294 }, "rgb": [58, 15, 49] }, @@ -334752,23 +334752,23 @@ "year": 1795, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 23.398964482137657, - "c2": 10.210328651179815, - "c3": 9.155681808824014, - "c4": -35.44738764836672, - "c5": -0.08831018346568698, - "c6": -37.049195621551156, - "c7": -27.473834756111923 + "points": { + "c1": -12.973296193566874, + "c2": 4.490641170465146, + "c3": 24.36977149420518, + "c4": -41.3968867353996, + "c5": 40.9619461130864, + "c6": -14.225166277282696, + "c7": 14.230217865972072 }, - "vertexSeeds": { - "c1": 2.957996835727628, - "c2": 2.906255190175505, - "c3": 2.897319123973537, - "c4": 2.9571658082727676, - "c5": 2.8986840759190184, - "c6": 2.9530310838835248, - "c7": 2.969714561752913 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274615, + "c3": 3.606102635228842, + "c4": 2.8848821081830684, + "c5": 2.1636615811372955, + "c6": 1.4424410540915462, + "c7": 0.7212205270457731 }, "rgb": [222, 0, 59] }, @@ -334779,23 +334779,23 @@ "year": 1795, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 29.788276358156637, - "c2": -17.88637556992027, - "c3": 7.068293803573411, - "c4": 18.81112443780271, - "c5": 21.571211586176645, - "c6": -28.17399792442194, - "c7": -7.413279150787307 + "points": { + "c1": -8.67400783680214, + "c2": 39.60124816946143, + "c3": -1.901903563778717, + "c4": 34.83534883316277, + "c5": -17.224394300363322, + "c6": 2.8914222160449725, + "c7": -27.551127347253363 }, - "vertexSeeds": { - "c1": 0.22790947769790332, - "c2": 0.23961098035756556, - "c3": 0.2438017055391392, - "c4": 0.21692362384947836, - "c5": 0.21489964169515016, - "c6": 0.21623378904456705, - "c7": 0.24546190761137676 + "offsets": { + "c1": 0.45307443365695793, + "c2": 0.3883495145631067, + "c3": 0.3236245954692558, + "c4": 0.25889967637540456, + "c5": 0.19417475728155334, + "c6": 0.1294498381877021, + "c7": 0.06472491909385124 }, "rgb": [238, 201, 159] }, @@ -334806,23 +334806,23 @@ "year": 1796, "resistanceReported": false, "duration": 48988800, - "curveSeeds": { - "c1": 60.85166679681212, - "c2": -56.02401039607359, - "c3": -55.3067604491289, - "c4": 30.26207075670755, - "c5": -31.71095527962121, - "c6": 30.118157921276314, - "c7": 58.75288910545647 + "points": { + "c1": -27.14940554185383, + "c2": -10.746756345058692, + "c3": 62.28847635639916, + "c4": 58.384735552720954, + "c5": -25.20684980066529, + "c6": 60.85664913335464, + "c7": -52.62900714597826 }, - "vertexSeeds": { - "c1": 2.086893881698074, - "c2": 2.3212140591456043, - "c3": 2.2555076374493686, - "c4": 2.3577765870390777, - "c5": 2.1677472404245006, - "c6": 2.0676217000728974, - "c7": 2.156994134803131 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288503, + "c3": 3.0050855293573737, + "c4": 2.4040684234859, + "c5": 1.8030513176144263, + "c6": 1.20203421174295, + "c7": 0.6010171058714762 }, "rgb": [238, 201, 159] }, @@ -334833,23 +334833,23 @@ "year": 1795, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -13.276291634072862, - "c2": -17.4798868883341, - "c3": 7.222849433336908, - "c4": 25.75318929480913, - "c5": -21.571560202114327, - "c6": 20.364049268730053, - "c7": -24.808403671577167 + "points": { + "c1": 13.31859870166818, + "c2": -31.176165153316024, + "c3": -21.089004838838044, + "c4": 3.3077045320775724, + "c5": 29.327097841768435, + "c6": -17.156082560870736, + "c7": -17.749153219942333 }, - "vertexSeeds": { - "c1": 2.062583897691576, - "c2": 2.0420433578384305, - "c3": 1.9780077598796748, - "c4": 2.0754949415651143, - "c5": 2.0635851648194796, - "c6": 1.888966509786494, - "c7": 2.021273328210844 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244114, + "c3": 2.5427646786870066, + "c4": 2.0342117429496063, + "c5": 1.5256588072122057, + "c6": 1.0171058714748011, + "c7": 0.5085529357374006 }, "rgb": [77, 76, 132] }, @@ -334860,23 +334860,23 @@ "year": 1795, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 24.096905459445487, - "c2": -23.961101366747826, - "c3": -19.526387625609146, - "c4": 2.8202511259497527, - "c5": 26.88787897285379, - "c6": 14.105370408972227, - "c7": -14.95417768138373 + "points": { + "c1": 9.362177899704172, + "c2": -23.541310950215433, + "c3": 26.72050156461303, + "c4": 2.0290251218960265, + "c5": -27.30717896712168, + "c6": -16.007742701202865, + "c7": 8.883205602205301 }, - "vertexSeeds": { - "c1": 1.1853535680702834, - "c2": 1.2040049924502794, - "c3": 1.1884821617848629, - "c4": 1.1987493733876482, - "c5": 1.197722040546679, - "c6": 1.1890434704835267, - "c7": 1.1871914200223441 + "offsets": { + "c1": 2.0388349514563107, + "c2": 1.7475728155339743, + "c3": 1.4563106796116525, + "c4": 1.1650485436893163, + "c5": 0.8737864077669945, + "c6": 0.5825242718446582, + "c7": 0.2912621359223218 }, "rgb": [86, 146, 138] }, @@ -334887,23 +334887,23 @@ "year": 1796, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 15.368526191502603, - "c2": -32.753400961458226, - "c3": -37.34199820171822, - "c4": -30.169530109500656, - "c5": -41.54591804852056, - "c6": 40.27163448330484, - "c7": 13.349210694972392 + "points": { + "c1": 12.203648159714284, + "c2": 30.914332881788084, + "c3": 37.89215062590736, + "c4": 6.842881871993356, + "c5": -42.835553916221926, + "c6": 46.830384257394954, + "c7": 24.80980491730341 }, - "vertexSeeds": { - "c1": 9.13157040638719, - "c2": 8.32739760429301, - "c3": 8.589126288047945, - "c4": 8.978266172645686, - "c5": 9.049596418486374, - "c6": 8.726712645127199, - "c7": 7.428333630085832 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.370319001386965, + "c3": 11.141932501155807, + "c4": 8.913546000924642, + "c5": 6.685159500693483, + "c6": 4.456773000462325, + "c7": 2.2283865002311667 }, "rgb": [238, 201, 159] }, @@ -334914,23 +334914,23 @@ "year": 1795, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 8.65328266386286, - "c2": -33.542839024093, - "c3": 33.50830379671007, - "c4": 12.536902255268643, - "c5": -19.16458829124081, - "c6": -34.425735507667035, - "c7": 29.791320866083908 + "points": { + "c1": -11.696465690308308, + "c2": -19.339407939096844, + "c3": -17.61627784708775, + "c4": 11.637644400907313, + "c5": -3.159471527358427, + "c6": -1.4701570676745064, + "c7": -35.92979080049303 }, - "vertexSeeds": { - "c1": 6.272493477990992, - "c2": 6.310364182759382, - "c3": 6.3321454018792895, - "c4": 6.182262641086798, - "c5": 6.345099375453415, - "c6": 6.298358629914009, - "c7": 6.207007860290021 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192798, + "c3": 7.582061950994009, + "c4": 6.065649560795221, + "c5": 4.549237170596365, + "c6": 3.032824780397577, + "c7": 1.5164123901987885 }, "rgb": [238, 201, 159] }, @@ -334941,23 +334941,23 @@ "year": 1795, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 18.541327386503855, - "c2": 19.64632825491852, - "c3": -25.698885755444618, - "c4": 26.775981954330273, - "c5": -22.90869370334538, - "c6": -16.544357255261883, - "c7": -29.29917689513334 + "points": { + "c1": -18.650866430932844, + "c2": 22.240624561093117, + "c3": -19.37137460642412, + "c4": -3.7645113155123653, + "c5": 14.460091478283342, + "c6": 24.76948976326425, + "c7": 21.488640415866588 }, - "vertexSeeds": { - "c1": 8.490948160670321, - "c2": 8.083387332479287, - "c3": 8.038664752733816, - "c4": 8.301099759223732, - "c5": 8.338714665054088, - "c6": 8.446244496782423, - "c7": 8.04146108192492 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938965, + "c3": 10.309754969949148, + "c4": 8.24780397595931, + "c5": 6.185852981969494, + "c6": 4.123901987979655, + "c7": 2.061950993989816 }, "rgb": [77, 76, 132] }, @@ -334968,23 +334968,23 @@ "year": 1795, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 9.063956905945524, - "c2": 3.9359007054268105, - "c3": -14.255090401562692, - "c4": 27.01307667754839, - "c5": -22.559826182376128, - "c6": 13.99987365137197, - "c7": 20.915143470958576 + "points": { + "c1": -8.736415913769257, + "c2": -0.2454717621432465, + "c3": -20.040761560980982, + "c4": -22.564990091035078, + "c5": 7.575510377960363, + "c6": 13.17550409749937, + "c7": 19.82679013926783 }, - "vertexSeeds": { - "c1": 7.921471149759797, - "c2": 7.994638292355831, - "c3": 7.835024545865055, - "c4": 7.94620387990244, - "c5": 7.989419709564524, - "c6": 7.931861031270735, - "c7": 7.834493459870107 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732297, + "c3": 9.616273693943606, + "c4": 7.693018955154865, + "c5": 5.769764216366173, + "c6": 3.8465094775774324, + "c7": 1.9232547387887415 }, "rgb": [58, 15, 49] }, @@ -334995,23 +334995,23 @@ "year": 1795, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -10.113170412535212, - "c2": 27.799992840045462, - "c3": -16.93874574657268, - "c4": -16.3491317081372, - "c5": -8.8027553791914, - "c6": 11.195089319751851, - "c7": 21.329560588147814 + "points": { + "c1": -29.104527897507626, + "c2": -12.779774376459809, + "c3": 27.597923043201547, + "c4": -2.5740811968432666, + "c5": 3.122376925626149, + "c6": -16.39210342381208, + "c7": 21.951446487757543 }, - "vertexSeeds": { - "c1": 8.461898700617468, - "c2": 8.11482220123851, - "c3": 8.361103082638797, - "c4": 8.138271522008345, - "c5": 8.191354414469856, - "c6": 8.388639068808882, - "c7": 8.095298682643195 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.23300970873786, + "c3": 10.194174757281544, + "c4": 8.155339805825246, + "c5": 6.11650485436893, + "c6": 4.077669902912615, + "c7": 2.038834951456315 }, "rgb": [86, 146, 138] }, @@ -335022,23 +335022,23 @@ "year": 1795, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -14.898764249827265, - "c2": -16.092189181538686, - "c3": 14.414397687808226, - "c4": -15.500897628894199, - "c5": 16.93809061189645, - "c6": -19.632014791513438, - "c7": -27.49814762125142 + "points": { + "c1": -24.047349028045176, + "c2": -9.230380706885427, + "c3": -1.5814555092013762, + "c4": 19.36889462210589, + "c5": -21.665993674478685, + "c6": 4.65756287514774, + "c7": 7.379576297195932 }, - "vertexSeeds": { - "c1": 6.641781613507689, - "c2": 6.509576238407411, - "c3": 6.633055400582317, - "c4": 6.524048618533125, - "c5": 6.457593351236338, - "c6": 6.646735751580143, - "c7": 6.805595550632651 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -335049,23 +335049,23 @@ "year": 1795, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 1.1743880132141697, - "c2": 25.859337821982443, - "c3": -13.932353115954637, - "c4": -37.58929512068286, - "c5": -26.33413287827161, - "c6": 5.664796495820056, - "c7": 0.8853720748763152 + "points": { + "c1": -10.498601344851895, + "c2": -31.241533918171847, + "c3": 22.338302721147222, + "c4": 2.084863545798143, + "c5": -0.31167586789963764, + "c6": -14.292853005503861, + "c7": -11.772717293166469 }, - "vertexSeeds": { - "c1": 10.395190585375763, - "c2": 10.537896771027786, - "c3": 10.40366355681006, - "c4": 10.39002693914514, - "c5": 10.497214451167064, - "c6": 10.36486119254915, - "c7": 10.54042606484576 + "offsets": { + "c1": 17.637540453074433, + "c2": 15.117891816920968, + "c3": 12.598243180767502, + "c4": 10.07859454461404, + "c5": 7.558945908460394, + "c6": 5.0392972723069285, + "c7": 2.5196486361534642 }, "rgb": [77, 76, 132] }, @@ -335076,23 +335076,23 @@ "year": 1795, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -8.004167686290867, - "c2": 19.818813323892172, - "c3": 17.696763908349865, - "c4": -6.575582669469551, - "c5": -10.840341654289919, - "c6": 8.91650006319857, - "c7": -15.656121707416881 + "points": { + "c1": 9.296602046176247, + "c2": -5.164840954073448, + "c3": -13.047441272004324, + "c4": -2.7821985051924187, + "c5": -13.540714162811998, + "c6": 17.702983766199736, + "c7": -26.50856278166237 }, - "vertexSeeds": { - "c1": 6.0029070104808815, - "c2": 5.8705187609456315, - "c3": 6.144704049614994, - "c4": 6.1203121495540325, - "c5": 5.799974667665749, - "c6": 5.644388346712855, - "c7": 5.836842704252815 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790579, + "c3": 7.350901525658805, + "c4": 5.880721220527053, + "c5": 4.410540915395279, + "c6": 2.9403606102635265, + "c7": 1.4701803051317524 }, "rgb": [58, 15, 49] }, @@ -335103,23 +335103,23 @@ "year": 1796, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 9.315215356095969, - "c2": 12.406283182267813, - "c3": -20.600357370550075, - "c4": -5.335611434966204, - "c5": 24.215350034930267, - "c6": -27.859241856368385, - "c7": 6.622082461727871 + "points": { + "c1": 5.538118420020481, + "c2": -13.553355791335562, + "c3": 20.34406007210322, + "c4": -9.325476692196212, + "c5": 13.786644317150525, + "c6": -10.020415880961984, + "c7": -23.510753547627246 }, - "vertexSeeds": { - "c1": 6.954852413762687, - "c2": 6.942991610844018, - "c3": 6.973184861513931, - "c4": 6.941771008721174, - "c5": 6.918896822385841, - "c6": 6.967349052765589, - "c7": 6.94814823445827 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479826, + "c3": 8.321775312066668, + "c4": 6.657420249653291, + "c5": 4.993065187239913, + "c6": 3.328710124826535, + "c7": 1.6643550624133778 }, "rgb": [58, 15, 49] }, @@ -335130,23 +335130,23 @@ "year": 1795, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -21.610556954901483, - "c2": 8.93631891526504, - "c3": -32.47655199302673, - "c4": -21.48333812460026, - "c5": 35.709193080197295, - "c6": 5.159130187560891, - "c7": -16.825028201414927 + "points": { + "c1": 16.252914664872904, + "c2": -28.96789652459956, + "c3": 19.771406245285696, + "c4": 31.416424919395666, + "c5": 33.268407193685036, + "c6": -7.41913689874767, + "c7": -6.650140067175322 }, - "vertexSeeds": { - "c1": 4.497800236368782, - "c2": 4.400771479244379, - "c3": 4.548394388547192, - "c4": 4.580796103080778, - "c5": 4.616914509342257, - "c6": 4.610971609272869, - "c7": 4.459254732643989 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653253, + "c3": 5.547850208044384, + "c4": 4.4382801664355025, + "c5": 3.328710124826633, + "c6": 2.2191400832177512, + "c7": 1.1095700416088694 }, "rgb": [77, 76, 132] }, @@ -335157,23 +335157,23 @@ "year": 1795, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -19.223768116668566, - "c2": 1.8884033849515482, - "c3": -9.420767582872976, - "c4": 18.075844500493584, - "c5": -25.034459543670003, - "c6": 24.309205468739744, - "c7": 0.8106631629808092 + "points": { + "c1": -7.109464205533186, + "c2": -18.494897897472928, + "c3": 27.04846156298908, + "c4": 28.041460691958843, + "c5": 6.6545515301870175, + "c6": 25.04636536273573, + "c7": 8.162937036165214 }, - "vertexSeeds": { - "c1": 4.071972609526002, - "c2": 4.198998309765205, - "c3": 3.892758699679136, - "c4": 3.890683396573265, - "c5": 4.163647544200198, - "c6": 4.047230556402824, - "c7": 4.47143255360787 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613037, + "c3": 5.524734165510864, + "c4": 4.419787332408691, + "c5": 3.3148404993065186, + "c6": 2.2098936662043456, + "c7": 1.1049468331021728 }, "rgb": [222, 0, 59] }, @@ -335184,23 +335184,23 @@ "year": 1796, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 3.6744744968896157, - "c2": 15.014917235434176, - "c3": -10.806164358636991, - "c4": -20.19942622949369, - "c5": -32.91801277177364, - "c6": -39.26945870883014, - "c7": -30.153036259293657 + "points": { + "c1": -11.580435626931546, + "c2": 30.507067513892174, + "c3": -28.846571755699422, + "c4": -19.983771056732813, + "c5": 4.0576339699806425, + "c6": -35.36385352063731, + "c7": -33.475396875202435 }, - "vertexSeeds": { - "c1": 8.214999796844829, - "c2": 8.20090957867338, - "c3": 8.212638293800033, - "c4": 8.213672560007927, - "c5": 8.209980065226151, - "c6": 8.204830480666066, - "c7": 8.212383532457231 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441053758, + "c3": 9.801202034211855, + "c4": 7.840961627369172, + "c5": 5.880721220527269, + "c6": 3.920480813684586, + "c7": 1.9602404068426829 }, "rgb": [222, 0, 59] }, @@ -335211,23 +335211,23 @@ "year": 1795, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -2.506457698518929, - "c2": -0.6940347919774261, - "c3": -10.15830395908021, - "c4": 11.63558371355748, - "c5": -23.360238028247515, - "c6": 5.79093477384729, - "c7": 27.84350699111105 + "points": { + "c1": 0.2310654579689313, + "c2": 8.978455844627504, + "c3": 2.8883119968815194, + "c4": -12.15435557454401, + "c5": 29.704181631644673, + "c6": -3.262411051073581, + "c7": -5.5300744811249345 }, - "vertexSeeds": { - "c1": 9.383782905498347, - "c2": 9.33160235998377, - "c3": 9.460635758319274, - "c4": 9.458645543203149, - "c5": 9.004586694883102, - "c6": 8.687517784614437, - "c7": 8.849899238791625 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789181, + "c3": 11.373092926490985, + "c4": 9.098474341192787, + "c5": 6.8238557558945905, + "c6": 4.549237170596394, + "c7": 2.274618585298197 }, "rgb": [238, 201, 159] }, @@ -335238,23 +335238,23 @@ "year": 1795, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": 0.6235562466490236, - "c2": 21.616517197665964, - "c3": 9.123609647813083, - "c4": 13.335582550543982, - "c5": -16.227755923368903, - "c6": -21.884006940894416, - "c7": -9.786427576634168 + "points": { + "c1": -8.030950889248803, + "c2": 3.6008893070979333, + "c3": 17.14776892956447, + "c4": 23.08540923474959, + "c5": -4.104030284614886, + "c6": 9.190602832403549, + "c7": 5.968996694088183 }, - "vertexSeeds": { - "c1": 4.203804182937463, - "c2": 4.21860577027736, - "c3": 4.298159695346485, - "c4": 4.285126897209852, - "c5": 4.053656568552778, - "c6": 4.1112751239122645, - "c7": 4.051285230855663 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049936, + "c3": 5.201109570041607, + "c4": 4.160887656033291, + "c5": 3.1206657420249617, + "c6": 2.0804438280166453, + "c7": 1.0402219140083164 }, "rgb": [86, 146, 138] }, @@ -335265,23 +335265,23 @@ "year": 1795, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 4.915400643975534, - "c2": 25.802067896390472, - "c3": -21.448593684739087, - "c4": -7.012795086812908, - "c5": 12.168616670594101, - "c6": 5.3669647038281205, - "c7": -2.4385230198805345 + "points": { + "c1": -1.1797332076919815, + "c2": 9.522884928140794, + "c3": -7.8101456722650475, + "c4": 21.887024817399432, + "c5": -27.62995648134226, + "c6": -27.722428848410367, + "c7": -19.17476960437437 }, - "vertexSeeds": { - "c1": 8.074137047264674, - "c2": 8.066224390981755, - "c3": 8.08416314422482, - "c4": 8.122084210094961, - "c5": 8.074949975713087, - "c6": 8.031866021548995, - "c7": 8.045746075497002 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893202, + "c3": 9.70873786407767, + "c4": 7.766990291262135, + "c5": 5.825242718446601, + "c6": 3.8834951456310676, + "c7": 1.9417475728155338 }, "rgb": [86, 146, 138] }, @@ -335292,23 +335292,23 @@ "year": 1795, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -5.951140347437764, - "c2": 12.323729914166439, - "c3": -1.5437477471495846, - "c4": -17.962566313338836, - "c5": -3.5487766654861517, - "c6": -14.16519285407561, - "c7": -0.073692028473058 + "points": { + "c1": 14.002127485558756, + "c2": -20.26085630991084, + "c3": 18.48881744063986, + "c4": -7.59571610665262, + "c5": 11.80460849819411, + "c6": 19.921074772545087, + "c7": -20.66014918186579 }, - "vertexSeeds": { - "c1": 8.51064995201195, - "c2": 8.595843188364766, - "c3": 8.557105794028057, - "c4": 8.503132595395593, - "c5": 8.480003274565238, - "c6": 8.594098715222145, - "c7": 8.445897949762127 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858551, + "c3": 10.263522884882075, + "c4": 8.210818307905676, + "c5": 6.1581137309292755, + "c6": 4.105409153952801, + "c7": 2.0527045769764003 }, "rgb": [86, 146, 138] }, @@ -335319,23 +335319,23 @@ "year": 1796, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 11.133477244114246, - "c2": -1.9609189639072753, - "c3": 20.929580214768315, - "c4": 12.842887398556634, - "c5": -27.225942468653805, - "c6": -20.13017817013936, - "c7": -25.279366305644302 + "points": { + "c1": 24.262862372816862, + "c2": -26.833612067919308, + "c3": -13.341916422385268, + "c4": 40.0741178636326, + "c5": -44.28390456433414, + "c6": -26.69024267377267, + "c7": -41.44648442814456 }, - "vertexSeeds": { - "c1": 7.4615276587885075, - "c2": 7.407254560137391, - "c3": 7.976801568638477, - "c4": 7.825657544178657, - "c5": 7.592163345642378, - "c6": 7.868597962226965, - "c7": 7.83440054413818 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692087, + "c3": 9.593157651410065, + "c4": 7.674526121128064, + "c5": 5.755894590846044, + "c6": 3.8372630605640223, + "c7": 1.9186315302820214 }, "rgb": [238, 201, 159] }, @@ -335346,23 +335346,23 @@ "year": 1795, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -26.956384469878884, - "c2": 1.9222260239309854, - "c3": -19.050786019332534, - "c4": -15.630544068439, - "c5": -30.423627597504748, - "c6": 2.516130697162094, - "c7": 21.262273753882315 + "points": { + "c1": 13.988255101092236, + "c2": -4.424952487016089, + "c3": -12.517169173522845, + "c4": -9.551407542720568, + "c5": -22.25026714822174, + "c6": -30.280469999843806, + "c7": 27.176014255029948 }, - "vertexSeeds": { - "c1": 2.81001022139969, - "c2": 2.6695601088670053, - "c3": 2.711373909161942, - "c4": 2.709082762347581, - "c5": 2.803784282674878, - "c6": 2.779551807422795, - "c7": 2.791746284843691 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.049930651872406, + "c3": 3.3749422098936646, + "c4": 2.6999537679149372, + "c5": 2.024965325936196, + "c6": 1.3499768839574686, + "c7": 0.6749884419787274 }, "rgb": [58, 15, 49] }, @@ -335373,23 +335373,23 @@ "year": 1795, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -3.3014569213166176, - "c2": -4.818130257973287, - "c3": 11.120247449093075, - "c4": 8.23118132299658, - "c5": 1.6764545723036157, - "c6": -20.04704336045362, - "c7": 17.208942040774996 + "points": { + "c1": 24.371112026173034, + "c2": 4.048362249678391, + "c3": -14.356390350946741, + "c4": -18.640743281662488, + "c5": -14.630291834120106, + "c6": 2.617679714339417, + "c7": -18.896940853134396 }, - "vertexSeeds": { - "c1": 9.389614119646545, - "c2": 9.397271385104089, - "c3": 9.406030967111686, - "c4": 9.400265671064272, - "c5": 9.407560560462912, - "c6": 9.40015481968211, - "c7": 9.397367031895625 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547913, + "c3": 11.234396671290002, + "c4": 8.987517337032092, + "c5": 6.740638002773733, + "c6": 4.493758668515822, + "c7": 2.246879334257911 }, "rgb": [238, 201, 159] }, @@ -335400,23 +335400,23 @@ "year": 1796, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 11.268878636188305, - "c2": -11.058195644791066, - "c3": 12.230941771339097, - "c4": 18.809815863161823, - "c5": -3.268680487211924, - "c6": -21.92032208667533, - "c7": 0.8403035181043137 + "points": { + "c1": -37.1743245782118, + "c2": -11.21252031207052, + "c3": -28.177531765235067, + "c4": -21.874225456976024, + "c5": 12.626536750927784, + "c6": -34.23741119357323, + "c7": 14.732514114826834 }, - "vertexSeeds": { - "c1": 5.641281115006824, - "c2": 5.639810399822547, - "c3": 5.646372887324842, - "c4": 5.645925712906776, - "c5": 5.649540683272714, - "c6": 5.642510368907906, - "c7": 5.651321449343354 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.09986130374457, + "c3": 6.74988441978741, + "c4": 5.399907535829713, + "c5": 4.049930651872553, + "c6": 2.6999537679148564, + "c7": 1.3499768839576967 }, "rgb": [238, 201, 159] }, @@ -335427,23 +335427,23 @@ "year": 1795, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -3.5602410203830104, - "c2": -19.162770650563203, - "c3": -1.711237308662323, - "c4": 8.582785153535696, - "c5": 16.199637540598687, - "c6": -22.902321219504927, - "c7": 8.739970904386091 + "points": { + "c1": -4.383042009931994, + "c2": -3.3356900941718983, + "c3": 9.140771252737252, + "c4": -12.407240147365767, + "c5": -13.872940446928945, + "c6": -0.4132885712967216, + "c7": -24.27202096945391 }, - "vertexSeeds": { - "c1": 0.7577720207253886, - "c2": 0.7577720207253886, - "c3": 0.7577720207253886, - "c4": 0.7577720207253886, - "c5": 0.7577720207253886, - "c6": 0.7577720207253886, - "c7": 0.7577720207253886 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -335454,23 +335454,23 @@ "year": 1796, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 14.631373419034944, - "c2": -9.573029938226355, - "c3": -35.5345376917365, - "c4": -2.8676189513924157, - "c5": 5.7704821656580805, - "c6": -42.5428581667393, - "c7": -41.75222940936423 + "points": { + "c1": 10.12186172026069, + "c2": -22.89517880744104, + "c3": -46.85081550300391, + "c4": 26.80025143372579, + "c5": 10.657394541386182, + "c6": -32.25071072418487, + "c7": -20.693153150928033 }, - "vertexSeeds": { - "c1": 9.075795834531199, - "c2": 9.087285917470908, - "c3": 9.101980117283507, - "c4": 9.125599810338015, - "c5": 9.088678566470502, - "c6": 9.109543964302253, - "c7": 9.163687082287227 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024942, + "c3": 10.93388811835409, + "c4": 8.747110494683236, + "c5": 6.560332871012558, + "c6": 4.373555247341706, + "c7": 2.186777623670853 }, "rgb": [222, 0, 59] }, @@ -335481,23 +335481,23 @@ "year": 1796, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 18.624876465529205, - "c2": 20.290784432769357, - "c3": 19.160658942861275, - "c4": -25.461429439390322, - "c5": 28.208237607771082, - "c6": -31.844924422049704, - "c7": -30.42605751167329 + "points": { + "c1": 5.972313387475047, + "c2": 27.143280056992793, + "c3": -4.801861192667282, + "c4": -25.0151902298211, + "c5": 12.917034512716576, + "c6": 9.186132769584162, + "c7": 33.49997533665717 }, - "vertexSeeds": { - "c1": 6.830762179182335, - "c2": 6.811561594282294, - "c3": 6.806349883166638, - "c4": 6.811671170494487, - "c5": 7.052092214526791, - "c6": 6.910394050504485, - "c7": 6.970636863891356 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680987, + "c3": 8.437355524734183, + "c4": 6.749884419787339, + "c5": 5.0624133148404935, + "c6": 3.374942209893689, + "c7": 1.6874711049468445 }, "rgb": [222, 0, 59] }, @@ -335508,23 +335508,23 @@ "year": 1795, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": 18.257900696034806, - "c2": -9.351603893946278, - "c3": -18.270183283633287, - "c4": 18.48473066902665, - "c5": 19.069403205477396, - "c6": 15.338577258060344, - "c7": 3.5432243225880633 + "points": { + "c1": 6.806409909728245, + "c2": 13.25838425613772, + "c3": -13.718131024331935, + "c4": 19.82283386949207, + "c5": -8.020729907629342, + "c6": 7.5295554765969825, + "c7": -16.881493453247575 }, - "vertexSeeds": { - "c1": 0.9523929687529287, - "c2": 0.9580336026021448, - "c3": 0.9416617561784207, - "c4": 0.9562290283614882, - "c5": 0.9869854431227146, - "c6": 0.9661111474777223, - "c7": 0.9715544108499462 + "offsets": { + "c1": 1.6828478964401297, + "c2": 1.4424410540915384, + "c3": 1.2020342117429514, + "c4": 0.9616273693943603, + "c5": 0.7212205270457692, + "c6": 0.4808136846971782, + "c7": 0.2404068423485911 }, "rgb": [77, 76, 132] }, @@ -335535,23 +335535,23 @@ "year": 1795, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 19.62895189549645, - "c2": -20.943422048534547, - "c3": -27.40558148106587, - "c4": 25.803714970679273, - "c5": 1.7636612488132002, - "c6": -20.438117764597415, - "c7": 27.517330412334765 + "points": { + "c1": 20.231477937871205, + "c2": 3.6076255150924723, + "c3": 15.853230413191568, + "c4": -17.289962656650356, + "c5": -4.05855915992478, + "c6": 14.173007478530792, + "c7": -18.20224645915866 }, - "vertexSeeds": { - "c1": 4.447744343080613, - "c2": 4.412306110183018, - "c3": 4.489349367582304, - "c4": 4.423428987056913, - "c5": 4.520992473878614, - "c6": 4.406891992014309, - "c7": 4.519358167615833 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411932, + "c3": 5.4091539528432815, + "c4": 4.32732316227463, + "c5": 3.2454923717059523, + "c6": 2.1636615811373017, + "c7": 1.0818307905686508 }, "rgb": [222, 0, 59] }, @@ -335562,23 +335562,23 @@ "year": 1796, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -25.4456684842618, - "c2": -25.025795363159048, - "c3": 22.288210218922337, - "c4": -17.91158811176036, - "c5": 21.278207055893425, - "c6": 7.15120381988708, - "c7": 0.3597615266851619 + "points": { + "c1": -3.6218481933799787, + "c2": 27.16076581293484, + "c3": 4.4620054048293625, + "c4": 19.893067816270047, + "c5": 18.121403875889477, + "c6": 12.178838030297158, + "c7": 3.2708234418520306 }, - "vertexSeeds": { - "c1": 2.1564500707509837, - "c2": 2.0429121301221675, - "c3": 2.1128228740553445, - "c4": 2.024649265052393, - "c5": 2.0935147209982654, - "c6": 2.092921079670442, - "c7": 2.1380617535337514 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [238, 201, 159] }, @@ -335589,23 +335589,23 @@ "year": 1796, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 6.721844871058508, - "c2": 22.50939361045075, - "c3": -17.284719267582087, - "c4": 1.9680075733634013, - "c5": -4.696631202591334, - "c6": 3.4315292209506936, - "c7": -5.522159063999233 + "points": { + "c1": 13.243188049312955, + "c2": 39.860199003709845, + "c3": 37.35218633364227, + "c4": -11.634052722124242, + "c5": 2.02051338239788, + "c6": 15.002598091609691, + "c7": -22.29436495686029 }, - "vertexSeeds": { - "c1": 2.3998217531034443, - "c2": 2.551941123883997, - "c3": 2.5796221586430157, - "c4": 2.4309169443168748, - "c5": 2.393409948899188, - "c6": 2.49929234584717, - "c7": 2.526019216372647 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104067, + "c3": 3.166897827092002, + "c4": 2.533518261673606, + "c5": 1.9001386962552012, + "c6": 1.2667591308368007, + "c7": 0.6333795654184003 }, "rgb": [86, 146, 138] }, @@ -335616,23 +335616,23 @@ "year": 1796, "resistanceReported": false, "duration": 48643200, - "curveSeeds": { - "c1": 3.2741569615095187, - "c2": -43.43051604737809, - "c3": 16.08165956353581, - "c4": -27.35559775279267, - "c5": 11.524483380907043, - "c6": -54.13663792377526, - "c7": -30.99036827906216 + "points": { + "c1": -6.708861465789191, + "c2": 38.931861084182216, + "c3": 43.404596565364656, + "c4": -49.8407695620512, + "c5": 2.7773336496327374, + "c6": -19.340772886578712, + "c7": 52.30878026480845 }, - "vertexSeeds": { - "c1": 8.159825438565493, - "c2": 8.421317963578325, - "c3": 8.099039678160084, - "c4": 8.15472782277981, - "c5": 8.311366364062547, - "c6": 8.695631658812097, - "c7": 8.558954686994106 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059634, + "c3": 10.37910309754971, + "c4": 8.303282478039762, + "c5": 6.227461858529817, + "c6": 4.151641239019871, + "c7": 2.0758206195099462 }, "rgb": [77, 76, 132] }, @@ -335643,23 +335643,23 @@ "year": 1796, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -17.69403488733318, - "c2": -20.300825708802293, - "c3": -15.363319718142353, - "c4": -34.987993147907325, - "c5": 22.505873371319673, - "c6": 29.368068827210394, - "c7": 5.0852653113723605 + "points": { + "c1": 27.281973186137748, + "c2": -1.7587264238281506, + "c3": 7.156370063874384, + "c4": 28.325513727706237, + "c5": 18.43815175105844, + "c6": -32.99172341798477, + "c7": -31.59599374781318 }, - "vertexSeeds": { - "c1": 4.4161446078522415, - "c2": 4.582466648541598, - "c3": 4.727222509888464, - "c4": 4.42996733367411, - "c5": 4.735232085732588, - "c6": 4.570613402961872, - "c7": 4.671407648126884 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.8238557558945905, + "c3": 5.6865464632454925, + "c4": 4.549237170596394, + "c5": 3.4119278779472952, + "c6": 2.274618585298197, + "c7": 1.1373092926490984 }, "rgb": [86, 146, 138] }, @@ -335670,23 +335670,23 @@ "year": 1795, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -11.211090622460436, - "c2": 27.359442853080225, - "c3": -25.915371858629463, - "c4": -25.341505129834186, - "c5": -16.495948193157155, - "c6": -15.917919259678527, - "c7": -22.391367224519083 + "points": { + "c1": -6.736886021648747, + "c2": -3.3552539068183087, + "c3": -21.547898430894477, + "c4": -20.162197582960182, + "c5": -8.468146904473947, + "c6": -26.300316443282675, + "c7": -16.90178705146999 }, - "vertexSeeds": { - "c1": 1.445705348186533, - "c2": 1.511992968570289, - "c3": 1.4637177848054979, - "c4": 1.5194703106992744, - "c5": 1.3235379179632523, - "c6": 1.4021866618761518, - "c7": 1.4009586691079412 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.918631530282017, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128072, + "c7": 0.38372630605640484 }, "rgb": [58, 15, 49] }, @@ -335697,23 +335697,23 @@ "year": 1796, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 32.085705391506444, - "c2": -25.229793531129395, - "c3": 24.73028413283211, - "c4": -1.9225815409905351, - "c5": -11.72295836829279, - "c6": -2.785918789960938, - "c7": -20.72992169577096 + "points": { + "c1": 26.533418164297707, + "c2": -10.014317303348697, + "c3": -2.490388831423239, + "c4": 32.91548607590699, + "c5": -3.321064235032516, + "c6": -38.441129295451894, + "c7": -13.83017362081446 }, - "vertexSeeds": { - "c1": 7.7409289201570415, - "c2": 7.440344699354181, - "c3": 7.765517229174647, - "c4": 7.704687623543084, - "c5": 7.639428318157282, - "c6": 7.450485014021462, - "c7": 7.497210314159922 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249645, + "c3": 9.33888118354139, + "c4": 7.4711049468331066, + "c5": 5.603328710124822, + "c6": 3.7355524734165377, + "c7": 1.8677762367082846 }, "rgb": [77, 76, 132] }, @@ -335724,23 +335724,23 @@ "year": 1796, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -9.10003809855186, - "c2": 32.22596327121741, - "c3": -16.24292441144155, - "c4": 11.749140439604957, - "c5": -5.926325767833909, - "c6": 10.216342613143702, - "c7": 34.062672787539455 + "points": { + "c1": -5.942503345428705, + "c2": 0.3559642853440579, + "c3": -2.814704549193415, + "c4": 24.720018615635354, + "c5": -24.162381565584553, + "c6": 5.412286443280301, + "c7": 3.0536789735144936 }, - "vertexSeeds": { - "c1": 2.388236749492839, - "c2": 2.4088257510723583, - "c3": 2.4759211136549983, - "c4": 2.4576696797858837, - "c5": 2.390707754850781, - "c6": 2.391732937026408, - "c7": 2.503803301202012 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495196, + "c3": 3.074433656957927, + "c4": 2.4595469255663467, + "c5": 1.8446601941747598, + "c6": 1.2297734627831733, + "c7": 0.6148867313915867 }, "rgb": [86, 146, 138] }, @@ -335751,23 +335751,23 @@ "year": 1796, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 29.645216293366236, - "c2": 11.98888820872973, - "c3": -25.323340746943607, - "c4": 9.06419441268805, - "c5": -16.954841195889564, - "c6": -29.637347355031537, - "c7": -4.907044631646173 + "points": { + "c1": -13.255776867789127, + "c2": -29.362027209981918, + "c3": -14.345241059944279, + "c4": 3.1770260001834174, + "c5": 3.391788136008458, + "c6": -20.37406939381478, + "c7": -27.465448737359363 }, - "vertexSeeds": { - "c1": 3.8126947838217307, - "c2": 3.849783184052256, - "c3": 3.857827223946877, - "c4": 3.865409662727898, - "c5": 3.8604755529582775, - "c6": 3.8571080674207114, - "c7": 3.8651741926224177 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044409, + "c3": 4.6232085067036435, + "c4": 3.6985668053629395, + "c5": 2.7739251040221737, + "c6": 1.8492834026814697, + "c7": 0.9246417013407041 }, "rgb": [58, 15, 49] }, @@ -335778,23 +335778,23 @@ "year": 1796, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -30.23319261737911, - "c2": -26.62072012759659, - "c3": 10.830022227959748, - "c4": 10.540079245091572, - "c5": 12.055310340535325, - "c6": 9.007357395235193, - "c7": -9.22038461719307 + "points": { + "c1": -0.5655982064751583, + "c2": -19.66389497025129, + "c3": -9.34088675616114, + "c4": -15.879878985312246, + "c5": 27.868949063140654, + "c6": 20.648884062173828, + "c7": 15.756838070827207 }, - "vertexSeeds": { - "c1": 9.217755142623753, - "c2": 8.55057085255129, - "c3": 9.10539566200722, - "c4": 9.293634511625044, - "c5": 8.600208408963152, - "c6": 8.910814651396528, - "c7": 9.097532425585026 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507624, + "c3": 11.211280628756349, + "c4": 8.96902450300509, + "c5": 6.726768377253812, + "c6": 4.484512251502536, + "c7": 2.242256125751276 }, "rgb": [222, 0, 59] }, @@ -335805,23 +335805,23 @@ "year": 1796, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -21.836891792330466, - "c2": 6.078653410549318, - "c3": -10.756831959455358, - "c4": 8.959097140932965, - "c5": 4.553528819902734, - "c6": 20.962890028488328, - "c7": -26.691894638569682 + "points": { + "c1": 0.9286227341809905, + "c2": 15.806840083280452, + "c3": 24.52737857225141, + "c4": 27.091585951513235, + "c5": -27.773616310219115, + "c6": 26.713832165897333, + "c7": -1.9384364983258315 }, - "vertexSeeds": { - "c1": 8.193517897361778, - "c2": 8.177917954702679, - "c3": 8.198236631772703, - "c4": 8.164225874949766, - "c5": 8.173728057347422, - "c6": 8.182975086938326, - "c7": 8.179735098428592 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013927, + "c3": 9.778085991678337, + "c4": 7.822468793342748, + "c5": 5.866851595006769, + "c6": 3.9112343966711793, + "c7": 1.9556171983355897 }, "rgb": [238, 201, 159] }, @@ -335832,23 +335832,23 @@ "year": 1797, "resistanceReported": false, "duration": 49939200, - "curveSeeds": { - "c1": -33.00630835211942, - "c2": 62.11468754274047, - "c3": 42.49429864283749, - "c4": 9.706743367005942, - "c5": -62.34278567263591, - "c6": 35.17119836370199, - "c7": -9.772755007753787 + "points": { + "c1": 55.27553898054818, + "c2": 17.6886027449643, + "c3": -40.26855230358248, + "c4": -5.953695239528287, + "c5": -8.006153837615678, + "c6": 26.64344229729643, + "c7": -54.424903666453424 }, - "vertexSeeds": { - "c1": 1.345290213837292, - "c2": 1.5216745680135864, - "c3": 1.3797006070920586, - "c4": 1.3552602740750006, - "c5": 1.5187748746965029, - "c6": 1.5140835217549533, - "c7": 1.4751268820152899 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [58, 15, 49] }, @@ -335859,23 +335859,23 @@ "year": 1796, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 23.20976129020608, - "c2": -22.795216215507985, - "c3": -33.87768530232843, - "c4": 38.11925545971003, - "c5": -3.400675204583834, - "c6": -38.7321392599578, - "c7": -28.290828995775414 + "points": { + "c1": -7.685779834080201, + "c2": -34.255317468089956, + "c3": 34.1764483003564, + "c4": 15.999127183150712, + "c5": -3.2166692616398507, + "c6": 31.590830355189325, + "c7": -36.95156270343861 }, - "vertexSeeds": { - "c1": 1.1829716520145268, - "c2": 1.3061865131481876, - "c3": 1.3622575368603729, - "c4": 1.2260381388847694, - "c5": 1.3642518545081592, - "c6": 1.3809487301040886, - "c7": 1.303318301341097 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.0527045769764216, + "c3": 1.710587147480351, + "c4": 1.3684697179842804, + "c5": 1.0263522884882101, + "c6": 0.6842348589921395, + "c7": 0.3421174294960691 }, "rgb": [77, 76, 132] }, @@ -335886,23 +335886,23 @@ "year": 1796, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 19.571300601205692, - "c2": 0.9218863463517053, - "c3": 0.3479676398236293, - "c4": -19.80506993453532, - "c5": -7.108798166585892, - "c6": 24.368013040885806, - "c7": -8.724504672452507 + "points": { + "c1": 5.58438947326286, + "c2": 28.902478683384352, + "c3": 20.91706430853936, + "c4": 24.81601428073926, + "c5": -3.2584749738473597, + "c6": 7.128053953889058, + "c7": 5.9326777241786814 }, - "vertexSeeds": { - "c1": 5.8530320373222295, - "c2": 5.88851813211097, - "c3": 5.81172033763433, - "c4": 5.845692113808067, - "c5": 5.886314044490719, - "c6": 5.839049772593327, - "c7": 5.810270640229973 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267723, + "c3": 7.050392972723056, + "c4": 5.640314378178482, + "c5": 4.230235783633815, + "c6": 2.820157189089241, + "c7": 1.4100785945445737 }, "rgb": [58, 15, 49] }, @@ -335913,23 +335913,23 @@ "year": 1796, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 2.4543576473331328, - "c2": 5.267001157834223, - "c3": 34.89070438417761, - "c4": 9.764908767836587, - "c5": 2.78224002843654, - "c6": -27.428401106386463, - "c7": 9.818058729860397 + "points": { + "c1": -11.844925592887932, + "c2": -22.825138334488855, + "c3": 25.332135445530653, + "c4": -40.097131659221425, + "c5": 20.123261560885737, + "c6": 8.19743741243429, + "c7": -24.15954556426384 }, - "vertexSeeds": { - "c1": 2.7274929139759987, - "c2": 2.7218504334393474, - "c3": 2.7186080421968217, - "c4": 2.7747445422872903, - "c5": 2.7520351533723937, - "c6": 2.7501462238345913, - "c7": 2.786834433685253 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.07766990291262, + "c3": 3.3980582524271843, + "c4": 2.7184466019417473, + "c5": 2.03883495145631, + "c6": 1.3592233009708736, + "c7": 0.6796116504854368 }, "rgb": [222, 0, 59] }, @@ -335940,23 +335940,23 @@ "year": 1796, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 3.2993364943840007, - "c2": -27.8311934096255, - "c3": -35.08064400481507, - "c4": 20.178739213240966, - "c5": 35.486137782021906, - "c6": -42.02944991800676, - "c7": 26.641505110523504 + "points": { + "c1": 18.730050166147777, + "c2": 9.060220062102744, + "c3": 12.647444849760987, + "c4": 22.815260839939945, + "c5": 29.535476577378468, + "c6": 19.77446554068154, + "c7": -13.687089919676023 }, - "vertexSeeds": { - "c1": 10.575843173524882, - "c2": 10.746663894126563, - "c3": 10.66489734289463, - "c4": 10.206795291300363, - "c5": 10.753440581783208, - "c6": 10.26115561420588, - "c7": 10.286972701172424 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403624, + "c3": 12.875635691169665, + "c4": 10.30050855293575, + "c5": 7.72538141470179, + "c6": 5.150254276467875, + "c7": 2.5751271382339156 }, "rgb": [86, 146, 138] }, @@ -335967,23 +335967,23 @@ "year": 1796, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -33.363914264336, - "c2": -4.3095260554742865, - "c3": 4.991958971177205, - "c4": -44.72765163371394, - "c5": 33.36254900317205, - "c6": 23.104437068378587, - "c7": 0.3864372992610825 + "points": { + "c1": 43.974094226674964, + "c2": -7.9762490092569465, + "c3": -22.5882879724644, + "c4": -23.399479820591207, + "c5": 38.499495250640464, + "c6": -12.146690743450051, + "c7": 11.434067516716453 }, - "vertexSeeds": { - "c1": 7.46132143936879, - "c2": 7.487116407108392, - "c3": 7.476869830070417, - "c4": 7.546859805328097, - "c5": 7.55623069857847, - "c6": 7.429353879856412, - "c7": 7.512674233224152 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686545, + "c3": 9.015256588072122, + "c4": 7.212205270457697, + "c5": 5.409153952843273, + "c6": 3.6061026352288486, + "c7": 1.8030513176144243 }, "rgb": [238, 201, 159] }, @@ -335994,23 +335994,23 @@ "year": 1796, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 10.730912185521255, - "c2": 30.023419622164084, - "c3": -13.801806797946284, - "c4": 4.113548166402971, - "c5": -2.3945927401778633, - "c6": 14.058351952307419, - "c7": 11.322676816389539 + "points": { + "c1": -5.483893387182391, + "c2": -5.130026296424063, + "c3": -8.79884896686778, + "c4": 17.539301793621426, + "c5": -14.122574234209736, + "c6": 4.664094295960318, + "c7": -22.09387655097021 }, - "vertexSeeds": { - "c1": 4.2359697288556, - "c2": 4.254519031025517, - "c3": 4.288245841266825, - "c4": 4.247023317086432, - "c5": 4.238684797172066, - "c6": 4.264892546115521, - "c7": 4.256238592649857 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929293, + "c3": 5.131761442441044, + "c4": 4.105409153952863, + "c5": 3.079056865464613, + "c6": 2.0527045769764314, + "c7": 1.0263522884882497 }, "rgb": [86, 146, 138] }, @@ -336021,23 +336021,23 @@ "year": 1796, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 22.50845252105561, - "c2": 22.480891555063096, - "c3": -15.355897513446607, - "c4": 31.916000238945784, - "c5": -21.55332037558627, - "c6": -28.819680757002033, - "c7": 10.134517503381765 + "points": { + "c1": 36.72603599184812, + "c2": -8.851726487765923, + "c3": 39.18305550875401, + "c4": 35.90054376258081, + "c5": 29.054460000696622, + "c6": -15.78636110475312, + "c7": 37.46587705485838 }, - "vertexSeeds": { - "c1": 0.9909326424870466, - "c2": 0.9909326424870466, - "c3": 0.9909326424870466, - "c4": 0.9909326424870466, - "c5": 0.9909326424870466, - "c6": 0.9909326424870466, - "c7": 0.9909326424870466 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -336048,23 +336048,23 @@ "year": 1796, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 18.157220941967665, - "c2": -24.063802551821738, - "c3": 12.088418769511783, - "c4": 6.641028376346675, - "c5": 10.523360062960428, - "c6": -21.682585626036648, - "c7": -2.8380199128561756 + "points": { + "c1": 29.356454887897563, + "c2": -9.538142235583365, + "c3": -3.786140350618016, + "c4": -12.16624637661742, + "c5": -11.469582665962832, + "c6": 8.659860239131277, + "c7": -28.384604422019333 }, - "vertexSeeds": { - "c1": 9.964246207971733, - "c2": 10.094243082017277, - "c3": 10.149261227229697, - "c4": 9.81675106082482, - "c5": 10.009712091736802, - "c6": 9.965319559583214, - "c7": 10.24716446358869 + "offsets": { + "c1": 17.57281553398058, + "c2": 15.062413314840505, + "c3": 12.552011095700427, + "c4": 10.041608876560352, + "c5": 7.53120665742023, + "c6": 5.020804438280176, + "c7": 2.510402219140077 }, "rgb": [238, 201, 159] }, @@ -336075,23 +336075,23 @@ "year": 1796, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 14.743761500827063, - "c2": -27.066294432391487, - "c3": -15.676986859259742, - "c4": -4.767635671313403, - "c5": -16.906652336676164, - "c6": -13.556687083932623, - "c7": -11.971058493565756 + "points": { + "c1": 10.909670478731769, + "c2": 18.951853242738217, + "c3": -6.093872489223298, + "c4": -20.918937805094046, + "c5": 20.67612473276744, + "c6": 18.306923530404596, + "c7": -27.2087564821614 }, - "vertexSeeds": { - "c1": 8.630172080065647, - "c2": 8.304613102605337, - "c3": 8.511963656336377, - "c4": 8.446917235323294, - "c5": 8.846343723063683, - "c6": 8.591639585173455, - "c7": 8.813278439657568 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381409, + "c3": 10.564031437817855, + "c4": 8.45122515025428, + "c5": 6.3384188626907045, + "c6": 4.225612575127151, + "c7": 2.1128062875635756 }, "rgb": [222, 0, 59] }, @@ -336102,23 +336102,23 @@ "year": 1796, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -11.971321819428649, - "c2": 30.613237461708678, - "c3": 18.596880845573565, - "c4": 5.490559243771095, - "c5": -33.63783231810499, - "c6": -21.7239379718869, - "c7": -4.9314573323561035 + "points": { + "c1": 23.960372881530745, + "c2": 13.524822268405515, + "c3": -21.717496878074776, + "c4": -29.55275287293435, + "c5": 10.685866713579706, + "c6": -3.6740583845324863, + "c7": 35.75919219385467 }, - "vertexSeeds": { - "c1": 7.743764946084246, - "c2": 7.714483897942262, - "c3": 7.770692646122928, - "c4": 7.769357236604226, - "c5": 7.796375192922419, - "c6": 7.778339652116653, - "c7": 7.737888171076337 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249707, + "c3": 9.33888118354136, + "c4": 7.4711049468331385, + "c5": 5.603328710124791, + "c6": 3.7355524734165693, + "c7": 1.8677762367082225 }, "rgb": [77, 76, 132] }, @@ -336129,23 +336129,23 @@ "year": 1796, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 10.841692555526123, - "c2": -27.206642013560465, - "c3": 0.6923660308433277, - "c4": -17.899980556956034, - "c5": -15.916592684485073, - "c6": 18.872405783258422, - "c7": 3.115465930511803 + "points": { + "c1": -1.280538546207712, + "c2": 0.6355783984489243, + "c3": -2.998374581491092, + "c4": 21.284752696641576, + "c5": 28.45303047666011, + "c6": 9.996374708115816, + "c7": 29.04953789281405 }, - "vertexSeeds": { - "c1": 6.810421999966894, - "c2": 6.893721331004647, - "c3": 6.981858916338948, - "c4": 6.808795640086296, - "c5": 6.961027677535786, - "c6": 6.953565962754972, - "c7": 6.989359005059855 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761449, + "c3": 8.483587609801214, + "c4": 6.78687008784098, + "c5": 5.090152565880703, + "c6": 3.393435043920469, + "c7": 1.6967175219602344 }, "rgb": [238, 201, 159] }, @@ -336156,23 +336156,23 @@ "year": 1796, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 6.514355171230704, - "c2": -24.128403665484278, - "c3": 11.235788249588044, - "c4": 8.171348620430333, - "c5": 2.0811375425287153, - "c6": -13.316849029421459, - "c7": 3.6739915012090947 + "points": { + "c1": -22.76878122473288, + "c2": -19.60506100935127, + "c3": 13.089790083735497, + "c4": -5.133955977392823, + "c5": 9.719730010157793, + "c6": -21.646610984592837, + "c7": 7.346568028843176 }, - "vertexSeeds": { - "c1": 4.4617427052895176, - "c2": 4.775198759246573, - "c3": 4.5438218813342885, - "c4": 4.784461533190895, - "c5": 4.633154299617052, - "c6": 4.7441809816635825, - "c7": 4.456441882149623 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015257, + "c3": 5.755894590846048, + "c4": 4.604715672676838, + "c5": 3.4535367545076285, + "c6": 2.302357836338419, + "c7": 1.1511789181692096 }, "rgb": [77, 76, 132] }, @@ -336183,23 +336183,23 @@ "year": 1796, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -18.627912860173215, - "c2": 17.023947460577524, - "c3": 21.923847747826876, - "c4": 6.0123252862286485, - "c5": -9.73932313015161, - "c6": 15.814383685549089, - "c7": -24.760580451608025 + "points": { + "c1": -10.866838841053529, + "c2": -17.772406502195047, + "c3": 4.414126192222692, + "c4": -26.828895484640668, + "c5": 17.29394531779549, + "c6": -13.51091422892107, + "c7": -7.734581961720565 }, - "vertexSeeds": { - "c1": 10.400103967135697, - "c2": 10.379257716617987, - "c3": 10.400763496416856, - "c4": 10.353182895675022, - "c5": 10.329904041799788, - "c6": 10.379822696483297, - "c7": 10.293119050965144 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.923717059639463, + "c3": 12.43643088303272, + "c4": 9.949144706426226, + "c5": 7.4618585298197315, + "c6": 4.974572353213237, + "c7": 2.4872861766064944 }, "rgb": [238, 201, 159] }, @@ -336210,23 +336210,23 @@ "year": 1796, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 42.83623450527642, - "c2": 14.106086256276974, - "c3": 26.524417784319056, - "c4": 26.2834334798127, - "c5": 41.37957258716624, - "c6": -35.26135431692659, - "c7": -13.256100662732244 + "points": { + "c1": 38.241113043364834, + "c2": -35.68307688759154, + "c3": 15.660791990253863, + "c4": 24.69703245431448, + "c5": -26.106507029336317, + "c6": 26.842267817217035, + "c7": -19.87319410962292 }, - "vertexSeeds": { - "c1": 6.357083934277512, - "c2": 6.4652104582056555, - "c3": 6.4920438629146675, - "c4": 6.431328511110273, - "c5": 6.3876222858644995, - "c6": 6.385700494746291, - "c7": 6.382846584971356 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554795, + "c3": 7.790106333795673, + "c4": 6.232085067036553, + "c5": 4.674063800277431, + "c6": 3.116042533518242, + "c7": 1.558021266759121 }, "rgb": [238, 201, 159] }, @@ -336237,23 +336237,23 @@ "year": 1796, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 19.60888530887216, - "c2": 23.63085070283074, - "c3": 27.706503607334724, - "c4": -25.63302123211203, - "c5": 11.758763936565558, - "c6": 16.57105466296722, - "c7": -0.9567451306915657 + "points": { + "c1": 10.23115021962036, + "c2": -13.30671613214085, + "c3": 5.0492075017895885, + "c4": -33.769193233296754, + "c5": 9.197975622478452, + "c6": -9.510732652623233, + "c7": 0.9104411630693221 }, - "vertexSeeds": { - "c1": 3.8038620369497385, - "c2": 3.7892782010365806, - "c3": 3.7931791688460716, - "c4": 3.8050622718631426, - "c5": 3.8062870100083117, - "c6": 3.806994633915192, - "c7": 3.7937794725253156 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923743, + "c3": 4.55386037910315, + "c4": 3.643088303282556, + "c5": 2.732316227461781, + "c6": 1.8215441516411874, + "c7": 0.9107720758205937 }, "rgb": [77, 76, 132] }, @@ -336264,23 +336264,23 @@ "year": 1796, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -25.713411770278015, - "c2": -9.118793795078979, - "c3": 6.6813568233311535, - "c4": 8.236167885674543, - "c5": -7.824670937290215, - "c6": -9.423757367969962, - "c7": -23.784732858464615 + "points": { + "c1": 25.09980034609219, + "c2": -15.265111089753416, + "c3": -28.053691847368885, + "c4": 5.713058995289291, + "c5": -7.088280790850504, + "c6": 24.608518356329025, + "c7": -29.341295578522274 }, - "vertexSeeds": { - "c1": 4.795133262521022, - "c2": 4.817050337454569, - "c3": 4.843580972364826, - "c4": 4.786168646387419, - "c5": 4.840129042595475, - "c6": 4.7943934494595934, - "c7": 4.829622707735031 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095677, + "c3": 5.802126675913093, + "c4": 4.641701340730451, + "c5": 3.4812760055478673, + "c6": 2.3208506703652256, + "c7": 1.160425335182584 }, "rgb": [238, 201, 159] }, @@ -336291,23 +336291,23 @@ "year": 1796, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -15.445520269626797, - "c2": -12.778573995993408, - "c3": 15.086088719052064, - "c4": -28.50683276366436, - "c5": 28.225502459238854, - "c6": 7.524297582229863, - "c7": -9.866692253591157 + "points": { + "c1": 9.839922439684372, + "c2": 25.89850550997803, + "c3": 16.115536974493565, + "c4": 35.23921888935965, + "c5": 3.943860224903844, + "c6": -0.24409124872845211, + "c7": -22.489319525300516 }, - "vertexSeeds": { - "c1": 5.798431842602505, - "c2": 5.808175847444982, - "c3": 5.795753490402234, - "c4": 5.801088683049836, - "c5": 5.805798426409005, - "c6": 5.793014921865584, - "c7": 5.804399814737537 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066338, + "c3": 6.934812760055557, + "c4": 5.547850208044225, + "c5": 4.160887656033444, + "c6": 2.7739251040221125, + "c7": 1.386962552011332 }, "rgb": [86, 146, 138] }, @@ -336318,23 +336318,23 @@ "year": 1796, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 22.053558416141286, - "c2": 13.073319800643318, - "c3": 14.82006460265648, - "c4": -21.11790328032563, - "c5": -25.15692016183612, - "c6": -10.760091419427269, - "c7": -0.032909373688251975 + "points": { + "c1": 23.464684320810363, + "c2": -0.33900132296288277, + "c3": 5.326121343635656, + "c4": 3.7839420744882943, + "c5": 25.424383620604928, + "c6": 26.380357852345938, + "c7": -17.0393021450973 }, - "vertexSeeds": { - "c1": 5.362694300518134, - "c2": 5.362694300518134, - "c3": 5.362694300518134, - "c4": 5.362694300518134, - "c5": 5.362694300518134, - "c6": 5.362694300518134, - "c7": 5.362694300518134 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -336345,23 +336345,23 @@ "year": 1796, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 1.4809262857266106, - "c2": -32.61425950342664, - "c3": 41.13915929000283, - "c4": -8.663741762226124, - "c5": -27.119639701205593, - "c6": 6.809938446117812, - "c7": -45.42705806460144 + "points": { + "c1": -23.642673191009404, + "c2": 45.357362063690424, + "c3": -48.86009260393446, + "c4": 54.568531849749725, + "c5": -14.397106457099468, + "c6": -45.50683403283089, + "c7": -19.428855534194177 }, - "vertexSeeds": { - "c1": 3.4645843501287987, - "c2": 3.462744360796459, - "c3": 3.4667156136614854, - "c4": 3.463438619091488, - "c5": 3.4663058199036287, - "c6": 3.4778830945967507, - "c7": 3.47376122140205 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239968, + "c3": 4.160887656033334, + "c4": 3.3287101248267006, + "c5": 2.4965325936199014, + "c6": 1.6643550624132675, + "c7": 0.8321775312066337 }, "rgb": [238, 201, 159] }, @@ -336372,23 +336372,23 @@ "year": 1796, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -25.923009235058718, - "c2": -20.56247846002821, - "c3": -38.014234676676004, - "c4": 30.970229555060108, - "c5": 43.381550676215845, - "c6": 36.61280933163078, - "c7": -3.691368665627884 + "points": { + "c1": 47.38526717516891, + "c2": -27.14638044766239, + "c3": -4.597305804338923, + "c4": -14.04968607480572, + "c5": 14.840857113222405, + "c6": -40.87286596404821, + "c7": -42.87626334419609 }, - "vertexSeeds": { - "c1": 6.905027109276232, - "c2": 6.680967505978443, - "c3": 6.64736582882563, - "c4": 6.37169866467121, - "c5": 6.8235826326906786, - "c6": 6.933245602298562, - "c7": 6.6731487933959235 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -336399,23 +336399,23 @@ "year": 1796, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -14.974350907389308, - "c2": -23.166123537636803, - "c3": 19.05700539549194, - "c4": 3.9444669765623743, - "c5": -7.0341859078348, - "c6": -3.960673355721905, - "c7": 12.677968306223555 + "points": { + "c1": -25.890793820053155, + "c2": -1.423577665024343, + "c3": 7.070260822616696, + "c4": -5.081396650510847, + "c5": 18.06024809121554, + "c6": -13.952886754533674, + "c7": 15.68033152068174 }, - "vertexSeeds": { - "c1": 3.1219682750855102, - "c2": 3.057892729873499, - "c3": 3.0615983062598264, - "c4": 3.0919048394382465, - "c5": 3.118084938857933, - "c6": 3.0571126004875913, - "c7": 3.1120283956344745 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515935, + "c3": 3.744798890429964, + "c4": 2.995839112343956, + "c5": 2.246879334257986, + "c6": 1.497919556171978, + "c7": 0.7489597780859705 }, "rgb": [222, 0, 59] }, @@ -336426,23 +336426,23 @@ "year": 1796, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 4.080400709531759, - "c2": 5.99783278349819, - "c3": -6.800415034164349, - "c4": -28.678690971556996, - "c5": -31.697750443729177, - "c6": 12.94497807572202, - "c7": -8.067811078961906 + "points": { + "c1": -1.6228072586536513, + "c2": -14.451266913392118, + "c3": 5.03955083234149, + "c4": 15.478087066176862, + "c5": 30.570066703666797, + "c6": 33.561356084227256, + "c7": -19.530186675500246 }, - "vertexSeeds": { - "c1": 6.698995028815702, - "c2": 6.91809921807826, - "c3": 6.941958982483795, - "c4": 6.9111587496943425, - "c5": 6.792637463865464, - "c6": 6.887655570571797, - "c7": 6.587205901734743 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -336453,23 +336453,23 @@ "year": 1796, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 18.67946586875425, - "c2": 18.445873736905938, - "c3": 7.291566642064009, - "c4": -23.892766069090516, - "c5": -4.466715475175583, - "c6": -21.046324723025975, - "c7": -13.970218462994966 + "points": { + "c1": -12.213385293773989, + "c2": -0.5317095501789773, + "c3": 4.379176446951018, + "c4": -16.197550582158904, + "c5": -8.01197896779286, + "c6": -2.567013188971405, + "c7": -19.6006470021793 }, - "vertexSeeds": { - "c1": 4.205385925384265, - "c2": 4.409981058684902, - "c3": 4.520998366814308, - "c4": 4.527647101513761, - "c5": 4.443108560552985, - "c6": 4.2542056608479095, - "c7": 4.529720271285228 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.5742024965325925, + "c3": 5.478502080443825, + "c4": 4.382801664355069, + "c5": 3.2871012482663016, + "c6": 2.1914008321775347, + "c7": 1.0957004160887673 }, "rgb": [222, 0, 59] }, @@ -336480,23 +336480,23 @@ "year": 1796, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -7.317026331584852, - "c2": 13.992594660217637, - "c3": 29.57240643893491, - "c4": 15.044681272864995, - "c5": -10.261498683077146, - "c6": -17.777762375161856, - "c7": 26.519176054960287 + "points": { + "c1": -0.9679245674369241, + "c2": -29.814154297437987, + "c3": 24.6746008710694, + "c4": -7.482203513839689, + "c5": -10.104195146801317, + "c6": 23.62170100006746, + "c7": 24.83393065622866 }, - "vertexSeeds": { - "c1": 6.960321333318114, - "c2": 6.927003731837803, - "c3": 6.878594359463464, - "c4": 6.8635772849355625, - "c5": 6.894323651142689, - "c6": 6.910455110168547, - "c7": 6.937390353798456 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520076, + "c3": 8.344891354600104, + "c4": 6.675913083680051, + "c5": 5.006934812760079, + "c6": 3.3379565418400254, + "c7": 1.6689782709200542 }, "rgb": [58, 15, 49] }, @@ -336507,23 +336507,23 @@ "year": 1796, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -29.13373695161012, - "c2": 16.113451520933456, - "c3": 25.142080452572042, - "c4": 0.5746800936071175, - "c5": 1.5694978409984977, - "c6": -18.292160236760395, - "c7": 18.059887272224262 + "points": { + "c1": -27.945696846024408, + "c2": 21.891376381721585, + "c3": 21.445414595122607, + "c4": -2.5298447694605244, + "c5": 15.955088080927304, + "c6": 28.347614975159523, + "c7": 30.724023426152243 }, - "vertexSeeds": { - "c1": 3.720617591858354, - "c2": 3.523774306478592, - "c3": 3.589981734866483, - "c4": 3.6463953627027874, - "c5": 3.6675383209246597, - "c6": 3.4955967895029065, - "c7": 3.6820807161732154 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.35367545076283, + "c3": 4.461396208969025, + "c4": 3.5691169671752196, + "c5": 2.676837725381415, + "c6": 1.7845584835876098, + "c7": 0.8922792417938049 }, "rgb": [222, 0, 59] }, @@ -336534,23 +336534,23 @@ "year": 1796, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": -9.358044138786358, - "c2": -19.38782830680271, - "c3": 8.527613433574242, - "c4": -10.647928270812145, - "c5": -4.556280096714875, - "c6": 11.856859202480145, - "c7": 15.33591879272479 + "points": { + "c1": -2.407504868707342, + "c2": 5.809625513265605, + "c3": -12.673606463024004, + "c4": 10.899623912607645, + "c5": -13.543208431333147, + "c6": 3.5069109251756565, + "c7": 4.101929543619509 }, - "vertexSeeds": { - "c1": 7.824543631679682, - "c2": 7.813723120174094, - "c3": 7.8185695812090845, - "c4": 7.887610741219911, - "c5": 7.801189683701407, - "c6": 7.892976783142603, - "c7": 7.858047375383464 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410541, + "c3": 9.431345353675452, + "c4": 7.545076282940361, + "c5": 5.658807212205271, + "c6": 3.7725381414701804, + "c7": 1.8862690707350902 }, "rgb": [222, 0, 59] }, @@ -336561,23 +336561,23 @@ "year": 1796, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -30.01716105947204, - "c2": 32.0446269242283, - "c3": -19.90821451243593, - "c4": -14.016573523957621, - "c5": -21.45208417944364, - "c6": -0.3522394144398078, - "c7": 2.8898818619093802 + "points": { + "c1": -25.207817930039816, + "c2": 30.94086850659791, + "c3": -1.1508241136044077, + "c4": 15.091214146154414, + "c5": 37.81337999084718, + "c6": -29.846042422256488, + "c7": -36.451905518722725 }, - "vertexSeeds": { - "c1": 3.8949456102174937, - "c2": 3.8938477324817997, - "c3": 4.220917338723396, - "c4": 4.021055765092775, - "c5": 4.432698253738637, - "c6": 3.8744637225687315, - "c7": 4.3679999844620205 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331483, + "c3": 5.362921867776237, + "c4": 4.290337494220989, + "c5": 3.2177531206657415, + "c6": 2.1451687471104943, + "c7": 1.0725843735552472 }, "rgb": [238, 201, 159] }, @@ -336588,23 +336588,23 @@ "year": 1796, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -32.39994843629941, - "c2": -25.096698471661647, - "c3": -35.026741312002905, - "c4": 34.62260330328294, - "c5": 31.861769473279708, - "c6": 30.702027692096465, - "c7": -20.514789214242935 + "points": { + "c1": -27.032734072798895, + "c2": 23.182083591727768, + "c3": 30.973509118768405, + "c4": 23.601643231663395, + "c5": 18.955411299734074, + "c6": 29.597883164119395, + "c7": -32.91080167804491 }, - "vertexSeeds": { - "c1": 4.449481865284974, - "c2": 4.449481865284974, - "c3": 4.449481865284974, - "c4": 4.449481865284974, - "c5": 4.449481865284974, - "c6": 4.449481865284974, - "c7": 4.449481865284974 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -336615,23 +336615,23 @@ "year": 1796, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -15.111099183029932, - "c2": -12.80463870431726, - "c3": 14.948433982393496, - "c4": 5.266022589273128, - "c5": -33.36792488727849, - "c6": -9.916966727500295, - "c7": -18.639461146566056 + "points": { + "c1": -0.6947600727878438, + "c2": 3.3846060623321748, + "c3": -22.06191170838011, + "c4": 14.68885464570591, + "c5": 35.26817337884775, + "c6": -29.53772851084882, + "c7": 8.119540908114537 }, - "vertexSeeds": { - "c1": 6.213032906566692, - "c2": 6.163741848221235, - "c3": 6.152991353361839, - "c4": 6.208439325661494, - "c5": 6.187076158681566, - "c6": 6.218757285148928, - "c7": 6.194971790082438 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951467, + "c3": 7.443365695792899, + "c4": 5.954692556634333, + "c5": 4.4660194174757, + "c6": 2.9773462783171336, + "c7": 1.4886731391585668 }, "rgb": [86, 146, 138] }, @@ -336642,23 +336642,23 @@ "year": 1796, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -24.087244679175686, - "c2": -8.218215431241024, - "c3": 16.30412743760641, - "c4": 19.053882001733655, - "c5": -17.81370527016686, - "c6": 26.198617534147196, - "c7": -6.783345061263454 + "points": { + "c1": -28.073408909706483, + "c2": 0.21507637835629367, + "c3": 11.2140760348802, + "c4": 35.5435205750359, + "c5": -14.595021984810405, + "c6": -8.03204649342872, + "c7": 5.613332467511057 }, - "vertexSeeds": { - "c1": 4.257561297385364, - "c2": 4.323277619719247, - "c3": 4.260076206298785, - "c4": 4.696394436857792, - "c5": 4.302114441011363, - "c6": 4.576166517536389, - "c7": 4.64856999173759 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814151, + "c3": 5.640314378178455, + "c4": 4.512251502542767, + "c5": 3.3841886269070707, + "c6": 2.2561257512713837, + "c7": 1.1280628756356967 }, "rgb": [222, 0, 59] }, @@ -336669,23 +336669,23 @@ "year": 1796, "resistanceReported": true, "duration": 17107200, - "curveSeeds": { - "c1": 19.89596807768021, - "c2": -25.444102388277592, - "c3": 12.990694056045406, - "c4": 21.911783366468484, - "c5": -23.46753918718094, - "c6": 22.352697997086473, - "c7": 5.574735215128925 + "points": { + "c1": -11.489477810674249, + "c2": 6.9095506475490325, + "c3": 11.912675569240001, + "c4": -13.874890157742566, + "c5": -26.51861435127092, + "c6": -3.5352102585010385, + "c7": 26.442496545182593 }, - "vertexSeeds": { - "c1": 2.0012953367875648, - "c2": 2.0012953367875648, - "c3": 2.0012953367875648, - "c4": 2.0012953367875648, - "c5": 2.0012953367875648, - "c6": 2.0012953367875648, - "c7": 2.0012953367875648 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -336696,23 +336696,23 @@ "year": 1796, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -6.030755715816781, - "c2": -18.5199658687824, - "c3": 3.843566171025447, - "c4": -4.614203175315552, - "c5": -5.088957430006687, - "c6": -10.352975165184787, - "c7": 14.011946553302291 + "points": { + "c1": -4.678264163989713, + "c2": 12.842881957299266, + "c3": -11.487974339250727, + "c4": 25.858390874594473, + "c5": -27.943507996895775, + "c6": 3.7450580682641252, + "c7": 8.105107177866348 }, - "vertexSeeds": { - "c1": 6.946112955018034, - "c2": 6.528464890600517, - "c3": 6.661796978773397, - "c4": 6.65203525478254, - "c5": 6.850546555471094, - "c6": 6.906227956590191, - "c7": 6.523334313971277 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -336723,23 +336723,23 @@ "year": 1796, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -0.9728302339927062, - "c2": -16.48223793602542, - "c3": 2.185131324538144, - "c4": -18.227734917634507, - "c5": -14.762593415656884, - "c6": 8.206068948642926, - "c7": 13.880797702436848 + "points": { + "c1": -11.30898398098731, + "c2": 18.555736905000014, + "c3": 2.1769557444525383, + "c4": 10.548307489026573, + "c5": 24.298899946544257, + "c6": 4.139524394962546, + "c7": -29.744655462652503 }, - "vertexSeeds": { - "c1": 7.0574661783810795, - "c2": 6.592678574109795, - "c3": 6.836425768845096, - "c4": 6.885116632358831, - "c5": 6.65480481836225, - "c6": 6.870226234325564, - "c7": 6.868003482445289 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922324, + "c3": 8.576051779935284, + "c4": 6.860841423948224, + "c5": 5.145631067961162, + "c6": 3.4304207119741004, + "c7": 1.7152103559870613 }, "rgb": [58, 15, 49] }, @@ -336750,23 +336750,23 @@ "year": 1796, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -32.06603133754878, - "c2": 23.260535153064737, - "c3": 16.960330306825412, - "c4": -19.802400028072174, - "c5": -14.766991581100662, - "c6": 6.870522606208468, - "c7": -30.99362237680249 + "points": { + "c1": 4.204771910725327, + "c2": 25.099966949158087, + "c3": -5.188133876777382, + "c4": -8.231660053836439, + "c5": 22.098678602274305, + "c6": 28.707018923167553, + "c7": 2.925316609467693 }, - "vertexSeeds": { - "c1": 3.748782878830976, - "c2": 3.7510630116595647, - "c3": 3.7689210762399137, - "c4": 3.759977292800082, - "c5": 3.7657766045154974, - "c6": 3.7582315260458743, - "c7": 3.7450890006321877 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843298, + "c3": 4.507628294036023, + "c4": 3.606102635228836, + "c5": 2.704576976421649, + "c6": 1.8030513176143732, + "c7": 0.9015256588071866 }, "rgb": [86, 146, 138] }, @@ -336777,23 +336777,23 @@ "year": 1797, "resistanceReported": false, "duration": 48988800, - "curveSeeds": { - "c1": 45.42815755101997, - "c2": -62.38383064364869, - "c3": -62.777927760909705, - "c4": -59.663367214173576, - "c5": -43.67325124991831, - "c6": -6.770120078457445, - "c7": 25.917202879876548 + "points": { + "c1": -7.577488823777152, + "c2": -23.933476987904207, + "c3": 10.160157363256772, + "c4": -50.67633002039669, + "c5": 25.934144074545273, + "c6": 59.28229361897738, + "c7": 63.44979602662991 }, - "vertexSeeds": { - "c1": 2.6383707036366046, - "c2": 2.629574905964881, - "c3": 2.5463846278943567, - "c4": 2.5813870233368803, - "c5": 2.6371113384968825, - "c6": 2.6185606925215192, - "c7": 2.6746182712940314 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.8557558945908514, + "c3": 3.2131299121590366, + "c4": 2.5705039297272347, + "c5": 1.9278779472954195, + "c6": 1.2852519648636174, + "c7": 0.6426259824318021 }, "rgb": [58, 15, 49] }, @@ -336804,23 +336804,23 @@ "year": 1796, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -30.12720365446656, - "c2": 33.79996410997133, - "c3": -5.794235048714178, - "c4": -19.265402744942726, - "c5": 15.32066378840564, - "c6": -2.118955672125608, - "c7": -7.324179262747073 + "points": { + "c1": 11.72521171838649, + "c2": -23.64827241976341, + "c3": 18.055475231569787, + "c4": -33.21433444904808, + "c5": -28.741198738506064, + "c6": -28.201258858268666, + "c7": 9.341192932302427 }, - "vertexSeeds": { - "c1": 3.1943753976029794, - "c2": 3.069159501581077, - "c3": 2.9628935079802656, - "c4": 2.990601444640071, - "c5": 2.9717346173762516, - "c6": 3.220456182507344, - "c7": 3.0540099214740177 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [58, 15, 49] }, @@ -336831,23 +336831,23 @@ "year": 1796, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -6.362396245082543, - "c2": -3.75626671704455, - "c3": 7.762750673753104, - "c4": -10.082120115749841, - "c5": 23.602034252325666, - "c6": -19.059077073245234, - "c7": -21.623579769436358 + "points": { + "c1": -20.47976554165297, + "c2": -18.069307718874825, + "c3": 21.404808928489324, + "c4": 27.36409532482473, + "c5": -18.737191909641986, + "c6": -20.952419259032038, + "c7": 18.941179088569704 }, - "vertexSeeds": { - "c1": 6.662345092117087, - "c2": 6.644248391279481, - "c3": 6.778802764861621, - "c4": 6.395913464366481, - "c5": 6.933629687621501, - "c6": 6.527268733285366, - "c7": 6.53672240415087 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -336858,23 +336858,23 @@ "year": 1796, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 37.065469816187516, - "c2": -15.304445075869086, - "c3": -21.676948526943825, - "c4": 38.59530383383806, - "c5": -28.061725663981022, - "c6": -33.164666896002736, - "c7": -28.071229361118956 + "points": { + "c1": 16.132205064812588, + "c2": -13.139829881308955, + "c3": 45.90058061280027, + "c4": 24.612102585736125, + "c5": 14.501465212336846, + "c6": 25.12971226244234, + "c7": -7.008330501016367 }, - "vertexSeeds": { - "c1": 2.3948242690490242, - "c2": 2.5222235218599294, - "c3": 2.45434247120053, - "c4": 2.607626484158466, - "c5": 2.437553668470725, - "c6": 2.465207791358078, - "c7": 2.426617385901099 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550625, + "c3": 3.190013869625522, + "c4": 2.5520110957004194, + "c5": 1.9140083217753165, + "c6": 1.2760055478502097, + "c7": 0.6380027739251068 }, "rgb": [238, 201, 159] }, @@ -336885,23 +336885,23 @@ "year": 1796, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -27.48043950754509, - "c2": 0.5870502317817952, - "c3": -30.94154652179069, - "c4": -4.232598461164056, - "c5": -24.702534398313162, - "c6": -6.1245723859316605, - "c7": -19.113952094405125 + "points": { + "c1": -29.479496800317825, + "c2": 12.886246432895774, + "c3": -31.640587503987177, + "c4": 4.035382849855409, + "c5": -29.3136360948917, + "c6": 28.074912537316443, + "c7": -6.0699839879063155 }, - "vertexSeeds": { - "c1": 5.349360985477316, - "c2": 5.388121539262019, - "c3": 5.315402241015607, - "c4": 5.364137120043855, - "c5": 5.408173004652885, - "c6": 5.302917292523503, - "c7": 5.333027377397584 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262109, + "c3": 6.4724919093851225, + "c4": 5.177993527508073, + "c5": 3.8834951456310867, + "c6": 2.5889967637540363, + "c7": 1.294498381876986 }, "rgb": [86, 146, 138] }, @@ -336912,23 +336912,23 @@ "year": 1796, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 14.97269459465004, - "c2": 0.8630369502513666, - "c3": 21.146816583615102, - "c4": -3.5864706795559336, - "c5": 26.345037035162516, - "c6": 8.010382375362557, - "c7": -2.7924529223320143 + "points": { + "c1": 7.9925250631030735, + "c2": 14.51614810421249, + "c3": -10.857151358210654, + "c4": -2.3283945001985913, + "c5": -0.6448106393144641, + "c6": -6.223750679073042, + "c7": -26.184510707708206 }, - "vertexSeeds": { - "c1": 3.6211986297934526, - "c2": 3.685149643857408, - "c3": 3.695952945775157, - "c4": 3.6286430995992194, - "c5": 3.7230139092524883, - "c6": 3.646823986815721, - "c7": 3.667072250571123 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762832, + "c3": 4.461396208969031, + "c4": 3.5691169671752294, + "c5": 2.6768377253814273, + "c6": 1.7845584835876036, + "c7": 0.8922792417938018 }, "rgb": [58, 15, 49] }, @@ -336939,23 +336939,23 @@ "year": 1796, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -12.35399224359154, - "c2": 11.145296445991853, - "c3": 15.785556681544747, - "c4": -3.3334488075957402, - "c5": 2.2223223356929296, - "c6": 0.9909125009911222, - "c7": -2.2914764266199406 + "points": { + "c1": -25.348981375391713, + "c2": 8.161939259960839, + "c3": -5.7311519974511675, + "c4": -14.63867234943329, + "c5": 6.7153564050868155, + "c6": -12.080357706697113, + "c7": 19.721075918761805 }, - "vertexSeeds": { - "c1": 0.6549337001579555, - "c2": 0.6073535805815946, - "c3": 0.6103343924936333, - "c4": 0.611571775389016, - "c5": 0.6081056939698688, - "c6": 0.6070266890340573, - "c7": 0.6240733515322392 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.9708737864077662, + "c3": 0.8090614886731403, + "c4": 0.6472491909385117, + "c5": 0.4854368932038831, + "c6": 0.32362459546925726, + "c7": 0.16181229773462863 }, "rgb": [238, 201, 159] }, @@ -336966,23 +336966,23 @@ "year": 1796, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 15.866100084987295, - "c2": -19.52869133893944, - "c3": 22.99334241314412, - "c4": 25.27355528577999, - "c5": 25.98265975362601, - "c6": 15.32332787240209, - "c7": -0.06654669198773178 + "points": { + "c1": 0.8842416102515429, + "c2": -35.58810507700782, + "c3": 41.06619434585576, + "c4": -25.538980607173883, + "c5": 26.333834263479986, + "c6": -9.111338491285082, + "c7": -39.095714151877125 }, - "vertexSeeds": { - "c1": 6.847225543296417, - "c2": 6.891443104851138, - "c3": 6.911757294703648, - "c4": 6.7823102557535355, - "c5": 6.491254864897233, - "c6": 6.541077561921787, - "c7": 6.580784430283867 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -336993,23 +336993,23 @@ "year": 1796, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 29.962437747044888, - "c2": -10.720763913161171, - "c3": 3.0251488764745176, - "c4": -2.835944527456128, - "c5": 1.6839327782653157, - "c6": 7.175351895567879, - "c7": -20.738189260982853 + "points": { + "c1": 36.02380761317302, + "c2": -24.659948265067325, + "c3": 4.937824576105108, + "c4": 24.591696940610362, + "c5": 31.550753226521124, + "c6": -37.67229445070768, + "c7": 21.568987840584946 }, - "vertexSeeds": { - "c1": 1.7811015861653896, - "c2": 1.8964488919832077, - "c3": 2.03265489752285, - "c4": 1.9807885030392693, - "c5": 1.7667594542727447, - "c6": 1.9968017079531881, - "c7": 2.097378723143486 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.542764678687008, + "c4": 2.0342117429496063, + "c5": 1.5256588072122037, + "c6": 1.0171058714748016, + "c7": 0.5085529357373996 }, "rgb": [58, 15, 49] }, @@ -337020,23 +337020,23 @@ "year": 1796, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -24.56840171895699, - "c2": -11.633809902600746, - "c3": 15.34222825946744, - "c4": -11.55155985441872, - "c5": 14.356041667340698, - "c6": -14.422993333777605, - "c7": 30.436920065485666 + "points": { + "c1": 9.706951340746272, + "c2": -19.524126001742168, + "c3": -19.09852675536041, + "c4": -25.894073380277902, + "c5": 21.642161571947796, + "c6": -27.46114589171242, + "c7": -22.83028074099341 }, - "vertexSeeds": { - "c1": 6.419507800736122, - "c2": 6.714109165883505, - "c3": 6.7796768931311355, - "c4": 6.721791801114179, - "c5": 6.930283179167609, - "c6": 6.567187436481637, - "c7": 6.930651064078805 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -337047,23 +337047,23 @@ "year": 1796, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 0.16457217793394108, - "c2": 7.178769053979302, - "c3": 18.56953330132982, - "c4": 6.840751743745621, - "c5": 27.855653795180615, - "c6": 2.274373161514845, - "c7": 34.896770370922354 + "points": { + "c1": -0.9856920375885423, + "c2": -16.883143394856635, + "c3": -31.029083710716403, + "c4": -23.189009103191083, + "c5": 12.571544668988551, + "c6": -19.14173848001985, + "c7": 2.8111076077676387 }, - "vertexSeeds": { - "c1": 6.256476683937824, - "c2": 6.256476683937824, - "c3": 6.256476683937824, - "c4": 6.256476683937824, - "c5": 6.256476683937824, - "c6": 6.256476683937824, - "c7": 6.256476683937824 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -337074,23 +337074,23 @@ "year": 1796, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -23.42123559177059, - "c2": -21.48969444510983, - "c3": 24.844531882098288, - "c4": 2.0049485279696277, - "c5": 2.306715842636539, - "c6": 12.948721544710978, - "c7": -11.177302172627849 + "points": { + "c1": 21.965749358911246, + "c2": 3.4609576162594458, + "c3": 21.36733305873488, + "c4": -23.926915320526348, + "c5": 7.056116328081082, + "c6": 21.951181768152708, + "c7": -12.061609602059873 }, - "vertexSeeds": { - "c1": 5.401454969042274, - "c2": 5.463768068938737, - "c3": 5.439248090239516, - "c4": 5.387016318257211, - "c5": 5.449847317536308, - "c6": 5.471179995616626, - "c7": 5.443273112292196 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382787, + "c3": 6.541840036985638, + "c4": 5.233472029588489, + "c5": 3.9251040221914453, + "c6": 2.616736014794297, + "c7": 1.3083680073971484 }, "rgb": [222, 0, 59] }, @@ -337101,23 +337101,23 @@ "year": 1796, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -16.321784142628943, - "c2": -9.282641134143585, - "c3": -23.452173721847302, - "c4": -4.822431945712555, - "c5": 15.314620266273927, - "c6": 25.402948374275745, - "c7": -28.91427282651361 + "points": { + "c1": -10.239728735452317, + "c2": -32.99963170593983, + "c3": -13.029825507408102, + "c4": -1.253138866706486, + "c5": -29.225649860735857, + "c6": 13.724573295899347, + "c7": -7.862193643026568 }, - "vertexSeeds": { - "c1": 5.816381989811522, - "c2": 5.820837875547331, - "c3": 5.801206387912992, - "c4": 5.802880404297845, - "c5": 5.764937553354165, - "c6": 5.753975633086157, - "c7": 5.813263610609247 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106835, + "c3": 6.957928802588937, + "c4": 5.5663430420711775, + "c5": 4.1747572815534175, + "c6": 2.783171521035658, + "c7": 1.3915857605177597 }, "rgb": [58, 15, 49] }, @@ -337128,23 +337128,23 @@ "year": 1796, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -39.833865959656045, - "c2": -29.596609788558638, - "c3": 18.470042139834227, - "c4": 6.355375514552193, - "c5": -40.81656166030928, - "c6": 3.736712562087625, - "c7": -3.297550921590144 + "points": { + "c1": 39.39370694825773, + "c2": -31.152095994576996, + "c3": -32.34162853651044, + "c4": -34.40195945451415, + "c5": -8.653544806572832, + "c6": -29.652534459487168, + "c7": 16.05455703708771 }, - "vertexSeeds": { - "c1": 4.603630501582776, - "c2": 7.621100926271256, - "c3": 7.063122982828138, - "c4": 4.071013067855796, - "c5": 4.169513241203395, - "c6": 3.9985786681963624, - "c7": 7.25945147791257 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407303, + "c4": 7.3971336107258425, + "c5": 5.54785020804438, + "c6": 3.698566805362921, + "c7": 1.849283402681461 }, "rgb": [58, 15, 49] }, @@ -337155,23 +337155,23 @@ "year": 1796, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 0.10442713514425606, - "c2": 22.17161731255993, - "c3": 21.81863347238871, - "c4": 39.65731593981397, - "c5": 1.4818742818122672, - "c6": 5.374426026273184, - "c7": -22.085641287922975 + "points": { + "c1": 32.227535369398154, + "c2": 15.414409148015977, + "c3": 9.105848848876299, + "c4": 6.1783330047914475, + "c5": -14.051684140539013, + "c6": 9.574409038121097, + "c7": 42.7502435414459 }, - "vertexSeeds": { - "c1": 6.17013764593086, - "c2": 6.2973798524429245, - "c3": 6.20284248847451, - "c4": 5.80712723717909, - "c5": 5.744149773671578, - "c6": 6.525272974999606, - "c7": 5.871960923755849 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996761, + "c4": 6.343042071197406, + "c5": 4.757281553398052, + "c6": 3.171521035598709, + "c7": 1.5857605177993546 }, "rgb": [77, 76, 132] }, @@ -337182,23 +337182,23 @@ "year": 1796, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 9.299448944783542, - "c2": 5.513528132518239, - "c3": -27.716101663851695, - "c4": -18.477675797617344, - "c5": -15.641619376995518, - "c6": -20.068304292474814, - "c7": -24.911103439941098 + "points": { + "c1": -15.860244200987388, + "c2": -45.177507313859316, + "c3": -31.130312820396163, + "c4": -27.580442878677314, + "c5": -32.28033220740405, + "c6": 4.978581289905804, + "c7": 32.35689105897185 }, - "vertexSeeds": { - "c1": 5.3651779955298196, - "c2": 5.641980442511506, - "c3": 5.178395836622175, - "c4": 5.577500364496521, - "c5": 4.908338077553078, - "c6": 5.043214142904641, - "c7": 5.558324152130901 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905692, + "c3": 6.842348589921404, + "c4": 5.473878871937128, + "c5": 4.10540915395284, + "c6": 2.736939435968564, + "c7": 1.3684697179842882 }, "rgb": [238, 201, 159] }, @@ -337209,23 +337209,23 @@ "year": 1796, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -25.591317310036466, - "c2": -32.687791761556696, - "c3": 36.072417898964225, - "c4": -13.59013119912641, - "c5": -9.7183712631602, - "c6": 14.59796270976883, - "c7": 26.955573390954797 + "points": { + "c1": 6.435177675151849, + "c2": 24.255597345521146, + "c3": 26.565353048081015, + "c4": 10.583642067100897, + "c5": -6.136305552363815, + "c6": 23.002497017777927, + "c7": 18.89532471003151 }, - "vertexSeeds": { - "c1": 2.4386459944927044, - "c2": 2.3703219617030546, - "c3": 2.516830195976971, - "c4": 2.52315940010953, - "c5": 2.422161809476502, - "c6": 2.45274512960251, - "c7": 2.4442838405501215 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.6893203883495134, + "c3": 3.0744336569579263, + "c4": 2.459546925566344, + "c5": 1.8446601941747567, + "c6": 1.2297734627831745, + "c7": 0.6148867313915872 }, "rgb": [86, 146, 138] }, @@ -337236,23 +337236,23 @@ "year": 1796, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -4.038085542375651, - "c2": -2.43890056986697, - "c3": 25.471163780449412, - "c4": -13.369953939202606, - "c5": 4.247911638915522, - "c6": 6.187756292981145, - "c7": 9.1240658217739 + "points": { + "c1": 23.88266326781466, + "c2": -25.18854618842723, + "c3": -24.671845476115404, + "c4": -17.123986686885214, + "c5": 18.29417758435586, + "c6": -14.80730712778475, + "c7": -11.151385851702674 }, - "vertexSeeds": { - "c1": 8.46913300780446, - "c2": 8.493977125605085, - "c3": 8.054936585739517, - "c4": 8.026100278595896, - "c5": 7.973403591537861, - "c6": 8.467734090815028, - "c7": 8.035214304191404 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858535, + "c3": 10.26352288488212, + "c4": 8.210818307905683, + "c5": 6.1581137309292675, + "c6": 4.105409153952852, + "c7": 2.0527045769764154 }, "rgb": [77, 76, 132] }, @@ -337263,23 +337263,23 @@ "year": 1796, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 20.44375215020213, - "c2": -11.547418688300976, - "c3": 14.845748341582393, - "c4": -22.4148443220573, - "c5": -26.36388565478648, - "c6": -18.045076471158175, - "c7": 30.807778114522662 + "points": { + "c1": 19.83186776118348, + "c2": -17.645099903615854, + "c3": 20.827365464400813, + "c4": -23.55494626484706, + "c5": 16.476144014399722, + "c6": 10.658096895472937, + "c7": -17.474807093638134 }, - "vertexSeeds": { - "c1": 4.51635523440442, - "c2": 4.472259113652275, - "c3": 4.458781285329396, - "c4": 4.422310943879976, - "c5": 4.429323780388962, - "c6": 4.433761513250066, - "c7": 4.427095182414689 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572825, + "c3": 5.5016181229773435, + "c4": 4.401294498381884, + "c5": 3.300970873786402, + "c6": 2.200647249190942, + "c7": 1.10032362459546 }, "rgb": [58, 15, 49] }, @@ -337290,23 +337290,23 @@ "year": 1796, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -25.710964326389526, - "c2": 10.930480854149312, - "c3": -30.699632244255653, - "c4": 27.818254392017185, - "c5": 28.257943382315663, - "c6": 17.361599049597356, - "c7": -11.285875316043125 + "points": { + "c1": 13.00196066997566, + "c2": 32.911354089995996, + "c3": 18.63659585942147, + "c4": 27.067095992255055, + "c5": -26.77344353874753, + "c6": 24.772476853048005, + "c7": 25.19171001862808 }, - "vertexSeeds": { - "c1": 4.152190058206519, - "c2": 4.153220735782807, - "c3": 4.143218839669512, - "c4": 4.119300330377299, - "c5": 4.131171256238673, - "c6": 4.152775207207229, - "c7": 4.137213221918441 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.96393897364774, + "c3": 4.969949144706384, + "c4": 3.975959315765127, + "c5": 2.98196948682387, + "c6": 1.987979657882613, + "c7": 0.993989828941257 }, "rgb": [222, 0, 59] }, @@ -337317,23 +337317,23 @@ "year": 1796, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 25.391456356983724, - "c2": -8.07020895263852, - "c3": 17.75540735769753, - "c4": -15.542800373207111, - "c5": -6.866660976229237, - "c6": -8.318913539527436, - "c7": -20.416093474891717 + "points": { + "c1": 5.908695108532825, + "c2": -4.13191916020773, + "c3": 33.114064777541174, + "c4": 37.41833255758722, + "c5": 14.062721473951939, + "c6": 23.128392594771796, + "c7": 15.694645029137035 }, - "vertexSeeds": { - "c1": 8.621138159295015, - "c2": 8.385049048373899, - "c3": 8.642317964495042, - "c4": 8.653497988484611, - "c5": 8.919486806831953, - "c6": 8.523909202530284, - "c7": 8.781940854173358 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582517, + "c3": 10.67961165048545, + "c4": 8.543689320388355, + "c5": 6.407766990291258, + "c6": 4.271844660194163, + "c7": 2.1359223300970953 }, "rgb": [58, 15, 49] }, @@ -337344,23 +337344,23 @@ "year": 1798, "resistanceReported": true, "duration": 70761600, - "curveSeeds": { - "c1": 61.637835310866734, - "c2": -81.09157596070729, - "c3": 72.7365801208264, - "c4": -44.1000653704959, - "c5": -47.674608494521, - "c6": -14.672955913276382, - "c7": 9.593571496031672 + "points": { + "c1": 16.229353312887554, + "c2": -69.35437182568528, + "c3": -57.73709455158558, + "c4": 3.435785128327339, + "c5": -71.08779409386489, + "c6": -60.49750337628504, + "c7": -17.971440017113267 }, - "vertexSeeds": { - "c1": 5.0513142700216385, - "c2": 5.365475003705227, - "c3": 5.249700523783472, - "c4": 4.910853147417429, - "c5": 5.0370104380957565, - "c6": 5.043046517255912, - "c7": 5.209805467958376 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382798, + "c3": 6.541840036985661, + "c4": 5.23347202958854, + "c5": 3.925104022191403, + "c6": 2.616736014794266, + "c7": 1.308368007397137 }, "rgb": [58, 15, 49] }, @@ -337371,23 +337371,23 @@ "year": 1796, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 5.218544168617001, - "c2": 12.509796994999874, - "c3": -7.6891134543285276, - "c4": 16.1680328336572, - "c5": -1.842912405924526, - "c6": 8.393421771227615, - "c7": -17.236920570555476 + "points": { + "c1": 4.240728515846563, + "c2": 16.126045023128462, + "c3": 9.953766398592819, + "c4": 9.421636286967313, + "c5": 8.340322013619435, + "c6": 29.60419589509044, + "c7": 17.83036970229835 }, - "vertexSeeds": { - "c1": 2.6800908461716526, - "c2": 2.6801503990511124, - "c3": 2.718658891795339, - "c4": 2.6332181946867914, - "c5": 2.6592138642453866, - "c6": 2.678613011585417, - "c7": 2.6365966600595403 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.7725381414701733, + "c3": 3.1437817845584943, + "c4": 2.5150254276467905, + "c5": 1.8862690707350867, + "c6": 1.257512713823408, + "c7": 0.628756356911704 }, "rgb": [222, 0, 59] }, @@ -337398,23 +337398,23 @@ "year": 1796, "resistanceReported": true, "duration": 23155200, - "curveSeeds": { - "c1": -1.8716731055407578, - "c2": -25.421811161103992, - "c3": -22.40144849104987, - "c4": -28.449660027742823, - "c5": -5.948041241792197, - "c6": 17.882647571949498, - "c7": -6.18165176551771 + "points": { + "c1": 0.09586581811630168, + "c2": -28.920880130037006, + "c3": 13.113296418470625, + "c4": 8.739543287707562, + "c5": 16.83786207241849, + "c6": 4.6068706352290505, + "c7": 5.000390976667191 }, - "vertexSeeds": { - "c1": 2.331889166428164, - "c2": 2.000872918270458, - "c3": 2.352085047211075, - "c4": 2.303322308321812, - "c5": 2.149546765844611, - "c6": 2.1587428052267685, - "c7": 2.1077409699561827 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081815, + "c3": 2.9357374017568194, + "c4": 2.3485899214054546, + "c5": 1.7614424410540896, + "c6": 1.1742949607027273, + "c7": 0.5871474803513624 }, "rgb": [238, 201, 159] }, @@ -337425,23 +337425,23 @@ "year": 1796, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -11.996417474468792, - "c2": 14.085271247901861, - "c3": 10.613762029202245, - "c4": 10.948163947773953, - "c5": 11.020252826753708, - "c6": -22.4506551780143, - "c7": -17.645148245721753 + "points": { + "c1": -5.531922714183267, + "c2": -8.46347124847416, + "c3": -14.969698023213123, + "c4": 0.1059691706874375, + "c5": 7.301893103918847, + "c6": -31.403865226790693, + "c7": 25.12309038632718 }, - "vertexSeeds": { - "c1": 6.050121067740237, - "c2": 6.206251031175551, - "c3": 6.1787341326626235, - "c4": 6.182040988764577, - "c5": 6.10497367606557, - "c6": 5.9465549227328856, - "c7": 5.975841828504921 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.98751733703191, + "c3": 7.489597780859904, + "c4": 5.991678224687929, + "c5": 4.493758668515955, + "c6": 2.995839112343948, + "c7": 1.497919556171974 }, "rgb": [222, 0, 59] }, @@ -337452,23 +337452,23 @@ "year": 1796, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -11.103523000602248, - "c2": 33.39928082198914, - "c3": 13.402362042856794, - "c4": -30.13629707073578, - "c5": 34.12902760351143, - "c6": 4.508910085281244, - "c7": 8.117884588208142 + "points": { + "c1": 16.46432908260038, + "c2": 19.883202311368315, + "c3": -11.531418726096494, + "c4": -4.867491518399966, + "c5": 11.201593610061757, + "c6": -28.545877756333574, + "c7": 19.086309543039285 }, - "vertexSeeds": { - "c1": 1.4752286340450833, - "c2": 1.3199240765461577, - "c3": 1.4332567045846356, - "c4": 1.4945074513163121, - "c5": 1.2831631103373227, - "c6": 1.4660138470341262, - "c7": 1.231642226974247 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.1636615811373083, + "c3": 1.8030513176144245, + "c4": 1.4424410540915387, + "c5": 1.0818307905686553, + "c6": 0.7212205270457693, + "c7": 0.36061026352288333 }, "rgb": [77, 76, 132] }, @@ -337479,23 +337479,23 @@ "year": 1796, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 7.758257063579499, - "c2": -34.24431115682755, - "c3": 26.9365297824913, - "c4": 34.57531879508781, - "c5": 12.059375597910083, - "c6": 12.108570280262015, - "c7": 7.854785637896242 + "points": { + "c1": -16.285426062496377, + "c2": -27.01982155810163, + "c3": -5.680400602571314, + "c4": -12.822473742395886, + "c5": 26.92350296544403, + "c6": -24.518157406146834, + "c7": 25.40812814023795 }, - "vertexSeeds": { - "c1": 4.333744539781573, - "c2": 4.378791180148028, - "c3": 4.008701592947224, - "c4": 4.213682955899274, - "c5": 4.154600171860629, - "c6": 4.064067124311827, - "c7": 4.096318776689742 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175682, + "c4": 4.234858992140545, + "c5": 3.1761442441054086, + "c6": 2.1174294960702724, + "c7": 1.0587147480351362 }, "rgb": [86, 146, 138] }, @@ -337506,23 +337506,23 @@ "year": 1796, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -23.2774936757488, - "c2": -12.455293602286758, - "c3": 20.590406922819618, - "c4": 3.520322450338874, - "c5": -19.728419319393062, - "c6": -4.5194263009650335, - "c7": 33.359185942309246 + "points": { + "c1": -29.90566499811213, + "c2": 8.197566108760832, + "c3": 33.05621419659942, + "c4": -13.394703771635065, + "c5": 7.692468414148607, + "c6": 11.128906348608538, + "c7": -35.078839170727434 }, - "vertexSeeds": { - "c1": 6.912052418701749, - "c2": 6.986089925999291, - "c3": 6.81077906126741, - "c4": 7.175638822268387, - "c5": 7.310765439609886, - "c6": 6.79483117524056, - "c7": 6.74089271714283 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203893, + "c3": 8.7378640776699, + "c4": 6.990291262135929, + "c5": 5.242718446601936, + "c6": 3.4951456310679645, + "c7": 1.7475728155339925 }, "rgb": [238, 201, 159] }, @@ -337533,23 +337533,23 @@ "year": 1796, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 35.269060337224765, - "c2": -5.1599710495906095, - "c3": -35.01419759261814, - "c4": -6.3298587842259515, - "c5": -9.596365296633351, - "c6": 35.591946723324945, - "c7": -6.488376536592252 + "points": { + "c1": 28.40162552915921, + "c2": -38.978114455364405, + "c3": -13.385784155282963, + "c4": 26.59032040542825, + "c5": 8.260752059112114, + "c6": -10.325649338590143, + "c7": -5.702064286022122 }, - "vertexSeeds": { - "c1": 8.634359881300348, - "c2": 7.93960329836482, - "c3": 8.20560494156617, - "c4": 7.039367394150923, - "c5": 7.180946991096773, - "c6": 8.078985550098743, - "c7": 8.282044677644157 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059643, + "c3": 10.379103097549697, + "c4": 8.30328247803976, + "c5": 6.227461858529821, + "c6": 4.151641239019883, + "c7": 2.075820619509938 }, "rgb": [77, 76, 132] }, @@ -337560,23 +337560,23 @@ "year": 1796, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -16.518743053336788, - "c2": -12.073897362054293, - "c3": 21.70976732850835, - "c4": 6.827976763092927, - "c5": -14.987299753343862, - "c6": -10.201694950240533, - "c7": 21.38655130567635 + "points": { + "c1": 29.573728134207514, + "c2": 2.1258684159817136, + "c3": -18.54957168913144, + "c4": 3.3661394547069605, + "c5": -20.27364101111362, + "c6": -24.869443305488197, + "c7": 0.2814988112759309 }, - "vertexSeeds": { - "c1": 5.257677309869288, - "c2": 5.250948608275363, - "c3": 5.301593272229497, - "c4": 5.299792378879727, - "c5": 5.290180111680846, - "c6": 5.272254828906215, - "c7": 5.287394993209215 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.6005547850207575, + "c3": 6.333795654184076, + "c4": 5.067036523347228, + "c5": 3.8002773925103788, + "c6": 2.53351826167353, + "c7": 1.2667591308368489 }, "rgb": [238, 201, 159] }, @@ -337587,23 +337587,23 @@ "year": 1796, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -30.358648923136716, - "c2": 19.039397077198483, - "c3": 20.924961862568043, - "c4": 22.530912931828038, - "c5": 30.43875858873867, - "c6": 25.763936891301842, - "c7": -19.506602526873337 + "points": { + "c1": 12.079542781976691, + "c2": -22.908385010365595, + "c3": -2.9964373412835776, + "c4": -4.0842227384503005, + "c5": -17.581992138615345, + "c6": -8.591596475149732, + "c7": -12.5047186644351 }, - "vertexSeeds": { - "c1": 9.02948501772559, - "c2": 9.46741075057677, - "c3": 9.605449788193656, - "c4": 9.468048034479164, - "c5": 9.128957705007066, - "c6": 9.127221913936658, - "c7": 9.666669038187653 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.091539528432738, + "c3": 11.742949607027272, + "c4": 9.394359685621826, + "c5": 7.0457697642163595, + "c6": 4.697179842810913, + "c7": 2.3485899214054466 }, "rgb": [222, 0, 59] }, @@ -337614,23 +337614,23 @@ "year": 1796, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 30.25443348914016, - "c2": -0.029186359943146556, - "c3": 10.062903676280914, - "c4": -17.876992482671998, - "c5": -23.086457572040846, - "c6": 17.22383421810048, - "c7": 18.843793467397045 + "points": { + "c1": 5.458262923779344, + "c2": 25.433484085496552, + "c3": -10.719988003239187, + "c4": 11.753822960680246, + "c5": 31.267540962074932, + "c6": -26.447008540803452, + "c7": -5.01397125376667 }, - "vertexSeeds": { - "c1": 6.645530599328838, - "c2": 7.8607186696524405, - "c3": 7.9281912452048084, - "c4": 7.086471419652083, - "c5": 7.714062657295101, - "c6": 6.600615724983879, - "c7": 7.352009870783177 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812762, + "c3": 9.662505779010637, + "c4": 7.730004623208511, + "c5": 5.797503467406386, + "c6": 3.865002311604251, + "c7": 1.932501155802135 }, "rgb": [77, 76, 132] }, @@ -337641,23 +337641,23 @@ "year": 1796, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 26.381909950560345, - "c2": 18.39801121883742, - "c3": -16.264510874545927, - "c4": 12.887389923582486, - "c5": -15.279454767573679, - "c6": 9.379833969948496, - "c7": 2.6628976988650344 + "points": { + "c1": -6.761547514246693, + "c2": -27.99773408715752, + "c3": 0.7075996965675273, + "c4": -5.990975023692652, + "c5": 7.3755791627469875, + "c6": -8.483938871521445, + "c7": 15.947042919661499 }, - "vertexSeeds": { - "c1": 7.243239184282961, - "c2": 7.185546413311434, - "c3": 7.218947174013358, - "c4": 7.2293185962517175, - "c5": 7.139117180974083, - "c6": 7.2369629163929625, - "c7": 7.187193602067563 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043046, + "c3": 8.645399907535815, + "c4": 6.916319926028698, + "c5": 5.187239944521465, + "c6": 3.458159963014349, + "c7": 1.729079981507117 }, "rgb": [86, 146, 138] }, @@ -337668,23 +337668,23 @@ "year": 1796, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 1.1055110466578952, - "c2": -37.766192441352125, - "c3": 11.215365546480584, - "c4": 31.661123073475878, - "c5": -4.019642099620491, - "c6": -19.250798092731614, - "c7": 42.4554862019463 + "points": { + "c1": -20.700993875963533, + "c2": -47.36915482564112, + "c3": 18.845537024549756, + "c4": -10.733691089044527, + "c5": -1.5378740998714875, + "c6": 16.957715170446548, + "c7": 23.729827946526044 }, - "vertexSeeds": { - "c1": 7.762103811138411, - "c2": 7.762101819011111, - "c3": 7.758974375800223, - "c4": 7.753520328021821, - "c5": 7.7609440758706985, - "c6": 7.759072686143904, - "c7": 7.746745585478254 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667129041, + "c3": 9.26953305594093, + "c4": 7.415626444752817, + "c5": 5.561719833564336, + "c6": 3.707813222376224, + "c7": 1.853906611188112 }, "rgb": [222, 0, 59] }, @@ -337695,23 +337695,23 @@ "year": 1797, "resistanceReported": false, "duration": 63244800, - "curveSeeds": { - "c1": -78.58909526827986, - "c2": 21.868188325002592, - "c3": -9.084816953515897, - "c4": 78.6791374901167, - "c5": 75.87912481804999, - "c6": -2.4906440597944908, - "c7": 18.80521156010913 + "points": { + "c1": 55.79583994505306, + "c2": 31.152260882141803, + "c3": -14.4097733000238, + "c4": -13.375527176845438, + "c5": -65.69698600369765, + "c6": -47.050233468649616, + "c7": 9.95648303163911 }, - "vertexSeeds": { - "c1": 6.733628653312865, - "c2": 6.552158831262184, - "c3": 6.8829440658745185, - "c4": 6.526594232972857, - "c5": 6.925226738914725, - "c6": 6.738694882323573, - "c7": 6.678677531519251 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -337722,23 +337722,23 @@ "year": 1796, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 18.080720544247704, - "c2": 7.09764876925766, - "c3": -16.054125861097717, - "c4": -30.196961408538407, - "c5": -9.421884379190672, - "c6": -1.2756048922845977, - "c7": -32.94311452637875 + "points": { + "c1": 14.561514020719635, + "c2": 38.184286112544996, + "c3": -1.670564094407105, + "c4": -16.692741012050877, + "c5": -22.949289388533078, + "c6": 4.43921353551837, + "c7": -1.0341448816962 }, - "vertexSeeds": { - "c1": 0.9129314016189866, - "c2": 0.8358233291612505, - "c3": 0.8162450318936137, - "c4": 0.8101507118879557, - "c5": 0.8909769118910001, - "c6": 0.7756786809181944, - "c7": 0.825905349802968 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.3314840499306515, + "c3": 1.1095700416088763, + "c4": 0.8876560332871006, + "c5": 0.6657420249653251, + "c6": 0.44382801664355104, + "c7": 0.22191400832177413 }, "rgb": [222, 0, 59] }, @@ -337749,23 +337749,23 @@ "year": 1796, "resistanceReported": true, "duration": 23068800, - "curveSeeds": { - "c1": 4.774140007328626, - "c2": 23.946627383002806, - "c3": -14.098340364944448, - "c4": 34.052768144947706, - "c5": -33.50278147457658, - "c6": 8.168816852582928, - "c7": 5.790787890981612 + "points": { + "c1": -11.77418031645227, + "c2": 20.63268622456139, + "c3": 17.96059648292041, + "c4": -22.023989605619846, + "c5": -17.8781640933048, + "c6": 33.49378433682128, + "c7": 21.75385144062492 }, - "vertexSeeds": { - "c1": 4.57627653829747, - "c2": 4.601720246325988, - "c3": 4.468666266678674, - "c4": 4.566998429562383, - "c5": 4.874874357431772, - "c6": 4.746554363524645, - "c7": 4.625333042953151 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256585, + "c3": 5.8945908460471585, + "c4": 4.715672676837722, + "c5": 3.536754507628297, + "c6": 2.357836338418861, + "c7": 1.1789181692094355 }, "rgb": [58, 15, 49] }, @@ -337776,23 +337776,23 @@ "year": 1796, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 28.721691465206852, - "c2": 33.552562104298836, - "c3": 29.194839909538153, - "c4": -28.2561197921936, - "c5": -11.431848298383027, - "c6": 20.14997948847674, - "c7": 7.145254875785135 + "points": { + "c1": 8.646392492093838, + "c2": 27.173060630345027, + "c3": 6.249246455809093, + "c4": 33.743924837429255, + "c5": 6.8877793063031305, + "c6": -28.432761246555906, + "c7": 7.703829424746303 }, - "vertexSeeds": { - "c1": 9.330993235950409, - "c2": 7.3055538838019904, - "c3": 9.160687278031883, - "c4": 7.44631131149375, - "c5": 7.081167521886513, - "c6": 7.445150832044972, - "c7": 9.104520064614665 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748959, + "c3": 11.349976883957467, + "c4": 9.079981507165973, + "c5": 6.8099861303744795, + "c6": 4.539990753582987, + "c7": 2.2699953767914933 }, "rgb": [58, 15, 49] }, @@ -337803,23 +337803,23 @@ "year": 1796, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -20.92870355849617, - "c2": -14.312223177357271, - "c3": -1.6848081412316596, - "c4": 16.787894297930084, - "c5": -25.91234197529848, - "c6": 7.944836616306095, - "c7": 8.017279772543585 + "points": { + "c1": 17.33968168263041, + "c2": -27.8132595042492, + "c3": -5.559986739983245, + "c4": -6.945617446910138, + "c5": 5.115034295761159, + "c6": -24.113406915074258, + "c7": 17.72456743317853 }, - "vertexSeeds": { - "c1": 1.1045650778798937, - "c2": 1.2188893739372801, - "c3": 1.128419052826339, - "c4": 1.2630891066360082, - "c5": 1.1929126713174028, - "c6": 1.1355515230580604, - "c7": 1.1604593220414676 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948685, + "c3": 1.5487748497457243, + "c4": 1.2390198797965783, + "c5": 0.9292649098474343, + "c6": 0.6195099398982901, + "c7": 0.30975496994914425 }, "rgb": [86, 146, 138] }, @@ -337830,23 +337830,23 @@ "year": 1796, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 17.675993283138574, - "c2": 1.6556732248790098, - "c3": 24.764716857424354, - "c4": -2.6233301786086045, - "c5": -8.299935513088457, - "c6": -10.414781092860036, - "c7": -3.0871181580270317 + "points": { + "c1": -17.300319723728666, + "c2": -15.127440304700798, + "c3": -12.72521273166674, + "c4": -9.981500097877245, + "c5": -7.065300550660787, + "c6": -19.659331574986865, + "c7": -23.448793421868608 }, - "vertexSeeds": { - "c1": 6.836711847205757, - "c2": 6.743133202307482, - "c3": 6.938612079285129, - "c4": 6.610186185309935, - "c5": 6.356089917331065, - "c6": 6.940955245089119, - "c7": 6.470198798105574 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -337857,23 +337857,23 @@ "year": 1797, "resistanceReported": false, "duration": 60566400, - "curveSeeds": { - "c1": 69.5399902816918, - "c2": 43.51161199391866, - "c3": 5.7218168367381566, - "c4": -62.15441543656376, - "c5": -26.953846337730113, - "c6": 25.99491735855125, - "c7": -27.5771073330827 + "points": { + "c1": -17.465967955958803, + "c2": -49.03345658031313, + "c3": 51.3268140035983, + "c4": 18.415172962829374, + "c5": -21.78232839728601, + "c6": -15.595296969454488, + "c7": 60.62524509696392 }, - "vertexSeeds": { - "c1": 3.7949523383883066, - "c2": 3.94241420292459, - "c3": 3.973788090406182, - "c4": 3.7815775607108533, - "c5": 4.077891448184272, - "c6": 3.7953602615023, - "c7": 3.952983533151149 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486819, + "c3": 4.877484974572354, + "c4": 3.901987979657879, + "c5": 2.9264909847434146, + "c6": 1.9509939898289395, + "c7": 0.9754969949144752 }, "rgb": [77, 76, 132] }, @@ -337884,23 +337884,23 @@ "year": 1796, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -21.67093399534999, - "c2": 6.417696252131854, - "c3": -14.87958746649392, - "c4": 3.626655922673578, - "c5": 29.043532747569387, - "c6": 22.53988178463623, - "c7": -20.020408027899194 + "points": { + "c1": -7.63210424064734, + "c2": -1.8332231123676976, + "c3": -23.19788684989426, + "c4": -24.557496014150697, + "c5": -27.2925656187954, + "c6": -7.695690744818396, + "c7": -10.627196153164476 }, - "vertexSeeds": { - "c1": 4.806474262136453, - "c2": 4.741597818863041, - "c3": 4.844976894563678, - "c4": 5.056323301696418, - "c5": 4.797998034006349, - "c6": 4.9906675062248835, - "c7": 4.706771091950973 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [222, 0, 59] }, @@ -337911,23 +337911,23 @@ "year": 1796, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 0.7763798788058338, - "c2": 23.17030950265331, - "c3": -1.005706404167583, - "c4": -32.86994181523306, - "c5": -6.790326819351307, - "c6": -15.662358116038455, - "c7": -21.634089256385465 + "points": { + "c1": -13.894622521637128, + "c2": -33.510386480318274, + "c3": -36.62147957905608, + "c4": -8.578210340181258, + "c5": 6.718110452703684, + "c6": 14.742782216466345, + "c7": 35.86449158052418 }, - "vertexSeeds": { - "c1": 0.7896347431545245, - "c2": 0.818298707662483, - "c3": 0.8161062025305723, - "c4": 0.8038193477543439, - "c5": 0.8337186202700894, - "c6": 0.8293586628198412, - "c7": 0.8523739212754071 + "offsets": { + "c1": 1.4563106796116505, + "c2": 1.2482662968099856, + "c3": 1.0402219140083206, + "c4": 0.8321775312066577, + "c5": 0.6241331484049928, + "c6": 0.4160887656033278, + "c7": 0.20804438280166496 }, "rgb": [58, 15, 49] }, @@ -337938,23 +337938,23 @@ "year": 1796, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -9.816829791174321, - "c2": -22.031616823890218, - "c3": -8.814271981235938, - "c4": -20.32713974714245, - "c5": 1.1841026579293192, - "c6": -7.786504041793997, - "c7": 18.268846570700667 + "points": { + "c1": -10.888532653081448, + "c2": -3.4183687966772602, + "c3": 23.041109022119045, + "c4": -8.286689132929695, + "c5": -17.189965894890758, + "c6": 2.9460619222788296, + "c7": -15.208381145271568 }, - "vertexSeeds": { - "c1": 1.7398576668739847, - "c2": 1.713874435834234, - "c3": 1.7243127332728692, - "c4": 1.7440488513492032, - "c5": 1.7134763376430084, - "c6": 1.723443238623273, - "c7": 1.7101720754279175 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797484, + "c3": 2.0573277854831216, + "c4": 1.6458622283865083, + "c5": 1.234396671289881, + "c6": 0.8229311141932542, + "c7": 0.4114655570966271 }, "rgb": [58, 15, 49] }, @@ -337965,23 +337965,23 @@ "year": 1796, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 29.075893472110415, - "c2": 40.13658516696578, - "c3": -35.246716871892616, - "c4": -18.585277899149855, - "c5": 33.42010312155045, - "c6": 11.354659086032775, - "c7": -13.80673373603917 + "points": { + "c1": -31.288196625270615, + "c2": -3.216956509540722, + "c3": -41.364443854850045, + "c4": 18.51067527132355, + "c5": 18.544554771771146, + "c6": 23.341877797484024, + "c7": 24.59997137768348 }, - "vertexSeeds": { - "c1": 3.9943958706307123, - "c2": 3.9739727452024702, - "c3": 3.9436009595575197, - "c4": 3.9264158762479773, - "c5": 3.8112846452854083, - "c6": 4.024062522750009, - "c7": 3.954536639052084 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [86, 146, 138] }, @@ -337992,23 +337992,23 @@ "year": 1796, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 14.446336400524224, - "c2": -24.627123841611294, - "c3": 4.001142679820866, - "c4": -1.5130746502810979, - "c5": 24.820158568028404, - "c6": -6.5238396898891615, - "c7": -21.410801273106614 + "points": { + "c1": -25.325748797058626, + "c2": -15.787325394163503, + "c3": -10.109752468795591, + "c4": -17.44043172500689, + "c5": -7.492423782482682, + "c6": -14.031103355456501, + "c7": -27.979144572878926 }, - "vertexSeeds": { - "c1": 6.75702322351143, - "c2": 7.031028414495603, - "c3": 6.772798750072561, - "c4": 6.885209656262203, - "c5": 6.808668525744011, - "c6": 6.9270128725106765, - "c7": 6.558613854259792 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600566, + "c3": 8.391123439667126, + "c4": 6.712898751733711, + "c5": 5.034674063800271, + "c6": 3.3564493758668554, + "c7": 1.6782246879334155 }, "rgb": [222, 0, 59] }, @@ -338019,23 +338019,23 @@ "year": 1796, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -9.478769548273895, - "c2": 34.70766961715077, - "c3": 18.2790098325977, - "c4": -33.51877412299562, - "c5": -24.64870509516826, - "c6": -13.126665216416072, - "c7": -34.94181358413119 + "points": { + "c1": 35.747758288467224, + "c2": -29.359663325457447, + "c3": 19.160643668458782, + "c4": 10.399609970317606, + "c5": -12.99793867888522, + "c6": 21.549463083768458, + "c7": -29.421867535190607 }, - "vertexSeeds": { - "c1": 5.723959512672243, - "c2": 5.410126704216043, - "c3": 5.15753280605055, - "c4": 5.629857488810827, - "c5": 5.98380815188351, - "c6": 5.608690547686255, - "c7": 5.746688296435382 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [86, 146, 138] }, @@ -338046,23 +338046,23 @@ "year": 1796, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -16.419200957647796, - "c2": 7.956539841270708, - "c3": -8.152339783178618, - "c4": 2.9466123860317595, - "c5": -25.07676964873549, - "c6": 8.429539859246287, - "c7": 23.85132976966268 + "points": { + "c1": -1.1443867158247727, + "c2": 21.18082369664457, + "c3": -23.75774068483613, + "c4": 0.451591240441779, + "c5": -1.7513707121283169, + "c6": -5.138859076139823, + "c7": 17.90061128724513 }, - "vertexSeeds": { - "c1": 1.5126467486335313, - "c2": 1.5238489739352874, - "c3": 1.461989225728115, - "c4": 1.4671348719558555, - "c5": 1.483722518400233, - "c6": 1.417221957397559, - "c7": 1.5485405793464662 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257977, + "c3": 1.8723994452149788, + "c4": 1.4979195561719845, + "c5": 1.1234396671289864, + "c6": 0.7489597780859922, + "c7": 0.3744798890429941 }, "rgb": [238, 201, 159] }, @@ -338073,23 +338073,23 @@ "year": 1797, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": -6.166745548128205, - "c2": 7.642899914394768, - "c3": 12.635514686933526, - "c4": -34.753097825040285, - "c5": -30.526871088129706, - "c6": -4.996887292708905, - "c7": -29.62803489922656 + "points": { + "c1": 47.63929037026774, + "c2": -23.2926326110354, + "c3": -22.85223041337462, + "c4": -4.815088835471251, + "c5": 3.301236535304689, + "c6": 14.846272028324769, + "c7": -0.582033458036932 }, - "vertexSeeds": { - "c1": 1.0724763826484645, - "c2": 1.151917375645009, - "c3": 1.0965398604675582, - "c4": 1.1807856456661758, - "c5": 1.037461402365067, - "c6": 1.2132159184042905, - "c7": 1.098281925616941 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.775312066574202, + "c3": 1.4794267221451693, + "c4": 1.183541377716135, + "c5": 0.887656033287101, + "c6": 0.5917706888580668, + "c7": 0.2958853444290342 }, "rgb": [222, 0, 59] }, @@ -338100,23 +338100,23 @@ "year": 1796, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 27.017126745576604, - "c2": -25.950178526162787, - "c3": 12.098978725759416, - "c4": -15.47505614896173, - "c5": -6.244402068330913, - "c6": -37.37973865538037, - "c7": -11.950413157347338 + "points": { + "c1": 2.004354534345403, + "c2": 22.99644712363176, + "c3": -2.815031394281064, + "c4": -21.33718072751353, + "c5": 31.942943205276123, + "c6": 37.72087276080224, + "c7": 31.052462785935916 }, - "vertexSeeds": { - "c1": 1.3051398481364487, - "c2": 1.251843432990274, - "c3": 1.184335739931592, - "c4": 1.0448338015840637, - "c5": 0.9042971515380009, - "c6": 0.8602496082778814, - "c7": 0.8854547031773603 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.941747572815534, + "c3": 1.6181229773462784, + "c4": 1.2944983818770226, + "c5": 0.970873786407767, + "c6": 0.6472491909385113, + "c7": 0.32362459546925565 }, "rgb": [238, 201, 159] }, @@ -338127,23 +338127,23 @@ "year": 1796, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -1.5667687371805528, - "c2": 9.167063350988926, - "c3": 23.018754844811234, - "c4": -13.965908116536625, - "c5": 11.602061317896364, - "c6": -28.72179492025297, - "c7": -18.325562911745774 + "points": { + "c1": 13.667497822751905, + "c2": -5.9135069948966255, + "c3": 22.17186517342352, + "c4": -17.58881697332745, + "c5": 6.337332643938943, + "c6": -22.88373796552559, + "c7": 30.635254834326133 }, - "vertexSeeds": { - "c1": 5.565421782456772, - "c2": 5.511337228743207, - "c3": 5.359571035788846, - "c4": 5.396302789332717, - "c5": 5.5666234241119765, - "c6": 5.534461040894425, - "c7": 5.511616277718281 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624133, + "c3": 6.680536292186778, + "c4": 5.344429033749422, + "c5": 4.008321775312067, + "c6": 2.672214516874711, + "c7": 1.3361072584373554 }, "rgb": [238, 201, 159] }, @@ -338154,23 +338154,23 @@ "year": 1796, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 2.133589333480483, - "c2": -18.896303307623533, - "c3": -9.690589409775928, - "c4": 11.030771409188148, - "c5": -1.6080042197873539, - "c6": 20.854632995475747, - "c7": -10.268656053342418 + "points": { + "c1": -4.940457945078517, + "c2": -13.738569672862836, + "c3": -24.845916227809656, + "c4": 16.346853353288154, + "c5": -14.226864594125917, + "c6": -27.487156621634973, + "c7": 18.924436205612317 }, - "vertexSeeds": { - "c1": 4.608430960711253, - "c2": 4.654600364578708, - "c3": 4.616060983535308, - "c4": 4.614681714154985, - "c5": 4.653611824003104, - "c6": 4.626749256235987, - "c7": 4.6146773283330385 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.7128987517336975, + "c3": 5.594082293111409, + "c4": 4.47526583448912, + "c5": 3.3564493758668306, + "c6": 2.2376329172445786, + "c7": 1.1188164586222893 }, "rgb": [86, 146, 138] }, @@ -338181,23 +338181,23 @@ "year": 1796, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -31.705720337453528, - "c2": -4.995823094133577, - "c3": 3.7172647876250053, - "c4": -32.947993242080024, - "c5": 21.173863633865878, - "c6": 15.696083180262278, - "c7": 14.115370263148463 + "points": { + "c1": 7.472581348062697, + "c2": -14.292777707429686, + "c3": -34.29509686076036, + "c4": 20.22183198716231, + "c5": -4.56277861976664, + "c6": -19.737204065673318, + "c7": 27.30874043850688 }, - "vertexSeeds": { - "c1": 3.1633026148988708, - "c2": 3.1503272439879435, - "c3": 3.168370089425699, - "c4": 3.1025745598709262, - "c5": 3.183338464017221, - "c6": 3.1782090430040384, - "c7": 3.0921639035511044 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636607, + "c3": 3.8141470180305257, + "c4": 3.051317614424415, + "c5": 2.2884882108183033, + "c6": 1.525658807212192, + "c7": 0.7628294036061113 }, "rgb": [222, 0, 59] }, @@ -338208,23 +338208,23 @@ "year": 1796, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -15.82402831563694, - "c2": 24.042647645262058, - "c3": 15.92180083842532, - "c4": -14.943692421619202, - "c5": 5.000236344419598, - "c6": 29.375380650087607, - "c7": 19.91231474515326 + "points": { + "c1": -14.555116384683476, + "c2": 23.765334570129156, + "c3": -23.526312503256484, + "c4": -9.792337400765412, + "c5": -5.205208776011126, + "c6": 31.51559462333534, + "c7": 3.6806552293710553 }, - "vertexSeeds": { - "c1": 2.01661846581231, - "c2": 2.015837160734255, - "c3": 2.2414916228429225, - "c4": 2.1936084729978385, - "c5": 2.192778100133663, - "c6": 2.2475536661039404, - "c7": 2.065522070504548 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.3009708737864076, + "c3": 2.7508090614886727, + "c4": 2.2006472491909377, + "c5": 1.6504854368932051, + "c6": 1.1003236245954702, + "c7": 0.5501618122977351 }, "rgb": [238, 201, 159] }, @@ -338235,23 +338235,23 @@ "year": 1796, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -13.341843862109112, - "c2": 31.19741459570166, - "c3": -2.8770885354421054, - "c4": 19.516004757714533, - "c5": 5.378232127844981, - "c6": 3.5135585498987183, - "c7": 21.33551198103593 + "points": { + "c1": 28.515792921729897, + "c2": 0.7618574314826319, + "c3": -21.920269821192143, + "c4": -28.9358675273145, + "c5": 7.61805581129363, + "c6": 25.298564540637962, + "c7": -24.122089363246985 }, - "vertexSeeds": { - "c1": 10.139096169118153, - "c2": 10.158611946108556, - "c3": 10.215099141970882, - "c4": 10.124146630225628, - "c5": 10.270674758282064, - "c6": 10.247710926570718, - "c7": 9.997784278440202 + "offsets": { + "c1": 17.184466019417478, + "c2": 14.72954230235782, + "c3": 12.27461858529823, + "c4": 9.81969486823857, + "c5": 7.36477115117891, + "c6": 4.909847434119285, + "c7": 2.4549237170596605 }, "rgb": [58, 15, 49] }, @@ -338262,23 +338262,23 @@ "year": 1796, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -17.74625343452624, - "c2": -21.377959064658164, - "c3": -5.4307455584769215, - "c4": 16.508076675263478, - "c5": 14.212820900919109, - "c6": -29.150690828571754, - "c7": 3.2889242250778317 + "points": { + "c1": 10.800881199969773, + "c2": -14.276814033247817, + "c3": 6.316918643874999, + "c4": -21.630176003664676, + "c5": -2.047742075576661, + "c6": 0.644678071046414, + "c7": -10.992849850856807 }, - "vertexSeeds": { - "c1": 5.233358492596057, - "c2": 5.300663991973993, - "c3": 5.430418526933544, - "c4": 5.268879740352049, - "c5": 5.263461326317479, - "c6": 5.211184316995532, - "c7": 5.283833473746844 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302344, + "c3": 6.495607951918638, + "c4": 5.196486361534896, + "c5": 3.897364771151189, + "c6": 2.598243180767448, + "c7": 1.2991215903837068 }, "rgb": [58, 15, 49] }, @@ -338289,23 +338289,23 @@ "year": 1796, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 6.116787464199703, - "c2": -17.481323000342393, - "c3": -22.834186160098405, - "c4": 9.803921952287475, - "c5": -17.940189882917338, - "c6": 15.063626321329608, - "c7": -30.95596027464091 + "points": { + "c1": 2.7834991755963543, + "c2": -15.33268252484267, + "c3": -19.37428266828747, + "c4": 9.33739395880091, + "c5": 1.2571236356623103, + "c6": -13.35913741877139, + "c7": -19.77135097443512 }, - "vertexSeeds": { - "c1": 6.644105550906972, - "c2": 6.525133136652759, - "c3": 6.59212190730753, - "c4": 6.564805788109552, - "c5": 6.531798863694974, - "c6": 6.539183953924758, - "c7": 6.626102938949802 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.928802588996764, + "c4": 6.343042071197411, + "c5": 4.757281553398058, + "c6": 3.1715210355987056, + "c7": 1.5857605177993528 }, "rgb": [238, 201, 159] }, @@ -338316,23 +338316,23 @@ "year": 1796, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -14.820132448225184, - "c2": -11.345424093682116, - "c3": -28.188973389020063, - "c4": 13.521518140946583, - "c5": 36.94286747907739, - "c6": -36.60444280768874, - "c7": 15.136539492276555 + "points": { + "c1": -23.356147889318603, + "c2": -22.450731854463918, + "c3": -15.7731573047821, + "c4": 19.64798476786857, + "c5": 33.69745855442733, + "c6": -32.2684469562918, + "c7": 9.422829543802209 }, - "vertexSeeds": { - "c1": 1.1685634983991893, - "c2": 1.0839748785653676, - "c3": 1.0999355425629118, - "c4": 1.2252597600568005, - "c5": 1.2752584091125727, - "c6": 1.0068959046181152, - "c7": 1.1835508641287071 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.0527045769764216, + "c3": 1.7105871474803513, + "c4": 1.368469717984281, + "c5": 1.0263522884882108, + "c6": 0.6842348589921405, + "c7": 0.34211742949607027 }, "rgb": [222, 0, 59] }, @@ -338343,23 +338343,23 @@ "year": 1796, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 24.29652110852267, - "c2": 26.39101560414864, - "c3": -26.508917636030095, - "c4": -13.225286163046794, - "c5": -5.260739194376967, - "c6": 14.424869364419166, - "c7": -23.619920306345684 + "points": { + "c1": 0.03287773169185826, + "c2": -11.402094741468726, + "c3": 19.664418885680483, + "c4": 19.879926251669126, + "c5": 22.743043827046968, + "c6": -13.124169391686838, + "c7": 20.72609084191425 }, - "vertexSeeds": { - "c1": 2.182317427307891, - "c2": 2.1271919421954872, - "c3": 2.1386940197816227, - "c4": 2.140844472102086, - "c5": 2.1816869941095276, - "c6": 2.1913011233352053, - "c7": 2.2028249909026187 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.190013869625525, + "c3": 2.6583448913545986, + "c4": 2.1266759130836834, + "c5": 1.5950069348127573, + "c6": 1.0633379565418417, + "c7": 0.5316689782709262 }, "rgb": [238, 201, 159] }, @@ -338370,23 +338370,23 @@ "year": 1796, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -25.957922033388886, - "c2": -34.154582227363015, - "c3": 29.98839610011772, - "c4": -22.030967014105343, - "c5": -9.059682736940196, - "c6": 26.140894968397504, - "c7": 5.540863834049823 + "points": { + "c1": 11.589422878171469, + "c2": 20.918408954343647, + "c3": -3.7676334621503784, + "c4": -9.011630705429141, + "c5": -2.9964450910877787, + "c6": -14.934966199286361, + "c7": -16.357453574677507 }, - "vertexSeeds": { - "c1": 4.599470574520231, - "c2": 4.5800098626143475, - "c3": 4.580183829924102, - "c4": 4.567423112597661, - "c5": 4.603272024653337, - "c6": 4.593639001403835, - "c7": 4.581868985892195 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572847, + "c3": 5.5016181229773, + "c4": 4.401294498381862, + "c5": 3.3009708737864236, + "c6": 2.2006472491909856, + "c7": 1.100323624595438 }, "rgb": [222, 0, 59] }, @@ -338397,23 +338397,23 @@ "year": 1797, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -12.918078382416219, - "c2": -26.372258879183157, - "c3": -19.75996241326487, - "c4": -26.115632604564937, - "c5": -27.377290629432828, - "c6": 32.732582605636466, - "c7": -4.118921118085716 + "points": { + "c1": -44.00974680918053, + "c2": -34.147091422138224, + "c3": 37.54227621055634, + "c4": -33.0963612115303, + "c5": 18.96144173866849, + "c6": 19.74849118260407, + "c7": 25.9276938791278 }, - "vertexSeeds": { - "c1": 3.466298307737905, - "c2": 3.4027520033004137, - "c3": 3.5260001343484686, - "c4": 3.407676432081273, - "c5": 3.6101641175367485, - "c6": 3.654036911744015, - "c7": 3.5111920368545952 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682388, + "c3": 4.415164123901992, + "c4": 3.5321312991215845, + "c5": 2.649098474341188, + "c6": 1.7660656495607923, + "c7": 0.8830328247803961 }, "rgb": [238, 201, 159] }, @@ -338424,23 +338424,23 @@ "year": 1796, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -9.121898482263767, - "c2": 15.325141784549125, - "c3": -20.879881067499138, - "c4": -17.1713951887444, - "c5": -6.08808320649085, - "c6": 3.8776848192173574, - "c7": 4.8862924379679775 + "points": { + "c1": 25.402726675615774, + "c2": -1.8104255858996048, + "c3": 12.151363981096452, + "c4": -22.72926393376998, + "c5": -12.542801244810455, + "c6": -7.445776811152026, + "c7": -19.756547301196253 }, - "vertexSeeds": { - "c1": 8.14886611676864, - "c2": 8.110719256661989, - "c3": 8.16261037240804, - "c4": 8.116718673766458, - "c5": 8.121991699478752, - "c6": 8.174054533219495, - "c7": 8.143877167540179 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.76144244105405, + "c3": 9.801202034211757, + "c4": 7.840961627369366, + "c5": 5.880721220527074, + "c6": 3.920480813684683, + "c7": 1.960240406842293 }, "rgb": [238, 201, 159] }, @@ -338451,23 +338451,23 @@ "year": 1796, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -20.741117173637733, - "c2": 5.149694397465204, - "c3": -2.643703319036689, - "c4": -19.23327995805678, - "c5": 0.16702198451842065, - "c6": -24.91563857193288, - "c7": 7.632458544799512 + "points": { + "c1": -22.91019857433075, + "c2": 12.796708773206383, + "c3": -20.289321163429545, + "c4": 18.538183115885147, + "c5": 19.73749453000257, + "c6": -9.812692564698288, + "c7": 2.186759823265781 }, - "vertexSeeds": { - "c1": 10.096409457178632, - "c2": 10.00004785481008, - "c3": 10.135950041484342, - "c4": 9.988089810055381, - "c5": 10.055012207704122, - "c6": 10.065851877436478, - "c7": 10.013463004983604 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.50762829403613, + "c3": 12.089690245029947, + "c4": 9.671752196024006, + "c5": 7.253814147018065, + "c6": 4.835876098012124, + "c7": 2.4179380490059414 }, "rgb": [238, 201, 159] }, @@ -338478,23 +338478,23 @@ "year": 1797, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 34.045876361011906, - "c2": -36.11035648832698, - "c3": 11.923456641315816, - "c4": 18.761071359959494, - "c5": 5.096254906678254, - "c6": 23.848960918188595, - "c7": 0.3863524962206668 + "points": { + "c1": 10.375887445080458, + "c2": -19.948546233204826, + "c3": -20.473940258145316, + "c4": 31.498793586005718, + "c5": -23.9684468438984, + "c6": -41.15935378294327, + "c7": 2.033840925440103 }, - "vertexSeeds": { - "c1": 6.666446658129114, - "c2": 6.4731341569415495, - "c3": 6.414726117784117, - "c4": 6.953920393919551, - "c5": 6.881151774154398, - "c6": 6.554319461710195, - "c7": 6.865686257380544 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -338505,23 +338505,23 @@ "year": 1796, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 5.698535577566261, - "c2": 26.34555858843415, - "c3": 15.593590681416615, - "c4": 28.158497155965513, - "c5": -3.3794633279451602, - "c6": 1.2380637004328037, - "c7": -5.57157495285259 + "points": { + "c1": -24.228572372392406, + "c2": 10.66084194938297, + "c3": 11.890663983367737, + "c4": 34.52366827724711, + "c5": -14.862000048376107, + "c6": -5.990700187533768, + "c7": -7.333115900932945 }, - "vertexSeeds": { - "c1": 7.610872340511621, - "c2": 7.660098883460258, - "c3": 7.608216795241557, - "c4": 7.600447307127091, - "c5": 7.656372715281865, - "c6": 7.570469478614516, - "c7": 7.688072047703263 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968099, + "c3": 9.17706888580675, + "c4": 7.3416551086454, + "c5": 5.506241331484049, + "c6": 3.6708275543227, + "c7": 1.83541377716135 }, "rgb": [58, 15, 49] }, @@ -338532,23 +338532,23 @@ "year": 1797, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": -21.502787187855652, - "c2": -49.038282920493174, - "c3": -33.1904952945544, - "c4": 33.48842536400927, - "c5": 13.405992537022136, - "c6": -46.15853691156317, - "c7": 27.6136207774529 + "points": { + "c1": 39.98195670716962, + "c2": 29.196896309222744, + "c3": 51.44518107958019, + "c4": 5.987854086665422, + "c5": 29.56832680078916, + "c6": 33.241970097708496, + "c7": -48.43407389942496 }, - "vertexSeeds": { - "c1": 5.407024083571903, - "c2": 6.827070244315898, - "c3": 5.557993550568142, - "c4": 6.633695373299962, - "c5": 6.428673569125603, - "c6": 6.789178563213635, - "c7": 5.764004497869663 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629681001, + "c3": 8.437355524734162, + "c4": 6.749884419787331, + "c5": 5.062413314840501, + "c6": 3.374942209893662, + "c7": 1.687471104946831 }, "rgb": [77, 76, 132] }, @@ -338559,23 +338559,23 @@ "year": 1796, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 20.855906815085998, - "c2": 10.850646017165861, - "c3": 18.405559655416884, - "c4": -5.599244879266916, - "c5": 15.458286480749234, - "c6": 20.627303034759738, - "c7": -1.316265740591266 + "points": { + "c1": 22.760616497928662, + "c2": -7.394000777097226, + "c3": 20.988600524185014, + "c4": -6.801103974190312, + "c5": -0.02329740875319075, + "c6": -21.001684679735227, + "c7": -20.320989701859382 }, - "vertexSeeds": { - "c1": 1.9361371475421978, - "c2": 2.107959232161907, - "c3": 2.0414379603853217, - "c4": 1.9720267538583116, - "c5": 1.9514597136813907, - "c6": 2.077466308948972, - "c7": 2.094138905499105 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.079056865464633, + "c3": 2.565880721220528, + "c4": 2.0527045769764234, + "c5": 1.539528432732314, + "c6": 1.0263522884882095, + "c7": 0.5131761442441047 }, "rgb": [58, 15, 49] }, @@ -338586,23 +338586,23 @@ "year": 1796, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -16.54323497369447, - "c2": -9.051440061362111, - "c3": 2.816642302192882, - "c4": -24.24516397766113, - "c5": 16.176894034525198, - "c6": -17.026510784041832, - "c7": 22.762464924354354 + "points": { + "c1": 22.374293341711308, + "c2": 20.460123479970854, + "c3": -19.272597956408013, + "c4": -14.45930254176805, + "c5": -16.334392149576217, + "c6": 5.564345224774939, + "c7": 14.01165274740562 }, - "vertexSeeds": { - "c1": 4.5941556224511135, - "c2": 4.615951424678654, - "c3": 4.642822467673917, - "c4": 4.613125311322542, - "c5": 4.613458002114267, - "c6": 4.631392758208316, - "c7": 4.599972456811094 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.65742024965329, + "c3": 5.547850208044372, + "c4": 4.438280166435527, + "c5": 3.3287101248266087, + "c6": 2.2191400832177637, + "c7": 1.109570041608845 }, "rgb": [77, 76, 132] }, @@ -338613,23 +338613,23 @@ "year": 1796, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -19.41986217549535, - "c2": 14.908063557164866, - "c3": 15.790535154451945, - "c4": -22.45217607450899, - "c5": -34.44987186655644, - "c6": 12.908247244020174, - "c7": 13.28971910575897 + "points": { + "c1": -9.509332402419219, + "c2": -35.34115356263679, + "c3": 21.40104955772965, + "c4": 16.795472850211667, + "c5": 13.565181336568898, + "c6": -12.378153765164061, + "c7": 18.835762670012926 }, - "vertexSeeds": { - "c1": 5.33293578086149, - "c2": 5.345440970665943, - "c3": 5.327597695978437, - "c4": 5.3352093798252795, - "c5": 5.3336618481181715, - "c6": 5.359451889120969, - "c7": 5.339380209921724 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141507, + "c3": 6.403143781784631, + "c4": 5.122515025427756, + "c5": 3.841886269070626, + "c6": 2.5612575127137505, + "c7": 1.2806287563568752 }, "rgb": [238, 201, 159] }, @@ -338640,23 +338640,23 @@ "year": 1796, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -23.941219514039613, - "c2": -29.838616009156315, - "c3": 24.3296848811042, - "c4": -4.9467383079259015, - "c5": -9.701477644455714, - "c6": -28.885789298025937, - "c7": -8.408775439797626 + "points": { + "c1": 27.164728795097474, + "c2": 22.919554644981275, + "c3": -7.579615729642409, + "c4": 33.45414821400391, + "c5": 10.87424312669475, + "c6": -27.247986225570315, + "c7": -20.607227312206078 }, - "vertexSeeds": { - "c1": 7.063813737803401, - "c2": 6.652732533179585, - "c3": 6.602104391649618, - "c4": 6.93655627892641, - "c5": 6.7088859823862075, - "c6": 6.936042642820268, - "c7": 7.171430902663151 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922324, + "c3": 8.576051779935284, + "c4": 6.860841423948224, + "c5": 5.145631067961162, + "c6": 3.4304207119741004, + "c7": 1.7152103559870613 }, "rgb": [86, 146, 138] }, @@ -338667,23 +338667,23 @@ "year": 1797, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -25.35749897289105, - "c2": 18.3776027551352, - "c3": -16.238362254087516, - "c4": 5.092685373837135, - "c5": 19.698971072285424, - "c6": -9.374376159141011, - "c7": 35.73029103733544 + "points": { + "c1": -4.39294192267085, + "c2": -36.890585284120235, + "c3": 1.987178154963793, + "c4": -1.5857968946500023, + "c5": -27.382495618533916, + "c6": -32.62138961610871, + "c7": -2.966950905875102 }, - "vertexSeeds": { - "c1": 7.3262726988154, - "c2": 7.2919475243436835, - "c3": 7.180459881171831, - "c4": 7.136312300535966, - "c5": 7.359693282911992, - "c6": 7.137756007097983, - "c7": 7.194864633254589 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284328, + "c3": 8.78409616273694, + "c4": 7.027276930189552, + "c5": 5.270457697642164, + "c6": 3.513638465094776, + "c7": 1.756819232547388 }, "rgb": [222, 0, 59] }, @@ -338694,23 +338694,23 @@ "year": 1797, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": -30.452794591480586, - "c2": 44.991399231621905, - "c3": 2.8807819378583446, - "c4": 45.829508788588605, - "c5": -15.699232699747881, - "c6": -41.4561562205433, - "c7": 13.546344928508063 + "points": { + "c1": -50.10135382648153, + "c2": 37.23320383500538, + "c3": -16.986151641074365, + "c4": 36.39367873323267, + "c5": 49.89537348385115, + "c6": 23.000616901182163, + "c7": 31.950000086115757 }, - "vertexSeeds": { - "c1": 4.76324747374384, - "c2": 4.726366474571801, - "c3": 4.813487957253363, - "c4": 4.4271644981537355, - "c5": 4.743642109710538, - "c6": 4.692860884340392, - "c7": 4.7340172313565585 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578361, + "c3": 6.079519186315304, + "c4": 4.863615349052241, + "c5": 3.6477115117891827, + "c6": 2.4318076745261203, + "c7": 1.2159038372630626 }, "rgb": [222, 0, 59] }, @@ -338721,23 +338721,23 @@ "year": 1796, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 13.373557521388086, - "c2": -12.996738733306746, - "c3": -26.614753542305802, - "c4": 19.001877353621175, - "c5": -12.778197376695495, - "c6": 18.70563669661349, - "c7": 32.70951531652154 + "points": { + "c1": -26.681955320571767, + "c2": -13.293400761771771, + "c3": 10.368030157875566, + "c4": 14.574937995391473, + "c5": 8.974055079975116, + "c6": 8.734579059402535, + "c7": 7.48186567555959 }, - "vertexSeeds": { - "c1": 9.400427976089219, - "c2": 9.090856314281648, - "c3": 9.169350446697756, - "c4": 9.066848958619998, - "c5": 8.994145708388478, - "c6": 9.012593374381018, - "c7": 9.236768937035523 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352296, + "c3": 11.696717521960238, + "c4": 9.357374017568198, + "c5": 7.0180305131761385, + "c6": 4.678687008784099, + "c7": 2.3393435043920396 }, "rgb": [58, 15, 49] }, @@ -338748,23 +338748,23 @@ "year": 1796, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 13.34028175148832, - "c2": -5.767630602769813, - "c3": -31.512928868519825, - "c4": -13.56062672888148, - "c5": -17.153101316515915, - "c6": -33.03676513819408, - "c7": 6.3923058633159044 + "points": { + "c1": 10.951902867700376, + "c2": 17.490767059828684, + "c3": -6.715826803127559, + "c4": -27.078147605945635, + "c5": 18.33002847135988, + "c6": -35.156651958831965, + "c7": -33.681498223564766 }, - "vertexSeeds": { - "c1": 6.604245577022655, - "c2": 6.783245248709524, - "c3": 6.5621612844240484, - "c4": 6.50928151926237, - "c5": 6.428591976469579, - "c6": 6.496186259027798, - "c7": 6.920138415936336 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -338775,23 +338775,23 @@ "year": 1796, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 3.6977686882089564, - "c2": -14.141987906976247, - "c3": 1.3632423863666396, - "c4": 28.478746142821525, - "c5": -21.987179493597424, - "c6": 27.00758778788519, - "c7": 8.786890847802301 + "points": { + "c1": -8.25275109660387, + "c2": -28.514399052850326, + "c3": 30.098173387742218, + "c4": 7.090909991838881, + "c5": 26.232457825573892, + "c6": 15.217469843256143, + "c7": -25.260078838212678 }, - "vertexSeeds": { - "c1": 6.8634720918063445, - "c2": 6.764909510027772, - "c3": 6.831279246316103, - "c4": 7.440507636580514, - "c5": 7.161151712422997, - "c6": 6.71893401003728, - "c7": 7.5824577179538695 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927884, + "c3": 9.15395284327323, + "c4": 7.323162274618589, + "c5": 5.492371705963935, + "c6": 3.6615811373092946, + "c7": 1.8307905686546544 }, "rgb": [86, 146, 138] }, @@ -338802,23 +338802,23 @@ "year": 1797, "resistanceReported": true, "duration": 22464000, - "curveSeeds": { - "c1": -1.2068407575224995, - "c2": -22.533272014341044, - "c3": 21.728843437788818, - "c4": -5.291117025316879, - "c5": -31.055608860886842, - "c6": 6.172801918928577, - "c7": -30.231855589224274 + "points": { + "c1": -6.329902945940731, + "c2": 36.21950836611974, + "c3": 26.770163737603383, + "c4": 17.17627567878514, + "c5": 28.394805544302443, + "c6": -20.980288969705455, + "c7": -25.371627745221787 }, - "vertexSeeds": { - "c1": 6.682303754178491, - "c2": 6.4946009769286075, - "c3": 6.3543633787786735, - "c4": 6.529331184596716, - "c5": 6.589015383106941, - "c6": 6.3730875639096265, - "c7": 6.4243228814454545 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198326, + "c3": 8.159963014331948, + "c4": 6.52797041146555, + "c5": 4.8959778085991745, + "c6": 3.263985205732775, + "c7": 1.6319926028663765 }, "rgb": [86, 146, 138] }, @@ -338829,23 +338829,23 @@ "year": 1797, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 38.506252949734915, - "c2": 13.371079625171198, - "c3": -36.820223212919714, - "c4": 20.465056738262163, - "c5": 30.22212797146379, - "c6": 26.464090234743068, - "c7": 8.824263683364485 + "points": { + "c1": -40.63716422215808, + "c2": 38.49557613523089, + "c3": 42.992641367338706, + "c4": 28.096171039444172, + "c5": -1.3682549923634184, + "c6": 45.06379274121714, + "c7": -2.162967014076571 }, - "vertexSeeds": { - "c1": 4.9437527589748544, - "c2": 4.917647515861546, - "c3": 4.776009382869096, - "c4": 4.748282193239061, - "c5": 4.864682303379821, - "c6": 4.787045573341847, - "c7": 4.795610706648829 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377255, + "c3": 5.963938973647714, + "c4": 4.7711511789181635, + "c5": 3.578363384188622, + "c6": 2.3855755894590818, + "c7": 1.1927877947295409 }, "rgb": [238, 201, 159] }, @@ -338856,23 +338856,23 @@ "year": 1796, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -32.353238874740136, - "c2": -22.061993808017178, - "c3": 31.14725470057722, - "c4": 3.17675251717624, - "c5": -19.033641841606382, - "c6": 20.541166053517337, - "c7": -10.808017956494833 + "points": { + "c1": 14.473218498370699, + "c2": 30.15978365521987, + "c3": -30.362272443844244, + "c4": -21.20967641450272, + "c5": 34.94876444356687, + "c6": 27.582198841264756, + "c7": -7.2683783582962995 }, - "vertexSeeds": { - "c1": 2.1372111692089604, - "c2": 2.002164048727732, - "c3": 2.0898443421451525, - "c4": 1.9936671066336042, - "c5": 2.251448972557549, - "c6": 1.8247998335242175, - "c7": 1.9637929875181321 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [238, 201, 159] }, @@ -338883,23 +338883,23 @@ "year": 1796, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 3.944431795616893, - "c2": -30.332069465737654, - "c3": 8.275186811732034, - "c4": 30.985346270548504, - "c5": -3.5637102178201197, - "c6": 31.915654704058298, - "c7": 18.290673963085624 + "points": { + "c1": 31.480106843464256, + "c2": 25.734005061600506, + "c3": -25.85500990331142, + "c4": -28.447244077917986, + "c5": 16.256805122336026, + "c6": 16.815328813086325, + "c7": 19.22469528338266 }, - "vertexSeeds": { - "c1": 9.676620939647895, - "c2": 9.640277351136355, - "c3": 9.637382673552324, - "c4": 9.662599259750872, - "c5": 9.656380327816354, - "c6": 9.661551377352492, - "c7": 9.694518258422368 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011087, + "c3": 11.558021266759262, + "c4": 9.24641701340735, + "c5": 6.934812760055435, + "c6": 4.623208506703521, + "c7": 2.311604253351913 }, "rgb": [86, 146, 138] }, @@ -338910,23 +338910,23 @@ "year": 1797, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 26.417784965997008, - "c2": 18.415395042397904, - "c3": 20.954912483142138, - "c4": -20.553415344500173, - "c5": 35.87127490864913, - "c6": 6.036613584254937, - "c7": 27.80193288170645 + "points": { + "c1": 10.740623492114963, + "c2": 2.341954581351686, + "c3": 26.09312770605125, + "c4": -35.26100982280276, + "c5": 28.1614253036053, + "c6": 27.514632335749994, + "c7": -6.162343809051702 }, - "vertexSeeds": { - "c1": 2.0523412833832, - "c2": 1.9241192973736814, - "c3": 2.063576143601905, - "c4": 2.021267593768438, - "c5": 2.4501097398482043, - "c6": 2.0516760393688047, - "c7": 1.976712284645045 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550625, + "c3": 3.1900138696255205, + "c4": 2.5520110957004163, + "c5": 1.9140083217753119, + "c6": 1.2760055478502075, + "c7": 0.6380027739251044 }, "rgb": [222, 0, 59] }, @@ -338937,23 +338937,23 @@ "year": 1796, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 15.617091229880131, - "c2": 17.776625543200403, - "c3": -20.564360984030614, - "c4": -15.577391337470113, - "c5": 19.298461375527573, - "c6": -11.37064935932668, - "c7": -8.378964301505647 + "points": { + "c1": -7.152444099943523, + "c2": -19.394857559580757, + "c3": -0.9269236236124563, + "c4": -30.254935347407848, + "c5": -27.269708935565106, + "c6": 5.501595838465946, + "c7": 11.540813083459398 }, - "vertexSeeds": { - "c1": 3.2460910357354598, - "c2": 3.353084375724147, - "c3": 3.3147735471873387, - "c4": 3.261910415793371, - "c5": 3.318718196299122, - "c6": 3.300754398413609, - "c7": 3.249790798814104 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998608, + "c3": 4.0221914008321695, + "c4": 3.2177531206657304, + "c5": 2.4133148404992912, + "c6": 1.6088765603328785, + "c7": 0.8044382801664393 }, "rgb": [77, 76, 132] }, @@ -338964,23 +338964,23 @@ "year": 1797, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 9.879182008817828, - "c2": -15.328583101559072, - "c3": 12.78830556233914, - "c4": 22.845357309982546, - "c5": -16.533443091837736, - "c6": 4.66614046395479, - "c7": -3.940728643461977 + "points": { + "c1": -19.156475460340076, + "c2": -13.905885008725232, + "c3": 9.899693859623454, + "c4": -22.980263876135883, + "c5": -23.577969110169107, + "c6": 14.541979307084311, + "c7": 11.635088713259982 }, - "vertexSeeds": { - "c1": 5.085515479349388, - "c2": 5.409455997718268, - "c3": 5.3308610556874765, - "c4": 5.407759310473521, - "c5": 5.574830468103918, - "c6": 5.137698928619887, - "c7": 4.855663649924042 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583915, + "c3": 6.657420249653254, + "c4": 5.325936199722606, + "c5": 3.9944521497919574, + "c6": 2.662968099861297, + "c7": 1.3314840499306484 }, "rgb": [77, 76, 132] }, @@ -338991,23 +338991,23 @@ "year": 1797, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -10.877741068680486, - "c2": -11.235032563970016, - "c3": -8.293532230018982, - "c4": -3.0120132008648284, - "c5": -20.967722744380033, - "c6": -12.227423911755963, - "c7": -31.247429293907583 + "points": { + "c1": -26.578554628349643, + "c2": 13.89308277385608, + "c3": -26.602103131217085, + "c4": 10.415563168458618, + "c5": 35.42160071855312, + "c6": -28.549533154103344, + "c7": 25.2523983394862 }, - "vertexSeeds": { - "c1": 1.9105142557679566, - "c2": 1.9543921346940232, - "c3": 1.9219958286697858, - "c4": 1.942679973238479, - "c5": 1.9286178275761787, - "c6": 1.9345388262537662, - "c7": 1.9277100601130315 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102633, + "c3": 2.3578363384188585, + "c4": 1.8862690707350835, + "c5": 1.4147018030513088, + "c6": 0.9431345353675339, + "c7": 0.4715672676837748 }, "rgb": [238, 201, 159] }, @@ -339018,23 +339018,23 @@ "year": 1796, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -3.1449308386177144, - "c2": -15.642801704060528, - "c3": 3.1939674799415343, - "c4": 6.380755494600702, - "c5": 15.283123378779024, - "c6": -13.234922523203636, - "c7": -12.43755932239376 + "points": { + "c1": 26.545026656690645, + "c2": -12.18334765084733, + "c3": -8.838582481079158, + "c4": -26.918762954535815, + "c5": 9.316414967085201, + "c6": 10.456712032651922, + "c7": 22.06772368297073 }, - "vertexSeeds": { - "c1": 7.995253268691374, - "c2": 8.58051306764072, - "c3": 7.086184444018243, - "c4": 7.27846383493697, - "c5": 8.154262694907064, - "c6": 8.296528278386711, - "c7": 8.034040711921818 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858526, + "c3": 10.263522884882107, + "c4": 8.210818307905685, + "c5": 6.158113730929267, + "c6": 4.105409153952842, + "c7": 2.0527045769764176 }, "rgb": [238, 201, 159] }, @@ -339045,23 +339045,23 @@ "year": 1796, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 10.086107666883962, - "c2": 18.2036027148836, - "c3": -21.238088821714385, - "c4": -4.696199974104847, - "c5": -15.191672137352805, - "c6": 4.447995076172134, - "c7": 21.2954346643159 + "points": { + "c1": 26.34228138421748, + "c2": 23.243385816918533, + "c3": 10.38231472280794, + "c4": 21.2462817482753, + "c5": 16.3089761593102, + "c6": -3.874341794064673, + "c7": 4.848078843275353 }, - "vertexSeeds": { - "c1": 8.635728895937504, - "c2": 8.514847474809056, - "c3": 8.995841829573775, - "c4": 9.363359604192087, - "c5": 9.32529707082596, - "c6": 8.827750878012676, - "c7": 8.655758629005362 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547855, + "c3": 11.234396671289872, + "c4": 8.987517337031903, + "c5": 6.74063800277392, + "c6": 4.493758668515952, + "c7": 2.2468793342579687 }, "rgb": [222, 0, 59] }, @@ -339072,23 +339072,23 @@ "year": 1796, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 1.9221882839112894, - "c2": 6.072690459868998, - "c3": 20.226621534575006, - "c4": -21.88921604217306, - "c5": -26.04771947062316, - "c6": -13.02357394940541, - "c7": -11.417706469948513 + "points": { + "c1": -15.132905920934988, + "c2": 10.010002821906578, + "c3": -6.069530514352682, + "c4": 0.88981775151154, + "c5": -22.73137392850151, + "c6": -28.68485260897391, + "c7": -16.7331716791942 }, - "vertexSeeds": { - "c1": 11.168756973326573, - "c2": 11.172740074000316, - "c3": 10.809816329309463, - "c4": 10.69210360111732, - "c5": 11.401025201059005, - "c6": 11.079322423334867, - "c7": 11.442749646321836 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.588072122052694, + "c3": 13.823393435043942, + "c4": 11.058714748035143, + "c5": 8.294036061026347, + "c6": 5.529357374017549, + "c7": 2.7646786870087974 }, "rgb": [77, 76, 132] }, @@ -339099,23 +339099,23 @@ "year": 1797, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -13.846139119138812, - "c2": 28.781757874583832, - "c3": -15.721883225942836, - "c4": -8.89028036367931, - "c5": -5.485995984733801, - "c6": 10.43346542671788, - "c7": 8.767440677226475 + "points": { + "c1": -3.913028688952224, + "c2": 7.22093175404887, + "c3": 0.6566318342275324, + "c4": 35.37452166705228, + "c5": 12.53711691721017, + "c6": -22.895054500795418, + "c7": 13.98571213194402 }, - "vertexSeeds": { - "c1": 3.0752477227555017, - "c2": 2.891407497079812, - "c3": 3.4663916613860177, - "c4": 3.3242083934076874, - "c5": 3.2289165518643776, - "c6": 3.0445928751649602, - "c7": 3.0984236194415478 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280166, + "c3": 4.184003698566807, + "c4": 3.3472029588534458, + "c5": 2.510402219140081, + "c6": 1.6736014794267209, + "c7": 0.8368007397133604 }, "rgb": [77, 76, 132] }, @@ -339126,23 +339126,23 @@ "year": 1797, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -9.955100841388443, - "c2": -16.739151458729463, - "c3": 43.226855059130216, - "c4": 3.413961520635773, - "c5": 43.445110713648134, - "c6": -38.17655938703947, - "c7": 3.447851493128951 + "points": { + "c1": 12.9378582757423, + "c2": 45.93979108109488, + "c3": 35.39335467042953, + "c4": -36.89277711693929, + "c5": 4.310601496782688, + "c6": 28.087877285473994, + "c7": -11.465018811832714 }, - "vertexSeeds": { - "c1": 7.273138839439915, - "c2": 7.24482951855326, - "c3": 7.051328210429986, - "c4": 7.622283362722342, - "c5": 7.122118856153743, - "c6": 7.216125492060758, - "c7": 7.4747891677955804 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887653, + "c3": 9.130836800739708, + "c4": 7.304669440591763, + "c5": 5.478502080443816, + "c6": 3.652334720295892, + "c7": 1.826167360147946 }, "rgb": [58, 15, 49] }, @@ -339153,23 +339153,23 @@ "year": 1796, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -23.36254852769611, - "c2": -29.831828643796317, - "c3": -27.25531209638243, - "c4": 20.053387543208782, - "c5": 17.654482590042225, - "c6": 2.8229332917325145, - "c7": 24.49180933457065 + "points": { + "c1": 6.030813379687643, + "c2": -13.19432405353064, + "c3": 23.413140374460433, + "c4": 10.16359865477991, + "c5": 8.890174839758743, + "c6": 25.680235650298876, + "c7": 29.105718768887648 }, - "vertexSeeds": { - "c1": 5.727869959834672, - "c2": 5.7657129262437685, - "c3": 5.878716521557807, - "c4": 6.138387815527314, - "c5": 5.94326612187094, - "c6": 5.715529497727119, - "c7": 5.723382781238109 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.79334257975035, + "c3": 7.327785483125295, + "c4": 5.86222838650024, + "c5": 4.396671289875165, + "c6": 2.9311141932501106, + "c7": 1.4655570966250553 }, "rgb": [222, 0, 59] }, @@ -339180,23 +339180,23 @@ "year": 1796, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 6.672952760224149, - "c2": 28.539655680910286, - "c3": -13.425021660435382, - "c4": -23.39512943625876, - "c5": 9.654173616249963, - "c6": 11.120112254493975, - "c7": -27.36698028440636 + "points": { + "c1": -9.102412681372098, + "c2": -25.789537418671596, + "c3": -27.70948262617373, + "c4": -11.54468039985267, + "c5": -16.895081682144124, + "c6": 12.719093023839577, + "c7": 12.59609250583469 }, - "vertexSeeds": { - "c1": 6.388693914516837, - "c2": 6.329813622144335, - "c3": 6.366310830755948, - "c4": 6.345007425611705, - "c5": 6.3213594948815475, - "c6": 6.376278543136281, - "c7": 6.353893221729765 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273274, + "c3": 7.628294036060961, + "c4": 6.102635228848799, + "c5": 4.576976421636637, + "c6": 3.0513176144244754, + "c7": 1.5256588072121617 }, "rgb": [222, 0, 59] }, @@ -339207,23 +339207,23 @@ "year": 1796, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 14.909507901812475, - "c2": 2.968150157955087, - "c3": 4.153523315018262, - "c4": -10.295020523294959, - "c5": -12.647836700342015, - "c6": -21.150617164888892, - "c7": 11.966664506410225 + "points": { + "c1": -15.823795820695526, + "c2": -0.18013506117751632, + "c3": -20.595403983158345, + "c4": -31.80161622659368, + "c5": -11.969831899948275, + "c6": 21.32514836606282, + "c7": -22.15806671463578 }, - "vertexSeeds": { - "c1": 6.472437192401167, - "c2": 6.379984909895999, - "c3": 6.4721210639714055, - "c4": 6.410212198304014, - "c5": 6.381466715181977, - "c6": 6.478420914133568, - "c7": 6.422642250763481 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474385, + "c3": 7.743874248728604, + "c4": 6.195099398982924, + "c5": 4.646324549237142, + "c6": 3.097549699491462, + "c7": 1.548774849745782 }, "rgb": [86, 146, 138] }, @@ -339234,23 +339234,23 @@ "year": 1797, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -9.656620548814939, - "c2": 8.88301630532223, - "c3": 38.7892593119469, - "c4": -21.55679292689158, - "c5": -0.2031241714323997, - "c6": 31.82686435793601, - "c7": -18.99028324189638 + "points": { + "c1": -33.13661509929395, + "c2": -31.923459106076052, + "c3": 21.43881840050298, + "c4": -11.100354003176317, + "c5": -30.147578147861886, + "c6": -5.473956935858617, + "c7": -13.061500278303352 }, - "vertexSeeds": { - "c1": 4.996230573395492, - "c2": 5.076503118389181, - "c3": 4.952347997007061, - "c4": 5.020781458398032, - "c5": 5.0336153488814235, - "c6": 5.006152203194943, - "c7": 4.992169155690174 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.37864077669902, + "c3": 6.1488673139158605, + "c4": 4.91909385113268, + "c5": 3.6893203883495214, + "c6": 2.45954692556634, + "c7": 1.22977346278317 }, "rgb": [86, 146, 138] }, @@ -339261,23 +339261,23 @@ "year": 1797, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -16.55640746363117, - "c2": 41.81281564211318, - "c3": -17.66967710927794, - "c4": -1.2592472576393021, - "c5": -7.309756461740122, - "c6": 46.45923763057023, - "c7": 15.243308982473266 + "points": { + "c1": 20.745599685183947, + "c2": -0.5368536068601557, + "c3": -21.61367053210775, + "c4": 39.58200240354803, + "c5": 22.449328717588486, + "c6": -46.5370870716994, + "c7": -27.46242735375075 }, - "vertexSeeds": { - "c1": 8.624811231544909, - "c2": 8.232913084554317, - "c3": 8.513751485214032, - "c4": 8.683789579343559, - "c5": 8.363972736739093, - "c6": 8.47632441382413, - "c7": 8.299090488770682 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019426, + "c3": 10.3559870550162, + "c4": 8.284789644012939, + "c5": 6.213592233009713, + "c6": 4.142394822006486, + "c7": 2.0711974110032267 }, "rgb": [58, 15, 49] }, @@ -339288,23 +339288,23 @@ "year": 1796, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 15.484410685660698, - "c2": 18.17965629824141, - "c3": 6.840156093502777, - "c4": 19.29591260083179, - "c5": -9.500236486491406, - "c6": -1.4355073339173643, - "c7": 3.8886510305714914 + "points": { + "c1": 4.5996514329899725, + "c2": -25.080586822969234, + "c3": -20.737116888932746, + "c4": -19.482745178982256, + "c5": 6.119281408179475, + "c6": -21.351529131923897, + "c7": -3.7591691790143216 }, - "vertexSeeds": { - "c1": 2.1510926471544227, - "c2": 2.0822537097282066, - "c3": 2.067234336982877, - "c4": 2.1488852818390383, - "c5": 2.104857049744071, - "c6": 2.118855843928603, - "c7": 2.143544135566681 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [86, 146, 138] }, @@ -339315,23 +339315,23 @@ "year": 1797, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -7.358323160760321, - "c2": -2.9364610925724506, - "c3": -23.710534089126956, - "c4": -17.857696236500665, - "c5": -22.123172498689204, - "c6": 29.39463932002325, - "c7": -5.164571297868168 + "points": { + "c1": -15.675251598212398, + "c2": 12.210008027152274, + "c3": 11.44251207590452, + "c4": 7.1528393468803095, + "c5": -8.213402192724207, + "c6": 25.818586852011418, + "c7": 27.40943147730648 }, - "vertexSeeds": { - "c1": 4.645848266812834, - "c2": 4.663094995788808, - "c3": 4.632060163461422, - "c4": 4.615512347333633, - "c5": 4.619604157589695, - "c6": 4.635195204961717, - "c7": 4.636216663744511 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693513, + "c3": 5.570966250577891, + "c4": 4.456773000462342, + "c5": 3.34257975034672, + "c6": 2.228386500231171, + "c7": 1.1141932501155487 }, "rgb": [77, 76, 132] }, @@ -339342,23 +339342,23 @@ "year": 1797, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -13.299149016608325, - "c2": 13.43360716548679, - "c3": 7.207850703516954, - "c4": -23.112975068340425, - "c5": -38.86704425184764, - "c6": -18.852969789284202, - "c7": 12.219863223842879 + "points": { + "c1": 6.418906724160628, + "c2": 39.868712525538186, + "c3": 35.397657052842746, + "c4": 9.890559210714322, + "c5": 21.24452919407488, + "c6": 13.498116158323327, + "c7": 11.519776578846397 }, - "vertexSeeds": { - "c1": 1.8737189095477802, - "c2": 1.8014281743283196, - "c3": 1.7953526969335851, - "c4": 1.8013632128194044, - "c5": 1.804386027635449, - "c6": 1.788237406956591, - "c7": 1.8940852623922209 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981967, + "c3": 2.288488210818311, + "c4": 1.8307905686546473, + "c5": 1.3730929264909835, + "c6": 0.9153952843273275, + "c7": 0.45769764216366376 }, "rgb": [58, 15, 49] }, @@ -339369,23 +339369,23 @@ "year": 1797, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -34.12882132189761, - "c2": 7.005811907549727, - "c3": -1.8217892600045147, - "c4": 13.013390524004038, - "c5": 37.664356128142586, - "c6": 10.746090747766189, - "c7": -22.808827085943552 + "points": { + "c1": -3.877637125341316, + "c2": 17.326388745207325, + "c3": -40.629984864769675, + "c4": 18.33844576187213, + "c5": -34.775929088225304, + "c6": -10.631208937432824, + "c7": -37.37277043258314 }, - "vertexSeeds": { - "c1": 3.733778810596524, - "c2": 3.1534792066623614, - "c3": 4.021008339049242, - "c4": 3.840927598655976, - "c5": 3.99786264906673, - "c6": 3.9439638918258177, - "c7": 3.9756959942567245 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.9361997226074905, + "c3": 4.946833102172907, + "c4": 3.9574664817383276, + "c5": 2.968099861303744, + "c6": 1.9787332408691638, + "c7": 0.9893666204345837 }, "rgb": [77, 76, 132] }, @@ -339396,23 +339396,23 @@ "year": 1796, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 23.296056097431514, - "c2": -16.190638844808277, - "c3": 1.2006560711553398, - "c4": -13.146564452605512, - "c5": 7.042225448130626, - "c6": 18.79943942696718, - "c7": 3.491242623647448 + "points": { + "c1": 19.047231106655236, + "c2": 11.712906445905222, + "c3": -9.76718161468024, + "c4": -8.250615754097776, + "c5": 13.804086869650458, + "c6": 5.982287945316234, + "c7": -22.068379021451797 }, - "vertexSeeds": { - "c1": 8.894109054279793, - "c2": 8.89094491359568, - "c3": 8.91418273506721, - "c4": 8.90131088257941, - "c5": 8.869592528088958, - "c6": 8.872563305485105, - "c7": 8.890224852294844 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502002, + "c3": 10.633379565418522, + "c4": 8.506703652334762, + "c5": 6.380027739251001, + "c6": 4.25335182616724, + "c7": 2.1266759130837607 }, "rgb": [77, 76, 132] }, @@ -339423,23 +339423,23 @@ "year": 1797, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 34.278999732259486, - "c2": -2.62505322068219, - "c3": -31.72873695078865, - "c4": -33.36144300144549, - "c5": 1.4990209510758703, - "c6": 29.72204047088983, - "c7": 16.478450305541024 + "points": { + "c1": 6.276291688795318, + "c2": 9.257387100115281, + "c3": 31.30376689661619, + "c4": -34.39362847296446, + "c5": -28.79746038712938, + "c6": -2.8290995095261238, + "c7": -15.322232289837864 }, - "vertexSeeds": { - "c1": 5.591092943068368, - "c2": 5.526518140303023, - "c3": 5.577598326028687, - "c4": 5.548235196712118, - "c5": 5.547355705307353, - "c6": 5.521154419418721, - "c7": 5.553217842241152 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624117, + "c3": 6.680536292186748, + "c4": 5.344429033749483, + "c5": 4.008321775312112, + "c6": 2.6722145168747415, + "c7": 1.3361072584373708 }, "rgb": [238, 201, 159] }, @@ -339450,23 +339450,23 @@ "year": 1797, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -7.03069805569589, - "c2": -16.942534455313055, - "c3": 21.661600421130483, - "c4": -9.927174219523867, - "c5": 10.252101087088949, - "c6": -22.97285816096473, - "c7": -9.362120459240518 + "points": { + "c1": -30.7302011067201, + "c2": -13.15053298780402, + "c3": 16.51400131894897, + "c4": -30.404085347918265, + "c5": 9.67394616159605, + "c6": 29.810850833222183, + "c7": -15.002588715911504 }, - "vertexSeeds": { - "c1": 8.036062632641219, - "c2": 7.987736652669279, - "c3": 8.07629411498853, - "c4": 8.047702312831394, - "c5": 8.095013320608123, - "c6": 8.017098238360562, - "c7": 8.040561124329006 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.59500693481276, + "c3": 9.662505779010633, + "c4": 7.730004623208506, + "c5": 5.79750346740638, + "c6": 3.865002311604253, + "c7": 1.9325011558021266 }, "rgb": [58, 15, 49] }, @@ -339477,23 +339477,23 @@ "year": 1797, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 21.053136177531584, - "c2": 20.78554765819485, - "c3": -12.394714012200229, - "c4": -16.598517043624557, - "c5": 9.490050345420904, - "c6": -14.773604047714826, - "c7": 21.565485994283847 + "points": { + "c1": -34.00735787268541, + "c2": 29.132455109822672, + "c3": -1.6890876835946926, + "c4": -29.52304945742333, + "c5": 0.4707875095182885, + "c6": 8.895426475701584, + "c7": 34.005315293527914 }, - "vertexSeeds": { - "c1": 2.9840916684231784, - "c2": 2.983632916698513, - "c3": 3.1492824214108666, - "c4": 3.019724802384667, - "c5": 3.1058185551179047, - "c6": 2.965463745718411, - "c7": 3.1160426321093393 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636611, + "c3": 3.814147018030518, + "c4": 3.051317614424412, + "c5": 2.2884882108183056, + "c6": 1.5256588072122124, + "c7": 0.7628294036061062 }, "rgb": [86, 146, 138] }, @@ -339504,23 +339504,23 @@ "year": 1797, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 4.097065013697325, - "c2": -31.11489360036066, - "c3": 23.63085211344532, - "c4": 28.88683998488439, - "c5": -2.14058668973869, - "c6": 19.22284021799043, - "c7": 34.590883592997756 + "points": { + "c1": -6.14733874132617, + "c2": 18.241385306014365, + "c3": -22.62135110974124, + "c4": -7.217918570516222, + "c5": -30.5365272763184, + "c6": 13.70580792013024, + "c7": -18.014628106987917 }, - "vertexSeeds": { - "c1": 8.961322218105604, - "c2": 8.795415528113061, - "c3": 8.779735008314148, - "c4": 7.984348249333443, - "c5": 8.384656115713971, - "c6": 8.710683789076434, - "c7": 8.718790697102012 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.398058252427186, + "c3": 11.165048543689325, + "c4": 8.932038834951461, + "c5": 6.6990291262135875, + "c6": 4.466019417475724, + "c7": 2.233009708737862 }, "rgb": [77, 76, 132] }, @@ -339531,23 +339531,23 @@ "year": 1797, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -38.18549021817455, - "c2": -20.73706937474428, - "c3": -4.45395177265614, - "c4": -33.448325509177984, - "c5": -22.001107482397188, - "c6": 36.95774342393469, - "c7": -33.43959632037632 + "points": { + "c1": 23.427499411835228, + "c2": -0.35313493735147006, + "c3": 25.76560451335061, + "c4": 3.4458618893132993, + "c5": -9.501992125524524, + "c6": 14.458334357459137, + "c7": 16.473364447039863 }, - "vertexSeeds": { - "c1": 5.314745637134948, - "c2": 5.25446744935708, - "c3": 5.46407706397615, - "c4": 5.424210829429924, - "c5": 5.3089076603672565, - "c6": 5.50587953354887, - "c7": 5.343585993116096 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463239, + "c3": 6.588072122052714, + "c4": 5.270457697642167, + "c5": 3.9528432732316197, + "c6": 2.6352288488210727, + "c7": 1.3176144244105472 }, "rgb": [77, 76, 132] }, @@ -339558,23 +339558,23 @@ "year": 1797, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 32.65917515171692, - "c2": -27.440010776302177, - "c3": 1.749884130253065, - "c4": -12.95747657081975, - "c5": -21.7609022141001, - "c6": -7.980574219495814, - "c7": -25.45539333180213 + "points": { + "c1": -17.846455347390137, + "c2": -3.2168859593249124, + "c3": -34.77747193623759, + "c4": 10.608015947929708, + "c5": 31.695470337448427, + "c6": -32.62295758841795, + "c7": 9.000212242686565 }, - "vertexSeeds": { - "c1": 7.028136752833902, - "c2": 7.0197154143821745, - "c3": 7.0409893918991795, - "c4": 7.048783699778076, - "c5": 7.020691460939165, - "c6": 7.038654158820988, - "c7": 7.02463459694348 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640824, + "c3": 8.414239482200742, + "c4": 6.731391585760661, + "c5": 5.048543689320245, + "c6": 3.365695792880163, + "c7": 1.6828478964400815 }, "rgb": [222, 0, 59] }, @@ -339585,23 +339585,23 @@ "year": 1796, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 25.197457248771904, - "c2": 7.704464854988537, - "c3": 1.449721562230593, - "c4": -10.49915881421986, - "c5": 3.9366180697491977, - "c6": 9.881575822663407, - "c7": 12.626264242798023 + "points": { + "c1": -11.100320851844934, + "c2": -28.224931731812664, + "c3": 23.31829022721616, + "c4": -14.605553790232948, + "c5": -25.446690321004578, + "c6": -24.435343213326966, + "c7": -19.948905589000127 }, - "vertexSeeds": { - "c1": 7.489012767595504, - "c2": 7.441774451528074, - "c3": 7.515173969293134, - "c4": 7.513103434404832, - "c5": 7.404915514386888, - "c6": 7.501818760933903, - "c7": 7.5049209269194845 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847435, + "c3": 9.107720758206195, + "c4": 7.286176606564956, + "c5": 5.464632454923717, + "c6": 3.643088303282478, + "c7": 1.821544151641239 }, "rgb": [238, 201, 159] }, @@ -339612,23 +339612,23 @@ "year": 1797, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 29.86665550051282, - "c2": -5.104811919087226, - "c3": -21.70255306077045, - "c4": 8.281820383457053, - "c5": -31.30694434525139, - "c6": -4.4241747434936585, - "c7": -30.08089562960938 + "points": { + "c1": -36.57783024710078, + "c2": 40.263416955392486, + "c3": -7.525142080714659, + "c4": -7.489451413305957, + "c5": 5.400395269577551, + "c6": 7.923427987024247, + "c7": -20.811652873899046 }, - "vertexSeeds": { - "c1": 1.6497887270174458, - "c2": 1.6095565372882585, - "c3": 1.5680480218137356, - "c4": 1.6218070030707712, - "c5": 1.6357458741728532, - "c6": 1.5364745329506886, - "c7": 1.567498271406668 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590844, + "c3": 1.9879796578825704, + "c4": 1.5903837263060563, + "c5": 1.1927877947295422, + "c6": 0.7951918631530281, + "c7": 0.3975959315765141 }, "rgb": [58, 15, 49] }, @@ -339639,23 +339639,23 @@ "year": 1797, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 20.92329398331048, - "c2": -7.374246656405575, - "c3": -9.517256223379412, - "c4": -11.373268816175187, - "c5": 24.657491454603118, - "c6": -19.826604963941655, - "c7": 30.59731107726273 + "points": { + "c1": 43.57468857263399, + "c2": 22.474061194030114, + "c3": 23.61016958689835, + "c4": 0.9764682915112672, + "c5": -11.643325096762936, + "c6": -4.327238160855686, + "c7": 37.12713874266363 }, - "vertexSeeds": { - "c1": 1.9732070652605496, - "c2": 1.9731911396028754, - "c3": 1.9140549471400135, - "c4": 1.9426588091044963, - "c5": 1.968347025379451, - "c6": 2.0353347847557557, - "c7": 2.0707432587569654 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.0790568654646306, + "c3": 2.5658807212205272, + "c4": 2.0527045769764203, + "c5": 1.5395284327323173, + "c6": 1.0263522884882101, + "c7": 0.5131761442441032 }, "rgb": [58, 15, 49] }, @@ -339666,23 +339666,23 @@ "year": 1797, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 18.789690225202957, - "c2": -11.075402764850345, - "c3": -20.595698235863235, - "c4": -3.2557760823188566, - "c5": 23.856244883015034, - "c6": 0.027493302895098992, - "c7": -7.789152868471856 + "points": { + "c1": 30.725885270426055, + "c2": 13.231887246719445, + "c3": 5.496879200496089, + "c4": 10.914424049693167, + "c5": -4.955781055570387, + "c6": -31.745414429321478, + "c7": -27.045513452253125 }, - "vertexSeeds": { - "c1": 4.24806476085472, - "c2": 4.1772133357635814, - "c3": 4.0741268247989435, - "c4": 4.2535496277350315, - "c5": 4.064971835620497, - "c6": 4.038778179601453, - "c7": 4.162180381724612 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130372, + "c3": 5.247341655108639, + "c4": 4.197873324086918, + "c5": 3.148404993065186, + "c6": 2.0989366620434535, + "c7": 1.0494683310217212 }, "rgb": [222, 0, 59] }, @@ -339693,23 +339693,23 @@ "year": 1797, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -12.191771202745603, - "c2": -16.635369940037492, - "c3": 19.740039531448804, - "c4": 0.6895540361923196, - "c5": -18.145482390554083, - "c6": -2.6984934346950915, - "c7": -25.888049403746766 + "points": { + "c1": 11.807531178272807, + "c2": -27.342952411960862, + "c3": -23.861404733811764, + "c4": 20.443532089683426, + "c5": -21.328034925259303, + "c6": -4.1370105631042975, + "c7": -26.704252799011375 }, - "vertexSeeds": { - "c1": 6.706856804125474, - "c2": 6.76728610129679, - "c3": 6.7523300956500805, - "c4": 6.680084655843697, - "c5": 6.428936825671889, - "c6": 6.785080541478899, - "c7": 6.420428559965179 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319006, + "c3": 8.229311141932508, + "c4": 6.583448913546011, + "c5": 4.937586685159514, + "c6": 3.291724456772995, + "c7": 1.6458622283864974 }, "rgb": [58, 15, 49] }, @@ -339720,23 +339720,23 @@ "year": 1797, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -20.340215884146094, - "c2": 23.044938402819717, - "c3": 18.11302005927182, - "c4": 22.18017717941848, - "c5": -13.675609466396356, - "c6": -27.367820223255613, - "c7": 23.579868149363683 + "points": { + "c1": -19.635183928455206, + "c2": 8.971291768619388, + "c3": 19.038202444896875, + "c4": 1.2479135914973938, + "c5": -16.581322064036968, + "c6": 20.741109582119392, + "c7": -19.533946760794635 }, - "vertexSeeds": { - "c1": 6.831731069235138, - "c2": 6.586899448839539, - "c3": 6.544437479076882, - "c4": 6.485896287070202, - "c5": 6.461876302539565, - "c6": 6.613177827556114, - "c7": 6.777119019273931 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -339747,23 +339747,23 @@ "year": 1797, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 0.546657370368326, - "c2": -12.774253073785081, - "c3": 2.97902786702862, - "c4": 8.932862588965236, - "c5": -4.829647536412143, - "c6": 7.608570543388396, - "c7": 19.449055258725117 + "points": { + "c1": 7.290420601720385, + "c2": -12.859979438535067, + "c3": 7.963098839479912, + "c4": -16.253581721869676, + "c5": -17.888852612233954, + "c6": -25.483647477500877, + "c7": 2.80492312621989 }, - "vertexSeeds": { - "c1": 6.74363204052649, - "c2": 6.688490552314949, - "c3": 6.718154944895117, - "c4": 6.736593765944527, - "c5": 6.737351298957705, - "c6": 6.772580754461593, - "c7": 6.729095326620307 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077653, + "c3": 8.090614886731355, + "c4": 6.472491909385058, + "c5": 4.8543689320388905, + "c6": 3.2362459546925937, + "c7": 1.6181229773462968 }, "rgb": [222, 0, 59] }, @@ -339774,23 +339774,23 @@ "year": 1796, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -14.429420939296948, - "c2": 18.466107872650944, - "c3": 6.064129753236362, - "c4": -2.2323942629345908, - "c5": -6.76467280097938, - "c6": 11.983148471817053, - "c7": 16.55674201726095 + "points": { + "c1": 11.064320022307598, + "c2": -2.372927035935465, + "c3": 19.022950050942868, + "c4": -17.109138783443804, + "c5": -14.91251326463196, + "c6": -8.205113560745218, + "c7": -0.15261200131825703 }, - "vertexSeeds": { - "c1": 1.5528354724762667, - "c2": 1.4707855670563252, - "c3": 1.4842591822218878, - "c4": 1.5357284861962013, - "c5": 1.5502010833304503, - "c6": 1.4809628648760238, - "c7": 1.5208141182430581 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.2468793342579767, + "c3": 1.8723994452149773, + "c4": 1.4979195561719827, + "c5": 1.1234396671289884, + "c6": 0.7489597780859937, + "c7": 0.3744798890429945 }, "rgb": [222, 0, 59] }, @@ -339801,23 +339801,23 @@ "year": 1796, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 0.598295801004106, - "c2": 25.21303154927186, - "c3": -7.441927349039858, - "c4": -23.505306091603984, - "c5": -22.62204745649769, - "c6": 5.313754480009756, - "c7": -24.14786647412904 + "points": { + "c1": 10.694237060637398, + "c2": 20.0538613370137, + "c3": -24.532040364053483, + "c4": -24.3005915987558, + "c5": -12.272654689086378, + "c6": -20.58442526033841, + "c7": 10.125271635173476 }, - "vertexSeeds": { - "c1": 8.220947398324935, - "c2": 8.123911454532058, - "c3": 8.206163746954893, - "c4": 8.143026672901962, - "c5": 8.20110405497032, - "c6": 8.123905729910955, - "c7": 8.144711472417931 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094314, + "c3": 9.824318076745262, + "c4": 7.859454461396209, + "c5": 5.894590846047157, + "c6": 3.9297272306981044, + "c7": 1.9648636153490522 }, "rgb": [77, 76, 132] }, @@ -339828,23 +339828,23 @@ "year": 1797, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -1.062413082649492, - "c2": -4.662764775273651, - "c3": -15.796446945922135, - "c4": 10.860694463570574, - "c5": 12.367904273501871, - "c6": 31.821103845336317, - "c7": -2.5222024330649404 + "points": { + "c1": -6.236270060005168, + "c2": 5.48744347841707, + "c3": -6.9129677305982575, + "c4": -5.48118257550237, + "c5": -14.026706844382506, + "c6": -21.494255945624527, + "c7": 8.631292305117128 }, - "vertexSeeds": { - "c1": 8.673166777733238, - "c2": 8.435973256614409, - "c3": 7.8345800984436655, - "c4": 8.099657734741056, - "c5": 8.174053363528019, - "c6": 7.862618335757147, - "c7": 8.770572051251458 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220534, + "c3": 10.471567267683772, + "c4": 8.377253814147021, + "c5": 6.282940360610261, + "c6": 4.188626907073511, + "c7": 2.0943134535367496 }, "rgb": [238, 201, 159] }, @@ -339855,23 +339855,23 @@ "year": 1797, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -8.687999797585718, - "c2": -35.50037221206072, - "c3": -11.064562262236652, - "c4": -37.34238180803508, - "c5": -27.87546374404686, - "c6": 5.885917445062901, - "c7": -6.256788990054758 + "points": { + "c1": 17.24222319218309, + "c2": -35.4417913520395, + "c3": -24.536886800354942, + "c4": -3.991619802127076, + "c5": -0.14662341327106532, + "c6": 28.696984265891395, + "c7": -25.793953652783483 }, - "vertexSeeds": { - "c1": 1.7144151645246781, - "c2": 1.5648303156853667, - "c3": 4.3773210367297635, - "c4": 2.6473204499926704, - "c5": 3.8866058927051763, - "c6": 1.8666277571445922, - "c7": 2.9197171467929417 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227463, + "c3": 7.027276930189552, + "c4": 5.621821544151641, + "c5": 4.216366158113731, + "c6": 2.8109107720758204, + "c7": 1.405455386037909 }, "rgb": [77, 76, 132] }, @@ -339882,23 +339882,23 @@ "year": 1797, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -0.1541674218246989, - "c2": 23.013128961733564, - "c3": 9.902879741592045, - "c4": 1.6373637782174626, - "c5": -7.587948402864367, - "c6": -10.81780545407598, - "c7": 28.277288388529136 + "points": { + "c1": 14.083133640494701, + "c2": -29.320266759027696, + "c3": 6.037413232985827, + "c4": -15.53293481340143, + "c5": -19.119883677745815, + "c6": 5.609125257558524, + "c7": -0.18486144962920292 }, - "vertexSeeds": { - "c1": 6.606534267170844, - "c2": 6.759671738984287, - "c3": 7.023238409770629, - "c4": 6.871764251688918, - "c5": 6.645466388775672, - "c6": 6.927567447758453, - "c7": 7.032771295981217 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721214, + "c3": 8.460471567267671, + "c4": 6.76837725381415, + "c5": 5.076282940360607, + "c6": 3.384188626907064, + "c7": 1.6920943134535429 }, "rgb": [58, 15, 49] }, @@ -339909,23 +339909,23 @@ "year": 1796, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -6.196046831908429, - "c2": -10.991374011868297, - "c3": 0.8893846222572073, - "c4": -22.057569445350104, - "c5": 1.9123238690923081, - "c6": -15.35420068454929, - "c7": -9.669298137999183 + "points": { + "c1": 5.535718463301425, + "c2": -3.0626074192960573, + "c3": -8.431456097356339, + "c4": -8.581734779118017, + "c5": -5.4651753002581, + "c6": 15.977917910331868, + "c7": 21.114715542804532 }, - "vertexSeeds": { - "c1": 4.485608284513457, - "c2": 4.47983779049442, - "c3": 4.476865418880117, - "c4": 4.773997663360976, - "c5": 4.840569209217152, - "c6": 4.748980586324766, - "c7": 4.587534419914123 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135922, + "c3": 5.825242718446602, + "c4": 4.660194174757281, + "c5": 3.495145631067961, + "c6": 2.3300970873786406, + "c7": 1.1650485436893203 }, "rgb": [238, 201, 159] }, @@ -339936,23 +339936,23 @@ "year": 1797, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 1.9681365470805474, - "c2": 1.4875235266559699, - "c3": 13.525090174065191, - "c4": 3.906774182633491, - "c5": 39.57758727221652, - "c6": -30.74301644521325, - "c7": 33.2563258342102 + "points": { + "c1": -23.92051228606976, + "c2": -33.98959677871316, + "c3": 1.9661817945903337, + "c4": -36.907585687753354, + "c5": -0.3340910571983855, + "c6": -31.146944146725033, + "c7": -4.269514527769211 }, - "vertexSeeds": { - "c1": 7.523781650545924, - "c2": 7.156288366809309, - "c3": 6.933251948485725, - "c4": 7.053034750956981, - "c5": 7.758100133388765, - "c6": 7.564257620107641, - "c7": 6.49651684328479 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013868, + "c3": 9.778085991678228, + "c4": 7.822468793342579, + "c5": 5.86685159500693, + "c6": 3.9112343966712895, + "c7": 1.9556171983356405 }, "rgb": [86, 146, 138] }, @@ -339963,23 +339963,23 @@ "year": 1797, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -26.564533645417768, - "c2": 27.175808926907962, - "c3": -4.609067565124896, - "c4": 15.793365882320991, - "c5": -25.645342551417247, - "c6": 6.484070818205659, - "c7": 36.980498560431386 + "points": { + "c1": -7.261052088864915, + "c2": -27.594279505514354, + "c3": -30.517129258537807, + "c4": -28.072742590422408, + "c5": 6.612507145742647, + "c6": 28.143996516759714, + "c7": -16.994158982726514 }, - "vertexSeeds": { - "c1": 6.444722710194076, - "c2": 6.318550179019097, - "c3": 6.268207929829228, - "c4": 6.470522134533751, - "c5": 6.5803913377476455, - "c6": 6.385036126298241, - "c7": 6.5225217846113885 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836325, + "c3": 7.951918631530285, + "c4": 6.361534905224217, + "c5": 4.771151178918177, + "c6": 3.1807674526121086, + "c7": 1.5903837263060685 }, "rgb": [222, 0, 59] }, @@ -339990,23 +339990,23 @@ "year": 1797, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 2.9183698861127496, - "c2": -21.418555949770163, - "c3": 3.7775426516143114, - "c4": 11.97449208077888, - "c5": -17.23057711921334, - "c6": -2.3763984197559864, - "c7": 15.971134264099454 + "points": { + "c1": 0.515923091963387, + "c2": 27.625393454775896, + "c3": 4.851441010199231, + "c4": -24.73080716183608, + "c5": -12.518967165036905, + "c6": -7.152947517295452, + "c7": -33.71310459198951 }, - "vertexSeeds": { - "c1": 1.4378238341968912, - "c2": 1.4378238341968912, - "c3": 1.4378238341968912, - "c4": 1.4378238341968912, - "c5": 1.4378238341968912, - "c6": 1.4378238341968912, - "c7": 1.4378238341968912 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -340017,23 +340017,23 @@ "year": 1797, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": -7.076634448658048, - "c2": -42.58217218190753, - "c3": 5.677499922170249, - "c4": -6.404582727958115, - "c5": -42.221637671673136, - "c6": -9.496026183478158, - "c7": -44.90465213177906 + "points": { + "c1": 12.116169342516457, + "c2": 23.21273746759738, + "c3": -51.097571756787914, + "c4": -49.66082615625061, + "c5": 7.495208015183437, + "c6": 15.63537385492262, + "c7": 38.11653445711768 }, - "vertexSeeds": { - "c1": 5.123880132128561, - "c2": 5.235463523744944, - "c3": 5.04653255540213, - "c4": 4.973652934235938, - "c5": 4.97869235282025, - "c6": 4.979142823809259, - "c7": 4.889842671676911 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.5450762829403715, + "c3": 6.287563569116964, + "c4": 5.030050855293581, + "c5": 3.7725381414701733, + "c6": 2.5150254276467905, + "c7": 1.2575127138233952 }, "rgb": [58, 15, 49] }, @@ -340044,23 +340044,23 @@ "year": 1797, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -24.422158148613914, - "c2": -25.18368537622551, - "c3": 7.401745176438702, - "c4": -28.23311029023808, - "c5": -3.2398325425269654, - "c6": 30.62539431839513, - "c7": 10.825457182221655 + "points": { + "c1": -19.52062603232616, + "c2": 20.41508906648287, + "c3": 30.74672260334132, + "c4": 29.946101328804296, + "c5": 0.23268142438338657, + "c6": -3.7876522332418716, + "c7": 32.57492802075979 }, - "vertexSeeds": { - "c1": 3.0819244477936176, - "c2": 3.0641731223034947, - "c3": 2.9951959968613515, - "c4": 3.0172314757982197, - "c5": 3.009302623206655, - "c6": 3.07926421256051, - "c7": 2.920257427781027 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515946, + "c3": 3.744798890429964, + "c4": 2.9958391123439685, + "c5": 2.246879334257973, + "c6": 1.497919556171978, + "c7": 0.7489597780859953 }, "rgb": [58, 15, 49] }, @@ -340071,23 +340071,23 @@ "year": 1797, "resistanceReported": false, "duration": 32572800, - "curveSeeds": { - "c1": -14.504232948683892, - "c2": 21.823176678729276, - "c3": -22.467515479444053, - "c4": -29.533658000518827, - "c5": 9.51414957753699, - "c6": -23.085133259975585, - "c7": -29.745310384994628 + "points": { + "c1": -23.019334679502506, + "c2": 14.80294123318756, + "c3": -29.37167437539482, + "c4": 17.459088479362826, + "c5": -27.973932084176894, + "c6": 38.37112897353308, + "c7": 4.374576516130517 }, - "vertexSeeds": { - "c1": 2.325733805143718, - "c2": 2.2696762092001705, - "c3": 2.191062759019052, - "c4": 2.2923571784226806, - "c5": 2.1706998768962795, - "c6": 2.1554869439612907, - "c7": 2.2174343941504335 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.46740638002774, + "c3": 2.889505316689781, + "c4": 2.3116042533518253, + "c5": 1.73370319001387, + "c6": 1.1558021266759146, + "c7": 0.5779010633379554 }, "rgb": [77, 76, 132] }, @@ -340098,23 +340098,23 @@ "year": 1797, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 7.5485677368938155, - "c2": -20.84612367184329, - "c3": 0.811878260183363, - "c4": -24.34393944744413, - "c5": 12.989271585033613, - "c6": -12.262387714480393, - "c7": 6.019800001657764 + "points": { + "c1": 21.142595912843497, + "c2": 37.288454501796465, + "c3": -3.123726143999562, + "c4": -23.68649198131602, + "c5": 38.52594603006027, + "c6": 11.701129592335228, + "c7": 16.91581891267697 }, - "vertexSeeds": { - "c1": 6.730580224285342, - "c2": 6.737973476587706, - "c3": 6.764790208556731, - "c4": 6.733915376620932, - "c5": 6.747972918214929, - "c6": 6.737816401802586, - "c7": 6.762164490382919 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.70873786407761, + "c3": 8.090614886731483, + "c4": 6.472491909385145, + "c5": 4.854368932038805, + "c6": 3.236245954692465, + "c7": 1.6181229773463397 }, "rgb": [58, 15, 49] }, @@ -340125,23 +340125,23 @@ "year": 1796, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 3.4280033933648753, - "c2": -5.489375009270756, - "c3": 12.388398699275577, - "c4": 16.688727522799297, - "c5": -4.929016584450071, - "c6": -1.50966056830449, - "c7": -16.218475176141332 + "points": { + "c1": 14.314637930943917, + "c2": 8.76230828143693, + "c3": 5.843688098165124, + "c4": 15.504239126897744, + "c5": 2.612199831671248, + "c6": 17.260859557567215, + "c7": -4.942518608365624 }, - "vertexSeeds": { - "c1": 5.335255843240602, - "c2": 5.328314437626192, - "c3": 5.323170179480025, - "c4": 5.316686806408173, - "c5": 5.327803395329056, - "c6": 5.333768018874022, - "c7": 5.317654203627345 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.6560332871012, + "c3": 6.380027739251113, + "c4": 5.104022191400857, + "c5": 3.8280166435506, + "c6": 2.5520110957003435, + "c7": 1.2760055478502563 }, "rgb": [238, 201, 159] }, @@ -340152,23 +340152,23 @@ "year": 1797, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 1.6299105840238646, - "c2": 4.158787007988895, - "c3": 27.116196586895658, - "c4": 14.585048605581559, - "c5": -9.962381895792632, - "c6": 19.679968081211303, - "c7": 14.988697084982245 + "points": { + "c1": -8.51750089960187, + "c2": 1.7764031134999847, + "c3": 18.544833621275746, + "c4": 5.301300679843845, + "c5": -13.500165419633449, + "c6": -7.386416736763909, + "c7": 10.934666239962187 }, - "vertexSeeds": { - "c1": 4.178054790850188, - "c2": 4.210405120499372, - "c3": 4.226086553226079, - "c4": 4.199116861621126, - "c5": 4.265083180047703, - "c6": 4.242369850570662, - "c7": 4.2367428558907605 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889031, + "c3": 5.108645399907553, + "c4": 4.0869163199260345, + "c5": 3.0651872399445157, + "c6": 2.043458159962997, + "c7": 1.0217290799815189 }, "rgb": [238, 201, 159] }, @@ -340179,23 +340179,23 @@ "year": 1797, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -13.146092260395655, - "c2": -21.418551945372325, - "c3": 20.220264308866817, - "c4": 19.77415449980103, - "c5": -21.257347226890648, - "c6": 21.458585348700602, - "c7": -1.4679869927188136 + "points": { + "c1": -6.257748707040314, + "c2": 0.13725608312524074, + "c3": -14.662603009978099, + "c4": 1.7494948564388508, + "c5": 3.3415265994331804, + "c6": 27.470717077776882, + "c7": 7.492571975591858 }, - "vertexSeeds": { - "c1": 4.118029071900233, - "c2": 4.097326650497563, - "c3": 4.168596979396923, - "c4": 4.092200650792648, - "c5": 4.095421860560144, - "c6": 4.114214864212386, - "c7": 4.168456012129413 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687923, + "c3": 4.993065187239962, + "c4": 3.994452149791962, + "c5": 2.9958391123439614, + "c6": 1.9972260748960007, + "c7": 0.9986130374480003 }, "rgb": [86, 146, 138] }, @@ -340206,23 +340206,23 @@ "year": 1797, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 20.289217013487406, - "c2": 3.6470615928219168, - "c3": -12.811385832222554, - "c4": -16.620419184871665, - "c5": 8.625584298755808, - "c6": 25.58976259061041, - "c7": -19.178651208071678 + "points": { + "c1": 24.325954211398294, + "c2": -3.853675429267401, + "c3": 23.221590720973257, + "c4": -17.84697890097732, + "c5": -17.29752391337235, + "c6": -8.261572233912972, + "c7": 12.768897910701039 }, - "vertexSeeds": { - "c1": 4.013293614825205, - "c2": 4.015208186194101, - "c3": 3.953818198259625, - "c4": 4.061881537236424, - "c5": 3.8397535163519567, - "c6": 3.9245966831127896, - "c7": 3.850752471420957 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.9084604715672695, + "c3": 4.923717059639394, + "c4": 3.9389736477115176, + "c5": 2.954230235783628, + "c6": 1.9694868238557521, + "c7": 0.9847434119278761 }, "rgb": [77, 76, 132] }, @@ -340233,23 +340233,23 @@ "year": 1797, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -3.816642428436868, - "c2": -22.121114600313124, - "c3": -21.725113440954317, - "c4": 13.89579273818223, - "c5": -14.226751513930475, - "c6": 14.992782808672473, - "c7": -2.3544592718380315 + "points": { + "c1": 4.748216538807046, + "c2": 8.43959591180063, + "c3": -4.77045343487362, + "c4": -2.798653093660988, + "c5": -4.695085004959775, + "c6": 23.50923260696979, + "c7": 22.821961690223958 }, - "vertexSeeds": { - "c1": 6.468001379742615, - "c2": 6.725514682926236, - "c3": 6.831048810037038, - "c4": 6.552376796719198, - "c5": 6.86123967061657, - "c6": 6.374668358193278, - "c7": 6.595471958729632 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -340260,23 +340260,23 @@ "year": 1797, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -28.50079055506358, - "c2": 22.314670987473427, - "c3": -25.802209994860313, - "c4": -27.326850566139164, - "c5": 13.494965006203124, - "c6": 16.766655739441205, - "c7": -28.59651252915344 + "points": { + "c1": 28.032556022740934, + "c2": -18.465299443303696, + "c3": 25.48063902592343, + "c4": -16.04552532429464, + "c5": -12.112243961781886, + "c6": -2.258786654541538, + "c7": -1.0712491290720791 }, - "vertexSeeds": { - "c1": 7.313418248415264, - "c2": 7.096152069177371, - "c3": 7.248625212542605, - "c4": 7.439914403326236, - "c5": 7.071816205751592, - "c6": 7.469632240976837, - "c7": 7.4539604476398855 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686543, + "c3": 9.015256588072114, + "c4": 7.212205270457689, + "c5": 5.409153952843282, + "c6": 3.6061026352288548, + "c7": 1.8030513176144274 }, "rgb": [238, 201, 159] }, @@ -340287,23 +340287,23 @@ "year": 1797, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -22.174884168175716, - "c2": 17.869296304497766, - "c3": -34.555840418479534, - "c4": 27.195272937032783, - "c5": 31.172609103647986, - "c6": 2.3134728724541276, - "c7": 14.721160007015442 + "points": { + "c1": 10.951654767100365, + "c2": 30.762091944287448, + "c3": 6.940648978893343, + "c4": 11.18438651606769, + "c5": 22.33246310502762, + "c6": 21.17265880999726, + "c7": -31.90131780845541 }, - "vertexSeeds": { - "c1": 2.0143200186074597, - "c2": 2.0065328898767847, - "c3": 1.871877281917277, - "c4": 1.9168759493903667, - "c5": 1.936762408144621, - "c6": 1.9987345338760698, - "c7": 1.8918637314326534 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705965, + "c3": 2.7045769764216363, + "c4": 2.16366158113731, + "c5": 1.6227461858529812, + "c6": 1.081830790568655, + "c7": 0.5409153952843287 }, "rgb": [58, 15, 49] }, @@ -340314,23 +340314,23 @@ "year": 1797, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -5.404873459940735, - "c2": -2.977140167358435, - "c3": -5.198840799054604, - "c4": -19.677666522491247, - "c5": -27.613989952563077, - "c6": 5.609204349675732, - "c7": 25.31442783377967 + "points": { + "c1": -6.442750010969387, + "c2": 30.49512990113878, + "c3": -31.55472661929187, + "c4": 27.169789535446526, + "c5": 20.434136114567174, + "c6": -22.31938950509639, + "c7": -18.948686556179727 }, - "vertexSeeds": { - "c1": 8.449596683409178, - "c2": 7.645662719338725, - "c3": 8.081733390851657, - "c4": 8.373404461588876, - "c5": 7.353699116763565, - "c6": 7.253728032250073, - "c7": 8.084144918613067 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536756, + "c3": 10.078594544613964, + "c4": 8.062875635691174, + "c5": 6.047156726768384, + "c6": 4.031437817845593, + "c7": 2.0157189089228034 }, "rgb": [77, 76, 132] }, @@ -340341,23 +340341,23 @@ "year": 1797, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 14.387545277878939, - "c2": -2.951324599741838, - "c3": 14.03924959138931, - "c4": -26.685502651175796, - "c5": -10.241606477896031, - "c6": -10.742757586165535, - "c7": -4.979267467328565 + "points": { + "c1": -23.617416886371068, + "c2": 14.114722804452555, + "c3": 0.2445940488159266, + "c4": -0.19383069435678024, + "c5": -6.212811956663771, + "c6": -9.763818921622242, + "c7": 21.5434842231096 }, - "vertexSeeds": { - "c1": 2.6797854852561933, - "c2": 2.664522417727378, - "c3": 2.664674379033636, - "c4": 2.678328768425916, - "c5": 2.6910450765373897, - "c6": 2.666812736531583, - "c7": 2.689852755404629 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310867, + "c3": 3.2362459546925293, + "c4": 2.5889967637540363, + "c5": 1.9417475728155433, + "c6": 1.2944983818770504, + "c7": 0.647249190938493 }, "rgb": [77, 76, 132] }, @@ -340368,23 +340368,23 @@ "year": 1797, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 8.631354166585385, - "c2": 23.22627590072683, - "c3": 8.980824827262186, - "c4": -12.75613547215655, - "c5": -12.508867232038213, - "c6": 20.975250825462954, - "c7": -5.338141707576941 + "points": { + "c1": -14.446735904661942, + "c2": -1.5577304852637148, + "c3": 18.250050891201358, + "c4": 9.19845418357352, + "c5": 16.517648564590107, + "c6": -10.886684836866184, + "c7": -30.39327318875293 }, - "vertexSeeds": { - "c1": 9.253618380700788, - "c2": 9.372683750134302, - "c3": 9.298753767233407, - "c4": 9.269146994717152, - "c5": 9.210453227430863, - "c6": 9.264443278042632, - "c7": 9.494783636036452 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.73092926490983, + "c3": 11.442441054091548, + "c4": 9.153952843273222, + "c5": 6.865464632454937, + "c6": 4.576976421636611, + "c7": 2.288488210818326 }, "rgb": [77, 76, 132] }, @@ -340395,23 +340395,23 @@ "year": 1797, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -7.603345318019187, - "c2": 21.569221087338548, - "c3": -7.225310215954469, - "c4": 0.9865703867885074, - "c5": 18.51199850591601, - "c6": 5.604922928808101, - "c7": 0.4275172888622265 + "points": { + "c1": 32.98776680351334, + "c2": -32.85607168599429, + "c3": -31.79090262364076, + "c4": -24.526588858765777, + "c5": 14.086967974864884, + "c6": 25.89280277773217, + "c7": -23.829539059025137 }, - "vertexSeeds": { - "c1": 6.756042055948189, - "c2": 6.411375794692014, - "c3": 6.69442020419554, - "c4": 6.824965775540882, - "c5": 6.865723555059625, - "c6": 6.508231915236557, - "c7": 6.6776594675766425 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359226, + "c3": 8.252427184466026, + "c4": 6.601941747572803, + "c5": 4.951456310679602, + "c6": 3.3009708737864014, + "c7": 1.6504854368932007 }, "rgb": [86, 146, 138] }, @@ -340422,23 +340422,23 @@ "year": 1797, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -18.291689439670346, - "c2": 23.461000891589276, - "c3": 4.136808331982994, - "c4": -14.440758681926303, - "c5": 26.717400184665596, - "c6": -0.6944397271564711, - "c7": -11.495818901941103 + "points": { + "c1": 22.363758767662727, + "c2": 29.48506199693306, + "c3": -27.220557003549594, + "c4": 18.61544070614107, + "c5": -3.454373153062079, + "c6": -28.63876082633974, + "c7": -13.762458395647652 }, - "vertexSeeds": { - "c1": 7.6452549360854425, - "c2": 7.857892565274656, - "c3": 8.040992498650597, - "c4": 7.768149317801667, - "c5": 7.949404818157497, - "c6": 8.050354575101625, - "c7": 8.055424596625553 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852977, + "c3": 9.685621821544142, + "c4": 7.748497457235309, + "c5": 5.811373092926503, + "c6": 3.874248728617669, + "c7": 1.9371243643088345 }, "rgb": [222, 0, 59] }, @@ -340449,23 +340449,23 @@ "year": 1797, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 28.34045425896464, - "c2": 19.81218650119922, - "c3": -31.386204223618844, - "c4": 16.750655280493454, - "c5": -14.365944528190596, - "c6": -9.909297809342451, - "c7": -23.3401904096242 + "points": { + "c1": 15.949168366695758, + "c2": -11.993624862230863, + "c3": 6.430917735492898, + "c4": -36.83504220683883, + "c5": 8.17943507355249, + "c6": 25.161481560849865, + "c7": -11.085300129404068 }, - "vertexSeeds": { - "c1": 2.625780517152937, - "c2": 2.7215327202462967, - "c3": 2.518567301995049, - "c4": 2.6999492398672538, - "c5": 2.6576339094682115, - "c6": 2.570471643085804, - "c7": 2.674625435491191 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832174, + "c3": 3.3518261673601493, + "c4": 2.681460933888116, + "c5": 2.011095700416091, + "c6": 1.340730466944058, + "c7": 0.6703652334720329 }, "rgb": [222, 0, 59] }, @@ -340476,23 +340476,23 @@ "year": 1797, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -27.055579089997394, - "c2": -13.16268635666675, - "c3": -10.92349119556373, - "c4": -16.69033430580184, - "c5": 4.660944428291458, - "c6": -9.843151877064305, - "c7": -30.449209590321654 + "points": { + "c1": 15.719365405311947, + "c2": 29.33816125045046, + "c3": 29.52323411287869, + "c4": 16.304526521332136, + "c5": 8.893211735617136, + "c6": 0.38513057755110935, + "c7": 9.026577069047264 }, - "vertexSeeds": { - "c1": 4.727915804840424, - "c2": 4.83891655419014, - "c3": 4.8376402766092905, - "c4": 4.696881016464155, - "c5": 4.811925766391422, - "c6": 4.566212479587495, - "c7": 4.473721408715066 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095701, + "c3": 5.802126675913085, + "c4": 4.641701340730467, + "c5": 3.4812760055478504, + "c6": 2.3208506703652336, + "c7": 1.1604253351826168 }, "rgb": [86, 146, 138] }, @@ -340503,23 +340503,23 @@ "year": 1797, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -22.91859316928273, - "c2": 22.193483469078934, - "c3": 2.3247543339712067, - "c4": -22.97421021687031, - "c5": 1.307963639516565, - "c6": -9.432789555261227, - "c7": 5.924124794053135 + "points": { + "c1": -22.781340142551517, + "c2": 2.155437394426741, + "c3": -17.709380928797465, + "c4": 12.834018743881138, + "c5": -7.4412611604813925, + "c6": 24.490569449016327, + "c7": 20.981624498624022 }, - "vertexSeeds": { - "c1": 5.709208830239563, - "c2": 5.798811959896557, - "c3": 5.611328230128962, - "c4": 5.65371818809542, - "c5": 5.536824596967143, - "c6": 5.600017546150022, - "c7": 5.759223593177356 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106805, + "c3": 6.957928802589014, + "c4": 5.566343042071193, + "c5": 4.174757281553402, + "c6": 2.783171521035612, + "c7": 1.3915857605177906 }, "rgb": [58, 15, 49] }, @@ -340530,23 +340530,23 @@ "year": 1797, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -0.2254450305039839, - "c2": 31.886227255578852, - "c3": -26.00515652177047, - "c4": 14.819318732838305, - "c5": 9.596283517125443, - "c6": 19.78810034647661, - "c7": 33.847510219713676 + "points": { + "c1": 34.67088090247662, + "c2": -15.710515747764102, + "c3": 37.614759209112314, + "c4": -37.39927564156758, + "c5": -17.997302074558768, + "c6": -6.9501896222552375, + "c7": -20.090873142986872 }, - "vertexSeeds": { - "c1": 5.425830970168232, - "c2": 5.522969102547313, - "c3": 5.503340081533225, - "c4": 5.828898989540946, - "c5": 5.843095869797611, - "c6": 5.61144012946834, - "c7": 5.560465006710775 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.37725381414701, + "c3": 6.981044845122525, + "c4": 5.584835876098015, + "c5": 4.188626907073505, + "c6": 2.792417938048996, + "c7": 1.3962089690245096 }, "rgb": [238, 201, 159] }, @@ -340557,23 +340557,23 @@ "year": 1797, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 27.74956629722864, - "c2": -28.077072977249177, - "c3": 28.00771564199301, - "c4": -9.213042662827753, - "c5": -22.733714445763503, - "c6": 28.109895768777285, - "c7": -23.235461369605186 + "points": { + "c1": -1.9141818287448125, + "c2": -15.596327087382296, + "c3": -19.016101811654092, + "c4": -7.393944483119878, + "c5": -13.344760566904263, + "c6": -20.1538585668675, + "c7": -6.221987281954899 }, - "vertexSeeds": { - "c1": 1.6326024562333634, - "c2": 1.7169766393263979, - "c3": 1.779721200990232, - "c4": 1.6945804670653688, - "c5": 1.7316118960130416, - "c6": 1.6443533850133851, - "c7": 1.7595528571139525 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.191400832177532, + "c3": 1.8261673601479442, + "c4": 1.4609338881183538, + "c5": 1.095700416088766, + "c6": 0.7304669440591782, + "c7": 0.3652334720295904 }, "rgb": [77, 76, 132] }, @@ -340584,23 +340584,23 @@ "year": 1797, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -7.1049751173940585, - "c2": -5.110463028860462, - "c3": 6.901639275634938, - "c4": -27.80438617645713, - "c5": 3.2798577834397555, - "c6": -0.2831442066329828, - "c7": 27.953370331617943 + "points": { + "c1": -0.6919022923025473, + "c2": 21.778004656743125, + "c3": 27.181008127105404, + "c4": 27.716922885595448, + "c5": 26.17292477524855, + "c6": 27.867506348831025, + "c7": 9.489717955098737 }, - "vertexSeeds": { - "c1": 3.7404604633416905, - "c2": 3.72906621712924, - "c3": 3.7754141279203797, - "c4": 3.726559662333788, - "c5": 3.8162416798089267, - "c6": 3.672833659035685, - "c7": 3.774530664150386 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004157, + "c3": 4.600092464170141, + "c4": 3.6800739713361095, + "c5": 2.7600554785020783, + "c6": 1.8400369856680625, + "c7": 0.9200184928340313 }, "rgb": [58, 15, 49] }, @@ -340611,23 +340611,23 @@ "year": 1797, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -20.90528806921548, - "c2": -8.870392739564593, - "c3": -13.93205190841827, - "c4": 19.91045664226736, - "c5": 0.060767821642869535, - "c6": -12.665196582412502, - "c7": 13.686299732691854 + "points": { + "c1": 29.153394422293864, + "c2": 2.2854738680520796, + "c3": 2.433762219962631, + "c4": -25.657339116670506, + "c5": -19.52396995203913, + "c6": 28.811114105424814, + "c7": 24.833908259347055 }, - "vertexSeeds": { - "c1": 1.5936542095868076, - "c2": 1.5978321935979867, - "c3": 1.7091446422601713, - "c4": 1.5232300936038423, - "c5": 1.6910300112657353, - "c6": 1.764303789011102, - "c7": 1.5438285912717609 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808588, + "c3": 2.1729079981507167, + "c4": 1.7383263985205724, + "c5": 1.303744798890428, + "c6": 0.8691631992602862, + "c7": 0.4345815996301418 }, "rgb": [222, 0, 59] }, @@ -340638,23 +340638,23 @@ "year": 1797, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -19.09321733553626, - "c2": 1.9335715118209507, - "c3": 24.540565641488726, - "c4": 12.880241491634756, - "c5": -9.719430244614738, - "c6": -26.90934125807521, - "c7": -22.41780345233102 + "points": { + "c1": 21.267484134126462, + "c2": 12.723169291866618, + "c3": -0.880443721860253, + "c4": 15.608626447671782, + "c5": 23.185745901220997, + "c6": 13.137019004548407, + "c7": -11.562003480540852 }, - "vertexSeeds": { - "c1": 8.47414528659265, - "c2": 8.50702064701796, - "c3": 8.510733292992313, - "c4": 8.507353922777964, - "c5": 8.486380203218395, - "c6": 8.500271387616618, - "c7": 8.476788222830049 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697619, + "c3": 10.17105871474799, + "c4": 8.136846971798358, + "c5": 6.102635228848728, + "c6": 4.0684234858992605, + "c7": 2.0342117429496303 }, "rgb": [238, 201, 159] }, @@ -340665,23 +340665,23 @@ "year": 1797, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -10.082639512915353, - "c2": 9.157218666058938, - "c3": 3.3898890494965492, - "c4": -16.983908396005038, - "c5": 14.836051894420926, - "c6": -18.25684666934562, - "c7": 3.729563657965304 + "points": { + "c1": 22.50963487897569, + "c2": 23.510249394452394, + "c3": 18.898913032482746, + "c4": -11.915950487675634, + "c5": 12.548365436252084, + "c6": -3.904491970674414, + "c7": 26.961228698998397 }, - "vertexSeeds": { - "c1": 7.989840832779433, - "c2": 7.987382220574455, - "c3": 8.012984529920145, - "c4": 8.03993171704239, - "c5": 8.05757624891693, - "c6": 8.082274940225068, - "c7": 8.035934388516806 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772593, + "c3": 9.639389736477098, + "c4": 7.7115117891817295, + "c5": 5.783633841886233, + "c6": 3.8557558945908648, + "c7": 1.9278779472953682 }, "rgb": [58, 15, 49] }, @@ -340692,23 +340692,23 @@ "year": 1797, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -12.362934615945086, - "c2": 15.374652681584642, - "c3": 11.162569605775133, - "c4": 19.97530335879987, - "c5": -24.36989923225333, - "c6": -13.37621765560285, - "c7": -28.722402085637132 + "points": { + "c1": 12.891725481752701, + "c2": 30.929408457450442, + "c3": 28.718535202899922, + "c4": -2.3390961746802574, + "c5": 42.117244452398005, + "c6": -8.89850183088032, + "c7": -39.58421304604526 }, - "vertexSeeds": { - "c1": 0.5246113989637305, - "c2": 0.5246113989637305, - "c3": 0.5246113989637305, - "c4": 0.5246113989637305, - "c5": 0.5246113989637305, - "c6": 0.5246113989637305, - "c7": 0.5246113989637305 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -340719,23 +340719,23 @@ "year": 1797, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 3.5057516900775596, - "c2": -4.53884962564489, - "c3": -12.086318519874187, - "c4": 10.601260014020852, - "c5": -23.948249319804304, - "c6": 34.459506904328265, - "c7": -31.964765139234455 + "points": { + "c1": 15.09766214072068, + "c2": 30.657127209171904, + "c3": -29.985965422033733, + "c4": -36.35053357000643, + "c5": -35.77251007040898, + "c6": 27.429251402785923, + "c7": -0.2447821201510081 }, - "vertexSeeds": { - "c1": 3.0516382218775213, - "c2": 2.9781466364925677, - "c3": 3.1862336645610934, - "c4": 2.987579708848289, - "c5": 3.0575454201691583, - "c6": 3.126875056814965, - "c7": 3.0748916233820025 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636611, + "c3": 3.814147018030518, + "c4": 3.051317614424412, + "c5": 2.2884882108183056, + "c6": 1.5256588072122124, + "c7": 0.7628294036061062 }, "rgb": [238, 201, 159] }, @@ -340746,23 +340746,23 @@ "year": 1797, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 1.854601937222938, - "c2": 5.594515329125599, - "c3": 1.9226365347894259, - "c4": -1.1561139162844967, - "c5": 17.042558883187624, - "c6": -10.09982787412143, - "c7": -34.00883402825836 + "points": { + "c1": -0.346648750800874, + "c2": -1.0273743590539013, + "c3": -36.69117388157821, + "c4": 17.78646421658805, + "c5": -5.999205402083128, + "c6": -17.643327476038483, + "c7": -22.191723561468848 }, - "vertexSeeds": { - "c1": 3.3423504987172725, - "c2": 3.155458457859048, - "c3": 3.140798451530775, - "c4": 3.156622773944987, - "c5": 3.306801875070973, - "c6": 3.1813148714604322, - "c7": 3.311953730680091 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038834, + "c3": 4.045307443365693, + "c4": 3.2362459546925515, + "c5": 2.4271844660194106, + "c6": 1.6181229773462822, + "c7": 0.8090614886731411 }, "rgb": [86, 146, 138] }, @@ -340773,23 +340773,23 @@ "year": 1797, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -27.97594107183729, - "c2": 3.5001082404113717, - "c3": -32.547155759114, - "c4": 11.02564250323087, - "c5": -30.613919452149158, - "c6": -26.643279027007104, - "c7": 0.640214710611744 + "points": { + "c1": 13.69128210913913, + "c2": -13.243855116544694, + "c3": -11.532090971816881, + "c4": -12.061109136008401, + "c5": -33.25321003765646, + "c6": -1.617243214162393, + "c7": -5.006045801814636 }, - "vertexSeeds": { - "c1": 7.534983859532957, - "c2": 7.623008403701432, - "c3": 7.666891677219217, - "c4": 7.781953921960373, - "c5": 7.8299780625181175, - "c6": 7.681528520759068, - "c7": 7.683871827430226 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490985, + "c3": 9.477577438742488, + "c4": 7.58206195099399, + "c5": 5.6865464632454925, + "c6": 3.791030975496995, + "c7": 1.8955154877484974 }, "rgb": [238, 201, 159] }, @@ -340800,23 +340800,23 @@ "year": 1797, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 17.040743018882743, - "c2": 25.125369273547832, - "c3": -20.605023879707318, - "c4": -14.183684892869994, - "c5": 30.46421071225126, - "c6": 15.141193200385814, - "c7": 26.968988456406876 + "points": { + "c1": 9.782996205888466, + "c2": -28.623696929051683, + "c3": 22.552392808114554, + "c4": 8.086170131332565, + "c5": 15.421425832359056, + "c6": -26.691349765628907, + "c7": -3.874763283558451 }, - "vertexSeeds": { - "c1": 3.2039492680649575, - "c2": 3.2519651899572133, - "c3": 3.454513665214039, - "c4": 3.2795512338880024, - "c5": 3.211858354914136, - "c6": 3.172588783435102, - "c7": 3.183117910377507 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199724, + "c3": 4.137771613499772, + "c4": 3.31021729079982, + "c5": 2.4826629680998673, + "c6": 1.6551086453999044, + "c7": 0.8275543226999522 }, "rgb": [238, 201, 159] }, @@ -340827,23 +340827,23 @@ "year": 1797, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -19.214739396676144, - "c2": 24.407344028602044, - "c3": 25.370645713550697, - "c4": -18.091485461080694, - "c5": -24.27893914830519, - "c6": -26.513052827152258, - "c7": -5.895394315459473 + "points": { + "c1": 13.394416358588039, + "c2": -1.3726569829590147, + "c3": 6.62441106994963, + "c4": 0.4919185086556652, + "c5": -0.8562288282054382, + "c6": -20.579758964602796, + "c7": -8.527895405345117 }, - "vertexSeeds": { - "c1": 6.301231849554097, - "c2": 6.289910158475246, - "c3": 6.302270714488601, - "c4": 6.459525237637863, - "c5": 6.300073191447754, - "c6": 6.4911126292238395, - "c7": 6.412355717294092 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554774, + "c3": 7.790106333795669, + "c4": 6.232085067036529, + "c5": 4.674063800277387, + "c6": 3.1160425335182453, + "c7": 1.558021266759141 }, "rgb": [77, 76, 132] }, @@ -340854,23 +340854,23 @@ "year": 1797, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 19.575026386147464, - "c2": -15.68289652042241, - "c3": 13.048169343690276, - "c4": 11.139328625515638, - "c5": 5.724605779138265, - "c6": 2.214531468328609, - "c7": 4.8485754938743355 + "points": { + "c1": -12.703173364961486, + "c2": -35.82426313659609, + "c3": 25.30291267471381, + "c4": 1.9793368929945885, + "c5": -19.839571545042347, + "c6": 0.411464256071298, + "c7": 29.694423899248207 }, - "vertexSeeds": { - "c1": 8.429715843607134, - "c2": 8.188336021820357, - "c3": 8.881280104038325, - "c4": 8.846639255531105, - "c5": 8.648634231304234, - "c6": 8.662655539627487, - "c7": 8.423230153214899 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461865, + "c3": 10.610263522884873, + "c4": 8.488210818307902, + "c5": 6.366158113730933, + "c6": 4.2441054091539625, + "c7": 2.12205270457697 }, "rgb": [238, 201, 159] }, @@ -340881,23 +340881,23 @@ "year": 1797, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 14.040490352034016, - "c2": -20.072858512719975, - "c3": 21.39337051862262, - "c4": 9.943833833456853, - "c5": 20.493510071946798, - "c6": 4.679868586643632, - "c7": -24.124694382711994 + "points": { + "c1": 3.5019144131920434, + "c2": -15.342722805815088, + "c3": -4.74894548834876, + "c4": 9.492767697388015, + "c5": 14.426430560579316, + "c6": 26.448255459138718, + "c7": -14.198610523091336 }, - "vertexSeeds": { - "c1": 6.792709882416804, - "c2": 6.550656023903016, - "c3": 6.910297110967993, - "c4": 6.417169229385187, - "c5": 6.483525314156522, - "c6": 6.669399712647794, - "c7": 6.889048459610776 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -340908,23 +340908,23 @@ "year": 1797, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 24.847602345097194, - "c2": 20.633212611965313, - "c3": 19.03787448479393, - "c4": -11.197294455145322, - "c5": 17.562882558063173, - "c6": -10.396392486615394, - "c7": -17.625521707765756 + "points": { + "c1": -10.142510599435614, + "c2": 0.6702759083179615, + "c3": 20.17264921654317, + "c4": 9.339681772594417, + "c5": 30.816682079768427, + "c6": 6.601112738022749, + "c7": -8.72418293764845 }, - "vertexSeeds": { - "c1": 2.509417321515872, - "c2": 2.466169412066201, - "c3": 2.6793778160072264, - "c4": 2.8131937733146364, - "c5": 2.7176735432861174, - "c6": 2.815869405129337, - "c7": 2.686869742678377 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266286, + "c3": 2.773925104022192, + "c4": 2.2191400832177512, + "c5": 1.6643550624133165, + "c6": 1.1095700416088776, + "c7": 0.5547850208044388 }, "rgb": [77, 76, 132] }, @@ -340935,23 +340935,23 @@ "year": 1797, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": 11.424487246243725, - "c2": 1.7588151877789997, - "c3": -0.3007501205777281, - "c4": 4.783482268463505, - "c5": -6.714916157162673, - "c6": -4.10566024579415, - "c7": -14.576592432063844 + "points": { + "c1": -0.9547821728518215, + "c2": -9.781549658648805, + "c3": 17.32603804536849, + "c4": -3.0086631493106673, + "c5": 7.581432417683185, + "c6": 10.290807419592927, + "c7": 5.01273444321604 }, - "vertexSeeds": { - "c1": 2.677773384272113, - "c2": 2.6195943217967588, - "c3": 2.5912025296580548, - "c4": 2.444198102401904, - "c5": 2.8543345412226357, - "c6": 2.800031582978296, - "c7": 2.785890949044755 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [58, 15, 49] }, @@ -340962,23 +340962,23 @@ "year": 1797, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -27.852876330789535, - "c2": -11.570713388791749, - "c3": -21.824730989053656, - "c4": -0.5615747635425734, - "c5": -14.234830355046428, - "c6": 4.4862664182909135, - "c7": 10.152015673189009 + "points": { + "c1": 7.20800342791124, + "c2": -13.502443112554747, + "c3": 27.031398415409708, + "c4": -14.341722702664102, + "c5": -9.290856791013063, + "c6": -10.301857890150384, + "c7": -5.73223375823347 }, - "vertexSeeds": { - "c1": 6.683619039542403, - "c2": 6.530629549688253, - "c3": 6.4371286879543534, - "c4": 6.5304982730665895, - "c5": 6.9191457873452915, - "c6": 6.4110024553223655, - "c7": 6.392988985899913 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -340989,23 +340989,23 @@ "year": 1797, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 5.659091531944551, - "c2": 22.889297046316628, - "c3": -2.1746668084956156, - "c4": 16.060380680532, - "c5": -5.056688722873126, - "c6": -14.5895224492541, - "c7": -3.540166206154833 + "points": { + "c1": 4.450963562974579, + "c2": -24.07637611097945, + "c3": -18.433288351235, + "c4": 3.2932272789501056, + "c5": -21.23834756347682, + "c6": -5.1565660930213895, + "c7": -4.371791027694311 }, - "vertexSeeds": { - "c1": 7.424509452584949, - "c2": 7.086412221205875, - "c3": 7.223234667720482, - "c4": 7.11498886028511, - "c5": 7.353903220480685, - "c6": 7.378564132274155, - "c7": 7.001113865030396 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686543, + "c3": 9.015256588072114, + "c4": 7.212205270457689, + "c5": 5.409153952843282, + "c6": 3.6061026352288548, + "c7": 1.8030513176144274 }, "rgb": [86, 146, 138] }, @@ -341016,23 +341016,23 @@ "year": 1797, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 27.033381493346667, - "c2": 18.592025055100642, - "c3": 25.58039314689863, - "c4": 3.5586228350736135, - "c5": 15.486201928319282, - "c6": 21.510479639575152, - "c7": 7.95423986140657 + "points": { + "c1": -5.329990060813024, + "c2": 9.51068002169417, + "c3": -20.7279654768668, + "c4": 18.584806970003953, + "c5": -28.17238381741106, + "c6": -17.645308905017394, + "c7": -20.49937292128031 }, - "vertexSeeds": { - "c1": 9.759421874862797, - "c2": 9.35667079326711, - "c3": 9.455835563758626, - "c4": 9.508340932843959, - "c5": 9.661659780079015, - "c6": 10.047275269662142, - "c7": 10.079069058505086 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076266, + "c3": 12.112806287563576, + "c4": 9.690245030050844, + "c5": 7.267683772538133, + "c6": 4.845122515025422, + "c7": 2.422561257512711 }, "rgb": [58, 15, 49] }, @@ -341043,23 +341043,23 @@ "year": 1797, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 26.797818256801115, - "c2": -23.539245685099452, - "c3": 2.72388276120515, - "c4": 20.887377873507248, - "c5": -25.292823542008595, - "c6": -16.360828618107547, - "c7": 4.3762385017862755 + "points": { + "c1": 14.490946878160614, + "c2": -0.36413007696635447, + "c3": -22.49266087438187, + "c4": -6.32097583027786, + "c5": -3.0982649000063276, + "c6": -20.40401633719202, + "c7": 10.29507692360216 }, - "vertexSeeds": { - "c1": 6.33581349933894, - "c2": 6.140946479114804, - "c3": 6.112121184470653, - "c4": 6.214647967369905, - "c5": 5.899213729801749, - "c6": 6.259954147915754, - "c7": 5.912419705229947 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.12621359223301, + "c3": 7.605177993527509, + "c4": 6.084142394822006, + "c5": 4.563106796116505, + "c6": 3.042071197411003, + "c7": 1.5210355987055015 }, "rgb": [86, 146, 138] }, @@ -341070,23 +341070,23 @@ "year": 1797, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -23.683015117197215, - "c2": -14.996896270048858, - "c3": -35.913740109040944, - "c4": -23.946088537550914, - "c5": -9.097061751997508, - "c6": 14.17981940936754, - "c7": 13.18443577124318 + "points": { + "c1": 22.07617480493615, + "c2": -13.986690780652637, + "c3": -37.37572113755348, + "c4": 34.0092301479836, + "c5": 18.14144697511626, + "c6": -24.347677773761806, + "c7": 0.2532698651577192 }, - "vertexSeeds": { - "c1": 4.894694401723631, - "c2": 4.950550548181123, - "c3": 4.9125801374193125, - "c4": 4.970074975495141, - "c5": 4.918279398838418, - "c6": 4.937553366666044, - "c7": 4.894118939049449 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337018, + "c3": 5.940822931114213, + "c4": 4.752658344891361, + "c5": 3.564493758668509, + "c6": 2.376329172445704, + "c7": 1.188164586222852 }, "rgb": [238, 201, 159] }, @@ -341097,23 +341097,23 @@ "year": 1797, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 7.5159960269697095, - "c2": -28.555156286610057, - "c3": 19.498869106564662, - "c4": 28.41374817069078, - "c5": -3.8092143856717087, - "c6": -20.226835442404045, - "c7": 32.853257895952936 + "points": { + "c1": -35.486396020104515, + "c2": 25.643143730436535, + "c3": -34.70552144265888, + "c4": 23.409084858865377, + "c5": -4.4632226561336665, + "c6": 2.472400485400094, + "c7": 19.901831842031754 }, - "vertexSeeds": { - "c1": 4.052090029203516, - "c2": 3.9094026492157696, - "c3": 3.9252526874441176, - "c4": 3.9381151633232414, - "c5": 4.08177082604573, - "c6": 3.950747283588633, - "c7": 3.8971103116937837 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728161, + "c3": 5.016181229773461, + "c4": 4.012944983818774, + "c5": 3.009708737864074, + "c6": 2.006472491909387, + "c7": 1.0032362459546993 }, "rgb": [86, 146, 138] }, @@ -341124,23 +341124,23 @@ "year": 1797, "resistanceReported": false, "duration": 4838400, - "curveSeeds": { - "c1": 0.6109238667720351, - "c2": -13.470697621901108, - "c3": 6.786833978142777, - "c4": 9.196468874359411, - "c5": 13.186037180965911, - "c6": 9.802393566807293, - "c7": 11.077531910611444 + "points": { + "c1": -4.168623188917939, + "c2": -2.7355214164216157, + "c3": 0.44705867184363157, + "c4": -16.682350180394042, + "c5": 3.4955433679519103, + "c6": -3.3702660607489925, + "c7": -5.220368280589126 }, - "vertexSeeds": { - "c1": 0.9816050942319668, - "c2": 0.8802189591937394, - "c3": 0.975268784971889, - "c4": 0.9509461021630727, - "c5": 0.8882195649824465, - "c6": 0.9179906328764182, - "c7": 0.9086956305412359 + "offsets": { + "c1": 1.6828478964401297, + "c2": 1.4424410540915404, + "c3": 1.2020342117429497, + "c4": 0.9616273693943603, + "c5": 0.7212205270457693, + "c6": 0.48081368469718017, + "c7": 0.24040684234859092 }, "rgb": [86, 146, 138] }, @@ -341151,23 +341151,23 @@ "year": 1797, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 16.78593320268159, - "c2": 13.677322720856822, - "c3": 31.285572654468744, - "c4": 30.18054047029353, - "c5": -31.195300481634273, - "c6": -18.74482475777642, - "c7": -18.885945688210704 + "points": { + "c1": -26.3972639854208, + "c2": 26.55998181726671, + "c3": -27.953077189710925, + "c4": -10.626847195600213, + "c5": -19.376962865169673, + "c6": 2.611315000269812, + "c7": -14.831507265912691 }, - "vertexSeeds": { - "c1": 7.023646809455105, - "c2": 7.022716107598413, - "c3": 7.032542893991137, - "c4": 7.02157166568427, - "c5": 7.018527804709861, - "c6": 7.015094187265296, - "c7": 7.032206445795884 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.06934812760027, + "c3": 8.391123439667226, + "c4": 6.712898751733513, + "c5": 5.034674063800469, + "c6": 3.3564493758667564, + "c7": 1.6782246879337122 }, "rgb": [222, 0, 59] }, @@ -341178,23 +341178,23 @@ "year": 1797, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 8.837274096843, - "c2": 25.10777258310546, - "c3": 10.634163988227886, - "c4": -9.211204054013553, - "c5": 22.661475361398463, - "c6": 21.42499932720212, - "c7": -7.327141106528366 + "points": { + "c1": -20.734966730504787, + "c2": -0.7701815960682055, + "c3": -22.340773663973575, + "c4": -0.4128563950284665, + "c5": -0.3970170366404382, + "c6": -19.585852654429388, + "c7": -25.483131473219945 }, - "vertexSeeds": { - "c1": 3.4977776571565347, - "c2": 3.4084657242614553, - "c3": 3.370622849213767, - "c4": 3.506883619357208, - "c5": 3.4525199034573935, - "c6": 3.5060359881195944, - "c7": 3.3526405703831843 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320388, + "c3": 4.207119741100324, + "c4": 3.3656957928802584, + "c5": 2.524271844660194, + "c6": 1.6828478964401292, + "c7": 0.8414239482200646 }, "rgb": [77, 76, 132] }, @@ -341205,23 +341205,23 @@ "year": 1797, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 30.454361219612224, - "c2": 32.96107821720244, - "c3": 14.613330027243094, - "c4": -15.861490346249038, - "c5": -14.591752294372128, - "c6": 24.258054145964266, - "c7": 25.315027561500052 + "points": { + "c1": -21.681756930634684, + "c2": 21.075380832967063, + "c3": 35.3578882605719, + "c4": -33.17945572559127, + "c5": -6.973943194576041, + "c6": -5.556319227263977, + "c7": 6.779547577639427 }, - "vertexSeeds": { - "c1": 9.1556842830607, - "c2": 8.975546736901759, - "c3": 9.610073893927694, - "c4": 8.720454889342546, - "c5": 8.785097066519217, - "c6": 8.279033326229246, - "c7": 8.425116891887892 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.091539528432733, + "c3": 11.742949607027281, + "c4": 9.39435968562182, + "c5": 7.045769764216367, + "c6": 4.697179842810915, + "c7": 2.348589921405452 }, "rgb": [58, 15, 49] }, @@ -341232,23 +341232,23 @@ "year": 1797, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -14.391203400315064, - "c2": -39.06335806837741, - "c3": -32.785864995310234, - "c4": -1.3798106671574715, - "c5": -27.053812268118396, - "c6": -7.451371252200801, - "c7": 46.08183967612988 + "points": { + "c1": 1.484841983393629, + "c2": -2.3670680855351733, + "c3": 14.522081104280687, + "c4": -32.38859639996643, + "c5": 37.71731808856436, + "c6": -22.231241938796813, + "c7": -35.366263330478894 }, - "vertexSeeds": { - "c1": 5.36810510783541, - "c2": 5.3799644776933055, - "c3": 5.379755075266049, - "c4": 5.36720131782198, - "c5": 5.380158444237605, - "c6": 5.370333789372551, - "c7": 5.367421813744997 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181473, + "c3": 6.42625982431815, + "c4": 5.141007859454315, + "c5": 3.855755894590992, + "c6": 2.5705039297271575, + "c7": 1.2852519648638345 }, "rgb": [238, 201, 159] }, @@ -341259,23 +341259,23 @@ "year": 1798, "resistanceReported": false, "duration": 51062400, - "curveSeeds": { - "c1": 19.25918245002299, - "c2": 15.287171854727816, - "c3": -48.20452396737573, - "c4": -43.485905361491845, - "c5": -22.916329795658584, - "c6": 59.00791924272272, - "c7": -58.562351549124955 + "points": { + "c1": 18.49153219495136, + "c2": -21.55296454537998, + "c3": 25.563096217125036, + "c4": -62.643660911106316, + "c5": 43.8201311344076, + "c6": 9.371356410310682, + "c7": 30.040764212423397 }, - "vertexSeeds": { - "c1": 4.830694607406697, - "c2": 4.909673296253586, - "c3": 4.850675226851212, - "c4": 4.8138999904764805, - "c5": 4.945408240685988, - "c6": 4.68870343233143, - "c7": 4.9534392762760815 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618583, + "c3": 6.102635228848816, + "c4": 4.882108183079058, + "c5": 3.6615811373092915, + "c6": 2.4410540915395242, + "c7": 1.220527045769767 }, "rgb": [222, 0, 59] }, @@ -341286,23 +341286,23 @@ "year": 1797, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 22.901172399589008, - "c2": -24.246889935345862, - "c3": 5.273439084723883, - "c4": 22.348017871158945, - "c5": 1.4185177030851293, - "c6": 30.321493012717042, - "c7": 14.881714382815531 + "points": { + "c1": 19.238423045934873, + "c2": -19.0221686236813, + "c3": 24.158798700032534, + "c4": 27.10838303233222, + "c5": 11.998944893745474, + "c6": 1.3203910697490215, + "c7": -20.403954541133825 }, - "vertexSeeds": { - "c1": 3.779222556709037, - "c2": 3.8448828833342796, - "c3": 4.041877678564565, - "c4": 3.9624991054137886, - "c5": 3.903887111728507, - "c6": 3.8850306450850467, - "c7": 3.815674852352901 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -341313,23 +341313,23 @@ "year": 1797, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -24.499795493303157, - "c2": -1.722140846405786, - "c3": 7.2973034115313204, - "c4": -21.3511413544389, - "c5": -3.495347686240926, - "c6": 9.221318408006415, - "c7": -20.6903358154958 + "points": { + "c1": -13.682485008546552, + "c2": -18.100785585629332, + "c3": 20.22255614095494, + "c4": 15.850865839917073, + "c5": 24.257607540362553, + "c6": -21.18844790259461, + "c7": -23.667425634604246 }, - "vertexSeeds": { - "c1": 1.1508077371443268, - "c2": 1.11108847323178, - "c3": 1.1090737325801432, - "c4": 1.1478051091511188, - "c5": 1.27346247846359, - "c6": 1.2464701977696806, - "c7": 1.254883132230657 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948696, + "c3": 1.548774849745723, + "c4": 1.2390198797965797, + "c5": 0.9292649098474348, + "c6": 0.6195099398982898, + "c7": 0.3097549699491449 }, "rgb": [86, 146, 138] }, @@ -341340,23 +341340,23 @@ "year": 1797, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 37.721893671576765, - "c2": 3.490735330621199, - "c3": 12.282892531805324, - "c4": 32.69893331556278, - "c5": 30.280138134548892, - "c6": -12.341439903921987, - "c7": 34.06905320744211 + "points": { + "c1": 40.604053201206895, + "c2": 6.49519092896977, + "c3": 5.211198138054328, + "c4": 1.927183223827555, + "c5": 35.1942437780142, + "c6": 24.723087357206197, + "c7": 18.303916597701786 }, - "vertexSeeds": { - "c1": 8.975838195647395, - "c2": 7.9173726107776625, - "c3": 7.8543702858423705, - "c4": 8.08488338698342, - "c5": 8.709603751396793, - "c6": 8.14513505311087, - "c7": 8.940373443220766 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662966, + "c3": 10.725843735552473, + "c4": 8.580674988441977, + "c5": 6.435506241331483, + "c6": 4.290337494220989, + "c7": 2.1451687471104943 }, "rgb": [238, 201, 159] }, @@ -341367,23 +341367,23 @@ "year": 1797, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -28.484005463525474, - "c2": 32.64423823067953, - "c3": -17.972392091139078, - "c4": 9.483553124057664, - "c5": -13.824255617765147, - "c6": -31.430418735064155, - "c7": -24.307348089683607 + "points": { + "c1": -6.668013038215136, + "c2": -4.808461591102656, + "c3": 21.38348508946227, + "c4": 16.83957452462755, + "c5": -28.185675149740646, + "c6": -8.99257927033684, + "c7": 26.50477859238267 }, - "vertexSeeds": { - "c1": 5.217054066031639, - "c2": 4.764801355374455, - "c3": 4.778230668147055, - "c4": 4.897475993556264, - "c5": 4.670188392403234, - "c6": 4.8898518564120375, - "c7": 4.642292314665429 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.5173370319001425, + "c3": 6.264447526583456, + "c4": 5.011558021266754, + "c5": 3.7586685159500672, + "c6": 2.505779010633381, + "c7": 1.2528895053166944 }, "rgb": [58, 15, 49] }, @@ -341394,23 +341394,23 @@ "year": 1797, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 15.080928261663168, - "c2": -11.448059620374359, - "c3": -5.221638114455136, - "c4": 29.982897132472196, - "c5": -19.086511821663954, - "c6": -3.356135649809527, - "c7": -2.1747415752439743 + "points": { + "c1": 24.01901505911298, + "c2": 29.223217985256085, + "c3": -34.05515972658322, + "c4": -20.16216052029555, + "c5": 18.364716813585524, + "c6": -19.680514078945567, + "c7": -33.069935601652865 }, - "vertexSeeds": { - "c1": 8.076408987612123, - "c2": 8.60445089340211, - "c3": 8.266556019093384, - "c4": 8.404910375569917, - "c5": 8.154895579536413, - "c6": 8.038423355175674, - "c7": 8.56860455477267 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.399445214979206, + "c3": 10.33287101248266, + "c4": 8.266296809986137, + "c5": 6.199722607489591, + "c6": 4.133148404993069, + "c7": 2.066574202496522 }, "rgb": [86, 146, 138] }, @@ -341421,23 +341421,23 @@ "year": 1797, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 12.200820256284644, - "c2": -4.616003277786561, - "c3": 0.3204144033396332, - "c4": -14.04475359022878, - "c5": -2.0980915136407923, - "c6": -15.819595150398534, - "c7": -14.45810579571502 + "points": { + "c1": -12.93044488726186, + "c2": 10.680017148208734, + "c3": -11.441893549323787, + "c4": 15.148247350563274, + "c5": -4.901321323700657, + "c6": -21.567549046413482, + "c7": 30.983628674891328 }, - "vertexSeeds": { - "c1": 9.585875172094074, - "c2": 9.58923317618453, - "c3": 9.56087201868585, - "c4": 9.577199868185227, - "c5": 9.568968865952934, - "c6": 9.546826898589572, - "c7": 9.544710883830831 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909763, + "c3": 11.442441054091672, + "c4": 9.153952843273277, + "c5": 6.865464632454882, + "c6": 4.576976421636487, + "c7": 2.288488210818395 }, "rgb": [222, 0, 59] }, @@ -341448,23 +341448,23 @@ "year": 1797, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": -5.780771646941288, - "c2": -16.137271780458256, - "c3": 19.480410120336348, - "c4": 5.341246308083608, - "c5": 8.385089502690754, - "c6": -14.78018705196998, - "c7": 16.330476990591155 + "points": { + "c1": 2.492095527633534, + "c2": 17.239419016694644, + "c3": 13.454564723748991, + "c4": -8.270976618867328, + "c5": 14.1209561933825, + "c6": -22.162807226009946, + "c7": -21.431330229909467 }, - "vertexSeeds": { - "c1": 1.849165715775026, - "c2": 1.9541803245468858, - "c3": 1.8938181416720463, - "c4": 1.7910326328026471, - "c5": 1.7808646356399969, - "c6": 1.875304816057722, - "c7": 1.848939701910808 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142856, + "c3": 2.3809523809523787, + "c4": 1.9047619047619055, + "c5": 1.428571428571428, + "c6": 0.9523809523809506, + "c7": 0.4761904761904731 }, "rgb": [238, 201, 159] }, @@ -341475,23 +341475,23 @@ "year": 1798, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": -40.03292582635538, - "c2": -45.325482881272826, - "c3": -5.206671212562419, - "c4": -18.880697989463002, - "c5": -41.04703036275358, - "c6": -7.171424673366602, - "c7": -45.17970707230809 + "points": { + "c1": 42.671778443832416, + "c2": 15.550644595571235, + "c3": -17.75701712624921, + "c4": -52.08843872514884, + "c5": -26.29407956895576, + "c6": 51.384333245954956, + "c7": -31.305016576903757 }, - "vertexSeeds": { - "c1": 7.7281405231997375, - "c2": 7.773894078410973, - "c3": 7.674652691486716, - "c4": 7.70995207697762, - "c5": 7.73829550496276, - "c6": 7.896825512438676, - "c7": 7.642096674744433 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933414, + "c3": 9.73185390661119, + "c4": 7.785483125288942, + "c5": 5.839112343966721, + "c6": 3.892741562644471, + "c7": 1.9463707813222493 }, "rgb": [86, 146, 138] }, @@ -341502,23 +341502,23 @@ "year": 1797, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 8.500118864310636, - "c2": 22.59510553170825, - "c3": 11.786562492956335, - "c4": 26.523007627240133, - "c5": 7.900638474621282, - "c6": -5.911823481282944, - "c7": 24.3695183751477 + "points": { + "c1": 5.498124832901524, + "c2": -4.505414916635445, + "c3": 18.670227856079457, + "c4": 7.9266651060050535, + "c5": -25.159067762360408, + "c6": 0.3402188909250441, + "c7": 10.666164367586347 }, - "vertexSeeds": { - "c1": 9.693409042875313, - "c2": 9.61687201360497, - "c3": 9.735637687464772, - "c4": 9.648534272486364, - "c5": 9.632345355775366, - "c6": 9.773697323727095, - "c7": 9.76624102692518 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312039, + "c3": 11.673601479426761, + "c4": 9.33888118354139, + "c5": 7.0041608876560195, + "c6": 4.669440591770648, + "c7": 2.3347202958853708 }, "rgb": [77, 76, 132] }, @@ -341529,23 +341529,23 @@ "year": 1797, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -22.930789031211685, - "c2": -11.452659955924421, - "c3": 14.447508420806564, - "c4": 11.38627109947788, - "c5": -24.041997606650146, - "c6": 24.440048353353546, - "c7": 28.95483306697861 + "points": { + "c1": -19.668082585230096, + "c2": -19.47316792194721, + "c3": 19.88334314452382, + "c4": -21.33367261343073, + "c5": 13.83843892811361, + "c6": -9.971865566189383, + "c7": -28.216125968446022 }, - "vertexSeeds": { - "c1": 6.367392545026595, - "c2": 6.423031503183638, - "c3": 6.594240440064263, - "c4": 6.72659527325153, - "c5": 6.8084361544415914, - "c6": 6.8906049741340825, - "c7": 6.69380393830723 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -341556,23 +341556,23 @@ "year": 1797, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -29.37086727255751, - "c2": -24.98839213133178, - "c3": -34.27024075443047, - "c4": -25.709738240750326, - "c5": 19.632521356684627, - "c6": 15.935509053726072, - "c7": 26.634886478774305 + "points": { + "c1": -10.271588994678218, + "c2": -1.992225637625225, + "c3": -22.196991349627147, + "c4": -12.921453049629886, + "c5": -37.31396065334898, + "c6": 3.6730723729789503, + "c7": 17.535742196052475 }, - "vertexSeeds": { - "c1": 1.7333264371667447, - "c2": 1.7464502432499152, - "c3": 1.7845309366282471, - "c4": 1.762250538104758, - "c5": 1.7266637742072235, - "c6": 1.7380822658608377, - "c7": 1.7038154475060097 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808596, + "c3": 2.1729079981507167, + "c4": 1.738326398520573, + "c5": 1.3037447988904298, + "c6": 0.8691631992602865, + "c7": 0.43458159963014326 }, "rgb": [238, 201, 159] }, @@ -341583,23 +341583,23 @@ "year": 1798, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 19.161628332299095, - "c2": 2.8637078530416176, - "c3": -12.416541920637805, - "c4": 9.511008861392895, - "c5": 2.9245524334087705, - "c6": -19.817828709144244, - "c7": -26.299549742290075 + "points": { + "c1": -38.692067650326884, + "c2": 17.08884821673886, + "c3": 30.17255374618336, + "c4": -22.340898052946436, + "c5": -5.876677368083122, + "c6": 35.85678482747242, + "c7": 26.19589763001718 }, - "vertexSeeds": { - "c1": 5.7856900945865135, - "c2": 5.643879644886011, - "c3": 5.477284129232449, - "c4": 5.508151412933481, - "c5": 5.434711943749367, - "c6": 5.480095785400632, - "c7": 5.463819239456107 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055478, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.773925104022191, + "c7": 1.3869625520110955 }, "rgb": [58, 15, 49] }, @@ -341610,23 +341610,23 @@ "year": 1797, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": -20.253015756064624, - "c2": -15.040648193139566, - "c3": -6.9497857759520105, - "c4": -0.8926858787687095, - "c5": 6.05547514042112, - "c6": -4.279232268245057, - "c7": 1.9300251176891337 + "points": { + "c1": 18.763448187763426, + "c2": -20.312118811423815, + "c3": -14.954389271996073, + "c4": -0.6286522095550247, + "c5": -19.822416386566122, + "c6": 5.0676110855341925, + "c7": -0.10567617942387386 }, - "vertexSeeds": { - "c1": 3.031321575006808, - "c2": 2.9877060542123792, - "c3": 3.038086321917872, - "c4": 2.9353261808690663, - "c5": 3.049836706466831, - "c6": 2.9826174191524637, - "c7": 2.945965515204195 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073514, + "c3": 3.4905224225612552, + "c4": 2.79241793804901, + "c5": 2.0943134535367505, + "c6": 1.396208969024505, + "c7": 0.6981044845122595 }, "rgb": [238, 201, 159] }, @@ -341637,23 +341637,23 @@ "year": 1797, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 28.090290515964355, - "c2": -18.26276444583795, - "c3": -30.2207022569489, - "c4": 19.46411289592011, - "c5": 3.478978871424765, - "c6": -13.50219211993224, - "c7": 15.297569765196961 + "points": { + "c1": -2.7049493513028224, + "c2": -28.35326435922692, + "c3": 22.58115276047635, + "c4": 2.229855803541966, + "c5": 27.693912425067197, + "c6": -0.27354296467107275, + "c7": 15.784512820561254 }, - "vertexSeeds": { - "c1": 3.1601310217531915, - "c2": 3.067983479544848, - "c3": 3.316341814116279, - "c4": 3.296986404775705, - "c5": 3.5654432138260272, - "c6": 2.9630133678955217, - "c7": 3.09052350916861 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521498, + "c3": 4.322699953767916, + "c4": 3.458159963014334, + "c5": 2.593619972260752, + "c6": 1.729079981507165, + "c7": 0.8645399907535867 }, "rgb": [238, 201, 159] }, @@ -341664,23 +341664,23 @@ "year": 1797, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 17.36671433674995, - "c2": 19.43702013458728, - "c3": -9.171256606767294, - "c4": -27.261674348079524, - "c5": -6.219110876254614, - "c6": 27.69622684756734, - "c7": 1.7265187948119625 + "points": { + "c1": 21.72271110541002, + "c2": 0.3344038945128638, + "c3": 23.264980189125097, + "c4": 16.794109993705412, + "c5": -20.222861796458712, + "c6": 18.872831370324647, + "c7": 19.487248649071454 }, - "vertexSeeds": { - "c1": 4.103611863041774, - "c2": 4.042142823921518, - "c3": 4.133753643152162, - "c4": 4.02122101796485, - "c5": 4.075593068651683, - "c6": 4.130818191031545, - "c7": 4.077420783698794 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172908, + "c4": 3.9574664817383263, + "c5": 2.9680998613037444, + "c6": 1.9787332408691631, + "c7": 0.9893666204345816 }, "rgb": [238, 201, 159] }, @@ -341691,23 +341691,23 @@ "year": 1797, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -32.42252114684211, - "c2": 7.394565532923544, - "c3": -22.118286812828362, - "c4": 20.908750940091807, - "c5": -26.126669168585043, - "c6": 24.066685352148866, - "c7": -6.868533212295709 + "points": { + "c1": 9.059390547105686, + "c2": 6.986855803277827, + "c3": -33.041863882751954, + "c4": -31.818217912569693, + "c5": -13.954295442931727, + "c6": -8.748862711686826, + "c7": 5.450970328425434 }, - "vertexSeeds": { - "c1": 6.912117111794661, - "c2": 7.012178120789308, - "c3": 6.949012837265827, - "c4": 6.906444220063338, - "c5": 6.924291336821474, - "c6": 6.747177343936204, - "c7": 7.009839567387244 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640788, + "c3": 8.414239482200667, + "c4": 6.7313915857605116, + "c5": 5.048543689320394, + "c6": 3.365695792880275, + "c7": 1.682847896440156 }, "rgb": [238, 201, 159] }, @@ -341718,23 +341718,23 @@ "year": 1797, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -26.73015145343281, - "c2": -8.75653563997826, - "c3": 28.978041438526596, - "c4": 35.8605067613418, - "c5": 21.362705279063057, - "c6": 15.24510928354782, - "c7": -1.5815401712209507 + "points": { + "c1": 46.764353493656536, + "c2": -27.484578336009513, + "c3": 35.18598830027397, + "c4": -16.170851758096138, + "c5": -8.518537048736796, + "c6": 13.007141376314046, + "c7": 39.87652331212548 }, - "vertexSeeds": { - "c1": 10.08390969580672, - "c2": 10.022867275505522, - "c3": 10.0067854996523, - "c4": 10.169495839744936, - "c5": 10.141721861974816, - "c6": 10.085023532652775, - "c7": 10.155851556688297 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156752, + "c3": 12.159038372630654, + "c4": 9.72723069810456, + "c5": 7.295423023578288, + "c6": 4.863615349052192, + "c7": 2.431807674526096 }, "rgb": [222, 0, 59] }, @@ -341745,23 +341745,23 @@ "year": 1797, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 14.362119387437438, - "c2": 23.470634259740763, - "c3": -25.699631888351476, - "c4": 6.4776984669056645, - "c5": -25.295179925362028, - "c6": -8.511592761651873, - "c7": -1.930212212238171 + "points": { + "c1": 21.167950268989202, + "c2": -18.282125505026716, + "c3": -19.62673821065713, + "c4": -23.970144471552977, + "c5": -13.648839065179668, + "c6": 9.159861492243955, + "c7": 16.781424220381524 }, - "vertexSeeds": { - "c1": 8.071247796505855, - "c2": 7.858780749124321, - "c3": 8.042774398863711, - "c4": 7.772877577913627, - "c5": 8.157624275471461, - "c6": 7.6148948996476955, - "c7": 7.481196104906889 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933424, + "c3": 9.731853906611189, + "c4": 7.78548312528895, + "c5": 5.839112343966712, + "c6": 3.892741562644475, + "c7": 1.9463707813222375 }, "rgb": [58, 15, 49] }, @@ -341772,23 +341772,23 @@ "year": 1797, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -12.333912455784782, - "c2": 12.640676627588721, - "c3": -26.859214569015183, - "c4": 26.317278027156203, - "c5": 18.414613335732806, - "c6": -9.824032548674705, - "c7": -26.02290293414329 + "points": { + "c1": -19.496462827886134, + "c2": 3.1577563707854246, + "c3": 2.4816036627954396, + "c4": -9.59243007831547, + "c5": -13.298744340321246, + "c6": 6.108108892639041, + "c7": -21.98075243381317 }, - "vertexSeeds": { - "c1": 5.117152873383164, - "c2": 4.931534628974527, - "c3": 4.8401870980403725, - "c4": 4.65063606103372, - "c5": 4.963708105449001, - "c6": 4.817798773255627, - "c7": 4.678283859646581 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739246, + "c3": 6.171983356449383, + "c4": 4.937586685159504, + "c5": 3.703190013869623, + "c6": 2.468793342579752, + "c7": 1.23439667128988 }, "rgb": [238, 201, 159] }, @@ -341799,23 +341799,23 @@ "year": 1798, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": -7.685949774724271, - "c2": -41.507044003008524, - "c3": 53.544475233390344, - "c4": 23.73787420396836, - "c5": -0.09244051247908658, - "c6": 43.659119082470994, - "c7": -54.68759088668156 + "points": { + "c1": 4.179516715888582, + "c2": 14.865147823945875, + "c3": 2.754665682465216, + "c4": 11.780027644093863, + "c5": 23.144560404784727, + "c6": 42.77302320817755, + "c7": -22.153847315396035 }, - "vertexSeeds": { - "c1": 1.9160255491606712, - "c2": 1.9676786073334205, - "c3": 1.7853239294562062, - "c4": 1.8233878952684706, - "c5": 1.7858301461788155, - "c6": 1.7924134756338375, - "c7": 2.0008554281341997 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.427184466019417, + "c4": 1.941747572815535, + "c5": 1.4563106796116496, + "c6": 0.9708737864077674, + "c7": 0.4854368932038821 }, "rgb": [58, 15, 49] }, @@ -341826,23 +341826,23 @@ "year": 1798, "resistanceReported": false, "duration": 48729600, - "curveSeeds": { - "c1": -26.963850449995427, - "c2": 17.26856878193633, - "c3": 1.7298754296424406, - "c4": 30.515278769018643, - "c5": 51.19580886309681, - "c6": -62.220752360421905, - "c7": 0.2127857683744594 + "points": { + "c1": -8.657619959666121, + "c2": 36.414024496242135, + "c3": -42.79765421518093, + "c4": 63.966415416573255, + "c5": -9.644735955811697, + "c6": -7.898260446566347, + "c7": 41.06997462628486 }, - "vertexSeeds": { - "c1": 3.167374141748094, - "c2": 3.3307018822763137, - "c3": 3.3658711842988893, - "c4": 3.4299994058330237, - "c5": 3.1781041028753156, - "c6": 3.104112915862372, - "c7": 3.4687920864447377 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400834, + "c3": 4.253351826167357, + "c4": 3.4026814609338873, + "c5": 2.552011095700417, + "c6": 1.701340730466947, + "c7": 0.8506703652334702 }, "rgb": [222, 0, 59] }, @@ -341853,23 +341853,23 @@ "year": 1797, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -10.001923056186428, - "c2": 13.350971918046987, - "c3": 1.5661872886179893, - "c4": -9.480318775171291, - "c5": 20.398403398686852, - "c6": 1.794796336561724, - "c7": -33.605919868767664 + "points": { + "c1": -17.42082444753701, + "c2": -22.336560508547997, + "c3": -7.185240408023407, + "c4": -25.59862135441714, + "c5": -12.927967166489072, + "c6": -15.428559578318126, + "c7": 35.529902167407556 }, - "vertexSeeds": { - "c1": 7.538860103626943, - "c2": 7.538860103626943, - "c3": 7.538860103626943, - "c4": 7.538860103626943, - "c5": 7.538860103626943, - "c6": 7.538860103626943, - "c7": 7.538860103626943 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -341880,23 +341880,23 @@ "year": 1798, "resistanceReported": false, "duration": 39916800, - "curveSeeds": { - "c1": 2.762160385391496, - "c2": -35.98726928230511, - "c3": 37.41438164821334, - "c4": 15.070464311795767, - "c5": 44.82335602210774, - "c6": -33.09818901389353, - "c7": -37.64512773454054 + "points": { + "c1": 32.02892537575131, + "c2": -24.923550744968104, + "c3": 2.9182335886715904, + "c4": -50.09502626249089, + "c5": -31.242124896136588, + "c6": -15.715941213861619, + "c7": -25.41115300648177 }, - "vertexSeeds": { - "c1": 5.020645666362282, - "c2": 5.030872915291304, - "c3": 5.039291188740125, - "c4": 5.228279567019039, - "c5": 5.062152809155357, - "c6": 5.088295633131701, - "c7": 5.160571481086547 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900149, + "c3": 6.264447526583445, + "c4": 5.011558021266767, + "c5": 3.7586685159500623, + "c6": 2.5057790106333835, + "c7": 1.2528895053166917 }, "rgb": [222, 0, 59] }, @@ -341907,23 +341907,23 @@ "year": 1797, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -20.17860308098679, - "c2": 21.528945369921278, - "c3": 2.104462196216783, - "c4": -11.898532625018575, - "c5": -21.66393826236082, - "c6": 2.3854438627840473, - "c7": -16.344809320829633 + "points": { + "c1": -24.225508882276984, + "c2": 2.778158942540042, + "c3": -11.862170024302323, + "c4": -30.011934271893864, + "c5": 19.581161568342676, + "c6": 27.489894690870532, + "c7": 4.888272930842302 }, - "vertexSeeds": { - "c1": 7.284696164473574, - "c2": 6.976523203558647, - "c3": 6.998364148902193, - "c4": 7.405933878464618, - "c5": 7.476292148501335, - "c6": 7.108552761427408, - "c7": 6.9687485443285295 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471568, + "c4": 7.156726768377254, + "c5": 5.367545076282941, + "c6": 3.578363384188627, + "c7": 1.7891816920943135 }, "rgb": [86, 146, 138] }, @@ -341934,23 +341934,23 @@ "year": 1797, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -16.41130791333466, - "c2": 30.11848594863176, - "c3": 29.314773429699326, - "c4": 12.933415127257039, - "c5": -1.936888623871674, - "c6": -22.846290429173756, - "c7": 4.469871594153961 + "points": { + "c1": 25.760109002593367, + "c2": -29.815565175011212, + "c3": 20.914494674119716, + "c4": 22.330224927282465, + "c5": 19.32162849727667, + "c6": 3.8787405082034923, + "c7": -20.428191830214814 }, - "vertexSeeds": { - "c1": 1.829139956746844, - "c2": 1.8350554897338178, - "c3": 1.8431686394874465, - "c4": 1.8482676424904814, - "c5": 1.8364019114191878, - "c6": 1.9345832235154414, - "c7": 1.8472457171676884 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.801664355062411, + "c3": 2.3347202958853477, + "c4": 1.8677762367082766, + "c5": 1.4008321775312056, + "c6": 0.9338881183541344, + "c7": 0.46694405917707116 }, "rgb": [58, 15, 49] }, @@ -341961,23 +341961,23 @@ "year": 1797, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -26.44964869235758, - "c2": -20.272509940503518, - "c3": -9.318279281100995, - "c4": 12.401845320019788, - "c5": -34.39420563378859, - "c6": -2.64367406915202, - "c7": -11.770584275235628 + "points": { + "c1": 31.768389678468267, + "c2": 6.82851390188285, + "c3": -14.718091201106262, + "c4": 20.22807583610691, + "c5": 33.94831262343092, + "c6": -18.96505309663483, + "c7": -3.0770052910637773 }, - "vertexSeeds": { - "c1": 10.10368336132436, - "c2": 10.690048782948121, - "c3": 9.861811479065743, - "c4": 9.59058139530393, - "c5": 10.443452866887684, - "c6": 10.127138316295769, - "c7": 10.485982655645886 + "offsets": { + "c1": 18.41423948220065, + "c2": 15.783633841886271, + "c3": 13.153028201571889, + "c4": 10.522422561257509, + "c5": 7.8918169209431275, + "c6": 5.261211280628747, + "c7": 2.630605640314368 }, "rgb": [86, 146, 138] }, @@ -341988,23 +341988,23 @@ "year": 1797, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -1.3826410731867682, - "c2": 3.2209385346144046, - "c3": -18.04894506056475, - "c4": 1.2889101453913057, - "c5": 9.257198320703896, - "c6": 13.042566198617227, - "c7": -12.59546347993744 + "points": { + "c1": -18.278297626017988, + "c2": 15.582251350448619, + "c3": -9.637320444393783, + "c4": -22.93494912845194, + "c5": 19.66521383439824, + "c6": -0.9399250263518795, + "c7": -16.19251332504004 }, - "vertexSeeds": { - "c1": 4.27420795476557, - "c2": 4.272288864725365, - "c3": 4.278252492312944, - "c4": 4.3602643878729355, - "c5": 4.308993064565147, - "c6": 4.481839775710673, - "c7": 4.356898732600932 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452155, + "c3": 5.43226999537679, + "c4": 4.345815996301437, + "c5": 3.2593619972260712, + "c6": 2.1729079981507184, + "c7": 1.0864539990753657 }, "rgb": [86, 146, 138] }, @@ -342015,23 +342015,23 @@ "year": 1797, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 18.116016148894673, - "c2": -30.987759132131416, - "c3": -18.958923967476743, - "c4": 13.514694027837301, - "c5": -30.237567834725496, - "c6": -0.9177781517102233, - "c7": -10.446006184223076 + "points": { + "c1": 38.23045922519863, + "c2": 1.6048630829334698, + "c3": -2.4504734087007947, + "c4": -7.209016659699667, + "c5": 35.027023062210034, + "c6": -21.74609610511461, + "c7": 16.54571839837493 }, - "vertexSeeds": { - "c1": 6.2984396437406085, - "c2": 6.438105099961054, - "c3": 6.158730895218567, - "c4": 6.259994184622153, - "c5": 6.312034591909233, - "c6": 6.316818427214813, - "c7": 6.3707383188115685 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876553, + "c3": 7.975034674063804, + "c4": 6.380027739251035, + "c5": 4.785020804438287, + "c6": 3.1900138696255174, + "c7": 1.5950069348127698 }, "rgb": [77, 76, 132] }, @@ -342042,23 +342042,23 @@ "year": 1797, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 13.906898223458022, - "c2": 22.015743746046972, - "c3": 26.434896930703935, - "c4": -14.431478045260844, - "c5": -5.973740077227895, - "c6": -17.802982371049243, - "c7": 4.188044112113783 + "points": { + "c1": -2.734081458065095, + "c2": 2.0311784592564948, + "c3": 14.55797856224767, + "c4": -24.04571185213667, + "c5": -16.991494702295014, + "c6": -28.722550087433408, + "c7": 11.203468611949894 }, - "vertexSeeds": { - "c1": 6.602230675689604, - "c2": 6.603578354742704, - "c3": 6.652453598788133, - "c4": 7.458046782142293, - "c5": 6.500599510216461, - "c6": 6.936938343358727, - "c7": 7.776122100334006 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.31761442441054, + "c3": 9.431345353675455, + "c4": 7.545076282940363, + "c5": 5.65880721220527, + "c6": 3.772538141470186, + "c7": 1.886269070735093 }, "rgb": [238, 201, 159] }, @@ -342069,23 +342069,23 @@ "year": 1797, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 28.10230867505068, - "c2": -9.554613252569933, - "c3": -18.339363417735107, - "c4": -27.71067894163528, - "c5": -6.660715989541025, - "c6": -23.13607744741485, - "c7": 24.38967273184803 + "points": { + "c1": 14.284578107372738, + "c2": 29.040149499971477, + "c3": -16.44219244276031, + "c4": -12.402932755593334, + "c5": -8.457382759360978, + "c6": -19.87956945727081, + "c7": -15.3896083445981 }, - "vertexSeeds": { - "c1": 2.826325820470121, - "c2": 2.8270941056353918, - "c3": 2.8358098533058174, - "c4": 2.8205905090746617, - "c5": 2.8224922398568304, - "c6": 2.828176515487866, - "c7": 2.818112674700723 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.07766990291264, + "c3": 3.398058252427223, + "c4": 2.7184466019418054, + "c5": 2.0388349514562525, + "c6": 1.359223300970835, + "c7": 0.6796116504854175 }, "rgb": [238, 201, 159] }, @@ -342096,23 +342096,23 @@ "year": 1797, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 5.910943188079116, - "c2": 26.940557666224798, - "c3": -7.319650502941023, - "c4": -25.806785064896026, - "c5": -21.570308375616015, - "c6": 11.793366655518632, - "c7": -5.166364306385763 + "points": { + "c1": -11.071247226349321, + "c2": 26.254102516774267, + "c3": 25.410861234198784, + "c4": 3.382614495621887, + "c5": 27.512743416972683, + "c6": 5.664459604413196, + "c7": -30.195185708129213 }, - "vertexSeeds": { - "c1": 8.249490252481252, - "c2": 8.157804015632896, - "c3": 7.730958515495645, - "c4": 8.247323314491052, - "c5": 7.853677375073869, - "c6": 7.961779345705891, - "c7": 8.212830742986762 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.01109570041608, + "c3": 10.00924641701341, + "c4": 8.00739713361072, + "c5": 6.005547850208049, + "c6": 4.00369856680536, + "c7": 2.0018492834026893 }, "rgb": [58, 15, 49] }, @@ -342123,23 +342123,23 @@ "year": 1797, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 38.51047285595155, - "c2": -23.84870746735004, - "c3": 29.891799524269658, - "c4": 20.505959072874816, - "c5": -17.694051362045027, - "c6": 17.004491492222257, - "c7": 37.16354591054305 + "points": { + "c1": 27.824425189906975, + "c2": -11.807781160274747, + "c3": -3.7189202445881975, + "c4": 11.275864039182608, + "c5": -15.703243509258648, + "c6": 36.7526475881658, + "c7": -37.74701034512744 }, - "vertexSeeds": { - "c1": 1.0794943640135397, - "c2": 1.0930543622793467, - "c3": 1.1246576358861393, - "c4": 1.1159144379454595, - "c5": 1.0249115659426469, - "c6": 1.1263198575088031, - "c7": 1.1092576893892505 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.6366158113730933, + "c3": 1.363846509477578, + "c4": 1.091077207582063, + "c5": 0.8183079056865478, + "c6": 0.5455386037910303, + "c7": 0.2727693018955174 }, "rgb": [238, 201, 159] }, @@ -342150,23 +342150,23 @@ "year": 1797, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -25.732062305489396, - "c2": 26.298508632761035, - "c3": 10.877328449701992, - "c4": -14.786058061219542, - "c5": 25.9942854891315, - "c6": -22.26534433317314, - "c7": -26.69541653736775 + "points": { + "c1": 8.213142871599679, + "c2": 7.057089897728645, + "c3": 7.799836716433951, + "c4": -31.690329187945018, + "c5": -13.338758461034175, + "c6": -29.24219773255161, + "c7": 20.404374063179738 }, - "vertexSeeds": { - "c1": 6.236467804598525, - "c2": 6.1798759414737745, - "c3": 5.792088053113533, - "c4": 6.201666219442202, - "c5": 5.9867536338911735, - "c6": 6.021243564227857, - "c7": 6.143451994623001 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951461, + "c3": 7.443365695792887, + "c4": 5.954692556634315, + "c5": 4.466019417475743, + "c6": 2.977346278317145, + "c7": 1.4886731391585726 }, "rgb": [58, 15, 49] }, @@ -342177,23 +342177,23 @@ "year": 1797, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -21.89039518687338, - "c2": 31.3917611734729, - "c3": 21.496082599879564, - "c4": -10.878841579240571, - "c5": 4.274015900148278, - "c6": 31.28024149550444, - "c7": -25.00309221425665 + "points": { + "c1": -38.440059199952756, + "c2": -13.427063558892478, + "c3": -4.455124237401563, + "c4": -27.802522961769135, + "c5": -17.25633442016072, + "c6": -14.972255345668753, + "c7": -9.561062977093751 }, - "vertexSeeds": { - "c1": 6.947290177235463, - "c2": 6.9278902194004806, - "c3": 6.948112089659724, - "c4": 6.964633040050229, - "c5": 7.001064002177093, - "c6": 6.999932581714598, - "c7": 6.960829100932135 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560312, + "c3": 8.368007397133573, + "c4": 6.69440591770683, + "c5": 5.020804438280223, + "c6": 3.347202958853482, + "c7": 1.673601479426741 }, "rgb": [238, 201, 159] }, @@ -342204,23 +342204,23 @@ "year": 1798, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 40.50308971249066, - "c2": -7.129875904032367, - "c3": -16.8725808195879, - "c4": 30.92663618206673, - "c5": -10.700200882572773, - "c6": -17.292909214480158, - "c7": 30.154908665672025 + "points": { + "c1": 28.125010252815756, + "c2": -38.59121229352659, + "c3": 27.752680258656653, + "c4": 5.466632160396941, + "c5": -9.324441080831008, + "c6": 0.6309695632325116, + "c7": -12.236320590691342 }, - "vertexSeeds": { - "c1": 2.2671938172038564, - "c2": 2.2757752304435703, - "c3": 2.3167919388551597, - "c4": 2.298002533810834, - "c5": 2.343821211030628, - "c6": 2.2994983282402623, - "c7": 2.282647732215402 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070782, + "c3": 2.8201571890892265, + "c4": 2.256125751271386, + "c5": 1.6920943134535449, + "c6": 1.128062875635693, + "c7": 0.564031437817852 }, "rgb": [58, 15, 49] }, @@ -342231,23 +342231,23 @@ "year": 1798, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -23.684457046299634, - "c2": -28.691151803839848, - "c3": -36.6033968549806, - "c4": 9.401852240475264, - "c5": 5.918272347925999, - "c6": 40.77958197213494, - "c7": -38.637886217919615 + "points": { + "c1": 15.91792458560186, + "c2": -31.3290625267456, + "c3": -16.482992371336728, + "c4": -5.231218460237407, + "c5": 31.811649794355283, + "c6": -14.232299789808046, + "c7": 2.309786379141144 }, - "vertexSeeds": { - "c1": 6.049921277156384, - "c2": 6.013702842646815, - "c3": 6.242710880651505, - "c4": 6.339332477984068, - "c5": 6.196149939131884, - "c6": 6.1171188652223085, - "c7": 6.452251275450231 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434112, + "c3": 7.72075820619511, + "c4": 6.176606564956082, + "c5": 4.632454923717056, + "c6": 3.0883032824780288, + "c7": 1.5441516412390273 }, "rgb": [86, 146, 138] }, @@ -342258,23 +342258,23 @@ "year": 1797, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 9.38734346642714, - "c2": -18.708733836965088, - "c3": 25.329910157986752, - "c4": 15.41909314307157, - "c5": -3.6666865750608046, - "c6": 18.849860308110067, - "c7": 11.669419620234251 + "points": { + "c1": -0.9793837862103985, + "c2": -19.869321755726222, + "c3": 1.8002256081936494, + "c4": 24.604203479548893, + "c5": -30.120915568523323, + "c6": -24.948952594366997, + "c7": 2.1692635639385074 }, - "vertexSeeds": { - "c1": 6.129050851505873, - "c2": 6.081566816864493, - "c3": 6.081162414991356, - "c4": 6.109845696434274, - "c5": 6.06895670412425, - "c6": 6.075319394164293, - "c7": 6.1285278176821425 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750389, + "c3": 7.3277854831252265, + "c4": 5.8622283865002105, + "c5": 4.3966712898751945, + "c6": 2.9311141932500324, + "c7": 1.4655570966250162 }, "rgb": [238, 201, 159] }, @@ -342285,23 +342285,23 @@ "year": 1798, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -52.241733035501674, - "c2": 29.0324913872072, - "c3": -44.92953507418554, - "c4": -51.72759018488989, - "c5": 20.449787734807202, - "c6": 12.05368788608476, - "c7": -14.610557635375343 + "points": { + "c1": 26.50588754085709, + "c2": -53.400258740949305, + "c3": -44.201487141103385, + "c4": -19.55372092146822, + "c5": -7.731263273017902, + "c6": -41.51478645662989, + "c7": -20.728728899104482 }, - "vertexSeeds": { - "c1": 6.6141132748402125, - "c2": 6.1198039951011625, - "c3": 6.158350703098769, - "c4": 6.318597925409838, - "c5": 6.236095487689853, - "c6": 6.14222604884469, - "c7": 6.462292734236563 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.486823855755885, + "c3": 7.905686546463248, + "c4": 6.32454923717059, + "c5": 4.743411927877954, + "c6": 3.162274618585295, + "c7": 1.5811373092926368 }, "rgb": [86, 146, 138] }, @@ -342312,23 +342312,23 @@ "year": 1798, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -0.9189902271257324, - "c2": -36.6525624796211, - "c3": -40.25303570711566, - "c4": 13.58402755019091, - "c5": -3.506945122276406, - "c6": 36.08351748915629, - "c7": -21.406197016586958 + "points": { + "c1": -35.549028562174584, + "c2": 36.704908788721994, + "c3": -13.417554073153177, + "c4": 41.915389720099185, + "c5": -7.012366353087444, + "c6": 20.253382691873938, + "c7": 21.75713661490812 }, - "vertexSeeds": { - "c1": 2.1080540749354837, - "c2": 2.038270307400999, - "c3": 1.952737949855184, - "c4": 2.0962289003369663, - "c5": 2.0110239270702026, - "c6": 2.147447045554617, - "c7": 1.971735706837665 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504855, + "c3": 2.5889967637540465, + "c4": 2.0711974110032383, + "c5": 1.5533980582524298, + "c6": 1.035598705501617, + "c7": 0.5177993527508085 }, "rgb": [222, 0, 59] }, @@ -342339,23 +342339,23 @@ "year": 1798, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 4.115629642998343, - "c2": 38.37958066633419, - "c3": -4.855629922110033, - "c4": 23.631454305776543, - "c5": -28.580146294015258, - "c6": -3.4793243769464084, - "c7": 4.7460881734839475 + "points": { + "c1": 29.949056698419056, + "c2": -31.78665663682742, + "c3": 17.208684462102575, + "c4": 21.21841273449388, + "c5": 14.229960733552026, + "c6": 4.255738142777986, + "c7": 23.44920963969993 }, - "vertexSeeds": { - "c1": 0.7336050145295346, - "c2": 0.7313204925372917, - "c3": 0.7123152125033323, - "c4": 0.7120881309787849, - "c5": 0.7109988181572292, - "c6": 0.7058208411109013, - "c7": 0.6986753471722263 + "offsets": { + "c1": 1.262135922330097, + "c2": 1.0818307905686537, + "c3": 0.9015256588072134, + "c4": 0.7212205270457701, + "c5": 0.5409153952843269, + "c6": 0.36061026352288655, + "c7": 0.18030513176144328 }, "rgb": [58, 15, 49] }, @@ -342366,23 +342366,23 @@ "year": 1797, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 25.86794237550133, - "c2": 13.196901065373453, - "c3": 23.864727803418937, - "c4": 26.705843274070233, - "c5": 11.489638139861938, - "c6": 0.9827644006023277, - "c7": 13.509971759342172 + "points": { + "c1": 4.4882257010928726, + "c2": -4.001383761485272, + "c3": 10.521945723305919, + "c4": 17.405636646396324, + "c5": -3.142438961342762, + "c6": -7.808932229656506, + "c7": 3.1298621320890945 }, - "vertexSeeds": { - "c1": 7.803694995058677, - "c2": 7.562439403500056, - "c3": 7.745358846175872, - "c4": 7.899610471870362, - "c5": 7.7110280327224645, - "c6": 7.889799354469225, - "c7": 7.958115910174825 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.62274618585298, + "c3": 9.685621821544151, + "c4": 7.74849745723532, + "c5": 5.81137309292649, + "c6": 3.87424872861766, + "c7": 1.93712436430883 }, "rgb": [238, 201, 159] }, @@ -342393,23 +342393,23 @@ "year": 1798, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": 16.935400992230463, - "c2": 5.081390390065046, - "c3": -31.885693564384802, - "c4": 42.837954811882376, - "c5": 11.475334981583266, - "c6": 30.904412288505746, - "c7": 25.240086373531888 + "points": { + "c1": -10.93158289972856, + "c2": -4.392429606666624, + "c3": 16.112244613374457, + "c4": -30.3640945182258, + "c5": -44.14525185444251, + "c6": 20.13481981816465, + "c7": 35.315352919046454 }, - "vertexSeeds": { - "c1": 8.00881510294179, - "c2": 8.04509003794513, - "c3": 7.853927177510595, - "c4": 8.393029227459367, - "c5": 8.072447454123418, - "c6": 8.132072113165883, - "c7": 8.541104498116086 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.26074895977808, + "c3": 10.217290799815082, + "c4": 8.17383263985206, + "c5": 6.13037447988904, + "c6": 4.086916319926041, + "c7": 2.0434581599630204 }, "rgb": [222, 0, 59] }, @@ -342420,23 +342420,23 @@ "year": 1798, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": -37.055838085594985, - "c2": -13.851465778633205, - "c3": 1.4214712385468928, - "c4": -22.285460948606094, - "c5": -35.05396061292994, - "c6": -26.158991108524578, - "c7": 47.38697705072801 + "points": { + "c1": 42.54971545587544, + "c2": 38.453854226149716, + "c3": -48.934839650794906, + "c4": -18.112436974151116, + "c5": -12.944694932007458, + "c6": -34.08878096362328, + "c7": -42.31314487477241 }, - "vertexSeeds": { - "c1": 14.36915641081926, - "c2": 14.357586047412761, - "c3": 14.37615866325337, - "c4": 14.315928539945851, - "c5": 14.309579399834812, - "c6": 14.265315683114162, - "c7": 14.383911957798693 + "offsets": { + "c1": 24.01294498381877, + "c2": 20.582524271844658, + "c3": 17.15210355987055, + "c4": 13.721682847896439, + "c5": 10.291262135922329, + "c6": 6.860841423948219, + "c7": 3.4304207119741097 }, "rgb": [222, 0, 59] }, @@ -342447,23 +342447,23 @@ "year": 1797, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -6.004786404227399, - "c2": 19.636698621759408, - "c3": 4.692340557477266, - "c4": -13.206306390439957, - "c5": -12.144096470295043, - "c6": -16.877980810087884, - "c7": 10.033571933594153 + "points": { + "c1": -24.239221405606784, + "c2": 11.420481409735117, + "c3": 16.025138352593224, + "c4": 23.218064525019322, + "c5": -4.183156544583227, + "c6": -7.619852652545127, + "c7": 19.630771323525636 }, - "vertexSeeds": { - "c1": 6.8741569094265405, - "c2": 6.907178552278715, - "c3": 6.695718447493127, - "c4": 6.491542364498092, - "c5": 6.272032874936368, - "c6": 6.676077122666087, - "c7": 6.664361238810797 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359222, + "c3": 8.252427184466018, + "c4": 6.601941747572814, + "c5": 4.951456310679611, + "c6": 3.300970873786407, + "c7": 1.6504854368932036 }, "rgb": [77, 76, 132] }, @@ -342474,23 +342474,23 @@ "year": 1797, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -6.402720427368525, - "c2": -21.034294237537953, - "c3": -2.155867653203348, - "c4": -21.536202864724764, - "c5": -1.7834185469843185, - "c6": 7.0543181093722644, - "c7": 23.19213698017253 + "points": { + "c1": -24.651608234527902, + "c2": 19.67822087182537, + "c3": 6.569514964951605, + "c4": 14.500609391360516, + "c5": -28.272438361888547, + "c6": -5.6603856636670145, + "c7": -18.201207024736476 }, - "vertexSeeds": { - "c1": 6.086670251745178, - "c2": 6.430784489796013, - "c3": 6.022779104451568, - "c4": 6.145651578974605, - "c5": 6.2799042644992396, - "c6": 6.266474746843588, - "c7": 6.0378362268836225 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [77, 76, 132] }, @@ -342501,23 +342501,23 @@ "year": 1798, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 17.557628808381544, - "c2": -14.626859304793015, - "c3": 10.035914237036351, - "c4": 15.655589216104076, - "c5": 10.303359257118238, - "c6": 29.951147874503448, - "c7": 2.191526884440158 + "points": { + "c1": 2.6441127264909525, + "c2": 1.897664779987366, + "c3": 28.645661638194085, + "c4": 33.12313415225486, + "c5": -10.5692642829401, + "c6": 6.295863614739176, + "c7": 22.2979768395234 }, - "vertexSeeds": { - "c1": 3.768548081559012, - "c2": 3.880027999887479, - "c3": 3.9303318950134813, - "c4": 3.8982643645726602, - "c5": 3.995390327352166, - "c6": 4.007396649574911, - "c7": 3.885917337583554 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406382, + "c3": 4.831252889505321, + "c4": 3.8650023116042465, + "c5": 2.8987517337031847, + "c6": 1.9325011558021232, + "c7": 0.9662505779010616 }, "rgb": [77, 76, 132] }, @@ -342528,23 +342528,23 @@ "year": 1797, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -22.55785177799693, - "c2": -18.979447326545305, - "c3": 32.04139031185143, - "c4": 8.767746152450592, - "c5": 5.523347527753373, - "c6": 17.535857169550212, - "c7": 29.992360993553163 + "points": { + "c1": -24.97717517407373, + "c2": 15.569798757066081, + "c3": 6.105634704405794, + "c4": -8.056518885307987, + "c5": 18.664354209625493, + "c6": 30.23546405036909, + "c7": 6.628552995465114 }, - "vertexSeeds": { - "c1": 6.89773176915699, - "c2": 6.895200304156057, - "c3": 7.433073052054419, - "c4": 7.496218825540844, - "c5": 7.536362636527602, - "c6": 7.173588375046505, - "c7": 7.5851171933107135 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.98474341192788, + "c3": 9.153952843273236, + "c4": 7.323162274618592, + "c5": 5.492371705963948, + "c6": 3.661581137309288, + "c7": 1.830790568654644 }, "rgb": [58, 15, 49] }, @@ -342555,23 +342555,23 @@ "year": 1797, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -24.690256604675984, - "c2": -4.2369685106197785, - "c3": -9.604271160167137, - "c4": 8.729967671916718, - "c5": -21.67824691819223, - "c6": 11.234776799908836, - "c7": -12.84854083447879 + "points": { + "c1": -20.480483786293238, + "c2": 8.842794404547604, + "c3": 2.0011054780789195, + "c4": -20.33889894271654, + "c5": 31.7249658543884, + "c6": -27.727279468603843, + "c7": 26.896975788292806 }, - "vertexSeeds": { - "c1": 1.3882404732233833, - "c2": 1.2967596745078362, - "c3": 1.5555350851724374, - "c4": 1.2250588765961616, - "c5": 1.3325920668755231, - "c6": 1.1684023027404822, - "c7": 1.5191175343767374 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384187, + "c3": 1.9186315302820154, + "c4": 1.534905224225612, + "c5": 1.151178918169209, + "c6": 0.7674526121128056, + "c7": 0.38372630605640234 }, "rgb": [86, 146, 138] }, @@ -342582,23 +342582,23 @@ "year": 1797, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -20.153015624584086, - "c2": 2.630509392074334, - "c3": -3.776261403672013, - "c4": -10.564138089859057, - "c5": -16.479899633157025, - "c6": -12.253164090287756, - "c7": 5.0014033025404565 + "points": { + "c1": -26.35791906713139, + "c2": 8.616575863755898, + "c3": -12.992631565226302, + "c4": -17.154058471878464, + "c5": -1.1684727203045213, + "c6": -12.311822326573976, + "c7": 21.50577422732343 }, - "vertexSeeds": { - "c1": 1.4862484770388353, - "c2": 1.4522718371231118, - "c3": 1.4338543825051633, - "c4": 1.4387321016713293, - "c5": 1.475157252877141, - "c6": 1.4470133616151168, - "c7": 1.4825642545337878 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177517, + "c3": 1.8492834026814637, + "c4": 1.4794267221451698, + "c5": 1.1095700416088758, + "c6": 0.7397133610725818, + "c7": 0.369856680536294 }, "rgb": [222, 0, 59] }, @@ -342609,23 +342609,23 @@ "year": 1797, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 0.9712664403356257, - "c2": -9.338540722826629, - "c3": -17.630330737614667, - "c4": 3.9792150446533405, - "c5": 12.99401961594183, - "c6": -7.665695550019038, - "c7": 11.881670677565566 + "points": { + "c1": -14.25037361080661, + "c2": 13.433162895343663, + "c3": -1.7744169429679175, + "c4": -5.9303965282431825, + "c5": -12.620070829069103, + "c6": -4.144622048253023, + "c7": -5.844364548233951 }, - "vertexSeeds": { - "c1": 6.927038152893965, - "c2": 6.832201469547155, - "c3": 6.911505833110505, - "c4": 6.980313139120559, - "c5": 6.8275215335674035, - "c6": 6.872111761123935, - "c7": 6.990598963149153 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600573, + "c3": 8.391123439667103, + "c4": 6.712898751733696, + "c5": 5.034674063800287, + "c6": 3.3564493758668776, + "c7": 1.6782246879334086 }, "rgb": [86, 146, 138] }, @@ -342636,23 +342636,23 @@ "year": 1797, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 19.903100182553583, - "c2": -6.58463692178222, - "c3": 4.517830587095521, - "c4": -25.623427084008373, - "c5": 29.53175493095308, - "c6": -20.561148266447766, - "c7": 11.687224860036121 + "points": { + "c1": 22.032209305040126, + "c2": 1.7165109946867716, + "c3": -1.2718755135432787, + "c4": -3.962147354396791, + "c5": -31.381553248332708, + "c6": 9.146692724756008, + "c7": 28.940321676595012 }, - "vertexSeeds": { - "c1": 6.777809407515103, - "c2": 6.719847511704247, - "c3": 6.723090290688573, - "c4": 6.612628660262626, - "c5": 6.568060493463265, - "c6": 6.780482215535424, - "c7": 6.691302193640097 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198342, + "c3": 8.159963014331957, + "c4": 6.527970411465574, + "c5": 4.8959778085991505, + "c6": 3.2639852057327667, + "c7": 1.6319926028663834 }, "rgb": [86, 146, 138] }, @@ -342663,23 +342663,23 @@ "year": 1797, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -28.188547605602295, - "c2": 14.87012956102236, - "c3": -28.12323135560201, - "c4": -3.4391784424358036, - "c5": 7.3107118834319, - "c6": 19.25873926181898, - "c7": 29.93996206043299 + "points": { + "c1": -19.87892943412143, + "c2": 16.834761413142445, + "c3": 19.103543338497126, + "c4": -13.735091474168822, + "c5": 3.465156668820498, + "c6": 23.552602057713614, + "c7": 0.14485889179879763 }, - "vertexSeeds": { - "c1": 8.912685731192575, - "c2": 8.79108637104325, - "c3": 8.734517006664476, - "c4": 8.910058441442885, - "c5": 8.747174942641818, - "c6": 8.866467312468082, - "c7": 8.804180875387418 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502071, + "c3": 10.633379565418382, + "c4": 8.506703652334762, + "c5": 6.380027739251071, + "c6": 4.253351826167381, + "c7": 2.1266759130836905 }, "rgb": [222, 0, 59] }, @@ -342690,23 +342690,23 @@ "year": 1797, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 16.654354064857017, - "c2": -12.898756600446188, - "c3": -8.145226964104289, - "c4": -14.231668376760492, - "c5": 21.114182639261145, - "c6": 1.0392861575997756, - "c7": 15.7029722190399 + "points": { + "c1": -28.030570110619692, + "c2": 12.30079420445346, + "c3": 13.99321939749477, + "c4": 33.271357548642044, + "c5": -11.34389950906462, + "c6": -15.645211463663646, + "c7": 1.045592311631708 }, - "vertexSeeds": { - "c1": 8.664070011888265, - "c2": 8.479215846558589, - "c3": 8.644257963794178, - "c4": 8.68419682591686, - "c5": 8.497901833156629, - "c6": 8.683753265388495, - "c7": 8.569397180702014 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019444, + "c3": 10.355987055016172, + "c4": 8.284789644012964, + "c5": 6.213592233009691, + "c6": 4.142394822006482, + "c7": 2.0711974110032725 }, "rgb": [58, 15, 49] }, @@ -342717,23 +342717,23 @@ "year": 1797, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 19.681170374962427, - "c2": 10.958713894040741, - "c3": -13.299545980228444, - "c4": 17.925548473777432, - "c5": 16.719029906252104, - "c6": -8.646882013678848, - "c7": 12.010881929041673 + "points": { + "c1": -22.394212360797262, + "c2": -8.531381050616687, + "c3": -18.659935055193756, + "c4": -26.776089197365117, + "c5": -17.670043039285744, + "c6": 27.713569957722676, + "c7": -15.247819946936996 }, - "vertexSeeds": { - "c1": 4.998948638574881, - "c2": 4.977682840965672, - "c3": 4.981126288391079, - "c4": 4.968225004373798, - "c5": 5.005379341657926, - "c6": 4.988054153836004, - "c7": 4.977653260860229 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417431, + "c3": 5.987055016181298, + "c4": 4.789644012945007, + "c5": 3.5922330097087154, + "c6": 2.394822006472424, + "c7": 1.1974110032362912 }, "rgb": [58, 15, 49] }, @@ -342744,23 +342744,23 @@ "year": 1797, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -12.781192653545054, - "c2": -19.91622673852715, - "c3": 10.608976467037227, - "c4": -11.32244423594835, - "c5": -12.232152976607576, - "c6": 16.881758920792205, - "c7": 8.934466474595599 + "points": { + "c1": 27.145347609136753, + "c2": 28.021690821300073, + "c3": 3.603623314919549, + "c4": 28.99387328683343, + "c5": 18.700750930680545, + "c6": -2.762349747142398, + "c7": 18.208029894563037 }, - "vertexSeeds": { - "c1": 7.9508607203150214, - "c2": 8.034236200089989, - "c3": 7.913077307633046, - "c4": 7.946565146317081, - "c5": 7.995439269324504, - "c6": 8.08042992568254, - "c7": 7.877279487707402 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.62274618585298, + "c3": 9.685621821544151, + "c4": 7.74849745723532, + "c5": 5.81137309292649, + "c6": 3.87424872861766, + "c7": 1.93712436430883 }, "rgb": [86, 146, 138] }, @@ -342771,23 +342771,23 @@ "year": 1797, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -11.418790870970838, - "c2": 6.437507554132665, - "c3": 12.888891969970079, - "c4": -7.2486203612435816, - "c5": 1.8987859000287841, - "c6": -5.163314321570994, - "c7": 16.630365103311558 + "points": { + "c1": 22.495984355628448, + "c2": 21.78020008215719, + "c3": 4.164663354732106, + "c4": 11.35174211923049, + "c5": -0.6820040098817834, + "c6": 10.602900423263339, + "c7": 1.2078636947847414 }, - "vertexSeeds": { - "c1": 1.9080653879489147, - "c2": 1.9854724347800194, - "c3": 1.9445706332201653, - "c4": 1.9501877039110838, - "c5": 1.8929317233798257, - "c6": 2.0037133382436974, - "c7": 1.895427493952396 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233006, + "c3": 2.4271844660194173, + "c4": 1.9417475728155338, + "c5": 1.4563106796116503, + "c6": 0.9708737864077669, + "c7": 0.48543689320388345 }, "rgb": [86, 146, 138] }, @@ -342798,23 +342798,23 @@ "year": 1798, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 22.50938474989202, - "c2": -2.8743425696434315, - "c3": -32.14163329646158, - "c4": -7.728288725777851, - "c5": -34.20868304948159, - "c6": -18.905888637407596, - "c7": 34.76985335168777 + "points": { + "c1": -6.088279300467491, + "c2": -29.65927639657683, + "c3": 14.668188178975178, + "c4": -38.41707062108771, + "c5": 3.5370253753207805, + "c6": 32.69366314328735, + "c7": -8.082411146104334 }, - "vertexSeeds": { - "c1": 3.618787381651981, - "c2": 3.8922479899269673, - "c3": 3.8275467522113855, - "c4": 3.6846837689233305, - "c5": 3.6885724682539025, - "c6": 3.6142503564154818, - "c7": 3.911017585391762 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285719, + "c3": 4.761904761904761, + "c4": 3.8095238095238124, + "c5": 2.8571428571428545, + "c6": 1.9047619047619062, + "c7": 0.9523809523809484 }, "rgb": [58, 15, 49] }, @@ -342825,23 +342825,23 @@ "year": 1798, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 13.000117297036219, - "c2": -0.18118837441962654, - "c3": -7.7523440449247865, - "c4": 17.88646340407893, - "c5": -23.286056167868054, - "c6": -26.75953702002493, - "c7": 25.76286082070554 + "points": { + "c1": 30.810088462667423, + "c2": -31.563013033236096, + "c3": 29.66435524392469, + "c4": 8.237040527163742, + "c5": 26.61114887835099, + "c6": -14.594847585832301, + "c7": -8.081544194424627 }, - "vertexSeeds": { - "c1": 3.1074329846534017, - "c2": 3.21635982450973, - "c3": 3.100202985258599, - "c4": 3.18734176741294, - "c5": 3.198329121817244, - "c6": 3.0566110420555526, - "c7": 3.1398407543349793 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717056, + "c3": 3.860379103097555, + "c4": 3.088303282478041, + "c5": 2.316227461858528, + "c6": 1.5441516412390144, + "c7": 0.7720758206195136 }, "rgb": [77, 76, 132] }, @@ -342852,23 +342852,23 @@ "year": 1798, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 14.455842296716781, - "c2": 34.44345471254282, - "c3": 10.897309793433934, - "c4": -35.96688438309833, - "c5": 10.545418445969709, - "c6": 12.331808751355382, - "c7": 1.7907972744313483 + "points": { + "c1": 19.3240650179578, + "c2": -25.783293832676726, + "c3": 13.657202901605288, + "c4": 24.00886436749134, + "c5": 9.073445151747663, + "c6": -21.064255850099954, + "c7": -8.625934029252463 }, - "vertexSeeds": { - "c1": 7.771669107521033, - "c2": 7.511626258908613, - "c3": 7.934491326802645, - "c4": 7.803879043299875, - "c5": 7.330074007669643, - "c6": 7.621727117541168, - "c7": 7.584237658250058 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343042, + "c4": 7.637540453074433, + "c5": 5.7281553398058245, + "c6": 3.8187702265372163, + "c7": 1.9093851132686082 }, "rgb": [58, 15, 49] }, @@ -342879,23 +342879,23 @@ "year": 1798, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -22.79404137873803, - "c2": 10.955759515960175, - "c3": 31.11797435630742, - "c4": -4.623089389897622, - "c5": 32.28054892454946, - "c6": -15.365887053324204, - "c7": 31.002213476672473 + "points": { + "c1": 9.488051116029744, + "c2": -14.66754963582638, + "c3": 12.108367279797996, + "c4": 3.1855796807148167, + "c5": 24.149738047362888, + "c6": 17.285603073962584, + "c7": 32.972833328395744 }, - "vertexSeeds": { - "c1": 7.648782204752278, - "c2": 7.671985424208491, - "c3": 7.659474207369627, - "c4": 7.649516874650296, - "c5": 7.656165106749391, - "c6": 7.67534324719197, - "c7": 7.669470860406538 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968031, + "c3": 9.177068885806854, + "c4": 7.341655108645435, + "c5": 5.5062413314840155, + "c6": 3.6708275543225954, + "c7": 1.8354137771614194 }, "rgb": [238, 201, 159] }, @@ -342906,23 +342906,23 @@ "year": 1797, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 16.84714478159737, - "c2": 11.542794546141042, - "c3": 1.970811570404429, - "c4": -6.084881068417985, - "c5": -2.5824049755020013, - "c6": -14.541535191600815, - "c7": -24.60369516385584 + "points": { + "c1": -3.645419571343531, + "c2": 2.4152659372156755, + "c3": -9.158748551462121, + "c4": -22.664206948552092, + "c5": 25.586926889162218, + "c6": 6.4769228421466885, + "c7": 9.509280653204666 }, - "vertexSeeds": { - "c1": 7.799894962920454, - "c2": 7.8049455281135165, - "c3": 8.052225894588835, - "c4": 7.997683566141494, - "c5": 7.945598215884945, - "c6": 7.756401974058493, - "c7": 8.004445358013106 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772526, + "c3": 9.639389736477135, + "c4": 7.711511789181699, + "c5": 5.783633841886263, + "c6": 3.8557558945908266, + "c7": 1.9278779472954362 }, "rgb": [58, 15, 49] }, @@ -342933,23 +342933,23 @@ "year": 1797, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -24.226985708788213, - "c2": -8.726773216814774, - "c3": -14.810085147451721, - "c4": 30.04311337866665, - "c5": -10.000054434917672, - "c6": 8.555773730524972, - "c7": -7.609999093400241 + "points": { + "c1": 19.588378925983108, + "c2": -15.949968493736545, + "c3": -32.128096630936774, + "c4": 4.898485580606895, + "c5": -18.00208242336482, + "c6": -22.425318585982623, + "c7": 3.782248013308866 }, - "vertexSeeds": { - "c1": 6.57877104854431, - "c2": 6.1728968740312, - "c3": 6.406037382249445, - "c4": 6.138782717944044, - "c5": 6.162526070342037, - "c6": 6.592392643068007, - "c7": 6.301183683186176 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796109, + "c3": 7.928802588996767, + "c4": 6.343042071197405, + "c5": 4.757281553398065, + "c6": 3.1715210355987025, + "c7": 1.5857605177993623 }, "rgb": [222, 0, 59] }, @@ -342960,23 +342960,23 @@ "year": 1797, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -24.87997566866423, - "c2": -7.981584856846002, - "c3": 26.85855380545452, - "c4": -29.37014251300607, - "c5": -2.2376940244616357, - "c6": 19.0160744224925, - "c7": -21.025179190800277 + "points": { + "c1": -14.62354831645175, + "c2": -9.575631526749927, + "c3": 25.037692128346904, + "c4": 27.033417267406122, + "c5": 21.65622860557263, + "c6": -25.146537142898076, + "c7": 25.037228035920975 }, - "vertexSeeds": { - "c1": 6.688690266897194, - "c2": 6.70056589549628, - "c3": 6.695926210586799, - "c4": 6.689267062777684, - "c5": 6.694970579402245, - "c6": 6.6960935521601606, - "c7": 6.702038808355163 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.59778085991651, + "c3": 7.99815071659741, + "c4": 6.398520573277673, + "c5": 4.798890429958573, + "c6": 3.1992602866388364, + "c7": 1.5996301433197364 }, "rgb": [58, 15, 49] }, @@ -342987,23 +342987,23 @@ "year": 1797, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 18.998015182632553, - "c2": -25.880027656248885, - "c3": 14.802610680455349, - "c4": 21.69970054626184, - "c5": -21.810160690388024, - "c6": 14.938452884353165, - "c7": -19.848585802008415 + "points": { + "c1": 26.521104175404222, + "c2": 27.41145201236542, + "c3": 0.22448755668295917, + "c4": 27.241684501018266, + "c5": 20.801005488464032, + "c6": -27.50024089908685, + "c7": -19.879537261567968 }, - "vertexSeeds": { - "c1": 8.607512953367877, - "c2": 8.607512953367877, - "c3": 8.607512953367877, - "c4": 8.607512953367877, - "c5": 8.607512953367877, - "c6": 8.607512953367877, - "c7": 8.607512953367877 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -343014,23 +343014,23 @@ "year": 1798, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -30.05947023456517, - "c2": -35.327839878832194, - "c3": -6.899935528458606, - "c4": -21.673488214008284, - "c5": 22.238393096012373, - "c6": -0.4844687662786171, - "c7": 24.878868719020417 + "points": { + "c1": -29.06444038255977, + "c2": -9.098399323528628, + "c3": 23.905511365587415, + "c4": -8.611948722114644, + "c5": -15.76957050096171, + "c6": -18.638983664568737, + "c7": 18.537266886426288 }, - "vertexSeeds": { - "c1": 7.930365639793242, - "c2": 7.976167066930402, - "c3": 8.039183617820836, - "c4": 7.990027922179212, - "c5": 8.057485134663425, - "c6": 7.9560604620636095, - "c7": 7.931047638911338 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732316, + "c3": 9.616273693943599, + "c4": 7.693018955154878, + "c5": 5.769764216366158, + "c6": 3.846509477577439, + "c7": 1.9232547387887196 }, "rgb": [86, 146, 138] }, @@ -343041,23 +343041,23 @@ "year": 1797, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -8.006641858217538, - "c2": -24.07615971048062, - "c3": -7.5854240530426935, - "c4": -17.852381410193466, - "c5": 9.794551784406814, - "c6": -12.869185576377328, - "c7": 7.936032490351003 + "points": { + "c1": 2.5112441684822038, + "c2": -19.400055527747703, + "c3": 18.71458842230456, + "c4": 25.706546960848122, + "c5": -1.9329908797925022, + "c6": -4.654140896838594, + "c7": 11.925289188756025 }, - "vertexSeeds": { - "c1": 5.3346843835853885, - "c2": 5.32340066423807, - "c3": 5.330992282936403, - "c4": 5.324365453350908, - "c5": 5.342614196482282, - "c6": 5.33299218186827, - "c7": 5.322750124968554 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.6837725381414215, + "c3": 6.403143781784631, + "c4": 5.1225150254276715, + "c5": 3.8418862690707107, + "c6": 2.5612575127137505, + "c7": 1.28062875635696 }, "rgb": [77, 76, 132] }, @@ -343068,23 +343068,23 @@ "year": 1798, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -22.959102047282297, - "c2": 22.952894725270113, - "c3": 7.043549719757095, - "c4": 37.112216554223664, - "c5": 2.9722616796411216, - "c6": -38.72439484826143, - "c7": 18.369820031219483 + "points": { + "c1": -34.36129896400801, + "c2": 23.679645783316616, + "c3": -13.50984251811678, + "c4": -34.752250386891, + "c5": -0.6157221794959895, + "c6": -21.574189024371336, + "c7": -9.478043603732175 }, - "vertexSeeds": { - "c1": 4.072184445995545, - "c2": 4.120250581554656, - "c3": 4.061267547645121, - "c4": 3.9840802271115603, - "c5": 4.177286611672382, - "c6": 4.194989170335418, - "c7": 3.963801204001048 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768379, + "c3": 5.039297272306984, + "c4": 4.031437817845591, + "c5": 3.023578363384183, + "c6": 2.0157189089227887, + "c7": 1.0078594544613944 }, "rgb": [77, 76, 132] }, @@ -343095,23 +343095,23 @@ "year": 1798, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -21.30227527139686, - "c2": 19.271414317647604, - "c3": -27.346280041554408, - "c4": 20.689231914375362, - "c5": -1.6962072704098539, - "c6": 16.513237371148705, - "c7": -31.297458852853786 + "points": { + "c1": 6.674970333360669, + "c2": -0.04622406275904467, + "c3": 25.97693178071581, + "c4": -2.25735678604428, + "c5": -0.6873239985110331, + "c6": 2.8463970324465038, + "c7": 13.796781262953559 }, - "vertexSeeds": { - "c1": 4.320632844584347, - "c2": 4.317333483856682, - "c3": 4.3308642928248995, - "c4": 4.316715861362952, - "c5": 4.325664339367547, - "c6": 4.33077586070938, - "c7": 4.31924703993548 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009738, + "c3": 5.17799352750815, + "c4": 4.142394822006561, + "c5": 3.106796116504766, + "c6": 2.0711974110031774, + "c7": 1.0355987055015887 }, "rgb": [222, 0, 59] }, @@ -343122,23 +343122,23 @@ "year": 1798, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 31.013714820936563, - "c2": 0.4978526067035034, - "c3": 9.529750971735005, - "c4": 0.07470684516756876, - "c5": 5.715532519251759, - "c6": -31.661789635184114, - "c7": 5.531003973382916 + "points": { + "c1": -9.741554959149198, + "c2": -2.099772470920257, + "c3": 26.575381635795452, + "c4": 20.331856725012585, + "c5": 8.511354048752338, + "c6": -17.543589671224392, + "c7": -17.061859624997783 }, - "vertexSeeds": { - "c1": 3.918443754103221, - "c2": 4.042859948874857, - "c3": 3.9784539019266028, - "c4": 4.148514893821213, - "c5": 3.9948172840783545, - "c6": 3.915237923210307, - "c7": 4.055899271195606 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687937, + "c3": 4.99306518723994, + "c4": 3.9944521497919543, + "c5": 2.9958391123439685, + "c6": 1.997226074895971, + "c7": 0.9986130374479855 }, "rgb": [238, 201, 159] }, @@ -343149,23 +343149,23 @@ "year": 1797, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 14.771670560033126, - "c2": -6.998314434491778, - "c3": -7.971457817374073, - "c4": 1.254519002578025, - "c5": 17.047254156721134, - "c6": 10.047415161707239, - "c7": -16.775759314164247 + "points": { + "c1": 10.171690160946387, + "c2": 1.8043773707479644, + "c3": -9.833266452696527, + "c4": -0.5719126422480478, + "c5": 3.404823522913354, + "c6": -16.948564130277234, + "c7": 20.98875875291522 }, - "vertexSeeds": { - "c1": 7.0870350516750715, - "c2": 6.99061213080549, - "c3": 7.066162681484676, - "c4": 7.12264417127137, - "c5": 7.04679029185835, - "c6": 7.061471119150195, - "c7": 6.900630976787877 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324557, + "c3": 8.80721220527045, + "c4": 7.045769764216363, + "c5": 5.2843273231622785, + "c6": 3.522884882108171, + "c7": 1.7614424410540854 }, "rgb": [238, 201, 159] }, @@ -343176,23 +343176,23 @@ "year": 1797, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -9.032951832623922, - "c2": -22.337380490996747, - "c3": -24.32327897809256, - "c4": -20.59320570654188, - "c5": 11.01289786567667, - "c6": -19.889511311388528, - "c7": 0.46305432618040854 + "points": { + "c1": 19.79500145048604, + "c2": -10.671880212220444, + "c3": -10.568252204574431, + "c4": 12.196598492585807, + "c5": -15.047903720101747, + "c6": 8.676005156721239, + "c7": 17.126477290174286 }, - "vertexSeeds": { - "c1": 7.8570124899039895, - "c2": 7.863305440073014, - "c3": 7.8853959552289545, - "c4": 7.8857063876916405, - "c5": 7.879656803937438, - "c6": 7.863042878893669, - "c7": 7.901453932112139 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450744, + "c3": 9.454461396208927, + "c4": 7.563569116967263, + "c5": 5.672676837725446, + "c6": 3.7817845584836314, + "c7": 1.8908922792418157 }, "rgb": [222, 0, 59] }, @@ -343203,23 +343203,23 @@ "year": 1798, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -8.60542207946267, - "c2": -8.109314100204429, - "c3": 33.49429318838521, - "c4": -7.456043863946942, - "c5": -17.502357781211856, - "c6": -32.42587208571013, - "c7": -27.01953643835955 + "points": { + "c1": -25.891850160999986, + "c2": -11.546621693412469, + "c3": -18.00146227260078, + "c4": 13.440701202915584, + "c5": -17.107685311570144, + "c6": -9.837094176135931, + "c7": 21.532310988261415 }, - "vertexSeeds": { - "c1": 5.39159481640835, - "c2": 5.098088696073534, - "c3": 5.371244473009323, - "c4": 5.447965326462084, - "c5": 5.17159764637519, - "c6": 5.285234409668022, - "c7": 5.302313543461289 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382812, + "c3": 6.541840036985664, + "c4": 5.233472029588542, + "c5": 3.9251040221913933, + "c6": 2.616736014794271, + "c7": 1.3083680073971222 }, "rgb": [77, 76, 132] }, @@ -343230,23 +343230,23 @@ "year": 1797, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 12.079840339509836, - "c2": 12.823371934757596, - "c3": -5.498719595348852, - "c4": 19.786760845556188, - "c5": -0.31197536907333756, - "c6": -18.37527834628294, - "c7": 19.285020518084373 + "points": { + "c1": -3.521659199337119, + "c2": 8.583009552633769, + "c3": -26.62545323678091, + "c4": 16.880382020987227, + "c5": 4.66021184395359, + "c6": 1.9509111491061901, + "c7": -20.075950443184148 }, - "vertexSeeds": { - "c1": 1.0359958636777622, - "c2": 1.061677065566784, - "c3": 1.1050115770076117, - "c4": 1.1656077929514717, - "c5": 1.0347212916847415, - "c6": 1.111617445455471, - "c7": 1.1714006660896643 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742026, + "c3": 1.479426722145168, + "c4": 1.1835413777161345, + "c5": 0.8876560332871013, + "c6": 0.5917706888580679, + "c7": 0.29588534442903336 }, "rgb": [222, 0, 59] }, @@ -343257,23 +343257,23 @@ "year": 1798, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": 30.590327870905078, - "c2": 19.117486443122964, - "c3": -26.860660513341458, - "c4": -26.71454699942208, - "c5": -40.45750971986936, - "c6": -19.239476638845368, - "c7": 48.22449828241066 + "points": { + "c1": 15.362718131537243, + "c2": 8.463699220385749, + "c3": -8.617159255753442, + "c4": -23.257715872746477, + "c5": 28.339103599110565, + "c6": 15.190075318460565, + "c7": -4.272752518372869 }, - "vertexSeeds": { - "c1": 7.355365405163159, - "c2": 7.209023138145674, - "c3": 7.314809865788148, - "c4": 7.430733423840924, - "c5": 7.358206552948857, - "c6": 6.997868485719328, - "c7": 7.269547014322792 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565894, + "c3": 8.945908460471564, + "c4": 7.156726768377262, + "c5": 5.3675450762829335, + "c6": 3.578363384188631, + "c7": 1.7891816920943286 }, "rgb": [58, 15, 49] }, @@ -343284,23 +343284,23 @@ "year": 1798, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -20.93377143083262, - "c2": 15.46358401180482, - "c3": -13.602043582097116, - "c4": 24.600860654364688, - "c5": -26.402244468472723, - "c6": -20.306643622981866, - "c7": -3.0381481865244275 + "points": { + "c1": -12.493901470787037, + "c2": -6.95880575509171, + "c3": 2.607273704711588, + "c4": 29.2243052067503, + "c5": 22.849874736704557, + "c6": 3.469297831463315, + "c7": 8.25198518424314 }, - "vertexSeeds": { - "c1": 10.842048155038139, - "c2": 11.304979825656257, - "c3": 10.876489373704063, - "c4": 11.078915963193571, - "c5": 10.698158094467773, - "c6": 11.288460630281909, - "c7": 11.312512704903916 + "offsets": { + "c1": 18.899676375404532, + "c2": 16.199722607489598, + "c3": 13.499768839574665, + "c4": 10.799815071659731, + "c5": 8.099861303744799, + "c6": 5.399907535829866, + "c7": 2.699953767914933 }, "rgb": [58, 15, 49] }, @@ -343311,23 +343311,23 @@ "year": 1799, "resistanceReported": false, "duration": 54864000, - "curveSeeds": { - "c1": -42.590451238203265, - "c2": 43.51954770380496, - "c3": 38.944889799314254, - "c4": -56.09112472836639, - "c5": 22.543957213059173, - "c6": -8.870169923001235, - "c7": 65.75301847926971 + "points": { + "c1": -48.531460718336334, + "c2": 52.59972836224159, + "c3": -48.48144966602197, + "c4": -46.827469153204966, + "c5": 69.25629913692032, + "c6": 46.83309050729669, + "c7": -59.65144606353302 }, - "vertexSeeds": { - "c1": 3.2266799217169044, - "c2": 3.8399508202313988, - "c3": 3.5139126719547256, - "c4": 3.218584326508399, - "c5": 3.0411352741777327, - "c6": 4.5076469288926635, - "c7": 4.395998864531484 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055479, + "c3": 5.779010633379564, + "c4": 4.623208506703652, + "c5": 3.467406380027738, + "c6": 2.311604253351826, + "c7": 1.1558021266759144 }, "rgb": [77, 76, 132] }, @@ -343338,23 +343338,23 @@ "year": 1797, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 11.298246537892314, - "c2": -9.01547292332688, - "c3": 19.38785180816868, - "c4": -16.70453386901726, - "c5": -10.947762909844739, - "c6": 15.760048108181149, - "c7": 1.50990978931069 + "points": { + "c1": -15.245795231380805, + "c2": 9.485070165560881, + "c3": -10.720172879345986, + "c4": 23.996542358045634, + "c5": 23.17102445920167, + "c6": -23.866645972204143, + "c7": 20.13028657601974 }, - "vertexSeeds": { - "c1": 7.966154236038951, - "c2": 8.208408324843562, - "c3": 7.481333625492559, - "c4": 7.75521201644459, - "c5": 7.762447273022083, - "c6": 8.253476914837131, - "c7": 7.785826989991411 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214988, + "c3": 9.893666204345813, + "c4": 7.914932963476659, + "c5": 5.936199722607484, + "c6": 3.9574664817383294, + "c7": 1.9787332408691738 }, "rgb": [86, 146, 138] }, @@ -343365,23 +343365,23 @@ "year": 1798, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -26.84347711872494, - "c2": 25.994017996214545, - "c3": -11.88273595844095, - "c4": -12.442626318140405, - "c5": -17.448361770938043, - "c6": -14.508275403990233, - "c7": -4.903219154548459 + "points": { + "c1": 8.793120392345998, + "c2": -18.385298309448924, + "c3": -21.88695425477993, + "c4": -12.976480245245344, + "c5": 26.445595460527848, + "c6": -4.841722073632191, + "c7": -20.17558301008647 }, - "vertexSeeds": { - "c1": 5.49037075496669, - "c2": 5.433021160115842, - "c3": 5.4839817080112745, - "c4": 5.483298500702981, - "c5": 5.471497990088527, - "c6": 5.472410359149118, - "c7": 5.448159720656289 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423061, + "c3": 6.56495607951913, + "c4": 5.25196486361533, + "c5": 3.9389736477115305, + "c6": 2.6259824318077305, + "c7": 1.3129912159038 }, "rgb": [58, 15, 49] }, @@ -343392,23 +343392,23 @@ "year": 1797, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -21.272297224730178, - "c2": -19.516017259813214, - "c3": -3.6650183108007255, - "c4": -12.464991553158477, - "c5": 14.036730685123352, - "c6": 15.839644173929813, - "c7": -17.602959561519206 + "points": { + "c1": -9.238767761262753, + "c2": -16.487529732061958, + "c3": 26.31065726136937, + "c4": 6.762128109447637, + "c5": 6.103162310707397, + "c6": -14.761500719088886, + "c7": 26.601392856503907 }, - "vertexSeeds": { - "c1": 6.4635819978295785, - "c2": 6.426433115128163, - "c3": 6.580460875907932, - "c4": 6.386579843474014, - "c5": 6.35301757122394, - "c6": 6.374168134147804, - "c7": 6.531821495701785 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675464, + "c3": 7.859454461396204, + "c4": 6.287563569116976, + "c5": 4.715672676837716, + "c6": 3.143781784558488, + "c7": 1.5718908922792596 }, "rgb": [58, 15, 49] }, @@ -343419,23 +343419,23 @@ "year": 1797, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -22.07335617694653, - "c2": -1.9716987342474717, - "c3": 6.721585181976572, - "c4": 22.18082583207967, - "c5": 20.291380545189874, - "c6": -21.084281817833645, - "c7": -18.892213003347017 + "points": { + "c1": -0.16913945876338943, + "c2": -12.84564466974175, + "c3": -3.823745032985954, + "c4": -2.936899917448489, + "c5": 24.359555014603664, + "c6": 11.957598463387832, + "c7": -10.011670645964424 }, - "vertexSeeds": { - "c1": 8.662207741812443, - "c2": 8.798862612479587, - "c3": 8.445327548946828, - "c4": 8.507290299480754, - "c5": 8.730933174818134, - "c6": 8.725463192459397, - "c7": 8.615470307080347 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105407, + "c3": 10.980120203421167, + "c4": 8.784096162736931, + "c5": 6.588072122052693, + "c6": 4.392048081368476, + "c7": 2.196024040684238 }, "rgb": [222, 0, 59] }, @@ -343446,23 +343446,23 @@ "year": 1797, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -22.921286472905013, - "c2": 19.449856412980367, - "c3": -5.737489507490427, - "c4": -14.737008865819593, - "c5": -15.153933544505765, - "c6": 23.19201781530778, - "c7": -14.671678791785958 + "points": { + "c1": 3.931632648750856, + "c2": 5.597655912101324, + "c3": -3.9341109139129244, + "c4": -21.65829478277835, + "c5": 10.137659458588224, + "c6": 19.481479209172214, + "c7": 24.99552695851287 }, - "vertexSeeds": { - "c1": 4.265962377730647, - "c2": 4.421305645659821, - "c3": 4.408410031925706, - "c4": 4.2412892708691965, - "c5": 4.25554835152823, - "c6": 4.368473781022641, - "c7": 4.39374884471401 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210809, + "c3": 5.293573740175685, + "c4": 4.23485899214054, + "c5": 3.1761442441054144, + "c6": 2.11742949607027, + "c7": 1.0587147480351253 }, "rgb": [222, 0, 59] }, @@ -343473,23 +343473,23 @@ "year": 1797, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": 14.379487073613056, - "c2": -7.6234608336592125, - "c3": 19.487823004258857, - "c4": 7.672821488874032, - "c5": 3.1249556686028193, - "c6": 19.978876529101917, - "c7": -14.787633272835361 + "points": { + "c1": 5.9929750958419845, + "c2": 15.664512184690274, + "c3": -19.168827793481906, + "c4": 7.810755644031232, + "c5": -4.361672062848271, + "c6": -9.725777827237197, + "c7": -3.154813061235064 }, - "vertexSeeds": { - "c1": 8.542446447700158, - "c2": 8.525205479217842, - "c3": 8.427582383149751, - "c4": 8.584560647896005, - "c5": 8.575235794617827, - "c6": 8.45167307241027, - "c7": 8.206999391381895 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.288488210818297, + "c3": 10.240406842348603, + "c4": 8.192325473878876, + "c5": 6.144244105409149, + "c6": 4.096162736939421, + "c7": 2.0480813684697274 }, "rgb": [77, 76, 132] }, @@ -343500,23 +343500,23 @@ "year": 1798, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -17.614103532279554, - "c2": -24.717058045889836, - "c3": -35.86540083046049, - "c4": 5.780105522012825, - "c5": 8.752366566517672, - "c6": -34.37342196489251, - "c7": 9.231751748882665 + "points": { + "c1": 36.547449884802575, + "c2": -6.208154515882015, + "c3": -23.687045012195767, + "c4": 28.12024221888602, + "c5": 2.0639645875863977, + "c6": 33.12930082323028, + "c7": -2.892741583010519 }, - "vertexSeeds": { - "c1": 4.4748439913018485, - "c2": 4.300637386742654, - "c3": 4.218329210665471, - "c4": 4.367314084299612, - "c5": 4.253348835364339, - "c6": 4.334323742159983, - "c7": 4.378967961121903 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452155, + "c3": 5.43226999537679, + "c4": 4.345815996301437, + "c5": 3.2593619972260712, + "c6": 2.1729079981507184, + "c7": 1.0864539990753657 }, "rgb": [222, 0, 59] }, @@ -343527,23 +343527,23 @@ "year": 1797, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 23.235767703832128, - "c2": -16.215333157356874, - "c3": -14.894268950265733, - "c4": -23.98011802362984, - "c5": -15.790494097509411, - "c6": -9.330103988032263, - "c7": -4.127681807204443 + "points": { + "c1": -4.836119544131805, + "c2": -22.06960956537983, + "c3": -13.576377126849433, + "c4": 22.28881697534685, + "c5": -21.682740619005763, + "c6": -7.173798601286688, + "c7": -25.895716062883523 }, - "vertexSeeds": { - "c1": 8.124968513145138, - "c2": 8.083264281023874, - "c3": 8.12983626158125, - "c4": 8.050214895885498, - "c5": 8.106319829908747, - "c6": 8.101076830503219, - "c7": 8.02585953069655 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893259, + "c3": 9.708737864077651, + "c4": 7.766990291262172, + "c5": 5.825242718446565, + "c6": 3.883495145631086, + "c7": 1.9417475728154787 }, "rgb": [86, 146, 138] }, @@ -343554,23 +343554,23 @@ "year": 1798, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 31.133871251005914, - "c2": 5.258740107932155, - "c3": -39.31646014795757, - "c4": -13.992585317408018, - "c5": -15.845470203546114, - "c6": 26.071080236181274, - "c7": -31.88783200483739 + "points": { + "c1": -26.352642639848355, + "c2": -36.26590610118148, + "c3": 12.066439797485266, + "c4": -31.34766715318503, + "c5": 17.371320475816496, + "c6": 19.47984918075244, + "c7": 28.575732241772613 }, - "vertexSeeds": { - "c1": 7.485681102032395, - "c2": 7.533333725851385, - "c3": 4.273227664897463, - "c4": 6.7633855294985565, - "c5": 5.15021701692482, - "c6": 7.525922436264516, - "c7": 4.903510890301293 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407303, + "c4": 7.3971336107258425, + "c5": 5.54785020804438, + "c6": 3.698566805362921, + "c7": 1.8492834026814613 }, "rgb": [58, 15, 49] }, @@ -343581,23 +343581,23 @@ "year": 1797, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": -13.218633009275324, - "c2": 2.095015529394793, - "c3": -13.377008197467408, - "c4": -13.508857804065176, - "c5": -19.28958905478135, - "c6": -21.004156211950043, - "c7": -11.852392631806518 + "points": { + "c1": -10.79944855394271, + "c2": 4.822764105463879, + "c3": 8.209668694076502, + "c4": 10.89758332191018, + "c5": 17.518213154059136, + "c6": -2.3918747387642085, + "c7": -12.829637258691044 }, - "vertexSeeds": { - "c1": 5.965025906735752, - "c2": 5.965025906735752, - "c3": 5.965025906735752, - "c4": 5.965025906735752, - "c5": 5.965025906735752, - "c6": 5.965025906735752, - "c7": 5.965025906735752 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -343608,23 +343608,23 @@ "year": 1798, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 10.815160007365183, - "c2": 17.6551737775703, - "c3": -19.416254402919602, - "c4": -3.6024040825860837, - "c5": 25.560816069706295, - "c6": -1.8951380696890148, - "c7": 26.502621796422513 + "points": { + "c1": -10.289422388976583, + "c2": 12.511779125455046, + "c3": 10.644894278686362, + "c4": 5.571455583096277, + "c5": -2.4028132845282535, + "c6": -9.94723537430131, + "c7": 25.914114287595414 }, - "vertexSeeds": { - "c1": 8.04770335659292, - "c2": 7.982045781341315, - "c3": 8.132831333701533, - "c4": 8.00127166405699, - "c5": 8.054548741155774, - "c6": 8.0456348052852, - "c7": 8.018918585617223 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.73370319001386, + "c3": 9.778085991678209, + "c4": 7.822468793342618, + "c5": 5.866851595006963, + "c6": 3.911234396671309, + "c7": 1.9556171983356545 }, "rgb": [238, 201, 159] }, @@ -343635,23 +343635,23 @@ "year": 1798, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -6.86742867060002, - "c2": -19.48163100974796, - "c3": 12.95342472214385, - "c4": -32.33970877961481, - "c5": 10.183969886826276, - "c6": 19.084026436731904, - "c7": 1.2405575044460235 + "points": { + "c1": 10.903115882850784, + "c2": 15.365874975891671, + "c3": -11.963253665382773, + "c4": -15.983898468433981, + "c5": 28.15320423284922, + "c6": -40.76873066526975, + "c7": 9.799198889444135 }, - "vertexSeeds": { - "c1": 7.90260160050714, - "c2": 8.01625361687854, - "c3": 7.99328836818927, - "c4": 7.890558162888833, - "c5": 7.904931568363327, - "c6": 7.911603511351083, - "c7": 7.982081450200915 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.48404993065187, + "c3": 9.57004160887656, + "c4": 7.6560332871012475, + "c5": 5.742024965325935, + "c6": 3.8280166435506238, + "c7": 1.9140083217753119 }, "rgb": [77, 76, 132] }, @@ -343662,23 +343662,23 @@ "year": 1798, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 26.163342773014975, - "c2": 16.684074290235067, - "c3": -22.454204060908374, - "c4": 16.455639482886006, - "c5": 29.430457466304034, - "c6": 1.2447150521643877, - "c7": 27.210940775889696 + "points": { + "c1": -31.573173962559956, + "c2": -16.895121781557677, + "c3": -31.00343256684197, + "c4": 14.868150859258193, + "c5": -26.55052014447343, + "c6": 21.52293545683316, + "c7": -16.7639134430951 }, - "vertexSeeds": { - "c1": 5.315254236883221, - "c2": 5.262062657706733, - "c3": 5.324755771069113, - "c4": 5.247579069897336, - "c5": 5.265590498316767, - "c6": 5.279881315003045, - "c7": 5.32097550504669 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101233, + "c3": 6.380027739251012, + "c4": 5.104022191400788, + "c5": 3.8280166435506673, + "c6": 2.552011095700445, + "c7": 1.2760055478502226 }, "rgb": [222, 0, 59] }, @@ -343689,23 +343689,23 @@ "year": 1798, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 26.260143671098838, - "c2": 28.916901157042, - "c3": 21.400819243773093, - "c4": -29.64478105205368, - "c5": 36.23545473020382, - "c6": -45.440963037527055, - "c7": 35.00831634451536 + "points": { + "c1": 8.211240519887447, + "c2": -42.35116326477744, + "c3": 2.309990169551078, + "c4": 39.6993911206008, + "c5": 14.287861797613637, + "c6": -12.130380854164713, + "c7": 46.313876743591344 }, - "vertexSeeds": { - "c1": 4.395458485565948, - "c2": 4.2810002490510755, - "c3": 3.9735952184067926, - "c4": 3.6157330071523353, - "c5": 4.39904423328922, - "c6": 3.6666998502814705, - "c7": 4.038294048672093 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331485, + "c3": 5.362921867776236, + "c4": 4.29033749422099, + "c5": 3.217753120665741, + "c6": 2.145168747110495, + "c7": 1.0725843735552496 }, "rgb": [77, 76, 132] }, @@ -343716,23 +343716,23 @@ "year": 1798, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 3.500340448820374, - "c2": -4.450411247451445, - "c3": 31.99557786764933, - "c4": 27.026781792546046, - "c5": 0.7080109850287926, - "c6": 5.396188335286297, - "c7": -1.8167379705787496 + "points": { + "c1": 10.441461693441084, + "c2": 18.55026039358068, + "c3": -35.42100863802679, + "c4": -21.496479242683918, + "c5": 8.902582527600522, + "c6": -18.27476059407539, + "c7": -18.70687841206775 }, - "vertexSeeds": { - "c1": 8.460954871361078, - "c2": 8.348567320577214, - "c3": 8.036980746850416, - "c4": 8.263096791711401, - "c5": 8.326919766066306, - "c6": 8.185367726810544, - "c7": 8.07764023469903 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576967, + "c3": 10.101710587147496, + "c4": 8.081368469717988, + "c5": 6.061026352288484, + "c6": 4.040684234859012, + "c7": 2.020342117429506 }, "rgb": [77, 76, 132] }, @@ -343743,23 +343743,23 @@ "year": 1798, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 30.231084705633002, - "c2": -4.605429663731755, - "c3": -29.958737577274523, - "c4": 22.877489327918347, - "c5": -30.418728570180388, - "c6": -0.727627348025095, - "c7": 0.1497264102141571 + "points": { + "c1": -20.057825864763924, + "c2": -10.330145713433566, + "c3": 19.60392471849986, + "c4": 11.357711744163353, + "c5": -39.411685991922155, + "c6": -4.143697251115675, + "c7": 0.8124766166190298 }, - "vertexSeeds": { - "c1": 7.493113581374487, - "c2": 7.180716607418937, - "c3": 7.68532513294282, - "c4": 7.298686486454266, - "c5": 7.368584564975874, - "c6": 7.393540812717654, - "c7": 7.4825088230323065 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.15117891816922, + "c3": 9.292649098474339, + "c4": 7.43411927877948, + "c5": 5.5755894590846, + "c6": 3.71705963938974, + "c7": 1.858529819694881 }, "rgb": [86, 146, 138] }, @@ -343770,23 +343770,23 @@ "year": 1798, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 3.6280600752183148, - "c2": -19.128938809868362, - "c3": 21.012781291027068, - "c4": 16.5724417010788, - "c5": 12.489312852192185, - "c6": 1.6646609295552395, - "c7": 5.023856059122398 + "points": { + "c1": -2.6539761669569693, + "c2": -21.461789936180985, + "c3": -12.988196872329812, + "c4": 14.101062922180475, + "c5": -20.305138499148814, + "c6": -4.838954032637396, + "c7": 11.418170757507198 }, - "vertexSeeds": { - "c1": 0.9517917928325279, - "c2": 0.87868749955643, - "c3": 0.852628806082969, - "c4": 0.9657146657794401, - "c5": 0.8114514827759266, - "c6": 0.9111051557477412, - "c7": 0.8632886489493093 + "offsets": { + "c1": 1.650485436893204, + "c2": 1.4147018030513177, + "c3": 1.1789181692094315, + "c4": 0.9431345353675451, + "c5": 0.7073509015256588, + "c6": 0.47156726768377255, + "c7": 0.23578363384188628 }, "rgb": [238, 201, 159] }, @@ -343797,23 +343797,23 @@ "year": 1798, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -13.667409155418932, - "c2": 23.731065644902863, - "c3": 16.649210220008825, - "c4": -25.0490659092287, - "c5": 19.12551067839025, - "c6": -1.3200342763971058, - "c7": 22.803935019066422 + "points": { + "c1": 23.80459903042439, + "c2": -3.440984021788008, + "c3": 19.311785384024013, + "c4": -13.104408397986685, + "c5": 23.344012482472102, + "c6": -22.1780155972489, + "c7": 11.59097833996126 }, - "vertexSeeds": { - "c1": 9.984243143640782, - "c2": 9.977246447110915, - "c3": 10.040543749211423, - "c4": 10.047539188760314, - "c5": 10.049210180991642, - "c6": 9.983646582392833, - "c7": 9.942430376733924 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.42441054091537, + "c3": 12.020342117429443, + "c4": 9.616273693943514, + "c5": 7.21220527045778, + "c6": 4.808136846971854, + "c7": 2.404068423485927 }, "rgb": [238, 201, 159] }, @@ -343824,23 +343824,23 @@ "year": 1798, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -24.777059971471076, - "c2": 5.972938774563037, - "c3": 9.41434158596513, - "c4": 5.75358148304532, - "c5": 11.16994531106079, - "c6": 9.95491396297518, - "c7": -8.717320482347208 + "points": { + "c1": 8.924186502601856, + "c2": 9.978549634801169, + "c3": -18.36380260442762, + "c4": -30.414272058203675, + "c5": -0.11274490272968052, + "c6": 9.325986499798212, + "c7": -32.919890835601414 }, - "vertexSeeds": { - "c1": 1.9520911922278184, - "c2": 1.9371286952908822, - "c3": 1.9778334483465547, - "c4": 2.2546382662653666, - "c5": 1.8629429640508564, - "c6": 2.0115188129213437, - "c7": 2.021679725622574 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [58, 15, 49] }, @@ -343851,23 +343851,23 @@ "year": 1799, "resistanceReported": false, "duration": 56332800, - "curveSeeds": { - "c1": -15.34464528812488, - "c2": -5.847009148163991, - "c3": -47.61305359339521, - "c4": 56.90716038391838, - "c5": 43.16001320807139, - "c6": -45.246304768038215, - "c7": 8.599242809249063 + "points": { + "c1": 67.30708928776758, + "c2": -38.89356578506163, + "c3": -56.445620829538626, + "c4": -18.03380703438316, + "c5": 56.13292088738734, + "c6": 54.88973032646567, + "c7": 33.596257078109474 }, - "vertexSeeds": { - "c1": 1.127333338155344, - "c2": 1.1263359703893108, - "c3": 1.1329148375712057, - "c4": 1.1626527487609717, - "c5": 1.1469686801261632, - "c6": 1.1127670692554432, - "c7": 1.1173723407212661 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535353, + "c3": 1.4100785945446115, + "c4": 1.1280628756356919, + "c5": 0.8460471567267677, + "c6": 0.5640314378178436, + "c7": 0.28201571890891947 }, "rgb": [77, 76, 132] }, @@ -343878,23 +343878,23 @@ "year": 1798, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -2.2891354157053065, - "c2": 8.427643408267755, - "c3": -3.203473033213914, - "c4": -14.800050288534353, - "c5": 14.805384991295597, - "c6": 19.744762264448354, - "c7": -2.100439303514179 + "points": { + "c1": -22.69046512170571, + "c2": 23.505862093988547, + "c3": 24.198896128000683, + "c4": 12.539004114850869, + "c5": 7.0646890346163715, + "c6": -3.431757175244744, + "c7": -26.994003989219546 }, - "vertexSeeds": { - "c1": 8.251719896150282, - "c2": 8.247485457638879, - "c3": 8.25778338370628, - "c4": 8.265381174638463, - "c5": 8.239817472161727, - "c6": 8.253105495205654, - "c7": 8.256761662093234 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174812, + "c3": 9.87055016181241, + "c4": 7.896440129450006, + "c5": 5.92233009708721, + "c6": 3.948220064724807, + "c7": 1.9741100323624035 }, "rgb": [58, 15, 49] }, @@ -343905,23 +343905,23 @@ "year": 1798, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 9.882085947398007, - "c2": -4.805669700188211, - "c3": -4.608315076185807, - "c4": 15.110280309216858, - "c5": 11.434444466202944, - "c6": 18.280501940478832, - "c7": 5.323434294256142 + "points": { + "c1": 18.890158046932147, + "c2": -1.993925987974265, + "c3": -14.142792106114292, + "c4": -19.35681843758391, + "c5": -2.8905521051431506, + "c6": 3.8542865859333197, + "c7": -21.017194148757323 }, - "vertexSeeds": { - "c1": 3.4408789574959564, - "c2": 3.4128016252368227, - "c3": 3.407254330846509, - "c4": 3.412096004068907, - "c5": 3.412958961950249, - "c6": 3.4074987626825752, - "c7": 3.4220563791785765 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239927, + "c3": 4.160887656033293, + "c4": 3.328710124826618, + "c5": 2.496532593619984, + "c6": 1.664355062413309, + "c7": 0.8321775312066751 }, "rgb": [58, 15, 49] }, @@ -343932,23 +343932,23 @@ "year": 1798, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -15.343601322038346, - "c2": 3.644049268246487, - "c3": 20.84796877084624, - "c4": -10.37767267188839, - "c5": -9.09678721443256, - "c6": 22.691349406624074, - "c7": 24.022990624346175 + "points": { + "c1": 28.03467702467993, + "c2": -18.49040169161256, + "c3": -0.6066839324587789, + "c4": -32.81166208213903, + "c5": -26.809064382352968, + "c6": 1.6898633079015895, + "c7": 30.23337154026529 }, - "vertexSeeds": { - "c1": 7.151277471785565, - "c2": 7.656093824743403, - "c3": 7.282290596164316, - "c4": 7.3178557517072695, - "c5": 7.309129937962719, - "c6": 7.055477853435712, - "c7": 7.324469618153012 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927875, + "c3": 9.153952843273224, + "c4": 7.323162274618597, + "c5": 5.492371705963948, + "c6": 3.6615811373092986, + "c7": 1.8307905686546493 }, "rgb": [222, 0, 59] }, @@ -343959,23 +343959,23 @@ "year": 1798, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 6.949511165954693, - "c2": 2.339285955581886, - "c3": -3.4077470508421186, - "c4": 7.946364529476281, - "c5": 22.14358351727793, - "c6": 16.075584121889808, - "c7": 26.28071705013456 + "points": { + "c1": -27.90086745022643, + "c2": -18.955505590358406, + "c3": -17.83345987377048, + "c4": -19.971508484248922, + "c5": 9.825536395364662, + "c6": -1.250236389177207, + "c7": -10.506323749511356 }, - "vertexSeeds": { - "c1": 5.535052642789594, - "c2": 5.358475814000071, - "c3": 5.432215503397699, - "c4": 5.495294055667102, - "c5": 5.536634333201262, - "c6": 5.339833040840108, - "c7": 5.311032231972343 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.15533980582524, + "c3": 6.796116504854369, + "c4": 5.4368932038834945, + "c5": 4.07766990291262, + "c6": 2.7184466019417473, + "c7": 1.3592233009708736 }, "rgb": [238, 201, 159] }, @@ -343986,23 +343986,23 @@ "year": 1798, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -22.490514234682074, - "c2": 25.59058594527732, - "c3": 22.532499806116284, - "c4": 9.328908949907834, - "c5": 17.673910639372984, - "c6": 27.4016193098768, - "c7": -1.6318438113046057 + "points": { + "c1": 17.89979761256302, + "c2": 0.6445875200442686, + "c3": -17.09605046677537, + "c4": -28.045155136377247, + "c5": 23.305796520050585, + "c6": 13.454522652208794, + "c7": 3.8261696191595433 }, - "vertexSeeds": { - "c1": 9.217198295187547, - "c2": 9.032565737331293, - "c3": 9.20335770301305, - "c4": 9.080797668092869, - "c5": 8.686527054472531, - "c6": 9.389835209834017, - "c7": 8.911043416290015 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.50901525658808, + "c3": 11.25751271382339, + "c4": 9.00601017105872, + "c5": 6.754507628294029, + "c6": 4.50300508552936, + "c7": 2.251502542764691 }, "rgb": [222, 0, 59] }, @@ -344013,23 +344013,23 @@ "year": 1798, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 10.549691469088877, - "c2": -33.1088562732207, - "c3": 6.195653129492712, - "c4": -1.7711404314326131, - "c5": -27.331805803257033, - "c6": -13.577223287368671, - "c7": -0.429532807821424 + "points": { + "c1": 3.427112533484234, + "c2": -5.608618050161411, + "c3": -2.5125326540313537, + "c4": 17.960058954806144, + "c5": 24.446075034191928, + "c6": 32.68673851255689, + "c7": 23.937618224885384 }, - "vertexSeeds": { - "c1": 5.142867177503767, - "c2": 5.112197842886048, - "c3": 5.237378095662929, - "c4": 5.268112204639664, - "c5": 5.219248709648578, - "c6": 5.17333709473728, - "c7": 5.271462633535094 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.6005547850208215, + "c3": 6.333795654183999, + "c4": 5.067036523347215, + "c5": 3.8002773925103916, + "c6": 2.5335182616736076, + "c7": 1.2667591308367843 }, "rgb": [238, 201, 159] }, @@ -344040,23 +344040,23 @@ "year": 1798, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -41.22696778510012, - "c2": 15.783927774371747, - "c3": 13.853026477723041, - "c4": 15.767336595722384, - "c5": -40.20785481721674, - "c6": 40.93600955833207, - "c7": -34.659931797844266 + "points": { + "c1": -22.715930912981307, + "c2": 12.28641727342972, + "c3": 35.383593686682765, + "c4": -6.152320350624407, + "c5": -24.006074677469524, + "c6": -19.589585673500604, + "c7": 0.8929091162144189 }, - "vertexSeeds": { - "c1": 4.911170179123914, - "c2": 4.689757099294647, - "c3": 4.748230770156838, - "c4": 4.9103594233023555, - "c5": 4.623142708202337, - "c6": 4.817391373094015, - "c7": 4.7101751365650735 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.0735090152565885, + "c3": 5.894590846047158, + "c4": 4.715672676837726, + "c5": 3.5367545076282942, + "c6": 2.357836338418863, + "c7": 1.1789181692094315 }, "rgb": [222, 0, 59] }, @@ -344067,23 +344067,23 @@ "year": 1798, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": -45.987214909294664, - "c2": 5.050412629480213, - "c3": 27.47228510410148, - "c4": 3.9321474255682034, - "c5": -27.149146104938666, - "c6": -13.871434000166516, - "c7": 4.495776849558617 + "points": { + "c1": 40.39895616330042, + "c2": -39.578009032628, + "c3": 22.700091135938486, + "c4": 1.388728358701755, + "c5": -14.007132688052288, + "c6": 1.4470344215154398, + "c7": 1.461104963321766 }, - "vertexSeeds": { - "c1": 5.417421413938741, - "c2": 5.28929024890771, - "c3": 5.681245218347907, - "c4": 5.317515679646879, - "c5": 5.422189132496463, - "c6": 5.4513791508223655, - "c7": 5.568221805375445 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [77, 76, 132] }, @@ -344094,23 +344094,23 @@ "year": 1798, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -7.4834543426176765, - "c2": 22.56616140766026, - "c3": 9.172391651085853, - "c4": -6.016378167038621, - "c5": 21.53099881872261, - "c6": 25.518865474306523, - "c7": 22.51901357737615 + "points": { + "c1": 7.917577366785039, + "c2": -24.642686776467134, + "c3": -12.254332594345131, + "c4": 13.47592771878417, + "c5": 23.2749127688039, + "c6": 19.8748275693711, + "c7": 23.318060874956103 }, - "vertexSeeds": { - "c1": 6.4818633357225535, - "c2": 6.4402795449153425, - "c3": 6.414050130566199, - "c4": 6.497927224263758, - "c5": 6.477013730503343, - "c6": 6.5002801388078995, - "c7": 6.465993089763209 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554829, + "c3": 7.790106333795639, + "c4": 6.232085067036553, + "c5": 4.674063800277363, + "c6": 3.1160425335182764, + "c7": 1.5580212667591897 }, "rgb": [238, 201, 159] }, @@ -344121,23 +344121,23 @@ "year": 1798, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -14.77956642015581, - "c2": -18.063949110544943, - "c3": 3.2656759133623865, - "c4": 10.19038764547902, - "c5": -7.377047450930039, - "c6": 3.2006891717753234, - "c7": -7.2910916878303915 + "points": { + "c1": 3.1824158487274268, + "c2": -9.913376158469486, + "c3": -5.0658703044505415, + "c4": 13.243954725298842, + "c5": -9.54576243036109, + "c6": 18.770495459652544, + "c7": -11.668697479338073 }, - "vertexSeeds": { - "c1": 9.00237436680377, - "c2": 9.078728214594937, - "c3": 8.937236844796557, - "c4": 8.703559009371611, - "c5": 9.112912381595107, - "c6": 9.047180076637982, - "c7": 8.766859814409603 + "offsets": { + "c1": 15.436893203883495, + "c2": 13.231622746185849, + "c3": 11.026352288488201, + "c4": 8.821081830790558, + "c5": 6.615811373092938, + "c6": 4.410540915395291, + "c7": 2.2052704576976456 }, "rgb": [77, 76, 132] }, @@ -344148,23 +344148,23 @@ "year": 1798, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 6.076909765539384, - "c2": -0.6676834414798556, - "c3": -19.131777689602725, - "c4": -22.92093149791927, - "c5": 19.736217380474532, - "c6": -17.494765801179984, - "c7": 9.121714944054897 + "points": { + "c1": 2.4487839647979683, + "c2": -11.694791772454785, + "c3": -22.724730512044214, + "c4": 23.009815504751632, + "c5": 26.904973370948195, + "c6": 27.035728954310894, + "c7": 8.335620233080444 }, - "vertexSeeds": { - "c1": 8.096736298418366, - "c2": 8.329979068324954, - "c3": 8.221873977759175, - "c4": 7.854673186018812, - "c5": 8.242559206211874, - "c6": 7.856813205191199, - "c7": 8.204040713375166 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335636, + "c3": 9.963014331946374, + "c4": 7.97041146555709, + "c5": 5.97780859916783, + "c6": 3.985205732778545, + "c7": 1.9926028663892617 }, "rgb": [58, 15, 49] }, @@ -344175,23 +344175,23 @@ "year": 1798, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 22.64923129723124, - "c2": -19.506365098451354, - "c3": 13.942467820817676, - "c4": 6.771213278106096, - "c5": -16.537683550075183, - "c6": 21.082553657758666, - "c7": -2.2834771396308113 + "points": { + "c1": -10.501322821639391, + "c2": -19.88988258914196, + "c3": 1.4903211390409403, + "c4": -10.891509945190629, + "c5": 21.889701835124086, + "c6": 5.483276353352537, + "c7": -9.763698819868459 }, - "vertexSeeds": { - "c1": 7.309035046004114, - "c2": 7.32365695522944, - "c3": 6.973806306580145, - "c4": 7.354089025877127, - "c5": 7.000508430848625, - "c6": 7.282644026484144, - "c7": 7.290354795356973 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485443, + "c3": 8.899676375404521, + "c4": 7.119741100323622, + "c5": 5.339805825242721, + "c6": 3.559870550161822, + "c7": 1.7799352750808999 }, "rgb": [77, 76, 132] }, @@ -344202,23 +344202,23 @@ "year": 1798, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -19.55523628748879, - "c2": -21.669397425946915, - "c3": 6.196692934775598, - "c4": 16.87406391455371, - "c5": -5.702610353070966, - "c6": -11.983360705161893, - "c7": -17.527379878637404 + "points": { + "c1": -19.196124032959116, + "c2": 3.9462017115997767, + "c3": 2.661861422862316, + "c4": -6.619491284051932, + "c5": -16.262390922482826, + "c6": -12.846526718661226, + "c7": 4.7840789963298604 }, - "vertexSeeds": { - "c1": 4.19403719917613, - "c2": 4.143530832018677, - "c3": 4.134058556338738, - "c4": 4.137927948779108, - "c5": 4.146165545080481, - "c6": 4.160587255759302, - "c7": 4.170733209786535 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728134, + "c3": 5.01618122977347, + "c4": 4.012944983818756, + "c5": 3.009708737864092, + "c6": 2.006472491909378, + "c7": 1.003236245954714 }, "rgb": [222, 0, 59] }, @@ -344229,23 +344229,23 @@ "year": 1798, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -38.33845746549037, - "c2": 29.070713165071503, - "c3": -38.790834085383466, - "c4": -29.707282182802114, - "c5": 11.175679473368312, - "c6": 40.24789318516202, - "c7": 0.6575340273692873 + "points": { + "c1": 4.011001148488127, + "c2": -30.55545473495021, + "c3": -23.432861056956625, + "c4": 11.408633606980253, + "c5": 9.108443914352627, + "c6": -17.767388557853906, + "c7": -4.314377449100107 }, - "vertexSeeds": { - "c1": 6.81467368202812, - "c2": 7.068101183690912, - "c3": 7.135406208081809, - "c4": 6.87295054565531, - "c5": 6.97461954461158, - "c6": 6.864005516144117, - "c7": 7.132874871914774 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042993, + "c3": 8.645399907535824, + "c4": 6.916319926028656, + "c5": 5.187239944521487, + "c6": 3.458159963014338, + "c7": 1.729079981507169 }, "rgb": [238, 201, 159] }, @@ -344256,23 +344256,23 @@ "year": 1798, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -0.1584755082841447, - "c2": -16.37419570773999, - "c3": -20.00171878165379, - "c4": 4.940800248308079, - "c5": -15.95675256747375, - "c6": 6.084917260191503, - "c7": 3.3728276625244895 + "points": { + "c1": 23.812133287283245, + "c2": -20.718889127696066, + "c3": -16.49040113169356, + "c4": -1.6624074673926899, + "c5": 11.876721362189159, + "c6": -7.5708733017713215, + "c7": -6.270262462732173 }, - "vertexSeeds": { - "c1": 5.867922477824339, - "c2": 6.31482210090426, - "c3": 5.900480932949783, - "c4": 6.206264247008591, - "c5": 5.98064896842827, - "c6": 6.397060312821556, - "c7": 5.906163834593636 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313453, + "c3": 7.651410078594545, + "c4": 6.121128062875636, + "c5": 4.5908460471567265, + "c6": 3.060564031437818, + "c7": 1.530282015718909 }, "rgb": [222, 0, 59] }, @@ -344283,23 +344283,23 @@ "year": 1798, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": -4.618976509171363, - "c2": 18.472797718488117, - "c3": 13.122053086223296, - "c4": -4.610447533542178, - "c5": -10.711688817045793, - "c6": -2.1601946204048126, - "c7": -0.2573877475680888 + "points": { + "c1": 0.6758435459437138, + "c2": 11.93767087181348, + "c3": -8.918468001469394, + "c4": -13.126720329085888, + "c5": -0.37340335045508866, + "c6": 15.4477170068158, + "c7": -4.912135793088034 }, - "vertexSeeds": { - "c1": 2.092760254297785, - "c2": 1.7531304889510695, - "c3": 1.7575142037782132, - "c4": 1.7774497881050264, - "c5": 1.9868208280481074, - "c6": 2.0672608379394615, - "c7": 1.8567502872926969 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841877, + "c3": 2.519648636153489, + "c4": 2.0157189089227923, + "c5": 1.5117891816920939, + "c6": 1.0078594544613952, + "c7": 0.5039297272306986 }, "rgb": [222, 0, 59] }, @@ -344310,23 +344310,23 @@ "year": 1798, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -6.195673745286779, - "c2": 1.5443469684439215, - "c3": -25.097584234494388, - "c4": 13.715467584610842, - "c5": 5.640703034417555, - "c6": 16.555714804981477, - "c7": -17.124888684432875 + "points": { + "c1": 9.6386800501636, + "c2": -1.5699032968245525, + "c3": -21.162293118458408, + "c4": -4.464585098781335, + "c5": 28.996717196933034, + "c6": -23.233967726584922, + "c7": 7.1236237008840035 }, - "vertexSeeds": { - "c1": 6.590654350649404, - "c2": 6.60266266896746, - "c3": 6.6704824150166955, - "c4": 6.5913913070171715, - "c5": 6.690665163447923, - "c6": 6.641648591755876, - "c7": 6.600623652498031 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916748, + "c3": 7.99815071659733, + "c4": 6.398520573277832, + "c5": 4.798890429958414, + "c6": 3.199260286638916, + "c7": 1.5996301433194977 }, "rgb": [222, 0, 59] }, @@ -344337,23 +344337,23 @@ "year": 1798, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -35.03944695936291, - "c2": -2.4986713240812293, - "c3": 2.7651374919388303, - "c4": 3.79415874840803, - "c5": 7.780820261271636, - "c6": -18.656151494231494, - "c7": -33.75883848325466 + "points": { + "c1": -16.50687629562012, + "c2": -12.723062952862602, + "c3": 36.94915104655527, + "c4": -32.34832569068578, + "c5": -28.951932283602822, + "c6": 5.236062993578798, + "c7": -10.324616249011381 }, - "vertexSeeds": { - "c1": 8.421326658178163, - "c2": 8.909168359062848, - "c3": 9.1179247048034, - "c4": 8.360374371982552, - "c5": 9.001660703935935, - "c6": 9.055583575419252, - "c7": 8.453641012731264 + "offsets": { + "c1": 15.242718446601941, + "c2": 13.06518723994452, + "c3": 10.887656033287094, + "c4": 8.710124826629693, + "c5": 6.532593619972269, + "c6": 4.355062413314847, + "c7": 2.1775312066574233 }, "rgb": [238, 201, 159] }, @@ -344364,23 +344364,23 @@ "year": 1798, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -0.8407023079169917, - "c2": 16.100644010659305, - "c3": 0.9728661059122601, - "c4": 7.793260995342504, - "c5": 1.3145808138395374, - "c6": -23.480672478627554, - "c7": -20.880783691837607 + "points": { + "c1": -4.200291167751786, + "c2": 5.486159981076817, + "c3": -16.3974197577807, + "c4": 12.529027068245924, + "c5": -0.9036466401531271, + "c6": -8.291948809649927, + "c7": -10.576746587565594 }, - "vertexSeeds": { - "c1": 7.922833317058443, - "c2": 7.920899931456622, - "c3": 7.917255334766747, - "c4": 7.927082448506192, - "c5": 7.914916765298839, - "c6": 7.927341527675649, - "c7": 7.912585142201538 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450442, + "c3": 9.454461396209078, + "c4": 7.563569116966961, + "c5": 5.672676837725597, + "c6": 3.7817845584834804, + "c7": 1.8908922792421166 }, "rgb": [222, 0, 59] }, @@ -344391,23 +344391,23 @@ "year": 1798, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -18.472077076076665, - "c2": -8.74897139064116, - "c3": 7.857581126276607, - "c4": -4.729220843953627, - "c5": -23.041307088079023, - "c6": 8.845586799006284, - "c7": 10.986034563955307 + "points": { + "c1": 2.7679282311402886, + "c2": -4.415853211201686, + "c3": 26.09908400377971, + "c4": -18.387829494750637, + "c5": 25.070799238707885, + "c6": -26.576111262318626, + "c7": 9.366070812546567 }, - "vertexSeeds": { - "c1": 5.556817272772501, - "c2": 5.813272355386998, - "c3": 5.210298909039927, - "c4": 5.900912042454586, - "c5": 5.651083510146409, - "c6": 5.743254747935567, - "c7": 5.567889043394856 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468793, + "c3": 7.165973185390661, + "c4": 5.732778548312528, + "c5": 4.2995839112343965, + "c6": 2.866389274156264, + "c7": 1.433194637078132 }, "rgb": [222, 0, 59] }, @@ -344418,23 +344418,23 @@ "year": 1798, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 11.652644756445348, - "c2": 21.529905038021028, - "c3": -32.317507560413915, - "c4": 32.53728782849535, - "c5": -8.857784456264124, - "c6": -4.173721207435193, - "c7": -27.411731752573004 + "points": { + "c1": 21.293165983208752, + "c2": 26.26172673408047, + "c3": -35.89085437217574, + "c4": -25.0223164129292, + "c5": -17.941051562801622, + "c6": -37.40288945611363, + "c7": 27.390414247634126 }, - "vertexSeeds": { - "c1": 6.819184281219886, - "c2": 6.748235027837496, - "c3": 6.954635717099194, - "c4": 6.929788049651297, - "c5": 6.851103216036818, - "c6": 6.881751131647176, - "c7": 6.807324460035362 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479881, + "c3": 8.32177531206656, + "c4": 6.657420249653291, + "c5": 4.993065187239968, + "c6": 3.3287101248266455, + "c7": 1.6643550624133228 }, "rgb": [77, 76, 132] }, @@ -344445,23 +344445,23 @@ "year": 1798, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -22.319233634597587, - "c2": 26.105909499880823, - "c3": 20.203317425906285, - "c4": -23.87801065180918, - "c5": 2.1713742482875027, - "c6": -14.633965538366294, - "c7": -29.074791704468485 + "points": { + "c1": 19.763659537556464, + "c2": -23.367817486575447, + "c3": 12.209431897698614, + "c4": 12.340796232129307, + "c5": -6.00145209947889, + "c6": -21.662575002044928, + "c7": 18.29383289563092 }, - "vertexSeeds": { - "c1": 1.5261194999631869, - "c2": 1.5701344122591576, - "c3": 1.4652754750590893, - "c4": 1.5656103325967763, - "c5": 1.4942061629113803, - "c6": 1.510846592873684, - "c7": 1.5125821864004365 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820163, + "c4": 1.5349052242256112, + "c5": 1.1511789181692107, + "c6": 0.7674526121128056, + "c7": 0.38372630605640495 }, "rgb": [238, 201, 159] }, @@ -344472,23 +344472,23 @@ "year": 1798, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -25.640725395971938, - "c2": -12.78187343227334, - "c3": -8.000561313665155, - "c4": -7.2431440460513095, - "c5": 12.883949138017766, - "c6": 7.909779400482048, - "c7": -3.5685133664626854 + "points": { + "c1": 10.690101279819054, + "c2": -29.7614373550346, + "c3": 0.5780459042749726, + "c4": 12.99742891482012, + "c5": -6.874703460232631, + "c6": 3.6287425658224493, + "c7": 30.028753028812453 }, - "vertexSeeds": { - "c1": 0.8378959727823003, - "c2": 0.732862918008013, - "c3": 0.8218013087329137, - "c4": 0.7903669550250154, - "c5": 0.7283690330972505, - "c6": 0.8460008967365678, - "c7": 0.719257481851983 + "offsets": { + "c1": 1.4563106796116505, + "c2": 1.248266296809986, + "c3": 1.0402219140083215, + "c4": 0.8321775312066582, + "c5": 0.6241331484049936, + "c6": 0.4160887656033291, + "c7": 0.20804438280166454 }, "rgb": [86, 146, 138] }, @@ -344499,23 +344499,23 @@ "year": 1798, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 16.500233234487563, - "c2": -22.325390440098452, - "c3": 5.845846200761738, - "c4": 18.145790433197593, - "c5": 1.3969471568112617, - "c6": 23.400229983168988, - "c7": -12.912791695967226 + "points": { + "c1": 0.2315997954735316, + "c2": -14.376289109465409, + "c3": 5.490687961188325, + "c4": -15.7652975913352, + "c5": -29.27649503295294, + "c6": -13.625045655928412, + "c7": -10.837056938528796 }, - "vertexSeeds": { - "c1": 5.871678076372849, - "c2": 5.790832080754707, - "c3": 6.099966549658627, - "c4": 5.714547284013493, - "c5": 6.091821364271747, - "c6": 5.675558473409445, - "c7": 5.745329007197884 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [58, 15, 49] }, @@ -344526,23 +344526,23 @@ "year": 1798, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 26.9425631801562, - "c2": -6.898165565002227, - "c3": 28.031514508754945, - "c4": 3.8631902994625946, - "c5": 10.92756983626471, - "c6": -27.025228763033752, - "c7": -17.65696224255691 + "points": { + "c1": -16.55997800220735, + "c2": 27.016757606271433, + "c3": 11.52364178047548, + "c4": 9.266630078698583, + "c5": -27.755147328386393, + "c6": 35.6382553916474, + "c7": 23.76471241084709 }, - "vertexSeeds": { - "c1": 6.782977366293721, - "c2": 7.146018114208401, - "c3": 6.724747286088059, - "c4": 7.139949281238575, - "c5": 7.19684820478761, - "c6": 6.676079070793389, - "c7": 6.88026980440528 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962546, + "c3": 8.599167822468804, + "c4": 6.879334257975039, + "c5": 5.159500693481273, + "c6": 3.43966712898753, + "c7": 1.719833564493765 }, "rgb": [58, 15, 49] }, @@ -344553,23 +344553,23 @@ "year": 1798, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 26.68339701940201, - "c2": 12.348716701024827, - "c3": 0.4866595587964113, - "c4": 31.876814707580508, - "c5": 37.9081144875243, - "c6": 9.973374280959312, - "c7": 6.560456253089214 + "points": { + "c1": -42.420160456131555, + "c2": -4.524024321507746, + "c3": 41.19650514301473, + "c4": 24.3086644561656, + "c5": -41.99771969412683, + "c6": 10.57843434674664, + "c7": 32.859459925005964 }, - "vertexSeeds": { - "c1": 6.498831797404764, - "c2": 6.7778289161194225, - "c3": 6.809927316645963, - "c4": 6.921193570377416, - "c5": 6.712567948617914, - "c6": 6.903594533976898, - "c7": 6.595308765226381 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629681001, + "c3": 8.437355524734173, + "c4": 6.749884419787342, + "c5": 5.06241331484049, + "c6": 3.37494220989366, + "c7": 1.68747110494683 }, "rgb": [58, 15, 49] }, @@ -344580,23 +344580,23 @@ "year": 1798, "resistanceReported": false, "duration": 5961600, - "curveSeeds": { - "c1": 1.4714102420811308, - "c2": -5.8308174673590845, - "c3": -4.19558615885496, - "c4": -0.40118345555087487, - "c5": 11.539366659818455, - "c6": -13.528080708995944, - "c7": -14.31398633737874 + "points": { + "c1": -10.1607562218144, + "c2": -16.6495190615046, + "c3": 14.593068497878516, + "c4": 17.20560660414669, + "c5": -0.1730130267775003, + "c6": -16.34454972710333, + "c7": 17.763194758086637 }, - "vertexSeeds": { - "c1": 4.860277499895627, - "c2": 4.768678374594254, - "c3": 5.1894158928582845, - "c4": 4.725624090439061, - "c5": 5.200492024383513, - "c6": 4.841594294746068, - "c7": 4.646481803666544 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940361, + "c3": 6.287563569116967, + "c4": 5.030050855293574, + "c5": 3.7725381414701804, + "c6": 2.515025427646787, + "c7": 1.2575127138233935 }, "rgb": [77, 76, 132] }, @@ -344607,23 +344607,23 @@ "year": 1798, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -2.6036079807386656, - "c2": 31.109970383156096, - "c3": 22.25917909091902, - "c4": -3.6540253552373123, - "c5": 14.262034277894934, - "c6": 9.760566063842859, - "c7": 33.761879866611636 + "points": { + "c1": 3.1469953435527387, + "c2": -34.17176202056701, + "c3": -35.96284280592855, + "c4": 36.00790131377681, + "c5": 11.514992015347971, + "c6": -16.87019430427863, + "c7": 23.738492556912114 }, - "vertexSeeds": { - "c1": 7.933827771761644, - "c2": 8.33902199875518, - "c3": 8.581588593153528, - "c4": 8.376280210944952, - "c5": 8.10479280834908, - "c6": 8.182011740817162, - "c7": 8.535071260022566 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.28848821081831, + "c3": 10.240406842348596, + "c4": 8.19232547387888, + "c5": 6.144244105409144, + "c6": 4.096162736939429, + "c7": 2.0480813684697146 }, "rgb": [222, 0, 59] }, @@ -344634,23 +344634,23 @@ "year": 1798, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 14.564608667780256, - "c2": -24.235270491967142, - "c3": 12.732303762915677, - "c4": 25.804625439676705, - "c5": -20.107294579527796, - "c6": 19.43811544067067, - "c7": -1.2074625531615126 + "points": { + "c1": -24.30103504535059, + "c2": -22.06384176992843, + "c3": 0.759080455441925, + "c4": 14.260579139650886, + "c5": -19.893405088691118, + "c6": 25.454976731089417, + "c7": 21.309429524413993 }, - "vertexSeeds": { - "c1": 7.541244167422, - "c2": 7.9775535027542555, - "c3": 7.615534693478671, - "c4": 7.822504288388792, - "c5": 7.911362529174132, - "c6": 7.540596715018777, - "c7": 8.078297859857555 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.62274618585298, + "c3": 9.685621821544151, + "c4": 7.74849745723532, + "c5": 5.81137309292649, + "c6": 3.87424872861766, + "c7": 1.93712436430883 }, "rgb": [77, 76, 132] }, @@ -344661,23 +344661,23 @@ "year": 1798, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 7.868982441560803, - "c2": -17.810018280255665, - "c3": -21.912890116751058, - "c4": -5.323816022041527, - "c5": 20.74475120921128, - "c6": -19.588620526321215, - "c7": -12.64391370701738 + "points": { + "c1": -10.672907800367017, + "c2": 19.54690797751278, + "c3": 7.67836701251462, + "c4": -18.85732983277984, + "c5": 15.69401013054943, + "c6": -13.315762659736832, + "c7": 14.07210570439591 }, - "vertexSeeds": { - "c1": 7.107380153745375, - "c2": 7.127501443630331, - "c3": 7.0873395386781475, - "c4": 7.021801058601602, - "c5": 6.955873819112909, - "c6": 7.105365663633323, - "c7": 7.057798559063776 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882107, + "c3": 8.552935737401757, + "c4": 6.8423485899214045, + "c5": 5.131761442441054, + "c6": 3.4211742949607022, + "c7": 1.7105871474803511 }, "rgb": [238, 201, 159] }, @@ -344688,23 +344688,23 @@ "year": 1798, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -26.906927543444493, - "c2": -0.9043253098716377, - "c3": 2.035235051299342, - "c4": 16.518517161618615, - "c5": -1.0923054020303233, - "c6": -1.880364759333844, - "c7": -15.354859911564416 + "points": { + "c1": -7.2240933631949105, + "c2": 2.9148145331024686, + "c3": -2.443947409583309, + "c4": -5.760474505277937, + "c5": -28.988520163106553, + "c6": -24.821334584282255, + "c7": 14.68253848142297 }, - "vertexSeeds": { - "c1": 7.712089366676334, - "c2": 7.542945128882621, - "c3": 7.789325998005305, - "c4": 7.57190736090356, - "c5": 7.796536840953511, - "c6": 7.583933666344436, - "c7": 7.677528820804093 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.20665742024966, + "c3": 9.33888118354139, + "c4": 7.4711049468331225, + "c5": 5.603328710124806, + "c6": 3.7355524734165377, + "c7": 1.8677762367082689 }, "rgb": [86, 146, 138] }, @@ -344715,23 +344715,23 @@ "year": 1798, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -11.74876451136554, - "c2": 10.931960926223994, - "c3": 28.32066179736247, - "c4": -10.023153735999397, - "c5": 19.424062623337655, - "c6": 3.4655012508055236, - "c7": 15.862248531411318 + "points": { + "c1": 30.866578542318507, + "c2": -8.615516831999518, + "c3": 6.984555239176657, + "c4": 17.757048351791354, + "c5": 8.849221781778127, + "c6": -30.353166614899095, + "c7": 14.404807811915 }, - "vertexSeeds": { - "c1": 1.1221838125043102, - "c2": 1.123562130771754, - "c3": 1.1853626870793392, - "c4": 1.1195885853783571, - "c5": 1.114627093556472, - "c6": 1.1723398806743153, - "c7": 1.1737758001949075 + "offsets": { + "c1": 2.0388349514563107, + "c2": 1.7475728155339816, + "c3": 1.45631067961165, + "c4": 1.165048543689321, + "c5": 0.8737864077669896, + "c6": 0.5825242718446605, + "c7": 0.29126213592233147 }, "rgb": [238, 201, 159] }, @@ -344742,23 +344742,23 @@ "year": 1798, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 41.328431379004556, - "c2": 45.25894421715522, - "c3": -21.329164523374438, - "c4": 34.30662865090528, - "c5": 10.286033280912157, - "c6": 0.043839993321064696, - "c7": -25.721874804877874 + "points": { + "c1": 35.757604837014696, + "c2": 28.383864227328445, + "c3": -26.767485377319584, + "c4": 37.80712364376072, + "c5": -39.46630148951928, + "c6": -35.676382340648, + "c7": -42.77929246214102 }, - "vertexSeeds": { - "c1": 6.152712248312378, - "c2": 6.526182762005567, - "c3": 6.422481309641783, - "c4": 6.544901407841471, - "c5": 6.249124587270391, - "c6": 6.152167258173116, - "c7": 6.3476042538751125 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.486823855755892, + "c3": 7.90568654646324, + "c4": 6.324549237170607, + "c5": 4.743411927877956, + "c6": 3.1622746185853035, + "c7": 1.5811373092926517 }, "rgb": [238, 201, 159] }, @@ -344769,23 +344769,23 @@ "year": 1798, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -26.75411821373587, - "c2": -13.734827162464866, - "c3": 20.131154363097945, - "c4": 13.289958417780145, - "c5": 24.106115296336302, - "c6": 12.38610845537561, - "c7": -8.828643109489832 + "points": { + "c1": 10.663287891342538, + "c2": 2.643050827850036, + "c3": 1.7265025772834868, + "c4": 0.7235356825353811, + "c5": 23.71201047963982, + "c6": -21.54388580593213, + "c7": 9.98466375184329 }, - "vertexSeeds": { - "c1": 8.350867825478247, - "c2": 8.033761461499704, - "c3": 7.921697247137878, - "c4": 7.975675283439646, - "c5": 7.967810486033696, - "c6": 8.036904256550626, - "c7": 8.154984243762465 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737866, + "c3": 10.19417475728156, + "c4": 8.155339805825252, + "c5": 6.116504854368944, + "c6": 4.077669902912615, + "c7": 2.0388349514563076 }, "rgb": [77, 76, 132] }, @@ -344796,23 +344796,23 @@ "year": 1798, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 23.6450775524628, - "c2": 16.14990241678928, - "c3": -11.868953974800217, - "c4": 16.62212566617091, - "c5": -12.584988005376905, - "c6": 14.518678784799143, - "c7": -23.951980523935777 + "points": { + "c1": -25.233843450499993, + "c2": 22.17349395195975, + "c3": -16.129202582814507, + "c4": 25.720830046916596, + "c5": -14.471567914599698, + "c6": -20.86903619875479, + "c7": -19.331800474732482 }, - "vertexSeeds": { - "c1": 8.708157028656203, - "c2": 8.57087068908388, - "c3": 8.720962886262313, - "c4": 8.91427354028638, - "c5": 8.796629722388657, - "c6": 9.213535887367465, - "c7": 8.680663284051937 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306523, + "c3": 11.095700416088754, + "c4": 8.876560332871007, + "c5": 6.657420249653262, + "c6": 4.438280166435516, + "c7": 2.2191400832177464 }, "rgb": [238, 201, 159] }, @@ -344823,23 +344823,23 @@ "year": 1798, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 26.44421965866578, - "c2": 29.125518262552085, - "c3": -16.940624628556442, - "c4": 30.6858872016412, - "c5": -31.584391288424666, - "c6": -32.78325394010546, - "c7": 13.391298701732723 + "points": { + "c1": -24.866451114009568, + "c2": 20.50022117469421, + "c3": -16.163714462097673, + "c4": 1.8407561628728502, + "c5": 2.7412833956296794, + "c6": 42.148040105078756, + "c7": 35.517902611558064 }, - "vertexSeeds": { - "c1": 6.426867584482862, - "c2": 6.868171231010422, - "c3": 6.487719805797212, - "c4": 6.4873418222847175, - "c5": 6.478046809742775, - "c6": 6.683906812935666, - "c7": 6.636853551668439 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -344850,23 +344850,23 @@ "year": 1798, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 15.872451807080985, - "c2": 10.908413513412576, - "c3": -31.079510822657213, - "c4": -33.71412374419407, - "c5": -35.666840199598354, - "c6": -25.23996749062689, - "c7": 21.462532194955443 + "points": { + "c1": 5.22113090490388, + "c2": 37.659414124776674, + "c3": -10.3180941046597, + "c4": -36.25008536425191, + "c5": 41.71033796272434, + "c6": 4.2473827974203715, + "c7": 7.732423877304029 }, - "vertexSeeds": { - "c1": 8.373963420026309, - "c2": 7.890402679484238, - "c3": 7.9675035012595385, - "c4": 8.136122197949474, - "c5": 8.437628805372217, - "c6": 8.06123611558752, - "c7": 7.996140839645584 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858531, + "c3": 10.263522884882114, + "c4": 8.210818307905695, + "c5": 6.158113730929277, + "c6": 4.105409153952836, + "c7": 2.052704576976418 }, "rgb": [222, 0, 59] }, @@ -344877,23 +344877,23 @@ "year": 1798, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 21.072030980553418, - "c2": -27.342343483084907, - "c3": -12.274601130650248, - "c4": 24.18029761124262, - "c5": 8.01661246841105, - "c6": -25.901905431263824, - "c7": 0.1449342620190599 + "points": { + "c1": -20.399981504255194, + "c2": 16.116534316461948, + "c3": -24.258668302558537, + "c4": 19.44189556864404, + "c5": 22.90960688844375, + "c6": -24.49964226232912, + "c7": -19.839575127091784 }, - "vertexSeeds": { - "c1": 5.46650849382841, - "c2": 6.146513059522517, - "c3": 4.471479120549775, - "c4": 4.7426715945796, - "c5": 5.340189829950712, - "c6": 5.721305208571801, - "c7": 5.908472061007977 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682385, + "c3": 4.415164123901988, + "c4": 3.53213129912159, + "c5": 2.6490984743411925, + "c6": 1.7660656495607943, + "c7": 0.8830328247803957 }, "rgb": [86, 146, 138] }, @@ -344904,23 +344904,23 @@ "year": 1798, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -24.840318881791738, - "c2": -4.974268331187712, - "c3": -14.411436360705832, - "c4": 29.340068759006734, - "c5": -5.681219812643327, - "c6": 28.317255736104727, - "c7": -15.92392342336204 + "points": { + "c1": 15.005955016419172, + "c2": -7.753309709405556, + "c3": 20.23323995371289, + "c4": -14.27577156733409, + "c5": 3.990363780660992, + "c6": -6.628592368980616, + "c7": -19.723810509661114 }, - "vertexSeeds": { - "c1": 3.3989521739268547, - "c2": 3.391245854439238, - "c3": 3.474627775009076, - "c4": 3.662319898641912, - "c5": 3.509694705489142, - "c6": 3.5803692882714855, - "c7": 3.6793570901282417 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682389, + "c3": 4.415164123901984, + "c4": 3.532131299121589, + "c5": 2.6490984743411947, + "c6": 1.7660656495608, + "c7": 0.8830328247803946 }, "rgb": [222, 0, 59] }, @@ -344931,23 +344931,23 @@ "year": 1798, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 7.2122645755436, - "c2": -19.60243120956456, - "c3": -12.396842524616428, - "c4": -13.014645859193728, - "c5": -3.8341590022194794, - "c6": 15.465120554139702, - "c7": 28.918727987441194 + "points": { + "c1": -29.225237884312207, + "c2": -5.023504772539507, + "c3": -17.520991191861906, + "c4": 17.128378923598333, + "c5": -4.922995908183861, + "c6": 11.576503279201567, + "c7": 21.63825106460194 }, - "vertexSeeds": { - "c1": 9.156278462485231, - "c2": 8.714448921430144, - "c3": 8.623151048456307, - "c4": 8.58720057390077, - "c5": 9.200251605265686, - "c6": 8.923115473845776, - "c7": 9.164220564601854 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346738, + "c3": 11.118816458622277, + "c4": 8.895053166897819, + "c5": 6.6712898751733585, + "c6": 4.44752658344892, + "c7": 2.223763291724438 }, "rgb": [58, 15, 49] }, @@ -344958,23 +344958,23 @@ "year": 1798, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -32.42429291936191, - "c2": -39.970884030436984, - "c3": -0.5463051041258353, - "c4": 5.740184216360291, - "c5": 7.975282171718966, - "c6": -15.998609266095677, - "c7": 41.60279105596866 + "points": { + "c1": 44.94245696025204, + "c2": -11.868643826958497, + "c3": 19.554431820641106, + "c4": 43.43394506575478, + "c5": -43.82730258550757, + "c6": -12.413017256077367, + "c7": -40.232372216061925 }, - "vertexSeeds": { - "c1": 3.991909260814574, - "c2": 4.2427319000817105, - "c3": 4.046074956685121, - "c4": 4.1732359604622316, - "c5": 4.124920338271827, - "c6": 4.139476776427985, - "c7": 4.067068150321836 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929268, + "c3": 5.131761442441048, + "c4": 4.1054091539528415, + "c5": 3.079056865464634, + "c6": 2.052704576976414, + "c7": 1.026352288488207 }, "rgb": [86, 146, 138] }, @@ -344985,23 +344985,23 @@ "year": 1799, "resistanceReported": false, "duration": 37411200, - "curveSeeds": { - "c1": 7.929690127813977, - "c2": 37.612395021098656, - "c3": 10.374982672644563, - "c4": 14.739316187631026, - "c5": -36.21042570553604, - "c6": -37.35599393186163, - "c7": -39.69193383478387 + "points": { + "c1": -21.054783184157266, + "c2": 47.077764865952126, + "c3": 35.726776216552416, + "c4": -32.2618248177547, + "c5": -44.30686302888599, + "c6": 20.855138666355067, + "c7": -40.50023063764892 }, - "vertexSeeds": { - "c1": 3.1696162958943157, - "c2": 3.309593093770391, - "c3": 3.094643113681474, - "c4": 3.125602116173255, - "c5": 3.1045245205965664, - "c6": 3.19323788171196, - "c7": 3.3028438171851597 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918165, + "c3": 3.9759593157651465, + "c4": 3.1807674526121144, + "c5": 2.3855755894590827, + "c6": 1.5903837263060638, + "c7": 0.7951918631530319 }, "rgb": [77, 76, 132] }, @@ -345012,23 +345012,23 @@ "year": 1798, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": 7.387686886346884, - "c2": 12.38236686346729, - "c3": -2.5017857205520713, - "c4": -0.2634912079841385, - "c5": 20.615587812426128, - "c6": 20.745936014830797, - "c7": -11.172581754443822 + "points": { + "c1": -8.058308006780809, + "c2": 12.949133135593101, + "c3": -17.01331993177779, + "c4": -4.442469586758495, + "c5": -4.5353680282550535, + "c6": -4.881575779864459, + "c7": -8.421631100078356 }, - "vertexSeeds": { - "c1": 3.4500760304435967, - "c2": 3.4193344785917588, - "c3": 3.4097745820405683, - "c4": 3.448457521740962, - "c5": 3.4236798171937846, - "c6": 3.422244732574133, - "c7": 3.448204439192801 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280156, + "c3": 4.184003698566819, + "c4": 3.347202958853449, + "c5": 2.510402219140078, + "c6": 1.6736014794267076, + "c7": 0.8368007397133705 }, "rgb": [86, 146, 138] }, @@ -345039,23 +345039,23 @@ "year": 1798, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -36.78758046363887, - "c2": -24.557376152667374, - "c3": -10.04148697137946, - "c4": -36.24765544350959, - "c5": -21.83179143848048, - "c6": 25.16974948164939, - "c7": -15.364816876334054 + "points": { + "c1": 32.23199088249963, + "c2": -7.877570659370733, + "c3": -15.780543549378653, + "c4": -31.092524550175977, + "c5": -37.69237681183822, + "c6": 16.942961133482477, + "c7": 7.518632195162027 }, - "vertexSeeds": { - "c1": 8.652743585313024, - "c2": 8.38467944677212, - "c3": 8.672086793828312, - "c4": 8.631480920453074, - "c5": 8.39345762286358, - "c6": 8.709224678288729, - "c7": 8.288842498772008 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220523, + "c3": 10.471567267683783, + "c4": 8.377253814147021, + "c5": 6.282940360610262, + "c6": 4.1886269070735, + "c7": 2.094313453536761 }, "rgb": [222, 0, 59] }, @@ -345066,23 +345066,23 @@ "year": 1798, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 23.230814067938915, - "c2": 20.48339299850047, - "c3": -17.249489651850944, - "c4": 16.26585173792263, - "c5": 14.791339514898795, - "c6": -4.938825379312718, - "c7": -7.906888197932474 + "points": { + "c1": 26.377894148726995, + "c2": -25.945034197305322, + "c3": 16.05261159778668, + "c4": -8.008182789352858, + "c5": -14.806198994207172, + "c6": -9.965257605443195, + "c7": -13.737188725379376 }, - "vertexSeeds": { - "c1": 6.8303944278867395, - "c2": 6.254750430220121, - "c3": 6.399130960549193, - "c4": 6.873734545787772, - "c5": 6.807226086354819, - "c6": 6.860475584633317, - "c7": 6.4444152863389785 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319011, + "c3": 8.229311141932499, + "c4": 6.5834489135460075, + "c5": 4.937586685159496, + "c6": 3.2917244567730037, + "c7": 1.6458622283864919 }, "rgb": [77, 76, 132] }, @@ -345093,23 +345093,23 @@ "year": 1798, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 11.127062224247382, - "c2": -12.023953734456695, - "c3": 6.0238813084102105, - "c4": -7.503766276189374, - "c5": 2.477982734276104, - "c6": -3.70075729979591, - "c7": -12.406822508886702 + "points": { + "c1": -9.66373298857236, + "c2": 26.084675901424276, + "c3": -24.71818521152594, + "c4": 6.10061660300849, + "c5": -3.190617984406952, + "c6": -16.66990515430918, + "c7": 16.35145509641523 }, - "vertexSeeds": { - "c1": 5.415729680106473, - "c2": 5.247054712577256, - "c3": 5.363348228492163, - "c4": 5.561325928895273, - "c5": 5.24002464003068, - "c6": 5.6280182337322735, - "c7": 5.577839199752312 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.726768377253824, + "c4": 5.381414701803054, + "c5": 4.036061026352285, + "c6": 2.6907073509015387, + "c7": 1.3453536754507693 }, "rgb": [86, 146, 138] }, @@ -345120,23 +345120,23 @@ "year": 1798, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -10.976102491507294, - "c2": -32.93048341690461, - "c3": 0.41856593430697586, - "c4": -21.149064629423666, - "c5": 18.603579749899993, - "c6": 18.842253145703303, - "c7": -15.567634247396445 + "points": { + "c1": 10.03760537100932, + "c2": -25.81017665170834, + "c3": 6.151038889941518, + "c4": -33.45138823615154, + "c5": -18.34294962154757, + "c6": 1.2640941551864486, + "c7": -22.089263925623598 }, - "vertexSeeds": { - "c1": 1.7492824503565776, - "c2": 1.7589387441852207, - "c3": 1.7689681212496084, - "c4": 1.8173661241669903, - "c5": 1.7800312596296222, - "c6": 1.7841450193162378, - "c7": 1.821032490671182 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210833, + "c3": 2.196024040684238, + "c4": 1.7568192325473926, + "c5": 1.3176144244105472, + "c6": 0.8784096162736909, + "c7": 0.4392048081368454 }, "rgb": [86, 146, 138] }, @@ -345147,23 +345147,23 @@ "year": 1798, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 10.66454922387662, - "c2": 9.04873747735121, - "c3": 31.979178365286387, - "c4": 12.851565307417957, - "c5": 3.617297226621268, - "c6": -25.171797480196624, - "c7": -30.169945361250598 + "points": { + "c1": -11.458799045231466, + "c2": -20.740152955195548, + "c3": 13.392430643254798, + "c4": 8.756640448379287, + "c5": -30.051757725394932, + "c6": -29.06618582155076, + "c7": -5.252147146789749 }, - "vertexSeeds": { - "c1": 0.2944025510029136, - "c2": 0.307484804952721, - "c3": 0.3020868256797557, - "c4": 0.3089511596623704, - "c5": 0.29214754559175266, - "c6": 0.3001435169303803, - "c7": 0.3092498642647749 + "offsets": { + "c1": 0.5501618122977346, + "c2": 0.47156726768377283, + "c3": 0.392972723069811, + "c4": 0.3143781784558492, + "c5": 0.23578363384188544, + "c6": 0.15718908922792363, + "c7": 0.07859454461396181 }, "rgb": [238, 201, 159] }, @@ -345174,23 +345174,23 @@ "year": 1798, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -0.6019452030986443, - "c2": -34.65497618403036, - "c3": 24.94799681692895, - "c4": 16.363369658971557, - "c5": 30.482715352506496, - "c6": 9.972080374272792, - "c7": 33.14291853897486 + "points": { + "c1": 18.811074239779245, + "c2": -35.57179670837542, + "c3": 39.2196080034222, + "c4": -4.470951299439875, + "c5": -1.0726655443954556, + "c6": 19.206775714793594, + "c7": -31.1264065589815 }, - "vertexSeeds": { - "c1": 2.8224981554857904, - "c2": 2.928494034557676, - "c3": 2.8214572063196535, - "c4": 2.8158635165364845, - "c5": 2.8727749842706203, - "c6": 2.8828301881722487, - "c7": 2.985892315536897 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274612, + "c3": 3.6061026352288503, + "c4": 2.884882108183075, + "c5": 2.1636615811373128, + "c6": 1.4424410540915376, + "c7": 0.7212205270457752 }, "rgb": [222, 0, 59] }, @@ -345201,23 +345201,23 @@ "year": 1798, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 2.289521076244764, - "c2": -12.628692048107666, - "c3": -16.39469574953996, - "c4": 4.825356925822867, - "c5": -2.086858437485489, - "c6": -17.606232121268086, - "c7": 13.7895325527662 + "points": { + "c1": -23.41970533707761, + "c2": 16.206666803650474, + "c3": 11.678133465367718, + "c4": -25.524241590675043, + "c5": 25.865768804321686, + "c6": 2.5619575835699457, + "c7": 25.593489833657127 }, - "vertexSeeds": { - "c1": 6.789376596131616, - "c2": 6.501599201527514, - "c3": 6.677538787479756, - "c4": 6.976019767694936, - "c5": 6.648874950190715, - "c6": 6.342664995126655, - "c7": 6.381047053781337 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600547, + "c3": 8.391123439667133, + "c4": 6.712898751733698, + "c5": 5.034674063800283, + "c6": 3.356449375866849, + "c7": 1.6782246879334155 }, "rgb": [238, 201, 159] }, @@ -345228,23 +345228,23 @@ "year": 1798, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -11.005068659886913, - "c2": 8.338264894874051, - "c3": -19.189468569972277, - "c4": -30.349780582857512, - "c5": 25.99639622156802, - "c6": -24.480792478276708, - "c7": -21.622497104018183 + "points": { + "c1": 27.867690440697075, + "c2": 28.272072273063095, + "c3": 17.71629051342972, + "c4": -18.770222558980237, + "c5": -27.88663196504951, + "c6": 18.375455606580765, + "c7": 32.019155457199105 }, - "vertexSeeds": { - "c1": 4.355746713071667, - "c2": 4.217956008792415, - "c3": 4.270549440686996, - "c4": 4.261391905410066, - "c5": 4.4570154565432, - "c6": 4.463295251239918, - "c7": 4.240955062320023 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331486, + "c3": 5.362921867776241, + "c4": 4.290337494220996, + "c5": 3.2177531206657357, + "c6": 2.1451687471104908, + "c7": 1.0725843735552454 }, "rgb": [86, 146, 138] }, @@ -345255,23 +345255,23 @@ "year": 1798, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 28.363814782448955, - "c2": 26.232095005494614, - "c3": 27.036028778412955, - "c4": -14.806579505763446, - "c5": 0.4905806659917751, - "c6": -22.498516560664754, - "c7": 5.844869729303909 + "points": { + "c1": -16.591336935640317, + "c2": 10.02214285916854, + "c3": -0.431262524430867, + "c4": 28.155118182314844, + "c5": 14.907913092763259, + "c6": 18.198512968087663, + "c7": 17.135165144682155 }, - "vertexSeeds": { - "c1": 1.8468204241788615, - "c2": 1.9367066290006125, - "c3": 1.9721922173944992, - "c4": 1.9646931716317986, - "c5": 2.188385718201056, - "c6": 2.140847210063505, - "c7": 2.1458905075438226 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [58, 15, 49] }, @@ -345282,23 +345282,23 @@ "year": 1798, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 17.59058945527143, - "c2": -25.295719761993066, - "c3": -5.026023778532249, - "c4": -19.86639367189769, - "c5": -21.79137328282662, - "c6": 7.644974514632796, - "c7": 13.054935058962837 + "points": { + "c1": -9.947978346849958, + "c2": 7.478664081958339, + "c3": -16.107257908961607, + "c4": -10.832274780474144, + "c5": 15.876777232312296, + "c6": -19.859399824628348, + "c7": -0.6538850743613587 }, - "vertexSeeds": { - "c1": 5.628557788804051, - "c2": 5.480905225356024, - "c3": 5.493371487440636, - "c4": 5.677095577139348, - "c5": 5.550323362063696, - "c6": 5.38235973477767, - "c7": 5.493533707152945 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865465, + "c3": 6.819232547387887, + "c4": 5.455386037910309, + "c5": 4.091539528432732, + "c6": 2.7276930189551547, + "c7": 1.3638465094775774 }, "rgb": [86, 146, 138] }, @@ -345309,23 +345309,23 @@ "year": 1798, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -16.681279866062184, - "c2": -3.036856899658627, - "c3": 20.029463391707537, - "c4": 21.71293952708796, - "c5": -10.862292413747479, - "c6": -12.279409705987192, - "c7": 20.216819112819657 + "points": { + "c1": 3.0397973500043207, + "c2": 3.8076540182710517, + "c3": -3.2076274148649624, + "c4": -10.727240029546113, + "c5": -9.467493101338938, + "c6": -10.196654797937452, + "c7": 8.577904578249125 }, - "vertexSeeds": { - "c1": 2.1398163504119894, - "c2": 1.946016950648915, - "c3": 1.9758503658802025, - "c4": 2.11397983259478, - "c5": 2.0165976637440255, - "c6": 2.076919379839081, - "c7": 2.1819748347990733 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.19001386962552, + "c3": 2.6583448913546017, + "c4": 2.1266759130836808, + "c5": 1.59500693481276, + "c6": 1.0633379565418417, + "c7": 0.5316689782709209 }, "rgb": [77, 76, 132] }, @@ -345336,23 +345336,23 @@ "year": 1798, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -36.087855552401734, - "c2": 6.691098296493799, - "c3": 37.98676950512689, - "c4": -37.46274746785275, - "c5": 25.58667839823528, - "c6": -2.1284271776376684, - "c7": 4.52455058166197 + "points": { + "c1": 33.11648007592754, + "c2": 28.962942431942665, + "c3": 38.658500739666806, + "c4": 19.30192665844328, + "c5": 13.611618842600635, + "c6": -7.0900240341914795, + "c7": -30.699591511949635 }, - "vertexSeeds": { - "c1": 11.171931825739406, - "c2": 10.42139793057052, - "c3": 10.802467481507497, - "c4": 10.73210519766016, - "c5": 10.220449242411217, - "c6": 10.85836636632922, - "c7": 10.80867766327705 + "offsets": { + "c1": 18.83495145631068, + "c2": 16.144244105409154, + "c3": 13.45353675450763, + "c4": 10.762829403606103, + "c5": 8.072122052704577, + "c6": 5.381414701803052, + "c7": 2.690707350901526 }, "rgb": [222, 0, 59] }, @@ -345363,23 +345363,23 @@ "year": 1798, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -19.992496773600273, - "c2": 17.43810245435284, - "c3": -13.121195548528263, - "c4": -5.563836538553581, - "c5": 5.115545311129253, - "c6": -16.61480964501972, - "c7": -14.868326119831782 + "points": { + "c1": -6.2463682637555955, + "c2": 9.100588606558272, + "c3": 16.46150627161541, + "c4": -18.68372456579259, + "c5": 19.540599556924203, + "c6": 10.061709929907853, + "c7": 12.65479874201586 }, - "vertexSeeds": { - "c1": 6.586941723851666, - "c2": 6.801752604769424, - "c3": 6.628967724112164, - "c4": 6.701425242466944, - "c5": 6.610678257797747, - "c6": 6.58857399239918, - "c7": 6.776398749019127 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359212, + "c3": 8.252427184466036, + "c4": 6.6019417475728215, + "c5": 4.951456310679606, + "c6": 3.30097087378643, + "c7": 1.650485436893215 }, "rgb": [77, 76, 132] }, @@ -345390,23 +345390,23 @@ "year": 1799, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 23.309906740408536, - "c2": 7.205548993139928, - "c3": 3.2422050429779574, - "c4": -35.22767497132333, - "c5": -8.94605360925545, - "c6": -16.585104977310174, - "c7": 36.72384951830347 + "points": { + "c1": -12.408631172175248, + "c2": -38.211202490758396, + "c3": -1.5390811185070703, + "c4": 14.24050882764945, + "c5": -10.227521694900005, + "c6": 22.759914641976536, + "c7": 18.117564722635237 }, - "vertexSeeds": { - "c1": 4.812202163808801, - "c2": 4.755749782225398, - "c3": 4.587845807408959, - "c4": 4.627360439144579, - "c5": 4.653424799698972, - "c6": 4.761063692072548, - "c7": 4.6247276381772195 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337033, + "c3": 5.940822931114196, + "c4": 4.752658344891358, + "c5": 3.564493758668522, + "c6": 2.3763291724456743, + "c7": 1.1881645862228372 }, "rgb": [86, 146, 138] }, @@ -345417,23 +345417,23 @@ "year": 1798, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 28.775116775830135, - "c2": -23.141509399588163, - "c3": -3.3122138914085397, - "c4": 15.658272484246716, - "c5": -34.646116724132426, - "c6": -6.622533411570764, - "c7": -41.200076132061355 + "points": { + "c1": 24.596005516367264, + "c2": 3.4944135346479257, + "c3": -7.999749402350282, + "c4": -22.303289096369262, + "c5": -25.716074090486536, + "c6": 12.931875081969217, + "c7": -26.871444826562367 }, - "vertexSeeds": { - "c1": 8.603577274473762, - "c2": 8.778056027990397, - "c3": 8.86318580207361, - "c4": 8.751230385850258, - "c5": 8.788628333987434, - "c6": 8.59581186049055, - "c7": 8.937619439382406 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.843273231622751, + "c3": 10.702727693018945, + "c4": 8.56218215441516, + "c5": 6.421636615811376, + "c6": 4.281091077207569, + "c7": 2.1405455386037846 }, "rgb": [58, 15, 49] }, @@ -345444,23 +345444,23 @@ "year": 1798, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -9.178771983770915, - "c2": -2.325671377961797, - "c3": 24.995783243439707, - "c4": 24.449731622075387, - "c5": -14.505075901011688, - "c6": -14.38411383244019, - "c7": -14.166439261769462 + "points": { + "c1": -6.706613065553277, + "c2": 28.868819232113612, + "c3": 10.11749504965994, + "c4": 24.14512064066503, + "c5": -4.186983608665532, + "c6": -8.720363533118757, + "c7": -3.631129634420528 }, - "vertexSeeds": { - "c1": 8.077904023660594, - "c2": 8.250640239510949, - "c3": 8.244491216810308, - "c4": 7.595599897493479, - "c5": 8.24684926040878, - "c6": 7.648071192720372, - "c7": 7.768581335939882 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174747, + "c3": 9.8705501618123, + "c4": 7.896440129449831, + "c5": 5.922330097087385, + "c6": 3.9482200647249157, + "c7": 1.9741100323624472 }, "rgb": [222, 0, 59] }, @@ -345471,23 +345471,23 @@ "year": 1798, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 4.93222233936071, - "c2": 28.197076596172135, - "c3": 11.635877269046158, - "c4": -6.37822353425603, - "c5": -27.46087640184152, - "c6": -12.26351507881606, - "c7": -18.605039043182607 + "points": { + "c1": -29.898487550979677, + "c2": 5.668389253945623, + "c3": -25.48736385675999, + "c4": -18.607471830297538, + "c5": -8.995691493777958, + "c6": -22.58616234738464, + "c7": -13.308206030707794 }, - "vertexSeeds": { - "c1": 4.405452461271811, - "c2": 4.33276708571097, - "c3": 4.142476669707988, - "c4": 4.33206909948249, - "c5": 4.314257405923342, - "c6": 4.250206011604109, - "c7": 4.3426634339062025 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251038, + "c3": 5.316689782709206, + "c4": 4.253351826167362, + "c5": 3.190013869625519, + "c6": 2.126675913083687, + "c7": 1.0633379565418435 }, "rgb": [222, 0, 59] }, @@ -345498,23 +345498,23 @@ "year": 1799, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 13.093819273664785, - "c2": 31.371911691350988, - "c3": 39.81959636736629, - "c4": 18.30170618731141, - "c5": 13.835832895325666, - "c6": -8.339607412790087, - "c7": -6.934369939634479 + "points": { + "c1": 5.05773166894609, + "c2": -13.972699471398911, + "c3": 46.45395236648831, + "c4": 5.085871364096143, + "c5": 26.90346706143916, + "c6": -19.790510654163313, + "c7": -13.559994977361974 }, - "vertexSeeds": { - "c1": 1.4258254039419973, - "c2": 1.4322877178712239, - "c3": 1.4122979469723698, - "c4": 1.416523240390638, - "c5": 1.4377617860354395, - "c6": 1.420671084442679, - "c7": 1.4306373606659546 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.080443828016636, + "c3": 1.733703190013872, + "c4": 1.3869625520110906, + "c5": 1.0402219140083266, + "c6": 0.6934812760055453, + "c7": 0.34674063800276406 }, "rgb": [222, 0, 59] }, @@ -345525,23 +345525,23 @@ "year": 1798, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 33.270107089186844, - "c2": 10.873298143864638, - "c3": -30.73207254442702, - "c4": 23.19809717045289, - "c5": 32.09373499884834, - "c6": 40.75298942491386, - "c7": -30.288449644722924 + "points": { + "c1": -16.803799356165435, + "c2": -15.193111678217438, + "c3": -28.41204198689119, + "c4": -14.97110905996508, + "c5": 43.598024222791146, + "c6": 1.7246146105239717, + "c7": -18.26795155970389 }, - "vertexSeeds": { - "c1": 3.126041038080494, - "c2": 3.2039167178449857, - "c3": 3.260890079662684, - "c4": 3.2433756379700176, - "c5": 3.115754306452795, - "c6": 3.3619034030392343, - "c7": 3.542822578349435 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.1317614424410545, + "c3": 4.27646786870088, + "c4": 3.421174294960706, + "c5": 2.565880721220524, + "c6": 1.7105871474803496, + "c7": 0.8552935737401748 }, "rgb": [222, 0, 59] }, @@ -345552,23 +345552,23 @@ "year": 1798, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 15.914761127571047, - "c2": -25.997429776153332, - "c3": -9.924752857194019, - "c4": 0.7942199061562576, - "c5": -13.902836222909652, - "c6": -37.295585737193015, - "c7": 10.144413423643257 + "points": { + "c1": 6.173314962777631, + "c2": -21.07266722936103, + "c3": 26.987270295799526, + "c4": -26.393197671146922, + "c5": -20.900158843758913, + "c6": -15.478243940453105, + "c7": -6.680488953474068 }, - "vertexSeeds": { - "c1": 2.072152461274392, - "c2": 1.9153728463495383, - "c3": 1.763614153331972, - "c4": 2.085093575014718, - "c5": 1.8639549281330503, - "c6": 1.8538781918350558, - "c7": 2.094926146935702 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852977, + "c3": 2.6352288488210815, + "c4": 2.108183079056865, + "c5": 1.5811373092926488, + "c6": 1.0540915395284325, + "c7": 0.5270457697642162 }, "rgb": [222, 0, 59] }, @@ -345579,23 +345579,23 @@ "year": 1798, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 15.648283297551295, - "c2": 10.495909876525232, - "c3": -19.959029467313535, - "c4": -8.80020338168642, - "c5": 15.563691564348808, - "c6": -14.069373329304689, - "c7": -5.653728397239394 + "points": { + "c1": 30.700783089138078, + "c2": -14.05383256742191, + "c3": -19.203963240347615, + "c4": 14.632027292891799, + "c5": -14.52755539013165, + "c6": -17.202292592493542, + "c7": -17.874414726091914 }, - "vertexSeeds": { - "c1": 1.5147276227231805, - "c2": 1.4262613356878406, - "c3": 1.5216154760297853, - "c4": 1.483772315489027, - "c5": 1.5371362341304582, - "c6": 1.5078972137626268, - "c7": 1.4122624521383154 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.2468793342579767, + "c3": 1.8723994452149773, + "c4": 1.4979195561719827, + "c5": 1.1234396671289884, + "c6": 0.7489597780859937, + "c7": 0.3744798890429945 }, "rgb": [86, 146, 138] }, @@ -345606,23 +345606,23 @@ "year": 1798, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -14.775377568974207, - "c2": -32.83835805948021, - "c3": 16.334340293830607, - "c4": 4.554234306421307, - "c5": 12.665263181613291, - "c6": -27.464485778630927, - "c7": -6.4265012908295525 + "points": { + "c1": -0.026588360633013508, + "c2": 12.960080807792707, + "c3": -4.85055035754219, + "c4": -23.2087481871304, + "c5": 9.877255643571836, + "c6": -0.9788986667639321, + "c7": 13.123158456838176 }, - "vertexSeeds": { - "c1": 3.972437270065109, - "c2": 3.627398058207781, - "c3": 3.9082548368223295, - "c4": 3.9645299248518406, - "c5": 3.6311501954250094, - "c6": 3.5877257604801747, - "c7": 3.6143565497951426 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607492, + "c3": 4.946833102172907, + "c4": 3.9574664817383285, + "c5": 2.9680998613037426, + "c6": 1.9787332408691642, + "c7": 0.9893666204345853 }, "rgb": [86, 146, 138] }, @@ -345633,23 +345633,23 @@ "year": 1799, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 26.653203983092673, - "c2": 44.78245419816103, - "c3": -15.924569844970648, - "c4": -8.036483146377073, - "c5": -15.719831221544467, - "c6": -20.686275521485577, - "c7": -33.45133283965225 + "points": { + "c1": -2.859242163065659, + "c2": -15.870043426475242, + "c3": -33.58281009677902, + "c4": 31.916858940631066, + "c5": 19.571915215614673, + "c6": -11.450680511813538, + "c7": -27.864683119441757 }, - "vertexSeeds": { - "c1": 3.9649356687281974, - "c2": 4.021095027640186, - "c3": 3.793458836315318, - "c4": 3.830515033990621, - "c5": 3.969019220054362, - "c6": 4.015857388711223, - "c7": 3.7999658350838637 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [222, 0, 59] }, @@ -345660,23 +345660,23 @@ "year": 1798, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": 33.66328826147877, - "c2": 25.153847161179883, - "c3": 14.198947259436288, - "c4": -31.04001036521572, - "c5": 33.667438742611196, - "c6": -16.288890257193962, - "c7": -7.769710393979871 + "points": { + "c1": -17.369721035023016, + "c2": 24.679459451839477, + "c3": 3.5961981178029774, + "c4": 20.426028755898955, + "c5": 0.07080096025730853, + "c6": -2.723199265182295, + "c7": -44.96377637262097 }, - "vertexSeeds": { - "c1": 3.7344301092594394, - "c2": 3.5537725109372063, - "c3": 3.95431823254625, - "c4": 3.8846680104725233, - "c5": 4.02334050490666, - "c6": 3.313127443079167, - "c7": 3.4093638645790967 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486821, + "c3": 4.877484974572353, + "c4": 3.901987979657881, + "c5": 2.9264909847434124, + "c6": 1.9509939898289406, + "c7": 0.9754969949144722 }, "rgb": [77, 76, 132] }, @@ -345687,23 +345687,23 @@ "year": 1799, "resistanceReported": false, "duration": 42508800, - "curveSeeds": { - "c1": -38.01957693477941, - "c2": 48.46293566362833, - "c3": 24.91130522025577, - "c4": 2.2335434538823264, - "c5": -7.815838489786643, - "c6": -19.476699362134966, - "c7": -2.635152604857957 + "points": { + "c1": 16.92608497641224, + "c2": -8.101361630671718, + "c3": 41.230732174252964, + "c4": -44.57384101782684, + "c5": -39.64750966544784, + "c6": 2.0840411221240203, + "c7": -25.36557945922771 }, - "vertexSeeds": { - "c1": 3.409270719487491, - "c2": 3.3322292081423357, - "c3": 3.281333210988502, - "c4": 3.421827146688214, - "c5": 3.1976148488660843, - "c6": 3.300480485117006, - "c7": 3.2730870187922005 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199724, + "c3": 4.137771613499772, + "c4": 3.31021729079982, + "c5": 2.4826629680998673, + "c6": 1.6551086453999044, + "c7": 0.8275543226999522 }, "rgb": [58, 15, 49] }, @@ -345714,23 +345714,23 @@ "year": 1799, "resistanceReported": false, "duration": 45792000, - "curveSeeds": { - "c1": 5.652924674161234, - "c2": 40.81640958045714, - "c3": -36.03881323043583, - "c4": -26.091197443616366, - "c5": 1.933989633216484, - "c6": -26.887434184538684, - "c7": 23.72279527325164 + "points": { + "c1": 17.043463816960276, + "c2": 28.253688617965388, + "c3": -14.723211045832123, + "c4": -24.60572437662605, + "c5": -55.37337762379754, + "c6": 47.81192334953979, + "c7": -10.082801155321519 }, - "vertexSeeds": { - "c1": 2.044394494733783, - "c2": 2.0391865754246665, - "c3": 2.094365029580561, - "c4": 2.0920654789477973, - "c5": 2.0874270697773656, - "c6": 2.0838975246735547, - "c7": 2.082866888382151 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450784, + "c3": 2.6121128062875676, + "c4": 2.08969024503005, + "c5": 1.5672676837725392, + "c6": 1.0448451225150284, + "c7": 0.5224225612575174 }, "rgb": [222, 0, 59] }, @@ -345741,23 +345741,23 @@ "year": 1798, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 6.155345686305829, - "c2": -10.99214931627516, - "c3": 14.286778419552732, - "c4": -36.33299401973593, - "c5": -20.79367434975795, - "c6": 37.795689410952804, - "c7": -31.625616020262868 + "points": { + "c1": -24.11071419274573, + "c2": 20.109170374628718, + "c3": 39.366941737388146, + "c4": 23.510152006545596, + "c5": -18.42658608131439, + "c6": 25.495626552228558, + "c7": 9.021658083199263 }, - "vertexSeeds": { - "c1": 1.679296492895938, - "c2": 1.7289020382161464, - "c3": 1.4226358651239015, - "c4": 1.5765845088341508, - "c5": 1.4904358093988286, - "c6": 1.654303752210032, - "c7": 1.5549023164993443 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.0249653259361993, + "c3": 1.6874711049468323, + "c4": 1.3499768839574668, + "c5": 1.0124826629680996, + "c6": 0.6749884419787325, + "c7": 0.3374942209893671 }, "rgb": [238, 201, 159] }, @@ -345768,23 +345768,23 @@ "year": 1798, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 14.510739840897912, - "c2": -28.008379384283984, - "c3": 17.71787694086232, - "c4": -15.061202482997597, - "c5": 26.722594189154854, - "c6": 23.224494979958166, - "c7": 31.80649530287723 + "points": { + "c1": 7.769613164310819, + "c2": 27.278423106943016, + "c3": -5.09334605023745, + "c4": 1.377387316339508, + "c5": -30.613326776528123, + "c6": 7.129495277036561, + "c7": 15.768162274871742 }, - "vertexSeeds": { - "c1": 2.6524534159392905, - "c2": 2.706852926316668, - "c3": 2.5565397950258157, - "c4": 2.7020160208513277, - "c5": 2.680360167839657, - "c6": 2.70022625078773, - "c7": 2.597315673704588 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.911234396671295, + "c3": 3.2593619972260726, + "c4": 2.6074895977808636, + "c5": 1.9556171983356412, + "c6": 1.3037447988904318, + "c7": 0.6518723994452224 }, "rgb": [77, 76, 132] }, @@ -345795,23 +345795,23 @@ "year": 1798, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 22.84093695820427, - "c2": -13.118691219160713, - "c3": 9.025292603766065, - "c4": 1.3280570198193047, - "c5": -18.899099305500936, - "c6": 4.510204820231188, - "c7": -16.54791358182794 + "points": { + "c1": 8.443053394042554, + "c2": 12.72535413566035, + "c3": -21.918085476700323, + "c4": 9.613066730329717, + "c5": 15.73370627746478, + "c6": 13.236272685342957, + "c7": -8.141742691524222 }, - "vertexSeeds": { - "c1": 4.912685838246288, - "c2": 4.990431865568766, - "c3": 5.030584293292225, - "c4": 4.984836465179989, - "c5": 5.069283605923363, - "c6": 4.939297141755236, - "c7": 4.943718108036805 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251046, + "c4": 5.1040221914008415, + "c5": 3.8280166435506366, + "c6": 2.55201109570041, + "c7": 1.276005547850205 }, "rgb": [238, 201, 159] }, @@ -345822,23 +345822,23 @@ "year": 1798, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -20.087322938068848, - "c2": 20.259499648764947, - "c3": -14.619573065420168, - "c4": 20.88583402632634, - "c5": -21.19653693002886, - "c6": 21.02054254050015, - "c7": -20.605109861164784 + "points": { + "c1": 22.5471405921102, + "c2": -16.886614617456072, + "c3": 22.836143111074033, + "c4": -19.70793780964901, + "c5": 20.098776075952312, + "c6": -22.410892426940897, + "c7": 15.29213514103726 }, - "vertexSeeds": { - "c1": 9.220742086983979, - "c2": 9.306050738272914, - "c3": 9.20545202487518, - "c4": 8.820775399156283, - "c5": 9.033169176040856, - "c6": 9.070613714355293, - "c7": 9.16587420632322 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.675450762829412, + "c3": 11.3962089690245, + "c4": 9.116967175219608, + "c5": 6.837725381414694, + "c6": 4.558483587609804, + "c7": 2.279241793804891 }, "rgb": [238, 201, 159] }, @@ -345849,23 +345849,23 @@ "year": 1798, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -3.625689661607211, - "c2": 25.162566346827703, - "c3": 5.280633525581038, - "c4": -3.346599950075472, - "c5": 21.86752670429312, - "c6": -33.167325726304306, - "c7": -30.706931031745818 + "points": { + "c1": 1.5324707088485496, + "c2": 16.79069916935447, + "c3": 33.59832019648534, + "c4": -35.09589853095014, + "c5": 37.91621447944251, + "c6": -13.998333165169733, + "c7": -17.392147417663068 }, - "vertexSeeds": { - "c1": 8.126556147268174, - "c2": 8.115850929967516, - "c3": 8.15736854912288, - "c4": 8.112991422107232, - "c5": 8.054090325092147, - "c6": 8.183861252950443, - "c7": 8.071134809742093 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094292, + "c3": 9.824318076745296, + "c4": 7.859454461396221, + "c5": 5.894590846047146, + "c6": 3.929727230698071, + "c7": 1.9648636153490748 }, "rgb": [86, 146, 138] }, @@ -345876,23 +345876,23 @@ "year": 1798, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 4.405127205676319, - "c2": 24.551163450966126, - "c3": 16.46864368127326, - "c4": -27.90927296754829, - "c5": 25.79405010352418, - "c6": -14.8419911059501, - "c7": -4.975680195081086 + "points": { + "c1": 13.514766979622987, + "c2": -1.101415224548056, + "c3": -21.377823619004616, + "c4": -26.895824287940197, + "c5": -28.598623710089754, + "c6": 26.067055091761343, + "c7": 0.47654416711413816 }, - "vertexSeeds": { - "c1": 11.782539454524573, - "c2": 11.334871652841324, - "c3": 11.465171941668137, - "c4": 11.46841240632384, - "c5": 10.91421498694581, - "c6": 11.122271345867517, - "c7": 11.275899744931083 + "offsets": { + "c1": 19.870550161812297, + "c2": 17.031900138696248, + "c3": 14.193250115580199, + "c4": 11.354600092464196, + "c5": 8.515950069348145, + "c6": 5.677300046232098, + "c7": 2.838650023116049 }, "rgb": [86, 146, 138] }, @@ -345903,23 +345903,23 @@ "year": 1799, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -9.183467841835252, - "c2": 37.25362592642973, - "c3": 33.52126342462339, - "c4": -28.969926244810267, - "c5": 30.589042423728166, - "c6": -13.034884067309328, - "c7": -41.378757055728265 + "points": { + "c1": -31.7396888481847, + "c2": 25.861976619144862, + "c3": -4.583121538820862, + "c4": -16.292597429810556, + "c5": -7.869843345562963, + "c6": 3.6140797429151164, + "c7": -45.003793799086644 }, - "vertexSeeds": { - "c1": 6.065787442610809, - "c2": 5.880312227065774, - "c3": 5.776202991931844, - "c4": 5.79097805367447, - "c5": 6.194034122833331, - "c6": 6.161404798706997, - "c7": 5.873776081032309 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991687, + "c3": 7.466481738326395, + "c4": 5.973185390661125, + "c5": 4.479889042995833, + "c6": 2.9865926953305624, + "c7": 1.4932963476652923 }, "rgb": [86, 146, 138] }, @@ -345930,23 +345930,23 @@ "year": 1798, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -8.167713538846524, - "c2": 0.1589044520556655, - "c3": 6.390004882107206, - "c4": 35.94898076475948, - "c5": 25.906720537405327, - "c6": 30.08388844441106, - "c7": 21.32881954406087 + "points": { + "c1": -9.189054031256362, + "c2": 22.575153421851496, + "c3": 30.14406658005666, + "c4": 7.974531081740835, + "c5": 10.567255174720692, + "c6": -24.094761063627857, + "c7": -1.5236663043282164 }, - "vertexSeeds": { - "c1": 9.08961753956444, - "c2": 9.503961727743874, - "c3": 9.209453508483595, - "c4": 9.24376875271345, - "c5": 9.157375295856632, - "c6": 9.62296400831057, - "c7": 9.640940565814134 + "offsets": { + "c1": 16.116504854368934, + "c2": 13.814147018030507, + "c3": 11.511789181692109, + "c4": 9.209431345353682, + "c5": 6.9070735090152535, + "c6": 4.604715672676855, + "c7": 2.3023578363384276 }, "rgb": [222, 0, 59] }, @@ -345957,23 +345957,23 @@ "year": 1798, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 24.659795491306998, - "c2": -13.978836384403538, - "c3": 12.584709234798108, - "c4": 4.08967775056286, - "c5": -7.285181835675964, - "c6": -26.682917035166987, - "c7": 0.0754661884283756 + "points": { + "c1": -0.48001384562479643, + "c2": -3.74676990604209, + "c3": 3.406498829465473, + "c4": -29.45130506820932, + "c5": -29.00878318318009, + "c6": 23.39606700284735, + "c7": 27.592354914647732 }, - "vertexSeeds": { - "c1": 7.580767534751778, - "c2": 7.6461241664927995, - "c3": 8.100822809994163, - "c4": 7.5613738383365074, - "c5": 8.086309170077264, - "c6": 7.750701123132389, - "c7": 7.504385040021503 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893202, + "c3": 9.70873786407767, + "c4": 7.766990291262135, + "c5": 5.825242718446601, + "c6": 3.8834951456310676, + "c7": 1.9417475728155338 }, "rgb": [86, 146, 138] }, @@ -345984,23 +345984,23 @@ "year": 1798, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -16.06654118584179, - "c2": -25.978980149404123, - "c3": 19.831315173432785, - "c4": 2.7608077879809585, - "c5": 18.94751348029915, - "c6": 22.56848569859045, - "c7": -0.7425772762823186 + "points": { + "c1": 14.811300972199966, + "c2": 1.8515088357409368, + "c3": 1.9245221120916014, + "c4": -10.91137297419391, + "c5": -35.05740992112692, + "c6": -19.773189059329546, + "c7": 7.152520166057222 }, - "vertexSeeds": { - "c1": 3.5037274495375574, - "c2": 3.524376712733296, - "c3": 3.8242423474759994, - "c4": 3.7833672625783867, - "c5": 3.602193505714516, - "c6": 3.7139338823463066, - "c7": 3.521862683541367 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.492371705963944, + "c3": 4.576976421636615, + "c4": 3.661581137309296, + "c5": 2.7461858529819665, + "c6": 1.830790568654648, + "c7": 0.9153952843273184 }, "rgb": [86, 146, 138] }, @@ -346011,23 +346011,23 @@ "year": 1798, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -13.167025842243312, - "c2": -14.749490471144918, - "c3": -0.8710497354422628, - "c4": -7.093176716097151, - "c5": 22.66946982993043, - "c6": 11.385042414375054, - "c7": 24.609071570994633 + "points": { + "c1": 17.754399742502645, + "c2": -16.428906719218205, + "c3": 16.36304274127914, + "c4": -20.1340697604046, + "c5": -3.86814062108828, + "c6": -2.327250642092338, + "c7": -4.847728122828727 }, - "vertexSeeds": { - "c1": 6.83676215903945, - "c2": 6.7464580186191, - "c3": 6.499213000242157, - "c4": 6.369363774512676, - "c5": 6.523090841647652, - "c6": 6.584535879665743, - "c7": 6.513344858562687 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359226, + "c3": 8.252427184466026, + "c4": 6.601941747572803, + "c5": 4.951456310679602, + "c6": 3.3009708737864014, + "c7": 1.6504854368932007 }, "rgb": [58, 15, 49] }, @@ -346038,23 +346038,23 @@ "year": 1798, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -7.2566177647775305, - "c2": 3.571517550490377, - "c3": -24.998547663407635, - "c4": 20.697575211288946, - "c5": -16.637686599859, - "c6": 24.03388825152906, - "c7": -3.8779828688997426 + "points": { + "c1": 21.872203737830947, + "c2": 18.086797484735772, + "c3": -7.5695343530548165, + "c4": -24.845060822667914, + "c5": 22.764571331869757, + "c6": -15.2001645881173, + "c7": -27.33973340358474 }, - "vertexSeeds": { - "c1": 8.610454624229602, - "c2": 8.488009262547585, - "c3": 8.687705395065937, - "c4": 8.932837756888768, - "c5": 8.930138675942025, - "c6": 8.615998625629596, - "c7": 8.672453023768245 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864084, + "c3": 10.841423948220077, + "c4": 8.67313915857605, + "c5": 6.504854368932042, + "c6": 4.336569579288036, + "c7": 2.1682847896440065 }, "rgb": [58, 15, 49] }, @@ -346065,23 +346065,23 @@ "year": 1798, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -22.798961654869217, - "c2": -6.815508116361702, - "c3": 0.09588949949637993, - "c4": -12.1579872080899, - "c5": 25.12406795608674, - "c6": 21.346486620518405, - "c7": 10.560228388014124 + "points": { + "c1": 33.27594957569241, + "c2": 26.706094443489242, + "c3": 4.275261380517804, + "c4": 13.356739365305287, + "c5": 34.892342155071134, + "c6": -5.900874677661086, + "c7": 5.831778716639235 }, - "vertexSeeds": { - "c1": 8.552076574453954, - "c2": 8.738621153732252, - "c3": 9.140668135571516, - "c4": 8.680851822971073, - "c5": 9.249859288711527, - "c6": 8.838206323383941, - "c7": 8.79180282894145 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226073, + "c3": 11.049468331021723, + "c4": 8.839574664817397, + "c5": 6.629680998613046, + "c6": 4.419787332408698, + "c7": 2.209893666204349 }, "rgb": [77, 76, 132] }, @@ -346092,23 +346092,23 @@ "year": 1798, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 7.482149997414137, - "c2": 10.814918057219128, - "c3": 14.163836111306235, - "c4": 26.54760957366712, - "c5": -27.61900393438411, - "c6": -27.177610598838697, - "c7": -11.554704613757949 + "points": { + "c1": 29.786258402208798, + "c2": 22.90010594381609, + "c3": -4.189120902461166, + "c4": 17.217648816638185, + "c5": 12.697658886498079, + "c6": -5.577118132529115, + "c7": 18.329547859374177 }, - "vertexSeeds": { - "c1": 3.9378351476538502, - "c2": 3.750712682067836, - "c3": 3.824837851367247, - "c4": 3.7710760616373378, - "c5": 3.825421429037796, - "c6": 3.727594497170086, - "c7": 3.993616133210291 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325938, + "c3": 4.785020804438283, + "c4": 3.8280166435506295, + "c5": 2.8710124826629753, + "c6": 1.9140083217753086, + "c7": 0.9570041608876543 }, "rgb": [77, 76, 132] }, @@ -346119,23 +346119,23 @@ "year": 1798, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 15.746713912656404, - "c2": 20.649775481672563, - "c3": 8.58007516126235, - "c4": -2.5913878446175467, - "c5": 25.17612023046079, - "c6": 1.480428727412086, - "c7": -15.720749176514868 + "points": { + "c1": -15.74717315205053, + "c2": -18.318571952236454, + "c3": 23.19149923413717, + "c4": -21.340741054993387, + "c5": -14.014029377909573, + "c6": -26.60918959460792, + "c7": 27.214231411857085 }, - "vertexSeeds": { - "c1": 5.950740122378642, - "c2": 6.049035690872116, - "c3": 6.041837173091271, - "c4": 6.050052182622338, - "c5": 6.205518416222793, - "c6": 6.091546350349339, - "c7": 6.179695843343389 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951461, + "c3": 7.443365695792887, + "c4": 5.954692556634315, + "c5": 4.466019417475743, + "c6": 2.977346278317145, + "c7": 1.4886731391585726 }, "rgb": [58, 15, 49] }, @@ -346146,23 +346146,23 @@ "year": 1798, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -11.3668533240381, - "c2": -13.811907590388117, - "c3": 0.5497291404939304, - "c4": 17.6343428617742, - "c5": 7.601153463147568, - "c6": -33.0307479755197, - "c7": 27.693983436704862 + "points": { + "c1": -14.018195602230765, + "c2": 23.058647555112444, + "c3": 22.21204415542263, + "c4": -12.091990923820873, + "c5": -24.892342017939672, + "c6": -19.17504637714311, + "c7": -24.320667554835055 }, - "vertexSeeds": { - "c1": 8.035903033063306, - "c2": 7.902193335638522, - "c3": 8.048637407534748, - "c4": 7.6460961252956, - "c5": 8.089326458063102, - "c6": 7.52437774016787, - "c7": 7.549218294967191 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.59500693481276, + "c3": 9.662505779010633, + "c4": 7.730004623208506, + "c5": 5.79750346740638, + "c6": 3.865002311604253, + "c7": 1.9325011558021266 }, "rgb": [77, 76, 132] }, @@ -346173,23 +346173,23 @@ "year": 1799, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 16.87803749521423, - "c2": -10.8293863129432, - "c3": 36.682319296999836, - "c4": -34.04009908197909, - "c5": 3.5112738143043245, - "c6": 14.27212023694237, - "c7": -17.866168932891807 + "points": { + "c1": -23.792226876575594, + "c2": -24.05333369673927, + "c3": -34.81637046308799, + "c4": -17.71540484945406, + "c5": 38.9951051360914, + "c6": 33.71178332728597, + "c7": -23.95776535140732 }, - "vertexSeeds": { - "c1": 5.619694363298156, - "c2": 5.784020876449097, - "c3": 5.502557027924255, - "c4": 5.604821680592991, - "c5": 5.835394310134116, - "c6": 5.603887196436326, - "c7": 5.834884602760647 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147023, + "c3": 6.981044845122505, + "c4": 5.584835876098008, + "c5": 4.188626907073512, + "c6": 2.7924179380489935, + "c7": 1.3962089690244968 }, "rgb": [222, 0, 59] }, @@ -346200,23 +346200,23 @@ "year": 1798, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -16.154279123048084, - "c2": -2.428821691242341, - "c3": 24.40733318780903, - "c4": 4.348577769611644, - "c5": -20.526472862497236, - "c6": -19.396742002262314, - "c7": 0.5485785921492017 + "points": { + "c1": 14.999440358271535, + "c2": 0.01864818285979908, + "c3": -21.96563163291896, + "c4": 13.552344031967941, + "c5": 25.935801630147317, + "c6": -14.813659251266362, + "c7": -1.3485410622458254 }, - "vertexSeeds": { - "c1": 8.393817203006112, - "c2": 9.005835166689057, - "c3": 8.987895194146756, - "c4": 8.78061092710016, - "c5": 8.900340785023058, - "c6": 8.863686555688458, - "c7": 8.41191331657422 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743419, + "c3": 10.7720758206195, + "c4": 8.617660656495605, + "c5": 6.463245492371709, + "c6": 4.308830328247814, + "c7": 2.154415164123896 }, "rgb": [238, 201, 159] }, @@ -346227,23 +346227,23 @@ "year": 1798, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -19.33852704754736, - "c2": 3.7861733262556356, - "c3": 2.0710702070225153, - "c4": -25.725889275654332, - "c5": -10.845445760759446, - "c6": -8.1520388889822, - "c7": 10.851859010515795 + "points": { + "c1": -30.80144699965281, + "c2": 19.611516959747945, + "c3": 15.215770753885401, + "c4": 22.038008162664404, + "c5": -28.448968297911875, + "c6": 19.455546259639604, + "c7": 25.74392853674272 }, - "vertexSeeds": { - "c1": 5.552455423944259, - "c2": 5.218207337215853, - "c3": 5.297265776318605, - "c4": 5.371413360646517, - "c5": 5.352967497872827, - "c6": 5.473490227875908, - "c7": 5.4569307934222895 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.98890429958391, + "c3": 6.657420249653259, + "c4": 5.325936199722607, + "c5": 3.994452149791955, + "c6": 2.6629680998613035, + "c7": 1.3314840499306517 }, "rgb": [86, 146, 138] }, @@ -346254,23 +346254,23 @@ "year": 1799, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 23.018630173794044, - "c2": 14.298723425464217, - "c3": 23.77469303851013, - "c4": 29.983025968289077, - "c5": 4.613102854599177, - "c6": 10.399137276456322, - "c7": 5.671807261950825 + "points": { + "c1": -24.315942697401397, + "c2": 35.13280772641483, + "c3": -32.11639318491746, + "c4": -38.61069943315923, + "c5": -41.35013758517596, + "c6": 37.56126563050717, + "c7": -38.82401687163021 }, - "vertexSeeds": { - "c1": 4.818038973165513, - "c2": 5.039591529485344, - "c3": 4.870946823462715, - "c4": 4.852473485811752, - "c5": 4.935658954943998, - "c6": 5.022311187863685, - "c7": 4.667868860516605 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [77, 76, 132] }, @@ -346281,23 +346281,23 @@ "year": 1799, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -11.510555552989274, - "c2": 31.324855155622167, - "c3": -22.27991873402308, - "c4": -17.761452478060715, - "c5": -0.8235726044041485, - "c6": 35.62078225306602, - "c7": 4.575471601507672 + "points": { + "c1": 30.007606322134258, + "c2": 26.71945514289674, + "c3": -13.15123126676172, + "c4": 24.54523572293592, + "c5": -33.06094556829134, + "c6": 5.787971789047653, + "c7": 16.114380190277217 }, - "vertexSeeds": { - "c1": 4.370240481891604, - "c2": 4.419384266025031, - "c3": 4.544227732840613, - "c4": 4.282538010344239, - "c5": 4.524022636832579, - "c6": 4.457517353425452, - "c7": 4.468459173938844 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.5742024965326, + "c3": 5.4785020804438265, + "c4": 4.382801664355067, + "c5": 3.287101248266293, + "c6": 2.1914008321775333, + "c7": 1.09570041608876 }, "rgb": [77, 76, 132] }, @@ -346308,23 +346308,23 @@ "year": 1798, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -24.348341218242183, - "c2": -7.482995355571973, - "c3": -17.216692252800723, - "c4": 11.783867865162001, - "c5": -11.450281807402867, - "c6": 11.092156049499067, - "c7": -29.576482634230704 + "points": { + "c1": 8.268403655760714, + "c2": -29.80415677376378, + "c3": -22.71415492356626, + "c4": 18.928000290607557, + "c5": -30.535459511047456, + "c6": 32.771894937312254, + "c7": 8.861377776926574 }, - "vertexSeeds": { - "c1": 1.9477554364074188, - "c2": 1.9013389998530732, - "c3": 1.9116893347274662, - "c4": 1.9984297265420277, - "c5": 1.9254585962318764, - "c6": 1.9932315425964684, - "c7": 1.9596371108230883 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.884882108183079, + "c3": 2.4040684234858998, + "c4": 1.9232547387887196, + "c5": 1.4424410540915396, + "c6": 0.9616273693943598, + "c7": 0.4808136846971799 }, "rgb": [58, 15, 49] }, @@ -346335,23 +346335,23 @@ "year": 1799, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 37.121584443107395, - "c2": -13.571112495866306, - "c3": 31.234414569591053, - "c4": 26.736815187331814, - "c5": 11.647951640347308, - "c6": -11.99772724937706, - "c7": 18.407234484096925 + "points": { + "c1": -24.835144052609706, + "c2": 18.417706155723003, + "c3": 28.55382377501911, + "c4": -10.219610552487268, + "c5": 14.06886734096873, + "c6": 23.120119932167235, + "c7": -9.632802937449704 }, - "vertexSeeds": { - "c1": 4.928811061889075, - "c2": 5.067327994073024, - "c3": 5.0407059696547645, - "c4": 4.930182466748084, - "c5": 5.067622516302072, - "c6": 5.00442220932842, - "c7": 4.983214272130648 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900149, + "c3": 6.264447526583445, + "c4": 5.011558021266767, + "c5": 3.7586685159500623, + "c6": 2.5057790106333835, + "c7": 1.2528895053166917 }, "rgb": [77, 76, 132] }, @@ -346362,23 +346362,23 @@ "year": 1798, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 11.798438999457193, - "c2": 21.89681381109126, - "c3": 22.305919033161697, - "c4": 2.3845714926516663, - "c5": -18.912047123347246, - "c6": 5.273642035202354, - "c7": 11.725541962701552 + "points": { + "c1": -13.961563061193498, + "c2": 14.100182612748466, + "c3": -11.40150893474507, + "c4": 9.700713826771814, + "c5": -8.864896919015482, + "c6": 24.73014465039861, + "c7": -9.315465177492872 }, - "vertexSeeds": { - "c1": 5.514253571297419, - "c2": 5.792945438549408, - "c3": 5.649160325958085, - "c4": 5.689790806392714, - "c5": 5.586655139391368, - "c6": 5.660958124637808, - "c7": 5.494205345481292 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187247, + "c3": 7.004160887656024, + "c4": 5.603328710124823, + "c5": 4.202496532593623, + "c6": 2.801664355062423, + "c7": 1.4008321775312003 }, "rgb": [222, 0, 59] }, @@ -346389,23 +346389,23 @@ "year": 1799, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 33.56064153748386, - "c2": 25.804545671736136, - "c3": -19.371416140381736, - "c4": 4.0273785268005255, - "c5": -4.967606308220603, - "c6": 9.760128410135586, - "c7": 5.781547379410689 + "points": { + "c1": 40.02340619601013, + "c2": -32.63891932857126, + "c3": 24.826453457608295, + "c4": 31.800395306311145, + "c5": 22.949189509785732, + "c6": -16.386179760541772, + "c7": 37.012489729842414 }, - "vertexSeeds": { - "c1": 7.3994997389387445, - "c2": 7.298207305489896, - "c3": 7.43084888328034, - "c4": 7.83832026033987, - "c5": 7.907319060922863, - "c6": 7.551935759059962, - "c7": 7.768963095177778 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490994, + "c3": 9.477577438742484, + "c4": 7.582061950993997, + "c5": 5.686546463245486, + "c6": 3.7910309754969984, + "c7": 1.8955154877484879 }, "rgb": [86, 146, 138] }, @@ -346416,23 +346416,23 @@ "year": 1798, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 21.773161825425625, - "c2": -1.3625804600027855, - "c3": 0.9597851008310023, - "c4": -24.732229688405656, - "c5": 8.61163687774522, - "c6": -2.7806419774988846, - "c7": -15.62256516920783 + "points": { + "c1": 24.32282120314217, + "c2": -6.4248219433426215, + "c3": 10.57316752034474, + "c4": -26.47721092585946, + "c5": 2.918174275684425, + "c6": -2.2819417013468133, + "c7": 6.188042569531376 }, - "vertexSeeds": { - "c1": 10.652025590669263, - "c2": 11.422914983008061, - "c3": 10.505782944846175, - "c4": 11.1813522283842, - "c5": 10.93274092818844, - "c6": 11.367258830667664, - "c7": 10.970154301404694 + "offsets": { + "c1": 19.093851132686083, + "c2": 16.36615811373094, + "c3": 13.638465094775755, + "c4": 10.910772075820612, + "c5": 8.18307905686547, + "c6": 5.455386037910328, + "c7": 2.7276930189551423 }, "rgb": [77, 76, 132] }, @@ -346443,23 +346443,23 @@ "year": 1798, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -5.376873276452457, - "c2": -19.68153373689252, - "c3": 14.196433754545033, - "c4": 13.29854655516398, - "c5": 30.108594424995204, - "c6": 31.98418003434695, - "c7": -32.1895135460131 + "points": { + "c1": 28.9983019272737, + "c2": -12.097029988540307, + "c3": 28.025016057485225, + "c4": 15.540002666530071, + "c5": -34.17916865673811, + "c6": -26.493012123586027, + "c7": 14.134986322994152 }, - "vertexSeeds": { - "c1": 6.124961044471997, - "c2": 6.3325501694721185, - "c3": 6.264895157085399, - "c4": 6.364942080635268, - "c5": 6.427784224955682, - "c6": 6.405138199391275, - "c7": 6.094193096969141 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474334, + "c3": 7.743874248728629, + "c4": 6.195099398982897, + "c5": 4.646324549237167, + "c6": 3.097549699491462, + "c7": 1.548774849745731 }, "rgb": [77, 76, 132] }, @@ -346470,23 +346470,23 @@ "year": 1799, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 2.7569610530106203, - "c2": -31.414405416673528, - "c3": -26.38589821714238, - "c4": -0.3419364269748826, - "c5": 1.0125897452781345, - "c6": -8.197417166889522, - "c7": -47.56082066220082 + "points": { + "c1": -43.477495806722736, + "c2": -37.86497619290979, + "c3": 33.325748559599305, + "c4": -39.9518184203298, + "c5": 49.214139049116795, + "c6": -49.147940057644085, + "c7": -43.42542478223693 }, - "vertexSeeds": { - "c1": 6.137349295832456, - "c2": 6.068966992897064, - "c3": 5.900961062934721, - "c4": 6.10954977781891, - "c5": 6.062088392408337, - "c6": 5.903242596058463, - "c7": 5.8669896522192575 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830799, + "c3": 7.374017568192322, + "c4": 5.899214054553867, + "c5": 4.424410540915389, + "c6": 2.9496070272769335, + "c7": 1.4748035136384556 }, "rgb": [58, 15, 49] }, @@ -346497,23 +346497,23 @@ "year": 1798, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 26.118500829652394, - "c2": 21.8285043790284, - "c3": 11.729940762939389, - "c4": 7.175451948955196, - "c5": -9.195812876101957, - "c6": -29.321754850206165, - "c7": 24.829223628626675 + "points": { + "c1": 21.65346119588348, + "c2": 25.83746601418366, + "c3": 0.7766210411561971, + "c4": -26.126275574578337, + "c5": 8.21065520307583, + "c6": -25.59033408262311, + "c7": -18.591081412033866 }, - "vertexSeeds": { - "c1": 6.842591466122737, - "c2": 7.25713971059073, - "c3": 6.855401959925225, - "c4": 7.011744838337053, - "c5": 7.2033911951645555, - "c6": 7.278977777646017, - "c7": 6.845396993593678 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.48543689320389, + "c3": 8.737864077669894, + "c4": 6.990291262135919, + "c5": 5.242718446601945, + "c6": 3.4951456310679485, + "c7": 1.7475728155339743 }, "rgb": [58, 15, 49] }, @@ -346524,23 +346524,23 @@ "year": 1798, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 10.596318471026954, - "c2": 5.297334260485435, - "c3": 16.974667393301424, - "c4": 30.650646163523334, - "c5": 9.352348859534331, - "c6": -19.09876768870854, - "c7": 29.67129658981306 + "points": { + "c1": 28.754434584469195, + "c2": 27.467522684863205, + "c3": -28.76480861688247, + "c4": 0.9882376802549828, + "c5": 28.408916820132745, + "c6": 5.3382756068970565, + "c7": 22.0289184175954 }, - "vertexSeeds": { - "c1": 2.3651796089480124, - "c2": 2.35782362952671, - "c3": 2.253034393460453, - "c4": 2.34983338002371, - "c5": 2.3195229170181655, - "c6": 2.2332226832564515, - "c7": 2.224639210076549 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779472926, + "c3": 2.843273231622747, + "c4": 2.274618585298195, + "c5": 1.7059639389736496, + "c6": 1.1373092926490975, + "c7": 0.5686546463245457 }, "rgb": [238, 201, 159] }, @@ -346551,23 +346551,23 @@ "year": 1798, "resistanceReported": false, "duration": 8121600, - "curveSeeds": { - "c1": -18.448543782078705, - "c2": 12.917137112356944, - "c3": 17.21639981018826, - "c4": 8.298342254062213, - "c5": 3.719208641819005, - "c6": 0.19765112994145895, - "c7": -11.44529829365623 + "points": { + "c1": 9.797327882374525, + "c2": 14.861831852864281, + "c3": 6.150810695945189, + "c4": -1.4019967879775983, + "c5": -6.190243606852757, + "c6": -2.419193748419012, + "c7": 14.39195564733853 }, - "vertexSeeds": { - "c1": 3.227488127394542, - "c2": 3.501784060663136, - "c3": 3.5213376151792417, - "c4": 3.4196522171128962, - "c5": 3.257469051579354, - "c6": 3.3249314283165545, - "c7": 3.483668740087451 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481273, + "c3": 4.299583911234397, + "c4": 3.439667128987515, + "c5": 2.579750346740633, + "c6": 1.7198335644937575, + "c7": 0.8599167822468751 }, "rgb": [58, 15, 49] }, @@ -346578,23 +346578,23 @@ "year": 1799, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -12.728577204178123, - "c2": -25.90959625215283, - "c3": 18.725659326491858, - "c4": -9.211890323550016, - "c5": -30.827262991599092, - "c6": 35.11437756820894, - "c7": -35.59731345933832 + "points": { + "c1": -28.95325571882625, + "c2": 2.8789765148468547, + "c3": -19.316801885424624, + "c4": 33.4222807311765, + "c5": -3.932662920429884, + "c6": 32.638481630455914, + "c7": 15.159157770893309 }, - "vertexSeeds": { - "c1": 12.063830695600252, - "c2": 12.057221218136606, - "c3": 12.046191493082954, - "c4": 11.899058133380809, - "c5": 11.84239420952379, - "c6": 11.838979828197303, - "c7": 11.993853052392204 + "offsets": { + "c1": 20.19417475728155, + "c2": 17.309292649098502, + "c3": 14.42441054091535, + "c4": 11.5395284327323, + "c5": 8.654646324549251, + "c6": 5.769764216366098, + "c7": 2.884882108183049 }, "rgb": [86, 146, 138] }, @@ -346605,23 +346605,23 @@ "year": 1798, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -20.796740300326405, - "c2": 28.924540769326313, - "c3": 17.272539133452263, - "c4": -7.400293803653479, - "c5": -32.08350213721662, - "c6": 7.700241814562723, - "c7": -12.749168902901868 + "points": { + "c1": -5.386948908170915, + "c2": 34.33457948392519, + "c3": 12.607242533247934, + "c4": 11.18872072224989, + "c5": 30.798983747886602, + "c6": -35.412131287554445, + "c7": -3.9160808768076834 }, - "vertexSeeds": { - "c1": 7.35688464504858, - "c2": 7.561422852072213, - "c3": 7.644772154355633, - "c4": 7.267960815118905, - "c5": 7.1270173300389565, - "c6": 7.230420853793079, - "c7": 7.4171362685283775 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927875, + "c3": 9.153952843273224, + "c4": 7.323162274618597, + "c5": 5.492371705963948, + "c6": 3.6615811373092986, + "c7": 1.8307905686546493 }, "rgb": [77, 76, 132] }, @@ -346632,23 +346632,23 @@ "year": 1798, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 5.41423636730277, - "c2": 22.0754355652328, - "c3": -2.619554156740822, - "c4": -14.818881118008434, - "c5": -21.201010077417056, - "c6": 3.6079925392534875, - "c7": -6.341304906905226 + "points": { + "c1": -3.163719573448411, + "c2": 1.4619872705802948, + "c3": 30.065484626771024, + "c4": 18.08422561410888, + "c5": 27.435601976519607, + "c6": -29.44399648817012, + "c7": 12.918587507001085 }, - "vertexSeeds": { - "c1": 3.077115826040936, - "c2": 2.87496729211255, - "c3": 2.516775747964803, - "c4": 2.577686906499706, - "c5": 3.0855536651056634, - "c6": 2.847486190533739, - "c7": 2.8205302109747845 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596394, + "c3": 3.791030975496995, + "c4": 3.0328247803975956, + "c5": 2.274618585298197, + "c6": 1.5164123901987978, + "c7": 0.7582061950993989 }, "rgb": [77, 76, 132] }, @@ -346659,23 +346659,23 @@ "year": 1798, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 30.81814302378391, - "c2": -30.653804325757065, - "c3": -27.694228919626994, - "c4": 22.045986160232488, - "c5": 29.222525723584695, - "c6": 27.374307774118975, - "c7": -5.59951196443491 + "points": { + "c1": -10.48779729097339, + "c2": 29.47885556708981, + "c3": -30.872096534307513, + "c4": -24.02582391578396, + "c5": -34.19930021901079, + "c6": 14.520608292716531, + "c7": 14.41253464795249 }, - "vertexSeeds": { - "c1": 6.974499008638038, - "c2": 6.753384635048487, - "c3": 6.862486581586998, - "c4": 7.064503145354725, - "c5": 6.905028263620687, - "c6": 6.910983827487447, - "c7": 7.29348520594373 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244111, + "c3": 8.760980120203412, + "c4": 7.008784096162734, + "c5": 5.256588072122056, + "c6": 3.504392048081356, + "c7": 1.752196024040678 }, "rgb": [222, 0, 59] }, @@ -346686,23 +346686,23 @@ "year": 1798, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 28.97692291895543, - "c2": 15.708543291035284, - "c3": -21.117285866070993, - "c4": 33.18769454029426, - "c5": 29.85991912123223, - "c6": -23.474935323247465, - "c7": -24.856560586842285 + "points": { + "c1": -21.611955377444787, + "c2": -24.287634418817802, + "c3": -28.79661802673243, + "c4": -17.814677845628474, + "c5": 17.42382363651995, + "c6": -34.56725283377321, + "c7": 7.612056174179429 }, - "vertexSeeds": { - "c1": 9.23221384909108, - "c2": 9.502882864757325, - "c3": 9.6153372083951, - "c4": 9.401845788595883, - "c5": 8.940814857449027, - "c6": 9.330830025968956, - "c7": 9.518855328018683 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.78640776699029, + "c3": 11.488673139158577, + "c4": 9.190938511326861, + "c5": 6.893203883495145, + "c6": 4.5954692556634305, + "c7": 2.2977346278317152 }, "rgb": [77, 76, 132] }, @@ -346713,23 +346713,23 @@ "year": 1799, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -25.50788971595378, - "c2": 15.681533639577054, - "c3": -18.18708894376248, - "c4": -15.064497687267497, - "c5": 30.11149241547824, - "c6": -11.140184933810872, - "c7": -10.855896089088308 + "points": { + "c1": 36.719097064783966, + "c2": 25.868948395204015, + "c3": 40.757805677011916, + "c4": 23.358562394777863, + "c5": -38.94090377264158, + "c6": -2.351510370675129, + "c7": 3.0695911773856324 }, - "vertexSeeds": { - "c1": 8.139930024161064, - "c2": 7.866748191001952, - "c3": 8.182414009004402, - "c4": 7.947086629802604, - "c5": 8.130962926590415, - "c6": 8.123435049190796, - "c7": 8.504276463540593 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657424, + "c3": 10.147942672214525, + "c4": 8.1183541377716, + "c5": 6.088765603328701, + "c6": 4.0591770688858, + "c7": 2.0295885344429 }, "rgb": [238, 201, 159] }, @@ -346740,23 +346740,23 @@ "year": 1799, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -13.314205197048008, - "c2": -36.54720871054321, - "c3": 13.273650791965387, - "c4": -5.478003479272026, - "c5": -31.166465545624327, - "c6": -15.859002875535626, - "c7": 10.98800432505621 + "points": { + "c1": -27.732834797610437, + "c2": 33.134038662475994, + "c3": -29.150999493256883, + "c4": -3.1720573381744046, + "c5": 6.51138996979391, + "c6": -24.347518078198018, + "c7": 24.57579549347846 }, - "vertexSeeds": { - "c1": 2.784179796878223, - "c2": 2.7291293307967206, - "c3": 2.7522661080168307, - "c4": 2.604437660477941, - "c5": 2.627378572425486, - "c6": 2.685926367723479, - "c7": 2.792194472021066 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832183, + "c3": 3.3518261673601457, + "c4": 2.6814609338881223, + "c5": 2.011095700416085, + "c6": 1.3407304669440612, + "c7": 0.6703652334720372 }, "rgb": [222, 0, 59] }, @@ -346767,23 +346767,23 @@ "year": 1799, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 8.138834831045529, - "c2": -30.73187895586954, - "c3": 20.830618015119427, - "c4": 24.393580416331332, - "c5": -2.5665519074305934, - "c6": 11.151335188342898, - "c7": -17.30166595841562 + "points": { + "c1": 30.08706344231649, + "c2": 26.072947739545526, + "c3": 2.402689790515602, + "c4": 20.059221751710332, + "c5": -15.783062545200288, + "c6": 8.974265305842913, + "c7": 27.353532941699214 }, - "vertexSeeds": { - "c1": 8.566826851993767, - "c2": 8.069432161213824, - "c3": 8.060417623185003, - "c4": 8.168112718560758, - "c5": 8.222161186760436, - "c6": 8.664600495988951, - "c7": 8.634713312440796 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059634, + "c3": 10.37910309754971, + "c4": 8.303282478039762, + "c5": 6.227461858529817, + "c6": 4.151641239019871, + "c7": 2.0758206195099462 }, "rgb": [77, 76, 132] }, @@ -346794,23 +346794,23 @@ "year": 1798, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -25.962694507258, - "c2": 18.933716568676033, - "c3": 19.411900874825022, - "c4": 23.42544877210141, - "c5": 17.62563437719414, - "c6": -19.034801790651642, - "c7": -0.8208614514355617 + "points": { + "c1": 7.178598155522941, + "c2": 3.703611735007243, + "c3": -28.0594129411406, + "c4": 2.056801030023678, + "c5": -27.82795981340953, + "c6": 13.829363693233603, + "c7": -20.355259695997105 }, - "vertexSeeds": { - "c1": 1.9420924973138316, - "c2": 1.8489624041087942, - "c3": 1.9663882608691428, - "c4": 1.9309177622842577, - "c5": 1.8673071278720141, - "c6": 1.9287583051853263, - "c7": 1.9697908845923133 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142857, + "c3": 2.380952380952381, + "c4": 1.9047619047619047, + "c5": 1.4285714285714286, + "c6": 0.9523809523809523, + "c7": 0.47619047619047616 }, "rgb": [58, 15, 49] }, @@ -346821,23 +346821,23 @@ "year": 1798, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -23.43032803736032, - "c2": -6.882109708859485, - "c3": 1.6073372652141344, - "c4": 24.39847869864917, - "c5": 15.21574792920201, - "c6": 21.95678287518347, - "c7": -4.3218183202058 + "points": { + "c1": -14.44491054609299, + "c2": -17.95745321242861, + "c3": -15.142293791692937, + "c4": -14.393558061228536, + "c5": -11.53302260710289, + "c6": -12.53373938211054, + "c7": 22.060223646135007 }, - "vertexSeeds": { - "c1": 2.5565244007649723, - "c2": 2.7120064711393552, - "c3": 2.569508768373353, - "c4": 2.585862095959469, - "c5": 2.565935940907658, - "c6": 2.643229622045826, - "c7": 2.5823534839740128 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712864, + "c3": 3.259361997226079, + "c4": 2.607489597780861, + "c5": 1.9556171983356432, + "c6": 1.3037447988904252, + "c7": 0.651872399445218 }, "rgb": [58, 15, 49] }, @@ -346848,23 +346848,23 @@ "year": 1799, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -24.278168740108242, - "c2": -22.09954875054641, - "c3": 6.332758588728133, - "c4": -30.347758728122418, - "c5": 2.5342867643378, - "c6": -34.672849639692025, - "c7": -0.3135596030624015 + "points": { + "c1": 31.234497104709305, + "c2": 7.274678060156113, + "c3": -22.211347927709127, + "c4": 6.119718353971251, + "c5": -14.991904608995576, + "c6": -7.292611767724832, + "c7": 5.044949661413632 }, - "vertexSeeds": { - "c1": 6.6039347706694445, - "c2": 6.78568289977186, - "c3": 6.6929829678362625, - "c4": 6.869453807922148, - "c5": 6.886729149015398, - "c6": 7.026495310614551, - "c7": 6.624548696993921 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761436, + "c3": 8.483587609801212, + "c4": 6.786870087840965, + "c5": 5.090152565880718, + "c6": 3.393435043920493, + "c7": 1.6967175219602466 }, "rgb": [58, 15, 49] }, @@ -346875,23 +346875,23 @@ "year": 1799, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -1.7630881030544288, - "c2": 9.401397388548816, - "c3": 29.026562011634496, - "c4": 6.4571435404625035, - "c5": -34.514102551423804, - "c6": 19.082035769703353, - "c7": -5.3868026242043605 + "points": { + "c1": -3.72947291978754, + "c2": 37.22106893518462, + "c3": 11.548094642938771, + "c4": -37.74194901319077, + "c5": 18.329229198439883, + "c6": -0.7560391337774135, + "c7": -6.050293462923321 }, - "vertexSeeds": { - "c1": 3.3350564709741333, - "c2": 4.156172523298501, - "c3": 3.3581013744747987, - "c4": 3.567957935709636, - "c5": 4.079552743278965, - "c6": 3.6246735755372623, - "c7": 3.7910487227230556 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687932, + "c3": 4.993065187239946, + "c4": 3.9944521497919547, + "c5": 2.995839112343968, + "c6": 1.9972260748959774, + "c7": 0.9986130374479866 }, "rgb": [58, 15, 49] }, @@ -346902,23 +346902,23 @@ "year": 1798, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 3.7957845126235767, - "c2": 21.257398518354975, - "c3": 10.288599258113095, - "c4": -17.185599325865482, - "c5": 13.031968221989025, - "c6": 6.7208461032925655, - "c7": 7.3261386051230275 + "points": { + "c1": 2.7516964769517784, + "c2": -16.92980971152019, + "c3": -28.71223553882819, + "c4": 23.27277015543958, + "c5": -23.93736091721214, + "c6": -12.457012954736818, + "c7": 26.653194846725675 }, - "vertexSeeds": { - "c1": 4.53030742213706, - "c2": 4.442989006851128, - "c3": 4.404008104044455, - "c4": 4.59426383370694, - "c5": 4.532178521310298, - "c6": 4.452313221398563, - "c7": 4.404262039754278 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653264, + "c3": 5.54785020804438, + "c4": 4.43828016643551, + "c5": 3.3287101248266255, + "c6": 2.219140083217755, + "c7": 1.1095700416088838 }, "rgb": [238, 201, 159] }, @@ -346929,23 +346929,23 @@ "year": 1798, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 15.75465800167354, - "c2": -19.026715646671015, - "c3": 13.62694673329586, - "c4": 8.0339417040609, - "c5": -14.946921093455346, - "c6": -19.618932327037523, - "c7": 14.017135998642573 + "points": { + "c1": -16.258233393847505, + "c2": 17.244728594108878, + "c3": 2.385931311385196, + "c4": -20.6026826407832, + "c5": -10.188235517666993, + "c6": 0.9703212087911339, + "c7": 23.899561210472058 }, - "vertexSeeds": { - "c1": 5.720582896715437, - "c2": 6.113012746021224, - "c3": 6.0446260396148475, - "c4": 5.736402965444062, - "c5": 5.797700858787923, - "c6": 5.897672332065431, - "c7": 6.103364568880866 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.07073509015257, + "c3": 7.558945908460482, + "c4": 6.047156726768375, + "c5": 4.535367545076285, + "c6": 3.0235783633841966, + "c7": 1.5117891816921074 }, "rgb": [58, 15, 49] }, @@ -346956,23 +346956,23 @@ "year": 1798, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -19.86081069482185, - "c2": 22.73677866776624, - "c3": -8.850192563657185, - "c4": -18.488193510034343, - "c5": -1.7953537479210233, - "c6": 15.569124005438685, - "c7": 22.489449117135894 + "points": { + "c1": 27.087160039233037, + "c2": 15.635150394559023, + "c3": -25.701427572753502, + "c4": 12.925879173327512, + "c5": -14.917711970828332, + "c6": 2.1529426660887836, + "c7": 4.7906882717507635 }, - "vertexSeeds": { - "c1": 4.3954663168485775, - "c2": 4.079616660980444, - "c3": 4.104293738359101, - "c4": 4.0882372856333635, - "c5": 4.251370540013841, - "c6": 4.3300865697619075, - "c7": 4.2992074631055415 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.3522884882108155, + "c3": 5.293573740175686, + "c4": 4.234858992140547, + "c5": 3.1761442441054077, + "c6": 2.117429496070268, + "c7": 1.0587147480351395 }, "rgb": [77, 76, 132] }, @@ -346983,23 +346983,23 @@ "year": 1799, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 26.847650301265425, - "c2": 4.5580965068143655, - "c3": 4.063006906118062, - "c4": 29.65705840525124, - "c5": -10.179866862983804, - "c6": 23.718505898019302, - "c7": -20.186135749211765 + "points": { + "c1": 12.456370508622534, + "c2": 19.9814182852735, + "c3": -4.706544522320662, + "c4": 21.430056511383988, + "c5": -10.285365608799175, + "c6": -1.5160410442153704, + "c7": -0.8942246725965362 }, - "vertexSeeds": { - "c1": 10.44287634802265, - "c2": 10.378834374779514, - "c3": 10.63523301295743, - "c4": 10.004668415707917, - "c5": 9.873946081245737, - "c6": 10.127565136474049, - "c7": 9.894694412920753 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081838, + "c3": 12.690707350901539, + "c4": 10.152565880721239, + "c5": 7.614424410540896, + "c6": 5.076282940360598, + "c7": 2.538141470180299 }, "rgb": [238, 201, 159] }, @@ -347010,23 +347010,23 @@ "year": 1798, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -25.876944675364136, - "c2": 21.097427105688503, - "c3": 26.8667489004229, - "c4": 7.174731144648511, - "c5": 12.175768371229644, - "c6": -4.6873247997805265, - "c7": -1.9896976642800404 + "points": { + "c1": -22.841024172742145, + "c2": 24.111107337103817, + "c3": -21.870799201896702, + "c4": -32.55801926755364, + "c5": -26.61464202172214, + "c6": 11.103873662056316, + "c7": 31.908106213688555 }, - "vertexSeeds": { - "c1": 6.473203099159677, - "c2": 6.6420706320296805, - "c3": 6.877109177873342, - "c4": 6.940939513631055, - "c5": 6.926714839426834, - "c6": 6.805459574483724, - "c7": 6.959767425152001 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.09708737864077, + "c3": 8.414239482200657, + "c4": 6.731391585760521, + "c5": 5.048543689320385, + "c6": 3.3656957928802496, + "c7": 1.6828478964401354 }, "rgb": [238, 201, 159] }, @@ -347037,23 +347037,23 @@ "year": 1799, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -3.0343996737336845, - "c2": 1.78788646214619, - "c3": -16.075415725535308, - "c4": 23.35424978720924, - "c5": -2.2664832419713363, - "c6": -7.806017426898123, - "c7": 26.9555815889006 + "points": { + "c1": 4.374673989389194, + "c2": -17.683476881885767, + "c3": -11.055359332943183, + "c4": 21.15767190451289, + "c5": 32.60278919911107, + "c6": -16.775891419087696, + "c7": 20.049403411457362 }, - "vertexSeeds": { - "c1": 4.771737242922915, - "c2": 4.368125655085122, - "c3": 5.298329522563752, - "c4": 5.158615737151214, - "c5": 5.135268836494276, - "c6": 4.414536740592939, - "c7": 4.8383292982824155 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101251, + "c3": 6.380027739251039, + "c4": 5.104022191400831, + "c5": 3.8280166435506215, + "c6": 2.5520110957004167, + "c7": 1.2760055478502084 }, "rgb": [222, 0, 59] }, @@ -347064,23 +347064,23 @@ "year": 1798, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 9.143103968473287, - "c2": -1.8848596194993803, - "c3": -24.82743458251445, - "c4": 20.984934454119045, - "c5": -19.47451404108942, - "c6": 4.013070594454238, - "c7": -8.549602698921053 + "points": { + "c1": 13.335750274749362, + "c2": -8.497002786155115, + "c3": -20.28361874029748, + "c4": 27.06815053389057, + "c5": -25.594172398961767, + "c6": -1.6114291621828833, + "c7": -19.6205147666621 }, - "vertexSeeds": { - "c1": 7.880271833663372, - "c2": 8.008841433005845, - "c3": 8.437310833908343, - "c4": 8.314325505803692, - "c5": 8.048503912169085, - "c6": 8.046568913814042, - "c7": 7.968005256301335 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617205, + "c3": 10.124826629680989, + "c4": 8.099861303744795, + "c5": 6.074895977808603, + "c6": 4.04993065187241, + "c7": 2.0249653259361926 }, "rgb": [86, 146, 138] }, @@ -347091,23 +347091,23 @@ "year": 1799, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -17.454571590922516, - "c2": -1.914519646873842, - "c3": 11.793030928570673, - "c4": 28.55939034243073, - "c5": -27.398873301360908, - "c6": -32.07737980227647, - "c7": 25.124460265755076 + "points": { + "c1": -25.206469203341086, + "c2": 28.424900928960852, + "c3": 34.932754990545305, + "c4": -14.182450989726906, + "c5": -22.448616984095423, + "c6": 5.29235527182864, + "c7": -24.707485627710497 }, - "vertexSeeds": { - "c1": 5.164787385802056, - "c2": 5.17344835812586, - "c3": 5.178265035710909, - "c4": 5.186785533912564, - "c5": 5.152131799089285, - "c6": 5.158184034120403, - "c7": 5.165469772777279 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779425, + "c3": 6.195099398982964, + "c4": 4.956079519186338, + "c5": 3.7170596393897126, + "c6": 2.478039759593087, + "c7": 1.2390198797966256 }, "rgb": [86, 146, 138] }, @@ -347118,23 +347118,23 @@ "year": 1799, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 15.914659796365626, - "c2": -5.848104785579981, - "c3": 6.829674536228531, - "c4": -18.50430034941591, - "c5": -28.113914449932906, - "c6": 27.947032424164846, - "c7": -24.569109917270772 + "points": { + "c1": 26.964666684827144, + "c2": -30.09872297008147, + "c3": -23.401669251119998, + "c4": -14.134249061848422, + "c5": -20.366182895524837, + "c6": 30.60885556639741, + "c7": 6.029862293728115 }, - "vertexSeeds": { - "c1": 3.355945162736039, - "c2": 3.3502454698956563, - "c3": 3.32759276401369, - "c4": 3.3422545606297307, - "c5": 3.347972010830444, - "c6": 3.327096819045657, - "c7": 3.354469291076163 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998635, + "c3": 4.022191400832143, + "c4": 3.2177531206657304, + "c5": 2.4133148404993174, + "c6": 1.6088765603329052, + "c7": 0.8044382801664125 }, "rgb": [222, 0, 59] }, @@ -347145,23 +347145,23 @@ "year": 1798, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 23.01091988728713, - "c2": 17.621783472941146, - "c3": -11.935186460853007, - "c4": -18.082688895968925, - "c5": -11.189033864477981, - "c6": -18.991531389868715, - "c7": -5.434286809772427 + "points": { + "c1": -13.16348453727677, + "c2": 21.756481726008623, + "c3": 11.620617965105673, + "c4": -8.600342987122065, + "c5": -7.944241648249964, + "c6": -6.22876345123079, + "c7": 21.894280008044106 }, - "vertexSeeds": { - "c1": 2.099683179264402, - "c2": 2.1384425881174938, - "c3": 2.1581827012676684, - "c4": 2.119431681051103, - "c5": 2.2304454418037296, - "c6": 2.2364833582790444, - "c7": 2.120463949143665 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705966, + "c3": 2.7045769764216336, + "c4": 2.1636615811373083, + "c5": 1.622746185852983, + "c6": 1.0818307905686508, + "c7": 0.5409153952843254 }, "rgb": [238, 201, 159] }, @@ -347172,23 +347172,23 @@ "year": 1799, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 14.856663969490022, - "c2": 15.28234782520341, - "c3": 26.3554776032384, - "c4": -11.866758322176626, - "c5": -23.62722067620276, - "c6": -25.202246119588466, - "c7": 3.157704209630083 + "points": { + "c1": -33.68872860753676, + "c2": -3.811564403523512, + "c3": 34.63883822604738, + "c4": 11.821801696602172, + "c5": 36.89360597976331, + "c6": 7.015540032168012, + "c7": -28.640018098497258 }, - "vertexSeeds": { - "c1": 5.615480004083965, - "c2": 5.838693909230731, - "c3": 5.769583021821889, - "c4": 5.565591612335018, - "c5": 5.800819040815749, - "c6": 5.538495751135642, - "c7": 5.632957906806685 + "offsets": { + "c1": 10, + "c2": 8.57142857142857, + "c3": 7.142857142857136, + "c4": 5.714285714285705, + "c5": 4.285714285714273, + "c6": 2.857142857142864, + "c7": 1.428571428571432 }, "rgb": [86, 146, 138] }, @@ -347199,23 +347199,23 @@ "year": 1798, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 31.036761793460716, - "c2": -1.4323113135148802, - "c3": -1.4269952883629315, - "c4": 8.144536681340814, - "c5": -5.3151720002390626, - "c6": 0.25370431895636614, - "c7": 12.792044782349844 + "points": { + "c1": -24.940515397983305, + "c2": -14.815224299335284, + "c3": 14.604750211236343, + "c4": -8.331988038867856, + "c5": -32.63342172490597, + "c6": -9.997472421822636, + "c7": -17.383247544401385 }, - "vertexSeeds": { - "c1": 4.866449549153148, - "c2": 4.937568859271678, - "c3": 5.16709162018765, - "c4": 4.830572611483809, - "c5": 5.123749064516341, - "c6": 4.991752078716862, - "c7": 5.092467608541662 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779469, + "c3": 6.195099398982886, + "c4": 4.956079519186304, + "c5": 3.7170596393897473, + "c6": 2.478039759593152, + "c7": 1.2390198797965826 }, "rgb": [77, 76, 132] }, @@ -347226,23 +347226,23 @@ "year": 1799, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 30.986233578218375, - "c2": 0.6322624195245012, - "c3": -31.67178275201026, - "c4": 5.020183531855132, - "c5": -28.14031479525063, - "c6": -9.422952604332774, - "c7": 10.358155836866565 + "points": { + "c1": 27.663967567071495, + "c2": 10.748206328292575, + "c3": -0.4387591266603508, + "c4": 1.7404794267289105, + "c5": -7.008010315742396, + "c6": -26.529495812456172, + "c7": 9.38474594826549 }, - "vertexSeeds": { - "c1": 6.42570996842386, - "c2": 6.269849653259455, - "c3": 6.523054881001974, - "c4": 6.594801303842149, - "c5": 6.620975464330668, - "c6": 6.295132970200737, - "c7": 6.527675265295377 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796109, + "c3": 7.928802588996767, + "c4": 6.343042071197405, + "c5": 4.757281553398065, + "c6": 3.1715210355987025, + "c7": 1.5857605177993623 }, "rgb": [58, 15, 49] }, @@ -347253,23 +347253,23 @@ "year": 1799, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": -32.12274032719911, - "c2": -36.070156977931845, - "c3": 29.206507436674492, - "c4": 7.7178947194343195, - "c5": -22.07340628833728, - "c6": 24.549031337640322, - "c7": -26.403795665605244 + "points": { + "c1": 27.775651564430056, + "c2": -11.538142869553447, + "c3": -35.559658852512115, + "c4": 25.9472632786565, + "c5": 33.20414155725164, + "c6": 15.321613062298034, + "c7": 42.08125458752935 }, - "vertexSeeds": { - "c1": 2.2715844061980435, - "c2": 2.143008844493758, - "c3": 2.2480224769318298, - "c4": 2.2342135892804995, - "c5": 2.204336600228702, - "c6": 2.1667259978999263, - "c7": 2.2015346495868804 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.30097087378641, + "c3": 2.7508090614886704, + "c4": 2.2006472491909377, + "c5": 1.650485436893205, + "c6": 1.1003236245954722, + "c7": 0.5501618122977328 }, "rgb": [222, 0, 59] }, @@ -347280,23 +347280,23 @@ "year": 1798, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 24.854011366165018, - "c2": -2.0251725622086063, - "c3": -17.357331267072972, - "c4": -26.969903015350198, - "c5": 21.698208559325508, - "c6": -21.15066323035837, - "c7": 29.55800736619073 + "points": { + "c1": 31.457146412628987, + "c2": 27.380196857532134, + "c3": -26.669662061901697, + "c4": 27.73708843912482, + "c5": 11.79880835132964, + "c6": -30.451241222171703, + "c7": 25.811440240643527 }, - "vertexSeeds": { - "c1": 7.350270326021612, - "c2": 7.30087635406794, - "c3": 7.432097773060599, - "c4": 7.193255942291268, - "c5": 7.375923335113903, - "c6": 7.420655978251819, - "c7": 7.372122263487299 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807207, + "c3": 9.084604715672668, + "c4": 7.267683772538132, + "c5": 5.450762829403593, + "c6": 3.6338418862690767, + "c7": 1.8169209431345383 }, "rgb": [58, 15, 49] }, @@ -347307,23 +347307,23 @@ "year": 1799, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -2.8068124743730074, - "c2": 23.64176165062951, - "c3": -14.415117303064498, - "c4": -24.521410688439335, - "c5": -14.73840943302396, - "c6": 19.02157026522966, - "c7": 0.8284374261841378 + "points": { + "c1": -12.633595511723769, + "c2": -3.3993667575677122, + "c3": 21.869452442734527, + "c4": 23.708760314257304, + "c5": 27.710349334394273, + "c6": -12.725465806946382, + "c7": 30.948218288819902 }, - "vertexSeeds": { - "c1": 6.837135473965394, - "c2": 6.59698461527488, - "c3": 6.799067513005446, - "c4": 6.9381715179531795, - "c5": 6.581888824796044, - "c6": 6.766438437093957, - "c7": 6.479893016386095 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520115, + "c3": 8.3448913546001, + "c4": 6.675913083680085, + "c5": 5.006934812760068, + "c6": 3.337956541840031, + "c7": 1.6689782709200156 }, "rgb": [222, 0, 59] }, @@ -347334,23 +347334,23 @@ "year": 1798, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 19.072641398180256, - "c2": -24.99798406089592, - "c3": -15.044096069255508, - "c4": 18.862896586641273, - "c5": 2.844599881082072, - "c6": -24.28037076326344, - "c7": 28.62702291492077 + "points": { + "c1": 30.07956916023001, + "c2": -24.7950024857468, + "c3": -8.465523391364151, + "c4": -7.1262482520630925, + "c5": -25.1127859288462, + "c6": 8.13331827264469, + "c7": 12.526635668937242 }, - "vertexSeeds": { - "c1": 8.530184862829318, - "c2": 8.817905795907583, - "c3": 8.754009230181964, - "c4": 8.944942808981574, - "c5": 8.836141019044913, - "c6": 8.482080778515325, - "c7": 9.098416214704457 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984741, + "c3": 10.910772075820613, + "c4": 8.728617660656486, + "c5": 6.54646324549238, + "c6": 4.3643088303282545, + "c7": 2.1821544151641272 }, "rgb": [58, 15, 49] }, @@ -347361,23 +347361,23 @@ "year": 1799, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -30.200914510234963, - "c2": 8.03789158635113, - "c3": 6.662360135417046, - "c4": 7.526487864798682, - "c5": 22.00229477860067, - "c6": -7.552614946338675, - "c7": -30.059501056067347 + "points": { + "c1": 7.752548785196211, + "c2": -24.34991030282587, + "c3": -20.125474103646425, + "c4": -21.313553952729507, + "c5": -3.283175129818705, + "c6": -24.462045311128094, + "c7": 5.893603492502699 }, - "vertexSeeds": { - "c1": 6.071289679666376, - "c2": 6.246299090021556, - "c3": 6.260584106695333, - "c4": 5.86297608701489, - "c5": 6.03696425827776, - "c6": 5.854881732922764, - "c7": 5.810079874862313 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112354, + "c3": 7.535829865926949, + "c4": 6.028663892741569, + "c5": 4.5214979195561655, + "c6": 3.0143319463707847, + "c7": 1.5071659731854035 }, "rgb": [58, 15, 49] }, @@ -347388,23 +347388,23 @@ "year": 1798, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -1.1490966106035003, - "c2": -0.2179015391155552, - "c3": -8.682594366567336, - "c4": 14.88872840791015, - "c5": 5.908027055525508, - "c6": 7.630592892037406, - "c7": -26.187824449741083 + "points": { + "c1": -3.662599642985924, + "c2": -5.611794360371263, + "c3": -23.90028261748841, + "c4": 11.085467566042567, + "c5": -25.21040072941775, + "c6": 18.59448555918211, + "c7": 12.383404336186338 }, - "vertexSeeds": { - "c1": 6.587834601533866, - "c2": 6.807061934985233, - "c3": 6.567931868067507, - "c4": 6.649237211217727, - "c5": 6.602322218440065, - "c6": 6.608325482369385, - "c7": 6.556955241922688 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.20804438280166, + "c3": 8.50670365233473, + "c4": 6.80536292186778, + "c5": 5.10402219140083, + "c6": 3.4026814609339007, + "c7": 1.7013407304669503 }, "rgb": [222, 0, 59] }, @@ -347415,23 +347415,23 @@ "year": 1798, "resistanceReported": true, "duration": 14774400, - "curveSeeds": { - "c1": 10.974481558170226, - "c2": 5.139602910970204, - "c3": 17.10640435430407, - "c4": -20.23597430070692, - "c5": -0.9123599540994647, - "c6": -5.0844924259519715, - "c7": -5.185850949749778 + "points": { + "c1": 27.910997475374856, + "c2": -6.232913201588847, + "c3": 13.474176866661608, + "c4": 1.3579062940788091, + "c5": -8.979363694846448, + "c6": 11.199946095656678, + "c7": 10.693322476087985 }, - "vertexSeeds": { - "c1": 7.43400899241154, - "c2": 7.858067043205809, - "c3": 7.433495798184164, - "c4": 7.678195501639196, - "c5": 7.898437447064981, - "c6": 7.6360550249999966, - "c7": 7.983487769488978 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611649, + "c3": 9.546925566343042, + "c4": 7.637540453074433, + "c5": 5.7281553398058245, + "c6": 3.8187702265372163, + "c7": 1.9093851132686082 }, "rgb": [238, 201, 159] }, @@ -347442,23 +347442,23 @@ "year": 1798, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 13.758653618228877, - "c2": 19.22036054179388, - "c3": -9.99616763461942, - "c4": 15.923586866393372, - "c5": 10.33994129467083, - "c6": -13.75702888523387, - "c7": 19.51630728637759 + "points": { + "c1": 5.141915810007319, + "c2": 20.56727599360125, + "c3": 12.776101401995227, + "c4": -5.328599578514567, + "c5": -21.210946759184537, + "c6": -2.1786131599627225, + "c7": 5.143900974221776 }, - "vertexSeeds": { - "c1": 8.326151510572801, - "c2": 8.574105570829689, - "c3": 8.402001284696158, - "c4": 8.757939533591365, - "c5": 8.553405029429133, - "c6": 8.697344417868633, - "c7": 8.515235054881899 + "offsets": { + "c1": 14.627831715210357, + "c2": 12.538141470180301, + "c3": 10.448451225150265, + "c4": 8.358760980120207, + "c5": 6.269070735090151, + "c6": 4.179380490060093, + "c7": 2.0896902450300576 }, "rgb": [77, 76, 132] }, @@ -347469,23 +347469,23 @@ "year": 1798, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -21.544683166179126, - "c2": -16.361252190910086, - "c3": 5.923707549540794, - "c4": 13.898498596797996, - "c5": 17.363365096917928, - "c6": -16.72248879454025, - "c7": -16.306082375292867 + "points": { + "c1": 18.150656643310388, + "c2": -17.69207386972482, + "c3": -11.89300315485738, + "c4": -11.634691515290667, + "c5": 18.45558336491671, + "c6": 7.552860606730125, + "c7": -5.291660567993031 }, - "vertexSeeds": { - "c1": 7.6679972558528195, - "c2": 7.658410225671513, - "c3": 7.599218254899039, - "c4": 7.469059425319003, - "c5": 7.434564868364111, - "c6": 7.780603688766391, - "c7": 7.388217143782131 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289884, + "c3": 9.361997226074893, + "c4": 7.489597780859924, + "c5": 5.6171983356449315, + "c6": 3.744798890429962, + "c7": 1.872399445214992 }, "rgb": [86, 146, 138] }, @@ -347496,23 +347496,23 @@ "year": 1799, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -11.16394325976388, - "c2": -26.87744747770696, - "c3": -21.558345098363127, - "c4": 29.991258987012195, - "c5": 3.345974379068089, - "c6": 5.226341662518045, - "c7": -12.467618467925256 + "points": { + "c1": -20.209775894592774, + "c2": -21.078085111910685, + "c3": 34.61702482862243, + "c4": -27.50953160204864, + "c5": 15.851704529112347, + "c6": -19.624029525267424, + "c7": -19.283210408957224 }, - "vertexSeeds": { - "c1": 6.079479513148444, - "c2": 5.753416373033511, - "c3": 5.716226797928346, - "c4": 5.622542475764096, - "c5": 5.706752929834378, - "c6": 5.8190790599789, - "c7": 5.728410115088809 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750357, + "c3": 7.327785483125286, + "c4": 5.862228386500238, + "c5": 4.396671289875168, + "c6": 2.931114193250119, + "c7": 1.4655570966250486 }, "rgb": [238, 201, 159] }, @@ -347523,23 +347523,23 @@ "year": 1798, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 8.710798258546085, - "c2": -9.777106375709105, - "c3": 21.498360047839846, - "c4": -15.232780798442354, - "c5": -19.186450882973624, - "c6": -10.084320484130338, - "c7": -6.7808834152632045 + "points": { + "c1": -11.897564998691548, + "c2": -22.412363392950056, + "c3": 0.5266319182240728, + "c4": -19.50764763110561, + "c5": 19.836552364021337, + "c6": 11.689387529581666, + "c7": 20.14770133769337 }, - "vertexSeeds": { - "c1": 6.743944784593974, - "c2": 6.729879643861307, - "c3": 6.8266246759613365, - "c4": 6.951243116250829, - "c5": 6.555567269729219, - "c6": 6.617091429044244, - "c7": 6.558384412512172 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -347550,23 +347550,23 @@ "year": 1798, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -4.775126972269103, - "c2": 3.045066713357592, - "c3": -14.93117220560033, - "c4": 3.5175987254810366, - "c5": 14.84364827762094, - "c6": -7.586904479388544, - "c7": -26.653895468248717 + "points": { + "c1": -15.758550568080905, + "c2": -2.9230697430283037, + "c3": -13.234585283383497, + "c4": 0.016648784462692134, + "c5": 19.98420739056552, + "c6": 14.137734161504586, + "c7": -0.3000299302232712 }, - "vertexSeeds": { - "c1": 7.012024532025501, - "c2": 6.744121627747645, - "c3": 7.175803538123418, - "c4": 6.798836036739953, - "c5": 6.8751788712995445, - "c6": 7.008740370451042, - "c7": 7.161396822040431 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244111, + "c3": 8.760980120203412, + "c4": 7.008784096162734, + "c5": 5.256588072122056, + "c6": 3.504392048081356, + "c7": 1.752196024040678 }, "rgb": [58, 15, 49] }, @@ -347577,23 +347577,23 @@ "year": 1798, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -10.522146895971304, - "c2": -20.822947401935625, - "c3": 10.055689304215221, - "c4": 20.425106202000492, - "c5": 22.922393862611898, - "c6": 18.508519369963842, - "c7": 2.4044218864095477 + "points": { + "c1": -4.5918165239337405, + "c2": 10.242371135506396, + "c3": -22.88220839305439, + "c4": 2.756368465637319, + "c5": 14.345797011159434, + "c6": -4.162907447337599, + "c7": 8.530055957895499 }, - "vertexSeeds": { - "c1": 7.050044456670393, - "c2": 6.833968542559472, - "c3": 6.698429400331647, - "c4": 7.2169409802137094, - "c5": 6.730406603288844, - "c6": 6.924825777280026, - "c7": 6.804642918700193 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163668, + "c3": 8.714748035136376, + "c4": 6.971798428109104, + "c5": 5.228848821081834, + "c6": 3.485899214054563, + "c7": 1.7429496070272708 }, "rgb": [77, 76, 132] }, @@ -347604,23 +347604,23 @@ "year": 1798, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -16.559266130801486, - "c2": -3.588637854624455, - "c3": -23.270968443528034, - "c4": -18.839977871052653, - "c5": 8.109595788664105, - "c6": 23.20120646903879, - "c7": 18.84794480700152 + "points": { + "c1": 25.593622348724384, + "c2": 5.619632020524929, + "c3": -5.260615072124608, + "c4": -2.1825984948711366, + "c5": -25.428234987966192, + "c6": -1.7055763593990285, + "c7": 22.615476834149245 }, - "vertexSeeds": { - "c1": 8.248773002378497, - "c2": 7.794127835741209, - "c3": 7.984523342419144, - "c4": 7.809519112569025, - "c5": 8.146321361082876, - "c6": 8.270320588246648, - "c7": 8.034548940406387 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295414, + "c3": 9.939898289412856, + "c4": 7.951918631530275, + "c5": 5.963938973647719, + "c6": 3.9759593157651376, + "c7": 1.9879796578825801 }, "rgb": [77, 76, 132] }, @@ -347631,23 +347631,23 @@ "year": 1799, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 35.86719156437413, - "c2": 44.436448627836604, - "c3": 40.51323658556233, - "c4": -10.793373447700226, - "c5": -37.85243265258765, - "c6": -36.11180214181809, - "c7": -0.6886245416919152 + "points": { + "c1": 36.02939647683748, + "c2": 15.597531536805299, + "c3": 42.897419498321504, + "c4": 42.986232854747975, + "c5": -12.555961075367932, + "c6": 12.98678335573495, + "c7": -33.235620149510524 }, - "vertexSeeds": { - "c1": 4.755611989776819, - "c2": 4.820980635354612, - "c3": 4.778293883123234, - "c4": 4.864361555713536, - "c5": 4.746256973316652, - "c6": 4.755232577527553, - "c7": 4.887445749220932 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [222, 0, 59] }, @@ -347658,23 +347658,23 @@ "year": 1798, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 9.618103885334016, - "c2": -24.287660902339294, - "c3": 16.209134811737677, - "c4": -14.95907708970079, - "c5": 18.473133227964546, - "c6": -19.80192473276371, - "c7": -24.541477452574213 + "points": { + "c1": 4.450938163587644, + "c2": 17.441204955585462, + "c3": -14.24930383527825, + "c4": 22.689290774527343, + "c5": 9.060550323183918, + "c6": -20.624334899325444, + "c7": 5.586417579190126 }, - "vertexSeeds": { - "c1": 12.83886103854335, - "c2": 13.246542400149439, - "c3": 12.599755323137753, - "c4": 12.25340833041208, - "c5": 12.466706449142228, - "c6": 12.24618766821028, - "c7": 13.178576209432634 + "offsets": { + "c1": 22.135922330097088, + "c2": 18.973647711511802, + "c3": 15.811373092926472, + "c4": 12.649098474341187, + "c5": 9.486823855755901, + "c6": 6.324549237170616, + "c7": 3.1622746185852857 }, "rgb": [77, 76, 132] }, @@ -347685,23 +347685,23 @@ "year": 1799, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -17.209100872011696, - "c2": 23.61218850588253, - "c3": 25.945840188720666, - "c4": 10.221979325565627, - "c5": -6.3176294354034574, - "c6": 1.4665384895467994, - "c7": 25.06653009363606 + "points": { + "c1": -5.4880385748099165, + "c2": -27.663729629735705, + "c3": 4.873747794120071, + "c4": 21.974004039688445, + "c5": -1.4768095805354768, + "c6": 28.50565114498488, + "c7": 26.741021911108817 }, - "vertexSeeds": { - "c1": 6.206410554766415, - "c2": 6.160163488556625, - "c3": 6.0406007007503515, - "c4": 6.342032605476431, - "c5": 6.089854455458021, - "c6": 6.109323597541347, - "c7": 6.192793451861053 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [222, 0, 59] }, @@ -347712,23 +347712,23 @@ "year": 1799, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -40.37873839455694, - "c2": -22.92570878726186, - "c3": 18.897952297864144, - "c4": -1.2056536801165265, - "c5": -24.92464688248011, - "c6": -16.48552903560137, - "c7": 35.079565204807196 + "points": { + "c1": 15.054768212093691, + "c2": -29.358206356972143, + "c3": 33.46147161233252, + "c4": 35.75887142812344, + "c5": -3.34563270502251, + "c6": -10.504186785930386, + "c7": 11.801091991753324 }, - "vertexSeeds": { - "c1": 6.536523146546023, - "c2": 6.905777816346005, - "c3": 6.4475230099494345, - "c4": 6.616032173077554, - "c5": 6.695400930358348, - "c6": 6.932779656503313, - "c7": 6.375477647553574 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -347739,23 +347739,23 @@ "year": 1799, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 15.54425411398541, - "c2": 22.685588873510483, - "c3": -23.61596514975533, - "c4": -27.2704755313356, - "c5": 5.622046309065276, - "c6": -2.8913208921457354, - "c7": -6.665859802655934 + "points": { + "c1": 12.969104280831736, + "c2": -23.607894012843474, + "c3": -16.11318868221377, + "c4": 25.345016687604442, + "c5": 24.928357012711828, + "c6": -11.973674870157478, + "c7": -19.77240664315651 }, - "vertexSeeds": { - "c1": 5.173351552947878, - "c2": 5.29415124134174, - "c3": 5.093519288441449, - "c4": 5.371511362879942, - "c5": 5.273198148652516, - "c6": 5.547466612669753, - "c7": 5.216589966763764 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543683, + "c3": 6.634304207119751, + "c4": 5.3074433656957964, + "c5": 3.9805825242718416, + "c6": 2.6537216828479093, + "c7": 1.3268608414239547 }, "rgb": [58, 15, 49] }, @@ -347766,23 +347766,23 @@ "year": 1798, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": 22.10964159667804, - "c2": 22.13038301460127, - "c3": -12.417748453073138, - "c4": -15.87485628559755, - "c5": -21.04052027016035, - "c6": -5.073142255801304, - "c7": -14.709321815145353 + "points": { + "c1": 8.725953041388927, + "c2": 25.663299288408368, + "c3": 17.48548425377676, + "c4": 14.81046868536535, + "c5": -14.543497605786913, + "c6": 23.098086667478633, + "c7": 1.3117009493404623 }, - "vertexSeeds": { - "c1": 9.681484223557932, - "c2": 9.338248290000086, - "c3": 9.694040132399323, - "c4": 9.171803605450359, - "c5": 9.67074062807754, - "c6": 9.505657299983014, - "c7": 9.178569657179898 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.925104022191402, + "c3": 11.60425335182617, + "c4": 9.283402681460935, + "c5": 6.962552011095701, + "c6": 4.641701340730467, + "c7": 2.3208506703652336 }, "rgb": [238, 201, 159] }, @@ -347793,23 +347793,23 @@ "year": 1799, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -13.877140509863175, - "c2": 20.170115890381915, - "c3": 11.415285156199829, - "c4": -25.37947987337592, - "c5": 10.692690815446888, - "c6": 24.717560515734576, - "c7": -12.520614233252047 + "points": { + "c1": -16.239561030192796, + "c2": 29.07558662035639, + "c3": 38.09773601841415, + "c4": 22.582584131108838, + "c5": -38.497409729396196, + "c6": -19.789704266464284, + "c7": -2.6149630950276617 }, - "vertexSeeds": { - "c1": 5.894493849387036, - "c2": 6.092617185454735, - "c3": 6.231512714288978, - "c4": 6.368601766512681, - "c5": 6.0740895891272775, - "c6": 6.3065787462886265, - "c7": 5.916190184649167 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [86, 146, 138] }, @@ -347820,23 +347820,23 @@ "year": 1798, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 21.46309274943657, - "c2": 8.614736785516477, - "c3": 17.27000586037329, - "c4": 9.017186145097817, - "c5": 8.124177676434094, - "c6": -17.92641013879035, - "c7": -15.586040356348578 + "points": { + "c1": -12.234937578710872, + "c2": -13.273437390998602, + "c3": 18.94249524338524, + "c4": 3.301987755358816, + "c5": -23.99015935270713, + "c6": -12.197369110860134, + "c7": 9.26825768147426 }, - "vertexSeeds": { - "c1": 6.152706604604153, - "c2": 6.162771074467668, - "c3": 6.196721671640206, - "c4": 6.152015292842729, - "c5": 6.165372158533486, - "c6": 6.153890787508952, - "c7": 6.188179509111674 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332870959, + "c3": 7.397133610725929, + "c4": 5.917706888580704, + "c5": 4.438280166435479, + "c6": 2.958853444290254, + "c7": 1.4794267221452249 }, "rgb": [222, 0, 59] }, @@ -347847,23 +347847,23 @@ "year": 1799, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 10.350180856292106, - "c2": -1.6700822127782047, - "c3": -12.912958303000135, - "c4": 20.13704546154203, - "c5": -6.537074690522434, - "c6": 3.9411321349615562, - "c7": 29.066144618660914 + "points": { + "c1": 32.26115123974037, + "c2": -23.93753380380628, + "c3": 18.24396821511219, + "c4": 6.533417061514719, + "c5": -19.586410045064127, + "c6": 27.695356970074258, + "c7": 30.039327731882274 }, - "vertexSeeds": { - "c1": 0.6810202365633928, - "c2": 0.7348629933830947, - "c3": 0.6977656573604151, - "c4": 0.6843233610648904, - "c5": 0.6908990775695163, - "c6": 0.7210533012066074, - "c7": 0.7149441571491614 + "offsets": { + "c1": 1.262135922330097, + "c2": 1.0818307905686537, + "c3": 0.9015256588072125, + "c4": 0.7212205270457691, + "c5": 0.540915395284328, + "c6": 0.36061026352288456, + "c7": 0.18030513176144114 }, "rgb": [238, 201, 159] }, @@ -347874,23 +347874,23 @@ "year": 1799, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 31.605911766583432, - "c2": 23.913704027299644, - "c3": 35.14002566985445, - "c4": -35.93568219785989, - "c5": -39.88548735371473, - "c6": 15.960436609539258, - "c7": -34.00284958096073 + "points": { + "c1": 26.608671884110365, + "c2": 39.864593117042446, + "c3": -31.243601718035983, + "c4": -24.072375932231274, + "c5": 6.721504884990104, + "c6": -25.43600454856684, + "c7": -32.13107142400314 }, - "vertexSeeds": { - "c1": 5.179682435848391, - "c2": 5.129181547036389, - "c3": 5.162397277646825, - "c4": 5.219647115332853, - "c5": 5.091053712676606, - "c6": 5.218502570496417, - "c7": 5.091649736185503 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859916, + "c3": 6.2413314840499305, + "c4": 4.993065187239944, + "c5": 3.744798890429958, + "c6": 2.496532593619972, + "c7": 1.248266296809986 }, "rgb": [86, 146, 138] }, @@ -347901,23 +347901,23 @@ "year": 1799, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 0.500564848875861, - "c2": 19.176001594279445, - "c3": 13.864838132121083, - "c4": 4.249520978859362, - "c5": -13.56043176185764, - "c6": -28.213076273449897, - "c7": -14.00180913121624 + "points": { + "c1": 30.81292617799892, + "c2": -21.377507784263944, + "c3": -22.024261091319357, + "c4": 11.245010474179072, + "c5": -30.956614367334662, + "c6": 16.30494224316286, + "c7": -5.888649599307037 }, - "vertexSeeds": { - "c1": 7.193310374697801, - "c2": 7.13596699023997, - "c3": 7.07655877173004, - "c4": 6.879799560142747, - "c5": 7.041328368203142, - "c6": 7.105002120064203, - "c7": 6.7975359266699344 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042991, + "c3": 8.645399907535817, + "c4": 6.916319926028668, + "c5": 5.187239944521496, + "c6": 3.4581599630143227, + "c7": 1.7290799815071722 }, "rgb": [58, 15, 49] }, @@ -347928,23 +347928,23 @@ "year": 1799, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -2.0426197231024474, - "c2": -34.63232460999368, - "c3": -16.461236179734207, - "c4": -19.453660186646424, - "c5": 19.169239827640475, - "c6": 3.155224068194485, - "c7": 11.194920939145767 + "points": { + "c1": -27.88108498333418, + "c2": -0.6085583344360188, + "c3": 13.249375994599589, + "c4": -25.3419759963935, + "c5": -41.5046659923503, + "c6": 26.474454917245993, + "c7": -20.606219020035383 }, - "vertexSeeds": { - "c1": 6.138262666992703, - "c2": 5.828554019704292, - "c3": 5.765562730275926, - "c4": 5.933609752204637, - "c5": 5.718674763970866, - "c6": 6.098606811282284, - "c7": 6.066892558453826 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750357, + "c3": 7.327785483125286, + "c4": 5.862228386500238, + "c5": 4.396671289875168, + "c6": 2.931114193250119, + "c7": 1.4655570966250486 }, "rgb": [238, 201, 159] }, @@ -347955,23 +347955,23 @@ "year": 1799, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -31.69667512307351, - "c2": 15.367969358290004, - "c3": 30.016522821078325, - "c4": 25.238775132796675, - "c5": 2.1732782302839198, - "c6": -9.865550967678285, - "c7": 10.03238026745774 + "points": { + "c1": -40.63703390507164, + "c2": -37.719135329114785, + "c3": -19.6383909149746, + "c4": 37.177221396740336, + "c5": -32.69766892594412, + "c6": -3.1816762584953224, + "c7": -24.559800311041066 }, - "vertexSeeds": { - "c1": 8.068193746231993, - "c2": 8.213154800715461, - "c3": 7.760405132096824, - "c4": 8.416890609451311, - "c5": 8.224507850905923, - "c6": 7.927211686878724, - "c7": 8.143901438731296 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147487, + "c4": 8.081368469717994, + "c5": 6.061026352288501, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [238, 201, 159] }, @@ -347982,23 +347982,23 @@ "year": 1799, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 35.06306006351862, - "c2": -14.091056689956144, - "c3": 30.775816562303675, - "c4": -35.958395018445344, - "c5": 27.399747167678257, - "c6": 10.497893229771769, - "c7": -16.248337826663473 + "points": { + "c1": -31.470413599788763, + "c2": 19.729893497391075, + "c3": -1.164605575594777, + "c4": 29.25255675431309, + "c5": 17.017815711277002, + "c6": 35.81333773960594, + "c7": 43.319570433579784 }, - "vertexSeeds": { - "c1": 2.8655043900167687, - "c2": 3.0143766318281364, - "c3": 2.7835425281721773, - "c4": 3.0080412462625663, - "c5": 2.923082848578211, - "c6": 2.944936902157054, - "c7": 2.9001905649211706 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314839, + "c3": 3.629218677762364, + "c4": 2.9033749422099002, + "c5": 2.177531206657425, + "c6": 1.4516874711049501, + "c7": 0.7258437355524751 }, "rgb": [222, 0, 59] }, @@ -348009,23 +348009,23 @@ "year": 1799, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 6.018942532534702, - "c2": -16.08902777565912, - "c3": 1.2859018449936954, - "c4": 4.133171539284348, - "c5": 6.378432683635367, - "c6": 21.308163057164172, - "c7": 12.820109849600897 + "points": { + "c1": 27.780833800091912, + "c2": -31.503432587547376, + "c3": -2.5037384477100773, + "c4": -21.982955188546185, + "c5": -35.75013541788187, + "c6": -36.13995823024726, + "c7": 32.856321900038296 }, - "vertexSeeds": { - "c1": 5.420221920768538, - "c2": 5.595685417421272, - "c3": 5.491058854797659, - "c4": 5.546419124568622, - "c5": 5.605710470245365, - "c6": 5.427395636427946, - "c7": 5.40493812893844 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945908, + "c3": 6.865464632454924, + "c4": 5.492371705963939, + "c5": 4.119278779472954, + "c6": 2.7461858529819696, + "c7": 1.3730929264909848 }, "rgb": [77, 76, 132] }, @@ -348036,23 +348036,23 @@ "year": 1799, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -0.042797285082944114, - "c2": -4.308879695965896, - "c3": 21.499145612632496, - "c4": 10.73125528642479, - "c5": -24.71248237463017, - "c6": 6.603400596621341, - "c7": -21.47408401131851 + "points": { + "c1": 9.330797336794568, + "c2": -13.139205425149502, + "c3": -1.1586990096290855, + "c4": -2.9640090585765257, + "c5": 8.37616904586821, + "c6": 9.096750201569982, + "c7": -19.92044182469183 }, - "vertexSeeds": { - "c1": 2.347054240721867, - "c2": 2.268632320742394, - "c3": 2.334484005897, - "c4": 2.349748749587797, - "c5": 2.2886658629275423, - "c6": 2.4160258022973204, - "c7": 2.4243413830930955 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679583, + "c3": 2.912621359223302, + "c4": 2.330097087378639, + "c5": 1.7475728155339825, + "c6": 1.1650485436893194, + "c7": 0.5825242718446629 }, "rgb": [58, 15, 49] }, @@ -348063,23 +348063,23 @@ "year": 1799, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -27.708725747212227, - "c2": -12.661710186459096, - "c3": 18.5957103439993, - "c4": -20.62213462253656, - "c5": 18.354448361758422, - "c6": -20.18662016106377, - "c7": -6.601253501090127 + "points": { + "c1": 10.19240933701623, + "c2": -3.885938479947818, + "c3": 16.826931028557063, + "c4": -13.806088367254752, + "c5": 21.460937827177922, + "c6": 4.604082974663669, + "c7": -23.130447922258917 }, - "vertexSeeds": { - "c1": 6.692518530171771, - "c2": 7.091512351902289, - "c3": 7.146510065483726, - "c4": 7.07641005496187, - "c5": 6.97653712159426, - "c6": 6.6770192293832995, - "c7": 6.885201745467422 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002768, + "c3": 8.622283865002322, + "c4": 6.897827092001853, + "c5": 5.173370319001384, + "c6": 3.4489135460009153, + "c7": 1.7244567730004687 }, "rgb": [77, 76, 132] }, @@ -348090,23 +348090,23 @@ "year": 1799, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": -23.973300461912018, - "c2": -19.680451194342186, - "c3": -35.15042500612236, - "c4": -15.377207487904396, - "c5": -38.07259727002659, - "c6": 40.98921557182987, - "c7": 44.26633679714346 + "points": { + "c1": -20.03343513398845, + "c2": -10.46005831124252, + "c3": 24.156541158446423, + "c4": -14.759413714868906, + "c5": 22.8252170358732, + "c6": -15.396835165849811, + "c7": 3.703676365830809 }, - "vertexSeeds": { - "c1": 6.810923388027256, - "c2": 6.704383106997019, - "c3": 6.883758793803429, - "c4": 6.851705122806958, - "c5": 6.942684288254809, - "c6": 6.605546947096593, - "c7": 6.777157895267299 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -348117,23 +348117,23 @@ "year": 1799, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -4.756358942605896, - "c2": -7.813818498143373, - "c3": 26.87598392665293, - "c4": -27.652251192948693, - "c5": -2.450577814071522, - "c6": -33.58009162822439, - "c7": 8.607186981302014 + "points": { + "c1": -34.2703152230109, + "c2": -35.77873504093441, + "c3": 23.46523636346558, + "c4": -36.64637043565572, + "c5": -35.043288694440264, + "c6": 13.727633784234087, + "c7": -24.59596562333593 }, - "vertexSeeds": { - "c1": 7.743270103315461, - "c2": 8.141608444183433, - "c3": 8.111334552056503, - "c4": 7.545999780666904, - "c5": 7.996073588921661, - "c6": 8.058236150045337, - "c7": 8.017841621772059 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054083, + "c3": 9.801202034211746, + "c4": 7.8409616273693885, + "c5": 5.880721220527052, + "c6": 3.9204808136846943, + "c7": 1.9602404068423362 }, "rgb": [238, 201, 159] }, @@ -348144,23 +348144,23 @@ "year": 1798, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -13.464889270085735, - "c2": 23.69187116044486, - "c3": 14.190137009244246, - "c4": 11.84841260951476, - "c5": -3.4984904094333125, - "c6": 20.472275303378048, - "c7": 17.031361291715946 + "points": { + "c1": -6.066654923903503, + "c2": 4.448639309477155, + "c3": 23.46750124039084, + "c4": -4.147711997554008, + "c5": -1.5242728629875266, + "c6": 17.01826113594641, + "c7": -5.622985597113065 }, - "vertexSeeds": { - "c1": 8.83794291989349, - "c2": 8.696195865349493, - "c3": 8.307841541140858, - "c4": 8.145145290253973, - "c5": 8.775150510561428, - "c6": 8.456299831828089, - "c7": 8.188590642682476 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461865, + "c3": 10.610263522884873, + "c4": 8.488210818307902, + "c5": 6.366158113730933, + "c6": 4.2441054091539625, + "c7": 2.12205270457697 }, "rgb": [77, 76, 132] }, @@ -348171,23 +348171,23 @@ "year": 1799, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -13.925007153356947, - "c2": 10.035859190911943, - "c3": 3.8579503779243964, - "c4": -0.10787424816822977, - "c5": 7.477870551765072, - "c6": -8.875418729780549, - "c7": -26.873904024260373 + "points": { + "c1": -31.300637029374613, + "c2": 20.06686046615544, + "c3": 2.5036404172568325, + "c4": -10.948785994750484, + "c5": 16.940223423744804, + "c6": 4.282671526445192, + "c7": -6.760155347695996 }, - "vertexSeeds": { - "c1": 3.0363892071904326, - "c2": 3.3453471669187564, - "c3": 3.153292385482891, - "c4": 3.4235382232168305, - "c5": 3.2049268809905818, - "c6": 3.4730940658867446, - "c7": 3.1046362771004485 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280163, + "c3": 4.184003698566806, + "c4": 3.3472029588534418, + "c5": 2.5104022191400848, + "c6": 1.6736014794267209, + "c7": 0.8368007397133572 }, "rgb": [222, 0, 59] }, @@ -348198,23 +348198,23 @@ "year": 1798, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": 16.963775794905537, - "c2": 4.073093621732603, - "c3": 3.7661576574084883, - "c4": 21.838422967633207, - "c5": 11.475099661052198, - "c6": -6.6984304915669775, - "c7": 14.613455631661218 + "points": { + "c1": -2.9049840595725556, + "c2": -17.283320114846365, + "c3": -4.317108862022845, + "c4": 15.353068347549886, + "c5": -11.332453315602049, + "c6": -5.669632424567851, + "c7": -3.467380424013964 }, - "vertexSeeds": { - "c1": 1.7308916104610326, - "c2": 1.8191671067895572, - "c3": 1.7577473498601857, - "c4": 1.6415927226654392, - "c5": 1.655727033931054, - "c6": 1.814375936582823, - "c7": 1.6413475132361866 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.108183079056865, + "c3": 1.7568192325473884, + "c4": 1.4054553860379098, + "c5": 1.0540915395284332, + "c6": 0.7027276930189549, + "c7": 0.3513638465094766 }, "rgb": [77, 76, 132] }, @@ -348225,23 +348225,23 @@ "year": 1799, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -15.447251875576098, - "c2": 27.327890062459044, - "c3": -12.265467154949452, - "c4": 29.32749158522066, - "c5": 3.685597959977205, - "c6": -8.05717473440567, - "c7": 21.596569642909156 + "points": { + "c1": 10.893948073245262, + "c2": -22.14387338828047, + "c3": 26.230030594473554, + "c4": 7.712414978337023, + "c5": -19.49372793814481, + "c6": -9.093241127774714, + "c7": 30.224652512385013 }, - "vertexSeeds": { - "c1": 6.203183778078002, - "c2": 6.187617855777295, - "c3": 6.259109863638106, - "c4": 6.243183038126317, - "c5": 6.668623206833945, - "c6": 6.565978597100674, - "c7": 6.5205524658391685 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876556, + "c3": 7.97503467406381, + "c4": 6.3800277392510445, + "c5": 4.785020804438278, + "c6": 3.190013869625532, + "c7": 1.595006934812766 }, "rgb": [58, 15, 49] }, @@ -348252,23 +348252,23 @@ "year": 1799, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 33.758548574706, - "c2": 27.794550305430654, - "c3": -0.24157251573930694, - "c4": 9.792820318056215, - "c5": -9.937487798734765, - "c6": -32.918698321460866, - "c7": -18.123901351780248 + "points": { + "c1": -26.27778336154566, + "c2": -36.40700266840776, + "c3": -20.071035737280305, + "c4": 30.99466273101261, + "c5": 35.18617812138969, + "c6": -6.270779838312944, + "c7": -28.13019107593273 }, - "vertexSeeds": { - "c1": 6.981378614503869, - "c2": 7.162973197159415, - "c3": 7.031595673866092, - "c4": 7.112608024571777, - "c5": 7.032013625845572, - "c6": 7.2520320461383925, - "c7": 7.05098252347553 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284333, + "c3": 8.78409616273693, + "c4": 7.027276930189549, + "c5": 5.270457697642167, + "c6": 3.5136384650947634, + "c7": 1.7568192325473817 }, "rgb": [77, 76, 132] }, @@ -348279,23 +348279,23 @@ "year": 1799, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -2.8567045112268126, - "c2": 21.026882051197955, - "c3": 18.258466650827973, - "c4": 26.078635410114398, - "c5": -11.080992515717139, - "c6": 26.608044622160183, - "c7": 1.6387985470205528 + "points": { + "c1": 16.23557134983794, + "c2": -30.51600610048231, + "c3": 11.68821163148207, + "c4": -32.30908143540007, + "c5": -4.258275541679261, + "c6": 26.805143822549113, + "c7": 14.636230895907936 }, - "vertexSeeds": { - "c1": 8.326762893006691, - "c2": 8.874077071990795, - "c3": 8.784285175540367, - "c4": 9.015275987484872, - "c5": 8.864063540133197, - "c6": 8.41760489305497, - "c7": 8.840753778334765 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703195, + "c3": 10.74895977808598, + "c4": 8.59916782246879, + "c5": 6.4493758668515975, + "c6": 4.299583911234384, + "c7": 2.149791955617192 }, "rgb": [238, 201, 159] }, @@ -348306,23 +348306,23 @@ "year": 1799, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -2.8678574204582468, - "c2": -14.128735150002978, - "c3": -19.07710662394541, - "c4": 12.198123714413228, - "c5": 14.347762897627746, - "c6": 2.53809292793159, - "c7": -13.470829498320452 + "points": { + "c1": -27.592386900921465, + "c2": 26.872721592646023, + "c3": -10.650705903490849, + "c4": 15.121253660444474, + "c5": -21.830477467860018, + "c6": -14.633759229113771, + "c7": 24.2833851945661 }, - "vertexSeeds": { - "c1": 2.9456876997478694, - "c2": 3.053028204622117, - "c3": 3.074680226223235, - "c4": 2.9386154049829147, - "c5": 2.9578213114112777, - "c6": 3.1105632573167115, - "c7": 3.0271203705247243 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.54923717059639, + "c3": 3.791030975497, + "c4": 3.0328247803975974, + "c5": 2.274618585298195, + "c6": 1.5164123901987925, + "c7": 0.7582061950994027 }, "rgb": [77, 76, 132] }, @@ -348333,23 +348333,23 @@ "year": 1799, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 21.260145761462645, - "c2": 24.722227718887517, - "c3": -21.8012585198444, - "c4": 21.348738307789766, - "c5": 0.1469255008044783, - "c6": 6.720220587102382, - "c7": 12.065691359059741 + "points": { + "c1": -11.839315995762739, + "c2": 14.575972830442524, + "c3": 13.208769424641474, + "c4": 9.682546807238808, + "c5": -17.196919848816346, + "c6": -3.2300555627145684, + "c7": 7.557540474612523 }, - "vertexSeeds": { - "c1": 6.773384408129817, - "c2": 7.080473972220348, - "c3": 6.7950681535795505, - "c4": 7.077475210123176, - "c5": 7.030183121313695, - "c6": 6.738949663262883, - "c7": 7.0628875718079485 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.18030513176144, + "c3": 8.483587609801194, + "c4": 6.786870087840951, + "c5": 5.0901525658807065, + "c6": 3.393435043920489, + "c7": 1.6967175219602444 }, "rgb": [238, 201, 159] }, @@ -348360,23 +348360,23 @@ "year": 1799, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 3.7336660107676636, - "c2": 1.0278719128815865, - "c3": 2.5722034835945635, - "c4": -26.43397888919617, - "c5": 13.917191868516625, - "c6": -4.5582047931948395, - "c7": -2.6222037129707374 + "points": { + "c1": 30.911002204469945, + "c2": -22.13901649761298, + "c3": 27.692840153280706, + "c4": -5.48370526736683, + "c5": -14.2914561221184, + "c6": -32.394459450843314, + "c7": -21.972293321034165 }, - "vertexSeeds": { - "c1": 8.241892849101866, - "c2": 8.347791575273598, - "c3": 8.441521753335259, - "c4": 8.287892990825716, - "c5": 8.741121595048986, - "c6": 8.562020040615717, - "c7": 8.843117474839278 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461865, + "c3": 10.610263522884873, + "c4": 8.488210818307902, + "c5": 6.366158113730933, + "c6": 4.2441054091539625, + "c7": 2.12205270457697 }, "rgb": [222, 0, 59] }, @@ -348387,23 +348387,23 @@ "year": 1799, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -26.977951131796956, - "c2": 18.821341189250226, - "c3": 9.08248884080163, - "c4": -24.852191187101177, - "c5": 2.569426230641362, - "c6": 12.99685509263989, - "c7": -4.222978591021903 + "points": { + "c1": -21.887345485480346, + "c2": 10.970660184696747, + "c3": 20.232861784190774, + "c4": 4.234652419493607, + "c5": 26.32826509572245, + "c6": -18.41063290300148, + "c7": 7.220564916346511 }, - "vertexSeeds": { - "c1": 6.564596619619604, - "c2": 6.649953478491483, - "c3": 6.573464079056951, - "c4": 6.48227537519629, - "c5": 6.7052360777205635, - "c6": 6.46607783627252, - "c7": 6.358998638306695 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.81969486823856, + "c3": 8.183079056865472, + "c4": 6.546463245492381, + "c5": 4.9098474341192695, + "c6": 3.27323162274618, + "c7": 1.63661581137309 }, "rgb": [77, 76, 132] }, @@ -348414,23 +348414,23 @@ "year": 1799, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 16.05210412448693, - "c2": -15.787397370509868, - "c3": 6.350516990881125, - "c4": 26.115837576318043, - "c5": 22.418864826265306, - "c6": 18.72702576179929, - "c7": 23.80079790906641 + "points": { + "c1": -20.023567139611096, + "c2": -24.176452639374084, + "c3": 26.056195941669472, + "c4": -14.167280467702597, + "c5": 2.479091393363319, + "c6": 32.64713940950232, + "c7": -16.509317524529703 }, - "vertexSeeds": { - "c1": 5.626028020310954, - "c2": 5.554639120590689, - "c3": 5.314454795953278, - "c4": 5.478709621035989, - "c5": 5.5533350802839365, - "c6": 5.465070465600618, - "c7": 5.306013055931228 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.29403606102636, + "c3": 6.911696717521951, + "c4": 5.529357374017565, + "c5": 4.14701803051318, + "c6": 2.7646786870087716, + "c7": 1.3823393435043858 }, "rgb": [77, 76, 132] }, @@ -348441,23 +348441,23 @@ "year": 1799, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 18.573596133300487, - "c2": 12.65892276494144, - "c3": 18.798119080102712, - "c4": -16.334179825019817, - "c5": 26.05718119298221, - "c6": -15.986758641606652, - "c7": -6.194033136858177 + "points": { + "c1": 24.955286437522116, + "c2": 20.24924974945696, + "c3": 20.439811482274596, + "c4": -17.386896169286494, + "c5": -12.370694274719884, + "c6": 7.5954134987021185, + "c7": 2.0253022909987273 }, - "vertexSeeds": { - "c1": 2.0379236110358985, - "c2": 1.969980566249506, - "c3": 2.210516832417073, - "c4": 2.2688359679588395, - "c5": 1.7917838307097176, - "c6": 1.8610067062481765, - "c7": 1.9472226890859845 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786408, + "c3": 2.750809061488674, + "c4": 2.2006472491909372, + "c5": 1.650485436893203, + "c6": 1.1003236245954686, + "c7": 0.5501618122977343 }, "rgb": [86, 146, 138] }, @@ -348468,23 +348468,23 @@ "year": 1799, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 2.1084728304140796, - "c2": 16.101271331276514, - "c3": 1.6035372815011044, - "c4": 27.632940298163064, - "c5": 31.29433969945589, - "c6": 22.38110724029695, - "c7": 16.618944335691538 + "points": { + "c1": 4.586681232306908, + "c2": 20.878854297416026, + "c3": 3.3725764918441, + "c4": -12.00193770274435, + "c5": 13.142681045432461, + "c6": 15.034949926105021, + "c7": -1.0236337532850186 }, - "vertexSeeds": { - "c1": 6.797587744673828, - "c2": 6.816367815925943, - "c3": 7.21605138323081, - "c4": 6.803864101557971, - "c5": 7.379022111394686, - "c6": 7.15925404895387, - "c7": 7.175450360486184 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364779, + "c3": 8.830328247803967, + "c4": 7.064262598243178, + "c5": 5.298196948682389, + "c6": 3.5321312991216, + "c7": 1.7660656495607892 }, "rgb": [58, 15, 49] }, @@ -348495,23 +348495,23 @@ "year": 1799, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 14.861102098859757, - "c2": 16.219436106912948, - "c3": -16.70348291305661, - "c4": -18.222701616068015, - "c5": -17.616829458068374, - "c6": 23.63439162906464, - "c7": -12.17554871971087 + "points": { + "c1": 11.75087042382054, + "c2": -18.088940481686578, + "c3": 14.12509502540647, + "c4": -1.3223409033638873, + "c5": -11.130418739187974, + "c6": -16.22631763524531, + "c7": 16.66710619767125 }, - "vertexSeeds": { - "c1": 3.9622790670553285, - "c2": 3.96728833741756, - "c3": 3.9739088207893003, - "c4": 3.7152295710139245, - "c5": 3.7455352308508627, - "c6": 3.79610315219561, - "c7": 3.8375140930969684 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325938, + "c3": 4.785020804438283, + "c4": 3.8280166435506295, + "c5": 2.8710124826629753, + "c6": 1.9140083217753086, + "c7": 0.9570041608876543 }, "rgb": [77, 76, 132] }, @@ -348522,23 +348522,23 @@ "year": 1799, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 1.2789255528205672, - "c2": 21.985929042904928, - "c3": -18.142549873072376, - "c4": -5.155224707991184, - "c5": 20.898661635443453, - "c6": -25.9656639040315, - "c7": -13.582157796713748 + "points": { + "c1": 19.010476933430617, + "c2": -5.6951698925956435, + "c3": -1.9788825630049054, + "c4": 21.868422670739065, + "c5": 14.777253863152609, + "c6": -30.0358266310159, + "c7": -5.097799258961608 }, - "vertexSeeds": { - "c1": 6.526638510510786, - "c2": 6.513686632998264, - "c3": 6.284231165910176, - "c4": 6.225597862910526, - "c5": 6.64931795734784, - "c6": 6.566789303366169, - "c7": 6.204415998154511 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037438, + "c3": 8.067498844197877, + "c4": 6.4539990753582925, + "c5": 4.840499306518731, + "c6": 3.2269995376791463, + "c7": 1.613499768839562 }, "rgb": [222, 0, 59] }, @@ -348549,23 +348549,23 @@ "year": 1799, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -14.01241246406253, - "c2": -22.573639566313027, - "c3": 22.644415522126895, - "c4": -23.107472850360637, - "c5": -13.320910625954342, - "c6": -23.806312038042677, - "c7": -2.6347934360376755 + "points": { + "c1": -4.364907524064986, + "c2": -0.7547967815990013, + "c3": -23.601782043353285, + "c4": 7.297820968139117, + "c5": -4.6027126285877245, + "c6": -27.34255291540497, + "c7": -9.87581148840977 }, - "vertexSeeds": { - "c1": 7.411110644277043, - "c2": 7.59773580686926, - "c3": 7.598340998943313, - "c4": 7.293761771781164, - "c5": 7.538670312225215, - "c6": 7.742836642361133, - "c7": 7.354127924961673 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.15117891816922, + "c3": 9.292649098474339, + "c4": 7.43411927877948, + "c5": 5.5755894590846, + "c6": 3.71705963938974, + "c7": 1.858529819694881 }, "rgb": [222, 0, 59] }, @@ -348576,23 +348576,23 @@ "year": 1799, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 19.59469539289411, - "c2": -18.64101366799865, - "c3": -17.941718405578364, - "c4": -23.406667801145048, - "c5": -22.704983968330104, - "c6": -3.4467174911634757, - "c7": 23.032024975809776 + "points": { + "c1": 6.787196968797126, + "c2": -5.13748469201137, + "c3": -6.547737389737993, + "c4": 17.126782144082497, + "c5": 13.235093460017858, + "c6": -0.7012768329811045, + "c7": -13.942367959949836 }, - "vertexSeeds": { - "c1": 10.479540206502632, - "c2": 10.240674430054238, - "c3": 10.768506272601808, - "c4": 10.231193707471949, - "c5": 10.491494501200435, - "c6": 9.937711904273662, - "c7": 10.113352517082951 + "offsets": { + "c1": 18.058252427184467, + "c2": 15.478502080443848, + "c3": 12.898751733703184, + "c4": 10.319001386962565, + "c5": 7.739251040221902, + "c6": 5.159500693481283, + "c7": 2.5797503467406195 }, "rgb": [77, 76, 132] }, @@ -348603,23 +348603,23 @@ "year": 1799, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -7.411704936324188, - "c2": 1.9690142396973407, - "c3": -19.906082375698347, - "c4": 21.89943120660601, - "c5": 15.952438558079422, - "c6": -20.7706706089289, - "c7": 19.30664372082208 + "points": { + "c1": 5.467704120055757, + "c2": 8.626267694625241, + "c3": -9.139142044829011, + "c4": 17.693851037065706, + "c5": -16.93737540594983, + "c6": 13.029146930110123, + "c7": 15.87018077489303 }, - "vertexSeeds": { - "c1": 6.008931716775664, - "c2": 5.898083244665086, - "c3": 6.157049134412788, - "c4": 6.1869983045058605, - "c5": 5.7663210854042735, - "c6": 6.039740338339407, - "c7": 5.803548566760285 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951467, + "c3": 7.443365695792877, + "c4": 5.954692556634311, + "c5": 4.466019417475722, + "c6": 2.9773462783171554, + "c7": 1.4886731391585888 }, "rgb": [77, 76, 132] }, @@ -348630,23 +348630,23 @@ "year": 1799, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 16.697322822950746, - "c2": 27.045828625400432, - "c3": -17.740366161720534, - "c4": 35.991292333619114, - "c5": 5.122126994461752, - "c6": 31.84540313456644, - "c7": -1.5242434979300867 + "points": { + "c1": 27.727869159729735, + "c2": -32.586446731505006, + "c3": -32.174418182656986, + "c4": -27.53175546374382, + "c5": 6.099774522405717, + "c6": 22.768029662603325, + "c7": 17.32765169414472 }, - "vertexSeeds": { - "c1": 7.488043926590821, - "c2": 7.202842662395995, - "c3": 7.662344870005457, - "c4": 7.558935787540004, - "c5": 7.119943164119288, - "c6": 7.522891730939316, - "c7": 7.077513729479289 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968097, + "c3": 9.177068885806744, + "c4": 7.341655108645391, + "c5": 5.50624133148406, + "c6": 3.670827554322706, + "c7": 1.835413777161353 }, "rgb": [222, 0, 59] }, @@ -348657,23 +348657,23 @@ "year": 1799, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -8.806119334095953, - "c2": -11.322503444924426, - "c3": -24.469679849679284, - "c4": 31.040112673580808, - "c5": -28.811314398740386, - "c6": -16.92042107408941, - "c7": 13.621743268803748 + "points": { + "c1": 0.8825639255835753, + "c2": 3.441233198152986, + "c3": 12.401250792379841, + "c4": -4.585220198966013, + "c5": 1.8919933300655316, + "c6": -33.30382200176574, + "c7": 14.788875613064306 }, - "vertexSeeds": { - "c1": 3.8449335483848075, - "c2": 4.097189301315133, - "c3": 3.9009441375175697, - "c4": 4.030322160195498, - "c5": 3.8408201851786195, - "c6": 4.091520509854646, - "c7": 3.992790661020281 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687929, + "c3": 4.993065187239947, + "c4": 3.9944521497919525, + "c5": 2.9958391123439703, + "c6": 1.9972260748959763, + "c7": 0.9986130374479938 }, "rgb": [77, 76, 132] }, @@ -348684,23 +348684,23 @@ "year": 1799, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": -21.42170119480026, - "c2": 1.8763470745277786, - "c3": 26.59893952870869, - "c4": -23.938570820641267, - "c5": 45.633172375681916, - "c6": -38.77084643767019, - "c7": -33.86701674599992 + "points": { + "c1": 6.060812919593076, + "c2": -14.069917419496981, + "c3": -2.9316305672929843, + "c4": 4.4715492177558005, + "c5": -38.332840219657676, + "c6": 24.64540238052202, + "c7": -24.34514941974574 }, - "vertexSeeds": { - "c1": 5.278541705481633, - "c2": 5.079328732875618, - "c3": 5.471971096320958, - "c4": 5.4422536991849135, - "c5": 5.214894399071543, - "c6": 5.344696789986013, - "c7": 5.167204226142578 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423017, + "c3": 6.564956079519196, + "c4": 5.251964863615352, + "c5": 3.9389736477115087, + "c6": 2.625982431807687, + "c7": 1.3129912159038435 }, "rgb": [77, 76, 132] }, @@ -348711,23 +348711,23 @@ "year": 1799, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 16.985884528385363, - "c2": -11.078194738116629, - "c3": -6.366920248748368, - "c4": -20.76095665929706, - "c5": 16.555707524575517, - "c6": 28.620132463002804, - "c7": 12.298983754203995 + "points": { + "c1": -1.2046389675098794, + "c2": 28.71314597577929, + "c3": -0.1724950596065966, + "c4": 34.45746453308947, + "c5": -15.249910915145481, + "c6": 23.26084601291214, + "c7": -11.633151440025756 }, - "vertexSeeds": { - "c1": 5.276465073945323, - "c2": 5.028596196162727, - "c3": 5.19304188916519, - "c4": 5.032290730732677, - "c5": 5.0900305785081414, - "c6": 5.148182267461229, - "c7": 5.020013168056376 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318083, + "c4": 5.141007859454471, + "c5": 3.8557558945908363, + "c6": 2.5705039297272245, + "c7": 1.2852519648636123 }, "rgb": [86, 146, 138] }, @@ -348738,23 +348738,23 @@ "year": 1799, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -9.77565759749559, - "c2": 9.75793026164287, - "c3": -3.6008015585828623, - "c4": 14.939903508534456, - "c5": 19.905666252380655, - "c6": 10.86367089257081, - "c7": -7.559211409755342 + "points": { + "c1": 18.777456779032903, + "c2": 6.198396432157452, + "c3": 18.307606032331343, + "c4": -2.9820186451205295, + "c5": -20.132384544927362, + "c6": -15.368051990778792, + "c7": 4.469846923400937 }, - "vertexSeeds": { - "c1": 4.342456534813605, - "c2": 4.280927303495284, - "c3": 4.556360863177883, - "c4": 4.441860429826101, - "c5": 4.2164119709877, - "c6": 4.245760539993203, - "c7": 4.18475550662067 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492371, + "c3": 5.455386037910307, + "c4": 4.364308830328243, + "c5": 3.27323162274619, + "c6": 2.1821544151641272, + "c7": 1.0910772075820636 }, "rgb": [58, 15, 49] }, @@ -348765,23 +348765,23 @@ "year": 1799, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -5.48709521036519, - "c2": -12.586656094047118, - "c3": 27.057304977061257, - "c4": 20.31109605598982, - "c5": 3.553102351112827, - "c6": -32.626593350638146, - "c7": -8.08090568127363 + "points": { + "c1": 15.784439073798168, + "c2": -29.65462399004776, + "c3": -30.150081221131003, + "c4": 16.82452396864184, + "c5": -24.288076691529078, + "c6": -29.2356642502877, + "c7": -30.54640550026497 }, - "vertexSeeds": { - "c1": 4.866579158230376, - "c2": 5.157977827958282, - "c3": 4.9646965840952975, - "c4": 4.801261559318168, - "c5": 4.901123654244474, - "c6": 5.123137705149679, - "c7": 5.0617687541610605 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.48959778085992, + "c3": 6.241331484049937, + "c4": 4.993065187239954, + "c5": 3.7447988904299487, + "c6": 2.4965325936199663, + "c7": 1.2482662968099831 }, "rgb": [77, 76, 132] }, @@ -348792,23 +348792,23 @@ "year": 1799, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": 37.58314429365856, - "c2": 32.92539196387462, - "c3": -11.01823364149029, - "c4": 6.889202783549983, - "c5": -37.662417556831635, - "c6": 37.52084470999314, - "c7": 38.638743135977194 + "points": { + "c1": -40.87303012930588, + "c2": 42.737971206183175, + "c3": -16.021090758540595, + "c4": 40.12691610541452, + "c5": 23.479774311741238, + "c6": 12.791699311746214, + "c7": -35.480490087643005 }, - "vertexSeeds": { - "c1": 7.34671265380829, - "c2": 7.373830215397754, - "c3": 7.320959994208536, - "c4": 7.019535922443471, - "c5": 6.951777657697453, - "c6": 7.029948552495051, - "c7": 6.922482830223448 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324557, + "c3": 8.80721220527045, + "c4": 7.045769764216363, + "c5": 5.2843273231622785, + "c6": 3.522884882108171, + "c7": 1.7614424410540854 }, "rgb": [77, 76, 132] }, @@ -348819,23 +348819,23 @@ "year": 1799, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -0.2447792069056831, - "c2": 12.254133151060188, - "c3": -33.134435390848665, - "c4": 15.68432232707849, - "c5": -22.67319066018141, - "c6": -22.511346107496532, - "c7": -4.378450950050102 + "points": { + "c1": 33.42930463780398, + "c2": 2.3281564218293624, + "c3": -27.259511643682973, + "c4": -34.1757379674078, + "c5": -10.856686707430313, + "c6": 26.47906875369388, + "c7": -0.8355196690011724 }, - "vertexSeeds": { - "c1": 5.719712082638379, - "c2": 5.497471916787465, - "c3": 5.462067303769365, - "c4": 5.636972838899072, - "c5": 5.52876592967062, - "c6": 5.528482455322151, - "c7": 5.850671873699653 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [222, 0, 59] }, @@ -348846,23 +348846,23 @@ "year": 1799, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -14.10278913815954, - "c2": 1.1657203378383372, - "c3": 8.886118721504921, - "c4": 27.379466373248327, - "c5": 30.291397857401698, - "c6": -27.22406744142463, - "c7": 1.5788615227600218 + "points": { + "c1": 12.0251962696138, + "c2": -31.768217360124293, + "c3": 16.508176842213757, + "c4": -15.180819452080623, + "c5": 31.289927403677318, + "c6": -5.426103152490786, + "c7": -15.101058207487817 }, - "vertexSeeds": { - "c1": 4.88697244901923, - "c2": 4.699673639469003, - "c3": 4.574430876952256, - "c4": 4.810097225674088, - "c5": 4.849926491317002, - "c6": 4.669058219814156, - "c7": 4.636542129199425 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256586, + "c3": 5.894590846047163, + "c4": 4.715672676837728, + "c5": 3.536754507628293, + "c6": 2.35783633841887, + "c7": 1.178918169209435 }, "rgb": [77, 76, 132] }, @@ -348873,23 +348873,23 @@ "year": 1799, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 17.909128657473175, - "c2": 24.621591106927994, - "c3": 13.829999686642765, - "c4": 12.023447993608158, - "c5": 10.612598339527743, - "c6": 20.631905348499785, - "c7": 28.936378496400927 + "points": { + "c1": 23.535174804906006, + "c2": 12.390137945897138, + "c3": 16.024001747423604, + "c4": -4.521822160870702, + "c5": -12.927389310009698, + "c6": -24.57195554668824, + "c7": 29.702322774527175 }, - "vertexSeeds": { - "c1": 6.593182223324488, - "c2": 6.959766638704833, - "c3": 6.594121947790979, - "c4": 6.836695651743697, - "c5": 7.06799181123266, - "c6": 7.102880108670327, - "c7": 7.107603528010325 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.23578363384188, + "c3": 8.529819694868248, + "c4": 6.823855755894594, + "c5": 5.11789181692094, + "c6": 3.411927877947286, + "c7": 1.7059639389736538 }, "rgb": [86, 146, 138] }, @@ -348900,23 +348900,23 @@ "year": 1799, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -26.668614863435348, - "c2": -31.92993691765803, - "c3": -27.679308130112403, - "c4": 27.71043319859597, - "c5": -27.450766379471922, - "c6": 18.410925809646052, - "c7": 20.134104260721337 + "points": { + "c1": 9.251298100863309, + "c2": 4.84921735696566, + "c3": 6.954963457308047, + "c4": -29.336247708038588, + "c5": -36.22433378914528, + "c6": -6.8175632926704814, + "c7": -29.364850577409193 }, - "vertexSeeds": { - "c1": 4.035403487649501, - "c2": 3.878522632232651, - "c3": 3.8909990164929735, - "c4": 4.05803937259974, - "c5": 4.041139332149961, - "c6": 3.7807223986035643, - "c7": 3.8870951043183757 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446604, + "c3": 4.854368932038839, + "c4": 3.883495145631074, + "c5": 2.912621359223308, + "c6": 1.9417475728155305, + "c7": 0.9708737864077652 }, "rgb": [77, 76, 132] }, @@ -348927,23 +348927,23 @@ "year": 1799, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": 43.94288404013845, - "c2": 34.31255297236615, - "c3": 36.00455293826339, - "c4": 28.813527837405417, - "c5": -24.731398888049316, - "c6": -22.251343388991216, - "c7": 35.66540977127413 + "points": { + "c1": -25.89548432387781, + "c2": -27.82089020518224, + "c3": 22.013327942989605, + "c4": -42.0907291643355, + "c5": -20.35819453600006, + "c6": -34.35087264345592, + "c7": 45.02896249737762 }, - "vertexSeeds": { - "c1": 6.092707347307177, - "c2": 5.826784447131604, - "c3": 7.079136738139265, - "c4": 5.855122491163451, - "c5": 7.4826167049712655, - "c6": 7.253623131127302, - "c7": 6.29017256105411 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048542, + "c3": 9.223300970873785, + "c4": 7.378640776699028, + "c5": 5.533980582524271, + "c6": 3.689320388349514, + "c7": 1.844660194174757 }, "rgb": [222, 0, 59] }, @@ -348954,23 +348954,23 @@ "year": 1799, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 8.582253762689625, - "c2": -19.583741610540095, - "c3": -18.35607154855397, - "c4": -22.23716306034261, - "c5": -2.598242649737813, - "c6": -11.807652843815399, - "c7": 1.4054340312847202 + "points": { + "c1": 3.767173185958537, + "c2": 4.376819047478307, + "c3": -4.4842051046947695, + "c4": 17.983653201071967, + "c5": 13.52945226069454, + "c6": -6.4394212296482785, + "c7": -9.333266078700618 }, - "vertexSeeds": { - "c1": 1.5008539361168503, - "c2": 1.5520157601518778, - "c3": 1.5603830592186174, - "c4": 1.4728348853308662, - "c5": 1.3448932126851032, - "c6": 1.5824934204018246, - "c7": 1.5480735386792335 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.3300970873786415, + "c3": 1.941747572815533, + "c4": 1.553398058252427, + "c5": 1.1650485436893208, + "c6": 0.7766990291262148, + "c7": 0.388349514563106 }, "rgb": [77, 76, 132] }, @@ -348981,23 +348981,23 @@ "year": 1799, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 22.751849986308535, - "c2": 33.804669320869095, - "c3": 5.328941632935788, - "c4": -20.545309673219265, - "c5": -32.296570209724266, - "c6": -29.76622945512642, - "c7": -24.788301605718686 + "points": { + "c1": -28.40547954358454, + "c2": 31.99458909560559, + "c3": -37.69187443315168, + "c4": -38.05265531245278, + "c5": -7.409942552966591, + "c6": 0.6496772997057647, + "c7": -27.390533678944934 }, - "vertexSeeds": { - "c1": 7.271191473973107, - "c2": 7.15617145889017, - "c3": 7.286736865356491, - "c4": 6.978866225926284, - "c5": 7.405604074741594, - "c6": 7.20972473647661, - "c7": 7.369350826015996 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807207, + "c3": 9.084604715672668, + "c4": 7.267683772538132, + "c5": 5.450762829403593, + "c6": 3.6338418862690767, + "c7": 1.8169209431345383 }, "rgb": [58, 15, 49] }, @@ -349008,23 +349008,23 @@ "year": 1799, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 29.2253674862979, - "c2": -30.49694740057562, - "c3": -8.396892080431492, - "c4": 34.14485947070935, - "c5": -4.13493012142812, - "c6": 20.77475444399851, - "c7": 21.853364373527683 + "points": { + "c1": 10.700671469954912, + "c2": 29.119190038335958, + "c3": -30.805332630724294, + "c4": -25.394271489697278, + "c5": 15.711350769581898, + "c6": -14.492209696322174, + "c7": -25.79328430549439 }, - "vertexSeeds": { - "c1": 5.689785553720632, - "c2": 5.812404433785705, - "c3": 5.948708368174293, - "c4": 5.884690086703675, - "c5": 5.926432290783937, - "c6": 5.795607200686226, - "c7": 5.775005888073064 + "offsets": { + "c1": 10, + "c2": 8.57142857142857, + "c3": 7.142857142857136, + "c4": 5.714285714285705, + "c5": 4.285714285714273, + "c6": 2.857142857142864, + "c7": 1.428571428571432 }, "rgb": [86, 146, 138] }, @@ -349035,23 +349035,23 @@ "year": 1799, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 21.02139660456725, - "c2": 12.785119240145391, - "c3": -15.291239860888787, - "c4": -12.874745845458055, - "c5": -14.86147484467745, - "c6": -17.20887730375776, - "c7": 9.729404224164597 + "points": { + "c1": 29.79589176857715, + "c2": -30.045808927457326, + "c3": -12.403246991377983, + "c4": -30.62506999992788, + "c5": -9.195017278525583, + "c6": 5.079213494719575, + "c7": 14.815237082716706 }, - "vertexSeeds": { - "c1": 7.312803077338106, - "c2": 6.767262839573005, - "c3": 6.91377059262549, - "c4": 7.302604514450072, - "c5": 7.332391518143416, - "c6": 7.032195576872743, - "c7": 7.198820356870817 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244111, + "c3": 8.760980120203412, + "c4": 7.008784096162734, + "c5": 5.256588072122056, + "c6": 3.504392048081356, + "c7": 1.752196024040678 }, "rgb": [77, 76, 132] }, @@ -349062,23 +349062,23 @@ "year": 1799, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 9.36249986783697, - "c2": -3.8072585019106384, - "c3": 17.3732100900954, - "c4": 16.766394504266263, - "c5": -20.525998257819875, - "c6": 17.35005757413295, - "c7": 13.155451041600063 + "points": { + "c1": -13.047112349102955, + "c2": -24.612523536091462, + "c3": -13.97684129183233, + "c4": 26.575989178726697, + "c5": 23.987549838088366, + "c6": -21.480786740239953, + "c7": -12.611567945533501 }, - "vertexSeeds": { - "c1": 9.138979994367263, - "c2": 9.469239692565242, - "c3": 9.585671803685026, - "c4": 9.3297659158395, - "c5": 8.980765141098882, - "c6": 9.526627980985088, - "c7": 9.259683214150797 + "offsets": { + "c1": 16.27831715210356, + "c2": 13.952843273231624, + "c3": 11.627369394359686, + "c4": 9.301895515487749, + "c5": 6.976421636615812, + "c6": 4.650947757743874, + "c7": 2.325473878871937 }, "rgb": [77, 76, 132] }, @@ -349089,23 +349089,23 @@ "year": 1799, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 29.401249130647063, - "c2": -18.21733003523166, - "c3": -26.59862135336894, - "c4": 13.942385532893912, - "c5": -20.5993474341663, - "c6": -12.824448503971642, - "c7": -20.393235562223136 + "points": { + "c1": 25.07669943292498, + "c2": -30.753346321026882, + "c3": -14.332148641800199, + "c4": -9.298957418053604, + "c5": 20.362177611807898, + "c6": 3.8804940627737246, + "c7": 31.760197863694014 }, - "vertexSeeds": { - "c1": 7.412279136600886, - "c2": 6.973022398496199, - "c3": 7.533117242021563, - "c4": 7.419266954864763, - "c5": 7.51821813715388, - "c6": 7.010888239521663, - "c7": 7.009283509550603 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766985, + "c3": 9.06148867313915, + "c4": 7.249190938511317, + "c5": 5.436893203883482, + "c6": 3.6245954692556692, + "c7": 1.8122977346278346 }, "rgb": [222, 0, 59] }, @@ -349116,23 +349116,23 @@ "year": 1799, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 17.17260545429515, - "c2": 1.0063183883224127, - "c3": 23.297932071603093, - "c4": -21.7546664467886, - "c5": 21.418627456656495, - "c6": -32.01010219752206, - "c7": -7.184827145915584 + "points": { + "c1": 18.35484393328222, + "c2": -14.346831364370605, + "c3": -15.53809399984645, + "c4": 30.59467468634226, + "c5": 32.72820975031219, + "c6": 33.90820324388238, + "c7": 19.921559767539534 }, - "vertexSeeds": { - "c1": 6.862597240019037, - "c2": 6.502589058005808, - "c3": 6.716053902369508, - "c4": 6.804495686817962, - "c5": 6.76473447849808, - "c6": 6.520893230065827, - "c7": 6.742297411704962 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479892, + "c3": 8.321775312066581, + "c4": 6.65742024965327, + "c5": 4.993065187239957, + "c6": 3.3287101248266238, + "c7": 1.6643550624133119 }, "rgb": [238, 201, 159] }, @@ -349143,23 +349143,23 @@ "year": 1799, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 1.8652335731913219, - "c2": -24.787569723036704, - "c3": -2.6690916290829456, - "c4": -10.106460178787554, - "c5": -15.184722976319781, - "c6": -2.8475721409696355, - "c7": 11.096788118460765 + "points": { + "c1": 17.744724200826035, + "c2": 25.41539362258674, + "c3": -11.554222475334786, + "c4": -2.951395418827701, + "c5": -22.038642227467616, + "c6": 29.21136138599278, + "c7": 9.06888305842341 }, - "vertexSeeds": { - "c1": 5.082187486414392, - "c2": 5.3416069749449475, - "c3": 5.443206237650183, - "c4": 5.114649527563925, - "c5": 5.378986570323172, - "c6": 5.319601254600827, - "c7": 5.149916586680925 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382795, + "c3": 6.541840036985656, + "c4": 5.233472029588537, + "c5": 3.9251040221913973, + "c6": 2.6167360147942578, + "c7": 1.3083680073971398 }, "rgb": [77, 76, 132] }, @@ -349170,23 +349170,23 @@ "year": 1799, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 31.848459329830135, - "c2": -6.019871096041964, - "c3": -24.59592206175494, - "c4": 8.691889400420358, - "c5": -29.258795350236262, - "c6": 8.315437039821404, - "c7": 28.546270967940814 + "points": { + "c1": -28.105202519352304, + "c2": 19.286227608197045, + "c3": -3.837567058144298, + "c4": -14.146105335195188, + "c5": -0.049405591084848766, + "c6": 3.07170476185658, + "c7": -16.262171887353478 }, - "vertexSeeds": { - "c1": 7.0281169410452495, - "c2": 6.913014774884234, - "c3": 6.817636373322591, - "c4": 7.097011885206869, - "c5": 7.161449320532443, - "c6": 7.0058290194913955, - "c7": 7.006035047830666 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163673, + "c3": 8.714748035136381, + "c4": 6.971798428109115, + "c5": 5.228848821081823, + "c6": 3.4858992140545575, + "c7": 1.7429496070272916 }, "rgb": [238, 201, 159] }, @@ -349197,23 +349197,23 @@ "year": 1799, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 33.357455217900274, - "c2": -18.092390158856457, - "c3": 38.93716799943129, - "c4": -26.38741330635797, - "c5": 37.80714024350899, - "c6": -12.86313874231373, - "c7": -15.046843602776018 + "points": { + "c1": -38.51215910707302, + "c2": -27.21039698928028, + "c3": -30.86030308995816, + "c4": -16.815931276882033, + "c5": 21.7300609955467, + "c6": 11.486615079137167, + "c7": 24.845281698266923 }, - "vertexSeeds": { - "c1": 12.590579517182492, - "c2": 12.44145062780861, - "c3": 12.856003719496295, - "c4": 12.575443988079993, - "c5": 12.204076623924209, - "c6": 12.761309658084551, - "c7": 12.421174979585135 + "offsets": { + "c1": 21.45631067961165, + "c2": 18.39112343966713, + "c3": 15.325936199722609, + "c4": 12.260748959778086, + "c5": 9.195561719833565, + "c6": 6.130374479889043, + "c7": 3.0651872399445215 }, "rgb": [222, 0, 59] }, @@ -349224,23 +349224,23 @@ "year": 1799, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 12.572431491223135, - "c2": -6.000781747359696, - "c3": -27.378409270029298, - "c4": -2.710315508432707, - "c5": -33.39392808344788, - "c6": 39.47521360982384, - "c7": 28.649673340671853 + "points": { + "c1": -29.58494591877728, + "c2": -8.348331052052401, + "c3": 16.96462802074015, + "c4": 1.2006936036616125, + "c5": 34.926603226300045, + "c6": -12.890255645737998, + "c7": 5.444636375430534 }, - "vertexSeeds": { - "c1": 10.643191263910177, - "c2": 10.783278992884755, - "c3": 10.29330260778419, - "c4": 10.322172049246639, - "c5": 10.705146213754588, - "c6": 10.39188917005766, - "c7": 10.350506144606136 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644957, + "c3": 13.014331946370776, + "c4": 10.411465557096639, + "c5": 7.808599167822456, + "c6": 5.205732778548319, + "c7": 2.6028663892741375 }, "rgb": [58, 15, 49] }, @@ -349251,23 +349251,23 @@ "year": 1799, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 15.905973914967703, - "c2": -4.103314657956403, - "c3": 30.723622495827605, - "c4": 10.104452337609345, - "c5": 1.1827247726845016, - "c6": 0.6636591304413457, - "c7": 21.326188025337864 + "points": { + "c1": -22.75464662960971, + "c2": 15.742013784588544, + "c3": -3.23381252291912, + "c4": -12.469345748442844, + "c5": 19.647265052882695, + "c6": -8.364791097035852, + "c7": 28.346319847956316 }, - "vertexSeeds": { - "c1": 8.472687357640106, - "c2": 8.159359017500114, - "c3": 8.515415004820566, - "c4": 8.375371708040968, - "c5": 8.281118507729909, - "c6": 8.504627259162135, - "c7": 8.278695577801223 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.26074895977809, + "c3": 10.217290799815078, + "c4": 8.173832639852067, + "c5": 6.130374479889034, + "c6": 4.086916319926022, + "c7": 2.043458159963011 }, "rgb": [58, 15, 49] }, @@ -349278,23 +349278,23 @@ "year": 1799, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -24.9115385433332, - "c2": 34.175272071379425, - "c3": -27.574585230148195, - "c4": -36.22731857506612, - "c5": 13.691358798248238, - "c6": 34.472795187233686, - "c7": 13.085278772780434 + "points": { + "c1": 11.136947078115249, + "c2": 38.7434366566289, + "c3": -26.097825069021727, + "c4": 34.16960125084235, + "c5": -41.22048983400937, + "c6": 14.627741370669696, + "c7": 28.435963640115972 }, - "vertexSeeds": { - "c1": 7.743632102953304, - "c2": 8.031419775385173, - "c3": 7.876474688598381, - "c4": 7.926662064657151, - "c5": 8.048964638829174, - "c6": 8.145100806620992, - "c7": 7.645069172120079 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054083, + "c3": 9.801202034211746, + "c4": 7.8409616273693885, + "c5": 5.880721220527052, + "c6": 3.9204808136846943, + "c7": 1.9602404068423362 }, "rgb": [86, 146, 138] }, @@ -349305,23 +349305,23 @@ "year": 1799, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -30.393845695270606, - "c2": 5.554163194449778, - "c3": -14.232209403244504, - "c4": -18.792572893516187, - "c5": -12.683267740869656, - "c6": 20.91561968076192, - "c7": -3.002999740325702 + "points": { + "c1": 15.182792141577337, + "c2": 26.754334703135306, + "c3": 27.850845725352308, + "c4": 2.2104795505981585, + "c5": 23.719495682818454, + "c6": 6.222226003730491, + "c7": 27.60812265941383 }, - "vertexSeeds": { - "c1": 4.1901282767945665, - "c2": 4.334484011262826, - "c3": 4.098620450855977, - "c4": 4.336358321414499, - "c5": 4.316452757028023, - "c6": 4.232107958576637, - "c7": 4.344839377556279 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049934, + "c3": 5.201109570041603, + "c4": 4.160887656033285, + "c5": 3.120665742024967, + "c6": 2.080443828016649, + "c7": 1.040221914008318 }, "rgb": [86, 146, 138] }, @@ -349332,23 +349332,23 @@ "year": 1799, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -3.0466488193860997, - "c2": -29.46945905857793, - "c3": -18.529363200415933, - "c4": 19.569963562312857, - "c5": 32.353480598157276, - "c6": -31.709568620709604, - "c7": -11.802293584647813 + "points": { + "c1": 28.082554936460312, + "c2": -35.3694868286856, + "c3": -33.48766780167246, + "c4": 13.37336656021565, + "c5": 30.21626521421996, + "c6": -35.50349131926295, + "c7": -20.472773192004578 }, - "vertexSeeds": { - "c1": 9.908487815191753, - "c2": 9.876544637852433, - "c3": 9.635924187758445, - "c4": 9.722170729034483, - "c5": 9.620543949120615, - "c6": 10.05199194246415, - "c7": 10.025277185080496 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796116486, + "c3": 12.135922330097094, + "c4": 9.70873786407768, + "c5": 7.281553398058243, + "c6": 4.854368932038829, + "c7": 2.4271844660194146 }, "rgb": [77, 76, 132] }, @@ -349359,23 +349359,23 @@ "year": 1799, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -25.082066616299667, - "c2": -28.452717988335316, - "c3": -13.204259684653334, - "c4": 30.47738669389448, - "c5": -7.284966053616191, - "c6": 11.307615389104598, - "c7": -25.390287198717736 + "points": { + "c1": -19.781365111678134, + "c2": 34.42930487318093, + "c3": 14.694710576695655, + "c4": 18.05259045734514, + "c5": -13.758744783443252, + "c6": 29.85373197792388, + "c7": 31.567435364210603 }, - "vertexSeeds": { - "c1": 6.259513914854746, - "c2": 6.59206608176126, - "c3": 6.117066570716841, - "c4": 6.094101948780836, - "c5": 6.4839575139636825, - "c6": 6.397823303104348, - "c7": 6.480396116867238 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.486823855755885, + "c3": 7.905686546463248, + "c4": 6.32454923717059, + "c5": 4.743411927877954, + "c6": 3.162274618585295, + "c7": 1.5811373092926368 }, "rgb": [86, 146, 138] }, @@ -349386,23 +349386,23 @@ "year": 1799, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -0.17639158937009825, - "c2": 3.9846722828358274, - "c3": -18.524868999854377, - "c4": -0.5015547313145063, - "c5": 19.421904360770892, - "c6": 21.36485111398815, - "c7": -5.814284115560568 + "points": { + "c1": -15.854742742098601, + "c2": 24.87177021945994, + "c3": 0.18754947400390876, + "c4": 20.014070416858118, + "c5": 20.561159453977986, + "c6": -14.585083114972367, + "c7": 2.3439840435889394 }, - "vertexSeeds": { - "c1": 6.92132344944879, - "c2": 6.813501022303764, - "c3": 7.154458654817614, - "c4": 6.89455518012777, - "c5": 6.681209593181177, - "c6": 6.661184786177788, - "c7": 6.918300571398589 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042991, + "c3": 8.645399907535817, + "c4": 6.916319926028668, + "c5": 5.187239944521496, + "c6": 3.4581599630143227, + "c7": 1.7290799815071722 }, "rgb": [86, 146, 138] }, @@ -349413,23 +349413,23 @@ "year": 1799, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -3.675442460114944, - "c2": -27.555712572724804, - "c3": 1.3059786325068714, - "c4": -24.43452906743355, - "c5": -15.834586646292644, - "c6": -9.427435975475067, - "c7": -17.566855075195903 + "points": { + "c1": 10.138141993681096, + "c2": -1.5893101131636378, + "c3": 6.977869277304727, + "c4": -8.054500416727372, + "c5": -32.07551749907036, + "c6": -5.443666956524897, + "c7": 2.6472664320386414 }, - "vertexSeeds": { - "c1": 8.515150762768444, - "c2": 8.110488077265922, - "c3": 8.239454679573997, - "c4": 8.49095678575071, - "c5": 8.018552415393218, - "c6": 8.285793301900116, - "c7": 8.514189704455802 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019412, + "c3": 10.355987055016168, + "c4": 8.284789644012948, + "c5": 6.213592233009706, + "c6": 4.142394822006463, + "c7": 2.0711974110032427 }, "rgb": [58, 15, 49] }, @@ -349440,23 +349440,23 @@ "year": 1799, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 30.17894882545248, - "c2": 3.2946809722696244, - "c3": -9.123512622636635, - "c4": 32.93226692194722, - "c5": 30.881265592904683, - "c6": 21.774341526658155, - "c7": 30.03884422104474 + "points": { + "c1": 34.45202823259565, + "c2": -31.340378175334575, + "c3": -17.715345240701854, + "c4": -10.45068559955575, + "c5": 19.405624126638855, + "c6": -13.316988814891012, + "c7": -11.380289746879043 }, - "vertexSeeds": { - "c1": 10.26200817735438, - "c2": 10.954376781453618, - "c3": 10.797700413122389, - "c4": 10.382914090948693, - "c5": 10.818651355306539, - "c6": 10.199083439166806, - "c7": 10.8522743779487 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846035, + "c3": 13.129912159038392, + "c4": 10.503929727230704, + "c5": 7.877947295423017, + "c6": 5.251964863615374, + "c7": 2.625982431807687 }, "rgb": [58, 15, 49] }, @@ -349467,23 +349467,23 @@ "year": 1799, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": 12.124241346159671, - "c2": 4.25464956339524, - "c3": 27.618473587626276, - "c4": -8.322255859121682, - "c5": 35.93810064731891, - "c6": 5.498925342321371, - "c7": -19.43925067897623 + "points": { + "c1": 38.7228809878121, + "c2": -13.89702314194048, + "c3": -32.28661192954259, + "c4": -41.115637627213545, + "c5": 38.34168372437322, + "c6": -17.20100477100539, + "c7": -25.135044982188962 }, - "vertexSeeds": { - "c1": 7.75616255035623, - "c2": 7.837564246143647, - "c3": 7.451137538616302, - "c4": 7.750130384987778, - "c5": 7.786951546178175, - "c6": 7.588514290537735, - "c7": 7.66748103228203 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410078, + "c4": 7.6745261211280615, + "c5": 5.7558945908460455, + "c6": 3.8372630605640308, + "c7": 1.9186315302820154 }, "rgb": [222, 0, 59] }, @@ -349494,23 +349494,23 @@ "year": 1799, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 7.396349851198131, - "c2": -24.361818100071545, - "c3": -14.206212456046547, - "c4": 16.156555125777167, - "c5": 27.373979580963372, - "c6": 24.342848832337445, - "c7": 33.28246234423811 + "points": { + "c1": -7.039720198155337, + "c2": 7.3097503137498165, + "c3": -37.62800604474947, + "c4": -29.62017661322423, + "c5": -34.18309806447366, + "c6": -19.35431766900686, + "c7": -36.56540814201616 }, - "vertexSeeds": { - "c1": 2.397274086570419, - "c2": 2.3657708184707236, - "c3": 2.400124983842721, - "c4": 2.3892509272741065, - "c5": 2.297756642133751, - "c6": 2.3542831281767134, - "c7": 2.407662662268954 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484016, + "c3": 2.9588534442903383, + "c4": 2.3670827554322678, + "c5": 1.7753120665742044, + "c6": 1.1835413777161339, + "c7": 0.5917706888580637 }, "rgb": [58, 15, 49] }, @@ -349521,23 +349521,23 @@ "year": 1800, "resistanceReported": true, "duration": 41472000, - "curveSeeds": { - "c1": 49.62893306297975, - "c2": -36.01187795240432, - "c3": 15.595747167411623, - "c4": -15.403768750540536, - "c5": 37.996793359915095, - "c6": -44.90450255688386, - "c7": 4.075130092612838 + "points": { + "c1": 1.3410718319272377, + "c2": 52.13400190447498, + "c3": -8.960656813096378, + "c4": -34.88725339989322, + "c5": -54.50091587525938, + "c6": 57.091462708577204, + "c7": -16.53875091938086 }, - "vertexSeeds": { - "c1": 3.7469842826308892, - "c2": 3.8411768391066694, - "c3": 3.8080094869543935, - "c4": 3.733834669167122, - "c5": 3.9081450654964955, - "c6": 3.8042495464176587, - "c7": 3.9728489890700995 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325941, + "c3": 4.785020804438279, + "c4": 3.8280166435506273, + "c5": 2.871012482662965, + "c6": 1.9140083217753137, + "c7": 0.9570041608876625 }, "rgb": [238, 201, 159] }, @@ -349548,23 +349548,23 @@ "year": 1799, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 9.271582721749674, - "c2": 20.060318214950804, - "c3": 20.90140808595369, - "c4": -5.839315648342151, - "c5": -23.41004122495791, - "c6": -25.305436176753375, - "c7": 22.301547279879877 + "points": { + "c1": -12.441764410217232, + "c2": -30.080442752741853, + "c3": -3.4409036773112334, + "c4": 7.498356613932096, + "c5": 16.34570400295415, + "c6": -11.775080817612764, + "c7": 29.96630905256562 }, - "vertexSeeds": { - "c1": 8.344767545827914, - "c2": 8.117127220665113, - "c3": 8.000161644660414, - "c4": 8.216164868418815, - "c5": 8.245752816594456, - "c6": 7.902661019522903, - "c7": 8.026996152632806 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737866, + "c3": 10.19417475728156, + "c4": 8.155339805825252, + "c5": 6.116504854368944, + "c6": 4.077669902912615, + "c7": 2.0388349514563076 }, "rgb": [222, 0, 59] }, @@ -349575,23 +349575,23 @@ "year": 1799, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -25.313440166952127, - "c2": 29.192337241258528, - "c3": 22.59482361675404, - "c4": 21.19660234857964, - "c5": -6.232789720504488, - "c6": -25.810819500229876, - "c7": -2.4433826298208245 + "points": { + "c1": -33.75495501364559, + "c2": 15.875131767772231, + "c3": 32.41943171663676, + "c4": 14.030101926587335, + "c5": 23.821181485817526, + "c6": -29.57542957265384, + "c7": -8.09055038137284 }, - "vertexSeeds": { - "c1": 2.47225323232737, - "c2": 2.5043553512562493, - "c3": 2.4761970680687773, - "c4": 2.4998298277508044, - "c5": 2.4827320907359813, - "c6": 2.4804377658840497, - "c7": 2.470564551039052 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.606102635228866, + "c3": 3.0050855293573484, + "c4": 2.404068423485891, + "c5": 1.803051317614433, + "c6": 1.2020342117429752, + "c7": 0.6010171058714577 }, "rgb": [238, 201, 159] }, @@ -349602,23 +349602,23 @@ "year": 1799, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 4.055177199443307, - "c2": -9.224075526592685, - "c3": 2.5475076494360493, - "c4": -18.515202796726307, - "c5": 29.34692999223501, - "c6": 18.617032703171176, - "c7": -32.067219927888694 + "points": { + "c1": -22.978296416589803, + "c2": 17.555586049149774, + "c3": -1.1224337220330654, + "c4": -22.375488609960435, + "c5": 9.299402235072222, + "c6": 33.96397865089655, + "c7": -10.492684778734539 }, - "vertexSeeds": { - "c1": 6.692666415218787, - "c2": 6.757183419143554, - "c3": 6.699467011411318, - "c4": 6.7681421355816305, - "c5": 6.777138558128192, - "c6": 7.088141254488577, - "c7": 6.962328009028896 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.23578363384188, + "c3": 8.529819694868248, + "c4": 6.823855755894594, + "c5": 5.11789181692094, + "c6": 3.411927877947286, + "c7": 1.7059639389736538 }, "rgb": [86, 146, 138] }, @@ -349629,23 +349629,23 @@ "year": 1799, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": 9.805691908090331, - "c2": 0.35827070459407295, - "c3": 16.252777880363297, - "c4": -11.264644775158205, - "c5": 9.31706706493236, - "c6": -12.23524012252529, - "c7": -1.2667745359283593 + "points": { + "c1": -20.02187387416479, + "c2": 15.275041626640565, + "c3": 23.021370976045652, + "c4": 2.308959606654163, + "c5": -24.454574940816887, + "c6": -3.4169374531463, + "c7": -7.357739595617165 }, - "vertexSeeds": { - "c1": 1.0580979679604015, - "c2": 1.0561109150861157, - "c3": 0.9802847210142599, - "c4": 1.1899541554198865, - "c5": 1.2075624880935458, - "c6": 1.0106706413419437, - "c7": 1.1835055088890225 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.775312066574203, + "c3": 1.4794267221451685, + "c4": 1.1835413777161352, + "c5": 0.8876560332871009, + "c6": 0.5917706888580676, + "c7": 0.2958853444290344 }, "rgb": [58, 15, 49] }, @@ -349656,23 +349656,23 @@ "year": 1799, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 7.899604639875946, - "c2": -3.8512554837691297, - "c3": -4.56121677397762, - "c4": 29.224192476481086, - "c5": 8.477611737202665, - "c6": 27.998012242520446, - "c7": -25.773277824280562 + "points": { + "c1": -34.393624592593476, + "c2": 3.6886296234334495, + "c3": 8.30784155699984, + "c4": 6.000501414308097, + "c5": 25.07897779113989, + "c6": 29.15669547747661, + "c7": -24.696828322665645 }, - "vertexSeeds": { - "c1": 9.602210371638744, - "c2": 9.119070300505202, - "c3": 9.521399458616708, - "c4": 9.537151581247517, - "c5": 9.635456536908219, - "c6": 8.970603712937033, - "c7": 8.962323519684098 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.78640776699029, + "c3": 11.488673139158577, + "c4": 9.190938511326861, + "c5": 6.893203883495145, + "c6": 4.5954692556634305, + "c7": 2.2977346278317152 }, "rgb": [58, 15, 49] }, @@ -349683,23 +349683,23 @@ "year": 1799, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -32.80314073483027, - "c2": -19.08402867632659, - "c3": -25.754676317096383, - "c4": -18.795850370990053, - "c5": -5.784717885577518, - "c6": 5.838336417756089, - "c7": -5.80031522590912 + "points": { + "c1": -8.413436541671103, + "c2": -32.702431153244085, + "c3": 36.06045478971369, + "c4": -17.733920848871676, + "c5": -21.960182039587657, + "c6": 27.6987134275966, + "c7": 25.050602288815526 }, - "vertexSeeds": { - "c1": 7.581348158609316, - "c2": 7.845540666762797, - "c3": 7.730719855502999, - "c4": 7.601068919786423, - "c5": 7.3442571806876416, - "c6": 7.360999530469079, - "c7": 7.827137354533369 + "offsets": { + "c1": 13.139158576051779, + "c2": 11.262135922330106, + "c3": 9.38511326860841, + "c4": 7.508090614886737, + "c5": 5.631067961165042, + "c6": 3.7540453074433686, + "c7": 1.8770226537216954 }, "rgb": [86, 146, 138] }, @@ -349710,23 +349710,23 @@ "year": 1799, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 2.145714789840355, - "c2": -2.6149225291814844, - "c3": 17.10776731419177, - "c4": 19.60049244900258, - "c5": -32.985381668226744, - "c6": -31.413374182040933, - "c7": 21.767832243168975 + "points": { + "c1": -22.896486218154358, + "c2": 3.4685464386959666, + "c3": -2.677159577594203, + "c4": -28.77272573880174, + "c5": -14.071553100410615, + "c6": 24.360003033649377, + "c7": 32.877774833888736 }, - "vertexSeeds": { - "c1": 6.33901397589854, - "c2": 6.410462263190725, - "c3": 6.267516316640522, - "c4": 6.1255285863087625, - "c5": 5.891158960778107, - "c6": 6.163619152670559, - "c7": 6.200751839585557 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313453, + "c3": 7.651410078594545, + "c4": 6.121128062875636, + "c5": 4.5908460471567265, + "c6": 3.060564031437818, + "c7": 1.530282015718909 }, "rgb": [238, 201, 159] }, @@ -349737,23 +349737,23 @@ "year": 1799, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -18.817958613022096, - "c2": -22.88176759212837, - "c3": -1.0818639928913285, - "c4": 24.37600240783228, - "c5": -13.663349443590569, - "c6": 18.95098838671297, - "c7": -10.88007990859488 + "points": { + "c1": 26.849528698196416, + "c2": -13.96133757738523, + "c3": 28.440210057299517, + "c4": 20.011528241797357, + "c5": 25.993924500780842, + "c6": 3.417092066419407, + "c7": 14.618421014595235 }, - "vertexSeeds": { - "c1": 6.957613917191391, - "c2": 6.730850321271644, - "c3": 7.01658479857638, - "c4": 6.967847435682215, - "c5": 6.7498850439769456, - "c6": 6.654309270218482, - "c7": 6.753832074895221 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721214, + "c3": 8.460471567267671, + "c4": 6.76837725381415, + "c5": 5.076282940360607, + "c6": 3.384188626907064, + "c7": 1.6920943134535429 }, "rgb": [58, 15, 49] }, @@ -349764,23 +349764,23 @@ "year": 1799, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 23.40792065657876, - "c2": 28.71919143210357, - "c3": -11.823222228531598, - "c4": -9.738148359814218, - "c5": -27.98960237900234, - "c6": 1.6415051257577353, - "c7": 20.698197359980128 + "points": { + "c1": 9.756071333027698, + "c2": 0.6579371833364007, + "c3": -23.16761139237394, + "c4": -7.3863879899876785, + "c5": -19.2488225879572, + "c6": -10.87392866552009, + "c7": 28.31977156086672 }, - "vertexSeeds": { - "c1": 8.268593972179103, - "c2": 8.03381315578738, - "c3": 8.000631976103076, - "c4": 7.702586583491208, - "c5": 8.009158326523217, - "c6": 7.76509366679702, - "c7": 7.771043906119028 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.90013869625519, + "c3": 9.916782246879336, + "c4": 7.933425797503459, + "c5": 5.950069348127607, + "c6": 3.9667128987517297, + "c7": 1.9833564493758762 }, "rgb": [222, 0, 59] }, @@ -349791,23 +349791,23 @@ "year": 1799, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 20.85472201656667, - "c2": 18.389397602718383, - "c3": -14.975515642797635, - "c4": -19.950552284127784, - "c5": 5.206359034871944, - "c6": 11.811622610661452, - "c7": 23.24681211825701 + "points": { + "c1": 17.055818686673653, + "c2": 3.6079545415222185, + "c3": 5.266211800432231, + "c4": -7.39340015191992, + "c5": -14.074351728753163, + "c6": -17.78380229366627, + "c7": -22.07013470618923 }, - "vertexSeeds": { - "c1": 9.083228738063566, - "c2": 8.754740055965243, - "c3": 8.735219476453123, - "c4": 9.213386635841033, - "c5": 8.626144660759554, - "c6": 9.301759684475178, - "c7": 9.034625030184294 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346738, + "c3": 11.118816458622277, + "c4": 8.895053166897819, + "c5": 6.6712898751733585, + "c6": 4.44752658344892, + "c7": 2.223763291724438 }, "rgb": [238, 201, 159] }, @@ -349818,23 +349818,23 @@ "year": 1799, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -3.6898199263278073, - "c2": -10.647137448828147, - "c3": -10.22666980680081, - "c4": 6.9165732720158495, - "c5": -27.450281109810472, - "c6": -26.969548090007386, - "c7": -24.245948591018312 + "points": { + "c1": 11.778443792585797, + "c2": 24.14352264946048, + "c3": 24.24876279219309, + "c4": -10.489970180519006, + "c5": 20.333844773420033, + "c6": -9.288235807136587, + "c7": -20.7753440913648 }, - "vertexSeeds": { - "c1": 7.133468783417596, - "c2": 7.151710182586433, - "c3": 7.092710146863379, - "c4": 6.806323639034361, - "c5": 7.1642628586199795, - "c6": 7.090668618928773, - "c7": 6.8861637628111385 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922324, + "c3": 8.576051779935284, + "c4": 6.860841423948224, + "c5": 5.145631067961162, + "c6": 3.4304207119741004, + "c7": 1.7152103559870613 }, "rgb": [238, 201, 159] }, @@ -349845,23 +349845,23 @@ "year": 1799, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 20.61217821937084, - "c2": 5.893745013565486, - "c3": -29.053884480707165, - "c4": 11.941811922575859, - "c5": -1.9225587636499384, - "c6": -18.245409981048144, - "c7": -17.32489473454731 + "points": { + "c1": 3.5486693503462874, + "c2": -4.973224713388305, + "c3": -1.1426420114817688, + "c4": -34.52211323623659, + "c5": 26.557575935680873, + "c6": 12.294163012599753, + "c7": 11.10913829021193 }, - "vertexSeeds": { - "c1": 6.27836900013641, - "c2": 6.116596313814852, - "c3": 6.23563528692595, - "c4": 5.946993251356495, - "c5": 5.888184666422141, - "c6": 5.947554293729895, - "c7": 5.9179967090391985 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112354, + "c3": 7.535829865926949, + "c4": 6.028663892741569, + "c5": 4.5214979195561655, + "c6": 3.0143319463707847, + "c7": 1.5071659731854035 }, "rgb": [222, 0, 59] }, @@ -349872,23 +349872,23 @@ "year": 1799, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 7.492254119597174, - "c2": -30.80371214665677, - "c3": -1.1276004357312424, - "c4": -19.720856031657846, - "c5": 16.254126489145076, - "c6": -1.7856890608423477, - "c7": -14.662006806734897 + "points": { + "c1": 28.216483675437402, + "c2": -2.0590849358656875, + "c3": 3.846631264035132, + "c4": 4.47745446178925, + "c5": 10.927708599707998, + "c6": -4.707971081933906, + "c7": -15.997251999303426 }, - "vertexSeeds": { - "c1": 5.043128383334393, - "c2": 5.032404503546899, - "c3": 5.2659562204238535, - "c4": 5.109025098543072, - "c5": 5.341292800413575, - "c6": 5.235194168254453, - "c7": 5.169779739268584 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302353, + "c3": 6.495607951918641, + "c4": 5.196486361534909, + "c5": 3.8973647711511763, + "c6": 2.5982431807674655, + "c7": 1.2991215903837328 }, "rgb": [77, 76, 132] }, @@ -349899,23 +349899,23 @@ "year": 1799, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -22.55921493813666, - "c2": 13.41321015392393, - "c3": -19.771646599201585, - "c4": -9.261745314784942, - "c5": -25.988749532669345, - "c6": -19.80418770275703, - "c7": 21.995478163854575 + "points": { + "c1": 15.928164357430816, + "c2": -29.686950801628175, + "c3": 21.768301672158685, + "c4": -10.864903117205753, + "c5": 15.630664909902308, + "c6": -19.102151310731934, + "c7": 26.24955224039774 }, - "vertexSeeds": { - "c1": 9.514442457177767, - "c2": 9.350341527936134, - "c3": 9.54041940077015, - "c4": 9.334584466001873, - "c5": 9.860806482738361, - "c6": 9.243870087610526, - "c7": 9.933676524695539 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.257975034674052, + "c3": 11.88164586222839, + "c4": 9.505316689782703, + "c5": 7.128987517337038, + "c6": 4.752658344891351, + "c7": 2.3763291724456868 }, "rgb": [238, 201, 159] }, @@ -349926,23 +349926,23 @@ "year": 1799, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": 11.245782488686014, - "c2": -9.804171760796523, - "c3": -1.9857594085200247, - "c4": 9.690443155707555, - "c5": -15.438318930154576, - "c6": 16.6636683983304, - "c7": -4.460522646676768 + "points": { + "c1": 6.438105658887729, + "c2": 9.206673017705079, + "c3": 8.207290678218659, + "c4": 5.710991999025044, + "c5": -21.64719002625452, + "c6": -7.171520591761162, + "c7": 21.015455058696496 }, - "vertexSeeds": { - "c1": 5.538264500118526, - "c2": 5.50307912652686, - "c3": 5.762770218346159, - "c4": 5.3857413234373945, - "c5": 5.563205982923385, - "c6": 5.243662688668787, - "c7": 5.440470816522701 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348133, + "c3": 7.096625057790104, + "c4": 5.677300046232089, + "c5": 4.25797503467406, + "c6": 2.8386500231160445, + "c7": 1.4193250115580156 }, "rgb": [86, 146, 138] }, @@ -349953,23 +349953,23 @@ "year": 1799, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 4.118695468132355, - "c2": -8.800916530850056, - "c3": 4.846874142222273, - "c4": 27.962404845187837, - "c5": -7.066787271040418, - "c6": -20.973201748475045, - "c7": -21.969771857386373 + "points": { + "c1": 13.549050221345826, + "c2": -22.650264268451842, + "c3": -5.735024584590246, + "c4": 9.051837655401737, + "c5": 9.223166094384421, + "c6": -14.03817574448918, + "c7": 3.1950424250946874 }, - "vertexSeeds": { - "c1": 5.762063322494924, - "c2": 5.654665946323989, - "c3": 5.698874086820153, - "c4": 5.3004489143633275, - "c5": 5.7387269731600234, - "c6": 5.76878160362818, - "c7": 5.547069957911274 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986137, + "c3": 6.888580674988432, + "c4": 5.5108645399907505, + "c5": 4.133148404993069, + "c6": 2.7554322699953864, + "c7": 1.3777161349976823 }, "rgb": [77, 76, 132] }, @@ -349980,23 +349980,23 @@ "year": 1799, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 1.450286144686789, - "c2": 26.210374685298802, - "c3": 0.7336784052075807, - "c4": -19.517112120773632, - "c5": -22.478297003700085, - "c6": -16.50383828023059, - "c7": 16.533493826013796 + "points": { + "c1": 20.049877540496134, + "c2": -21.335741021054098, + "c3": 25.210732450142146, + "c4": -25.779710269881907, + "c5": 26.392623417821753, + "c6": -16.723997315666207, + "c7": -10.523371892729365 }, - "vertexSeeds": { - "c1": 6.908262418729345, - "c2": 6.862740271725378, - "c3": 6.7029198941765635, - "c4": 6.379716485737246, - "c5": 6.421369582745446, - "c6": 6.3765210021688805, - "c7": 6.414747900261611 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -350007,23 +350007,23 @@ "year": 1799, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -5.93673902386162, - "c2": 24.001148721978076, - "c3": -7.439033133062505, - "c4": 31.56692830396426, - "c5": 25.591046548069563, - "c6": 32.273027848625176, - "c7": -15.218475023670031 + "points": { + "c1": -2.2813862575700696, + "c2": -15.592444814256854, + "c3": -26.598098732986507, + "c4": -29.473565385061043, + "c5": 13.545862279976689, + "c6": -2.1065911254591967, + "c7": -6.1221633911192335 }, - "vertexSeeds": { - "c1": 6.157944519750784, - "c2": 5.935194425645836, - "c3": 6.040148701358468, - "c4": 6.179427616718145, - "c5": 6.067746004648164, - "c6": 6.0465431909478085, - "c7": 6.076214783495719 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951467, + "c3": 7.443365695792877, + "c4": 5.954692556634311, + "c5": 4.466019417475722, + "c6": 2.9773462783171554, + "c7": 1.4886731391585888 }, "rgb": [58, 15, 49] }, @@ -350034,23 +350034,23 @@ "year": 1799, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 36.37507227388604, - "c2": 15.521715602104862, - "c3": -10.138167491410584, - "c4": 36.17936175651685, - "c5": -15.383670292256731, - "c6": 9.073095496832686, - "c7": -32.43690872438216 + "points": { + "c1": 38.04742186835809, + "c2": 19.183451331075283, + "c3": -17.05377729857513, + "c4": -27.72179975764996, + "c5": -34.351527056383816, + "c6": 1.8359679959332595, + "c7": 31.69628340659569 }, - "vertexSeeds": { - "c1": 5.053327610143745, - "c2": 5.203515453508476, - "c3": 5.173783004201924, - "c4": 5.419092046913362, - "c5": 5.167741759986639, - "c6": 5.17793598833415, - "c7": 5.347507251648742 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342573, + "c3": 6.518723994452158, + "c4": 5.214979195561722, + "c5": 3.9112343966712864, + "c6": 2.6074895977808503, + "c7": 1.303744798890436 }, "rgb": [58, 15, 49] }, @@ -350061,23 +350061,23 @@ "year": 1799, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 34.689610304814856, - "c2": -30.31064799602554, - "c3": 18.271029457089114, - "c4": 2.724834500848722, - "c5": -34.501005763944534, - "c6": 27.06637964941357, - "c7": -18.619324426380356 + "points": { + "c1": 35.36845801195225, + "c2": 5.999653806164176, + "c3": 22.000397859129713, + "c4": 30.77023397712211, + "c5": -1.063457957707989, + "c6": -42.418558499661465, + "c7": 32.9663525452818 }, - "vertexSeeds": { - "c1": 3.9763961714615106, - "c2": 3.9586009614797493, - "c3": 3.8185790225067655, - "c4": 4.026134372658104, - "c5": 3.987237847701364, - "c6": 3.9056894012623737, - "c7": 3.7852409700989984 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406382, + "c3": 4.831252889505321, + "c4": 3.8650023116042465, + "c5": 2.8987517337031847, + "c6": 1.9325011558021232, + "c7": 0.9662505779010616 }, "rgb": [58, 15, 49] }, @@ -350088,23 +350088,23 @@ "year": 1799, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 32.99880593287273, - "c2": 14.091745351903874, - "c3": -28.03938030713672, - "c4": -29.350871050974767, - "c5": 24.574102137663047, - "c6": -21.870973040623902, - "c7": -7.604375547662496 + "points": { + "c1": -18.373833476442247, + "c2": -36.40494342096806, + "c3": 20.60747891092968, + "c4": -19.090629248264822, + "c5": -33.67166610117575, + "c6": 1.5776300291049665, + "c7": 32.41380438171619 }, - "vertexSeeds": { - "c1": 7.503594783835794, - "c2": 7.530513932709157, - "c3": 7.271895072654067, - "c4": 7.348115437537144, - "c5": 6.990067211841716, - "c6": 7.33430565770042, - "c7": 7.38242304502383 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807207, + "c3": 9.084604715672668, + "c4": 7.267683772538132, + "c5": 5.450762829403593, + "c6": 3.6338418862690767, + "c7": 1.8169209431345383 }, "rgb": [86, 146, 138] }, @@ -350115,23 +350115,23 @@ "year": 1799, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -17.98711043038353, - "c2": 0.050123588761593396, - "c3": 8.482064192361563, - "c4": 14.98380632972951, - "c5": 1.913209336017598, - "c6": 3.9482669048609935, - "c7": -15.363446920491029 + "points": { + "c1": -18.32441791135042, + "c2": 3.6498483615358417, + "c3": -3.3244081631067672, + "c4": 20.2257270586436, + "c5": 7.025577275572296, + "c6": 8.476028552579738, + "c7": 18.384695595107345 }, - "vertexSeeds": { - "c1": 2.2938470647791376, - "c2": 2.2960897544159358, - "c3": 2.306363007186651, - "c4": 2.302503142929701, - "c5": 2.306994532981483, - "c6": 2.3115575038719127, - "c7": 2.294108658485813 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.328710124826645, + "c3": 2.7739251040221675, + "c4": 2.219140083217745, + "c5": 1.6643550624133225, + "c6": 1.1095700416089, + "c7": 0.5547850208044225 }, "rgb": [77, 76, 132] }, @@ -350142,23 +350142,23 @@ "year": 1799, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -5.524268713956493, - "c2": 1.131535845949596, - "c3": 2.8098467448347613, - "c4": -19.206895354850538, - "c5": -3.0605029826092007, - "c6": 2.4268392338126823, - "c7": 10.8715675021162 + "points": { + "c1": 10.457045990908476, + "c2": -17.542913150341718, + "c3": -22.53745007833831, + "c4": -11.786375738482588, + "c5": 5.085333526343348, + "c6": 14.185271908223086, + "c7": 19.48307994680944 }, - "vertexSeeds": { - "c1": 1.4930579745611865, - "c2": 1.6003906997478068, - "c3": 1.9689605007931075, - "c4": 1.6159173872273356, - "c5": 1.5298560273155104, - "c6": 1.9879976250900677, - "c7": 1.6447250799268227 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504854, + "c3": 2.5889967637540456, + "c4": 2.0711974110032365, + "c5": 1.553398058252427, + "c6": 1.0355987055016174, + "c7": 0.5177993527508095 }, "rgb": [58, 15, 49] }, @@ -350169,23 +350169,23 @@ "year": 1799, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 1.994817484794023, - "c2": 8.215893729635614, - "c3": -1.5206227661364125, - "c4": -6.224732347114401, - "c5": 4.836381667787453, - "c6": -2.4719090639413146, - "c7": -1.4576326703715061 + "points": { + "c1": 9.399416589443629, + "c2": -3.7336392902956668, + "c3": -3.1403813084323993, + "c4": -26.046832611982712, + "c5": 4.427291431466106, + "c6": 11.594347773749671, + "c7": 3.5424657040743206 }, - "vertexSeeds": { - "c1": 4.837677134395251, - "c2": 5.0737653927538116, - "c3": 4.871362817932342, - "c4": 4.908997775339064, - "c5": 5.010032522784378, - "c6": 4.987831097944838, - "c7": 4.683419874030642 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578353, + "c3": 6.079519186315306, + "c4": 4.863615349052246, + "c5": 3.647711511789188, + "c6": 2.431807674526118, + "c7": 1.21590383726307 }, "rgb": [77, 76, 132] }, @@ -350196,23 +350196,23 @@ "year": 1799, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 8.254864112792536, - "c2": 26.87644537091612, - "c3": 15.979507070646537, - "c4": -24.44250287460441, - "c5": 12.771735700624301, - "c6": 6.235434621651972, - "c7": 21.814930896532434 + "points": { + "c1": 9.652179337177696, + "c2": -21.49446331411091, + "c3": -2.26386715017205, + "c4": -1.81436592630768, + "c5": -17.39406770012743, + "c6": 11.544784142432025, + "c7": -24.226756041142302 }, - "vertexSeeds": { - "c1": 3.841198620889235, - "c2": 3.763359425853727, - "c3": 3.849906456163769, - "c4": 3.827204677479637, - "c5": 3.6957314021672607, - "c6": 3.943885274229872, - "c7": 3.7112412384968083 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205274, + "c3": 4.715672676837721, + "c4": 3.772538141470179, + "c5": 2.829403606102637, + "c6": 1.8862690707350953, + "c7": 0.9431345353675418 }, "rgb": [86, 146, 138] }, @@ -350223,23 +350223,23 @@ "year": 1799, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -12.372305181474545, - "c2": -5.690827965432657, - "c3": 27.79853476384626, - "c4": 2.65770630172009, - "c5": 19.798693988516344, - "c6": -11.295120778825936, - "c7": 18.041885100254827 + "points": { + "c1": 15.739834672905726, + "c2": -4.762618134112589, + "c3": 7.60910383579154, + "c4": 13.433338806597543, + "c5": -18.061210041475128, + "c6": 8.689495881159818, + "c7": -8.466753429419743 }, - "vertexSeeds": { - "c1": 7.38589531957844, - "c2": 7.313636334771985, - "c3": 7.697034426663758, - "c4": 7.688716969584327, - "c5": 7.741609159987928, - "c6": 7.491860398104774, - "c7": 7.35676795988916 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.17891816920944, + "c3": 9.315765141007857, + "c4": 7.452612112806294, + "c5": 5.58945908460471, + "c6": 3.726306056403147, + "c7": 1.8631530282015845 }, "rgb": [86, 146, 138] }, @@ -350250,23 +350250,23 @@ "year": 1799, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 13.991069817521996, - "c2": 30.903402746955813, - "c3": 8.556519912012071, - "c4": 27.999889784972346, - "c5": 27.242962874942847, - "c6": -17.5344922572282, - "c7": -0.19307908128025275 + "points": { + "c1": 25.537716238764517, + "c2": -28.536053375279486, + "c3": 31.115310220852756, + "c4": 22.950353005533444, + "c5": -20.075001679042302, + "c6": 0.4964910498340913, + "c7": 17.683782759581845 }, - "vertexSeeds": { - "c1": 6.902914104250388, - "c2": 6.770936319554244, - "c3": 6.4438939873878995, - "c4": 6.551236611853701, - "c5": 6.443307197016507, - "c6": 6.5576580991688225, - "c7": 6.517707342068069 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -350277,23 +350277,23 @@ "year": 1799, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -12.512439715359475, - "c2": -19.514538670330424, - "c3": 9.611412951975261, - "c4": -8.104109386002587, - "c5": 17.080951501095363, - "c6": -16.08974684582282, - "c7": 23.094063894635113 + "points": { + "c1": -12.903228407598608, + "c2": -16.490702227803318, + "c3": -23.92983657705072, + "c4": 15.558375833608203, + "c5": 2.980710076001767, + "c6": 7.207974863115645, + "c7": 7.828529302137987 }, - "vertexSeeds": { - "c1": 7.400806131523692, - "c2": 7.282068761242236, - "c3": 7.502557701835926, - "c4": 7.491947497423562, - "c5": 7.845404750802359, - "c6": 7.5290355141167655, - "c7": 7.598589681484589 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289884, + "c3": 9.361997226074893, + "c4": 7.489597780859924, + "c5": 5.6171983356449315, + "c6": 3.744798890429962, + "c7": 1.872399445214992 }, "rgb": [238, 201, 159] }, @@ -350304,23 +350304,23 @@ "year": 1799, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -25.557558284872187, - "c2": -23.927390537679887, - "c3": 8.88458997284669, - "c4": 36.067888383497184, - "c5": 30.195011673128768, - "c6": 0.6598194133036301, - "c7": -31.89590776507748 + "points": { + "c1": 38.59921088254931, + "c2": 37.32239618625618, + "c3": -13.721585527760528, + "c4": 20.12978170298168, + "c5": -14.348768058932293, + "c6": -21.708005074872084, + "c7": -39.38482582422336 }, - "vertexSeeds": { - "c1": 5.392838541763438, - "c2": 5.528382133904303, - "c3": 5.462583603431954, - "c4": 5.527665225484393, - "c5": 5.7249092590030655, - "c6": 5.454045998008141, - "c7": 5.609325219798611 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026357, + "c3": 6.911696717521967, + "c4": 5.529357374017579, + "c5": 4.14701803051319, + "c6": 2.764678687008778, + "c7": 1.382339343504389 }, "rgb": [86, 146, 138] }, @@ -350331,23 +350331,23 @@ "year": 1801, "resistanceReported": false, "duration": 64972800, - "curveSeeds": { - "c1": 51.20337594042931, - "c2": 6.274211481607139, - "c3": -36.22131215744807, - "c4": 75.04422091696532, - "c5": 19.690674080478644, - "c6": -55.59146114150363, - "c7": -67.75943786427536 + "points": { + "c1": 68.71548526587469, + "c2": 49.30982696834826, + "c3": -43.931172283714766, + "c4": 27.518248329594698, + "c5": -74.02310476744546, + "c6": 17.691097531687163, + "c7": -34.72935509545397 }, - "vertexSeeds": { - "c1": 5.737697304402958, - "c2": 5.916981154095277, - "c3": 6.189519731275338, - "c4": 5.818785821509679, - "c5": 5.723415162571347, - "c6": 5.977940501058219, - "c7": 5.733304185576144 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911245, + "c3": 7.420249653259359, + "c4": 5.936199722607496, + "c5": 4.452149791955611, + "c6": 2.968099861303748, + "c7": 1.484049930651863 }, "rgb": [58, 15, 49] }, @@ -350358,23 +350358,23 @@ "year": 1800, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": -12.699559821231453, - "c2": 6.969541760290532, - "c3": 2.555880683771278, - "c4": 1.8480654706353548, - "c5": -44.79677143182915, - "c6": 31.972156722281504, - "c7": -37.835421162486405 + "points": { + "c1": -42.17962853032983, + "c2": -17.45245940652758, + "c3": 8.57893133897911, + "c4": -27.749233739204023, + "c5": -41.93243536363934, + "c6": -5.587137478198173, + "c7": 19.86013195530993 }, - "vertexSeeds": { - "c1": 1.7068049577350242, - "c2": 1.8502723347305787, - "c3": 1.8170573864717487, - "c4": 1.769868858470419, - "c5": 1.7493272694824917, - "c6": 1.8196275289431907, - "c7": 1.8200783425090235 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981969, + "c3": 2.2884882108183078, + "c4": 1.8307905686546462, + "c5": 1.3730929264909846, + "c6": 0.9153952843273231, + "c7": 0.45769764216366154 }, "rgb": [86, 146, 138] }, @@ -350385,23 +350385,23 @@ "year": 1799, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 19.804921958361867, - "c2": 6.934889122936504, - "c3": -3.254933914681917, - "c4": -10.12758085928886, - "c5": -3.9244768455555707, - "c6": 23.519443863788382, - "c7": 20.678190013605146 + "points": { + "c1": -22.484945467734086, + "c2": -12.477482875183574, + "c3": 11.382306307282356, + "c4": -9.784939249198185, + "c5": 0.8257935104886478, + "c6": 18.467518981112455, + "c7": 12.200527028293607 }, - "vertexSeeds": { - "c1": 3.693169971923596, - "c2": 3.675256379894699, - "c3": 3.7206677705369473, - "c4": 3.7151821600899195, - "c5": 3.6658946086251247, - "c6": 3.6930350354657193, - "c7": 3.6557876321237357 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.35367545076281, + "c3": 4.461396208969031, + "c4": 3.569116967175207, + "c5": 2.6768377253814273, + "c6": 1.7845584835876036, + "c7": 0.8922792417937796 }, "rgb": [222, 0, 59] }, @@ -350412,23 +350412,23 @@ "year": 1800, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -0.2574707174833222, - "c2": -39.238744878917956, - "c3": 5.551004877220528, - "c4": -43.31682808293361, - "c5": -21.693460292532464, - "c6": 30.014722411626224, - "c7": 35.59493590903941 + "points": { + "c1": 14.378718611286253, + "c2": -24.98520516879973, + "c3": 44.52982950954518, + "c4": 22.850343776537073, + "c5": 20.17378257284585, + "c6": 19.3073771473819, + "c7": -1.810191254064847 }, - "vertexSeeds": { - "c1": 5.292672303338659, - "c2": 5.195517718597682, - "c3": 5.496534801434748, - "c4": 5.262473675811666, - "c5": 5.342621332152246, - "c6": 5.531308711894748, - "c7": 5.712144125556281 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390656, + "c4": 5.7327785483125275, + "c5": 4.299583911234399, + "c6": 2.866389274156257, + "c7": 1.4331946370781286 }, "rgb": [58, 15, 49] }, @@ -350439,23 +350439,23 @@ "year": 1799, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 24.535489305553796, - "c2": -4.357747800923626, - "c3": 26.415794709857217, - "c4": -13.97354532412993, - "c5": 17.38329383981023, - "c6": 8.9954551232332, - "c7": 0.1699533810878684 + "points": { + "c1": 25.674597237105672, + "c2": 19.69786448707073, + "c3": -0.9529756387251496, + "c4": -3.375686954763296, + "c5": -20.318638631163658, + "c6": 13.244073667892536, + "c7": -20.105354729141744 }, - "vertexSeeds": { - "c1": 3.099721534714994, - "c2": 3.1101719145084035, - "c3": 2.971801470957551, - "c4": 2.9278196432455044, - "c5": 3.07344438909739, - "c6": 3.021468757216656, - "c7": 3.0735732418381696 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515946, + "c3": 3.744798890429964, + "c4": 2.9958391123439685, + "c5": 2.246879334257973, + "c6": 1.497919556171978, + "c7": 0.7489597780859953 }, "rgb": [77, 76, 132] }, @@ -350466,23 +350466,23 @@ "year": 1799, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 5.4265775973886505, - "c2": -9.526802868233215, - "c3": 30.921897414455394, - "c4": 11.799840081768345, - "c5": -27.146813893764502, - "c6": 14.96181531212423, - "c7": 26.86223695999984 + "points": { + "c1": -6.776794597912126, + "c2": -21.836948897400298, + "c3": -25.451524596377276, + "c4": 32.86779568206663, + "c5": 20.908049089343002, + "c6": 29.624945079188564, + "c7": -8.201315564375822 }, - "vertexSeeds": { - "c1": 5.267332518636767, - "c2": 4.9246274813687965, - "c3": 5.031335202126482, - "c4": 4.800153760370118, - "c5": 4.734166428954173, - "c6": 4.680326627206038, - "c7": 5.272252546249626 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650484, + "c4": 5.048543689320392, + "c5": 3.786407766990288, + "c6": 2.524271844660189, + "c7": 1.2621359223300914 }, "rgb": [77, 76, 132] }, @@ -350493,23 +350493,23 @@ "year": 1799, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -15.72245375626198, - "c2": -31.071074663063794, - "c3": 4.663663548074396, - "c4": -12.520812805018682, - "c5": 7.800011251259434, - "c6": -29.550782978522996, - "c7": 10.64938455697451 + "points": { + "c1": 26.47079845721416, + "c2": -10.116180200661894, + "c3": 13.683189907743923, + "c4": -5.2846237509896525, + "c5": -14.064247273183906, + "c6": 32.858522547921396, + "c7": 23.260448784132244 }, - "vertexSeeds": { - "c1": 0.8239060189989079, - "c2": 0.06370581292284268, - "c3": 0.4134696528975331, - "c4": 0.6867754313227525, - "c5": 0.4174895734744918, - "c6": 0.5683105655652955, - "c7": 0.6817273004546941 + "offsets": { + "c1": 1.4563106796116505, + "c2": 1.248266296809986, + "c3": 1.0402219140083218, + "c4": 0.8321775312066575, + "c5": 0.624133148404993, + "c6": 0.41608876560332864, + "c7": 0.20804438280166443 }, "rgb": [86, 146, 138] }, @@ -350520,23 +350520,23 @@ "year": 1799, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -25.21055186746321, - "c2": -5.044275107961791, - "c3": 29.17072978080808, - "c4": 22.359827657781857, - "c5": 30.594250237131476, - "c6": 12.148450035190287, - "c7": 10.5214906405483 + "points": { + "c1": 25.766685763936067, + "c2": 1.849151831848559, + "c3": 24.20069783362024, + "c4": -24.43394431545191, + "c5": -9.529427047564877, + "c6": -18.877956240586272, + "c7": 14.34066868195756 }, - "vertexSeeds": { - "c1": 6.050498673527629, - "c2": 6.068565247643837, - "c3": 6.051151515881676, - "c4": 5.895901851732065, - "c5": 6.163498926336174, - "c6": 5.909494955055641, - "c7": 5.718746733074701 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951467, + "c3": 7.443365695792877, + "c4": 5.954692556634311, + "c5": 4.466019417475722, + "c6": 2.9773462783171554, + "c7": 1.4886731391585888 }, "rgb": [238, 201, 159] }, @@ -350547,23 +350547,23 @@ "year": 1800, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": 18.325295506610424, - "c2": -38.318638744638626, - "c3": -41.678016639065, - "c4": -34.09107958956445, - "c5": 18.753587821045308, - "c6": -18.224607432110894, - "c7": -20.242542816753545 + "points": { + "c1": 2.097628769971294, + "c2": -4.959886582222708, + "c3": 41.83611846153128, + "c4": -47.23242916287713, + "c5": 7.205166335911997, + "c6": -1.694298725677804, + "c7": -5.4137232890399645 }, - "vertexSeeds": { - "c1": 0.9777422552579361, - "c2": 1.0275447325527194, - "c3": 0.9779851187320888, - "c4": 0.9637621362931283, - "c5": 1.0236855264215579, - "c6": 1.0411801812722832, - "c7": 1.0263532437005667 + "offsets": { + "c1": 1.779935275080906, + "c2": 1.525658807212205, + "c3": 1.2713823393435035, + "c4": 1.017105871474805, + "c5": 0.7628294036061036, + "c6": 0.5085529357374025, + "c7": 0.25427646786870123 }, "rgb": [86, 146, 138] }, @@ -350574,23 +350574,23 @@ "year": 1799, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -21.23132600098555, - "c2": 20.459229079504844, - "c3": -15.45156555152121, - "c4": -20.386381070274673, - "c5": -24.923288611972538, - "c6": 5.562103436104476, - "c7": -7.557597606508427 + "points": { + "c1": 25.08121073104798, + "c2": -24.704439090297555, + "c3": -27.20082180271948, + "c4": -7.767845079027595, + "c5": -6.498436365401265, + "c6": -7.985261124131789, + "c7": 3.7778341911145645 }, - "vertexSeeds": { - "c1": 1.1005142678083775, - "c2": 1.1655102018500403, - "c3": 1.1534976249112994, - "c4": 1.1132573508120789, - "c5": 1.144178910326338, - "c6": 1.126248869798738, - "c7": 1.147763608719772 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535378, + "c3": 1.4100785945446126, + "c4": 1.1280628756356907, + "c5": 0.8460471567267689, + "c6": 0.5640314378178436, + "c7": 0.2820157189089218 }, "rgb": [238, 201, 159] }, @@ -350601,23 +350601,23 @@ "year": 1799, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -21.38896702345234, - "c2": -3.138493446023272, - "c3": 1.7601457197256636, - "c4": 25.946775557906125, - "c5": 17.051365396248723, - "c6": -6.185038021885692, - "c7": 10.271101071163816 + "points": { + "c1": 7.329390516545754, + "c2": 8.98679786734731, + "c3": -6.752782206662989, + "c4": -6.142574776584095, + "c5": 12.054666359854725, + "c6": 8.29451175779224, + "c7": 13.961016107558716 }, - "vertexSeeds": { - "c1": 1.5541535378877, - "c2": 1.5438901568638588, - "c3": 1.5682317322313029, - "c4": 1.515616754710873, - "c5": 1.5802706250328162, - "c6": 1.5272790088722512, - "c7": 1.5131724062560328 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.1636615811373074, + "c3": 1.803051317614425, + "c4": 1.4424410540915382, + "c5": 1.081830790568656, + "c6": 0.7212205270457691, + "c7": 0.3606102635228823 }, "rgb": [238, 201, 159] }, @@ -350628,23 +350628,23 @@ "year": 1799, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 13.220856042466352, - "c2": -16.120990944982104, - "c3": -17.07670428179571, - "c4": -13.59037639025025, - "c5": -12.557716862309418, - "c6": -9.923379941409411, - "c7": -16.5642671915603 + "points": { + "c1": -3.8846850862907836, + "c2": 18.79008758176176, + "c3": -9.774664967615392, + "c4": 14.364335299343303, + "c5": 6.760835259716778, + "c6": -14.319131502370048, + "c7": 2.373488826443868 }, - "vertexSeeds": { - "c1": 8.880979419398946, - "c2": 9.000415692824264, - "c3": 8.713908077439159, - "c4": 8.698306197378818, - "c5": 9.001404494275405, - "c6": 9.013533513967259, - "c7": 8.823691308888586 + "offsets": { + "c1": 15.242718446601941, + "c2": 13.06518723994452, + "c3": 10.887656033287094, + "c4": 8.710124826629693, + "c5": 6.532593619972269, + "c6": 4.355062413314847, + "c7": 2.1775312066574233 }, "rgb": [222, 0, 59] }, @@ -350655,23 +350655,23 @@ "year": 1799, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 7.440806817614586, - "c2": 28.505869928684277, - "c3": 24.323224177934584, - "c4": 33.536139004838674, - "c5": -26.262734431751475, - "c6": -29.497524489728487, - "c7": -16.97007391591582 + "points": { + "c1": -14.920562462158234, + "c2": 1.7718813691977715, + "c3": -14.568184315291596, + "c4": 14.547343192293752, + "c5": 23.74642591078682, + "c6": -2.9202390969226713, + "c7": 4.9540751457263354 }, - "vertexSeeds": { - "c1": 6.3562262551077335, - "c2": 6.907871920910623, - "c3": 6.790074699503302, - "c4": 6.602398521959596, - "c5": 6.485925430030411, - "c6": 6.5721561577194185, - "c7": 6.804490012716209 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -350682,23 +350682,23 @@ "year": 1799, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 27.39561072378428, - "c2": 12.833050532816863, - "c3": -9.39541198154971, - "c4": 24.687920724571107, - "c5": 21.40544865789351, - "c6": -3.597474405566448, - "c7": -13.532494812609134 + "points": { + "c1": -3.002917151144402, + "c2": 24.74237903236603, + "c3": 26.800169079953996, + "c4": 3.787720193334799, + "c5": 28.7771664437738, + "c6": 29.294280869802783, + "c7": -22.437070986106008 }, - "vertexSeeds": { - "c1": 4.091480231523757, - "c2": 4.1441653260096425, - "c3": 4.042240745229194, - "c4": 4.119803618183465, - "c5": 4.146538099052139, - "c6": 4.12537587706176, - "c7": 4.046052301385351 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728159, + "c3": 5.016181229773458, + "c4": 4.012944983818769, + "c5": 3.0097087378640794, + "c6": 2.0064724919093906, + "c7": 1.003236245954689 }, "rgb": [86, 146, 138] }, @@ -350709,23 +350709,23 @@ "year": 1799, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -28.335635514508446, - "c2": 16.83127783572572, - "c3": 28.60489347107776, - "c4": 23.256432554140318, - "c5": 5.55041194557635, - "c6": 22.291743359452276, - "c7": 6.0424461234061795 + "points": { + "c1": -9.111564568615751, + "c2": -15.542237799395124, + "c3": 5.114617166817027, + "c4": -7.329375525376836, + "c5": 3.5647122068953365, + "c6": -16.90846118489121, + "c7": 14.218993909496433 }, - "vertexSeeds": { - "c1": 7.212213162835343, - "c2": 6.8653879323427915, - "c3": 6.856459269246649, - "c4": 7.036334730761311, - "c5": 6.773008556728223, - "c6": 6.898823985132615, - "c7": 7.270673574384594 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.513176144244111, + "c3": 8.760980120203412, + "c4": 7.008784096162734, + "c5": 5.256588072122056, + "c6": 3.504392048081356, + "c7": 1.752196024040678 }, "rgb": [222, 0, 59] }, @@ -350736,23 +350736,23 @@ "year": 1799, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -9.584016816314513, - "c2": -7.1745831970639955, - "c3": 7.760534712113476, - "c4": -9.084216472948587, - "c5": 32.80055733670693, - "c6": 5.166459599012512, - "c7": 11.849551171673852 + "points": { + "c1": 15.812659043713296, + "c2": 7.901814076089053, + "c3": 13.109092662971015, + "c4": 12.950262910745643, + "c5": -8.807065998001715, + "c6": -7.095627166007297, + "c7": -20.13757643642538 }, - "vertexSeeds": { - "c1": 8.767384334116294, - "c2": 9.006913719171509, - "c3": 8.85662713769615, - "c4": 8.927169538230267, - "c5": 9.026615924844998, - "c6": 8.722418884245542, - "c7": 8.85156793491435 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743408, + "c3": 10.772075820619499, + "c4": 8.61766065649559, + "c5": 6.463245492371726, + "c6": 4.308830328247818, + "c7": 2.154415164123909 }, "rgb": [77, 76, 132] }, @@ -350763,23 +350763,23 @@ "year": 1799, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -32.530851513682194, - "c2": -8.872844104524912, - "c3": 13.29513270733463, - "c4": 6.116543970771843, - "c5": 2.889285778892585, - "c6": -34.70203286727698, - "c7": -34.0131757655399 + "points": { + "c1": -20.702454583895612, + "c2": -7.849000939129628, + "c3": -35.21391068338039, + "c4": -36.77183319948466, + "c5": -14.230334355211664, + "c6": -13.601274346959983, + "c7": 34.67239153131989 }, - "vertexSeeds": { - "c1": 2.185484436128558, - "c2": 2.2937308970005006, - "c3": 2.255190102525355, - "c4": 2.156634353161185, - "c5": 2.548618880019403, - "c6": 2.6067813584155095, - "c7": 2.1073531469288262 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104036, + "c3": 3.1668978270920003, + "c4": 2.533518261673601, + "c5": 1.9001386962552018, + "c6": 1.2667591308368005, + "c7": 0.6333795654183992 }, "rgb": [58, 15, 49] }, @@ -350790,23 +350790,23 @@ "year": 1799, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -19.71781236285674, - "c2": -3.7188854513961758, - "c3": -13.365963721704148, - "c4": -10.260196423111843, - "c5": 14.205767622604828, - "c6": -10.814248854149515, - "c7": -17.76526889439603 + "points": { + "c1": -15.668429025984414, + "c2": -11.831456178833253, + "c3": -10.452663356528248, + "c4": -20.236820150127265, + "c5": 27.07694355213039, + "c6": -23.010772100071442, + "c7": 21.578175620796213 }, - "vertexSeeds": { - "c1": 5.162808153254387, - "c2": 5.2733262897334265, - "c3": 5.0799563024379335, - "c4": 5.418712156963352, - "c5": 5.388494709660463, - "c6": 5.279804557507055, - "c7": 5.288315097463958 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503459, + "c3": 6.611188164586231, + "c4": 5.288950531668981, + "c5": 3.9667128987517297, + "c6": 2.6444752658345014, + "c7": 1.3222376329172507 }, "rgb": [222, 0, 59] }, @@ -350817,23 +350817,23 @@ "year": 1799, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -5.980366721779731, - "c2": 8.331731575313214, - "c3": -3.5232459637730926, - "c4": -5.668774032211928, - "c5": -7.771491625197466, - "c6": 23.772168025529034, - "c7": 23.05959562140582 + "points": { + "c1": 14.07345938538905, + "c2": -5.85573796123672, + "c3": -20.536869352492378, + "c4": 13.069171549725631, + "c5": 29.27275557583431, + "c6": 30.795153738875797, + "c7": -8.392902735594298 }, - "vertexSeeds": { - "c1": 3.71633233657065, - "c2": 3.644999341528315, - "c3": 3.6819811797761313, - "c4": 3.752827290948435, - "c5": 3.844460107160084, - "c6": 3.8051585157206795, - "c7": 3.767430991858215 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124831, + "c3": 4.669440591770687, + "c4": 3.7355524734165546, + "c5": 2.8016643550624103, + "c6": 1.8677762367082773, + "c7": 0.933888118354133 }, "rgb": [238, 201, 159] }, @@ -350844,23 +350844,23 @@ "year": 1800, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -5.791757249381028, - "c2": -41.65733237084679, - "c3": -3.2865441348978877, - "c4": -12.623154418681231, - "c5": 10.012050531129468, - "c6": 34.80946012412132, - "c7": -0.37703842584439684 + "points": { + "c1": 30.03395481683959, + "c2": 19.906980720797783, + "c3": -22.771698540397626, + "c4": 8.718940948525194, + "c5": 22.919964804504538, + "c6": 39.80665909811079, + "c7": -45.922523433342064 }, - "vertexSeeds": { - "c1": 3.8825922542242646, - "c2": 3.7762217379912433, - "c3": 3.864066273373101, - "c4": 3.6503583900428622, - "c5": 3.8814609774190245, - "c6": 3.820599785424146, - "c7": 3.737598703787805 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.57558945908461, + "c3": 4.646324549237169, + "c4": 3.71705963938974, + "c5": 2.7877947295423, + "c6": 1.85852981969487, + "c7": 0.9292649098474405 }, "rgb": [222, 0, 59] }, @@ -350871,23 +350871,23 @@ "year": 1799, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 23.57810388596579, - "c2": -24.19906116595041, - "c3": 10.249986040043673, - "c4": 2.7470178486993717, - "c5": -27.87654632929539, - "c6": -9.104802573852265, - "c7": -34.713815728883795 + "points": { + "c1": -26.824614333954546, + "c2": 33.7317657307121, + "c3": -11.766438214010535, + "c4": -3.493483497421103, + "c5": 21.129096736464653, + "c6": -26.572674664312792, + "c7": -36.56587791244572 }, - "vertexSeeds": { - "c1": 7.78990809985323, - "c2": 8.065161934575539, - "c3": 7.960982787249572, - "c4": 7.8951600216571265, - "c5": 7.633370940277325, - "c6": 8.010384898709932, - "c7": 7.735527583994509 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [222, 0, 59] }, @@ -350898,23 +350898,23 @@ "year": 1800, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 35.02352488667321, - "c2": 33.71304184542998, - "c3": -23.4290738769518, - "c4": 33.95639154125404, - "c5": -3.5383067612220813, - "c6": 31.240472612216102, - "c7": -40.07760758666935 + "points": { + "c1": 20.96040070841901, + "c2": 13.680347012937304, + "c3": -12.704805403333708, + "c4": 2.337069207384822, + "c5": 6.491291980624439, + "c6": -32.052166716867845, + "c7": 10.548219368416959 }, - "vertexSeeds": { - "c1": 6.12297790847901, - "c2": 5.962438841581865, - "c3": 6.030032333743387, - "c4": 6.285612095895833, - "c5": 5.969474995512565, - "c6": 6.206883802641319, - "c7": 6.244151689472588 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [77, 76, 132] }, @@ -350925,23 +350925,23 @@ "year": 1800, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 34.71718545043609, - "c2": -1.5444028824412541, - "c3": 25.83870196545817, - "c4": 26.827196064764294, - "c5": -7.354316796346474, - "c6": -16.78577571447017, - "c7": -27.1696841330305 + "points": { + "c1": 2.1694468255663466, + "c2": -24.91391526173747, + "c3": 6.373217717735081, + "c4": 36.3351930722707, + "c5": 39.047740581920536, + "c6": -2.9177567775908386, + "c7": 5.2390773480033985 }, - "vertexSeeds": { - "c1": 1.5628163630795286, - "c2": 1.6145610896837301, - "c3": 1.5794545927088879, - "c4": 1.567189783738036, - "c5": 1.6006137504257485, - "c6": 1.6126483282381348, - "c7": 1.608285106416503 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.357836338418864, + "c3": 1.964863615349055, + "c4": 1.5718908922792363, + "c5": 1.178918169209427, + "c6": 0.7859454461396181, + "c7": 0.39297272306980907 }, "rgb": [77, 76, 132] }, @@ -350952,23 +350952,23 @@ "year": 1799, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 17.85994996509816, - "c2": -23.724567744236648, - "c3": -36.50311403106749, - "c4": -38.05679882581493, - "c5": -38.30213225241261, - "c6": 32.365135114821406, - "c7": -18.549488079969052 + "points": { + "c1": -36.20213379115528, + "c2": -3.35793768282322, + "c3": 13.0947752616718, + "c4": 9.43197335850352, + "c5": -24.816866729936912, + "c6": 10.107630986041514, + "c7": -37.85737620283295 }, - "vertexSeeds": { - "c1": 7.840326481568966, - "c2": 7.879009216171602, - "c3": 7.894626592815042, - "c4": 7.818190183233963, - "c5": 7.8029806940039474, - "c6": 7.844979519690153, - "c7": 8.033348533686393 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933424, + "c3": 9.731853906611189, + "c4": 7.78548312528895, + "c5": 5.839112343966712, + "c6": 3.892741562644475, + "c7": 1.9463707813222375 }, "rgb": [238, 201, 159] }, @@ -350979,23 +350979,23 @@ "year": 1800, "resistanceReported": false, "duration": 39830400, - "curveSeeds": { - "c1": 30.635257143449934, - "c2": 30.75474508647882, - "c3": 35.6754817359316, - "c4": -11.126150757810102, - "c5": -25.07403742399584, - "c6": -50.03022064122832, - "c7": -43.571087195265115 + "points": { + "c1": -36.347797868691806, + "c2": 24.44529104915253, + "c3": 43.156291779516735, + "c4": -47.62001835762497, + "c5": -3.045571563014512, + "c6": 20.83421535232263, + "c7": 31.70225468412869 }, - "vertexSeeds": { - "c1": 7.420490907236645, - "c2": 7.95282425832283, - "c3": 7.75366779369846, - "c4": 7.888429537153013, - "c5": 7.491825379844928, - "c6": 7.931555256558842, - "c7": 7.905671933885636 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732316, + "c3": 9.616273693943599, + "c4": 7.693018955154878, + "c5": 5.769764216366158, + "c6": 3.846509477577439, + "c7": 1.9232547387887196 }, "rgb": [222, 0, 59] }, @@ -351006,23 +351006,23 @@ "year": 1799, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": -10.444759950682892, - "c2": 19.250830318809882, - "c3": -1.424756157243916, - "c4": 0.9865141686883447, - "c5": 13.253581634393441, - "c6": -5.95052810996617, - "c7": -18.03168025794468 + "points": { + "c1": -5.040258191217511, + "c2": 5.397744555033221, + "c3": -13.58928695087711, + "c4": 1.7689148228059004, + "c5": -4.853162745507987, + "c6": -19.987459746210337, + "c7": -4.143617040297812 }, - "vertexSeeds": { - "c1": 0.4654075243495477, - "c2": 0.4497273773703584, - "c3": 0.43602324362093614, - "c4": 0.45997728872907767, - "c5": 0.4933125739895584, - "c6": 0.4960570124197344, - "c7": 0.47061141336190504 + "offsets": { + "c1": 0.8737864077669903, + "c2": 0.7489597780859921, + "c3": 0.624133148404993, + "c4": 0.49930651872399473, + "c5": 0.3744798890429957, + "c6": 0.24965325936199737, + "c7": 0.12482662968099907 }, "rgb": [238, 201, 159] }, @@ -351033,23 +351033,23 @@ "year": 1799, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -20.655369782212468, - "c2": -18.094946414640575, - "c3": 15.372597645947394, - "c4": -26.09243853473035, - "c5": -17.206795624024494, - "c6": 7.23045112316408, - "c7": 8.540169705133152 + "points": { + "c1": 11.576294334927894, + "c2": -35.074594639657946, + "c3": -14.332244442833517, + "c4": -22.891021450015696, + "c5": 15.177857301997804, + "c6": 11.810830363482232, + "c7": 15.41615355505828 }, - "vertexSeeds": { - "c1": 5.124211551191079, - "c2": 4.818930360580847, - "c3": 4.826791539092322, - "c4": 4.839756907718728, - "c5": 5.167426070871112, - "c6": 4.887891899812497, - "c7": 4.850931223058438 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.4618585298196995, + "c3": 6.218215441516419, + "c4": 4.9745723532131185, + "c5": 3.7309292649098498, + "c6": 2.4872861766065593, + "c7": 1.2436430883032796 }, "rgb": [58, 15, 49] }, @@ -351060,23 +351060,23 @@ "year": 1800, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -29.730106428594127, - "c2": -2.9280230777265004, - "c3": -6.463989969455525, - "c4": -35.60445138564003, - "c5": -20.655349939121976, - "c6": -14.321988344104337, - "c7": -15.74942196136551 + "points": { + "c1": -5.832402163046886, + "c2": -35.27130665799752, + "c3": -0.2626899358607062, + "c4": 27.730894741443848, + "c5": -8.020093660771686, + "c6": 21.216862602058697, + "c7": -29.49897447872162 }, - "vertexSeeds": { - "c1": 9.706608156668379, - "c2": 10.349306806077637, - "c3": 9.699643765269442, - "c4": 10.36866797238959, - "c5": 10.040765472641654, - "c6": 9.811247527545177, - "c7": 10.389944379624612 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961173, + "c3": 12.621359223300983, + "c4": 10.097087378640753, + "c5": 7.572815533980564, + "c6": 5.048543689320376, + "c7": 2.524271844660188 }, "rgb": [238, 201, 159] }, @@ -351087,23 +351087,23 @@ "year": 1799, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": -12.338591176134472, - "c2": -20.35706548365277, - "c3": -16.31496276164596, - "c4": -17.08568571678955, - "c5": 18.266668371998456, - "c6": -17.144000874408647, - "c7": 9.097250955935067 + "points": { + "c1": -15.16176542851492, + "c2": 10.889142015851206, + "c3": -6.4959038710223, + "c4": 14.332254033547052, + "c5": -5.75574386665199, + "c6": 1.4398347916167111, + "c7": 9.89823603650305 }, - "vertexSeeds": { - "c1": 1.1644393004982934, - "c2": 1.1525838579309098, - "c3": 1.069552791559858, - "c4": 1.0955093373043545, - "c5": 1.063176895501811, - "c6": 1.0600561209672723, - "c7": 1.068825175430707 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535378, + "c3": 1.4100785945446137, + "c4": 1.1280628756356919, + "c5": 0.8460471567267677, + "c6": 0.5640314378178459, + "c7": 0.2820157189089242 }, "rgb": [58, 15, 49] }, @@ -351114,23 +351114,23 @@ "year": 1800, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -3.976771941019919, - "c2": -32.542966092266234, - "c3": 19.728089057873568, - "c4": 12.443819220935147, - "c5": 1.7359409292277945, - "c6": 19.489724859096256, - "c7": 33.945663930100025 + "points": { + "c1": 7.191921121663867, + "c2": -30.891800830283163, + "c3": 3.7152699069328463, + "c4": 24.12643681861286, + "c5": 26.159798616482462, + "c6": -33.6837915293619, + "c7": 31.790973150816114 }, - "vertexSeeds": { - "c1": 9.657890924491195, - "c2": 10.062065066444543, - "c3": 10.319533334960681, - "c4": 10.390542356098026, - "c5": 9.824651593159162, - "c6": 9.77330411781746, - "c7": 10.414867390991414 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.92371705963938, + "c3": 12.436430883032845, + "c4": 9.949144706426267, + "c5": 7.46185852981969, + "c6": 4.974572353213134, + "c7": 2.4872861766065566 }, "rgb": [58, 15, 49] }, @@ -351141,23 +351141,23 @@ "year": 1800, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -2.70167890137828, - "c2": 2.9197123726606975, - "c3": -31.67580565834972, - "c4": -39.183685075142925, - "c5": 40.098128030285494, - "c6": 21.766479824364694, - "c7": -3.8595023547074447 + "points": { + "c1": -12.167055020880596, + "c2": 32.14912793913216, + "c3": -10.430412066529954, + "c4": -20.556256278337308, + "c5": -31.00684342614303, + "c6": -28.083748598421117, + "c7": 6.273794613225675 }, - "vertexSeeds": { - "c1": 6.62417202143242, - "c2": 6.356996642421847, - "c3": 6.334944119687426, - "c4": 6.374250826252005, - "c5": 6.744085308092146, - "c6": 6.573689791497402, - "c7": 6.6422706485580845 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359226, + "c3": 8.252427184466026, + "c4": 6.601941747572803, + "c5": 4.951456310679602, + "c6": 3.3009708737864014, + "c7": 1.6504854368932007 }, "rgb": [77, 76, 132] }, @@ -351168,23 +351168,23 @@ "year": 1799, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -19.50592356967406, - "c2": 12.387368365666795, - "c3": 20.725544571812755, - "c4": -10.886203131525082, - "c5": 4.330601175581705, - "c6": 12.154382938709077, - "c7": 5.120584557756139 + "points": { + "c1": 16.02800970062033, + "c2": 8.573824777802365, + "c3": -14.668064037897285, + "c4": -26.261357901107665, + "c5": 31.55580127263847, + "c6": 28.851839594307584, + "c7": 21.2726160535954 }, - "vertexSeeds": { - "c1": 3.7929839660614397, - "c2": 3.8172349773001395, - "c3": 3.8939164795068537, - "c4": 3.858942953906871, - "c5": 4.046458377736565, - "c6": 3.7966804308809845, - "c7": 4.096220847260671 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527041, + "c3": 4.900601017105873, + "c4": 3.9204808136846943, + "c5": 2.940360610263526, + "c6": 1.9602404068423471, + "c7": 0.9801202034211681 }, "rgb": [222, 0, 59] }, @@ -351195,23 +351195,23 @@ "year": 1800, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -21.500823817422262, - "c2": -11.386878047578271, - "c3": 9.045210766284626, - "c4": 1.3672855066755076, - "c5": -30.474761205242043, - "c6": 6.091512484617944, - "c7": 29.379271475161524 + "points": { + "c1": -27.80550731173207, + "c2": 8.87781759511455, + "c3": 4.865198019632722, + "c4": -8.516724628082201, + "c5": 42.03557971702747, + "c6": 7.17878585675534, + "c7": -3.949271934484095 }, - "vertexSeeds": { - "c1": 2.572987488592007, - "c2": 2.5953372343387793, - "c3": 2.591391563605303, - "c4": 2.637040668864172, - "c5": 2.6214500418408426, - "c6": 2.5555366533250794, - "c7": 2.5905383750354307 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104076, + "c3": 3.1668978270920003, + "c4": 2.5335182616736054, + "c5": 1.9001386962551978, + "c6": 1.2667591308368027, + "c7": 0.633379565418395 }, "rgb": [58, 15, 49] }, @@ -351222,23 +351222,23 @@ "year": 1800, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 5.582796130091609, - "c2": 9.766701445849819, - "c3": -4.038128670773453, - "c4": 31.952512593103783, - "c5": 7.740400069781941, - "c6": 18.842321554996396, - "c7": 24.195027725374295 + "points": { + "c1": -41.53112812836159, + "c2": -20.655466141253772, + "c3": 28.89616157475171, + "c4": 40.555340068460104, + "c5": 21.422494933728608, + "c6": -33.87712778110278, + "c7": 35.339933697428016 }, - "vertexSeeds": { - "c1": 7.419699632759173, - "c2": 7.265559640465396, - "c3": 7.051616845657994, - "c4": 6.980785704452187, - "c5": 7.452881182572689, - "c6": 7.507211726983675, - "c7": 7.074079205492797 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807207, + "c3": 9.084604715672668, + "c4": 7.267683772538132, + "c5": 5.450762829403593, + "c6": 3.6338418862690767, + "c7": 1.8169209431345383 }, "rgb": [58, 15, 49] }, @@ -351249,23 +351249,23 @@ "year": 1800, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -4.062216083594457, - "c2": 33.867586218775315, - "c3": 2.552967679974671, - "c4": -30.09120670957564, - "c5": 36.45447319205499, - "c6": 16.70039265501611, - "c7": -35.32619115946969 + "points": { + "c1": -11.872852441124177, + "c2": 36.97492717482484, + "c3": 15.308905563630859, + "c4": 40.66152621806724, + "c5": -7.458158782615129, + "c6": -32.804388759300906, + "c7": 27.511195662079743 }, - "vertexSeeds": { - "c1": 12.235486558035706, - "c2": 11.717959535898867, - "c3": 11.498120265341104, - "c4": 11.639690264002063, - "c5": 11.663024613175827, - "c6": 11.47207102616137, - "c7": 11.744171184610769 + "offsets": { + "c1": 20.841423948220065, + "c2": 17.864077669902933, + "c3": 14.886731391585753, + "c4": 11.909385113268621, + "c5": 8.932038834951443, + "c6": 5.954692556634311, + "c7": 2.9773462783171776 }, "rgb": [77, 76, 132] }, @@ -351276,23 +351276,23 @@ "year": 1799, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 35.31919112128167, - "c2": -24.949681926103167, - "c3": 11.998635459544829, - "c4": -2.5813818544527294, - "c5": 11.43688886432723, - "c6": -11.482320471844304, - "c7": -29.111175819294523 + "points": { + "c1": 4.39578727251984, + "c2": 34.363536861564334, + "c3": -8.70123586624688, + "c4": -3.374256522620712, + "c5": -29.556963944894665, + "c6": -16.605954924651176, + "c7": 27.574258620668395 }, - "vertexSeeds": { - "c1": 5.411691970031209, - "c2": 5.557724517595357, - "c3": 5.397214528098108, - "c4": 5.796002213977194, - "c5": 5.609315176015569, - "c6": 5.711810440375305, - "c7": 5.707834258221383 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206658, + "c3": 6.934812760055468, + "c4": 5.547850208044379, + "c5": 4.16088765603329, + "c6": 2.773925104022201, + "c7": 1.3869625520110893 }, "rgb": [222, 0, 59] }, @@ -351303,23 +351303,23 @@ "year": 1800, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 36.08459427356854, - "c2": 5.429757035832772, - "c3": -0.21061726792294877, - "c4": 14.413348383153156, - "c5": 25.672993438716304, - "c6": -6.129304442969598, - "c7": -18.740954736139617 + "points": { + "c1": 41.05159065526263, + "c2": 31.25566147422984, + "c3": -12.655760305276043, + "c4": 28.156828631382197, + "c5": -17.075433130108788, + "c6": -26.600771217554353, + "c7": -25.972305669350003 }, - "vertexSeeds": { - "c1": 7.674042846724098, - "c2": 7.787898134817031, - "c3": 7.724492299792832, - "c4": 7.881781332983169, - "c5": 7.843399006728837, - "c6": 7.6065057999274694, - "c7": 8.01248955480134 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134525, + "c3": 9.847434119278782, + "c4": 7.8779472954230165, + "c5": 5.908460471567274, + "c6": 3.9389736477115083, + "c7": 1.9694868238557652 }, "rgb": [222, 0, 59] }, @@ -351330,23 +351330,23 @@ "year": 1800, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -27.957968599222447, - "c2": 27.30595827706162, - "c3": 26.678680243094675, - "c4": 32.87811417977656, - "c5": -2.502012270541009, - "c6": 13.317569112092016, - "c7": -18.127631819543858 + "points": { + "c1": -20.39732551855641, + "c2": 21.902993868381223, + "c3": -39.26005824843856, + "c4": -36.63466393996651, + "c5": 2.9895743431239623, + "c6": 37.66470679498396, + "c7": 34.50531122167038 }, - "vertexSeeds": { - "c1": 1.064933268096475, - "c2": 1.0921576899968128, - "c3": 0.9784843796236341, - "c4": 0.955163425172704, - "c5": 0.9273180317889799, - "c6": 1.0769360523311455, - "c7": 1.021696994331626 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937586, + "c3": 1.4331946370781328, + "c4": 1.146555709662506, + "c5": 0.8599167822468793, + "c6": 0.5732778548312536, + "c7": 0.2866389274156268 }, "rgb": [77, 76, 132] }, @@ -351357,23 +351357,23 @@ "year": 1799, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 18.427921581230756, - "c2": 8.128637250784731, - "c3": 10.034554996204335, - "c4": 18.312847279807443, - "c5": 16.638521514777246, - "c6": 15.950386623648072, - "c7": 7.34127912366327 + "points": { + "c1": -4.903732969092587, + "c2": 7.255933021501402, + "c3": -12.07770908915328, + "c4": -4.4776725888065805, + "c5": -15.232988303189112, + "c6": 19.515630865107624, + "c7": -10.098553145028493 }, - "vertexSeeds": { - "c1": 2.885328128821885, - "c2": 1.7529785518086305, - "c3": 2.1437778075902134, - "c4": 2.367953439824589, - "c5": 2.650422687651729, - "c6": 1.529086300387911, - "c7": 1.9033203838824773 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033288, + "c3": 3.4674063800277386, + "c4": 2.7739251040221915, + "c5": 2.080443828016643, + "c6": 1.3869625520110953, + "c7": 0.693481276005548 }, "rgb": [58, 15, 49] }, @@ -351384,23 +351384,23 @@ "year": 1799, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -10.556843783486887, - "c2": -19.49173091470367, - "c3": 14.944702160733225, - "c4": 29.214143800151202, - "c5": 30.39813130991818, - "c6": -22.239978385524203, - "c7": 16.317817616106783 + "points": { + "c1": -12.558211403547055, + "c2": -5.016810648788113, + "c3": -16.690208800238185, + "c4": -25.63300890790625, + "c5": 21.8020168489184, + "c6": 17.54023583521844, + "c7": -4.9266318641328155 }, - "vertexSeeds": { - "c1": 6.505120791151229, - "c2": 6.67561555516997, - "c3": 6.376985257645961, - "c4": 6.404879836779346, - "c5": 6.757320760707381, - "c6": 6.821553517854877, - "c7": 6.644344334736937 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -351411,23 +351411,23 @@ "year": 1800, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 31.1257838782186, - "c2": 21.35569146330998, - "c3": 0.6426161771114138, - "c4": -28.42648984414995, - "c5": 1.5788031870530048, - "c6": -18.028030974679535, - "c7": -12.80072493002972 + "points": { + "c1": 0.5779931920658612, + "c2": -5.600301863405939, + "c3": -0.523937062453868, + "c4": 14.095595758313848, + "c5": -2.0891972241515333, + "c6": -17.273470532131476, + "c7": 37.722103324752865 }, - "vertexSeeds": { - "c1": 5.059147620166869, - "c2": 4.9567676265655525, - "c3": 4.932863034287503, - "c4": 5.105151018890585, - "c5": 4.849200132717331, - "c6": 4.867884470271869, - "c7": 4.822649593270025 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658804, + "c3": 6.125751271382332, + "c4": 4.900601017105861, + "c5": 3.675450762829402, + "c6": 2.4503005085529304, + "c7": 1.2251502542764716 }, "rgb": [58, 15, 49] }, @@ -351438,23 +351438,23 @@ "year": 1799, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -14.068532323771821, - "c2": 6.5672798521405085, - "c3": -23.076799361187625, - "c4": 13.939200995669324, - "c5": -8.518174986706466, - "c6": 3.720136778679386, - "c7": -17.22578151564211 + "points": { + "c1": -5.892721172051573, + "c2": -15.231948529094824, + "c3": -4.915325642394546, + "c4": -1.3894144267951596, + "c5": -24.829931324787736, + "c6": 24.965781464207545, + "c7": 19.174206792760238 }, - "vertexSeeds": { - "c1": 3.15755396996255, - "c2": 3.153387849230034, - "c3": 3.265968064645322, - "c4": 3.2181771103580963, - "c5": 3.2082552651788667, - "c6": 3.172954268280235, - "c7": 3.1316631652210156 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918165, + "c3": 3.9759593157651465, + "c4": 3.1807674526121144, + "c5": 2.3855755894590827, + "c6": 1.5903837263060638, + "c7": 0.7951918631530319 }, "rgb": [77, 76, 132] }, @@ -351465,23 +351465,23 @@ "year": 1799, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": -2.097664528239541, - "c2": 4.802504752121269, - "c3": -4.812087646050305, - "c4": 17.156936403844888, - "c5": 7.118620559045606, - "c6": 18.555531861152993, - "c7": -16.367910852989393 + "points": { + "c1": -12.832569869292723, + "c2": -17.943606480917058, + "c3": -5.5777540098932725, + "c4": 3.455900834877127, + "c5": 9.891631866314398, + "c6": 8.899247961485436, + "c7": -7.774514984413287 }, - "vertexSeeds": { - "c1": 3.1387637477759367, - "c2": 3.062303264488081, - "c3": 3.0341691375174276, - "c4": 3.1859930968156314, - "c5": 3.106355738465461, - "c6": 3.020461401491731, - "c7": 3.121683570373293 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676834, + "c3": 3.8372630605640365, + "c4": 3.0698104484512267, + "c5": 2.302357836338417, + "c6": 1.5349052242256198, + "c7": 0.7674526121128099 }, "rgb": [238, 201, 159] }, @@ -351492,23 +351492,23 @@ "year": 1799, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -8.10743293367057, - "c2": -13.381316773824452, - "c3": 17.744073274862842, - "c4": 19.503032565049494, - "c5": -6.848658560865335, - "c6": -24.684217368332266, - "c7": 14.671012181713692 + "points": { + "c1": -3.5803933736361486, + "c2": -1.7661469733473147, + "c3": 24.49707957553791, + "c4": 6.378065970078566, + "c5": 4.523903240330984, + "c6": -8.660554171059125, + "c7": -8.427781119355572 }, - "vertexSeeds": { - "c1": 2.7152165762109797, - "c2": 3.349696460384188, - "c3": 3.0013581921559296, - "c4": 2.848780832180164, - "c5": 2.962907167673613, - "c6": 3.380940675356835, - "c7": 3.4034032390474134 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.9375866851595, + "c3": 4.114655570966249, + "c4": 3.2917244567729984, + "c5": 2.4687933425797484, + "c6": 1.6458622283865014, + "c7": 0.8229311141932466 }, "rgb": [58, 15, 49] }, @@ -351519,23 +351519,23 @@ "year": 1800, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 34.975872836871446, - "c2": -8.091503613767536, - "c3": 22.973198500205278, - "c4": -0.8754181266485617, - "c5": -13.63903818291963, - "c6": -36.80523168029811, - "c7": 14.817947439449235 + "points": { + "c1": 10.991557838276876, + "c2": 17.64099554860045, + "c3": -0.531992582410524, + "c4": -4.5266343222212555, + "c5": 39.55232322180241, + "c6": 12.26327229693105, + "c7": 34.245131797534455 }, - "vertexSeeds": { - "c1": 2.871950838959927, - "c2": 2.8252553029839547, - "c3": 2.8649246663124504, - "c4": 2.74592495594118, - "c5": 2.832971327223898, - "c6": 2.781645550519929, - "c7": 2.8998301492267204 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073504, + "c3": 3.490522422561259, + "c4": 2.7924179380490024, + "c5": 2.094313453536758, + "c6": 1.3962089690245012, + "c7": 0.6981044845122569 }, "rgb": [222, 0, 59] }, @@ -351546,23 +351546,23 @@ "year": 1800, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 22.31741066165771, - "c2": -10.042389083485887, - "c3": 35.22563284388999, - "c4": 3.864166597012556, - "c5": -2.5727227426651567, - "c6": -0.08057191827413845, - "c7": 5.9719725566408 + "points": { + "c1": 36.97322175382481, + "c2": 24.203220342600396, + "c3": 21.666388547712195, + "c4": 14.843206290885504, + "c5": -12.488441354919914, + "c6": 20.052443550627572, + "c7": 35.590453052748536 }, - "vertexSeeds": { - "c1": 1.2915319914797636, - "c2": 1.2557257117282088, - "c3": 1.2404398363965214, - "c4": 1.5552614797392814, - "c5": 1.4615636289047944, - "c6": 1.1475637150478009, - "c7": 1.465468492212899 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384183, + "c3": 1.9186315302820147, + "c4": 1.5349052242256127, + "c5": 1.1511789181692091, + "c6": 0.7674526121128056, + "c7": 0.3837263060564028 }, "rgb": [238, 201, 159] }, @@ -351573,23 +351573,23 @@ "year": 1799, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 4.249882300859781, - "c2": -11.813046821917219, - "c3": -6.500177438187656, - "c4": 22.332632327173645, - "c5": 20.491308449840016, - "c6": -10.33571015168641, - "c7": 14.829901092511125 + "points": { + "c1": -16.412713001160668, + "c2": -21.94782312207338, + "c3": 17.834644804027416, + "c4": -1.0880186330452268, + "c5": 25.433314007139234, + "c6": -21.414562939198518, + "c7": 12.436728112632498 }, - "vertexSeeds": { - "c1": 0.9009844866228505, - "c2": 0.9436935060680667, - "c3": 0.9233642878637911, - "c4": 0.9374476336559068, - "c5": 0.8973373053815318, - "c6": 0.9239778045045638, - "c7": 0.9149076550936084 + "offsets": { + "c1": 1.5210355987055015, + "c2": 1.3037447988904287, + "c3": 1.0864539990753599, + "c4": 0.8691631992602871, + "c5": 0.6518723994452144, + "c6": 0.43458159963014537, + "c7": 0.21729079981507268 }, "rgb": [86, 146, 138] }, @@ -351600,23 +351600,23 @@ "year": 1799, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 12.846877142053042, - "c2": 0.2527122208891903, - "c3": -26.55295852380897, - "c4": 5.6072747429466325, - "c5": 14.774437985911202, - "c6": -27.644885309304897, - "c7": 8.584833362478069 + "points": { + "c1": 33.57404129391844, + "c2": -7.0071577997759675, + "c3": -26.946728051144035, + "c4": 31.462244927731604, + "c5": 23.218850213811344, + "c6": 25.03417128493188, + "c7": 3.0337220320661658 }, - "vertexSeeds": { - "c1": 1.037872165281506, - "c2": 1.020299807973651, - "c3": 1.0472321661068487, - "c4": 0.9942608780341041, - "c5": 1.0379438673254209, - "c6": 1.0454035142553402, - "c7": 1.0183939763595031 + "offsets": { + "c1": 1.6828478964401297, + "c2": 1.4424410540915384, + "c3": 1.2020342117429514, + "c4": 0.9616273693943603, + "c5": 0.7212205270457692, + "c6": 0.4808136846971782, + "c7": 0.2404068423485911 }, "rgb": [86, 146, 138] }, @@ -351627,23 +351627,23 @@ "year": 1799, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 12.84284152098843, - "c2": -31.962619977827536, - "c3": 9.273239183555745, - "c4": 21.45648515601183, - "c5": -27.226013621273584, - "c6": -15.976576246552735, - "c7": 5.324075653727661 + "points": { + "c1": -4.264818646964841, + "c2": 5.177454133667659, + "c3": 14.14286568805467, + "c4": -3.5159288828004946, + "c5": 13.177338517908723, + "c6": 3.3670623320006285, + "c7": -9.710948846146213 }, - "vertexSeeds": { - "c1": 6.94630390826129, - "c2": 7.003635234651458, - "c3": 7.05091028191906, - "c4": 6.986863443271356, - "c5": 6.987962421246578, - "c6": 6.95919226741749, - "c7": 6.9965715496212075 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721184, + "c3": 8.460471567267696, + "c4": 6.768377253814123, + "c5": 5.076282940360635, + "c6": 3.3841886269070613, + "c7": 1.6920943134534887 }, "rgb": [77, 76, 132] }, @@ -351654,23 +351654,23 @@ "year": 1799, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 15.452390772765732, - "c2": 1.4643921913811937, - "c3": 30.07970191839062, - "c4": 18.416731243765433, - "c5": 20.338649216298784, - "c6": -28.00047211783713, - "c7": 2.3406516985400643 + "points": { + "c1": 31.59387547499466, + "c2": -30.821672583101794, + "c3": -2.32396321717523, + "c4": -23.557262266634254, + "c5": 33.831123350738125, + "c6": -1.885006935906425, + "c7": -33.03963099613641 }, - "vertexSeeds": { - "c1": 4.98622522783669, - "c2": 5.386262564790416, - "c3": 5.30201453592479, - "c4": 5.229336666881203, - "c5": 5.324775056763659, - "c6": 5.140869623402171, - "c7": 5.140104598252305 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221918, + "c3": 6.449375866851602, + "c4": 5.159500693481286, + "c5": 3.8696255201109473, + "c6": 2.579750346740632, + "c7": 1.289875173370316 }, "rgb": [238, 201, 159] }, @@ -351681,23 +351681,23 @@ "year": 1799, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 0.7817648980458571, - "c2": -7.7795072817867545, - "c3": 4.4141148836536495, - "c4": -7.662806115396563, - "c5": 17.095889446103815, - "c6": 16.330760874412785, - "c7": -12.204998218923986 + "points": { + "c1": 6.210621173608995, + "c2": 14.392179931886684, + "c3": 5.8713461940873835, + "c4": -15.852737567978997, + "c5": 16.37435151898148, + "c6": 11.490600335460972, + "c7": 4.631961497655748 }, - "vertexSeeds": { - "c1": 2.950561068089627, - "c2": 3.0245703088216374, - "c3": 3.030064331787663, - "c4": 2.980143519173752, - "c5": 2.8610755730621587, - "c6": 2.8617338998924007, - "c7": 2.8527909483012532 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355057, + "c3": 3.652334720295887, + "c4": 2.921867776236705, + "c5": 2.191400832177535, + "c6": 1.4609338881183525, + "c7": 0.7304669440591696 }, "rgb": [77, 76, 132] }, @@ -351708,23 +351708,23 @@ "year": 1799, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -11.390359731256517, - "c2": -24.00727521203586, - "c3": 14.529841149684643, - "c4": -21.148904253551127, - "c5": 0.735348624451003, - "c6": 22.79764919887745, - "c7": 1.5212572286702866 + "points": { + "c1": -2.1879102424579244, + "c2": -1.4933959740646685, + "c3": 18.64082296894434, + "c4": 3.2982357308137757, + "c5": 1.247973291403202, + "c6": 20.77826300480416, + "c7": -18.410617931341704 }, - "vertexSeeds": { - "c1": 8.355911480076292, - "c2": 8.35322808754023, - "c3": 8.234618285382842, - "c4": 7.852866335186324, - "c5": 8.178862639667926, - "c6": 7.765149696754248, - "c7": 7.8495243676877635 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147487, + "c4": 8.081368469717994, + "c5": 6.061026352288501, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [238, 201, 159] }, @@ -351735,23 +351735,23 @@ "year": 1800, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -14.63681091558891, - "c2": 4.334973549658308, - "c3": -0.3830282303060528, - "c4": 37.7588214890262, - "c5": 6.90560835723317, - "c6": 7.700715956855461, - "c7": 14.680370622902949 + "points": { + "c1": -28.453440690885984, + "c2": -2.4486802531584217, + "c3": 38.598107795712245, + "c4": 25.05655308132622, + "c5": -25.454497198705266, + "c6": 23.74004316532335, + "c7": -1.9143535710774842 }, - "vertexSeeds": { - "c1": 7.8398689040633345, - "c2": 7.812597356496875, - "c3": 7.706788167109559, - "c4": 8.087741749850004, - "c5": 8.314767891458064, - "c6": 8.331836944574123, - "c7": 8.314708498654763 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295414, + "c3": 9.939898289412856, + "c4": 7.951918631530275, + "c5": 5.963938973647719, + "c6": 3.9759593157651376, + "c7": 1.9879796578825801 }, "rgb": [58, 15, 49] }, @@ -351762,23 +351762,23 @@ "year": 1799, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 2.472038115911335, - "c2": 23.082320187574137, - "c3": -0.5952462529189191, - "c4": -1.183275708242462, - "c5": 19.890118161125752, - "c6": -22.432362752862673, - "c7": 24.527136187783373 + "points": { + "c1": 14.553423065149321, + "c2": 15.284711409670326, + "c3": -13.399939545882457, + "c4": 5.192178975776901, + "c5": 7.660238354891408, + "c6": -6.534868370056049, + "c7": -25.115517125124494 }, - "vertexSeeds": { - "c1": 4.385042696443478, - "c2": 4.428833794020409, - "c3": 4.474234343917811, - "c4": 4.5713566819668, - "c5": 4.605634759363872, - "c6": 4.514895544794773, - "c7": 4.413320949676534 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.6296809986130425, + "c3": 5.524734165510862, + "c4": 4.419787332408696, + "c5": 3.314840499306515, + "c6": 2.209893666204348, + "c7": 1.1049468331021803 }, "rgb": [238, 201, 159] }, @@ -351789,23 +351789,23 @@ "year": 1799, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -13.848804783648909, - "c2": -24.72275939261226, - "c3": -9.65170414710867, - "c4": -9.462101385040093, - "c5": 24.206803203941845, - "c6": -6.523965155984676, - "c7": -10.340403693770924 + "points": { + "c1": -23.5804492636598, + "c2": 7.547272603997762, + "c3": -24.546981118072104, + "c4": 25.231952890076855, + "c5": -17.11389976821878, + "c6": -18.849181853248226, + "c7": -14.441840532481764 }, - "vertexSeeds": { - "c1": 8.706181779126643, - "c2": 8.739525178927066, - "c3": 8.2232312463293, - "c4": 8.561781010674103, - "c5": 8.504839723631905, - "c6": 8.684000280953844, - "c7": 8.612006412268595 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461865, + "c3": 10.610263522884873, + "c4": 8.488210818307902, + "c5": 6.366158113730933, + "c6": 4.2441054091539625, + "c7": 2.12205270457697 }, "rgb": [222, 0, 59] }, @@ -351816,23 +351816,23 @@ "year": 1800, "resistanceReported": false, "duration": 42681600, - "curveSeeds": { - "c1": 53.23845467279415, - "c2": -56.44609114112085, - "c3": -34.44147931848552, - "c4": -17.66574877034263, - "c5": 7.272674737964323, - "c6": 16.113217364666596, - "c7": -53.15533316651886 + "points": { + "c1": 17.170844596388193, + "c2": 36.69891041427391, + "c3": -49.543050127457704, + "c4": -17.055698632618267, + "c5": 6.6983074008000045, + "c6": 5.535386888515461, + "c7": -12.647845251123414 }, - "vertexSeeds": { - "c1": 12.099057709784734, - "c2": 12.532615331492218, - "c3": 12.516462973988482, - "c4": 12.60059000749813, - "c5": 12.123033324630553, - "c6": 12.626825247221475, - "c7": 12.237305460730676 + "offsets": { + "c1": 21.262135922330096, + "c2": 18.224687933425816, + "c3": 15.18723994452149, + "c4": 12.14979195561721, + "c5": 9.112343966712885, + "c6": 6.074895977808605, + "c7": 3.0374479889042805 }, "rgb": [77, 76, 132] }, @@ -351843,23 +351843,23 @@ "year": 1800, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 28.853915672328498, - "c2": -33.058775616400055, - "c3": 2.826635994637826, - "c4": -11.309380190386126, - "c5": -34.54881875885775, - "c6": 9.937941961898098, - "c7": 27.58032349320594 + "points": { + "c1": -13.070633975636387, + "c2": 13.229583849798182, + "c3": 30.675348434605127, + "c4": 29.71182996975051, + "c5": -21.041981540049623, + "c6": 30.311981584589006, + "c7": -29.666548937842677 }, - "vertexSeeds": { - "c1": 3.5957387735669415, - "c2": 3.5743414260203292, - "c3": 3.5516651996417408, - "c4": 3.5228910976941226, - "c5": 3.6132320057346248, - "c6": 3.5719805263842095, - "c7": 3.519309580220532 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642164, + "c3": 4.39204808136847, + "c4": 3.513638465094776, + "c5": 2.635228848821082, + "c6": 1.756819232547388, + "c7": 0.878409616273694 }, "rgb": [58, 15, 49] }, @@ -351870,23 +351870,23 @@ "year": 1799, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -25.0922586088855, - "c2": -9.716318800032017, - "c3": -27.487749373868592, - "c4": -12.772008793378461, - "c5": 19.957167261942338, - "c6": -32.55501157705502, - "c7": 2.718729926029212 + "points": { + "c1": -21.36245255605681, + "c2": 20.917287204571593, + "c3": 27.587956204589005, + "c4": -23.6092884401087, + "c5": 31.55668707271748, + "c6": 30.329910744459866, + "c7": 2.0320528500832964 }, - "vertexSeeds": { - "c1": 7.6005264196343445, - "c2": 7.904087091090671, - "c3": 8.11260556322377, - "c4": 7.7032096182687795, - "c5": 7.727188754713823, - "c6": 7.733384373114974, - "c7": 7.915692615316503 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094305, + "c3": 9.824318076745264, + "c4": 7.8594544613962025, + "c5": 5.894590846047164, + "c6": 3.9297272306981013, + "c7": 1.96486361534904 }, "rgb": [86, 146, 138] }, @@ -351897,23 +351897,23 @@ "year": 1799, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 8.687197626919385, - "c2": 10.543670055269487, - "c3": 19.12768536364814, - "c4": -19.708478872667968, - "c5": 13.744196569382261, - "c6": 0.9331508899341507, - "c7": 9.068741945278859 + "points": { + "c1": -15.650312406995088, + "c2": 19.685491484386112, + "c3": -6.209038533335086, + "c4": -0.7512041102395663, + "c5": -17.43912141338753, + "c6": -9.35593907936403, + "c7": 2.317254405357488 }, - "vertexSeeds": { - "c1": 1.3820246399070792, - "c2": 1.4544696190153787, - "c3": 1.4936461464608377, - "c4": 1.321430679869977, - "c5": 1.4387481245910512, - "c6": 1.4879095774509932, - "c7": 1.3296938146302013 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.775312066574203, + "c3": 1.4794267221451678, + "c4": 1.1835413777161345, + "c5": 0.8876560332871015, + "c6": 0.5917706888580684, + "c7": 0.2958853444290332 }, "rgb": [58, 15, 49] }, @@ -351924,23 +351924,23 @@ "year": 1799, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -3.217290251753255, - "c2": 5.127097358452289, - "c3": -26.20991105805986, - "c4": 18.651378830798862, - "c5": 11.640146607825322, - "c6": -4.22065366331001, - "c7": -25.117938042617684 + "points": { + "c1": -8.721906189507852, + "c2": -21.817909818330737, + "c3": 10.238531779652263, + "c4": 2.3038153294714228, + "c5": -27.77818215654569, + "c6": -7.987383371696623, + "c7": 25.50630543522496 }, - "vertexSeeds": { - "c1": 3.7719822299057424, - "c2": 3.861793981851387, - "c3": 3.7918189808303295, - "c4": 3.7292828354887115, - "c5": 3.677566416304686, - "c6": 3.785795201520429, - "c7": 3.670384093392215 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165048, + "c3": 4.692556634304207, + "c4": 3.754045307443365, + "c5": 2.815533980582524, + "c6": 1.8770226537216825, + "c7": 0.9385113268608413 }, "rgb": [222, 0, 59] }, @@ -351951,23 +351951,23 @@ "year": 1799, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -2.368978342825983, - "c2": 3.4971918150254915, - "c3": -8.536612574026957, - "c4": -24.056326597333445, - "c5": 20.72702137980493, - "c6": 3.988740413602123, - "c7": -20.357743406850034 + "points": { + "c1": 0.20178485383287637, + "c2": -4.295807480010538, + "c3": 16.244343120345135, + "c4": 2.2989836492283864, + "c5": 20.28167060156452, + "c6": -20.837520703580488, + "c7": -18.67619123340549 }, - "vertexSeeds": { - "c1": 3.8707494736452634, - "c2": 3.692285373310801, - "c3": 3.8633173454592478, - "c4": 3.9120589517604776, - "c5": 3.690786883107341, - "c6": 3.9186635683911226, - "c7": 3.6575580794966003 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245496, + "c3": 4.738788719371239, + "c4": 3.791030975496993, + "c5": 2.843273231622748, + "c6": 1.8955154877484908, + "c7": 0.9477577438742454 }, "rgb": [58, 15, 49] }, @@ -351978,23 +351978,23 @@ "year": 1799, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 21.668464893976033, - "c2": 21.17207376750491, - "c3": 23.143043779817784, - "c4": -11.455764602114632, - "c5": -12.159281486528508, - "c6": -25.094155067524333, - "c7": -17.128161385799558 + "points": { + "c1": -0.3379180754006441, + "c2": -13.816127170601213, + "c3": 21.81351771259183, + "c4": 13.605124555743952, + "c5": 21.886586020126156, + "c6": -8.136385996220753, + "c7": -15.275099885831299 }, - "vertexSeeds": { - "c1": 3.8290545379001837, - "c2": 3.817431132004543, - "c3": 3.8487065042782875, - "c4": 3.8416043862428464, - "c5": 3.8661073002128137, - "c6": 3.777150415616737, - "c7": 3.8126583034085244 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245496, + "c3": 4.738788719371239, + "c4": 3.791030975496993, + "c5": 2.843273231622748, + "c6": 1.8955154877484908, + "c7": 0.9477577438742454 }, "rgb": [86, 146, 138] }, @@ -352005,23 +352005,23 @@ "year": 1799, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 20.661256418836352, - "c2": 19.479669936719162, - "c3": -19.557078511784454, - "c4": 23.98013494424653, - "c5": -5.210299293135172, - "c6": -25.21143026269779, - "c7": 25.496223130167323 + "points": { + "c1": 8.197732983533044, + "c2": -24.19211754499732, + "c3": -21.44716212867227, + "c4": 19.04438270188524, + "c5": -5.935219276283792, + "c6": -11.193713346600838, + "c7": -17.549011562534197 }, - "vertexSeeds": { - "c1": 3.8809166603963443, - "c2": 3.710073038998458, - "c3": 3.7205128672925007, - "c4": 3.8314921430712423, - "c5": 3.9093188937142767, - "c6": 3.705605245963864, - "c7": 3.8076756750137988 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205273, + "c3": 4.7156726768377295, + "c4": 3.772538141470186, + "c5": 2.8294036061026304, + "c6": 1.8862690707350869, + "c7": 0.9431345353675434 }, "rgb": [222, 0, 59] }, @@ -352032,23 +352032,23 @@ "year": 1799, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -2.1485408347666812, - "c2": -19.698839156964816, - "c3": 5.673641982262616, - "c4": 18.736272872567852, - "c5": -11.697183708354647, - "c6": 14.084040030599056, - "c7": 22.541373047032636 + "points": { + "c1": -23.149999070531667, + "c2": -18.404529650287692, + "c3": -26.0906520073832, + "c4": 14.153357761187266, + "c5": -7.3623137796580025, + "c6": 7.632710774647244, + "c7": 5.729626135991815 }, - "vertexSeeds": { - "c1": 3.8012023626425218, - "c2": 3.7113130847421183, - "c3": 3.894773195002781, - "c4": 3.8486555956094697, - "c5": 3.7398984789964076, - "c6": 3.75614573552382, - "c7": 3.7247736677623093 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205273, + "c3": 4.7156726768377295, + "c4": 3.772538141470186, + "c5": 2.8294036061026304, + "c6": 1.8862690707350869, + "c7": 0.9431345353675434 }, "rgb": [222, 0, 59] }, @@ -352059,23 +352059,23 @@ "year": 1800, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -17.26363875285416, - "c2": -40.62454766103417, - "c3": 21.559378782752162, - "c4": -2.3746961704742944, - "c5": -15.330605773617378, - "c6": 31.976971178925098, - "c7": -5.910690803201447 + "points": { + "c1": 8.543641079146823, + "c2": -27.420713697825782, + "c3": -43.0572502840081, + "c4": 16.48300160222813, + "c5": -31.909866945747595, + "c6": -10.600998958478364, + "c7": 44.495387008481686 }, - "vertexSeeds": { - "c1": 7.35673139102083, - "c2": 7.046222320512059, - "c3": 7.238307154293881, - "c4": 7.1686386597933485, - "c5": 7.414977645378928, - "c6": 7.24861253463901, - "c7": 7.511769520808124 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847431, + "c3": 9.107720758206188, + "c4": 7.286176606564948, + "c5": 5.464632454923705, + "c6": 3.6430883032824846, + "c7": 1.8215441516412423 }, "rgb": [86, 146, 138] }, @@ -352086,23 +352086,23 @@ "year": 1799, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 2.6525337700510683, - "c2": -4.644879008207006, - "c3": -15.32950266744686, - "c4": -1.9680523339212712, - "c5": -22.022857858909394, - "c6": 21.167033209965986, - "c7": -24.256456418739663 + "points": { + "c1": 14.736306110592935, + "c2": -17.965254300904135, + "c3": 26.87584179990526, + "c4": 9.685716044834287, + "c5": -3.631571724772165, + "c6": -4.986991785232252, + "c7": -23.266207174373136 }, - "vertexSeeds": { - "c1": 10.056020173260864, - "c2": 10.00787230655774, - "c3": 9.879726681589009, - "c4": 9.689714577037329, - "c5": 9.806136122619039, - "c6": 9.81934486503462, - "c7": 9.682618373357345 + "offsets": { + "c1": 17.055016181229774, + "c2": 14.61858529819693, + "c3": 12.182154415164131, + "c4": 9.745723532131288, + "c5": 7.309292649098465, + "c6": 4.872861766065644, + "c7": 2.436430883032822 }, "rgb": [238, 201, 159] }, @@ -352113,23 +352113,23 @@ "year": 1799, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -20.865016409145117, - "c2": -26.95016476580799, - "c3": -19.280137301781245, - "c4": -11.547405334430255, - "c5": -16.959963130981237, - "c6": -18.278656647205807, - "c7": 10.51679760333555 + "points": { + "c1": 24.02441021332569, + "c2": 30.123445527262763, + "c3": -21.89493115236368, + "c4": -23.226230281363343, + "c5": -30.390687103221858, + "c6": -26.39207778002047, + "c7": -28.682917869711225 }, - "vertexSeeds": { - "c1": 8.048321744428415, - "c2": 8.19034135037858, - "c3": 8.243368528062119, - "c4": 7.9938610346061045, - "c5": 7.901156016941713, - "c6": 8.073317583500728, - "c7": 8.198710780149453 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174747, + "c3": 9.8705501618123, + "c4": 7.896440129449831, + "c5": 5.922330097087385, + "c6": 3.9482200647249157, + "c7": 1.9741100323624472 }, "rgb": [58, 15, 49] }, @@ -352140,23 +352140,23 @@ "year": 1800, "resistanceReported": false, "duration": 49852800, - "curveSeeds": { - "c1": -30.67862459912842, - "c2": -60.466148190531136, - "c3": 59.080399438639816, - "c4": 7.411385671286325, - "c5": -56.944249187501654, - "c6": -33.28873071178457, - "c7": 50.157278766031 + "points": { + "c1": 57.4140661216144, + "c2": -17.53534562202789, + "c3": 6.54679864475284, + "c4": -58.71039348914181, + "c5": 42.958754374219, + "c6": -9.49058182115364, + "c7": -24.863794057639062 }, - "vertexSeeds": { - "c1": 7.049295835675234, - "c2": 6.531964386177192, - "c3": 7.032412603977802, - "c4": 6.493216514865928, - "c5": 6.602640837740118, - "c6": 6.4534452290272455, - "c7": 7.029307139890902 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.09708737864077, + "c3": 8.414239482200657, + "c4": 6.731391585760521, + "c5": 5.048543689320385, + "c6": 3.3656957928802496, + "c7": 1.6828478964401354 }, "rgb": [238, 201, 159] }, @@ -352167,23 +352167,23 @@ "year": 1799, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 28.548006630369542, - "c2": -7.966337687112919, - "c3": -19.717147942818688, - "c4": -1.9865714141339055, - "c5": 21.91344759778429, - "c6": 9.6291936965888, - "c7": -15.529047692048806 + "points": { + "c1": -17.04678367655965, + "c2": 24.945493073351976, + "c3": -32.34520423724837, + "c4": 26.616441578338673, + "c5": -31.26411468347247, + "c6": -30.189213329796665, + "c7": 28.054981184729577 }, - "vertexSeeds": { - "c1": 2.0044734287435557, - "c2": 2.058882617179502, - "c3": 2.2788734801708257, - "c4": 2.17862555467561, - "c5": 2.1296871927159113, - "c6": 2.1339119625116414, - "c7": 2.09490194051996 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.32871012482663, + "c3": 2.773925104022192, + "c4": 2.2191400832177544, + "c5": 1.6643550624133132, + "c6": 1.1095700416088756, + "c7": 0.5547850208044378 }, "rgb": [222, 0, 59] }, @@ -352194,23 +352194,23 @@ "year": 1799, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 14.187731753859573, - "c2": 24.168413935338947, - "c3": 15.484539415293774, - "c4": -26.557163415171214, - "c5": -7.126650973732364, - "c6": 15.250288954556261, - "c7": 27.268577422817465 + "points": { + "c1": -14.161453775804063, + "c2": -11.736953967853516, + "c3": -13.371314394651392, + "c4": -19.198881391209717, + "c5": -17.3405213645976, + "c6": 24.686544785326163, + "c7": -21.172948248597514 }, - "vertexSeeds": { - "c1": 5.216580120158918, - "c2": 5.315378471527939, - "c3": 5.357219439714208, - "c4": 5.312010064220682, - "c5": 5.3971838310349565, - "c6": 5.218241094844313, - "c7": 5.014114684694468 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302353, + "c3": 6.495607951918641, + "c4": 5.196486361534909, + "c5": 3.8973647711511763, + "c6": 2.5982431807674655, + "c7": 1.2991215903837328 }, "rgb": [222, 0, 59] }, @@ -352221,23 +352221,23 @@ "year": 1800, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 26.520035591688682, - "c2": -5.1233280537092085, - "c3": 26.262905476543494, - "c4": 5.022552017935659, - "c5": -17.926138346821283, - "c6": 10.2295925406616, - "c7": -13.836213634154447 + "points": { + "c1": 15.439589847310721, + "c2": -32.67887889831265, + "c3": -25.81835629450624, + "c4": -10.43132137420703, + "c5": -37.66273992057685, + "c6": 31.29267939622281, + "c7": 27.283382648634458 }, - "vertexSeeds": { - "c1": 3.0282539410312874, - "c2": 3.708806940233848, - "c3": 3.0979515231203867, - "c4": 2.98702954745364, - "c5": 3.5618325404514093, - "c6": 3.332130142083305, - "c7": 2.9794405358387013 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843272, + "c3": 4.507628294036063, + "c4": 3.6061026352288494, + "c5": 2.704576976421636, + "c6": 1.8030513176144267, + "c7": 0.9015256588072134 }, "rgb": [238, 201, 159] }, @@ -352248,23 +352248,23 @@ "year": 1799, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -5.32504399525779, - "c2": -20.274023818020247, - "c3": -10.60602424700922, - "c4": -12.056497373475004, - "c5": 2.3260803255574736, - "c6": -27.51349044322136, - "c7": -0.1862688203832441 + "points": { + "c1": 23.12885531205358, + "c2": -23.437655108415246, + "c3": 4.3177589530637945, + "c4": -22.641302035850337, + "c5": 21.185402433541313, + "c6": 6.901890937672221, + "c7": 6.498565704234558 }, - "vertexSeeds": { - "c1": 7.941207958651143, - "c2": 7.703809188313168, - "c3": 7.660324190133555, - "c4": 7.824753966703275, - "c5": 7.829663135625447, - "c6": 7.994488614529288, - "c7": 8.161385294089943 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094305, + "c3": 9.824318076745264, + "c4": 7.8594544613962025, + "c5": 5.894590846047164, + "c6": 3.9297272306981013, + "c7": 1.96486361534904 }, "rgb": [77, 76, 132] }, @@ -352275,23 +352275,23 @@ "year": 1800, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -17.04416200117785, - "c2": -23.14891594272997, - "c3": -30.629806768997362, - "c4": 17.09490146155327, - "c5": 30.419979597796768, - "c6": 3.856467591489576, - "c7": -19.788903839620332 + "points": { + "c1": 14.458867381381879, + "c2": -19.785228619114108, + "c3": -10.682488309202643, + "c4": 9.431252440097964, + "c5": 9.645093915099054, + "c6": 18.903700155758976, + "c7": 21.884949173267735 }, - "vertexSeeds": { - "c1": 6.051301487263503, - "c2": 6.249217299031909, - "c3": 6.403443574850144, - "c4": 6.074495445395796, - "c5": 6.1384661306378, - "c6": 6.327395866795507, - "c7": 6.229876190181053 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [77, 76, 132] }, @@ -352302,23 +352302,23 @@ "year": 1799, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -12.10458693440809, - "c2": -18.036809074338738, - "c3": 14.008583817918765, - "c4": 8.639851520541772, - "c5": 11.867481725724371, - "c6": -11.834498250742993, - "c7": 22.50245076717646 + "points": { + "c1": -9.809462438207913, + "c2": 20.680978993878472, + "c3": -25.999344710622527, + "c4": 2.356451175909765, + "c5": -6.391733467318055, + "c6": -22.53995517689928, + "c7": -28.257548515255458 }, - "vertexSeeds": { - "c1": 8.262818470491743, - "c2": 8.390228410595292, - "c3": 8.298169157461725, - "c4": 8.43251407680451, - "c5": 8.896098168439854, - "c6": 8.33170065273525, - "c7": 8.682800748814563 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703195, + "c3": 10.74895977808598, + "c4": 8.59916782246879, + "c5": 6.4493758668515975, + "c6": 4.299583911234384, + "c7": 2.149791955617192 }, "rgb": [77, 76, 132] }, @@ -352329,23 +352329,23 @@ "year": 1800, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -18.362420484094613, - "c2": -6.396507890103479, - "c3": -32.85590928359092, - "c4": 31.034593902928634, - "c5": -14.809037311327288, - "c6": -4.226464419132313, - "c7": 7.4204390766601875 + "points": { + "c1": -35.25811141520617, + "c2": -12.796227869905888, + "c3": 17.741059801616963, + "c4": -18.847627746827182, + "c5": -41.033863444729946, + "c6": -21.483583939370035, + "c7": -18.351867990852107 }, - "vertexSeeds": { - "c1": 7.832450760250263, - "c2": 7.720544504626354, - "c3": 7.561107582983322, - "c4": 7.751923036401316, - "c5": 7.730097446732, - "c6": 7.671519482952083, - "c7": 7.7174849821908635 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370328, + "c3": 9.408229311141929, + "c4": 7.526583448913552, + "c5": 5.6449375866851526, + "c6": 3.763291724456776, + "c7": 1.8816458622283991 }, "rgb": [58, 15, 49] }, @@ -352356,23 +352356,23 @@ "year": 1799, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -10.374860760837866, - "c2": -26.906196072872202, - "c3": 22.075168017994887, - "c4": -17.791777623807093, - "c5": 7.147132034710328, - "c6": 22.34643533068898, - "c7": -0.07265600469665046 + "points": { + "c1": 30.13998781659174, + "c2": -16.74915917742446, + "c3": 1.4064779555525604, + "c4": -15.655262416527435, + "c5": 31.880285290527354, + "c6": 11.860308143400616, + "c7": 24.454768593815793 }, - "vertexSeeds": { - "c1": 9.286448559992657, - "c2": 9.356200398926013, - "c3": 8.999775866689717, - "c4": 9.20725282411814, - "c5": 8.97970084890269, - "c6": 8.716342827655865, - "c7": 9.106581786665693 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467416, + "c3": 11.188164586222834, + "c4": 8.950531668978277, + "c5": 6.712898751733697, + "c6": 4.4752658344891385, + "c7": 2.2376329172445586 }, "rgb": [238, 201, 159] }, @@ -352383,23 +352383,23 @@ "year": 1799, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 19.363957046527993, - "c2": -21.798109915243348, - "c3": -7.866436111905408, - "c4": 27.030331997406698, - "c5": -20.266892321497174, - "c6": -24.90254038522849, - "c7": 0.16391657423306327 + "points": { + "c1": -0.6057793324888756, + "c2": 12.544382075309677, + "c3": 2.1027941168618227, + "c4": 9.906167795564656, + "c5": -17.583894437187645, + "c6": -13.807429374366219, + "c7": 0.16282980323934027 }, - "vertexSeeds": { - "c1": 0.660621761658031, - "c2": 0.660621761658031, - "c3": 0.660621761658031, - "c4": 0.660621761658031, - "c5": 0.660621761658031, - "c6": 0.660621761658031, - "c7": 0.660621761658031 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -352410,23 +352410,23 @@ "year": 1799, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 15.611578750840561, - "c2": -0.44547889294799603, - "c3": 5.911420055475862, - "c4": -27.94411289376812, - "c5": -10.768907734196926, - "c6": 10.117607976595647, - "c7": -25.62379766889449 + "points": { + "c1": 17.63125994510659, + "c2": -11.049796079048413, + "c3": 8.376204927974921, + "c4": -27.783554262120028, + "c5": 23.091182087827317, + "c6": -20.889391778931987, + "c7": 28.240721717096473 }, - "vertexSeeds": { - "c1": 2.75751057902531, - "c2": 2.3124450521687216, - "c3": 2.24886000249, - "c4": 2.5786308373307563, - "c5": 2.7868898938864226, - "c6": 2.7291967784471103, - "c7": 2.3013149946251787 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993064, + "c3": 3.4442903374942224, + "c4": 2.7554322699953766, + "c5": 2.066574202496531, + "c6": 1.3777161349976894, + "c7": 0.6888580674988437 }, "rgb": [58, 15, 49] }, @@ -352437,23 +352437,23 @@ "year": 1800, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -7.621851179970207, - "c2": 11.979434499319652, - "c3": -18.16124287539461, - "c4": -31.1749214526438, - "c5": -30.1661923409667, - "c6": 2.289333013920789, - "c7": 27.68223291279096 + "points": { + "c1": -15.256782093268974, + "c2": -24.30681237698783, + "c3": -1.3323851321923925, + "c4": 34.32688892753319, + "c5": 26.774135409643236, + "c6": 36.000977712577935, + "c7": 33.81474104230473 }, - "vertexSeeds": { - "c1": 4.425343560452271, - "c2": 4.23920394360848, - "c3": 4.181312041112639, - "c4": 4.289442999701283, - "c5": 4.39410772521838, - "c6": 4.261972494144111, - "c7": 4.342263601881178 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251038, + "c3": 5.316689782709206, + "c4": 4.253351826167362, + "c5": 3.190013869625519, + "c6": 2.126675913083687, + "c7": 1.0633379565418435 }, "rgb": [222, 0, 59] }, @@ -352464,23 +352464,23 @@ "year": 1800, "resistanceReported": false, "duration": 35942400, - "curveSeeds": { - "c1": -34.15400258993726, - "c2": 16.583225778542115, - "c3": 6.027511121342812, - "c4": 25.06677633201349, - "c5": -23.209881389187025, - "c6": 20.55925129633809, - "c7": 32.22612994522342 + "points": { + "c1": -5.268349495654334, + "c2": 12.136014867858727, + "c3": -29.936866756373373, + "c4": 26.63329015533256, + "c5": -31.878943291561527, + "c6": 29.910858160749328, + "c7": -37.5415818547501 }, - "vertexSeeds": { - "c1": 8.621901743281784, - "c2": 8.915808114157397, - "c3": 8.555088118323964, - "c4": 8.895677268080078, - "c5": 8.97027213598467, - "c6": 9.060682403076688, - "c7": 8.604387309047727 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065185, + "c3": 10.95700416088765, + "c4": 8.765603328710139, + "c5": 6.574202496532603, + "c6": 4.382801664355069, + "c7": 2.1914008321775347 }, "rgb": [58, 15, 49] }, @@ -352491,23 +352491,23 @@ "year": 1800, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -5.015504016323863, - "c2": 9.386667807315074, - "c3": 25.08953126400323, - "c4": 27.73141666508307, - "c5": 4.023064603417321, - "c6": -6.552917447525349, - "c7": 4.978344130461782 + "points": { + "c1": -15.740351282770643, + "c2": -11.061159063763146, + "c3": -5.333823276036647, + "c4": -18.095473991503567, + "c5": -17.99299231267544, + "c6": 23.33599393195243, + "c7": 0.9821524911871222 }, - "vertexSeeds": { - "c1": 4.567368002907289, - "c2": 4.577585830600087, - "c3": 4.615079810082499, - "c4": 4.544036309450812, - "c5": 4.779455483407097, - "c6": 4.6840205183969355, - "c7": 4.848376769009695 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.9625520110956955, + "c3": 5.802126675913087, + "c4": 4.641701340730464, + "c5": 3.481276005547855, + "c6": 2.320850670365232, + "c7": 1.1604253351826097 }, "rgb": [222, 0, 59] }, @@ -352518,23 +352518,23 @@ "year": 1799, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 3.819316058051122, - "c2": -6.393105459041145, - "c3": 15.29090963121585, - "c4": 14.181514896075743, - "c5": 22.05091269863529, - "c6": 21.00949457141677, - "c7": -16.962976760443166 + "points": { + "c1": -22.95270908107844, + "c2": 26.823179602620502, + "c3": -16.463890208770348, + "c4": -22.03855500639312, + "c5": -18.37047988044356, + "c6": 16.27718243236853, + "c7": 17.940325227766618 }, - "vertexSeeds": { - "c1": 6.714732748298074, - "c2": 6.540359790458565, - "c3": 6.957375940894402, - "c4": 6.913162693874325, - "c5": 6.973419751013395, - "c6": 6.536117002995955, - "c7": 6.9851586863695605 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520115, + "c3": 8.3448913546001, + "c4": 6.675913083680085, + "c5": 5.006934812760068, + "c6": 3.337956541840031, + "c7": 1.6689782709200156 }, "rgb": [86, 146, 138] }, @@ -352545,23 +352545,23 @@ "year": 1800, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -17.457168377838197, - "c2": -21.038176111394048, - "c3": 14.324977135216443, - "c4": 10.810735618012586, - "c5": 9.360741146952336, - "c6": 34.91027598169809, - "c7": -1.7513591487432763 + "points": { + "c1": -0.2456156544112531, + "c2": -37.743563587690666, + "c3": 30.59360074559943, + "c4": 28.1741926015045, + "c5": 22.568411501406416, + "c6": -14.749013686662, + "c7": -3.9589547465830393 }, - "vertexSeeds": { - "c1": 0.11658031088082901, - "c2": 0.11658031088082901, - "c3": 0.11658031088082901, - "c4": 0.11658031088082901, - "c5": 0.11658031088082901, - "c6": 0.11658031088082901, - "c7": 0.11658031088082901 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -352572,23 +352572,23 @@ "year": 1800, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 26.405808133988863, - "c2": -15.426335090312772, - "c3": 20.555600376961543, - "c4": 7.737407068659003, - "c5": -2.6176231152667917, - "c6": 24.034595976675, - "c7": 18.461853540407304 + "points": { + "c1": -19.18194593133663, + "c2": 16.888024041361135, + "c3": -22.3520388792342, + "c4": -3.9845474989272027, + "c5": 10.817791835637358, + "c6": 10.791097813790095, + "c7": -10.047230401099615 }, - "vertexSeeds": { - "c1": 5.434648130570195, - "c2": 5.87651644674908, - "c3": 5.638746991690214, - "c4": 5.832141286653627, - "c5": 5.653955790979639, - "c6": 5.596608308496032, - "c7": 5.606735093460108 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.46047156726768, + "c3": 7.0503929727230625, + "c4": 5.640314378178446, + "c5": 4.230235783633829, + "c6": 2.820157189089234, + "c7": 1.410078594544617 }, "rgb": [238, 201, 159] }, @@ -352599,23 +352599,23 @@ "year": 1800, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -18.552550203842763, - "c2": -12.451265909172154, - "c3": -0.2034896041378218, - "c4": 20.515552946120287, - "c5": 11.558157420553101, - "c6": -14.929499256188754, - "c7": -0.9585727726387923 + "points": { + "c1": 25.078545077768233, + "c2": -13.212008840273725, + "c3": 32.1885535513887, + "c4": -26.836100375457253, + "c5": 30.26260890061708, + "c6": -27.0915855314218, + "c7": -21.285786059204106 }, - "vertexSeeds": { - "c1": 8.49919562067675, - "c2": 8.614504573314775, - "c3": 9.028262953747182, - "c4": 8.601929509814834, - "c5": 8.913137012997858, - "c6": 8.94844943794452, - "c7": 8.44469347662313 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864084, + "c3": 10.841423948220077, + "c4": 8.67313915857605, + "c5": 6.504854368932042, + "c6": 4.336569579288036, + "c7": 2.1682847896440065 }, "rgb": [222, 0, 59] }, @@ -352626,23 +352626,23 @@ "year": 1800, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 6.287971772743077, - "c2": 24.738212951139673, - "c3": -11.004428908735147, - "c4": 14.825425946090704, - "c5": -1.7761849132579677, - "c6": 27.696143347311846, - "c7": -22.033875421148792 + "points": { + "c1": -25.468368560568834, + "c2": -8.395645442045272, + "c3": -8.978259326981163, + "c4": -5.329829967958805, + "c5": 3.7863628471531, + "c6": -15.478194511279103, + "c7": -25.334434457964218 }, - "vertexSeeds": { - "c1": 8.93277727868067, - "c2": 8.398461524837957, - "c3": 8.587906641258344, - "c4": 8.70619370648363, - "c5": 8.880959833317304, - "c6": 9.157464013686234, - "c7": 8.71368544070341 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024965, + "c3": 10.933888118354133, + "c4": 8.747110494683302, + "c5": 6.560332871012471, + "c6": 4.373555247341662, + "c7": 2.186777623670831 }, "rgb": [222, 0, 59] }, @@ -352653,23 +352653,23 @@ "year": 1800, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 11.37230326606695, - "c2": 26.962711796540134, - "c3": -11.61373902735616, - "c4": 0.03355035106911686, - "c5": -1.9845579829388882, - "c6": -33.88519285226743, - "c7": -19.878726640080167 + "points": { + "c1": -26.9186421974299, + "c2": -0.904217428429817, + "c3": 31.171852205090545, + "c4": -24.09166106426873, + "c5": 27.611673978940644, + "c6": 48.10307926557448, + "c7": -44.623136184022165 }, - "vertexSeeds": { - "c1": 3.96507522876589, - "c2": 4.186441824031216, - "c3": 4.079293324347836, - "c4": 4.2738822120641045, - "c5": 4.173055536899708, - "c6": 3.9760082996529853, - "c7": 4.237316529769706 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.1303744798890465, + "c3": 5.10864539990753, + "c4": 4.0869163199260266, + "c5": 3.0651872399445232, + "c6": 2.043458159963007, + "c7": 1.0217290799815035 }, "rgb": [58, 15, 49] }, @@ -352680,23 +352680,23 @@ "year": 1799, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 13.985268705661419, - "c2": -22.931028419191115, - "c3": 7.728906048046934, - "c4": 8.940739852934712, - "c5": -9.013361800504375, - "c6": -23.375278665598618, - "c7": -13.888849144376847 + "points": { + "c1": 23.078750696403688, + "c2": 20.321675654384997, + "c3": -17.435408702013426, + "c4": -11.085964185414523, + "c5": -20.007212386078887, + "c6": -1.8118261782115965, + "c7": -5.788878507497632 }, - "vertexSeeds": { - "c1": 1.561338437806205, - "c2": 1.5888685088223622, - "c3": 1.5778029476451716, - "c4": 1.5827599782023352, - "c5": 1.5615129608942073, - "c6": 1.5381453652859087, - "c7": 1.5653584487248393 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.918631530282012, + "c4": 1.534905224225607, + "c5": 1.151178918169215, + "c6": 0.7674526121128099, + "c7": 0.38372630605640495 }, "rgb": [238, 201, 159] }, @@ -352707,23 +352707,23 @@ "year": 1799, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -7.668143044995681, - "c2": -16.691864639437767, - "c3": -8.560041386792722, - "c4": 22.665523504195093, - "c5": 24.203281042074856, - "c6": -19.615450264144023, - "c7": -22.387395808277937 + "points": { + "c1": -1.8219470236624318, + "c2": 18.184185445390433, + "c3": -1.433819220343814, + "c4": -13.063883091236402, + "c5": -5.249512735513676, + "c6": -5.429781528846316, + "c7": 24.877061141603846 }, - "vertexSeeds": { - "c1": 4.088334984981056, - "c2": 3.984639975476964, - "c3": 4.0070783316825365, - "c4": 4.279302286166729, - "c5": 4.284964097044355, - "c6": 4.124653987184945, - "c7": 4.033998018554578 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969485, + "c3": 5.154877484974578, + "c4": 4.12390198797966, + "c5": 3.0929264909847425, + "c6": 2.0619509939898246, + "c7": 1.0309754969949176 }, "rgb": [58, 15, 49] }, @@ -352734,23 +352734,23 @@ "year": 1799, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 26.34247532532831, - "c2": -23.734084822807166, - "c3": -28.838622747611947, - "c4": 14.684309018928552, - "c5": -1.2444707517334557, - "c6": 4.550406267581955, - "c7": -18.252264696541218 + "points": { + "c1": 25.0081656122995, + "c2": -10.874779982035356, + "c3": -15.720210347622247, + "c4": -3.438830979974334, + "c5": -23.46606528451636, + "c6": -4.741481317980561, + "c7": 20.4754186686977 }, - "vertexSeeds": { - "c1": 3.80991633956789, - "c2": 3.796335123897918, - "c3": 3.870171099932294, - "c4": 3.6395157396087368, - "c5": 3.8216225989519508, - "c6": 3.7710839201279116, - "c7": 3.848536596739373 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124831, + "c3": 4.669440591770687, + "c4": 3.7355524734165546, + "c5": 2.8016643550624103, + "c6": 1.8677762367082773, + "c7": 0.933888118354133 }, "rgb": [86, 146, 138] }, @@ -352761,23 +352761,23 @@ "year": 1799, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 11.694877538533657, - "c2": -25.72513600308256, - "c3": -13.238087953251165, - "c4": -6.031130035362597, - "c5": -1.7432255383876907, - "c6": -20.81420567498427, - "c7": -8.418828181541716 + "points": { + "c1": -28.072463097932104, + "c2": 21.69581924835416, + "c3": -12.103091252283946, + "c4": -18.48220044791062, + "c5": -15.602685046090153, + "c6": -11.354684955181568, + "c7": 5.000062273225428 }, - "vertexSeeds": { - "c1": 1.5624114780492293, - "c2": 1.9379305174022963, - "c3": 1.8077126704987962, - "c4": 1.8180209959004474, - "c5": 2.075151519009081, - "c6": 1.7414244563444958, - "c7": 1.7511661017501046 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.5427646786870093, + "c4": 2.034211742949607, + "c5": 1.5256588072122066, + "c6": 1.0171058714748045, + "c7": 0.5085529357374022 }, "rgb": [77, 76, 132] }, @@ -352788,23 +352788,23 @@ "year": 1799, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": -6.456899786351267, - "c2": -19.21379961787334, - "c3": 4.204707651472621, - "c4": 4.6666586456326655, - "c5": -9.229854608905946, - "c6": -16.233797617632053, - "c7": 20.26411121140862 + "points": { + "c1": -22.08627197869354, + "c2": 15.514022467438444, + "c3": 4.3933547011179925, + "c4": 21.617892165187598, + "c5": 23.24864595528721, + "c6": -13.771005656696916, + "c7": 20.80426155533607 }, - "vertexSeeds": { - "c1": 0.7832940451892819, - "c2": 0.7681076474226631, - "c3": 0.7624018467836494, - "c4": 0.7398217553217491, - "c5": 0.7466207072448798, - "c6": 0.762411219152166, - "c7": 0.7533747419168136 + "offsets": { + "c1": 1.4886731391585761, + "c2": 1.2760055478502077, + "c3": 1.0633379565418406, + "c4": 0.8506703652334722, + "c5": 0.6380027739251038, + "c6": 0.4253351826167354, + "c7": 0.21266759130836838 }, "rgb": [238, 201, 159] }, @@ -352815,23 +352815,23 @@ "year": 1800, "resistanceReported": false, "duration": 41731200, - "curveSeeds": { - "c1": -17.053771903443447, - "c2": 1.581133539397456, - "c3": 35.68006426025416, - "c4": 27.979772756265028, - "c5": 12.19741371476453, - "c6": -35.350487893048225, - "c7": 17.218931229745003 + "points": { + "c1": 49.48659482027919, + "c2": -9.40653020747795, + "c3": -6.967261815509211, + "c4": 36.64975649912444, + "c5": 44.189120754690784, + "c6": 8.675440588659491, + "c7": -9.770690787667583 }, - "vertexSeeds": { - "c1": 8.019844613778176, - "c2": 8.184697748745755, - "c3": 7.950561766394162, - "c4": 8.419948923074548, - "c5": 8.016738200330426, - "c6": 8.220316456476562, - "c7": 8.550004238028839 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898755, + "c3": 10.286638927415634, + "c4": 8.229311141932511, + "c5": 6.171983356449389, + "c6": 4.114655570966244, + "c7": 2.057327785483122 }, "rgb": [86, 146, 138] }, @@ -352842,23 +352842,23 @@ "year": 1800, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -2.175667543805176, - "c2": 1.1437829741894951, - "c3": -13.835746377127395, - "c4": -3.1056189331472126, - "c5": 2.4323713425702245, - "c6": -18.850349458803976, - "c7": -14.94211745714948 + "points": { + "c1": 20.2535232009039, + "c2": -8.155669465661521, + "c3": -8.63356722376167, + "c4": 24.220963722328825, + "c5": 29.147088952243884, + "c6": 19.376301182801356, + "c7": 6.2078824612328845 }, - "vertexSeeds": { - "c1": 1.12113643906328, - "c2": 1.210008460220605, - "c3": 1.2379224770040418, - "c4": 1.098772198589367, - "c5": 1.1101790131851081, - "c6": 1.1945843079255087, - "c7": 1.1978687941740571 + "offsets": { + "c1": 2.1359223300970873, + "c2": 1.8307905686546462, + "c3": 1.525658807212205, + "c4": 1.2205270457697637, + "c5": 0.9153952843273235, + "c6": 0.6102635228848824, + "c7": 0.3051317614424412 }, "rgb": [77, 76, 132] }, @@ -352869,23 +352869,23 @@ "year": 1800, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -22.716202193796825, - "c2": 5.695200469454662, - "c3": -34.302377462643875, - "c4": 34.132778205256706, - "c5": -10.770260669973375, - "c6": -28.729095240478596, - "c7": -42.06679754313911 + "points": { + "c1": -43.24617501394453, + "c2": -11.128464520222927, + "c3": -21.84502243616551, + "c4": -24.71057969342949, + "c5": -31.066408598135617, + "c6": 6.056112195806328, + "c7": -31.055102208096805 }, - "vertexSeeds": { - "c1": 8.7549180585296, - "c2": 8.85410181525019, - "c3": 8.921078477383524, - "c4": 9.219292680874874, - "c5": 9.072444817303573, - "c6": 9.03733799893153, - "c7": 8.739766323226693 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668526, + "c3": 11.303744798890428, + "c4": 9.04299583911235, + "c5": 6.782246879334252, + "c6": 4.521497919556175, + "c7": 2.2607489597780988 }, "rgb": [222, 0, 59] }, @@ -352896,23 +352896,23 @@ "year": 1799, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 19.566147018368, - "c2": 5.1891191731216, - "c3": 16.306614892376146, - "c4": -13.573660607944202, - "c5": -13.117624984375093, - "c6": -23.806233918206953, - "c7": 12.16232295026468 + "points": { + "c1": -6.107620515220518, + "c2": 12.176080106565578, + "c3": -12.326987871406528, + "c4": 20.85671093923432, + "c5": -4.494903671091162, + "c6": 3.9860482523039664, + "c7": 14.275752053544906 }, - "vertexSeeds": { - "c1": 5.288493895685712, - "c2": 5.3567217728416, - "c3": 5.5328525732861635, - "c4": 5.329831415347558, - "c5": 5.445068835012135, - "c6": 5.336588396472657, - "c7": 5.34235832900068 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986137, + "c3": 6.888580674988432, + "c4": 5.5108645399907505, + "c5": 4.133148404993069, + "c6": 2.7554322699953864, + "c7": 1.3777161349976823 }, "rgb": [77, 76, 132] }, @@ -352923,23 +352923,23 @@ "year": 1800, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -18.002791533832518, - "c2": -17.412435597395138, - "c3": 26.732185047854557, - "c4": -0.0344382104582408, - "c5": -2.8246171309803074, - "c6": -16.335453890766686, - "c7": 38.35961784872849 + "points": { + "c1": 21.008267044426766, + "c2": -35.37648492335305, + "c3": 9.218812322463897, + "c4": -7.326666205611382, + "c5": -40.1033954752274, + "c6": 8.97939097999489, + "c7": 38.93510766977856 }, - "vertexSeeds": { - "c1": 13.188820531392796, - "c2": 13.747309866804546, - "c3": 13.241086602167163, - "c4": 13.248631709402472, - "c5": 13.761472285690365, - "c6": 13.884179705843591, - "c7": 13.547819011327334 + "offsets": { + "c1": 23.721682847896442, + "c2": 20.332871012482652, + "c3": 16.944059177068905, + "c4": 13.555247341655116, + "c5": 10.166435506241326, + "c6": 6.777623670827579, + "c7": 3.3888118354137897 }, "rgb": [86, 146, 138] }, @@ -352950,23 +352950,23 @@ "year": 1799, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -5.891041996995096, - "c2": 16.282973805728044, - "c3": 19.28275833203963, - "c4": -15.46594137528673, - "c5": 8.366127864985177, - "c6": -24.810940032543936, - "c7": 12.275761079505433 + "points": { + "c1": -20.55822025082891, + "c2": 13.435029611527678, + "c3": -1.7899822546739195, + "c4": -5.872420519222523, + "c5": 2.7473287256559935, + "c6": -15.65391177442013, + "c7": -9.86022596977897 }, - "vertexSeeds": { - "c1": 0.9821732751309441, - "c2": 0.9806934099796342, - "c3": 0.890101625821175, - "c4": 0.9140311057888928, - "c5": 0.9022666684786225, - "c6": 0.916277262700798, - "c7": 0.9818676036355218 + "offsets": { + "c1": 1.4886731391585761, + "c2": 1.2760055478502075, + "c3": 1.063337956541839, + "c4": 0.8506703652334724, + "c5": 0.6380027739251037, + "c6": 0.42533518261673525, + "c7": 0.21266759130836851 }, "rgb": [222, 0, 59] }, @@ -352977,23 +352977,23 @@ "year": 1800, "resistanceReported": false, "duration": 34300800, - "curveSeeds": { - "c1": 20.84598994183665, - "c2": 10.290159618343722, - "c3": -43.06800629782475, - "c4": -13.80150071292676, - "c5": 41.48165430240397, - "c6": -25.920870295631374, - "c7": -14.965884901432496 + "points": { + "c1": 36.675633546426496, + "c2": 10.341781346948167, + "c3": 49.526262529136375, + "c4": 40.63799772150787, + "c5": -26.094600213585295, + "c6": -43.574433205831454, + "c7": 0.3919400997422784 }, - "vertexSeeds": { - "c1": 7.984040677666905, - "c2": 8.228948568663139, - "c3": 8.50519585781844, - "c4": 8.325370377471051, - "c5": 8.508532400074234, - "c6": 8.038391832130833, - "c7": 8.027648749437773 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.39944521497919, + "c3": 10.332871012482673, + "c4": 8.266296809986134, + "c5": 6.199722607489595, + "c6": 4.133148404993078, + "c7": 2.066574202496539 }, "rgb": [86, 146, 138] }, @@ -353004,23 +353004,23 @@ "year": 1799, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": -17.705858462425304, - "c2": -16.69161284130164, - "c3": -9.199839084534993, - "c4": -16.22803145422272, - "c5": -5.942806564742845, - "c6": 21.426894071055216, - "c7": 18.72312848900387 + "points": { + "c1": -4.82122058208796, + "c2": 5.570917147691986, + "c3": -13.747775959964745, + "c4": 15.450764951801425, + "c5": 9.722232499256101, + "c6": 19.770934262563955, + "c7": -16.60827945909498 }, - "vertexSeeds": { - "c1": 2.9188122289133616, - "c2": 2.985396369171739, - "c3": 3.0013476172768456, - "c4": 2.883730211798468, - "c5": 3.0052601756988864, - "c6": 2.941332011758072, - "c7": 2.962764479485694 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355057, + "c3": 3.652334720295887, + "c4": 2.921867776236705, + "c5": 2.191400832177535, + "c6": 1.4609338881183525, + "c7": 0.7304669440591696 }, "rgb": [58, 15, 49] }, @@ -353031,23 +353031,23 @@ "year": 1800, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -1.8731369663008834, - "c2": -9.281926253039114, - "c3": -14.52017936612025, - "c4": 7.551362016484553, - "c5": -13.32625120538471, - "c6": -25.063159317088783, - "c7": 18.660992597334157 + "points": { + "c1": -3.099920776446872, + "c2": -9.73706818956095, + "c3": 8.92152839092254, + "c4": -6.827911732456517, + "c5": -15.646066972979984, + "c6": 27.99390650591254, + "c7": -27.558648978342905 }, - "vertexSeeds": { - "c1": 6.926221635296985, - "c2": 6.573266054047678, - "c3": 6.887830957533178, - "c4": 6.563862552860909, - "c5": 6.363679130501346, - "c6": 6.625268873823034, - "c7": 6.646464258658192 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -353058,23 +353058,23 @@ "year": 1800, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -16.820573026898437, - "c2": 10.779833461817702, - "c3": -37.08274293238288, - "c4": 31.427174346149755, - "c5": 19.433291887045215, - "c6": -4.869160593094527, - "c7": 9.778677031384206 + "points": { + "c1": 28.293068726457562, + "c2": -1.6023263930591085, + "c3": 39.206988176098776, + "c4": 36.112402078702175, + "c5": -5.029999879055389, + "c6": 31.243068135983748, + "c7": -5.275094653367496 }, - "vertexSeeds": { - "c1": 6.724103770587648, - "c2": 6.240739309920504, - "c3": 6.469659894849228, - "c4": 6.492655607462427, - "c5": 6.603933210815978, - "c6": 6.2526583497324895, - "c7": 6.352001845644516 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997215, + "c3": 8.044382801664357, + "c4": 6.435506241331477, + "c5": 4.826629680998619, + "c6": 3.2177531206657384, + "c7": 1.6088765603328805 }, "rgb": [58, 15, 49] }, @@ -353085,23 +353085,23 @@ "year": 1800, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -7.378358292399156, - "c2": -21.253913717802725, - "c3": 18.417946764540346, - "c4": 24.932232974004087, - "c5": -12.52516249119331, - "c6": -10.787426456414416, - "c7": -9.479259833153538 + "points": { + "c1": 5.087241088094814, + "c2": -8.899716736065773, + "c3": -28.99863456144302, + "c4": -11.87765461201997, + "c5": 19.888748932914197, + "c6": -10.246514193418765, + "c7": 23.85171377808043 }, - "vertexSeeds": { - "c1": 8.307135346140765, - "c2": 8.109616096011354, - "c3": 8.296159849336972, - "c4": 8.38439124453472, - "c5": 8.009888817831257, - "c6": 8.231572902764361, - "c7": 7.984892795373304 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.26074895977809, + "c3": 10.217290799815078, + "c4": 8.173832639852067, + "c5": 6.130374479889034, + "c6": 4.086916319926022, + "c7": 2.043458159963011 }, "rgb": [86, 146, 138] }, @@ -353112,23 +353112,23 @@ "year": 1800, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 27.90638819415993, - "c2": -15.727191615801836, - "c3": -24.746571986789746, - "c4": -7.383681058523798, - "c5": 9.61734856042689, - "c6": 16.39632468819299, - "c7": -23.949183491768334 + "points": { + "c1": -9.31680418387409, + "c2": 27.283780118116425, + "c3": -26.58907693094692, + "c4": 11.45150427160415, + "c5": 33.050224350004676, + "c6": -0.552590580632824, + "c7": 18.553480683801943 }, - "vertexSeeds": { - "c1": 8.8591386018834, - "c2": 8.848209155831235, - "c3": 8.79081778777601, - "c4": 8.553279446786407, - "c5": 8.714478568374957, - "c6": 8.736102645895972, - "c7": 9.123365604798325 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145629, + "c3": 11.003236245954687, + "c4": 8.802588996763745, + "c5": 6.601941747572804, + "c6": 4.401294498381884, + "c7": 2.20064724919092 }, "rgb": [77, 76, 132] }, @@ -353139,23 +353139,23 @@ "year": 1800, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 16.019305308967727, - "c2": 4.117312560243594, - "c3": 21.450941274943307, - "c4": 8.302899707905038, - "c5": -18.97129091193129, - "c6": 1.455300329035797, - "c7": 26.291739290150684 + "points": { + "c1": 28.189509448029185, + "c2": 3.084733148784487, + "c3": -0.7545900417576092, + "c4": 5.6282689716494545, + "c5": -31.922490113707543, + "c6": 20.010494220346672, + "c7": 4.872897160033425 }, - "vertexSeeds": { - "c1": 8.841768310708714, - "c2": 8.800364766378518, - "c3": 9.20416734727854, - "c4": 8.783418356919466, - "c5": 9.280257734530847, - "c6": 8.996154506882355, - "c7": 9.025771165902379 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909848, + "c3": 11.442441054091542, + "c4": 9.153952843273233, + "c5": 6.865464632454924, + "c6": 4.576976421636616, + "c7": 2.288488210818308 }, "rgb": [77, 76, 132] }, @@ -353166,23 +353166,23 @@ "year": 1800, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 34.17734343763513, - "c2": -14.586884896805106, - "c3": 11.610050323376285, - "c4": 25.53368707372865, - "c5": 32.09640106242472, - "c6": 17.998413521050267, - "c7": -24.886096565259937 + "points": { + "c1": -32.0614702172999, + "c2": -36.38544046779595, + "c3": 28.364622943328058, + "c4": -1.486524202436648, + "c5": -10.179644294509448, + "c6": 4.39433733021405, + "c7": 37.07797576067257 }, - "vertexSeeds": { - "c1": 4.211981389518689, - "c2": 4.266015975144993, - "c3": 4.360268071041779, - "c4": 4.470583220584852, - "c5": 4.146344606538737, - "c6": 4.495606188002096, - "c7": 4.450303642027046 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371706, + "c3": 5.386037910309752, + "c4": 4.308830328247811, + "c5": 3.2316227461858578, + "c6": 2.1544151641239053, + "c7": 1.0772075820619527 }, "rgb": [77, 76, 132] }, @@ -353193,23 +353193,23 @@ "year": 1799, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": -5.185890127397489, - "c2": -16.657391144552978, - "c3": 19.76238015928397, - "c4": -18.32822942019884, - "c5": -17.108307767173613, - "c6": 4.038208103662779, - "c7": 15.609837636831372 + "points": { + "c1": -0.2726686244195946, + "c2": -1.9329727160986785, + "c3": -13.45338201287082, + "c4": 13.809905063201228, + "c5": 2.0337382145899774, + "c6": -5.0069263335932455, + "c7": -1.8379715119329738 }, - "vertexSeeds": { - "c1": 1.827219946343015, - "c2": 1.954319643896417, - "c3": 2.054825456449701, - "c4": 2.183695056963162, - "c5": 1.8824946208949118, - "c6": 1.984414594473001, - "c7": 2.044408388485073 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852972, + "c3": 2.635228848821083, + "c4": 2.1081830790568654, + "c5": 1.5811373092926486, + "c6": 1.0540915395284343, + "c7": 0.5270457697642171 }, "rgb": [58, 15, 49] }, @@ -353220,23 +353220,23 @@ "year": 1800, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 9.727894840317695, - "c2": 9.903285079307594, - "c3": 10.467330712167211, - "c4": -8.866033399245492, - "c5": -4.469127699576148, - "c6": -25.826618384914795, - "c7": -6.035319076734954 + "points": { + "c1": 14.252458376980961, + "c2": -18.121851492230675, + "c3": -15.021398352178846, + "c4": -9.541587333138771, + "c5": -21.10960728734156, + "c6": 11.921658123922967, + "c7": 25.51074736073192 }, - "vertexSeeds": { - "c1": 5.193503437709051, - "c2": 5.257451533493019, - "c3": 5.2445302169039945, - "c4": 5.256370700741052, - "c5": 5.2196639767569, - "c6": 5.25566061452826, - "c7": 4.953100203651977 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940364, + "c3": 6.287563569116974, + "c4": 5.030050855293561, + "c5": 3.772538141470171, + "c6": 2.5150254276467807, + "c7": 1.2575127138233904 }, "rgb": [86, 146, 138] }, @@ -353247,23 +353247,23 @@ "year": 1800, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 14.690347745811657, - "c2": 39.41935185543942, - "c3": -15.840360996508373, - "c4": -32.90319992657912, - "c5": 37.461405494362076, - "c6": 26.880224009871135, - "c7": -19.651417065035115 + "points": { + "c1": -45.68124658295483, + "c2": 20.545159962683975, + "c3": -38.23254451989445, + "c4": -7.056069682445333, + "c5": -12.266177182768203, + "c6": -0.7681518259605724, + "c7": -15.239624088844852 }, - "vertexSeeds": { - "c1": 8.259918513529376, - "c2": 8.46258471252116, - "c3": 7.917544669431859, - "c4": 8.380956701061189, - "c5": 7.977975019555586, - "c6": 8.515007687308675, - "c7": 7.903262389083597 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.28848821081831, + "c3": 10.240406842348596, + "c4": 8.19232547387888, + "c5": 6.144244105409144, + "c6": 4.096162736939429, + "c7": 2.0480813684697146 }, "rgb": [222, 0, 59] }, @@ -353274,23 +353274,23 @@ "year": 1800, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 18.87762536976896, - "c2": -10.297334052719151, - "c3": -18.656380720290635, - "c4": 0.8270752009435682, - "c5": -14.473726468881361, - "c6": -4.070368558118627, - "c7": -7.7928951860273585 + "points": { + "c1": 10.201323967574378, + "c2": -9.560757723540352, + "c3": -2.3719646109455184, + "c4": 21.042027478196605, + "c5": 20.51352192152301, + "c6": 14.340605326643672, + "c7": -20.461450052949754 }, - "vertexSeeds": { - "c1": 7.154868989080864, - "c2": 6.809084446587387, - "c3": 7.379326669490254, - "c4": 7.288127109104877, - "c5": 7.325707724703994, - "c6": 7.3038862429172955, - "c7": 7.299561024760058 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324557, + "c3": 8.80721220527045, + "c4": 7.045769764216363, + "c5": 5.2843273231622785, + "c6": 3.522884882108171, + "c7": 1.7614424410540854 }, "rgb": [222, 0, 59] }, @@ -353301,23 +353301,23 @@ "year": 1800, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -9.27117104780709, - "c2": -10.455997342198287, - "c3": 28.888280738195725, - "c4": 28.05838974939727, - "c5": 0.024743632936022664, - "c6": 13.683612350329135, - "c7": -22.608840792464974 + "points": { + "c1": -13.60072197476558, + "c2": 23.465537530665102, + "c3": -7.349863114705293, + "c4": 12.03396861326297, + "c5": -16.731954631606154, + "c6": 9.65679640011443, + "c7": 35.2076359665532 }, - "vertexSeeds": { - "c1": 1.4817950219942568, - "c2": 1.611432120502707, - "c3": 1.52576947957556, - "c4": 1.7313367257584844, - "c5": 1.5100119682996935, - "c6": 1.6316260635192652, - "c7": 1.6895249202512415 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808588, + "c3": 2.1729079981507167, + "c4": 1.7383263985205724, + "c5": 1.303744798890428, + "c6": 0.8691631992602862, + "c7": 0.4345815996301418 }, "rgb": [77, 76, 132] }, @@ -353328,23 +353328,23 @@ "year": 1800, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 5.390010912159319, - "c2": -23.514150432522012, - "c3": 12.809440830405357, - "c4": 8.678644691808678, - "c5": -26.706742291764392, - "c6": 3.7728532524048504, - "c7": 19.587312206136083 + "points": { + "c1": -6.832659841856444, + "c2": -9.480583604858982, + "c3": 27.430786930539178, + "c4": -5.917995938434409, + "c5": -18.938219766973504, + "c6": 8.4416436180815, + "c7": -29.189116428901933 }, - "vertexSeeds": { - "c1": 8.015093120946958, - "c2": 8.345084479395851, - "c3": 8.091854070673348, - "c4": 8.164237860948793, - "c5": 8.45098377199659, - "c6": 7.905728496364124, - "c7": 7.95769450397075 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.26074895977809, + "c3": 10.217290799815078, + "c4": 8.173832639852067, + "c5": 6.130374479889034, + "c6": 4.086916319926022, + "c7": 2.043458159963011 }, "rgb": [238, 201, 159] }, @@ -353355,23 +353355,23 @@ "year": 1800, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": 28.580896476256846, - "c2": 39.3513039805593, - "c3": -20.202268051315, - "c4": -27.316738436280716, - "c5": 23.910511214032944, - "c6": 18.04856787818131, - "c7": 14.808211912246925 + "points": { + "c1": 7.748583047054829, + "c2": -20.87587626037603, + "c3": -4.235856279920654, + "c4": -19.221426540412892, + "c5": -29.925843511418122, + "c6": 6.0634963640635675, + "c7": 17.73138492065376 }, - "vertexSeeds": { - "c1": 8.578131878936079, - "c2": 8.696912950887773, - "c3": 8.972901039299341, - "c4": 9.06303856090204, - "c5": 8.96967868154424, - "c6": 9.052789160805391, - "c7": 8.550675984496198 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024965, + "c3": 10.933888118354133, + "c4": 8.747110494683302, + "c5": 6.560332871012471, + "c6": 4.373555247341662, + "c7": 2.186777623670831 }, "rgb": [238, 201, 159] }, @@ -353382,23 +353382,23 @@ "year": 1800, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -18.604588915153784, - "c2": -22.750652623321074, - "c3": 1.4907697746633488, - "c4": 14.78473936794883, - "c5": -4.532866360358419, - "c6": 1.6381930694604634, - "c7": -0.6024312853421847 + "points": { + "c1": 25.95764341216588, + "c2": 23.994265984495144, + "c3": -6.658549302887181, + "c4": -3.245745938188332, + "c5": -26.637540183128454, + "c6": -17.461339572772633, + "c7": -16.078515872659526 }, - "vertexSeeds": { - "c1": 5.371067272856863, - "c2": 5.592879981437389, - "c3": 5.278847654357662, - "c4": 5.218786315637815, - "c5": 5.291358908232989, - "c6": 5.22578394228015, - "c7": 5.569118551877737 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624133, + "c3": 6.680536292186778, + "c4": 5.344429033749422, + "c5": 4.008321775312067, + "c6": 2.672214516874711, + "c7": 1.3361072584373554 }, "rgb": [58, 15, 49] }, @@ -353409,23 +353409,23 @@ "year": 1800, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 24.939632326210695, - "c2": -11.806311074260805, - "c3": 3.3058242231790764, - "c4": 21.031424360060374, - "c5": -15.30869533759314, - "c6": 4.807330424950717, - "c7": -27.67841507862332 + "points": { + "c1": -11.386281112074364, + "c2": -8.31186953897003, + "c3": 0.935090897919725, + "c4": 6.551454435737956, + "c5": 4.136666290591084, + "c6": -28.813072985201394, + "c7": -3.6547542036399037 }, - "vertexSeeds": { - "c1": 6.576346018853243, - "c2": 6.610973440359706, - "c3": 6.827858190710054, - "c4": 6.621728432471174, - "c5": 6.504344043225468, - "c6": 6.72913852160731, - "c7": 6.955119246875794 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -353436,23 +353436,23 @@ "year": 1800, "resistanceReported": false, "duration": 32832000, - "curveSeeds": { - "c1": -20.025525044818142, - "c2": 16.29610724862969, - "c3": -13.060778517726781, - "c4": 34.69171255308395, - "c5": 25.951683550066797, - "c6": -19.007493219116753, - "c7": -41.97455902097662 + "points": { + "c1": 31.62607448520459, + "c2": 36.000396969819214, + "c3": 23.86307873346832, + "c4": -29.548099796390694, + "c5": 16.444397206035013, + "c6": 42.788675677055785, + "c7": 5.916573957466987 }, - "vertexSeeds": { - "c1": 7.292696219602096, - "c2": 7.484695873990977, - "c3": 7.572466827700853, - "c4": 7.246289821934716, - "c5": 7.038540596860223, - "c6": 7.353470339004991, - "c7": 7.182182372557585 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766985, + "c3": 9.06148867313915, + "c4": 7.249190938511317, + "c5": 5.436893203883482, + "c6": 3.6245954692556692, + "c7": 1.8122977346278346 }, "rgb": [77, 76, 132] }, @@ -353463,23 +353463,23 @@ "year": 1800, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": 42.6631113148168, - "c2": -30.315874810945775, - "c3": 21.485152025123227, - "c4": 25.219722285817213, - "c5": 35.44522117585318, - "c6": 22.66223138886447, - "c7": -33.43676088300692 + "points": { + "c1": 9.119314167880496, + "c2": 37.43119686483381, + "c3": -1.8788452144425563, + "c4": 14.528995667743644, + "c5": 43.45570544238893, + "c6": 24.10273984500924, + "c7": 28.733117900737952 }, - "vertexSeeds": { - "c1": 3.3551873453372267, - "c2": 3.1797909380397407, - "c3": 3.179081913961037, - "c4": 3.288498556444022, - "c5": 3.327849694240477, - "c6": 3.2897248941473616, - "c7": 3.3455421894149113 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079056, + "c3": 4.068423485899211, + "c4": 3.2547387887193664, + "c5": 2.4410540915395216, + "c6": 1.6273693943596896, + "c7": 0.8136846971798448 }, "rgb": [222, 0, 59] }, @@ -353490,23 +353490,23 @@ "year": 1800, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -21.73005734066787, - "c2": -30.85656958271673, - "c3": 10.969518762233498, - "c4": -14.146792444090522, - "c5": -19.65966695473199, - "c6": -29.48161628585772, - "c7": -33.4724078459292 + "points": { + "c1": 6.351177911686328, + "c2": -19.8572549751861, + "c3": -36.60684203453931, + "c4": 12.629415962146744, + "c5": -32.96862138523927, + "c6": 31.54516415780528, + "c7": 1.889449864512983 }, - "vertexSeeds": { - "c1": 5.929416817034671, - "c2": 5.977598807502602, - "c3": 5.821551472855031, - "c4": 5.7959871977964665, - "c5": 5.995694626956968, - "c6": 6.023508671822793, - "c7": 6.142064062720449 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911245, + "c3": 7.420249653259359, + "c4": 5.936199722607496, + "c5": 4.452149791955611, + "c6": 2.968099861303748, + "c7": 1.484049930651863 }, "rgb": [77, 76, 132] }, @@ -353517,23 +353517,23 @@ "year": 1800, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 12.440184832243283, - "c2": 39.45887329543267, - "c3": -19.144928044487283, - "c4": -7.193359517096162, - "c5": 41.990236117021695, - "c6": 25.703635444045986, - "c7": 2.184345121259632 + "points": { + "c1": -23.108433222137734, + "c2": 15.149945751564353, + "c3": 29.007063599848635, + "c4": -12.04638689876321, + "c5": -21.554337298490175, + "c6": 40.34910141846291, + "c7": -29.17473869276911 }, - "vertexSeeds": { - "c1": 8.743810784563461, - "c2": 8.799378162682993, - "c3": 8.110490647692442, - "c4": 8.29863499743437, - "c5": 8.760823719361005, - "c6": 8.74898316924084, - "c7": 8.792984712718038 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300965, + "c3": 10.517799352750819, + "c4": 8.41423948220065, + "c5": 6.310679611650483, + "c6": 4.207119741100336, + "c7": 2.103559870550168 }, "rgb": [238, 201, 159] }, @@ -353544,23 +353544,23 @@ "year": 1800, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -38.332890876266745, - "c2": -3.8703298581476275, - "c3": -14.16206435044867, - "c4": 24.438034320195506, - "c5": -40.29934652849217, - "c6": -9.300114315465883, - "c7": 25.082657321773347 + "points": { + "c1": 18.094976266595587, + "c2": 31.523912053527987, + "c3": 30.458638281136338, + "c4": -29.95367713512751, + "c5": 1.899313197699641, + "c6": 4.081508436748294, + "c7": 44.86124108336504 }, - "vertexSeeds": { - "c1": 7.442540574007914, - "c2": 7.469863774860486, - "c3": 7.689731362150576, - "c4": 7.627432020582843, - "c5": 7.675227041691172, - "c6": 7.2914152566820585, - "c7": 7.3119901280689055 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.42857142857143, + "c3": 9.52380952380953, + "c4": 7.6190476190476275, + "c5": 5.714285714285726, + "c6": 3.8095238095238035, + "c7": 1.9047619047619018 }, "rgb": [58, 15, 49] }, @@ -353571,23 +353571,23 @@ "year": 1800, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 3.7281819015314355, - "c2": -12.907256098045917, - "c3": -0.6631015448558273, - "c4": -27.23922098853351, - "c5": -3.8263520959471826, - "c6": 32.66506661618311, - "c7": -13.33073468039461 + "points": { + "c1": -23.538141844909703, + "c2": 8.247582156055827, + "c3": -34.92155442595375, + "c4": -28.077265894482384, + "c5": -22.33767557022783, + "c6": -31.659602183160565, + "c7": 17.0388490542555 }, - "vertexSeeds": { - "c1": 8.893087658199015, - "c2": 8.715928026127047, - "c3": 8.757511183485134, - "c4": 9.429429970354544, - "c5": 9.206119592689973, - "c6": 9.128501775987715, - "c7": 8.862844560576386 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.50901525658808, + "c3": 11.25751271382339, + "c4": 9.00601017105872, + "c5": 6.754507628294029, + "c6": 4.50300508552936, + "c7": 2.251502542764691 }, "rgb": [86, 146, 138] }, @@ -353598,23 +353598,23 @@ "year": 1800, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 36.8303695721265, - "c2": -9.570161093829352, - "c3": -38.7081859782536, - "c4": -26.862105197619712, - "c5": -15.20580820195078, - "c6": 0.44536562229384913, - "c7": 15.213187725759063 + "points": { + "c1": 24.24001123443243, + "c2": 26.985577832570726, + "c3": 8.210863587752662, + "c4": -17.539507886330387, + "c5": -32.82446560017382, + "c6": 2.820544154562775, + "c7": 17.22459633023304 }, - "vertexSeeds": { - "c1": 5.311087140222973, - "c2": 5.275306733193201, - "c3": 5.313285195182265, - "c4": 5.194428844270366, - "c5": 5.204541961842839, - "c6": 5.31315725156164, - "c7": 5.34321377010241 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423034, + "c3": 6.564956079519183, + "c4": 5.251964863615357, + "c5": 3.9389736477115043, + "c6": 2.6259824318076785, + "c7": 1.3129912159038521 }, "rgb": [58, 15, 49] }, @@ -353625,23 +353625,23 @@ "year": 1800, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -17.20004855052135, - "c2": 10.795613869336925, - "c3": 8.6407679628567, - "c4": 10.79249724338078, - "c5": -2.936489368997279, - "c6": 0.7652947223995454, - "c7": -13.054524294322242 + "points": { + "c1": -1.2257966681266446, + "c2": -28.52350709157748, + "c3": 18.55684069898721, + "c4": 20.624506856113463, + "c5": -17.711005219828614, + "c6": 19.421581057251387, + "c7": -13.568651920444472 }, - "vertexSeeds": { - "c1": 6.435049042025027, - "c2": 6.762994097715182, - "c3": 6.804980356688297, - "c4": 6.674735499834368, - "c5": 6.400916896776577, - "c6": 6.522805510678212, - "c7": 6.428369046409269 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [238, 201, 159] }, @@ -353652,23 +353652,23 @@ "year": 1800, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 17.474228258195765, - "c2": -1.3436472469359764, - "c3": 4.277671585439215, - "c4": 20.091378836823104, - "c5": 13.342376105273878, - "c6": 7.61979178212097, - "c7": -12.947339465151087 + "points": { + "c1": 25.94756326060911, + "c2": -25.26521527709212, + "c3": -18.066725728118172, + "c4": -1.4992312685206741, + "c5": 26.96038734397426, + "c6": 6.660389064897785, + "c7": -20.24512799340913 }, - "vertexSeeds": { - "c1": 5.475297929210585, - "c2": 5.582656892898256, - "c3": 5.503025112809307, - "c4": 5.870578578339821, - "c5": 5.575689172839259, - "c6": 5.470687196626372, - "c7": 5.535672057230766 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227451, + "c3": 7.027276930189555, + "c4": 5.621821544151635, + "c5": 4.216366158113739, + "c6": 2.8109107720758173, + "c7": 1.4054553860378958 }, "rgb": [77, 76, 132] }, @@ -353679,23 +353679,23 @@ "year": 1800, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -19.7293410412928, - "c2": -33.08485600632277, - "c3": 24.45241942037331, - "c4": 10.210084025166651, - "c5": -20.141616094383636, - "c6": 21.261743995721936, - "c7": -24.890859662840587 + "points": { + "c1": -2.405956369990413, + "c2": 4.66905537259953, + "c3": 1.6530525249632007, + "c4": 4.015737765232956, + "c5": 17.025134430556875, + "c6": 2.7415447868501275, + "c7": -7.949767260700163 }, - "vertexSeeds": { - "c1": 12.077874321921868, - "c2": 11.961926564843436, - "c3": 11.957100263585863, - "c4": 11.831417506797376, - "c5": 12.293119976504707, - "c6": 12.118478181402274, - "c7": 11.95846452417967 + "offsets": { + "c1": 20.809061488673137, + "c2": 17.83633841886271, + "c3": 14.863615349052234, + "c4": 11.890892279241806, + "c5": 8.918169209431333, + "c6": 5.945446139620903, + "c7": 2.9727230698104297 }, "rgb": [58, 15, 49] }, @@ -353706,23 +353706,23 @@ "year": 1800, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -17.55090754878317, - "c2": -22.403509043145682, - "c3": -20.340655230597452, - "c4": 7.560212763503653, - "c5": -5.400309735408769, - "c6": -3.7055366142353314, - "c7": -10.988170088461423 + "points": { + "c1": -5.436391856791332, + "c2": 3.8624831230857524, + "c3": -14.21025368288046, + "c4": 5.048052852951933, + "c5": 7.653085866556925, + "c6": -0.08581295692868451, + "c7": -0.2739533400434162 }, - "vertexSeeds": { - "c1": 6.197564131484753, - "c2": 6.376269774587464, - "c3": 6.4584468712631535, - "c4": 6.512396468524413, - "c5": 6.354436820466369, - "c6": 6.257503320024289, - "c7": 6.556641230684894 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796125, + "c3": 7.928802588996754, + "c4": 6.343042071197408, + "c5": 4.757281553398062, + "c6": 3.1715210355987167, + "c7": 1.5857605177993457 }, "rgb": [58, 15, 49] }, @@ -353733,23 +353733,23 @@ "year": 1800, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -8.82159919002438, - "c2": -25.259185290888137, - "c3": -35.742652272053796, - "c4": -17.90813914871039, - "c5": -27.048082715287705, - "c6": -18.45526539023795, - "c7": 27.76411852724855 + "points": { + "c1": -17.9395192894251, + "c2": 14.005089091689236, + "c3": -12.327188950986496, + "c4": 21.870809516361803, + "c5": 22.98370978837235, + "c6": -2.751961887077435, + "c7": -7.61121297892549 }, - "vertexSeeds": { - "c1": 6.904852756806121, - "c2": 6.923499324238457, - "c3": 7.295551416738354, - "c4": 6.990691374546647, - "c5": 7.435501149323021, - "c6": 6.911200467945753, - "c7": 6.975817986914002 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646322, + "c3": 8.992140545538598, + "c4": 7.193712436430875, + "c5": 5.395284327323151, + "c6": 3.5968562182154478, + "c7": 1.7984281091077239 }, "rgb": [58, 15, 49] }, @@ -353760,23 +353760,23 @@ "year": 1800, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 26.183530368892722, - "c2": -1.8707856314021143, - "c3": 25.229305432571845, - "c4": 9.20061648598291, - "c5": 12.603569123509754, - "c6": -7.144767701350769, - "c7": -25.07848500270173 + "points": { + "c1": -16.205849908474462, + "c2": -12.796141115886453, + "c3": 18.678337918109467, + "c4": 10.65365614684973, + "c5": -11.84027857029037, + "c6": -13.17957452790209, + "c7": 3.324310746480446 }, - "vertexSeeds": { - "c1": 6.8780829452054535, - "c2": 6.8463723106113274, - "c3": 6.299399712135398, - "c4": 6.473727781109363, - "c5": 6.506128333303549, - "c6": 6.334275375795519, - "c7": 6.40610892692875 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.206195099398988, + "c4": 6.564956079519195, + "c5": 4.923717059639402, + "c6": 3.282478039759587, + "c7": 1.6412390198797935 }, "rgb": [58, 15, 49] }, @@ -353787,23 +353787,23 @@ "year": 1800, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -19.59185279034958, - "c2": -17.701746400025165, - "c3": -30.690841727952755, - "c4": 2.6005085234017713, - "c5": -4.644760066180975, - "c6": 12.343512060307482, - "c7": -14.662137663560983 + "points": { + "c1": 9.67342657210147, + "c2": -10.830398771872431, + "c3": 3.212062575019722, + "c4": -4.0500311256145025, + "c5": 8.498773684512742, + "c6": -29.26351351654313, + "c7": -1.3957235786022224 }, - "vertexSeeds": { - "c1": 9.3256091189375, - "c2": 9.648373100760809, - "c3": 9.321867787488086, - "c4": 9.283817292963658, - "c5": 9.771244375565098, - "c6": 9.982669522048713, - "c7": 9.572732058596209 + "offsets": { + "c1": 16.666666666666664, + "c2": 14.285714285714274, + "c3": 11.904761904761907, + "c4": 9.523809523809517, + "c5": 7.142857142857148, + "c6": 4.761904761904758, + "c7": 2.380952380952368 }, "rgb": [238, 201, 159] }, @@ -353814,23 +353814,23 @@ "year": 1800, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -39.77035526102577, - "c2": -1.9416616785534515, - "c3": 47.74707428210719, - "c4": 29.40349524926077, - "c5": -9.749165070158213, - "c6": 40.80234785214083, - "c7": -17.285144099423547 + "points": { + "c1": 28.673364821242373, + "c2": -13.8983089908496, + "c3": -14.399106281430598, + "c4": 27.485452522366657, + "c5": 34.275422890331555, + "c6": -2.489479442029989, + "c7": 25.38147331599143 }, - "vertexSeeds": { - "c1": 6.801255492362689, - "c2": 6.413102370968306, - "c3": 6.815104406649692, - "c4": 6.915669678805559, - "c5": 6.78752396875881, - "c6": 6.6000923372517795, - "c7": 6.874352485154935 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [86, 146, 138] }, @@ -353841,23 +353841,23 @@ "year": 1800, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -40.946369136321046, - "c2": 1.833186461279368, - "c3": 13.579873075660096, - "c4": -9.9528183490903, - "c5": 32.740349218174146, - "c6": -26.10768468433385, - "c7": 11.842621023591036 + "points": { + "c1": -13.37612172018595, + "c2": 25.544073201868088, + "c3": -36.43858317701201, + "c4": -21.49840359035048, + "c5": -27.084394293685254, + "c6": -30.676388189307623, + "c7": -10.230290802954002 }, - "vertexSeeds": { - "c1": 6.103282209475639, - "c2": 6.232705972321752, - "c3": 6.142222137783794, - "c4": 5.87067120351144, - "c5": 5.822091457403901, - "c6": 6.105188790001095, - "c7": 6.210987430426547 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.98751733703191, + "c3": 7.489597780859914, + "c4": 5.9916782246879405, + "c5": 4.4937586685159445, + "c6": 2.9958391123439703, + "c7": 1.4979195561719962 }, "rgb": [238, 201, 159] }, @@ -353868,23 +353868,23 @@ "year": 1800, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 12.10231755532336, - "c2": -5.150202499483925, - "c3": -5.9735591317386, - "c4": 15.16274805452609, - "c5": -11.197134990499428, - "c6": -18.074553294006392, - "c7": -6.170729756791452 + "points": { + "c1": 18.69641875936253, + "c2": -18.1406409836939, + "c3": 10.395653553776363, + "c4": -9.633705265718579, + "c5": -3.743670249567444, + "c6": -24.612210122134677, + "c7": -0.21831724298704458 }, - "vertexSeeds": { - "c1": 8.50669399423244, - "c2": 8.019004789657172, - "c3": 8.07917176143371, - "c4": 7.875421037550373, - "c5": 8.01523532795102, - "c6": 7.997371053517629, - "c7": 7.862093599696722 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697644, + "c3": 10.17105871474804, + "c4": 8.136846971798438, + "c5": 6.102635228848812, + "c6": 4.068423485899207, + "c7": 2.0342117429496036 }, "rgb": [222, 0, 59] }, @@ -353895,23 +353895,23 @@ "year": 1800, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -2.6491696256672803, - "c2": 7.70512940671723, - "c3": -8.13961721192403, - "c4": -23.969540153530755, - "c5": -17.934865020568687, - "c6": 15.113963228288785, - "c7": 21.25079661064277 + "points": { + "c1": 28.082990323201255, + "c2": -21.567799646295818, + "c3": 26.839616232973118, + "c4": 6.214207671739064, + "c5": -8.86103540714733, + "c6": 23.038563430054, + "c7": 8.782910948024071 }, - "vertexSeeds": { - "c1": 1.5036647374664527, - "c2": 1.3608811563616097, - "c3": 1.5650846732987886, - "c4": 1.5354729992328064, - "c5": 1.3724984160701679, - "c6": 1.3701876537015083, - "c7": 1.4231552086259536 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.2746185852981977, + "c3": 1.895515487748496, + "c4": 1.5164123901987976, + "c5": 1.1373092926490989, + "c6": 0.7582061950994002, + "c7": 0.37910309754969856 }, "rgb": [58, 15, 49] }, @@ -353922,23 +353922,23 @@ "year": 1799, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -4.524698141555078, - "c2": 13.064583806737115, - "c3": 9.830297718098233, - "c4": -5.817662141527711, - "c5": -11.655425657949067, - "c6": -15.225870912137312, - "c7": 8.38449080294188 + "points": { + "c1": 13.509240041471475, + "c2": 9.749607379492911, + "c3": -19.952327483870796, + "c4": 5.942223818271266, + "c5": -5.962128596564941, + "c6": -21.752843295034012, + "c7": -14.458618410870187 }, - "vertexSeeds": { - "c1": 2.8950003993698914, - "c2": 2.784666661877197, - "c3": 2.7389880400511366, - "c4": 2.8123845672994148, - "c5": 2.741356568375768, - "c6": 2.628057447106762, - "c7": 2.886020832641264 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194172, + "c3": 3.5598705501618157, + "c4": 2.8478964401294506, + "c5": 2.135922330097086, + "c6": 1.4239482200647295, + "c7": 0.7119741100323648 }, "rgb": [238, 201, 159] }, @@ -353949,23 +353949,23 @@ "year": 1800, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 4.495013091304877, - "c2": 28.288126375185115, - "c3": 12.298989124189497, - "c4": -15.019735014438668, - "c5": 24.636247470757965, - "c6": -4.817695271719835, - "c7": 18.582977195605842 + "points": { + "c1": 26.04339116398704, + "c2": -13.870341934200585, + "c3": -14.927119885429754, + "c4": -3.229488727831086, + "c5": -20.594880922037152, + "c6": 8.502662930232447, + "c7": 0.25334892598576886 }, - "vertexSeeds": { - "c1": 6.197495683368723, - "c2": 6.219888208343631, - "c3": 6.2616487029685794, - "c4": 6.269768205595682, - "c5": 6.1960251899004435, - "c6": 6.057105692485096, - "c7": 6.173690215531429 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313453, + "c3": 7.651410078594545, + "c4": 6.121128062875636, + "c5": 4.5908460471567265, + "c6": 3.060564031437818, + "c7": 1.530282015718909 }, "rgb": [238, 201, 159] }, @@ -353976,23 +353976,23 @@ "year": 1800, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": 34.06561614213952, - "c2": 15.073152497663813, - "c3": 41.28643226544146, - "c4": -12.753577677300441, - "c5": 8.671073469303664, - "c6": 32.21253412516991, - "c7": 43.91806666926756 + "points": { + "c1": -37.60716975421458, + "c2": -16.67048565764, + "c3": -57.181010147979336, + "c4": 21.391984985491078, + "c5": 16.093181815971604, + "c6": 17.907928207061786, + "c7": -20.105867182845323 }, - "vertexSeeds": { - "c1": 7.244525184799617, - "c2": 7.647598767639495, - "c3": 7.570466667272899, - "c4": 7.469292781963794, - "c5": 7.444988887486894, - "c6": 7.092637632878545, - "c7": 7.415069180224931 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.040221914008319, + "c3": 9.200184928340262, + "c4": 7.360147942672206, + "c5": 5.520110957004171, + "c6": 3.6800739713361135, + "c7": 1.8400369856680567 }, "rgb": [238, 201, 159] }, @@ -354003,23 +354003,23 @@ "year": 1800, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -19.905858838936037, - "c2": -34.66795271163967, - "c3": 24.650390202741164, - "c4": 3.654165228644004, - "c5": -30.868136739180954, - "c6": -4.995347725982931, - "c7": 21.749179400168202 + "points": { + "c1": -12.55087398720038, + "c2": 30.19401178126698, + "c3": -23.597879031980447, + "c4": 14.04109341362652, + "c5": 22.225163713021793, + "c6": 36.226842492593036, + "c7": 30.290978456169768 }, - "vertexSeeds": { - "c1": 7.4323074476561946, - "c2": 7.350698704263782, - "c3": 7.158385057851594, - "c4": 7.333782988055346, - "c5": 7.306665627324404, - "c6": 7.350700582798229, - "c7": 7.260126732158645 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766985, + "c3": 9.06148867313915, + "c4": 7.249190938511317, + "c5": 5.436893203883482, + "c6": 3.6245954692556692, + "c7": 1.8122977346278346 }, "rgb": [238, 201, 159] }, @@ -354030,23 +354030,23 @@ "year": 1800, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 13.054415785962842, - "c2": 16.361965435698504, - "c3": -8.85514083857242, - "c4": 25.445714154219626, - "c5": 18.268879927544578, - "c6": 5.096001127161259, - "c7": -13.646688329780378 + "points": { + "c1": 20.97156276297969, + "c2": 0.6005491453306249, + "c3": -25.881789797302577, + "c4": -16.838083607175783, + "c5": -24.66466876955509, + "c6": -8.886161562241117, + "c7": 22.907368356153466 }, - "vertexSeeds": { - "c1": 1.187091779789136, - "c2": 1.341782701243081, - "c3": 1.3274492952602825, - "c4": 1.3631410269474378, - "c5": 1.2269665401537388, - "c6": 1.3510485629482127, - "c7": 1.1673726746790618 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.024965325936199, + "c3": 1.6874711049468343, + "c4": 1.349976883957467, + "c5": 1.0124826629680994, + "c6": 0.6749884419787321, + "c7": 0.33749422098936743 }, "rgb": [222, 0, 59] }, @@ -354057,23 +354057,23 @@ "year": 1800, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 10.004896704260986, - "c2": 16.82095640616464, - "c3": -11.875057051937855, - "c4": 14.772389393341868, - "c5": 22.659520126259913, - "c6": 5.451326722244204, - "c7": 18.86446411974262 + "points": { + "c1": 15.229623795579379, + "c2": 13.522937482270947, + "c3": 12.281910972358233, + "c4": 10.32662684442159, + "c5": 25.82519221105715, + "c6": 1.7652411350405792, + "c7": 9.790568642989086 }, - "vertexSeeds": { - "c1": 1.7108543565648402, - "c2": 1.6960065009073695, - "c3": 1.77071740657366, - "c4": 1.7714851005673946, - "c5": 1.7233268748091217, - "c6": 1.7964872061532313, - "c7": 1.745321564576182 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.6629680998613017, + "c3": 2.219140083217754, + "c4": 1.775312066574201, + "c5": 1.3314840499306533, + "c6": 0.8876560332871005, + "c7": 0.4438280166435478 }, "rgb": [77, 76, 132] }, @@ -354084,23 +354084,23 @@ "year": 1800, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 19.404541593788608, - "c2": 6.69500472776938, - "c3": 25.202349046615005, - "c4": -15.146514941924687, - "c5": 9.879397320086461, - "c6": -24.09437036911304, - "c7": 7.554129243635202 + "points": { + "c1": -26.39753748192639, + "c2": -18.479763313902556, + "c3": -28.23218766717027, + "c4": 18.828046516884754, + "c5": -20.813248842305818, + "c6": 27.555203959551115, + "c7": 5.897904499805783 }, - "vertexSeeds": { - "c1": 6.710933991634404, - "c2": 6.670787676576052, - "c3": 6.874723774239342, - "c4": 6.6066034819888975, - "c5": 6.927735331712816, - "c6": 6.717093002594283, - "c7": 6.697198972280719 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -354111,23 +354111,23 @@ "year": 1800, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -18.835076910713948, - "c2": 26.99359830365782, - "c3": -28.80353877552316, - "c4": 27.32346999857046, - "c5": 31.9654990485012, - "c6": 26.290504729737307, - "c7": -20.1317423427663 + "points": { + "c1": 22.57643115076649, + "c2": -37.02428502060834, + "c3": 23.761715695932622, + "c4": -12.992906056393355, + "c5": -15.519816514384413, + "c6": -17.753561166645387, + "c7": 22.980388168263197 }, - "vertexSeeds": { - "c1": 6.885647032922024, - "c2": 6.451642410225098, - "c3": 6.549908090693922, - "c4": 6.354943853915471, - "c5": 6.652597509616656, - "c6": 6.682934482166735, - "c7": 6.702740652622045 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [58, 15, 49] }, @@ -354138,23 +354138,23 @@ "year": 1800, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 25.807281466440624, - "c2": 7.345520320451467, - "c3": -11.01416029388524, - "c4": 13.733780624441284, - "c5": 18.24713981529393, - "c6": -20.459002173077536, - "c7": -26.116780466094067 + "points": { + "c1": 12.733892813223267, + "c2": 5.568170877522238, + "c3": 4.796084430245838, + "c4": -21.837706241025067, + "c5": -21.320036465811036, + "c6": -1.2081882602840963, + "c7": -1.0310642293700703 }, - "vertexSeeds": { - "c1": 1.8331516670641927, - "c2": 1.8639872787652716, - "c3": 1.7995017166331855, - "c4": 1.9455300093420456, - "c5": 1.9518781657403814, - "c6": 1.9073034085864216, - "c7": 1.7981906759280786 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.8571428571428568, + "c3": 2.3809523809523796, + "c4": 1.9047619047619029, + "c5": 1.4285714285714306, + "c6": 0.9523809523809539, + "c7": 0.47619047619047694 }, "rgb": [222, 0, 59] }, @@ -354165,23 +354165,23 @@ "year": 1800, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 29.86755231039507, - "c2": 12.50045117967533, - "c3": -13.92299517240097, - "c4": 23.292860315212387, - "c5": 11.704148967752062, - "c6": -22.900248653840656, - "c7": -16.05236040105322 + "points": { + "c1": -4.75696870962302, + "c2": 27.054209214820517, + "c3": 18.00754290772347, + "c4": 12.077054095951645, + "c5": -15.685783512958022, + "c6": -12.740896648509398, + "c7": -18.72071779506581 }, - "vertexSeeds": { - "c1": 8.436243514703303, - "c2": 8.347899655867355, - "c3": 8.671356776142868, - "c4": 8.868953768941427, - "c5": 8.433834015098796, - "c6": 8.837546312208593, - "c7": 8.625392270397569 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864084, + "c3": 10.841423948220077, + "c4": 8.67313915857605, + "c5": 6.504854368932042, + "c6": 4.336569579288036, + "c7": 2.1682847896440065 }, "rgb": [86, 146, 138] }, @@ -354192,23 +354192,23 @@ "year": 1800, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -11.937059528976754, - "c2": -9.092405562360941, - "c3": 3.6586330701447736, - "c4": -2.8109092224509524, - "c5": 6.86843874809292, - "c6": 16.075928148258164, - "c7": 22.41323649979519 + "points": { + "c1": -4.161241307534766, + "c2": -11.0606061760311, + "c3": -8.846500916686512, + "c4": 21.731551535501467, + "c5": -5.693736908695357, + "c6": -20.29723286195419, + "c7": -0.07546376890378781 }, - "vertexSeeds": { - "c1": 6.780987987139104, - "c2": 6.606250184291037, - "c3": 6.4217130712684884, - "c4": 6.869664836728864, - "c5": 6.7994841202853085, - "c6": 6.3747918447255865, - "c7": 6.761722078575208 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319006, + "c3": 8.229311141932508, + "c4": 6.583448913546011, + "c5": 4.937586685159514, + "c6": 3.291724456772995, + "c7": 1.6458622283864974 }, "rgb": [238, 201, 159] }, @@ -354219,23 +354219,23 @@ "year": 1800, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 22.393486956864113, - "c2": -21.673362239364284, - "c3": 3.3656722970188007, - "c4": 3.3914325934284015, - "c5": -3.0304084823872266, - "c6": 14.14497455680711, - "c7": -29.371295564677226 + "points": { + "c1": 5.1498399194556335, + "c2": 13.372867853908755, + "c3": -6.312819720809021, + "c4": -8.927736204441292, + "c5": 9.074837109407685, + "c6": -2.304223605077926, + "c7": 27.36200584958053 }, - "vertexSeeds": { - "c1": 6.7509810853798635, - "c2": 6.619464723372365, - "c3": 6.618812622671976, - "c4": 6.586306522754945, - "c5": 6.540154800466472, - "c6": 6.374718748895325, - "c7": 6.754334619727202 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.81969486823856, + "c3": 8.183079056865472, + "c4": 6.546463245492381, + "c5": 4.9098474341192695, + "c6": 3.27323162274618, + "c7": 1.63661581137309 }, "rgb": [58, 15, 49] }, @@ -354246,23 +354246,23 @@ "year": 1800, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -12.445708314222358, - "c2": -0.10816706470338033, - "c3": 14.242705263859897, - "c4": 17.46876835014502, - "c5": 31.26042143267874, - "c6": -33.85443160159709, - "c7": 30.522615414128722 + "points": { + "c1": 37.85890887118846, + "c2": 10.29210959917944, + "c3": 28.888024877529276, + "c4": -40.12650614012885, + "c5": -26.976851170844483, + "c6": -11.012075376175115, + "c7": -14.259623419241077 }, - "vertexSeeds": { - "c1": 4.94105161449919, - "c2": 4.919105090918473, - "c3": 4.879271851165793, - "c4": 5.113915375066964, - "c5": 5.040522616529263, - "c6": 4.99442395972837, - "c7": 5.2105607553871245 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -354273,23 +354273,23 @@ "year": 1800, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 21.726556786714248, - "c2": 30.13951680513229, - "c3": 22.761092945375502, - "c4": -4.998758687422267, - "c5": 28.134382567518458, - "c6": 5.567811540984081, - "c7": -7.502931641338293 + "points": { + "c1": -31.36209689769349, + "c2": 21.770331663148333, + "c3": 29.242990840027275, + "c4": -9.743240495214863, + "c5": -19.160870118474573, + "c6": 1.2666029939150647, + "c7": -40.565199600157314 }, - "vertexSeeds": { - "c1": 7.3245775734736975, - "c2": 7.806401104971796, - "c3": 7.473853414394531, - "c4": 7.3071304635583, - "c5": 7.643207664912254, - "c6": 7.6054644285865445, - "c7": 7.627142906141749 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571429, + "c3": 9.523809523809524, + "c4": 7.619047619047619, + "c5": 5.714285714285714, + "c6": 3.8095238095238093, + "c7": 1.9047619047619047 }, "rgb": [222, 0, 59] }, @@ -354300,23 +354300,23 @@ "year": 1800, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -22.282276348000728, - "c2": -18.612386711947302, - "c3": -23.8720053719014, - "c4": -5.999422613317474, - "c5": 24.655559637495568, - "c6": 12.634839714082208, - "c7": -16.692200722024513 + "points": { + "c1": -29.680719180100596, + "c2": 16.696985983566787, + "c3": 22.14208153933443, + "c4": -20.028769117021852, + "c5": -30.219444239419342, + "c6": 6.605999266477564, + "c7": 0.9104415049710575 }, - "vertexSeeds": { - "c1": 6.62024227270214, - "c2": 6.564367890312008, - "c3": 6.696138867221157, - "c4": 6.828452607862183, - "c5": 6.612353799155207, - "c6": 6.6735407532570585, - "c7": 6.545289861285963 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680992, + "c3": 8.437355524734174, + "c4": 6.749884419787336, + "c5": 5.062413314840496, + "c6": 3.3749422098936566, + "c7": 1.6874711049468392 }, "rgb": [58, 15, 49] }, @@ -354327,23 +354327,23 @@ "year": 1800, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 24.11911026496457, - "c2": 30.41590033430601, - "c3": 11.930426006686908, - "c4": -12.159310925070333, - "c5": 1.5832387717794987, - "c6": 32.04952001733193, - "c7": 0.04540391927806553 + "points": { + "c1": -28.306301676808552, + "c2": 22.753297514637516, + "c3": -17.269503121000632, + "c4": 20.867302223932008, + "c5": -21.817060033534965, + "c6": 1.0932375760894502, + "c7": -28.680197661605987 }, - "vertexSeeds": { - "c1": 3.3775378576691057, - "c2": 2.8173933905656927, - "c3": 3.1819028433377445, - "c4": 3.3659405692695015, - "c5": 3.2512756108677214, - "c6": 2.8151535566628305, - "c7": 3.1469221056247036 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119279, + "c3": 4.091539528432734, + "c4": 3.2732316227461875, + "c5": 2.454923717059638, + "c6": 1.636615811373092, + "c7": 0.818307905686546 }, "rgb": [77, 76, 132] }, @@ -354354,23 +354354,23 @@ "year": 1800, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -9.862137598214549, - "c2": -7.413359222713595, - "c3": 20.91600344230025, - "c4": 28.065367506987826, - "c5": -27.79858236816897, - "c6": 0.8881284514440893, - "c7": 13.69504101357974 + "points": { + "c1": -8.192561665900794, + "c2": -6.453858994191869, + "c3": -2.393029464125135, + "c4": -28.081240024330636, + "c5": -17.885541171218176, + "c6": 26.128939197748615, + "c7": -25.563590818028743 }, - "vertexSeeds": { - "c1": 7.103397038009984, - "c2": 6.6325714037171775, - "c3": 6.930228817425286, - "c4": 6.650734054240179, - "c5": 6.730259262612848, - "c6": 6.711673162879652, - "c7": 7.009756631663447 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.20804438280166, + "c3": 8.50670365233473, + "c4": 6.80536292186778, + "c5": 5.10402219140083, + "c6": 3.4026814609339007, + "c7": 1.7013407304669503 }, "rgb": [238, 201, 159] }, @@ -354381,23 +354381,23 @@ "year": 1800, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 0.5728409024280339, - "c2": -18.070408445060597, - "c3": -2.621804875059901, - "c4": 38.91721985038838, - "c5": 21.8364539422574, - "c6": 20.40113869205493, - "c7": -13.736740919575006 + "points": { + "c1": 29.926791596511777, + "c2": -29.864943952480118, + "c3": -31.112079078309932, + "c4": 7.036343046845218, + "c5": -40.42484266564448, + "c6": -2.3922131791659567, + "c7": 29.534950350531346 }, - "vertexSeeds": { - "c1": 7.8595450760450785, - "c2": 7.600803590931745, - "c3": 7.521297746787522, - "c4": 7.36288702333851, - "c5": 7.302172385899661, - "c6": 7.6918203517576735, - "c7": 7.634012309746188 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450774, + "c3": 9.454461396208968, + "c4": 7.563569116967183, + "c5": 5.672676837725376, + "c6": 3.7817845584835914, + "c7": 1.8908922792418068 }, "rgb": [58, 15, 49] }, @@ -354408,23 +354408,23 @@ "year": 1800, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -9.18939285100939, - "c2": -32.552003753738084, - "c3": 8.170413104471422, - "c4": 11.164103315479814, - "c5": 27.344185700573604, - "c6": -23.84157286372382, - "c7": 31.882774631156266 + "points": { + "c1": -8.450251260313358, + "c2": 0.41940002121778974, + "c3": 30.31490445478785, + "c4": 27.347544286249203, + "c5": -12.597623888707552, + "c6": 29.741628235513275, + "c7": -35.918811869535034 }, - "vertexSeeds": { - "c1": 2.776920268262724, - "c2": 2.8666268472588587, - "c3": 2.8028280654974864, - "c4": 2.765086883875392, - "c5": 3.0057691247773413, - "c6": 2.929009872231894, - "c7": 2.982932635803077 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355064, + "c3": 3.6523347202958885, + "c4": 2.921867776236713, + "c5": 2.191400832177527, + "c6": 1.4609338881183516, + "c7": 0.7304669440591758 }, "rgb": [58, 15, 49] }, @@ -354435,23 +354435,23 @@ "year": 1800, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -20.41129110199752, - "c2": -22.171088207037187, - "c3": -25.568066067299107, - "c4": 1.735430811324882, - "c5": 23.43443409822313, - "c6": 16.539248348500053, - "c7": -29.319251337549357 + "points": { + "c1": -8.596582013756002, + "c2": 8.09290178732688, + "c3": 21.22729096167548, + "c4": -16.989312269164806, + "c5": -30.586079289704866, + "c6": 26.15944595489431, + "c7": -21.080096414711136 }, - "vertexSeeds": { - "c1": 2.2174325308866236, - "c2": 2.357031900604393, - "c3": 2.443672883991188, - "c4": 2.259468263332741, - "c5": 2.194183454833556, - "c6": 2.3930671790036673, - "c7": 2.1994758090126227 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081837, + "c3": 2.9357374017568176, + "c4": 2.3485899214054546, + "c5": 1.7614424410540919, + "c6": 1.1742949607027255, + "c7": 0.5871474803513628 }, "rgb": [86, 146, 138] }, @@ -354462,23 +354462,23 @@ "year": 1800, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 21.557540639556308, - "c2": -3.9755663509563206, - "c3": 12.692639144014365, - "c4": 28.026609351904412, - "c5": -36.45450594651528, - "c6": -8.607780000089669, - "c7": 22.08720116633428 + "points": { + "c1": 21.3108403567686, + "c2": -4.480281599961863, + "c3": 4.476062518772153, + "c4": 29.35853994190174, + "c5": -29.486527979073287, + "c6": 26.815093771826596, + "c7": -6.040325490154444 }, - "vertexSeeds": { - "c1": 3.5929656437100794, - "c2": 3.7074817828229634, - "c3": 3.6049525377359037, - "c4": 3.6214078160939236, - "c5": 3.6376503991622187, - "c6": 3.6438101099087605, - "c7": 3.6456767635582072 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.35367545076283, + "c3": 4.461396208969025, + "c4": 3.5691169671752196, + "c5": 2.676837725381415, + "c6": 1.7845584835876098, + "c7": 0.8922792417938049 }, "rgb": [86, 146, 138] }, @@ -354489,23 +354489,23 @@ "year": 1800, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -15.56344695448761, - "c2": 16.468642165648216, - "c3": -20.326854141192477, - "c4": -31.464134348774248, - "c5": -17.822175128456625, - "c6": 19.530901901023885, - "c7": -2.1574046702415792 + "points": { + "c1": -23.637154497629453, + "c2": 27.910652538150707, + "c3": -33.63265165205558, + "c4": 15.366843487402562, + "c5": -21.585895410134608, + "c6": 0.4825363464913508, + "c7": 26.881976754575334 }, - "vertexSeeds": { - "c1": 1.5324255957719721, - "c2": 1.532417139229368, - "c3": 1.514468570471694, - "c4": 1.5179703419879578, - "c5": 1.5319033755722475, - "c6": 1.533257736940155, - "c7": 1.5126573160612335 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.330097087378639, + "c3": 1.941747572815537, + "c4": 1.553398058252428, + "c5": 1.1650485436893194, + "c6": 0.7766990291262174, + "c7": 0.3883495145631087 }, "rgb": [222, 0, 59] }, @@ -354516,23 +354516,23 @@ "year": 1800, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 31.93140489614943, - "c2": 5.536480641597464, - "c3": 14.30500409714898, - "c4": -21.510539246670625, - "c5": -37.00151881783271, - "c6": 12.1828212277455, - "c7": -1.2517934069301333 + "points": { + "c1": 33.77972723608627, + "c2": -23.865566172355088, + "c3": -37.266364108003614, + "c4": 19.825631852073897, + "c5": 18.851098366684006, + "c6": -30.96998877291375, + "c7": -21.308371424344543 }, - "vertexSeeds": { - "c1": 8.302666742708743, - "c2": 7.7474038897379565, - "c3": 7.686162342420614, - "c4": 8.061053078433677, - "c5": 8.107041054019298, - "c6": 7.941035665477585, - "c7": 8.085277331063153 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375858, + "c3": 9.986130374479893, + "c4": 7.988904299583905, + "c5": 5.9916782246879405, + "c6": 3.9944521497919525, + "c7": 1.9972260748959876 }, "rgb": [77, 76, 132] }, @@ -354543,23 +354543,23 @@ "year": 1800, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -30.534815009500214, - "c2": 2.907368192528658, - "c3": -32.312430865067675, - "c4": 35.878400187584596, - "c5": 4.672625200389739, - "c6": -3.612046067885281, - "c7": 24.00057177089142 + "points": { + "c1": 23.06546299856526, + "c2": -5.480097389299139, + "c3": -13.648935916537667, + "c4": 22.49496454299024, + "c5": 40.326951971286825, + "c6": 26.150350560028492, + "c7": 32.848946931651064 }, - "vertexSeeds": { - "c1": 10.667770242628096, - "c2": 11.152663828439545, - "c3": 11.230364761594334, - "c4": 11.12135202243587, - "c5": 11.236890755568242, - "c6": 11.208843104918632, - "c7": 11.44911823800272 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.64355062413316, + "c3": 13.869625520110937, + "c4": 11.095700416088757, + "c5": 8.32177531206658, + "c6": 5.547850208044402, + "c7": 2.7739251040221786 }, "rgb": [238, 201, 159] }, @@ -354570,23 +354570,23 @@ "year": 1800, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 9.837233246791534, - "c2": 4.83635951141158, - "c3": -3.689988841715227, - "c4": 16.472917828196202, - "c5": -28.21702756868736, - "c6": -8.26762188432862, - "c7": -4.312588179793266 + "points": { + "c1": 13.300586078055503, + "c2": 28.038183367612056, + "c3": 8.780052855936894, + "c4": 17.86388807131582, + "c5": 19.00172826245535, + "c6": -14.314893810204968, + "c7": -1.9498737888623197 }, - "vertexSeeds": { - "c1": 6.399448010006569, - "c2": 6.863697315497407, - "c3": 6.490871043770056, - "c4": 6.798230074771786, - "c5": 6.4538153801879705, - "c6": 6.491025760766158, - "c7": 6.826352676662101 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -354597,23 +354597,23 @@ "year": 1800, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 28.315797678035594, - "c2": 18.831087302588642, - "c3": -6.544249838068925, - "c4": -28.525101351365365, - "c5": -3.069772712998841, - "c6": -17.249968255365797, - "c7": 16.259288032753958 + "points": { + "c1": -9.86809813475243, + "c2": 14.01226074984676, + "c3": 28.66844136493917, + "c4": -5.408494100410742, + "c5": 3.1366125259033666, + "c6": -26.21111668867467, + "c7": 9.152970495020384 }, - "vertexSeeds": { - "c1": 6.916153185774579, - "c2": 6.8182525212155, - "c3": 6.925892992554425, - "c4": 6.429777318828787, - "c5": 6.598062195730857, - "c6": 6.942765242554522, - "c7": 6.900591396876921 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533063, + "c4": 6.638927415626433, + "c5": 4.979195561719824, + "c6": 3.3194637078132163, + "c7": 1.6597318539066082 }, "rgb": [77, 76, 132] }, @@ -354624,23 +354624,23 @@ "year": 1800, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 15.868714086237418, - "c2": 12.9693279900726, - "c3": 9.283916671418737, - "c4": -18.12900180541841, - "c5": -29.97844746480417, - "c6": -10.142125625888458, - "c7": 12.571340490291064 + "points": { + "c1": 25.252824484022753, + "c2": -23.844448077070325, + "c3": -5.826684491070559, + "c4": -24.478319061889238, + "c5": 1.9756259243026406, + "c6": 2.304578081414199, + "c7": 2.733828567880707 }, - "vertexSeeds": { - "c1": 6.711871124912014, - "c2": 6.88977141096343, - "c3": 6.920015396193017, - "c4": 6.44757892344776, - "c5": 6.387244982481396, - "c6": 6.727479144680371, - "c7": 6.366666145572743 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [77, 76, 132] }, @@ -354651,23 +354651,23 @@ "year": 1800, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -20.7980377358357, - "c2": -8.686296970481052, - "c3": -11.796931263406389, - "c4": 26.450055216914407, - "c5": -32.434588107953076, - "c6": -13.320212724759223, - "c7": 20.44085575363821 + "points": { + "c1": -21.724332192949376, + "c2": -12.199993293423002, + "c3": -27.432701577329247, + "c4": -7.078751713814341, + "c5": 25.072179579326587, + "c6": 38.63425928361394, + "c7": -34.51315754400093 }, - "vertexSeeds": { - "c1": 8.213250486442774, - "c2": 8.222060677495342, - "c3": 7.99858547647327, - "c4": 8.273922041313172, - "c5": 8.265829150256168, - "c6": 8.02520625790406, - "c7": 8.201875586114003 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174743, + "c3": 9.870550161812318, + "c4": 7.896440129449845, + "c5": 5.922330097087372, + "c6": 3.9482200647249455, + "c7": 1.9741100323624727 }, "rgb": [86, 146, 138] }, @@ -354678,23 +354678,23 @@ "year": 1800, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -6.191189717565219, - "c2": -20.83300645529811, - "c3": 13.076088286926009, - "c4": -2.1048242889169586, - "c5": -6.450160941003119, - "c6": 21.685585953781484, - "c7": -27.86073663319225 + "points": { + "c1": -29.1629948509918, + "c2": -16.80733266386297, + "c3": -15.080202147130134, + "c4": 5.281415996296175, + "c5": -26.659851839158016, + "c6": -18.618034728296706, + "c7": 30.530995658687722 }, - "vertexSeeds": { - "c1": 5.063342603645647, - "c2": 5.178924215124263, - "c3": 5.273907628666903, - "c4": 5.127438787987478, - "c5": 5.092232678690514, - "c6": 5.111166555275136, - "c7": 5.244896952177104 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423017, + "c3": 6.564956079519196, + "c4": 5.251964863615352, + "c5": 3.9389736477115087, + "c6": 2.625982431807687, + "c7": 1.3129912159038435 }, "rgb": [58, 15, 49] }, @@ -354705,23 +354705,23 @@ "year": 1800, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 34.783225379433475, - "c2": -1.5259959019534932, - "c3": -17.87766068127007, - "c4": -29.717929774999874, - "c5": -6.887658946793355, - "c6": 3.8627120427161685, - "c7": 8.082058189289796 + "points": { + "c1": 11.614069631928167, + "c2": -21.972698438701354, + "c3": 13.776931788554862, + "c4": 11.773091659333296, + "c5": -24.94980977065915, + "c6": 12.309196582759292, + "c7": 0.9223353600554631 }, - "vertexSeeds": { - "c1": 15.871616929374007, - "c2": 15.208475383007306, - "c3": 15.31548844742051, - "c4": 15.935164963111005, - "c5": 16.292620089770345, - "c6": 15.529529622257622, - "c7": 16.284742051203796 + "offsets": { + "c1": 27.57281553398058, + "c2": 23.63384188626905, + "c3": 19.694868238557564, + "c4": 15.755894590846033, + "c5": 11.816920943134548, + "c6": 7.8779472954230165, + "c7": 3.9389736477115305 }, "rgb": [77, 76, 132] }, @@ -354732,23 +354732,23 @@ "year": 1800, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 27.94062374663719, - "c2": -19.247664885368778, - "c3": -22.991868879487257, - "c4": -26.85625327736369, - "c5": -22.649741613207976, - "c6": 27.294810011651496, - "c7": 4.900460682184143 + "points": { + "c1": -19.00258623854732, + "c2": -26.175728140469623, + "c3": 13.993994126767557, + "c4": 30.32097766793154, + "c5": 13.34487347408972, + "c6": -28.02097299387701, + "c7": 25.249208425019393 }, - "vertexSeeds": { - "c1": 4.12022873645335, - "c2": 4.25196444145853, - "c3": 4.280246792072567, - "c4": 4.259392986516822, - "c5": 4.191581272382561, - "c6": 4.263968112901043, - "c7": 4.369814792614638 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251038, + "c3": 5.316689782709206, + "c4": 4.253351826167362, + "c5": 3.190013869625519, + "c6": 2.126675913083687, + "c7": 1.0633379565418435 }, "rgb": [238, 201, 159] }, @@ -354759,23 +354759,23 @@ "year": 1800, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 23.859722457073982, - "c2": 3.613519213122892, - "c3": -24.86167034180395, - "c4": -4.791442785375498, - "c5": 7.842507158758526, - "c6": 10.309640463840854, - "c7": -19.240565679834635 + "points": { + "c1": 11.229742319191214, + "c2": -15.211945723944268, + "c3": -12.391373992954183, + "c4": 0.9834792649869897, + "c5": 0.1085529496783586, + "c6": 25.887473354548607, + "c7": -15.06581004551376 }, - "vertexSeeds": { - "c1": 1.09767032557936, - "c2": 1.0564239205966541, - "c3": 0.9956507138344539, - "c4": 0.9792687780969561, - "c5": 1.0868817850663988, - "c6": 1.1065272888072863, - "c7": 1.0079737563820643 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535373, + "c3": 1.410078594544614, + "c4": 1.1280628756356916, + "c5": 0.846047156726768, + "c6": 0.5640314378178458, + "c7": 0.2820157189089222 }, "rgb": [77, 76, 132] }, @@ -354786,23 +354786,23 @@ "year": 1800, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 10.881898458605768, - "c2": -21.31672151184322, - "c3": -24.940928662439553, - "c4": 6.783167246189429, - "c5": -6.462533948475354, - "c6": -24.394613345110837, - "c7": 31.106932741476783 + "points": { + "c1": 1.884938349695176, + "c2": -6.2193329811287015, + "c3": -3.879580573117561, + "c4": 24.232617305977193, + "c5": -7.338703929723945, + "c6": -2.2414347865625004, + "c7": -18.51413247026767 }, - "vertexSeeds": { - "c1": 4.888639666360746, - "c2": 4.846703392870388, - "c3": 4.678892753979849, - "c4": 4.643536394235883, - "c5": 4.5415324286712435, - "c6": 4.658448694216347, - "c7": 4.71634743626006 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176144, + "c3": 5.848358760980121, + "c4": 4.678687008784096, + "c5": 3.509015256588072, + "c6": 2.339343504392048, + "c7": 1.169671752196024 }, "rgb": [77, 76, 132] }, @@ -354813,23 +354813,23 @@ "year": 1800, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -23.277584673005563, - "c2": -34.218542746272234, - "c3": 10.912930581342593, - "c4": 17.736672282628113, - "c5": -39.07700313652282, - "c6": -7.130624442479082, - "c7": 33.48647096970922 + "points": { + "c1": -19.449146798995308, + "c2": -19.099565771381247, + "c3": 24.278530581367022, + "c4": 37.32970803828084, + "c5": 6.066264957945769, + "c6": -14.735738183312577, + "c7": 9.951605133827968 }, - "vertexSeeds": { - "c1": 7.672421061091944, - "c2": 7.866808595918013, - "c3": 7.330548034757931, - "c4": 7.646218780543215, - "c5": 7.387913150570492, - "c6": 7.902106817517202, - "c7": 7.317955026894855 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410552, + "c3": 9.431345353675448, + "c4": 7.545076282940368, + "c5": 5.658807212205264, + "c6": 3.772538141470184, + "c7": 1.886269070735103 }, "rgb": [86, 146, 138] }, @@ -354840,23 +354840,23 @@ "year": 1800, "resistanceReported": true, "duration": 18489600, - "curveSeeds": { - "c1": -20.168813677886103, - "c2": -0.1646041096298454, - "c3": 23.915960684796115, - "c4": -24.62410709758158, - "c5": -20.986146257900884, - "c6": -4.1695335105327125, - "c7": 9.68307898307155 + "points": { + "c1": -27.453795979021592, + "c2": -27.351049684225273, + "c3": 24.749949156971525, + "c4": 2.6170411067595865, + "c5": 20.473796356551695, + "c6": 29.104763962539835, + "c7": 20.648579401177983 }, - "vertexSeeds": { - "c1": 2.2909038767444727, - "c2": 2.2893618151376796, - "c3": 2.2740088297785506, - "c4": 2.2863904656133296, - "c5": 2.327815441654991, - "c6": 2.2338973640704847, - "c7": 2.2233606749796064 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668488, + "c3": 2.7970411465557103, + "c4": 2.2376329172445657, + "c5": 1.6782246879334277, + "c6": 1.1188164586222829, + "c7": 0.5594082293111384 }, "rgb": [238, 201, 159] }, @@ -354867,23 +354867,23 @@ "year": 1800, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 16.865857916760007, - "c2": -21.169615850925418, - "c3": 29.81370628626128, - "c4": 23.526020688546808, - "c5": 42.36064462210483, - "c6": 3.002410916609101, - "c7": 31.26035722754058 + "points": { + "c1": 30.079128917177158, + "c2": -14.207373690494954, + "c3": 41.54695084954831, + "c4": -18.471796755987924, + "c5": -26.959810259078967, + "c6": -32.78197598616741, + "c7": 14.341768837801766 }, - "vertexSeeds": { - "c1": 6.217937192743894, - "c2": 6.195504849541719, - "c3": 6.501140574986542, - "c4": 6.68591947795873, - "c5": 6.305354698381663, - "c6": 6.2976898693906005, - "c7": 6.319640854538533 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916773, + "c3": 7.998150716597321, + "c4": 6.398520573277848, + "c5": 4.798890429958398, + "c6": 3.199260286638924, + "c7": 1.599630143319451 }, "rgb": [58, 15, 49] }, @@ -354894,23 +354894,23 @@ "year": 1800, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -2.3096565443651578, - "c2": -10.00777156790759, - "c3": 8.073958137222377, - "c4": -7.892071103742264, - "c5": -12.55887536362851, - "c6": 0.14260082515331263, - "c7": 12.843297020799568 + "points": { + "c1": 20.933889508456232, + "c2": -14.093145199389477, + "c3": 25.547148051899455, + "c4": 11.134400774493798, + "c5": -17.400941018310032, + "c6": 10.905326801217853, + "c7": 3.5272251549326903 }, - "vertexSeeds": { - "c1": 3.4408942263356894, - "c2": 3.3368208982101675, - "c3": 3.7118363387403086, - "c4": 3.8498182767720843, - "c5": 3.916353997139914, - "c6": 3.914657876778837, - "c7": 3.290986012304363 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285715, + "c3": 4.761904761904764, + "c4": 3.8095238095238115, + "c5": 2.8571428571428603, + "c6": 1.9047619047619033, + "c7": 0.952380952380957 }, "rgb": [77, 76, 132] }, @@ -354921,23 +354921,23 @@ "year": 1800, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -15.112296169291913, - "c2": -36.955490219200755, - "c3": 0.6239819812916494, - "c4": 4.568424793258679, - "c5": 28.233784720660992, - "c6": 5.714027015978239, - "c7": -11.123605972683169 + "points": { + "c1": -37.53588331181117, + "c2": 34.38896997467859, + "c3": 30.851844976948783, + "c4": -16.470536534441322, + "c5": -8.181695333658496, + "c6": -12.809793147618262, + "c7": -7.142397293113184 }, - "vertexSeeds": { - "c1": 0.3451319464862892, - "c2": 0.3916038043697405, - "c3": 0.7022879965213945, - "c4": 0.3892972409736303, - "c5": 0.552924082403448, - "c6": 0.5906770851629909, - "c7": 0.6116324355412949 + "offsets": { + "c1": 1.262135922330097, + "c2": 1.0818307905686546, + "c3": 0.901525658807212, + "c4": 0.7212205270457697, + "c5": 0.5409153952843272, + "c6": 0.3606102635228848, + "c7": 0.18030513176144247 }, "rgb": [86, 146, 138] }, @@ -354948,23 +354948,23 @@ "year": 1800, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -22.152369332009464, - "c2": 15.954049840079023, - "c3": 6.262931912706264, - "c4": -12.30012302693508, - "c5": 19.231769324576526, - "c6": 15.139492916308598, - "c7": -22.031897417238753 + "points": { + "c1": -21.393644955215045, + "c2": -15.469970956236462, + "c3": -10.515319071063775, + "c4": -25.01291382404957, + "c5": -16.303575035544316, + "c6": -11.439311909940344, + "c7": 8.363479906886411 }, - "vertexSeeds": { - "c1": 0.8889296355053778, - "c2": 1.3914336066890303, - "c3": 1.1915352128575323, - "c4": 0.8686079905163671, - "c5": 1.4039498507228654, - "c6": 1.2417596149896617, - "c7": 0.9905686452259244 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.108183079056865, + "c3": 1.7568192325473884, + "c4": 1.4054553860379102, + "c5": 1.054091539528433, + "c6": 0.7027276930189554, + "c7": 0.35136384650947744 }, "rgb": [86, 146, 138] }, @@ -354975,23 +354975,23 @@ "year": 1800, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 20.409997122646, - "c2": 5.94157449522147, - "c3": 12.64335956116508, - "c4": -19.36169973389186, - "c5": -22.747699835969893, - "c6": -15.93442881777229, - "c7": -19.41954869773396 + "points": { + "c1": -2.6477197502387746, + "c2": -1.891236461570653, + "c3": -6.360613613290539, + "c4": 15.797914364359915, + "c5": 3.905248619003469, + "c6": 5.281503505794195, + "c7": -25.55813149057983 }, - "vertexSeeds": { - "c1": 2.1662815292765365, - "c2": 2.2855878861020504, - "c3": 2.1335880854923364, - "c4": 2.320469316912549, - "c5": 2.232215645767626, - "c6": 2.1837688679790985, - "c7": 2.2373648307568437 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.356449375866853, + "c3": 2.79704114655571, + "c4": 2.237632917244567, + "c5": 1.6782246879334266, + "c6": 1.118816458622286, + "c7": 0.559408229311143 }, "rgb": [238, 201, 159] }, @@ -355002,23 +355002,23 @@ "year": 1800, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 0.8017946592956875, - "c2": -4.19131567333736, - "c3": -16.94208422722724, - "c4": -10.126442104460514, - "c5": -13.838351978663116, - "c6": -12.245408819929915, - "c7": -1.6086577537518671 + "points": { + "c1": -23.546144070323813, + "c2": -2.284574235950547, + "c3": 11.46913873798622, + "c4": 2.446841098261711, + "c5": 21.268294464790017, + "c6": -17.544274222535655, + "c7": -23.91886611046632 }, - "vertexSeeds": { - "c1": 6.3301553597293845, - "c2": 6.196631484150289, - "c3": 6.214033903471459, - "c4": 6.356103534398503, - "c5": 6.350241198547441, - "c6": 6.376944160623648, - "c7": 6.5573647119016165 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836329, + "c3": 7.951918631530284, + "c4": 6.361534905224219, + "c5": 4.771151178918175, + "c6": 3.1807674526121095, + "c7": 1.5903837263060658 }, "rgb": [58, 15, 49] }, @@ -355029,23 +355029,23 @@ "year": 1800, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -7.178612162749758, - "c2": 0.847282938744577, - "c3": -9.033606683655648, - "c4": 26.022963044318303, - "c5": 2.594343215808909, - "c6": 4.312242245512927, - "c7": 10.086031116947524 + "points": { + "c1": -7.196335745070986, + "c2": 0.5669241616730183, + "c3": 23.928691220454766, + "c4": 18.811682090078122, + "c5": -19.93715076609896, + "c6": -4.450997062230645, + "c7": 17.46515693310893 }, - "vertexSeeds": { - "c1": 1.7709260900282446, - "c2": 1.7419107495006523, - "c3": 1.739241579644741, - "c4": 1.768309964620082, - "c5": 1.7574995801218352, - "c6": 1.7334693761796476, - "c7": 1.7337639168873806 + "offsets": { + "c1": 3.0097087378640777, + "c2": 2.579750346740636, + "c3": 2.1497919556171943, + "c4": 1.719833564493767, + "c5": 1.289875173370325, + "c6": 0.8599167822468835, + "c7": 0.42995839112344175 }, "rgb": [58, 15, 49] }, @@ -355056,23 +355056,23 @@ "year": 1800, "resistanceReported": false, "duration": 6134400, - "curveSeeds": { - "c1": -6.755891111636124, - "c2": -8.37413124662987, - "c3": 4.698835213537002, - "c4": -10.242413595107346, - "c5": 1.9267822553221485, - "c6": 7.737436091129425, - "c7": 10.922318957641934 + "points": { + "c1": 10.76912597108591, + "c2": -15.417722218544169, + "c3": -17.171858028586257, + "c4": 3.354138402025203, + "c5": 7.460122025835641, + "c6": 17.70157968296948, + "c7": 5.925830075497867 }, - "vertexSeeds": { - "c1": 1.5767010735857074, - "c2": 1.7069569042911037, - "c3": 1.4973734116993116, - "c4": 1.8057238898317194, - "c5": 1.4948807825368857, - "c6": 1.6155562714464986, - "c7": 1.6013133132322568 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808588, + "c3": 2.1729079981507167, + "c4": 1.7383263985205724, + "c5": 1.303744798890428, + "c6": 0.8691631992602862, + "c7": 0.4345815996301418 }, "rgb": [222, 0, 59] }, @@ -355083,23 +355083,23 @@ "year": 1800, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 10.566509187549343, - "c2": 18.25002882066449, - "c3": -13.311215060080318, - "c4": 11.484701665837775, - "c5": -18.717029948300095, - "c6": 7.968756017207994, - "c7": -5.212541353729641 + "points": { + "c1": -25.720311209544956, + "c2": -34.46016932362974, + "c3": -11.816529154548398, + "c4": 9.069319521974613, + "c5": 28.54723929178033, + "c6": 4.708486965974558, + "c7": 2.338745311331074 }, - "vertexSeeds": { - "c1": 6.272272049130969, - "c2": 6.512944524754592, - "c3": 6.117968878869803, - "c4": 6.242930645074943, - "c5": 6.478338435154147, - "c6": 6.511059213123268, - "c7": 6.42089338861292 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329174, + "c4": 6.250577901063338, + "c5": 4.687933425797504, + "c6": 3.125288950531669, + "c7": 1.5626444752658346 }, "rgb": [222, 0, 59] }, @@ -355110,23 +355110,23 @@ "year": 1800, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 7.664691755491745, - "c2": 14.127655046624149, - "c3": 29.900798306560596, - "c4": 22.143277785264004, - "c5": -13.246067955168083, - "c6": -30.66131980881362, - "c7": -0.09492138725786248 + "points": { + "c1": 7.348253338540431, + "c2": -7.842074412197899, + "c3": -16.70512404331492, + "c4": 18.708183204375175, + "c5": 5.364722557437432, + "c6": 30.505769759389608, + "c7": -11.166596780724433 }, - "vertexSeeds": { - "c1": 1.6267866634519406, - "c2": 1.6422814963705976, - "c3": 1.6194571266543083, - "c4": 1.637224679102754, - "c5": 1.6596329493805222, - "c6": 1.6585842869749325, - "c7": 1.6204536542734336 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.330097087378639, + "c3": 1.9417475728155305, + "c4": 1.5533980582524218, + "c5": 1.1650485436893259, + "c6": 0.7766990291262174, + "c7": 0.3883495145631087 }, "rgb": [86, 146, 138] }, @@ -355137,23 +355137,23 @@ "year": 1801, "resistanceReported": false, "duration": 45964800, - "curveSeeds": { - "c1": 18.059446769473013, - "c2": 20.681693636517807, - "c3": 5.502855699412763, - "c4": 52.867219271222, - "c5": 35.51280946692914, - "c6": -11.134757279762681, - "c7": -35.65567278942711 + "points": { + "c1": 23.67972470289716, + "c2": -60.23584781757424, + "c3": 32.103740879395275, + "c4": 12.528317926238472, + "c5": -9.030477774127938, + "c6": -55.00425858850248, + "c7": 49.688193630392036 }, - "vertexSeeds": { - "c1": 5.738152361027152, - "c2": 5.541573607575011, - "c3": 5.527399592453828, - "c4": 5.626918471618772, - "c5": 5.4907956501879145, - "c6": 5.693981002289616, - "c7": 5.687237510038559 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -355164,23 +355164,23 @@ "year": 1800, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 23.301368364587013, - "c2": 11.828422313185563, - "c3": 15.184017170383022, - "c4": -12.943032052370633, - "c5": 23.74920613537609, - "c6": 25.343050223732995, - "c7": -3.7811542264569056 + "points": { + "c1": 37.526563379127445, + "c2": 2.5826951255020134, + "c3": -3.376926592144855, + "c4": -2.151928096287463, + "c5": 4.412730430031672, + "c6": 27.23971929350561, + "c7": 36.72746077698452 }, - "vertexSeeds": { - "c1": 3.8268184959714837, - "c2": 3.71561428545219, - "c3": 3.953122021557509, - "c4": 3.77944610879342, - "c5": 3.799540380870897, - "c6": 3.889599865159431, - "c7": 3.8690901693972393 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446597, + "c3": 4.854368932038836, + "c4": 3.8834951456310645, + "c5": 2.912621359223304, + "c6": 1.9417475728155322, + "c7": 0.9708737864077716 }, "rgb": [77, 76, 132] }, @@ -355191,23 +355191,23 @@ "year": 1800, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 3.319607851852105, - "c2": -17.03598816226923, - "c3": 15.956119781342004, - "c4": 10.166914033193969, - "c5": 16.743991172923543, - "c6": 20.70356736533497, - "c7": 18.115414575546737 + "points": { + "c1": 7.73358259443534, + "c2": 22.740363202290077, + "c3": -28.789562587667888, + "c4": -24.296789022116982, + "c5": -3.806212518786918, + "c6": -13.824548472416563, + "c7": 7.980941429027951 }, - "vertexSeeds": { - "c1": 1.2488789474119755, - "c2": 1.1398769806809121, - "c3": 1.2996661753450538, - "c4": 1.3221352272570026, - "c5": 1.3387709164249524, - "c6": 1.279325786213757, - "c7": 1.2466269573104973 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.1081830790568654, + "c3": 1.756819232547388, + "c4": 1.4054553860379102, + "c5": 1.0540915395284327, + "c6": 0.7027276930189551, + "c7": 0.35136384650947755 }, "rgb": [77, 76, 132] }, @@ -355218,23 +355218,23 @@ "year": 1800, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -10.26045544649362, - "c2": 14.420335961710968, - "c3": -5.787235551477632, - "c4": -13.035299479775794, - "c5": 21.855429604599763, - "c6": 11.15722472796974, - "c7": -10.345061997393493 + "points": { + "c1": -15.699319591303775, + "c2": 19.239692416720168, + "c3": -21.585986500151094, + "c4": 2.1513680302589364, + "c5": -15.215195839947592, + "c6": -2.005103064446647, + "c7": -10.806263725090504 }, - "vertexSeeds": { - "c1": 1.5868159207480288, - "c2": 1.471333380764372, - "c3": 1.5247428322624277, - "c4": 1.593175889244114, - "c5": 1.495681108033261, - "c6": 1.5246801142114765, - "c7": 1.6159886042536955 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.052704576976423, + "c3": 1.710587147480351, + "c4": 1.368469717984282, + "c5": 1.02635228848821, + "c6": 0.684234858992141, + "c7": 0.34211742949607205 }, "rgb": [238, 201, 159] }, @@ -355245,23 +355245,23 @@ "year": 1800, "resistanceReported": false, "duration": 3110400, - "curveSeeds": { - "c1": -0.07405371373028835, - "c2": 5.03845337252249, - "c3": 4.472568078957426, - "c4": 8.704098011920337, - "c5": 7.8176736811910175, - "c6": 10.520407458335818, - "c7": 1.112098105600154 + "points": { + "c1": 3.7505561629187305, + "c2": -15.220241122122093, + "c3": -7.386289806581279, + "c4": 8.742207041236313, + "c5": 4.143514943409407, + "c6": -8.589435010012288, + "c7": 3.6388687972055287 }, - "vertexSeeds": { - "c1": 1.729293980914601, - "c2": 1.9778250542393832, - "c3": 2.013125541237749, - "c4": 2.007581149365663, - "c5": 2.0425871811758407, - "c6": 2.169832237820064, - "c7": 1.89038076054403 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.162274618585298, + "c3": 2.635228848821082, + "c4": 2.108183079056864, + "c5": 1.581137309292648, + "c6": 1.054091539528432, + "c7": 0.527045769764216 }, "rgb": [58, 15, 49] }, @@ -355272,23 +355272,23 @@ "year": 1800, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 3.746230208208708, - "c2": -46.25415800857771, - "c3": 18.388318857587286, - "c4": 34.23537338527131, - "c5": 6.421830835998293, - "c6": 41.31267018200514, - "c7": 28.615816140007162 + "points": { + "c1": 24.991052549491734, + "c2": -25.985761576530408, + "c3": -42.01696104657803, + "c4": -45.80848307334995, + "c5": -18.436554549989214, + "c6": -48.728326436969176, + "c7": 26.706630003097963 }, - "vertexSeeds": { - "c1": 8.043735817009305, - "c2": 7.5683064854526, - "c3": 7.776584229498464, - "c4": 7.928723866399729, - "c5": 7.7404411406973255, - "c6": 7.576877124103727, - "c7": 7.880090471981038 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.62274618585298, + "c3": 9.685621821544151, + "c4": 7.74849745723532, + "c5": 5.81137309292649, + "c6": 3.87424872861766, + "c7": 1.93712436430883 }, "rgb": [222, 0, 59] }, @@ -355299,23 +355299,23 @@ "year": 1800, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 26.763144603356636, - "c2": 27.200390657776317, - "c3": -16.2801840742603, - "c4": -10.598670888664255, - "c5": -4.5548421964634755, - "c6": -22.695949048496644, - "c7": -10.69968548205511 + "points": { + "c1": -23.74236017325092, + "c2": -3.3766409766550787, + "c3": -30.02648922877741, + "c4": -14.450867523635546, + "c5": -24.202168199880237, + "c6": 7.47859060819831, + "c7": 22.92067445397523 }, - "vertexSeeds": { - "c1": 3.9680595429830396, - "c2": 4.013987929211828, - "c3": 4.231513917118195, - "c4": 4.059973347412725, - "c5": 4.11836577263456, - "c6": 4.084059962569059, - "c7": 4.151590329392407 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808595, + "c3": 5.0624133148405015, + "c4": 4.049930651872396, + "c5": 3.037447988904303, + "c6": 2.024965325936198, + "c7": 1.0124826629680936 }, "rgb": [86, 146, 138] }, @@ -355326,23 +355326,23 @@ "year": 1800, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -4.1024923335922345, - "c2": -3.0678110363859794, - "c3": 17.319257331692185, - "c4": -19.725489473530995, - "c5": -5.821038755511271, - "c6": 8.259733710284976, - "c7": 1.8893836841825298 + "points": { + "c1": -17.857245840413125, + "c2": -4.584085318153246, + "c3": -22.208493248624347, + "c4": -9.251227866047342, + "c5": 12.422832613958064, + "c6": 17.75249129248357, + "c7": 15.234393871268075 }, - "vertexSeeds": { - "c1": 1.8230938646546133, - "c2": 1.8027666881900914, - "c3": 1.8705115300619992, - "c4": 1.9220758984656015, - "c5": 1.8164815004323378, - "c6": 1.7874549850689923, - "c7": 1.8413126749498008 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.3116042533518244, + "c4": 1.8492834026814589, + "c5": 1.3869625520110975, + "c6": 0.9246417013407318, + "c7": 0.4623208506703659 }, "rgb": [86, 146, 138] }, @@ -355353,23 +355353,23 @@ "year": 1800, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -0.40792209877011487, - "c2": -10.730964592541334, - "c3": -28.096437366808935, - "c4": 21.975949047201972, - "c5": -13.957482256072364, - "c6": 36.056255558224365, - "c7": -6.222388196871719 + "points": { + "c1": 19.458306918173975, + "c2": 32.26921268062996, + "c3": 7.764439330750697, + "c4": 18.32633987474634, + "c5": -28.794134778059348, + "c6": 14.37264158758849, + "c7": -20.51796607732098 }, - "vertexSeeds": { - "c1": 6.547062153580242, - "c2": 6.804126114069556, - "c3": 6.781415698591976, - "c4": 6.6727158066682435, - "c5": 6.767653423962596, - "c6": 6.583964622945833, - "c7": 6.43519164675626 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439661, + "c3": 8.298659269533065, + "c4": 6.638927415626449, + "c5": 4.9791955617198305, + "c6": 3.3194637078132345, + "c7": 1.6597318539066173 }, "rgb": [222, 0, 59] }, @@ -355380,23 +355380,23 @@ "year": 1800, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -25.996510372576676, - "c2": -18.88673399727663, - "c3": 17.50525959449266, - "c4": -19.371227056516016, - "c5": 21.984838243368177, - "c6": -27.775656198183796, - "c7": -22.071461423588666 + "points": { + "c1": 1.525943411421128, + "c2": -8.251523264919893, + "c3": -13.694751899799275, + "c4": 7.454981503259507, + "c5": -28.127206133611402, + "c6": -6.756555329039877, + "c7": -3.0756348675495246 }, - "vertexSeeds": { - "c1": 3.2188145469948677, - "c2": 3.23651848664487, - "c3": 3.3575212201849958, - "c4": 3.1995689221237935, - "c5": 3.3995938407232273, - "c6": 3.387771929870148, - "c7": 3.3571683980476035 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033291, + "c4": 3.328710124826635, + "c5": 2.4965325936199787, + "c6": 1.6643550624133119, + "c7": 0.8321775312066559 }, "rgb": [86, 146, 138] }, @@ -355407,23 +355407,23 @@ "year": 1800, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 20.204846287696668, - "c2": -16.849622122479122, - "c3": -9.432457644714631, - "c4": 14.476471084775369, - "c5": 12.148512053416113, - "c6": 28.44647125437301, - "c7": 23.976544491423205 + "points": { + "c1": 9.147058929754692, + "c2": 8.056696711691771, + "c3": 30.69606054401531, + "c4": 8.93021749591194, + "c5": -27.885619254480176, + "c6": 17.44640318964393, + "c7": -26.22148578210842 }, - "vertexSeeds": { - "c1": 5.362485894004044, - "c2": 5.369208017500391, - "c3": 5.525299816993903, - "c4": 5.463564107740139, - "c5": 5.5966131673448, - "c6": 5.477307450993313, - "c7": 5.728101726474624 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986137, + "c3": 6.888580674988432, + "c4": 5.5108645399907505, + "c5": 4.133148404993069, + "c6": 2.7554322699953864, + "c7": 1.3777161349976823 }, "rgb": [86, 146, 138] }, @@ -355434,23 +355434,23 @@ "year": 1801, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": -20.177172763750065, - "c2": 0.2234308818569133, - "c3": -33.254537270137675, - "c4": -42.00191590121548, - "c5": 44.60142411637567, - "c6": 11.126686797647885, - "c7": -9.402281000616412 + "points": { + "c1": -14.66203049614532, + "c2": 14.900938953190078, + "c3": -36.25314546430613, + "c4": 3.4826773863125524, + "c5": 23.731947297000985, + "c6": 7.00573834999409, + "c7": -23.851530389677915 }, - "vertexSeeds": { - "c1": 3.9548078978135477, - "c2": 4.063418445538934, - "c3": 3.9903770200732938, - "c4": 3.757303602167425, - "c5": 3.90465862228713, - "c6": 3.7132368678248793, - "c7": 3.9798697296258645 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527046, + "c3": 4.900601017105871, + "c4": 3.920480813684697, + "c5": 2.940360610263523, + "c6": 1.9602404068423485, + "c7": 0.9801202034211742 }, "rgb": [77, 76, 132] }, @@ -355461,23 +355461,23 @@ "year": 1800, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 33.01954341719802, - "c2": 18.439169606225505, - "c3": 10.705976985702307, - "c4": -26.63766922361319, - "c5": -13.909452319250143, - "c6": 15.566527239465543, - "c7": -3.649148164192489 + "points": { + "c1": 22.778064136570457, + "c2": -12.09135297975222, + "c3": 39.650376478779364, + "c4": -26.96142512593264, + "c5": 1.118345096995597, + "c6": 34.50779936621382, + "c7": -37.24222247711075 }, - "vertexSeeds": { - "c1": 0.7920016660057141, - "c2": 1.1103700234686347, - "c3": 2.0110835391173083, - "c4": 1.9324844854514858, - "c5": 1.1656348032692536, - "c6": 1.4383447681606856, - "c7": 1.3760739643330273 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.912621359223301, + "c3": 2.4271844660194177, + "c4": 1.9417475728155338, + "c5": 1.4563106796116505, + "c6": 0.9708737864077672, + "c7": 0.4854368932038836 }, "rgb": [77, 76, 132] }, @@ -355488,23 +355488,23 @@ "year": 1800, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -7.563026514546365, - "c2": -25.476268382523116, - "c3": -20.811480209772537, - "c4": -15.933681134645564, - "c5": -10.95797550690207, - "c6": 16.61489931929868, - "c7": -22.282319764741302 + "points": { + "c1": 5.738184544802884, + "c2": -12.454665885798764, + "c3": 1.767686104830716, + "c4": 28.036408187707764, + "c5": 20.160691004740485, + "c6": -34.29875822744632, + "c7": -9.22264062277059 }, - "vertexSeeds": { - "c1": 2.5042582862054994, - "c2": 2.140388216399215, - "c3": 2.46877663160452, - "c4": 2.5391434062377014, - "c5": 1.7058677737857948, - "c6": 2.0648596155153713, - "c7": 1.9579343749020057 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.7725381414701813, + "c3": 3.1437817845584832, + "c4": 2.5150254276467865, + "c5": 1.8862690707350895, + "c6": 1.257512713823394, + "c7": 0.6287563569116957 }, "rgb": [58, 15, 49] }, @@ -355515,23 +355515,23 @@ "year": 1800, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -20.494322590487357, - "c2": 34.2984242274798, - "c3": 14.11854836408515, - "c4": 30.547581986023758, - "c5": -18.80257201383906, - "c6": 20.653570675118175, - "c7": -9.872274157001797 + "points": { + "c1": 15.807737686000415, + "c2": 29.55119472643625, + "c3": 24.27998730312781, + "c4": 27.47902660190563, + "c5": 8.199942820371817, + "c6": -23.657606579742808, + "c7": -42.55800630073799 }, - "vertexSeeds": { - "c1": 3.704002430920311, - "c2": 3.597125032419851, - "c3": 3.6306692584289766, - "c4": 3.7417691825332855, - "c5": 3.607568113814617, - "c6": 3.601554222065796, - "c7": 3.6614067259923004 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843273, + "c3": 4.507628294036061, + "c4": 3.6061026352288486, + "c5": 2.7045769764216363, + "c6": 1.8030513176144243, + "c7": 0.9015256588072121 }, "rgb": [77, 76, 132] }, @@ -355542,23 +355542,23 @@ "year": 1800, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -15.442937123211324, - "c2": 2.3091583392775306, - "c3": -20.00734299695042, - "c4": -20.570785585341774, - "c5": 22.404127905948737, - "c6": 19.22254338788493, - "c7": -0.8066682624142345 + "points": { + "c1": 26.97056455696838, + "c2": 26.687843647164147, + "c3": -23.478060309441084, + "c4": -1.3728198021687028, + "c5": 23.345093430743976, + "c6": -4.563136208408956, + "c7": 25.597549999209146 }, - "vertexSeeds": { - "c1": 5.946120590923362, - "c2": 6.1509230945928595, - "c3": 6.1967598781501545, - "c4": 5.739702680205333, - "c5": 6.114361073668941, - "c6": 6.155822440319189, - "c7": 6.103961756281539 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951467, + "c3": 7.443365695792877, + "c4": 5.954692556634311, + "c5": 4.466019417475722, + "c6": 2.9773462783171554, + "c7": 1.4886731391585888 }, "rgb": [222, 0, 59] }, @@ -355569,23 +355569,23 @@ "year": 1800, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 17.836693096455633, - "c2": -14.30360818023756, - "c3": -35.00825908254022, - "c4": -31.885457079640886, - "c5": 29.96628665159796, - "c6": 0.017631327421263165, - "c7": -3.1676801969839516 + "points": { + "c1": 27.788868164996508, + "c2": -26.0605106779867, + "c3": -11.133540163029274, + "c4": 35.17639067763921, + "c5": 26.912214160760833, + "c6": 2.8712921319257845, + "c7": -4.103268772831008 }, - "vertexSeeds": { - "c1": 5.220471121377422, - "c2": 5.176349641770403, - "c3": 4.989761852070088, - "c4": 5.207590709217885, - "c5": 4.871746875405599, - "c6": 5.020170832099369, - "c7": 5.154477693749149 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.48959778085992, + "c3": 6.241331484049937, + "c4": 4.993065187239954, + "c5": 3.7447988904299487, + "c6": 2.4965325936199663, + "c7": 1.2482662968099831 }, "rgb": [238, 201, 159] }, @@ -355596,23 +355596,23 @@ "year": 1800, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -23.693841656156838, - "c2": -2.5486927994238755, - "c3": -13.103973461525817, - "c4": 5.342122084593072, - "c5": 17.024925440502557, - "c6": 5.972198712262056, - "c7": 12.083850204407135 + "points": { + "c1": -14.175320184026102, + "c2": 16.448069458930654, + "c3": -10.53861544117823, + "c4": -5.3932307208703705, + "c5": -8.134786180733624, + "c6": -12.53680445360285, + "c7": 14.950314284790949 }, - "vertexSeeds": { - "c1": 3.194185629236755, - "c2": 3.272179649308052, - "c3": 3.131226942532823, - "c4": 3.1691035403629035, - "c5": 3.2044349395205702, - "c6": 3.2690220690791434, - "c7": 3.2485542529645532 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958387, + "c3": 3.999075358298665, + "c4": 3.1992602866389293, + "c5": 2.3994452149791936, + "c6": 1.599630143319458, + "c7": 0.7998150716597356 }, "rgb": [58, 15, 49] }, @@ -355623,23 +355623,23 @@ "year": 1800, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -36.55034471076672, - "c2": -31.1748223033051, - "c3": -37.13820165887805, - "c4": 16.21421859754261, - "c5": -19.951470413326557, - "c6": 24.783069276630236, - "c7": -7.309751220244678 + "points": { + "c1": 9.548474518243673, + "c2": -31.234960360592982, + "c3": -31.778749218525768, + "c4": 20.758457381756756, + "c5": -18.16010487460491, + "c6": -23.76602000325546, + "c7": 20.04476942860491 }, - "vertexSeeds": { - "c1": 8.036836602312558, - "c2": 7.587117597700912, - "c3": 8.012232286482659, - "c4": 8.061338718523857, - "c5": 8.080592061965863, - "c6": 7.747922359576535, - "c7": 7.729095379153865 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.62274618585298, + "c3": 9.685621821544151, + "c4": 7.74849745723532, + "c5": 5.81137309292649, + "c6": 3.87424872861766, + "c7": 1.93712436430883 }, "rgb": [86, 146, 138] }, @@ -355650,23 +355650,23 @@ "year": 1800, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -23.358500244336668, - "c2": -11.032639681690398, - "c3": -40.118723671195504, - "c4": 4.794313667841529, - "c5": 24.36469352306925, - "c6": -43.32860320110737, - "c7": 12.78444466511268 + "points": { + "c1": -27.55411508361504, + "c2": -9.799251852938141, + "c3": 4.497693792857554, + "c4": -16.352288062764224, + "c5": -32.26584902833859, + "c6": 38.17430032527403, + "c7": 27.110958626729783 }, - "vertexSeeds": { - "c1": 2.7830578885736816, - "c2": 2.9378995052204266, - "c3": 2.846085600888041, - "c4": 2.767946821994613, - "c5": 2.7313729893043557, - "c6": 2.791348755305773, - "c7": 2.849900221643004 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153952, + "c3": 3.536754507628291, + "c4": 2.829403606102631, + "c5": 2.1220527045769813, + "c6": 1.414701803051321, + "c7": 0.7073509015256605 }, "rgb": [86, 146, 138] }, @@ -355677,23 +355677,23 @@ "year": 1800, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 9.78283259895526, - "c2": 7.222345585787313, - "c3": -3.4246519453683852, - "c4": -14.4136505225356, - "c5": -6.511859799937152, - "c6": 7.661286899415799, - "c7": 14.833954472250724 + "points": { + "c1": -20.56326324239964, + "c2": -0.33883899924036953, + "c3": -12.139756235422078, + "c4": -7.258103115931885, + "c5": -15.742449251317028, + "c6": 3.366035819476341, + "c7": -25.925913578352738 }, - "vertexSeeds": { - "c1": 1.7282002128051723, - "c2": 1.8766840079826324, - "c3": 1.8892766312807772, - "c4": 1.9343076507003454, - "c5": 1.7716354617176144, - "c6": 1.7339943010436805, - "c7": 1.8377529404959185 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.8862690707350886, + "c5": 1.4147018030513194, + "c6": 0.9431345353675462, + "c7": 0.4715672676837731 }, "rgb": [77, 76, 132] }, @@ -355704,23 +355704,23 @@ "year": 1801, "resistanceReported": false, "duration": 42854400, - "curveSeeds": { - "c1": 42.20369665012955, - "c2": 25.484264366636886, - "c3": -54.95964491422569, - "c4": 53.62023866707319, - "c5": -31.97282940065777, - "c6": -15.17297425363519, - "c7": 4.173424503897849 + "points": { + "c1": -22.868402633012025, + "c2": -57.50368841473555, + "c3": 38.295495433123456, + "c4": -7.310555134113706, + "c5": 12.564569281823758, + "c6": 47.25087069007707, + "c7": 57.93553325707001 }, - "vertexSeeds": { - "c1": 1.8848020490469712, - "c2": 1.717120054060842, - "c3": 1.892206033203837, - "c4": 1.6968744794496144, - "c5": 1.784651415178954, - "c6": 1.8714717147218174, - "c7": 1.8220435563496398 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022191, + "c3": 2.311604253351826, + "c4": 1.8492834026814606, + "c5": 1.3869625520110955, + "c6": 0.9246417013407303, + "c7": 0.46232085067036516 }, "rgb": [58, 15, 49] }, @@ -355731,23 +355731,23 @@ "year": 1800, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -5.848971647475803, - "c2": -23.063405967177655, - "c3": -7.544234773389327, - "c4": -17.064590983456213, - "c5": 23.80221259675766, - "c6": -13.168760329497678, - "c7": 9.786500259183693 + "points": { + "c1": 18.862626658763052, + "c2": 8.27515429152729, + "c3": -0.9640836602409628, + "c4": 12.667555937248533, + "c5": -9.343289677641383, + "c6": 7.4916354078326, + "c7": 27.39019406653195 }, - "vertexSeeds": { - "c1": 1.1899780229698116, - "c2": 1.1901033064182613, - "c3": 1.1920130283723205, - "c4": 1.213354005906324, - "c5": 1.1895591986484746, - "c6": 1.2129746374270904, - "c7": 1.224502436244437 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.803051317614423, + "c3": 1.5025427646786844, + "c4": 1.2020342117429503, + "c5": 0.9015256588072115, + "c6": 0.6010171058714727, + "c7": 0.30050855293573386 }, "rgb": [222, 0, 59] }, @@ -355758,23 +355758,23 @@ "year": 1801, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": 0.4217277356176794, - "c2": 23.537401651397666, - "c3": 39.93625624577536, - "c4": -32.43505015769847, - "c5": -5.7775173511521345, - "c6": 48.71975587561605, - "c7": 47.758347060997245 + "points": { + "c1": -14.527051262386799, + "c2": -33.97193782909427, + "c3": 30.30774946409472, + "c4": -22.062000136330752, + "c5": 16.05007715941108, + "c6": 57.334902408996705, + "c7": -12.092303342323554 }, - "vertexSeeds": { - "c1": 3.7748345427399013, - "c2": 3.765276943240087, - "c3": 4.49653833237791, - "c4": 3.7185195185727093, - "c5": 3.8897507599218573, - "c6": 4.042407490533381, - "c7": 4.0778102128212455 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843273, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.16366158113731, + "c7": 1.0818307905686575 }, "rgb": [58, 15, 49] }, @@ -355785,23 +355785,23 @@ "year": 1800, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -25.349620593169192, - "c2": -6.6870300906167515, - "c3": 15.188211733064644, - "c4": -6.523948430681163, - "c5": 21.48371574115618, - "c6": 0.5290098082736954, - "c7": 23.505187627681426 + "points": { + "c1": -4.932672514780396, + "c2": 13.184112175872936, + "c3": -21.975485194733416, + "c4": -19.972524626619062, + "c5": -9.382610121887776, + "c6": -9.44870106962614, + "c7": -24.046761530107272 }, - "vertexSeeds": { - "c1": 1.479012462701617, - "c2": 1.3720520823941988, - "c3": 1.1820226647040097, - "c4": 1.2064722067017173, - "c5": 1.4533256988031789, - "c6": 1.483415213172938, - "c7": 1.454117877122762 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257976, + "c3": 1.872399445214979, + "c4": 1.497919556171984, + "c5": 1.1234396671289872, + "c6": 0.748959778085992, + "c7": 0.374479889042996 }, "rgb": [222, 0, 59] }, @@ -355812,23 +355812,23 @@ "year": 1801, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -7.464362815926364, - "c2": 2.051765816885208, - "c3": -29.23051739635235, - "c4": -20.25073202733746, - "c5": -42.62988419081175, - "c6": 13.204361910836724, - "c7": 29.80041684092575 + "points": { + "c1": -23.326406387189007, + "c2": -2.1024322324292726, + "c3": -6.382478605452604, + "c4": 35.29862643976148, + "c5": 31.07153783573267, + "c6": 16.05854142143677, + "c7": 11.407033743800625 }, - "vertexSeeds": { - "c1": 2.500835422069096, - "c2": 2.4152286119992676, - "c3": 2.4525577812978256, - "c4": 2.542830758003574, - "c5": 2.528574256872169, - "c6": 2.4693471523046084, - "c7": 2.4328708824081904 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.7170596393897313, + "c3": 3.097549699491448, + "c4": 2.4780397595931545, + "c5": 1.8585298196948656, + "c6": 1.2390198797965772, + "c7": 0.6195099398982886 }, "rgb": [222, 0, 59] }, @@ -355839,23 +355839,23 @@ "year": 1801, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -13.427351415080945, - "c2": -13.868268878101077, - "c3": -35.426347368854884, - "c4": -4.912623743379299, - "c5": 23.632742818789374, - "c6": -12.54587166308027, - "c7": 10.794643115593018 + "points": { + "c1": -45.6340575645303, + "c2": -11.37252895398067, + "c3": 9.086486587648537, + "c4": -17.119802911092627, + "c5": 34.12788231535274, + "c6": -41.50190187499933, + "c7": 41.05016880599451 }, - "vertexSeeds": { - "c1": 4.364054903525481, - "c2": 4.153217808362534, - "c3": 4.343231604092169, - "c4": 4.1901161249844305, - "c5": 4.516972851667499, - "c6": 4.1247100656274505, - "c7": 4.146347673301278 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532596, + "c3": 5.478502080443824, + "c4": 4.382801664355061, + "c5": 3.287101248266298, + "c6": 2.191400832177535, + "c7": 1.0957004160887631 }, "rgb": [222, 0, 59] }, @@ -355866,23 +355866,23 @@ "year": 1801, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 29.71241641172913, - "c2": 29.61594279232117, - "c3": 9.871715397310126, - "c4": -23.394566721554376, - "c5": 12.114457410982808, - "c6": 38.716877485722854, - "c7": 1.7330391332386128 + "points": { + "c1": 2.229524168075102, + "c2": -52.29557367613639, + "c3": 34.1556677814363, + "c4": -21.912723863855412, + "c5": -3.0977839872482136, + "c6": 43.00065057178822, + "c7": -2.823810286403827 }, - "vertexSeeds": { - "c1": 5.988700344404776, - "c2": 6.206603684484133, - "c3": 6.331059636788094, - "c4": 6.302387712155176, - "c5": 6.250321561924784, - "c6": 6.14583233000897, - "c7": 6.528216475704515 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635228, + "c3": 7.836338418862691, + "c4": 6.269070735090152, + "c5": 4.701803051317614, + "c6": 3.134535367545076, + "c7": 1.567267683772538 }, "rgb": [222, 0, 59] }, @@ -355893,23 +355893,23 @@ "year": 1800, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -10.674011013137115, - "c2": 25.769371561761602, - "c3": -16.29248821896419, - "c4": -0.3622322227248773, - "c5": 23.519209220933696, - "c6": -28.549352378493452, - "c7": 11.968964183344404 + "points": { + "c1": 9.200506750195203, + "c2": -0.21549271243375756, + "c3": -26.614952023711943, + "c4": 24.178370326989217, + "c5": -23.83525152704074, + "c6": -15.738363204872925, + "c7": 1.6725539420438906 }, - "vertexSeeds": { - "c1": 6.590922288662194, - "c2": 6.998134915418694, - "c3": 6.624368464892254, - "c4": 7.026099357983147, - "c5": 6.645332927325476, - "c6": 6.554882110221003, - "c7": 6.9504705959739965 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.20804438280166, + "c3": 8.50670365233473, + "c4": 6.80536292186778, + "c5": 5.10402219140083, + "c6": 3.4026814609339007, + "c7": 1.7013407304669503 }, "rgb": [58, 15, 49] }, @@ -355920,23 +355920,23 @@ "year": 1800, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -15.758821349354697, - "c2": 13.145212911025375, - "c3": -17.886011450402073, - "c4": 22.848010363585104, - "c5": 18.64559477830678, - "c6": 13.165471714504207, - "c7": -16.905603833826984 + "points": { + "c1": -32.05314036840713, + "c2": 13.498773558630475, + "c3": -33.06765032879996, + "c4": -22.037798176843268, + "c5": 13.866966828753831, + "c6": -17.47729711761291, + "c7": -2.595010873485208 }, - "vertexSeeds": { - "c1": 6.159716736444253, - "c2": 6.308676919786512, - "c3": 6.295929622178967, - "c4": 6.20499930278417, - "c5": 6.396031360408831, - "c6": 6.452895929886418, - "c7": 6.340443229409281 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514563, + "c3": 7.766990291262136, + "c4": 6.213592233009709, + "c5": 4.660194174757281, + "c6": 3.1067961165048543, + "c7": 1.5533980582524272 }, "rgb": [86, 146, 138] }, @@ -355947,23 +355947,23 @@ "year": 1800, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 30.99326020616121, - "c2": -16.875482853376187, - "c3": -19.683809188913923, - "c4": -25.16051344263328, - "c5": -33.96218511880643, - "c6": -20.427725905782186, - "c7": 6.002891973878462 + "points": { + "c1": -22.514229987922906, + "c2": -21.837828162710032, + "c3": 16.43067757563354, + "c4": -24.191517584142446, + "c5": 4.08108535661772, + "c6": -22.715353232113294, + "c7": 30.60676862432716 }, - "vertexSeeds": { - "c1": 7.350828928957486, - "c2": 7.315406665849116, - "c3": 7.536409288185204, - "c4": 7.022460869577446, - "c5": 7.2373074328378895, - "c6": 7.062202989895893, - "c7": 7.021575569754194 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847431, + "c3": 9.107720758206188, + "c4": 7.286176606564948, + "c5": 5.464632454923705, + "c6": 3.6430883032824846, + "c7": 1.8215441516412423 }, "rgb": [58, 15, 49] }, @@ -355974,23 +355974,23 @@ "year": 1801, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -19.807501115568147, - "c2": 20.839509847358805, - "c3": 30.758880676790618, - "c4": -33.78515931560696, - "c5": -25.357993771203297, - "c6": -29.735614574978335, - "c7": -34.97693143840452 + "points": { + "c1": 15.218852709387015, + "c2": -5.070788686898588, + "c3": 23.385335721606133, + "c4": -20.927715849324862, + "c5": -29.745763045418443, + "c6": -32.655728941893614, + "c7": 38.96405167459191 }, - "vertexSeeds": { - "c1": 1.01529118214086, - "c2": 0.9934159660672051, - "c3": 0.9678582391839288, - "c4": 1.840790435065421, - "c5": 1.7442921756117737, - "c6": 1.2872620020574794, - "c7": 1.7139634611951426 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.968099861303745, + "c3": 2.473416551086454, + "c4": 1.9787332408691634, + "c5": 1.4840499306518726, + "c6": 0.9893666204345816, + "c7": 0.4946833102172904 }, "rgb": [77, 76, 132] }, @@ -356001,23 +356001,23 @@ "year": 1800, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -14.857725532267066, - "c2": -7.110571172703452, - "c3": -10.47583996060051, - "c4": -9.317983139796375, - "c5": -3.7897137457728824, - "c6": -11.395638371271167, - "c7": -21.253545847424355 + "points": { + "c1": 19.328803055213108, + "c2": -0.2664924980672865, + "c3": -1.104139259735259, + "c4": 3.0370372633911593, + "c5": 2.1601571640167556, + "c6": -17.251906545019658, + "c7": -11.201760029118098 }, - "vertexSeeds": { - "c1": 2.6118224190545214, - "c2": 2.571024653812956, - "c3": 2.8148312225034724, - "c4": 2.64549929553962, - "c5": 2.2491911027862765, - "c6": 2.708073648461868, - "c7": 2.652353187067606 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.0790568654646324, + "c3": 2.5658807212205277, + "c4": 2.0527045769764225, + "c5": 1.5395284327323175, + "c6": 1.0263522884882126, + "c7": 0.5131761442441077 }, "rgb": [58, 15, 49] }, @@ -356028,23 +356028,23 @@ "year": 1800, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -27.35933146185438, - "c2": -5.503977572330811, - "c3": -15.60779911891436, - "c4": -5.056468369460145, - "c5": 23.231649702784015, - "c6": 12.62857701945666, - "c7": 2.2078358560500604 + "points": { + "c1": 5.244898459524062, + "c2": 12.209012736951419, + "c3": 25.37707379663615, + "c4": 1.8616816045802373, + "c5": 8.958899678960922, + "c6": 0.34678604714202876, + "c7": 0.06876959118694259 }, - "vertexSeeds": { - "c1": 1.3237770227467724, - "c2": 1.2474596542378895, - "c3": 1.3644010527305417, - "c4": 1.238027068355817, - "c5": 1.3489648044129854, - "c6": 1.3985439039134384, - "c7": 1.3544445825886677 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.1081830790568654, + "c3": 1.756819232547388, + "c4": 1.4054553860379102, + "c5": 1.0540915395284327, + "c6": 0.7027276930189551, + "c7": 0.35136384650947755 }, "rgb": [58, 15, 49] }, @@ -356055,23 +356055,23 @@ "year": 1800, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -10.573778166915226, - "c2": -10.088046879092524, - "c3": 24.44940407822806, - "c4": 16.715158765774294, - "c5": 14.078692876560762, - "c6": 2.517360434171188, - "c7": 1.727387947930275 + "points": { + "c1": 2.2121114069261623, + "c2": 8.54095209822933, + "c3": -15.632060490766545, + "c4": -5.044222761314224, + "c5": 25.047368352370388, + "c6": -0.8751171195360001, + "c7": 18.920811267997994 }, - "vertexSeeds": { - "c1": 4.924630800692005, - "c2": 4.42704412494462, - "c3": 4.693239341435784, - "c4": 4.672590271433209, - "c5": 4.686942494495784, - "c6": 5.070913235729598, - "c7": 4.944965246625626 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779468, + "c3": 6.195099398982896, + "c4": 4.956079519186313, + "c5": 3.717059639389737, + "c6": 2.4780397595931603, + "c7": 1.239019879796577 }, "rgb": [77, 76, 132] }, @@ -356082,23 +356082,23 @@ "year": 1800, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 29.112573920660125, - "c2": -17.21789446955781, - "c3": -15.437062638258158, - "c4": 11.679117201571522, - "c5": 32.50809285329878, - "c6": 9.322020700630496, - "c7": 27.80160497696206 + "points": { + "c1": -11.208012881946566, + "c2": 18.07640182959524, + "c3": 0.5929895109281489, + "c4": 5.058847115541454, + "c5": -4.6181804236696, + "c6": 25.982712305978687, + "c7": -16.215800220312282 }, - "vertexSeeds": { - "c1": 11.916265946925465, - "c2": 11.8822397323384, - "c3": 11.921983415092006, - "c4": 11.936528067458788, - "c5": 11.912351034455254, - "c6": 11.9476256704484, - "c7": 11.943450307639106 + "offsets": { + "c1": 19.967637540453072, + "c2": 17.115117891817114, + "c3": 14.262598243180703, + "c4": 11.410078594544743, + "c5": 8.55755894590833, + "c6": 5.705039297272371, + "c7": 2.8525196486359583 }, "rgb": [222, 0, 59] }, @@ -356109,23 +356109,23 @@ "year": 1800, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -26.073957455375968, - "c2": 10.451948773517024, - "c3": -4.215327249680691, - "c4": -14.783604134039926, - "c5": -4.9828331492994415, - "c6": 5.26379752534433, - "c7": 27.899289020536465 + "points": { + "c1": -20.445241515516305, + "c2": -37.97955491843125, + "c3": -33.46589668359219, + "c4": -16.38701972779363, + "c5": 22.46725799005133, + "c6": -12.119699970682298, + "c7": -26.043633028710246 }, - "vertexSeeds": { - "c1": 5.923330058146988, - "c2": 6.17975721445199, - "c3": 6.199227220384893, - "c4": 6.170500974518647, - "c5": 6.138525647921018, - "c6": 5.746442947594683, - "c7": 5.7393433096113915 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951467, + "c3": 7.443365695792877, + "c4": 5.954692556634311, + "c5": 4.466019417475722, + "c6": 2.9773462783171554, + "c7": 1.4886731391585888 }, "rgb": [86, 146, 138] }, @@ -356136,23 +356136,23 @@ "year": 1801, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 28.57918809216403, - "c2": 26.98589477777047, - "c3": -27.127737192988295, - "c4": -17.445428160634478, - "c5": -16.31133082050073, - "c6": -9.963915608512629, - "c7": 5.076291797393893 + "points": { + "c1": 35.64462695892689, + "c2": 27.19863097595146, + "c3": -21.742599265256974, + "c4": 17.843686331924374, + "c5": -41.43049468354744, + "c6": -22.744492023944172, + "c7": 14.66225233758189 }, - "vertexSeeds": { - "c1": 5.363601543303764, - "c2": 5.088418373514698, - "c3": 5.170866845658992, - "c4": 5.249267687614264, - "c5": 5.2652121126188245, - "c6": 5.323767039140196, - "c7": 5.098726110566817 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503471, + "c3": 6.611188164586214, + "c4": 5.288950531668975, + "c5": 3.9667128987517355, + "c6": 2.6444752658344965, + "c7": 1.3222376329172392 }, "rgb": [86, 146, 138] }, @@ -356163,23 +356163,23 @@ "year": 1801, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 28.195983505941314, - "c2": -12.82560239062392, - "c3": -3.1565338466304667, - "c4": 4.010504350531633, - "c5": -23.818101008152187, - "c6": 38.8265079836126, - "c7": -17.970131017977874 + "points": { + "c1": 40.776401178407, + "c2": -41.53665553048746, + "c3": -8.897363516539137, + "c4": -30.36143513630006, + "c5": -6.271811777121783, + "c6": -40.04829690431082, + "c7": 0.3074569289091542 }, - "vertexSeeds": { - "c1": 4.463903349614308, - "c2": 4.423427391816249, - "c3": 4.520155614048907, - "c4": 4.530194993068007, - "c5": 4.305638320046863, - "c6": 4.258501075671892, - "c7": 4.260987651839778 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [238, 201, 159] }, @@ -356190,23 +356190,23 @@ "year": 1801, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -38.34496578894626, - "c2": -28.156215103714736, - "c3": -17.362833406582467, - "c4": -29.62104004561955, - "c5": 9.492741354341653, - "c6": -16.359538040033716, - "c7": -19.807335457305694 + "points": { + "c1": -6.1387657309756065, + "c2": -15.110554265849146, + "c3": 42.305408336742914, + "c4": 42.9494684510728, + "c5": 41.29982163216059, + "c6": 4.430730657436008, + "c7": -34.51902492502101 }, - "vertexSeeds": { - "c1": 4.274534117665113, - "c2": 4.161574837291796, - "c3": 4.372673245153215, - "c4": 4.430996597286467, - "c5": 4.054577071397806, - "c6": 4.376582149602647, - "c7": 4.160150783883021 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.316689782709196, + "c4": 4.25335182616736, + "c5": 3.190013869625522, + "c6": 2.1266759130836843, + "c7": 1.0633379565418377 }, "rgb": [58, 15, 49] }, @@ -356217,23 +356217,23 @@ "year": 1801, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": 2.55252544427659, - "c2": 3.9464949124478537, - "c3": -10.948890736202735, - "c4": 30.52657223479595, - "c5": 5.784378166886249, - "c6": 21.534236418500655, - "c7": -9.978047144384433 + "points": { + "c1": -24.69182088411402, + "c2": 23.051901617672186, + "c3": -37.694778596121566, + "c4": -10.212042463053429, + "c5": -47.01967842146641, + "c6": 38.59895521085589, + "c7": 42.03679758018474 }, - "vertexSeeds": { - "c1": 8.136077820156567, - "c2": 7.851660537103578, - "c3": 7.7910011926156555, - "c4": 7.8319746557232435, - "c5": 7.653631082206238, - "c6": 7.929537187249727, - "c7": 8.176754005485083 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013873, + "c3": 9.77808599167823, + "c4": 7.822468793342588, + "c5": 5.866851595006928, + "c6": 3.911234396671285, + "c7": 1.9556171983356425 }, "rgb": [222, 0, 59] }, @@ -356244,23 +356244,23 @@ "year": 1800, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": -9.546207651507638, - "c2": 18.274940765323095, - "c3": 7.299470240754069, - "c4": -17.002180017254496, - "c5": -10.697567742545148, - "c6": -13.487558701994928, - "c7": 2.805655430900977 + "points": { + "c1": 1.9141327473288001, + "c2": -10.956225182947088, + "c3": 18.063787427568833, + "c4": 3.9160742466952243, + "c5": 16.968500224946737, + "c6": -15.68469282513394, + "c7": 11.61905953600558 }, - "vertexSeeds": { - "c1": 0.8486455461942896, - "c2": 0.8071133849699723, - "c3": 0.8125475349198488, - "c4": 0.857412080493962, - "c5": 0.7861079414743597, - "c6": 0.8416800428844551, - "c7": 0.7795325137261078 + "offsets": { + "c1": 1.4886731391585761, + "c2": 1.2760055478502075, + "c3": 1.063337956541839, + "c4": 0.8506703652334724, + "c5": 0.6380027739251037, + "c6": 0.42533518261673525, + "c7": 0.21266759130836851 }, "rgb": [86, 146, 138] }, @@ -356271,23 +356271,23 @@ "year": 1800, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 33.0941131900301, - "c2": 13.949323322061936, - "c3": 0.6549949813373246, - "c4": -25.759079812086096, - "c5": 31.549853466548, - "c6": 8.234478210663603, - "c7": 30.76416212669369 + "points": { + "c1": 35.02485599573542, + "c2": 25.562449856372723, + "c3": 5.126840269362972, + "c4": 20.106851546359785, + "c5": 21.1934618447645, + "c6": -13.923655757415478, + "c7": 29.85337705900784 }, - "vertexSeeds": { - "c1": 1.6708770335452003, - "c2": 1.6786166242863083, - "c3": 1.812196216810145, - "c4": 1.7952259560252999, - "c5": 1.672123900005546, - "c6": 1.7231486354388528, - "c7": 1.6582523768172865 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210798, + "c3": 2.1960240406842355, + "c4": 1.7568192325473866, + "c5": 1.3176144244105423, + "c6": 0.8784096162736933, + "c7": 0.43920480813684426 }, "rgb": [86, 146, 138] }, @@ -356298,23 +356298,23 @@ "year": 1800, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -29.407156591656925, - "c2": -18.335236429650706, - "c3": -2.2542080812846166, - "c4": 26.990017893897235, - "c5": -19.10653013207122, - "c6": 5.618792669235258, - "c7": -20.66779368495105 + "points": { + "c1": 9.643348525469683, + "c2": 3.2961364861227693, + "c3": 12.363770281254368, + "c4": 28.656621460654137, + "c5": -3.208981588021839, + "c6": 12.740938652574677, + "c7": 14.778631562111556 }, - "vertexSeeds": { - "c1": 1.8049047028730196, - "c2": 1.7522860036865198, - "c3": 1.8661782605835895, - "c4": 1.7704650407123295, - "c5": 1.7940210718908673, - "c6": 1.9174464343818514, - "c7": 1.7870088577678893 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.3116042533518244, + "c4": 1.8492834026814589, + "c5": 1.3869625520110975, + "c6": 0.9246417013407318, + "c7": 0.4623208506703659 }, "rgb": [77, 76, 132] }, @@ -356325,23 +356325,23 @@ "year": 1800, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 23.414707685785984, - "c2": -9.028702424238286, - "c3": -15.128946284053358, - "c4": -25.312599015098453, - "c5": 26.16015259704774, - "c6": 2.877146097725813, - "c7": -12.480248167115569 + "points": { + "c1": 15.871279004108708, + "c2": 6.451565426503969, + "c3": 4.613934711382235, + "c4": -26.15343428933247, + "c5": -24.643203170920557, + "c6": -24.152891175487525, + "c7": -7.222533932721163 }, - "vertexSeeds": { - "c1": 1.363044362164494, - "c2": 1.2596798988860436, - "c3": 1.2640737223288823, - "c4": 1.240669962334481, - "c5": 1.3244219431836557, - "c6": 1.2675342638273075, - "c7": 1.1754666156058258 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.0527045769764216, + "c3": 1.710587147480351, + "c4": 1.3684697179842804, + "c5": 1.0263522884882101, + "c6": 0.6842348589921395, + "c7": 0.3421174294960691 }, "rgb": [238, 201, 159] }, @@ -356352,23 +356352,23 @@ "year": 1800, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -10.963490418593786, - "c2": -2.5444523594039588, - "c3": 24.236709663395366, - "c4": -19.43604194744926, - "c5": -18.37958043757984, - "c6": -26.398135412293318, - "c7": 0.11947173675570255 + "points": { + "c1": -27.87028158007647, + "c2": 27.174433970782587, + "c3": -4.163363128065274, + "c4": -9.10748748905224, + "c5": 0.9998598941257413, + "c6": 6.735667874224298, + "c7": 19.34439232235534 }, - "vertexSeeds": { - "c1": 6.169754399239379, - "c2": 5.971130445715531, - "c3": 6.263881668519425, - "c4": 5.8753698202320495, - "c5": 6.20936461611751, - "c6": 6.075454861916651, - "c7": 6.338521627405578 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [222, 0, 59] }, @@ -356379,23 +356379,23 @@ "year": 1800, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 7.124112111632961, - "c2": -25.99754792297344, - "c3": -22.533340239977065, - "c4": 13.653510944981207, - "c5": -1.3786742450257243, - "c6": -25.593418371917195, - "c7": -16.99649920309107 + "points": { + "c1": 6.249759843386187, + "c2": -22.104144395488657, + "c3": 14.665028675182079, + "c4": 11.982850155346796, + "c5": -12.77586907867478, + "c6": -7.391248757565823, + "c7": -0.29806330100279155 }, - "vertexSeeds": { - "c1": 4.493963524584873, - "c2": 4.53486806052188, - "c3": 4.743998584937423, - "c4": 4.806963303541759, - "c5": 4.569039071431484, - "c6": 4.771135380520995, - "c7": 4.709340559341135 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176144, + "c3": 5.848358760980121, + "c4": 4.678687008784096, + "c5": 3.509015256588072, + "c6": 2.339343504392048, + "c7": 1.169671752196024 }, "rgb": [86, 146, 138] }, @@ -356406,23 +356406,23 @@ "year": 1800, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -8.83897271221047, - "c2": -6.913862578683773, - "c3": 6.392312899019451, - "c4": -18.240153361714512, - "c5": -14.882410271391885, - "c6": 24.56711069900831, - "c7": 13.942672816756065 + "points": { + "c1": -1.4985141716461783, + "c2": -5.007211777821116, + "c3": 25.193392968365323, + "c4": -10.396945929013153, + "c5": -11.119524572198507, + "c6": -3.4690450539830344, + "c7": -25.494495043828223 }, - "vertexSeeds": { - "c1": 4.366230406789592, - "c2": 4.312428149020188, - "c3": 4.125705450811774, - "c4": 4.216380158448156, - "c5": 4.332166200415948, - "c6": 4.310759861989084, - "c7": 4.370367419275018 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291259, + "c3": 5.3398058252427125, + "c4": 4.271844660194176, + "c5": 3.2038834951456296, + "c6": 2.135922330097083, + "c7": 1.0679611650485359 }, "rgb": [77, 76, 132] }, @@ -356433,23 +356433,23 @@ "year": 1800, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -16.00638962981889, - "c2": 0.37698305321990233, - "c3": -30.97457992266022, - "c4": -22.434438552338435, - "c5": 26.431539605104, - "c6": -10.19974953307566, - "c7": 23.87531603036033 + "points": { + "c1": -30.64087263011648, + "c2": 36.09631665953438, + "c3": 28.743842790341276, + "c4": -27.066188270626554, + "c5": 24.303202545477795, + "c6": -17.325478902936002, + "c7": 11.04509411403751 }, - "vertexSeeds": { - "c1": 5.910664614965526, - "c2": 5.897302861785972, - "c3": 6.365702744076966, - "c4": 6.355415949401038, - "c5": 6.234030627839524, - "c6": 6.008751379284745, - "c7": 6.059692195234618 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [58, 15, 49] }, @@ -356460,23 +356460,23 @@ "year": 1801, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 5.540976852924608, - "c2": 40.45455181707612, - "c3": 14.301527678659205, - "c4": 20.313639926076775, - "c5": 30.188327990863556, - "c6": -13.869627717834984, - "c7": -20.059720034055513 + "points": { + "c1": -37.78034469679244, + "c2": -35.68084774928907, + "c3": -36.40021878322422, + "c4": -26.740067309520168, + "c5": 26.924874239217644, + "c6": -13.752155724568667, + "c7": 30.235007459610017 }, - "vertexSeeds": { - "c1": 5.598324223721465, - "c2": 5.55552200329415, - "c3": 5.563867225167184, - "c4": 5.617059707941071, - "c5": 5.728587970940831, - "c6": 5.535005553368442, - "c7": 5.867475002733563 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -356487,23 +356487,23 @@ "year": 1801, "resistanceReported": false, "duration": 47088000, - "curveSeeds": { - "c1": 54.39177828692847, - "c2": -2.3207984824197183, - "c3": 7.329594867086584, - "c4": -2.7800081796051046, - "c5": 21.228565251415873, - "c6": -56.7390634120484, - "c7": 15.158435214803049 + "points": { + "c1": 5.354468917842283, + "c2": 38.65753029187246, + "c3": 40.53877164397758, + "c4": 47.73710430251464, + "c5": -54.651251463391304, + "c6": 25.790462164709396, + "c7": 27.828678149433586 }, - "vertexSeeds": { - "c1": 8.281135280939434, - "c2": 8.513420914429483, - "c3": 8.597800448949478, - "c4": 8.526457362142642, - "c5": 8.502049453624348, - "c6": 8.394481460994765, - "c7": 8.09488991224904 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858528, + "c3": 10.263522884882107, + "c4": 8.210818307905685, + "c5": 6.158113730929264, + "c6": 4.105409153952842, + "c7": 2.052704576976421 }, "rgb": [238, 201, 159] }, @@ -356514,23 +356514,23 @@ "year": 1800, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -19.619618244157415, - "c2": -0.08031587855066391, - "c3": 1.2020147499356355, - "c4": -19.85968660608738, - "c5": -10.266685089107597, - "c6": 21.19482188787351, - "c7": 6.18966819569637 + "points": { + "c1": 26.086720877236708, + "c2": 14.863374642159656, + "c3": -6.616551663551011, + "c4": -9.399520527428294, + "c5": -12.734093209159479, + "c6": 19.466276294427892, + "c7": -23.517817712643065 }, - "vertexSeeds": { - "c1": 6.5326413890898785, - "c2": 6.190618183820914, - "c3": 6.119279165088087, - "c4": 6.1596440943688595, - "c5": 6.552595913660861, - "c6": 6.287917696690772, - "c7": 6.241443807709394 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715663, + "c3": 7.88257050392973, + "c4": 6.306056403143775, + "c5": 4.729542302357843, + "c6": 3.1530282015718876, + "c7": 1.5765141007859549 }, "rgb": [58, 15, 49] }, @@ -356541,23 +356541,23 @@ "year": 1800, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 28.55160929332024, - "c2": 10.263857454758174, - "c3": 30.585835363688176, - "c4": -19.162259477702875, - "c5": -17.265589038760528, - "c6": 21.49465562912868, - "c7": 4.163845039727157 + "points": { + "c1": 25.042545990192508, + "c2": 5.2394802666684015, + "c3": 14.290238815605989, + "c4": 25.05206585567275, + "c5": -21.238889251295184, + "c6": -38.260108510406425, + "c7": -32.62098024261018 }, - "vertexSeeds": { - "c1": 5.130073781625287, - "c2": 4.934068062501629, - "c3": 5.050290839695241, - "c4": 5.020785758881877, - "c5": 4.940654302086054, - "c6": 5.126664861009879, - "c7": 4.968254061481601 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784564, + "c4": 5.122515025427656, + "c5": 3.8418862690707476, + "c6": 2.561257512713817, + "c7": 1.2806287563569085 }, "rgb": [86, 146, 138] }, @@ -356568,23 +356568,23 @@ "year": 1800, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -12.61778281988094, - "c2": 1.8460990581372698, - "c3": -4.819992717224164, - "c4": 29.435008745641653, - "c5": 9.712958604191513, - "c6": 5.33928592404564, - "c7": 5.763174460220263 + "points": { + "c1": -20.018230002008174, + "c2": 37.34290289747251, + "c3": 26.119134259557548, + "c4": -28.695481584213603, + "c5": -23.857810466511538, + "c6": 21.642546423079793, + "c7": -19.656563554556698 }, - "vertexSeeds": { - "c1": 4.523750379957682, - "c2": 4.446850983691305, - "c3": 4.508228534258143, - "c4": 4.572501541068626, - "c5": 4.320514614293585, - "c6": 4.270780257347067, - "c7": 4.240935420123269 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572814, + "c3": 5.5016181229773435, + "c4": 4.401294498381873, + "c5": 3.300970873786402, + "c6": 2.200647249190942, + "c7": 1.10032362459546 }, "rgb": [77, 76, 132] }, @@ -356595,23 +356595,23 @@ "year": 1801, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -31.574839750796876, - "c2": -19.835089406627542, - "c3": 9.786553272048721, - "c4": -32.46699773422019, - "c5": 19.348390523534682, - "c6": -15.351140182752747, - "c7": -9.01854033910869 + "points": { + "c1": -31.386672222907265, + "c2": -6.253762261979993, + "c3": -2.7638603712537773, + "c4": 14.367864125004765, + "c5": -15.181575658089141, + "c6": -10.070703856009558, + "c7": 12.636294030474168 }, - "vertexSeeds": { - "c1": 4.875748402327823, - "c2": 5.2707932791367025, - "c3": 5.169040571413071, - "c4": 5.119812881052919, - "c5": 4.856708362489649, - "c6": 5.036002399803666, - "c7": 4.850057443587764 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -356622,23 +356622,23 @@ "year": 1800, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -10.846000884964841, - "c2": -7.04397857841462, - "c3": 14.598576555593844, - "c4": 8.876765063684275, - "c5": 20.789084005208395, - "c6": -6.519277379441187, - "c7": 3.4178697690504087 + "points": { + "c1": 23.236617128923662, + "c2": -18.01928117538886, + "c3": 0.12895655579531606, + "c4": -10.315662319162454, + "c5": 20.190402828569667, + "c6": 1.7524626150807379, + "c7": -13.75814089796222 }, - "vertexSeeds": { - "c1": 2.9137853013794404, - "c2": 2.73532631918771, - "c3": 2.880873265853972, - "c4": 2.781824100543483, - "c5": 2.9125901496245215, - "c6": 2.865429550928368, - "c7": 2.9202360966262577 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234398, + "c3": 3.5829865926953337, + "c4": 2.8663892741562687, + "c5": 2.1497919556171943, + "c6": 1.4331946370781297, + "c7": 0.7165973185390648 }, "rgb": [86, 146, 138] }, @@ -356649,23 +356649,23 @@ "year": 1800, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": -4.632101577534078, - "c2": 19.681994905887628, - "c3": 18.76446186767687, - "c4": 17.296235326768993, - "c5": 10.304202624732554, - "c6": 7.27297612001983, - "c7": 17.716748980689893 + "points": { + "c1": 20.770671905173728, + "c2": -8.888331174833647, + "c3": 12.62390509239971, + "c4": -6.025444268031375, + "c5": -5.6339982262059145, + "c6": 10.268809614198318, + "c7": -1.2958758751002897 }, - "vertexSeeds": { - "c1": 2.1936998715992493, - "c2": 2.2750384630531717, - "c3": 2.179763835646296, - "c4": 2.187855767863825, - "c5": 2.1672070796238865, - "c6": 2.188460330492622, - "c7": 2.2821640451685683 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.30097087378641, + "c3": 2.7508090614886704, + "c4": 2.2006472491909377, + "c5": 1.650485436893205, + "c6": 1.1003236245954722, + "c7": 0.5501618122977328 }, "rgb": [77, 76, 132] }, @@ -356676,23 +356676,23 @@ "year": 1801, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -29.593873586217, - "c2": 33.35387786911739, - "c3": 17.595084589006035, - "c4": 22.48215345136974, - "c5": -10.607663564760259, - "c6": -31.222880102450883, - "c7": -21.26847195306378 + "points": { + "c1": 8.455919043357525, + "c2": -38.75323292927508, + "c3": 16.72463771670118, + "c4": 12.47541073215536, + "c5": 0.7181668197046349, + "c6": -3.6368891815139506, + "c7": -17.607287903201502 }, - "vertexSeeds": { - "c1": 5.322809879667731, - "c2": 5.801172671056037, - "c3": 5.327421939438953, - "c4": 5.8374039589118105, - "c5": 5.645834116024799, - "c6": 5.3735903563559795, - "c7": 5.425508346935689 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187249, + "c3": 7.00416088765603, + "c4": 5.603328710124832, + "c5": 4.2024965325936146, + "c6": 2.801664355062416, + "c7": 1.400832177531199 }, "rgb": [86, 146, 138] }, @@ -356703,23 +356703,23 @@ "year": 1801, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": -1.9627117818095101, - "c2": -0.6799192113557098, - "c3": 42.577832572001334, - "c4": 29.337779591184166, - "c5": -14.764666777060775, - "c6": -12.5744958473204, - "c7": 10.602272195748284 + "points": { + "c1": 44.95717468892038, + "c2": 8.637193292327424, + "c3": -41.89798134006007, + "c4": 10.000010355622578, + "c5": -45.333654456329626, + "c6": -27.105986528228026, + "c7": -25.40233718157345 }, - "vertexSeeds": { - "c1": 4.129084868373498, - "c2": 3.9721928211747506, - "c3": 4.106168529005676, - "c4": 4.269352480287292, - "c5": 3.8805321480014943, - "c6": 4.016524962048031, - "c7": 4.182641366501288 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [86, 146, 138] }, @@ -356730,23 +356730,23 @@ "year": 1800, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -24.082348655993435, - "c2": 13.631978140553954, - "c3": -3.4710136195971373, - "c4": 0.6457030223433122, - "c5": 3.8650918919479835, - "c6": 8.602977293420679, - "c7": -31.088599119248897 + "points": { + "c1": -35.06138707110315, + "c2": 18.859643209125842, + "c3": 12.697908541153268, + "c4": 32.891420555901824, + "c5": 16.929610152886248, + "c6": 27.175760477230384, + "c7": -29.985551623586858 }, - "vertexSeeds": { - "c1": 8.316672328342056, - "c2": 8.233247726530244, - "c3": 8.178483806671123, - "c4": 7.773139165987142, - "c5": 8.00498549865687, - "c6": 8.100805464106742, - "c7": 7.707796825263009 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335645, + "c3": 9.963014331946372, + "c4": 7.970411465557096, + "c5": 5.9778085991678225, + "c6": 3.985205732778548, + "c7": 1.992602866389274 }, "rgb": [86, 146, 138] }, @@ -356757,23 +356757,23 @@ "year": 1800, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -5.188150689546518, - "c2": 9.164515032735459, - "c3": -4.703748314169928, - "c4": 11.407738063630696, - "c5": -13.49724603319575, - "c6": 27.266088991902684, - "c7": -16.458110893103832 + "points": { + "c1": 4.711896170795448, + "c2": -1.7460182501286923, + "c3": 5.393747630636113, + "c4": 26.123423579949815, + "c5": -30.432724941596586, + "c6": 3.561735855018682, + "c7": 16.407262757510402 }, - "vertexSeeds": { - "c1": 5.3974216298148985, - "c2": 5.609115136566453, - "c3": 5.57335684507652, - "c4": 5.320978158468785, - "c5": 5.727683460476379, - "c6": 5.51843827379184, - "c7": 5.323206579024156 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945914, + "c3": 6.8654646324549145, + "c4": 5.492371705963936, + "c5": 4.119278779472957, + "c6": 2.746185852981957, + "c7": 1.3730929264909786 }, "rgb": [238, 201, 159] }, @@ -356784,23 +356784,23 @@ "year": 1801, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -10.195142082955336, - "c2": -11.084458270427021, - "c3": 9.136347929578868, - "c4": -7.01735982058986, - "c5": 42.748505948496394, - "c6": 17.5325290720409, - "c7": 21.245205744620357 + "points": { + "c1": 24.80983803849579, + "c2": 29.520348792442796, + "c3": -26.447358831120486, + "c4": 27.044391863190974, + "c5": -0.050523843603649254, + "c6": -36.0485671784768, + "c7": 20.667085922772436 }, - "vertexSeeds": { - "c1": 4.265325082679339, - "c2": 4.437156038032608, - "c3": 4.214049869311443, - "c4": 4.228133370392358, - "c5": 4.189230901970114, - "c6": 4.279430564291296, - "c7": 4.396669269068761 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371706, + "c3": 5.386037910309752, + "c4": 4.308830328247811, + "c5": 3.2316227461858578, + "c6": 2.1544151641239053, + "c7": 1.0772075820619527 }, "rgb": [222, 0, 59] }, @@ -356811,23 +356811,23 @@ "year": 1801, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -32.455259674114615, - "c2": -7.6259004988688055, - "c3": -13.434668469620174, - "c4": 34.104910317459556, - "c5": -1.069719328855335, - "c6": 9.703760029220781, - "c7": 31.50871380362473 + "points": { + "c1": 20.505398962542216, + "c2": -28.03987627110355, + "c3": 2.0711388698329216, + "c4": -2.480688790425191, + "c5": 5.6453550965135975, + "c6": -23.299936424905614, + "c7": 5.343616255468383 }, - "vertexSeeds": { - "c1": 7.256397217363847, - "c2": 7.916364383293984, - "c3": 7.9133446589570084, - "c4": 7.373509874141645, - "c5": 7.352920368538709, - "c6": 7.382687009359967, - "c7": 7.685394325352248 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.34535367545077, + "c3": 9.454461396208963, + "c4": 7.563569116967174, + "c5": 5.672676837725385, + "c6": 3.7817845584835776, + "c7": 1.8908922792417888 }, "rgb": [77, 76, 132] }, @@ -356838,23 +356838,23 @@ "year": 1801, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 25.237375403209086, - "c2": 25.776631852648492, - "c3": -4.871626574500844, - "c4": 8.864442449594343, - "c5": 12.722227086670152, - "c6": 7.045729158563105, - "c7": -36.994877558303585 + "points": { + "c1": -37.17481678185687, + "c2": -1.9798546604156755, + "c3": 5.163345659855061, + "c4": -23.41938065770651, + "c5": 0.976653666967529, + "c6": 8.068855765807989, + "c7": 28.5591505280768 }, - "vertexSeeds": { - "c1": 7.1306348617069375, - "c2": 6.7422101090784325, - "c3": 7.088522059704871, - "c4": 6.92549400819154, - "c5": 6.804091495035518, - "c6": 6.939974158439297, - "c7": 6.968176441492815 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801656, + "c3": 8.506703652334734, + "c4": 6.80536292186778, + "c5": 5.104022191400828, + "c6": 3.4026814609339047, + "c7": 1.7013407304669523 }, "rgb": [86, 146, 138] }, @@ -356865,23 +356865,23 @@ "year": 1800, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -14.270581425770956, - "c2": 16.188848040607404, - "c3": -22.497661405725513, - "c4": 8.524570963573225, - "c5": -15.650747745517055, - "c6": -10.647520529139985, - "c7": 11.306860438126378 + "points": { + "c1": -34.09186063030508, + "c2": 23.61646175746447, + "c3": -14.754005895786634, + "c4": -25.93239225526565, + "c5": -11.325522328245928, + "c6": -7.71809397214869, + "c7": -34.210418310197845 }, - "vertexSeeds": { - "c1": 7.2618501355081655, - "c2": 7.222825681778321, - "c3": 7.3720239617067636, - "c4": 7.427277316851823, - "c5": 7.505882601955088, - "c6": 7.508886839798489, - "c7": 7.031318970221403 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.7628294036061, + "c3": 8.969024503005079, + "c4": 7.17521960240406, + "c5": 5.381414701803039, + "c6": 3.5876098012020408, + "c7": 1.7938049006010204 }, "rgb": [238, 201, 159] }, @@ -356892,23 +356892,23 @@ "year": 1801, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -30.57978956753863, - "c2": 10.967351217925113, - "c3": -11.01083304101347, - "c4": -28.75162427148864, - "c5": -34.58151821574382, - "c6": -31.703533418261813, - "c7": 10.554708326882533 + "points": { + "c1": -24.01279399576895, + "c2": 28.71728005613612, + "c3": 10.884303644541582, + "c4": -8.388373935448683, + "c5": -16.677496428332656, + "c6": 8.242354053357168, + "c7": -15.460068508874048 }, - "vertexSeeds": { - "c1": 6.20906681906383, - "c2": 6.110466692888736, - "c3": 6.266456820237073, - "c4": 5.955590552042947, - "c5": 5.89072050389049, - "c6": 6.006613665773428, - "c7": 6.291320637037744 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.07073509015257, + "c3": 7.558945908460482, + "c4": 6.047156726768375, + "c5": 4.535367545076285, + "c6": 3.0235783633841966, + "c7": 1.5117891816921074 }, "rgb": [58, 15, 49] }, @@ -356919,23 +356919,23 @@ "year": 1801, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -10.800851178426793, - "c2": -21.619044299288756, - "c3": -9.058044839558985, - "c4": -5.846020763116879, - "c5": 11.277912124863327, - "c6": 19.412945129459942, - "c7": -15.317256604674796 + "points": { + "c1": -2.5129227280839928, + "c2": 32.73888052988559, + "c3": -30.629302844573118, + "c4": -6.5381749977105414, + "c5": -27.117097302295896, + "c6": 3.55654164011699, + "c7": 12.89210619942562 }, - "vertexSeeds": { - "c1": 1.6018279506760142, - "c2": 1.6318079178831923, - "c3": 1.7856389767743877, - "c4": 1.795040932963256, - "c5": 1.8429388699130211, - "c6": 1.7450852168730386, - "c7": 1.4626816216539669 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.7184466019417473, + "c3": 2.2653721682847894, + "c4": 1.8122977346278315, + "c5": 1.3592233009708736, + "c6": 0.9061488673139158, + "c7": 0.4530744336569579 }, "rgb": [77, 76, 132] }, @@ -356946,23 +356946,23 @@ "year": 1800, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 7.965007609821324, - "c2": 17.480620146697635, - "c3": 4.317004152009556, - "c4": -6.022610388164782, - "c5": 26.091003944892545, - "c6": -17.504627868238018, - "c7": 15.355682867420494 + "points": { + "c1": -12.110480124765452, + "c2": 10.179395342890636, + "c3": 0.9727270436670565, + "c4": -13.253450897458706, + "c5": 6.923218485742275, + "c6": 31.078420313760475, + "c7": -0.2966584988054848 }, - "vertexSeeds": { - "c1": 4.3836401167678645, - "c2": 4.352557418073147, - "c3": 4.240285267874566, - "c4": 4.498592312657798, - "c5": 4.1387281371558355, - "c6": 4.484055430954806, - "c7": 4.4204124616242915 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411927, + "c3": 5.40915395284327, + "c4": 4.327323162274614, + "c5": 3.245492371705958, + "c6": 2.1636615811373128, + "c7": 1.0818307905686564 }, "rgb": [238, 201, 159] }, @@ -356973,23 +356973,23 @@ "year": 1801, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -14.931068626950594, - "c2": -13.668586295946636, - "c3": 16.46221413633149, - "c4": -5.892477700698404, - "c5": -16.007022094156213, - "c6": -6.0133135302064105, - "c7": -13.991720992517138 + "points": { + "c1": -24.91531411169761, + "c2": -11.346048823092715, + "c3": 21.58672321353354, + "c4": -2.5971376826855916, + "c5": 30.29090081711206, + "c6": 31.05549473889951, + "c7": 21.70536545440335 }, - "vertexSeeds": { - "c1": 7.362819099906029, - "c2": 7.415914817641561, - "c3": 6.819838619538041, - "c4": 6.236755793191742, - "c5": 6.771069706828581, - "c6": 6.962148963511593, - "c7": 6.916505995411354 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.65187239944522, + "c3": 8.87656033287101, + "c4": 7.101248266296812, + "c5": 5.325936199722604, + "c6": 3.550624133148406, + "c7": 1.7753120665741982 }, "rgb": [222, 0, 59] }, @@ -357000,23 +357000,23 @@ "year": 1801, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 11.375148176268148, - "c2": 32.935382572831955, - "c3": -12.797270963958645, - "c4": -7.723146356880775, - "c5": 11.234310129670867, - "c6": 5.158195187160828, - "c7": -19.231015358760057 + "points": { + "c1": -34.37314493335258, + "c2": 11.310685902492487, + "c3": 25.879513912448502, + "c4": -12.485149444887146, + "c5": -26.62499817259711, + "c6": 2.4942963341353632, + "c7": 23.19339207848965 }, - "vertexSeeds": { - "c1": 5.055022627151702, - "c2": 4.876230566545241, - "c3": 4.798380496226645, - "c4": 5.167313866979599, - "c5": 5.0590518658813535, - "c6": 5.260177389494008, - "c7": 5.205281296210085 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061028, + "c3": 6.3569116967175265, + "c4": 5.085529357374025, + "c5": 3.814147018030523, + "c6": 2.5427646786870124, + "c7": 1.2713823393435018 }, "rgb": [58, 15, 49] }, @@ -357027,23 +357027,23 @@ "year": 1801, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 29.84180179365049, - "c2": 45.43258769806063, - "c3": 4.517038795737854, - "c4": 20.30011493295953, - "c5": -31.22525300334172, - "c6": 28.382071919402406, - "c7": 32.70631477220881 + "points": { + "c1": -21.606572943250598, + "c2": -3.5639803298179302, + "c3": -26.781903105928905, + "c4": 11.091749008154217, + "c5": -32.92411362398133, + "c6": 37.757773915225144, + "c7": 13.453662090887953 }, - "vertexSeeds": { - "c1": 4.572054966917542, - "c2": 4.609110749991408, - "c3": 4.907994915552925, - "c4": 4.74880426536818, - "c5": 4.624839270389289, - "c6": 4.75517276506423, - "c7": 4.770352041665458 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377256, + "c3": 5.963938973647716, + "c4": 4.771151178918168, + "c5": 3.578363384188628, + "c6": 2.3855755894590884, + "c7": 1.1927877947295487 }, "rgb": [238, 201, 159] }, @@ -357054,23 +357054,23 @@ "year": 1801, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -4.315681609817695, - "c2": 7.32280402219547, - "c3": -27.710890910212676, - "c4": 3.9697773544996195, - "c5": 1.8316465837036588, - "c6": 17.314610425628146, - "c7": -15.928197677139831 + "points": { + "c1": 7.767184465818602, + "c2": 27.445618590614245, + "c3": -21.135818177311425, + "c4": -18.119898120136188, + "c5": -35.679615105419046, + "c6": -36.5201056231626, + "c7": 2.200649067327781 }, - "vertexSeeds": { - "c1": 5.572543350144221, - "c2": 5.427537031012682, - "c3": 5.366469588788765, - "c4": 5.6561184219484115, - "c5": 5.3452746435501615, - "c6": 5.464451198539088, - "c7": 5.630634102559134 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348136, + "c3": 7.096625057790103, + "c4": 5.67730004623209, + "c5": 4.257975034674058, + "c6": 2.838650023116045, + "c7": 1.4193250115580316 }, "rgb": [86, 146, 138] }, @@ -357081,23 +357081,23 @@ "year": 1800, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 3.1951761040257693, - "c2": -23.74512344428914, - "c3": -26.434318915019517, - "c4": -3.847249572703344, - "c5": -7.479548017222022, - "c6": 10.133032176232053, - "c7": -24.577796798853534 + "points": { + "c1": -7.9899512692466, + "c2": 3.314678974404945, + "c3": 27.099065670961547, + "c4": 8.189887279081628, + "c5": 9.670569245256491, + "c6": -10.669448502573577, + "c7": -12.072813077536711 }, - "vertexSeeds": { - "c1": 7.047901269679236, - "c2": 6.60015813229718, - "c3": 7.059341868875662, - "c4": 6.816762669926026, - "c5": 6.646008446030923, - "c6": 6.68264808739415, - "c7": 6.9412450160753405 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.20804438280166, + "c3": 8.50670365233473, + "c4": 6.80536292186778, + "c5": 5.10402219140083, + "c6": 3.4026814609339007, + "c7": 1.7013407304669503 }, "rgb": [86, 146, 138] }, @@ -357108,23 +357108,23 @@ "year": 1800, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 29.237180003315423, - "c2": 8.091561825156468, - "c3": 7.942177390917145, - "c4": -4.03136059837901, - "c5": -1.7251676090402484, - "c6": 6.067378485391778, - "c7": -14.935285241820143 + "points": { + "c1": 21.8145019229193, + "c2": 16.11126361132301, + "c3": 30.313587358079502, + "c4": 0.8315565755795546, + "c5": 27.485960178948666, + "c6": 12.487903418903635, + "c7": 18.15904104311886 }, - "vertexSeeds": { - "c1": 5.132340289145751, - "c2": 5.49226420371991, - "c3": 5.392407747468818, - "c4": 5.171138840701369, - "c5": 5.517794319657026, - "c6": 5.328995620233709, - "c7": 5.194091175989737 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624126, + "c3": 6.680536292186787, + "c4": 5.3444290337494245, + "c5": 4.008321775312063, + "c6": 2.6722145168747238, + "c7": 1.3361072584373619 }, "rgb": [77, 76, 132] }, @@ -357135,23 +357135,23 @@ "year": 1801, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -5.051083447345157, - "c2": -0.8461543384567776, - "c3": -15.67653276460852, - "c4": -5.950438908835441, - "c5": 1.837287789040154, - "c6": -16.822444492563612, - "c7": -16.68578398442014 + "points": { + "c1": -35.50321868419276, + "c2": 29.405686642821294, + "c3": -13.852901953539643, + "c4": -15.171580291701009, + "c5": -3.104584683272577, + "c6": 27.426025891864285, + "c7": 27.94876138250868 }, - "vertexSeeds": { - "c1": 4.433990124702721, - "c2": 4.699248640889401, - "c3": 4.750104098482536, - "c4": 4.546113428971628, - "c5": 4.568092908009284, - "c6": 4.612101218002747, - "c7": 4.343189467036659 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [238, 201, 159] }, @@ -357162,23 +357162,23 @@ "year": 1800, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -23.040329150471905, - "c2": 27.76205668439786, - "c3": -0.238845363626627, - "c4": 2.537862073975152, - "c5": 20.606110239123037, - "c6": -27.635663208593392, - "c7": -25.280435075291145 + "points": { + "c1": -31.567388200913882, + "c2": -9.356536166321934, + "c3": -13.47246835085803, + "c4": 21.224865491722408, + "c5": -2.2995315703260566, + "c6": -4.110248458116423, + "c7": -17.16686770100338 }, - "vertexSeeds": { - "c1": 5.6493719756535405, - "c2": 5.940313992411686, - "c3": 5.8438376543763395, - "c4": 5.913359542925612, - "c5": 6.077055500211389, - "c6": 6.042162967296319, - "c7": 5.761524324263995 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710135, + "c3": 7.304669440591767, + "c4": 5.843735552473423, + "c5": 4.382801664355057, + "c6": 2.9218677762367116, + "c7": 1.4609338881183667 }, "rgb": [222, 0, 59] }, @@ -357189,23 +357189,23 @@ "year": 1801, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -20.79339256985661, - "c2": 4.2247209244864905, - "c3": 14.66975674181218, - "c4": 5.082578697672936, - "c5": -22.230267774155372, - "c6": -16.053663214723073, - "c7": 10.905151855883283 + "points": { + "c1": 19.439137306355008, + "c2": -11.983064250635568, + "c3": 30.142587769247967, + "c4": -24.998046102616467, + "c5": -29.173740141402426, + "c6": 23.418963157346568, + "c7": -8.26622340959549 }, - "vertexSeeds": { - "c1": 5.164844426540692, - "c2": 5.262582363442293, - "c3": 5.111220403542659, - "c4": 5.130787828820014, - "c5": 5.069214808245643, - "c6": 5.298393402258724, - "c7": 4.97188443804107 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385114, + "c4": 5.17799352750809, + "c5": 3.883495145631068, + "c6": 2.588996763754045, + "c7": 1.2944983818770226 }, "rgb": [77, 76, 132] }, @@ -357216,23 +357216,23 @@ "year": 1801, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -17.058758397397643, - "c2": -5.6153928202036525, - "c3": 20.948408746071628, - "c4": -3.922703234500979, - "c5": 24.297916893069363, - "c6": -9.62045335966161, - "c7": -22.02641414132639 + "points": { + "c1": -31.503717298544956, + "c2": 17.81766550253265, + "c3": -20.745389141116522, + "c4": -29.40173025972067, + "c5": -32.16012490680691, + "c6": -31.530833498378495, + "c7": -19.635866926919928 }, - "vertexSeeds": { - "c1": 0.6982494211371906, - "c2": 0.5334364555321047, - "c3": 0.5638442561673009, - "c4": 1.651814921945055, - "c5": 0.7569262109765456, - "c6": 0.6617150824645922, - "c7": 1.8016346401771843 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.8557558945908466, + "c3": 3.2131299121590384, + "c4": 2.5705039297272307, + "c5": 1.9278779472954233, + "c6": 1.2852519648636156, + "c7": 0.6426259824318076 }, "rgb": [58, 15, 49] }, @@ -357243,23 +357243,23 @@ "year": 1801, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -32.20262343399589, - "c2": 5.740187273711882, - "c3": 5.084994806617452, - "c4": 26.252009371814076, - "c5": -7.040045046760177, - "c6": 11.372006793673663, - "c7": 30.357684842010165 + "points": { + "c1": -1.7854540771292946, + "c2": 44.15053658552349, + "c3": -14.47982684479176, + "c4": -31.175645923227904, + "c5": -9.395647435522697, + "c6": 12.64173776616478, + "c7": 25.925031916943915 }, - "vertexSeeds": { - "c1": 7.162623518526866, - "c2": 7.091653237831232, - "c3": 7.206419383200674, - "c4": 7.402190512579262, - "c5": 6.89963376760725, - "c6": 6.829245074269096, - "c7": 7.417951418378762 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525666, + "c3": 8.922792417938046, + "c4": 7.138233934350445, + "c5": 5.353675450762824, + "c6": 3.5691169671752223, + "c7": 1.784558483587602 }, "rgb": [86, 146, 138] }, @@ -357270,23 +357270,23 @@ "year": 1800, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -1.5075827404707418, - "c2": -5.841535756365328, - "c3": -2.5621459366785153, - "c4": -17.95730264903873, - "c5": 9.513139105260095, - "c6": -23.51361885744798, - "c7": -2.640122677324875 + "points": { + "c1": 29.977801984553842, + "c2": 4.455124292170865, + "c3": -10.459699454243001, + "c4": 18.201181856165057, + "c5": 25.505392685992334, + "c6": 6.719760108882106, + "c7": 7.495549566058571 }, - "vertexSeeds": { - "c1": 5.194710161646991, - "c2": 5.6610508323575655, - "c3": 5.463219842924122, - "c4": 5.360262090398139, - "c5": 5.261424583355631, - "c6": 5.627077345797561, - "c7": 5.520983808759948 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785026, + "c3": 6.773000462320841, + "c4": 5.418400369856677, + "c5": 4.063800277392513, + "c6": 2.709200184928328, + "c7": 1.354600092464164 }, "rgb": [58, 15, 49] }, @@ -357297,23 +357297,23 @@ "year": 1801, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 32.49959241339123, - "c2": 20.01846956522394, - "c3": 29.64440748115487, - "c4": 44.02595846264555, - "c5": -13.19745684343171, - "c6": -41.21670709753397, - "c7": -22.25606203349142 + "points": { + "c1": -41.22852810271979, + "c2": 43.60338125640152, + "c3": -3.658249317995093, + "c4": 13.069369850211615, + "c5": 32.6466209773272, + "c6": -43.55726401784805, + "c7": 36.396428150583645 }, - "vertexSeeds": { - "c1": 5.6644320677757865, - "c2": 6.113062721976261, - "c3": 6.229587687794594, - "c4": 6.027890830802954, - "c5": 6.167686085994455, - "c6": 5.706973908043804, - "c7": 5.638929461890347 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.9875173370319, + "c3": 7.489597780859917, + "c4": 5.991678224687933, + "c5": 4.49375866851595, + "c6": 2.9958391123439667, + "c7": 1.4979195561719834 }, "rgb": [77, 76, 132] }, @@ -357324,23 +357324,23 @@ "year": 1801, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 32.77862277014936, - "c2": 7.48846956627024, - "c3": -25.927737853871317, - "c4": 22.241663664164186, - "c5": 9.34666124230965, - "c6": -11.597810538964968, - "c7": 26.26972106174376 + "points": { + "c1": 33.72748423279463, + "c2": -0.5845021404384667, + "c3": 34.034172454025544, + "c4": 7.054982867378072, + "c5": 21.992060913955342, + "c6": 10.371478777372602, + "c7": 26.562393749692774 }, - "vertexSeeds": { - "c1": 4.878148136655085, - "c2": 5.090820374662909, - "c3": 4.772128524605636, - "c4": 5.136373721864856, - "c5": 5.0834779263830105, - "c6": 4.956297887544732, - "c7": 5.186069098444568 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859925, + "c3": 6.241331484049928, + "c4": 4.99306518723995, + "c5": 3.7447988904299625, + "c6": 2.496532593619975, + "c7": 1.2482662968099876 }, "rgb": [222, 0, 59] }, @@ -357351,23 +357351,23 @@ "year": 1800, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 11.657093616876143, - "c2": 9.537728132907088, - "c3": 0.6909465585873598, - "c4": 0.7585797175855582, - "c5": 11.36964497820735, - "c6": -18.235859797553793, - "c7": -0.6012454658806519 + "points": { + "c1": -0.6472196641564913, + "c2": -12.17322089858915, + "c3": -4.564454924745384, + "c4": -6.739571290494101, + "c5": -28.929292503227014, + "c6": -20.15644385180321, + "c7": -10.992195523840678 }, - "vertexSeeds": { - "c1": 5.2766240434796785, - "c2": 5.269014596426933, - "c3": 5.5241064216314895, - "c4": 5.493645888715998, - "c5": 5.166666725579761, - "c6": 5.368532795812808, - "c7": 5.220887253522333 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664348, + "c3": 6.703652334720306, + "c4": 5.362921867776239, + "c5": 4.022191400832174, + "c6": 2.681460933888109, + "c7": 1.3407304669440656 }, "rgb": [58, 15, 49] }, @@ -357378,23 +357378,23 @@ "year": 1800, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -1.0799453668579595, - "c2": 18.65489930180871, - "c3": -2.0038017803428865, - "c4": -6.055560826163223, - "c5": 21.51645513187762, - "c6": -7.025736332552452, - "c7": -2.5934545559979654 + "points": { + "c1": -5.3820022696026655, + "c2": -13.146461191791346, + "c3": 28.79452515783163, + "c4": -23.935403365515185, + "c5": 14.531627414365488, + "c6": -29.16381036743506, + "c7": 13.735245823322963 }, - "vertexSeeds": { - "c1": 2.018275612245189, - "c2": 1.8596626606189637, - "c3": 1.9308674807467268, - "c4": 1.921425462863229, - "c5": 1.9873438161251333, - "c6": 1.9077585269898318, - "c7": 1.9954643389911364 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.427184466019417, + "c4": 1.9417475728155353, + "c5": 1.4563106796116492, + "c6": 0.9708737864077677, + "c7": 0.485436893203886 }, "rgb": [222, 0, 59] }, @@ -357405,23 +357405,23 @@ "year": 1801, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 15.926238012543863, - "c2": 29.909247480852166, - "c3": 21.19313956995247, - "c4": -14.299563144685656, - "c5": 3.399544432142193, - "c6": 9.990519673511649, - "c7": -24.125619567344188 + "points": { + "c1": 7.521920772787915, + "c2": -19.580030417099753, + "c3": 28.399523876302823, + "c4": -22.070620257000595, + "c5": 33.39659686256229, + "c6": -17.524995997009263, + "c7": -28.173894653330393 }, - "vertexSeeds": { - "c1": 7.555293157307978, - "c2": 7.437809545306064, - "c3": 7.5636761940830635, - "c4": 7.337379892061275, - "c5": 7.911284467489636, - "c6": 7.967362348825938, - "c7": 7.256849881302434 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571438, + "c3": 9.523809523809522, + "c4": 7.619047619047625, + "c5": 5.714285714285709, + "c6": 3.8095238095238124, + "c7": 1.9047619047618969 }, "rgb": [77, 76, 132] }, @@ -357432,23 +357432,23 @@ "year": 1801, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 31.234684361864822, - "c2": -42.32465030648725, - "c3": -8.076994419403086, - "c4": 21.942247785352137, - "c5": 29.41276721930049, - "c6": 17.415798226334132, - "c7": -39.00363901200161 + "points": { + "c1": 0.02891870628302229, + "c2": -25.93954474232886, + "c3": -31.041406329206453, + "c4": 36.84964048427953, + "c5": -36.42351078857273, + "c6": -42.5205678529233, + "c7": 25.169038876042052 }, - "vertexSeeds": { - "c1": 5.427340174242852, - "c2": 5.6206052160824616, - "c3": 5.446996790734632, - "c4": 5.761640227984359, - "c5": 5.718239393440413, - "c6": 5.6092377849332715, - "c7": 5.7559652683140445 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -357459,23 +357459,23 @@ "year": 1800, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 9.176321262789326, - "c2": -2.6612891789694686, - "c3": 17.533040494445782, - "c4": 8.918433592407599, - "c5": 6.681939951359713, - "c6": -22.360249997373007, - "c7": 17.46589435089241 + "points": { + "c1": -26.399977132531834, + "c2": 3.5000914156654694, + "c3": 27.07930818621288, + "c4": -20.379865006025952, + "c5": 15.09755675322464, + "c6": -1.7312576379082572, + "c7": 4.701866575630465 }, - "vertexSeeds": { - "c1": 7.439301039903684, - "c2": 7.724614179970767, - "c3": 8.002777378539397, - "c4": 7.458330367003166, - "c5": 7.847854026210755, - "c6": 7.533380930352705, - "c7": 7.379189051467286 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410078, + "c4": 7.6745261211280615, + "c5": 5.7558945908460455, + "c6": 3.8372630605640308, + "c7": 1.9186315302820154 }, "rgb": [222, 0, 59] }, @@ -357486,23 +357486,23 @@ "year": 1801, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -19.657356384522476, - "c2": -16.568127479872366, - "c3": -7.7599504676502455, - "c4": -35.108833182273514, - "c5": 2.8288208282383565, - "c6": -16.6711569067968, - "c7": -1.5931751924433613 + "points": { + "c1": 7.6348849455843535, + "c2": 15.30164710587384, + "c3": -28.825588723224605, + "c4": -25.86662740915071, + "c5": -19.650824811260556, + "c6": 36.868395477814424, + "c7": -23.996576704930465 }, - "vertexSeeds": { - "c1": 5.8256842578354595, - "c2": 5.763973763914358, - "c3": 5.666183542698728, - "c4": 5.743069614765626, - "c5": 5.822271761030784, - "c6": 5.868518090551212, - "c7": 5.7020736485974695 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.84882108183079, + "c3": 7.3740175681923255, + "c4": 5.89921405455386, + "c5": 4.424410540915395, + "c6": 2.94960702727693, + "c7": 1.474803513638465 }, "rgb": [238, 201, 159] }, @@ -357513,23 +357513,23 @@ "year": 1801, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 28.592426387551342, - "c2": 30.156076851023414, - "c3": 1.8358821086314379, - "c4": 7.948057127125644, - "c5": -29.684759847396442, - "c6": -7.729027449518789, - "c7": -0.29354314803237713 + "points": { + "c1": -5.7014122956782955, + "c2": 21.198942097700403, + "c3": 27.325204934030566, + "c4": 21.46433879205795, + "c5": -30.30103558023175, + "c6": 0.8805158165698828, + "c7": 1.115954171869177 }, - "vertexSeeds": { - "c1": 3.4872098383136074, - "c2": 3.5750227936127787, - "c3": 3.4871426015986278, - "c4": 3.444167175801469, - "c5": 3.366383966833785, - "c6": 3.582902623720266, - "c7": 3.347598781815755 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521502, + "c3": 4.322699953767914, + "c4": 3.4581599630143347, + "c5": 2.5936199722607465, + "c6": 1.7290799815071674, + "c7": 0.8645399907535882 }, "rgb": [58, 15, 49] }, @@ -357540,23 +357540,23 @@ "year": 1801, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 17.74375575609399, - "c2": -31.950245994191956, - "c3": -10.567361614834809, - "c4": 33.54043065358232, - "c5": 27.023257513117045, - "c6": 9.743128116194129, - "c7": 19.68963421182876 + "points": { + "c1": -18.93922560376759, + "c2": -29.10792102908759, + "c3": -15.06013098736792, + "c4": -35.017402432714384, + "c5": -38.258831787290816, + "c6": 12.126785584943114, + "c7": 21.751420456193657 }, - "vertexSeeds": { - "c1": 5.547228253125858, - "c2": 5.5197554307716175, - "c3": 5.336084390618748, - "c4": 5.273876765660879, - "c5": 5.355002963157617, - "c6": 5.17584206899041, - "c7": 5.180742496375286 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624126, + "c3": 6.680536292186787, + "c4": 5.3444290337494245, + "c5": 4.008321775312063, + "c6": 2.6722145168747238, + "c7": 1.3361072584373619 }, "rgb": [238, 201, 159] }, @@ -357567,23 +357567,23 @@ "year": 1801, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -26.626346997853855, - "c2": -27.174726186458553, - "c3": 5.427295684707644, - "c4": -6.375150131495246, - "c5": -26.256456410174845, - "c6": 7.787435609803829, - "c7": 2.3035971357711986 + "points": { + "c1": -10.224827096129655, + "c2": 15.255254408295002, + "c3": -18.757575754797756, + "c4": -23.925069229504437, + "c5": 14.159685608929045, + "c6": -16.674797212007743, + "c7": -32.45340562163426 }, - "vertexSeeds": { - "c1": 10.528350122951402, - "c2": 10.511527760707857, - "c3": 10.668624840730661, - "c4": 11.093846285783815, - "c5": 11.060465147991579, - "c6": 10.699945775398632, - "c7": 10.98453833321047 + "offsets": { + "c1": 18.7378640776699, + "c2": 16.061026352288504, + "c3": 13.384188626907067, + "c4": 10.70735090152567, + "c5": 8.030513176144233, + "c6": 5.353675450762835, + "c7": 2.676837725381437 }, "rgb": [77, 76, 132] }, @@ -357594,23 +357594,23 @@ "year": 1801, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -15.751676668771122, - "c2": -0.3483891877536607, - "c3": 37.25792648198926, - "c4": 25.221405794511078, - "c5": -0.09134861164682206, - "c6": -23.874578403661967, - "c7": 3.432713375522482 + "points": { + "c1": -21.895493166296085, + "c2": -9.912666772049526, + "c3": -30.701641569880195, + "c4": -28.20640913571188, + "c5": 28.294675992149052, + "c6": -12.632455821249419, + "c7": -37.28587127588058 }, - "vertexSeeds": { - "c1": 5.624325944094693, - "c2": 5.807305465797412, - "c3": 5.5216141390816915, - "c4": 5.793077435930989, - "c5": 5.32119555515153, - "c6": 5.281980232890799, - "c7": 5.364647531369639 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055483, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022186, + "c7": 1.386962552011093 }, "rgb": [58, 15, 49] }, @@ -357621,23 +357621,23 @@ "year": 1801, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -2.0488550156274385, - "c2": 34.204241790361095, - "c3": -19.396226846162573, - "c4": 1.930038647852328, - "c5": 33.12627237016979, - "c6": 14.22373589456808, - "c7": 24.046197091666535 + "points": { + "c1": -8.63817571734917, + "c2": 22.818067970682726, + "c3": -28.98041389868949, + "c4": 33.0500495954697, + "c5": 5.3868461232748, + "c6": -13.770796239569847, + "c7": 30.595342616020815 }, - "vertexSeeds": { - "c1": 5.593952516861273, - "c2": 5.952015155980474, - "c3": 6.012256438544416, - "c4": 5.804011362856402, - "c5": 5.629939427109191, - "c6": 5.81161158248486, - "c7": 5.659593437799303 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629674, + "c3": 7.258437355524737, + "c4": 5.806749884419783, + "c5": 4.355062413314846, + "c6": 2.9033749422098913, + "c7": 1.4516874711049546 }, "rgb": [86, 146, 138] }, @@ -357648,23 +357648,23 @@ "year": 1801, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -26.985314308170935, - "c2": -27.51068374713968, - "c3": 25.20066160616527, - "c4": -21.92753640332222, - "c5": 21.24307016473064, - "c6": -35.28540539601087, - "c7": -32.698238807152464 + "points": { + "c1": 4.901668160398437, + "c2": 6.636211550595391, + "c3": 4.054024042375303, + "c4": 23.753358714083326, + "c5": -23.960635096881283, + "c6": -8.962334148688921, + "c7": 37.882739917352964 }, - "vertexSeeds": { - "c1": 7.346770955517799, - "c2": 7.635215999103266, - "c3": 7.721582012680363, - "c4": 7.888038790835471, - "c5": 7.7140172319966585, - "c6": 7.662176629903744, - "c7": 7.335651429302738 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852984, + "c3": 9.685621821544157, + "c4": 7.748497457235329, + "c5": 5.811373092926501, + "c6": 3.874248728617655, + "c7": 1.9371243643088274 }, "rgb": [238, 201, 159] }, @@ -357675,23 +357675,23 @@ "year": 1801, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -35.73520267225814, - "c2": 1.607944605402345, - "c3": -29.387392829290715, - "c4": -17.38994080413329, - "c5": 13.74330327691974, - "c6": -25.480245411227784, - "c7": 17.547469704395006 + "points": { + "c1": -5.62873894969043, + "c2": -8.165892008464748, + "c3": 26.915297260681022, + "c4": -21.931860059652983, + "c5": 11.868922435402993, + "c6": 28.875579749094534, + "c7": 22.13296259389353 }, - "vertexSeeds": { - "c1": 3.8591264310385984, - "c2": 3.769286680411356, - "c3": 3.9612139061001703, - "c4": 4.034622676413055, - "c5": 3.962576577821722, - "c6": 3.892820673162318, - "c7": 3.891455683486606 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527041, + "c3": 4.900601017105873, + "c4": 3.9204808136846943, + "c5": 2.940360610263526, + "c6": 1.9602404068423471, + "c7": 0.9801202034211681 }, "rgb": [238, 201, 159] }, @@ -357702,23 +357702,23 @@ "year": 1800, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 8.179794896273574, - "c2": -23.119048289897478, - "c3": -10.7912950780478, - "c4": 20.698058206786786, - "c5": 6.680798084204323, - "c6": -12.616953197609437, - "c7": 25.697845968118404 + "points": { + "c1": 19.31622822778503, + "c2": -15.966447839089565, + "c3": 12.95255807028619, + "c4": 4.112886284123189, + "c5": 4.13993098799256, + "c6": -2.5163980193263065, + "c7": -3.8788919634089716 }, - "vertexSeeds": { - "c1": 3.9382704565507898, - "c2": 4.21735973668814, - "c3": 3.980354849073353, - "c4": 4.012330328876918, - "c5": 3.9632111563148147, - "c6": 4.0026345188357455, - "c7": 4.131979286018065 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808603, + "c3": 5.062413314840494, + "c4": 4.049930651872398, + "c5": 3.0374479889043013, + "c6": 2.024965325936205, + "c7": 1.0124826629680963 }, "rgb": [222, 0, 59] }, @@ -357729,23 +357729,23 @@ "year": 1800, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 17.439778484399504, - "c2": -22.14295592173098, - "c3": 5.819834895327457, - "c4": -9.235373455864002, - "c5": 19.575309290171845, - "c6": -9.676902636717077, - "c7": -5.712569360674742 + "points": { + "c1": -19.187175596806156, + "c2": 22.11378825506629, + "c3": -16.10909114868632, + "c4": 10.762727471997316, + "c5": -6.703251642787354, + "c6": 3.6636521509797326, + "c7": 17.30452105023118 }, - "vertexSeeds": { - "c1": 5.132288247929635, - "c2": 5.269378714085326, - "c3": 5.455318465390149, - "c4": 5.06955166395051, - "c5": 5.361686076738545, - "c6": 5.4844981076665125, - "c7": 5.435923734776507 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463239, + "c3": 6.588072122052714, + "c4": 5.270457697642167, + "c5": 3.9528432732316197, + "c6": 2.6352288488210727, + "c7": 1.3176144244105472 }, "rgb": [77, 76, 132] }, @@ -357756,23 +357756,23 @@ "year": 1801, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 14.029694124274691, - "c2": -14.894492773774408, - "c3": 11.674635785769887, - "c4": -2.5760390745743145, - "c5": 10.429145684411658, - "c6": -29.42286900984115, - "c7": 9.398910618189056 + "points": { + "c1": -2.173106995144906, + "c2": -17.93114486721412, + "c3": 14.204929070019801, + "c4": -21.643125619056384, + "c5": 22.928963141222752, + "c6": -26.44193378549276, + "c7": -30.406700461522036 }, - "vertexSeeds": { - "c1": 7.159291863692477, - "c2": 7.118534403752285, - "c3": 7.04676804597868, - "c4": 6.77792749983813, - "c5": 6.757223516578678, - "c6": 6.6437140059561335, - "c7": 7.109385525406914 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284323, + "c3": 8.784096162736947, + "c4": 7.027276930189554, + "c5": 5.270457697642161, + "c6": 3.5136384650947683, + "c7": 1.7568192325473933 }, "rgb": [238, 201, 159] }, @@ -357783,23 +357783,23 @@ "year": 1800, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -11.349470482425644, - "c2": 4.916243382443941, - "c3": 23.888394154203134, - "c4": -11.30124463344667, - "c5": 16.436461898210766, - "c6": 13.5203682079636, - "c7": -13.528707401225548 + "points": { + "c1": 3.072670260691428, + "c2": -14.403175742807669, + "c3": 19.12628603903312, + "c4": -9.47910945170549, + "c5": -7.5891041665630965, + "c6": 12.175510423669117, + "c7": 7.754924613327027 }, - "vertexSeeds": { - "c1": 5.875450496880767, - "c2": 5.824334511214477, - "c3": 5.996000039834319, - "c4": 5.835782754846708, - "c5": 6.11156016253122, - "c6": 5.992786569298283, - "c7": 6.031694155540264 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710135, + "c3": 7.304669440591767, + "c4": 5.843735552473423, + "c5": 4.382801664355057, + "c6": 2.9218677762367116, + "c7": 1.4609338881183667 }, "rgb": [238, 201, 159] }, @@ -357810,23 +357810,23 @@ "year": 1801, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -9.19773287901684, - "c2": 0.7176369999130969, - "c3": -16.90377710435892, - "c4": -2.6278430981950933, - "c5": -12.56940844835211, - "c6": -9.777703601918766, - "c7": 25.465371776958172 + "points": { + "c1": 36.60579378773695, + "c2": 11.574836106857482, + "c3": 38.50896537624221, + "c4": -26.677865199957814, + "c5": 27.45997765510068, + "c6": 9.027063212038819, + "c7": -15.304217684413747 }, - "vertexSeeds": { - "c1": 3.922554001543129, - "c2": 3.990611231998397, - "c3": 3.730187625490135, - "c4": 3.832580879828072, - "c5": 4.0421591232397915, - "c6": 3.7099384398175124, - "c7": 3.8130337319100063 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486823, + "c3": 4.8774849745723525, + "c4": 3.901987979657882, + "c5": 2.9264909847434115, + "c6": 1.950993989828941, + "c7": 0.9754969949144705 }, "rgb": [86, 146, 138] }, @@ -357837,23 +357837,23 @@ "year": 1800, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -17.664851794903377, - "c2": -16.239927177451854, - "c3": -15.993127309502082, - "c4": 21.775713481104937, - "c5": 17.703816515928743, - "c6": -5.221247732227361, - "c7": -14.09525870197927 + "points": { + "c1": 14.106118008339223, + "c2": -17.095573007137897, + "c3": 25.050229619024194, + "c4": 16.173038616978992, + "c5": 19.361830736542068, + "c6": 2.5515025717419064, + "c7": -24.533246922717044 }, - "vertexSeeds": { - "c1": 7.239967072155696, - "c2": 6.735678527497712, - "c3": 7.204920846932115, - "c4": 7.324379236805181, - "c5": 7.2593511202460075, - "c6": 6.7358447914434585, - "c7": 6.758590510193163 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.48543689320389, + "c3": 8.737864077669894, + "c4": 6.990291262135919, + "c5": 5.242718446601945, + "c6": 3.4951456310679485, + "c7": 1.7475728155339743 }, "rgb": [222, 0, 59] }, @@ -357864,23 +357864,23 @@ "year": 1801, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 15.257859790618383, - "c2": 15.369168306842063, - "c3": 11.4218349734291, - "c4": 18.952143991182645, - "c5": 2.3341618488211537, - "c6": 22.412279376546813, - "c7": -4.63830228185968 + "points": { + "c1": -28.84449126556786, + "c2": 13.019089251448719, + "c3": 31.39070395589316, + "c4": 17.81165112440022, + "c5": -19.122092757671876, + "c6": -28.107582740718705, + "c7": -20.22260045921771 }, - "vertexSeeds": { - "c1": 4.626138616176573, - "c2": 4.534975916519757, - "c3": 4.41883089084796, - "c4": 4.426739849973567, - "c5": 4.601436323521716, - "c6": 4.548346259897807, - "c7": 4.474964616078024 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975038, + "c3": 5.732778548312525, + "c4": 4.586222838650023, + "c5": 3.439667128987519, + "c6": 2.2931114193250157, + "c7": 1.1465557096625034 }, "rgb": [238, 201, 159] }, @@ -357891,23 +357891,23 @@ "year": 1801, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": 25.267569932832842, - "c2": -50.076669740309164, - "c3": 27.359635367326604, - "c4": 0.5903939557242381, - "c5": -37.46558330839018, - "c6": 19.424600135324525, - "c7": 14.394794777658959 + "points": { + "c1": -43.26757896821099, + "c2": -19.53565405541051, + "c3": -36.60710355777326, + "c4": -20.23651539588213, + "c5": -29.710741263007222, + "c6": -44.60415672770569, + "c7": 25.46379145265678 }, - "vertexSeeds": { - "c1": 5.8145772171658425, - "c2": 5.7133700721302345, - "c3": 5.447390773223807, - "c4": 5.896405203440592, - "c5": 5.792131418915073, - "c6": 5.448646987033777, - "c7": 5.895421288243758 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -357918,23 +357918,23 @@ "year": 1801, "resistanceReported": false, "duration": 38793600, - "curveSeeds": { - "c1": -2.302448410740176, - "c2": -5.635938252674627, - "c3": -40.1870279243879, - "c4": -42.19860612698429, - "c5": -21.63956429442307, - "c6": 4.57155432358185, - "c7": -33.5357972080281 + "points": { + "c1": -52.85942837355323, + "c2": -35.63529929458733, + "c3": 50.44871607886603, + "c4": -4.988130619865842, + "c5": -41.76687599682619, + "c6": 34.357379534013816, + "c7": -41.793961269649984 }, - "vertexSeeds": { - "c1": 5.970799688887756, - "c2": 5.487985236773096, - "c3": 5.84068115793911, - "c4": 5.590465796855508, - "c5": 5.614560824830057, - "c6": 5.744287310220138, - "c7": 5.880645746900035 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -357945,23 +357945,23 @@ "year": 1801, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -36.42790617957294, - "c2": -33.108052064353, - "c3": 3.2028105589242983, - "c4": -24.264933227552092, - "c5": 11.02504557285232, - "c6": 29.909296497306798, - "c7": 16.797901182814982 + "points": { + "c1": -21.926322152314615, + "c2": 9.816535226898253, + "c3": 11.236447943303268, + "c4": 24.1947712269598, + "c5": 33.67302267136337, + "c6": -32.31849134252937, + "c7": -16.909196582664208 }, - "vertexSeeds": { - "c1": 3.3347939798533255, - "c2": 3.2901509800997943, - "c3": 3.3723085235749006, - "c4": 3.3666399598965184, - "c5": 3.5030817618125116, - "c6": 3.5042722525378407, - "c7": 3.494414728083629 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320388, + "c3": 4.207119741100324, + "c4": 3.3656957928802584, + "c5": 2.524271844660194, + "c6": 1.6828478964401292, + "c7": 0.8414239482200646 }, "rgb": [58, 15, 49] }, @@ -357972,23 +357972,23 @@ "year": 1801, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 17.724374577730906, - "c2": 2.8827050498827376, - "c3": 12.530226726850529, - "c4": 22.910781826052506, - "c5": -24.357137898773786, - "c6": -15.448438378128696, - "c7": 21.557444770788962 + "points": { + "c1": 19.626369058788498, + "c2": 23.784715860250607, + "c3": -6.9874596691601525, + "c4": 29.84444328512903, + "c5": 15.501144451991074, + "c6": -5.007058002963802, + "c7": 19.65583609836363 }, - "vertexSeeds": { - "c1": 2.775690989467612, - "c2": 2.6671037640110136, - "c3": 2.726154033187051, - "c4": 2.8395939134295327, - "c5": 2.5964272568212485, - "c6": 2.6064310908045023, - "c7": 2.8176009888811513 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952843, + "c3": 3.4211742949607027, + "c4": 2.736939435968562, + "c5": 2.0527045769764216, + "c6": 1.368469717984281, + "c7": 0.6842348589921405 }, "rgb": [77, 76, 132] }, @@ -357999,23 +357999,23 @@ "year": 1801, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -20.443986764672857, - "c2": -2.4881651332502877, - "c3": 20.657156688910362, - "c4": 2.8450287744765888, - "c5": 6.4399221217439475, - "c6": -8.72105281787777, - "c7": -16.868764359776538 + "points": { + "c1": -1.2293556791675364, + "c2": -21.688090903030055, + "c3": 12.502452051796922, + "c4": -11.444828708591725, + "c5": -21.078083727683165, + "c6": -27.550199603781927, + "c7": 32.4279679103724 }, - "vertexSeeds": { - "c1": 7.8040516580206045, - "c2": 8.144641999444826, - "c3": 7.70153397967039, - "c4": 7.864285176733029, - "c5": 7.840232804949456, - "c6": 7.602693611708174, - "c7": 7.707594636185219 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.81692094313454, + "c3": 9.847434119278772, + "c4": 7.877947295423021, + "c5": 5.90846047156727, + "c6": 3.9389736477115016, + "c7": 1.9694868238557508 }, "rgb": [86, 146, 138] }, @@ -358026,23 +358026,23 @@ "year": 1801, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 0.4075196073327376, - "c2": -3.6595639894326126, - "c3": -17.292769928348605, - "c4": 0.4089782381235807, - "c5": 17.71665928818962, - "c6": 19.37185809599031, - "c7": -11.324360409670419 + "points": { + "c1": 25.000833513092264, + "c2": 1.3863267120909164, + "c3": -12.960845190899574, + "c4": -5.578787865528156, + "c5": 2.5424763590771526, + "c6": 10.069316255417764, + "c7": -22.4964257944136 }, - "vertexSeeds": { - "c1": 6.041550020962999, - "c2": 5.950400374575456, - "c3": 6.1340411059416695, - "c4": 6.006656274214484, - "c5": 6.0333004266180845, - "c6": 6.195525965882491, - "c7": 6.392319565265236 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795649, + "c4": 6.2320850670365155, + "c5": 4.674063800277399, + "c6": 3.1160425335182667, + "c7": 1.5580212667591333 }, "rgb": [58, 15, 49] }, @@ -358053,23 +358053,23 @@ "year": 1801, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -3.8528731602986355, - "c2": 31.177778818755527, - "c3": 7.922405582771958, - "c4": 24.641627458260942, - "c5": 37.8839253325401, - "c6": 12.138315099252019, - "c7": 39.70440217513088 + "points": { + "c1": 27.89131589840173, + "c2": 33.51053491555544, + "c3": -6.668743829353652, + "c4": 7.924790536563961, + "c5": 42.40633020612418, + "c6": 3.0230873030089356, + "c7": 20.71350107141847 }, - "vertexSeeds": { - "c1": 6.020737451453821, - "c2": 5.958797625149567, - "c3": 5.999214880032944, - "c4": 6.311353746260801, - "c5": 5.858282988508562, - "c6": 6.1776356335581815, - "c7": 5.879343372446835 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112347, + "c3": 7.535829865926957, + "c4": 6.02866389274157, + "c5": 4.521497919556182, + "c6": 3.014331946370776, + "c7": 1.507165973185388 }, "rgb": [238, 201, 159] }, @@ -358080,23 +358080,23 @@ "year": 1801, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 7.717523328276403, - "c2": -16.578675997959436, - "c3": -4.734204616613621, - "c4": 9.481748610966203, - "c5": -6.293948155221976, - "c6": -6.835171560287495, - "c7": -23.28428122139819 + "points": { + "c1": 27.255725166339584, + "c2": 26.128716895440665, + "c3": 22.117879947477217, + "c4": -15.608351191540693, + "c5": 14.323907937218987, + "c6": 1.4857139950994096, + "c7": -15.800305953755634 }, - "vertexSeeds": { - "c1": 5.42444598246544, - "c2": 5.5837789349074285, - "c3": 5.763095631535996, - "c4": 5.709790552327605, - "c5": 5.572589600627788, - "c6": 5.580359732943578, - "c7": 5.480792202563139 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [77, 76, 132] }, @@ -358107,23 +358107,23 @@ "year": 1801, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -9.184035607682087, - "c2": 7.986335052787151, - "c3": 19.06234249060864, - "c4": 10.089816630019367, - "c5": -5.432834882973854, - "c6": 10.889056566011472, - "c7": 12.046352176997988 + "points": { + "c1": 24.21333469698291, + "c2": -26.292572419364628, + "c3": 16.17423190651468, + "c4": 18.214287513365225, + "c5": -28.820090599710184, + "c6": 2.7863291639033996, + "c7": -17.508901209646922 }, - "vertexSeeds": { - "c1": 5.822570198085239, - "c2": 5.633729893912077, - "c3": 5.927478907222211, - "c4": 5.530724513746478, - "c5": 5.815269058371219, - "c6": 5.692389707253063, - "c7": 5.540537246454276 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.79334257975034, + "c3": 7.327785483125291, + "c4": 5.8622283865002265, + "c5": 4.396671289875179, + "c6": 2.9311141932501132, + "c7": 1.4655570966250475 }, "rgb": [222, 0, 59] }, @@ -358134,23 +358134,23 @@ "year": 1801, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 1.0655674209218091, - "c2": -35.645473343933844, - "c3": -36.44995971800276, - "c4": 17.502836824289886, - "c5": -14.267142254680891, - "c6": 32.275536253689886, - "c7": 34.22293314597976 + "points": { + "c1": -4.534959332280124, + "c2": 24.53784393523312, + "c3": -1.9455526102134826, + "c4": 6.204775448322245, + "c5": -21.95355530857238, + "c6": 23.102372842504145, + "c7": -33.12892900006079 }, - "vertexSeeds": { - "c1": 4.321911086087541, - "c2": 4.655071630882012, - "c3": 4.338375492745917, - "c4": 5.150408863963337, - "c5": 4.404297860427971, - "c6": 5.029031787411729, - "c7": 4.901869976194428 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859913, + "c3": 6.241331484049931, + "c4": 4.993065187239941, + "c5": 3.7447988904299563, + "c6": 2.4965325936199707, + "c7": 1.2482662968099854 }, "rgb": [86, 146, 138] }, @@ -358161,23 +358161,23 @@ "year": 1801, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 14.425203787146653, - "c2": 4.150154523711183, - "c3": -6.096325199936405, - "c4": 3.448741022452108, - "c5": 16.46716851232613, - "c6": -1.2522549675971177, - "c7": -14.188038174473894 + "points": { + "c1": 15.075336024322194, + "c2": -16.22099533577152, + "c3": 19.310406279245928, + "c4": 1.683035617114495, + "c5": -23.388670852156945, + "c6": -8.822388232730486, + "c7": 27.46996665313993 }, - "vertexSeeds": { - "c1": 6.214956114215013, - "c2": 5.93049691318306, - "c3": 6.120122018651651, - "c4": 6.001209364113889, - "c5": 6.293186840123716, - "c6": 6.468516314895302, - "c7": 6.315888195008803 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595012, + "c3": 7.813222376329178, + "c4": 6.250577901063346, + "c5": 4.687933425797515, + "c6": 3.1252889505316643, + "c7": 1.5626444752658322 }, "rgb": [77, 76, 132] }, @@ -358188,23 +358188,23 @@ "year": 1800, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 10.564533636879805, - "c2": -17.617981047562353, - "c3": -19.31437796974358, - "c4": -14.782510156285806, - "c5": 23.669067330660578, - "c6": -13.61199042001535, - "c7": -8.745554586919354 + "points": { + "c1": 25.270479153508152, + "c2": 15.249819113147712, + "c3": 4.247573335683594, + "c4": 1.1596805385936229, + "c5": -16.118621069870095, + "c6": 24.260394308605104, + "c7": 19.551264886254632 }, - "vertexSeeds": { - "c1": 4.037178695690051, - "c2": 3.915425235047791, - "c3": 3.920958296620456, - "c4": 4.017305725183858, - "c5": 4.150428131733063, - "c6": 4.062714411322063, - "c7": 3.8821438409854383 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687937, + "c3": 4.99306518723994, + "c4": 3.9944521497919543, + "c5": 2.9958391123439685, + "c6": 1.997226074895971, + "c7": 0.9986130374479855 }, "rgb": [86, 146, 138] }, @@ -358215,23 +358215,23 @@ "year": 1801, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 24.55365392969245, - "c2": 22.05373781042789, - "c3": -22.52161033585402, - "c4": -18.838383232921174, - "c5": 3.9128841046266807, - "c6": 22.173722320131652, - "c7": -8.728648975974686 + "points": { + "c1": -6.33549270235244, + "c2": 17.481988126227265, + "c3": 17.01337593852189, + "c4": -21.00841199695951, + "c5": -26.347173876468993, + "c6": 15.98715028026826, + "c7": -6.109549502339181 }, - "vertexSeeds": { - "c1": 5.614318357878683, - "c2": 5.473447686048811, - "c3": 5.669835429845907, - "c4": 5.633227325973751, - "c5": 5.617421018136321, - "c6": 5.714449581192387, - "c7": 5.744391332085001 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -358242,23 +358242,23 @@ "year": 1801, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 17.208115369964695, - "c2": -31.19476593174668, - "c3": -2.311828413612453, - "c4": -21.03826681733352, - "c5": 13.75629912238626, - "c6": -16.437290964141766, - "c7": 3.7348292426627694 + "points": { + "c1": -6.604318899689268, + "c2": 28.7784581593394, + "c3": 16.379142543306692, + "c4": 17.492378715405863, + "c5": 9.234937570735482, + "c6": 23.50406044155742, + "c7": 33.03284422208093 }, - "vertexSeeds": { - "c1": 7.749154535471987, - "c2": 8.253631110212998, - "c3": 8.151610028677078, - "c4": 7.800645721059389, - "c5": 8.090053874440766, - "c6": 7.74949777866551, - "c7": 8.280047098877455 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.0388349514563, + "c3": 10.032362459546922, + "c4": 8.025889967637546, + "c5": 6.01941747572815, + "c6": 4.0129449838187545, + "c7": 2.0064724919093773 }, "rgb": [238, 201, 159] }, @@ -358269,23 +358269,23 @@ "year": 1801, "resistanceReported": false, "duration": 37152000, - "curveSeeds": { - "c1": -6.3025780041877795, - "c2": 38.06354039897162, - "c3": -30.14144361643484, - "c4": 3.1723466303618935, - "c5": -25.195622778371874, - "c6": -22.5788809039198, - "c7": 20.42883324250628 + "points": { + "c1": 21.185699476192163, + "c2": 35.74801436482304, + "c3": 35.61752514428478, + "c4": 33.176913746874, + "c5": 0.8278858178567958, + "c6": 46.78765830551121, + "c7": -1.7921574342282796 }, - "vertexSeeds": { - "c1": 5.566941662683452, - "c2": 5.405886594539963, - "c3": 5.437490436282774, - "c4": 5.852951752095459, - "c5": 5.523336590512699, - "c6": 5.426538190438019, - "c7": 5.493954775968616 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -358296,23 +358296,23 @@ "year": 1801, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -15.402274375736614, - "c2": -13.314631607485623, - "c3": -5.54765482848282, - "c4": 10.413836093039563, - "c5": 24.531936231775028, - "c6": 12.404317913528075, - "c7": 2.848162011881861 + "points": { + "c1": 9.140351137508425, + "c2": 2.9647058240775124, + "c3": -28.802878807103617, + "c4": -12.361422360928184, + "c5": 24.432922352237398, + "c6": 9.15514663476516, + "c7": 11.897584726366631 }, - "vertexSeeds": { - "c1": 4.774533476879325, - "c2": 4.5718591767395464, - "c3": 4.642043527037781, - "c4": 4.454655360294069, - "c5": 4.440253440434267, - "c6": 4.526232525231373, - "c7": 4.328879601947645 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [238, 201, 159] }, @@ -358323,23 +358323,23 @@ "year": 1801, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -0.9525912794955822, - "c2": -5.841029647432471, - "c3": -26.372195121671382, - "c4": -12.813978012383341, - "c5": 18.48457173970849, - "c6": -15.570196055410436, - "c7": 11.88528156261209 + "points": { + "c1": 25.267272738169954, + "c2": -15.656380748510747, + "c3": -13.11481940142843, + "c4": 18.351734114349735, + "c5": 16.073098367000622, + "c6": 0.4792145471986764, + "c7": -27.137149328054374 }, - "vertexSeeds": { - "c1": 7.5953636006270395, - "c2": 7.871407671407248, - "c3": 7.76423016418789, - "c4": 7.655750736992698, - "c5": 7.833104616220262, - "c6": 7.901920247114, - "c7": 8.141109756935267 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.01109570041608, + "c3": 10.00924641701341, + "c4": 8.00739713361072, + "c5": 6.005547850208049, + "c6": 4.00369856680536, + "c7": 2.001849283402689 }, "rgb": [238, 201, 159] }, @@ -358350,23 +358350,23 @@ "year": 1801, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -17.99358437121863, - "c2": 16.570670604465086, - "c3": 23.398788766508304, - "c4": -27.273759474868676, - "c5": -30.480551642861073, - "c6": 15.722416670622437, - "c7": 18.459265853059136 + "points": { + "c1": 22.902724295417052, + "c2": -13.971118998826537, + "c3": -7.068549688545392, + "c4": -8.418918211867165, + "c5": 7.075849754131674, + "c6": 13.073313843053356, + "c7": -32.81167785220763 }, - "vertexSeeds": { - "c1": 7.0360602456398, - "c2": 6.656970814847244, - "c3": 6.9506331851794805, - "c4": 6.521659267936828, - "c5": 6.636934886125447, - "c6": 6.597230693168983, - "c7": 6.480696052011297 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629681007, + "c3": 8.437355524734162, + "c4": 6.749884419787337, + "c5": 5.062413314840494, + "c6": 3.3749422098936686, + "c7": 1.6874711049468254 }, "rgb": [58, 15, 49] }, @@ -358377,23 +358377,23 @@ "year": 1801, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 37.54575444035793, - "c2": -2.0219626373553297, - "c3": -27.254967170999066, - "c4": 24.072939407935884, - "c5": 17.091776450276164, - "c6": 33.9272360160032, - "c7": -38.6280270425258 + "points": { + "c1": 16.5231236521819, + "c2": 41.28444677241256, + "c3": -24.59694145573824, + "c4": 31.92222520536648, + "c5": 19.90655693396115, + "c6": 18.698951532237658, + "c7": -8.640588919745028 }, - "vertexSeeds": { - "c1": 3.862519487332198, - "c2": 3.939524877043302, - "c3": 3.840387268285865, - "c4": 3.9325239797912546, - "c5": 3.947028171660934, - "c6": 4.207461390155372, - "c7": 4.174945936087077 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768374, + "c3": 5.039297272306984, + "c4": 4.031437817845585, + "c5": 3.023578363384187, + "c6": 2.0157189089227976, + "c7": 1.0078594544613988 }, "rgb": [58, 15, 49] }, @@ -358404,23 +358404,23 @@ "year": 1801, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 11.012043441197473, - "c2": -17.62255351275777, - "c3": 27.590492839755722, - "c4": 9.049136609869787, - "c5": 29.43774890809551, - "c6": -27.056114744211033, - "c7": 14.09085750119154 + "points": { + "c1": 22.301924741149918, + "c2": -22.143060159280516, + "c3": -16.993972925258184, + "c4": -7.586240140056944, + "c5": 15.939716128695466, + "c6": 28.72125483744218, + "c7": 20.77588994831688 }, - "vertexSeeds": { - "c1": 12.303134499085434, - "c2": 12.322048749621995, - "c3": 12.315280267467859, - "c4": 12.323504400326426, - "c5": 12.355425040259746, - "c6": 12.327867330151909, - "c7": 12.340061127196 + "offsets": { + "c1": 20.614886731391586, + "c2": 17.66990291262125, + "c3": 14.72491909385091, + "c4": 11.779935275080572, + "c5": 8.834951456311014, + "c6": 5.889967637540676, + "c7": 2.944983818770338 }, "rgb": [86, 146, 138] }, @@ -358431,23 +358431,23 @@ "year": 1801, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -18.80698636802224, - "c2": 19.68477167680952, - "c3": -12.865968089685992, - "c4": 31.533516211873817, - "c5": -2.3618056760601505, - "c6": 26.428577348491665, - "c7": 25.520191845670183 + "points": { + "c1": -34.86073881056322, + "c2": 22.26103563008646, + "c3": 37.561247686414035, + "c4": 8.472361263805652, + "c5": 0.03237786591244429, + "c6": 3.331049435611689, + "c7": 1.2622487416807218 }, - "vertexSeeds": { - "c1": 5.7714889256041, - "c2": 5.479593373762502, - "c3": 5.691252163471246, - "c4": 5.766426500994323, - "c5": 5.756600096258155, - "c6": 5.514059045467119, - "c7": 5.4624377333358485 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -358458,23 +358458,23 @@ "year": 1800, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 12.394889874091348, - "c2": -38.71051739321096, - "c3": -21.07171113762207, - "c4": -7.290806654543957, - "c5": 30.79584215654355, - "c6": 10.747098707010657, - "c7": 18.15722403693195 + "points": { + "c1": -42.08507620245459, + "c2": 18.555541039799138, + "c3": -14.379060936647459, + "c4": 14.032906400920915, + "c5": 7.0337595904272945, + "c6": -27.063486290283343, + "c7": -30.456015922984577 }, - "vertexSeeds": { - "c1": 6.665535396130728, - "c2": 7.13532978224267, - "c3": 6.937642476527626, - "c4": 6.999113296832795, - "c5": 6.765273200704834, - "c6": 7.11802151653641, - "c7": 6.778350624917488 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.23578363384188, + "c3": 8.529819694868248, + "c4": 6.823855755894594, + "c5": 5.11789181692094, + "c6": 3.411927877947286, + "c7": 1.7059639389736538 }, "rgb": [86, 146, 138] }, @@ -358485,23 +358485,23 @@ "year": 1801, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -22.878210062147815, - "c2": -21.700673554554655, - "c3": 23.237450529281084, - "c4": 0.9680662638456283, - "c5": -26.560018498825286, - "c6": 26.317658859132095, - "c7": -17.4832617547897 + "points": { + "c1": -23.285494549830883, + "c2": 4.39393054319946, + "c3": 13.228770945032757, + "c4": -17.880479752311366, + "c5": -2.2013957577665195, + "c6": 5.186334664832252, + "c7": -27.979424406723634 }, - "vertexSeeds": { - "c1": 4.378302593475561, - "c2": 4.63311023165579, - "c3": 4.369025274654026, - "c4": 4.547694405637196, - "c5": 4.683901309060073, - "c6": 4.389126714621326, - "c7": 4.593446760361876 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [238, 201, 159] }, @@ -358512,23 +358512,23 @@ "year": 1801, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -34.43668042997835, - "c2": -31.45879088396908, - "c3": 15.551393064471874, - "c4": -9.801679394585797, - "c5": -31.35884663410905, - "c6": -11.795245092181073, - "c7": 6.601674807157991 + "points": { + "c1": -27.229810533884113, + "c2": -10.582470479420397, + "c3": -15.447114252688099, + "c4": -11.810418255001412, + "c5": 28.056264211930106, + "c6": 13.159581845993173, + "c7": -16.932173069527597 }, - "vertexSeeds": { - "c1": 2.3399391038915542, - "c2": 2.1026185964624333, - "c3": 2.0286518951594394, - "c4": 2.3068821965399713, - "c5": 2.1055722658837923, - "c6": 2.133793388669358, - "c7": 2.3414290065527514 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070725, + "c3": 2.8201571890892296, + "c4": 2.256125751271383, + "c5": 1.6920943134535362, + "c6": 1.1280628756356899, + "c7": 0.5640314378178465 }, "rgb": [77, 76, 132] }, @@ -358539,23 +358539,23 @@ "year": 1801, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 16.637028449638095, - "c2": -16.265337345411577, - "c3": -25.84584088093484, - "c4": 29.821581097169506, - "c5": -11.372240019160476, - "c6": -24.709274297384674, - "c7": 11.715098083495292 + "points": { + "c1": 24.80515760521972, + "c2": 9.4512506757942, + "c3": -27.42930051002552, + "c4": -2.3329713195542396, + "c5": -9.045138348680585, + "c6": -4.767220432771747, + "c7": -0.20616717451687094 }, - "vertexSeeds": { - "c1": 4.98152283887448, - "c2": 4.649870494286166, - "c3": 4.6743828329207195, - "c4": 4.780004190987331, - "c5": 4.923347347046453, - "c6": 4.5557788164067095, - "c7": 4.5086951193711915 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377256, + "c3": 5.963938973647716, + "c4": 4.771151178918168, + "c5": 3.578363384188628, + "c6": 2.3855755894590884, + "c7": 1.1927877947295487 }, "rgb": [77, 76, 132] }, @@ -358566,23 +358566,23 @@ "year": 1801, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 5.093355138701305, - "c2": 9.619783340225801, - "c3": -12.079449826029013, - "c4": -24.86958881814093, - "c5": 12.153142470487857, - "c6": 17.388968225998298, - "c7": -1.387572737583099 + "points": { + "c1": -12.82625601964375, + "c2": -27.479416777131863, + "c3": -6.820003506746463, + "c4": 14.355588989636658, + "c5": -6.468269331873589, + "c6": 7.972022180220371, + "c7": 19.452868737911714 }, - "vertexSeeds": { - "c1": 4.572679556240855, - "c2": 4.366326209665649, - "c3": 4.461493219253841, - "c4": 4.6420844426532755, - "c5": 4.56514682377591, - "c6": 4.652140224052773, - "c7": 4.300191306307735 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733707, + "c3": 5.594082293111417, + "c4": 4.475265834489138, + "c5": 3.3564493758668488, + "c6": 2.237632917244569, + "c7": 1.11881645862228 }, "rgb": [58, 15, 49] }, @@ -358593,23 +358593,23 @@ "year": 1801, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": -12.735524444597166, - "c2": 17.34945895780973, - "c3": 13.238647818986912, - "c4": 6.267945087898575, - "c5": -0.23088135719838832, - "c6": -4.524448195434939, - "c7": -11.857699141434546 + "points": { + "c1": 3.6549669581531496, + "c2": 20.150706494098806, + "c3": -12.150918119789115, + "c4": -12.436766402396803, + "c5": -17.59507710312907, + "c6": -18.92171242884601, + "c7": 11.208633162938227 }, - "vertexSeeds": { - "c1": 4.9218829180117325, - "c2": 4.753882843697184, - "c3": 4.754219111530258, - "c4": 4.916224729782421, - "c5": 4.806748202018811, - "c6": 4.62549202438132, - "c7": 4.733895886811311 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699035, + "c3": 6.148867313915851, + "c4": 4.9190938511326845, + "c5": 3.6893203883495174, + "c6": 2.4595469255663422, + "c7": 1.2297734627831756 }, "rgb": [238, 201, 159] }, @@ -358620,23 +358620,23 @@ "year": 1801, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -12.282128510157442, - "c2": 30.686143802536805, - "c3": 15.082169971493173, - "c4": -19.783609346120453, - "c5": -12.944851471104148, - "c6": 21.22371838412773, - "c7": 11.114642994184713 + "points": { + "c1": 0.45195236701216857, + "c2": -27.43014236339109, + "c3": -4.423047730984571, + "c4": 24.011449726002496, + "c5": 35.1725400971297, + "c6": 17.340308962872854, + "c7": -26.69574423595493 }, - "vertexSeeds": { - "c1": 3.1136128921928448, - "c2": 3.094545385552761, - "c3": 3.4862498481115956, - "c4": 3.408600482273352, - "c5": 3.292339509862895, - "c6": 3.098872484539128, - "c7": 3.4553148225191497 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [86, 146, 138] }, @@ -358647,23 +358647,23 @@ "year": 1801, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 9.481788986356541, - "c2": 12.597688169891349, - "c3": -12.06376269169903, - "c4": -24.26401992381431, - "c5": -29.578165874992557, - "c6": 23.80608521075996, - "c7": 7.389695285746697 + "points": { + "c1": 28.17681786329637, + "c2": -13.068991680602497, + "c3": 26.48291077458584, + "c4": 37.188365348820106, + "c5": -11.206367293687961, + "c6": 4.041810288911847, + "c7": -37.92345130971615 }, - "vertexSeeds": { - "c1": 5.664833376022342, - "c2": 5.581749777133945, - "c3": 5.779031592046701, - "c4": 5.516146856912789, - "c5": 5.763778694498153, - "c6": 5.445177897289724, - "c7": 5.630388132562527 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -358674,23 +358674,23 @@ "year": 1801, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 29.008842910963097, - "c2": 19.616862855541434, - "c3": -25.69870718056174, - "c4": -27.11815536010049, - "c5": -28.14066360214617, - "c6": 19.252821046179783, - "c7": 26.264048199327725 + "points": { + "c1": -11.523385194756983, + "c2": -35.56428035627947, + "c3": -15.678306372600794, + "c4": 0.7014651010542536, + "c5": -13.029736213057134, + "c6": 6.593704152857363, + "c7": 10.255586082469897 }, - "vertexSeeds": { - "c1": 5.8233978516880205, - "c2": 5.699864227093887, - "c3": 5.683978892478517, - "c4": 5.505738024767218, - "c5": 5.761657386222265, - "c6": 5.748857284534859, - "c7": 5.914281520070599 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -358701,23 +358701,23 @@ "year": 1802, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": 36.67019210753083, - "c2": -23.420710183353442, - "c3": -54.02029027831379, - "c4": 8.474708583934124, - "c5": -6.166401894058076, - "c6": -44.066618286723326, - "c7": 4.880665869507865 + "points": { + "c1": 49.08947461187707, + "c2": -50.29795576338772, + "c3": 38.18921683984062, + "c4": 1.7320045930565584, + "c5": 51.0658588635439, + "c6": 51.5839693989846, + "c7": 36.859661682746 }, - "vertexSeeds": { - "c1": 3.8777512896273647, - "c2": 3.921268617890322, - "c3": 3.832424774730482, - "c4": 4.060945844287805, - "c5": 3.872308429464654, - "c6": 4.1247597902216055, - "c7": 4.0670468340179955 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768374, + "c3": 5.039297272306984, + "c4": 4.031437817845585, + "c5": 3.023578363384187, + "c6": 2.0157189089227976, + "c7": 1.0078594544613988 }, "rgb": [77, 76, 132] }, @@ -358728,23 +358728,23 @@ "year": 1801, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -20.042915726942002, - "c2": -21.891350725447186, - "c3": -8.133141525983085, - "c4": -24.264271222655786, - "c5": -24.61545132793558, - "c6": 7.665432404346539, - "c7": -23.78681867114625 + "points": { + "c1": 27.475399819417774, + "c2": -7.615921043811376, + "c3": 9.839104218152173, + "c4": -23.98647562608098, + "c5": 30.084574771717058, + "c6": -7.44951925888283, + "c7": -18.59321875898644 }, - "vertexSeeds": { - "c1": 4.570087555275168, - "c2": 4.28738013698188, - "c3": 4.609148836468156, - "c4": 4.537158473773447, - "c5": 4.357346271722014, - "c6": 4.3911488056096255, - "c7": 4.405940408321376 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693485, + "c3": 5.5709662505779, + "c4": 4.456773000462324, + "c5": 3.342579750346738, + "c6": 2.228386500231162, + "c7": 1.1141932501155856 }, "rgb": [58, 15, 49] }, @@ -358755,23 +358755,23 @@ "year": 1801, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": 29.41240258269236, - "c2": 32.30389799854425, - "c3": 34.595919477998684, - "c4": 36.15077589438838, - "c5": 18.259747854889916, - "c6": -47.40354562173925, - "c7": -9.435024831431974 + "points": { + "c1": -7.831694372478012, + "c2": 49.03843125873973, + "c3": 40.58325890956343, + "c4": 26.319981670998395, + "c5": 26.02371117563937, + "c6": 8.398780013715545, + "c7": -32.76264930121246 }, - "vertexSeeds": { - "c1": 5.646458272493962, - "c2": 5.874760283105197, - "c3": 6.002039896421672, - "c4": 5.693662141815736, - "c5": 5.4132792395136695, - "c6": 5.5814308600865665, - "c7": 5.702406944003608 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -358782,23 +358782,23 @@ "year": 1801, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -13.859266528575645, - "c2": -23.88625014844171, - "c3": -14.419304344884228, - "c4": 22.252394527890125, - "c5": -3.5739454163769047, - "c6": 27.84901378960958, - "c7": 24.39433172135275 + "points": { + "c1": 28.42199004074964, + "c2": -26.143585307055446, + "c3": 11.914656133656017, + "c4": 31.20071672507406, + "c5": 22.71935869403781, + "c6": -17.50217625658628, + "c7": 4.08264676522802 }, - "vertexSeeds": { - "c1": 3.3427472335962634, - "c2": 3.332227938580279, - "c3": 3.5342041707846237, - "c4": 3.398207541624802, - "c5": 3.497642464748517, - "c6": 3.6483010039518806, - "c7": 3.504750580686685 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642161, + "c3": 4.392048081368474, + "c4": 3.513638465094777, + "c5": 2.6352288488210807, + "c6": 1.7568192325473841, + "c7": 0.8784096162736966 }, "rgb": [86, 146, 138] }, @@ -358809,23 +358809,23 @@ "year": 1801, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -23.345242998176044, - "c2": 21.74466922216876, - "c3": -4.617799571761477, - "c4": -8.223049357206545, - "c5": 22.462229960760858, - "c6": -15.086175182588072, - "c7": 1.7165895843051544 + "points": { + "c1": 25.41824729754528, + "c2": 7.437390234826275, + "c3": 4.819120659187234, + "c4": -7.999390037635177, + "c5": 30.37224124710731, + "c6": -23.568143036844223, + "c7": 18.575578718698658 }, - "vertexSeeds": { - "c1": 6.667220875175751, - "c2": 6.799606760988258, - "c3": 6.209052016422516, - "c4": 6.761486724249174, - "c5": 6.66237081726336, - "c6": 6.756108458940577, - "c7": 6.546546873306029 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238562, + "c3": 8.183079056865457, + "c4": 6.546463245492369, + "c5": 4.909847434119281, + "c6": 3.2732316227461755, + "c7": 1.6366158113730878 }, "rgb": [222, 0, 59] }, @@ -358836,23 +358836,23 @@ "year": 1801, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 1.380919649212565, - "c2": -29.46761152534266, - "c3": -4.753734027286669, - "c4": -6.861767748114197, - "c5": -21.194430694457115, - "c6": -25.68456204959902, - "c7": -31.716415822087725 + "points": { + "c1": 34.112445526692014, + "c2": -15.890650510221132, + "c3": 36.239084711283354, + "c4": -25.362572084879243, + "c5": 18.126812002397934, + "c6": -40.5484295530977, + "c7": 13.17562033130801 }, - "vertexSeeds": { - "c1": 5.440979470490767, - "c2": 5.720038552145059, - "c3": 5.468933297403947, - "c4": 6.091791555057608, - "c5": 5.309591012303137, - "c6": 5.309257798028338, - "c7": 5.953780565805422 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859919, + "c4": 5.991678224687931, + "c5": 4.493758668515943, + "c6": 2.9958391123439654, + "c7": 1.4979195561719776 }, "rgb": [86, 146, 138] }, @@ -358863,23 +358863,23 @@ "year": 1801, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -10.087292413546496, - "c2": -14.53821755853193, - "c3": 2.4948203473566863, - "c4": 5.9969130465053055, - "c5": 9.004832379686814, - "c6": 4.539353736950073, - "c7": 20.539065225527935 + "points": { + "c1": -16.91722391712849, + "c2": -10.705393852001022, + "c3": -12.670163779882037, + "c4": 13.561748669821434, + "c5": -21.120402078896685, + "c6": -3.147753200442949, + "c7": -18.270712647165745 }, - "vertexSeeds": { - "c1": 6.505230829412474, - "c2": 6.68982052156389, - "c3": 6.638035451326358, - "c4": 6.520715543547163, - "c5": 6.810683948202707, - "c6": 6.5588791488128875, - "c7": 6.644183895835552 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198344, + "c3": 8.159963014331945, + "c4": 6.527970411465562, + "c5": 4.895977808599162, + "c6": 3.263985205732781, + "c7": 1.6319926028663996 }, "rgb": [58, 15, 49] }, @@ -358890,23 +358890,23 @@ "year": 1801, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -12.943328462557982, - "c2": 4.3721361842804995, - "c3": -3.169703643107013, - "c4": -8.16394333679952, - "c5": 0.5960675510791873, - "c6": -2.2337394724300985, - "c7": -14.531607881074308 + "points": { + "c1": -14.67561218990306, + "c2": 4.467432454905683, + "c3": 24.083038265287747, + "c4": -28.328554289342033, + "c5": -22.763065566293445, + "c6": -23.70347265396206, + "c7": 18.26842745985904 }, - "vertexSeeds": { - "c1": 4.438305732718188, - "c2": 4.352004094628449, - "c3": 4.222913240039359, - "c4": 4.2814135018066315, - "c5": 4.372015731332626, - "c6": 4.300764264485074, - "c7": 4.344696378037629 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452151, + "c3": 5.432269995376787, + "c4": 4.345815996301432, + "c5": 3.2593619972260757, + "c6": 2.1729079981507113, + "c7": 1.0864539990753557 }, "rgb": [58, 15, 49] }, @@ -358917,23 +358917,23 @@ "year": 1801, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 12.939384570460184, - "c2": -7.6651191751103624, - "c3": -6.4716466733219065, - "c4": -15.996953047128411, - "c5": -36.84998314266248, - "c6": 0.47761583928843265, - "c7": 30.326446429008982 + "points": { + "c1": 11.704071505110335, + "c2": -22.446253974661857, + "c3": 12.642153346211138, + "c4": 20.793140434994747, + "c5": -3.2609663114337906, + "c6": 30.105147966073304, + "c7": -15.32713406879025 }, - "vertexSeeds": { - "c1": 5.868746581753792, - "c2": 5.698830567406719, - "c3": 5.54286585666106, - "c4": 5.580072109921269, - "c5": 5.709516588895719, - "c6": 5.46509507071352, - "c7": 6.001051954251374 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -358944,23 +358944,23 @@ "year": 1801, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -5.120272502275174, - "c2": 20.780214141333605, - "c3": -25.910529601396597, - "c4": 9.144441385246342, - "c5": -28.72918312414796, - "c6": 0.7044828849978764, - "c7": -27.726756933842697 + "points": { + "c1": -25.923251537835505, + "c2": -22.689510584995816, + "c3": 0.29857035659254905, + "c4": 19.594313611913478, + "c5": 15.84988435352178, + "c6": 8.812202165103272, + "c7": -33.07275551481583 }, - "vertexSeeds": { - "c1": 5.476593291377357, - "c2": 5.867585392682372, - "c3": 5.63934496309372, - "c4": 5.804837959150685, - "c5": 5.534009498369149, - "c6": 5.851893905292987, - "c7": 5.481111677248994 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -358971,23 +358971,23 @@ "year": 1801, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 10.880589034346336, - "c2": -1.7095463318417963, - "c3": -11.499316677685034, - "c4": -29.406605030595124, - "c5": -27.449289922670253, - "c6": 19.944839711537014, - "c7": 3.7100954760942244 + "points": { + "c1": -6.2902936312934195, + "c2": 16.808739667524364, + "c3": 0.30401993421237705, + "c4": 0.5932132577884133, + "c5": -26.963498116847862, + "c6": -29.815167210431703, + "c7": -3.130445921421998 }, - "vertexSeeds": { - "c1": 3.1930894637751464, - "c2": 3.4530157733149673, - "c3": 3.3040717043555605, - "c4": 3.2865620713495076, - "c5": 3.2323824065177202, - "c6": 3.1579605878943333, - "c7": 3.2819212121969747 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.9930651872399405, + "c3": 4.160887656033289, + "c4": 3.328710124826627, + "c5": 2.496532593619975, + "c6": 1.6643550624133134, + "c7": 0.8321775312066522 }, "rgb": [86, 146, 138] }, @@ -358998,23 +358998,23 @@ "year": 1802, "resistanceReported": false, "duration": 44755200, - "curveSeeds": { - "c1": 33.48415614638726, - "c2": -40.91402030615027, - "c3": -24.941846813009086, - "c4": -15.539976393216307, - "c5": -3.341449633514266, - "c6": 24.91427648037058, - "c7": 33.635398024129366 + "points": { + "c1": -57.190478583738354, + "c2": -39.65329510110769, + "c3": -15.367409941772586, + "c4": 43.302533164685634, + "c5": -53.60560054631176, + "c6": 19.749672278124244, + "c7": -34.1343294804326 }, - "vertexSeeds": { - "c1": 2.9993737273827525, - "c2": 3.1513540440290297, - "c3": 2.9613574291358966, - "c4": 3.010960596305543, - "c5": 2.8960112586886826, - "c6": 3.1782955598461093, - "c7": 3.1991443539126863 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.74341192787795, + "c3": 3.95284327323162, + "c4": 3.1622746185852977, + "c5": 2.371705963938975, + "c6": 1.5811373092926448, + "c7": 0.7905686546463224 }, "rgb": [238, 201, 159] }, @@ -359025,23 +359025,23 @@ "year": 1802, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": -48.4599877329677, - "c2": -9.586419689057529, - "c3": -7.293580654089823, - "c4": 9.043893751681935, - "c5": 41.7918587945591, - "c6": -30.703958423525997, - "c7": -5.981642176377392 + "points": { + "c1": 13.74267116171341, + "c2": 10.587504702908838, + "c3": -31.062541798910477, + "c4": 41.68740709431459, + "c5": -41.76783549065828, + "c6": 31.5758898376502, + "c7": 49.48444789979883 }, - "vertexSeeds": { - "c1": 3.1512582398378854, - "c2": 3.006378155703904, - "c3": 3.1880353606310083, - "c4": 3.2523913341761315, - "c5": 3.105899967629771, - "c6": 3.184218607841668, - "c7": 3.0089072691886596 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797506, + "c3": 3.906611188164589, + "c4": 3.125288950531673, + "c5": 2.3439667128987574, + "c6": 1.5626444752658322, + "c7": 0.7813222376329161 }, "rgb": [222, 0, 59] }, @@ -359052,23 +359052,23 @@ "year": 1801, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": -5.602284321583404, - "c2": 15.205384295487406, - "c3": -0.15354792330601796, - "c4": -17.316010185486665, - "c5": 9.7545930964991, - "c6": 19.5270260573311, - "c7": 4.013916083216941 + "points": { + "c1": -14.251676988141922, + "c2": 5.014271420675001, + "c3": -7.780404673601664, + "c4": -22.66224229508711, + "c5": 16.8011801545793, + "c6": -5.874895093998308, + "c7": 17.711836492566903 }, - "vertexSeeds": { - "c1": 5.041641846055011, - "c2": 5.452166103358986, - "c3": 5.419810937990961, - "c4": 5.190758656292135, - "c5": 5.15980164396578, - "c6": 4.947572150534391, - "c7": 5.298655461199719 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423016, + "c3": 6.564956079519188, + "c4": 5.251964863615344, + "c5": 3.938973647711517, + "c6": 2.625982431807672, + "c7": 1.312991215903845 }, "rgb": [77, 76, 132] }, @@ -359079,23 +359079,23 @@ "year": 1801, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 12.84209147895642, - "c2": 20.42340918750792, - "c3": 22.42236053753021, - "c4": 20.02544774714201, - "c5": -16.724736285402873, - "c6": 15.492706138645104, - "c7": 21.761300265955313 + "points": { + "c1": -8.774683164969343, + "c2": -33.64508733562259, + "c3": 37.12951135292769, + "c4": 22.241214146234398, + "c5": 28.634426087028743, + "c6": -16.13835045651629, + "c7": 2.334118789699339 }, - "vertexSeeds": { - "c1": 5.40603605389295, - "c2": 5.627059873126194, - "c3": 5.502426826181785, - "c4": 5.958789204761231, - "c5": 5.7945709418784865, - "c6": 5.924052597960556, - "c7": 5.46214210028335 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -359106,23 +359106,23 @@ "year": 1801, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 21.434971928836134, - "c2": -0.8853968510528745, - "c3": 18.85114634730666, - "c4": -9.93838135502509, - "c5": 0.5663034363249935, - "c6": 25.3905083342311, - "c7": -16.479362254643142 + "points": { + "c1": -7.111713938029066, + "c2": 21.84247057226697, + "c3": -22.18345436731579, + "c4": 26.612688691871398, + "c5": 8.4940071805975, + "c6": -16.149203085045755, + "c7": -13.842079967615277 }, - "vertexSeeds": { - "c1": 5.317029982512638, - "c2": 5.233583714404657, - "c3": 5.099289317463503, - "c4": 5.227243315864942, - "c5": 5.507382912135489, - "c6": 5.467962025343789, - "c7": 5.439807847666576 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186773, + "c4": 5.344429033749432, + "c5": 4.008321775312075, + "c6": 2.672214516874716, + "c7": 1.336107258437358 }, "rgb": [77, 76, 132] }, @@ -359133,23 +359133,23 @@ "year": 1801, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -18.45817730395829, - "c2": 24.332884157996265, - "c3": -1.9043130249978368, - "c4": -7.634276781362207, - "c5": 4.124342694984282, - "c6": 5.459094804410501, - "c7": 13.156006924003204 + "points": { + "c1": 20.6478814422445, + "c2": 2.6012554121388938, + "c3": 6.0213883113538635, + "c4": -31.38363026781338, + "c5": 15.28405591692449, + "c6": 7.161326422340981, + "c7": -12.431179956386085 }, - "vertexSeeds": { - "c1": 4.760276287204263, - "c2": 4.8562307330799435, - "c3": 4.874814896247441, - "c4": 4.925625080792486, - "c5": 4.717658018385459, - "c6": 4.8425784081807715, - "c7": 4.8383022224703645 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337036, + "c3": 5.940822931114191, + "c4": 4.752658344891357, + "c5": 3.564493758668522, + "c6": 2.3763291724456783, + "c7": 1.1881645862228438 }, "rgb": [86, 146, 138] }, @@ -359160,23 +359160,23 @@ "year": 1801, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 26.506366735313264, - "c2": 22.897695359335337, - "c3": -3.182790781804428, - "c4": 3.8562249059804827, - "c5": 15.726830470191402, - "c6": 27.539030924464967, - "c7": -12.66637808329708 + "points": { + "c1": -13.06718526274545, + "c2": 29.00021202934998, + "c3": 9.797514337478006, + "c4": 17.930331156512736, + "c5": 19.89488267272425, + "c6": 18.80753993228926, + "c7": 25.27817580307095 }, - "vertexSeeds": { - "c1": 5.163272684826885, - "c2": 5.202381622551727, - "c3": 5.0314806001232615, - "c4": 5.246386404935611, - "c5": 5.091845325275301, - "c6": 5.211614383237867, - "c7": 5.277209295451375 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -359187,23 +359187,23 @@ "year": 1801, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 15.532987454808108, - "c2": 13.785780236538237, - "c3": 9.713989215673564, - "c4": 1.578156414719274, - "c5": 6.493475632491638, - "c6": -24.128813211483507, - "c7": -1.252719306112546 + "points": { + "c1": -19.282482118277468, + "c2": 21.03968491019951, + "c3": -24.918376056891667, + "c4": -13.854601611181906, + "c5": 13.44171757365293, + "c6": 17.500808765891648, + "c7": 1.4155158982706126 }, - "vertexSeeds": { - "c1": 5.679702967668293, - "c2": 5.692231901096099, - "c3": 5.6875058307721, - "c4": 5.684536925917802, - "c5": 5.692954274610078, - "c6": 5.686377884763332, - "c7": 5.69211864557753 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.15533980582501, + "c3": 6.796116504854446, + "c4": 5.43689320388334, + "c5": 4.077669902912776, + "c6": 2.71844660194167, + "c7": 1.3592233009711054 }, "rgb": [58, 15, 49] }, @@ -359214,23 +359214,23 @@ "year": 1801, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -21.810286885750106, - "c2": -10.627913683083264, - "c3": -2.861454403082334, - "c4": 16.87619018747808, - "c5": 11.095045070621033, - "c6": -27.63079964362064, - "c7": -22.528971629540997 + "points": { + "c1": 38.494966677545555, + "c2": 0.08754859224813316, + "c3": 3.1669124250019394, + "c4": -12.831896501719793, + "c5": -36.356971919707554, + "c6": 3.2987981253602285, + "c7": -22.315958024450243 }, - "vertexSeeds": { - "c1": 5.924324963095362, - "c2": 5.477001725308537, - "c3": 5.83163016934586, - "c4": 5.809453001312072, - "c5": 5.780922409792536, - "c6": 5.891211553326385, - "c7": 5.557906230532214 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -359241,23 +359241,23 @@ "year": 1801, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 19.550134340018708, - "c2": -23.248121296886197, - "c3": -23.16924286133129, - "c4": -8.551406558534573, - "c5": 0.8222707959187687, - "c6": 9.836469710375447, - "c7": 22.074556570740533 + "points": { + "c1": -27.26969371811711, + "c2": 17.27326972454805, + "c3": -7.24042565273847, + "c4": 24.907660079503216, + "c5": -25.301926427165725, + "c6": -27.2251189489682, + "c7": -21.526880092571105 }, - "vertexSeeds": { - "c1": 6.876012916802097, - "c2": 6.541472879463579, - "c3": 6.822708754417318, - "c4": 6.361014083127368, - "c5": 6.563085681724414, - "c6": 6.633033555443007, - "c7": 6.959251981149929 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600552, + "c3": 8.391123439667124, + "c4": 6.7128987517337135, + "c5": 5.034674063800285, + "c6": 3.3564493758668568, + "c7": 1.6782246879334284 }, "rgb": [58, 15, 49] }, @@ -359268,23 +359268,23 @@ "year": 1801, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -12.427291170911653, - "c2": 6.497473398581789, - "c3": -7.579525746210972, - "c4": -12.13329276868899, - "c5": 23.98996734117747, - "c6": -14.421853542681419, - "c7": 1.2199790753315334 + "points": { + "c1": 14.66166780986164, + "c2": -18.45739590854238, + "c3": 4.39433554694293, + "c4": -20.99726944884253, + "c5": -5.889857385844291, + "c6": 2.258829019068955, + "c7": -0.5993640106840807 }, - "vertexSeeds": { - "c1": 4.371665994727662, - "c2": 4.072153091952408, - "c3": 4.207336927366544, - "c4": 4.277960319288626, - "c5": 4.014646804673853, - "c6": 3.9701449597624565, - "c7": 4.367566248432435 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.26907073509015, + "c3": 5.224225612575128, + "c4": 4.179380490060099, + "c5": 3.1345353675450793, + "c6": 2.0896902450300496, + "c7": 1.0448451225150293 }, "rgb": [77, 76, 132] }, @@ -359295,23 +359295,23 @@ "year": 1801, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 1.0454039785128941, - "c2": -38.82422332645867, - "c3": 36.335935049628574, - "c4": -36.15604839069695, - "c5": 31.938720342948685, - "c6": -2.9949726191894044, - "c7": -31.50110062916604 + "points": { + "c1": -3.9543299237080447, + "c2": -19.930993273610724, + "c3": 27.45094603284693, + "c4": -1.386726740835556, + "c5": -13.863674628358474, + "c6": 14.407204720298687, + "c7": -33.52358518557477 }, - "vertexSeeds": { - "c1": 5.766539748710528, - "c2": 5.987324563713607, - "c3": 5.750766814152981, - "c4": 5.7188602688250665, - "c5": 5.914054259651072, - "c6": 5.7592993567764115, - "c7": 5.402702130062306 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -359322,23 +359322,23 @@ "year": 1801, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 12.467106420028216, - "c2": 23.935858875873926, - "c3": 33.39906683986711, - "c4": 14.710397449598375, - "c5": 0.3581173614455082, - "c6": 39.42818367558542, - "c7": -41.25663775199149 + "points": { + "c1": 4.97390708894428, + "c2": -31.410968670653766, + "c3": -8.276386387253034, + "c4": 33.560357450395166, + "c5": -39.06784709591084, + "c6": -39.011556658770274, + "c7": -29.919120717546704 }, - "vertexSeeds": { - "c1": 5.527629744016064, - "c2": 5.636262265705014, - "c3": 5.976497463660639, - "c4": 5.736149852387459, - "c5": 5.749575876997417, - "c6": 5.461638731641046, - "c7": 5.849451797908094 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -359349,23 +359349,23 @@ "year": 1801, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -10.171907364478503, - "c2": -4.179776393060639, - "c3": 25.42100818863358, - "c4": -8.652404658905198, - "c5": 14.64901959301595, - "c6": 14.994095939665272, - "c7": 0.1473701161944767 + "points": { + "c1": -19.218340437252856, + "c2": -30.02600367665552, + "c3": -6.944119351150853, + "c4": -23.91782961722696, + "c5": 17.941671373104242, + "c6": 3.5103516627910025, + "c7": -4.544832864748468 }, - "vertexSeeds": { - "c1": 5.416190350743376, - "c2": 5.708568174740382, - "c3": 5.5851048728984996, - "c4": 5.530307597216332, - "c5": 5.708248646258753, - "c6": 5.648560666790179, - "c7": 5.441727971348012 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -359376,23 +359376,23 @@ "year": 1801, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 12.387069253216318, - "c2": 9.998852064377424, - "c3": 22.946025994292548, - "c4": 1.7061616961765793, - "c5": 0.05785266421769464, - "c6": 2.3232337415802, - "c7": 10.462899127532182 + "points": { + "c1": 12.968071069712465, + "c2": -8.01807305402501, + "c3": 22.763996735477903, + "c4": 24.72969469447186, + "c5": -1.049849580337412, + "c6": -22.21644976311463, + "c7": -19.90487422437218 }, - "vertexSeeds": { - "c1": 1.5069832803726249, - "c2": 1.608483198190875, - "c3": 1.5641334815352965, - "c4": 1.508924510295449, - "c5": 1.531938732652861, - "c6": 1.527386058535996, - "c7": 1.5598009868053253 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.357836338418863, + "c3": 1.9648636153490535, + "c4": 1.5718908922792436, + "c5": 1.1789181692094295, + "c6": 0.7859454461396196, + "c7": 0.3929727230698098 }, "rgb": [86, 146, 138] }, @@ -359403,23 +359403,23 @@ "year": 1801, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": 8.637829333278184, - "c2": -4.333077219545345, - "c3": 18.44291487934577, - "c4": 19.89176181010334, - "c5": 6.893724508442865, - "c6": 0.8827376830793199, - "c7": 1.954016922855402 + "points": { + "c1": 2.4609770076527155, + "c2": -15.009029887596578, + "c3": -12.682324398546545, + "c4": -6.007285282740941, + "c5": -15.414940184953737, + "c6": -12.928407152098103, + "c7": -17.453771790802072 }, - "vertexSeeds": { - "c1": 3.5055245020560184, - "c2": 3.4140894233825008, - "c3": 3.518195562685617, - "c4": 3.4008056425545927, - "c5": 3.3724996205299567, - "c6": 3.270927766561077, - "c7": 3.277888569618753 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360612, + "c3": 4.230235783633845, + "c4": 3.3841886269070787, + "c5": 2.5381414701803005, + "c6": 1.6920943134535338, + "c7": 0.8460471567267669 }, "rgb": [238, 201, 159] }, @@ -359430,23 +359430,23 @@ "year": 1801, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 0.461452155369269, - "c2": 10.137613034230714, - "c3": 18.627502014439347, - "c4": -2.855924054061436, - "c5": -20.217442042717938, - "c6": -21.51688802995382, - "c7": 20.30264822426761 + "points": { + "c1": 8.228093383315905, + "c2": 11.111374907243583, + "c3": 6.178102088897926, + "c4": -22.099483711287718, + "c5": -22.702094924671062, + "c6": -3.3744506646327075, + "c7": 29.36818004863896 }, - "vertexSeeds": { - "c1": 4.625196358875513, - "c2": 4.326270077760625, - "c3": 4.503112996166624, - "c4": 4.62148019979531, - "c5": 4.517164527401715, - "c6": 4.409450024561959, - "c7": 4.219872977899008 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733707, + "c3": 5.594082293111417, + "c4": 4.475265834489138, + "c5": 3.3564493758668488, + "c6": 2.237632917244569, + "c7": 1.11881645862228 }, "rgb": [77, 76, 132] }, @@ -359457,23 +359457,23 @@ "year": 1801, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 13.352182187710955, - "c2": -8.701468019215586, - "c3": 13.396695623710041, - "c4": 16.877346511184196, - "c5": -2.41650409868765, - "c6": 0.16731909264890632, - "c7": -6.045980713807992 + "points": { + "c1": 18.11548944046474, + "c2": -15.681018668702349, + "c3": -26.20057873029922, + "c4": 14.755908410305285, + "c5": -22.784859748091453, + "c6": -24.742588529091375, + "c7": -28.498985432404037 }, - "vertexSeeds": { - "c1": 4.11887537266571, - "c2": 3.9690537302262494, - "c3": 3.8962464556796084, - "c4": 4.199087235460082, - "c5": 3.835399679642671, - "c6": 4.17362988893064, - "c7": 3.9060537595267975 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848822, + "c3": 5.08552935737402, + "c4": 4.068423485899218, + "c5": 3.0513176144244065, + "c6": 2.0342117429496045, + "c7": 1.0171058714748022 }, "rgb": [58, 15, 49] }, @@ -359484,23 +359484,23 @@ "year": 1801, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -9.706082454158853, - "c2": -25.11364128710421, - "c3": 2.8105469277320942, - "c4": -1.3684777408704178, - "c5": 20.08624296859979, - "c6": 18.454896753591896, - "c7": -25.48287694345926 + "points": { + "c1": 13.184069902351347, + "c2": 21.391650907139393, + "c3": -22.537774290592964, + "c4": 22.216418654468832, + "c5": -15.177723607707037, + "c6": 24.75789649441416, + "c7": -24.72084682592477 }, - "vertexSeeds": { - "c1": 6.67037043112867, - "c2": 6.370478921538822, - "c3": 6.565775247030554, - "c4": 6.7512459186816605, - "c5": 6.342390542802211, - "c6": 6.440305875080556, - "c7": 6.707340421995261 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479881, + "c3": 8.321775312066578, + "c4": 6.657420249653254, + "c5": 4.99306518723995, + "c6": 3.328710124826627, + "c7": 1.6643550624133043 }, "rgb": [238, 201, 159] }, @@ -359511,23 +359511,23 @@ "year": 1801, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 4.817767881255779, - "c2": 5.2793459920087535, - "c3": -15.322338232527462, - "c4": -3.9272805472202634, - "c5": -1.0913709442773296, - "c6": -15.268510904184433, - "c7": 20.54212969038889 + "points": { + "c1": 15.713172956455836, + "c2": -6.0115579303799365, + "c3": 24.340922882224106, + "c4": -22.74052111725007, + "c5": -10.22895165704559, + "c6": 9.793206532839946, + "c7": 7.412132072496306 }, - "vertexSeeds": { - "c1": 4.826583724806764, - "c2": 5.038688956221433, - "c3": 5.128498950566232, - "c4": 5.099612486456637, - "c5": 4.644236657833667, - "c6": 5.129584039938996, - "c7": 4.8761811052226305 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699035, + "c3": 6.148867313915851, + "c4": 4.9190938511326845, + "c5": 3.6893203883495174, + "c6": 2.4595469255663422, + "c7": 1.2297734627831756 }, "rgb": [238, 201, 159] }, @@ -359538,23 +359538,23 @@ "year": 1801, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 19.13265490237679, - "c2": 19.4288994938295, - "c3": -22.079916041070152, - "c4": -18.32336980639959, - "c5": 8.8983169807431, - "c6": -2.3771209911639524, - "c7": -12.82345960206165 + "points": { + "c1": -10.762969916933116, + "c2": 16.083392211116905, + "c3": 23.34720550310846, + "c4": -16.013293170390337, + "c5": -19.7222994907753, + "c6": 14.40508030058923, + "c7": -20.570441943096533 }, - "vertexSeeds": { - "c1": 7.4818510682218236, - "c2": 7.483754599494274, - "c3": 7.91605211336706, - "c4": 7.249697184003063, - "c5": 7.620424166331593, - "c6": 7.33882954761301, - "c7": 7.567101027879221 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692084, + "c3": 9.593157651410081, + "c4": 7.674526121128057, + "c5": 5.755894590846051, + "c6": 3.8372630605640285, + "c7": 1.9186315302820232 }, "rgb": [86, 146, 138] }, @@ -359565,23 +359565,23 @@ "year": 1801, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": -11.137838834125454, - "c2": 7.481393314653015, - "c3": 15.070212221063336, - "c4": 5.253949631582348, - "c5": 13.098575854498286, - "c6": 18.301867034988902, - "c7": 16.061459463336107 + "points": { + "c1": -1.3855770142829869, + "c2": 12.155214527586452, + "c3": 4.6185848043790045, + "c4": -14.5846760053805, + "c5": 16.78807810673065, + "c6": -10.671581589583143, + "c7": 13.542643885204967 }, - "vertexSeeds": { - "c1": 3.3268503956912223, - "c2": 3.2637063468185015, - "c3": 3.3387146305304483, - "c4": 3.4391087887170806, - "c5": 3.356138637613002, - "c6": 3.2510313661586507, - "c7": 3.2081264554800235 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033291, + "c4": 3.328710124826635, + "c5": 2.4965325936199787, + "c6": 1.6643550624133119, + "c7": 0.8321775312066559 }, "rgb": [58, 15, 49] }, @@ -359592,23 +359592,23 @@ "year": 1801, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 4.650248283040327, - "c2": 8.75627800602609, - "c3": 3.467184986886732, - "c4": -4.446817559011077, - "c5": -11.31809215003888, - "c6": 6.199314926817376, - "c7": -15.926459923473274 + "points": { + "c1": 25.828896990627467, + "c2": 2.911158897949072, + "c3": 25.283973457809413, + "c4": 15.273232418658157, + "c5": 12.792372624670062, + "c6": -2.779787840352295, + "c7": 7.345180221504176 }, - "vertexSeeds": { - "c1": 2.379336918161725, - "c2": 2.346618892679857, - "c3": 2.3724614670610173, - "c4": 2.33651279234587, - "c5": 2.2836590280100153, - "c6": 2.421707641632734, - "c7": 2.2174751250009934 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679596, + "c3": 2.9126213592233015, + "c4": 2.3300970873786397, + "c5": 1.7475728155339816, + "c6": 1.1650485436893199, + "c7": 0.5825242718446582 }, "rgb": [77, 76, 132] }, @@ -359619,23 +359619,23 @@ "year": 1802, "resistanceReported": false, "duration": 36892800, - "curveSeeds": { - "c1": 22.948854717135184, - "c2": -9.431606397799563, - "c3": 26.684880419340864, - "c4": 49.74646543219338, - "c5": 5.340257728750309, - "c6": 36.175538333263226, - "c7": 48.24843984896162 + "points": { + "c1": 29.585521141592288, + "c2": 10.000998440117407, + "c3": -49.503772177549735, + "c4": -40.3229359578421, + "c5": 39.05011062753622, + "c6": 11.509569498114963, + "c7": -19.89151871395699 }, - "vertexSeeds": { - "c1": 2.5026593847620413, - "c2": 2.56428192603425, - "c3": 2.6012912657488547, - "c4": 2.479848765592006, - "c5": 2.618964420305108, - "c6": 2.6094172840009184, - "c7": 2.5389241966015903 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.800277392510399, + "c3": 3.1668978270920065, + "c4": 2.533518261673603, + "c5": 1.9001386962551996, + "c6": 1.266759130836807, + "c7": 0.6333795654184035 }, "rgb": [86, 146, 138] }, @@ -359646,23 +359646,23 @@ "year": 1801, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -12.597591693001931, - "c2": -11.066046739790142, - "c3": 0.5435742687776539, - "c4": 34.36623528377213, - "c5": -28.19062799350698, - "c6": 21.23458596954142, - "c7": -15.74924050072391 + "points": { + "c1": 0.36954676759447835, + "c2": 18.698879254589343, + "c3": -35.44478932606253, + "c4": 5.394015863512138, + "c5": 21.921627911730617, + "c6": -31.639116844382944, + "c7": 18.445234645030332 }, - "vertexSeeds": { - "c1": 3.352059425580865, - "c2": 3.4420495294020172, - "c3": 3.356277769549681, - "c4": 3.4440282106028994, - "c5": 3.4163177035501033, - "c6": 3.418930485211129, - "c7": 3.2826821509376876 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320388, + "c3": 4.207119741100324, + "c4": 3.3656957928802584, + "c5": 2.524271844660194, + "c6": 1.6828478964401292, + "c7": 0.8414239482200646 }, "rgb": [86, 146, 138] }, @@ -359673,23 +359673,23 @@ "year": 1801, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 6.219242381620013, - "c2": -33.05068777437478, - "c3": 2.3655679616220695, - "c4": -18.171072433141507, - "c5": 2.712096750598917, - "c6": -30.511521546251814, - "c7": -11.318115784456669 + "points": { + "c1": -1.5402634902429, + "c2": 27.451683046218285, + "c3": 25.826117559645056, + "c4": -7.605332997314868, + "c5": 9.60910136947863, + "c6": -19.22024135051422, + "c7": -4.4852391836977255 }, - "vertexSeeds": { - "c1": 5.650402721535136, - "c2": 5.449231017212924, - "c3": 5.4834890386384165, - "c4": 6.197825644474115, - "c5": 5.638695779478981, - "c6": 6.481847245009582, - "c7": 6.199950516915345 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795655, + "c4": 6.23208506703652, + "c5": 4.674063800277395, + "c6": 3.11604253351826, + "c7": 1.5580212667591244 }, "rgb": [86, 146, 138] }, @@ -359700,23 +359700,23 @@ "year": 1801, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -27.797294087108412, - "c2": 25.904706918346747, - "c3": -11.539306099648819, - "c4": -4.984267141674405, - "c5": -16.545726486588258, - "c6": 7.225495105943899, - "c7": -22.91434982142301 + "points": { + "c1": -5.591998356362378, + "c2": -20.00860460192107, + "c3": -9.827711950461769, + "c4": 25.864137398983893, + "c5": -23.368165301952864, + "c6": 14.115706277725508, + "c7": 20.335698836272726 }, - "vertexSeeds": { - "c1": 3.110677815959262, - "c2": 3.3959991635617257, - "c3": 3.3685661423992217, - "c4": 3.2016562231162884, - "c5": 3.2884138539400443, - "c6": 3.3540193778686644, - "c7": 3.148848961095008 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159497, + "c3": 4.114655570966252, + "c4": 3.291724456772998, + "c5": 2.4687933425797532, + "c6": 1.645862228386499, + "c7": 0.822931114193245 }, "rgb": [238, 201, 159] }, @@ -359727,23 +359727,23 @@ "year": 1801, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": 4.363033773774003, - "c2": 0.08255818503986845, - "c3": -21.577073418295093, - "c4": -11.735512094014156, - "c5": -12.630828076394941, - "c6": -19.834944801751952, - "c7": 7.3621727090487425 + "points": { + "c1": 16.437318268959146, + "c2": 21.3242641454679, + "c3": 21.677337608095385, + "c4": -26.18815811084193, + "c5": -0.46338655240251114, + "c6": -11.594423725109428, + "c7": -18.351172450819433 }, - "vertexSeeds": { - "c1": 6.6958974878597415, - "c2": 6.860215385682414, - "c3": 6.712027276414707, - "c4": 7.032459068164511, - "c5": 7.09208177893699, - "c6": 6.996040235137475, - "c7": 7.1190063551520915 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962555, + "c3": 8.599167822468798, + "c4": 6.879334257975042, + "c5": 5.159500693481286, + "c6": 3.4396671289875305, + "c7": 1.719833564493774 }, "rgb": [222, 0, 59] }, @@ -359754,23 +359754,23 @@ "year": 1801, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 6.435941837201256, - "c2": 21.766031485159274, - "c3": -4.739709629057433, - "c4": 17.688851881025435, - "c5": -10.614115532457703, - "c6": 17.202428463401425, - "c7": 16.2727645277047 + "points": { + "c1": -8.645231864950073, + "c2": -8.44375122686387, + "c3": -4.370216462524439, + "c4": 14.760836524032001, + "c5": -3.8922180349404165, + "c6": 15.442514438730392, + "c7": 21.081365185097432 }, - "vertexSeeds": { - "c1": 3.1718654488103017, - "c2": 3.37772453221547, - "c3": 3.2874379340378526, - "c4": 3.378322443118517, - "c5": 3.433546847092811, - "c6": 3.1415988440080462, - "c7": 3.2252590912140446 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.9930651872399405, + "c3": 4.160887656033289, + "c4": 3.328710124826627, + "c5": 2.496532593619975, + "c6": 1.6643550624133134, + "c7": 0.8321775312066522 }, "rgb": [77, 76, 132] }, @@ -359781,23 +359781,23 @@ "year": 1801, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -26.540632739098804, - "c2": 9.243322522689652, - "c3": 4.933531134119633, - "c4": 15.574200412332992, - "c5": -2.3505340171356224, - "c6": -0.8016314057706069, - "c7": -22.261578444528816 + "points": { + "c1": 4.981337720547074, + "c2": 20.269455679574612, + "c3": 11.913373621517458, + "c4": -14.748942701968009, + "c5": -5.562509395750158, + "c6": 6.210992265273447, + "c7": 26.81696375986332 }, - "vertexSeeds": { - "c1": 5.700525330580736, - "c2": 5.617916443754307, - "c3": 5.563909951549555, - "c4": 5.868203405809662, - "c5": 5.942901009092421, - "c6": 5.61502250648947, - "c7": 5.937513301914808 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -359808,23 +359808,23 @@ "year": 1801, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 20.6392667538832, - "c2": -3.4926978695408053, - "c3": -11.377087659616599, - "c4": 6.44644093447851, - "c5": -21.203722119036865, - "c6": -0.5342949933280323, - "c7": -36.832187501707956 + "points": { + "c1": 29.6987086911261, + "c2": -35.920860871631, + "c3": -21.33774497446121, + "c4": 14.913940231237575, + "c5": -4.3905182194542505, + "c6": -4.104506015711159, + "c7": 10.538820274991537 }, - "vertexSeeds": { - "c1": 5.736661800771239, - "c2": 5.959394994928643, - "c3": 5.901955288760413, - "c4": 5.823898456114542, - "c5": 5.96282161424671, - "c6": 5.730843768762757, - "c7": 5.910007050158881 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -359835,23 +359835,23 @@ "year": 1802, "resistanceReported": false, "duration": 59788800, - "curveSeeds": { - "c1": 63.94406584897908, - "c2": 21.6334252544235, - "c3": -11.917120156411777, - "c4": -47.88752921767617, - "c5": -73.11281735348219, - "c6": 0.5628757479227886, - "c7": 38.0394239707752 + "points": { + "c1": -40.88177222865414, + "c2": 57.203584270280714, + "c3": 61.89326423972386, + "c4": -7.261543706828618, + "c5": -54.81946448091436, + "c6": -20.94733434122862, + "c7": 58.38959426409468 }, - "vertexSeeds": { - "c1": 5.20644619374358, - "c2": 5.483018361563183, - "c3": 5.236101831970137, - "c4": 5.459347131067716, - "c5": 4.9982763625196505, - "c6": 5.418782093945728, - "c7": 5.248994032767779 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865463, + "c3": 6.819232547387883, + "c4": 5.455386037910317, + "c5": 4.091539528432738, + "c6": 2.7276930189551587, + "c7": 1.3638465094775793 }, "rgb": [222, 0, 59] }, @@ -359862,23 +359862,23 @@ "year": 1802, "resistanceReported": false, "duration": 48988800, - "curveSeeds": { - "c1": -18.684252859679447, - "c2": -34.7522830579077, - "c3": -41.640878174577395, - "c4": -46.123403301113655, - "c5": -52.4990232298464, - "c6": 56.70953687379802, - "c7": -24.997088218581595 + "points": { + "c1": 6.397832319953423, + "c2": -12.010557744384236, + "c3": 27.843033092104022, + "c4": 10.345378597809983, + "c5": -5.728270661224251, + "c6": -13.047938541148056, + "c7": -59.18362746884411 }, - "vertexSeeds": { - "c1": 9.679461543610707, - "c2": 9.561076312456017, - "c3": 9.586788929443935, - "c4": 9.599891422282312, - "c5": 9.705889352738518, - "c6": 9.733619623207007, - "c7": 9.391057181172565 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513165, + "c3": 11.789181692094319, + "c4": 9.431345353675441, + "c5": 7.073509015256598, + "c6": 4.715672676837721, + "c7": 2.357836338418877 }, "rgb": [86, 146, 138] }, @@ -359889,23 +359889,23 @@ "year": 1801, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": -7.312713736693432, - "c2": -41.15354962434002, - "c3": 40.9686194593889, - "c4": -40.228599284198246, - "c5": 29.07013032993965, - "c6": -4.2948931909447765, - "c7": 28.149229959353825 + "points": { + "c1": 25.22392713831845, + "c2": 2.834274983430845, + "c3": 3.7067901832828554, + "c4": 3.1972442132918886, + "c5": 40.46279268493502, + "c6": 30.46970324417122, + "c7": 13.316436843219797 }, - "vertexSeeds": { - "c1": 2.283924123376914, - "c2": 2.346347875042611, - "c3": 2.1453193024782853, - "c4": 2.1415390385671547, - "c5": 2.135447094787072, - "c6": 2.1007974793928095, - "c7": 2.163514477508729 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070725, + "c3": 2.8201571890892296, + "c4": 2.256125751271383, + "c5": 1.6920943134535362, + "c6": 1.1280628756356899, + "c7": 0.5640314378178465 }, "rgb": [222, 0, 59] }, @@ -359916,23 +359916,23 @@ "year": 1801, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 9.690905223858138, - "c2": 14.99881311993608, - "c3": -17.94612926510301, - "c4": -4.815958553545894, - "c5": 3.8819648436904615, - "c6": -19.467898945183514, - "c7": 16.92083583640956 + "points": { + "c1": -2.769881399622438, + "c2": -20.126907688778, + "c3": -7.206505271551851, + "c4": -16.138391061709452, + "c5": 15.193995042205664, + "c6": -2.527578314585263, + "c7": 16.169516779146306 }, - "vertexSeeds": { - "c1": 3.8024765996489607, - "c2": 3.71073377009027, - "c3": 3.7428015109955215, - "c4": 3.6814092249127994, - "c5": 3.7636934169006957, - "c6": 3.659987973886455, - "c7": 3.658669820961409 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.71428571428572, + "c3": 4.761904761904761, + "c4": 3.8095238095238133, + "c5": 2.857142857142854, + "c6": 1.9047619047619067, + "c7": 0.9523809523809589 }, "rgb": [238, 201, 159] }, @@ -359943,23 +359943,23 @@ "year": 1801, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -19.00678923840942, - "c2": 4.742031244400785, - "c3": -7.729562509865762, - "c4": 34.61893357436061, - "c5": 25.182885792287415, - "c6": -22.512431855403293, - "c7": -21.63582162385851 + "points": { + "c1": 8.939096290074104, + "c2": -2.2344660902252897, + "c3": 37.98355910734162, + "c4": 29.031033242172313, + "c5": -17.441440716754947, + "c6": 8.267156960006602, + "c7": 8.430788489223708 }, - "vertexSeeds": { - "c1": 5.544311886369453, - "c2": 5.700245962847161, - "c3": 5.917365321474034, - "c4": 5.543279809909767, - "c5": 5.721217252727262, - "c6": 5.787341886351487, - "c7": 5.913046583011 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -359970,23 +359970,23 @@ "year": 1801, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 34.722692516700306, - "c2": 8.235515331957231, - "c3": -39.15753975151179, - "c4": -5.338170625935206, - "c5": -35.21217766759997, - "c6": 7.427469749201521, - "c7": 23.164518903646908 + "points": { + "c1": -24.48393411138809, + "c2": 38.04344998601222, + "c3": 5.6942504522724064, + "c4": 40.43800986710106, + "c5": -32.071635809791644, + "c6": -30.24856682891104, + "c7": -28.062347424436076 }, - "vertexSeeds": { - "c1": 5.81423962280398, - "c2": 5.607623352008995, - "c3": 5.914638908470906, - "c4": 5.577925812282081, - "c5": 5.688392095046385, - "c6": 5.653027527452909, - "c7": 5.957123894065839 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -359997,23 +359997,23 @@ "year": 1801, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -31.01485202289603, - "c2": -8.893347527580268, - "c3": -2.9190003818571526, - "c4": 37.540348920314685, - "c5": 29.15766862695382, - "c6": -19.602988574307947, - "c7": 1.011837629164532 + "points": { + "c1": 32.688677709064464, + "c2": -25.539579408514776, + "c3": 21.824221971615486, + "c4": 29.93094145884261, + "c5": -38.6811639841808, + "c6": -5.014372100265042, + "c7": -10.58471664636378 }, - "vertexSeeds": { - "c1": 5.69450112626519, - "c2": 5.685041356400635, - "c3": 5.587054589825953, - "c4": 5.576515785614517, - "c5": 5.7538030692354765, - "c6": 5.420546927336227, - "c7": 5.414994702009373 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -360024,23 +360024,23 @@ "year": 1801, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 7.9224467285420985, - "c2": 31.602013970674626, - "c3": -17.671902587937183, - "c4": 24.900366068446814, - "c5": 25.137499612807147, - "c6": 0.7220943074005604, - "c7": -19.3965492287428 + "points": { + "c1": 19.44131819101181, + "c2": -24.871654372293236, + "c3": -5.312751960851283, + "c4": -24.408458790781676, + "c5": 2.5446694691845337, + "c6": -15.176011949013567, + "c7": -14.305330849381722 }, - "vertexSeeds": { - "c1": 6.748436786940135, - "c2": 6.644245618170355, - "c3": 6.92714512985801, - "c4": 6.655458759501161, - "c5": 6.69727979251016, - "c6": 6.923468750959817, - "c7": 6.395538774132027 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399444, + "c3": 8.275543226999538, + "c4": 6.620434581599629, + "c5": 4.965325936199722, + "c6": 3.3102172907998146, + "c7": 1.6551086453999073 }, "rgb": [86, 146, 138] }, @@ -360051,23 +360051,23 @@ "year": 1801, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -12.978139209934227, - "c2": 12.904891170057535, - "c3": -0.19256492397011726, - "c4": 19.312480809187132, - "c5": -11.569004494515283, - "c6": -8.85786734425329, - "c7": -18.986573529451377 + "points": { + "c1": -26.431037376765424, + "c2": -12.358332011161057, + "c3": -19.462999873334148, + "c4": -26.267313920691493, + "c5": -28.98209096858641, + "c6": 1.740692287082961, + "c7": -23.176725625047233 }, - "vertexSeeds": { - "c1": 5.891064843116028, - "c2": 5.853361071867053, - "c3": 5.550394216640863, - "c4": 5.870376853399367, - "c5": 5.666933226224378, - "c6": 5.576663665232924, - "c7": 5.563296326553472 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -360078,23 +360078,23 @@ "year": 1803, "resistanceReported": false, "duration": 63936000, - "curveSeeds": { - "c1": 40.24170358397964, - "c2": -17.68465502038474, - "c3": 8.34489872761651, - "c4": -76.30777221121583, - "c5": 71.63079467650331, - "c6": 65.63353162494658, - "c7": 2.0185213391290944 + "points": { + "c1": -12.028645907635905, + "c2": 35.74531889871507, + "c3": -49.903274860783625, + "c4": -34.546707188434496, + "c5": 51.55834889087984, + "c6": -50.64140528852302, + "c7": -50.38336281512092 }, - "vertexSeeds": { - "c1": 6.017790586433912, - "c2": 6.108132542633758, - "c3": 6.099236087980543, - "c4": 5.862663496055137, - "c5": 6.1237409803831735, - "c6": 6.0713301002168745, - "c7": 6.135576446322247 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991676, + "c3": 7.466481738326397, + "c4": 5.973185390661118, + "c5": 4.479889042995838, + "c6": 2.986592695330559, + "c7": 1.4932963476652794 }, "rgb": [222, 0, 59] }, @@ -360105,23 +360105,23 @@ "year": 1802, "resistanceReported": false, "duration": 62294400, - "curveSeeds": { - "c1": -11.37423646504783, - "c2": 36.87331759515291, - "c3": -72.04891276368492, - "c4": 34.69779185443335, - "c5": -68.84715092065402, - "c6": 24.743938010073492, - "c7": -10.861011843361425 + "points": { + "c1": 48.18568221751893, + "c2": 11.699032705516657, + "c3": -73.06945012507903, + "c4": 19.17926708262891, + "c5": 9.326492516546182, + "c6": 71.93081828775756, + "c7": 65.3063286595878 }, - "vertexSeeds": { - "c1": 5.478885404215795, - "c2": 5.80315689565664, - "c3": 5.791450764385867, - "c4": 5.791154734581346, - "c5": 5.654057590655534, - "c6": 5.5608481587713925, - "c7": 5.405274801744914 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [58, 15, 49] }, @@ -360132,23 +360132,23 @@ "year": 1802, "resistanceReported": false, "duration": 47952000, - "curveSeeds": { - "c1": -6.17620040593534, - "c2": -23.297527834719517, - "c3": 29.781360067221236, - "c4": -21.01986662649658, - "c5": -55.622933634943564, - "c6": -47.311779211609405, - "c7": -51.915072389759864 + "points": { + "c1": -21.831623685220528, + "c2": -10.40064470981185, + "c3": 49.228499091775575, + "c4": -51.5216453062894, + "c5": 41.416194548655795, + "c6": 58.333483136979964, + "c7": -64.01804743314561 }, - "vertexSeeds": { - "c1": 1.4456988758040845, - "c2": 1.7308272309859427, - "c3": 1.5239901627126096, - "c4": 1.5535433147874063, - "c5": 1.7074964002011437, - "c6": 1.4674382975134617, - "c7": 1.580837873671187 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.524271844660193, + "c3": 2.10355987055016, + "c4": 1.6828478964401297, + "c5": 1.2621359223300965, + "c6": 0.8414239482200635, + "c7": 0.4207119741100331 }, "rgb": [77, 76, 132] }, @@ -360159,23 +360159,23 @@ "year": 1801, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -18.641526006754, - "c2": -34.0506233144172, - "c3": -5.13268592923615, - "c4": 14.997625429005573, - "c5": -8.324744591962641, - "c6": -3.8547353626001133, - "c7": -19.22467474383368 + "points": { + "c1": -8.621645910484844, + "c2": 11.042123785534507, + "c3": 21.305756601797384, + "c4": -13.089499469356841, + "c5": 18.656330890248064, + "c6": -24.5304160529393, + "c7": -1.215970673689533 }, - "vertexSeeds": { - "c1": 9.993972287507745, - "c2": 10.142154803702256, - "c3": 10.098859388768261, - "c4": 10.053758939983705, - "c5": 9.97860816159596, - "c6": 10.121721404822432, - "c7": 10.019635424695236 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.507628294036033, + "c3": 12.089690245029997, + "c4": 9.671752196023958, + "c5": 7.253814147018113, + "c6": 4.835876098012076, + "c7": 2.417938049006038 }, "rgb": [58, 15, 49] }, @@ -360186,23 +360186,23 @@ "year": 1802, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -20.450569091815023, - "c2": -6.503275150641713, - "c3": -37.28740871393563, - "c4": -7.070306848472811, - "c5": -28.9855882484419, - "c6": 30.99019546137272, - "c7": 24.726537177876992 + "points": { + "c1": 38.412229331777496, + "c2": -22.35791405764258, + "c3": -25.398716026327, + "c4": -24.544698429071452, + "c5": 16.851576246216773, + "c6": 36.69680710037436, + "c7": 6.062368413980465 }, - "vertexSeeds": { - "c1": 5.37355852207413, - "c2": 5.061132581414844, - "c3": 5.526622436731231, - "c4": 5.5343697914742265, - "c5": 5.478602689617833, - "c6": 5.5530178531288215, - "c7": 5.236753684539113 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186773, + "c4": 5.344429033749432, + "c5": 4.008321775312075, + "c6": 2.672214516874716, + "c7": 1.336107258437358 }, "rgb": [58, 15, 49] }, @@ -360213,23 +360213,23 @@ "year": 1801, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 3.1710518640312486, - "c2": 17.53632748481796, - "c3": -6.368665377127204, - "c4": 0.7324192550933866, - "c5": 7.519105182294638, - "c6": 22.32303739010527, - "c7": 16.122118998267545 + "points": { + "c1": 16.130338437878123, + "c2": -15.394521363855315, + "c3": -0.5891819324476764, + "c4": -12.722723905778379, + "c5": -16.4718062669249, + "c6": 7.381978395343545, + "c7": 3.657426735191475 }, - "vertexSeeds": { - "c1": 10.703705505260542, - "c2": 10.705131050288866, - "c3": 10.727476737631395, - "c4": 10.654976930796822, - "c5": 10.63409834685476, - "c6": 10.670072286422206, - "c7": 10.672695680779547 + "offsets": { + "c1": 17.928802588996763, + "c2": 15.367545076282939, + "c3": 12.806287563569118, + "c4": 10.245030050855293, + "c5": 7.683772538141469, + "c6": 5.122515025427647, + "c7": 2.5612575127138233 }, "rgb": [238, 201, 159] }, @@ -360240,23 +360240,23 @@ "year": 1801, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 13.144982522386691, - "c2": 5.681944060244454, - "c3": 8.148943173313178, - "c4": -4.8310734365934564, - "c5": -4.623166151909629, - "c6": -19.329231281580125, - "c7": 15.981888191471072 + "points": { + "c1": 15.823382920602803, + "c2": 18.04705342013375, + "c3": 25.487741045184848, + "c4": -18.748320138306653, + "c5": 9.589417561156068, + "c6": -14.830974086491791, + "c7": -0.16453552731621812 }, - "vertexSeeds": { - "c1": 5.553873481749201, - "c2": 5.84014921757745, - "c3": 5.474112933188756, - "c4": 5.679779686978135, - "c5": 5.708364819778657, - "c6": 5.944002523819478, - "c7": 5.910829774699264 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -360267,23 +360267,23 @@ "year": 1801, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -21.641943777879458, - "c2": 22.497740808998895, - "c3": -11.346324853289236, - "c4": -3.9144229273711773, - "c5": -16.54487518031477, - "c6": 10.281811545606832, - "c7": -6.236983427872541 + "points": { + "c1": -7.634661779283405, + "c2": -9.195888028129886, + "c3": -18.480882403816118, + "c4": 22.335587162049325, + "c5": 25.715630576540217, + "c6": -20.306177678264294, + "c7": -7.02037517466151 }, - "vertexSeeds": { - "c1": 4.831473999661194, - "c2": 4.896191804277984, - "c3": 4.578422865219764, - "c4": 4.647459948696833, - "c5": 4.732390004214805, - "c6": 4.653944904852252, - "c7": 4.573160142420779 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377255, + "c3": 5.963938973647714, + "c4": 4.7711511789181635, + "c5": 3.578363384188622, + "c6": 2.3855755894590818, + "c7": 1.1927877947295409 }, "rgb": [222, 0, 59] }, @@ -360294,23 +360294,23 @@ "year": 1801, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 7.43148064966244, - "c2": 1.9177030609638486, - "c3": 11.554236921178195, - "c4": 19.853810579727735, - "c5": 19.61654065715654, - "c6": 25.786764093742654, - "c7": -14.997929143071248 + "points": { + "c1": 28.88372613155326, + "c2": -3.662235659043308, + "c3": 27.434332015109355, + "c4": -19.886847431750766, + "c5": -1.5675511883895261, + "c6": 7.7183887970169565, + "c7": 25.618245579148336 }, - "vertexSeeds": { - "c1": 5.7512830370917145, - "c2": 5.560591878106858, - "c3": 5.419683416076086, - "c4": 5.830449623351864, - "c5": 5.666763642151461, - "c6": 5.518840645405838, - "c7": 5.523687058783493 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -360321,23 +360321,23 @@ "year": 1802, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -29.74479559904549, - "c2": 6.992564967323503, - "c3": 30.07580042617451, - "c4": -31.186944511530385, - "c5": 12.380848207147004, - "c6": -38.78554294918429, - "c7": 37.2986783867362 + "points": { + "c1": 38.51936646167489, + "c2": -41.17144076702801, + "c3": 36.09271512429676, + "c4": -37.94145280247108, + "c5": 25.176498553176685, + "c6": -12.786255460279499, + "c7": 28.587680185681933 }, - "vertexSeeds": { - "c1": 4.361216357719854, - "c2": 4.285317352729532, - "c3": 4.053098258798524, - "c4": 4.326737687932517, - "c5": 4.481093584999397, - "c6": 4.334256018803146, - "c7": 4.376712698674512 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.4355062413314865, + "c3": 5.362921867776232, + "c4": 4.290337494220988, + "c5": 3.2177531206657433, + "c6": 2.1451687471104894, + "c7": 1.0725843735552447 }, "rgb": [77, 76, 132] }, @@ -360348,23 +360348,23 @@ "year": 1801, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -18.629991497370085, - "c2": -0.7301638206938925, - "c3": 30.70126466658852, - "c4": -1.6007190402926916, - "c5": 31.78449796386993, - "c6": -1.0582953881526649, - "c7": -23.980130424069124 + "points": { + "c1": 8.188354789198335, + "c2": 24.62698078952736, + "c3": -8.208049780987281, + "c4": 13.568105965556128, + "c5": -30.438129624008177, + "c6": 22.621406624164784, + "c7": 3.3671516867525497 }, - "vertexSeeds": { - "c1": 5.866107803167444, - "c2": 5.729346635347316, - "c3": 5.757464638317367, - "c4": 5.611424632272376, - "c5": 5.498591760295947, - "c6": 5.6107702070416385, - "c7": 5.468560261774464 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -360375,23 +360375,23 @@ "year": 1802, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 15.32575837669804, - "c2": 34.021799258950814, - "c3": 11.51300467233095, - "c4": -0.13991931178394168, - "c5": -40.70350050483065, - "c6": 25.371153010991456, - "c7": -19.46966363675586 + "points": { + "c1": 35.132109337345604, + "c2": 8.451713288239283, + "c3": 11.15354729788374, + "c4": 17.142289768622142, + "c5": -7.386296427291285, + "c6": 1.7228741984218132, + "c7": 37.86011112431387 }, - "vertexSeeds": { - "c1": 3.544940998946557, - "c2": 3.6043524930952504, - "c3": 3.668796746450184, - "c4": 3.515244368525807, - "c5": 3.5313534204559818, - "c6": 3.6876236849790764, - "c7": 3.485733928004684 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682383, + "c3": 4.4151641239019925, + "c4": 3.532131299121592, + "c5": 2.6490984743411916, + "c6": 1.7660656495608007, + "c7": 0.8830328247804003 }, "rgb": [86, 146, 138] }, @@ -360402,23 +360402,23 @@ "year": 1802, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 10.428101545856983, - "c2": -16.084085826966533, - "c3": -6.420354325463471, - "c4": -9.589664246837941, - "c5": -20.07418713519811, - "c6": -17.364155953967618, - "c7": -15.270918633513332 + "points": { + "c1": -9.872505086612186, + "c2": 8.43542037920961, + "c3": -31.190354274018517, + "c4": 5.351263672332664, + "c5": 18.76071546476934, + "c6": 20.258494010318444, + "c7": 33.40975858220064 }, - "vertexSeeds": { - "c1": 6.969160452696399, - "c2": 6.992294791472118, - "c3": 6.63905953010209, - "c4": 6.523397349306598, - "c5": 6.952631413906784, - "c6": 6.69954828554425, - "c7": 6.871435100601112 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882109, + "c3": 8.552935737401762, + "c4": 6.8423485899214125, + "c5": 5.1317614424410465, + "c6": 3.421174294960697, + "c7": 1.7105871474803485 }, "rgb": [238, 201, 159] }, @@ -360429,23 +360429,23 @@ "year": 1802, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 16.502559163646744, - "c2": -25.55462921584937, - "c3": 33.609163281055835, - "c4": 9.504016453437231, - "c5": -11.141278333196869, - "c6": -0.18476296709432916, - "c7": 29.77028627172124 + "points": { + "c1": 31.970436345370736, + "c2": -7.477716768723916, + "c3": -33.88052624538302, + "c4": -29.336887761806075, + "c5": 7.599070546022787, + "c6": 11.283364325705946, + "c7": 10.978711112469398 }, - "vertexSeeds": { - "c1": 5.653513575417849, - "c2": 5.702207376863032, - "c3": 6.152018949888816, - "c4": 6.258859602007682, - "c5": 6.531187580654736, - "c6": 6.10529752899806, - "c7": 5.961555342539209 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675452, + "c3": 7.859454461396211, + "c4": 6.28756356911696, + "c5": 4.715672676837721, + "c6": 3.14378178455848, + "c7": 1.57189089227924 }, "rgb": [77, 76, 132] }, @@ -360456,23 +360456,23 @@ "year": 1802, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 27.532260067035224, - "c2": 33.78041010003281, - "c3": -27.696301695451695, - "c4": 13.460657530898494, - "c5": 27.737843158673776, - "c6": 13.369944120760344, - "c7": 3.133539839532766 + "points": { + "c1": -14.525112998442175, + "c2": 6.896800068450261, + "c3": 6.777396131874902, + "c4": -8.190112348696914, + "c5": 16.755967357645076, + "c6": 0.87195215424682, + "c7": 24.839148400515235 }, - "vertexSeeds": { - "c1": 2.1789541324264095, - "c2": 2.083316949688337, - "c3": 2.0430855413430558, - "c4": 2.198106982906951, - "c5": 2.1641790794703826, - "c6": 2.117989427394049, - "c7": 2.185290454894486 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070725, + "c3": 2.8201571890892296, + "c4": 2.256125751271383, + "c5": 1.6920943134535362, + "c6": 1.1280628756356899, + "c7": 0.5640314378178465 }, "rgb": [238, 201, 159] }, @@ -360483,23 +360483,23 @@ "year": 1801, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -25.477571828776682, - "c2": 21.64574326941203, - "c3": 0.9177660411086208, - "c4": 12.455336258128192, - "c5": -25.6471038375455, - "c6": -3.988051934773555, - "c7": 25.942810352273042 + "points": { + "c1": -0.7468186891595039, + "c2": 30.636000136254133, + "c3": -21.934324842097613, + "c4": -14.939097999888375, + "c5": -9.871166863219315, + "c6": 29.263705163835304, + "c7": -32.40364981328084 }, - "vertexSeeds": { - "c1": 5.706934937689966, - "c2": 5.506738111780671, - "c3": 5.786488929723575, - "c4": 5.666246027952426, - "c5": 5.6723753656184694, - "c6": 5.823248573125686, - "c7": 5.95460870081125 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -360510,23 +360510,23 @@ "year": 1801, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -31.702589442087916, - "c2": -29.532646956779484, - "c3": 19.939508245343028, - "c4": 4.706105334788781, - "c5": -22.894909255784903, - "c6": 4.508116627794479, - "c7": 18.740205326972266 + "points": { + "c1": -18.895437838963495, + "c2": -31.175828760265027, + "c3": -20.162506314311777, + "c4": -11.639506922233085, + "c5": -10.83734115282677, + "c6": 12.398025459443986, + "c7": 17.671771469821316 }, - "vertexSeeds": { - "c1": 5.520065502297364, - "c2": 5.915647604343196, - "c3": 5.5541636485127786, - "c4": 5.675651925814268, - "c5": 5.850741413313357, - "c6": 5.961994050322497, - "c7": 5.653264972768855 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -360537,23 +360537,23 @@ "year": 1801, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -16.064340025936467, - "c2": -11.016169534888443, - "c3": -26.634250110364043, - "c4": 19.88313232458711, - "c5": 4.807278823800189, - "c6": -20.496206698540462, - "c7": -21.991268088183197 + "points": { + "c1": 21.84768821153257, + "c2": 23.232070935558305, + "c3": 7.240066384683182, + "c4": -21.869685467256186, + "c5": -17.184873338909092, + "c6": 20.50131342183657, + "c7": 12.950839107754192 }, - "vertexSeeds": { - "c1": 5.682879762468899, - "c2": 5.689817007373101, - "c3": 5.712458526723192, - "c4": 5.977842660099465, - "c5": 5.768843922466716, - "c6": 5.655945096134637, - "c7": 5.81965319609419 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -360564,23 +360564,23 @@ "year": 1802, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": -11.221205380522328, - "c2": 4.816799809033526, - "c3": 8.485278891701995, - "c4": 47.01965238131502, - "c5": -14.831983136016419, - "c6": 45.44924157596207, - "c7": -11.957874279212305 + "points": { + "c1": 35.164631684271164, + "c2": 24.942051222372477, + "c3": 27.576901345926295, + "c4": -7.887630281816996, + "c5": -6.840622280995603, + "c6": 23.574256238412964, + "c7": 48.660658379223825 }, - "vertexSeeds": { - "c1": 5.362941317473422, - "c2": 5.168680235461532, - "c3": 5.032380040355253, - "c4": 5.10747349604579, - "c5": 4.990184532888857, - "c6": 5.277203218598044, - "c7": 5.044861959019948 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221913, + "c3": 6.449375866851592, + "c4": 5.159500693481272, + "c5": 3.869625520110952, + "c6": 2.5797503467406315, + "c7": 1.2898751733703204 }, "rgb": [222, 0, 59] }, @@ -360591,23 +360591,23 @@ "year": 1801, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 4.87710947630044, - "c2": 1.2858627208815179, - "c3": -3.985617493100051, - "c4": -16.33791364092902, - "c5": -33.26235197966729, - "c6": -7.71127688161452, - "c7": -26.350273282206395 + "points": { + "c1": -19.358754650152058, + "c2": 6.969939887018299, + "c3": 34.76310680525873, + "c4": -14.671047417719095, + "c5": 8.821808498233615, + "c6": -0.7809800557904865, + "c7": 16.262818252226175 }, - "vertexSeeds": { - "c1": 4.872708248017147, - "c2": 5.002831523728654, - "c3": 4.856047194397804, - "c4": 5.087510228441768, - "c5": 5.171477776674112, - "c6": 5.046996757872574, - "c7": 5.05870141311412 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -360618,23 +360618,23 @@ "year": 1801, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -9.587380133515772, - "c2": 0.6426249821742047, - "c3": 6.15503218374505, - "c4": -0.4621108046356994, - "c5": -20.077120052431788, - "c6": -18.370508292524256, - "c7": -27.61759411344172 + "points": { + "c1": -30.97166061666656, + "c2": 7.1291569324554445, + "c3": 28.223800397624807, + "c4": -13.32899702539942, + "c5": -30.344242559717493, + "c6": 25.780380381378386, + "c7": 33.367087548032025 }, - "vertexSeeds": { - "c1": 5.973018095821931, - "c2": 5.498727460293326, - "c3": 5.483037398944506, - "c4": 5.76394668129298, - "c5": 5.884388394701419, - "c6": 5.693913517362353, - "c7": 5.640519244640561 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -360645,23 +360645,23 @@ "year": 1801, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 7.760541058549009, - "c2": 17.098115578332866, - "c3": 4.301271507695741, - "c4": 15.464075933034565, - "c5": 1.1589953394997714, - "c6": -10.471495692286034, - "c7": 25.135790255513548 + "points": { + "c1": 18.522877973085933, + "c2": 13.93048998175584, + "c3": 1.3218069291341905, + "c4": -12.381680642064335, + "c5": 3.776622777556444, + "c6": -21.893399943008557, + "c7": 1.1800226456092133 }, - "vertexSeeds": { - "c1": 5.5302575166508, - "c2": 5.760819476013659, - "c3": 5.43390753779605, - "c4": 5.88069380985872, - "c5": 5.853109893430311, - "c6": 5.860563283527011, - "c7": 5.885452898689548 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -360672,23 +360672,23 @@ "year": 1801, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 18.593019708390468, - "c2": -14.960581544713616, - "c3": -18.862528262708004, - "c4": 7.9776788364532685, - "c5": -24.302927439445792, - "c6": 22.928923172719447, - "c7": 8.972556649025098 + "points": { + "c1": 3.415561563258727, + "c2": -3.2273051209028196, + "c3": -22.633272020118216, + "c4": -7.200804497285514, + "c5": 12.567284625779092, + "c6": -24.54178853563251, + "c7": -15.913069058271384 }, - "vertexSeeds": { - "c1": 5.826480035621677, - "c2": 5.461838488089944, - "c3": 5.9960972179439285, - "c4": 5.641770326310546, - "c5": 5.546184840724632, - "c6": 5.821695048255053, - "c7": 5.858714172263994 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -360699,23 +360699,23 @@ "year": 1801, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 9.793749465613956, - "c2": -14.400808409854122, - "c3": 30.59696209052941, - "c4": 11.201375564070311, - "c5": -20.879863497261223, - "c6": -30.242742847185475, - "c7": 4.308848437336529 + "points": { + "c1": -13.885243751834679, + "c2": -21.492822879369086, + "c3": -29.10986879905683, + "c4": -25.4494930076328, + "c5": -29.83135056009119, + "c6": 5.584799504291055, + "c7": -16.017726255817486 }, - "vertexSeeds": { - "c1": 5.9058297732706215, - "c2": 5.588121499873, - "c3": 5.483540796249999, - "c4": 5.475723167038882, - "c5": 5.627995312462092, - "c6": 5.853920242131277, - "c7": 5.95167668431824 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -360726,23 +360726,23 @@ "year": 1801, "resistanceReported": true, "duration": 20995200, - "curveSeeds": { - "c1": 13.693777085179157, - "c2": -11.586178353861634, - "c3": 8.07427575541503, - "c4": -20.02645080510764, - "c5": 7.305593445070045, - "c6": -3.619881813188016, - "c7": 25.621358881986048 + "points": { + "c1": 30.379738949535934, + "c2": 31.325227273901575, + "c3": 6.709915020412318, + "c4": 4.664714486558822, + "c5": 17.376542980007514, + "c6": 9.266033300671374, + "c7": 29.2002582875524 }, - "vertexSeeds": { - "c1": 5.6029072632596275, - "c2": 5.4931272007887575, - "c3": 5.6065434196024295, - "c4": 5.764980605350346, - "c5": 5.853455264252446, - "c6": 5.799433373921372, - "c7": 5.738841608451381 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -360753,23 +360753,23 @@ "year": 1801, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 12.866105206230266, - "c2": -15.771817173929996, - "c3": -3.2578667297225614, - "c4": -3.6912919824371677, - "c5": 16.579982212040484, - "c6": 11.561032970982232, - "c7": -20.29439400933631 + "points": { + "c1": 24.954619945109272, + "c2": -22.280609260863102, + "c3": 6.207304990390924, + "c4": 8.424893133869233, + "c5": 20.6842389984903, + "c6": -0.16608970950593616, + "c7": -20.642415885556932 }, - "vertexSeeds": { - "c1": 5.74771274339138, - "c2": 5.820236093612487, - "c3": 5.796160179443478, - "c4": 5.513109019515282, - "c5": 5.774255693926619, - "c6": 5.871087366782145, - "c7": 5.736164338247795 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -360780,23 +360780,23 @@ "year": 1803, "resistanceReported": false, "duration": 58838400, - "curveSeeds": { - "c1": 23.883707797133283, - "c2": -24.247021040740783, - "c3": -69.02909417028869, - "c4": 39.81404559380775, - "c5": 9.914289551720529, - "c6": -38.18987527737772, - "c7": -52.11672358109074 + "points": { + "c1": -70.53994601609165, + "c2": -6.92062030064848, + "c3": 47.550774279757135, + "c4": -60.603251635294676, + "c5": 66.71695620263552, + "c6": -57.39809964027613, + "c7": -23.01727876423154 }, - "vertexSeeds": { - "c1": 1.286174077734504, - "c2": 1.360311117244713, - "c3": 1.1952290397897396, - "c4": 1.3191318127347824, - "c5": 1.3984861946017468, - "c6": 1.2294864111518622, - "c7": 1.3960045930668183 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.080443828016644, + "c3": 1.7337031900138684, + "c4": 1.3869625520110953, + "c5": 1.040221914008322, + "c6": 0.6934812760055489, + "c7": 0.34674063800277327 }, "rgb": [77, 76, 132] }, @@ -360807,23 +360807,23 @@ "year": 1801, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 19.94931142603239, - "c2": -14.187000642085202, - "c3": 13.279229770846992, - "c4": 28.524338565004836, - "c5": 12.627054947912182, - "c6": -0.5543716502495037, - "c7": 30.8698027423592 + "points": { + "c1": -19.261596085236775, + "c2": -28.69510518654139, + "c3": 3.5401760334479846, + "c4": 4.582001716802104, + "c5": -0.49007135585267747, + "c6": -23.80691927049146, + "c7": -21.288966737465614 }, - "vertexSeeds": { - "c1": 5.479886995350215, - "c2": 5.647988094927223, - "c3": 5.443021250604224, - "c4": 5.562929033474405, - "c5": 5.9826966213483175, - "c6": 5.479399301366441, - "c7": 5.8332305328864065 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -360834,23 +360834,23 @@ "year": 1801, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -14.134769420360765, - "c2": 11.99007158461464, - "c3": -0.9572061949009658, - "c4": -9.183628887784291, - "c5": -11.902091995698076, - "c6": -12.796096502806572, - "c7": 5.955470908185223 + "points": { + "c1": -18.191906473995715, + "c2": 15.14231653686464, + "c3": 13.66000630569448, + "c4": -22.73400366528289, + "c5": -11.546623857228125, + "c6": -17.10279772075205, + "c7": -21.298502251720798 }, - "vertexSeeds": { - "c1": 5.522016701946051, - "c2": 5.5070374055346685, - "c3": 5.986435880532618, - "c4": 5.88663797350547, - "c5": 5.804087151577242, - "c6": 5.765558557524062, - "c7": 5.623500632553586 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -360861,23 +360861,23 @@ "year": 1802, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -5.442923089286108, - "c2": -23.02062673758565, - "c3": -17.13940518638485, - "c4": -6.09470819405044, - "c5": -17.776452571064542, - "c6": 15.626235758096463, - "c7": -29.444506162992973 + "points": { + "c1": 6.848143010823826, + "c2": -26.500089101007255, + "c3": -21.959671317877373, + "c4": -9.663862446629029, + "c5": 24.687036314573625, + "c6": -12.089081080390265, + "c7": -18.681459077062087 }, - "vertexSeeds": { - "c1": 3.441166567482753, - "c2": 3.65966251976742, - "c3": 3.744508885709065, - "c4": 3.5372240970013786, - "c5": 3.7376483624005292, - "c6": 3.6003303700391327, - "c7": 3.574167648783664 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803055, + "c3": 4.484512251502538, + "c4": 3.5876098012020328, + "c5": 2.6907073509015276, + "c6": 1.793804900601022, + "c7": 0.8969024503005054 }, "rgb": [238, 201, 159] }, @@ -360888,23 +360888,23 @@ "year": 1801, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 0.9682030341230714, - "c2": -2.7167181911358753, - "c3": 16.41161302186057, - "c4": 14.99372469431442, - "c5": 7.0539895342507855, - "c6": -22.34330373603871, - "c7": 3.6180052401613345 + "points": { + "c1": 8.697083713622451, + "c2": 23.192905107862803, + "c3": 2.1029681335851755, + "c4": 9.871998809554537, + "c5": -3.347246377535619, + "c6": -8.712231993391963, + "c7": 20.39266266675578 }, - "vertexSeeds": { - "c1": 5.690441085261977, - "c2": 5.538542228931989, - "c3": 5.485815794228739, - "c4": 5.946656160868288, - "c5": 5.956044557148736, - "c6": 5.793045496616373, - "c7": 5.630313260201844 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -360915,23 +360915,23 @@ "year": 1801, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -23.145324249117262, - "c2": -9.618790615331271, - "c3": -19.355860412061627, - "c4": -17.395906089328967, - "c5": 10.647644153426402, - "c6": -15.781773706754183, - "c7": 7.148350690064522 + "points": { + "c1": 27.70693391810276, + "c2": 27.670402312592028, + "c3": -24.86668702234512, + "c4": 5.7364614453948555, + "c5": 21.279479416193762, + "c6": -25.22822549849941, + "c7": 7.136419117652007 }, - "vertexSeeds": { - "c1": 5.509924211150385, - "c2": 5.860673259760496, - "c3": 5.660103488301956, - "c4": 5.77950065171701, - "c5": 5.85396528455248, - "c6": 5.55542261349693, - "c7": 5.750656245125025 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -360942,23 +360942,23 @@ "year": 1802, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -31.307625888484512, - "c2": 36.32885003605191, - "c3": -0.24865622523160624, - "c4": -5.463790676066928, - "c5": -6.205658557403005, - "c6": -26.11415137341643, - "c7": 12.003032047620415 + "points": { + "c1": 19.44357553687791, + "c2": 20.039226251809104, + "c3": -24.735565644762346, + "c4": -46.83956688523473, + "c5": -42.60321775666136, + "c6": -25.358961682861022, + "c7": -24.299435289638716 }, - "vertexSeeds": { - "c1": 5.482267461010163, - "c2": 5.777578367667342, - "c3": 5.4507572755925615, - "c4": 5.713771522216737, - "c5": 5.549222691594018, - "c6": 5.736379096032012, - "c7": 5.769620624659462 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.54368932038835, + "c3": 7.119741100323624, + "c4": 5.6957928802588995, + "c5": 4.271844660194175, + "c6": 2.8478964401294498, + "c7": 1.4239482200647249 }, "rgb": [77, 76, 132] }, @@ -360969,23 +360969,23 @@ "year": 1801, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 23.264476419286858, - "c2": -3.900491769365349, - "c3": 26.9287284719789, - "c4": -13.96060088987612, - "c5": 1.5081284535757078, - "c6": 19.38232268305422, - "c7": 25.862445487451104 + "points": { + "c1": -22.039369189006006, + "c2": -1.311991156775985, + "c3": 3.6853399448536237, + "c4": 17.3812407115094, + "c5": 27.96013337588733, + "c6": -8.278727277980803, + "c7": -21.97562915144346 }, - "vertexSeeds": { - "c1": 5.514719202655915, - "c2": 5.841595648312083, - "c3": 5.500034130245121, - "c4": 5.5591914857702545, - "c5": 5.912011299210731, - "c6": 5.988712589626921, - "c7": 5.530838305124389 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -360996,23 +360996,23 @@ "year": 1801, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 3.6505577703287457, - "c2": 2.3842297872757108, - "c3": 6.879846215250687, - "c4": 18.434237527879652, - "c5": -17.197854794851715, - "c6": -27.20333065338695, - "c7": -20.538506880109715 + "points": { + "c1": -7.941569113757211, + "c2": -13.708630243630612, + "c3": -16.59115615952654, + "c4": -4.93037581557504, + "c5": -11.717276465610787, + "c6": -4.644391821967275, + "c7": 7.686270157351736 }, - "vertexSeeds": { - "c1": 14.155598177402462, - "c2": 14.175866384970824, - "c3": 13.925250557357213, - "c4": 13.920147233167734, - "c5": 14.172704445168872, - "c6": 13.9975152528069, - "c7": 14.03012692854528 + "offsets": { + "c1": 23.689320388349515, + "c2": 20.30513176144239, + "c3": 16.920943134535385, + "c4": 13.536754507628261, + "c5": 10.152565880721255, + "c6": 6.768377253814131, + "c7": 3.384188626907124 }, "rgb": [77, 76, 132] }, @@ -361023,23 +361023,23 @@ "year": 1801, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": -3.6119080171987257, - "c2": -9.526714235999693, - "c3": -8.527809628924821, - "c4": 4.971599464895622, - "c5": 8.528577217153313, - "c6": 9.677895715511355, - "c7": 21.937930462929522 + "points": { + "c1": -26.406130385726474, + "c2": -10.523330497535419, + "c3": 16.592094808695926, + "c4": -2.4737010010642173, + "c5": -25.591847181005583, + "c6": 18.15527573561404, + "c7": 19.74509443363621 }, - "vertexSeeds": { - "c1": 10.92405926797881, - "c2": 10.921410847959573, - "c3": 10.901891401396924, - "c4": 10.91678589480567, - "c5": 10.926331426159432, - "c6": 10.906701713606727, - "c7": 10.903127963568235 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725284, + "c3": 13.06056403143762, + "c4": 10.448451225149958, + "c5": 7.836338418862988, + "c6": 5.224225612575325, + "c7": 2.6121128062876626 }, "rgb": [58, 15, 49] }, @@ -361050,23 +361050,23 @@ "year": 1801, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 2.1871553872788994, - "c2": 8.675739593736829, - "c3": -20.890870522791133, - "c4": -1.3537271548841083, - "c5": -28.4929202510867, - "c6": -19.77642144550648, - "c7": 25.32081483275531 + "points": { + "c1": 0.30207421709760496, + "c2": 19.329079313622678, + "c3": -18.51652926424098, + "c4": 2.7956138230815526, + "c5": -0.5879030898508688, + "c6": -14.247888846951625, + "c7": -21.422127092258226 }, - "vertexSeeds": { - "c1": 5.6412127088980935, - "c2": 5.8649337222372715, - "c3": 5.771730518229691, - "c4": 5.413046440533774, - "c5": 5.578159607717476, - "c6": 5.976741100187104, - "c7": 5.42663355878199 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -361077,23 +361077,23 @@ "year": 1801, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -23.036393220108188, - "c2": 20.68693364344749, - "c3": -11.779438313630507, - "c4": -13.620168074612062, - "c5": 27.09576327895416, - "c6": 17.934148487300504, - "c7": -9.802687681667951 + "points": { + "c1": 20.098665100001426, + "c2": 12.970976181033357, + "c3": -13.342154450549756, + "c4": 19.1407954425044, + "c5": 29.600292596930437, + "c6": -28.92640680300663, + "c7": 12.105965836141479 }, - "vertexSeeds": { - "c1": 5.664639059978155, - "c2": 5.803483928096463, - "c3": 5.73333868566385, - "c4": 5.478918250216407, - "c5": 5.956522344088385, - "c6": 5.776060708094166, - "c7": 5.66976117101734 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -361104,23 +361104,23 @@ "year": 1801, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -3.0003417740369613, - "c2": 3.682813691447098, - "c3": -15.614345751724441, - "c4": 20.611503148350213, - "c5": -7.277891702697975, - "c6": 6.584186908807691, - "c7": 16.265902119373113 + "points": { + "c1": -11.09014548168959, + "c2": -17.652406804701116, + "c3": 16.52258089727, + "c4": 12.542231991578664, + "c5": -0.8113882238524432, + "c6": -5.942092121378408, + "c7": -23.928166122816293 }, - "vertexSeeds": { - "c1": 5.704848235095312, - "c2": 5.564441991450873, - "c3": 5.436983539869433, - "c4": 5.607225694703046, - "c5": 5.683346896900337, - "c6": 5.7309223729679175, - "c7": 5.669891748296193 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -361131,23 +361131,23 @@ "year": 1801, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -16.61741314526936, - "c2": 11.229500233881819, - "c3": -10.113883723219466, - "c4": 19.639452365365965, - "c5": 10.274208905806528, - "c6": 22.045983055577285, - "c7": -4.492917713527639 + "points": { + "c1": 21.817824483916493, + "c2": 10.170722859881163, + "c3": -13.523689606588079, + "c4": -13.677646025342257, + "c5": -13.525752726775012, + "c6": 12.3871862055944, + "c7": 22.926635517696365 }, - "vertexSeeds": { - "c1": 5.492252855459261, - "c2": 5.853475476809328, - "c3": 5.503536646349853, - "c4": 5.570641121947702, - "c5": 5.962328609350204, - "c6": 5.431691035273202, - "c7": 5.9405670093014455 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -361158,23 +361158,23 @@ "year": 1801, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 21.57901387091686, - "c2": 15.128441138260506, - "c3": -21.429129779272767, - "c4": -24.01130154078224, - "c5": -20.908637171918052, - "c6": -4.478421676403983, - "c7": 7.002436250296 + "points": { + "c1": 10.940860894716934, + "c2": 2.468829137257913, + "c3": 3.6455006124866998, + "c4": 12.705304768916939, + "c5": 17.430129630755893, + "c6": 6.162985290586498, + "c7": 8.956763837382816 }, - "vertexSeeds": { - "c1": 1.4265310665413695, - "c2": 1.4369810157385023, - "c3": 1.483196192584953, - "c4": 1.4697853078567324, - "c5": 1.46242165435642, - "c6": 1.4756520565213564, - "c7": 1.4330828849252553 + "offsets": { + "c1": 2.394822006472492, + "c2": 2.052704576976423, + "c3": 1.7105871474803538, + "c4": 1.3684697179842762, + "c5": 1.0263522884882073, + "c6": 0.6842348589921381, + "c7": 0.34211742949606905 }, "rgb": [58, 15, 49] }, @@ -361185,23 +361185,23 @@ "year": 1802, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 12.814361537118575, - "c2": -9.155157989227312, - "c3": 1.1600244079127542, - "c4": -17.69138113406571, - "c5": 16.647509510326795, - "c6": -13.983601006870298, - "c7": -19.07076482438613 + "points": { + "c1": -16.8350914719218, + "c2": 22.495396915952618, + "c3": 24.911033948447425, + "c4": 29.01432447089173, + "c5": 14.573930508329667, + "c6": -25.695687433958756, + "c7": -33.35403780847821 }, - "vertexSeeds": { - "c1": 6.663021647573746, - "c2": 6.809510219082513, - "c3": 6.738911619461453, - "c4": 6.841745499294823, - "c5": 6.845448281419805, - "c6": 6.82952729961721, - "c7": 7.00743038199898 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761441, + "c3": 8.483587609801203, + "c4": 6.786870087840962, + "c5": 5.090152565880721, + "c6": 3.393435043920481, + "c7": 1.6967175219602404 }, "rgb": [238, 201, 159] }, @@ -361212,23 +361212,23 @@ "year": 1801, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -11.914105289423558, - "c2": 16.586745734934226, - "c3": 3.9874475498584765, - "c4": -22.746526321669563, - "c5": -0.09923697978435442, - "c6": -14.495562172311828, - "c7": -7.395827053611303 + "points": { + "c1": 7.551232474724813, + "c2": 23.061315241825312, + "c3": 21.938143516399315, + "c4": -7.48535321892378, + "c5": 21.212949392526788, + "c6": -9.361619204246917, + "c7": 3.6097658910595953 }, - "vertexSeeds": { - "c1": 5.179878563280248, - "c2": 5.1412672860749415, - "c3": 5.261766289235454, - "c4": 5.206000459962606, - "c5": 4.863711606055941, - "c6": 5.058320396101524, - "c7": 5.198531727158369 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -361239,23 +361239,23 @@ "year": 1801, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 21.05431960984229, - "c2": 1.05202248178038, - "c3": -7.632285241877632, - "c4": -20.428400889469934, - "c5": 23.64039896082521, - "c6": 7.215446628893794, - "c7": -12.405426978099596 + "points": { + "c1": -19.02623743881478, + "c2": -13.301867332485818, + "c3": 4.035146384909055, + "c4": 10.324210766726189, + "c5": -10.170423746964548, + "c6": -22.64668740989983, + "c7": -9.122208729839866 }, - "vertexSeeds": { - "c1": 5.974518878449725, - "c2": 5.97928183536808, - "c3": 5.748869522200193, - "c4": 5.59354512044718, - "c5": 5.886219284234209, - "c6": 5.563662693486521, - "c7": 5.718043298814787 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -361266,23 +361266,23 @@ "year": 1801, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 8.11813764117451, - "c2": -26.04277808472702, - "c3": -5.143967032441196, - "c4": -1.2971096511170828, - "c5": 6.891618351553479, - "c6": 24.65790720000069, - "c7": -5.34061563877578 + "points": { + "c1": -19.36808304977245, + "c2": -9.545261882820217, + "c3": -0.5943611729000509, + "c4": -14.33246557681704, + "c5": 19.295735791606443, + "c6": 20.777387746010366, + "c7": 1.2607682762499444 }, - "vertexSeeds": { - "c1": 5.890135538740954, - "c2": 5.9223720996906675, - "c3": 5.922399481673146, - "c4": 5.969529025828785, - "c5": 5.763873954383528, - "c6": 5.710436279977932, - "c7": 5.624157909715071 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -361293,23 +361293,23 @@ "year": 1801, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -1.4502863083544106, - "c2": 11.255788705288246, - "c3": -1.170079607888475, - "c4": -15.72528044855306, - "c5": -26.003176415789518, - "c6": 11.372118909342866, - "c7": 27.54490817186931 + "points": { + "c1": -22.86319715628734, + "c2": -20.19037527679271, + "c3": -3.396535421729496, + "c4": -10.312204295909979, + "c5": 10.43579763615493, + "c6": 28.794999026014402, + "c7": -18.155840332643137 }, - "vertexSeeds": { - "c1": 5.86057188943072, - "c2": 5.681355161711608, - "c3": 5.817178039926108, - "c4": 5.934831064915384, - "c5": 5.456558937859249, - "c6": 5.411625562194865, - "c7": 5.642863531142412 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -361320,23 +361320,23 @@ "year": 1802, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 32.10019570747308, - "c2": 38.928871904355276, - "c3": 3.9720554473355705, - "c4": -6.593229876932803, - "c5": 34.35058115239315, - "c6": 39.552555690253826, - "c7": 29.535543457529087 + "points": { + "c1": -25.58664798086514, + "c2": 23.17304997575485, + "c3": 21.05794268037255, + "c4": -24.638978110374797, + "c5": -1.3408923402071622, + "c6": 17.115529426579812, + "c7": -38.95525704320849 }, - "vertexSeeds": { - "c1": 5.731706779718386, - "c2": 5.457536493921682, - "c3": 5.575798652247089, - "c4": 5.757693631543022, - "c5": 5.8269220379938975, - "c6": 5.567248024930097, - "c7": 5.85140709368401 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [86, 146, 138] }, @@ -361347,23 +361347,23 @@ "year": 1801, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 24.966105624199233, - "c2": 9.820779377647323, - "c3": 27.308228041052043, - "c4": -3.121288375941635, - "c5": 9.808481065029827, - "c6": -8.026336894526391, - "c7": 18.276895006895845 + "points": { + "c1": -21.036745097679344, + "c2": -27.220349477887392, + "c3": 12.698502251235194, + "c4": 7.233965232424328, + "c5": -18.519120475944547, + "c6": -16.379323352715886, + "c7": -23.819448591859114 }, - "vertexSeeds": { - "c1": 5.094798121439751, - "c2": 4.877225416002732, - "c3": 4.874010635272602, - "c4": 4.997846022573262, - "c5": 5.1742994296477764, - "c6": 4.881942162583451, - "c7": 4.860680959953751 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -361374,23 +361374,23 @@ "year": 1802, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 23.067611540683778, - "c2": -8.078342051545782, - "c3": -13.210338428642299, - "c4": -36.26610927149962, - "c5": -28.734924216272105, - "c6": -33.44403827528404, - "c7": -38.06037196028553 + "points": { + "c1": -0.6981005820553037, + "c2": -35.32826335831783, + "c3": 22.46854677723507, + "c4": 34.824560554921085, + "c5": 4.3915641355772905, + "c6": -21.72655164375767, + "c7": 9.080952718695407 }, - "vertexSeeds": { - "c1": 9.166007869234937, - "c2": 9.473157380663281, - "c3": 9.13777748770421, - "c4": 9.167648686830848, - "c5": 9.709054454928562, - "c6": 9.694614415584676, - "c7": 9.2564907238214 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.925104022191395, + "c3": 11.604253351826152, + "c4": 9.28340268146094, + "c5": 6.962552011095697, + "c6": 4.641701340730455, + "c7": 2.3208506703652128 }, "rgb": [77, 76, 132] }, @@ -361401,23 +361401,23 @@ "year": 1802, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -20.411494743106502, - "c2": 10.935836593646602, - "c3": -28.279114898676077, - "c4": 26.534808690488088, - "c5": -2.163831601726443, - "c6": 7.362581708336517, - "c7": 2.0968729847054064 + "points": { + "c1": -27.92485661208754, + "c2": -26.97041619238597, + "c3": -15.57841219513817, + "c4": 2.3258016137444777, + "c5": 0.9350057773157125, + "c6": -17.950964878589822, + "c7": -29.01747309311794 }, - "vertexSeeds": { - "c1": 5.591202717972072, - "c2": 5.385936417680878, - "c3": 5.406657348517633, - "c4": 5.276565012153642, - "c5": 5.397289501905642, - "c6": 5.395406298538968, - "c7": 5.1064290855592995 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186773, + "c4": 5.344429033749432, + "c5": 4.008321775312075, + "c6": 2.672214516874716, + "c7": 1.336107258437358 }, "rgb": [238, 201, 159] }, @@ -361428,23 +361428,23 @@ "year": 1802, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 12.533616206612574, - "c2": 25.95607485651389, - "c3": 19.101415421594748, - "c4": -9.97505919149668, - "c5": -22.64336522057544, - "c6": -7.957623235469814, - "c7": 9.848662961837707 + "points": { + "c1": 27.128921951083722, + "c2": -27.95319499539309, + "c3": 31.286169893079407, + "c4": -12.59668457876051, + "c5": -14.127019737968808, + "c6": -19.103221592270923, + "c7": -20.39005098623008 }, - "vertexSeeds": { - "c1": 5.627433704597443, - "c2": 6.036145101160447, - "c3": 6.1014733584361505, - "c4": 5.536624792416972, - "c5": 5.9294957282293, - "c6": 5.9474587087332536, - "c7": 5.855939297138874 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710128, + "c3": 7.304669440591775, + "c4": 5.843735552473406, + "c5": 4.382801664355055, + "c6": 2.921867776236703, + "c7": 1.4609338881183516 }, "rgb": [86, 146, 138] }, @@ -361455,23 +361455,23 @@ "year": 1802, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -25.495834141595026, - "c2": 11.856833160826504, - "c3": 7.848187303647663, - "c4": -27.707382455450713, - "c5": -11.000750650260233, - "c6": -4.289274705337217, - "c7": 14.073420373503147 + "points": { + "c1": 22.603917130726913, + "c2": 30.57112684873875, + "c3": 33.27570890454596, + "c4": 12.637059586004796, + "c5": -27.92721654554838, + "c6": -22.40753446372949, + "c7": -1.6385081409496678 }, - "vertexSeeds": { - "c1": 5.823547615430916, - "c2": 5.974039643109439, - "c3": 5.928072891657193, - "c4": 5.565598269827202, - "c5": 5.842020917815548, - "c6": 5.446436483412507, - "c7": 5.890435539963931 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -361482,23 +361482,23 @@ "year": 1802, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 27.850501741735044, - "c2": 9.237679298097248, - "c3": -11.641809066584223, - "c4": -5.493263817944708, - "c5": 7.776310646104285, - "c6": 3.755054768424884, - "c7": 13.356700854055653 + "points": { + "c1": 30.10657078592495, + "c2": 17.15417213450936, + "c3": -4.3586832409684675, + "c4": 3.9705214304829113, + "c5": -12.12007340995136, + "c6": -5.2907784628934, + "c7": -7.692861873078662 }, - "vertexSeeds": { - "c1": 5.597099271201285, - "c2": 5.919719658720757, - "c3": 5.4918388370457665, - "c4": 5.704428160308891, - "c5": 5.6091957593444794, - "c6": 5.426274764614786, - "c7": 5.9566316612862025 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -361509,23 +361509,23 @@ "year": 1802, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 28.14171041374297, - "c2": 9.08742639885228, - "c3": 26.062984631723573, - "c4": -12.123616670123024, - "c5": -3.1268389286428295, - "c6": 10.80892221863187, - "c7": 5.002326637175457 + "points": { + "c1": -13.1572185636036, + "c2": -14.90404791410951, + "c3": 28.60673771664228, + "c4": -10.439951558546934, + "c5": 24.320237796253664, + "c6": -24.21033768347497, + "c7": -27.12226446995924 }, - "vertexSeeds": { - "c1": 6.373914851696787, - "c2": 6.1570846367430505, - "c3": 6.028884588403271, - "c4": 6.415913790173787, - "c5": 6.132995773467202, - "c6": 6.208274470663932, - "c7": 6.266490757365537 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795649, + "c4": 6.2320850670365155, + "c5": 4.674063800277399, + "c6": 3.1160425335182667, + "c7": 1.5580212667591333 }, "rgb": [238, 201, 159] }, @@ -361536,23 +361536,23 @@ "year": 1802, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 8.621172774390548, - "c2": -22.448327540874242, - "c3": 0.21772494238049234, - "c4": 22.643840468573845, - "c5": 19.698392322338282, - "c6": 10.250216942743062, - "c7": 21.97671868681969 + "points": { + "c1": -26.29699178160425, + "c2": 17.060947155987932, + "c3": -2.316883393454347, + "c4": 12.572812518057965, + "c5": 29.54948690536795, + "c6": 23.017931933896556, + "c7": -6.5212390728310226 }, - "vertexSeeds": { - "c1": 6.149775836196337, - "c2": 5.89169085736195, - "c3": 6.244340066592531, - "c4": 5.852732440194432, - "c5": 6.168519681459076, - "c6": 5.7485263835690565, - "c7": 5.847344688637115 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.9875173370319, + "c3": 7.489597780859917, + "c4": 5.991678224687933, + "c5": 4.49375866851595, + "c6": 2.9958391123439667, + "c7": 1.4979195561719834 }, "rgb": [222, 0, 59] }, @@ -361563,23 +361563,23 @@ "year": 1801, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -2.665261212164406, - "c2": -10.93631367393297, - "c3": 12.836753683289984, - "c4": -4.119443101707361, - "c5": -13.313317455162151, - "c6": -4.4604472720135675, - "c7": -12.820343320022994 + "points": { + "c1": 1.7797108226721114, + "c2": -20.065700038632535, + "c3": -9.076992119643412, + "c4": 6.329888324529236, + "c5": 19.494941754997726, + "c6": 16.451030492953528, + "c7": -1.0340178022276127 }, - "vertexSeeds": { - "c1": 7.701455355276588, - "c2": 7.7520318545873055, - "c3": 7.725889510355477, - "c4": 7.697743826435333, - "c5": 7.7389736260199005, - "c6": 7.727039446223921, - "c7": 7.75505703285946 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128988, + "c3": 9.269533055940824, + "c4": 7.415626444752658, + "c5": 5.561719833564494, + "c6": 3.707813222376329, + "c7": 1.8539066111881646 }, "rgb": [238, 201, 159] }, @@ -361590,23 +361590,23 @@ "year": 1802, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -15.40696469617123, - "c2": -20.591491227625013, - "c3": -18.32809387685083, - "c4": -20.350623729408007, - "c5": -23.435258984222884, - "c6": 21.13059912568564, - "c7": -6.271983845714626 + "points": { + "c1": -4.478302190485341, + "c2": -19.811737761237374, + "c3": 27.682590866834452, + "c4": -30.954545137510255, + "c5": 17.54974887738895, + "c6": 13.19305927719892, + "c7": 15.649371679989052 }, - "vertexSeeds": { - "c1": 6.1123010441299845, - "c2": 5.743032947875018, - "c3": 5.677276775316438, - "c4": 5.828730822929535, - "c5": 6.023491171541003, - "c6": 5.962352649751371, - "c7": 6.270059372872877 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.9875173370319, + "c3": 7.489597780859917, + "c4": 5.991678224687933, + "c5": 4.49375866851595, + "c6": 2.9958391123439667, + "c7": 1.4979195561719834 }, "rgb": [222, 0, 59] }, @@ -361617,23 +361617,23 @@ "year": 1802, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -0.24617395977232803, - "c2": 8.370268741834956, - "c3": 2.963898747904814, - "c4": 22.03950341996503, - "c5": 24.189654793914364, - "c6": 17.914826496466034, - "c7": -10.419324421326305 + "points": { + "c1": 3.7366575976923997, + "c2": 9.255482021763676, + "c3": 1.9725724543656185, + "c4": -26.72980391282162, + "c5": -24.068380076291156, + "c6": 5.531769024305831, + "c7": 13.29023211050984 }, - "vertexSeeds": { - "c1": 6.493367349352066, - "c2": 7.222228268495007, - "c3": 6.638074979867517, - "c4": 7.233995965674, - "c5": 6.942379956720554, - "c6": 6.477605533518832, - "c7": 6.338748636994434 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324548, + "c3": 8.807212205270456, + "c4": 7.045769764216362, + "c5": 5.28432732316227, + "c6": 3.5228848821081757, + "c7": 1.7614424410540825 }, "rgb": [77, 76, 132] }, @@ -361644,23 +361644,23 @@ "year": 1802, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 12.433736840778284, - "c2": -17.64856285776963, - "c3": -25.01126096593938, - "c4": 16.456606535778942, - "c5": 10.011190135067746, - "c6": -11.169435022206727, - "c7": -24.278760966294367 + "points": { + "c1": -13.169775049806397, + "c2": 12.206970736728923, + "c3": -7.301808177225077, + "c4": -23.857298140593095, + "c5": -2.961480008465866, + "c6": -13.250366860334086, + "c7": -26.30325251353719 }, - "vertexSeeds": { - "c1": 3.582035274871397, - "c2": 3.6671444031678506, - "c3": 3.5751816217116703, - "c4": 3.536401608146386, - "c5": 3.5681063462761347, - "c6": 3.707305112084158, - "c7": 3.8102236964449085 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.5201109570041655, + "c3": 4.600092464170133, + "c4": 3.680073971336111, + "c5": 2.7600554785020774, + "c6": 1.8400369856680554, + "c7": 0.9200184928340222 }, "rgb": [77, 76, 132] }, @@ -361671,23 +361671,23 @@ "year": 1801, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -25.465277400054177, - "c2": -24.00237062332037, - "c3": -6.564099071585616, - "c4": 4.016685327528876, - "c5": -21.982776736029965, - "c6": -20.018146520104985, - "c7": 3.1553473954876985 + "points": { + "c1": -8.121793404952594, + "c2": -6.880710432701907, + "c3": -0.4872719198359512, + "c4": 2.302812944045737, + "c5": -9.009109695517033, + "c6": 24.027206623168844, + "c7": 17.136376711460407 }, - "vertexSeeds": { - "c1": 1.9242912218283843, - "c2": 1.9597608637335946, - "c3": 1.8921334363475188, - "c4": 1.9158261215126762, - "c5": 1.8873454133387917, - "c6": 1.9163405589262752, - "c7": 1.9366932648990496 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.6907073509015293, + "c3": 2.24225612575127, + "c4": 1.79380490060102, + "c5": 1.3453536754507605, + "c6": 0.89690245030051, + "c7": 0.4484512251502594 }, "rgb": [86, 146, 138] }, @@ -361698,23 +361698,23 @@ "year": 1802, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 35.775813091974804, - "c2": -31.70791263165102, - "c3": 10.889815182009244, - "c4": 18.988107331074794, - "c5": -34.2219801016784, - "c6": 7.585784921308459, - "c7": -21.526097715919953 + "points": { + "c1": -36.90338979531374, + "c2": 32.539843963984985, + "c3": 13.650229258189121, + "c4": 30.6567347570926, + "c5": -35.97985458861928, + "c6": -22.694304492656226, + "c7": -3.6024673156213964 }, - "vertexSeeds": { - "c1": 15.023827111530624, - "c2": 14.818601300486156, - "c3": 15.347716762283028, - "c4": 14.88339299140956, - "c5": 15.011481419329817, - "c6": 15.365721197468485, - "c7": 14.903298499633598 + "offsets": { + "c1": 25.6957928802589, + "c2": 22.02496532593621, + "c3": 18.354137771613527, + "c4": 14.683310217290838, + "c5": 11.012482662968061, + "c6": 7.341655108645374, + "c7": 3.670827554322687 }, "rgb": [77, 76, 132] }, @@ -361725,23 +361725,23 @@ "year": 1802, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -4.120471991623884, - "c2": -29.417928784818, - "c3": 31.449920732949238, - "c4": -18.13875404441, - "c5": 1.662033999945038, - "c6": 35.192638845411324, - "c7": 5.02803161851994 + "points": { + "c1": -15.292638175725738, + "c2": -5.938151861724499, + "c3": 35.15323941904386, + "c4": -8.21901275183368, + "c5": 18.019563313566863, + "c6": -25.019609524673065, + "c7": -18.97365457422606 }, - "vertexSeeds": { - "c1": 1.8356238192602774, - "c2": 1.7795525487345256, - "c3": 1.8982311852339575, - "c4": 1.8078609363337848, - "c5": 1.8335936227823793, - "c6": 1.7742649593723796, - "c7": 1.8724278178744105 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022193, + "c3": 2.3116042533518235, + "c4": 1.84928340268146, + "c5": 1.3869625520110964, + "c6": 0.9246417013407329, + "c7": 0.46232085067036355 }, "rgb": [222, 0, 59] }, @@ -361752,23 +361752,23 @@ "year": 1802, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 23.425145889984584, - "c2": -15.412857458068036, - "c3": -8.253476955378709, - "c4": 12.446666377013308, - "c5": -24.274965151802885, - "c6": 21.763805638758683, - "c7": -26.283957593343022 + "points": { + "c1": -28.17614950961878, + "c2": 30.35462258422563, + "c3": -30.009695919426882, + "c4": 22.94720716516572, + "c5": 30.670137132375622, + "c6": 10.085447272284675, + "c7": -12.463800382549127 }, - "vertexSeeds": { - "c1": 3.9904902635838178, - "c2": 4.143286258011779, - "c3": 3.8860137720904113, - "c4": 3.8992348935638126, - "c5": 3.83413181486647, - "c6": 4.088925727578902, - "c7": 4.059519336570136 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848822, + "c3": 5.08552935737402, + "c4": 4.068423485899218, + "c5": 3.0513176144244065, + "c6": 2.0342117429496045, + "c7": 1.0171058714748022 }, "rgb": [58, 15, 49] }, @@ -361779,23 +361779,23 @@ "year": 1801, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -6.731540425757119, - "c2": 9.34904156472641, - "c3": -19.37565575315802, - "c4": 20.69639200352839, - "c5": -19.733447317601446, - "c6": 12.392864939009637, - "c7": -9.46560035975533 + "points": { + "c1": 2.6424511990807105, + "c2": 24.572406744692277, + "c3": -14.58408919778545, + "c4": -24.41066942815003, + "c5": -3.1131397893870947, + "c6": -24.692990520844116, + "c7": 16.901223375006158 }, - "vertexSeeds": { - "c1": 5.815162594518861, - "c2": 5.802545292469578, - "c3": 5.7047954382494686, - "c4": 5.753161015245913, - "c5": 5.640471682435623, - "c6": 5.6847454542966025, - "c7": 5.550031461743097 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -361806,23 +361806,23 @@ "year": 1802, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 4.771648122916972, - "c2": -11.274669956233112, - "c3": 14.982860716990643, - "c4": -25.211064707148473, - "c5": -1.7413710795307722, - "c6": 22.749832753943608, - "c7": -23.17682856575071 + "points": { + "c1": -13.381835562194514, + "c2": -31.01053440818216, + "c3": 28.57047231161524, + "c4": -29.997957177387555, + "c5": -5.76314448118098, + "c6": -16.131694400433496, + "c7": -11.92929891511503 }, - "vertexSeeds": { - "c1": 5.697196420245115, - "c2": 5.523325390241023, - "c3": 5.650238258891078, - "c4": 5.675469148100929, - "c5": 5.444824807298541, - "c6": 5.438070275116143, - "c7": 5.500525036337983 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [238, 201, 159] }, @@ -361833,23 +361833,23 @@ "year": 1802, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 20.193521344674657, - "c2": -10.17864101925618, - "c3": -28.162322621059886, - "c4": 4.394253392900211, - "c5": 2.1788997485102612, - "c6": 5.380590921990773, - "c7": -8.280409725787088 + "points": { + "c1": 11.825316623915207, + "c2": -26.123123857205652, + "c3": 16.816842615173528, + "c4": 14.496895058910361, + "c5": -0.7548681976081042, + "c6": -31.853507126190326, + "c7": 13.542755700139374 }, - "vertexSeeds": { - "c1": 4.961499059306838, - "c2": 4.787434524202939, - "c3": 5.040888108960466, - "c4": 5.021548335100431, - "c5": 4.87241007092762, - "c6": 5.008406429349274, - "c7": 5.013258345269144 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061028, + "c3": 6.3569116967175265, + "c4": 5.085529357374025, + "c5": 3.814147018030523, + "c6": 2.5427646786870124, + "c7": 1.2713823393435018 }, "rgb": [58, 15, 49] }, @@ -361860,23 +361860,23 @@ "year": 1802, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": -46.596221416822615, - "c2": -39.411051504688814, - "c3": 53.03006675726259, - "c4": -55.344543093829834, - "c5": 17.528108972483963, - "c6": 19.945851883378694, - "c7": -19.582031444714623 + "points": { + "c1": -50.81520374359324, + "c2": 24.655456414889542, + "c3": -0.2042798698575723, + "c4": 53.6777791198282, + "c5": 15.808091089692681, + "c6": -4.0945198651911525, + "c7": -14.909121051850548 }, - "vertexSeeds": { - "c1": 2.773422628877727, - "c2": 2.953455902554501, - "c3": 2.783299542106367, - "c4": 3.001415692336267, - "c5": 2.8731586495477486, - "c6": 3.0263042271425737, - "c7": 2.9607213641337338 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355064, + "c3": 3.6523347202958885, + "c4": 2.921867776236713, + "c5": 2.191400832177527, + "c6": 1.4609338881183516, + "c7": 0.7304669440591758 }, "rgb": [77, 76, 132] }, @@ -361887,23 +361887,23 @@ "year": 1802, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 16.09418549831477, - "c2": -0.9486287049253832, - "c3": 19.322285752743337, - "c4": -19.993608345738572, - "c5": -5.551680151590464, - "c6": -14.592009888183764, - "c7": 23.489291545773423 + "points": { + "c1": -7.5651745153813685, + "c2": -8.850797513200387, + "c3": 26.140782007958858, + "c4": -0.7542263399221341, + "c5": 14.515982530297283, + "c6": 3.6191532949118006, + "c7": 18.52540732801769 }, - "vertexSeeds": { - "c1": 5.6587176215124755, - "c2": 5.7171774955670545, - "c3": 5.722160464451456, - "c4": 5.598353813087808, - "c5": 5.679787790439255, - "c6": 5.5965260615564025, - "c7": 5.426620811527838 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -361914,23 +361914,23 @@ "year": 1802, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 21.053717975523977, - "c2": 18.238970371014137, - "c3": 16.048272663021965, - "c4": 21.588560297166072, - "c5": -11.96812304909989, - "c6": -14.63984696180804, - "c7": -14.98696132313294 + "points": { + "c1": -15.67956037642028, + "c2": -6.262923854755339, + "c3": -2.738834286909867, + "c4": 26.433073964523242, + "c5": 12.580623164860217, + "c6": -2.5077784400759526, + "c7": 1.1655741637703834 }, - "vertexSeeds": { - "c1": 3.6337921020657027, - "c2": 3.402151356540307, - "c3": 3.3163152658211956, - "c4": 3.5314479837161974, - "c5": 3.5916514132957467, - "c6": 3.582677495106595, - "c7": 3.3547493995744784 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642161, + "c3": 4.392048081368474, + "c4": 3.513638465094777, + "c5": 2.6352288488210807, + "c6": 1.7568192325473841, + "c7": 0.8784096162736966 }, "rgb": [77, 76, 132] }, @@ -361941,23 +361941,23 @@ "year": 1802, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -23.1885199220496, - "c2": -31.77767570665656, - "c3": -31.654461989935204, - "c4": -0.2791399295604151, - "c5": -14.838748781497323, - "c6": -4.86916596383049, - "c7": -17.205081386242767 + "points": { + "c1": -2.356887515882562, + "c2": 20.039499712479774, + "c3": 11.51079708706689, + "c4": -33.266897914980795, + "c5": 33.66965088655613, + "c6": 3.643633056050831, + "c7": -29.520442349002 }, - "vertexSeeds": { - "c1": 8.853351741654897, - "c2": 8.350033351029918, - "c3": 8.985388750952962, - "c4": 8.866325533937374, - "c5": 8.265014189348436, - "c6": 8.15026079754922, - "c7": 8.413782566185082 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.981969486823852, + "c3": 10.818307905686536, + "c4": 8.65464632454924, + "c5": 6.490984743411926, + "c6": 4.327323162274611, + "c7": 2.1636615811372972 }, "rgb": [222, 0, 59] }, @@ -361968,23 +361968,23 @@ "year": 1802, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": 6.633434915428847, - "c2": -18.424336726447898, - "c3": -9.388201928304609, - "c4": 24.759660127587047, - "c5": -20.99388981380861, - "c6": -18.678968658260175, - "c7": 8.343622797782174 + "points": { + "c1": 3.5069375563874345, + "c2": -11.980320937950001, + "c3": 11.688628690640563, + "c4": 23.007201522625614, + "c5": 8.150745886966547, + "c6": -18.86074455904977, + "c7": -14.130523144002998 }, - "vertexSeeds": { - "c1": 2.1525318095139916, - "c2": 2.1736694740659916, - "c3": 1.6323398044137398, - "c4": 1.6218056774550123, - "c5": 1.547807266706382, - "c6": 1.9258165951887236, - "c7": 1.6623891041902792 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.108183079056865, + "c3": 1.756819232547388, + "c4": 1.40545538603791, + "c5": 1.054091539528433, + "c6": 0.702727693018955, + "c7": 0.35136384650947705 }, "rgb": [222, 0, 59] }, @@ -361995,23 +361995,23 @@ "year": 1802, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -3.5835490876450535, - "c2": 11.380745399135243, - "c3": 12.006929477518952, - "c4": 9.37834380857111, - "c5": 10.10392380520149, - "c6": -4.969222977128638, - "c7": -16.13106689217462 + "points": { + "c1": -27.81430211890651, + "c2": 1.0957685659469512, + "c3": 9.13944404849925, + "c4": 13.06516439902046, + "c5": -12.87817941944542, + "c6": 17.88159549901426, + "c7": 11.439294581290184 }, - "vertexSeeds": { - "c1": 3.975073319672162, - "c2": 4.014813537712506, - "c3": 3.9835372191199205, - "c4": 3.8920065742305994, - "c5": 3.7570660047119437, - "c6": 4.1076529936095865, - "c7": 4.044582768661003 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.9361997226074905, + "c3": 4.94683310217291, + "c4": 3.95746648173833, + "c5": 2.968099861303741, + "c6": 1.9787332408691607, + "c7": 0.9893666204345803 }, "rgb": [77, 76, 132] }, @@ -362022,23 +362022,23 @@ "year": 1801, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 6.73693415478477, - "c2": 10.887097556048985, - "c3": 2.8129646277918745, - "c4": -11.69217418772751, - "c5": 2.15321433619415, - "c6": 20.69285002749129, - "c7": 11.19870294956899 + "points": { + "c1": 12.092700673551768, + "c2": 10.226878332710704, + "c3": -17.707142150255002, + "c4": -14.697230304980751, + "c5": 7.645963949858583, + "c6": 19.328163651320793, + "c7": 1.1780178649586688 }, - "vertexSeeds": { - "c1": 5.941642972981368, - "c2": 5.803914028389219, - "c3": 5.689472113091264, - "c4": 5.440727516675888, - "c5": 5.6609168438174455, - "c6": 5.838444143661343, - "c7": 5.716012879092081 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -362049,23 +362049,23 @@ "year": 1802, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 18.755449923741587, - "c2": -9.334270323347788, - "c3": -10.800099582862169, - "c4": -2.0770702610969494, - "c5": -13.671902753053484, - "c6": 3.1068884274415645, - "c7": 14.204801382719587 + "points": { + "c1": -13.558674030465838, + "c2": 11.59397098419155, + "c3": 23.136854651149733, + "c4": 16.097146544922914, + "c5": -13.882754687046774, + "c6": -19.999426479408537, + "c7": 24.76795395722477 }, - "vertexSeeds": { - "c1": 4.760346910804062, - "c2": 4.839062205451468, - "c3": 4.636766215888997, - "c4": 4.593125092772264, - "c5": 4.768586682581425, - "c6": 4.653598443491331, - "c7": 4.6525956897233 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.07350901525659, + "c3": 5.89459084604716, + "c4": 4.71567267683773, + "c5": 3.5367545076282996, + "c6": 2.3578363384188603, + "c7": 1.1789181692094393 }, "rgb": [222, 0, 59] }, @@ -362076,23 +362076,23 @@ "year": 1802, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -27.044656540225894, - "c2": -28.668156819804537, - "c3": 11.433048772686835, - "c4": 0.712212620272453, - "c5": 16.65151060575167, - "c6": -10.191644479474547, - "c7": -8.220928744006333 + "points": { + "c1": -7.356271937818239, + "c2": 18.89519520809775, + "c3": -3.285377202173322, + "c4": 13.31104152466808, + "c5": 9.114715560332325, + "c6": -16.301815256362257, + "c7": 12.357597215348289 }, - "vertexSeeds": { - "c1": 6.592572945422181, - "c2": 7.134659473712291, - "c3": 6.982732150428142, - "c4": 6.6122757779781915, - "c5": 6.947329806089522, - "c6": 6.660616432416272, - "c7": 7.010468387144496 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370321, + "c3": 9.408229311141938, + "c4": 7.526583448913543, + "c5": 5.6449375866851605, + "c6": 3.763291724456777, + "c7": 1.8816458622283834 }, "rgb": [58, 15, 49] }, @@ -362103,23 +362103,23 @@ "year": 1802, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 6.8279023366456215, - "c2": 0.7828984145433857, - "c3": -21.231198257003587, - "c4": 6.576226671270053, - "c5": 18.82745630539395, - "c6": 8.462798809380274, - "c7": -16.669225460903306 + "points": { + "c1": -5.578377489561937, + "c2": 3.1528249290434545, + "c3": 13.849348632583308, + "c4": 22.277330741782443, + "c5": 9.441580130806038, + "c6": -26.003911037374095, + "c7": 11.778039345019316 }, - "vertexSeeds": { - "c1": 6.426397159440093, - "c2": 6.393023382420127, - "c3": 6.398183270325189, - "c4": 6.406992684141011, - "c5": 6.439378056404817, - "c6": 6.418300032157362, - "c7": 6.403826005698463 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.23717059639384, + "c3": 7.697642163661668, + "c4": 6.158113730929294, + "c5": 4.61858529819692, + "c6": 3.079056865464545, + "c7": 1.5395284327323744 }, "rgb": [58, 15, 49] }, @@ -362130,23 +362130,23 @@ "year": 1802, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -22.712606012696366, - "c2": -11.341068607254748, - "c3": -15.718380704928716, - "c4": -2.774114010121444, - "c5": 21.155772995494807, - "c6": 11.602027401300688, - "c7": -8.46328664109549 + "points": { + "c1": 37.84006606843694, + "c2": -0.051107526291254146, + "c3": 4.56373989280462, + "c4": -21.26873074756962, + "c5": -9.727553897747597, + "c6": 18.971310568303657, + "c7": 35.38911696679858 }, - "vertexSeeds": { - "c1": 8.811994953877617, - "c2": 8.497555991679851, - "c3": 8.907015615587875, - "c4": 9.568646624173507, - "c5": 9.558229043094359, - "c6": 9.115267085436274, - "c7": 8.302738725218585 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011096, + "c3": 11.558021266759129, + "c4": 9.246417013407306, + "c5": 6.9348127600554745, + "c6": 4.623208506703653, + "c7": 2.311604253351833 }, "rgb": [58, 15, 49] }, @@ -362157,23 +362157,23 @@ "year": 1802, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 16.15311119669455, - "c2": 15.866495970391949, - "c3": -12.667521239915942, - "c4": -5.941431296763572, - "c5": -14.157438595618936, - "c6": 24.56678939702579, - "c7": -26.04389812468339 + "points": { + "c1": -12.268116691664716, + "c2": -22.82148816691344, + "c3": 10.640874712779397, + "c4": 19.92260641813488, + "c5": 9.072414743915136, + "c6": -25.45332242961139, + "c7": 27.80525868794511 }, - "vertexSeeds": { - "c1": 3.0225553898548223, - "c2": 2.9925038239620334, - "c3": 2.9474195542433246, - "c4": 3.1143700172743936, - "c5": 2.979401150099654, - "c6": 2.824863898368515, - "c7": 2.9646633193969665 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515953, + "c3": 3.7447988904299545, + "c4": 2.9958391123439654, + "c5": 2.2468793342579767, + "c6": 1.4979195561719874, + "c7": 0.748959778085989 }, "rgb": [238, 201, 159] }, @@ -362184,23 +362184,23 @@ "year": 1802, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -23.56184358570182, - "c2": 21.60698256202081, - "c3": 2.1016739968787377, - "c4": -19.63230987262474, - "c5": 22.20999371238978, - "c6": 14.962918502953258, - "c7": -32.263138452995655 + "points": { + "c1": 32.04818571020955, + "c2": -8.678631527873666, + "c3": 24.811593325805056, + "c4": 21.110765262639696, + "c5": -8.63941990989423, + "c6": -26.34482412537725, + "c7": -31.647181678322333 }, - "vertexSeeds": { - "c1": 5.299771843611152, - "c2": 5.1446612247893, - "c3": 5.302760381615952, - "c4": 5.068628550056071, - "c5": 4.9248015815701995, - "c6": 4.971528852185133, - "c7": 5.095302863247608 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020807, + "c3": 6.3337956541840095, + "c4": 5.067036523347211, + "c5": 3.8002773925103948, + "c6": 2.5335182616736054, + "c7": 1.2667591308367983 }, "rgb": [222, 0, 59] }, @@ -362211,23 +362211,23 @@ "year": 1802, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 28.142698019825595, - "c2": -25.876902575351085, - "c3": 7.360334839643045, - "c4": -15.411790762929272, - "c5": 11.982933736847095, - "c6": -18.081820321945443, - "c7": 23.092563645934234 + "points": { + "c1": -31.29602715049743, + "c2": -18.762662193598466, + "c3": 16.791196724681996, + "c4": 20.611275903654764, + "c5": -31.845802028851153, + "c6": 28.079696467156978, + "c7": 19.468171064459625 }, - "vertexSeeds": { - "c1": 4.547188049009933, - "c2": 4.606600500065626, - "c3": 4.630008520815916, - "c4": 4.615615818442256, - "c5": 4.583523105961419, - "c6": 4.771176674722131, - "c7": 4.844363504700578 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216367, + "c3": 5.871474803513641, + "c4": 4.697179842810915, + "c5": 3.522884882108179, + "c6": 2.3485899214054524, + "c7": 1.1742949607027262 }, "rgb": [58, 15, 49] }, @@ -362238,23 +362238,23 @@ "year": 1802, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 5.016718425065406, - "c2": -25.315044964415062, - "c3": -23.2072105724313, - "c4": 10.678244266837325, - "c5": 18.901883903522084, - "c6": 21.589606786162385, - "c7": -1.0596147985449704 + "points": { + "c1": 8.299673984800428, + "c2": -25.341902556371743, + "c3": -20.07763576439025, + "c4": -12.39993172569891, + "c5": 32.856207737264825, + "c6": -31.668278776950473, + "c7": -22.79031888573204 }, - "vertexSeeds": { - "c1": 5.262240580521373, - "c2": 5.489928838357747, - "c3": 5.508267761606663, - "c4": 5.425943485865794, - "c5": 5.243712944968232, - "c6": 5.288983221717955, - "c7": 5.22751516485053 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.12760055478501, + "c3": 6.773000462320847, + "c4": 5.418400369856685, + "c5": 4.063800277392505, + "c6": 2.7092001849283247, + "c7": 1.3546000924641624 }, "rgb": [222, 0, 59] }, @@ -362265,23 +362265,23 @@ "year": 1802, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 1.1207593332959433, - "c2": 21.88561460660938, - "c3": 11.545958213001839, - "c4": 1.8865750492104816, - "c5": 23.936106190610765, - "c6": 19.046852276786545, - "c7": -1.3565396051161578 + "points": { + "c1": -26.813519580878914, + "c2": 21.3970717758964, + "c3": -15.182874360841122, + "c4": -1.9131716185786054, + "c5": 6.35136283195034, + "c6": 3.617602718789623, + "c7": -0.14010324791221151 }, - "vertexSeeds": { - "c1": 3.3095377009469122, - "c2": 3.2389780372312904, - "c3": 3.117281910291527, - "c4": 3.216424019973925, - "c5": 3.1182135636819197, - "c6": 3.113725448300889, - "c7": 3.2069588957438935 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038837, + "c3": 4.045307443365699, + "c4": 3.2362459546925617, + "c5": 2.4271844660194133, + "c6": 1.6181229773462755, + "c7": 0.8090614886731378 }, "rgb": [58, 15, 49] }, @@ -362292,23 +362292,23 @@ "year": 1802, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -35.42912225428164, - "c2": -20.581696282435544, - "c3": -37.477897794147076, - "c4": -10.576273701286748, - "c5": 1.804762383457927, - "c6": 26.014423243173894, - "c7": -11.728663075250651 + "points": { + "c1": -6.009089739626013, + "c2": 14.71697715399229, + "c3": -3.7276078935452617, + "c4": 13.76614557235559, + "c5": 37.64112261303109, + "c6": -11.806993725834992, + "c7": -10.781439261310059 }, - "vertexSeeds": { - "c1": 3.499984508368856, - "c2": 3.569275616012286, - "c3": 3.5255152534522325, - "c4": 3.471229495427264, - "c5": 3.512466293546818, - "c6": 3.6500347314678434, - "c7": 3.623822472392647 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722605, + "c3": 4.4382801664355105, + "c4": 3.550624133148406, + "c5": 2.6629680998613026, + "c6": 1.775312066574208, + "c7": 0.887656033287104 }, "rgb": [77, 76, 132] }, @@ -362319,23 +362319,23 @@ "year": 1802, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -25.087173100173224, - "c2": -11.24100013353419, - "c3": 21.52002611953897, - "c4": -1.0432628450405836, - "c5": 10.338689789551331, - "c6": -2.2729419043661316, - "c7": -24.326584200738864 + "points": { + "c1": -19.30037146188101, + "c2": -11.792333981653591, + "c3": 3.002103992118087, + "c4": 22.652784801904538, + "c5": -17.09904601682027, + "c6": -15.359706836449652, + "c7": 16.899690269629453 }, - "vertexSeeds": { - "c1": 7.790656445683713, - "c2": 8.327126597036552, - "c3": 8.112007902096625, - "c4": 7.680170940486067, - "c5": 7.982295533507961, - "c6": 7.831677912826263, - "c7": 7.637649289790884 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617196, + "c3": 10.124826629680994, + "c4": 8.099861303744792, + "c5": 6.074895977808589, + "c6": 4.049930651872405, + "c7": 2.024965325936184 }, "rgb": [238, 201, 159] }, @@ -362346,23 +362346,23 @@ "year": 1802, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -5.971054758822213, - "c2": -19.187675553681245, - "c3": 17.51975735451017, - "c4": -27.539351720671593, - "c5": -16.143765892571473, - "c6": -14.356779949252529, - "c7": 23.874493191712197 + "points": { + "c1": -16.837992500672268, + "c2": -17.904636677816008, + "c3": -5.069282868476673, + "c4": -4.2324822548857455, + "c5": 1.6691508021476835, + "c6": -24.87293185694263, + "c7": -8.575578694400342 }, - "vertexSeeds": { - "c1": 5.849273451163748, - "c2": 6.12631639048921, - "c3": 5.7752849983868355, - "c4": 5.925089035150224, - "c5": 5.832112846718605, - "c6": 5.9127748922054195, - "c7": 5.994003446021927 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112347, + "c3": 7.535829865926957, + "c4": 6.02866389274157, + "c5": 4.521497919556182, + "c6": 3.014331946370776, + "c7": 1.507165973185388 }, "rgb": [222, 0, 59] }, @@ -362373,23 +362373,23 @@ "year": 1802, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -32.00466304190795, - "c2": -31.85766830384356, - "c3": 8.302816846073512, - "c4": -28.033905821165767, - "c5": 24.452453187249283, - "c6": -0.601649261466406, - "c7": 24.908732282974597 + "points": { + "c1": 30.771289026303805, + "c2": -25.066968907806967, + "c3": -24.498389000654726, + "c4": 7.068188705605067, + "c5": 8.631115050463563, + "c6": -7.985945011304054, + "c7": 2.718805661636516 }, - "vertexSeeds": { - "c1": 4.835127034775441, - "c2": 4.842337663922341, - "c3": 5.030535420609637, - "c4": 5.2208643828332955, - "c5": 5.230725864871884, - "c6": 5.2089849693477355, - "c7": 4.814408088321895 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061028, + "c3": 6.3569116967175265, + "c4": 5.085529357374025, + "c5": 3.814147018030523, + "c6": 2.5427646786870124, + "c7": 1.2713823393435018 }, "rgb": [77, 76, 132] }, @@ -362400,23 +362400,23 @@ "year": 1802, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -22.486723530401125, - "c2": -6.552803240261095, - "c3": 31.235440088201187, - "c4": 5.066777808450439, - "c5": -33.470747966672725, - "c6": -17.410666214002177, - "c7": 3.610591431017262 + "points": { + "c1": 35.02667202430342, + "c2": 16.851114545666633, + "c3": 13.225925998754903, + "c4": -5.591707243167505, + "c5": 6.360536443122058, + "c6": -12.976475673190723, + "c7": -33.09416845899778 }, - "vertexSeeds": { - "c1": 1.8404261645112814, - "c2": 1.6158958832241601, - "c3": 1.7760189716993309, - "c4": 1.6576231781282043, - "c5": 1.738970351325198, - "c6": 1.6489539075554713, - "c7": 1.7321785013070405 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.7184466019417486, + "c3": 2.265372168284789, + "c4": 1.8122977346278324, + "c5": 1.3592233009708727, + "c6": 0.9061488673139162, + "c7": 0.4530744336569596 }, "rgb": [77, 76, 132] }, @@ -362427,23 +362427,23 @@ "year": 1802, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 13.251475456909048, - "c2": 14.721860263129642, - "c3": 26.6074278624725, - "c4": -27.728099437574308, - "c5": -4.346538171290323, - "c6": -25.338890875369653, - "c7": 17.282911964052403 + "points": { + "c1": -22.697627052704092, + "c2": -29.191437562676413, + "c3": -1.0092778455419555, + "c4": -4.855961808898563, + "c5": -7.76181876071465, + "c6": 13.948721709002761, + "c7": -2.5629321298924452 }, - "vertexSeeds": { - "c1": 6.689196076079203, - "c2": 6.479590426892147, - "c3": 6.910342452364758, - "c4": 6.901139553081174, - "c5": 6.3552689542276575, - "c6": 6.9120124113357955, - "c7": 6.635664648765439 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359217, + "c3": 8.25242718446601, + "c4": 6.601941747572817, + "c5": 4.951456310679609, + "c6": 3.3009708737863996, + "c7": 1.650485436893191 }, "rgb": [222, 0, 59] }, @@ -362454,23 +362454,23 @@ "year": 1802, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 16.545338983247763, - "c2": -0.261421622851028, - "c3": -0.8151295390166382, - "c4": 14.314787406770325, - "c5": -10.841832190620366, - "c6": 22.420247833722666, - "c7": 19.809632154111707 + "points": { + "c1": 26.811423765288804, + "c2": -11.742150006702657, + "c3": -23.341482972671827, + "c4": 17.68526380045098, + "c5": 13.961458400428928, + "c6": -16.074605113159375, + "c7": 6.38950398936753 }, - "vertexSeeds": { - "c1": 5.730000617702263, - "c2": 5.627885970937967, - "c3": 5.4735597084020995, - "c4": 5.6783740756833065, - "c5": 5.484278833059331, - "c6": 5.8995046469433845, - "c7": 5.902447738788077 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267678, + "c3": 7.050392972723077, + "c4": 5.640314378178458, + "c5": 4.230235783633839, + "c6": 2.820157189089238, + "c7": 1.410078594544619 }, "rgb": [58, 15, 49] }, @@ -362481,23 +362481,23 @@ "year": 1802, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 5.336596076849517, - "c2": -21.962328915737327, - "c3": 3.8481621568516466, - "c4": -16.091496765065926, - "c5": 5.460390740324804, - "c6": -19.724947727847145, - "c7": -12.908014959925433 + "points": { + "c1": 24.26067045380193, + "c2": -28.749325387049357, + "c3": 20.275567966231172, + "c4": 9.438768906699998, + "c5": -18.158394536263437, + "c6": -15.246224896420765, + "c7": 3.690471379669063 }, - "vertexSeeds": { - "c1": 8.048664867509016, - "c2": 8.423789587144087, - "c3": 8.413817372314352, - "c4": 8.340287292896274, - "c5": 8.276942930488294, - "c6": 7.619845439210447, - "c7": 7.945826921977228 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.06657420249653, + "c3": 10.055478502080438, + "c4": 8.044382801664366, + "c5": 6.033287101248273, + "c6": 4.022191400832183, + "c7": 2.0110957004160914 }, "rgb": [222, 0, 59] }, @@ -362508,23 +362508,23 @@ "year": 1802, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 0.3445121364024182, - "c2": -5.882873861277378, - "c3": 1.2681093889744126, - "c4": -11.800921206791651, - "c5": -14.920909348352497, - "c6": 14.81005190625477, - "c7": -15.439114535418263 + "points": { + "c1": -14.215845944874113, + "c2": -18.981278941777518, + "c3": 21.468833790404986, + "c4": -10.41596848231114, + "c5": -0.6505262558030971, + "c6": 1.8469734327457985, + "c7": -13.509901663837363 }, - "vertexSeeds": { - "c1": 5.656238846553819, - "c2": 5.282463867037838, - "c3": 5.72945406034097, - "c4": 5.804976640616996, - "c5": 5.527359820004786, - "c6": 5.705397691943751, - "c7": 5.747964568081029 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106798, + "c3": 6.957928802589002, + "c4": 5.566343042071206, + "c5": 4.174757281553409, + "c6": 2.7831715210355936, + "c7": 1.3915857605177968 }, "rgb": [238, 201, 159] }, @@ -362535,23 +362535,23 @@ "year": 1802, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 12.272088268585186, - "c2": 26.048638261349204, - "c3": -26.17393778780925, - "c4": -11.047382217735347, - "c5": 7.108915275164151, - "c6": 4.383754154346654, - "c7": -18.453195808787704 + "points": { + "c1": -8.563695848665109, + "c2": 21.459240600432395, + "c3": 10.523640242049368, + "c4": -27.32664894570119, + "c5": -26.530734734362944, + "c6": -3.2346702308767306, + "c7": 11.118514875317885 }, - "vertexSeeds": { - "c1": 5.744440730443181, - "c2": 5.512955956980034, - "c3": 5.789054399838652, - "c4": 5.340252278238928, - "c5": 5.490324025185758, - "c6": 5.659852510499808, - "c7": 5.823077309705251 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106798, + "c3": 6.957928802589002, + "c4": 5.566343042071206, + "c5": 4.174757281553409, + "c6": 2.7831715210355936, + "c7": 1.3915857605177968 }, "rgb": [222, 0, 59] }, @@ -362562,23 +362562,23 @@ "year": 1802, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 24.64595527202103, - "c2": -4.953080054213849, - "c3": -26.34648115956731, - "c4": -12.23355315853733, - "c5": 9.900888994584374, - "c6": -25.77888569255741, - "c7": 4.385259419330115 + "points": { + "c1": 4.50993975125316, + "c2": 28.919896900838, + "c3": 22.30443533168142, + "c4": -19.33239997122446, + "c5": 12.363248424220817, + "c6": -5.615922270854437, + "c7": 21.482479044850866 }, - "vertexSeeds": { - "c1": 3.9706349534508605, - "c2": 4.266973609222854, - "c3": 3.9845202397280257, - "c4": 4.164088471825266, - "c5": 4.0541200507265, - "c6": 4.290151753510759, - "c7": 4.0894231188048575 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.24133148404993, + "c3": 5.201109570041608, + "c4": 4.160887656033286, + "c5": 3.120665742024965, + "c6": 2.080443828016643, + "c7": 1.0402219140083215 }, "rgb": [58, 15, 49] }, @@ -362589,23 +362589,23 @@ "year": 1802, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -13.439497336831156, - "c2": 26.29567230354801, - "c3": 15.670290298276491, - "c4": 23.457206394378723, - "c5": 2.703041840953162, - "c6": 21.905309397768626, - "c7": 7.086793982455525 + "points": { + "c1": -11.531708853632953, + "c2": -2.921604439225348, + "c3": -20.733593155714868, + "c4": -11.034071007087192, + "c5": -3.9228804975567613, + "c6": 14.156845724393975, + "c7": -11.910027949099831 }, - "vertexSeeds": { - "c1": 4.749849196333243, - "c2": 4.924423196944509, - "c3": 4.469939987937901, - "c4": 4.7132235864923935, - "c5": 4.912406846902827, - "c6": 4.727518303711467, - "c7": 4.667105897722766 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256585, + "c3": 5.8945908460471585, + "c4": 4.715672676837722, + "c5": 3.536754507628297, + "c6": 2.357836338418861, + "c7": 1.1789181692094355 }, "rgb": [238, 201, 159] }, @@ -362616,23 +362616,23 @@ "year": 1802, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -4.264388492154676, - "c2": 20.803405361023437, - "c3": -20.966493826729135, - "c4": -14.88167659631754, - "c5": 15.44118884599775, - "c6": -17.911973757227393, - "c7": -18.467510097259503 + "points": { + "c1": -18.284430322796624, + "c2": -1.1703635027965404, + "c3": 22.07342984246928, + "c4": -21.5370158158159, + "c5": 2.9340306105372207, + "c6": 13.68178658736074, + "c7": 27.35295886272528 }, - "vertexSeeds": { - "c1": 7.66520973221313, - "c2": 7.116171917449576, - "c3": 7.501117044969969, - "c4": 7.324880397600995, - "c5": 7.433329696862754, - "c6": 7.243812342806466, - "c7": 7.577824483082011 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.04022191400832, + "c3": 9.200184928340263, + "c4": 7.360147942672226, + "c5": 5.520110957004168, + "c6": 3.680073971336113, + "c7": 1.8400369856680565 }, "rgb": [77, 76, 132] }, @@ -362643,23 +362643,23 @@ "year": 1802, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -23.280036909972615, - "c2": 22.409739777117032, - "c3": -8.481984033628237, - "c4": 16.20214285785965, - "c5": -8.860353092020816, - "c6": -0.26668856443638944, - "c7": -24.751539818621808 + "points": { + "c1": -11.477175596437185, + "c2": 16.546026571394826, + "c3": -18.461912991487118, + "c4": -9.013033691697075, + "c5": -14.623080411391257, + "c6": 4.609574551049299, + "c7": -25.37854510210596 }, - "vertexSeeds": { - "c1": 6.387029870531982, - "c2": 6.433081928350158, - "c3": 6.925567535611985, - "c4": 6.715812609154326, - "c5": 6.854563946169554, - "c6": 6.439396957538306, - "c7": 6.422457839767192 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399453, + "c3": 8.275543226999535, + "c4": 6.620434581599635, + "c5": 4.965325936199717, + "c6": 3.3102172907998173, + "c7": 1.6551086453998998 }, "rgb": [86, 146, 138] }, @@ -362670,23 +362670,23 @@ "year": 1802, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 11.94437383063675, - "c2": -6.270182680294141, - "c3": -23.39885212080554, - "c4": -38.82162352253601, - "c5": -7.716436801378457, - "c6": 18.154024426315253, - "c7": 27.154367540261454 + "points": { + "c1": 43.76694770393913, + "c2": -24.831150946178553, + "c3": 10.547690826616105, + "c4": -20.877052686603438, + "c5": -32.610855901940525, + "c6": -23.53727596343292, + "c7": -12.591579548864651 }, - "vertexSeeds": { - "c1": 2.3873845012384005, - "c2": 2.576974089207296, - "c3": 2.387977562174167, - "c4": 2.345617777763714, - "c5": 2.640700137420402, - "c6": 2.4572001017983593, - "c7": 2.5987565199408698 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104014, + "c3": 3.1668978270920003, + "c4": 2.5335182616735987, + "c5": 1.9001386962552007, + "c6": 1.2667591308368027, + "c7": 0.6333795654184013 }, "rgb": [222, 0, 59] }, @@ -362697,23 +362697,23 @@ "year": 1802, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -26.474061823013514, - "c2": -21.937759712066168, - "c3": 13.538594586392271, - "c4": -6.266496437241194, - "c5": 21.88297223577615, - "c6": 30.349401317765782, - "c7": -39.19875544920141 + "points": { + "c1": 16.098618705565187, + "c2": 0.3477350205824621, + "c3": -12.251429494867686, + "c4": 36.34078595371584, + "c5": -20.793720718964167, + "c6": 16.46616791199159, + "c7": -13.87130585371775 }, - "vertexSeeds": { - "c1": 4.644395274417939, - "c2": 4.84833616263039, - "c3": 5.087847540307656, - "c4": 4.75963095006429, - "c5": 4.913114683049684, - "c6": 5.056507644371889, - "c7": 4.937804085002885 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578372, + "c3": 6.079519186315302, + "c4": 4.863615349052242, + "c5": 3.6477115117891814, + "c6": 2.431807674526121, + "c7": 1.2159038372630604 }, "rgb": [222, 0, 59] }, @@ -362724,23 +362724,23 @@ "year": 1802, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 21.838853458180722, - "c2": 11.059156804879983, - "c3": -12.039834535231536, - "c4": -19.62587921411099, - "c5": 17.24799384851582, - "c6": 1.1885024942392022, - "c7": 18.817650414305596 + "points": { + "c1": 16.699241105200315, + "c2": 23.44762992123556, + "c3": -0.0880765431824031, + "c4": -19.432522304350027, + "c5": -18.4595451478518, + "c6": -24.48185442698354, + "c7": -4.904499016207453 }, - "vertexSeeds": { - "c1": 3.2387301021498174, - "c2": 3.285235496624644, - "c3": 3.1498908511427937, - "c4": 3.1913439548390525, - "c5": 3.2857100485782227, - "c6": 3.177105761367766, - "c7": 3.2880736330664777 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.8543689320388355, + "c3": 4.045307443365696, + "c4": 3.236245954692557, + "c5": 2.4271844660194177, + "c6": 1.6181229773462784, + "c7": 0.8090614886731392 }, "rgb": [86, 146, 138] }, @@ -362751,23 +362751,23 @@ "year": 1802, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 42.80897562712057, - "c2": 23.288911183361115, - "c3": -32.300164210941006, - "c4": 26.571075483864895, - "c5": -11.383319928083338, - "c6": -26.976327901747677, - "c7": -21.311083173944116 + "points": { + "c1": 21.18415732110065, + "c2": 0.8322861086124789, + "c3": 15.531333719830407, + "c4": -14.95449247663527, + "c5": -12.206818027284271, + "c6": -11.094073177967154, + "c7": 5.8310730103558015 }, - "vertexSeeds": { - "c1": 3.125438702944702, - "c2": 3.121378183009353, - "c3": 3.1602363946478698, - "c4": 3.1235710928676736, - "c5": 3.1935396158061424, - "c6": 3.017069897132356, - "c7": 3.2565527612807035 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837725, + "c3": 3.9297272306981044, + "c4": 3.1437817845584832, + "c5": 2.3578363384188625, + "c6": 1.5718908922792416, + "c7": 0.7859454461396208 }, "rgb": [77, 76, 132] }, @@ -362778,23 +362778,23 @@ "year": 1802, "resistanceReported": false, "duration": 38880000, - "curveSeeds": { - "c1": -27.54287720667978, - "c2": 42.514992867292065, - "c3": 39.883294767634695, - "c4": -31.07923275358081, - "c5": -34.172102742607535, - "c6": 3.462555503853146, - "c7": -27.34660864507096 + "points": { + "c1": 43.94794365789467, + "c2": -53.36618453301533, + "c3": -1.102190796145635, + "c4": -25.659225232993027, + "c5": -35.086772512014036, + "c6": 3.523595689614204, + "c7": 5.744212066486881 }, - "vertexSeeds": { - "c1": 1.4296714233310661, - "c2": 1.3105118568418348, - "c3": 1.4354059750318744, - "c4": 1.3098328809914, - "c5": 1.2695544134444356, - "c6": 1.3352232687744332, - "c7": 1.4218805760259532 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.080443828016644, + "c3": 1.7337031900138684, + "c4": 1.3869625520110953, + "c5": 1.040221914008322, + "c6": 0.6934812760055489, + "c7": 0.34674063800277327 }, "rgb": [86, 146, 138] }, @@ -362805,23 +362805,23 @@ "year": 1802, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -26.726966346641888, - "c2": -19.42490749518435, - "c3": -16.25527717135931, - "c4": 8.227060835957339, - "c5": 25.53980814984505, - "c6": 32.495907194394114, - "c7": 7.979778375699631 + "points": { + "c1": 14.694615639774057, + "c2": -36.81978906607793, + "c3": 18.291853514827473, + "c4": 34.50200680757158, + "c5": -22.876893779182833, + "c6": -18.605371701684447, + "c7": -28.73952293659395 }, - "vertexSeeds": { - "c1": 8.1500453937714, - "c2": 8.087575588454062, - "c3": 7.725177354249715, - "c4": 7.555079925573356, - "c5": 8.244742596485302, - "c6": 8.068406811763507, - "c7": 7.74733440232191 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255205, + "c3": 9.916782246879325, + "c4": 7.933425797503465, + "c5": 5.950069348127602, + "c6": 3.966712898751723, + "c7": 1.9833564493758615 }, "rgb": [222, 0, 59] }, @@ -362832,23 +362832,23 @@ "year": 1802, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 9.825523432931256, - "c2": -3.5079001174252973, - "c3": 20.427760049518582, - "c4": 16.070798395949637, - "c5": -14.198749293310835, - "c6": 6.3503290172988045, - "c7": 14.578746739700257 + "points": { + "c1": -1.7466045462904702, + "c2": -7.74885663604762, + "c3": 13.484392087020801, + "c4": 0.042584415088519734, + "c5": -8.177074315951788, + "c6": -16.920389352705918, + "c7": 2.5407179313218293 }, - "vertexSeeds": { - "c1": 2.4352885835449554, - "c2": 2.45310196184726, - "c3": 2.786406296014896, - "c4": 2.40735324776349, - "c5": 2.6537726663980066, - "c6": 2.583541949702246, - "c7": 2.379874649760652 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.0776699029126195, + "c3": 3.398058252427182, + "c4": 2.7184466019417495, + "c5": 2.038834951456311, + "c6": 1.3592233009708734, + "c7": 0.6796116504854354 }, "rgb": [77, 76, 132] }, @@ -362859,23 +362859,23 @@ "year": 1802, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 13.235310451821018, - "c2": -5.833195165036553, - "c3": -8.184298492447493, - "c4": -9.269627099762715, - "c5": 9.98408480446081, - "c6": 21.904521695196916, - "c7": 22.757468381909387 + "points": { + "c1": 2.434975010701841, + "c2": -21.81196900859719, + "c3": 16.912864323834615, + "c4": -18.108411534721906, + "c5": 5.703806786675987, + "c6": -22.312132536837346, + "c7": -3.9168048170112577 }, - "vertexSeeds": { - "c1": 2.9978737895340535, - "c2": 2.3634274115168505, - "c3": 2.198720669902134, - "c4": 2.639695750561174, - "c5": 2.6471000538853273, - "c6": 2.369985783028495, - "c7": 2.775213668594639 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022191, + "c3": 2.311604253351826, + "c4": 1.8492834026814606, + "c5": 1.3869625520110955, + "c6": 0.9246417013407303, + "c7": 0.46232085067036516 }, "rgb": [77, 76, 132] }, @@ -362886,23 +362886,23 @@ "year": 1802, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": -19.204520565435182, - "c2": -3.2065936301657665, - "c3": 4.849180044902361, - "c4": 18.10687706552185, - "c5": -0.18289558695292385, - "c6": -0.44772819833726984, - "c7": -0.41277152787556304 + "points": { + "c1": 0.11490562504415536, + "c2": 11.328517507933249, + "c3": -10.868161452759574, + "c4": 18.332699659092903, + "c5": -5.379412469088049, + "c6": -16.36124036890866, + "c7": -14.912072260855007 }, - "vertexSeeds": { - "c1": 7.0307467772840555, - "c2": 6.92528065899267, - "c3": 6.887357391266109, - "c4": 7.322803688974146, - "c5": 7.385327163605001, - "c6": 6.823161299083527, - "c7": 6.829552294340533 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485429, + "c3": 8.899676375404534, + "c4": 7.119741100323619, + "c5": 5.339805825242724, + "c6": 3.5598705501618095, + "c7": 1.7799352750809148 }, "rgb": [77, 76, 132] }, @@ -362913,23 +362913,23 @@ "year": 1802, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -5.529742022983378, - "c2": 18.09708849625116, - "c3": -11.016156782162474, - "c4": 22.47987446708717, - "c5": -2.195446125575838, - "c6": -16.606320007351552, - "c7": 21.97965867317013 + "points": { + "c1": 6.738891131239413, + "c2": -23.410066346021715, + "c3": 14.999440622222338, + "c4": 13.217030085592661, + "c5": -4.770185794179859, + "c6": 3.7111910681381772, + "c7": -19.730922615844747 }, - "vertexSeeds": { - "c1": 2.0432330800161322, - "c2": 2.0899171654526176, - "c3": 2.2423815458227576, - "c4": 1.9184070151303143, - "c5": 2.109782109488681, - "c6": 2.0043221822862676, - "c7": 1.9177119575749413 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746187, + "c3": 2.7276930189551543, + "c4": 2.1821544151641246, + "c5": 1.6366158113730944, + "c6": 1.0910772075820623, + "c7": 0.5455386037910323 }, "rgb": [238, 201, 159] }, @@ -362940,23 +362940,23 @@ "year": 1802, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 26.111043308778193, - "c2": 31.402244332871817, - "c3": -9.901009471362674, - "c4": 37.15862531455927, - "c5": -23.773524748529667, - "c6": 25.820145981611446, - "c7": -16.97926655650769 + "points": { + "c1": 5.692602263548608, + "c2": 22.979749742713693, + "c3": 24.758441103260836, + "c4": -1.2613858049474658, + "c5": -4.595095004905787, + "c6": 31.02929550579745, + "c7": 5.284940768286134 }, - "vertexSeeds": { - "c1": 4.026809377394706, - "c2": 3.964418868843403, - "c3": 4.111329973352177, - "c4": 3.9646835987058244, - "c5": 3.916480154295495, - "c6": 3.7929505079957915, - "c7": 4.076924430907078 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768374, + "c3": 5.039297272306984, + "c4": 4.031437817845585, + "c5": 3.023578363384187, + "c6": 2.0157189089227976, + "c7": 1.0078594544613988 }, "rgb": [222, 0, 59] }, @@ -362967,23 +362967,23 @@ "year": 1802, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -0.12609968284897022, - "c2": 24.923533090530977, - "c3": 16.565771686451182, - "c4": 0.8673729973794799, - "c5": -16.028338481010962, - "c6": 9.315624093136773, - "c7": 27.413352126101667 + "points": { + "c1": -12.935689716901944, + "c2": -7.732570079290966, + "c3": 22.308533919997398, + "c4": -28.109986401619125, + "c5": 8.258657587080965, + "c6": -11.34185352025527, + "c7": 27.687304258012308 }, - "vertexSeeds": { - "c1": 4.565615648389948, - "c2": 4.750639238554503, - "c3": 4.540774679816067, - "c4": 4.681131105611942, - "c5": 4.518198837297033, - "c6": 4.5636024272275275, - "c7": 4.584854197212218 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [58, 15, 49] }, @@ -362994,23 +362994,23 @@ "year": 1802, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 12.540754925850536, - "c2": -20.310073007780403, - "c3": 11.63926655635133, - "c4": -1.4676742261451743, - "c5": -0.04626932395966321, - "c6": 5.094195780335539, - "c7": -15.927543261838444 + "points": { + "c1": 15.098486785013208, + "c2": 25.19351664412352, + "c3": -3.382036404559983, + "c4": 23.283603217524522, + "c5": -20.554840191667346, + "c6": -23.961968754576866, + "c7": -18.213884712206863 }, - "vertexSeeds": { - "c1": 5.605437739214334, - "c2": 5.3365997160369965, - "c3": 5.731315708145147, - "c4": 5.864508719151718, - "c5": 5.347102798153873, - "c6": 5.347790237507528, - "c7": 5.680170589686817 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187249, + "c3": 7.00416088765603, + "c4": 5.603328710124832, + "c5": 4.2024965325936146, + "c6": 2.801664355062416, + "c7": 1.400832177531199 }, "rgb": [238, 201, 159] }, @@ -363021,23 +363021,23 @@ "year": 1802, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -20.791508474907925, - "c2": 15.171117509792523, - "c3": -19.047210455730692, - "c4": -2.774102618174684, - "c5": 21.72216212574172, - "c6": -6.913551524666225, - "c7": 7.71791095156841 + "points": { + "c1": 4.943911751053527, + "c2": -9.845111076728472, + "c3": 8.494490351708357, + "c4": -22.840485737586242, + "c5": -19.69892200926342, + "c6": 4.885901685393936, + "c7": -15.775032424222392 }, - "vertexSeeds": { - "c1": 3.6778456598352918, - "c2": 3.7012760888200043, - "c3": 3.697139512293599, - "c4": 3.7753411771201657, - "c5": 3.487510692081208, - "c6": 3.7027783495772195, - "c7": 3.6039926857154625 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205269, + "c3": 4.715672676837729, + "c4": 3.7725381414701817, + "c5": 2.8294036061026344, + "c6": 1.8862690707350942, + "c7": 0.9431345353675471 }, "rgb": [86, 146, 138] }, @@ -363048,23 +363048,23 @@ "year": 1802, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 23.082730079054084, - "c2": 12.873036549723654, - "c3": -2.1605797838562246, - "c4": -25.434284288060436, - "c5": -7.9650862162363225, - "c6": 26.90359400332984, - "c7": 12.638157402273247 + "points": { + "c1": 7.116406159169593, + "c2": -1.8501647985410123, + "c3": -8.985065660853575, + "c4": -30.04873588721619, + "c5": 20.5484095208093, + "c6": 0.5719782700785316, + "c7": -19.571206993704116 }, - "vertexSeeds": { - "c1": 3.3488683908508126, - "c2": 3.330389302809608, - "c3": 3.2863252238344627, - "c4": 3.321799542549374, - "c5": 3.326619588372213, - "c6": 3.327888698598084, - "c7": 3.3282705096529566 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159504, + "c3": 4.1146555709662564, + "c4": 3.2917244567730095, + "c5": 2.4687933425797417, + "c6": 1.6458622283864945, + "c7": 0.8229311141932473 }, "rgb": [222, 0, 59] }, @@ -363075,23 +363075,23 @@ "year": 1802, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 1.611356822476516, - "c2": 3.66513549346201, - "c3": 12.681924609702833, - "c4": 21.255350897122128, - "c5": -0.6178604780351584, - "c6": -20.49927498841798, - "c7": -21.46904684612632 + "points": { + "c1": -20.152331141776614, + "c2": -14.017740426474372, + "c3": -21.7986756077159, + "c4": 1.2253746503652785, + "c5": 26.420016867395873, + "c6": 27.616146871784977, + "c7": 22.29436568473009 }, - "vertexSeeds": { - "c1": 7.72098426876214, - "c2": 8.030991020096717, - "c3": 8.467215408787602, - "c4": 8.37213877400996, - "c5": 8.119314361700356, - "c6": 8.406052434075, - "c7": 8.053263095351676 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576975, + "c3": 10.101710587147476, + "c4": 8.081368469717976, + "c5": 6.0610263522884775, + "c6": 4.040684234858998, + "c7": 2.020342117429499 }, "rgb": [58, 15, 49] }, @@ -363102,23 +363102,23 @@ "year": 1802, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -28.423146029310605, - "c2": -8.604946384343243, - "c3": -8.77451975828654, - "c4": -1.4520690249774582, - "c5": -17.106670404495627, - "c6": 11.162307058991999, - "c7": 5.4362602127702075 + "points": { + "c1": 3.5111796393248085, + "c2": 27.600277469833927, + "c3": 31.434115032296432, + "c4": -30.68343342440913, + "c5": 20.63871364343295, + "c6": 31.941210155554458, + "c7": -15.231354623069649 }, - "vertexSeeds": { - "c1": 2.4814100725024235, - "c2": 2.4598464378138245, - "c3": 2.3763962231627467, - "c4": 2.4791827156299524, - "c5": 2.4300082762295983, - "c6": 2.270615913543108, - "c7": 2.2205189403360284 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.60610263522885, + "c3": 3.005085529357375, + "c4": 2.404068423485897, + "c5": 1.803051317614423, + "c6": 1.2020342117429486, + "c7": 0.6010171058714743 }, "rgb": [77, 76, 132] }, @@ -363129,23 +363129,23 @@ "year": 1802, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -10.879875849485462, - "c2": -9.146124074232233, - "c3": -29.939528873591907, - "c4": 18.77298545556656, - "c5": -10.624268723464862, - "c6": 1.0405628381748535, - "c7": -20.434986859491254 + "points": { + "c1": -24.5801323461383, + "c2": -29.94494814140614, + "c3": -8.741515984463668, + "c4": 12.142900584274983, + "c5": -17.154985927819734, + "c6": 3.376549138638083, + "c7": 28.95077527023583 }, - "vertexSeeds": { - "c1": 6.415152885472106, - "c2": 6.436363078891037, - "c3": 6.6799221211966096, - "c4": 6.844778144785461, - "c5": 6.375513167957568, - "c6": 6.859269633502119, - "c7": 6.553974760078448 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560332, + "c3": 8.36800739713361, + "c4": 6.694405917706888, + "c5": 5.020804438280166, + "c6": 3.347202958853444, + "c7": 1.673601479426722 }, "rgb": [77, 76, 132] }, @@ -363156,23 +363156,23 @@ "year": 1802, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -26.24063306236654, - "c2": -28.736003765375795, - "c3": 26.40137934038067, - "c4": 3.079319308056526, - "c5": -5.657064899060892, - "c6": 7.191374788736631, - "c7": 1.6372822435756547 + "points": { + "c1": -23.18806133226858, + "c2": 21.89712538617824, + "c3": 29.65329191273085, + "c4": -32.246773588836504, + "c5": -3.3304107185799126, + "c6": -24.107020157124385, + "c7": -31.514535114753393 }, - "vertexSeeds": { - "c1": 2.5698159039224278, - "c2": 2.4786853687160906, - "c3": 2.4675518942203594, - "c4": 2.5312065110071806, - "c5": 2.5130887769063595, - "c6": 2.587670479605223, - "c7": 2.574978066986937 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712895, + "c3": 3.259361997226075, + "c4": 2.6074895977808596, + "c5": 1.9556171983356447, + "c6": 1.3037447988904298, + "c7": 0.6518723994452149 }, "rgb": [77, 76, 132] }, @@ -363183,23 +363183,23 @@ "year": 1802, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 25.081894667503207, - "c2": 9.518074559759022, - "c3": -17.352744632733703, - "c4": -27.742957554693806, - "c5": 10.487146975044212, - "c6": 27.349161325270444, - "c7": 4.883384231046371 + "points": { + "c1": -27.827425730569036, + "c2": -5.066778995203681, + "c3": 11.811653717731886, + "c4": -10.021366295670845, + "c5": 23.073248131500527, + "c6": 10.065880734571408, + "c7": 22.10492233231139 }, - "vertexSeeds": { - "c1": 4.966345128329742, - "c2": 5.172278563997176, - "c3": 5.081333038151934, - "c4": 4.970957889026942, - "c5": 4.839065715446381, - "c6": 5.216591296830809, - "c7": 5.239760315470437 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784567, + "c4": 5.12251502542764, + "c5": 3.8418862690707325, + "c6": 2.5612575127138246, + "c7": 1.2806287563569168 }, "rgb": [86, 146, 138] }, @@ -363210,23 +363210,23 @@ "year": 1802, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -27.676063795409114, - "c2": -25.042774001489338, - "c3": -6.452099101898714, - "c4": -16.762921212952364, - "c5": -1.6292220570633233, - "c6": 22.78104838668989, - "c7": -14.245325703835352 + "points": { + "c1": -2.9998176924172384, + "c2": -26.101769075181537, + "c3": -12.328619789446169, + "c4": 21.321253567503504, + "c5": 15.176461973920702, + "c6": 19.1544839972669, + "c7": 14.900162093673849 }, - "vertexSeeds": { - "c1": 1.9611508157508535, - "c2": 2.035393089581486, - "c3": 1.9622925191831144, - "c4": 1.9682225756436793, - "c5": 2.0239609057280203, - "c6": 2.1071666008994585, - "c7": 2.049836060711298 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.051317614424408, + "c3": 2.5427646786870097, + "c4": 2.0342117429496054, + "c5": 1.5256588072122068, + "c6": 1.0171058714748027, + "c7": 0.5085529357374042 }, "rgb": [86, 146, 138] }, @@ -363237,23 +363237,23 @@ "year": 1802, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 25.36080431639418, - "c2": -37.85806826095633, - "c3": -26.073941442145195, - "c4": 36.11989022666937, - "c5": 34.50551643549419, - "c6": 11.36628767383884, - "c7": -1.6870409039253502 + "points": { + "c1": -16.664278620378816, + "c2": -10.05166226175091, + "c3": 37.68646172559069, + "c4": 20.728702888340933, + "c5": -8.13521045265778, + "c6": 27.86697873420249, + "c7": 32.213638304504244 }, - "vertexSeeds": { - "c1": 3.381046551250869, - "c2": 3.484084577292842, - "c3": 3.443622049937299, - "c4": 3.407533138876732, - "c5": 3.3855863108849458, - "c6": 3.7054808049765264, - "c7": 3.62295574260459 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843275, + "c3": 4.507628294036057, + "c4": 3.606102635228847, + "c5": 2.7045769764216376, + "c6": 1.803051317614428, + "c7": 0.9015256588072097 }, "rgb": [58, 15, 49] }, @@ -363264,23 +363264,23 @@ "year": 1802, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -4.724667600212197, - "c2": -22.182725642146615, - "c3": -0.8964535707699888, - "c4": -25.286306509916002, - "c5": -5.762963194393954, - "c6": 23.019779502767857, - "c7": 7.856956625373829 + "points": { + "c1": -4.289565917652535, + "c2": -4.18419206231329, + "c3": 27.6438151311271, + "c4": 14.542348924489566, + "c5": -27.80753767243201, + "c6": -32.12216906742596, + "c7": -22.271203709977016 }, - "vertexSeeds": { - "c1": 7.383708780473559, - "c2": 7.558338514843573, - "c3": 8.089967598472324, - "c4": 7.713284890153207, - "c5": 7.686042057394767, - "c6": 7.5485258358403255, - "c7": 7.795884990702969 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013873, + "c3": 9.77808599167823, + "c4": 7.822468793342588, + "c5": 5.866851595006928, + "c6": 3.911234396671285, + "c7": 1.9556171983356425 }, "rgb": [238, 201, 159] }, @@ -363291,23 +363291,23 @@ "year": 1802, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": -9.00029697552273, - "c2": -4.85606018647394, - "c3": 20.84362539235991, - "c4": 30.261141146270973, - "c5": 38.064550051145005, - "c6": 14.507676184238633, - "c7": 17.61139834876655 + "points": { + "c1": -19.07702834977734, + "c2": -2.7071947502076483, + "c3": -10.880920893144165, + "c4": 11.955763020163957, + "c5": -8.317083043217167, + "c6": -9.792542845853575, + "c7": -0.47119392918493475 }, - "vertexSeeds": { - "c1": 10.587544603430215, - "c2": 11.380356679193122, - "c3": 10.586971304760304, - "c4": 10.876639910884078, - "c5": 10.745828055865829, - "c6": 11.43229346382076, - "c7": 11.275778492645133 + "offsets": { + "c1": 19.223300970873787, + "c2": 16.477115117891817, + "c3": 13.730929264909848, + "c4": 10.984743411927878, + "c5": 8.238557558945908, + "c6": 5.492371705963939, + "c7": 2.7461858529819696 }, "rgb": [222, 0, 59] }, @@ -363318,23 +363318,23 @@ "year": 1802, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 1.9967614219819332, - "c2": -16.89625497845808, - "c3": 4.6974720853553364, - "c4": -14.405292264553909, - "c5": 18.108149680130914, - "c6": 5.477771621330646, - "c7": 29.365856467007866 + "points": { + "c1": 28.03337403781827, + "c2": 6.427735356669217, + "c3": 6.3459378144324745, + "c4": -7.35508685936728, + "c5": -12.12046979253855, + "c6": 22.840514030365803, + "c7": 8.998732623980864 }, - "vertexSeeds": { - "c1": 10.427461103690858, - "c2": 10.32714920620186, - "c3": 10.490660213632015, - "c4": 10.43428529841151, - "c5": 10.385242466319504, - "c6": 10.344247975697156, - "c7": 10.331103519290703 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.03467406380025, + "c3": 12.528895053166842, + "c4": 10.023116042533433, + "c5": 7.517337031900224, + "c6": 5.011558021266817, + "c7": 2.5057790106334084 }, "rgb": [58, 15, 49] }, @@ -363345,23 +363345,23 @@ "year": 1802, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -9.50794165093167, - "c2": 16.079135749521612, - "c3": -28.44234316134017, - "c4": 1.8649213934647761, - "c5": -2.6877787480994044, - "c6": 26.092062817626243, - "c7": -3.828392038215995 + "points": { + "c1": 31.5756461728638, + "c2": -33.26008623880807, + "c3": 24.794599186429664, + "c4": 5.3698665154117435, + "c5": 29.182978655447215, + "c6": -10.082353953715671, + "c7": 11.178515080157553 }, - "vertexSeeds": { - "c1": 5.735485529147157, - "c2": 5.433684394623472, - "c3": 5.750300099372206, - "c4": 5.935352813529391, - "c5": 5.42234780631249, - "c6": 5.893639544207028, - "c7": 5.528699985116113 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -363372,23 +363372,23 @@ "year": 1802, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 1.7643616740945234, - "c2": 5.037540370586534, - "c3": -23.515355641011208, - "c4": -7.049597714745943, - "c5": 17.96904459797738, - "c6": 15.115924209625085, - "c7": 0.9250223361606054 + "points": { + "c1": -7.301473122772389, + "c2": -0.2152233270722661, + "c3": 4.843440510390025, + "c4": 2.4652142884437716, + "c5": 5.42074060941593, + "c6": -16.342556372686595, + "c7": -2.522019994243159 }, - "vertexSeeds": { - "c1": 4.319637232322274, - "c2": 4.571777610823263, - "c3": 4.372417432102858, - "c4": 4.496670146022906, - "c5": 4.394747459262841, - "c6": 4.607108286725799, - "c7": 4.597323492532038 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653263, + "c3": 5.54785020804438, + "c4": 4.438280166435508, + "c5": 3.3287101248266264, + "c6": 2.219140083217754, + "c7": 1.1095700416088818 }, "rgb": [86, 146, 138] }, @@ -363399,23 +363399,23 @@ "year": 1802, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 30.549959874201676, - "c2": 5.2362177047140435, - "c3": -27.90765424995928, - "c4": -14.653339602922877, - "c5": -37.56554754388108, - "c6": -24.309011476714698, - "c7": 31.860322701428316 + "points": { + "c1": 13.299845902387794, + "c2": -28.78544537599244, + "c3": 42.05150442041818, + "c4": 34.81798613299388, + "c5": -29.578402710985323, + "c6": -3.8302289954922415, + "c7": -3.7493771532034117 }, - "vertexSeeds": { - "c1": 2.868647508250856, - "c2": 2.743392044391018, - "c3": 2.7391601061811515, - "c4": 2.885004945368776, - "c5": 2.7063557148051314, - "c6": 2.7135889619449833, - "c7": 2.7501150036305098 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113733, + "c3": 3.5136384650947785, + "c4": 2.810910772075825, + "c5": 2.1081830790568614, + "c6": 1.4054553860379078, + "c7": 0.7027276930189539 }, "rgb": [222, 0, 59] }, @@ -363426,23 +363426,23 @@ "year": 1802, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -3.7833378616604563, - "c2": -16.999965763699777, - "c3": 2.183052558210189, - "c4": -22.61295288267536, - "c5": 8.819663044551557, - "c6": 29.566367696691263, - "c7": 15.428160054065788 + "points": { + "c1": 13.667438970293045, + "c2": 5.8290719363278605, + "c3": -30.805398391778322, + "c4": -3.805348029396505, + "c5": 17.933304833262415, + "c6": -19.422000019543674, + "c7": 28.392082073165138 }, - "vertexSeeds": { - "c1": 4.388672230608373, - "c2": 4.325718153406434, - "c3": 4.552599935130294, - "c4": 4.38518782056236, - "c5": 4.292996660661697, - "c6": 4.5752640222605105, - "c7": 4.425831793360908 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [238, 201, 159] }, @@ -363453,23 +363453,23 @@ "year": 1802, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -11.46762631141334, - "c2": -15.037445606608223, - "c3": -17.97920551588298, - "c4": 7.662729324974073, - "c5": -19.581169333504835, - "c6": -21.08570992901807, - "c7": -33.487879427303845 + "points": { + "c1": -37.3377257717312, + "c2": -10.652252432188892, + "c3": -41.004211689957955, + "c4": -20.821302112451107, + "c5": 13.439085466765249, + "c6": 35.88240110725155, + "c7": -31.379078333719193 }, - "vertexSeeds": { - "c1": 2.8584203946254503, - "c2": 2.7766341016173954, - "c3": 2.870726237145622, - "c4": 2.757786111408498, - "c5": 2.7664629126855353, - "c6": 2.7989655469353685, - "c7": 2.8950199961245766 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194173, + "c3": 3.559870550161809, + "c4": 2.8478964401294453, + "c5": 2.1359223300970918, + "c6": 1.4239482200647282, + "c7": 0.7119741100323641 }, "rgb": [86, 146, 138] }, @@ -363480,23 +363480,23 @@ "year": 1802, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -28.820371599423236, - "c2": -20.798301649897077, - "c3": -33.13265605178996, - "c4": -14.612433998680213, - "c5": 6.763302752479895, - "c6": 9.068457695593914, - "c7": -5.3316418344540075 + "points": { + "c1": -34.89118788787104, + "c2": -37.493337049122225, + "c3": -4.110145702106514, + "c4": -18.45747106300834, + "c5": 20.76040251290579, + "c6": 24.914951000925292, + "c7": 30.04017901052096 }, - "vertexSeeds": { - "c1": 1.5472741617482404, - "c2": 1.5182323706699266, - "c3": 1.5904691095574557, - "c4": 1.573496250274896, - "c5": 1.569691076080062, - "c6": 1.6641777873218282, - "c7": 1.6833026733962848 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.44105409153953, + "c3": 2.0342117429496054, + "c4": 1.6273693943596852, + "c5": 1.220527045769765, + "c6": 0.8136846971798404, + "c7": 0.4068423485899202 }, "rgb": [86, 146, 138] }, @@ -363507,23 +363507,23 @@ "year": 1802, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": -42.90189439186403, - "c2": -25.216107238031313, - "c3": 32.988354008727455, - "c4": -31.19232323026418, - "c5": -27.461352800742734, - "c6": 13.886137159932453, - "c7": -32.15836133820489 + "points": { + "c1": 39.342532164800545, + "c2": 4.570592975804026, + "c3": 42.04693936415434, + "c4": 3.945108511581772, + "c5": 17.118992289235656, + "c6": -4.403320231632961, + "c7": 44.77302147878771 }, - "vertexSeeds": { - "c1": 12.224921890717908, - "c2": 12.266400534161248, - "c3": 12.270721834677024, - "c4": 12.26796267480419, - "c5": 12.226477049976028, - "c6": 12.220981627999594, - "c7": 12.234939234949168 + "offsets": { + "c1": 20.485436893203886, + "c2": 17.558945908460558, + "c3": 14.632454923717228, + "c4": 11.705963938973898, + "c5": 8.779472954229988, + "c6": 5.852981969486658, + "c7": 2.926490984743329 }, "rgb": [77, 76, 132] }, @@ -363534,23 +363534,23 @@ "year": 1802, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -20.76130419760968, - "c2": 2.9099349640082757, - "c3": 13.957921107837148, - "c4": -18.963335151517917, - "c5": -28.92703826333569, - "c6": 20.321334545299653, - "c7": -5.5524014293446164 + "points": { + "c1": -17.896193617053324, + "c2": 22.983963381452263, + "c3": 1.9091041051636708, + "c4": 31.404290962031283, + "c5": 4.460342844805879, + "c6": -13.799729157571793, + "c7": 21.006101142799146 }, - "vertexSeeds": { - "c1": 5.128421742096757, - "c2": 5.134442738033743, - "c3": 4.879823556835431, - "c4": 5.137431315615522, - "c5": 4.843285852239773, - "c6": 5.190417182078406, - "c7": 5.006386220891322 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -363561,23 +363561,23 @@ "year": 1802, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": 23.12336389558805, - "c2": 36.666204025178054, - "c3": 39.53657441362244, - "c4": 6.414773233046965, - "c5": 25.257373827440055, - "c6": -37.139231754763856, - "c7": 39.96980267536221 + "points": { + "c1": 31.488372831516976, + "c2": 31.78657824467968, + "c3": 32.44183545930941, + "c4": 37.89984156622389, + "c5": -33.21955629157321, + "c6": -32.15613503301671, + "c7": -49.01866534198048 }, - "vertexSeeds": { - "c1": 6.6678380096388965, - "c2": 6.7598802136687945, - "c3": 6.724836875502505, - "c4": 6.506528109666154, - "c5": 6.522607285189643, - "c6": 6.516136350639797, - "c7": 6.395560590411862 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198344, + "c3": 8.159963014331945, + "c4": 6.527970411465562, + "c5": 4.895977808599162, + "c6": 3.263985205732781, + "c7": 1.6319926028663996 }, "rgb": [77, 76, 132] }, @@ -363588,23 +363588,23 @@ "year": 1802, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 19.19267960262453, - "c2": -22.905414353279376, - "c3": 13.715357430693572, - "c4": 4.016907387192013, - "c5": 14.550905125723055, - "c6": -7.808605188324972, - "c7": -5.190152141701329 + "points": { + "c1": 29.027236189063025, + "c2": -0.1138032187567859, + "c3": 27.29223730831432, + "c4": 4.035821383346594, + "c5": -23.799102322387608, + "c6": 8.93977381455931, + "c7": 32.30929509447031 }, - "vertexSeeds": { - "c1": 1.1157677948571114, - "c2": 1.0337453285486613, - "c3": 1.100902417483488, - "c4": 1.130604900709109, - "c5": 1.1520017995982157, - "c6": 1.0672187517730802, - "c7": 1.0682300505969196 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535371, + "c3": 1.4100785945446146, + "c4": 1.128062875635692, + "c5": 0.8460471567267694, + "c6": 0.5640314378178451, + "c7": 0.2820157189089243 }, "rgb": [86, 146, 138] }, @@ -363615,23 +363615,23 @@ "year": 1802, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": 12.17767522879057, - "c2": -20.57339096931629, - "c3": 12.66424395002575, - "c4": -7.190094717293679, - "c5": -11.33739705605182, - "c6": -17.975116491771047, - "c7": 5.131365317180514 + "points": { + "c1": -14.16722498263268, + "c2": -21.863211525997507, + "c3": -17.226489670567222, + "c4": -12.673698753693158, + "c5": -23.145303610753295, + "c6": -11.550227179630346, + "c7": 15.676880822153464 }, - "vertexSeeds": { - "c1": 3.2032482891093217, - "c2": 3.1292076808729146, - "c3": 3.1767785579175496, - "c4": 2.9360130394035098, - "c5": 3.1786279998048856, - "c6": 3.208900172019807, - "c7": 3.1467003332908576 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717057, + "c3": 3.860379103097553, + "c4": 3.0883032824780408, + "c5": 2.3162274618585283, + "c6": 1.5441516412390248, + "c7": 0.7720758206195124 }, "rgb": [58, 15, 49] }, @@ -363642,23 +363642,23 @@ "year": 1802, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -15.154302715324445, - "c2": -3.573475107473392, - "c3": 9.225737251293388, - "c4": -12.457852589528798, - "c5": -14.845634831306931, - "c6": 10.282821849769448, - "c7": 27.286248311036765 + "points": { + "c1": 25.873017131690176, + "c2": -1.1490534151802478, + "c3": 18.456970031095317, + "c4": -27.57615992082158, + "c5": -19.833846832200585, + "c6": -8.31246601869423, + "c7": -23.353496159825262 }, - "vertexSeeds": { - "c1": 7.8869311040646295, - "c2": 7.91229163490522, - "c3": 7.655301850486342, - "c4": 7.708539576936703, - "c5": 8.024460456566672, - "c6": 7.745507838691935, - "c7": 7.637615964964525 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772544, + "c3": 9.639389736477108, + "c4": 7.7115117891816904, + "c5": 5.783633841886272, + "c6": 3.8557558945908355, + "c7": 1.9278779472954177 }, "rgb": [86, 146, 138] }, @@ -363669,23 +363669,23 @@ "year": 1802, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -19.646368829160437, - "c2": 2.680811705055529, - "c3": -19.651238119697474, - "c4": 22.56647123776804, - "c5": 1.033274477728412, - "c6": -7.443089568789491, - "c7": 6.627754197957238 + "points": { + "c1": -9.405454987889632, + "c2": 9.5053588598024, + "c3": 15.27292623924108, + "c4": 10.52526152828635, + "c5": 20.202759468958703, + "c6": -18.972886337668754, + "c7": -10.714641091065609 }, - "vertexSeeds": { - "c1": 4.19059791573283, - "c2": 4.226514842560226, - "c3": 4.41134346851026, - "c4": 4.427255306588127, - "c5": 4.062799155816338, - "c6": 4.193005942248301, - "c7": 4.35657356612366 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.316689782709196, + "c4": 4.25335182616736, + "c5": 3.190013869625522, + "c6": 2.1266759130836843, + "c7": 1.0633379565418377 }, "rgb": [58, 15, 49] }, @@ -363696,23 +363696,23 @@ "year": 1802, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 19.799567571790313, - "c2": -25.05158442694475, - "c3": 19.24337362241998, - "c4": 4.80593903384694, - "c5": -17.214219976546968, - "c6": 14.783712624814342, - "c7": -17.296949966483353 + "points": { + "c1": 1.999569581538914, + "c2": 34.52870838109547, + "c3": -9.637988142806854, + "c4": -6.743176911920905, + "c5": -17.435777534441268, + "c6": 14.033261902383565, + "c7": 25.16149213864189 }, - "vertexSeeds": { - "c1": 7.348871842628197, - "c2": 7.321064689785743, - "c3": 7.515668020889882, - "c4": 7.671214871774351, - "c5": 7.049162199052236, - "c6": 7.462636245041181, - "c7": 7.7446804713608985 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169206, + "c3": 9.29264909847435, + "c4": 7.434119278779476, + "c5": 5.575589459084603, + "c6": 3.7170596393897477, + "c7": 1.8585298196948739 }, "rgb": [222, 0, 59] }, @@ -363723,23 +363723,23 @@ "year": 1802, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 5.598459570387696, - "c2": -27.192520223889034, - "c3": 6.766116393608151, - "c4": -29.32631840464438, - "c5": 6.529533103076091, - "c6": 9.569812765662107, - "c7": 1.299757146462639 + "points": { + "c1": -7.169156886367077, + "c2": -19.844609048398347, + "c3": 22.087620230338317, + "c4": 12.51466358095734, + "c5": 17.220258826546136, + "c6": 3.5211205171239612, + "c7": -2.8867307600427132 }, - "vertexSeeds": { - "c1": 4.673848653102028, - "c2": 4.8851724263904055, - "c3": 4.760155119773409, - "c4": 4.578178735956393, - "c5": 4.7340156550193, - "c6": 4.890806049855014, - "c7": 4.702071063024435 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.0180305131761465, + "c3": 5.848358760980116, + "c4": 4.678687008784095, + "c5": 3.5090152565880732, + "c6": 2.339343504392052, + "c7": 1.1696717521960216 }, "rgb": [58, 15, 49] }, @@ -363750,23 +363750,23 @@ "year": 1802, "resistanceReported": false, "duration": 6566400, - "curveSeeds": { - "c1": 2.2826575385517955, - "c2": -4.630329104167085, - "c3": -14.591955491836343, - "c4": 3.164343385117604, - "c5": 7.499467051063206, - "c6": 7.0735226225358545, - "c7": 6.224531889056589 + "points": { + "c1": -3.052594367870139, + "c2": -8.403025696764317, + "c3": -16.748573262727657, + "c4": 3.8414749535700956, + "c5": 8.204073964117821, + "c6": 3.647568998044271, + "c7": 3.2156598881455487 }, - "vertexSeeds": { - "c1": 4.7378107672684395, - "c2": 4.5558162771165716, - "c3": 4.438395883881154, - "c4": 4.445880091382942, - "c5": 4.461189287859948, - "c6": 4.6587097490685, - "c7": 4.59214259966811 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894592, + "c3": 5.686546463245495, + "c4": 4.549237170596398, + "c5": 3.4119278779473006, + "c6": 2.2746185852982035, + "c7": 1.1373092926491062 }, "rgb": [77, 76, 132] }, @@ -363777,23 +363777,23 @@ "year": 1802, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -16.73024958937812, - "c2": 18.978815663096547, - "c3": 19.994741549463484, - "c4": 24.793438594676566, - "c5": 1.490979307370793, - "c6": -28.26119088145401, - "c7": 15.367561888023147 + "points": { + "c1": 18.60024105126905, + "c2": -12.786312550605327, + "c3": -30.989333057921296, + "c4": -13.074415016008167, + "c5": 11.885703181266607, + "c6": 3.9561554782086645, + "c7": 10.634750822324193 }, - "vertexSeeds": { - "c1": 4.91764551017883, - "c2": 4.546765567738891, - "c3": 4.949959340798848, - "c4": 4.675180866378773, - "c5": 4.9198674063070165, - "c6": 4.557434144328621, - "c7": 4.737822612422008 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181233, + "c4": 4.789644012944979, + "c5": 3.592233009708734, + "c6": 2.3948220064724897, + "c7": 1.1974110032362448 }, "rgb": [58, 15, 49] }, @@ -363804,23 +363804,23 @@ "year": 1802, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -21.849767465988577, - "c2": 16.17934426443686, - "c3": 15.009406667398434, - "c4": 20.145385287683222, - "c5": 26.362948587397764, - "c6": -25.56683131243991, - "c7": -22.886377554459095 + "points": { + "c1": -13.640332173288016, + "c2": -16.0011078914052, + "c3": -26.72421382411134, + "c4": -15.612872241071813, + "c5": 15.331053016017194, + "c6": -20.066770697288028, + "c7": -18.008790838581525 }, - "vertexSeeds": { - "c1": 5.836954986962969, - "c2": 5.817179814855472, - "c3": 5.858741152187065, - "c4": 5.755301766849608, - "c5": 5.620686463480973, - "c6": 6.1228634712539005, - "c7": 5.983269101118532 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.90429958391124, + "c3": 7.420249653259354, + "c4": 5.936199722607487, + "c5": 4.45214979195562, + "c6": 2.968099861303753, + "c7": 1.484049930651867 }, "rgb": [86, 146, 138] }, @@ -363831,23 +363831,23 @@ "year": 1802, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 19.280628108689605, - "c2": -9.56948511717287, - "c3": 1.4025260270610111, - "c4": -27.718670749605682, - "c5": 9.017575542663053, - "c6": -25.61757105898156, - "c7": 2.901537327465963 + "points": { + "c1": 18.921943550102462, + "c2": 24.019912822371275, + "c3": -23.77485591738889, + "c4": 15.413888318004233, + "c5": 21.842865419568852, + "c6": 22.927580850049196, + "c7": -25.220420006280882 }, - "vertexSeeds": { - "c1": 5.552401596868754, - "c2": 5.505614573841225, - "c3": 5.552753895002933, - "c4": 5.607460357201576, - "c5": 5.70950079935237, - "c6": 5.528947847312811, - "c7": 5.804707067838787 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -363858,23 +363858,23 @@ "year": 1802, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -5.240768595382832, - "c2": -3.636841535084912, - "c3": -6.221264191245844, - "c4": -18.95354941738767, - "c5": 21.089738141805913, - "c6": 18.88112033046392, - "c7": -6.267979600737739 + "points": { + "c1": -30.564029094730326, + "c2": -27.563550310126328, + "c3": -22.721906971582634, + "c4": -3.3896111713183785, + "c5": -23.94840071961235, + "c6": -6.748292515675633, + "c7": -11.544816479982547 }, - "vertexSeeds": { - "c1": 3.8728119841242283, - "c2": 4.0079833050597795, - "c3": 4.102910977699045, - "c4": 4.047833916276622, - "c5": 3.94016643595294, - "c6": 3.9709699246334873, - "c7": 3.947955792185553 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687939, + "c3": 4.993065187239943, + "c4": 3.9944521497919596, + "c5": 2.9958391123439636, + "c6": 1.9972260748959798, + "c7": 0.9986130374479957 }, "rgb": [58, 15, 49] }, @@ -363885,23 +363885,23 @@ "year": 1802, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -13.818126378604546, - "c2": 8.644840761544131, - "c3": -9.350734966761205, - "c4": 18.450674296911025, - "c5": 2.2358815848266502, - "c6": -10.217341932353818, - "c7": -16.0075162298174 + "points": { + "c1": 16.66276961693461, + "c2": 22.977642259612615, + "c3": -4.039808896430131, + "c4": 13.90235639828937, + "c5": -16.415760513339812, + "c6": 13.546380074397682, + "c7": 11.0486849800837 }, - "vertexSeeds": { - "c1": 4.254472103769142, - "c2": 4.040660587809204, - "c3": 4.189808887149874, - "c4": 4.239432427183861, - "c5": 4.068172676092386, - "c6": 4.37766940652001, - "c7": 4.005364830339406 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175679, + "c4": 4.234858992140551, + "c5": 3.176144244105413, + "c6": 2.1174294960702755, + "c7": 1.0587147480351378 }, "rgb": [238, 201, 159] }, @@ -363912,23 +363912,23 @@ "year": 1802, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -2.851734721741426, - "c2": 8.765645745041212, - "c3": 23.141733547018404, - "c4": 10.274595339747108, - "c5": 10.331667106705318, - "c6": -13.466207841695876, - "c7": 15.053463116623028 + "points": { + "c1": -29.474642922241607, + "c2": -20.185581863739266, + "c3": 13.582789656891578, + "c4": 3.639677163848674, + "c5": 12.716449860794071, + "c6": 9.313132651708607, + "c7": 9.393932174288835 }, - "vertexSeeds": { - "c1": 3.9788816602180113, - "c2": 3.900140911500712, - "c3": 4.1518907560598795, - "c4": 4.081475828983997, - "c5": 3.871495052377501, - "c6": 4.065042887836345, - "c7": 4.186117058016367 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [77, 76, 132] }, @@ -363939,23 +363939,23 @@ "year": 1802, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -31.385433506059794, - "c2": -4.363482398885374, - "c3": 16.259750736797173, - "c4": 12.949327314251136, - "c5": 18.200013361283602, - "c6": -10.24715005874718, - "c7": 29.73907748322148 + "points": { + "c1": 27.515959500570396, + "c2": 13.907007239554659, + "c3": 2.1296931534293293, + "c4": 14.167807409908775, + "c5": -10.978257644416836, + "c6": 19.85283347728278, + "c7": -28.504120241721054 }, - "vertexSeeds": { - "c1": 5.990451461902601, - "c2": 6.161900591629286, - "c3": 6.199492875469499, - "c4": 5.984715029606422, - "c5": 6.290301091485767, - "c6": 6.328640559433123, - "c7": 6.247019698164843 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.07073509015257, + "c3": 7.558945908460482, + "c4": 6.047156726768375, + "c5": 4.535367545076285, + "c6": 3.0235783633841966, + "c7": 1.5117891816921074 }, "rgb": [77, 76, 132] }, @@ -363966,23 +363966,23 @@ "year": 1802, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 8.353262067754724, - "c2": 17.576100811164483, - "c3": -20.669859332293612, - "c4": 4.183406398970309, - "c5": -27.57275386526312, - "c6": 1.4269095453666871, - "c7": -10.862658493389521 + "points": { + "c1": -15.840071438691323, + "c2": -28.163783500258894, + "c3": 27.915809478196653, + "c4": -24.207196728523982, + "c5": -22.444576433504224, + "c6": 1.5799915209103013, + "c7": -9.525296276086884 }, - "vertexSeeds": { - "c1": 5.265832079141353, - "c2": 5.067274268440017, - "c3": 5.102114233591119, - "c4": 4.841779586404214, - "c5": 5.137368940706444, - "c6": 5.258676407861065, - "c7": 5.205912244544539 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650478, + "c4": 5.048543689320386, + "c5": 3.786407766990294, + "c6": 2.524271844660193, + "c7": 1.2621359223300919 }, "rgb": [58, 15, 49] }, @@ -363993,23 +363993,23 @@ "year": 1802, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -4.764929221687051, - "c2": -29.913171404599645, - "c3": 11.796080115678002, - "c4": -19.001863433892602, - "c5": 2.63952575435939, - "c6": 7.403417203362615, - "c7": 25.629008698793392 + "points": { + "c1": -28.081799283232915, + "c2": -13.958973640818012, + "c3": -17.58637898659598, + "c4": -16.85538145409303, + "c5": -31.516077566046913, + "c6": -19.118103779565793, + "c7": 30.314458327158746 }, - "vertexSeeds": { - "c1": 7.1761254477634235, - "c2": 7.445028522044593, - "c3": 7.02773068773001, - "c4": 7.1274814211459985, - "c5": 7.143227661105427, - "c6": 7.381872010120764, - "c7": 6.8697111043189345 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485436, + "c3": 8.899676375404532, + "c4": 7.119741100323624, + "c5": 5.339805825242718, + "c6": 3.559870550161812, + "c7": 1.779935275080906 }, "rgb": [58, 15, 49] }, @@ -364020,23 +364020,23 @@ "year": 1802, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 6.931674376633609, - "c2": 26.61231569141315, - "c3": 12.207788776291345, - "c4": -9.909651769428176, - "c5": 1.8109216580796712, - "c6": -14.077727864816179, - "c7": 2.802475829580686 + "points": { + "c1": -7.005452010735745, + "c2": -20.10236765252342, + "c3": 14.030966018078772, + "c4": 27.597305658571734, + "c5": 4.976287911042277, + "c6": 25.40374088295208, + "c7": 28.734791708975727 }, - "vertexSeeds": { - "c1": 4.647497485859234, - "c2": 5.102001553695564, - "c3": 4.930753158773266, - "c4": 5.093650418799165, - "c5": 5.082600954165196, - "c6": 5.080611100891732, - "c7": 4.831761285514187 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699027, + "c3": 6.1488673139158525, + "c4": 4.919093851132688, + "c5": 3.6893203883495134, + "c6": 2.459546925566349, + "c7": 1.2297734627831745 }, "rgb": [222, 0, 59] }, @@ -364047,23 +364047,23 @@ "year": 1802, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -20.175186702233926, - "c2": -9.748444711774194, - "c3": -15.459036610111616, - "c4": 20.85763212545779, - "c5": 23.269199221869606, - "c6": 24.962566671390498, - "c7": 21.290959128716835 + "points": { + "c1": -5.719999375483759, + "c2": -0.6440800224816883, + "c3": -5.410414665344131, + "c4": -10.095057046296176, + "c5": -10.927095479819826, + "c6": -18.942636574766116, + "c7": 15.314112854794203 }, - "vertexSeeds": { - "c1": 5.558204558186961, - "c2": 5.884900605883518, - "c3": 5.788598945649564, - "c4": 5.7982625941407555, - "c5": 5.513680198972477, - "c6": 5.439234695645415, - "c7": 5.448544214413789 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267678, + "c3": 7.050392972723077, + "c4": 5.640314378178458, + "c5": 4.230235783633839, + "c6": 2.820157189089238, + "c7": 1.410078594544619 }, "rgb": [58, 15, 49] }, @@ -364074,23 +364074,23 @@ "year": 1802, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -6.95165861503337, - "c2": 15.277935061435201, - "c3": 32.499222835355695, - "c4": -4.88593323818413, - "c5": 17.030362573906366, - "c6": 23.863840331566152, - "c7": -13.563368764645443 + "points": { + "c1": -31.933824146839243, + "c2": -14.159067931327922, + "c3": 18.18794530744455, + "c4": -0.4386506305273059, + "c5": 38.71591861970781, + "c6": -4.801100700773873, + "c7": -28.35239707719562 }, - "vertexSeeds": { - "c1": 5.658701232671154, - "c2": 5.7428375095260975, - "c3": 5.563784067008853, - "c4": 5.744162987143523, - "c5": 5.792294894300968, - "c6": 5.79258120337929, - "c7": 5.6532040646158155 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066592, + "c3": 6.934812760055472, + "c4": 5.547850208044395, + "c5": 4.160887656033275, + "c6": 2.7739251040221977, + "c7": 1.3869625520111197 }, "rgb": [238, 201, 159] }, @@ -364101,23 +364101,23 @@ "year": 1802, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 26.960816414150642, - "c2": 8.923156479388425, - "c3": -37.23525052307717, - "c4": -0.14636827531272445, - "c5": 25.618990566525568, - "c6": 28.83332581898611, - "c7": -18.42703654014836 + "points": { + "c1": 28.560148420062575, + "c2": 27.757717090358767, + "c3": 38.430118950964285, + "c4": -8.995871165732154, + "c5": 9.141739031541327, + "c6": -13.56842348143892, + "c7": 38.63338675560985 }, - "vertexSeeds": { - "c1": 5.446329612531219, - "c2": 5.924438323528438, - "c3": 5.7602265955778735, - "c4": 5.526952912678784, - "c5": 5.818260095947091, - "c6": 5.866336041104939, - "c7": 5.42140947750707 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -364128,23 +364128,23 @@ "year": 1802, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -24.37292150056016, - "c2": -11.301581892295442, - "c3": 3.623965632165209, - "c4": -15.886694552533207, - "c5": 31.205774588794668, - "c6": -26.1349613515488, - "c7": -14.835617702414407 + "points": { + "c1": 6.660439480499797, + "c2": -42.07036293340257, + "c3": 0.02734051901373391, + "c4": -30.21993089479053, + "c5": 12.930726016209427, + "c6": 23.902849711133, + "c7": -27.733095845727476 }, - "vertexSeeds": { - "c1": 12.969385300636382, - "c2": 13.423165872980046, - "c3": 13.47621922415141, - "c4": 12.997382592588327, - "c5": 13.43178403073836, - "c6": 12.302740680810519, - "c7": 12.555050533182529 + "offsets": { + "c1": 22.588996763754047, + "c2": 19.36199722607488, + "c3": 16.134997688395753, + "c4": 12.907998150716587, + "c5": 9.68099861303746, + "c6": 6.453999075358293, + "c7": 3.2269995376791663 }, "rgb": [238, 201, 159] }, @@ -364155,23 +364155,23 @@ "year": 1802, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 2.1330403140829084, - "c2": 18.23186802022872, - "c3": -28.019730236323483, - "c4": 6.925693096897309, - "c5": -26.045565908967106, - "c6": 19.328203027395364, - "c7": 28.934479151927274 + "points": { + "c1": -21.687577092747887, + "c2": -12.674866119724133, + "c3": -20.323549516272582, + "c4": -20.123725264181484, + "c5": -0.47938546785684366, + "c6": 21.69959824542537, + "c7": -28.627027431280197 }, - "vertexSeeds": { - "c1": 5.591880582791101, - "c2": 5.274094982758062, - "c3": 5.3713829044645705, - "c4": 5.697070290188074, - "c5": 5.784598307486749, - "c6": 5.456105171898456, - "c7": 5.774958301998693 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388344, + "c3": 7.119741100323625, + "c4": 5.695792880258897, + "c5": 4.271844660194177, + "c6": 2.8478964401294484, + "c7": 1.4239482200647189 }, "rgb": [58, 15, 49] }, @@ -364182,23 +364182,23 @@ "year": 1802, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": -33.41903654841066, - "c2": -3.7557230102367427, - "c3": -10.688549803648417, - "c4": -0.8325745204698975, - "c5": 8.426583478295143, - "c6": -4.548024200885806, - "c7": -22.260500215474234 + "points": { + "c1": 24.555593869476226, + "c2": -5.549386885717581, + "c3": -29.947826483738826, + "c4": -14.521721273921031, + "c5": -7.27922927144234, + "c6": -6.952651071586175, + "c7": -2.7260521542183866 }, - "vertexSeeds": { - "c1": 5.170509560268896, - "c2": 5.261446094716551, - "c3": 5.533394316271498, - "c4": 5.638917617206644, - "c5": 5.097707508055447, - "c6": 5.4339907280049715, - "c7": 5.246062060870738 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.12760055478501, + "c3": 6.773000462320847, + "c4": 5.418400369856685, + "c5": 4.063800277392505, + "c6": 2.7092001849283247, + "c7": 1.3546000924641624 }, "rgb": [58, 15, 49] }, @@ -364209,23 +364209,23 @@ "year": 1802, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 7.832982449085993, - "c2": 7.753587123095382, - "c3": 19.272852944010122, - "c4": -8.544875138231859, - "c5": -14.562142780113565, - "c6": 2.0736598897407994, - "c7": 3.00464692251634 + "points": { + "c1": 10.009379439985572, + "c2": 26.168301557830695, + "c3": -19.721616220727128, + "c4": 25.417188457543695, + "c5": 21.1094144149845, + "c6": 20.470540587376043, + "c7": -10.232443587146076 }, - "vertexSeeds": { - "c1": 6.938362365168193, - "c2": 7.372491923070999, - "c3": 7.394651783074982, - "c4": 7.120398684347844, - "c5": 7.321381298853784, - "c6": 6.92917525033952, - "c7": 7.083721618444332 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [86, 146, 138] }, @@ -364236,23 +364236,23 @@ "year": 1802, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -13.64839674062501, - "c2": 29.833370524361605, - "c3": -31.35044753565851, - "c4": -29.25557927114493, - "c5": 32.75212589435162, - "c6": 17.44706407758968, - "c7": 16.927447025044216 + "points": { + "c1": -31.24237224941728, + "c2": -10.136153269475695, + "c3": -20.15381111038954, + "c4": 8.553004836870983, + "c5": -33.56517352550674, + "c6": -3.5744249213605386, + "c7": -6.771756822931547 }, - "vertexSeeds": { - "c1": 3.512814918024613, - "c2": 3.225819067503149, - "c3": 3.366524437087981, - "c4": 3.242599743793831, - "c5": 3.4944884960378673, - "c6": 3.5216298078496098, - "c7": 3.2091515088429667 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441054, + "c3": 4.276467868700879, + "c4": 3.4211742949607022, + "c5": 2.565880721220527, + "c6": 1.7105871474803511, + "c7": 0.8552935737401756 }, "rgb": [222, 0, 59] }, @@ -364263,23 +364263,23 @@ "year": 1802, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -28.42996333156157, - "c2": -11.41227387260081, - "c3": 7.052616653786863, - "c4": -12.589962589405093, - "c5": 5.014475207134403, - "c6": -22.253658442322457, - "c7": 18.121177683026858 + "points": { + "c1": -32.877626423392904, + "c2": 29.63561408957169, + "c3": -0.4614764506579121, + "c4": -0.7725735140287568, + "c5": 20.886917041359276, + "c6": -12.228330829461967, + "c7": 5.905012511060612 }, - "vertexSeeds": { - "c1": 6.81796419422746, - "c2": 6.980696461246085, - "c3": 7.095382726028738, - "c4": 7.129137570604501, - "c5": 6.842857481134632, - "c6": 6.678840926482594, - "c7": 7.237424627346281 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043004, + "c3": 8.645399907535827, + "c4": 6.916319926028669, + "c5": 5.187239944521493, + "c6": 3.4581599630143347, + "c7": 1.7290799815071765 }, "rgb": [77, 76, 132] }, @@ -364290,23 +364290,23 @@ "year": 1802, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 27.84464168750958, - "c2": 1.3321501255137136, - "c3": 31.865021689470858, - "c4": -28.483440805933725, - "c5": 4.33215458010045, - "c6": -16.812627462150495, - "c7": 6.170861480413606 + "points": { + "c1": 3.2835681156069327, + "c2": -16.14218640580807, + "c3": -29.037305359799106, + "c4": 28.00677533279459, + "c5": -33.21525562561085, + "c6": -16.429632557639284, + "c7": -13.52224744900833 }, - "vertexSeeds": { - "c1": 5.800220024848271, - "c2": 5.578722968958488, - "c3": 5.875806244732031, - "c4": 5.576876974288613, - "c5": 5.645802513610408, - "c6": 5.898221891997737, - "c7": 5.515803493180262 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669895, + "c3": 7.2815533980582545, + "c4": 5.825242718446597, + "c5": 4.368932038834957, + "c6": 2.9126213592232983, + "c7": 1.4563106796116403 }, "rgb": [222, 0, 59] }, @@ -364317,23 +364317,23 @@ "year": 1802, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -28.37783142064041, - "c2": 1.0712764111806479, - "c3": -24.10292948853006, - "c4": 28.729049315617033, - "c5": 7.1761909299269675, - "c6": -7.031591410580226, - "c7": -32.87588926563301 + "points": { + "c1": -6.435667974588021, + "c2": 17.005883067934604, + "c3": 21.436564513320732, + "c4": -3.6487831548043594, + "c5": 2.7690042560951795, + "c6": 21.848088531480805, + "c7": 32.13594822005838 }, - "vertexSeeds": { - "c1": 3.7531672387764217, - "c2": 3.7693747248214535, - "c3": 3.964709122929146, - "c4": 3.793261136632581, - "c5": 3.8296761893138616, - "c6": 3.7093874704384846, - "c7": 3.6593098926420593 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.71428571428572, + "c3": 4.761904761904761, + "c4": 3.8095238095238133, + "c5": 2.857142857142854, + "c6": 1.9047619047619067, + "c7": 0.9523809523809589 }, "rgb": [238, 201, 159] }, @@ -364344,23 +364344,23 @@ "year": 1802, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 21.454711182550906, - "c2": 8.5907202248687, - "c3": -15.864135558238255, - "c4": -5.906370807005196, - "c5": 25.04574542587203, - "c6": 20.790588414937805, - "c7": 13.767072921349982 + "points": { + "c1": 25.038330218896515, + "c2": -14.64700702898262, + "c3": -16.812333936221854, + "c4": -15.928897614629069, + "c5": 20.453243200548794, + "c6": -17.181528321919874, + "c7": -22.128325393632117 }, - "vertexSeeds": { - "c1": 6.782971440070712, - "c2": 6.502336384313377, - "c3": 6.652782358282671, - "c4": 6.41465238843827, - "c5": 6.640692519980215, - "c6": 6.8488277954132615, - "c7": 6.522999762537061 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.98613037447988, + "c3": 8.321775312066578, + "c4": 6.657420249653253, + "c5": 4.993065187239951, + "c6": 3.3287101248266264, + "c7": 1.6643550624133019 }, "rgb": [77, 76, 132] }, @@ -364371,23 +364371,23 @@ "year": 1802, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -38.72632640381351, - "c2": 30.03429012223974, - "c3": 27.817021720254246, - "c4": 16.249055474586292, - "c5": -4.713196749797163, - "c6": -33.1468766849711, - "c7": 18.69022451263743 + "points": { + "c1": 31.36611763165908, + "c2": -37.49362394422627, + "c3": 21.981505107904283, + "c4": 9.441644783759187, + "c5": -2.1562342213780568, + "c6": 30.462996190727736, + "c7": -26.09625463604877 }, - "vertexSeeds": { - "c1": 4.129621392421525, - "c2": 4.252565172787844, - "c3": 3.6599789740601567, - "c4": 3.8089636464028582, - "c5": 4.172763476957726, - "c6": 3.3436756186796646, - "c7": 4.064940280541182 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.1086453999075365, + "c4": 4.086916319926027, + "c5": 3.0651872399445224, + "c6": 2.0434581599630137, + "c7": 1.0217290799815089 }, "rgb": [222, 0, 59] }, @@ -364398,23 +364398,23 @@ "year": 1802, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 5.649028926050587, - "c2": -25.725047279216245, - "c3": -27.82277949815629, - "c4": 2.8339056552108453, - "c5": 1.1573238770627263, - "c6": 2.807621417745519, - "c7": -8.286640370321049 + "points": { + "c1": -23.77491372655964, + "c2": 23.959174097607132, + "c3": 1.4517126645021392, + "c4": 23.068352553307136, + "c5": 24.699658793216962, + "c6": -3.569519869011536, + "c7": -1.1865781951447651 }, - "vertexSeeds": { - "c1": 5.491539734470923, - "c2": 5.62825174014924, - "c3": 5.781020211205318, - "c4": 6.102908576253787, - "c5": 6.09631650461741, - "c6": 5.579592944361703, - "c7": 6.172835865258768 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675452, + "c3": 7.859454461396211, + "c4": 6.28756356911696, + "c5": 4.715672676837721, + "c6": 3.14378178455848, + "c7": 1.57189089227924 }, "rgb": [238, 201, 159] }, @@ -364425,23 +364425,23 @@ "year": 1802, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 20.3476754650035, - "c2": -1.0394851366797582, - "c3": 1.1740523304042405, - "c4": 11.514798911551896, - "c5": 13.721963245934514, - "c6": 14.113081847102823, - "c7": -18.339099611412767 + "points": { + "c1": -25.99686977665666, + "c2": -4.478963144772273, + "c3": -0.032075047310243576, + "c4": 16.932291757238392, + "c5": -2.797613178995391, + "c6": 3.652039147669516, + "c7": 21.825549262907035 }, - "vertexSeeds": { - "c1": 4.470205876982095, - "c2": 4.441483051248944, - "c3": 4.193516137365743, - "c4": 4.369841992437028, - "c5": 4.533246150307227, - "c6": 4.588669408894873, - "c7": 4.37849979397772 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613042, + "c3": 5.524734165510862, + "c4": 4.419787332408694, + "c5": 3.314840499306516, + "c6": 2.209893666204347, + "c7": 1.1049468331021781 }, "rgb": [77, 76, 132] }, @@ -364452,23 +364452,23 @@ "year": 1802, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 2.794511265699221, - "c2": 35.2562773519237, - "c3": -24.82171514128852, - "c4": -6.290938160112006, - "c5": 16.101487875622716, - "c6": 9.386987887273918, - "c7": -18.05081134582198 + "points": { + "c1": -8.323759263998518, + "c2": -27.94585224441844, + "c3": -28.714323500641598, + "c4": -27.634389263148144, + "c5": 13.434928941775631, + "c6": 25.60894269600486, + "c7": -18.672747904690304 }, - "vertexSeeds": { - "c1": 5.223105022556626, - "c2": 5.636970581506473, - "c3": 5.606370484574584, - "c4": 5.493793684217978, - "c5": 5.572033094841657, - "c6": 5.231514284236086, - "c7": 5.2611040804251346 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387882, + "c4": 5.455386037910301, + "c5": 4.091539528432722, + "c6": 2.727693018955142, + "c7": 1.363846509477562 }, "rgb": [77, 76, 132] }, @@ -364479,23 +364479,23 @@ "year": 1802, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -5.983971974733706, - "c2": 5.165301964590206, - "c3": 23.35407125214823, - "c4": -1.8351290284025552, - "c5": -24.300838229267526, - "c6": -24.462333869417808, - "c7": 28.319342075387965 + "points": { + "c1": 25.69075438842229, + "c2": -17.75746277534949, + "c3": -3.9967491752022326, + "c4": 29.44328990655542, + "c5": -11.009283056243994, + "c6": 22.76922324050281, + "c7": -27.411435266761238 }, - "vertexSeeds": { - "c1": 4.0093630859044165, - "c2": 4.047488648475566, - "c3": 4.164167475036846, - "c4": 4.217751373532821, - "c5": 3.9348400872981597, - "c6": 4.269309705608491, - "c7": 4.076835621739489 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009708, + "c3": 5.177993527508089, + "c4": 4.142394822006478, + "c5": 3.1067961165048583, + "c6": 2.071197411003239, + "c7": 1.0355987055016196 }, "rgb": [238, 201, 159] }, @@ -364506,23 +364506,23 @@ "year": 1802, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 36.318685286752235, - "c2": -24.861619823032783, - "c3": -29.140767461485513, - "c4": -0.1444529442695952, - "c5": -33.688196721586216, - "c6": 37.364269921445135, - "c7": -2.0334314388643406 + "points": { + "c1": 7.534073829291501, + "c2": -18.529985497666015, + "c3": -36.12166638600193, + "c4": -33.78449188882221, + "c5": 25.34930750136973, + "c6": 6.454818600248892, + "c7": 15.395621555369722 }, - "vertexSeeds": { - "c1": 3.1897814152383472, - "c2": 2.755362025891016, - "c3": 1.8840906731299247, - "c4": 2.9249131788112397, - "c5": 1.795232542463764, - "c6": 3.5358077978579328, - "c7": 3.04092950764499 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044383, + "c3": 4.623208506703652, + "c4": 3.698566805362921, + "c5": 2.7739251040221915, + "c6": 1.849283402681461, + "c7": 0.9246417013407302 }, "rgb": [222, 0, 59] }, @@ -364533,23 +364533,23 @@ "year": 1802, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -21.703177519055977, - "c2": -3.0268378635801625, - "c3": 6.747401520187136, - "c4": -7.314069266929, - "c5": -19.236704512414157, - "c6": 4.334091562982504, - "c7": 22.17573913704792 + "points": { + "c1": 5.8663191308606635, + "c2": 9.660233493226372, + "c3": 14.890862896543084, + "c4": -3.557310861761568, + "c5": 10.095113275131183, + "c6": 24.17997135846887, + "c7": -7.306193501240745 }, - "vertexSeeds": { - "c1": 3.1634985082246723, - "c2": 3.186787489564804, - "c3": 3.293063674992151, - "c4": 3.3646673009601917, - "c5": 3.346736822252278, - "c6": 3.2764775407567153, - "c7": 3.1317856609780255 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079059, + "c3": 4.068423485899218, + "c4": 3.2547387887193766, + "c5": 2.441054091539535, + "c6": 1.627369394359683, + "c7": 0.8136846971798415 }, "rgb": [58, 15, 49] }, @@ -364560,23 +364560,23 @@ "year": 1802, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -2.039532004342952, - "c2": 29.2448029025, - "c3": -29.816692491214887, - "c4": 18.61998907643634, - "c5": -32.794764671366636, - "c6": 0.9845502256904979, - "c7": 34.07519247357342 + "points": { + "c1": 32.8149465657046, + "c2": 4.980977837733512, + "c3": -14.308378178127636, + "c4": 14.915469849496013, + "c5": -33.79014862705075, + "c6": 16.725715596137313, + "c7": -31.641699135095983 }, - "vertexSeeds": { - "c1": 4.449892765086738, - "c2": 4.6109780014472035, - "c3": 4.40519609752821, - "c4": 4.4834343184111765, - "c5": 4.521878195437216, - "c6": 4.611787588153493, - "c7": 4.534759161552025 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975038, + "c3": 5.732778548312525, + "c4": 4.586222838650023, + "c5": 3.439667128987519, + "c6": 2.2931114193250157, + "c7": 1.1465557096625034 }, "rgb": [77, 76, 132] }, @@ -364587,23 +364587,23 @@ "year": 1802, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 31.3316525312178, - "c2": -20.646743422480323, - "c3": -22.266643127096685, - "c4": 16.92811574499035, - "c5": -36.47490204809601, - "c6": 19.777854689540995, - "c7": -9.512768913674023 + "points": { + "c1": -33.65080725376076, + "c2": 34.30903337070896, + "c3": -14.75489055523893, + "c4": 12.257226180597478, + "c5": -26.847348824856347, + "c6": -40.18235519956772, + "c7": 22.635429447210072 }, - "vertexSeeds": { - "c1": 5.174421381218325, - "c2": 5.161691128640894, - "c3": 5.4057371511819206, - "c4": 5.342986613407266, - "c5": 5.474058754896564, - "c6": 5.224197135232533, - "c7": 5.600565004170919 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.12760055478501, + "c3": 6.773000462320847, + "c4": 5.418400369856685, + "c5": 4.063800277392505, + "c6": 2.7092001849283247, + "c7": 1.3546000924641624 }, "rgb": [58, 15, 49] }, @@ -364614,23 +364614,23 @@ "year": 1802, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -5.277402420330851, - "c2": 0.12278639876654651, - "c3": 25.751451042296843, - "c4": -11.229546789634743, - "c5": 22.576901560522153, - "c6": 8.031296632126583, - "c7": 13.457819967049168 + "points": { + "c1": 9.08431762090391, + "c2": -23.836049656618084, + "c3": 22.51400149459416, + "c4": 0.4773534026832067, + "c5": -26.469981593715875, + "c6": 20.215364275125637, + "c7": 5.426805788029547 }, - "vertexSeeds": { - "c1": 6.406277308652252, - "c2": 6.108199938054552, - "c3": 6.5727456053636, - "c4": 6.268888909276163, - "c5": 6.178518867508702, - "c6": 6.248370524655485, - "c7": 6.621011379652819 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957003, + "c3": 8.021266759130837, + "c4": 6.417013407304669, + "c5": 4.812760055478502, + "c6": 3.2085067036523345, + "c7": 1.6042533518261672 }, "rgb": [222, 0, 59] }, @@ -364641,23 +364641,23 @@ "year": 1802, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -8.361079171816655, - "c2": 20.5950307577576, - "c3": 27.067660524536777, - "c4": -8.738792819593044, - "c5": 1.7660924554414592, - "c6": -22.439660325292103, - "c7": -22.83962699738201 + "points": { + "c1": -6.9627252556959895, + "c2": -8.926402282604695, + "c3": -12.314714777959058, + "c4": 2.7212822036096327, + "c5": -7.579322009894053, + "c6": -17.817512513217608, + "c7": 25.560430785949492 }, - "vertexSeeds": { - "c1": 2.9444362848832326, - "c2": 2.8934438708323063, - "c3": 2.9271555197179655, - "c4": 2.8871677869543637, - "c5": 2.9063628382819036, - "c6": 2.881176684777978, - "c7": 2.798190382979584 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274617, + "c3": 3.606102635228845, + "c4": 2.8848821081830853, + "c5": 2.1636615811373137, + "c6": 1.4424410540915427, + "c7": 0.7212205270457713 }, "rgb": [222, 0, 59] }, @@ -364668,23 +364668,23 @@ "year": 1802, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -8.024168263164757, - "c2": 25.597052369171983, - "c3": 23.662252370702987, - "c4": 20.8371249974118, - "c5": -25.852423136010206, - "c6": 7.695235929754688, - "c7": 3.158956011094567 + "points": { + "c1": -31.72834630321193, + "c2": -14.659879496955266, + "c3": -20.0992494470323, + "c4": -32.386773336050254, + "c5": -19.480751834425796, + "c6": -5.948793574898961, + "c7": -18.449956109797082 }, - "vertexSeeds": { - "c1": 4.578736731035445, - "c2": 4.679149542766808, - "c3": 4.790665730248184, - "c4": 4.588970676660705, - "c5": 4.781409932503227, - "c6": 4.501733439556148, - "c7": 4.642474843238811 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095697, + "c3": 5.802126675913086, + "c4": 4.641701340730465, + "c5": 3.4812760055478535, + "c6": 2.3208506703652323, + "c7": 1.1604253351826117 }, "rgb": [77, 76, 132] }, @@ -364695,23 +364695,23 @@ "year": 1802, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 1.5043658408926817, - "c2": 29.363601804270942, - "c3": 31.657840970036375, - "c4": -23.843092289097306, - "c5": -12.63325086287065, - "c6": 35.893542708711735, - "c7": -4.32558889495531 + "points": { + "c1": 9.189562474490153, + "c2": 42.78600116191927, + "c3": 34.19612637898382, + "c4": 21.81001293953007, + "c5": -41.52643727419912, + "c6": -6.896459887275384, + "c7": -3.9569718333560076 }, - "vertexSeeds": { - "c1": 8.702040029335357, - "c2": 8.583621381089166, - "c3": 8.672543871245, - "c4": 8.691765969627529, - "c5": 8.600732155334919, - "c6": 8.689652423177419, - "c7": 8.724946038983756 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140072, + "c3": 10.425335182616717, + "c4": 8.340268146093358, + "c5": 6.255201109570002, + "c6": 4.170134073046644, + "c7": 2.0850670365233572 }, "rgb": [238, 201, 159] }, @@ -364722,23 +364722,23 @@ "year": 1802, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -21.50426246388646, - "c2": -22.695639142668444, - "c3": -36.64886096418649, - "c4": 27.995529453646654, - "c5": 10.654579050552407, - "c6": -39.670209207139784, - "c7": -33.09579936177674 + "points": { + "c1": 4.5114271053064385, + "c2": -36.41328464519024, + "c3": -20.227537447086252, + "c4": 29.817850424084142, + "c5": -2.2175660872218685, + "c6": 3.750347659214235, + "c7": -13.751068882265532 }, - "vertexSeeds": { - "c1": 3.9796878100585547, - "c2": 3.896799861979413, - "c3": 3.7152313039736393, - "c4": 3.837312799251735, - "c5": 4.038168266514658, - "c6": 3.755849659205248, - "c7": 3.9929129128114935 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.7975034674063854, + "c3": 4.831252889505318, + "c4": 3.865002311604251, + "c5": 2.8987517337031927, + "c6": 1.9325011558021346, + "c7": 0.9662505779010673 }, "rgb": [86, 146, 138] }, @@ -364749,23 +364749,23 @@ "year": 1802, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 12.967451457960628, - "c2": -0.8278817221542738, - "c3": -40.50557255527228, - "c4": 6.421683541839798, - "c5": 39.92406443657983, - "c6": -40.17820865208278, - "c7": -29.25077190689602 + "points": { + "c1": -5.141813185489838, + "c2": 19.27867775214994, + "c3": 29.782283068499247, + "c4": -12.963731877492929, + "c5": -5.675135686611661, + "c6": 31.617370349042737, + "c7": 7.355914388087491 }, - "vertexSeeds": { - "c1": 3.606806733726982, - "c2": 3.560169167807999, - "c3": 3.6470304225692485, - "c4": 3.6178336578256665, - "c5": 3.543296230478581, - "c6": 3.4382468211891273, - "c7": 3.609729058403741 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601943, + "c3": 4.368932038834954, + "c4": 3.495145631067965, + "c5": 2.621359223300967, + "c6": 1.747572815533978, + "c7": 0.873786407766989 }, "rgb": [222, 0, 59] }, @@ -364776,23 +364776,23 @@ "year": 1803, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": -11.327902779449921, - "c2": -11.4039095244868, - "c3": -41.59297696584227, - "c4": 44.39091166508558, - "c5": -4.786395523985334, - "c6": -16.204468998034802, - "c7": -31.916894901548094 + "points": { + "c1": 13.579773396804057, + "c2": -47.13745430133097, + "c3": -35.319489045738266, + "c4": 39.18776993967279, + "c5": -21.893897535743104, + "c6": 34.5660138421828, + "c7": 37.06087051377439 }, - "vertexSeeds": { - "c1": 5.505232467498081, - "c2": 5.91650204660722, - "c3": 5.950947579456264, - "c4": 5.9537771214260955, - "c5": 5.6410827996630095, - "c6": 5.7185757921043905, - "c7": 5.861565908442947 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -364803,23 +364803,23 @@ "year": 1803, "resistanceReported": false, "duration": 45187200, - "curveSeeds": { - "c1": 21.58335876486465, - "c2": 36.314411508008924, - "c3": -53.020957232354924, - "c4": 30.93287633174453, - "c5": 2.318537803206908, - "c6": -43.58679956433209, - "c7": 48.08408402939356 + "points": { + "c1": -20.983995975208202, + "c2": 8.467603715672858, + "c3": 2.3015319774799536, + "c4": -14.888847769869926, + "c5": 59.14927278767468, + "c6": 39.45132463314999, + "c7": -48.1437870575867 }, - "vertexSeeds": { - "c1": 1.348877907574669, - "c2": 1.193528395250628, - "c3": 1.313356157873666, - "c4": 1.1927561239037774, - "c5": 1.2029570197393462, - "c6": 1.3327650531875195, - "c7": 1.324548750318462 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959776, + "c3": 1.6643550624133143, + "c4": 1.3314840499306513, + "c5": 0.9986130374479879, + "c6": 0.6657420249653246, + "c7": 0.3328710124826615 }, "rgb": [77, 76, 132] }, @@ -364830,23 +364830,23 @@ "year": 1803, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": -16.447847899814015, - "c2": -1.9533323846819073, - "c3": -10.753545471040724, - "c4": 41.198955143509195, - "c5": -12.647507203105405, - "c6": 8.624167235249011, - "c7": 8.81902837364514 + "points": { + "c1": 31.860661548617443, + "c2": 17.818621132663935, + "c3": -36.284862566770315, + "c4": 32.62567401510344, + "c5": 44.50377688661956, + "c6": 4.952165089368563, + "c7": -36.75139412078614 }, - "vertexSeeds": { - "c1": 5.715823211172102, - "c2": 5.661173086681543, - "c3": 5.262229570788754, - "c4": 5.7248578559605345, - "c5": 5.903716351376527, - "c6": 5.621127421775226, - "c7": 5.537437370806665 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [222, 0, 59] }, @@ -364857,23 +364857,23 @@ "year": 1803, "resistanceReported": false, "duration": 45705600, - "curveSeeds": { - "c1": 14.42103059630061, - "c2": 33.27811296106833, - "c3": 15.37454945143682, - "c4": -9.57112545268025, - "c5": -21.59109648250181, - "c6": 57.54943850994323, - "c7": -43.30501623779661 + "points": { + "c1": -31.231253571270237, + "c2": 40.833639283393595, + "c3": -40.87337937494686, + "c4": -23.798042015354824, + "c5": 39.18479293695938, + "c6": -0.8435584077638723, + "c7": -53.7869261184961 }, - "vertexSeeds": { - "c1": 1.8002850498488103, - "c2": 1.7384491771814699, - "c3": 1.7691250265926426, - "c4": 1.7621396972228807, - "c5": 1.7759986375221208, - "c6": 1.8040526370198973, - "c7": 1.7744628218792364 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210798, + "c3": 2.196024040684238, + "c4": 1.7568192325473888, + "c5": 1.3176144244105399, + "c6": 0.8784096162736982, + "c7": 0.4392048081368491 }, "rgb": [86, 146, 138] }, @@ -364884,23 +364884,23 @@ "year": 1803, "resistanceReported": false, "duration": 41731200, - "curveSeeds": { - "c1": -21.831268757929763, - "c2": 7.769632391363189, - "c3": 37.896059722498926, - "c4": 14.859761013216648, - "c5": 47.67638856441619, - "c6": 12.15760597288773, - "c7": -27.184743027163968 + "points": { + "c1": 47.91921430043066, + "c2": -12.3682029934061, + "c3": -41.47802425922859, + "c4": 22.747298256819768, + "c5": 41.09838295564233, + "c6": -12.63348584683989, + "c7": -40.58602235244002 }, - "vertexSeeds": { - "c1": 8.762176570985, - "c2": 8.756167984380511, - "c3": 8.7630672304826, - "c4": 8.78566611125424, - "c5": 8.737748352353176, - "c6": 8.750685987950932, - "c7": 8.766749429904733 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260809, + "c3": 10.494683310217201, + "c4": 8.395746648173803, + "c5": 6.2968099861304045, + "c6": 4.197873324087006, + "c7": 2.0989366620433985 }, "rgb": [86, 146, 138] }, @@ -364911,23 +364911,23 @@ "year": 1802, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 13.984054944598803, - "c2": 18.706600701573294, - "c3": 3.464378238734163, - "c4": 6.636349234345722, - "c5": 33.15647429096013, - "c6": 20.292847486031405, - "c7": 22.860435043260807 + "points": { + "c1": -37.58864296246428, + "c2": -8.961308547933179, + "c3": 19.589619717176937, + "c4": 2.997895780608431, + "c5": 11.188247345397144, + "c6": -24.319309374690373, + "c7": 35.7648677722122 }, - "vertexSeeds": { - "c1": 3.2376783160781906, - "c2": 3.341369543842078, - "c3": 3.246601060777396, - "c4": 3.4153324494492505, - "c5": 3.2012874268809393, - "c6": 3.258969421857288, - "c7": 3.1814653756949283 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199721, + "c3": 4.137771613499766, + "c4": 3.3102172907998115, + "c5": 2.4826629680998646, + "c6": 1.65510864539991, + "c7": 0.827554322699955 }, "rgb": [77, 76, 132] }, @@ -364938,23 +364938,23 @@ "year": 1802, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -19.11130742674738, - "c2": -27.388002976098146, - "c3": 12.636397199698898, - "c4": -11.86786222512912, - "c5": -8.681839249104112, - "c6": 10.74325229779675, - "c7": 20.616968425022343 + "points": { + "c1": 4.951784846249474, + "c2": 22.533525090413768, + "c3": 12.265100505109118, + "c4": 30.676811806897618, + "c5": 5.638556173026593, + "c6": -31.14930028175398, + "c7": -23.313383923946457 }, - "vertexSeeds": { - "c1": 2.2323707180420427, - "c2": 2.0489568584674034, - "c3": 2.1247324761631985, - "c4": 2.1792716877865894, - "c5": 1.944906203734042, - "c6": 2.1178312840108258, - "c7": 2.019846602614895 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705965, + "c3": 2.7045769764216363, + "c4": 2.16366158113731, + "c5": 1.6227461858529812, + "c6": 1.081830790568655, + "c7": 0.5409153952843287 }, "rgb": [222, 0, 59] }, @@ -364965,23 +364965,23 @@ "year": 1803, "resistanceReported": false, "duration": 44582400, - "curveSeeds": { - "c1": 47.431438160277594, - "c2": 23.23118084101212, - "c3": -13.400851659141601, - "c4": -52.17551864922108, - "c5": 38.523535855798016, - "c6": 28.82392711179851, - "c7": 50.57071779681547 + "points": { + "c1": 0.08072847934914762, + "c2": -36.1231136661946, + "c3": 21.457756449070075, + "c4": 44.8168220524021, + "c5": -45.177336874321306, + "c6": -59.457627797084776, + "c7": 48.95015713558867 }, - "vertexSeeds": { - "c1": 3.2176495452839537, - "c2": 3.395700024333565, - "c3": 3.284297298025434, - "c4": 3.296576021885672, - "c5": 3.187672162322807, - "c6": 3.361489926396729, - "c7": 3.123650162986905 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.88210818307906, + "c3": 4.068423485899211, + "c4": 3.2547387887193704, + "c5": 2.44105409153953, + "c6": 1.6273693943596808, + "c7": 0.8136846971798404 }, "rgb": [77, 76, 132] }, @@ -364992,23 +364992,23 @@ "year": 1802, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -21.710330366071332, - "c2": -1.7710673436935203, - "c3": 10.092313981930054, - "c4": 2.7181445680595004, - "c5": 16.70468540782452, - "c6": 11.908052620043179, - "c7": 18.729096890812734 + "points": { + "c1": -3.6878887382270094, + "c2": -25.322204674417584, + "c3": -11.06771616044365, + "c4": 21.587112164054545, + "c5": -18.077193639419725, + "c6": 25.915663809305713, + "c7": -20.11844778562942 }, - "vertexSeeds": { - "c1": 2.1302957060564123, - "c2": 2.0815065228573526, - "c3": 2.0591888723389884, - "c4": 1.793427220203972, - "c5": 1.8465689143158597, - "c6": 1.7679587533605994, - "c7": 2.174656104751208 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266286, + "c3": 2.773925104022191, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.109570041608876, + "c7": 0.5547850208044373 }, "rgb": [58, 15, 49] }, @@ -365019,23 +365019,23 @@ "year": 1803, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -27.00671667496479, - "c2": 40.5251149500038, - "c3": 24.63542947281583, - "c4": 30.453502442601575, - "c5": 34.35548799079115, - "c6": 7.793159638781027, - "c7": -32.198596209521014 + "points": { + "c1": -0.6753165617042285, + "c2": -33.132478510309355, + "c3": 4.342046056483504, + "c4": 29.2342211412613, + "c5": -37.11966884852461, + "c6": 25.60936485484413, + "c7": 7.492505333847298 }, - "vertexSeeds": { - "c1": 5.24813063811061, - "c2": 5.699255364536083, - "c3": 5.157467005165436, - "c4": 5.631248574947933, - "c5": 5.088071148762339, - "c6": 4.986957644710398, - "c7": 5.168272652071247 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061025, + "c4": 6.102635228848823, + "c5": 4.576976421636613, + "c6": 3.0513176144244114, + "c7": 1.5256588072122022 }, "rgb": [222, 0, 59] }, @@ -365046,23 +365046,23 @@ "year": 1803, "resistanceReported": false, "duration": 41212800, - "curveSeeds": { - "c1": -27.077749657771985, - "c2": 5.8945184477428185, - "c3": -18.10738583980661, - "c4": 22.491071783532156, - "c5": -6.132542790738306, - "c6": -5.735850280281653, - "c7": 1.1098223118656136 + "points": { + "c1": -33.57950796403634, + "c2": 24.434104912105802, + "c3": -20.020158348634666, + "c4": -52.02708563078444, + "c5": 28.040907099852554, + "c6": -38.31701106352176, + "c7": 20.64118237222882 }, - "vertexSeeds": { - "c1": 1.8881395931800016, - "c2": 1.800864738161508, - "c3": 1.8487551158009108, - "c4": 1.604890061598833, - "c5": 1.716107711862332, - "c6": 1.6214530011947679, - "c7": 1.6603959049355754 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102636, + "c3": 2.3578363384188616, + "c4": 1.8862690707350898, + "c5": 1.414701803051318, + "c6": 0.943134535367544, + "c7": 0.471567267683772 }, "rgb": [222, 0, 59] }, @@ -365073,23 +365073,23 @@ "year": 1802, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 4.548223891678898, - "c2": 2.081839603300203, - "c3": 9.875106103564029, - "c4": -3.1189434213332525, - "c5": 11.333904328202259, - "c6": 24.163185580943704, - "c7": 24.175139722408964 + "points": { + "c1": 5.853576043453444, + "c2": 21.868146233271524, + "c3": -8.272073158514981, + "c4": -7.973743839586394, + "c5": -17.43501254720028, + "c6": -16.410894191373952, + "c7": 11.307986807757423 }, - "vertexSeeds": { - "c1": 1.8690479516477918, - "c2": 1.9670549789563196, - "c3": 1.9696597245150784, - "c4": 1.9522314907558111, - "c5": 1.9096933059956367, - "c6": 1.8624627408580412, - "c7": 2.015613356865607 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592232983, + "c3": 2.427184466019418, + "c4": 1.9417475728155322, + "c5": 1.456310679611652, + "c6": 0.9708737864077661, + "c7": 0.4854368932038858 }, "rgb": [222, 0, 59] }, @@ -365100,23 +365100,23 @@ "year": 1802, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -16.351134244982006, - "c2": -19.366355575499778, - "c3": 24.00883579797076, - "c4": -20.680141485851415, - "c5": 4.098031408927142, - "c6": 24.31675636187415, - "c7": 21.122302735516264 + "points": { + "c1": -13.693140292862896, + "c2": -24.282321330397348, + "c3": 4.277101672534009, + "c4": -24.126894034447737, + "c5": 20.273553455450823, + "c6": -0.3866882619414653, + "c7": -0.19830297137520247 }, - "vertexSeeds": { - "c1": 7.421209322356507, - "c2": 7.416659599160275, - "c3": 7.401024626104779, - "c4": 7.280707225517401, - "c5": 7.237579556157788, - "c6": 7.467667984002715, - "c7": 7.304868635760385 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152566, + "c3": 8.92279241793805, + "c4": 7.138233934350439, + "c5": 5.35367545076283, + "c6": 3.5691169671752196, + "c7": 1.7845584835876098 }, "rgb": [86, 146, 138] }, @@ -365127,23 +365127,23 @@ "year": 1802, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -7.212369302888295, - "c2": 16.063276988625177, - "c3": -2.2606527129741245, - "c4": 0.6530777997949428, - "c5": 9.516570750085116, - "c6": -6.829893315461634, - "c7": 5.850889856453652 + "points": { + "c1": 12.232710299250044, + "c2": 10.543241425583552, + "c3": 12.964039102217342, + "c4": 15.095419282507812, + "c5": -8.39379716509179, + "c6": 11.348336217376868, + "c7": -1.0810325535904006 }, - "vertexSeeds": { - "c1": 2.9552000616785765, - "c2": 3.099068172907198, - "c3": 3.001271091181467, - "c4": 2.95974144553071, - "c5": 3.2299265742539136, - "c6": 3.015409263451427, - "c7": 3.1292030966930837 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797506, + "c3": 3.906611188164589, + "c4": 3.125288950531673, + "c5": 2.3439667128987574, + "c6": 1.5626444752658322, + "c7": 0.7813222376329161 }, "rgb": [238, 201, 159] }, @@ -365154,23 +365154,23 @@ "year": 1802, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -28.52950692587617, - "c2": -34.246850993372504, - "c3": 16.186140546265705, - "c4": 40.55061663754594, - "c5": -2.0479975184988035, - "c6": -14.228913993335155, - "c7": -32.55566257955138 + "points": { + "c1": 1.063954304196315, + "c2": 0.31775579424046185, + "c3": 17.94660367111299, + "c4": -14.647645157224432, + "c5": 41.003936309968, + "c6": -15.422015364488256, + "c7": 9.395410783325744 }, - "vertexSeeds": { - "c1": 3.8364532776485625, - "c2": 3.8144514008356936, - "c3": 4.049976971382519, - "c4": 3.702643493640351, - "c5": 3.998281330072386, - "c6": 3.923691768486337, - "c7": 3.8673880415811985 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486823, + "c3": 4.8774849745723525, + "c4": 3.901987979657882, + "c5": 2.9264909847434115, + "c6": 1.950993989828941, + "c7": 0.9754969949144705 }, "rgb": [222, 0, 59] }, @@ -365181,23 +365181,23 @@ "year": 1803, "resistanceReported": false, "duration": 38188800, - "curveSeeds": { - "c1": -8.460666926868399, - "c2": 21.993653397045605, - "c3": -8.243629444260698, - "c4": 11.005998945690706, - "c5": -17.70769389932986, - "c6": -16.95489269848975, - "c7": -10.14469787819074 + "points": { + "c1": 49.184929360774305, + "c2": 22.61199221593371, + "c3": 8.178368626224511, + "c4": 46.53058617177528, + "c5": 19.30640462408492, + "c6": -14.177518375884318, + "c7": 13.111117140698113 }, - "vertexSeeds": { - "c1": 6.740175745307964, - "c2": 7.157713648979502, - "c3": 6.770626417177134, - "c4": 7.4779947919370295, - "c5": 6.940209548120882, - "c6": 6.8081825400088025, - "c7": 7.3585087323758644 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766984, + "c3": 9.061488673139149, + "c4": 7.249190938511329, + "c5": 5.436893203883492, + "c6": 3.6245954692556563, + "c7": 1.8122977346278202 }, "rgb": [86, 146, 138] }, @@ -365208,23 +365208,23 @@ "year": 1803, "resistanceReported": false, "duration": 46224000, - "curveSeeds": { - "c1": 12.284739949819404, - "c2": 55.37007779254909, - "c3": 24.673259503335395, - "c4": 48.868873188966354, - "c5": 26.074240026661464, - "c6": -19.667811718708194, - "c7": -8.80640345701648 + "points": { + "c1": 46.96942610884707, + "c2": -54.19322367234063, + "c3": -19.498932627700256, + "c4": 24.22476711278491, + "c5": -8.332618599121908, + "c6": 54.14922238141026, + "c7": 55.305936620679354 }, - "vertexSeeds": { - "c1": 7.763143789331687, - "c2": 7.700440687483327, - "c3": 7.745937455755663, - "c4": 7.668053422481897, - "c5": 7.81594663342952, - "c6": 7.8515483176495255, - "c7": 7.6783544703436455 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370309, + "c3": 9.408229311141914, + "c4": 7.526583448913518, + "c5": 5.644937586685186, + "c6": 3.7632917244567907, + "c7": 1.8816458622283954 }, "rgb": [58, 15, 49] }, @@ -365235,23 +365235,23 @@ "year": 1802, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -21.73142572354509, - "c2": 2.5922025280936687, - "c3": -4.388089965943816, - "c4": 24.451607632094255, - "c5": -18.90187895205986, - "c6": 17.682272964173887, - "c7": 8.949384550428181 + "points": { + "c1": -10.326155192127064, + "c2": 22.409072984991848, + "c3": 5.73961628285068, + "c4": -23.59692308261119, + "c5": 2.3415399694052503, + "c6": -27.7755132729644, + "c7": -13.995877304655515 }, - "vertexSeeds": { - "c1": 5.204958041641312, - "c2": 5.432758628964879, - "c3": 5.652326472279376, - "c4": 5.3246537118657145, - "c5": 5.377721149888096, - "c6": 5.663688901901692, - "c7": 5.612446374192637 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986128, + "c3": 6.888580674988437, + "c4": 5.510864539990746, + "c5": 4.133148404993055, + "c6": 2.755432269995382, + "c7": 1.377716134997691 }, "rgb": [86, 146, 138] }, @@ -365262,23 +365262,23 @@ "year": 1802, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -11.989831715628783, - "c2": 17.50077354900887, - "c3": 11.493712934727, - "c4": -11.005334101767453, - "c5": -13.034647465839193, - "c6": -16.122573095451102, - "c7": 2.2209671151990875 + "points": { + "c1": -15.786889620010376, + "c2": 2.7508212476316913, + "c3": -20.42691060823399, + "c4": 3.3222878882174065, + "c5": 7.894498211839569, + "c6": 6.2912328002570845, + "c7": -4.370065009788739 }, - "vertexSeeds": { - "c1": 3.445547737590664, - "c2": 3.484175912271222, - "c3": 3.4404181775011495, - "c4": 3.335067343086162, - "c5": 3.4473152931089834, - "c6": 3.4026447739626695, - "c7": 3.398623276922062 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.1872399445215, + "c3": 4.322699953767919, + "c4": 3.4581599630143374, + "c5": 2.5936199722607443, + "c6": 1.729079981507163, + "c7": 0.8645399907535815 }, "rgb": [86, 146, 138] }, @@ -365289,23 +365289,23 @@ "year": 1802, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -12.416877136617153, - "c2": -22.523290980596062, - "c3": -27.68820315879129, - "c4": -22.637450331811376, - "c5": 29.94275117547052, - "c6": -12.707818350784791, - "c7": -21.592859902525888 + "points": { + "c1": -3.704584378142897, + "c2": 1.216173201291241, + "c3": 32.03425228673785, + "c4": 0.06651737833882265, + "c5": -26.845245595639465, + "c6": 31.68109835741079, + "c7": 8.876843320429856 }, - "vertexSeeds": { - "c1": 6.0419309840669415, - "c2": 5.642167885728386, - "c3": 6.080911813579139, - "c4": 5.7936642115826835, - "c5": 5.9356786897004525, - "c6": 6.068969967396199, - "c7": 5.657236390893248 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669895, + "c3": 7.2815533980582545, + "c4": 5.825242718446597, + "c5": 4.368932038834957, + "c6": 2.9126213592232983, + "c7": 1.4563106796116403 }, "rgb": [222, 0, 59] }, @@ -365316,23 +365316,23 @@ "year": 1802, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -19.82668197082648, - "c2": 12.948462403275236, - "c3": -36.56908650510729, - "c4": 6.079322855185346, - "c5": -4.539814272488648, - "c6": 12.280146261473455, - "c7": 23.759772591598058 + "points": { + "c1": -27.00775440160858, + "c2": -34.98849703171938, + "c3": -8.910931316751356, + "c4": 9.968549876704444, + "c5": -3.3192873398932434, + "c6": 28.85088001027846, + "c7": -34.4629504230042 }, - "vertexSeeds": { - "c1": 5.526249474856457, - "c2": 5.25682920027856, - "c3": 5.209418009986618, - "c4": 5.46234229536279, - "c5": 5.283718404385704, - "c6": 5.499493177325971, - "c7": 5.430821340536926 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.726768377253824, + "c4": 5.381414701803054, + "c5": 4.036061026352285, + "c6": 2.6907073509015387, + "c7": 1.3453536754507693 }, "rgb": [77, 76, 132] }, @@ -365343,23 +365343,23 @@ "year": 1802, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 29.175576069131097, - "c2": 8.484157083266687, - "c3": -7.503716947845252, - "c4": 12.731558570485731, - "c5": -16.054320114458225, - "c6": 20.582137573971487, - "c7": 18.146207468816918 + "points": { + "c1": 25.923603394259466, + "c2": -28.846282547429823, + "c3": -6.005408854196492, + "c4": -3.335495686702437, + "c5": 7.8701087440269575, + "c6": 18.650004650219977, + "c7": 6.326757214129877 }, - "vertexSeeds": { - "c1": 3.6158252317796014, - "c2": 3.6153832401919472, - "c3": 3.6010056710359155, - "c4": 3.6298882102233088, - "c5": 3.610709407481001, - "c6": 3.6025390044071033, - "c7": 3.602796380162371 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601967, + "c3": 4.368932038834943, + "c4": 3.495145631067978, + "c5": 2.6213592233009546, + "c6": 1.747572815533989, + "c7": 0.8737864077669655 }, "rgb": [238, 201, 159] }, @@ -365370,23 +365370,23 @@ "year": 1802, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 27.51224047941561, - "c2": 11.20690133784968, - "c3": 18.94986524562271, - "c4": 26.837619976230727, - "c5": 0.019728723196990927, - "c6": 5.565575768219141, - "c7": -21.38779254666506 + "points": { + "c1": 38.91189696244362, + "c2": -11.7117649371461, + "c3": -8.146199889028502, + "c4": -27.091907706745154, + "c5": -20.558457860153958, + "c6": -11.148136376110195, + "c7": -29.06870042105715 }, - "vertexSeeds": { - "c1": 5.399570049988633, - "c2": 5.623493984917306, - "c3": 5.44544029156885, - "c4": 5.779020943415747, - "c5": 5.849411346901445, - "c6": 5.6214467016862475, - "c7": 5.659013643745598 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.54368932038835, + "c3": 7.119741100323624, + "c4": 5.6957928802588995, + "c5": 4.271844660194175, + "c6": 2.8478964401294498, + "c7": 1.4239482200647249 }, "rgb": [77, 76, 132] }, @@ -365397,23 +365397,23 @@ "year": 1802, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -21.64363088413636, - "c2": -29.47231792922695, - "c3": -13.097215075438466, - "c4": -16.393173253754878, - "c5": 22.957051564743253, - "c6": 6.611368345753512, - "c7": 8.891554306087258 + "points": { + "c1": -4.175472924304735, + "c2": -39.54867339315127, + "c3": 0.6375842760580994, + "c4": -20.000525147653526, + "c5": -27.949652188346036, + "c6": 12.614243891218663, + "c7": -27.4493071889001 }, - "vertexSeeds": { - "c1": 14.095541972116143, - "c2": 14.153460934790122, - "c3": 13.932923387219079, - "c4": 14.144527718821527, - "c5": 14.170836013817024, - "c6": 14.086516456302308, - "c7": 14.020053564609169 + "offsets": { + "c1": 23.656957928802587, + "c2": 20.27739251040216, + "c3": 16.897827092001936, + "c4": 13.51826167360151, + "c5": 10.13869625520108, + "c6": 6.759130836800651, + "c7": 3.3795654184004285 }, "rgb": [58, 15, 49] }, @@ -365424,23 +365424,23 @@ "year": 1803, "resistanceReported": false, "duration": 40521600, - "curveSeeds": { - "c1": -28.00813295743949, - "c2": -42.22989542327498, - "c3": -18.70426336834973, - "c4": 17.062987645031768, - "c5": -9.42873069319036, - "c6": 35.770358266469984, - "c7": -13.920773577901826 + "points": { + "c1": -11.153985285302355, + "c2": 0.30613540228883096, + "c3": -19.683423696811786, + "c4": 31.30140632159926, + "c5": -18.500471670622332, + "c6": -43.05726484830435, + "c7": 50.99967702518795 }, - "vertexSeeds": { - "c1": 2.8265732980138742, - "c2": 2.4583606808087115, - "c3": 2.8013914396440858, - "c4": 2.7771150182812776, - "c5": 2.747166327791877, - "c6": 2.7175472633697897, - "c7": 2.872968830160168 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.4674063800277373, + "c4": 2.773925104022194, + "c5": 2.0804438280166457, + "c6": 1.386962552011097, + "c7": 0.6934812760055485 }, "rgb": [77, 76, 132] }, @@ -365451,23 +365451,23 @@ "year": 1802, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": -17.087396149255877, - "c2": -23.157691316161035, - "c3": 10.590630629358436, - "c4": 24.257476807276312, - "c5": -12.969392070301078, - "c6": 23.016029099865918, - "c7": 24.145969416431882 + "points": { + "c1": 22.581929801406453, + "c2": -15.745377648100572, + "c3": -14.295777481809498, + "c4": -15.41964602122225, + "c5": 0.26738660776734946, + "c6": -3.736905969115412, + "c7": -0.18910755786132682 }, - "vertexSeeds": { - "c1": 4.912961362461404, - "c2": 5.106177676800791, - "c3": 4.768323494717169, - "c4": 5.047651532981781, - "c5": 4.834611352898839, - "c6": 4.854979215021121, - "c7": 4.792277602832257 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.37864077669902, + "c3": 6.1488673139158605, + "c4": 4.91909385113268, + "c5": 3.6893203883495214, + "c6": 2.45954692556634, + "c7": 1.22977346278317 }, "rgb": [77, 76, 132] }, @@ -365478,23 +365478,23 @@ "year": 1803, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 14.775743377727622, - "c2": -30.843378266781055, - "c3": -12.21985856168677, - "c4": 2.6603950470814297, - "c5": 11.78884159993057, - "c6": 5.127281397225573, - "c7": 10.36828712615798 + "points": { + "c1": -4.673857016566295, + "c2": 13.929286097801942, + "c3": 38.746758456103464, + "c4": 20.521635140100983, + "c5": 34.27626058030275, + "c6": 2.7018503949819603, + "c7": -33.39285241463254 }, - "vertexSeeds": { - "c1": 5.9792798529123, - "c2": 6.386891161656845, - "c3": 6.13957735662322, - "c4": 5.028879076354245, - "c5": 5.259825580702432, - "c6": 6.081468575239216, - "c7": 5.874374055221852 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273233, + "c3": 7.628294036061023, + "c4": 6.102635228848821, + "c5": 4.576976421636618, + "c6": 3.0513176144244087, + "c7": 1.5256588072122061 }, "rgb": [222, 0, 59] }, @@ -365505,23 +365505,23 @@ "year": 1802, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 17.519480027306493, - "c2": 16.92555010077014, - "c3": -24.23161083091479, - "c4": 17.240798001014298, - "c5": 27.502201046249425, - "c6": -1.5723657416622387, - "c7": -23.83885302190122 + "points": { + "c1": 4.338132211025339, + "c2": 12.518188765174244, + "c3": -7.949734770342339, + "c4": -13.6601117944453, + "c5": -15.961998824705597, + "c6": -5.99455707528935, + "c7": -1.6254999038104678 }, - "vertexSeeds": { - "c1": 6.5608557666786655, - "c2": 6.522076612614375, - "c3": 6.21226121226743, - "c4": 6.347868501263118, - "c5": 6.254449818536382, - "c6": 6.26770622904068, - "c7": 6.481498798140456 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.206195099398993, + "c4": 6.564956079519183, + "c5": 4.923717059639391, + "c6": 3.2824780397596003, + "c7": 1.6412390198797913 }, "rgb": [77, 76, 132] }, @@ -365532,23 +365532,23 @@ "year": 1802, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 21.669990260348715, - "c2": 9.173270114908096, - "c3": -11.815020676816687, - "c4": -7.587577859220229, - "c5": -3.52153351019971, - "c6": -16.07380515909393, - "c7": 3.8874916811413662 + "points": { + "c1": 1.5887567598720977, + "c2": -13.89389967538912, + "c3": -11.389106156008872, + "c4": 25.540933967344326, + "c5": -3.4874310837724245, + "c6": -4.829429356247729, + "c7": 26.266833013237378 }, - "vertexSeeds": { - "c1": 10.020589124719708, - "c2": 9.839964192145429, - "c3": 10.085066261432893, - "c4": 10.098442637944883, - "c5": 9.967440338052006, - "c6": 9.850006532073044, - "c7": 9.97867875523633 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.50762829403605, + "c3": 12.08969024503003, + "c4": 9.671752196024006, + "c5": 7.253814147018025, + "c6": 4.835876098012044, + "c7": 2.417938049006022 }, "rgb": [238, 201, 159] }, @@ -365559,23 +365559,23 @@ "year": 1802, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 1.3235018578287736, - "c2": -19.01999872890881, - "c3": 20.699948561875942, - "c4": -10.978158006339587, - "c5": 18.37110059401966, - "c6": 11.02011363982269, - "c7": 16.882336063651316 + "points": { + "c1": -7.600248009245153, + "c2": 15.937204450314468, + "c3": -0.8201463628935457, + "c4": 12.820041468772786, + "c5": 23.577556740010365, + "c6": -4.91950863559569, + "c7": 18.27896078926637 }, - "vertexSeeds": { - "c1": 3.8056804148693453, - "c2": 3.832452317615241, - "c3": 3.696066586522754, - "c4": 3.760334945910619, - "c5": 3.77506935159026, - "c6": 4.014525179854918, - "c7": 4.036218060205357 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446601, + "c3": 4.854368932038835, + "c4": 3.8834951456310676, + "c5": 2.9126213592233006, + "c6": 1.9417475728155338, + "c7": 0.9708737864077669 }, "rgb": [238, 201, 159] }, @@ -365586,23 +365586,23 @@ "year": 1802, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -11.372428878312668, - "c2": 5.36068857810292, - "c3": 17.735611537492833, - "c4": 18.442876590385286, - "c5": 1.1130091799767143, - "c6": 21.55060000642877, - "c7": 22.981665242282478 + "points": { + "c1": -3.3242701113873956, + "c2": -6.066723254418687, + "c3": 3.7563294584528784, + "c4": 8.251258787858237, + "c5": -21.104925520094213, + "c6": 20.757297618619003, + "c7": 12.978791626204607 }, - "vertexSeeds": { - "c1": 5.21426426592684, - "c2": 5.403701286503259, - "c3": 5.296241899054485, - "c4": 5.651646215329284, - "c5": 5.3890011104001525, - "c6": 5.264691556558395, - "c7": 5.661404235677567 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026352, + "c3": 6.911696717521961, + "c4": 5.529357374017568, + "c5": 4.147018030513176, + "c6": 2.764678687008784, + "c7": 1.382339343504392 }, "rgb": [222, 0, 59] }, @@ -365613,23 +365613,23 @@ "year": 1802, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 8.439411291383166, - "c2": -23.347106931180747, - "c3": -10.096150844328204, - "c4": -20.078537016089534, - "c5": -5.98459890531851, - "c6": -17.27864222929392, - "c7": 21.083183284733444 + "points": { + "c1": 27.019451537849058, + "c2": -13.61451303913983, + "c3": -29.104209637775377, + "c4": 35.68719685671785, + "c5": -13.99392466055614, + "c6": -33.329112255788694, + "c7": -7.045480743367424 }, - "vertexSeeds": { - "c1": 8.443926240353225, - "c2": 8.004351670423928, - "c3": 8.36470260778433, - "c4": 8.470134825016236, - "c5": 8.329821296000622, - "c6": 8.20060362389473, - "c7": 8.39290536880463 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697635, + "c3": 10.17105871474802, + "c4": 8.136846971798432, + "c5": 6.1026352288488175, + "c6": 4.068423485899203, + "c7": 2.034211742949588 }, "rgb": [238, 201, 159] }, @@ -365640,23 +365640,23 @@ "year": 1803, "resistanceReported": false, "duration": 45619200, - "curveSeeds": { - "c1": 53.70982926098368, - "c2": -53.5119546458193, - "c3": -33.80692601600363, - "c4": -21.953403713470863, - "c5": 11.144637578497566, - "c6": -8.287591906689705, - "c7": 59.67691388233291 + "points": { + "c1": 32.60506190534076, + "c2": 30.295272026002777, + "c3": 51.41429769467075, + "c4": -24.866641303208652, + "c5": -30.592318184615927, + "c6": 52.66239334228871, + "c7": 36.76419439996029 }, - "vertexSeeds": { - "c1": 2.2675247594572387, - "c2": 2.3854462175741125, - "c3": 2.2114620798030042, - "c4": 2.344698320061918, - "c5": 2.269880628834097, - "c6": 2.338791427357343, - "c7": 2.303982161185091 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027741, + "c3": 2.8895053166897817, + "c4": 2.311604253351827, + "c5": 1.733703190013868, + "c6": 1.1558021266759135, + "c7": 0.5779010633379593 }, "rgb": [238, 201, 159] }, @@ -365667,23 +365667,23 @@ "year": 1802, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -11.022663149352564, - "c2": -12.984144965433858, - "c3": 20.70679460028831, - "c4": 15.793494235733927, - "c5": 14.85395567119765, - "c6": -0.9026004423755829, - "c7": 18.114974345833648 + "points": { + "c1": 29.342703333580733, + "c2": -7.756029090453016, + "c3": 7.4282165469220764, + "c4": -0.6292229625988384, + "c5": -21.867689927379224, + "c6": -4.007559843606408, + "c7": -15.688832385122769 }, - "vertexSeeds": { - "c1": 10.564926914455555, - "c2": 10.885164497845434, - "c3": 10.650441075669066, - "c4": 10.605992530685574, - "c5": 10.690884066177984, - "c6": 10.96003095319551, - "c7": 10.610782777761353 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.700416088765563, + "c3": 13.083680073971347, + "c4": 10.466944059177044, + "c5": 7.8502080443828275, + "c6": 5.233472029588522, + "c7": 2.6167360147942156 }, "rgb": [222, 0, 59] }, @@ -365694,23 +365694,23 @@ "year": 1802, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -4.499931172995957, - "c2": 5.742565896991735, - "c3": -11.298993778077591, - "c4": 20.45941989574615, - "c5": -3.8685856584025053, - "c6": -2.2413900277740026, - "c7": 23.438968007187064 + "points": { + "c1": -11.764712708644286, + "c2": -9.84286024673013, + "c3": -12.650752827312889, + "c4": -2.8740380888382226, + "c5": -6.94383555833398, + "c6": 26.877150007538624, + "c7": -30.3296991041302 }, - "vertexSeeds": { - "c1": 5.74298006856992, - "c2": 5.766964785070138, - "c3": 5.7993819146231145, - "c4": 5.68805248450272, - "c5": 5.3329701095564515, - "c6": 5.464796893651528, - "c7": 5.727571143897817 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622747, + "c3": 7.027276930189549, + "c4": 5.621821544151647, + "c5": 4.2163661581137255, + "c6": 2.8109107720758235, + "c7": 1.4054553860379027 }, "rgb": [58, 15, 49] }, @@ -365721,23 +365721,23 @@ "year": 1802, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 21.32458913085091, - "c2": -1.3158184910255457, - "c3": 0.1413347387027315, - "c4": 12.777583395849625, - "c5": -7.530714354604374, - "c6": -9.541087992075575, - "c7": 10.224986479326894 + "points": { + "c1": -4.506475248037383, + "c2": -10.282456590329879, + "c3": -4.197736291244851, + "c4": -22.19162598007085, + "c5": 12.809663280671678, + "c6": 37.646412244011145, + "c7": 23.955771238243265 }, - "vertexSeeds": { - "c1": 2.907586693569689, - "c2": 3.102438966308533, - "c3": 3.019233903624303, - "c4": 2.926300042181538, - "c5": 2.874593268500055, - "c6": 2.8869058492623334, - "c7": 2.958936097979927 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556174, + "c3": 3.7679149329634725, + "c4": 3.01433194637078, + "c5": 2.260748959778087, + "c6": 1.5071659731853853, + "c7": 0.7535829865926926 }, "rgb": [222, 0, 59] }, @@ -365748,23 +365748,23 @@ "year": 1802, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": 15.362897202547046, - "c2": -2.928106151971418, - "c3": 9.288721355445048, - "c4": -16.445624736613027, - "c5": 2.693310953947446, - "c6": -14.866730624748993, - "c7": -1.0674586976486466 + "points": { + "c1": -15.271951055330067, + "c2": -3.095588817759001, + "c3": 7.409830176548223, + "c4": -12.773986574865496, + "c5": 12.660131869976908, + "c6": -9.849672470019865, + "c7": 12.285690877705662 }, - "vertexSeeds": { - "c1": 1.7173259676046764, - "c2": 1.7250814924703086, - "c3": 1.6942830165966352, - "c4": 1.7093073071231226, - "c5": 1.7153143446707622, - "c6": 1.7301619841913458, - "c7": 1.6816477465475044 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.5242718446601957, + "c3": 2.1035598705501646, + "c4": 1.6828478964401234, + "c5": 1.2621359223300925, + "c6": 0.8414239482200617, + "c7": 0.42071197411003086 }, "rgb": [58, 15, 49] }, @@ -365775,23 +365775,23 @@ "year": 1802, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 22.818692598428854, - "c2": -15.52004673787706, - "c3": 24.492082602777778, - "c4": -14.381007465903291, - "c5": -7.850698023496378, - "c6": -20.00257893613771, - "c7": 9.997961717977226 + "points": { + "c1": -11.460896429517154, + "c2": -16.272854742367894, + "c3": -18.258574283061954, + "c4": 6.111608698978735, + "c5": 26.39144749901854, + "c6": -25.32051360489788, + "c7": -16.223608508414635 }, - "vertexSeeds": { - "c1": 3.9660948611936746, - "c2": 3.732361648335685, - "c3": 3.8405036031203745, - "c4": 3.902182332989999, - "c5": 3.7252909132589225, - "c6": 4.056208253054579, - "c7": 3.919712448682696 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.9361997226074905, + "c3": 4.94683310217291, + "c4": 3.95746648173833, + "c5": 2.968099861303741, + "c6": 1.9787332408691607, + "c7": 0.9893666204345803 }, "rgb": [58, 15, 49] }, @@ -365802,23 +365802,23 @@ "year": 1802, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 13.361533848866571, - "c2": -28.061701353872312, - "c3": -7.783654044315956, - "c4": -27.472796346316784, - "c5": 22.57914354464424, - "c6": -10.683851528070985, - "c7": -26.491131931046965 + "points": { + "c1": -31.26035631802064, + "c2": -3.7243611380680477, + "c3": -17.97232028115169, + "c4": 31.642428966982003, + "c5": -6.7544923390411356, + "c6": -21.981475407208123, + "c7": -15.841059708960207 }, - "vertexSeeds": { - "c1": 5.5425989547843555, - "c2": 5.43235978282173, - "c3": 5.533921043276595, - "c4": 5.498384622043474, - "c5": 5.6507935848198425, - "c6": 5.598026224528049, - "c7": 5.696231271095693 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -365829,23 +365829,23 @@ "year": 1802, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -6.969331085037545, - "c2": -28.109299844580903, - "c3": 4.874302575054614, - "c4": -12.385689612753986, - "c5": 15.58886003003358, - "c6": 18.79858580908322, - "c7": 12.338373960435327 + "points": { + "c1": -13.550879939366446, + "c2": 5.499666518768599, + "c3": 24.109659758441083, + "c4": 13.713562036745735, + "c5": -31.36263722332066, + "c6": 16.069612141697547, + "c7": 28.88225098649636 }, - "vertexSeeds": { - "c1": 4.205973728332993, - "c2": 4.070845867295821, - "c3": 4.045081535601777, - "c4": 4.215730203962824, - "c5": 4.138561400036909, - "c6": 4.14853209946444, - "c7": 3.950779846709991 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848822, + "c3": 5.08552935737402, + "c4": 4.068423485899218, + "c5": 3.0513176144244065, + "c6": 2.0342117429496045, + "c7": 1.0171058714748022 }, "rgb": [77, 76, 132] }, @@ -365856,23 +365856,23 @@ "year": 1802, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -14.532712497966484, - "c2": 23.136471637530505, - "c3": 17.064878034854566, - "c4": -10.568996348619644, - "c5": 21.34944963754311, - "c6": 18.945463295826706, - "c7": 2.8076297288503547 + "points": { + "c1": -22.287779289165165, + "c2": 22.496956729179068, + "c3": -26.423412373399, + "c4": 13.003701826604342, + "c5": -18.395153891899653, + "c6": 5.582252336451184, + "c7": 17.290063400451373 }, - "vertexSeeds": { - "c1": 6.084540335909799, - "c2": 5.943755857925562, - "c3": 5.986430012447401, - "c4": 5.629277396765392, - "c5": 6.29126262883517, - "c6": 5.929749454188496, - "c7": 6.414269717732019 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514559, + "c3": 7.766990291262138, + "c4": 6.213592233009706, + "c5": 4.660194174757285, + "c6": 3.106796116504853, + "c7": 1.5533980582524212 }, "rgb": [238, 201, 159] }, @@ -365883,23 +365883,23 @@ "year": 1803, "resistanceReported": false, "duration": 47433600, - "curveSeeds": { - "c1": 18.20971397855891, - "c2": -7.425976255094987, - "c3": -11.817983471626668, - "c4": 35.11740667361943, - "c5": -16.862789277417114, - "c6": 47.31143435044086, - "c7": 11.665061982387755 + "points": { + "c1": 60.44983699169465, + "c2": 2.724962848852286, + "c3": 7.1726128913190195, + "c4": 20.240078080027445, + "c5": 5.870440440233281, + "c6": 63.71174131132494, + "c7": -47.90430549285292 }, - "vertexSeeds": { - "c1": 3.6350144550623997, - "c2": 4.0764540740516075, - "c3": 3.9321737361076514, - "c4": 3.9958846509265187, - "c5": 3.7383075557285097, - "c6": 3.951978095658985, - "c7": 3.8487658417138646 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768375, + "c3": 5.039297272306976, + "c4": 4.031437817845585, + "c5": 3.0235783633841873, + "c6": 2.015718908922789, + "c7": 1.007859454461398 }, "rgb": [238, 201, 159] }, @@ -365910,23 +365910,23 @@ "year": 1803, "resistanceReported": false, "duration": 38275200, - "curveSeeds": { - "c1": 0.21713615403410813, - "c2": -3.5226383825291165, - "c3": 7.43693471117809, - "c4": 42.68049242406696, - "c5": -36.60532153591674, - "c6": 13.654957048046235, - "c7": 29.453716371246493 + "points": { + "c1": -45.95455772178867, + "c2": 23.722454714078175, + "c3": 4.560637647445631, + "c4": 10.663159416879004, + "c5": 27.015710333587243, + "c6": 49.5689023684073, + "c7": 20.25039744299314 }, - "vertexSeeds": { - "c1": 5.607919227317227, - "c2": 5.664410585342624, - "c3": 3.340331981956623, - "c4": 4.529085123355453, - "c5": 3.2160996619988795, - "c6": 5.935360020302964, - "c7": 5.705143613258571 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669903, + "c3": 7.281553398058253, + "c4": 5.825242718446601, + "c5": 4.368932038834951, + "c6": 2.9126213592233006, + "c7": 1.4563106796116503 }, "rgb": [86, 146, 138] }, @@ -365937,23 +365937,23 @@ "year": 1803, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -38.30287363940218, - "c2": -9.194182449534122, - "c3": 17.087663831045674, - "c4": 13.366109705384105, - "c5": -26.83072492952126, - "c6": -16.953445175562678, - "c7": 26.4311741404224 + "points": { + "c1": -18.558280426763602, + "c2": -0.4585324895640852, + "c3": 6.23207855675674, + "c4": -0.8386876952602336, + "c5": 23.435787125850204, + "c6": 3.304638813001219, + "c7": 9.566290195952078 }, - "vertexSeeds": { - "c1": 3.3165799311411117, - "c2": 3.298544710583793, - "c3": 3.0415543219059282, - "c4": 3.2676713140100815, - "c5": 3.4145818580380105, - "c6": 3.3632450958323084, - "c7": 3.220551762291995 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119283, + "c3": 4.091539528432733, + "c4": 3.273231622746184, + "c5": 2.4549237170596414, + "c6": 1.6366158113730989, + "c7": 0.8183079056865494 }, "rgb": [58, 15, 49] }, @@ -365964,23 +365964,23 @@ "year": 1803, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -24.019800202641406, - "c2": -4.674724755805798, - "c3": 1.6739761359047378, - "c4": 34.8875822336442, - "c5": 31.486152237678617, - "c6": -17.79962052931255, - "c7": 14.818990094219942 + "points": { + "c1": -7.195786954306762, + "c2": 11.42853441173066, + "c3": 0.8576573866025399, + "c4": -10.323554590133266, + "c5": -4.602680717350431, + "c6": 18.685570819685594, + "c7": 17.194627590992987 }, - "vertexSeeds": { - "c1": 4.146123209307013, - "c2": 4.31774227380405, - "c3": 4.504278979832206, - "c4": 4.430257870911312, - "c5": 4.460122263110768, - "c6": 4.5247267582762, - "c7": 4.372656298358805 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532596, + "c3": 5.478502080443824, + "c4": 4.382801664355061, + "c5": 3.287101248266298, + "c6": 2.191400832177535, + "c7": 1.0957004160887631 }, "rgb": [86, 146, 138] }, @@ -365991,23 +365991,23 @@ "year": 1803, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 17.13099800194928, - "c2": 4.266052047405907, - "c3": 2.2029330543129078, - "c4": -27.11919897881115, - "c5": -8.161208692503969, - "c6": 18.734269267393586, - "c7": -14.338003018110324 + "points": { + "c1": 17.77329952319706, + "c2": 14.848151114894975, + "c3": -19.75952801726896, + "c4": -5.941396500051354, + "c5": 1.9826478344077998, + "c6": 8.385545832965917, + "c7": -30.659678070434005 }, - "vertexSeeds": { - "c1": 7.289163831656096, - "c2": 7.379494379300788, - "c3": 7.063717276574035, - "c4": 7.586259781439769, - "c5": 7.349549954971653, - "c6": 7.199130812777056, - "c7": 7.179169206920599 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289874, + "c3": 9.361997226074891, + "c4": 7.489597780859909, + "c5": 5.617198335644927, + "c6": 3.7447988904299634, + "c7": 1.8723994452149817 }, "rgb": [77, 76, 132] }, @@ -366018,23 +366018,23 @@ "year": 1802, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -6.9589501120112764, - "c2": 29.139386369274707, - "c3": 26.92299797984788, - "c4": 16.984889987877896, - "c5": -7.941895227454378, - "c6": -8.897180060724885, - "c7": -23.98013502864937 + "points": { + "c1": 26.657207893239562, + "c2": 26.583857988903393, + "c3": -2.681018585540155, + "c4": -11.002583236784773, + "c5": -30.92359270653674, + "c6": -8.102603616169333, + "c7": 17.056424795743926 }, - "vertexSeeds": { - "c1": 7.424688442171812, - "c2": 7.621171049344866, - "c3": 7.422178758281528, - "c4": 7.973399483258585, - "c5": 7.369621796071367, - "c6": 7.938107593024986, - "c7": 8.05378982132223 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013873, + "c3": 9.77808599167823, + "c4": 7.822468793342588, + "c5": 5.866851595006928, + "c6": 3.911234396671285, + "c7": 1.9556171983356425 }, "rgb": [86, 146, 138] }, @@ -366045,23 +366045,23 @@ "year": 1802, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 6.408120467254236, - "c2": 19.04483777270049, - "c3": -19.07819770517129, - "c4": -3.7967867311607257, - "c5": 1.6894378127065792, - "c6": -18.54547706165152, - "c7": 21.731293295466756 + "points": { + "c1": -17.147565520228028, + "c2": -29.146652205257716, + "c3": -18.764671638258505, + "c4": -28.580733584586984, + "c5": -27.330721726353225, + "c6": 22.410170620309472, + "c7": 20.406710743538916 }, - "vertexSeeds": { - "c1": 5.243298799910379, - "c2": 5.043668632749349, - "c3": 5.0318670312135305, - "c4": 4.970294700330195, - "c5": 5.086052974788402, - "c6": 4.9307904215169165, - "c7": 4.842189190421586 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650478, + "c4": 5.048543689320386, + "c5": 3.786407766990294, + "c6": 2.524271844660193, + "c7": 1.2621359223300919 }, "rgb": [86, 146, 138] }, @@ -366072,23 +366072,23 @@ "year": 1802, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 23.35624970112533, - "c2": 18.67465631517789, - "c3": 11.922340820223937, - "c4": 2.397335718742859, - "c5": -15.550986850213157, - "c6": -8.890341460056696, - "c7": 18.513366800796724 + "points": { + "c1": 29.339591045260207, + "c2": -17.497342952961223, + "c3": 3.077933179227955, + "c4": 30.6890789969832, + "c5": 5.2844449755891105, + "c6": -10.126462000525628, + "c7": -11.184163280750727 }, - "vertexSeeds": { - "c1": 4.169423342098584, - "c2": 4.156895947517814, - "c3": 4.373595826389304, - "c4": 4.168217859104448, - "c5": 4.468097795429436, - "c6": 4.260137963805398, - "c7": 4.100191488494397 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.4355062413314865, + "c3": 5.362921867776232, + "c4": 4.290337494220988, + "c5": 3.2177531206657433, + "c6": 2.1451687471104894, + "c7": 1.0725843735552447 }, "rgb": [238, 201, 159] }, @@ -366099,23 +366099,23 @@ "year": 1802, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 10.756275946930291, - "c2": 1.1216076751493098, - "c3": -6.414670106921076, - "c4": -6.768059624147067, - "c5": -16.005621238374125, - "c6": 11.385525351055616, - "c7": 15.516280991565953 + "points": { + "c1": 8.023912170629995, + "c2": -13.722617631801995, + "c3": -15.097298944686242, + "c4": 4.734524950782248, + "c5": 24.283625855815213, + "c6": 19.16735613882025, + "c7": 8.52458050067111 }, - "vertexSeeds": { - "c1": 5.0583712917691805, - "c2": 4.791000504169591, - "c3": 4.736285166012057, - "c4": 5.187997767007307, - "c5": 4.928102349518672, - "c6": 5.0449035123073, - "c7": 5.102337098700403 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859925, + "c3": 6.241331484049928, + "c4": 4.99306518723995, + "c5": 3.7447988904299625, + "c6": 2.496532593619975, + "c7": 1.2482662968099876 }, "rgb": [238, 201, 159] }, @@ -366126,23 +366126,23 @@ "year": 1802, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 1.1695042094259236, - "c2": -28.489041291834777, - "c3": 19.57381848051863, - "c4": -9.216061816005624, - "c5": -26.418081766260435, - "c6": -4.812852413698945, - "c7": 6.88102600226124 + "points": { + "c1": 15.67202400219433, + "c2": -1.4382707779267463, + "c3": 22.57273073518274, + "c4": -19.32676094393525, + "c5": -0.24111623447450015, + "c6": 27.051761864544627, + "c7": -24.23378424490221 }, - "vertexSeeds": { - "c1": 4.105745888843603, - "c2": 3.8280871397610103, - "c3": 4.151061495422455, - "c4": 4.065429263004209, - "c5": 4.085802240175634, - "c6": 4.0955584114850225, - "c7": 3.862188811250249 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808598, + "c3": 5.062413314840497, + "c4": 4.049930651872396, + "c5": 3.0374479889042947, + "c6": 2.0249653259362024, + "c7": 1.012482662968092 }, "rgb": [58, 15, 49] }, @@ -366153,23 +366153,23 @@ "year": 1802, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -4.131739345791473, - "c2": 14.36236611442152, - "c3": 17.306928510772146, - "c4": 19.93057194057898, - "c5": -11.936956813994684, - "c6": 13.762397503293286, - "c7": -5.141782021137207 + "points": { + "c1": -9.743461816738165, + "c2": -8.039187812673731, + "c3": -12.385224521607157, + "c4": 26.825820110383532, + "c5": -24.1778096539106, + "c6": -9.533697261409348, + "c7": -4.368344327310172 }, - "vertexSeeds": { - "c1": 5.594434141988323, - "c2": 5.489398698422189, - "c3": 5.88301682245632, - "c4": 5.542098370550452, - "c5": 5.495544053493422, - "c6": 5.741636104640408, - "c7": 5.993695388733686 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -366180,23 +366180,23 @@ "year": 1802, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 13.337265766866444, - "c2": 17.145308734424383, - "c3": -0.16268916851003823, - "c4": -8.488391960723224, - "c5": 20.085247610552273, - "c6": -16.028797958352712, - "c7": -3.3936507194377548 + "points": { + "c1": -23.835151009623576, + "c2": -10.004777887698118, + "c3": 3.488380092049546, + "c4": 3.7106908234260345, + "c5": 31.7898273623291, + "c6": -21.964798792336627, + "c7": -15.387707125111394 }, - "vertexSeeds": { - "c1": 4.658745730528746, - "c2": 4.574094060261291, - "c3": 4.620386151532358, - "c4": 4.596572520131145, - "c5": 4.5083471324796704, - "c6": 4.652968051918444, - "c7": 4.536236824532635 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [222, 0, 59] }, @@ -366207,23 +366207,23 @@ "year": 1802, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 15.542881934524754, - "c2": 7.367900912465291, - "c3": -17.279154168050788, - "c4": -9.15700437206365, - "c5": 0.32757922476433166, - "c6": 5.977685785701592, - "c7": 21.980923982640984 + "points": { + "c1": -23.658417497724265, + "c2": -4.388163834098016, + "c3": 1.1561341977183552, + "c4": -18.43090716429007, + "c5": -13.874934773641995, + "c6": -5.341345338695778, + "c7": -20.531594770246777 }, - "vertexSeeds": { - "c1": 6.661864498645157, - "c2": 6.005810780311722, - "c3": 6.506971032984644, - "c4": 6.402620164037728, - "c5": 6.2985415028190666, - "c6": 6.006338200479708, - "c7": 6.277977577736247 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836343, + "c3": 7.951918631530274, + "c4": 6.3615349052242225, + "c5": 4.7711511789181715, + "c6": 3.1807674526121024, + "c7": 1.5903837263060512 }, "rgb": [77, 76, 132] }, @@ -366234,23 +366234,23 @@ "year": 1802, "resistanceReported": true, "duration": 18748800, - "curveSeeds": { - "c1": -16.201833352978344, - "c2": -1.7016684708874799, - "c3": -15.182971872592862, - "c4": -28.738515771104705, - "c5": -22.628736972189223, - "c6": 14.040317389473412, - "c7": -14.842255571258905 + "points": { + "c1": -16.44570769275379, + "c2": 19.00702934301755, + "c3": -12.224337805770912, + "c4": -27.31689406951473, + "c5": 24.17306038640647, + "c6": -27.771806896682378, + "c7": -8.156593332346265 }, - "vertexSeeds": { - "c1": 12.698559920998372, - "c2": 14.323649915974725, - "c3": 10.83979485697753, - "c4": 9.634360062019866, - "c5": 10.976970956549687, - "c6": 13.566326914629787, - "c7": 12.253409095154462 + "offsets": { + "c1": 24.01294498381877, + "c2": 20.58252427184466, + "c3": 17.152103559870554, + "c4": 13.721682847896448, + "c5": 10.291262135922327, + "c6": 6.860841423948221, + "c7": 3.4304207119741132 }, "rgb": [238, 201, 159] }, @@ -366261,23 +366261,23 @@ "year": 1802, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -6.410976806395087, - "c2": -28.072063683459323, - "c3": 33.45767126310936, - "c4": -1.1212610323548517, - "c5": 9.274054271289181, - "c6": -11.578831769786543, - "c7": -19.421682990169977 + "points": { + "c1": -0.056042595641059734, + "c2": 16.721500040876528, + "c3": 3.6172185743107264, + "c4": 28.755444004345662, + "c5": -28.69655917664325, + "c6": -13.532340492869544, + "c7": -12.558594506244205 }, - "vertexSeeds": { - "c1": 9.239217695296029, - "c2": 9.409644640227558, - "c3": 9.23510491622435, - "c4": 9.298616679207406, - "c5": 9.312029890026531, - "c6": 9.321905100399691, - "c7": 9.303854347001305 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547823, + "c3": 11.234396671289913, + "c4": 8.987517337031912, + "c5": 6.7406380027739115, + "c6": 4.493758668515911, + "c7": 2.2468793342580002 }, "rgb": [77, 76, 132] }, @@ -366288,23 +366288,23 @@ "year": 1802, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 2.461756518720442, - "c2": 1.5259147241552, - "c3": -30.179102815432735, - "c4": 24.55258294592157, - "c5": -10.386845078758686, - "c6": -21.682911793881104, - "c7": -10.25825928709449 + "points": { + "c1": -34.8345804106354, + "c2": 9.318884605273666, + "c3": 22.823005107103924, + "c4": 4.358836440564964, + "c5": 28.226946408597875, + "c6": -14.233395241728893, + "c7": 8.388871241106614 }, - "vertexSeeds": { - "c1": 4.151557717277969, - "c2": 3.982257513735183, - "c3": 3.9309074243195092, - "c4": 4.109175773807082, - "c5": 4.239994982328693, - "c6": 4.211699420765137, - "c7": 3.9708447223048684 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929261, + "c3": 5.131761442441059, + "c4": 4.105409153952844, + "c5": 3.0790568654646306, + "c6": 2.052704576976417, + "c7": 1.026352288488214 }, "rgb": [58, 15, 49] }, @@ -366315,23 +366315,23 @@ "year": 1803, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 0.20805156234183642, - "c2": 21.486323383963615, - "c3": 34.5190516080189, - "c4": 32.74602398985894, - "c5": -25.154363927596883, - "c6": 0.42708587308266743, - "c7": -3.9352803823740885 + "points": { + "c1": 21.42278482101831, + "c2": 29.293314985422782, + "c3": -6.3013952202044194, + "c4": 21.782298885942296, + "c5": -38.82200275291031, + "c6": 31.759365589312182, + "c7": -12.699703191772628 }, - "vertexSeeds": { - "c1": 15.289618700254852, - "c2": 15.481363229316228, - "c3": 15.729028089672804, - "c4": 15.778458052332018, - "c5": 15.702264663160252, - "c6": 15.884764473531341, - "c7": 15.30834515553114 + "offsets": { + "c1": 26.63430420711974, + "c2": 22.829403606102627, + "c3": 19.024503005085517, + "c4": 15.219602404068446, + "c5": 11.414701803051335, + "c6": 7.609801202034223, + "c7": 3.8049006010171116 }, "rgb": [86, 146, 138] }, @@ -366342,23 +366342,23 @@ "year": 1802, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -2.2444273489913904, - "c2": -0.21779740940804615, - "c3": -20.6144652266551, - "c4": 5.778264104607693, - "c5": -9.274753709794211, - "c6": -7.3100159636770385, - "c7": -1.999470673348327 + "points": { + "c1": 10.050464496906976, + "c2": -20.380149919653142, + "c3": 26.69933952336452, + "c4": -15.07228572240954, + "c5": -19.999693669606696, + "c6": -2.704333435425422, + "c7": 13.218938766554423 }, - "vertexSeeds": { - "c1": 5.503192879001449, - "c2": 5.434578481276701, - "c3": 5.48968776331061, - "c4": 5.62556435311418, - "c5": 5.745563516871331, - "c6": 5.540800825592399, - "c7": 5.442138014211702 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267678, + "c3": 7.050392972723077, + "c4": 5.640314378178458, + "c5": 4.230235783633839, + "c6": 2.820157189089238, + "c7": 1.410078594544619 }, "rgb": [222, 0, 59] }, @@ -366369,23 +366369,23 @@ "year": 1802, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -13.429928982841638, - "c2": 15.66471179785377, - "c3": -2.8832631527890626, - "c4": -15.947572157574157, - "c5": -18.508904676597616, - "c6": -17.677180082807794, - "c7": -5.566576404073977 + "points": { + "c1": -16.18932209627033, + "c2": -12.696106252422016, + "c3": -4.129475541218792, + "c4": 4.970445867917135, + "c5": 1.7605211322872023, + "c6": -23.95933719954306, + "c7": -5.3110722591384665 }, - "vertexSeeds": { - "c1": 4.297213919766762, - "c2": 4.490416256999596, - "c3": 4.628567488593697, - "c4": 4.372080594123884, - "c5": 4.575696633551486, - "c6": 4.69772728784097, - "c7": 4.500447037250352 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814147, + "c3": 5.640314378178457, + "c4": 4.512251502542765, + "c5": 3.3841886269070733, + "c6": 2.2561257512713824, + "c7": 1.1280628756356912 }, "rgb": [238, 201, 159] }, @@ -366396,23 +366396,23 @@ "year": 1803, "resistanceReported": false, "duration": 52704000, - "curveSeeds": { - "c1": -3.782923188097918, - "c2": -57.28475038464274, - "c3": 42.35129814878752, - "c4": 43.875910277343294, - "c5": -19.088532248737096, - "c6": -17.411295440745157, - "c7": -28.66806159152496 + "points": { + "c1": -57.66696244049242, + "c2": 0.006360351116640572, + "c3": -56.61968268269759, + "c4": -4.514002439132923, + "c5": -49.84802798984137, + "c6": -53.41793709636821, + "c7": 55.017467597579284 }, - "vertexSeeds": { - "c1": 7.022180716204275, - "c2": 6.998374782816373, - "c3": 7.08773847379098, - "c4": 6.884824074803277, - "c5": 6.98678490652513, - "c6": 6.998619298870208, - "c7": 7.177018868595719 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922329, + "c3": 8.576051779935275, + "c4": 6.860841423948219, + "c5": 5.1456310679611645, + "c6": 3.4304207119741097, + "c7": 1.7152103559870548 }, "rgb": [222, 0, 59] }, @@ -366423,23 +366423,23 @@ "year": 1803, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": -19.72834119348802, - "c2": -31.531067696328407, - "c3": -36.8726265508414, - "c4": -0.46642806930778136, - "c5": -16.473897201979987, - "c6": -2.0824435400028705, - "c7": -35.496841506760376 + "points": { + "c1": 30.7265248287962, + "c2": -28.342859162955754, + "c3": -20.307404137001438, + "c4": -32.15505198034691, + "c5": 38.78215342691301, + "c6": -42.17889043947111, + "c7": 3.8245295168401654 }, - "vertexSeeds": { - "c1": 4.308654336436017, - "c2": 4.2808247053270465, - "c3": 4.2813540503779794, - "c4": 4.296258773857089, - "c5": 4.293304120556521, - "c6": 4.304879058512915, - "c7": 4.299633088025724 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969517, + "c3": 5.154877484974529, + "c4": 4.123901987979644, + "c5": 3.0929264909847585, + "c6": 2.061950993989873, + "c7": 1.0309754969948852 }, "rgb": [238, 201, 159] }, @@ -366450,23 +366450,23 @@ "year": 1803, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 23.622458089588328, - "c2": 23.827767136078187, - "c3": 17.01321336770635, - "c4": -4.253845924711435, - "c5": -13.321323695878135, - "c6": 24.79621740815852, - "c7": 26.216747659561356 + "points": { + "c1": -18.66975486456233, + "c2": -34.71797977354142, + "c3": -35.14926391375481, + "c4": -15.662574190054855, + "c5": -38.83507452771366, + "c6": -29.509404133274575, + "c7": 7.5827551597690785 }, - "vertexSeeds": { - "c1": 3.9428344406964113, - "c2": 3.894779540023371, - "c3": 3.934141492007539, - "c4": 3.913591104891238, - "c5": 3.9385090611612346, - "c6": 3.8942064411438317, - "c7": 3.891568871645835 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205298, + "c3": 4.715672676837717, + "c4": 3.7725381414701986, + "c5": 2.8294036061026175, + "c6": 1.8862690707350993, + "c7": 0.9431345353675183 }, "rgb": [58, 15, 49] }, @@ -366477,23 +366477,23 @@ "year": 1802, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 21.972750737897613, - "c2": 0.37382040699854713, - "c3": 14.718697065633634, - "c4": -11.253341504057332, - "c5": -21.87175606009412, - "c6": -16.70514563103561, - "c7": 15.66244731523578 + "points": { + "c1": 20.188507810456713, + "c2": 22.91183138674218, + "c3": -14.46596883061751, + "c4": -11.349899692581694, + "c5": -11.37359627224604, + "c6": 2.7056209074258746, + "c7": 0.4190350258196567 }, - "vertexSeeds": { - "c1": 6.383476561196498, - "c2": 6.563186033721479, - "c3": 6.3200276357056016, - "c4": 6.026233299558633, - "c5": 6.04259013037968, - "c6": 6.326932895871616, - "c7": 6.331816168349946 + "offsets": { + "c1": 11.067961165048544, + "c2": 9.486823855755901, + "c3": 7.9056865464632375, + "c4": 6.324549237170594, + "c5": 4.7434119278779505, + "c6": 3.1622746185853066, + "c7": 1.5811373092926435 }, "rgb": [86, 146, 138] }, @@ -366504,23 +366504,23 @@ "year": 1803, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -26.07355130465512, - "c2": 21.17477885638837, - "c3": -31.98488829453383, - "c4": -2.8551693633848956, - "c5": -1.1577369630476682, - "c6": -18.260364448469755, - "c7": -27.61846871870813 + "points": { + "c1": 7.682593083297888, + "c2": -4.256983040477735, + "c3": 14.786258313438353, + "c4": 3.32032054521364, + "c5": -1.5068515970431235, + "c6": -32.05975557132992, + "c7": -25.21723703477023 }, - "vertexSeeds": { - "c1": 3.4138901514785926, - "c2": 3.537589222209921, - "c3": 3.338917336580159, - "c4": 3.2566260051436826, - "c5": 3.2629950990082572, - "c6": 3.4775424281165375, - "c7": 3.2239968979449083 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521496, + "c3": 4.322699953767911, + "c4": 3.4581599630143334, + "c5": 2.593619972260748, + "c6": 1.7290799815071627, + "c7": 0.8645399907535853 }, "rgb": [238, 201, 159] }, @@ -366531,23 +366531,23 @@ "year": 1803, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": -38.14634109260459, - "c2": -31.046605175265675, - "c3": -35.20975515989565, - "c4": -11.967808957163108, - "c5": 2.954322757599627, - "c6": -17.712308327102, - "c7": 8.885904572854784 + "points": { + "c1": -7.268470392619655, + "c2": -11.025956078508955, + "c3": 47.552426917593735, + "c4": -7.6677307317874295, + "c5": -45.76331777751466, + "c6": -34.85373050059249, + "c7": -6.9979458461754405 }, - "vertexSeeds": { - "c1": 2.373053307555436, - "c2": 2.108671005815034, - "c3": 2.214352095313542, - "c4": 2.006424810307562, - "c5": 2.171673073110622, - "c6": 1.9571084269899062, - "c7": 2.4377009693765728 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.9667128987517324, + "c3": 3.3055940822931094, + "c4": 2.644475265834488, + "c5": 1.983356449375867, + "c6": 1.322237632917244, + "c7": 0.6611188164586214 }, "rgb": [77, 76, 132] }, @@ -366558,23 +366558,23 @@ "year": 1802, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -0.918183408688968, - "c2": -25.603578286658124, - "c3": 25.568612146216715, - "c4": -28.04127415195989, - "c5": 4.4475357678282705, - "c6": -22.095378851051255, - "c7": 31.378762366971998 + "points": { + "c1": -4.125099795870472, + "c2": -25.19669536149064, + "c3": 15.298450504131758, + "c4": 3.3674708135320373, + "c5": 34.2678034348189, + "c6": 19.894663998215954, + "c7": -21.47321133004027 }, - "vertexSeeds": { - "c1": 4.788021432748446, - "c2": 4.92474020063415, - "c3": 4.892461079952333, - "c4": 4.789232569435345, - "c5": 4.963076459813957, - "c6": 4.788396078431918, - "c7": 4.705019628145857 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779475, + "c3": 6.195099398982898, + "c4": 4.956079519186322, + "c5": 3.7170596393897375, + "c6": 2.478039759593152, + "c7": 1.239019879796576 }, "rgb": [222, 0, 59] }, @@ -366585,23 +366585,23 @@ "year": 1802, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -15.97586365494111, - "c2": -17.39890683897987, - "c3": -7.451687887596329, - "c4": -27.738070601918402, - "c5": 2.3330121062266223, - "c6": -17.930018915300742, - "c7": -17.412705959169056 + "points": { + "c1": -24.12243193857998, + "c2": 5.245098427384388, + "c3": 3.433114420535791, + "c4": -26.61886698405379, + "c5": 22.698809861586593, + "c6": 2.5659855613404723, + "c7": -0.2401816554338012 }, - "vertexSeeds": { - "c1": 4.597308122932908, - "c2": 4.608247763705119, - "c3": 4.398084700325202, - "c4": 4.496762829832889, - "c5": 4.550254826074626, - "c6": 4.5867564718606975, - "c7": 4.5616578455670584 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [86, 146, 138] }, @@ -366612,23 +366612,23 @@ "year": 1802, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -17.368406830017143, - "c2": -11.592333857128148, - "c3": 6.5709208553016545, - "c4": 22.336216580640514, - "c5": -4.995908023229916, - "c6": -27.180354606221243, - "c7": -23.887786408420318 + "points": { + "c1": -14.072123546127566, + "c2": 20.51138286299916, + "c3": -1.501006156873597, + "c4": -3.353280179762205, + "c5": 4.275112000289379, + "c6": 17.57794644949278, + "c7": -10.21419771461537 }, - "vertexSeeds": { - "c1": 5.98500138938619, - "c2": 5.5136242500689825, - "c3": 5.575953282794932, - "c4": 5.499198384774921, - "c5": 5.430006509554777, - "c6": 5.767407121092253, - "c7": 5.881889768347385 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -366639,23 +366639,23 @@ "year": 1802, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -24.821455440086545, - "c2": -29.12371613320091, - "c3": -26.803177168290972, - "c4": -9.780783769257017, - "c5": -2.5918150284931833, - "c6": -10.190219684495226, - "c7": 4.628055928591181 + "points": { + "c1": -14.507989725313141, + "c2": 31.21710689992492, + "c3": 17.392098421477563, + "c4": -3.975387381973757, + "c5": 13.83293644327231, + "c6": -30.729148054054143, + "c7": 11.94736954950487 }, - "vertexSeeds": { - "c1": 5.013513552828818, - "c2": 4.999219302129, - "c3": 4.781202891660647, - "c4": 5.106538158413217, - "c5": 4.9110091896761405, - "c6": 4.860719902894715, - "c7": 5.064572075647876 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900133, + "c3": 6.264447526583457, + "c4": 5.011558021266762, + "c5": 3.7586685159500663, + "c6": 2.505779010633381, + "c7": 1.2528895053166853 }, "rgb": [58, 15, 49] }, @@ -366666,23 +366666,23 @@ "year": 1802, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": -10.833864745415722, - "c2": -12.435792303496072, - "c3": -7.216315046385423, - "c4": 14.353159517051857, - "c5": -11.176412232380908, - "c6": 16.46065285717956, - "c7": -5.282940317518012 + "points": { + "c1": 18.32586114897186, + "c2": 15.772855451783983, + "c3": 8.317788445246357, + "c4": -4.665808593607501, + "c5": -19.51182177335891, + "c6": -22.974804107113414, + "c7": 5.68551565060827 }, - "vertexSeeds": { - "c1": 4.665826702409994, - "c2": 4.376645287731401, - "c3": 4.5797260110314175, - "c4": 4.349884347916579, - "c5": 4.36544427502348, - "c6": 4.485871717120132, - "c7": 4.320145189568972 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733707, + "c3": 5.594082293111417, + "c4": 4.475265834489138, + "c5": 3.3564493758668488, + "c6": 2.237632917244569, + "c7": 1.11881645862228 }, "rgb": [222, 0, 59] }, @@ -366693,23 +366693,23 @@ "year": 1802, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 4.869562986488777, - "c2": -21.32832405961888, - "c3": 21.80678645419482, - "c4": -1.0947844074259798, - "c5": -8.847736043663042, - "c6": 8.477548247348508, - "c7": -15.199125542211366 + "points": { + "c1": -7.085625800386815, + "c2": 12.879951863814753, + "c3": 17.61745679542271, + "c4": 8.273122292026407, + "c5": -14.931962960455785, + "c6": 2.52267364498557, + "c7": 22.255865594127208 }, - "vertexSeeds": { - "c1": 5.983079464590303, - "c2": 5.5811503505767135, - "c3": 5.570901647546917, - "c4": 5.785462397849485, - "c5": 5.936956440906276, - "c6": 5.9767679528142805, - "c7": 5.487545743120132 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -366720,23 +366720,23 @@ "year": 1802, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 3.9687783112645185, - "c2": -2.5777675396050412, - "c3": -21.334650181606566, - "c4": -17.45107360428094, - "c5": -3.9780378298788754, - "c6": 26.49792908074856, - "c7": -2.6022531046487067 + "points": { + "c1": 30.133705846299723, + "c2": -11.10735051057399, + "c3": 7.82649639390964, + "c4": -29.243459879373148, + "c5": -28.860066634661635, + "c6": 4.366856665888957, + "c7": -12.258383256531992 }, - "vertexSeeds": { - "c1": 5.334967548823124, - "c2": 5.024589064176091, - "c3": 5.244686146816628, - "c4": 5.012485598964691, - "c5": 5.353686570544043, - "c6": 4.924964105501833, - "c7": 4.9696494075229865 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318085, + "c4": 5.141007859454455, + "c5": 3.8557558945908434, + "c6": 2.570503929727232, + "c7": 1.2852519648636116 }, "rgb": [86, 146, 138] }, @@ -366747,23 +366747,23 @@ "year": 1803, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": 14.525236132866567, - "c2": 20.345950230195314, - "c3": 15.681317251731414, - "c4": -7.332930403406145, - "c5": 29.312208241241677, - "c6": 7.732155343033867, - "c7": 22.007589613005507 + "points": { + "c1": -49.616853666913286, + "c2": 14.782764845500068, + "c3": 12.706699539478208, + "c4": -28.330758962670494, + "c5": -14.178329020014921, + "c6": 39.311066160500815, + "c7": -38.08335172000884 }, - "vertexSeeds": { - "c1": 10.877858461973275, - "c2": 10.847929395458149, - "c3": 11.059681818551226, - "c4": 11.155156961892947, - "c5": 10.545474147861313, - "c6": 10.549843512684532, - "c7": 11.034943754385504 + "offsets": { + "c1": 19.158576051779935, + "c2": 16.421636615811384, + "c3": 13.684697179842791, + "c4": 10.947757743874241, + "c5": 8.210818307905692, + "c6": 5.473878871937099, + "c7": 2.7369394359685497 }, "rgb": [77, 76, 132] }, @@ -366774,23 +366774,23 @@ "year": 1802, "resistanceReported": false, "duration": 3801600, - "curveSeeds": { - "c1": 11.60105471648587, - "c2": -3.957382812000704, - "c3": -8.070512750262884, - "c4": -10.325597343811529, - "c5": 5.583699734110326, - "c6": 13.168150849034653, - "c7": 1.5988466769777059 + "points": { + "c1": 0.6424307850338522, + "c2": -5.216028562580799, + "c3": -14.535865923615253, + "c4": 2.330796643358063, + "c5": -2.873797407729281, + "c6": 7.728994849776708, + "c7": -8.937259724915702 }, - "vertexSeeds": { - "c1": 7.143924670196641, - "c2": 6.949977884323028, - "c3": 7.308804211711944, - "c4": 6.741994994178577, - "c5": 6.642173445502558, - "c6": 7.215818128637678, - "c7": 6.731946181127374 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203886, + "c3": 8.737864077669908, + "c4": 6.99029126213593, + "c5": 5.242718446601934, + "c6": 3.495145631067956, + "c7": 1.747572815533978 }, "rgb": [58, 15, 49] }, @@ -366801,23 +366801,23 @@ "year": 1802, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 26.616522042707633, - "c2": -8.543938971684, - "c3": -3.7477120695062247, - "c4": 7.765347668457668, - "c5": -20.62238771779282, - "c6": 2.0354790078271137, - "c7": -24.674385250662006 + "points": { + "c1": 25.22082669845007, + "c2": 24.51018847980666, + "c3": -18.453445662168495, + "c4": 26.286806233055653, + "c5": 5.772166311032013, + "c6": 9.93550434141201, + "c7": 0.6295225727857812 }, - "vertexSeeds": { - "c1": 7.920700329862379, - "c2": 7.9487037353108425, - "c3": 7.709593948280759, - "c4": 8.00358756595841, - "c5": 8.156945912193654, - "c6": 7.819454578668024, - "c7": 7.557828844710202 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375874, + "c3": 9.986130374479883, + "c4": 7.9889042995839095, + "c5": 5.991678224687937, + "c6": 3.9944521497919636, + "c7": 1.9972260748959727 }, "rgb": [86, 146, 138] }, @@ -366828,23 +366828,23 @@ "year": 1802, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -24.405493357068945, - "c2": -2.8202755553453756, - "c3": 4.9374360287130585, - "c4": 28.856554701794437, - "c5": 17.5957288588138, - "c6": -25.81211726667361, - "c7": 24.738949191420694 + "points": { + "c1": 13.852419695210159, + "c2": -13.603732588473235, + "c3": -13.114112494675279, + "c4": -11.5156039840078, + "c5": -23.102961575646084, + "c6": 20.13381201072336, + "c7": 17.990480706274617 }, - "vertexSeeds": { - "c1": 3.5639373035175677, - "c2": 3.8481084679760045, - "c3": 3.5735001014016796, - "c4": 3.689524278507445, - "c5": 3.752305097098555, - "c6": 3.634005520080763, - "c7": 3.8091548659282135 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703649, + "c4": 3.6985668053629177, + "c5": 2.773925104022195, + "c6": 1.8492834026814635, + "c7": 0.9246417013407318 }, "rgb": [238, 201, 159] }, @@ -366855,23 +366855,23 @@ "year": 1802, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 12.538301457615397, - "c2": -23.27737078693646, - "c3": -19.1930704149458, - "c4": 16.839021064215572, - "c5": -22.377192877535546, - "c6": 14.933524994992759, - "c7": 9.582083418711136 + "points": { + "c1": -6.431316941730888, + "c2": 1.6150319114027987, + "c3": 22.935012413358336, + "c4": 13.266051222318787, + "c5": -26.826052598489284, + "c6": -14.855104048709464, + "c7": 18.860937733122235 }, - "vertexSeeds": { - "c1": 2.463529039710438, - "c2": 2.251464813398472, - "c3": 2.335794601405131, - "c4": 2.2919406382593306, - "c5": 2.2773060436550785, - "c6": 2.368396107234693, - "c7": 2.2967757335474355 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.5506241331484034, + "c3": 2.958853444290339, + "c4": 2.3670827554322704, + "c5": 1.7753120665742017, + "c6": 1.183541377716133, + "c7": 0.5917706888580688 }, "rgb": [77, 76, 132] }, @@ -366882,23 +366882,23 @@ "year": 1802, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -3.4397531005086286, - "c2": 18.3370328223675, - "c3": -20.50315450281432, - "c4": 14.720379410384648, - "c5": 10.734360927940447, - "c6": -5.5383006991834876, - "c7": -14.58591964836932 + "points": { + "c1": -11.988731760672355, + "c2": -19.49187472522595, + "c3": -26.847633200773423, + "c4": -4.257012824004271, + "c5": 25.781268869686347, + "c6": -28.909276096126533, + "c7": 0.17845011970400293 }, - "vertexSeeds": { - "c1": 5.3834859364548375, - "c2": 5.626244986933374, - "c3": 5.553519217371816, - "c4": 5.291087446489781, - "c5": 5.142669135381742, - "c6": 5.462538670604397, - "c7": 5.2170933284467775 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387882, + "c4": 5.455386037910301, + "c5": 4.091539528432722, + "c6": 2.727693018955142, + "c7": 1.363846509477562 }, "rgb": [58, 15, 49] }, @@ -366909,23 +366909,23 @@ "year": 1802, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 2.441348173334191, - "c2": -9.248051543880116, - "c3": 19.73888213841999, - "c4": -3.9986105864887342, - "c5": 23.44813997318245, - "c6": -21.837170744211043, - "c7": 11.49823966676523 + "points": { + "c1": 4.285505756989444, + "c2": 26.405173490401083, + "c3": -17.11546097626166, + "c4": -20.34595879008664, + "c5": -5.196264884377058, + "c6": -0.9021050398029153, + "c7": 7.601154048863748 }, - "vertexSeeds": { - "c1": 4.6683310382702246, - "c2": 4.717978238857836, - "c3": 4.632992523645701, - "c4": 4.473022234765365, - "c5": 4.5969700983715445, - "c6": 4.3786826130018675, - "c7": 4.749508297090032 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055474, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.4674063800277413, + "c6": 2.3116042533518244, + "c7": 1.1558021266759078 }, "rgb": [222, 0, 59] }, @@ -366936,23 +366936,23 @@ "year": 1802, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -0.463871954552161, - "c2": -28.47910531834318, - "c3": 11.727577565615476, - "c4": 11.146025671207717, - "c5": -4.398237570806636, - "c6": 4.295437520662901, - "c7": -16.995167729948964 + "points": { + "c1": -3.4301858328738213, + "c2": 16.829944629183146, + "c3": 0.21154702059986974, + "c4": -20.552357759811677, + "c5": -3.719529936442992, + "c6": -26.662967376748863, + "c7": -19.07329528619735 }, - "vertexSeeds": { - "c1": 6.563015568547913, - "c2": 6.585660666257997, - "c3": 6.681276364071265, - "c4": 6.785646001057518, - "c5": 6.829884098710335, - "c6": 6.9472487473177535, - "c7": 6.563868825438534 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002768, + "c3": 8.622283865002315, + "c4": 6.897827092001844, + "c5": 5.173370319001392, + "c6": 3.448913546000922, + "c7": 1.7244567730004519 }, "rgb": [58, 15, 49] }, @@ -366963,23 +366963,23 @@ "year": 1802, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 10.487109726717389, - "c2": 9.072504252343453, - "c3": -8.963841980146643, - "c4": 0.2180442481722622, - "c5": 3.4691250268474896, - "c6": -4.007160216113345, - "c7": 23.955466260488347 + "points": { + "c1": 4.747515050505843, + "c2": 11.6692905261671, + "c3": -26.490685766155647, + "c4": 22.940952488136173, + "c5": 13.526480777687535, + "c6": 10.52272594471388, + "c7": 23.859497879496 }, - "vertexSeeds": { - "c1": 5.98072708338107, - "c2": 6.363424877934391, - "c3": 5.9897940609527005, - "c4": 6.204789465193826, - "c5": 6.151301658070668, - "c6": 5.976225179442016, - "c7": 5.9629140884169765 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635228, + "c3": 7.836338418862691, + "c4": 6.269070735090152, + "c5": 4.701803051317614, + "c6": 3.134535367545076, + "c7": 1.567267683772538 }, "rgb": [77, 76, 132] }, @@ -366990,23 +366990,23 @@ "year": 1802, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 6.912604038041206, - "c2": 16.951982230112772, - "c3": -26.074774402446984, - "c4": -17.04458359469219, - "c5": 17.97295506990199, - "c6": -25.40731817234553, - "c7": -18.426301501369657 + "points": { + "c1": -11.989642149624007, + "c2": 26.91913975806035, + "c3": -21.15439060111392, + "c4": 25.393157789896517, + "c5": 21.41878069437131, + "c6": 19.98772852573796, + "c7": 19.01062477660218 }, - "vertexSeeds": { - "c1": 6.567294325997717, - "c2": 6.523234147558418, - "c3": 6.491287560299548, - "c4": 6.507010091666901, - "c5": 6.824653881247222, - "c6": 6.79728232063002, - "c7": 6.469225127532671 + "offsets": { + "c1": 11.747572815533982, + "c2": 10.069348127600552, + "c3": 8.391123439667124, + "c4": 6.7128987517337135, + "c5": 5.034674063800285, + "c6": 3.3564493758668568, + "c7": 1.6782246879334284 }, "rgb": [86, 146, 138] }, @@ -367017,23 +367017,23 @@ "year": 1803, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -14.022826146669075, - "c2": -24.44649625135472, - "c3": -5.1233155965888955, - "c4": -10.034773500669221, - "c5": -3.663345614462738, - "c6": 22.44003062487905, - "c7": -10.356174895446241 + "points": { + "c1": -33.90293726067996, + "c2": 0.06433202981528297, + "c3": -26.445906051386146, + "c4": 32.599780572348415, + "c5": 28.600043602388787, + "c6": 33.27584510853051, + "c7": -25.56144716207354 }, - "vertexSeeds": { - "c1": 6.324374583397803, - "c2": 5.878312812993741, - "c3": 6.357753170170774, - "c4": 6.310511189207508, - "c5": 6.2079984795983805, - "c6": 6.384042824757799, - "c7": 5.865032399703086 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393902, + "c3": 7.697642163661572, + "c4": 6.158113730929262, + "c5": 4.618585298196951, + "c6": 3.079056865464622, + "c7": 1.539528432732311 }, "rgb": [222, 0, 59] }, @@ -367044,23 +367044,23 @@ "year": 1802, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -8.882919488669973, - "c2": 24.833737131242685, - "c3": 14.559043171395174, - "c4": 24.257004129672474, - "c5": -17.765378141439605, - "c6": 25.026475871662463, - "c7": -23.538882518947 + "points": { + "c1": -24.93151070237782, + "c2": 27.946777023693798, + "c3": -2.493343330921565, + "c4": -15.501791405651671, + "c5": -8.767459535370396, + "c6": -7.587633650309396, + "c7": 7.457266009781662 }, - "vertexSeeds": { - "c1": 6.809495700088451, - "c2": 6.717536102330857, - "c3": 6.438359252133243, - "c4": 6.666622871666758, - "c5": 6.578669259156376, - "c6": 6.873150451679782, - "c7": 6.90604100476536 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721218, + "c3": 8.460471567267678, + "c4": 6.768377253814157, + "c5": 5.076282940360618, + "c6": 3.3841886269070787, + "c7": 1.6920943134535393 }, "rgb": [86, 146, 138] }, @@ -367071,23 +367071,23 @@ "year": 1803, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 26.058278040815214, - "c2": 26.663129276118458, - "c3": 18.071188441376524, - "c4": -19.03266142124497, - "c5": -29.80013976053638, - "c6": -11.144082414552173, - "c7": -18.339567864008245 + "points": { + "c1": 21.789274256216096, + "c2": -5.380891007954158, + "c3": 1.4212242915827034, + "c4": -20.86807764793308, + "c5": -12.946790811434486, + "c6": -7.550862899151181, + "c7": 10.792672020536244 }, - "vertexSeeds": { - "c1": 5.753919154107387, - "c2": 5.561279121135165, - "c3": 5.663881068892118, - "c4": 5.530242414972957, - "c5": 6.289424296189899, - "c6": 5.443105763261354, - "c7": 5.695485382958728 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072118, + "c3": 7.512713823393436, + "c4": 6.010171058714745, + "c5": 4.507628294036063, + "c6": 3.0050855293573724, + "c7": 1.5025427646786824 }, "rgb": [238, 201, 159] }, @@ -367098,23 +367098,23 @@ "year": 1802, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": 10.03734073214206, - "c2": -8.310785074344729, - "c3": 6.7528258547998625, - "c4": 1.4448025863908107, - "c5": 3.961318979549098, - "c6": 7.820153216981694, - "c7": 4.108366363948171 + "points": { + "c1": -17.157484095785616, + "c2": 11.94301563267095, + "c3": 14.761904817440005, + "c4": -11.932246786257272, + "c5": -19.103983042226545, + "c6": 17.57271708305288, + "c7": -1.126983352440618 }, - "vertexSeeds": { - "c1": 5.124925456508469, - "c2": 5.206957096692295, - "c3": 5.07851241524841, - "c4": 5.190029979268987, - "c5": 4.988892370178375, - "c6": 5.053536290085654, - "c7": 5.103049509912146 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940351, + "c3": 6.28756356911697, + "c4": 5.030050855293568, + "c5": 3.772538141470187, + "c6": 2.515025427646784, + "c7": 1.257512713823392 }, "rgb": [58, 15, 49] }, @@ -367125,23 +367125,23 @@ "year": 1802, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -5.917939445026839, - "c2": 6.550658671944177, - "c3": -16.9913674808995, - "c4": -26.181797576668966, - "c5": 8.608383657472842, - "c6": 7.040695760276705, - "c7": -2.6587617597943876 + "points": { + "c1": -5.060233788640222, + "c2": 8.030489681570835, + "c3": -25.78764378138085, + "c4": -18.37843323104964, + "c5": 11.675318912713074, + "c6": -23.056924048261177, + "c7": 2.2149124273047214 }, - "vertexSeeds": { - "c1": 6.241372033928971, - "c2": 6.616345700314344, - "c3": 6.606374810123522, - "c4": 6.810686076268209, - "c5": 6.277722819187943, - "c6": 6.243053907316192, - "c7": 6.2931254600845605 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399453, + "c3": 8.275543226999535, + "c4": 6.620434581599635, + "c5": 4.965325936199717, + "c6": 3.3102172907998173, + "c7": 1.6551086453998998 }, "rgb": [222, 0, 59] }, @@ -367152,23 +367152,23 @@ "year": 1803, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 5.560933937224277, - "c2": 23.366425421136313, - "c3": 19.102294198462438, - "c4": 24.78012713119861, - "c5": 12.39808758895952, - "c6": 7.412504507963874, - "c7": 17.122708386297035 + "points": { + "c1": -10.01600008613499, + "c2": -24.865763906048834, + "c3": -29.450226950100927, + "c4": 8.475764867876713, + "c5": -30.058912640477182, + "c6": 12.395052027985251, + "c7": 28.236245775584607 }, - "vertexSeeds": { - "c1": 6.97549573080984, - "c2": 7.0349354398073345, - "c3": 7.142202907955729, - "c4": 7.052087258335875, - "c5": 6.7410665697505046, - "c6": 6.881667536776828, - "c7": 6.659966719783028 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.45769764216366, + "c3": 8.714748035136385, + "c4": 6.971798428109107, + "c5": 5.22884882108183, + "c6": 3.4858992140545535, + "c7": 1.7429496070272767 }, "rgb": [77, 76, 132] }, @@ -367179,23 +367179,23 @@ "year": 1803, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -2.4331148986155213, - "c2": -31.974345545872822, - "c3": -17.48549023295919, - "c4": 3.157068732608977, - "c5": 5.905234887429842, - "c6": -37.794368492966896, - "c7": 28.429760169720865 + "points": { + "c1": 3.2753710098473405, + "c2": -13.148423891312941, + "c3": 37.94895030202423, + "c4": 8.511626102165962, + "c5": -10.706905252918485, + "c6": -6.469396045290949, + "c7": -17.44252635801902 }, - "vertexSeeds": { - "c1": 6.368691250879462, - "c2": 7.452954843893384, - "c3": 6.998898699009751, - "c4": 7.1146579884779015, - "c5": 6.7074449130390565, - "c6": 6.854875792078316, - "c7": 7.355792576067545 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.2464170134073, + "c4": 7.397133610725842, + "c5": 5.547850208044384, + "c6": 3.698566805362925, + "c7": 1.8492834026814586 }, "rgb": [222, 0, 59] }, @@ -367206,23 +367206,23 @@ "year": 1802, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 14.066333983934875, - "c2": 14.135394400300164, - "c3": -10.72699242469414, - "c4": -0.693622136615673, - "c5": 17.613123032070696, - "c6": 10.887355966090844, - "c7": 20.6211073294254 + "points": { + "c1": 5.878931370871662, + "c2": 1.5141035184514422, + "c3": 25.27140071296278, + "c4": -17.740094765433373, + "c5": -11.784435608600042, + "c6": 9.761902232023843, + "c7": 20.028010119837532 }, - "vertexSeeds": { - "c1": 5.3995806660390695, - "c2": 5.092838476396238, - "c3": 5.4539611951700735, - "c4": 5.474060170268842, - "c5": 5.287669703342139, - "c6": 4.962346794399, - "c7": 5.042260583916698 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423016, + "c3": 6.564956079519188, + "c4": 5.251964863615344, + "c5": 3.938973647711517, + "c6": 2.625982431807672, + "c7": 1.312991215903845 }, "rgb": [77, 76, 132] }, @@ -367233,23 +367233,23 @@ "year": 1803, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -12.100024432249285, - "c2": 0.42578167927970867, - "c3": 22.997365484108627, - "c4": -15.589189223959249, - "c5": 29.67683412467474, - "c6": -20.412436582132997, - "c7": -8.65472068826331 + "points": { + "c1": 6.863008118058566, + "c2": -3.2819400279283357, + "c3": -27.354472656607904, + "c4": -35.23528708841156, + "c5": 18.94232735903457, + "c6": 27.757339333409504, + "c7": 4.491493221958663 }, - "vertexSeeds": { - "c1": 4.504646104233827, - "c2": 4.739827828631275, - "c3": 4.60598462107904, - "c4": 4.583394832540206, - "c5": 4.498755416824107, - "c6": 4.421813620664928, - "c7": 4.387050895895109 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055474, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.4674063800277413, + "c6": 2.3116042533518244, + "c7": 1.1558021266759078 }, "rgb": [86, 146, 138] }, @@ -367260,23 +367260,23 @@ "year": 1803, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -4.150342152475339, - "c2": 4.092007504224451, - "c3": -14.684557852054912, - "c4": -27.42279441630904, - "c5": 0.6925485445806281, - "c6": -26.497472280184347, - "c7": 22.735044914511807 + "points": { + "c1": 21.51688131454755, + "c2": 29.204082473060847, + "c3": -22.434895866595234, + "c4": -27.27654664611589, + "c5": 25.157778345517553, + "c6": 17.560508487948294, + "c7": 19.851924477105594 }, - "vertexSeeds": { - "c1": 13.802164940769853, - "c2": 14.293713294788565, - "c3": 13.877760022723418, - "c4": 14.195367678756117, - "c5": 14.659938622513407, - "c6": 13.860601447245873, - "c7": 14.215519545450658 + "offsets": { + "c1": 24.59546925566343, + "c2": 21.081830790568663, + "c3": 17.568192325473895, + "c4": 14.054553860379125, + "c5": 10.540915395284355, + "c6": 7.027276930189539, + "c7": 3.5136384650947696 }, "rgb": [238, 201, 159] }, @@ -367287,23 +367287,23 @@ "year": 1803, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -15.204490007196727, - "c2": -25.001066971999233, - "c3": -26.81362468582611, - "c4": 24.630882256355147, - "c5": 12.909540922846777, - "c6": 0.22016520367137815, - "c7": -16.24533319223631 + "points": { + "c1": -12.731215640123903, + "c2": 25.364542654064667, + "c3": 15.036789631891278, + "c4": -11.25774604477947, + "c5": 16.190542278741784, + "c6": -18.494886180131854, + "c7": 18.68556389753368 }, - "vertexSeeds": { - "c1": 3.6778947985009802, - "c2": 3.005663332347151, - "c3": 2.91477739753582, - "c4": 3.6020891329706552, - "c5": 2.978247492964151, - "c6": 2.9435910488833095, - "c7": 3.0337447679791185 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.3814147018030525, + "c3": 4.484512251502542, + "c4": 3.587609801202034, + "c5": 2.6907073509015262, + "c6": 1.7938049006010188, + "c7": 0.8969024503005075 }, "rgb": [222, 0, 59] }, @@ -367314,23 +367314,23 @@ "year": 1802, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -0.4191650345185849, - "c2": -23.23119663154513, - "c3": 22.045028965591065, - "c4": -1.8706498538212308, - "c5": -9.235289070672657, - "c6": 14.275810605413746, - "c7": 19.39876112477082 + "points": { + "c1": 2.639019730842513, + "c2": 19.268022609373524, + "c3": -1.4426777656797398, + "c4": 18.090737105580907, + "c5": -3.01949984063139, + "c6": -19.204486393355786, + "c7": 5.427492837983493 }, - "vertexSeeds": { - "c1": 6.672118810680839, - "c2": 6.358857694171659, - "c3": 6.55222038965607, - "c4": 6.284455802417688, - "c5": 6.490930022074191, - "c6": 6.514479451013921, - "c7": 6.175466315542179 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997222, + "c3": 8.04438280166435, + "c4": 6.435506241331475, + "c5": 4.826629680998621, + "c6": 3.2177531206657473, + "c7": 1.6088765603328736 }, "rgb": [86, 146, 138] }, @@ -367341,23 +367341,23 @@ "year": 1803, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 10.851090482811792, - "c2": 5.810521881624801, - "c3": 27.703077464530544, - "c4": -18.511423169251294, - "c5": -5.728145368411237, - "c6": -29.616807412528434, - "c7": 22.942204993681713 + "points": { + "c1": -1.8163930913086972, + "c2": -9.428096123413209, + "c3": -18.126983613820215, + "c4": -5.3350228829177375, + "c5": 28.319209913834214, + "c6": 21.542942601342034, + "c7": -18.059424320806958 }, - "vertexSeeds": { - "c1": 5.017817477660333, - "c2": 5.073759708031757, - "c3": 4.617941044475345, - "c4": 4.730661878431405, - "c5": 4.944821035238375, - "c6": 5.014654475132005, - "c7": 4.943939736220828 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578372, + "c3": 6.079519186315302, + "c4": 4.863615349052242, + "c5": 3.6477115117891814, + "c6": 2.431807674526121, + "c7": 1.2159038372630604 }, "rgb": [238, 201, 159] }, @@ -367368,23 +367368,23 @@ "year": 1803, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 9.232333730489707, - "c2": 22.576798281422192, - "c3": -26.278131037056838, - "c4": 13.429664418622906, - "c5": -14.357266097754522, - "c6": -28.919627668174122, - "c7": 2.039141463812072 + "points": { + "c1": -0.3758236718567005, + "c2": 17.082331958127476, + "c3": -6.602409591057349, + "c4": -20.180284233640535, + "c5": -24.996882645214512, + "c6": -12.450754009596608, + "c7": -17.75567012074496 }, - "vertexSeeds": { - "c1": 7.616124502582829, - "c2": 7.274545427318493, - "c3": 7.160689543466384, - "c4": 7.41420904805345, - "c5": 7.44178667056409, - "c6": 7.650489341202666, - "c7": 7.765339815809677 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450761, + "c3": 9.454461396208965, + "c4": 7.563569116967169, + "c5": 5.6726768377253896, + "c6": 3.7817845584835936, + "c7": 1.8908922792417968 }, "rgb": [238, 201, 159] }, @@ -367395,23 +367395,23 @@ "year": 1803, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 13.38765124152761, - "c2": -13.452900239261943, - "c3": 6.234734611786006, - "c4": -20.861606487072176, - "c5": 3.8549360910574144, - "c6": -21.101834350711155, - "c7": 0.2845858326024988 + "points": { + "c1": 10.872024032677988, + "c2": 22.735799776753378, + "c3": -8.377319989195929, + "c4": -7.360305941656481, + "c5": 19.031337915795984, + "c6": -6.222898753177109, + "c7": 10.925240134224762 }, - "vertexSeeds": { - "c1": 1.3122450001265018, - "c2": 1.2847570659612597, - "c3": 1.221603807951207, - "c4": 1.2728998124933204, - "c5": 1.2689640970670446, - "c6": 1.3298409123764854, - "c7": 1.2875275196290552 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.941747572815534, + "c3": 1.6181229773462784, + "c4": 1.2944983818770226, + "c5": 0.970873786407767, + "c6": 0.6472491909385113, + "c7": 0.32362459546925565 }, "rgb": [238, 201, 159] }, @@ -367422,23 +367422,23 @@ "year": 1803, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -19.72879680630387, - "c2": 31.725653660372103, - "c3": 6.854325265301846, - "c4": 16.853284650422687, - "c5": -18.06130896057654, - "c6": -8.186928819009758, - "c7": 2.492354265348517 + "points": { + "c1": 37.59026488931586, + "c2": -26.13638426531294, + "c3": 15.480840321084294, + "c4": 18.15900409274716, + "c5": 6.358671164399688, + "c6": -26.788977129058747, + "c7": -26.484945716057986 }, - "vertexSeeds": { - "c1": 7.9517901781377205, - "c2": 7.349681637542679, - "c3": 7.783514812087278, - "c4": 7.396665584472743, - "c5": 7.9120584628203385, - "c6": 7.851109210309307, - "c7": 7.842690902503381 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571423, + "c3": 9.523809523809515, + "c4": 7.619047619047622, + "c5": 5.714285714285712, + "c6": 3.809523809523802, + "c7": 1.9047619047618924 }, "rgb": [222, 0, 59] }, @@ -367449,23 +367449,23 @@ "year": 1803, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -7.868626764045423, - "c2": -1.1566491415567342, - "c3": -6.604525402144546, - "c4": -26.798133253576495, - "c5": 2.9950847709870416, - "c6": -33.262994200498106, - "c7": -3.0095394966301825 + "points": { + "c1": -19.010881075014073, + "c2": -7.832058820517844, + "c3": 35.24830280631065, + "c4": -19.493026618586693, + "c5": 36.03204795373776, + "c6": -20.09562316679447, + "c7": -23.06491350803247 }, - "vertexSeeds": { - "c1": 6.109672315489042, - "c2": 6.189116856698284, - "c3": 6.281378133377706, - "c4": 6.185810890634318, - "c5": 6.061127585023411, - "c6": 6.0517317059251905, - "c7": 6.204320101156814 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112333, + "c3": 7.535829865926968, + "c4": 6.028663892741568, + "c5": 4.521497919556166, + "c6": 3.0143319463707656, + "c7": 1.5071659731854008 }, "rgb": [222, 0, 59] }, @@ -367476,23 +367476,23 @@ "year": 1803, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -18.19076487828794, - "c2": 34.24432078400195, - "c3": 30.77580745776624, - "c4": 26.70434226824883, - "c5": 23.458804187185173, - "c6": -20.78204376450669, - "c7": 12.41867801896148 + "points": { + "c1": 29.935772011610233, + "c2": 9.174698972207082, + "c3": 38.99957016132387, + "c4": -24.45159943107649, + "c5": -12.152455977122376, + "c6": -14.427239820922981, + "c7": 17.038508800937855 }, - "vertexSeeds": { - "c1": 6.050787789401541, - "c2": 6.119208672444736, - "c3": 5.850374208262075, - "c4": 6.23765098028336, - "c5": 5.8916164915146485, - "c6": 6.277979314513839, - "c7": 5.91926316161617 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434113, + "c3": 7.720758206195106, + "c4": 6.1766065649560815, + "c5": 4.632454923717057, + "c6": 3.0883032824780496, + "c7": 1.5441516412390248 }, "rgb": [86, 146, 138] }, @@ -367503,23 +367503,23 @@ "year": 1803, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -7.6338953013378585, - "c2": 42.53275902889035, - "c3": -11.30556983503012, - "c4": 6.7468001562915205, - "c5": 0.1609401084660007, - "c6": 5.036703660622052, - "c7": 36.15437267855382 + "points": { + "c1": -27.17656071842347, + "c2": 0.6843511367332624, + "c3": -10.274638992986986, + "c4": -8.182434000458471, + "c5": 8.316686383586408, + "c6": 24.15265663895888, + "c7": 9.934784864555198 }, - "vertexSeeds": { - "c1": 5.145882148336208, - "c2": 5.105423660433943, - "c3": 4.8852786721976145, - "c4": 5.182395397688195, - "c5": 4.992572045929554, - "c6": 4.930486903661815, - "c7": 5.153518012751458 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819705, + "c3": 6.2182154415164135, + "c4": 4.97457235321314, + "c5": 3.7309292649098476, + "c6": 2.487286176606565, + "c7": 1.2436430883032825 }, "rgb": [238, 201, 159] }, @@ -367530,23 +367530,23 @@ "year": 1803, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -12.788538379399263, - "c2": -9.534348710705753, - "c3": -9.969035417245177, - "c4": 17.539801204121765, - "c5": -27.8326041630292, - "c6": -29.657877503061286, - "c7": 2.9877689842025745 + "points": { + "c1": 9.092734878778622, + "c2": 26.36889239127631, + "c3": -1.4752117305170103, + "c4": 8.734963351805604, + "c5": 26.845984003315202, + "c6": 9.377183177925744, + "c7": -0.5858051336011556 }, - "vertexSeeds": { - "c1": 3.997823624519082, - "c2": 3.748730808359059, - "c3": 3.7711662136410284, - "c4": 3.9193653555844534, - "c5": 3.9771897214250456, - "c6": 4.003873465601613, - "c7": 3.9242668634344606 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.7975034674063854, + "c3": 4.831252889505318, + "c4": 3.865002311604251, + "c5": 2.8987517337031927, + "c6": 1.9325011558021346, + "c7": 0.9662505779010673 }, "rgb": [238, 201, 159] }, @@ -367557,23 +367557,23 @@ "year": 1803, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 18.328074052072445, - "c2": 6.0633929775235345, - "c3": -6.650855932931947, - "c4": -26.104041794387, - "c5": -15.01859596246368, - "c6": 12.186889275298427, - "c7": 27.72130175871972 + "points": { + "c1": 5.9358607337677824, + "c2": -30.227767167406803, + "c3": -12.673456497274803, + "c4": -11.75923561426746, + "c5": 21.298366898303783, + "c6": 12.045890446503414, + "c7": -18.31185605946535 }, - "vertexSeeds": { - "c1": 4.961694966128239, - "c2": 5.196660818879579, - "c3": 5.3724213585033285, - "c4": 4.960737078617638, - "c5": 4.962914283509447, - "c6": 5.506428279856504, - "c7": 5.0262010961767905 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.9056865464632535, + "c3": 6.588072122052702, + "c4": 5.270457697642168, + "c5": 3.9528432732316174, + "c6": 2.635228848821084, + "c7": 1.3176144244105514 }, "rgb": [58, 15, 49] }, @@ -367584,23 +367584,23 @@ "year": 1803, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 32.34245127421653, - "c2": 4.457401879431103, - "c3": 7.382317938709683, - "c4": -31.516605519152165, - "c5": -0.8825951322362897, - "c6": -0.9796808227893337, - "c7": -36.86045673750345 + "points": { + "c1": 4.276617339106068, + "c2": -37.661686775117005, + "c3": 31.26848782530375, + "c4": 18.052086630369665, + "c5": -17.763315148993318, + "c6": -5.0167837257099706, + "c7": 8.158509713322069 }, - "vertexSeeds": { - "c1": 8.58036497494178, - "c2": 7.9422733334314675, - "c3": 8.050368928873226, - "c4": 8.202974068543147, - "c5": 7.901255437748165, - "c6": 8.436492769411222, - "c7": 7.843907184453677 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.56588072122053, + "c3": 10.471567267683778, + "c4": 8.377253814147025, + "c5": 6.282940360610273, + "c6": 4.18862690707352, + "c7": 2.0943134535367673 }, "rgb": [238, 201, 159] }, @@ -367611,23 +367611,23 @@ "year": 1802, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -23.406509175228415, - "c2": -3.492737752855753, - "c3": 22.200747872790803, - "c4": -10.359787120722448, - "c5": 16.87880945090232, - "c6": -23.21145368540192, - "c7": -9.864360020170182 + "points": { + "c1": 0.29346612311798026, + "c2": -25.232879718994845, + "c3": -8.710922437056034, + "c4": -12.66238416650272, + "c5": 15.0878297582578, + "c6": -3.1292691623893525, + "c7": 12.438687427170603 }, - "vertexSeeds": { - "c1": 6.133307094431304, - "c2": 5.948006764277865, - "c3": 5.982077428282295, - "c4": 5.961288429275328, - "c5": 5.927273444541901, - "c6": 6.018604000852693, - "c7": 5.963863310965334 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393902, + "c3": 7.697642163661572, + "c4": 6.158113730929262, + "c5": 4.618585298196951, + "c6": 3.079056865464622, + "c7": 1.539528432732311 }, "rgb": [222, 0, 59] }, @@ -367638,23 +367638,23 @@ "year": 1803, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -5.0310124303373165, - "c2": -5.761504325506369, - "c3": 30.73410330300685, - "c4": -10.573151503192182, - "c5": -28.962627104864126, - "c6": -21.335474858960076, - "c7": 26.836671402733447 + "points": { + "c1": 2.5604049929345862, + "c2": -21.401460034966373, + "c3": 29.19333677213561, + "c4": 19.6390465706113, + "c5": 22.279038224140294, + "c6": -27.28140441429728, + "c7": -29.83413377092451 }, - "vertexSeeds": { - "c1": 7.374950230776945, - "c2": 7.504668418337111, - "c3": 7.425829258119026, - "c4": 7.8228927846825576, - "c5": 7.3666328521472275, - "c6": 7.178943081030575, - "c7": 7.757413813039756 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410541, + "c3": 9.431345353675452, + "c4": 7.545076282940361, + "c5": 5.658807212205271, + "c6": 3.7725381414701804, + "c7": 1.8862690707350902 }, "rgb": [77, 76, 132] }, @@ -367665,23 +367665,23 @@ "year": 1803, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -3.326697025519305, - "c2": -24.927124984827806, - "c3": -6.943312193534421, - "c4": 11.45861651647217, - "c5": 10.843041948701256, - "c6": 12.155868329958068, - "c7": 7.025832729534379 + "points": { + "c1": 7.51895457489799, + "c2": -12.312030580073266, + "c3": -16.44796770283046, + "c4": -3.5212588412617123, + "c5": 23.330800852070603, + "c6": 9.75538334545508, + "c7": -24.584513485884216 }, - "vertexSeeds": { - "c1": 7.196553170743489, - "c2": 7.648722265900407, - "c3": 7.693297073188324, - "c4": 7.347546369377085, - "c5": 7.054049401641153, - "c6": 6.954613779599836, - "c7": 7.0128342050172865 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.04022191400832, + "c3": 9.200184928340263, + "c4": 7.360147942672226, + "c5": 5.520110957004168, + "c6": 3.680073971336113, + "c7": 1.8400369856680565 }, "rgb": [58, 15, 49] }, @@ -367692,23 +367692,23 @@ "year": 1803, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -0.3584631898725874, - "c2": 1.9405182650820976, - "c3": -12.479145385653183, - "c4": -11.102422402379888, - "c5": -18.01895882455036, - "c6": 19.59208744188495, - "c7": -11.193125202138106 + "points": { + "c1": 17.897703439698176, + "c2": 17.22230849164452, + "c3": -16.38068396825332, + "c4": 23.464850689242866, + "c5": -0.32741762031645294, + "c6": -21.574664388970856, + "c7": 5.9705408819156816 }, - "vertexSeeds": { - "c1": 5.716455512145619, - "c2": 5.756300594270975, - "c3": 5.516989562634943, - "c4": 6.000944891355037, - "c5": 5.922422621252058, - "c6": 5.844238892365097, - "c7": 5.7223028165977405 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -367719,23 +367719,23 @@ "year": 1803, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 17.442609958983404, - "c2": 23.479154348313912, - "c3": 14.743132279415178, - "c4": -2.073351298755977, - "c5": -18.44065501436269, - "c6": 28.06149992675045, - "c7": 16.629815414837736 + "points": { + "c1": 28.27263125452962, + "c2": -10.250196225343508, + "c3": -29.67987457047412, + "c4": -29.95134674016756, + "c5": -0.41516678965641063, + "c6": 34.836588102415504, + "c7": -14.39239976265403 }, - "vertexSeeds": { - "c1": 10.216420068037772, - "c2": 10.166814210788273, - "c3": 10.261136273994884, - "c4": 10.375120420027413, - "c5": 10.509737442225088, - "c6": 10.405821807749211, - "c7": 10.226814923747064 + "offsets": { + "c1": 17.60517799352751, + "c2": 15.090152565880748, + "c3": 12.575127138233896, + "c4": 10.060101710587135, + "c5": 7.545076282940374, + "c6": 5.030050855293613, + "c7": 2.5150254276467607 }, "rgb": [222, 0, 59] }, @@ -367746,23 +367746,23 @@ "year": 1803, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 21.44491341898597, - "c2": 15.326455599928295, - "c3": -3.171962850998124, - "c4": -25.828100063144696, - "c5": -17.867721490159795, - "c6": -16.561966420330112, - "c7": -7.721880433824843 + "points": { + "c1": 32.96406181746019, + "c2": -28.900586300806943, + "c3": -34.56533308253369, + "c4": 31.358965652497787, + "c5": -6.7727789985782465, + "c6": -9.524223012975899, + "c7": -23.998539206016176 }, - "vertexSeeds": { - "c1": 5.5132984966335, - "c2": 5.797959818040649, - "c3": 5.4380709856205245, - "c4": 5.755251463093897, - "c5": 5.631923870243887, - "c6": 5.8609696576043415, - "c7": 5.472720795427685 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -367773,23 +367773,23 @@ "year": 1802, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -17.0211493375948, - "c2": 12.682175469991293, - "c3": 14.647512524401208, - "c4": -14.835836135780744, - "c5": 8.534297490861363, - "c6": 20.827929836572437, - "c7": 19.403596386889404 + "points": { + "c1": -11.256989149466847, + "c2": -22.7331194617947, + "c3": -3.3051937097523165, + "c4": -13.950924649023209, + "c5": -7.6467713717729, + "c6": 2.293102380154668, + "c7": 12.913977649997406 }, - "vertexSeeds": { - "c1": 7.4945146148663015, - "c2": 7.599419754699522, - "c3": 7.213841734367536, - "c4": 7.408636065208026, - "c5": 7.078774510446826, - "c6": 7.2386083270962, - "c7": 6.97595358639227 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887653, + "c3": 9.130836800739722, + "c4": 7.304669440591773, + "c5": 5.4785020804438265, + "c6": 3.652334720295878, + "c7": 1.826167360147948 }, "rgb": [86, 146, 138] }, @@ -367800,23 +367800,23 @@ "year": 1803, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -5.22433002698671, - "c2": -8.350860942532623, - "c3": 15.286630795192849, - "c4": -6.363662528087907, - "c5": -18.65389084608241, - "c6": -15.03611773900063, - "c7": 20.354066955910106 + "points": { + "c1": -19.836310840410867, + "c2": -5.827971198127425, + "c3": 11.04084340897056, + "c4": 26.63416708919661, + "c5": -15.730398548410331, + "c6": 22.02409577881984, + "c7": 28.723763350099112 }, - "vertexSeeds": { - "c1": 5.403052840801769, - "c2": 5.649481393825056, - "c3": 5.937694905012461, - "c4": 5.994987576680076, - "c5": 5.690261103810625, - "c6": 5.855154007932328, - "c7": 5.793989314186659 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -367827,23 +367827,23 @@ "year": 1803, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 0.9874991286646306, - "c2": -28.860318412107695, - "c3": -1.6542780258616077, - "c4": 18.231071042801915, - "c5": 9.101815951483303, - "c6": -28.85742349685824, - "c7": -26.059269332737074 + "points": { + "c1": 27.356332691800198, + "c2": 0.794944056309852, + "c3": 14.100183746986822, + "c4": 21.657145256194795, + "c5": 0.04858801322369288, + "c6": -26.7278324838977, + "c7": 19.698842894767672 }, - "vertexSeeds": { - "c1": 3.495831558186266, - "c2": 3.4834396253841318, - "c3": 3.35576265703108, - "c4": 3.47279904224982, - "c5": 3.5609355873932818, - "c6": 3.5374319788129402, - "c7": 3.469162738360001 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561721, + "c3": 4.345815996301436, + "c4": 3.4766527970411514, + "c5": 2.6074895977808548, + "c6": 1.7383263985205701, + "c7": 0.8691631992602851 }, "rgb": [77, 76, 132] }, @@ -367854,23 +367854,23 @@ "year": 1803, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 10.810958558025213, - "c2": 39.23430227019418, - "c3": 20.604944347849802, - "c4": 14.190915946172616, - "c5": -11.769776430003205, - "c6": -7.083344231059492, - "c7": 16.06625601727005 + "points": { + "c1": -1.964718972209191, + "c2": -2.412446303249709, + "c3": 7.779375926010694, + "c4": -24.494948349735736, + "c5": -32.48888166801156, + "c6": 39.721665949973186, + "c7": -36.420392487973565 }, - "vertexSeeds": { - "c1": 6.192671225425178, - "c2": 6.683685479768173, - "c3": 6.329052502389316, - "c4": 6.432347035619642, - "c5": 6.452161360890714, - "c6": 6.707568437174715, - "c7": 6.4020066659103305 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037453, + "c3": 8.06749884419788, + "c4": 6.4539990753583085, + "c5": 4.840499306518716, + "c6": 3.2269995376791436, + "c7": 1.6134997688395718 }, "rgb": [77, 76, 132] }, @@ -367881,23 +367881,23 @@ "year": 1803, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -3.120871921465074, - "c2": -13.167661929030075, - "c3": -22.45947630443072, - "c4": -20.509903813246922, - "c5": -18.77656327935376, - "c6": -19.720452419130368, - "c7": -24.748347812326646 + "points": { + "c1": -21.68762518505629, + "c2": -22.463582298124717, + "c3": -28.24811968259966, + "c4": 2.541374078329614, + "c5": -1.7679905089617058, + "c6": -28.757262245468, + "c7": -5.178082455383716 }, - "vertexSeeds": { - "c1": 5.764124582116548, - "c2": 5.343678193216288, - "c3": 5.662297160867245, - "c4": 5.356285361721967, - "c5": 5.2926419386389325, - "c6": 5.765996355847693, - "c7": 5.839713169263985 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187249, + "c3": 7.00416088765603, + "c4": 5.603328710124832, + "c5": 4.2024965325936146, + "c6": 2.801664355062416, + "c7": 1.400832177531199 }, "rgb": [222, 0, 59] }, @@ -367908,23 +367908,23 @@ "year": 1803, "resistanceReported": false, "duration": 36806400, - "curveSeeds": { - "c1": -2.9769641562406477, - "c2": -30.811017757984843, - "c3": -21.9523768316279, - "c4": 5.07661815498723, - "c5": -47.9159733395378, - "c6": 0.08398808671449132, - "c7": -49.376370340695274 + "points": { + "c1": 49.619581670239505, + "c2": 15.565845288013811, + "c3": 16.451546536868726, + "c4": 5.2199222751748025, + "c5": -9.933417777252401, + "c6": -25.668227275269295, + "c7": -13.021332306580817 }, - "vertexSeeds": { - "c1": 0.9947898886892916, - "c2": 0.9340612932055805, - "c3": 0.9258493544258527, - "c4": 0.9664509095198776, - "c5": 0.9480234196596459, - "c6": 0.9643991436291436, - "c7": 0.9914426058859392 + "offsets": { + "c1": 1.715210355987055, + "c2": 1.4701803051317612, + "c3": 1.2251502542764672, + "c4": 0.9801202034211758, + "c5": 0.7350901525658817, + "c6": 0.4900601017105879, + "c7": 0.24503005085529395 }, "rgb": [77, 76, 132] }, @@ -367935,23 +367935,23 @@ "year": 1803, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 14.776959895003486, - "c2": 17.130526524914934, - "c3": 4.579536000446424, - "c4": -4.325959754526433, - "c5": 20.096561176833987, - "c6": -2.5221017803969445, - "c7": 21.418744644691962 + "points": { + "c1": 6.984057222890364, + "c2": -5.323015371586678, + "c3": 28.355869409607706, + "c4": 27.04923651390481, + "c5": 25.590350828294305, + "c6": 17.576572050427394, + "c7": 28.789193357004933 }, - "vertexSeeds": { - "c1": 5.223807950104564, - "c2": 4.97623745486967, - "c3": 5.107056155441948, - "c4": 4.891701311998571, - "c5": 4.9365373140174285, - "c6": 4.941737954483477, - "c7": 4.838617129712662 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -367962,23 +367962,23 @@ "year": 1803, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -7.435135728510765, - "c2": 1.6533073612643676, - "c3": 28.76774930706526, - "c4": 27.85112089583093, - "c5": -1.890157028169945, - "c6": 22.443736057779986, - "c7": -12.716293832244034 + "points": { + "c1": -43.81762036395743, + "c2": -31.311624730296867, + "c3": -38.7578704835521, + "c4": -20.655684181940664, + "c5": -4.534450608965059, + "c6": 5.51623062761017, + "c7": -25.697538127385997 }, - "vertexSeeds": { - "c1": 10.601215939115184, - "c2": 10.672016385787112, - "c3": 10.515151566392396, - "c4": 10.601290268828492, - "c5": 10.61019681377235, - "c6": 10.552475011372323, - "c7": 10.574576885291844 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.284327323162247, + "c3": 12.736939435968505, + "c4": 10.189551548774762, + "c5": 7.642163661581021, + "c6": 5.094775774387483, + "c7": 2.5473878871937417 }, "rgb": [222, 0, 59] }, @@ -367989,23 +367989,23 @@ "year": 1803, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -6.633273392901621, - "c2": 22.03476447499431, - "c3": 4.717708464772031, - "c4": -23.500794372425396, - "c5": 18.13383258677011, - "c6": 22.810245411815806, - "c7": 12.400384151497043 + "points": { + "c1": 4.790860724118069, + "c2": 25.351571111343148, + "c3": -0.9113309917044958, + "c4": 17.434302672407348, + "c5": -9.341275206208959, + "c6": -18.751110470371838, + "c7": -24.557263196525156 }, - "vertexSeeds": { - "c1": 2.130268273293632, - "c2": 2.096319753489313, - "c3": 2.159403169695763, - "c4": 2.362117065095531, - "c5": 2.295573126540133, - "c6": 2.1492572319436247, - "c7": 2.281687993352414 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.9819694868238558, + "c4": 2.3855755894590844, + "c5": 1.7891816920943133, + "c6": 1.1927877947295422, + "c7": 0.5963938973647711 }, "rgb": [238, 201, 159] }, @@ -368016,23 +368016,23 @@ "year": 1803, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -29.9220186844425, - "c2": 8.758236770485759, - "c3": -34.13021969735653, - "c4": -21.210332871107386, - "c5": -17.658933939461047, - "c6": 35.283009108157756, - "c7": -11.481347103299115 + "points": { + "c1": -17.547701657811594, + "c2": -33.43573885597794, + "c3": 27.053392138152574, + "c4": 21.0902717771188, + "c5": -23.67992339825461, + "c6": 4.966849194985528, + "c7": 10.50440281132655 }, - "vertexSeeds": { - "c1": 4.019133413015368, - "c2": 3.7896999912161355, - "c3": 4.012790022832942, - "c4": 3.9295510159092544, - "c5": 3.9678287749073835, - "c6": 3.9469689581982075, - "c7": 3.932498037897498 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527046, + "c3": 4.900601017105871, + "c4": 3.920480813684697, + "c5": 2.940360610263523, + "c6": 1.9602404068423485, + "c7": 0.9801202034211742 }, "rgb": [86, 146, 138] }, @@ -368043,23 +368043,23 @@ "year": 1802, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": 21.705487141702946, - "c2": 15.71848090347207, - "c3": -10.281924721620134, - "c4": 22.765247021405862, - "c5": -6.389507639229315, - "c6": -1.0783119007198607, - "c7": -21.915733023333864 + "points": { + "c1": -14.898054453940473, + "c2": 9.740185930781578, + "c3": -23.1456976112764, + "c4": -21.08534234766885, + "c5": 8.982073428680458, + "c6": 18.53442287184444, + "c7": 6.002075517895843 }, - "vertexSeeds": { - "c1": 4.999998050264195, - "c2": 5.176279557162448, - "c3": 5.183557887215172, - "c4": 4.848263749665126, - "c5": 5.102254676970951, - "c6": 5.120891525702949, - "c7": 4.984980401031075 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -368070,23 +368070,23 @@ "year": 1803, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 2.5819476821299787, - "c2": 33.887754631450015, - "c3": -30.551759326079228, - "c4": -30.898610068938687, - "c5": 9.043427362981049, - "c6": -10.515926072117463, - "c7": 2.062102241110985 + "points": { + "c1": -14.362419581418997, + "c2": 12.63516161563141, + "c3": 15.0376139217678, + "c4": -27.323808960754082, + "c5": -7.521671477062792, + "c6": 16.455442932220123, + "c7": -32.43483230257238 }, - "vertexSeeds": { - "c1": 5.649382675515351, - "c2": 5.581240818249457, - "c3": 5.677912835314149, - "c4": 5.836262936723688, - "c5": 5.72614716321613, - "c6": 5.78306306870131, - "c7": 5.78354989544182 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147018, + "c3": 6.981044845122515, + "c4": 5.584835876098012, + "c5": 4.188626907073509, + "c6": 2.792417938049006, + "c7": 1.396208969024503 }, "rgb": [77, 76, 132] }, @@ -368097,23 +368097,23 @@ "year": 1803, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -26.7125192836804, - "c2": 6.27614962464942, - "c3": 8.513839245151637, - "c4": 11.955438071871171, - "c5": -28.613428789739384, - "c6": 30.01769066868144, - "c7": 29.021009180586 + "points": { + "c1": 0.20548638390544482, + "c2": -29.540168882054562, + "c3": -35.78845395933196, + "c4": -7.601776323151505, + "c5": 13.952084002504137, + "c6": -34.08041918400544, + "c7": 28.28249724224183 }, - "vertexSeeds": { - "c1": 4.062034948049959, - "c2": 4.223453551763439, - "c3": 4.305409650856265, - "c4": 4.4117386165835875, - "c5": 4.129613783567941, - "c6": 4.482296914504799, - "c7": 4.151347513453687 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.4355062413314865, + "c3": 5.362921867776232, + "c4": 4.290337494220988, + "c5": 3.2177531206657433, + "c6": 2.1451687471104894, + "c7": 1.0725843735552447 }, "rgb": [238, 201, 159] }, @@ -368124,23 +368124,23 @@ "year": 1802, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 12.679701808961628, - "c2": -17.62782358869458, - "c3": -13.471534835482672, - "c4": -16.922098128790896, - "c5": -17.13203568483511, - "c6": -2.5396216615072653, - "c7": 10.772458281995032 + "points": { + "c1": -3.236998251988876, + "c2": -18.52502267441318, + "c3": -6.199876100249259, + "c4": 3.329142139113479, + "c5": 13.396420249054568, + "c6": 23.087360445906082, + "c7": 21.50071378993574 }, - "vertexSeeds": { - "c1": 7.398550992970995, - "c2": 7.941054027899933, - "c3": 8.009000852056005, - "c4": 7.725973645277208, - "c5": 7.981826679317914, - "c6": 8.020889372377475, - "c7": 7.94232595293794 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772544, + "c3": 9.639389736477108, + "c4": 7.7115117891816904, + "c5": 5.783633841886272, + "c6": 3.8557558945908355, + "c7": 1.9278779472954177 }, "rgb": [77, 76, 132] }, @@ -368151,23 +368151,23 @@ "year": 1803, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -7.338306540696575, - "c2": -29.465824005446997, - "c3": -15.50111046489262, - "c4": 3.564942834277982, - "c5": -0.0442706147535894, - "c6": -22.301878814881654, - "c7": 6.573158506762365 + "points": { + "c1": 11.677385126377143, + "c2": 30.62040912730816, + "c3": -14.228349452241133, + "c4": -9.07883379985795, + "c5": 15.423464328909734, + "c6": -17.76042772523288, + "c7": 30.248337556032514 }, - "vertexSeeds": { - "c1": 5.6989553323759745, - "c2": 5.547771426064645, - "c3": 5.428708363638056, - "c4": 5.929362845496449, - "c5": 5.793823892520255, - "c6": 5.493928945650335, - "c7": 5.60151923304087 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -368178,23 +368178,23 @@ "year": 1803, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 15.499601808618387, - "c2": -8.67074791365684, - "c3": -1.8256833851466645, - "c4": -15.69356956409164, - "c5": -23.43559182945373, - "c6": 2.4115199106815197, - "c7": 28.995826191489037 + "points": { + "c1": -25.64067329788799, + "c2": -31.897713172779724, + "c3": 20.010610184202093, + "c4": -16.797846916319294, + "c5": -15.608177854465499, + "c6": 8.827412280012183, + "c7": -8.063478044125826 }, - "vertexSeeds": { - "c1": 4.373771072039788, - "c2": 4.486579210186625, - "c3": 4.252362452365529, - "c4": 4.252226787146575, - "c5": 4.338274211920691, - "c6": 4.507601058088962, - "c7": 4.530754160223082 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452148, + "c3": 5.432269995376788, + "c4": 4.345815996301429, + "c5": 3.259361997226079, + "c6": 2.1729079981507198, + "c7": 1.0864539990753599 }, "rgb": [77, 76, 132] }, @@ -368205,23 +368205,23 @@ "year": 1803, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -39.54462332430249, - "c2": -39.16282966645923, - "c3": -9.352966449950067, - "c4": -29.540250897055152, - "c5": -23.12971557331412, - "c6": -16.495999512893224, - "c7": 2.91006847975342 + "points": { + "c1": 25.45914129528842, + "c2": -8.707449458278397, + "c3": -25.30417247946877, + "c4": -6.2016997567524825, + "c5": 42.74727746850512, + "c6": -11.41882160763167, + "c7": 7.03423033426219 }, - "vertexSeeds": { - "c1": 7.009502563592759, - "c2": 7.080827795303903, - "c3": 6.876549271798721, - "c4": 7.149398633923161, - "c5": 7.067809329365981, - "c6": 6.952987834495657, - "c7": 6.999722306014232 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -368232,23 +368232,23 @@ "year": 1803, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 2.498266387244527, - "c2": -2.2212051582043593, - "c3": 4.310733353190141, - "c4": -23.987662847644216, - "c5": -18.393416454015785, - "c6": -24.31223011431349, - "c7": -22.355482987114335 + "points": { + "c1": 16.963994906825707, + "c2": -24.96885523478086, + "c3": -22.342856949194633, + "c4": 30.955967811755958, + "c5": -5.351559908111934, + "c6": -28.8778017052132, + "c7": 28.99640253434033 }, - "vertexSeeds": { - "c1": 5.658084222271949, - "c2": 6.003537874526205, - "c3": 5.449286982563875, - "c4": 5.439988243815736, - "c5": 5.577183760818222, - "c6": 5.448527643044869, - "c7": 5.899272696529396 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -368259,23 +368259,23 @@ "year": 1803, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 2.6301463392846713, - "c2": -7.850998913264782, - "c3": -3.5965728558425347, - "c4": 29.173275281106655, - "c5": -1.0030544175690466, - "c6": 27.18752827242065, - "c7": -21.164521304291704 + "points": { + "c1": -3.583901987603852, + "c2": 20.055993301219942, + "c3": -19.457297011569146, + "c4": 31.89740325139303, + "c5": 6.91759521040558, + "c6": 28.582769195678864, + "c7": 3.1912193442976573 }, - "vertexSeeds": { - "c1": 1.7262146249073411, - "c2": 1.6601387695430763, - "c3": 1.6662324954081422, - "c4": 1.638944992210922, - "c5": 1.6422711898336078, - "c6": 1.6615146839513135, - "c7": 1.6830480803667998 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.4965325936199756, + "c3": 2.080443828016642, + "c4": 1.6643550624133174, + "c5": 1.2482662968099838, + "c6": 0.8321775312066587, + "c7": 0.41608876560332514 }, "rgb": [86, 146, 138] }, @@ -368286,23 +368286,23 @@ "year": 1803, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -6.166043998640781, - "c2": 20.40325941269252, - "c3": -5.476124936427009, - "c4": -20.51119451575222, - "c5": -6.6910798316370155, - "c6": -22.78257188507285, - "c7": 16.225529540843887 + "points": { + "c1": -14.858316796950506, + "c2": -14.465278930846523, + "c3": 6.74863091206344, + "c4": -20.835883824716838, + "c5": -3.111013303462034, + "c6": -3.3342890774858276, + "c7": -9.995614897126746 }, - "vertexSeeds": { - "c1": 2.412081816653173, - "c2": 2.57936320250563, - "c3": 2.5612388503956884, - "c4": 2.3963151163526857, - "c5": 2.4788791386268323, - "c6": 2.4592711270958736, - "c7": 2.6002404395401757 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429953, + "c3": 3.1206657420249666, + "c4": 2.496532593619969, + "c5": 1.8723994452149824, + "c6": 1.2482662968099845, + "c7": 0.6241331484049922 }, "rgb": [238, 201, 159] }, @@ -368313,23 +368313,23 @@ "year": 1803, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -19.128446047757915, - "c2": -14.301636630999443, - "c3": -27.043201335282397, - "c4": -0.9497304810515423, - "c5": 0.5434831404218947, - "c6": 13.234265251998988, - "c7": -6.16851639322471 + "points": { + "c1": 0.6742401012570909, + "c2": 1.5519403939222762, + "c3": -30.54904579430083, + "c4": 30.35197221827814, + "c5": -13.246195378483044, + "c6": 7.664079289335245, + "c7": -28.08333591924814 }, - "vertexSeeds": { - "c1": 6.8410875959393165, - "c2": 7.144076361619852, - "c3": 6.598046088303425, - "c4": 6.762453894891649, - "c5": 6.903232307759416, - "c6": 6.8459335454891415, - "c7": 7.111204276593926 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.45769764216366, + "c3": 8.714748035136385, + "c4": 6.971798428109107, + "c5": 5.22884882108183, + "c6": 3.4858992140545535, + "c7": 1.7429496070272767 }, "rgb": [58, 15, 49] }, @@ -368340,23 +368340,23 @@ "year": 1803, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": 29.83565103765592, - "c2": -2.3110051733896597, - "c3": -37.34061334311745, - "c4": 32.56864809629336, - "c5": -24.001715811831453, - "c6": 0.5763958041245374, - "c7": 31.970750273967724 + "points": { + "c1": -38.515551119706, + "c2": -38.39318354167832, + "c3": -22.002793965811232, + "c4": 16.26370676477572, + "c5": -25.3241473970719, + "c6": -14.4035829199704, + "c7": 34.2334832469204 }, - "vertexSeeds": { - "c1": 2.831176213745344, - "c2": 2.8307148907442126, - "c3": 2.746047007689853, - "c4": 2.8902139980260415, - "c5": 2.6829038483102168, - "c6": 2.768834413574818, - "c7": 2.795027530651054 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.271844660194178, + "c3": 3.5598705501618113, + "c4": 2.8478964401294524, + "c5": 2.1359223300970847, + "c6": 1.4239482200647262, + "c7": 0.7119741100323675 }, "rgb": [222, 0, 59] }, @@ -368367,23 +368367,23 @@ "year": 1803, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -16.80436182202776, - "c2": 0.2781454661582785, - "c3": 1.0648163852921826, - "c4": 20.044066310560222, - "c5": 11.857223551894027, - "c6": 24.97124394922442, - "c7": 7.47431660314432 + "points": { + "c1": 1.9939502375463043, + "c2": 15.437258727804814, + "c3": -20.677286004160802, + "c4": -5.45829305219786, + "c5": 2.130745583783753, + "c6": 8.92660192826941, + "c7": -7.995962659944098 }, - "vertexSeeds": { - "c1": 6.677239422880274, - "c2": 6.408392692067747, - "c3": 6.820162172589981, - "c4": 6.815630566710333, - "c5": 7.014164841324504, - "c6": 6.911787555054039, - "c7": 6.918733176091686 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721218, + "c3": 8.460471567267678, + "c4": 6.768377253814157, + "c5": 5.076282940360618, + "c6": 3.3841886269070787, + "c7": 1.6920943134535393 }, "rgb": [238, 201, 159] }, @@ -368394,23 +368394,23 @@ "year": 1803, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -5.788473002329379, - "c2": -8.331652267384449, - "c3": -9.860073405175033, - "c4": -12.004730900142317, - "c5": 10.110017187675258, - "c6": 21.439305226497464, - "c7": 0.9367399953100097 + "points": { + "c1": -21.625764039035236, + "c2": 10.639423127051291, + "c3": 14.369590083619467, + "c4": -4.009103910089653, + "c5": -22.29294126649979, + "c6": -15.60975944258178, + "c7": -0.4885840362973468 }, - "vertexSeeds": { - "c1": 8.421160313462252, - "c2": 8.484805330986454, - "c3": 8.403754045726762, - "c4": 8.16118536802582, - "c5": 8.035824447494011, - "c6": 8.345109613017954, - "c7": 8.011221897288182 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697644, + "c3": 10.17105871474804, + "c4": 8.136846971798436, + "c5": 6.102635228848813, + "c6": 4.068423485899209, + "c7": 2.0342117429496045 }, "rgb": [77, 76, 132] }, @@ -368421,23 +368421,23 @@ "year": 1803, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 2.3608808166682245, - "c2": 22.93644958852553, - "c3": 18.659284094308372, - "c4": 19.49223568505605, - "c5": -1.504778561596492, - "c6": -23.737014815897087, - "c7": 15.910443894918789 + "points": { + "c1": 24.24744119339142, + "c2": -1.5626694587005225, + "c3": -16.910652517169755, + "c4": -8.072437435477891, + "c5": -8.575031847183663, + "c6": 20.724504976140498, + "c7": -15.174358623225363 }, - "vertexSeeds": { - "c1": 4.388539023448887, - "c2": 4.431121245171827, - "c3": 4.489557644526477, - "c4": 4.7794747942902145, - "c5": 4.594759922714079, - "c6": 4.618155291800054, - "c7": 4.591973678445805 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015256, + "c3": 5.7558945908460455, + "c4": 4.604715672676844, + "c5": 3.4535367545076325, + "c6": 2.302357836338422, + "c7": 1.151178918169211 }, "rgb": [238, 201, 159] }, @@ -368448,23 +368448,23 @@ "year": 1803, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -7.597281580802182, - "c2": 15.592460572969102, - "c3": 15.389023699202163, - "c4": -12.312202278660681, - "c5": 10.990735256905616, - "c6": -2.3016344031214757, - "c7": -10.441283693341415 + "points": { + "c1": -11.171780863279851, + "c2": 3.492531685008032, + "c3": 3.365292314601664, + "c4": -18.514319110819233, + "c5": 6.265380238563246, + "c6": 21.179341185193792, + "c7": -18.101427487106918 }, - "vertexSeeds": { - "c1": 4.318645402989701, - "c2": 4.4858827617517765, - "c3": 4.4264899417270405, - "c4": 4.341662620475028, - "c5": 4.073872247729259, - "c6": 4.138540204426663, - "c7": 4.056260203029263 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.4355062413314865, + "c3": 5.362921867776232, + "c4": 4.290337494220988, + "c5": 3.2177531206657433, + "c6": 2.1451687471104894, + "c7": 1.0725843735552447 }, "rgb": [222, 0, 59] }, @@ -368475,23 +368475,23 @@ "year": 1803, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 17.367573681129873, - "c2": 8.47276525843218, - "c3": 11.456419910904739, - "c4": -19.753826855870095, - "c5": -8.644247887924664, - "c6": 16.706008294855994, - "c7": -21.225213199995856 + "points": { + "c1": 10.514802773634795, + "c2": 16.605370082657796, + "c3": 7.703637505621796, + "c4": 14.47627075626463, + "c5": 7.510616948866119, + "c6": -26.30338227701766, + "c7": -18.937948779952062 }, - "vertexSeeds": { - "c1": 7.007102222677031, - "c2": 6.355681440136447, - "c3": 6.717216880351083, - "c4": 6.374073343066543, - "c5": 6.388769420364556, - "c6": 7.025792449871198, - "c7": 6.891291831212964 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640783, + "c3": 8.414239482200644, + "c4": 6.731391585760522, + "c5": 5.048543689320383, + "c6": 3.365695792880261, + "c7": 1.6828478964401217 }, "rgb": [77, 76, 132] }, @@ -368502,23 +368502,23 @@ "year": 1803, "resistanceReported": false, "duration": 40435200, - "curveSeeds": { - "c1": -17.22088085106688, - "c2": -31.358034642905682, - "c3": 43.246750129388694, - "c4": 0.07930257106615812, - "c5": -37.11477508467995, - "c6": -3.4452722040066917, - "c7": 27.031112645998157 + "points": { + "c1": 56.267424106497124, + "c2": -18.606901170045653, + "c3": -4.7194726826560895, + "c4": -0.5548219236319767, + "c5": -33.366379009214214, + "c6": 17.307177515394706, + "c7": 35.7413948489852 }, - "vertexSeeds": { - "c1": 9.709959114496481, - "c2": 9.711918424845674, - "c3": 9.599205920895432, - "c4": 9.398848334811792, - "c5": 9.568691310335156, - "c6": 9.46627428501925, - "c7": 9.331882349938121 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.00832177531206, + "c3": 11.67360147942671, + "c4": 9.338881183541362, + "c5": 7.004160887656012, + "c6": 4.669440591770699, + "c7": 2.3347202958853495 }, "rgb": [77, 76, 132] }, @@ -368529,23 +368529,23 @@ "year": 1803, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -5.92772616818948, - "c2": -12.364701262177539, - "c3": -6.789885374430142, - "c4": -27.28747713417609, - "c5": 7.336071567062575, - "c6": 18.696388636556122, - "c7": -1.9722815374665856 + "points": { + "c1": -2.0797062866029776, + "c2": -24.461339349340342, + "c3": -2.473342979831493, + "c4": -12.549873983859055, + "c5": 28.827534057092976, + "c6": 6.038665229683637, + "c7": -8.36990091094028 }, - "vertexSeeds": { - "c1": 6.161148460128448, - "c2": 6.083675368914194, - "c3": 6.308855274033039, - "c4": 6.429992345256528, - "c5": 6.4296519795998215, - "c6": 6.473883050337349, - "c7": 6.371566167052383 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836343, + "c3": 7.951918631530274, + "c4": 6.3615349052242225, + "c5": 4.7711511789181715, + "c6": 3.1807674526121024, + "c7": 1.5903837263060512 }, "rgb": [238, 201, 159] }, @@ -368556,23 +368556,23 @@ "year": 1803, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 6.931395640971253, - "c2": -20.929909750991335, - "c3": -5.529521326234537, - "c4": -1.7696063753916498, - "c5": 21.67138974625705, - "c6": 17.85190092285383, - "c7": -3.3065191103393907 + "points": { + "c1": 6.991015609366457, + "c2": -1.337026310344278, + "c3": 21.607751426835165, + "c4": -17.114114620620597, + "c5": 4.7073287940846384, + "c6": 1.6830494434483434, + "c7": 26.20187158902855 }, - "vertexSeeds": { - "c1": 5.945492317248415, - "c2": 5.879707659603595, - "c3": 5.833470085970825, - "c4": 5.45344389607933, - "c5": 5.606155093533141, - "c6": 5.501620828710292, - "c7": 5.806243643014828 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -368583,23 +368583,23 @@ "year": 1803, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 19.08581421550545, - "c2": -20.696645133271115, - "c3": 16.857600141742815, - "c4": 25.558252683877498, - "c5": 7.913827970746738, - "c6": -6.757896730984214, - "c7": -26.386035434272355 + "points": { + "c1": 28.617462600348375, + "c2": 4.7785261876288345, + "c3": 6.960188426179258, + "c4": 33.35156658543886, + "c5": -0.5583610315656955, + "c6": 30.909262473881384, + "c7": -30.44530787733426 }, - "vertexSeeds": { - "c1": 4.947044116864666, - "c2": 5.2217421288012265, - "c3": 5.050595266873404, - "c4": 5.209734047298983, - "c5": 5.321018118548029, - "c6": 5.346542660469018, - "c7": 5.281421661472213 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221913, + "c3": 6.449375866851592, + "c4": 5.159500693481272, + "c5": 3.869625520110952, + "c6": 2.5797503467406315, + "c7": 1.2898751733703204 }, "rgb": [238, 201, 159] }, @@ -368610,23 +368610,23 @@ "year": 1803, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 21.826386949567365, - "c2": -24.080282803249546, - "c3": 28.82695504872369, - "c4": 10.506458636154989, - "c5": 17.110717118817995, - "c6": 4.816153525358409, - "c7": 4.319214480652477 + "points": { + "c1": -3.7152437238226312, + "c2": 21.820468245964136, + "c3": 28.341529816421144, + "c4": -26.313471940744353, + "c5": -11.269627069580736, + "c6": -4.712098911169704, + "c7": 26.12622359331059 }, - "vertexSeeds": { - "c1": 5.136270042698381, - "c2": 5.3325085509787336, - "c3": 5.060370249512354, - "c4": 5.297670785191047, - "c5": 5.335341822648213, - "c6": 4.872612835053134, - "c7": 5.099280886575814 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318085, + "c4": 5.141007859454455, + "c5": 3.8557558945908434, + "c6": 2.570503929727232, + "c7": 1.2852519648636116 }, "rgb": [238, 201, 159] }, @@ -368637,23 +368637,23 @@ "year": 1803, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 15.136937681065518, - "c2": 8.183255562724334, - "c3": 24.33978785833873, - "c4": 24.096981392645652, - "c5": -17.88293370262887, - "c6": -2.81168779037122, - "c7": -17.503129736412234 + "points": { + "c1": 10.031758569908533, + "c2": 5.242316777494445, + "c3": 8.484123950093583, + "c4": 22.24541809729915, + "c5": 24.48741408989052, + "c6": -9.97030706324459, + "c7": -8.006253096685214 }, - "vertexSeeds": { - "c1": 5.457310001891998, - "c2": 5.813362730241255, - "c3": 5.501978349560003, - "c4": 5.747354863275498, - "c5": 5.601125756324963, - "c6": 5.573767869883249, - "c7": 5.928219656060187 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -368664,23 +368664,23 @@ "year": 1803, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -30.810360685396514, - "c2": -20.85852263652785, - "c3": 10.067228377579305, - "c4": 30.084808802266117, - "c5": 13.469393369928532, - "c6": -29.484638031766156, - "c7": -8.734419764054874 + "points": { + "c1": 6.531079529816928, + "c2": -24.09877404016667, + "c3": -8.349928313901472, + "c4": -1.3695516730422561, + "c5": -13.6862889745246, + "c6": 3.180093839646311, + "c7": -14.351969215512714 }, - "vertexSeeds": { - "c1": 6.443410661400262, - "c2": 6.495693380970799, - "c3": 6.8615206399672495, - "c4": 6.767946350827463, - "c5": 6.735434620969264, - "c6": 6.595121258768629, - "c7": 6.628424097524557 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640783, + "c3": 8.414239482200644, + "c4": 6.731391585760522, + "c5": 5.048543689320383, + "c6": 3.365695792880261, + "c7": 1.6828478964401217 }, "rgb": [77, 76, 132] }, @@ -368691,23 +368691,23 @@ "year": 1803, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -11.787774324269929, - "c2": -15.487274471329274, - "c3": 17.11533308068634, - "c4": -17.48118695753294, - "c5": 29.34004389579264, - "c6": 27.75260332591308, - "c7": -8.389391077320113 + "points": { + "c1": -21.8553517382142, + "c2": 26.69743124553723, + "c3": 5.0113335743784475, + "c4": 8.475617870624745, + "c5": -20.795834945061202, + "c6": -2.9759683064786273, + "c7": -31.934212940123057 }, - "vertexSeeds": { - "c1": 4.2872620600702245, - "c2": 4.416074729782537, - "c3": 4.537715916727246, - "c4": 4.166223309880973, - "c5": 4.40774842034018, - "c6": 4.182352153736724, - "c7": 4.097731592630556 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452151, + "c3": 5.432269995376787, + "c4": 4.345815996301432, + "c5": 3.2593619972260757, + "c6": 2.1729079981507113, + "c7": 1.0864539990753557 }, "rgb": [58, 15, 49] }, @@ -368718,23 +368718,23 @@ "year": 1803, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 18.484142118739953, - "c2": 25.149119529636522, - "c3": -34.034091327053744, - "c4": -13.307482041368246, - "c5": 9.269098911018247, - "c6": -8.077413316313027, - "c7": 7.506448561767094 + "points": { + "c1": 24.047703651149583, + "c2": 34.70665537411378, + "c3": -12.558401844387404, + "c4": -25.940783696898315, + "c5": 9.37526496242976, + "c6": 14.134949209898153, + "c7": 34.23643854566559 }, - "vertexSeeds": { - "c1": 5.019615768707605, - "c2": 5.174537693446939, - "c3": 5.180525204093415, - "c4": 5.251987691757906, - "c5": 5.131634366163182, - "c6": 5.508841019056336, - "c7": 5.029880094604239 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543695, + "c3": 6.634304207119734, + "c4": 5.307443365695791, + "c5": 3.9805825242718473, + "c6": 2.6537216828478862, + "c7": 1.3268608414239431 }, "rgb": [238, 201, 159] }, @@ -368745,23 +368745,23 @@ "year": 1802, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": -4.220641746247507, - "c2": -9.857239627683853, - "c3": -14.555939451719873, - "c4": -5.285306713423832, - "c5": -2.8847553003352093, - "c6": -4.709231310870793, - "c7": -14.984759295627036 + "points": { + "c1": -2.5873863144306313, + "c2": -12.082993034733377, + "c3": 12.444300836264343, + "c4": -5.180146418893099, + "c5": 15.582076611407192, + "c6": -19.3706501328217, + "c7": 12.44637936326546 }, - "vertexSeeds": { - "c1": 2.914838345456668, - "c2": 2.821346408006577, - "c3": 2.9137428369787957, - "c4": 2.9573315828847586, - "c5": 2.992359265650281, - "c6": 2.7693037087295864, - "c7": 3.003938353541689 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274615, + "c3": 3.60610263522885, + "c4": 2.8848821081830764, + "c5": 2.163661581137312, + "c6": 1.4424410540915382, + "c7": 0.7212205270457646 }, "rgb": [86, 146, 138] }, @@ -368772,23 +368772,23 @@ "year": 1803, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 8.918294621221612, - "c2": -1.2861032548335984, - "c3": -9.377992916512465, - "c4": -15.444304631601002, - "c5": -13.69468768612666, - "c6": 5.75339995411845, - "c7": -19.670042581664575 + "points": { + "c1": 22.019977816249835, + "c2": 25.35508080145732, + "c3": 7.713920028068223, + "c4": -6.5933513983558605, + "c5": -3.474713272313089, + "c6": 17.80323911043049, + "c7": 26.55480803291527 }, - "vertexSeeds": { - "c1": 4.971458317624844, - "c2": 4.877988889116735, - "c3": 5.190122802825396, - "c4": 5.098000832303181, - "c5": 5.094306230341592, - "c6": 5.006588592944964, - "c7": 5.095959712963767 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -368799,23 +368799,23 @@ "year": 1803, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": -3.7445001184624758, - "c2": -20.137470207365922, - "c3": 38.632980565301935, - "c4": -31.908546576308723, - "c5": 1.105785690565419, - "c6": -43.71187381666944, - "c7": 44.96262638327215 + "points": { + "c1": 24.206199802398828, + "c2": -43.440371132966206, + "c3": -23.461247714895855, + "c4": 45.146678150928096, + "c5": -19.037835803670973, + "c6": 0.23746867526344317, + "c7": -18.62535971827606 }, - "vertexSeeds": { - "c1": 4.986744730043803, - "c2": 4.682985099796787, - "c3": 4.720599260489422, - "c4": 4.749999225493985, - "c5": 4.727231344782022, - "c6": 4.938490140833396, - "c7": 4.973322397494466 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457695, + "c3": 6.010171058714752, + "c4": 4.8081368469718, + "c5": 3.6061026352288477, + "c6": 2.4040684234858953, + "c7": 1.2020342117429523 }, "rgb": [238, 201, 159] }, @@ -368826,23 +368826,23 @@ "year": 1803, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -4.195508452622967, - "c2": 19.597347895570483, - "c3": -4.076512007505972, - "c4": -8.336297847966371, - "c5": 10.352152371342232, - "c6": 19.790161390057232, - "c7": -11.36041362569525 + "points": { + "c1": -10.493131791306848, + "c2": 12.086970530125502, + "c3": -9.83255622811901, + "c4": 25.35133912083867, + "c5": 9.00924325448229, + "c6": 5.291368674098447, + "c7": -8.598734835370955 }, - "vertexSeeds": { - "c1": 5.734854054382111, - "c2": 6.304261043264497, - "c3": 6.000374677149513, - "c4": 6.230362683941085, - "c5": 6.3351751075641145, - "c6": 6.08679319296943, - "c7": 5.8540293111085075 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233004, + "c3": 7.6051779935275166, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.0420711974109955, + "c7": 1.5210355987055069 }, "rgb": [77, 76, 132] }, @@ -368853,23 +368853,23 @@ "year": 1803, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -25.52004824060979, - "c2": -26.928795576744623, - "c3": -18.650906251151945, - "c4": 25.61553373837376, - "c5": -2.1853364111011295, - "c6": -2.491390797718939, - "c7": 19.574308045525218 + "points": { + "c1": -1.2963968327832553, + "c2": 2.3153410399112886, + "c3": -17.149128291025285, + "c4": 6.4288655328097235, + "c5": 31.329071762494074, + "c6": 15.14073070669032, + "c7": 3.211311157054297 }, - "vertexSeeds": { - "c1": 3.963100611865558, - "c2": 3.857556210132462, - "c3": 4.133395961637894, - "c4": 3.879491160671462, - "c5": 3.831044130032323, - "c6": 3.919577974764245, - "c7": 3.932930358177289 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687929, + "c3": 4.993065187239947, + "c4": 3.9944521497919525, + "c5": 2.9958391123439703, + "c6": 1.9972260748959763, + "c7": 0.9986130374479938 }, "rgb": [77, 76, 132] }, @@ -368880,23 +368880,23 @@ "year": 1803, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 33.77956670342091, - "c2": -26.001567395910747, - "c3": 20.695892499412437, - "c4": -11.358879229913494, - "c5": -25.68419173236086, - "c6": 12.200806675601804, - "c7": -31.162013936047583 + "points": { + "c1": -17.413048692984102, + "c2": -21.755774993025053, + "c3": 17.534591401650808, + "c4": -21.061354316738484, + "c5": 23.393105255721125, + "c6": 11.926265411023891, + "c7": 0.4585983300630403 }, - "vertexSeeds": { - "c1": 4.998891046830944, - "c2": 5.149812782565423, - "c3": 5.0069179221618745, - "c4": 4.933713599745584, - "c5": 5.050116305757547, - "c6": 4.648054222172491, - "c7": 4.903847935036024 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [86, 146, 138] }, @@ -368907,23 +368907,23 @@ "year": 1803, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -4.378073492163676, - "c2": 20.187200407462107, - "c3": -25.871931352937423, - "c4": 4.500026736665809, - "c5": 23.26444027930004, - "c6": 4.75629574407116, - "c7": -23.955588644111327 + "points": { + "c1": -1.9736114179743183, + "c2": 30.33577455202635, + "c3": -20.52225706466656, + "c4": -19.820592137368735, + "c5": -11.82978122447609, + "c6": 9.323395278057575, + "c7": 10.89878167928611 }, - "vertexSeeds": { - "c1": 8.354261140980238, - "c2": 8.064885423703966, - "c3": 7.591458105675855, - "c4": 7.998432327405347, - "c5": 8.195162831249576, - "c6": 7.812200172291178, - "c7": 8.201589475399652 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.01109570041608, + "c3": 10.00924641701341, + "c4": 8.00739713361072, + "c5": 6.005547850208049, + "c6": 4.00369856680536, + "c7": 2.001849283402689 }, "rgb": [86, 146, 138] }, @@ -368934,23 +368934,23 @@ "year": 1803, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -26.677502261748984, - "c2": -31.191074044272064, - "c3": 26.488437311360187, - "c4": 30.507424845075093, - "c5": -20.46101895410634, - "c6": -13.501742800536423, - "c7": -34.85702818593577 + "points": { + "c1": -37.320018992424835, + "c2": -35.37190274332752, + "c3": 7.004780418133208, + "c4": 9.598456329014063, + "c5": -27.406911525210745, + "c6": -26.833978705412633, + "c7": 35.075853645865365 }, - "vertexSeeds": { - "c1": 2.2543619226680236, - "c2": 2.4751180930391805, - "c3": 2.339388786573691, - "c4": 2.2798813256029478, - "c5": 2.4096545530460705, - "c6": 2.369244412563577, - "c7": 2.2366952636646427 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092906, + "c3": 3.051317614424411, + "c4": 2.4410540915395296, + "c5": 1.8307905686546477, + "c6": 1.2205270457697661, + "c7": 0.6102635228848843 }, "rgb": [86, 146, 138] }, @@ -368961,23 +368961,23 @@ "year": 1803, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -32.866527915179184, - "c2": -11.945384824491889, - "c3": -33.114633937990476, - "c4": 18.061507956827228, - "c5": -26.978208931741584, - "c6": 11.905461394044778, - "c7": -2.1481852839580036 + "points": { + "c1": 25.39572637658702, + "c2": -9.989195313635882, + "c3": -28.197638363824876, + "c4": -17.01629331411111, + "c5": 2.33615669584497, + "c6": -28.700826921155222, + "c7": 31.60255928484891 }, - "vertexSeeds": { - "c1": 11.012781796042557, - "c2": 11.20186224749593, - "c3": 10.982496865917225, - "c4": 11.089058507093474, - "c5": 10.97013184671501, - "c6": 10.918738866322991, - "c7": 10.954060394693325 + "offsets": { + "c1": 18.705501618122977, + "c2": 16.033287101248295, + "c3": 13.361072584373513, + "c4": 10.688858067498831, + "c5": 8.016643550624147, + "c6": 5.3444290337494635, + "c7": 2.6722145168746834 }, "rgb": [86, 146, 138] }, @@ -368988,23 +368988,23 @@ "year": 1803, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -28.672417963095224, - "c2": 18.973358730395276, - "c3": -5.07112429493403, - "c4": -28.922922016734248, - "c5": -2.2190194690976845, - "c6": 16.089462209217345, - "c7": -4.631208483917639 + "points": { + "c1": -32.57006540135656, + "c2": -10.563075456970434, + "c3": 12.913668329155257, + "c4": -19.299469852948224, + "c5": 33.91213420656479, + "c6": 25.128054506038275, + "c7": 25.495464497357375 }, - "vertexSeeds": { - "c1": 4.9008610730435676, - "c2": 5.218051211905984, - "c3": 5.008786991575036, - "c4": 5.2421419404558245, - "c5": 5.11859591163088, - "c6": 4.918184441458381, - "c7": 5.276136084290032 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -369015,23 +369015,23 @@ "year": 1803, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -21.908212461135026, - "c2": -20.25910986911471, - "c3": 22.173317023588925, - "c4": 23.796284615022333, - "c5": 25.190540128639572, - "c6": -16.31483185670521, - "c7": -10.927684320430018 + "points": { + "c1": 4.14400521060054, + "c2": 10.151994075209675, + "c3": 1.6137622866175967, + "c4": -2.4312694328354, + "c5": 4.262764538722934, + "c6": 19.251167570876962, + "c7": -23.004714928904257 }, - "vertexSeeds": { - "c1": 5.5164597384716645, - "c2": 5.610360924857007, - "c3": 5.4462657025992165, - "c4": 5.8008071858352395, - "c5": 5.444583574249931, - "c6": 5.832391628858111, - "c7": 5.770459307856239 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -369042,23 +369042,23 @@ "year": 1803, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": 10.888748773376555, - "c2": -21.75834726355224, - "c3": -8.727191094440649, - "c4": 5.4894122446430345, - "c5": 9.501421789979418, - "c6": 20.735693376933703, - "c7": 2.1582862604986275 + "points": { + "c1": -7.780834025558338, + "c2": -12.2376521408716, + "c3": -12.361456848299028, + "c4": 20.178843704250795, + "c5": -5.257632541662275, + "c6": 12.950234493992866, + "c7": 9.236991158070403 }, - "vertexSeeds": { - "c1": 3.7889491179759114, - "c2": 3.7257326616792534, - "c3": 3.7412606373028297, - "c4": 3.881035340778466, - "c5": 3.8287616959065236, - "c6": 3.8121071171204974, - "c7": 3.6300064864793433 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165053, + "c3": 4.692556634304205, + "c4": 3.7540453074433686, + "c5": 2.815533980582521, + "c6": 1.8770226537216843, + "c7": 0.9385113268608477 }, "rgb": [238, 201, 159] }, @@ -369069,23 +369069,23 @@ "year": 1803, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 10.51065474913215, - "c2": 10.516891283661913, - "c3": -13.46167911584952, - "c4": 23.090704429475117, - "c5": -34.31167168136359, - "c6": -40.452167084904026, - "c7": 1.9307492305580283 + "points": { + "c1": 39.43322403011988, + "c2": 24.408705496470184, + "c3": -0.533052899549439, + "c4": -26.12014701609304, + "c5": 23.849670546606013, + "c6": -7.922409359930768, + "c7": -2.2728164423834727 }, - "vertexSeeds": { - "c1": 8.949581064288461, - "c2": 10.009136840524963, - "c3": 8.887296170789867, - "c4": 9.69415671124861, - "c5": 9.559751463774726, - "c6": 9.481767500679725, - "c7": 9.666883738106806 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995826, + "c3": 12.066574202496534, + "c4": 9.653259361997216, + "c5": 7.239944521497913, + "c6": 4.826629680998608, + "c7": 2.413314840499304 }, "rgb": [77, 76, 132] }, @@ -369096,23 +369096,23 @@ "year": 1803, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -27.94766070430864, - "c2": -20.28007980766461, - "c3": 17.058577707099484, - "c4": 15.670779481458556, - "c5": 26.3933500557653, - "c6": 6.68394291774165, - "c7": -6.398893478071159 + "points": { + "c1": 28.607260660688606, + "c2": 22.232433104871756, + "c3": -5.0897048051112, + "c4": 23.86267701059371, + "c5": 12.018928242129139, + "c6": 13.354007784428351, + "c7": 15.077410231004695 }, - "vertexSeeds": { - "c1": 5.84555154576387, - "c2": 5.306895764912889, - "c3": 5.763681747478074, - "c4": 5.501094499021864, - "c5": 5.412842596821875, - "c6": 5.745845940410403, - "c7": 5.506602919411178 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267678, + "c3": 7.050392972723077, + "c4": 5.640314378178458, + "c5": 4.230235783633839, + "c6": 2.820157189089238, + "c7": 1.410078594544619 }, "rgb": [238, 201, 159] }, @@ -369123,23 +369123,23 @@ "year": 1803, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -6.051952848531414, - "c2": 20.358381758008733, - "c3": -22.27053343990878, - "c4": -6.753403381622306, - "c5": -8.057668413635952, - "c6": 8.645530221526762, - "c7": -10.209231235645902 + "points": { + "c1": 41.927546626225904, + "c2": -10.269669730611454, + "c3": -9.328597055779937, + "c4": 29.95013403012065, + "c5": -24.453162555260317, + "c6": 34.99862465719393, + "c7": -26.27348210357797 }, - "vertexSeeds": { - "c1": 5.219403683449352, - "c2": 5.046556175547281, - "c3": 5.1259459634273155, - "c4": 5.236005233182107, - "c5": 5.053690556326981, - "c6": 5.062618531917429, - "c7": 5.020084447486665 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940361, + "c3": 6.287563569116967, + "c4": 5.030050855293574, + "c5": 3.7725381414701804, + "c6": 2.515025427646787, + "c7": 1.2575127138233935 }, "rgb": [77, 76, 132] }, @@ -369150,23 +369150,23 @@ "year": 1803, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 9.054789329837966, - "c2": 40.81455487081262, - "c3": 20.776978403764268, - "c4": -5.6614105750651476, - "c5": 14.958726642939347, - "c6": -14.738634386048112, - "c7": -25.720262937003472 + "points": { + "c1": -22.680494922103076, + "c2": 43.85970321521791, + "c3": -27.509610365012655, + "c4": -39.68137418211734, + "c5": 3.383218982888735, + "c6": 31.1782840711219, + "c7": 7.5197971916700155 }, - "vertexSeeds": { - "c1": 5.616305118843895, - "c2": 4.9736554668232795, - "c3": 4.8330616934571635, - "c4": 5.489767725302211, - "c5": 5.335563811171834, - "c6": 4.933386158525613, - "c7": 5.714334807845788 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055474, + "c4": 5.547850208044381, + "c5": 4.160887656033288, + "c6": 2.7739251040221906, + "c7": 1.386962552011093 }, "rgb": [222, 0, 59] }, @@ -369177,23 +369177,23 @@ "year": 1803, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 18.952086089305123, - "c2": -13.718389118889117, - "c3": 8.273323407000913, - "c4": -20.108822803052362, - "c5": 1.4991779612093126, - "c6": 15.407199352981532, - "c7": 29.32461560838173 + "points": { + "c1": -26.98392450565762, + "c2": -3.227749482371337, + "c3": 25.729374565257856, + "c4": -18.6946013062376, + "c5": 18.789801900739448, + "c6": 5.612762018225709, + "c7": 23.28863099416727 }, - "vertexSeeds": { - "c1": 5.421529584769837, - "c2": 5.896629867868106, - "c3": 5.724906154962752, - "c4": 5.7034439046632635, - "c5": 5.760086667329764, - "c6": 5.905526443217417, - "c7": 5.714563752761251 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -369204,23 +369204,23 @@ "year": 1803, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -6.802851703448933, - "c2": 26.42148569104623, - "c3": 22.960268646524092, - "c4": -8.263450191464145, - "c5": 19.976253041273267, - "c6": -0.1077242361826265, - "c7": 25.023402495551032 + "points": { + "c1": 7.728117017790524, + "c2": 4.131477252076614, + "c3": -20.037925687343424, + "c4": -18.35948420982109, + "c5": -28.61612329941862, + "c6": 15.291202096725286, + "c7": 17.862425245047824 }, - "vertexSeeds": { - "c1": 5.015136898964782, - "c2": 5.244279709214929, - "c3": 5.102804074738332, - "c4": 5.111671717337625, - "c5": 4.941343254375321, - "c6": 5.283299829580309, - "c7": 4.992434612613172 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -369231,23 +369231,23 @@ "year": 1803, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -25.979184921752054, - "c2": 2.689598530733221, - "c3": -16.212390765500324, - "c4": -10.983488797948151, - "c5": -15.300167702324716, - "c6": 23.945863474378996, - "c7": -22.709253503800195 + "points": { + "c1": 9.294512502410797, + "c2": -7.147004454785609, + "c3": 10.698015460438612, + "c4": -7.568692180196702, + "c5": 11.718623297103797, + "c6": 13.694743488680786, + "c7": 5.022660529848842 }, - "vertexSeeds": { - "c1": 4.317167163769084, - "c2": 4.252291672259661, - "c3": 4.246955659173622, - "c4": 4.136900311090488, - "c5": 4.3236229849696866, - "c6": 4.4338774275982535, - "c7": 4.40908765310719 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291259, + "c3": 5.3398058252427125, + "c4": 4.271844660194176, + "c5": 3.2038834951456296, + "c6": 2.135922330097083, + "c7": 1.0679611650485359 }, "rgb": [222, 0, 59] }, @@ -369258,23 +369258,23 @@ "year": 1804, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": 51.01701397762039, - "c2": -28.854632928467367, - "c3": -18.11709769359831, - "c4": 39.291562416508874, - "c5": 43.5556452524442, - "c6": -6.153207969609042, - "c7": -36.23692131764272 + "points": { + "c1": -23.244251836676412, + "c2": -17.11294653960286, + "c3": -10.670304286164395, + "c4": -22.392238520067913, + "c5": -45.869531873461185, + "c6": 28.8991130237389, + "c7": -40.26337838295517 }, - "vertexSeeds": { - "c1": 8.924691820013974, - "c2": 8.986043875122094, - "c3": 9.026944713822944, - "c4": 8.883101627147791, - "c5": 8.874502724874386, - "c6": 8.911285243269788, - "c7": 8.92183649609066 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904304, + "c3": 10.864539990753594, + "c4": 8.691631992602845, + "c5": 6.518723994452133, + "c6": 4.345815996301423, + "c7": 2.1729079981507113 }, "rgb": [58, 15, 49] }, @@ -369285,23 +369285,23 @@ "year": 1803, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -16.607452452984738, - "c2": 14.464005340287514, - "c3": -29.81438118600206, - "c4": -10.96971437804806, - "c5": 23.12794136239023, - "c6": 19.921557099215136, - "c7": 22.055034271260162 + "points": { + "c1": -5.16368386246868, + "c2": -28.096310506311113, + "c3": 16.686041751167238, + "c4": -23.286939793281434, + "c5": 29.91530057492352, + "c6": 11.989118316099223, + "c7": -8.57266661450414 }, - "vertexSeeds": { - "c1": 4.156480219860046, - "c2": 4.1416226457352145, - "c3": 4.4383588363347135, - "c4": 4.245507463197959, - "c5": 4.073781930708536, - "c6": 4.229149350144197, - "c7": 4.099302086532054 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411928, + "c3": 5.4091539528432735, + "c4": 4.327323162274618, + "c5": 3.245492371705964, + "c6": 2.163661581137309, + "c7": 1.0818307905686546 }, "rgb": [238, 201, 159] }, @@ -369312,23 +369312,23 @@ "year": 1803, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 22.22402056517081, - "c2": -33.29331367502146, - "c3": 35.4768461274188, - "c4": 26.027565065352398, - "c5": -3.0604556583188725, - "c6": -44.66365620450807, - "c7": 48.29337815378293 + "points": { + "c1": -0.07648823488055712, + "c2": -15.637788803435662, + "c3": -50.4150715185619, + "c4": 35.676473436907095, + "c5": -27.909588906257063, + "c6": 24.595964472803708, + "c7": -47.065631452700565 }, - "vertexSeeds": { - "c1": 3.9597676874835135, - "c2": 3.7596011826895603, - "c3": 3.9051417518922853, - "c4": 3.946325935690441, - "c5": 3.653737570334798, - "c6": 3.9174219236732712, - "c7": 3.749021602323134 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325937, + "c3": 4.7850208044382825, + "c4": 3.828016643550628, + "c5": 2.871012482662964, + "c6": 1.9140083217753092, + "c7": 0.9570041608876546 }, "rgb": [86, 146, 138] }, @@ -369339,23 +369339,23 @@ "year": 1803, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -6.323644277608906, - "c2": -31.89907284098521, - "c3": -16.249741802535127, - "c4": 8.925563075145988, - "c5": -12.472705439957075, - "c6": 32.48124034239268, - "c7": 8.58832755469016 + "points": { + "c1": -2.0245897350576456, + "c2": -13.051525936791109, + "c3": 22.422622012703933, + "c4": -9.964171658936912, + "c5": -34.09557023927779, + "c6": -26.38185574649482, + "c7": -10.26127348321753 }, - "vertexSeeds": { - "c1": 7.847327194644832, - "c2": 7.922898270089599, - "c3": 7.9005432987693975, - "c4": 8.14479494181774, - "c5": 7.689452638124255, - "c6": 7.9104287985139825, - "c7": 8.061198907040362 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013873, + "c3": 9.77808599167823, + "c4": 7.822468793342588, + "c5": 5.866851595006928, + "c6": 3.911234396671285, + "c7": 1.9556171983356425 }, "rgb": [77, 76, 132] }, @@ -369366,23 +369366,23 @@ "year": 1803, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 0.7280268900368583, - "c2": -10.012028830008994, - "c3": 5.389090214110766, - "c4": 23.762250803611373, - "c5": 17.14622704123851, - "c6": 26.686213135847098, - "c7": 14.52262695403386 + "points": { + "c1": 26.911948602365086, + "c2": -1.1741215202972626, + "c3": 5.449837504187499, + "c4": 19.041896257670665, + "c5": -7.980384975302943, + "c6": -32.988213691712495, + "c7": 24.735260030880774 }, - "vertexSeeds": { - "c1": 1.523180899890136, - "c2": 1.5091543694503273, - "c3": 1.379010339988486, - "c4": 1.3778494209476184, - "c5": 1.50807953534638, - "c6": 1.5320773841807562, - "c7": 1.5307402222993334 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.2746185852981964, + "c3": 1.8955154877484965, + "c4": 1.5164123901987967, + "c5": 1.1373092926490995, + "c6": 0.7582061950993998, + "c7": 0.3791030975496999 }, "rgb": [58, 15, 49] }, @@ -369393,23 +369393,23 @@ "year": 1803, "resistanceReported": false, "duration": 7171200, - "curveSeeds": { - "c1": -7.391993910650598, - "c2": -1.2055561624199953, - "c3": 0.6983246924627373, - "c4": -8.803589118563211, - "c5": 17.25919835307569, - "c6": -14.975855181658563, - "c7": -0.4233908998064102 + "points": { + "c1": 9.267496963922301, + "c2": 13.740865317057974, + "c3": -8.19340439034313, + "c4": 8.636290970258809, + "c5": 17.702583722208814, + "c6": 15.373857219025695, + "c7": -16.35191691802662 }, - "vertexSeeds": { - "c1": 7.400589679401776, - "c2": 7.658351133893209, - "c3": 7.513202179009605, - "c4": 7.115877626996639, - "c5": 7.740660902873816, - "c6": 7.335609901409033, - "c7": 7.4126431961216115 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128999, + "c3": 9.26953305594082, + "c4": 7.415626444752665, + "c5": 5.561719833564488, + "c6": 3.7078132223763327, + "c7": 1.8539066111881772 }, "rgb": [238, 201, 159] }, @@ -369420,23 +369420,23 @@ "year": 1803, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 0.03597345343744962, - "c2": -2.44520062390135, - "c3": 21.222555987717172, - "c4": 27.710192683141308, - "c5": -3.7659323259527007, - "c6": -23.021575711778052, - "c7": 2.801607913402133 + "points": { + "c1": -21.0328986183171, + "c2": 11.710564409723744, + "c3": 1.5735737108910897, + "c4": 27.6773709517638, + "c5": 14.587910706051801, + "c6": 28.51189515261838, + "c7": -21.50934724313347 }, - "vertexSeeds": { - "c1": 5.61124939871419, - "c2": 5.677863021443069, - "c3": 5.879245858339046, - "c4": 5.721304052162037, - "c5": 5.731387602418268, - "c6": 5.846838401631441, - "c7": 5.866096841768186 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -369447,23 +369447,23 @@ "year": 1803, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -21.764024771275192, - "c2": -5.800478308631494, - "c3": -15.465718480869045, - "c4": 11.586667017352536, - "c5": 18.388021856073745, - "c6": 26.264655202869346, - "c7": 11.122365631863357 + "points": { + "c1": -0.4072913051362974, + "c2": 24.14858397457482, + "c3": -5.093867899586282, + "c4": 25.853641151512456, + "c5": -28.73385188394069, + "c6": 27.309191737364685, + "c7": 21.52334613991046 }, - "vertexSeeds": { - "c1": 5.910857727027385, - "c2": 6.127731936830252, - "c3": 6.115697744117016, - "c4": 6.115046726753028, - "c5": 6.364760456002151, - "c6": 5.857155411527639, - "c7": 6.463141970098908 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951457, + "c3": 7.766990291262128, + "c4": 6.213592233009706, + "c5": 4.660194174757285, + "c6": 3.1067961165048623, + "c7": 1.553398058252422 }, "rgb": [238, 201, 159] }, @@ -369474,23 +369474,23 @@ "year": 1803, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -1.333209191699332, - "c2": -8.92126922778505, - "c3": 21.57795857740455, - "c4": 12.076955778270573, - "c5": -3.3834856328356224, - "c6": 24.301832857830625, - "c7": 27.48604378426237 + "points": { + "c1": 23.618050617782174, + "c2": -27.043585719523513, + "c3": 13.736765793180197, + "c4": -10.299717705144076, + "c5": 16.7007941886839, + "c6": 11.322689352523895, + "c7": 2.8931059160838686 }, - "vertexSeeds": { - "c1": 6.337055873665431, - "c2": 6.178680160747523, - "c3": 6.23964296637793, - "c4": 6.64005117051798, - "c5": 6.553785411852706, - "c6": 6.416685842416702, - "c7": 6.386186527243426 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997222, + "c3": 8.04438280166435, + "c4": 6.435506241331475, + "c5": 4.826629680998621, + "c6": 3.2177531206657473, + "c7": 1.6088765603328736 }, "rgb": [86, 146, 138] }, @@ -369501,23 +369501,23 @@ "year": 1803, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 19.501753095497534, - "c2": 22.617020623768546, - "c3": -13.733063745183284, - "c4": 18.8670585181943, - "c5": -31.220767391091346, - "c6": 7.0787018804982225, - "c7": 4.949428817165916 + "points": { + "c1": 20.41619823521021, + "c2": -32.11446630420453, + "c3": -26.70340964746825, + "c4": 34.192939787124814, + "c5": -6.631063541105533, + "c6": -15.731386014885071, + "c7": -16.845518511075188 }, - "vertexSeeds": { - "c1": 5.045505626632879, - "c2": 5.0315700876867755, - "c3": 4.946203649920401, - "c4": 4.839176961232415, - "c5": 4.704101669990759, - "c6": 4.856109339636034, - "c7": 4.650745373955146 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699035, + "c3": 6.148867313915851, + "c4": 4.9190938511326845, + "c5": 3.6893203883495174, + "c6": 2.4595469255663422, + "c7": 1.2297734627831756 }, "rgb": [222, 0, 59] }, @@ -369528,23 +369528,23 @@ "year": 1803, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -13.196698183180892, - "c2": -4.065453662903, - "c3": 11.149506236211092, - "c4": 1.4878218345984706, - "c5": 15.737110260249896, - "c6": -0.9430326130367277, - "c7": 15.2515239604062 + "points": { + "c1": -16.04707044398291, + "c2": 13.666549923519486, + "c3": -13.667963550964231, + "c4": -2.6702286301491185, + "c5": -15.280931636069072, + "c6": -4.086257306825562, + "c7": -10.573391082669653 }, - "vertexSeeds": { - "c1": 5.5653288934509, - "c2": 5.961922473973462, - "c3": 5.47605128215921, - "c4": 5.683015803700856, - "c5": 5.747117273663371, - "c6": 5.456417549845267, - "c7": 6.006013171574025 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [86, 146, 138] }, @@ -369555,23 +369555,23 @@ "year": 1803, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -28.038790950730224, - "c2": 14.59828174132501, - "c3": -10.612731033102335, - "c4": 29.52639419148622, - "c5": -33.36031016689265, - "c6": -31.594013433958203, - "c7": -31.79712812729903 + "points": { + "c1": -6.937333976398687, + "c2": 9.699789237632508, + "c3": -13.817476346962003, + "c4": -34.20607357421212, + "c5": 18.716363362986293, + "c6": -16.549995252589824, + "c7": 21.25048832609366 }, - "vertexSeeds": { - "c1": 5.277437801493696, - "c2": 5.374022495819686, - "c3": 5.592993289793889, - "c4": 5.619160346674557, - "c5": 5.44846728414656, - "c6": 5.609550818528609, - "c7": 5.6493047031661385 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055483, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022186, + "c7": 1.386962552011093 }, "rgb": [86, 146, 138] }, @@ -369582,23 +369582,23 @@ "year": 1803, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -27.030806559687115, - "c2": -0.5116545807312463, - "c3": -17.699700879772198, - "c4": -26.651708046614065, - "c5": -3.166423974022873, - "c6": 12.016601689686102, - "c7": -18.262396331788004 + "points": { + "c1": -13.870818750979033, + "c2": 31.612527983573287, + "c3": -2.582263599415775, + "c4": -7.171375733665808, + "c5": -0.5831397594169871, + "c6": 10.353217635446512, + "c7": -10.436453693816027 }, - "vertexSeeds": { - "c1": 5.849985132130403, - "c2": 5.676780178664847, - "c3": 5.847656974975957, - "c4": 5.674107339205077, - "c5": 5.772609443356923, - "c6": 6.057674564051449, - "c7": 5.712912622014255 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.90429958391124, + "c3": 7.420249653259354, + "c4": 5.936199722607487, + "c5": 4.45214979195562, + "c6": 2.968099861303753, + "c7": 1.484049930651867 }, "rgb": [238, 201, 159] }, @@ -369609,23 +369609,23 @@ "year": 1803, "resistanceReported": false, "duration": 34905600, - "curveSeeds": { - "c1": 12.841692276642647, - "c2": -24.109761686035558, - "c3": -46.92302259560489, - "c4": 20.065021367469747, - "c5": 23.635476765044025, - "c6": -18.787276819283495, - "c7": -39.638063453490936 + "points": { + "c1": 34.571517018846386, + "c2": 7.4102904522925925, + "c3": 26.927297126633015, + "c4": 13.80315965740126, + "c5": -30.659196472331498, + "c6": 15.563445835556998, + "c7": -16.865586584365452 }, - "vertexSeeds": { - "c1": 2.9939641449645, - "c2": 3.1800478242706376, - "c3": 2.941643807397782, - "c4": 2.984517636714399, - "c5": 2.937346366759631, - "c6": 3.023450721144365, - "c7": 3.0070436813541903 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676834, + "c3": 3.8372630605640325, + "c4": 3.0698104484512223, + "c5": 2.3023578363384214, + "c6": 1.5349052242256112, + "c7": 0.7674526121128101 }, "rgb": [238, 201, 159] }, @@ -369636,23 +369636,23 @@ "year": 1803, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 3.697708401203542, - "c2": 29.829150498665683, - "c3": -34.2358617143472, - "c4": -31.62610515514931, - "c5": -20.80854849229159, - "c6": -33.89957623787393, - "c7": 3.942697488664308 + "points": { + "c1": 6.0633318701423065, + "c2": 38.88886204404231, + "c3": 28.35379925370856, + "c4": -4.955514768826518, + "c5": 3.0446052545835514, + "c6": -25.40574756025829, + "c7": 3.3848581079217013 }, - "vertexSeeds": { - "c1": 5.520452791299646, - "c2": 5.493456134927365, - "c3": 5.414933128268876, - "c4": 5.9163644070216375, - "c5": 5.983966934760918, - "c6": 5.438156834106152, - "c7": 5.455756222064314 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -369663,23 +369663,23 @@ "year": 1803, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -21.020204187535086, - "c2": -1.8462680409625563, - "c3": -23.14897156270059, - "c4": -0.6075574576268856, - "c5": 5.348479728690421, - "c6": 16.152112931689025, - "c7": 26.43863228037501 + "points": { + "c1": 20.207471372947126, + "c2": -11.34185588351815, + "c3": -4.6435857131367975, + "c4": 6.819513341205337, + "c5": 7.405680674567947, + "c6": 14.052452759881469, + "c7": 8.978142125254244 }, - "vertexSeeds": { - "c1": 7.825593186803504, - "c2": 8.116017328259343, - "c3": 7.87737939380086, - "c4": 8.016267053209974, - "c5": 8.487285933862976, - "c6": 8.133116557072102, - "c7": 7.95459527465678 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657427, + "c3": 10.14794267221451, + "c4": 8.118354137771613, + "c5": 6.088765603328714, + "c6": 4.059177068885797, + "c7": 2.0295885344428983 }, "rgb": [222, 0, 59] }, @@ -369690,23 +369690,23 @@ "year": 1803, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 18.647880521195546, - "c2": 1.3271298350201377, - "c3": -27.940041078725066, - "c4": -11.78355685657522, - "c5": -0.8526243421362096, - "c6": 39.05912987042285, - "c7": 36.0286105570368 + "points": { + "c1": -1.0257437016127327, + "c2": -23.49611878785878, + "c3": 34.621378171117996, + "c4": -0.5276202935908003, + "c5": -0.3730949025890453, + "c6": 24.684230334312602, + "c7": 18.94744068715415 }, - "vertexSeeds": { - "c1": 5.920158068257617, - "c2": 6.476003196387874, - "c3": 6.162405701034872, - "c4": 6.023900354650816, - "c5": 6.295249033353382, - "c6": 6.390287380040682, - "c7": 5.901283621552545 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595012, + "c3": 7.813222376329178, + "c4": 6.250577901063346, + "c5": 4.687933425797515, + "c6": 3.1252889505316643, + "c7": 1.5626444752658322 }, "rgb": [77, 76, 132] }, @@ -369717,23 +369717,23 @@ "year": 1803, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 26.97894506143286, - "c2": 6.208016829016707, - "c3": -23.106888823653914, - "c4": 22.503901432380403, - "c5": 21.46440738060239, - "c6": -22.769349574304517, - "c7": -3.073217351159901 + "points": { + "c1": -6.963723938152157, + "c2": 31.08062248915482, + "c3": 5.646083278906346, + "c4": -25.72327433679899, + "c5": -19.37682228749428, + "c6": -17.24119997360439, + "c7": -31.550366969770558 }, - "vertexSeeds": { - "c1": 6.486199426889377, - "c2": 6.285765786051345, - "c3": 6.840705248091591, - "c4": 6.546495553799373, - "c5": 6.4713693471725335, - "c6": 6.288939660410183, - "c7": 6.200530911882024 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318993, + "c3": 8.229311141932504, + "c4": 6.583448913545996, + "c5": 4.9375866851595065, + "c6": 3.291724456772998, + "c7": 1.64586222838649 }, "rgb": [86, 146, 138] }, @@ -369744,23 +369744,23 @@ "year": 1803, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 23.18109265125728, - "c2": -13.305083658192029, - "c3": -21.548096339882946, - "c4": 8.771613633790068, - "c5": 19.732106431879615, - "c6": -30.10697837408521, - "c7": 4.845667273608484 + "points": { + "c1": -21.12720337739139, + "c2": -18.16814431583298, + "c3": -33.03854270821175, + "c4": 5.104215437716071, + "c5": -18.03798306042127, + "c6": -9.809388015618602, + "c7": -18.211643598869426 }, - "vertexSeeds": { - "c1": 3.804231073828867, - "c2": 3.8671443162025354, - "c3": 3.787891339325783, - "c4": 3.732374331911381, - "c5": 3.781850373422169, - "c6": 3.7385140451268106, - "c7": 3.8600300529103526 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245488, + "c3": 4.738788719371235, + "c4": 3.791030975496997, + "c5": 2.843273231622744, + "c6": 1.8955154877484908, + "c7": 0.9477577438742533 }, "rgb": [77, 76, 132] }, @@ -369771,23 +369771,23 @@ "year": 1803, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 23.112924995514927, - "c2": -18.98889390329454, - "c3": -26.93758974482848, - "c4": 13.044542393858872, - "c5": -17.806844700203424, - "c6": 21.042747408986475, - "c7": 1.301692543850777 + "points": { + "c1": 27.96455754687208, + "c2": -4.359022692451301, + "c3": -9.527817381019307, + "c4": -6.919135863145396, + "c5": -6.35701127868478, + "c6": -11.152854957837015, + "c7": -21.48207596893961 }, - "vertexSeeds": { - "c1": 5.48968687168913, - "c2": 5.4973022143006, - "c3": 5.707447217097025, - "c4": 5.631863111861429, - "c5": 5.775401563237013, - "c6": 5.4288275330231945, - "c7": 5.7995073519787415 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -369798,23 +369798,23 @@ "year": 1803, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 16.01827249716876, - "c2": 27.685702968642367, - "c3": -29.37079002432079, - "c4": -9.718344378690922, - "c5": 4.198703539369653, - "c6": -20.221498874933246, - "c7": 28.51234282572426 + "points": { + "c1": -19.9802685471192, + "c2": 21.133911779922926, + "c3": 13.66415146767627, + "c4": 28.858061327219083, + "c5": -30.237644672737584, + "c6": 3.4401029561275394, + "c7": 1.1731976216306066 }, - "vertexSeeds": { - "c1": 5.687084819876647, - "c2": 5.457796136470635, - "c3": 5.587860357574121, - "c4": 5.722799977224243, - "c5": 5.637432038429859, - "c6": 5.573554404381194, - "c7": 5.639080909219393 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -369825,23 +369825,23 @@ "year": 1803, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 2.1397946941808073, - "c2": 0.5639441299496113, - "c3": 5.471850535661005, - "c4": -25.077349784235423, - "c5": -16.166752823857692, - "c6": 10.725970824868178, - "c7": -14.93295229630469 + "points": { + "c1": -9.669252638420037, + "c2": -11.404579639774479, + "c3": 0.20447384652825207, + "c4": -28.440159979414915, + "c5": 0.6878049019408472, + "c6": -8.748067053471214, + "c7": -28.883381763023202 }, - "vertexSeeds": { - "c1": 2.069224666870155, - "c2": 1.8516721872291766, - "c3": 2.096963633119247, - "c4": 1.9842450734944468, - "c5": 2.0283461503407114, - "c6": 1.9549885836391947, - "c7": 1.9869094001849623 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841877, + "c3": 2.519648636153489, + "c4": 2.0157189089227905, + "c5": 1.511789181692092, + "c6": 1.0078594544613935, + "c7": 0.503929727230695 }, "rgb": [238, 201, 159] }, @@ -369852,23 +369852,23 @@ "year": 1803, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -6.119220666152099, - "c2": 7.93857814952289, - "c3": -12.711845046447188, - "c4": 21.581427549471975, - "c5": 15.65249113845342, - "c6": 8.282833245745685, - "c7": 8.269314619734075 + "points": { + "c1": 27.82735991070281, + "c2": -29.543339054906696, + "c3": -31.80732464001757, + "c4": -16.7046416288773, + "c5": -29.408885756479947, + "c6": 16.323230623980812, + "c7": -11.227567464749459 }, - "vertexSeeds": { - "c1": 8.30622575251804, - "c2": 7.777181208588902, - "c3": 7.814188395144188, - "c4": 7.710982632027394, - "c5": 7.769765693683985, - "c6": 8.392389212244273, - "c7": 8.188900820165445 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697644, + "c3": 10.17105871474804, + "c4": 8.136846971798436, + "c5": 6.102635228848813, + "c6": 4.068423485899209, + "c7": 2.0342117429496045 }, "rgb": [222, 0, 59] }, @@ -369879,23 +369879,23 @@ "year": 1803, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 15.013508553590466, - "c2": 15.188235501296372, - "c3": -16.451932062550043, - "c4": 15.786541241067457, - "c5": 4.191106873145543, - "c6": -11.026082446567436, - "c7": 9.692230748797119 + "points": { + "c1": 8.014080346014321, + "c2": 9.5913417713836, + "c3": 9.011884810241721, + "c4": -20.4835860657211, + "c5": 6.586246422585592, + "c6": 26.16926798923954, + "c7": -2.408559222825314 }, - "vertexSeeds": { - "c1": 5.707710871907677, - "c2": 5.813521990597894, - "c3": 5.49647938088023, - "c4": 5.720406133190402, - "c5": 5.929739345484419, - "c6": 5.75773455426862, - "c7": 5.443620096073369 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -369906,23 +369906,23 @@ "year": 1803, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -10.876129942094117, - "c2": -6.316842761061466, - "c3": -24.382730957114873, - "c4": -15.573258656275751, - "c5": -16.132412052256818, - "c6": -7.965053445609357, - "c7": -6.871151967551167 + "points": { + "c1": -30.401278758123166, + "c2": 20.37080210885687, + "c3": 24.45766475558772, + "c4": -2.225709476819315, + "c5": -14.422218569705588, + "c6": -24.56033420444755, + "c7": 24.72820023988956 }, - "vertexSeeds": { - "c1": 3.798027695626867, - "c2": 4.225022848251899, - "c3": 4.406011165578324, - "c4": 4.292715392395313, - "c5": 4.33441937948963, - "c6": 3.967590264447181, - "c7": 3.8788637985201135 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843273, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.16366158113731, + "c7": 1.0818307905686575 }, "rgb": [222, 0, 59] }, @@ -369933,23 +369933,23 @@ "year": 1803, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": -11.794427351705774, - "c2": 16.189173943105047, - "c3": -2.1208566017497716, - "c4": 28.81721740738636, - "c5": -2.4247964760094547, - "c6": 21.380191673554563, - "c7": -17.205595951470013 + "points": { + "c1": 3.537032478066344, + "c2": -9.25601943004019, + "c3": 38.89597289884852, + "c4": 14.780410739084488, + "c5": -25.227945629094037, + "c6": 7.73765315539022, + "c7": -19.57337988683648 }, - "vertexSeeds": { - "c1": 4.145994226928809, - "c2": 4.206006104184471, - "c3": 4.238357515856005, - "c4": 4.0136736812722935, - "c5": 4.271491341008263, - "c6": 4.299886622816703, - "c7": 3.972502953629104 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969485, + "c3": 5.154877484974578, + "c4": 4.12390198797966, + "c5": 3.0929264909847425, + "c6": 2.0619509939898246, + "c7": 1.0309754969949176 }, "rgb": [58, 15, 49] }, @@ -369960,23 +369960,23 @@ "year": 1803, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 3.5613993688786785, - "c2": 13.719258775307413, - "c3": 25.784177329705823, - "c4": 28.35000134946667, - "c5": -28.824423347763577, - "c6": 17.048430343736886, - "c7": -25.02716559825205 + "points": { + "c1": 30.0483625006686, + "c2": -20.417734780719993, + "c3": 29.202845934899205, + "c4": 30.613116184977255, + "c5": -7.5057215656131895, + "c6": -5.561003718364773, + "c7": 0.10905243228524952 }, - "vertexSeeds": { - "c1": 3.111467377892372, - "c2": 2.9764576272592564, - "c3": 2.9766215417908053, - "c4": 3.100802740704838, - "c5": 3.0616467964433176, - "c6": 3.069818029853526, - "c7": 3.031416700778376 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515953, + "c3": 3.744798890429964, + "c4": 2.9958391123439747, + "c5": 2.2468793342579674, + "c6": 1.497919556171978, + "c7": 0.748959778085989 }, "rgb": [77, 76, 132] }, @@ -369987,23 +369987,23 @@ "year": 1803, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -12.42440757370008, - "c2": 14.625881990363855, - "c3": -0.031463739911650634, - "c4": 24.49705977949468, - "c5": -15.289521447286774, - "c6": 13.258207486469505, - "c7": 16.82531958862619 + "points": { + "c1": 30.694161830115547, + "c2": 17.601608527878952, + "c3": 26.18667805014465, + "c4": -20.162673949914556, + "c5": 23.46821100590256, + "c6": -22.226262469373662, + "c7": -20.937825858051397 }, - "vertexSeeds": { - "c1": 3.9768973543327766, - "c2": 4.05483587854449, - "c3": 4.089854105769939, - "c4": 3.9947277615420664, - "c5": 4.057304851641881, - "c6": 4.242747379466778, - "c7": 4.08269854149212 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [238, 201, 159] }, @@ -370014,23 +370014,23 @@ "year": 1803, "resistanceReported": false, "duration": 7084800, - "curveSeeds": { - "c1": 2.9152326092582186, - "c2": -9.073241123495713, - "c3": 15.212135988669129, - "c4": 15.55313064881317, - "c5": -9.442381771908288, - "c6": 2.940075984121652, - "c7": 5.142100298036649 + "points": { + "c1": -17.61227168811501, + "c2": -4.695985448032458, + "c3": 17.160640014923697, + "c4": 13.463904856206337, + "c5": -9.510945570848778, + "c6": -8.924502875409734, + "c7": -3.381941851504461 }, - "vertexSeeds": { - "c1": 3.7360894647149436, - "c2": 4.013430176418203, - "c3": 3.854851304361851, - "c4": 3.6867018621338303, - "c5": 3.826823580845896, - "c6": 3.7619148937965186, - "c7": 4.000750128313353 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366155, + "c3": 4.8081368469718, + "c4": 3.846509477577437, + "c5": 2.8848821081830818, + "c6": 1.9232547387887184, + "c7": 0.9616273693943637 }, "rgb": [86, 146, 138] }, @@ -370041,23 +370041,23 @@ "year": 1803, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -14.942886901296742, - "c2": -19.747271117586376, - "c3": 19.270935489262985, - "c4": 14.34575839939657, - "c5": -26.305867933129107, - "c6": -21.503584304198174, - "c7": 15.792313744824103 + "points": { + "c1": 14.738426969360656, + "c2": -14.179470723232711, + "c3": -8.967409941734676, + "c4": 20.116280268446875, + "c5": -20.282603327053003, + "c6": 0.2890913581177905, + "c7": 20.180470169423128 }, - "vertexSeeds": { - "c1": 3.9226124553267443, - "c2": 3.9381524669682624, - "c3": 3.7322200673880124, - "c4": 3.9797641869421065, - "c5": 3.876724200856272, - "c6": 3.825627115838453, - "c7": 3.7661202495367214 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406376, + "c3": 4.831252889505318, + "c4": 3.8650023116042505, + "c5": 2.898751733703193, + "c6": 1.9325011558021252, + "c7": 0.9662505779010573 }, "rgb": [86, 146, 138] }, @@ -370068,23 +370068,23 @@ "year": 1803, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -28.045648757263674, - "c2": 25.887474291338194, - "c3": -2.775488854921946, - "c4": 26.06404460021144, - "c5": -28.86381226701878, - "c6": -22.318982662549317, - "c7": 25.260405282522463 + "points": { + "c1": -7.554287411433254, + "c2": 5.735480920005571, + "c3": 1.9882593063831067, + "c4": -0.5873228729762943, + "c5": -0.25654594038667966, + "c6": -1.2428976638872555, + "c7": -2.1560525125410948 }, - "vertexSeeds": { - "c1": 6.483791818261159, - "c2": 6.448805851856003, - "c3": 6.488903625576416, - "c4": 6.330565655435547, - "c5": 6.641666917754996, - "c6": 6.797254042780138, - "c7": 6.790545748599969 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.847434119278782, + "c3": 8.206195099398993, + "c4": 6.564956079519183, + "c5": 4.923717059639391, + "c6": 3.2824780397596003, + "c7": 1.6412390198797913 }, "rgb": [238, 201, 159] }, @@ -370095,23 +370095,23 @@ "year": 1803, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 12.16176734460884, - "c2": -19.15390060527028, - "c3": 37.97067448859934, - "c4": -5.121552396792978, - "c5": 5.475765635086951, - "c6": 17.865035925931423, - "c7": 28.295245942632192 + "points": { + "c1": -24.50220974683905, + "c2": -46.544924928230884, + "c3": 16.746487922250125, + "c4": 9.162864284657353, + "c5": -30.413263087418162, + "c6": -40.182509433032145, + "c7": -7.381293008328562 }, - "vertexSeeds": { - "c1": 4.915598095880799, - "c2": 4.929253839802667, - "c3": 4.641127338302858, - "c4": 4.762988344273939, - "c5": 4.85896761270352, - "c6": 4.591211160624243, - "c7": 4.886505308090068 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457695, + "c3": 6.010171058714752, + "c4": 4.8081368469718, + "c5": 3.6061026352288477, + "c6": 2.4040684234858953, + "c7": 1.2020342117429523 }, "rgb": [238, 201, 159] }, @@ -370122,23 +370122,23 @@ "year": 1803, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -4.448031596468173, - "c2": -0.043457568442498484, - "c3": 16.037271062241874, - "c4": -5.583338809626369, - "c5": 0.02544329982553606, - "c6": 14.482519535502103, - "c7": 16.72655533184488 + "points": { + "c1": -0.571929673959346, + "c2": 11.36045259258341, + "c3": 21.927244294540603, + "c4": -10.008529411509418, + "c5": 13.264323570262729, + "c6": -8.049013615463789, + "c7": 16.919666054940944 }, - "vertexSeeds": { - "c1": 3.608346337966981, - "c2": 3.517426694156578, - "c3": 3.673918191142676, - "c4": 3.6562012917386766, - "c5": 3.856123788048806, - "c6": 3.802417224758049, - "c7": 3.5403450175721476 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084604, + "c3": 4.6463245492371685, + "c4": 3.717059639389733, + "c5": 2.7877947295422976, + "c6": 1.8585298196948712, + "c7": 0.9292649098474263 }, "rgb": [58, 15, 49] }, @@ -370149,23 +370149,23 @@ "year": 1804, "resistanceReported": false, "duration": 46396800, - "curveSeeds": { - "c1": -31.288418081981405, - "c2": 42.139300988354194, - "c3": 52.29177845886305, - "c4": 19.518741377274864, - "c5": -60.36180208672846, - "c6": -55.085478154673396, - "c7": 46.31027525157741 + "points": { + "c1": 61.560789716613215, + "c2": 51.56265928316512, + "c3": -6.606954479447829, + "c4": -6.900558174339878, + "c5": -4.89933924262516, + "c6": -27.638075103670047, + "c7": -52.47328890340025 }, - "vertexSeeds": { - "c1": 1.8489335970272116, - "c2": 1.905260146218094, - "c3": 1.8621727869166897, - "c4": 1.9161847780646764, - "c5": 1.868363877601647, - "c6": 1.8849718340049413, - "c7": 1.8959940292389446 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022193, + "c3": 2.3116042533518293, + "c4": 1.8492834026814657, + "c5": 1.3869625520110906, + "c6": 0.9246417013407271, + "c7": 0.46232085067036355 }, "rgb": [86, 146, 138] }, @@ -370176,23 +370176,23 @@ "year": 1803, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -10.310391714789086, - "c2": -24.578922620376016, - "c3": 14.668500977869346, - "c4": -17.916723431372034, - "c5": -17.14522528565009, - "c6": 18.75764514055957, - "c7": 18.25760792951795 + "points": { + "c1": 19.051358253528758, + "c2": -2.432407585239549, + "c3": 23.68334103028548, + "c4": 14.421040064170644, + "c5": -24.900870873704353, + "c6": 3.1926747275542624, + "c7": -16.343830725354152 }, - "vertexSeeds": { - "c1": 5.118511445563984, - "c2": 5.080941441812477, - "c3": 5.136404063625551, - "c4": 5.012224663918684, - "c5": 4.919998326506754, - "c6": 5.219647661932383, - "c7": 5.204941466168829 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -370203,23 +370203,23 @@ "year": 1803, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -28.06296524312648, - "c2": 20.383516702738632, - "c3": -37.70652527126696, - "c4": -30.465937754483324, - "c5": 16.19258300701629, - "c6": -39.75163831754008, - "c7": -37.33274142785732 + "points": { + "c1": 19.630242186650108, + "c2": 45.768468832706546, + "c3": 4.068510787303303, + "c4": 6.623498419647198, + "c5": 44.68009436894468, + "c6": 38.882066506476505, + "c7": 25.11294274660881 }, - "vertexSeeds": { - "c1": 4.533136407887407, - "c2": 4.614871321645563, - "c3": 4.465065375488653, - "c4": 4.737893626560245, - "c5": 4.509332377442919, - "c6": 4.692799493751718, - "c7": 4.302850112264616 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [86, 146, 138] }, @@ -370230,23 +370230,23 @@ "year": 1803, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -12.271207846854846, - "c2": 9.6822240827982, - "c3": -26.648310435061624, - "c4": -7.260382193214372, - "c5": -17.62244004854504, - "c6": -14.467059504331143, - "c7": -9.352989665076318 + "points": { + "c1": -6.893189824961475, + "c2": -24.889700539288906, + "c3": -2.9876664200429026, + "c4": 21.667788510619154, + "c5": -16.391917835074157, + "c6": 9.110140607364421, + "c7": -4.247473568124416 }, - "vertexSeeds": { - "c1": 4.706293210592386, - "c2": 5.199964633442271, - "c3": 5.078792787060975, - "c4": 4.849505862959105, - "c5": 4.828704464435081, - "c6": 4.803251179277287, - "c7": 5.111912048359172 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859925, + "c3": 6.241331484049928, + "c4": 4.99306518723995, + "c5": 3.7447988904299625, + "c6": 2.496532593619975, + "c7": 1.2482662968099876 }, "rgb": [86, 146, 138] }, @@ -370257,23 +370257,23 @@ "year": 1803, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -13.55312163909063, - "c2": -21.257734746502003, - "c3": 28.73823021127265, - "c4": 32.928246228830304, - "c5": 10.887038028017756, - "c6": -25.63647207443093, - "c7": -17.622346574551415 + "points": { + "c1": -15.71342104301031, + "c2": 24.654997285904436, + "c3": -5.935266757931249, + "c4": 2.1913877681117313, + "c5": 30.43989699676922, + "c6": -11.332110465321172, + "c7": 31.821296423861526 }, - "vertexSeeds": { - "c1": 5.970551355035393, - "c2": 5.994225220634435, - "c3": 5.821267085342772, - "c4": 5.813162850349761, - "c5": 5.663317841164432, - "c6": 5.721581002880739, - "c7": 5.486621528540079 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -370284,23 +370284,23 @@ "year": 1803, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 42.7087616747282, - "c2": -18.68080609921168, - "c3": -6.09840898339796, - "c4": -16.747186346099348, - "c5": 37.60076072107503, - "c6": 28.50495219045964, - "c7": 43.63064092956993 + "points": { + "c1": -38.77179594691147, + "c2": -1.5174464175013895, + "c3": 14.664727584654926, + "c4": 40.11470801199355, + "c5": 11.555785687166953, + "c6": -39.48852356142915, + "c7": 7.48522152040951 }, - "vertexSeeds": { - "c1": 3.400008582296501, - "c2": 3.310469129381446, - "c3": 3.2099008237226716, - "c4": 3.1951669726300733, - "c5": 3.1994648956092453, - "c6": 3.219655920138055, - "c7": 3.397158634208424 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199724, + "c3": 4.137771613499772, + "c4": 3.31021729079982, + "c5": 2.4826629680998673, + "c6": 1.6551086453999044, + "c7": 0.8275543226999522 }, "rgb": [86, 146, 138] }, @@ -370311,23 +370311,23 @@ "year": 1803, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 9.258202938592532, - "c2": 10.52826218450739, - "c3": -11.565549322207165, - "c4": -2.98207482832634, - "c5": -1.2851419635429515, - "c6": 12.962859975086744, - "c7": -5.4664686266175195 + "points": { + "c1": 1.266024595538621, + "c2": 9.67947822558746, + "c3": 16.02539158500202, + "c4": 5.2601994485027745, + "c5": 1.9159953731907855, + "c6": -6.844427316816724, + "c7": 18.477220342206707 }, - "vertexSeeds": { - "c1": 4.61166959819219, - "c2": 4.704701240035434, - "c3": 4.624053411522538, - "c4": 4.59828603296743, - "c5": 4.585488442545139, - "c6": 4.594274878438627, - "c7": 4.583821029621804 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975035, + "c3": 5.732778548312529, + "c4": 4.5862228386500234, + "c5": 3.4396671289875176, + "c6": 2.2931114193250117, + "c7": 1.1465557096625059 }, "rgb": [58, 15, 49] }, @@ -370338,23 +370338,23 @@ "year": 1803, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 11.270384013315049, - "c2": -26.558538130423834, - "c3": 25.289867946459974, - "c4": -14.048917522444416, - "c5": 8.039359786330078, - "c6": 27.23323829078979, - "c7": 9.170999976388568 + "points": { + "c1": -15.164759537959828, + "c2": 26.87738428939284, + "c3": -5.944792571656265, + "c4": 17.68448490822256, + "c5": -13.340859550593251, + "c6": -18.76053389795043, + "c7": -17.574493850919573 }, - "vertexSeeds": { - "c1": 5.413082208985165, - "c2": 5.896037592347326, - "c3": 5.535077282482103, - "c4": 5.863560071539142, - "c5": 5.9169258210524385, - "c6": 5.796262257941865, - "c7": 5.552567024384759 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348136, + "c3": 7.096625057790103, + "c4": 5.67730004623209, + "c5": 4.257975034674058, + "c6": 2.838650023116045, + "c7": 1.4193250115580316 }, "rgb": [238, 201, 159] }, @@ -370365,23 +370365,23 @@ "year": 1803, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 27.78125247384547, - "c2": 13.389260621839995, - "c3": -23.490087718127732, - "c4": 26.812065062122173, - "c5": 5.8292609648965765, - "c6": -21.85677524872384, - "c7": -4.566310741596858 + "points": { + "c1": -2.812704477299029, + "c2": -7.047809632664219, + "c3": 27.403042682843036, + "c4": 0.4406829442017326, + "c5": -30.99878793901555, + "c6": -12.57713880728813, + "c7": -0.6457451930977101 }, - "vertexSeeds": { - "c1": 1.3388209337171848, - "c2": 1.251259456521121, - "c3": 1.2427256428942197, - "c4": 1.4660334560533061, - "c5": 1.535766591942018, - "c6": 1.5482308859899285, - "c7": 1.426096513980461 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.2468793342579754, + "c3": 1.8723994452149797, + "c4": 1.497919556171984, + "c5": 1.1234396671289881, + "c6": 0.7489597780859925, + "c7": 0.3744798890429957 }, "rgb": [222, 0, 59] }, @@ -370392,23 +370392,23 @@ "year": 1803, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -15.577868286326371, - "c2": -39.248437304039854, - "c3": 11.799368528463667, - "c4": -41.459400519547074, - "c5": 6.377874811170578, - "c6": -26.365458973169968, - "c7": -23.468796449907835 + "points": { + "c1": -3.382990898077608, + "c2": -10.117564778025283, + "c3": -7.7542294986478595, + "c4": -8.39844036237448, + "c5": 31.98132005390493, + "c6": -24.85298417054322, + "c7": 22.26133207406844 }, - "vertexSeeds": { - "c1": 1.229929977295564, - "c2": 3.5652401174487167, - "c3": 2.802488960540667, - "c4": 2.525365837475843, - "c5": 3.2263194281649694, - "c6": 3.054401975755448, - "c7": 2.6814820662860517 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481276, + "c3": 4.2995839112343965, + "c4": 3.439667128987518, + "c5": 2.579750346740638, + "c6": 1.719833564493759, + "c7": 0.8599167822468802 }, "rgb": [58, 15, 49] }, @@ -370419,23 +370419,23 @@ "year": 1803, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -20.468870821746982, - "c2": -17.238983576133286, - "c3": -17.421031968902554, - "c4": -6.273699779068224, - "c5": 11.057938827834704, - "c6": -8.242624179276845, - "c7": 6.09664502504242 + "points": { + "c1": 23.989224715215833, + "c2": -22.858042444346765, + "c3": -22.34507469468582, + "c4": 7.346463301684928, + "c5": -24.421948108650312, + "c6": 19.067678108269376, + "c7": -22.815680874583535 }, - "vertexSeeds": { - "c1": 3.4616221927745174, - "c2": 3.268867979266704, - "c3": 3.3378788822077277, - "c4": 3.503061505567325, - "c5": 3.5254532424907286, - "c6": 3.285895488125745, - "c7": 3.487777465406638 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441054, + "c3": 4.276467868700879, + "c4": 3.4211742949607022, + "c5": 2.565880721220527, + "c6": 1.7105871474803511, + "c7": 0.8552935737401756 }, "rgb": [58, 15, 49] }, @@ -370446,23 +370446,23 @@ "year": 1804, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 19.87411335628304, - "c2": 14.065409286889299, - "c3": 5.526618090113651, - "c4": 3.6176981075116146, - "c5": 46.720795510824466, - "c6": 50.4513005201813, - "c7": -23.55027631310008 + "points": { + "c1": -11.65161682277526, + "c2": 46.76840019148674, + "c3": 14.03373776772802, + "c4": 46.027232145772864, + "c5": 19.099173800143994, + "c6": 17.987910373709333, + "c7": 0.005677419154210384 }, - "vertexSeeds": { - "c1": 4.586285390737537, - "c2": 4.285680704310312, - "c3": 4.509099355829054, - "c4": 4.364324916771865, - "c5": 4.241286632743687, - "c6": 4.399421072896565, - "c7": 4.388380544439116 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733707, + "c3": 5.594082293111417, + "c4": 4.475265834489138, + "c5": 3.3564493758668488, + "c6": 2.237632917244569, + "c7": 1.11881645862228 }, "rgb": [58, 15, 49] }, @@ -370473,23 +370473,23 @@ "year": 1803, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 40.99851872360423, - "c2": 14.112889807955519, - "c3": 16.721771844780655, - "c4": -8.361070496561716, - "c5": 30.08225811543972, - "c6": 27.001202801854653, - "c7": 7.480828136233654 + "points": { + "c1": -2.7024213482066273, + "c2": -26.6258011453361, + "c3": 32.36505746486743, + "c4": -32.51314819775938, + "c5": -31.254643391804244, + "c6": -43.8257450999054, + "c7": 26.423319902075 }, - "vertexSeeds": { - "c1": 6.750617122377736, - "c2": 6.885931134203758, - "c3": 6.913820925982444, - "c4": 7.244168096821738, - "c5": 6.73110803471481, - "c6": 6.697478705223143, - "c7": 6.780210327212293 + "offsets": { + "c1": 12.26537216828479, + "c2": 10.5131761442441, + "c3": 8.76098012020343, + "c4": 7.0087840961627395, + "c5": 5.25658807212205, + "c6": 3.504392048081379, + "c7": 1.7521960240406895 }, "rgb": [238, 201, 159] }, @@ -370500,23 +370500,23 @@ "year": 1803, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -22.540029979526366, - "c2": -14.719024948161914, - "c3": -13.850696443658318, - "c4": -10.985751755870826, - "c5": 30.005978575647497, - "c6": 22.268688728004413, - "c7": 22.83543676707375 + "points": { + "c1": 18.860374061519686, + "c2": -2.644422982173232, + "c3": -27.12020783241889, + "c4": -15.736165403833162, + "c5": 31.56993225663718, + "c6": 12.467219296669391, + "c7": 12.186456867514352 }, - "vertexSeeds": { - "c1": 5.1011764857915765, - "c2": 4.909625186319852, - "c3": 5.07362582080258, - "c4": 5.163195591387781, - "c5": 5.264085084306306, - "c6": 5.129376500671662, - "c7": 5.176263680679998 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -370527,23 +370527,23 @@ "year": 1803, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -18.410253772369828, - "c2": -32.18854811328646, - "c3": 32.449082846238525, - "c4": -34.767982767066364, - "c5": -12.21567809932684, - "c6": -37.00678205180073, - "c7": -18.909387568894918 + "points": { + "c1": -39.27041609924042, + "c2": -30.97462354078851, + "c3": 25.422266206689415, + "c4": -22.589101487230657, + "c5": 22.700731882080262, + "c6": -16.541084143702403, + "c7": 8.08723660220673 }, - "vertexSeeds": { - "c1": 5.678255372456783, - "c2": 5.8495406338383935, - "c3": 5.474919394102562, - "c4": 5.980041403963858, - "c5": 6.026285376747904, - "c6": 5.859955259228084, - "c7": 6.00805885941055 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.65464632454923, + "c3": 7.2122052704577, + "c4": 5.769764216366153, + "c5": 4.327323162274624, + "c6": 2.8848821081830764, + "c7": 1.4424410540915291 }, "rgb": [222, 0, 59] }, @@ -370554,23 +370554,23 @@ "year": 1803, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -14.037689984091607, - "c2": -5.715244205397042, - "c3": 3.9015404785857584, - "c4": 5.133244032946386, - "c5": 17.448077886607777, - "c6": 14.784197357500176, - "c7": 7.525334250003986 + "points": { + "c1": -26.84776955795722, + "c2": 11.899420976749376, + "c3": 22.814586315204423, + "c4": 25.436187229590153, + "c5": -6.4536704582089115, + "c6": -11.995607023884101, + "c7": 17.940235233299596 }, - "vertexSeeds": { - "c1": 2.152248939371748, - "c2": 2.017784402832164, - "c3": 2.141860022006834, - "c4": 2.1214028609090008, - "c5": 2.161202041963955, - "c6": 1.9883748910327501, - "c7": 2.139190239612846 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.2454923717059634, + "c3": 2.704576976421636, + "c4": 2.1636615811373114, + "c5": 1.6227461858529835, + "c6": 1.0818307905686557, + "c7": 0.5409153952843279 }, "rgb": [238, 201, 159] }, @@ -370581,23 +370581,23 @@ "year": 1803, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 14.930378495721243, - "c2": -28.643010507194475, - "c3": -11.801273576064819, - "c4": -17.10993116225705, - "c5": -13.379213529390018, - "c6": -29.830916912673363, - "c7": -6.718418724915274 + "points": { + "c1": 3.0270710560613594, + "c2": 23.862378733807304, + "c3": -35.258851944374946, + "c4": 29.644251930752375, + "c5": 29.437333028951898, + "c6": -36.286140597459614, + "c7": 23.143994472217024 }, - "vertexSeeds": { - "c1": 8.312242695570754, - "c2": 7.749871592573894, - "c3": 7.883929327250997, - "c4": 8.504044595457758, - "c5": 7.711070946767664, - "c6": 7.677354223410157, - "c7": 8.115231919015471 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697644, + "c3": 10.17105871474804, + "c4": 8.136846971798436, + "c5": 6.102635228848813, + "c6": 4.068423485899209, + "c7": 2.0342117429496045 }, "rgb": [86, 146, 138] }, @@ -370608,23 +370608,23 @@ "year": 1805, "resistanceReported": false, "duration": 68515200, - "curveSeeds": { - "c1": 26.05402742768905, - "c2": 13.880295482619047, - "c3": -40.84807281167922, - "c4": 10.276201736697388, - "c5": -45.96722539057792, - "c6": -65.02846949738945, - "c7": 54.80267732526812 + "points": { + "c1": -8.351190224875168, + "c2": 48.17022142771145, + "c3": 22.79669846455313, + "c4": -22.05353802419897, + "c5": -74.22925036660574, + "c6": 22.764064483973826, + "c7": -64.79473567513561 }, - "vertexSeeds": { - "c1": 5.827680362092798, - "c2": 5.821609887431039, - "c3": 5.847325107970921, - "c4": 5.875926067047926, - "c5": 5.800872048959162, - "c6": 5.756704758944147, - "c7": 5.907796831691834 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307891, + "c3": 7.073509015256613, + "c4": 5.6588072122052795, + "c5": 4.244105409153946, + "c6": 2.8294036061026113, + "c7": 1.4147018030513339 }, "rgb": [222, 0, 59] }, @@ -370635,23 +370635,23 @@ "year": 1804, "resistanceReported": false, "duration": 35856000, - "curveSeeds": { - "c1": 19.33347512276515, - "c2": -35.4516657097578, - "c3": 46.279784489064625, - "c4": -14.543111750922506, - "c5": -23.596800984690788, - "c6": -40.136358036180624, - "c7": 48.079611709556914 + "points": { + "c1": 35.47563993986854, + "c2": -22.649006879880385, + "c3": -47.77767620506401, + "c4": 38.241186281376315, + "c5": -1.3901622895822072, + "c6": -24.56570153553268, + "c7": 51.17939139770907 }, - "vertexSeeds": { - "c1": 4.758668774856175, - "c2": 4.697748101111405, - "c3": 4.708872715839087, - "c4": 4.559382372392936, - "c5": 4.47704339332355, - "c6": 4.559278898174756, - "c7": 4.770343813589753 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.07350901525659, + "c3": 5.89459084604716, + "c4": 4.71567267683773, + "c5": 3.5367545076282996, + "c6": 2.3578363384188603, + "c7": 1.1789181692094393 }, "rgb": [86, 146, 138] }, @@ -370662,23 +370662,23 @@ "year": 1803, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 5.14168919426168, - "c2": -29.194314029237876, - "c3": 5.892775208780613, - "c4": -31.089151017921182, - "c5": -32.796445141001875, - "c6": -1.7457879768585371, - "c7": -22.191422056257473 + "points": { + "c1": 22.015798217908078, + "c2": 28.685823911922384, + "c3": -24.93174172247187, + "c4": -8.448757957005782, + "c5": 12.04259226905954, + "c6": -29.558653080423255, + "c7": -33.329711100820006 }, - "vertexSeeds": { - "c1": 5.463814615535047, - "c2": 5.999816534064701, - "c3": 5.756559095321582, - "c4": 5.405230343191808, - "c5": 5.47199384254915, - "c6": 5.9697150325326875, - "c7": 5.979393247112155 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -370689,23 +370689,23 @@ "year": 1803, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -5.531022731567649, - "c2": 17.96137206322905, - "c3": 18.15506929399895, - "c4": -17.28041060244727, - "c5": -14.512280036792175, - "c6": -12.617552466210563, - "c7": 0.516768853903514 + "points": { + "c1": 21.762917379046428, + "c2": 14.408479103627549, + "c3": -17.05587064626355, + "c4": 15.926388069616273, + "c5": 3.6831899551487908, + "c6": 7.309321000915773, + "c7": -5.309414686125802 }, - "vertexSeeds": { - "c1": 5.140681590839096, - "c2": 4.991820520131123, - "c3": 5.232097510882745, - "c4": 5.097715173021427, - "c5": 5.088151382555338, - "c6": 5.2055982035580195, - "c7": 5.000253117690606 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -370716,23 +370716,23 @@ "year": 1803, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 9.480206566549569, - "c2": -28.35572762933599, - "c3": -7.623645901184538, - "c4": 3.3592598467740657, - "c5": -26.60109714338558, - "c6": 8.836859896093017, - "c7": -3.5749546987905134 + "points": { + "c1": -29.327588842642065, + "c2": -29.646715113062463, + "c3": 13.535792165964956, + "c4": 7.290555744773954, + "c5": 18.240179521742576, + "c6": -28.921096384460803, + "c7": -25.36572422626925 }, - "vertexSeeds": { - "c1": 2.9200982224664886, - "c2": 2.9178105506078937, - "c3": 2.980063354147511, - "c4": 2.840670212634169, - "c5": 2.8030544751058306, - "c6": 2.7981213824245668, - "c7": 2.843559355461174 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355061, + "c3": 3.6523347202958822, + "c4": 2.921867776236715, + "c5": 2.191400832177536, + "c6": 1.4609338881183576, + "c7": 0.7304669440591788 }, "rgb": [222, 0, 59] }, @@ -370743,23 +370743,23 @@ "year": 1803, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -11.097977201763968, - "c2": 22.94593487653671, - "c3": 9.407098925738993, - "c4": 33.04297141092475, - "c5": 4.657384590279534, - "c6": -31.20446849102942, - "c7": 1.1894175963689761 + "points": { + "c1": -24.73419163622938, + "c2": 2.836990610410652, + "c3": 32.062299900067, + "c4": -15.759544846030941, + "c5": 0.009760427479768907, + "c6": 40.36285523108728, + "c7": 27.881442596060637 }, - "vertexSeeds": { - "c1": 5.461930877083416, - "c2": 5.516314983496621, - "c3": 5.154311157556827, - "c4": 5.3946895731513544, - "c5": 5.102477038640868, - "c6": 5.091151671579499, - "c7": 5.4698914779751435 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186773, + "c4": 5.344429033749432, + "c5": 4.008321775312075, + "c6": 2.672214516874716, + "c7": 1.336107258437358 }, "rgb": [222, 0, 59] }, @@ -370770,23 +370770,23 @@ "year": 1803, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -24.77585993983735, - "c2": -35.07977426353336, - "c3": 32.061743459325356, - "c4": -24.44652935963301, - "c5": -2.2249577793165543, - "c6": -0.25802676217379883, - "c7": -6.411002012710291 + "points": { + "c1": -17.130480579088406, + "c2": -18.324342426111077, + "c3": 26.380386914213915, + "c4": -8.10111939217969, + "c5": -12.884189047065806, + "c6": -32.13757297739467, + "c7": -10.623862885783772 }, - "vertexSeeds": { - "c1": 6.7556338852352615, - "c2": 6.856512321892844, - "c3": 6.805949906446247, - "c4": 6.774000859371256, - "c5": 7.063383769688999, - "c6": 7.168276506156982, - "c7": 7.319689103259796 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [58, 15, 49] }, @@ -370797,23 +370797,23 @@ "year": 1803, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -1.9621899263647649, - "c2": 18.86524450055736, - "c3": -38.27557565651486, - "c4": 2.261839880706468, - "c5": -39.473657353547615, - "c6": 35.283630231837265, - "c7": -38.35437949289454 + "points": { + "c1": 31.961118091367368, + "c2": -32.78105298997114, + "c3": 5.291202443637644, + "c4": 3.763119399680214, + "c5": 17.69986235856677, + "c6": -35.51540375625968, + "c7": 39.344605305165075 }, - "vertexSeeds": { - "c1": 4.4523760025689185, - "c2": 4.893457618671587, - "c3": 5.377380115787803, - "c4": 3.8691298918970856, - "c5": 5.831965750975135, - "c6": 5.456713342016987, - "c7": 6.082878753025711 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871016, + "c3": 7.3971336107258425, + "c4": 5.917706888580676, + "c5": 4.438280166435508, + "c6": 2.958853444290338, + "c7": 1.4794267221451678 }, "rgb": [86, 146, 138] }, @@ -370824,23 +370824,23 @@ "year": 1803, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 22.001505902876623, - "c2": -24.06591815492028, - "c3": -15.814186475248016, - "c4": 9.073787993281314, - "c5": 15.075051332449817, - "c6": 20.905304830613865, - "c7": 6.4787702377890355 + "points": { + "c1": -9.344217064681636, + "c2": 1.670782130346474, + "c3": 26.26997952198193, + "c4": -15.226082712199464, + "c5": -31.882931261816065, + "c6": 15.3208309914749, + "c7": 9.727198035409216 }, - "vertexSeeds": { - "c1": 3.44553373852725, - "c2": 3.438985764582676, - "c3": 3.254356205517326, - "c4": 3.4370539473748476, - "c5": 3.540703700252275, - "c6": 3.5554531945435475, - "c7": 3.2021127827381153 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400836, + "c3": 4.253351826167359, + "c4": 3.402681460933891, + "c5": 2.5520110957004225, + "c6": 1.7013407304669455, + "c7": 0.8506703652334772 }, "rgb": [86, 146, 138] }, @@ -370851,23 +370851,23 @@ "year": 1803, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 27.320468247573324, - "c2": -17.241928115520444, - "c3": 9.727219097631796, - "c4": 2.0288191918167335, - "c5": -0.5184604133708461, - "c6": 18.44237654831612, - "c7": 3.2940753799424023 + "points": { + "c1": -14.22541347192577, + "c2": 13.451705364987497, + "c3": -29.546435244925636, + "c4": 17.632501309899553, + "c5": 22.397844319608176, + "c6": -9.718542411602495, + "c7": -17.584143797338946 }, - "vertexSeeds": { - "c1": 6.585753298163454, - "c2": 6.693466977433468, - "c3": 6.107491625354889, - "c4": 6.224999882532448, - "c5": 6.6048988102632205, - "c6": 6.542536193859654, - "c7": 6.322740625152461 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [222, 0, 59] }, @@ -370878,23 +370878,23 @@ "year": 1804, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 17.757926279015074, - "c2": 42.86089173295451, - "c3": 14.284858405203053, - "c4": 22.04552857462304, - "c5": 27.08409038071887, - "c6": 40.56206240193192, - "c7": 0.2048335740886884 + "points": { + "c1": 12.870438444617598, + "c2": -16.123064058173533, + "c3": 20.195459950955843, + "c4": -21.746854204118677, + "c5": -0.5183980318365116, + "c6": 45.794995068380366, + "c7": 20.172333421646762 }, - "vertexSeeds": { - "c1": 4.121268687435982, - "c2": 4.115765092355675, - "c3": 4.119425175660384, - "c4": 3.7384135934698017, - "c5": 3.826654304621613, - "c6": 4.0729220486074675, - "c7": 3.726752948868574 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.9361997226074905, + "c3": 4.94683310217291, + "c4": 3.95746648173833, + "c5": 2.968099861303741, + "c6": 1.9787332408691607, + "c7": 0.9893666204345803 }, "rgb": [58, 15, 49] }, @@ -370905,23 +370905,23 @@ "year": 1803, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -18.268510717118588, - "c2": -13.4563226502421, - "c3": 12.534295344599261, - "c4": -5.930630305693814, - "c5": 20.691775685152077, - "c6": 21.030031923024143, - "c7": -12.739586085176946 + "points": { + "c1": -3.3017315323956247, + "c2": 1.6885404498023249, + "c3": -18.550334019097736, + "c4": -28.45509094873008, + "c5": -13.278991728474146, + "c6": -19.99808643430071, + "c7": -21.97291644726754 }, - "vertexSeeds": { - "c1": 2.6390074145384657, - "c2": 2.966650780162275, - "c3": 2.7489397220374263, - "c4": 2.7511964449927206, - "c5": 2.976419823661688, - "c6": 2.9631539343219373, - "c7": 2.9394877009376836 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274617, + "c3": 3.606102635228851, + "c4": 2.8848821081830796, + "c5": 2.1636615811373083, + "c6": 1.4424410540915362, + "c7": 0.7212205270457718 }, "rgb": [222, 0, 59] }, @@ -370932,23 +370932,23 @@ "year": 1803, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -27.120464656327794, - "c2": -8.133462911816963, - "c3": -18.419913536799477, - "c4": 8.50120439518589, - "c5": 3.510507745065624, - "c6": -27.60020491668364, - "c7": 1.7303495201655181 + "points": { + "c1": 28.573590572167046, + "c2": 9.839574161036257, + "c3": -21.36991415171677, + "c4": -11.749715072731618, + "c5": -2.294439275116492, + "c6": -27.75956422299464, + "c7": 16.025968145438153 }, - "vertexSeeds": { - "c1": 4.142495879371284, - "c2": 4.219063693327053, - "c3": 4.248132962504222, - "c4": 4.076023014048095, - "c5": 4.118944392446624, - "c6": 4.076299159994497, - "c7": 4.128257701276355 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848822, + "c3": 5.08552935737402, + "c4": 4.068423485899218, + "c5": 3.0513176144244065, + "c6": 2.0342117429496045, + "c7": 1.0171058714748022 }, "rgb": [77, 76, 132] }, @@ -370959,23 +370959,23 @@ "year": 1803, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 10.096566468398372, - "c2": -1.4078491197989074, - "c3": -15.377745886564831, - "c4": 11.130266609523183, - "c5": 20.211501719897946, - "c6": -18.407415220185996, - "c7": 23.73339141384526 + "points": { + "c1": 14.748998507838678, + "c2": -3.2105789930440913, + "c3": 15.037384465841846, + "c4": -4.731292749257207, + "c5": 18.987338006553202, + "c6": 22.72192433223237, + "c7": 26.610516825899992 }, - "vertexSeeds": { - "c1": 5.984330046447133, - "c2": 5.747188604090167, - "c3": 5.718251803964874, - "c4": 5.540096514224695, - "c5": 5.704557532835614, - "c6": 5.953557435965059, - "c7": 5.846189737607058 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -370986,23 +370986,23 @@ "year": 1803, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -33.67436699738232, - "c2": -8.861675203633734, - "c3": 13.563428253534106, - "c4": -1.856891168620848, - "c5": -5.625086411566961, - "c6": 7.324515846014577, - "c7": -36.10108849960782 + "points": { + "c1": -31.008514723820483, + "c2": 7.065251983245446, + "c3": 3.9846393034429823, + "c4": 16.195413561734156, + "c5": 32.17984866537762, + "c6": -8.457231953938543, + "c7": -5.538197458336626 }, - "vertexSeeds": { - "c1": 5.016542584434929, - "c2": 5.205383145683459, - "c3": 4.737397283170549, - "c4": 4.928479892553638, - "c5": 4.993174799015409, - "c6": 5.005372475350598, - "c7": 4.739446955480244 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859925, + "c3": 6.241331484049928, + "c4": 4.99306518723995, + "c5": 3.7447988904299625, + "c6": 2.496532593619975, + "c7": 1.2482662968099876 }, "rgb": [77, 76, 132] }, @@ -371013,23 +371013,23 @@ "year": 1803, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -1.482747594894633, - "c2": 6.6146333733341685, - "c3": -12.858166167992419, - "c4": 25.731513055283973, - "c5": -3.297523395060601, - "c6": -15.752903094005243, - "c7": -7.079139568034833 + "points": { + "c1": 19.411004409762395, + "c2": -5.2214385533493655, + "c3": 10.978793425081282, + "c4": 15.08550227830047, + "c5": -21.590403539248175, + "c6": -19.71696221516081, + "c7": -21.992168493006293 }, - "vertexSeeds": { - "c1": 5.747007871773878, - "c2": 5.683576039274953, - "c3": 5.2856806472960365, - "c4": 5.550034665956549, - "c5": 5.633670002869428, - "c6": 5.252709183130361, - "c7": 5.177612307349563 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945912, + "c3": 6.8654646324549295, + "c4": 5.492371705963947, + "c5": 4.119278779472946, + "c6": 2.7461858529819647, + "c7": 1.3730929264909824 }, "rgb": [238, 201, 159] }, @@ -371040,23 +371040,23 @@ "year": 1803, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -6.224591775544017, - "c2": 2.1649481427336177, - "c3": -13.951959583686634, - "c4": 11.006633374162352, - "c5": 26.09792502998855, - "c6": -9.61960908582304, - "c7": 14.646394058708001 + "points": { + "c1": 27.10436119488506, + "c2": 1.1987894925055116, + "c3": -12.965279656974246, + "c4": -23.506146790226218, + "c5": 25.018693548371665, + "c6": 16.683061413994494, + "c7": -32.299883471878516 }, - "vertexSeeds": { - "c1": 4.965035166873232, - "c2": 4.933465105613952, - "c3": 4.772497167548648, - "c4": 4.900019029785368, - "c5": 4.963473962674832, - "c6": 4.959920531082382, - "c7": 4.786377911186012 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658813, + "c3": 6.125751271382332, + "c4": 4.90060101710587, + "c5": 3.6754507628294064, + "c6": 2.450300508552935, + "c7": 1.2251502542764627 }, "rgb": [77, 76, 132] }, @@ -371067,23 +371067,23 @@ "year": 1803, "resistanceReported": true, "duration": 10195200, - "curveSeeds": { - "c1": -5.785221943903217, - "c2": -15.26577592659076, - "c3": 4.190731797193163, - "c4": -16.36506840134324, - "c5": -0.6828584429576701, - "c6": -13.558393853245658, - "c7": -4.13548760371404 + "points": { + "c1": 13.23554577914771, + "c2": 19.723276380251658, + "c3": -11.901035992666843, + "c4": -3.1544292106907896, + "c5": 14.262780790702447, + "c6": -16.837227201892514, + "c7": -22.03432008695585 }, - "vertexSeeds": { - "c1": 2.6544819109035136, - "c2": 2.6418278524048757, - "c3": 2.6539978902169925, - "c4": 2.657677361368177, - "c5": 2.62330352726256, - "c6": 2.6536480573113637, - "c7": 2.653201526882894 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550642, + "c3": 3.190013869625493, + "c4": 2.552011095700407, + "c5": 1.914008321775321, + "c6": 1.2760055478502352, + "c7": 0.6380027739250859 }, "rgb": [58, 15, 49] }, @@ -371094,23 +371094,23 @@ "year": 1803, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -2.7330477491976595, - "c2": 15.900993070885114, - "c3": -19.05203025848564, - "c4": -23.235784639313668, - "c5": 15.624383674423989, - "c6": -29.238187191441106, - "c7": 3.244527261343599 + "points": { + "c1": -23.305764243461944, + "c2": -5.265943467216076, + "c3": 21.620412781133076, + "c4": -19.45200589489331, + "c5": -8.57029729976026, + "c6": 19.403910019383268, + "c7": -7.65511499368689 }, - "vertexSeeds": { - "c1": 5.991735883505206, - "c2": 5.714936639625757, - "c3": 5.874887873476367, - "c4": 5.445475209568914, - "c5": 5.928851202097468, - "c6": 5.7279015927713965, - "c7": 5.671421130207226 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -371121,23 +371121,23 @@ "year": 1803, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -11.949651608527452, - "c2": -0.14452195441527493, - "c3": 0.8486408321956844, - "c4": 6.312610560599566, - "c5": 1.3505777350070751, - "c6": 6.307055280890694, - "c7": 19.846289979766112 + "points": { + "c1": -7.642807274295393, + "c2": 13.66552204685371, + "c3": -1.3475738124492835, + "c4": 27.42083294545514, + "c5": -15.419648401010106, + "c6": -15.58497306141456, + "c7": 15.261707646976404 }, - "vertexSeeds": { - "c1": 3.657256774869598, - "c2": 3.8286561692625094, - "c3": 3.6531371965155603, - "c4": 3.799321664837443, - "c5": 3.8372720214038814, - "c6": 3.642836304909098, - "c7": 3.7318738117802055 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.5201109570041655, + "c3": 4.600092464170133, + "c4": 3.680073971336111, + "c5": 2.7600554785020774, + "c6": 1.8400369856680554, + "c7": 0.9200184928340222 }, "rgb": [238, 201, 159] }, @@ -371148,23 +371148,23 @@ "year": 1803, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 15.208753103227345, - "c2": -18.464776802686828, - "c3": 11.498059561807928, - "c4": 18.468557958921657, - "c5": -19.22847119683798, - "c6": 2.2730750095379157, - "c7": -3.4430974621586685 + "points": { + "c1": -9.096574828498373, + "c2": -14.485339348833149, + "c3": -18.14282959685608, + "c4": -1.5499643047517608, + "c5": -9.19225707152992, + "c6": -4.476047790404802, + "c7": 19.95090399691292 }, - "vertexSeeds": { - "c1": 4.924944257224895, - "c2": 4.740909095166588, - "c3": 4.769389539352811, - "c4": 4.840043021443766, - "c5": 4.859651795375562, - "c6": 4.7277713632507, - "c7": 4.72738533059627 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779475, + "c3": 6.195099398982898, + "c4": 4.956079519186322, + "c5": 3.7170596393897375, + "c6": 2.478039759593152, + "c7": 1.239019879796576 }, "rgb": [222, 0, 59] }, @@ -371175,23 +371175,23 @@ "year": 1803, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 28.280064436901753, - "c2": -21.07620121155576, - "c3": 25.877676431588817, - "c4": -22.683116772743443, - "c5": 5.26571510376629, - "c6": -2.7723924113222687, - "c7": -20.39224138188696 + "points": { + "c1": 17.519750897593084, + "c2": -29.606527819175, + "c3": 12.203291016847487, + "c4": -27.348113798818023, + "c5": 7.81996073837302, + "c6": 29.79975966009642, + "c7": -12.889656686302697 }, - "vertexSeeds": { - "c1": 5.604163585759333, - "c2": 5.610758093610804, - "c3": 5.792092821213384, - "c4": 5.658215343893099, - "c5": 5.54740033071668, - "c6": 5.419773770970079, - "c7": 5.779189453686616 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348136, + "c3": 7.096625057790103, + "c4": 5.67730004623209, + "c5": 4.257975034674058, + "c6": 2.838650023116045, + "c7": 1.4193250115580316 }, "rgb": [238, 201, 159] }, @@ -371202,23 +371202,23 @@ "year": 1803, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 9.161071119378576, - "c2": -29.874767668279187, - "c3": 31.705043268091266, - "c4": -25.122151190109804, - "c5": 2.9468794880548685, - "c6": -16.80479804281711, - "c7": 11.163719234144303 + "points": { + "c1": -21.770515720108524, + "c2": -9.16528741065773, + "c3": -5.846182852809928, + "c4": -20.240383462974957, + "c5": -1.8058864524100215, + "c6": 0.17268493481401492, + "c7": 26.722627267591903 }, - "vertexSeeds": { - "c1": 7.252238200907803, - "c2": 7.246948032481708, - "c3": 6.912712119232389, - "c4": 7.012373013553215, - "c5": 6.67251519407228, - "c6": 7.270572973153452, - "c7": 7.231789398808716 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203886, + "c3": 8.737864077669908, + "c4": 6.99029126213593, + "c5": 5.242718446601934, + "c6": 3.495145631067956, + "c7": 1.747572815533978 }, "rgb": [222, 0, 59] }, @@ -371229,23 +371229,23 @@ "year": 1803, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 9.397154867562882, - "c2": -12.544955391562599, - "c3": 12.19634344008611, - "c4": 7.222863780708444, - "c5": -8.135106141640161, - "c6": -22.654052466453393, - "c7": -4.788125165231843 + "points": { + "c1": 20.001110607022255, + "c2": 19.918834648767543, + "c3": 18.639771176613884, + "c4": 23.335494165114625, + "c5": -12.335271636332958, + "c6": 13.250671762550823, + "c7": -22.44913538164908 }, - "vertexSeeds": { - "c1": 3.817209560077187, - "c2": 4.0795711836258155, - "c3": 4.103124102715, - "c4": 4.070234524264174, - "c5": 3.777139207532846, - "c6": 4.118832517518021, - "c7": 3.805667280541715 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.01941747572815, + "c3": 5.016181229773461, + "c4": 4.012944983818773, + "c5": 3.009708737864075, + "c6": 2.0064724919093773, + "c7": 1.0032362459546886 }, "rgb": [58, 15, 49] }, @@ -371256,23 +371256,23 @@ "year": 1803, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -0.16172912374064197, - "c2": -24.975421872759252, - "c3": 11.622669494902759, - "c4": -26.29299301596556, - "c5": 2.9370690590070048, - "c6": 10.693142174213449, - "c7": -10.56855607305188 + "points": { + "c1": 11.20909618605205, + "c2": -10.934035742236524, + "c3": -14.489853380479182, + "c4": 4.141223001865711, + "c5": 21.5871392611232, + "c6": 26.105578987015036, + "c7": -10.036711191358616 }, - "vertexSeeds": { - "c1": 5.789259849200659, - "c2": 5.979654412341484, - "c3": 5.990244466114991, - "c4": 5.593196884410432, - "c5": 5.91340800309311, - "c6": 5.885159335628163, - "c7": 5.990895527505308 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -371283,23 +371283,23 @@ "year": 1803, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -29.647860822662146, - "c2": 6.440223916405465, - "c3": 28.782014878104086, - "c4": -14.157751568277853, - "c5": 29.040000638659897, - "c6": 3.834282636797518, - "c7": -10.121921143614333 + "points": { + "c1": -14.974021805485226, + "c2": -19.633608872179778, + "c3": 27.499978566026257, + "c4": 30.017822466243523, + "c5": -31.162821162114497, + "c6": 21.422168144359816, + "c7": 13.52474811859971 }, - "vertexSeeds": { - "c1": 4.684316818945043, - "c2": 4.796161971111014, - "c3": 4.734210225821466, - "c4": 4.684628179219814, - "c5": 4.742687239489078, - "c6": 4.768353491701756, - "c7": 4.680947989394746 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975045, + "c3": 5.732778548312526, + "c4": 4.5862228386500306, + "c5": 3.4396671289875114, + "c6": 2.2931114193250153, + "c7": 1.146555709662496 }, "rgb": [77, 76, 132] }, @@ -371310,23 +371310,23 @@ "year": 1803, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -2.444037352658736, - "c2": 6.226134058115882, - "c3": -24.695772129840705, - "c4": -11.167341312670214, - "c5": -17.49082844091709, - "c6": 25.056248420365016, - "c7": -19.093228626739993 + "points": { + "c1": 4.940398484737983, + "c2": 34.6084454040449, + "c3": -14.08113854402427, + "c4": 3.129537971861062, + "c5": 21.20555012687811, + "c6": 18.1319621487699, + "c7": 29.6562322427082 }, - "vertexSeeds": { - "c1": 6.471678289840476, - "c2": 6.462276278993996, - "c3": 6.375498065952136, - "c4": 6.488734782900865, - "c5": 6.6557762279764905, - "c6": 6.400329165138217, - "c7": 6.419838513111178 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [86, 146, 138] }, @@ -371337,23 +371337,23 @@ "year": 1803, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 3.9642661330560216, - "c2": 19.066885531773423, - "c3": -6.213597917042868, - "c4": 21.00505554018101, - "c5": -28.023048353289763, - "c6": 28.807155150186865, - "c7": -16.155312107801073 + "points": { + "c1": 17.842281609976595, + "c2": -4.009790703194234, + "c3": -14.958174169848693, + "c4": -35.39606857926993, + "c5": 14.715369322485763, + "c6": 18.253302403597687, + "c7": 4.494697871873299 }, - "vertexSeeds": { - "c1": 1.6187917222534265, - "c2": 1.60578971120873, - "c3": 1.5593594883399333, - "c4": 1.5406421287884593, - "c5": 1.5379867291004312, - "c6": 1.573479693256041, - "c7": 1.465748222680405 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.357836338418863, + "c3": 1.9648636153490535, + "c4": 1.5718908922792436, + "c5": 1.1789181692094295, + "c6": 0.7859454461396196, + "c7": 0.3929727230698098 }, "rgb": [238, 201, 159] }, @@ -371364,23 +371364,23 @@ "year": 1803, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 18.592858442834626, - "c2": -1.2220799315142301, - "c3": 13.681756868699253, - "c4": -28.910162687807446, - "c5": -24.485939322378304, - "c6": -25.405857779469486, - "c7": 20.402623920983615 + "points": { + "c1": 28.590417732851357, + "c2": -12.363567743025772, + "c3": 31.095572109978782, + "c4": 14.008093334735598, + "c5": 27.59372484030939, + "c6": 6.339667301594865, + "c7": 9.218505975219323 }, - "vertexSeeds": { - "c1": 5.600099101776733, - "c2": 5.483371916294694, - "c3": 5.779019137915055, - "c4": 5.937377610223221, - "c5": 6.012556068741153, - "c6": 5.5301468531757205, - "c7": 6.0017153466486794 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [86, 146, 138] }, @@ -371391,23 +371391,23 @@ "year": 1803, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -24.830832775342337, - "c2": 13.309133710758097, - "c3": -26.898417173309436, - "c4": 24.938580155881, - "c5": -31.392022044915457, - "c6": -14.757263372398839, - "c7": 15.96786017282863 + "points": { + "c1": -27.894463149069132, + "c2": -15.09441130075254, + "c3": 23.62760151706012, + "c4": -5.510555156360322, + "c5": 17.582663139844527, + "c6": -25.852319796964167, + "c7": 26.624764507902142 }, - "vertexSeeds": { - "c1": 5.089109848003226, - "c2": 5.221392189002869, - "c3": 5.239607170568776, - "c4": 5.202767169955208, - "c5": 5.317422290402938, - "c6": 5.515829314834396, - "c7": 5.240400458200425 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664348, + "c3": 6.7036523347202985, + "c4": 5.362921867776231, + "c5": 4.022191400832183, + "c6": 2.6814609338881157, + "c7": 1.3407304669440487 }, "rgb": [222, 0, 59] }, @@ -371418,23 +371418,23 @@ "year": 1803, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -15.758949468830913, - "c2": -20.382210832875558, - "c3": -3.4350021925200274, - "c4": 12.2235769731558, - "c5": 8.613277529098141, - "c6": -4.1393546792241125, - "c7": -1.4059133976866285 + "points": { + "c1": 2.0151064167315695, + "c2": -12.103208005528291, + "c3": -13.203810522173043, + "c4": -27.886956262224714, + "c5": -12.986963945578278, + "c6": -22.661142132626527, + "c7": 28.27779062467893 }, - "vertexSeeds": { - "c1": 2.864176572508898, - "c2": 2.938607745328671, - "c3": 2.758444752308955, - "c4": 2.9237347190100467, - "c5": 2.9900996123283488, - "c6": 2.907555921839495, - "c7": 2.864446360773345 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234396, + "c3": 3.5829865926953275, + "c4": 2.8663892741562598, + "c5": 2.149791955617192, + "c6": 1.4331946370781354, + "c7": 0.7165973185390677 }, "rgb": [238, 201, 159] }, @@ -371445,23 +371445,23 @@ "year": 1803, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -6.029270769449056, - "c2": 28.536575012852246, - "c3": -10.859173377520655, - "c4": 14.31865121603444, - "c5": 1.9574994419403495, - "c6": -10.11323652408484, - "c7": -18.819041627347012 + "points": { + "c1": 10.834351117637283, + "c2": -0.05418972217017881, + "c3": 27.730664202631488, + "c4": -12.686905780988958, + "c5": -31.311936884723675, + "c6": 16.266284578403194, + "c7": -2.396955126898405 }, - "vertexSeeds": { - "c1": 5.494934066126098, - "c2": 5.254134682541284, - "c3": 5.3125477195088475, - "c4": 5.129840481115786, - "c5": 5.377082119222097, - "c6": 5.256124645546718, - "c7": 5.377468043471191 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704577, + "c3": 6.726768377253815, + "c4": 5.381414701803052, + "c5": 4.0360610263522885, + "c6": 2.690707350901526, + "c7": 1.345353675450763 }, "rgb": [238, 201, 159] }, @@ -371472,23 +371472,23 @@ "year": 1803, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -23.529239523322047, - "c2": -13.65471276706489, - "c3": -7.396455712568979, - "c4": 2.5376702714488317, - "c5": 22.397587938256116, - "c6": 34.470357949626845, - "c7": -11.296339596702083 + "points": { + "c1": 5.168534872653758, + "c2": 17.139811229464087, + "c3": -10.034655105382832, + "c4": 34.462432628080464, + "c5": -22.420731261164306, + "c6": -31.971550774890073, + "c7": 15.156852789282695 }, - "vertexSeeds": { - "c1": 6.1507506029485315, - "c2": 6.0584203042381555, - "c3": 6.394452800875273, - "c4": 5.958360391776404, - "c5": 6.475634072870109, - "c6": 6.258665157401481, - "c7": 6.111798882416347 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675459, + "c3": 7.859454461396207, + "c4": 6.287563569116973, + "c5": 4.71567267683772, + "c6": 3.1437817845584863, + "c7": 1.5718908922792523 }, "rgb": [77, 76, 132] }, @@ -371499,23 +371499,23 @@ "year": 1803, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -28.83316777009141, - "c2": -3.318296867096503, - "c3": -22.603000250625662, - "c4": 21.45795230635054, - "c5": 4.12480174621032, - "c6": -11.128683384741702, - "c7": -18.563517795990695 + "points": { + "c1": 32.361254201368084, + "c2": -32.51924832842547, + "c3": 5.324817727999289, + "c4": -29.971018026906446, + "c5": 12.381673342091538, + "c6": 3.7167957905178923, + "c7": -22.663580521822993 }, - "vertexSeeds": { - "c1": 7.331477942355211, - "c2": 6.967962881375839, - "c3": 7.204796116394768, - "c4": 7.402372958393741, - "c5": 6.957437739865136, - "c6": 6.788646908069062, - "c7": 6.882989750582257 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [86, 146, 138] }, @@ -371526,23 +371526,23 @@ "year": 1804, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -24.123000924322447, - "c2": 33.56647393689059, - "c3": -5.83708778884397, - "c4": -19.455453522066758, - "c5": -4.502178965764195, - "c6": -22.916958131027535, - "c7": -10.439399127527416 + "points": { + "c1": 25.302107068388906, + "c2": -3.2018476419672126, + "c3": -0.4684491850896677, + "c4": 16.987196794379756, + "c5": -21.14746850738204, + "c6": -1.3746211683897158, + "c7": 14.062987664174997 }, - "vertexSeeds": { - "c1": 6.6192848637242125, - "c2": 6.93976074782816, - "c3": 5.551840146771159, - "c4": 6.798135266520008, - "c5": 5.86799634795925, - "c6": 5.315548836476395, - "c7": 5.891430241685169 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.31900138696255, + "c3": 8.599167822468797, + "c4": 6.879334257975036, + "c5": 5.159500693481275, + "c6": 3.439667128987521, + "c7": 1.7198335644937606 }, "rgb": [77, 76, 132] }, @@ -371553,23 +371553,23 @@ "year": 1803, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 1.368072053472666, - "c2": 24.842941061041522, - "c3": 1.284622576015522, - "c4": 19.964898567982424, - "c5": 17.190735534623855, - "c6": 9.729488632752535, - "c7": -1.3950898506179783 + "points": { + "c1": 13.53509582823284, + "c2": 13.348793836070008, + "c3": 5.066785674810902, + "c4": -13.035265725375918, + "c5": -5.494364532171044, + "c6": 28.078717516605415, + "c7": 8.965993951338817 }, - "vertexSeeds": { - "c1": 5.9926506439324765, - "c2": 6.13795259916878, - "c3": 6.1946293144382345, - "c4": 5.815546172592618, - "c5": 6.305189642993457, - "c6": 5.71942158782232, - "c7": 5.892041678934302 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112347, + "c3": 7.535829865926957, + "c4": 6.02866389274157, + "c5": 4.521497919556182, + "c6": 3.014331946370776, + "c7": 1.507165973185388 }, "rgb": [58, 15, 49] }, @@ -371580,23 +371580,23 @@ "year": 1803, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -25.999551358272157, - "c2": -3.6389969742372124, - "c3": -17.961114581448566, - "c4": 28.439391457194198, - "c5": 25.87702110352003, - "c6": 20.55933358248761, - "c7": -29.983746787378692 + "points": { + "c1": -5.069154186815865, + "c2": -31.79469194490566, + "c3": -25.185444363977254, + "c4": 20.601116585121396, + "c5": 20.84681664509808, + "c6": -13.85231118589908, + "c7": -11.787695518141135 }, - "vertexSeeds": { - "c1": 3.378772072017377, - "c2": 3.1061589219843375, - "c3": 3.097462644790682, - "c4": 3.085672964303203, - "c5": 3.3345695163007645, - "c6": 3.279885283432653, - "c7": 3.0846636861937644 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119281, + "c3": 4.091539528432729, + "c4": 3.2732316227461844, + "c5": 2.4549237170596405, + "c6": 1.6366158113730878, + "c7": 0.8183079056865439 }, "rgb": [238, 201, 159] }, @@ -371607,23 +371607,23 @@ "year": 1804, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -19.977787656729234, - "c2": -28.625187658710686, - "c3": -7.4579535331099365, - "c4": 30.713701898003308, - "c5": -20.654198591106354, - "c6": 17.62775900086595, - "c7": -7.4385290669669075 + "points": { + "c1": 45.01324729346855, + "c2": 34.10634935257576, + "c3": -7.749989182155055, + "c4": -32.98203819687929, + "c5": -40.510245185523374, + "c6": 11.465495357204624, + "c7": -39.29635773398997 }, - "vertexSeeds": { - "c1": 7.565131080623433, - "c2": 7.205853290071605, - "c3": 7.3037762553435135, - "c4": 7.358820162815852, - "c5": 6.971810505023794, - "c6": 7.1280893241971395, - "c7": 7.568367284918876 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968091, + "c3": 9.177068885806753, + "c4": 7.341655108645395, + "c5": 5.5062413314840555, + "c6": 3.6708275543226976, + "c7": 1.8354137771613395 }, "rgb": [86, 146, 138] }, @@ -371634,23 +371634,23 @@ "year": 1803, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 20.68530341899072, - "c2": 18.641112526921248, - "c3": -13.656183812418462, - "c4": 0.07420121391188061, - "c5": 23.57465329260708, - "c6": -2.5172267299468096, - "c7": 19.78231670703471 + "points": { + "c1": 17.219621111596112, + "c2": 23.60099938618587, + "c3": -1.67420852380625, + "c4": 28.52240716275446, + "c5": 14.001153329092837, + "c6": 30.766562546865877, + "c7": 2.5258381864079666 }, - "vertexSeeds": { - "c1": 2.60757595197197, - "c2": 2.606237234188339, - "c3": 2.693830467553388, - "c4": 2.6033307234771783, - "c5": 2.4874610875071355, - "c6": 2.5480737765640713, - "c7": 2.615714632813365 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631067, + "c3": 3.236245954692554, + "c4": 2.588996763754041, + "c5": 1.9417475728155285, + "c6": 1.2944983818770257, + "c7": 0.6472491909385129 }, "rgb": [238, 201, 159] }, @@ -371661,23 +371661,23 @@ "year": 1803, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 27.45817172169783, - "c2": -14.76448364585629, - "c3": -14.611018414538297, - "c4": -21.372027499387535, - "c5": -23.078864331604255, - "c6": -4.067591257472348, - "c7": 3.7081713617527505 + "points": { + "c1": -19.45954715525018, + "c2": 6.975187497352103, + "c3": -28.711364355604246, + "c4": 15.138176608959377, + "c5": 19.712423002268636, + "c6": 0.6835001821270588, + "c7": 12.169747301274533 }, - "vertexSeeds": { - "c1": 2.993640037027926, - "c2": 3.0997237846337713, - "c3": 3.0292612428856915, - "c4": 3.03517534377562, - "c5": 2.98594050090541, - "c6": 3.0138361763802353, - "c7": 3.0140031473127435 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515952, + "c3": 3.7447988904299616, + "c4": 2.9958391123439716, + "c5": 2.246879334257971, + "c6": 1.4979195561719807, + "c7": 0.7489597780859903 }, "rgb": [86, 146, 138] }, @@ -371688,23 +371688,23 @@ "year": 1804, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 29.780718277914175, - "c2": -9.820782194958692, - "c3": 12.630374145327188, - "c4": -34.176716047123726, - "c5": 11.7066335609165, - "c6": 5.147400269160947, - "c7": 29.349107265388227 + "points": { + "c1": -7.660987058153424, + "c2": 2.694681111824238, + "c3": 8.89438434047512, + "c4": 6.485221347555573, + "c5": -36.35745791673133, + "c6": -5.152826019452164, + "c7": -6.780141870438484 }, - "vertexSeeds": { - "c1": 3.8160620917179466, - "c2": 3.8506722267691122, - "c3": 3.9806720032588507, - "c4": 4.1156615202486675, - "c5": 3.877521630177137, - "c6": 4.029245424625562, - "c7": 3.9708232479792542 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.9361997226074905, + "c3": 4.94683310217291, + "c4": 3.95746648173833, + "c5": 2.968099861303741, + "c6": 1.9787332408691607, + "c7": 0.9893666204345803 }, "rgb": [238, 201, 159] }, @@ -371715,23 +371715,23 @@ "year": 1803, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 21.048728967070918, - "c2": 13.762220005062947, - "c3": 6.899668241520661, - "c4": 11.454127315018876, - "c5": 20.521324077342346, - "c6": -8.175640450273384, - "c7": 17.6324342720017 + "points": { + "c1": 18.564432797523036, + "c2": 18.114881671155732, + "c3": 13.731809683785297, + "c4": 27.539145995658334, + "c5": -16.41918309488164, + "c6": 7.8283916993570095, + "c7": -25.83183888560045 }, - "vertexSeeds": { - "c1": 3.9900876693622824, - "c2": 3.850554417547044, - "c3": 4.031930050325681, - "c4": 3.7059268412902493, - "c5": 3.957844708933816, - "c6": 3.8742877026917024, - "c7": 4.05337812519129 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446601, + "c3": 4.854368932038835, + "c4": 3.8834951456310676, + "c5": 2.9126213592233006, + "c6": 1.9417475728155338, + "c7": 0.9708737864077669 }, "rgb": [77, 76, 132] }, @@ -371742,23 +371742,23 @@ "year": 1804, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 27.13067781281761, - "c2": -26.773447630578996, - "c3": -14.424225873988483, - "c4": -41.76281615630254, - "c5": -4.93231850627825, - "c6": -41.09450578990384, - "c7": 12.413194992353993 + "points": { + "c1": 21.25978931876773, + "c2": 20.25227785167867, + "c3": 32.96696967794189, + "c4": 39.361381439306825, + "c5": -20.03124833323635, + "c6": 39.14957695742527, + "c7": -9.652716577310827 }, - "vertexSeeds": { - "c1": 5.486012193528065, - "c2": 5.3439679027617, - "c3": 5.354757042011695, - "c4": 5.4139190818081016, - "c5": 5.453584475323664, - "c6": 5.472864228089655, - "c7": 5.1131507970392605 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.7267683772538165, + "c4": 5.381414701803046, + "c5": 4.036061026352294, + "c6": 2.690707350901523, + "c7": 1.3453536754507522 }, "rgb": [77, 76, 132] }, @@ -371769,23 +371769,23 @@ "year": 1803, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -12.113949676621466, - "c2": -19.646576890610113, - "c3": -10.881392131536533, - "c4": 4.525745424442739, - "c5": 17.816741418650324, - "c6": 7.418651145680535, - "c7": -3.4100074338515434 + "points": { + "c1": -7.0060496433354515, + "c2": -14.270891433046426, + "c3": 0.9929788012725638, + "c4": 4.286654601504345, + "c5": 29.370520846243537, + "c6": -30.72967739501673, + "c7": 12.605922804408415 }, - "vertexSeeds": { - "c1": 4.71538000056265, - "c2": 4.473307609726172, - "c3": 4.702251372563985, - "c4": 4.275763876596354, - "c5": 4.368703129865724, - "c6": 4.691987147944294, - "c7": 4.404440430308872 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894592, + "c3": 5.686546463245495, + "c4": 4.549237170596398, + "c5": 3.4119278779473006, + "c6": 2.2746185852982035, + "c7": 1.1373092926491062 }, "rgb": [222, 0, 59] }, @@ -371796,23 +371796,23 @@ "year": 1803, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 18.626174861810945, - "c2": -23.5569853669412, - "c3": 23.898188107184232, - "c4": 17.79871831474643, - "c5": 20.95698132207177, - "c6": -17.470001503403893, - "c7": -10.701500393465635 + "points": { + "c1": 26.22322445079537, + "c2": 8.74382963882676, + "c3": -23.794602905874232, + "c4": -9.012608734683212, + "c5": 8.852234707049668, + "c6": -12.905883706102482, + "c7": 11.668916034299983 }, - "vertexSeeds": { - "c1": 5.778075629360867, - "c2": 5.347549030915076, - "c3": 5.8449515868918525, - "c4": 5.591016584297248, - "c5": 5.521251326146607, - "c6": 5.838427880124222, - "c7": 5.862156524639448 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187249, + "c3": 7.00416088765603, + "c4": 5.603328710124832, + "c5": 4.2024965325936146, + "c6": 2.801664355062416, + "c7": 1.400832177531199 }, "rgb": [238, 201, 159] }, @@ -371823,23 +371823,23 @@ "year": 1804, "resistanceReported": false, "duration": 36979200, - "curveSeeds": { - "c1": -20.60188596544404, - "c2": -44.33437624881303, - "c3": 10.629293857037695, - "c4": 23.481867988978735, - "c5": 14.82100032444633, - "c6": 41.17091380250962, - "c7": 17.97820067046017 + "points": { + "c1": 41.72191528675657, + "c2": -22.76920812873109, + "c3": 50.21761843100204, + "c4": 18.7388334369177, + "c5": -26.287170692097924, + "c6": -36.32406332653346, + "c7": -30.136121215259973 }, - "vertexSeeds": { - "c1": 5.073648819614787, - "c2": 5.429452599490675, - "c3": 5.132082878905459, - "c4": 5.1704204242426535, - "c5": 5.047038945422699, - "c6": 5.352350493461338, - "c7": 5.2103811507730216 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503471, + "c3": 6.611188164586214, + "c4": 5.288950531668975, + "c5": 3.9667128987517355, + "c6": 2.6444752658344965, + "c7": 1.3222376329172392 }, "rgb": [86, 146, 138] }, @@ -371850,23 +371850,23 @@ "year": 1804, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 6.295808528833248, - "c2": 19.281102485703876, - "c3": 25.996661289326568, - "c4": -4.984851943579098, - "c5": -7.3639280988665305, - "c6": 18.241646390261877, - "c7": -28.074429261051534 + "points": { + "c1": 32.40633824409685, + "c2": -26.201269381045677, + "c3": -26.534610407244312, + "c4": -31.040031218883804, + "c5": -28.39256888954291, + "c6": -30.885186536060825, + "c7": 32.91604063536763 }, - "vertexSeeds": { - "c1": 5.416666550544518, - "c2": 5.400115979353776, - "c3": 4.879932345846759, - "c4": 5.288790021008107, - "c5": 5.183745756239723, - "c6": 5.3272967519617795, - "c7": 5.1952313440123294 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382799, + "c3": 6.541840036985663, + "c4": 5.233472029588527, + "c5": 3.925104022191408, + "c6": 2.616736014794272, + "c7": 1.308368007397136 }, "rgb": [86, 146, 138] }, @@ -371877,23 +371877,23 @@ "year": 1803, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -11.111389496835482, - "c2": 4.795440617325589, - "c3": 10.742719783827738, - "c4": -28.00620095376751, - "c5": -7.712677552026385, - "c6": 12.519177701171152, - "c7": -28.188925519224675 + "points": { + "c1": 3.060124890713311, + "c2": -9.397988146131116, + "c3": -18.880383018675833, + "c4": 18.361523846036036, + "c5": 8.503368378898287, + "c6": -13.492131754720802, + "c7": -7.151345954612953 }, - "vertexSeeds": { - "c1": 2.787170987057273, - "c2": 2.7756217980562807, - "c3": 2.8028780590491795, - "c4": 2.834351630876283, - "c5": 2.8049399871915495, - "c6": 2.7812987673791794, - "c7": 2.8107781279421853 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912606, + "c3": 3.398058252427189, + "c4": 2.718446601941738, + "c5": 2.03883495145632, + "c6": 1.359223300970869, + "c7": 0.6796116504854514 }, "rgb": [86, 146, 138] }, @@ -371904,23 +371904,23 @@ "year": 1803, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 23.373003005047767, - "c2": -20.131651268214917, - "c3": 3.6069960417213984, - "c4": -8.166071482176516, - "c5": 9.856398286308579, - "c6": -22.704593704782667, - "c7": -6.913467878212067 + "points": { + "c1": -21.57604482538347, + "c2": 2.7207376269125483, + "c3": -16.165158484108694, + "c4": 26.393959999474436, + "c5": 16.286194132995366, + "c6": -5.196462435235901, + "c7": 6.188072760082793 }, - "vertexSeeds": { - "c1": 3.982528830337225, - "c2": 4.192355534650876, - "c3": 3.9608014914695997, - "c4": 4.010078784714991, - "c5": 3.963321868869233, - "c6": 3.8948072602240233, - "c7": 4.150620691091825 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808595, + "c3": 5.0624133148405015, + "c4": 4.049930651872396, + "c5": 3.037447988904303, + "c6": 2.024965325936198, + "c7": 1.0124826629680936 }, "rgb": [86, 146, 138] }, @@ -371931,23 +371931,23 @@ "year": 1803, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -6.742458617620326, - "c2": 11.44027799940531, - "c3": -15.474402963141, - "c4": -11.762568978247959, - "c5": -25.152075748615687, - "c6": -28.360687296578064, - "c7": -23.022003991236804 + "points": { + "c1": 16.251830327914483, + "c2": -5.4814618757940465, + "c3": 15.762364484435572, + "c4": -1.2821866744871073, + "c5": -7.7388193465815895, + "c6": -1.2532464068377713, + "c7": 15.985176754352686 }, - "vertexSeeds": { - "c1": 3.9643018051041206, - "c2": 3.8139261477059887, - "c3": 4.10490236514438, - "c4": 4.048306882976592, - "c5": 4.1336307020903655, - "c6": 3.9245841820778296, - "c7": 4.144218377682216 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647707, + "c3": 4.969949144706428, + "c4": 3.9759593157651376, + "c5": 2.9819694868238593, + "c6": 1.9879796578825688, + "c7": 0.9939898289412901 }, "rgb": [58, 15, 49] }, @@ -371958,23 +371958,23 @@ "year": 1803, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -15.859191846848791, - "c2": -22.45456341438692, - "c3": -28.618096128514274, - "c4": -4.271603676422593, - "c5": -26.515113801588935, - "c6": 27.134666167643978, - "c7": 3.906283668617405 + "points": { + "c1": -8.730930248141796, + "c2": 18.21792586643624, + "c3": 15.24463822929063, + "c4": -3.5079890779585057, + "c5": -21.301503351055157, + "c6": 19.345226406971683, + "c7": -25.325255164049572 }, - "vertexSeeds": { - "c1": 6.466811616051169, - "c2": 6.479522247822143, - "c3": 6.446036340090325, - "c4": 6.652848494950332, - "c5": 6.324127771251736, - "c6": 6.03817450124398, - "c7": 6.6221587753295745 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836343, + "c3": 7.951918631530274, + "c4": 6.3615349052242225, + "c5": 4.7711511789181715, + "c6": 3.1807674526121024, + "c7": 1.5903837263060512 }, "rgb": [238, 201, 159] }, @@ -371985,23 +371985,23 @@ "year": 1803, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -23.806607645905288, - "c2": 27.99738067344848, - "c3": 3.0437660631488654, - "c4": 12.108421852241893, - "c5": -6.584908366547058, - "c6": 22.503818182856936, - "c7": 11.426916872525393 + "points": { + "c1": -1.091090189114361, + "c2": 20.831649042698782, + "c3": 2.4612120026982147, + "c4": -7.694491235620021, + "c5": -27.189509294990806, + "c6": -21.60617957347798, + "c7": 24.35502206709941 }, - "vertexSeeds": { - "c1": 5.755948631988282, - "c2": 5.3026704291934905, - "c3": 5.508458118042967, - "c4": 5.8208371855683865, - "c5": 5.855866609703006, - "c6": 5.631424037973224, - "c7": 5.7184432664655755 + "offsets": { + "c1": 10, + "c2": 8.571428571428566, + "c3": 7.142857142857145, + "c4": 5.71428571428571, + "c5": 4.28571428571429, + "c6": 2.857142857142855, + "c7": 1.42857142857142 }, "rgb": [86, 146, 138] }, @@ -372012,23 +372012,23 @@ "year": 1804, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -21.73247523585608, - "c2": -12.979183646914336, - "c3": 23.089278572906572, - "c4": 21.206192906245285, - "c5": 9.369244629894453, - "c6": 3.3499064432324914, - "c7": -4.3792263466060035 + "points": { + "c1": -24.828677117901403, + "c2": 36.98689942253412, + "c3": 6.73365891020179, + "c4": -11.397190114063228, + "c5": 1.4863660728483552, + "c6": -8.349532392056815, + "c7": 1.3139960358091471 }, - "vertexSeeds": { - "c1": 4.748230346297702, - "c2": 4.745096054303411, - "c3": 4.756446216554033, - "c4": 4.751999877940546, - "c5": 4.760280490009888, - "c6": 4.756936213378097, - "c7": 4.751095019775196 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894623, + "c3": 5.686546463245557, + "c4": 4.5492371705964905, + "c5": 3.4119278779471984, + "c6": 2.2746185852981324, + "c7": 1.1373092926490662 }, "rgb": [222, 0, 59] }, @@ -372039,23 +372039,23 @@ "year": 1804, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 30.11869464279851, - "c2": 20.18849392155527, - "c3": 1.689016193397002, - "c4": -1.7253256305811817, - "c5": -14.529640084913968, - "c6": -1.8729202318006806, - "c7": 11.326139888089315 + "points": { + "c1": 29.15053316809692, + "c2": 14.642237647687217, + "c3": 32.5014750533129, + "c4": -3.4361850464499923, + "c5": 28.386363429400625, + "c6": 21.88548118966466, + "c7": -24.513135100262645 }, - "vertexSeeds": { - "c1": 5.930206060288327, - "c2": 6.11767516259657, - "c3": 6.213389058147833, - "c4": 6.055798159897771, - "c5": 6.292842180268912, - "c6": 6.153428402187525, - "c7": 6.308753326485072 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434113, + "c3": 7.720758206195106, + "c4": 6.1766065649560815, + "c5": 4.632454923717057, + "c6": 3.0883032824780496, + "c7": 1.5441516412390248 }, "rgb": [222, 0, 59] }, @@ -372066,23 +372066,23 @@ "year": 1804, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -13.863445149208548, - "c2": 29.879538493456643, - "c3": -27.999322573555443, - "c4": 15.927973350064043, - "c5": 30.661618088383726, - "c6": 31.22836969518702, - "c7": 6.710154139361528 + "points": { + "c1": -25.82439056898432, + "c2": -9.666877086417678, + "c3": -39.29377972960629, + "c4": -35.587528635259275, + "c5": -35.802223531812636, + "c6": -12.870320298847062, + "c7": -32.37797017647226 }, - "vertexSeeds": { - "c1": 4.30591048457486, - "c2": 4.002977121681573, - "c3": 4.30219020608043, - "c4": 4.145389666680785, - "c5": 3.9841252075330087, - "c6": 4.17609609404155, - "c7": 4.191962213289431 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.26907073509015, + "c3": 5.224225612575128, + "c4": 4.179380490060099, + "c5": 3.1345353675450793, + "c6": 2.0896902450300496, + "c7": 1.0448451225150293 }, "rgb": [77, 76, 132] }, @@ -372093,23 +372093,23 @@ "year": 1804, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -3.516579611597294, - "c2": 10.295158365555135, - "c3": 4.118789841943677, - "c4": 21.490125779213795, - "c5": -31.084015678003553, - "c6": 12.611315881332029, - "c7": -15.91209694850527 + "points": { + "c1": 5.356184112112452, + "c2": -29.07573594428481, + "c3": -22.850102758776753, + "c4": -29.764038550356744, + "c5": 25.806043294827077, + "c6": 25.10636707905708, + "c7": -12.359348444980906 }, - "vertexSeeds": { - "c1": 6.605897600309374, - "c2": 6.1997980416598075, - "c3": 6.625291602059346, - "c4": 5.9783224082483155, - "c5": 6.539534255088188, - "c6": 6.353684179230375, - "c7": 6.329421388702701 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796123, + "c3": 7.928802588996757, + "c4": 6.3430420711974085, + "c5": 4.7572815533980615, + "c6": 3.171521035598696, + "c7": 1.585760517799348 }, "rgb": [222, 0, 59] }, @@ -372120,23 +372120,23 @@ "year": 1804, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -41.62896132088301, - "c2": 10.060138003229596, - "c3": -1.8027595642083654, - "c4": -15.898515304275634, - "c5": 8.780168635830982, - "c6": -40.06329696275906, - "c7": 2.6342024879984933 + "points": { + "c1": -8.271000641434071, + "c2": 1.7488163857189534, + "c3": 8.985678543428783, + "c4": -13.150764811896657, + "c5": 34.915459623588035, + "c6": -20.289448523171608, + "c7": -5.454976468463784 }, - "vertexSeeds": { - "c1": 4.900433058898456, - "c2": 4.936170358821901, - "c3": 5.0773513143476325, - "c4": 4.935093748527409, - "c5": 4.933654616318622, - "c6": 4.868515704721328, - "c7": 4.975375016136465 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -372147,23 +372147,23 @@ "year": 1803, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -10.236896679432306, - "c2": -20.634495189774114, - "c3": -16.012373831569224, - "c4": 10.517033893331721, - "c5": -8.264327254135921, - "c6": -24.64118065447347, - "c7": -5.726534885843741 + "points": { + "c1": 8.566844359122754, + "c2": 17.85242445794711, + "c3": -24.25330337756721, + "c4": -0.14512562279843522, + "c5": 14.82152460772106, + "c6": -3.5781959122539746, + "c7": 28.706155556369914 }, - "vertexSeeds": { - "c1": 6.637083472831201, - "c2": 6.567467822259021, - "c3": 6.94626489318901, - "c4": 6.537191655318889, - "c5": 6.4302685587158255, - "c6": 7.0878343380462185, - "c7": 6.945213795542877 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721218, + "c3": 8.460471567267678, + "c4": 6.768377253814157, + "c5": 5.076282940360618, + "c6": 3.3841886269070787, + "c7": 1.6920943134535393 }, "rgb": [222, 0, 59] }, @@ -372174,23 +372174,23 @@ "year": 1803, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -6.887156132753088, - "c2": -14.250470519867333, - "c3": 26.77221028731064, - "c4": -0.974197026841459, - "c5": 6.221098774554232, - "c6": -14.784761512745135, - "c7": -0.5148468136345414 + "points": { + "c1": -5.549907065602703, + "c2": 11.047728200781837, + "c3": -14.819701110464496, + "c4": -23.4877439280241, + "c5": -17.77841856714333, + "c6": -4.6774852269144205, + "c7": 5.129146616320579 }, - "vertexSeeds": { - "c1": 5.061487435284774, - "c2": 5.134357248189365, - "c3": 5.1267463594423, - "c4": 5.211568896721543, - "c5": 5.238348020483128, - "c6": 5.060900045430304, - "c7": 5.056626630331325 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [238, 201, 159] }, @@ -372201,23 +372201,23 @@ "year": 1804, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -26.86024188177462, - "c2": 10.114240958326626, - "c3": -26.41537651172328, - "c4": -15.257657082218532, - "c5": 14.801524261876146, - "c6": -13.679928849244412, - "c7": -31.357884073011544 + "points": { + "c1": -23.274574112303966, + "c2": -9.41312927631838, + "c3": 15.999608328137434, + "c4": 8.579452027452149, + "c5": 17.630571119136484, + "c6": 9.428673976287087, + "c7": -2.429462961591561 }, - "vertexSeeds": { - "c1": 6.084773482370841, - "c2": 6.016334738764635, - "c3": 5.4470596628276855, - "c4": 6.080879300020079, - "c5": 5.648560789898398, - "c6": 5.627297289621781, - "c7": 5.80461662090188 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313453, + "c3": 7.651410078594542, + "c4": 6.121128062875632, + "c5": 4.590846047156732, + "c6": 3.060564031437821, + "c7": 1.5302820157189105 }, "rgb": [58, 15, 49] }, @@ -372228,23 +372228,23 @@ "year": 1803, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 8.224474731306863, - "c2": 4.829947891958877, - "c3": 18.46788036915187, - "c4": -20.890734153049536, - "c5": 0.500731414787051, - "c6": -4.626934443218548, - "c7": 9.924939534583629 + "points": { + "c1": -13.539456575978846, + "c2": 8.978372168535806, + "c3": -21.78131236421769, + "c4": 0.34769886855732324, + "c5": 12.728499200525889, + "c6": 13.355522186449598, + "c7": 19.977686862803303 }, - "vertexSeeds": { - "c1": 6.077365333106722, - "c2": 5.930468147609831, - "c3": 6.404181105730254, - "c4": 5.9732174678388255, - "c5": 6.408041585191928, - "c6": 6.33921289278806, - "c7": 6.435909140151903 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434113, + "c3": 7.720758206195106, + "c4": 6.1766065649560815, + "c5": 4.632454923717057, + "c6": 3.0883032824780496, + "c7": 1.5441516412390248 }, "rgb": [222, 0, 59] }, @@ -372255,23 +372255,23 @@ "year": 1803, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 13.937741810349124, - "c2": 3.718303980450557, - "c3": 19.468045270674295, - "c4": 0.15555385700941926, - "c5": -7.7676242219241765, - "c6": -22.18965641184599, - "c7": 23.070481323803946 + "points": { + "c1": 16.227107229255594, + "c2": -21.170198101490495, + "c3": 9.238303070164541, + "c4": 19.96454913070756, + "c5": 2.9585567315397583, + "c6": 18.191127426223225, + "c7": -15.360251789268625 }, - "vertexSeeds": { - "c1": 5.367262318616894, - "c2": 5.438568345589653, - "c3": 5.467751019446519, - "c4": 5.297843649687746, - "c5": 5.366605977854432, - "c6": 5.3128498350824955, - "c7": 5.352403187014178 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055483, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022186, + "c7": 1.386962552011093 }, "rgb": [238, 201, 159] }, @@ -372282,23 +372282,23 @@ "year": 1803, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -17.054557062814233, - "c2": 6.997153586533226, - "c3": -10.823764324068067, - "c4": 0.917511588457316, - "c5": -8.285702489826718, - "c6": 16.965619374459436, - "c7": -1.7443941569549253 + "points": { + "c1": -11.675266371400124, + "c2": 24.2558191451376, + "c3": -2.0038596212854145, + "c4": 12.710343082023414, + "c5": 16.766305740562352, + "c6": 13.761905234763063, + "c7": -14.896962162410246 }, - "vertexSeeds": { - "c1": 7.076864754591074, - "c2": 6.925381546882026, - "c3": 7.213501545109064, - "c4": 7.053073696759758, - "c5": 6.580394500882256, - "c6": 6.9591872555851495, - "c7": 7.06265977738421 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083226, + "c3": 8.668515950069347, + "c4": 6.934812760055484, + "c5": 5.201109570041604, + "c6": 3.467406380027742, + "c7": 1.7337031900138802 }, "rgb": [77, 76, 132] }, @@ -372309,23 +372309,23 @@ "year": 1804, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 1.8744721863505873, - "c2": 34.934289784534684, - "c3": 17.95033870945025, - "c4": -21.17722620814059, - "c5": -10.264600335712714, - "c6": -35.80801937182595, - "c7": 8.039716852854596 + "points": { + "c1": 7.253445985851066, + "c2": 7.583524798591981, + "c3": 3.557058406633942, + "c4": -25.615267552220246, + "c5": -1.450096172526223, + "c6": 16.710517677692813, + "c7": 40.78369087231508 }, - "vertexSeeds": { - "c1": 4.854052899183494, - "c2": 4.867394250012515, - "c3": 5.091790624266697, - "c4": 4.964431937947869, - "c5": 4.394053281539201, - "c6": 4.254613284282429, - "c7": 4.811246425352697 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699026, + "c3": 6.148867313915857, + "c4": 4.919093851132688, + "c5": 3.6893203883495183, + "c6": 2.459546925566344, + "c7": 1.2297734627831747 }, "rgb": [77, 76, 132] }, @@ -372336,23 +372336,23 @@ "year": 1804, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -26.49618857959388, - "c2": 16.228748930075888, - "c3": 11.3439335641756, - "c4": 21.75484376467091, - "c5": -20.94920675312941, - "c6": 19.341968391737076, - "c7": -16.18875332761834 + "points": { + "c1": 27.983351639484397, + "c2": -11.610722141094698, + "c3": -0.03303947256577544, + "c4": 12.21505495160897, + "c5": -27.561352073993657, + "c6": -23.084708343791934, + "c7": -26.793231085733318 }, - "vertexSeeds": { - "c1": 3.322942566092165, - "c2": 3.2285287070510913, - "c3": 3.176019099782599, - "c4": 3.1576705532144835, - "c5": 3.352304004242805, - "c6": 3.059281765231392, - "c7": 3.1535388189292504 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199726, + "c3": 4.137771613499767, + "c4": 3.310217290799817, + "c5": 2.4826629680998593, + "c6": 1.6551086453999084, + "c7": 0.8275543226999507 }, "rgb": [238, 201, 159] }, @@ -372363,23 +372363,23 @@ "year": 1803, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 5.189236881812526, - "c2": -5.647214443167787, - "c3": 6.63504065950389, - "c4": 5.89237972331231, - "c5": -1.6358106313668372, - "c6": 10.36400193713338, - "c7": 10.402954911925299 + "points": { + "c1": -6.8354241881614435, + "c2": -13.403515098774104, + "c3": 3.0072180665423183, + "c4": 20.762360108777855, + "c5": -22.152938631437884, + "c6": 23.151945680821363, + "c7": 1.7262248146608563 }, - "vertexSeeds": { - "c1": 5.906247568431674, - "c2": 5.613506138928943, - "c3": 5.468065473552734, - "c4": 5.6845159493196045, - "c5": 5.696530463479997, - "c6": 5.846879330146044, - "c7": 5.4679242571618145 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -372390,23 +372390,23 @@ "year": 1804, "resistanceReported": false, "duration": 32745600, - "curveSeeds": { - "c1": -8.412003257806617, - "c2": -45.090353098661694, - "c3": 7.659304557403821, - "c4": 39.15340928202492, - "c5": 15.136535093753928, - "c6": 43.13573506636836, - "c7": 25.345611591447074 + "points": { + "c1": -47.202755268677464, + "c2": 6.1293816941115935, + "c3": -7.873451757177413, + "c4": 46.26433149628671, + "c5": -10.661835038659923, + "c6": 21.883683482622565, + "c7": -9.918598760477877 }, - "vertexSeeds": { - "c1": 3.89765471636941, - "c2": 4.000929462842004, - "c3": 3.880558331443619, - "c4": 3.924208142615338, - "c5": 4.177163037837826, - "c6": 3.8690252403950045, - "c7": 4.102370119764009 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [238, 201, 159] }, @@ -372417,23 +372417,23 @@ "year": 1804, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -13.286951500129053, - "c2": 21.620058223049256, - "c3": 2.286301475143098, - "c4": 14.375129864486006, - "c5": -13.729975874353913, - "c6": 24.38769138670564, - "c7": -6.871642670560615 + "points": { + "c1": 1.0036815051139811, + "c2": -15.091624330676897, + "c3": 30.026040276758522, + "c4": -4.313819544921937, + "c5": 17.03020095678125, + "c6": -14.52997244302242, + "c7": 31.063076211553167 }, - "vertexSeeds": { - "c1": 3.1277357903687535, - "c2": 3.55618474092939, - "c3": 3.3625919536265947, - "c4": 3.9392715595973407, - "c5": 3.9278060552812972, - "c6": 3.5477543005484056, - "c7": 3.12464617452827 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.6865464632454925, + "c3": 4.738788719371245, + "c4": 3.7910309754969926, + "c5": 2.8432732316227445, + "c6": 1.8955154877484963, + "c7": 0.9477577438742482 }, "rgb": [58, 15, 49] }, @@ -372444,23 +372444,23 @@ "year": 1803, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 12.935442929480423, - "c2": 24.767748796485492, - "c3": 1.633655501924114, - "c4": -22.743339246646993, - "c5": 13.140424114263162, - "c6": -0.420098631935673, - "c7": 23.726624208111694 + "points": { + "c1": 23.77785446244539, + "c2": 12.777621459223617, + "c3": 15.65447047880157, + "c4": 22.613172746917073, + "c5": -0.5124101723056533, + "c6": 15.26799118141387, + "c7": 8.44142358635608 }, - "vertexSeeds": { - "c1": 7.762625575160579, - "c2": 8.39369495373093, - "c3": 8.266779714121911, - "c4": 8.409935517138733, - "c5": 8.4889328591519, - "c6": 7.861675888340323, - "c7": 8.235747522665854 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657427, + "c3": 10.14794267221451, + "c4": 8.118354137771613, + "c5": 6.088765603328714, + "c6": 4.059177068885797, + "c7": 2.0295885344428983 }, "rgb": [86, 146, 138] }, @@ -372471,23 +372471,23 @@ "year": 1804, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -19.68497865938025, - "c2": -24.605584233797444, - "c3": -21.501124992806268, - "c4": 26.983956924102184, - "c5": -19.373339525459357, - "c6": -15.947263821438064, - "c7": -27.74955208748809 + "points": { + "c1": 22.854905179174207, + "c2": -0.6341354691128522, + "c3": -26.6556802884519, + "c4": 4.632296873427347, + "c5": -12.380124998093116, + "c6": 12.923409273779104, + "c7": -16.557403913861258 }, - "vertexSeeds": { - "c1": 6.060984540416394, - "c2": 6.107596692832081, - "c3": 6.507344623210756, - "c4": 6.536474980120707, - "c5": 6.300249359656145, - "c6": 6.4622210110082055, - "c7": 5.928521154851066 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675459, + "c3": 7.859454461396207, + "c4": 6.287563569116973, + "c5": 4.71567267683772, + "c6": 3.1437817845584863, + "c7": 1.5718908922792523 }, "rgb": [222, 0, 59] }, @@ -372498,23 +372498,23 @@ "year": 1804, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 14.169898171854644, - "c2": -4.736596469438446, - "c3": -9.488628919643702, - "c4": 27.988137148395797, - "c5": 17.96411368597003, - "c6": -25.080041986168695, - "c7": -5.969419996237267 + "points": { + "c1": -16.703001756927204, + "c2": -9.433422730022855, + "c3": 21.409094961057264, + "c4": -2.9616039706350783, + "c5": -27.50757451888167, + "c6": -1.4266071632365112, + "c7": -4.083170067625961 }, - "vertexSeeds": { - "c1": 2.0891228637539756, - "c2": 2.036690696913041, - "c3": 2.108199257683548, - "c4": 2.0106097828767897, - "c5": 2.0618027962916585, - "c6": 2.0224504577530404, - "c7": 2.0888983319461563 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.051317614424408, + "c3": 2.5427646786870124, + "c4": 2.034211742949608, + "c5": 1.525658807212204, + "c6": 1.0171058714748085, + "c7": 0.5085529357374042 }, "rgb": [86, 146, 138] }, @@ -372525,23 +372525,23 @@ "year": 1803, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 5.259988780494755, - "c2": 4.595249318353204, - "c3": -14.481449255205273, - "c4": 17.690176846570544, - "c5": -3.982084843334281, - "c6": -14.690233619090606, - "c7": -3.412504609221447 + "points": { + "c1": 21.333590754539827, + "c2": 15.838899893626085, + "c3": -20.995782624396735, + "c4": 11.652622350235049, + "c5": -20.265045162917705, + "c6": -11.316043319672005, + "c7": 15.6293035522066 }, - "vertexSeeds": { - "c1": 7.8463328913891175, - "c2": 7.675712270051216, - "c3": 7.734475618145363, - "c4": 7.614825752826845, - "c5": 7.387539925115401, - "c6": 7.86148947623824, - "c7": 7.887974218898198 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531212, + "c3": 9.500693481275997, + "c4": 7.600554785020801, + "c5": 5.700416088765606, + "c6": 3.8002773925104107, + "c7": 1.9001386962551956 }, "rgb": [77, 76, 132] }, @@ -372552,23 +372552,23 @@ "year": 1804, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -9.39567505438339, - "c2": 14.106977127584678, - "c3": 9.667374958004594, - "c4": -11.756939498282419, - "c5": -10.510392207662198, - "c6": -0.07553195080117803, - "c7": 10.885639571402251 + "points": { + "c1": 4.2024771860308405, + "c2": -9.83807611117727, + "c3": -26.2488540074333, + "c4": 14.421477151978152, + "c5": -18.77043266135989, + "c6": 1.5440299902393768, + "c7": -9.775593727581274 }, - "vertexSeeds": { - "c1": 8.735397967739384, - "c2": 8.181864491668273, - "c3": 8.35090989450372, - "c4": 8.12087456306127, - "c5": 8.485703374195332, - "c6": 8.483183363517988, - "c7": 8.439372485590463 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421635, + "c3": 10.587147480351359, + "c4": 8.469717984281102, + "c5": 6.352288488210826, + "c6": 4.234858992140551, + "c7": 2.1174294960702755 }, "rgb": [58, 15, 49] }, @@ -372579,23 +372579,23 @@ "year": 1804, "resistanceReported": true, "duration": 15897600, - "curveSeeds": { - "c1": -14.13967706019479, - "c2": 27.31201882243568, - "c3": 15.49888570762231, - "c4": 2.801428874069906, - "c5": 21.60169951329532, - "c6": 20.50767142039913, - "c7": 18.697451671652214 + "points": { + "c1": 14.708319860249485, + "c2": 14.787583200743317, + "c3": 24.87053638160099, + "c4": 0.06374322652121478, + "c5": -10.492754699412064, + "c6": 0.9754164216108663, + "c7": -6.139119344345385 }, - "vertexSeeds": { - "c1": 6.835942276686269, - "c2": 6.83523964687049, - "c3": 6.787793626896664, - "c4": 6.908750903912805, - "c5": 6.828070002586538, - "c6": 6.902555526208321, - "c7": 6.819244379669748 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359187, + "c3": 8.25242718446603, + "c4": 6.601941747572791, + "c5": 4.951456310679635, + "c6": 3.3009708737863956, + "c7": 1.650485436893157 }, "rgb": [86, 146, 138] }, @@ -372606,23 +372606,23 @@ "year": 1804, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 23.57132336973628, - "c2": -23.144460972376706, - "c3": -4.4646704459761395, - "c4": -10.498981086556647, - "c5": 15.024103105157185, - "c6": 19.13384602868261, - "c7": 0.3182136899211443 + "points": { + "c1": -5.275911648556075, + "c2": 12.258868643600625, + "c3": -21.844812539397306, + "c4": 1.7864457181094267, + "c5": -27.188710099895708, + "c6": 14.475632019584705, + "c7": -3.0876369085974886 }, - "vertexSeeds": { - "c1": 6.109470899895563, - "c2": 6.033019880935677, - "c3": 6.033568309399962, - "c4": 5.7515674836782384, - "c5": 6.195816878428357, - "c6": 6.197712242802652, - "c7": 6.287324965503048 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192786, + "c3": 7.582061950993984, + "c4": 6.065649560795184, + "c5": 4.549237170596384, + "c6": 3.032824780397601, + "c7": 1.5164123901988005 }, "rgb": [238, 201, 159] }, @@ -372633,23 +372633,23 @@ "year": 1803, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 22.9867897765959, - "c2": -17.332423614405464, - "c3": -7.955227091746302, - "c4": 23.762760235575527, - "c5": 17.281546230051347, - "c6": 12.335294633866091, - "c7": -6.623347508431806 + "points": { + "c1": -0.8386143200166671, + "c2": -8.062865554681022, + "c3": 4.549950442086509, + "c4": 16.982779466369173, + "c5": -1.1412370741195303, + "c6": -8.41217870506095, + "c7": -12.212071609998866 }, - "vertexSeeds": { - "c1": 0.3329387116486929, - "c2": 0.3624914298804943, - "c3": 0.33478458715604836, - "c4": 0.3304580539926899, - "c5": 0.34506039215022094, - "c6": 0.34468430271849704, - "c7": 0.3662746750595588 + "offsets": { + "c1": 0.6472491909385114, + "c2": 0.5547850208044387, + "c3": 0.4623208506703648, + "c4": 0.36985668053629206, + "c5": 0.27739251040221935, + "c6": 0.1849283402681466, + "c7": 0.09246417013407272 }, "rgb": [58, 15, 49] }, @@ -372660,23 +372660,23 @@ "year": 1804, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 23.12857900741558, - "c2": 28.489430693433782, - "c3": 0.10555550600175678, - "c4": -0.5339822825956873, - "c5": -6.668910741886908, - "c6": -3.5432201128531133, - "c7": -22.218323710913154 + "points": { + "c1": 0.19581227179895677, + "c2": 33.763678314966604, + "c3": -0.620646809086125, + "c4": -16.94548498295695, + "c5": -2.116438817885829, + "c6": -22.808945338073393, + "c7": 37.11595186709058 }, - "vertexSeeds": { - "c1": 4.379927345978425, - "c2": 4.512390152930992, - "c3": 4.144990658076331, - "c4": 4.317674519988247, - "c5": 4.5632699660922285, - "c6": 4.539381117851172, - "c7": 4.251216516067403 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572813, + "c3": 5.50161812297735, + "c4": 4.401294498381879, + "c5": 3.3009708737864063, + "c6": 2.2006472491909435, + "c7": 1.1003236245954717 }, "rgb": [86, 146, 138] }, @@ -372687,23 +372687,23 @@ "year": 1804, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": -7.695055224218972, - "c2": 0.6729358417277709, - "c3": -13.932653292359701, - "c4": -7.10181922862666, - "c5": -23.275324167236743, - "c6": 6.595652754076909, - "c7": -4.635909853213228 + "points": { + "c1": 1.9440571000945042, + "c2": -3.359906658327354, + "c3": 10.024370324710425, + "c4": -22.458502704575118, + "c5": -8.610729085641644, + "c6": 18.724480256103526, + "c7": 14.43585093735826 }, - "vertexSeeds": { - "c1": 4.687486030057697, - "c2": 4.664428082483541, - "c3": 4.7001819631848605, - "c4": 4.669368984280746, - "c5": 4.690252856319252, - "c6": 4.688925717789325, - "c7": 4.6853861901571685 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773957, + "c3": 5.617198335644889, + "c4": 4.493758668515934, + "c5": 3.3703190013869784, + "c6": 2.246879334258023, + "c7": 1.1234396671289555 }, "rgb": [86, 146, 138] }, @@ -372714,23 +372714,23 @@ "year": 1804, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 2.220647461726699, - "c2": -35.67966873748115, - "c3": -29.480570235194023, - "c4": -31.776893969902662, - "c5": -3.4993849380477826, - "c6": 24.16281259956203, - "c7": -19.526245238197248 + "points": { + "c1": -7.849183318295996, + "c2": 16.7992128448209, + "c3": -16.504262583614963, + "c4": 3.756153576142083, + "c5": 22.58575571311595, + "c6": -1.8269308169229745, + "c7": -12.891796776999389 }, - "vertexSeeds": { - "c1": 5.059596403465052, - "c2": 4.919156060005486, - "c3": 5.017770621914277, - "c4": 5.143583986987706, - "c5": 4.786709428996657, - "c6": 5.147548548309183, - "c7": 4.944597602179937 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900147, + "c3": 6.264447526583446, + "c4": 5.011558021266764, + "c5": 3.7586685159500735, + "c6": 2.505779010633382, + "c7": 1.252889505316691 }, "rgb": [222, 0, 59] }, @@ -372741,23 +372741,23 @@ "year": 1803, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -15.996909745913094, - "c2": 21.931384094945912, - "c3": 28.399764993457907, - "c4": -6.75700532816149, - "c5": 24.87413170910905, - "c6": 41.85531155010007, - "c7": 15.229608029643202 + "points": { + "c1": -0.08721982523151439, + "c2": 26.350618923792695, + "c3": -35.32831410243943, + "c4": 36.21860925079926, + "c5": 40.30728993333034, + "c6": 25.802683386638734, + "c7": 22.283144278047132 }, - "vertexSeeds": { - "c1": 5.07489351815432, - "c2": 5.027952698599279, - "c3": 4.853592753039982, - "c4": 4.859061686693079, - "c5": 5.278658135711009, - "c6": 5.17859821559652, - "c7": 5.174464121640614 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [77, 76, 132] }, @@ -372768,23 +372768,23 @@ "year": 1804, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -17.147634602986233, - "c2": -11.234917925305675, - "c3": 8.460140147703761, - "c4": -5.17158487476425, - "c5": 18.262569829730456, - "c6": -2.7908438772589115, - "c7": 9.722371434677076 + "points": { + "c1": 21.85791060356718, + "c2": 16.7912536504243, + "c3": 4.96128464247041, + "c4": 12.348765360985144, + "c5": 24.094079390733878, + "c6": 22.85509101474148, + "c7": -12.325501719914048 }, - "vertexSeeds": { - "c1": 5.6621510806686794, - "c2": 5.810290712122523, - "c3": 5.853874060669962, - "c4": 5.824387643823282, - "c5": 5.880112705485528, - "c6": 5.696904192126534, - "c7": 5.890869013548009 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348133, + "c3": 7.096625057790116, + "c4": 5.6773000462321, + "c5": 4.257975034674049, + "c6": 2.838650023116032, + "c7": 1.419325011558016 }, "rgb": [86, 146, 138] }, @@ -372795,23 +372795,23 @@ "year": 1804, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -2.1462428449355464, - "c2": 2.1641125147665576, - "c3": 19.838355490759778, - "c4": 18.700430127533256, - "c5": -9.623444777462883, - "c6": -16.66496867540787, - "c7": -6.262209595282918 + "points": { + "c1": 27.266290659207296, + "c2": -25.612265635181863, + "c3": 7.479379044926002, + "c4": -0.4890013715846706, + "c5": 24.304319712537907, + "c6": -22.3236730008482, + "c7": 6.67931339683339 }, - "vertexSeeds": { - "c1": 7.515350428928728, - "c2": 7.069433068181114, - "c3": 7.161734485368115, - "c4": 7.230903730929779, - "c5": 7.297262230004836, - "c6": 6.8529525170524375, - "c7": 7.155828489403856 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [58, 15, 49] }, @@ -372822,23 +372822,23 @@ "year": 1804, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -1.864067027825186, - "c2": -19.08561929641055, - "c3": 1.3108410754982636, - "c4": -3.6202479201911792, - "c5": -2.6769848141747055, - "c6": 11.80577479014562, - "c7": -15.983041223043694 + "points": { + "c1": -18.258270810089986, + "c2": 20.524756271125035, + "c3": 17.714958527778826, + "c4": -25.76896450042447, + "c5": -3.819739418156196, + "c6": 6.539559734291053, + "c7": -7.403675542779421 }, - "vertexSeeds": { - "c1": 6.572451221287207, - "c2": 6.909142091512593, - "c3": 6.960430659846456, - "c4": 6.978084670626145, - "c5": 6.973448764267427, - "c6": 7.038899553947165, - "c7": 7.042832449839749 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882109, + "c3": 8.552935737401762, + "c4": 6.8423485899214125, + "c5": 5.1317614424410465, + "c6": 3.421174294960697, + "c7": 1.7105871474803485 }, "rgb": [58, 15, 49] }, @@ -372849,23 +372849,23 @@ "year": 1804, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -8.479642275856946, - "c2": 17.40791917283102, - "c3": -23.19276105269119, - "c4": -24.278983127889965, - "c5": -19.818841264519545, - "c6": 12.296655389902174, - "c7": -20.401772971244277 + "points": { + "c1": 32.466998907278665, + "c2": 6.787014475122888, + "c3": 24.554686930012274, + "c4": 6.499588161259666, + "c5": 22.004271194305915, + "c6": 21.681830735574472, + "c7": 15.689329042037599 }, - "vertexSeeds": { - "c1": 4.546262232201839, - "c2": 4.6976879491733365, - "c3": 4.552794553069107, - "c4": 4.541326254406873, - "c5": 4.671943575903208, - "c6": 4.472895945607723, - "c7": 4.689128213406635 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854369, + "c3": 5.663430420711974, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.2653721682847894, + "c7": 1.1326860841423947 }, "rgb": [222, 0, 59] }, @@ -372876,23 +372876,23 @@ "year": 1804, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -2.7347027194309774, - "c2": -2.4303389503509045, - "c3": -13.46921309788425, - "c4": 13.177897089218664, - "c5": 7.395798497832626, - "c6": -25.711892936583, - "c7": 22.03034689798392 + "points": { + "c1": 24.698243600334823, + "c2": -17.089437912096027, + "c3": -25.178173503333092, + "c4": -14.217136614479944, + "c5": -9.171825504324005, + "c6": 7.292456110658865, + "c7": -4.427006773276894 }, - "vertexSeeds": { - "c1": 6.573733949690004, - "c2": 6.877132079411966, - "c3": 6.975812644869955, - "c4": 6.658930607122746, - "c5": 6.46516339999311, - "c6": 7.071772682774225, - "c7": 6.377291810101923 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721218, + "c3": 8.460471567267678, + "c4": 6.768377253814157, + "c5": 5.076282940360618, + "c6": 3.3841886269070787, + "c7": 1.6920943134535393 }, "rgb": [86, 146, 138] }, @@ -372903,23 +372903,23 @@ "year": 1804, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": -10.934557976903005, - "c2": -1.378254999282916, - "c3": 5.816833144175323, - "c4": 5.242098965947623, - "c5": 1.9571139488238884, - "c6": -12.395681747941959, - "c7": 12.068123252855912 + "points": { + "c1": 5.697348637000577, + "c2": -22.37899373742681, + "c3": 3.5293623863419192, + "c4": 3.872022352067308, + "c5": -12.57974489703638, + "c6": 19.146507109583894, + "c7": -20.501444449995706 }, - "vertexSeeds": { - "c1": 1.307213996337801, - "c2": 1.5272067906365696, - "c3": 1.459779366019692, - "c4": 1.5775842683650891, - "c5": 1.4873018183907367, - "c6": 1.2887447971943926, - "c7": 1.481349000749162 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742026, + "c3": 1.479426722145168, + "c4": 1.1835413777161345, + "c5": 0.8876560332871013, + "c6": 0.5917706888580679, + "c7": 0.29588534442903336 }, "rgb": [238, 201, 159] }, @@ -372930,23 +372930,23 @@ "year": 1804, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -19.69712041671343, - "c2": -8.082050173528224, - "c3": 14.19494842697084, - "c4": -25.935513927839985, - "c5": -6.409611703782311, - "c6": -5.846178057729311, - "c7": 8.352530861973833 + "points": { + "c1": 6.325494241638985, + "c2": -1.085891062530699, + "c3": 0.9654203713345879, + "c4": -11.284744094377853, + "c5": -25.600945092965244, + "c6": -17.823384304742085, + "c7": 12.629480556925294 }, - "vertexSeeds": { - "c1": 7.3979921469619425, - "c2": 7.45113048494411, - "c3": 7.441501892739214, - "c4": 7.495012066832816, - "c5": 7.4852763108612725, - "c6": 7.379443380339377, - "c7": 7.478499396658146 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686526, + "c3": 9.015256588072154, + "c4": 7.212205270457709, + "c5": 5.409153952843263, + "c6": 3.60610263522889, + "c7": 1.803051317614445 }, "rgb": [238, 201, 159] }, @@ -372957,23 +372957,23 @@ "year": 1804, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -2.489783280208691, - "c2": -25.43857086972363, - "c3": -27.513042133769705, - "c4": 5.675572498006876, - "c5": 5.741983151350855, - "c6": -26.86866946910997, - "c7": 10.67104225036918 + "points": { + "c1": -18.467880092037532, + "c2": -0.3004304783914655, + "c3": 16.12160324564459, + "c4": 1.2237759531861627, + "c5": 17.17686484041781, + "c6": -2.621367691066265, + "c7": -28.19536842427144 }, - "vertexSeeds": { - "c1": 8.167113136874942, - "c2": 8.250169503476178, - "c3": 7.812894019383035, - "c4": 8.392220793174829, - "c5": 8.106046166308921, - "c6": 8.131042359975337, - "c7": 8.352522829374191 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.01109570041608, + "c3": 10.00924641701341, + "c4": 8.00739713361072, + "c5": 6.005547850208049, + "c6": 4.00369856680536, + "c7": 2.001849283402689 }, "rgb": [58, 15, 49] }, @@ -372984,23 +372984,23 @@ "year": 1804, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -5.266929026163115, - "c2": -26.49162347055313, - "c3": 14.9740507799773, - "c4": -1.1279005809907616, - "c5": -1.875538320647923, - "c6": -11.313739308542637, - "c7": 20.423799999837687 + "points": { + "c1": -31.00915075214381, + "c2": -26.726346536624973, + "c3": -28.49210380798017, + "c4": -7.44739367845699, + "c5": 21.03413702917042, + "c6": -7.2373159475313535, + "c7": -11.564874131958657 }, - "vertexSeeds": { - "c1": 3.402982107022959, - "c2": 3.4267914458067277, - "c3": 3.5373558508550955, - "c4": 3.2936750555195418, - "c5": 3.5464666029675245, - "c6": 3.4317108085454446, - "c7": 3.341141527599482 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400834, + "c3": 4.253351826167364, + "c4": 3.4026814609338936, + "c5": 2.5520110957004114, + "c6": 1.701340730466941, + "c7": 0.8506703652334705 }, "rgb": [86, 146, 138] }, @@ -373011,23 +373011,23 @@ "year": 1804, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -19.067615673019663, - "c2": 28.84273258660293, - "c3": -15.386747063383906, - "c4": -23.632055735992893, - "c5": 16.594894765021646, - "c6": 5.831705479035602, - "c7": 6.982945991857857 + "points": { + "c1": -27.42804957618545, + "c2": -13.975204696658903, + "c3": 19.959901085019627, + "c4": 23.966514774539466, + "c5": 29.328238066491362, + "c6": -10.988935729498444, + "c7": 19.313638325015194 }, - "vertexSeeds": { - "c1": 5.766663698215269, - "c2": 6.3486442049009355, - "c3": 5.8225805234892425, - "c4": 6.166463802732555, - "c5": 6.237663619607147, - "c6": 6.151008844128152, - "c7": 5.8707811067722435 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233004, + "c3": 7.6051779935275166, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.0420711974109955, + "c7": 1.5210355987055069 }, "rgb": [58, 15, 49] }, @@ -373038,23 +373038,23 @@ "year": 1804, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 3.686755563330344, - "c2": -6.355745978667336, - "c3": -21.458667903150186, - "c4": -29.341050783710124, - "c5": -33.301962426388684, - "c6": 32.82447721361733, - "c7": 11.94870065048596 + "points": { + "c1": 16.22052638379244, + "c2": 1.8256090109119114, + "c3": 14.254671764652521, + "c4": 2.0958694946051963, + "c5": 26.787380993806714, + "c6": 2.354600282722899, + "c7": -19.95229719655542 }, - "vertexSeeds": { - "c1": 4.3755050182431185, - "c2": 4.262845739340325, - "c3": 4.181133113831565, - "c4": 4.056926646494341, - "c5": 4.316849496177906, - "c6": 4.1620507904950825, - "c7": 4.0776420495944175 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130371, + "c3": 5.247341655108646, + "c4": 4.197873324086913, + "c5": 3.14840499306519, + "c6": 2.0989366620434566, + "c7": 1.0494683310217239 }, "rgb": [77, 76, 132] }, @@ -373065,23 +373065,23 @@ "year": 1804, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 14.690428513271044, - "c2": -9.071631256266986, - "c3": 17.19286948429994, - "c4": 24.065323682967914, - "c5": 11.113343187193884, - "c6": -8.60672890373657, - "c7": 12.890396505837067 + "points": { + "c1": 21.416524853677792, + "c2": 25.780131521248293, + "c3": -0.41054849582673825, + "c4": -19.037590773224053, + "c5": 22.986954613522343, + "c6": 5.395742539364832, + "c7": -12.695814833532484 }, - "vertexSeeds": { - "c1": 4.576486957954357, - "c2": 4.383400249848573, - "c3": 4.41725739598274, - "c4": 4.546279324292159, - "c5": 4.2796837704447945, - "c6": 4.19590493158702, - "c7": 4.576551412807868 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532596, + "c3": 5.478502080443824, + "c4": 4.382801664355061, + "c5": 3.287101248266298, + "c6": 2.191400832177535, + "c7": 1.0957004160887631 }, "rgb": [86, 146, 138] }, @@ -373092,23 +373092,23 @@ "year": 1804, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -36.21167240181543, - "c2": 1.993665600187974, - "c3": 16.814990604261475, - "c4": 19.007205580280278, - "c5": -28.913348044015127, - "c6": 25.916485055406966, - "c7": 29.542307685007287 + "points": { + "c1": 13.392809154559863, + "c2": 29.045441774940812, + "c3": -2.0502739857055943, + "c4": 13.270396174630932, + "c5": -30.217985078022156, + "c6": 23.96481602959487, + "c7": -7.587953860698562 }, - "vertexSeeds": { - "c1": 3.217526420745832, - "c2": 3.106957853381737, - "c3": 2.997991521128845, - "c4": 3.0736324497911243, - "c5": 3.0562675712669383, - "c6": 2.8743326821534065, - "c7": 3.2072153801613825 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797503, + "c3": 3.906611188164585, + "c4": 3.125288950531673, + "c5": 2.3439667128987547, + "c6": 1.5626444752658366, + "c7": 0.7813222376329183 }, "rgb": [77, 76, 132] }, @@ -373119,23 +373119,23 @@ "year": 1804, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -3.9865859298169006, - "c2": -8.341399034501642, - "c3": 2.150137117292342, - "c4": -2.708863116095074, - "c5": -17.217789304000895, - "c6": 8.741327869114276, - "c7": 4.903607613553238 + "points": { + "c1": 8.881885813627882, + "c2": -19.288480736665342, + "c3": 6.852014054171029, + "c4": -5.667521673377266, + "c5": 29.681510467255386, + "c6": 1.9298426637569932, + "c7": 14.896776919665008 }, - "vertexSeeds": { - "c1": 7.467036972915286, - "c2": 7.751688471332049, - "c3": 7.525924595700079, - "c4": 7.27213647641129, - "c5": 7.890599166929977, - "c6": 7.433119544326678, - "c7": 7.833332342253641 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410541, + "c3": 9.431345353675452, + "c4": 7.545076282940361, + "c5": 5.658807212205271, + "c6": 3.7725381414701804, + "c7": 1.8862690707350902 }, "rgb": [238, 201, 159] }, @@ -373146,23 +373146,23 @@ "year": 1804, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 28.150138963889866, - "c2": 2.9722876086530405, - "c3": -10.116241360868571, - "c4": 9.848293273656175, - "c5": -13.795030671284394, - "c6": -8.681998976050249, - "c7": 10.380259593990182 + "points": { + "c1": -23.426794645968272, + "c2": -16.920079631839663, + "c3": 13.26657984485216, + "c4": -18.441529012715847, + "c5": -11.879284718045255, + "c6": 4.4545944582276675, + "c7": -32.53247862634674 }, - "vertexSeeds": { - "c1": 8.016384964056545, - "c2": 7.42613803792471, - "c3": 7.319406666088075, - "c4": 8.0454318427643, - "c5": 7.991741138661898, - "c6": 7.437062992994468, - "c7": 7.777259921270199 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772544, + "c3": 9.639389736477108, + "c4": 7.7115117891816904, + "c5": 5.783633841886272, + "c6": 3.8557558945908355, + "c7": 1.9278779472954177 }, "rgb": [86, 146, 138] }, @@ -373173,23 +373173,23 @@ "year": 1805, "resistanceReported": false, "duration": 47779200, - "curveSeeds": { - "c1": -34.42209257983535, - "c2": -1.607923163197384, - "c3": 49.4138671887778, - "c4": 18.288631584445255, - "c5": 0.3495713227345192, - "c6": -42.88050364579319, - "c7": 34.926778285078484 + "points": { + "c1": 45.11943132551754, + "c2": -2.57434754976434, + "c3": -26.94822789288547, + "c4": -42.96060795008428, + "c5": -32.55269983446225, + "c6": 43.79859181793094, + "c7": 48.980131135699125 }, - "vertexSeeds": { - "c1": 5.792290658904303, - "c2": 5.793286618604235, - "c3": 5.491797879378394, - "c4": 5.799200321895187, - "c5": 5.7445782300632215, - "c6": 5.897445079204742, - "c7": 5.392214297194834 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307905, + "c3": 7.0735090152565885, + "c4": 5.658807212205271, + "c5": 4.244105409153953, + "c6": 2.8294036061026353, + "c7": 1.4147018030513177 }, "rgb": [238, 201, 159] }, @@ -373200,23 +373200,23 @@ "year": 1804, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 0.40441613479953276, - "c2": 8.068236429447456, - "c3": 12.356395131592112, - "c4": -6.7244915211566365, - "c5": -10.606492184981374, - "c6": 25.73046965618654, - "c7": -21.584678332255734 + "points": { + "c1": 17.315150043529997, + "c2": -12.740133664184484, + "c3": -16.27252144988287, + "c4": 20.09981884031847, + "c5": -12.49484788340456, + "c6": -10.3477655178895, + "c7": -1.1819153324888205 }, - "vertexSeeds": { - "c1": 7.157438564694496, - "c2": 6.88963322996044, - "c3": 6.940118806544288, - "c4": 7.5201214195604305, - "c5": 7.4302445034321645, - "c6": 7.636923965004481, - "c7": 7.353306089693258 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887653, + "c3": 9.130836800739722, + "c4": 7.304669440591773, + "c5": 5.4785020804438265, + "c6": 3.652334720295878, + "c7": 1.826167360147948 }, "rgb": [238, 201, 159] }, @@ -373227,23 +373227,23 @@ "year": 1804, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -17.34698522964074, - "c2": -30.809525798900253, - "c3": -12.895391314599319, - "c4": -6.948460197759953, - "c5": 5.5274337144113055, - "c6": 22.05736163323674, - "c7": 8.633633928177733 + "points": { + "c1": -19.505908190862456, + "c2": -3.756498721309434, + "c3": -18.495943070795008, + "c4": -25.140669177892615, + "c5": -4.9349481064313565, + "c6": 24.308450245942986, + "c7": -15.805076083304389 }, - "vertexSeeds": { - "c1": 5.491205805594839, - "c2": 5.454088440786538, - "c3": 5.439883013214135, - "c4": 5.5423887962141265, - "c5": 5.9321806972839894, - "c6": 5.510701010513875, - "c7": 5.50543508817783 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348136, + "c3": 7.096625057790103, + "c4": 5.67730004623209, + "c5": 4.257975034674058, + "c6": 2.838650023116045, + "c7": 1.4193250115580316 }, "rgb": [58, 15, 49] }, @@ -373254,23 +373254,23 @@ "year": 1804, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 5.974252600613124, - "c2": -27.471952293531345, - "c3": 6.358285107832611, - "c4": -27.34290280893073, - "c5": -20.04176093042887, - "c6": -21.166181017557264, - "c7": -5.150202063605583 + "points": { + "c1": 9.135059231480227, + "c2": 7.855828061420219, + "c3": 9.001914681073693, + "c4": 9.340970300214288, + "c5": -15.785948871313124, + "c6": -9.240028689387586, + "c7": -5.987282432523461 }, - "vertexSeeds": { - "c1": 6.674108300917425, - "c2": 6.644723177368977, - "c3": 6.8358551406131545, - "c4": 6.6929893882075095, - "c5": 7.16867717305455, - "c6": 6.875835909750493, - "c7": 6.483460760551175 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882109, + "c3": 8.552935737401762, + "c4": 6.8423485899214125, + "c5": 5.1317614424410465, + "c6": 3.421174294960697, + "c7": 1.7105871474803485 }, "rgb": [77, 76, 132] }, @@ -373281,23 +373281,23 @@ "year": 1804, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": -8.175951535758863, - "c2": -18.896152480976404, - "c3": 16.183749810996787, - "c4": 13.879116098697999, - "c5": 30.890735607705103, - "c6": -10.863373608114813, - "c7": 32.36160656233505 + "points": { + "c1": 31.06058597353627, + "c2": -3.0027731656849426, + "c3": -13.328667808376352, + "c4": -36.477837964358905, + "c5": 36.790456289432676, + "c6": 1.8262681816313062, + "c7": -19.13876132883375 }, - "vertexSeeds": { - "c1": 3.3557580930474957, - "c2": 3.39517301705442, - "c3": 3.2524572468049917, - "c4": 3.5061999653217772, - "c5": 3.290740415038902, - "c6": 3.450406735116133, - "c7": 3.4587794247016577 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320388, + "c3": 4.207119741100324, + "c4": 3.3656957928802584, + "c5": 2.524271844660194, + "c6": 1.6828478964401292, + "c7": 0.8414239482200646 }, "rgb": [77, 76, 132] }, @@ -373308,23 +373308,23 @@ "year": 1804, "resistanceReported": false, "duration": 29203200, - "curveSeeds": { - "c1": 3.9674533618087366, - "c2": -3.072523233554257, - "c3": -16.771210430584006, - "c4": 41.53318570413176, - "c5": 21.765406231743434, - "c6": 9.995928596595334, - "c7": -14.496087096134527 + "points": { + "c1": -17.026180187948185, + "c2": -36.51323821425625, + "c3": -1.8267761691272142, + "c4": -7.447606291907441, + "c5": -10.236974333606653, + "c6": 7.334735802800381, + "c7": -13.230799960008078 }, - "vertexSeeds": { - "c1": 5.961172975854501, - "c2": 5.493083259268821, - "c3": 5.761765128778078, - "c4": 5.42957635387728, - "c5": 5.9665893496193565, - "c6": 5.621594839103353, - "c7": 5.742469387985155 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -373335,23 +373335,23 @@ "year": 1804, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 3.28491945191562, - "c2": -18.49828904214195, - "c3": -22.481487932680707, - "c4": -29.30932829343666, - "c5": 16.31883519393432, - "c6": -10.03515001521103, - "c7": -30.24725132520545 + "points": { + "c1": 9.048127295308632, + "c2": -20.521033278727074, + "c3": -26.773888198356563, + "c4": -18.05746892199228, + "c5": -32.63576030515584, + "c6": -15.485437680437176, + "c7": 14.175176217255363 }, - "vertexSeeds": { - "c1": 4.251071252155069, - "c2": 4.275287422460671, - "c3": 3.922376416032945, - "c4": 4.033274490787674, - "c5": 3.904948044414105, - "c6": 4.188786861564388, - "c7": 4.071757318273844 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [222, 0, 59] }, @@ -373362,23 +373362,23 @@ "year": 1804, "resistanceReported": false, "duration": 30153600, - "curveSeeds": { - "c1": -26.070885111978328, - "c2": 35.03865355012734, - "c3": -30.431154372957863, - "c4": -24.6562962160846, - "c5": 20.97899942232536, - "c6": -21.01365175864867, - "c7": 8.3647531711717 + "points": { + "c1": 20.060080898273448, + "c2": -5.149539067284856, + "c3": 21.48047954960675, + "c4": -44.51377179236725, + "c5": 0.955600093896777, + "c6": -16.721471292803088, + "c7": -34.1548506885891 }, - "vertexSeeds": { - "c1": 3.950772271043235, - "c2": 3.876064110986168, - "c3": 3.8130574142719995, - "c4": 3.761468498862403, - "c5": 3.793539766036525, - "c6": 3.856066528022807, - "c7": 3.8800140331498016 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486823, + "c3": 4.8774849745723525, + "c4": 3.901987979657882, + "c5": 2.9264909847434115, + "c6": 1.950993989828941, + "c7": 0.9754969949144705 }, "rgb": [238, 201, 159] }, @@ -373389,23 +373389,23 @@ "year": 1804, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -12.033301371053525, - "c2": -24.681603250413716, - "c3": -39.0627642316905, - "c4": 33.21037390153598, - "c5": 12.872994453232828, - "c6": 19.18194523431675, - "c7": -33.34149475022137 + "points": { + "c1": -44.47701046866789, + "c2": -18.39916393521113, + "c3": -9.15443399662972, + "c4": 36.18851853924928, + "c5": -30.727616183577815, + "c6": -8.347943556226127, + "c7": -0.5073553675955935 }, - "vertexSeeds": { - "c1": 4.363762711683992, - "c2": 4.38675960988062, - "c3": 4.148968194433709, - "c4": 4.409125408140042, - "c5": 4.281523287360341, - "c6": 4.322242406876203, - "c7": 4.481587957140805 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411928, + "c3": 5.4091539528432735, + "c4": 4.327323162274618, + "c5": 3.245492371705964, + "c6": 2.163661581137309, + "c7": 1.0818307905686546 }, "rgb": [238, 201, 159] }, @@ -373416,23 +373416,23 @@ "year": 1804, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 11.603600147064007, - "c2": 14.116107684568107, - "c3": -39.25208086010354, - "c4": -27.61820624744592, - "c5": 19.449191116655292, - "c6": -27.757890155633085, - "c7": 23.696472081325908 + "points": { + "c1": 37.018318341931675, + "c2": -19.645740890806817, + "c3": -44.129183565142995, + "c4": 32.84435237279432, + "c5": -4.861094774228668, + "c6": 7.96724284558195, + "c7": 1.3369307466749447 }, - "vertexSeeds": { - "c1": 7.651212698307173, - "c2": 7.531098787056601, - "c3": 7.605261653425088, - "c4": 7.647447807795933, - "c5": 7.42162694595126, - "c6": 7.490285258718028, - "c7": 7.403701095581778 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927884, + "c3": 9.153952843273244, + "c4": 7.323162274618604, + "c5": 5.49237170596392, + "c6": 3.6615811373092795, + "c7": 1.8307905686546397 }, "rgb": [58, 15, 49] }, @@ -373443,23 +373443,23 @@ "year": 1804, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -21.228097016994564, - "c2": 14.705028123507542, - "c3": 26.13418432550009, - "c4": -11.07796653232528, - "c5": -5.584986456218509, - "c6": 13.26423473010264, - "c7": -5.712928915387053 + "points": { + "c1": -23.38917939582341, + "c2": 7.543478332943021, + "c3": -19.317037422484653, + "c4": -16.809063880275097, + "c5": 7.677120905110225, + "c6": -18.691143010800523, + "c7": 25.34977160400089 }, - "vertexSeeds": { - "c1": 1.5121925420216298, - "c2": 1.4951357961403202, - "c3": 1.3608694161681327, - "c4": 1.3731959860209615, - "c5": 1.4944723122248353, - "c6": 1.5500619435453407, - "c7": 1.4362059689050861 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.274618585298198, + "c3": 1.895515487748497, + "c4": 1.5164123901987991, + "c5": 1.1373092926490975, + "c6": 0.7582061950993996, + "c7": 0.379103097549698 }, "rgb": [238, 201, 159] }, @@ -373470,23 +373470,23 @@ "year": 1804, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 12.992769844868672, - "c2": 25.21634775790523, - "c3": 10.081853004942598, - "c4": -27.171384139170595, - "c5": -15.84792624011544, - "c6": 28.65306980807038, - "c7": 6.059227135124605 + "points": { + "c1": 28.732773407275346, + "c2": 13.321275780206769, + "c3": 32.26247001419867, + "c4": -18.121414645217605, + "c5": 22.607267062583517, + "c6": -16.02573190794325, + "c7": -19.773707114227477 }, - "vertexSeeds": { - "c1": 6.174473206780455, - "c2": 6.011232733934735, - "c3": 6.032110087012468, - "c4": 5.94109022794169, - "c5": 6.096078060258864, - "c6": 6.247089253404957, - "c7": 6.0472824843273285 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.95977808599168, + "c3": 7.466481738326403, + "c4": 5.973185390661126, + "c5": 4.479889042995849, + "c6": 2.9865926953305535, + "c7": 1.4932963476652767 }, "rgb": [238, 201, 159] }, @@ -373497,23 +373497,23 @@ "year": 1804, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -18.864340630803998, - "c2": -11.587647694472777, - "c3": -5.135752917630956, - "c4": 3.812141795174181, - "c5": 16.67099160798189, - "c6": 19.8993133669112, - "c7": 18.60970137074012 + "points": { + "c1": -5.159213283643972, + "c2": 0.4929323476242047, + "c3": -17.415251852423452, + "c4": -10.270644107473899, + "c5": 7.349697704336904, + "c6": 17.974173982812957, + "c7": 23.818145591631996 }, - "vertexSeeds": { - "c1": 6.260205760972239, - "c2": 6.530242885455089, - "c3": 6.335021199529313, - "c4": 6.518403488004202, - "c5": 6.14088354985156, - "c6": 6.11033586492212, - "c7": 6.174617325965384 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595012, + "c3": 7.813222376329181, + "c4": 6.25057790106335, + "c5": 4.6879334257974925, + "c6": 3.1252889505316617, + "c7": 1.5626444752658308 }, "rgb": [238, 201, 159] }, @@ -373524,23 +373524,23 @@ "year": 1804, "resistanceReported": true, "duration": 25228800, - "curveSeeds": { - "c1": -15.304233490086219, - "c2": -10.317748982084215, - "c3": -14.704113035980527, - "c4": -2.3766091954283723, - "c5": -19.00121234945332, - "c6": -2.902448852276116, - "c7": -9.287883142870324 + "points": { + "c1": 25.48231285519988, + "c2": 6.044287288974516, + "c3": -7.978896629171004, + "c4": 20.520481210567745, + "c5": 6.676997287204429, + "c6": -30.6763405446354, + "c7": -22.373822479328304 }, - "vertexSeeds": { - "c1": 2.5284385295293235, - "c2": 2.5401358044002276, - "c3": 2.5152479023307746, - "c4": 2.6067581490728604, - "c5": 2.7298223266661985, - "c6": 2.701723275172872, - "c7": 2.5798529018292875 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115087, + "c3": 3.282478039759598, + "c4": 2.625982431807676, + "c5": 1.9694868238557544, + "c6": 1.3129912159038435, + "c7": 0.6564956079519217 }, "rgb": [77, 76, 132] }, @@ -373551,23 +373551,23 @@ "year": 1804, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -26.919498602842623, - "c2": 23.157862817518218, - "c3": 10.293399099771865, - "c4": -9.688942368632684, - "c5": -15.941314362219975, - "c6": 6.5589249444407365, - "c7": -3.5734858086739365 + "points": { + "c1": -5.470400245893334, + "c2": -6.882799985635746, + "c3": -6.553096182975175, + "c4": 0.32192409384929377, + "c5": 25.10108667832655, + "c6": -21.89424136404529, + "c7": -20.934110879828367 }, - "vertexSeeds": { - "c1": 7.1577240813642655, - "c2": 7.5091399533588765, - "c3": 7.3517227002347765, - "c4": 6.977064694876007, - "c5": 6.9377213664804325, - "c6": 7.501681828687281, - "c7": 7.140129852496053 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -373578,23 +373578,23 @@ "year": 1804, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -1.956689514994956, - "c2": 12.705476378211038, - "c3": 29.46428598897478, - "c4": -25.80819590878781, - "c5": -19.816402569245934, - "c6": 18.942137173322998, - "c7": -2.3614468355490246 + "points": { + "c1": -36.175015309941486, + "c2": -1.2659435293706167, + "c3": 16.96696138006115, + "c4": 21.20661194442323, + "c5": 31.901765030026965, + "c6": 14.596261005518656, + "c7": 8.368512957355989 }, - "vertexSeeds": { - "c1": 5.912106540514438, - "c2": 5.790046504514536, - "c3": 5.904791164454701, - "c4": 5.608064075401712, - "c5": 5.550785801082937, - "c6": 5.433358941328592, - "c7": 5.708418297122158 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -373605,23 +373605,23 @@ "year": 1804, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 14.01691909099798, - "c2": -24.345017284487497, - "c3": -2.7141655565494602, - "c4": 5.545927866027029, - "c5": 13.683648448034631, - "c6": -10.35010707899551, - "c7": 18.840874051024294 + "points": { + "c1": -15.169038693257349, + "c2": 9.940933130343893, + "c3": 10.278105283718077, + "c4": 9.763784455994163, + "c5": -0.704151402618411, + "c6": 10.108933037469214, + "c7": -10.433147079828775 }, - "vertexSeeds": { - "c1": 4.837635494214737, - "c2": 5.252748177422774, - "c3": 4.965264150286515, - "c4": 5.048541753248828, - "c5": 5.145252496962244, - "c6": 5.124044640767418, - "c7": 4.985777452443331 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784567, + "c4": 5.12251502542764, + "c5": 3.8418862690707325, + "c6": 2.5612575127138246, + "c7": 1.2806287563569168 }, "rgb": [238, 201, 159] }, @@ -373632,23 +373632,23 @@ "year": 1804, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": -0.6023923176981434, - "c2": -7.1377152470412835, - "c3": -14.150977355684736, - "c4": 8.964619939831866, - "c5": -17.828768700163803, - "c6": -11.58394800549146, - "c7": -3.8741321354092584 + "points": { + "c1": -15.48449894175407, + "c2": -18.903723746948216, + "c3": -13.763217676512909, + "c4": 11.681573926109216, + "c5": 18.23470806660565, + "c6": -4.802045743575697, + "c7": 4.831710300011988 }, - "vertexSeeds": { - "c1": 4.244442987775515, - "c2": 4.455028458885284, - "c3": 4.249824191843715, - "c4": 4.44291885038308, - "c5": 4.327499117937242, - "c6": 4.318547851422608, - "c7": 4.469350539023895 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452148, + "c3": 5.432269995376788, + "c4": 4.345815996301429, + "c5": 3.259361997226079, + "c6": 2.1729079981507198, + "c7": 1.0864539990753599 }, "rgb": [77, 76, 132] }, @@ -373659,23 +373659,23 @@ "year": 1804, "resistanceReported": false, "duration": 3542400, - "curveSeeds": { - "c1": -2.9444634406158308, - "c2": -0.21099754856291497, - "c3": -9.860132933584694, - "c4": -13.575646111363309, - "c5": -0.1540389468349712, - "c6": -4.093817089415182, - "c7": 3.2035190229261925 + "points": { + "c1": -12.924985301556761, + "c2": 12.57555536436635, + "c3": -10.071277843363385, + "c4": 3.120561982307107, + "c5": -14.784722401942316, + "c6": 2.3499939500294342, + "c7": -12.697079101318447 }, - "vertexSeeds": { - "c1": 2.4007210651567963, - "c2": 2.468376246258823, - "c3": 2.4127329996188798, - "c4": 2.400220826886656, - "c5": 2.4801680143643328, - "c6": 2.4332121321742513, - "c7": 2.442441033933325 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.57836338418862, + "c3": 2.981969486823854, + "c4": 2.385575589459088, + "c5": 1.78918169209431, + "c6": 1.192787794729544, + "c7": 0.596393897364778 }, "rgb": [58, 15, 49] }, @@ -373686,23 +373686,23 @@ "year": 1805, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -50.214633866455394, - "c2": -42.83983773663966, - "c3": 20.577606090621536, - "c4": -20.747195547029193, - "c5": -16.16606897463297, - "c6": 33.99874100647208, - "c7": -46.90282724550077 + "points": { + "c1": 12.21327467715384, + "c2": -46.55403525285292, + "c3": 45.769402831002715, + "c4": -41.35722656147932, + "c5": -50.8630692765405, + "c6": -34.95488673027175, + "c7": 20.442305849786173 }, - "vertexSeeds": { - "c1": 9.164506568680238, - "c2": 9.189365882274936, - "c3": 9.142547001538565, - "c4": 9.170635399346835, - "c5": 9.120753757449052, - "c6": 9.166960763402141, - "c7": 9.12387085285551 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065249, + "c3": 10.957004160887562, + "c4": 8.765603328710094, + "c5": 6.5742024965326245, + "c6": 4.3828016643551555, + "c7": 2.191400832177469 }, "rgb": [77, 76, 132] }, @@ -373713,23 +373713,23 @@ "year": 1804, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 8.578124412200257, - "c2": -7.230931999959974, - "c3": 11.539475672143059, - "c4": 3.615331806241059, - "c5": 13.918389154498247, - "c6": -3.2107757983552077, - "c7": 7.648261149131539 + "points": { + "c1": -17.510424051241323, + "c2": 16.33411377853489, + "c3": 21.559773610851604, + "c4": 18.219475086508307, + "c5": -7.003219334085898, + "c6": 7.396188106895526, + "c7": -16.984061710628794 }, - "vertexSeeds": { - "c1": 5.650591761648494, - "c2": 5.550221903836275, - "c3": 5.574669588786027, - "c4": 5.502415717310922, - "c5": 5.525960532295396, - "c6": 6.006771652528528, - "c7": 5.647073025739263 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549235, + "c3": 7.212205270457697, + "c4": 5.769764216366157, + "c5": 4.3273231622746176, + "c6": 2.8848821081830787, + "c7": 1.4424410540915393 }, "rgb": [77, 76, 132] }, @@ -373740,23 +373740,23 @@ "year": 1804, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -15.485301249627927, - "c2": -14.095522806696431, - "c3": -5.419080809876874, - "c4": -17.473251238569283, - "c5": 19.205457688456374, - "c6": 20.466298459498997, - "c7": 21.90398266001782 + "points": { + "c1": -22.701907432992858, + "c2": -9.769884598032107, + "c3": 1.7595231300540135, + "c4": 18.999860742821863, + "c5": -17.878200694072014, + "c6": -12.330111859496265, + "c7": 21.502557222611014 }, - "vertexSeeds": { - "c1": 5.9287389646492, - "c2": 5.792665531935469, - "c3": 5.5062941480735645, - "c4": 5.767922295972554, - "c5": 5.47248817138936, - "c6": 5.455097709666735, - "c7": 5.716673193941835 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348136, + "c3": 7.096625057790103, + "c4": 5.67730004623209, + "c5": 4.257975034674058, + "c6": 2.838650023116045, + "c7": 1.4193250115580316 }, "rgb": [222, 0, 59] }, @@ -373767,23 +373767,23 @@ "year": 1804, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -25.706807649366887, - "c2": 4.371960686858131, - "c3": -1.0960797421845143, - "c4": 15.770128936299386, - "c5": -27.64358646500493, - "c6": -23.793730819749875, - "c7": 18.47377458855796 + "points": { + "c1": -23.698427864571986, + "c2": -4.519086045351479, + "c3": 19.07867222161375, + "c4": 7.731491539908241, + "c5": -24.494669495560235, + "c6": -4.339430601853728, + "c7": 9.297108787038411 }, - "vertexSeeds": { - "c1": 3.884406947881521, - "c2": 3.793364259221687, - "c3": 3.8784683454975295, - "c4": 3.647127992123031, - "c5": 3.641302229682216, - "c6": 3.88564120896054, - "c7": 3.5957239918460915 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285719, + "c3": 4.761904761904761, + "c4": 3.8095238095238124, + "c5": 2.8571428571428545, + "c6": 1.9047619047619062, + "c7": 0.9523809523809484 }, "rgb": [77, 76, 132] }, @@ -373794,23 +373794,23 @@ "year": 1804, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 24.529018941915574, - "c2": 2.968904658039559, - "c3": 8.326820720032266, - "c4": -25.35600162821142, - "c5": -0.8124500325968853, - "c6": -1.068379193973911, - "c7": -18.28123786689349 + "points": { + "c1": -8.755810465641098, + "c2": 21.988413385920232, + "c3": 3.51629646307552, + "c4": 3.73983950799623, + "c5": 4.62589365485217, + "c6": -11.090134497909322, + "c7": -19.552919260208732 }, - "vertexSeeds": { - "c1": 2.749099872797289, - "c2": 2.756881575550264, - "c3": 2.602007308119471, - "c4": 2.6663925615826067, - "c5": 2.60351056839911, - "c6": 2.8709916197973553, - "c7": 2.8674963889361424 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.467406380027739, + "c4": 2.773925104022191, + "c5": 2.080443828016643, + "c6": 1.3869625520110955, + "c7": 0.6934812760055478 }, "rgb": [58, 15, 49] }, @@ -373821,23 +373821,23 @@ "year": 1804, "resistanceReported": false, "duration": 1900800, - "curveSeeds": { - "c1": 3.411511621604694, - "c2": 8.864119721998666, - "c3": -9.730877467454942, - "c4": 0.017443932273605967, - "c5": 2.9830922436447906, - "c6": 3.3142223776772664, - "c7": 11.071918680652026 + "points": { + "c1": -4.227602121914403, + "c2": -2.5436771469201087, + "c3": 8.5630992696296, + "c4": -4.850806147899764, + "c5": 0.997551217562199, + "c6": 12.92788521175456, + "c7": 7.009996656748992 }, - "vertexSeeds": { - "c1": 9.493685252208763, - "c2": 8.844492246227134, - "c3": 8.928930301955646, - "c4": 8.399595359550625, - "c5": 9.36101764687409, - "c6": 8.869553196274271, - "c7": 9.136058148948223 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789176, + "c3": 11.373092926490983, + "c4": 9.09847434119279, + "c5": 6.823855755894588, + "c6": 4.549237170596384, + "c7": 2.274618585298192 }, "rgb": [86, 146, 138] }, @@ -373848,23 +373848,23 @@ "year": 1804, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": 17.683582092613094, - "c2": 11.451507174478259, - "c3": 9.432009587485613, - "c4": -8.097692392101845, - "c5": -18.21674719912296, - "c6": 15.228810599625533, - "c7": -13.344050982622747 + "points": { + "c1": 4.665562130726464, + "c2": 4.460518544395452, + "c3": -23.894812616355182, + "c4": 8.739752965502127, + "c5": -12.651534344087414, + "c6": -0.6804267903482604, + "c7": -6.574877681944216 }, - "vertexSeeds": { - "c1": 4.350784699797676, - "c2": 4.333788534698657, - "c3": 4.09139157547907, - "c4": 4.256615822962844, - "c5": 4.185752303214447, - "c6": 4.3495499026649265, - "c7": 4.422968777070958 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.3522884882108155, + "c3": 5.293573740175686, + "c4": 4.234858992140547, + "c5": 3.1761442441054077, + "c6": 2.117429496070268, + "c7": 1.0587147480351395 }, "rgb": [77, 76, 132] }, @@ -373875,23 +373875,23 @@ "year": 1804, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 17.85794875208658, - "c2": -25.66675916313937, - "c3": 3.2554111155475027, - "c4": -18.890269366655303, - "c5": -0.7327625927789114, - "c6": -9.912973708729542, - "c7": -14.263040950135503 + "points": { + "c1": -19.680785231276303, + "c2": 26.761424253895655, + "c3": -25.7193648072396, + "c4": 0.911018315006288, + "c5": -19.425464518399206, + "c6": -3.944668334959644, + "c7": 0.8040233401804358 }, - "vertexSeeds": { - "c1": 6.090383710181931, - "c2": 5.9058665741019425, - "c3": 5.88978149920708, - "c4": 5.885648082929994, - "c5": 5.858104096081697, - "c6": 6.270040941936787, - "c7": 5.931165818548402 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951457, + "c3": 7.766990291262128, + "c4": 6.213592233009706, + "c5": 4.660194174757285, + "c6": 3.1067961165048623, + "c7": 1.553398058252422 }, "rgb": [86, 146, 138] }, @@ -373902,23 +373902,23 @@ "year": 1804, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 15.269207643390601, - "c2": -3.996064884737894, - "c3": -8.778162553409086, - "c4": -3.1654591630869966, - "c5": -4.504159298587961, - "c6": 12.093486786929105, - "c7": -19.14556637091077 + "points": { + "c1": -17.089315495317813, + "c2": 1.4280556265378124, + "c3": 26.87570466969953, + "c4": 14.235310633648723, + "c5": 9.419001424616305, + "c6": 29.74719497759267, + "c7": -22.870366569836232 }, - "vertexSeeds": { - "c1": 6.287753663329866, - "c2": 5.791845276691019, - "c3": 5.794860908764894, - "c4": 6.319375723215389, - "c5": 5.947988427370045, - "c6": 6.2161373977530054, - "c7": 5.882464827458188 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192786, + "c3": 7.582061950993984, + "c4": 6.065649560795184, + "c5": 4.549237170596384, + "c6": 3.032824780397601, + "c7": 1.5164123901988005 }, "rgb": [77, 76, 132] }, @@ -373929,23 +373929,23 @@ "year": 1804, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -24.65028777438135, - "c2": -19.27126512257619, - "c3": -23.155038084401316, - "c4": 4.56443434751165, - "c5": 16.42667771700669, - "c6": 2.7396588120762395, - "c7": -24.26712681763554 + "points": { + "c1": -12.19101966583355, + "c2": -8.99627324859663, + "c3": 10.79526153680726, + "c4": -21.137765661529414, + "c5": -25.724231731103036, + "c6": -7.039572211007375, + "c7": 23.019974567478428 }, - "vertexSeeds": { - "c1": 4.259750544758518, - "c2": 4.190318153813828, - "c3": 4.131507092551186, - "c4": 4.170709246319023, - "c5": 4.2548401101851, - "c6": 4.062520408678734, - "c7": 4.289750862099276 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [86, 146, 138] }, @@ -373956,23 +373956,23 @@ "year": 1805, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": -2.8036914036401157, - "c2": -40.68935313682295, - "c3": 27.46481108225551, - "c4": 37.305408106461186, - "c5": 5.042031982359582, - "c6": 41.432640316820425, - "c7": -5.343071794134609 + "points": { + "c1": -42.213692043832204, + "c2": -38.34443539607468, + "c3": 26.699720479108294, + "c4": 45.09069358864461, + "c5": 33.77072111627578, + "c6": 1.759163816149261, + "c7": -7.622326165941267 }, - "vertexSeeds": { - "c1": 3.396693560541376, - "c2": 3.3535795630475045, - "c3": 3.4768148269769705, - "c4": 3.480738422947099, - "c5": 3.6520220041255533, - "c6": 3.4794529232301477, - "c7": 3.5658383324437923 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601945, + "c3": 4.368932038834947, + "c4": 3.4951456310679596, + "c5": 2.6213592233009724, + "c6": 1.7475728155339743, + "c7": 0.8737864077669871 }, "rgb": [86, 146, 138] }, @@ -373983,23 +373983,23 @@ "year": 1804, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 4.853512181623447, - "c2": 1.534964940374003, - "c3": -6.6419350969444295, - "c4": 11.306932125849052, - "c5": -22.293496020524934, - "c6": 0.9011458202716334, - "c7": -0.5707240674729483 + "points": { + "c1": -26.049683872283605, + "c2": -15.342481976765141, + "c3": -6.771098896979765, + "c4": -10.644042418230942, + "c5": -22.86198899034214, + "c6": 1.7576295358132406, + "c7": -6.143227783510099 }, - "vertexSeeds": { - "c1": 4.485666284947613, - "c2": 4.652484403071407, - "c3": 4.494985951816428, - "c4": 4.590192974596878, - "c5": 4.568932875762585, - "c6": 4.533130917000455, - "c7": 4.59959317478463 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693473, + "c3": 5.570966250577904, + "c4": 4.456773000462316, + "c5": 3.3425797503467467, + "c6": 2.228386500231158, + "c7": 1.1141932501155687 }, "rgb": [222, 0, 59] }, @@ -374010,23 +374010,23 @@ "year": 1804, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 17.965430182761985, - "c2": -13.587157490481918, - "c3": -5.229671638429043, - "c4": -14.615526610965095, - "c5": 3.0152558871776236, - "c6": -19.205611579705028, - "c7": -8.600732188986505 + "points": { + "c1": 23.21660780367546, + "c2": 31.769197501689682, + "c3": -4.518751186705359, + "c4": 27.34276994642054, + "c5": -19.195482426377808, + "c6": -27.0563399363102, + "c7": -3.3368642448924746 }, - "vertexSeeds": { - "c1": 2.251700111535421, - "c2": 2.2860374444064977, - "c3": 2.1885457881451473, - "c4": 2.1534981070099017, - "c5": 2.156327401042225, - "c6": 2.2235463009545953, - "c7": 2.1636819485724903 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668523, + "c3": 2.797041146555711, + "c4": 2.2376329172445697, + "c5": 1.6782246879334286, + "c6": 1.1188164586222824, + "c7": 0.5594082293111412 }, "rgb": [58, 15, 49] }, @@ -374037,23 +374037,23 @@ "year": 1804, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -22.903453803032235, - "c2": 8.338908664675152, - "c3": 15.329461039705208, - "c4": 12.311425949249305, - "c5": 17.59780628288683, - "c6": -17.004651872292897, - "c7": 25.98747530922993 + "points": { + "c1": -23.90767557757956, + "c2": 11.025248350888262, + "c3": -30.570397627954183, + "c4": -35.024149038090705, + "c5": 10.164563000176962, + "c6": -27.65894185296102, + "c7": 9.444344219893914 }, - "vertexSeeds": { - "c1": 5.209450016885675, - "c2": 5.08704012468435, - "c3": 5.171121731551972, - "c4": 5.097768258371544, - "c5": 4.979261007884209, - "c6": 5.265570799618049, - "c7": 5.190563047956199 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -374064,23 +374064,23 @@ "year": 1804, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -26.5437124421292, - "c2": -20.762371835269736, - "c3": -14.77369747160411, - "c4": 1.1948769201986948, - "c5": 14.839018452856422, - "c6": -3.8070480326736877, - "c7": -22.467345022300204 + "points": { + "c1": -9.507839813636085, + "c2": 26.48354829897668, + "c3": 5.748185501194847, + "c4": 22.382287701844348, + "c5": 6.26340317727864, + "c6": 22.279444419059324, + "c7": -16.77381245443707 }, - "vertexSeeds": { - "c1": 6.886944321301993, - "c2": 6.720791827841318, - "c3": 6.615296334353735, - "c4": 6.741398719714637, - "c5": 7.084552385113062, - "c6": 6.569727680452144, - "c7": 6.607820229736194 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962555, + "c3": 8.599167822468798, + "c4": 6.879334257975042, + "c5": 5.159500693481286, + "c6": 3.4396671289875305, + "c7": 1.719833564493774 }, "rgb": [222, 0, 59] }, @@ -374091,23 +374091,23 @@ "year": 1804, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -14.607846323582688, - "c2": 29.294903261281263, - "c3": 20.07191761900549, - "c4": -0.5859193497054349, - "c5": 36.8474022989718, - "c6": -39.099890372943946, - "c7": -9.120415976234948 + "points": { + "c1": 25.231951208137033, + "c2": 2.120119506559014, + "c3": 13.345639135839868, + "c4": -40.5921440194882, + "c5": -37.74339108081967, + "c6": 14.207798031102683, + "c7": 39.22189151811298 }, - "vertexSeeds": { - "c1": 5.50519033365412, - "c2": 5.540687423019406, - "c3": 5.775538873070483, - "c4": 5.944967180060848, - "c5": 5.511979942656544, - "c6": 5.865715031878618, - "c7": 5.690572571206825 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [77, 76, 132] }, @@ -374118,23 +374118,23 @@ "year": 1804, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 12.848608254171403, - "c2": 18.057493753456008, - "c3": 18.104903312034686, - "c4": 14.251811296263817, - "c5": 22.63656945076429, - "c6": -21.990921233968958, - "c7": 21.19812519354165 + "points": { + "c1": -3.628881051597176, + "c2": 19.329679435836702, + "c3": 25.128702706859798, + "c4": -11.672400877145371, + "c5": 23.33085768497253, + "c6": 8.824321772023112, + "c7": 17.586573494066876 }, - "vertexSeeds": { - "c1": 5.656354442635059, - "c2": 5.382507931476814, - "c3": 5.701878664960711, - "c4": 5.877525058543009, - "c5": 5.428305374747471, - "c6": 5.624605857915243, - "c7": 5.876821978788623 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622747, + "c3": 7.027276930189549, + "c4": 5.621821544151647, + "c5": 4.2163661581137255, + "c6": 2.8109107720758235, + "c7": 1.4054553860379027 }, "rgb": [77, 76, 132] }, @@ -374145,23 +374145,23 @@ "year": 1804, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -18.191213848784088, - "c2": -15.590070600065486, - "c3": 16.500485829985664, - "c4": -2.835755174891702, - "c5": -10.616190732711514, - "c6": -16.424821141480805, - "c7": 2.4769322716039284 + "points": { + "c1": 13.936332125499327, + "c2": -24.946340479218186, + "c3": -0.08370119744384752, + "c4": 8.967556471377229, + "c5": 7.18792369927133, + "c6": -22.336080459220447, + "c7": -1.8694467235053551 }, - "vertexSeeds": { - "c1": 5.358597295807144, - "c2": 5.157138450059371, - "c3": 5.346212426901865, - "c4": 5.380893775636778, - "c5": 5.357414163347478, - "c6": 5.47196222845521, - "c7": 5.295500309121188 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186773, + "c4": 5.344429033749432, + "c5": 4.008321775312075, + "c6": 2.672214516874716, + "c7": 1.336107258437358 }, "rgb": [77, 76, 132] }, @@ -374172,23 +374172,23 @@ "year": 1804, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -26.1189317771834, - "c2": 5.446796864202611, - "c3": 8.428280567904608, - "c4": -29.497473290502484, - "c5": -13.787273941012067, - "c6": -1.5776897839582738, - "c7": 27.7491450247529 + "points": { + "c1": 25.90021529387097, + "c2": -17.106110399667195, + "c3": 18.356897087638714, + "c4": 0.36781259504302, + "c5": -6.552607938021911, + "c6": 20.60114653634836, + "c7": -26.938536364263733 }, - "vertexSeeds": { - "c1": 3.415399972964583, - "c2": 3.398798292947278, - "c3": 3.3673857085307968, - "c4": 3.4127528191203336, - "c5": 3.4319360368057232, - "c6": 3.3701165154582053, - "c7": 3.3820814427032806 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199713, + "c3": 4.137771613499783, + "c4": 3.31021729079982, + "c5": 2.4826629680998566, + "c6": 1.6551086453999264, + "c7": 0.8275543226999632 }, "rgb": [77, 76, 132] }, @@ -374199,23 +374199,23 @@ "year": 1804, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -16.770180373823546, - "c2": 2.396030927971033, - "c3": -7.614601864185797, - "c4": -1.014725818196986, - "c5": -8.264428349627751, - "c6": 5.264835128270018, - "c7": 22.84279707196353 + "points": { + "c1": 12.774041171631069, + "c2": 15.16284583533487, + "c3": -15.993682774315173, + "c4": -18.487987816630344, + "c5": 9.338431102408308, + "c6": 24.767864019456987, + "c7": -18.225134981151218 }, - "vertexSeeds": { - "c1": 3.924475940544517, - "c2": 3.8549952775784995, - "c3": 3.91942835702221, - "c4": 3.671503388535578, - "c5": 3.95447049529525, - "c6": 3.7420840803339126, - "c7": 3.820382503304997 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245497, + "c3": 4.738788719371242, + "c4": 3.7910309754969984, + "c5": 2.843273231622743, + "c6": 1.8955154877484992, + "c7": 0.9477577438742439 }, "rgb": [58, 15, 49] }, @@ -374226,23 +374226,23 @@ "year": 1804, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -13.745765998423805, - "c2": -20.931126751206136, - "c3": 1.388972495478523, - "c4": -18.628916075038124, - "c5": -10.19838396880142, - "c6": -7.766435362997946, - "c7": 12.350064009992558 + "points": { + "c1": 9.048050295254562, + "c2": -17.764448191877733, + "c3": 13.33416052880169, + "c4": -12.090449595516985, + "c5": 19.846485617945277, + "c6": 25.27252032137401, + "c7": 19.422878369907842 }, - "vertexSeeds": { - "c1": 2.156735751295337, - "c2": 2.156735751295337, - "c3": 2.156735751295337, - "c4": 2.156735751295337, - "c5": 2.156735751295337, - "c6": 2.156735751295337, - "c7": 2.156735751295337 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -374253,23 +374253,23 @@ "year": 1804, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -3.7483700408917855, - "c2": 2.225971626305437, - "c3": -0.5417965978643515, - "c4": 6.652312383602897, - "c5": 7.420842948688197, - "c6": 21.394906607180666, - "c7": 8.47394267718839 + "points": { + "c1": -6.696696366069521, + "c2": 12.776694159655648, + "c3": -16.12495194737663, + "c4": 19.613086915517442, + "c5": 0.37280602770816884, + "c6": -22.81469697049943, + "c7": 12.462698441290257 }, - "vertexSeeds": { - "c1": 5.566996639160841, - "c2": 5.856177260701414, - "c3": 5.577601641985647, - "c4": 5.794598399934797, - "c5": 5.986685833530872, - "c6": 6.002967624377515, - "c7": 6.018591501979978 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790575, + "c3": 7.350901525658818, + "c4": 5.880721220527043, + "c5": 4.410540915395288, + "c6": 2.940360610263531, + "c7": 1.4701803051317746 }, "rgb": [222, 0, 59] }, @@ -374280,23 +374280,23 @@ "year": 1804, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 3.084301718232922, - "c2": 25.065292229637222, - "c3": 11.103020480934134, - "c4": 24.49800608768942, - "c5": -27.033524958043884, - "c6": -29.243022410574085, - "c7": -13.510542882332278 + "points": { + "c1": -33.86978726372049, + "c2": -11.888751252191273, + "c3": -18.85360516529966, + "c4": 21.31790496751509, + "c5": -30.12728997704299, + "c6": 5.211836308915451, + "c7": -26.84158969721131 }, - "vertexSeeds": { - "c1": 4.0905080540947605, - "c2": 4.273340147018303, - "c3": 4.347691668276802, - "c4": 4.204773184376786, - "c5": 4.125641537072032, - "c6": 4.255490142422756, - "c7": 4.015212039387091 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049927, + "c3": 5.201109570041614, + "c4": 4.160887656033288, + "c5": 3.1206657420249635, + "c6": 2.0804438280166497, + "c7": 1.0402219140083249 }, "rgb": [238, 201, 159] }, @@ -374307,23 +374307,23 @@ "year": 1804, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 28.734278502658853, - "c2": -18.589033566580497, - "c3": 20.024940959547756, - "c4": 34.688227199897085, - "c5": 19.59766559498952, - "c6": -1.2951992911973065, - "c7": -7.000518233006684 + "points": { + "c1": -0.1079147021044875, + "c2": -31.858092771865397, + "c3": -15.551036103391823, + "c4": -7.610448152461448, + "c5": -18.82160551460718, + "c6": 10.471424114943929, + "c7": 12.175264723055754 }, - "vertexSeeds": { - "c1": 3.6319606297616445, - "c2": 3.6582067025374605, - "c3": 3.927970239209059, - "c4": 3.8419550022267077, - "c5": 3.7055517556971282, - "c6": 3.7424293653171112, - "c7": 3.96017944219565 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366155, + "c3": 4.8081368469718, + "c4": 3.846509477577437, + "c5": 2.8848821081830818, + "c6": 1.9232547387887184, + "c7": 0.9616273693943637 }, "rgb": [222, 0, 59] }, @@ -374334,23 +374334,23 @@ "year": 1804, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 24.890054406655313, - "c2": -17.347699780234635, - "c3": 2.511965509322785, - "c4": -25.43706051654436, - "c5": -3.004516501995603, - "c6": 11.262372691102538, - "c7": 6.270518561961726 + "points": { + "c1": -19.809140286363583, + "c2": 27.498822461638827, + "c3": -29.952428211993208, + "c4": 21.87428952185026, + "c5": 14.280998828253768, + "c6": -12.837230750664421, + "c7": -24.251811523717873 }, - "vertexSeeds": { - "c1": 4.020702852771848, - "c2": 4.021840895491233, - "c3": 3.981670652095889, - "c4": 3.9797692346552798, - "c5": 3.8813832866139766, - "c6": 3.856679335045756, - "c7": 3.9050552619773202 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848822, + "c3": 5.08552935737402, + "c4": 4.068423485899218, + "c5": 3.0513176144244065, + "c6": 2.0342117429496045, + "c7": 1.0171058714748022 }, "rgb": [86, 146, 138] }, @@ -374361,23 +374361,23 @@ "year": 1804, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 3.9018027280563494, - "c2": -14.609020055506697, - "c3": 31.14770839419325, - "c4": -3.7064605738843923, - "c5": 13.241060568356904, - "c6": -24.619422002557254, - "c7": 15.912993466173877 + "points": { + "c1": -12.14659518501536, + "c2": 3.002817748657428, + "c3": 26.723042946092804, + "c4": 26.58511443992137, + "c5": -6.650085876993046, + "c6": 10.247288528731396, + "c7": -28.16747016661914 }, - "vertexSeeds": { - "c1": 5.819888741587025, - "c2": 5.503121416929159, - "c3": 5.29197190222687, - "c4": 5.650955412241085, - "c5": 5.475273231328107, - "c6": 5.450461435274023, - "c7": 5.658540934607754 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622747, + "c3": 7.027276930189549, + "c4": 5.621821544151647, + "c5": 4.2163661581137255, + "c6": 2.8109107720758235, + "c7": 1.4054553860379027 }, "rgb": [58, 15, 49] }, @@ -374388,23 +374388,23 @@ "year": 1804, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 1.9976193788114607, - "c2": -23.920602934316594, - "c3": 4.676417804630578, - "c4": -16.750855743577254, - "c5": -10.639940706052677, - "c6": 25.227066662819663, - "c7": -20.930745867402386 + "points": { + "c1": -11.432657138112905, + "c2": 15.208332023903505, + "c3": -8.406893217803855, + "c4": -11.668331136763797, + "c5": -1.4811487231145968, + "c6": -17.27125536276467, + "c7": 21.218118531776003 }, - "vertexSeeds": { - "c1": 2.1746974412005446, - "c2": 2.366454946722979, - "c3": 2.4677658118200263, - "c4": 2.2852583295823528, - "c5": 2.4427631511145522, - "c6": 2.168621581034174, - "c7": 2.3489832359493947 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886258, + "c3": 2.981969486823857, + "c4": 2.385575589459085, + "c5": 1.7891816920943129, + "c6": 1.1927877947295409, + "c7": 0.5963938973647721 }, "rgb": [77, 76, 132] }, @@ -374415,23 +374415,23 @@ "year": 1804, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -0.6294599817973179, - "c2": 21.72129005633093, - "c3": -24.54403807924087, - "c4": 15.226475908041316, - "c5": 3.3920202850631753, - "c6": -25.85804036523004, - "c7": 14.921953321036774 + "points": { + "c1": 23.405620696216396, + "c2": -7.7610314780470055, + "c3": 7.337349218791907, + "c4": 31.931458097786397, + "c5": 7.746502687551832, + "c6": -18.647305056199617, + "c7": 13.726470240685835 }, - "vertexSeeds": { - "c1": 3.3064618754180244, - "c2": 3.295162305060043, - "c3": 3.2923102899051138, - "c4": 3.3128477920235593, - "c5": 3.29105305601924, - "c6": 3.289827861214711, - "c7": 3.3015781074127926 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918191, + "c3": 3.975959315765107, + "c4": 3.1807674526121015, + "c5": 2.3855755894590955, + "c6": 1.5903837263060903, + "c7": 0.7951918631530055 }, "rgb": [222, 0, 59] }, @@ -374442,23 +374442,23 @@ "year": 1804, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 14.983938336072896, - "c2": 1.8072256592201938, - "c3": -18.85625063681255, - "c4": -19.724450028016, - "c5": -15.285899555479396, - "c6": 8.92901578136459, - "c7": -14.765780146754803 + "points": { + "c1": -0.0985048555384509, + "c2": 28.04314815128373, + "c3": -14.180997863397657, + "c4": 30.62482092781582, + "c5": -15.540741875244919, + "c6": -3.9729724300794196, + "c7": -18.769260320790423 }, - "vertexSeeds": { - "c1": 5.20695936873118, - "c2": 5.178710380086244, - "c3": 4.990529319462323, - "c4": 4.920799689996202, - "c5": 5.008884380785611, - "c6": 4.982409311354079, - "c7": 5.141245811187367 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020815, + "c3": 6.333795654184001, + "c4": 5.067036523347211, + "c5": 3.8002773925103956, + "c6": 2.5335182616736054, + "c7": 1.26675913083679 }, "rgb": [58, 15, 49] }, @@ -374469,23 +374469,23 @@ "year": 1804, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 4.542537646226371, - "c2": -20.513752890392492, - "c3": 4.728503391810996, - "c4": -6.825259751913087, - "c5": 10.621926263539045, - "c6": -0.9866540342359968, - "c7": 10.65538114138971 + "points": { + "c1": -20.707516142944296, + "c2": -15.918089365337021, + "c3": 5.016646795951964, + "c4": -16.824455532167164, + "c5": 26.21922360018653, + "c6": 11.149498953900313, + "c7": 24.772581842018774 }, - "vertexSeeds": { - "c1": 5.786365486625284, - "c2": 5.585938337679696, - "c3": 5.908228368389262, - "c4": 5.7552049965718926, - "c5": 5.710851938934766, - "c6": 5.912070185367281, - "c7": 5.879190617054289 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -374496,23 +374496,23 @@ "year": 1804, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 18.473602900414082, - "c2": -7.482901704784439, - "c3": 20.052340761671235, - "c4": -20.460265976650284, - "c5": -4.129833384479955, - "c6": 8.96472580014856, - "c7": 1.7901039323637349 + "points": { + "c1": -23.475391256703944, + "c2": -18.423275056209114, + "c3": -5.80072284752605, + "c4": 2.983972472983666, + "c5": -13.616120729064733, + "c6": -11.142988596997931, + "c7": -8.91346283660835 }, - "vertexSeeds": { - "c1": 1.1837945590678727, - "c2": 1.1933229220575243, - "c3": 1.232922157842748, - "c4": 1.1804394308626838, - "c5": 1.2544904672794341, - "c6": 1.3385932386849813, - "c7": 1.2631057779275996 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155336, + "c3": 1.6181229773462775, + "c4": 1.2944983818770213, + "c5": 0.970873786407765, + "c6": 0.6472491909385106, + "c7": 0.32362459546925615 }, "rgb": [222, 0, 59] }, @@ -374523,23 +374523,23 @@ "year": 1804, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 28.40731070040148, - "c2": -0.5256587284204031, - "c3": 2.06859069307297, - "c4": -14.746142275050008, - "c5": -22.2555950403319, - "c6": 30.361994613987264, - "c7": 29.95711830747682 + "points": { + "c1": 18.29827330657004, + "c2": -28.160843941705053, + "c3": -13.654856501466561, + "c4": -35.95301320747376, + "c5": 11.421322259124537, + "c6": 29.668207135757513, + "c7": -19.607712353070443 }, - "vertexSeeds": { - "c1": 6.183408798770378, - "c2": 6.142353627043689, - "c3": 6.137271318354544, - "c4": 6.1579925732708825, - "c5": 6.147424201555181, - "c6": 6.120486856449314, - "c7": 6.128346182605788 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911218, + "c3": 7.4202496532593285, + "c4": 5.936199722607557, + "c5": 4.452149791955668, + "c6": 2.9680998613037786, + "c7": 1.4840499306518893 }, "rgb": [58, 15, 49] }, @@ -374550,23 +374550,23 @@ "year": 1805, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": -42.56752523791253, - "c2": -17.594261576034484, - "c3": -40.2311889513462, - "c4": -46.85262752632198, - "c5": -9.446201072456248, - "c6": 49.53443323763862, - "c7": 6.850871465097271 + "points": { + "c1": -3.368016366820541, + "c2": -13.722212000943081, + "c3": -16.92602644121755, + "c4": 11.35679966545753, + "c5": 20.840211914294372, + "c6": 42.12479643164397, + "c7": -12.929866320810497 }, - "vertexSeeds": { - "c1": 12.70394469496738, - "c2": 12.903390906375233, - "c3": 12.293198983799208, - "c4": 12.194491852300034, - "c5": 11.851051886227141, - "c6": 11.902953094258956, - "c7": 12.83084576031764 + "offsets": { + "c1": 21.553398058252426, + "c2": 18.474341192787804, + "c3": 15.395284327323145, + "c4": 12.316227461858524, + "c5": 9.237170596393902, + "c6": 6.158113730929281, + "c7": 3.0790568654646213 }, "rgb": [86, 146, 138] }, @@ -374577,23 +374577,23 @@ "year": 1804, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -23.835374303743162, - "c2": 10.112778800853263, - "c3": 7.873207844403034, - "c4": -25.16201188797033, - "c5": 32.007047453547244, - "c6": -9.033599068242307, - "c7": -36.84186052905159 + "points": { + "c1": -24.590577132955868, + "c2": 28.34765591207274, + "c3": -27.589230997409825, + "c4": -31.78496748787837, + "c5": -17.89785292421825, + "c6": 23.034471090841002, + "c7": 16.556969853900597 }, - "vertexSeeds": { - "c1": 1.9670007361602992, - "c2": 1.7491816638502664, - "c3": 1.8212064394318659, - "c4": 1.8923975980504621, - "c5": 1.9521412768900195, - "c6": 1.78343564123821, - "c7": 1.8748126687025932 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233, + "c3": 2.427184466019419, + "c4": 1.9417475728155345, + "c5": 1.45631067961165, + "c6": 0.970873786407769, + "c7": 0.4854368932038845 }, "rgb": [222, 0, 59] }, @@ -374604,23 +374604,23 @@ "year": 1804, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -25.041485372326935, - "c2": -12.220221074612294, - "c3": 21.20280212201464, - "c4": 23.865246679312598, - "c5": 23.31001176128808, - "c6": -0.6329124620336728, - "c7": -8.925721002891482 + "points": { + "c1": -32.08724699453477, + "c2": -23.319537129773842, + "c3": -3.9741209649884404, + "c4": -26.005402093579264, + "c5": 15.705734286624633, + "c6": -18.20375341755997, + "c7": -20.047514520154515 }, - "vertexSeeds": { - "c1": 9.898103568585594, - "c2": 9.370598308764038, - "c3": 10.041875590639519, - "c4": 9.537110658493088, - "c5": 10.157055898373152, - "c6": 9.622588337641433, - "c7": 10.199519220872215 + "offsets": { + "c1": 17.216828478964402, + "c2": 14.757281553398055, + "c3": 12.29773462783171, + "c4": 9.838187702265365, + "c5": 7.3786407766990205, + "c6": 4.919093851132675, + "c7": 2.45954692556633 }, "rgb": [77, 76, 132] }, @@ -374631,23 +374631,23 @@ "year": 1805, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -7.388654644452316, - "c2": -8.102087594549744, - "c3": 18.862700112175865, - "c4": -20.859665232138006, - "c5": -28.709250273513508, - "c6": 42.66000624731911, - "c7": 39.90196820307445 + "points": { + "c1": 13.963640587665843, + "c2": 39.822942144050465, + "c3": -17.816963921274777, + "c4": -26.797682380015125, + "c5": 2.4955370989563477, + "c6": 7.640076159759225, + "c7": -41.8385083098133 }, - "vertexSeeds": { - "c1": 3.130415069362877, - "c2": 3.2340704130624673, - "c3": 3.2464331908365867, - "c4": 3.406463702752999, - "c5": 3.3862151312807907, - "c6": 3.1879222571231125, - "c7": 3.381626802463459 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.90984743411928, + "c3": 4.091539528432736, + "c4": 3.2732316227461906, + "c5": 2.4549237170596347, + "c6": 1.63661581137309, + "c7": 0.818307905686545 }, "rgb": [238, 201, 159] }, @@ -374658,23 +374658,23 @@ "year": 1804, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 2.8165426575933736, - "c2": 15.52868832680251, - "c3": 14.78867157149299, - "c4": 24.67285046440073, - "c5": -14.053501135171134, - "c6": -6.956265651579045, - "c7": 3.249370181863398 + "points": { + "c1": 19.019129756837415, + "c2": 27.73602686002217, + "c3": 0.7583324441772135, + "c4": -23.672503396556905, + "c5": 4.158647843815885, + "c6": 22.78984189638377, + "c7": 30.38489222423742 }, - "vertexSeeds": { - "c1": 7.3746711983515505, - "c2": 7.923092115266558, - "c3": 7.898808991237016, - "c4": 7.347145613116842, - "c5": 7.863003910268824, - "c6": 7.810174923615633, - "c7": 7.359341034482711 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651874, + "c3": 9.570041608876565, + "c4": 7.656033287101256, + "c5": 5.742024965325928, + "c6": 3.8280166435506184, + "c7": 1.9140083217753092 }, "rgb": [222, 0, 59] }, @@ -374685,23 +374685,23 @@ "year": 1805, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 13.07829070666066, - "c2": 10.269262650672466, - "c3": 32.8655160265869, - "c4": -28.312879146262027, - "c5": -4.8978568643509135, - "c6": 2.264255582837457, - "c7": -9.708297607746605 + "points": { + "c1": -43.55183422032934, + "c2": 7.656197438930512, + "c3": -26.11063747027497, + "c4": -11.349925490064663, + "c5": -8.787990104602613, + "c6": -0.3520620959374696, + "c7": 30.068668024206687 }, - "vertexSeeds": { - "c1": 2.0101841258962363, - "c2": 1.995575511462073, - "c3": 1.988580076650753, - "c4": 2.0905589923053483, - "c5": 1.962870334181435, - "c6": 2.0667002761717757, - "c7": 2.108470377925411 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.051317614424408, + "c3": 2.5427646786870097, + "c4": 2.0342117429496054, + "c5": 1.5256588072122068, + "c6": 1.0171058714748027, + "c7": 0.5085529357374042 }, "rgb": [86, 146, 138] }, @@ -374712,23 +374712,23 @@ "year": 1804, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 14.810509643711452, - "c2": -18.67191308916151, - "c3": 13.836674957007457, - "c4": -22.001975554666092, - "c5": 6.645006661176499, - "c6": -13.740435659376407, - "c7": 13.027627016652698 + "points": { + "c1": -27.34702721801562, + "c2": -7.645990798012495, + "c3": -14.957806707837788, + "c4": 21.527185143553663, + "c5": 12.961716894787468, + "c6": 6.222636151167254, + "c7": -18.530260126621442 }, - "vertexSeeds": { - "c1": 3.2446583125935393, - "c2": 3.482659902414746, - "c3": 3.1910425001933698, - "c4": 3.3249840177775685, - "c5": 3.404119609796931, - "c6": 3.2552834954461436, - "c7": 3.3162121860915055 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400836, + "c3": 4.253351826167359, + "c4": 3.402681460933891, + "c5": 2.5520110957004225, + "c6": 1.7013407304669455, + "c7": 0.8506703652334772 }, "rgb": [86, 146, 138] }, @@ -374739,23 +374739,23 @@ "year": 1805, "resistanceReported": true, "duration": 36806400, - "curveSeeds": { - "c1": 48.95683453032495, - "c2": 17.659286010644287, - "c3": -28.52086783015214, - "c4": -9.637461105255724, - "c5": -30.559731958116316, - "c6": -23.008014408058347, - "c7": 1.6811783937084002 + "points": { + "c1": -13.798199916794935, + "c2": 52.149089513023874, + "c3": 51.14283700233815, + "c4": 9.861455209975226, + "c5": -39.73766909914087, + "c6": -50.34154004168959, + "c7": 35.29750831761674 }, - "vertexSeeds": { - "c1": 4.085603614374064, - "c2": 4.230143375946345, - "c3": 3.977779518560508, - "c4": 3.5937831707520025, - "c5": 4.074335925083215, - "c6": 4.015761495773421, - "c7": 3.8070708080552924 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.1086453999075365, + "c4": 4.086916319926027, + "c5": 3.065187239944523, + "c6": 2.0434581599630137, + "c7": 1.0217290799815044 }, "rgb": [77, 76, 132] }, @@ -374766,23 +374766,23 @@ "year": 1804, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 21.536280284267022, - "c2": -23.97704716293092, - "c3": -27.81422506738756, - "c4": 17.544745377067002, - "c5": 3.9359827858793253, - "c6": 17.477835203231393, - "c7": 37.018854481055435 + "points": { + "c1": 35.12624949929451, + "c2": -10.249300294380568, + "c3": 5.1385690931071935, + "c4": 34.8754508574607, + "c5": 16.052847039467146, + "c6": -5.8203206668107725, + "c7": 12.618850277083162 }, - "vertexSeeds": { - "c1": 4.508238912957919, - "c2": 4.529585608152215, - "c3": 4.724323290700713, - "c4": 4.60287930713534, - "c5": 4.74671807131674, - "c6": 4.706706070171143, - "c7": 4.785765968258812 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.87933425797504, + "c3": 5.732778548312523, + "c4": 4.586222838650022, + "c5": 3.43966712898752, + "c6": 2.2931114193250037, + "c7": 1.1465557096625019 }, "rgb": [77, 76, 132] }, @@ -374793,23 +374793,23 @@ "year": 1804, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 18.747206935386536, - "c2": 6.511544213137618, - "c3": -16.726521553737115, - "c4": -30.621257112257712, - "c5": 0.8371753127707535, - "c6": 13.506886788572515, - "c7": 2.3209476993267373 + "points": { + "c1": -34.34841368867466, + "c2": 2.921297694570903, + "c3": 25.158480952944508, + "c4": -11.652201647394794, + "c5": -24.95653777952072, + "c6": -28.173079103623472, + "c7": 32.74837034033647 }, - "vertexSeeds": { - "c1": 3.5028785040115493, - "c2": 3.370238122645215, - "c3": 3.3807687574531236, - "c4": 3.298154870950323, - "c5": 3.2368195010830996, - "c6": 3.4001943638483576, - "c7": 3.6676062512247256 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475727, + "c3": 3.7216828478964374, + "c4": 2.977346278317153, + "c5": 2.2330097087378635, + "c6": 1.488673139158574, + "c7": 0.7443365695792844 }, "rgb": [86, 146, 138] }, @@ -374820,23 +374820,23 @@ "year": 1804, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -12.404978673808973, - "c2": 20.250551473097527, - "c3": 27.77233047443197, - "c4": 27.02801991274259, - "c5": 27.054017375235492, - "c6": -6.334005098731939, - "c7": -10.041420295802006 + "points": { + "c1": 0.786649086677766, + "c2": 12.019483225770589, + "c3": 3.1174299432440584, + "c4": -25.929049081446372, + "c5": -12.665931660039057, + "c6": -29.624826665286186, + "c7": -28.408915506485172 }, - "vertexSeeds": { - "c1": 6.133911626830358, - "c2": 6.276508381809294, - "c3": 6.386341751491172, - "c4": 6.7462319721426, - "c5": 6.609022178028359, - "c6": 6.547617623455453, - "c7": 6.695720688003836 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.76421636615812, + "c3": 8.136846971798422, + "c4": 6.509477577438741, + "c5": 4.88210818307906, + "c6": 3.2547387887193615, + "c7": 1.6273693943596808 }, "rgb": [86, 146, 138] }, @@ -374847,23 +374847,23 @@ "year": 1804, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -24.149135424518427, - "c2": -19.14091108455007, - "c3": 15.99050617810186, - "c4": -6.844400965787607, - "c5": -3.1156412827012687, - "c6": 21.136464633401054, - "c7": -6.549233582802941 + "points": { + "c1": 14.551518810137857, + "c2": 18.148313030845287, + "c3": 15.514053259508024, + "c4": -17.66868215286864, + "c5": 0.3729351336066564, + "c6": 24.24378789512719, + "c7": -18.112120366772697 }, - "vertexSeeds": { - "c1": 7.668795166129289, - "c2": 7.811068687917987, - "c3": 7.26051178979489, - "c4": 7.75437542254557, - "c5": 7.533124455561319, - "c6": 7.152509368728967, - "c7": 7.713351584316861 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410541, + "c3": 9.431345353675452, + "c4": 7.545076282940361, + "c5": 5.658807212205271, + "c6": 3.7725381414701804, + "c7": 1.8862690707350902 }, "rgb": [238, 201, 159] }, @@ -374874,23 +374874,23 @@ "year": 1804, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -7.895046274734032, - "c2": -22.015319302706153, - "c3": -26.02362015962279, - "c4": -0.9480806554461942, - "c5": -14.26863810210406, - "c6": 16.9741765111114, - "c7": -18.459184695811 + "points": { + "c1": 16.854264213315073, + "c2": 2.9063188650733274, + "c3": 28.032368509138724, + "c4": -26.76357620838595, + "c5": 8.36616997420872, + "c6": -5.827806694016598, + "c7": 23.913313498782752 }, - "vertexSeeds": { - "c1": 5.363894479832991, - "c2": 5.738246652090395, - "c3": 5.355058623058135, - "c4": 5.481111386047718, - "c5": 5.672092093490048, - "c6": 5.565097917133261, - "c7": 5.794934980463171 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055483, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022186, + "c7": 1.386962552011093 }, "rgb": [238, 201, 159] }, @@ -374901,23 +374901,23 @@ "year": 1804, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -5.169869065582279, - "c2": -1.8312641611918963, - "c3": -18.67995274714078, - "c4": -21.13440262239184, - "c5": -6.039664663870578, - "c6": -9.561740245440824, - "c7": -27.881071042980302 + "points": { + "c1": 2.4189125038957258, + "c2": -28.043433143097, + "c3": 26.946841917919265, + "c4": 0.6055203144831793, + "c5": -18.12453196138121, + "c6": 10.768981656418106, + "c7": 34.726564566122775 }, - "vertexSeeds": { - "c1": 4.925126816715202, - "c2": 5.232094324336317, - "c3": 5.1749899266888795, - "c4": 5.139539781844434, - "c5": 4.917088975744078, - "c6": 5.082055716518816, - "c7": 4.764356636193294 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980588, + "c3": 6.310679611650478, + "c4": 5.048543689320386, + "c5": 3.786407766990294, + "c6": 2.524271844660193, + "c7": 1.2621359223300919 }, "rgb": [77, 76, 132] }, @@ -374928,23 +374928,23 @@ "year": 1804, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -12.636268220396097, - "c2": 20.0261353357973, - "c3": 7.213815886133531, - "c4": 19.01794022768412, - "c5": -4.974468152169091, - "c6": -7.008242516622708, - "c7": -26.06265646285191 + "points": { + "c1": 22.156538945102824, + "c2": 28.829974847496075, + "c3": 8.113813696821182, + "c4": -21.607360939448117, + "c5": 13.512388248074686, + "c6": 20.164679171088004, + "c7": -9.072349763139773 }, - "vertexSeeds": { - "c1": 6.437234880222776, - "c2": 6.196755983021415, - "c3": 6.2226860273754045, - "c4": 6.290942278518455, - "c5": 6.214297500320393, - "c6": 6.39257665534828, - "c7": 6.18439323149142 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393897, + "c3": 7.697642163661581, + "c4": 6.158113730929264, + "c5": 4.618585298196948, + "c6": 3.079056865464632, + "c7": 1.539528432732316 }, "rgb": [77, 76, 132] }, @@ -374955,23 +374955,23 @@ "year": 1804, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 1.9542108358487411, - "c2": -0.18440309518798514, - "c3": -16.24166937637242, - "c4": 4.3781763038097985, - "c5": 22.543934480271695, - "c6": 5.665998000789596, - "c7": 0.7626248507716227 + "points": { + "c1": 16.272416363765252, + "c2": 3.4605924375446087, + "c3": 13.880663614219472, + "c4": -8.638409565309349, + "c5": -6.575460112466331, + "c6": -16.84096437089059, + "c7": -3.7499407446582467 }, - "vertexSeeds": { - "c1": 1.4263823542003053, - "c2": 1.3011836654425442, - "c3": 1.365368900192878, - "c4": 1.3149072587771564, - "c5": 1.3857811428395856, - "c6": 1.4101855983989793, - "c7": 1.3507901640180382 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166417, + "c3": 1.73370319001387, + "c4": 1.3869625520110944, + "c5": 1.040221914008323, + "c6": 0.6934812760055472, + "c7": 0.34674063800277577 }, "rgb": [86, 146, 138] }, @@ -374982,23 +374982,23 @@ "year": 1804, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -14.482706825624035, - "c2": -5.0241543560349164, - "c3": -7.130683278679506, - "c4": -26.398371729496276, - "c5": -8.82361607100093, - "c6": 21.49475295260557, - "c7": 3.161414708211108 + "points": { + "c1": -1.0259030065340013, + "c2": 16.30264475432029, + "c3": -21.682162571969805, + "c4": 4.352028199021284, + "c5": -21.764680604884415, + "c6": -32.259943091765, + "c7": -30.84561590151135 }, - "vertexSeeds": { - "c1": 2.376483403349364, - "c2": 2.1903397120422077, - "c3": 2.1375335029751046, - "c4": 2.0520829243314314, - "c5": 2.061693398447843, - "c6": 2.269171172111641, - "c7": 2.1894471255773316 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.46740638002774, + "c3": 2.889505316689782, + "c4": 2.3116042533518266, + "c5": 1.7337031900138686, + "c6": 1.1558021266759133, + "c7": 0.5779010633379582 }, "rgb": [77, 76, 132] }, @@ -375009,23 +375009,23 @@ "year": 1804, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -28.611997059965915, - "c2": 6.9277702734109745, - "c3": -18.14957148832294, - "c4": -3.482318343415809, - "c5": -22.012093394492734, - "c6": -22.84806370600733, - "c7": -8.547176211199265 + "points": { + "c1": 4.268481700880528, + "c2": -8.476998507028558, + "c3": 25.943740204895093, + "c4": -25.59460455821946, + "c5": -15.535253402763534, + "c6": -33.371606442853036, + "c7": 11.395506077555147 }, - "vertexSeeds": { - "c1": 2.9342763022949017, - "c2": 2.7814696344562484, - "c3": 2.9850193627122126, - "c4": 2.8839065655760514, - "c5": 2.919873938626486, - "c6": 2.8813844282427326, - "c7": 2.9210404527196503 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274617, + "c3": 3.606102635228845, + "c4": 2.8848821081830853, + "c5": 2.1636615811373137, + "c6": 1.4424410540915427, + "c7": 0.7212205270457713 }, "rgb": [58, 15, 49] }, @@ -375036,23 +375036,23 @@ "year": 1804, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 12.940422710992216, - "c2": -22.134798577837838, - "c3": 19.870354082949255, - "c4": 0.008080708198562547, - "c5": 28.35086342203762, - "c6": 19.842669046068153, - "c7": -10.165985705884722 + "points": { + "c1": 26.781790316764592, + "c2": -25.785395498271217, + "c3": -20.721671093509393, + "c4": -14.372355535212495, + "c5": -5.772625729711567, + "c6": 8.04210239221166, + "c7": -9.193313463009268 }, - "vertexSeeds": { - "c1": 4.690703841454887, - "c2": 4.717330565281802, - "c3": 4.807548658204452, - "c4": 4.87416157556375, - "c5": 4.739109011892245, - "c6": 4.922360894672518, - "c7": 4.695967639434122 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181233, + "c4": 4.789644012944979, + "c5": 3.592233009708734, + "c6": 2.3948220064724897, + "c7": 1.1974110032362448 }, "rgb": [58, 15, 49] }, @@ -375063,23 +375063,23 @@ "year": 1804, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 15.64444844594733, - "c2": -31.199986152063, - "c3": 21.427275195013113, - "c4": -26.529698931048145, - "c5": 17.715429679504727, - "c6": -22.691097867146723, - "c7": -2.752770495758277 + "points": { + "c1": -29.47189829634996, + "c2": 24.216620346787188, + "c3": -5.257785259407719, + "c4": 0.14570064463227794, + "c5": -8.73909073577521, + "c6": 24.166876382869944, + "c7": -26.813626090447652 }, - "vertexSeeds": { - "c1": 6.709343247527192, - "c2": 7.09604828214647, - "c3": 6.847380262325072, - "c4": 7.139141698124264, - "c5": 6.616182504810932, - "c6": 7.108684836302256, - "c7": 6.830630654367103 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123435, + "c3": 8.691631992602874, + "c4": 6.953305594082295, + "c5": 5.2149791955617175, + "c6": 3.476652797041157, + "c7": 1.7383263985205786 }, "rgb": [77, 76, 132] }, @@ -375090,23 +375090,23 @@ "year": 1804, "resistanceReported": true, "duration": 20908800, - "curveSeeds": { - "c1": -10.588158287909565, - "c2": -23.956286666760477, - "c3": -11.692831635698056, - "c4": -20.621031635170404, - "c5": 22.28630651198408, - "c6": 14.692398703833724, - "c7": 23.09428671224557 + "points": { + "c1": -4.465718556368508, + "c2": -20.568646024488217, + "c3": -8.580821981443037, + "c4": -8.734498641178025, + "c5": 16.41785992459956, + "c6": -23.920728192917135, + "c7": -33.00026048143292 }, - "vertexSeeds": { - "c1": 4.718847807040739, - "c2": 4.291328972357985, - "c3": 4.312376355010268, - "c4": 4.475717875069789, - "c5": 4.680950956861583, - "c6": 4.5434062407583955, - "c7": 4.295816293752899 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814147, + "c3": 5.640314378178457, + "c4": 4.512251502542765, + "c5": 3.3841886269070733, + "c6": 2.2561257512713824, + "c7": 1.1280628756356912 }, "rgb": [86, 146, 138] }, @@ -375117,23 +375117,23 @@ "year": 1804, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 26.178049405381245, - "c2": -3.8381522874540295, - "c3": 26.943494707145163, - "c4": 17.929779321423183, - "c5": 14.464525050728312, - "c6": 15.022819904367147, - "c7": -6.314886729725401 + "points": { + "c1": -12.733157918615316, + "c2": -20.156735054809566, + "c3": -11.381471651785485, + "c4": -5.457836017711717, + "c5": 19.45057588227187, + "c6": 18.49542463801101, + "c7": 2.7951353373958554 }, - "vertexSeeds": { - "c1": 2.6765962717617815, - "c2": 2.804402952490281, - "c3": 2.69995616365425, - "c4": 2.979138140484398, - "c5": 2.748062191025873, - "c6": 2.828454646501645, - "c7": 3.038900309730478 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355063, + "c3": 3.6523347202958876, + "c4": 2.9218677762367116, + "c5": 2.1914008321775356, + "c6": 1.460933888118352, + "c7": 0.730466944059176 }, "rgb": [58, 15, 49] }, @@ -375144,23 +375144,23 @@ "year": 1804, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 19.24693395415759, - "c2": 21.88990721060646, - "c3": -26.91201749767335, - "c4": 18.835474907039014, - "c5": -1.4593748843890175, - "c6": 25.127133340956412, - "c7": -13.546282165737136 + "points": { + "c1": 21.82503611652293, + "c2": -20.987280277939238, + "c3": 27.413429384838537, + "c4": 19.424026479919966, + "c5": -1.1070510209261357, + "c6": 29.17730029615082, + "c7": 7.892365563700217 }, - "vertexSeeds": { - "c1": 6.205609471107062, - "c2": 6.297539828051343, - "c3": 5.9315969091968865, - "c4": 5.899950447058743, - "c5": 6.03759234240844, - "c6": 6.38094887386495, - "c7": 6.38436469076905 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434113, + "c3": 7.720758206195106, + "c4": 6.1766065649560815, + "c5": 4.632454923717057, + "c6": 3.0883032824780496, + "c7": 1.5441516412390248 }, "rgb": [77, 76, 132] }, @@ -375171,23 +375171,23 @@ "year": 1804, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -4.770407460298408, - "c2": 4.504390531848298, - "c3": 0.8302516742363402, - "c4": 24.78056275113994, - "c5": -1.6923730730156272, - "c6": 25.228014023386464, - "c7": 23.788516959658487 + "points": { + "c1": -17.467472316753756, + "c2": 15.87021613680762, + "c3": 23.045654825726864, + "c4": 1.3228460081543894, + "c5": 27.286652077616452, + "c6": 8.364935980114183, + "c7": 17.448108371328267 }, - "vertexSeeds": { - "c1": 4.994007267226987, - "c2": 5.245318823074686, - "c3": 4.821944464612005, - "c4": 5.062821471614575, - "c5": 5.298601327281538, - "c6": 4.9276062218118115, - "c7": 5.2134910080900685 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784567, + "c4": 5.12251502542764, + "c5": 3.8418862690707325, + "c6": 2.5612575127138246, + "c7": 1.2806287563569168 }, "rgb": [58, 15, 49] }, @@ -375198,23 +375198,23 @@ "year": 1804, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 23.472410437611014, - "c2": -11.856578663848826, - "c3": -23.78076681828481, - "c4": -4.13949369420741, - "c5": -26.258805244765163, - "c6": -27.13912131399434, - "c7": 19.65344640260864 + "points": { + "c1": 22.770564178966776, + "c2": -8.493552162627466, + "c3": 25.500878778649717, + "c4": 21.73045184538113, + "c5": -3.6058735744902357, + "c6": -15.896515463580034, + "c7": -14.944262764701278 }, - "vertexSeeds": { - "c1": 5.551123005640757, - "c2": 5.254197609751328, - "c3": 5.28499920767698, - "c4": 5.456016740739093, - "c5": 5.043366593890688, - "c6": 5.422318838096557, - "c7": 5.264320242764067 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543695, + "c3": 6.634304207119734, + "c4": 5.307443365695791, + "c5": 3.9805825242718473, + "c6": 2.6537216828478862, + "c7": 1.3268608414239431 }, "rgb": [238, 201, 159] }, @@ -375225,23 +375225,23 @@ "year": 1804, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -5.777567042232132, - "c2": -13.857054639158056, - "c3": -17.36597063667307, - "c4": -1.0912053906243457, - "c5": -23.277230263220716, - "c6": -18.976933031509127, - "c7": -14.73251504169027 + "points": { + "c1": -3.746602871469367, + "c2": 19.540388214425864, + "c3": 19.140959689350343, + "c4": -15.119553282054186, + "c5": 1.2893006439974322, + "c6": -25.385811835214913, + "c7": 6.872791846248635 }, - "vertexSeeds": { - "c1": 5.0024075492201305, - "c2": 5.167601563577389, - "c3": 5.063356322135158, - "c4": 5.091233069038755, - "c5": 5.323028578935524, - "c6": 5.058878138604016, - "c7": 5.007063145915025 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382799, + "c3": 6.541840036985663, + "c4": 5.233472029588527, + "c5": 3.92510402219139, + "c6": 2.616736014794272, + "c7": 1.308368007397136 }, "rgb": [238, 201, 159] }, @@ -375252,23 +375252,23 @@ "year": 1805, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -18.595969286834592, - "c2": -24.929373949706857, - "c3": -7.1353240315464035, - "c4": 11.522008603264666, - "c5": 7.487321876484671, - "c6": 22.097976972079913, - "c7": 18.01417963968874 + "points": { + "c1": 28.066022510768477, + "c2": 32.49691450910666, + "c3": 25.45110435500905, + "c4": 0.11281941448097399, + "c5": 29.470790884876934, + "c6": 30.301351289344794, + "c7": -10.913188712879695 }, - "vertexSeeds": { - "c1": 5.7348833064264975, - "c2": 5.849702955566843, - "c3": 5.868932726315073, - "c4": 5.911647307113112, - "c5": 5.838016960146222, - "c6": 5.813895116412261, - "c7": 5.859256492217929 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.54368932038835, + "c3": 7.119741100323624, + "c4": 5.6957928802588995, + "c5": 4.271844660194175, + "c6": 2.8478964401294498, + "c7": 1.4239482200647249 }, "rgb": [86, 146, 138] }, @@ -375279,23 +375279,23 @@ "year": 1806, "resistanceReported": false, "duration": 55555200, - "curveSeeds": { - "c1": -6.553127268292727, - "c2": -21.376408448830674, - "c3": -31.653182925992375, - "c4": 15.804505221044082, - "c5": -50.61457758656964, - "c6": 31.87411118775256, - "c7": 40.85289425809688 + "points": { + "c1": -30.968702008372397, + "c2": 57.70392751476436, + "c3": 5.846336946307801, + "c4": -48.23510368027849, + "c5": 42.23141711926738, + "c6": -44.04475873611047, + "c7": -5.0846508353216535 }, - "vertexSeeds": { - "c1": 5.105820040474901, - "c2": 5.044410379372614, - "c3": 5.882417072148435, - "c4": 2.9501364059449444, - "c5": 5.901394365439362, - "c6": 3.2046652827861055, - "c7": 6.457086526662188 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284326, + "c3": 8.78409616273694, + "c4": 7.027276930189553, + "c5": 5.270457697642164, + "c6": 3.513638465094776, + "c7": 1.756819232547388 }, "rgb": [222, 0, 59] }, @@ -375306,23 +375306,23 @@ "year": 1804, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 23.211211273919922, - "c2": -15.677833192520117, - "c3": 0.7921790965520827, - "c4": -3.499219923214504, - "c5": 24.037438062148553, - "c6": 1.1765283571147798, - "c7": -9.502040064881205 + "points": { + "c1": 22.494795944853173, + "c2": -23.17472925382542, + "c3": 5.353405066309804, + "c4": -6.741787400304663, + "c5": -19.917907455799522, + "c6": -8.520908067448609, + "c7": -9.014684343364664 }, - "vertexSeeds": { - "c1": 5.886964453067472, - "c2": 6.06642229280291, - "c3": 5.847974009106871, - "c4": 6.29265695458134, - "c5": 6.35506438966355, - "c6": 6.143062128695201, - "c7": 5.96387170520575 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313451, + "c3": 7.651410078594539, + "c4": 6.121128062875629, + "c5": 4.590846047156735, + "c6": 3.0605640314378233, + "c7": 1.5302820157189116 }, "rgb": [77, 76, 132] }, @@ -375333,23 +375333,23 @@ "year": 1804, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -9.334748593223576, - "c2": -5.148897345445047, - "c3": -12.25050507975719, - "c4": -23.366984885217107, - "c5": 0.30827965108095157, - "c6": -6.276463890560862, - "c7": -13.419724561490185 + "points": { + "c1": -14.679620459316638, + "c2": -7.135898088095097, + "c3": 20.291686422420316, + "c4": -8.92393147608082, + "c5": 0.7630384486916206, + "c6": -18.09883186689079, + "c7": 1.9357522516678891 }, - "vertexSeeds": { - "c1": 4.305817839495926, - "c2": 4.1346689306034135, - "c3": 4.177208042038726, - "c4": 4.1292275919991015, - "c5": 4.338257855964963, - "c6": 4.282132983351126, - "c7": 4.1001503384445925 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291259, + "c3": 5.3398058252427125, + "c4": 4.271844660194176, + "c5": 3.2038834951456296, + "c6": 2.135922330097083, + "c7": 1.0679611650485359 }, "rgb": [58, 15, 49] }, @@ -375360,23 +375360,23 @@ "year": 1804, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 28.468955587231875, - "c2": -23.927880507074065, - "c3": -2.101427745621667, - "c4": 25.30108530872687, - "c5": 0.2859525367324949, - "c6": 26.55139856403642, - "c7": 5.877884306926433 + "points": { + "c1": -31.01861723979101, + "c2": -30.916458999021543, + "c3": 29.32375569319148, + "c4": -6.931262015461254, + "c5": -27.43198457364767, + "c6": -26.025414033987992, + "c7": -7.236961884162877 }, - "vertexSeeds": { - "c1": 5.83857009090699, - "c2": 5.857442573402847, - "c3": 5.971870366132617, - "c4": 5.937178082854306, - "c5": 5.9404773932451125, - "c6": 5.890179659439335, - "c7": 5.860082790775641 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -375387,23 +375387,23 @@ "year": 1804, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -3.6617211452931, - "c2": 29.245551475600053, - "c3": -25.752602500690372, - "c4": 29.197662441527093, - "c5": -1.4346148052864223, - "c6": -0.9710884207639907, - "c7": 11.539318650455051 + "points": { + "c1": -13.787202173812652, + "c2": 27.118053324219517, + "c3": 13.344782035368553, + "c4": -2.1236489523930757, + "c5": -16.355432975742218, + "c6": 2.739358256403335, + "c7": 30.149852278790725 }, - "vertexSeeds": { - "c1": 2.6359061423224395, - "c2": 2.4092264032913655, - "c3": 2.6481563111264013, - "c4": 2.4732409224534795, - "c5": 2.4685414908689123, - "c6": 2.3615930286214573, - "c7": 2.6394259864540928 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631067, + "c3": 3.236245954692555, + "c4": 2.5889967637540425, + "c5": 1.94174757281553, + "c6": 1.2944983818770213, + "c7": 0.6472491909385123 }, "rgb": [58, 15, 49] }, @@ -375414,23 +375414,23 @@ "year": 1804, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 18.655785333274167, - "c2": -24.787823759435064, - "c3": 22.53063682260555, - "c4": 23.93346284125505, - "c5": 19.748803513485186, - "c6": -9.611208449485929, - "c7": 3.769356644256142 + "points": { + "c1": 3.7752873712550326, + "c2": 9.490144429464962, + "c3": 28.06861864788577, + "c4": -22.58218884051424, + "c5": 24.666409537375785, + "c6": 25.539965569650647, + "c7": -17.84795878044924 }, - "vertexSeeds": { - "c1": 6.233334738078515, - "c2": 6.205913019636631, - "c3": 6.199292695680685, - "c4": 6.223724274200786, - "c5": 6.208518165627147, - "c6": 6.199872877790617, - "c7": 6.205094932514352 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.932038834951499, + "c3": 7.443365695792965, + "c4": 5.9546925566344315, + "c5": 4.466019417475601, + "c6": 2.9773462783170674, + "c7": 1.4886731391585337 }, "rgb": [58, 15, 49] }, @@ -375441,23 +375441,23 @@ "year": 1805, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 15.400747526657803, - "c2": 12.092803679590851, - "c3": 19.388952845853304, - "c4": -22.991060801534754, - "c5": 34.85294597032163, - "c6": -15.480023031724045, - "c7": -9.724817626674103 + "points": { + "c1": 20.206601147953208, + "c2": 14.685108383910453, + "c3": 18.719319642265035, + "c4": 37.09238029449037, + "c5": -3.8570523139187642, + "c6": -14.478886765072549, + "c7": -16.455931441670778 }, - "vertexSeeds": { - "c1": 5.589927630425879, - "c2": 5.36522843798274, - "c3": 5.098874805884705, - "c4": 5.502903821161743, - "c5": 5.4679595699540045, - "c6": 5.59433060149832, - "c7": 5.517465645908707 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664348, + "c3": 6.7036523347202985, + "c4": 5.362921867776231, + "c5": 4.022191400832183, + "c6": 2.6814609338881157, + "c7": 1.3407304669440487 }, "rgb": [222, 0, 59] }, @@ -375468,23 +375468,23 @@ "year": 1804, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 9.719425859580141, - "c2": 15.484009756592798, - "c3": -13.550375989482186, - "c4": 13.3980266369946, - "c5": 7.58456648877673, - "c6": -1.376542752229227, - "c7": -11.69340149291218 + "points": { + "c1": 10.767945532097634, + "c2": -22.68574120520748, + "c3": 16.564005324793925, + "c4": -27.24634150037899, + "c5": 25.320400659868305, + "c6": -23.24048358152454, + "c7": 0.00241511387817539 }, - "vertexSeeds": { - "c1": 6.577258261123022, - "c2": 6.894800549639657, - "c3": 6.382059975720262, - "c4": 6.283773932245432, - "c5": 6.414009680230312, - "c6": 6.865283812468425, - "c7": 6.615252724176674 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359217, + "c3": 8.25242718446601, + "c4": 6.601941747572817, + "c5": 4.951456310679609, + "c6": 3.3009708737863996, + "c7": 1.650485436893191 }, "rgb": [222, 0, 59] }, @@ -375495,23 +375495,23 @@ "year": 1804, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -0.7705280140535073, - "c2": -6.6454111727988945, - "c3": -19.498431973587675, - "c4": 12.401532607947832, - "c5": -24.850047221518626, - "c6": 14.128250609664025, - "c7": 14.311203257232844 + "points": { + "c1": 19.485875777512685, + "c2": -18.390012776957324, + "c3": -27.318771165511702, + "c4": 24.094593572824426, + "c5": 5.457539231752651, + "c6": 10.873909758860076, + "c7": 12.40503292707319 }, - "vertexSeeds": { - "c1": 6.053661677307135, - "c2": 5.637106585120298, - "c3": 5.947775043823964, - "c4": 5.64708788184108, - "c5": 5.794747780221, - "c6": 5.846386086410504, - "c7": 5.643117132358703 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.9875173370319, + "c3": 7.489597780859917, + "c4": 5.991678224687933, + "c5": 4.49375866851595, + "c6": 2.9958391123439667, + "c7": 1.4979195561719834 }, "rgb": [238, 201, 159] }, @@ -375522,23 +375522,23 @@ "year": 1804, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -24.580729618739966, - "c2": 27.67030541549283, - "c3": 20.63221367017282, - "c4": -1.9331357251783459, - "c5": -19.84869828006095, - "c6": -4.64164892119198, - "c7": 28.52168582583639 + "points": { + "c1": -17.26382561841566, + "c2": -0.4628824821424331, + "c3": 4.91760037500617, + "c4": -26.897847640136966, + "c5": 19.972135247586092, + "c6": -17.32450595370779, + "c7": 30.77284684997849 }, - "vertexSeeds": { - "c1": 4.329247248231278, - "c2": 4.059004617845859, - "c3": 4.232479393519307, - "c4": 4.254906169809594, - "c5": 4.219872655975579, - "c6": 4.229471681766513, - "c7": 4.278603909713472 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090151, + "c3": 5.2242256125751325, + "c4": 4.179380490060104, + "c5": 3.1345353675450753, + "c6": 2.0896902450300465, + "c7": 1.0448451225150288 }, "rgb": [86, 146, 138] }, @@ -375549,23 +375549,23 @@ "year": 1804, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -3.534330487015321, - "c2": -7.7904657824659225, - "c3": 18.972199383096736, - "c4": -27.890365593140448, - "c5": 8.257403528723792, - "c6": -0.8894591858921146, - "c7": 1.7053861632167333 + "points": { + "c1": 16.624099439474037, + "c2": -6.640658803169519, + "c3": -21.20596760455968, + "c4": 28.37618719330709, + "c5": 21.908195825938897, + "c6": -23.83746487067299, + "c7": 12.161530429989803 }, - "vertexSeeds": { - "c1": 7.752054983127095, - "c2": 7.739203712295491, - "c3": 7.6432209459299125, - "c4": 7.9793405796942025, - "c5": 7.985352106480636, - "c6": 7.875513291497751, - "c7": 7.785321513494312 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571429, + "c3": 9.523809523809524, + "c4": 7.619047619047619, + "c5": 5.714285714285714, + "c6": 3.8095238095238093, + "c7": 1.9047619047619047 }, "rgb": [77, 76, 132] }, @@ -375576,23 +375576,23 @@ "year": 1804, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 17.96928561789885, - "c2": -20.174498858101224, - "c3": 25.666098382337797, - "c4": 1.8144562420282853, - "c5": -18.155594687344404, - "c6": -26.403281819445457, - "c7": -4.501564879899021 + "points": { + "c1": -9.57461669841593, + "c2": 17.222157776596237, + "c3": -20.639983219186576, + "c4": -13.266445481203434, + "c5": -23.16161510554551, + "c6": -19.858212069083567, + "c7": 10.223045047178172 }, - "vertexSeeds": { - "c1": 10.982590440373306, - "c2": 11.001572710158554, - "c3": 11.264730679423684, - "c4": 11.188310447671075, - "c5": 10.980812045772083, - "c6": 11.000248184889392, - "c7": 11.163809725589116 + "offsets": { + "c1": 18.802588996763753, + "c2": 16.11650485436894, + "c3": 13.430420711974135, + "c4": 10.744336569579325, + "c5": 8.058252427184428, + "c6": 5.372168284789619, + "c7": 2.6860841423948094 }, "rgb": [77, 76, 132] }, @@ -375603,23 +375603,23 @@ "year": 1804, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 3.2324529740059695, - "c2": 15.666668766046492, - "c3": -23.718445681199643, - "c4": 5.340090172871747, - "c5": -11.004665654619181, - "c6": 19.5027910430925, - "c7": 14.177627697229077 + "points": { + "c1": -26.900055587681493, + "c2": 17.145539500109685, + "c3": 5.255270355412883, + "c4": -28.50709729022135, + "c5": 18.26172095291986, + "c6": -1.5858024606620589, + "c7": 7.086022924968574 }, - "vertexSeeds": { - "c1": 5.703750721028241, - "c2": 5.387202288171288, - "c3": 5.360702364914686, - "c4": 5.534517868849111, - "c5": 5.315755555107641, - "c6": 5.686697057585185, - "c7": 5.34217943229452 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055483, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022186, + "c7": 1.386962552011093 }, "rgb": [77, 76, 132] }, @@ -375630,23 +375630,23 @@ "year": 1805, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -0.47362433809462345, - "c2": 17.625057188033566, - "c3": 5.8705754746314796, - "c4": -22.749541628504137, - "c5": -0.624115861175305, - "c6": 5.299876451991459, - "c7": -36.249287640801455 + "points": { + "c1": 17.891547645205883, + "c2": 2.2623663972363985, + "c3": -34.938560525216765, + "c4": -15.364893272402956, + "c5": 18.99586060385552, + "c6": -18.711760756512206, + "c7": -22.804330543886383 }, - "vertexSeeds": { - "c1": 3.867742854543215, - "c2": 3.8618460632903084, - "c3": 3.835353488437578, - "c4": 3.8317095335478393, - "c5": 3.8718225774112267, - "c6": 3.8366028288592084, - "c7": 3.8502466310266663 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084585, + "c3": 4.646324549237177, + "c4": 3.7170596393897237, + "c5": 2.7877947295423158, + "c6": 1.8585298196948619, + "c7": 0.929264909847454 }, "rgb": [58, 15, 49] }, @@ -375657,23 +375657,23 @@ "year": 1805, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": -16.60492326011133, - "c2": 18.82336771578573, - "c3": -11.930090898743963, - "c4": -37.14170479605186, - "c5": 12.439220630629471, - "c6": 38.94734572741555, - "c7": 9.963264779192492 + "points": { + "c1": -10.648169631641707, + "c2": 23.561596476865006, + "c3": -43.07537562814587, + "c4": -9.965432748855825, + "c5": 20.31510132687292, + "c6": 33.11580874903939, + "c7": 34.01543437548541 }, - "vertexSeeds": { - "c1": 2.5687946318975112, - "c2": 2.5410675016857893, - "c3": 2.4288037687727564, - "c4": 2.5010540946231345, - "c5": 2.371205664587648, - "c6": 2.339428508975194, - "c7": 2.5312886684292537 + "offsets": { + "c1": 4.3365695792880254, + "c2": 3.717059639389735, + "c3": 3.0975496994914438, + "c4": 2.478039759593163, + "c5": 1.8585298196948674, + "c6": 1.2390198797965815, + "c7": 0.6195099398982907 }, "rgb": [77, 76, 132] }, @@ -375684,23 +375684,23 @@ "year": 1805, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 10.948211138357713, - "c2": -1.6619194861832156, - "c3": -36.32695425772882, - "c4": 27.47646253446456, - "c5": 22.47028750164214, - "c6": -1.8430672735448397, - "c7": 9.500326466121457 + "points": { + "c1": 23.653079479448593, + "c2": 4.005675994671996, + "c3": -37.176222070385684, + "c4": 20.609473876176864, + "c5": -40.15052106167138, + "c6": 32.13088206422111, + "c7": 7.688654548015876 }, - "vertexSeeds": { - "c1": 6.626716297935979, - "c2": 6.5211374507420805, - "c3": 6.596857029444282, - "c4": 6.5947906682735615, - "c5": 6.258050762397394, - "c6": 6.050441914485109, - "c7": 6.061230973496975 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957003, + "c3": 8.021266759130837, + "c4": 6.417013407304669, + "c5": 4.812760055478502, + "c6": 3.2085067036523345, + "c7": 1.6042533518261672 }, "rgb": [238, 201, 159] }, @@ -375711,23 +375711,23 @@ "year": 1805, "resistanceReported": true, "duration": 19094400, - "curveSeeds": { - "c1": 9.993656473893946, - "c2": -20.318821533042442, - "c3": -15.932993885789887, - "c4": 28.781302275499893, - "c5": 30.42235996752142, - "c6": -3.776395183688784, - "c7": 1.4743941891297716 + "points": { + "c1": 8.852539551086068, + "c2": -17.089137376009113, + "c3": 22.05947309504772, + "c4": -6.778207037198186, + "c5": -21.547552643367368, + "c6": -22.255217167527682, + "c7": 16.864029000510413 }, - "vertexSeeds": { - "c1": 4.752948516404415, - "c2": 4.631348399205135, - "c3": 4.76944591973214, - "c4": 5.478267607277909, - "c5": 5.438207655666654, - "c6": 5.073170293883829, - "c7": 4.935431996061395 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503462, + "c3": 6.611188164586223, + "c4": 5.288950531668974, + "c5": 3.9667128987517364, + "c6": 2.644475265834487, + "c7": 1.3222376329172436 }, "rgb": [58, 15, 49] }, @@ -375738,23 +375738,23 @@ "year": 1805, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 24.854488230284083, - "c2": 29.01632922605527, - "c3": -25.859444025290944, - "c4": 14.1615846760443, - "c5": 0.1914784277425099, - "c6": -25.883331017785885, - "c7": 1.4837320875417035 + "points": { + "c1": 21.58036592735499, + "c2": -2.974290388846452, + "c3": 19.492679279516537, + "c4": -11.261409848548531, + "c5": 23.076237756906835, + "c6": -16.552335250372685, + "c7": -26.7577753862736 }, - "vertexSeeds": { - "c1": 7.170336235227907, - "c2": 6.976105281090108, - "c3": 7.605245243289831, - "c4": 7.023239258850882, - "c5": 7.298929710658671, - "c6": 6.970198374000382, - "c7": 7.484568506577323 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807216, + "c3": 9.084604715672668, + "c4": 7.267683772538137, + "c5": 5.450762829403608, + "c6": 3.633841886269078, + "c7": 1.8169209431345301 }, "rgb": [58, 15, 49] }, @@ -375765,23 +375765,23 @@ "year": 1805, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 20.618010463958065, - "c2": 38.46401123017532, - "c3": 27.702777651101137, - "c4": -29.494330648250482, - "c5": 13.867958857396381, - "c6": -43.58577759432662, - "c7": -38.01106693287081 + "points": { + "c1": -10.87385291351191, + "c2": 30.951990671395613, + "c3": -22.252850470001185, + "c4": 24.74805530713828, + "c5": -12.228639605219136, + "c6": 13.002962690483571, + "c7": -37.783124621710506 }, - "vertexSeeds": { - "c1": 2.8383756375210334, - "c2": 2.8348464001359974, - "c3": 2.827751712854162, - "c4": 2.961205037683442, - "c5": 2.887623072886787, - "c6": 2.9435873080406645, - "c7": 2.855037885163144 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234402, + "c3": 3.582986592695324, + "c4": 2.866389274156262, + "c5": 2.149791955617201, + "c6": 1.4331946370781232, + "c7": 0.7165973185390616 }, "rgb": [238, 201, 159] }, @@ -375792,23 +375792,23 @@ "year": 1804, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -19.2794604965177, - "c2": -4.270028076500068, - "c3": -21.764654799894938, - "c4": 13.163839533891096, - "c5": 26.68146036449195, - "c6": -11.886667631988278, - "c7": -8.919892847924466 + "points": { + "c1": -15.932115752008924, + "c2": 22.42440624913625, + "c3": 28.42062978212149, + "c4": -13.688176820098452, + "c5": 23.345097670156694, + "c6": 13.02123345421754, + "c7": 8.41337561003316 }, - "vertexSeeds": { - "c1": 1.8045881360250877, - "c2": 1.8650343030090077, - "c3": 1.7966628978025003, - "c4": 1.8067609000613172, - "c5": 1.7505214395383872, - "c6": 1.7618040985830068, - "c7": 1.7937038206376494 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.74618585298197, + "c3": 2.288488210818309, + "c4": 1.830790568654644, + "c5": 1.373092926490983, + "c6": 0.915395284327322, + "c7": 0.457697642163661 }, "rgb": [58, 15, 49] }, @@ -375819,23 +375819,23 @@ "year": 1805, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -0.5972631410292166, - "c2": -17.21309247471484, - "c3": -12.780584170481735, - "c4": -11.825801804886243, - "c5": -33.80980972348706, - "c6": 9.057589314179424, - "c7": -7.919273746400805 + "points": { + "c1": 1.9715077854389023, + "c2": 15.990626567613205, + "c3": -24.15495208299228, + "c4": 27.406237792641384, + "c5": 23.6258459211624, + "c6": -9.764878484417594, + "c7": -16.73120867224412 }, - "vertexSeeds": { - "c1": 2.0068487232588663, - "c2": 1.986889766585546, - "c3": 1.9801494264036137, - "c4": 1.9536924248542085, - "c5": 2.045890804583963, - "c6": 2.0640401051637642, - "c7": 2.0531798894964783 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624134, + "c3": 2.3347202958853446, + "c4": 1.8677762367082755, + "c5": 1.4008321775312067, + "c6": 0.9338881183541378, + "c7": 0.4669440591770689 }, "rgb": [86, 146, 138] }, @@ -375846,23 +375846,23 @@ "year": 1805, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 5.440706768565867, - "c2": -11.159530145080236, - "c3": -1.1833253341718653, - "c4": -0.057211271547302545, - "c5": -11.563323806158621, - "c6": 29.001219605534736, - "c7": 24.35711747160871 + "points": { + "c1": 14.321628311307471, + "c2": -28.682196110432276, + "c3": 14.798217020870304, + "c4": -15.973060828075225, + "c5": 7.602511949311271, + "c6": 14.964464939947526, + "c7": -3.1383038821718188 }, - "vertexSeeds": { - "c1": 7.021571666098592, - "c2": 6.657548119726156, - "c3": 6.950092193249262, - "c4": 7.038449904481541, - "c5": 6.756229393554109, - "c6": 6.812711850646633, - "c7": 6.980653616400615 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761441, + "c3": 8.483587609801203, + "c4": 6.786870087840962, + "c5": 5.090152565880721, + "c6": 3.393435043920481, + "c7": 1.6967175219602404 }, "rgb": [222, 0, 59] }, @@ -375873,23 +375873,23 @@ "year": 1804, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -4.4285611425096185, - "c2": 23.57719277110528, - "c3": 12.515924701286004, - "c4": 24.92629370883199, - "c5": 24.35048457470716, - "c6": 12.88724133761054, - "c7": 23.931391172775584 + "points": { + "c1": 7.380566088662626, + "c2": -16.58855046771795, + "c3": 6.605644822435664, + "c4": 7.1663923064107, + "c5": 15.705647745158146, + "c6": 21.708963390724847, + "c7": 2.456397441686839 }, - "vertexSeeds": { - "c1": 5.9299299380262624, - "c2": 5.652324292825894, - "c3": 5.52018658484818, - "c4": 5.919532848656315, - "c5": 5.4176285496173895, - "c6": 5.989961449618214, - "c7": 5.540258401881925 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -375900,23 +375900,23 @@ "year": 1804, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 2.6159124635480495, - "c2": 8.89975240016815, - "c3": 4.847989117883216, - "c4": -5.3298443821231665, - "c5": 5.987365362125129, - "c6": 1.965393570625693, - "c7": 22.469040606293344 + "points": { + "c1": -19.78314977054376, + "c2": 11.986862442557399, + "c3": -10.34899693674608, + "c4": -3.2560349587357535, + "c5": -1.0551917904906674, + "c6": -26.154053318462033, + "c7": -2.8103705649527875 }, - "vertexSeeds": { - "c1": 6.064156135673774, - "c2": 6.4144489491936545, - "c3": 6.381110734625201, - "c4": 6.4107195763572635, - "c5": 6.307369222328202, - "c6": 6.458199839646089, - "c7": 6.113103306385926 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836343, + "c3": 7.951918631530274, + "c4": 6.3615349052242225, + "c5": 4.7711511789181715, + "c6": 3.1807674526121024, + "c7": 1.5903837263060512 }, "rgb": [222, 0, 59] }, @@ -375927,23 +375927,23 @@ "year": 1804, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 25.244764197670438, - "c2": 20.02112166657592, - "c3": 21.849724436978622, - "c4": 25.47463637351176, - "c5": -3.7593562097586144, - "c6": 11.447944468871992, - "c7": -17.79260992243316 + "points": { + "c1": 8.033369157383067, + "c2": -26.15304391579305, + "c3": -8.558834201566874, + "c4": 4.738095432817953, + "c5": -24.81645127256043, + "c6": -15.684288374422376, + "c7": 19.736589309539244 }, - "vertexSeeds": { - "c1": 4.715540199992429, - "c2": 5.063094081960211, - "c3": 5.0423116757577215, - "c4": 4.958986209618083, - "c5": 4.794908594237924, - "c6": 4.682825355834012, - "c7": 4.717765548971525 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658813, + "c3": 6.125751271382332, + "c4": 4.90060101710587, + "c5": 3.6754507628294064, + "c6": 2.450300508552935, + "c7": 1.2251502542764627 }, "rgb": [86, 146, 138] }, @@ -375954,23 +375954,23 @@ "year": 1804, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 12.665919374294248, - "c2": 24.711161605952235, - "c3": 8.204082649823818, - "c4": 3.9536756929054064, - "c5": 16.50316788175234, - "c6": 12.08210954790961, - "c7": 12.466290807351449 + "points": { + "c1": -26.20276861689285, + "c2": 18.522616988140676, + "c3": 9.168129608527245, + "c4": 13.41823897770832, + "c5": -21.818157794710682, + "c6": 9.031480105530896, + "c7": -1.682527422771951 }, - "vertexSeeds": { - "c1": 6.317699909844838, - "c2": 6.335668506526876, - "c3": 6.371722542555009, - "c4": 6.369118016547835, - "c5": 6.358720893760212, - "c6": 6.532570412391087, - "c7": 6.463328733247155 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675459, + "c3": 7.859454461396207, + "c4": 6.287563569116973, + "c5": 4.71567267683772, + "c6": 3.1437817845584863, + "c7": 1.5718908922792523 }, "rgb": [222, 0, 59] }, @@ -375981,23 +375981,23 @@ "year": 1804, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 11.369979423834089, - "c2": 11.093942799120235, - "c3": 12.995254557940683, - "c4": 4.348790538141806, - "c5": 3.249506369687243, - "c6": -17.53875020108232, - "c7": 18.32335081380667 + "points": { + "c1": 1.4158126623242744, + "c2": 17.135302680792314, + "c3": 7.7251380351028445, + "c4": 8.91213746913629, + "c5": 1.8802094517818801, + "c6": -17.04478687775174, + "c7": 16.824959949747047 }, - "vertexSeeds": { - "c1": 5.732064392394923, - "c2": 5.909694394435394, - "c3": 6.15544511056854, - "c4": 5.896563544653673, - "c5": 5.748527309150299, - "c6": 5.759373951975027, - "c7": 5.797636042784326 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072127, + "c3": 7.512713823393445, + "c4": 6.010171058714745, + "c5": 4.5076282940360635, + "c6": 3.0050855293573817, + "c7": 1.5025427646787 }, "rgb": [238, 201, 159] }, @@ -376008,23 +376008,23 @@ "year": 1805, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -34.47708794070952, - "c2": -26.305313811464533, - "c3": -10.572393416336677, - "c4": -22.322254493773368, - "c5": 26.102427979199156, - "c6": 28.18591669847796, - "c7": -35.048954216689175 + "points": { + "c1": 11.826997996873281, + "c2": -24.699271658208428, + "c3": 27.201526244386862, + "c4": 26.500517079567807, + "c5": 1.68153186030262, + "c6": -10.2456996100465, + "c7": 27.936324976370393 }, - "vertexSeeds": { - "c1": 4.101275820886938, - "c2": 5.3094742383307505, - "c3": 4.574473669845091, - "c4": 4.94317412076147, - "c5": 4.526329946259708, - "c6": 3.1144214767818275, - "c7": 4.468464452833732 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055478, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.773925104022191, + "c7": 1.3869625520110955 }, "rgb": [77, 76, 132] }, @@ -376035,23 +376035,23 @@ "year": 1805, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 10.588518126062176, - "c2": 16.35223991468427, - "c3": -27.499996719279203, - "c4": -2.416924643465343, - "c5": -20.93234505840966, - "c6": 10.35748088725574, - "c7": -15.622887898610822 + "points": { + "c1": -17.19918661600501, + "c2": -20.709698819947597, + "c3": -26.515713709398383, + "c4": 26.241174307839387, + "c5": -2.326023970759426, + "c6": 24.476319105336287, + "c7": 6.962170344138258 }, - "vertexSeeds": { - "c1": 4.520002983938847, - "c2": 4.503061812981188, - "c3": 4.565488284421379, - "c4": 4.351419841197482, - "c5": 4.441535887058188, - "c6": 4.446143519448151, - "c7": 4.332495904106518 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532596, + "c3": 5.478502080443824, + "c4": 4.382801664355061, + "c5": 3.287101248266298, + "c6": 2.191400832177535, + "c7": 1.0957004160887631 }, "rgb": [238, 201, 159] }, @@ -376062,23 +376062,23 @@ "year": 1804, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 5.24161319448881, - "c2": -6.590001946014258, - "c3": -20.560985533796337, - "c4": -7.26658855655058, - "c5": 7.941983289512162, - "c6": 18.199238268535378, - "c7": -18.359528351566137 + "points": { + "c1": 8.12658557809274, + "c2": 15.300651905570245, + "c3": 25.589549000850337, + "c4": -12.041303952464604, + "c5": 8.316628202343598, + "c6": -13.354958999040973, + "c7": -25.80216814421766 }, - "vertexSeeds": { - "c1": 3.834754765221841, - "c2": 3.800564445422769, - "c3": 3.9890693456703925, - "c4": 4.104134517888792, - "c5": 4.002139952058876, - "c6": 3.922540098966444, - "c7": 3.847565828056177 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607484, + "c3": 4.94683310217291, + "c4": 3.957466481738323, + "c5": 2.968099861303748, + "c6": 1.9787332408691616, + "c7": 0.9893666204345754 }, "rgb": [77, 76, 132] }, @@ -376089,23 +376089,23 @@ "year": 1805, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 7.073874454172426, - "c2": -13.71204470736741, - "c3": -7.731779440259018, - "c4": 13.643881683474753, - "c5": -20.84158203073465, - "c6": -21.056590286817432, - "c7": 20.731385698465544 + "points": { + "c1": 1.3511058251380348, + "c2": -11.878967127309231, + "c3": -21.41889084788587, + "c4": 29.105693026520782, + "c5": -24.13729333792451, + "c6": -17.63538899652616, + "c7": -17.697846136997313 }, - "vertexSeeds": { - "c1": 2.9004531721854407, - "c2": 2.9317775902876018, - "c3": 2.9052673283415444, - "c4": 2.93238003611574, - "c5": 2.9039174683481312, - "c6": 2.8996989755749665, - "c7": 2.9165010130859588 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113751, + "c3": 3.513638465094746, + "c4": 2.8109107720758106, + "c5": 2.1081830790568756, + "c6": 1.4054553860379404, + "c7": 0.7027276930189352 }, "rgb": [238, 201, 159] }, @@ -376116,23 +376116,23 @@ "year": 1804, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 16.009961038022098, - "c2": -20.58011290569777, - "c3": -16.03762296582767, - "c4": 2.410216043295481, - "c5": 19.357264100178796, - "c6": 2.298187166399849, - "c7": -13.090734021304334 + "points": { + "c1": -11.720309291542314, + "c2": 7.741842894713876, + "c3": 26.85934557422805, + "c4": 20.559378646628005, + "c5": -18.819916564122543, + "c6": 8.071856203354479, + "c7": -27.51748252011747 }, - "vertexSeeds": { - "c1": 7.736137828930022, - "c2": 7.750348656627483, - "c3": 7.512417039255314, - "c4": 7.7830982030587075, - "c5": 8.037655851420649, - "c6": 8.059295245272006, - "c7": 7.739053601513175 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295414, + "c3": 9.939898289412856, + "c4": 7.951918631530277, + "c5": 5.963938973647717, + "c6": 3.9759593157651385, + "c7": 1.98797965788256 }, "rgb": [238, 201, 159] }, @@ -376143,23 +376143,23 @@ "year": 1804, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 16.40948104626056, - "c2": -23.20045348000286, - "c3": -15.550586771844888, - "c4": 20.978629041680207, - "c5": 20.318215434358144, - "c6": -24.53651994622519, - "c7": 2.950677299176025 + "points": { + "c1": -21.645870094376857, + "c2": -27.340791939216423, + "c3": 6.064710731550804, + "c4": 12.635938170759808, + "c5": 6.070246588230361, + "c6": -12.9087565944748, + "c7": -10.22782903797783 }, - "vertexSeeds": { - "c1": 6.129194112490448, - "c2": 6.318443767905282, - "c3": 6.183080240483391, - "c4": 6.168728119796772, - "c5": 6.567750211954404, - "c6": 6.398425552533634, - "c7": 6.1466157851615995 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715681, + "c3": 7.882570503929725, + "c4": 6.306056403143788, + "c5": 4.729542302357832, + "c6": 3.153028201571894, + "c7": 1.576514100785956 }, "rgb": [222, 0, 59] }, @@ -376170,23 +376170,23 @@ "year": 1805, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 28.42654250306976, - "c2": 28.164715785542292, - "c3": 3.4879376783173726, - "c4": -3.222688633937519, - "c5": 8.890716988412656, - "c6": 20.429016256384422, - "c7": -23.418179650439548 + "points": { + "c1": 18.661090994039903, + "c2": -13.618177702989652, + "c3": 24.076863344160586, + "c4": -7.875472779305515, + "c5": -20.982224405547154, + "c6": 17.743713482938773, + "c7": 27.742242449715008 }, - "vertexSeeds": { - "c1": 3.2729097088111025, - "c2": 3.1366208498663064, - "c3": 3.252960696495281, - "c4": 3.246288762835727, - "c5": 3.240482063258297, - "c6": 3.222559282443364, - "c7": 3.335258201168123 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.49375866851595, + "c3": 3.7447988904299585, + "c4": 2.9958391123439667, + "c5": 2.246879334257975, + "c6": 1.4979195561719834, + "c7": 0.7489597780859917 }, "rgb": [86, 146, 138] }, @@ -376197,23 +376197,23 @@ "year": 1805, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -22.324902101212768, - "c2": 1.8373579032342278, - "c3": -20.68422886002167, - "c4": -8.52523248991907, - "c5": -12.73971160560881, - "c6": -7.87238952799423, - "c7": -3.0949903656312223 + "points": { + "c1": -16.160012099972782, + "c2": -3.932833730968852, + "c3": 7.301999350179013, + "c4": 28.173896754220006, + "c5": -23.070002269484974, + "c6": -11.553014962926166, + "c7": 10.612212010917677 }, - "vertexSeeds": { - "c1": 2.262419686074879, - "c2": 2.374729238176352, - "c3": 2.4383461429279323, - "c4": 2.2934110416153475, - "c5": 2.2972343699071747, - "c6": 2.443414633025133, - "c7": 2.297718648728466 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081833, + "c3": 2.9357374017568203, + "c4": 2.3485899214054573, + "c5": 1.7614424410540894, + "c6": 1.1742949607027262, + "c7": 0.5871474803513631 }, "rgb": [222, 0, 59] }, @@ -376224,23 +376224,23 @@ "year": 1805, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 3.1103681319156244, - "c2": 16.810460926981587, - "c3": -10.015552428439019, - "c4": -15.622618916626653, - "c5": -5.296783442743866, - "c6": -20.299223463123333, - "c7": -9.63345162951526 + "points": { + "c1": -8.353760089808496, + "c2": 0.0738341021793012, + "c3": 2.2258260082589167, + "c4": -6.47099752946637, + "c5": -29.925392234839876, + "c6": 0.41074228464483653, + "c7": 15.568837655900847 }, - "vertexSeeds": { - "c1": 4.814239307078295, - "c2": 5.05597872628341, - "c3": 4.964515307726928, - "c4": 5.290237854289769, - "c5": 5.1476033665053365, - "c6": 4.877363251551115, - "c7": 5.186351392614379 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.65603328710125, + "c3": 6.380027739251045, + "c4": 5.10402219140084, + "c5": 3.828016643550634, + "c6": 2.55201109570042, + "c7": 1.2760055478502144 }, "rgb": [238, 201, 159] }, @@ -376251,23 +376251,23 @@ "year": 1804, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": 7.972367166720133, - "c2": 17.672334451937985, - "c3": 0.7661601520608983, - "c4": -11.636380338928785, - "c5": 13.02346879803514, - "c6": -13.989598054111582, - "c7": -9.770474433055613 + "points": { + "c1": 2.4357363886309784, + "c2": 8.563579895850022, + "c3": -1.0742607539940714, + "c4": -22.111494701507286, + "c5": -0.7883308298502456, + "c6": -7.861130230193522, + "c7": 5.715067070001009 }, - "vertexSeeds": { - "c1": 4.254221441413366, - "c2": 4.012656114621496, - "c3": 3.970267766203128, - "c4": 4.066930471509784, - "c5": 3.966509218006003, - "c6": 4.009427113048969, - "c7": 4.243068002664737 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889048, + "c3": 5.108645399907535, + "c4": 4.086916319926033, + "c5": 3.0651872399445184, + "c6": 2.0434581599630164, + "c7": 1.021729079981514 }, "rgb": [77, 76, 132] }, @@ -376278,23 +376278,23 @@ "year": 1805, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 24.946349705047638, - "c2": -5.163249525593514, - "c3": -30.247202733020508, - "c4": -4.753554595667239, - "c5": -19.403296475689338, - "c6": 19.89016233110234, - "c7": -2.2251148652153354 + "points": { + "c1": 30.94954567479983, + "c2": -10.03328188070693, + "c3": 31.991738099500644, + "c4": -15.099131559471932, + "c5": -21.25027931709786, + "c6": 15.09161566529059, + "c7": -33.72004685137913 }, - "vertexSeeds": { - "c1": 5.6436166518067425, - "c2": 5.635948179773278, - "c3": 5.64512949206712, - "c4": 5.647482452442869, - "c5": 5.6402103519773465, - "c6": 5.638044767881166, - "c7": 5.63478515105239 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.09986130374457, + "c3": 6.74988441978741, + "c4": 5.399907535829713, + "c5": 4.049930651872553, + "c6": 2.6999537679148564, + "c7": 1.3499768839576967 }, "rgb": [86, 146, 138] }, @@ -376305,23 +376305,23 @@ "year": 1804, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -1.6928864648787467, - "c2": 1.6173470935015217, - "c3": 4.660770014829929, - "c4": 3.266290311312737, - "c5": -0.7443069326561904, - "c6": -4.997189746344276, - "c7": -19.000812043510393 + "points": { + "c1": 10.79503337286215, + "c2": -10.278026608100918, + "c3": 13.176626332926602, + "c4": 13.463389068775825, + "c5": 6.886163985053074, + "c6": -7.689024330863049, + "c7": 3.087988994606402 }, - "vertexSeeds": { - "c1": 4.928420890035981, - "c2": 4.942124565571213, - "c3": 4.830034116445683, - "c4": 4.966028162627903, - "c5": 4.780067162629658, - "c6": 4.9970519459318465, - "c7": 5.180439372701238 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819705, + "c3": 6.2182154415164135, + "c4": 4.97457235321314, + "c5": 3.7309292649098476, + "c6": 2.487286176606565, + "c7": 1.2436430883032825 }, "rgb": [58, 15, 49] }, @@ -376332,23 +376332,23 @@ "year": 1804, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -12.940836930021918, - "c2": 14.595749289550987, - "c3": 22.430510477530945, - "c4": -9.173087498182559, - "c5": 10.950874347057294, - "c6": 13.844553992569281, - "c7": -16.32710681727315 + "points": { + "c1": 20.10165918707179, + "c2": 10.996850296676008, + "c3": 10.498491979139224, + "c4": 22.18208480423182, + "c5": 21.36668017056268, + "c6": 16.9296940588766, + "c7": -22.91828954678497 }, - "vertexSeeds": { - "c1": 5.181186955625466, - "c2": 4.916605555086933, - "c3": 5.250400578217287, - "c4": 5.213797897297368, - "c5": 5.051244267531128, - "c6": 4.93124815901325, - "c7": 4.8825998252997405 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784567, + "c4": 5.12251502542764, + "c5": 3.8418862690707325, + "c6": 2.5612575127138246, + "c7": 1.2806287563569168 }, "rgb": [86, 146, 138] }, @@ -376359,23 +376359,23 @@ "year": 1804, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 4.025618308006607, - "c2": -12.977040543652924, - "c3": 18.735380491237024, - "c4": -15.21397406217825, - "c5": 6.755829385301677, - "c6": -8.675346128330187, - "c7": -11.836253162048102 + "points": { + "c1": 13.303917637214731, + "c2": 20.070826205186833, + "c3": 2.9252128525762338, + "c4": -7.973866046540014, + "c5": -8.225382724411045, + "c6": -9.090122058444013, + "c7": -17.96659797259673 }, - "vertexSeeds": { - "c1": 4.878425079595644, - "c2": 4.7644530222782935, - "c3": 4.6759405571585235, - "c4": 4.9418379898506215, - "c5": 4.8040924677479575, - "c6": 4.513083707331339, - "c7": 4.665534107838545 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181233, + "c4": 4.789644012944979, + "c5": 3.592233009708734, + "c6": 2.3948220064724897, + "c7": 1.1974110032362448 }, "rgb": [238, 201, 159] }, @@ -376386,23 +376386,23 @@ "year": 1804, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -1.187334847076169, - "c2": 7.931587052943353, - "c3": 7.128828737821678, - "c4": -11.039109497110369, - "c5": -19.117293462864936, - "c6": -14.080910794631185, - "c7": -16.907129968935273 + "points": { + "c1": -19.371838577874065, + "c2": 6.279911508939833, + "c3": -13.80443009881333, + "c4": 1.4260899456086378, + "c5": -22.92140363053108, + "c6": -16.60804944050047, + "c7": 4.35966263448859 }, - "vertexSeeds": { - "c1": 5.5627099428547195, - "c2": 5.146895230078594, - "c3": 5.614738631180619, - "c4": 5.122747505075167, - "c5": 5.606285090682186, - "c6": 5.325152099881206, - "c7": 5.155039503426555 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.7267683772538165, + "c4": 5.381414701803046, + "c5": 4.036061026352294, + "c6": 2.690707350901523, + "c7": 1.3453536754507522 }, "rgb": [238, 201, 159] }, @@ -376413,23 +376413,23 @@ "year": 1805, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -19.0978892915129, - "c2": -16.722000582935415, - "c3": 22.72689522172282, - "c4": -8.746996145951805, - "c5": -6.308468051276186, - "c6": -7.107690262386715, - "c7": 4.30447607093825 + "points": { + "c1": -26.196634045017205, + "c2": 1.9007075688939103, + "c3": -22.613119248746187, + "c4": 25.240596741020205, + "c5": -14.331990464992979, + "c6": -18.098426437554174, + "c7": -11.84594788990947 }, - "vertexSeeds": { - "c1": 2.118766978366964, - "c2": 1.9148095605131479, - "c3": 2.106433165363387, - "c4": 1.785745394731221, - "c5": 2.0807526143898416, - "c6": 2.149128905000861, - "c7": 1.9168546457180582 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287565, + "c4": 2.0896902450300505, + "c5": 1.5672676837725386, + "c6": 1.0448451225150266, + "c7": 0.522422561257512 }, "rgb": [77, 76, 132] }, @@ -376440,23 +376440,23 @@ "year": 1805, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -11.966385691821468, - "c2": 25.93087017046168, - "c3": 35.44818664008058, - "c4": -11.546270562634877, - "c5": 30.458898286063885, - "c6": -21.2932340111228, - "c7": 34.837451593530645 + "points": { + "c1": -34.01594542964887, + "c2": -33.078664107131075, + "c3": 10.392541320704488, + "c4": -2.6648116646393163, + "c5": -19.044494796661844, + "c6": -2.7333909989285345, + "c7": 38.08409953560616 }, - "vertexSeeds": { - "c1": 5.4438250357119635, - "c2": 5.4321888533409854, - "c3": 5.606166301276269, - "c4": 5.74003309198976, - "c5": 5.577519084221221, - "c6": 5.513213386325078, - "c7": 5.407181802190845 + "offsets": { + "c1": 10, + "c2": 8.571428571428562, + "c3": 7.142857142857145, + "c4": 5.71428571428571, + "c5": 4.285714285714291, + "c6": 2.857142857142855, + "c7": 1.4285714285714366 }, "rgb": [238, 201, 159] }, @@ -376467,23 +376467,23 @@ "year": 1805, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -18.749406396655708, - "c2": 2.268488198672838, - "c3": 13.179974506030938, - "c4": -11.826541629251924, - "c5": -5.61786178712666, - "c6": -9.928079648951908, - "c7": -25.2910531986336 + "points": { + "c1": -2.9784879112263383, + "c2": 21.586406306918597, + "c3": 1.9700860636891235, + "c4": -10.81325192185027, + "c5": -5.188275430385033, + "c6": -7.679052473732234, + "c7": -0.09934677869806308 }, - "vertexSeeds": { - "c1": 4.849546009328379, - "c2": 5.0012405912653675, - "c3": 5.052209708735172, - "c4": 5.077461647470089, - "c5": 5.168300140495744, - "c6": 5.282579456069236, - "c7": 4.938249666205217 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318085, + "c4": 5.141007859454455, + "c5": 3.8557558945908434, + "c6": 2.570503929727232, + "c7": 1.2852519648636116 }, "rgb": [77, 76, 132] }, @@ -376494,23 +376494,23 @@ "year": 1805, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 0.09905739535160052, - "c2": 19.368226224948458, - "c3": 3.5312076402878105, - "c4": -24.271921444632618, - "c5": 26.727237560225554, - "c6": 0.9331345582686055, - "c7": -27.202903059056975 + "points": { + "c1": -21.060553299666076, + "c2": -4.922995020702576, + "c3": 6.308738644206379, + "c4": 7.878157588174993, + "c5": -6.00963559199883, + "c6": -23.292927630832054, + "c7": 25.656088089393513 }, - "vertexSeeds": { - "c1": 1.8045821402016753, - "c2": 1.8296461264255448, - "c3": 1.727184008880158, - "c4": 1.7144701274697618, - "c5": 1.9341600748435408, - "c6": 1.7807074473368272, - "c7": 1.709952105881492 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.8862690707350886, + "c5": 1.4147018030513194, + "c6": 0.9431345353675462, + "c7": 0.4715672676837731 }, "rgb": [222, 0, 59] }, @@ -376521,23 +376521,23 @@ "year": 1805, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -2.6319375693968823, - "c2": 0.25175846317966943, - "c3": 5.0962021570929465, - "c4": -22.353014167574855, - "c5": 29.73910168172958, - "c6": 11.081696290732019, - "c7": -27.39641220270225 + "points": { + "c1": -23.275331472103858, + "c2": 31.395798768729932, + "c3": 10.074379076499717, + "c4": -10.881690417546722, + "c5": -29.38635158368612, + "c6": -31.058525534269883, + "c7": -6.573149097083714 }, - "vertexSeeds": { - "c1": 4.968134653224654, - "c2": 4.85435958463974, - "c3": 5.072058376748014, - "c4": 5.16517141989419, - "c5": 5.308496977153027, - "c6": 5.313891305663942, - "c7": 5.261467047632921 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784567, + "c4": 5.12251502542764, + "c5": 3.8418862690707325, + "c6": 2.5612575127138246, + "c7": 1.2806287563569168 }, "rgb": [77, 76, 132] }, @@ -376548,23 +376548,23 @@ "year": 1805, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -8.507915546649855, - "c2": -15.90191613073995, - "c3": -20.91469584835782, - "c4": 12.088699455175004, - "c5": 10.860799825892947, - "c6": 3.8629605790810864, - "c7": -25.133909931189248 + "points": { + "c1": 21.42240972095584, + "c2": -2.5289708592505313, + "c3": 7.860941454116215, + "c4": 25.140897890327267, + "c5": -7.991254229483069, + "c6": 25.711645432654223, + "c7": -26.200534396069823 }, - "vertexSeeds": { - "c1": 6.772622221692263, - "c2": 6.53440971645269, - "c3": 6.880916454853761, - "c4": 6.431726993568404, - "c5": 6.721876764241695, - "c6": 7.0176861788762075, - "c7": 7.04318264114676 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721218, + "c3": 8.460471567267678, + "c4": 6.768377253814157, + "c5": 5.076282940360618, + "c6": 3.3841886269070787, + "c7": 1.6920943134535393 }, "rgb": [222, 0, 59] }, @@ -376575,23 +376575,23 @@ "year": 1805, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -12.870756099411665, - "c2": -5.20206730039564, - "c3": -9.923328467740767, - "c4": -22.78842270537296, - "c5": -3.7420939028218108, - "c6": 27.308452659649245, - "c7": 10.172338987580407 + "points": { + "c1": 17.841175346232806, + "c2": -21.12985341256526, + "c3": -15.818523455769911, + "c4": 9.504751711923486, + "c5": -7.684723119758132, + "c6": -22.40320464385593, + "c7": -28.10700429226318 }, - "vertexSeeds": { - "c1": 5.387267830794326, - "c2": 5.455542008136172, - "c3": 5.682302200324605, - "c4": 5.61844635131944, - "c5": 5.688509552479091, - "c6": 5.473057631416445, - "c7": 5.211952127455847 + "offsets": { + "c1": 9.514563106796116, + "c2": 8.15533980582525, + "c3": 6.796116504854365, + "c4": 5.4368932038835, + "c5": 4.077669902912616, + "c6": 2.71844660194175, + "c7": 1.3592233009708838 }, "rgb": [86, 146, 138] }, @@ -376602,23 +376602,23 @@ "year": 1805, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 21.043194528157567, - "c2": -2.5995835423836944, - "c3": 14.071777210040704, - "c4": -10.113758996204485, - "c5": 15.289204560933857, - "c6": -10.704000919625326, - "c7": 25.87617973028203 + "points": { + "c1": 4.182884455167798, + "c2": -14.767404950093505, + "c3": -13.850909815566844, + "c4": 0.7383618575184272, + "c5": 18.270642840276093, + "c6": -11.598242673168244, + "c7": 6.779893933688744 }, - "vertexSeeds": { - "c1": 3.505219696270383, - "c2": 3.3623078159305284, - "c3": 3.322287076994645, - "c4": 3.2668765538040296, - "c5": 3.501143971630274, - "c6": 3.497353518394785, - "c7": 3.3745282315553475 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400834, + "c3": 4.253351826167364, + "c4": 3.4026814609338936, + "c5": 2.5520110957004114, + "c6": 1.701340730466941, + "c7": 0.8506703652334705 }, "rgb": [222, 0, 59] }, @@ -376629,23 +376629,23 @@ "year": 1805, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 9.368088515449806, - "c2": 11.27202602596369, - "c3": -22.952378490022305, - "c4": 26.17482965017595, - "c5": 2.948565368038558, - "c6": -16.698040190027093, - "c7": -25.706449178184236 + "points": { + "c1": -36.24672282275371, + "c2": -20.633799043721414, + "c3": -35.2561236115725, + "c4": -37.77572306136284, + "c5": -19.301080595525214, + "c6": 18.90257158617849, + "c7": 13.12608109619444 }, - "vertexSeeds": { - "c1": 10.407208843567247, - "c2": 10.252995409179043, - "c3": 10.47375569898558, - "c4": 9.97048052985573, - "c5": 10.041015008869799, - "c6": 10.471537869719494, - "c7": 10.310905229963897 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.034674063800276, + "c3": 12.528895053166899, + "c4": 10.023116042533518, + "c5": 7.517337031900138, + "c6": 5.011558021266759, + "c7": 2.5057790106333795 }, "rgb": [238, 201, 159] }, @@ -376656,23 +376656,23 @@ "year": 1805, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 15.971141057549055, - "c2": 14.618811323737702, - "c3": 2.9498787820170875, - "c4": -20.959106894167043, - "c5": 8.690370220001846, - "c6": -23.147348229491616, - "c7": 10.985969761984151 + "points": { + "c1": 19.871691576035794, + "c2": 13.949572487818294, + "c3": 0.8888905142281871, + "c4": -8.448671351380995, + "c5": -11.234557284315336, + "c6": 17.07697296419815, + "c7": 14.433508547372874 }, - "vertexSeeds": { - "c1": 2.752848424273728, - "c2": 2.564958798814649, - "c3": 2.7684322273606083, - "c4": 2.724351517608341, - "c5": 2.750598417579757, - "c6": 2.563746969960462, - "c7": 2.6075872160863303 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.077669902912619, + "c3": 3.3980582524271803, + "c4": 2.718446601941748, + "c5": 2.0388349514563093, + "c6": 1.3592233009708705, + "c7": 0.6796116504854315 }, "rgb": [238, 201, 159] }, @@ -376683,23 +376683,23 @@ "year": 1805, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -7.289870678389377, - "c2": 8.624885184478806, - "c3": -22.608064182241556, - "c4": -19.56080977656368, - "c5": -28.468143848753744, - "c6": -28.520290543812354, - "c7": 5.817832862618111 + "points": { + "c1": 31.0224170697454, + "c2": -0.09721162333864442, + "c3": -19.298981316697635, + "c4": -0.07931019590137112, + "c5": 1.77386340774747, + "c6": 9.459075942256582, + "c7": -21.762040497949247 }, - "vertexSeeds": { - "c1": 6.4230527412324445, - "c2": 6.49022932042104, - "c3": 5.576049183722149, - "c4": 5.935154637243601, - "c5": 5.609414354535246, - "c6": 6.100954856605236, - "c7": 5.558824991388943 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463242, + "c3": 6.588072122052706, + "c4": 5.270457697642161, + "c5": 3.9528432732316254, + "c6": 2.6352288488210807, + "c7": 1.3176144244105448 }, "rgb": [86, 146, 138] }, @@ -376710,23 +376710,23 @@ "year": 1805, "resistanceReported": false, "duration": 38361600, - "curveSeeds": { - "c1": -32.50262952840944, - "c2": 1.8104180538044687, - "c3": 38.357508799945165, - "c4": -27.270814934009834, - "c5": -45.63808949625167, - "c6": -29.398478747937133, - "c7": 44.40220630813353 + "points": { + "c1": -52.63408768142214, + "c2": 37.10721094668831, + "c3": -33.77429611931089, + "c4": 41.26989130789592, + "c5": -44.15812769774838, + "c6": 48.97865206789852, + "c7": -44.814449193219076 }, - "vertexSeeds": { - "c1": 7.324047092441605, - "c2": 7.346602431203491, - "c3": 6.796363964299251, - "c4": 7.319154935708011, - "c5": 6.865378054657007, - "c6": 7.31446741601532, - "c7": 6.986467925629233 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.56865464632455, + "c3": 8.807212205270458, + "c4": 7.045769764216367, + "c5": 5.284327323162275, + "c6": 3.5228848821081833, + "c7": 1.7614424410540916 }, "rgb": [77, 76, 132] }, @@ -376737,23 +376737,23 @@ "year": 1805, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -13.007806839497555, - "c2": -20.895431567300587, - "c3": 19.300298603982093, - "c4": 24.338795603923273, - "c5": -4.42471082466605, - "c6": -3.705224556112949, - "c7": 20.317677886007523 + "points": { + "c1": -2.5298151223839405, + "c2": 14.608615929405708, + "c3": -7.304826322798064, + "c4": -23.392783225206742, + "c5": 15.76564661330302, + "c6": 1.5995431959272786, + "c7": 21.454515608438612 }, - "vertexSeeds": { - "c1": 2.723698247073065, - "c2": 2.6970609439745195, - "c3": 2.5664420604183085, - "c4": 2.7623889062441855, - "c5": 2.560834894442048, - "c6": 2.671730104917547, - "c7": 2.5909618484276296 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791952, + "c3": 3.3287101248266344, + "c4": 2.662968099861305, + "c5": 1.997226074895976, + "c6": 1.3314840499306582, + "c7": 0.6657420249653291 }, "rgb": [222, 0, 59] }, @@ -376764,23 +376764,23 @@ "year": 1805, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -13.378904481867702, - "c2": 4.678370343552086, - "c3": 3.333818306106469, - "c4": 22.994996939919623, - "c5": -18.531807646816027, - "c6": -13.67822052615639, - "c7": -1.503839589933154 + "points": { + "c1": -21.63464286223525, + "c2": -21.9548142473091, + "c3": 10.944522752698887, + "c4": -7.837586780884639, + "c5": -3.3503891137031268, + "c6": 25.054268870150914, + "c7": 25.18916486465882 }, - "vertexSeeds": { - "c1": 7.494636242294555, - "c2": 7.471597958110333, - "c3": 7.29188846978683, - "c4": 7.623103488278334, - "c5": 7.333995850954404, - "c6": 7.641830916327135, - "c7": 7.289672937896155 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611645, + "c3": 9.546925566343049, + "c4": 7.637540453074435, + "c5": 5.728155339805823, + "c6": 3.8187702265372265, + "c7": 1.9093851132686133 }, "rgb": [58, 15, 49] }, @@ -376791,23 +376791,23 @@ "year": 1805, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -17.221998537458422, - "c2": 6.206621190382691, - "c3": 7.394023843883723, - "c4": 21.89857343175101, - "c5": 2.0371100817991135, - "c6": 8.932106831353806, - "c7": 7.662814280245712 + "points": { + "c1": -8.198963744087948, + "c2": -22.91908290712199, + "c3": 7.466238796149952, + "c4": -24.583672777302922, + "c5": 22.914990627615452, + "c6": -18.637924961680877, + "c7": -7.230524916942457 }, - "vertexSeeds": { - "c1": 1.0062760942205915, - "c2": 1.130370287727464, - "c3": 0.897088626560612, - "c4": 1.0332220341184688, - "c5": 1.1144832402072096, - "c6": 1.246511683080584, - "c7": 1.0904488031501602 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948674, + "c3": 1.5487748497457237, + "c4": 1.2390198797965781, + "c5": 0.9292649098474337, + "c6": 0.6195099398982891, + "c7": 0.30975496994914453 }, "rgb": [86, 146, 138] }, @@ -376818,23 +376818,23 @@ "year": 1805, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": -2.445827944268949, - "c2": -4.093975175537235, - "c3": -6.434977344009688, - "c4": 16.664319696482245, - "c5": -19.85575768487167, - "c6": 7.9960378220939035, - "c7": -11.57069309829067 + "points": { + "c1": 1.0487620626765661, + "c2": 19.307203954743564, + "c3": 13.120580562092066, + "c4": -24.03227518114693, + "c5": 5.748481705201197, + "c6": -13.875127220964538, + "c7": 23.908780189827958 }, - "vertexSeeds": { - "c1": 2.164601811818668, - "c2": 2.3527661078025615, - "c3": 2.3779573907141627, - "c4": 2.2022937736354455, - "c5": 2.1796517161153504, - "c6": 2.150656204579744, - "c7": 2.201999781440355 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679596, + "c3": 2.9126213592233015, + "c4": 2.3300970873786397, + "c5": 1.7475728155339816, + "c6": 1.1650485436893199, + "c7": 0.5825242718446582 }, "rgb": [77, 76, 132] }, @@ -376845,23 +376845,23 @@ "year": 1805, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -4.104576141502079, - "c2": -21.429985372099075, - "c3": 8.72785022765586, - "c4": 28.9308547559078, - "c5": -14.749856324576825, - "c6": -26.793814690755724, - "c7": -23.34689587808306 + "points": { + "c1": -1.5173074693095465, + "c2": 9.114446385980173, + "c3": -9.124597682644549, + "c4": 16.67320157915269, + "c5": 3.586393413876145, + "c6": -0.4061300797402829, + "c7": -5.80804262759521 }, - "vertexSeeds": { - "c1": 7.515740814767861, - "c2": 7.454477009885375, - "c3": 7.551223536172676, - "c4": 8.002876797099605, - "c5": 7.679405006157382, - "c6": 7.582428602524837, - "c7": 8.159648412674873 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054092, + "c3": 9.801202034211743, + "c4": 7.840961627369394, + "c5": 5.880721220527046, + "c6": 3.920480813684697, + "c7": 1.9602404068423485 }, "rgb": [77, 76, 132] }, @@ -376872,23 +376872,23 @@ "year": 1805, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 5.531797360545944, - "c2": 6.911358515874852, - "c3": 2.154987833224915, - "c4": -27.129516887751368, - "c5": -15.10459059632638, - "c6": -25.195321997485113, - "c7": 26.112134811393318 + "points": { + "c1": -12.402189636490448, + "c2": 2.465375371508763, + "c3": 14.425833613842933, + "c4": -3.2842202165159726, + "c5": -2.138870073441744, + "c6": -14.414378304776122, + "c7": 18.563998451366544 }, - "vertexSeeds": { - "c1": 6.505201589585739, - "c2": 6.847348225988875, - "c3": 6.751863068091157, - "c4": 6.628819313778817, - "c5": 6.995893949138079, - "c6": 7.006643863053523, - "c7": 6.639505076616086 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841885, + "c3": 8.529819694868237, + "c4": 6.82385575589459, + "c5": 5.117891816920943, + "c6": 3.411927877947295, + "c7": 1.7059639389736474 }, "rgb": [86, 146, 138] }, @@ -376899,23 +376899,23 @@ "year": 1805, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -30.479006561807253, - "c2": -25.69993070477061, - "c3": 31.020462802306696, - "c4": 18.012833330606547, - "c5": -22.163949641248735, - "c6": 18.311354654926227, - "c7": -20.408617520435197 + "points": { + "c1": 30.25013741563255, + "c2": -5.006148982436752, + "c3": 6.501515891100006, + "c4": 15.4192452956786, + "c5": 27.745914427392492, + "c6": 23.660644354106992, + "c7": -7.589898776083565 }, - "vertexSeeds": { - "c1": 3.5054611516370935, - "c2": 3.51705716455803, - "c3": 3.576268241339403, - "c4": 3.6716658639008193, - "c5": 3.592509020451637, - "c6": 3.7805295341779934, - "c7": 3.4853257717291877 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923717, + "c3": 4.553860379103098, + "c4": 3.643088303282478, + "c5": 2.7323162274618586, + "c6": 1.821544151641239, + "c7": 0.9107720758206195 }, "rgb": [77, 76, 132] }, @@ -376926,23 +376926,23 @@ "year": 1805, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 4.032320078506622, - "c2": 15.150244630783938, - "c3": 19.25157585693824, - "c4": -6.924441999914514, - "c5": -0.5948333747931613, - "c6": 25.476864797888425, - "c7": -15.385746693511397 + "points": { + "c1": -32.80968515298655, + "c2": -24.09455000814436, + "c3": -23.16397880210234, + "c4": 14.603839028777337, + "c5": -29.26421633407982, + "c6": 9.007515128319326, + "c7": -15.839640872974869 }, - "vertexSeeds": { - "c1": 3.9935813329810164, - "c2": 4.250958515272457, - "c3": 4.153829078661306, - "c4": 3.977231412884093, - "c5": 4.294650037309063, - "c6": 4.114818930924026, - "c7": 4.125488927376833 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009706, + "c3": 5.177993527508084, + "c4": 4.142394822006474, + "c5": 3.106796116504853, + "c6": 2.0711974110032316, + "c7": 1.0355987055016214 }, "rgb": [86, 146, 138] }, @@ -376953,23 +376953,23 @@ "year": 1805, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 7.479594757832089, - "c2": -20.25046064801853, - "c3": 29.708317174392164, - "c4": 30.433143838308638, - "c5": -7.215855417171905, - "c6": 4.391874705656846, - "c7": -29.58921385780586 + "points": { + "c1": 25.005383089727133, + "c2": 4.0145491723517, + "c3": -38.07951322872081, + "c4": 15.433233313904012, + "c5": 1.1240502472328018, + "c6": 9.043895056545061, + "c7": 25.95226461022297 }, - "vertexSeeds": { - "c1": 8.689179171604687, - "c2": 7.8638024067139405, - "c3": 8.891642458440101, - "c4": 7.885073963127441, - "c5": 7.828203689882972, - "c6": 8.848989986199744, - "c7": 8.066652493593676 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542304, + "c3": 10.656495607951923, + "c4": 8.52519648636153, + "c5": 6.393897364771147, + "c6": 4.262598243180765, + "c7": 2.1312991215903825 }, "rgb": [58, 15, 49] }, @@ -376980,23 +376980,23 @@ "year": 1805, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 25.036441019125117, - "c2": -15.98531455941558, - "c3": -28.313990993313986, - "c4": 5.630114009350631, - "c5": -20.492180178269138, - "c6": 21.819697903400826, - "c7": -23.993064889041523 + "points": { + "c1": -4.4043356952260595, + "c2": -12.002542600506573, + "c3": -14.572582288931649, + "c4": 22.358184884699984, + "c5": -22.334764336248877, + "c6": 3.052612218916334, + "c7": 7.098260297805329 }, - "vertexSeeds": { - "c1": 3.466749149895088, - "c2": 3.5405462282526186, - "c3": 3.535128793422939, - "c4": 3.473186453015241, - "c5": 3.400084217327088, - "c6": 3.489469451662377, - "c7": 3.413906773351837 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722605, + "c3": 4.4382801664355105, + "c4": 3.550624133148406, + "c5": 2.6629680998613026, + "c6": 1.775312066574208, + "c7": 0.887656033287104 }, "rgb": [86, 146, 138] }, @@ -377007,23 +377007,23 @@ "year": 1805, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -0.900265010574234, - "c2": 17.78507995287695, - "c3": -4.029872047692681, - "c4": -17.314111024915395, - "c5": 28.45133041989712, - "c6": -13.318471141387295, - "c7": 16.951275224917623 + "points": { + "c1": -6.485949395010252, + "c2": 19.063019882964404, + "c3": 1.003651900273752, + "c4": -7.836969632059308, + "c5": -29.373457112312327, + "c6": -17.937577543140122, + "c7": -1.6469143945356066 }, - "vertexSeeds": { - "c1": 2.6167026734950753, - "c2": 2.6139872063648144, - "c3": 2.654301083350026, - "c4": 2.6781595481438467, - "c5": 2.655694454419554, - "c6": 2.660751774274214, - "c7": 2.6365431751606168 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631061, + "c3": 3.236245954692568, + "c4": 2.588996763754049, + "c5": 1.9417475728155305, + "c6": 1.2944983818770117, + "c7": 0.6472491909385187 }, "rgb": [238, 201, 159] }, @@ -377034,23 +377034,23 @@ "year": 1805, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -14.070568314842419, - "c2": 9.226357387719887, - "c3": 11.209112620654885, - "c4": 17.46476971844644, - "c5": 12.430056770748216, - "c6": -6.113485710356237, - "c7": -4.484020695066544 + "points": { + "c1": 24.194832314404636, + "c2": 2.7653469711181273, + "c3": 18.64184424940155, + "c4": 14.193704366798897, + "c5": -7.519107701563211, + "c6": 24.496764675986128, + "c7": -14.847078647488512 }, - "vertexSeeds": { - "c1": 7.578991960261478, - "c2": 7.402622836502623, - "c3": 7.661589743746973, - "c4": 7.521997389632733, - "c5": 7.713644634426758, - "c6": 7.628515619690009, - "c7": 7.628573611450629 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651874, + "c3": 9.570041608876565, + "c4": 7.656033287101256, + "c5": 5.742024965325928, + "c6": 3.8280166435506184, + "c7": 1.9140083217753092 }, "rgb": [58, 15, 49] }, @@ -377061,23 +377061,23 @@ "year": 1805, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -14.489611403307947, - "c2": 21.457327218374736, - "c3": -26.598304857665287, - "c4": 15.309117669113235, - "c5": -30.476381757917345, - "c6": -32.00357591771525, - "c7": -6.008480318850044 + "points": { + "c1": 18.478587872915384, + "c2": -25.93841484047995, + "c3": 32.7879763039464, + "c4": -9.493886686900982, + "c5": 5.175226663887081, + "c6": 18.783916005299048, + "c7": 24.827810367046283 }, - "vertexSeeds": { - "c1": 3.3475959845386662, - "c2": 3.352167398547769, - "c3": 3.4262182334315066, - "c4": 3.3300266743768105, - "c5": 3.4642368759516846, - "c6": 3.3479403231162825, - "c7": 3.418090763330961 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521501, + "c3": 4.322699953767911, + "c4": 3.4581599630143307, + "c5": 2.5936199722607505, + "c6": 1.7290799815071707, + "c7": 0.8645399907535799 }, "rgb": [58, 15, 49] }, @@ -377088,23 +377088,23 @@ "year": 1805, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -21.870481967917353, - "c2": -20.81485075727012, - "c3": -4.228952004301064, - "c4": 9.679466477919, - "c5": -22.01264368279843, - "c6": 3.59861160592002, - "c7": 22.032500084070577 + "points": { + "c1": -7.016302833684989, + "c2": -21.13705859404566, + "c3": 8.780428935542211, + "c4": -27.461333155823397, + "c5": 13.586889072203043, + "c6": 1.0487228728313411, + "c7": 13.054700303180475 }, - "vertexSeeds": { - "c1": 5.8915355074536135, - "c2": 5.924787382268244, - "c3": 5.829199365043815, - "c4": 5.864658956961244, - "c5": 5.799135741145425, - "c6": 5.853303659721785, - "c7": 5.587821657225424 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -377115,23 +377115,23 @@ "year": 1805, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 21.205489595127176, - "c2": 9.97787353006536, - "c3": -17.488102578201627, - "c4": -7.1593018349762865, - "c5": 10.245327919190999, - "c6": -1.0456120637423965, - "c7": 19.84000036174968 + "points": { + "c1": -20.564979739495037, + "c2": 10.608769543426952, + "c3": -2.273773890702728, + "c4": 21.069503571973655, + "c5": -21.164860813278775, + "c6": 8.386132567035304, + "c7": 13.369113814627205 }, - "vertexSeeds": { - "c1": 5.981065839812064, - "c2": 6.214176330688208, - "c3": 6.281373795378839, - "c4": 6.329668969814476, - "c5": 6.215920557162567, - "c6": 6.173448183070428, - "c7": 6.0852352182806175 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795649, + "c4": 6.2320850670365155, + "c5": 4.674063800277399, + "c6": 3.1160425335182667, + "c7": 1.5580212667591333 }, "rgb": [77, 76, 132] }, @@ -377142,23 +377142,23 @@ "year": 1805, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -11.460235423677815, - "c2": 7.868235007356205, - "c3": -9.924024143565909, - "c4": 21.765733996853818, - "c5": 8.309102084888089, - "c6": -7.962054322628639, - "c7": -26.976168700868772 + "points": { + "c1": 17.420863983902656, + "c2": -8.476653361680938, + "c3": 3.2539102324046993, + "c4": -25.268565361322338, + "c5": -1.992048808983217, + "c6": -22.379131716246526, + "c7": -6.115293721091046 }, - "vertexSeeds": { - "c1": 5.103458083448225, - "c2": 5.386991964343273, - "c3": 5.051973536516301, - "c4": 5.438116021158011, - "c5": 4.9936250270731, - "c6": 5.157627796122845, - "c7": 5.373912583296751 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.9056865464632535, + "c3": 6.588072122052702, + "c4": 5.270457697642168, + "c5": 3.9528432732316174, + "c6": 2.635228848821084, + "c7": 1.3176144244105514 }, "rgb": [222, 0, 59] }, @@ -377169,23 +377169,23 @@ "year": 1805, "resistanceReported": true, "duration": 21254400, - "curveSeeds": { - "c1": -14.398170469053216, - "c2": 12.441179403832585, - "c3": -2.62942153082275, - "c4": 3.284302946013561, - "c5": 2.662363535600079, - "c6": 29.652875874587053, - "c7": -23.21111103987316 + "points": { + "c1": -29.81038830597847, + "c2": -20.06200627490732, + "c3": -31.999628178142054, + "c4": 3.7476980902806645, + "c5": -21.606208175308154, + "c6": 32.764230750053756, + "c7": -0.3096643426564185 }, - "vertexSeeds": { - "c1": 4.725241394503703, - "c2": 4.598908729671533, - "c3": 4.729928918063759, - "c4": 4.506945709617012, - "c5": 4.438169441586727, - "c6": 4.772055406124512, - "c7": 4.801185840887849 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015256, + "c3": 5.7558945908460455, + "c4": 4.604715672676844, + "c5": 3.4535367545076325, + "c6": 2.302357836338422, + "c7": 1.151178918169211 }, "rgb": [222, 0, 59] }, @@ -377196,23 +377196,23 @@ "year": 1805, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -30.628595654213342, - "c2": -11.724011545438014, - "c3": 34.52182436434129, - "c4": -19.702460502089068, - "c5": -25.518269525062184, - "c6": 5.198903140631984, - "c7": 11.359084328443217 + "points": { + "c1": -5.447183521773788, + "c2": 3.6883640235448922, + "c3": -41.96276507296372, + "c4": -12.805497741585082, + "c5": -13.632171599692025, + "c6": -19.186829948844284, + "c7": -12.839489924241771 }, - "vertexSeeds": { - "c1": 14.345793554453639, - "c2": 13.313934811154873, - "c3": 13.788969730329114, - "c4": 12.794280492626113, - "c5": 14.410156891009166, - "c6": 13.196346216204695, - "c7": 14.199518728891137 + "offsets": { + "c1": 24.07766990291262, + "c2": 20.6380027739251, + "c3": 17.19833564493758, + "c4": 13.758668515950054, + "c5": 10.319001386962565, + "c6": 6.879334257975044, + "c7": 3.439667128987522 }, "rgb": [222, 0, 59] }, @@ -377223,23 +377223,23 @@ "year": 1805, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -0.7210248398973782, - "c2": 0.37067304264006395, - "c3": 1.193673818757052, - "c4": 2.4111028122490055, - "c5": -10.326854147496164, - "c6": -10.637314239443356, - "c7": 4.982562047137176 + "points": { + "c1": 5.509821605907856, + "c2": -12.298018199597536, + "c3": -13.077650112409504, + "c4": -21.81139411967971, + "c5": 23.834937341025448, + "c6": 24.384409989591294, + "c7": 15.366851304732844 }, - "vertexSeeds": { - "c1": 5.847432582292071, - "c2": 5.983282724178984, - "c3": 5.988716792256147, - "c4": 5.882834976064583, - "c5": 5.927105122846533, - "c6": 6.04205342155613, - "c7": 5.941246859695409 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.9875173370319, + "c3": 7.489597780859917, + "c4": 5.991678224687933, + "c5": 4.49375866851595, + "c6": 2.9958391123439667, + "c7": 1.4979195561719834 }, "rgb": [222, 0, 59] }, @@ -377250,23 +377250,23 @@ "year": 1805, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -34.01382264517481, - "c2": -7.531155309112869, - "c3": 43.46852575047367, - "c4": -29.480654037090087, - "c5": 40.35418171043842, - "c6": -42.41404356875509, - "c7": 1.6989165564471733 + "points": { + "c1": -34.613194295203726, + "c2": 6.765394638273065, + "c3": -26.34014791438315, + "c4": 22.880939819457957, + "c5": 23.039363327191715, + "c6": -36.44312164203451, + "c7": 28.887285074665165 }, - "vertexSeeds": { - "c1": 10.636222021963095, - "c2": 10.312104848319825, - "c3": 10.70612473696611, - "c4": 10.305577300403693, - "c5": 10.248176091634466, - "c6": 10.618466966329844, - "c7": 10.744959786302791 + "offsets": { + "c1": 18.996763754045308, + "c2": 16.282940360610272, + "c3": 13.56911696717524, + "c4": 10.855293573740171, + "c5": 8.141470180305136, + "c6": 5.4276467868701035, + "c7": 2.7138233934350695 }, "rgb": [58, 15, 49] }, @@ -377277,23 +377277,23 @@ "year": 1805, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": -21.967265761263352, - "c2": -4.345367821818613, - "c3": 25.838060744750138, - "c4": 39.32267001542186, - "c5": 15.111808132627466, - "c6": 34.89276170709971, - "c7": 0.7505705913923038 + "points": { + "c1": -32.33409096473732, + "c2": -6.396031122839737, + "c3": -47.03226578330287, + "c4": -18.687900446901825, + "c5": -28.291824753394096, + "c6": 36.628732720979414, + "c7": -33.205764023890296 }, - "vertexSeeds": { - "c1": 8.70520821048219, - "c2": 8.427057419578315, - "c3": 9.007171489176415, - "c4": 8.148527818715412, - "c5": 8.724241223421744, - "c6": 9.345911696979645, - "c7": 8.843568325158854 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507628, + "c3": 11.211280628756358, + "c4": 8.969024503005086, + "c5": 6.726768377253814, + "c6": 4.484512251502543, + "c7": 2.2422561257512714 }, "rgb": [238, 201, 159] }, @@ -377304,23 +377304,23 @@ "year": 1805, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -23.13477575862133, - "c2": 6.473508620741114, - "c3": 24.00919144258141, - "c4": -22.389328113483042, - "c5": -29.176563691111404, - "c6": 29.425266077881943, - "c7": -29.228419341758183 + "points": { + "c1": -4.386156270983101, + "c2": -36.13154240498038, + "c3": -23.6912005679906, + "c4": -28.56257648736495, + "c5": 0.324597856128932, + "c6": -10.891669643858709, + "c7": 12.869265659272536 }, - "vertexSeeds": { - "c1": 1.6726496631770749, - "c2": 1.6490655297672, - "c3": 1.5630561231102575, - "c4": 1.6043328196338698, - "c5": 1.610779453632346, - "c6": 1.6330885218925386, - "c7": 1.6706507085654057 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.4410540915395287, + "c3": 2.034211742949607, + "c4": 1.6273693943596856, + "c5": 1.2205270457697643, + "c6": 0.8136846971798428, + "c7": 0.4068423485899214 }, "rgb": [77, 76, 132] }, @@ -377331,23 +377331,23 @@ "year": 1805, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -24.54639411866492, - "c2": 3.7219402305054956, - "c3": -30.628649662282886, - "c4": -15.27168776325506, - "c5": 26.79894171256474, - "c6": -9.369088735368646, - "c7": -3.0714141215078925 + "points": { + "c1": 30.08444921127129, + "c2": 18.594002812636376, + "c3": -1.9573781072532697, + "c4": -7.825279969270682, + "c5": -27.925834609644532, + "c6": -16.09381691857654, + "c7": -13.753487026359814 }, - "vertexSeeds": { - "c1": 1.4632207085531868, - "c2": 1.495035151471821, - "c3": 1.5094831085363543, - "c4": 1.5520683990689932, - "c5": 1.2507726168531854, - "c6": 1.2562170912772428, - "c7": 1.4466899153949875 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937588, + "c3": 1.4331946370781323, + "c4": 1.1465557096625059, + "c5": 0.8599167822468794, + "c6": 0.5732778548312529, + "c7": 0.28663892741562647 }, "rgb": [77, 76, 132] }, @@ -377358,23 +377358,23 @@ "year": 1805, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -24.502932897297683, - "c2": 0.08847231982340986, - "c3": -18.254983912723556, - "c4": 28.569741486735772, - "c5": -14.674884840143388, - "c6": -14.556021960314698, - "c7": -7.126203819277055 + "points": { + "c1": 16.116428883587673, + "c2": -16.741878761040198, + "c3": -23.48177688039155, + "c4": -12.336710915824234, + "c5": 27.67383994137254, + "c6": -23.219743619506296, + "c7": -10.959150129728872 }, - "vertexSeeds": { - "c1": 3.697120167409368, - "c2": 3.7727264723385585, - "c3": 3.8047053769859067, - "c4": 3.529009464707422, - "c5": 3.803409320763873, - "c6": 3.8461830515176825, - "c7": 3.6080891617775905 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.52011095700416, + "c3": 4.600092464170132, + "c4": 3.680073971336113, + "c5": 2.760055478502084, + "c6": 1.8400369856680565, + "c7": 0.9200184928340283 }, "rgb": [238, 201, 159] }, @@ -377385,23 +377385,23 @@ "year": 1805, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 3.8633402062776057, - "c2": -21.70164366084198, - "c3": 20.227224336495716, - "c4": 2.882838541934511, - "c5": 17.401699519037606, - "c6": -0.3658019939850021, - "c7": -34.90305084404878 + "points": { + "c1": 29.76805758889538, + "c2": -12.813463673790999, + "c3": 15.977002766572951, + "c4": 22.190335449507224, + "c5": 36.094411041663626, + "c6": 12.123100295763123, + "c7": -22.83153748810421 }, - "vertexSeeds": { - "c1": 2.9411509011980432, - "c2": 2.923678977487591, - "c3": 3.161244874695954, - "c4": 2.919335140135559, - "c5": 3.0094007722368343, - "c6": 3.042940575232897, - "c7": 3.1618430547729557 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636619, + "c3": 3.8141470180305115, + "c4": 3.051317614424413, + "c5": 2.288488210818305, + "c6": 1.5256588072122066, + "c7": 0.7628294036061077 }, "rgb": [86, 146, 138] }, @@ -377412,23 +377412,23 @@ "year": 1805, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 17.018687965764613, - "c2": 19.33439330659484, - "c3": -5.033498038259172, - "c4": 6.959664710813158, - "c5": -9.454903159031819, - "c6": -11.398046829637915, - "c7": -19.616549958449262 + "points": { + "c1": -4.0353175232272065, + "c2": -6.996967610114087, + "c3": 0.5615358477457875, + "c4": -4.935495433565329, + "c5": 20.715078468172372, + "c6": 14.945953364693196, + "c7": -4.287256083803111 }, - "vertexSeeds": { - "c1": 2.6135542130268803, - "c2": 2.652858729065906, - "c3": 2.749085422674228, - "c4": 2.6365191948842734, - "c5": 2.616973448820343, - "c6": 2.763878041805509, - "c7": 2.6599312643423487 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.049930651872396, + "c3": 3.374942209893671, + "c4": 2.6999537679149346, + "c5": 2.024965325936198, + "c6": 1.3499768839574617, + "c7": 0.6749884419787365 }, "rgb": [58, 15, 49] }, @@ -377439,23 +377439,23 @@ "year": 1805, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -8.517510953982828, - "c2": 19.311140783833316, - "c3": 22.964448051085547, - "c4": -23.744885817935938, - "c5": -1.1850398180262545, - "c6": -13.4397099118164, - "c7": -6.143094666473559 + "points": { + "c1": 8.093780921270678, + "c2": 0.746755026596496, + "c3": 35.91058333919653, + "c4": -13.88217845749337, + "c5": -21.916392882318128, + "c6": -14.669669514399356, + "c7": -28.106110205607635 }, - "vertexSeeds": { - "c1": 5.203968032170611, - "c2": 5.373678005405705, - "c3": 5.260950820811419, - "c4": 5.3749436391304855, - "c5": 5.513157164250125, - "c6": 5.56982629908982, - "c7": 5.348299943377849 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986128, + "c3": 6.888580674988437, + "c4": 5.510864539990746, + "c5": 4.133148404993055, + "c6": 2.755432269995382, + "c7": 1.377716134997691 }, "rgb": [86, 146, 138] }, @@ -377466,23 +377466,23 @@ "year": 1805, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -23.648836807303933, - "c2": -8.948569857809876, - "c3": -10.792918652888915, - "c4": 19.24809052606505, - "c5": -33.98084088895176, - "c6": -0.510760141625461, - "c7": -9.036329604639107 + "points": { + "c1": 29.022247539447775, + "c2": 38.05367464046873, + "c3": 5.088307236926752, + "c4": 1.8285145552496544, + "c5": -19.895619733832298, + "c6": -1.2508427354476126, + "c7": -32.02430299057217 }, - "vertexSeeds": { - "c1": 5.6259282494784575, - "c2": 5.824035562844913, - "c3": 5.768092351358417, - "c4": 5.443010622058899, - "c5": 5.674286735362018, - "c6": 5.591617597451559, - "c7": 5.649502337167724 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307905, + "c3": 7.0735090152565885, + "c4": 5.658807212205271, + "c5": 4.244105409153953, + "c6": 2.8294036061026353, + "c7": 1.4147018030513177 }, "rgb": [77, 76, 132] }, @@ -377493,23 +377493,23 @@ "year": 1805, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": -20.663953151446037, - "c2": -8.421210883226438, - "c3": -19.777691069576044, - "c4": 19.19798423047699, - "c5": 18.749648717146357, - "c6": 6.416469402071794, - "c7": 7.745448885337286 + "points": { + "c1": -4.882998018431067, + "c2": -14.818070141620847, + "c3": 17.570689835357115, + "c4": 24.33692841999696, + "c5": -18.67587621881795, + "c6": 2.364377016072872, + "c7": -22.000496153329692 }, - "vertexSeeds": { - "c1": 1.8935341870408866, - "c2": 1.9892864890632915, - "c3": 1.8016391992743388, - "c4": 1.846443009047632, - "c5": 2.0203986577212047, - "c6": 1.8562180107781052, - "c7": 2.0036200810625626 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635242, + "c3": 2.4503005085529357, + "c4": 1.9602404068423498, + "c5": 1.4701803051317606, + "c6": 0.9801202034211749, + "c7": 0.4900601017105859 }, "rgb": [86, 146, 138] }, @@ -377520,23 +377520,23 @@ "year": 1805, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -22.68796524510954, - "c2": -10.911162646244225, - "c3": 29.17927745601115, - "c4": -15.767478746496675, - "c5": 15.682231395679587, - "c6": 7.851547577757785, - "c7": 22.87365685147197 + "points": { + "c1": 6.539370428749372, + "c2": -24.74322008979017, + "c3": -15.055876164882196, + "c4": -6.156933372433908, + "c5": -6.002254394438729, + "c6": -9.651942647307049, + "c7": 29.778745063185525 }, - "vertexSeeds": { - "c1": 2.856327529885221, - "c2": 3.06868158643498, - "c3": 3.0977356910556324, - "c4": 2.835126311543373, - "c5": 2.9369895686315406, - "c6": 2.9878428226445406, - "c7": 2.9081718002389874 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475731, + "c3": 3.721682847896445, + "c4": 2.977346278317151, + "c5": 2.2330097087378653, + "c6": 1.4886731391585797, + "c7": 0.7443365695792942 }, "rgb": [77, 76, 132] }, @@ -377547,23 +377547,23 @@ "year": 1805, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -18.098758661637063, - "c2": 0.6227356175019807, - "c3": 14.046513835373311, - "c4": 0.9264994552617551, - "c5": -12.070630029177877, - "c6": -14.642148708850963, - "c7": 14.674642854910466 + "points": { + "c1": 8.367284031837691, + "c2": -27.867810653892743, + "c3": -21.9995493799617, + "c4": 18.8503281624453, + "c5": 21.074894738524677, + "c6": -30.771808730358995, + "c7": -0.2898854576750267 }, - "vertexSeeds": { - "c1": 4.677264799943417, - "c2": 4.949920871981219, - "c3": 4.625578213371012, - "c4": 4.770580997132019, - "c5": 4.894676479760853, - "c6": 4.988060999988115, - "c7": 4.614734250015384 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181233, + "c4": 4.789644012944979, + "c5": 3.592233009708734, + "c6": 2.3948220064724897, + "c7": 1.1974110032362448 }, "rgb": [58, 15, 49] }, @@ -377574,23 +377574,23 @@ "year": 1805, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -26.298079147998685, - "c2": 31.04793136000376, - "c3": -13.115466102734047, - "c4": -6.6676388550798045, - "c5": -14.019933784006195, - "c6": 22.686163027842014, - "c7": -9.192427456556743 + "points": { + "c1": 20.88806853364381, + "c2": -33.988790820780096, + "c3": 32.15657429210994, + "c4": -29.485679228076247, + "c5": -18.135979356265555, + "c6": -24.418233985562406, + "c7": 4.446366931622251 }, - "vertexSeeds": { - "c1": 7.270627709179751, - "c2": 7.6003553054818624, - "c3": 7.489110951890719, - "c4": 7.691029022363211, - "c5": 7.455351770691902, - "c6": 7.240564071356126, - "c7": 7.898244462375164 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490992, + "c3": 9.477577438742484, + "c4": 7.582061950993995, + "c5": 5.686546463245487, + "c6": 3.7910309754969975, + "c7": 1.895515487748508 }, "rgb": [58, 15, 49] }, @@ -377601,23 +377601,23 @@ "year": 1806, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": -0.9727919182600786, - "c2": -32.40316974999557, - "c3": 13.269978964098343, - "c4": 31.108241654917876, - "c5": -35.02183895069334, - "c6": -36.875196645150204, - "c7": 1.1952084685502982 + "points": { + "c1": -44.251508277226414, + "c2": 24.84499866875491, + "c3": -39.86776596219798, + "c4": 10.911888223043803, + "c5": -3.317716025456633, + "c6": 13.627312067794236, + "c7": -13.093875733111723 }, - "vertexSeeds": { - "c1": 2.405045187688732, - "c2": 2.4209202695252032, - "c3": 2.424586396685873, - "c4": 2.394377626391276, - "c5": 2.411737389326122, - "c6": 2.4028031187450836, - "c7": 2.3737678787802117 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679583, + "c3": 2.9126213592232957, + "c4": 2.3300970873786326, + "c5": 1.747572815533989, + "c6": 1.1650485436893259, + "c7": 0.5825242718446629 }, "rgb": [238, 201, 159] }, @@ -377628,23 +377628,23 @@ "year": 1805, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": -18.12422354961472, - "c2": -14.858018448058251, - "c3": 11.324456846519542, - "c4": -15.632981560345321, - "c5": -15.962234666503598, - "c6": 7.739341405649, - "c7": 13.299240101587952 + "points": { + "c1": -15.710058676252721, + "c2": 7.014959627809468, + "c3": 1.0257624796080975, + "c4": 7.4531934131395055, + "c5": 4.820342424205808, + "c6": 11.664584744261088, + "c7": 0.1441058174531875 }, - "vertexSeeds": { - "c1": 1.1969826938014516, - "c2": 1.142287934462195, - "c3": 1.1663343812465294, - "c4": 1.201657183636161, - "c5": 1.2042873687879485, - "c6": 1.196509438537805, - "c7": 1.2115244182309552 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155345, + "c3": 1.6181229773462793, + "c4": 1.294498381877024, + "c5": 0.9708737864077672, + "c6": 0.6472491909385106, + "c7": 0.3236245954692553 }, "rgb": [238, 201, 159] }, @@ -377655,23 +377655,23 @@ "year": 1805, "resistanceReported": false, "duration": 34128000, - "curveSeeds": { - "c1": -27.706116436340928, - "c2": 35.255046990603205, - "c3": -11.708344374667512, - "c4": -40.83224722132577, - "c5": 4.169124691827669, - "c6": -18.54438132832972, - "c7": 46.95058874372039 + "points": { + "c1": 36.41437445615743, + "c2": 17.372370812848814, + "c3": 6.274825498938149, + "c4": -45.7401460671641, + "c5": -3.0083969952481695, + "c6": -27.525253564028485, + "c7": 35.926195766201516 }, - "vertexSeeds": { - "c1": 7.4123265930653925, - "c2": 6.970068983627746, - "c3": 7.278138477867636, - "c4": 7.406444704149002, - "c5": 8.37116370326, - "c6": 7.8012323446559275, - "c7": 7.21978820270796 + "offsets": { + "c1": 14.627831715210357, + "c2": 12.538141470180303, + "c3": 10.44845122515025, + "c4": 8.358760980120197, + "c5": 6.269070735090152, + "c6": 4.179380490060098, + "c7": 2.089690245030046 }, "rgb": [238, 201, 159] }, @@ -377682,23 +377682,23 @@ "year": 1805, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 16.712723152220683, - "c2": 8.896408996702728, - "c3": 2.97985918461373, - "c4": -4.415990797214093, - "c5": 16.836264634602948, - "c6": -11.307315882989975, - "c7": -16.050534916145104 + "points": { + "c1": -11.572258551308819, + "c2": 16.41106123058138, + "c3": -21.617861161721386, + "c4": 7.896253882461188, + "c5": -22.157353689499324, + "c6": -17.460831935372937, + "c7": 22.336576269524706 }, - "vertexSeeds": { - "c1": 2.528344074005394, - "c2": 2.529660409658189, - "c3": 2.52327871784656, - "c4": 2.5038602374058154, - "c5": 2.4887177791075614, - "c6": 2.5368278448195247, - "c7": 2.53396733491195 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188644, + "c3": 2.98196948682385, + "c4": 2.385575589459096, + "c5": 1.7891816920943022, + "c6": 1.192787794729548, + "c7": 0.5963938973647542 }, "rgb": [222, 0, 59] }, @@ -377709,23 +377709,23 @@ "year": 1806, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": -50.46918550355776, - "c2": 43.17075488198358, - "c3": -51.35572349659932, - "c4": -13.005854548152847, - "c5": 50.292788317972075, - "c6": 8.379239047315899, - "c7": -39.072048499972226 + "points": { + "c1": -28.423321249404538, + "c2": -47.926867325015714, + "c3": 23.430171646868835, + "c4": -27.93999177012875, + "c5": 6.25838606380217, + "c6": 41.60627753098455, + "c7": -0.12525746516575964 }, - "vertexSeeds": { - "c1": 9.523284730544562, - "c2": 9.768756460264944, - "c3": 9.776970344463372, - "c4": 9.8569446820299, - "c5": 9.630682303576084, - "c6": 9.608973339634302, - "c7": 9.813966792823114 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.174757281553417, + "c3": 11.812297734627824, + "c4": 9.44983818770228, + "c5": 7.087378640776686, + "c6": 4.72491909385114, + "c7": 2.362459546925546 }, "rgb": [86, 146, 138] }, @@ -377736,23 +377736,23 @@ "year": 1805, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -8.52802961272683, - "c2": -21.822234846086392, - "c3": 11.44377186020375, - "c4": 15.464752726669413, - "c5": -26.072412773433463, - "c6": 26.67771005967216, - "c7": -2.6174157835121186 + "points": { + "c1": -19.90911780804437, + "c2": -29.086211375355894, + "c3": 16.512799081680914, + "c4": 9.609527464489549, + "c5": -20.13814058563554, + "c6": 19.341793563630315, + "c7": -8.142692419442476 }, - "vertexSeeds": { - "c1": 2.1652071415820466, - "c2": 1.9628378470553418, - "c3": 2.118178711011373, - "c4": 2.175432749504754, - "c5": 2.1267952171696924, - "c6": 2.06334627407612, - "c7": 2.0406433678869593 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450753, + "c3": 2.612112806287564, + "c4": 2.08969024503005, + "c5": 1.5672676837725394, + "c6": 1.044845122515025, + "c7": 0.5224225612575144 }, "rgb": [86, 146, 138] }, @@ -377763,23 +377763,23 @@ "year": 1805, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -9.946231775187922, - "c2": -21.310423601434852, - "c3": -3.0858884306552667, - "c4": 9.211373840384255, - "c5": -5.667513956216752, - "c6": -1.309484803923123, - "c7": 2.3690898025899827 + "points": { + "c1": -11.209396409277474, + "c2": -1.347514105628953, + "c3": -19.522643981285583, + "c4": 1.6499417316556446, + "c5": 5.860699996590462, + "c6": 5.525418012341291, + "c7": -25.368820541976568 }, - "vertexSeeds": { - "c1": 6.4663721276048785, - "c2": 6.1817974048787185, - "c3": 5.931771800309978, - "c4": 6.446958470996243, - "c5": 6.500950112525129, - "c6": 5.894867124994219, - "c7": 5.973856003908223 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795649, + "c4": 6.2320850670365155, + "c5": 4.674063800277399, + "c6": 3.1160425335182667, + "c7": 1.5580212667591333 }, "rgb": [238, 201, 159] }, @@ -377790,23 +377790,23 @@ "year": 1805, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 9.492209815694586, - "c2": 22.090779176266643, - "c3": -30.283298242366275, - "c4": -28.061301056920183, - "c5": 1.9901400253370767, - "c6": 8.744229696559252, - "c7": 12.547264374637159 + "points": { + "c1": -17.78282827894244, + "c2": 3.218487152820785, + "c3": 17.620673018240517, + "c4": -30.690829963823063, + "c5": 23.001192760420068, + "c6": 9.86768299065725, + "c7": -29.366009061384844 }, - "vertexSeeds": { - "c1": 6.1174865532406155, - "c2": 5.940960699813579, - "c3": 6.097977105364324, - "c4": 6.09313671108018, - "c5": 5.797349317517213, - "c6": 5.894375626237126, - "c7": 5.94146100772148 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710128, + "c3": 7.304669440591775, + "c4": 5.843735552473406, + "c5": 4.382801664355055, + "c6": 2.921867776236703, + "c7": 1.4609338881183516 }, "rgb": [86, 146, 138] }, @@ -377817,23 +377817,23 @@ "year": 1805, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -16.495012424331726, - "c2": -4.694813459539379, - "c3": -14.867670992953183, - "c4": -4.619695327377919, - "c5": 3.725220021479295, - "c6": -8.403762230724407, - "c7": -19.926195628153703 + "points": { + "c1": -27.82828236040683, + "c2": -25.079614616109133, + "c3": -1.959627454416669, + "c4": -23.620266667793175, + "c5": -18.467102491857233, + "c6": 23.63469951603291, + "c7": -20.89423796324209 }, - "vertexSeeds": { - "c1": 1.6237345184360064, - "c2": 1.4659725110535804, - "c3": 1.593485107958036, - "c4": 1.534613386342785, - "c5": 1.233106319651119, - "c6": 1.3958790076057739, - "c7": 1.6153760363805694 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742022, + "c3": 1.4794267221451687, + "c4": 1.1835413777161348, + "c5": 0.8876560332871011, + "c6": 0.5917706888580674, + "c7": 0.2958853444290337 }, "rgb": [238, 201, 159] }, @@ -377844,23 +377844,23 @@ "year": 1805, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -22.876212137429377, - "c2": -17.730846669475195, - "c3": 6.9819676718556, - "c4": 0.34895682862990185, - "c5": -1.437429399435043, - "c6": 25.731002132991094, - "c7": -2.147500049968123 + "points": { + "c1": 31.307472946516583, + "c2": 15.302287223775814, + "c3": 22.964548604472363, + "c4": -16.482288159756138, + "c5": 22.649157675921835, + "c6": -20.404767348746347, + "c7": -6.239497273658973 }, - "vertexSeeds": { - "c1": 7.901886484309972, - "c2": 7.813452287906484, - "c3": 7.191041924919037, - "c4": 7.72813193997861, - "c5": 7.208446570635136, - "c6": 7.9091566945438245, - "c7": 7.652597245736971 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490992, + "c3": 9.477577438742484, + "c4": 7.582061950993995, + "c5": 5.686546463245487, + "c6": 3.7910309754969975, + "c7": 1.895515487748508 }, "rgb": [222, 0, 59] }, @@ -377871,23 +377871,23 @@ "year": 1805, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 24.796431406536364, - "c2": -5.534532956768334, - "c3": -25.446978054627436, - "c4": -20.772967609779663, - "c5": 8.109507123790095, - "c6": -24.079836540526212, - "c7": -24.241943666756903 + "points": { + "c1": -11.012802481741389, + "c2": -23.153379750096455, + "c3": -8.59728682795346, + "c4": -13.24761535912942, + "c5": 29.00116681860822, + "c6": -18.291048711192293, + "c7": 24.92521228338257 }, - "vertexSeeds": { - "c1": 4.420595357909522, - "c2": 4.717817712611963, - "c3": 4.40913762254674, - "c4": 4.341145292183821, - "c5": 4.439505432251968, - "c6": 4.273187875003726, - "c7": 4.580642713078822 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814147, + "c3": 5.640314378178457, + "c4": 4.512251502542765, + "c5": 3.3841886269070733, + "c6": 2.2561257512713824, + "c7": 1.1280628756356912 }, "rgb": [222, 0, 59] }, @@ -377898,23 +377898,23 @@ "year": 1805, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 22.610593849150035, - "c2": 27.218794110783904, - "c3": 20.182002103467873, - "c4": -27.414365405127327, - "c5": -34.08212566761331, - "c6": 26.120891520102738, - "c7": -24.551715328243375 + "points": { + "c1": 15.78576187009017, + "c2": -17.320391538024285, + "c3": 16.51370807352032, + "c4": -12.47564664142909, + "c5": -17.374699858061046, + "c6": -29.479439775081644, + "c7": 16.441302725529802 }, - "vertexSeeds": { - "c1": 3.1193101404438695, - "c2": 3.2819617745457177, - "c3": 2.9972880201450165, - "c4": 3.0374407709450866, - "c5": 3.029518008202015, - "c6": 3.003073160558963, - "c7": 3.0267254061978726 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.7156726768377295, + "c3": 3.9297272306981035, + "c4": 3.1437817845584863, + "c5": 2.35783633841886, + "c6": 1.5718908922792432, + "c7": 0.7859454461396261 }, "rgb": [222, 0, 59] }, @@ -377925,23 +377925,23 @@ "year": 1805, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 21.45334977150398, - "c2": -2.0154602112874223, - "c3": -12.57058246537175, - "c4": 6.447776962054405, - "c5": 17.87310642909776, - "c6": -19.79626130386955, - "c7": -15.20974007171045 + "points": { + "c1": -4.271024011454237, + "c2": -28.544197986723894, + "c3": 16.34846348665208, + "c4": 8.593133303110122, + "c5": 3.4466353352752392, + "c6": 15.21396563954066, + "c7": -19.539736921639843 }, - "vertexSeeds": { - "c1": 2.906815627230314, - "c2": 2.805769050359014, - "c3": 3.0115467110524925, - "c4": 2.942307372097209, - "c5": 2.5904033753241, - "c6": 2.8552647544410057, - "c7": 2.5726328733004484 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395288, + "c3": 3.675450762829403, + "c4": 2.9403606102635247, + "c5": 2.2052704576976407, + "c6": 1.4701803051317623, + "c7": 0.7350901525658783 }, "rgb": [222, 0, 59] }, @@ -377952,23 +377952,23 @@ "year": 1805, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -16.50161751862205, - "c2": -21.974486617549942, - "c3": -19.393924161324705, - "c4": 23.054832476720783, - "c5": -20.030409487227573, - "c6": 1.0249748334696527, - "c7": -5.68772123846308 + "points": { + "c1": 16.190895304708626, + "c2": 23.16515728028149, + "c3": 25.05263410888893, + "c4": -17.339476587745644, + "c5": -17.343117377681843, + "c6": -7.448862314199346, + "c7": 20.206353127727397 }, - "vertexSeeds": { - "c1": 4.553943079214785, - "c2": 4.6675860865416245, - "c3": 4.4588512519958075, - "c4": 4.675718464221027, - "c5": 4.760709552056129, - "c6": 4.6595750575870465, - "c7": 4.635729680005203 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015257, + "c3": 5.755894590846048, + "c4": 4.604715672676838, + "c5": 3.4535367545076285, + "c6": 2.302357836338419, + "c7": 1.1511789181692096 }, "rgb": [238, 201, 159] }, @@ -377979,23 +377979,23 @@ "year": 1805, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -12.813419993258321, - "c2": -6.260671096201227, - "c3": 5.98133004849139, - "c4": -9.462700354264765, - "c5": 14.063124347393533, - "c6": 9.097037871613885, - "c7": 8.297231472997161 + "points": { + "c1": 8.621513809472681, + "c2": 5.53264186433077, + "c3": 16.940440442215706, + "c4": 8.504967973099447, + "c5": 1.721209447548798, + "c6": -5.5025517512796025, + "c7": 8.289843789014515 }, - "vertexSeeds": { - "c1": 5.525643977025395, - "c2": 5.517660612605349, - "c3": 5.482652904128637, - "c4": 5.733296059002134, - "c5": 5.41977732406533, - "c6": 5.657170056093263, - "c7": 5.5312071072259625 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -378006,23 +378006,23 @@ "year": 1805, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 6.597294820538934, - "c2": 19.97224924980133, - "c3": 26.621248033423974, - "c4": -22.01278084693298, - "c5": -7.788109596871813, - "c6": 19.869890425403682, - "c7": -15.44866303707851 + "points": { + "c1": -8.082293333890313, + "c2": -34.730445742688964, + "c3": 13.820922758175115, + "c4": 4.6368771171024505, + "c5": 7.164148809671005, + "c6": -10.040700235594635, + "c7": -23.685330579700995 }, - "vertexSeeds": { - "c1": 4.2831574266110355, - "c2": 4.340044965047087, - "c3": 4.2848212629198885, - "c4": 4.4887408418212225, - "c5": 4.522802069124032, - "c6": 4.565389456435068, - "c7": 4.630396666318845 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733707, + "c3": 5.594082293111417, + "c4": 4.475265834489138, + "c5": 3.3564493758668488, + "c6": 2.237632917244569, + "c7": 1.11881645862228 }, "rgb": [86, 146, 138] }, @@ -378033,23 +378033,23 @@ "year": 1805, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 32.359796041312876, - "c2": -3.1062353024381224, - "c3": -14.534064256135999, - "c4": 15.917929977304567, - "c5": -4.581121613730396, - "c6": -18.778971726792822, - "c7": -25.732919566101955 + "points": { + "c1": 0.8601998998001932, + "c2": -35.3366502038897, + "c3": -10.751178731200845, + "c4": 33.05924132925149, + "c5": 6.413798807622875, + "c6": -32.328881984717526, + "c7": -13.710016680035714 }, - "vertexSeeds": { - "c1": 4.629166668765257, - "c2": 4.352558650951866, - "c3": 4.5790692589210735, - "c4": 4.588048226702386, - "c5": 4.363081310821295, - "c6": 4.364718223699824, - "c7": 4.2445460118338705 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814147, + "c3": 5.640314378178457, + "c4": 4.512251502542765, + "c5": 3.3841886269070733, + "c6": 2.2561257512713824, + "c7": 1.1280628756356912 }, "rgb": [58, 15, 49] }, @@ -378060,23 +378060,23 @@ "year": 1805, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -6.3173066370691835, - "c2": 27.587533233347287, - "c3": 9.326744650566042, - "c4": -31.96714071456536, - "c5": -16.544943184005582, - "c6": -23.241900558774084, - "c7": -29.636184695595997 + "points": { + "c1": 16.334364193241072, + "c2": -5.706780642040545, + "c3": 3.684480729846854, + "c4": -23.30686002509467, + "c5": -11.878453826742629, + "c6": -22.702156036892042, + "c7": 25.375705937285403 }, - "vertexSeeds": { - "c1": 6.186154016922369, - "c2": 5.922660345143482, - "c3": 5.9044422337039695, - "c4": 5.865438276356104, - "c5": 5.908566069624584, - "c6": 5.931737034942229, - "c7": 5.664638183316248 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.95977808599168, + "c3": 7.466481738326403, + "c4": 5.973185390661126, + "c5": 4.479889042995849, + "c6": 2.9865926953305535, + "c7": 1.4932963476652767 }, "rgb": [238, 201, 159] }, @@ -378087,23 +378087,23 @@ "year": 1805, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -26.20232651175075, - "c2": 22.647474531937064, - "c3": -4.475353573761041, - "c4": 9.884762484584648, - "c5": -7.753436074035072, - "c6": -24.448684049500066, - "c7": 3.7478229665502703 + "points": { + "c1": -9.441261957632154, + "c2": -3.405457157951343, + "c3": -21.51392425569802, + "c4": 8.717186392229173, + "c5": -0.9054336690464737, + "c6": -27.194080269288108, + "c7": 25.24320907825681 }, - "vertexSeeds": { - "c1": 6.017728073695623, - "c2": 6.604078268964512, - "c3": 6.371689102351537, - "c4": 6.295724020332683, - "c5": 6.523499716522969, - "c6": 6.327141752739156, - "c7": 6.540322746854873 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715681, + "c3": 7.882570503929725, + "c4": 6.306056403143788, + "c5": 4.729542302357832, + "c6": 3.153028201571894, + "c7": 1.576514100785956 }, "rgb": [86, 146, 138] }, @@ -378114,23 +378114,23 @@ "year": 1805, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 18.6440625107008, - "c2": 26.556726179376817, - "c3": -2.2595545369598398, - "c4": 27.98401186495113, - "c5": -30.52398755711459, - "c6": -31.959473181502997, - "c7": 27.548223137748025 + "points": { + "c1": 17.83605880566354, + "c2": 25.222601840275118, + "c3": -16.841707023573896, + "c4": 26.48745832039299, + "c5": -16.5741922952174, + "c6": -32.282790027471144, + "c7": -26.21648674430425 }, - "vertexSeeds": { - "c1": 7.919507094193533, - "c2": 7.6424152603051745, - "c3": 7.246214346653109, - "c4": 7.535481057241009, - "c5": 7.594224903184832, - "c6": 7.738424675794872, - "c7": 7.80326118190595 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571438, + "c3": 9.523809523809522, + "c4": 7.619047619047625, + "c5": 5.714285714285709, + "c6": 3.8095238095238124, + "c7": 1.9047619047618969 }, "rgb": [86, 146, 138] }, @@ -378141,23 +378141,23 @@ "year": 1805, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 27.893652884098795, - "c2": 0.6329964489386413, - "c3": -12.230348535711784, - "c4": 22.505899943399488, - "c5": -16.883118183243216, - "c6": 1.8265391170070622, - "c7": 9.073873774486618 + "points": { + "c1": 4.343836241504473, + "c2": 30.1641166249746, + "c3": -22.759993228767136, + "c4": 10.104001984057202, + "c5": 5.233699101124312, + "c6": 24.22750568135, + "c7": 21.612602887260227 }, - "vertexSeeds": { - "c1": 2.9877911130841674, - "c2": 3.194022989610734, - "c3": 3.174302273084343, - "c4": 2.890477788308591, - "c5": 3.2043814368078567, - "c6": 3.0933398366862703, - "c7": 3.1651789418503022 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918171, + "c3": 3.9759593157651385, + "c4": 3.1807674526121117, + "c5": 2.3855755894590853, + "c6": 1.5903837263060532, + "c7": 0.7951918631530266 }, "rgb": [86, 146, 138] }, @@ -378168,23 +378168,23 @@ "year": 1805, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 2.4306270836136754, - "c2": -7.038610575354063, - "c3": -16.54218431898832, - "c4": 14.161996625565656, - "c5": 21.14994253513961, - "c6": 24.55215579573884, - "c7": 14.037847771351672 + "points": { + "c1": -28.772940252538614, + "c2": 0.9086798264229792, + "c3": 8.010602240225175, + "c4": -6.7568438981904535, + "c5": -24.850635904713258, + "c6": 15.636910603355041, + "c7": -9.30110599824583 }, - "vertexSeeds": { - "c1": 5.025836536282247, - "c2": 4.895371720504549, - "c3": 5.100027222983129, - "c4": 5.230646960361394, - "c5": 5.1628233414797045, - "c6": 4.883141179854035, - "c7": 5.222018182870812 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221913, + "c3": 6.449375866851592, + "c4": 5.159500693481272, + "c5": 3.869625520110952, + "c6": 2.5797503467406315, + "c7": 1.2898751733703204 }, "rgb": [86, 146, 138] }, @@ -378195,23 +378195,23 @@ "year": 1805, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -17.244904402368913, - "c2": 0.2173055733195497, - "c3": 8.73121065714232, - "c4": 27.162301907535493, - "c5": 12.42186088943437, - "c6": -23.759655329663545, - "c7": -21.39423623206147 + "points": { + "c1": -9.563137418887518, + "c2": 11.640967944087912, + "c3": 36.16549579712695, + "c4": -11.181956420195846, + "c5": -7.590826417782857, + "c6": -9.072598362490407, + "c7": 20.81370446107367 }, - "vertexSeeds": { - "c1": 5.18043170183462, - "c2": 5.251987712823472, - "c3": 5.128838547192518, - "c4": 5.41585668630136, - "c5": 5.266819807347537, - "c6": 5.184776401595715, - "c7": 5.2081002594339525 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186773, + "c4": 5.344429033749432, + "c5": 4.008321775312075, + "c6": 2.672214516874716, + "c7": 1.336107258437358 }, "rgb": [222, 0, 59] }, @@ -378222,23 +378222,23 @@ "year": 1805, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 19.199281240065623, - "c2": -24.371028472721388, - "c3": 11.274573914710338, - "c4": -2.8046029535550296, - "c5": -0.9783626214940355, - "c6": -4.951825966248524, - "c7": -8.26075913069904 + "points": { + "c1": 21.452048401931542, + "c2": 25.662038866160636, + "c3": 26.244454630453063, + "c4": -20.382401797868642, + "c5": 26.115430461635107, + "c6": -5.911226174914123, + "c7": 8.219425150259234 }, - "vertexSeeds": { - "c1": 6.549833475339752, - "c2": 6.958829113982815, - "c3": 6.876038993753238, - "c4": 6.456942876637764, - "c5": 6.682566783747319, - "c6": 6.584954705414991, - "c7": 6.902379937068271 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841885, + "c3": 8.529819694868237, + "c4": 6.82385575589459, + "c5": 5.117891816920943, + "c6": 3.411927877947295, + "c7": 1.7059639389736474 }, "rgb": [86, 146, 138] }, @@ -378249,23 +378249,23 @@ "year": 1805, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 7.433089503547166, - "c2": -24.50425010757352, - "c3": -17.176096917040162, - "c4": 26.190906628226635, - "c5": -1.2114342947657946, - "c6": 16.01779576285591, - "c7": 0.9762364566209811 + "points": { + "c1": -34.752150711746324, + "c2": -34.210754375224255, + "c3": 1.8575376160273436, + "c4": 32.48639077001922, + "c5": 42.8576491319532, + "c6": 31.464502649243137, + "c7": -25.281686967206134 }, - "vertexSeeds": { - "c1": 5.966060048870856, - "c2": 5.703662048602398, - "c3": 5.73879515004573, - "c4": 5.708946617646905, - "c5": 5.629176628488292, - "c6": 5.9766309790610155, - "c7": 5.525460834101085 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -378276,23 +378276,23 @@ "year": 1805, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -2.623153272829306, - "c2": 3.5144710222909623, - "c3": -23.05365779451054, - "c4": 0.005586010099325023, - "c5": 22.72861136994935, - "c6": -3.4327542863037515, - "c7": 21.357765046639585 + "points": { + "c1": -5.39286236834203, + "c2": -20.654608908240522, + "c3": 20.33253631404679, + "c4": -19.763919570712147, + "c5": -28.022617673093816, + "c6": 5.739269535175048, + "c7": 16.913948923095752 }, - "vertexSeeds": { - "c1": 2.2979807751605605, - "c2": 2.5001378230222073, - "c3": 2.4483167767871628, - "c4": 2.283643767219486, - "c5": 2.255121191694869, - "c6": 2.4434972294008634, - "c7": 2.480563616151828 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690736, + "c3": 3.028201571890893, + "c4": 2.422561257512713, + "c5": 1.8169209431345368, + "c6": 1.2112806287563564, + "c7": 0.6056403143781803 }, "rgb": [77, 76, 132] }, @@ -378303,23 +378303,23 @@ "year": 1805, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 31.706464400988423, - "c2": 11.58497584657394, - "c3": 21.25538404436773, - "c4": 14.672710672667037, - "c5": -28.330256361075445, - "c6": -18.499888710011184, - "c7": 10.06332272976828 + "points": { + "c1": 2.9439322981591687, + "c2": 31.225751689549227, + "c3": 26.76225593765006, + "c4": -2.29177460797397, + "c5": 35.58574602883667, + "c6": -27.10010728243892, + "c7": 17.63403088957447 }, - "vertexSeeds": { - "c1": 4.280230232688907, - "c2": 4.4745332617582445, - "c3": 4.427298277017519, - "c4": 4.480649996217157, - "c5": 4.483597298112852, - "c6": 4.3299756428793765, - "c7": 4.372643459157714 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843278, + "c4": 4.3273231622746255, + "c5": 3.245492371705958, + "c6": 2.1636615811373052, + "c7": 1.0818307905686526 }, "rgb": [58, 15, 49] }, @@ -378330,23 +378330,23 @@ "year": 1805, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 8.35850222883166, - "c2": -17.22984414954392, - "c3": 28.96582571393691, - "c4": 9.840498751155707, - "c5": 40.069606210420986, - "c6": -13.093005648450845, - "c7": -3.6473525616291482 + "points": { + "c1": 25.251927867551757, + "c2": -25.276559534386195, + "c3": 8.212802884730046, + "c4": 20.608676077458455, + "c5": 0.34629211449807684, + "c6": 15.700236436178457, + "c7": 23.998624887222675 }, - "vertexSeeds": { - "c1": 4.233039467515267, - "c2": 4.300959255350159, - "c3": 4.064957282852699, - "c4": 4.017811020964748, - "c5": 4.1921981206003744, - "c6": 4.186435251421163, - "c7": 4.105821698337719 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049927, + "c3": 5.201109570041614, + "c4": 4.160887656033288, + "c5": 3.1206657420249635, + "c6": 2.0804438280166497, + "c7": 1.0402219140083249 }, "rgb": [86, 146, 138] }, @@ -378357,23 +378357,23 @@ "year": 1805, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": 24.577534668760038, - "c2": -18.847737358344414, - "c3": 5.953685699257157, - "c4": 15.02520125714068, - "c5": -32.709698098201805, - "c6": -6.964112587910073, - "c7": -6.916899535190012 + "points": { + "c1": -8.358227649862442, + "c2": -30.700207660403983, + "c3": 17.418681312254925, + "c4": 18.30269495741056, + "c5": -10.262456592879246, + "c6": -5.719753261225556, + "c7": -28.48577041179093 }, - "vertexSeeds": { - "c1": 11.8877944186279, - "c2": 12.057178316805935, - "c3": 11.717327440952419, - "c4": 12.020285540577376, - "c5": 11.835178855951808, - "c6": 12.0560110779581, - "c7": 11.98888806401238 + "offsets": { + "c1": 20.129449838187703, + "c2": 17.25381414701803, + "c3": 14.37817845584836, + "c4": 11.502542764678687, + "c5": 8.626907073509015, + "c6": 5.751271382339343, + "c7": 2.8756356911696717 }, "rgb": [77, 76, 132] }, @@ -378384,23 +378384,23 @@ "year": 1805, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -23.3984686886118, - "c2": -0.04093117084637754, - "c3": -2.721582759574769, - "c4": -19.882536201043003, - "c5": 12.027682586523305, - "c6": 16.85413506334593, - "c7": 3.943593688860865 + "points": { + "c1": 19.33869463456577, + "c2": -12.546174334519293, + "c3": 23.381827262077643, + "c4": -12.263391285238649, + "c5": 16.42066985354448, + "c6": 6.604498302414434, + "c7": -2.1727448310989814 }, - "vertexSeeds": { - "c1": 5.840279016008587, - "c2": 5.865288396968177, - "c3": 5.9151402465165805, - "c4": 5.4769458278120124, - "c5": 5.786863358799925, - "c6": 5.827615435341126, - "c7": 5.847835477241199 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348136, + "c3": 7.096625057790103, + "c4": 5.67730004623209, + "c5": 4.257975034674058, + "c6": 2.838650023116045, + "c7": 1.4193250115580316 }, "rgb": [86, 146, 138] }, @@ -378411,23 +378411,23 @@ "year": 1805, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -21.318192479957183, - "c2": -25.269660351459695, - "c3": -5.487997443035869, - "c4": -9.740009711225419, - "c5": 25.294314785320385, - "c6": -3.8051642909192402, - "c7": 11.096141253158567 + "points": { + "c1": -26.675600542016102, + "c2": -5.705368576321977, + "c3": 7.970445633155048, + "c4": 4.862712742109434, + "c5": -0.05074365705745265, + "c6": -15.969410187842064, + "c7": -24.094394193473867 }, - "vertexSeeds": { - "c1": 3.0817310740843418, - "c2": 3.283894556633563, - "c3": 3.2477250445775705, - "c4": 3.0492518701297056, - "c5": 3.2761852834480534, - "c6": 3.0757377839048106, - "c7": 3.31501248414344 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.77115117891817, + "c3": 3.9759593157651425, + "c4": 3.1807674526121157, + "c5": 2.3855755894590884, + "c6": 1.5903837263060543, + "c7": 0.7951918631530271 }, "rgb": [238, 201, 159] }, @@ -378438,23 +378438,23 @@ "year": 1805, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -10.5835943062898, - "c2": 32.32187544934208, - "c3": -32.6384989332277, - "c4": -29.605914960567272, - "c5": -25.905613286468515, - "c6": 15.719538399580472, - "c7": 32.89929962938418 + "points": { + "c1": 20.016264201047612, + "c2": 30.219618838263536, + "c3": -29.024651112577544, + "c4": 15.007874645195294, + "c5": 13.152014476706341, + "c6": -31.707061401333554, + "c7": -2.426602135082561 }, - "vertexSeeds": { - "c1": 5.068360786876931, - "c2": 5.530494547509997, - "c3": 5.522675850260207, - "c4": 5.4552136136447045, - "c5": 5.1917718508866635, - "c6": 5.29597365400318, - "c7": 5.463653184227578 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062413, + "c3": 6.680536292186773, + "c4": 5.344429033749432, + "c5": 4.008321775312075, + "c6": 2.672214516874716, + "c7": 1.336107258437358 }, "rgb": [238, 201, 159] }, @@ -378465,23 +378465,23 @@ "year": 1805, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -18.741587608658854, - "c2": -21.973925000386583, - "c3": 8.74886787015038, - "c4": 25.658827436865966, - "c5": -0.39226262683013857, - "c6": 0.44684339164009756, - "c7": -17.531097705425477 + "points": { + "c1": 13.233353482554772, + "c2": 7.190854820625628, + "c3": 28.831421687820953, + "c4": 6.213337019734272, + "c5": -13.047121061217087, + "c6": -12.156058632381058, + "c7": -1.6035716440261574 }, - "vertexSeeds": { - "c1": 2.644936715582755, - "c2": 2.7769799960031984, - "c3": 3.011472712299986, - "c4": 2.8089101239762204, - "c5": 2.857297880848537, - "c6": 2.6621517419863205, - "c7": 2.836475273130027 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274617, + "c3": 3.606102635228851, + "c4": 2.8848821081830796, + "c5": 2.1636615811373083, + "c6": 1.4424410540915362, + "c7": 0.7212205270457718 }, "rgb": [86, 146, 138] }, @@ -378492,23 +378492,23 @@ "year": 1805, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -20.968177819808382, - "c2": 27.083054543386716, - "c3": 26.22528766485255, - "c4": -24.928192881515017, - "c5": 29.019668037622168, - "c6": -32.22452571192653, - "c7": -19.11903896776139 + "points": { + "c1": 1.9347016096315315, + "c2": 25.533455848858466, + "c3": 1.65681109747144, + "c4": -6.047199180740151, + "c5": 24.650202010979065, + "c6": -13.058715785571213, + "c7": 12.386951436990273 }, - "vertexSeeds": { - "c1": 2.5264504467294517, - "c2": 2.8792436414445337, - "c3": 2.608043920174967, - "c4": 2.5994111845859758, - "c5": 2.657249650803985, - "c6": 2.721309407708866, - "c7": 2.804939416900756 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282934, + "c4": 2.8294036061026344, + "c5": 2.122052704576975, + "c6": 1.4147018030513157, + "c7": 0.7073509015256565 }, "rgb": [58, 15, 49] }, @@ -378519,23 +378519,23 @@ "year": 1805, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 5.315824293836172, - "c2": 0.9759124740660781, - "c3": -3.3997301651216567, - "c4": -21.07148443250024, - "c5": 7.173330746219367, - "c6": -12.315115640433865, - "c7": 1.5567014865411508 + "points": { + "c1": 26.098896268593645, + "c2": 14.520587233481006, + "c3": -21.514906339513146, + "c4": 18.853031688046077, + "c5": -15.682416199559452, + "c6": -9.106007101211805, + "c7": -11.78102633477932 }, - "vertexSeeds": { - "c1": 4.55211905657667, - "c2": 4.862650174636677, - "c3": 4.802414198070164, - "c4": 4.771913371664595, - "c5": 4.778962330585247, - "c6": 4.79131572754957, - "c7": 4.78371844466769 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181233, + "c4": 4.789644012944979, + "c5": 3.592233009708734, + "c6": 2.3948220064724897, + "c7": 1.1974110032362448 }, "rgb": [58, 15, 49] }, @@ -378546,23 +378546,23 @@ "year": 1805, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 10.249199391565249, - "c2": -14.49829221152524, - "c3": 17.338121822218326, - "c4": 7.724298283343494, - "c5": 5.035728625863861, - "c6": -20.913712552166114, - "c7": 12.97766153395061 + "points": { + "c1": 8.442527083970745, + "c2": -30.292846790930646, + "c3": -7.398570925237898, + "c4": 7.719638687279122, + "c5": 21.035332104351667, + "c6": 16.19179880841778, + "c7": 9.536672164178412 }, - "vertexSeeds": { - "c1": 5.3371495883784705, - "c2": 5.820330697676, - "c3": 5.864671147834321, - "c4": 5.357562359955061, - "c5": 5.4302978774685915, - "c6": 5.683929655639527, - "c7": 5.682211303659516 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622747, + "c3": 7.027276930189549, + "c4": 5.621821544151647, + "c5": 4.2163661581137255, + "c6": 2.8109107720758235, + "c7": 1.4054553860379027 }, "rgb": [238, 201, 159] }, @@ -378573,23 +378573,23 @@ "year": 1805, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -23.269556131953504, - "c2": -0.43192494471977483, - "c3": 23.203641922773695, - "c4": -3.2192688587229448, - "c5": 6.967248551308163, - "c6": 29.03933190814755, - "c7": -14.324396932467973 + "points": { + "c1": 20.13680631586015, + "c2": -0.44411606688964156, + "c3": 3.3796043129736475, + "c4": 31.132077354771546, + "c5": 17.642306964234358, + "c6": -16.799297201005146, + "c7": 23.189034023304465 }, - "vertexSeeds": { - "c1": 4.50207648880391, - "c2": 4.380563294053343, - "c3": 4.49553636888425, - "c4": 4.139004845457856, - "c5": 4.130780078894642, - "c6": 4.4212518027460534, - "c7": 4.522340526761746 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411928, + "c3": 5.4091539528432735, + "c4": 4.327323162274618, + "c5": 3.245492371705964, + "c6": 2.163661581137309, + "c7": 1.0818307905686546 }, "rgb": [222, 0, 59] }, @@ -378600,23 +378600,23 @@ "year": 1805, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -28.262377428432565, - "c2": 26.715713724567387, - "c3": 21.909243229846396, - "c4": -6.605677884165527, - "c5": -36.332206143315744, - "c6": -1.2085718760651858, - "c7": -12.00938232388464 + "points": { + "c1": 25.773610711354387, + "c2": 26.953090150268217, + "c3": 7.6917402127991465, + "c4": 38.157193604476554, + "c5": -23.05783285598564, + "c6": -6.119066628380779, + "c7": -25.008796214501736 }, - "vertexSeeds": { - "c1": 3.9629150848885786, - "c2": 3.710465013625901, - "c3": 3.7332204827466002, - "c4": 3.708245518962052, - "c5": 3.7765932620020104, - "c6": 3.745124365780087, - "c7": 3.9757335380566152 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325941, + "c3": 4.785020804438279, + "c4": 3.8280166435506273, + "c5": 2.871012482662965, + "c6": 1.9140083217753137, + "c7": 0.9570041608876625 }, "rgb": [238, 201, 159] }, @@ -378627,23 +378627,23 @@ "year": 1805, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -1.0908215809783606, - "c2": 0.7384535915313037, - "c3": 11.140153350353149, - "c4": -2.865776534999071, - "c5": 22.70774686928733, - "c6": -21.6936170141701, - "c7": 13.663430859875174 + "points": { + "c1": -7.213438424138712, + "c2": 27.99261837724193, + "c3": 29.776493636339016, + "c4": 13.626834202986917, + "c5": 12.765679721843672, + "c6": 22.481670237636738, + "c7": 4.527481341499513 }, - "vertexSeeds": { - "c1": 5.69088752870446, - "c2": 5.160432954200763, - "c3": 5.477689508600718, - "c4": 5.209576612693621, - "c5": 5.684981106306614, - "c6": 5.622684283041015, - "c7": 5.356571017769557 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387882, + "c4": 5.455386037910301, + "c5": 4.091539528432722, + "c6": 2.727693018955142, + "c7": 1.363846509477562 }, "rgb": [58, 15, 49] }, @@ -378654,23 +378654,23 @@ "year": 1805, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": -10.799132904673371, - "c2": 3.5760917612038448, - "c3": 5.363980970572079, - "c4": -20.48825636325487, - "c5": -12.026160224896904, - "c6": 13.616547588294004, - "c7": 15.902119945695816 + "points": { + "c1": 3.161753580086419, + "c2": 5.911471527341089, + "c3": -20.883055617802295, + "c4": 20.43257443423552, + "c5": 21.285108624133144, + "c6": -13.07114503930684, + "c7": -1.508195377978545 }, - "vertexSeeds": { - "c1": 4.327509515911441, - "c2": 4.228977676469778, - "c3": 4.444649348821128, - "c4": 4.22173080664391, - "c5": 4.214635829041156, - "c6": 4.335547762982828, - "c7": 4.370609302563193 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452148, + "c3": 5.432269995376788, + "c4": 4.345815996301429, + "c5": 3.259361997226079, + "c6": 2.1729079981507198, + "c7": 1.0864539990753599 }, "rgb": [222, 0, 59] }, @@ -378681,23 +378681,23 @@ "year": 1805, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 12.605664383857459, - "c2": -7.938772024603878, - "c3": 2.8487044759123634, - "c4": -2.768494250892772, - "c5": -22.143795551076174, - "c6": -11.92800707799773, - "c7": 14.557834099729135 + "points": { + "c1": 25.42187629986835, + "c2": 19.49319981577502, + "c3": 25.467782188059253, + "c4": 2.9494125349223097, + "c5": -22.157217463120283, + "c6": 36.15122631783565, + "c7": -22.756431447838242 }, - "vertexSeeds": { - "c1": 3.4106628039706455, - "c2": 3.4688766036629595, - "c3": 3.4144746656422718, - "c4": 3.575156483623727, - "c5": 3.4523107754349804, - "c6": 3.5111515828430915, - "c7": 3.4669361463375035 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521501, + "c3": 4.322699953767911, + "c4": 3.4581599630143307, + "c5": 2.5936199722607505, + "c6": 1.7290799815071707, + "c7": 0.8645399907535799 }, "rgb": [77, 76, 132] }, @@ -378708,23 +378708,23 @@ "year": 1805, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -18.701227108207007, - "c2": 15.484157119727776, - "c3": -13.51751164284846, - "c4": -6.245685329658322, - "c5": 14.940434515597559, - "c6": -21.30706569675973, - "c7": -8.036072184262874 + "points": { + "c1": -19.595871231819963, + "c2": -8.901564473463722, + "c3": 13.361704462999022, + "c4": -9.134993671265793, + "c5": -15.350658668625435, + "c6": -7.564762773728326, + "c7": 6.33441394950794 }, - "vertexSeeds": { - "c1": 3.1589857432216975, - "c2": 3.2688207768691613, - "c3": 3.300350844138751, - "c4": 3.259175846840659, - "c5": 3.1021997624871807, - "c6": 3.3104961383945377, - "c7": 3.202553561408723 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.79889042995839, + "c3": 3.9990753582986556, + "c4": 3.1992602866389346, + "c5": 2.3994452149792007, + "c6": 1.5996301433194673, + "c7": 0.7998150716597336 }, "rgb": [222, 0, 59] }, @@ -378735,23 +378735,23 @@ "year": 1805, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -8.224936995098815, - "c2": 2.914268337280408, - "c3": -8.071401429391877, - "c4": 28.50081644162199, - "c5": -24.015268234863292, - "c6": -9.669526349908558, - "c7": -0.07649166500367599 + "points": { + "c1": -21.647957664875143, + "c2": 28.040403374505157, + "c3": 13.446540816610547, + "c4": 9.761962874021652, + "c5": 24.955509853970245, + "c6": 16.621984051465116, + "c7": -7.281970505032891 }, - "vertexSeeds": { - "c1": 2.269828453828927, - "c2": 2.270553631166145, - "c3": 2.2601746563697818, - "c4": 2.269350006778864, - "c5": 2.258636699723548, - "c6": 2.26640870530916, - "c7": 2.2634761998028137 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.2454923717059794, + "c3": 2.7045769764216137, + "c4": 2.1636615811373017, + "c5": 1.6227461858529897, + "c6": 1.0818307905686777, + "c7": 0.540915395284312 }, "rgb": [77, 76, 132] }, @@ -378762,23 +378762,23 @@ "year": 1806, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 45.11356119010563, - "c2": 0.8443140850433863, - "c3": 4.575520683948909, - "c4": -11.52007661414386, - "c5": -38.89778712646972, - "c6": -38.89179232391761, - "c7": -29.50579815703641 + "points": { + "c1": -16.27909736018038, + "c2": -11.509077158252786, + "c3": 8.966992765920779, + "c4": 3.769831053187417, + "c5": 36.89458165519791, + "c6": 35.92822027206887, + "c7": 26.186577847103763 }, - "vertexSeeds": { - "c1": 6.454109241922833, - "c2": 6.683328430624254, - "c3": 6.551644852228353, - "c4": 6.4741471313814385, - "c5": 6.4594972336564584, - "c6": 6.344105061807603, - "c7": 6.683340737331506 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876561, + "c3": 7.975034674063801, + "c4": 6.380027739251041, + "c5": 4.785020804438281, + "c6": 3.1900138696255205, + "c7": 1.5950069348127602 }, "rgb": [77, 76, 132] }, @@ -378789,23 +378789,23 @@ "year": 1805, "resistanceReported": false, "duration": 2160000, - "curveSeeds": { - "c1": -7.036698727086937, - "c2": -2.204705950624474, - "c3": -1.718278672868168, - "c4": 2.2308547370745604, - "c5": -4.3778074774832625, - "c6": 9.459507238114215, - "c7": -8.760537294032254 + "points": { + "c1": 0.980034759137828, + "c2": 12.900463601403109, + "c3": -3.9355601346015003, + "c4": 3.714671749004049, + "c5": -4.759317941350927, + "c6": -5.90284491407675, + "c7": 6.925278596827772 }, - "vertexSeeds": { - "c1": 7.2952858829576215, - "c2": 6.936802394819892, - "c3": 7.313705402773271, - "c4": 6.887919838920242, - "c5": 7.064624656737468, - "c6": 7.182043938120554, - "c7": 7.097404726854329 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [86, 146, 138] }, @@ -378816,23 +378816,23 @@ "year": 1805, "resistanceReported": true, "duration": 14947200, - "curveSeeds": { - "c1": -20.225789290629635, - "c2": -17.784495711782025, - "c3": 17.52289526697669, - "c4": -3.960631643974942, - "c5": 2.5267983915470715, - "c6": 0.8159292131030789, - "c7": 22.29823393359053 + "points": { + "c1": -14.165038980468154, + "c2": -0.1706950192874892, + "c3": 2.0826476452300184, + "c4": 9.936035073084234, + "c5": 17.575634315926337, + "c6": 16.80704150232232, + "c7": -21.17052876919156 }, - "vertexSeeds": { - "c1": 1.2542968059961792, - "c2": 0.5384449384303881, - "c3": 0.9734305878688241, - "c4": 0.6680780625014195, - "c5": 0.5066447288156052, - "c6": 0.7445973345568054, - "c7": 0.5341699780789396 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155342, + "c3": 1.6181229773462784, + "c4": 1.294498381877023, + "c5": 0.9708737864077672, + "c6": 0.6472491909385112, + "c7": 0.3236245954692556 }, "rgb": [58, 15, 49] }, @@ -378843,23 +378843,23 @@ "year": 1805, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 16.452458485065616, - "c2": -26.21850625673617, - "c3": -3.6427725979886247, - "c4": 10.293178307799533, - "c5": -7.142861922458863, - "c6": -21.183094914650617, - "c7": 21.97371855703032 + "points": { + "c1": -12.209869760915002, + "c2": 22.594138321147017, + "c3": 1.1941383533792305, + "c4": -16.62221690093992, + "c5": -23.265359140326183, + "c6": -17.52520870148247, + "c7": 13.523745294526723 }, - "vertexSeeds": { - "c1": 2.8362073754884873, - "c2": 2.8127631420583326, - "c3": 2.871302821379904, - "c4": 2.5899979448110564, - "c5": 2.624371552977003, - "c6": 2.7103871447240286, - "c7": 2.5744840682090753 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494217, + "c4": 2.755432269995378, + "c5": 2.0665742024965317, + "c6": 1.3777161349976854, + "c7": 0.6888580674988392 }, "rgb": [58, 15, 49] }, @@ -378870,23 +378870,23 @@ "year": 1805, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 20.20979374355229, - "c2": -29.539683095246858, - "c3": 29.974880356137923, - "c4": -18.261079287995777, - "c5": -16.905100482477565, - "c6": 6.513753320871018, - "c7": -16.172827062535248 + "points": { + "c1": 2.092187753730286, + "c2": -10.944418009176108, + "c3": -17.353280382513553, + "c4": 31.109717855542016, + "c5": -8.878869816808379, + "c6": -30.704590309474177, + "c7": -6.571760263555706 }, - "vertexSeeds": { - "c1": 3.9490086367064223, - "c2": 3.9086170664452062, - "c3": 3.7649832124039553, - "c4": 3.727575317818797, - "c5": 3.761715893030523, - "c6": 3.8751749834876175, - "c7": 3.788470608114884 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.7975034674063854, + "c3": 4.831252889505318, + "c4": 3.865002311604251, + "c5": 2.8987517337031927, + "c6": 1.9325011558021346, + "c7": 0.9662505779010673 }, "rgb": [86, 146, 138] }, @@ -378897,23 +378897,23 @@ "year": 1805, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 2.2166352777051763, - "c2": 9.35797481544893, - "c3": -11.500973247150352, - "c4": 7.51492771735197, - "c5": 0.5756071848717852, - "c6": -2.750038808753832, - "c7": 26.636378094417562 + "points": { + "c1": -25.23356333673655, + "c2": -10.327815771327185, + "c3": 7.480251234381594, + "c4": -1.8461340264490609, + "c5": 17.896883041883573, + "c6": 27.516837894759906, + "c7": 20.285704927757767 }, - "vertexSeeds": { - "c1": 5.667597713386741, - "c2": 5.5398309527074945, - "c3": 5.387970080640676, - "c4": 5.473634134416227, - "c5": 5.375722956608121, - "c6": 5.751115896695489, - "c7": 5.861469037654944 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267678, + "c3": 7.050392972723077, + "c4": 5.640314378178458, + "c5": 4.230235783633839, + "c6": 2.820157189089238, + "c7": 1.410078594544619 }, "rgb": [222, 0, 59] }, @@ -378924,23 +378924,23 @@ "year": 1805, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -27.715025307234868, - "c2": -0.7148654937395804, - "c3": -15.049314871996039, - "c4": 5.73933555324135, - "c5": 14.616062356180397, - "c6": -16.520326667221042, - "c7": -26.876964436423037 + "points": { + "c1": 11.218031451338323, + "c2": -25.075677418933978, + "c3": 12.529465678670494, + "c4": 18.26971407849207, + "c5": 20.144464300481022, + "c6": -4.900688952458811, + "c7": -16.182916796206044 }, - "vertexSeeds": { - "c1": 6.4432721565287165, - "c2": 6.438062958736891, - "c3": 6.440947690615784, - "c4": 6.452940774771445, - "c5": 6.446581045113999, - "c6": 6.43371429883389, - "c7": 6.437570724135138 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434163, + "c3": 7.720758206195187, + "c4": 6.176606564956211, + "c5": 4.632454923716928, + "c6": 3.088303282477952, + "c7": 1.544151641238976 }, "rgb": [238, 201, 159] }, @@ -378951,23 +378951,23 @@ "year": 1805, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -11.46840634868472, - "c2": -20.391683673683154, - "c3": -11.027198829489633, - "c4": 8.355161748558771, - "c5": 20.74995528310651, - "c6": 17.028143285573925, - "c7": 1.9803573150061062 + "points": { + "c1": -0.3745188063380347, + "c2": 7.004754942753891, + "c3": -2.622818248092404, + "c4": 15.02898940274573, + "c5": -6.826298829424164, + "c6": 13.232427859447235, + "c7": -23.05293378762221 }, - "vertexSeeds": { - "c1": 3.3193114103675363, - "c2": 3.047813720108887, - "c3": 2.7323396636502917, - "c4": 2.7138078083094874, - "c5": 2.8889036312721683, - "c6": 3.1582712017630072, - "c7": 3.0572097112655987 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998612, + "c3": 4.0221914008321775, + "c4": 3.2177531206657415, + "c5": 2.413314840499306, + "c6": 1.6088765603328707, + "c7": 0.8044382801664354 }, "rgb": [77, 76, 132] }, @@ -378978,23 +378978,23 @@ "year": 1806, "resistanceReported": false, "duration": 33609600, - "curveSeeds": { - "c1": -38.68976278508752, - "c2": -11.874094766335133, - "c3": -44.81127926232596, - "c4": 19.968452568868727, - "c5": -11.699034888379543, - "c6": -40.963555078736505, - "c7": 39.90916232636836 + "points": { + "c1": -32.53129458961955, + "c2": 31.183140196326832, + "c3": 40.89507185456077, + "c4": 29.786499990587203, + "c5": 46.274266298834235, + "c6": 41.668898110513595, + "c7": -1.444485604860425 }, - "vertexSeeds": { - "c1": 8.710430346914231, - "c2": 8.576736520038756, - "c3": 8.266891043865705, - "c4": 8.139756795096606, - "c5": 9.069685197244569, - "c6": 8.879626460036297, - "c7": 9.617814496322316 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392508, + "c3": 11.719833564493753, + "c4": 9.375866851595008, + "c5": 7.031900138696254, + "c6": 4.687933425797499, + "c7": 2.3439667128987547 }, "rgb": [58, 15, 49] }, @@ -379005,23 +379005,23 @@ "year": 1806, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": -21.39388199910687, - "c2": -26.34923605498637, - "c3": 11.453483558077295, - "c4": 17.769016947849153, - "c5": -11.342927025106498, - "c6": -36.935269955970966, - "c7": 42.33231695444786 + "points": { + "c1": 21.604404318517098, + "c2": 13.271013625482126, + "c3": 5.659414328592483, + "c4": 43.83680420152646, + "c5": 12.559618465310798, + "c6": -32.01278992593497, + "c7": -34.45947864244259 }, - "vertexSeeds": { - "c1": 7.406728500212936, - "c2": 8.553831418726542, - "c3": 8.601820983112155, - "c4": 7.549920873330833, - "c5": 7.96194829065231, - "c6": 8.742474645877287, - "c7": 8.425581621625447 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.649098474341189, + "c3": 10.540915395284332, + "c4": 8.432732316227462, + "c5": 6.3245492371705945, + "c6": 4.216366158113737, + "c7": 2.1081830790568685 }, "rgb": [222, 0, 59] }, @@ -379032,23 +379032,23 @@ "year": 1805, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 34.39823497916001, - "c2": -19.113698665242396, - "c3": 28.67540986386888, - "c4": -17.28489320505777, - "c5": -18.589843707174346, - "c6": 8.975740651159498, - "c7": 20.00644782266896 + "points": { + "c1": 8.702181322903513, + "c2": -31.412850002402806, + "c3": 27.600258153127527, + "c4": -13.280595217195973, + "c5": -1.1042032123160368, + "c6": 2.7196169400301713, + "c7": 24.668815590425645 }, - "vertexSeeds": { - "c1": 5.747031942375475, - "c2": 5.437593406654112, - "c3": 5.976267037816054, - "c4": 5.170197740697618, - "c5": 5.118586535726341, - "c6": 5.7335131503046, - "c7": 5.676604977632013 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468798, + "c3": 7.165973185390659, + "c4": 5.732778548312532, + "c5": 4.299583911234394, + "c6": 2.866389274156266, + "c7": 1.4331946370781274 }, "rgb": [58, 15, 49] }, @@ -379059,23 +379059,23 @@ "year": 1806, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": 24.162488423898537, - "c2": -15.46130848566596, - "c3": 1.0079497629878844, - "c4": -37.55469866558114, - "c5": 42.30710511660385, - "c6": 15.860329379149462, - "c7": 6.644741119657098 + "points": { + "c1": -13.247390930970042, + "c2": -36.06972692378842, + "c3": 15.179368449007931, + "c4": -8.947829235341977, + "c5": -22.648620359762837, + "c6": -37.77191064761485, + "c7": 6.159236584019261 }, - "vertexSeeds": { - "c1": 9.449344701414686, - "c2": 9.293080944545686, - "c3": 9.152365764549359, - "c4": 7.323256454606133, - "c5": 9.485521681465688, - "c6": 7.917351971370702, - "c7": 8.185112617037671 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.75866851595007, + "c3": 11.465557096625057, + "c4": 9.172445677300045, + "c5": 6.879334257975032, + "c6": 4.586222838650018, + "c7": 2.293111419325013 }, "rgb": [77, 76, 132] }, @@ -379086,23 +379086,23 @@ "year": 1805, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -10.181886160348213, - "c2": -9.023236675364707, - "c3": 40.979050296660624, - "c4": 3.968043616142502, - "c5": -5.264207378283615, - "c6": 30.737621080898556, - "c7": 22.32212374918464 + "points": { + "c1": 7.7630997932453525, + "c2": -10.969303440532528, + "c3": 11.379449742503198, + "c4": 28.549814808319873, + "c5": 4.32888796881938, + "c6": 24.79396436266341, + "c7": -35.96229072416907 }, - "vertexSeeds": { - "c1": 10.857325813207893, - "c2": 10.981386837168122, - "c3": 11.206209326824508, - "c4": 11.096547378094597, - "c5": 11.408770907503865, - "c6": 10.635267483804988, - "c7": 10.404244326500747 + "offsets": { + "c1": 19.093851132686083, + "c2": 16.366158113730922, + "c3": 13.638465094775764, + "c4": 10.910772075820603, + "c5": 8.183079056865443, + "c6": 5.455386037910284, + "c7": 2.727693018955124 }, "rgb": [77, 76, 132] }, @@ -379113,23 +379113,23 @@ "year": 1806, "resistanceReported": false, "duration": 42249600, - "curveSeeds": { - "c1": 19.59371145745221, - "c2": 6.392837314892404, - "c3": 40.537631194192166, - "c4": 26.28101469230544, - "c5": 19.715006382659446, - "c6": -14.597961605132042, - "c7": 11.699709387477249 + "points": { + "c1": -22.0171104108611, + "c2": 10.442521690074805, + "c3": 11.16370940349018, + "c4": -11.157877590744576, + "c5": 2.66126701131747, + "c6": -43.64126066726507, + "c7": 24.572243451662366 }, - "vertexSeeds": { - "c1": 1.1074495448533759, - "c2": 1.1169207943040433, - "c3": 1.046246557359054, - "c4": 1.0862749213586578, - "c5": 1.097160692127361, - "c6": 1.077524117697363, - "c7": 1.0831936564772775 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.6366158113730933, + "c3": 1.363846509477578, + "c4": 1.091077207582063, + "c5": 0.8183079056865478, + "c6": 0.5455386037910303, + "c7": 0.2727693018955174 }, "rgb": [238, 201, 159] }, @@ -379140,23 +379140,23 @@ "year": 1805, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -15.528039104963103, - "c2": -18.11022925509736, - "c3": 13.785317807006777, - "c4": -11.199405797651949, - "c5": 15.845764430534736, - "c6": 9.555091306734298, - "c7": -16.706874450179626 + "points": { + "c1": 2.2170677143289907, + "c2": -16.26217499710154, + "c3": 15.51565857277808, + "c4": -27.03316187085457, + "c5": 14.476842274285048, + "c6": -3.423049939314538, + "c7": 9.57932211013378 }, - "vertexSeeds": { - "c1": 4.12543941415992, - "c2": 4.176398743086235, - "c3": 4.169580626968514, - "c4": 4.175837225915454, - "c5": 3.996244839581302, - "c6": 4.008258050993935, - "c7": 4.097414180376198 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [238, 201, 159] }, @@ -379167,23 +379167,23 @@ "year": 1805, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -23.361554814705215, - "c2": -1.3802523765033001, - "c3": -22.54415364821237, - "c4": -2.3452352673718195, - "c5": 3.9434040530967316, - "c6": 4.473229414955661, - "c7": 17.114591012463357 + "points": { + "c1": -4.834300383650081, + "c2": -28.30024454151007, + "c3": 1.640277775534532, + "c4": -24.53491943747602, + "c5": 5.842410347645291, + "c6": -2.1149476622515095, + "c7": -12.095705917141224 }, - "vertexSeeds": { - "c1": 2.123346768631008, - "c2": 2.0687004875701245, - "c3": 2.1987119273963094, - "c4": 2.1804449443536473, - "c5": 2.0555619837392793, - "c6": 2.110806759065426, - "c7": 2.085377030009796 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.190013869625518, + "c3": 2.6583448913546013, + "c4": 2.1266759130836785, + "c5": 1.595006934812762, + "c6": 1.0633379565418393, + "c7": 0.5316689782709167 }, "rgb": [222, 0, 59] }, @@ -379194,23 +379194,23 @@ "year": 1805, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -4.7132351575561025, - "c2": -5.10274888184394, - "c3": 12.224803955636133, - "c4": -23.577373611014572, - "c5": 2.6463533623935973, - "c6": 25.727631635457442, - "c7": -5.907204360644325 + "points": { + "c1": 35.59470186554691, + "c2": -6.240777487954269, + "c3": 2.951811954552646, + "c4": 9.84213051281089, + "c5": -9.438454398649132, + "c6": 30.427915268374676, + "c7": -19.83182490600646 }, - "vertexSeeds": { - "c1": 5.131674785760288, - "c2": 5.015564371202384, - "c3": 5.106084389879677, - "c4": 5.07741398855406, - "c5": 5.2739042054218235, - "c6": 4.9307671783315055, - "c7": 5.140267353149779 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784567, + "c4": 5.12251502542764, + "c5": 3.8418862690707325, + "c6": 2.5612575127138246, + "c7": 1.2806287563569168 }, "rgb": [222, 0, 59] }, @@ -379221,23 +379221,23 @@ "year": 1805, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": -13.634969405544068, - "c2": -16.186288861143176, - "c3": 21.303139114494655, - "c4": -0.8193805339133178, - "c5": 15.872041430324224, - "c6": -12.165762251881834, - "c7": -2.743190941160684 + "points": { + "c1": -18.185347777198125, + "c2": -6.811611452878957, + "c3": 22.005525434676386, + "c4": -10.619143522320549, + "c5": 9.525760003236762, + "c6": -5.80707619157225, + "c7": 14.218770006683847 }, - "vertexSeeds": { - "c1": 6.614675719512578, - "c2": 6.085187221384751, - "c3": 6.403759634643377, - "c4": 6.617965780559058, - "c5": 6.349988140254213, - "c6": 6.392603660294453, - "c7": 6.542861205936755 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796123, + "c3": 7.928802588996757, + "c4": 6.3430420711974085, + "c5": 4.7572815533980615, + "c6": 3.171521035598696, + "c7": 1.585760517799348 }, "rgb": [86, 146, 138] }, @@ -379248,23 +379248,23 @@ "year": 1805, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 11.761006648958759, - "c2": 12.570956500096887, - "c3": -28.244983874996816, - "c4": -10.910332302220006, - "c5": -2.545218087301972, - "c6": -11.765187080789126, - "c7": -14.862051040812698 + "points": { + "c1": 20.876241266776194, + "c2": -26.792674185957473, + "c3": -26.253567765517364, + "c4": -0.32487950915745856, + "c5": 17.393538681298747, + "c6": -27.767276826059494, + "c7": 7.08965369087252 }, - "vertexSeeds": { - "c1": 8.945409439751238, - "c2": 8.640437368677363, - "c3": 8.912757925979411, - "c4": 9.02705514129202, - "c5": 9.136726523299041, - "c6": 8.92267462544433, - "c7": 8.782967198524101 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145625, + "c3": 11.003236245954703, + "c4": 8.802588996763758, + "c5": 6.601941747572813, + "c6": 4.4012944983818905, + "c7": 2.2006472491909452 }, "rgb": [238, 201, 159] }, @@ -379275,23 +379275,23 @@ "year": 1805, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 21.597284296959856, - "c2": -28.20319260956147, - "c3": -17.618836147251148, - "c4": -32.68281790615451, - "c5": -9.724149435175296, - "c6": 16.125661513470845, - "c7": 2.673157668821432 + "points": { + "c1": 17.882634734677183, + "c2": 19.951969909616196, + "c3": -6.55174346391572, + "c4": 36.6019713838117, + "c5": 23.40279476273468, + "c6": -20.328524004756947, + "c7": -30.233177671767628 }, - "vertexSeeds": { - "c1": 7.46898989911779, - "c2": 6.790111569485738, - "c3": 7.296898634330551, - "c4": 7.165596513359477, - "c5": 7.169678276022626, - "c6": 7.118712475691957, - "c7": 6.891253774357581 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525666, + "c3": 8.922792417938046, + "c4": 7.138233934350445, + "c5": 5.353675450762824, + "c6": 3.5691169671752223, + "c7": 1.784558483587602 }, "rgb": [58, 15, 49] }, @@ -379302,23 +379302,23 @@ "year": 1806, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": -2.130065300923178, - "c2": 37.03647984654623, - "c3": 21.758530136217956, - "c4": 49.55786107233233, - "c5": 7.141600692472679, - "c6": 18.272893091825438, - "c7": 29.549304696990987 + "points": { + "c1": 50.52067770103265, + "c2": 20.324213981264577, + "c3": 5.015184924139504, + "c4": -38.435792350627345, + "c5": 34.56466917471181, + "c6": 46.206215776989424, + "c7": -11.088938284148263 }, - "vertexSeeds": { - "c1": 8.978246894314536, - "c2": 9.188821150785158, - "c3": 9.706590135208197, - "c4": 9.20228230214984, - "c5": 9.548549031465653, - "c6": 8.985637590264574, - "c7": 8.97517771065631 + "offsets": { + "c1": 17.702265372168284, + "c2": 15.173370319001378, + "c3": 12.64447526583449, + "c4": 10.115580212667584, + "c5": 7.586685159500689, + "c6": 5.057790106333792, + "c7": 2.528895053166896 }, "rgb": [238, 201, 159] }, @@ -379329,23 +379329,23 @@ "year": 1805, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 26.66125360705061, - "c2": -9.245553732127124, - "c3": 6.432338907676943, - "c4": -8.277946842325495, - "c5": 18.425076929380936, - "c6": 26.624335130043576, - "c7": 27.57950676422054 + "points": { + "c1": 7.437202243397856, + "c2": -15.261723674755373, + "c3": 13.26815556799992, + "c4": -28.961977854253803, + "c5": -10.529341567186709, + "c6": -3.151933168105355, + "c7": -4.520612925879654 }, - "vertexSeeds": { - "c1": 2.591966213528963, - "c2": 2.5434177560256774, - "c3": 2.5176199673264086, - "c4": 2.439040312014119, - "c5": 2.492307205911254, - "c6": 2.4239253339558617, - "c7": 2.5895760134428483 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104014, + "c3": 3.1668978270919994, + "c4": 2.533518261673598, + "c5": 1.9001386962552054, + "c6": 1.266759130836799, + "c7": 0.6333795654184019 }, "rgb": [238, 201, 159] }, @@ -379356,23 +379356,23 @@ "year": 1805, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 30.768745160057044, - "c2": 29.265722652170957, - "c3": 12.550435337441236, - "c4": 8.132320868976343, - "c5": 6.032849555953362, - "c6": 28.958902331907957, - "c7": -32.143553134302586 + "points": { + "c1": -15.491239879282787, + "c2": -12.759916564825339, + "c3": 35.22228964975836, + "c4": -4.546882762693535, + "c5": -26.897131476810234, + "c6": -20.94154735916012, + "c7": -34.501787343931575 }, - "vertexSeeds": { - "c1": 4.192284418256355, - "c2": 4.041569426746593, - "c3": 3.431007961465271, - "c4": 3.972553254324642, - "c5": 3.938561287644919, - "c6": 4.348467315612053, - "c7": 3.6377242923277144 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130376, + "c3": 5.247341655108644, + "c4": 4.197873324086916, + "c5": 3.148404993065188, + "c6": 2.098936662043456, + "c7": 1.049468331021728 }, "rgb": [77, 76, 132] }, @@ -379383,23 +379383,23 @@ "year": 1805, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -18.26883727441465, - "c2": -19.79032960750877, - "c3": -12.578646091325911, - "c4": 9.70636449192697, - "c5": -16.11786987624413, - "c6": -7.485744023830993, - "c7": 12.898836717810738 + "points": { + "c1": 17.55983394244962, + "c2": 3.1825249543442773, + "c3": 7.214455386634313, + "c4": -8.460372517067444, + "c5": 4.157758526618736, + "c6": -14.11536061038655, + "c7": 11.521124156523953 }, - "vertexSeeds": { - "c1": 4.999548732761034, - "c2": 4.847933272538714, - "c3": 5.121543692685893, - "c4": 5.059576182781479, - "c5": 5.137899938577699, - "c6": 4.704644091780924, - "c7": 4.85592836025828 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859925, + "c3": 6.241331484049928, + "c4": 4.99306518723995, + "c5": 3.7447988904299625, + "c6": 2.496532593619975, + "c7": 1.2482662968099876 }, "rgb": [77, 76, 132] }, @@ -379410,23 +379410,23 @@ "year": 1805, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 13.776840408522823, - "c2": 12.788744258602549, - "c3": -18.7303722987646, - "c4": 6.262718607212378, - "c5": 4.996386329385032, - "c6": 35.46392484054646, - "c7": 32.09318953548841 + "points": { + "c1": 2.502895812536998, + "c2": 6.452032176998976, + "c3": 13.962958420792589, + "c4": 21.86691515003396, + "c5": 12.823846918652741, + "c6": -23.020952906166627, + "c7": -5.017261508219889 }, - "vertexSeeds": { - "c1": 4.890501187494257, - "c2": 4.777448826899922, - "c3": 5.496939937876988, - "c4": 5.506212252061668, - "c5": 5.946654335041243, - "c6": 4.864845051745328, - "c7": 4.720482519289379 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468795, + "c3": 7.165973185390665, + "c4": 5.732778548312527, + "c5": 4.299583911234396, + "c6": 2.866389274156265, + "c7": 1.4331946370781343 }, "rgb": [77, 76, 132] }, @@ -379437,23 +379437,23 @@ "year": 1805, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 23.810594461952796, - "c2": 19.510744955867644, - "c3": -14.958198161505859, - "c4": -27.742445271862582, - "c5": -6.901558442993537, - "c6": -7.0478419680927225, - "c7": -3.910332825117944 + "points": { + "c1": -31.646820315759374, + "c2": 2.5489921800510587, + "c3": -24.8421464344732, + "c4": 26.177104082597666, + "c5": 1.4797983573128164, + "c6": 3.6803950237573915, + "c7": 34.70699853954904 }, - "vertexSeeds": { - "c1": 2.54382068300231, - "c2": 2.512019743913888, - "c3": 2.541280672250566, - "c4": 2.542445042779722, - "c5": 2.7092958614599754, - "c6": 2.688964226433084, - "c7": 2.6039311995794416 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.938973647711512, + "c3": 3.282478039759593, + "c4": 2.6259824318076745, + "c5": 1.969486823855756, + "c6": 1.3129912159038373, + "c7": 0.6564956079519186 }, "rgb": [77, 76, 132] }, @@ -379464,23 +379464,23 @@ "year": 1805, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -8.57211819473343, - "c2": -2.4310904877562933, - "c3": -22.003320068380823, - "c4": -2.609581319918348, - "c5": -0.10995612596623872, - "c6": -16.517467994068102, - "c7": 18.81301656025306 + "points": { + "c1": 2.6485514668187022, + "c2": 6.503359078508396, + "c3": -15.115061258388206, + "c4": 27.599496226580484, + "c5": -6.541011579678237, + "c6": -10.584964349965784, + "c7": -21.031804032711683 }, - "vertexSeeds": { - "c1": 3.3374712917682023, - "c2": 3.391196600751926, - "c3": 3.157529062914812, - "c4": 3.1977241566438432, - "c5": 3.128431241592031, - "c6": 3.2946628050631985, - "c7": 3.290123535299476 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280169, + "c3": 4.184003698566804, + "c4": 3.3472029588534458, + "c5": 2.5104022191400808, + "c6": 1.6736014794267229, + "c7": 0.8368007397133652 }, "rgb": [86, 146, 138] }, @@ -379491,23 +379491,23 @@ "year": 1805, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -19.409452195570662, - "c2": 0.21639488263630113, - "c3": 23.162367472197715, - "c4": 32.624912269615116, - "c5": -23.449239173054735, - "c6": -23.15786240128908, - "c7": -6.233490868885532 + "points": { + "c1": 24.310174519541555, + "c2": -21.39644688931279, + "c3": -10.325958349047092, + "c4": -15.787950365875144, + "c5": -33.930177729713336, + "c6": 2.9705815044628565, + "c7": -29.826644206721657 }, - "vertexSeeds": { - "c1": 7.89492321827698, - "c2": 7.9724471938607415, - "c3": 7.679507735330629, - "c4": 7.87372771091204, - "c5": 7.825896764937571, - "c6": 7.581334100906084, - "c7": 7.865309675298795 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571429, + "c3": 9.523809523809524, + "c4": 7.619047619047619, + "c5": 5.714285714285714, + "c6": 3.8095238095238093, + "c7": 1.9047619047619047 }, "rgb": [238, 201, 159] }, @@ -379518,23 +379518,23 @@ "year": 1805, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -6.590694722090451, - "c2": 16.430792152058185, - "c3": -1.3794806594758597, - "c4": 23.343145198518567, - "c5": 11.037013893098052, - "c6": -15.48581528758991, - "c7": 15.834109337262337 + "points": { + "c1": -3.5124910283009854, + "c2": -11.103255212751467, + "c3": 21.348286483742097, + "c4": -15.328847984645812, + "c5": 21.993001586718552, + "c6": 10.111282110603728, + "c7": 13.17377000632722 }, - "vertexSeeds": { - "c1": 1.3437291116026149, - "c2": 1.2709129764877896, - "c3": 1.361068704548361, - "c4": 1.3233440722580565, - "c5": 1.2730376645463302, - "c6": 1.2730723899201248, - "c7": 1.3524162232328516 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166417, + "c3": 1.73370319001387, + "c4": 1.3869625520110944, + "c5": 1.0402219140083229, + "c6": 0.6934812760055472, + "c7": 0.3467406380027717 }, "rgb": [58, 15, 49] }, @@ -379545,23 +379545,23 @@ "year": 1805, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 25.048795231249564, - "c2": -7.115642827597259, - "c3": -7.006397153943475, - "c4": -25.647871739695226, - "c5": 13.167743276460946, - "c6": 22.74350487661293, - "c7": 23.47271000137239 + "points": { + "c1": 14.533054657271492, + "c2": 16.523962627558518, + "c3": -16.895224862260026, + "c4": 12.757978837301081, + "c5": -28.48324526961521, + "c6": 29.18054364138778, + "c7": 10.664283069898232 }, - "vertexSeeds": { - "c1": 5.558618444036371, - "c2": 5.580354689084009, - "c3": 5.824392089488581, - "c4": 5.868003826089671, - "c5": 5.52918940317192, - "c6": 5.558157231111993, - "c7": 5.4043539927573105 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267685, + "c3": 7.050392972723073, + "c4": 5.640314378178463, + "c5": 4.2302357836338516, + "c6": 2.82015718908924, + "c7": 1.4100785945446113 }, "rgb": [222, 0, 59] }, @@ -379572,23 +379572,23 @@ "year": 1805, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 19.838494401201267, - "c2": -25.98863267489225, - "c3": 19.495137463997615, - "c4": -5.118070074397998, - "c5": 30.8916755026318, - "c6": 1.211787769191524, - "c7": -21.395009484607336 + "points": { + "c1": 16.321886778680557, + "c2": 6.659323129126797, + "c3": 7.569800194526522, + "c4": 24.710489038186005, + "c5": -11.664503987095319, + "c6": 12.513674159094258, + "c7": -8.682610848219245 }, - "vertexSeeds": { - "c1": 7.544586835800161, - "c2": 7.575567105644246, - "c3": 7.722943797421273, - "c4": 7.812937582350946, - "c5": 8.14400812721233, - "c6": 8.206695812544478, - "c7": 7.888633923305224 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.76144244105409, + "c3": 9.801202034211737, + "c4": 7.840961627369406, + "c5": 5.880721220527054, + "c6": 3.920480813684703, + "c7": 1.9602404068423516 }, "rgb": [238, 201, 159] }, @@ -379599,23 +379599,23 @@ "year": 1805, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -16.10997099415713, - "c2": -11.313691708097704, - "c3": -20.894130960541357, - "c4": 22.49001954327247, - "c5": -23.048843207022333, - "c6": -4.285842223026201, - "c7": 23.0893543683743 + "points": { + "c1": -7.81345008482073, + "c2": -26.352890268588407, + "c3": 14.169087860705982, + "c4": -1.155647726184121, + "c5": 4.947561889652025, + "c6": 8.228624901050399, + "c7": 25.98972525222972 }, - "vertexSeeds": { - "c1": 3.0664738719461275, - "c2": 3.0578282921946074, - "c3": 2.907774512062887, - "c4": 2.954932977792456, - "c5": 3.0213534518475447, - "c6": 3.152577934936617, - "c7": 3.05381703170862 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596394, + "c3": 3.791030975496995, + "c4": 3.0328247803975956, + "c5": 2.274618585298197, + "c6": 1.5164123901987978, + "c7": 0.7582061950993989 }, "rgb": [58, 15, 49] }, @@ -379626,23 +379626,23 @@ "year": 1805, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -5.966589551725608, - "c2": -20.00504249482873, - "c3": -23.800873428770345, - "c4": 10.755928968455976, - "c5": -34.08867693191078, - "c6": 36.723815962811216, - "c7": -26.350604690630355 + "points": { + "c1": -13.57030034802704, + "c2": -20.17010707133872, + "c3": 38.34208574789602, + "c4": 18.460988121601332, + "c5": -11.568283964996247, + "c6": -1.5749684738341188, + "c7": 33.46929841810834 }, - "vertexSeeds": { - "c1": 5.93028911911115, - "c2": 5.608607203173447, - "c3": 5.865329041345203, - "c4": 6.058367704016691, - "c5": 5.597214162988192, - "c6": 5.828344575254156, - "c7": 6.028501818298471 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.79334257975034, + "c3": 7.327785483125291, + "c4": 5.8622283865002265, + "c5": 4.396671289875179, + "c6": 2.9311141932501132, + "c7": 1.4655570966250475 }, "rgb": [58, 15, 49] }, @@ -379653,23 +379653,23 @@ "year": 1805, "resistanceReported": true, "duration": 24624000, - "curveSeeds": { - "c1": 8.323962280874682, - "c2": -11.068324184869109, - "c3": 22.30501540210438, - "c4": -30.56981913597595, - "c5": 33.98169945102649, - "c6": -15.676920028923465, - "c7": 8.557215284931289 + "points": { + "c1": -26.45565746041953, + "c2": -9.85432275861724, + "c3": 13.467924994749438, + "c4": -21.839772801188374, + "c5": -12.683286887714065, + "c6": 27.148416158234447, + "c7": -25.007759446819527 }, - "vertexSeeds": { - "c1": 3.5622964450630037, - "c2": 3.770545261509141, - "c3": 3.7943439254321585, - "c4": 3.806163740626954, - "c5": 3.7516880763627762, - "c6": 3.4987342843328793, - "c7": 3.544160882122286 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.52011095700416, + "c3": 4.600092464170132, + "c4": 3.680073971336113, + "c5": 2.760055478502084, + "c6": 1.8400369856680565, + "c7": 0.9200184928340283 }, "rgb": [86, 146, 138] }, @@ -379680,23 +379680,23 @@ "year": 1805, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -6.318952644791633, - "c2": -18.246613400729156, - "c3": 17.118755897231175, - "c4": 17.479005496289474, - "c5": 11.731411740001015, - "c6": 11.345710824579776, - "c7": -4.725809736642503 + "points": { + "c1": -21.41686549861215, + "c2": 11.212829360739093, + "c3": -4.589813920053583, + "c4": 25.696243087985515, + "c5": -14.309260888145335, + "c6": -12.0134897908536, + "c7": 1.4669705328127662 }, - "vertexSeeds": { - "c1": 1.6593789401755856, - "c2": 1.6778069115794871, - "c3": 1.6823051908578146, - "c4": 1.6879079326553028, - "c5": 1.6588970744766731, - "c6": 1.688922801909053, - "c7": 1.681349289889557 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.385575589459076, + "c3": 1.9879796578825732, + "c4": 1.5903837263060507, + "c5": 1.1927877947295478, + "c6": 0.7951918631530254, + "c7": 0.39759593157650275 }, "rgb": [58, 15, 49] }, @@ -379707,23 +379707,23 @@ "year": 1805, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 12.563121908342119, - "c2": 14.364785128832828, - "c3": -21.453306317247737, - "c4": -10.274608277317054, - "c5": 13.296266823650264, - "c6": 12.682230753257173, - "c7": -3.4670483011230644 + "points": { + "c1": -29.870459899032586, + "c2": -19.976340683058616, + "c3": -7.67376206522983, + "c4": -13.64540783047957, + "c5": 0.7776016340947152, + "c6": -28.993483801753165, + "c7": -24.060174426648416 }, - "vertexSeeds": { - "c1": 5.237111516287715, - "c2": 5.338363791314928, - "c3": 5.376760553745908, - "c4": 5.31269920923523, - "c5": 5.341576978516018, - "c6": 5.091106759152931, - "c7": 5.5242201261965205 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503471, + "c3": 6.611188164586214, + "c4": 5.288950531668975, + "c5": 3.9667128987517355, + "c6": 2.6444752658344965, + "c7": 1.3222376329172392 }, "rgb": [222, 0, 59] }, @@ -379734,23 +379734,23 @@ "year": 1805, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 10.352506846292336, - "c2": -2.0434218323282707, - "c3": -0.3707022800201045, - "c4": 23.08957768391585, - "c5": -28.97650290991933, - "c6": 6.805512105545176, - "c7": 6.833781924869939 + "points": { + "c1": -36.48903290335345, + "c2": 36.69930091818874, + "c3": 24.49838450848239, + "c4": -4.349704530210204, + "c5": -21.874860623271626, + "c6": -33.21787464647087, + "c7": 27.297959726760098 }, - "vertexSeeds": { - "c1": 5.075831310378418, - "c2": 5.19953258468751, - "c3": 5.204506617335111, - "c4": 4.865690819990346, - "c5": 5.024404999554875, - "c6": 5.0219142647560355, - "c7": 4.9497870129472705 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -379761,23 +379761,23 @@ "year": 1805, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -17.59125601174283, - "c2": -13.008061583527, - "c3": 24.085721267086598, - "c4": -8.58810748678442, - "c5": 13.697074953435617, - "c6": -1.1011641979528939, - "c7": 14.136898240742497 + "points": { + "c1": -0.1183003815292274, + "c2": -21.81999005124208, + "c3": 2.024346733405384, + "c4": -6.096985692251554, + "c5": 8.475258280970472, + "c6": -8.424686992357511, + "c7": 1.1346879878734235 }, - "vertexSeeds": { - "c1": 2.0001175887424947, - "c2": 1.9874682357885918, - "c3": 1.9886359237619815, - "c4": 1.964873227337716, - "c5": 1.9320959333186238, - "c6": 1.987597774768939, - "c7": 1.907763820182595 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.8848821081830835, + "c3": 2.404068423485898, + "c4": 1.9232547387887224, + "c5": 1.4424410540915371, + "c6": 0.9616273693943612, + "c7": 0.4808136846971758 }, "rgb": [86, 146, 138] }, @@ -379788,23 +379788,23 @@ "year": 1805, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 17.858404835740778, - "c2": 16.655181064164935, - "c3": 5.34223592894012, - "c4": -0.47271869102789665, - "c5": 25.09038593257184, - "c6": -26.512934669684952, - "c7": -17.965105901883646 + "points": { + "c1": -30.701794901242796, + "c2": 5.910508509688903, + "c3": -2.4474768035404715, + "c4": 12.079035924858744, + "c5": -27.890606457279866, + "c6": 32.24478724754149, + "c7": 16.90516891079836 }, - "vertexSeeds": { - "c1": 6.173343126304344, - "c2": 6.10945665648418, - "c3": 6.071744419883179, - "c4": 5.7633373076954815, - "c5": 5.6541202942051, - "c6": 5.982482657672067, - "c7": 5.747784711493845 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.84882108183079, + "c3": 7.3740175681923255, + "c4": 5.89921405455386, + "c5": 4.424410540915395, + "c6": 2.94960702727693, + "c7": 1.474803513638465 }, "rgb": [238, 201, 159] }, @@ -379815,23 +379815,23 @@ "year": 1805, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 27.180509429711407, - "c2": -26.220763861992598, - "c3": -19.41074276495412, - "c4": -25.440933434269372, - "c5": -2.9226970336746945, - "c6": -6.530553226550243, - "c7": 18.303131110909945 + "points": { + "c1": 3.1148525227005948, + "c2": -20.645697380137, + "c3": 12.22162503003348, + "c4": 27.11083056079832, + "c5": 25.68739022280095, + "c6": 3.692892463430347, + "c7": -11.650014156682303 }, - "vertexSeeds": { - "c1": 2.5753004829372017, - "c2": 2.60397430488334, - "c3": 2.4251168105017613, - "c4": 2.3948087304136476, - "c5": 2.3835790419626077, - "c6": 2.4384477400740128, - "c7": 2.49065618812955 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104014, + "c3": 3.1668978270920003, + "c4": 2.5335182616735987, + "c5": 1.9001386962552007, + "c6": 1.2667591308368027, + "c7": 0.6333795654184013 }, "rgb": [58, 15, 49] }, @@ -379842,23 +379842,23 @@ "year": 1805, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -14.295730027596857, - "c2": -20.410315503690597, - "c3": 18.66181277471876, - "c4": 21.470668225054645, - "c5": -6.275567090589583, - "c6": -19.6829039076987, - "c7": 6.3930323875506545 + "points": { + "c1": -26.784851878625012, + "c2": -12.637412912948667, + "c3": 18.77310565721625, + "c4": -23.803350726441366, + "c5": 4.5612851893381645, + "c6": -16.23790109661559, + "c7": -1.3490885974791702 }, - "vertexSeeds": { - "c1": 1.674392948410005, - "c2": 1.7742883024120313, - "c3": 1.7566556725140021, - "c4": 1.7441405128161898, - "c5": 1.8547937376006227, - "c6": 1.5446428482331758, - "c7": 1.5601225946652622 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217753, + "c3": 1.849283402681462, + "c4": 1.4794267221451691, + "c5": 1.1095700416088765, + "c6": 0.7397133610725837, + "c7": 0.3698566805362928 }, "rgb": [58, 15, 49] }, @@ -379869,23 +379869,23 @@ "year": 1805, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -0.28037159872667416, - "c2": -31.22463636895916, - "c3": -6.375138240359053, - "c4": -22.183150286767834, - "c5": 22.002623978168337, - "c6": 27.58302410720647, - "c7": 8.410807639608542 + "points": { + "c1": 7.399917307685307, + "c2": -21.174898532680505, + "c3": -0.21333030699788935, + "c4": 7.652679306844185, + "c5": -28.715963509350903, + "c6": -24.3568560649513, + "c7": -25.267773442088682 }, - "vertexSeeds": { - "c1": 3.2962149488753325, - "c2": 3.5477910843430323, - "c3": 3.7054786077263153, - "c4": 3.479101040633868, - "c5": 3.377611952335529, - "c6": 3.3296489630080086, - "c7": 3.652759277846919 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722607, + "c3": 4.438280166435506, + "c4": 3.5506241331484047, + "c5": 2.6629680998613035, + "c6": 1.7753120665742024, + "c7": 0.8876560332871012 }, "rgb": [238, 201, 159] }, @@ -379896,23 +379896,23 @@ "year": 1805, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -21.88272794085296, - "c2": -26.54667118974375, - "c3": -5.648216350287907, - "c4": -18.025480676054677, - "c5": 28.564266169423615, - "c6": -12.350811280349792, - "c7": -6.159615849584576 + "points": { + "c1": 30.97386731954734, + "c2": -10.55922400076097, + "c3": -13.264884624091241, + "c4": -9.885646379961027, + "c5": -16.93652783007572, + "c6": 13.717963527767136, + "c7": -9.221447339433524 }, - "vertexSeeds": { - "c1": 3.3725947306308486, - "c2": 3.4096334387636813, - "c3": 3.362222131786998, - "c4": 3.14555184351859, - "c5": 3.043211687329718, - "c6": 3.2707717123215247, - "c7": 3.326640882413668 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199721, + "c3": 4.137771613499767, + "c4": 3.3102172907998186, + "c5": 2.4826629680998638, + "c6": 1.6551086453999093, + "c7": 0.8275543226999547 }, "rgb": [58, 15, 49] }, @@ -379923,23 +379923,23 @@ "year": 1806, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 9.045377456309076, - "c2": -16.093658803542475, - "c3": 32.78563947670946, - "c4": 0.06054884816443007, - "c5": -4.476591302833484, - "c6": -38.12328250224884, - "c7": 22.26439832310085 + "points": { + "c1": 0.7528731258617967, + "c2": -37.528474642136494, + "c3": 11.054608648160851, + "c4": -13.97465557446192, + "c5": -37.97079838482864, + "c6": 18.55773397561625, + "c7": -19.85311121979519 }, - "vertexSeeds": { - "c1": 3.3214500611501414, - "c2": 3.9949384473227783, - "c3": 3.994114422662484, - "c4": 3.56434794612445, - "c5": 3.6198420082195737, - "c6": 3.9498830687792585, - "c7": 4.008875579392332 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.76976421636616, + "c3": 4.808136846971801, + "c4": 3.846509477577438, + "c5": 2.88488210818308, + "c6": 1.9232547387887218, + "c7": 0.9616273693943584 }, "rgb": [238, 201, 159] }, @@ -379950,23 +379950,23 @@ "year": 1805, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -4.923105965720165, - "c2": 7.439654774223733, - "c3": -8.458521350135872, - "c4": -29.536374367852996, - "c5": 14.539570400552904, - "c6": 30.65490444549706, - "c7": 10.776869257480428 + "points": { + "c1": 28.055902349172307, + "c2": -10.373821157670001, + "c3": -20.88527758236592, + "c4": 19.819972248858534, + "c5": 1.3166101975179387, + "c6": -17.078413787801964, + "c7": -7.601253757763622 }, - "vertexSeeds": { - "c1": 11.242124640605907, - "c2": 11.418399350405473, - "c3": 11.874249812271783, - "c4": 11.701138612816967, - "c5": 11.683009488706798, - "c6": 11.9208113427705, - "c7": 11.377811883533832 + "offsets": { + "c1": 20.42071197411003, + "c2": 17.503467406380015, + "c3": 14.586222838650041, + "c4": 11.668978270920023, + "c5": 8.751733703190007, + "c6": 5.834489135460033, + "c7": 2.9172445677300165 }, "rgb": [58, 15, 49] }, @@ -379977,23 +379977,23 @@ "year": 1805, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 16.861862334551446, - "c2": 10.11502427490317, - "c3": 1.5879586925725633, - "c4": 9.485812118349436, - "c5": -21.01782018236203, - "c6": 19.671570599962045, - "c7": -12.630089699245396 + "points": { + "c1": -25.0303178746453, + "c2": 20.454204390457072, + "c3": 22.254048191823927, + "c4": -32.20909584582403, + "c5": -27.66353399939924, + "c6": 33.22414070133663, + "c7": 14.096521625607885 }, - "vertexSeeds": { - "c1": 0.582901554404145, - "c2": 0.582901554404145, - "c3": 0.582901554404145, - "c4": 0.582901554404145, - "c5": 0.582901554404145, - "c6": 0.582901554404145, - "c7": 0.582901554404145 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -380004,23 +380004,23 @@ "year": 1805, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -25.36732102310451, - "c2": 4.0081437971146485, - "c3": 1.1313286966035, - "c4": 19.893862827774647, - "c5": 9.656902835355446, - "c6": 26.752889428270095, - "c7": 9.886744534756744 + "points": { + "c1": -21.225785675818976, + "c2": 29.869666430986378, + "c3": 5.549621118111659, + "c4": 15.675083365744975, + "c5": -23.941403524651953, + "c6": -8.664118382377723, + "c7": 3.357686251770396 }, - "vertexSeeds": { - "c1": 5.054098169107473, - "c2": 5.0073820969677545, - "c3": 4.71689137518203, - "c4": 5.159883652206666, - "c5": 5.183151114183856, - "c6": 5.143154125834811, - "c7": 4.702511887283592 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859925, + "c3": 6.241331484049928, + "c4": 4.99306518723995, + "c5": 3.7447988904299625, + "c6": 2.496532593619975, + "c7": 1.2482662968099876 }, "rgb": [222, 0, 59] }, @@ -380031,23 +380031,23 @@ "year": 1806, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -20.575121335361242, - "c2": -29.277807316358302, - "c3": 24.246674624066607, - "c4": -20.078820542624186, - "c5": 25.738266370436733, - "c6": 13.943316266608711, - "c7": 27.07255447511715 + "points": { + "c1": -20.589106448167367, + "c2": -29.510785613156877, + "c3": 13.45716045258515, + "c4": 33.35382770467519, + "c5": 39.55295290548367, + "c6": -16.756004415404703, + "c7": 30.682449852933495 }, - "vertexSeeds": { - "c1": 2.259564278275269, - "c2": 2.3788141174995063, - "c3": 2.3938191020705064, - "c4": 2.2209089652248757, - "c5": 2.20029349885069, - "c6": 2.214545388538461, - "c7": 2.242360874789004 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.46740638002774, + "c3": 2.889505316689781, + "c4": 2.3116042533518253, + "c5": 1.73370319001387, + "c6": 1.1558021266759146, + "c7": 0.5779010633379554 }, "rgb": [77, 76, 132] }, @@ -380058,23 +380058,23 @@ "year": 1805, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -27.902102804833905, - "c2": -13.159831190657037, - "c3": 22.029937932864676, - "c4": 3.9069994116739934, - "c5": -14.223627293443588, - "c6": -27.187041699374564, - "c7": 7.767498909808943 + "points": { + "c1": 4.539248854383409, + "c2": 14.348928624946538, + "c3": 3.3797282093278938, + "c4": 18.5819032283297, + "c5": 32.49701790456777, + "c6": 18.07936922701228, + "c7": 13.70832760903555 }, - "vertexSeeds": { - "c1": 3.8754289361963576, - "c2": 4.036467190115632, - "c3": 4.120508223806897, - "c4": 3.8253185829151772, - "c5": 3.8909645420521444, - "c6": 3.874340299154873, - "c7": 4.112159146003449 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687937, + "c3": 4.993065187239941, + "c4": 3.9944521497919547, + "c5": 2.9958391123439685, + "c6": 1.9972260748959818, + "c7": 0.9986130374479864 }, "rgb": [77, 76, 132] }, @@ -380085,23 +380085,23 @@ "year": 1806, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": -35.97632261326376, - "c2": 1.6230618389001918, - "c3": -43.70891132876031, - "c4": -40.85639549875593, - "c5": -9.203761058156232, - "c6": -37.89943964694763, - "c7": -41.07887286396938 + "points": { + "c1": -44.43099509010214, + "c2": -11.783623954655539, + "c3": 5.712361867136174, + "c4": -14.446281912134339, + "c5": 3.4674265261383397, + "c6": -35.82836061668067, + "c7": -30.995879416972013 }, - "vertexSeeds": { - "c1": 9.354646535725404, - "c2": 10.782395373313062, - "c3": 10.19764659149861, - "c4": 9.785667538685932, - "c5": 9.42481418600257, - "c6": 10.640330423683128, - "c7": 10.688765653878589 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363392, + "c3": 12.852519648636145, + "c4": 10.282015718908921, + "c5": 7.711511789181696, + "c6": 5.141007859454461, + "c7": 2.5705039297272236 }, "rgb": [238, 201, 159] }, @@ -380112,23 +380112,23 @@ "year": 1805, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -15.164695480676578, - "c2": -10.89056873472226, - "c3": -1.114364312790883, - "c4": -4.817690076080307, - "c5": 23.225944753465534, - "c6": -20.3545794994477, - "c7": -1.3481289990798118 + "points": { + "c1": -14.881035806225162, + "c2": 19.790657227833456, + "c3": 13.45269148568807, + "c4": -18.852701421141997, + "c5": -21.521589340416945, + "c6": 1.7703016235362838, + "c7": 10.89045002324432 }, - "vertexSeeds": { - "c1": 7.274314987958198, - "c2": 7.5394251509492065, - "c3": 6.920806808958727, - "c4": 7.2824069179941375, - "c5": 7.530064577149018, - "c6": 7.511747627441784, - "c7": 7.173609778767466 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [58, 15, 49] }, @@ -380139,23 +380139,23 @@ "year": 1806, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 24.617329633591616, - "c2": -27.945909074258473, - "c3": -12.941050515273407, - "c4": -0.8002656859616621, - "c5": 15.92742915319743, - "c6": 24.236278688801484, - "c7": 22.327691060604636 + "points": { + "c1": 9.174383210207772, + "c2": -37.68940318043971, + "c3": 5.106221276956184, + "c4": -28.525994449912357, + "c5": 26.680222617665052, + "c6": -1.0633766587414897, + "c7": 5.410243848427584 }, - "vertexSeeds": { - "c1": 3.419545197675052, - "c2": 3.3577494778967827, - "c3": 3.521570744121426, - "c4": 3.4509589151156517, - "c5": 3.4019123676425025, - "c6": 3.5313578329698174, - "c7": 3.56637039075237 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441054, + "c3": 4.276467868700879, + "c4": 3.4211742949607022, + "c5": 2.565880721220527, + "c6": 1.7105871474803511, + "c7": 0.8552935737401756 }, "rgb": [238, 201, 159] }, @@ -380166,23 +380166,23 @@ "year": 1805, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -6.192231243686511, - "c2": -26.109215207191397, - "c3": 30.084701946796546, - "c4": 9.82135975992917, - "c5": 12.958086858883757, - "c6": 6.137699214443291, - "c7": -26.246224418422106 + "points": { + "c1": -21.983725665931768, + "c2": -15.935216784168368, + "c3": 8.947891087704186, + "c4": -32.249208484436785, + "c5": -15.264314347025259, + "c6": -5.403948376606202, + "c7": 4.7985413836354525 }, - "vertexSeeds": { - "c1": 5.457786096582976, - "c2": 5.791727406347069, - "c3": 5.5653133916675745, - "c4": 5.4517659569217995, - "c5": 5.480796730235281, - "c6": 6.017818275626692, - "c7": 5.818667140228667 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [222, 0, 59] }, @@ -380193,23 +380193,23 @@ "year": 1805, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 27.94636742082804, - "c2": 20.41196072095959, - "c3": 10.938003631885508, - "c4": 1.1204133112343904, - "c5": -25.747742337001647, - "c6": 22.067413060740158, - "c7": 6.338412940121472 + "points": { + "c1": -19.79580404922426, + "c2": -22.970505664557514, + "c3": -19.285071697306513, + "c4": 9.086229519123016, + "c5": 9.387207281803654, + "c6": -16.31218563986579, + "c7": 14.95077008523694 }, - "vertexSeeds": { - "c1": 7.649725685771429, - "c2": 7.474089662287476, - "c3": 8.020905544607954, - "c4": 7.986621613698343, - "c5": 7.359301180343802, - "c6": 7.4890131539931595, - "c7": 7.935563570083496 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893202, + "c3": 9.70873786407767, + "c4": 7.766990291262135, + "c5": 5.825242718446601, + "c6": 3.8834951456310676, + "c7": 1.9417475728155338 }, "rgb": [238, 201, 159] }, @@ -380220,23 +380220,23 @@ "year": 1805, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 8.31120329883538, - "c2": 10.36910274650706, - "c3": 15.389560130540772, - "c4": -1.3286304956604873, - "c5": -28.85782925134837, - "c6": -24.581335320853245, - "c7": 19.893810304160837 + "points": { + "c1": -21.672313110877, + "c2": 12.693269007999852, + "c3": -22.697354967288042, + "c4": 17.477604879149403, + "c5": -20.98425951308078, + "c6": -15.524607674572266, + "c7": -0.3332935473452281 }, - "vertexSeeds": { - "c1": 2.5501261803718176, - "c2": 2.675196228424473, - "c3": 2.7952743540935407, - "c4": 2.6753923283640275, - "c5": 2.773199096488855, - "c6": 2.6668600652148435, - "c7": 2.7268737678273887 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.049930651872399, + "c3": 3.3749422098936663, + "c4": 2.699953767914933, + "c5": 2.0249653259361997, + "c6": 1.3499768839574664, + "c7": 0.6749884419787332 }, "rgb": [58, 15, 49] }, @@ -380247,23 +380247,23 @@ "year": 1806, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -22.542741689602234, - "c2": -12.903903678348435, - "c3": -15.506209238866916, - "c4": 36.20753963377936, - "c5": 8.478454133259689, - "c6": -9.132231837914311, - "c7": -8.917501228074052 + "points": { + "c1": 0.8670967699591827, + "c2": 29.270963072619324, + "c3": -6.619472391687431, + "c4": -25.6152734941357, + "c5": 35.55020151626469, + "c6": 14.852985631967321, + "c7": 46.64914466981564 }, - "vertexSeeds": { - "c1": 2.582625371367457, - "c2": 2.6269426579039683, - "c3": 2.6098871876671703, - "c4": 2.692678322800902, - "c5": 2.8215170654267934, - "c6": 2.844799630666659, - "c7": 2.618145974054586 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952845, + "c3": 3.421174294960705, + "c4": 2.7369394359685573, + "c5": 2.052704576976418, + "c6": 1.3684697179842786, + "c7": 0.6842348589921393 }, "rgb": [222, 0, 59] }, @@ -380274,23 +380274,23 @@ "year": 1806, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -29.20832611118366, - "c2": -2.2062334825718395, - "c3": 41.837296815007576, - "c4": 31.441884860833014, - "c5": 5.727207327907131, - "c6": -45.656436912482626, - "c7": 36.61340059155498 + "points": { + "c1": -28.773086047120238, + "c2": 8.641736378527902, + "c3": 48.0915413502299, + "c4": 44.873623713466856, + "c5": -42.54042627355531, + "c6": -12.237525002662643, + "c7": 40.38206843909245 }, - "vertexSeeds": { - "c1": 10.552369455082017, - "c2": 8.823335607136283, - "c3": 10.129706891597005, - "c4": 9.76853609065578, - "c5": 9.396693051537817, - "c6": 10.565525292591937, - "c7": 8.892066332779892 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961165, + "c3": 12.621359223300972, + "c4": 10.097087378640778, + "c5": 7.572815533980583, + "c6": 5.048543689320389, + "c7": 2.5242718446601944 }, "rgb": [238, 201, 159] }, @@ -380301,23 +380301,23 @@ "year": 1805, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -13.217033181784839, - "c2": -23.40687089946224, - "c3": 18.231536872744726, - "c4": 21.664778582082512, - "c5": 10.727107625324123, - "c6": 12.286851022692865, - "c7": 18.677310524120735 + "points": { + "c1": 32.777989899702604, + "c2": -13.57099984284348, + "c3": -22.6425567253426, + "c4": -18.07429459469639, + "c5": -26.006277255082097, + "c6": -20.039028476414753, + "c7": 34.133745040761625 }, - "vertexSeeds": { - "c1": 5.95352682669337, - "c2": 5.95207656227978, - "c3": 5.945839748889459, - "c4": 5.950437453927859, - "c5": 5.956121866209394, - "c6": 5.934156040901138, - "c7": 5.935761189558003 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.54368932038839, + "c3": 7.119741100323705, + "c4": 5.695792880259021, + "c5": 4.271844660194053, + "c6": 2.847896440129369, + "c7": 1.4239482200646845 }, "rgb": [238, 201, 159] }, @@ -380328,23 +380328,23 @@ "year": 1806, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 30.316461843423397, - "c2": 18.42464894966043, - "c3": 28.19498107750917, - "c4": -35.87687220212264, - "c5": 4.451475884301587, - "c6": 17.153732197077055, - "c7": -4.825590926751097 + "points": { + "c1": -28.65807456288705, + "c2": 12.643816653305358, + "c3": -33.395800026501895, + "c4": 32.947574089512216, + "c5": 20.043734642925216, + "c6": 24.43399843746927, + "c7": -0.1381962708569091 }, - "vertexSeeds": { - "c1": 5.911422371319721, - "c2": 5.654139264028849, - "c3": 5.851469144772438, - "c4": 6.112684114406266, - "c5": 5.9313407110389305, - "c6": 5.7913093721198265, - "c7": 5.866212983033727 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710132, + "c3": 7.304669440591761, + "c4": 5.843735552473413, + "c5": 4.382801664355066, + "c6": 2.9218677762367182, + "c7": 1.4609338881183476 }, "rgb": [222, 0, 59] }, @@ -380355,23 +380355,23 @@ "year": 1805, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 12.880561854286661, - "c2": 4.1514538821392435, - "c3": -7.634365688821163, - "c4": 5.319389397605626, - "c5": -3.46623354724084, - "c6": 22.710352321710097, - "c7": 22.43159601749538 + "points": { + "c1": 25.76777028829843, + "c2": -18.380948333318035, + "c3": -16.76925262191996, + "c4": 12.254115953681413, + "c5": -16.73982168625733, + "c6": 21.360586983442282, + "c7": 24.718533434627446 }, - "vertexSeeds": { - "c1": 0.8542994073589714, - "c2": 0.780142575627831, - "c3": 0.8809245208633929, - "c4": 0.7832788327642729, - "c5": 0.8491986488792351, - "c6": 0.8818006164807772, - "c7": 0.8677981234037198 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.3314840499306515, + "c3": 1.1095700416088763, + "c4": 0.8876560332871006, + "c5": 0.6657420249653251, + "c6": 0.44382801664355104, + "c7": 0.22191400832177413 }, "rgb": [77, 76, 132] }, @@ -380382,23 +380382,23 @@ "year": 1806, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -33.39583027237435, - "c2": -2.996531671657351, - "c3": 18.78721692959705, - "c4": -8.92008668842702, - "c5": 34.06953310364209, - "c6": -42.855599880377056, - "c7": 30.491540577191657 + "points": { + "c1": 16.964632908275988, + "c2": -15.669455941586108, + "c3": 29.895803013977854, + "c4": 1.7994038834383375, + "c5": -5.3118566110825185, + "c6": 46.04902851244444, + "c7": -29.28399125941152 }, - "vertexSeeds": { - "c1": 3.7664117219404902, - "c2": 3.7800912846171455, - "c3": 3.575011450929122, - "c4": 3.6927537460460345, - "c5": 3.6692916078337743, - "c6": 3.7210547383502295, - "c7": 3.580522330003429 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124826, + "c3": 4.6694405917706865, + "c4": 3.735552473416557, + "c5": 2.801664355062417, + "c6": 1.8677762367082784, + "c7": 0.9338881183541392 }, "rgb": [222, 0, 59] }, @@ -380409,23 +380409,23 @@ "year": 1806, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -24.786479557512465, - "c2": 5.877340621489182, - "c3": -3.344576246856498, - "c4": 2.8984573956753223, - "c5": -39.00385610730483, - "c6": -18.54868881809448, - "c7": 35.14969846519585 + "points": { + "c1": -16.326825791245927, + "c2": -39.90973557536923, + "c3": 34.136701703562146, + "c4": 15.658951793304496, + "c5": 32.75631508396524, + "c6": 23.845292360039473, + "c7": 5.157946842632697 }, - "vertexSeeds": { - "c1": 7.715325186632779, - "c2": 7.807606263834386, - "c3": 8.144153854187628, - "c4": 7.726836147155698, - "c5": 7.85935785055977, - "c6": 7.895667641420771, - "c7": 7.870325849920061 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973659, + "c3": 9.754969949144702, + "c4": 7.803975959315773, + "c5": 5.852981969486815, + "c6": 3.9019879796578865, + "c7": 1.9509939898289577 }, "rgb": [77, 76, 132] }, @@ -380436,23 +380436,23 @@ "year": 1806, "resistanceReported": false, "duration": 35164800, - "curveSeeds": { - "c1": -46.999497390520744, - "c2": -48.49190927440646, - "c3": -9.583085090808439, - "c4": -22.826061191693586, - "c5": -43.83646509211575, - "c6": 42.332079754720965, - "c7": 41.94811021496295 + "points": { + "c1": -37.091931450393034, + "c2": 5.898532997642157, + "c3": 27.671125709850102, + "c4": -18.42092428842804, + "c5": 11.502071037291323, + "c6": -16.418263885388, + "c7": 10.423365395046552 }, - "vertexSeeds": { - "c1": 4.371592734341251, - "c2": 4.364686484140915, - "c3": 4.331855964427053, - "c4": 4.291510674696154, - "c5": 4.3572251899063765, - "c6": 4.277267572858506, - "c7": 4.24112087475711 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090161, + "c3": 5.2242256125751245, + "c4": 4.179380490060108, + "c5": 3.134535367545071, + "c6": 2.089690245030054, + "c7": 1.0448451225150166 }, "rgb": [86, 146, 138] }, @@ -380463,23 +380463,23 @@ "year": 1806, "resistanceReported": false, "duration": 40089600, - "curveSeeds": { - "c1": -4.266244233111344, - "c2": -11.35763515055065, - "c3": -1.6517336160218434, - "c4": 31.353925685392447, - "c5": -20.027114268432882, - "c6": -3.2048372715517175, - "c7": -0.40840896777690716 + "points": { + "c1": 5.657854060566855, + "c2": 9.047804148235862, + "c3": 13.61473384489225, + "c4": 47.89891131271009, + "c5": 50.70988120610624, + "c6": 7.836172284295756, + "c7": 34.703572717707765 }, - "vertexSeeds": { - "c1": 5.572596057691789, - "c2": 5.656777240973791, - "c3": 5.6271233697223515, - "c4": 5.363843172208365, - "c5": 5.653822641819847, - "c6": 5.537562944581905, - "c7": 5.447078164400298 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066572, + "c3": 6.934812760055478, + "c4": 5.547850208044382, + "c5": 4.160887656033286, + "c6": 2.773925104022191, + "c7": 1.3869625520110955 }, "rgb": [86, 146, 138] }, @@ -380490,23 +380490,23 @@ "year": 1805, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 8.818716721732024, - "c2": 30.293932504678843, - "c3": 28.6660036702447, - "c4": 20.256793782557452, - "c5": 13.530288842386426, - "c6": -13.596934404138604, - "c7": 22.614961304983076 + "points": { + "c1": -3.3751459841240923, + "c2": -26.203135512317253, + "c3": 3.0067659678338146, + "c4": 30.42193120762765, + "c5": 10.481889754706962, + "c6": -30.230258590963984, + "c7": 32.01784070952922 }, - "vertexSeeds": { - "c1": 4.389993541332149, - "c2": 4.5047490145354505, - "c3": 4.327957668823503, - "c4": 4.187165171550231, - "c5": 4.328905332727275, - "c6": 4.33608359036055, - "c7": 4.582099128058698 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653263, + "c3": 5.54785020804438, + "c4": 4.438280166435508, + "c5": 3.3287101248266264, + "c6": 2.219140083217754, + "c7": 1.1095700416088818 }, "rgb": [222, 0, 59] }, @@ -380517,23 +380517,23 @@ "year": 1805, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 13.12956603268551, - "c2": 17.893332397551447, - "c3": -27.087739421584835, - "c4": 17.172035289983675, - "c5": 30.845087562071427, - "c6": 11.957632157894203, - "c7": 24.476866688284403 + "points": { + "c1": 16.57317530196549, + "c2": -26.946047732352696, + "c3": -6.435986908663168, + "c4": -8.816991341488563, + "c5": 9.531854452289913, + "c6": 6.169663355494329, + "c7": -17.93349678114928 }, - "vertexSeeds": { - "c1": 6.060421758873097, - "c2": 5.858712874108162, - "c3": 6.112975188315018, - "c4": 6.375205044911731, - "c5": 5.613619340083055, - "c6": 5.875271117770312, - "c7": 5.763259738555521 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313453, + "c3": 7.651410078594542, + "c4": 6.121128062875632, + "c5": 4.590846047156732, + "c6": 3.060564031437821, + "c7": 1.5302820157189105 }, "rgb": [238, 201, 159] }, @@ -380544,23 +380544,23 @@ "year": 1805, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 20.265567687009543, - "c2": -19.031748325667753, - "c3": -26.279160354136998, - "c4": 15.441986004924352, - "c5": 3.5635148989589425, - "c6": 13.979538188085158, - "c7": 19.26847552112379 + "points": { + "c1": -19.414864603500273, + "c2": -3.9454469861881023, + "c3": 24.91984023772919, + "c4": -11.71522114665063, + "c5": -2.4799102136630893, + "c6": -6.6589688649706105, + "c7": -4.71695871051519 }, - "vertexSeeds": { - "c1": 4.908962022978041, - "c2": 5.377238944462441, - "c3": 5.346173094976282, - "c4": 4.536686512056687, - "c5": 5.614119782660227, - "c6": 4.665741699459039, - "c7": 4.960127254726395 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986134, + "c3": 6.888580674988442, + "c4": 5.5108645399907505, + "c5": 4.133148404993065, + "c6": 2.7554322699953766, + "c7": 1.3777161349976883 }, "rgb": [238, 201, 159] }, @@ -380571,23 +380571,23 @@ "year": 1805, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 6.263094227018897, - "c2": 20.08110796646706, - "c3": -21.071449888875225, - "c4": 16.65245744171279, - "c5": -28.25701389843087, - "c6": -23.98157698761218, - "c7": -3.2878305341743186 + "points": { + "c1": -22.77352237234451, + "c2": 23.977981616743037, + "c3": 32.374407691573076, + "c4": 1.8671643567056435, + "c5": 10.063259487602032, + "c6": -27.80050388219077, + "c7": -25.936942603771083 }, - "vertexSeeds": { - "c1": 1.9680706278613176, - "c2": 1.9873519793235102, - "c3": 1.927497581316868, - "c4": 1.9743953074339258, - "c5": 2.063988486133832, - "c6": 2.1935781215126915, - "c7": 2.254732587177003 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786407, + "c3": 2.7508090614886727, + "c4": 2.2006472491909403, + "c5": 1.6504854368932051, + "c6": 1.1003236245954702, + "c7": 0.5501618122977351 }, "rgb": [86, 146, 138] }, @@ -380598,23 +380598,23 @@ "year": 1806, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -13.265643636855955, - "c2": 32.894468375312584, - "c3": 9.884784893452547, - "c4": -38.67351773318674, - "c5": -42.17861561787009, - "c6": -36.83183826565069, - "c7": 6.802565022103906 + "points": { + "c1": -32.512322587143444, + "c2": 21.19365891334415, + "c3": -6.376597164860314, + "c4": -22.978831142556235, + "c5": -37.348642898210315, + "c6": 47.75325904795818, + "c7": -15.66033905842096 }, - "vertexSeeds": { - "c1": 2.3855983890065904, - "c2": 2.3336720643719837, - "c3": 2.263035553623208, - "c4": 2.334812733303626, - "c5": 2.3780938441947255, - "c6": 2.306508430022494, - "c7": 2.3264980225039946 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875176, + "c3": 2.8663892741562647, + "c4": 2.2931114193250117, + "c5": 1.7198335644937588, + "c6": 1.1465557096625059, + "c7": 0.5732778548312529 }, "rgb": [77, 76, 132] }, @@ -380625,23 +380625,23 @@ "year": 1805, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 8.03295232892551, - "c2": -5.507254010308962, - "c3": -1.7314072314820876, - "c4": -11.825611658479724, - "c5": 0.3547840462500993, - "c6": 17.430175188342368, - "c7": -20.61511311640313 + "points": { + "c1": 2.889787373629037, + "c2": -18.638499268551847, + "c3": -22.260768518949767, + "c4": -19.658594963045513, + "c5": 5.713149999161203, + "c6": -22.44347787949364, + "c7": -14.262716938272401 }, - "vertexSeeds": { - "c1": 1.9595068617366478, - "c2": 1.9446078329538248, - "c3": 1.7696361275970198, - "c4": 1.9153392660270196, - "c5": 1.9526458991015205, - "c6": 1.78025136097999, - "c7": 1.9358708624816676 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142856, + "c3": 2.3809523809523787, + "c4": 1.9047619047619055, + "c5": 1.428571428571428, + "c6": 0.9523809523809506, + "c7": 0.4761904761904731 }, "rgb": [77, 76, 132] }, @@ -380652,23 +380652,23 @@ "year": 1805, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 11.998912969124664, - "c2": -16.188048230235523, - "c3": -2.9355935198850744, - "c4": -10.274216223747057, - "c5": -14.235365027056433, - "c6": 10.943433652077783, - "c7": -7.608354562743127 + "points": { + "c1": -22.67913758233589, + "c2": 11.937854418025704, + "c3": 1.3292379542389767, + "c4": -26.61078056378871, + "c5": -7.971152383053553, + "c6": 4.701006458625731, + "c7": 17.651570966217673 }, - "vertexSeeds": { - "c1": 3.341065264756533, - "c2": 3.3342031375867545, - "c3": 3.2686038949217857, - "c4": 3.5906516293603765, - "c5": 3.5082989401843836, - "c6": 3.5178876918734763, - "c7": 3.3711678680736163 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601941, + "c3": 4.368932038834951, + "c4": 3.495145631067961, + "c5": 2.6213592233009706, + "c6": 1.7475728155339805, + "c7": 0.8737864077669902 }, "rgb": [238, 201, 159] }, @@ -380679,23 +380679,23 @@ "year": 1805, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 27.0875427291667, - "c2": -3.470222446953663, - "c3": -3.0675888887658083, - "c4": 22.432814920378192, - "c5": -4.289481187761851, - "c6": -30.247624230529, - "c7": 13.027568096688292 + "points": { + "c1": -29.16976277565805, + "c2": -4.858443626624748, + "c3": -12.898362916481265, + "c4": -11.079278507943553, + "c5": 2.4161036717621514, + "c6": 26.809864194209496, + "c7": 13.31629514618809 }, - "vertexSeeds": { - "c1": 6.420172995790886, - "c2": 7.093424084431053, - "c3": 6.581883759858291, - "c4": 6.760929430591819, - "c5": 7.033516719744577, - "c6": 6.459415311741825, - "c7": 6.993846541847798 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922329, + "c3": 8.576051779935275, + "c4": 6.860841423948219, + "c5": 5.1456310679611645, + "c6": 3.4304207119741097, + "c7": 1.7152103559870548 }, "rgb": [86, 146, 138] }, @@ -380706,23 +380706,23 @@ "year": 1805, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -0.05562199095511744, - "c2": 20.94775967986967, - "c3": 30.85981983326387, - "c4": -15.883053737160989, - "c5": -29.07866617079736, - "c6": -13.15208080615993, - "c7": -5.8391434025150275 + "points": { + "c1": 33.222192929693534, + "c2": 4.152758722442101, + "c3": 15.437711136158214, + "c4": -20.868318515138355, + "c5": -21.448935417936937, + "c6": -4.754494604052553, + "c7": 25.181397913066547 }, - "vertexSeeds": { - "c1": 3.807901642363407, - "c2": 3.8008649190630117, - "c3": 3.745516597704781, - "c4": 3.8609809780441404, - "c5": 3.8019125558750653, - "c6": 3.4831360123307205, - "c7": 3.824118823213098 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.6033287101248295, + "c3": 4.6694405917706945, + "c4": 3.73555247341655, + "c5": 2.8016643550624147, + "c6": 1.867776236708279, + "c7": 0.9338881183541439 }, "rgb": [86, 146, 138] }, @@ -380733,23 +380733,23 @@ "year": 1806, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 25.453618741250352, - "c2": -32.0105050622026, - "c3": 45.700739100548034, - "c4": -2.4308449408350583, - "c5": -12.169315504287866, - "c6": -18.435640508043335, - "c7": 36.219201042114065 + "points": { + "c1": 49.595637614465346, + "c2": 50.48953495057704, + "c3": -25.033486806697894, + "c4": -27.20723355319664, + "c5": 21.63149876484765, + "c6": -10.525412595964035, + "c7": -13.248419961443005 }, - "vertexSeeds": { - "c1": 11.03029089334509, - "c2": 11.123232416657048, - "c3": 10.486961956547464, - "c4": 11.296593746921166, - "c5": 10.675685692406175, - "c6": 11.02922403062184, - "c7": 11.015674340922844 + "offsets": { + "c1": 18.932038834951456, + "c2": 16.227461858529818, + "c3": 13.522884882108183, + "c4": 10.818307905686545, + "c5": 8.113730929264909, + "c6": 5.409153952843273, + "c7": 2.7045769764216363 }, "rgb": [77, 76, 132] }, @@ -380760,23 +380760,23 @@ "year": 1806, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 42.202922827829404, - "c2": 26.468338846740856, - "c3": -0.6953539399640007, - "c4": 16.029602284387487, - "c5": 8.261033994409779, - "c6": -27.438890190910136, - "c7": -15.79337749116397 + "points": { + "c1": -15.183797824966685, + "c2": 43.40852848090898, + "c3": 42.870613609729965, + "c4": 8.16330606857941, + "c5": 29.667075474570005, + "c6": -36.51807737134909, + "c7": -11.740398300505035 }, - "vertexSeeds": { - "c1": 2.5489972541255557, - "c2": 2.3838330459560537, - "c3": 2.428306636681045, - "c4": 2.443393388631448, - "c5": 2.5355733471888056, - "c6": 2.478960163786523, - "c7": 2.4192584414921794 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.772538141470179, + "c3": 3.1437817845584815, + "c4": 2.515025427646783, + "c5": 1.886269070735094, + "c6": 1.2575127138233961, + "c7": 0.6287563569116981 }, "rgb": [86, 146, 138] }, @@ -380787,23 +380787,23 @@ "year": 1805, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 7.357604190148766, - "c2": 11.592091775052378, - "c3": -14.862830285219736, - "c4": -18.54948143368424, - "c5": -30.235968362282392, - "c6": -0.2631710082929395, - "c7": 15.559255174194863 + "points": { + "c1": 6.631724666044235, + "c2": 26.53053207090681, + "c3": -15.541367647768805, + "c4": -14.23465894803265, + "c5": -9.13867388714053, + "c6": 19.032912724798628, + "c7": -26.356778012163367 }, - "vertexSeeds": { - "c1": 1.4321036563463299, - "c2": 1.3734434761868233, - "c3": 1.3653472535014117, - "c4": 1.3802264135725217, - "c5": 1.4040020139581602, - "c6": 1.454615072489798, - "c7": 1.332515718167977 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097088, + "c3": 1.779935275080908, + "c4": 1.4239482200647244, + "c5": 1.067961165048544, + "c6": 0.7119741100323638, + "c7": 0.3559870550161803 }, "rgb": [58, 15, 49] }, @@ -380814,23 +380814,23 @@ "year": 1806, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 32.16377672698148, - "c2": -18.769440905986094, - "c3": 11.398419778939477, - "c4": -3.7319989423066247, - "c5": -21.938642511141076, - "c6": 30.57858088687648, - "c7": 23.009009744932527 + "points": { + "c1": -12.7426962253715, + "c2": -32.35556007756498, + "c3": 17.413968431117247, + "c4": -25.040072731680354, + "c5": 26.438336561837808, + "c6": -4.291172143923625, + "c7": -15.132575205097673 }, - "vertexSeeds": { - "c1": 8.522196850319103, - "c2": 8.008843063185118, - "c3": 8.557159909682234, - "c4": 7.7926510636266295, - "c5": 8.005630793021748, - "c6": 8.53421257509876, - "c7": 8.280240446167141 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898746, + "c3": 10.286638927415616, + "c4": 8.229311141932504, + "c5": 6.171983356449373, + "c6": 4.114655570966243, + "c7": 2.0573277854831304 }, "rgb": [77, 76, 132] }, @@ -380841,23 +380841,23 @@ "year": 1805, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -13.001073922984391, - "c2": 8.811637135878385, - "c3": -1.2097311952697325, - "c4": 26.259646797266043, - "c5": -9.663547879454228, - "c6": 7.508877504281912, - "c7": -17.31958128492478 + "points": { + "c1": -6.527725911872462, + "c2": -7.687633649506186, + "c3": -1.152520359368875, + "c4": 14.959026642128855, + "c5": -13.121363967567383, + "c6": 28.079069911767462, + "c7": 5.640763229013949 }, - "vertexSeeds": { - "c1": 5.807110547970595, - "c2": 5.967492283151147, - "c3": 5.451207207127581, - "c4": 5.631419776942677, - "c5": 5.600707946079306, - "c6": 5.884512651472129, - "c7": 5.738879318878784 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -380868,23 +380868,23 @@ "year": 1805, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -10.191462677652815, - "c2": 17.99137167647226, - "c3": 16.11665877768362, - "c4": 4.12831445808958, - "c5": -3.32249856291018, - "c6": 10.29746346830515, - "c7": 27.687284223768575 + "points": { + "c1": -3.451361737066911, + "c2": -1.6977953574791549, + "c3": 8.028896857279744, + "c4": 2.0615582777246466, + "c5": 24.277086487589987, + "c6": -28.95869621979487, + "c7": 0.9337777940939453 }, - "vertexSeeds": { - "c1": 1.7652735167070603, - "c2": 1.5388019099289347, - "c3": 1.631673431149757, - "c4": 1.7872438196042228, - "c5": 1.669555998961486, - "c6": 1.6890269866243046, - "c7": 1.8049025732235704 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.6629680998613026, + "c3": 2.2191400832177535, + "c4": 1.7753120665742017, + "c5": 1.3314840499306526, + "c6": 0.8876560332871009, + "c7": 0.4438280166435517 }, "rgb": [58, 15, 49] }, @@ -380895,23 +380895,23 @@ "year": 1806, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 11.120577579069604, - "c2": 2.5533093266075895, - "c3": -24.364273293459316, - "c4": -26.46280152532325, - "c5": 8.69319451190158, - "c6": 1.1167192825252243, - "c7": -24.145634307297215 + "points": { + "c1": 2.8593015714606054, + "c2": 10.917062370451916, + "c3": 0.4326557280672816, + "c4": -13.188940616503857, + "c5": -24.399366120995772, + "c6": -16.42006208354602, + "c7": 22.976428005817375 }, - "vertexSeeds": { - "c1": 1.8264248704663213, - "c2": 1.8264248704663213, - "c3": 1.8264248704663213, - "c4": 1.8264248704663213, - "c5": 1.8264248704663213, - "c6": 1.8264248704663213, - "c7": 1.8264248704663213 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -380922,23 +380922,23 @@ "year": 1806, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -20.838838343135347, - "c2": -17.026459471156265, - "c3": -7.39734962750326, - "c4": -3.5611909313840115, - "c5": 3.8980495788270986, - "c6": -16.25299504281381, - "c7": -38.33057420398413 + "points": { + "c1": -39.19647338515868, + "c2": 13.471862109254879, + "c3": 30.432378974415286, + "c4": 26.444089069515357, + "c5": -12.421886266986267, + "c6": 12.66205841325015, + "c7": -42.80307281312085 }, - "vertexSeeds": { - "c1": 2.9473117718570667, - "c2": 3.119211826418199, - "c3": 3.275534904241325, - "c4": 2.8539435642538704, - "c5": 3.1760168694866553, - "c6": 2.812558398167614, - "c7": 3.0692718649829995 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159502, + "c3": 4.114655570966253, + "c4": 3.2917244567729997, + "c5": 2.468793342579751, + "c6": 1.6458622283865019, + "c7": 0.8229311141932528 }, "rgb": [222, 0, 59] }, @@ -380949,23 +380949,23 @@ "year": 1805, "resistanceReported": false, "duration": 8380800, - "curveSeeds": { - "c1": -15.164246914065286, - "c2": -3.908154387699094, - "c3": -3.3722242509808904, - "c4": -9.782682870101093, - "c5": -5.1938678723345575, - "c6": 4.26843146369562, - "c7": 16.169671516871574 + "points": { + "c1": 18.81530551846381, + "c2": 11.858571862478072, + "c3": -13.88856151624589, + "c4": -7.317960595091723, + "c5": 20.71654873796902, + "c6": -17.8958405053068, + "c7": 5.5881175892687445 }, - "vertexSeeds": { - "c1": 1.4531801888326725, - "c2": 0.45121444618494977, - "c3": 0.8214689707399848, - "c4": 0.8034153808069635, - "c5": 0.3715310947565069, - "c6": 1.4696070945765216, - "c7": 1.2048279716990042 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.330097087378641, + "c3": 1.941747572815534, + "c4": 1.5533980582524272, + "c5": 1.1650485436893205, + "c6": 0.7766990291262137, + "c7": 0.38834951456310673 }, "rgb": [238, 201, 159] }, @@ -380976,23 +380976,23 @@ "year": 1806, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -21.336504689171143, - "c2": 6.710932411660508, - "c3": 8.028026719870283, - "c4": -0.700435824890171, - "c5": -24.986010170393605, - "c6": -2.0833059766506743, - "c7": -21.3299809399741 + "points": { + "c1": -24.75192624633829, + "c2": 4.040062262434176, + "c3": -17.481381795385204, + "c4": 10.119739603916187, + "c5": 12.39255625242265, + "c6": 17.229248474362535, + "c7": -1.5137017328427547 }, - "vertexSeeds": { - "c1": 1.893296543987006, - "c2": 1.9712205849758448, - "c3": 1.9444771450046152, - "c4": 2.0638526377040005, - "c5": 2.0874135596252206, - "c6": 2.019166440851546, - "c7": 2.0937618780990332 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.0513176144244096, + "c3": 2.54276467868701, + "c4": 2.0342117429496076, + "c5": 1.5256588072122048, + "c6": 1.0171058714748018, + "c7": 0.5085529357374028 }, "rgb": [86, 146, 138] }, @@ -381003,23 +381003,23 @@ "year": 1806, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -16.45651460300225, - "c2": -22.38537464030358, - "c3": -11.770871406855829, - "c4": 11.873720834850737, - "c5": 13.787926200534827, - "c6": 8.133934729238497, - "c7": 19.339670594220102 + "points": { + "c1": -15.7877504155001, + "c2": -0.7463856441249135, + "c3": 32.137086001974275, + "c4": -20.689034252090984, + "c5": -10.461587208041884, + "c6": 2.4842029292079175, + "c7": 28.326082715219137 }, - "vertexSeeds": { - "c1": 1.8719881858199872, - "c2": 1.9324769928894352, - "c3": 1.933968183163501, - "c4": 1.958245612775783, - "c5": 1.8434466286625064, - "c6": 1.9541380051189412, - "c7": 1.9465885509207796 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.8294036061026353, + "c3": 2.357836338418863, + "c4": 1.8862690707350902, + "c5": 1.4147018030513177, + "c6": 0.9431345353675451, + "c7": 0.47156726768377255 }, "rgb": [238, 201, 159] }, @@ -381030,23 +381030,23 @@ "year": 1806, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -30.762724486979003, - "c2": 15.194822588674974, - "c3": -25.866280415555522, - "c4": -9.187969013866923, - "c5": -15.218759580765706, - "c6": -30.20038479588184, - "c7": 11.337427723337022 + "points": { + "c1": -19.701452193113838, + "c2": -30.09748752882501, + "c3": -17.94312259460101, + "c4": 1.4303386115503756, + "c5": -17.71986261971164, + "c6": 26.261030320655244, + "c7": 15.664749049799283 }, - "vertexSeeds": { - "c1": 4.370905693283775, - "c2": 4.484191718886868, - "c3": 4.1024851682574806, - "c4": 3.415923803273862, - "c5": 4.116859465514599, - "c6": 4.326298055138289, - "c7": 3.8074811229311822 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894592, + "c3": 5.686546463245492, + "c4": 4.5492371705963945, + "c5": 3.411927877947295, + "c6": 2.2746185852981973, + "c7": 1.1373092926491002 }, "rgb": [86, 146, 138] }, @@ -381057,23 +381057,23 @@ "year": 1806, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -25.117589055786617, - "c2": 10.490498521816097, - "c3": -11.514653734160017, - "c4": -14.585595236190008, - "c5": -18.18673190010873, - "c6": -8.485052901258115, - "c7": -14.22658827175639 + "points": { + "c1": -2.902802462342155, + "c2": -0.5123648039638056, + "c3": -22.352990627024703, + "c4": 31.206739424032754, + "c5": 21.389149699937626, + "c6": -4.1963019984412, + "c7": -2.0822301392127933 }, - "vertexSeeds": { - "c1": 5.634839704820727, - "c2": 5.630752847269969, - "c3": 5.6436693773120385, - "c4": 5.453968467691017, - "c5": 5.637157924166154, - "c6": 5.637721869516862, - "c7": 5.640182670166288 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -381084,23 +381084,23 @@ "year": 1806, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 1.5219234229947673, - "c2": 29.81188638146333, - "c3": -2.4100873092445276, - "c4": 10.961173695118973, - "c5": -30.235418915908795, - "c6": 30.903749368279165, - "c7": -13.141117253852425 + "points": { + "c1": -25.7446442768834, + "c2": -30.90901312324364, + "c3": -3.2295539288544575, + "c4": 29.12445101942013, + "c5": 1.853198270296616, + "c6": -19.979331651422395, + "c7": 18.41325872082077 }, - "vertexSeeds": { - "c1": 2.0667854844426516, - "c2": 2.1681756436148407, - "c3": 1.9707348208054005, - "c4": 1.919602831702283, - "c5": 2.224074580503882, - "c6": 1.8700429823045512, - "c7": 1.9687574351497437 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668514, + "c3": 2.7970411465557095, + "c4": 2.2376329172445675, + "c5": 1.6782246879334257, + "c6": 1.1188164586222837, + "c7": 0.5594082293111419 }, "rgb": [58, 15, 49] }, @@ -381111,23 +381111,23 @@ "year": 1806, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -12.748709626289205, - "c2": -5.5460651077424075, - "c3": 34.44542200242533, - "c4": -30.276839597531588, - "c5": 4.322570679894547, - "c6": -11.937793213941195, - "c7": -25.737653418156626 + "points": { + "c1": -30.256661302381175, + "c2": 31.853799374001667, + "c3": 31.15808261243218, + "c4": -6.007451703608268, + "c5": -30.151944402317127, + "c6": 32.48838562319159, + "c7": 0.855013279014976 }, - "vertexSeeds": { - "c1": 5.94195852964961, - "c2": 5.465571972596663, - "c3": 5.663338313589573, - "c4": 5.888475255149748, - "c5": 5.427699694364413, - "c6": 5.625571529989858, - "c7": 5.8577107383173805 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -381138,23 +381138,23 @@ "year": 1806, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -11.55419449928678, - "c2": 5.5369932082361295, - "c3": 6.445138677303664, - "c4": 28.857961758565974, - "c5": -23.25181237152763, - "c6": -12.246014213554588, - "c7": 27.86320805990221 + "points": { + "c1": 4.1243316910072565, + "c2": -29.818874501593655, + "c3": -19.976509798669653, + "c4": 19.582746782450002, + "c5": 7.815967070585749, + "c6": 32.44188869352253, + "c7": -8.540118988803133 }, - "vertexSeeds": { - "c1": 5.855610292302959, - "c2": 5.88588682921589, - "c3": 5.517340760948731, - "c4": 5.4126917028162085, - "c5": 5.6753871377218665, - "c6": 5.805546360087756, - "c7": 5.9465512722136555 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -381165,23 +381165,23 @@ "year": 1805, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -18.50053958789823, - "c2": -12.839637711955909, - "c3": 11.83778803325805, - "c4": 5.5882482619403895, - "c5": -18.217455539560838, - "c6": -2.4674864716067724, - "c7": 8.951178299617972 + "points": { + "c1": 6.363517666117289, + "c2": 4.326733078182521, + "c3": -0.8837578700803554, + "c4": 25.974808330494398, + "c5": -21.27727825261752, + "c6": 5.229185763041912, + "c7": 4.470270648253795 }, - "vertexSeeds": { - "c1": 5.53341696574533, - "c2": 5.453979386962544, - "c3": 5.378307139677379, - "c4": 5.363811101069142, - "c5": 5.431776196072525, - "c6": 5.3470812722610335, - "c7": 5.352368699190773 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986128, + "c3": 6.888580674988437, + "c4": 5.510864539990746, + "c5": 4.133148404993055, + "c6": 2.755432269995382, + "c7": 1.377716134997691 }, "rgb": [238, 201, 159] }, @@ -381192,23 +381192,23 @@ "year": 1806, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -20.42383422369503, - "c2": 16.01102544355144, - "c3": 14.78013096273299, - "c4": -24.207447175045658, - "c5": -9.88054070643729, - "c6": -30.927707143497237, - "c7": -25.513609677154008 + "points": { + "c1": -17.462324720690535, + "c2": 5.550613323886473, + "c3": 11.112442099732249, + "c4": -28.920822077306337, + "c5": 6.673803796301513, + "c6": -26.093827860626494, + "c7": -15.648770704385537 }, - "vertexSeeds": { - "c1": 3.9572912608731996, - "c2": 3.510773085197189, - "c3": 3.5503770130110186, - "c4": 3.5691366651706247, - "c5": 3.7140694185504852, - "c6": 3.8989782433179583, - "c7": 3.923031205905252 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446605, + "c3": 4.854368932038834, + "c4": 3.88349514563107, + "c5": 2.9126213592232992, + "c6": 1.941747572815535, + "c7": 0.9708737864077642 }, "rgb": [86, 146, 138] }, @@ -381219,23 +381219,23 @@ "year": 1805, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -8.803573066606889, - "c2": 12.56204618171224, - "c3": 18.935789849970575, - "c4": -18.359735684892705, - "c5": 0.34008282183269145, - "c6": 17.918931084500635, - "c7": -5.057334085566829 + "points": { + "c1": -21.39207073021596, + "c2": -2.695446803282305, + "c3": -0.25171722621736237, + "c4": 14.477526100040151, + "c5": 1.3945557064184015, + "c6": -20.836691640104352, + "c7": -15.874710646138098 }, - "vertexSeeds": { - "c1": 3.429390624132103, - "c2": 3.447825620395991, - "c3": 3.2189899919528817, - "c4": 3.3861834844010374, - "c5": 3.5464752455826325, - "c6": 3.3255784315715187, - "c7": 3.206229631071205 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441054, + "c3": 4.276467868700879, + "c4": 3.4211742949607022, + "c5": 2.565880721220527, + "c6": 1.7105871474803511, + "c7": 0.8552935737401756 }, "rgb": [77, 76, 132] }, @@ -381246,23 +381246,23 @@ "year": 1806, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -1.6359619634738038, - "c2": 5.675063426698458, - "c3": -0.22790334203101992, - "c4": 1.091587149884873, - "c5": -18.719946199950634, - "c6": 28.21211829494367, - "c7": -3.488220760486186 + "points": { + "c1": 7.256586213782583, + "c2": 10.554538984709723, + "c3": 26.759512604338262, + "c4": 26.61012881742341, + "c5": 8.993710647230841, + "c6": -24.256491834327704, + "c7": -10.935701472678385 }, - "vertexSeeds": { - "c1": 2.0592458126559396, - "c2": 2.002153981388497, - "c3": 1.9417455741948804, - "c4": 2.0341947544532055, - "c5": 2.0522627537250826, - "c6": 1.9953265648852754, - "c7": 2.0507232070732933 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.023578363384186, + "c3": 2.519648636153491, + "c4": 2.0157189089227905, + "c5": 1.5117891816920959, + "c6": 1.0078594544613952, + "c7": 0.5039297272307005 }, "rgb": [238, 201, 159] }, @@ -381273,23 +381273,23 @@ "year": 1806, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -11.273078477492867, - "c2": -28.094204680451206, - "c3": 14.568728542417816, - "c4": -15.433175679119095, - "c5": 15.216399980434836, - "c6": -22.62368267928547, - "c7": -3.7285886159859167 + "points": { + "c1": -7.798719413544369, + "c2": -4.792335004311699, + "c3": 8.015835580604929, + "c4": -17.495201795745537, + "c5": 23.23641270287407, + "c6": -14.844033801101855, + "c7": -15.7707899270943 }, - "vertexSeeds": { - "c1": 2.8577577501119293, - "c2": 2.5806235829399107, - "c3": 2.5735026775284666, - "c4": 2.5094998491239315, - "c5": 2.6710895146970723, - "c6": 2.8002375274131612, - "c7": 2.5359045352566434 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.7739251040221893, + "c5": 2.0804438280166453, + "c6": 1.3869625520110946, + "c7": 0.6934812760055439 }, "rgb": [222, 0, 59] }, @@ -381300,23 +381300,23 @@ "year": 1806, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 12.018922380480547, - "c2": -20.14963949838426, - "c3": 31.575299529378867, - "c4": -29.66066059243504, - "c5": -14.833880620786694, - "c6": 27.902086833279455, - "c7": 2.8176445085470334 + "points": { + "c1": 4.515819074496278, + "c2": -33.85595355741608, + "c3": 11.682825762760515, + "c4": 30.961469555557315, + "c5": -11.982070571973715, + "c6": 7.684455510359328, + "c7": -24.002987368444614 }, - "vertexSeeds": { - "c1": 1.6730179903400795, - "c2": 1.715161693022546, - "c3": 1.7939744969648834, - "c4": 1.8541672527640274, - "c5": 1.632947668061509, - "c6": 1.7209494421592941, - "c7": 2.1105559051925695 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.542764678687008, + "c4": 2.034211742949608, + "c5": 1.5256588072122061, + "c6": 1.017105871474804, + "c7": 0.508552935737402 }, "rgb": [58, 15, 49] }, @@ -381327,23 +381327,23 @@ "year": 1806, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 28.126226765037686, - "c2": -9.177443068937897, - "c3": -8.100806293219488, - "c4": 15.653936553385357, - "c5": 32.32595063288298, - "c6": -33.594511391680854, - "c7": 17.615782720075536 + "points": { + "c1": 34.2459507511991, + "c2": 18.58452843059618, + "c3": 40.31920499551619, + "c4": 23.274912784996616, + "c5": 1.0784293537279055, + "c6": 32.33192724964694, + "c7": 38.98870853469043 }, - "vertexSeeds": { - "c1": 2.1381836043102025, - "c2": 2.0806597115602177, - "c3": 2.0589824200172697, - "c4": 2.166134707630973, - "c5": 2.2297154406249504, - "c6": 2.055608591740664, - "c7": 2.0527190812622846 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.2454923717059656, + "c3": 2.7045769764216363, + "c4": 2.1636615811373106, + "c5": 1.6227461858529808, + "c6": 1.0818307905686553, + "c7": 0.5409153952843295 }, "rgb": [77, 76, 132] }, @@ -381354,23 +381354,23 @@ "year": 1806, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 23.931674280793125, - "c2": -23.575647886922386, - "c3": -11.747478009315163, - "c4": -11.493707571487882, - "c5": 1.0068954422278225, - "c6": 2.783396881285803, - "c7": 28.88131118912579 + "points": { + "c1": -32.49462464807499, + "c2": 17.302711295887896, + "c3": -21.337131981294256, + "c4": -7.4397901346749755, + "c5": -28.852716053602947, + "c6": 17.29720171288465, + "c7": 29.47005869944465 }, - "vertexSeeds": { - "c1": 1.839667699540046, - "c2": 1.6976045880442803, - "c3": 1.7562226080636738, - "c4": 1.776147783932269, - "c5": 1.8033676567177317, - "c6": 1.7191928174844688, - "c7": 1.8280505820446993 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.6907073509015254, + "c3": 2.2422561257512705, + "c4": 1.7938049006010157, + "c5": 1.3453536754507647, + "c6": 0.8969024503005096, + "c7": 0.4484512251502548 }, "rgb": [222, 0, 59] }, @@ -381381,23 +381381,23 @@ "year": 1806, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 18.56882967033298, - "c2": 8.5625158381862, - "c3": -24.657046983770982, - "c4": 14.374465930871786, - "c5": 6.009869104463334, - "c6": 25.404839112047057, - "c7": 0.25610132742082925 + "points": { + "c1": 16.961707353975612, + "c2": 6.496384918501263, + "c3": -6.534144419482331, + "c4": -30.495180674900347, + "c5": -22.717173108179544, + "c6": -32.35424179751954, + "c7": 3.0664395642871654 }, - "vertexSeeds": { - "c1": 2.745113587181904, - "c2": 2.874809876869751, - "c3": 2.550987757572151, - "c4": 2.573480282924124, - "c5": 2.7395860704045276, - "c6": 2.494322605242303, - "c7": 2.840842731491661 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494223, + "c4": 2.755432269995376, + "c5": 2.066574202496536, + "c6": 1.3777161349976896, + "c7": 0.6888580674988434 }, "rgb": [238, 201, 159] }, @@ -381408,23 +381408,23 @@ "year": 1805, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 13.204569888502764, - "c2": 23.55000066291775, - "c3": -6.124352242283667, - "c4": -24.745411946831517, - "c5": 7.7417123300800945, - "c6": -21.039837986079814, - "c7": 9.656985128854135 + "points": { + "c1": -10.125749310741579, + "c2": 17.356190172935978, + "c3": 20.39149609614657, + "c4": 24.430776462130016, + "c5": 6.0930808660678615, + "c6": 21.998230638038077, + "c7": 15.718560398803863 }, - "vertexSeeds": { - "c1": 7.630354944147548, - "c2": 7.3528542700710835, - "c3": 7.494149531206581, - "c4": 7.636887898630383, - "c5": 7.358983610331361, - "c6": 7.858444943411177, - "c7": 7.568870019963191 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571438, + "c3": 9.523809523809522, + "c4": 7.619047619047625, + "c5": 5.714285714285709, + "c6": 3.8095238095238124, + "c7": 1.9047619047618969 }, "rgb": [86, 146, 138] }, @@ -381435,23 +381435,23 @@ "year": 1806, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -38.98507610529631, - "c2": 29.86689855092696, - "c3": 26.446718791138878, - "c4": -2.8181771690012383, - "c5": 3.2850102811162287, - "c6": 29.64933290423336, - "c7": -24.501356359488653 + "points": { + "c1": 10.318812776996744, + "c2": 7.5883184509654384, + "c3": -24.73338578642293, + "c4": 39.249248901345624, + "c5": 7.055524478775915, + "c6": 39.325295507588564, + "c7": 2.280192585672232 }, - "vertexSeeds": { - "c1": 3.1839920910254067, - "c2": 3.285288477135493, - "c3": 3.349525527754281, - "c4": 3.1532126059493417, - "c5": 3.251102106825362, - "c6": 3.2108508307494272, - "c7": 3.2697276357453022 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515949, + "c3": 3.7447988904299554, + "c4": 2.995839112343974, + "c5": 2.24687933425798, + "c6": 1.497919556171987, + "c7": 0.7489597780859935 }, "rgb": [238, 201, 159] }, @@ -381462,23 +381462,23 @@ "year": 1805, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -19.00289058133375, - "c2": -4.56987043688537, - "c3": -25.15145143140615, - "c4": -20.80687541907694, - "c5": -10.671106357232505, - "c6": 1.098403936206239, - "c7": 4.176616846337776 + "points": { + "c1": -4.3461869840869305, + "c2": 12.214780559233233, + "c3": -25.893030320294184, + "c4": -21.782537197707068, + "c5": -4.527147926892418, + "c6": -10.10649882728126, + "c7": -20.55644068205889 }, - "vertexSeeds": { - "c1": 6.092340987943891, - "c2": 3.1118505069508346, - "c3": 4.340074067839301, - "c4": 1.8850198222965975, - "c5": 2.8573356849122824, - "c6": 2.2787049585522587, - "c7": 4.672035110862181 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675452, + "c3": 7.8594544613962105, + "c4": 6.2875635691169665, + "c5": 4.715672676837726, + "c6": 3.1437817845584846, + "c7": 1.5718908922792423 }, "rgb": [58, 15, 49] }, @@ -381489,23 +381489,23 @@ "year": 1806, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -17.23562876805173, - "c2": -36.43895900899491, - "c3": 19.618786555362625, - "c4": -31.209757043893447, - "c5": 19.67029149494286, - "c6": 23.641042809212323, - "c7": -7.711838795018053 + "points": { + "c1": -4.7850227314288745, + "c2": -34.30590698527282, + "c3": -20.95091354119796, + "c4": -36.02118337572559, + "c5": 37.43767612633776, + "c6": 2.6982463647094903, + "c7": -8.77969386789556 }, - "vertexSeeds": { - "c1": 1.8562601701365313, - "c2": 1.9216841200889887, - "c3": 1.871731425641889, - "c4": 1.766154335418007, - "c5": 1.8030823628920423, - "c6": 1.7031630607846342, - "c7": 1.7086844593036488 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.801664355062412, + "c3": 2.334720295885345, + "c4": 1.8677762367082746, + "c5": 1.4008321775312076, + "c6": 0.9338881183541373, + "c7": 0.46694405917707005 }, "rgb": [58, 15, 49] }, @@ -381516,23 +381516,23 @@ "year": 1806, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 29.063638401853854, - "c2": -5.1148715441848545, - "c3": -15.747095883617185, - "c4": -1.0179368230617065, - "c5": -7.594004251108888, - "c6": 26.166361065635922, - "c7": 29.502287086989565 + "points": { + "c1": 30.897652180059, + "c2": 16.383737136495174, + "c3": -2.3139404824722973, + "c4": -28.16276357588219, + "c5": 20.10308289460904, + "c6": -2.580220173747989, + "c7": -27.1948211406068 }, - "vertexSeeds": { - "c1": 4.070352731870478, - "c2": 4.13132916518237, - "c3": 4.133836990672403, - "c4": 4.178150654869664, - "c5": 3.9738201654582417, - "c6": 4.062296746883781, - "c7": 4.139936958132569 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808595, + "c3": 5.0624133148405015, + "c4": 4.049930651872396, + "c5": 3.037447988904303, + "c6": 2.024965325936198, + "c7": 1.0124826629680936 }, "rgb": [77, 76, 132] }, @@ -381543,23 +381543,23 @@ "year": 1805, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -20.11362650408442, - "c2": -6.309714217264137, - "c3": -14.574181494150615, - "c4": 3.5636342729516635, - "c5": 9.225943277029653, - "c6": -6.257999079984398, - "c7": -6.439298490161924 + "points": { + "c1": 5.709288603789705, + "c2": -18.371240656626227, + "c3": -21.743115374836893, + "c4": -26.146718382356863, + "c5": 17.327538008429176, + "c6": -2.185179754328189, + "c7": -6.98317510639421 }, - "vertexSeeds": { - "c1": 6.745575559883762, - "c2": 6.8744460268662415, - "c3": 6.8503088268875185, - "c4": 6.92866087793236, - "c5": 7.056715130886453, - "c6": 6.929383713862608, - "c7": 6.449485349386256 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801656, + "c3": 8.506703652334723, + "c4": 6.805362921867771, + "c5": 5.104022191400837, + "c6": 3.4026814609338856, + "c7": 1.701340730466952 }, "rgb": [86, 146, 138] }, @@ -381570,23 +381570,23 @@ "year": 1806, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 12.44050990384126, - "c2": 27.487359951681682, - "c3": 7.941050487726578, - "c4": -1.2865829896168464, - "c5": -10.943342155865501, - "c6": -8.7690813284933, - "c7": 26.13385929568301 + "points": { + "c1": 12.296749433966632, + "c2": 4.9899212907418615, + "c3": -14.645176391189938, + "c4": 18.965461912125278, + "c5": 19.590174182975687, + "c6": -6.903006141066314, + "c7": 20.55581189735267 }, - "vertexSeeds": { - "c1": 5.945804306118285, - "c2": 5.420338426588001, - "c3": 5.482658261135523, - "c4": 5.691876465851989, - "c5": 5.579403837060758, - "c6": 5.574745755975881, - "c7": 5.655583952760743 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -381597,23 +381597,23 @@ "year": 1805, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -15.007617218270116, - "c2": 21.314170162242743, - "c3": -17.171617389429215, - "c4": -18.806831114940486, - "c5": -6.859784436544128, - "c6": 16.996133452480525, - "c7": -26.41480755610722 + "points": { + "c1": 9.10874907364543, + "c2": -25.042194252629802, + "c3": 3.744566055305473, + "c4": 24.708544493268892, + "c5": -23.13923010251986, + "c6": -8.7257010968703, + "c7": 11.462029625944272 }, - "vertexSeeds": { - "c1": 7.323197747231003, - "c2": 7.154080375918555, - "c3": 6.817446803749797, - "c4": 6.9955676215722145, - "c5": 6.887638760143235, - "c6": 7.148599479078714, - "c7": 7.056004383136328 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203886, + "c3": 8.737864077669908, + "c4": 6.99029126213593, + "c5": 5.242718446601934, + "c6": 3.495145631067956, + "c7": 1.747572815533978 }, "rgb": [58, 15, 49] }, @@ -381624,23 +381624,23 @@ "year": 1806, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -26.839269820400034, - "c2": 14.41510757818196, - "c3": -36.55698882733898, - "c4": -21.24503043161903, - "c5": 11.792845117802507, - "c6": 11.891701967829654, - "c7": 16.887221452095183 + "points": { + "c1": 34.64012035624738, + "c2": -29.629927078674058, + "c3": -32.96460810464262, + "c4": 32.78229608497969, + "c5": -5.623281064941416, + "c6": 5.777348246324884, + "c7": 16.003536258753158 }, - "vertexSeeds": { - "c1": 1.8300090487321992, - "c2": 1.820101945249743, - "c3": 1.798142427682623, - "c4": 1.8433287828301466, - "c5": 1.738947173004361, - "c6": 1.7651094635965023, - "c7": 1.886846340441064 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022193, + "c3": 2.3116042533518253, + "c4": 1.8492834026814617, + "c5": 1.3869625520110944, + "c6": 0.9246417013407309, + "c7": 0.46232085067036743 }, "rgb": [238, 201, 159] }, @@ -381651,23 +381651,23 @@ "year": 1806, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 25.98843301815684, - "c2": -10.274553510879205, - "c3": 19.43319392078726, - "c4": 20.621076474390165, - "c5": 22.62183890626833, - "c6": -25.9242832487031, - "c7": -21.32708250773148 + "points": { + "c1": 16.923536731464097, + "c2": -27.50965777846891, + "c3": 32.21822912001128, + "c4": -31.409124629227435, + "c5": -26.248942597307867, + "c6": -32.62698433203484, + "c7": 5.688089296660138 }, - "vertexSeeds": { - "c1": 2.754238404334159, - "c2": 2.8902396203267227, - "c3": 2.7479043674042116, - "c4": 2.8234815566391247, - "c5": 3.069508384814884, - "c6": 3.03519305296116, - "c7": 2.843778987608867 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435506, + "c3": 3.69856680536292, + "c4": 2.9588534442903347, + "c5": 2.2191400832177566, + "c6": 1.4794267221451711, + "c7": 0.7397133610725856 }, "rgb": [238, 201, 159] }, @@ -381678,23 +381678,23 @@ "year": 1806, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 1.4971200087166991, - "c2": -0.9776361054613858, - "c3": -10.198921031619744, - "c4": 2.3531913095586496, - "c5": 14.961124259689264, - "c6": -8.698935049816445, - "c7": 9.173115890740398 + "points": { + "c1": -3.3970662446815396, + "c2": 12.351882669943734, + "c3": -8.270784976324276, + "c4": 22.464716040207172, + "c5": -15.824426117975078, + "c6": 9.425080491228968, + "c7": 11.911900994028429 }, - "vertexSeeds": { - "c1": 7.019514213853959, - "c2": 6.939849934464405, - "c3": 6.846281399160049, - "c4": 7.065888962938651, - "c5": 7.3635413577232, - "c6": 7.029339142696823, - "c7": 6.87438571347262 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [77, 76, 132] }, @@ -381705,23 +381705,23 @@ "year": 1806, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 27.29710228488652, - "c2": -11.57182512951697, - "c3": 0.6799090748130112, - "c4": -20.004126156468992, - "c5": 3.97712609726349, - "c6": -23.141609703053863, - "c7": 21.079593246547063 + "points": { + "c1": -17.1349550459107, + "c2": 29.96760391866008, + "c3": -9.391508184555821, + "c4": -14.487848000279843, + "c5": 18.590780039932497, + "c6": 3.6689153384508018, + "c7": -4.110483593816053 }, - "vertexSeeds": { - "c1": 3.9615824714698498, - "c2": 3.847833555126466, - "c3": 3.7731047681612746, - "c4": 3.766205232668848, - "c5": 3.761604351442554, - "c6": 3.8990147218506914, - "c7": 3.722284178330725 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285718, + "c3": 4.761904761904757, + "c4": 3.809523809523808, + "c5": 2.857142857142859, + "c6": 1.904761904761898, + "c7": 0.952380952380949 }, "rgb": [238, 201, 159] }, @@ -381732,23 +381732,23 @@ "year": 1806, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -19.675344134264087, - "c2": 11.301342430059279, - "c3": -6.022373458225552, - "c4": 13.710837309314897, - "c5": -28.225496436322747, - "c6": -15.996493811261592, - "c7": 23.152126331032022 + "points": { + "c1": 22.364066766827705, + "c2": -15.835798863051057, + "c3": 29.05087283100802, + "c4": 8.44345063371459, + "c5": -24.64998184592004, + "c6": -29.97612823350785, + "c7": -6.84388902454695 }, - "vertexSeeds": { - "c1": 3.886825456567069, - "c2": 4.502836661557866, - "c3": 4.7531889275434756, - "c4": 4.211044488086484, - "c5": 4.007457084047117, - "c6": 4.485754522525836, - "c7": 4.885794214629373 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.4063800277392495, + "c3": 6.171983356449376, + "c4": 4.937586685159502, + "c5": 3.7031900138696248, + "c6": 2.468793342579751, + "c7": 1.2343966712898773 }, "rgb": [77, 76, 132] }, @@ -381759,23 +381759,23 @@ "year": 1806, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 15.618927795230604, - "c2": 25.256275659863228, - "c3": -25.435171656032452, - "c4": 27.270404965967565, - "c5": -9.142476575068216, - "c6": -21.128357433522076, - "c7": -29.196438748711984 + "points": { + "c1": -12.748500204745014, + "c2": 10.991451403690824, + "c3": 24.75441598685569, + "c4": -26.195479620828873, + "c5": 30.408084650972846, + "c6": 28.606761275594813, + "c7": -20.65284752657073 }, - "vertexSeeds": { - "c1": 5.507448807183236, - "c2": 5.481794914411055, - "c3": 5.745704353295823, - "c4": 5.896341665290068, - "c5": 5.704036635232357, - "c6": 5.882381210536246, - "c7": 5.926124631196735 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -381786,23 +381786,23 @@ "year": 1806, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 4.362851627656664, - "c2": 4.137557122986582, - "c3": -9.421009144731276, - "c4": 21.259854098568123, - "c5": -20.591467020602728, - "c6": 24.800544419966005, - "c7": 14.115589574971889 + "points": { + "c1": 1.1485471539815677, + "c2": -12.397932287781188, + "c3": -2.2230814869475424, + "c4": -24.316175956356602, + "c5": -12.738344354931243, + "c6": -4.747055777308098, + "c7": 23.549908992200066 }, - "vertexSeeds": { - "c1": 5.595395988405252, - "c2": 5.781915348793255, - "c3": 5.7073554438979786, - "c4": 5.622192304387641, - "c5": 5.799767871058809, - "c6": 5.76259676486419, - "c7": 5.936074966276183 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -381813,23 +381813,23 @@ "year": 1805, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -13.098391857925014, - "c2": -19.038557550069886, - "c3": 9.376171263368011, - "c4": -11.94586549649073, - "c5": -4.246749933478014, - "c6": 5.340677786219924, - "c7": 8.03416290357514 + "points": { + "c1": -15.029805306951182, + "c2": 10.846331795973068, + "c3": -0.49715029091686347, + "c4": 26.74554323753448, + "c5": 12.757766793570884, + "c6": -7.867038728390092, + "c7": -26.7165386778469 }, - "vertexSeeds": { - "c1": 1.5855333445720652, - "c2": 1.4875856860945431, - "c3": 1.5876337030797163, - "c4": 1.4109256750641233, - "c5": 1.661147492598563, - "c6": 1.4762277696242745, - "c7": 1.7174476190653831 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166435, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033278 }, "rgb": [77, 76, 132] }, @@ -381840,23 +381840,23 @@ "year": 1805, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -7.25691401611282, - "c2": -7.832169176396464, - "c3": 20.71291542976283, - "c4": -5.7850646553414045, - "c5": 3.160952799156796, - "c6": 22.9694832112708, - "c7": -2.0792206297420854 + "points": { + "c1": 12.473686730160516, + "c2": -22.29951322481587, + "c3": -8.199772119987859, + "c4": -14.512273130119022, + "c5": 17.207365651420275, + "c6": -2.1385858771459034, + "c7": 8.412699754913255 }, - "vertexSeeds": { - "c1": 5.691694628472868, - "c2": 5.91107456050789, - "c3": 5.689053544856154, - "c4": 5.607549301912669, - "c5": 5.987616468785817, - "c6": 5.509059106166571, - "c7": 5.479077217928546 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -381867,23 +381867,23 @@ "year": 1806, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -32.011524138557164, - "c2": 29.201396972080957, - "c3": -29.190313018405575, - "c4": -25.524416970861452, - "c5": 20.282244297986118, - "c6": 9.936277681630912, - "c7": -28.709494263566327 + "points": { + "c1": 25.286577498995413, + "c2": -10.288381658509799, + "c3": -17.81303276315275, + "c4": 10.916493826629832, + "c5": 23.85677291821999, + "c6": 26.09384074333679, + "c7": -31.849885793079466 }, - "vertexSeeds": { - "c1": 2.645636088738653, - "c2": 2.480679295080021, - "c3": 2.5257425684945636, - "c4": 2.3894604061713163, - "c5": 2.2778620780712813, - "c6": 2.5390719971488975, - "c7": 2.5910091195372393 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506233, + "c3": 3.1900138696255187, + "c4": 2.5520110957004194, + "c5": 1.9140083217753117, + "c6": 1.2760055478502097, + "c7": 0.6380027739251048 }, "rgb": [86, 146, 138] }, @@ -381894,23 +381894,23 @@ "year": 1806, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 25.22883054903639, - "c2": 29.77051182050999, - "c3": -15.741032541548632, - "c4": 5.679021295746093, - "c5": -27.015594493389774, - "c6": 21.44436920477354, - "c7": 18.36782598435475 + "points": { + "c1": 14.814920847448612, + "c2": -25.132226103380493, + "c3": 1.6931130387910258, + "c4": -12.514500802140823, + "c5": -20.34619891837832, + "c6": -24.411343417135207, + "c7": 22.79713415771083 }, - "vertexSeeds": { - "c1": 2.454830323839033, - "c2": 2.433440917734066, - "c3": 2.4348468595090083, - "c4": 2.481397065470499, - "c5": 2.444339810365048, - "c6": 2.4735409551441845, - "c7": 2.44067759429427 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188644, + "c3": 2.98196948682385, + "c4": 2.385575589459076, + "c5": 1.7891816920943022, + "c6": 1.192787794729548, + "c7": 0.596393897364774 }, "rgb": [58, 15, 49] }, @@ -381921,23 +381921,23 @@ "year": 1806, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -27.732671522214456, - "c2": 24.062089239197896, - "c3": -8.867936593083584, - "c4": -17.92574063148843, - "c5": 10.225536737214206, - "c6": -8.635759919463485, - "c7": -30.97158678619404 + "points": { + "c1": -6.379232959620989, + "c2": -10.86482771942931, + "c3": -26.08514388467241, + "c4": -7.093131407175033, + "c5": -16.640143577332704, + "c6": 17.407034097324555, + "c7": 23.28034993901271 }, - "vertexSeeds": { - "c1": 5.021555620481778, - "c2": 4.879541110586446, - "c3": 5.076519517325846, - "c4": 5.028305363635031, - "c5": 5.045984670499697, - "c6": 5.1384561060670855, - "c7": 4.773103190688095 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859922, + "c3": 6.241331484049922, + "c4": 4.993065187239941, + "c5": 3.744798890429961, + "c6": 2.4965325936199707, + "c7": 1.2482662968099805 }, "rgb": [222, 0, 59] }, @@ -381948,23 +381948,23 @@ "year": 1806, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 22.481389686319353, - "c2": -22.52295344974401, - "c3": -2.826790795358125, - "c4": -24.064108269585454, - "c5": 2.4854625330397617, - "c6": -7.241473673023094, - "c7": 8.951786772344441 + "points": { + "c1": 0.7462960049406071, + "c2": 2.666738111244179, + "c3": 11.130899333683573, + "c4": 8.76950731091518, + "c5": -26.266244773512298, + "c6": -14.940947273226003, + "c7": -24.048250626656873 }, - "vertexSeeds": { - "c1": 3.178818282719601, - "c2": 3.3732681058458027, - "c3": 3.280093610559845, - "c4": 3.3312518197588457, - "c5": 3.282103172626915, - "c6": 3.4289202413360607, - "c7": 3.346838816108159 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [238, 201, 159] }, @@ -381975,23 +381975,23 @@ "year": 1806, "resistanceReported": false, "duration": 43632000, - "curveSeeds": { - "c1": -21.403912725347524, - "c2": 30.827479990688637, - "c3": 35.157676088416274, - "c4": 10.359754156043742, - "c5": 18.79163247373564, - "c6": -12.719351076854885, - "c7": -27.53149661353876 + "points": { + "c1": -46.68470008699888, + "c2": -22.957528219008402, + "c3": 21.375227622766566, + "c4": 13.734258745217382, + "c5": 33.135975308394315, + "c6": -9.940901228326027, + "c7": -44.5800157277031 }, - "vertexSeeds": { - "c1": 7.423457145116189, - "c2": 8.00953290633725, - "c3": 7.505291582832927, - "c4": 7.704592914226219, - "c5": 7.525188345086397, - "c6": 7.874533319934918, - "c7": 8.082684181595598 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852984, + "c3": 9.685621821544157, + "c4": 7.748497457235329, + "c5": 5.811373092926501, + "c6": 3.874248728617655, + "c7": 1.9371243643088274 }, "rgb": [58, 15, 49] }, @@ -382002,23 +382002,23 @@ "year": 1806, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 13.2673637929692, - "c2": 23.561168227622247, - "c3": 32.051619434833135, - "c4": 17.952722832230485, - "c5": 36.17201511914373, - "c6": -34.43672599429341, - "c7": 35.92879545140219 + "points": { + "c1": -0.22428529319350332, + "c2": 36.60599723482628, + "c3": 27.121423268836573, + "c4": -19.87650208054443, + "c5": 10.898720563781957, + "c6": 20.88124507207482, + "c7": 30.802171463988778 }, - "vertexSeeds": { - "c1": 2.3712205357508425, - "c2": 2.4146230656218184, - "c3": 2.4650113443280173, - "c4": 2.436329166889288, - "c5": 2.3877996561432115, - "c6": 2.4195833403837996, - "c7": 2.3753853069108843 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188628, + "c3": 2.981969486823858, + "c4": 2.385575589459084, + "c5": 1.789181692094314, + "c6": 1.1927877947295442, + "c7": 0.5963938973647743 }, "rgb": [77, 76, 132] }, @@ -382029,23 +382029,23 @@ "year": 1806, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -26.394762581727374, - "c2": 16.984616323075045, - "c3": -30.469539345263367, - "c4": -17.489614044388127, - "c5": 30.244996388153005, - "c6": -15.98219503144238, - "c7": -4.250170853460535 + "points": { + "c1": 10.799669848095107, + "c2": 23.505587584311648, + "c3": -5.602825961114629, + "c4": 14.936129176462913, + "c5": 29.978723024291952, + "c6": -17.734706305077808, + "c7": 10.620392574859046 }, - "vertexSeeds": { - "c1": 5.132150726323941, - "c2": 5.25100510857123, - "c3": 4.900585779575075, - "c4": 4.969825619265131, - "c5": 4.974040445476431, - "c6": 4.961181167392785, - "c7": 4.841106445932764 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -382056,23 +382056,23 @@ "year": 1806, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -4.5440571273414605, - "c2": 19.5212505501692, - "c3": -29.84637952031364, - "c4": -0.7876466319315476, - "c5": 11.705591568640166, - "c6": -13.867436329816766, - "c7": -19.497806903103076 + "points": { + "c1": -28.22880012405968, + "c2": -10.40684070061534, + "c3": 9.615955630973254, + "c4": -7.971467952204446, + "c5": -16.158119441399272, + "c6": -17.888545473092137, + "c7": 17.146365074591344 }, - "vertexSeeds": { - "c1": 5.413796648292045, - "c2": 5.41458661293519, - "c3": 5.457685815659834, - "c4": 5.826065359351404, - "c5": 5.641461733572661, - "c6": 5.720196275662889, - "c7": 5.964231585277469 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -382083,23 +382083,23 @@ "year": 1806, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -0.34327324372610235, - "c2": 21.35652000804378, - "c3": 1.2915036934479467, - "c4": -25.428279273722953, - "c5": -10.709208553574168, - "c6": 20.30430042706395, - "c7": 29.335204611601718 + "points": { + "c1": 12.359767725662351, + "c2": -18.863351803441873, + "c3": -5.195410122998524, + "c4": -31.94839902771726, + "c5": 19.910139023176825, + "c6": -30.312456347088748, + "c7": 18.490854938388438 }, - "vertexSeeds": { - "c1": 2.626695460681603, - "c2": 2.747714782373631, - "c3": 2.553936397083855, - "c4": 2.6333466337998, - "c5": 2.8630913136884053, - "c6": 2.7950118750796062, - "c7": 2.860554335277463 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282934, + "c4": 2.8294036061026344, + "c5": 2.122052704576975, + "c6": 1.4147018030513157, + "c7": 0.7073509015256565 }, "rgb": [222, 0, 59] }, @@ -382110,23 +382110,23 @@ "year": 1805, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 15.147069293089935, - "c2": -21.468701575163557, - "c3": -11.024526937381173, - "c4": 15.909669873697219, - "c5": -8.654489122842179, - "c6": 9.46614381884855, - "c7": 10.814531386726635 + "points": { + "c1": -11.66232158609904, + "c2": -0.9843801608276301, + "c3": -0.7773390941668268, + "c4": 3.0001228779661098, + "c5": -23.342659249741644, + "c6": 10.52169575859142, + "c7": -7.450969485955529 }, - "vertexSeeds": { - "c1": 2.0591451293897975, - "c2": 2.198168950500497, - "c3": 2.299260784557179, - "c4": 2.199898844148838, - "c5": 2.3321564110386106, - "c6": 2.1692033485716125, - "c7": 2.2038472887921174 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070725, + "c3": 2.8201571890892296, + "c4": 2.256125751271383, + "c5": 1.6920943134535362, + "c6": 1.1280628756356899, + "c7": 0.5640314378178465 }, "rgb": [86, 146, 138] }, @@ -382137,23 +382137,23 @@ "year": 1806, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -11.436470679296601, - "c2": 8.391702549627887, - "c3": 4.339525810689501, - "c4": -21.700946289885287, - "c5": 3.2563616725702857, - "c6": -20.575703419170665, - "c7": -4.291444836608793 + "points": { + "c1": 1.5325362701698921, + "c2": 22.16521383040346, + "c3": -24.529749740578932, + "c4": 27.11422061755607, + "c5": -25.380623637874507, + "c6": -17.851770974586778, + "c7": -15.892183309731884 }, - "vertexSeeds": { - "c1": 4.853111748901727, - "c2": 4.590448434724506, - "c3": 4.9266581810350925, - "c4": 4.712972427577661, - "c5": 4.6575161667049505, - "c6": 4.59542139693261, - "c7": 4.803711812750789 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296807, + "c3": 5.917706888580678, + "c4": 4.734165510864541, + "c5": 3.5506241331484034, + "c6": 2.367082755432266, + "c7": 1.1835413777161377 }, "rgb": [238, 201, 159] }, @@ -382164,23 +382164,23 @@ "year": 1806, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -0.5423366618564813, - "c2": -12.367502715646594, - "c3": 6.277082394051639, - "c4": -3.260882269278163, - "c5": 18.07162614819631, - "c6": -9.30183111259582, - "c7": 14.476692013240829 + "points": { + "c1": -14.901663246714037, + "c2": -13.288552810529005, + "c3": -15.841206736520519, + "c4": -20.777584710936377, + "c5": -31.461550820137276, + "c6": -20.31077548361763, + "c7": -18.625815887838876 }, - "vertexSeeds": { - "c1": 4.6803224756512956, - "c2": 4.713109171840494, - "c3": 4.793618648836971, - "c4": 4.8228192264321015, - "c5": 4.697565886617927, - "c6": 4.941002921268444, - "c7": 4.861170775835932 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779475, + "c3": 6.195099398982898, + "c4": 4.956079519186322, + "c5": 3.7170596393897375, + "c6": 2.478039759593152, + "c7": 1.239019879796576 }, "rgb": [222, 0, 59] }, @@ -382191,23 +382191,23 @@ "year": 1805, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 3.245689514792428, - "c2": -19.710979151729067, - "c3": -1.0879593734655941, - "c4": 6.66543763921403, - "c5": 20.209138858372018, - "c6": -19.65786262204591, - "c7": -10.456375229769552 + "points": { + "c1": -16.79859786685853, + "c2": -5.412987767631126, + "c3": 11.809471980042023, + "c4": -4.072218121294583, + "c5": -0.7165520847942588, + "c6": 13.143061935862956, + "c7": 22.438785505225002 }, - "vertexSeeds": { - "c1": 5.980739329156932, - "c2": 5.593823406736125, - "c3": 5.751700707543897, - "c4": 5.451626433786341, - "c5": 5.581982138513283, - "c6": 5.921099529824784, - "c7": 5.6076631695960355 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -382218,23 +382218,23 @@ "year": 1806, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 27.47877130760456, - "c2": 6.617003283977134, - "c3": -14.82178302398481, - "c4": 24.653160911322324, - "c5": 2.7985068244177427, - "c6": -12.406800680760831, - "c7": 19.63604576190405 + "points": { + "c1": 2.0725657423575043, + "c2": -13.81858682625441, + "c3": -0.6504913967841972, + "c4": -11.63400838096939, + "c5": -8.18631139107864, + "c6": 0.2603970677349068, + "c7": 14.573769959087237 }, - "vertexSeeds": { - "c1": 3.2952136394630247, - "c2": 3.3971587210029646, - "c3": 3.3133169860379543, - "c4": 3.449438515861035, - "c5": 3.3070663085486784, - "c6": 3.27817045471505, - "c7": 3.4411012877829372 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320388, + "c3": 4.207119741100324, + "c4": 3.3656957928802584, + "c5": 2.524271844660194, + "c6": 1.6828478964401292, + "c7": 0.8414239482200646 }, "rgb": [86, 146, 138] }, @@ -382245,23 +382245,23 @@ "year": 1806, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 7.581705494158523, - "c2": -24.750685354648002, - "c3": 18.429306379824286, - "c4": -7.377408788184177, - "c5": -24.39857648271799, - "c6": 18.323917700116265, - "c7": 24.22677077609689 + "points": { + "c1": 27.93902770314647, + "c2": -20.344198262243026, + "c3": -11.791132290803638, + "c4": -9.005674727353298, + "c5": -5.9346134511399775, + "c6": 28.53866816826419, + "c7": -23.91184643134804 }, - "vertexSeeds": { - "c1": 2.4753078130137127, - "c2": 2.479868230555831, - "c3": 2.48080336309197, - "c4": 2.4741304438373426, - "c5": 2.4729150357813023, - "c6": 2.4804211490234525, - "c7": 2.480048033797523 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188644, + "c3": 2.9819694868238895, + "c4": 2.3855755894591355, + "c5": 1.7891816920942625, + "c6": 1.1927877947295085, + "c7": 0.5963938973647542 }, "rgb": [238, 201, 159] }, @@ -382272,23 +382272,23 @@ "year": 1806, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 17.527566618860092, - "c2": -2.246571451658987, - "c3": 20.248316446207383, - "c4": 13.989159955956254, - "c5": -13.080816154557937, - "c6": -28.307801246371387, - "c7": 27.55159828584837 + "points": { + "c1": 32.600838422754805, + "c2": 42.77563322333367, + "c3": 16.251540163016003, + "c4": 9.005982031908644, + "c5": 8.874816725877011, + "c6": -46.31229730234252, + "c7": -32.71128230345255 }, - "vertexSeeds": { - "c1": 1.1594789454948529, - "c2": 1.2592342675303274, - "c3": 1.1297924568322943, - "c4": 1.1350452950272951, - "c5": 1.1723849697002424, - "c6": 1.1572085159541976, - "c7": 1.2494284900933705 + "offsets": { + "c1": 2.1359223300970873, + "c2": 1.8307905686546468, + "c3": 1.5256588072122044, + "c4": 1.220527045769764, + "c5": 0.9153952843273234, + "c6": 0.6102635228848828, + "c7": 0.3051317614424405 }, "rgb": [77, 76, 132] }, @@ -382299,23 +382299,23 @@ "year": 1806, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -8.02681332486015, - "c2": -5.790376273380396, - "c3": -16.090808524466944, - "c4": 21.169351269883997, - "c5": 23.334526315700508, - "c6": 22.925501217025726, - "c7": -26.879690946913367 + "points": { + "c1": -6.96233975980352, + "c2": -11.681943459166053, + "c3": -2.940128427918321, + "c4": -2.567911608827071, + "c5": -28.074959089192976, + "c6": 30.444318800561284, + "c7": 29.69575043865303 }, - "vertexSeeds": { - "c1": 3.8517191361351375, - "c2": 3.8681162808832523, - "c3": 3.714999632445967, - "c4": 4.106558155939964, - "c5": 3.982728992556453, - "c6": 3.655804464777848, - "c7": 3.9716390619536694 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647713, + "c3": 4.969949144706428, + "c4": 3.975959315765144, + "c5": 2.9819694868238598, + "c6": 1.9879796578825686, + "c7": 0.9939898289412843 }, "rgb": [222, 0, 59] }, @@ -382326,23 +382326,23 @@ "year": 1806, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 19.199478866272024, - "c2": 1.8981690635722543, - "c3": 37.02546349013585, - "c4": -8.291744543554177, - "c5": -5.468732389948933, - "c6": -33.07163489519857, - "c7": -14.53845550761881 + "points": { + "c1": 13.37245411292291, + "c2": -6.163360693622479, + "c3": -24.778038855389344, + "c4": 29.742682460845757, + "c5": -39.10334106595587, + "c6": -25.71642452093493, + "c7": -32.55477162426946 }, - "vertexSeeds": { - "c1": 8.878972310946498, - "c2": 9.32343990179676, - "c3": 9.090329877175828, - "c4": 10.179499827197073, - "c5": 9.840509725090653, - "c6": 8.432118668464861, - "c7": 9.333315131688993 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.64632454923717, + "c3": 12.205270457697642, + "c4": 9.764216366158113, + "c5": 7.323162274618585, + "c6": 4.8821081830790565, + "c7": 2.4410540915395282 }, "rgb": [222, 0, 59] }, @@ -382353,23 +382353,23 @@ "year": 1806, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -29.411841250544757, - "c2": -34.280033520766864, - "c3": 45.47211578955552, - "c4": 7.207936205389579, - "c5": -42.44661958726368, - "c6": 3.8226617689498212, - "c7": 34.97489119136604 + "points": { + "c1": -3.784062369162598, + "c2": -15.91712256276439, + "c3": -10.266232901338952, + "c4": -15.14905433578329, + "c5": -36.02279430502469, + "c6": -41.96453638367471, + "c7": -29.17421176049244 }, - "vertexSeeds": { - "c1": 8.496153172992132, - "c2": 8.907986653772104, - "c3": 8.733263879417338, - "c4": 8.554628581204804, - "c5": 8.22211350060576, - "c6": 9.057438152746398, - "c7": 8.681458858272338 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789177, + "c3": 11.37309292649099, + "c4": 9.098474341192789, + "c5": 6.823855755894589, + "c6": 4.549237170596388, + "c7": 2.2746185852982004 }, "rgb": [238, 201, 159] }, @@ -382380,23 +382380,23 @@ "year": 1806, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -16.096226004801558, - "c2": 17.81012698022972, - "c3": -27.41862889282944, - "c4": 9.998096145188608, - "c5": 4.288087745061002, - "c6": -0.259791688429317, - "c7": 7.536966681841218 + "points": { + "c1": -13.448745764257435, + "c2": 28.03211343265384, + "c3": 13.54770603215805, + "c4": -16.689008036056872, + "c5": 29.763550099696747, + "c6": -14.414182728630351, + "c7": -7.676574881536801 }, - "vertexSeeds": { - "c1": 5.646441016418157, - "c2": 5.7869849022439865, - "c3": 5.575646461838182, - "c4": 5.702134619773679, - "c5": 5.79220409559186, - "c6": 5.757248901688429, - "c7": 5.529140721627719 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -382407,23 +382407,23 @@ "year": 1806, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 10.060592434572193, - "c2": 22.982159646174964, - "c3": -16.57578390829444, - "c4": -2.1086187662731604, - "c5": -19.28572996616098, - "c6": 3.1837261209168304, - "c7": 19.02567528148945 + "points": { + "c1": 16.15710151181402, + "c2": -1.6721588638410267, + "c3": -0.39742720058431047, + "c4": -16.065931705405113, + "c5": 10.92157976418595, + "c6": 9.52649417564988, + "c7": 2.513716571106137 }, - "vertexSeeds": { - "c1": 5.778935136575085, - "c2": 5.58994727821822, - "c3": 5.7046963377387465, - "c4": 5.4060239982353515, - "c5": 5.721142926798286, - "c6": 5.560245946410046, - "c7": 5.336232163150272 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026352, + "c3": 6.911696717521961, + "c4": 5.529357374017568, + "c5": 4.147018030513176, + "c6": 2.764678687008784, + "c7": 1.382339343504392 }, "rgb": [86, 146, 138] }, @@ -382434,23 +382434,23 @@ "year": 1806, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 9.245408262084588, - "c2": 0.04246839261499247, - "c3": 24.830407146977628, - "c4": -20.554936975811977, - "c5": 6.736830782288436, - "c6": 9.601951604962082, - "c7": 35.54870295982985 + "points": { + "c1": -23.873632396134944, + "c2": 2.0533166442671913, + "c3": -32.825026333815885, + "c4": 11.483392719196011, + "c5": -7.3998400170813525, + "c6": 10.183005970521691, + "c7": -13.116313430621908 }, - "vertexSeeds": { - "c1": 5.73231430306598, - "c2": 5.929655713037386, - "c3": 5.986465942933779, - "c4": 5.532016176859256, - "c5": 5.683871905943246, - "c6": 5.459249780110266, - "c7": 5.77880765819319 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -382461,23 +382461,23 @@ "year": 1806, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -3.9369702532358524, - "c2": 1.7477846829253316, - "c3": 16.18286312905587, - "c4": 10.572114145778091, - "c5": 7.6667217364209925, - "c6": 12.520646040762234, - "c7": -4.202462569091232 + "points": { + "c1": -13.066986987975724, + "c2": 16.826683149951, + "c3": -3.9164440615171507, + "c4": -3.3622634623672667, + "c5": 18.384023497202353, + "c6": -26.44648652500158, + "c7": 14.52886879437835 }, - "vertexSeeds": { - "c1": 4.802603699916995, - "c2": 4.726668508272226, - "c3": 4.58743911086306, - "c4": 4.995056213654848, - "c5": 4.706469339577103, - "c6": 5.016727614768745, - "c7": 4.832940497368696 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497916, + "c3": 6.03328710124827, + "c4": 4.8266296809986144, + "c5": 3.619972260748958, + "c6": 2.4133148404993023, + "c7": 1.2066574202496558 }, "rgb": [222, 0, 59] }, @@ -382488,23 +382488,23 @@ "year": 1806, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 16.38840489045851, - "c2": -34.08627466884772, - "c3": -23.297532575080773, - "c4": 25.22729951031487, - "c5": 10.667930323893728, - "c6": -9.854707027531454, - "c7": 34.93113800766439 + "points": { + "c1": 23.697075747292956, + "c2": -35.45547714112685, + "c3": -29.288941560679774, + "c4": -3.6448281276509675, + "c5": 35.44314334581878, + "c6": -28.65262113887588, + "c7": 25.119959427548253 }, - "vertexSeeds": { - "c1": 4.881062414066393, - "c2": 5.118300409417618, - "c3": 5.264566704841846, - "c4": 5.107282289563304, - "c5": 4.962211899925358, - "c6": 4.906920678296462, - "c7": 4.851847111808837 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [77, 76, 132] }, @@ -382515,23 +382515,23 @@ "year": 1806, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -5.097062239849016, - "c2": -14.997500274566342, - "c3": 23.635678841302177, - "c4": 26.642934811519094, - "c5": -19.905799130513426, - "c6": -4.929086806424632, - "c7": 25.699935855538374 + "points": { + "c1": 20.31228792202214, + "c2": 29.079142085462873, + "c3": -12.255411537436594, + "c4": 20.00080062886988, + "c5": 17.501465215161677, + "c6": -23.518358957785836, + "c7": -10.07555268068161 }, - "vertexSeeds": { - "c1": 5.748804069519742, - "c2": 5.637149734557699, - "c3": 5.980272848077098, - "c4": 5.511296512225304, - "c5": 5.850406723022695, - "c6": 5.467008811473182, - "c7": 5.674584486301172 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -382542,23 +382542,23 @@ "year": 1806, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -30.221291667306286, - "c2": 10.198234454443732, - "c3": 5.268309520169122, - "c4": 30.234448734092414, - "c5": -14.62706037755326, - "c6": -7.300174572101707, - "c7": 20.302639747752867 + "points": { + "c1": 25.12446210446062, + "c2": 2.433328681875416, + "c3": -17.888867444559363, + "c4": -29.85216572096687, + "c5": -4.633684230560952, + "c6": 13.00043121801091, + "c7": 12.558872416154507 }, - "vertexSeeds": { - "c1": 6.688202871562966, - "c2": 7.208603072363181, - "c3": 6.648741797349053, - "c4": 6.9109730282298285, - "c5": 7.13125726128281, - "c6": 6.554109759265339, - "c7": 6.74518275557553 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043004, + "c3": 8.645399907535827, + "c4": 6.916319926028669, + "c5": 5.187239944521493, + "c6": 3.4581599630143347, + "c7": 1.7290799815071765 }, "rgb": [222, 0, 59] }, @@ -382569,23 +382569,23 @@ "year": 1806, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -13.209053101786736, - "c2": 5.0757762775870034, - "c3": 3.0890674851949136, - "c4": 23.87127740399348, - "c5": -14.889046593320336, - "c6": -8.5795659714992, - "c7": 4.59000312430161 + "points": { + "c1": 11.341843338721475, + "c2": 18.2076011119019, + "c3": -26.008911072260666, + "c4": 21.48987474537853, + "c5": 18.661048802674294, + "c6": 1.2877714604905854, + "c7": -21.153023152933468 }, - "vertexSeeds": { - "c1": 8.077181567972527, - "c2": 7.907042450755607, - "c3": 7.815946046992728, - "c4": 8.295796245982102, - "c5": 7.821039360710225, - "c6": 7.944464165491396, - "c7": 8.033303667406045 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536747, + "c3": 10.078594544613969, + "c4": 8.06287563569117, + "c5": 6.047156726768374, + "c6": 4.031437817845595, + "c7": 2.0157189089227976 }, "rgb": [86, 146, 138] }, @@ -382596,23 +382596,23 @@ "year": 1806, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -25.018465078536295, - "c2": -30.27510443867816, - "c3": -26.251790361804566, - "c4": -11.423450667900905, - "c5": 28.580179029342823, - "c6": -21.51846309046278, - "c7": -12.017606376566956 + "points": { + "c1": 12.783942643443964, + "c2": 3.15914370968153, + "c3": -22.741024489943815, + "c4": -3.336662599537828, + "c5": 17.039814811369027, + "c6": -21.722701223732827, + "c7": 21.74553994510584 }, - "vertexSeeds": { - "c1": 2.1984835234367663, - "c2": 2.013618450055923, - "c3": 2.2821504437632876, - "c4": 2.142200240844611, - "c5": 2.3145794557414936, - "c6": 2.319324705825029, - "c7": 2.343813852706131 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070747, + "c3": 2.820157189089228, + "c4": 2.2561257512713833, + "c5": 1.692094313453536, + "c6": 1.1280628756356916, + "c7": 0.5640314378178444 }, "rgb": [86, 146, 138] }, @@ -382623,23 +382623,23 @@ "year": 1806, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 4.333475901713861, - "c2": -23.625606273731158, - "c3": 15.028952908620262, - "c4": 4.454937736253825, - "c5": -7.593369159252873, - "c6": 23.79768018548593, - "c7": -38.47353716022871 + "points": { + "c1": 1.5380239403958456, + "c2": 41.551230355783375, + "c3": -31.344937244321027, + "c4": 20.343510261784417, + "c5": 4.854583290321273, + "c6": -20.82743794616945, + "c7": -19.051027842663647 }, - "vertexSeeds": { - "c1": 4.605058913535794, - "c2": 4.381740745200794, - "c3": 4.8984345255277475, - "c4": 4.596143733143072, - "c5": 4.146726160615404, - "c6": 4.785743068545935, - "c7": 4.22095505227876 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105872, + "c4": 3.9204808136846947, + "c5": 2.940360610263521, + "c6": 1.9602404068423473, + "c7": 0.9801202034211697 }, "rgb": [77, 76, 132] }, @@ -382650,23 +382650,23 @@ "year": 1806, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 7.287092208390163, - "c2": 19.648599233043385, - "c3": 5.281479087163579, - "c4": -6.894670274168462, - "c5": 17.425437001578636, - "c6": 11.668109650905905, - "c7": -20.335094438707667 + "points": { + "c1": 24.971068391147817, + "c2": 18.993860475750402, + "c3": -8.033409976491072, + "c4": 14.167072897223548, + "c5": -20.9359644151389, + "c6": 11.553183680275545, + "c7": 14.813272586145892 }, - "vertexSeeds": { - "c1": 6.6444782995428735, - "c2": 6.486551271077911, - "c3": 6.538485911828671, - "c4": 6.258308259748089, - "c5": 6.756792131925422, - "c6": 6.230613149074594, - "c7": 6.305213232355185 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [58, 15, 49] }, @@ -382677,23 +382677,23 @@ "year": 1806, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -16.578855776152473, - "c2": 16.92662392611334, - "c3": 16.95066259038062, - "c4": -6.909539353894008, - "c5": 20.379472945741878, - "c6": -14.74484264532152, - "c7": 7.744631516908509 + "points": { + "c1": -13.637028367350558, + "c2": -18.856522422507688, + "c3": -11.857567275343866, + "c4": -17.121033347443923, + "c5": 1.1624809491198391, + "c6": -10.4795673591078, + "c7": -3.1669899446066445 }, - "vertexSeeds": { - "c1": 1.6606694489346827, - "c2": 1.605523792560714, - "c3": 1.7101742771034565, - "c4": 1.7703928691964916, - "c5": 1.6794357362695695, - "c6": 1.6041613833738686, - "c7": 1.6617766438354071 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.30235783633842, + "c3": 1.9186315302820152, + "c4": 1.5349052242256134, + "c5": 1.1511789181692085, + "c6": 0.7674526121128067, + "c7": 0.38372630605640484 }, "rgb": [86, 146, 138] }, @@ -382704,23 +382704,23 @@ "year": 1806, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": 25.068505349653655, - "c2": 8.313079157616237, - "c3": -14.413619356942949, - "c4": -8.74738728846119, - "c5": 35.741771225440296, - "c6": 10.145479172009487, - "c7": 37.930430111984016 + "points": { + "c1": 24.27248733797989, + "c2": 31.3935731664321, + "c3": -32.45234625082993, + "c4": 0.3492244801020661, + "c5": 8.044996224927054, + "c6": -29.184427991075953, + "c7": 16.137085998830862 }, - "vertexSeeds": { - "c1": 10.25647035897968, - "c2": 9.19963731528373, - "c3": 9.51782700689164, - "c4": 10.144714697071056, - "c5": 9.634428436301777, - "c6": 9.934791168996961, - "c7": 9.169813486528227 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [58, 15, 49] }, @@ -382731,23 +382731,23 @@ "year": 1806, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -29.026902976316045, - "c2": -18.33046286121913, - "c3": -13.845468063456092, - "c4": 35.09929712020366, - "c5": -27.656928515270344, - "c6": -20.264049116552645, - "c7": 35.211875117163544 + "points": { + "c1": -2.241731082665524, + "c2": -2.9559023842461727, + "c3": 25.103263932498514, + "c4": -24.61334331707878, + "c5": 26.439605121257188, + "c6": -19.278498775616548, + "c7": -9.08851061635973 }, - "vertexSeeds": { - "c1": 7.189791929005159, - "c2": 7.007496374940174, - "c3": 7.4965578653713045, - "c4": 7.180083969227708, - "c5": 7.214465487729692, - "c6": 7.342329775220965, - "c7": 7.477706224399649 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [58, 15, 49] }, @@ -382758,23 +382758,23 @@ "year": 1806, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 2.8158793129824815, - "c2": -15.827311361000454, - "c3": 19.833244196613833, - "c4": 5.89619656889716, - "c5": -25.519947755444306, - "c6": 34.21047039156697, - "c7": 7.937305555336323 + "points": { + "c1": 13.059136184359119, + "c2": -8.71365960544157, + "c3": 19.40612565438252, + "c4": 21.70631831717523, + "c5": -26.96019722984505, + "c6": -31.320868652675163, + "c7": 32.71588966238437 }, - "vertexSeeds": { - "c1": 5.127753263634857, - "c2": 4.886895127881486, - "c3": 5.023283086989902, - "c4": 5.113304582796177, - "c5": 5.03298436377905, - "c6": 5.029370886991443, - "c7": 5.126299390412174 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [86, 146, 138] }, @@ -382785,23 +382785,23 @@ "year": 1806, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 25.33862338060496, - "c2": -13.165661507352056, - "c3": -7.98205964859018, - "c4": 21.49527850184391, - "c5": 23.682363160117088, - "c6": 19.96122400545997, - "c7": 20.651291105437775 + "points": { + "c1": 10.138414822349393, + "c2": 1.9728456600076356, + "c3": -9.720994059557707, + "c4": 6.731789067030686, + "c5": 10.542142464023154, + "c6": -12.393511069152243, + "c7": 1.7025492237305002 }, - "vertexSeeds": { - "c1": 1.6018388551792422, - "c2": 1.6813838366134586, - "c3": 1.9567892678436873, - "c4": 1.5503506807279543, - "c5": 1.5330024324566285, - "c6": 1.8215069930746666, - "c7": 1.8686003761694248 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037444, + "c3": 2.4734165510864528, + "c4": 1.9787332408691634, + "c5": 1.4840499306518722, + "c6": 0.9893666204345809, + "c7": 0.49468331021729123 }, "rgb": [222, 0, 59] }, @@ -382812,23 +382812,23 @@ "year": 1806, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -32.9280117407853, - "c2": -11.243074418447389, - "c3": 24.03691793135689, - "c4": -5.67942971719798, - "c5": 6.54213785700906, - "c6": 14.688769884755459, - "c7": 7.861545247003015 + "points": { + "c1": -17.740989537143157, + "c2": 15.524318830193693, + "c3": 0.7967500306846489, + "c4": -2.3460549443164, + "c5": 20.800915814767244, + "c6": -15.085955565024566, + "c7": 17.52779084812024 }, - "vertexSeeds": { - "c1": 2.31778691559657, - "c2": 1.351224910260456, - "c3": 1.6321420725583566, - "c4": 2.1572213620418887, - "c5": 1.8546163103733944, - "c6": 1.9697812638580667, - "c7": 1.9284613205285543 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.9819694868238558, + "c4": 2.3855755894590844, + "c5": 1.7891816920943135, + "c6": 1.1927877947295422, + "c7": 0.5963938973647708 }, "rgb": [222, 0, 59] }, @@ -382839,23 +382839,23 @@ "year": 1806, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 18.431110662127193, - "c2": 19.880677302198702, - "c3": 13.244769245767113, - "c4": -1.3822611978553532, - "c5": 15.73226436334144, - "c6": -6.0299666618053145, - "c7": 17.588325520242012 + "points": { + "c1": -4.194803701244904, + "c2": -15.704548711249414, + "c3": 19.460162085728175, + "c4": 23.53606914495528, + "c5": 12.856175702234903, + "c6": 24.68383729959437, + "c7": 9.8864962789342 }, - "vertexSeeds": { - "c1": 5.243973636659178, - "c2": 5.603183871751964, - "c3": 5.469386756610602, - "c4": 5.4679372071127705, - "c5": 5.363527050172795, - "c6": 5.662743912924404, - "c7": 5.483087954686852 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387882, + "c4": 5.455386037910301, + "c5": 4.091539528432722, + "c6": 2.727693018955142, + "c7": 1.363846509477562 }, "rgb": [222, 0, 59] }, @@ -382866,23 +382866,23 @@ "year": 1806, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -11.283669387063892, - "c2": -22.196111807416422, - "c3": 17.568257292982253, - "c4": 14.126066433267326, - "c5": -20.807791441584033, - "c6": 13.716350651107234, - "c7": -27.544827335689774 + "points": { + "c1": -32.696544874215924, + "c2": -17.09218539279375, + "c3": 21.747297363448027, + "c4": 15.75962751927652, + "c5": 31.575028981129933, + "c6": -31.55966677622842, + "c7": -21.22821051019895 }, - "vertexSeeds": { - "c1": 1.162306805980267, - "c2": 1.3867291806897841, - "c3": 2.2373414936487617, - "c4": 1.7083234316157871, - "c5": 1.2278564599325323, - "c6": 1.1682968494964407, - "c7": 1.742017503306391 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266295, + "c3": 2.773925104022191, + "c4": 2.219140083217753, + "c5": 1.6643550624133152, + "c6": 1.109570041608877, + "c7": 0.554785020804438 }, "rgb": [222, 0, 59] }, @@ -382893,23 +382893,23 @@ "year": 1806, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 13.931105189098055, - "c2": 11.013062789964344, - "c3": -21.441766222565178, - "c4": 2.32265907391875, - "c5": 18.29620672405963, - "c6": -3.1354251627252516, - "c7": -4.154810633488136 + "points": { + "c1": 12.925166140543162, + "c2": 7.9072753201275745, + "c3": 0.981906279435627, + "c4": 23.30201385339999, + "c5": 28.637146643510597, + "c6": -13.888345545498602, + "c7": -14.729583033326698 }, - "vertexSeeds": { - "c1": 4.29938422256785, - "c2": 4.309941260025329, - "c3": 4.425498388762284, - "c4": 4.40074592814637, - "c5": 4.3299721661479, - "c6": 4.334272935149839, - "c7": 4.368523429435392 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175682, + "c4": 4.234858992140545, + "c5": 3.1761442441054086, + "c6": 2.1174294960702724, + "c7": 1.0587147480351362 }, "rgb": [86, 146, 138] }, @@ -382920,23 +382920,23 @@ "year": 1806, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -5.688975297085264, - "c2": 11.378155584138685, - "c3": -8.811172624212919, - "c4": 21.11361455852124, - "c5": 4.327881453683705, - "c6": -6.27773868006209, - "c7": -20.428428197205257 + "points": { + "c1": -18.023879028832674, + "c2": -31.862189650342632, + "c3": -20.599495518352207, + "c4": -4.0652298703080305, + "c5": -27.787282835659106, + "c6": -23.715957653818222, + "c7": 12.265965403010071 }, - "vertexSeeds": { - "c1": 6.002002080306762, - "c2": 5.653828306712105, - "c3": 5.422565379597408, - "c4": 5.402796345733226, - "c5": 5.831548346343105, - "c6": 5.55986350529661, - "c7": 5.6650312994652925 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -382947,23 +382947,23 @@ "year": 1807, "resistanceReported": false, "duration": 43200000, - "curveSeeds": { - "c1": -53.034390782879136, - "c2": 14.471544668833616, - "c3": 52.684181001122795, - "c4": 36.9221519921078, - "c5": 44.28051354302512, - "c6": -51.243629044503045, - "c7": 15.268901318409846 + "points": { + "c1": -54.19577755004073, + "c2": -57.15267463646491, + "c3": -31.035280419683392, + "c4": -34.58515654301924, + "c5": -32.76022986034678, + "c6": -9.3065218378566, + "c7": 56.61197342808181 }, - "vertexSeeds": { - "c1": 7.434290918990109, - "c2": 7.784900818111967, - "c3": 7.906058303781746, - "c4": 7.417531249305482, - "c5": 7.466473708389424, - "c6": 8.04796087322395, - "c7": 8.307526225675199 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536753, + "c3": 10.078594544613962, + "c4": 8.062875635691169, + "c5": 6.047156726768376, + "c6": 4.0314378178455845, + "c7": 2.0157189089227923 }, "rgb": [58, 15, 49] }, @@ -382974,23 +382974,23 @@ "year": 1806, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -4.740052511791568, - "c2": 8.478018598047267, - "c3": 9.356419283390668, - "c4": 7.706885196455271, - "c5": -5.411380732843817, - "c6": 11.653420691274757, - "c7": -9.990781508053537 + "points": { + "c1": 5.54753879406319, + "c2": 5.600164382974594, + "c3": -12.683155028982137, + "c4": -19.017275074360576, + "c5": -12.964529632401602, + "c6": -13.183319026149976, + "c7": 27.703046726379622 }, - "vertexSeeds": { - "c1": 6.476531929766096, - "c2": 6.526870188960003, - "c3": 6.543027660261656, - "c4": 6.35630324200704, - "c5": 6.16677954450276, - "c6": 6.503724965837716, - "c7": 6.102714191362049 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836343, + "c3": 7.951918631530274, + "c4": 6.3615349052242225, + "c5": 4.7711511789181715, + "c6": 3.1807674526121024, + "c7": 1.5903837263060512 }, "rgb": [222, 0, 59] }, @@ -383001,23 +383001,23 @@ "year": 1806, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -31.11401149984824, - "c2": 18.410967109111276, - "c3": 16.781127147598262, - "c4": -6.257306745108764, - "c5": -23.51928432839781, - "c6": -8.79900671596834, - "c7": -1.1170237673866872 + "points": { + "c1": -16.89533286382704, + "c2": -8.697940481887272, + "c3": 16.781879725494413, + "c4": 14.69720606759931, + "c5": -1.0715765445219603, + "c6": 20.053249033916707, + "c7": 4.684761178303482 }, - "vertexSeeds": { - "c1": 4.511217773288886, - "c2": 4.532656626294443, - "c3": 4.451899132149419, - "c4": 4.78959772045769, - "c5": 4.639887648674192, - "c6": 4.835595405151881, - "c7": 4.5473801469535315 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055474, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.4674063800277413, + "c6": 2.3116042533518244, + "c7": 1.1558021266759078 }, "rgb": [238, 201, 159] }, @@ -383028,23 +383028,23 @@ "year": 1806, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -13.221276760705909, - "c2": 21.75841817009527, - "c3": -22.38270726592601, - "c4": -24.481286775543296, - "c5": -3.498346903462515, - "c6": -19.212429446501808, - "c7": -25.566578510360227 + "points": { + "c1": 33.3637078917284, + "c2": -24.390410241086492, + "c3": -16.381951939678057, + "c4": -18.435033587791533, + "c5": 0.9694350499891797, + "c6": 30.780213378981323, + "c7": -16.67822789016573 }, - "vertexSeeds": { - "c1": 1.0150109822556332, - "c2": 1.0608040065432696, - "c3": 1.1719775322668724, - "c4": 1.135074489308026, - "c5": 1.1700235566416222, - "c6": 1.0025882764103085, - "c7": 1.1202454997915674 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.775312066574203, + "c3": 1.4794267221451685, + "c4": 1.1835413777161352, + "c5": 0.8876560332871009, + "c6": 0.5917706888580676, + "c7": 0.2958853444290344 }, "rgb": [77, 76, 132] }, @@ -383055,23 +383055,23 @@ "year": 1806, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -11.3280383560697, - "c2": -22.0585519696261, - "c3": -11.049309696214715, - "c4": -16.924736132837584, - "c5": -13.611165008878947, - "c6": 8.349961504911573, - "c7": -17.85808215108139 + "points": { + "c1": -10.260242859681178, + "c2": -1.7570490922917088, + "c3": 23.765377070943185, + "c4": -7.324924116600499, + "c5": 10.93199896752962, + "c6": 11.656647007628418, + "c7": -22.447107565111274 }, - "vertexSeeds": { - "c1": 5.714788945338925, - "c2": 5.704208779426532, - "c3": 5.895877344869625, - "c4": 5.438118579210475, - "c5": 5.668299513758102, - "c6": 5.735893645959602, - "c7": 5.87966779743329 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -383082,23 +383082,23 @@ "year": 1806, "resistanceReported": true, "duration": 20908800, - "curveSeeds": { - "c1": -9.709818799782376, - "c2": -19.676076330859537, - "c3": -1.5732484156628352, - "c4": -7.017636391833555, - "c5": 29.16769011582302, - "c6": -1.874567428451659, - "c7": -7.793976984521574 + "points": { + "c1": 19.1917982127437, + "c2": -16.599295088107727, + "c3": -4.478860162693302, + "c4": 34.322554531086325, + "c5": -1.1703283850194452, + "c6": -7.204813138390133, + "c7": -0.5501222429027024 }, - "vertexSeeds": { - "c1": 5.244577688206603, - "c2": 5.034729491757974, - "c3": 5.123409754996511, - "c4": 4.910422757825461, - "c5": 4.936171266885933, - "c6": 5.03577311431488, - "c7": 5.082522765700922 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784567, + "c4": 5.12251502542764, + "c5": 3.8418862690707325, + "c6": 2.5612575127138246, + "c7": 1.2806287563569168 }, "rgb": [58, 15, 49] }, @@ -383109,23 +383109,23 @@ "year": 1806, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -1.7164173558046727, - "c2": -12.817536542876368, - "c3": -8.143663818657124, - "c4": 21.677915797621225, - "c5": 19.6520932055748, - "c6": -18.57923768332876, - "c7": -13.745809291283646 + "points": { + "c1": -13.725999255451255, + "c2": -23.197331166577015, + "c3": -10.092607937378585, + "c4": -5.7074800927143094, + "c5": -0.19036022682436027, + "c6": -18.646083486398272, + "c7": 10.204384522068082 }, - "vertexSeeds": { - "c1": 8.290970099528959, - "c2": 7.770352407940695, - "c3": 8.16103272471571, - "c4": 7.580074645487066, - "c5": 7.615901344988186, - "c6": 8.225098884029668, - "c7": 7.549454399010158 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375874, + "c3": 9.986130374479883, + "c4": 7.9889042995839095, + "c5": 5.991678224687937, + "c6": 3.9944521497919636, + "c7": 1.9972260748959727 }, "rgb": [238, 201, 159] }, @@ -383136,23 +383136,23 @@ "year": 1806, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -10.77881080892325, - "c2": 19.35968156016506, - "c3": -19.554330609023918, - "c4": 17.702960775080168, - "c5": -21.75337122272293, - "c6": -2.4648714443588133, - "c7": 24.864419165563564 + "points": { + "c1": -20.663179421299713, + "c2": -8.846854700758222, + "c3": -4.915036412194269, + "c4": 20.155887602798582, + "c5": -2.820852645422157, + "c6": -1.7320415835395302, + "c7": -1.0472442985567518 }, - "vertexSeeds": { - "c1": 5.3959075541298995, - "c2": 5.417667666770305, - "c3": 5.402573236528878, - "c4": 5.09608142519304, - "c5": 5.1675133036645535, - "c6": 5.454556161054546, - "c7": 5.604770611898916 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.7267683772538165, + "c4": 5.381414701803046, + "c5": 4.036061026352294, + "c6": 2.690707350901523, + "c7": 1.3453536754507522 }, "rgb": [238, 201, 159] }, @@ -383163,23 +383163,23 @@ "year": 1806, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -16.03373471814355, - "c2": -35.06214423466047, - "c3": -28.26691144443719, - "c4": 22.97150550647514, - "c5": -17.762292304481633, - "c6": 11.340228987637794, - "c7": -11.559076720228827 + "points": { + "c1": 5.623766431254495, + "c2": 0.5073889778393692, + "c3": -35.84540882735653, + "c4": -17.371842288394184, + "c5": 34.06074804193505, + "c6": 10.339117204618987, + "c7": 28.380911959932938 }, - "vertexSeeds": { - "c1": 12.080221267451472, - "c2": 11.949440131101497, - "c3": 12.104895707390718, - "c4": 11.910325261795478, - "c5": 11.122328902660165, - "c6": 11.382160999858442, - "c7": 12.051058728177955 + "offsets": { + "c1": 20.388349514563107, + "c2": 17.4757281553398, + "c3": 14.563106796116493, + "c4": 11.650485436893188, + "c5": 8.737864077669881, + "c6": 5.825242718446613, + "c7": 2.9126213592233063 }, "rgb": [238, 201, 159] }, @@ -383190,23 +383190,23 @@ "year": 1806, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 2.2932212160728156, - "c2": 15.962159789901513, - "c3": -21.290438248854475, - "c4": 1.7140595990761653, - "c5": -16.079856730013475, - "c6": -17.6900917103007, - "c7": 12.273617944652962 + "points": { + "c1": 20.36838433795875, + "c2": 12.389899794445547, + "c3": 17.031691224165357, + "c4": -12.349528643116809, + "c5": 13.214169014414999, + "c6": 7.1463187621672475, + "c7": -15.990786344671156 }, - "vertexSeeds": { - "c1": 4.96461825112876, - "c2": 5.265281835063234, - "c3": 5.1033523699174665, - "c4": 4.864530860005782, - "c5": 5.191479294621933, - "c6": 4.954731669394584, - "c7": 5.2641090415658995 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [77, 76, 132] }, @@ -383217,23 +383217,23 @@ "year": 1806, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -7.383952082328758, - "c2": -7.21423324741399, - "c3": 10.367796604565402, - "c4": 27.350371684336874, - "c5": -19.033182230477593, - "c6": 7.075227129127736, - "c7": 27.832762949507515 + "points": { + "c1": -22.071066617219955, + "c2": -12.631021477194722, + "c3": 20.423732576911032, + "c4": -23.20089097309146, + "c5": -8.670877586209173, + "c6": 26.016588116779854, + "c7": 17.38882876788473 }, - "vertexSeeds": { - "c1": 5.048051141940808, - "c2": 5.254344096664564, - "c3": 5.243191543019307, - "c4": 4.978499347829817, - "c5": 5.1508508754312246, - "c6": 4.916157456151125, - "c7": 5.179571852018251 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -383244,23 +383244,23 @@ "year": 1806, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 22.918549909328, - "c2": 15.559953852970821, - "c3": 11.879635975612466, - "c4": -28.90844365891677, - "c5": 13.258711239491326, - "c6": 5.821029793117887, - "c7": 18.356697406498284 + "points": { + "c1": -17.825494313266795, + "c2": 21.837456585499375, + "c3": -5.80423456741233, + "c4": -24.143470021287953, + "c5": -29.67345738303015, + "c6": 21.94355029879877, + "c7": 19.880219886865625 }, - "vertexSeeds": { - "c1": 5.026400176930551, - "c2": 5.026537653249724, - "c3": 4.918301311160258, - "c4": 5.1726328942781805, - "c5": 5.259228856535284, - "c6": 4.956702713156835, - "c7": 5.212900019339502 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -383271,23 +383271,23 @@ "year": 1806, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 22.711012195452685, - "c2": -4.388801332746006, - "c3": 17.88296354025638, - "c4": 19.818111978281788, - "c5": -16.820851215610674, - "c6": -14.123033557641754, - "c7": -7.777788114015458 + "points": { + "c1": 17.01984931905135, + "c2": 25.96127722120045, + "c3": -24.22597563609706, + "c4": -21.132381032959692, + "c5": -6.389046668756151, + "c6": 20.608619979998284, + "c7": -9.648606621262413 }, - "vertexSeeds": { - "c1": 1.4140535652237791, - "c2": 1.3406965597565024, - "c3": 1.3809804358036677, - "c4": 1.4047571543123527, - "c5": 1.3797511421478028, - "c6": 1.349312606115673, - "c7": 1.355477361158625 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.1359223300970873, + "c3": 1.779935275080906, + "c4": 1.4239482200647249, + "c5": 1.0679611650485437, + "c6": 0.7119741100323624, + "c7": 0.3559870550161812 }, "rgb": [238, 201, 159] }, @@ -383298,23 +383298,23 @@ "year": 1806, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 6.041108317439445, - "c2": -2.519809675720108, - "c3": 0.42347926446453954, - "c4": 19.671830342291756, - "c5": 12.937752254701074, - "c6": 0.628794811108687, - "c7": -23.036754043620068 + "points": { + "c1": 28.941510502846725, + "c2": 4.725499596571254, + "c3": 31.034530823250243, + "c4": -17.57164058270247, + "c5": 30.043137812437948, + "c6": -21.200554298482714, + "c7": -15.416041980707707 }, - "vertexSeeds": { - "c1": 2.5468029944580275, - "c2": 2.859258182093219, - "c3": 2.6126785547766542, - "c4": 2.8697328300477, - "c5": 2.61906276483349, - "c6": 2.7211684911235565, - "c7": 2.5098509990111033 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282934, + "c4": 2.8294036061026344, + "c5": 2.122052704576975, + "c6": 1.4147018030513157, + "c7": 0.7073509015256565 }, "rgb": [222, 0, 59] }, @@ -383325,23 +383325,23 @@ "year": 1806, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 11.958987721251983, - "c2": 23.710546589476, - "c3": -1.7499667357695365, - "c4": -0.03113076339952414, - "c5": 1.4831594661492886, - "c6": 21.027329777933925, - "c7": 20.9263850736565 + "points": { + "c1": -26.388026502426854, + "c2": 18.601508670937907, + "c3": -5.3003979115010615, + "c4": -15.409355567576675, + "c5": 1.5363417827490657, + "c6": 1.5107588932603413, + "c7": -18.649121087324342 }, - "vertexSeeds": { - "c1": 5.429262443367502, - "c2": 5.653638908083898, - "c3": 5.707513515070296, - "c4": 5.9787793421616895, - "c5": 5.871784451657387, - "c6": 5.636838200168404, - "c7": 5.54619007832872 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -383352,23 +383352,23 @@ "year": 1806, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 14.92418473949012, - "c2": 20.28978481293412, - "c3": 27.8233078991433, - "c4": 21.053353563642734, - "c5": 12.319141948595256, - "c6": 2.9561722118529907, - "c7": -9.09909342834452 + "points": { + "c1": 22.73120943725051, + "c2": 16.3959293988086, + "c3": -8.65172349210481, + "c4": 11.080803749896663, + "c5": -25.65953193349219, + "c6": 18.714668521763084, + "c7": -28.03509914875429 }, - "vertexSeeds": { - "c1": 5.728921263760519, - "c2": 5.411616148822505, - "c3": 5.618728454643192, - "c4": 5.599682658021554, - "c5": 5.589750308740772, - "c6": 5.491022041775083, - "c7": 5.815449424170855 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -383379,23 +383379,23 @@ "year": 1806, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -3.7942070705930036, - "c2": 16.07384954089587, - "c3": 12.48627985787548, - "c4": -10.400554147454574, - "c5": -32.986796031712856, - "c6": 33.660690566893535, - "c7": 35.40737135083843 + "points": { + "c1": -27.116164137706733, + "c2": 13.76037667921159, + "c3": -8.77496443561368, + "c4": -30.891317853324026, + "c5": 38.394841189644566, + "c6": 37.38349572079967, + "c7": -32.18851615361971 }, - "vertexSeeds": { - "c1": 5.79747483827746, - "c2": 5.7679921079066, - "c3": 5.503919954506351, - "c4": 5.7930616108855375, - "c5": 5.804340800091658, - "c6": 5.827627225968848, - "c7": 5.4920862402596855 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -383406,23 +383406,23 @@ "year": 1806, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -24.51315876379836, - "c2": 0.3919994577397077, - "c3": -11.73231452391267, - "c4": -1.0533652815399783, - "c5": 26.964810483053107, - "c6": -19.760116728746766, - "c7": -32.06332702786115 + "points": { + "c1": 30.998558627591898, + "c2": 21.1102340730446, + "c3": -23.222351706832455, + "c4": 30.818936201055116, + "c5": -28.64895438187391, + "c6": -11.460041026855695, + "c7": 21.235151035442478 }, - "vertexSeeds": { - "c1": 1.549556828629935, - "c2": 1.5073071420452913, - "c3": 1.5664076935417794, - "c4": 1.6036146234933557, - "c5": 1.4709156816425943, - "c6": 1.4844037887603792, - "c7": 1.4633353174609462 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.330097087378643, + "c3": 1.9417475728155336, + "c4": 1.5533980582524283, + "c5": 1.1650485436893192, + "c6": 0.7766990291262141, + "c7": 0.38834951456310496 }, "rgb": [222, 0, 59] }, @@ -383433,23 +383433,23 @@ "year": 1806, "resistanceReported": false, "duration": 8208000, - "curveSeeds": { - "c1": 9.74532636482554, - "c2": 11.601823452430704, - "c3": 6.6500588277106445, - "c4": -18.13878495391589, - "c5": 18.14895787904235, - "c6": -4.311816001353424, - "c7": 16.235204286516954 + "points": { + "c1": 18.505392020463496, + "c2": -1.6980851637801209, + "c3": -5.711711195502906, + "c4": 4.575622163763114, + "c5": -13.79738773934817, + "c6": 13.496658519721748, + "c7": 17.199310044211686 }, - "vertexSeeds": { - "c1": 2.0511621278394734, - "c2": 1.764128180865393, - "c3": 2.0478067980952677, - "c4": 1.8760767051455005, - "c5": 1.767162294834812, - "c6": 1.8777448406528332, - "c7": 1.7488510587856902 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841886, + "c3": 2.519648636153491, + "c4": 2.015718908922793, + "c5": 1.5117891816920959, + "c6": 1.007859454461398, + "c7": 0.5039297272307005 }, "rgb": [86, 146, 138] }, @@ -383460,23 +383460,23 @@ "year": 1806, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 15.666722984858112, - "c2": -21.604191921422398, - "c3": 20.720614919986218, - "c4": -26.386479372097998, - "c5": -2.9105204000446676, - "c6": -14.403481533346797, - "c7": 22.3581669981891 + "points": { + "c1": -19.19630503066342, + "c2": -7.3432788277686605, + "c3": 22.488845366770697, + "c4": -13.279968588452038, + "c5": -12.281252428010824, + "c6": 26.427270455058668, + "c7": 14.785979126275699 }, - "vertexSeeds": { - "c1": 3.9248704663212433, - "c2": 3.9248704663212433, - "c3": 3.9248704663212433, - "c4": 3.9248704663212433, - "c5": 3.9248704663212433, - "c6": 3.9248704663212433, - "c7": 3.9248704663212433 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -383487,23 +383487,23 @@ "year": 1806, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -26.141112297068744, - "c2": -6.653632403384819, - "c3": 17.11379796160071, - "c4": -7.2865619554935925, - "c5": -7.335748168898764, - "c6": -12.625823311503442, - "c7": -4.898535355229612 + "points": { + "c1": 29.4966437494855, + "c2": -15.982071747362891, + "c3": 31.820310768965072, + "c4": 34.66572544719786, + "c5": -5.439043488727737, + "c6": 18.423717495324738, + "c7": -5.705085435730005 }, - "vertexSeeds": { - "c1": 6.143681443105249, - "c2": 6.552448671113465, - "c3": 4.691189701923689, - "c4": 4.725323240866902, - "c5": 6.142301739803972, - "c6": 6.37785213467447, - "c7": 5.716142106696672 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761445, + "c3": 8.483587609801202, + "c4": 6.7868700878409625, + "c5": 5.09015256588072, + "c6": 3.3934350439204812, + "c7": 1.6967175219602406 }, "rgb": [222, 0, 59] }, @@ -383514,23 +383514,23 @@ "year": 1806, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -0.9462570611234185, - "c2": 21.710176802431786, - "c3": 4.341993390751988, - "c4": -8.846316144552638, - "c5": -3.3930610387808073, - "c6": -24.01914638243788, - "c7": 1.6414350226118763 + "points": { + "c1": 10.611577232911227, + "c2": 8.116587792191307, + "c3": -20.24103644358461, + "c4": 24.677169008556884, + "c5": -22.329427454847554, + "c6": -4.313554265672938, + "c7": -17.68721619206102 }, - "vertexSeeds": { - "c1": 2.3665874975111216, - "c2": 2.1230292043120036, - "c3": 2.258769921093738, - "c4": 2.3027048167374318, - "c5": 2.405786013366567, - "c6": 2.341543773792202, - "c7": 2.366667865359223 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.4674063800277373, + "c3": 2.889505316689783, + "c4": 2.311604253351825, + "c5": 1.7337031900138704, + "c6": 1.1558021266759124, + "c7": 0.577901063337958 }, "rgb": [77, 76, 132] }, @@ -383541,23 +383541,23 @@ "year": 1806, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 16.60666111030488, - "c2": -19.999746956238113, - "c3": -5.982062009770587, - "c4": 5.8395298652048275, - "c5": 21.582250500935192, - "c6": 6.259268916498559, - "c7": 27.953718989430936 + "points": { + "c1": 18.744027102501764, + "c2": 19.74296027596481, + "c3": -25.398731714602853, + "c4": 19.112491257328397, + "c5": -1.2388821986343466, + "c6": -21.681400616899875, + "c7": 12.67654318742684 }, - "vertexSeeds": { - "c1": 5.051786169396673, - "c2": 5.069534313844078, - "c3": 4.972132811647339, - "c4": 5.373948043519238, - "c5": 5.183470658627303, - "c6": 5.357243600002276, - "c7": 5.149527532915965 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302358, + "c3": 6.4956079519186325, + "c4": 5.196486361534905, + "c5": 3.897364771151179, + "c6": 2.5982431807674526, + "c7": 1.2991215903837263 }, "rgb": [238, 201, 159] }, @@ -383568,23 +383568,23 @@ "year": 1806, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 22.446997404089775, - "c2": -17.697394548569534, - "c3": 21.648872814561148, - "c4": -3.797684286541269, - "c5": -4.3398444736494, - "c6": 13.769103634389428, - "c7": -8.406020703126206 + "points": { + "c1": 3.3326062046100198, + "c2": -24.48297761511155, + "c3": 2.952279991589865, + "c4": -28.04270208077977, + "c5": 8.093103180974001, + "c6": 5.017098501802298, + "c7": 26.275018697713076 }, - "vertexSeeds": { - "c1": 9.141167593548397, - "c2": 8.105191219558733, - "c3": 8.574577126957974, - "c4": 8.782420786326812, - "c5": 8.813697476151193, - "c6": 8.683373410580518, - "c7": 8.250804832698705 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.558021266759127, + "c4": 9.24641701340731, + "c5": 6.9348127600554825, + "c6": 4.623208506703655, + "c7": 2.3116042533518275 }, "rgb": [238, 201, 159] }, @@ -383595,23 +383595,23 @@ "year": 1806, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 25.32638106097827, - "c2": 18.170326790677088, - "c3": -24.901834640920512, - "c4": 31.3778596609219, - "c5": 17.186230283283365, - "c6": -27.47230607523225, - "c7": 15.914871201927447 + "points": { + "c1": -24.780780131657956, + "c2": -33.36978682544837, + "c3": 19.410450371041847, + "c4": -8.403997756386435, + "c5": -5.031151793323577, + "c6": 35.258115310879745, + "c7": -24.46525802045105 }, - "vertexSeeds": { - "c1": 1.7197656070231555, - "c2": 1.542141212034853, - "c3": 1.1714990188644698, - "c4": 1.8757962233699303, - "c5": 1.3129109033360344, - "c6": 1.511153380535987, - "c7": 1.9004678239861281 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981969, + "c3": 2.2884882108183073, + "c4": 1.8307905686546462, + "c5": 1.3730929264909844, + "c6": 0.9153952843273228, + "c7": 0.45769764216366166 }, "rgb": [58, 15, 49] }, @@ -383622,23 +383622,23 @@ "year": 1806, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 5.0550846648074526, - "c2": 7.027388413690161, - "c3": 11.426044251142642, - "c4": -20.538780841782774, - "c5": -17.446018405433982, - "c6": -18.239119703601194, - "c7": -26.78440701995863 + "points": { + "c1": 10.202961597290368, + "c2": -11.212407496187325, + "c3": -8.603418686546458, + "c4": 19.735863266418832, + "c5": 29.36169076719817, + "c6": 9.704539597662233, + "c7": 13.820414464791597 }, - "vertexSeeds": { - "c1": 3.040904529317856, - "c2": 2.810430852361692, - "c3": 3.023935296085747, - "c4": 2.806264887531609, - "c5": 2.776308778021362, - "c6": 2.9617839056290935, - "c7": 2.9902139620865755 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355064, + "c3": 3.6523347202958885, + "c4": 2.921867776236713, + "c5": 2.191400832177527, + "c6": 1.4609338881183516, + "c7": 0.7304669440591758 }, "rgb": [58, 15, 49] }, @@ -383649,23 +383649,23 @@ "year": 1806, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 8.472330997858979, - "c2": 18.14853377160556, - "c3": 8.70316654267226, - "c4": -5.4950898713584415, - "c5": 8.79656354404393, - "c6": -8.473121245286436, - "c7": 2.4080192319015943 + "points": { + "c1": 30.37078459582852, + "c2": 14.238411238280829, + "c3": 16.178036926351513, + "c4": -13.36098454330283, + "c5": -6.165511905391856, + "c6": 5.43069148375287, + "c7": -18.880077716653243 }, - "vertexSeeds": { - "c1": 5.794212002350224, - "c2": 5.7918890916638714, - "c3": 5.463268964686975, - "c4": 5.946274047766147, - "c5": 5.846321885837141, - "c6": 5.700196323635592, - "c7": 5.693094709425553 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -383676,23 +383676,23 @@ "year": 1806, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 8.731440598426019, - "c2": 18.448204090599937, - "c3": -10.53970668525048, - "c4": -12.54642713323879, - "c5": -1.377885193603543, - "c6": -0.310714111066801, - "c7": -18.28787580727064 + "points": { + "c1": 33.35562542997645, + "c2": 22.604390961024933, + "c3": -18.334482018330565, + "c4": 12.362817673550445, + "c5": -23.091438288619067, + "c6": 3.010956058533992, + "c7": -4.606100500138336 }, - "vertexSeeds": { - "c1": 1.7184558150022564, - "c2": 1.6465224337283253, - "c3": 1.7211804802708508, - "c4": 1.7155547209134416, - "c5": 1.5125177369086562, - "c6": 1.6214542587829028, - "c7": 1.4612984772670705 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.080443828016644, + "c4": 1.664355062413314, + "c5": 1.248266296809987, + "c6": 0.832177531206657, + "c7": 0.4160887656033299 }, "rgb": [77, 76, 132] }, @@ -383703,23 +383703,23 @@ "year": 1806, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -22.70749213032956, - "c2": 11.17351148693163, - "c3": 12.302693992984388, - "c4": 7.299683375992274, - "c5": -6.5575465954669525, - "c6": -16.490764577884853, - "c7": 2.764682446635753 + "points": { + "c1": -19.183460565939235, + "c2": -8.975659073187408, + "c3": -24.500389493869736, + "c4": -6.906216855488797, + "c5": -9.122481583014931, + "c6": 10.285610088000553, + "c7": -8.420642363285204 }, - "vertexSeeds": { - "c1": 5.944414042815376, - "c2": 5.6710830080498695, - "c3": 5.910754995753111, - "c4": 5.550192333886835, - "c5": 5.69730116704303, - "c6": 5.934786653128973, - "c7": 5.942665930432313 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -383730,23 +383730,23 @@ "year": 1806, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -1.271369965106107, - "c2": -13.12024553588984, - "c3": 28.007444349648697, - "c4": 3.163433899711439, - "c5": 7.930893173555074, - "c6": 18.94743828001933, - "c7": -6.287848736457956 + "points": { + "c1": -9.499063133192529, + "c2": -18.127006952432062, + "c3": -29.05295127547734, + "c4": -10.515818642180783, + "c5": -25.97144004539912, + "c6": -8.993230532985425, + "c7": 6.528552572686017 }, - "vertexSeeds": { - "c1": 5.9410969153419115, - "c2": 5.949392345932984, - "c3": 5.9698729590876916, - "c4": 6.357286044103949, - "c5": 6.393355218568877, - "c6": 6.401145138702743, - "c7": 6.430492254931127 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434113, + "c3": 7.720758206195106, + "c4": 6.1766065649560815, + "c5": 4.632454923717057, + "c6": 3.0883032824780496, + "c7": 1.5441516412390248 }, "rgb": [77, 76, 132] }, @@ -383757,23 +383757,23 @@ "year": 1806, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -11.304282734440434, - "c2": 25.718141703613853, - "c3": 1.9876319729301493, - "c4": -9.783291311289227, - "c5": -17.381361209936053, - "c6": 3.0466647202010506, - "c7": -8.568016270466561 + "points": { + "c1": 12.189689098213051, + "c2": 15.615510609921714, + "c3": -4.387937013671266, + "c4": 12.415625364833474, + "c5": 7.961674140910084, + "c6": -15.346740999378849, + "c7": 8.591257480365819 }, - "vertexSeeds": { - "c1": 4.801380416356092, - "c2": 4.721669024889469, - "c3": 4.686396145624923, - "c4": 4.8543455660357075, - "c5": 4.874526251424482, - "c6": 4.6143172692776, - "c7": 4.651254478144735 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296807, + "c3": 5.917706888580678, + "c4": 4.734165510864541, + "c5": 3.5506241331484034, + "c6": 2.367082755432266, + "c7": 1.1835413777161377 }, "rgb": [58, 15, 49] }, @@ -383784,23 +383784,23 @@ "year": 1806, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 25.819508293535044, - "c2": 3.2996227166133423, - "c3": 24.726215541160542, - "c4": 6.26975261328684, - "c5": 28.190326693628194, - "c6": -19.642606651151816, - "c7": -2.8270724874001267 + "points": { + "c1": 6.7260774047783585, + "c2": -32.04288233672807, + "c3": 0.9516591077358996, + "c4": 1.5433515466160515, + "c5": -18.01641923603267, + "c6": 3.227515676356461, + "c7": -0.48069224545018585 }, - "vertexSeeds": { - "c1": 2.706065724768247, - "c2": 2.783287737607086, - "c3": 2.8084014966741524, - "c4": 2.90291365445468, - "c5": 2.8130861001144445, - "c6": 2.781873482536928, - "c7": 2.6331237246529975 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073511, + "c3": 3.4905224225612597, + "c4": 2.7924179380490095, + "c5": 2.0943134535367594, + "c6": 1.3962089690245092, + "c7": 0.6981044845122503 }, "rgb": [77, 76, 132] }, @@ -383811,23 +383811,23 @@ "year": 1806, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -22.443250135685055, - "c2": -17.020848827584736, - "c3": 9.141146346406689, - "c4": -6.027370585899455, - "c5": 2.5693934196517354, - "c6": -9.676327688891327, - "c7": 29.22409815278149 + "points": { + "c1": 23.73991988910059, + "c2": 12.647710022972468, + "c3": 26.228983806404095, + "c4": 29.23081772003262, + "c5": 6.165796756327929, + "c6": 28.70816562672273, + "c7": 18.2049525888934 }, - "vertexSeeds": { - "c1": 5.951723572100852, - "c2": 5.555318870602881, - "c3": 5.443246597209672, - "c4": 5.86136790647223, - "c5": 5.881817517029466, - "c6": 5.545051030491656, - "c7": 5.62512183042744 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -383838,23 +383838,23 @@ "year": 1806, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 31.00542221759681, - "c2": -21.83323512098935, - "c3": 32.18330005298567, - "c4": 29.271601613140547, - "c5": 26.903359646383656, - "c6": -8.4317610191342, - "c7": 11.323689219814497 + "points": { + "c1": -22.507910112563863, + "c2": -10.749461310539562, + "c3": -7.851500094735197, + "c4": 33.53143171736548, + "c5": 12.169896993819016, + "c6": 10.477482324218627, + "c7": 12.084889459476123 }, - "vertexSeeds": { - "c1": 8.16228552316157, - "c2": 7.502907524838625, - "c3": 7.27016708487208, - "c4": 7.994258409199629, - "c5": 7.832473342043354, - "c6": 7.942450357331611, - "c7": 7.495373669913627 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147476, + "c4": 8.081368469717983, + "c5": 6.06102635228849, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [58, 15, 49] }, @@ -383865,23 +383865,23 @@ "year": 1806, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 7.722717682158525, - "c2": -3.1834752708535063, - "c3": 3.2664985560602204, - "c4": 8.847482986600149, - "c5": -12.418304912143965, - "c6": 2.590714489589498, - "c7": 19.456508867580865 + "points": { + "c1": 2.4630336846595213, + "c2": 22.29148824938744, + "c3": -26.689125649697722, + "c4": 0.6914376989286843, + "c5": 12.425039437902782, + "c6": 12.576766051303075, + "c7": 20.08536557115515 }, - "vertexSeeds": { - "c1": 5.453313196355839, - "c2": 5.397510200283598, - "c3": 5.473496370491354, - "c4": 5.550787554082133, - "c5": 5.1499951223110845, - "c6": 5.446828667530956, - "c7": 5.2254107453006995 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387882, + "c4": 5.455386037910301, + "c5": 4.091539528432722, + "c6": 2.727693018955142, + "c7": 1.363846509477562 }, "rgb": [58, 15, 49] }, @@ -383892,23 +383892,23 @@ "year": 1806, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": -39.41343491266578, - "c2": -13.718762470169402, - "c3": 42.63148403388073, - "c4": 23.32508148464367, - "c5": 37.072233978351356, - "c6": -20.92786219310547, - "c7": 35.22252328817648 + "points": { + "c1": 37.58788866908534, + "c2": 45.96504599461387, + "c3": -41.252565001763045, + "c4": 39.552280865399915, + "c5": 39.62660498583923, + "c6": 29.68596098277626, + "c7": -37.484128055705284 }, - "vertexSeeds": { - "c1": 10.9199184666883, - "c2": 9.574459584882458, - "c3": 9.535179250944129, - "c4": 9.929063886468853, - "c5": 10.547474506334424, - "c6": 11.03345170284163, - "c7": 10.801659041856835 + "offsets": { + "c1": 18.996763754045308, + "c2": 16.282940360610258, + "c3": 13.569116967175226, + "c4": 10.855293573740175, + "c5": 8.141470180305122, + "c6": 5.427646786870093, + "c7": 2.7138233934350406 }, "rgb": [238, 201, 159] }, @@ -383919,23 +383919,23 @@ "year": 1806, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 7.606282140029414, - "c2": -5.121781420314495, - "c3": 7.653054604983595, - "c4": 31.701493769109724, - "c5": -24.236413223627125, - "c6": 29.504774434348093, - "c7": -27.761070797111294 + "points": { + "c1": 8.415187886067024, + "c2": 29.507360158112256, + "c3": 3.1259701193067144, + "c4": -25.23434604356508, + "c5": 22.142476259920194, + "c6": -5.965293586435337, + "c7": 7.656222956168222 }, - "vertexSeeds": { - "c1": 2.1424686444418533, - "c2": 2.086066101682694, - "c3": 2.106598183920049, - "c4": 2.0863548749639773, - "c5": 2.0897541810513136, - "c6": 2.120634063215825, - "c7": 2.0997461855539115 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.1345353675450807, + "c3": 2.6121128062875623, + "c4": 2.089690245030054, + "c5": 1.5672676837725354, + "c6": 1.044845122515027, + "c7": 0.5224225612575083 }, "rgb": [86, 146, 138] }, @@ -383946,23 +383946,23 @@ "year": 1806, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -16.723208847294504, - "c2": 16.307756657845214, - "c3": -23.99243317819046, - "c4": 17.14727922080174, - "c5": 28.678116278067233, - "c6": -21.027841056951097, - "c7": 6.354641529266754 + "points": { + "c1": 12.847414859025271, + "c2": -16.54821449787414, + "c3": -23.543828918612654, + "c4": -0.7015493200435223, + "c5": 5.185350148393397, + "c6": 30.801248023176505, + "c7": 4.420377623843919 }, - "vertexSeeds": { - "c1": 6.497043951502283, - "c2": 6.693906933632452, - "c3": 7.287938834428767, - "c4": 6.982592822809266, - "c5": 6.192058545855512, - "c6": 7.244398327042974, - "c7": 6.84925933089034 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163664, + "c3": 8.714748035136381, + "c4": 6.971798428109106, + "c5": 5.228848821081832, + "c6": 3.4858992140545584, + "c7": 1.7429496070272736 }, "rgb": [58, 15, 49] }, @@ -383973,23 +383973,23 @@ "year": 1806, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -12.983384804684842, - "c2": 21.796595900767294, - "c3": -31.415362794061394, - "c4": -0.8626080692786147, - "c5": -2.375602041939622, - "c6": 16.95693764276608, - "c7": -30.866139529791617 + "points": { + "c1": 1.4592585187560445, + "c2": 12.200792333143, + "c3": 28.454648963305864, + "c4": 24.259379594999665, + "c5": 17.23399027134198, + "c6": 0.005782605328711554, + "c7": -13.791338119650455 }, - "vertexSeeds": { - "c1": 2.6596178663163834, - "c2": 2.712498881837051, - "c3": 2.86213894784196, - "c4": 2.627793228707762, - "c5": 2.8543278300110333, - "c6": 2.792038605352254, - "c7": 2.6522476022432206 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993064, + "c3": 3.444290337494218, + "c4": 2.7554322699953726, + "c5": 2.066574202496537, + "c6": 1.3777161349976916, + "c7": 0.6888580674988458 }, "rgb": [238, 201, 159] }, @@ -384000,23 +384000,23 @@ "year": 1806, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": 6.186775572257755, - "c2": 19.048306183953066, - "c3": -8.063103007653408, - "c4": -20.537108944375987, - "c5": -19.232294946809326, - "c6": 20.35684047345665, - "c7": 12.238996210065807 + "points": { + "c1": 14.57691497038418, + "c2": 2.304646292330151, + "c3": 6.919319992385564, + "c4": 4.476190600344175, + "c5": 6.41093035671177, + "c6": -9.036063670695693, + "c7": -14.617353638293972 }, - "vertexSeeds": { - "c1": 3.3796793127741243, - "c2": 3.4323642151349394, - "c3": 3.3462838807724453, - "c4": 3.3982220859113212, - "c5": 3.5592900145892123, - "c6": 3.3616590703368514, - "c7": 3.512509790072031 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601945, + "c3": 4.368932038834947, + "c4": 3.4951456310679596, + "c5": 2.6213592233009724, + "c6": 1.7475728155339743, + "c7": 0.8737864077669871 }, "rgb": [58, 15, 49] }, @@ -384027,23 +384027,23 @@ "year": 1806, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": 5.2585234991851095, - "c2": 7.516015746531906, - "c3": -14.18603392515155, - "c4": -1.0626962117900085, - "c5": -2.509553552817664, - "c6": 6.901865492525513, - "c7": 13.23727416655786 + "points": { + "c1": -3.680797658068659, + "c2": -13.46707885785484, + "c3": 1.8504654032787755, + "c4": 11.948323302678624, + "c5": 13.745053554583812, + "c6": 4.494987631497498, + "c7": -12.013547833724925 }, - "vertexSeeds": { - "c1": 9.008983359210003, - "c2": 9.353052358022083, - "c3": 8.560168661931007, - "c4": 8.90641424847528, - "c5": 8.505902644065733, - "c6": 8.900145689118018, - "c7": 9.289506220840037 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467415, + "c3": 11.188164586222834, + "c4": 8.950531668978275, + "c5": 6.7128987517336975, + "c6": 4.475265834489138, + "c7": 2.23763291724456 }, "rgb": [86, 146, 138] }, @@ -384054,23 +384054,23 @@ "year": 1806, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 22.042988250789975, - "c2": -13.429828306669437, - "c3": -18.13363061311063, - "c4": 22.82940614122061, - "c5": 20.762921176936388, - "c6": -14.626629447100028, - "c7": -18.818293519645557 + "points": { + "c1": -14.937890076635405, + "c2": 21.84237789116858, + "c3": -23.609862832232505, + "c4": 14.571996996015692, + "c5": -13.626254057029465, + "c6": -3.906774946453858, + "c7": 2.5010896503654116 }, - "vertexSeeds": { - "c1": 5.696818559540122, - "c2": 5.945335963271225, - "c3": 5.746973941482352, - "c4": 5.518227608557004, - "c5": 5.504673348501616, - "c6": 5.482440944777495, - "c7": 5.95987029966782 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -384081,23 +384081,23 @@ "year": 1806, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": 1.080405627145872, - "c2": 16.61622156096343, - "c3": -6.626760793632586, - "c4": 10.206636592674112, - "c5": -12.28536620406084, - "c6": 14.86863429411816, - "c7": -13.476799754748235 + "points": { + "c1": -8.822979003094625, + "c2": 6.082117315218515, + "c3": 17.27575391729045, + "c4": -7.194543094433417, + "c5": -15.987569416360241, + "c6": -11.09722063002108, + "c7": 11.800806321790944 }, - "vertexSeeds": { - "c1": 1.33521560628206, - "c2": 1.5671224089206015, - "c3": 1.4356420473379494, - "c4": 1.4191663776931966, - "c5": 1.5766719530283444, - "c6": 1.5665932750495903, - "c7": 1.4680962331764067 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.3023578363384196, + "c3": 1.9186315302820172, + "c4": 1.534905224225612, + "c5": 1.1511789181692098, + "c6": 0.7674526121128074, + "c7": 0.38372630605640506 }, "rgb": [86, 146, 138] }, @@ -384108,23 +384108,23 @@ "year": 1806, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -6.400995821497247, - "c2": 11.536050354455817, - "c3": 2.9839415523885826, - "c4": 13.71154905522571, - "c5": 15.590737895302638, - "c6": 26.021304552324132, - "c7": 4.357494300799175 + "points": { + "c1": 24.154074521973023, + "c2": 26.499725993847406, + "c3": -15.704154273247498, + "c4": -7.1819274806841875, + "c5": -25.571949573488382, + "c6": 11.796799607271069, + "c7": 12.79411104186935 }, - "vertexSeeds": { - "c1": 3.8270260131262823, - "c2": 4.135162492333905, - "c3": 3.965921633109545, - "c4": 3.987815895914851, - "c5": 4.109868520690078, - "c6": 4.006304908617729, - "c7": 4.136877741863061 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.9639389736477115, + "c3": 4.969949144706426, + "c4": 3.9759593157651407, + "c5": 2.9819694868238558, + "c6": 1.9879796578825704, + "c7": 0.9939898289412852 }, "rgb": [77, 76, 132] }, @@ -384135,23 +384135,23 @@ "year": 1805, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 3.2631837216692894, - "c2": -12.785420146638778, - "c3": -20.014736732014043, - "c4": 10.833722780817421, - "c5": 2.0522355142918265, - "c6": -6.859440063308789, - "c7": -0.5429901648128137 + "points": { + "c1": 21.627800582577674, + "c2": -19.469892123092944, + "c3": -25.360738391195614, + "c4": -9.929643536868532, + "c5": -0.9356566797804327, + "c6": 10.515080551921496, + "c7": 26.57958628989928 }, - "vertexSeeds": { - "c1": 5.83422660618908, - "c2": 5.572581025814817, - "c3": 5.992919531245883, - "c4": 5.772737630416771, - "c5": 5.976961094540053, - "c6": 5.8713341713082015, - "c7": 5.634585364283769 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -384162,23 +384162,23 @@ "year": 1806, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -19.035556505813584, - "c2": -16.605006554690718, - "c3": 13.846828829358547, - "c4": -10.447330359938503, - "c5": 7.591663818892901, - "c6": -15.853898745947268, - "c7": 24.404571480654287 + "points": { + "c1": -21.012134303320096, + "c2": 25.42483277036806, + "c3": -8.141899733481814, + "c4": 7.668421688614462, + "c5": 6.010425575267053, + "c6": -11.283226059322379, + "c7": -15.157040539246948 }, - "vertexSeeds": { - "c1": 2.5081979796095295, - "c2": 2.501586867682075, - "c3": 2.429541643377854, - "c4": 2.5122823565555406, - "c5": 2.35195391973859, - "c6": 2.4524949047359796, - "c7": 2.2597895765485285 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690736, + "c3": 3.028201571890893, + "c4": 2.422561257512713, + "c5": 1.8169209431345368, + "c6": 1.2112806287563564, + "c7": 0.6056403143781803 }, "rgb": [222, 0, 59] }, @@ -384189,23 +384189,23 @@ "year": 1806, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -14.452675386812814, - "c2": -3.8169345449033294, - "c3": -4.935725086019101, - "c4": -19.05234033015327, - "c5": 27.06793500957593, - "c6": 11.696160314702336, - "c7": -14.329107382091035 + "points": { + "c1": -31.989964396807657, + "c2": 6.384259428231836, + "c3": -26.804802937521153, + "c4": 21.874671034566163, + "c5": -15.395495330173492, + "c6": -18.260482097903576, + "c7": 31.801845651279734 }, - "vertexSeeds": { - "c1": 2.6817982807288265, - "c2": 2.7478783301894305, - "c3": 2.9172094139258236, - "c4": 2.737843293739423, - "c5": 2.783250036043771, - "c6": 2.7126420146374977, - "c7": 2.870876442518352 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274622, + "c3": 3.6061026352288477, + "c4": 2.8848821081830813, + "c5": 2.1636615811373066, + "c6": 1.4424410540915407, + "c7": 0.721220527045766 }, "rgb": [238, 201, 159] }, @@ -384216,23 +384216,23 @@ "year": 1806, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 8.026325701046034, - "c2": -11.846715361933171, - "c3": -8.79908790813721, - "c4": -19.9557521453184, - "c5": -2.271708022773609, - "c6": 8.28319766485707, - "c7": 28.906195658227603 + "points": { + "c1": 17.403103561142984, + "c2": -7.358338303351218, + "c3": 20.263226774122224, + "c4": 19.78291943064503, + "c5": 25.27206061681737, + "c6": -31.106792446996774, + "c7": 25.553979100623607 }, - "vertexSeeds": { - "c1": 5.10586080868837, - "c2": 5.239841142108986, - "c3": 5.318505334594701, - "c4": 4.958437399919051, - "c5": 5.193049469772514, - "c6": 5.121006649004326, - "c7": 4.83488251736975 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141474, + "c3": 6.403143781784567, + "c4": 5.12251502542764, + "c5": 3.8418862690707325, + "c6": 2.5612575127138246, + "c7": 1.2806287563569168 }, "rgb": [238, 201, 159] }, @@ -384243,23 +384243,23 @@ "year": 1806, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 16.359407407369638, - "c2": -7.637228189590637, - "c3": -29.22276869394345, - "c4": -9.747256961110818, - "c5": 12.961566863764936, - "c6": -6.115921181849583, - "c7": -8.866311403269002 + "points": { + "c1": -21.810526191188774, + "c2": -5.64302430372927, + "c3": 20.360305186384544, + "c4": 26.31345188563396, + "c5": 23.158208029882232, + "c6": 27.688281814407738, + "c7": -0.34240169703818424 }, - "vertexSeeds": { - "c1": 1.7333556439333837, - "c2": 1.8416771337058806, - "c3": 1.8044805438388638, - "c4": 1.7375204690129569, - "c5": 1.7470808042577437, - "c6": 1.7348614613218134, - "c7": 1.7921381643278218 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.6629680998613017, + "c3": 2.219140083217756, + "c4": 1.7753120665742035, + "c5": 1.3314840499306508, + "c6": 0.8876560332870981, + "c7": 0.44382801664355276 }, "rgb": [58, 15, 49] }, @@ -384270,23 +384270,23 @@ "year": 1807, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": -9.56958303629498, - "c2": 42.296858773607866, - "c3": -41.43099928873296, - "c4": 47.99621110642133, - "c5": -12.488172380401409, - "c6": 21.882195154848276, - "c7": -48.91148509977379 + "points": { + "c1": -4.77492154866043, + "c2": 28.50439697722969, + "c3": -33.72457663913697, + "c4": 16.249484594744047, + "c5": -27.057694748688764, + "c6": -34.47003040590058, + "c7": 18.267464011721003 }, - "vertexSeeds": { - "c1": 7.090108685165585, - "c2": 7.765536475756274, - "c3": 7.146442886491878, - "c4": 7.0457127834563655, - "c5": 6.884113742694395, - "c6": 7.107289825193776, - "c7": 7.733355785990991 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169206, + "c3": 9.29264909847435, + "c4": 7.434119278779476, + "c5": 5.575589459084603, + "c6": 3.71705963938973, + "c7": 1.858529819694873 }, "rgb": [77, 76, 132] }, @@ -384297,23 +384297,23 @@ "year": 1806, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 24.91304058362248, - "c2": 27.502344607172258, - "c3": -20.518101400027746, - "c4": -22.01253037502624, - "c5": 10.185609945489187, - "c6": -12.574770104192858, - "c7": 25.652041226908 + "points": { + "c1": -27.62330211077159, + "c2": -3.370092924979751, + "c3": 1.7974011863554118, + "c4": -19.19561509161739, + "c5": -27.76821607547551, + "c6": -29.052298224069443, + "c7": -25.750217172796233 }, - "vertexSeeds": { - "c1": 4.258697544080053, - "c2": 4.457445826021454, - "c3": 4.396648931170908, - "c4": 4.205904742579998, - "c5": 4.363842342754941, - "c6": 4.656800295633097, - "c7": 4.629532856117499 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693485, + "c3": 5.5709662505779, + "c4": 4.456773000462324, + "c5": 3.342579750346738, + "c6": 2.228386500231162, + "c7": 1.1141932501155856 }, "rgb": [238, 201, 159] }, @@ -384324,23 +384324,23 @@ "year": 1806, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -5.9937017019037775, - "c2": 7.620906463255647, - "c3": -26.7271687227462, - "c4": -5.854525501887139, - "c5": 26.143588852436874, - "c6": 9.209418706971451, - "c7": -28.492953094687813 + "points": { + "c1": 30.53619354483374, + "c2": 25.5541701155525, + "c3": 26.372292037787677, + "c4": -20.254536068353055, + "c5": 8.589557140971603, + "c6": -19.491788345695632, + "c7": 26.227056192630496 }, - "vertexSeeds": { - "c1": 6.626955150111518, - "c2": 6.6207261531873485, - "c3": 6.880258168976269, - "c4": 7.079789703060096, - "c5": 6.649250608212856, - "c6": 6.751758389286829, - "c7": 6.966901277639627 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761441, + "c3": 8.483587609801203, + "c4": 6.786870087840962, + "c5": 5.090152565880721, + "c6": 3.393435043920481, + "c7": 1.6967175219602404 }, "rgb": [86, 146, 138] }, @@ -384351,23 +384351,23 @@ "year": 1806, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -13.53792155601867, - "c2": 30.353107734608784, - "c3": -24.23945857028538, - "c4": -9.618597817110967, - "c5": -13.173499139175185, - "c6": -21.06449395285552, - "c7": 31.478317057135868 + "points": { + "c1": 25.099251055121698, + "c2": -24.31624359724338, + "c3": -22.648992177497384, + "c4": -29.282796241041297, + "c5": 2.9946495833797613, + "c6": -6.581557581095204, + "c7": -29.73047088456221 }, - "vertexSeeds": { - "c1": 3.697665351290956, - "c2": 3.86358115397586, - "c3": 3.8047721935800145, - "c4": 3.867269771316481, - "c5": 3.823738246520903, - "c6": 3.8791474199814306, - "c7": 3.727129082260012 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205272, + "c3": 4.715672676837728, + "c4": 3.772538141470176, + "c5": 2.8294036061026318, + "c6": 1.886269070735088, + "c7": 0.943134535367544 }, "rgb": [58, 15, 49] }, @@ -384378,23 +384378,23 @@ "year": 1806, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -18.38645440843431, - "c2": 21.19487411039349, - "c3": -26.289284622620745, - "c4": -25.54420449655938, - "c5": -1.243706628252788, - "c6": -21.188004547072723, - "c7": -6.016355984555499 + "points": { + "c1": 27.94009952271912, + "c2": -4.1543303879684785, + "c3": -18.78429614178581, + "c4": -23.899907300792254, + "c5": 17.22533566459879, + "c6": -0.7619902698803216, + "c7": -10.176407495718664 }, - "vertexSeeds": { - "c1": 2.8701135024926394, - "c2": 2.7260306533290164, - "c3": 2.681166057198099, - "c4": 2.7504954118250504, - "c5": 2.819439795228931, - "c6": 2.791015212067103, - "c7": 2.774844996760116 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073511, + "c3": 3.4905224225612597, + "c4": 2.7924179380490095, + "c5": 2.0943134535367594, + "c6": 1.3962089690245092, + "c7": 0.6981044845122503 }, "rgb": [222, 0, 59] }, @@ -384405,23 +384405,23 @@ "year": 1806, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -30.76113168951213, - "c2": 2.385801036883855, - "c3": 22.779094733888705, - "c4": -17.77895759388423, - "c5": 16.08151384562749, - "c6": 24.316204995870123, - "c7": -9.696434160640344 + "points": { + "c1": 24.248096629871135, + "c2": -24.902789109066774, + "c3": 2.8469342883792166, + "c4": 25.612103133224828, + "c5": -14.291657199865313, + "c6": 32.66229113268278, + "c7": -32.62474167993521 }, - "vertexSeeds": { - "c1": 1.461956425962335, - "c2": 1.3202365311057855, - "c3": 1.3312406655212514, - "c4": 1.4894997946648165, - "c5": 1.475162492859181, - "c6": 1.486145860834291, - "c7": 1.4761220320250101 + "offsets": { + "c1": 2.621359223300971, + "c2": 2.246879334257974, + "c3": 1.8723994452149797, + "c4": 1.4979195561719827, + "c5": 1.1234396671289884, + "c6": 0.7489597780859913, + "c7": 0.37447988904299434 }, "rgb": [86, 146, 138] }, @@ -384432,23 +384432,23 @@ "year": 1806, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 0.033014928150166156, - "c2": 8.381406981022216, - "c3": -19.199441340900208, - "c4": -10.184988724004313, - "c5": -9.92055977131869, - "c6": -25.305358469085988, - "c7": -23.57093679439267 + "points": { + "c1": -8.658377015820658, + "c2": -31.138001986980278, + "c3": 21.01229832821786, + "c4": -14.792643298573438, + "c5": 17.518952754047774, + "c6": -5.645403599824419, + "c7": 24.219034677023792 }, - "vertexSeeds": { - "c1": 1.1257628050780235, - "c2": 1.0918794006508665, - "c3": 1.091481165208722, - "c4": 1.0993839226435085, - "c5": 1.1151005115003514, - "c6": 1.081154247143087, - "c7": 1.0898055604816772 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.6366158113730915, + "c3": 1.3638465094775793, + "c4": 1.0910772075820625, + "c5": 0.8183079056865458, + "c6": 0.5455386037910336, + "c7": 0.2727693018955168 }, "rgb": [238, 201, 159] }, @@ -384459,23 +384459,23 @@ "year": 1806, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -21.092857926753638, - "c2": -34.30210828244237, - "c3": 28.214365847495472, - "c4": 0.6354921977016303, - "c5": 32.49929816910726, - "c6": 25.74635601869918, - "c7": -34.206159357888744 + "points": { + "c1": -13.861388262803146, + "c2": 17.480482738416605, + "c3": 29.324180541623306, + "c4": -30.443829445651676, + "c5": 2.794793248547208, + "c6": -4.980550969418893, + "c7": 4.796569872064353 }, - "vertexSeeds": { - "c1": 0.8167779346822064, - "c2": 0.8486632769287538, - "c3": 0.8461361600676848, - "c4": 0.8988705388586741, - "c5": 0.8808345703336931, - "c6": 0.8414895738811827, - "c7": 0.8592151099639468 + "offsets": { + "c1": 1.5857605177993526, + "c2": 1.359223300970873, + "c3": 1.1326860841423954, + "c4": 0.9061488673139161, + "c5": 0.6796116504854365, + "c6": 0.45307443365695893, + "c7": 0.22653721682847947 }, "rgb": [222, 0, 59] }, @@ -384486,23 +384486,23 @@ "year": 1806, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": 41.94330724749271, - "c2": -3.909785835015022, - "c3": -23.869760741007482, - "c4": 26.50238078601295, - "c5": 3.654012858270079, - "c6": -4.02107995871895, - "c7": -4.187140634600766 + "points": { + "c1": 34.202377452974105, + "c2": -16.526746323636026, + "c3": -25.670181474877747, + "c4": -10.360056110596034, + "c5": -38.7671038766569, + "c6": -25.146483941513328, + "c7": -36.683953819236635 }, - "vertexSeeds": { - "c1": 3.7109664630239556, - "c2": 3.7447013738103414, - "c3": 3.706276992554482, - "c4": 3.720512356817154, - "c5": 3.736114213289084, - "c6": 3.6554568780602716, - "c7": 3.667790445314769 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843269, + "c3": 4.507628294036053, + "c4": 3.606102635228836, + "c5": 2.7045769764216194, + "c6": 1.803051317614433, + "c7": 0.9015256588072165 }, "rgb": [86, 146, 138] }, @@ -384513,23 +384513,23 @@ "year": 1806, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -10.04589660330053, - "c2": 17.215736027401633, - "c3": 23.603182094033514, - "c4": -4.572005721226571, - "c5": -21.86653114039207, - "c6": 25.693889570259195, - "c7": 14.370076734028181 + "points": { + "c1": -8.315069828075636, + "c2": -22.348228773652252, + "c3": 5.648723841250742, + "c4": -4.803327671078897, + "c5": 13.01062099872457, + "c6": -29.493893326271866, + "c7": -7.979365369829431 }, - "vertexSeeds": { - "c1": 1.5511625905261812, - "c2": 1.5595594323392954, - "c3": 1.9165912622813315, - "c4": 1.5918331884001662, - "c5": 1.9341442432578475, - "c6": 1.5359688449606923, - "c7": 1.7738348750301016 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177535, + "c3": 1.8492834026814613, + "c4": 1.479426722145169, + "c5": 1.1095700416088767, + "c6": 0.7397133610725845, + "c7": 0.3698566805362922 }, "rgb": [86, 146, 138] }, @@ -384540,23 +384540,23 @@ "year": 1806, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 23.297583194070537, - "c2": -23.397429137739636, - "c3": -15.031211072060456, - "c4": -7.676499652207614, - "c5": -26.778902097000493, - "c6": 21.75023487319123, - "c7": -3.490147227355834 + "points": { + "c1": -3.031618403251784, + "c2": 5.818218544898105, + "c3": -16.979183851428935, + "c4": -4.795530707322321, + "c5": -3.8721810849233016, + "c6": -20.034874839157013, + "c7": 22.673062056297642 }, - "vertexSeeds": { - "c1": 1.6273666968750617, - "c2": 1.7428856783432949, - "c3": 1.5831675312737454, - "c4": 1.6578169835430228, - "c5": 1.5635578984866774, - "c6": 1.7156927297072393, - "c7": 1.6149798525904997 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.7184466019417473, + "c3": 2.2653721682847894, + "c4": 1.8122977346278315, + "c5": 1.3592233009708736, + "c6": 0.9061488673139158, + "c7": 0.4530744336569579 }, "rgb": [77, 76, 132] }, @@ -384567,23 +384567,23 @@ "year": 1806, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -11.564547153751455, - "c2": 21.66101017329072, - "c3": -22.53926634240971, - "c4": 18.516225880549726, - "c5": 34.07933152648372, - "c6": 9.476074846524206, - "c7": -2.2346929502069983 + "points": { + "c1": 25.45124167344614, + "c2": -7.895396379825765, + "c3": -23.387220736704116, + "c4": 3.4805031214852065, + "c5": -29.640266091493434, + "c6": 31.11781175443206, + "c7": -20.582402266665163 }, - "vertexSeeds": { - "c1": 2.8595433373470014, - "c2": 2.7483776406457143, - "c3": 2.890126936956474, - "c4": 2.728598690320677, - "c5": 2.905820927200959, - "c6": 3.0002170403896566, - "c7": 2.7921624172792465 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475725, + "c3": 3.721682847896441, + "c4": 2.977346278317151, + "c5": 2.2330097087378604, + "c6": 1.4886731391585755, + "c7": 0.744336569579285 }, "rgb": [86, 146, 138] }, @@ -384594,23 +384594,23 @@ "year": 1806, "resistanceReported": false, "duration": 1209600, - "curveSeeds": { - "c1": 8.71490833521815, - "c2": -9.205068676710102, - "c3": -7.281332116081882, - "c4": -7.932394143927322, - "c5": 0.6474059051923842, - "c6": -1.042987436248394, - "c7": -5.797514411889811 + "points": { + "c1": -13.138706376619128, + "c2": 1.1436147522281317, + "c3": 11.445870638954139, + "c4": 12.247224075610246, + "c5": -0.6531457896183479, + "c6": -3.42554862951601, + "c7": -5.927930843456208 }, - "vertexSeeds": { - "c1": 7.552200666537044, - "c2": 6.9196543334418905, - "c3": 7.475624535101774, - "c4": 7.0005183419530566, - "c5": 7.1997951069479305, - "c6": 7.0315588260644235, - "c7": 7.519962381962599 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [86, 146, 138] }, @@ -384621,23 +384621,23 @@ "year": 1806, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 21.261466259894082, - "c2": 20.862254010681337, - "c3": 15.583249689393835, - "c4": -2.4514902642305536, - "c5": 23.53145779388697, - "c6": -22.619285868704072, - "c7": 26.16078555108213 + "points": { + "c1": -0.17814914182784491, + "c2": 28.14336285566908, + "c3": -1.5916395588927656, + "c4": 19.41710661272327, + "c5": 25.285775329990148, + "c6": 23.63062037500946, + "c7": 4.189685913521078 }, - "vertexSeeds": { - "c1": 4.76315846232056, - "c2": 4.8186522185834, - "c3": 5.044453170788565, - "c4": 4.9097434669182265, - "c5": 5.016024977000731, - "c6": 5.128499930098841, - "c7": 5.093755615782721 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [86, 146, 138] }, @@ -384648,23 +384648,23 @@ "year": 1806, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 6.416643049394345, - "c2": -4.641620795722261, - "c3": -30.57055227828387, - "c4": 11.464737510318585, - "c5": -13.838652159080358, - "c6": -11.3235060898276, - "c7": 23.578364942750135 + "points": { + "c1": -19.934930491717967, + "c2": -23.87988225774745, + "c3": -16.81818836627657, + "c4": -25.289167597419052, + "c5": -33.777495379850365, + "c6": 4.111294504342311, + "c7": 9.238205851444512 }, - "vertexSeeds": { - "c1": 5.750600052635139, - "c2": 5.481993984255388, - "c3": 5.427898973745265, - "c4": 5.413297462414385, - "c5": 5.633094205196067, - "c6": 5.512293098840802, - "c7": 5.859773484114642 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187249, + "c3": 7.00416088765603, + "c4": 5.603328710124832, + "c5": 4.2024965325936146, + "c6": 2.801664355062416, + "c7": 1.400832177531199 }, "rgb": [222, 0, 59] }, @@ -384675,23 +384675,23 @@ "year": 1807, "resistanceReported": false, "duration": 40953600, - "curveSeeds": { - "c1": 1.341792627883322, - "c2": 12.697934529403923, - "c3": 38.86903331303424, - "c4": 27.515192011754607, - "c5": 48.030534899848234, - "c6": -44.928334449843135, - "c7": 50.698930516006826 + "points": { + "c1": 26.60972632624386, + "c2": -36.7945532031957, + "c3": 10.607867686070733, + "c4": 17.282323532327453, + "c5": 42.653291372395856, + "c6": 43.29868704538232, + "c7": 20.6546390255904 }, - "vertexSeeds": { - "c1": 3.116208488120283, - "c2": 3.3602774178952792, - "c3": 3.1153398771120147, - "c4": 3.4459255003197944, - "c5": 3.251960711801172, - "c6": 3.350609886233115, - "c7": 3.012339196501294 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400831, + "c3": 4.253351826167357, + "c4": 3.4026814609338896, + "c5": 2.5520110957004154, + "c6": 1.7013407304669415, + "c7": 0.8506703652334738 }, "rgb": [86, 146, 138] }, @@ -384702,23 +384702,23 @@ "year": 1807, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": 31.967393220803316, - "c2": 42.75150022286185, - "c3": -20.916997072803014, - "c4": 11.368924654849316, - "c5": -30.736469876381413, - "c6": -5.874446969474853, - "c7": 36.93955320158966 + "points": { + "c1": -2.4448013592762265, + "c2": 32.87881938967821, + "c3": 45.617774638188266, + "c4": 7.571959712012138, + "c5": -34.65164535017741, + "c6": 49.746134489063095, + "c7": 10.78486666583047 }, - "vertexSeeds": { - "c1": 1.4799075890315745, - "c2": 1.5769970830182298, - "c3": 1.8092755171177677, - "c4": 1.4621259508359605, - "c5": 1.8766313182078802, - "c6": 1.7337553766198586, - "c7": 1.7656122344311398 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624134, + "c3": 2.3347202958853446, + "c4": 1.8677762367082755, + "c5": 1.4008321775312067, + "c6": 0.9338881183541378, + "c7": 0.4669440591770689 }, "rgb": [238, 201, 159] }, @@ -384729,23 +384729,23 @@ "year": 1806, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 17.262429319701262, - "c2": -12.52943803047286, - "c3": -24.382011576087343, - "c4": -26.727904306913786, - "c5": 7.740446263625586, - "c6": -9.498205653619351, - "c7": 20.48005908620516 + "points": { + "c1": -23.955124517603267, + "c2": -24.19541866691379, + "c3": -12.061425401336617, + "c4": 20.558245683791874, + "c5": 5.631197011904625, + "c6": -22.87539734700635, + "c7": 34.18246583043077 }, - "vertexSeeds": { - "c1": 5.292118715523721, - "c2": 5.288709288489758, - "c3": 5.2868285497813945, - "c4": 5.198623115405713, - "c5": 5.231830211920663, - "c6": 5.250496365724436, - "c7": 5.2331134201028595 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061026, + "c3": 6.356911696717521, + "c4": 5.085529357374017, + "c5": 3.814147018030513, + "c6": 2.5427646786870084, + "c7": 1.2713823393435042 }, "rgb": [86, 146, 138] }, @@ -384756,23 +384756,23 @@ "year": 1807, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": 37.857966328190194, - "c2": 36.08746337185267, - "c3": -41.720652686320435, - "c4": 14.917634517995353, - "c5": 20.9916850393331, - "c6": -31.506136448807098, - "c7": -14.121364061227975 + "points": { + "c1": -9.512245955565632, + "c2": -21.41321364784846, + "c3": 24.898607702246302, + "c4": 28.84523874502181, + "c5": -38.24204455999312, + "c6": -9.526725234917336, + "c7": -39.95102136090754 }, - "vertexSeeds": { - "c1": 2.846529931382545, - "c2": 2.9336515929528795, - "c3": 2.9110595125333614, - "c4": 2.9736317793671154, - "c5": 2.791075720845114, - "c6": 2.529050171621304, - "c7": 2.928348742493878 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234399, + "c3": 3.5829865926953297, + "c4": 2.866389274156266, + "c5": 2.149791955617197, + "c6": 1.433194637078133, + "c7": 0.7165973185390637 }, "rgb": [58, 15, 49] }, @@ -384783,23 +384783,23 @@ "year": 1806, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -9.6389111927129, - "c2": -35.42794652822254, - "c3": 29.42982122725791, - "c4": 6.447418922041265, - "c5": -15.635661821595523, - "c6": -2.3556080897745133, - "c7": -28.411969842900145 + "points": { + "c1": 26.43392318668591, + "c2": -33.338595961728146, + "c3": -31.854881139594667, + "c4": -16.02677019109054, + "c5": 15.835897680668893, + "c6": -34.90600605809375, + "c7": -8.184915498395078 }, - "vertexSeeds": { - "c1": 4.930944899735001, - "c2": 5.164132746543463, - "c3": 4.723548785414572, - "c4": 4.504275163844307, - "c5": 5.226127743131482, - "c6": 4.8360598352582285, - "c7": 4.089634986553858 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980582, + "c3": 6.310679611650486, + "c4": 5.048543689320387, + "c5": 3.7864077669902927, + "c6": 2.5242718446601935, + "c7": 1.2621359223300952 }, "rgb": [222, 0, 59] }, @@ -384810,23 +384810,23 @@ "year": 1806, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 1.5213048137366982, - "c2": 18.539075507487432, - "c3": 8.585077433286138, - "c4": 9.214523231249373, - "c5": 17.683336974363904, - "c6": 14.44760866138622, - "c7": -11.459663250394389 + "points": { + "c1": -0.842268685752515, + "c2": 9.43689887126014, + "c3": 9.785533182316023, + "c4": -0.9496985953499006, + "c5": 5.966415446419404, + "c6": -6.07086486016555, + "c7": 10.615130528721131 }, - "vertexSeeds": { - "c1": 6.867873232331721, - "c2": 7.338328008451869, - "c3": 7.036662538408493, - "c4": 8.09910228343875, - "c5": 6.941668360341693, - "c6": 6.070428695623187, - "c7": 6.498803903797064 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260752, + "c3": 10.49468331021729, + "c4": 8.39574664817383, + "c5": 6.296809986130376, + "c6": 4.197873324086921, + "c7": 2.0989366620434606 }, "rgb": [238, 201, 159] }, @@ -384837,23 +384837,23 @@ "year": 1807, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 35.108731953376406, - "c2": -26.268651033892606, - "c3": 25.786129014207333, - "c4": -1.7711663761858887, - "c5": -42.01249435433536, - "c6": 10.005191860960693, - "c7": 33.58203240130196 + "points": { + "c1": -21.077264097205127, + "c2": 37.14625255153226, + "c3": -31.872400347277978, + "c4": 35.91130661004695, + "c5": -40.20646755846738, + "c6": 16.486849932053573, + "c7": -40.340516993408485 }, - "vertexSeeds": { - "c1": 4.08884076172582, - "c2": 4.002588477741569, - "c3": 4.125167180820956, - "c4": 4.761740092506912, - "c5": 4.18878175050407, - "c6": 4.412636903410972, - "c7": 4.258807952071541 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975034, + "c3": 5.732778548312531, + "c4": 4.586222838650024, + "c5": 3.439667128987517, + "c6": 2.293111419325015, + "c7": 1.1465557096625074 }, "rgb": [238, 201, 159] }, @@ -384864,23 +384864,23 @@ "year": 1806, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 3.3380420104401836, - "c2": -20.173679323865002, - "c3": -8.023415096043284, - "c4": -22.279000629643193, - "c5": 21.83770068507345, - "c6": 19.453293898325178, - "c7": 3.1796146495696753 + "points": { + "c1": 4.990747594085189, + "c2": -25.12958749605259, + "c3": 26.014296526703646, + "c4": 17.485324091944854, + "c5": -12.107094231268833, + "c6": 1.6548389322357338, + "c7": 25.33342005397831 }, - "vertexSeeds": { - "c1": 2.588801189482585, - "c2": 2.6406354126511395, - "c3": 2.5738483521203492, - "c4": 2.3235836749101066, - "c5": 2.370677942187063, - "c6": 2.411989226003011, - "c7": 2.3327854501956637 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104063, + "c3": 3.166897827092002, + "c4": 2.5335182616736054, + "c5": 1.9001386962552012, + "c6": 1.2667591308368007, + "c7": 0.6333795654184003 }, "rgb": [238, 201, 159] }, @@ -384891,23 +384891,23 @@ "year": 1807, "resistanceReported": false, "duration": 41040000, - "curveSeeds": { - "c1": 1.3909284236895019, - "c2": -22.68035911640888, - "c3": -49.56180595271834, - "c4": 36.210180835846295, - "c5": 3.0608821238176205, - "c6": 41.609904565262944, - "c7": 21.708806015683344 + "points": { + "c1": -20.02017364867089, + "c2": 29.907150486070584, + "c3": -10.145830575868253, + "c4": 54.80058475710812, + "c5": 34.67041614406674, + "c6": -10.213070859028981, + "c7": -17.212520000512278 }, - "vertexSeeds": { - "c1": 1.2349918709301506, - "c2": 1.192649605345369, - "c3": 1.2316350026448668, - "c4": 1.2093832951820893, - "c5": 1.2346745500961924, - "c6": 1.2815007072132767, - "c7": 1.2379328422798528 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350895, + "c3": 1.5718908922792407, + "c4": 1.2575127138233915, + "c5": 0.943134535367547, + "c6": 0.6287563569116981, + "c7": 0.31437817845584903 }, "rgb": [77, 76, 132] }, @@ -384918,23 +384918,23 @@ "year": 1806, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -3.6674452417480694, - "c2": 17.43034576081784, - "c3": 2.0277351953857234, - "c4": 6.069431603450983, - "c5": 1.0407306751949363, - "c6": 18.24427561301759, - "c7": -8.144350848324141 + "points": { + "c1": 20.31012152112714, + "c2": 25.510750140267515, + "c3": -22.6530042410977, + "c4": -7.922562630558026, + "c5": 16.85185026225798, + "c6": -17.067665197147303, + "c7": 4.886291789079753 }, - "vertexSeeds": { - "c1": 5.510982450724599, - "c2": 5.341113723489277, - "c3": 5.373797771167543, - "c4": 5.508324973664216, - "c5": 5.328944837726011, - "c6": 5.719618222868138, - "c7": 5.56775620697392 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307905, + "c3": 7.0735090152565885, + "c4": 5.658807212205271, + "c5": 4.244105409153953, + "c6": 2.8294036061026353, + "c7": 1.4147018030513177 }, "rgb": [77, 76, 132] }, @@ -384945,23 +384945,23 @@ "year": 1806, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -8.567913615288582, - "c2": -11.869171427379072, - "c3": -15.173864836281208, - "c4": -12.038306968624482, - "c5": 33.2567645061264, - "c6": -31.60424837129613, - "c7": 20.63715485804302 + "points": { + "c1": 2.782518449804712, + "c2": -14.152241495029621, + "c3": -14.129805133334788, + "c4": 26.00593192831954, + "c5": 35.492487091406915, + "c6": 0.1464276273051297, + "c7": 0.0036755680455158313 }, - "vertexSeeds": { - "c1": 1.6427545744703758, - "c2": 1.5040735550131352, - "c3": 1.3868722875472934, - "c4": 1.2783436182709622, - "c5": 1.717962125773247, - "c6": 1.7261961841049684, - "c7": 1.4519221155160438 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210824, + "c3": 2.1960240406842346, + "c4": 1.7568192325473881, + "c5": 1.3176144244105406, + "c6": 0.8784096162736941, + "c7": 0.43920480813684776 }, "rgb": [77, 76, 132] }, @@ -384972,23 +384972,23 @@ "year": 1806, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 34.3001409732976, - "c2": -9.795623505099655, - "c3": 16.844206297291706, - "c4": -16.763634416535847, - "c5": -22.834821935042363, - "c6": 27.364329030278256, - "c7": 20.202754166378412 + "points": { + "c1": -11.629832566538177, + "c2": -6.6931659922687885, + "c3": -19.35559004165987, + "c4": -16.804297770441888, + "c5": -10.336123469174495, + "c6": 0.5567971767844853, + "c7": -16.549127546743755 }, - "vertexSeeds": { - "c1": 5.147405020221415, - "c2": 5.101012343220539, - "c3": 5.2943920860951605, - "c4": 5.194864211052443, - "c5": 5.172354421450944, - "c6": 5.438180124871576, - "c7": 5.1149752502887464 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543699, + "c3": 6.6343042071197385, + "c4": 5.307443365695799, + "c5": 3.98058252427184, + "c6": 2.6537216828478996, + "c7": 1.3268608414239595 }, "rgb": [58, 15, 49] }, @@ -384999,23 +384999,23 @@ "year": 1806, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 0.04977224147751258, - "c2": 25.699622139043377, - "c3": -9.001065969966263, - "c4": 26.214836535764974, - "c5": 18.989950143708043, - "c6": -0.9550384734573782, - "c7": -25.076064330311432 + "points": { + "c1": 2.3814874043619554, + "c2": 19.123467844031033, + "c3": -2.9165282045783627, + "c4": 19.674245208522287, + "c5": 23.68409344571603, + "c6": 9.47272740570353, + "c7": -16.341162436269798 }, - "vertexSeeds": { - "c1": 3.75196510693436, - "c2": 3.276261390611577, - "c3": 3.74669126435812, - "c4": 3.594175350869417, - "c5": 3.32368960235298, - "c6": 3.6483064763047093, - "c7": 3.29782553159232 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285714, + "c3": 4.761904761904762, + "c4": 3.8095238095238093, + "c5": 2.857142857142857, + "c6": 1.9047619047619047, + "c7": 0.9523809523809523 }, "rgb": [86, 146, 138] }, @@ -385026,23 +385026,23 @@ "year": 1806, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -7.858386708394896, - "c2": 12.362934910793257, - "c3": 8.231450630394818, - "c4": -24.747833549683314, - "c5": 23.33577682643304, - "c6": 25.136732669292087, - "c7": -12.390394194350673 + "points": { + "c1": -15.83672588526317, + "c2": 31.936651158503132, + "c3": -4.424005512773377, + "c4": 29.041474310985194, + "c5": 21.88834876318824, + "c6": -15.532828378480335, + "c7": 9.696787069346662 }, - "vertexSeeds": { - "c1": 4.958657632171779, - "c2": 5.039245249769524, - "c3": 5.157996538763334, - "c4": 4.913717745704172, - "c5": 4.983738883090963, - "c6": 4.973600835242966, - "c7": 4.952173783333921 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [238, 201, 159] }, @@ -385053,23 +385053,23 @@ "year": 1806, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -28.086936056966156, - "c2": -14.867996272452194, - "c3": -18.70801902229131, - "c4": 15.422453230900913, - "c5": 6.439610330499988, - "c6": 0.7639493197135856, - "c7": -23.15066674019656 + "points": { + "c1": -30.12523518265662, + "c2": 28.128683427326933, + "c3": -17.649452624689754, + "c4": 28.81439355508514, + "c5": 7.270842086808933, + "c6": 18.142837977319026, + "c7": 16.509562927285614 }, - "vertexSeeds": { - "c1": 5.640483396472445, - "c2": 5.465389091448755, - "c3": 5.864657595791893, - "c4": 5.685167739458241, - "c5": 5.555616329186157, - "c6": 5.476350923961713, - "c7": 5.7388332735206005 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -385080,23 +385080,23 @@ "year": 1806, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -7.22029344346414, - "c2": 1.7447379340319387, - "c3": -21.691047668775205, - "c4": 7.344786760097758, - "c5": -14.286742376512498, - "c6": 1.960765933114331, - "c7": -14.18615370090433 + "points": { + "c1": -1.4911534336428645, + "c2": -23.7837697936271, + "c3": -20.240413944424567, + "c4": -14.39719174861754, + "c5": 18.44605387766853, + "c6": 15.981794609104671, + "c7": 18.584213723308036 }, - "vertexSeeds": { - "c1": 5.731451973740035, - "c2": 5.413497103379031, - "c3": 5.624170085901474, - "c4": 5.682230151119229, - "c5": 5.790187205533225, - "c6": 5.932187119795081, - "c7": 5.7501430460236245 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -385107,23 +385107,23 @@ "year": 1806, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 5.650912508431304, - "c2": 26.684989252535026, - "c3": -12.32590239850552, - "c4": 4.3299358218637565, - "c5": -19.892210085688898, - "c6": -22.710679261080692, - "c7": -31.536999126929103 + "points": { + "c1": 3.604074327544872, + "c2": -27.486889061753285, + "c3": 24.452213570740817, + "c4": 5.020180670355408, + "c5": -30.375541353178033, + "c6": -22.093826497312786, + "c7": 36.94402834796961 }, - "vertexSeeds": { - "c1": 3.3056880092343053, - "c2": 3.2779536174581834, - "c3": 3.41022964853776, - "c4": 3.329667613618093, - "c5": 3.0185119564410128, - "c6": 2.9975823842441685, - "c7": 3.2391908120839323 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320385, + "c3": 4.207119741100324, + "c4": 3.365695792880257, + "c5": 2.5242718446601957, + "c6": 1.6828478964401286, + "c7": 0.8414239482200674 }, "rgb": [77, 76, 132] }, @@ -385134,23 +385134,23 @@ "year": 1806, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -6.008716079188666, - "c2": -28.043957239033947, - "c3": -18.11379382784982, - "c4": 17.8027449330023, - "c5": 0.8917843405845503, - "c6": 12.509411700367124, - "c7": -23.342663752009663 + "points": { + "c1": 6.814357808591041, + "c2": -5.206903250125674, + "c3": -27.041028532354392, + "c4": 2.6328402485254756, + "c5": -8.326170808143836, + "c6": 24.913697293925154, + "c7": -27.713113966885423 }, - "vertexSeeds": { - "c1": 2.268096989131465, - "c2": 2.2441145381990046, - "c3": 2.3653099944381157, - "c4": 2.3126700203356667, - "c5": 2.2201981495765835, - "c6": 2.338391439951123, - "c7": 2.372996532586249 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679623, + "c3": 2.9126213592233006, + "c4": 2.3300970873786415, + "c5": 1.7475728155339798, + "c6": 1.1650485436893208, + "c7": 0.5825242718446617 }, "rgb": [77, 76, 132] }, @@ -385161,23 +385161,23 @@ "year": 1807, "resistanceReported": false, "duration": 32659200, - "curveSeeds": { - "c1": -32.05264226128329, - "c2": 11.05543738063573, - "c3": 32.082013307590536, - "c4": -26.09887228188124, - "c5": -42.823752656619675, - "c6": -12.711009495225788, - "c7": 27.44273191300848 + "points": { + "c1": -20.10807488396727, + "c2": -3.436512952114562, + "c3": -33.42501455075769, + "c4": -43.96027727916996, + "c5": -34.33432851614425, + "c6": 42.43704483055216, + "c7": -20.664196243905486 }, - "vertexSeeds": { - "c1": 3.446361905397675, - "c2": 3.3952303466176272, - "c3": 3.429923239715936, - "c4": 3.364169548033882, - "c5": 3.4512849346346517, - "c6": 3.3186855348356783, - "c7": 3.393733694422033 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320388, + "c3": 4.207119741100324, + "c4": 3.3656957928802584, + "c5": 2.524271844660194, + "c6": 1.6828478964401292, + "c7": 0.8414239482200646 }, "rgb": [58, 15, 49] }, @@ -385188,23 +385188,23 @@ "year": 1806, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 3.3066534055857844, - "c2": -16.889905816595018, - "c3": -19.566834268300912, - "c4": -11.254812099991911, - "c5": -2.8235375615039366, - "c6": 21.82706457729951, - "c7": -9.75556980141252 + "points": { + "c1": -16.558004909211032, + "c2": 7.150273191552401, + "c3": 0.10771027227936614, + "c4": 11.386498272183196, + "c5": -3.2009021000546483, + "c6": 23.8673346737787, + "c7": -7.296671740707005 }, - "vertexSeeds": { - "c1": 5.492672199220076, - "c2": 5.282849827981921, - "c3": 5.232308280549551, - "c4": 5.201741764266382, - "c5": 5.228521165385717, - "c6": 5.628901164335916, - "c7": 5.177738665385251 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387882, + "c4": 5.455386037910301, + "c5": 4.091539528432722, + "c6": 2.727693018955142, + "c7": 1.363846509477562 }, "rgb": [86, 146, 138] }, @@ -385215,23 +385215,23 @@ "year": 1806, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 22.676792738955086, - "c2": -23.435479855246513, - "c3": -14.54881383097202, - "c4": -2.7502052457908803, - "c5": -25.992483390432945, - "c6": -7.171140834292277, - "c7": -11.897340525892066 + "points": { + "c1": -6.23594495276236, + "c2": -25.82089905224967, + "c3": -37.51530023829305, + "c4": -10.210447665557904, + "c5": -34.37244679310567, + "c6": 36.461590556675695, + "c7": 15.84644213925094 }, - "vertexSeeds": { - "c1": 3.8372375854977716, - "c2": 3.715215649517865, - "c3": 3.63722131854299, - "c4": 3.8099329148456333, - "c5": 3.6513921215675635, - "c6": 3.9231126506481346, - "c7": 3.8620099913877572 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325937, + "c3": 4.7850208044382825, + "c4": 3.828016643550628, + "c5": 2.871012482662964, + "c6": 1.9140083217753092, + "c7": 0.9570041608876546 }, "rgb": [222, 0, 59] }, @@ -385242,23 +385242,23 @@ "year": 1806, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -12.23135992516541, - "c2": -26.877478888226374, - "c3": -16.256750005870998, - "c4": 19.47470179603981, - "c5": -30.36822363163903, - "c6": 30.193160541661435, - "c7": 4.717471663173896 + "points": { + "c1": -0.4064644821480812, + "c2": -30.20798052623145, + "c3": 21.866100980227003, + "c4": 7.918599649827513, + "c5": -7.500987005113274, + "c6": 14.246055779372035, + "c7": 6.113485213914743 }, - "vertexSeeds": { - "c1": 4.683115097971874, - "c2": 4.7961663705633795, - "c3": 4.958388996122194, - "c4": 4.851713107813622, - "c5": 4.7908643484396265, - "c6": 5.058988333106051, - "c7": 5.0770878944624664 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [238, 201, 159] }, @@ -385269,23 +385269,23 @@ "year": 1806, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -1.1843677919642133, - "c2": 2.650762700379559, - "c3": -19.407058963905545, - "c4": 5.305964848972671, - "c5": -16.264640306599375, - "c6": -24.519769536374852, - "c7": -31.40465286310797 + "points": { + "c1": 21.86400027272083, + "c2": 34.271780545471216, + "c3": 10.462538959744926, + "c4": 36.41010211853029, + "c5": -33.83134867368297, + "c6": -15.577291955068947, + "c7": 35.462271021311025 }, - "vertexSeeds": { - "c1": 6.809298993448418, - "c2": 6.684228275884524, - "c3": 6.533502992599485, - "c4": 6.2530127323668445, - "c5": 6.35692165902243, - "c6": 6.329468717742213, - "c7": 6.483530045131125 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318993, + "c3": 8.229311141932504, + "c4": 6.583448913545996, + "c5": 4.9375866851595065, + "c6": 3.291724456772998, + "c7": 1.64586222838649 }, "rgb": [222, 0, 59] }, @@ -385296,23 +385296,23 @@ "year": 1806, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 18.780463736622288, - "c2": 0.3956460576944636, - "c3": -26.49355698538525, - "c4": -0.636476657792933, - "c5": -15.111924403504302, - "c6": -12.425778908670745, - "c7": -21.961239295557114 + "points": { + "c1": -14.088338835842588, + "c2": -0.6604465717355126, + "c3": -26.236040619304887, + "c4": -27.945737345795138, + "c5": -24.476541128590448, + "c6": 8.372600236398291, + "c7": 6.418725961978517 }, - "vertexSeeds": { - "c1": 1.0661077348515764, - "c2": 1.241085308145691, - "c3": 1.051513357601644, - "c4": 1.0831895107424254, - "c5": 1.148129385598104, - "c6": 1.1298093589322518, - "c7": 1.1759340963990679 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144245, + "c3": 1.502542764678687, + "c4": 1.2020342117429497, + "c5": 0.9015256588072122, + "c6": 0.6010171058714748, + "c7": 0.3005085529357374 }, "rgb": [238, 201, 159] }, @@ -385323,23 +385323,23 @@ "year": 1806, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -13.666473218844384, - "c2": 11.816963213721529, - "c3": -11.839857888252997, - "c4": -32.03920074508756, - "c5": 29.295511049681835, - "c6": -31.830595189565834, - "c7": -30.080857686491687 + "points": { + "c1": -16.295609768760855, + "c2": 19.05879176608896, + "c3": 32.31139434668292, + "c4": -4.401326637298251, + "c5": -20.513640705901935, + "c6": -27.87417070076929, + "c7": -13.037012419519712 }, - "vertexSeeds": { - "c1": 4.414248008805165, - "c2": 4.098683020857638, - "c3": 4.8171511911319485, - "c4": 4.336919095538918, - "c5": 4.868381629823731, - "c6": 4.811914414383546, - "c7": 3.9616599390939817 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417474, + "c3": 5.987055016181232, + "c4": 4.789644012944985, + "c5": 3.592233009708737, + "c6": 2.394822006472494, + "c7": 1.197411003236247 }, "rgb": [86, 146, 138] }, @@ -385350,23 +385350,23 @@ "year": 1806, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -27.73557938405895, - "c2": 26.717465368521484, - "c3": -30.133059780089056, - "c4": -17.113553264817398, - "c5": -26.90091121183286, - "c6": -13.956137882915595, - "c7": 25.345875648013536 + "points": { + "c1": -16.207697002954752, + "c2": 5.997670334473284, + "c3": 2.942251909055777, + "c4": 29.462045690670138, + "c5": -27.547317755312864, + "c6": 23.377249608546073, + "c7": -9.621799015795364 }, - "vertexSeeds": { - "c1": 5.422974039411656, - "c2": 5.671790080696187, - "c3": 5.553363723637289, - "c4": 5.621752459671792, - "c5": 5.684809562196263, - "c6": 5.6858287880011735, - "c7": 5.661533815202656 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865449, + "c3": 6.819232547387893, + "c4": 5.4553860379103, + "c5": 4.091539528432743, + "c6": 2.72769301895515, + "c7": 1.363846509477593 }, "rgb": [77, 76, 132] }, @@ -385377,23 +385377,23 @@ "year": 1806, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -32.28498276242556, - "c2": -5.763751845106803, - "c3": -17.16200740488779, - "c4": -25.735013763144156, - "c5": 23.32000598903668, - "c6": -30.98337381817533, - "c7": 21.083086938695466 + "points": { + "c1": 27.20219066443397, + "c2": 14.189170592355694, + "c3": -28.986013321182806, + "c4": -6.516642966049439, + "c5": -3.2019607873061275, + "c6": -20.205423138276878, + "c7": -27.604309067586044 }, - "vertexSeeds": { - "c1": 5.426156326778651, - "c2": 5.380347464906924, - "c3": 5.377933389584412, - "c4": 5.359639781021744, - "c5": 5.3851039675225305, - "c6": 5.667174594354619, - "c7": 5.56938820184217 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622747, + "c3": 7.027276930189549, + "c4": 5.621821544151647, + "c5": 4.2163661581137255, + "c6": 2.8109107720758235, + "c7": 1.4054553860379027 }, "rgb": [58, 15, 49] }, @@ -385404,23 +385404,23 @@ "year": 1806, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -29.676822941922385, - "c2": -2.0849173002333323, - "c3": 12.351719439519275, - "c4": -10.469194038403742, - "c5": 11.293584608563233, - "c6": -24.186789962802195, - "c7": 13.277301938002761 + "points": { + "c1": 21.13470847065661, + "c2": -4.835394097706853, + "c3": -22.100998534498117, + "c4": -14.649114667539237, + "c5": 3.377186667310472, + "c6": 23.43612031547381, + "c7": -28.82274894824517 }, - "vertexSeeds": { - "c1": 5.464568436510314, - "c2": 5.621743496714813, - "c3": 5.723359254679142, - "c4": 5.916669578532954, - "c5": 5.433602066523208, - "c6": 5.877179655275962, - "c7": 5.67410863630683 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -385431,23 +385431,23 @@ "year": 1806, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -25.446778060793385, - "c2": 22.174764257796376, - "c3": 3.291313284313567, - "c4": -22.733850468521805, - "c5": -4.532245671938739, - "c6": 17.73854906789081, - "c7": -3.3483604448232107 + "points": { + "c1": 23.79203307783225, + "c2": -10.987145793050665, + "c3": -4.663095994592901, + "c4": -27.6425252111105, + "c5": -31.584070980248967, + "c6": -29.422614641833704, + "c7": -14.874369753067729 }, - "vertexSeeds": { - "c1": 4.301002644778235, - "c2": 4.234635607620105, - "c3": 4.486482546070451, - "c4": 4.347125536722435, - "c5": 4.271658011928879, - "c6": 4.323185030544682, - "c7": 4.39996135206235 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733707, + "c3": 5.594082293111417, + "c4": 4.475265834489138, + "c5": 3.3564493758668488, + "c6": 2.237632917244569, + "c7": 1.11881645862228 }, "rgb": [58, 15, 49] }, @@ -385458,23 +385458,23 @@ "year": 1807, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -20.626794801864357, - "c2": -1.2932073450113961, - "c3": -32.90699189244972, - "c4": -6.214014688986239, - "c5": 3.8431222080408176, - "c6": -27.54235611815305, - "c7": 11.568002786622003 + "points": { + "c1": -25.554013567191294, + "c2": 33.94328125448706, + "c3": -15.62715640988252, + "c4": 1.3867572136548958, + "c5": 20.465645932642737, + "c6": 20.37514201386888, + "c7": -37.61044527350771 }, - "vertexSeeds": { - "c1": 3.9852195952480614, - "c2": 4.07495260328398, - "c3": 4.222477662977073, - "c4": 3.9748840758801385, - "c5": 4.180005696422301, - "c6": 4.160438675655812, - "c7": 4.134848370927896 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808595, + "c3": 5.0624133148405015, + "c4": 4.049930651872396, + "c5": 3.037447988904303, + "c6": 2.024965325936198, + "c7": 1.0124826629680936 }, "rgb": [58, 15, 49] }, @@ -385485,23 +385485,23 @@ "year": 1806, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -1.31855314792001, - "c2": 14.675290660986985, - "c3": -3.836668938723914, - "c4": -2.240526749442786, - "c5": -2.9480895609797173, - "c6": -4.566374116483907, - "c7": 21.83022084575291 + "points": { + "c1": -3.6059310933403808, + "c2": 20.867326218382136, + "c3": -8.254343330567231, + "c4": 10.877974316799328, + "c5": 12.185159979587947, + "c6": -7.570201300981541, + "c7": -28.11175930662607 }, - "vertexSeeds": { - "c1": 4.541345041495507, - "c2": 4.454427178409151, - "c3": 4.523046394741558, - "c4": 4.466431251515818, - "c5": 4.459442788473557, - "c6": 4.682218678506392, - "c7": 4.6085250015610395 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894592, + "c3": 5.686546463245495, + "c4": 4.549237170596398, + "c5": 3.4119278779473006, + "c6": 2.2746185852982035, + "c7": 1.1373092926491062 }, "rgb": [58, 15, 49] }, @@ -385512,23 +385512,23 @@ "year": 1807, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": -19.687769996399215, - "c2": 7.995699915374594, - "c3": -15.087859029341864, - "c4": -5.28674200249354, - "c5": 21.108351391908442, - "c6": 30.399476493611928, - "c7": 33.392798546256245 + "points": { + "c1": -17.870513578104106, + "c2": -28.81031572067903, + "c3": -2.162890838643179, + "c4": 25.72158730622739, + "c5": 14.862881189565982, + "c6": 12.130944628065734, + "c7": 5.352099502196403 }, - "vertexSeeds": { - "c1": 1.7394671055580275, - "c2": 1.751640160782503, - "c3": 1.804586065794069, - "c4": 1.853898818831413, - "c5": 1.8685120470565997, - "c6": 1.7550815444257646, - "c7": 1.7654540722691854 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.8862690707350886, + "c5": 1.4147018030513194, + "c6": 0.9431345353675462, + "c7": 0.4715672676837731 }, "rgb": [222, 0, 59] }, @@ -385539,23 +385539,23 @@ "year": 1807, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": 24.03518750303764, - "c2": -3.492690281684986, - "c3": 27.57584962088402, - "c4": -5.802651803207844, - "c5": -30.387398878986552, - "c6": -33.89856988336231, - "c7": -7.850323504295197 + "points": { + "c1": -37.91420227763272, + "c2": -30.528777129495147, + "c3": 20.30484967865101, + "c4": 32.20856589310727, + "c5": 38.550119164512104, + "c6": 14.535994817113718, + "c7": -7.624266495611245 }, - "vertexSeeds": { - "c1": 5.43822548324977, - "c2": 5.694102144497605, - "c3": 5.468183961600148, - "c4": 5.478169602284939, - "c5": 5.494647586723384, - "c6": 5.51634341853034, - "c7": 5.613221042042839 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865449, + "c3": 6.819232547387893, + "c4": 5.4553860379103, + "c5": 4.091539528432743, + "c6": 2.72769301895515, + "c7": 1.363846509477593 }, "rgb": [222, 0, 59] }, @@ -385566,23 +385566,23 @@ "year": 1806, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -12.972500318612465, - "c2": 12.106597590174555, - "c3": -20.970348094323988, - "c4": 17.235766172054394, - "c5": -13.90445885549767, - "c6": 25.5917548810196, - "c7": 28.022150343782886 + "points": { + "c1": 21.641615563815705, + "c2": -17.463712904624174, + "c3": -22.87315404934121, + "c4": -5.227108207020255, + "c5": 20.183326317099976, + "c6": 29.70362199727672, + "c7": 32.7482044118062 }, - "vertexSeeds": { - "c1": 5.260750803101329, - "c2": 4.9234507900717945, - "c3": 4.910033397383084, - "c4": 4.929760032226389, - "c5": 5.181371939082856, - "c6": 5.242094991491559, - "c7": 5.21524019953151 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [238, 201, 159] }, @@ -385593,23 +385593,23 @@ "year": 1806, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -6.998325563702956, - "c2": 23.996719371464707, - "c3": 14.724053779872065, - "c4": -19.677254070502702, - "c5": 22.08078580528072, - "c6": -18.338070970097384, - "c7": -24.345385449076076 + "points": { + "c1": 8.3888603634174, + "c2": -28.341210152775936, + "c3": 21.15949798852394, + "c4": -25.72334669602357, + "c5": 1.733463786608226, + "c6": 4.291121426527191, + "c7": -12.342256864092956 }, - "vertexSeeds": { - "c1": 5.7462196386895705, - "c2": 5.8767416119882245, - "c3": 5.893021785390591, - "c4": 5.942800821226437, - "c5": 5.635324240523775, - "c6": 5.941253349518205, - "c7": 6.014615807219961 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [86, 146, 138] }, @@ -385620,23 +385620,23 @@ "year": 1807, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -9.106652897077971, - "c2": -15.602601204290874, - "c3": -39.32032386938926, - "c4": 24.160094707401868, - "c5": 29.11171862506042, - "c6": 23.21508667568233, - "c7": 14.141648652981438 + "points": { + "c1": 32.785884408798964, + "c2": 18.61697251460614, + "c3": -40.6138947480416, + "c4": -15.554344795416792, + "c5": -39.07851810490293, + "c6": 18.816139330254842, + "c7": 16.708581224514525 }, - "vertexSeeds": { - "c1": 5.832440222781125, - "c2": 5.810598804895196, - "c3": 5.645008376376818, - "c4": 5.572894950906587, - "c5": 5.566944442468726, - "c6": 5.837599881085121, - "c7": 5.986459503592417 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -385647,23 +385647,23 @@ "year": 1806, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -25.950219042605443, - "c2": 12.308381899415537, - "c3": -26.086223230834797, - "c4": -20.6084823416964, - "c5": -8.608548205686542, - "c6": 2.3753909345289124, - "c7": -9.12720435804297 + "points": { + "c1": -22.43818626283454, + "c2": 17.994293861147433, + "c3": 24.30298917534735, + "c4": 15.819111908003542, + "c5": -8.60758278420079, + "c6": -13.014825403261778, + "c7": -18.10872216678385 }, - "vertexSeeds": { - "c1": 3.9013017714876055, - "c2": 4.125805993538006, - "c3": 4.151025427356138, - "c4": 4.092072375307169, - "c5": 4.131775933325818, - "c6": 3.9694329612723567, - "c7": 3.841133337960858 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687929, + "c3": 4.993065187239947, + "c4": 3.9944521497919525, + "c5": 2.9958391123439703, + "c6": 1.9972260748959763, + "c7": 0.9986130374479938 }, "rgb": [58, 15, 49] }, @@ -385674,23 +385674,23 @@ "year": 1806, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 7.07617230604621, - "c2": -32.31482140559663, - "c3": 7.172694864382308, - "c4": 9.453144430872435, - "c5": 17.657845857823332, - "c6": 29.14292128460915, - "c7": -28.688427164023064 + "points": { + "c1": -32.55283102857835, + "c2": 2.711668849195185, + "c3": -23.504968900225517, + "c4": 27.74523394520221, + "c5": 15.51454535906801, + "c6": -29.470842254645238, + "c7": 7.299229727936307 }, - "vertexSeeds": { - "c1": 1.3506554819126024, - "c2": 1.3454474924662538, - "c3": 1.3159355475551178, - "c4": 1.3436590744405068, - "c5": 1.3616947502466388, - "c6": 1.3112694518617403, - "c7": 1.3618222708881265 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.997226074895979, + "c3": 1.6643550624133172, + "c4": 1.331484049930647, + "c5": 0.9986130374479852, + "c6": 0.6657420249653235, + "c7": 0.33287101248266177 }, "rgb": [86, 146, 138] }, @@ -385701,23 +385701,23 @@ "year": 1806, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 6.423483595133661, - "c2": 4.493155814974312, - "c3": 16.753746075477082, - "c4": 17.250861284087264, - "c5": 20.40411996302364, - "c6": -16.067811693513903, - "c7": -18.577196566833702 + "points": { + "c1": -17.600464814395295, + "c2": -18.35151895770251, + "c3": -7.75479755531245, + "c4": -26.583424482491964, + "c5": -23.375310076630782, + "c6": 26.194061955549202, + "c7": -18.555709320444805 }, - "vertexSeeds": { - "c1": 4.402551026048276, - "c2": 4.100680735684288, - "c3": 4.085117548346651, - "c4": 4.013117230665509, - "c5": 4.26624431591136, - "c6": 4.3533115071745545, - "c7": 4.335990632087567 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175679, + "c4": 4.234858992140551, + "c5": 3.176144244105413, + "c6": 2.1174294960702755, + "c7": 1.0587147480351378 }, "rgb": [222, 0, 59] }, @@ -385728,23 +385728,23 @@ "year": 1806, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -29.64109404977246, - "c2": -30.369269960399954, - "c3": -2.57175821217551, - "c4": -26.53759195339886, - "c5": 16.04262663840788, - "c6": 15.059968893533082, - "c7": -32.56597480140092 + "points": { + "c1": 25.97968193004835, + "c2": 7.810619435408974, + "c3": 18.41838454355846, + "c4": 15.506651702576164, + "c5": -9.866744159059756, + "c6": 32.60436334414844, + "c7": -25.768980755677216 }, - "vertexSeeds": { - "c1": 3.081185480277415, - "c2": 3.0543190769853052, - "c3": 3.1594539739521, - "c4": 3.0875990987545183, - "c5": 3.117226046751065, - "c6": 3.1802616855940675, - "c7": 3.0716134295605566 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.576976421636611, + "c3": 3.814147018030518, + "c4": 3.051317614424412, + "c5": 2.2884882108183056, + "c6": 1.5256588072122124, + "c7": 0.7628294036061062 }, "rgb": [222, 0, 59] }, @@ -385755,23 +385755,23 @@ "year": 1806, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -28.90573609347587, - "c2": 12.52663710273439, - "c3": -11.002075971079794, - "c4": 23.980969132653684, - "c5": -25.922370733185012, - "c6": 8.378032745271902, - "c7": -27.274791595677062 + "points": { + "c1": -16.811723847268485, + "c2": -37.11462362820492, + "c3": -35.68565013557449, + "c4": 10.602427516120997, + "c5": 8.142427602838495, + "c6": 15.730447067978744, + "c7": 25.829224415402066 }, - "vertexSeeds": { - "c1": 2.984586653415519, - "c2": 3.0491259500464007, - "c3": 3.0842170258340382, - "c4": 3.1729544545520136, - "c5": 2.9285997325014113, - "c6": 3.0219597114287637, - "c7": 2.939179821360804 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717057, + "c3": 3.860379103097553, + "c4": 3.0883032824780408, + "c5": 2.3162274618585283, + "c6": 1.5441516412390248, + "c7": 0.7720758206195124 }, "rgb": [222, 0, 59] }, @@ -385782,23 +385782,23 @@ "year": 1807, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 1.02968673031328, - "c2": -4.624916118124155, - "c3": -37.54103977669131, - "c4": -1.4715291912201067, - "c5": -39.77819770447285, - "c6": -20.564889556172943, - "c7": -29.39559821727964 + "points": { + "c1": -20.834240470683543, + "c2": 26.651359771447403, + "c3": -41.812970581260664, + "c4": -13.120886372976635, + "c5": -42.40372368228177, + "c6": -8.63978504238559, + "c7": 19.81524782026971 }, - "vertexSeeds": { - "c1": 12.090495873492099, - "c2": 11.319960967301368, - "c3": 11.585921326511135, - "c4": 11.189341611318827, - "c5": 11.956687836450179, - "c6": 10.193449429208716, - "c7": 11.274061342473601 + "offsets": { + "c1": 20.22653721682848, + "c2": 17.337031900138705, + "c3": 14.447526583448912, + "c4": 11.558021266759138, + "c5": 8.668515950069342, + "c6": 5.779010633379569, + "c7": 2.889505316689774 }, "rgb": [222, 0, 59] }, @@ -385809,23 +385809,23 @@ "year": 1806, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -27.704170939995407, - "c2": -12.094225445908897, - "c3": 0.7151732613160959, - "c4": -15.410265475756553, - "c5": 18.0380507587639, - "c6": -9.894878942455211, - "c7": 13.19258131036245 + "points": { + "c1": -7.625396520676006, + "c2": 33.966625067786524, + "c3": -13.790243994214567, + "c4": 10.534776002899982, + "c5": -9.276446599101302, + "c6": -6.638618490625333, + "c7": 20.560433015332656 }, - "vertexSeeds": { - "c1": 4.174196729753461, - "c2": 3.775850542486271, - "c3": 4.01103481496635, - "c4": 4.0413718495462465, - "c5": 4.022407028941408, - "c6": 4.032050145212444, - "c7": 4.095688734017303 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.01941747572815, + "c3": 5.016181229773461, + "c4": 4.012944983818773, + "c5": 3.009708737864075, + "c6": 2.0064724919093773, + "c7": 1.0032362459546886 }, "rgb": [222, 0, 59] }, @@ -385836,23 +385836,23 @@ "year": 1807, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 20.849096993048953, - "c2": 14.217586779236044, - "c3": -23.584091920986342, - "c4": 12.716316524069818, - "c5": -39.296919279683785, - "c6": 14.175914968988387, - "c7": -1.0874139572918509 + "points": { + "c1": 14.874366663838778, + "c2": 45.84582869492869, + "c3": 32.70131543174771, + "c4": 44.2278676521612, + "c5": -2.462166715846891, + "c6": 35.5636841140228, + "c7": 15.944888887105307 }, - "vertexSeeds": { - "c1": 3.0970027412413867, - "c2": 3.485514083090483, - "c3": 3.413715120139802, - "c4": 3.1425888045374384, - "c5": 3.608160101021869, - "c6": 3.3112409384318813, - "c7": 2.9626955686010037 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.7961165048543695, + "c3": 5.6634304207119746, + "c4": 4.530744336569579, + "c5": 3.3980582524271843, + "c6": 2.26537216828479, + "c7": 1.1326860841423934 }, "rgb": [77, 76, 132] }, @@ -385863,23 +385863,23 @@ "year": 1806, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -12.30850858818623, - "c2": 6.161119863067903, - "c3": 16.84592234649223, - "c4": 15.493466389849715, - "c5": 8.063217318074393, - "c6": 15.072543054453924, - "c7": 17.682246574860578 + "points": { + "c1": 19.874933135934548, + "c2": -17.194085121451973, + "c3": 11.311197690663825, + "c4": 24.102381160672117, + "c5": -20.759229922231178, + "c6": 25.90067557820256, + "c7": 18.19645516991126 }, - "vertexSeeds": { - "c1": 6.008670276742055, - "c2": 6.308169113973014, - "c3": 6.150207447745441, - "c4": 6.589740093035965, - "c5": 6.258608786885278, - "c6": 6.220988962062734, - "c7": 6.442457210710457 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876565, + "c3": 7.9750346740638065, + "c4": 6.380027739251049, + "c5": 4.785020804438273, + "c6": 3.190013869625515, + "c7": 1.5950069348127576 }, "rgb": [77, 76, 132] }, @@ -385890,23 +385890,23 @@ "year": 1806, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 2.3243399900121595, - "c2": -15.1431670158531, - "c3": 24.211668240648333, - "c4": -9.46810931028342, - "c5": 18.078412983604363, - "c6": -4.326470818338667, - "c7": -1.8464340744307677 + "points": { + "c1": -23.61227465049808, + "c2": -13.791071646920173, + "c3": -18.789534556129453, + "c4": 25.774802516942454, + "c5": 27.700720343643535, + "c6": -12.368785747159478, + "c7": -2.283963618059044 }, - "vertexSeeds": { - "c1": 1.8363918658904257, - "c2": 1.8121040230477188, - "c3": 1.8779725468482331, - "c4": 1.7530372767542872, - "c5": 1.73064146395611, - "c6": 1.9424458616106515, - "c7": 1.8449716549692152 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142857, + "c3": 2.380952380952381, + "c4": 1.9047619047619047, + "c5": 1.4285714285714286, + "c6": 0.9523809523809523, + "c7": 0.47619047619047616 }, "rgb": [86, 146, 138] }, @@ -385917,23 +385917,23 @@ "year": 1807, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": 31.128078017373923, - "c2": -25.942246831700782, - "c3": -14.045237394202232, - "c4": 18.780564647256014, - "c5": 27.200402098347993, - "c6": -26.734652929133617, - "c7": -47.70655625090469 + "points": { + "c1": -29.318214883451756, + "c2": 14.940362499350584, + "c3": -32.05968844410686, + "c4": 8.13101504307322, + "c5": -31.60491225594749, + "c6": 26.499729259846433, + "c7": 10.648033007861152 }, - "vertexSeeds": { - "c1": 9.00997616713429, - "c2": 8.159131815561786, - "c3": 8.336651688031003, - "c4": 8.151061698486949, - "c5": 8.028683896991573, - "c6": 8.68066367678241, - "c7": 7.821331385693292 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105407, + "c3": 10.980120203421178, + "c4": 8.78409616273694, + "c5": 6.588072122052703, + "c6": 4.392048081368466, + "c7": 2.1960240406842377 }, "rgb": [222, 0, 59] }, @@ -385944,23 +385944,23 @@ "year": 1807, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 13.811199327200583, - "c2": -15.170448028141266, - "c3": -37.47189304614341, - "c4": -41.90668905553998, - "c5": 35.60078895109759, - "c6": -21.22873474500639, - "c7": 28.93189752166588 + "points": { + "c1": -38.5808915127671, + "c2": -31.52084800908414, + "c3": -26.562713082683025, + "c4": -38.38106443261353, + "c5": 34.629874283175404, + "c6": -8.498151191858689, + "c7": 0.9872009611773436 }, - "vertexSeeds": { - "c1": 11.873742622233804, - "c2": 11.87386996532876, - "c3": 11.648116041198609, - "c4": 11.660425640190114, - "c5": 11.364075412931738, - "c6": 11.48547342445106, - "c7": 11.865099009059852 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.1983356449376, + "c3": 14.331946370781301, + "c4": 11.465557096625052, + "c5": 8.5991678224688, + "c6": 5.732778548312552, + "c7": 2.866389274156249 }, "rgb": [77, 76, 132] }, @@ -385971,23 +385971,23 @@ "year": 1807, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -19.198146792492555, - "c2": -13.896651488638415, - "c3": 31.87856249947042, - "c4": 34.75834034905033, - "c5": -36.64125365558066, - "c6": 13.470859857448978, - "c7": -12.052683354078106 + "points": { + "c1": -21.1519418810829, + "c2": -23.060567794886428, + "c3": -30.76262680965479, + "c4": -5.976046184791585, + "c5": 11.482490025660809, + "c6": 41.57467834293601, + "c7": 18.86150900210132 }, - "vertexSeeds": { - "c1": 0.9038270897746128, - "c2": 1.026512301112934, - "c3": 1.009312317841096, - "c4": 0.9928650741294339, - "c5": 1.0339085960013727, - "c6": 0.8628054264780488, - "c7": 1.0132196063980947 + "offsets": { + "c1": 1.9093851132686084, + "c2": 1.6366158113730933, + "c3": 1.3638465094775771, + "c4": 1.0910772075820618, + "c5": 0.8183079056865467, + "c6": 0.5455386037910304, + "c7": 0.2727693018955152 }, "rgb": [86, 146, 138] }, @@ -385998,23 +385998,23 @@ "year": 1806, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 24.443978903526627, - "c2": -8.084929759886482, - "c3": 28.74222663632367, - "c4": -4.995886148743537, - "c5": -1.6101404030566826, - "c6": 3.4874085945967934, - "c7": 20.951968289317875 + "points": { + "c1": -26.287778508255293, + "c2": 12.047173956038513, + "c3": 16.699883156581443, + "c4": 11.27558675744173, + "c5": -21.176965660832387, + "c6": 11.529381800656857, + "c7": 12.593813349827968 }, - "vertexSeeds": { - "c1": 1.8257891192010878, - "c2": 1.8721702024315543, - "c3": 1.8794543392829715, - "c4": 1.809640812168954, - "c5": 1.8260132201721537, - "c6": 1.810110125685577, - "c7": 1.8177866041641768 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142857, + "c3": 2.380952380952381, + "c4": 1.9047619047619047, + "c5": 1.4285714285714286, + "c6": 0.9523809523809523, + "c7": 0.47619047619047616 }, "rgb": [58, 15, 49] }, @@ -386025,23 +386025,23 @@ "year": 1806, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 0.46913522922998396, - "c2": -3.294761413094726, - "c3": -21.077691570005296, - "c4": 15.43730744031189, - "c5": -24.2809253494411, - "c6": -19.635320467112656, - "c7": -21.70295082113357 + "points": { + "c1": 2.2506066156590023, + "c2": -15.206400448937128, + "c3": -28.348442593363174, + "c4": -21.23961909726234, + "c5": 6.580051077642089, + "c6": -20.982901367380645, + "c7": -23.344361519955406 }, - "vertexSeeds": { - "c1": 1.3807056201892878, - "c2": 1.4281056798199392, - "c3": 1.3777576013231714, - "c4": 1.390566642231121, - "c5": 1.4138378867435684, - "c6": 1.4993671987361354, - "c7": 1.5163541437079044 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.2191400832177517, + "c3": 1.8492834026814617, + "c4": 1.4794267221451678, + "c5": 1.1095700416088778, + "c6": 0.7397133610725839, + "c7": 0.3698566805362899 }, "rgb": [238, 201, 159] }, @@ -386052,23 +386052,23 @@ "year": 1806, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -11.846096158353198, - "c2": -14.1289241514616, - "c3": 25.91554892704773, - "c4": 30.284978240816585, - "c5": -6.517476540701065, - "c6": -10.843496179811542, - "c7": 5.296995589184647 + "points": { + "c1": -6.417842520933082, + "c2": 26.60944692358803, + "c3": 8.139706560259135, + "c4": -3.1629405941874538, + "c5": 26.35200929258513, + "c6": 0.3015200972461969, + "c7": -1.612857798117318 }, - "vertexSeeds": { - "c1": 5.75844391547554, - "c2": 6.015601398552559, - "c3": 5.626739108590432, - "c4": 6.077930349287798, - "c5": 6.089923560552958, - "c6": 6.0107142830784195, - "c7": 5.8665053058744725 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710123, + "c3": 7.3046694405917645, + "c4": 5.84373555247343, + "c5": 4.382801664355072, + "c6": 2.921867776236715, + "c7": 1.4609338881183576 }, "rgb": [222, 0, 59] }, @@ -386079,23 +386079,23 @@ "year": 1807, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 12.83947780003485, - "c2": 36.26055254747278, - "c3": 13.407960738306727, - "c4": 25.842867938829862, - "c5": 13.680317941916428, - "c6": -7.398117209526312, - "c7": -35.89281428857288 + "points": { + "c1": 41.31229030517475, + "c2": -36.96060398980863, + "c3": 21.587324362219697, + "c4": -13.82685280018973, + "c5": -32.60992310668753, + "c6": 10.13546209065472, + "c7": -30.733938888754523 }, - "vertexSeeds": { - "c1": 4.807289671088075, - "c2": 6.21298994666047, - "c3": 4.628350114848316, - "c4": 6.234363988947153, - "c5": 4.137206919591869, - "c6": 5.527271181146914, - "c7": 5.664906632175778 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399446, + "c3": 8.275543226999538, + "c4": 6.620434581599632, + "c5": 4.965325936199725, + "c6": 3.310217290799816, + "c7": 1.6551086453999067 }, "rgb": [77, 76, 132] }, @@ -386106,23 +386106,23 @@ "year": 1806, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 17.061037874659192, - "c2": -1.2370959526162117, - "c3": 11.019573999819855, - "c4": 0.9837537779901275, - "c5": 15.703423154728242, - "c6": 14.24365681413071, - "c7": -26.453149252139525 + "points": { + "c1": -10.650556239873158, + "c2": -0.9358022148020559, + "c3": -0.14333073831500087, + "c4": -2.2662493707104865, + "c5": 25.930229445821873, + "c6": -8.23971294362358, + "c7": 25.91014846509104 }, - "vertexSeeds": { - "c1": 2.348891882396468, - "c2": 2.419927515673989, - "c3": 2.3888664429623025, - "c4": 2.3651576763472533, - "c5": 2.3371522140293757, - "c6": 2.350930988215993, - "c7": 2.3637263062487603 + "offsets": { + "c1": 4.077669902912621, + "c2": 3.4951456310679583, + "c3": 2.912621359223305, + "c4": 2.330097087378642, + "c5": 1.7475728155339791, + "c6": 1.1650485436893259, + "c7": 0.5825242718446629 }, "rgb": [86, 146, 138] }, @@ -386133,23 +386133,23 @@ "year": 1806, "resistanceReported": true, "duration": 19353600, - "curveSeeds": { - "c1": -24.741814902605608, - "c2": 28.958931652075403, - "c3": 14.214650753453146, - "c4": 4.953479583816733, - "c5": 14.626386675052043, - "c6": 2.6525553886236146, - "c7": -1.018668183067998 + "points": { + "c1": 20.5748934630033, + "c2": 29.065507872109023, + "c3": -11.187242983133281, + "c4": 17.39950059045082, + "c5": 10.87569748910849, + "c6": 8.91510095548903, + "c7": -29.384502459744073 }, - "vertexSeeds": { - "c1": 3.9728771154305624, - "c2": 4.766200772005927, - "c3": 4.443602301120118, - "c4": 4.933086000507678, - "c5": 4.77858681103908, - "c6": 3.886121559875478, - "c7": 4.201722805357821 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.4063800277392495, + "c3": 6.171983356449376, + "c4": 4.937586685159502, + "c5": 3.7031900138696248, + "c6": 2.468793342579751, + "c7": 1.2343966712898773 }, "rgb": [238, 201, 159] }, @@ -386160,23 +386160,23 @@ "year": 1806, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 23.565239445237548, - "c2": -30.625955480936216, - "c3": 27.56688125760589, - "c4": -2.476552934271652, - "c5": 2.312341641331738, - "c6": -20.230665666715275, - "c7": 28.119785547078788 + "points": { + "c1": 32.420490324681154, + "c2": -10.603507872163267, + "c3": -21.985611221590055, + "c4": -3.167896422259844, + "c5": 15.928512360120457, + "c6": -0.06755299906850354, + "c7": -13.807653619760945 }, - "vertexSeeds": { - "c1": 4.821673898352309, - "c2": 4.8351822526607755, - "c3": 4.820638701026906, - "c4": 4.857931819850757, - "c5": 4.835148240082968, - "c6": 4.825826737269075, - "c7": 4.836817047796122 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135956, + "c3": 5.825242718446591, + "c4": 4.6601941747573035, + "c5": 3.495145631067939, + "c6": 2.3300970873786517, + "c7": 1.1650485436892872 }, "rgb": [58, 15, 49] }, @@ -386187,23 +386187,23 @@ "year": 1806, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 30.495369562058812, - "c2": 14.449535111564394, - "c3": -13.250675221687832, - "c4": -19.418549727004052, - "c5": -25.773223109772438, - "c6": -29.780521828755166, - "c7": -21.6985809859732 + "points": { + "c1": -17.080893632180143, + "c2": 17.145036113780208, + "c3": 23.155705884433694, + "c4": 32.24346097971082, + "c5": -13.225174129244579, + "c6": -24.794766579798974, + "c7": -6.674251549081294 }, - "vertexSeeds": { - "c1": 4.133411251036044, - "c2": 4.179200465879763, - "c3": 4.141895934679821, - "c4": 4.1999998235687945, - "c5": 4.1039112446912, - "c6": 4.089267163703102, - "c7": 4.086947604784886 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768376, + "c3": 5.039297272306981, + "c4": 4.0314378178455845, + "c5": 3.023578363384188, + "c6": 2.0157189089227923, + "c7": 1.0078594544613961 }, "rgb": [77, 76, 132] }, @@ -386214,23 +386214,23 @@ "year": 1806, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 28.325089213857495, - "c2": -18.104074369611503, - "c3": -3.770892889493151, - "c4": 9.600069388404386, - "c5": 19.32077979608318, - "c6": -29.60098806358052, - "c7": 14.008122031472325 + "points": { + "c1": 28.349132458113964, + "c2": -30.73841638791378, + "c3": -18.309825028016423, + "c4": 19.167807165673274, + "c5": -29.643773716030886, + "c6": 22.82504077083199, + "c7": -24.589023145806884 }, - "vertexSeeds": { - "c1": 5.845071467582856, - "c2": 5.849148967020894, - "c3": 5.874388691733411, - "c4": 5.809680377957693, - "c5": 5.820626149616102, - "c6": 5.8234134335327, - "c7": 5.851366271329121 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227503, + "c3": 7.027276930189492, + "c4": 5.621821544151621, + "c5": 4.216366158113751, + "c6": 2.810910772075881, + "c7": 1.4054553860378705 }, "rgb": [222, 0, 59] }, @@ -386241,23 +386241,23 @@ "year": 1806, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 3.12660903296873, - "c2": 13.413449303854634, - "c3": -21.53140298821677, - "c4": 21.358849296518095, - "c5": 14.08096344363971, - "c6": 20.17258390639421, - "c7": 5.459690032186117 + "points": { + "c1": 11.361273898223473, + "c2": -14.102407714322728, + "c3": 24.693024303605917, + "c4": -18.289746403568415, + "c5": 22.35274984721442, + "c6": 3.7690274291513646, + "c7": 23.794396251224086 }, - "vertexSeeds": { - "c1": 5.474819656054022, - "c2": 5.702343380498321, - "c3": 5.7280996589255775, - "c4": 5.480059768336502, - "c5": 5.841209605319945, - "c6": 5.770077011738373, - "c7": 5.442093970615199 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -386268,23 +386268,23 @@ "year": 1806, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -10.778896658347481, - "c2": 15.236135745853844, - "c3": 8.954503977022348, - "c4": -8.025378754923732, - "c5": -7.234890267856983, - "c6": 12.044527211540945, - "c7": 19.522737946053482 + "points": { + "c1": -20.8046530766294, + "c2": 11.049674597328568, + "c3": -7.657871223990661, + "c4": 7.814308772987765, + "c5": 25.927472225241473, + "c6": 13.565580781193681, + "c7": -4.92433600856166 }, - "vertexSeeds": { - "c1": 6.132639908840083, - "c2": 6.491166064033141, - "c3": 6.456589404227973, - "c4": 6.478922871276002, - "c5": 5.9761767139757405, - "c6": 6.5638517746998275, - "c7": 6.450355526134177 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675459, + "c3": 7.859454461396207, + "c4": 6.287563569116973, + "c5": 4.71567267683772, + "c6": 3.1437817845584863, + "c7": 1.5718908922792523 }, "rgb": [86, 146, 138] }, @@ -386295,23 +386295,23 @@ "year": 1806, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 1.0599890674001102, - "c2": 24.80137260379868, - "c3": -1.041903637778411, - "c4": -25.04211147179479, - "c5": -17.68927991985283, - "c6": 5.974942748220524, - "c7": 11.391172702364774 + "points": { + "c1": -1.359424584593114, + "c2": 21.94784103372901, + "c3": 8.71409964979011, + "c4": 3.3149868800700055, + "c5": 19.69897682878428, + "c6": 3.129382740970552, + "c7": -18.493042137239875 }, - "vertexSeeds": { - "c1": 5.654997255748702, - "c2": 5.676305345531104, - "c3": 5.751715322085485, - "c4": 5.601414466526847, - "c5": 5.6566652756735705, - "c6": 5.579170620544573, - "c7": 5.561536631193721 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986144, + "c3": 6.888580674988421, + "c4": 5.510864539990747, + "c5": 4.133148404993072, + "c6": 2.755432269995348, + "c7": 1.377716134997674 }, "rgb": [238, 201, 159] }, @@ -386322,23 +386322,23 @@ "year": 1806, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -15.703735651186536, - "c2": 4.830479716928494, - "c3": 12.490256292200726, - "c4": 11.057716827980983, - "c5": -3.8505639658322472, - "c6": -22.458499829479596, - "c7": 26.332975190827405 + "points": { + "c1": 19.889407955780214, + "c2": -27.11333157533169, + "c3": 16.124024970803525, + "c4": -15.789440722047141, + "c5": 4.439603938712082, + "c6": 19.917665424429522, + "c7": -0.0026783151609066636 }, - "vertexSeeds": { - "c1": 6.2299970384958385, - "c2": 6.701441914888977, - "c3": 6.196636046419547, - "c4": 6.268110332783481, - "c5": 6.06010574995693, - "c6": 6.53912922212338, - "c7": 6.559149296141366 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957003, + "c3": 8.021266759130837, + "c4": 6.417013407304669, + "c5": 4.812760055478502, + "c6": 3.2085067036523345, + "c7": 1.6042533518261672 }, "rgb": [222, 0, 59] }, @@ -386349,23 +386349,23 @@ "year": 1806, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -12.809426797171824, - "c2": 25.03482032939825, - "c3": -28.6967523065518, - "c4": 3.8303793204922982, - "c5": -1.3567503706639776, - "c6": 16.912070308417427, - "c7": -25.558898160186445 + "points": { + "c1": 6.394113770472522, + "c2": -18.716894316621346, + "c3": -23.51156124740338, + "c4": -3.1413006988772025, + "c5": 16.261475053966485, + "c6": 19.02205493025641, + "c7": -29.947560077319903 }, - "vertexSeeds": { - "c1": 3.3985053373082095, - "c2": 3.3998664117134685, - "c3": 3.37248314963514, - "c4": 3.4859428527762404, - "c5": 3.516766645953368, - "c6": 3.3713624554941917, - "c7": 3.3388570112842633 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320384, + "c3": 4.207119741100329, + "c4": 3.3656957928802607, + "c5": 2.524271844660192, + "c6": 1.6828478964401374, + "c7": 0.8414239482200687 }, "rgb": [238, 201, 159] }, @@ -386376,23 +386376,23 @@ "year": 1807, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -6.1793746202757625, - "c2": -32.51438988136302, - "c3": -2.5252676846966864, - "c4": -6.148587985631995, - "c5": -31.890208839343103, - "c6": -35.37918311662007, - "c7": 14.694325530489017 + "points": { + "c1": 19.696383487673394, + "c2": -23.44768159632981, + "c3": -10.636041797790853, + "c4": 3.2095165019619216, + "c5": -25.605062974034304, + "c6": 12.106196999121025, + "c7": -29.06936888187714 }, - "vertexSeeds": { - "c1": 1.5166904742292775, - "c2": 1.6103280314426907, - "c3": 1.6678275481309583, - "c4": 1.5336740481572169, - "c5": 1.630241780911607, - "c6": 1.6185421014324068, - "c7": 1.6245689390433156 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499306, + "c3": 2.0110957004160874, + "c4": 1.608876560332873, + "c5": 1.2066574202496545, + "c6": 0.8044382801664365, + "c7": 0.40221914008321824 }, "rgb": [238, 201, 159] }, @@ -386403,23 +386403,23 @@ "year": 1807, "resistanceReported": false, "duration": 47865600, - "curveSeeds": { - "c1": 12.28534229672605, - "c2": 45.41916150782894, - "c3": -55.35067536182635, - "c4": 49.751074296983525, - "c5": -8.315749622725107, - "c6": -13.54049930173015, - "c7": -32.20804574813233 + "points": { + "c1": 53.83403438550296, + "c2": -16.842982654293472, + "c3": -2.7599338545580068, + "c4": -13.199927728615435, + "c5": 17.446081323602513, + "c6": -48.684469991858236, + "c7": 4.434774837103063 }, - "vertexSeeds": { - "c1": 10.95426352040717, - "c2": 10.835975278959134, - "c3": 10.741257026048032, - "c4": 10.688341046330049, - "c5": 10.950141703307763, - "c6": 11.047348560966952, - "c7": 10.691025293167712 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.811373092926463, + "c3": 13.176144244105455, + "c4": 10.540915395284344, + "c5": 7.905686546463231, + "c6": 5.270457697642224, + "c7": 2.635228848821112 }, "rgb": [86, 146, 138] }, @@ -386430,23 +386430,23 @@ "year": 1806, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -3.590196224539465, - "c2": -21.277775106029104, - "c3": -18.827081504843736, - "c4": -9.979213010243125, - "c5": 9.324261451480826, - "c6": -0.5037215547633771, - "c7": -4.339580614923552 + "points": { + "c1": -1.7497941532464836, + "c2": -3.528496300680107, + "c3": 1.357564150074392, + "c4": 10.505707143268413, + "c5": -14.78106131575619, + "c6": -3.411884720027082, + "c7": -12.177995949323595 }, - "vertexSeeds": { - "c1": 5.029765805049626, - "c2": 4.729867662420857, - "c3": 4.865337999064211, - "c4": 4.683285126545787, - "c5": 5.077310291021331, - "c6": 4.708134348816565, - "c7": 5.04451742057886 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699035, + "c3": 6.148867313915851, + "c4": 4.9190938511326845, + "c5": 3.6893203883495174, + "c6": 2.4595469255663422, + "c7": 1.2297734627831756 }, "rgb": [58, 15, 49] }, @@ -386457,23 +386457,23 @@ "year": 1806, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 5.575699509088469, - "c2": -16.03061124671211, - "c3": 26.714498346092537, - "c4": -5.428864834510122, - "c5": 9.834816469245592, - "c6": -11.635082789110019, - "c7": -2.9889106291813228 + "points": { + "c1": -29.721966764036, + "c2": 9.61062112317991, + "c3": 10.858227431159897, + "c4": -28.91726335052473, + "c5": 2.434587491639846, + "c6": -26.181049260157096, + "c7": 19.064386680362112 }, - "vertexSeeds": { - "c1": 4.038569508135354, - "c2": 4.292401527110977, - "c3": 3.957700633255801, - "c4": 3.980385742391816, - "c5": 4.237178569259052, - "c6": 4.282610532144334, - "c7": 4.3369476183406945 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130371, + "c3": 5.247341655108646, + "c4": 4.197873324086913, + "c5": 3.14840499306519, + "c6": 2.0989366620434566, + "c7": 1.0494683310217239 }, "rgb": [222, 0, 59] }, @@ -386484,23 +386484,23 @@ "year": 1806, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 18.751879832833644, - "c2": -17.880982237621865, - "c3": 12.28577104609635, - "c4": 14.409456993490139, - "c5": 2.4615792083991828, - "c6": -14.352665724203364, - "c7": 12.374800354879412 + "points": { + "c1": -12.282964125697038, + "c2": 18.964200392843324, + "c3": -10.89234968969546, + "c4": -21.351218183492023, + "c5": 1.2153621989139047, + "c6": 26.19092909501724, + "c7": 2.3290978168707532 }, - "vertexSeeds": { - "c1": 3.2525647363348407, - "c2": 3.33035010159824, - "c3": 3.105731675882679, - "c4": 3.373724334974145, - "c5": 3.3727732900459078, - "c6": 3.235277174831469, - "c7": 3.471716934630882 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [77, 76, 132] }, @@ -386511,23 +386511,23 @@ "year": 1806, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -14.707427144606498, - "c2": -10.81001407766028, - "c3": 16.35852862014121, - "c4": -21.544170527942406, - "c5": -1.8147585614870074, - "c6": -19.102127044122792, - "c7": -1.389684543772887 + "points": { + "c1": 17.32003789970049, + "c2": 11.910782743320393, + "c3": 23.885742327794876, + "c4": -16.855498835505674, + "c5": 7.906227879992517, + "c6": 6.850578712240175, + "c7": -25.983708081212935 }, - "vertexSeeds": { - "c1": 4.885958083937532, - "c2": 4.873471607721442, - "c3": 5.055041663772609, - "c4": 5.002518268154282, - "c5": 5.208728515227075, - "c6": 5.068638019683578, - "c7": 4.985210310367912 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -386538,23 +386538,23 @@ "year": 1806, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -6.707878939593144, - "c2": 25.291362900475598, - "c3": 9.165502938558852, - "c4": 12.00375764749694, - "c5": 3.4949150561387015, - "c6": 15.753225794031614, - "c7": 12.220191506244994 + "points": { + "c1": 0.1258151966373049, + "c2": 19.35215334380532, + "c3": -19.199598811266057, + "c4": 9.843305877430048, + "c5": 16.570166213395296, + "c6": -8.052878287951586, + "c7": 3.7058128439827236 }, - "vertexSeeds": { - "c1": 5.6352198999577325, - "c2": 5.860367471395779, - "c3": 5.9036897541366296, - "c4": 5.973052060597258, - "c5": 5.738988302035546, - "c6": 5.738309995105718, - "c7": 5.424426846437156 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [222, 0, 59] }, @@ -386565,23 +386565,23 @@ "year": 1806, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -18.791615360889757, - "c2": 2.148225603388518, - "c3": 6.074923151731255, - "c4": 27.929693532514122, - "c5": -8.660326713328171, - "c6": -11.907655616174988, - "c7": -25.41985908388208 + "points": { + "c1": -5.982806349029868, + "c2": 10.375120764436588, + "c3": -30.18645732245146, + "c4": 3.4299683396916265, + "c5": 9.655749856047336, + "c6": 25.300282179798913, + "c7": 18.783683848919956 }, - "vertexSeeds": { - "c1": 5.041478563358638, - "c2": 5.460898772709822, - "c3": 5.17069261487752, - "c4": 5.395570946255281, - "c5": 5.1802343363597645, - "c6": 5.028739649797535, - "c7": 4.99656296243911 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423016, + "c3": 6.564956079519188, + "c4": 5.251964863615344, + "c5": 3.938973647711517, + "c6": 2.625982431807672, + "c7": 1.312991215903845 }, "rgb": [86, 146, 138] }, @@ -386592,23 +386592,23 @@ "year": 1806, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 20.957159726668742, - "c2": -19.85955113476844, - "c3": 2.944571221467349, - "c4": 3.0675375670776326, - "c5": 5.735453572895235, - "c6": 15.534624463849816, - "c7": 2.4309157114162083 + "points": { + "c1": -7.8675935743961745, + "c2": -7.50632894444081, + "c3": -7.3561941649374525, + "c4": -2.059667932221636, + "c5": 14.633410843569443, + "c6": 7.298100237877314, + "c7": -5.112437213357936 }, - "vertexSeeds": { - "c1": 5.485121102454898, - "c2": 5.89085817345571, - "c3": 5.518531667727294, - "c4": 5.964289029125485, - "c5": 5.93728768564942, - "c6": 5.566479290448507, - "c7": 5.72702499516424 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -386619,23 +386619,23 @@ "year": 1806, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -23.748470068251713, - "c2": 2.233493517884078, - "c3": 13.631175677418796, - "c4": -14.458860062544538, - "c5": 25.842343963110324, - "c6": 4.870028838250629, - "c7": 20.55667208261832 + "points": { + "c1": -9.906781558558762, + "c2": 8.667242233013823, + "c3": 16.787725326329998, + "c4": 26.52650555270656, + "c5": -9.349696744226815, + "c6": -8.700185749515146, + "c7": 20.73481831770973 }, - "vertexSeeds": { - "c1": 2.706943796336989, - "c2": 2.678404301464082, - "c3": 2.7164247769630214, - "c4": 2.6878615648500053, - "c5": 2.6928771168624497, - "c6": 2.6604627949507806, - "c7": 2.656016004179156 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.9112343966712757, + "c3": 3.259361997226079, + "c4": 2.6074895977808503, + "c5": 1.955617198335654, + "c6": 1.3037447988904252, + "c7": 0.6518723994452288 }, "rgb": [222, 0, 59] }, @@ -386646,23 +386646,23 @@ "year": 1807, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 29.92326514958731, - "c2": 9.84051580992913, - "c3": -38.527138961587255, - "c4": 37.66431761792968, - "c5": 10.86679220829432, - "c6": 38.1333005841655, - "c7": -28.36424829255318 + "points": { + "c1": -0.16750697701363748, + "c2": -19.778653819263972, + "c3": -3.9040194146599063, + "c4": 7.000906912777637, + "c5": 23.989731059867495, + "c6": 26.66109732035123, + "c7": 6.637144448418553 }, - "vertexSeeds": { - "c1": 3.177049419298489, - "c2": 3.409966478145191, - "c3": 3.1310645759438, - "c4": 3.407512405027023, - "c5": 3.1304910932688115, - "c6": 3.14865205928352, - "c7": 3.2699435147209392 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280169, + "c3": 4.184003698566804, + "c4": 3.3472029588534458, + "c5": 2.5104022191400808, + "c6": 1.6736014794267229, + "c7": 0.8368007397133652 }, "rgb": [58, 15, 49] }, @@ -386673,23 +386673,23 @@ "year": 1806, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 8.896393910061889, - "c2": -20.33063804651439, - "c3": 10.557888932699619, - "c4": -25.59655919348294, - "c5": -6.070875261973569, - "c6": 15.596674013789887, - "c7": 16.51745713160365 + "points": { + "c1": -4.647689906063736, + "c2": 23.391887700380494, + "c3": 18.816218562191473, + "c4": -18.251577495007687, + "c5": -20.60592361253869, + "c6": -12.566924003376203, + "c7": 26.757960491022516 }, - "vertexSeeds": { - "c1": 5.877360725860846, - "c2": 6.117938444807637, - "c3": 5.879385474920129, - "c4": 6.0362801022713795, - "c5": 6.110479174470928, - "c6": 5.851676430075031, - "c7": 6.049541289155618 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.84882108183079, + "c3": 7.3740175681923255, + "c4": 5.89921405455386, + "c5": 4.424410540915395, + "c6": 2.94960702727693, + "c7": 1.474803513638465 }, "rgb": [86, 146, 138] }, @@ -386700,23 +386700,23 @@ "year": 1806, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 10.279721564578871, - "c2": -17.042973002503558, - "c3": -3.9931439796854633, - "c4": 16.139313950797828, - "c5": 15.346504892043072, - "c6": 11.16081420255906, - "c7": 10.665348157439418 + "points": { + "c1": -26.953863577988837, + "c2": -7.027137100638239, + "c3": 5.438954167145283, + "c4": 25.30410976983468, + "c5": 5.108936742629076, + "c6": 1.8246946311965822, + "c7": -10.456337958589184 }, - "vertexSeeds": { - "c1": 5.6714344874670415, - "c2": 5.9036313991273826, - "c3": 6.096234010340558, - "c4": 6.064783817771105, - "c5": 6.095744473358928, - "c6": 6.007960942924415, - "c7": 5.918773980341513 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.87656033287102, + "c3": 7.397133610725837, + "c4": 5.917706888580673, + "c5": 4.43828016643551, + "c6": 2.958853444290346, + "c7": 1.4794267221451636 }, "rgb": [238, 201, 159] }, @@ -386727,23 +386727,23 @@ "year": 1807, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 0.8415524924576943, - "c2": -3.460351227643592, - "c3": -24.37867752211956, - "c4": -12.002303490784406, - "c5": 14.608812762200351, - "c6": -21.174568758938626, - "c7": 17.929180385878695 + "points": { + "c1": 15.611156260644606, + "c2": -11.42315994183626, + "c3": 14.373814979654597, + "c4": -7.905327383867984, + "c5": -4.0125511925566215, + "c6": -3.250182353135294, + "c7": -21.147395277401998 }, - "vertexSeeds": { - "c1": 3.3548013008878077, - "c2": 3.2876660196739813, - "c3": 3.5294875612199728, - "c4": 3.5021019811700715, - "c5": 3.471029561310533, - "c6": 3.4034702196624043, - "c7": 3.465728279001587 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561716, + "c3": 4.345815996301434, + "c4": 3.4766527970411443, + "c5": 2.6074895977808623, + "c6": 1.7383263985205721, + "c7": 0.8691631992602816 }, "rgb": [58, 15, 49] }, @@ -386754,23 +386754,23 @@ "year": 1806, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 19.960817213529367, - "c2": -27.16782777230563, - "c3": 5.172330325320139, - "c4": -7.88841421091044, - "c5": -9.559477495165066, - "c6": -24.115747591399764, - "c7": -11.102348992715477 + "points": { + "c1": -8.175197943209806, + "c2": 14.36881836326345, + "c3": -5.043167269803845, + "c4": -5.8670033527513965, + "c5": 16.887866567894456, + "c6": -20.476287100162786, + "c7": -1.7679777861135726 }, - "vertexSeeds": { - "c1": 5.937506218526081, - "c2": 5.971655805009671, - "c3": 5.884580067260673, - "c4": 5.793262984746367, - "c5": 5.6103918773760695, - "c6": 5.5802844811189685, - "c7": 5.811755202287252 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -386781,23 +386781,23 @@ "year": 1807, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 0.360704978468533, - "c2": 37.64848858465618, - "c3": -15.7855288508362, - "c4": 0.5910506230191857, - "c5": -11.37049776351606, - "c6": 6.760062442107781, - "c7": 6.184024936330502 + "points": { + "c1": -37.473712439471434, + "c2": -25.80359826052448, + "c3": 22.16852967795834, + "c4": -13.07507408393548, + "c5": 30.80238297400807, + "c6": 0.42508311733822524, + "c7": -27.708542180811786 }, - "vertexSeeds": { - "c1": 6.133510287143029, - "c2": 6.575882840183042, - "c3": 6.146564398890199, - "c4": 6.123097989995418, - "c5": 6.178988501103902, - "c6": 6.287559342688598, - "c7": 6.555991480571968 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916785, + "c3": 7.998150716597324, + "c4": 6.398520573277863, + "c5": 4.798890429958401, + "c6": 3.199260286638922, + "c7": 1.599630143319461 }, "rgb": [77, 76, 132] }, @@ -386808,23 +386808,23 @@ "year": 1806, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 20.42310050503583, - "c2": 20.283205135140765, - "c3": -11.7554325164568, - "c4": 15.672300422006852, - "c5": -24.86944442809773, - "c6": -17.88399090267584, - "c7": -16.018565529044622 + "points": { + "c1": -5.124694626955282, + "c2": 20.84428388160186, + "c3": -8.700806903819824, + "c4": 19.156375103661794, + "c5": -6.724960874931554, + "c6": -28.99220751502384, + "c7": -14.475455393299917 }, - "vertexSeeds": { - "c1": 8.014097878722426, - "c2": 7.748477758441178, - "c3": 8.339750418671308, - "c4": 8.152356642608472, - "c5": 7.704274699649253, - "c6": 8.017458057819919, - "c7": 7.821066321514442 + "offsets": { + "c1": 14.01294498381877, + "c2": 12.01109570041608, + "c3": 10.00924641701341, + "c4": 8.00739713361072, + "c5": 6.005547850208049, + "c6": 4.00369856680536, + "c7": 2.001849283402689 }, "rgb": [238, 201, 159] }, @@ -386835,23 +386835,23 @@ "year": 1806, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 1.6120074939716567, - "c2": -19.455297437886124, - "c3": -21.46635704747716, - "c4": 18.79081717509172, - "c5": 21.782053937550838, - "c6": -25.08742222189423, - "c7": -20.675519422015213 + "points": { + "c1": -15.497878670420423, + "c2": -13.593451731233014, + "c3": -10.865314164878924, + "c4": 28.228536396736644, + "c5": 21.19046277657032, + "c6": -28.1045190362652, + "c7": -19.632666750101393 }, - "vertexSeeds": { - "c1": 2.244387025611388, - "c2": 2.2779807000504118, - "c3": 2.3053911350150402, - "c4": 2.1598721309288424, - "c5": 2.2288198362985394, - "c6": 2.348696934673701, - "c7": 2.130891247393985 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.411927877947296, + "c3": 2.843273231622747, + "c4": 2.2746185852981986, + "c5": 1.7059639389736498, + "c6": 1.1373092926490973, + "c7": 0.5686546463245487 }, "rgb": [238, 201, 159] }, @@ -386862,23 +386862,23 @@ "year": 1806, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 18.637934716117353, - "c2": 13.528536714124474, - "c3": -21.619138311704802, - "c4": -17.074464876941384, - "c5": 9.635303860130389, - "c6": 21.84912806824934, - "c7": -1.2949051822893445 + "points": { + "c1": -17.654064822397558, + "c2": -0.28227130826704894, + "c3": -17.488392503906006, + "c4": 19.063834104228814, + "c5": -12.713423662178428, + "c6": 21.950882293845506, + "c7": 11.145538409768488 }, - "vertexSeeds": { - "c1": 2.601657801395008, - "c2": 2.4882429695112025, - "c3": 2.528177113237824, - "c4": 2.45578892298378, - "c5": 2.390127034280921, - "c6": 2.3000861086066173, - "c7": 2.544949806891733 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429962, + "c3": 3.1206657420249653, + "c4": 2.496532593619972, + "c5": 1.872399445214979, + "c6": 1.248266296809986, + "c7": 0.624133148404993 }, "rgb": [58, 15, 49] }, @@ -386889,23 +386889,23 @@ "year": 1806, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 5.49297575638127, - "c2": -8.797506066038867, - "c3": -27.43456053331011, - "c4": 0.5104051449495266, - "c5": 19.75900319370014, - "c6": 9.02495346767411, - "c7": -6.06395610878646 + "points": { + "c1": 21.560621997868722, + "c2": -3.567766555890298, + "c3": 3.2674780960863217, + "c4": -17.00737395006303, + "c5": -21.467659078946227, + "c6": 2.588880472883659, + "c7": -5.375307851244475 }, - "vertexSeeds": { - "c1": 7.744869102061101, - "c2": 7.507498330054692, - "c3": 7.368920354564666, - "c4": 7.2504339322785825, - "c5": 7.775931639818433, - "c6": 7.859919694566525, - "c7": 7.416315115632323 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651874, + "c3": 9.570041608876565, + "c4": 7.656033287101256, + "c5": 5.742024965325928, + "c6": 3.8280166435506184, + "c7": 1.9140083217753092 }, "rgb": [77, 76, 132] }, @@ -386916,23 +386916,23 @@ "year": 1807, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": -26.42450767272896, - "c2": 23.573187681235197, - "c3": -36.61677051213734, - "c4": 15.336031926347552, - "c5": 7.4995531404893825, - "c6": 5.5055185843567145, - "c7": -12.751805260750857 + "points": { + "c1": 39.51971052289309, + "c2": -28.46957759609028, + "c3": 20.502366736617347, + "c4": 19.875019862542715, + "c5": 44.87359391649673, + "c6": -16.453510317014633, + "c7": 12.26155947234902 }, - "vertexSeeds": { - "c1": 1.8827181469403402, - "c2": 2.0340304139936634, - "c3": 1.5660184085488624, - "c4": 1.9716997884994545, - "c5": 1.969372249112384, - "c6": 1.7216154587419685, - "c7": 1.8508086184303836 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.940360610263523, + "c3": 2.4503005085529357, + "c4": 1.9602404068423485, + "c5": 1.4701803051317615, + "c6": 0.9801202034211742, + "c7": 0.4900601017105871 }, "rgb": [58, 15, 49] }, @@ -386943,23 +386943,23 @@ "year": 1806, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 6.116042597669757, - "c2": -21.964305523324022, - "c3": -1.5634768756990773, - "c4": -17.19716738686904, - "c5": -17.684662225033005, - "c6": -14.494151743466938, - "c7": 24.374543944533492 + "points": { + "c1": -23.188201525781878, + "c2": -6.430051765951102, + "c3": 2.1071099804754, + "c4": -10.844534673351621, + "c5": 11.53891785590885, + "c6": 11.093689171286897, + "c7": 1.3443518913714279 }, - "vertexSeeds": { - "c1": 4.7262628656637125, - "c2": 4.925340174681039, - "c3": 4.560564033571039, - "c4": 4.474733018694049, - "c5": 4.393523403633865, - "c6": 4.759993117084544, - "c7": 4.396947139329282 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181232, + "c4": 4.78964401294498, + "c5": 3.592233009708735, + "c6": 2.39482200647249, + "c7": 1.197411003236245 }, "rgb": [86, 146, 138] }, @@ -386970,23 +386970,23 @@ "year": 1806, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -19.51363402727057, - "c2": 12.413368029123227, - "c3": -27.710144119944122, - "c4": -4.737046275173384, - "c5": 3.016621955673454, - "c6": -24.144382554869736, - "c7": 2.7415728654712446 + "points": { + "c1": -23.850218197727568, + "c2": -5.008712749139146, + "c3": -22.22619736511472, + "c4": 2.513935084617522, + "c5": 14.964739622146752, + "c6": -9.046592072994468, + "c7": -20.514942016623905 }, - "vertexSeeds": { - "c1": 5.596348417246596, - "c2": 5.658180326870599, - "c3": 5.6063768060470425, - "c4": 5.617573520598825, - "c5": 5.6311767157025745, - "c6": 5.606223166330319, - "c7": 5.620610840867903 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785058, + "c3": 6.773000462320792, + "c4": 5.418400369856661, + "c5": 4.063800277392529, + "c6": 2.7092001849283975, + "c7": 1.3546000924641315 }, "rgb": [222, 0, 59] }, @@ -386997,23 +386997,23 @@ "year": 1806, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": -9.844019416416, - "c2": -10.362485585330381, - "c3": -14.815884519527248, - "c4": -4.558442567795552, - "c5": 7.92106064564998, - "c6": 11.76719905236859, - "c7": 2.8396692655968714 + "points": { + "c1": -6.170753037763022, + "c2": 12.27876940695792, + "c3": -6.22408100687349, + "c4": 19.43593782443758, + "c5": 2.8263560963197314, + "c6": -7.223138089455011, + "c7": 0.8796972690897853 }, - "vertexSeeds": { - "c1": 1.9458644916212604, - "c2": 2.063895062047272, - "c3": 1.9082394103798022, - "c4": 2.010118185818223, - "c5": 1.9968687396875362, - "c6": 2.074910678079978, - "c7": 2.0113842875800763 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.9958391123439645, + "c3": 2.4965325936199734, + "c4": 1.9972260748959763, + "c5": 1.4979195561719851, + "c6": 0.9986130374479881, + "c7": 0.4993065187239969 }, "rgb": [86, 146, 138] }, @@ -387024,23 +387024,23 @@ "year": 1807, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -21.272284793227826, - "c2": 6.3262716232032155, - "c3": 13.635229064913933, - "c4": -8.28445565389869, - "c5": 20.18207002404998, - "c6": -11.093979110838436, - "c7": -2.5112536230732054 + "points": { + "c1": 31.345033791157675, + "c2": 16.031323774126065, + "c3": 2.2307579209604356, + "c4": 11.200458385768677, + "c5": -10.0189786387229, + "c6": -19.89780928636887, + "c7": 13.147300543434788 }, - "vertexSeeds": { - "c1": 7.456793986341892, - "c2": 7.720833554931558, - "c3": 7.142499010258887, - "c4": 7.713850335633038, - "c5": 7.676107918273029, - "c6": 7.073703196665925, - "c7": 7.095427295040011 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.17891816920943, + "c3": 9.315765141007853, + "c4": 7.452612112806297, + "c5": 5.589459084604723, + "c6": 3.7263060564031485, + "c7": 1.8631530282015742 }, "rgb": [58, 15, 49] }, @@ -387051,23 +387051,23 @@ "year": 1806, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -2.350016215500567, - "c2": 5.308210267719662, - "c3": 2.4493577931088346, - "c4": -1.8700030764568467, - "c5": -5.512848925314991, - "c6": -23.41911771710788, - "c7": 1.2737884752444906 + "points": { + "c1": 0.6154787628686904, + "c2": -26.84020344187286, + "c3": 9.743724668403551, + "c4": 22.122522574751578, + "c5": 9.968044219753239, + "c6": -16.134058637794308, + "c7": -0.23521480474734346 }, - "vertexSeeds": { - "c1": 7.282518502380692, - "c2": 6.621115468336731, - "c3": 7.014888669615244, - "c4": 6.632761209689669, - "c5": 7.110960060868051, - "c6": 7.0189148196896864, - "c7": 6.909431089000035 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203886, + "c3": 8.737864077669908, + "c4": 6.99029126213593, + "c5": 5.242718446601934, + "c6": 3.495145631067956, + "c7": 1.747572815533978 }, "rgb": [77, 76, 132] }, @@ -387078,23 +387078,23 @@ "year": 1806, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": -1.7758418792872313, - "c2": 18.955057562260954, - "c3": -8.837621286794372, - "c4": 11.820170980756913, - "c5": 4.278657547731214, - "c6": 12.022518036344906, - "c7": -15.517641723761917 + "points": { + "c1": 3.5885216492367213, + "c2": 18.786931763233497, + "c3": -11.564686981844861, + "c4": 4.231226088822805, + "c5": -12.420162076250191, + "c6": -6.26573156073534, + "c7": 2.3579038780704735 }, - "vertexSeeds": { - "c1": 4.3154498284810625, - "c2": 4.23583657418088, - "c3": 3.9495935318979556, - "c4": 4.942701236320591, - "c5": 4.452771539089554, - "c6": 3.920501767499078, - "c7": 4.462832507907042 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.4341192787794705, + "c3": 6.195099398982894, + "c4": 4.956079519186313, + "c5": 3.7170596393897375, + "c6": 2.4780397595931567, + "c7": 1.2390198797965768 }, "rgb": [58, 15, 49] }, @@ -387105,23 +387105,23 @@ "year": 1807, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 17.49781655857285, - "c2": -32.66913848820515, - "c3": 33.18098556265787, - "c4": 40.263590786754264, - "c5": -10.077556560249036, - "c6": -13.124294699978098, - "c7": -0.7556074419970287 + "points": { + "c1": -41.09846183487101, + "c2": 7.539264598831295, + "c3": -37.56535661067823, + "c4": 10.93109623313132, + "c5": 11.377652423192117, + "c6": 0.48488714342597206, + "c7": -34.17158543868149 }, - "vertexSeeds": { - "c1": 4.450031810831014, - "c2": 4.382601255939281, - "c3": 4.38512167794816, - "c4": 4.295951133000378, - "c5": 4.388200555447164, - "c6": 4.334199991409848, - "c7": 4.4656631645489355 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492373, + "c3": 5.455386037910312, + "c4": 4.364308830328252, + "c5": 3.273231622746191, + "c6": 2.182154415164121, + "c7": 1.0910772075820696 }, "rgb": [238, 201, 159] }, @@ -387132,23 +387132,23 @@ "year": 1807, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 9.80326549619479, - "c2": 28.39260606903055, - "c3": -6.403794727100838, - "c4": 11.662098757870886, - "c5": 22.30942033210321, - "c6": -19.793268469480644, - "c7": 22.196161961589652 + "points": { + "c1": -13.737748630453257, + "c2": -1.59615502180041, + "c3": 15.28708295828747, + "c4": 21.819093017739874, + "c5": 9.428801772919563, + "c6": 6.583320493617826, + "c7": -7.885610873555375 }, - "vertexSeeds": { - "c1": 3.3444318837305484, - "c2": 2.8767027598564887, - "c3": 2.9610491150524925, - "c4": 2.965442510495398, - "c5": 3.1893126108746137, - "c6": 3.271381680215139, - "c7": 2.869079517249962 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159502, + "c3": 4.114655570966253, + "c4": 3.2917244567729997, + "c5": 2.468793342579751, + "c6": 1.6458622283865019, + "c7": 0.8229311141932528 }, "rgb": [222, 0, 59] }, @@ -387159,23 +387159,23 @@ "year": 1807, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -29.113933514893525, - "c2": -5.714660364764043, - "c3": -16.47755204054093, - "c4": -8.085570123656616, - "c5": 19.66340565606265, - "c6": 14.03536325965758, - "c7": 26.88418343862714 + "points": { + "c1": 18.278548003171217, + "c2": -12.706186811876051, + "c3": -9.456679656680766, + "c4": -6.2722875877542705, + "c5": -15.877116249141684, + "c6": -21.887177258379065, + "c7": -27.27178339106038 }, - "vertexSeeds": { - "c1": 3.7080842258109805, - "c2": 4.019225844419123, - "c3": 3.697355170156831, - "c4": 4.050068273204731, - "c5": 3.657620533771292, - "c6": 4.684914055054749, - "c7": 4.026205172721438 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.8238557558945905, + "c3": 5.6865464632454925, + "c4": 4.549237170596394, + "c5": 3.4119278779472952, + "c6": 2.274618585298197, + "c7": 1.1373092926490984 }, "rgb": [58, 15, 49] }, @@ -387186,23 +387186,23 @@ "year": 1806, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 5.836177714235269, - "c2": -17.024879055186247, - "c3": -7.478485884389148, - "c4": 21.202999310154766, - "c5": 21.209069998017817, - "c6": 10.944036564760488, - "c7": 4.493518311728611 + "points": { + "c1": 25.84595255606481, + "c2": 13.144858539266622, + "c3": 24.695335665708924, + "c4": 6.967963224667976, + "c5": -10.036261538500458, + "c6": 23.253323919523744, + "c7": -18.275096097892053 }, - "vertexSeeds": { - "c1": 6.533460916231257, - "c2": 6.303095477264813, - "c3": 6.187563343155448, - "c4": 6.407993113127242, - "c5": 6.519920048691751, - "c6": 6.424346524913202, - "c7": 6.587295704866214 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715681, + "c3": 7.882570503929725, + "c4": 6.306056403143788, + "c5": 4.729542302357832, + "c6": 3.153028201571894, + "c7": 1.576514100785956 }, "rgb": [238, 201, 159] }, @@ -387213,23 +387213,23 @@ "year": 1806, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": -14.450457678928537, - "c2": -7.838963407654401, - "c3": 6.235940381895958, - "c4": 11.457452391525589, - "c5": -12.624631620885708, - "c6": 13.316278417745554, - "c7": -8.938156786947301 + "points": { + "c1": 18.51052321044281, + "c2": 5.870495108787491, + "c3": 12.117736302927586, + "c4": 2.038384927290938, + "c5": -12.390437102715216, + "c6": -11.560724728699133, + "c7": -2.307944723687193 }, - "vertexSeeds": { - "c1": 1.4015615622040853, - "c2": 1.4867101899556658, - "c3": 1.5903985931715803, - "c4": 1.4493755118030145, - "c5": 1.6402566485448822, - "c6": 1.4588875734430409, - "c7": 1.5588256699912832 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590853, + "c3": 1.9879796578825693, + "c4": 1.5903837263060558, + "c5": 1.1927877947295427, + "c6": 0.7951918631530266, + "c7": 0.3975959315765133 }, "rgb": [222, 0, 59] }, @@ -387240,23 +387240,23 @@ "year": 1806, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 10.97309282023825, - "c2": 11.437975123360495, - "c3": -2.5043390883989396, - "c4": 10.279215853887479, - "c5": 26.49912978252592, - "c6": 1.544889120874732, - "c7": 10.743135911413503 + "points": { + "c1": 21.766151457472773, + "c2": -18.617566472619153, + "c3": 0.3263802606189543, + "c4": -3.7578088362982776, + "c5": 5.22674366668074, + "c6": -17.677117375129413, + "c7": -6.5637252749714 }, - "vertexSeeds": { - "c1": 8.0649861110013, - "c2": 7.866998726901865, - "c3": 8.346383784288935, - "c4": 7.706414587334124, - "c5": 8.032932826065954, - "c6": 7.879054649080978, - "c7": 8.162697710464695 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576975, + "c3": 10.101710587147476, + "c4": 8.081368469717976, + "c5": 6.0610263522884775, + "c6": 4.040684234858998, + "c7": 2.020342117429499 }, "rgb": [77, 76, 132] }, @@ -387267,23 +387267,23 @@ "year": 1806, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 1.0217099197029924, - "c2": -1.5999071919391952, - "c3": -25.139293227684615, - "c4": -22.8845950244985, - "c5": 2.293024393947192, - "c6": 5.597447512841022, - "c7": 15.431270523577322 + "points": { + "c1": 2.298166875877083, + "c2": 18.372584578801952, + "c3": 0.9293428274256819, + "c4": 2.7743507508683685, + "c5": -4.429277890859595, + "c6": 21.2499932336891, + "c7": -1.7877596364021464 }, - "vertexSeeds": { - "c1": 6.559899348327882, - "c2": 6.376671167003991, - "c3": 6.290850473264391, - "c4": 6.715073791626604, - "c5": 6.123886900035228, - "c6": 6.096227239768642, - "c7": 6.4647669309581035 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957003, + "c3": 8.021266759130837, + "c4": 6.417013407304669, + "c5": 4.812760055478502, + "c6": 3.2085067036523345, + "c7": 1.6042533518261672 }, "rgb": [58, 15, 49] }, @@ -387294,23 +387294,23 @@ "year": 1807, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -20.904387057317642, - "c2": 2.7512974937200987, - "c3": -7.328036715938033, - "c4": 1.966536769567881, - "c5": -1.185851603623604, - "c6": -27.061261860680553, - "c7": -21.37297815168547 + "points": { + "c1": 5.068594566838964, + "c2": 0.7242928929894354, + "c3": -4.745062036534087, + "c4": 21.98958631899914, + "c5": 25.350949205067796, + "c6": -12.599612457484923, + "c7": 24.961850349923647 }, - "vertexSeeds": { - "c1": 1.6179688026142491, - "c2": 1.728552810396983, - "c3": 1.7292776726452352, - "c4": 1.564782561244877, - "c5": 1.5922768325394747, - "c6": 1.590167977938783, - "c7": 1.7219798282381615 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.5242718446601953, + "c3": 2.103559870550164, + "c4": 1.682847896440129, + "c5": 1.2621359223300976, + "c6": 0.8414239482200663, + "c7": 0.42071197411003125 }, "rgb": [238, 201, 159] }, @@ -387321,23 +387321,23 @@ "year": 1806, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 13.908057103515471, - "c2": 15.415348993522375, - "c3": -6.3831208114281885, - "c4": -14.743276441051437, - "c5": -13.89018401470883, - "c6": -2.997413249936031, - "c7": 28.007738105884965 + "points": { + "c1": -15.176779831429899, + "c2": -18.996044676836533, + "c3": 16.944546320416617, + "c4": 6.2101857391657695, + "c5": -9.984060513926106, + "c6": -18.624050735048012, + "c7": 24.874565469825942 }, - "vertexSeeds": { - "c1": 6.932861243671006, - "c2": 7.421012130488292, - "c3": 7.068600738393905, - "c4": 6.9014032329275805, - "c5": 7.379033290039289, - "c6": 7.3629219230485, - "c7": 7.153320405052026 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525666, + "c3": 8.922792417938046, + "c4": 7.138233934350445, + "c5": 5.353675450762824, + "c6": 3.5691169671752223, + "c7": 1.784558483587602 }, "rgb": [77, 76, 132] }, @@ -387348,23 +387348,23 @@ "year": 1807, "resistanceReported": false, "duration": 39657600, - "curveSeeds": { - "c1": -47.25966613902801, - "c2": 13.530997611747047, - "c3": -46.782701172912816, - "c4": 41.56997350239296, - "c5": 10.092523299131507, - "c6": 21.001172043530126, - "c7": 38.85527527386929 + "points": { + "c1": -49.264429802902846, + "c2": -21.62855183350296, + "c3": 32.431734178457994, + "c4": -39.18129271243761, + "c5": -46.623201016756155, + "c6": 6.9467005107954805, + "c7": -0.5314776846002047 }, - "vertexSeeds": { - "c1": 10.239931558074268, - "c2": 10.042775049754564, - "c3": 9.913530585377725, - "c4": 10.30071958595623, - "c5": 10.095667575571552, - "c6": 10.178418049619944, - "c7": 10.012750405357606 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438306, + "c3": 12.320850670365283, + "c4": 9.856680536292174, + "c5": 7.392510402219153, + "c6": 4.9283402681461315, + "c7": 2.464170134073021 }, "rgb": [238, 201, 159] }, @@ -387375,23 +387375,23 @@ "year": 1807, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 7.00704909815758, - "c2": 9.039666261780383, - "c3": 22.55517593853658, - "c4": -29.719288901234403, - "c5": 3.572778930630129, - "c6": 31.056709425649323, - "c7": -31.975234645037446 + "points": { + "c1": -40.38679366747365, + "c2": 4.745765466126798, + "c3": 34.43134563701917, + "c4": 1.6722067301976509, + "c5": 23.28791726280611, + "c6": -22.18132386907486, + "c7": -31.851099094583084 }, - "vertexSeeds": { - "c1": 3.2806236860136857, - "c2": 3.302995085140192, - "c3": 3.3294962959686827, - "c4": 3.2711228991022363, - "c5": 3.2188544829075405, - "c6": 3.4166687969865692, - "c7": 3.2179499932924323 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481274, + "c3": 4.299583911234392, + "c4": 3.4396671289875185, + "c5": 2.579750346740637, + "c6": 1.7198335644937548, + "c7": 0.8599167822468818 }, "rgb": [58, 15, 49] }, @@ -387402,23 +387402,23 @@ "year": 1806, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -24.626419850395774, - "c2": -7.906670476708964, - "c3": 6.926236624483611, - "c4": -20.798464182756575, - "c5": -23.46288918217627, - "c6": -18.32858292645988, - "c7": 12.971419819582668 + "points": { + "c1": 15.145173511686348, + "c2": -19.581862655956257, + "c3": 25.552263507598244, + "c4": 4.656930287728958, + "c5": 12.53472953025388, + "c6": 2.566555127448911, + "c7": 19.689198038208065 }, - "vertexSeeds": { - "c1": 7.156822268506613, - "c2": 7.421534748571123, - "c3": 7.581360528414961, - "c4": 7.685583508972764, - "c5": 7.686305530984948, - "c6": 7.501888134532256, - "c7": 7.603590538261002 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407298, + "c4": 7.397133610725835, + "c5": 5.54785020804439, + "c6": 3.698566805362927, + "c7": 1.8492834026814635 }, "rgb": [222, 0, 59] }, @@ -387429,23 +387429,23 @@ "year": 1806, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -9.600480616115853, - "c2": 10.644404264261713, - "c3": -14.798002620347372, - "c4": -19.162323030951182, - "c5": 0.1458335383854923, - "c6": -16.159860802737796, - "c7": -27.546981661245447 + "points": { + "c1": -18.369322829617776, + "c2": -17.444765098868658, + "c3": -0.46625882477319536, + "c4": 6.492517694441073, + "c5": 11.838336059537259, + "c6": -0.7985750373194733, + "c7": -24.26805309501607 }, - "vertexSeeds": { - "c1": 2.0622372251280403, - "c2": 1.9189539490621244, - "c3": 2.0492893132037566, - "c4": 2.071720254390531, - "c5": 1.9251840889458793, - "c6": 2.008786252844777, - "c7": 2.0088372640063112 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.995839112343968, + "c3": 2.4965325936199707, + "c4": 1.9972260748959774, + "c5": 1.497919556171984, + "c6": 0.9986130374479907, + "c7": 0.4993065187239933 }, "rgb": [77, 76, 132] }, @@ -387456,23 +387456,23 @@ "year": 1807, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 12.480400646983, - "c2": 16.91522679638556, - "c3": 13.301471522370996, - "c4": 0.1527165756518869, - "c5": 31.76134114952677, - "c6": 23.538982464034504, - "c7": -20.76392521752524 + "points": { + "c1": -36.231930198345935, + "c2": 32.44065320931085, + "c3": -25.756464196536367, + "c4": -7.560090166408443, + "c5": 19.718096564038085, + "c6": 33.28968226349572, + "c7": 30.880013688509877 }, - "vertexSeeds": { - "c1": 9.223894885875776, - "c2": 7.334638927483422, - "c3": 8.598263727622678, - "c4": 8.153646706589617, - "c5": 8.749625237315788, - "c6": 7.280131046598549, - "c7": 7.690512835704091 + "offsets": { + "c1": 19.676375404530745, + "c2": 16.865464632454927, + "c3": 14.054553860379109, + "c4": 11.243643088303282, + "c5": 8.432732316227463, + "c6": 5.621821544151645, + "c7": 2.8109107720758226 }, "rgb": [222, 0, 59] }, @@ -387483,23 +387483,23 @@ "year": 1807, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 14.89305680215439, - "c2": -2.4014463452628547, - "c3": -11.385615669379973, - "c4": 4.081016310723797, - "c5": 1.0510396366234467, - "c6": 26.609872146673283, - "c7": 11.017017981631653 + "points": { + "c1": 5.0656842069829935, + "c2": 4.911024995981471, + "c3": -19.57059622880348, + "c4": 13.003337773796723, + "c5": 12.222695735849904, + "c6": -12.564213931399255, + "c7": -1.8138791253714857 }, - "vertexSeeds": { - "c1": 2.1949146406969353, - "c2": 1.9520700010804497, - "c3": 2.1597106019705374, - "c4": 2.153057208283105, - "c5": 2.058429892157987, - "c6": 2.0725896291259285, - "c7": 2.0411489476715547 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852995, + "c3": 2.635228848821081, + "c4": 2.1081830790568663, + "c5": 1.581137309292648, + "c6": 1.0540915395284332, + "c7": 0.5270457697642185 }, "rgb": [86, 146, 138] }, @@ -387510,23 +387510,23 @@ "year": 1807, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": -30.783085636168934, - "c2": -2.4828247443180445, - "c3": 22.648447193421042, - "c4": 20.080952618575346, - "c5": -43.083087968865485, - "c6": -7.636309952915028, - "c7": 24.70202037463418 + "points": { + "c1": -9.477443169172531, + "c2": 27.551365986934748, + "c3": 39.111338773350674, + "c4": 23.21457469907549, + "c5": -3.782720006932607, + "c6": -14.711564616558562, + "c7": -35.095657151191865 }, - "vertexSeeds": { - "c1": 10.34243009908561, - "c2": 10.548885079110825, - "c3": 9.322146071246985, - "c4": 9.152904347978518, - "c5": 10.268396264449649, - "c6": 10.50089952567939, - "c7": 9.166402205297109 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323155, + "c3": 12.82940360610264, + "c4": 10.263522884882102, + "c5": 7.697642163661578, + "c6": 5.131761442441051, + "c7": 2.5658807212205255 }, "rgb": [222, 0, 59] }, @@ -387537,23 +387537,23 @@ "year": 1806, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 13.792162152003907, - "c2": -9.426311239819945, - "c3": 9.798238219194008, - "c4": -25.47721207301032, - "c5": 8.860886562721038, - "c6": 13.116793615970526, - "c7": 20.081801606931005 + "points": { + "c1": -17.51669532651355, + "c2": -20.44910974552671, + "c3": 21.930268913632883, + "c4": 23.190624598926764, + "c5": 10.150136883023958, + "c6": 13.187838191426014, + "c7": -19.814604928875937 }, - "vertexSeeds": { - "c1": 7.161943123488937, - "c2": 7.4578205240182065, - "c3": 6.978081726625434, - "c4": 6.988197032625619, - "c5": 7.410358508371796, - "c6": 7.003208752310109, - "c7": 7.336934918273513 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [58, 15, 49] }, @@ -387564,23 +387564,23 @@ "year": 1807, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -16.228026511677065, - "c2": 10.279612206492075, - "c3": 12.201864072510013, - "c4": 28.368440754047796, - "c5": 1.7591080352118134, - "c6": 2.113763141653518, - "c7": -27.99331337964708 + "points": { + "c1": -6.6778107818025205, + "c2": 3.4540626256814164, + "c3": 9.785223861691001, + "c4": 7.570316441138161, + "c5": -6.917177324262621, + "c6": -23.11446716585693, + "c7": -22.804356952032524 }, - "vertexSeeds": { - "c1": 1.7028844874770386, - "c2": 1.5072750474703844, - "c3": 1.6298987208431228, - "c4": 1.6813512142873737, - "c5": 1.5782655289632306, - "c6": 1.5910825910159285, - "c7": 1.6519682756289196 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.468793342579749, + "c3": 2.057327785483126, + "c4": 1.6458622283864992, + "c5": 1.2343966712898764, + "c6": 0.8229311141932496, + "c7": 0.4114655570966267 }, "rgb": [77, 76, 132] }, @@ -387591,23 +387591,23 @@ "year": 1807, "resistanceReported": false, "duration": 32486400, - "curveSeeds": { - "c1": 9.203472734492088, - "c2": 44.067869974659814, - "c3": 44.133091818476004, - "c4": -8.815124943899562, - "c5": 29.267429476822812, - "c6": -15.603912751914894, - "c7": 33.22297371299665 + "points": { + "c1": -35.21441523973891, + "c2": -7.365875138088235, + "c3": 15.935033597220958, + "c4": 7.901113950592432, + "c5": -30.77355493878349, + "c6": 39.16697001171116, + "c7": 13.074913253620736 }, - "vertexSeeds": { - "c1": 10.237733975986508, - "c2": 10.19198184432959, - "c3": 9.338992481998137, - "c4": 9.995382932710708, - "c5": 10.003997021435369, - "c6": 8.161576039294612, - "c7": 10.37354779927067 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.979195561719838, + "c3": 12.482662968099861, + "c4": 9.986130374479886, + "c5": 7.489597780859919, + "c6": 4.993065187239943, + "c7": 2.496532593619968 }, "rgb": [77, 76, 132] }, @@ -387618,23 +387618,23 @@ "year": 1807, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 5.222284459834242, - "c2": 13.930092808490635, - "c3": 1.641281980296732, - "c4": -1.4213881970768512, - "c5": 25.580388773837228, - "c6": 22.729648255373277, - "c7": -26.571464244614603 + "points": { + "c1": 21.943006107896643, + "c2": -15.033881403469495, + "c3": -11.449686835114928, + "c4": -15.810282812292332, + "c5": 17.207452421073583, + "c6": 7.775709207459329, + "c7": -13.335694155924102 }, - "vertexSeeds": { - "c1": 5.497643060251215, - "c2": 6.2212181801526505, - "c3": 7.110461650222598, - "c4": 5.95276329282022, - "c5": 6.6453413418411875, - "c6": 5.603053149608567, - "c7": 5.489235878823705 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801665, + "c3": 8.506703652334718, + "c4": 6.805362921867774, + "c5": 5.104022191400835, + "c6": 3.402681460933891, + "c7": 1.7013407304669455 }, "rgb": [86, 146, 138] }, @@ -387645,23 +387645,23 @@ "year": 1807, "resistanceReported": false, "duration": 42163200, - "curveSeeds": { - "c1": -47.53591351372092, - "c2": -22.86814935967505, - "c3": -5.355469332575893, - "c4": 43.0900848038251, - "c5": 37.06385355605942, - "c6": -13.336795258401189, - "c7": 39.35619844225618 + "points": { + "c1": 57.3254030767504, + "c2": 54.86742657295998, + "c3": -14.883027635353884, + "c4": -41.069978880231645, + "c5": 29.94700149385148, + "c6": -3.671280143174677, + "c7": 57.69775934984488 }, - "vertexSeeds": { - "c1": 5.95924176937635, - "c2": 5.4368590991045735, - "c3": 5.642078828408032, - "c4": 5.375501157457993, - "c5": 5.681348027064234, - "c6": 5.427051265748322, - "c7": 5.380722730098993 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313453, + "c3": 7.651410078594542, + "c4": 6.121128062875632, + "c5": 4.590846047156732, + "c6": 3.060564031437821, + "c7": 1.5302820157189105 }, "rgb": [58, 15, 49] }, @@ -387672,23 +387672,23 @@ "year": 1807, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -15.820717899868772, - "c2": 20.068928739116476, - "c3": 25.482053405108058, - "c4": -26.8647738014525, - "c5": -16.47105375081067, - "c6": -19.062753890523133, - "c7": -14.256044154105876 + "points": { + "c1": -27.46342583116443, + "c2": 19.540633717160667, + "c3": -8.605577075314745, + "c4": -19.45502248706791, + "c5": 8.11542007542593, + "c6": -14.725238216702305, + "c7": 18.114136631177843 }, - "vertexSeeds": { - "c1": 2.1379920732475153, - "c2": 2.2417062056629327, - "c3": 2.19286487278631, - "c4": 2.077639112110195, - "c5": 1.975064893999912, - "c6": 2.0210951323088637, - "c7": 2.120882671015977 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786407, + "c3": 2.7508090614886727, + "c4": 2.2006472491909403, + "c5": 1.6504854368932051, + "c6": 1.1003236245954702, + "c7": 0.5501618122977351 }, "rgb": [222, 0, 59] }, @@ -387699,23 +387699,23 @@ "year": 1806, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -15.9691491660392, - "c2": 18.781060206461635, - "c3": -16.06658703207607, - "c4": 25.412409172644555, - "c5": 26.738716707828328, - "c6": 15.799877679549635, - "c7": -12.38214379396782 + "points": { + "c1": 10.11971404539985, + "c2": -20.264183805443324, + "c3": 28.1960197373046, + "c4": 5.634629787643124, + "c5": -13.253919722206867, + "c6": 20.538545824069022, + "c7": -27.17371983191684 }, - "vertexSeeds": { - "c1": 6.394896073361212, - "c2": 6.406637284778033, - "c3": 6.382965756468614, - "c4": 6.404306111800786, - "c5": 6.401622591195864, - "c6": 6.374551575740064, - "c7": 6.39049763403544 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313497, + "c3": 7.651410078594632, + "c4": 6.1211280628757665, + "c5": 4.590846047156597, + "c6": 3.060564031437731, + "c7": 1.5302820157188655 }, "rgb": [222, 0, 59] }, @@ -387726,23 +387726,23 @@ "year": 1806, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 17.742893150103978, - "c2": 18.769253563276326, - "c3": -11.005804275701406, - "c4": 7.932162617624428, - "c5": -11.625386721391433, - "c6": -3.1026640550991864, - "c7": -3.9362209312066305 + "points": { + "c1": 4.0560482849690125, + "c2": 21.28058594263214, + "c3": -23.933420667539515, + "c4": -15.14655045284925, + "c5": 3.894046234566815, + "c6": -18.02441552141076, + "c7": -16.749174759776892 }, - "vertexSeeds": { - "c1": 2.0520163447081816, - "c2": 2.149581115843978, - "c3": 2.2072862329883485, - "c4": 2.0951638308667984, - "c5": 2.2411640803735944, - "c6": 2.0853194862655164, - "c7": 2.0686293494873182 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.300970873786407, + "c3": 2.7508090614886727, + "c4": 2.2006472491909403, + "c5": 1.6504854368932051, + "c6": 1.1003236245954702, + "c7": 0.5501618122977351 }, "rgb": [238, 201, 159] }, @@ -387753,23 +387753,23 @@ "year": 1806, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 21.370690706776962, - "c2": 22.46368198512114, - "c3": 20.442395387096916, - "c4": 12.21435818598384, - "c5": 15.827603275043089, - "c6": -23.95812563678927, - "c7": 5.000781179051781 + "points": { + "c1": 13.048684936035855, + "c2": -0.5679729791224162, + "c3": 20.369484568183218, + "c4": 26.066221034197824, + "c5": -10.195753709591738, + "c6": -21.723463334127217, + "c7": -9.525813604914067 }, - "vertexSeeds": { - "c1": 5.617479715492929, - "c2": 5.578472794172284, - "c3": 5.880003094986113, - "c4": 5.699248075802824, - "c5": 5.874253257792344, - "c6": 5.909132888395572, - "c7": 5.524517159284613 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -387780,23 +387780,23 @@ "year": 1806, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -9.089745476697505, - "c2": -19.90761676040836, - "c3": 11.998492120098152, - "c4": 0.3052852039363714, - "c5": -10.559900877186625, - "c6": -4.3650049967680395, - "c7": 14.475013938454136 + "points": { + "c1": 27.323590491531963, + "c2": -17.72300037959924, + "c3": 10.00146913119291, + "c4": -16.637632940843698, + "c5": 25.34483439767722, + "c6": -16.210084990547884, + "c7": 25.162524255196463 }, - "vertexSeeds": { - "c1": 7.856638101004008, - "c2": 7.515795211494664, - "c3": 8.024560966925547, - "c4": 7.763383385532394, - "c5": 7.981745651817235, - "c6": 7.780171384008485, - "c7": 7.649858720184945 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174766, + "c3": 9.870550161812295, + "c4": 7.896440129449844, + "c5": 5.922330097087373, + "c6": 3.948220064724922, + "c7": 1.97411003236247 }, "rgb": [77, 76, 132] }, @@ -387807,23 +387807,23 @@ "year": 1807, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 16.783638244169225, - "c2": 8.433420738573709, - "c3": -9.673358600471488, - "c4": 1.3400842550500087, - "c5": 7.476823951621654, - "c6": 19.24970759254328, - "c7": 11.015546230214689 + "points": { + "c1": -11.471347038727952, + "c2": 4.2089809541928105, + "c3": -16.58880613002343, + "c4": -16.117554477682205, + "c5": 5.664060676385496, + "c6": 17.884898456215574, + "c7": 19.16864512128363 }, - "vertexSeeds": { - "c1": 8.49928483365902, - "c2": 8.070393992882678, - "c3": 8.249178325992483, - "c4": 7.7867414675658315, - "c5": 8.0537480335648, - "c6": 8.131678459662728, - "c7": 8.267455401244417 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657427, + "c3": 10.14794267221451, + "c4": 8.118354137771613, + "c5": 6.088765603328714, + "c6": 4.059177068885797, + "c7": 2.0295885344428983 }, "rgb": [222, 0, 59] }, @@ -387834,23 +387834,23 @@ "year": 1807, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -19.02006726059817, - "c2": -5.5350568699904485, - "c3": 11.840531892702963, - "c4": -4.610613495468225, - "c5": -11.393628681569776, - "c6": -15.345114314318353, - "c7": 25.538895532814934 + "points": { + "c1": 7.915790953579155, + "c2": -8.470950044153092, + "c3": -22.40895877063511, + "c4": -0.6772849218562982, + "c5": 8.059007164748259, + "c6": -22.58988226248512, + "c7": -30.302022253630266 }, - "vertexSeeds": { - "c1": 7.626035789537769, - "c2": 7.786883960858214, - "c3": 7.21086155481784, - "c4": 7.717142708493308, - "c5": 7.021160883272212, - "c6": 7.514616720592499, - "c7": 7.224520399540328 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.17891816920943, + "c3": 9.315765141007853, + "c4": 7.452612112806297, + "c5": 5.589459084604723, + "c6": 3.7263060564031485, + "c7": 1.8631530282015742 }, "rgb": [238, 201, 159] }, @@ -387861,23 +387861,23 @@ "year": 1807, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 16.088806898835784, - "c2": -18.572909278336937, - "c3": 18.620135033007273, - "c4": 26.266919934239986, - "c5": 25.15247822116121, - "c6": 13.131839572541068, - "c7": -25.89619841842955 + "points": { + "c1": -8.888431599265857, + "c2": -10.019636474303379, + "c3": 23.98879109885513, + "c4": 1.7936115626690636, + "c5": 26.57508455703011, + "c6": -27.23390962860174, + "c7": -17.152984200779763 }, - "vertexSeeds": { - "c1": 7.101743527844553, - "c2": 7.274622009691041, - "c3": 7.437815863117536, - "c4": 7.315122984358161, - "c5": 7.284900657983453, - "c6": 7.213596091754022, - "c7": 7.205472683855712 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485436, + "c3": 8.899676375404532, + "c4": 7.119741100323624, + "c5": 5.339805825242718, + "c6": 3.559870550161812, + "c7": 1.779935275080906 }, "rgb": [222, 0, 59] }, @@ -387888,23 +387888,23 @@ "year": 1807, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -13.683885809613606, - "c2": -9.99302733251194, - "c3": 24.090242671287065, - "c4": -15.68663339119998, - "c5": 22.296833741769817, - "c6": 22.671377173238753, - "c7": -8.312865247500437 + "points": { + "c1": 21.76770097214454, + "c2": -12.853555700595855, + "c3": 9.762356512642626, + "c4": 9.709484268665506, + "c5": 15.625909747138188, + "c6": -26.904877276830767, + "c7": -7.336446896940561 }, - "vertexSeeds": { - "c1": 4.082152158089439, - "c2": 3.948706512861567, - "c3": 4.06576658480378, - "c4": 3.8610800857781817, - "c5": 3.637063939954805, - "c6": 4.005643010634494, - "c7": 4.030609270620407 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009708, + "c3": 5.1779935275080895, + "c4": 4.142394822006476, + "c5": 3.1067961165048565, + "c6": 2.071197411003238, + "c7": 1.035598705501619 }, "rgb": [77, 76, 132] }, @@ -387915,23 +387915,23 @@ "year": 1807, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 8.47938936137966, - "c2": 34.21956620428172, - "c3": 1.0479937533881625, - "c4": -9.012795328522085, - "c5": -25.714441121715282, - "c6": 15.528782671287068, - "c7": -25.76650652051284 + "points": { + "c1": 36.39901219040847, + "c2": -17.338268649506915, + "c3": -1.9131226990511294, + "c4": -25.538065367622266, + "c5": 21.863634598626092, + "c6": -28.066278325809613, + "c7": -5.846733825734905 }, - "vertexSeeds": { - "c1": 8.446868121945187, - "c2": 8.260301312640193, - "c3": 8.58469542508711, - "c4": 8.67823600829457, - "c5": 8.186736412383246, - "c6": 8.709444749778378, - "c7": 8.475215104910648 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421631, + "c3": 10.587147480351373, + "c4": 8.469717984281093, + "c5": 6.3522884882108155, + "c6": 4.234858992140536, + "c7": 2.117429496070279 }, "rgb": [86, 146, 138] }, @@ -387942,23 +387942,23 @@ "year": 1807, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 1.0080612856192985, - "c2": -23.950104848780438, - "c3": 21.2785708330492, - "c4": -28.854229329799168, - "c5": 30.70232253491085, - "c6": -18.006901587709198, - "c7": -12.560182519380199 + "points": { + "c1": 15.201960585712463, + "c2": -30.10997860116416, + "c3": -6.138226262446537, + "c4": -5.024925085968082, + "c5": 13.245393499966283, + "c6": -27.208770092155937, + "c7": 8.15151348751563 }, - "vertexSeeds": { - "c1": 3.7056847589868918, - "c2": 3.7114457763179827, - "c3": 3.776171070524831, - "c4": 3.743859239854115, - "c5": 3.7970726445452296, - "c6": 3.6901047513058556, - "c7": 3.771551400300262 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044386, + "c3": 4.623208506703647, + "c4": 3.69856680536292, + "c5": 2.773925104022193, + "c6": 1.8492834026814657, + "c7": 0.9246417013407271 }, "rgb": [77, 76, 132] }, @@ -387969,23 +387969,23 @@ "year": 1807, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 25.916988300341416, - "c2": -33.04566460871538, - "c3": -38.59578518462113, - "c4": 23.86167080759278, - "c5": -37.55329169269261, - "c6": 37.80852053094401, - "c7": -4.858004346570837 + "points": { + "c1": -37.89186251581562, + "c2": 8.337539147480605, + "c3": 2.3131899581155295, + "c4": 28.49989807041436, + "c5": 28.881302359930473, + "c6": 2.8885894357409967, + "c7": 33.14518160176148 }, - "vertexSeeds": { - "c1": 2.1573920164775444, - "c2": 2.080070862495989, - "c3": 2.0018974285889986, - "c4": 2.076559277645908, - "c5": 2.3467816797949763, - "c6": 2.1226470852141763, - "c7": 2.0850335658944585 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070725, + "c3": 2.8201571890892296, + "c4": 2.256125751271383, + "c5": 1.6920943134535362, + "c6": 1.1280628756356899, + "c7": 0.5640314378178465 }, "rgb": [86, 146, 138] }, @@ -387996,23 +387996,23 @@ "year": 1807, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 8.910795138744636, - "c2": -22.009953544276375, - "c3": 16.056042449037253, - "c4": -0.2640350296381655, - "c5": -10.114858544542535, - "c6": 11.20539615354362, - "c7": -27.552502941523638 + "points": { + "c1": 28.063307968760082, + "c2": 20.751219234036657, + "c3": -29.774330794203912, + "c4": -18.263250884966908, + "c5": -19.870465797672693, + "c6": 5.122454688492088, + "c7": 28.753414716952225 }, - "vertexSeeds": { - "c1": 7.260313770571992, - "c2": 6.718748068636416, - "c3": 6.710136565374644, - "c4": 6.921248734058945, - "c5": 7.082376183753193, - "c6": 6.807844452089446, - "c7": 6.787499804371813 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203886, + "c3": 8.737864077669908, + "c4": 6.99029126213593, + "c5": 5.242718446601934, + "c6": 3.495145631067956, + "c7": 1.747572815533978 }, "rgb": [238, 201, 159] }, @@ -388023,23 +388023,23 @@ "year": 1807, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 14.806171184225256, - "c2": 1.1178182793923348, - "c3": -21.602027001211752, - "c4": 16.273885475289127, - "c5": -18.88344528261365, - "c6": 26.512916903181114, - "c7": 2.519909027377345 + "points": { + "c1": 3.096069756009946, + "c2": -28.88003463820491, + "c3": -1.3261259055625132, + "c4": -12.252745131521142, + "c5": 2.4711967240706727, + "c6": 14.261237486653322, + "c7": -0.38221719167287915 }, - "vertexSeeds": { - "c1": 7.998092865598047, - "c2": 8.016651681484197, - "c3": 7.972151344292783, - "c4": 7.890754641809913, - "c5": 8.014463054532573, - "c6": 7.289567557125692, - "c7": 7.3781871229337215 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.53952843273231, + "c3": 9.6162736939436, + "c4": 7.693018955154874, + "c5": 5.7697642163661635, + "c6": 3.846509477577437, + "c7": 1.9232547387887273 }, "rgb": [86, 146, 138] }, @@ -388050,23 +388050,23 @@ "year": 1807, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -5.506864607429041, - "c2": 25.65063597768264, - "c3": 4.421275508659978, - "c4": 16.66340613612605, - "c5": -24.506580269950035, - "c6": 25.470698540615345, - "c7": -13.960053775500771 + "points": { + "c1": -21.999703213985484, + "c2": 6.453065768128923, + "c3": 28.306026762070047, + "c4": 7.595355878533503, + "c5": -19.366136138282613, + "c6": -1.132524971477391, + "c7": 0.5277561461977953 }, - "vertexSeeds": { - "c1": 4.610452456013247, - "c2": 4.4659479599210945, - "c3": 4.651265182310333, - "c4": 4.737794145371676, - "c5": 4.42644857468247, - "c6": 4.485509312068376, - "c7": 4.364923155225079 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975038, + "c3": 5.732778548312525, + "c4": 4.586222838650023, + "c5": 3.439667128987519, + "c6": 2.2931114193250157, + "c7": 1.1465557096625034 }, "rgb": [86, 146, 138] }, @@ -388077,23 +388077,23 @@ "year": 1807, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -23.96988172076879, - "c2": -27.756208998944178, - "c3": 18.12133644828858, - "c4": -33.18762910237015, - "c5": 8.835655999193875, - "c6": -24.16912045544851, - "c7": -17.684556290245613 + "points": { + "c1": -29.54355635501906, + "c2": -18.695603205997145, + "c3": 2.6894320359939385, + "c4": 0.07358003379434308, + "c5": 23.955281814306275, + "c6": -8.396736345475894, + "c7": -5.491669542769991 }, - "vertexSeeds": { - "c1": 3.683313681078468, - "c2": 3.5771365828853017, - "c3": 3.6266817940208793, - "c4": 3.4708205992110273, - "c5": 3.5229769939404525, - "c6": 3.515737865895941, - "c7": 3.4585892349844674 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682388, + "c3": 4.415164123901992, + "c4": 3.5321312991215845, + "c5": 2.649098474341188, + "c6": 1.7660656495607923, + "c7": 0.8830328247803961 }, "rgb": [58, 15, 49] }, @@ -388104,23 +388104,23 @@ "year": 1807, "resistanceReported": false, "duration": 40780800, - "curveSeeds": { - "c1": -34.22855077038581, - "c2": 48.55000559767986, - "c3": 36.139359960004235, - "c4": 32.9784212983615, - "c5": 44.711439475249186, - "c6": -26.277589758356083, - "c7": -17.997954628575684 + "points": { + "c1": 56.07888007565125, + "c2": 21.467938442495402, + "c3": 25.73835868709073, + "c4": -2.607428552031344, + "c5": -4.740580159230134, + "c6": -21.272569993138795, + "c7": 7.5602232643353275 }, - "vertexSeeds": { - "c1": 9.147275597321505, - "c2": 11.358812123936579, - "c3": 10.308652471503176, - "c4": 9.279015550056126, - "c5": 10.989002425861704, - "c6": 11.430807978134888, - "c7": 10.626136645199885 + "offsets": { + "c1": 19.158576051779935, + "c2": 16.421636615811376, + "c3": 13.684697179842805, + "c4": 10.947757743874245, + "c5": 8.210818307905688, + "c6": 5.4738788719371225, + "c7": 2.7369394359685577 }, "rgb": [238, 201, 159] }, @@ -388131,23 +388131,23 @@ "year": 1807, "resistanceReported": true, "duration": 25660800, - "curveSeeds": { - "c1": 30.498760425280693, - "c2": 17.03929564713725, - "c3": 20.424710468216396, - "c4": -8.370278291152193, - "c5": -15.072832598236527, - "c6": 1.7636115962034253, - "c7": 5.625278357164127 + "points": { + "c1": 10.742882089299037, + "c2": -39.72296696333552, + "c3": 6.282707193973749, + "c4": -16.463005809985965, + "c5": 28.886972190757263, + "c6": -39.56398422473258, + "c7": 32.43815501551117 }, - "vertexSeeds": { - "c1": 4.692191900584051, - "c2": 4.767848164660871, - "c3": 4.989226210144528, - "c4": 4.613814490750118, - "c5": 4.567105379370594, - "c6": 4.908790204217828, - "c7": 4.759576893548544 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181233, + "c4": 4.789644012944979, + "c5": 3.592233009708734, + "c6": 2.3948220064724897, + "c7": 1.1974110032362448 }, "rgb": [58, 15, 49] }, @@ -388158,23 +388158,23 @@ "year": 1807, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 2.6939591279277764, - "c2": 12.876593968981084, - "c3": -35.03016713299658, - "c4": -25.80863764205401, - "c5": -23.929748097635944, - "c6": -33.38321062374936, - "c7": 11.35415483874879 + "points": { + "c1": 6.765270831741773, + "c2": 12.128254533312543, + "c3": -34.52460082081696, + "c4": 24.588685115358942, + "c5": -4.4767578220612165, + "c6": -16.06714822353704, + "c7": 2.6699658179133294 }, - "vertexSeeds": { - "c1": 4.62170957492671, - "c2": 4.479523552280297, - "c3": 4.643035504416893, - "c4": 4.329337933653249, - "c5": 4.464820572318138, - "c6": 4.513795833814457, - "c7": 4.195513611420994 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653263, + "c3": 5.54785020804438, + "c4": 4.438280166435508, + "c5": 3.3287101248266264, + "c6": 2.219140083217754, + "c7": 1.1095700416088818 }, "rgb": [222, 0, 59] }, @@ -388185,23 +388185,23 @@ "year": 1806, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 13.760083307816743, - "c2": 15.502726999777785, - "c3": 1.8308186014672714, - "c4": 1.329754764563809, - "c5": -22.248191993373162, - "c6": -2.3270190728924476, - "c7": 15.319231636147073 + "points": { + "c1": -15.736894980129739, + "c2": -14.465038232620689, + "c3": -14.885884953543227, + "c4": -25.58751687122632, + "c5": 14.340882695945552, + "c6": -7.196982376512974, + "c7": 22.031592928121214 }, - "vertexSeeds": { - "c1": 1.7098445595854923, - "c2": 1.7098445595854923, - "c3": 1.7098445595854923, - "c4": 1.7098445595854923, - "c5": 1.7098445595854923, - "c6": 1.7098445595854923, - "c7": 1.7098445595854923 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -388212,23 +388212,23 @@ "year": 1806, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 21.744485163462894, - "c2": 3.555905201740927, - "c3": -3.132268086745416, - "c4": -6.450409039598391, - "c5": 0.273826808902232, - "c6": 11.753918868471398, - "c7": 15.071778304301905 + "points": { + "c1": -16.30556553295709, + "c2": -0.7052610370469985, + "c3": 10.045712566470964, + "c4": 13.20261468993986, + "c5": 23.90161224067882, + "c6": -14.173244530233772, + "c7": -11.640303032304491 }, - "vertexSeeds": { - "c1": 5.436500325219205, - "c2": 5.556531796912221, - "c3": 5.4903100506440765, - "c4": 5.64995216124208, - "c5": 5.966384016595475, - "c6": 5.6954827637197205, - "c7": 5.429219908580283 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -388239,23 +388239,23 @@ "year": 1807, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -8.788056515484087, - "c2": -30.446322102436685, - "c3": 26.390449249839335, - "c4": 41.12129005041456, - "c5": 17.0096953938979, - "c6": 35.20799346090388, - "c7": 34.21019810738274 + "points": { + "c1": -9.770089825217795, + "c2": 32.970951774674305, + "c3": -33.95309132039829, + "c4": -18.14761259736309, + "c5": 26.443150029307176, + "c6": 4.803726253874231, + "c7": 34.662660378997046 }, - "vertexSeeds": { - "c1": 5.820601382833719, - "c2": 5.522300958278414, - "c3": 5.805813060581147, - "c4": 5.684886429368378, - "c5": 5.867700870067892, - "c6": 5.941420345778445, - "c7": 5.424477619024083 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -388266,23 +388266,23 @@ "year": 1807, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 18.833812296520925, - "c2": -1.9406137128405057, - "c3": 22.403959537703898, - "c4": 1.783798826418817, - "c5": 10.53570599091995, - "c6": -9.694402983221611, - "c7": 28.58199758671237 + "points": { + "c1": -27.839069739288792, + "c2": 17.830200288054918, + "c3": 24.81541216498831, + "c4": -26.529521492176332, + "c5": 14.44463571433944, + "c6": -0.4913685659262512, + "c7": -23.6517149870695 }, - "vertexSeeds": { - "c1": 2.907531244668788, - "c2": 2.615488715991911, - "c3": 2.73972246618138, - "c4": 2.502671223240458, - "c5": 2.8524664582689865, - "c6": 2.7014831561803714, - "c7": 2.8182912129120186 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282934, + "c4": 2.8294036061026344, + "c5": 2.122052704576975, + "c6": 1.4147018030513157, + "c7": 0.7073509015256565 }, "rgb": [58, 15, 49] }, @@ -388293,23 +388293,23 @@ "year": 1807, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 9.011904165014492, - "c2": 1.2651227721218383, - "c3": 13.343142317163014, - "c4": 26.63509900021792, - "c5": -26.030566280230055, - "c6": -7.768771001850343, - "c7": -1.101506636774257 + "points": { + "c1": 13.41231679995365, + "c2": 1.9201169681834287, + "c3": -0.7453050429560371, + "c4": 4.099586249127377, + "c5": -26.72001835886777, + "c6": 8.150049148118413, + "c7": 11.424765883792567 }, - "vertexSeeds": { - "c1": 6.555045904533997, - "c2": 6.3550401257489355, - "c3": 6.298775582200529, - "c4": 6.406280362016124, - "c5": 6.139589100384953, - "c6": 6.6368141525571325, - "c7": 6.647642376264215 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997222, + "c3": 8.04438280166435, + "c4": 6.435506241331475, + "c5": 4.826629680998621, + "c6": 3.2177531206657473, + "c7": 1.6088765603328736 }, "rgb": [86, 146, 138] }, @@ -388320,23 +388320,23 @@ "year": 1807, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -28.29628552698982, - "c2": -10.106778099994948, - "c3": -13.19786696456238, - "c4": -9.200807403842902, - "c5": -3.289418790253009, - "c6": 31.06637728020643, - "c7": -0.5208105958092126 + "points": { + "c1": -4.622483374760609, + "c2": -22.08548516655044, + "c3": 8.725064469525918, + "c4": 12.812898974511327, + "c5": 14.866703131666881, + "c6": 29.218241137911185, + "c7": 18.16307229605046 }, - "vertexSeeds": { - "c1": 7.861914324878259, - "c2": 7.483156198600993, - "c3": 7.557116731336476, - "c4": 7.407785016350076, - "c5": 8.109606887651058, - "c6": 7.392043631981448, - "c7": 7.720805844891752 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852984, + "c3": 9.685621821544157, + "c4": 7.748497457235329, + "c5": 5.811373092926501, + "c6": 3.874248728617655, + "c7": 1.9371243643088274 }, "rgb": [238, 201, 159] }, @@ -388347,23 +388347,23 @@ "year": 1807, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -1.855907817364944, - "c2": -7.376157331002936, - "c3": 18.435784215453914, - "c4": 31.329880390537184, - "c5": 5.9043308467152045, - "c6": 23.613360913221058, - "c7": 25.890001053332064 + "points": { + "c1": -17.753670131172516, + "c2": -12.216349887722458, + "c3": -24.816840749351655, + "c4": 7.206841350588647, + "c5": 21.22896573682494, + "c6": -16.254875984005448, + "c7": 21.841721936521914 }, - "vertexSeeds": { - "c1": 7.008748257204128, - "c2": 6.756977337131522, - "c3": 6.672678528357689, - "c4": 6.729668305004371, - "c5": 6.960556716661824, - "c6": 7.2556653164625775, - "c7": 7.250124031227988 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203886, + "c3": 8.737864077669908, + "c4": 6.99029126213593, + "c5": 5.242718446601934, + "c6": 3.495145631067956, + "c7": 1.747572815533978 }, "rgb": [86, 146, 138] }, @@ -388374,23 +388374,23 @@ "year": 1807, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -3.9704517668439934, - "c2": -4.931128316068225, - "c3": -19.643797472950855, - "c4": -19.96125494776323, - "c5": 1.5089095118885396, - "c6": -13.757935797925041, - "c7": 16.147586940314056 + "points": { + "c1": 0.1980253604167892, + "c2": -10.9060147482698, + "c3": -6.820679775086376, + "c4": 10.79333119382941, + "c5": 11.528061120357627, + "c6": 13.424467752046525, + "c7": 28.24070826041313 }, - "vertexSeeds": { - "c1": 1.9551676796096913, - "c2": 2.1481436060417396, - "c3": 2.2706736691896454, - "c4": 1.971320768475303, - "c5": 1.9183440304059332, - "c6": 1.9983879084945788, - "c7": 2.2102733261316008 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.9819694868238558, + "c4": 2.3855755894590844, + "c5": 1.7891816920943133, + "c6": 1.1927877947295422, + "c7": 0.5963938973647711 }, "rgb": [58, 15, 49] }, @@ -388401,23 +388401,23 @@ "year": 1807, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -24.328244512473436, - "c2": -37.12198242942841, - "c3": 29.102464910933207, - "c4": 7.071840555834832, - "c5": 5.726580094038269, - "c6": -1.5866396933424554, - "c7": -15.099127345343465 + "points": { + "c1": -32.8147007489854, + "c2": 24.701271253253978, + "c3": -21.453223545620812, + "c4": 19.439278660405876, + "c5": -25.34343549167444, + "c6": 18.9208826050003, + "c7": 4.119563445177214 }, - "vertexSeeds": { - "c1": 1.6538997009867487, - "c2": 1.6758723953709274, - "c3": 1.6852133380262915, - "c4": 1.6858778414152158, - "c5": 1.7428916300552248, - "c6": 1.7614224265152225, - "c7": 1.6375500636213156 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.635228848821082, + "c3": 2.196024040684235, + "c4": 1.756819232547388, + "c5": 1.317614424410541, + "c6": 0.878409616273694, + "c7": 0.439204808136847 }, "rgb": [238, 201, 159] }, @@ -388428,23 +388428,23 @@ "year": 1807, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -28.708662075970686, - "c2": -2.0598972653449508, - "c3": -21.617591536558173, - "c4": 19.993997605803074, - "c5": 11.153725590012023, - "c6": 24.534735986325543, - "c7": -19.458426476845055 + "points": { + "c1": 28.22729708189759, + "c2": -2.378994802259996, + "c3": 31.27068476798918, + "c4": 15.327703630386885, + "c5": -6.4407886690825045, + "c6": 31.52224069211715, + "c7": -2.592835180167569 }, - "vertexSeeds": { - "c1": 5.492874155461307, - "c2": 5.802025238132796, - "c3": 5.489958416531594, - "c4": 5.652158153272275, - "c5": 5.490210229747986, - "c6": 5.3761334692042375, - "c7": 5.505789302863707 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066565, + "c3": 6.93481276005548, + "c4": 5.547850208044377, + "c5": 4.160887656033292, + "c6": 2.7739251040221884, + "c7": 1.3869625520110846 }, "rgb": [238, 201, 159] }, @@ -388455,23 +388455,23 @@ "year": 1807, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 20.12245005688129, - "c2": 24.83685846369285, - "c3": -24.811974413881064, - "c4": 13.407147357414892, - "c5": -21.28141828398669, - "c6": -11.566409421972729, - "c7": -12.317088059109388 + "points": { + "c1": 36.29035779009649, + "c2": -37.62672828626461, + "c3": 15.553770714432467, + "c4": 19.167340659943733, + "c5": -38.29107987993153, + "c6": -29.567398071165208, + "c7": -24.017199585446804 }, - "vertexSeeds": { - "c1": 1.6538894505613242, - "c2": 1.5467343705041559, - "c3": 1.6844278761003402, - "c4": 1.6425540751609566, - "c5": 1.6154886142354545, - "c6": 1.6927412374194113, - "c7": 1.6058679806309955 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [86, 146, 138] }, @@ -388482,23 +388482,23 @@ "year": 1807, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -19.409133704964493, - "c2": 11.225246895919724, - "c3": -17.810646058402643, - "c4": -0.4345402086018666, - "c5": 1.784157147408152, - "c6": 12.566502811111128, - "c7": -21.631007451060075 + "points": { + "c1": 25.502015032361136, + "c2": 33.51504959627049, + "c3": 19.461849142808376, + "c4": -33.50575942680751, + "c5": -33.63289777372866, + "c6": 14.379853794743802, + "c7": -4.704932806745109 }, - "vertexSeeds": { - "c1": 10.77274091747549, - "c2": 10.59014387946045, - "c3": 9.782807165419428, - "c4": 10.26152972461333, - "c5": 9.98678607942579, - "c6": 10.25828594818036, - "c7": 10.31470132410151 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363392, + "c3": 12.85251964863617, + "c4": 10.28201571890891, + "c5": 7.711511789181687, + "c6": 5.141007859454464, + "c7": 2.570503929727223 }, "rgb": [238, 201, 159] }, @@ -388509,23 +388509,23 @@ "year": 1807, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -9.561242883476034, - "c2": -7.851961751571917, - "c3": 0.3710293505030684, - "c4": 9.97691787984484, - "c5": 24.156877425109684, - "c6": -7.176088613691778, - "c7": -9.528120617567495 + "points": { + "c1": -15.933968437148646, + "c2": 6.097729019911341, + "c3": 11.430110237773256, + "c4": -25.611674836112066, + "c5": 6.3985319619121555, + "c6": -25.0137365949318, + "c7": -23.84327479553959 }, - "vertexSeeds": { - "c1": 5.194140366759604, - "c2": 5.34716561548653, - "c3": 4.979633293221239, - "c4": 5.133091289339214, - "c5": 5.187276385200469, - "c6": 4.978396601944504, - "c7": 5.289785924265411 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318085, + "c4": 5.141007859454455, + "c5": 3.8557558945908434, + "c6": 2.570503929727232, + "c7": 1.2852519648636116 }, "rgb": [58, 15, 49] }, @@ -388536,23 +388536,23 @@ "year": 1806, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 23.5640820488412, - "c2": 1.1953731566178227, - "c3": -9.006710590201578, - "c4": 1.2715293157588192, - "c5": -7.485781101771039, - "c6": -7.144470942369114, - "c7": -7.438638210186259 + "points": { + "c1": 11.399412080091444, + "c2": 0.7105447766797326, + "c3": -5.081365208971054, + "c4": 12.081745265717267, + "c5": 13.29490204105744, + "c6": 23.32009025854404, + "c7": -24.60150371589938 }, - "vertexSeeds": { - "c1": 7.825772358932881, - "c2": 8.302577519985812, - "c3": 8.410952612771966, - "c4": 8.409487040088171, - "c5": 8.325377901244543, - "c6": 8.575990406655693, - "c7": 8.221676392960113 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898746, + "c3": 10.286638927415616, + "c4": 8.229311141932504, + "c5": 6.171983356449373, + "c6": 4.114655570966243, + "c7": 2.0573277854831304 }, "rgb": [86, 146, 138] }, @@ -388563,23 +388563,23 @@ "year": 1807, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -0.5010036005133642, - "c2": -23.406381287712563, - "c3": -0.3042895794544336, - "c4": 25.55601631171126, - "c5": -10.866640754994133, - "c6": -23.05197682827593, - "c7": 6.968140879570065 + "points": { + "c1": 1.9080585032356296, + "c2": -29.1117805538829, + "c3": -11.79012580719272, + "c4": 29.797591385144088, + "c5": -26.455703211074685, + "c6": -27.16198536248559, + "c7": 11.824304731846887 }, - "vertexSeeds": { - "c1": 5.789882438120386, - "c2": 5.406444600689181, - "c3": 5.927283173823138, - "c4": 5.811648194224638, - "c5": 5.569589095359136, - "c6": 5.80027995901269, - "c7": 5.514094920200005 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -388590,23 +388590,23 @@ "year": 1807, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 18.06928017184807, - "c2": 18.443560614288323, - "c3": -31.99938604835512, - "c4": -36.321010588080306, - "c5": 6.31200940666708, - "c6": 3.1617608975288434, - "c7": -14.669111347282314 + "points": { + "c1": 28.68494806057521, + "c2": 41.64131148966466, + "c3": -12.361800852129683, + "c4": -14.525853193307782, + "c5": -37.7372721177657, + "c6": -24.12422348133947, + "c7": 40.301289575322045 }, - "vertexSeeds": { - "c1": 3.0845837835636183, - "c2": 2.647077107777052, - "c3": 2.6452002113443505, - "c4": 2.636942011561249, - "c5": 2.791215650286997, - "c6": 2.6194922009812887, - "c7": 2.782782103658843 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556171, + "c3": 3.7679149329634742, + "c4": 3.0143319463707816, + "c5": 2.2607489597780854, + "c6": 1.507165973185389, + "c7": 0.7535829865926964 }, "rgb": [222, 0, 59] }, @@ -388617,23 +388617,23 @@ "year": 1807, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -24.76953647313289, - "c2": 27.687914291686976, - "c3": -5.952011844493178, - "c4": 3.0765380133413025, - "c5": -19.74174122317918, - "c6": -10.088613355931333, - "c7": -27.888876528613217 + "points": { + "c1": 7.060691282234977, + "c2": 26.16762742968733, + "c3": -26.12197013904557, + "c4": -5.006561206355382, + "c5": -6.595264429278469, + "c6": -12.78419836643251, + "c7": 18.235170350205863 }, - "vertexSeeds": { - "c1": 1.4056100781480365, - "c2": 1.3669843687167276, - "c3": 1.3519620341747607, - "c4": 1.3795230732442387, - "c5": 1.3249592634433287, - "c6": 1.386466924622256, - "c7": 1.3461298817389178 + "offsets": { + "c1": 2.4919093851132685, + "c2": 2.135922330097087, + "c3": 1.7799352750809052, + "c4": 1.4239482200647238, + "c5": 1.0679611650485448, + "c6": 0.7119741100323632, + "c7": 0.3559870550161816 }, "rgb": [238, 201, 159] }, @@ -388644,23 +388644,23 @@ "year": 1806, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 17.481807713101045, - "c2": -0.6908287871788445, - "c3": 9.555116344011441, - "c4": 6.965620350655339, - "c5": 1.9563346609501302, - "c6": 21.092236338257944, - "c7": -11.317875171562092 + "points": { + "c1": -15.486316733177933, + "c2": -0.05972243231580876, + "c3": 8.852023892114797, + "c4": 15.038435243826694, + "c5": 6.874652633817451, + "c6": 3.5092610442005707, + "c7": -9.929173630018585 }, - "vertexSeeds": { - "c1": 7.910623403988997, - "c2": 7.9448385805775725, - "c3": 7.834161033450369, - "c4": 7.856818700213796, - "c5": 7.523816661956944, - "c6": 7.421657102460967, - "c7": 8.016047832261052 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013873, + "c3": 9.77808599167823, + "c4": 7.822468793342588, + "c5": 5.866851595006928, + "c6": 3.911234396671285, + "c7": 1.9556171983356425 }, "rgb": [58, 15, 49] }, @@ -388671,23 +388671,23 @@ "year": 1807, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": 31.770702532840787, - "c2": -32.22636644474795, - "c3": 16.111722296832056, - "c4": -34.75493739509938, - "c5": 29.613811379492418, - "c6": 27.68131958896967, - "c7": 11.804281320898632 + "points": { + "c1": 19.4384122865444, + "c2": 39.30027918498831, + "c3": 11.8787305645303, + "c4": 31.04331378080572, + "c5": -11.109269468914885, + "c6": -36.284309535903816, + "c7": 26.408416763416284 }, - "vertexSeeds": { - "c1": 9.598481654424077, - "c2": 8.717520167992078, - "c3": 9.211521558592981, - "c4": 8.804887347871096, - "c5": 8.431101822927582, - "c6": 8.896006844558427, - "c7": 9.310332359897338 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.84188626907073, + "c3": 11.534905224225614, + "c4": 9.227924179380485, + "c5": 6.920943134535371, + "c6": 4.613962089690243, + "c7": 2.3069810448451156 }, "rgb": [77, 76, 132] }, @@ -388698,23 +388698,23 @@ "year": 1807, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 17.735755055291374, - "c2": 27.872281510624862, - "c3": 1.705540446702944, - "c4": -4.902593687721229, - "c5": 7.574051085541601, - "c6": -24.008341175019588, - "c7": 5.226983947333178 + "points": { + "c1": -12.653129207832649, + "c2": 0.431005136897447, + "c3": -15.490503395375992, + "c4": -18.115329294236762, + "c5": 21.349550058172227, + "c6": 16.59445871427885, + "c7": 9.055230645322268 }, - "vertexSeeds": { - "c1": 5.978742254387016, - "c2": 6.04981247667676, - "c3": 6.059578219609117, - "c4": 6.015564647527347, - "c5": 5.933066651183349, - "c6": 6.0238098701314255, - "c7": 5.999445125515631 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [58, 15, 49] }, @@ -388725,23 +388725,23 @@ "year": 1807, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -33.90486005779238, - "c2": 10.426194833641766, - "c3": -32.014592289171716, - "c4": -28.153638520978276, - "c5": -23.821111069578727, - "c6": -23.74220236188818, - "c7": 21.48088866079042 + "points": { + "c1": -10.697070912377246, + "c2": 13.48721441337328, + "c3": 19.62107615699589, + "c4": -6.178647823313987, + "c5": 0.4823560498814601, + "c6": 22.864279194178337, + "c7": 13.504625870016937 }, - "vertexSeeds": { - "c1": 1.9372719362638953, - "c2": 1.8066493970967306, - "c3": 1.843805694134506, - "c4": 1.9446655780920403, - "c5": 1.8720495945314592, - "c6": 1.9077807549572308, - "c7": 1.918990382216602 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142856, + "c3": 2.3809523809523787, + "c4": 1.9047619047619055, + "c5": 1.428571428571428, + "c6": 0.9523809523809506, + "c7": 0.4761904761904731 }, "rgb": [222, 0, 59] }, @@ -388752,23 +388752,23 @@ "year": 1807, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -19.54706345710606, - "c2": -24.31064069182542, - "c3": 5.658254605176282, - "c4": -28.039038161603273, - "c5": -33.53931742294661, - "c6": 32.62822015691394, - "c7": 8.718905304805837 + "points": { + "c1": -33.012847475713706, + "c2": -23.86357966739596, + "c3": 34.26450635448769, + "c4": -33.61298125356635, + "c5": 18.408321599104802, + "c6": -15.331073263305619, + "c7": 12.613003512529225 }, - "vertexSeeds": { - "c1": 2.5376818055440227, - "c2": 2.5522781479862333, - "c3": 2.4601506074286754, - "c4": 2.6302844956613267, - "c5": 2.509675150317633, - "c6": 2.636542999265988, - "c7": 2.513208580412334 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.46740638002774, + "c3": 2.889505316689785, + "c4": 2.3116042533518293, + "c5": 1.7337031900138662, + "c6": 1.1558021266759109, + "c7": 0.5779010633379554 }, "rgb": [86, 146, 138] }, @@ -388779,23 +388779,23 @@ "year": 1807, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 32.97529009076116, - "c2": -1.9296716415746573, - "c3": -10.323746463492071, - "c4": 24.9871871940177, - "c5": -3.897063278077141, - "c6": -31.412493669069526, - "c7": 33.129260522183756 + "points": { + "c1": -2.0454455090462886, + "c2": 28.672624436738033, + "c3": 26.00567586746083, + "c4": 4.18082824995485, + "c5": -33.1262671043666, + "c6": -4.739143895768045, + "c7": -5.245576437071087 }, - "vertexSeeds": { - "c1": 1.0457678281097953, - "c2": 1.1032292727028872, - "c3": 1.1301302296899038, - "c4": 1.1147467800022395, - "c5": 1.0696009415220535, - "c6": 1.0829900620303887, - "c7": 1.1462869325301943 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133157, + "c3": 1.386962552011095, + "c4": 1.109570041608877, + "c5": 0.8321775312066566, + "c6": 0.5547850208044385, + "c7": 0.27739251040222046 }, "rgb": [238, 201, 159] }, @@ -388806,23 +388806,23 @@ "year": 1807, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -16.684486823157663, - "c2": 29.84352792361794, - "c3": 0.6736338828874437, - "c4": 11.528568487576116, - "c5": 1.3010087544998825, - "c6": 26.985794660039964, - "c7": -10.245118871493467 + "points": { + "c1": 17.623635675544783, + "c2": 3.022232715760744, + "c3": -16.84382354842004, + "c4": -11.150098224011007, + "c5": -21.83639593177479, + "c6": 33.73682624379205, + "c7": 4.671316376837559 }, - "vertexSeeds": { - "c1": 1.8231193119840186, - "c2": 1.9122211986348956, - "c3": 1.7803261520794262, - "c4": 1.754474844678198, - "c5": 1.8068712484393648, - "c6": 1.9004471256183058, - "c7": 1.8216433812844712 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624134, + "c3": 2.3347202958853446, + "c4": 1.8677762367082755, + "c5": 1.4008321775312067, + "c6": 0.9338881183541378, + "c7": 0.4669440591770689 }, "rgb": [58, 15, 49] }, @@ -388833,23 +388833,23 @@ "year": 1807, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -16.818947167331242, - "c2": 21.749766957768735, - "c3": 38.1265068310183, - "c4": 24.066462231812558, - "c5": -21.197410660694036, - "c6": -35.887391756189814, - "c7": 15.199849863230895 + "points": { + "c1": 7.486478731577122, + "c2": 22.73405703238678, + "c3": -13.945884954797268, + "c4": 30.918550602065046, + "c5": 8.113699922064285, + "c6": 36.51125911664845, + "c7": -33.76578390504202 }, - "vertexSeeds": { - "c1": 1.718082026881555, - "c2": 1.7454461119562987, - "c3": 1.773429884491961, - "c4": 1.7245475292098809, - "c5": 1.6991836586776858, - "c6": 1.6424364454979339, - "c7": 1.7715094095212136 + "offsets": { + "c1": 3.0097087378640777, + "c2": 2.579750346740637, + "c3": 2.149791955617196, + "c4": 1.7198335644937592, + "c5": 1.2898751733703184, + "c6": 0.8599167822468774, + "c7": 0.4299583911234409 }, "rgb": [77, 76, 132] }, @@ -388860,23 +388860,23 @@ "year": 1807, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 10.447836624079894, - "c2": -28.89056684522152, - "c3": -18.635604101619396, - "c4": -14.24005309131012, - "c5": 22.821714658222124, - "c6": -20.639927209730928, - "c7": -4.643737193058623 + "points": { + "c1": -14.253313855977549, + "c2": -2.527090528859997, + "c3": 4.383620451116759, + "c4": -26.739881459466993, + "c5": 21.221677563017085, + "c6": -13.799273518615717, + "c7": -3.0417122467795394 }, - "vertexSeeds": { - "c1": 4.723508123119384, - "c2": 4.6602842740521275, - "c3": 4.742027547917063, - "c4": 5.026532093080934, - "c5": 4.962551428657295, - "c6": 4.787130279281196, - "c7": 5.048492159094659 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.32316227461859, + "c3": 6.102635228848832, + "c4": 4.882108183079055, + "c5": 3.661581137309295, + "c6": 2.4410540915395362, + "c7": 1.2205270457697681 }, "rgb": [77, 76, 132] }, @@ -388887,23 +388887,23 @@ "year": 1807, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 14.862671229561943, - "c2": -8.308792458202031, - "c3": 9.929195163996365, - "c4": -17.26400397145251, - "c5": 3.611565970857889, - "c6": 9.463772107337217, - "c7": -25.484348594406313 + "points": { + "c1": -26.061887550809487, + "c2": -7.301628180787635, + "c3": -21.160312661486795, + "c4": -26.705353326264174, + "c5": 1.4051690861428412, + "c6": -0.033825747917269666, + "c7": 24.443827785012605 }, - "vertexSeeds": { - "c1": 4.932750887765086, - "c2": 5.170166092188299, - "c3": 4.847841106210022, - "c4": 5.088764893169781, - "c5": 5.201769408131141, - "c6": 5.236123110510779, - "c7": 5.231324764293729 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -388914,23 +388914,23 @@ "year": 1807, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -31.912617463715048, - "c2": 11.981432151637819, - "c3": -6.055438790233175, - "c4": 10.072423818090407, - "c5": 18.443114114803798, - "c6": 14.047771396464789, - "c7": -26.494307923340113 + "points": { + "c1": 22.51097925129197, + "c2": 31.37716969352627, + "c3": -17.744681476780855, + "c4": -20.9768907859587, + "c5": -9.336801696474165, + "c6": 14.93091060523507, + "c7": -7.899235135292368 }, - "vertexSeeds": { - "c1": 7.2496640663043195, - "c2": 7.268528180556615, - "c3": 7.2172242432381974, - "c4": 7.30878507777644, - "c5": 7.5539020355220305, - "c6": 7.3920271464584015, - "c7": 7.33414663181887 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289874, + "c3": 9.361997226074891, + "c4": 7.489597780859909, + "c5": 5.617198335644927, + "c6": 3.7447988904299634, + "c7": 1.8723994452149817 }, "rgb": [77, 76, 132] }, @@ -388941,23 +388941,23 @@ "year": 1807, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 13.717454042338659, - "c2": -1.793571216545665, - "c3": -38.35788747976525, - "c4": -2.3139748716828947, - "c5": -8.000301842084902, - "c6": 16.84746820316029, - "c7": -26.942261622817234 + "points": { + "c1": -24.118396309140977, + "c2": -2.7469162334225885, + "c3": 10.18827806539744, + "c4": 15.601778658439535, + "c5": -0.7123935765837004, + "c6": -33.78071603611784, + "c7": -13.721608274482588 }, - "vertexSeeds": { - "c1": 5.0702633994649275, - "c2": 5.214289399034656, - "c3": 5.091417414633095, - "c4": 4.945576974740389, - "c5": 5.093785557545233, - "c6": 5.233228201185025, - "c7": 4.844768227424262 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [238, 201, 159] }, @@ -388968,23 +388968,23 @@ "year": 1807, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -30.021389110848958, - "c2": 23.40652567798171, - "c3": 23.458990695239283, - "c4": -4.383053680703501, - "c5": -21.45737743348057, - "c6": 22.13801659837063, - "c7": 22.61105928437109 + "points": { + "c1": -26.802216768755436, + "c2": 4.748887233543478, + "c3": -5.683934495759292, + "c4": -4.117910855249448, + "c5": -26.15380032866615, + "c6": -17.814093470979653, + "c7": 10.89853637139705 }, - "vertexSeeds": { - "c1": 3.852953561745667, - "c2": 3.8769651455483705, - "c3": 3.6164323590827587, - "c4": 3.6619720817496235, - "c5": 3.7243405756550616, - "c6": 3.6578985074693637, - "c7": 3.5828196246794906 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.57558945908461, + "c3": 4.646324549237169, + "c4": 3.71705963938974, + "c5": 2.7877947295423, + "c6": 1.85852981969487, + "c7": 0.9292649098474405 }, "rgb": [86, 146, 138] }, @@ -388995,23 +388995,23 @@ "year": 1807, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 0.19867919006915713, - "c2": 4.081992005211731, - "c3": -30.950152763197853, - "c4": -19.250613977945413, - "c5": -25.596813011616778, - "c6": 21.16331301334828, - "c7": -10.4162488251294 + "points": { + "c1": -20.835717446731607, + "c2": 0.9399053938625599, + "c3": 13.803284410847624, + "c4": -32.47842512479388, + "c5": 21.56389029020712, + "c6": 5.234339731699045, + "c7": -12.455490887868688 }, - "vertexSeeds": { - "c1": 5.6300449098889285, - "c2": 5.628725552509801, - "c3": 5.704824804819364, - "c4": 5.6686618267995925, - "c5": 5.521235134866795, - "c6": 5.513961628973526, - "c7": 6.003862450645328 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -389022,23 +389022,23 @@ "year": 1807, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -21.367862347524543, - "c2": 16.371177863198454, - "c3": -5.862312737028592, - "c4": 31.137273783525387, - "c5": 17.359252694594424, - "c6": -1.8475103442603142, - "c7": -18.90321486012977 + "points": { + "c1": 30.90381516404375, + "c2": 17.529476152205966, + "c3": -30.69631484018919, + "c4": 7.434569203687552, + "c5": 26.28760561501646, + "c6": 30.507099726458335, + "c7": 30.36758590958165 }, - "vertexSeeds": { - "c1": 7.352494075553094, - "c2": 7.162457184671232, - "c3": 7.5926260970412915, - "c4": 7.689468225204957, - "c5": 7.528362306176983, - "c6": 7.457498932875426, - "c7": 7.399311454210533 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.34535367545077, + "c3": 9.454461396208963, + "c4": 7.563569116967174, + "c5": 5.672676837725385, + "c6": 3.7817845584835776, + "c7": 1.8908922792417888 }, "rgb": [86, 146, 138] }, @@ -389049,23 +389049,23 @@ "year": 1807, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -10.919067902296922, - "c2": 3.6098479350623087, - "c3": 21.4287682683791, - "c4": -15.441271197028984, - "c5": 4.759778170044001, - "c6": 17.205095468485265, - "c7": 20.95793607644089 + "points": { + "c1": 6.3451796587304905, + "c2": 5.836769411430868, + "c3": 0.6846192629078871, + "c4": 25.36498000284711, + "c5": -18.230786560482365, + "c6": 20.646374362665572, + "c7": -25.326672066910056 }, - "vertexSeeds": { - "c1": 4.856053196254958, - "c2": 5.150984078971002, - "c3": 4.805784804980416, - "c4": 5.100664180201589, - "c5": 4.780158379615048, - "c6": 4.994731741155138, - "c7": 4.851069513370679 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [58, 15, 49] }, @@ -389076,23 +389076,23 @@ "year": 1807, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 20.49307116647203, - "c2": 20.036325657975116, - "c3": 6.081086516616661, - "c4": -7.368781496294613, - "c5": 7.817669117393724, - "c6": 13.60445937365608, - "c7": -8.265748182305622 + "points": { + "c1": -1.878010089015735, + "c2": -24.474603166491512, + "c3": -20.076438193316346, + "c4": -5.661252097327893, + "c5": 17.983721840112484, + "c6": -20.46979513698011, + "c7": -4.192911829017714 }, - "vertexSeeds": { - "c1": 6.20242999172865, - "c2": 6.008352436872674, - "c3": 6.047010970456, - "c4": 6.157094395413523, - "c5": 5.817575479205213, - "c6": 6.393932659502189, - "c7": 5.9518859140812195 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434113, + "c3": 7.720758206195106, + "c4": 6.1766065649560815, + "c5": 4.632454923717057, + "c6": 3.0883032824780496, + "c7": 1.5441516412390248 }, "rgb": [77, 76, 132] }, @@ -389103,23 +389103,23 @@ "year": 1807, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -15.106017824028743, - "c2": -5.858588887472408, - "c3": 17.188475745556516, - "c4": 19.241286024261186, - "c5": -16.42260514837948, - "c6": 3.463033779410665, - "c7": 19.294124710165086 + "points": { + "c1": -3.6385463859512726, + "c2": -5.190441559438735, + "c3": -21.070222863017573, + "c4": -15.716864887194763, + "c5": 15.326878174618884, + "c6": -14.373829940369506, + "c7": 19.444117048498732 }, - "vertexSeeds": { - "c1": 5.043264233167606, - "c2": 4.997409052339464, - "c3": 5.038099038248295, - "c4": 5.023113691376337, - "c5": 5.0349898432390905, - "c6": 4.999058229376094, - "c7": 5.0325920878320645 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497873, + "c3": 6.033287101248334, + "c4": 4.826629680998636, + "c5": 3.6199722607489364, + "c6": 2.4133148404992375, + "c7": 1.2066574202496987 }, "rgb": [58, 15, 49] }, @@ -389130,23 +389130,23 @@ "year": 1807, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -11.184710612199343, - "c2": -19.101709619924723, - "c3": -24.31433208341771, - "c4": -28.60557578595418, - "c5": 9.233805704542114, - "c6": -23.782763485912763, - "c7": 1.306358444723628 + "points": { + "c1": 9.321783248973183, + "c2": -19.810600990505986, + "c3": -33.817498843909846, + "c4": -26.4694727543916, + "c5": 12.85817586450937, + "c6": -26.715521042329122, + "c7": 35.180311539611 }, - "vertexSeeds": { - "c1": 3.1652678455406043, - "c2": 3.119135815750418, - "c3": 3.104069939331778, - "c4": 3.247649451643384, - "c5": 3.3499583100127106, - "c6": 3.3544522351409314, - "c7": 3.1781883671688758 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998614, + "c3": 4.022191400832179, + "c4": 3.217753120665745, + "c5": 2.413314840499311, + "c6": 1.608876560332877, + "c7": 0.8044382801664426 }, "rgb": [77, 76, 132] }, @@ -389157,23 +389157,23 @@ "year": 1807, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 4.224173846598781, - "c2": -28.686563139779867, - "c3": -30.39594490372447, - "c4": -35.32145221902612, - "c5": 16.304867451705135, - "c6": 15.355323879005141, - "c7": -21.48734397356387 + "points": { + "c1": -0.4082361609728622, + "c2": 2.707595591896329, + "c3": -11.279661961116421, + "c4": 1.9297667917849708, + "c5": -2.7315825336430777, + "c6": 36.13772613359255, + "c7": -9.910131962854752 }, - "vertexSeeds": { - "c1": 1.7921419689064355, - "c2": 1.6826838006763756, - "c3": 1.8024961262060544, - "c4": 1.7135918032920374, - "c5": 1.6216955312532713, - "c6": 1.7934610215018074, - "c7": 1.6846771869703516 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.607489597780858, + "c3": 2.172907998150717, + "c4": 1.7383263985205721, + "c5": 1.3037447988904312, + "c6": 0.8691631992602861, + "c7": 0.4345815996301408 }, "rgb": [58, 15, 49] }, @@ -389184,23 +389184,23 @@ "year": 1807, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 27.726030881979767, - "c2": -19.47690851069371, - "c3": 7.63519331438976, - "c4": 8.421350579660341, - "c5": 3.4477913166216965, - "c6": 6.399398141253577, - "c7": -9.865949313953532 + "points": { + "c1": 20.11785370818356, + "c2": 7.258321980324972, + "c3": 17.785823288113136, + "c4": -25.499635853729842, + "c5": -20.118394875833978, + "c6": -12.345364355374837, + "c7": -21.916882363898686 }, - "vertexSeeds": { - "c1": 3.6080071350879876, - "c2": 3.5712104214584626, - "c3": 3.640820455318896, - "c4": 3.6573477628047715, - "c5": 3.5698001647710464, - "c6": 3.4865320005547313, - "c7": 3.3742397599953984 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642167, + "c3": 4.392048081368465, + "c4": 3.5136384650947745, + "c5": 2.6352288488210833, + "c6": 1.7568192325473817, + "c7": 0.8784096162736909 }, "rgb": [58, 15, 49] }, @@ -389211,23 +389211,23 @@ "year": 1807, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -7.0787887615543, - "c2": 0.8186019336673205, - "c3": 24.69943439207, - "c4": 9.520516825974088, - "c5": -21.066282543219888, - "c6": 16.88003849383031, - "c7": 23.543371975227647 + "points": { + "c1": 2.8585847317984907, + "c2": -19.490957307607758, + "c3": 5.657351833103757, + "c4": -9.506282866900833, + "c5": -5.656659028003521, + "c6": -9.0598602131308, + "c7": -18.45114999826371 }, - "vertexSeeds": { - "c1": 7.47247761655127, - "c2": 7.266215970070434, - "c3": 7.114389098153856, - "c4": 7.593577172166773, - "c5": 7.357533641975182, - "c6": 7.524469179983252, - "c7": 7.556835794819174 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887653, + "c3": 9.130836800739722, + "c4": 7.304669440591773, + "c5": 5.4785020804438265, + "c6": 3.652334720295878, + "c7": 1.826167360147948 }, "rgb": [86, 146, 138] }, @@ -389238,23 +389238,23 @@ "year": 1807, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 22.754943951976085, - "c2": -11.018417726241609, - "c3": -8.69834702937774, - "c4": 7.26020659509572, - "c5": -3.7585913088874463, - "c6": -11.666650768135593, - "c7": 10.626612076656766 + "points": { + "c1": -22.84841940344829, + "c2": -28.60668265003631, + "c3": 21.21362232525912, + "c4": -12.648907631663771, + "c5": 14.974776107421054, + "c6": 0.4070138195093911, + "c7": -18.56282927673816 }, - "vertexSeeds": { - "c1": 4.188759441330527, - "c2": 4.026730786503047, - "c3": 4.410221929168907, - "c4": 4.341275131711729, - "c5": 4.083786271975658, - "c6": 4.381786284112633, - "c7": 4.24180197294994 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.316689782709196, + "c4": 4.25335182616736, + "c5": 3.190013869625522, + "c6": 2.1266759130836843, + "c7": 1.0633379565418377 }, "rgb": [86, 146, 138] }, @@ -389265,23 +389265,23 @@ "year": 1807, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 3.051467320505431, - "c2": -7.144750577693724, - "c3": 26.6862991300157, - "c4": 7.499084404108988, - "c5": 22.16915395417954, - "c6": -12.31859672233561, - "c7": 19.461716454924623 + "points": { + "c1": 13.578254162764285, + "c2": 10.019745985461991, + "c3": 23.60461654005807, + "c4": -7.8790193250093985, + "c5": -10.500325456405655, + "c6": 26.823271611370505, + "c7": 0.5425402494064251 }, - "vertexSeeds": { - "c1": 6.381684677355599, - "c2": 6.286325667170058, - "c3": 6.944124575922485, - "c4": 6.40000280894362, - "c5": 6.707476822805468, - "c6": 6.349246179543563, - "c7": 6.668310900200575 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.95839112343967, + "c3": 8.298659269533061, + "c4": 6.638927415626452, + "c5": 4.979195561719825, + "c6": 3.319463707813217, + "c7": 1.6597318539066086 }, "rgb": [86, 146, 138] }, @@ -389292,23 +389292,23 @@ "year": 1807, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 13.622462032802382, - "c2": -37.348875456004734, - "c3": 33.17856123425399, - "c4": -31.952885315576737, - "c5": -34.1591544034174, - "c6": -35.095504597773385, - "c7": -32.486479405296706 + "points": { + "c1": -38.49393575522946, + "c2": 26.41730063725923, + "c3": -40.75224402205946, + "c4": 12.129402258172412, + "c5": 24.760216342926014, + "c6": 25.615127953625176, + "c7": 22.12770504938826 }, - "vertexSeeds": { - "c1": 5.995565600850839, - "c2": 5.927651990751263, - "c3": 5.889822046131332, - "c4": 6.047534459427736, - "c5": 5.653552147155889, - "c6": 5.770380477450915, - "c7": 5.683615428936935 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.87656033287102, + "c3": 7.397133610725837, + "c4": 5.917706888580673, + "c5": 4.43828016643551, + "c6": 2.958853444290346, + "c7": 1.4794267221451636 }, "rgb": [77, 76, 132] }, @@ -389319,23 +389319,23 @@ "year": 1807, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -4.785587004940634, - "c2": -27.86549659784942, - "c3": 17.92798407734155, - "c4": 6.104202785277046, - "c5": -7.254703169502722, - "c6": -1.8050610166269188, - "c7": 1.6480691877622462 + "points": { + "c1": -6.008781345772437, + "c2": 20.193287218766976, + "c3": 11.106657398576132, + "c4": 28.22736771368144, + "c5": -24.004422091054966, + "c6": -16.00856219605973, + "c7": -33.836703763491066 }, - "vertexSeeds": { - "c1": 3.0012441311014237, - "c2": 2.9381823550797503, - "c3": 2.9894182046047764, - "c4": 2.9274097840153006, - "c5": 2.7680131453925942, - "c6": 2.8043625705327218, - "c7": 2.8256265741191764 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274615, + "c3": 3.60610263522885, + "c4": 2.8848821081830764, + "c5": 2.163661581137312, + "c6": 1.4424410540915382, + "c7": 0.7212205270457646 }, "rgb": [222, 0, 59] }, @@ -389346,23 +389346,23 @@ "year": 1807, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -27.255540472285077, - "c2": -28.37495906002461, - "c3": 8.736863702951766, - "c4": -11.038084738326376, - "c5": 11.5382605322608, - "c6": 20.432739480269063, - "c7": -18.755671385491386 + "points": { + "c1": 15.086203785719484, + "c2": -16.078137122584003, + "c3": -27.87423109058959, + "c4": 17.226361713636223, + "c5": 0.6906701145605254, + "c6": -18.97581376093126, + "c7": -4.104888080417055 }, - "vertexSeeds": { - "c1": 3.9904677288339396, - "c2": 4.03087891128327, - "c3": 4.004971676175235, - "c4": 4.020476675255533, - "c5": 4.034580515034784, - "c6": 3.995521501783459, - "c7": 4.033692807552045 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406408, + "c3": 4.831252889505308, + "c4": 3.865002311604272, + "c5": 2.898751733703172, + "c6": 1.932501155802136, + "c7": 0.9662505779010999 }, "rgb": [222, 0, 59] }, @@ -389373,23 +389373,23 @@ "year": 1807, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 24.728547537476047, - "c2": 13.024493927084286, - "c3": -5.328730161744016, - "c4": 19.904674233038477, - "c5": 2.607917450953984, - "c6": 11.202165503059675, - "c7": 9.28984403424191 + "points": { + "c1": -36.13055109194505, + "c2": 1.6373609173951422, + "c3": 35.84855904630812, + "c4": -24.42621560053081, + "c5": 19.67690168779722, + "c6": 18.70066727584352, + "c7": -37.02024878102527 }, - "vertexSeeds": { - "c1": 2.016913394088694, - "c2": 2.0968984697599744, - "c3": 2.1026883674517123, - "c4": 2.126575374806086, - "c5": 1.9569704403450447, - "c6": 1.8790953384491305, - "c7": 1.8750424209924919 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.0790568654646315, + "c3": 2.565880721220526, + "c4": 2.05270457697642, + "c5": 1.5395284327323175, + "c6": 1.026352288488212, + "c7": 0.513176144244106 }, "rgb": [86, 146, 138] }, @@ -389400,23 +389400,23 @@ "year": 1807, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": 12.736932438985768, - "c2": -13.864102557613272, - "c3": 32.31891929850829, - "c4": -23.97422781930338, - "c5": 29.372175191486377, - "c6": -33.289706358699014, - "c7": 8.548630328391887 + "points": { + "c1": -28.4612004244335, + "c2": -41.47187133582789, + "c3": -11.553102273369245, + "c4": 19.241988653077954, + "c5": -37.54800346806403, + "c6": 4.692222536456278, + "c7": 26.119916262895657 }, - "vertexSeeds": { - "c1": 6.942443512144045, - "c2": 7.181481825482657, - "c3": 7.356955637762052, - "c4": 7.473765533097925, - "c5": 7.140275338399243, - "c6": 7.08743838434146, - "c7": 7.164899337773421 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847435, + "c3": 9.107720758206195, + "c4": 7.286176606564956, + "c5": 5.464632454923717, + "c6": 3.643088303282478, + "c7": 1.821544151641239 }, "rgb": [222, 0, 59] }, @@ -389427,23 +389427,23 @@ "year": 1807, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -31.189522072823856, - "c2": 14.277972572534345, - "c3": -2.2205175081573287, - "c4": 5.434901938326014, - "c5": 10.0716910695688, - "c6": 25.98388115950565, - "c7": 1.149826656478119 + "points": { + "c1": 26.46747009745326, + "c2": -34.94818448679783, + "c3": -14.015991112495815, + "c4": 11.197141318416143, + "c5": 31.118965516585064, + "c6": -12.493004882947826, + "c7": -36.12239254407346 }, - "vertexSeeds": { - "c1": 5.702253007474203, - "c2": 5.513488553190282, - "c3": 5.535941619822268, - "c4": 5.428621540071966, - "c5": 5.815974504447782, - "c6": 5.948662231472179, - "c7": 5.803210023414123 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -389454,23 +389454,23 @@ "year": 1807, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 0.43699114237742265, - "c2": -36.28621999892131, - "c3": -43.40893925086872, - "c4": -18.514858386303516, - "c5": 34.97442391234156, - "c6": -41.8908655554942, - "c7": 45.23400299119012 + "points": { + "c1": -11.739088011639268, + "c2": 16.215057994434993, + "c3": 26.31284737094554, + "c4": -47.154071420566105, + "c5": 0.3850005839428121, + "c6": -26.9005800005205, + "c7": -47.41087512510002 }, - "vertexSeeds": { - "c1": 1.5541331565661203, - "c2": 1.6025210398415783, - "c3": 1.7462024159618659, - "c4": 1.6706446015741727, - "c5": 1.682984234038884, - "c6": 1.658972463171536, - "c7": 1.54694157109215 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.635228848821082, + "c3": 2.196024040684235, + "c4": 1.756819232547388, + "c5": 1.317614424410541, + "c6": 0.878409616273694, + "c7": 0.439204808136847 }, "rgb": [77, 76, 132] }, @@ -389481,23 +389481,23 @@ "year": 1807, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 20.677730205423728, - "c2": 15.578710673969049, - "c3": -27.341189009085475, - "c4": 38.06825620707798, - "c5": 17.85599319763037, - "c6": 21.881702702678083, - "c7": 24.48935537585352 + "points": { + "c1": 4.955011964819661, + "c2": -42.705198439889216, + "c3": 13.272931844704495, + "c4": 39.84008977061629, + "c5": -36.34951158453923, + "c6": 20.766134282573347, + "c7": 40.22667173267327 }, - "vertexSeeds": { - "c1": 7.4511433439790435, - "c2": 7.640053615306712, - "c3": 7.31124259051419, - "c4": 7.999026219172878, - "c5": 7.1813803648941095, - "c6": 8.099672640927436, - "c7": 8.089001018780488 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013864, + "c3": 9.778085991678228, + "c4": 7.822468793342577, + "c5": 5.86685159500694, + "c6": 3.9112343966712886, + "c7": 1.9556171983356367 }, "rgb": [86, 146, 138] }, @@ -389508,23 +389508,23 @@ "year": 1807, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 7.122907708433409, - "c2": -23.254063390136302, - "c3": -25.083408533467235, - "c4": -20.644802488269598, - "c5": 14.123131839601434, - "c6": -12.116739312001922, - "c7": 31.087009243711933 + "points": { + "c1": 0.9631282202131004, + "c2": 28.364166053077305, + "c3": 24.369281374629367, + "c4": -10.808715883153656, + "c5": 20.48726990458315, + "c6": -1.0536110880902427, + "c7": 33.49104358806959 }, - "vertexSeeds": { - "c1": 2.6432485676140276, - "c2": 2.8256726293428525, - "c3": 2.5435754391535297, - "c4": 2.502362462197678, - "c5": 2.7503259160103575, - "c6": 2.7842873325929127, - "c7": 2.7043241876452866 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.160887656033286, + "c3": 3.4674063800277373, + "c4": 2.773925104022194, + "c5": 2.0804438280166457, + "c6": 1.386962552011097, + "c7": 0.6934812760055485 }, "rgb": [222, 0, 59] }, @@ -389535,23 +389535,23 @@ "year": 1807, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -14.947409968501631, - "c2": -8.61690287324874, - "c3": 28.613665321081744, - "c4": -27.812217751799974, - "c5": 16.060899666306778, - "c6": 29.468484386099608, - "c7": 22.00887705349812 + "points": { + "c1": 12.348005378036007, + "c2": 2.014767536328435, + "c3": 6.729141005702687, + "c4": 14.573094337689255, + "c5": -6.63245908855966, + "c6": -12.016381198063495, + "c7": 30.663463275117437 }, - "vertexSeeds": { - "c1": 5.7804677379049885, - "c2": 5.542577978093609, - "c3": 5.53818341323223, - "c4": 5.852618731003017, - "c5": 5.8191153969669, - "c6": 5.7616073094459335, - "c7": 5.839685539926833 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -389562,23 +389562,23 @@ "year": 1807, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 20.88360933732432, - "c2": -1.8615022973394026, - "c3": -17.90723208361041, - "c4": 7.269924352386884, - "c5": 27.35772668642885, - "c6": 9.323908718706758, - "c7": 14.01104587888845 + "points": { + "c1": 16.512168032264164, + "c2": 20.082284017842085, + "c3": -21.405076704182626, + "c4": 24.830258534161807, + "c5": 28.350667023456914, + "c6": -28.044496749194835, + "c7": 9.671053486515056 }, - "vertexSeeds": { - "c1": 4.963650047348304, - "c2": 4.95285552482828, - "c3": 4.955286767202182, - "c4": 4.929865271904759, - "c5": 4.963959873483563, - "c6": 4.924166651975453, - "c7": 4.971825039651752 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517336987, + "c3": 5.94082293111426, + "c4": 4.752658344891377, + "c5": 3.5644937586684935, + "c6": 2.3763291724456885, + "c7": 1.1881645862228047 }, "rgb": [238, 201, 159] }, @@ -389589,23 +389589,23 @@ "year": 1807, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -25.548178731465008, - "c2": 4.625322013607555, - "c3": 5.123841392734999, - "c4": -6.738496337702326, - "c5": 25.24661458751464, - "c6": 14.793784040126685, - "c7": -22.67043549208975 + "points": { + "c1": 26.652098908962557, + "c2": -0.6451623920763012, + "c3": 8.763704153014636, + "c4": -20.374166809473373, + "c5": -0.349114729752543, + "c6": 23.989730923599616, + "c7": -14.428288146570118 }, - "vertexSeeds": { - "c1": 8.003539128637037, - "c2": 9.021796534213596, - "c3": 9.466488876787796, - "c4": 8.803125863108063, - "c5": 7.932239788492031, - "c6": 8.989451265243325, - "c7": 8.943142220806708 + "offsets": { + "c1": 16.472491909385116, + "c2": 14.119278779472952, + "c3": 11.766065649560796, + "c4": 9.41285251964864, + "c5": 7.059639389736476, + "c6": 4.706426259824312, + "c7": 2.353213129912156 }, "rgb": [86, 146, 138] }, @@ -389616,23 +389616,23 @@ "year": 1807, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -14.533641849540206, - "c2": 5.056054009970776, - "c3": -10.493167705871844, - "c4": 20.654479086527676, - "c5": 24.19892656048113, - "c6": 0.4073688231058341, - "c7": -22.730808130120266 + "points": { + "c1": 16.295763227559153, + "c2": -4.210355742792231, + "c3": 11.791348022499118, + "c4": 11.694305139960345, + "c5": 11.2024868966808, + "c6": -27.103232873148627, + "c7": 5.317606127494724 }, - "vertexSeeds": { - "c1": 3.666526684213349, - "c2": 3.7032167159424576, - "c3": 3.6479051868838797, - "c4": 3.794456987595234, - "c5": 3.8230314006317143, - "c6": 3.6442374487377154, - "c7": 3.7952352035060906 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245497, + "c3": 4.738788719371242, + "c4": 3.7910309754969984, + "c5": 2.843273231622743, + "c6": 1.8955154877484992, + "c7": 0.9477577438742439 }, "rgb": [238, 201, 159] }, @@ -389643,23 +389643,23 @@ "year": 1807, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -1.5006426880737536, - "c2": -10.561965358153898, - "c3": -8.307752989844577, - "c4": 22.853390530820818, - "c5": -16.98750797041383, - "c6": 2.1307522514436386, - "c7": -17.354680402235772 + "points": { + "c1": 5.7124102455174395, + "c2": -1.3618144438749482, + "c3": 18.502089236028084, + "c4": -21.27341188950377, + "c5": 18.221873127770756, + "c6": 24.651724155506912, + "c7": 36.229235257740356 }, - "vertexSeeds": { - "c1": 4.2051234992290665, - "c2": 4.513113848309174, - "c3": 4.600902384483335, - "c4": 4.385976567197558, - "c5": 4.403455660791707, - "c6": 4.368914061841111, - "c7": 4.4032533926914414 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613042, + "c3": 5.524734165510862, + "c4": 4.419787332408694, + "c5": 3.314840499306516, + "c6": 2.209893666204347, + "c7": 1.1049468331021781 }, "rgb": [58, 15, 49] }, @@ -389670,23 +389670,23 @@ "year": 1807, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 7.181755539815409, - "c2": 2.3113574756845487, - "c3": 3.173598823392357, - "c4": -7.767204441117983, - "c5": -17.168611836914152, - "c6": 12.087063130368861, - "c7": -3.474823688181967 + "points": { + "c1": 10.126976024417914, + "c2": 18.88819317935826, + "c3": -11.634213188318354, + "c4": -1.273832397882142, + "c5": 2.329263772443536, + "c6": 20.485857954405255, + "c7": -2.3924734000204317 }, - "vertexSeeds": { - "c1": 3.441786285340672, - "c2": 3.7574997699379447, - "c3": 3.4164919079528158, - "c4": 4.411760522969782, - "c5": 4.365753268835905, - "c6": 4.174906415576661, - "c7": 4.5024133279354945 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371706, + "c3": 5.386037910309753, + "c4": 4.308830328247802, + "c5": 3.231622746185853, + "c6": 2.154415164123901, + "c7": 1.0772075820619484 }, "rgb": [222, 0, 59] }, @@ -389697,23 +389697,23 @@ "year": 1807, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 12.973128963669048, - "c2": -6.806081274135803, - "c3": 16.889249020059673, - "c4": -16.536181889256927, - "c5": 6.7515122920408075, - "c6": -22.330994138284247, - "c7": 21.690574804671 + "points": { + "c1": 10.572234045373023, + "c2": 28.96323626322453, + "c3": 3.7694062211150268, + "c4": 8.284435133268893, + "c5": 34.07237477090574, + "c6": -20.902181492499615, + "c7": 22.851170070717124 }, - "vertexSeeds": { - "c1": 2.201229183691827, - "c2": 2.248884311153187, - "c3": 2.2330999509944123, - "c4": 2.046400482637204, - "c5": 2.2625562089637987, - "c6": 2.252216604582028, - "c7": 2.158503210119921 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551547, + "c4": 2.1821544151641237, + "c5": 1.6366158113730929, + "c6": 1.0910772075820618, + "c7": 0.5455386037910309 }, "rgb": [222, 0, 59] }, @@ -389724,23 +389724,23 @@ "year": 1807, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -9.917069432820018, - "c2": -23.313843901019837, - "c3": 11.307114886509567, - "c4": 20.614409216345912, - "c5": 0.19993523657936407, - "c6": -11.38023405162194, - "c7": -26.551022807314432 + "points": { + "c1": -4.1893211265454084, + "c2": 3.0969593374837316, + "c3": -11.660737324959797, + "c4": -9.549643297675154, + "c5": -33.438179975326044, + "c6": 32.97331533323813, + "c7": 20.959964701294467 }, - "vertexSeeds": { - "c1": 5.440421604379199, - "c2": 5.508050670255702, - "c3": 5.510640762879124, - "c4": 5.536455504463507, - "c5": 5.541390628494879, - "c6": 5.982077482159576, - "c7": 5.60948524166668 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -389751,23 +389751,23 @@ "year": 1807, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -18.705402472404998, - "c2": 31.05221120675307, - "c3": 26.035920704811325, - "c4": 13.539417318988107, - "c5": -28.80700316052434, - "c6": -10.946626014684895, - "c7": 2.2272517758964057 + "points": { + "c1": 30.734124150367684, + "c2": 31.6344104501485, + "c3": 11.042753582268517, + "c4": 15.519054310839842, + "c5": 10.667678425449672, + "c6": -1.329829273650141, + "c7": -15.585083915505582 }, - "vertexSeeds": { - "c1": 1.4503616472853067, - "c2": 1.6442866380766672, - "c3": 1.4885677268712163, - "c4": 1.4728747237839963, - "c5": 1.4735096028506625, - "c6": 1.4176820840756708, - "c7": 1.4433357517575147 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590835, + "c3": 1.9879796578825712, + "c4": 1.5903837263060565, + "c5": 1.1927877947295418, + "c6": 0.7951918631530271, + "c7": 0.39759593157651474 }, "rgb": [77, 76, 132] }, @@ -389778,23 +389778,23 @@ "year": 1807, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 1.3076718620999657, - "c2": 5.328733407378998, - "c3": 6.589708915531084, - "c4": -13.946261096743747, - "c5": -21.82737253967646, - "c6": -0.08010459236065515, - "c7": -22.20170489738817 + "points": { + "c1": 20.620446451314486, + "c2": -25.27194739478096, + "c3": -18.238204667355205, + "c4": 27.681934396043978, + "c5": -33.82379312953407, + "c6": -15.546569147148663, + "c7": 3.319927802649012 }, - "vertexSeeds": { - "c1": 1.5868968666330914, - "c2": 1.65443928785005, - "c3": 1.5428775493139264, - "c4": 1.7270255956816152, - "c5": 1.5481367653041018, - "c6": 1.6482200957860471, - "c7": 1.590640904717851 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [58, 15, 49] }, @@ -389805,23 +389805,23 @@ "year": 1807, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -4.389074822348498, - "c2": -4.488537211302479, - "c3": 21.599374652881558, - "c4": 31.35153964037748, - "c5": 27.35722129682297, - "c6": 18.645674805068175, - "c7": 10.230467921684173 + "points": { + "c1": 1.4732063338619668, + "c2": 14.129348908080068, + "c3": -32.42395434635124, + "c4": -11.336967411101412, + "c5": -9.661388430629366, + "c6": 1.1055259875626433, + "c7": -31.683130398257767 }, - "vertexSeeds": { - "c1": 0.608472192198471, - "c2": 0.6609237022908498, - "c3": 0.6551886390522904, - "c4": 0.6547874128122504, - "c5": 0.6430812683675746, - "c6": 0.676906966227877, - "c7": 0.6281182261391449 + "offsets": { + "c1": 1.1650485436893203, + "c2": 0.9986130374479891, + "c3": 0.8321775312066579, + "c4": 0.6657420249653246, + "c5": 0.49930651872399356, + "c6": 0.3328710124826623, + "c7": 0.16643550624133116 }, "rgb": [86, 146, 138] }, @@ -389832,23 +389832,23 @@ "year": 1807, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 25.488024288096277, - "c2": -8.766689666693438, - "c3": -33.05610479953291, - "c4": 38.8516214853664, - "c5": 7.354456713828277, - "c6": -13.27321993716124, - "c7": 1.9921688810626534 + "points": { + "c1": 28.17621684291796, + "c2": -30.235456508213367, + "c3": -39.123617877739576, + "c4": 29.977435243517256, + "c5": -8.877604228903579, + "c6": 35.17507452872916, + "c7": -38.691389275197054 }, - "vertexSeeds": { - "c1": 2.0993118704982687, - "c2": 2.065319316519248, - "c3": 2.0807367199259703, - "c4": 2.0756996591104184, - "c5": 2.0409871765988266, - "c6": 2.1269221634515443, - "c7": 2.046333161175119 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048517, + "c3": 2.5889967637540408, + "c4": 2.0711974110032374, + "c5": 1.5533980582524258, + "c6": 1.0355987055016145, + "c7": 0.5177993527508116 }, "rgb": [58, 15, 49] }, @@ -389859,23 +389859,23 @@ "year": 1807, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": 3.8899489548419126, - "c2": -40.84469540014514, - "c3": 10.354721637388842, - "c4": -25.575025400861154, - "c5": 21.43573683657359, - "c6": -43.062227670165115, - "c7": 39.86361686607284 + "points": { + "c1": -9.195152591504431, + "c2": 28.557564560274606, + "c3": -43.065607441972126, + "c4": 25.204236823398865, + "c5": 16.418194902560224, + "c6": 5.933769489453837, + "c7": -43.14857454494046 }, - "vertexSeeds": { - "c1": 11.049930468311885, - "c2": 11.12840023876701, - "c3": 11.076582404968272, - "c4": 11.030462156816894, - "c5": 11.045776155747193, - "c6": 11.078122999073434, - "c7": 11.026181424379711 + "offsets": { + "c1": 18.576051779935277, + "c2": 15.922330097087281, + "c3": 13.268608414239635, + "c4": 10.614886731391637, + "c5": 7.9611650485436405, + "c6": 5.307443365695643, + "c7": 2.6537216828479973 }, "rgb": [238, 201, 159] }, @@ -389886,23 +389886,23 @@ "year": 1807, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": -8.137881169274474, - "c2": -1.6268009168720994, - "c3": 10.972276148088259, - "c4": 14.790285757492228, - "c5": 3.217301940435533, - "c6": -13.779401653519248, - "c7": -18.093063425899793 + "points": { + "c1": -6.686184370507036, + "c2": 17.05536843336096, + "c3": 8.425149669411493, + "c4": 12.514705484647415, + "c5": 0.8522666022396308, + "c6": 6.996568944802078, + "c7": -14.408084357452877 }, - "vertexSeeds": { - "c1": 3.9102737256186706, - "c2": 4.347096105151575, - "c3": 4.180612429081197, - "c4": 3.65993502081201, - "c5": 3.8079802839220913, - "c6": 4.0969995616804695, - "c7": 4.357676067262076 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175682, + "c4": 4.234858992140544, + "c5": 3.17614424410541, + "c6": 2.117429496070272, + "c7": 1.0587147480351342 }, "rgb": [222, 0, 59] }, @@ -389913,23 +389913,23 @@ "year": 1807, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -17.81672961601662, - "c2": -13.60897565259215, - "c3": -16.435822813259197, - "c4": 19.805463457111305, - "c5": 14.305258513169687, - "c6": -10.063919966239483, - "c7": -11.279998445984175 + "points": { + "c1": 7.022407244747491, + "c2": 19.46835433107208, + "c3": 17.393196193949702, + "c4": 21.60410415759844, + "c5": -0.3685453765854092, + "c6": -7.0267036369598195, + "c7": -10.88452411277151 }, - "vertexSeeds": { - "c1": 1.9040484573832537, - "c2": 1.8075728804029996, - "c3": 1.8471432808029926, - "c4": 1.8386751430736876, - "c5": 1.9573533071311258, - "c6": 2.0156590968112904, - "c7": 1.9469288638217574 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635247, + "c3": 2.4503005085529352, + "c4": 1.9602404068423498, + "c5": 1.4701803051317603, + "c6": 0.9801202034211749, + "c7": 0.49006010171058934 }, "rgb": [58, 15, 49] }, @@ -389940,23 +389940,23 @@ "year": 1807, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -9.686652303429465, - "c2": -14.653811769606692, - "c3": 26.575971514839647, - "c4": 3.7359359039993763, - "c5": 1.7952208963409362, - "c6": -25.464114402276664, - "c7": 23.5566263753897 + "points": { + "c1": -16.50304769331523, + "c2": -23.330844465459236, + "c3": 4.998229155017473, + "c4": -15.1827593275035, + "c5": -5.17041345792623, + "c6": -7.451105763043692, + "c7": 7.87801093236131 }, - "vertexSeeds": { - "c1": 3.3445788032901005, - "c2": 3.1052574125555092, - "c3": 3.4041418480881305, - "c4": 3.477765309169085, - "c5": 3.4572505763597805, - "c6": 3.1840837617735582, - "c7": 3.311051028006598 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [222, 0, 59] }, @@ -389967,23 +389967,23 @@ "year": 1807, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -9.219720850899549, - "c2": -15.42533729121846, - "c3": 16.190955113397987, - "c4": -20.168939308451147, - "c5": 10.808692762295696, - "c6": 19.681534739058787, - "c7": 6.941112825215033 + "points": { + "c1": -11.806660525547155, + "c2": -28.381159797483114, + "c3": 23.139396336652865, + "c4": 16.610033452030798, + "c5": -7.619615686110894, + "c6": 1.3665586542710457, + "c7": 2.1328129666041633 }, - "vertexSeeds": { - "c1": 6.191375466304308, - "c2": 6.664458523285255, - "c3": 6.692821855032393, - "c4": 6.35760543846091, - "c5": 6.404015317498192, - "c6": 6.21693391369829, - "c7": 6.400085875960231 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [58, 15, 49] }, @@ -389994,23 +389994,23 @@ "year": 1807, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 21.78159566034811, - "c2": 16.514265859694852, - "c3": -5.37425732422944, - "c4": 24.131958213655615, - "c5": 24.866292846690214, - "c6": -6.036955627176901, - "c7": -11.81021663408714 + "points": { + "c1": -13.321527326063872, + "c2": -34.08148664524077, + "c3": -16.104676711652683, + "c4": -27.01858575059925, + "c5": -6.888837279012545, + "c6": 0.8910000459410483, + "c7": 34.00774683630867 }, - "vertexSeeds": { - "c1": 4.079468830938996, - "c2": 4.199836177536638, - "c3": 4.298241034905447, - "c4": 4.373009845447867, - "c5": 4.28686397662671, - "c6": 4.3452507996015655, - "c7": 4.3116543338046815 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130371, + "c3": 5.247341655108646, + "c4": 4.197873324086913, + "c5": 3.14840499306519, + "c6": 2.0989366620434566, + "c7": 1.0494683310217239 }, "rgb": [86, 146, 138] }, @@ -390021,23 +390021,23 @@ "year": 1807, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -30.93475742177769, - "c2": 18.58085778973315, - "c3": 13.761866864844286, - "c4": 31.641954018700076, - "c5": -10.500688409049555, - "c6": 33.45938445126298, - "c7": 3.6357346783764655 + "points": { + "c1": 11.742601407899095, + "c2": 2.8964184672045192, + "c3": -6.260102228933068, + "c4": 21.61211361716316, + "c5": 9.322639846812862, + "c6": 14.69667476872349, + "c7": 20.461523048583608 }, - "vertexSeeds": { - "c1": 3.795545881428353, - "c2": 3.896660594571356, - "c3": 3.8979337621768186, - "c4": 3.6420185883512923, - "c5": 3.8728080489747096, - "c6": 3.8946196895978393, - "c7": 3.713761771845912 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285719, + "c3": 4.761904761904761, + "c4": 3.8095238095238124, + "c5": 2.8571428571428545, + "c6": 1.9047619047619062, + "c7": 0.9523809523809484 }, "rgb": [86, 146, 138] }, @@ -390048,23 +390048,23 @@ "year": 1807, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -10.539104089866537, - "c2": -8.27447531235541, - "c3": 0.8008209584109949, - "c4": -25.549364912916367, - "c5": -7.830005923188452, - "c6": -20.427914495899962, - "c7": -24.9655679020928 + "points": { + "c1": -0.06198120183935174, + "c2": -1.8808817693726283, + "c3": 2.712672241252349, + "c4": 25.241594769849293, + "c5": -15.537673617927908, + "c6": 9.80233949008219, + "c7": -14.780631864665654 }, - "vertexSeeds": { - "c1": 5.519363865320857, - "c2": 5.265820275622822, - "c3": 5.177085925423477, - "c4": 5.377882329267057, - "c5": 5.359566426546158, - "c6": 5.583497225077048, - "c7": 5.643879064606024 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945912, + "c3": 6.8654646324549295, + "c4": 5.492371705963947, + "c5": 4.119278779472946, + "c6": 2.7461858529819647, + "c7": 1.3730929264909824 }, "rgb": [58, 15, 49] }, @@ -390075,23 +390075,23 @@ "year": 1807, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -0.5499582940190635, - "c2": 16.093657777653604, - "c3": 11.182043431686274, - "c4": -9.276336854304436, - "c5": 23.95797475009629, - "c6": -34.741547808477804, - "c7": -10.515359783492308 + "points": { + "c1": 20.429690244384787, + "c2": 28.7290370054804, + "c3": -24.26600261735515, + "c4": -19.83312286402131, + "c5": 33.17580610593341, + "c6": -25.714131585082256, + "c7": 9.287075896563508 }, - "vertexSeeds": { - "c1": 3.879061792604266, - "c2": 3.680035366034843, - "c3": 3.8485582343281566, - "c4": 4.069590411176115, - "c5": 3.8810651353289334, - "c6": 3.675101486005768, - "c7": 3.8845597520206807 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486823, + "c3": 4.8774849745723525, + "c4": 3.901987979657882, + "c5": 2.9264909847434115, + "c6": 1.950993989828941, + "c7": 0.9754969949144705 }, "rgb": [222, 0, 59] }, @@ -390102,23 +390102,23 @@ "year": 1807, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -1.6318262678825874, - "c2": 19.65594757693007, - "c3": -6.292669395568247, - "c4": 23.34579034925139, - "c5": 22.48930967384685, - "c6": 23.61347513176418, - "c7": -27.909980762919965 + "points": { + "c1": 8.855473724979579, + "c2": -21.543731503951935, + "c3": -13.620145267742288, + "c4": 16.827142535404644, + "c5": -22.265591913884634, + "c6": 25.177976534370995, + "c7": -29.965209840816968 }, - "vertexSeeds": { - "c1": 5.43114664084597, - "c2": 5.819840350114404, - "c3": 5.743972636178198, - "c4": 5.485150292419222, - "c5": 5.677768251781828, - "c6": 5.658798798914268, - "c7": 5.686433185018755 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -390129,23 +390129,23 @@ "year": 1807, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -19.4249227559821, - "c2": -5.1562398955172455, - "c3": 40.46012476646804, - "c4": -40.34263025413195, - "c5": -12.882420540769484, - "c6": -39.70828482611173, - "c7": 35.72836541711901 + "points": { + "c1": -14.409104154648954, + "c2": 41.167737641584864, + "c3": -30.904809196655727, + "c4": 8.675998851841953, + "c5": -10.063116069217088, + "c6": -26.33322517104606, + "c7": -9.518570058788825 }, - "vertexSeeds": { - "c1": 5.506261660134408, - "c2": 5.92905511685944, - "c3": 5.851796344398575, - "c4": 5.524401645429293, - "c5": 5.547892475899516, - "c6": 5.832240962667045, - "c7": 5.825813721744181 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -390156,23 +390156,23 @@ "year": 1807, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -19.312787634831245, - "c2": 29.077205498175648, - "c3": 4.404190633083527, - "c4": -24.422449505777994, - "c5": 5.972220730092413, - "c6": -0.11248371571019433, - "c7": 10.942436832918542 + "points": { + "c1": 27.12363342413095, + "c2": 0.6333234090301332, + "c3": 10.815161618556942, + "c4": 29.247700057437676, + "c5": -16.489593835411696, + "c6": 22.373591689159753, + "c7": 0.010007035690740906 }, - "vertexSeeds": { - "c1": 4.493678729149945, - "c2": 4.575707766255538, - "c3": 4.603563952452592, - "c4": 4.6715751848784395, - "c5": 4.744388330970177, - "c6": 4.709856451562347, - "c7": 4.584835236928853 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055474, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.4674063800277413, + "c6": 2.3116042533518244, + "c7": 1.1558021266759078 }, "rgb": [86, 146, 138] }, @@ -390183,23 +390183,23 @@ "year": 1807, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 2.613293407499814, - "c2": 12.003122691933644, - "c3": -8.46975736210885, - "c4": -22.41991163596345, - "c5": -12.210150163761185, - "c6": 24.03974954972706, - "c7": -26.7193693435559 + "points": { + "c1": -7.412427864645569, + "c2": 7.138231555038217, + "c3": -9.539828211249947, + "c4": -24.06126284272551, + "c5": -13.10754556917562, + "c6": 17.827343145861633, + "c7": -16.814417279941164 }, - "vertexSeeds": { - "c1": 4.596801525839728, - "c2": 4.7024245738716015, - "c3": 4.697930533209938, - "c4": 4.769667369193525, - "c5": 4.761224765447179, - "c6": 4.731886568238413, - "c7": 4.6087914926047295 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055475, + "c3": 5.77901063337956, + "c4": 4.623208506703644, + "c5": 3.4674063800277466, + "c6": 2.311604253351831, + "c7": 1.1558021266759155 }, "rgb": [238, 201, 159] }, @@ -390210,23 +390210,23 @@ "year": 1807, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 22.497819727107437, - "c2": -5.224287538492547, - "c3": 22.102347348570024, - "c4": 21.666875439175552, - "c5": -27.600683500468175, - "c6": 0.2883358170081891, - "c7": 29.755944525578546 + "points": { + "c1": -22.705582949211596, + "c2": 2.3517580863525467, + "c3": 21.225973394245997, + "c4": -16.982550407174195, + "c5": -11.449060911012513, + "c6": 19.284408257246938, + "c7": -1.9509216061669896 }, - "vertexSeeds": { - "c1": 5.134616669283829, - "c2": 5.43884987391472, - "c3": 5.231676236519534, - "c4": 5.1090897678388565, - "c5": 5.437722725547969, - "c6": 5.5764180429039865, - "c7": 5.485602644092826 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.7267683772538165, + "c4": 5.381414701803046, + "c5": 4.036061026352294, + "c6": 2.690707350901523, + "c7": 1.3453536754507522 }, "rgb": [58, 15, 49] }, @@ -390237,23 +390237,23 @@ "year": 1807, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": -2.8604302994784305, - "c2": -12.436980397087837, - "c3": 5.116549133116742, - "c4": 4.320925396004441, - "c5": 7.49124727760017, - "c6": -17.42406562900343, - "c7": -12.531505268961908 + "points": { + "c1": -2.6044930209927024, + "c2": 9.362118907400301, + "c3": -17.140391131701335, + "c4": -20.64906046748815, + "c5": -0.4122865421150337, + "c6": 12.088868198452325, + "c7": -11.780420602695784 }, - "vertexSeeds": { - "c1": 3.1529742064503514, - "c2": 3.4785480599047416, - "c3": 3.2742680827112993, - "c4": 3.5110642051514156, - "c5": 3.5926475922052963, - "c6": 3.344540007999523, - "c7": 3.09398460992757 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527044, + "c3": 4.900601017105872, + "c4": 3.9204808136846965, + "c5": 2.940360610263524, + "c6": 1.9602404068423482, + "c7": 0.9801202034211721 }, "rgb": [238, 201, 159] }, @@ -390264,23 +390264,23 @@ "year": 1807, "resistanceReported": false, "duration": 29030400, - "curveSeeds": { - "c1": -9.052051022194512, - "c2": 14.197766447007822, - "c3": -12.420474561643989, - "c4": 24.05450252124122, - "c5": -19.509533399565157, - "c6": 21.331456136873314, - "c7": -41.56199566755865 + "points": { + "c1": -6.4934065172188085, + "c2": 13.655370209535384, + "c3": -34.35599321896178, + "c4": -21.19019395712859, + "c5": -8.499607104665976, + "c6": 25.522936498775692, + "c7": 41.90671230232364 }, - "vertexSeeds": { - "c1": 3.3680271408990174, - "c2": 3.2024485535432237, - "c3": 3.597066413512124, - "c4": 4.101125858915001, - "c5": 3.8646775171648575, - "c6": 3.671205966773276, - "c7": 3.2944001705161754 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728155, + "c3": 5.016181229773464, + "c4": 4.012944983818769, + "c5": 3.009708737864076, + "c6": 2.0064724919093844, + "c7": 1.0032362459546922 }, "rgb": [58, 15, 49] }, @@ -390291,23 +390291,23 @@ "year": 1807, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -32.72118149530854, - "c2": 28.163640615456288, - "c3": -22.30571629985377, - "c4": 14.274014504015994, - "c5": -14.221974983739326, - "c6": 1.2125849263437942, - "c7": -6.457555768448977 + "points": { + "c1": 7.2168684305655475, + "c2": 13.730513179675583, + "c3": 13.80337854300258, + "c4": -28.047091382126023, + "c5": 16.363087210342393, + "c6": 28.35630488892258, + "c7": 21.010914624203174 }, - "vertexSeeds": { - "c1": 4.924591094956632, - "c2": 4.744370574185921, - "c3": 4.731478660817621, - "c4": 5.004454177632025, - "c5": 5.003305824479072, - "c6": 4.68008702262267, - "c7": 4.7131004457623416 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457695, + "c3": 6.010171058714752, + "c4": 4.8081368469718, + "c5": 3.6061026352288477, + "c6": 2.4040684234858953, + "c7": 1.2020342117429523 }, "rgb": [222, 0, 59] }, @@ -390318,23 +390318,23 @@ "year": 1807, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -4.770763318606257, - "c2": 31.18411961339403, - "c3": -13.005070168156927, - "c4": -26.077974377817032, - "c5": 25.9600024276089, - "c6": 15.738923787676221, - "c7": 18.9416856046386 + "points": { + "c1": 32.767708382569765, + "c2": 15.941963319174874, + "c3": 26.47662883911802, + "c4": -23.02367723329602, + "c5": 21.45667170967875, + "c6": 33.14642162469909, + "c7": -32.21674593885455 }, - "vertexSeeds": { - "c1": 4.7598426012417425, - "c2": 4.467064290983973, - "c3": 4.897780325030202, - "c4": 4.583885168081489, - "c5": 4.610340966371138, - "c6": 4.587528958250793, - "c7": 4.739348628585123 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.07350901525659, + "c3": 5.89459084604716, + "c4": 4.71567267683773, + "c5": 3.5367545076282996, + "c6": 2.3578363384188603, + "c7": 1.1789181692094393 }, "rgb": [222, 0, 59] }, @@ -390345,23 +390345,23 @@ "year": 1807, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -8.58196966449023, - "c2": 17.20089159588192, - "c3": 24.720124908640123, - "c4": 29.65092925103714, - "c5": 28.74449236670555, - "c6": -19.475453852962815, - "c7": -17.067107004431797 + "points": { + "c1": 27.164264574634124, + "c2": -5.590413669197549, + "c3": 25.525757079010035, + "c4": -10.377388129629388, + "c5": -3.3836141035619463, + "c6": 6.082732203428478, + "c7": 8.188732076172755 }, - "vertexSeeds": { - "c1": 1.6361434398196886, - "c2": 1.5365817676938809, - "c3": 1.5870779625285651, - "c4": 1.7160477855406577, - "c5": 1.6941712005133678, - "c6": 1.695621850358462, - "c7": 1.5569482902948182 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619971, + "c3": 2.0804438280166413, + "c4": 1.6643550624133154, + "c5": 1.2482662968099856, + "c6": 0.8321775312066556, + "c7": 0.4160887656033299 }, "rgb": [238, 201, 159] }, @@ -390372,23 +390372,23 @@ "year": 1807, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 8.602189649697316, - "c2": -14.802168424704533, - "c3": -16.69907679261687, - "c4": -6.611340226830151, - "c5": 24.391494434649722, - "c6": -17.44132314024658, - "c7": -25.233856971692525 + "points": { + "c1": -3.773617798364743, + "c2": -9.806373710785184, + "c3": -3.844487000766918, + "c4": 9.186110145977494, + "c5": 1.178553374493756, + "c6": 24.316638349337772, + "c7": 14.554694730313905 }, - "vertexSeeds": { - "c1": 3.108272546264787, - "c2": 3.202977982830322, - "c3": 3.085632944988658, - "c4": 3.1440345590828396, - "c5": 3.231979376181249, - "c6": 3.0952491568506, - "c7": 3.141268345358782 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.88210818307906, + "c3": 4.068423485899211, + "c4": 3.2547387887193704, + "c5": 2.44105409153953, + "c6": 1.6273693943596896, + "c7": 0.8136846971798405 }, "rgb": [222, 0, 59] }, @@ -390399,23 +390399,23 @@ "year": 1807, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -19.187250700383807, - "c2": -1.2659498882867588, - "c3": 21.85961936978375, - "c4": 17.42171707329883, - "c5": 17.117567721908884, - "c6": -10.676710322890976, - "c7": 0.1684529787254334 + "points": { + "c1": -28.7310068041136, + "c2": -30.194049811841246, + "c3": -30.28988472499882, + "c4": 4.579701156452472, + "c5": -8.433644038820646, + "c6": 12.664808025710336, + "c7": -3.7789755745790465 }, - "vertexSeeds": { - "c1": 8.380382673678094, - "c2": 7.9990320985365, - "c3": 7.587495181132853, - "c4": 7.569723813496272, - "c5": 8.321344907718483, - "c6": 7.784986783993799, - "c7": 8.341665100969646 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.0388349514563, + "c3": 10.032362459546922, + "c4": 8.025889967637546, + "c5": 6.01941747572815, + "c6": 4.0129449838187545, + "c7": 2.0064724919093773 }, "rgb": [58, 15, 49] }, @@ -390426,23 +390426,23 @@ "year": 1807, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -20.114939171863544, - "c2": 25.81460845337076, - "c3": -27.09790463332797, - "c4": 26.657383746842278, - "c5": -24.733821892307326, - "c6": 26.932006454445194, - "c7": -1.8668449181567297 + "points": { + "c1": 1.5841879542128083, + "c2": 11.685912403068862, + "c3": -31.734253593956137, + "c4": -23.418404300587078, + "c5": -12.700658034529962, + "c6": -27.01226416968423, + "c7": 35.96742440498338 }, - "vertexSeeds": { - "c1": 3.432894645455504, - "c2": 3.437911512896581, - "c3": 3.5529574554098664, - "c4": 3.5739275805015653, - "c5": 3.5885786702869678, - "c6": 3.4600416096775857, - "c7": 3.3513817370222982 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722605, + "c3": 4.4382801664355105, + "c4": 3.550624133148406, + "c5": 2.6629680998613026, + "c6": 1.775312066574208, + "c7": 0.887656033287104 }, "rgb": [222, 0, 59] }, @@ -390453,23 +390453,23 @@ "year": 1807, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 1.6002150205205226, - "c2": 29.879079652108032, - "c3": -1.975334546257102, - "c4": 20.891248067191157, - "c5": -33.133470031591756, - "c6": 3.47218536460484, - "c7": 25.001215692054522 + "points": { + "c1": 4.802009564454941, + "c2": 2.0921503842452296, + "c3": -18.144701220456547, + "c4": -37.48909045817728, + "c5": 30.942145793185787, + "c6": 21.45883652581437, + "c7": -33.482559816886535 }, - "vertexSeeds": { - "c1": 4.0631375023134035, - "c2": 4.203838015951097, - "c3": 4.404458751474417, - "c4": 4.143971946614132, - "c5": 3.9818486382752467, - "c6": 4.380645648756553, - "c7": 4.200764988446833 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170592, + "c3": 5.270457697642164, + "c4": 4.216366158113728, + "c5": 3.162274618585301, + "c6": 2.108183079056864, + "c7": 1.0540915395284276 }, "rgb": [86, 146, 138] }, @@ -390480,23 +390480,23 @@ "year": 1807, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -21.183634212189155, - "c2": -21.240364584971203, - "c3": -16.96001357305468, - "c4": -5.155061638747679, - "c5": -2.3915994999165306, - "c6": -8.118059922131827, - "c7": -35.08072112306166 + "points": { + "c1": 28.13538856833165, + "c2": -26.879987321116722, + "c3": -32.47030526723101, + "c4": -16.319579442837362, + "c5": 13.290040593075275, + "c6": 0.8860553569355076, + "c7": 25.054008446923348 }, - "vertexSeeds": { - "c1": 5.031090799122393, - "c2": 5.203215220913351, - "c3": 4.951164868259831, - "c4": 5.254400624499579, - "c5": 5.1062125777192735, - "c6": 5.260984494604116, - "c7": 5.229646471362195 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -390507,23 +390507,23 @@ "year": 1807, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 28.52935031360575, - "c2": 15.554660342234367, - "c3": -1.0204197809781554, - "c4": -10.443309678763992, - "c5": -6.414465136156561, - "c6": -1.4412593977441261, - "c7": -13.167324719645354 + "points": { + "c1": 3.2908401286043336, + "c2": 14.956790420290101, + "c3": -14.260489643231836, + "c4": 17.355133826553445, + "c5": 26.048049818558948, + "c6": 22.654898190124694, + "c7": 30.217009820155244 }, - "vertexSeeds": { - "c1": 2.4701648492603128, - "c2": 2.3324368336380665, - "c3": 2.5171938332442094, - "c4": 2.350557720990176, - "c5": 2.3120340932850527, - "c6": 2.5046734218812983, - "c7": 2.2622101837525204 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690736, + "c3": 3.028201571890893, + "c4": 2.422561257512713, + "c5": 1.8169209431345368, + "c6": 1.2112806287563564, + "c7": 0.6056403143781803 }, "rgb": [58, 15, 49] }, @@ -390534,23 +390534,23 @@ "year": 1807, "resistanceReported": false, "duration": 7084800, - "curveSeeds": { - "c1": 7.186350354173964, - "c2": 11.099847640697053, - "c3": -3.0785186795792736, - "c4": 3.616821014457159, - "c5": 5.592666963135795, - "c6": -16.473699146734234, - "c7": -7.659316178819557 + "points": { + "c1": -19.199676361976284, + "c2": -14.797230744086312, + "c3": 16.733888530111916, + "c4": 17.730358660903047, + "c5": 1.9281362792726, + "c6": 16.841687345051657, + "c7": -17.879495165574205 }, - "vertexSeeds": { - "c1": 1.1304988879983464, - "c2": 1.0290151054371055, - "c3": 1.246093854833198, - "c4": 1.2306740160852376, - "c5": 1.0319462539839226, - "c6": 1.2177841270349568, - "c7": 0.9767168810378073 + "offsets": { + "c1": 2.1359223300970873, + "c2": 1.8307905686546466, + "c3": 1.5256588072122048, + "c4": 1.2205270457697641, + "c5": 0.9153952843273233, + "c6": 0.6102635228848816, + "c7": 0.3051317614424408 }, "rgb": [58, 15, 49] }, @@ -390561,23 +390561,23 @@ "year": 1807, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 26.21217146245548, - "c2": 10.477737803750166, - "c3": 8.87275079170039, - "c4": 18.47254157360507, - "c5": -11.395667990446253, - "c6": 11.490957162055288, - "c7": -32.10417595465099 + "points": { + "c1": 7.548389804783511, + "c2": 15.59415981442315, + "c3": -10.496055308089677, + "c4": -6.613999407865769, + "c5": -17.88943505976086, + "c6": -12.476549052963229, + "c7": -12.962715280391464 }, - "vertexSeeds": { - "c1": 1.9831601432845782, - "c2": 1.991655429909217, - "c3": 1.9436335511309566, - "c4": 1.8991014021167096, - "c5": 1.97600540985251, - "c6": 1.942338457303705, - "c7": 1.9405450713266452 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635216, + "c3": 2.450300508552938, + "c4": 1.9602404068423493, + "c5": 1.4701803051317608, + "c6": 0.9801202034211723, + "c7": 0.49006010171058845 }, "rgb": [222, 0, 59] }, @@ -390588,23 +390588,23 @@ "year": 1808, "resistanceReported": false, "duration": 44668800, - "curveSeeds": { - "c1": -41.02179005022626, - "c2": 54.81609684050698, - "c3": -49.40244442588268, - "c4": 44.99007333972134, - "c5": 44.56558963973003, - "c6": 26.90093170627673, - "c7": -47.95293545905879 + "points": { + "c1": -7.064105955390168, + "c2": 24.0603662981544, + "c3": 3.917387711402391, + "c4": 25.587045426433342, + "c5": 34.54102064593548, + "c6": -37.63978269292306, + "c7": 12.461482992688495 }, - "vertexSeeds": { - "c1": 5.653039477505921, - "c2": 5.5207561727897945, - "c3": 5.860334655784473, - "c4": 5.580241113567564, - "c5": 5.710050775332391, - "c6": 5.6444154369978525, - "c7": 5.666359591215866 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -390615,23 +390615,23 @@ "year": 1807, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -8.010901057713621, - "c2": -19.106073725356886, - "c3": -24.56564906992106, - "c4": 8.046323482900636, - "c5": 22.55033257787508, - "c6": 16.303890027406137, - "c7": -28.599918604029476 + "points": { + "c1": 28.415666086264164, + "c2": 1.3460134461405282, + "c3": -0.8843969545857533, + "c4": -27.35586745783051, + "c5": -28.730981774075488, + "c6": 3.461036312933995, + "c7": -22.148031780427075 }, - "vertexSeeds": { - "c1": 5.377058076250644, - "c2": 5.614301014703764, - "c3": 5.185811584795766, - "c4": 5.255185517040737, - "c5": 5.375732295265123, - "c6": 5.105663070979859, - "c7": 5.609064496901377 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664348, + "c3": 6.7036523347202985, + "c4": 5.362921867776231, + "c5": 4.022191400832183, + "c6": 2.6814609338881157, + "c7": 1.3407304669440487 }, "rgb": [238, 201, 159] }, @@ -390642,23 +390642,23 @@ "year": 1808, "resistanceReported": false, "duration": 40435200, - "curveSeeds": { - "c1": 12.137262918301381, - "c2": -28.106179043747247, - "c3": -27.919659197484517, - "c4": -6.8386021087532995, - "c5": -18.079592856100454, - "c6": 17.132149818702224, - "c7": 38.48652829366403 + "points": { + "c1": 18.23780068063362, + "c2": -8.866963069061654, + "c3": 45.927168805891675, + "c4": -16.657263062466306, + "c5": -4.2762997703635435, + "c6": 0.7067661182021467, + "c7": 17.863875905229087 }, - "vertexSeeds": { - "c1": 4.758994299583768, - "c2": 5.138610802408566, - "c3": 4.979195488873605, - "c4": 4.846664275510545, - "c5": 4.962927831743007, - "c6": 4.972452827931518, - "c7": 4.787532091805825 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [77, 76, 132] }, @@ -390669,23 +390669,23 @@ "year": 1807, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -20.934773025728603, - "c2": 13.408646300117752, - "c3": 15.150537294809936, - "c4": -12.441778671763824, - "c5": -8.061989564892738, - "c6": 32.4441526766917, - "c7": -12.1947027783918 + "points": { + "c1": -15.113108036683403, + "c2": 6.536077465918233, + "c3": -32.415593664548574, + "c4": 27.477577625982505, + "c5": -5.390678487011833, + "c6": 15.2362582054148, + "c7": 2.0620192883157387 }, - "vertexSeeds": { - "c1": 3.8578703417308984, - "c2": 3.88579473807062, - "c3": 3.8905923098723516, - "c4": 4.111809049600825, - "c5": 3.886155838265369, - "c6": 4.176711002876102, - "c7": 4.0077617115469995 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889045, + "c3": 5.108645399907538, + "c4": 4.086916319926033, + "c5": 3.0651872399445175, + "c6": 2.043458159963012, + "c7": 1.021729079981506 }, "rgb": [58, 15, 49] }, @@ -390696,23 +390696,23 @@ "year": 1807, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 25.932932103970018, - "c2": -2.761518447194348, - "c3": 29.774338350801536, - "c4": 16.593685541442625, - "c5": -10.652833490694047, - "c6": -7.474219366019689, - "c7": -23.2411664378655 + "points": { + "c1": 4.081732622230881, + "c2": 20.190531415301997, + "c3": 27.46599346606626, + "c4": 16.64910598874944, + "c5": 7.672809683618226, + "c6": -33.73962746838192, + "c7": 0.2899869342451211 }, - "vertexSeeds": { - "c1": 5.616355709130648, - "c2": 5.872539755592585, - "c3": 5.762032720362217, - "c4": 5.585111574420517, - "c5": 5.852051387236308, - "c6": 5.43710131212214, - "c7": 5.575416365012092 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -390723,23 +390723,23 @@ "year": 1807, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": -5.490724233749074, - "c2": 9.318383365478986, - "c3": -9.667016482921237, - "c4": 0.04760011772917139, - "c5": -10.870753777787478, - "c6": -16.789210925518372, - "c7": 2.2256942896560936 + "points": { + "c1": -8.888966400633816, + "c2": 14.37529551858719, + "c3": 5.7186809349525305, + "c4": 3.0106618708271924, + "c5": 18.37192965694906, + "c6": -16.42978610071511, + "c7": 11.345130535770604 }, - "vertexSeeds": { - "c1": 10.012708643390688, - "c2": 9.461971125233259, - "c3": 9.168287989416298, - "c4": 10.271723577127176, - "c5": 9.489757178193175, - "c6": 9.58326021922005, - "c7": 9.160069432643574 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [238, 201, 159] }, @@ -390750,23 +390750,23 @@ "year": 1807, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 8.57967394952039, - "c2": 28.453507235092218, - "c3": 7.713273679806036, - "c4": -4.708017771539055, - "c5": -6.424548678530979, - "c6": -7.329585178567754, - "c7": -15.926671370470768 + "points": { + "c1": -5.087143835625014, + "c2": 18.91644601861453, + "c3": -9.698443614263311, + "c4": 25.216762177565734, + "c5": -19.441576582069885, + "c6": -21.817011055055254, + "c7": -4.316688219830443 }, - "vertexSeeds": { - "c1": 10.114042688075283, - "c2": 10.837645554427336, - "c3": 9.855310899839152, - "c4": 11.69906694920664, - "c5": 9.958247537322693, - "c6": 9.563265550334538, - "c7": 9.464768170262648 + "offsets": { + "c1": 19.80582524271845, + "c2": 16.976421636615814, + "c3": 14.147018030513182, + "c4": 11.317614424410548, + "c5": 8.488210818307914, + "c6": 5.658807212205274, + "c7": 2.8294036061026406 }, "rgb": [222, 0, 59] }, @@ -390777,23 +390777,23 @@ "year": 1807, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 1.076449466453397, - "c2": -19.127907321846738, - "c3": -25.988064393562276, - "c4": -8.777493616421985, - "c5": -25.630223806759165, - "c6": -1.3206150335994522, - "c7": 28.517616705042485 + "points": { + "c1": -24.944386675469257, + "c2": -44.09557968368168, + "c3": -21.382053942810128, + "c4": 18.2945678852238, + "c5": 38.74084560763664, + "c6": -9.003782536938004, + "c7": 10.845851450457843 }, - "vertexSeeds": { - "c1": 2.9767949111219054, - "c2": 3.082051205028606, - "c3": 3.0215852036183835, - "c4": 3.0837332414054024, - "c5": 3.1404875623002075, - "c6": 3.0107487522068, - "c7": 3.0252354448304772 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757286, + "c3": 3.883495145631067, + "c4": 3.1067961165048565, + "c5": 2.3300970873786384, + "c6": 1.5533980582524283, + "c7": 0.7766990291262099 }, "rgb": [238, 201, 159] }, @@ -390804,23 +390804,23 @@ "year": 1808, "resistanceReported": false, "duration": 60998400, - "curveSeeds": { - "c1": 54.038439684517456, - "c2": -69.7800141868509, - "c3": -25.671838547017096, - "c4": 17.668882737838175, - "c5": -47.60802392500143, - "c6": 3.0421097420428254, - "c7": -74.06899791446831 + "points": { + "c1": 44.69288015541038, + "c2": 40.05439200411601, + "c3": -57.29497743024588, + "c4": 58.232180766389504, + "c5": -60.97974058367063, + "c6": -55.273642889422206, + "c7": -45.88218315009685 }, - "vertexSeeds": { - "c1": 6.418531391788934, - "c2": 6.310563938787408, - "c3": 6.2472167927000575, - "c4": 6.323230833650339, - "c5": 6.4717808217737165, - "c6": 6.4877587652542195, - "c7": 6.153536794559983 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.76421636615812, + "c3": 8.136846971798422, + "c4": 6.509477577438741, + "c5": 4.88210818307906, + "c6": 3.2547387887193615, + "c7": 1.6273693943596808 }, "rgb": [238, 201, 159] }, @@ -390831,23 +390831,23 @@ "year": 1807, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -11.25921225378822, - "c2": -20.80852142283579, - "c3": 17.267613586669796, - "c4": 28.690760104843882, - "c5": 26.544695928043588, - "c6": -33.893906424863886, - "c7": 26.43439215676738 + "points": { + "c1": -5.476603811059597, + "c2": 5.374967208826192, + "c3": 35.14407060787941, + "c4": 28.738462042121448, + "c5": 24.49112713129498, + "c6": -28.887644741343287, + "c7": 37.93752785077144 }, - "vertexSeeds": { - "c1": 5.32111456847593, - "c2": 5.275895558181414, - "c3": 5.250839034810439, - "c4": 5.409212515489961, - "c5": 5.275742070401839, - "c6": 5.361591034755104, - "c7": 5.296453665663974 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302353, + "c3": 6.49560795191862, + "c4": 5.1964863615348875, + "c5": 3.897364771151155, + "c6": 2.5982431807674655, + "c7": 1.2991215903837328 }, "rgb": [77, 76, 132] }, @@ -390858,23 +390858,23 @@ "year": 1807, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 5.1407753126539575, - "c2": -23.041801715040194, - "c3": -8.112237826470444, - "c4": 3.4246141665461067, - "c5": 27.522840770097197, - "c6": 18.352976454105132, - "c7": -13.315469602985143 + "points": { + "c1": -10.401579933892787, + "c2": -22.857264773292897, + "c3": 23.477765674874327, + "c4": 27.0414901700996, + "c5": -4.5692267297333125, + "c6": 27.5477011802979, + "c7": -2.6853921559916643 }, - "vertexSeeds": { - "c1": 2.1799361742553707, - "c2": 2.160449160997027, - "c3": 2.0701788787890676, - "c4": 2.1988693995321213, - "c5": 2.0084958564025412, - "c6": 2.068873607064992, - "c7": 1.9830999701386367 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142859, + "c3": 2.3809523809523805, + "c4": 1.9047619047619058, + "c5": 1.4285714285714275, + "c6": 0.9523809523809529, + "c7": 0.4761904761904785 }, "rgb": [222, 0, 59] }, @@ -390885,23 +390885,23 @@ "year": 1807, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 21.8835943630371, - "c2": -15.524139123291977, - "c3": -1.2333783601740897, - "c4": 11.090877497131874, - "c5": -1.966195514297688, - "c6": 19.307133454228396, - "c7": 22.023968687288065 + "points": { + "c1": -22.652401058783443, + "c2": -17.611809320334146, + "c3": 9.553332391447977, + "c4": 20.872632869480928, + "c5": 0.6291782102755583, + "c6": 17.411715072860755, + "c7": 2.4477345001247492 }, - "vertexSeeds": { - "c1": 2.7502946645739477, - "c2": 2.764083630501878, - "c3": 2.7593526695144583, - "c4": 2.7547839357858233, - "c5": 2.763917516357024, - "c6": 2.7583353068283, - "c7": 2.7418881836065183 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919743, + "c3": 3.328710124826601, + "c4": 2.662968099861294, + "c5": 1.9972260748959871, + "c6": 1.3314840499306801, + "c7": 0.665742024965307 }, "rgb": [86, 146, 138] }, @@ -390912,23 +390912,23 @@ "year": 1807, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 37.30103314650026, - "c2": 9.56696021916158, - "c3": -47.092493157507214, - "c4": 30.289043849003093, - "c5": 47.40782699903207, - "c6": 12.52964412511205, - "c7": -43.01804112202558 + "points": { + "c1": 8.854961830025545, + "c2": -9.11852513248676, + "c3": -6.989111425485824, + "c4": 8.334339974772718, + "c5": 41.06288680144654, + "c6": 33.430008077793204, + "c7": 18.340826750553603 }, - "vertexSeeds": { - "c1": 0.9761089163490414, - "c2": 0.9672879852214441, - "c3": 1.022182568775622, - "c4": 1.0501088243063765, - "c5": 1.011643537483796, - "c6": 1.0060635101346385, - "c7": 1.0239281678091792 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.5533980582524272, + "c3": 1.2944983818770226, + "c4": 1.035598705501618, + "c5": 0.7766990291262136, + "c6": 0.517799352750809, + "c7": 0.2588996763754045 }, "rgb": [238, 201, 159] }, @@ -390939,23 +390939,23 @@ "year": 1807, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 8.459562984787517, - "c2": 15.368300357725005, - "c3": -11.22830468271755, - "c4": 11.900717244871338, - "c5": -26.08789798543259, - "c6": -10.759863962871979, - "c7": -10.285618340826648 + "points": { + "c1": 6.687931198331874, + "c2": 6.0582092588767935, + "c3": 7.36979525432875, + "c4": -15.720219237066374, + "c5": 28.828590662127944, + "c6": -14.700351196196554, + "c7": -21.971823582200834 }, - "vertexSeeds": { - "c1": 7.499370462854985, - "c2": 7.200406733798909, - "c3": 6.891338933507014, - "c4": 6.906235478074938, - "c5": 7.022652265759755, - "c6": 7.405799331716043, - "c7": 7.452878668714257 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [86, 146, 138] }, @@ -390966,23 +390966,23 @@ "year": 1807, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 28.52397419349532, - "c2": -1.655883712818671, - "c3": 1.9763645019612213, - "c4": -8.545880843086668, - "c5": -18.668843413470213, - "c6": 25.11759604329071, - "c7": 7.344585305694153 + "points": { + "c1": -34.01331845803853, + "c2": 25.700083269859114, + "c3": 25.031372829778803, + "c4": -10.275130294271886, + "c5": 20.076303466202205, + "c6": -34.04628014721496, + "c7": -31.52128256968158 }, - "vertexSeeds": { - "c1": 5.687483657432306, - "c2": 5.507507706491718, - "c3": 6.224380952657208, - "c4": 5.563819289802471, - "c5": 5.135162379606897, - "c6": 5.323483138056988, - "c7": 5.856823531588683 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.51456310679612, + "c3": 7.9288025889967635, + "c4": 6.343042071197414, + "c5": 4.757281553398056, + "c6": 3.171521035598707, + "c7": 1.585760517799357 }, "rgb": [77, 76, 132] }, @@ -390993,23 +390993,23 @@ "year": 1807, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -24.72966624947546, - "c2": -14.811052867413002, - "c3": -1.7985888897596922, - "c4": -20.45245525135292, - "c5": -8.882760387799156, - "c6": -9.283542876851737, - "c7": -0.23524129270502314 + "points": { + "c1": 12.056638625857005, + "c2": -9.232940698373206, + "c3": 22.220779456123722, + "c4": -1.189331557564632, + "c5": -5.5579694213723805, + "c6": 16.812591766390334, + "c7": 2.233702463119279 }, - "vertexSeeds": { - "c1": 1.4633396418690239, - "c2": 1.5198586614363285, - "c3": 1.5047454839283863, - "c4": 1.4509965563884066, - "c5": 1.5589581365120484, - "c6": 1.5415245636149908, - "c7": 1.498787217050038 + "offsets": { + "c1": 2.6537216828478964, + "c2": 2.274618585298197, + "c3": 1.8955154877484974, + "c4": 1.5164123901987978, + "c5": 1.1373092926490984, + "c6": 0.7582061950993989, + "c7": 0.37910309754969945 }, "rgb": [77, 76, 132] }, @@ -391020,23 +391020,23 @@ "year": 1808, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": -39.20891672762211, - "c2": -30.718898584132283, - "c3": -39.56866273140366, - "c4": -17.898793849390287, - "c5": -25.914426212501784, - "c6": 43.38952002727682, - "c7": 17.055926951423103 + "points": { + "c1": 37.483619279017816, + "c2": -47.750028296782986, + "c3": -45.86826068476103, + "c4": -37.75676954831031, + "c5": 17.880227792547856, + "c6": -19.137459539564937, + "c7": -13.89025917030078 }, - "vertexSeeds": { - "c1": 1.7113929890253057, - "c2": 1.8986327040843305, - "c3": 1.9308767156724744, - "c4": 1.8941767500527258, - "c5": 1.7976333837381295, - "c6": 1.9378181539179429, - "c7": 1.7616165146438387 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624134, + "c3": 2.3347202958853446, + "c4": 1.8677762367082755, + "c5": 1.4008321775312067, + "c6": 0.9338881183541378, + "c7": 0.4669440591770689 }, "rgb": [222, 0, 59] }, @@ -391047,23 +391047,23 @@ "year": 1808, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": 11.004791947173473, - "c2": 10.026413631449557, - "c3": 40.55847622650536, - "c4": -22.650907460745035, - "c5": 4.05450106586958, - "c6": 6.506286613746482, - "c7": 31.360554383665615 + "points": { + "c1": 34.61140387505043, + "c2": 27.02808407343025, + "c3": -13.567601125543831, + "c4": -10.940410169955271, + "c5": -7.288098797533081, + "c6": -38.90580536610365, + "c7": 10.307422616895842 }, - "vertexSeeds": { - "c1": 13.270556035149044, - "c2": 13.167263790911539, - "c3": 13.184210715999816, - "c4": 13.282253860440605, - "c5": 13.339650750115553, - "c6": 13.110292599265215, - "c7": 13.27183833106045 + "offsets": { + "c1": 22.297734627831716, + "c2": 19.11234396671295, + "c3": 15.926953305594012, + "c4": 12.741562644475243, + "c5": 9.556171983356474, + "c6": 6.370781322237706, + "c7": 3.185390661118768 }, "rgb": [222, 0, 59] }, @@ -391074,23 +391074,23 @@ "year": 1807, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -13.103711146767731, - "c2": 21.237035645141926, - "c3": 14.971489689353827, - "c4": 4.9751571132115195, - "c5": -3.637182030205789, - "c6": 8.785238043478852, - "c7": 19.36674421561734 + "points": { + "c1": 21.08587780820918, + "c2": -0.26711907982614846, + "c3": -7.69192650996272, + "c4": -11.716418395477497, + "c5": -11.989414139623388, + "c6": 15.89599379279596, + "c7": -9.342847039735137 }, - "vertexSeeds": { - "c1": 1.9192026353728961, - "c2": 2.6794815860571264, - "c3": 1.929923124933109, - "c4": 2.5314332281222707, - "c5": 2.2399711879649407, - "c6": 2.822246311835504, - "c7": 2.5861062034736255 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.07766990291262, + "c3": 3.398058252427185, + "c4": 2.7184466019417477, + "c5": 2.03883495145631, + "c6": 1.3592233009708738, + "c7": 0.6796116504854375 }, "rgb": [222, 0, 59] }, @@ -391101,23 +391101,23 @@ "year": 1808, "resistanceReported": false, "duration": 37756800, - "curveSeeds": { - "c1": 12.809693293080926, - "c2": -35.637732874456056, - "c3": -44.79087967877345, - "c4": -43.9821631498622, - "c5": -40.89191774719379, - "c6": 46.93713188125807, - "c7": 44.78979813003694 + "points": { + "c1": 12.663934210352622, + "c2": -25.17529594571964, + "c3": -3.907845232848075, + "c4": -41.98385753831891, + "c5": 33.49318016802235, + "c6": 27.930726541200528, + "c7": 33.502580813219794 }, - "vertexSeeds": { - "c1": 3.187804945832479, - "c2": 3.1641407373644452, - "c3": 3.1175608888081117, - "c4": 3.1277566823808396, - "c5": 3.1739041892334523, - "c6": 3.2134143022026045, - "c7": 3.115787581867526 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757285, + "c3": 3.883495145631074, + "c4": 3.1067961165048628, + "c5": 2.3300970873786326, + "c6": 1.5533980582524218, + "c7": 0.7766990291262109 }, "rgb": [222, 0, 59] }, @@ -391128,23 +391128,23 @@ "year": 1807, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -10.32556170146485, - "c2": -27.526676390762205, - "c3": -5.91092525070956, - "c4": -14.932739677233117, - "c5": -29.944179186198735, - "c6": 12.589007362839808, - "c7": 6.1203334823580064 + "points": { + "c1": 18.479326171848506, + "c2": 27.717203311021677, + "c3": -1.7704631364884449, + "c4": 4.41574214582203, + "c5": 31.536259986121763, + "c6": 23.732310049801754, + "c7": -24.7060606198659 }, - "vertexSeeds": { - "c1": 1.2925094719438157, - "c2": 1.3047320424484152, - "c3": 1.246237367631016, - "c4": 1.3088564297145833, - "c5": 1.3284997768519546, - "c6": 1.3564035978892925, - "c7": 1.2419676544795766 + "offsets": { + "c1": 2.2977346278317152, + "c2": 1.9694868238557566, + "c3": 1.6412390198797977, + "c4": 1.312991215903839, + "c5": 0.9847434119278763, + "c6": 0.6564956079519174, + "c7": 0.3282478039759587 }, "rgb": [77, 76, 132] }, @@ -391155,23 +391155,23 @@ "year": 1807, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": -8.230842006438927, - "c2": 20.232603390469095, - "c3": -2.2149904715665087, - "c4": -39.71920143684585, - "c5": 7.222197248274753, - "c6": -20.975241319919704, - "c7": 27.098971641132735 + "points": { + "c1": -19.434514308913172, + "c2": -12.56326946670599, + "c3": -44.78197057311394, + "c4": 38.237876758067685, + "c5": -10.89969672306649, + "c6": 40.726017105518, + "c7": -25.600814770904094 }, - "vertexSeeds": { - "c1": 2.580434936469235, - "c2": 2.651765699016342, - "c3": 2.5010034405125476, - "c4": 2.8935632174975554, - "c5": 2.6621975601999583, - "c6": 2.815746243846155, - "c7": 2.7019382086455788 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282934, + "c4": 2.8294036061026344, + "c5": 2.122052704576975, + "c6": 1.4147018030513157, + "c7": 0.7073509015256565 }, "rgb": [222, 0, 59] }, @@ -391182,23 +391182,23 @@ "year": 1807, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -8.36852307742203, - "c2": 7.736705575215705, - "c3": -22.888745208139465, - "c4": -12.26427165413466, - "c5": 15.965563320237305, - "c6": -16.620310116871185, - "c7": -6.054903428873576 + "points": { + "c1": 1.1385329879635897, + "c2": 18.496442893571892, + "c3": 13.44478164083473, + "c4": -6.471462194462553, + "c5": 26.836704573392435, + "c6": -13.284005022462797, + "c7": 6.660658930346056 }, - "vertexSeeds": { - "c1": 11.11161200504117, - "c2": 11.122852887280011, - "c3": 10.89725336444286, - "c4": 10.651731940527986, - "c5": 9.267408522818812, - "c6": 9.011487087989865, - "c7": 8.793068609502685 + "offsets": { + "c1": 18.932038834951456, + "c2": 16.227461858529818, + "c3": 13.522884882108183, + "c4": 10.818307905686545, + "c5": 8.113730929264909, + "c6": 5.409153952843273, + "c7": 2.7045769764216363 }, "rgb": [238, 201, 159] }, @@ -391209,23 +391209,23 @@ "year": 1807, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 2.5007024680777263, - "c2": 20.347580931347906, - "c3": -6.694420359526173, - "c4": 13.61556624732711, - "c5": 21.976461327394624, - "c6": 5.9033303415741045, - "c7": 15.64251957112051 + "points": { + "c1": 4.325404086351384, + "c2": 19.413287944493497, + "c3": -8.486952675694884, + "c4": -28.50070596178351, + "c5": 29.495637573690757, + "c6": -14.29313263941426, + "c7": -15.617978492502921 }, - "vertexSeeds": { - "c1": 1.6209895543738246, - "c2": 1.465387607967463, - "c3": 1.5097499567050863, - "c4": 1.448859396944323, - "c5": 1.515585014084218, - "c6": 1.571841506305456, - "c7": 1.5331613094924732 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.385575589459085, + "c3": 1.9879796578825712, + "c4": 1.5903837263060578, + "c5": 1.1927877947295442, + "c6": 0.7951918631530271, + "c7": 0.3975959315765136 }, "rgb": [77, 76, 132] }, @@ -391236,23 +391236,23 @@ "year": 1807, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -5.006281546757698, - "c2": -12.936103651248931, - "c3": -26.973428799649838, - "c4": -14.847768993533808, - "c5": -3.6889498513878465, - "c6": 32.87169372089453, - "c7": 9.56952332411069 + "points": { + "c1": 10.56048502198987, + "c2": -35.64991173723858, + "c3": 3.8986196256484433, + "c4": 33.23168316818716, + "c5": -28.239061057528268, + "c6": 35.069590889441386, + "c7": -24.237945905396188 }, - "vertexSeeds": { - "c1": 8.131680104102907, - "c2": 7.647215427237413, - "c3": 8.002811358879597, - "c4": 7.581931116119487, - "c5": 8.043041141251615, - "c6": 7.383512881736271, - "c7": 7.394942526328786 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013873, + "c3": 9.77808599167823, + "c4": 7.822468793342588, + "c5": 5.866851595006928, + "c6": 3.911234396671285, + "c7": 1.9556171983356425 }, "rgb": [77, 76, 132] }, @@ -391263,23 +391263,23 @@ "year": 1807, "resistanceReported": false, "duration": 2505600, - "curveSeeds": { - "c1": -7.254727031792729, - "c2": 4.554310792109709, - "c3": 2.8266436768292706, - "c4": 5.487871354852993, - "c5": 8.910175437937005, - "c6": 3.0378915576005934, - "c7": 2.875714429496936 + "points": { + "c1": -10.538460822239774, + "c2": -4.132290300003811, + "c3": -1.3988544795004128, + "c4": 11.47507502261408, + "c5": 2.6712160192392336, + "c6": 0.20348762669035736, + "c7": -4.208278891110888 }, - "vertexSeeds": { - "c1": 2.7022394245837695, - "c2": 2.833354028599685, - "c3": 2.821603489631292, - "c4": 2.891956155172255, - "c5": 2.5758802767502726, - "c6": 2.9226673399671634, - "c7": 2.6207051958038794 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282934, + "c4": 2.8294036061026344, + "c5": 2.122052704576975, + "c6": 1.4147018030513157, + "c7": 0.7073509015256565 }, "rgb": [77, 76, 132] }, @@ -391290,23 +391290,23 @@ "year": 1807, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -29.90092421768999, - "c2": -13.522221591098194, - "c3": -13.530411075415753, - "c4": 3.956568694843657, - "c5": 13.532759979283387, - "c6": 27.810582613147456, - "c7": -27.634704966274278 + "points": { + "c1": -14.8692097696869, + "c2": -13.634437899873454, + "c3": -24.26987769619699, + "c4": -29.87081906826525, + "c5": -10.729359889568485, + "c6": -27.011239374662157, + "c7": -27.125620015192865 }, - "vertexSeeds": { - "c1": 6.809398192701605, - "c2": 8.882683454419443, - "c3": 7.748403301976596, - "c4": 8.139895511656187, - "c5": 8.530695113554048, - "c6": 7.0953866225854325, - "c7": 8.663806081075792 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703191, + "c3": 10.74895977808599, + "c4": 8.599167822468797, + "c5": 6.449375866851593, + "c6": 4.299583911234398, + "c7": 2.1497919556172023 }, "rgb": [86, 146, 138] }, @@ -391317,23 +391317,23 @@ "year": 1807, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -15.227460658536508, - "c2": 17.982142213548926, - "c3": 26.335087029814495, - "c4": -24.960574758875083, - "c5": -2.135190881484803, - "c6": -5.1599697741652655, - "c7": 0.7873383916924723 + "points": { + "c1": 15.037252727998222, + "c2": -8.812842514629825, + "c3": -0.06628201398340394, + "c4": -9.888669363258579, + "c5": 22.853005870864834, + "c6": -24.75638825090696, + "c7": 9.331627948744611 }, - "vertexSeeds": { - "c1": 9.240601908906891, - "c2": 9.341494485640803, - "c3": 9.224711742005859, - "c4": 9.230209852412923, - "c5": 9.272559616694219, - "c6": 9.428061322989024, - "c7": 9.662203400341868 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070724, + "c3": 11.534905224225628, + "c4": 9.227924179380494, + "c5": 6.920943134535362, + "c6": 4.6139620896902676, + "c7": 2.3069810448451338 }, "rgb": [58, 15, 49] }, @@ -391344,23 +391344,23 @@ "year": 1807, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -15.817954674556603, - "c2": -22.239304103784313, - "c3": 7.913251818150453, - "c4": 12.495003394495551, - "c5": -2.8830201753793645, - "c6": 29.409734901298886, - "c7": 19.206275591971572 + "points": { + "c1": 19.508516212620222, + "c2": -12.561515569092876, + "c3": 18.630282149984026, + "c4": 23.318126030088273, + "c5": -28.11850030379602, + "c6": 1.206425662726808, + "c7": -0.08759028572951877 }, - "vertexSeeds": { - "c1": 6.145083475868839, - "c2": 5.977804983956191, - "c3": 6.252952217153874, - "c4": 6.104813887511793, - "c5": 5.924784415717166, - "c6": 6.079363423568663, - "c7": 6.401643926177176 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313451, + "c3": 7.651410078594539, + "c4": 6.121128062875629, + "c5": 4.590846047156735, + "c6": 3.0605640314378233, + "c7": 1.5302820157189116 }, "rgb": [58, 15, 49] }, @@ -391371,23 +391371,23 @@ "year": 1807, "resistanceReported": false, "duration": 29894400, - "curveSeeds": { - "c1": 31.16015932139441, - "c2": 8.500823426936421, - "c3": -18.708845186189382, - "c4": 1.8725504711179894, - "c5": 21.891676034589416, - "c6": 38.13181012630451, - "c7": 10.585855192741 + "points": { + "c1": 18.201165761755696, + "c2": -6.664458990754341, + "c3": 3.005708324157496, + "c4": 20.149495394704637, + "c5": 12.707519032820727, + "c6": 41.50929264404444, + "c7": -40.16535669957355 }, - "vertexSeeds": { - "c1": 2.1572783357246887, - "c2": 2.1007971760293973, - "c3": 2.0632957699666017, - "c4": 1.9262479951603777, - "c5": 2.0518498384400425, - "c6": 1.9257185957348912, - "c7": 1.9704229367047663 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852995, + "c3": 2.635228848821081, + "c4": 2.1081830790568663, + "c5": 1.581137309292648, + "c6": 1.0540915395284332, + "c7": 0.5270457697642185 }, "rgb": [238, 201, 159] }, @@ -391398,23 +391398,23 @@ "year": 1807, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -23.942871996400225, - "c2": -34.192582119457825, - "c3": 19.431940276624623, - "c4": -25.382397155676184, - "c5": -26.561003203862136, - "c6": 41.57764608053655, - "c7": 34.101232932024004 + "points": { + "c1": -29.730591794150055, + "c2": 18.282218682495476, + "c3": 20.576660178798534, + "c4": -11.34170631751266, + "c5": 36.80197986890332, + "c6": 27.718191254307328, + "c7": 5.879897183291064 }, - "vertexSeeds": { - "c1": 2.230040524368128, - "c2": 2.0573709632326835, - "c3": 2.081147912306288, - "c4": 2.2183521234751367, - "c5": 2.058551900835344, - "c6": 2.27758977324384, - "c7": 2.093897058437944 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266295, + "c3": 2.773925104022192, + "c4": 2.219140083217754, + "c5": 1.6643550624133163, + "c6": 1.1095700416088783, + "c7": 0.5547850208044406 }, "rgb": [238, 201, 159] }, @@ -391425,23 +391425,23 @@ "year": 1808, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 20.265844179670886, - "c2": -52.155201429006645, - "c3": -5.985098589920781, - "c4": 1.3529203811350712, - "c5": -8.464704806974822, - "c6": 48.356915568017676, - "c7": 25.286670402917572 + "points": { + "c1": 13.600192379619394, + "c2": -2.088720063549033, + "c3": -26.370964713318703, + "c4": 48.338847040984156, + "c5": 49.322620743083554, + "c6": 53.30518131197241, + "c7": -8.003598214920252 }, - "vertexSeeds": { - "c1": 3.8529184306305666, - "c2": 4.151419279210585, - "c3": 3.563058522750531, - "c4": 3.4607606501764216, - "c5": 3.700524185551019, - "c6": 3.815201674649095, - "c7": 3.3815615591316557 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613036, + "c3": 5.524734165510866, + "c4": 4.419787332408692, + "c5": 3.314840499306518, + "c6": 2.209893666204348, + "c7": 1.104946833102174 }, "rgb": [86, 146, 138] }, @@ -391452,23 +391452,23 @@ "year": 1807, "resistanceReported": false, "duration": 1814400, - "curveSeeds": { - "c1": 2.4837391174249515, - "c2": -7.876873400401194, - "c3": -4.073037442160545, - "c4": -2.4423816447098066, - "c5": -1.259513493663576, - "c6": 7.270407896561075, - "c7": -10.332288867680429 + "points": { + "c1": 1.9641112332780786, + "c2": -12.735874587960739, + "c3": 0.8424964207449932, + "c4": -5.57881420540045, + "c5": 0.49436665982813643, + "c6": 8.286090397907614, + "c7": 10.665586003459296 }, - "vertexSeeds": { - "c1": 7.439685660661553, - "c2": 7.453504693294681, - "c3": 7.257339222080501, - "c4": 7.5153865095493915, - "c5": 7.405112140270892, - "c6": 7.356387948353928, - "c7": 7.495800395133215 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -391479,23 +391479,23 @@ "year": 1807, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -21.793462625599656, - "c2": -4.139415053170598, - "c3": -1.5472416438247478, - "c4": 16.688628380400104, - "c5": -10.597203359144768, - "c6": -5.66716672998594, - "c7": 4.56007455860043 + "points": { + "c1": 24.237858976378448, + "c2": 18.079305500622866, + "c3": 27.71367746094824, + "c4": -20.646581883133024, + "c5": -9.613380294086454, + "c6": -16.54008524479768, + "c7": -26.36898745833938 }, - "vertexSeeds": { - "c1": 2.8075876945562523, - "c2": 2.7325424931415574, - "c3": 2.7708715486526474, - "c4": 2.6660046695631894, - "c5": 2.6230002606512155, - "c6": 2.674134916845019, - "c7": 2.62718072173237 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993065, + "c3": 3.444290337494221, + "c4": 2.7554322699953766, + "c5": 2.0665742024965326, + "c6": 1.3777161349976883, + "c7": 0.6888580674988442 }, "rgb": [238, 201, 159] }, @@ -391506,23 +391506,23 @@ "year": 1807, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -3.210859962271776, - "c2": 35.39609897209334, - "c3": -19.216978000389236, - "c4": -33.889926144481045, - "c5": -22.182614875376764, - "c6": -8.485053427095234, - "c7": -36.29189685428188 + "points": { + "c1": -25.675783023289263, + "c2": -35.97505821210328, + "c3": 9.219174769241384, + "c4": 34.45233678049469, + "c5": -34.15239904228224, + "c6": -12.05554220542479, + "c7": 4.4571245348263275 }, - "vertexSeeds": { - "c1": 4.377545025056629, - "c2": 3.9948025713841964, - "c3": 4.568857089458584, - "c4": 4.38088968185876, - "c5": 3.9630587429250768, - "c6": 4.030641665664014, - "c7": 4.494889731736169 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613037, + "c3": 5.524734165510864, + "c4": 4.419787332408691, + "c5": 3.3148404993065186, + "c6": 2.2098936662043456, + "c7": 1.1049468331021728 }, "rgb": [238, 201, 159] }, @@ -391533,23 +391533,23 @@ "year": 1807, "resistanceReported": false, "duration": 31363200, - "curveSeeds": { - "c1": 7.185638168314405, - "c2": 8.580003879761321, - "c3": 28.505507954092664, - "c4": -30.608122406562558, - "c5": -42.953046180927636, - "c6": 40.056205366116956, - "c7": 26.42622262268962 + "points": { + "c1": -6.772185286358436, + "c2": 3.154144033865265, + "c3": 40.92701821523539, + "c4": 19.864046416238324, + "c5": 41.21105468311819, + "c6": 35.426677090376586, + "c7": -43.186095397323314 }, - "vertexSeeds": { - "c1": 10.381676168041631, - "c2": 10.787034512413628, - "c3": 11.000394491270772, - "c4": 9.153193125749189, - "c5": 11.315351143329712, - "c6": 10.09144158132046, - "c7": 8.985880839228969 + "offsets": { + "c1": 19.54692556634304, + "c2": 16.754507628294032, + "c3": 13.962089690245037, + "c4": 11.169671752196026, + "c5": 8.377253814147016, + "c6": 5.584835876098013, + "c7": 2.79241793804901 }, "rgb": [86, 146, 138] }, @@ -391560,23 +391560,23 @@ "year": 1807, "resistanceReported": false, "duration": 777600, - "curveSeeds": { - "c1": 2.321159421969476, - "c2": -8.046894394667145, - "c3": 8.694068012292078, - "c4": 1.2401634582582837, - "c5": -7.638451666792668, - "c6": -6.765045166528342, - "c7": 0.4141713526570552 + "points": { + "c1": -7.332726949645901, + "c2": -4.597433027847298, + "c3": 4.148079720263915, + "c4": 3.5242670137302916, + "c5": 8.7039307475968, + "c6": 4.876238229062441, + "c7": -2.3225153532623626 }, - "vertexSeeds": { - "c1": 7.3135371595855405, - "c2": 7.455447949463698, - "c3": 7.399912321433045, - "c4": 7.254681630492313, - "c5": 6.960061113644243, - "c6": 6.897612625834365, - "c7": 7.057170174747428 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [58, 15, 49] }, @@ -391587,23 +391587,23 @@ "year": 1807, "resistanceReported": false, "duration": 691200, - "curveSeeds": { - "c1": 8.121024265548252, - "c2": -9.87985327805876, - "c3": -1.558619196040583, - "c4": 0.31434414279678613, - "c5": -7.159324386037108, - "c6": -5.092106135326656, - "c7": -5.044952695325384 + "points": { + "c1": 5.643548082286143, + "c2": -11.655610073900213, + "c3": -11.332910387186164, + "c4": -11.402509574185006, + "c5": -9.261221182891338, + "c6": -0.04679842903026099, + "c7": 10.787849942052388 }, - "vertexSeeds": { - "c1": 7.447280893427515, - "c2": 7.141299867952596, - "c3": 7.413179843808759, - "c4": 7.519668780970696, - "c5": 7.310165304809297, - "c6": 7.165179519439374, - "c7": 7.010176769980676 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -391614,23 +391614,23 @@ "year": 1807, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -13.61635433964003, - "c2": -3.730651169739403, - "c3": -17.289527389997318, - "c4": -15.138130563149888, - "c5": 3.8742291783991405, - "c6": 27.813925247906866, - "c7": 22.939322141365054 + "points": { + "c1": 11.650299908884222, + "c2": -17.48663887634929, + "c3": -13.647782580527203, + "c4": -21.472521055159312, + "c5": -19.888462391423694, + "c6": -15.873253086171626, + "c7": 20.9914917981651 }, - "vertexSeeds": { - "c1": 2.5511661445436524, - "c2": 2.3962099664284797, - "c3": 2.3720168954807845, - "c4": 2.352342613119836, - "c5": 2.3510966397354656, - "c6": 2.5443940834848924, - "c7": 2.5831808319040794 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.7725381414701826, + "c3": 3.14378178455848, + "c4": 2.5150254276467856, + "c5": 1.8862690707350913, + "c6": 1.2575127138233928, + "c7": 0.6287563569116985 }, "rgb": [86, 146, 138] }, @@ -391641,23 +391641,23 @@ "year": 1808, "resistanceReported": false, "duration": 45273600, - "curveSeeds": { - "c1": 31.748790663570176, - "c2": 59.512344354478174, - "c3": 15.44140866153019, - "c4": 54.785958081562015, - "c5": -58.139671835083895, - "c6": 27.16716746167009, - "c7": 29.958388269760505 + "points": { + "c1": 24.995491906136607, + "c2": -30.20150410832391, + "c3": 43.81259097348757, + "c4": -13.218604754037742, + "c5": -19.732114994829274, + "c6": 32.75070033227877, + "c7": -19.257997104069005 }, - "vertexSeeds": { - "c1": 5.730588394524642, - "c2": 5.749095746953144, - "c3": 5.48530715358716, - "c4": 5.753207311056445, - "c5": 5.470934884735619, - "c6": 5.4782566209362775, - "c7": 5.812325566242829 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560435, + "c4": 5.6033287101248295, + "c5": 4.202496532593616, + "c6": 2.8016643550624267, + "c7": 1.4008321775312134 }, "rgb": [77, 76, 132] }, @@ -391668,23 +391668,23 @@ "year": 1807, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -19.1824352327805, - "c2": 6.468548522141763, - "c3": 20.906894130933775, - "c4": -21.60625623904751, - "c5": 27.744774726948908, - "c6": -25.283950478069283, - "c7": 25.339857185340254 + "points": { + "c1": 10.803548250626609, + "c2": 13.126727012623807, + "c3": -9.856148474634828, + "c4": -22.65040449496241, + "c5": 20.806816416901828, + "c6": 26.32175430144955, + "c7": 18.57657137709946 }, - "vertexSeeds": { - "c1": 5.103737460379989, - "c2": 5.196770164124371, - "c3": 4.9928698298360175, - "c4": 4.771669135228842, - "c5": 5.105639273191255, - "c6": 5.064944181914088, - "c7": 4.7927712673639995 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819705, + "c3": 6.2182154415164135, + "c4": 4.97457235321314, + "c5": 3.7309292649098476, + "c6": 2.487286176606565, + "c7": 1.2436430883032825 }, "rgb": [77, 76, 132] }, @@ -391695,23 +391695,23 @@ "year": 1807, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": 17.98724826799151, - "c2": -14.996586915387859, - "c3": 13.444002225170784, - "c4": 17.948943504484014, - "c5": 0.9028328632156395, - "c6": -0.763723965667154, - "c7": 6.001960682085304 + "points": { + "c1": 6.806386355954494, + "c2": 17.160284451996297, + "c3": -2.7879677298006555, + "c4": 19.104015808321826, + "c5": -21.954108975266134, + "c6": 17.844414044097896, + "c7": -7.693732424489866 }, - "vertexSeeds": { - "c1": 5.818112016926808, - "c2": 5.529152865292696, - "c3": 5.404952256306707, - "c4": 5.88285212416722, - "c5": 5.422743463582595, - "c6": 5.743450635756958, - "c7": 5.837834485174094 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -391722,23 +391722,23 @@ "year": 1807, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -11.868782486648254, - "c2": 19.65401746627085, - "c3": -21.590487279840474, - "c4": -0.5111167089085136, - "c5": -10.11090764834833, - "c6": -21.093603539934513, - "c7": 6.99845905552899 + "points": { + "c1": 10.533454818608995, + "c2": -25.718654031116134, + "c3": 18.974110828301974, + "c4": -17.60524301227492, + "c5": -11.163349162215173, + "c6": 8.62119738047064, + "c7": -22.047999757466883 }, - "vertexSeeds": { - "c1": 3.3993168535763987, - "c2": 3.4120238354134167, - "c3": 3.391616319973821, - "c4": 3.346913857065213, - "c5": 3.3522568463446802, - "c6": 3.5018390084010447, - "c7": 3.3037983475009116 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360612, + "c3": 4.230235783633845, + "c4": 3.3841886269070787, + "c5": 2.5381414701803005, + "c6": 1.6920943134535338, + "c7": 0.8460471567267669 }, "rgb": [238, 201, 159] }, @@ -391749,23 +391749,23 @@ "year": 1807, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": -0.5258272571620708, - "c2": 0.7383606242540495, - "c3": 5.82426135683437, - "c4": 36.775226470381824, - "c5": -36.504097704715015, - "c6": -29.825313102493972, - "c7": 28.011786988962314 + "points": { + "c1": 8.533274424653918, + "c2": 38.814925627381314, + "c3": 11.505709623892713, + "c4": 21.33375229741953, + "c5": 34.537988526846945, + "c6": -29.059426687689243, + "c7": -6.5106922485345535 }, - "vertexSeeds": { - "c1": 3.2850969643574928, - "c2": 3.457142259035945, - "c3": 3.3400323425459497, - "c4": 3.42527447792943, - "c5": 3.211004423457871, - "c6": 3.477414637184631, - "c7": 3.190321879616169 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320384, + "c3": 4.207119741100325, + "c4": 3.3656957928802558, + "c5": 2.524271844660197, + "c6": 1.6828478964401279, + "c7": 0.8414239482200594 }, "rgb": [58, 15, 49] }, @@ -391776,23 +391776,23 @@ "year": 1807, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -23.17304113475859, - "c2": 0.3063211381655009, - "c3": 13.837435547502913, - "c4": -9.187677144108502, - "c5": -18.365584710977647, - "c6": -9.957045449244495, - "c7": -17.57762514590115 + "points": { + "c1": -21.99997120578057, + "c2": -20.240472782699683, + "c3": 15.932191665659445, + "c4": -1.957939292001651, + "c5": -12.84566209351855, + "c6": 2.5737741743457825, + "c7": 21.40069740470853 }, - "vertexSeeds": { - "c1": 6.166632136021071, - "c2": 5.872666962677762, - "c3": 5.839296839529379, - "c4": 5.821189947645294, - "c5": 5.87413877568713, - "c6": 6.19740136386943, - "c7": 5.957752099295518 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233004, + "c3": 7.6051779935275166, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.0420711974109955, + "c7": 1.5210355987055069 }, "rgb": [77, 76, 132] }, @@ -391803,23 +391803,23 @@ "year": 1807, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -33.995566488473926, - "c2": -32.18365114803304, - "c3": 30.017759188263923, - "c4": -3.380480861684518, - "c5": 33.938678500395596, - "c6": -26.546009885088374, - "c7": -4.211753223450007 + "points": { + "c1": 26.92284765196746, + "c2": -0.3575969970555022, + "c3": -23.255757183824258, + "c4": 33.807302532507336, + "c5": 36.603159826047715, + "c6": -23.384649006867704, + "c7": -30.958528176739883 }, - "vertexSeeds": { - "c1": 6.114924288347136, - "c2": 5.8993437246275375, - "c3": 6.073794121013169, - "c4": 5.674366506395747, - "c5": 6.053077242165438, - "c6": 5.874949728127624, - "c7": 6.067968594440126 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710128, + "c3": 7.304669440591775, + "c4": 5.843735552473406, + "c5": 4.382801664355055, + "c6": 2.921867776236703, + "c7": 1.4609338881183516 }, "rgb": [222, 0, 59] }, @@ -391830,23 +391830,23 @@ "year": 1807, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -24.380499778819107, - "c2": 0.3672836690491934, - "c3": -25.74654923094102, - "c4": -18.437895140517917, - "c5": -2.380736093104993, - "c6": 6.143591894334442, - "c7": 4.833521213429968 + "points": { + "c1": -37.53785808987465, + "c2": 16.088371831477353, + "c3": 23.846997731680915, + "c4": 5.3580928105825265, + "c5": 22.737786225265424, + "c6": -37.58059951525799, + "c7": -23.093939780774527 }, - "vertexSeeds": { - "c1": 2.9397165658856346, - "c2": 3.773511791442758, - "c3": 3.3354085894797767, - "c4": 3.0016976359562784, - "c5": 3.618091110769325, - "c6": 2.9173904285904846, - "c7": 3.7502561083043036 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004159, + "c3": 4.600092464170135, + "c4": 3.6800739713361064, + "c5": 2.7600554785020814, + "c6": 1.8400369856680532, + "c7": 0.9200184928340284 }, "rgb": [238, 201, 159] }, @@ -391857,23 +391857,23 @@ "year": 1808, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -41.497385562274104, - "c2": 6.2088220998292485, - "c3": 2.9179936039316416, - "c4": -15.579583108815193, - "c5": -39.18011220135997, - "c6": -39.030918175174094, - "c7": 26.312309088876162 + "points": { + "c1": 7.562986805619232, + "c2": -43.88648271677921, + "c3": -7.921893673348023, + "c4": -33.16026364584391, + "c5": 41.278567562553945, + "c6": -15.264666861383063, + "c7": -6.53693097756878 }, - "vertexSeeds": { - "c1": 2.123092201956465, - "c2": 2.130754864598082, - "c3": 1.9619030886536066, - "c4": 1.9743853036893535, - "c5": 1.9568074279435839, - "c6": 1.8974703118785508, - "c7": 2.098266889801936 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852977, + "c3": 2.6352288488210815, + "c4": 2.108183079056865, + "c5": 1.5811373092926488, + "c6": 1.0540915395284325, + "c7": 0.5270457697642162 }, "rgb": [222, 0, 59] }, @@ -391884,23 +391884,23 @@ "year": 1807, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -0.11916646904533579, - "c2": 0.3796532613014243, - "c3": 21.346056433231947, - "c4": -18.79436288168963, - "c5": -0.8860324788936147, - "c6": -8.650491862935315, - "c7": -11.368805548882904 + "points": { + "c1": 8.601725832101565, + "c2": -8.85517764201802, + "c3": -11.37025134930451, + "c4": -21.438192911008343, + "c5": -4.238108143673301, + "c6": 20.399329872383987, + "c7": -22.680561369239673 }, - "vertexSeeds": { - "c1": 8.482117710906602, - "c2": 8.123715865250297, - "c3": 7.214742950331806, - "c4": 7.59705009089075, - "c5": 7.680172000560205, - "c6": 8.741312034089555, - "c7": 7.18521446086476 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024968, + "c3": 10.93388811835414, + "c4": 8.747110494683314, + "c5": 6.560332871012488, + "c6": 4.3735552473416615, + "c7": 2.1867776236708347 }, "rgb": [58, 15, 49] }, @@ -391911,23 +391911,23 @@ "year": 1807, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -2.1720618241712906, - "c2": 26.009746220208342, - "c3": -26.77349959171162, - "c4": 17.438505634558062, - "c5": -7.182406266354249, - "c6": 22.95674937522503, - "c7": -2.432699430568846 + "points": { + "c1": -6.194363588297133, + "c2": 26.068742968589838, + "c3": -28.350966048501725, + "c4": -20.574686359651025, + "c5": 25.210406179325837, + "c6": 3.695127614167127, + "c7": 11.308546144691867 }, - "vertexSeeds": { - "c1": 6.586294364482671, - "c2": 6.364505844731247, - "c3": 6.587515278383407, - "c4": 6.172761603593395, - "c5": 6.5721200252758, - "c6": 6.755072989372932, - "c7": 6.597615083573444 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [58, 15, 49] }, @@ -391938,23 +391938,23 @@ "year": 1807, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": -20.223147043030327, - "c2": 7.452079657585195, - "c3": 6.695091823745255, - "c4": 17.94148471178123, - "c5": 1.6656939698945372, - "c6": 10.294102484964228, - "c7": 7.164073114237031 + "points": { + "c1": 0.34850254386719826, + "c2": -11.985088352270584, + "c3": 5.7762844366727, + "c4": -4.116692850340087, + "c5": 1.8089948780249614, + "c6": 12.257448803696384, + "c7": 5.053092669038541 }, - "vertexSeeds": { - "c1": 3.1077547708456397, - "c2": 3.5612909156164347, - "c3": 3.362276068979967, - "c4": 2.5194983565464604, - "c5": 2.593913281080904, - "c6": 3.130813788465823, - "c7": 3.282550897892235 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762829, + "c3": 4.461396208969023, + "c4": 3.5691169671752174, + "c5": 2.6768377253814144, + "c6": 1.7845584835876087, + "c7": 0.892279241793803 }, "rgb": [77, 76, 132] }, @@ -391965,23 +391965,23 @@ "year": 1808, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": 30.73779094058009, - "c2": -11.55396251685056, - "c3": 52.3846093492922, - "c4": -50.70878756934172, - "c5": 28.129693025092514, - "c6": 36.22275305808841, - "c7": 1.1258745420712515 + "points": { + "c1": 48.41383329452314, + "c2": 19.822491550108232, + "c3": 53.37414279855367, + "c4": -6.640207424690139, + "c5": -26.777618032345515, + "c6": 38.702071041480885, + "c7": 24.430963361136513 }, - "vertexSeeds": { - "c1": 9.852463422888079, - "c2": 9.53148858682036, - "c3": 9.324666780849743, - "c4": 9.12588165207345, - "c5": 9.463244266808774, - "c6": 8.873880375670083, - "c7": 8.889770993724166 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.56310679611651, + "c3": 12.135922330097086, + "c4": 9.708737864077673, + "c5": 7.281553398058249, + "c6": 4.854368932038836, + "c7": 2.4271844660194244 }, "rgb": [58, 15, 49] }, @@ -391992,23 +391992,23 @@ "year": 1807, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 8.808191620035956, - "c2": 11.195323112332318, - "c3": -6.162434756376388, - "c4": 5.5015590529203635, - "c5": 13.56911134544638, - "c6": -19.610720295612445, - "c7": -17.781704396092774 + "points": { + "c1": 13.29275838533676, + "c2": -14.793331251567855, + "c3": -8.551304183629998, + "c4": 17.932775759449093, + "c5": -13.71527182872718, + "c6": 11.958240567483294, + "c7": -4.9735213315706694 }, - "vertexSeeds": { - "c1": 5.151030646682656, - "c2": 5.107517931114344, - "c3": 4.950088923734159, - "c4": 5.157691703163889, - "c5": 4.872921207768848, - "c6": 5.153291925272908, - "c7": 4.857609516319877 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -392019,23 +392019,23 @@ "year": 1807, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -26.428372468292594, - "c2": -22.858618446287295, - "c3": -28.099771656380163, - "c4": -7.284837986748258, - "c5": 5.773367284278915, - "c6": 7.135465795546796, - "c7": 14.83263016275976 + "points": { + "c1": 15.173819549374333, + "c2": -1.2871595284064377, + "c3": -10.539819359185124, + "c4": -1.10883394987842, + "c5": -7.046927911541719, + "c6": 3.381851248296396, + "c7": 30.66176522682966 }, - "vertexSeeds": { - "c1": 2.2923675363708584, - "c2": 2.2334563852531892, - "c3": 2.20207865926358, - "c4": 2.31885687139156, - "c5": 2.21135889293017, - "c6": 2.2923902664216302, - "c7": 2.2849560116260488 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.356449375866851, + "c3": 2.797041146555708, + "c4": 2.2376329172445653, + "c5": 1.6782246879334226, + "c6": 1.1188164586222855, + "c7": 0.5594082293111371 }, "rgb": [77, 76, 132] }, @@ -392046,23 +392046,23 @@ "year": 1807, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -4.874494119935761, - "c2": 2.891036690769667, - "c3": 9.741554278871249, - "c4": -8.706346884456831, - "c5": -7.7978204335017445, - "c6": -25.03639576262883, - "c7": 24.24944191423576 + "points": { + "c1": -1.281536354377792, + "c2": 12.276716950130997, + "c3": 6.99995179257489, + "c4": -14.283569835130805, + "c5": 2.712982535523871, + "c6": 28.46095760788713, + "c7": -28.325186694146858 }, - "vertexSeeds": { - "c1": 1.866827535745195, - "c2": 1.944458906567515, - "c3": 2.087723754059133, - "c4": 1.8716441342613006, - "c5": 1.878550734762796, - "c6": 2.075104149433041, - "c7": 1.9504178076471796 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.02357836338419, + "c3": 2.5196486361534896, + "c4": 2.015718908922793, + "c5": 1.511789181692093, + "c6": 1.0078594544613966, + "c7": 0.5039297272307005 }, "rgb": [86, 146, 138] }, @@ -392073,23 +392073,23 @@ "year": 1807, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 7.122707983182693, - "c2": -18.80493812180636, - "c3": -28.00414462940817, - "c4": -15.389859853732204, - "c5": 10.03047205326385, - "c6": 15.91134949915223, - "c7": 20.448803446917218 + "points": { + "c1": -29.28422498705891, + "c2": -7.6999963992181115, + "c3": 3.3335222648078897, + "c4": -34.56462541300328, + "c5": -22.799377462035352, + "c6": -2.2489675941316065, + "c7": -27.771901907064134 }, - "vertexSeeds": { - "c1": 4.7602978794642645, - "c2": 4.759775461768104, - "c3": 4.922280295354438, - "c4": 4.71161406866437, - "c5": 4.8739059018548625, - "c6": 5.003334354482495, - "c7": 5.0066014036725734 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819705, + "c3": 6.2182154415164135, + "c4": 4.97457235321314, + "c5": 3.7309292649098476, + "c6": 2.487286176606565, + "c7": 1.2436430883032825 }, "rgb": [86, 146, 138] }, @@ -392100,23 +392100,23 @@ "year": 1807, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -10.002490407594959, - "c2": 19.870590781167973, - "c3": 24.34198037707988, - "c4": -13.963918030927784, - "c5": -24.2295018572044, - "c6": -25.083434110090675, - "c7": 10.907236455383686 + "points": { + "c1": -11.225207408824602, + "c2": 5.30289442588926, + "c3": -19.671490880488385, + "c4": 14.79007279778406, + "c5": -25.996322613433637, + "c6": 24.645544566627766, + "c7": 24.00052911023339 }, - "vertexSeeds": { - "c1": 4.885930324552795, - "c2": 4.971268221845498, - "c3": 5.319083303793507, - "c4": 5.2730528680102005, - "c5": 5.118975078599739, - "c6": 5.116955573476487, - "c7": 5.0269578423599075 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.65603328710125, + "c3": 6.380027739251045, + "c4": 5.10402219140084, + "c5": 3.828016643550634, + "c6": 2.55201109570042, + "c7": 1.2760055478502144 }, "rgb": [86, 146, 138] }, @@ -392127,23 +392127,23 @@ "year": 1807, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -17.45431497651993, - "c2": -3.6048900153472445, - "c3": -22.82853684643454, - "c4": 6.0056522424869065, - "c5": 0.08373907170533812, - "c6": -16.48032322184874, - "c7": 3.7952522035546394 + "points": { + "c1": 23.875753312398597, + "c2": 11.159274417469373, + "c3": 9.590050581788535, + "c4": -3.145529369260167, + "c5": -20.450788168259564, + "c6": -14.522322777397955, + "c7": -14.66695840886226 }, - "vertexSeeds": { - "c1": 2.431719689554258, - "c2": 2.376531918249513, - "c3": 2.405857634254194, - "c4": 2.372570074232308, - "c5": 2.5526920931503025, - "c6": 2.6018664667254967, - "c7": 2.478861549614556 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550623, + "c3": 3.1900138696255183, + "c4": 2.55201109570042, + "c5": 1.9140083217753114, + "c6": 1.27600554785021, + "c7": 0.638002773925105 }, "rgb": [86, 146, 138] }, @@ -392154,23 +392154,23 @@ "year": 1807, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -19.588122046745383, - "c2": -21.63651739037578, - "c3": 24.637702185411847, - "c4": -30.95527884532242, - "c5": -32.74306409255336, - "c6": -0.09831064414409951, - "c7": -30.009547249122768 + "points": { + "c1": 1.6934302959281524, + "c2": -7.580730612037883, + "c3": -29.087984620612605, + "c4": -34.45246694473138, + "c5": -1.0118604435581418, + "c6": -33.330054979812274, + "c7": 7.02911285119346 }, - "vertexSeeds": { - "c1": 5.8095854922279795, - "c2": 5.8095854922279795, - "c3": 5.8095854922279795, - "c4": 5.8095854922279795, - "c5": 5.8095854922279795, - "c6": 5.8095854922279795, - "c7": 5.8095854922279795 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -392181,23 +392181,23 @@ "year": 1807, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 10.21664843244767, - "c2": -9.208744464455325, - "c3": 19.847639414339177, - "c4": -23.146313474626336, - "c5": -22.52286587538948, - "c6": -31.259206209856, - "c7": 9.399231917401849 + "points": { + "c1": -4.396552347105917, + "c2": -20.312266342598136, + "c3": 28.998396101614006, + "c4": 26.628398689146806, + "c5": 29.431466141121035, + "c6": 18.802432310077123, + "c7": 15.683493316799009 }, - "vertexSeeds": { - "c1": 6.6312051281430495, - "c2": 6.696925509665086, - "c3": 6.654442555924323, - "c4": 6.605110479532386, - "c5": 6.675337684992749, - "c6": 6.65207537080739, - "c7": 6.686186070726835 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916782, + "c3": 7.998150716597318, + "c4": 6.398520573277854, + "c5": 4.798890429958391, + "c6": 3.199260286638927, + "c7": 1.5996301433194635 }, "rgb": [222, 0, 59] }, @@ -392208,23 +392208,23 @@ "year": 1807, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -17.837324509022803, - "c2": 2.2306478360312028, - "c3": -21.131341011905185, - "c4": 34.147977209288335, - "c5": 10.214635708271025, - "c6": -4.191934334572629, - "c7": -4.451019563063529 + "points": { + "c1": -23.189508718048614, + "c2": 31.889433860028696, + "c3": -22.913081973334755, + "c4": 25.879006140001522, + "c5": -18.599241305136214, + "c6": 8.311546031299592, + "c7": 2.9154296505656134 }, - "vertexSeeds": { - "c1": 8.22103181065304, - "c2": 8.111677980899351, - "c3": 7.657719682634869, - "c4": 7.5652958323301736, - "c5": 7.424911003631214, - "c6": 8.053399961198743, - "c7": 8.020556736709718 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214972, + "c3": 9.893666204345818, + "c4": 7.914932963476647, + "c5": 5.936199722607494, + "c6": 3.9574664817383236, + "c7": 1.97873324086917 }, "rgb": [58, 15, 49] }, @@ -392235,23 +392235,23 @@ "year": 1807, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": 11.854002212582522, - "c2": -6.89941202836993, - "c3": 7.155774305389819, - "c4": -3.3773442902133723, - "c5": 9.465214925125494, - "c6": -29.556192034264036, - "c7": -20.92626435287185 + "points": { + "c1": 11.914276106826591, + "c2": -1.766453977081781, + "c3": -8.87491085155763, + "c4": -15.147663456847884, + "c5": -23.521617908483307, + "c6": -15.21858923618548, + "c7": -30.765805602188006 }, - "vertexSeeds": { - "c1": 2.822935327607358, - "c2": 3.0306347721219935, - "c3": 3.0865631560536553, - "c4": 3.176826286896845, - "c5": 3.2209258289131983, - "c6": 3.0819724218853652, - "c7": 2.759627815597384 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [238, 201, 159] }, @@ -392262,23 +392262,23 @@ "year": 1807, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 3.8850671228917335, - "c2": 1.7055854353011242, - "c3": 25.135582792110334, - "c4": -19.965791302604423, - "c5": 7.493707869895196, - "c6": -29.59572028494924, - "c7": 31.24770104370731 + "points": { + "c1": 10.116627834133787, + "c2": 26.39622538718873, + "c3": -30.273814518560975, + "c4": -14.158544563216168, + "c5": 22.678353860871297, + "c6": 7.761133251285592, + "c7": 3.093207097405532 }, - "vertexSeeds": { - "c1": 2.4733287309342775, - "c2": 2.5389230946639385, - "c3": 2.46755070238871, - "c4": 2.718327999153899, - "c5": 2.4137937324425405, - "c6": 2.6872699740113695, - "c7": 2.5175863047299645 + "offsets": { + "c1": 4.757281553398058, + "c2": 4.07766990291262, + "c3": 3.3980582524271843, + "c4": 2.7184466019417473, + "c5": 2.03883495145631, + "c6": 1.3592233009708736, + "c7": 0.6796116504854368 }, "rgb": [238, 201, 159] }, @@ -392289,23 +392289,23 @@ "year": 1807, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 14.36702717283201, - "c2": -23.394602113948228, - "c3": 4.617733150433061, - "c4": 35.5716119601956, - "c5": 13.474720387286489, - "c6": -8.428357643334621, - "c7": 24.364947502343625 + "points": { + "c1": 32.53624956147412, + "c2": 37.86027645615131, + "c3": 22.202072891781242, + "c4": -5.132775708054517, + "c5": -15.598293688520727, + "c6": -15.615651535651008, + "c7": 21.653909687131822 }, - "vertexSeeds": { - "c1": 6.757601204907282, - "c2": 7.226468016793749, - "c3": 6.769305906544738, - "c4": 7.231409994129762, - "c5": 6.928764876704543, - "c6": 6.553772457549548, - "c7": 6.863945630644535 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123435, + "c3": 8.691631992602874, + "c4": 6.953305594082295, + "c5": 5.2149791955617175, + "c6": 3.476652797041157, + "c7": 1.7383263985205786 }, "rgb": [222, 0, 59] }, @@ -392316,23 +392316,23 @@ "year": 1808, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 26.354566621965404, - "c2": 38.970029782173555, - "c3": -30.77835876722859, - "c4": 22.525431813781253, - "c5": 21.73794216753099, - "c6": -23.254521634022797, - "c7": -25.348394410335484 + "points": { + "c1": -37.20598668763217, + "c2": 9.06812316669675, + "c3": -32.80155553432881, + "c4": 15.008488806303014, + "c5": 42.69276022233815, + "c6": 1.9496406725692594, + "c7": 37.080236035516535 }, - "vertexSeeds": { - "c1": 5.466395403680948, - "c2": 5.458202416239512, - "c3": 5.414370680009024, - "c4": 5.442110562181066, - "c5": 5.456044289673533, - "c6": 5.69464683184599, - "c7": 5.570726432473708 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026352, + "c3": 6.911696717521961, + "c4": 5.529357374017568, + "c5": 4.147018030513176, + "c6": 2.764678687008784, + "c7": 1.382339343504392 }, "rgb": [222, 0, 59] }, @@ -392343,23 +392343,23 @@ "year": 1807, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 23.776861574129445, - "c2": 13.177969955034367, - "c3": -9.196578421300249, - "c4": -25.976909444183725, - "c5": -12.883877229774793, - "c6": 26.25582521668861, - "c7": 17.73920134651326 + "points": { + "c1": 5.173025295284308, + "c2": -16.624676359343113, + "c3": -23.42003309640096, + "c4": 14.481659327509266, + "c5": 1.9724143172410784, + "c6": -4.116353273558996, + "c7": 3.2511412742718058 }, - "vertexSeeds": { - "c1": 3.7062325688390163, - "c2": 3.901089765243683, - "c3": 3.622693537699778, - "c4": 3.9027748531662683, - "c5": 3.622446896775174, - "c6": 3.6607940664486076, - "c7": 3.6947512703824725 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.6033287101248295, + "c3": 4.6694405917706945, + "c4": 3.73555247341655, + "c5": 2.8016643550624147, + "c6": 1.867776236708279, + "c7": 0.9338881183541439 }, "rgb": [222, 0, 59] }, @@ -392370,23 +392370,23 @@ "year": 1807, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -14.855145407642526, - "c2": 21.515124858167646, - "c3": -15.417137164605798, - "c4": -15.45887582408191, - "c5": -10.037667962072032, - "c6": 10.596381639479588, - "c7": 18.122068823189238 + "points": { + "c1": 20.38659676581353, + "c2": -2.1010394921065974, + "c3": -28.02376228567403, + "c4": 8.624727628093538, + "c5": -15.301996650606169, + "c6": 13.675038002590803, + "c7": 12.312005531323571 }, - "vertexSeeds": { - "c1": 5.3768391383669245, - "c2": 5.1906927862995556, - "c3": 5.105189674362991, - "c4": 4.995264022770453, - "c5": 5.279504506654556, - "c6": 5.191474894543149, - "c7": 5.418764537092434 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302358, + "c3": 6.4956079519186325, + "c4": 5.196486361534905, + "c5": 3.897364771151179, + "c6": 2.5982431807674526, + "c7": 1.2991215903837263 }, "rgb": [238, 201, 159] }, @@ -392397,23 +392397,23 @@ "year": 1807, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 27.613300505187524, - "c2": 27.828066505322994, - "c3": -26.25162337809138, - "c4": -14.332115587269133, - "c5": -2.2804884730068053, - "c6": 13.352322076953683, - "c7": -31.9209661112468 + "points": { + "c1": -15.449031328277133, + "c2": 0.9654828823226893, + "c3": -17.800448630483835, + "c4": 24.3921137434016, + "c5": -6.400788166458366, + "c6": 27.152977022453065, + "c7": -22.359786690647567 }, - "vertexSeeds": { - "c1": 6.036455166174587, - "c2": 5.746670467837243, - "c3": 6.267847388932503, - "c4": 5.927195352658416, - "c5": 5.999211560008557, - "c6": 6.227076793350446, - "c7": 6.0389529925998735 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112347, + "c3": 7.535829865926957, + "c4": 6.02866389274157, + "c5": 4.521497919556182, + "c6": 3.014331946370776, + "c7": 1.507165973185388 }, "rgb": [222, 0, 59] }, @@ -392424,23 +392424,23 @@ "year": 1807, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -3.8481720044186147, - "c2": 22.925273889072567, - "c3": -0.15379462055843618, - "c4": 11.78748951895692, - "c5": 13.481646241975522, - "c6": 13.77637616644687, - "c7": -9.903437425851461 + "points": { + "c1": 22.057736966576375, + "c2": 23.725073874261273, + "c3": -19.931987184658862, + "c4": -5.829922384471132, + "c5": 7.747855588421427, + "c6": -24.983515304066255, + "c7": -4.778420844493681 }, - "vertexSeeds": { - "c1": 13.654332105623872, - "c2": 13.785081789625618, - "c3": 13.570593435834972, - "c4": 13.34199128175387, - "c5": 13.650647221427748, - "c6": 13.597097669512934, - "c7": 13.549655799043734 + "offsets": { + "c1": 23.009708737864077, + "c2": 19.722607489597806, + "c3": 16.435506241331446, + "c4": 13.148404993065174, + "c5": 9.861303744798903, + "c6": 6.574202496532542, + "c7": 3.287101248266271 }, "rgb": [222, 0, 59] }, @@ -392451,23 +392451,23 @@ "year": 1807, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -13.429943043051866, - "c2": 18.186739789113073, - "c3": -13.100609150629637, - "c4": -1.7354846018525514, - "c5": 11.322441729139722, - "c6": -12.63799152383081, - "c7": 21.629661184667878 + "points": { + "c1": -22.196336746301206, + "c2": 10.830479604733586, + "c3": -12.613951525426986, + "c4": -2.2625330937644748, + "c5": -5.627107577368459, + "c6": -14.364142502287471, + "c7": 28.364915548779965 }, - "vertexSeeds": { - "c1": 2.6491736125353773, - "c2": 2.7278018067798144, - "c3": 2.494303731767496, - "c4": 2.6352599204911646, - "c5": 2.512483106392142, - "c6": 2.62242840209712, - "c7": 2.5502902291190743 + "offsets": { + "c1": 4.5954692556634305, + "c2": 3.9389736477115105, + "c3": 3.28247803975959, + "c4": 2.62598243180767, + "c5": 1.9694868238557601, + "c6": 1.3129912159038402, + "c7": 0.6564956079519201 }, "rgb": [238, 201, 159] }, @@ -392478,23 +392478,23 @@ "year": 1807, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 7.873627110931636, - "c2": 34.920733006182374, - "c3": 30.22213239119843, - "c4": 1.3692780149720178, - "c5": -16.8420133892137, - "c6": -26.54491816552018, - "c7": -31.517254041936273 + "points": { + "c1": 20.394138588725433, + "c2": -32.21872307083319, + "c3": 19.00391711378014, + "c4": 0.4233070500016751, + "c5": 29.09146350903123, + "c6": -6.4927852128869645, + "c7": -26.947485146232548 }, - "vertexSeeds": { - "c1": 4.865929704231743, - "c2": 4.769799284880457, - "c3": 5.236207441200946, - "c4": 5.119590831827995, - "c5": 4.817317864964397, - "c6": 5.0099564361167115, - "c7": 4.84815702076079 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900147, + "c3": 6.264447526583449, + "c4": 5.01155802126675, + "c5": 3.758668515950069, + "c6": 2.5057790106333795, + "c7": 1.2528895053166897 }, "rgb": [238, 201, 159] }, @@ -392505,23 +392505,23 @@ "year": 1807, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 27.50484326045244, - "c2": -21.260276962034116, - "c3": 24.326896675569472, - "c4": -27.945762331820312, - "c5": -7.434508670068379, - "c6": 12.276660386442629, - "c7": 10.237224477994296 + "points": { + "c1": -27.28749978076737, + "c2": 29.107665662562788, + "c3": -4.536014810373306, + "c4": 15.512664202171962, + "c5": -9.648020448758029, + "c6": 16.33247244989895, + "c7": -18.895519934192137 }, - "vertexSeeds": { - "c1": 6.551059347930742, - "c2": 6.6238439121223145, - "c3": 6.885249526868989, - "c4": 6.810951386616218, - "c5": 6.5484337817695195, - "c6": 6.579443956332454, - "c7": 6.648083986646127 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962555, + "c3": 8.599167822468798, + "c4": 6.879334257975042, + "c5": 5.159500693481286, + "c6": 3.4396671289875305, + "c7": 1.719833564493774 }, "rgb": [222, 0, 59] }, @@ -392532,23 +392532,23 @@ "year": 1807, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 16.315249879096555, - "c2": -31.232432488987147, - "c3": -27.683680312907125, - "c4": -4.591260671381892, - "c5": -5.119001208895789, - "c6": 36.25042160811205, - "c7": 7.551740515018373 + "points": { + "c1": 17.79285275989382, + "c2": -10.400828075173408, + "c3": 21.184508050281607, + "c4": 25.633701428142068, + "c5": 0.4959242806106019, + "c6": 25.797257653924305, + "c7": -32.31858424238985 }, - "vertexSeeds": { - "c1": 4.052377700337468, - "c2": 4.150975225095492, - "c3": 4.208065517263543, - "c4": 4.003868535202022, - "c5": 3.9418722458220303, - "c6": 4.049241226816469, - "c7": 4.134305882166807 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [238, 201, 159] }, @@ -392559,23 +392559,23 @@ "year": 1808, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -10.239039352636105, - "c2": -18.77913506613317, - "c3": -39.874728880026694, - "c4": -49.26574132190912, - "c5": -37.8867043291723, - "c6": 25.51292082749758, - "c7": 9.79948911473587 + "points": { + "c1": 43.31609626952988, + "c2": -31.27283185233201, + "c3": 49.09526686491341, + "c4": -28.491222712587152, + "c5": -3.9816116589777266, + "c6": 15.274578766721405, + "c7": 7.331149876388594 }, - "vertexSeeds": { - "c1": 10.026093701283804, - "c2": 10.353679243564095, - "c3": 10.350311679168987, - "c4": 10.008667698001677, - "c5": 10.96961398827967, - "c6": 9.881699685813455, - "c7": 9.853065068736411 + "offsets": { + "c1": 18.96440129449838, + "c2": 16.255201109570038, + "c3": 13.546000924641696, + "c4": 10.836800739713356, + "c5": 8.127600554785012, + "c6": 5.41840036985667, + "c7": 2.7092001849283287 }, "rgb": [58, 15, 49] }, @@ -392586,23 +392586,23 @@ "year": 1807, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": -0.998133780442064, - "c2": -2.4942060412140243, - "c3": -7.322588653275771, - "c4": 18.60563493074299, - "c5": 13.234135663605596, - "c6": 18.780026832555873, - "c7": -15.553851746527402 + "points": { + "c1": 16.760140965911607, + "c2": -11.254712028378199, + "c3": 21.1644804616239, + "c4": -21.551767641932326, + "c5": 7.242362012960633, + "c6": 18.36585614478064, + "c7": -16.043460302663245 }, - "vertexSeeds": { - "c1": 1.4655532832606963, - "c2": 1.3721375247596712, - "c3": 1.4324306097369344, - "c4": 1.3526008298943633, - "c5": 1.4478673997418672, - "c6": 1.4682713526192959, - "c7": 1.3938046466702587 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.1636615811373074, + "c3": 1.803051317614425, + "c4": 1.4424410540915382, + "c5": 1.081830790568656, + "c6": 0.7212205270457691, + "c7": 0.3606102635228823 }, "rgb": [222, 0, 59] }, @@ -392613,23 +392613,23 @@ "year": 1807, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 30.078467968992022, - "c2": -27.366587141827196, - "c3": -1.4288428519698968, - "c4": 17.031626652041496, - "c5": 24.055843709096123, - "c6": 11.32140413936147, - "c7": -29.05948266200501 + "points": { + "c1": 12.422062913868473, + "c2": -6.65280218409664, + "c3": -24.052680634340135, + "c4": -33.956736693512276, + "c5": 10.518665650633537, + "c6": -1.4777717303634148, + "c7": 12.005704355344399 }, - "vertexSeeds": { - "c1": 4.779690351061057, - "c2": 5.124965119582095, - "c3": 4.725961511976964, - "c4": 5.164975127209424, - "c5": 4.808880691912008, - "c6": 5.123715319488595, - "c7": 5.12656251514319 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [86, 146, 138] }, @@ -392640,23 +392640,23 @@ "year": 1807, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -5.241632444518707, - "c2": 29.708823054225462, - "c3": -35.74783237663699, - "c4": -2.4151962815594388, - "c5": -31.81533055440378, - "c6": 21.16021968341495, - "c7": 13.647663588835222 + "points": { + "c1": 1.6715388243940268, + "c2": -21.99963134444069, + "c3": 20.7892492239614, + "c4": -6.685001170862314, + "c5": -18.68395699870301, + "c6": 31.584372777726088, + "c7": -7.254043363158864 }, - "vertexSeeds": { - "c1": 5.255627331450604, - "c2": 4.9966546186311405, - "c3": 5.162534058207314, - "c4": 5.273569594704144, - "c5": 5.430849689701256, - "c6": 5.058472042833446, - "c7": 5.406718724140549 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543695, + "c3": 6.634304207119734, + "c4": 5.307443365695791, + "c5": 3.9805825242718473, + "c6": 2.6537216828478862, + "c7": 1.3268608414239431 }, "rgb": [238, 201, 159] }, @@ -392667,23 +392667,23 @@ "year": 1808, "resistanceReported": true, "duration": 30153600, - "curveSeeds": { - "c1": 19.124677615024915, - "c2": 21.27222930338322, - "c3": 42.84444779379955, - "c4": 15.256108845243908, - "c5": -7.620654438208128, - "c6": -29.627684796703377, - "c7": -14.54518668851 + "points": { + "c1": 5.219088339592339, + "c2": 0.38653583779339584, + "c3": 25.21531503983136, + "c4": 6.0825106054005005, + "c5": 16.357192854875443, + "c6": -29.007315534224276, + "c7": -7.49807434903137 }, - "vertexSeeds": { - "c1": 4.412218138196785, - "c2": 4.361439380871871, - "c3": 4.655125711635796, - "c4": 4.561382126030544, - "c5": 4.697070391700417, - "c6": 4.474527366599012, - "c7": 4.74578818409818 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [222, 0, 59] }, @@ -392694,23 +392694,23 @@ "year": 1808, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -3.6397599412795003, - "c2": 36.004289719246394, - "c3": 40.54952900966091, - "c4": 16.17107440515374, - "c5": -10.738047104399513, - "c6": -3.176086232778708, - "c7": -38.28713788292046 + "points": { + "c1": -15.412982126945103, + "c2": 3.052208525215555, + "c3": -28.733455129902747, + "c4": 12.846890640636737, + "c5": -11.377357528283177, + "c6": 21.991562037164634, + "c7": -26.1559085570349 }, - "vertexSeeds": { - "c1": 3.308183029432268, - "c2": 3.1552785534774253, - "c3": 3.2914606145677117, - "c4": 3.3301645132472393, - "c5": 3.3151948875431057, - "c6": 3.3556061828047308, - "c7": 3.119270273988661 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079059, + "c3": 4.068423485899218, + "c4": 3.2547387887193766, + "c5": 2.441054091539535, + "c6": 1.627369394359683, + "c7": 0.8136846971798415 }, "rgb": [86, 146, 138] }, @@ -392721,23 +392721,23 @@ "year": 1808, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -39.20375040869585, - "c2": 38.61299719260157, - "c3": -17.057171000617625, - "c4": -15.933304029789497, - "c5": -16.90087114454858, - "c6": -34.35360707457597, - "c7": -37.0471857275356 + "points": { + "c1": -22.373965957339937, + "c2": 27.072600478422444, + "c3": 33.43849580899415, + "c4": -25.914680668689087, + "c5": -3.5335422562316907, + "c6": 39.549076922125224, + "c7": 14.256849346269696 }, - "vertexSeeds": { - "c1": 4.789364813724419, - "c2": 5.240755174777057, - "c3": 4.73915865180284, - "c4": 4.996905016913486, - "c5": 5.016580367892362, - "c6": 5.005310514998482, - "c7": 4.913197846034787 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900147, + "c3": 6.264447526583446, + "c4": 5.011558021266764, + "c5": 3.7586685159500735, + "c6": 2.505779010633382, + "c7": 1.252889505316691 }, "rgb": [86, 146, 138] }, @@ -392748,23 +392748,23 @@ "year": 1807, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -17.002208730411756, - "c2": 0.005039825182052482, - "c3": 28.234374589596328, - "c4": 6.910276609780404, - "c5": -32.11505332220447, - "c6": 25.67957527664987, - "c7": 22.952946052605725 + "points": { + "c1": 8.841810741969212, + "c2": -6.474316749595012, + "c3": -33.51061548426348, + "c4": -19.319535380683693, + "c5": 24.911116607943022, + "c6": -22.517229347617242, + "c7": 2.567127635631117 }, - "vertexSeeds": { - "c1": 4.689354109118585, - "c2": 4.990503585344613, - "c3": 4.962357779503283, - "c4": 5.040114826126169, - "c5": 4.86984156386295, - "c6": 4.860223357907896, - "c7": 4.782160954172215 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [238, 201, 159] }, @@ -392775,23 +392775,23 @@ "year": 1808, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 30.860137281790315, - "c2": -32.00887571973855, - "c3": 20.037967782310687, - "c4": -19.963597465262698, - "c5": 28.176856343013014, - "c6": -37.48618652996202, - "c7": -12.739090897636636 + "points": { + "c1": -5.1231095744879696, + "c2": -5.531819389703358, + "c3": 35.86923756927389, + "c4": -3.5143630142072766, + "c5": 4.315534638529762, + "c6": 10.349387186890304, + "c7": -27.00083647040632 }, - "vertexSeeds": { - "c1": 0.8366694800781914, - "c2": 0.7642233185207724, - "c3": 0.8858393963964086, - "c4": 0.8853189956685605, - "c5": 0.8563056789903136, - "c6": 0.7745509020502103, - "c7": 0.8788257047296862 + "offsets": { + "c1": 1.5210355987055015, + "c2": 1.3037447988904298, + "c3": 1.0864539990753583, + "c4": 0.8691631992602865, + "c5": 0.6518723994452149, + "c6": 0.43458159963014326, + "c7": 0.21729079981507163 }, "rgb": [222, 0, 59] }, @@ -392802,23 +392802,23 @@ "year": 1808, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": 21.694048888152373, - "c2": 19.132521747242365, - "c3": -6.3871280178050185, - "c4": 27.4135143050174, - "c5": -24.948865712672678, - "c6": -29.699126770864034, - "c7": -17.832737225338274 + "points": { + "c1": -17.773407632861616, + "c2": -2.194414545547531, + "c3": 21.51652706987437, + "c4": 15.80266807010669, + "c5": 16.2445479876583, + "c6": -31.5490927391439, + "c7": -13.04825087605833 }, - "vertexSeeds": { - "c1": 4.262865704045308, - "c2": 4.217431452579382, - "c3": 4.236208361526414, - "c4": 4.217143863917102, - "c5": 4.274434676631318, - "c6": 4.239416498754089, - "c7": 4.258089159428947 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889072, + "c3": 5.108645399907527, + "c4": 4.086916319926049, + "c5": 3.0651872399445024, + "c6": 2.0434581599630244, + "c7": 1.0217290799814782 }, "rgb": [222, 0, 59] }, @@ -392829,23 +392829,23 @@ "year": 1807, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 9.523096814580168, - "c2": -24.800209227261075, - "c3": 26.510510182339242, - "c4": 13.703895556582768, - "c5": 14.531345700657777, - "c6": -25.312746604377296, - "c7": 4.5472454624188785 + "points": { + "c1": -20.087273545768696, + "c2": 6.5035334936855556, + "c3": -13.076428161797164, + "c4": 1.101871910072724, + "c5": 13.08412333511519, + "c6": 17.456593695374078, + "c7": -16.638948069108693 }, - "vertexSeeds": { - "c1": 6.427694449259129, - "c2": 6.365898713299473, - "c3": 6.370765695942015, - "c4": 6.402249877505351, - "c5": 6.388165447871415, - "c6": 6.381141990688814, - "c7": 6.384488581220361 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393941, + "c3": 7.697642163661567, + "c4": 6.158113730929294, + "c5": 4.61858529819692, + "c6": 3.079056865464647, + "c7": 1.5395284327323744 }, "rgb": [86, 146, 138] }, @@ -392856,23 +392856,23 @@ "year": 1807, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -22.3329807246266, - "c2": 18.830753227864868, - "c3": -17.421824382689543, - "c4": 17.30405889169254, - "c5": -17.901484700553134, - "c6": -27.02980432499249, - "c7": -20.22290924810471 + "points": { + "c1": -11.500112758939135, + "c2": -18.004339648155348, + "c3": 30.254542159021476, + "c4": 30.385655618094127, + "c5": -17.24845816900888, + "c6": -34.01532711811993, + "c7": 30.35171310094473 }, - "vertexSeeds": { - "c1": 1.341438129291163, - "c2": 1.3182991968954334, - "c3": 1.347664888564869, - "c4": 1.3043824339568688, - "c5": 1.3499110682733917, - "c6": 1.3392565365619753, - "c7": 1.426562463829003 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166417, + "c3": 1.73370319001387, + "c4": 1.3869625520110944, + "c5": 1.040221914008323, + "c6": 0.6934812760055472, + "c7": 0.34674063800277577 }, "rgb": [77, 76, 132] }, @@ -392883,23 +392883,23 @@ "year": 1807, "resistanceReported": false, "duration": 7171200, - "curveSeeds": { - "c1": 4.294716013681455, - "c2": -15.12676294183939, - "c3": -10.0107133791575, - "c4": -3.7011442770012764, - "c5": 14.355124524748327, - "c6": 5.0974629160524785, - "c7": 9.056619285862972 + "points": { + "c1": -7.0897002424727305, + "c2": -18.53678000420154, + "c3": 15.199270040928205, + "c4": -7.430546693319185, + "c5": 17.71809382858529, + "c6": 5.168645384687611, + "c7": -11.093278594889313 }, - "vertexSeeds": { - "c1": 5.116084419797974, - "c2": 5.150487756284614, - "c3": 4.957687920670404, - "c4": 4.926048546448468, - "c5": 5.085047131236271, - "c6": 5.156694667321975, - "c7": 4.972344924203353 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -392910,23 +392910,23 @@ "year": 1807, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -10.381624164598943, - "c2": 3.1982416121466173, - "c3": -9.260999823969623, - "c4": -19.488623213892733, - "c5": -18.762702650388995, - "c6": -31.292142799897007, - "c7": 36.6732940351672 + "points": { + "c1": -29.176031893892418, + "c2": 35.78849905761383, + "c3": -0.9942543718587871, + "c4": -33.636756476478055, + "c5": -7.700808862719132, + "c6": -6.895098030124444, + "c7": -36.23574049507707 }, - "vertexSeeds": { - "c1": 3.698683086744777, - "c2": 3.6738579393267448, - "c3": 3.492313745273612, - "c4": 3.712573783545693, - "c5": 3.6810934982927446, - "c6": 3.4111837858073724, - "c7": 3.4873287848673966 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883497, + "c3": 4.530744336569584, + "c4": 3.6245954692556612, + "c5": 2.7184466019417486, + "c6": 1.8122977346278353, + "c7": 0.9061488673139132 }, "rgb": [86, 146, 138] }, @@ -392937,23 +392937,23 @@ "year": 1807, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 2.3741011327295602, - "c2": 22.185372097196357, - "c3": 17.130966715223913, - "c4": -5.625356627209669, - "c5": -21.668208346638814, - "c6": -12.550329789493878, - "c7": -1.861038207141263 + "points": { + "c1": -19.080764262154208, + "c2": -25.35180876193528, + "c3": 4.01341658718075, + "c4": 7.3082865424410315, + "c5": 21.227257880961872, + "c6": -14.235614584132756, + "c7": -10.236843276063944 }, - "vertexSeeds": { - "c1": 6.71789081513289, - "c2": 6.7291479953022515, - "c3": 6.846878329732743, - "c4": 7.1425981680878365, - "c5": 6.716536896497841, - "c6": 6.710618107348102, - "c7": 6.653759453432098 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.45769764216366, + "c3": 8.714748035136385, + "c4": 6.971798428109107, + "c5": 5.22884882108183, + "c6": 3.4858992140545535, + "c7": 1.7429496070272767 }, "rgb": [238, 201, 159] }, @@ -392964,23 +392964,23 @@ "year": 1807, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -9.263755515542469, - "c2": -3.5173892898677366, - "c3": 2.8442535588181244, - "c4": -16.127813512048306, - "c5": 7.476669714870489, - "c6": 10.425647265291111, - "c7": -15.727483081846492 + "points": { + "c1": 3.867540178741063, + "c2": 6.019304947024985, + "c3": 22.003153855266383, + "c4": -22.590506567343542, + "c5": -9.862842359564558, + "c6": -22.342205395181963, + "c7": -0.7314293538110235 }, - "vertexSeeds": { - "c1": 1.9768570929885083, - "c2": 1.9459007458559119, - "c3": 2.050531319065076, - "c4": 1.970084263328651, - "c5": 2.1392895249617916, - "c6": 2.129857353075095, - "c7": 2.015273757592137 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852995, + "c3": 2.635228848821081, + "c4": 2.1081830790568663, + "c5": 1.581137309292648, + "c6": 1.0540915395284332, + "c7": 0.5270457697642185 }, "rgb": [77, 76, 132] }, @@ -392991,23 +392991,23 @@ "year": 1807, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 17.695537011371375, - "c2": -18.566705384460487, - "c3": 19.411839576367964, - "c4": -16.004971316402415, - "c5": -17.571639229734934, - "c6": -17.789112025367555, - "c7": 16.06943634214576 + "points": { + "c1": 29.638908750519487, + "c2": -22.85338311423742, + "c3": -3.173538338332797, + "c4": 9.292769518049322, + "c5": -0.49523963075619903, + "c6": 27.792468214187803, + "c7": 17.620511583886017 }, - "vertexSeeds": { - "c1": 5.702672137491069, - "c2": 5.847413426394712, - "c3": 5.481971899627465, - "c4": 5.770062084725863, - "c5": 5.612291193539104, - "c6": 5.849974978389204, - "c7": 5.812311862519696 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -393018,23 +393018,23 @@ "year": 1807, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 28.77108554393002, - "c2": 6.982629911277208, - "c3": 20.688726411268853, - "c4": 21.178183252944656, - "c5": 4.2326515617425144, - "c6": 20.56511811219292, - "c7": 8.566361169214566 + "points": { + "c1": 25.80355822401902, + "c2": -13.584725999829821, + "c3": -13.957211360059627, + "c4": -27.49235691394867, + "c5": 0.4614533790606288, + "c6": 9.960212811947997, + "c7": -18.043234788331354 }, - "vertexSeeds": { - "c1": 3.6341179866259052, - "c2": 3.581194187474749, - "c3": 3.5566170141592464, - "c4": 3.644164488274284, - "c5": 3.642048079771084, - "c6": 3.658390517012219, - "c7": 3.6600951804224913 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.2704576976421595, + "c3": 4.392048081368462, + "c4": 3.5136384650947634, + "c5": 2.6352288488210656, + "c6": 1.756819232547367, + "c7": 0.8784096162736982 }, "rgb": [86, 146, 138] }, @@ -393045,23 +393045,23 @@ "year": 1807, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -12.83585662086512, - "c2": 1.2196821565295188, - "c3": -17.955764387205182, - "c4": 9.793480916572037, - "c5": 15.992286344490076, - "c6": 20.92549443844586, - "c7": -11.101609883034248 + "points": { + "c1": -8.380394248238215, + "c2": -0.8365042944192673, + "c3": -5.333645220371224, + "c4": 10.08149213002904, + "c5": 18.637310791247273, + "c6": -0.10770400111839962, + "c7": 20.759902705061222 }, - "vertexSeeds": { - "c1": 6.522190746801085, - "c2": 6.379434440781321, - "c3": 6.683303685355265, - "c4": 6.501047365266738, - "c5": 6.1870120297731255, - "c6": 6.591510162290964, - "c7": 6.1235808472538755 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997222, + "c3": 8.04438280166435, + "c4": 6.435506241331475, + "c5": 4.826629680998621, + "c6": 3.2177531206657473, + "c7": 1.6088765603328736 }, "rgb": [222, 0, 59] }, @@ -393072,23 +393072,23 @@ "year": 1808, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -29.48278534290861, - "c2": 10.47184185876607, - "c3": 35.69115092990914, - "c4": -37.72072403395699, - "c5": 33.81486813653396, - "c6": 30.62101795172528, - "c7": -35.85857632360932 + "points": { + "c1": 35.04219066092884, + "c2": 6.195132300033549, + "c3": -18.112064021381425, + "c4": 20.34819855152726, + "c5": -36.084729527557585, + "c6": 29.90495882722348, + "c7": -1.8963141374763808 }, - "vertexSeeds": { - "c1": 6.810168168983455, - "c2": 6.723556013882703, - "c3": 6.999350614994851, - "c4": 6.867910104061825, - "c5": 6.718501397619287, - "c6": 7.204491669133191, - "c7": 6.746769739753326 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043004, + "c3": 8.645399907535827, + "c4": 6.916319926028669, + "c5": 5.187239944521493, + "c6": 3.4581599630143347, + "c7": 1.7290799815071765 }, "rgb": [77, 76, 132] }, @@ -393099,23 +393099,23 @@ "year": 1807, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 5.392125177359219, - "c2": 27.256007941842576, - "c3": -3.2454077512722144, - "c4": 19.909905252217442, - "c5": -15.127213470797475, - "c6": -2.0972849529396598, - "c7": 3.0493652587544062 + "points": { + "c1": 25.634587892650437, + "c2": -23.882383702690863, + "c3": 32.16731262600778, + "c4": 26.075495687238288, + "c5": -6.365468296369389, + "c6": -10.950447498691155, + "c7": -23.833567925321045 }, - "vertexSeeds": { - "c1": 9.313442761885364, - "c2": 9.051103499745942, - "c3": 9.438426796081071, - "c4": 9.073120487241075, - "c5": 8.74180919162588, - "c6": 8.808370685928713, - "c7": 8.757228251283648 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708735, + "c3": 11.326860841423944, + "c4": 9.061488673139165, + "c5": 6.796116504854374, + "c6": 4.530744336569582, + "c7": 2.265372168284791 }, "rgb": [222, 0, 59] }, @@ -393126,23 +393126,23 @@ "year": 1807, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -27.602241892886063, - "c2": 25.966155022855048, - "c3": 25.93231738699849, - "c4": -27.7319648706447, - "c5": -32.89961985124504, - "c6": -32.9932244571029, - "c7": -30.76785646676568 + "points": { + "c1": 11.861509279730114, + "c2": 28.484654602021777, + "c3": 0.33046288811048186, + "c4": -24.39385077033983, + "c5": -16.629307069420374, + "c6": 35.63228447475865, + "c7": 17.550555388486536 }, - "vertexSeeds": { - "c1": 5.074513862163982, - "c2": 5.335041059679068, - "c3": 5.36744179639247, - "c4": 5.153312671086564, - "c5": 5.230118390492225, - "c6": 5.336353697356522, - "c7": 4.9621002489807475 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423016, + "c3": 6.564956079519188, + "c4": 5.251964863615344, + "c5": 3.938973647711517, + "c6": 2.625982431807672, + "c7": 1.312991215903845 }, "rgb": [86, 146, 138] }, @@ -393153,23 +393153,23 @@ "year": 1807, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 13.318181208023404, - "c2": -8.064146162310266, - "c3": -8.302747102976674, - "c4": -10.407927524406688, - "c5": 6.824736329122352, - "c6": -4.3714212557412075, - "c7": 12.09024669270213 + "points": { + "c1": -23.37965295481886, + "c2": 14.512632333067074, + "c3": 15.572705746855497, + "c4": -4.908889827494303, + "c5": 7.8255858216648875, + "c6": -25.99428132066204, + "c7": 27.703752686188132 }, - "vertexSeeds": { - "c1": 2.4681693021622744, - "c2": 2.451545622252628, - "c3": 2.3448350828109814, - "c4": 2.3000602739615332, - "c5": 2.383558442584761, - "c6": 2.453283965880437, - "c7": 2.351116548145295 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429962, + "c3": 3.1206657420249653, + "c4": 2.496532593619972, + "c5": 1.872399445214979, + "c6": 1.248266296809986, + "c7": 0.624133148404993 }, "rgb": [222, 0, 59] }, @@ -393180,23 +393180,23 @@ "year": 1807, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -1.4634210479708045, - "c2": -7.31098114490872, - "c3": -30.54306755963584, - "c4": 8.68638209830625, - "c5": -3.4085074812345404, - "c6": 15.647875629203401, - "c7": 5.960413236613139 + "points": { + "c1": -11.478955707057004, + "c2": 25.840617351181486, + "c3": 24.84541686516834, + "c4": -17.772822313259176, + "c5": 11.740031544028625, + "c6": 1.393164540513105, + "c7": 21.131638936020387 }, - "vertexSeeds": { - "c1": 2.76196599743707, - "c2": 2.9274354647022216, - "c3": 2.8734033761101143, - "c4": 2.794472761400388, - "c5": 2.9048139448031494, - "c6": 2.9243397964939777, - "c7": 2.8368299252334936 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234396, + "c3": 3.5829865926953275, + "c4": 2.8663892741562598, + "c5": 2.149791955617192, + "c6": 1.4331946370781354, + "c7": 0.7165973185390677 }, "rgb": [238, 201, 159] }, @@ -393207,23 +393207,23 @@ "year": 1807, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -29.86973426162563, - "c2": -14.580641399905272, - "c3": 14.777747375087635, - "c4": 17.787340751134522, - "c5": -14.391489998692926, - "c6": 11.499987648456461, - "c7": -21.933712076056892 + "points": { + "c1": 16.566804954852188, + "c2": -24.791601921906597, + "c3": 11.592109785046802, + "c4": -13.946337049585452, + "c5": -0.970177373326635, + "c6": -13.404666232780233, + "c7": 34.38100282674304 }, - "vertexSeeds": { - "c1": 3.84123062803666, - "c2": 3.668684830423524, - "c3": 3.661485849377646, - "c4": 3.6351531891785336, - "c5": 3.880761516215481, - "c6": 3.629529430112005, - "c7": 3.848262675122773 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285719, + "c3": 4.761904761904761, + "c4": 3.8095238095238124, + "c5": 2.8571428571428545, + "c6": 1.9047619047619062, + "c7": 0.9523809523809484 }, "rgb": [86, 146, 138] }, @@ -393234,23 +393234,23 @@ "year": 1807, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 14.668419970549465, - "c2": 16.139733284251953, - "c3": -33.81600582115613, - "c4": -2.7521621509085676, - "c5": -11.109295073467287, - "c6": 25.13065313860718, - "c7": 12.067553207080728 + "points": { + "c1": -34.18515101191565, + "c2": -0.4125763841093857, + "c3": 23.514500181276638, + "c4": -21.504377569150783, + "c5": 20.092893719085588, + "c6": -18.015564400426634, + "c7": -0.22522114056845766 }, - "vertexSeeds": { - "c1": 2.9139123381879743, - "c2": 2.668885107884469, - "c3": 2.8709193840988037, - "c4": 2.93874012431914, - "c5": 2.839449556129676, - "c6": 2.714082040930131, - "c7": 2.939335656481073 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282934, + "c4": 2.8294036061026344, + "c5": 2.122052704576975, + "c6": 1.4147018030513157, + "c7": 0.7073509015256565 }, "rgb": [238, 201, 159] }, @@ -393261,23 +393261,23 @@ "year": 1807, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 20.14423659826496, - "c2": -30.308661286256033, - "c3": 23.836498612673907, - "c4": 16.85246282886748, - "c5": 13.452462838209406, - "c6": 27.64682376084793, - "c7": -23.013597554644832 + "points": { + "c1": -9.981365160662097, + "c2": 10.651171129671546, + "c3": -29.06824278768982, + "c4": -4.373855913733308, + "c5": -28.583930624266323, + "c6": 33.793236003208314, + "c7": -23.022314978175018 }, - "vertexSeeds": { - "c1": 3.4079633152425384, - "c2": 3.2955924228438214, - "c3": 3.5130471694719416, - "c4": 3.55340658506014, - "c5": 3.44291081621298, - "c6": 3.3907384068060984, - "c7": 3.4417212552561645 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.1872399445214965, + "c3": 4.322699953767917, + "c4": 3.4581599630143325, + "c5": 2.5936199722607483, + "c6": 1.7290799815071694, + "c7": 0.8645399907535847 }, "rgb": [77, 76, 132] }, @@ -393288,23 +393288,23 @@ "year": 1807, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 0.3900026182116463, - "c2": 17.68602937974387, - "c3": 5.389897643603923, - "c4": 32.88234748586936, - "c5": -31.97354796125759, - "c6": 3.570665638696397, - "c7": -14.955065345152835 + "points": { + "c1": 34.575362232880096, + "c2": 25.50532311282806, + "c3": -1.4288879927874731, + "c4": -5.723058367777636, + "c5": -23.13406528090018, + "c6": -31.89203538557554, + "c7": 30.06463219168549 }, - "vertexSeeds": { - "c1": 4.446522499478218, - "c2": 4.533498744972683, - "c3": 4.29151874585185, - "c4": 4.412316703585688, - "c5": 4.732889953940285, - "c6": 4.499184954608848, - "c7": 4.469013002649365 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894592, + "c3": 5.686546463245495, + "c4": 4.549237170596398, + "c5": 3.4119278779473006, + "c6": 2.2746185852982035, + "c7": 1.1373092926491062 }, "rgb": [238, 201, 159] }, @@ -393315,23 +393315,23 @@ "year": 1807, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -9.656293445194688, - "c2": -14.878011286677985, - "c3": 26.455128972821257, - "c4": -5.495860514435488, - "c5": -23.965705467455408, - "c6": -12.147576244326357, - "c7": 4.692507143112131 + "points": { + "c1": -16.689180657722975, + "c2": 21.84188226537202, + "c3": 27.61636107629701, + "c4": -26.57987372606157, + "c5": -17.51088994639276, + "c6": 17.05889191494773, + "c7": -29.19228453677129 }, - "vertexSeeds": { - "c1": 2.9439465664683353, - "c2": 2.5676576690309694, - "c3": 2.6637163429084056, - "c4": 2.7766956687399995, - "c5": 2.654963503756966, - "c6": 2.739551705011156, - "c7": 2.666651593166526 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282925, + "c4": 2.8294036061026397, + "c5": 2.1220527045769795, + "c6": 1.4147018030513199, + "c7": 0.7073509015256599 }, "rgb": [58, 15, 49] }, @@ -393342,23 +393342,23 @@ "year": 1808, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -21.977949586957426, - "c2": -9.949626718342703, - "c3": -39.621557798463016, - "c4": 40.08073966731844, - "c5": 32.017665351083366, - "c6": -10.685033105359299, - "c7": 4.11802904178743 + "points": { + "c1": 7.462192665444441, + "c2": 6.335566239875405, + "c3": -33.35104120804439, + "c4": 27.70405845027352, + "c5": 6.348770211717387, + "c6": 30.13498381170271, + "c7": 29.102742192702976 }, - "vertexSeeds": { - "c1": 3.7364539755320814, - "c2": 3.8144416376821346, - "c3": 3.925504000877582, - "c4": 3.6421858593376943, - "c5": 3.606575007872721, - "c6": 3.8196715658764706, - "c7": 3.74567665086743 + "offsets": { + "c1": 6.601941747572816, + "c2": 5.658807212205269, + "c3": 4.715672676837721, + "c4": 3.7725381414701817, + "c5": 2.8294036061026344, + "c6": 1.8862690707350867, + "c7": 0.9431345353675477 }, "rgb": [86, 146, 138] }, @@ -393369,23 +393369,23 @@ "year": 1808, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": -37.55822985717923, - "c2": 14.57684340122833, - "c3": -33.60075418981746, - "c4": 13.876136853389177, - "c5": -9.191044784421614, - "c6": 15.472850184347436, - "c7": -38.16750479656848 + "points": { + "c1": -10.33135012757166, + "c2": 27.809887734385626, + "c3": 34.173799864594315, + "c4": 16.369786687845576, + "c5": -12.255959782777904, + "c6": -28.1703684676916, + "c7": -14.597107070900371 }, - "vertexSeeds": { - "c1": 5.197617218513649, - "c2": 5.086753712502488, - "c3": 5.1584828971414245, - "c4": 4.901798697146682, - "c5": 4.8456794794700135, - "c6": 5.016224125592303, - "c7": 5.089798173860972 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -393396,23 +393396,23 @@ "year": 1807, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 8.69051700030169, - "c2": -13.668153488827276, - "c3": -20.842649817127224, - "c4": -3.234653877095319, - "c5": -0.3308669653971066, - "c6": -13.434454829789892, - "c7": 3.149511747402123 + "points": { + "c1": -13.9391673074525, + "c2": 32.1028903868339, + "c3": 29.353219899122777, + "c4": 6.838792303056678, + "c5": -2.125137728929708, + "c6": -28.231101417317664, + "c7": 3.3545791203641073 }, - "vertexSeeds": { - "c1": 5.232215186014926, - "c2": 5.189808161082652, - "c3": 4.765472155298949, - "c4": 4.961584850836487, - "c5": 4.843145136472746, - "c6": 5.089304714580641, - "c7": 5.201842153242639 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020807, + "c3": 6.3337956541840095, + "c4": 5.067036523347211, + "c5": 3.8002773925103948, + "c6": 2.5335182616736054, + "c7": 1.2667591308367983 }, "rgb": [86, 146, 138] }, @@ -393423,23 +393423,23 @@ "year": 1807, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 20.904166126991054, - "c2": -5.7513158674750215, - "c3": 29.995864474798136, - "c4": -15.576632434840993, - "c5": -23.804779198843082, - "c6": -18.601417069743036, - "c7": -11.12086059954472 + "points": { + "c1": -19.1494216226748, + "c2": 1.8065203612043845, + "c3": -21.06363022979147, + "c4": 16.883627886654438, + "c5": -24.05436649281407, + "c6": -24.01022608913017, + "c7": 26.867028395283818 }, - "vertexSeeds": { - "c1": 2.0530751173900597, - "c2": 1.842580444195813, - "c3": 1.8401468102811556, - "c4": 1.9721277025431203, - "c5": 2.065070942146921, - "c6": 1.9399966743946175, - "c7": 1.9953572807014632 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.0235783633841877, + "c3": 2.519648636153489, + "c4": 2.0157189089227905, + "c5": 1.511789181692092, + "c6": 1.0078594544613935, + "c7": 0.503929727230695 }, "rgb": [222, 0, 59] }, @@ -393450,23 +393450,23 @@ "year": 1807, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -4.038373470407098, - "c2": 29.02466612922332, - "c3": 22.492394783059325, - "c4": 18.784100909949714, - "c5": 4.707512160899306, - "c6": 21.810007403031662, - "c7": 21.970266365733956 + "points": { + "c1": -8.77097612856376, + "c2": -21.80401920528272, + "c3": 8.452290640609178, + "c4": -33.096662088518215, + "c5": 30.79869709821861, + "c6": -30.855932328019108, + "c7": 28.86078609606301 }, - "vertexSeeds": { - "c1": 2.0975364176742275, - "c2": 1.99565808448959, - "c3": 2.1147326883759385, - "c4": 2.0433662670658514, - "c5": 1.9943443901515616, - "c6": 2.080467515799591, - "c7": 2.0487519430029573 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.588996763754045, + "c4": 2.071197411003236, + "c5": 1.5533980582524272, + "c6": 1.035598705501618, + "c7": 0.517799352750809 }, "rgb": [77, 76, 132] }, @@ -393477,23 +393477,23 @@ "year": 1807, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -31.2035638765695, - "c2": 9.282077935488374, - "c3": -8.322808800535029, - "c4": -31.653971553555483, - "c5": 18.731786854700367, - "c6": 25.163087024082245, - "c7": -7.435898674104475 + "points": { + "c1": 20.749621895899878, + "c2": 32.35220191313629, + "c3": -6.652709141063507, + "c4": 26.05098657001622, + "c5": 15.141047098164627, + "c6": 4.7315451108610915, + "c7": 17.940064271680612 }, - "vertexSeeds": { - "c1": 4.647404187862036, - "c2": 4.6386790046661055, - "c3": 4.301009007059074, - "c4": 4.459727948387813, - "c5": 4.63320674488723, - "c6": 4.289565149531611, - "c7": 4.407891594897107 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497918, + "c3": 6.033287101248265, + "c4": 4.826629680998612, + "c5": 3.619972260748959, + "c6": 2.413314840499306, + "c7": 1.206657420249653 }, "rgb": [222, 0, 59] }, @@ -393504,23 +393504,23 @@ "year": 1807, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -0.3832509863446809, - "c2": 24.070248797878456, - "c3": 7.427134402171241, - "c4": 9.806680736542894, - "c5": 4.907441343511579, - "c6": -25.682423616278435, - "c7": -7.300604153957234 + "points": { + "c1": -31.324791850154856, + "c2": 22.62581204638481, + "c3": -0.7794113819030954, + "c4": -10.394355134087505, + "c5": 22.240595116997554, + "c6": 25.486311402771946, + "c7": -26.7565102864338 }, - "vertexSeeds": { - "c1": 2.506476683937824, - "c2": 2.506476683937824, - "c3": 2.506476683937824, - "c4": 2.506476683937824, - "c5": 2.506476683937824, - "c6": 2.506476683937824, - "c7": 2.506476683937824 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -393531,23 +393531,23 @@ "year": 1808, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -23.983821328844343, - "c2": -35.07166641885238, - "c3": -13.972759467922689, - "c4": -33.88983296984313, - "c5": -11.30969688187096, - "c6": -34.6999450029957, - "c7": 18.407958678238174 + "points": { + "c1": 10.22063561492083, + "c2": -29.202154559258535, + "c3": -14.153774300026441, + "c4": -11.83758692022231, + "c5": -10.269749116119055, + "c6": -22.67811719376767, + "c7": 10.122574499300896 }, - "vertexSeeds": { - "c1": 4.665518617813381, - "c2": 4.12260464914613, - "c3": 4.107658510477, - "c4": 4.772772434869192, - "c5": 4.543609652588367, - "c6": 4.759785436173104, - "c7": 4.692354380562268 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975033, + "c3": 5.73277854831253, + "c4": 4.586222838650022, + "c5": 3.4396671289875194, + "c6": 2.293111419325011, + "c7": 1.1465557096625085 }, "rgb": [238, 201, 159] }, @@ -393558,23 +393558,23 @@ "year": 1807, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 24.45032312358798, - "c2": -9.83241694124915, - "c3": -27.100411530026715, - "c4": -8.874120036371426, - "c5": -15.516352912396883, - "c6": 0.2485807652904839, - "c7": -19.537958390218442 + "points": { + "c1": 12.172590438574936, + "c2": 32.66209653934607, + "c3": -9.305211739882484, + "c4": 8.287734930660797, + "c5": 11.447660265508297, + "c6": -5.086852964968148, + "c7": 4.972877703135339 }, - "vertexSeeds": { - "c1": 0.7785509356951377, - "c2": 0.7745478792712844, - "c3": 0.8662299342943164, - "c4": 0.8615789735303443, - "c5": 0.801596375734232, - "c6": 0.8018419640387344, - "c7": 0.8509084322744377 + "offsets": { + "c1": 1.4886731391585761, + "c2": 1.2760055478502075, + "c3": 1.063337956541839, + "c4": 0.8506703652334724, + "c5": 0.6380027739251037, + "c6": 0.42533518261673525, + "c7": 0.21266759130836851 }, "rgb": [86, 146, 138] }, @@ -393585,23 +393585,23 @@ "year": 1808, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 19.37469964493951, - "c2": -16.018603979171687, - "c3": -27.946783166117946, - "c4": 19.404670137716252, - "c5": -7.605866425737865, - "c6": -3.196059267378473, - "c7": -35.91246475366463 + "points": { + "c1": -6.726761858213514, + "c2": -38.823270314767875, + "c3": 24.18461881653512, + "c4": -18.250044628048865, + "c5": -8.892419889770323, + "c6": -34.32073704264225, + "c7": -14.294725554962557 }, - "vertexSeeds": { - "c1": 7.6691617545549695, - "c2": 7.301999231684141, - "c3": 7.287696900223462, - "c4": 7.290321091258936, - "c5": 7.210710736530685, - "c6": 7.348255260693654, - "c7": 7.377414915735699 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.09570041608876, + "c3": 9.246417013407314, + "c4": 7.397133610725845, + "c5": 5.54785020804438, + "c6": 3.6985668053629133, + "c7": 1.8492834026814664 }, "rgb": [58, 15, 49] }, @@ -393612,23 +393612,23 @@ "year": 1807, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -23.42291770688717, - "c2": 12.746778274867445, - "c3": -17.280693638863127, - "c4": 30.53268625868089, - "c5": -19.673934360257704, - "c6": -24.627389981876235, - "c7": 20.714647922011466 + "points": { + "c1": -0.02763220578849257, + "c2": 18.15760097643625, + "c3": -7.368113994455715, + "c4": 19.179024257060597, + "c5": -27.473866293445138, + "c6": 29.360359828641947, + "c7": 0.7598417359542537 }, - "vertexSeeds": { - "c1": 5.660438017539909, - "c2": 5.660678713302519, - "c3": 5.730259368913053, - "c4": 5.667594366403566, - "c5": 5.581665311886908, - "c6": 5.691063171852713, - "c7": 5.662044395887931 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905658, + "c3": 6.842348589921415, + "c4": 5.473878871937105, + "c5": 4.105409153952863, + "c6": 2.7369394359685524, + "c7": 1.3684697179843102 }, "rgb": [86, 146, 138] }, @@ -393639,23 +393639,23 @@ "year": 1808, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 19.407053929011205, - "c2": -30.45257583551338, - "c3": -2.8928137543054575, - "c4": -28.219404899694467, - "c5": 1.071558939221262, - "c6": -7.980008330816911, - "c7": 0.8893884802274385 + "points": { + "c1": 29.96815642102912, + "c2": 17.989670570834633, + "c3": 2.9874135880737853, + "c4": 15.687708125075766, + "c5": -24.607901324218556, + "c6": -10.332839235757728, + "c7": -32.94716012035625 }, - "vertexSeeds": { - "c1": 4.705282421844778, - "c2": 4.805923151348272, - "c3": 4.661910747863584, - "c4": 4.808574795104056, - "c5": 4.985926975347913, - "c6": 5.0360501996908, - "c7": 4.840026525863555 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497916, + "c3": 6.03328710124827, + "c4": 4.8266296809986144, + "c5": 3.619972260748958, + "c6": 2.4133148404993023, + "c7": 1.2066574202496558 }, "rgb": [58, 15, 49] }, @@ -393666,23 +393666,23 @@ "year": 1808, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 3.256672485169105, - "c2": -25.80730857381902, - "c3": 12.887595553488389, - "c4": -28.49705185642589, - "c5": -17.12750318220186, - "c6": 11.258326422045222, - "c7": 17.126473949260664 + "points": { + "c1": -12.639039059883956, + "c2": -23.202384291429535, + "c3": 17.215601179466383, + "c4": -31.959749020582727, + "c5": 32.64497874402461, + "c6": 29.304038861549913, + "c7": -6.3667605515350445 }, - "vertexSeeds": { - "c1": 4.99999072630066, - "c2": 5.1978661637509544, - "c3": 4.994489108483135, - "c4": 5.188621447230532, - "c5": 4.836727993698155, - "c6": 4.974781098933966, - "c7": 5.042917991171433 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859925, + "c3": 6.241331484049928, + "c4": 4.99306518723995, + "c5": 3.7447988904299625, + "c6": 2.496532593619975, + "c7": 1.2482662968099876 }, "rgb": [77, 76, 132] }, @@ -393693,23 +393693,23 @@ "year": 1807, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -1.4048347790654852, - "c2": -23.509382108213593, - "c3": 22.861525686157815, - "c4": -19.923549062261074, - "c5": 19.299880567983873, - "c6": 10.394688675539523, - "c7": -14.89288328603011 + "points": { + "c1": 33.312234611111094, + "c2": 20.255646098469917, + "c3": -9.031243768456775, + "c4": -4.810346655355925, + "c5": -26.631186854523087, + "c6": 22.693040128845702, + "c7": -13.621804509175195 }, - "vertexSeeds": { - "c1": 5.932976632356321, - "c2": 5.928753133045331, - "c3": 6.202799812124645, - "c4": 5.895120806455067, - "c5": 5.96360648272953, - "c6": 5.979788322169469, - "c7": 5.79804610965798 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.9875173370319, + "c3": 7.489597780859917, + "c4": 5.991678224687933, + "c5": 4.49375866851595, + "c6": 2.9958391123439667, + "c7": 1.4979195561719834 }, "rgb": [86, 146, 138] }, @@ -393720,23 +393720,23 @@ "year": 1808, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 28.661362655839042, - "c2": 31.14471720039961, - "c3": 25.967836647879054, - "c4": 31.255092508289025, - "c5": 13.500429462293141, - "c6": -38.75607486091133, - "c7": -19.04426486625142 + "points": { + "c1": 32.092239987569826, + "c2": -12.848716204227184, + "c3": -6.0799141487837645, + "c4": -42.36732570544153, + "c5": -4.85969404706799, + "c6": -4.871832240086739, + "c7": -39.60186417450178 }, - "vertexSeeds": { - "c1": 4.043967825553126, - "c2": 4.024200124056701, - "c3": 3.908647958204033, - "c4": 4.038135560020191, - "c5": 3.9460606203253468, - "c6": 4.0014479235315035, - "c7": 3.9180315561063246 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.82524271844661, + "c3": 4.854368932038832, + "c4": 3.883495145631074, + "c5": 2.9126213592232952, + "c6": 1.941747572815537, + "c7": 0.970873786407778 }, "rgb": [238, 201, 159] }, @@ -393747,23 +393747,23 @@ "year": 1807, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -15.043938683476338, - "c2": -14.708196852629975, - "c3": 16.161170824060125, - "c4": -22.36307100914183, - "c5": -28.86776068642458, - "c6": -3.32932699194307, - "c7": 0.7252544811358419 + "points": { + "c1": -11.504532256150373, + "c2": 26.416579979970862, + "c3": 7.056538273605611, + "c4": -24.41607531174394, + "c5": -12.30201814663986, + "c6": -2.795309734667068, + "c7": -4.058700829329851 }, - "vertexSeeds": { - "c1": 7.147363121408889, - "c2": 6.774227297600852, - "c3": 6.891349521276608, - "c4": 6.760827679776726, - "c5": 6.732278025094483, - "c6": 6.687747585338965, - "c7": 7.115477690849703 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.45769764216366, + "c3": 8.714748035136385, + "c4": 6.971798428109107, + "c5": 5.22884882108183, + "c6": 3.4858992140545535, + "c7": 1.7429496070272767 }, "rgb": [86, 146, 138] }, @@ -393774,23 +393774,23 @@ "year": 1807, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 18.917539189356077, - "c2": 9.111485697839349, - "c3": 7.020820190226125, - "c4": 31.25090603006724, - "c5": -20.194357177485013, - "c6": 28.961977161713676, - "c7": -22.407556441800573 + "points": { + "c1": -17.66264408767154, + "c2": -13.980084021790617, + "c3": -31.582308614129317, + "c4": -23.32829803509428, + "c5": 21.567982466508973, + "c6": 30.177019073712117, + "c7": -28.440706180160088 }, - "vertexSeeds": { - "c1": 2.081428896011467, - "c2": 2.156750022017137, - "c3": 2.1512185997133124, - "c4": 2.143409163306921, - "c5": 2.0705318176034964, - "c6": 2.1684809508270955, - "c7": 2.0129882053613963 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852972, + "c3": 2.63522884882108, + "c4": 2.1081830790568685, + "c5": 1.581137309292651, + "c6": 1.0540915395284343, + "c7": 0.5270457697642171 }, "rgb": [58, 15, 49] }, @@ -393801,23 +393801,23 @@ "year": 1807, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -15.443447708626243, - "c2": -15.437830293112745, - "c3": 6.364541553897578, - "c4": 28.881234517830922, - "c5": 0.05986634702984617, - "c6": -22.92352266366477, - "c7": 3.2683603650678386 + "points": { + "c1": -3.52342676067601, + "c2": -27.21116024690844, + "c3": -32.150023285992674, + "c4": 6.094243847491747, + "c5": -21.125631475433135, + "c6": -16.913810725776077, + "c7": 3.5272916891905837 }, - "vertexSeeds": { - "c1": 6.822858011473416, - "c2": 6.612376552188659, - "c3": 6.895425565774269, - "c4": 6.680448422746895, - "c5": 6.421447579954095, - "c6": 6.894100986021501, - "c7": 6.871491978809953 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882104, + "c3": 8.552935737401747, + "c4": 6.842348589921407, + "c5": 5.131761442441052, + "c6": 3.421174294960695, + "c7": 1.7105871474803391 }, "rgb": [222, 0, 59] }, @@ -393828,23 +393828,23 @@ "year": 1808, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -11.427159222214588, - "c2": -10.57046801208472, - "c3": -28.4395937108745, - "c4": -35.21350994902472, - "c5": 3.8961427826822614, - "c6": 13.29211907404219, - "c7": 34.69751322843747 + "points": { + "c1": 17.991690384472584, + "c2": 14.942827365195889, + "c3": -37.24618098868171, + "c4": -21.119192461753695, + "c5": -27.273486785798646, + "c6": 10.994200216055098, + "c7": -9.888014672993837 }, - "vertexSeeds": { - "c1": 3.4149222717375065, - "c2": 3.575180320938198, - "c3": 3.5547569753796777, - "c4": 3.4634964384924167, - "c5": 3.40095493784092, - "c6": 3.4830554432879723, - "c7": 3.601723464855526 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642167, + "c3": 4.392048081368465, + "c4": 3.5136384650947745, + "c5": 2.6352288488210833, + "c6": 1.7568192325473817, + "c7": 0.8784096162736909 }, "rgb": [58, 15, 49] }, @@ -393855,23 +393855,23 @@ "year": 1807, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -7.368286420650222, - "c2": 10.463724794862596, - "c3": 28.172449873277902, - "c4": 21.850436376487426, - "c5": 28.8002374148026, - "c6": -20.797979086917707, - "c7": 25.646922521899246 + "points": { + "c1": 29.67152109972609, + "c2": 18.054664690333407, + "c3": 11.007804808702208, + "c4": -18.230646070621457, + "c5": 9.268284611315682, + "c6": 16.26955348811494, + "c7": 20.09633085716113 }, - "vertexSeeds": { - "c1": 7.054669181863706, - "c2": 6.702278356798254, - "c3": 7.051615984078224, - "c4": 7.392358809877882, - "c5": 7.375604401665065, - "c6": 7.204785194065697, - "c7": 6.780304332642713 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364772, + "c3": 8.830328247803976, + "c4": 7.064262598243181, + "c5": 5.298196948682386, + "c6": 3.5321312991215903, + "c7": 1.7660656495607951 }, "rgb": [238, 201, 159] }, @@ -393882,23 +393882,23 @@ "year": 1807, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 27.515391167478818, - "c2": -21.39407379151726, - "c3": -5.92065797368171, - "c4": 25.341120591424463, - "c5": -18.40810843479898, - "c6": 3.642872044660354, - "c7": 5.37320389956944 + "points": { + "c1": -13.217592871598551, + "c2": -5.613157004997817, + "c3": 23.879699715112373, + "c4": -19.21413287294282, + "c5": 22.719637351506343, + "c6": -13.549363067998161, + "c7": -27.119983781747298 }, - "vertexSeeds": { - "c1": 4.440353537337865, - "c2": 4.947244359362776, - "c3": 4.868302135510375, - "c4": 5.067840734986598, - "c5": 5.474085271232148, - "c6": 4.410790686527137, - "c7": 5.398525537945974 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664351, + "c3": 6.703652334720296, + "c4": 5.36292186777624, + "c5": 4.0221914008321775, + "c6": 2.6814609338881183, + "c7": 1.3407304669440592 }, "rgb": [238, 201, 159] }, @@ -393909,23 +393909,23 @@ "year": 1808, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -28.9069986939467, - "c2": -12.085147460023183, - "c3": -3.699847902217858, - "c4": 11.295027419357183, - "c5": 14.179905057596663, - "c6": -19.24547532455729, - "c7": -11.490323325275998 + "points": { + "c1": -20.989773698992213, + "c2": -8.813132018458475, + "c3": -14.680054444657934, + "c4": -32.40014355337578, + "c5": -21.953093165820913, + "c6": 3.6787536700823367, + "c7": -14.654411367946786 }, - "vertexSeeds": { - "c1": 2.7551275536649555, - "c2": 2.6512694141729582, - "c3": 2.629469980125331, - "c4": 2.7102783977034264, - "c5": 2.5178699660985124, - "c6": 2.6770491746363456, - "c7": 2.79373297264962 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153953, + "c3": 3.5367545076282934, + "c4": 2.8294036061026344, + "c5": 2.122052704576975, + "c6": 1.4147018030513157, + "c7": 0.7073509015256565 }, "rgb": [58, 15, 49] }, @@ -393936,23 +393936,23 @@ "year": 1808, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 34.53779011822969, - "c2": -8.250969196223274, - "c3": 23.065319054545498, - "c4": -1.5543044771607697, - "c5": -35.760349453122345, - "c6": -6.262735020470245, - "c7": -8.504088047282117 + "points": { + "c1": -3.290026612227294, + "c2": -15.148343067546435, + "c3": 25.115168594025313, + "c4": -7.330484347464115, + "c5": 25.94384333468023, + "c6": 5.143656444375885, + "c7": -32.223882873122825 }, - "vertexSeeds": { - "c1": 3.211738871161759, - "c2": 3.330520459255266, - "c3": 2.6910204522379964, - "c4": 3.3447157784337045, - "c5": 3.0004709238230327, - "c6": 3.054068701463931, - "c7": 3.418708580632127 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239946, + "c3": 4.160887656033287, + "c4": 3.328710124826631, + "c5": 2.496532593619971, + "c6": 1.6643550624133154, + "c7": 0.8321775312066595 }, "rgb": [58, 15, 49] }, @@ -393963,23 +393963,23 @@ "year": 1807, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -11.979912590880687, - "c2": -16.097451099426003, - "c3": 28.1852755580299, - "c4": -7.552313493133973, - "c5": -23.636408026909855, - "c6": 2.6528696568699672, - "c7": 22.782001885703693 + "points": { + "c1": 28.767175214245725, + "c2": -33.60148214753462, + "c3": -12.710798209495444, + "c4": 31.712380457476826, + "c5": 30.844284875054484, + "c6": 4.528311210257655, + "c7": -24.778934354119606 }, - "vertexSeeds": { - "c1": 5.8095854922279795, - "c2": 5.8095854922279795, - "c3": 5.8095854922279795, - "c4": 5.8095854922279795, - "c5": 5.8095854922279795, - "c6": 5.8095854922279795, - "c7": 5.8095854922279795 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -393990,23 +393990,23 @@ "year": 1807, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 18.930811708028834, - "c2": 28.31112611652471, - "c3": 5.489879128612621, - "c4": -5.240651943721556, - "c5": 15.309207301430433, - "c6": 31.908040612473762, - "c7": -10.486377767915435 + "points": { + "c1": -28.095237135254564, + "c2": 23.273571978783167, + "c3": -2.93546973781919, + "c4": 33.144119540375094, + "c5": -25.153677902903524, + "c6": -17.242150967341416, + "c7": 0.2583744963251604 }, - "vertexSeeds": { - "c1": 5.549621208860004, - "c2": 5.406275946501238, - "c3": 5.952217548057503, - "c4": 5.547997318261371, - "c5": 5.927361121841193, - "c6": 5.488790856840256, - "c7": 5.511639675828367 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [77, 76, 132] }, @@ -394017,23 +394017,23 @@ "year": 1808, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 29.335030670035408, - "c2": 1.820491965216256, - "c3": 20.297704842107493, - "c4": -1.9925790000013066, - "c5": -25.373090230974256, - "c6": 5.569917228973253, - "c7": 15.838878471109844 + "points": { + "c1": 32.97618407464343, + "c2": 0.7120842834910377, + "c3": -35.49124935192112, + "c4": 13.151526217833826, + "c5": -30.642022658626225, + "c6": 35.89156084225252, + "c7": -32.49714970935402 }, - "vertexSeeds": { - "c1": 3.5020183982796604, - "c2": 3.3207665362084646, - "c3": 3.4039625304381484, - "c4": 3.51486410140103, - "c5": 3.44312226708239, - "c6": 3.452872559987767, - "c7": 3.31929586432427 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320388, + "c3": 4.207119741100324, + "c4": 3.3656957928802584, + "c5": 2.524271844660194, + "c6": 1.6828478964401292, + "c7": 0.8414239482200646 }, "rgb": [77, 76, 132] }, @@ -394044,23 +394044,23 @@ "year": 1808, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -1.4507266737043594, - "c2": -16.233772711272298, - "c3": -29.280996507362012, - "c4": -21.490818237041537, - "c5": 27.32015256433546, - "c6": -4.764111011240793, - "c7": 0.4331232005328971 + "points": { + "c1": 16.12741498312169, + "c2": 25.172893857130987, + "c3": -30.327475621807352, + "c4": -7.874074924545276, + "c5": -17.078690432128678, + "c6": 22.356337986760842, + "c7": 20.877671019369927 }, - "vertexSeeds": { - "c1": 7.088387873670297, - "c2": 7.647316098156898, - "c3": 7.05993357928898, - "c4": 7.520925034321277, - "c5": 7.468395669155464, - "c6": 7.288324054401078, - "c7": 7.33144945632194 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407298, + "c4": 7.397133610725835, + "c5": 5.54785020804439, + "c6": 3.698566805362927, + "c7": 1.8492834026814635 }, "rgb": [58, 15, 49] }, @@ -394071,23 +394071,23 @@ "year": 1807, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 14.299066483929476, - "c2": -10.286004981595887, - "c3": -2.1139476945864075, - "c4": 3.9686470846660207, - "c5": -14.273126532107486, - "c6": -11.647938479093344, - "c7": -26.306716289614442 + "points": { + "c1": 21.282053563757852, + "c2": 9.924306535459625, + "c3": 1.5093241566571614, + "c4": -14.886342831556732, + "c5": 8.534581232752846, + "c6": 21.391614355679085, + "c7": 7.7568115305274965 }, - "vertexSeeds": { - "c1": 5.787927788344122, - "c2": 5.989738299173484, - "c3": 5.726365742278538, - "c4": 5.968554621075346, - "c5": 5.620700777557389, - "c6": 5.7587029171867465, - "c7": 5.512839014839727 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -394098,23 +394098,23 @@ "year": 1808, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 15.475340144529575, - "c2": 13.431058988198025, - "c3": 6.124930231213639, - "c4": -19.90504528114038, - "c5": -7.831218858996163, - "c6": 6.026770518217361, - "c7": 20.63977645839236 + "points": { + "c1": -2.7660356654583538, + "c2": -29.370671053041, + "c3": 28.08942880620014, + "c4": -28.842598945239978, + "c5": -30.87922220855572, + "c6": -33.25125509950633, + "c7": 15.45655902560349 }, - "vertexSeeds": { - "c1": 7.398519714121865, - "c2": 7.194548997497946, - "c3": 7.368879676705724, - "c4": 6.813634900073763, - "c5": 6.959867011147547, - "c6": 7.414771155533582, - "c7": 6.9003551515540975 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148405, + "c3": 8.85344429033749, + "c4": 7.08275543227, + "c5": 5.3120665742024915, + "c6": 3.541377716135, + "c7": 1.770688858067509 }, "rgb": [77, 76, 132] }, @@ -394125,23 +394125,23 @@ "year": 1808, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 51.23617238085516, - "c2": 19.375637063533524, - "c3": -47.78640068582711, - "c4": 3.0737395003917385, - "c5": 36.75065853848022, - "c6": 36.62150008641466, - "c7": -19.22745104707049 + "points": { + "c1": 23.632986343392695, + "c2": -9.009111609845739, + "c3": 32.54868750052257, + "c4": -36.763144877049, + "c5": -41.45957770469568, + "c6": -46.170475223368, + "c7": 0.8743241315235295 }, - "vertexSeeds": { - "c1": 9.892558970358886, - "c2": 9.945981267900388, - "c3": 9.77367431354668, - "c4": 9.968132058195458, - "c5": 9.978553715742493, - "c6": 9.887431890933303, - "c7": 9.950862176294784 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156713, + "c3": 12.159038372630583, + "c4": 9.72723069810445, + "c5": 7.2954230235783974, + "c6": 4.863615349052266, + "c7": 2.431807674526133 }, "rgb": [86, 146, 138] }, @@ -394152,23 +394152,23 @@ "year": 1808, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 13.622292393625443, - "c2": 9.925792809592458, - "c3": 20.791529521392533, - "c4": 18.021787789349638, - "c5": 7.32728598520589, - "c6": 11.439017348723247, - "c7": -33.72868723030983 + "points": { + "c1": -30.193921379247264, + "c2": 31.44260045525165, + "c3": 24.64287301862344, + "c4": 29.47237660481106, + "c5": -28.058895391422833, + "c6": 33.627608984444734, + "c7": 5.784991846885276 }, - "vertexSeeds": { - "c1": 6.075755211200558, - "c2": 6.067040946037757, - "c3": 6.110067202365606, - "c4": 6.172566784544016, - "c5": 6.187297008712379, - "c6": 6.1318243016104725, - "c7": 6.178015117607423 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.12621359223301, + "c3": 7.605177993527509, + "c4": 6.084142394822006, + "c5": 4.563106796116505, + "c6": 3.042071197411003, + "c7": 1.5210355987055015 }, "rgb": [222, 0, 59] }, @@ -394179,23 +394179,23 @@ "year": 1807, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 17.483483420066467, - "c2": -21.37843380191233, - "c3": 29.2690089917897, - "c4": -0.12237430434809937, - "c5": -11.03082569635022, - "c6": -22.517734495807755, - "c7": -18.020824196653816 + "points": { + "c1": 31.898668895708482, + "c2": 14.909282094464423, + "c3": -14.467153948753865, + "c4": -1.5485935274819411, + "c5": 29.482699567367973, + "c6": 15.779932308591057, + "c7": 9.716937627681588 }, - "vertexSeeds": { - "c1": 5.8316934794113795, - "c2": 6.309846018656165, - "c3": 6.234726244006592, - "c4": 6.115146059115694, - "c5": 6.060319818171273, - "c6": 6.133219889230646, - "c7": 5.7675649654554855 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233004, + "c3": 7.6051779935275166, + "c4": 6.08414239482201, + "c5": 4.563106796116502, + "c6": 3.0420711974109955, + "c7": 1.5210355987055069 }, "rgb": [58, 15, 49] }, @@ -394206,23 +394206,23 @@ "year": 1807, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 6.676714185027951, - "c2": 14.191755267752452, - "c3": 20.43943745532449, - "c4": -4.805324841753553, - "c5": -22.61368039118572, - "c6": 8.25101381743109, - "c7": 21.016290075910415 + "points": { + "c1": 4.897477707555101, + "c2": 1.8658785075538624, + "c3": -6.7890537125750505, + "c4": 13.817026171033948, + "c5": 10.678222141818662, + "c6": -7.312531163167872, + "c7": 20.5127777608384 }, - "vertexSeeds": { - "c1": 5.6837148237334825, - "c2": 5.9839879150311575, - "c3": 5.815770774762873, - "c4": 5.9581065734887035, - "c5": 5.519494162784182, - "c6": 5.889467676165241, - "c7": 5.834449319694091 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -394233,23 +394233,23 @@ "year": 1807, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -8.220585525882221, - "c2": 3.5746011497950008, - "c3": 27.629874551923805, - "c4": 8.2736902298765, - "c5": 27.63359049154389, - "c6": -26.811120759798193, - "c7": -1.7152494891972268 + "points": { + "c1": -30.548798511133462, + "c2": 30.830638061012053, + "c3": -28.423748099158942, + "c4": -12.807245388267905, + "c5": -5.053330474726749, + "c6": 12.800004083807941, + "c7": 31.831744397805736 }, - "vertexSeeds": { - "c1": 12.946077853468212, - "c2": 14.315625961297156, - "c3": 13.755333593574118, - "c4": 13.481863182974346, - "c5": 13.634962980102056, - "c6": 13.218768019425852, - "c7": 12.712304063288963 + "offsets": { + "c1": 24.110032362459545, + "c2": 20.665742024965322, + "c3": 17.221451687471095, + "c4": 13.777161349976872, + "c5": 10.332871012482675, + "c6": 6.888580674988449, + "c7": 3.4442903374942246 }, "rgb": [86, 146, 138] }, @@ -394260,23 +394260,23 @@ "year": 1807, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 7.073694125255344, - "c2": -20.46962277266023, - "c3": -15.53568992936674, - "c4": -8.141301172260693, - "c5": 0.07204599056095518, - "c6": -5.801581296782619, - "c7": -23.820109266778452 + "points": { + "c1": -27.097049775317295, + "c2": -17.181090183165452, + "c3": -22.320562867711494, + "c4": 27.141711127047756, + "c5": 1.971297858726274, + "c6": 2.0620932767255624, + "c7": 20.58364938230698 }, - "vertexSeeds": { - "c1": 6.01986959559736, - "c2": 5.935706295547622, - "c3": 6.059983712219263, - "c4": 5.93449921390779, - "c5": 6.002043261784066, - "c6": 5.990904864094691, - "c7": 6.048954171158252 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589459, + "c3": 7.235321312991217, + "c4": 5.788257050392973, + "c5": 4.341192787794729, + "c6": 2.8941285251964866, + "c7": 1.4470642625982433 }, "rgb": [238, 201, 159] }, @@ -394287,23 +394287,23 @@ "year": 1808, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 6.418041092758699, - "c2": 24.635323856870095, - "c3": 28.799041805288432, - "c4": -30.131170410715796, - "c5": -27.888352413847453, - "c6": 7.0547279886598915, - "c7": -32.976023340830864 + "points": { + "c1": -15.688985875335138, + "c2": 5.724555498357425, + "c3": 22.44384990015829, + "c4": 36.903484924178166, + "c5": -24.433654516979356, + "c6": -19.267187357054425, + "c7": 3.2504324898939103 }, - "vertexSeeds": { - "c1": 3.2091271103009835, - "c2": 3.251983232768365, - "c3": 3.2462223524162956, - "c4": 3.23205157210814, - "c5": 3.236196448363326, - "c6": 3.258136492847971, - "c7": 3.217016930919705 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797526, + "c3": 3.9066111881645793, + "c4": 3.1252889505316843, + "c5": 2.3439667128987374, + "c6": 1.5626444752658422, + "c7": 0.7813222376329468 }, "rgb": [222, 0, 59] }, @@ -394314,23 +394314,23 @@ "year": 1807, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -0.48354885817513704, - "c2": -1.6548727113282062, - "c3": 2.0842192533074098, - "c4": 4.525400458265917, - "c5": -13.071322512381961, - "c6": -4.43675258818563, - "c7": 26.58561774232434 + "points": { + "c1": -25.043271591978282, + "c2": 12.002923805925445, + "c3": -6.106563970613934, + "c4": -25.424210063717506, + "c5": 23.687844623287592, + "c6": 15.939658046033966, + "c7": 17.334963963365308 }, - "vertexSeeds": { - "c1": 5.774598048338552, - "c2": 5.923344910995862, - "c3": 5.749145192577882, - "c4": 5.490103185011392, - "c5": 6.003012253972065, - "c6": 5.532381063849558, - "c7": 5.5569838668467435 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [86, 146, 138] }, @@ -394341,23 +394341,23 @@ "year": 1808, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 19.356229915351022, - "c2": -33.46695582889134, - "c3": 0.5303364681312885, - "c4": -17.254724376858068, - "c5": -11.624636227954884, - "c6": -21.742091063766534, - "c7": 20.53016143324502 + "points": { + "c1": -22.77296914709553, + "c2": 23.51719955297417, + "c3": -4.861787562580631, + "c4": -4.202749748037448, + "c5": 14.599794347406508, + "c6": -31.226290085753657, + "c7": -11.528427608695466 }, - "vertexSeeds": { - "c1": 6.837439353273312, - "c2": 7.335876536575831, - "c3": 6.7945653432235105, - "c4": 6.686963438125338, - "c5": 7.478301865376135, - "c6": 6.470350181324625, - "c7": 6.410483157899772 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766989, + "c3": 9.061488673139158, + "c4": 7.249190938511326, + "c5": 5.4368932038834945, + "c6": 3.624595469255663, + "c7": 1.8122977346278315 }, "rgb": [238, 201, 159] }, @@ -394368,23 +394368,23 @@ "year": 1807, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -13.90097877912073, - "c2": -25.813935409476525, - "c3": 13.34208088138049, - "c4": 4.331773716418301, - "c5": -10.919857540863646, - "c6": -9.061520148112422, - "c7": -23.056674036444186 + "points": { + "c1": -5.0721700353266534, + "c2": 15.871512895795163, + "c3": 16.433662229002742, + "c4": 29.14122224545485, + "c5": -22.206981944983756, + "c6": 14.780078537557586, + "c7": -11.827733955773539 }, - "vertexSeeds": { - "c1": 5.717478131556092, - "c2": 5.72232422372458, - "c3": 5.919300736380351, - "c4": 5.772239456686341, - "c5": 6.056321429352597, - "c6": 5.576002191748091, - "c7": 5.577853680856249 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629674, + "c3": 7.258437355524737, + "c4": 5.806749884419783, + "c5": 4.355062413314846, + "c6": 2.9033749422098913, + "c7": 1.4516874711049546 }, "rgb": [238, 201, 159] }, @@ -394395,23 +394395,23 @@ "year": 1807, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -14.885222129646305, - "c2": -12.65326357085469, - "c3": 13.070425467467217, - "c4": -5.345618283971842, - "c5": -16.030179783593578, - "c6": -11.955521258711155, - "c7": 9.269712019848576 + "points": { + "c1": 25.191045615073307, + "c2": -11.061419870868122, + "c3": -23.274184013233302, + "c4": -11.708863438443085, + "c5": -16.765887243586064, + "c6": -21.265878456992418, + "c7": -27.600428754544104 }, - "vertexSeeds": { - "c1": 5.697963867797091, - "c2": 5.45117237290699, - "c3": 5.194583943703914, - "c4": 5.295551935850028, - "c5": 5.6074770163425836, - "c6": 5.234604513586448, - "c7": 5.292659607255162 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986128, + "c3": 6.888580674988437, + "c4": 5.510864539990746, + "c5": 4.133148404993055, + "c6": 2.755432269995382, + "c7": 1.377716134997691 }, "rgb": [222, 0, 59] }, @@ -394422,23 +394422,23 @@ "year": 1808, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 22.865843450411298, - "c2": 28.876319585590245, - "c3": 20.225439200989385, - "c4": -14.538460273881796, - "c5": -34.227950953398704, - "c6": -19.346868752468723, - "c7": -28.55746925087883 + "points": { + "c1": 0.06424376670745602, + "c2": -15.495408132973562, + "c3": -41.90433134248056, + "c4": -23.932213195295223, + "c5": 43.2720812921167, + "c6": -24.152536244115012, + "c7": -44.889922663197524 }, - "vertexSeeds": { - "c1": 2.3057484531434005, - "c2": 2.952277506946768, - "c3": 3.39827210330934, - "c4": 3.3189831738539084, - "c5": 2.1048937105755656, - "c6": 3.047610400876848, - "c7": 2.096671904978186 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079057, + "c3": 4.068423485899213, + "c4": 3.2547387887193704, + "c5": 2.441054091539529, + "c6": 1.6273693943596856, + "c7": 0.8136846971798424 }, "rgb": [58, 15, 49] }, @@ -394449,23 +394449,23 @@ "year": 1808, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -35.90720188895511, - "c2": -24.56326011944965, - "c3": -2.814793948735975, - "c4": 6.642441211514445, - "c5": 0.9822436932047935, - "c6": 34.82699619792653, - "c7": -16.81751613026553 + "points": { + "c1": 17.19399995616537, + "c2": 31.471348517243626, + "c3": 11.031019558451085, + "c4": 24.980444176209843, + "c5": -32.55164471616, + "c6": 22.216369002000825, + "c7": 21.913961437099665 }, - "vertexSeeds": { - "c1": 6.872972479467911, - "c2": 5.285614282294825, - "c3": 6.957961628102406, - "c4": 6.399331492761835, - "c5": 7.4525707492621445, - "c6": 6.622869305734641, - "c7": 7.404997707316052 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407303, + "c4": 7.397133610725842, + "c5": 5.5478502080443794, + "c6": 3.6985668053629226, + "c7": 1.8492834026814613 }, "rgb": [77, 76, 132] }, @@ -394476,23 +394476,23 @@ "year": 1807, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 24.58977303372898, - "c2": -15.51568192159736, - "c3": -9.70777519687072, - "c4": -26.151027389601268, - "c5": 15.872562469602862, - "c6": -13.442265756177278, - "c7": 23.212251448332992 + "points": { + "c1": 29.309050223908827, + "c2": -9.453734582205044, + "c3": 18.279344771655325, + "c4": -15.851353550400184, + "c5": -28.280088770162763, + "c6": 21.072200682132937, + "c7": -22.3931688719381 }, - "vertexSeeds": { - "c1": 5.961988780668092, - "c2": 5.960231107296819, - "c3": 5.957050194950874, - "c4": 5.954003047346973, - "c5": 6.007849360525022, - "c6": 5.98661466261477, - "c7": 5.947848375930332 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509056, + "c3": 7.189089227924262, + "c4": 5.751271382339324, + "c5": 4.313453536754528, + "c6": 2.8756356911697334, + "c7": 1.4378178455847952 }, "rgb": [222, 0, 59] }, @@ -394503,23 +394503,23 @@ "year": 1807, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 16.471914626124835, - "c2": 0.26397245051366625, - "c3": 18.57837072120813, - "c4": -11.583559055071532, - "c5": -16.637935922043066, - "c6": 24.77254518187778, - "c7": -7.389002286299277 + "points": { + "c1": 25.40905854190254, + "c2": 27.820695785466448, + "c3": -5.991332590502992, + "c4": -16.467262594672086, + "c5": 23.421633525841962, + "c6": -5.856351157247687, + "c7": 29.251010095665926 }, - "vertexSeeds": { - "c1": 2.840632661973015, - "c2": 2.7481772850863524, - "c3": 2.922370610135112, - "c4": 2.7373483227960307, - "c5": 2.6488478307562, - "c6": 2.723718070136759, - "c7": 2.7443390537389885 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.5136384650947794, + "c4": 2.8109107720758217, + "c5": 2.1081830790568645, + "c6": 1.4054553860379073, + "c7": 0.7027276930189573 }, "rgb": [222, 0, 59] }, @@ -394530,23 +394530,23 @@ "year": 1808, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -8.717747660352742, - "c2": -32.35032613016023, - "c3": -28.20554729263749, - "c4": -20.785726773325315, - "c5": 6.295868579928957, - "c6": 27.587818571174118, - "c7": -26.688911286272422 + "points": { + "c1": 25.74469035565221, + "c2": -13.205513510720465, + "c3": 7.799647693253327, + "c4": 14.821234147473788, + "c5": -35.209117982568536, + "c6": 13.949425658106968, + "c7": -23.217889476385512 }, - "vertexSeeds": { - "c1": 5.477958598048093, - "c2": 5.583328128313946, - "c3": 5.580061157813554, - "c4": 5.468301852487486, - "c5": 5.55778440983499, - "c6": 5.561601750749558, - "c7": 5.316344017743514 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.7267683772538165, + "c4": 5.381414701803046, + "c5": 4.036061026352294, + "c6": 2.690707350901523, + "c7": 1.3453536754507522 }, "rgb": [222, 0, 59] }, @@ -394557,23 +394557,23 @@ "year": 1808, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -6.69325534328274, - "c2": -23.56995199272432, - "c3": -8.789856343930833, - "c4": 25.37350563491112, - "c5": -16.42746653323916, - "c6": -27.47075088383353, - "c7": 3.1549515606411163 + "points": { + "c1": 34.65440010817994, + "c2": 18.222795242194287, + "c3": -15.516124718751445, + "c4": -4.10819064465047, + "c5": -27.686273842228477, + "c6": 13.286590235173804, + "c7": 31.916591320725118 }, - "vertexSeeds": { - "c1": 4.513470182895864, - "c2": 4.531234913346471, - "c3": 4.442100145129197, - "c4": 4.492892007088333, - "c5": 4.594335787334939, - "c6": 4.477494019291693, - "c7": 4.576194942888886 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216367, + "c3": 5.871474803513641, + "c4": 4.697179842810915, + "c5": 3.522884882108179, + "c6": 2.3485899214054524, + "c7": 1.1742949607027262 }, "rgb": [238, 201, 159] }, @@ -394584,23 +394584,23 @@ "year": 1808, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -20.3102709971982, - "c2": -2.785187976564991, - "c3": -28.5358119144443, - "c4": -22.221804716674747, - "c5": 3.5351905365607266, - "c6": -29.28544399158819, - "c7": 21.316861153618177 + "points": { + "c1": -21.840832584444122, + "c2": -0.5649737506624888, + "c3": -6.397062054843154, + "c4": 6.793376217626445, + "c5": 1.7537814521947226, + "c6": -31.694848459920305, + "c7": -21.925989392352374 }, - "vertexSeeds": { - "c1": 4.9760591174069155, - "c2": 4.949482167103638, - "c3": 4.976965242516131, - "c4": 4.654764503162286, - "c5": 4.864420240768864, - "c6": 4.648568056334311, - "c7": 4.946531277673409 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658813, + "c3": 6.125751271382331, + "c4": 4.900601017105869, + "c5": 3.6754507628294064, + "c6": 2.4503005085529344, + "c7": 1.225150254276472 }, "rgb": [77, 76, 132] }, @@ -394611,23 +394611,23 @@ "year": 1808, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -26.42567233275312, - "c2": 17.72271363339999, - "c3": 17.503882871650234, - "c4": 5.575220481642901, - "c5": 9.340244243934215, - "c6": 10.466327469303614, - "c7": -22.476710678525944 + "points": { + "c1": 21.900017942990324, + "c2": 3.2820769821945106, + "c3": 8.322230848615895, + "c4": 18.81200519193613, + "c5": 13.727685881182495, + "c6": 30.964640633616888, + "c7": -29.315240049486903 }, - "vertexSeeds": { - "c1": 6.490478397418915, - "c2": 6.475569400075424, - "c3": 6.479485731090152, - "c4": 6.48252273614355, - "c5": 6.481427356436006, - "c6": 6.477642981918527, - "c7": 6.500530037911263 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514607, + "c3": 7.766990291262225, + "c4": 6.213592233009842, + "c5": 4.660194174757149, + "c6": 3.1067961165047664, + "c7": 1.5533980582523832 }, "rgb": [58, 15, 49] }, @@ -394638,23 +394638,23 @@ "year": 1807, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -15.288024532497662, - "c2": 26.42539226326868, - "c3": 20.731266909248394, - "c4": -26.73988589465379, - "c5": -21.723902405139015, - "c6": 12.480185905592318, - "c7": -21.670462522515763 + "points": { + "c1": -22.790592598018378, + "c2": -12.441486100514243, + "c3": 25.902975014612995, + "c4": 11.672851340420689, + "c5": 9.50592800691636, + "c6": -2.5715179463837536, + "c7": 6.643680188419108 }, - "vertexSeeds": { - "c1": 4.447574347494208, - "c2": 4.243874855175966, - "c3": 4.2066435689354105, - "c4": 3.979517383164569, - "c5": 4.188434325661146, - "c6": 4.057167785995054, - "c7": 3.975719523928949 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733701, + "c3": 5.59408229311142, + "c4": 4.475265834489133, + "c5": 3.356449375866853, + "c6": 2.2376329172445666, + "c7": 1.1188164586222806 }, "rgb": [58, 15, 49] }, @@ -394665,23 +394665,23 @@ "year": 1808, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -7.70764246900675, - "c2": -33.9547477152133, - "c3": 21.707963928759796, - "c4": 22.181552822511875, - "c5": 17.061438263601367, - "c6": -21.024008530372193, - "c7": -26.321944388765274 + "points": { + "c1": -12.721834284088832, + "c2": 30.505042669707947, + "c3": 36.93909642531686, + "c4": -29.040974430419915, + "c5": -3.343664202325826, + "c6": 12.395179160626888, + "c7": -23.15737804149088 }, - "vertexSeeds": { - "c1": 8.720833804002485, - "c2": 8.797211234207401, - "c3": 8.83610943774393, - "c4": 9.050994323715244, - "c5": 8.876032070954958, - "c6": 8.846801883280541, - "c7": 11.131558616828961 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.97780859916783, + "c3": 13.314840499306518, + "c4": 10.651872399445214, + "c5": 7.98890429958391, + "c6": 5.325936199722607, + "c7": 2.6629680998613035 }, "rgb": [86, 146, 138] }, @@ -394692,23 +394692,23 @@ "year": 1808, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -12.656423476272348, - "c2": 20.307940640495694, - "c3": -32.64498647586139, - "c4": -4.314473952997282, - "c5": 28.451675892599283, - "c6": -0.1352275062548287, - "c7": 5.024302766822316 + "points": { + "c1": -4.913887355294598, + "c2": -24.47879407166969, + "c3": 12.168653122518478, + "c4": -0.9165942043380397, + "c5": 33.236343844766665, + "c6": 18.966133266242707, + "c7": -32.90470519201886 }, - "vertexSeeds": { - "c1": 4.24084900990027, - "c2": 4.43465790135995, - "c3": 4.405314955006389, - "c4": 4.175604004913755, - "c5": 4.129769032619279, - "c6": 4.046824484622377, - "c7": 4.128903406090703 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.316689782709196, + "c4": 4.25335182616736, + "c5": 3.190013869625522, + "c6": 2.1266759130836843, + "c7": 1.0633379565418377 }, "rgb": [238, 201, 159] }, @@ -394719,23 +394719,23 @@ "year": 1807, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -8.398257631863896, - "c2": 27.864529799390592, - "c3": 12.161759408295449, - "c4": 5.6971463889647005, - "c5": 24.74785652365937, - "c6": -17.02374767583715, - "c7": 14.339890558008026 + "points": { + "c1": -24.677925060810907, + "c2": -20.67892525592158, + "c3": -12.675244594564294, + "c4": 28.149371857873998, + "c5": -8.981472464450924, + "c6": -27.43355214187345, + "c7": 29.694339310159375 }, - "vertexSeeds": { - "c1": 5.597888282110361, - "c2": 5.1504408458371, - "c3": 5.256794056347808, - "c4": 5.229737094258962, - "c5": 5.229731931498735, - "c6": 5.368815868895752, - "c7": 5.23781380768077 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664348, + "c3": 6.7036523347202985, + "c4": 5.362921867776231, + "c5": 4.022191400832183, + "c6": 2.6814609338881157, + "c7": 1.3407304669440487 }, "rgb": [77, 76, 132] }, @@ -394746,23 +394746,23 @@ "year": 1808, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -6.789203169863232, - "c2": -16.97080421876906, - "c3": -30.361070193789622, - "c4": 7.719524497990534, - "c5": 22.89968908392717, - "c6": 17.444742737903326, - "c7": 12.02461697099632 + "points": { + "c1": 9.554183348008586, + "c2": -13.659530016220529, + "c3": 23.038193439321148, + "c4": 31.98002161126272, + "c5": -4.221651968188109, + "c6": 31.548244371049556, + "c7": 16.524072488220312 }, - "vertexSeeds": { - "c1": 4.714512102717281, - "c2": 4.6760421629548485, - "c3": 4.699451879616159, - "c4": 4.9054782224358435, - "c5": 4.995430510772706, - "c6": 4.971035635651871, - "c7": 4.823786537231322 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658813, + "c3": 6.125751271382332, + "c4": 4.90060101710587, + "c5": 3.6754507628294064, + "c6": 2.450300508552935, + "c7": 1.2251502542764627 }, "rgb": [86, 146, 138] }, @@ -394773,23 +394773,23 @@ "year": 1807, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -22.60635602157926, - "c2": -16.150176312331258, - "c3": -19.561602699967114, - "c4": -15.712948090511404, - "c5": -5.746950325086235, - "c6": -21.267123219029827, - "c7": -12.979799778720606 + "points": { + "c1": 22.55382664798898, + "c2": -19.251909325379074, + "c3": -2.6830898601739044, + "c4": 14.909333222887998, + "c5": -1.362328672834817, + "c6": -13.583625969402455, + "c7": -6.449868672596391 }, - "vertexSeeds": { - "c1": 0.9951857892240602, - "c2": 0.9990543696965645, - "c3": 1.0335055418627892, - "c4": 1.0266475545175795, - "c5": 0.9775323352992443, - "c6": 1.015848206653259, - "c7": 1.0089245935720708 + "offsets": { + "c1": 1.8446601941747571, + "c2": 1.581137309292648, + "c3": 1.317614424410541, + "c4": 1.054091539528432, + "c5": 0.7905686546463252, + "c6": 0.527045769764216, + "c7": 0.2635228848821069 }, "rgb": [222, 0, 59] }, @@ -394800,23 +394800,23 @@ "year": 1807, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -24.191542461161653, - "c2": 13.918656412646797, - "c3": 11.586772690750351, - "c4": -3.1714952300653714, - "c5": 20.245442647722356, - "c6": -11.151429957134372, - "c7": -0.09337658616617261 + "points": { + "c1": 19.31277833336751, + "c2": -24.71166365507614, + "c3": 0.8328742422529345, + "c4": 3.455487359113043, + "c5": 14.078977904827909, + "c6": -10.415099181561228, + "c7": -16.56540793708843 }, - "vertexSeeds": { - "c1": 2.676831135054618, - "c2": 2.687876853007508, - "c3": 2.6571426450231335, - "c4": 2.6574099527288944, - "c5": 2.5813582636870596, - "c6": 2.6819751531388203, - "c7": 2.896381084297814 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113729, + "c3": 3.5136384650947794, + "c4": 2.8109107720758217, + "c5": 2.1081830790568645, + "c6": 1.4054553860379073, + "c7": 0.7027276930189573 }, "rgb": [238, 201, 159] }, @@ -394827,23 +394827,23 @@ "year": 1807, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -4.801198976362716, - "c2": -23.472819969043965, - "c3": -25.88523055277416, - "c4": -0.5792875773958777, - "c5": -16.534963379954043, - "c6": -17.043112009467784, - "c7": -6.621075146223049 + "points": { + "c1": -14.753561144109126, + "c2": -20.36342327802555, + "c3": -15.933109208404163, + "c4": -24.97307957771764, + "c5": -15.354465853640198, + "c6": -1.949495981200272, + "c7": -25.269875055020464 }, - "vertexSeeds": { - "c1": 4.295841679381473, - "c2": 4.56533800530856, - "c3": 4.315768750332205, - "c4": 4.410544745057983, - "c5": 4.594808595750996, - "c6": 4.585883919611239, - "c7": 4.405045827258467 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733707, + "c3": 5.594082293111417, + "c4": 4.475265834489138, + "c5": 3.3564493758668488, + "c6": 2.237632917244569, + "c7": 1.11881645862228 }, "rgb": [222, 0, 59] }, @@ -394854,23 +394854,23 @@ "year": 1808, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -29.202014077152395, - "c2": 26.89972237799853, - "c3": -26.39683651992747, - "c4": -27.43989913459086, - "c5": -23.770352811751696, - "c6": 13.834640280693101, - "c7": -15.327075651163504 + "points": { + "c1": -11.612784420980859, + "c2": -25.53868013138821, + "c3": -33.82694232621648, + "c4": 31.066935168254986, + "c5": -21.05346000207645, + "c6": -26.81979391989759, + "c7": 25.41671268486185 }, - "vertexSeeds": { - "c1": 5.916784615521541, - "c2": 5.6329457073490765, - "c3": 5.455755917068458, - "c4": 5.8301687866105825, - "c5": 5.953519522295721, - "c6": 5.413982829343684, - "c7": 5.994794253905726 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [222, 0, 59] }, @@ -394881,23 +394881,23 @@ "year": 1808, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -14.68356703841599, - "c2": 29.04182093094495, - "c3": 14.890745237249341, - "c4": 6.828522908557218, - "c5": -24.19056005474593, - "c6": -18.507403501929925, - "c7": 12.786027875750769 + "points": { + "c1": -8.397864767938657, + "c2": 32.74889470934684, + "c3": -8.15289557936984, + "c4": 29.913159437194025, + "c5": 34.08703467820675, + "c6": 28.521891081196316, + "c7": 33.221947608660614 }, - "vertexSeeds": { - "c1": 5.227707092712251, - "c2": 5.418665797837698, - "c3": 5.157626229193872, - "c4": 5.6447294377237816, - "c5": 5.692880407640008, - "c6": 5.389800816271913, - "c7": 5.213039783610937 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387882, + "c4": 5.455386037910301, + "c5": 4.091539528432722, + "c6": 2.727693018955142, + "c7": 1.363846509477562 }, "rgb": [222, 0, 59] }, @@ -394908,23 +394908,23 @@ "year": 1808, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -8.73547541785539, - "c2": -29.110543494614888, - "c3": 23.24554737863025, - "c4": 33.02979186517308, - "c5": 28.91841324809964, - "c6": -19.358014525938707, - "c7": -16.767578933134967 + "points": { + "c1": 36.22203176141734, + "c2": -20.695171194638416, + "c3": -19.446407084057373, + "c4": 16.251271208414117, + "c5": 20.96358277754039, + "c6": -3.295685331776589, + "c7": -6.400819723461556 }, - "vertexSeeds": { - "c1": 6.134312700476766, - "c2": 6.1659257485765515, - "c3": 6.252951233417004, - "c4": 5.675128838627376, - "c5": 5.769165661172604, - "c6": 6.2802084093429755, - "c7": 5.94377048805055 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072127, + "c3": 7.512713823393445, + "c4": 6.010171058714745, + "c5": 4.5076282940360635, + "c6": 3.0050855293573817, + "c7": 1.5025427646787 }, "rgb": [222, 0, 59] }, @@ -394935,23 +394935,23 @@ "year": 1807, "resistanceReported": true, "duration": 13651200, - "curveSeeds": { - "c1": -11.672136265572355, - "c2": 10.315022851714176, - "c3": 22.894408142204973, - "c4": -15.043258208363847, - "c5": -4.610061945415286, - "c6": 24.707270534988176, - "c7": -20.95268555582987 + "points": { + "c1": -14.645118183260102, + "c2": -9.378693890070426, + "c3": -16.057743638875685, + "c4": 26.673433478063124, + "c5": 8.481455315347468, + "c6": 0.3080233215019099, + "c7": 25.33073618638467 }, - "vertexSeeds": { - "c1": 1.381371415929283, - "c2": 1.3623485199080951, - "c3": 1.3603839390777253, - "c4": 1.3452412389129758, - "c5": 1.3813200550077585, - "c6": 1.3746074188026773, - "c7": 1.3891233237853786 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.024965325936198, + "c3": 1.68747110494683, + "c4": 1.3499768839574617, + "c5": 1.0124826629681047, + "c6": 0.6749884419787365, + "c7": 0.33749422098936827 }, "rgb": [222, 0, 59] }, @@ -394962,23 +394962,23 @@ "year": 1807, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -2.4191887097309426, - "c2": 11.714063176163307, - "c3": -2.1884848704959587, - "c4": -16.332106040861394, - "c5": -5.3593929577316395, - "c6": 3.539410635357825, - "c7": 12.470541659234762 + "points": { + "c1": 16.283970696829996, + "c2": 12.009601749970244, + "c3": -20.818159911056828, + "c4": -29.354989662596807, + "c5": 3.7882435619369375, + "c6": -16.31153895425191, + "c7": 2.6145186407380905 }, - "vertexSeeds": { - "c1": 3.28315632302251, - "c2": 3.4411249504412305, - "c3": 3.279193665579901, - "c4": 3.437381243652759, - "c5": 3.5360804173435927, - "c6": 3.533844532320613, - "c7": 3.285312879862799 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561716, + "c3": 4.345815996301434, + "c4": 3.4766527970411443, + "c5": 2.6074895977808623, + "c6": 1.7383263985205721, + "c7": 0.8691631992602816 }, "rgb": [86, 146, 138] }, @@ -394989,23 +394989,23 @@ "year": 1808, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 29.039959275827457, - "c2": 32.33210197856637, - "c3": 20.232333013158232, - "c4": 15.866397158463514, - "c5": 29.45032741959831, - "c6": -32.47062039350967, - "c7": -15.810633616586951 + "points": { + "c1": 5.574507303605138, + "c2": -34.158013430642356, + "c3": 31.392329450411836, + "c4": 17.399815264085035, + "c5": -17.145319459766636, + "c6": 14.138917563310464, + "c7": -3.528105563467264 }, - "vertexSeeds": { - "c1": 6.034434693801573, - "c2": 5.99807701420649, - "c3": 6.017219346786214, - "c4": 6.001476981294175, - "c5": 6.0031198823545955, - "c6": 5.998137363882032, - "c7": 6.034241884960735 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.71012482662965, + "c3": 7.258437355524745, + "c4": 5.806749884419767, + "c5": 4.355062413314861, + "c6": 2.9033749422098833, + "c7": 1.4516874711049776 }, "rgb": [77, 76, 132] }, @@ -395016,23 +395016,23 @@ "year": 1808, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -14.640702541588873, - "c2": 1.181213463258814, - "c3": -18.054255529128316, - "c4": -27.640499533102684, - "c5": 30.05052581915473, - "c6": -24.396293221193204, - "c7": -1.946180062859014 + "points": { + "c1": -7.425844016715054, + "c2": 4.726667405090538, + "c3": -34.202663109594766, + "c4": -28.520655705270507, + "c5": 21.78618362131244, + "c6": -28.94670767239634, + "c7": -23.31556033471173 }, - "vertexSeeds": { - "c1": 5.837008322727284, - "c2": 5.918513613840618, - "c3": 5.9171164386634825, - "c4": 5.862396014629074, - "c5": 5.851268396940372, - "c6": 5.848493889405923, - "c7": 5.875129839418698 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348168, + "c3": 7.096625057790093, + "c4": 5.677300046232112, + "c5": 4.257975034674037, + "c6": 2.838650023116056, + "c7": 1.4193250115579807 }, "rgb": [238, 201, 159] }, @@ -395043,23 +395043,23 @@ "year": 1808, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -8.730730589848122, - "c2": 36.04670365042797, - "c3": -23.217276916962813, - "c4": 25.437450191541217, - "c5": 10.484685893770823, - "c6": 11.543717653452774, - "c7": -31.238528832607912 + "points": { + "c1": 18.149347862801662, + "c2": -30.59062158972579, + "c3": -35.06611211447451, + "c4": -33.31570038512112, + "c5": 28.28859504612339, + "c6": -7.754971404024097, + "c7": -29.81240050329314 }, - "vertexSeeds": { - "c1": 9.721928325985083, - "c2": 9.769603384472477, - "c3": 9.903974317438616, - "c4": 10.024077900497545, - "c5": 10.225693343911669, - "c6": 8.492896256035552, - "c7": 8.376011130829667 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.589459084604712, + "c3": 12.99121590383727, + "c4": 10.392972723069812, + "c5": 7.794729542302356, + "c6": 5.196486361534906, + "c7": 2.5982431807674566 }, "rgb": [238, 201, 159] }, @@ -395070,23 +395070,23 @@ "year": 1808, "resistanceReported": true, "duration": 25920000, - "curveSeeds": { - "c1": 29.104454330695084, - "c2": 5.753413223087961, - "c3": -21.670131597237432, - "c4": -15.962433959322102, - "c5": -0.879827869191331, - "c6": 0.5911259754559879, - "c7": 26.087217194023303 + "points": { + "c1": -16.675177071445084, + "c2": -16.27582280979031, + "c3": -23.949638949242622, + "c4": 40.30437764181314, + "c5": -37.6337432445393, + "c6": -17.264154111786652, + "c7": 11.985105840158731 }, - "vertexSeeds": { - "c1": 1.2808875119092233, - "c2": 1.0409315633617415, - "c3": 1.2159258544104476, - "c4": 1.1821081608193433, - "c5": 1.2246281779522599, - "c6": 1.0562455942857947, - "c7": 1.2068408569385884 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350895, + "c3": 1.571890892279243, + "c4": 1.257512713823394, + "c5": 0.9431345353675459, + "c6": 0.628756356911697, + "c7": 0.31437817845584903 }, "rgb": [58, 15, 49] }, @@ -395097,23 +395097,23 @@ "year": 1807, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 6.169956572388596, - "c2": -27.512197456140008, - "c3": 21.983536541870787, - "c4": -6.682882313645997, - "c5": -8.264483799713908, - "c6": 4.950170344910067, - "c7": -12.476409457339832 + "points": { + "c1": 15.422875027864624, + "c2": 0.1259188972018066, + "c3": 10.61838769574572, + "c4": -10.374909082645775, + "c5": 4.984221591302163, + "c6": -7.886845969549917, + "c7": -8.11515103747681 }, - "vertexSeeds": { - "c1": 4.875301251900459, - "c2": 5.267011821757052, - "c3": 4.953480688523842, - "c4": 5.440567077497981, - "c5": 5.442530024922637, - "c6": 5.162484046230896, - "c7": 4.8460576866084 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026349, + "c3": 6.9116967175219655, + "c4": 5.529357374017571, + "c5": 4.147018030513174, + "c6": 2.764678687008779, + "c7": 1.3823393435043954 }, "rgb": [86, 146, 138] }, @@ -395124,23 +395124,23 @@ "year": 1807, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 20.515994119052614, - "c2": 12.521513923011895, - "c3": -14.990487729345643, - "c4": -14.791234514082408, - "c5": -15.155197477871615, - "c6": 19.63732444602026, - "c7": -15.273960089606826 + "points": { + "c1": -21.768354564124024, + "c2": -24.763672322064902, + "c3": -4.814409478794815, + "c4": 21.967659185201697, + "c5": 10.956769713920515, + "c6": 22.05227726633308, + "c7": -27.510848589875565 }, - "vertexSeeds": { - "c1": 2.06483663280019, - "c2": 2.004162737672417, - "c3": 2.071125049275263, - "c4": 1.9190055696075081, - "c5": 1.9939676993029316, - "c6": 1.9936124218753566, - "c7": 2.0588848705011547 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.02357836338419, + "c3": 2.5196486361534896, + "c4": 2.015718908922793, + "c5": 1.511789181692093, + "c6": 1.0078594544613966, + "c7": 0.5039297272307005 }, "rgb": [86, 146, 138] }, @@ -395151,23 +395151,23 @@ "year": 1807, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 9.653300506540603, - "c2": 0.15563957563941244, - "c3": -10.395547871545116, - "c4": 22.505937939183937, - "c5": 8.095484258043314, - "c6": -6.720046706842968, - "c7": -10.951277671797081 + "points": { + "c1": -4.80458897656591, + "c2": 19.213645996984752, + "c3": -20.010695311102808, + "c4": -27.107401143984514, + "c5": 22.749618857649594, + "c6": -4.143476493862519, + "c7": -7.228099119037907 }, - "vertexSeeds": { - "c1": 3.4780813094359773, - "c2": 3.359543337428971, - "c3": 3.1429357915244345, - "c4": 3.134347200161387, - "c5": 3.2982536476265745, - "c6": 3.1683144834349473, - "c7": 3.2207266207889926 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441054, + "c3": 4.276467868700879, + "c4": 3.4211742949607022, + "c5": 2.565880721220527, + "c6": 1.7105871474803511, + "c7": 0.8552935737401756 }, "rgb": [86, 146, 138] }, @@ -395178,23 +395178,23 @@ "year": 1807, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -5.213723592512601, - "c2": -17.48602132146557, - "c3": 9.885804760185799, - "c4": -6.101538380805124, - "c5": -13.91400203729059, - "c6": 0.6514817133584998, - "c7": -16.9479274184862 + "points": { + "c1": 20.30717868055263, + "c2": -0.31379059324164515, + "c3": -8.647484183625796, + "c4": 3.3605602727108135, + "c5": 6.364649263203368, + "c6": -22.41632250396598, + "c7": 5.620907218560141 }, - "vertexSeeds": { - "c1": 6.358392840638583, - "c2": 4.974889293829728, - "c3": 4.963703650573562, - "c4": 6.291715154182803, - "c5": 5.224188007273939, - "c6": 5.109666901222048, - "c7": 5.483693419985143 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.6745261211280615, + "c4": 6.139620896902448, + "c5": 4.604715672676836, + "c6": 3.0698104484512223, + "c7": 1.5349052242256094 }, "rgb": [77, 76, 132] }, @@ -395205,23 +395205,23 @@ "year": 1807, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -6.45061141523756, - "c2": 22.380414543655515, - "c3": 14.269698250204474, - "c4": 1.5556250822110904, - "c5": 13.05807789007292, - "c6": -15.529174929395252, - "c7": 8.052223455503519 + "points": { + "c1": 9.718777543726066, + "c2": -6.056606868229874, + "c3": -8.689573532067929, + "c4": -2.844693011093195, + "c5": 26.141303518932173, + "c6": 22.463305258050564, + "c7": 14.805427979777175 }, - "vertexSeeds": { - "c1": 5.728342241454653, - "c2": 5.119549886505296, - "c3": 5.77241278517179, - "c4": 4.933430749011115, - "c5": 6.144449067968459, - "c6": 6.212789905685996, - "c7": 5.526453772876992 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192789, + "c3": 7.582061950993992, + "c4": 6.065649560795195, + "c5": 4.549237170596391, + "c6": 3.032824780397594, + "c7": 1.516412390198797 }, "rgb": [222, 0, 59] }, @@ -395232,23 +395232,23 @@ "year": 1808, "resistanceReported": false, "duration": 41385600, - "curveSeeds": { - "c1": 32.619905148988195, - "c2": -30.876562129956994, - "c3": 12.56394452307066, - "c4": 23.22702754116095, - "c5": -32.2666512763156, - "c6": -22.47159425187406, - "c7": -22.298980948274476 + "points": { + "c1": -30.148155268032795, + "c2": 18.896340527706357, + "c3": -55.64110870946192, + "c4": 44.66740539324715, + "c5": -10.414367006455862, + "c6": -44.17422958795031, + "c7": -25.149807526968758 }, - "vertexSeeds": { - "c1": 8.96904716434745, - "c2": 8.971171100314264, - "c3": 8.931640340667345, - "c4": 8.903283546617132, - "c5": 8.949391212769557, - "c6": 8.972100671215513, - "c7": 8.946027009641156 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783587, + "c3": 10.795191863153043, + "c4": 8.636153490522393, + "c5": 6.477115117891848, + "c6": 4.318076745261196, + "c7": 2.1590383726306515 }, "rgb": [86, 146, 138] }, @@ -395259,23 +395259,23 @@ "year": 1808, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -9.244805958741093, - "c2": 12.140317828840828, - "c3": 11.542629375725134, - "c4": 13.957338648199503, - "c5": 7.8278058166143225, - "c6": 16.559510893095137, - "c7": -22.53815129745793 + "points": { + "c1": 1.826023240747773, + "c2": -30.832959207412372, + "c3": -3.7729301118573666, + "c4": 15.704925568902468, + "c5": 6.257751886755798, + "c6": 4.310447526543051, + "c7": -18.989522793356983 }, - "vertexSeeds": { - "c1": 4.086240743251366, - "c2": 4.296747826454822, - "c3": 4.453636542893422, - "c4": 4.078014749158974, - "c5": 4.4125383598150245, - "c6": 4.275663777603737, - "c7": 4.38168743647558 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.4355062413314865, + "c3": 5.362921867776232, + "c4": 4.290337494220988, + "c5": 3.2177531206657433, + "c6": 2.1451687471104894, + "c7": 1.0725843735552447 }, "rgb": [58, 15, 49] }, @@ -395286,23 +395286,23 @@ "year": 1808, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 10.63523686111828, - "c2": 6.945776284915148, - "c3": 28.011344991600957, - "c4": 22.878009993757594, - "c5": -24.531186045171776, - "c6": 27.400385623487082, - "c7": -1.580516350639261 + "points": { + "c1": 28.138221042965192, + "c2": 22.843722939711725, + "c3": -3.997884917984816, + "c4": 23.98808796521694, + "c5": 22.868934655683326, + "c6": 7.527272418139063, + "c7": 31.393675420836807 }, - "vertexSeeds": { - "c1": 5.175798995730421, - "c2": 4.921679607238112, - "c3": 5.117456268723909, - "c4": 5.217354138908869, - "c5": 5.163084461686582, - "c6": 4.976237879461389, - "c7": 4.849224318189432 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.65603328710125, + "c3": 6.380027739251045, + "c4": 5.10402219140084, + "c5": 3.828016643550634, + "c6": 2.55201109570042, + "c7": 1.2760055478502144 }, "rgb": [86, 146, 138] }, @@ -395313,23 +395313,23 @@ "year": 1808, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 21.374732626999943, - "c2": 21.11484140803502, - "c3": 26.088133347629253, - "c4": 12.663964216816773, - "c5": 28.8068759825305, - "c6": -5.3977483660792025, - "c7": 30.81959574639562 + "points": { + "c1": 10.056816481975986, + "c2": -17.26464106289579, + "c3": 19.732312100813523, + "c4": -13.701503694466808, + "c5": -15.727198216225403, + "c6": -5.274111283603055, + "c7": 19.670604064435253 }, - "vertexSeeds": { - "c1": 6.338113673295999, - "c2": 6.601176316261315, - "c3": 6.214717273073751, - "c4": 6.385065132013416, - "c5": 6.883493799232645, - "c6": 6.485130986857875, - "c7": 6.35642337967015 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370318993, + "c3": 8.229311141932504, + "c4": 6.583448913545996, + "c5": 4.9375866851595065, + "c6": 3.291724456772998, + "c7": 1.64586222838649 }, "rgb": [222, 0, 59] }, @@ -395340,23 +395340,23 @@ "year": 1808, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -28.289890319878822, - "c2": 17.57703660294215, - "c3": -0.2863443684756426, - "c4": -25.572938751567513, - "c5": 21.264617778526627, - "c6": 30.3399394777273, - "c7": -2.3709181992061055 + "points": { + "c1": -25.63312133671565, + "c2": 18.301472865440594, + "c3": -31.087685881303553, + "c4": 9.330056790701285, + "c5": -5.395302163743555, + "c6": -13.504898597151886, + "c7": -18.177583485464204 }, - "vertexSeeds": { - "c1": 3.8322294656125937, - "c2": 3.7253796310574625, - "c3": 3.8178868734341993, - "c4": 3.8856662279008307, - "c5": 3.721373728094128, - "c6": 3.717037168084762, - "c7": 3.638788547391119 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.7975034674063854, + "c3": 4.831252889505318, + "c4": 3.865002311604251, + "c5": 2.8987517337031927, + "c6": 1.9325011558021346, + "c7": 0.9662505779010673 }, "rgb": [238, 201, 159] }, @@ -395367,23 +395367,23 @@ "year": 1808, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": 21.314626563530517, - "c2": 36.85565330906001, - "c3": -18.36141913244268, - "c4": -19.282315434795315, - "c5": -4.05749652871021, - "c6": 12.116133431735008, - "c7": 14.042712764799163 + "points": { + "c1": 44.15680010316898, + "c2": 11.836429803306011, + "c3": -22.42924007647057, + "c4": -9.24110314529716, + "c5": 35.261357169878515, + "c6": 14.549651841211386, + "c7": -41.10002266255923 }, - "vertexSeeds": { - "c1": 10.421907240687013, - "c2": 10.556924224084554, - "c3": 10.71222347502001, - "c4": 10.40559614658184, - "c5": 10.499953831150574, - "c6": 10.694228791452169, - "c7": 10.406064021325106 + "offsets": { + "c1": 17.89644012944984, + "c2": 15.339805825242747, + "c3": 12.78317152103556, + "c4": 10.226537216828467, + "c5": 7.669902912621374, + "c6": 5.113268608414187, + "c7": 2.5566343042070936 }, "rgb": [77, 76, 132] }, @@ -395394,23 +395394,23 @@ "year": 1808, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -24.28807610367995, - "c2": -14.28015945008303, - "c3": 11.242942888871358, - "c4": -18.641237960825514, - "c5": -8.530801990645468, - "c6": 25.7082558043121, - "c7": 2.203236082432202 + "points": { + "c1": -26.993204258671437, + "c2": -14.886710702324809, + "c3": -17.922827321981387, + "c4": -27.864540473156033, + "c5": -2.0407666003250604, + "c6": 10.656460750751666, + "c7": 8.165715503778781 }, - "vertexSeeds": { - "c1": 2.5265549454003002, - "c2": 2.5891700515717773, - "c3": 2.988995799424672, - "c4": 2.982974599986953, - "c5": 2.5084902039246217, - "c6": 2.6452131489967488, - "c7": 2.8253430858124453 + "offsets": { + "c1": 5.145631067961165, + "c2": 4.410540915395284, + "c3": 3.6754507628294038, + "c4": 2.940360610263523, + "c5": 2.205270457697642, + "c6": 1.4701803051317615, + "c7": 0.7350901525658807 }, "rgb": [238, 201, 159] }, @@ -395421,23 +395421,23 @@ "year": 1808, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -12.066745956351419, - "c2": 14.85214822959109, - "c3": 16.813600126984124, - "c4": -17.459085009546172, - "c5": 13.298379963172625, - "c6": -27.449474422091562, - "c7": -27.69834798236357 + "points": { + "c1": -23.082038887762618, + "c2": -25.370113334937294, + "c3": 19.314927557904433, + "c4": -1.1853962986373077, + "c5": -23.098636720878567, + "c6": -31.623982882950976, + "c7": 16.399241686887315 }, - "vertexSeeds": { - "c1": 3.406282519844392, - "c2": 3.30935970377365, - "c3": 3.3201656395958263, - "c4": 3.2272165693888644, - "c5": 3.316037949538933, - "c6": 3.3110986976266417, - "c7": 3.3173400128810124 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119281, + "c3": 4.091539528432729, + "c4": 3.2732316227461844, + "c5": 2.4549237170596405, + "c6": 1.6366158113730878, + "c7": 0.8183079056865439 }, "rgb": [58, 15, 49] }, @@ -395448,23 +395448,23 @@ "year": 1808, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -27.827437707686897, - "c2": -19.47775409296334, - "c3": 20.25689912463679, - "c4": 4.638067440120345, - "c5": -0.9377035807386278, - "c6": -0.30496566886241183, - "c7": -27.587886356976615 + "points": { + "c1": 18.7378055738778, + "c2": -21.01797540521234, + "c3": 6.474822313280207, + "c4": -3.73573359802759, + "c5": 13.16714195491349, + "c6": 17.436219610646624, + "c7": -14.248220177159897 }, - "vertexSeeds": { - "c1": 5.528049324846972, - "c2": 5.889180453507498, - "c3": 5.9941152745072594, - "c4": 5.9375080220530565, - "c5": 5.605715249669663, - "c6": 5.4958001621021415, - "c7": 5.405472255490271 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [238, 201, 159] }, @@ -395475,23 +395475,23 @@ "year": 1808, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": -26.70953777465393, - "c2": 40.989479710871876, - "c3": -5.7999258124234885, - "c4": 31.136843032939296, - "c5": 51.91151544322997, - "c6": -26.158037594612665, - "c7": 13.308884383096185 + "points": { + "c1": -16.34335433430053, + "c2": 14.607127148459156, + "c3": -3.584584314118345, + "c4": -52.161147259902876, + "c5": 59.881311485598644, + "c6": -43.96869526490739, + "c7": -20.756157665592404 }, - "vertexSeeds": { - "c1": 6.003079938590573, - "c2": 5.85444155256561, - "c3": 5.872309594042987, - "c4": 5.9587006634840005, - "c5": 5.801621615944152, - "c6": 6.0370982657359065, - "c7": 5.970406120681494 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549255, + "c3": 7.21220527045769, + "c4": 5.769764216366171, + "c5": 4.327323162274606, + "c6": 2.8848821081830853, + "c7": 1.4424410540915205 }, "rgb": [238, 201, 159] }, @@ -395502,23 +395502,23 @@ "year": 1808, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -15.452054975822932, - "c2": -18.597141722618066, - "c3": 3.740699787234128, - "c4": -12.291798753513383, - "c5": -31.145292833923648, - "c6": -26.929374933457233, - "c7": -18.951643128104458 + "points": { + "c1": -19.455358107224473, + "c2": -15.88780031997393, + "c3": -26.008219857676412, + "c4": 8.92206243897401, + "c5": -2.585178177446359, + "c6": -2.504259570528081, + "c7": 11.629584613709369 }, - "vertexSeeds": { - "c1": 3.197936432085597, - "c2": 3.117098134907454, - "c3": 3.3139954104429306, - "c4": 3.482722258379271, - "c5": 3.2244423325464613, - "c6": 3.520595402402916, - "c7": 3.486049881785936 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [222, 0, 59] }, @@ -395529,23 +395529,23 @@ "year": 1808, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -1.854456129711096, - "c2": -15.827227062165036, - "c3": -4.817249369217091, - "c4": -24.162739020928157, - "c5": -15.70228728395228, - "c6": -8.725352337829296, - "c7": -18.319044432029308 + "points": { + "c1": 10.560033067499486, + "c2": -0.042472107186263486, + "c3": 10.45618487824834, + "c4": -19.942848342483295, + "c5": 26.7565345713148, + "c6": -14.672739294272152, + "c7": 12.015400451725707 }, - "vertexSeeds": { - "c1": 3.8312106037999505, - "c2": 3.6999622000275068, - "c3": 4.000303534380982, - "c4": 4.203167450184718, - "c5": 3.6618290104935425, - "c6": 3.9532879864039443, - "c7": 4.29278210607855 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572815, + "c3": 5.501618122977347, + "c4": 4.401294498381877, + "c5": 3.3009708737864076, + "c6": 2.2006472491909386, + "c7": 1.1003236245954693 }, "rgb": [222, 0, 59] }, @@ -395556,23 +395556,23 @@ "year": 1807, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -9.531346498328023, - "c2": 6.642993137569473, - "c3": -19.720223375692868, - "c4": 3.6425091651379695, - "c5": -23.773178397161473, - "c6": 22.5520725827725, - "c7": 11.265067837402551 + "points": { + "c1": 7.148620433867965, + "c2": -16.81411261365738, + "c3": 2.4658667260947347, + "c4": 17.84279635441401, + "c5": 12.806342018498011, + "c6": 15.866593165540191, + "c7": 21.433414174594898 }, - "vertexSeeds": { - "c1": 2.910778151847958, - "c2": 2.9181789580635256, - "c3": 2.6083815302518563, - "c4": 2.812192186297178, - "c5": 2.970992514537176, - "c6": 2.8212042603233325, - "c7": 2.6479045568694586 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234399, + "c3": 3.5829865926953297, + "c4": 2.866389274156266, + "c5": 2.149791955617197, + "c6": 1.433194637078133, + "c7": 0.7165973185390637 }, "rgb": [58, 15, 49] }, @@ -395583,23 +395583,23 @@ "year": 1808, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -15.03791562049635, - "c2": 23.314325319377122, - "c3": -9.358327348364686, - "c4": 10.714574761166201, - "c5": -16.681822780180347, - "c6": 2.1995361175422232, - "c7": -1.1923037096589084 + "points": { + "c1": 26.32874993943606, + "c2": 27.183230230097113, + "c3": -17.32811963463358, + "c4": -21.333149965164832, + "c5": -18.73922159925975, + "c6": -18.97627523944742, + "c7": -16.654175343588246 }, - "vertexSeeds": { - "c1": 1.311091531249134, - "c2": 1.3149186683546035, - "c3": 1.2570978934093324, - "c4": 1.350120251312102, - "c5": 1.2515913073048317, - "c6": 1.2956061860108035, - "c7": 1.3015304688492313 + "offsets": { + "c1": 2.2977346278317152, + "c2": 1.9694868238557566, + "c3": 1.6412390198797977, + "c4": 1.312991215903839, + "c5": 0.9847434119278763, + "c6": 0.6564956079519174, + "c7": 0.3282478039759587 }, "rgb": [222, 0, 59] }, @@ -395610,23 +395610,23 @@ "year": 1807, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -8.764733297481161, - "c2": 5.6967029246366465, - "c3": 12.220157021921878, - "c4": -1.5002670029013352, - "c5": -3.909287535638555, - "c6": -18.170147849061266, - "c7": -8.23693624200653 + "points": { + "c1": -25.622697955983735, + "c2": 22.129933842247993, + "c3": 24.801504105285716, + "c4": 3.037138626119752, + "c5": -20.209123502267058, + "c6": -15.7217330506019, + "c7": 2.1006924353387753 }, - "vertexSeeds": { - "c1": 1.0369700909789632, - "c2": 1.0656752699830234, - "c3": 1.0618938826249569, - "c4": 1.0613481750477054, - "c5": 1.1290525721305888, - "c6": 1.0822646195106662, - "c7": 1.1081050221214304 + "offsets": { + "c1": 1.9417475728155338, + "c2": 1.6643550624133157, + "c3": 1.386962552011095, + "c4": 1.109570041608877, + "c5": 0.8321775312066566, + "c6": 0.5547850208044385, + "c7": 0.27739251040222046 }, "rgb": [58, 15, 49] }, @@ -395637,23 +395637,23 @@ "year": 1807, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": -8.774503818290981, - "c2": 1.7892119722755666, - "c3": -13.100208843332688, - "c4": 7.86987306569166, - "c5": 18.089754127726415, - "c6": -8.64320970732439, - "c7": -5.856291533418796 + "points": { + "c1": 2.255036435736919, + "c2": -8.080848204154384, + "c3": 6.9753144658136215, + "c4": -11.72128414928695, + "c5": 18.037930564729336, + "c6": 16.49499419743608, + "c7": -4.221477004696297 }, - "vertexSeeds": { - "c1": 1.5821263615961743, - "c2": 1.5416798573267276, - "c3": 1.5369191491080598, - "c4": 1.5210960079477776, - "c5": 1.6008198006933902, - "c6": 1.5294744641517133, - "c7": 1.682663290127865 + "offsets": { + "c1": 2.912621359223301, + "c2": 2.496532593619972, + "c3": 2.0804438280166435, + "c4": 1.6643550624133148, + "c5": 1.248266296809986, + "c6": 0.8321775312066574, + "c7": 0.4160887656033287 }, "rgb": [77, 76, 132] }, @@ -395664,23 +395664,23 @@ "year": 1808, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 7.323363483018408, - "c2": 22.294194387787034, - "c3": 22.329404027949703, - "c4": -17.912173304405478, - "c5": 3.478679949353584, - "c6": 16.521542359736426, - "c7": 20.249676450994688 + "points": { + "c1": -13.633491443043692, + "c2": -3.6722431369148865, + "c3": 17.36670199157975, + "c4": -14.089967411120428, + "c5": -20.108713626109193, + "c6": 26.505908450371347, + "c7": -23.88288455685063 }, - "vertexSeeds": { - "c1": 4.8913034486964255, - "c2": 4.878807428447381, - "c3": 4.602131004199911, - "c4": 4.566883262038666, - "c5": 4.930907149354665, - "c6": 4.793801213370227, - "c7": 4.914007965478907 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181233, + "c4": 4.789644012944979, + "c5": 3.592233009708734, + "c6": 2.3948220064724897, + "c7": 1.1974110032362448 }, "rgb": [238, 201, 159] }, @@ -395691,23 +395691,23 @@ "year": 1808, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 24.524188517672886, - "c2": 25.213808883543802, - "c3": 25.406001263183878, - "c4": 15.798551188409302, - "c5": -9.846044374896337, - "c6": -19.869581656167842, - "c7": -8.91523127143882 + "points": { + "c1": -8.903549857057591, + "c2": 2.367383734307275, + "c3": 0.23503124626670058, + "c4": 21.19796620323185, + "c5": -17.550882783748193, + "c6": 15.663685747983841, + "c7": -6.17306034602321 }, - "vertexSeeds": { - "c1": 6.20020748674831, - "c2": 6.250009190650356, - "c3": 6.160724773720821, - "c4": 6.164145820729275, - "c5": 6.216118489551294, - "c6": 6.1151232002506735, - "c7": 6.034772173177211 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.04299583911234, + "c3": 7.535829865926944, + "c4": 6.028663892741549, + "c5": 4.521497919556154, + "c6": 3.0143319463707905, + "c7": 1.5071659731853952 }, "rgb": [238, 201, 159] }, @@ -395718,23 +395718,23 @@ "year": 1807, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 1.8462455484342293, - "c2": -22.143069066404916, - "c3": 12.784696533993376, - "c4": -0.2741498330934071, - "c5": 2.974798875453054, - "c6": -3.201294846927169, - "c7": -12.134911175608048 + "points": { + "c1": 14.010913141425618, + "c2": -14.216270637097935, + "c3": -12.470727925977888, + "c4": 5.196502238185282, + "c5": -5.655660192503969, + "c6": 15.318964922875601, + "c7": 13.98158522724627 }, - "vertexSeeds": { - "c1": 2.0738651542341895, - "c2": 2.03914163903911, - "c3": 2.047716107994364, - "c4": 2.002426594941854, - "c5": 2.054624549089813, - "c6": 2.0547844873485563, - "c7": 2.0494230516578 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.995839112343971, + "c3": 2.4965325936199707, + "c4": 1.997226074895981, + "c5": 1.4979195561719807, + "c6": 0.9986130374479905, + "c7": 0.4993065187239902 }, "rgb": [238, 201, 159] }, @@ -395745,23 +395745,23 @@ "year": 1808, "resistanceReported": false, "duration": 39916800, - "curveSeeds": { - "c1": 11.779536899150422, - "c2": 11.425484865893416, - "c3": 6.162958283749418, - "c4": -46.370647807942525, - "c5": 53.296552092478755, - "c6": 45.54926634315172, - "c7": 8.3822746655987 + "points": { + "c1": 12.809482625120857, + "c2": 4.978655866954014, + "c3": 46.396520513059265, + "c4": 11.885211120438832, + "c5": -25.823607139842217, + "c6": -15.32257683447041, + "c7": 44.93743069193055 }, - "vertexSeeds": { - "c1": 12.312088807469088, - "c2": 12.419506401167048, - "c3": 12.445794726746676, - "c4": 12.520839548422085, - "c5": 12.438070250256663, - "c6": 12.345325165888315, - "c7": 12.306038018693817 + "offsets": { + "c1": 21.003236245954692, + "c2": 18.00277392510402, + "c3": 15.002311604253352, + "c4": 12.00184928340268, + "c5": 9.00138696255201, + "c6": 6.00092464170134, + "c7": 3.00046232085067 }, "rgb": [77, 76, 132] }, @@ -395772,23 +395772,23 @@ "year": 1808, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -7.252194694076948, - "c2": 24.782497060360225, - "c3": 16.30834463952551, - "c4": -20.852172100207017, - "c5": -6.394276159705122, - "c6": 25.411202068919668, - "c7": 3.165771038498775 + "points": { + "c1": 13.37714769071496, + "c2": -18.481880769568257, + "c3": -12.695620197001816, + "c4": -24.160304356848354, + "c5": -9.453447794085204, + "c6": -11.08727039863783, + "c7": -3.927106729910129 }, - "vertexSeeds": { - "c1": 3.848459790294919, - "c2": 3.5777191829452506, - "c3": 3.7787937993243914, - "c4": 3.572716663672171, - "c5": 3.86451386223806, - "c6": 3.614984500683368, - "c7": 3.556419140496061 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044386, + "c3": 4.623208506703647, + "c4": 3.69856680536292, + "c5": 2.773925104022193, + "c6": 1.8492834026814657, + "c7": 0.9246417013407271 }, "rgb": [222, 0, 59] }, @@ -395799,23 +395799,23 @@ "year": 1808, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 25.742979434090522, - "c2": -32.80916847048862, - "c3": 3.7870130626696934, - "c4": -2.555372567326426, - "c5": -30.086279033103324, - "c6": 7.473893588056626, - "c7": -31.75830322234972 + "points": { + "c1": -32.64736798240808, + "c2": -30.009298869676595, + "c3": 3.690350235446431, + "c4": 23.61032850205848, + "c5": -1.6572983988633112, + "c6": 7.751590908430771, + "c7": -9.826534505568837 }, - "vertexSeeds": { - "c1": 2.3233168358921588, - "c2": 2.2986991352433255, - "c3": 2.301632869265689, - "c4": 2.297256102525546, - "c5": 2.2933062886765487, - "c6": 2.3263499299622623, - "c7": 2.3167974926604424 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668394, + "c3": 2.7970411465557135, + "c4": 2.23763291724456, + "c5": 1.6782246879334337, + "c6": 1.11881645862228, + "c7": 0.5594082293111539 }, "rgb": [222, 0, 59] }, @@ -395826,23 +395826,23 @@ "year": 1808, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 17.963484888958263, - "c2": -31.058775213529422, - "c3": 12.101590495789218, - "c4": -19.11034322426263, - "c5": 1.7183664433025498, - "c6": -34.10413943968703, - "c7": 33.472307880573936 + "points": { + "c1": 25.956775065998656, + "c2": 35.56411971218729, + "c3": 12.905448094343228, + "c4": 31.668339145619186, + "c5": -24.917312589174262, + "c6": 18.71559547171959, + "c7": 13.571395202142014 }, - "vertexSeeds": { - "c1": 8.053929202977216, - "c2": 7.384565652883684, - "c3": 7.922011765046503, - "c4": 7.934096659634415, - "c5": 7.639690943094402, - "c6": 7.793951493100601, - "c7": 7.131533115067877 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576976, + "c3": 10.101710587147481, + "c4": 8.081368469717985, + "c5": 6.061026352288488, + "c6": 4.040684234858992, + "c7": 2.020342117429496 }, "rgb": [86, 146, 138] }, @@ -395853,23 +395853,23 @@ "year": 1809, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": 14.924938721855398, - "c2": -32.63324447065587, - "c3": -32.52625506234858, - "c4": 38.64787011049533, - "c5": -33.34379273326189, - "c6": 54.29125662841085, - "c7": 15.383054276686721 + "points": { + "c1": -17.41299217721884, + "c2": 52.88500131299685, + "c3": -4.00546923565129, + "c4": -32.4236196837151, + "c5": -27.261669356495627, + "c6": 30.546084806944066, + "c7": 44.09017933696572 }, - "vertexSeeds": { - "c1": 10.189804184274049, - "c2": 10.257275084661904, - "c3": 10.216370563603725, - "c4": 10.217657923042996, - "c5": 10.275491748419906, - "c6": 10.251809280433537, - "c7": 10.239039345076772 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317782, + "c3": 12.251502542764623, + "c4": 9.801202034211855, + "c5": 7.350901525658696, + "c6": 4.900601017105927, + "c7": 2.4503005085527687 }, "rgb": [238, 201, 159] }, @@ -395880,23 +395880,23 @@ "year": 1808, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": -4.603848033273946, - "c2": -17.85885874492599, - "c3": -0.00021857936382474463, - "c4": -16.962487555383976, - "c5": 6.0762040624119855, - "c6": -7.547543436638245, - "c7": -18.729227859483284 + "points": { + "c1": -20.285634102185057, + "c2": 11.169277399816053, + "c3": -17.78459866436581, + "c4": -14.102942660232713, + "c5": 12.575260285519185, + "c6": -21.143977497626423, + "c7": 19.905248682020826 }, - "vertexSeeds": { - "c1": 1.5111031807727722, - "c2": 1.55148536461303, - "c3": 1.4597495123118471, - "c4": 1.457162943254475, - "c5": 1.4809036156607651, - "c6": 1.4777840003448692, - "c7": 1.5861723319005956 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590853, + "c3": 1.9879796578825693, + "c4": 1.5903837263060558, + "c5": 1.1927877947295427, + "c6": 0.7951918631530266, + "c7": 0.3975959315765133 }, "rgb": [77, 76, 132] }, @@ -395907,23 +395907,23 @@ "year": 1808, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 19.76494716600307, - "c2": -30.923337407260263, - "c3": 16.876266818243153, - "c4": -9.242644047343337, - "c5": -15.507932856101657, - "c6": -34.15070200006595, - "c7": -12.786366864979165 + "points": { + "c1": 19.6453850922167, + "c2": -21.942200855302513, + "c3": -20.24190787890585, + "c4": 23.233062419126725, + "c5": -37.334017138715666, + "c6": 5.758403428142074, + "c7": 34.39043189545026 }, - "vertexSeeds": { - "c1": 9.118309385929862, - "c2": 7.927702704498061, - "c3": 10.509712718963545, - "c4": 9.346526338601501, - "c5": 9.616430588472145, - "c6": 7.098999405550356, - "c7": 8.201043866160397 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.977808599167822, + "c3": 13.31484049930652, + "c4": 10.651872399445217, + "c5": 7.988904299583911, + "c6": 5.325936199722609, + "c7": 2.662968099861307 }, "rgb": [222, 0, 59] }, @@ -395934,23 +395934,23 @@ "year": 1808, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -19.226719790218574, - "c2": -21.922143212283896, - "c3": 1.234458292384275, - "c4": -24.638033160203182, - "c5": 5.207023986492036, - "c6": -22.744584153429066, - "c7": 1.3792152657958034 + "points": { + "c1": 16.13428969346879, + "c2": 9.132955774336882, + "c3": -17.857416008665627, + "c4": -23.272315994321552, + "c5": 11.535942845408837, + "c6": -20.33045039294419, + "c7": -24.65599840719848 }, - "vertexSeeds": { - "c1": 10.90061293738709, - "c2": 10.777965079369723, - "c3": 11.234006869131129, - "c4": 10.93103756193382, - "c5": 11.5217665291799, - "c6": 11.649815619093566, - "c7": 11.07229374738956 + "offsets": { + "c1": 19.70873786407767, + "c2": 16.893203883495158, + "c3": 14.077669902912616, + "c4": 11.262135922330106, + "c5": 8.446601941747563, + "c6": 5.631067961165053, + "c7": 2.8155339805825426 }, "rgb": [77, 76, 132] }, @@ -395961,23 +395961,23 @@ "year": 1809, "resistanceReported": false, "duration": 41904000, - "curveSeeds": { - "c1": -46.617833045042744, - "c2": -13.740403402028846, - "c3": -54.93701595055815, - "c4": -7.034607354131346, - "c5": -25.284509125069953, - "c6": 39.70447888937512, - "c7": 19.37027313305807 + "points": { + "c1": -23.37264047970227, + "c2": 3.394675051688367, + "c3": -53.264122099490336, + "c4": -25.37750714118861, + "c5": -41.094093772274526, + "c6": 9.06420742996874, + "c7": -43.88198101106146 }, - "vertexSeeds": { - "c1": 8.781683050438218, - "c2": 8.741583446838, - "c3": 8.693115652492775, - "c4": 8.551846058985523, - "c5": 8.745246607716306, - "c6": 8.872575247006383, - "c7": 8.798234598859748 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502077, + "c3": 10.63337956541839, + "c4": 8.506703652334702, + "c5": 6.380027739251016, + "c6": 4.253351826167329, + "c7": 2.126675913083642 }, "rgb": [58, 15, 49] }, @@ -395988,23 +395988,23 @@ "year": 1808, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 5.98617593896012, - "c2": -4.734962276024948, - "c3": 18.6865228125172, - "c4": -23.565593196655538, - "c5": 2.030405359330583, - "c6": 30.19632704290922, - "c7": -13.241498302510244 + "points": { + "c1": -11.328027597380153, + "c2": 12.749066880586007, + "c3": -11.217721589959037, + "c4": 14.940540538676103, + "c5": 12.13124954184076, + "c6": 28.54520594881894, + "c7": -16.945050450427683 }, - "vertexSeeds": { - "c1": 4.3367524362555425, - "c2": 4.3720796299723865, - "c3": 4.375898622637311, - "c4": 4.38308786558027, - "c5": 4.381891266248695, - "c6": 4.373912542383819, - "c7": 4.3581730223724255 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.2968099861304045, + "c3": 5.247341655108635, + "c4": 4.197873324086936, + "c5": 3.1484049930651676, + "c6": 2.098936662043468, + "c7": 1.0494683310216992 }, "rgb": [222, 0, 59] }, @@ -396015,23 +396015,23 @@ "year": 1808, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -9.590583315929637, - "c2": -18.91033234140618, - "c3": 17.452280298167064, - "c4": 16.63173158263969, - "c5": 3.45007972185239, - "c6": 5.591301094131897, - "c7": 22.166511968931037 + "points": { + "c1": -9.13437359426948, + "c2": -10.087937033525185, + "c3": -7.414871558789876, + "c4": 23.67223734404354, + "c5": 24.608226811299584, + "c6": -6.263891022234116, + "c7": -21.737395320894763 }, - "vertexSeeds": { - "c1": 1.3795336787564767, - "c2": 1.3795336787564767, - "c3": 1.3795336787564767, - "c4": 1.3795336787564767, - "c5": 1.3795336787564767, - "c6": 1.3795336787564767, - "c7": 1.3795336787564767 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -396042,23 +396042,23 @@ "year": 1808, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -2.699479996831222, - "c2": -2.9849629655298244, - "c3": -4.650172994558872, - "c4": -27.96249979661082, - "c5": -12.93176679319684, - "c6": 9.52034733571275, - "c7": -26.856413183353595 + "points": { + "c1": 6.073777899889045, + "c2": -4.989489697547533, + "c3": -37.03104370768862, + "c4": 5.105046644345855, + "c5": -34.86173334780741, + "c6": 19.53212986744117, + "c7": 31.26288290908532 }, - "vertexSeeds": { - "c1": 12.511442484609981, - "c2": 11.815295889723714, - "c3": 13.00456782885199, - "c4": 13.387894508607914, - "c5": 12.345677046358526, - "c6": 12.079059112849997, - "c7": 13.155923724134912 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155342, + "c3": 16.181229773462785, + "c4": 12.944983818770227, + "c5": 9.708737864077671, + "c6": 6.472491909385114, + "c7": 3.236245954692557 }, "rgb": [58, 15, 49] }, @@ -396069,23 +396069,23 @@ "year": 1809, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -50.27390598998433, - "c2": 23.178344788172765, - "c3": 16.703069273930197, - "c4": 12.120767728481653, - "c5": 35.742627746591936, - "c6": -50.36703114106773, - "c7": 44.11691192441411 + "points": { + "c1": -51.66106556820585, + "c2": 29.854178457218268, + "c3": 54.32324957161852, + "c4": 15.51954513423729, + "c5": -0.4150533834181047, + "c6": 21.270236091131324, + "c7": 33.66765397747132 }, - "vertexSeeds": { - "c1": 10.089624058028889, - "c2": 10.16295142679015, - "c3": 10.405142901378152, - "c4": 10.354161400772766, - "c5": 10.323611681026215, - "c6": 10.36725404159528, - "c7": 10.431570670652503 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679584, + "c3": 12.459546925566386, + "c4": 9.96763754045309, + "c5": 7.475728155339792, + "c6": 4.983818770226494, + "c7": 2.491909385113297 }, "rgb": [238, 201, 159] }, @@ -396096,23 +396096,23 @@ "year": 1808, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -11.076996280316592, - "c2": -24.769699114951937, - "c3": 30.002115008759574, - "c4": -4.336894243895664, - "c5": 5.649383165186464, - "c6": 13.826955897563245, - "c7": 32.08497560532014 + "points": { + "c1": 15.95816152159005, + "c2": 17.389107404225186, + "c3": -4.787667440571454, + "c4": -28.04458750011422, + "c5": 10.274966936136572, + "c6": -12.089354059832626, + "c7": -20.761338350274283 }, - "vertexSeeds": { - "c1": 7.307065397031607, - "c2": 7.25611182630584, - "c3": 9.166971802159049, - "c4": 8.913149168431266, - "c5": 8.268429591825807, - "c6": 8.76211679535521, - "c7": 8.975808118674044 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.20388349514563, + "c3": 11.003236245954694, + "c4": 8.802588996763754, + "c5": 6.601941747572815, + "c6": 4.401294498381877, + "c7": 2.2006472491909386 }, "rgb": [222, 0, 59] }, @@ -396123,23 +396123,23 @@ "year": 1809, "resistanceReported": false, "duration": 44928000, - "curveSeeds": { - "c1": 1.904279313616371, - "c2": 35.61961307916184, - "c3": 11.290941429608338, - "c4": -56.21031913852784, - "c5": -10.796489129610507, - "c6": 18.189425625344583, - "c7": 30.33658049817295 + "points": { + "c1": -60.37243834119451, + "c2": -0.2671378859576379, + "c3": -45.523313556573136, + "c4": -12.39150138604343, + "c5": 24.58685058076796, + "c6": 3.0940874402041914, + "c7": 31.387503089614953 }, - "vertexSeeds": { - "c1": 7.094473480946409, - "c2": 8.69796528101094, - "c3": 7.470881511102743, - "c4": 8.094415597294352, - "c5": 7.741957764397068, - "c6": 7.2501507291473795, - "c7": 8.119535308862046 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140083, + "c3": 10.425335182616738, + "c4": 8.340268146093383, + "c5": 6.255201109570037, + "c6": 4.170134073046691, + "c7": 2.0850670365233457 }, "rgb": [58, 15, 49] }, @@ -396150,23 +396150,23 @@ "year": 1808, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -19.916084718375743, - "c2": -27.95681069200525, - "c3": 33.7147343163216, - "c4": 26.600152989975527, - "c5": 7.763093452402195, - "c6": 27.643814742490235, - "c7": -32.834810082288364 + "points": { + "c1": 0.9858694798382359, + "c2": 4.326292152187165, + "c3": -25.33608530602488, + "c4": -9.868066071773729, + "c5": -32.240941649712354, + "c6": 16.264482209373384, + "c7": 27.19691423179991 }, - "vertexSeeds": { - "c1": 10.98630488047979, - "c2": 10.862311911625747, - "c3": 10.869259869184283, - "c4": 11.15329629682602, - "c5": 11.047794891740278, - "c6": 10.84857702491264, - "c7": 11.100481568593677 + "offsets": { + "c1": 18.705501618122977, + "c2": 16.033287101248245, + "c3": 13.361072584373588, + "c4": 10.688858067498856, + "c5": 8.016643550624122, + "c6": 5.344429033749388, + "c7": 2.6722145168747335 }, "rgb": [58, 15, 49] }, @@ -396177,23 +396177,23 @@ "year": 1808, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 9.481312737054516, - "c2": 17.29061317351306, - "c3": -18.082287791919853, - "c4": 11.690296510416879, - "c5": -1.3823311979918103, - "c6": 9.465116538753108, - "c7": 19.712472741887012 + "points": { + "c1": 5.79195291834872, + "c2": -10.481713785200663, + "c3": -10.699259908920817, + "c4": -9.616778633762781, + "c5": -8.735171421870252, + "c6": -9.788014826921717, + "c7": -2.311076162410412 }, - "vertexSeeds": { - "c1": 7.580463906457448, - "c2": 8.118707926974508, - "c3": 7.473587487784071, - "c4": 7.33152819872214, - "c5": 8.074478653750212, - "c6": 7.977710969670066, - "c7": 7.709263004222423 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295427, + "c3": 9.939898289412847, + "c4": 7.951918631530281, + "c5": 5.963938973647713, + "c6": 3.975959315765147, + "c7": 1.9879796578825666 }, "rgb": [77, 76, 132] }, @@ -396204,23 +396204,23 @@ "year": 1809, "resistanceReported": false, "duration": 50025600, - "curveSeeds": { - "c1": 24.135239770029344, - "c2": 50.571735207587764, - "c3": 26.159323394900312, - "c4": -24.256148817359232, - "c5": -28.409737892230744, - "c6": 11.386847780806903, - "c7": 10.135514538098604 + "points": { + "c1": 53.34840285372101, + "c2": -20.863506490099837, + "c3": 15.672476840976145, + "c4": -1.5716265593190712, + "c5": 53.046716575705716, + "c6": -44.71179702142027, + "c7": 56.7029079461454 }, - "vertexSeeds": { - "c1": 10.14392444359534, - "c2": 9.432329733347334, - "c3": 10.119028928210634, - "c4": 9.422109267175315, - "c5": 9.804698596182924, - "c6": 9.662798460376585, - "c7": 9.837622179612376 + "offsets": { + "c1": 17.216828478964402, + "c2": 14.757281553398066, + "c3": 12.29773462783173, + "c4": 9.838187702265378, + "c5": 7.378640776699025, + "c6": 4.919093851132689, + "c7": 2.459546925566352 }, "rgb": [238, 201, 159] }, @@ -396231,23 +396231,23 @@ "year": 1808, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -34.347365074910904, - "c2": -36.57750785638321, - "c3": -33.161937801258254, - "c4": -15.751784769248086, - "c5": 19.700273313455135, - "c6": 31.816203516507116, - "c7": 25.66281988384671 + "points": { + "c1": -5.0697943445157065, + "c2": -26.00683701030363, + "c3": 2.6106361990498996, + "c4": -28.44757961635224, + "c5": -3.4472155750788716, + "c6": -20.00857297707659, + "c7": 23.674072592277412 }, - "vertexSeeds": { - "c1": 3.76502872295001, - "c2": 4.0171665244995065, - "c3": 3.8457193460721637, - "c4": 3.8452019116491103, - "c5": 3.7268912563302248, - "c6": 3.9009271398692857, - "c7": 3.5684900530733605 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.7697642163661556, + "c3": 4.8081368469717995, + "c4": 3.8465094775774373, + "c5": 2.8848821081830813, + "c6": 1.9232547387887187, + "c7": 0.9616273693943629 }, "rgb": [86, 146, 138] }, @@ -396258,23 +396258,23 @@ "year": 1808, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 18.6702330062001, - "c2": 31.784233789345592, - "c3": 23.911921199165683, - "c4": 25.016663138179872, - "c5": 12.593288475195614, - "c6": -13.480841435942644, - "c7": 22.36933084590055 + "points": { + "c1": -19.17045353670289, + "c2": 9.402386311799667, + "c3": 5.40022672484465, + "c4": -16.087673763455868, + "c5": -16.042387718493547, + "c6": -16.054677809813075, + "c7": -16.753190868298603 }, - "vertexSeeds": { - "c1": 9.659376438652798, - "c2": 11.319428465797955, - "c3": 9.508748765910491, - "c4": 10.306209042315446, - "c5": 11.572101152404443, - "c6": 10.612517523172803, - "c7": 11.540430666955276 + "offsets": { + "c1": 19.320388349514563, + "c2": 16.560332871012488, + "c3": 13.800277392510413, + "c4": 11.040221914008319, + "c5": 8.280166435506244, + "c6": 5.520110957004169, + "c7": 2.7600554785020845 }, "rgb": [86, 146, 138] }, @@ -396285,23 +396285,23 @@ "year": 1809, "resistanceReported": false, "duration": 49420800, - "curveSeeds": { - "c1": -14.146741157188636, - "c2": -28.56329200686539, - "c3": -38.18348545191484, - "c4": -43.19862681806778, - "c5": -5.8028385996335246, - "c6": -27.411322633828092, - "c7": 24.8200580168092 + "points": { + "c1": 47.92641207228756, + "c2": 31.231701617830524, + "c3": 52.47620542754933, + "c4": 12.972445687942383, + "c5": 0.7077417366117231, + "c6": -63.6717192211772, + "c7": 35.64833293257638 }, - "vertexSeeds": { - "c1": 10.009174122593901, - "c2": 11.120712325570944, - "c3": 9.287953868681932, - "c4": 10.39301036665321, - "c5": 10.641552310481707, - "c6": 10.584709764986973, - "c7": 10.12611828063905 + "offsets": { + "c1": 18.6084142394822, + "c2": 15.950069348127593, + "c3": 13.291724456773007, + "c4": 10.6333795654184, + "c5": 7.975034674063791, + "c6": 5.316689782709205, + "c7": 2.6583448913545973 }, "rgb": [238, 201, 159] }, @@ -396312,23 +396312,23 @@ "year": 1808, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": -31.659223136663837, - "c2": -6.817929398650406, - "c3": -28.530278856988332, - "c4": 11.046927222793606, - "c5": -20.547660531360084, - "c6": 14.18715171350214, - "c7": 4.25500441638097 + "points": { + "c1": 19.189486914929603, + "c2": -35.26169921868014, + "c3": 36.68668875515728, + "c4": 7.96537783681098, + "c5": 0.583485609097103, + "c6": 29.8261779477303, + "c7": 13.17616772761398 }, - "vertexSeeds": { - "c1": 9.431987769878491, - "c2": 9.25176160498844, - "c3": 9.963330775836566, - "c4": 9.783297556848192, - "c5": 9.804618071820148, - "c6": 9.351097764612387, - "c7": 9.99166567071873 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915384, + "c3": 12.020342117429493, + "c4": 9.616273693943603, + "c5": 7.212205270457692, + "c6": 4.808136846971801, + "c7": 2.404068423485911 }, "rgb": [238, 201, 159] }, @@ -396339,23 +396339,23 @@ "year": 1808, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 22.51956284814105, - "c2": -12.60908313547629, - "c3": -14.225978196258346, - "c4": 13.246054397933271, - "c5": -4.856540584209995, - "c6": -1.7129091017127678, - "c7": -24.610824163531642 + "points": { + "c1": -20.17738777878334, + "c2": -36.77289359020657, + "c3": -17.09745312362096, + "c4": -11.471373227835333, + "c5": -19.119352719616487, + "c6": 7.193008995809777, + "c7": 35.79875422234921 }, - "vertexSeeds": { - "c1": 3.292818494349063, - "c2": 3.3030360337684956, - "c3": 3.31869834280657, - "c4": 3.302161798014253, - "c5": 3.319798001263735, - "c6": 3.2908651853410853, - "c7": 3.319207538713139 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918191, + "c3": 3.975959315765107, + "c4": 3.1807674526121015, + "c5": 2.3855755894590955, + "c6": 1.5903837263060903, + "c7": 0.7951918631530055 }, "rgb": [238, 201, 159] }, @@ -396366,23 +396366,23 @@ "year": 1808, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 10.070499568548787, - "c2": 21.201273441814916, - "c3": -3.9893769635605736, - "c4": -4.458656165181981, - "c5": 14.738222300250964, - "c6": -13.671143787607214, - "c7": -15.437365033953876 + "points": { + "c1": -26.638394824319676, + "c2": 13.652386946136925, + "c3": 23.286996217474755, + "c4": 10.948377456300587, + "c5": 6.849763912061096, + "c6": 14.749100894789482, + "c7": -25.103436121317422 }, - "vertexSeeds": { - "c1": 6.327766485071662, - "c2": 6.299864552687761, - "c3": 6.240932366358938, - "c4": 6.482777277300557, - "c5": 6.438574678766594, - "c6": 6.259420570156747, - "c7": 6.579028251672826 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796121, + "c3": 7.9288025889967715, + "c4": 6.343042071197424, + "c5": 4.757281553398074, + "c6": 3.171521035598698, + "c7": 1.585760517799349 }, "rgb": [222, 0, 59] }, @@ -396393,23 +396393,23 @@ "year": 1808, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 27.334301793317216, - "c2": -0.8951966072494564, - "c3": -19.708410027164994, - "c4": 10.54430173388161, - "c5": 26.02132398219741, - "c6": -22.68221465708149, - "c7": -16.511056997224117 + "points": { + "c1": -23.216863338442586, + "c2": 11.994727272604486, + "c3": 14.783460809466526, + "c4": 18.44202780750212, + "c5": 3.886853231429548, + "c6": 18.448558900399902, + "c7": -7.069523748391937 }, - "vertexSeeds": { - "c1": 3.3396851862415735, - "c2": 3.337666811563151, - "c3": 3.3283393488430115, - "c4": 3.3556477962831743, - "c5": 3.352250973710705, - "c6": 3.3316133343542758, - "c7": 3.335311903885547 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998635, + "c3": 4.022191400832143, + "c4": 3.2177531206657304, + "c5": 2.4133148404993174, + "c6": 1.6088765603329052, + "c7": 0.8044382801664125 }, "rgb": [77, 76, 132] }, @@ -396420,23 +396420,23 @@ "year": 1808, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -11.914882225976369, - "c2": -22.003816276623503, - "c3": 5.820363435089352, - "c4": -25.41020899299704, - "c5": 7.5617984607761635, - "c6": 19.593070808149218, - "c7": 3.3433575203405574 + "points": { + "c1": 24.343919954222816, + "c2": 1.669427085841562, + "c3": -3.0401736935562624, + "c4": -26.44026117286507, + "c5": 0.8168590848808996, + "c6": 19.55264015533289, + "c7": 21.389754869130467 }, - "vertexSeeds": { - "c1": 6.471106436365514, - "c2": 6.4720400726494525, - "c3": 6.4712792413764495, - "c4": 6.470890511013354, - "c5": 6.487157579943533, - "c6": 6.482462184568212, - "c7": 6.4869683980245 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474078, + "c3": 7.743874248728706, + "c4": 6.195099398982718, + "c5": 4.646324549237347, + "c6": 3.097549699491359, + "c7": 1.5487748497459877 }, "rgb": [238, 201, 159] }, @@ -396447,23 +396447,23 @@ "year": 1809, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -33.28790674092201, - "c2": 26.050578025186006, - "c3": 33.12693131539065, - "c4": 1.9189865952379677, - "c5": -27.340197128312816, - "c6": 5.418118340787387, - "c7": 1.6862727090232568 + "points": { + "c1": -4.485529998245568, + "c2": -17.670075293751406, + "c3": -5.345402290499578, + "c4": -8.477736374543323, + "c5": 31.187382561165336, + "c6": -11.673243219190105, + "c7": -9.096064620170054 }, - "vertexSeeds": { - "c1": 5.120130902342398, - "c2": 5.127237408274243, - "c3": 5.131781429118434, - "c4": 5.140714600069261, - "c5": 5.1352068374982425, - "c6": 5.134040401123212, - "c7": 5.1270851524101495 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699064, + "c3": 6.148867313915928, + "c4": 4.919093851132791, + "c5": 3.68932038834941, + "c6": 2.4595469255662734, + "c7": 1.2297734627831367 }, "rgb": [86, 146, 138] }, @@ -396474,23 +396474,23 @@ "year": 1809, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 1.5771031841289975, - "c2": 3.3385560255411555, - "c3": 21.92682339814515, - "c4": -14.551432417479948, - "c5": 8.971197692449831, - "c6": 9.760048658137688, - "c7": -20.2718596447311 + "points": { + "c1": 4.71009263431052, + "c2": -29.9208416722594, + "c3": 0.36506881595552443, + "c4": 0.9300701523551709, + "c5": 9.512469709696958, + "c6": -12.791194068314994, + "c7": 21.07524859238967 }, - "vertexSeeds": { - "c1": 7.948960838113589, - "c2": 7.938843571295674, - "c3": 7.944428790226793, - "c4": 7.954776974643117, - "c5": 7.943799708253116, - "c6": 7.921459076475092, - "c7": 7.949876039264074 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571484, + "c3": 9.523809523809444, + "c4": 7.619047619047592, + "c5": 5.714285714285742, + "c6": 3.809523809523891, + "c7": 1.9047619047618507 }, "rgb": [222, 0, 59] }, @@ -396501,23 +396501,23 @@ "year": 1808, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 12.181938765796787, - "c2": 10.28018962150838, - "c3": 14.436528594556052, - "c4": 9.287696727545384, - "c5": -11.951982566031681, - "c6": -8.583106774027032, - "c7": -9.166097271561362 + "points": { + "c1": -1.207662350270553, + "c2": 14.743683095923735, + "c3": 12.596982841049567, + "c4": 2.6486723871299915, + "c5": -15.8561712422423, + "c6": 0.07987080030328997, + "c7": -20.659315639112314 }, - "vertexSeeds": { - "c1": 0.9559487205827183, - "c2": 0.9690292411273015, - "c3": 0.9558311148022609, - "c4": 0.968633324695037, - "c5": 0.9624675195476542, - "c6": 0.9543134302431784, - "c7": 0.960583143814386 + "offsets": { + "c1": 1.650485436893204, + "c2": 1.4147018030513128, + "c3": 1.178918169209433, + "c4": 0.9431345353675418, + "c5": 0.7073509015256623, + "c6": 0.4715672676837709, + "c7": 0.23578363384189133 }, "rgb": [222, 0, 59] }, @@ -396528,23 +396528,23 @@ "year": 1809, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 10.858364299146011, - "c2": 15.011263935529811, - "c3": 5.539185996184699, - "c4": -19.25725198856589, - "c5": -4.623854512320854, - "c6": 9.495241778865484, - "c7": -23.093976727490737 + "points": { + "c1": -12.96359265360023, + "c2": 29.73961396552081, + "c3": -7.391883060488439, + "c4": -13.284656300474982, + "c5": 25.755885150144636, + "c6": -26.21948880206873, + "c7": 25.340707675274693 }, - "vertexSeeds": { - "c1": 14.356408856895797, - "c2": 14.332495398758104, - "c3": 14.195420714463832, - "c4": 14.032214455746898, - "c5": 14.113360940032338, - "c6": 13.684122888704984, - "c7": 14.480203374472316 + "offsets": { + "c1": 24.174757281553397, + "c2": 20.721220527045745, + "c3": 17.26768377253815, + "c4": 13.814147018030498, + "c5": 10.3606102635229, + "c6": 6.907073509015249, + "c7": 3.4535367545076516 }, "rgb": [222, 0, 59] }, @@ -396555,23 +396555,23 @@ "year": 1809, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -21.393104281587263, - "c2": 39.58290538158695, - "c3": 36.20769142374244, - "c4": -30.231617046000025, - "c5": 19.073937084413366, - "c6": -38.55956940085183, - "c7": 38.62140075407894 + "points": { + "c1": 11.183744441371886, + "c2": 49.64037235291514, + "c3": 15.956021623622, + "c4": 49.22370236701277, + "c5": 37.78994425251448, + "c6": 14.036781265718638, + "c7": 5.905572858654814 }, - "vertexSeeds": { - "c1": 2.5875202934963797, - "c2": 2.6590468345243687, - "c3": 2.517007248423409, - "c4": 2.7280685573416896, - "c5": 2.604263220097168, - "c6": 2.6949842146760767, - "c7": 2.7069106525845035 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791959, + "c3": 3.328710124826628, + "c4": 2.662968099861306, + "c5": 1.9972260748959751, + "c6": 1.331484049930653, + "c7": 0.6657420249653309 }, "rgb": [222, 0, 59] }, @@ -396582,23 +396582,23 @@ "year": 1808, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -10.0466667368784, - "c2": -19.650321930134368, - "c3": -12.712705354181416, - "c4": 5.394354822545679, - "c5": 16.585792143491133, - "c6": -13.191636151961006, - "c7": 3.445734780208099 + "points": { + "c1": 18.4953826308111, + "c2": -16.95385604679116, + "c3": -7.714101690279797, + "c4": 13.206261383084446, + "c5": -0.27119345470345024, + "c6": 1.5253341924297636, + "c7": -12.52291154676298 }, - "vertexSeeds": { - "c1": 6.573530545074592, - "c2": 6.293741800380375, - "c3": 6.314366429517651, - "c4": 6.513217272579233, - "c5": 6.325039324122301, - "c6": 6.48774106759298, - "c7": 6.293406044819692 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238555, + "c3": 8.18307905686546, + "c4": 6.546463245492383, + "c5": 4.909847434119287, + "c6": 3.2732316227461915, + "c7": 1.6366158113730958 }, "rgb": [222, 0, 59] }, @@ -396609,23 +396609,23 @@ "year": 1809, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 5.510618158175841, - "c2": -18.06654550511309, - "c3": 20.997560629029653, - "c4": 22.390376574276484, - "c5": 0.6709940287678862, - "c6": 0.7567259473182517, - "c7": 25.805523670697436 + "points": { + "c1": 10.671644096260078, + "c2": -16.481249428988193, + "c3": -17.88426255077628, + "c4": -4.031022277865823, + "c5": -21.977243342448507, + "c6": 20.60339076103251, + "c7": 9.366334731542263 }, - "vertexSeeds": { - "c1": 5.676694068078806, - "c2": 5.704033647249739, - "c3": 5.706058079892288, - "c4": 5.704664534633097, - "c5": 5.686963856470087, - "c6": 5.7001193364686005, - "c7": 5.709470359636278 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865504, + "c3": 6.819232547387965, + "c4": 5.455386037910426, + "c5": 4.091539528432616, + "c6": 2.7276930189550774, + "c7": 1.3638465094775387 }, "rgb": [86, 146, 138] }, @@ -396636,23 +396636,23 @@ "year": 1809, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -25.033857327117353, - "c2": 9.918421178887169, - "c3": -7.276169771523588, - "c4": -21.37569982549893, - "c5": 8.836192234672165, - "c6": 10.47067843966111, - "c7": 6.262786720812745 + "points": { + "c1": -8.524454464195351, + "c2": 13.914320882107845, + "c3": 26.037160427384606, + "c4": -19.967298877418433, + "c5": -14.140910086013683, + "c6": 6.067634716121837, + "c7": 23.868922574465913 }, - "vertexSeeds": { - "c1": 7.939662341390343, - "c2": 7.9187459296348015, - "c3": 7.922705717480489, - "c4": 7.936365594880661, - "c5": 7.919671201591167, - "c6": 7.917397124759852, - "c7": 7.913151097645358 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926491038, + "c3": 9.477577438742594, + "c4": 7.582061950994151, + "c5": 5.686546463245331, + "c6": 3.7910309754968874, + "c7": 1.8955154877484437 }, "rgb": [238, 201, 159] }, @@ -396663,23 +396663,23 @@ "year": 1809, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 12.760618846279286, - "c2": -22.508957422134905, - "c3": 0.8506450179431866, - "c4": 9.161946540755558, - "c5": -1.7523966228966934, - "c6": -24.583873853148486, - "c7": 20.904318328949785 + "points": { + "c1": -7.6617883550694295, + "c2": -9.88047316105656, + "c3": 12.325370228403543, + "c4": -16.258562037925877, + "c5": 17.509702965098207, + "c6": -24.63388367078048, + "c7": -7.316584356704958 }, - "vertexSeeds": { - "c1": 3.1576023418651458, - "c2": 3.2564806561707673, - "c3": 3.210171977129955, - "c4": 3.1552658797506687, - "c5": 3.457968366503607, - "c6": 3.141539185410026, - "c7": 3.4521491161608147 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280169, + "c3": 4.184003698566804, + "c4": 3.3472029588534458, + "c5": 2.5104022191400808, + "c6": 1.6736014794267229, + "c7": 0.8368007397133652 }, "rgb": [77, 76, 132] }, @@ -396690,23 +396690,23 @@ "year": 1809, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -18.130076757367956, - "c2": -33.019396288126444, - "c3": 19.58216600505589, - "c4": 8.84328832312989, - "c5": 24.92915059046954, - "c6": -0.6986917433141286, - "c7": 29.146874231608138 + "points": { + "c1": 9.540091164297728, + "c2": 2.382722648310178, + "c3": 34.436507995535905, + "c4": 28.2577658325907, + "c5": -2.0662209694512015, + "c6": 14.115145223701042, + "c7": 18.384491213594806 }, - "vertexSeeds": { - "c1": 4.254531881808146, - "c2": 4.311463156403473, - "c3": 4.062498961134962, - "c4": 4.005168556578944, - "c5": 4.305158022583161, - "c6": 4.033723987827605, - "c7": 4.250924808937931 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049929, + "c3": 5.201109570041606, + "c4": 4.160887656033283, + "c5": 3.120665742024959, + "c6": 2.0804438280166466, + "c7": 1.0402219140083233 }, "rgb": [222, 0, 59] }, @@ -396717,23 +396717,23 @@ "year": 1809, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 27.272453859495663, - "c2": -12.075755970343668, - "c3": 13.744193699882281, - "c4": -14.832224155416725, - "c5": 18.68308143107155, - "c6": -23.071782542644545, - "c7": 20.074776152843093 + "points": { + "c1": -13.828889555614968, + "c2": -19.761293027870863, + "c3": 3.2020273902761005, + "c4": -20.471983742240834, + "c5": 0.6552097284181713, + "c6": 12.339480005873192, + "c7": -3.558517383560609 }, - "vertexSeeds": { - "c1": 7.219019190121833, - "c2": 7.422021785435693, - "c3": 7.187289621083549, - "c4": 7.4722677017466586, - "c5": 7.174421854797784, - "c6": 7.084890333091072, - "c7": 7.333663704860952 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686554, + "c3": 9.01525658807211, + "c4": 7.212205270457693, + "c5": 5.409153952843277, + "c6": 3.606102635228861, + "c7": 1.8030513176144163 }, "rgb": [238, 201, 159] }, @@ -396744,23 +396744,23 @@ "year": 1809, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -8.444642213104803, - "c2": -3.401835654049698, - "c3": -10.030687982691028, - "c4": 28.796459905795835, - "c5": 11.937217814066209, - "c6": 3.4890089432552145, - "c7": -30.83158479092469 + "points": { + "c1": 25.09289765261959, + "c2": -32.88741799799958, + "c3": 8.290726659362754, + "c4": -32.56980874690188, + "c5": 33.989290518863655, + "c6": -32.677125850068784, + "c7": -1.5767842537913808 }, - "vertexSeeds": { - "c1": 10.41434665759256, - "c2": 10.40746659428226, - "c3": 10.406096188080946, - "c4": 10.410274931133495, - "c5": 10.407671564728261, - "c6": 10.412347527263957, - "c7": 10.408583552804465 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599733, + "c3": 12.41331484049846, + "c4": 9.930651872399164, + "c5": 7.447988904299867, + "c6": 4.9653259362005695, + "c7": 2.4826629680992967 }, "rgb": [58, 15, 49] }, @@ -396771,23 +396771,23 @@ "year": 1809, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -27.799963540580393, - "c2": 2.3146980514082927, - "c3": 24.668451071716902, - "c4": -9.920307008969093, - "c5": -20.945559359323575, - "c6": -20.394015298151174, - "c7": 13.887802494309426 + "points": { + "c1": 14.322806044362181, + "c2": -25.055008517426458, + "c3": 13.15142294739703, + "c4": -20.835655001594393, + "c5": 25.709675419525055, + "c6": 10.711180710602768, + "c7": -25.60058368511686 }, - "vertexSeeds": { - "c1": 6.63343089687202, - "c2": 6.6442331675350434, - "c3": 6.6432804559718, - "c4": 6.638450532310763, - "c5": 6.625997215510541, - "c6": 6.638856248399882, - "c7": 6.637320401601867 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106795846, + "c3": 7.928802588996854, + "c4": 6.343042071197231, + "c5": 4.757281553398239, + "c6": 3.1715210355986154, + "c7": 1.5857605177996232 }, "rgb": [58, 15, 49] }, @@ -396798,23 +396798,23 @@ "year": 1809, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 1.2320183925587394, - "c2": 0.9650789499396346, - "c3": -16.46440309810773, - "c4": -16.43337811072793, - "c5": -17.80037931161629, - "c6": -9.605059168839183, - "c7": 17.113885098883507 + "points": { + "c1": -5.212383438797797, + "c2": -25.042537715003434, + "c3": -3.0130111982693073, + "c4": 27.638875629315656, + "c5": 18.81917774523683, + "c6": 15.643016584947532, + "c7": -8.808614400151157 }, - "vertexSeeds": { - "c1": 4.039984335104482, - "c2": 4.05522922568919, - "c3": 4.018374800965801, - "c4": 4.0177985269846115, - "c5": 4.029082702279522, - "c6": 4.069935769498643, - "c7": 4.044161225937608 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486803, + "c3": 4.87748497457236, + "c4": 3.9019879796578683, + "c5": 2.9264909847434253, + "c6": 1.9509939898289341, + "c7": 0.9754969949144427 }, "rgb": [238, 201, 159] }, @@ -396825,23 +396825,23 @@ "year": 1809, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -9.289563388994699, - "c2": 8.023708700693753, - "c3": -15.890954594362631, - "c4": 10.813323382189516, - "c5": -19.529561815646886, - "c6": -20.329019400787608, - "c7": 1.9132065416913235 + "points": { + "c1": -21.690776997044168, + "c2": -23.16079211778602, + "c3": 13.638910964726541, + "c4": -16.385708307838375, + "c5": -10.266423944151192, + "c6": -3.9098225817988954, + "c7": -10.901090663857268 }, - "vertexSeeds": { - "c1": 2.1609761693749294, - "c2": 2.0884440201821604, - "c3": 2.2267654036378537, - "c4": 2.12300720067621, - "c5": 2.089052692964355, - "c6": 2.310546483911159, - "c7": 2.068872826299011 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.356449375866851, + "c3": 2.797041146555708, + "c4": 2.237632917244566, + "c5": 1.6782246879334237, + "c6": 1.118816458622281, + "c7": 0.5594082293111388 }, "rgb": [238, 201, 159] }, @@ -396852,23 +396852,23 @@ "year": 1809, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 14.829395020946855, - "c2": 2.937190803153893, - "c3": 22.034726440075183, - "c4": -10.0556679777515, - "c5": -18.684742821676608, - "c6": 18.02292369442862, - "c7": -13.69041398896291 + "points": { + "c1": -3.7942051740750777, + "c2": 17.712752132008198, + "c3": 13.693837316468489, + "c4": 10.461840585584717, + "c5": -5.707162042765521, + "c6": -26.9803171526521, + "c7": -1.2950816925812596 }, - "vertexSeeds": { - "c1": 5.427212805750034, - "c2": 5.208323109639717, - "c3": 5.114567210428319, - "c4": 5.626929044758382, - "c5": 5.29282263237512, - "c6": 5.666867042853035, - "c7": 5.633461061522825 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187242, + "c3": 7.004160887656036, + "c4": 5.603328710124819, + "c5": 4.2024965325936146, + "c6": 2.8016643550624094, + "c7": 1.4008321775312047 }, "rgb": [238, 201, 159] }, @@ -396879,23 +396879,23 @@ "year": 1809, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -24.413533945866302, - "c2": -30.00968745543053, - "c3": -26.600096135443053, - "c4": -9.095939380558132, - "c5": -27.797343547366037, - "c6": -30.421015230422544, - "c7": 4.6854294455193255 + "points": { + "c1": 30.31171784495764, + "c2": -0.14294931998269078, + "c3": -10.229144226802113, + "c4": 35.368486722186304, + "c5": -23.726230204582848, + "c6": -20.181395525846487, + "c7": 9.242377576919985 }, - "vertexSeeds": { - "c1": 9.853862332959562, - "c2": 10.901059832191633, - "c3": 10.028853108964363, - "c4": 10.912231919430415, - "c5": 10.025151203835344, - "c6": 9.606919382242287, - "c7": 10.23420042886527 + "offsets": { + "c1": 19.385113268608414, + "c2": 16.61581137309293, + "c3": 13.846509477577447, + "c4": 11.077207582061948, + "c5": 8.307905686546466, + "c6": 5.538603791030983, + "c7": 2.7693018955154916 }, "rgb": [77, 76, 132] }, @@ -396906,23 +396906,23 @@ "year": 1809, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 11.925819311535484, - "c2": -19.904832993987593, - "c3": -15.714225383296622, - "c4": -10.761248826130164, - "c5": -11.507764371794448, - "c6": 5.979617992534838, - "c7": -1.2132786039140449 + "points": { + "c1": -14.858487627710211, + "c2": 6.8058592425398245, + "c3": -4.389943248634921, + "c4": 10.570269020559529, + "c5": -19.882328063932224, + "c6": 1.753150464165362, + "c7": -12.360435087303795 }, - "vertexSeeds": { - "c1": 3.504383928897192, - "c2": 3.4971220983571105, - "c3": 3.5995423135926488, - "c4": 3.5494027879232886, - "c5": 3.5250513423724588, - "c6": 3.533773736547143, - "c7": 3.5882840014772004 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521498, + "c3": 4.322699953767915, + "c4": 3.458159963014332, + "c5": 2.593619972260749, + "c6": 1.729079981507166, + "c7": 0.864539990753583 }, "rgb": [222, 0, 59] }, @@ -396933,23 +396933,23 @@ "year": 1809, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 30.648340138135552, - "c2": 0.19940544024131412, - "c3": -4.322336550751807, - "c4": -17.196155574388744, - "c5": -22.828222852211237, - "c6": -30.42284815800201, - "c7": -21.704597905925915 + "points": { + "c1": -4.181516656901291, + "c2": -3.6827111253302434, + "c3": -7.823348727799942, + "c4": -12.95726256404453, + "c5": 18.67017505278502, + "c6": -20.06952967457846, + "c7": 22.78519641253383 }, - "vertexSeeds": { - "c1": 9.996580229697667, - "c2": 10.044477482835394, - "c3": 9.140702202939012, - "c4": 9.697862961477306, - "c5": 9.127631205372003, - "c6": 8.893927858745174, - "c7": 9.280344783621697 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.50762829403607, + "c3": 12.089690245030056, + "c4": 9.671752196024041, + "c5": 7.253814147018028, + "c6": 4.835876098012014, + "c7": 2.417938049006014 }, "rgb": [77, 76, 132] }, @@ -396960,23 +396960,23 @@ "year": 1809, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -0.7231866885887754, - "c2": -0.8205557145794913, - "c3": -16.446270170098217, - "c4": -7.856618151656466, - "c5": -10.86350534270193, - "c6": -26.532250756470425, - "c7": -5.570133247747901 + "points": { + "c1": 5.22763378509724, + "c2": -12.554635101416991, + "c3": -22.233528091824382, + "c4": 14.729981018839716, + "c5": -26.86372963532616, + "c6": -20.061512298732115, + "c7": -27.063703955267542 }, - "vertexSeeds": { - "c1": 3.8923154569327845, - "c2": 3.899251729508809, - "c3": 3.8930141978995403, - "c4": 3.8765148156991533, - "c5": 3.8917657916344806, - "c6": 3.8915906835006324, - "c7": 3.9039411660566463 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.6033287101248535, + "c3": 4.669440591770649, + "c4": 3.7355524734165377, + "c5": 2.8016643550624267, + "c6": 1.8677762367083153, + "c7": 0.9338881183541112 }, "rgb": [222, 0, 59] }, @@ -396987,23 +396987,23 @@ "year": 1809, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 19.746431746759193, - "c2": -28.36742468689322, - "c3": 4.028395301506464, - "c4": -31.12766156492812, - "c5": -30.67751103781453, - "c6": 13.127386265980611, - "c7": -9.52654988945891 + "points": { + "c1": -26.768628944801137, + "c2": 3.9570327373418905, + "c3": 23.616562942171385, + "c4": 33.440937702836024, + "c5": -11.348791966498741, + "c6": 17.21920575366019, + "c7": -18.66363411604837 }, - "vertexSeeds": { - "c1": 14.74655419947647, - "c2": 14.661762550659624, - "c3": 15.269031539572236, - "c4": 14.898909941377477, - "c5": 14.930356358618008, - "c6": 14.58123571827841, - "c7": 15.22936213200029 + "offsets": { + "c1": 25.469255663430424, + "c2": 21.830790568654674, + "c3": 18.192325473878842, + "c4": 14.553860379103087, + "c5": 10.915395284327337, + "c6": 7.276930189551584, + "c7": 3.638465094775752 }, "rgb": [86, 146, 138] }, @@ -397014,23 +397014,23 @@ "year": 1809, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -27.84281187555721, - "c2": 10.521988190646091, - "c3": -16.114451238975363, - "c4": 22.32666453847839, - "c5": 7.094291619342975, - "c6": -7.468435211659813, - "c7": 8.994520471901275 + "points": { + "c1": 28.338174910926668, + "c2": 6.851462554099186, + "c3": -11.474744716930818, + "c4": -0.4386031493893583, + "c5": -9.671210318536662, + "c6": -13.213082075865952, + "c7": -32.04171573281582 }, - "vertexSeeds": { - "c1": 8.702440195629576, - "c2": 9.831382910145802, - "c3": 9.441780497213383, - "c4": 9.121407305739535, - "c5": 9.466395701818724, - "c6": 8.150597648829082, - "c7": 8.68832571725533 + "offsets": { + "c1": 16.472491909385116, + "c2": 14.119278779472962, + "c3": 11.766065649560796, + "c4": 9.412852519648641, + "c5": 7.059639389736475, + "c6": 4.706426259824321, + "c7": 2.353213129912155 }, "rgb": [222, 0, 59] }, @@ -397041,23 +397041,23 @@ "year": 1809, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 9.940523919727589, - "c2": -30.706712679791583, - "c3": 4.084533901656037, - "c4": 18.599870513680855, - "c5": 9.362666025060705, - "c6": 14.35947900802006, - "c7": 33.620593790808016 + "points": { + "c1": -15.888927751086591, + "c2": 19.499234806131973, + "c3": 2.128369897157924, + "c4": -33.13716754103622, + "c5": 0.8632327616405036, + "c6": -12.982937863784358, + "c7": -21.48789157690967 }, - "vertexSeeds": { - "c1": 7.641183027420334, - "c2": 7.597990050847691, - "c3": 7.4549584397372115, - "c4": 7.537955952080117, - "c5": 7.425520912214864, - "c6": 7.844161744311544, - "c7": 7.4414600012026915 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370309, + "c3": 9.408229311141945, + "c4": 7.5265834489135495, + "c5": 5.644937586685154, + "c6": 3.763291724456759, + "c7": 1.8816458622283954 }, "rgb": [86, 146, 138] }, @@ -397068,23 +397068,23 @@ "year": 1809, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -17.762215641440367, - "c2": -3.3399545256750294, - "c3": -27.23234166033655, - "c4": -33.61657172735799, - "c5": 15.884757621794911, - "c6": -8.631005053837228, - "c7": -27.53003527455718 + "points": { + "c1": -13.898396334106462, + "c2": -21.303941330945595, + "c3": 6.781059475765751, + "c4": -8.127211281769888, + "c5": -4.900016275460715, + "c6": 16.50496386854666, + "c7": 34.52040914170262 }, - "vertexSeeds": { - "c1": 10.991563047886485, - "c2": 11.05576976220314, - "c3": 10.86790944101063, - "c4": 10.752483146486728, - "c5": 11.033205279011893, - "c6": 10.75686296807193, - "c7": 10.966586500745962 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.977808599167808, + "c3": 13.314840499306493, + "c4": 10.651872399445176, + "c5": 7.988904299583861, + "c6": 5.325936199722633, + "c7": 2.6629680998613163 }, "rgb": [77, 76, 132] }, @@ -397095,23 +397095,23 @@ "year": 1810, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 21.436527499737352, - "c2": -20.855467488662278, - "c3": 26.56791180994132, - "c4": -39.82997713996936, - "c5": -23.90616340174643, - "c6": 22.0500807324983, - "c7": -7.048629151999165 + "points": { + "c1": 38.48817263322104, + "c2": -24.853253130133336, + "c3": -39.000003021946995, + "c4": 28.333422324276953, + "c5": -32.80306043750529, + "c6": -35.27822827574202, + "c7": 16.807148336400317 }, - "vertexSeeds": { - "c1": 5.869569723761468, - "c2": 5.6589108664517225, - "c3": 5.9451673245885965, - "c4": 5.907449680467422, - "c5": 5.718740127595313, - "c6": 5.7530491611077865, - "c7": 5.6918608381192834 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509022, + "c3": 7.18908922792417, + "c4": 5.75127138233934, + "c5": 4.313453536754511, + "c6": 2.875635691169659, + "c7": 1.4378178455848294 }, "rgb": [86, 146, 138] }, @@ -397122,23 +397122,23 @@ "year": 1809, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 22.09971170986401, - "c2": 7.700778102180372, - "c3": 2.8694616748202684, - "c4": -11.473353021582513, - "c5": 13.284250986463249, - "c6": 14.678891149751948, - "c7": -22.680958733715386 + "points": { + "c1": 14.173586817025516, + "c2": 20.738538607492046, + "c3": -11.17380500230948, + "c4": -16.97787926578051, + "c5": -18.338551149741996, + "c6": -24.0032321077005, + "c7": 20.933422726691838 }, - "vertexSeeds": { - "c1": 8.60132578325206, - "c2": 8.918540613525677, - "c3": 8.964738916788448, - "c4": 8.654845101181294, - "c5": 8.944832465388751, - "c6": 8.807294016452339, - "c7": 8.479704317949901 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703183, + "c3": 10.748959778085975, + "c4": 8.599167822468798, + "c5": 6.449375866851591, + "c6": 4.299583911234385, + "c7": 2.1497919556172063 }, "rgb": [86, 146, 138] }, @@ -397149,23 +397149,23 @@ "year": 1810, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -43.47661314107166, - "c2": 21.918220386079028, - "c3": -2.3338242388790604, - "c4": 39.32743775420373, - "c5": 30.93328193652107, - "c6": 2.8460679990516624, - "c7": -40.06389540667163 + "points": { + "c1": 38.12198831857506, + "c2": 30.1300886333528, + "c3": -23.80624664141254, + "c4": -31.5042528145274, + "c5": 23.229596082247397, + "c6": 10.171235253800106, + "c7": -45.407404528913695 }, - "vertexSeeds": { - "c1": 11.650702145225019, - "c2": 11.272167516323131, - "c3": 11.716215845849645, - "c4": 11.188813299742954, - "c5": 11.55210344285341, - "c6": 11.384712886312954, - "c7": 11.286530515958354 + "offsets": { + "c1": 19.611650485436893, + "c2": 16.80998613037449, + "c3": 14.008321775312087, + "c4": 11.206657420249684, + "c5": 8.40499306518721, + "c6": 5.603328710124806, + "c7": 2.801664355062403 }, "rgb": [222, 0, 59] }, @@ -397176,23 +397176,23 @@ "year": 1809, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 27.940238025734345, - "c2": 14.445983944306668, - "c3": 18.628138586008212, - "c4": -1.4026022504793119, - "c5": -23.478448654790363, - "c6": 4.265528960665769, - "c7": 2.8999892675784267 + "points": { + "c1": 3.7702116313061254, + "c2": 19.187621068619876, + "c3": 11.61977265510994, + "c4": -30.16242410567965, + "c5": -29.349048774649074, + "c6": -25.28836785938894, + "c7": -7.690018561177286 }, - "vertexSeeds": { - "c1": 9.01936867851795, - "c2": 9.078552017544911, - "c3": 8.873217813435563, - "c4": 9.206652088165907, - "c5": 8.942507823741288, - "c6": 9.320699827637155, - "c7": 9.189594999114618 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.64771151178917, + "c3": 11.373092926490989, + "c4": 9.09847434119278, + "c5": 6.8238557558945985, + "c6": 4.54923717059639, + "c7": 2.2746185852981826 }, "rgb": [238, 201, 159] }, @@ -397203,23 +397203,23 @@ "year": 1809, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -16.987593624696963, - "c2": -29.20963303105006, - "c3": -15.74090012431509, - "c4": -21.52965978580793, - "c5": 24.874008728430915, - "c6": -13.27128316889804, - "c7": -17.609954431452586 + "points": { + "c1": 11.220505226181473, + "c2": 24.001877109872837, + "c3": 20.35060109350463, + "c4": 2.4059615230272087, + "c5": -16.58117399199993, + "c6": 0.23221529322304235, + "c7": -12.554205624939112 }, - "vertexSeeds": { - "c1": 10.963272507345327, - "c2": 10.559222798522914, - "c3": 10.695970420489425, - "c4": 10.296297120487182, - "c5": 10.666720760394508, - "c6": 10.426209467814903, - "c7": 10.892442524621128 + "offsets": { + "c1": 18.576051779935277, + "c2": 15.922330097087398, + "c3": 13.268608414239477, + "c4": 10.614886731391598, + "c5": 7.96116504854368, + "c6": 5.307443365695799, + "c7": 2.653721682847919 }, "rgb": [58, 15, 49] }, @@ -397230,23 +397230,23 @@ "year": 1809, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -17.146767788188306, - "c2": 23.233650804390784, - "c3": 8.911462674871714, - "c4": 20.717624712725566, - "c5": -0.4049687962173607, - "c6": -11.724646654693927, - "c7": 9.06761161582034 + "points": { + "c1": 29.62710249750232, + "c2": -6.830032640178018, + "c3": 14.3044446866271, + "c4": 14.689759907316152, + "c5": -30.460050256575162, + "c6": 7.645627433499527, + "c7": -12.88785863637819 }, - "vertexSeeds": { - "c1": 14.044355116102563, - "c2": 14.205455254828891, - "c3": 13.977465689335554, - "c4": 14.193234420743423, - "c5": 14.068276000146419, - "c6": 14.135248931706277, - "c7": 13.881639568172728 + "offsets": { + "c1": 23.78640776699029, + "c2": 20.388349514563053, + "c3": 16.990291262135937, + "c4": 13.592233009708705, + "c5": 10.194174757281587, + "c6": 6.796116504854353, + "c7": 3.398058252427235 }, "rgb": [222, 0, 59] }, @@ -397257,23 +397257,23 @@ "year": 1810, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -29.38973075657278, - "c2": -21.0226912369725, - "c3": 30.77255640128726, - "c4": 6.745178758003675, - "c5": 30.098294998797826, - "c6": -3.604842572099443, - "c7": -6.654916826526669 + "points": { + "c1": 19.276068036527533, + "c2": 1.0080130642028848, + "c3": -7.440957993902952, + "c4": -20.789535071545785, + "c5": 22.07750862331995, + "c6": 24.891344098456976, + "c7": 3.135317468806278 }, - "vertexSeeds": { - "c1": 10.876344272689247, - "c2": 11.28280496182098, - "c3": 10.238418292315766, - "c4": 11.39334543805646, - "c5": 11.018152595485226, - "c6": 10.118050128159142, - "c7": 11.564322422667296 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.58807212205272, + "c3": 13.823393435043917, + "c4": 11.058714748035145, + "c5": 8.294036061026345, + "c6": 5.5293573740175725, + "c7": 2.7646786870088005 }, "rgb": [222, 0, 59] }, @@ -397284,23 +397284,23 @@ "year": 1810, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 14.304725291803464, - "c2": -23.379983705161237, - "c3": 2.38925237133342, - "c4": 14.195267071580247, - "c5": 12.772864057577408, - "c6": -18.06936641358817, - "c7": -8.760936011206347 + "points": { + "c1": -19.41857049729321, + "c2": 12.686412793599843, + "c3": -18.868371905507445, + "c4": -17.656548224457715, + "c5": 12.440175337987014, + "c6": 20.18785073796151, + "c7": 10.82342508602347 }, - "vertexSeeds": { - "c1": 7.750770665013105, - "c2": 7.506725550945239, - "c3": 6.718633578729173, - "c4": 7.143460559478264, - "c5": 7.334315253957681, - "c6": 7.573545877047889, - "c7": 6.378199591834978 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289872, + "c3": 9.361997226074898, + "c4": 7.489597780859915, + "c5": 5.61719833564494, + "c6": 3.7447988904299576, + "c7": 1.8723994452149741 }, "rgb": [222, 0, 59] }, @@ -397311,23 +397311,23 @@ "year": 1809, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 19.466932940125815, - "c2": -25.087294456130785, - "c3": -19.28905760174613, - "c4": -8.181567992141087, - "c5": -9.675136553190054, - "c6": -13.497726179325896, - "c7": 24.87723753639081 + "points": { + "c1": -28.21236608127388, + "c2": 21.023455632600324, + "c3": 15.822569470023375, + "c4": 8.294642880643678, + "c5": 22.899889355230165, + "c6": 29.852651319360035, + "c7": -19.22713454056656 }, - "vertexSeeds": { - "c1": 8.233227024770933, - "c2": 8.17674603917453, - "c3": 8.149028076865278, - "c4": 8.209693764511623, - "c5": 8.211604005858847, - "c6": 8.234393307554658, - "c7": 8.221732176427578 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094292, + "c3": 9.824318076745218, + "c4": 7.859454461396299, + "c5": 5.894590846047224, + "c6": 3.9297272306981497, + "c7": 1.9648636153490748 }, "rgb": [222, 0, 59] }, @@ -397338,23 +397338,23 @@ "year": 1810, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -22.766380746821635, - "c2": -1.4756834978929945, - "c3": -12.761567344106432, - "c4": -22.08362119118942, - "c5": -36.20316774707699, - "c6": 34.53776204337472, - "c7": 33.6780756499733 + "points": { + "c1": 12.093614228394024, + "c2": 7.260978623587022, + "c3": -7.373764506863864, + "c4": 13.85382250550851, + "c5": -27.350316292749817, + "c6": 13.978525577339205, + "c7": 33.66397748636529 }, - "vertexSeeds": { - "c1": 7.462506303449957, - "c2": 8.990221775611179, - "c3": 8.227294031183332, - "c4": 9.00016584628277, - "c5": 8.196955331879003, - "c6": 8.218074118186124, - "c7": 7.673064680723579 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743415, + "c3": 10.772075820619506, + "c4": 8.617660656495607, + "c5": 6.4632454923717075, + "c6": 4.308830328247809, + "c7": 2.154415164123899 }, "rgb": [222, 0, 59] }, @@ -397365,23 +397365,23 @@ "year": 1810, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 18.494707067223004, - "c2": 7.125907706800021, - "c3": 5.577887993893995, - "c4": 12.134559293401189, - "c5": -11.492958839508585, - "c6": -16.03743950787893, - "c7": 16.793420106304694 + "points": { + "c1": 16.697767521170007, + "c2": -10.09365033836885, + "c3": 30.30861830280989, + "c4": -25.430256064708814, + "c5": 8.399789759740592, + "c6": 3.580450296468456, + "c7": 0.3948127382989739 }, - "vertexSeeds": { - "c1": 4.3413495411893015, - "c2": 4.312320507027499, - "c3": 4.320639849228229, - "c4": 4.33086553732459, - "c5": 4.317578256772792, - "c6": 4.3126437820358845, - "c7": 4.351889028349885 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049908, + "c3": 5.2011095700416154, + "c4": 4.160887656033272, + "c5": 3.12066574202498, + "c6": 2.080443828016636, + "c7": 1.0402219140082922 }, "rgb": [86, 146, 138] }, @@ -397392,23 +397392,23 @@ "year": 1810, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 30.682588796668398, - "c2": -23.70631547942996, - "c3": 4.1006136635501065, - "c4": -16.07909570036284, - "c5": -10.0326379295802, - "c6": -14.850798849648726, - "c7": 32.994334363797506 + "points": { + "c1": 6.382599042857265, + "c2": 14.771221794071586, + "c3": 29.191557614165717, + "c4": -17.85205820007791, + "c5": -13.492987585377733, + "c6": -32.592174962823826, + "c7": -22.76824761940055 }, - "vertexSeeds": { - "c1": 10.029170398129663, - "c2": 10.125211569267648, - "c3": 10.086825860531777, - "c4": 10.006262621330281, - "c5": 10.129029302171865, - "c6": 10.001169928948691, - "c7": 10.136733232314418 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.50762829403597, + "c3": 12.08969024503008, + "c4": 9.67175219602398, + "c5": 7.253814147018091, + "c6": 4.83587609801199, + "c7": 2.4179380490061018 }, "rgb": [222, 0, 59] }, @@ -397419,23 +397419,23 @@ "year": 1810, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -23.368615965147498, - "c2": 8.268105077042406, - "c3": 12.212159764594041, - "c4": 20.83755903415952, - "c5": 6.563596254162711, - "c6": -28.79628253410881, - "c7": 23.513642423476277 + "points": { + "c1": 5.615057869597713, + "c2": 13.74659125376315, + "c3": -13.762823134342572, + "c4": -7.284328933645696, + "c5": 5.319683871279594, + "c6": 29.85285255418539, + "c7": -35.0291180855798 }, - "vertexSeeds": { - "c1": 7.684480327924328, - "c2": 7.705110355027449, - "c3": 7.267431092460865, - "c4": 7.529684776293498, - "c5": 7.707572213833779, - "c6": 7.3020870373081, - "c7": 7.289928049559549 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088771, + "c3": 9.246417013407294, + "c4": 7.39713361072584, + "c5": 5.547850208044386, + "c6": 3.6985668053629315, + "c7": 1.8492834026814542 }, "rgb": [86, 146, 138] }, @@ -397446,23 +397446,23 @@ "year": 1810, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 12.152745683932999, - "c2": -15.156901331107475, - "c3": -22.73489803898594, - "c4": -17.705868197259093, - "c5": -4.700156670796151, - "c6": -25.446424441503083, - "c7": -30.07270083364259 + "points": { + "c1": 16.819354266660582, + "c2": 15.500838284306603, + "c3": -12.444571527606382, + "c4": -10.043453020938024, + "c5": -32.22980834754023, + "c6": 27.459871971542455, + "c7": -28.875558290935786 }, - "vertexSeeds": { - "c1": 1.209067837205673, - "c2": 1.2734510145137903, - "c3": 1.190575092030099, - "c4": 1.3469739375652887, - "c5": 1.1972993067547937, - "c6": 1.2348311461558827, - "c7": 1.2274402292351247 + "offsets": { + "c1": 2.2977346278317152, + "c2": 1.969486823855755, + "c3": 1.641239019879795, + "c4": 1.3129912159038384, + "c5": 0.9847434119278784, + "c6": 0.6564956079519183, + "c7": 0.32824780397596004 }, "rgb": [86, 146, 138] }, @@ -397473,23 +397473,23 @@ "year": 1809, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -20.133547907027797, - "c2": 8.804062069825317, - "c3": 8.895201638959168, - "c4": -7.54824488127861, - "c5": -1.2510306593683893, - "c6": -18.891930504698674, - "c7": 2.7373202559040095 + "points": { + "c1": 15.215279699015223, + "c2": -2.329800035761828, + "c3": -23.615567591910224, + "c4": -15.900405805350315, + "c5": 8.937413083283499, + "c6": 14.004361841628818, + "c7": 2.0425977203064853 }, - "vertexSeeds": { - "c1": 1.4737882578918347, - "c2": 1.4025401464086924, - "c3": 1.4116920507122679, - "c4": 1.4269615730558092, - "c5": 1.5577251852800498, - "c6": 1.417305637732738, - "c7": 1.5656047690192187 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820163, + "c4": 1.5349052242256116, + "c5": 1.1511789181692105, + "c6": 0.7674526121128058, + "c7": 0.38372630605640473 }, "rgb": [86, 146, 138] }, @@ -397500,23 +397500,23 @@ "year": 1810, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -4.387109522835683, - "c2": 17.167474282261196, - "c3": -3.8902613046637704, - "c4": -28.605788890526398, - "c5": 3.5575059878105932, - "c6": -11.261032250211738, - "c7": -2.3150297938192566 + "points": { + "c1": -12.765783445921834, + "c2": 10.413328203608998, + "c3": 4.953575680135486, + "c4": 26.644525414517723, + "c5": 3.190013547604643, + "c6": 30.230037887379574, + "c7": 1.6974979244226915 }, - "vertexSeeds": { - "c1": 4.71077595250269, - "c2": 4.7612032728966325, - "c3": 4.807021830496652, - "c4": 4.589967670543598, - "c5": 4.691476106545291, - "c6": 4.582767491758682, - "c7": 4.719194985938337 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135926, + "c3": 5.825242718446596, + "c4": 4.6601941747572795, + "c5": 3.495145631067963, + "c6": 2.3300970873786326, + "c7": 1.1650485436893163 }, "rgb": [222, 0, 59] }, @@ -397527,23 +397527,23 @@ "year": 1810, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 1.6783253658722934, - "c2": 12.070882784127676, - "c3": 28.03325784208991, - "c4": 12.245124595398032, - "c5": -1.3295162466534336, - "c6": -27.19907006415219, - "c7": -0.048900379042990494 + "points": { + "c1": 11.520722217225554, + "c2": -7.52821368533138, + "c3": -19.398958500030098, + "c4": 1.5978863763563993, + "c5": -30.381357247475485, + "c6": -9.042179339782741, + "c7": -25.965798495181755 }, - "vertexSeeds": { - "c1": 4.180250553117833, - "c2": 4.061799612132497, - "c3": 4.007095869971611, - "c4": 4.0955654402296044, - "c5": 4.386688307142559, - "c6": 4.522879707548577, - "c7": 4.021208741473661 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773923, + "c3": 5.617198335644935, + "c4": 4.4937586685159525, + "c5": 3.3703190013869646, + "c6": 2.2468793342579763, + "c7": 1.1234396671289881 }, "rgb": [86, 146, 138] }, @@ -397554,23 +397554,23 @@ "year": 1810, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -22.462011824042456, - "c2": 29.35924405147845, - "c3": -15.864209963286797, - "c4": 10.949755809832695, - "c5": 29.726129745702465, - "c6": 10.633488581124496, - "c7": 8.19088572708781 + "points": { + "c1": 30.628789560886617, + "c2": 20.878060179481587, + "c3": 15.041225869128404, + "c4": -3.4509876274660307, + "c5": 4.079326523034851, + "c6": -25.31679933523072, + "c7": -30.90767616133201 }, - "vertexSeeds": { - "c1": 6.479781378159314, - "c2": 6.70168158192045, - "c3": 6.45999787124211, - "c4": 6.4884757192370515, - "c5": 6.719567059157571, - "c6": 6.545799929417033, - "c7": 6.659750403699799 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117902, + "c3": 8.113730929264895, + "c4": 6.490984743411922, + "c5": 4.868238557558951, + "c6": 3.2454923717059434, + "c7": 1.6227461858529717 }, "rgb": [238, 201, 159] }, @@ -397581,23 +397581,23 @@ "year": 1809, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -7.397968404099238, - "c2": -21.690000330248807, - "c3": -8.084778468703753, - "c4": -6.894437234042428, - "c5": -17.312516727415762, - "c6": 23.143574681145935, - "c7": 5.737514175913642 + "points": { + "c1": -9.838698743640595, + "c2": 19.43597497286902, + "c3": -6.995054118975499, + "c4": 8.80316937688881, + "c5": -4.022691657241342, + "c6": -12.013878707605121, + "c7": 12.341267626174776 }, - "vertexSeeds": { - "c1": 8.96884190058182, - "c2": 9.067133469728965, - "c3": 9.024880561498177, - "c4": 9.078205109852968, - "c5": 9.032350324480465, - "c6": 9.015448100162851, - "c7": 9.053992990306236 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904288, + "c3": 10.864539990753562, + "c4": 8.691631992602908, + "c5": 6.518723994452181, + "c6": 4.345815996301454, + "c7": 2.172907998150727 }, "rgb": [238, 201, 159] }, @@ -397608,23 +397608,23 @@ "year": 1810, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -13.96072939748775, - "c2": -19.939262210605776, - "c3": -16.80652246110682, - "c4": 6.791998866475538, - "c5": -17.8061737717722, - "c6": -15.980108401620026, - "c7": -17.326480473218023 + "points": { + "c1": 6.495259240503529, + "c2": 16.760307447431003, + "c3": -33.35352132486208, + "c4": 13.209765842879612, + "c5": -28.007145491813432, + "c6": -19.207441993995893, + "c7": -6.752833489648648 }, - "vertexSeeds": { - "c1": 3.772329499447959, - "c2": 3.8909129475948134, - "c3": 3.9499847703384057, - "c4": 3.6565507635077963, - "c5": 3.948071730152185, - "c6": 3.646724190941764, - "c7": 3.928434249693537 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.7142857142857135, + "c3": 4.761904761904759, + "c4": 3.8095238095238058, + "c5": 2.857142857142861, + "c6": 1.9047619047619078, + "c7": 0.9523809523809539 }, "rgb": [238, 201, 159] }, @@ -397635,23 +397635,23 @@ "year": 1810, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 3.673633845683966, - "c2": -0.9726805097316031, - "c3": -25.042130531350168, - "c4": -16.867159845393275, - "c5": -14.643010829007423, - "c6": 25.69339901039428, - "c7": -7.7339198381465835 + "points": { + "c1": -2.065551115949823, + "c2": 10.454252212527464, + "c3": -22.76578101640993, + "c4": -5.601674487089511, + "c5": 37.227734784359036, + "c6": -4.754431387463519, + "c7": -21.68978449096651 }, - "vertexSeeds": { - "c1": 2.4870466321243523, - "c2": 2.4870466321243523, - "c3": 2.4870466321243523, - "c4": 2.4870466321243523, - "c5": 2.4870466321243523, - "c6": 2.4870466321243523, - "c7": 2.4870466321243523 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -397662,23 +397662,23 @@ "year": 1809, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 15.585449444086645, - "c2": -7.688553121406109, - "c3": -17.134240107853515, - "c4": -17.433013129931453, - "c5": -22.000792660917412, - "c6": -23.606778961573127, - "c7": 0.8617244111374838 + "points": { + "c1": 3.2675820907771715, + "c2": -15.061788991614357, + "c3": -10.90315756441094, + "c4": -14.871804463492483, + "c5": -12.152582357495188, + "c6": -11.589599202456132, + "c7": 21.239662162449125 }, - "vertexSeeds": { - "c1": 3.2215523529541485, - "c2": 3.159170236707402, - "c3": 3.0755951446223406, - "c4": 3.141831134345003, - "c5": 3.267914280957863, - "c6": 3.2232920155389797, - "c7": 3.063708834410612 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.7711511789181715, + "c3": 3.9759593157651363, + "c4": 3.1807674526121112, + "c5": 2.3855755894590858, + "c6": 1.5903837263060507, + "c7": 0.7951918631530254 }, "rgb": [238, 201, 159] }, @@ -397689,23 +397689,23 @@ "year": 1809, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": 6.284866656628253, - "c2": 6.225015804346544, - "c3": 21.169268761424416, - "c4": 1.8149731142564, - "c5": -12.557132454787443, - "c6": 17.363433386731952, - "c7": 6.4717580864738515 + "points": { + "c1": -10.390606475145233, + "c2": 21.082287742620007, + "c3": -6.2540451326125535, + "c4": 10.699406648769166, + "c5": 5.425132964202554, + "c6": -11.406092315741347, + "c7": 8.466567362317253 }, - "vertexSeeds": { - "c1": 2.1274039805253184, - "c2": 2.205188408462027, - "c3": 2.2062016093811216, - "c4": 2.298238504621715, - "c5": 2.2315951945649974, - "c6": 2.2916983886988254, - "c7": 2.275311718577254 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.719833564493758, + "c6": 1.1465557096625065, + "c7": 0.5732778548312514 }, "rgb": [77, 76, 132] }, @@ -397716,23 +397716,23 @@ "year": 1809, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -16.488841342715723, - "c2": -19.284919398669295, - "c3": 16.55255196075271, - "c4": 17.41143627733718, - "c5": 0.7070428865223839, - "c6": 0.4045687358982697, - "c7": 15.700207209758034 + "points": { + "c1": 13.118469117577753, + "c2": -9.19048500467149, + "c3": 19.422569534403465, + "c4": 17.996572607752668, + "c5": 12.536609574185348, + "c6": 10.45411810005811, + "c7": 9.192311630152751 }, - "vertexSeeds": { - "c1": 4.127538977348625, - "c2": 4.014985430865801, - "c3": 3.9634582980070214, - "c4": 4.124921026075818, - "c5": 3.9669984376993233, - "c6": 3.9805028253011336, - "c7": 3.9741170456425357 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [238, 201, 159] }, @@ -397743,23 +397743,23 @@ "year": 1810, "resistanceReported": false, "duration": 33868800, - "curveSeeds": { - "c1": 42.43914733134551, - "c2": 2.2756041672513305, - "c3": -18.01242668051344, - "c4": 8.750452359727312, - "c5": -20.15326758646214, - "c6": -2.5995746699023385, - "c7": -25.63573545095548 + "points": { + "c1": -31.04272077950005, + "c2": -23.17922864425983, + "c3": 41.844525819182365, + "c4": 24.773763317744837, + "c5": 35.30131554390928, + "c6": -42.08161767791524, + "c7": 35.26383317140217 }, - "vertexSeeds": { - "c1": 7.843510466015085, - "c2": 8.4189543067618, - "c3": 7.8640636346982395, - "c4": 7.968455489413404, - "c5": 7.947877169254879, - "c6": 7.967991141236955, - "c7": 7.634215664047799 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.51040221914008, + "c3": 10.425335182616731, + "c4": 8.340268146093395, + "c5": 6.255201109570048, + "c6": 4.170134073046698, + "c7": 2.085067036523349 }, "rgb": [222, 0, 59] }, @@ -397770,23 +397770,23 @@ "year": 1810, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 3.2890095198215583, - "c2": 8.14970126177996, - "c3": -14.017179584751924, - "c4": 9.001603444798548, - "c5": 21.121337214535863, - "c6": -13.543392178179426, - "c7": -18.754732964513263 + "points": { + "c1": 22.478613832381278, + "c2": 0.30714696514997186, + "c3": 4.322198156227902, + "c4": -7.024925200807182, + "c5": 18.64072968047654, + "c6": -7.487552087203408, + "c7": -10.947748360896714 }, - "vertexSeeds": { - "c1": 2.3147489979052738, - "c2": 2.6077661239369343, - "c3": 2.1843258634495855, - "c4": 2.259182177468573, - "c5": 2.320977966586702, - "c6": 2.239891946357032, - "c7": 2.3601330178853615 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.772538141470178, + "c3": 3.143781784558484, + "c4": 2.515025427646785, + "c5": 1.886269070735089, + "c6": 1.2575127138233926, + "c7": 0.6287563569116963 }, "rgb": [86, 146, 138] }, @@ -397797,23 +397797,23 @@ "year": 1810, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 19.546284698774805, - "c2": -3.7618794989651363, - "c3": -21.998012387376463, - "c4": 39.26797387016527, - "c5": -3.162421835191239, - "c6": 19.709292084642605, - "c7": 6.943659849528004 + "points": { + "c1": 3.7325229213383224, + "c2": -7.850823405455692, + "c3": -16.323505401858952, + "c4": -32.36583768708489, + "c5": -11.42219602978843, + "c6": -11.222044012737271, + "c7": -28.193856869375153 }, - "vertexSeeds": { - "c1": 3.0788248971427534, - "c2": 2.9085836439725496, - "c3": 2.9418493045253196, - "c4": 2.8975450019198, - "c5": 2.7659404419371065, - "c6": 3.0258580828045964, - "c7": 3.0953620720342903 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556172, + "c3": 3.7679149329634765, + "c4": 3.014331946370781, + "c5": 2.260748959778086, + "c6": 1.5071659731853906, + "c7": 0.7535829865926953 }, "rgb": [86, 146, 138] }, @@ -397824,23 +397824,23 @@ "year": 1810, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 32.11895463513322, - "c2": 23.506101296765515, - "c3": -20.101580725239703, - "c4": -24.343836035628573, - "c5": 36.9079188557555, - "c6": 1.3282420212438595, - "c7": -26.876404807736034 + "points": { + "c1": 18.180892376277704, + "c2": 27.951310940416718, + "c3": -21.202685309088167, + "c4": -1.0581240236427405, + "c5": 3.9200250207572864, + "c6": 14.286849409565555, + "c7": 20.84542861000751 }, - "vertexSeeds": { - "c1": 3.8088123580401057, - "c2": 3.5377374214405544, - "c3": 3.3108380445754686, - "c4": 3.466532802566285, - "c5": 3.343282002120433, - "c6": 3.6266090739988273, - "c7": 3.5558511400693082 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245492, + "c3": 4.738788719371242, + "c4": 3.7910309754969975, + "c5": 2.8432732316227485, + "c6": 1.8955154877484988, + "c7": 0.9477577438742494 }, "rgb": [222, 0, 59] }, @@ -397851,23 +397851,23 @@ "year": 1810, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 2.2475686352561084, - "c2": 2.2612616033314374, - "c3": 5.44143377359925, - "c4": 8.564089101158196, - "c5": -15.45397427450889, - "c6": -10.372835758624877, - "c7": 20.2194214298289 + "points": { + "c1": -13.801488791725864, + "c2": -20.08122186683412, + "c3": 2.974037995126828, + "c4": -19.42769793903376, + "c5": -11.639099127021824, + "c6": -23.669178010130924, + "c7": 6.7414369361960595 }, - "vertexSeeds": { - "c1": 9.167280944870225, - "c2": 8.634809865142195, - "c3": 9.1090527247102, - "c4": 9.06768051745659, - "c5": 9.273549292994558, - "c6": 8.725396106946999, - "c7": 8.621918302159875 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.675450762829405, + "c3": 11.396208969024508, + "c4": 9.116967175219592, + "c5": 6.837725381414693, + "c6": 4.558483587609796, + "c7": 2.279241793804898 }, "rgb": [77, 76, 132] }, @@ -397878,23 +397878,23 @@ "year": 1810, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -10.853060902071203, - "c2": -4.593790956773411, - "c3": -13.028511193538105, - "c4": -16.29264187216134, - "c5": -10.419341684867668, - "c6": -1.5410497700041574, - "c7": 11.325095686290606 + "points": { + "c1": 8.13026664516872, + "c2": -5.534809209788374, + "c3": 30.271390938848054, + "c4": 17.536052535149953, + "c5": 2.918560254001168, + "c6": -30.092810371761704, + "c7": 5.1458827125971744 }, - "vertexSeeds": { - "c1": 3.2653905398675747, - "c2": 3.156155206973671, - "c3": 3.1893954402972313, - "c4": 3.5696405416214145, - "c5": 3.188157285702323, - "c6": 3.478953536648598, - "c7": 3.1770506723643113 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883496, + "c3": 4.530744336569581, + "c4": 3.624595469255662, + "c5": 2.718446601941748, + "c6": 1.812297734627834, + "c7": 0.9061488673139195 }, "rgb": [238, 201, 159] }, @@ -397905,23 +397905,23 @@ "year": 1810, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 20.60870322952953, - "c2": -22.94449406756951, - "c3": -25.630237510050915, - "c4": 19.3025901022043, - "c5": -3.1550517795872963, - "c6": -2.9005891108976343, - "c7": 18.468967661621086 + "points": { + "c1": -33.21781016201321, + "c2": -29.517527699170675, + "c3": 28.278860037670214, + "c4": 29.244702495433515, + "c5": 15.568283149176402, + "c6": 6.017126654417751, + "c7": 30.29071254967934 }, - "vertexSeeds": { - "c1": 6.874334717514436, - "c2": 7.173849815422523, - "c3": 7.155282821865189, - "c4": 6.915508875335354, - "c5": 6.9673534075095045, - "c6": 6.628494202015659, - "c7": 7.237461657180973 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163664, + "c3": 8.71474803513639, + "c4": 6.971798428109096, + "c5": 5.228848821081823, + "c6": 3.485899214054548, + "c7": 1.742949607027274 }, "rgb": [58, 15, 49] }, @@ -397932,23 +397932,23 @@ "year": 1810, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 19.574651586647043, - "c2": 31.995843713027007, - "c3": -2.7869899321031824, - "c4": 24.881889597860074, - "c5": -1.2971634269263461, - "c6": 16.907159176889337, - "c7": 37.73777346543772 + "points": { + "c1": 17.20305266953809, + "c2": 40.27964291784752, + "c3": -29.34348068551579, + "c4": -8.378350034695792, + "c5": 18.236108872068378, + "c6": -36.34087480971759, + "c7": 33.95178996764955 }, - "vertexSeeds": { - "c1": 10.218553716526326, - "c2": 8.917189333571194, - "c3": 9.552632435243877, - "c4": 9.829851186516995, - "c5": 9.898005456896197, - "c6": 9.594442171455276, - "c7": 9.253220790507186 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.979195561719845, + "c3": 12.482662968099858, + "c4": 9.986130374479895, + "c5": 7.489597780859922, + "c6": 4.993065187239948, + "c7": 2.496532593619974 }, "rgb": [77, 76, 132] }, @@ -397959,23 +397959,23 @@ "year": 1810, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 7.922068939610131, - "c2": -9.571432464476857, - "c3": -17.633977776884826, - "c4": -11.454439601109755, - "c5": 10.854696856108948, - "c6": 14.771231622550658, - "c7": -0.5883501295861713 + "points": { + "c1": 17.633648913850976, + "c2": -16.71012259957012, + "c3": -20.732987650839235, + "c4": -9.127781510963876, + "c5": -12.228086456400977, + "c6": -14.177209332886447, + "c7": 19.179778114416067 }, - "vertexSeeds": { - "c1": 3.468200011625511, - "c2": 3.2612656346238182, - "c3": 3.351004301532662, - "c4": 3.3515082851832347, - "c5": 3.3572739759487744, - "c6": 3.2847766516172996, - "c7": 3.363729197755351 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.9930651872399405, + "c3": 4.160887656033289, + "c4": 3.328710124826627, + "c5": 2.496532593619975, + "c6": 1.6643550624133134, + "c7": 0.8321775312066522 }, "rgb": [77, 76, 132] }, @@ -397986,23 +397986,23 @@ "year": 1810, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 22.830783912556335, - "c2": 3.500715517741888, - "c3": 6.372351737786325, - "c4": -9.58363430922789, - "c5": 6.505878131731649, - "c6": 21.958899822635978, - "c7": -17.678253112603482 + "points": { + "c1": 37.198484486670615, + "c2": 26.170546023268734, + "c3": 14.131975046984806, + "c4": -30.07754421122555, + "c5": 14.100306478235723, + "c6": 37.86151978694594, + "c7": -20.074237309342035 }, - "vertexSeeds": { - "c1": 6.07092176325194, - "c2": 5.436042558478872, - "c3": 6.31628583371221, - "c4": 5.842270678893552, - "c5": 5.290169795744167, - "c6": 6.001695464903118, - "c7": 5.789750189845629 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273235, + "c3": 7.628294036061025, + "c4": 6.102635228848824, + "c5": 4.576976421636613, + "c6": 3.051317614424412, + "c7": 1.5256588072122008 }, "rgb": [222, 0, 59] }, @@ -398013,23 +398013,23 @@ "year": 1810, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 12.466673993697807, - "c2": -19.065201750029825, - "c3": -19.587026897676303, - "c4": 0.026110051370238807, - "c5": -4.918685911877496, - "c6": -10.674718633901833, - "c7": 8.370131115504972 + "points": { + "c1": 16.90562268580062, + "c2": -22.94188094677619, + "c3": -10.201246813722324, + "c4": -9.534819594675618, + "c5": 29.425319484509824, + "c6": -15.27014252982797, + "c7": -18.766214732438172 }, - "vertexSeeds": { - "c1": 7.556678782835784, - "c2": 7.21708408280468, - "c3": 8.114381071215625, - "c4": 8.848029126151246, - "c5": 8.147616159396092, - "c6": 8.566621973011083, - "c7": 8.872729441955125 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421636, + "c3": 10.587147480351366, + "c4": 8.469717984281086, + "c5": 6.352288488210815, + "c6": 4.234858992140543, + "c7": 2.1174294960702715 }, "rgb": [238, 201, 159] }, @@ -398040,23 +398040,23 @@ "year": 1810, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -13.634658479174604, - "c2": 27.483383907384756, - "c3": 5.578806356225591, - "c4": -5.014314667300269, - "c5": -25.58889327721205, - "c6": -16.42735072821989, - "c7": 28.488570653375454 + "points": { + "c1": -3.677053485063869, + "c2": -15.361282621718026, + "c3": -24.518232871321917, + "c4": -10.415228382021837, + "c5": 11.247738888461143, + "c6": 8.414294241954224, + "c7": 13.806197258237745 }, - "vertexSeeds": { - "c1": 6.066110198675786, - "c2": 6.107227335314309, - "c3": 6.133452006381899, - "c4": 6.146251553843815, - "c5": 6.075653074044222, - "c6": 6.120581130151625, - "c7": 6.11940081547368 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830831, + "c3": 7.374017568192311, + "c4": 5.899214054553888, + "c5": 4.424410540915368, + "c6": 2.949607027276944, + "c7": 1.474803513638423 }, "rgb": [58, 15, 49] }, @@ -398067,23 +398067,23 @@ "year": 1810, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -27.688413458208647, - "c2": -30.875897085435724, - "c3": 31.755050725378652, - "c4": -19.16734145663867, - "c5": 2.761746046151586, - "c6": 20.413053657898487, - "c7": 2.6426255997083956 + "points": { + "c1": -19.876693850811446, + "c2": -25.0428916465613, + "c3": 32.444371033165055, + "c4": 1.761783698365221, + "c5": -1.6015685247325848, + "c6": -26.527042961023408, + "c7": -12.28748334428655 }, - "vertexSeeds": { - "c1": 9.417215934776502, - "c2": 9.387378063732692, - "c3": 9.407835750145296, - "c4": 9.409818320386295, - "c5": 9.428541562382122, - "c6": 9.428340433351199, - "c7": 9.430598253267828 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256587986, + "c3": 11.25751271382352, + "c4": 9.006010171058756, + "c5": 6.754507628293993, + "c6": 4.503005085529229, + "c7": 2.2515025427647637 }, "rgb": [222, 0, 59] }, @@ -398094,23 +398094,23 @@ "year": 1810, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 36.73927277454611, - "c2": 3.860183118220988, - "c3": 29.121433559041975, - "c4": 31.49664566977212, - "c5": 6.91518289101743, - "c6": -23.391589461759697, - "c7": -21.58144509054342 + "points": { + "c1": 13.373737370337558, + "c2": -37.844812795843, + "c3": -26.96560966329654, + "c4": 18.99797514545854, + "c5": -6.420098697578062, + "c6": -0.24578164199492392, + "c7": -36.325267619585816 }, - "vertexSeeds": { - "c1": 10.721768898633275, - "c2": 11.176586986274476, - "c3": 11.467538518961138, - "c4": 11.333469369923751, - "c5": 12.039000282818499, - "c6": 10.8895191985533, - "c7": 11.246117162289035 + "offsets": { + "c1": 20.388349514563107, + "c2": 17.4757281553398, + "c3": 14.563106796116497, + "c4": 11.650485436893192, + "c5": 8.737864077669887, + "c6": 5.825242718446611, + "c7": 2.9126213592233055 }, "rgb": [86, 146, 138] }, @@ -398121,23 +398121,23 @@ "year": 1810, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 21.23775238411799, - "c2": -8.891942826775356, - "c3": 33.574080263975645, - "c4": -35.32894065927533, - "c5": -24.924415965750562, - "c6": 1.7445207648416314, - "c7": -16.863538695532384 + "points": { + "c1": -10.760955211922262, + "c2": -26.75082719794291, + "c3": -32.53830856760715, + "c4": -14.788916255943235, + "c5": -9.753541617735703, + "c6": 17.44651075913962, + "c7": -1.5585067327793993 }, - "vertexSeeds": { - "c1": 1.3172075635590832, - "c2": 1.4360723448270245, - "c3": 1.38999162130589, - "c4": 1.421306308151038, - "c5": 1.429226328372762, - "c6": 1.4853974017350435, - "c7": 1.4283802891041237 + "offsets": { + "c1": 2.524271844660194, + "c2": 2.1636615811373083, + "c3": 1.8030513176144256, + "c4": 1.4424410540915398, + "c5": 1.0818307905686542, + "c6": 0.7212205270457681, + "c7": 0.3606102635228859 }, "rgb": [58, 15, 49] }, @@ -398148,23 +398148,23 @@ "year": 1810, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -14.152222542747168, - "c2": 2.1485978122589735, - "c3": -22.124839167960573, - "c4": -10.355872811790334, - "c5": 20.753146551676824, - "c6": 7.130673948630722, - "c7": 4.41731217405999 + "points": { + "c1": 7.204773745114796, + "c2": 6.508380961602352, + "c3": -4.954186242810525, + "c4": 12.021124260052947, + "c5": 10.222665417246613, + "c6": -10.045441108215028, + "c7": -12.51098937632536 }, - "vertexSeeds": { - "c1": 3.535631426524664, - "c2": 3.8522553295581914, - "c3": 3.8949938788048932, - "c4": 3.5674922312817454, - "c5": 3.728761655440089, - "c6": 3.748240918981999, - "c7": 3.640138527969764 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124826, + "c3": 4.6694405917706865, + "c4": 3.735552473416555, + "c5": 2.8016643550624165, + "c6": 1.8677762367082775, + "c7": 0.9338881183541388 }, "rgb": [77, 76, 132] }, @@ -398175,23 +398175,23 @@ "year": 1810, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": -16.203818045319615, - "c2": -0.2921176783231161, - "c3": -39.804932587557744, - "c4": -39.363771369553845, - "c5": -31.749260985267703, - "c6": -12.049070377712084, - "c7": -1.3758535748795353 + "points": { + "c1": 19.889591153476367, + "c2": 17.559034739938667, + "c3": -20.923466395446283, + "c4": 45.723396899130925, + "c5": 5.298164639100527, + "c6": -0.5540004805880656, + "c7": -5.2623353850275905 }, - "vertexSeeds": { - "c1": 10.548532095148166, - "c2": 10.954108257017737, - "c3": 10.707619089719701, - "c4": 10.562404411702499, - "c5": 10.578474308155377, - "c6": 10.343998963665221, - "c7": 10.179407452900099 + "offsets": { + "c1": 18.41423948220065, + "c2": 15.783633841886289, + "c3": 13.153028201571887, + "c4": 10.522422561257526, + "c5": 7.891816920943125, + "c6": 5.261211280628763, + "c7": 2.6306056403144007 }, "rgb": [58, 15, 49] }, @@ -398202,23 +398202,23 @@ "year": 1810, "resistanceReported": true, "duration": 21427200, - "curveSeeds": { - "c1": -31.71852961167329, - "c2": -9.509251926076448, - "c3": 26.21888822385668, - "c4": 12.740614362935538, - "c5": -27.73010098887197, - "c6": -28.208403723579732, - "c7": 22.94816938891953 + "points": { + "c1": 33.57267271776798, + "c2": -7.346662494167145, + "c3": -13.315268587468253, + "c4": -15.20317996013215, + "c5": -19.148044542291537, + "c6": -6.765110194944139, + "c7": 14.93704217471155 }, - "vertexSeeds": { - "c1": 2.3074473241032725, - "c2": 2.3886894961644862, - "c3": 2.335901387005245, - "c4": 2.37535617654401, - "c5": 2.275367666187092, - "c6": 2.51293336256759, - "c7": 2.3458660808777334 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.63384188626907, + "c3": 3.028201571890895, + "c4": 2.422561257512715, + "c5": 1.816920943134535, + "c6": 1.2112806287563598, + "c7": 0.6056403143781799 }, "rgb": [77, 76, 132] }, @@ -398229,23 +398229,23 @@ "year": 1810, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 14.868559503362185, - "c2": 25.546086107681944, - "c3": 4.696253380692113, - "c4": 1.3422014936613742, - "c5": 4.368375587387334, - "c6": -10.185811801950779, - "c7": 14.55647295732431 + "points": { + "c1": 6.746979598127602, + "c2": 8.459564938011063, + "c3": 7.120227647109189, + "c4": -15.896573496947125, + "c5": -14.605605052373633, + "c6": -22.577240796200613, + "c7": 6.769348564976802 }, - "vertexSeeds": { - "c1": 1.2758392093025765, - "c2": 1.189184954716242, - "c3": 1.1350601316242286, - "c4": 1.173275662603476, - "c5": 1.194671630526954, - "c6": 1.138628378890355, - "c7": 1.2308267084860094 + "offsets": { + "c1": 2.1682847896440127, + "c2": 1.8585298196948694, + "c3": 1.548774849745722, + "c4": 1.2390198797965788, + "c5": 0.9292649098474337, + "c6": 0.6195099398982885, + "c7": 0.3097549699491452 }, "rgb": [238, 201, 159] }, @@ -398256,23 +398256,23 @@ "year": 1810, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 10.902963427743721, - "c2": -14.364574085405113, - "c3": -5.969560335078818, - "c4": 1.751368403588046, - "c5": 38.11513482315193, - "c6": 31.621390506478626, - "c7": -39.23825908975616 + "points": { + "c1": 36.38557036584164, + "c2": 43.42919544959789, + "c3": 19.99137023132561, + "c4": 19.316007498343957, + "c5": -25.110454455424136, + "c6": 19.96227657424135, + "c7": 21.51927004506988 }, - "vertexSeeds": { - "c1": 7.612698922637075, - "c2": 6.5016398397629205, - "c3": 7.539221117324107, - "c4": 6.648772674090462, - "c5": 6.970756020625752, - "c6": 7.859687157696271, - "c7": 7.204224578538209 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370323, + "c3": 9.40822931114193, + "c4": 7.526583448913548, + "c5": 5.644937586685156, + "c6": 3.763291724456774, + "c7": 1.8816458622283818 }, "rgb": [238, 201, 159] }, @@ -398283,23 +398283,23 @@ "year": 1810, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 0.05316273951496342, - "c2": 8.345940141195737, - "c3": -20.404449833583392, - "c4": -3.5576628622907798, - "c5": -10.953790198591633, - "c6": -12.18751465478081, - "c7": -2.7177657455882525 + "points": { + "c1": 2.0464923105128108, + "c2": 11.09881710972946, + "c3": 27.854039632112368, + "c4": 13.124511730727967, + "c5": 16.766234207431232, + "c6": 30.251648453687913, + "c7": 12.275937642053137 }, - "vertexSeeds": { - "c1": 1.587994067772966, - "c2": 1.359697740728882, - "c3": 1.335601776527102, - "c4": 1.6065715275963801, - "c5": 1.3247007974507443, - "c6": 1.3241062974639983, - "c7": 1.3706251164668937 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.3300970873786397, + "c3": 1.9417475728155345, + "c4": 1.5533980582524265, + "c5": 1.1650485436893185, + "c6": 0.7766990291262132, + "c7": 0.38834951456310535 }, "rgb": [58, 15, 49] }, @@ -398310,23 +398310,23 @@ "year": 1810, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 9.356864204852336, - "c2": 14.92159709511919, - "c3": -8.863444756792664, - "c4": 10.358420061068173, - "c5": 0.7032791129074489, - "c6": 10.250920939692005, - "c7": 12.426727022238346 + "points": { + "c1": -1.892374560920974, + "c2": -4.663304487554253, + "c3": 16.04035121176318, + "c4": -17.941941705129324, + "c5": -8.101278184509692, + "c6": 0.8506019228566046, + "c7": 20.8548956645971 }, - "vertexSeeds": { - "c1": 10.492431179024665, - "c2": 9.92618638617796, - "c3": 9.990041119446614, - "c4": 9.775914177290652, - "c5": 10.030137288952549, - "c6": 10.122927243760257, - "c7": 10.210447365334232 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.45076282940359, + "c3": 12.875635691169675, + "c4": 10.300508552935726, + "c5": 7.725381414701813, + "c6": 5.150254276467863, + "c7": 2.5751271382339493 }, "rgb": [77, 76, 132] }, @@ -398337,23 +398337,23 @@ "year": 1810, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -18.754021850145698, - "c2": 13.478953643591534, - "c3": -17.675173721045915, - "c4": 0.6571012816721264, - "c5": 5.969268823787505, - "c6": 15.559779672640463, - "c7": 16.538264296838637 + "points": { + "c1": 15.582538255268542, + "c2": 27.569256175024396, + "c3": 13.953459499059282, + "c4": -15.813346440766658, + "c5": 10.1786134302473, + "c6": 11.622259584730603, + "c7": -12.923035670159074 }, - "vertexSeeds": { - "c1": 4.342389205344901, - "c2": 4.405775792624888, - "c3": 4.379195321285836, - "c4": 4.332982082316189, - "c5": 4.336746272156473, - "c6": 4.359069656106938, - "c7": 4.397643444307863 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170591, + "c3": 5.270457697642153, + "c4": 4.216366158113716, + "c5": 3.162274618585313, + "c6": 2.1081830790568756, + "c7": 1.0540915395284378 }, "rgb": [77, 76, 132] }, @@ -398364,23 +398364,23 @@ "year": 1810, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -25.638840396412338, - "c2": -10.93084140013272, - "c3": 6.533311313750147, - "c4": -24.12890714465121, - "c5": -15.206935389190082, - "c6": -0.8018280116048615, - "c7": 17.284929350435448 + "points": { + "c1": -24.54436696281627, + "c2": -24.61176132063654, + "c3": 4.7665932277113185, + "c4": 12.216148633477125, + "c5": 15.05575969858657, + "c6": 14.109268216918018, + "c7": 19.680364743431575 }, - "vertexSeeds": { - "c1": 6.803745265325684, - "c2": 6.787051149486759, - "c3": 6.778197691714278, - "c4": 6.888679880832036, - "c5": 6.510933865270592, - "c6": 6.8839599729200085, - "c7": 6.513138236004779 + "offsets": { + "c1": 11.521035598705502, + "c2": 9.875173370319008, + "c3": 8.229311141932493, + "c4": 6.583448913545999, + "c5": 4.937586685159504, + "c6": 3.2917244567730095, + "c7": 1.6458622283864945 }, "rgb": [58, 15, 49] }, @@ -398391,23 +398391,23 @@ "year": 1810, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -32.56005067198085, - "c2": 31.9291029518901, - "c3": -30.124356441959307, - "c4": -32.03014743640677, - "c5": 17.41963326289116, - "c6": -25.688235500131924, - "c7": 22.81652551584652 + "points": { + "c1": -5.072798231091134, + "c2": -29.980551129576142, + "c3": 30.850393469342805, + "c4": 18.332560926198006, + "c5": -5.075900317873327, + "c6": 30.78364077613378, + "c7": 30.611593231833496 }, - "vertexSeeds": { - "c1": 8.723310948427912, - "c2": 8.186014218388385, - "c3": 8.350980429500373, - "c4": 8.297120194347555, - "c5": 8.902637185915403, - "c6": 8.828597156072833, - "c7": 8.382368975980617 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542307, + "c3": 10.65649560795191, + "c4": 8.525196486361533, + "c5": 6.393897364771154, + "c6": 4.262598243180758, + "c7": 2.131299121590379 }, "rgb": [58, 15, 49] }, @@ -398418,23 +398418,23 @@ "year": 1810, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": -8.981438835152176, - "c2": -25.526958869726386, - "c3": -45.8345932716657, - "c4": 25.20656600083249, - "c5": 18.78451621112753, - "c6": -40.8716268632142, - "c7": -17.340446399481923 + "points": { + "c1": -39.102285554577875, + "c2": -26.780634903175113, + "c3": 4.083046045054942, + "c4": -22.868507443587397, + "c5": 32.247150322137706, + "c6": -45.7756332397203, + "c7": 22.224244886060553 }, - "vertexSeeds": { - "c1": 8.459522140805126, - "c2": 8.768420607238477, - "c3": 8.811694420368875, - "c4": 8.711874595361364, - "c5": 8.52506716961244, - "c6": 8.861965703031919, - "c7": 9.154897595117156 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226065, + "c3": 11.049468331021732, + "c4": 8.839574664817377, + "c5": 6.6296809986130425, + "c6": 4.4197873324086885, + "c7": 2.209893666204334 }, "rgb": [77, 76, 132] }, @@ -398445,23 +398445,23 @@ "year": 1810, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 24.974349232045856, - "c2": 24.29549136679358, - "c3": 8.070542097088104, - "c4": -23.46030248637955, - "c5": 8.531957908629561, - "c6": -16.54940103797773, - "c7": -0.16816445221743592 + "points": { + "c1": -17.29064465956447, + "c2": -4.995189155415403, + "c3": -27.364508935751566, + "c4": -16.7134938176671, + "c5": -16.694711520692465, + "c6": -22.78689255873675, + "c7": -7.620930872271334 }, - "vertexSeeds": { - "c1": 1.8264248704663213, - "c2": 1.8264248704663213, - "c3": 1.8264248704663213, - "c4": 1.8264248704663213, - "c5": 1.8264248704663213, - "c6": 1.8264248704663213, - "c7": 1.8264248704663213 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -398472,23 +398472,23 @@ "year": 1810, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 26.29860077739805, - "c2": -9.00036556892955, - "c3": 26.390035292035407, - "c4": 4.282501455230992, - "c5": -3.876256500496307, - "c6": 30.318426351445964, - "c7": 18.089546678179957 + "points": { + "c1": -24.495127618430455, + "c2": 22.887623919628453, + "c3": 6.332831147522597, + "c4": -13.469606115040992, + "c5": -6.3762651639914445, + "c6": -22.846770557216704, + "c7": -34.02821765923301 }, - "vertexSeeds": { - "c1": 0.5634715025906736, - "c2": 0.5634715025906736, - "c3": 0.5634715025906736, - "c4": 0.5634715025906736, - "c5": 0.5634715025906736, - "c6": 0.5634715025906736, - "c7": 0.5634715025906736 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -398499,23 +398499,23 @@ "year": 1810, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -26.486522550123915, - "c2": 1.7948265732703774, - "c3": -3.4422725854284337, - "c4": 36.93226699231816, - "c5": -5.491189448606988, - "c6": 11.995649572808091, - "c7": -5.252466289630888 + "points": { + "c1": -26.546653982497993, + "c2": 25.213435317283654, + "c3": -35.896551394621824, + "c4": -22.251660584404487, + "c5": -10.191376025515144, + "c6": 33.60673470459297, + "c7": -33.28565292028442 }, - "vertexSeeds": { - "c1": 13.441471018424457, - "c2": 13.849323315923424, - "c3": 13.52494501459776, - "c4": 13.303080397804209, - "c5": 13.337560481076434, - "c6": 13.123622069515328, - "c7": 13.108869727554483 + "offsets": { + "c1": 23.36569579288026, + "c2": 20.02773925104023, + "c3": 16.68978270920017, + "c4": 13.351826167360143, + "c5": 10.013869625520115, + "c6": 6.675913083680054, + "c7": 3.337956541840027 }, "rgb": [222, 0, 59] }, @@ -398526,23 +398526,23 @@ "year": 1810, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": 3.367582593471198, - "c2": 9.019183939749372, - "c3": -20.561085756629392, - "c4": -20.11756614646903, - "c5": -18.502616373052355, - "c6": 17.998928267302855, - "c7": -11.457582989168229 + "points": { + "c1": 1.5061910810217114, + "c2": -6.731478210156002, + "c3": -12.435801524320622, + "c4": 6.665591329088862, + "c5": -22.145260419484796, + "c6": 22.3629821429433, + "c7": -17.066921688904333 }, - "vertexSeeds": { - "c1": 7.366186772278644, - "c2": 6.422137525682018, - "c3": 6.848902139614419, - "c4": 6.163547089590757, - "c5": 6.217892096715697, - "c6": 6.991252497695296, - "c7": 6.137799219005552 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128988, + "c3": 9.269533055940824, + "c4": 7.415626444752658, + "c5": 5.561719833564494, + "c6": 3.707813222376329, + "c7": 1.8539066111881646 }, "rgb": [86, 146, 138] }, @@ -398553,23 +398553,23 @@ "year": 1810, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -8.919507604367904, - "c2": 17.5401267379244, - "c3": 12.582761863945723, - "c4": 5.760108256063862, - "c5": 15.493824081362899, - "c6": 0.44664320481614084, - "c7": 24.336361939570114 + "points": { + "c1": 25.95262575785082, + "c2": -4.258845448555977, + "c3": -12.143502130359565, + "c4": -1.8948946811162806, + "c5": -10.917186388903303, + "c6": -20.322514679139154, + "c7": 4.850017454021096 }, - "vertexSeeds": { - "c1": 4.894270352085316, - "c2": 4.832630460374129, - "c3": 4.911965489476785, - "c4": 4.910444367058761, - "c5": 4.848684329135784, - "c6": 4.8949865896662486, - "c7": 4.892457655684379 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.0457697642163515, + "c3": 5.8714748035136575, + "c4": 4.697179842810917, + "c5": 3.5228848821081757, + "c6": 2.3485899214054817, + "c7": 1.1742949607027409 }, "rgb": [77, 76, 132] }, @@ -398580,23 +398580,23 @@ "year": 1810, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 24.661917189717176, - "c2": -22.407644088349397, - "c3": 6.007861436937535, - "c4": 17.150565028165406, - "c5": 10.48254036321477, - "c6": -14.221142697044662, - "c7": -6.117012590541236 + "points": { + "c1": -16.319653468838812, + "c2": 23.18054042316405, + "c3": 8.582885238720724, + "c4": 0.7070784708536166, + "c5": -26.78818737900739, + "c6": 0.5976341962912457, + "c7": 14.65772449410844 }, - "vertexSeeds": { - "c1": 2.98031510547763, - "c2": 3.240569654449343, - "c3": 3.00200248927485, - "c4": 2.972171629914418, - "c5": 3.3317737135157364, - "c6": 2.9905343399638786, - "c7": 3.1211331357704326 + "offsets": { + "c1": 5.631067961165048, + "c2": 4.826629680998614, + "c3": 4.022191400832179, + "c4": 3.217753120665745, + "c5": 2.413314840499303, + "c6": 1.6088765603328685, + "c7": 0.8044382801664343 }, "rgb": [238, 201, 159] }, @@ -398607,23 +398607,23 @@ "year": 1810, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -13.142353273636802, - "c2": -27.97355410855284, - "c3": 25.10530974459999, - "c4": -26.273465081666863, - "c5": 4.036434508111942, - "c6": -11.09719554267037, - "c7": -28.0722024500742 + "points": { + "c1": -20.717903069860704, + "c2": -7.247961048825275, + "c3": 10.673063044344179, + "c4": 12.991181289961634, + "c5": 6.088046510958218, + "c6": -8.703346379443072, + "c7": 14.120915878734355 }, - "vertexSeeds": { - "c1": 4.450982594061357, - "c2": 4.421546122435312, - "c3": 4.48336453280413, - "c4": 4.476273409562697, - "c5": 4.472759334972659, - "c6": 4.483820402837902, - "c7": 4.417754678841757 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331461, + "c3": 5.362921867776244, + "c4": 4.2903374942209735, + "c5": 3.217753120665757, + "c6": 2.1451687471104868, + "c7": 1.0725843735552703 }, "rgb": [86, 146, 138] }, @@ -398634,23 +398634,23 @@ "year": 1810, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -10.949038282462233, - "c2": 16.059672410661925, - "c3": 16.45228777401683, - "c4": 17.459195249465687, - "c5": -33.84955877865315, - "c6": 2.343555828851791, - "c7": 8.14658735691446 + "points": { + "c1": 6.4691320066584055, + "c2": -6.953112154998717, + "c3": -3.3872562522681022, + "c4": 29.416918075872218, + "c5": 37.725598235108976, + "c6": -24.788070708922795, + "c7": 13.133394192860237 }, - "vertexSeeds": { - "c1": 1.5872805475157514, - "c2": 1.5862470125266588, - "c3": 1.574288304263526, - "c4": 1.609981817000926, - "c5": 1.582942514604258, - "c6": 1.5788928197036711, - "c7": 1.6030543387738017 + "offsets": { + "c1": 2.7184466019417477, + "c2": 2.3300970873786326, + "c3": 1.941747572815537, + "c4": 1.5533980582524218, + "c5": 1.1650485436893259, + "c6": 0.7766990291262109, + "c7": 0.3883495145631151 }, "rgb": [222, 0, 59] }, @@ -398661,23 +398661,23 @@ "year": 1810, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 0.2719992355757377, - "c2": 16.33840913563262, - "c3": 18.371399287147977, - "c4": -17.807653999930025, - "c5": -26.1238428301392, - "c6": 10.379414234225582, - "c7": 28.473811989938245 + "points": { + "c1": -29.681991325158435, + "c2": -25.46970118714732, + "c3": -0.11631926065411591, + "c4": 5.37650065362277, + "c5": 1.0966966823131514, + "c6": 27.08280757428195, + "c7": -14.622981607477367 }, - "vertexSeeds": { - "c1": 13.990407149129101, - "c2": 13.92304407182152, - "c3": 13.627291630015344, - "c4": 14.169994637432406, - "c5": 14.172641215483504, - "c6": 13.865791918386265, - "c7": 14.244388785411884 + "offsets": { + "c1": 23.78640776699029, + "c2": 20.388349514563085, + "c3": 16.990291262135955, + "c4": 13.59223300970875, + "c5": 10.194174757281543, + "c6": 6.796116504854415, + "c7": 3.3980582524272074 }, "rgb": [77, 76, 132] }, @@ -398688,23 +398688,23 @@ "year": 1811, "resistanceReported": false, "duration": 32918400, - "curveSeeds": { - "c1": -41.144414074496574, - "c2": 30.849307758924212, - "c3": 29.60620141917839, - "c4": 25.450722668506017, - "c5": 34.37053596785272, - "c6": 26.637941031590557, - "c7": 32.16679639390436 + "points": { + "c1": -47.64920708848415, + "c2": 18.48430770880158, + "c3": -18.788912148428746, + "c4": -14.439140720544913, + "c5": 24.410931751244092, + "c6": -21.856111225607805, + "c7": -30.440883335722653 }, - "vertexSeeds": { - "c1": 7.924052892239997, - "c2": 8.11351769663522, - "c3": 7.6610149536397625, - "c4": 7.801305006628856, - "c5": 7.889886980851712, - "c6": 8.279867187053773, - "c7": 7.904192785300722 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381413, + "c3": 10.564031437817846, + "c4": 8.451225150254276, + "c5": 6.338418862690706, + "c6": 4.225612575127138, + "c7": 2.112806287563569 }, "rgb": [86, 146, 138] }, @@ -398715,23 +398715,23 @@ "year": 1810, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -0.2512419132571502, - "c2": -5.5478690902797965, - "c3": -10.785982394617566, - "c4": -1.5255927101359816, - "c5": 24.31272324170306, - "c6": -5.231957948126389, - "c7": -9.457773319682289 + "points": { + "c1": 1.6817567175577786, + "c2": 7.030623946365871, + "c3": -19.186224845849225, + "c4": 7.967199942304362, + "c5": 20.77227319575232, + "c6": -21.742843805580474, + "c7": -8.233227385996557 }, - "vertexSeeds": { - "c1": 3.4510282519357203, - "c2": 3.852117168036996, - "c3": 3.316275937819082, - "c4": 3.6567139213353848, - "c5": 3.508795442754631, - "c6": 3.324995401112128, - "c7": 3.3454396709466776 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084607, + "c3": 4.646324549237173, + "c4": 3.7170596393897397, + "c5": 2.787794729542306, + "c6": 1.8585298196948727, + "c7": 0.9292649098474393 }, "rgb": [238, 201, 159] }, @@ -398742,23 +398742,23 @@ "year": 1810, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 2.6590272354283577, - "c2": 16.471403638781727, - "c3": 27.202784848451625, - "c4": -23.93171820447224, - "c5": 18.711280883159407, - "c6": -3.681712202692136, - "c7": -5.500129127815292 + "points": { + "c1": 13.822689648509115, + "c2": -23.128178427918055, + "c3": 17.930297354895256, + "c4": -18.81347511565133, + "c5": -18.26773785468424, + "c6": 7.393132092452088, + "c7": -20.059106525808957 }, - "vertexSeeds": { - "c1": 9.24511865734278, - "c2": 9.245996502483111, - "c3": 7.580894926203317, - "c4": 8.365903416666274, - "c5": 7.631810198559074, - "c6": 8.164597280238917, - "c7": 7.874315052717177 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110953, + "c3": 11.558021266759134, + "c4": 9.246417013407305, + "c5": 6.934812760055476, + "c6": 4.623208506703656, + "c7": 2.311604253351828 }, "rgb": [222, 0, 59] }, @@ -398769,23 +398769,23 @@ "year": 1810, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 33.425046704688334, - "c2": 37.72499369679347, - "c3": -21.666081176667017, - "c4": -14.417690674702051, - "c5": 20.42077087917925, - "c6": 7.154939388228854, - "c7": -27.622144891110484 + "points": { + "c1": 21.656570694985824, + "c2": 43.64994983843663, + "c3": 16.45001990615463, + "c4": -1.7566241468771295, + "c5": -10.505575706038819, + "c6": -33.84528681610588, + "c7": -29.728065729410524 }, - "vertexSeeds": { - "c1": 4.997262950860811, - "c2": 5.264253691179176, - "c3": 5.348022954182231, - "c4": 5.213329669957862, - "c5": 5.183826948188476, - "c6": 5.266933316450736, - "c7": 5.08261414638161 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141481, + "c3": 6.4031437817845545, + "c4": 5.122515025427655, + "c5": 3.841886269070728, + "c6": 2.5612575127138273, + "c7": 1.2806287563569263 }, "rgb": [77, 76, 132] }, @@ -398796,23 +398796,23 @@ "year": 1811, "resistanceReported": false, "duration": 38102400, - "curveSeeds": { - "c1": -23.240678586575456, - "c2": -5.272250886927807, - "c3": 50.94405441193461, - "c4": -23.828963872230158, - "c5": -42.992271455665744, - "c6": -25.438250993419942, - "c7": -47.918979396892894 + "points": { + "c1": 3.091941030469819, + "c2": -37.31963017287958, + "c3": 25.02822037414142, + "c4": -32.03838826989242, + "c5": -41.517830264234355, + "c6": 45.99269744613721, + "c7": 42.52099118161278 }, - "vertexSeeds": { - "c1": 3.9273463078796875, - "c2": 3.992102260433983, - "c3": 4.125071872314841, - "c4": 3.9271342695987856, - "c5": 4.008978069668499, - "c6": 4.006543575626542, - "c7": 3.989443124888739 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848816, + "c3": 5.0855293573740195, + "c4": 4.068423485899211, + "c5": 3.0513176144244136, + "c6": 2.0342117429496054, + "c7": 1.0171058714748085 }, "rgb": [77, 76, 132] }, @@ -398823,23 +398823,23 @@ "year": 1812, "resistanceReported": false, "duration": 65232000, - "curveSeeds": { - "c1": 24.970794757287905, - "c2": -74.52122015282218, - "c3": -7.493127317122699, - "c4": -34.400071308852354, - "c5": -54.70314732312099, - "c6": -30.563129001600295, - "c7": -68.45387733905443 + "points": { + "c1": 62.04808012522609, + "c2": 61.07061482063277, + "c3": -49.55153822062287, + "c4": 4.219986974215161, + "c5": 14.298764018595534, + "c6": 76.84094435185709, + "c7": -20.693500039963354 }, - "vertexSeeds": { - "c1": 10.306820958699776, - "c2": 9.297706696545406, - "c3": 9.658666497599206, - "c4": 9.766892754749591, - "c5": 9.66272740456365, - "c6": 10.160948398542214, - "c7": 8.909181539512085 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438277, + "c3": 12.320850670365227, + "c4": 9.856680536292188, + "c5": 7.392510402219139, + "c6": 4.928340268146089, + "c7": 2.464170134073039 }, "rgb": [77, 76, 132] }, @@ -398850,23 +398850,23 @@ "year": 1811, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 3.893467378463278, - "c2": -31.67351453637002, - "c3": -17.15937027492299, - "c4": 3.8159671476334296, - "c5": 9.379276993150505, - "c6": -41.26361377043099, - "c7": 7.040638582187569 + "points": { + "c1": -7.6796750105400235, + "c2": -24.241530038711073, + "c3": 40.06920363054536, + "c4": 10.639360106341478, + "c5": 35.33365150565521, + "c6": 21.31222058503873, + "c7": -8.31871575105805 }, - "vertexSeeds": { - "c1": 1.0915199147723242, - "c2": 1.0433833315726937, - "c3": 1.0318227721460385, - "c4": 1.098398424165485, - "c5": 1.0851239479535497, - "c6": 0.9728371438562087, - "c7": 1.0861362455497434 + "offsets": { + "c1": 1.8770226537216828, + "c2": 1.6088765603328714, + "c3": 1.3407304669440603, + "c4": 1.072584373555247, + "c5": 0.8044382801664357, + "c6": 0.5362921867776245, + "c7": 0.2681460933888113 }, "rgb": [58, 15, 49] }, @@ -398877,23 +398877,23 @@ "year": 1810, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 32.10435881563461, - "c2": -11.045322483721563, - "c3": -15.939635775882266, - "c4": -29.911173683997767, - "c5": 19.652874763418566, - "c6": 4.737735067193164, - "c7": 22.70749927046088 + "points": { + "c1": 27.63688901051833, + "c2": 28.360990459133504, + "c3": -23.218978020362993, + "c4": -5.175648448953069, + "c5": -36.28471028550533, + "c6": 30.231344707056692, + "c7": -5.537063058569075 }, - "vertexSeeds": { - "c1": 5.201224268468741, - "c2": 4.984047774691379, - "c3": 5.072328389405371, - "c4": 5.046181029964385, - "c5": 5.2018377694726, - "c6": 5.103334643226647, - "c7": 4.995664346578364 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859921, + "c3": 6.241331484049939, + "c4": 4.993065187239926, + "c5": 3.7447988904299447, + "c6": 2.496532593619963, + "c7": 1.2482662968099816 }, "rgb": [222, 0, 59] }, @@ -398904,23 +398904,23 @@ "year": 1810, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 29.976107163884826, - "c2": -18.08496379691484, - "c3": -2.3777655758429432, - "c4": -24.50347822689027, - "c5": -6.978107296267513, - "c6": -16.46407503114428, - "c7": -4.27898018063987 + "points": { + "c1": -28.03671565044385, + "c2": -17.72545166108059, + "c3": -6.725129042433384, + "c4": -2.518678001272157, + "c5": -3.3398324348962305, + "c6": -27.77223383586934, + "c7": 20.316823212769364 }, - "vertexSeeds": { - "c1": 4.859446684201074, - "c2": 4.778112914550405, - "c3": 4.750183141139653, - "c4": 4.918657945812294, - "c5": 4.711266332040001, - "c6": 4.92740834805292, - "c7": 4.8196466169369 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538147, + "c3": 6.056403143781786, + "c4": 4.845122515025425, + "c5": 3.6338418862690736, + "c6": 2.4225612575127125, + "c7": 1.2112806287563516 }, "rgb": [222, 0, 59] }, @@ -398931,23 +398931,23 @@ "year": 1810, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 30.435729036750146, - "c2": -23.115601021576758, - "c3": 27.400058880038664, - "c4": -23.51768267241974, - "c5": 20.65513685044028, - "c6": -7.231348851437815, - "c7": 13.007839886210355 + "points": { + "c1": 6.550520938106601, + "c2": -9.517808527522327, + "c3": 23.93027709472456, + "c4": 15.299458422958772, + "c5": -31.369582717563652, + "c6": 15.548731871043891, + "c7": -30.433021702562613 }, - "vertexSeeds": { - "c1": 5.501641947090472, - "c2": 5.446307374574218, - "c3": 5.462232701113295, - "c4": 5.4505455287209825, - "c5": 5.497439555654883, - "c6": 5.512221160120071, - "c7": 5.512118784093153 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503504, + "c3": 6.61118816458621, + "c4": 5.288950531669003, + "c5": 3.9667128987517084, + "c6": 2.6444752658345014, + "c7": 1.3222376329172068 }, "rgb": [222, 0, 59] }, @@ -398958,23 +398958,23 @@ "year": 1811, "resistanceReported": false, "duration": 38534400, - "curveSeeds": { - "c1": 23.504499374224885, - "c2": -49.448934078363564, - "c3": 11.734171557275943, - "c4": -3.024114940003038, - "c5": -26.766614008905293, - "c6": -21.30784006956262, - "c7": -17.333964945162627 + "points": { + "c1": 52.1847916471937, + "c2": 25.52166682141179, + "c3": 26.266017203260695, + "c4": 0.7540774359525173, + "c5": -37.450036320221926, + "c6": -21.94470584998902, + "c7": 24.217137665178306 }, - "vertexSeeds": { - "c1": 2.1686128274510637, - "c2": 2.383441155377932, - "c3": 2.2870748646155237, - "c4": 2.3223030811797605, - "c5": 2.04739717637129, - "c6": 2.404038450764011, - "c7": 2.19802563985671 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.467406380027738, + "c3": 2.889505316689784, + "c4": 2.311604253351826, + "c5": 1.733703190013869, + "c6": 1.1558021266759118, + "c7": 0.5779010633379573 }, "rgb": [238, 201, 159] }, @@ -398985,23 +398985,23 @@ "year": 1810, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 6.833493276261265, - "c2": 25.123874412435974, - "c3": 21.22315059030018, - "c4": -2.223595226140855, - "c5": 20.490349798897583, - "c6": -27.343898135644455, - "c7": 5.526685568118701 + "points": { + "c1": -26.904836104958328, + "c2": 8.995606000476847, + "c3": -31.141406024384825, + "c4": -14.957146159858048, + "c5": -18.650999965852936, + "c6": 22.377764691815614, + "c7": -4.550310606459149 }, - "vertexSeeds": { - "c1": 7.6356675807389225, - "c2": 7.29396415054403, - "c3": 7.862895617154534, - "c4": 7.794123478468265, - "c5": 6.948670641362238, - "c6": 8.04075846881698, - "c7": 7.5335131172894565 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973646, + "c3": 9.754969949144705, + "c4": 7.803975959315764, + "c5": 5.852981969486823, + "c6": 3.901987979657882, + "c7": 1.950993989828941 }, "rgb": [86, 146, 138] }, @@ -399012,23 +399012,23 @@ "year": 1811, "resistanceReported": false, "duration": 40176000, - "curveSeeds": { - "c1": -42.32911970323245, - "c2": -7.303941771814159, - "c3": -33.68705087635004, - "c4": 2.58400681043652, - "c5": -18.321195952502357, - "c6": 51.365960520780334, - "c7": -49.94840414238323 + "points": { + "c1": 14.254030552248537, + "c2": 23.117619821697915, + "c3": -1.4994380658439326, + "c4": 46.81512125625588, + "c5": 16.450656142418453, + "c6": -45.05314058965598, + "c7": -3.880317637642591 }, - "vertexSeeds": { - "c1": 4.848853637218849, - "c2": 4.458441209131636, - "c3": 4.352015651190775, - "c4": 4.875014282861222, - "c5": 4.693126096923033, - "c6": 4.543157523373722, - "c7": 4.3842527173019255 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135924, + "c3": 5.8252427184466, + "c4": 4.660194174757281, + "c5": 3.495145631067962, + "c6": 2.330097087378638, + "c7": 1.165048543689319 }, "rgb": [86, 146, 138] }, @@ -399039,23 +399039,23 @@ "year": 1810, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 9.145400492972033, - "c2": 16.671009681229098, - "c3": -12.821027849334726, - "c4": -6.335200207133035, - "c5": -13.031082703014528, - "c6": 20.32282856057827, - "c7": 1.18927893135643 + "points": { + "c1": 25.771827956654835, + "c2": 19.00592245637736, + "c3": -11.34593020689434, + "c4": -16.779438516551767, + "c5": 25.43966525397791, + "c6": -24.998380183847207, + "c7": -28.447052371840865 }, - "vertexSeeds": { - "c1": 1.1427990249486721, - "c2": 1.1162089241322377, - "c3": 1.1740888457760696, - "c4": 1.1346773088549078, - "c5": 1.2028771759573222, - "c6": 1.1664746235087615, - "c7": 1.0969362147228456 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144254, + "c3": 1.5025427646786869, + "c4": 1.2020342117429503, + "c5": 0.9015256588072117, + "c6": 0.6010171058714752, + "c7": 0.30050855293573664 }, "rgb": [238, 201, 159] }, @@ -399066,23 +399066,23 @@ "year": 1810, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -13.208728886078575, - "c2": 14.877252580200633, - "c3": 5.161902360044117, - "c4": -0.578275354854533, - "c5": -32.383281134670085, - "c6": 9.424981649412729, - "c7": 4.124463714519948 + "points": { + "c1": 18.241906698514114, + "c2": -31.512050555287516, + "c3": 33.388235809706686, + "c4": 21.810049134221373, + "c5": 25.179877209112234, + "c6": 25.398226374817582, + "c7": -33.87564155149072 }, - "vertexSeeds": { - "c1": 3.237197061289329, - "c2": 3.028213567711683, - "c3": 3.232631616044178, - "c4": 3.020116842120351, - "c5": 2.9972474505655393, - "c6": 3.1420814334294223, - "c7": 2.991761023644611 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797506, + "c3": 3.906611188164589, + "c4": 3.125288950531673, + "c5": 2.3439667128987574, + "c6": 1.5626444752658322, + "c7": 0.7813222376329161 }, "rgb": [238, 201, 159] }, @@ -399093,23 +399093,23 @@ "year": 1810, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -14.539707274456841, - "c2": -20.42732134424689, - "c3": -26.960881784703968, - "c4": -1.6899520102514956, - "c5": -35.32699605361896, - "c6": -18.42980244605288, - "c7": -2.810464018473695 + "points": { + "c1": 7.827112685047588, + "c2": -19.265179949415135, + "c3": -10.465066881608593, + "c4": -3.193726953480663, + "c5": -32.99433134533758, + "c6": 26.768432970086472, + "c7": -6.558759469713891 }, - "vertexSeeds": { - "c1": 7.82493516154607, - "c2": 7.557958904708326, - "c3": 7.411578660175712, - "c4": 7.8551231784597375, - "c5": 7.738570607191587, - "c6": 7.7343358427057325, - "c7": 7.767906832884522 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812762, + "c3": 9.662505779010637, + "c4": 7.730004623208499, + "c5": 5.797503467406375, + "c6": 3.8650023116042496, + "c7": 1.9325011558021248 }, "rgb": [58, 15, 49] }, @@ -399120,23 +399120,23 @@ "year": 1810, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -21.110321308640074, - "c2": 4.575098917661599, - "c3": 0.6272770153417184, - "c4": -29.04857522139283, - "c5": 7.172124511350866, - "c6": 29.86800756500979, - "c7": 19.281818055349795 + "points": { + "c1": 29.79024511265365, + "c2": -18.395463749551993, + "c3": 8.857070575431209, + "c4": -38.08357925753311, + "c5": 39.378240258503396, + "c6": -7.547967329994215, + "c7": 23.63355532991904 }, - "vertexSeeds": { - "c1": 6.053960316301194, - "c2": 6.104074377442965, - "c3": 6.423819794201634, - "c4": 6.566392112741354, - "c5": 6.413343717593626, - "c6": 6.5223284323460495, - "c7": 6.90723555851728 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922334, + "c3": 8.576051779935273, + "c4": 6.860841423948224, + "c5": 5.145631067961161, + "c6": 3.430420711974112, + "c7": 1.7152103559870615 }, "rgb": [238, 201, 159] }, @@ -399147,23 +399147,23 @@ "year": 1810, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 16.5756145488239, - "c2": 4.332066066866233, - "c3": 32.302899653372364, - "c4": 6.675068759255645, - "c5": 29.76520712115964, - "c6": -15.029362102026983, - "c7": -23.863833907170946 + "points": { + "c1": 25.387243747810587, + "c2": -13.824939522545886, + "c3": 20.13896415841917, + "c4": -4.048816195771863, + "c5": 20.297931476742917, + "c6": 9.324385870200054, + "c7": 25.354703027062456 }, - "vertexSeeds": { - "c1": 9.430941571628354, - "c2": 9.188177791430686, - "c3": 9.295256950624585, - "c4": 9.23470197970711, - "c5": 9.36371713730257, - "c6": 9.232645616623211, - "c7": 9.491184594975142 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909859, + "c3": 11.442441054091526, + "c4": 9.153952843273228, + "c5": 6.8654646324549295, + "c6": 4.576976421636632, + "c7": 2.288488210818298 }, "rgb": [58, 15, 49] }, @@ -399174,23 +399174,23 @@ "year": 1810, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 29.939031758614334, - "c2": -15.460701384848495, - "c3": -9.092442776895272, - "c4": -13.855016238763582, - "c5": -8.75506964861766, - "c6": -25.063247612279525, - "c7": -34.39088594766842 + "points": { + "c1": -33.25214514099845, + "c2": -18.687310518377657, + "c3": -18.25081894481938, + "c4": 31.590314114538586, + "c5": 13.492972687174351, + "c6": -20.356239053214175, + "c7": 9.793819081782544 }, - "vertexSeeds": { - "c1": 5.976247663569221, - "c2": 5.757806933303167, - "c3": 5.71467605561616, - "c4": 5.663910830116225, - "c5": 5.674324303401681, - "c6": 6.06410363420417, - "c7": 6.034451284431849 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750353, + "c3": 7.327785483125279, + "c4": 5.862228386500227, + "c5": 4.396671289875177, + "c6": 2.9311141932501257, + "c7": 1.4655570966250513 }, "rgb": [58, 15, 49] }, @@ -399201,23 +399201,23 @@ "year": 1810, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -20.777864893529248, - "c2": -3.335781166772559, - "c3": -14.69413108014, - "c4": -21.83122790094128, - "c5": 12.849438629878833, - "c6": -0.6031670363961155, - "c7": 9.535645314288445 + "points": { + "c1": -15.29768113001985, + "c2": 11.72744244067082, + "c3": -10.890442764619397, + "c4": 17.8464760526864, + "c5": -35.60846477666472, + "c6": 25.584259107214372, + "c7": 19.931253725408915 }, - "vertexSeeds": { - "c1": 14.129737498107431, - "c2": 13.758184035326188, - "c3": 13.425960798462706, - "c4": 13.738817153747306, - "c5": 14.303125158315304, - "c6": 13.671409231452515, - "c7": 13.785042826389315 + "offsets": { + "c1": 24.336569579288025, + "c2": 20.85991678224689, + "c3": 17.383263985205716, + "c4": 13.906611188164579, + "c5": 10.429958391123446, + "c6": 6.953305594082271, + "c7": 3.4766527970411354 }, "rgb": [86, 146, 138] }, @@ -399228,23 +399228,23 @@ "year": 1810, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -11.206973535851647, - "c2": -12.092302735082287, - "c3": 18.654188848157105, - "c4": 16.790382464891366, - "c5": 1.458538918044706, - "c6": -0.6290568864287529, - "c7": 14.801647979955462 + "points": { + "c1": -25.351868377453606, + "c2": 22.771054211360706, + "c3": -2.6552261150528267, + "c4": 25.700783584053063, + "c5": 3.9587348169721963, + "c6": -9.102865723374165, + "c7": -5.038616404269785 }, - "vertexSeeds": { - "c1": 9.540279197581492, - "c2": 9.331825188355026, - "c3": 9.622200521797131, - "c4": 9.462492419050845, - "c5": 9.449990498484995, - "c6": 9.277235036520679, - "c7": 9.077176512575184 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110954, + "c3": 11.55802126675913, + "c4": 9.246417013407303, + "c5": 6.934812760055477, + "c6": 4.6232085067036515, + "c7": 2.3116042533518257 }, "rgb": [238, 201, 159] }, @@ -399255,23 +399255,23 @@ "year": 1810, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 17.253902215174755, - "c2": -15.316890438849565, - "c3": 8.091758039543564, - "c4": 4.375657243650309, - "c5": 28.23961323238988, - "c6": 11.66432150413435, - "c7": 10.964426825044434 + "points": { + "c1": -30.882060450700436, + "c2": 34.77880420119587, + "c3": 19.45027426567357, + "c4": -21.24805111263808, + "c5": 8.03494819842026, + "c6": 28.24117206035372, + "c7": -31.004913558246187 }, - "vertexSeeds": { - "c1": 11.666305332351847, - "c2": 11.407608753800169, - "c3": 11.188088384251698, - "c4": 11.499947781678406, - "c5": 11.22569787274545, - "c6": 11.311794868419364, - "c7": 11.77228055477126 + "offsets": { + "c1": 19.77346278317152, + "c2": 16.948682385575612, + "c3": 14.12390198797965, + "c4": 11.299121590383743, + "c5": 8.47434119278778, + "c6": 5.649560795191872, + "c7": 2.8247803975959074 }, "rgb": [58, 15, 49] }, @@ -399282,23 +399282,23 @@ "year": 1811, "resistanceReported": false, "duration": 44928000, - "curveSeeds": { - "c1": 9.485748000740728, - "c2": -39.06665553286372, - "c3": 54.008626439147804, - "c4": -42.46822678873376, - "c5": 50.97936768004939, - "c6": 12.239333731614423, - "c7": 7.53998876880685 + "points": { + "c1": -58.14719010055355, + "c2": 31.723376117577956, + "c3": -12.140590115506882, + "c4": -26.962092579395126, + "c5": 22.123773155632435, + "c6": -4.524227269247184, + "c7": -58.6615696664852 }, - "vertexSeeds": { - "c1": 4.266981985014046, - "c2": 4.259631551631656, - "c3": 4.116705230550663, - "c4": 4.241342582109473, - "c5": 4.321544390803516, - "c6": 4.22600997303249, - "c7": 4.288042205172459 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090155, + "c3": 5.224225612575132, + "c4": 4.179380490060108, + "c5": 3.134535367545071, + "c6": 2.0896902450300474, + "c7": 1.0448451225150237 }, "rgb": [222, 0, 59] }, @@ -399309,23 +399309,23 @@ "year": 1810, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -8.29915616012929, - "c2": 8.930638548283483, - "c3": 15.960256509050112, - "c4": -27.444575220413075, - "c5": 22.813917881577346, - "c6": 26.377304535472213, - "c7": -16.76731542965297 + "points": { + "c1": 24.984162780559153, + "c2": 23.57097849505513, + "c3": -23.08916135543646, + "c4": -23.577345264519135, + "c5": 28.089764249111354, + "c6": 14.867112630512395, + "c7": -25.78242484425178 }, - "vertexSeeds": { - "c1": 7.672685029689503, - "c2": 7.202702216374511, - "c3": 7.533064052669334, - "c4": 7.412471957960153, - "c5": 7.644043367613204, - "c6": 7.638131043123966, - "c7": 7.823930341889033 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.34535367545076, + "c3": 9.454461396208979, + "c4": 7.563569116967178, + "c5": 5.67267683772538, + "c6": 3.7817845584835994, + "c7": 1.8908922792417997 }, "rgb": [86, 146, 138] }, @@ -399336,23 +399336,23 @@ "year": 1810, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 3.718726969330806, - "c2": 27.224395154913655, - "c3": 15.577964060983096, - "c4": -2.2926093811569324, - "c5": -6.484254582178121, - "c6": -1.023839000415979, - "c7": 5.648396871677004 + "points": { + "c1": 3.850441804682294, + "c2": -7.533637991167797, + "c3": -1.8596082658594781, + "c4": 26.20273721483189, + "c5": 6.325173791058251, + "c6": -4.608016586762091, + "c7": -28.663254377325778 }, - "vertexSeeds": { - "c1": 10.60958001511778, - "c2": 10.700962770748554, - "c3": 10.655011007957238, - "c4": 10.658365745394063, - "c5": 10.835327777317422, - "c6": 10.828981400796977, - "c7": 10.487450647886842 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524272, + "c3": 12.944983818770227, + "c4": 10.35598705501618, + "c5": 7.766990291262136, + "c6": 5.17799352750809, + "c7": 2.588996763754045 }, "rgb": [222, 0, 59] }, @@ -399363,23 +399363,23 @@ "year": 1810, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 1.4698835838346191, - "c2": -14.349385203112012, - "c3": 9.224353430384937, - "c4": -14.133029123772792, - "c5": -7.9132975792664375, - "c6": 1.0525343861571166, - "c7": -11.289219464429598 + "points": { + "c1": -15.530030043007667, + "c2": -16.511735403775965, + "c3": 1.9770484806961335, + "c4": 15.716041062512424, + "c5": -19.66330255509793, + "c6": 18.013045704393903, + "c7": -7.629167209206621 }, - "vertexSeeds": { - "c1": 1.6554230957599065, - "c2": 1.5090461854297728, - "c3": 1.59206081287384, - "c4": 1.5673431484165632, - "c5": 1.608755349833427, - "c6": 1.5230231179059615, - "c7": 1.5886089672994226 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499304, + "c3": 2.011095700416089, + "c4": 1.6088765603328694, + "c5": 1.2066574202496545, + "c6": 0.8044382801664347, + "c7": 0.4022191400832152 }, "rgb": [222, 0, 59] }, @@ -399390,23 +399390,23 @@ "year": 1810, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 15.390124195260654, - "c2": -20.01010326093435, - "c3": -25.711055872368945, - "c4": 14.002779195193654, - "c5": -7.933814980796658, - "c6": -17.922408970565126, - "c7": 16.274243346925395 + "points": { + "c1": 28.465676950760987, + "c2": -24.896307802805318, + "c3": -12.821868306390702, + "c4": -26.580422435665593, + "c5": -22.909572846111928, + "c6": 13.474876067561027, + "c7": -6.90084665254906 }, - "vertexSeeds": { - "c1": 11.43295810762073, - "c2": 11.233962413975798, - "c3": 11.207883589378033, - "c4": 10.961483468431645, - "c5": 11.012040183433626, - "c6": 11.072529220409564, - "c7": 11.210264214640516 + "offsets": { + "c1": 19.19093851132686, + "c2": 16.449375866851593, + "c3": 13.707813222376329, + "c4": 10.966250577901063, + "c5": 8.224687933425797, + "c6": 5.483125288950531, + "c7": 2.7415626444752657 }, "rgb": [86, 146, 138] }, @@ -399417,23 +399417,23 @@ "year": 1810, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -22.99633761728917, - "c2": -19.722753719578947, - "c3": 17.015829589123538, - "c4": 5.237267304317836, - "c5": 23.22539736684067, - "c6": -24.663579095761595, - "c7": -20.961556111459593 + "points": { + "c1": 24.504710451750412, + "c2": -6.1080950852408264, + "c3": -15.007447429354517, + "c4": 17.56948234022824, + "c5": 12.816736382135694, + "c6": 1.8735972185444183, + "c7": -4.245743980225928 }, - "vertexSeeds": { - "c1": 9.054354376201378, - "c2": 8.784598515586962, - "c3": 8.980289688204387, - "c4": 8.948355429360769, - "c5": 9.088721233759927, - "c6": 8.979777378029668, - "c7": 8.474407692705547 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306507, + "c3": 11.095700416088768, + "c4": 8.876560332871007, + "c5": 6.657420249653264, + "c6": 4.438280166435503, + "c7": 2.219140083217762 }, "rgb": [58, 15, 49] }, @@ -399444,23 +399444,23 @@ "year": 1810, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 2.1310987033128796, - "c2": 5.330519490988053, - "c3": -4.850958245698674, - "c4": -23.84625690276932, - "c5": -26.90826210556049, - "c6": -11.373139194617906, - "c7": 26.874364879703855 + "points": { + "c1": 28.91850441075473, + "c2": 15.132336344187337, + "c3": 10.623379907803724, + "c4": 22.182084377831487, + "c5": 25.89967155747844, + "c6": 21.408313658861587, + "c7": 21.456005994959263 }, - "vertexSeeds": { - "c1": 2.696913852784664, - "c2": 2.575759841466556, - "c3": 2.7447109936395764, - "c4": 2.865711548640825, - "c5": 2.6473891821692592, - "c6": 2.7477430617841265, - "c7": 2.82648180907508 + "offsets": { + "c1": 4.88673139158576, + "c2": 4.188626907073508, + "c3": 3.4905224225612543, + "c4": 2.792417938049007, + "c5": 2.094313453536754, + "c6": 1.3962089690245008, + "c7": 0.698104484512253 }, "rgb": [77, 76, 132] }, @@ -399471,23 +399471,23 @@ "year": 1811, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -15.075033702693808, - "c2": 5.591619731552356, - "c3": 4.863558497573244, - "c4": -12.324641480304841, - "c5": -4.434588512997877, - "c6": 22.63630760168813, - "c7": 4.617754425291146 + "points": { + "c1": -12.005334647975957, + "c2": 16.865870513718093, + "c3": -10.033665252727257, + "c4": -9.99656440373396, + "c5": -24.68864037700034, + "c6": -17.458332305625106, + "c7": -9.510359761478451 }, - "vertexSeeds": { - "c1": 12.824047589639513, - "c2": 12.33915151509268, - "c3": 12.448509264799517, - "c4": 13.047677689218174, - "c5": 12.413569309510672, - "c6": 11.900997595322519, - "c7": 12.040803028851641 + "offsets": { + "c1": 22.491909385113267, + "c2": 19.278779472954227, + "c3": 16.06564956079518, + "c4": 12.85251964863614, + "c5": 9.639389736477098, + "c6": 6.426259824318085, + "c7": 3.2131299121590122 }, "rgb": [238, 201, 159] }, @@ -399498,23 +399498,23 @@ "year": 1811, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 23.030445041842533, - "c2": -9.341985975539007, - "c3": 11.626869767116098, - "c4": -16.373525988258955, - "c5": -25.84557126530075, - "c6": 24.27249801962835, - "c7": 17.520815317406864 + "points": { + "c1": 24.073703637807228, + "c2": -11.027134297903928, + "c3": -29.522579804943053, + "c4": -28.080440092303206, + "c5": 7.372489809876498, + "c6": 17.486360495405656, + "c7": -9.637425291593082 }, - "vertexSeeds": { - "c1": 1.2340528912596622, - "c2": 1.125703913383787, - "c3": 1.107580998980104, - "c4": 1.1437529112246305, - "c5": 1.1142515819347674, - "c6": 1.1654135005655883, - "c7": 1.2252754749579085 + "offsets": { + "c1": 2.103559870550162, + "c2": 1.8030513176144254, + "c3": 1.5025427646786869, + "c4": 1.2020342117429503, + "c5": 0.9015256588072116, + "c6": 0.6010171058714752, + "c7": 0.30050855293573864 }, "rgb": [77, 76, 132] }, @@ -399525,23 +399525,23 @@ "year": 1810, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -19.760593936524398, - "c2": 20.969542463645713, - "c3": 18.423740114635986, - "c4": 19.297323587905485, - "c5": -2.192554734839124, - "c6": -4.393439775574585, - "c7": -24.067593660445706 + "points": { + "c1": -15.609810174050311, + "c2": -11.81011845586334, + "c3": 23.175340988286255, + "c4": 26.2005929246271, + "c5": -2.328336420381337, + "c6": 18.63731921559194, + "c7": -28.370994297429682 }, - "vertexSeeds": { - "c1": 7.976271030267139, - "c2": 8.116697754381022, - "c3": 7.908360707323862, - "c4": 7.956616424678354, - "c5": 8.146827406683283, - "c6": 7.764833607165984, - "c7": 7.89926713963164 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.81692094313453, + "c3": 9.84743411927877, + "c4": 7.87794729542301, + "c5": 5.90846047156725, + "c6": 3.9389736477115207, + "c7": 1.9694868238557603 }, "rgb": [238, 201, 159] }, @@ -399552,23 +399552,23 @@ "year": 1810, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 5.029379860766209, - "c2": 15.211405017277752, - "c3": 5.214095295030948, - "c4": -19.100263858272427, - "c5": 17.83363907467366, - "c6": 16.257672229596675, - "c7": 9.510823547396914 + "points": { + "c1": -14.298752469277076, + "c2": -15.822467603267766, + "c3": 15.801538607530741, + "c4": 23.305545309660776, + "c5": -6.605168900521804, + "c6": -5.257394776507777, + "c7": -24.0765943274678 }, - "vertexSeeds": { - "c1": 6.258088138908111, - "c2": 6.80268811707718, - "c3": 6.644642611591279, - "c4": 6.549074373054143, - "c5": 6.545947142867557, - "c6": 6.25816440255712, - "c7": 6.230586480298803 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158111, + "c3": 8.136846971798423, + "c4": 6.5094775774387355, + "c5": 4.882108183079066, + "c6": 3.254738788719377, + "c7": 1.6273693943596885 }, "rgb": [77, 76, 132] }, @@ -399579,23 +399579,23 @@ "year": 1810, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -8.78382513786504, - "c2": 19.603146745499735, - "c3": 1.934930249984422, - "c4": 25.909201306613646, - "c5": -23.813867405554653, - "c6": 0.6382332421525128, - "c7": -12.403021152781312 + "points": { + "c1": 7.160963588126329, + "c2": -26.59381251415154, + "c3": 10.39511719728339, + "c4": 10.214863567705251, + "c5": 0.33424420754209194, + "c6": -26.306710883717365, + "c7": 16.457477943123124 }, - "vertexSeeds": { - "c1": 4.096059176477223, - "c2": 4.17091058393089, - "c3": 4.205533415287908, - "c4": 4.283392686465675, - "c5": 4.212190279835879, - "c6": 4.089057749229217, - "c7": 4.236089169698553 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090157, + "c3": 5.224225612575135, + "c4": 4.1793804900601, + "c5": 3.1345353675450784, + "c6": 2.0896902450300567, + "c7": 1.0448451225150348 }, "rgb": [86, 146, 138] }, @@ -399606,23 +399606,23 @@ "year": 1811, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -11.036155741762936, - "c2": 20.954461552672747, - "c3": -29.40181913348519, - "c4": 17.82741100575717, - "c5": 23.334156066699535, - "c6": 14.642792589633096, - "c7": 8.89375349883182 + "points": { + "c1": -25.816391695065416, + "c2": 29.11787734481446, + "c3": -0.23559920187021532, + "c4": -25.601377661216063, + "c5": 35.75274591408403, + "c6": -32.86175114129305, + "c7": -26.788911344990808 }, - "vertexSeeds": { - "c1": 4.623068242435779, - "c2": 4.266743872238276, - "c3": 4.105546139000253, - "c4": 4.591982117188501, - "c5": 4.621757506903358, - "c6": 4.183459198010321, - "c7": 4.657704264598267 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.6851595006934845, + "c3": 5.570966250577901, + "c4": 4.456773000462324, + "c5": 3.3425797503467387, + "c6": 2.228386500231162, + "c7": 1.1141932501155771 }, "rgb": [58, 15, 49] }, @@ -399633,23 +399633,23 @@ "year": 1810, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 20.318532895874455, - "c2": -12.31477999686245, - "c3": -10.573253311350088, - "c4": 9.447319446365789, - "c5": -12.553609373535155, - "c6": -3.6150285537718183, - "c7": 6.518224040538591 + "points": { + "c1": -12.414375000428127, + "c2": -4.971608604916536, + "c3": 22.7704421638664, + "c4": 9.114124524090052, + "c5": 19.00676639785273, + "c6": -23.34319894545563, + "c7": -12.029317793104083 }, - "vertexSeeds": { - "c1": 10.779404785977814, - "c2": 10.906129388939258, - "c3": 11.02151568968479, - "c4": 10.696689020946016, - "c5": 11.03519605370799, - "c6": 10.992452395221006, - "c7": 10.841250473323608 + "offsets": { + "c1": 18.51132686084142, + "c2": 15.866851595006912, + "c3": 13.222376329172477, + "c4": 10.577901063337967, + "c5": 7.933425797503456, + "c6": 5.288950531668944, + "c7": 2.644475265834511 }, "rgb": [222, 0, 59] }, @@ -399660,23 +399660,23 @@ "year": 1811, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -34.31247879949933, - "c2": -34.20583830695415, - "c3": 37.97284190064942, - "c4": -31.66188386769616, - "c5": -37.6936921968918, - "c6": -18.881219107704425, - "c7": -13.795185499280816 + "points": { + "c1": 35.6504569775766, + "c2": 39.389321841871116, + "c3": 14.269506361422877, + "c4": 42.4761949190822, + "c5": 1.9774270668558742, + "c6": 6.428097419150667, + "c7": 45.099441862025806 }, - "vertexSeeds": { - "c1": 3.0672433975566173, - "c2": 3.066794222399817, - "c3": 3.0141682639623646, - "c4": 3.029163858129288, - "c5": 3.0487847447232377, - "c6": 3.100161200175292, - "c7": 3.042706674913438 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.493758668515956, + "c3": 3.7447988904299563, + "c4": 2.9958391123439716, + "c5": 2.246879334257971, + "c6": 1.4979195561719858, + "c7": 0.7489597780859852 }, "rgb": [77, 76, 132] }, @@ -399687,23 +399687,23 @@ "year": 1810, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -19.137195745750372, - "c2": -14.819659497485526, - "c3": -9.344969976269411, - "c4": -11.258890046160557, - "c5": 17.51500130339024, - "c6": -10.612638807512141, - "c7": 16.554408215868254 + "points": { + "c1": -23.91113554652706, + "c2": 9.145765797929155, + "c3": 3.053412372655803, + "c4": 4.1514976634898595, + "c5": 6.162382606091686, + "c6": -25.91587787237153, + "c7": 13.898070650763895 }, - "vertexSeeds": { - "c1": 8.559457384451735, - "c2": 8.55329460109983, - "c3": 8.237428933728374, - "c4": 8.148293784942348, - "c5": 8.469475018537864, - "c6": 7.934383623024775, - "c7": 8.097061634943367 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778086, + "c3": 10.217290799815071, + "c4": 8.173832639852057, + "c5": 6.130374479889043, + "c6": 4.086916319926028, + "c7": 2.043458159963014 }, "rgb": [86, 146, 138] }, @@ -399714,23 +399714,23 @@ "year": 1810, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": -1.6211094995258044, - "c2": -17.90128896574061, - "c3": -10.125103702842507, - "c4": 8.786421287898452, - "c5": -4.492254768573321, - "c6": 14.032690387061223, - "c7": 5.951510369251743 + "points": { + "c1": -19.071932462333276, + "c2": 1.651962234284774, + "c3": 20.340319477299268, + "c4": -12.972280703286525, + "c5": 14.861143212958275, + "c6": -11.982529067670793, + "c7": 4.867541652296815 }, - "vertexSeeds": { - "c1": 7.6306703641614835, - "c2": 7.7136181913348585, - "c3": 7.460572145691444, - "c4": 7.686687606694199, - "c5": 7.795737262438003, - "c6": 7.382310925057299, - "c7": 7.664837211030962 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249666, + "c3": 9.338881183541373, + "c4": 7.47110494683311, + "c5": 5.603328710124819, + "c6": 3.735552473416555, + "c7": 1.8677762367082915 }, "rgb": [222, 0, 59] }, @@ -399741,23 +399741,23 @@ "year": 1811, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 29.353692506904153, - "c2": -31.58392622108952, - "c3": -27.508998682215076, - "c4": 19.2039254896481, - "c5": -16.159470001404735, - "c6": -25.27802377377674, - "c7": 17.49643179517212 + "points": { + "c1": 27.22288453111642, + "c2": -13.729267125559772, + "c3": -3.744409511130584, + "c4": -8.45662556266149, + "c5": -9.542547173388336, + "c6": 7.123322879203599, + "c7": 13.795184563668776 }, - "vertexSeeds": { - "c1": 0.19352767384619493, - "c2": 0.18909458798949258, - "c3": 0.1893270608839523, - "c4": 0.17681992064554322, - "c5": 0.1810331541433657, - "c6": 0.1826575194146828, - "c7": 0.1765895286583345 + "offsets": { + "c1": 0.3559870550161813, + "c2": 0.30513176144244125, + "c3": 0.2542764678687006, + "c4": 0.20342117429496065, + "c5": 0.15256588072122063, + "c6": 0.10171058714748063, + "c7": 0.05085529357374 }, "rgb": [86, 146, 138] }, @@ -399768,23 +399768,23 @@ "year": 1811, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": 40.36626371956501, - "c2": 32.192989912496685, - "c3": 30.226719261236013, - "c4": -14.711081825901594, - "c5": -23.737338419883496, - "c6": 0.6691460549383592, - "c7": 15.565116275670476 + "points": { + "c1": 1.9184757028345132, + "c2": 4.906883247233999, + "c3": 37.240222344219376, + "c4": 47.849701408590576, + "c5": 18.734078213506947, + "c6": 28.672609829920845, + "c7": -15.558611862898609 }, - "vertexSeeds": { - "c1": 3.879393049448093, - "c2": 3.870957840223666, - "c3": 3.877344659904834, - "c4": 3.877620246680971, - "c5": 3.9017588945474047, - "c6": 3.8489220556665007, - "c7": 3.8589349394709354 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.6033287101248535, + "c3": 4.66944059177068, + "c4": 3.7355524734165693, + "c5": 2.8016643550623956, + "c6": 1.8677762367082846, + "c7": 0.9338881183541112 }, "rgb": [77, 76, 132] }, @@ -399795,23 +399795,23 @@ "year": 1811, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -22.017227001478233, - "c2": 0.3396933357100558, - "c3": -5.001164746038967, - "c4": -9.877549097060022, - "c5": -13.985308473040345, - "c6": 13.27712867974077, - "c7": 18.098920871331543 + "points": { + "c1": 5.680950001777795, + "c2": -4.81467428130793, + "c3": -22.358422359234673, + "c4": -26.723456090283, + "c5": -22.48490482526651, + "c6": 32.339987018112204, + "c7": 8.981715929676234 }, - "vertexSeeds": { - "c1": 3.4939026584746005, - "c2": 3.923359455174625, - "c3": 3.7632472852832963, - "c4": 3.5970091475673067, - "c5": 3.770884791072149, - "c6": 3.7519707591589087, - "c7": 3.8162202338214506 + "offsets": { + "c1": 6.634304207119741, + "c2": 5.686546463245496, + "c3": 4.738788719371242, + "c4": 3.791030975496997, + "c5": 2.843273231622744, + "c6": 1.8955154877484985, + "c7": 0.9477577438742455 }, "rgb": [238, 201, 159] }, @@ -399822,23 +399822,23 @@ "year": 1811, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -17.720251056160187, - "c2": 4.990090174978334, - "c3": 27.558119559398527, - "c4": -18.23207553850464, - "c5": -31.261997547939664, - "c6": 6.391646309971129, - "c7": 3.144268633384094 + "points": { + "c1": 21.918391185917073, + "c2": -13.464939837540967, + "c3": -11.484576133092713, + "c4": 8.050889751669331, + "c5": 21.813333875059108, + "c6": 25.87208053535857, + "c7": 0.7612314765964783 }, - "vertexSeeds": { - "c1": 4.046927231035772, - "c2": 4.011049892652182, - "c3": 4.10223801532598, - "c4": 4.172097627597159, - "c5": 4.064138843391936, - "c6": 3.9884047386948147, - "c7": 3.9772077596616993 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808602, + "c3": 5.062413314840503, + "c4": 4.049930651872406, + "c5": 3.0374479889042942, + "c6": 2.024965325936196, + "c7": 1.012482662968098 }, "rgb": [238, 201, 159] }, @@ -399849,23 +399849,23 @@ "year": 1811, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 24.564925102553737, - "c2": -27.437483805710016, - "c3": -3.5882887081665196, - "c4": -0.5705629112983459, - "c5": -11.038132489117139, - "c6": 14.125099829929546, - "c7": 28.902405243168687 + "points": { + "c1": 24.61081713748576, + "c2": -11.641513148116896, + "c3": -16.342347379381682, + "c4": -2.2363988068915894, + "c5": -14.068409014960245, + "c6": -2.963797775392223, + "c7": 2.582070894951876 }, - "vertexSeeds": { - "c1": 10.122318528064207, - "c2": 10.331374510581268, - "c3": 10.182347773190056, - "c4": 10.246866088399734, - "c5": 10.31692178328499, - "c6": 10.085311732536749, - "c7": 10.45838519013747 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.006934812760043, + "c3": 12.505779010633358, + "c4": 10.004623208506668, + "c5": 7.5034674063800635, + "c6": 5.002311604253376, + "c7": 2.501155802126688 }, "rgb": [58, 15, 49] }, @@ -399876,23 +399876,23 @@ "year": 1811, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -31.838444112117607, - "c2": -4.3600020286061465, - "c3": 15.79703994256215, - "c4": -30.540411014401155, - "c5": 30.98876567108644, - "c6": 17.143982227067042, - "c7": -31.658297475032402 + "points": { + "c1": -17.371367677915433, + "c2": 34.88465331024547, + "c3": 32.550362287114766, + "c4": 19.768461417893683, + "c5": 18.78598101903821, + "c6": 8.900454154356346, + "c7": -21.20993817427016 }, - "vertexSeeds": { - "c1": 6.766755005083434, - "c2": 7.2156205220333405, - "c3": 7.111758393850061, - "c4": 7.214430322664499, - "c5": 6.477054996597006, - "c6": 6.942432050138745, - "c7": 7.430225992079388 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565888, + "c3": 8.945908460471566, + "c4": 7.156726768377258, + "c5": 5.367545076282937, + "c6": 3.578363384188629, + "c7": 1.789181692094321 }, "rgb": [222, 0, 59] }, @@ -399903,23 +399903,23 @@ "year": 1810, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 22.853731817786766, - "c2": 16.372625828839666, - "c3": 4.677519462272738, - "c4": 20.551797277692067, - "c5": -20.088492823872862, - "c6": -21.83009735700604, - "c7": 20.394908658331858 + "points": { + "c1": -14.079330818173093, + "c2": -18.79967250929859, + "c3": -18.62368612459102, + "c4": -7.943539812439198, + "c5": -16.51044333517513, + "c6": -11.353209096702525, + "c7": 23.05567459765696 }, - "vertexSeeds": { - "c1": 2.9450194686055426, - "c2": 2.9075918386087616, - "c3": 3.0932592604799076, - "c4": 3.20711749247271, - "c5": 2.9933143739892927, - "c6": 3.184103879771781, - "c7": 2.9851435815309904 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837726, + "c3": 3.929727230698106, + "c4": 3.1437817845584872, + "c5": 2.357836338418867, + "c6": 1.5718908922792396, + "c7": 0.7859454461396198 }, "rgb": [238, 201, 159] }, @@ -399930,23 +399930,23 @@ "year": 1811, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -10.718357186136263, - "c2": 4.45526523680115, - "c3": 7.508181374412288, - "c4": 11.736266109081292, - "c5": 18.617767955113443, - "c6": 11.487387467926965, - "c7": -16.746909750990604 + "points": { + "c1": -12.107871150548704, + "c2": -23.548791650778494, + "c3": 24.437145030090292, + "c4": 5.71660697020198, + "c5": -10.740770917212089, + "c6": -3.4857317086612163, + "c7": 19.592603690375554 }, - "vertexSeeds": { - "c1": 12.607245860615336, - "c2": 11.993480109433149, - "c3": 12.590397161174144, - "c4": 12.097248092634715, - "c5": 12.403293117655014, - "c6": 12.529490028406233, - "c7": 11.965574256830413 + "offsets": { + "c1": 21.16504854368932, + "c2": 18.141470180305145, + "c3": 15.11789181692092, + "c4": 12.094313453536747, + "c5": 9.070735090152573, + "c6": 6.047156726768401, + "c7": 3.0235783633841726 }, "rgb": [238, 201, 159] }, @@ -399957,23 +399957,23 @@ "year": 1811, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -25.287407592266348, - "c2": 3.3058671211219703, - "c3": -8.354142900669018, - "c4": 19.680389502326094, - "c5": -2.5671432024513337, - "c6": -25.72250874611855, - "c7": 29.189062638275928 + "points": { + "c1": -25.650633055940276, + "c2": 6.417035472683317, + "c3": -15.992792528477715, + "c4": 35.7337711436891, + "c5": -8.218579618603915, + "c6": -23.797519290931024, + "c7": 9.23813562238876 }, - "vertexSeeds": { - "c1": 2.2249250827992286, - "c2": 2.07802345300157, - "c3": 2.1710915716030756, - "c4": 2.1409443939629633, - "c5": 2.044702462616471, - "c6": 2.2398693201152216, - "c7": 2.058836456819393 + "offsets": { + "c1": 3.8511326860841426, + "c2": 3.3009708737864085, + "c3": 2.7508090614886744, + "c4": 2.2006472491909363, + "c5": 1.6504854368932023, + "c6": 1.1003236245954682, + "c7": 0.5501618122977341 }, "rgb": [86, 146, 138] }, @@ -399984,23 +399984,23 @@ "year": 1811, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 24.986184253839482, - "c2": -31.045824367442, - "c3": 16.705261692029303, - "c4": 10.748414540255816, - "c5": -28.16336208885633, - "c6": -1.1756386607891471, - "c7": -26.660576337463144 + "points": { + "c1": 11.426319244365772, + "c2": -26.18439080581486, + "c3": -13.789224036123194, + "c4": -34.14479426104651, + "c5": 2.617452909907591, + "c6": 16.085044410210685, + "c7": 3.755796271997532 }, - "vertexSeeds": { - "c1": 1.4233254499034693, - "c2": 1.3437826644780246, - "c3": 1.3508439673788761, - "c4": 1.33364293577355, - "c5": 1.3945762397369088, - "c6": 1.2766425087356934, - "c7": 1.404596853550087 + "offsets": { + "c1": 2.4271844660194173, + "c2": 2.0804438280166417, + "c3": 1.73370319001387, + "c4": 1.3869625520110944, + "c5": 1.0402219140083229, + "c6": 0.6934812760055472, + "c7": 0.3467406380027717 }, "rgb": [86, 146, 138] }, @@ -400011,23 +400011,23 @@ "year": 1812, "resistanceReported": false, "duration": 50889600, - "curveSeeds": { - "c1": -4.541410230229808, - "c2": -39.571397759271875, - "c3": 59.61322595439124, - "c4": -17.421870065029395, - "c5": 2.377910424666709, - "c6": 11.972352633533163, - "c7": 26.505121375450372 + "points": { + "c1": 33.56093642790751, + "c2": 26.42807430785554, + "c3": -45.92436180513897, + "c4": 1.4045800988441641, + "c5": 40.14686356955217, + "c6": -38.53403134044177, + "c7": -25.62067307825164 }, - "vertexSeeds": { - "c1": 3.1935568006175017, - "c2": 3.0972370794398576, - "c3": 3.0804894243102208, - "c4": 3.1678259775360154, - "c5": 2.9341715299805204, - "c6": 2.949981864010888, - "c7": 3.014010025470043 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676839, + "c3": 3.8372630605640343, + "c4": 3.0698104484512294, + "c5": 2.3023578363384245, + "c6": 1.5349052242256098, + "c7": 0.7674526121128049 }, "rgb": [222, 0, 59] }, @@ -400038,23 +400038,23 @@ "year": 1811, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 10.380358564487821, - "c2": -40.283503752139715, - "c3": -34.2119985124171, - "c4": 12.39101708616117, - "c5": 20.508942916313337, - "c6": 18.672200796628665, - "c7": -13.584223157908525 + "points": { + "c1": -6.84038328879074, + "c2": -10.16678521928879, + "c3": -31.074588576752042, + "c4": 6.055089439781931, + "c5": 26.220165157716536, + "c6": 25.272080915844555, + "c7": -26.200578000037897 }, - "vertexSeeds": { - "c1": 3.765251256647942, - "c2": 3.731345357518282, - "c3": 3.639616540537199, - "c4": 3.3729909305028327, - "c5": 3.5572365201083076, - "c6": 3.446681617102193, - "c7": 3.3304261898085747 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.4368932038834945, + "c3": 4.530744336569579, + "c4": 3.624595469255663, + "c5": 2.7184466019417473, + "c6": 1.8122977346278315, + "c7": 0.9061488673139158 }, "rgb": [238, 201, 159] }, @@ -400065,23 +400065,23 @@ "year": 1811, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -7.673661604507373, - "c2": -19.505358194254885, - "c3": -10.273833667505581, - "c4": 11.16271322010192, - "c5": 21.22064061428855, - "c6": 22.10171172513696, - "c7": -0.37998370350904764 + "points": { + "c1": -33.5096994543348, + "c2": -23.002972266473783, + "c3": 25.818661377194353, + "c4": 25.440960577932323, + "c5": 5.895000057341321, + "c6": 23.31310674899447, + "c7": 27.922002025788572 }, - "vertexSeeds": { - "c1": 5.354509316847962, - "c2": 5.31038432415991, - "c3": 5.382487086051591, - "c4": 5.3930243908049675, - "c5": 5.3939936643890345, - "c6": 5.363985892976434, - "c7": 5.304651223827759 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.7392510402219, + "c3": 6.449375866851566, + "c4": 5.159500693481232, + "c5": 3.869625520111001, + "c6": 2.5797503467406675, + "c7": 1.2898751733703337 }, "rgb": [222, 0, 59] }, @@ -400092,23 +400092,23 @@ "year": 1811, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 2.3176498514623916, - "c2": 26.443859858758515, - "c3": 25.88774236172779, - "c4": 6.595932028224915, - "c5": -33.556621657820685, - "c6": -19.694447711321416, - "c7": -8.40812513868623 + "points": { + "c1": -14.758862831421983, + "c2": -11.700421980597412, + "c3": -0.08335990944842564, + "c4": -7.555776514371242, + "c5": 25.44597190527673, + "c6": -8.79915107027427, + "c7": -15.038209344618789 }, - "vertexSeeds": { - "c1": 9.938783256065829, - "c2": 9.859594949755929, - "c3": 9.909385032835917, - "c4": 9.775782413177193, - "c5": 9.82509164457427, - "c6": 9.843917094932861, - "c7": 10.065924696004606 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.42441054091538, + "c3": 12.020342117429465, + "c4": 9.616273693943548, + "c5": 7.21220527045769, + "c6": 4.808136846971774, + "c7": 2.4040684234859158 }, "rgb": [238, 201, 159] }, @@ -400119,23 +400119,23 @@ "year": 1811, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -1.9113009420253313, - "c2": 30.14121271644235, - "c3": -12.51338423715492, - "c4": -5.545612005120219, - "c5": 6.944725618717602, - "c6": -7.050289921027247, - "c7": -12.025669937148699 + "points": { + "c1": -29.193784003163923, + "c2": 26.47993516054192, + "c3": 13.002554739955904, + "c4": 16.17102043827125, + "c5": -12.65115663715141, + "c6": -10.82588148557124, + "c7": -4.149268542066324 }, - "vertexSeeds": { - "c1": 5.934040507212542, - "c2": 6.032083353946122, - "c3": 6.182916836099801, - "c4": 6.436269444070432, - "c5": 6.01807879802421, - "c6": 5.850305969373494, - "c7": 5.990644923957452 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675452, + "c3": 7.859454461396212, + "c4": 6.2875635691169744, + "c5": 4.715672676837734, + "c6": 3.1437817845584792, + "c7": 1.5718908922792396 }, "rgb": [238, 201, 159] }, @@ -400146,23 +400146,23 @@ "year": 1811, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -15.25650460468394, - "c2": 21.72450677937384, - "c3": -27.741183028843512, - "c4": -23.57411157980735, - "c5": 1.5008396722263555, - "c6": -29.427985905933138, - "c7": 29.09814189433608 + "points": { + "c1": -8.79084590132964, + "c2": -10.75360586474778, + "c3": -12.172902924088326, + "c4": -27.756240380502405, + "c5": 27.737635624863856, + "c6": 38.44423628996964, + "c7": -7.844598544381753 }, - "vertexSeeds": { - "c1": 3.969356192255846, - "c2": 3.9724198644193804, - "c3": 3.9671919931590574, - "c4": 3.9523701731118988, - "c5": 4.0003936702640415, - "c6": 4.033778795771729, - "c7": 3.9906571273703126 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.7975034674063695, + "c3": 4.831252889505295, + "c4": 3.8650023116042593, + "c5": 2.8987517337031847, + "c6": 1.9325011558021101, + "c7": 0.9662505779010359 }, "rgb": [222, 0, 59] }, @@ -400173,23 +400173,23 @@ "year": 1811, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 10.468990504052499, - "c2": -27.07456943877671, - "c3": -21.285450281251848, - "c4": 5.558993903235226, - "c5": -8.367684862935054, - "c6": -2.09448133791971, - "c7": -27.79679112660825 + "points": { + "c1": 32.84592338295459, + "c2": 5.437466404505365, + "c3": -1.2036062181408056, + "c4": -19.81400276610713, + "c5": -27.379945520838554, + "c6": 31.168381641598778, + "c7": -12.635986025018873 }, - "vertexSeeds": { - "c1": 8.133592564116869, - "c2": 8.132665697337698, - "c3": 8.141679881351362, - "c4": 8.113473065377015, - "c5": 8.236171223484622, - "c6": 8.037843173556828, - "c7": 8.250724968127585 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134534, + "c3": 9.847434119278779, + "c4": 7.877947295423023, + "c5": 5.908460471567267, + "c6": 3.9389736477115114, + "c7": 1.9694868238557557 }, "rgb": [58, 15, 49] }, @@ -400200,23 +400200,23 @@ "year": 1811, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": 4.617230028479799, - "c2": 13.7346269731642, - "c3": 3.7545313966132667, - "c4": 11.457426604672385, - "c5": -0.19519533463153493, - "c6": -11.952648500205544, - "c7": 12.874792921201827 + "points": { + "c1": -6.924194972372836, + "c2": -7.894952303081439, + "c3": 8.151184558156775, + "c4": 15.417259931715801, + "c5": 16.595158994305333, + "c6": -17.356613757870804, + "c7": 5.126656040722292 }, - "vertexSeeds": { - "c1": 10.840876147279877, - "c2": 10.853593752683961, - "c3": 11.39564454545457, - "c4": 11.223487075276829, - "c5": 10.618831576075802, - "c6": 11.159150887330934, - "c7": 11.177434937672059 + "offsets": { + "c1": 19.57928802588997, + "c2": 16.782246879334263, + "c3": 13.985205732778558, + "c4": 11.188164586222822, + "c5": 8.391123439667117, + "c6": 5.594082293111411, + "c7": 2.7970411465557055 }, "rgb": [77, 76, 132] }, @@ -400227,23 +400227,23 @@ "year": 1811, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 16.1228054774939, - "c2": 4.582269465854843, - "c3": -0.319060162311537, - "c4": 3.766438824086574, - "c5": -5.051446757011822, - "c6": -11.59876247968912, - "c7": -3.976670659427171 + "points": { + "c1": 6.534397342859997, + "c2": -10.810061160890521, + "c3": -1.2467924884097457, + "c4": -0.34397084702460745, + "c5": 2.9586105967924254, + "c6": 19.509646301269136, + "c7": -20.390300587412373 }, - "vertexSeeds": { - "c1": 0.14843070674161585, - "c2": 0.13984339679475233, - "c3": 0.1426640657307224, - "c4": 0.15275321567008002, - "c5": 0.1520288539011216, - "c6": 0.15162416093978806, - "c7": 0.15522299781603677 + "offsets": { + "c1": 0.2912621359223301, + "c2": 0.24965325936199728, + "c3": 0.20804438280166448, + "c4": 0.16643550624133116, + "c5": 0.12482662968099839, + "c6": 0.08321775312066558, + "c7": 0.04160887656033279 }, "rgb": [222, 0, 59] }, @@ -400254,23 +400254,23 @@ "year": 1811, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 11.897681139773894, - "c2": 19.377679993587755, - "c3": -26.43671733273542, - "c4": -27.861009308535113, - "c5": -15.080960155643323, - "c6": -14.224596819535414, - "c7": 22.010004361618904 + "points": { + "c1": 17.667685315219224, + "c2": 22.256791978289037, + "c3": -15.995759972922087, + "c4": 1.0706397012298368, + "c5": 3.537290151296652, + "c6": 18.7363368515647, + "c7": -0.8060922578787633 }, - "vertexSeeds": { - "c1": 3.6802928567714273, - "c2": 3.6111291214813876, - "c3": 3.5728048215178103, - "c4": 3.478180564468213, - "c5": 3.628650464085221, - "c6": 3.4574582433848278, - "c7": 3.7066693044813155 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722607, + "c3": 4.438280166435506, + "c4": 3.5506241331484047, + "c5": 2.6629680998613035, + "c6": 1.7753120665742024, + "c7": 0.8876560332871012 }, "rgb": [86, 146, 138] }, @@ -400281,23 +400281,23 @@ "year": 1811, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 16.837437691534475, - "c2": 32.036180651880535, - "c3": -16.62613673001325, - "c4": 3.2260537033631778, - "c5": -14.14902971753244, - "c6": -17.856068515224024, - "c7": -5.9513845589354375 + "points": { + "c1": -10.9298124605012, + "c2": 17.210183105283235, + "c3": -10.703630250614726, + "c4": -22.896472480799613, + "c5": 37.645327112299945, + "c6": 5.397342912819646, + "c7": 18.747016996374633 }, - "vertexSeeds": { - "c1": 17.713972442801364, - "c2": 16.84166730911515, - "c3": 17.106633620238004, - "c4": 17.71101614564047, - "c5": 17.59870252204215, - "c6": 18.04193260177939, - "c7": 17.15576855986424 + "offsets": { + "c1": 30.711974110032365, + "c2": 26.324549237170604, + "c3": 21.93712436430884, + "c4": 17.54969949144708, + "c5": 13.162274618585316, + "c6": 8.774849745723554, + "c7": 4.38742487286179 }, "rgb": [58, 15, 49] }, @@ -400308,23 +400308,23 @@ "year": 1812, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 28.4386787255661, - "c2": -22.118299916954026, - "c3": -25.396289673132415, - "c4": 31.093362445465125, - "c5": -50.93505659062922, - "c6": -14.28710183072176, - "c7": -25.173154336913804 + "points": { + "c1": 42.0845921184683, + "c2": -41.507006204056786, + "c3": 2.5521360488569442, + "c4": 2.81057758010396, + "c5": 42.60992715221723, + "c6": -52.13819231412285, + "c7": 1.8756868530161768 }, - "vertexSeeds": { - "c1": 3.124769817621416, - "c2": 3.162411969453824, - "c3": 2.934610781878783, - "c4": 3.1630563635382134, - "c5": 3.0006952350058294, - "c6": 2.8889128714248002, - "c7": 3.088893754862408 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [238, 201, 159] }, @@ -400335,23 +400335,23 @@ "year": 1811, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 6.601888323159336, - "c2": -34.87654680070752, - "c3": -16.902220681044113, - "c4": 5.036398964363499, - "c5": -29.249763130947198, - "c6": -2.274714298498445, - "c7": -37.83012554091527 + "points": { + "c1": 25.10252659035411, + "c2": -16.789963478332407, + "c3": 6.425637738551991, + "c4": 22.919865101146456, + "c5": 39.018762598931, + "c6": -16.01281517360263, + "c7": -7.611952202087615 }, - "vertexSeeds": { - "c1": 7.0454706608471325, - "c2": 7.052200503975677, - "c3": 7.050560984646199, - "c4": 7.040401721361251, - "c5": 7.06231748038334, - "c6": 7.062643265386359, - "c7": 7.0586112171712205 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629681046, + "c3": 8.437355524734262, + "c4": 6.7498844197874766, + "c5": 5.062413314840355, + "c6": 3.3749422098935704, + "c7": 1.6874711049467852 }, "rgb": [222, 0, 59] }, @@ -400362,23 +400362,23 @@ "year": 1812, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -10.664184133755988, - "c2": 45.210954371626485, - "c3": -20.097740866773442, - "c4": 10.60688257238737, - "c5": 42.53066314657981, - "c6": -30.515231022378572, - "c7": 14.214784019091383 + "points": { + "c1": -10.936514524750187, + "c2": 24.969734274015067, + "c3": -6.688743136788233, + "c4": 12.094837827566614, + "c5": -19.119136741497435, + "c6": 44.61822499306125, + "c7": -7.482406873727172 }, - "vertexSeeds": { - "c1": 9.329285498014057, - "c2": 9.420146507272118, - "c3": 5.465058279320347, - "c4": 7.8389584697117165, - "c5": 10.359005324835016, - "c6": 5.535102418492482, - "c7": 3.4000044925970165 + "offsets": { + "c1": 19.57928802588997, + "c2": 16.78224687933426, + "c3": 13.98520573277855, + "c4": 11.188164586222841, + "c5": 8.39112343966713, + "c6": 5.594082293111418, + "c7": 2.797041146555709 }, "rgb": [86, 146, 138] }, @@ -400389,23 +400389,23 @@ "year": 1812, "resistanceReported": false, "duration": 45014400, - "curveSeeds": { - "c1": -52.480642638341045, - "c2": 44.50947954407252, - "c3": -15.604586813464664, - "c4": 25.069057668053077, - "c5": 36.50979954867421, - "c6": -45.456164134815, - "c7": 52.508421359234376 + "points": { + "c1": -40.56420732132173, + "c2": -50.65081762948161, + "c3": -36.87582232504506, + "c4": 34.5574729150881, + "c5": -3.3618655493254366, + "c6": 38.839703995976635, + "c7": -0.6206897755138527 }, - "vertexSeeds": { - "c1": 10.819225764521098, - "c2": 11.17924328898279, - "c3": 10.88868175425445, - "c4": 10.918347319452668, - "c5": 11.142446980581212, - "c6": 10.700473980005825, - "c7": 11.19608565886259 + "offsets": { + "c1": 18.705501618122977, + "c2": 16.033287101248256, + "c3": 13.361072584373535, + "c4": 10.688858067498813, + "c5": 8.016643550624163, + "c6": 5.344429033749441, + "c7": 2.6722145168747207 }, "rgb": [238, 201, 159] }, @@ -400416,23 +400416,23 @@ "year": 1811, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -9.706310023013474, - "c2": -14.98058825135435, - "c3": -4.779255782523489, - "c4": -25.019027604182334, - "c5": -12.232352810960052, - "c6": 18.823168182843737, - "c7": -11.363905732059301 + "points": { + "c1": 22.00832617993089, + "c2": 13.606615880957797, + "c3": 5.143375176820882, + "c4": -24.54538130257816, + "c5": 26.765880043193874, + "c6": 5.607229031278109, + "c7": -14.007556044877871 }, - "vertexSeeds": { - "c1": 3.372022821010745, - "c2": 3.4465227539155427, - "c3": 3.2417928842867694, - "c4": 3.02951975146786, - "c5": 3.2086627139102246, - "c6": 3.340516021464372, - "c7": 3.065091866524386 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.07628294036061, + "c3": 4.23023578363384, + "c4": 3.3841886269070716, + "c5": 2.538141470180302, + "c6": 1.6920943134535382, + "c7": 0.8460471567267634 }, "rgb": [238, 201, 159] }, @@ -400443,23 +400443,23 @@ "year": 1812, "resistanceReported": false, "duration": 44150400, - "curveSeeds": { - "c1": 47.60689524522918, - "c2": -44.46019274937467, - "c3": 38.0217409563525, - "c4": -20.67645882273336, - "c5": -30.350081425061155, - "c6": 30.284733348070986, - "c7": -18.0596735700869 + "points": { + "c1": -16.92309133092629, + "c2": 17.630729606645886, + "c3": -45.27347056552671, + "c4": 28.454848997477995, + "c5": -42.046936136143614, + "c6": 55.221804765070374, + "c7": -28.35843099338434 }, - "vertexSeeds": { - "c1": 1.5340182948148824, - "c2": 1.4579755684116666, - "c3": 1.4697505789293515, - "c4": 1.5116212861695995, - "c5": 1.4612597127346518, - "c6": 1.5310060295414798, - "c7": 1.5309247271316189 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217755, + "c3": 1.8492834026814637, + "c4": 1.479426722145173, + "c5": 1.1095700416088727, + "c6": 0.7397133610725818, + "c7": 0.3698566805362909 }, "rgb": [86, 146, 138] }, @@ -400470,23 +400470,23 @@ "year": 1811, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 16.603735475056357, - "c2": -12.373005156193685, - "c3": 28.80861759850855, - "c4": -17.294846269005678, - "c5": 5.395645264968952, - "c6": 6.732305218932854, - "c7": -21.8363021471295 + "points": { + "c1": -0.9764230058920447, + "c2": -11.116143127558914, + "c3": 33.5825148590619, + "c4": 15.268824513743944, + "c5": -6.2720296594239855, + "c6": 16.370866825719794, + "c7": -24.743642605901343 }, - "vertexSeeds": { - "c1": 7.178216687401228, - "c2": 7.228497732898402, - "c3": 7.226481076977794, - "c4": 7.240928651408318, - "c5": 7.208086782045935, - "c6": 7.1730716102137, - "c7": 7.23782886542036 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043046, + "c3": 8.645399907535756, + "c4": 6.916319926028639, + "c5": 5.187239944521523, + "c6": 3.4581599630144058, + "c7": 1.729079981507117 }, "rgb": [77, 76, 132] }, @@ -400497,23 +400497,23 @@ "year": 1811, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -0.7511354885540662, - "c2": 26.271202107706152, - "c3": 22.216085181454886, - "c4": -19.922902957687636, - "c5": -7.481213784442513, - "c6": 21.532965504901647, - "c7": -18.906943808759387 + "points": { + "c1": 25.408020911608112, + "c2": 22.010464767910882, + "c3": 22.789491034080655, + "c4": 14.6611282063324, + "c5": -28.462530085526854, + "c6": -26.362576961601665, + "c7": 29.004884512767482 }, - "vertexSeeds": { - "c1": 4.558363489407663, - "c2": 4.516892561674386, - "c3": 4.517525537102556, - "c4": 4.440397444702846, - "c5": 4.668393938534065, - "c6": 4.59490615095046, - "c7": 4.582626081267005 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733703, + "c3": 5.594082293111419, + "c4": 4.475265834489135, + "c5": 3.3564493758668514, + "c6": 2.2376329172445675, + "c7": 1.1188164586222837 }, "rgb": [222, 0, 59] }, @@ -400524,23 +400524,23 @@ "year": 1811, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 7.75671569922099, - "c2": 38.18947506218143, - "c3": -21.48434768886225, - "c4": 34.34661489415704, - "c5": 4.832950013045711, - "c6": -19.48143018825076, - "c7": -8.87125800442869 + "points": { + "c1": -19.199881472868817, + "c2": 29.052273898795477, + "c3": 16.627580935160026, + "c4": -23.02295685885091, + "c5": 30.929036899229274, + "c6": 1.1544250711174726, + "c7": -7.128333552860468 }, - "vertexSeeds": { - "c1": 8.377545505699294, - "c2": 8.379606019770973, - "c3": 8.43104735794466, - "c4": 8.313917741361498, - "c5": 8.303891627560397, - "c6": 8.340789082964706, - "c7": 8.35535644383084 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657443, + "c3": 10.147942672214487, + "c4": 8.118354137771604, + "c5": 6.088765603328722, + "c6": 4.059177068885765, + "c7": 2.0295885344428823 }, "rgb": [58, 15, 49] }, @@ -400551,23 +400551,23 @@ "year": 1812, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": -23.844871260189382, - "c2": 9.013610941098577, - "c3": -17.297223897214725, - "c4": 29.10151185836387, - "c5": -28.045742646237706, - "c6": -22.94761888322038, - "c7": -42.918903855443624 + "points": { + "c1": 16.045709726325192, + "c2": 23.403656273220143, + "c3": -11.368208044296317, + "c4": -8.955803605949768, + "c5": 36.968727577909, + "c6": -18.54775947010023, + "c7": 8.572623620496046 }, - "vertexSeeds": { - "c1": 0.4370592856020071, - "c2": 0.43829791962238, - "c3": 0.45557231524222014, - "c4": 0.45774339188887186, - "c5": 0.46368822022766004, - "c6": 0.45007953559358804, - "c7": 0.45811960284927045 + "offsets": { + "c1": 0.8090614886731391, + "c2": 0.6934812760055482, + "c3": 0.5779010633379559, + "c4": 0.462320850670365, + "c5": 0.3467406380027741, + "c6": 0.23116042533518322, + "c7": 0.11558021266759089 }, "rgb": [77, 76, 132] }, @@ -400578,23 +400578,23 @@ "year": 1811, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -24.36720003677929, - "c2": -3.7148213931590064, - "c3": -0.08726224588370002, - "c4": -7.470033384863285, - "c5": -6.906317660769396, - "c6": 18.69973485082508, - "c7": -3.3608717059748052 + "points": { + "c1": 1.5608135483702519, + "c2": 5.143353927108386, + "c3": 24.053224873664234, + "c4": 21.78231351088442, + "c5": -19.309793448158555, + "c6": -9.715312614261986, + "c7": 11.316356622657565 }, - "vertexSeeds": { - "c1": 9.760638980115953, - "c2": 9.375450142944016, - "c3": 9.766639454003334, - "c4": 9.998432970693184, - "c5": 9.982656430049198, - "c6": 9.596339331267842, - "c7": 9.287733423642141 + "offsets": { + "c1": 16.957928802589, + "c2": 14.535367545076292, + "c3": 12.112806287563572, + "c4": 9.690245030050852, + "c5": 7.267683772538146, + "c6": 4.845122515025426, + "c7": 2.422561257512706 }, "rgb": [86, 146, 138] }, @@ -400605,23 +400605,23 @@ "year": 1811, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": -8.84661091862596, - "c2": -7.602060744187636, - "c3": -6.332482520053221, - "c4": 17.38846676443166, - "c5": -19.14176214327299, - "c6": 15.1900055412185, - "c7": 19.70405910849146 + "points": { + "c1": 21.918310079512136, + "c2": 8.955427469777124, + "c3": 12.559229778749977, + "c4": -2.8918608386986655, + "c5": -7.56459798348736, + "c6": -2.593051269752351, + "c7": -17.686703776659108 }, - "vertexSeeds": { - "c1": 2.935525055313799, - "c2": 3.0259901973177716, - "c3": 3.024465091680121, - "c4": 2.946139516922962, - "c5": 2.9164897177526297, - "c6": 3.046225441436366, - "c7": 3.027333309635984 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355062, + "c3": 3.6523347202958854, + "c4": 2.921867776236708, + "c5": 2.191400832177531, + "c6": 1.460933888118354, + "c7": 0.730466944059177 }, "rgb": [77, 76, 132] }, @@ -400632,23 +400632,23 @@ "year": 1811, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -4.808892629744616, - "c2": -12.851914127951044, - "c3": -19.738213861278236, - "c4": 31.351855649977594, - "c5": -16.27132431392748, - "c6": -18.168250630754233, - "c7": 19.5634939798637 + "points": { + "c1": 26.143125831055407, + "c2": 20.271168234545364, + "c3": -6.586697298276729, + "c4": -4.818452248069388, + "c5": -13.000615670444773, + "c6": -19.350767892010705, + "c7": 26.28106224202658 }, - "vertexSeeds": { - "c1": 8.615844967871176, - "c2": 8.14780845558588, - "c3": 8.381263188199693, - "c4": 8.279271889719531, - "c5": 8.52631675375546, - "c6": 8.015153632839109, - "c7": 8.405746089657455 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938968, + "c3": 10.309754969949147, + "c4": 8.247803975959311, + "c5": 6.185852981969493, + "c6": 4.1239019879796555, + "c7": 2.0619509939898184 }, "rgb": [58, 15, 49] }, @@ -400659,23 +400659,23 @@ "year": 1811, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 14.773398168481783, - "c2": 32.469363429124826, - "c3": 7.25032529729021, - "c4": -13.222303712569452, - "c5": -14.661761562433458, - "c6": 24.200870554335893, - "c7": -17.42902741968922 + "points": { + "c1": 19.751128439411374, + "c2": -11.35557355858623, + "c3": 34.83662269600434, + "c4": 20.640700325462134, + "c5": -27.558207427649606, + "c6": -26.535202237334687, + "c7": 13.407146389003664 }, - "vertexSeeds": { - "c1": 0.24896145996310287, - "c2": 0.24912567236606073, - "c3": 0.23992464646712197, - "c4": 0.24433640949373558, - "c5": 0.24559817184604454, - "c6": 0.2470285978760942, - "c7": 0.23364108015333226 + "offsets": { + "c1": 0.45307443365695793, + "c2": 0.388349514563107, + "c3": 0.32362459546925615, + "c4": 0.2588996763754044, + "c5": 0.1941747572815535, + "c6": 0.12944983818770261, + "c7": 0.0647249190938509 }, "rgb": [222, 0, 59] }, @@ -400686,23 +400686,23 @@ "year": 1811, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -6.465397538907041, - "c2": -5.57038058348455, - "c3": -10.52232171041939, - "c4": 7.028394944187497, - "c5": -31.45229617172544, - "c6": -19.777817799927032, - "c7": 29.272484045745514 + "points": { + "c1": -12.967400080485493, + "c2": 3.9255232443701686, + "c3": 13.95917040173427, + "c4": -8.578431234654172, + "c5": 22.35488810458947, + "c6": -28.614736137244467, + "c7": 6.658278048662872 }, - "vertexSeeds": { - "c1": 11.721031786299868, - "c2": 11.891868373589189, - "c3": 11.555745398338978, - "c4": 11.43221684708973, - "c5": 12.242954259620758, - "c6": 12.212856309182325, - "c7": 12.213854962473132 + "offsets": { + "c1": 20.45307443365696, + "c2": 17.53120665742026, + "c3": 14.609338881183556, + "c4": 11.687471104946805, + "c5": 8.765603328710103, + "c6": 5.843735552473403, + "c7": 2.9218677762367014 }, "rgb": [238, 201, 159] }, @@ -400713,23 +400713,23 @@ "year": 1812, "resistanceReported": false, "duration": 48038400, - "curveSeeds": { - "c1": 6.885220076755694, - "c2": 21.740817204905774, - "c3": 46.952250322167224, - "c4": -33.99193908841589, - "c5": 50.75901386806738, - "c6": -58.81626639605335, - "c7": -1.800147668432821 + "points": { + "c1": 11.653014554461947, + "c2": -56.353794347393425, + "c3": 62.61847623193874, + "c4": -44.20535786349088, + "c5": -45.20347111506104, + "c6": 48.74040575803271, + "c7": -14.253950286806749 }, - "vertexSeeds": { - "c1": 9.972273118758054, - "c2": 9.441388239052749, - "c3": 10.305296229292379, - "c4": 10.348701688145894, - "c5": 9.721760260170871, - "c6": 9.67521886064514, - "c7": 9.940249843975494 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.84049930651873, + "c3": 12.367082755432286, + "c4": 9.893666204345822, + "c5": 7.420249653259357, + "c6": 4.946833102172911, + "c7": 2.4734165510864643 }, "rgb": [58, 15, 49] }, @@ -400740,23 +400740,23 @@ "year": 1811, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 3.6098388329495457, - "c2": 1.7014924407415997, - "c3": -1.2278557426113608, - "c4": -20.221957692993914, - "c5": -5.0209761101554164, - "c6": -20.528681908509594, - "c7": -5.250123983239661 + "points": { + "c1": 9.772550593620089, + "c2": 4.935625114908525, + "c3": -4.330915343093, + "c4": -4.794945613217006, + "c5": 23.183773057778303, + "c6": 11.83643403960879, + "c7": -15.798172545099476 }, - "vertexSeeds": { - "c1": 2.156020807451701, - "c2": 2.2167677650462907, - "c3": 2.1495750876679165, - "c4": 2.3762838171496115, - "c5": 2.1795880580279348, - "c6": 2.144269432648633, - "c7": 2.279759008804776 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.522884882108181, + "c3": 2.9357374017568194, + "c4": 2.348589921405454, + "c5": 1.7614424410540888, + "c6": 1.174294960702727, + "c7": 0.5871474803513617 }, "rgb": [86, 146, 138] }, @@ -400767,23 +400767,23 @@ "year": 1812, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 27.151070393386703, - "c2": 31.784963157728285, - "c3": -36.88809688140542, - "c4": -37.454408607981826, - "c5": -14.68849548899605, - "c6": 22.081056087563994, - "c7": 19.82970419725344 + "points": { + "c1": -6.838379860531624, + "c2": 38.90964142460288, + "c3": 30.135612453519272, + "c4": 37.54177229536148, + "c5": 13.997347494223504, + "c6": 39.49137058784761, + "c7": -24.863031607889724 }, - "vertexSeeds": { - "c1": 8.902098397589429, - "c2": 9.76843698886402, - "c3": 9.459844829848619, - "c4": 9.217484044962593, - "c5": 8.986329286918464, - "c6": 9.399431000606024, - "c7": 9.234993704705122 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352295, + "c3": 11.69671752196024, + "c4": 9.357374017568198, + "c5": 7.018030513176139, + "c6": 4.678687008784099, + "c7": 2.339343504392058 }, "rgb": [222, 0, 59] }, @@ -400794,23 +400794,23 @@ "year": 1812, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 33.041764175168026, - "c2": -16.48226930415737, - "c3": 31.109329287911862, - "c4": 5.247415110438105, - "c5": -6.817195652580331, - "c6": -36.83764107283089, - "c7": -29.395100766309778 + "points": { + "c1": 21.34671547872218, + "c2": -1.1399068563212253, + "c3": 35.27992143623804, + "c4": 22.057666873786324, + "c5": 13.262716395745137, + "c6": 16.98783072415555, + "c7": -17.526517538236437 }, - "vertexSeeds": { - "c1": 7.7685958973089075, - "c2": 7.9905435753338026, - "c3": 7.501093350887988, - "c4": 7.826556865530911, - "c5": 7.963786547358476, - "c6": 7.683497741684414, - "c7": 7.8900048069914845 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852971, + "c3": 9.685621821544155, + "c4": 7.748497457235314, + "c5": 5.811373092926497, + "c6": 3.874248728617657, + "c7": 1.937124364308818 }, "rgb": [58, 15, 49] }, @@ -400821,23 +400821,23 @@ "year": 1812, "resistanceReported": false, "duration": 31795200, - "curveSeeds": { - "c1": -9.786552407034726, - "c2": -17.440895254120388, - "c3": -39.92488437506584, - "c4": 32.36619570987794, - "c5": -31.422859939356265, - "c6": -35.689071038536895, - "c7": -43.86349221643455 + "points": { + "c1": 36.38524162493016, + "c2": -30.321033578324947, + "c3": -21.81834358360241, + "c4": -35.40187934675916, + "c5": 20.84077088791456, + "c6": -15.279721057314958, + "c7": 22.895511900001438 }, - "vertexSeeds": { - "c1": 2.84426605029717, - "c2": 2.9414201804640423, - "c3": 3.123717263532068, - "c4": 2.9088696911609864, - "c5": 2.9564947645656576, - "c6": 2.949694885067589, - "c7": 2.950268412175883 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918168, + "c3": 3.9759593157651394, + "c4": 3.180767452612115, + "c5": 2.3855755894590867, + "c6": 1.5903837263060574, + "c7": 0.7951918631530287 }, "rgb": [77, 76, 132] }, @@ -400848,23 +400848,23 @@ "year": 1811, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 12.005188784593656, - "c2": -19.00125939141985, - "c3": -8.979402393232903, - "c4": 21.992634858215958, - "c5": -0.13244299741354482, - "c6": 25.754011497834938, - "c7": 18.48068908064741 + "points": { + "c1": 0.007535533222700508, + "c2": -10.429214396286156, + "c3": 2.067361732860128, + "c4": 10.833961606393963, + "c5": 16.40682644000742, + "c6": 18.66424959303845, + "c7": -7.926497726811988 }, - "vertexSeeds": { - "c1": 9.982436550258196, - "c2": 10.148262499706119, - "c3": 10.134513613214649, - "c4": 10.152084104807399, - "c5": 10.294501094006902, - "c6": 10.412906043635097, - "c7": 10.156340811618247 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323154, + "c3": 12.829403606102654, + "c4": 10.263522884882114, + "c5": 7.697642163661577, + "c6": 5.1317614424410385, + "c7": 2.5658807212205383 }, "rgb": [238, 201, 159] }, @@ -400875,23 +400875,23 @@ "year": 1811, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 32.320450092373804, - "c2": 19.406130084917244, - "c3": -26.713811886411698, - "c4": 6.602617876004025, - "c5": 21.92463291703357, - "c6": -2.7151980754579625, - "c7": 33.24335146382701 + "points": { + "c1": -30.223718597836964, + "c2": 6.255464122312752, + "c3": -18.19915751145971, + "c4": 8.70650112405179, + "c5": -24.04323156967829, + "c6": 26.437304520890073, + "c7": 24.77568129754122 }, - "vertexSeeds": { - "c1": 6.684172225284099, - "c2": 6.7110962104999565, - "c3": 6.713639177068044, - "c4": 6.70329361717459, - "c5": 6.702610352085648, - "c6": 6.722492915243216, - "c7": 6.703985863143165 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.62552011095705, + "c3": 8.021266759130928, + "c4": 6.417013407304807, + "c5": 4.812760055478365, + "c6": 3.2085067036522434, + "c7": 1.6042533518261217 }, "rgb": [58, 15, 49] }, @@ -400902,23 +400902,23 @@ "year": 1811, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 21.680046453160024, - "c2": -28.80237450101473, - "c3": 18.991868782751972, - "c4": 27.982329450737268, - "c5": 28.92086456814124, - "c6": 24.08868880657652, - "c7": 26.681406363880008 + "points": { + "c1": 10.71752119170273, + "c2": 10.497117411010215, + "c3": 21.67927767177953, + "c4": 30.36774679029918, + "c5": -2.4889208275119437, + "c6": -11.753422001462681, + "c7": -5.757554550095886 }, - "vertexSeeds": { - "c1": 14.786236055459325, - "c2": 14.798416627183826, - "c3": 14.789455877664878, - "c4": 14.805384352869538, - "c5": 14.795352440570323, - "c6": 14.748985215546126, - "c7": 14.791923284139433 + "offsets": { + "c1": 24.75728155339806, + "c2": 21.220527045770005, + "c3": 17.68377253814139, + "c4": 14.147018030513339, + "c5": 10.61026352288472, + "c6": 7.073509015256669, + "c7": 3.5367545076280527 }, "rgb": [222, 0, 59] }, @@ -400929,23 +400929,23 @@ "year": 1812, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -6.111948270415631, - "c2": -1.7817655952416018, - "c3": -13.26149913658995, - "c4": -20.40043812764422, - "c5": 29.75594825197487, - "c6": 27.908710771150453, - "c7": -18.773091449707554 + "points": { + "c1": 24.49288520715453, + "c2": -23.77491351427274, + "c3": 11.460725839988854, + "c4": 21.429877938843426, + "c5": 25.081408209233928, + "c6": 5.070596887782962, + "c7": 26.254029041988403 }, - "vertexSeeds": { - "c1": 5.595973917092297, - "c2": 5.582688156648909, - "c3": 5.25056109449744, - "c4": 5.101164856774512, - "c5": 5.1079718164348105, - "c6": 5.397250152262819, - "c7": 5.158482219919253 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744792, + "c3": 6.749884419787335, + "c4": 5.39990753582986, + "c5": 4.049930651872406, + "c6": 2.69995376791493, + "c7": 1.349976883957456 }, "rgb": [58, 15, 49] }, @@ -400956,23 +400956,23 @@ "year": 1811, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -0.9174323249930083, - "c2": -7.209856652661166, - "c3": 9.097436803840534, - "c4": 2.314751725380443, - "c5": -20.87815478004201, - "c6": -29.018212791873356, - "c7": 23.100849745686798 + "points": { + "c1": -25.504714562342883, + "c2": 21.92134409947647, + "c3": 15.450771319173768, + "c4": -17.225804546574686, + "c5": -20.265213411451825, + "c6": 26.708971697920717, + "c7": -27.819877628295504 }, - "vertexSeeds": { - "c1": 6.7833563622475275, - "c2": 6.724252473941988, - "c3": 6.883974336359639, - "c4": 6.7332388509772505, - "c5": 6.723029478787519, - "c6": 6.723056722507851, - "c7": 6.811000296808725 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359205, + "c3": 8.252427184466047, + "c4": 6.601941747572825, + "c5": 4.951456310679602, + "c6": 3.3009708737864454, + "c7": 1.6504854368932227 }, "rgb": [222, 0, 59] }, @@ -400983,23 +400983,23 @@ "year": 1811, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -4.582687394917745, - "c2": 2.283734786692598, - "c3": 24.620734952756933, - "c4": 23.640861184740707, - "c5": 24.8203111060279, - "c6": 8.92924157376963, - "c7": 5.341595657592215 + "points": { + "c1": 0.8567872417060194, + "c2": 18.19679535081604, + "c3": 27.647520425042465, + "c4": -5.999614305195969, + "c5": 12.0784428553931, + "c6": -2.4252501489324274, + "c7": -6.538232338655067 }, - "vertexSeeds": { - "c1": 2.4682250165672546, - "c2": 2.5011306949206062, - "c3": 2.698450372315117, - "c4": 2.4596828904663814, - "c5": 2.714386690848747, - "c6": 2.771904550429842, - "c7": 2.597538358059548 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832175, + "c3": 3.351826167360144, + "c4": 2.6814609338881192, + "c5": 2.0110957004160874, + "c6": 1.340730466944056, + "c7": 0.6703652334720318 }, "rgb": [86, 146, 138] }, @@ -401010,23 +401010,23 @@ "year": 1811, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 2.2989508451031817, - "c2": 3.930517670976684, - "c3": -13.109935761793764, - "c4": -18.250798150342636, - "c5": -16.73932021668857, - "c6": 11.00871772160492, - "c7": -27.150058712693735 + "points": { + "c1": -15.162437304537718, + "c2": -9.195920116581597, + "c3": -16.61331610939895, + "c4": 14.457194950483757, + "c5": 20.80096610429589, + "c6": 11.182943285071115, + "c7": 21.02973187268554 }, - "vertexSeeds": { - "c1": 3.422092988840462, - "c2": 3.281860348061536, - "c3": 3.5385368696745343, - "c4": 3.257631601589003, - "c5": 3.306476082985292, - "c6": 3.7844099524413077, - "c7": 3.217601674465808 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923719, + "c3": 4.553860379103098, + "c4": 3.6430883032824797, + "c5": 2.7323162274618573, + "c6": 1.8215441516412398, + "c7": 0.9107720758206221 }, "rgb": [77, 76, 132] }, @@ -401037,23 +401037,23 @@ "year": 1811, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -24.77857333327982, - "c2": -30.257623458464607, - "c3": 2.604343813720213, - "c4": -10.46413985918879, - "c5": -17.182428799249234, - "c6": -17.650034921382293, - "c7": 16.835364246975423 + "points": { + "c1": -12.800321901046658, + "c2": -32.5824780017222, + "c3": -13.19468622906765, + "c4": 1.989856966276875, + "c5": -26.178784074286902, + "c6": 0.1699943979196803, + "c7": -12.344647097187302 }, - "vertexSeeds": { - "c1": 6.5912567637107555, - "c2": 6.588993528568106, - "c3": 6.605008071977486, - "c4": 6.59655315755959, - "c5": 6.590422913136911, - "c6": 6.595197521704193, - "c7": 6.59950705598675 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715404, + "c3": 7.882570503929817, + "c4": 6.306056403143603, + "c5": 4.729542302358015, + "c6": 3.1530282015718014, + "c7": 1.5765141007862142 }, "rgb": [77, 76, 132] }, @@ -401064,23 +401064,23 @@ "year": 1811, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 23.346614744572705, - "c2": 17.461420775151076, - "c3": 27.011768345478508, - "c4": -25.947790998822846, - "c5": -4.344953659824927, - "c6": -14.385962708874617, - "c7": 2.829248143086623 + "points": { + "c1": -16.89380560656602, + "c2": -2.896704892298029, + "c3": 13.706315702200499, + "c4": 25.211718241829608, + "c5": -2.878897519836631, + "c6": -7.008061515602382, + "c7": -2.0750506073195325 }, - "vertexSeeds": { - "c1": 11.286131748546127, - "c2": 11.931489705256057, - "c3": 10.931407837225985, - "c4": 11.423728656143187, - "c5": 11.793772076581272, - "c6": 11.569663776566742, - "c7": 12.37500076948605 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.753120665742035, + "c3": 14.794267221451676, + "c4": 11.835413777161346, + "c5": 8.876560332871017, + "c6": 5.917706888580689, + "c7": 2.958853444290329 }, "rgb": [222, 0, 59] }, @@ -401091,23 +401091,23 @@ "year": 1811, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 10.523216308640244, - "c2": -22.958434334846846, - "c3": 16.229996239058103, - "c4": -10.409291330242219, - "c5": -23.3212235068821, - "c6": -9.799865371529004, - "c7": 9.800454604328998 + "points": { + "c1": 23.54726872897004, + "c2": 24.108210402298972, + "c3": 10.788343630598412, + "c4": 6.493074315314814, + "c5": -20.779097012627986, + "c6": 19.10596668599682, + "c7": -18.733025061910453 }, - "vertexSeeds": { - "c1": 2.8941464656861053, - "c2": 3.131064754016517, - "c3": 3.0046707325226345, - "c4": 2.959365945652886, - "c5": 2.8774925851661743, - "c6": 2.8195579609210712, - "c7": 2.9908730430757733 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596392, + "c3": 3.791030975496991, + "c4": 3.032824780397597, + "c5": 2.274618585298196, + "c6": 1.5164123901987947, + "c7": 0.7582061950994011 }, "rgb": [238, 201, 159] }, @@ -401118,23 +401118,23 @@ "year": 1811, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -26.120005353142332, - "c2": -27.038523856734507, - "c3": -0.06400171053634196, - "c4": -22.74146252872244, - "c5": -19.34758962500522, - "c6": -26.433620935614016, - "c7": 3.8878647682390977 + "points": { + "c1": -32.5444774223338, + "c2": 29.30525556364355, + "c3": -8.88757987895389, + "c4": -20.446180477946967, + "c5": 30.876712038276345, + "c6": -17.01939068370791, + "c7": -29.639108950803283 }, - "vertexSeeds": { - "c1": 5.6702796499284185, - "c2": 5.265147209480348, - "c3": 5.438903838317002, - "c4": 5.684116197897084, - "c5": 5.416898013812814, - "c6": 5.247881093689827, - "c7": 5.44299196351508 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.238557558945912, + "c3": 6.8654646324549295, + "c4": 5.492371705963947, + "c5": 4.119278779472946, + "c6": 2.7461858529819647, + "c7": 1.3730929264909824 }, "rgb": [222, 0, 59] }, @@ -401145,23 +401145,23 @@ "year": 1811, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -2.029648898846496, - "c2": -24.395111500438617, - "c3": -18.547642277938877, - "c4": -25.800287904157557, - "c5": 14.41066803704246, - "c6": -12.16400070955996, - "c7": 4.37754847068754 + "points": { + "c1": 22.693875937145947, + "c2": 30.300330983068108, + "c3": 12.176489456991362, + "c4": 13.118262185033885, + "c5": 3.460429851734439, + "c6": 28.974997580717066, + "c7": -19.143745528448484 }, - "vertexSeeds": { - "c1": 0.41904756019588696, - "c2": 0.40722253468252617, - "c3": 0.42694435515194895, - "c4": 0.38926871874049396, - "c5": 0.39404957956543235, - "c6": 0.4008714359018466, - "c7": 0.4251476281453527 + "offsets": { + "c1": 0.7443365695792881, + "c2": 0.6380027739251044, + "c3": 0.5316689782709195, + "c4": 0.42533518261673586, + "c5": 0.3190013869625522, + "c6": 0.2126675913083686, + "c7": 0.10633379565418363 }, "rgb": [58, 15, 49] }, @@ -401172,23 +401172,23 @@ "year": 1811, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 24.020183864957513, - "c2": -24.28830445592985, - "c3": -25.742625136234928, - "c4": -17.376524023369797, - "c5": 26.451901478474785, - "c6": 14.105147988201072, - "c7": 7.932711424072178 + "points": { + "c1": 18.026153019727154, + "c2": 12.582924901803132, + "c3": -2.526897112978599, + "c4": 0.5003991211799459, + "c5": -1.5125979578690831, + "c6": 2.6756983496051063, + "c7": -29.34181181939662 }, - "vertexSeeds": { - "c1": 10.746615609378084, - "c2": 10.64594358710577, - "c3": 10.862518426835019, - "c4": 10.935100708081213, - "c5": 10.79719701224229, - "c6": 10.745427380977175, - "c7": 10.580024570023372 + "offsets": { + "c1": 18.41423948220065, + "c2": 15.78363384188628, + "c3": 13.153028201571912, + "c4": 10.522422561257542, + "c5": 7.891816920943107, + "c6": 5.261211280628738, + "c7": 2.630605640314369 }, "rgb": [222, 0, 59] }, @@ -401199,23 +401199,23 @@ "year": 1811, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -4.040842411596742, - "c2": -2.8461340656798164, - "c3": 0.5475993012361151, - "c4": -17.373529158728807, - "c5": -20.90159727137905, - "c6": 1.71694397311175, - "c7": -21.255397573552422 + "points": { + "c1": -1.4403586016370227, + "c2": -26.078951787339815, + "c3": -22.277184918811344, + "c4": 18.611245607914533, + "c5": -4.176835481837262, + "c6": 23.889198593136747, + "c7": 11.345804118916028 }, - "vertexSeeds": { - "c1": 5.55145290526026, - "c2": 5.320426489247361, - "c3": 5.633856794637851, - "c4": 5.278132797194076, - "c5": 5.58073870474695, - "c6": 5.6172205254770775, - "c7": 5.041660368177166 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704575, + "c3": 6.72676837725381, + "c4": 5.3814147018030445, + "c5": 4.03606102635228, + "c6": 2.69070735090153, + "c7": 1.345353675450765 }, "rgb": [77, 76, 132] }, @@ -401226,23 +401226,23 @@ "year": 1811, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -22.976868944661298, - "c2": 15.99404154608903, - "c3": -20.213707721567857, - "c4": -10.514466651094487, - "c5": 0.43175322975849184, - "c6": 14.784882904725762, - "c7": -8.662199561649647 + "points": { + "c1": 0.8912078442651037, + "c2": 22.2068892690855, + "c3": -1.9422589793463594, + "c4": -9.450660234970616, + "c5": 2.541905234580735, + "c6": 22.379875119368876, + "c7": -8.19026897307264 }, - "vertexSeeds": { - "c1": 3.1329818407800873, - "c2": 3.1488223840358542, - "c3": 3.102672752364382, - "c4": 3.1303245672257938, - "c5": 3.098737227196406, - "c6": 3.144168784337374, - "c7": 3.0955804945758394 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596378, + "c3": 3.791030975497, + "c4": 3.032824780397585, + "c5": 2.274618585298208, + "c6": 1.5164123901987925, + "c7": 0.7582061950994151 }, "rgb": [58, 15, 49] }, @@ -401253,23 +401253,23 @@ "year": 1811, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": -1.49219493615011, - "c2": -11.033153074284506, - "c3": 2.323940820456265, - "c4": 8.81946933144176, - "c5": -8.409400144347114, - "c6": -0.9681620661905477, - "c7": -1.5066698104836753 + "points": { + "c1": -8.076247949517553, + "c2": 6.972042818615485, + "c3": -3.8586488354628976, + "c4": 9.70837593821047, + "c5": -10.446120429416014, + "c6": 2.720995550093832, + "c7": -16.681268373860725 }, - "vertexSeeds": { - "c1": 7.332837410191871, - "c2": 7.032608149800358, - "c3": 7.404978341535325, - "c4": 7.268024486122565, - "c5": 7.002539937373616, - "c6": 6.9690610595226, - "c7": 7.149134305218497 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646316, + "c3": 8.992140545538607, + "c4": 7.193712436430878, + "c5": 5.395284327323169, + "c6": 3.596856218215439, + "c7": 1.7984281091077097 }, "rgb": [238, 201, 159] }, @@ -401280,23 +401280,23 @@ "year": 1811, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 18.444235920668163, - "c2": -6.500358796063516, - "c3": -26.75084335818251, - "c4": -16.99636449656022, - "c5": -16.166101579999722, - "c6": -22.924243031832084, - "c7": -5.887443916176693 + "points": { + "c1": 13.902713834712841, + "c2": -14.46595055992407, + "c3": -0.47819038560155036, + "c4": -15.217944944163618, + "c5": -5.407106105447124, + "c6": 23.06409723608489, + "c7": -8.264985872504184 }, - "vertexSeeds": { - "c1": 3.5500320415075586, - "c2": 3.6970671007772777, - "c3": 3.712463463930225, - "c4": 3.7897577134395943, - "c5": 3.5962483019528, - "c6": 3.666154407869522, - "c7": 3.902971878116578 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.7697642163661556, + "c3": 4.8081368469717995, + "c4": 3.8465094775774373, + "c5": 2.8848821081830813, + "c6": 1.9232547387887187, + "c7": 0.9616273693943629 }, "rgb": [222, 0, 59] }, @@ -401307,23 +401307,23 @@ "year": 1811, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -4.662654424339664, - "c2": 4.797597442007508, - "c3": -5.2969357064829765, - "c4": -18.506814045422054, - "c5": -4.435445652287957, - "c6": -15.445858148452963, - "c7": -0.5010099814119506 + "points": { + "c1": 17.751998242344794, + "c2": -2.0624989216624847, + "c3": -14.051740839655219, + "c4": 6.064023501791468, + "c5": -1.3916978895685155, + "c6": 15.308435050621046, + "c7": 23.434389178043244 }, - "vertexSeeds": { - "c1": 13.55223937908738, - "c2": 13.452448620513227, - "c3": 13.568904119991046, - "c4": 13.554597356341766, - "c5": 13.473609381348302, - "c6": 13.377100105999956, - "c7": 13.530432013265587 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.417475728155434, + "c3": 16.181229773462753, + "c4": 12.94498381877029, + "c5": 9.70873786407761, + "c6": 6.472491909385145, + "c7": 3.2362459546926794 }, "rgb": [238, 201, 159] }, @@ -401334,23 +401334,23 @@ "year": 1812, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 10.577417410959953, - "c2": -10.072878091669793, - "c3": -20.958487796663984, - "c4": -13.882793624961305, - "c5": 0.6923631140433812, - "c6": -28.93243964213399, - "c7": -13.522314070725514 + "points": { + "c1": -28.448367990393514, + "c2": -10.35450254497881, + "c3": -16.903446778158102, + "c4": -2.4757128939724637, + "c5": -5.374913297923314, + "c6": 17.220887185588367, + "c7": 16.7325758336143 }, - "vertexSeeds": { - "c1": 0.4561278160293306, - "c2": 0.43456984504389345, - "c3": 0.4559883560092083, - "c4": 0.4638277178560806, - "c5": 0.44609123645688503, - "c6": 0.4660190962383675, - "c7": 0.46604655325710925 + "offsets": { + "c1": 0.8090614886731391, + "c2": 0.6934812760055482, + "c3": 0.5779010633379559, + "c4": 0.462320850670365, + "c5": 0.3467406380027741, + "c6": 0.23116042533518322, + "c7": 0.11558021266759089 }, "rgb": [222, 0, 59] }, @@ -401361,23 +401361,23 @@ "year": 1812, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -34.26699477502396, - "c2": 23.123230743987868, - "c3": 24.136567283145475, - "c4": 20.869963315292587, - "c5": -9.524390190353493, - "c6": 35.219559435106596, - "c7": -41.01145349878328 + "points": { + "c1": -19.6710186790067, + "c2": -24.001270788975148, + "c3": -2.775622246451242, + "c4": -19.455393180309965, + "c5": 26.084481465728935, + "c6": -11.814947371784754, + "c7": 11.137985976786446 }, - "vertexSeeds": { - "c1": 2.616343430537783, - "c2": 2.5491832691785, - "c3": 2.566697090743718, - "c4": 2.569993358589688, - "c5": 2.5803337911676185, - "c6": 2.551749659478903, - "c7": 2.621398320586155 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.772538141470167, + "c3": 3.143781784558488, + "c4": 2.515025427646778, + "c5": 1.886269070735099, + "c6": 1.257512713823389, + "c7": 0.6287563569116789 }, "rgb": [86, 146, 138] }, @@ -401388,23 +401388,23 @@ "year": 1812, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -35.70254798590862, - "c2": -34.996161467926534, - "c3": -26.009507953539753, - "c4": -13.7537586784454, - "c5": 32.57323788308858, - "c6": 33.52228816720759, - "c7": 17.87132760984658 + "points": { + "c1": -10.731367404951552, + "c2": 10.2231807646139, + "c3": -26.506610343801107, + "c4": 0.9882994210077882, + "c5": -33.761130058016604, + "c6": -34.96066396049164, + "c7": 2.589799343451574 }, - "vertexSeeds": { - "c1": 11.198920912264652, - "c2": 11.203877377507393, - "c3": 11.329686569703302, - "c4": 11.60982769887124, - "c5": 11.11120733232634, - "c6": 11.676122959219096, - "c7": 11.66194238119547 + "offsets": { + "c1": 19.611650485436893, + "c2": 16.80998613037448, + "c3": 14.008321775312067, + "c4": 11.206657420249654, + "c5": 8.40499306518724, + "c6": 5.603328710124827, + "c7": 2.8016643550624134 }, "rgb": [222, 0, 59] }, @@ -401415,23 +401415,23 @@ "year": 1811, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -25.001546880994535, - "c2": 1.4516143009454616, - "c3": 19.84484420903626, - "c4": 24.680087147666384, - "c5": -16.541541561417223, - "c6": 1.5433827486842269, - "c7": -10.788384537939407 + "points": { + "c1": 1.478229068039191, + "c2": -3.0608613108539373, + "c3": 10.892918249866419, + "c4": -8.204982826953536, + "c5": -4.371294477562213, + "c6": -6.637304161974395, + "c7": 22.495303642854225 }, - "vertexSeeds": { - "c1": 3.252488162401241, - "c2": 3.2530776452545287, - "c3": 3.262047085702942, - "c4": 3.2460051910232988, - "c5": 3.255781585740087, - "c6": 3.255609863171055, - "c7": 3.246527099627857 + "offsets": { + "c1": 5.469255663430421, + "c2": 4.687933425797526, + "c3": 3.906611188164631, + "c4": 3.125288950531736, + "c5": 2.3439667128986854, + "c6": 1.5626444752657902, + "c7": 0.7813222376328951 }, "rgb": [222, 0, 59] }, @@ -401442,23 +401442,23 @@ "year": 1811, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 24.095864531888175, - "c2": 22.093181295477827, - "c3": 15.11173863645638, - "c4": 15.73283991000661, - "c5": 15.135906207475145, - "c6": 10.27623914683808, - "c7": -2.1904255474857663 + "points": { + "c1": 5.800533083598175, + "c2": 15.12633109354131, + "c3": -6.715665906472182, + "c4": -3.5828171006504483, + "c5": -12.176329396426425, + "c6": 20.084580504928013, + "c7": -23.976283758031563 }, - "vertexSeeds": { - "c1": 3.2403120819528644, - "c2": 3.1275531816697866, - "c3": 2.960680298996952, - "c4": 3.291060882586506, - "c5": 3.2773357089392574, - "c6": 3.3266545729875596, - "c7": 3.2973577814723813 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038835, + "c3": 4.045307443365695, + "c4": 3.236245954692554, + "c5": 2.4271844660194137, + "c6": 1.6181229773462733, + "c7": 0.8090614886731332 }, "rgb": [58, 15, 49] }, @@ -401469,23 +401469,23 @@ "year": 1812, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 18.522092710345458, - "c2": -9.107860407641688, - "c3": -1.623720435960447, - "c4": -24.721153098458, - "c5": -3.457551723952971, - "c6": 28.021516182524177, - "c7": -22.901896614532333 + "points": { + "c1": 24.382547136504158, + "c2": -6.054780200418538, + "c3": 0.49361139523029607, + "c4": -11.17730775531955, + "c5": 1.990469245790507, + "c6": 18.886343148857236, + "c7": 31.514371700968667 }, - "vertexSeeds": { - "c1": 9.435692309072236, - "c2": 9.848557323638236, - "c3": 8.199034280672494, - "c4": 8.875046901022596, - "c5": 8.972850397338002, - "c6": 9.789969953502624, - "c7": 8.383201322074786 + "offsets": { + "c1": 16.472491909385116, + "c2": 14.119278779472959, + "c3": 11.7660656495608, + "c4": 9.412852519648643, + "c5": 7.059639389736485, + "c6": 4.706426259824326, + "c7": 2.353213129912168 }, "rgb": [77, 76, 132] }, @@ -401496,23 +401496,23 @@ "year": 1812, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -25.77194948893255, - "c2": -1.1601311431271064, - "c3": 14.731868027104419, - "c4": -6.00612972278358, - "c5": -26.91247860225242, - "c6": 11.85156768033277, - "c7": -27.498606689226417 + "points": { + "c1": -1.7920646835178502, + "c2": 28.329592813513635, + "c3": 27.414966679809794, + "c4": 15.92226170424108, + "c5": -15.916402992295065, + "c6": -28.68785832345971, + "c7": 30.66115394985637 }, - "vertexSeeds": { - "c1": 8.460414338999874, - "c2": 7.957560310630377, - "c3": 8.632602041185509, - "c4": 8.93081258819759, - "c5": 7.936311122964405, - "c6": 8.129322570630015, - "c7": 8.09427013614144 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.81553398058252, + "c3": 10.679611650485445, + "c4": 8.543689320388353, + "c5": 6.40776699029126, + "c6": 4.271844660194183, + "c7": 2.1359223300970913 }, "rgb": [222, 0, 59] }, @@ -401523,23 +401523,23 @@ "year": 1812, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 6.9641160350282405, - "c2": -23.121497241734147, - "c3": -31.52051559829962, - "c4": -2.8607527147446383, - "c5": 5.384257383786192, - "c6": -7.941587785242902, - "c7": 26.807167995384376 + "points": { + "c1": 33.91863506393496, + "c2": 13.288823445397597, + "c3": -0.7998524978472403, + "c4": -28.837856817744644, + "c5": 20.802783521375964, + "c6": -28.456649587978376, + "c7": -13.1348747595061 }, - "vertexSeeds": { - "c1": 2.156735751295337, - "c2": 2.156735751295337, - "c3": 2.156735751295337, - "c4": 2.156735751295337, - "c5": 2.156735751295337, - "c6": 2.156735751295337, - "c7": 2.156735751295337 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -401550,23 +401550,23 @@ "year": 1812, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -4.827940416970314, - "c2": 19.079909927523936, - "c3": 14.167223508905785, - "c4": -17.220124894734713, - "c5": -18.89182791957857, - "c6": 12.387751772794424, - "c7": -26.81626184222192 + "points": { + "c1": -13.665708040759148, + "c2": -24.03087286331869, + "c3": 22.593077569121583, + "c4": 10.830615330448886, + "c5": 27.82609182125126, + "c6": -13.1362130787744, + "c7": 2.5757510493138014 }, - "vertexSeeds": { - "c1": 4.001868287190708, - "c2": 4.066034683403455, - "c3": 4.0427851962011285, - "c4": 4.2467823843008, - "c5": 4.190754571233675, - "c6": 4.007173869294956, - "c7": 4.137395937798359 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848825, + "c3": 5.085529357374025, + "c4": 4.0684234858992125, + "c5": 3.0513176144244123, + "c6": 2.0342117429496125, + "c7": 1.0171058714747998 }, "rgb": [58, 15, 49] }, @@ -401577,23 +401577,23 @@ "year": 1812, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 0.9719034504585622, - "c2": -1.3644609654136062, - "c3": -6.348103122289018, - "c4": -5.246043100020444, - "c5": 11.275369573696786, - "c6": -27.72400708166338, - "c7": 42.15728592186573 + "points": { + "c1": -23.45182761543869, + "c2": 47.419370151996766, + "c3": 34.292186473672565, + "c4": 27.439496220664445, + "c5": -11.046379043801764, + "c6": -5.992286976347458, + "c7": 12.95291918784423 }, - "vertexSeeds": { - "c1": 7.182307481262208, - "c2": 7.17312761775671, - "c3": 7.188805325039583, - "c4": 7.229698294618557, - "c5": 7.167584588113684, - "c6": 7.1431151349548685, - "c7": 7.237091905435878 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163641, + "c3": 8.714748035136415, + "c4": 6.971798428109118, + "c5": 5.2288488210818205, + "c6": 3.4858992140545935, + "c7": 1.7429496070272967 }, "rgb": [77, 76, 132] }, @@ -401604,23 +401604,23 @@ "year": 1812, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 27.487794088904813, - "c2": -26.586276508595592, - "c3": -2.5746457447427353, - "c4": 18.947164772252144, - "c5": 4.628757034470283, - "c6": -21.26548447902543, - "c7": 15.543888165915519 + "points": { + "c1": 5.945810965471942, + "c2": -7.803988990332108, + "c3": -31.068216332339407, + "c4": 26.91916367404302, + "c5": 4.567005449730281, + "c6": 30.99356976081441, + "c7": 29.970036260231886 }, - "vertexSeeds": { - "c1": 5.440467503326182, - "c2": 5.1092370734724035, - "c3": 5.053333778640946, - "c4": 7.204027343519998, - "c5": 6.364121361509408, - "c6": 5.552478672138047, - "c7": 5.048840018869768 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.0124826629681, + "c3": 9.177068885806747, + "c4": 7.3416551086454, + "c5": 5.50624133148405, + "c6": 3.6708275543226967, + "c7": 1.8354137771613483 }, "rgb": [77, 76, 132] }, @@ -401631,23 +401631,23 @@ "year": 1812, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 23.91683369244824, - "c2": -23.637550216793215, - "c3": 0.5845770563111934, - "c4": -6.814468686638548, - "c5": -11.424622445935766, - "c6": 12.478770811539068, - "c7": 1.2888284877475868 + "points": { + "c1": -22.858104214551325, + "c2": -1.7614838182854697, + "c3": 19.85350902304364, + "c4": 12.257715602415121, + "c5": 23.101377691326686, + "c6": -6.9109132790663885, + "c7": 18.595724597572715 }, - "vertexSeeds": { - "c1": 9.528064955835553, - "c2": 9.036747283461674, - "c3": 9.159559973915146, - "c4": 9.89703615346619, - "c5": 9.27004927188255, - "c6": 9.796582453586778, - "c7": 9.515214056910217 + "offsets": { + "c1": 17.184466019417478, + "c2": 14.729542302357837, + "c3": 12.2746185852982, + "c4": 9.819694868238559, + "c5": 7.3647711511789185, + "c6": 4.909847434119279, + "c7": 2.4549237170596396 }, "rgb": [77, 76, 132] }, @@ -401658,23 +401658,23 @@ "year": 1812, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -8.490707483364652, - "c2": -10.010820838904092, - "c3": -6.884251676706512, - "c4": 0.24519249602920468, - "c5": -23.47388085614401, - "c6": 17.660681621629706, - "c7": 19.78070450570099 + "points": { + "c1": -23.281753836095405, + "c2": -15.94859855879283, + "c3": -24.369913393900887, + "c4": 3.713477463770367, + "c5": -11.013701001824348, + "c6": 22.025361382816023, + "c7": -9.306056239323436 }, - "vertexSeeds": { - "c1": 5.533214095519825, - "c2": 5.53497381661627, - "c3": 5.5681787096124, - "c4": 5.525287091883433, - "c5": 5.564061676354303, - "c6": 5.53612260683423, - "c7": 5.5691274556949715 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.01664355062417, + "c3": 6.68053629218672, + "c4": 5.344429033749403, + "c5": 4.008321775312085, + "c6": 2.6722145168747677, + "c7": 1.3361072584373175 }, "rgb": [77, 76, 132] }, @@ -401685,23 +401685,23 @@ "year": 1811, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -13.460838219792361, - "c2": 19.586776868129732, - "c3": 16.74794468497157, - "c4": 0.7993030264093051, - "c5": 0.3294467052100778, - "c6": -22.257410607211913, - "c7": 9.45354027684374 + "points": { + "c1": 19.834751472081464, + "c2": 8.065118269889503, + "c3": 20.13671748653576, + "c4": 9.222208558866832, + "c5": 6.3705726263336935, + "c6": -14.397037872874698, + "c7": -21.44817820787018 }, - "vertexSeeds": { - "c1": 5.578061255761625, - "c2": 5.299907473836446, - "c3": 5.502183848204327, - "c4": 5.754108032856761, - "c5": 5.4819903605394815, - "c6": 5.65984374781938, - "c7": 5.388337155879905 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388355, + "c3": 7.119741100323623, + "c4": 5.695792880258904, + "c5": 4.27184466019417, + "c6": 2.847896440129452, + "c7": 1.4239482200647333 }, "rgb": [58, 15, 49] }, @@ -401712,23 +401712,23 @@ "year": 1812, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -11.44957225356945, - "c2": -11.896471338066817, - "c3": -11.939049520097605, - "c4": -17.35166383580949, - "c5": -19.65226494922559, - "c6": 3.7109269701671934, - "c7": -19.368509506750925 + "points": { + "c1": -19.737667532194344, + "c2": -26.243297245163404, + "c3": 25.746908086702824, + "c4": -11.16342534550309, + "c5": 2.8716004626279457, + "c6": 13.965139027466797, + "c7": -8.92505021933285 }, - "vertexSeeds": { - "c1": 5.071075772400779, - "c2": 5.06011793973267, - "c3": 5.070419458365231, - "c4": 5.054166397734638, - "c5": 5.067875313231172, - "c6": 5.05881089751546, - "c7": 5.068712549467217 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772537936, + "c3": 6.056403143781854, + "c4": 4.845122515025291, + "c5": 3.633841886269209, + "c6": 2.4225612575126454, + "c7": 1.2112806287565636 }, "rgb": [222, 0, 59] }, @@ -401739,23 +401739,23 @@ "year": 1812, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -18.751952311562874, - "c2": 8.909685112708107, - "c3": -1.253792229943766, - "c4": -5.840240151768764, - "c5": -5.033779032794907, - "c6": 11.34138833136721, - "c7": -0.8396980374984011 + "points": { + "c1": -3.9377077990006093, + "c2": -19.103020595929202, + "c3": 2.101544937748262, + "c4": -5.401843838866284, + "c5": -18.114087280523965, + "c6": 20.49607599969151, + "c7": 8.92171881568343 }, - "vertexSeeds": { - "c1": 3.128238341968912, - "c2": 3.128238341968912, - "c3": 3.128238341968912, - "c4": 3.128238341968912, - "c5": 3.128238341968912, - "c6": 3.128238341968912, - "c7": 3.128238341968912 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -401766,23 +401766,23 @@ "year": 1812, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 14.10403615467466, - "c2": 11.473572726404747, - "c3": 14.890013777476938, - "c4": 21.852723694327437, - "c5": -20.807044262268434, - "c6": 19.867887784111645, - "c7": 24.131079397514284 + "points": { + "c1": -22.57428466064926, + "c2": 17.28159262826687, + "c3": 30.81858581598881, + "c4": -15.335208040557763, + "c5": -26.437095257952105, + "c6": 6.824677564853211, + "c7": 7.048773692381424 }, - "vertexSeeds": { - "c1": 9.65933070085698, - "c2": 9.673796813750284, - "c3": 9.67887153376936, - "c4": 9.682561102928915, - "c5": 9.723490865459276, - "c6": 9.646493070814575, - "c7": 9.683107887148493 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.925104022191377, + "c3": 11.604253351826117, + "c4": 9.283402681460856, + "c5": 6.962552011095781, + "c6": 4.6417013407305205, + "c7": 2.3208506703652603 }, "rgb": [77, 76, 132] }, @@ -401793,23 +401793,23 @@ "year": 1812, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 27.454488900494177, - "c2": -25.153631458278966, - "c3": -11.237086347494593, - "c4": 28.828443724281563, - "c5": 18.39984386484607, - "c6": 16.9678482456518, - "c7": 19.9661379303799 + "points": { + "c1": -24.648432396920363, + "c2": -5.166573733187441, + "c3": -32.82665718916705, + "c4": -4.707843053216216, + "c5": 16.159356433369986, + "c6": 3.772408540434384, + "c7": 23.420653637577338 }, - "vertexSeeds": { - "c1": 10.388697254974794, - "c2": 10.311698303461846, - "c3": 10.213695957644909, - "c4": 10.166757323016734, - "c5": 10.141646102976955, - "c6": 10.179034618797083, - "c7": 10.121394561652465 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.92371705963939, + "c3": 12.436430883032827, + "c4": 9.94914470642626, + "c5": 7.461858529819695, + "c6": 4.97457235321313, + "c7": 2.487286176606565 }, "rgb": [86, 146, 138] }, @@ -401820,23 +401820,23 @@ "year": 1812, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 21.6983212733262, - "c2": -16.437940530214533, - "c3": 4.662244697974177, - "c4": -15.53666161779067, - "c5": 4.427361622379848, - "c6": 10.798619461367679, - "c7": -11.269006919605088 + "points": { + "c1": -2.126446084175747, + "c2": 16.326049817844478, + "c3": -22.87084330611659, + "c4": -6.087100455620533, + "c5": 12.843188155248207, + "c6": -12.083293810195602, + "c7": 7.609097105746379 }, - "vertexSeeds": { - "c1": 5.015607950144145, - "c2": 5.077396472881588, - "c3": 5.00237076204724, - "c4": 5.077459506710596, - "c5": 5.17763886745764, - "c6": 4.935487667836394, - "c7": 5.190331797265994 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865461, + "c3": 6.819232547387882, + "c4": 5.455386037910314, + "c5": 4.091539528432734, + "c6": 2.7276930189551543, + "c7": 1.363846509477574 }, "rgb": [77, 76, 132] }, @@ -401847,23 +401847,23 @@ "year": 1811, "resistanceReported": false, "duration": 8035200, - "curveSeeds": { - "c1": -9.312976988761337, - "c2": -5.276799568092082, - "c3": -15.808298672500236, - "c4": 3.3824881674099174, - "c5": -7.4467586922348605, - "c6": -12.92146117031487, - "c7": -6.311274731200886 + "points": { + "c1": -1.0521697987522884, + "c2": 8.816826020198882, + "c3": 13.149285687668161, + "c4": 7.7486480817764445, + "c5": -14.537629797234636, + "c6": 3.4659399834595774, + "c7": -10.916019183341957 }, - "vertexSeeds": { - "c1": 8.163844487045028, - "c2": 8.357998493801194, - "c3": 8.15651961113525, - "c4": 8.323573266226255, - "c5": 8.158573154832029, - "c6": 8.274976458367853, - "c7": 8.33559511247641 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456288, + "c3": 10.032362459546933, + "c4": 8.025889967637525, + "c5": 6.01941747572817, + "c6": 4.0129449838187625, + "c7": 2.006472491909408 }, "rgb": [58, 15, 49] }, @@ -401874,23 +401874,23 @@ "year": 1812, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 9.451635032412305, - "c2": 8.627255822977666, - "c3": -4.0963504563542195, - "c4": 3.8484625125180187, - "c5": -20.779702338347978, - "c6": 6.68317557409252, - "c7": -16.887093351322182 + "points": { + "c1": 18.09280271360658, + "c2": 7.810160101950721, + "c3": 19.652873730548784, + "c4": -14.866530548016241, + "c5": 13.868670443709888, + "c6": -12.306524728450297, + "c7": -9.672745030626256 }, - "vertexSeeds": { - "c1": 9.907672265589365, - "c2": 10.790120525525191, - "c3": 11.168868762375247, - "c4": 10.988566536463265, - "c5": 10.172604243921459, - "c6": 9.709263464583737, - "c7": 10.118692051556181 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.088765603328714, + "c3": 13.4073046694406, + "c4": 10.725843735552486, + "c5": 8.044382801664343, + "c6": 5.362921867776229, + "c7": 2.6814609338881144 }, "rgb": [58, 15, 49] }, @@ -401901,23 +401901,23 @@ "year": 1812, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -32.33823514868552, - "c2": 3.612444286015915, - "c3": -10.430843320212897, - "c4": 13.679321841172083, - "c5": 30.02531978491855, - "c6": -29.639869654405267, - "c7": -14.41985510363006 + "points": { + "c1": 22.307644321852507, + "c2": 17.262984497618888, + "c3": 23.303608641443937, + "c4": -9.495476741930837, + "c5": 0.2278484305847428, + "c6": -16.172750667263923, + "c7": 24.248925524144973 }, - "vertexSeeds": { - "c1": 9.06292533029152, - "c2": 9.07635207260956, - "c3": 9.089710536014813, - "c4": 9.074289347750796, - "c5": 9.080431067979106, - "c6": 9.070029065600274, - "c7": 9.05513880530632 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.00970873786414, + "c3": 10.84142394822019, + "c4": 8.673139158576237, + "c5": 6.504854368931854, + "c6": 4.336569579287903, + "c7": 2.1682847896439514 }, "rgb": [77, 76, 132] }, @@ -401928,23 +401928,23 @@ "year": 1812, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 11.118956625251407, - "c2": -5.03207167186698, - "c3": 26.356884290217756, - "c4": 21.69008812719985, - "c5": -2.7914230749119966, - "c6": -2.6770509444319117, - "c7": 5.594793969570027 + "points": { + "c1": 4.4082360284376065, + "c2": -18.094121140151724, + "c3": -4.723240597520487, + "c4": 10.842841646988234, + "c5": 34.60333863352285, + "c6": 16.24838435054845, + "c7": -7.575718127713337 }, - "vertexSeeds": { - "c1": 5.954746586074966, - "c2": 5.816335107408688, - "c3": 5.845689399844932, - "c4": 6.121893802435443, - "c5": 5.9591696281658475, - "c6": 6.008866019733206, - "c7": 5.989194190919379 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750338, + "c3": 7.327785483125305, + "c4": 5.862228386500237, + "c5": 4.396671289875169, + "c6": 2.9311141932501354, + "c7": 1.4655570966250677 }, "rgb": [86, 146, 138] }, @@ -401955,23 +401955,23 @@ "year": 1812, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": 1.7075714004944658, - "c2": 11.781739291120115, - "c3": -4.126012873323496, - "c4": -0.7389908859907344, - "c5": 13.827190689056263, - "c6": -16.93655922486701, - "c7": 15.414600453603452 + "points": { + "c1": -5.501675677631258, + "c2": 5.000525695299903, + "c3": -9.370668780718045, + "c4": 13.230341263952088, + "c5": -0.34779818888178227, + "c6": -13.3998613295315, + "c7": -5.9284307950491275 }, - "vertexSeeds": { - "c1": 3.3834845987435385, - "c2": 3.3324910068956957, - "c3": 3.344455889443976, - "c4": 3.3416334084458628, - "c5": 3.409670052665456, - "c6": 3.3049412952144097, - "c7": 3.331764484657616 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119275, + "c3": 4.091539528432725, + "c4": 3.273231622746174, + "c5": 2.454923717059624, + "c6": 1.6366158113731009, + "c7": 0.8183079056865504 }, "rgb": [86, 146, 138] }, @@ -401982,23 +401982,23 @@ "year": 1812, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -19.892746641648998, - "c2": 12.310701979744017, - "c3": -19.26341509168403, - "c4": -20.66042764670403, - "c5": -15.413686770780195, - "c6": -7.902546677931266, - "c7": 10.391837282886868 + "points": { + "c1": 29.860455553789286, + "c2": -22.050989248375075, + "c3": -7.9197657071246255, + "c4": 8.61772587673024, + "c5": -4.2640568328169515, + "c6": -9.260990312774211, + "c7": 22.645493614164238 }, - "vertexSeeds": { - "c1": 4.604867890276271, - "c2": 4.595450211143315, - "c3": 4.601643767209471, - "c4": 4.588405707904232, - "c5": 4.5912245967303775, - "c6": 4.601714586470652, - "c7": 4.60013157971752 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572847, + "c3": 5.501618122977409, + "c4": 4.401294498381971, + "c5": 3.300970873786314, + "c6": 2.200647249190876, + "c7": 1.100323624595438 }, "rgb": [86, 146, 138] }, @@ -402009,23 +402009,23 @@ "year": 1812, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 8.11163498490913, - "c2": 5.2694330436341446, - "c3": -13.466120597781913, - "c4": -29.93099436177833, - "c5": -12.3066660016434, - "c6": 4.3686565619835775, - "c7": 7.5865737583551365 + "points": { + "c1": -4.520976864981538, + "c2": 34.499268462857195, + "c3": -3.466404730412414, + "c4": 11.712201520775004, + "c5": 26.987222750011405, + "c6": 9.256637435022817, + "c7": 32.58018520639467 }, - "vertexSeeds": { - "c1": 5.475854056663673, - "c2": 5.8047787899358765, - "c3": 6.176078137433874, - "c4": 5.424070708680151, - "c5": 6.242001316000023, - "c6": 5.540520458468862, - "c7": 5.329504982710252 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991683, + "c3": 7.4664817383263955, + "c4": 5.973185390661121, + "c5": 4.479889042995835, + "c6": 2.9865926953305606, + "c7": 1.493296347665286 }, "rgb": [77, 76, 132] }, @@ -402036,23 +402036,23 @@ "year": 1812, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -20.207145852120995, - "c2": 18.183759426513724, - "c3": 6.809368567019256, - "c4": -23.36611965756073, - "c5": 1.600569852500577, - "c6": -29.124811430759433, - "c7": -16.03926368201714 + "points": { + "c1": 26.011749141016523, + "c2": 2.992244427282124, + "c3": -2.0635435500001336, + "c4": -2.826492289330698, + "c5": 6.249343881573573, + "c6": -5.040585689737263, + "c7": -27.15024623606034 }, - "vertexSeeds": { - "c1": 9.389155218025953, - "c2": 9.372766720781598, - "c3": 9.347635236301699, - "c4": 9.38179341074245, - "c5": 9.377175532546378, - "c6": 9.414578472217658, - "c7": 9.333042752013275 + "offsets": { + "c1": 15.728155339805824, + "c2": 13.481276005547823, + "c3": 11.234396671289824, + "c4": 8.987517337031822, + "c5": 6.740638002774001, + "c6": 4.4937586685160005, + "c7": 2.2468793342580002 }, "rgb": [238, 201, 159] }, @@ -402063,23 +402063,23 @@ "year": 1812, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 0.3178115431929278, - "c2": 11.323671081459068, - "c3": -4.163476642684895, - "c4": 2.9558787012289827, - "c5": -8.29200022948925, - "c6": -20.025566735669443, - "c7": 6.702486565814024 + "points": { + "c1": 22.040910934912922, + "c2": -15.488881289610434, + "c3": 13.01684630009737, + "c4": 7.232456681797146, + "c5": 24.328535381736195, + "c6": 5.338384534582794, + "c7": -3.7893174369784823 }, - "vertexSeeds": { - "c1": 10.681552072997091, - "c2": 11.01212513110014, - "c3": 11.21474839590308, - "c4": 10.658346101988482, - "c5": 11.010365730955998, - "c6": 10.999022045146182, - "c7": 10.851676221838025 + "offsets": { + "c1": 19.158576051779935, + "c2": 16.42163661581136, + "c3": 13.684697179842816, + "c4": 10.947757743874238, + "c5": 8.210818307905697, + "c6": 5.473878871937119, + "c7": 2.736939435968541 }, "rgb": [222, 0, 59] }, @@ -402090,23 +402090,23 @@ "year": 1812, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 14.838111000082286, - "c2": 18.56538761623368, - "c3": -11.649809182047555, - "c4": 7.70899262014985, - "c5": 5.956527249470987, - "c6": -16.269107160639095, - "c7": 15.520242795913319 + "points": { + "c1": -18.888078846674606, + "c2": -18.649632531316115, + "c3": 8.876419519780569, + "c4": 13.620645932036389, + "c5": 28.817959564052543, + "c6": 26.222946074948517, + "c7": -20.734772325643505 }, - "vertexSeeds": { - "c1": 5.218062962270897, - "c2": 4.895507120029383, - "c3": 4.952731736140797, - "c4": 5.1595583253930295, - "c5": 5.24750060763632, - "c6": 5.090158772824963, - "c7": 5.204056619647836 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -402117,23 +402117,23 @@ "year": 1812, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -23.16875516782706, - "c2": -5.145441302713273, - "c3": -3.292682191719603, - "c4": 28.62367547748741, - "c5": 28.03180568196116, - "c6": -24.018150759845106, - "c7": 0.7616776107551786 + "points": { + "c1": 13.155576685901707, + "c2": 7.794216936349507, + "c3": -21.40415333531695, + "c4": -22.30513564657658, + "c5": 3.065690520817533, + "c6": 31.500476310878476, + "c7": -28.68677712214715 }, - "vertexSeeds": { - "c1": 4.572726330009796, - "c2": 4.56553767557899, - "c3": 4.555395985419638, - "c4": 4.609575783042913, - "c5": 4.5929273714076615, - "c6": 4.579849040703241, - "c7": 4.653781896371935 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693476, + "c3": 5.570966250577891, + "c4": 4.456773000462305, + "c5": 3.34257975034672, + "c6": 2.228386500231171, + "c7": 1.1141932501155856 }, "rgb": [238, 201, 159] }, @@ -402144,23 +402144,23 @@ "year": 1812, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -20.65245306621076, - "c2": -10.517216798439485, - "c3": 0.034529019296254404, - "c4": -4.177345283921561, - "c5": -3.366174740133605, - "c6": -20.570447929342738, - "c7": -19.51069501276782 + "points": { + "c1": -12.014868604088566, + "c2": 11.097597227325966, + "c3": -24.863183557307558, + "c4": 24.644103777368873, + "c5": -18.8053560659127, + "c6": 6.864456970996269, + "c7": 0.23066534276989614 }, - "vertexSeeds": { - "c1": 5.51459431387189, - "c2": 5.356479239211527, - "c3": 5.442106615542897, - "c4": 5.413108230518193, - "c5": 5.560360278706462, - "c6": 5.38586391864973, - "c7": 5.595561047488855 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.04438280166434, + "c3": 6.703652334720301, + "c4": 5.362921867776227, + "c5": 4.022191400832187, + "c6": 2.6814609338881135, + "c7": 1.3407304669440387 }, "rgb": [58, 15, 49] }, @@ -402171,23 +402171,23 @@ "year": 1812, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -12.386299508806173, - "c2": 25.37587295491059, - "c3": -8.090476427960443, - "c4": 4.424826034760777, - "c5": -7.077094586062028, - "c6": -6.094885769255274, - "c7": 10.739030122800415 + "points": { + "c1": 3.1792713047680152, + "c2": 4.498125766292212, + "c3": -4.382134430918114, + "c4": 2.9684971560798665, + "c5": -25.766476411131986, + "c6": -21.146281116233045, + "c7": -0.30134419141451474 }, - "vertexSeeds": { - "c1": 7.534950158636343, - "c2": 7.85587903989194, - "c3": 7.958154685628149, - "c4": 8.331894126710033, - "c5": 7.96818080652576, - "c6": 8.046441805504328, - "c7": 6.87393029744531 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375872, + "c3": 9.986130374479892, + "c4": 7.9889042995839095, + "c5": 5.991678224687936, + "c6": 3.994452149791962, + "c7": 1.997226074895981 }, "rgb": [86, 146, 138] }, @@ -402198,23 +402198,23 @@ "year": 1812, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 0.005919124662504771, - "c2": 29.070716804822112, - "c3": 33.75156716158506, - "c4": 13.410747053817353, - "c5": -13.687397082207937, - "c6": 22.10801846483109, - "c7": 33.62688167542876 + "points": { + "c1": 25.18828771799459, + "c2": 8.438978414470185, + "c3": -31.960060332975342, + "c4": -4.3464897471695245, + "c5": 0.8296086949134391, + "c6": 24.161251568420028, + "c7": 20.562529311866584 }, - "vertexSeeds": { - "c1": 8.233519967314825, - "c2": 8.278806145571393, - "c3": 8.259056083377663, - "c4": 8.12605216169671, - "c5": 8.237765533992427, - "c6": 8.121900168096726, - "c7": 8.167948451924799 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255178, + "c3": 9.916782246879366, + "c4": 7.933425797503478, + "c5": 5.950069348127589, + "c6": 3.966712898751699, + "c7": 1.9833564493758893 }, "rgb": [238, 201, 159] }, @@ -402225,23 +402225,23 @@ "year": 1812, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -21.40198895760492, - "c2": -13.341760607236731, - "c3": -23.02868180818736, - "c4": 20.90568650993973, - "c5": -10.571044699808787, - "c6": 6.999061411482661, - "c7": -0.10879916540241297 + "points": { + "c1": 15.500066836647303, + "c2": -23.15471273642576, + "c3": -14.262773471682483, + "c4": -24.00814638931229, + "c5": 0.7731378068465844, + "c6": -10.104789048131643, + "c7": -8.794235502535411 }, - "vertexSeeds": { - "c1": 1.419047332608, - "c2": 1.4281494134904158, - "c3": 1.493666954601083, - "c4": 1.4796617455183734, - "c5": 1.4241100473482082, - "c6": 1.4759387094444354, - "c7": 1.4115223365221299 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338417, + "c3": 1.9186315302820163, + "c4": 1.5349052242256116, + "c5": 1.1511789181692105, + "c6": 0.7674526121128058, + "c7": 0.38372630605640473 }, "rgb": [58, 15, 49] }, @@ -402252,23 +402252,23 @@ "year": 1812, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -28.528878148391804, - "c2": -2.243247324666438, - "c3": -26.523810480107503, - "c4": 20.847853921667202, - "c5": -25.780902743370145, - "c6": -12.727122234810267, - "c7": 28.606075676635285 + "points": { + "c1": 6.1457183813213305, + "c2": 5.617915301433186, + "c3": -13.434340468253374, + "c4": -16.835519148328192, + "c5": 1.5685385778417071, + "c6": 8.901111147390914, + "c7": 31.2329369766707 }, - "vertexSeeds": { - "c1": 7.845757565232052, - "c2": 7.904387972300671, - "c3": 7.973394659197883, - "c4": 7.8787008704498005, - "c5": 7.891230861703516, - "c6": 7.969946887029603, - "c7": 8.092571620719845 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054108, + "c3": 9.801202034211737, + "c4": 7.840961627369406, + "c5": 5.880721220527035, + "c6": 3.920480813684703, + "c7": 1.960240406842371 }, "rgb": [58, 15, 49] }, @@ -402279,23 +402279,23 @@ "year": 1812, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -4.023161100598838, - "c2": 18.11177007508693, - "c3": -17.53171712840588, - "c4": -1.3526546437564804, - "c5": -23.924697715558107, - "c6": 2.6043859592910508, - "c7": 15.165593020708783 + "points": { + "c1": -27.033315378733743, + "c2": 1.67980911387329, + "c3": 5.26706816876775, + "c4": -11.904472252759668, + "c5": -8.67801617136918, + "c6": 10.79233487146167, + "c7": -27.903416377485634 }, - "vertexSeeds": { - "c1": 7.531592276824995, - "c2": 7.510475523084675, - "c3": 7.6165684579176975, - "c4": 7.794168651212712, - "c5": 7.554728559518173, - "c6": 7.413470434333145, - "c7": 7.430184796911017 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.178918169209437, + "c3": 9.315765141007867, + "c4": 7.452612112806301, + "c5": 5.5894590846047345, + "c6": 3.7263060564031667, + "c7": 1.8631530282015996 }, "rgb": [238, 201, 159] }, @@ -402306,23 +402306,23 @@ "year": 1812, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -5.776186424169719, - "c2": -4.110220820962198, - "c3": 3.812293129183633, - "c4": -24.01588858708721, - "c5": 1.6138826310369119, - "c6": 10.652804506626932, - "c7": -12.700205711265646 + "points": { + "c1": 9.880055719022657, + "c2": -27.260233058538617, + "c3": -0.754197459536325, + "c4": 15.861915783913282, + "c5": 8.559831024315393, + "c6": 22.658829903636395, + "c7": 14.060285989863331 }, - "vertexSeeds": { - "c1": 9.004447112551228, - "c2": 9.221140824810998, - "c3": 8.732460324907041, - "c4": 8.703889365526484, - "c5": 9.050769656169638, - "c6": 8.867769194258631, - "c7": 8.784311670437987 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226069, + "c3": 11.049468331021739, + "c4": 8.839574664817386, + "c5": 6.6296809986130345, + "c6": 4.419787332408682, + "c7": 2.2098936662043527 }, "rgb": [238, 201, 159] }, @@ -402333,23 +402333,23 @@ "year": 1812, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": 13.570183166428244, - "c2": 3.5788676426510513, - "c3": -6.733464684250977, - "c4": 2.6927536771451095, - "c5": -0.20480462930725452, - "c6": 1.1710732199193181, - "c7": 13.295187670865133 + "points": { + "c1": -20.03559486761456, + "c2": -8.78294617493065, + "c3": -1.1328886565477276, + "c4": 16.166460786976813, + "c5": -13.131766824615099, + "c6": 1.9098202593797708, + "c7": 10.725495412728776 }, - "vertexSeeds": { - "c1": 8.982806599701922, - "c2": 9.17828957220691, - "c3": 9.827469313014955, - "c4": 9.618894567834495, - "c5": 10.011140963678063, - "c6": 9.48059446355384, - "c7": 10.080003591471721 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.42441054091539, + "c3": 12.020342117429488, + "c4": 9.6162736939436, + "c5": 7.212205270457695, + "c6": 4.808136846971792, + "c7": 2.4040684234859038 }, "rgb": [222, 0, 59] }, @@ -402360,23 +402360,23 @@ "year": 1812, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 2.208995075603365, - "c2": -18.5564737196828, - "c3": -15.76837702278466, - "c4": 3.4096302737502704, - "c5": 1.6194168273082425, - "c6": 14.540505824781423, - "c7": 12.279993358777201 + "points": { + "c1": -5.506792595920615, + "c2": -22.537550356969632, + "c3": -1.2544591961451275, + "c4": -25.12042230601123, + "c5": 24.681217879046823, + "c6": 12.576755118914786, + "c7": -4.69570610540471 }, - "vertexSeeds": { - "c1": 9.69559585492228, - "c2": 9.69559585492228, - "c3": 9.69559585492228, - "c4": 9.69559585492228, - "c5": 9.69559585492228, - "c6": 9.69559585492228, - "c7": 9.69559585492228 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -402387,23 +402387,23 @@ "year": 1812, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 4.095287414274864, - "c2": 27.242171875679723, - "c3": -12.978706017564033, - "c4": -17.654551233875708, - "c5": -13.449323518005077, - "c6": -2.6551438795489517, - "c7": 28.674917850771358 + "points": { + "c1": 32.46295348105575, + "c2": 30.17245610627141, + "c3": 9.052906485469215, + "c4": 12.20114472191218, + "c5": -22.30967093359068, + "c6": 10.355659753487089, + "c7": -12.181620582218077 }, - "vertexSeeds": { - "c1": 6.208160625015716, - "c2": 6.181704744245907, - "c3": 6.182151966921181, - "c4": 6.168032739767625, - "c5": 6.164989476254279, - "c6": 6.216321049821283, - "c7": 6.206675552786576 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911277, + "c3": 7.420249653259298, + "c4": 5.936199722607468, + "c5": 4.452149791955638, + "c6": 2.9680998613036604, + "c7": 1.4840499306518302 }, "rgb": [222, 0, 59] }, @@ -402414,23 +402414,23 @@ "year": 1812, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 13.430044197110263, - "c2": 20.540816892650795, - "c3": -18.363638267078137, - "c4": -6.448182301445485, - "c5": -22.037863518653335, - "c6": 1.7126838435586755, - "c7": -6.439384820697047 + "points": { + "c1": 2.554690211187676, + "c2": -12.458036807044014, + "c3": -28.557468981022936, + "c4": 16.024130230540862, + "c5": 25.95942411279787, + "c6": 9.915494239524179, + "c7": 12.084151683551049 }, - "vertexSeeds": { - "c1": 10.26909011339564, - "c2": 10.537376554605206, - "c3": 10.64289824640822, - "c4": 10.06899024534144, - "c5": 10.246088536804695, - "c6": 9.864711597145458, - "c7": 10.94826045194828 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.700416088765596, + "c3": 13.083680073971323, + "c4": 10.46694405917708, + "c5": 7.850208044382806, + "c6": 5.233472029588532, + "c7": 2.616736014794274 }, "rgb": [238, 201, 159] }, @@ -402441,23 +402441,23 @@ "year": 1812, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 14.873900229184159, - "c2": -22.763761257849996, - "c3": 36.76448053806208, - "c4": -15.591227205792254, - "c5": 18.744410330579505, - "c6": 2.515953791049526, - "c7": -12.189767920091857 + "points": { + "c1": 6.746524039949648, + "c2": 15.99108274387843, + "c3": 30.02784413476744, + "c4": 38.19515739177506, + "c5": 36.11085313758449, + "c6": -1.3155096459276123, + "c7": 39.63333220378451 }, - "vertexSeeds": { - "c1": 9.830754407199912, - "c2": 10.20005588366833, - "c3": 9.200768784751386, - "c4": 10.021430662618908, - "c5": 9.80807355183578, - "c6": 9.273799689417547, - "c7": 9.493487932033911 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156743, + "c3": 12.159038372630604, + "c4": 9.727230698104483, + "c5": 7.295423023578363, + "c6": 4.863615349052242, + "c7": 2.431807674526121 }, "rgb": [222, 0, 59] }, @@ -402468,23 +402468,23 @@ "year": 1812, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 11.729323718462403, - "c2": -4.252400192471576, - "c3": 24.409785761475405, - "c4": 3.1557920200180796, - "c5": 8.260894762958962, - "c6": 13.723822978094766, - "c7": -19.409486343873397 + "points": { + "c1": -6.999240645399151, + "c2": -18.867318334408402, + "c3": 17.14024682608057, + "c4": -14.934398787258305, + "c5": 14.446498288396342, + "c6": 25.018708982310436, + "c7": -23.724210990125876 }, - "vertexSeeds": { - "c1": 5.250500960126927, - "c2": 5.222625421030825, - "c3": 5.2043370049584805, - "c4": 5.137401651054438, - "c5": 5.1907868994552455, - "c6": 5.2378165906755525, - "c7": 5.20198802363184 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101262, + "c3": 6.3800277392510205, + "c4": 5.1040221914008255, + "c5": 3.828016643550631, + "c6": 2.552011095700436, + "c7": 1.2760055478501948 }, "rgb": [238, 201, 159] }, @@ -402495,23 +402495,23 @@ "year": 1812, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 8.383624441001466, - "c2": -23.07611223087073, - "c3": -13.915830393859999, - "c4": -22.77868183437259, - "c5": 15.953695896200188, - "c6": 17.780957660446056, - "c7": -10.878088765169641 + "points": { + "c1": 9.68901788789011, + "c2": 9.785173651341807, + "c3": -13.90800852497201, + "c4": -26.109596129443137, + "c5": -22.433264082298088, + "c6": -28.5672916185794, + "c7": 10.587692198015894 }, - "vertexSeeds": { - "c1": 4.445359044772114, - "c2": 4.458989474432303, - "c3": 4.560605192238121, - "c4": 4.373461687217769, - "c5": 4.796172863294897, - "c6": 4.275387972100324, - "c7": 4.699480937240732 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055481, + "c3": 5.779010633379564, + "c4": 4.623208506703654, + "c5": 3.467406380027737, + "c6": 2.311604253351827, + "c7": 1.1558021266759098 }, "rgb": [238, 201, 159] }, @@ -402522,23 +402522,23 @@ "year": 1812, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": 11.445829356803255, - "c2": 13.4110640303409, - "c3": 15.559733397762582, - "c4": -14.090777569970669, - "c5": 19.81777250244009, - "c6": 19.72283303099046, - "c7": 20.574047277054728 + "points": { + "c1": 17.021759742386028, + "c2": 19.278875164002688, + "c3": 14.461973095886503, + "c4": -16.257234505896488, + "c5": -21.602065863795556, + "c6": -17.399425920283882, + "c7": 13.17868122348052 }, - "vertexSeeds": { - "c1": 1.6949632232504663, - "c2": 1.824687561368218, - "c3": 1.7516923842340544, - "c4": 1.761911285989012, - "c5": 1.7184892043307498, - "c6": 1.6903770616882992, - "c7": 1.6611728171076652 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.718446601941746, + "c3": 2.2653721682847907, + "c4": 1.8122977346278322, + "c5": 1.359223300970873, + "c6": 0.9061488673139179, + "c7": 0.45307443365695893 }, "rgb": [238, 201, 159] }, @@ -402549,23 +402549,23 @@ "year": 1812, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 22.619069991205087, - "c2": -21.251581537722398, - "c3": 13.788949981219943, - "c4": -0.7794031844563563, - "c5": -14.445241522001414, - "c6": -10.523732477466252, - "c7": 19.259219686567427 + "points": { + "c1": 2.662243163004497, + "c2": -7.485725563576985, + "c3": -26.42845119620766, + "c4": 5.954210504134345, + "c5": -20.5085818702439, + "c6": -1.1124831933458417, + "c7": -23.76502923839975 }, - "vertexSeeds": { - "c1": 4.927313515883938, - "c2": 4.822997176594608, - "c3": 4.974132546032381, - "c4": 4.7496761162169, - "c5": 4.787837304738695, - "c6": 4.693955354478686, - "c7": 4.80810139563531 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377248, + "c3": 5.963938973647713, + "c4": 4.771151178918165, + "c5": 3.5783633841886306, + "c6": 2.3855755894590827, + "c7": 1.192787794729548 }, "rgb": [58, 15, 49] }, @@ -402576,23 +402576,23 @@ "year": 1812, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -9.006243047924691, - "c2": -36.646860163084675, - "c3": -17.128554535848217, - "c4": -16.697650989971507, - "c5": -36.0609188033955, - "c6": 15.457124156546605, - "c7": 7.659736521680628 + "points": { + "c1": 39.47708407628535, + "c2": 37.59196384033744, + "c3": -34.4228811553922, + "c4": -20.83963717311903, + "c5": 15.438461416883342, + "c6": 23.160600524977582, + "c7": -12.091165227324073 }, - "vertexSeeds": { - "c1": 4.597825665099226, - "c2": 4.636377177791869, - "c3": 4.500718952036077, - "c4": 4.509943365827445, - "c5": 4.47474354603272, - "c6": 4.534047845824357, - "c7": 4.5953099677933915 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653249, + "c3": 5.547850208044385, + "c4": 4.438280166435501, + "c5": 3.3287101248266353, + "c6": 2.2191400832177504, + "c7": 1.109570041608885 }, "rgb": [86, 146, 138] }, @@ -402603,23 +402603,23 @@ "year": 1812, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 11.696913024932588, - "c2": -21.8475315152406, - "c3": 9.389892304064933, - "c4": 0.8081536634391995, - "c5": -8.410885756974945, - "c6": 13.50726603595636, - "c7": 18.28449801404214 + "points": { + "c1": 27.48617139296051, + "c2": -5.949180744950478, + "c3": -25.12277811383033, + "c4": 5.095518877304453, + "c5": -23.95527229923084, + "c6": -12.164680722495078, + "c7": -21.344449557916022 }, - "vertexSeeds": { - "c1": 10.012297260262075, - "c2": 10.224403633880161, - "c3": 10.171237673161544, - "c4": 9.784088372977001, - "c5": 10.20367052068012, - "c6": 9.304251580748755, - "c7": 10.257239567880012 + "offsets": { + "c1": 17.281553398058254, + "c2": 14.812760055478503, + "c3": 12.343966712898753, + "c4": 9.875173370319002, + "c5": 7.406380027739251, + "c6": 4.937586685159501, + "c7": 2.4687933425797506 }, "rgb": [58, 15, 49] }, @@ -402630,23 +402630,23 @@ "year": 1812, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 1.8937629582055848, - "c2": -16.928257229838188, - "c3": 22.931289264925873, - "c4": 43.25657367591568, - "c5": -33.75179667001768, - "c6": 3.3761170260247013, - "c7": 3.866700683625723 + "points": { + "c1": -16.656913497394505, + "c2": 45.51897713239722, + "c3": -15.90081807066726, + "c4": -27.832116846230242, + "c5": 39.448228618488535, + "c6": 11.397053669741489, + "c7": 19.84105910561049 }, - "vertexSeeds": { - "c1": 4.158090330672913, - "c2": 4.1720627372185, - "c3": 4.1566823222240314, - "c4": 4.1469611927521095, - "c5": 4.166461817496482, - "c6": 4.163444805658701, - "c7": 4.1611230844441405 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687962, + "c3": 4.993065187239902, + "c4": 3.994452149791942, + "c5": 2.995839112343981, + "c6": 1.9972260748960204, + "c7": 0.9986130374479606 }, "rgb": [58, 15, 49] }, @@ -402657,23 +402657,23 @@ "year": 1812, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 28.28834588799633, - "c2": -8.30316911251677, - "c3": 8.6564970590373, - "c4": -33.09772646582247, - "c5": 29.507946876307074, - "c6": -22.15378022001272, - "c7": 24.6994269433864 + "points": { + "c1": 18.839767735911074, + "c2": 9.853919446631316, + "c3": 10.562858404786006, + "c4": -25.845455570149454, + "c5": 2.208018150940667, + "c6": 6.787730459584957, + "c7": -36.05581448417026 }, - "vertexSeeds": { - "c1": 4.7339357197821545, - "c2": 4.563448713630196, - "c3": 4.7213596883502476, - "c4": 4.506227334072071, - "c5": 4.726043471166396, - "c6": 4.691222303224075, - "c7": 4.571622125178831 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015263, + "c3": 5.755894590846046, + "c4": 4.604715672676843, + "c5": 3.453536754507625, + "c6": 2.3023578363384214, + "c7": 1.1511789181692174 }, "rgb": [86, 146, 138] }, @@ -402684,23 +402684,23 @@ "year": 1812, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -0.7399258059222156, - "c2": -9.65711142554916, - "c3": -13.824443969188469, - "c4": -3.480855886518121, - "c5": -22.3563347639885, - "c6": 14.040997101000414, - "c7": -10.929756582838333 + "points": { + "c1": -25.72127986143033, + "c2": -13.08325759469167, + "c3": 31.43314831130772, + "c4": -5.967202857581313, + "c5": -26.747181117130893, + "c6": 2.8337921325911566, + "c7": -32.727691024917455 }, - "vertexSeeds": { - "c1": 6.297682112300078, - "c2": 6.263056808198263, - "c3": 6.268648413619995, - "c4": 6.261825325323717, - "c5": 6.331614975971826, - "c6": 6.3456827068081605, - "c7": 6.165561216425796 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192803, + "c3": 7.582061950993967, + "c4": 6.065649560795184, + "c5": 4.549237170596402, + "c6": 3.0328247803975645, + "c7": 1.5164123901987823 }, "rgb": [58, 15, 49] }, @@ -402711,23 +402711,23 @@ "year": 1812, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": 30.91868408808981, - "c2": -26.17505569830833, - "c3": -24.657505216573213, - "c4": 18.619177815791744, - "c5": 24.562893927281273, - "c6": -15.387521216108752, - "c7": 41.907868899115165 + "points": { + "c1": -35.65676954910275, + "c2": 22.682201644996617, + "c3": 27.645261669883773, + "c4": -10.663874114000564, + "c5": 25.22109084540528, + "c6": 39.9982618313035, + "c7": -33.085240441645674 }, - "vertexSeeds": { - "c1": 6.183609873814584, - "c2": 6.219288680608558, - "c3": 6.233514803006161, - "c4": 6.004770455694199, - "c5": 6.070191553881923, - "c6": 6.2513152468482005, - "c7": 6.267927718131573 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431346, + "c3": 7.651410078594535, + "c4": 6.121128062875632, + "c5": 4.59084604715673, + "c6": 3.0605640314378286, + "c7": 1.530282015718902 }, "rgb": [58, 15, 49] }, @@ -402738,23 +402738,23 @@ "year": 1812, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -1.3087450690472977, - "c2": 5.055023075816173, - "c3": 18.71786190932248, - "c4": -19.40247591798354, - "c5": -26.10902485336772, - "c6": 16.62770121901805, - "c7": 22.941407931483056 + "points": { + "c1": 22.20672212257812, + "c2": -12.770052192416262, + "c3": -6.441462499295788, + "c4": 3.602628664934919, + "c5": 10.355883774780125, + "c6": 2.557530796739215, + "c7": -4.595724553426461 }, - "vertexSeeds": { - "c1": 5.880484422451395, - "c2": 5.889738741858108, - "c3": 5.8695317046123066, - "c4": 5.901658409619893, - "c5": 5.888469246975136, - "c6": 5.872422808511526, - "c7": 5.893193330032954 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267723, + "c3": 7.05039297272315, + "c4": 5.640314378178576, + "c5": 4.230235783633721, + "c6": 2.8201571890891475, + "c7": 1.4100785945445737 }, "rgb": [58, 15, 49] }, @@ -402765,23 +402765,23 @@ "year": 1813, "resistanceReported": false, "duration": 34732800, - "curveSeeds": { - "c1": -12.330380050920866, - "c2": -47.53421264457354, - "c3": -32.16728927655799, - "c4": -32.90157891039217, - "c5": -44.41755149288305, - "c6": -46.215630265697385, - "c7": 21.93617311635502 + "points": { + "c1": -13.531383240768669, + "c2": -9.928324694938205, + "c3": 31.244045037640603, + "c4": -3.953233463021654, + "c5": 22.99243066693174, + "c6": 46.025589310781115, + "c7": 27.180549325255456 }, - "vertexSeeds": { - "c1": 12.315552961494127, - "c2": 12.294252335377664, - "c3": 12.409170414939096, - "c4": 12.04322517642004, - "c5": 12.119902272554798, - "c6": 11.99888333723434, - "c7": 12.333344799293785 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.75312066574198, + "c3": 14.794267221451703, + "c4": 11.835413777161323, + "c5": 8.876560332871042, + "c6": 5.917706888580661, + "c7": 2.9588534442903818 }, "rgb": [222, 0, 59] }, @@ -402792,23 +402792,23 @@ "year": 1812, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 19.735272653672737, - "c2": -9.776998735618296, - "c3": -8.956192541015202, - "c4": -13.325392476384373, - "c5": -7.37168585442161, - "c6": 17.68246253762122, - "c7": 13.29832610162066 + "points": { + "c1": 11.080124023136825, + "c2": 5.056546867495342, + "c3": -30.750872865462007, + "c4": -18.864888587192826, + "c5": 31.43219641023404, + "c6": 0.5111492734827721, + "c7": 28.79235119744107 }, - "vertexSeeds": { - "c1": 9.785346147530294, - "c2": 9.676723961244782, - "c3": 9.771867904022141, - "c4": 10.284759394006755, - "c5": 10.052530273964525, - "c6": 9.894463654365463, - "c7": 10.303622388900012 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438297, + "c3": 12.32085067036521, + "c4": 9.856680536292178, + "c5": 7.392510402219148, + "c6": 4.928340268146089, + "c7": 2.464170134073031 }, "rgb": [58, 15, 49] }, @@ -402819,23 +402819,23 @@ "year": 1812, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -14.595980750624822, - "c2": -3.630197358718, - "c3": 33.03946139865863, - "c4": -20.37711298113029, - "c5": -2.741482785866662, - "c6": 27.054349640149248, - "c7": 5.016009427837375 + "points": { + "c1": -0.2663343073089024, + "c2": -9.250903727500571, + "c3": 18.540277379347195, + "c4": -9.075987912676307, + "c5": 14.203230775465727, + "c6": -29.612175882192872, + "c7": 16.33044314402794 }, - "vertexSeeds": { - "c1": 6.860283745406088, - "c2": 7.453274430469779, - "c3": 6.953381790573019, - "c4": 7.003749269241569, - "c5": 7.312219396804399, - "c6": 7.425272402787491, - "c7": 6.984405230899515 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [77, 76, 132] }, @@ -402846,23 +402846,23 @@ "year": 1812, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -31.423771673806378, - "c2": -26.084078496026557, - "c3": 23.80982395331, - "c4": 29.461790005142092, - "c5": -34.15434526701821, - "c6": -20.27263003757138, - "c7": 25.227470419190816 + "points": { + "c1": -9.061152499517739, + "c2": 27.972770844276823, + "c3": 4.875958787699631, + "c4": -6.280532035285958, + "c5": 15.305490113790633, + "c6": -34.87696570803638, + "c7": 36.367869977537765 }, - "vertexSeeds": { - "c1": 7.134688174320638, - "c2": 7.173054809309057, - "c3": 7.062142019581124, - "c4": 6.8410196026020955, - "c5": 7.537328185876633, - "c6": 7.32898984502374, - "c7": 6.926981803691554 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [86, 146, 138] }, @@ -402873,23 +402873,23 @@ "year": 1812, "resistanceReported": true, "duration": 19440000, - "curveSeeds": { - "c1": -11.12396167719167, - "c2": 22.505117741265224, - "c3": -16.80692619364638, - "c4": -23.41727869185433, - "c5": -16.615559178809125, - "c6": 5.2012907827482024, - "c7": 19.80515322240202 + "points": { + "c1": 14.031077909892119, + "c2": 12.631118255271993, + "c3": 13.62285516737915, + "c4": -1.182699330935307, + "c5": -4.934952003538005, + "c6": 18.492341264821818, + "c7": -19.87814687653381 }, - "vertexSeeds": { - "c1": 8.158709867698189, - "c2": 7.642921868825766, - "c3": 8.301101762250207, - "c4": 8.038682322118712, - "c5": 7.7656606427242725, - "c6": 8.222960793378343, - "c7": 8.04001457793797 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295423, + "c3": 9.939898289412852, + "c4": 7.9519186315302814, + "c5": 5.9639389736477115, + "c6": 3.9759593157651407, + "c7": 1.9879796578825704 }, "rgb": [77, 76, 132] }, @@ -402900,23 +402900,23 @@ "year": 1814, "resistanceReported": false, "duration": 82166400, - "curveSeeds": { - "c1": -67.34310012271851, - "c2": 97.94484149395684, - "c3": 54.44863419166798, - "c4": 41.28483006147532, - "c5": 67.7120597052549, - "c6": -73.7820724321737, - "c7": -51.50992404118933 + "points": { + "c1": 71.29811151770794, + "c2": -93.80606099184398, + "c3": -93.12172833311537, + "c4": -74.7364349982402, + "c5": -90.13286614915971, + "c6": 13.031447252799481, + "c7": 46.33477491765798 }, - "vertexSeeds": { - "c1": 6.797625045769363, - "c2": 6.569076202407054, - "c3": 6.456594150517966, - "c4": 6.251308666485228, - "c5": 7.431217470875464, - "c6": 6.790785295296837, - "c7": 7.204065617216098 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525656, + "c3": 8.922792417938044, + "c4": 7.13823393435044, + "c5": 5.353675450762828, + "c6": 3.569116967175215, + "c7": 1.7845584835876125 }, "rgb": [222, 0, 59] }, @@ -402927,23 +402927,23 @@ "year": 1813, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -36.42619207167651, - "c2": -3.064260185993845, - "c3": 25.554636542866405, - "c4": -14.226536606695824, - "c5": 34.94263260727145, - "c6": -32.517411336548946, - "c7": -19.355080667658566 + "points": { + "c1": 4.4373602528354255, + "c2": -16.92002921569837, + "c3": 45.35991118829243, + "c4": -44.43538084230116, + "c5": -33.93286298450378, + "c6": 35.55645967521386, + "c7": 22.70830871701945 }, - "vertexSeeds": { - "c1": 6.115340095826965, - "c2": 6.388752339003053, - "c3": 6.47944037880619, - "c4": 6.665705137824136, - "c5": 6.184531880634173, - "c6": 6.187800025201711, - "c7": 5.9471931643432985 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110956998, + "c3": 8.021266759130839, + "c4": 6.417013407304665, + "c5": 4.812760055478507, + "c6": 3.2085067036523327, + "c7": 1.6042533518261586 }, "rgb": [58, 15, 49] }, @@ -402954,23 +402954,23 @@ "year": 1812, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 10.759029109052946, - "c2": 2.040056876216333, - "c3": -11.253297571606854, - "c4": -10.096159831997312, - "c5": 19.378892493838613, - "c6": 30.980923283096487, - "c7": -30.06032386145664 + "points": { + "c1": -26.345395751399717, + "c2": 16.874980745940434, + "c3": -17.428305773802077, + "c4": -3.9918600358305554, + "c5": -22.244049701808414, + "c6": 19.03769372078731, + "c7": 9.816810639475086 }, - "vertexSeeds": { - "c1": 2.2015562314036203, - "c2": 2.2413885970009493, - "c3": 2.044450630312856, - "c4": 2.4414754047504386, - "c5": 2.1895652882435233, - "c6": 2.376049289224736, - "c7": 2.3952646261131614 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.5783633841886267, + "c3": 2.981969486823855, + "c4": 2.3855755894590835, + "c5": 1.789181692094312, + "c6": 1.1927877947295429, + "c7": 0.596393897364769 }, "rgb": [58, 15, 49] }, @@ -402981,23 +402981,23 @@ "year": 1812, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": -11.577958632358921, - "c2": 4.7783437372552875, - "c3": 15.956860646505216, - "c4": 17.332680068994247, - "c5": 13.882364707452087, - "c6": -7.222155037191559, - "c7": 18.39948350251858 + "points": { + "c1": -5.66047288632128, + "c2": 17.717369077255217, + "c3": -15.15218768446394, + "c4": 4.26016911974212, + "c5": -12.014026831208056, + "c6": -7.297782649829102, + "c7": 18.46197164032613 }, - "vertexSeeds": { - "c1": 1.9605325267479945, - "c2": 1.9303240827475707, - "c3": 1.9809341243722953, - "c4": 2.024819378301204, - "c5": 1.867081604856935, - "c6": 1.9859628532781775, - "c7": 2.027469422486313 + "offsets": { + "c1": 3.5275080906148863, + "c2": 3.023578363384189, + "c3": 2.5196486361534913, + "c4": 2.01571890892279, + "c5": 1.5117891816920925, + "c6": 1.007859454461395, + "c7": 0.5039297272306975 }, "rgb": [238, 201, 159] }, @@ -403008,23 +403008,23 @@ "year": 1812, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -20.14671285091859, - "c2": 29.23037875659001, - "c3": 9.526648856410507, - "c4": 7.560073554347131, - "c5": 16.688757244337108, - "c6": 25.432976134458077, - "c7": -19.27506753327171 + "points": { + "c1": 6.790868762261965, + "c2": 32.70576597638775, + "c3": -8.539712776336248, + "c4": 19.23637726440323, + "c5": 27.736009496348373, + "c6": 10.974103059893075, + "c7": -9.777826726678896 }, - "vertexSeeds": { - "c1": 10.109950020360296, - "c2": 10.573016587585485, - "c3": 10.112413551323527, - "c4": 10.256077756823592, - "c5": 10.28546187439114, - "c6": 10.69924087260346, - "c7": 10.242810095108142 + "offsets": { + "c1": 17.864077669902912, + "c2": 15.312066574202495, + "c3": 12.76005547850208, + "c4": 10.208044382801663, + "c5": 7.6560332871012475, + "c6": 5.104022191400832, + "c7": 2.552011095700416 }, "rgb": [222, 0, 59] }, @@ -403035,23 +403035,23 @@ "year": 1812, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -23.53575472848661, - "c2": 18.113681306894946, - "c3": -29.704843368471565, - "c4": 4.556528020382281, - "c5": -13.4406604422785, - "c6": 4.638329409152632, - "c7": -0.8869149735258546 + "points": { + "c1": -10.453548263983745, + "c2": -12.278849893174314, + "c3": 21.28817893195079, + "c4": -8.294637020147071, + "c5": -0.8677666079985613, + "c6": -17.050130961600406, + "c7": 1.7580423893404955 }, - "vertexSeeds": { - "c1": 9.115393826332388, - "c2": 9.240001639331442, - "c3": 9.016041187421578, - "c4": 9.248502722790244, - "c5": 9.080717958825375, - "c6": 9.168252749935597, - "c7": 9.22341014247622 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.45353675450761, + "c3": 11.211280628756363, + "c4": 8.969024503005075, + "c5": 6.726768377253826, + "c6": 4.4845122515025375, + "c7": 2.2422561257512887 }, "rgb": [86, 146, 138] }, @@ -403062,23 +403062,23 @@ "year": 1812, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 8.072455699770934, - "c2": 23.78933394850973, - "c3": 20.876811391302205, - "c4": -3.765893258286738, - "c5": 24.737361064422387, - "c6": -26.92415388527101, - "c7": 16.93212119838268 + "points": { + "c1": -22.449931189571583, + "c2": -19.538567141805082, + "c3": -18.624042530000427, + "c4": -25.267738296439976, + "c5": -23.58329955862638, + "c6": 26.811648505097097, + "c7": -8.46705090865434 }, - "vertexSeeds": { - "c1": 8.237378424433404, - "c2": 8.263831034746042, - "c3": 8.47321519852946, - "c4": 8.456793785627937, - "c5": 8.312697489904687, - "c6": 8.418669745708106, - "c7": 8.282294414620116 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697628, + "c3": 10.171058714748055, + "c4": 8.136846971798436, + "c5": 6.102635228848814, + "c6": 4.068423485899241, + "c7": 2.0342117429496205 }, "rgb": [58, 15, 49] }, @@ -403089,23 +403089,23 @@ "year": 1812, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 12.359161202350421, - "c2": -4.517328095424482, - "c3": -21.94672128358929, - "c4": -15.035912368607427, - "c5": -13.102039677931472, - "c6": 0.6224636316449548, - "c7": -5.037649489390024 + "points": { + "c1": 30.479409127384407, + "c2": 6.361239053059599, + "c3": 11.68822904125043, + "c4": -31.736839579360815, + "c5": 34.69122271100503, + "c6": 13.404459955033353, + "c7": -33.42322879526019 }, - "vertexSeeds": { - "c1": 0.8749820918838959, - "c2": 0.8308505111103859, - "c3": 0.8775603390073328, - "c4": 0.866273289877321, - "c5": 0.8428788297909542, - "c6": 0.8289679360755908, - "c7": 0.8194678540931122 + "offsets": { + "c1": 1.5210355987055015, + "c2": 1.3037447988904307, + "c3": 1.086453999075357, + "c4": 0.8691631992602862, + "c5": 0.6518723994452154, + "c6": 0.4345815996301445, + "c7": 0.21729079981507088 }, "rgb": [58, 15, 49] }, @@ -403116,23 +403116,23 @@ "year": 1812, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -25.453705280624153, - "c2": 13.877293681362254, - "c3": -22.5295400406656, - "c4": 16.010569098205245, - "c5": -28.168961980728586, - "c6": 29.147155854259054, - "c7": 13.327337915106888 + "points": { + "c1": -11.936446849882092, + "c2": 30.0409768554764, + "c3": -13.74400606283482, + "c4": -23.13232968044251, + "c5": -29.660981750770304, + "c6": 21.190690764302204, + "c7": 24.09725229216116 }, - "vertexSeeds": { - "c1": 6.117970154919783, - "c2": 6.0033686596544555, - "c3": 6.075222020661425, - "c4": 6.086167813679983, - "c5": 6.006158877988323, - "c6": 6.171793598228875, - "c7": 5.995938906682248 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830806, + "c3": 7.374017568192302, + "c4": 5.899214054553853, + "c5": 4.424410540915403, + "c6": 2.9496070272768993, + "c7": 1.4748035136384496 }, "rgb": [58, 15, 49] }, @@ -403143,23 +403143,23 @@ "year": 1812, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -21.42785016111577, - "c2": 1.1522253053423697, - "c3": 23.434790222838465, - "c4": 7.8117358965929355, - "c5": 10.818917337383041, - "c6": -23.510956439466682, - "c7": 19.942261571018626 + "points": { + "c1": 12.198371100272283, + "c2": -15.47017325808789, + "c3": -24.96273741256609, + "c4": 18.616590944620974, + "c5": 11.038929132347285, + "c6": -11.4799234854346, + "c7": -2.1786759275796364 }, - "vertexSeeds": { - "c1": 3.983077147614743, - "c2": 4.13432272644507, - "c3": 4.4671819508569675, - "c4": 4.258240564172209, - "c5": 3.973901345558083, - "c6": 4.22705068739671, - "c7": 4.502878035689642 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371709, + "c3": 5.386037910309755, + "c4": 4.308830328247807, + "c5": 3.231622746185851, + "c6": 2.1544151641239035, + "c7": 1.077207582061948 }, "rgb": [238, 201, 159] }, @@ -403170,23 +403170,23 @@ "year": 1812, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -18.930103382110776, - "c2": -6.752520101904652, - "c3": -20.331115545548702, - "c4": 0.5608660144132962, - "c5": 0.823967999925781, - "c6": 17.71652660172161, - "c7": -16.501883948406956 + "points": { + "c1": 2.5738268288530755, + "c2": 13.87688672676714, + "c3": -16.87045562268036, + "c4": 8.502426789958196, + "c5": 12.633423022293897, + "c6": -4.505286240657284, + "c7": 12.149798466960405 }, - "vertexSeeds": { - "c1": 7.5, - "c2": 7.5, - "c3": 7.5, - "c4": 7.5, - "c5": 7.5, - "c6": 7.5, - "c7": 7.5 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -403197,23 +403197,23 @@ "year": 1812, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 20.634721615990415, - "c2": 31.840144080512047, - "c3": 28.12004865517924, - "c4": -11.476123410463924, - "c5": 16.79037482326349, - "c6": -20.542702583220333, - "c7": 19.547107129656865 + "points": { + "c1": 20.106972806188786, + "c2": -9.89234993193886, + "c3": 10.504425796886487, + "c4": -34.459374121265746, + "c5": -14.110928390247349, + "c6": 12.25197324088306, + "c7": 20.57256565036443 }, - "vertexSeeds": { - "c1": 7.595973092000231, - "c2": 7.51902839518258, - "c3": 7.107008841558994, - "c4": 7.131686616940453, - "c5": 7.441809242697225, - "c6": 7.450657568177396, - "c7": 7.12274719283186 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088768, + "c3": 9.24641701340731, + "c4": 7.397133610725851, + "c5": 5.547850208044374, + "c6": 3.6985668053629155, + "c7": 1.8492834026814577 }, "rgb": [77, 76, 132] }, @@ -403224,23 +403224,23 @@ "year": 1812, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -26.45377568034217, - "c2": -4.554657134235569, - "c3": 5.262576676769214, - "c4": -18.213251975704587, - "c5": 17.59257653249942, - "c6": 27.379069310049417, - "c7": -13.991299639342824 + "points": { + "c1": -3.9026383991097298, + "c2": -16.700243037861746, + "c3": -25.619806078916575, + "c4": -33.49079747722943, + "c5": 13.39273117280846, + "c6": 10.321612122776415, + "c7": -26.931262215934755 }, - "vertexSeeds": { - "c1": 0.3404719604455588, - "c2": 0.355931767885437, - "c3": 0.3519567333415426, - "c4": 0.3229404595507651, - "c5": 0.32679920287837094, - "c6": 0.3646481241957113, - "c7": 0.36282255916429673 + "offsets": { + "c1": 0.6472491909385114, + "c2": 0.5547850208044387, + "c3": 0.46232085067036516, + "c4": 0.36985668053629245, + "c5": 0.27739251040221896, + "c6": 0.18492834026814622, + "c7": 0.0924641701340735 }, "rgb": [86, 146, 138] }, @@ -403251,23 +403251,23 @@ "year": 1812, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 20.193494759006246, - "c2": 12.033135026057042, - "c3": -3.26347005469394, - "c4": 8.337976266372024, - "c5": -23.028682204421578, - "c6": 11.89909837421732, - "c7": 1.6367318893253184 + "points": { + "c1": -4.852936630581386, + "c2": 12.355925617128708, + "c3": -22.57674883494836, + "c4": -7.17931872633805, + "c5": -24.81433235478214, + "c6": -13.012577175007475, + "c7": 15.00260673813015 }, - "vertexSeeds": { - "c1": 5.216679712833047, - "c2": 5.239504961726096, - "c3": 4.705183145466536, - "c4": 4.586125342515977, - "c5": 5.06959248535686, - "c6": 4.733124135825168, - "c7": 5.247422741492141 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.5450762829403635, + "c3": 6.287563569116974, + "c4": 5.0300508552935685, + "c5": 3.772538141470178, + "c6": 2.515025427646788, + "c7": 1.2575127138233904 }, "rgb": [222, 0, 59] }, @@ -403278,23 +403278,23 @@ "year": 1812, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 9.228603225278366, - "c2": -20.108072761575706, - "c3": -24.487614096993852, - "c4": -5.018663756284276, - "c5": -16.114076208424905, - "c6": 15.916626015136739, - "c7": 15.723582469570292 + "points": { + "c1": 28.43214050383001, + "c2": -14.594674373000391, + "c3": 1.3113204619963064, + "c4": 3.4324084101548102, + "c5": -22.213994219665913, + "c6": -29.466447801227606, + "c7": 29.09456192022481 }, - "vertexSeeds": { - "c1": 9.531408718884354, - "c2": 9.506690278569145, - "c3": 9.729001812344073, - "c4": 9.744437104611915, - "c5": 9.564673486394904, - "c6": 9.632408631989444, - "c7": 9.687020983297954 + "offsets": { + "c1": 16.310679611650485, + "c2": 13.980582524271844, + "c3": 11.650485436893204, + "c4": 9.320388349514563, + "c5": 6.990291262135922, + "c6": 4.660194174757281, + "c7": 2.3300970873786406 }, "rgb": [58, 15, 49] }, @@ -403305,23 +403305,23 @@ "year": 1813, "resistanceReported": false, "duration": 52012800, - "curveSeeds": { - "c1": 43.24805166094944, - "c2": 11.12443052350902, - "c3": 64.95264516891422, - "c4": -44.69297407137901, - "c5": -58.05607739483597, - "c6": -29.88558420479407, - "c7": 6.3011154928703235 + "points": { + "c1": -36.80234376237573, + "c2": -28.79723737049907, + "c3": -9.260466106580807, + "c4": 48.031514797697014, + "c5": -58.19823971047124, + "c6": 27.552982673139553, + "c7": 24.657632247715085 }, - "vertexSeeds": { - "c1": 3.6673433755890557, - "c2": 3.719964250120591, - "c3": 3.5920697290665826, - "c4": 3.4551304671446075, - "c5": 3.6361944954389496, - "c6": 3.371221866496388, - "c7": 3.5324712665396283 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803052, + "c3": 4.484512251502543, + "c4": 3.587609801202034, + "c5": 2.690707350901526, + "c6": 1.793804900601017, + "c7": 0.8969024503005085 }, "rgb": [77, 76, 132] }, @@ -403332,23 +403332,23 @@ "year": 1812, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": -11.306759501815746, - "c2": 15.568811312713219, - "c3": 8.68202581148362, - "c4": 8.355881678484202, - "c5": 18.219716493965006, - "c6": 14.218766546427066, - "c7": 3.2265984839820625 + "points": { + "c1": -4.696112407914011, + "c2": -13.509053146477852, + "c3": 10.624556538486313, + "c4": -16.665667869074703, + "c5": -15.12901394304972, + "c6": 10.362728060550655, + "c7": -18.18639215416444 }, - "vertexSeeds": { - "c1": 1.3898051593596972, - "c2": 1.5297555560748273, - "c3": 1.5330416813909624, - "c4": 1.476954454546766, - "c5": 1.3820268098894661, - "c6": 1.3966736011654983, - "c7": 1.5183863117345147 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217753, + "c3": 1.84928340268146, + "c4": 1.4794267221451673, + "c5": 1.1095700416088783, + "c6": 0.7397133610725856, + "c7": 0.3698566805362928 }, "rgb": [238, 201, 159] }, @@ -403359,23 +403359,23 @@ "year": 1812, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": 12.997610917029732, - "c2": -17.713629915959658, - "c3": -6.937926607314344, - "c4": -12.90923120176636, - "c5": 18.891491166255854, - "c6": 9.197894156934648, - "c7": 18.142945972230002 + "points": { + "c1": -18.744496265323768, + "c2": 16.191534596401745, + "c3": 11.45417810428009, + "c4": 6.136192500154461, + "c5": -4.991422137868067, + "c6": -8.389658778235813, + "c7": 22.0887811379084 }, - "vertexSeeds": { - "c1": 6.725260212455085, - "c2": 6.233276165629978, - "c3": 6.74033683670793, - "c4": 6.733686277910255, - "c5": 6.707507074430035, - "c6": 6.521718143008685, - "c7": 6.467438776192542 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640776, + "c3": 8.414239482200648, + "c4": 6.731391585760517, + "c5": 5.048543689320388, + "c6": 3.3656957928802584, + "c7": 1.6828478964401292 }, "rgb": [77, 76, 132] }, @@ -403386,23 +403386,23 @@ "year": 1812, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 12.14539542449921, - "c2": -18.665551195122188, - "c3": 7.1023137920478305, - "c4": -2.7899062825026704, - "c5": 13.670303557827335, - "c6": 4.481037205733237, - "c7": -13.17171075762331 + "points": { + "c1": 8.740925637276437, + "c2": -8.372794484645414, + "c3": -2.1811157021631793, + "c4": -16.890381794291184, + "c5": -9.84538671997883, + "c6": -0.07450627659174458, + "c7": -20.38125710518527 }, - "vertexSeeds": { - "c1": 5.618950142060939, - "c2": 5.571410636378903, - "c3": 5.8506039513879795, - "c4": 5.672346178807001, - "c5": 5.796173391274095, - "c6": 5.739795001775538, - "c7": 5.4971485507515 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [222, 0, 59] }, @@ -403413,23 +403413,23 @@ "year": 1812, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -19.32911007981002, - "c2": 2.9278890128592074, - "c3": -14.038770482075966, - "c4": 15.35285989706832, - "c5": 18.281831430493085, - "c6": -13.086169375966568, - "c7": 10.841176194218122 + "points": { + "c1": -18.362601015809943, + "c2": 6.057550712845828, + "c3": -7.249816383216032, + "c4": -14.314055238287326, + "c5": 13.148506580597399, + "c6": -18.408551399527397, + "c7": -17.225797428700538 }, - "vertexSeeds": { - "c1": 6.476526605240827, - "c2": 5.628366861153497, - "c3": 5.6549830409373785, - "c4": 6.51304699266312, - "c5": 5.7007140686055475, - "c6": 6.174471206741376, - "c7": 5.824574427601831 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836334, + "c3": 7.951918631530283, + "c4": 6.3615349052242225, + "c5": 4.7711511789181715, + "c6": 3.1807674526121112, + "c7": 1.5903837263060507 }, "rgb": [86, 146, 138] }, @@ -403440,23 +403440,23 @@ "year": 1812, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 10.687786059787804, - "c2": 3.4412487889833656, - "c3": 13.674950955475602, - "c4": -7.663259625326148, - "c5": 19.87432373253845, - "c6": -11.604216548942183, - "c7": 22.98331190656095 + "points": { + "c1": -0.7426327549254879, + "c2": 21.100868665567106, + "c3": 20.263647706622585, + "c4": -20.798032648236166, + "c5": 4.699043949225391, + "c6": 8.079721747808662, + "c7": 30.644982740591686 }, - "vertexSeeds": { - "c1": 10.261407573996939, - "c2": 10.949573973674065, - "c3": 10.789591550196793, - "c4": 10.752552294100918, - "c5": 10.967976120165167, - "c6": 11.243087392522577, - "c7": 11.56497188867095 + "offsets": { + "c1": 19.449838187702266, + "c2": 16.671289875173375, + "c3": 13.892741562644483, + "c4": 11.114193250115592, + "c5": 8.3356449375867, + "c6": 5.557096625057782, + "c7": 2.778548312528891 }, "rgb": [86, 146, 138] }, @@ -403467,23 +403467,23 @@ "year": 1812, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -31.614178942990076, - "c2": 10.564965182377343, - "c3": -32.567669250229415, - "c4": 23.014853197791737, - "c5": 5.395475398065997, - "c6": -10.4493869411234, - "c7": -6.16446084701678 + "points": { + "c1": -29.954647012132277, + "c2": 6.9536531329542655, + "c3": -0.3812279741718072, + "c4": -10.41968643477982, + "c5": 21.419733953142682, + "c6": -4.020444431791471, + "c7": 34.41848062264687 }, - "vertexSeeds": { - "c1": 4.624352331606217, - "c2": 4.624352331606217, - "c3": 4.624352331606217, - "c4": 4.624352331606217, - "c5": 4.624352331606217, - "c6": 4.624352331606217, - "c7": 4.624352331606217 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -403494,23 +403494,23 @@ "year": 1812, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 8.386063085045368, - "c2": -15.742893357686505, - "c3": 4.2420034119575725, - "c4": -11.574579487971423, - "c5": 23.38822809060108, - "c6": -5.708613353448818, - "c7": 28.44456245412592 + "points": { + "c1": 3.035384023212412, + "c2": -25.78254612003998, + "c3": -22.089583306355678, + "c4": -28.880353326726205, + "c5": 24.0981218746258, + "c6": -0.5751214678571692, + "c7": -8.81914610005244 }, - "vertexSeeds": { - "c1": 4.197976009868724, - "c2": 4.158998613108062, - "c3": 4.479668845827331, - "c4": 4.290421686552871, - "c5": 4.300776797457769, - "c6": 4.2507727429120195, - "c7": 4.228376787182413 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411925, + "c3": 5.409153952843279, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.163661581137305, + "c7": 1.081830790568658 }, "rgb": [86, 146, 138] }, @@ -403521,23 +403521,23 @@ "year": 1812, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -31.992475960748685, - "c2": -9.718399544142017, - "c3": -17.582833488511078, - "c4": -27.257330794443416, - "c5": -26.14021680595874, - "c6": -1.5877549053675217, - "c7": 11.268524864806423 + "points": { + "c1": 24.717266809093793, + "c2": -7.735503928595218, + "c3": -13.81911514426093, + "c4": -1.8691753350106453, + "c5": 33.076408948353254, + "c6": -27.973063158129015, + "c7": 28.932090577691284 }, - "vertexSeeds": { - "c1": 11.864573391581915, - "c2": 10.957146233475154, - "c3": 11.851925165113691, - "c4": 11.292783455018315, - "c5": 10.481996220855628, - "c6": 10.68129442715804, - "c7": 12.011162300360652 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.19833564493758, + "c3": 14.331946370781326, + "c4": 11.465557096625052, + "c5": 8.5991678224688, + "c6": 5.732778548312526, + "c7": 2.8663892741562504 }, "rgb": [58, 15, 49] }, @@ -403548,23 +403548,23 @@ "year": 1812, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": 6.212235439854911, - "c2": 14.283484445846788, - "c3": 7.987252404094548, - "c4": 11.353298154671627, - "c5": 5.1405379513773255, - "c6": 4.991399420762399, - "c7": 17.36777038656593 + "points": { + "c1": 0.13802996301011206, + "c2": -2.619130432175801, + "c3": 0.7417641448850851, + "c4": 4.797210859109526, + "c5": -19.49233302028612, + "c6": 1.336204962780581, + "c7": -12.08346910031009 }, - "vertexSeeds": { - "c1": 2.706105885120575, - "c2": 2.831917665256905, - "c3": 2.9131996441934684, - "c4": 2.9139778732943546, - "c5": 2.921961177855559, - "c6": 2.943032634731896, - "c7": 2.7472178852664215 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.3828016643550605, + "c3": 3.652334720295889, + "c4": 2.9218677762367093, + "c5": 2.1914008321775302, + "c6": 1.4609338881183587, + "c7": 0.7304669440591793 }, "rgb": [238, 201, 159] }, @@ -403575,23 +403575,23 @@ "year": 1812, "resistanceReported": false, "duration": 3974400, - "curveSeeds": { - "c1": 13.643735201028136, - "c2": -13.720194690783508, - "c3": -5.471342537276779, - "c4": 5.868604744093723, - "c5": 13.164892575369436, - "c6": 2.628918909062623, - "c7": -3.911277503528858 + "points": { + "c1": 2.4139788178941437, + "c2": 12.751116913944731, + "c3": 7.397146801479536, + "c4": -8.99890246475479, + "c5": -2.4347944751990287, + "c6": 7.84243963348538, + "c7": 9.611124781028398 }, - "vertexSeeds": { - "c1": 4.607259874822719, - "c2": 4.5972409317257465, - "c3": 4.600262215584966, - "c4": 4.617066099166586, - "c5": 4.623848082353185, - "c6": 4.617554553116149, - "c7": 4.6239388258825525 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613069, + "c3": 5.524734165510817, + "c4": 4.419787332408676, + "c5": 3.3148404993065346, + "c6": 2.209893666204393, + "c7": 1.1049468331021415 }, "rgb": [77, 76, 132] }, @@ -403602,23 +403602,23 @@ "year": 1812, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -15.597434435412506, - "c2": -33.05426994726861, - "c3": -4.605498045453228, - "c4": 31.42810983062769, - "c5": 9.952274563680056, - "c6": 6.423978103182549, - "c7": 28.671736274794434 + "points": { + "c1": 11.996807185286016, + "c2": -20.846701459145102, + "c3": 34.641005477687614, + "c4": -26.75670798138742, + "c5": 26.262344968338247, + "c6": 22.250406494340993, + "c7": -28.44422471089848 }, - "vertexSeeds": { - "c1": 3.981874038087731, - "c2": 4.019487995129041, - "c3": 3.8746706579020747, - "c4": 4.034045814616283, - "c5": 4.040961472726402, - "c6": 3.9234085386688253, - "c7": 3.9024865977985934 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446597, + "c3": 4.854368932038842, + "c4": 3.88349514563107, + "c5": 2.9126213592232983, + "c6": 1.941747572815543, + "c7": 0.9708737864077716 }, "rgb": [58, 15, 49] }, @@ -403629,23 +403629,23 @@ "year": 1812, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -16.29943217523566, - "c2": 17.98545950013804, - "c3": 0.08881828208444631, - "c4": -13.63026333940574, - "c5": -7.63260869015733, - "c6": -1.9108138566152384, - "c7": 25.761411649164096 + "points": { + "c1": -19.58968387045541, + "c2": -12.250772576692928, + "c3": -2.459566645352318, + "c4": 14.919532931450433, + "c5": 1.684963520350415, + "c6": 10.289003965758639, + "c7": 12.929298929480424 }, - "vertexSeeds": { - "c1": 7.602003879644357, - "c2": 7.689017139970274, - "c3": 7.714130871196493, - "c4": 7.532406811415087, - "c5": 7.575400303138296, - "c6": 7.5790621591704745, - "c7": 7.6158357541484465 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048533, + "c3": 9.223300970873769, + "c4": 7.378640776699002, + "c5": 5.533980582524298, + "c6": 3.689320388349532, + "c7": 1.844660194174766 }, "rgb": [86, 146, 138] }, @@ -403656,23 +403656,23 @@ "year": 1812, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 18.099255067659307, - "c2": -4.241388873540707, - "c3": 12.657001373868972, - "c4": 4.30067671893752, - "c5": 8.870727716368208, - "c6": -22.830936237686014, - "c7": 2.2787946800731937 + "points": { + "c1": -10.57148771391812, + "c2": 5.65643845459487, + "c3": 10.24827349308051, + "c4": -23.789227148063684, + "c5": 10.33207630790406, + "c6": 15.385929855456055, + "c7": -8.703358967802096 }, - "vertexSeeds": { - "c1": 2.7342101433494084, - "c2": 2.5493072078602843, - "c3": 2.50151814056818, - "c4": 2.7791526604744163, - "c5": 2.78983154819945, - "c6": 2.756893483852516, - "c7": 2.6613463687771537 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.049930651872398, + "c3": 3.3749422098936632, + "c4": 2.6999537679149355, + "c5": 2.0249653259362006, + "c6": 1.349976883957466, + "c7": 0.6749884419787311 }, "rgb": [238, 201, 159] }, @@ -403683,23 +403683,23 @@ "year": 1812, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 23.03069943447316, - "c2": 18.95917099489912, - "c3": -11.886639147272657, - "c4": -5.976744161093922, - "c5": 7.162453510406504, - "c6": -20.505692145405213, - "c7": -2.3695640497755015 + "points": { + "c1": 7.023411199626143, + "c2": 14.713680467942385, + "c3": 10.750776530567027, + "c4": 24.149709828726795, + "c5": -8.465300222960153, + "c6": -15.158441606897304, + "c7": 18.34912251087123 }, - "vertexSeeds": { - "c1": 6.203639538762528, - "c2": 6.10626284316452, - "c3": 6.256743506532529, - "c4": 6.198503978912713, - "c5": 6.292521250082045, - "c6": 6.359922537613138, - "c7": 6.2284299873070905 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353686, + "c3": 7.674526121128048, + "c4": 6.139620896902445, + "c5": 4.604715672676843, + "c6": 3.0698104484512396, + "c7": 1.534905224225603 }, "rgb": [58, 15, 49] }, @@ -403710,23 +403710,23 @@ "year": 1812, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 21.57101709528622, - "c2": 20.473592155908154, - "c3": -6.609154851030002, - "c4": -20.372553142892325, - "c5": 20.012450580603318, - "c6": -16.962389953431178, - "c7": -2.7904167582162103 + "points": { + "c1": -1.3917519858372351, + "c2": 7.588714267594693, + "c3": -18.34375535871223, + "c4": -12.755709687801268, + "c5": 10.569921890141412, + "c6": 17.559785047339904, + "c7": 28.251938827339924 }, - "vertexSeeds": { - "c1": 4.2851935170712085, - "c2": 4.433832801973572, - "c3": 4.552922786918964, - "c4": 4.56412434651923, - "c5": 4.551577378497886, - "c6": 4.476157957475257, - "c7": 4.480770979091409 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613032, + "c3": 5.524734165510866, + "c4": 4.419787332408688, + "c5": 3.314840499306522, + "c6": 2.209893666204344, + "c7": 1.104946833102166 }, "rgb": [86, 146, 138] }, @@ -403737,23 +403737,23 @@ "year": 1813, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 21.143898438344262, - "c2": -10.986742973426036, - "c3": 17.19636533990558, - "c4": -23.14505638575685, - "c5": 4.735180241813826, - "c6": 6.845378566792117, - "c7": -4.77843262042191 + "points": { + "c1": -27.0189592114801, + "c2": 3.974186128383, + "c3": -13.696754455184184, + "c4": -0.3370217963048461, + "c5": -1.17332995512011, + "c6": 8.259005229086188, + "c7": -18.61789215735763 }, - "vertexSeeds": { - "c1": 4.251225873648581, - "c2": 4.097705622741518, - "c3": 4.144380461044417, - "c4": 4.162492750130644, - "c5": 4.222711407639477, - "c6": 4.25210477486642, - "c7": 4.112333710630382 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889052, + "c3": 5.108645399907533, + "c4": 4.0869163199260345, + "c5": 3.0651872399445157, + "c6": 2.0434581599630173, + "c7": 1.0217290799815189 }, "rgb": [238, 201, 159] }, @@ -403764,23 +403764,23 @@ "year": 1813, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 2.0745428097830043, - "c2": -18.02878790627465, - "c3": -15.787088043989975, - "c4": -19.37311615636904, - "c5": -15.51687950867731, - "c6": 21.191802018410215, - "c7": -28.472822631154706 + "points": { + "c1": 9.018350502226994, + "c2": -30.417408703442906, + "c3": -9.960205325517148, + "c4": -15.346881577621495, + "c5": 27.42543791292001, + "c6": -17.54663427824157, + "c7": -28.26570940281679 }, - "vertexSeeds": { - "c1": 8.191371674206714, - "c2": 6.588171424806939, - "c3": 5.120728486075923, - "c4": 6.179941161722895, - "c5": 8.178909904223863, - "c6": 6.565876172866034, - "c7": 4.838704459103675 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697642, + "c3": 10.171058714748034, + "c4": 8.136846971798427, + "c5": 6.102635228848821, + "c6": 4.068423485899215, + "c7": 2.034211742949606 }, "rgb": [238, 201, 159] }, @@ -403791,23 +403791,23 @@ "year": 1813, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 11.298128784652874, - "c2": -16.898903206173692, - "c3": -14.052231228618366, - "c4": -5.8950345742666705, - "c5": 17.792105898969574, - "c6": 2.9768315326583377, - "c7": -24.261613048139 + "points": { + "c1": -0.2353080555346132, + "c2": 0.41559587017775357, + "c3": 9.612335510215047, + "c4": -26.344758858553014, + "c5": -13.887020836164169, + "c6": 6.182479139142366, + "c7": -19.096723935240206 }, - "vertexSeeds": { - "c1": 5.3908957376860585, - "c2": 6.219755862755413, - "c3": 5.6608701817588045, - "c4": 6.045347906059635, - "c5": 5.785565585006045, - "c6": 5.302941964765855, - "c7": 5.935817475450899 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.959778085991683, + "c3": 7.4664817383263955, + "c4": 5.973185390661121, + "c5": 4.479889042995835, + "c6": 2.9865926953305606, + "c7": 1.493296347665286 }, "rgb": [238, 201, 159] }, @@ -403818,23 +403818,23 @@ "year": 1813, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -38.30297894908901, - "c2": -24.422322772311567, - "c3": 12.323285752143555, - "c4": 0.7122180509590592, - "c5": -4.382666451239054, - "c6": -7.362369112467533, - "c7": -3.778477566376573 + "points": { + "c1": 38.01791746605319, + "c2": 6.906851833128734, + "c3": -15.328435471338004, + "c4": 5.9166080505533145, + "c5": 0.5520710033821672, + "c6": 6.067304997793876, + "c7": -18.646874709781837 }, - "vertexSeeds": { - "c1": 9.993522651506483, - "c2": 10.166458984020933, - "c3": 9.93467386389405, - "c4": 10.157172026484625, - "c5": 10.58761989752935, - "c6": 10.577112638842502, - "c7": 9.836509535563035 + "offsets": { + "c1": 18.41423948220065, + "c2": 15.78363384188626, + "c3": 13.153028201571896, + "c4": 10.522422561257507, + "c5": 7.8918169209431435, + "c6": 5.261211280628753, + "c7": 2.6306056403143767 }, "rgb": [238, 201, 159] }, @@ -403845,23 +403845,23 @@ "year": 1813, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 8.594862137412921, - "c2": 2.6335063648603274, - "c3": -7.477134685111249, - "c4": -12.91627396544338, - "c5": 26.665712161337947, - "c6": 28.470247709514194, - "c7": -5.414273056953466 + "points": { + "c1": -0.7793060742740856, + "c2": -16.55197426411869, + "c3": 27.846395124142663, + "c4": -17.890087134213353, + "c5": 19.42882120712866, + "c6": -23.814111875142785, + "c7": 29.292201531113985 }, - "vertexSeeds": { - "c1": 8.016259536422506, - "c2": 7.8689955381652235, - "c3": 7.854319012126111, - "c4": 7.874224763430898, - "c5": 8.009077184342436, - "c6": 7.984749038826075, - "c7": 7.881991022802627 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732338, + "c3": 9.616273693943569, + "c4": 7.693018955154869, + "c5": 5.769764216366169, + "c6": 3.846509477577469, + "c7": 1.9232547387886998 }, "rgb": [238, 201, 159] }, @@ -403872,23 +403872,23 @@ "year": 1813, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 1.3481332102621337, - "c2": -29.477427980733925, - "c3": -18.70843227994984, - "c4": -2.077804571943364, - "c5": -7.645420808426646, - "c6": -4.250801656690044, - "c7": -1.9597018552527317 + "points": { + "c1": -19.79090123499757, + "c2": 26.224987545329668, + "c3": -20.73780681194677, + "c4": 1.581437290321098, + "c5": 13.038079943950422, + "c6": 18.865324330051777, + "c7": -3.6571602380530877 }, - "vertexSeeds": { - "c1": 4.825476041230994, - "c2": 4.936103537751639, - "c3": 5.002405426083814, - "c4": 4.88250779954616, - "c5": 4.866448369723271, - "c6": 4.996361923836884, - "c7": 4.882901406474377 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457713, + "c3": 6.010171058714743, + "c4": 4.808136846971791, + "c5": 3.6061026352288565, + "c6": 2.4040684234859047, + "c7": 1.2020342117429523 }, "rgb": [238, 201, 159] }, @@ -403899,23 +403899,23 @@ "year": 1812, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -1.7379063981882013, - "c2": 4.728403823775402, - "c3": 10.818459270750914, - "c4": 13.141759183098813, - "c5": 2.3950084045634057, - "c6": 16.446246251230832, - "c7": 7.534622222228478 + "points": { + "c1": 13.196340015522075, + "c2": 9.63574597591537, + "c3": -4.423464568092562, + "c4": 8.481207369603254, + "c5": -22.731408373563134, + "c6": 11.245276077888143, + "c7": 10.236589232730601 }, - "vertexSeeds": { - "c1": 8.346935935150281, - "c2": 8.358633296095016, - "c3": 8.429465789029575, - "c4": 8.306393721560418, - "c5": 8.304279095761832, - "c6": 8.427726102980161, - "c7": 8.3896346299284 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.06657420249649, + "c3": 10.055478502080458, + "c4": 8.044382801664327, + "c5": 6.033287101248295, + "c6": 4.022191400832163, + "c7": 2.011095700416132 }, "rgb": [58, 15, 49] }, @@ -403926,23 +403926,23 @@ "year": 1813, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 18.922690623594253, - "c2": 21.049256863040295, - "c3": 0.1272922378767909, - "c4": -15.531641208198161, - "c5": -27.22123343982826, - "c6": -25.69066489346821, - "c7": 18.38061589603259 + "points": { + "c1": 23.650417804007102, + "c2": 9.575745284421888, + "c3": -9.305232568912135, + "c4": -4.043094752825478, + "c5": 9.425135370808409, + "c6": 15.842676795615201, + "c7": 3.432056263405318 }, - "vertexSeeds": { - "c1": 2.8562176165803113, - "c2": 2.8562176165803113, - "c3": 2.8562176165803113, - "c4": 2.8562176165803113, - "c5": 2.8562176165803113, - "c6": 2.8562176165803113, - "c7": 2.8562176165803113 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -403953,23 +403953,23 @@ "year": 1813, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 23.173291813330174, - "c2": 19.947807419574637, - "c3": -23.022322678174096, - "c4": -23.637406676837163, - "c5": -15.826059752097299, - "c6": 3.0108296088668354, - "c7": 27.33222724709566 + "points": { + "c1": 13.087330429276015, + "c2": -6.789766459129137, + "c3": -27.09146161941833, + "c4": 18.216718833011512, + "c5": 18.854577511661837, + "c6": 1.8983819830487647, + "c7": 9.270052581044617 }, - "vertexSeeds": { - "c1": 7.050853563575054, - "c2": 7.013496790267907, - "c3": 7.3466351127134155, - "c4": 7.283442409461066, - "c5": 6.915478838774657, - "c6": 6.89220891473592, - "c7": 7.093589737562145 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -403980,23 +403980,23 @@ "year": 1813, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -16.451897074704146, - "c2": 17.370488164177928, - "c3": -23.664730067201848, - "c4": 26.274750566416223, - "c5": 21.184406595049126, - "c6": 26.28042245600397, - "c7": 11.051570462830135 + "points": { + "c1": 24.684472933895876, + "c2": -1.339973987569099, + "c3": 1.2125488864323302, + "c4": 25.67230439653288, + "c5": -4.3536387717247464, + "c6": -3.2141999942065844, + "c7": -29.091780154172405 }, - "vertexSeeds": { - "c1": 4.085074023377314, - "c2": 4.152901269721239, - "c3": 4.4593710118350645, - "c4": 4.048522379329631, - "c5": 4.227392495696552, - "c6": 4.5550530064966, - "c7": 4.3226015198176135 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.6019417475728135, + "c3": 5.501618122977343, + "c4": 4.401294498381879, + "c5": 3.3009708737864067, + "c6": 2.2006472491909355, + "c7": 1.1003236245954713 }, "rgb": [77, 76, 132] }, @@ -404007,23 +404007,23 @@ "year": 1813, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 3.5907472241054847, - "c2": -14.870624594847271, - "c3": 10.389283043442028, - "c4": 25.278227737963363, - "c5": -6.345398397490026, - "c6": 20.74293552336151, - "c7": -7.115628397731761 + "points": { + "c1": 8.588096066964304, + "c2": 1.0758678361900564, + "c3": -26.55834688601476, + "c4": -19.387904149610332, + "c5": 8.919169163413777, + "c6": -4.14724156632731, + "c7": -24.8566019173601 }, - "vertexSeeds": { - "c1": 14.563759161991783, - "c2": 13.914845017817967, - "c3": 14.417897465956244, - "c4": 14.219009019154209, - "c5": 14.233223968326017, - "c6": 14.585232748542031, - "c7": 13.914920078180426 + "offsets": { + "c1": 24.401294498381876, + "c2": 20.91539528432734, + "c3": 17.42949607027274, + "c4": 13.943596856218207, + "c5": 10.45769764216367, + "c6": 6.971798428109071, + "c7": 3.4858992140545353 }, "rgb": [222, 0, 59] }, @@ -404034,23 +404034,23 @@ "year": 1813, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 11.149529715734868, - "c2": -15.334849593266007, - "c3": -27.708190145142144, - "c4": 17.92571025214954, - "c5": -3.8703458602110032, - "c6": -8.116102991028221, - "c7": 12.266019462096533 + "points": { + "c1": 6.036008599239889, + "c2": 26.89835369648338, + "c3": -0.4574321683623772, + "c4": -4.011469285536101, + "c5": 29.6307513779028, + "c6": -23.468391714577024, + "c7": 24.408233456681902 }, - "vertexSeeds": { - "c1": 3.770882596756268, - "c2": 3.730541465067308, - "c3": 3.840430318648905, - "c4": 3.579096324043498, - "c5": 4.06150545994908, - "c6": 4.197614720165316, - "c7": 3.798393302790945 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374016, + "c4": 4.068423485899212, + "c5": 3.051317614424407, + "c6": 2.0342117429496027, + "c7": 1.0171058714747985 }, "rgb": [58, 15, 49] }, @@ -404061,23 +404061,23 @@ "year": 1812, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -1.4741705200504391, - "c2": -23.276032039398718, - "c3": -20.98745066940704, - "c4": 25.030126507584388, - "c5": 22.72785310351036, - "c6": 9.067473611996316, - "c7": 11.476941743683039 + "points": { + "c1": 8.905730900735964, + "c2": 15.965984351374853, + "c3": 20.903777323951697, + "c4": 9.110189337054326, + "c5": 4.406666363921005, + "c6": -17.31539310128248, + "c7": -16.170777715050654 }, - "vertexSeeds": { - "c1": 0.957273763049204, - "c2": 0.9684492172567678, - "c3": 0.934564371566258, - "c4": 0.8614496696238673, - "c5": 0.9363480455051401, - "c6": 0.9130057350621118, - "c7": 0.8779233199818488 + "offsets": { + "c1": 1.650485436893204, + "c2": 1.4147018030513177, + "c3": 1.1789181692094315, + "c4": 0.9431345353675451, + "c5": 0.7073509015256588, + "c6": 0.47156726768377255, + "c7": 0.23578363384188628 }, "rgb": [222, 0, 59] }, @@ -404088,23 +404088,23 @@ "year": 1813, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 23.38945872512192, - "c2": -14.179314894541763, - "c3": 21.693144361157906, - "c4": -10.949547332497424, - "c5": -18.698963524693248, - "c6": 1.1595937919107335, - "c7": -10.449523981066609 + "points": { + "c1": 2.0597769905607883, + "c2": 0.6354196441964994, + "c3": 7.020915353307046, + "c4": 1.5538352085687208, + "c5": -15.193209013083347, + "c6": 8.79961365701984, + "c7": -1.8287560030811818 }, - "vertexSeeds": { - "c1": 6.789959304958016, - "c2": 6.782561178707386, - "c3": 6.745648946612207, - "c4": 6.758395698093278, - "c5": 6.723498254950231, - "c6": 6.724219592719857, - "c7": 6.730468462552102 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198347, + "c3": 8.159963014331966, + "c4": 6.5279704114655885, + "c5": 4.895977808599137, + "c6": 3.263985205732758, + "c7": 1.631992602866379 }, "rgb": [222, 0, 59] }, @@ -404115,23 +404115,23 @@ "year": 1812, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -23.641054389103193, - "c2": -8.076144631446287, - "c3": 15.763168949271915, - "c4": 11.969008963980421, - "c5": 9.62543360223222, - "c6": 7.613653499632374, - "c7": 22.969418543914983 + "points": { + "c1": -16.529868850958977, + "c2": 20.692134117086106, + "c3": 3.830088958136667, + "c4": 10.090060506583335, + "c5": -8.75180903809914, + "c6": 22.70124591209695, + "c7": -23.929483791612093 }, - "vertexSeeds": { - "c1": 8.055557895973802, - "c2": 8.008405813471958, - "c3": 8.010444560074351, - "c4": 8.073160974955528, - "c5": 7.990923614546279, - "c6": 7.97201797764217, - "c7": 8.039891025364096 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812773, + "c3": 9.662505779010658, + "c4": 7.730004623208544, + "c5": 5.797503467406344, + "c6": 3.865002311604229, + "c7": 1.9325011558021146 }, "rgb": [222, 0, 59] }, @@ -404142,23 +404142,23 @@ "year": 1812, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -14.137441848202894, - "c2": 16.368948770202984, - "c3": -13.049979380430374, - "c4": 14.284063543140377, - "c5": -16.693127289369457, - "c6": 17.8566327367966, - "c7": -18.36929052255307 + "points": { + "c1": 19.97116108412756, + "c2": 17.013429034293218, + "c3": 3.858537460161447, + "c4": -11.647581596858867, + "c5": -15.032641235232964, + "c6": 4.806422968054676, + "c7": 2.632934033293129 }, - "vertexSeeds": { - "c1": 1.5544041450777202, - "c2": 1.5544041450777202, - "c3": 1.5544041450777202, - "c4": 1.5544041450777202, - "c5": 1.5544041450777202, - "c6": 1.5544041450777202, - "c7": 1.5544041450777202 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -404169,23 +404169,23 @@ "year": 1812, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -10.596017336962703, - "c2": 1.0957551831862382, - "c3": 9.538553688849184, - "c4": -2.5448486097017877, - "c5": 16.90930547289613, - "c6": -18.75454363557693, - "c7": -8.091832664348619 + "points": { + "c1": -6.929584182537496, + "c2": 18.11558191313476, + "c3": 21.97117593572724, + "c4": -24.462628553521213, + "c5": -14.867850652643776, + "c6": 22.567814559859364, + "c7": -11.523183278028107 }, - "vertexSeeds": { - "c1": 6.577674006534845, - "c2": 6.3127412960927085, - "c3": 6.587678465964412, - "c4": 6.592186252837942, - "c5": 6.374720569496161, - "c6": 6.385531145620828, - "c7": 6.6384950883936105 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916769, + "c3": 7.998150716597323, + "c4": 6.398520573277847, + "c5": 4.7988904299584, + "c6": 3.1992602866389235, + "c7": 1.599630143319476 }, "rgb": [77, 76, 132] }, @@ -404196,23 +404196,23 @@ "year": 1812, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": -0.2389697312296306, - "c2": -9.770772843035225, - "c3": 3.032562177138878, - "c4": 3.3572737946743416, - "c5": 20.245980393292186, - "c6": 3.5039189897069143, - "c7": 18.653556432792 + "points": { + "c1": -8.477942944910138, + "c2": 15.762945020956963, + "c3": -10.434175686889956, + "c4": 18.874541169317084, + "c5": -21.164738187309016, + "c6": 6.979164160232173, + "c7": -10.619955685306975 }, - "vertexSeeds": { - "c1": 3.182224649478023, - "c2": 3.198542852945895, - "c3": 3.5735702223933568, - "c4": 3.5320782119444383, - "c5": 3.325986549978531, - "c6": 3.2793709091577794, - "c7": 3.3549968415341906 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767917, + "c4": 3.458159963014335, + "c5": 2.593619972260746, + "c6": 1.729079981507164, + "c7": 0.864539990753582 }, "rgb": [222, 0, 59] }, @@ -404223,23 +404223,23 @@ "year": 1813, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -16.258836243602666, - "c2": -12.29097683448844, - "c3": -24.985885561295433, - "c4": -1.8460488369854957, - "c5": -16.893395012877413, - "c6": -7.493114145218772, - "c7": -22.361125344471205 + "points": { + "c1": -7.837145184150533, + "c2": -29.39860183397036, + "c3": -16.076173819440502, + "c4": 8.327342476457964, + "c5": 11.085678364015259, + "c6": 25.61537525207551, + "c7": -10.50325405985474 }, - "vertexSeeds": { - "c1": 10.174928986757516, - "c2": 9.887028342429671, - "c3": 10.456840499155078, - "c4": 10.545706948426497, - "c5": 9.864509890872478, - "c6": 9.88473606536555, - "c7": 10.179564472665316 + "offsets": { + "c1": 18.155339805825243, + "c2": 15.561719833564483, + "c3": 12.968099861303761, + "c4": 10.374479889043002, + "c5": 7.780859916782242, + "c6": 5.18723994452152, + "c7": 2.59361997226076 }, "rgb": [238, 201, 159] }, @@ -404250,23 +404250,23 @@ "year": 1813, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -4.03933949106537, - "c2": 7.4930948110360305, - "c3": -10.925185781078412, - "c4": -8.181990194070337, - "c5": 3.7518725127131702, - "c6": 16.188301824936417, - "c7": 6.026453877614593 + "points": { + "c1": 29.57556780861934, + "c2": 14.570778122093671, + "c3": -18.731720720010948, + "c4": 8.087415108104345, + "c5": -19.154144379100455, + "c6": 28.078708084289495, + "c7": 9.312781099684223 }, - "vertexSeeds": { - "c1": 0.07493573964216774, - "c2": 0.07456643807706277, - "c3": 0.06747998132132407, - "c4": 0.07738217556665772, - "c5": 0.07524864051383291, - "c6": 0.07721313278151197, - "c7": 0.07583791439267296 + "offsets": { + "c1": 0.16181229773462785, + "c2": 0.13869625520110954, + "c3": 0.11558021266759134, + "c4": 0.09246417013407301, + "c5": 0.06934812760055484, + "c6": 0.04623208506703651, + "c7": 0.023116042533518327 }, "rgb": [77, 76, 132] }, @@ -404277,23 +404277,23 @@ "year": 1813, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -18.395272484003307, - "c2": -9.798858645798411, - "c3": 4.100663247955254, - "c4": 5.231205316355158, - "c5": 15.086497281803432, - "c6": -14.471862463195334, - "c7": -4.261280380427252 + "points": { + "c1": 15.752740163160539, + "c2": -10.446631417292856, + "c3": -10.214700136628636, + "c4": 4.954961153627167, + "c5": -5.0911360664464596, + "c6": -19.766701250259544, + "c7": 24.030235627309104 }, - "vertexSeeds": { - "c1": 6.012330502362923, - "c2": 6.361065308566231, - "c3": 5.93571040203133, - "c4": 6.111094167249503, - "c5": 6.308107680147966, - "c6": 6.038940464542198, - "c7": 6.246288269849066 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273222, + "c3": 7.628294036061036, + "c4": 6.102635228848824, + "c5": 4.576976421636611, + "c6": 3.0513176144244247, + "c7": 1.5256588072122124 }, "rgb": [77, 76, 132] }, @@ -404304,23 +404304,23 @@ "year": 1813, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -19.425352404082588, - "c2": 8.029959956877324, - "c3": -3.1687972617269224, - "c4": 23.641029603058136, - "c5": 23.11427771750023, - "c6": 8.139666253993457, - "c7": -7.709612116213737 + "points": { + "c1": -7.420451293970807, + "c2": -17.900884758165844, + "c3": -8.11352754169916, + "c4": -13.103621677749599, + "c5": -25.372773566834862, + "c6": 1.0418268528712886, + "c7": 17.968356112584885 }, - "vertexSeeds": { - "c1": 10.779775336356657, - "c2": 10.716038348778191, - "c3": 10.548318105422208, - "c4": 10.694554969732375, - "c5": 10.784177459568623, - "c6": 10.518913476395591, - "c7": 10.723263644197218 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403605, + "c3": 12.875635691169672, + "c4": 10.300508552935737, + "c5": 7.725381414701802, + "c6": 5.1502542764678685, + "c7": 2.5751271382339342 }, "rgb": [77, 76, 132] }, @@ -404331,23 +404331,23 @@ "year": 1813, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 25.18847233311108, - "c2": 5.855971710211229, - "c3": 0.570968239929428, - "c4": 22.287393733124, - "c5": -12.460347578650058, - "c6": 0.7405862717577918, - "c7": -21.582868741198155 + "points": { + "c1": -23.65799191488027, + "c2": -17.1683505491634, + "c3": -15.684776319723023, + "c4": 9.371158334407838, + "c5": 8.50600121760823, + "c6": -23.52187854257219, + "c7": -14.982656017578083 }, - "vertexSeeds": { - "c1": 2.5489793914054055, - "c2": 2.643076471521251, - "c3": 2.7321856298523484, - "c4": 2.5605952256602698, - "c5": 2.6998548304242074, - "c6": 2.6324244010888527, - "c7": 2.5558060449404554 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.773925104022189, + "c5": 2.0804438280166457, + "c6": 1.3869625520110944, + "c7": 0.6934812760055434 }, "rgb": [58, 15, 49] }, @@ -404358,23 +404358,23 @@ "year": 1812, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": -14.119457960992769, - "c2": 17.253907682422792, - "c3": 6.249201485757261, - "c4": 12.53887904226999, - "c5": -14.302714104190569, - "c6": -7.903359506185101, - "c7": -6.601418578049099 + "points": { + "c1": -6.59225870971839, + "c2": -22.875916849742577, + "c3": -15.873286408687932, + "c4": -3.3476674851055037, + "c5": 12.582246948777318, + "c6": -16.775149125832186, + "c7": -17.153007347472162 }, - "vertexSeeds": { - "c1": 3.0941878695700042, - "c2": 3.09697618987634, - "c3": 2.9812987533004778, - "c4": 3.1209043036179747, - "c5": 3.1435588146230202, - "c6": 3.137736931163271, - "c7": 3.1228457473025806 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.5214979195561655, + "c3": 3.7679149329634782, + "c4": 3.0143319463707776, + "c5": 2.26074895977809, + "c6": 1.5071659731853888, + "c7": 0.7535829865927011 }, "rgb": [238, 201, 159] }, @@ -404385,23 +404385,23 @@ "year": 1813, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": 12.77696359124981, - "c2": -21.559422928849706, - "c3": 1.653590056465493, - "c4": 6.884528140999649, - "c5": -21.478912595219818, - "c6": -4.947347873987773, - "c7": -7.730905389118835 + "points": { + "c1": -21.185347931071014, + "c2": 20.523908711081233, + "c3": 15.759968883802337, + "c4": 16.816866862897946, + "c5": -18.639781105390547, + "c6": 9.679522691097446, + "c7": -22.897291470570824 }, - "vertexSeeds": { - "c1": 14.250685568681211, - "c2": 14.79828017436748, - "c3": 14.759666062272185, - "c4": 13.962223448779891, - "c5": 14.679143943321687, - "c6": 13.987454812591245, - "c7": 14.359469176654919 + "offsets": { + "c1": 24.983818770226538, + "c2": 21.414701803051344, + "c3": 17.84558483587609, + "c4": 14.276467868700895, + "c5": 10.707350901525645, + "c6": 7.138233934350447, + "c7": 3.56911696717525 }, "rgb": [86, 146, 138] }, @@ -404412,23 +404412,23 @@ "year": 1813, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 17.93777964298178, - "c2": 12.161040731720398, - "c3": -17.033482218768917, - "c4": -24.418991273288714, - "c5": 19.783554211675906, - "c6": 19.852723121424894, - "c7": 9.548074209988933 + "points": { + "c1": -11.249317587945916, + "c2": 19.7839115327483, + "c3": -3.9815976931510306, + "c4": 1.4915510001438719, + "c5": -0.12524787366044876, + "c6": -23.827400641514288, + "c7": -25.15644049160583 }, - "vertexSeeds": { - "c1": 8.18329708520357, - "c2": 8.173274682540836, - "c3": 8.674072997963997, - "c4": 8.503675352878764, - "c5": 8.639970775498847, - "c6": 8.520880223145259, - "c7": 8.339178431680901 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140087, + "c3": 10.425335182616744, + "c4": 8.3402681460934, + "c5": 6.25520110957003, + "c6": 4.170134073046687, + "c7": 2.0850670365233435 }, "rgb": [86, 146, 138] }, @@ -404439,23 +404439,23 @@ "year": 1813, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -23.652747244888808, - "c2": -23.168806971927104, - "c3": -22.024408165106877, - "c4": -28.029177503389313, - "c5": -19.785151645846845, - "c6": 10.55977776258159, - "c7": 6.287747308898197 + "points": { + "c1": 15.999958506178942, + "c2": -29.049509861808, + "c3": 14.078492662849015, + "c4": 7.1982291985691305, + "c5": -12.728166258433628, + "c6": -3.908057697426738, + "c7": 9.703893816883848 }, - "vertexSeeds": { - "c1": 9.158553296087627, - "c2": 9.200948749350971, - "c3": 9.041685277874175, - "c4": 9.181218950988475, - "c5": 8.55813713081776, - "c6": 9.012229303519268, - "c7": 8.995556704695387 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105416, + "c3": 10.980120203421187, + "c4": 8.784096162736937, + "c5": 6.588072122052708, + "c6": 4.39204808136848, + "c7": 2.196024040684251 }, "rgb": [238, 201, 159] }, @@ -404466,23 +404466,23 @@ "year": 1813, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": -20.144880702249836, - "c2": 17.288204871409917, - "c3": 8.210556570150775, - "c4": -13.914455297491003, - "c5": -4.044701675834954, - "c6": 18.65594147303738, - "c7": -12.573757961168011 + "points": { + "c1": 1.1383461721835921, + "c2": 11.078760679927122, + "c3": -2.8525168703708417, + "c4": -20.224776414795215, + "c5": -7.639929811873731, + "c6": 13.647968106438363, + "c7": -9.147681951248066 }, - "vertexSeeds": { - "c1": 13.18099694311858, - "c2": 13.132300418029024, - "c3": 13.061347445651089, - "c4": 13.178282769635675, - "c5": 13.071442244588988, - "c6": 13.319262924919645, - "c7": 13.183208192805862 + "offsets": { + "c1": 22.297734627831716, + "c2": 19.112343966712956, + "c3": 15.926953305594063, + "c4": 12.741562644475305, + "c5": 9.556171983356412, + "c6": 6.370781322237653, + "c7": 3.1853906611188925 }, "rgb": [77, 76, 132] }, @@ -404493,23 +404493,23 @@ "year": 1813, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": -19.906678781552554, - "c2": -17.714011958095206, - "c3": 4.27417598979304, - "c4": 2.264974972039571, - "c5": 12.860268725194356, - "c6": 8.860177490870726, - "c7": 9.332375355566683 + "points": { + "c1": 19.025741996437812, + "c2": -21.411863910338926, + "c3": -1.2030081268480153, + "c4": -4.602130515135322, + "c5": 19.049502126266727, + "c6": 3.8879441838923796, + "c7": -16.18763238870452 }, - "vertexSeeds": { - "c1": 6.274098979772977, - "c2": 6.167453678020803, - "c3": 6.22556810173701, - "c4": 6.176390894096582, - "c5": 6.177940261701548, - "c6": 6.25157558804672, - "c7": 6.160272470846967 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072122, + "c3": 7.512713823393435, + "c4": 6.010171058714747, + "c5": 4.507628294036061, + "c6": 3.0050855293573737, + "c7": 1.5025427646786869 }, "rgb": [58, 15, 49] }, @@ -404520,23 +404520,23 @@ "year": 1813, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": -11.844575439234225, - "c2": 3.206196235658453, - "c3": 0.7291172279465243, - "c4": -3.1678100585747657, - "c5": -9.317920780149755, - "c6": -5.033740897882643, - "c7": 14.396610721072818 + "points": { + "c1": 13.189808911997936, + "c2": -12.089694604831802, + "c3": -19.85009073011303, + "c4": -14.651948050482073, + "c5": 12.971597026627947, + "c6": 10.937862709926982, + "c7": 20.369755401284735 }, - "vertexSeeds": { - "c1": 7.129266673637273, - "c2": 7.126103207890471, - "c3": 7.168368105212373, - "c4": 7.073419243429602, - "c5": 7.117859195445882, - "c6": 7.1715027749074425, - "c7": 7.061185437993455 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123446, + "c3": 8.691631992602879, + "c4": 6.953305594082312, + "c5": 5.214979195561701, + "c6": 3.476652797041134, + "c7": 1.738326398520567 }, "rgb": [238, 201, 159] }, @@ -404547,23 +404547,23 @@ "year": 1813, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -12.955639282993294, - "c2": -1.776811208788878, - "c3": 18.025519798844936, - "c4": -20.233033849768216, - "c5": 0.1873706723282531, - "c6": 1.4380688696854236, - "c7": -16.436530387554296 + "points": { + "c1": -12.063859477344575, + "c2": 4.180939952255898, + "c3": 16.754421638349175, + "c4": -12.159895791669152, + "c5": -9.248937896372796, + "c6": 3.4678385050371645, + "c7": 14.317751288016058 }, - "vertexSeeds": { - "c1": 6.7810880829015545, - "c2": 6.7810880829015545, - "c3": 6.7810880829015545, - "c4": 6.7810880829015545, - "c5": 6.7810880829015545, - "c6": 6.7810880829015545, - "c7": 6.7810880829015545 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -404574,23 +404574,23 @@ "year": 1813, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 5.88923060496715, - "c2": -2.2017785499828335, - "c3": 15.066780068953168, - "c4": -24.94613123900455, - "c5": 2.177552930006417, - "c6": 6.386673574838856, - "c7": -6.82468817584633 + "points": { + "c1": 20.107315708139087, + "c2": -0.9991625133872333, + "c3": 2.702126869391158, + "c4": 26.05896155748967, + "c5": 16.825615230371806, + "c6": 14.40175650532888, + "c7": -4.4133798103118025 }, - "vertexSeeds": { - "c1": 4.427785153295695, - "c2": 4.6040473516885365, - "c3": 4.269634196513394, - "c4": 4.354296738937383, - "c5": 4.512055329792103, - "c6": 4.301583593900757, - "c7": 4.559836352068835 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653261, + "c3": 5.547850208044379, + "c4": 4.438280166435504, + "c5": 3.3287101248266304, + "c6": 2.219140083217748, + "c7": 1.109570041608874 }, "rgb": [58, 15, 49] }, @@ -404601,23 +404601,23 @@ "year": 1813, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": -3.0611380473177476, - "c2": 29.20456533312312, - "c3": -6.789036379570881, - "c4": 15.515111140018362, - "c5": -10.108696746081414, - "c6": 30.4930117008249, - "c7": 28.720779102425546 + "points": { + "c1": 33.913557304932176, + "c2": 15.136316783852486, + "c3": 42.15838792382623, + "c4": -18.756775785860764, + "c5": 25.113546406623193, + "c6": -11.946201007405364, + "c7": -47.30087291038811 }, - "vertexSeeds": { - "c1": 8.678514844879434, - "c2": 10.814482518465283, - "c3": 10.057697195585833, - "c4": 8.550180629612656, - "c5": 10.119271176373225, - "c6": 8.962032976985261, - "c7": 10.505918245888719 + "offsets": { + "c1": 18.058252427184467, + "c2": 15.478502080443826, + "c3": 12.898751733703186, + "c4": 10.319001386962546, + "c5": 7.739251040221913, + "c6": 5.159500693481273, + "c7": 2.579750346740633 }, "rgb": [58, 15, 49] }, @@ -404628,23 +404628,23 @@ "year": 1812, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": 16.60157938145922, - "c2": -11.177072524891877, - "c3": 9.291817749237978, - "c4": -10.747337708202956, - "c5": 7.814556650382656, - "c6": 12.433268312296939, - "c7": 15.471785509058162 + "points": { + "c1": -8.686045019605288, + "c2": 8.658433260758567, + "c3": 9.390877004915776, + "c4": -17.014785768060367, + "c5": -13.255032855469105, + "c6": 11.353394033686126, + "c7": -2.160129405206721 }, - "vertexSeeds": { - "c1": 0.3283716869964444, - "c2": 0.3200041648424635, - "c3": 0.3150486127520723, - "c4": 0.3416747700758914, - "c5": 0.34163638612580355, - "c6": 0.31701178048923045, - "c7": 0.337604934335452 + "offsets": { + "c1": 0.6148867313915858, + "c2": 0.5270457697642168, + "c3": 0.43920480813684687, + "c4": 0.35136384650947794, + "c5": 0.26352288488210784, + "c6": 0.17568192325473897, + "c7": 0.08784096162737003 }, "rgb": [86, 146, 138] }, @@ -404655,23 +404655,23 @@ "year": 1812, "resistanceReported": false, "duration": 6566400, - "curveSeeds": { - "c1": -0.2494661116447361, - "c2": 14.452986716761863, - "c3": -8.3350379281852, - "c4": 16.47381933852872, - "c5": -1.7206397783255483, - "c6": -16.139971568140055, - "c7": -12.600170643223391 + "points": { + "c1": -6.748564659444183, + "c2": -9.361634511184207, + "c3": -9.608051992574342, + "c4": 1.1136565094637731, + "c5": -17.334197069795167, + "c6": 18.088433655935198, + "c7": -16.751494998660416 }, - "vertexSeeds": { - "c1": 7.149926214998651, - "c2": 6.938712736521795, - "c3": 7.197625572843651, - "c4": 7.073563367277759, - "c5": 7.257330918587956, - "c6": 7.494807428109953, - "c7": 6.910620810271169 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [58, 15, 49] }, @@ -404682,23 +404682,23 @@ "year": 1813, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": 2.8090022537782176, - "c2": 4.309855324517088, - "c3": -14.55061224056302, - "c4": 32.00251346369356, - "c5": 28.529507954018797, - "c6": 17.617004774381535, - "c7": -10.777970546904964 + "points": { + "c1": 38.517639222223295, + "c2": 30.992005420500206, + "c3": -33.02614862136819, + "c4": -30.335658794102354, + "c5": -11.830634370747571, + "c6": -37.85560350094703, + "c7": 37.44282886301541 }, - "vertexSeeds": { - "c1": 7.095695375033371, - "c2": 7.149512622927004, - "c3": 7.1503345447916775, - "c4": 7.14766059991957, - "c5": 7.17331381270988, - "c6": 7.140139489150382, - "c7": 7.133963709211739 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922311, + "c3": 8.576051779935236, + "c4": 6.860841423948161, + "c5": 5.145631067961086, + "c6": 3.430420711974149, + "c7": 1.7152103559870746 }, "rgb": [58, 15, 49] }, @@ -404709,23 +404709,23 @@ "year": 1813, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 34.41369533704329, - "c2": 19.634458237110188, - "c3": 0.75276589912189, - "c4": 38.164900280777175, - "c5": -25.344877721959378, - "c6": 4.927383573780496, - "c7": 26.438211728161278 + "points": { + "c1": 14.450522487455231, + "c2": 28.077275353618276, + "c3": -21.28125099347225, + "c4": -1.515373565975601, + "c5": -25.57184268361293, + "c6": -12.684919381226653, + "c7": 29.52690538669397 }, - "vertexSeeds": { - "c1": 10.456760860254915, - "c2": 10.62368240065765, - "c3": 10.706120321220968, - "c4": 10.945408749182365, - "c5": 10.82584575651981, - "c6": 10.832245998527055, - "c7": 10.85634133958009 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.700416088765582, + "c3": 13.083680073971369, + "c4": 10.46694405917708, + "c5": 7.850208044382791, + "c6": 5.233472029588579, + "c7": 2.6167360147942893 }, "rgb": [86, 146, 138] }, @@ -404736,23 +404736,23 @@ "year": 1813, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": 0.9541670258361847, - "c2": -1.617353480467104, - "c3": -13.092906881828748, - "c4": -10.904594483726285, - "c5": 14.235205416102662, - "c6": -6.649643832034142, - "c7": -7.438278355129233 + "points": { + "c1": 3.0856661960143086, + "c2": -5.343520052621388, + "c3": 14.406524163320633, + "c4": 14.365802372778383, + "c5": 9.823946909819718, + "c6": 7.732505545178785, + "c7": 8.73760653058564 }, - "vertexSeeds": { - "c1": 7.319789238543006, - "c2": 7.261316505071606, - "c3": 7.220484537741392, - "c4": 7.178061431165105, - "c5": 7.181779687748766, - "c6": 7.2522347048635964, - "c7": 7.2809277700412105 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148405015, + "c3": 8.853444290337485, + "c4": 7.0827554322700115, + "c5": 5.312066574202481, + "c6": 3.5413777161350057, + "c7": 1.7706888580674756 }, "rgb": [222, 0, 59] }, @@ -404763,23 +404763,23 @@ "year": 1813, "resistanceReported": false, "duration": 5702400, - "curveSeeds": { - "c1": 3.3508678250585433, - "c2": -13.257092751242118, - "c3": 0.5933687911486807, - "c4": -4.590630024044428, - "c5": -4.350323703120502, - "c6": 14.064166360343371, - "c7": 8.64369805870524 + "points": { + "c1": 2.642390835287017, + "c2": -10.696769491641428, + "c3": -8.774489992351027, + "c4": 14.753963347460491, + "c5": 13.61160285720921, + "c6": 2.5502683742039736, + "c7": 11.404651267531587 }, - "vertexSeeds": { - "c1": 10.711183516075899, - "c2": 10.593172788285003, - "c3": 10.485726381951952, - "c4": 10.736630824460029, - "c5": 10.59054383532444, - "c6": 10.435705317968447, - "c7": 10.475986086103175 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323175, + "c3": 12.82940360610266, + "c4": 10.263522884882144, + "c5": 7.697642163661628, + "c6": 5.131761442441031, + "c7": 2.5658807212205157 }, "rgb": [222, 0, 59] }, @@ -404790,23 +404790,23 @@ "year": 1813, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -4.021601141257229, - "c2": -4.689651148914898, - "c3": -11.361074854925775, - "c4": -34.309553808796004, - "c5": 5.09241771594408, - "c6": 4.60784232010262, - "c7": 34.34485459472502 + "points": { + "c1": -29.080311077272498, + "c2": 20.15096236206471, + "c3": -6.6408369240909195, + "c4": 17.50913201779509, + "c5": 19.961501502434565, + "c6": -7.4899100814891995, + "c7": 27.289081443749268 }, - "vertexSeeds": { - "c1": 10.865473520273603, - "c2": 10.946058080685683, - "c3": 10.789084754364584, - "c4": 11.123508485356377, - "c5": 11.246560795272515, - "c6": 10.633816141434858, - "c7": 10.685358049965492 + "offsets": { + "c1": 18.899676375404532, + "c2": 16.199722607489615, + "c3": 13.49976883957464, + "c4": 10.799815071659724, + "c5": 8.099861303744808, + "c6": 5.399907535829833, + "c7": 2.6999537679149164 }, "rgb": [58, 15, 49] }, @@ -404817,23 +404817,23 @@ "year": 1813, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -24.82511911129003, - "c2": -5.71222405558408, - "c3": 8.853449006817236, - "c4": -8.145403273646632, - "c5": 20.776044558627767, - "c6": -26.113640517904564, - "c7": -30.868540865769617 + "points": { + "c1": 9.371769730039432, + "c2": 15.09866436967868, + "c3": -16.667411122864586, + "c4": -5.41692364246439, + "c5": 11.930742523027561, + "c6": -1.823256567616376, + "c7": -30.015891774434028 }, - "vertexSeeds": { - "c1": 4.581887420038077, - "c2": 4.440421671948903, - "c3": 4.426043489707173, - "c4": 4.485364983871705, - "c5": 4.366761050848197, - "c6": 4.471489491002253, - "c7": 4.545043809953675 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693487, + "c3": 5.5709662505779, + "c4": 4.456773000462325, + "c5": 3.342579750346737, + "c6": 2.2283865002311627, + "c7": 1.1141932501155878 }, "rgb": [222, 0, 59] }, @@ -404844,23 +404844,23 @@ "year": 1813, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -15.758997705500098, - "c2": 17.452910556296878, - "c3": -25.05639856529559, - "c4": 3.250989698126361, - "c5": 3.37897230888035, - "c6": 16.825995082098927, - "c7": 0.22617927525632453 + "points": { + "c1": -19.83605859283962, + "c2": -18.467868300484675, + "c3": 6.193430369367114, + "c4": -1.4318951077222408, + "c5": 19.482009707105767, + "c6": 24.031677301421944, + "c7": 11.246991381020997 }, - "vertexSeeds": { - "c1": 1.3600251535990524, - "c2": 1.3757424763736015, - "c3": 1.3461868892759152, - "c4": 1.3748085072874745, - "c5": 1.3649956305720927, - "c6": 1.3613778419903722, - "c7": 1.3457913754621362 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.9972260748959705, + "c3": 1.6643550624133172, + "c4": 1.331484049930647, + "c5": 0.9986130374479936, + "c6": 0.6657420249653235, + "c7": 0.3328710124826535 }, "rgb": [86, 146, 138] }, @@ -404871,23 +404871,23 @@ "year": 1813, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -15.485117652848427, - "c2": -9.067763615108703, - "c3": 5.000323382443639, - "c4": 1.9300836011104678, - "c5": -24.889179252056316, - "c6": -13.468455191167143, - "c7": 18.40470733852213 + "points": { + "c1": -3.366837250680117, + "c2": 11.042231027486913, + "c3": 11.101447843318795, + "c4": 19.153141516706974, + "c5": -8.901385904845604, + "c6": -9.428962683234722, + "c7": 25.92973622960813 }, - "vertexSeeds": { - "c1": 7.058185251033823, - "c2": 7.231849477184845, - "c3": 7.555722401874364, - "c4": 7.201088728559536, - "c5": 7.100253315385105, - "c6": 7.355964663862846, - "c7": 7.188263288858046 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -404898,23 +404898,23 @@ "year": 1813, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -6.593386674810738, - "c2": -19.64109056992877, - "c3": -3.7937612173148985, - "c4": 16.08266654217262, - "c5": -0.5793723730290274, - "c6": -15.885774807000281, - "c7": 2.541381628164597 + "points": { + "c1": -29.18292642273771, + "c2": 30.065366204250193, + "c3": 24.195696813330645, + "c4": 24.85727735971462, + "c5": -15.954722966649634, + "c6": 6.103639854306284, + "c7": 5.50517279221916 }, - "vertexSeeds": { - "c1": 7.106841855263812, - "c2": 7.363683183287989, - "c3": 6.634694071258903, - "c4": 6.986211788712805, - "c5": 7.237718844090324, - "c6": 7.200096372517961, - "c7": 7.185733914601812 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.7628294036061, + "c3": 8.969024503005079, + "c4": 7.17521960240407, + "c5": 5.38141470180305, + "c6": 3.587609801202029, + "c7": 1.7938049006010206 }, "rgb": [86, 146, 138] }, @@ -404925,23 +404925,23 @@ "year": 1813, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": -1.0135483350013494, - "c2": 13.959406049463688, - "c3": -21.34494356713853, - "c4": 11.447473756354157, - "c5": -7.56016545243547, - "c6": -6.758372904531434, - "c7": -12.891978583973101 + "points": { + "c1": 14.955414744622075, + "c2": 14.512869171131008, + "c3": -12.244594045456758, + "c4": -3.1289735833946573, + "c5": 12.827687108221092, + "c6": 2.5409691312611464, + "c7": -9.421301714917597 }, - "vertexSeeds": { - "c1": 3.4980763172354172, - "c2": 3.5891683490937325, - "c3": 3.5289679844587285, - "c4": 3.5383928131206415, - "c5": 3.530349014056923, - "c6": 3.4651018418657697, - "c7": 3.4112672776726347 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803051, + "c3": 4.484512251502541, + "c4": 3.5876098012020314, + "c5": 2.6907073509015293, + "c6": 1.7938049006010193, + "c7": 0.8969024503005096 }, "rgb": [58, 15, 49] }, @@ -404952,23 +404952,23 @@ "year": 1813, "resistanceReported": false, "duration": 950400, - "curveSeeds": { - "c1": -0.6817890804052755, - "c2": 10.804093311604873, - "c3": 6.479720722504972, - "c4": 0.18914028489717616, - "c5": 7.103527443630757, - "c6": -4.0334814117988405, - "c7": 4.328526161617736 + "points": { + "c1": -6.454766375070777, + "c2": 3.0734545493134284, + "c3": 4.779593424592779, + "c4": 9.461438380127042, + "c5": -5.4551782034080265, + "c6": 0.056689706223584935, + "c7": -6.887717780008251 }, - "vertexSeeds": { - "c1": 11.996852408944596, - "c2": 11.988630194458148, - "c3": 12.022324533245943, - "c4": 11.983467299221166, - "c5": 11.894270834045626, - "c6": 12.106637609256937, - "c7": 11.937962156490215 + "offsets": { + "c1": 20.45307443365696, + "c2": 17.531206657420302, + "c3": 14.609338881183524, + "c4": 11.68747110494687, + "c5": 8.76560332871009, + "c6": 5.843735552473435, + "c7": 2.921867776236656 }, "rgb": [58, 15, 49] }, @@ -404979,23 +404979,23 @@ "year": 1813, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 4.6890709975511236, - "c2": 21.572421798270998, - "c3": 9.330637908291319, - "c4": -12.96418071085553, - "c5": -25.00203369444523, - "c6": -21.49198642725915, - "c7": -27.727526342920722 + "points": { + "c1": -19.639448233085158, + "c2": -9.57028632028862, + "c3": -11.035818622280885, + "c4": -9.650267915964871, + "c5": -23.118836984318765, + "c6": -0.13434455625913344, + "c7": 17.020817110558486 }, - "vertexSeeds": { - "c1": 3.6312841212982736, - "c2": 3.593701097703113, - "c3": 3.6132316677467053, - "c4": 3.5553008266301163, - "c5": 3.5201580838231448, - "c6": 3.5452262027993684, - "c7": 3.622876228715905 + "offsets": { + "c1": 6.084142394822006, + "c2": 5.214979195561715, + "c3": 4.345815996301425, + "c4": 3.476652797041134, + "c5": 2.607489597780843, + "c6": 1.7383263985205815, + "c7": 0.8691631992602907 }, "rgb": [238, 201, 159] }, @@ -405006,23 +405006,23 @@ "year": 1813, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 19.1491530291052, - "c2": 28.787673094499624, - "c3": -34.35697022468164, - "c4": 2.8309799556415314, - "c5": 4.130599138388533, - "c6": 16.095898050053307, - "c7": -1.5783273795490018 + "points": { + "c1": -33.05816411964239, + "c2": 28.65632239895102, + "c3": 3.7106811864820344, + "c4": -22.237926722624877, + "c5": -15.606508158632497, + "c6": -10.578346141621374, + "c7": -34.36793002153669 }, - "vertexSeeds": { - "c1": 2.4676165803108807, - "c2": 2.4676165803108807, - "c3": 2.4676165803108807, - "c4": 2.4676165803108807, - "c5": 2.4676165803108807, - "c6": 2.4676165803108807, - "c7": 2.4676165803108807 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -405033,23 +405033,23 @@ "year": 1813, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 1.9611843515572218, - "c2": -22.346116260184683, - "c3": -14.858035916043042, - "c4": -10.394448911290484, - "c5": -14.92538025013104, - "c6": -19.474267925132683, - "c7": -13.65922557931563 + "points": { + "c1": 16.970465865177793, + "c2": 20.297415744543066, + "c3": 22.895830490792513, + "c4": 21.176510692626685, + "c5": 0.6254476309437749, + "c6": 22.108435774161137, + "c7": 24.57130500075423 }, - "vertexSeeds": { - "c1": 9.934237539021657, - "c2": 9.9087547835157, - "c3": 9.889047371139455, - "c4": 9.961463547974239, - "c5": 9.849798686399033, - "c6": 9.899011830801134, - "c7": 9.87126929451356 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.25797503467413, + "c3": 11.881645862228403, + "c4": 9.505316689782674, + "c5": 7.128987517336947, + "c6": 4.752658344891337, + "c7": 2.3763291724456095 }, "rgb": [222, 0, 59] }, @@ -405060,23 +405060,23 @@ "year": 1813, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": 21.112889012374303, - "c2": -4.925055135444051, - "c3": 12.652194352251314, - "c4": -0.2918175889859178, - "c5": -12.840858417961782, - "c6": 19.637283959685057, - "c7": -10.9506129934177 + "points": { + "c1": 3.4868862083248153, + "c2": 7.748889631367749, + "c3": -4.573099546068793, + "c4": 17.936262554621464, + "c5": -4.634768582368054, + "c6": 11.143887506211897, + "c7": -18.60964206715196 }, - "vertexSeeds": { - "c1": 8.841361482835035, - "c2": 8.791662609970592, - "c3": 8.7658442665663, - "c4": 8.783262537722498, - "c5": 8.902956344180884, - "c6": 8.7759386643919, - "c7": 8.8789962338376 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542279, + "c3": 10.656495607951955, + "c4": 8.525196486361548, + "c5": 6.3938973647711395, + "c6": 4.2625982431808165, + "c7": 2.1312991215904082 }, "rgb": [238, 201, 159] }, @@ -405087,23 +405087,23 @@ "year": 1813, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 18.38562091278998, - "c2": 26.473163519932527, - "c3": -23.384825244833255, - "c4": 2.1665806863572996, - "c5": -24.429208476152958, - "c6": -4.298686475862425, - "c7": 2.8852749722890962 + "points": { + "c1": 27.102959714665538, + "c2": 9.159270068596491, + "c3": -8.35546528490486, + "c4": -13.205500015060544, + "c5": -3.2469650789886657, + "c6": 8.056238356238168, + "c7": 15.560771602170902 }, - "vertexSeeds": { - "c1": 13.264738942998267, - "c2": 13.159540271580738, - "c3": 13.531307116388826, - "c4": 13.245117959943446, - "c5": 13.215967257451751, - "c6": 13.29418007821388, - "c7": 13.17117819137631 + "offsets": { + "c1": 22.62135922330097, + "c2": 19.389736477115132, + "c3": 16.158113730929294, + "c4": 12.926490984743456, + "c5": 9.694868238557515, + "c6": 6.4632454923716764, + "c7": 3.2316227461858382 }, "rgb": [86, 146, 138] }, @@ -405114,23 +405114,23 @@ "year": 1813, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -16.793134187464652, - "c2": 4.773806287754351, - "c3": 15.501728179198398, - "c4": -19.24747637826346, - "c5": 5.587420151712834, - "c6": -4.607964274027879, - "c7": 23.777287687826448 + "points": { + "c1": -13.936286850291761, + "c2": 22.47216272034012, + "c3": 4.864726946409721, + "c4": 15.724394708948392, + "c5": 18.726172959099163, + "c6": 7.363533178571, + "c7": 12.164197298753937 }, - "vertexSeeds": { - "c1": 0, - "c2": 0, - "c3": 0, - "c4": 0, - "c5": 0, - "c6": 0, - "c7": 0 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -405141,23 +405141,23 @@ "year": 1813, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 26.162713582144015, - "c2": 14.444697496508702, - "c3": 11.97969703170208, - "c4": -17.414640696620815, - "c5": -15.240158462779775, - "c6": -36.98534662489843, - "c7": -35.188814124436426 + "points": { + "c1": -19.097144997776542, + "c2": -4.2619617256010685, + "c3": 3.2508580120120243, + "c4": 13.864301393432392, + "c5": 12.217944364294766, + "c6": -27.427135836737257, + "c7": -32.69823791543492 }, - "vertexSeeds": { - "c1": 4.933270351158622, - "c2": 4.717937132589632, - "c3": 4.826091192853888, - "c4": 4.897196320809448, - "c5": 4.970203967695981, - "c6": 4.955761734028106, - "c7": 4.931482953066916 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337036, + "c3": 5.9408229311141865, + "c4": 4.752658344891352, + "c5": 3.564493758668518, + "c6": 2.3763291724456836, + "c7": 1.1881645862228343 }, "rgb": [238, 201, 159] }, @@ -405168,23 +405168,23 @@ "year": 1813, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -22.6593165549278, - "c2": 3.6929502531389247, - "c3": 25.032116151517577, - "c4": 2.81662382867556, - "c5": 29.360888115322453, - "c6": -26.170641510170235, - "c7": 29.724290885947497 + "points": { + "c1": -23.9879408710862, + "c2": 2.7114242568631397, + "c3": 2.7486354063565344, + "c4": 25.93900483037133, + "c5": -33.18963404877439, + "c6": -27.447425546541318, + "c7": -14.978943361931886 }, - "vertexSeeds": { - "c1": 12.244057959719273, - "c2": 12.521839069480272, - "c3": 12.117564640962682, - "c4": 12.37491262322385, - "c5": 12.560589006528676, - "c6": 12.394450612105711, - "c7": 12.16652519298725 + "offsets": { + "c1": 20.97087378640777, + "c2": 17.975034674063814, + "c3": 14.979195561719862, + "c4": 11.98335644937591, + "c5": 8.987517337031955, + "c6": 5.991678224687907, + "c7": 2.9958391123439534 }, "rgb": [86, 146, 138] }, @@ -405195,23 +405195,23 @@ "year": 1813, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 20.14235420975873, - "c2": 25.37558210359518, - "c3": 0.8680076755521569, - "c4": 18.363435709942216, - "c5": -16.554009835983592, - "c6": -1.1842996345119552, - "c7": 1.688934378072389 + "points": { + "c1": 15.808854053878768, + "c2": 14.906971100990944, + "c3": -18.193972475836212, + "c4": -8.08544929073086, + "c5": 24.7462717170366, + "c6": 26.443017875270407, + "c7": 25.460047552522752 }, - "vertexSeeds": { - "c1": 10.100768270647144, - "c2": 10.157772894719045, - "c3": 10.195627263447362, - "c4": 9.876974194543036, - "c5": 10.196411445463928, - "c6": 10.013209975269293, - "c7": 9.934181887966691 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156742, + "c3": 12.159038372630635, + "c4": 9.727230698104531, + "c5": 7.295423023578424, + "c6": 4.863615349052211, + "c7": 2.4318076745261594 }, "rgb": [222, 0, 59] }, @@ -405222,23 +405222,23 @@ "year": 1813, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -15.78905156453299, - "c2": 12.604758521449163, - "c3": -7.22910591215147, - "c4": 2.9293438916121417, - "c5": 19.121343885233784, - "c6": 17.89605322589896, - "c7": -19.97320202511467 + "points": { + "c1": -23.06013858999259, + "c2": 9.01867630244032, + "c3": -16.47122844702697, + "c4": -20.362830827823444, + "c5": -20.491577142473673, + "c6": 10.010913930873556, + "c7": -15.04033065247593 }, - "vertexSeeds": { - "c1": 7.5648774380760155, - "c2": 7.606112927759363, - "c3": 7.562601308657402, - "c4": 7.614883979647517, - "c5": 7.567933949197908, - "c6": 7.612539320630579, - "c7": 7.589447814530435 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847486, + "c3": 9.107720758206119, + "c4": 7.286176606564931, + "c5": 5.464632454923743, + "c6": 3.643088303282556, + "c7": 1.8215441516411874 }, "rgb": [58, 15, 49] }, @@ -405249,23 +405249,23 @@ "year": 1813, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 6.205272869148846, - "c2": -25.81580634108739, - "c3": -15.49467754471982, - "c4": 25.5112058400822, - "c5": -2.9201851890253145, - "c6": 18.09314705863329, - "c7": 19.919328544999143 + "points": { + "c1": -6.418535564547078, + "c2": 6.383214357507011, + "c3": 16.099594974432133, + "c4": -14.193281204173301, + "c5": 18.679221981540376, + "c6": 16.10921870535689, + "c7": 0.3506834847519045 }, - "vertexSeeds": { - "c1": 9.610586007798654, - "c2": 9.278687861435174, - "c3": 9.435494987871866, - "c4": 9.258372363505002, - "c5": 9.221542739826967, - "c6": 9.536461060068486, - "c7": 9.52792692599601 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754498, + "c3": 11.927877947295427, + "c4": 9.542302357836332, + "c5": 7.1567267683772595, + "c6": 4.771151178918166, + "c7": 2.385575589459094 }, "rgb": [58, 15, 49] }, @@ -405276,23 +405276,23 @@ "year": 1813, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -4.876637078747045, - "c2": -20.75495276708036, - "c3": 1.2666817190678543, - "c4": 26.53147444069858, - "c5": 19.512297493065972, - "c6": 11.986094519545645, - "c7": -3.0155524517407493 + "points": { + "c1": -21.02824827389334, + "c2": 23.305996968026335, + "c3": 29.208748059656756, + "c4": -20.79501638413419, + "c5": 23.582588627280963, + "c6": 12.944622273112714, + "c7": -5.595600823437373 }, - "vertexSeeds": { - "c1": 5.207303688800246, - "c2": 5.268901966746853, - "c3": 5.302111375908634, - "c4": 5.23894970125839, - "c5": 5.258174244588572, - "c6": 5.245349512535909, - "c7": 5.2005311120872255 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020841, + "c3": 6.333795654183993, + "c4": 5.067036523347228, + "c5": 3.8002773925103788, + "c6": 2.533518261673614, + "c7": 1.266759130836765 }, "rgb": [77, 76, 132] }, @@ -405303,23 +405303,23 @@ "year": 1813, "resistanceReported": false, "duration": 6393600, - "curveSeeds": { - "c1": -10.653318514294131, - "c2": -3.478595205760879, - "c3": 5.5840231682590975, - "c4": -12.546947335953924, - "c5": 13.555791173681222, - "c6": -14.210089559161807, - "c7": 11.21150030366342 + "points": { + "c1": -15.12622206803933, + "c2": -18.572642384147507, + "c3": -10.633726518478928, + "c4": -1.8296230974537977, + "c5": -11.202859766753228, + "c6": -10.04860484231713, + "c7": 14.70584470825396 }, - "vertexSeeds": { - "c1": 1.8733679682873188, - "c2": 1.8697829351990403, - "c3": 2.0192814353706665, - "c4": 1.9006906867237958, - "c5": 1.91583224851339, - "c6": 2.0397879666630168, - "c7": 2.0108749477343375 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635225, + "c3": 2.4503005085529344, + "c4": 1.9602404068423516, + "c5": 1.4701803051317635, + "c6": 0.9801202034211758, + "c7": 0.4900601017105879 }, "rgb": [77, 76, 132] }, @@ -405330,23 +405330,23 @@ "year": 1813, "resistanceReported": false, "duration": 7689600, - "curveSeeds": { - "c1": -10.27571652184439, - "c2": 11.629974049659939, - "c3": -15.299265085756563, - "c4": 16.593567618203938, - "c5": 16.98000981088153, - "c6": 1.303524754371388, - "c7": 16.046730651105864 + "points": { + "c1": 16.896755593641405, + "c2": -10.83015294594091, + "c3": -5.512205732647802, + "c4": 16.766685898793423, + "c5": -13.910507461087445, + "c6": 8.658278285047523, + "c7": -8.73410739698203 }, - "vertexSeeds": { - "c1": 3.4704214314118014, - "c2": 3.7891121473553517, - "c3": 3.846466947364575, - "c4": 3.602838132175109, - "c5": 3.478384407418345, - "c6": 3.433960764269168, - "c7": 3.500330134385926 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084608, + "c3": 4.646324549237176, + "c4": 3.7170596393897357, + "c5": 2.787794729542304, + "c6": 1.8585298196948716, + "c7": 0.9292649098474322 }, "rgb": [222, 0, 59] }, @@ -405357,23 +405357,23 @@ "year": 1813, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -8.753647819410709, - "c2": 10.539962727647062, - "c3": -25.994833936637363, - "c4": 7.978846632455241, - "c5": 22.49185874340085, - "c6": 13.66142139979517, - "c7": 12.84661833567898 + "points": { + "c1": -20.392768298795886, + "c2": 4.991269914107594, + "c3": -13.112489058610247, + "c4": -5.581391060499534, + "c5": -15.07368544634566, + "c6": 25.700706448766827, + "c7": -13.795835094682086 }, - "vertexSeeds": { - "c1": 1.5932642487046633, - "c2": 1.5932642487046633, - "c3": 1.5932642487046633, - "c4": 1.5932642487046633, - "c5": 1.5932642487046633, - "c6": 1.5932642487046633, - "c7": 1.5932642487046633 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -405384,23 +405384,23 @@ "year": 1813, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 24.610680537977302, - "c2": -29.075521726992104, - "c3": 22.59415927157827, - "c4": -0.2868509957714238, - "c5": -7.510579441228959, - "c6": 3.103426087529215, - "c7": -24.07499898089716 + "points": { + "c1": 24.766774826433867, + "c2": 24.62396837510721, + "c3": 15.760221068733124, + "c4": 27.285944258884705, + "c5": 28.723554598939536, + "c6": 31.488256401868696, + "c7": 0.13079866450721767 }, - "vertexSeeds": { - "c1": 9.436669929443028, - "c2": 8.583821558901194, - "c3": 8.515979925886697, - "c4": 9.043703124766058, - "c5": 9.26953412438684, - "c6": 9.151941562699939, - "c7": 8.521980130355642 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588066, + "c3": 11.257512713823385, + "c4": 9.006010171058715, + "c5": 6.754507628294033, + "c6": 4.503005085529351, + "c7": 2.2515025427646824 }, "rgb": [238, 201, 159] }, @@ -405411,23 +405411,23 @@ "year": 1813, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -12.318808706915473, - "c2": -17.048775450866586, - "c3": 19.852908553210867, - "c4": 21.70983503448616, - "c5": 30.236893989472918, - "c6": 11.41814057377411, - "c7": 31.56160167649159 + "points": { + "c1": -13.217624898034245, + "c2": 7.620788034137377, + "c3": -32.11677877507251, + "c4": -23.636896645028752, + "c5": 3.9451611801131605, + "c6": 9.825387716339598, + "c7": -31.16365204426585 }, - "vertexSeeds": { - "c1": 11.055978117399901, - "c2": 11.17401970242519, - "c3": 10.799323891153774, - "c4": 11.71893902390071, - "c5": 11.395739418383721, - "c6": 10.733721196513207, - "c7": 11.618700852050665 + "offsets": { + "c1": 19.77346278317152, + "c2": 16.948682385575598, + "c3": 14.123901987979679, + "c4": 11.299121590383722, + "c5": 8.474341192787799, + "c6": 5.649560795191877, + "c7": 2.824780397595922 }, "rgb": [238, 201, 159] }, @@ -405438,23 +405438,23 @@ "year": 1813, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 12.979110353155754, - "c2": 21.83095881914617, - "c3": 0.12983883148602615, - "c4": 6.267548147907753, - "c5": -6.043218694511008, - "c6": 20.804260422973783, - "c7": -5.122673230996806 + "points": { + "c1": -24.525197538763933, + "c2": 25.12402909806137, + "c3": -3.9153903577081515, + "c4": -24.080025033852934, + "c5": 6.569637390383875, + "c6": 28.855623895705776, + "c7": 23.235386561446226 }, - "vertexSeeds": { - "c1": 4.195821999678568, - "c2": 3.676095432347458, - "c3": 3.929596448744938, - "c4": 3.756413740796902, - "c5": 3.7633096255104994, - "c6": 3.9781399392465984, - "c7": 3.9211273678506795 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728157, + "c3": 5.016181229773459, + "c4": 4.012944983818769, + "c5": 3.0097087378640786, + "c6": 2.006472491909381, + "c7": 1.0032362459546904 }, "rgb": [77, 76, 132] }, @@ -405465,23 +405465,23 @@ "year": 1813, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -0.550940776728357, - "c2": -29.26340601372093, - "c3": 9.979229952531373, - "c4": -0.23561706650669478, - "c5": 4.208604847586901, - "c6": 4.3194526010295995, - "c7": 27.988112726403653 + "points": { + "c1": 27.79260322709749, + "c2": 19.684335798206295, + "c3": 29.894178427760504, + "c4": -27.6892779554124, + "c5": 1.786250374303851, + "c6": 25.071215879716664, + "c7": -0.16854852067263337 }, - "vertexSeeds": { - "c1": 6.049238826340803, - "c2": 6.0920798852634235, - "c3": 5.943121199202649, - "c4": 6.0191139928994515, - "c5": 6.061979170903478, - "c6": 6.058808098004643, - "c7": 5.974004079359785 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669887, + "c3": 7.281553398058278, + "c4": 5.825242718446611, + "c5": 4.368932038834943, + "c6": 2.9126213592233343, + "c7": 1.4563106796116672 }, "rgb": [86, 146, 138] }, @@ -405492,23 +405492,23 @@ "year": 1814, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 38.063867041744345, - "c2": 26.93265050709418, - "c3": 27.374335402067672, - "c4": -31.006928465176625, - "c5": 19.233420856216384, - "c6": 7.55371621316192, - "c7": -5.663191277658562 + "points": { + "c1": -34.892342124828154, + "c2": -0.38910392518248216, + "c3": -29.76367533525336, + "c4": 31.687928983079857, + "c5": 19.35457419015279, + "c6": 25.91489645034595, + "c7": -7.702709920487642 }, - "vertexSeeds": { - "c1": 8.50662608318997, - "c2": 9.13654650482716, - "c3": 9.112924535989507, - "c4": 8.456152198926219, - "c5": 8.686038520783958, - "c6": 8.503162289137473, - "c7": 9.152546738693509 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105416, + "c3": 10.980120203421187, + "c4": 8.784096162736937, + "c5": 6.588072122052708, + "c6": 4.39204808136848, + "c7": 2.196024040684251 }, "rgb": [77, 76, 132] }, @@ -405519,23 +405519,23 @@ "year": 1813, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -4.760933947065343, - "c2": 24.217449575348724, - "c3": 6.544075558064826, - "c4": -3.805563666673212, - "c5": 26.222623683015534, - "c6": 15.930213172973858, - "c7": 22.0887754959125 + "points": { + "c1": -11.895499261389961, + "c2": 13.706253878602581, + "c3": -4.059311406483033, + "c4": -10.560054747869618, + "c5": 16.63249442069504, + "c6": 6.8935770679324335, + "c7": -3.5746922928817533 }, - "vertexSeeds": { - "c1": 6.741615474119578, - "c2": 6.348453597364236, - "c3": 6.6143444776305635, - "c4": 6.746805633157139, - "c5": 6.2854298022759485, - "c6": 6.3085789528303975, - "c7": 6.290818954851831 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399453, + "c3": 8.275543226999535, + "c4": 6.620434581599635, + "c5": 4.965325936199717, + "c6": 3.3102172907998173, + "c7": 1.6551086453998998 }, "rgb": [238, 201, 159] }, @@ -405546,23 +405546,23 @@ "year": 1814, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 3.66175442435884, - "c2": 13.887343830554187, - "c3": 17.130338517564667, - "c4": 23.259695271147876, - "c5": 24.568946129416773, - "c6": 7.499667950235924, - "c7": -36.80896390130934 + "points": { + "c1": -29.99328948805237, + "c2": -2.668374732465864, + "c3": -39.589057998919344, + "c4": -20.142539258935866, + "c5": -8.936910717237218, + "c6": -11.602128405792172, + "c7": 29.221906070455177 }, - "vertexSeeds": { - "c1": 8.212489739927378, - "c2": 7.692797511426464, - "c3": 8.605927419629152, - "c4": 8.675093404084407, - "c5": 7.803208117154216, - "c6": 8.413392058308524, - "c7": 6.964510364829058 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220527, + "c3": 10.47156726768377, + "c4": 8.377253814147014, + "c5": 6.282940360610268, + "c6": 4.188626907073512, + "c7": 2.094313453536756 }, "rgb": [222, 0, 59] }, @@ -405573,23 +405573,23 @@ "year": 1813, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": 18.17877736402054, - "c2": -6.566648803159707, - "c3": 7.5011154026154365, - "c4": 15.86994772726976, - "c5": -7.1073498269096955, - "c6": -16.05588464520988, - "c7": -15.605264573175683 + "points": { + "c1": -21.698543293581057, + "c2": 6.275600954669752, + "c3": 19.51828488234667, + "c4": 8.757674315045591, + "c5": 4.285882156249098, + "c6": 17.548994947782596, + "c7": 1.6044836619123686 }, - "vertexSeeds": { - "c1": 14.198997417529814, - "c2": 14.103017929448002, - "c3": 14.062258779282041, - "c4": 14.113554502815393, - "c5": 13.99627543595561, - "c6": 14.08330193636818, - "c7": 14.103824523194907 + "offsets": { + "c1": 23.689320388349515, + "c2": 20.305131761442478, + "c3": 16.920943134535435, + "c4": 13.536754507628398, + "c5": 10.152565880721117, + "c6": 6.768377253814077, + "c7": 3.3841886269070387 }, "rgb": [86, 146, 138] }, @@ -405600,23 +405600,23 @@ "year": 1814, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -33.84620340422731, - "c2": 14.549607574085137, - "c3": 4.425926781003405, - "c4": -18.92493439516116, - "c5": -24.837398219743946, - "c6": 26.321342779894835, - "c7": -13.913044504197089 + "points": { + "c1": -11.719640542429072, + "c2": -28.558742264105724, + "c3": -9.188901900884947, + "c4": -29.98915918513536, + "c5": 13.388620547416018, + "c6": -0.7468609718305856, + "c7": 21.3184294765446 }, - "vertexSeeds": { - "c1": 7.889299816019838, - "c2": 8.140454880856764, - "c3": 7.929362923147962, - "c4": 8.001410629957864, - "c5": 8.10932271160173, - "c6": 8.01889324233481, - "c7": 8.122956747188333 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893229, + "c3": 9.70873786407766, + "c4": 7.766990291262153, + "c5": 5.825242718446585, + "c6": 3.8834951456310765, + "c7": 1.9417475728155085 }, "rgb": [77, 76, 132] }, @@ -405627,23 +405627,23 @@ "year": 1813, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -26.362424535823173, - "c2": 20.625050368436174, - "c3": -20.586827789709947, - "c4": -7.727534362610239, - "c5": -3.0762045924352144, - "c6": -20.737881596662838, - "c7": 2.393213639701443 + "points": { + "c1": -24.407183346767717, + "c2": 3.1901961159677334, + "c3": 5.220864268456221, + "c4": -17.484211665088143, + "c5": 0.9614140657617511, + "c6": 10.871168324975972, + "c7": 11.576612075788479 }, - "vertexSeeds": { - "c1": 4.2963106921873075, - "c2": 4.34999638704813, - "c3": 4.32812806755112, - "c4": 4.347791121018429, - "c5": 4.362322218509613, - "c6": 4.243720455342094, - "c7": 4.337826545688702 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170604, + "c3": 5.27045769764216, + "c4": 4.216366158113737, + "c5": 3.162274618585292, + "c6": 2.1081830790568685, + "c7": 1.0540915395284447 }, "rgb": [58, 15, 49] }, @@ -405654,23 +405654,23 @@ "year": 1813, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 1.3085294082333512, - "c2": -9.056974059582455, - "c3": -1.440717625785922, - "c4": 19.63853565505316, - "c5": -21.532546754405512, - "c6": -21.668723219022407, - "c7": -8.627597799717611 + "points": { + "c1": 0.11986576516357417, + "c2": -12.310427673957626, + "c3": -7.05444005990412, + "c4": 3.4207257852537722, + "c5": -24.64919251424999, + "c6": -15.693166865456126, + "c7": -4.041041281114431 }, - "vertexSeeds": { - "c1": 12.920984455958548, - "c2": 12.920984455958548, - "c3": 12.920984455958548, - "c4": 12.920984455958548, - "c5": 12.920984455958548, - "c6": 12.920984455958548, - "c7": 12.920984455958548 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -405681,23 +405681,23 @@ "year": 1813, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -25.31842342114887, - "c2": -5.649435216155499, - "c3": 8.313201877403252, - "c4": -1.1317182840797777, - "c5": 22.540259323653345, - "c6": -1.3779207806194371, - "c7": 7.907853514185362 + "points": { + "c1": -11.641809616033157, + "c2": 3.0935551445973815, + "c3": -11.742972718304348, + "c4": 7.0012644773473625, + "c5": -2.5701578583045652, + "c6": 26.95745749684398, + "c7": 19.199746341928204 }, - "vertexSeeds": { - "c1": 8.294342825309696, - "c2": 8.246679882874444, - "c3": 8.244072972524553, - "c4": 8.269477201993967, - "c5": 8.296226363358496, - "c6": 8.245754047397817, - "c7": 8.293044858673165 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214905, + "c3": 9.893666204345928, + "c4": 7.914932963476691, + "c5": 5.936199722607452, + "c6": 3.957466481738214, + "c7": 1.978733240869238 }, "rgb": [77, 76, 132] }, @@ -405708,23 +405708,23 @@ "year": 1813, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": 5.055082856313778, - "c2": -4.016131215515358, - "c3": 19.732885124647424, - "c4": -16.879772840413324, - "c5": -9.267583248628023, - "c6": 13.141609195754121, - "c7": 18.59477925588599 + "points": { + "c1": 0.4674888579347325, + "c2": 3.8791725869757556, + "c3": -12.326533028836757, + "c4": -4.695804301181859, + "c5": -6.653797655783595, + "c6": 10.902499723770575, + "c7": -1.8525680745350002 }, - "vertexSeeds": { - "c1": 2.993578787852164, - "c2": 2.98884959677036, - "c3": 2.976128818561271, - "c4": 3.022986659181747, - "c5": 2.99217500740115, - "c6": 2.9800971169846227, - "c7": 3.0382522394479836 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355047, + "c3": 3.6523347202958907, + "c4": 2.921867776236698, + "c5": 2.191400832177542, + "c6": 1.460933888118349, + "c7": 0.7304669440591927 }, "rgb": [238, 201, 159] }, @@ -405735,23 +405735,23 @@ "year": 1813, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 18.972537120376423, - "c2": -15.415579357163086, - "c3": -24.931157753795066, - "c4": 14.556503195771455, - "c5": 7.1248415689960325, - "c6": 11.683370939472006, - "c7": 12.462982337740513 + "points": { + "c1": 8.759692368392479, + "c2": -0.3592977466925582, + "c3": 26.567118104223383, + "c4": 22.00627018230788, + "c5": 3.046783769612901, + "c6": 21.263716388540693, + "c7": -26.11939715051734 }, - "vertexSeeds": { - "c1": 9.11732799684268, - "c2": 8.824508209338559, - "c3": 9.038995375175817, - "c4": 9.048611109549261, - "c5": 8.659641702353204, - "c6": 8.571767419241647, - "c7": 8.53487313698434 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105416, + "c3": 10.980120203421187, + "c4": 8.784096162736937, + "c5": 6.588072122052708, + "c6": 4.39204808136848, + "c7": 2.196024040684251 }, "rgb": [77, 76, 132] }, @@ -405762,23 +405762,23 @@ "year": 1813, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -22.946054621296835, - "c2": 4.516492077293346, - "c3": -1.785743114007932, - "c4": -21.340361608551735, - "c5": 6.54362991445894, - "c6": 12.991482548667712, - "c7": 12.558009893399351 + "points": { + "c1": -14.682886754168875, + "c2": -6.396636354668274, + "c3": 18.815038658486714, + "c4": -23.21301293771388, + "c5": 16.067662159109652, + "c6": -24.26419344052741, + "c7": -27.893696744558778 }, - "vertexSeeds": { - "c1": 10.50192577164997, - "c2": 10.369741035989492, - "c3": 10.771166316162537, - "c4": 10.291205173545043, - "c5": 10.380776716729017, - "c6": 10.491797586447385, - "c7": 10.785106924737667 + "offsets": { + "c1": 18.058252427184467, + "c2": 15.478502080443828, + "c3": 12.898751733703191, + "c4": 10.319001386962553, + "c5": 7.739251040221914, + "c6": 5.159500693481276, + "c7": 2.579750346740638 }, "rgb": [77, 76, 132] }, @@ -405789,23 +405789,23 @@ "year": 1813, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": -1.8915039320985798, - "c2": -10.635807101053212, - "c3": -0.1678707361211913, - "c4": 17.314493692159736, - "c5": -5.4354098566694535, - "c6": -2.4268956318949613, - "c7": -9.50831111774848 + "points": { + "c1": 5.342263273751314, + "c2": 0.09773785609671037, + "c3": 13.787700848571063, + "c4": -16.782418068045125, + "c5": 1.9887098081324694, + "c6": -5.998502910942356, + "c7": -4.576355317102394 }, - "vertexSeeds": { - "c1": 2.137729395612267, - "c2": 2.199755927487246, - "c3": 2.142571073801092, - "c4": 2.027321103036589, - "c5": 2.1157211951585078, - "c6": 1.988565577297775, - "c7": 2.10901517647939 + "offsets": { + "c1": 3.7540453074433655, + "c2": 3.217753120665743, + "c3": 2.6814609338881206, + "c4": 2.145168747110494, + "c5": 1.6088765603328714, + "c6": 1.072584373555249, + "c7": 0.5362921867776226 }, "rgb": [222, 0, 59] }, @@ -405816,23 +405816,23 @@ "year": 1814, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 24.15342991106759, - "c2": 16.854221682408863, - "c3": 11.59000643842662, - "c4": -24.45727170734031, - "c5": -6.907232837001256, - "c6": 2.3723226941346667, - "c7": -7.2685121775213375 + "points": { + "c1": -11.118385433991278, + "c2": -15.401900818646997, + "c3": 24.63765449982536, + "c4": 23.264015707870065, + "c5": 26.14373414935379, + "c6": 24.4656724889591, + "c7": 9.355614410178454 }, - "vertexSeeds": { - "c1": 10.390715854992758, - "c2": 9.976462162875391, - "c3": 10.779413326117448, - "c4": 9.890686193692131, - "c5": 9.873506552705399, - "c6": 10.820419004515097, - "c7": 10.606652130474231 + "offsets": { + "c1": 18.058252427184467, + "c2": 15.478502080443818, + "c3": 12.898751733703207, + "c4": 10.319001386962558, + "c5": 7.739251040221909, + "c6": 5.1595006934812595, + "c7": 2.579750346740649 }, "rgb": [77, 76, 132] }, @@ -405843,23 +405843,23 @@ "year": 1813, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 19.77640393291405, - "c2": 2.560023882707714, - "c3": -12.96593339224109, - "c4": -17.22439142931752, - "c5": -2.5291780875297007, - "c6": -18.680846334699712, - "c7": -16.34908146125501 + "points": { + "c1": -3.9510414515452545, + "c2": -6.51093993868292, + "c3": -22.97785879869143, + "c4": -9.30141698446408, + "c5": -6.543724760826901, + "c6": -15.875993086318939, + "c7": 0.3303344136375266 }, - "vertexSeeds": { - "c1": 2.6985001836443443, - "c2": 2.6609864927797306, - "c3": 2.7757971332553617, - "c4": 2.604524937720833, - "c5": 2.5398303340107073, - "c6": 2.6456614544774864, - "c7": 2.4714350052013603 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.049930651872398, + "c3": 3.3749422098936632, + "c4": 2.6999537679149355, + "c5": 2.0249653259362006, + "c6": 1.349976883957466, + "c7": 0.6749884419787311 }, "rgb": [77, 76, 132] }, @@ -405870,23 +405870,23 @@ "year": 1813, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 0.18451554782594215, - "c2": -14.5453147019357, - "c3": 23.666704132445656, - "c4": 19.791885366182637, - "c5": 7.519227603262085, - "c6": -11.394765587790424, - "c7": -16.02156984933167 + "points": { + "c1": 8.749669891245976, + "c2": -15.708901542242831, + "c3": 12.287021640119047, + "c4": -14.320828862843436, + "c5": 16.12796492651606, + "c6": 27.30027382277662, + "c7": 20.255726805740213 }, - "vertexSeeds": { - "c1": 12.945805122078148, - "c2": 12.574711838412927, - "c3": 12.053598511758056, - "c4": 12.148356481881523, - "c5": 12.417945515836939, - "c6": 12.58497360922058, - "c7": 12.649992177109683 + "offsets": { + "c1": 21.844660194174757, + "c2": 18.723994452149775, + "c3": 15.603328710124831, + "c4": 12.482662968099849, + "c5": 9.361997226074909, + "c6": 6.241331484049924, + "c7": 3.120665742024984 }, "rgb": [86, 146, 138] }, @@ -405897,23 +405897,23 @@ "year": 1814, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 8.18735360890074, - "c2": 14.258978446177078, - "c3": 18.998012765504026, - "c4": -14.653114813225352, - "c5": -20.719759207303603, - "c6": 23.097304103336217, - "c7": -0.3615722148518863 + "points": { + "c1": 11.565598372939053, + "c2": 12.49039031041811, + "c3": 30.018012079805093, + "c4": 26.388347109839092, + "c5": -2.8404381123255646, + "c6": 30.43155113677169, + "c7": -1.9883543472793512 }, - "vertexSeeds": { - "c1": 11.469346564607633, - "c2": 11.239675822017313, - "c3": 11.267477982900038, - "c4": 11.540135543991216, - "c5": 11.444650042253965, - "c6": 11.548983293403737, - "c7": 11.498262527327109 + "offsets": { + "c1": 19.320388349514563, + "c2": 16.560332871012534, + "c3": 13.800277392510385, + "c4": 11.040221914008356, + "c5": 8.280166435506208, + "c6": 5.520110957004178, + "c7": 2.7600554785021463 }, "rgb": [238, 201, 159] }, @@ -405924,23 +405924,23 @@ "year": 1813, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 24.859383144145436, - "c2": -22.736540998421997, - "c3": 7.236018694442738, - "c4": 16.05232719304311, - "c5": 20.040448248465776, - "c6": -24.751822036529514, - "c7": -8.462703384350036 + "points": { + "c1": 4.454325547516564, + "c2": -14.60756070004457, + "c3": -6.457058076382069, + "c4": 7.036839010919959, + "c5": 17.350148612242517, + "c6": 10.739726297435201, + "c7": 3.728067120060256 }, - "vertexSeeds": { - "c1": 5.338780523806192, - "c2": 5.097506247059313, - "c3": 5.109497352187985, - "c4": 5.29757913836377, - "c5": 5.328463094185335, - "c6": 5.3282139770013295, - "c7": 5.280386498501062 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302358, + "c3": 6.4956079519186325, + "c4": 5.196486361534905, + "c5": 3.897364771151179, + "c6": 2.5982431807674526, + "c7": 1.2991215903837263 }, "rgb": [77, 76, 132] }, @@ -405951,23 +405951,23 @@ "year": 1814, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 19.33036951106771, - "c2": -30.534555936730836, - "c3": -6.815518269134991, - "c4": 23.02939262601457, - "c5": -6.900748867522822, - "c6": 18.699418569754222, - "c7": 31.57141235219408 + "points": { + "c1": -2.4719282818712003, + "c2": 3.6139017115186363, + "c3": -28.738139050901644, + "c4": 6.8648778633353515, + "c5": -25.208846160408374, + "c6": -15.52770932842505, + "c7": -5.783012161637224 }, - "vertexSeeds": { - "c1": 6.981125600783641, - "c2": 7.158786876818591, - "c3": 7.16699810151018, - "c4": 6.950881393935988, - "c5": 7.235117580999838, - "c6": 7.38109587596866, - "c7": 7.533686066973976 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [77, 76, 132] }, @@ -405978,23 +405978,23 @@ "year": 1813, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 16.721595460996507, - "c2": -19.370747053400333, - "c3": -10.010448425807237, - "c4": 22.152496527298073, - "c5": 10.252669766466273, - "c6": -13.922541617830273, - "c7": 4.212748204862496 + "points": { + "c1": -0.6398163706554243, + "c2": 7.278966606661616, + "c3": 6.339536791773444, + "c4": 21.669120541049562, + "c5": -23.354752873298473, + "c6": -25.54180914343805, + "c7": 5.080556497459792 }, - "vertexSeeds": { - "c1": 5.586301611093719, - "c2": 5.816977436761429, - "c3": 5.661966777689001, - "c4": 5.648323707853781, - "c5": 5.529600640936799, - "c6": 5.698418352532231, - "c7": 5.765657764476367 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911243, + "c3": 7.420249653259364, + "c4": 5.936199722607486, + "c5": 4.452149791955621, + "c6": 2.9680998613037577, + "c7": 1.4840499306518788 }, "rgb": [222, 0, 59] }, @@ -406005,23 +406005,23 @@ "year": 1813, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 24.93977582741774, - "c2": -1.9967792828246438, - "c3": -22.65127746954414, - "c4": 19.65243429734329, - "c5": 3.756093859982961, - "c6": 12.026462479801538, - "c7": 19.392888285477284 + "points": { + "c1": -10.571044397376074, + "c2": -11.82886387509813, + "c3": 0.9534407851840143, + "c4": -12.375407004555328, + "c5": 6.581356137418041, + "c6": -28.68534539276316, + "c7": -22.611790241090237 }, - "vertexSeeds": { - "c1": 8.806750926094143, - "c2": 8.935366489881075, - "c3": 8.432150984940069, - "c4": 8.623297877257182, - "c5": 8.25997937440841, - "c6": 8.279784309234346, - "c7": 8.923504669200144 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542291, + "c3": 10.656495607951923, + "c4": 8.525196486361528, + "c5": 6.393897364771158, + "c6": 4.262598243180764, + "c7": 2.1312991215903705 }, "rgb": [58, 15, 49] }, @@ -406032,23 +406032,23 @@ "year": 1813, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -6.752375293611507, - "c2": -21.211378066257865, - "c3": -12.841701623176597, - "c4": 16.54470124693313, - "c5": -16.25771670273042, - "c6": -12.999374947296863, - "c7": 22.811713794195647 + "points": { + "c1": -11.84576930170349, + "c2": -6.524271992776232, + "c3": 13.99280791427023, + "c4": -12.91916403691258, + "c5": 1.9848814025403172, + "c6": -13.292889514565553, + "c7": 24.336118760290063 }, - "vertexSeeds": { - "c1": 9.672080776072697, - "c2": 9.741884453026772, - "c3": 9.870854374570637, - "c4": 9.689682643244694, - "c5": 9.722102870256109, - "c6": 9.542499691796873, - "c7": 9.868931350844555 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.2024965325936, + "c3": 11.835413777161355, + "c4": 9.468331021729067, + "c5": 7.101248266296822, + "c6": 4.734165510864534, + "c7": 2.367082755432288 }, "rgb": [58, 15, 49] }, @@ -406059,23 +406059,23 @@ "year": 1814, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 7.209275924193218, - "c2": -16.542009876237618, - "c3": -25.424406990170773, - "c4": 7.66297083730316, - "c5": -12.79971605690777, - "c6": 17.103359989748714, - "c7": 20.761700167797773 + "points": { + "c1": 4.661825206181209, + "c2": -16.5867521548071, + "c3": 27.214207238607965, + "c4": -28.166355399985683, + "c5": 20.997552683768692, + "c6": 15.001243447672163, + "c7": 14.281821215436846 }, - "vertexSeeds": { - "c1": 6.216312212510733, - "c2": 6.269210611466966, - "c3": 6.142796247134191, - "c4": 6.273028485278299, - "c5": 6.348025544052915, - "c6": 6.233158622866549, - "c7": 6.140862029739149 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192803, + "c3": 7.582061950993967, + "c4": 6.065649560795184, + "c5": 4.549237170596402, + "c6": 3.0328247803975645, + "c7": 1.5164123901987823 }, "rgb": [86, 146, 138] }, @@ -406086,23 +406086,23 @@ "year": 1813, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -11.536504649058308, - "c2": -1.3042340456298938, - "c3": -16.69481087757597, - "c4": -10.56587885251339, - "c5": 17.900560006586257, - "c6": -4.673165199032972, - "c7": -15.8796472777152 + "points": { + "c1": -5.129426510882205, + "c2": 17.98600192772391, + "c3": -5.624652157483403, + "c4": -11.311596600914891, + "c5": 11.500804104270767, + "c6": -15.25935097152476, + "c7": 9.243237965127232 }, - "vertexSeeds": { - "c1": 4.285136784566982, - "c2": 4.181209284892386, - "c3": 4.2157628618531175, - "c4": 4.286682877151709, - "c5": 3.935213750314792, - "c6": 3.9652975886637445, - "c7": 4.155874100330474 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130372, + "c3": 5.247341655108646, + "c4": 4.197873324086914, + "c5": 3.1484049930651894, + "c6": 2.098936662043457, + "c7": 1.0494683310217248 }, "rgb": [86, 146, 138] }, @@ -406113,23 +406113,23 @@ "year": 1814, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -28.741455470324453, - "c2": -5.2661471418286645, - "c3": -30.216001408903622, - "c4": -8.825856013511004, - "c5": -10.931827294470416, - "c6": -7.278167604996433, - "c7": -16.153012707801064 + "points": { + "c1": 25.749024772707315, + "c2": 12.927129639607287, + "c3": 24.341614352069513, + "c4": 4.121096260759344, + "c5": -20.334139628867828, + "c6": 30.44842902852251, + "c7": 29.71048949676633 }, - "vertexSeeds": { - "c1": 5.239759447903563, - "c2": 4.901761784738849, - "c3": 5.022642504044448, - "c4": 4.919005889629633, - "c5": 5.131224888732966, - "c6": 5.224935483472215, - "c7": 4.8592270872979615 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940369, + "c3": 6.287563569116965, + "c4": 5.030050855293579, + "c5": 3.7725381414701755, + "c6": 2.5150254276467896, + "c7": 1.2575127138233948 }, "rgb": [238, 201, 159] }, @@ -406140,23 +406140,23 @@ "year": 1814, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -31.188105633107742, - "c2": -12.010710706959046, - "c3": 1.5721596934265847, - "c4": 0.04951675775371456, - "c5": -30.81653136049481, - "c6": 3.4055129204246555, - "c7": 21.82107265669427 + "points": { + "c1": 10.113073971676627, + "c2": 10.228811739581992, + "c3": -15.238333629024776, + "c4": 4.04705551759217, + "c5": 34.12469225135943, + "c6": -7.211731372394144, + "c7": 27.492649185991063 }, - "vertexSeeds": { - "c1": 9.238205701250152, - "c2": 9.446028590639674, - "c3": 9.195494635248554, - "c4": 9.40925677390871, - "c5": 9.44892719615789, - "c6": 9.188158013839628, - "c7": 9.482450717331865 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708723, + "c3": 11.32686084142397, + "c4": 9.061488673139166, + "c5": 6.7961165048543615, + "c6": 4.53074433656961, + "c7": 2.265372168284805 }, "rgb": [86, 146, 138] }, @@ -406167,23 +406167,23 @@ "year": 1814, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 23.316182792068787, - "c2": -1.2600092961532567, - "c3": -18.74239492982555, - "c4": -17.219135940001426, - "c5": 5.493891849777928, - "c6": -6.4266778183689794, - "c7": -2.524620628713979 + "points": { + "c1": -25.65393202622237, + "c2": -18.430197599739444, + "c3": 22.271786192733124, + "c4": -22.56176669145876, + "c5": -22.13709806490426, + "c6": 19.80093973799039, + "c7": -11.826639351481685 }, - "vertexSeeds": { - "c1": 9.663853863972358, - "c2": 9.682508359501602, - "c3": 9.667257432853269, - "c4": 9.732013778884264, - "c5": 9.6418921579824, - "c6": 9.675506616276728, - "c7": 9.715268767648148 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.925104022191377, + "c3": 11.604253351826117, + "c4": 9.283402681460856, + "c5": 6.962552011095781, + "c6": 4.6417013407305205, + "c7": 2.3208506703652603 }, "rgb": [77, 76, 132] }, @@ -406194,23 +406194,23 @@ "year": 1814, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -28.336039757162705, - "c2": 26.15518397424733, - "c3": -24.881063280845982, - "c4": 29.66705367562723, - "c5": 2.1649927553982593, - "c6": -29.849338419220235, - "c7": -11.353855785817682 + "points": { + "c1": -22.66351951921748, + "c2": 12.950301448440484, + "c3": 8.016351989273126, + "c4": 13.253462959895224, + "c5": 30.299238411101783, + "c6": -0.8279623231002731, + "c7": 21.456278129598623 }, - "vertexSeeds": { - "c1": 6.341251361484074, - "c2": 6.2309587680766505, - "c3": 6.281905794472607, - "c4": 6.229752673337491, - "c5": 6.049942680985292, - "c6": 6.075959404532519, - "c7": 6.331814178209295 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327324, + "c3": 7.628294036061044, + "c4": 6.102635228848816, + "c5": 4.57697642163662, + "c6": 3.0513176144244247, + "c7": 1.5256588072121955 }, "rgb": [238, 201, 159] }, @@ -406221,23 +406221,23 @@ "year": 1814, "resistanceReported": true, "duration": 11664000, - "curveSeeds": { - "c1": -11.984692241139738, - "c2": 9.396290335501877, - "c3": -13.847556860568613, - "c4": 21.671680801384607, - "c5": -16.636582412199186, - "c6": 6.4354785394706795, - "c7": -4.883056283336622 + "points": { + "c1": -4.6889046759617266, + "c2": 21.04337853149673, + "c3": -10.299332106534784, + "c4": -16.3657595037389, + "c5": -22.540390035327412, + "c6": 6.21663690314433, + "c7": 13.013146295724734 }, - "vertexSeeds": { - "c1": 1.3942640672580802, - "c2": 1.300671198708391, - "c3": 1.2813207893733487, - "c4": 1.2368245123430262, - "c5": 1.2353739332646914, - "c6": 1.2377562094643715, - "c7": 1.2588704989204134 + "offsets": { + "c1": 2.3624595469255665, + "c2": 2.024965325936199, + "c3": 1.6874711049468316, + "c4": 1.3499768839574677, + "c5": 1.0124826629681003, + "c6": 0.674988441978733, + "c7": 0.33749422098936555 }, "rgb": [58, 15, 49] }, @@ -406248,23 +406248,23 @@ "year": 1814, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 9.581802129364263, - "c2": -33.421159333107525, - "c3": 7.857579500426851, - "c4": -0.8705908916486678, - "c5": -2.260975776966042, - "c6": -28.715093163291503, - "c7": 10.992048473909279 + "points": { + "c1": 2.3845368218258898, + "c2": 6.361693825161453, + "c3": -19.89530574144893, + "c4": 23.58835614311984, + "c5": 1.8290821955336583, + "c6": 18.035035062354048, + "c7": 12.159491317598707 }, - "vertexSeeds": { - "c1": 2.613771468060512, - "c2": 2.6014768153321133, - "c3": 2.5789872603615387, - "c4": 2.5885286747225567, - "c5": 2.5967074935906007, - "c6": 2.5753364647283923, - "c7": 2.5868085434795773 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.772538141470198, + "c3": 3.143781784558478, + "c4": 2.515025427646799, + "c5": 1.8862690707350784, + "c6": 1.2575127138233995, + "c7": 0.6287563569116789 }, "rgb": [222, 0, 59] }, @@ -406275,23 +406275,23 @@ "year": 1814, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 17.69194316473846, - "c2": -10.100745317584849, - "c3": 17.659245603728415, - "c4": -8.58954239920175, - "c5": 5.050896480526724, - "c6": 3.9259136675394615, - "c7": 5.860739890938092 + "points": { + "c1": -11.64902348256119, + "c2": 14.343808884109443, + "c3": 7.83719561265962, + "c4": -27.31893274105199, + "c5": -35.85275388176673, + "c6": -11.934485427363988, + "c7": -12.634034138203365 }, - "vertexSeeds": { - "c1": 5.324983998351261, - "c2": 5.083948008625376, - "c3": 5.1248510634091415, - "c4": 4.841116883640027, - "c5": 4.861700853457784, - "c6": 4.741095687897418, - "c7": 4.743474565030138 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318083, + "c4": 5.141007859454456, + "c5": 3.855755894590844, + "c6": 2.5705039297272316, + "c7": 1.285251964863612 }, "rgb": [86, 146, 138] }, @@ -406302,23 +406302,23 @@ "year": 1814, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 22.550153890568488, - "c2": 31.68167005958061, - "c3": -2.7332719774449643, - "c4": 2.012530621438465, - "c5": -20.275981267088973, - "c6": 35.27811569867093, - "c7": 33.01307123905052 + "points": { + "c1": 3.8805288662828943, + "c2": -7.977839797426153, + "c3": 1.2089046800191383, + "c4": -37.77022984912383, + "c5": 2.7766835865607007, + "c6": 27.6267947187726, + "c7": -21.97668903533751 }, - "vertexSeeds": { - "c1": 2.487266240982721, - "c2": 2.4344084155253736, - "c3": 2.395187869943066, - "c4": 2.411431642373615, - "c5": 2.4186258275387162, - "c6": 2.313307352053862, - "c7": 2.4831124717197457 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.689320388349516, + "c3": 3.0744336569579316, + "c4": 2.4595469255663427, + "c5": 1.844660194174758, + "c6": 1.2297734627831733, + "c7": 0.6148867313915888 }, "rgb": [238, 201, 159] }, @@ -406329,23 +406329,23 @@ "year": 1814, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 16.93959225544084, - "c2": -16.58289399193838, - "c3": -5.224011320388904, - "c4": -16.97452541305857, - "c5": -17.787182595915446, - "c6": 20.798733562695265, - "c7": -6.8266031135244845 + "points": { + "c1": -6.2226712754948785, + "c2": -13.784505862672598, + "c3": -24.852794262618556, + "c4": -5.835422709164394, + "c5": -20.82680288473857, + "c6": -6.0329097260082705, + "c7": -16.596806380685514 }, - "vertexSeeds": { - "c1": 7.217045854396116, - "c2": 7.181343276415732, - "c3": 7.2217637270788595, - "c4": 7.06294020770256, - "c5": 7.112923403836873, - "c6": 7.173155227300161, - "c7": 7.096505618356841 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002785, + "c3": 8.622283865002334, + "c4": 6.897827092001883, + "c5": 5.17337031900143, + "c6": 3.4489135460009797, + "c7": 1.7244567730004516 }, "rgb": [58, 15, 49] }, @@ -406356,23 +406356,23 @@ "year": 1814, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -6.109943655061304, - "c2": -2.438390171917714, - "c3": 25.986514888976927, - "c4": 2.812519567513821, - "c5": -22.423232985260483, - "c6": 27.05274683309691, - "c7": -6.115778716434743 + "points": { + "c1": -21.02306747075211, + "c2": 7.776210301913942, + "c3": 21.213408196001303, + "c4": -20.131984649163964, + "c5": -5.139373507985187, + "c6": 27.521889932857597, + "c7": 1.5026168944863265 }, - "vertexSeeds": { - "c1": 8.368942441215326, - "c2": 8.485598560705228, - "c3": 8.244834346961161, - "c4": 8.34096737376476, - "c5": 8.044278324598222, - "c6": 7.980653093282797, - "c7": 8.071172951077521 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898762, + "c3": 10.286638927415623, + "c4": 8.22931114193251, + "c5": 6.17198335644937, + "c6": 4.114655570966255, + "c7": 2.057327785483115 }, "rgb": [58, 15, 49] }, @@ -406383,23 +406383,23 @@ "year": 1814, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 5.452420697944589, - "c2": -26.016115784352994, - "c3": -8.762855432277103, - "c4": 7.913643946838839, - "c5": 9.940422466707979, - "c6": 12.440017876216992, - "c7": -0.2309555719619638 + "points": { + "c1": 27.960263171095143, + "c2": 19.5986919791168, + "c3": 21.013742701016326, + "c4": -5.534262504063928, + "c5": -0.7306855695669796, + "c6": 24.00071839664784, + "c7": 14.30228147748305 }, - "vertexSeeds": { - "c1": 9.44233506179662, - "c2": 9.512601000894142, - "c3": 7.94963079008379, - "c4": 8.147389053147933, - "c5": 9.924953219824927, - "c6": 8.281249898663807, - "c7": 8.496482393390277 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593617, + "c3": 11.835413777161348, + "c4": 9.468331021729083, + "c5": 7.101248266296813, + "c6": 4.734165510864542, + "c7": 2.367082755432271 }, "rgb": [222, 0, 59] }, @@ -406410,23 +406410,23 @@ "year": 1814, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -9.467430481993897, - "c2": 11.012205489553388, - "c3": 3.7105816789444575, - "c4": -22.98454211608251, - "c5": 15.303457273859301, - "c6": -21.644975091808682, - "c7": -21.288288646082073 + "points": { + "c1": -5.155283929783348, + "c2": 1.8991730802832372, + "c3": 6.393659695243734, + "c4": -12.263175416133752, + "c5": 10.990483494336239, + "c6": 24.337792812482583, + "c7": -24.33167439803317 }, - "vertexSeeds": { - "c1": 6.089565414536505, - "c2": 6.098866360037281, - "c3": 6.012016760532642, - "c4": 6.11227428535863, - "c5": 6.0379058769399645, - "c6": 6.068933261191271, - "c7": 6.102580570031266 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750346, + "c3": 7.3277854831252895, + "c4": 5.862228386500231, + "c5": 4.396671289875173, + "c6": 2.9311141932501155, + "c7": 1.4655570966250577 }, "rgb": [238, 201, 159] }, @@ -406437,23 +406437,23 @@ "year": 1814, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -25.173305954950983, - "c2": 27.829810390728184, - "c3": 7.070339726963596, - "c4": -23.877220847341505, - "c5": -10.263522735170646, - "c6": -5.462681476801787, - "c7": 25.1840572452339 + "points": { + "c1": 10.859123306150778, + "c2": 12.364788569078456, + "c3": 29.15378030738981, + "c4": -9.886824188974924, + "c5": -29.275701669792046, + "c6": 15.039659790634971, + "c7": 0.4262947816787346 }, - "vertexSeeds": { - "c1": 4.220012530312094, - "c2": 4.181996928367365, - "c3": 4.2245666178674695, - "c4": 4.192125734384934, - "c5": 4.209300429244487, - "c6": 4.206374057992814, - "c7": 4.179291221836987 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848816, + "c3": 5.085529357374008, + "c4": 4.068423485899199, + "c5": 3.0513176144243914, + "c6": 2.034211742949617, + "c7": 1.0171058714748085 }, "rgb": [238, 201, 159] }, @@ -406464,23 +406464,23 @@ "year": 1814, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 21.13870172988849, - "c2": -22.296898983975687, - "c3": -10.839004862086767, - "c4": 7.818412657588702, - "c5": 1.0276994685451228, - "c6": -7.28104108141336, - "c7": 3.9491850832647444 + "points": { + "c1": -20.24105610963271, + "c2": 2.4550031884302825, + "c3": 9.73911571605445, + "c4": -0.977306949535766, + "c5": -12.989911871569458, + "c6": -2.11425042981271, + "c7": 2.3708055535497508 }, - "vertexSeeds": { - "c1": 7.277517911475832, - "c2": 6.890091430114725, - "c3": 6.832397057131157, - "c4": 6.666491529953712, - "c5": 6.6349746356485, - "c6": 6.934903557152074, - "c7": 7.146575159523646 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807211, + "c3": 9.084604715672675, + "c4": 7.26768377253814, + "c5": 5.4507628294036055, + "c6": 3.63384188626907, + "c7": 1.816920943134535 }, "rgb": [77, 76, 132] }, @@ -406491,23 +406491,23 @@ "year": 1814, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -0.6619757475247035, - "c2": -12.419779976121292, - "c3": -10.468550735571718, - "c4": -5.541250780990616, - "c5": 14.395816998691949, - "c6": -0.4412572659043832, - "c7": -0.27189522548112066 + "points": { + "c1": 28.589251373556593, + "c2": 10.645328112370066, + "c3": -4.431297574294433, + "c4": -19.420987549154688, + "c5": 6.503436493421994, + "c6": 28.947572275407815, + "c7": -8.846080858409032 }, - "vertexSeeds": { - "c1": 6.897572210556253, - "c2": 7.434011800095115, - "c3": 7.159144592166423, - "c4": 6.937843307257549, - "c5": 6.902882429464251, - "c6": 7.405586607327283, - "c7": 7.511978133996191 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -406518,23 +406518,23 @@ "year": 1814, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 5.530205262808515, - "c2": 13.959182518469525, - "c3": 28.80665827438417, - "c4": 17.474629009707222, - "c5": -0.03858802051716026, - "c6": 19.236285284480132, - "c7": -17.119161153549086 + "points": { + "c1": 26.949322787005663, + "c2": 26.921221715221748, + "c3": 24.39938870538657, + "c4": 8.948516394073472, + "c5": -7.49792986285815, + "c6": -7.39436033032981, + "c7": 21.059399225539053 }, - "vertexSeeds": { - "c1": 4.356063424237509, - "c2": 4.424463422632106, - "c3": 4.4296915091501115, - "c4": 4.367675001127516, - "c5": 4.364247552961143, - "c6": 4.394235925574001, - "c7": 4.361314918928636 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210795, + "c3": 5.293573740175689, + "c4": 4.234858992140531, + "c5": 3.176144244105424, + "c6": 2.1174294960702653, + "c7": 1.0587147480351589 }, "rgb": [77, 76, 132] }, @@ -406545,23 +406545,23 @@ "year": 1814, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -13.85750945299289, - "c2": 14.850257989508243, - "c3": 2.6031460918810154, - "c4": -22.213948022602196, - "c5": -14.81319105246936, - "c6": 11.8074682361962, - "c7": -1.3211064696822845 + "points": { + "c1": -1.2077980288146222, + "c2": -10.22207281166066, + "c3": 28.48596710377995, + "c4": -17.531446021673226, + "c5": -23.097142445611006, + "c6": -19.476671449103062, + "c7": -15.428193111970142 }, - "vertexSeeds": { - "c1": 8.792122775130483, - "c2": 8.822429493509482, - "c3": 8.383899548455666, - "c4": 8.644924937739528, - "c5": 8.516306781874464, - "c6": 8.719605120446328, - "c7": 8.689248265075864 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381423, + "c3": 10.56403143781783, + "c4": 8.45122515025427, + "c5": 6.338418862690712, + "c6": 4.225612575127153, + "c7": 2.1128062875635596 }, "rgb": [58, 15, 49] }, @@ -406572,23 +406572,23 @@ "year": 1814, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -20.768504823302813, - "c2": 17.594430429724117, - "c3": -3.0139066865009667, - "c4": -3.4644060647711967, - "c5": 11.148166689061629, - "c6": 7.529517062821277, - "c7": 20.1208590667522 + "points": { + "c1": -10.399152916957464, + "c2": 12.633750997245006, + "c3": 7.581188280838038, + "c4": -18.079818155005352, + "c5": 15.936661570215133, + "c6": -6.225091856352567, + "c7": 1.7587027705802605 }, - "vertexSeeds": { - "c1": 7.416521129855633, - "c2": 7.2363225097095345, - "c3": 7.500521049216603, - "c4": 7.5216400992315355, - "c5": 7.348887265907367, - "c6": 7.317312208301532, - "c7": 7.305230669814179 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968107, + "c3": 9.177068885806737, + "c4": 7.341655108645395, + "c5": 5.506241331484054, + "c6": 3.6708275543226834, + "c7": 1.8354137771613417 }, "rgb": [222, 0, 59] }, @@ -406599,23 +406599,23 @@ "year": 1814, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 10.781611419932535, - "c2": 6.044882576057599, - "c3": 25.022622891628476, - "c4": -10.401928883568036, - "c5": -5.495297075966796, - "c6": 26.0080874612753, - "c7": -18.320829374314407 + "points": { + "c1": 9.355997474332948, + "c2": -6.4804271120754855, + "c3": 24.974365404407404, + "c4": 17.959570795816024, + "c5": 9.850020833232133, + "c6": 31.479465500182815, + "c7": 1.7469606132581212 }, - "vertexSeeds": { - "c1": 10.169325200823355, - "c2": 10.247950557807382, - "c3": 10.168339315193634, - "c4": 10.154500152750796, - "c5": 9.99975918046926, - "c6": 9.976512159624134, - "c7": 9.96696407424017 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.674063800277338, + "c3": 12.228386500231176, + "c4": 9.782709200184893, + "c5": 7.33703190013873, + "c6": 4.891354600092447, + "c7": 2.4456773000461625 }, "rgb": [222, 0, 59] }, @@ -406626,23 +406626,23 @@ "year": 1814, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": 5.906998425078111, - "c2": 20.29846588478562, - "c3": -1.7070710117445351, - "c4": 8.367590471409269, - "c5": -0.20267948192350715, - "c6": 13.560241444185984, - "c7": 2.3238949067433055 + "points": { + "c1": 17.876514398021207, + "c2": 22.142394856109398, + "c3": 16.190957671059998, + "c4": 19.89256702097172, + "c5": 5.238474128782769, + "c6": -15.234728521309778, + "c7": -14.598299130699306 }, - "vertexSeeds": { - "c1": 2.443812528383058, - "c2": 2.640055694735674, - "c3": 2.4022829480026924, - "c4": 2.4684690128426094, - "c5": 2.6590179170120485, - "c6": 2.635906645218281, - "c7": 2.6492137446531663 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590848, + "c3": 3.2131299121590415, + "c4": 2.570503929727228, + "c5": 1.927877947295422, + "c6": 1.2852519648636158, + "c7": 0.642625982431806 }, "rgb": [58, 15, 49] }, @@ -406653,23 +406653,23 @@ "year": 1814, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": -14.399115501565147, - "c2": 16.26986355109362, - "c3": -5.423715658200557, - "c4": -17.802556784443382, - "c5": -17.428391458466574, - "c6": 10.04962085080318, - "c7": 3.228848298001985 + "points": { + "c1": -6.716554207608226, + "c2": -2.798018034726173, + "c3": -4.1457714639708705, + "c4": 15.464737432920494, + "c5": 9.269033479398544, + "c6": 24.138497495039104, + "c7": -9.295976460863788 }, - "vertexSeeds": { - "c1": 4.721502590673575, - "c2": 4.721502590673575, - "c3": 4.721502590673575, - "c4": 4.721502590673575, - "c5": 4.721502590673575, - "c6": 4.721502590673575, - "c7": 4.721502590673575 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -406680,23 +406680,23 @@ "year": 1814, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 18.082460823288365, - "c2": 1.124653612587629, - "c3": -14.290537052601707, - "c4": 17.042351996838754, - "c5": 0.17491408378507955, - "c6": -11.13556179312453, - "c7": 17.741387865925446 + "points": { + "c1": 13.431023108564155, + "c2": 20.716541380657453, + "c3": -13.831970801766552, + "c4": 11.510683660019922, + "c5": 5.890237287384057, + "c6": -19.139247531759615, + "c7": 3.484100350549131 }, - "vertexSeeds": { - "c1": 2.42658227525573, - "c2": 2.462863110516999, - "c3": 2.478627289056295, - "c4": 2.4592002663599626, - "c5": 2.470991760932897, - "c6": 2.4209079761502057, - "c7": 2.4707602696590336 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269071, + "c3": 3.0282015718908926, + "c4": 2.422561257512714, + "c5": 1.8169209431345354, + "c6": 1.211280628756357, + "c7": 0.6056403143781784 }, "rgb": [222, 0, 59] }, @@ -406707,23 +406707,23 @@ "year": 1814, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": 4.5353633762871866, - "c2": 6.146971064734728, - "c3": 9.602836542780818, - "c4": -1.1752131549628047, - "c5": -15.631302561195627, - "c6": -16.816042160785287, - "c7": -8.183945966626839 + "points": { + "c1": 5.750985496376547, + "c2": -18.383843110012368, + "c3": -18.104873401355622, + "c4": 10.891359062950169, + "c5": 18.1161114072366, + "c6": -15.61014074519993, + "c7": -0.6707876884978674 }, - "vertexSeeds": { - "c1": 6.425619496486148, - "c2": 6.300503777567593, - "c3": 6.428358722853625, - "c4": 6.408860937663583, - "c5": 6.496188320938376, - "c6": 6.338368404214904, - "c7": 6.26378075561918 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554784, + "c3": 7.790106333795654, + "c4": 6.232085067036523, + "c5": 4.674063800277392, + "c6": 3.1160425335182613, + "c7": 1.5580212667591307 }, "rgb": [58, 15, 49] }, @@ -406734,23 +406734,23 @@ "year": 1814, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 20.675924710788138, - "c2": -15.171433050192856, - "c3": -7.608036624643779, - "c4": 4.425503846960421, - "c5": -9.488444588288589, - "c6": 12.03370616942098, - "c7": -1.1259415429989659 + "points": { + "c1": 1.647994867573079, + "c2": -11.76387526223856, + "c3": -15.421400946106504, + "c4": -5.34349985774892, + "c5": 2.2403228891590317, + "c6": 6.920682555214093, + "c7": -23.829313144763393 }, - "vertexSeeds": { - "c1": 4.043520863998171, - "c2": 4.037849971646503, - "c3": 3.9335908834415347, - "c4": 3.8288219838522908, - "c5": 3.9401735277536645, - "c6": 4.132563870329631, - "c7": 3.671846411884237 + "offsets": { + "c1": 6.957928802588997, + "c2": 5.963938973647713, + "c3": 4.969949144706431, + "c4": 3.9759593157651403, + "c5": 2.9819694868238567, + "c6": 1.987979657882574, + "c7": 0.9939898289412906 }, "rgb": [86, 146, 138] }, @@ -406761,23 +406761,23 @@ "year": 1814, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 8.939591922963466, - "c2": -30.57901899908415, - "c3": 9.674104231467084, - "c4": 0.7630888092406707, - "c5": 30.20155712658923, - "c6": -9.548942525727458, - "c7": 28.251475448255405 + "points": { + "c1": 32.83192421039937, + "c2": 8.96948011227282, + "c3": -18.07413192482341, + "c4": -35.796770749934964, + "c5": 1.8930460616536635, + "c6": -34.7042787296989, + "c7": -1.3638699396056992 }, - "vertexSeeds": { - "c1": 9.131506636045962, - "c2": 9.231094396691297, - "c3": 9.161206480515048, - "c4": 9.10857413328819, - "c5": 9.5622365982373, - "c6": 9.689008185992869, - "c7": 9.594608934426661 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110947, + "c3": 11.558021266759143, + "c4": 9.246417013407308, + "c5": 6.934812760055474, + "c6": 4.623208506703639, + "c7": 2.311604253351834 }, "rgb": [238, 201, 159] }, @@ -406788,23 +406788,23 @@ "year": 1814, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": -17.345687500919773, - "c2": 10.792538490361139, - "c3": -20.471419770558594, - "c4": -7.507144494690214, - "c5": 19.15312972359103, - "c6": -1.9216838250781052, - "c7": 8.3712194640609 + "points": { + "c1": 4.206863611788911, + "c2": -13.74304967109192, + "c3": -2.873352483849402, + "c4": -22.990547104053448, + "c5": -14.954606315074438, + "c6": -14.959555108928589, + "c7": -8.270832299247942 }, - "vertexSeeds": { - "c1": 2.7645000925169008, - "c2": 2.768081781097989, - "c3": 3.0385494443510987, - "c4": 2.7360351359680815, - "c5": 2.8915230151618143, - "c6": 3.0393902799486265, - "c7": 2.706140583799967 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435506, + "c3": 3.69856680536292, + "c4": 2.9588534442903347, + "c5": 2.2191400832177566, + "c6": 1.4794267221451711, + "c7": 0.7397133610725856 }, "rgb": [58, 15, 49] }, @@ -406815,23 +406815,23 @@ "year": 1814, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": -0.3010647092081271, - "c2": -20.530397568061762, - "c3": -4.151983616424282, - "c4": -1.3523314658703995, - "c5": 2.422260387288116, - "c6": 14.918936692659969, - "c7": 0.0056060798175039395 + "points": { + "c1": -19.23794372384235, + "c2": -11.360691406842559, + "c3": -19.55014852465468, + "c4": -6.80732619971775, + "c5": -16.84130222086592, + "c6": 18.10448360461691, + "c7": -18.112887268557607 }, - "vertexSeeds": { - "c1": 4.009877396917659, - "c2": 3.973963914890517, - "c3": 4.378992425146179, - "c4": 4.507762018883344, - "c5": 4.341406035448808, - "c6": 4.02079960485815, - "c7": 3.9753366198665168 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773923, + "c3": 5.617198335644935, + "c4": 4.4937586685159525, + "c5": 3.3703190013869646, + "c6": 2.2468793342579763, + "c7": 1.1234396671289881 }, "rgb": [222, 0, 59] }, @@ -406842,23 +406842,23 @@ "year": 1814, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 5.922406706705857, - "c2": 6.388981626006522, - "c3": -1.7724907668452197, - "c4": -19.938653257527122, - "c5": -5.438906638074677, - "c6": 8.555051631403021, - "c7": -23.684202892935318 + "points": { + "c1": -17.12372335219425, + "c2": 2.473338057315239, + "c3": -26.239989080616784, + "c4": 4.687539668199658, + "c5": 19.523790946380988, + "c6": 8.74989842621213, + "c7": 9.149182585472953 }, - "vertexSeeds": { - "c1": 10.143997985608575, - "c2": 10.096112769869793, - "c3": 10.05455651110439, - "c4": 9.910725253778372, - "c5": 10.034696774710483, - "c6": 10.017453109339876, - "c7": 9.986078000467122 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156726, + "c3": 12.159038372630604, + "c4": 9.727230698104483, + "c5": 7.295423023578363, + "c6": 4.863615349052242, + "c7": 2.431807674526121 }, "rgb": [77, 76, 132] }, @@ -406869,23 +406869,23 @@ "year": 1814, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -19.73818364445379, - "c2": -19.915287682315522, - "c3": -8.694465225659652, - "c4": 19.91713312633349, - "c5": -10.299168634187094, - "c6": 6.181357820114144, - "c7": 6.60009577105312 + "points": { + "c1": 10.649174500888499, + "c2": 30.07376039914638, + "c3": -23.786842786489547, + "c4": 8.372457711864698, + "c5": 17.420329258319804, + "c6": 23.449522821869962, + "c7": -18.07515630153259 }, - "vertexSeeds": { - "c1": 10.976053898385636, - "c2": 11.086043515111923, - "c3": 10.977841958671581, - "c4": 11.014115666873511, - "c5": 11.53403942946395, - "c6": 11.082782357515283, - "c7": 11.064050117253215 + "offsets": { + "c1": 19.25566343042071, + "c2": 16.50485436893203, + "c3": 13.754045307443343, + "c4": 11.003236245954662, + "c5": 8.25242718446598, + "c6": 5.501618122977366, + "c7": 2.750809061488683 }, "rgb": [238, 201, 159] }, @@ -406896,23 +406896,23 @@ "year": 1814, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 15.482551146932476, - "c2": 6.815922685385306, - "c3": -20.447526055009007, - "c4": -8.98510290523825, - "c5": 10.461222735952031, - "c6": 23.249603088462937, - "c7": -6.006702981055753 + "points": { + "c1": -9.708639928387868, + "c2": 8.990654448496283, + "c3": 22.189096722392517, + "c4": 19.26339684602539, + "c5": 8.919007692392665, + "c6": -29.767178455005105, + "c7": 23.49217758199521 }, - "vertexSeeds": { - "c1": 8.957443841223126, - "c2": 8.529585049872901, - "c3": 9.09667844609548, - "c4": 8.671400161024284, - "c5": 8.775193443047925, - "c6": 8.666045545254859, - "c7": 8.701666921481168 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105416, + "c3": 10.980120203421187, + "c4": 8.784096162736937, + "c5": 6.588072122052708, + "c6": 4.39204808136848, + "c7": 2.196024040684251 }, "rgb": [77, 76, 132] }, @@ -406923,23 +406923,23 @@ "year": 1814, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 18.09968111728035, - "c2": -15.822398459602478, - "c3": -5.390286130949711, - "c4": -10.504729610484564, - "c5": -21.639805654296527, - "c6": -6.223533528446783, - "c7": -16.619787978525373 + "points": { + "c1": 2.4071580108036486, + "c2": 18.487660444907196, + "c3": -20.23632641802744, + "c4": -14.513445321265275, + "c5": 26.983404267315965, + "c6": -19.9850038706942, + "c7": -27.54974534974067 }, - "vertexSeeds": { - "c1": 3.741258987061343, - "c2": 3.7597003439872716, - "c3": 3.738268294693652, - "c4": 3.6694991883089827, - "c5": 3.614758901035797, - "c6": 3.6394707089254537, - "c7": 3.653926759167002 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883501, + "c3": 4.530744336569571, + "c4": 3.62459546925566, + "c5": 2.7184466019417504, + "c6": 1.8122977346278202, + "c7": 0.9061488673139101 }, "rgb": [58, 15, 49] }, @@ -406950,23 +406950,23 @@ "year": 1814, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 13.182695169756823, - "c2": -22.176154522591823, - "c3": -11.312186706790616, - "c4": -7.32163616712004, - "c5": -26.283427674500025, - "c6": 13.049397062389236, - "c7": 8.507094080617097 + "points": { + "c1": 14.762887862197584, + "c2": -14.44459586000451, + "c3": -18.237191914380148, + "c4": -25.884796045875294, + "c5": -5.0345245595299595, + "c6": 16.228310417938903, + "c7": -23.430057599683522 }, - "vertexSeeds": { - "c1": 6.72279792746114, - "c2": 6.72279792746114, - "c3": 6.72279792746114, - "c4": 6.72279792746114, - "c5": 6.72279792746114, - "c6": 6.72279792746114, - "c7": 6.72279792746114 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -406977,23 +406977,23 @@ "year": 1814, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 18.223662877191476, - "c2": -20.107098636018833, - "c3": 1.2871001664129693, - "c4": 2.2827055910832215, - "c5": 0.6511857957476259, - "c6": 19.25098624021823, - "c7": -0.9233922487862358 + "points": { + "c1": 15.931619960101013, + "c2": -20.496239209988335, + "c3": 22.58985920982938, + "c4": 28.774774090079067, + "c5": 24.24271246397819, + "c6": 26.320587413822974, + "c7": -6.426174041299973 }, - "vertexSeeds": { - "c1": 6.390200881249888, - "c2": 6.318539827853128, - "c3": 6.367857718912357, - "c4": 6.341199346399445, - "c5": 6.349925425439513, - "c6": 6.346085805956201, - "c7": 6.383067823014669 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273274, + "c3": 7.628294036060961, + "c4": 6.102635228848799, + "c5": 4.576976421636637, + "c6": 3.0513176144244754, + "c7": 1.5256588072121617 }, "rgb": [77, 76, 132] }, @@ -407004,23 +407004,23 @@ "year": 1814, "resistanceReported": false, "duration": 3628800, - "curveSeeds": { - "c1": -9.792339176493968, - "c2": -1.1186966649667003, - "c3": -7.433534306155061, - "c4": -0.9742678982747979, - "c5": -13.229592589640692, - "c6": 13.133841661984398, - "c7": 5.287326436440775 + "points": { + "c1": -14.20733180440977, + "c2": -10.59456990072919, + "c3": -2.821980571845451, + "c4": -7.94527531087867, + "c5": 11.836095303606474, + "c6": 14.220511966764665, + "c7": 4.9007465949434135 }, - "vertexSeeds": { - "c1": 1.1516197560362527, - "c2": 1.150903781107907, - "c3": 1.240183731420358, - "c4": 1.2267283002041942, - "c5": 1.2880712449819132, - "c6": 1.25859838710767, - "c7": 1.2720618472491854 + "offsets": { + "c1": 2.233009708737864, + "c2": 1.9140083217753114, + "c3": 1.5950069348127591, + "c4": 1.27600554785021, + "c5": 0.9570041608876557, + "c6": 0.638002773925105, + "c7": 0.3190013869625525 }, "rgb": [86, 146, 138] }, @@ -407031,23 +407031,23 @@ "year": 1814, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 19.703542771542566, - "c2": -17.465058019864898, - "c3": 17.441663392702175, - "c4": -21.245778780130465, - "c5": 4.471762233578811, - "c6": -1.0191445916076916, - "c7": -15.942186006602984 + "points": { + "c1": 24.047229619081634, + "c2": 9.125468344082662, + "c3": 18.603945709888528, + "c4": 18.1174788123245, + "c5": 13.67389227678995, + "c6": -17.3604432166062, + "c7": -13.430350137558245 }, - "vertexSeeds": { - "c1": 4.095880984886729, - "c2": 4.083531802169677, - "c3": 4.075226993031391, - "c4": 4.073457274409021, - "c5": 4.092220619669206, - "c6": 4.065434152158875, - "c7": 4.076278770673867 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527025, + "c3": 4.9006010171058785, + "c4": 3.920480813684683, + "c5": 2.940360610263537, + "c6": 1.9602404068423416, + "c7": 0.9801202034211465 }, "rgb": [222, 0, 59] }, @@ -407058,23 +407058,23 @@ "year": 1814, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 32.12098347344557, - "c2": -36.29456356934659, - "c3": 8.069368288602583, - "c4": 24.477562968704348, - "c5": -12.64972518107087, - "c6": 12.14200864615053, - "c7": -18.35930380963745 + "points": { + "c1": -37.86993662475073, + "c2": 34.7219927613934, + "c3": -27.611293003874685, + "c4": -18.811881277511265, + "c5": 7.877584158986423, + "c6": -25.79804802459291, + "c7": -18.602555683789024 }, - "vertexSeeds": { - "c1": 12.185440158138139, - "c2": 11.450858091738933, - "c3": 12.03673098728918, - "c4": 11.332324041639987, - "c5": 11.340943123775215, - "c6": 11.811976708081033, - "c7": 11.446952361059246 + "offsets": { + "c1": 20.388349514563107, + "c2": 17.475728155339826, + "c3": 14.563106796116498, + "c4": 11.650485436893216, + "c5": 8.73786407766989, + "c6": 5.825242718446608, + "c7": 2.912621359223326 }, "rgb": [77, 76, 132] }, @@ -407085,23 +407085,23 @@ "year": 1814, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 5.441359583189627, - "c2": -1.330126317202101, - "c3": 17.049910343143896, - "c4": 7.944487492568729, - "c5": -14.84194745354898, - "c6": -26.657823200815915, - "c7": 22.376874562445476 + "points": { + "c1": -0.21885084113004893, + "c2": -28.42763725544945, + "c3": 5.839872557066844, + "c4": -27.646273790824146, + "c5": 2.3268178883608464, + "c6": -10.003772545445099, + "c7": 6.276648594914224 }, - "vertexSeeds": { - "c1": 6.70004673099206, - "c2": 6.809600370728535, - "c3": 6.600620337560461, - "c4": 6.612868919552587, - "c5": 6.856486947602794, - "c6": 6.560998959910254, - "c7": 6.90807787257341 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520103, + "c3": 8.344891354600096, + "c4": 6.675913083680069, + "c5": 5.006934812760061, + "c6": 3.3379565418400343, + "c7": 1.668978270920008 }, "rgb": [58, 15, 49] }, @@ -407112,23 +407112,23 @@ "year": 1814, "resistanceReported": false, "duration": 6134400, - "curveSeeds": { - "c1": -0.5902154303941636, - "c2": -2.8924583378956417, - "c3": -12.32490633578185, - "c4": 5.230364656695166, - "c5": -15.070145392681447, - "c6": -12.536993883491707, - "c7": -5.871627671395753 + "points": { + "c1": 14.143189547350786, + "c2": -7.583452513381504, + "c3": 1.1297810979926517, + "c4": 12.804546215366564, + "c5": 4.8777697772124675, + "c6": 5.370154173382783, + "c7": -4.631724672907355 }, - "vertexSeeds": { - "c1": 4.820535343958662, - "c2": 4.845946763625318, - "c3": 4.818788485424805, - "c4": 4.84957658397329, - "c5": 4.8576543474561555, - "c6": 4.875371097496339, - "c7": 4.822428727990213 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135897, + "c3": 5.82524271844661, + "c4": 4.660194174757265, + "c5": 3.495145631067978, + "c6": 2.3300970873786326, + "c7": 1.1650485436892872 }, "rgb": [86, 146, 138] }, @@ -407139,23 +407139,23 @@ "year": 1814, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 13.60336606921199, - "c2": -23.90964834776755, - "c3": -19.58286030022939, - "c4": -10.92369517414966, - "c5": -20.538814273336417, - "c6": 29.775482585306467, - "c7": 22.02409094416218 + "points": { + "c1": -19.063552374217576, + "c2": -27.663392079125423, + "c3": -22.95525218623907, + "c4": 0.550127430771191, + "c5": 1.689145566507257, + "c6": 25.451884532266483, + "c7": 4.6691017229549985 }, - "vertexSeeds": { - "c1": 4.2752420620692435, - "c2": 4.199105106143488, - "c3": 3.933281529492019, - "c4": 3.705462230098195, - "c5": 3.973434617382248, - "c6": 4.108395377057095, - "c7": 3.970609406712724 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130375, + "c3": 5.247341655108647, + "c4": 4.197873324086919, + "c5": 3.1484049930651907, + "c6": 2.098936662043456, + "c7": 1.049468331021734 }, "rgb": [238, 201, 159] }, @@ -407166,23 +407166,23 @@ "year": 1814, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 4.047958616879427, - "c2": -24.44309616061872, - "c3": -17.049608881995624, - "c4": -23.19962125582173, - "c5": 7.650911688982454, - "c6": -2.200379947076968, - "c7": 4.587716924789998 + "points": { + "c1": 3.612933366648285, + "c2": 7.461635390070974, + "c3": 8.008215317648784, + "c4": 25.668369753644903, + "c5": -26.23634421338039, + "c6": -9.287593855782191, + "c7": -4.430969258117795 }, - "vertexSeeds": { - "c1": 5.533859808496081, - "c2": 5.389814151080656, - "c3": 5.569405551780669, - "c4": 5.385266147271878, - "c5": 5.554192786766856, - "c6": 5.336156459983737, - "c7": 5.400424618704543 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.988904299583928, + "c3": 6.657420249653253, + "c4": 5.325936199722619, + "c5": 3.9944521497919436, + "c6": 2.6629680998613097, + "c7": 1.3314840499306344 }, "rgb": [222, 0, 59] }, @@ -407193,23 +407193,23 @@ "year": 1814, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 7.928644616548947, - "c2": 27.481716114513663, - "c3": -25.215834129009618, - "c4": 5.799650621865215, - "c5": -27.782565083661314, - "c6": -6.580049918391449, - "c7": -26.057387547826828 + "points": { + "c1": -5.1182636801468995, + "c2": 21.27368615080407, + "c3": -2.5799865962449893, + "c4": -24.327081822573476, + "c5": -7.0585878266402595, + "c6": 0.32865455308957436, + "c7": 6.6708601499801965 }, - "vertexSeeds": { - "c1": 5.320975326020171, - "c2": 5.301492716969692, - "c3": 5.0708256369684195, - "c4": 4.948607425001226, - "c5": 5.001805609532283, - "c6": 5.343577003481401, - "c7": 4.965085086112751 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141468, + "c3": 6.403143781784553, + "c4": 5.122515025427658, + "c5": 3.841886269070743, + "c6": 2.561257512713829, + "c7": 1.2806287563569145 }, "rgb": [238, 201, 159] }, @@ -407220,23 +407220,23 @@ "year": 1814, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 11.866491846858782, - "c2": 1.5690406949333138, - "c3": 21.856635057232065, - "c4": -1.843249410177176, - "c5": 17.203399805549896, - "c6": 20.102533475375967, - "c7": -15.127871574856554 + "points": { + "c1": 3.095523335542449, + "c2": 18.86885597142521, + "c3": -11.867309225550759, + "c4": -25.035140311601268, + "c5": 3.1177154046712836, + "c6": 11.52461735136178, + "c7": -12.163673324364595 }, - "vertexSeeds": { - "c1": 9.637691351837681, - "c2": 9.719131772630693, - "c3": 9.654703287429252, - "c4": 9.808551714372069, - "c5": 9.726231421928478, - "c6": 9.663862724198186, - "c7": 9.743675360016663 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352304, + "c3": 11.69671752196027, + "c4": 9.357374017568237, + "c5": 7.018030513176203, + "c6": 4.678687008784067, + "c7": 2.3393435043920334 }, "rgb": [238, 201, 159] }, @@ -407247,23 +407247,23 @@ "year": 1814, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 22.980832531493334, - "c2": -9.204573962572503, - "c3": -0.15080535385032334, - "c4": -9.480122745263266, - "c5": -11.709403693091279, - "c6": 17.005980144292074, - "c7": -27.479399624641236 + "points": { + "c1": 22.179054085409554, + "c2": 31.032848301015918, + "c3": 12.168854281571612, + "c4": 30.461050022741517, + "c5": 19.62249830185622, + "c6": 1.2083214243316363, + "c7": 19.42177708407238 }, - "vertexSeeds": { - "c1": 10.021607963704893, - "c2": 9.984221826490563, - "c3": 10.001316733483971, - "c4": 9.86181032910286, - "c5": 9.811233296722511, - "c6": 9.831385596366978, - "c7": 9.827871070635686 + "offsets": { + "c1": 16.763754045307444, + "c2": 14.368932038834988, + "c3": 11.974110032362406, + "c4": 9.57928802588995, + "c5": 7.184466019417494, + "c6": 4.789644012944975, + "c7": 2.3948220064724555 }, "rgb": [77, 76, 132] }, @@ -407274,23 +407274,23 @@ "year": 1814, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -19.800453817239354, - "c2": -19.613561004292315, - "c3": 20.298261334019152, - "c4": 19.68821905571381, - "c5": -15.731953397772038, - "c6": -16.760620031937933, - "c7": -20.57681803305855 + "points": { + "c1": -14.559482435941355, + "c2": 14.28630527311546, + "c3": -13.480633662948662, + "c4": 14.564182883240527, + "c5": -5.036801394638999, + "c6": 9.215578657573907, + "c7": -5.15355330917934 }, - "vertexSeeds": { - "c1": 11.49111140964315, - "c2": 10.70011629965263, - "c3": 10.55157540483599, - "c4": 10.245206990047231, - "c5": 10.441823634912327, - "c6": 9.971529002241443, - "c7": 10.78923395678094 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133145, + "c3": 13.869625520110956, + "c4": 11.095700416088764, + "c5": 8.321775312066572, + "c6": 5.547850208044382, + "c7": 2.773925104022191 }, "rgb": [77, 76, 132] }, @@ -407301,23 +407301,23 @@ "year": 1814, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -9.605471642740767, - "c2": -26.87109449818123, - "c3": -21.909908519229816, - "c4": 15.441450414453776, - "c5": 22.420695748696254, - "c6": 15.86482203749209, - "c7": 9.406197035366695 + "points": { + "c1": 31.740865955649234, + "c2": -6.925856409364695, + "c3": -5.3243005171053035, + "c4": 26.235425874175668, + "c5": -15.598147354908555, + "c6": -30.138352689127476, + "c7": 12.658188099997979 }, - "vertexSeeds": { - "c1": 8.036981658350692, - "c2": 8.13757855906943, - "c3": 8.15642444903801, - "c4": 7.984645701550265, - "c5": 8.087962904778529, - "c6": 8.126470010871877, - "c7": 8.005834491575841 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013879, + "c3": 9.77808599167824, + "c4": 7.822468793342602, + "c5": 5.866851595006963, + "c6": 3.911234396671325, + "c7": 1.955617198335687 }, "rgb": [238, 201, 159] }, @@ -407328,23 +407328,23 @@ "year": 1814, "resistanceReported": false, "duration": 7516800, - "curveSeeds": { - "c1": 17.91949235850788, - "c2": -14.997078364858574, - "c3": 13.51346993273657, - "c4": 8.22723860746635, - "c5": 17.38805992316224, - "c6": -9.449444972340187, - "c7": 15.657056436968873 + "points": { + "c1": -2.593126068311051, + "c2": -17.12178233367044, + "c3": 0.2636294586134298, + "c4": 12.163920248530104, + "c5": -17.303968809628433, + "c6": 2.3960567013545564, + "c7": -3.343332874194207 }, - "vertexSeeds": { - "c1": 1.8914315345242174, - "c2": 1.9686211561702398, - "c3": 1.9086175489820523, - "c4": 1.9406002529579278, - "c5": 1.8984213066420912, - "c6": 1.7501551136041786, - "c7": 1.8888174845678154 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142857, + "c3": 2.380952380952381, + "c4": 1.9047619047619047, + "c5": 1.4285714285714286, + "c6": 0.9523809523809523, + "c7": 0.47619047619047616 }, "rgb": [222, 0, 59] }, @@ -407355,23 +407355,23 @@ "year": 1814, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 3.7141809869455784, - "c2": 17.475577941953752, - "c3": -10.321150948205396, - "c4": 10.603842070294263, - "c5": 3.3221827504199553, - "c6": 27.11709628655609, - "c7": 0.9627720154231199 + "points": { + "c1": 0.2783332954044937, + "c2": 13.900974308613243, + "c3": 5.970342927372684, + "c4": -29.915698156737545, + "c5": -27.241381446106836, + "c6": 25.719548990593246, + "c7": -32.315916779020355 }, - "vertexSeeds": { - "c1": 12.443420895676187, - "c2": 12.289752825057368, - "c3": 12.622007977189247, - "c4": 12.35539206342365, - "c5": 12.532988156088567, - "c6": 12.164437790132915, - "c7": 12.309211493734297 + "offsets": { + "c1": 21.262135922330096, + "c2": 18.224687933425827, + "c3": 15.187239944521485, + "c4": 12.149791955617218, + "c5": 9.112343966712878, + "c6": 6.074895977808609, + "c7": 3.037447988904268 }, "rgb": [77, 76, 132] }, @@ -407382,23 +407382,23 @@ "year": 1814, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": 7.56717195987963, - "c2": 10.50879409590171, - "c3": 10.22753667367207, - "c4": -13.132920853778558, - "c5": -18.479100358980425, - "c6": 11.265437188118785, - "c7": 4.548942952710821 + "points": { + "c1": -2.385460212156616, + "c2": -7.140884677156654, + "c3": 15.66653751540455, + "c4": -1.194866510327703, + "c5": 1.579706408881389, + "c6": 20.546315593935745, + "c7": -15.954684885963365 }, - "vertexSeeds": { - "c1": 1.2021969802476087, - "c2": 1.147428296030909, - "c3": 1.1579710915877108, - "c4": 1.1402587661191261, - "c5": 1.0789011746679245, - "c6": 1.120675756338206, - "c7": 1.1997352036722826 + "offsets": { + "c1": 2.071197411003236, + "c2": 1.7753120665742015, + "c3": 1.479426722145169, + "c4": 1.1835413777161343, + "c5": 0.8876560332871017, + "c6": 0.5917706888580672, + "c7": 0.2958853444290345 }, "rgb": [86, 146, 138] }, @@ -407409,23 +407409,23 @@ "year": 1814, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 7.586366644838002, - "c2": 5.290509554709573, - "c3": -17.1064507261298, - "c4": -29.015800599606216, - "c5": -24.783977729160696, - "c6": -7.901712751688738, - "c7": -24.28771541853877 + "points": { + "c1": 8.366886252554636, + "c2": -24.881855462366822, + "c3": -8.75920604149389, + "c4": -34.867838378190555, + "c5": 9.83365316342205, + "c6": -29.054440479833335, + "c7": 33.38231101280075 }, - "vertexSeeds": { - "c1": 13.319142939440141, - "c2": 14.593870136903327, - "c3": 13.865712537516718, - "c4": 13.598775641571656, - "c5": 14.461948674410197, - "c6": 14.036129440487871, - "c7": 14.015993900516158 + "offsets": { + "c1": 24.822006472491907, + "c2": 21.2760055478502, + "c3": 17.730004623208494, + "c4": 14.184003698566789, + "c5": 10.638002773925118, + "c6": 7.092001849283411, + "c7": 3.5460009246417057 }, "rgb": [222, 0, 59] }, @@ -407436,23 +407436,23 @@ "year": 1814, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -0.48249732669368584, - "c2": -17.032700322382905, - "c3": 20.292491632045998, - "c4": -0.09362826863042883, - "c5": 17.43628151152331, - "c6": -30.446934493970907, - "c7": 17.366778207919676 + "points": { + "c1": 20.509816091222135, + "c2": 16.670065688100983, + "c3": -17.55485433755149, + "c4": -29.99067961323435, + "c5": 24.011521175359952, + "c6": -5.273815189072877, + "c7": -15.045753669889923 }, - "vertexSeeds": { - "c1": 3.625824343730761, - "c2": 3.388972161306251, - "c3": 3.6887323401678214, - "c4": 3.5677471543486745, - "c5": 3.5678301702194815, - "c6": 3.506932107605052, - "c7": 3.510660913137757 + "offsets": { + "c1": 6.34304207119741, + "c2": 5.436893203883492, + "c3": 4.530744336569581, + "c4": 3.6245954692556643, + "c5": 2.718446601941746, + "c6": 1.8122977346278357, + "c7": 0.9061488673139179 }, "rgb": [222, 0, 59] }, @@ -407463,23 +407463,23 @@ "year": 1814, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": -12.844306288474375, - "c2": -13.370157848279, - "c3": 18.601471966471184, - "c4": -4.039404343690521, - "c5": 11.61196757928965, - "c6": 15.251825838417627, - "c7": 0.6605127682351473 + "points": { + "c1": 3.7826773201544412, + "c2": -10.563156593723951, + "c3": -12.14878277012755, + "c4": 3.4511957489624265, + "c5": 10.534018593416672, + "c6": -20.335026396261455, + "c7": -11.831022540483067 }, - "vertexSeeds": { - "c1": 1.276553588923794, - "c2": 1.3139268457152564, - "c3": 1.3068390890844905, - "c4": 1.3137840968052723, - "c5": 1.338380777449821, - "c6": 1.3367116895815978, - "c7": 1.3177590208991143 + "offsets": { + "c1": 2.3300970873786406, + "c2": 1.997226074895976, + "c3": 1.6643550624133172, + "c4": 1.3314840499306524, + "c5": 0.998613037447988, + "c6": 0.6657420249653291, + "c7": 0.33287101248266454 }, "rgb": [58, 15, 49] }, @@ -407490,23 +407490,23 @@ "year": 1814, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 6.891885941471514, - "c2": 30.348842162899032, - "c3": -7.115608474923086, - "c4": 10.31281674107398, - "c5": 29.554557848665716, - "c6": -11.405803458463822, - "c7": 27.718902796973282 + "points": { + "c1": -10.193360456610726, + "c2": -18.03198870594517, + "c3": -26.4301900071043, + "c4": -21.810031988611975, + "c5": 12.048816888403877, + "c6": -0.7606656699677217, + "c7": -18.551750639506693 }, - "vertexSeeds": { - "c1": 7.271384637451598, - "c2": 7.087781343113186, - "c3": 7.472135400901505, - "c4": 7.2721555097738175, - "c5": 7.328066459503624, - "c6": 7.036674442370026, - "c7": 7.008194840071467 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [77, 76, 132] }, @@ -407517,23 +407517,23 @@ "year": 1814, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": -5.980339975554958, - "c2": -0.4654424790089067, - "c3": 13.160994162392672, - "c4": -1.3321979908093944, - "c5": -11.966199064253942, - "c6": -2.5453266100534577, - "c7": -0.11343462995711917 + "points": { + "c1": -2.6531667011895124, + "c2": 7.372805313465385, + "c3": 8.256375626746369, + "c4": 2.912955505256633, + "c5": -10.838142480454001, + "c6": -10.628225018587385, + "c7": 12.364749209038965 }, - "vertexSeeds": { - "c1": 2.9788392904823273, - "c2": 2.898887580511786, - "c3": 2.7450657914965113, - "c4": 2.826392369126107, - "c5": 2.9420659044095077, - "c6": 2.798886459067651, - "c7": 2.697259600332666 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.3550624133148395, + "c3": 3.6292186777623647, + "c4": 2.9033749422098905, + "c5": 2.1775312066574157, + "c6": 1.451687471104949, + "c7": 0.7258437355524745 }, "rgb": [58, 15, 49] }, @@ -407544,23 +407544,23 @@ "year": 1814, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -3.0544903747493137, - "c2": 7.6604358523519664, - "c3": -0.9393570603400008, - "c4": -8.242193852987292, - "c5": -3.7939531741341455, - "c6": -10.142045432324725, - "c7": -11.283413632444333 + "points": { + "c1": 20.842778628624977, + "c2": -22.61473620564583, + "c3": -14.595665474836924, + "c4": -22.435700398314665, + "c5": -24.632235109400085, + "c6": 9.107231607869942, + "c7": -21.598900133487582 }, - "vertexSeeds": { - "c1": 5.733773805831908, - "c2": 5.604805925553858, - "c3": 5.735323941468682, - "c4": 5.588304269746832, - "c5": 5.235046678733884, - "c6": 5.786912652054335, - "c7": 5.582382206209175 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055474, + "c4": 5.547850208044376, + "c5": 4.160887656033278, + "c6": 2.7739251040221955, + "c7": 1.3869625520110977 }, "rgb": [222, 0, 59] }, @@ -407571,23 +407571,23 @@ "year": 1815, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 16.111042922931908, - "c2": 28.678871140724937, - "c3": 25.50220688345526, - "c4": 6.715197359474814, - "c5": -30.873255130085436, - "c6": -10.716132600924702, - "c7": 13.332320427151032 + "points": { + "c1": 27.246583839105256, + "c2": -25.433735538855956, + "c3": -33.16235922401606, + "c4": 8.205732915625525, + "c5": -11.322872592181508, + "c6": -12.690491705093589, + "c7": -31.635563007578547 }, - "vertexSeeds": { - "c1": 12.203748518051727, - "c2": 11.929114646703455, - "c3": 11.614861071113722, - "c4": 12.338842346390527, - "c5": 11.74910307803112, - "c6": 12.168575754122404, - "c7": 11.148986312150955 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.753120665742042, + "c3": 14.794267221451685, + "c4": 11.835413777161362, + "c5": 8.876560332871003, + "c6": 5.917706888580681, + "c7": 2.958853444290358 }, "rgb": [58, 15, 49] }, @@ -407598,23 +407598,23 @@ "year": 1814, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": 9.424029468180034, - "c2": -19.282910777421627, - "c3": 20.43094475106514, - "c4": 7.233045427437144, - "c5": -14.033043500691669, - "c6": 21.81362467234476, - "c7": -3.9226876930744723 + "points": { + "c1": -11.373068784820298, + "c2": -1.935199778309471, + "c3": 22.474243062867977, + "c4": -23.712849663191122, + "c5": 20.82671151408841, + "c6": 23.844814164289446, + "c7": -18.343378316602447 }, - "vertexSeeds": { - "c1": 0.7080835109097534, - "c2": 0.6945800806185937, - "c3": 0.7183175349743297, - "c4": 0.7265458641428143, - "c5": 0.7239593778592986, - "c6": 0.7330139428170327, - "c7": 0.6921870938390556 + "offsets": { + "c1": 1.262135922330097, + "c2": 1.0818307905686537, + "c3": 0.9015256588072125, + "c4": 0.7212205270457691, + "c5": 0.540915395284328, + "c6": 0.36061026352288456, + "c7": 0.18030513176144114 }, "rgb": [86, 146, 138] }, @@ -407625,23 +407625,23 @@ "year": 1814, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": -19.080293137800712, - "c2": 5.418699585753661, - "c3": -21.33105857450127, - "c4": -8.883192340817166, - "c5": 14.843832606594418, - "c6": -6.1411627147367245, - "c7": -1.134786642436822 + "points": { + "c1": -8.406628954277995, + "c2": 19.623081842894962, + "c3": -22.27642329972178, + "c4": 14.994015387815239, + "c5": -7.695573190771192, + "c6": -13.257800554471368, + "c7": -21.822377482027914 }, - "vertexSeeds": { - "c1": 6.683982728410134, - "c2": 6.704520447214543, - "c3": 6.739601656656825, - "c4": 6.693737632468253, - "c5": 6.7583104322685195, - "c6": 6.711341168728662, - "c7": 6.700226806041976 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117937, + "c3": 8.113730929264895, + "c4": 6.490984743411959, + "c5": 4.868238557558915, + "c6": 3.2454923717059794, + "c7": 1.6227461858529357 }, "rgb": [77, 76, 132] }, @@ -407652,23 +407652,23 @@ "year": 1814, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 12.413914688166557, - "c2": 10.244489664641577, - "c3": 7.1306658516431725, - "c4": -26.369867373118414, - "c5": -15.053097815605234, - "c6": -13.808784028778891, - "c7": 16.101462853762847 + "points": { + "c1": -21.886228336318226, + "c2": -13.360744676810103, + "c3": -7.1954251878453945, + "c4": 7.905885842832902, + "c5": 19.72996606377844, + "c6": -21.538070429090585, + "c7": -13.111668326497686 }, - "vertexSeeds": { - "c1": 10.355461438034126, - "c2": 9.725869461236076, - "c3": 10.239851591662404, - "c4": 9.964735378857636, - "c5": 10.213766450262396, - "c6": 10.260791372108063, - "c7": 10.154182013548219 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679598, + "c3": 12.459546925566364, + "c4": 9.967637540453081, + "c5": 7.475728155339799, + "c6": 4.983818770226541, + "c7": 2.4919093851132827 }, "rgb": [222, 0, 59] }, @@ -407679,23 +407679,23 @@ "year": 1814, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -6.962078977097377, - "c2": -24.806987796266675, - "c3": 7.426449185819791, - "c4": 19.77415036531748, - "c5": -26.70209088896967, - "c6": -9.856691438736327, - "c7": 24.111730667542417 + "points": { + "c1": -4.662918942918143, + "c2": 25.809667994667073, + "c3": 16.338938519819592, + "c4": 2.3544428824706785, + "c5": 14.215554655086969, + "c6": -18.775058851865893, + "c7": 0.5210379988788283 }, - "vertexSeeds": { - "c1": 5.910643515376649, - "c2": 6.1757886644764906, - "c3": 6.171210050801128, - "c4": 6.133229637281811, - "c5": 5.850742765687211, - "c6": 5.938555086686726, - "c7": 6.0983294616412955 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.84882108183078, + "c3": 7.37401756819234, + "c4": 5.899214054553865, + "c5": 4.42441054091539, + "c6": 2.94960702727695, + "c7": 1.474803513638475 }, "rgb": [222, 0, 59] }, @@ -407706,23 +407706,23 @@ "year": 1815, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 20.196795533852594, - "c2": -1.316228500685014, - "c3": -31.206191999160815, - "c4": 2.074643339632388, - "c5": 7.948641906854384, - "c6": -27.033663531887733, - "c7": 5.808914091118531 + "points": { + "c1": -10.245717702153705, + "c2": -2.791903427936532, + "c3": 37.0853404674347, + "c4": -3.9890797209184967, + "c5": 33.85189316518717, + "c6": 38.60455811442218, + "c7": 6.18329440809957 }, - "vertexSeeds": { - "c1": 6.186687955676183, - "c2": 6.003313686197545, - "c3": 5.933561270327963, - "c4": 6.065936472219151, - "c5": 6.447138093572314, - "c6": 6.030887859497132, - "c7": 6.413750226640219 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393891, + "c3": 7.697642163661589, + "c4": 6.158113730929268, + "c5": 4.618585298196946, + "c6": 3.079056865464624, + "c7": 1.5395284327323218 }, "rgb": [222, 0, 59] }, @@ -407733,23 +407733,23 @@ "year": 1814, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": 2.14421960566089, - "c2": 0.8919872524784793, - "c3": -0.7198285056897333, - "c4": 9.885757623437307, - "c5": 3.382748637259727, - "c6": -8.430898977656735, - "c7": -5.069680845354455 + "points": { + "c1": -13.952493019547026, + "c2": -16.201412150530853, + "c3": 18.8588048168558, + "c4": 9.918193407527465, + "c5": 11.917511613709014, + "c6": 16.460268169068822, + "c7": -11.185268740397756 }, - "vertexSeeds": { - "c1": 7.440633990316657, - "c2": 7.392421431981878, - "c3": 7.396051846076314, - "c4": 7.306671365256422, - "c5": 7.008927714633578, - "c6": 7.428946149888046, - "c7": 7.557178276981812 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [58, 15, 49] }, @@ -407760,23 +407760,23 @@ "year": 1815, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -21.628203989023252, - "c2": 5.901568940573483, - "c3": -6.076302756428216, - "c4": 6.74070427693448, - "c5": -12.045788720492897, - "c6": 0.21623098471751945, - "c7": -2.5637358360444544 + "points": { + "c1": 18.19482365667257, + "c2": -18.743034646104917, + "c3": 28.664378781007798, + "c4": -3.8142109359076883, + "c5": -29.0858909528296, + "c6": 7.481078236069401, + "c7": 19.268265478480735 }, - "vertexSeeds": { - "c1": 8.836656762120423, - "c2": 8.508432397137234, - "c3": 8.61349270190678, - "c4": 8.644329708872805, - "c5": 8.506536432899127, - "c6": 8.987140273846085, - "c7": 9.148122805074548 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.39805825242718, + "c3": 11.16504854368933, + "c4": 8.93203883495146, + "c5": 6.69902912621359, + "c6": 4.4660194174757395, + "c7": 2.2330097087378697 }, "rgb": [86, 146, 138] }, @@ -407787,23 +407787,23 @@ "year": 1814, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -9.7361484602597, - "c2": -2.7432230758896132, - "c3": 16.720961354337405, - "c4": -13.30929166377644, - "c5": 2.377542057333759, - "c6": 21.572519288852106, - "c7": 8.483567573715433 + "points": { + "c1": -24.57555074424988, + "c2": -11.95628682924446, + "c3": 21.047521638074734, + "c4": -6.0527111813386725, + "c5": -12.915938418234123, + "c6": 6.87614713034592, + "c7": 22.778257605186745 }, - "vertexSeeds": { - "c1": 8.741941497549831, - "c2": 8.734424699442124, - "c3": 8.6692112424342, - "c4": 8.611453039872384, - "c5": 8.486957781473304, - "c6": 8.470835591672076, - "c7": 8.513145063659573 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260743, + "c3": 10.494683310217278, + "c4": 8.395746648173814, + "c5": 6.2968099861303495, + "c6": 4.197873324086929, + "c7": 2.0989366620434646 }, "rgb": [86, 146, 138] }, @@ -407814,23 +407814,23 @@ "year": 1814, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 4.852082791224394, - "c2": -0.522591227820616, - "c3": 12.441940678971633, - "c4": 5.609161649675102, - "c5": 12.574560648609484, - "c6": -20.717891558112253, - "c7": -20.44539719347945 + "points": { + "c1": -26.052267216011003, + "c2": -19.03142128353126, + "c3": 25.742768520379677, + "c4": 5.607571255604391, + "c5": -17.399211903088908, + "c6": 3.685445606842105, + "c7": 4.245164565538303 }, - "vertexSeeds": { - "c1": 3.090745303305445, - "c2": 2.9658508985637053, - "c3": 3.136101808160655, - "c4": 3.1547880050475334, - "c5": 2.7860838960408882, - "c6": 2.8536341795339113, - "c7": 3.101530057166009 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596392, + "c3": 3.791030975496991, + "c4": 3.032824780397597, + "c5": 2.274618585298196, + "c6": 1.5164123901987947, + "c7": 0.7582061950994011 }, "rgb": [222, 0, 59] }, @@ -407841,23 +407841,23 @@ "year": 1814, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 20.502304728078293, - "c2": 9.452183288081763, - "c3": 16.59373997789953, - "c4": 10.441922573899753, - "c5": -7.911786002655884, - "c6": -1.6895568599622912, - "c7": -8.365742985981683 + "points": { + "c1": -15.346485849125127, + "c2": 9.552174435415594, + "c3": -7.488705350629381, + "c4": -18.53262594320647, + "c5": 5.878824977721557, + "c6": -26.14180446213869, + "c7": -21.728029431659152 }, - "vertexSeeds": { - "c1": 9.908061972801253, - "c2": 9.46400044920112, - "c3": 9.61506512807607, - "c4": 10.23502845829211, - "c5": 9.965018268288977, - "c6": 9.454068925555543, - "c7": 10.015606119074691 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [86, 146, 138] }, @@ -407868,23 +407868,23 @@ "year": 1815, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -24.13478149213384, - "c2": -21.2036709871808, - "c3": -14.194964711566548, - "c4": -5.075495964576405, - "c5": 20.914179541013418, - "c6": -18.99533450151056, - "c7": -22.328594666017686 + "points": { + "c1": -2.260264073489047, + "c2": 16.236116776777905, + "c3": 28.97009121098749, + "c4": 26.462227838123397, + "c5": 18.87981836111114, + "c6": 1.5378957950237435, + "c7": 31.4272400948064 }, - "vertexSeeds": { - "c1": 10.44364876844813, - "c2": 10.320861727124072, - "c3": 10.849822879442748, - "c4": 10.545626055538104, - "c5": 9.889583060873761, - "c6": 9.965856676073049, - "c7": 9.990457458101666 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.700416088765618, + "c3": 13.08368007397133, + "c4": 10.466944059177079, + "c5": 7.850208044382792, + "c6": 5.2334720295885395, + "c7": 2.6167360147942866 }, "rgb": [86, 146, 138] }, @@ -407895,23 +407895,23 @@ "year": 1815, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 26.648091629847247, - "c2": -16.76135988287153, - "c3": 22.53577342678088, - "c4": -6.781803286461091, - "c5": -17.569645785252888, - "c6": 12.539078558806633, - "c7": -25.082421005175867 + "points": { + "c1": 16.74328461260968, + "c2": -27.23698025753113, + "c3": 9.508013181188762, + "c4": 27.891301275286533, + "c5": 6.314420957137084, + "c6": -20.714064244431274, + "c7": 5.569678716309834 }, - "vertexSeeds": { - "c1": 3.167098445595855, - "c2": 3.167098445595855, - "c3": 3.167098445595855, - "c4": 3.167098445595855, - "c5": 3.167098445595855, - "c6": 3.167098445595855, - "c7": 3.167098445595855 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -407922,23 +407922,23 @@ "year": 1814, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 6.722690262278384, - "c2": -0.28407653155347035, - "c3": 15.164435372097415, - "c4": 16.729548468303783, - "c5": -16.84401913427994, - "c6": -10.094382827969207, - "c7": -13.143291969170248 + "points": { + "c1": -19.273933786193716, + "c2": 20.87968099133279, + "c3": -8.126489817450532, + "c4": 19.99152784369835, + "c5": 12.213324285127662, + "c6": -7.574297507275386, + "c7": 6.077885585003777 }, - "vertexSeeds": { - "c1": 1.4763115941304792, - "c2": 1.5181733987131683, - "c3": 1.4904082667106584, - "c4": 1.5744637052318093, - "c5": 1.5478538937607191, - "c6": 1.5711063102854415, - "c7": 1.5656649940534748 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.3578363384188648, + "c3": 1.9648636153490528, + "c4": 1.5718908922792407, + "c5": 1.1789181692094324, + "c6": 0.7859454461396242, + "c7": 0.3929727230698121 }, "rgb": [86, 146, 138] }, @@ -407949,23 +407949,23 @@ "year": 1815, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 26.70451429450069, - "c2": -10.653918999113493, - "c3": -1.0920024984554857, - "c4": 25.891094743899238, - "c5": 8.82942494228336, - "c6": 30.67180831325075, - "c7": -23.87201834898242 + "points": { + "c1": -33.91369995718423, + "c2": -1.80605120152579, + "c3": 22.391726704757346, + "c4": -30.153596836426743, + "c5": 18.06808838863366, + "c6": 11.866006340277444, + "c7": 16.598247554017554 }, - "vertexSeeds": { - "c1": 10.37303972868628, - "c2": 9.983177827676583, - "c3": 10.180186225551152, - "c4": 10.097733431971932, - "c5": 10.511634520983609, - "c6": 10.042849156188424, - "c7": 9.971084939017096 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.284327323162282, + "c3": 12.736939435968575, + "c4": 10.189551548774869, + "c5": 7.642163661581163, + "c6": 5.094775774387413, + "c7": 2.5473878871937066 }, "rgb": [222, 0, 59] }, @@ -407976,23 +407976,23 @@ "year": 1814, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -10.858040903285236, - "c2": -11.362153878800681, - "c3": 1.4841001212919842, - "c4": -23.340900575772913, - "c5": 9.710927713901768, - "c6": -4.7865582113608625, - "c7": -2.7370184242251376 + "points": { + "c1": -9.955907790204439, + "c2": -26.621814004038786, + "c3": -19.599945109372328, + "c4": 8.30115202431277, + "c5": 15.997095347224338, + "c6": 2.4295975859098355, + "c7": -10.805278453039001 }, - "vertexSeeds": { - "c1": 10.239171949935702, - "c2": 10.183487210627653, - "c3": 9.980593063652957, - "c4": 9.999353398265413, - "c5": 10.22885289176871, - "c6": 10.355303321912452, - "c7": 9.943254510513508 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.00693481276003, + "c3": 12.50577901063339, + "c4": 10.004623208506686, + "c5": 7.5034674063800475, + "c6": 5.002311604253343, + "c7": 2.501155802126705 }, "rgb": [222, 0, 59] }, @@ -408003,23 +408003,23 @@ "year": 1815, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -18.132138151914514, - "c2": -26.05300438642662, - "c3": -14.128596730120886, - "c4": -12.770501362016844, - "c5": 30.855347830035058, - "c6": 5.081199409051557, - "c7": -23.082272525078395 + "points": { + "c1": 7.2333184856464, + "c2": 25.479556012388137, + "c3": 1.590350427833748, + "c4": 4.1907989175845515, + "c5": 2.5044948213159373, + "c6": -0.9891633127448003, + "c7": -24.871908563939265 }, - "vertexSeeds": { - "c1": 8.471502590673575, - "c2": 8.471502590673575, - "c3": 8.471502590673575, - "c4": 8.471502590673575, - "c5": 8.471502590673575, - "c6": 8.471502590673575, - "c7": 8.471502590673575 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -408030,23 +408030,23 @@ "year": 1815, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -6.4187664642993525, - "c2": 10.282634949814646, - "c3": -6.048351968760894, - "c4": -7.025247246040312, - "c5": 20.342524203377035, - "c6": 14.955591979538884, - "c7": 27.216791488952193 + "points": { + "c1": -9.221209747205027, + "c2": -22.469824906398227, + "c3": -11.574885455105637, + "c4": -29.17602824260289, + "c5": -21.195630423593617, + "c6": -4.497480796535115, + "c7": 24.61777095106626 }, - "vertexSeeds": { - "c1": 8.690045663958607, - "c2": 8.622572889708415, - "c3": 8.346820160447736, - "c4": 8.442533015125342, - "c5": 8.364162767979565, - "c6": 8.346599635533538, - "c7": 8.084034068588943 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.45492371705964, + "c3": 10.3791030975497, + "c4": 8.30328247803976, + "c5": 6.22746185852982, + "c6": 4.15164123901988, + "c7": 2.07582061950994 }, "rgb": [238, 201, 159] }, @@ -408057,23 +408057,23 @@ "year": 1815, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -13.762479536728083, - "c2": -18.716705671470038, - "c3": 17.879113891026453, - "c4": 8.92559794042813, - "c5": -5.847568120837259, - "c6": -23.632504627866393, - "c7": 11.142009028983932 + "points": { + "c1": -0.3044103491077337, + "c2": -30.234085586023575, + "c3": 22.817284878666097, + "c4": -6.07952660593579, + "c5": -12.300424583749262, + "c6": 18.449051934426766, + "c7": 25.939111270732223 }, - "vertexSeeds": { - "c1": 10.272055937503229, - "c2": 10.286082817199825, - "c3": 10.314003641742712, - "c4": 10.302705955992797, - "c5": 10.325779956214724, - "c6": 10.292888015619543, - "c7": 10.28323056074402 + "offsets": { + "c1": 17.281553398058254, + "c2": 14.812760055478671, + "c3": 12.343966712898697, + "c4": 9.875173370319114, + "c5": 7.4063800277391385, + "c6": 4.937586685159557, + "c7": 2.468793342579582 }, "rgb": [77, 76, 132] }, @@ -408084,23 +408084,23 @@ "year": 1815, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -4.771140419389301, - "c2": -13.02550566388615, - "c3": 26.417491605997064, - "c4": -6.392196500837727, - "c5": 31.315184472532692, - "c6": -29.51568171651208, - "c7": 6.081941056458014 + "points": { + "c1": 26.52207191396669, + "c2": -7.792067022097598, + "c3": -34.3566574331475, + "c4": -21.559685374563063, + "c5": 28.460052061964788, + "c6": 0.8064395802673232, + "c7": -25.57466403999452 }, - "vertexSeeds": { - "c1": 9.41722596302397, - "c2": 9.408971791806536, - "c3": 9.38301833372656, - "c4": 8.909529382354558, - "c5": 8.553341602592212, - "c6": 8.960368169952446, - "c7": 9.381100911703184 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.64771151178918, + "c3": 11.37309292649098, + "c4": 9.09847434119278, + "c5": 6.8238557558945985, + "c6": 4.549237170596399, + "c7": 2.2746185852981995 }, "rgb": [222, 0, 59] }, @@ -408111,23 +408111,23 @@ "year": 1814, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": 6.370243501958118, - "c2": -11.095212040838135, - "c3": 6.973866467648282, - "c4": 11.574966380896047, - "c5": 9.243964083833802, - "c6": -13.262071388977485, - "c7": 15.415606224797997 + "points": { + "c1": -11.90147136977788, + "c2": -15.092392873120113, + "c3": -10.260243108361848, + "c4": -4.468538813710596, + "c5": 18.90434780058017, + "c6": -3.770663514448213, + "c7": 6.505206635256631 }, - "vertexSeeds": { - "c1": 3.5612890692488888, - "c2": 3.3618789860159453, - "c3": 3.2051104579148983, - "c4": 3.5059213806711025, - "c5": 3.5381610927760176, - "c6": 3.2701506082033474, - "c7": 3.1592981562929 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481273, + "c3": 4.299583911234397, + "c4": 3.439667128987515, + "c5": 2.579750346740633, + "c6": 1.7198335644937575, + "c7": 0.8599167822468751 }, "rgb": [238, 201, 159] }, @@ -408138,23 +408138,23 @@ "year": 1815, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 4.64830732518617, - "c2": -20.656960637582326, - "c3": 18.804998276197505, - "c4": 9.888714130548333, - "c5": 10.138332895832317, - "c6": 18.365884756102172, - "c7": -23.052250496367506 + "points": { + "c1": -7.834744052121948, + "c2": -0.8830579193756947, + "c3": -10.891016291281263, + "c4": 12.047368307357754, + "c5": 14.50620188664038, + "c6": 21.84710987693912, + "c7": 3.7663812308715094 }, - "vertexSeeds": { - "c1": 5.890301874774353, - "c2": 5.625306924237374, - "c3": 5.579178750108817, - "c4": 5.862953451823298, - "c5": 5.890032745385969, - "c6": 5.588159748204893, - "c7": 5.8771128508153065 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549232, + "c3": 7.212205270457705, + "c4": 5.769764216366161, + "c5": 4.327323162274616, + "c6": 2.8848821081830707, + "c7": 1.4424410540915447 }, "rgb": [86, 146, 138] }, @@ -408165,23 +408165,23 @@ "year": 1815, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 19.399580625957718, - "c2": -9.264100666072661, - "c3": -3.9295291110746646, - "c4": 14.243553856748122, - "c5": -20.430669541604487, - "c6": -11.767008217992583, - "c7": 7.126875550118967 + "points": { + "c1": 23.42172175130861, + "c2": 26.057638668948826, + "c3": 18.512244408212688, + "c4": -14.48998390720282, + "c5": 7.881170651708686, + "c6": 8.598384491146625, + "c7": -7.673752051112249 }, - "vertexSeeds": { - "c1": 5.731115005870087, - "c2": 5.121813989315685, - "c3": 5.142737361713064, - "c4": 5.512606092757614, - "c5": 5.7226584827778915, - "c6": 5.0834376637207646, - "c7": 5.163843364362792 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905685, + "c3": 6.842348589921401, + "c4": 5.473878871937117, + "c5": 4.10540915395285, + "c6": 2.736939435968566, + "c7": 1.368469717984283 }, "rgb": [222, 0, 59] }, @@ -408192,23 +408192,23 @@ "year": 1815, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 6.2582687415415705, - "c2": 10.354011080023554, - "c3": -0.44715333143555824, - "c4": -18.909916517540097, - "c5": -17.57853782527967, - "c6": -1.4489363121395655, - "c7": -28.047134160774807 + "points": { + "c1": -0.69971527626182, + "c2": 22.83584036031226, + "c3": 34.003745161553795, + "c4": -26.41816726146894, + "c5": 34.1092071583259, + "c6": 14.930185839017533, + "c7": 9.145847083781916 }, - "vertexSeeds": { - "c1": 12.78319945953552, - "c2": 11.830450136158614, - "c3": 12.469738204182585, - "c4": 12.49575720820487, - "c5": 12.355112101858337, - "c6": 12.593003140486363, - "c7": 12.049113058539055 + "offsets": { + "c1": 21.553398058252426, + "c2": 18.47434119278779, + "c3": 15.39528432732315, + "c4": 12.316227461858514, + "c5": 9.237170596393913, + "c6": 6.1581137309292755, + "c7": 3.0790568654646377 }, "rgb": [77, 76, 132] }, @@ -408219,23 +408219,23 @@ "year": 1815, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -0.13135383169949932, - "c2": 19.12128459060567, - "c3": 17.969795965222758, - "c4": 2.1036259250166083, - "c5": 18.122985496852102, - "c6": -25.070771419920344, - "c7": -1.4703547759293478 + "points": { + "c1": 20.692549656575686, + "c2": 30.37958447916251, + "c3": 10.646364730998897, + "c4": -23.00426246322909, + "c5": 21.40718347261202, + "c6": -3.5165135267823686, + "c7": -22.08466208173461 }, - "vertexSeeds": { - "c1": 8.232696643328955, - "c2": 8.063049684288213, - "c3": 8.349815241416993, - "c4": 8.187312992799445, - "c5": 8.174739436298035, - "c6": 8.341432212138898, - "c7": 8.267986437331496 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858531, + "c3": 10.263522884882114, + "c4": 8.210818307905695, + "c5": 6.158113730929277, + "c6": 4.105409153952836, + "c7": 2.052704576976418 }, "rgb": [238, 201, 159] }, @@ -408246,23 +408246,23 @@ "year": 1815, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 28.700033843781853, - "c2": -24.18752816353672, - "c3": 37.185965771748215, - "c4": -11.578880661698182, - "c5": -16.115276073687625, - "c6": 8.481402980371257, - "c7": -34.90488315065712 + "points": { + "c1": -6.472852064206414, + "c2": 21.915407651887378, + "c3": -12.671210611137422, + "c4": -25.299839486908933, + "c5": -9.562083504671477, + "c6": -38.29837523723178, + "c7": -18.238191600343892 }, - "vertexSeeds": { - "c1": 8.102331606217618, - "c2": 8.102331606217618, - "c3": 8.102331606217618, - "c4": 8.102331606217618, - "c5": 8.102331606217618, - "c6": 8.102331606217618, - "c7": 8.102331606217618 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -408273,23 +408273,23 @@ "year": 1815, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 13.756997381193628, - "c2": -13.715418350800093, - "c3": 6.853530403712384, - "c4": 4.659025864154863, - "c5": 16.719513295531016, - "c6": -25.939679049196656, - "c7": 36.8429965622508 + "points": { + "c1": 4.48952621882087, + "c2": 17.133719926265172, + "c3": -35.44188316184572, + "c4": 30.067582233212292, + "c5": -30.64807967848347, + "c6": -22.85760906908953, + "c7": -13.923291728094583 }, - "vertexSeeds": { - "c1": 4.648418186657724, - "c2": 4.6983792356972796, - "c3": 4.696728277129682, - "c4": 4.63070106751784, - "c5": 4.65897266277283, - "c6": 4.685615244874226, - "c7": 4.597994337555435 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814147, + "c3": 5.640314378178457, + "c4": 4.512251502542765, + "c5": 3.3841886269070733, + "c6": 2.2561257512713824, + "c7": 1.1280628756356912 }, "rgb": [77, 76, 132] }, @@ -408300,23 +408300,23 @@ "year": 1815, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 23.09840659639946, - "c2": -16.76091939266643, - "c3": -0.252869980903661, - "c4": -8.26267458859379, - "c5": 2.228071625040158, - "c6": 19.64613037594697, - "c7": -8.7633863371919 + "points": { + "c1": -24.665033272400432, + "c2": -0.8712050286389932, + "c3": 19.861896207166875, + "c4": -13.960814380536913, + "c5": 11.027777596578087, + "c6": -15.929490028746047, + "c7": 18.072791672858745 }, - "vertexSeeds": { - "c1": 7.695459225674869, - "c2": 6.991779709251443, - "c3": 7.260625326408619, - "c4": 7.2562812239043355, - "c5": 6.690266193822454, - "c6": 6.980099664397944, - "c7": 7.68204240748592 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.06796116504854, + "c3": 9.223300970873783, + "c4": 7.378640776699024, + "c5": 5.533980582524265, + "c6": 3.6893203883495174, + "c7": 1.8446601941747474 }, "rgb": [86, 146, 138] }, @@ -408327,23 +408327,23 @@ "year": 1815, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 13.264651612547976, - "c2": -13.785836981601935, - "c3": -13.449196588569325, - "c4": -20.130058668688676, - "c5": 29.33064697633146, - "c6": 26.389332483671833, - "c7": -16.097439811934017 + "points": { + "c1": 19.760549674585622, + "c2": -15.636475216689604, + "c3": 1.7713325927787302, + "c4": 22.335377435882695, + "c5": -2.1280935395754454, + "c6": -3.421928645807359, + "c7": -29.299542095906638 }, - "vertexSeeds": { - "c1": 4.85479079628037, - "c2": 4.963253360702338, - "c3": 4.994057994441807, - "c4": 4.621960298780021, - "c5": 4.960867195126537, - "c6": 5.005918976857911, - "c7": 4.910137733355915 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578368, + "c3": 6.079519186315304, + "c4": 4.863615349052239, + "c5": 3.647711511789184, + "c6": 2.4318076745261195, + "c7": 1.2159038372630646 }, "rgb": [86, 146, 138] }, @@ -408354,23 +408354,23 @@ "year": 1815, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -23.838361168328493, - "c2": 25.869144523435146, - "c3": -16.381256650911354, - "c4": -20.39152098036825, - "c5": -29.370048900434554, - "c6": -21.121250785607344, - "c7": 12.935095671750524 + "points": { + "c1": 0.6675934273812842, + "c2": 13.374385433969032, + "c3": -23.49692778449873, + "c4": 19.600954338646105, + "c5": -6.877939921271121, + "c6": 20.451129285396718, + "c7": 3.0918628680590174 }, - "vertexSeeds": { - "c1": 3.513105135435936, - "c2": 3.394296798128182, - "c3": 3.6583867842520763, - "c4": 3.55451645056465, - "c5": 3.3909968511807818, - "c6": 3.292186685023739, - "c7": 3.4333320334719653 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044385, + "c3": 4.6232085067036515, + "c4": 3.6985668053629235, + "c5": 2.7739251040221897, + "c6": 1.8492834026814617, + "c7": 0.9246417013407279 }, "rgb": [86, 146, 138] }, @@ -408381,23 +408381,23 @@ "year": 1815, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 8.831381628334906, - "c2": 5.316011194234946, - "c3": 18.134292560902644, - "c4": -11.90814489357254, - "c5": 1.9193705921377315, - "c6": 5.016499661560633, - "c7": -12.02538183366761 + "points": { + "c1": 8.316564074659532, + "c2": -1.6168499888667185, + "c3": 13.142260025687001, + "c4": 22.82377369292739, + "c5": 10.60809921344702, + "c6": -1.3853600741768872, + "c7": -17.358428286668 }, - "vertexSeeds": { - "c1": 7.711819539255783, - "c2": 7.694228498372085, - "c3": 7.787776544235521, - "c4": 7.701695088864938, - "c5": 7.778786810649389, - "c6": 7.706930411799009, - "c7": 7.731038830224617 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.17891816920939, + "c3": 9.315765141007873, + "c4": 7.452612112806261, + "c5": 5.5894590846047425, + "c6": 3.7263060564031303, + "c7": 1.863153028201519 }, "rgb": [58, 15, 49] }, @@ -408408,23 +408408,23 @@ "year": 1815, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -23.05388649542747, - "c2": -6.9163467139238755, - "c3": 1.6863298546594052, - "c4": -9.945147909201637, - "c5": 14.717255599031283, - "c6": -31.053889911058555, - "c7": 13.883090740934115 + "points": { + "c1": 18.635415068357254, + "c2": -22.70320371853454, + "c3": -7.172125709354901, + "c4": 6.620941783035477, + "c5": -10.618566853084829, + "c6": 32.34778615525214, + "c7": 32.86039707036008 }, - "vertexSeeds": { - "c1": 3.4169535740366928, - "c2": 3.5692030158900616, - "c3": 3.3083469085517625, - "c4": 3.6303391496227846, - "c5": 3.3792198715003674, - "c6": 3.4893611791270036, - "c7": 3.4694969390044945 + "offsets": { + "c1": 6.310679611650485, + "c2": 5.409153952843276, + "c3": 4.50762829403606, + "c4": 3.6061026352288508, + "c5": 2.704576976421642, + "c6": 1.8030513176144254, + "c7": 0.9015256588072165 }, "rgb": [58, 15, 49] }, @@ -408435,23 +408435,23 @@ "year": 1814, "resistanceReported": false, "duration": 7171200, - "curveSeeds": { - "c1": -2.711399166321259, - "c2": -12.568430307511301, - "c3": 0.9311594981603477, - "c4": -5.852257420442671, - "c5": -11.717162250100866, - "c6": -1.6350061098520818, - "c7": -11.860331429883786 + "points": { + "c1": -13.27805856603007, + "c2": 18.468356483738646, + "c3": 18.892843198111798, + "c4": 0.5203918068960149, + "c5": -13.975768964700855, + "c6": -4.675165565741279, + "c7": 0.9942399797801755 }, - "vertexSeeds": { - "c1": 4.438149578137181, - "c2": 4.748051398582381, - "c3": 4.730038469027479, - "c4": 4.633631812443862, - "c5": 4.672301956736297, - "c6": 4.543210653980457, - "c7": 4.7516005361477855 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934808, + "c3": 5.709662505779011, + "c4": 4.567730004623206, + "c5": 3.4257975034674084, + "c6": 2.283865002311603, + "c7": 1.1419325011558057 }, "rgb": [238, 201, 159] }, @@ -408462,23 +408462,23 @@ "year": 1815, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": 7.843114128713342, - "c2": -7.783381919080364, - "c3": -3.955265529465006, - "c4": 6.488756034552026, - "c5": 4.8389241690036435, - "c6": 1.182296376601247, - "c7": 5.885470823338142 + "points": { + "c1": 0.31751321974960334, + "c2": -2.8707694951625733, + "c3": 15.273616728726143, + "c4": -20.638423854368174, + "c5": -0.6694415597697336, + "c6": -5.159062635763966, + "c7": 6.963349913052692 }, - "vertexSeeds": { - "c1": 13.05561763404663, - "c2": 13.337468433275856, - "c3": 12.694058351832, - "c4": 12.72442346587592, - "c5": 12.865973237593137, - "c6": 12.91512636676074, - "c7": 13.33886246174923 + "offsets": { + "c1": 22.265372168284788, + "c2": 19.084604715672683, + "c3": 15.90383726306058, + "c4": 12.723069810448479, + "c5": 9.54230235783631, + "c6": 6.3615349052242065, + "c7": 3.1807674526121033 }, "rgb": [77, 76, 132] }, @@ -408489,23 +408489,23 @@ "year": 1815, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -18.463845756611068, - "c2": 1.655601439190093, - "c3": 17.870806991582498, - "c4": 30.657832873975025, - "c5": -17.810248019493223, - "c6": 6.809828123140548, - "c7": -14.883376223582548 + "points": { + "c1": -4.867772696198575, + "c2": 24.402406412086805, + "c3": 32.14113900735423, + "c4": 0.269896718088944, + "c5": -2.8649445573507464, + "c6": 6.825358117148539, + "c7": 26.962047879812054 }, - "vertexSeeds": { - "c1": 9.901627399132929, - "c2": 10.087758713144485, - "c3": 10.495832691343134, - "c4": 10.551848221594632, - "c5": 10.645226328159314, - "c6": 10.043447579130252, - "c7": 10.508396808659189 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122058, + "c3": 12.713823393435055, + "c4": 10.171058714748053, + "c5": 7.628294036061051, + "c6": 5.085529357374005, + "c7": 2.5427646786870026 }, "rgb": [222, 0, 59] }, @@ -408516,23 +408516,23 @@ "year": 1815, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -36.768273566279206, - "c2": -30.708940801407216, - "c3": 33.622345701996394, - "c4": 30.051139772696814, - "c5": 17.14391521912343, - "c6": 30.089639954297112, - "c7": -6.362226875950334 + "points": { + "c1": -24.55202577242212, + "c2": -33.42191335287201, + "c3": -40.77503891023466, + "c4": -0.6139884923299306, + "c5": 30.80554579446975, + "c6": -42.18601628977536, + "c7": -40.96991027821838 }, - "vertexSeeds": { - "c1": 0.8067681176645355, - "c2": 0.8159819323930109, - "c3": 0.8392954157275295, - "c4": 0.7967946337950885, - "c5": 0.8548064324608617, - "c6": 0.9105395864681103, - "c7": 0.8887475525269983 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.3314840499306526, + "c3": 1.1095700416088763, + "c4": 0.8876560332871017, + "c5": 0.6657420249653254, + "c6": 0.44382801664355087, + "c7": 0.22191400832177638 }, "rgb": [77, 76, 132] }, @@ -408543,23 +408543,23 @@ "year": 1815, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": 17.95001024229996, - "c2": 14.530200898567209, - "c3": -18.249531914945216, - "c4": -15.418350181692633, - "c5": -7.610047327422473, - "c6": -9.277296421840722, - "c7": -2.650162082769448 + "points": { + "c1": 13.875096078234115, + "c2": -18.828467343177998, + "c3": 23.111189121659585, + "c4": -4.23615450340553, + "c5": -2.8347153860485292, + "c6": 0.3443280693314854, + "c7": -9.321544655697991 }, - "vertexSeeds": { - "c1": 6.683937823834197, - "c2": 6.683937823834197, - "c3": 6.683937823834197, - "c4": 6.683937823834197, - "c5": 6.683937823834197, - "c6": 6.683937823834197, - "c7": 6.683937823834197 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -408570,23 +408570,23 @@ "year": 1815, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 22.47855124792197, - "c2": 9.293123699505202, - "c3": 27.016702105712724, - "c4": -3.624389282809638, - "c5": 26.575172079684734, - "c6": 41.16364452918094, - "c7": -27.3068739305385 + "points": { + "c1": 21.939288748517654, + "c2": 17.335962435525886, + "c3": -24.381751827689005, + "c4": -21.568355642704955, + "c5": -45.75030143895832, + "c6": 46.99533296725855, + "c7": -29.849803695422096 }, - "vertexSeeds": { - "c1": 5.330420553599167, - "c2": 5.064292682780272, - "c3": 5.366776698703309, - "c4": 5.026287672948592, - "c5": 5.247925071561319, - "c6": 5.1138924685328355, - "c7": 5.083724283671664 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704575, + "c3": 6.72676837725381, + "c4": 5.3814147018030445, + "c5": 4.03606102635228, + "c6": 2.69070735090153, + "c7": 1.345353675450765 }, "rgb": [77, 76, 132] }, @@ -408597,23 +408597,23 @@ "year": 1816, "resistanceReported": false, "duration": 48816000, - "curveSeeds": { - "c1": -37.149212865368064, - "c2": -47.82303952365505, - "c3": -53.14068899622028, - "c4": 5.023791484087035, - "c5": 30.223860007398592, - "c6": 63.014744986444434, - "c7": -26.02278042628879 + "points": { + "c1": 5.646163228010579, + "c2": 21.032862472284293, + "c3": -21.14697939456682, + "c4": 40.98983746666427, + "c5": 30.133099016278436, + "c6": -13.530909975718671, + "c7": 13.670340369733978 }, - "vertexSeeds": { - "c1": 5.374674726929214, - "c2": 5.41639677744301, - "c3": 5.200072337229601, - "c4": 5.466863459313349, - "c5": 5.608205143246162, - "c6": 5.388711942305328, - "c7": 5.3195801585067475 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307902, + "c3": 7.073509015256593, + "c4": 5.658807212205273, + "c5": 4.244105409153951, + "c6": 2.8294036061026304, + "c7": 1.414701803051321 }, "rgb": [222, 0, 59] }, @@ -408624,23 +408624,23 @@ "year": 1815, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 1.1657189849626164, - "c2": -19.274121753722287, - "c3": 13.454505836256061, - "c4": -25.19651851924882, - "c5": 17.042576130309826, - "c6": -5.342159547638214, - "c7": 11.908804790088432 + "points": { + "c1": -30.161033710550498, + "c2": 12.905027234723121, + "c3": -22.22820256645147, + "c4": -30.254372077455923, + "c5": 16.690560368755186, + "c6": -17.293962471889746, + "c7": 30.542501782050678 }, - "vertexSeeds": { - "c1": 5.527763045365661, - "c2": 5.480975861941184, - "c3": 5.544815544989238, - "c4": 5.7491544709908915, - "c5": 5.649941030082992, - "c6": 5.726291330259117, - "c7": 5.84482647918393 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187243, + "c3": 7.004160887656039, + "c4": 5.603328710124835, + "c5": 4.202496532593612, + "c6": 2.801664355062408, + "c7": 1.400832177531204 }, "rgb": [222, 0, 59] }, @@ -408651,23 +408651,23 @@ "year": 1815, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 22.010519719219776, - "c2": -23.903363569298275, - "c3": -0.5024240064097754, - "c4": -10.291611307904553, - "c5": 0.3201572530179746, - "c6": 8.18114911750045, - "c7": -8.2314052946985 + "points": { + "c1": 12.701755393827622, + "c2": 26.016468645666446, + "c3": -22.584180928847776, + "c4": -8.378553920387802, + "c5": -14.4059650683991, + "c6": 15.034189667065942, + "c7": 19.499566845203244 }, - "vertexSeeds": { - "c1": 8.10959225218197, - "c2": 8.638656082392608, - "c3": 8.07557745566473, - "c4": 8.333173988983019, - "c5": 8.000810715205748, - "c6": 8.335971881380756, - "c7": 8.124858057563937 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300976, + "c3": 10.517799352750801, + "c4": 8.414239482200646, + "c5": 6.310679611650488, + "c6": 4.207119741100314, + "c7": 2.103559870550157 }, "rgb": [238, 201, 159] }, @@ -408678,23 +408678,23 @@ "year": 1815, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 20.15130476781347, - "c2": -22.771276582564145, - "c3": 5.425517275544127, - "c4": 19.43814339447347, - "c5": -17.43599633391302, - "c6": 6.522791585183246, - "c7": 0.1030296701837976 + "points": { + "c1": -10.154949639963696, + "c2": 14.06367102267538, + "c3": 12.124605625637187, + "c4": -0.38455284512448173, + "c5": 7.31349446247151, + "c6": -5.9251011293740845, + "c7": -8.937635169836469 }, - "vertexSeeds": { - "c1": 9.787119392885597, - "c2": 10.54052458831483, - "c3": 10.039769129725837, - "c4": 9.834521146308003, - "c5": 10.150799263309537, - "c6": 9.835007359178638, - "c7": 10.239347626504259 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.42302357836338, + "c3": 12.852519648636141, + "c4": 10.282015718908907, + "c5": 7.711511789181709, + "c6": 5.141007859454473, + "c7": 2.5705039297272365 }, "rgb": [222, 0, 59] }, @@ -408705,23 +408705,23 @@ "year": 1815, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -14.198989538553601, - "c2": -1.758975900129009, - "c3": -20.849140756355318, - "c4": 10.083530712103357, - "c5": 18.083016763960583, - "c6": -23.069427953761632, - "c7": -1.9769662273024906 + "points": { + "c1": 13.94491203500461, + "c2": -17.573118110848682, + "c3": 19.83801978041576, + "c4": 5.171009013949348, + "c5": 7.655332929948596, + "c6": -17.74565147923574, + "c7": -1.1460595322238802 }, - "vertexSeeds": { - "c1": 10.283825689169161, - "c2": 10.50328719140104, - "c3": 10.576515390086797, - "c4": 9.839166370355015, - "c5": 10.020938797477003, - "c6": 9.926630073404944, - "c7": 10.39839519644146 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403601, + "c3": 12.87563569116966, + "c4": 10.300508552935721, + "c5": 7.725381414701819, + "c6": 5.15025427646788, + "c7": 2.57512713823394 }, "rgb": [77, 76, 132] }, @@ -408732,23 +408732,23 @@ "year": 1815, "resistanceReported": false, "duration": 3715200, - "curveSeeds": { - "c1": -5.644395396072245, - "c2": 4.642168551415649, - "c3": 7.732365254113331, - "c4": -1.7340120791690286, - "c5": 8.680612429217026, - "c6": 8.966631023233957, - "c7": 9.687316754847052 + "points": { + "c1": 9.625791932252012, + "c2": 14.555728380484018, + "c3": 2.250445857744852, + "c4": 4.691759932576021, + "c5": -3.1575596072409287, + "c6": -4.6885841797488546, + "c7": -11.892712559028142 }, - "vertexSeeds": { - "c1": 4.378935948509291, - "c2": 4.380438957620692, - "c3": 4.324217035490472, - "c4": 4.614109694804977, - "c5": 4.573896939382567, - "c6": 4.216200663815727, - "c7": 4.585760606928946 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613039, + "c3": 5.524734165510867, + "c4": 4.419787332408696, + "c5": 3.3148404993065244, + "c6": 2.209893666204343, + "c7": 1.1049468331021715 }, "rgb": [58, 15, 49] }, @@ -408759,23 +408759,23 @@ "year": 1815, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 39.77645922113088, - "c2": -32.33707148841729, - "c3": 24.27232644685941, - "c4": 24.64132253893588, - "c5": 17.821702264945714, - "c6": -22.600355883089133, - "c7": -22.26149033291099 + "points": { + "c1": -37.91090864932144, + "c2": -45.07608875077333, + "c3": -12.779040593275077, + "c4": 22.753668547268987, + "c5": -38.736115285455995, + "c6": -27.64581379842962, + "c7": 34.6399029771498 }, - "vertexSeeds": { - "c1": 2.506476683937824, - "c2": 2.506476683937824, - "c3": 2.506476683937824, - "c4": 2.506476683937824, - "c5": 2.506476683937824, - "c6": 2.506476683937824, - "c7": 2.506476683937824 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -408786,23 +408786,23 @@ "year": 1815, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -0.7075555284917812, - "c2": 26.54538799087679, - "c3": -9.446538232954385, - "c4": 6.807037224586296, - "c5": -0.44638909396974924, - "c6": 11.370187801719219, - "c7": -24.20662706967943 + "points": { + "c1": 24.845270655724264, + "c2": -11.880710294334381, + "c3": 28.123611536909564, + "c4": 4.931835172599207, + "c5": 0.21474284119373976, + "c6": -25.459281573720848, + "c7": -17.53204281999854 }, - "vertexSeeds": { - "c1": 4.777907284194468, - "c2": 4.801261191732904, - "c3": 4.820166355452383, - "c4": 4.873591489579179, - "c5": 4.828346055416274, - "c6": 4.794673517886022, - "c7": 4.804219032963746 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135922, + "c3": 5.825242718446602, + "c4": 4.660194174757281, + "c5": 3.495145631067961, + "c6": 2.3300970873786406, + "c7": 1.1650485436893203 }, "rgb": [58, 15, 49] }, @@ -408813,23 +408813,23 @@ "year": 1815, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 29.577530175737223, - "c2": -1.8213815444472843, - "c3": 23.605497721713554, - "c4": -31.286620447251867, - "c5": 21.084998755687288, - "c6": -20.93113874946279, - "c7": 27.741457385394952 + "points": { + "c1": 32.624012646162896, + "c2": 21.01095936048541, + "c3": 18.759615654474125, + "c4": 32.84609434341962, + "c5": -17.311464930834077, + "c6": 8.658235969352994, + "c7": 32.61975887680032 }, - "vertexSeeds": { - "c1": 10.174836568687018, - "c2": 10.386192138068976, - "c3": 10.720780415451891, - "c4": 10.483146288185852, - "c5": 9.85640157140066, - "c6": 10.174364696980378, - "c7": 10.582013481367062 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.42302357836338, + "c3": 12.852519648636141, + "c4": 10.282015718908907, + "c5": 7.711511789181709, + "c6": 5.141007859454473, + "c7": 2.5705039297272365 }, "rgb": [222, 0, 59] }, @@ -408840,23 +408840,23 @@ "year": 1815, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -0.21092092953540487, - "c2": 14.145499605011473, - "c3": -9.942176147686162, - "c4": 10.731232582220173, - "c5": -8.966836742905233, - "c6": 8.953039012717475, - "c7": 17.932785066643696 + "points": { + "c1": -4.618473341137076, + "c2": 31.947674352954976, + "c3": 25.7560517745965, + "c4": 34.43930192532183, + "c5": -37.923281710880296, + "c6": -40.51589432416165, + "c7": -39.207425659538956 }, - "vertexSeeds": { - "c1": 6.392487046632125, - "c2": 6.392487046632125, - "c3": 6.392487046632125, - "c4": 6.392487046632125, - "c5": 6.392487046632125, - "c6": 6.392487046632125, - "c7": 6.392487046632125 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -408867,23 +408867,23 @@ "year": 1815, "resistanceReported": false, "duration": 2246400, - "curveSeeds": { - "c1": -1.3128511900349036, - "c2": -12.366644122015506, - "c3": -4.489448989242637, - "c4": 3.483151122723294, - "c5": -4.883732667126121, - "c6": -11.624328722997673, - "c7": -11.529256011002314 + "points": { + "c1": -1.2152204952272143, + "c2": -7.981319421041423, + "c3": -13.334726742618464, + "c4": -2.6798878171061755, + "c5": -6.456184152980105, + "c6": -10.933173515715838, + "c7": 0.4493588894403029 }, - "vertexSeeds": { - "c1": 9.800135992249999, - "c2": 9.471053823697819, - "c3": 9.702901487760858, - "c4": 9.4502531883801, - "c5": 9.37486345008856, - "c6": 9.15649019101603, - "c7": 9.453804387112935 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [238, 201, 159] }, @@ -408894,23 +408894,23 @@ "year": 1815, "resistanceReported": false, "duration": 1900800, - "curveSeeds": { - "c1": -5.370570765455, - "c2": -0.03608849326706398, - "c3": 7.829429993848297, - "c4": 5.896548539777999, - "c5": 0.247691894686211, - "c6": -3.3998480521955496, - "c7": 0.7347488352426588 + "points": { + "c1": -8.358516405439179, + "c2": -12.58508697429862, + "c3": -8.756291049118646, + "c4": 1.462857933950536, + "c5": 8.84118474815114, + "c6": -11.288141948257408, + "c7": 4.83010805818752 }, - "vertexSeeds": { - "c1": 7.461706524111484, - "c2": 7.406362337636287, - "c3": 7.420071090008783, - "c4": 7.219212475730027, - "c5": 6.972120776043928, - "c6": 7.161281729457729, - "c7": 7.06942777963236 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -408921,23 +408921,23 @@ "year": 1815, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -0.2112721941283624, - "c2": 24.264064522602524, - "c3": -9.825366327741367, - "c4": 28.571257935439505, - "c5": -10.64152085116227, - "c6": 30.27853972133544, - "c7": -7.928149034501718 + "points": { + "c1": -28.4429208829922, + "c2": -4.128425439234203, + "c3": -3.932904432020507, + "c4": 19.999477355883684, + "c5": 19.348370553324536, + "c6": 22.386501843114978, + "c7": 17.39417850220783 }, - "vertexSeeds": { - "c1": 0, - "c2": 0, - "c3": 0, - "c4": 0, - "c5": 0, - "c6": 0, - "c7": 0 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -408948,23 +408948,23 @@ "year": 1815, "resistanceReported": true, "duration": 22464000, - "curveSeeds": { - "c1": 6.951293233520943, - "c2": -31.231820987139436, - "c3": -1.9643516092840159, - "c4": -26.323048382736772, - "c5": 7.7862510239906015, - "c6": -3.242968336836899, - "c7": 3.330144444059215 + "points": { + "c1": -23.01701265501014, + "c2": 18.15960300457013, + "c3": 10.38556882776551, + "c4": 30.991480250712527, + "c5": -2.9368301692571066, + "c6": -0.9194805959393264, + "c7": 28.809656482385037 }, - "vertexSeeds": { - "c1": 9.71502590673575, - "c2": 9.71502590673575, - "c3": 9.71502590673575, - "c4": 9.71502590673575, - "c5": 9.71502590673575, - "c6": 9.71502590673575, - "c7": 9.71502590673575 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -408975,23 +408975,23 @@ "year": 1815, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 9.348606432736805, - "c2": -22.952438434760086, - "c3": 22.929653473924052, - "c4": -1.7353947703737695, - "c5": 20.356029835886705, - "c6": -0.5563152632418813, - "c7": -24.03725385967661 + "points": { + "c1": -8.280191109258464, + "c2": 13.542080350827316, + "c3": 18.103647295985606, + "c4": 20.127234153985984, + "c5": 5.109246637851054, + "c6": -25.42827687310363, + "c7": 22.067456364061922 }, - "vertexSeeds": { - "c1": 4.793995887523978, - "c2": 4.51743133057784, - "c3": 4.423914038505056, - "c4": 4.67786956347932, - "c5": 4.720643380562132, - "c6": 4.796530365571995, - "c7": 4.596235719058982 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176142, + "c3": 5.848358760980122, + "c4": 4.678687008784095, + "c5": 3.5090152565880683, + "c6": 2.3393435043920476, + "c7": 1.1696717521960212 }, "rgb": [238, 201, 159] }, @@ -409002,23 +409002,23 @@ "year": 1815, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 25.044242052633773, - "c2": 17.44494031907409, - "c3": 19.269812955612554, - "c4": -6.130265319153612, - "c5": -2.992152869835966, - "c6": -24.887082932327417, - "c7": -9.093364292160224 + "points": { + "c1": 31.39895867296252, + "c2": 5.164229692361523, + "c3": -2.2989694595782524, + "c4": 2.109502421002226, + "c5": -32.50474225610843, + "c6": 31.59483554322165, + "c7": 8.326383963562563 }, - "vertexSeeds": { - "c1": 1.2574294591583057, - "c2": 1.216067028589083, - "c3": 1.242674854806496, - "c4": 1.2306181106543923, - "c5": 1.2200557427063876, - "c6": 1.20550921389729, - "c7": 1.2848601978930956 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350895, + "c3": 1.5718908922792407, + "c4": 1.2575127138233915, + "c5": 0.943134535367547, + "c6": 0.6287563569116981, + "c7": 0.31437817845584903 }, "rgb": [58, 15, 49] }, @@ -409029,23 +409029,23 @@ "year": 1815, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 18.096344612808096, - "c2": -31.928927085785585, - "c3": -21.72113256830371, - "c4": -0.821731789355141, - "c5": 13.73292186859993, - "c6": 26.89082882880217, - "c7": 26.362684492106027 + "points": { + "c1": 15.2786290553668, + "c2": -15.37193657628356, + "c3": -14.978931484391833, + "c4": -0.36874400073003955, + "c5": -28.5513140768829, + "c6": -6.401176679569776, + "c7": 0.9365880826119479 }, - "vertexSeeds": { - "c1": 2.130730734857339, - "c2": 2.301052224583297, - "c3": 1.6801813104403962, - "c4": 5.407430055378772, - "c5": 4.01178443274458, - "c6": 0.3828285088845368, - "c7": 0.9097946304449458 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.54368932038835, + "c3": 7.119741100323624, + "c4": 5.6957928802588995, + "c5": 4.271844660194175, + "c6": 2.8478964401294498, + "c7": 1.4239482200647249 }, "rgb": [58, 15, 49] }, @@ -409056,23 +409056,23 @@ "year": 1815, "resistanceReported": false, "duration": 6566400, - "curveSeeds": { - "c1": 2.641079136656515, - "c2": 7.937357840764875, - "c3": 0.5481581171209235, - "c4": -12.214741788428963, - "c5": 11.126809941379854, - "c6": -9.271475215188552, - "c7": 4.733413738865199 + "points": { + "c1": 13.243964197001354, + "c2": -13.098605928072406, + "c3": 4.863815837172375, + "c4": -3.1415372652773392, + "c5": 10.014725386430097, + "c6": -4.768400619907265, + "c7": -0.5338045811951737 }, - "vertexSeeds": { - "c1": 2.168059630212384, - "c2": 2.0585599886065262, - "c3": 2.15656493427435, - "c4": 2.038946370758255, - "c5": 2.157585129042221, - "c6": 2.163293518585105, - "c7": 2.0836509922398423 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.190013869625522, + "c3": 2.6583448913546, + "c4": 2.1266759130836816, + "c5": 1.5950069348127591, + "c6": 1.0633379565418408, + "c7": 0.5316689782709185 }, "rgb": [58, 15, 49] }, @@ -409083,23 +409083,23 @@ "year": 1815, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -18.077485546240034, - "c2": 8.824160931935843, - "c3": -13.586764443131479, - "c4": -22.142624099258384, - "c5": 14.724986071261199, - "c6": 22.165748911244002, - "c7": -17.430796859661537 + "points": { + "c1": -20.73975304736744, + "c2": 0.6541859348947661, + "c3": 16.878653702129903, + "c4": 2.9060761487838036, + "c5": -3.032267106041246, + "c6": 18.852053655423283, + "c7": -2.170386764007567 }, - "vertexSeeds": { - "c1": 10.418198179368394, - "c2": 10.043988508910383, - "c3": 9.81633216475579, - "c4": 10.017923611715789, - "c5": 10.39566403332714, - "c6": 9.770010466889246, - "c7": 9.674817830063308 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.006934812760063, + "c3": 12.505779010633393, + "c4": 10.004623208506723, + "c5": 7.503467406380053, + "c6": 5.002311604253362, + "c7": 2.5011558021266915 }, "rgb": [238, 201, 159] }, @@ -409110,23 +409110,23 @@ "year": 1815, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -12.404104805122822, - "c2": 2.317119368029495, - "c3": -9.028946531312776, - "c4": 22.211636448703338, - "c5": 5.8061844990247025, - "c6": -22.506349051623992, - "c7": 20.971385851412897 + "points": { + "c1": 20.797995481787524, + "c2": -5.366797973719425, + "c3": 24.158904006438995, + "c4": -9.529401717075665, + "c5": -10.386095866015527, + "c6": 24.265621717359274, + "c7": -21.567894874964992 }, - "vertexSeeds": { - "c1": 8.367318985649577, - "c2": 8.443289800868705, - "c3": 8.376060292853762, - "c4": 8.512620575087137, - "c5": 8.208167344333752, - "c6": 8.560783017467214, - "c7": 8.469587438903002 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019417, + "c3": 10.35598705501618, + "c4": 8.284789644012944, + "c5": 6.213592233009709, + "c6": 4.142394822006472, + "c7": 2.071197411003236 }, "rgb": [77, 76, 132] }, @@ -409137,23 +409137,23 @@ "year": 1815, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 21.053458364558104, - "c2": 13.817296364759642, - "c3": -1.7050829431575458, - "c4": -23.043553395520995, - "c5": -7.827765189723852, - "c6": 14.511605654463558, - "c7": -6.71373460914937 + "points": { + "c1": 24.783290443951934, + "c2": 6.055072291298458, + "c3": 10.915710605368616, + "c4": 12.7815833599185, + "c5": -6.964039055876469, + "c6": -18.543061983427208, + "c7": -8.303698458914148 }, - "vertexSeeds": { - "c1": 9.80463546651534, - "c2": 10.033548237267812, - "c3": 10.58983585332187, - "c4": 10.123501064440408, - "c5": 10.408621947142485, - "c6": 9.8652115646937, - "c7": 10.511471635125046 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.42302357836338, + "c3": 12.852519648636141, + "c4": 10.282015718908907, + "c5": 7.711511789181709, + "c6": 5.141007859454473, + "c7": 2.5705039297272365 }, "rgb": [77, 76, 132] }, @@ -409164,23 +409164,23 @@ "year": 1815, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -21.97978179535729, - "c2": -23.456151225674134, - "c3": -34.73111232629965, - "c4": -21.029903055437366, - "c5": 2.993699474347139, - "c6": -16.205393727623747, - "c7": 14.037235067893157 + "points": { + "c1": 10.888628169234195, + "c2": -28.996963395251786, + "c3": 6.442922678015478, + "c4": 30.98621762128417, + "c5": -30.24236413407337, + "c6": 8.578721650344704, + "c7": -18.62977117961031 }, - "vertexSeeds": { - "c1": 4.106618065618309, - "c2": 4.124759056425559, - "c3": 4.159691909129609, - "c4": 4.415252355075956, - "c5": 4.23903286927267, - "c6": 4.095809311877198, - "c7": 4.3945103423403316 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291261, + "c3": 5.339805825242715, + "c4": 4.27184466019417, + "c5": 3.203883495145625, + "c6": 2.1359223300970904, + "c7": 1.0679611650485452 }, "rgb": [238, 201, 159] }, @@ -409191,23 +409191,23 @@ "year": 1815, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -13.125327806113486, - "c2": -9.304534953957004, - "c3": -0.18621758432415447, - "c4": -4.316764297248277, - "c5": -1.7705777951616746, - "c6": 6.431442608318271, - "c7": 14.163444791722668 + "points": { + "c1": 10.913075538849448, + "c2": 23.01790761975056, + "c3": 22.078967450645308, + "c4": 25.770017018456585, + "c5": 2.920875682180057, + "c6": -16.060645313031763, + "c7": 8.260687832780363 }, - "vertexSeeds": { - "c1": 6.004863673686845, - "c2": 6.982403685059529, - "c3": 7.64611830257347, - "c4": 6.732711335723684, - "c5": 5.8225992600067675, - "c6": 6.347702631939895, - "c7": 7.614488620750977 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.84466019417476, + "c3": 9.870550161812297, + "c4": 7.896440129449839, + "c5": 5.922330097087377, + "c6": 3.9482200647249197, + "c7": 1.9741100323624627 }, "rgb": [77, 76, 132] }, @@ -409218,23 +409218,23 @@ "year": 1815, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": -1.5398961672845743, - "c2": -12.753374761379728, - "c3": -6.747303924618588, - "c4": 11.095251078276107, - "c5": -4.041774102846345, - "c6": -10.555189792858297, - "c7": 7.084209902857108 + "points": { + "c1": 10.35689901450613, + "c2": 9.230756406506988, + "c3": -8.010833940831715, + "c4": 13.466814939965719, + "c5": -18.042288968533313, + "c6": -17.18665444228586, + "c7": 11.618386348006641 }, - "vertexSeeds": { - "c1": 0.5758797712418302, - "c2": 0.6116138192270486, - "c3": 0.5680133577293153, - "c4": 0.5662608410624442, - "c5": 0.6033472486854664, - "c6": 0.5774718914540353, - "c7": 0.6208314755245846 + "offsets": { + "c1": 1.0679611650485437, + "c2": 0.9153952843273234, + "c3": 0.7628294036061022, + "c4": 0.610263522884882, + "c5": 0.4576976421636617, + "c6": 0.3051317614424414, + "c7": 0.15256588072122024 }, "rgb": [77, 76, 132] }, @@ -409245,23 +409245,23 @@ "year": 1815, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -21.944280384842955, - "c2": -28.18064371471015, - "c3": 12.418849095301567, - "c4": -33.59364678620795, - "c5": -12.136212676145394, - "c6": 28.95071734590121, - "c7": -23.471677861664148 + "points": { + "c1": -26.012065226954466, + "c2": -29.931048017743905, + "c3": 17.326898708723114, + "c4": -37.4116954509062, + "c5": 37.23031906084661, + "c6": 12.327874906209694, + "c7": -2.642127789764743 }, - "vertexSeeds": { - "c1": 9.943689643498187, - "c2": 10.272358382657927, - "c3": 9.666091327748244, - "c4": 10.018231423985233, - "c5": 10.218056397251138, - "c6": 10.432118916618583, - "c7": 9.60464079539521 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.979195561719827, + "c3": 12.482662968099847, + "c4": 9.986130374479913, + "c5": 7.489597780859936, + "c6": 4.9930651872399565, + "c7": 2.4965325936199783 }, "rgb": [222, 0, 59] }, @@ -409272,23 +409272,23 @@ "year": 1816, "resistanceReported": false, "duration": 35596800, - "curveSeeds": { - "c1": 13.662739626708124, - "c2": -11.62895060705722, - "c3": -19.327098742305836, - "c4": 48.36946641988239, - "c5": 0.7720489590992443, - "c6": -26.442077218866316, - "c7": 36.594388554401014 + "points": { + "c1": -23.241706159812566, + "c2": -16.084348709000622, + "c3": 17.3561089336468, + "c4": -46.19698603931016, + "c5": 49.675497802488785, + "c6": -16.034825986034257, + "c7": 3.3792031105442533 }, - "vertexSeeds": { - "c1": 11.047126721348231, - "c2": 10.586432982116257, - "c3": 10.666458494822237, - "c4": 10.413884703521632, - "c5": 10.759701849409883, - "c6": 10.913481037848838, - "c7": 10.450632128292241 + "offsets": { + "c1": 18.576051779935277, + "c2": 15.922330097087366, + "c3": 13.268608414239502, + "c4": 10.614886731391593, + "c5": 7.961165048543683, + "c6": 5.307443365695819, + "c7": 2.6537216828479093 }, "rgb": [222, 0, 59] }, @@ -409299,23 +409299,23 @@ "year": 1815, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 6.812998211995431, - "c2": 20.124178347518036, - "c3": -26.9921382089857, - "c4": 24.49883206143866, - "c5": 13.898753378292962, - "c6": -8.420446334833542, - "c7": -15.843152470799179 + "points": { + "c1": 18.117964795535336, + "c2": -8.226818513104195, + "c3": 8.459790489104023, + "c4": 30.961449569930338, + "c5": -15.092473840245866, + "c6": 0.633330428347648, + "c7": -18.093029388935847 }, - "vertexSeeds": { - "c1": 9.832494364562523, - "c2": 9.850801193514858, - "c3": 9.713530028264977, - "c4": 10.587338392673688, - "c5": 10.418697834870144, - "c6": 10.065139269519154, - "c7": 10.402485470042421 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323166, + "c3": 12.829403606102641, + "c4": 10.263522884882116, + "c5": 7.697642163661591, + "c6": 5.131761442441066, + "c7": 2.5658807212205246 }, "rgb": [77, 76, 132] }, @@ -409326,23 +409326,23 @@ "year": 1815, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -23.386528556790815, - "c2": -19.604078868885143, - "c3": -4.122883398179116, - "c4": 13.995742917925092, - "c5": 18.769993238062007, - "c6": -16.32320093434639, - "c7": 14.975608198545864 + "points": { + "c1": 28.783100030682192, + "c2": 16.121644895942858, + "c3": 30.104819693373067, + "c4": 20.47554004442057, + "c5": -28.73091187338121, + "c6": 25.8351555263624, + "c7": 14.594525698403373 }, - "vertexSeeds": { - "c1": 8.611569340388812, - "c2": 8.423711633790292, - "c3": 8.023600185913997, - "c4": 8.345456137553237, - "c5": 8.505759713688102, - "c6": 8.666558740654311, - "c7": 8.127170015093952 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019417, + "c3": 10.35598705501618, + "c4": 8.284789644012944, + "c5": 6.213592233009709, + "c6": 4.142394822006472, + "c7": 2.071197411003236 }, "rgb": [238, 201, 159] }, @@ -409353,23 +409353,23 @@ "year": 1815, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": 15.474740066888828, - "c2": 16.361174838521215, - "c3": 11.291046396850842, - "c4": 14.78401323068033, - "c5": -5.839242929760449, - "c6": 19.246472457435473, - "c7": 0.9501354017587857 + "points": { + "c1": -12.569007707318793, + "c2": 21.503073822200378, + "c3": -13.706114160107907, + "c4": -0.5578816167020264, + "c5": -7.064551342703359, + "c6": -5.3015994251978995, + "c7": 18.39762156817973 }, - "vertexSeeds": { - "c1": 10.956930667588537, - "c2": 10.931060321972708, - "c3": 10.664345850883123, - "c4": 10.935059733058454, - "c5": 10.957918185655698, - "c6": 9.90169728268022, - "c7": 10.538694029814486 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725376, + "c3": 13.060564031437805, + "c4": 10.448451225150267, + "c5": 7.836338418862696, + "c6": 5.224225612575125, + "c7": 2.612112806287554 }, "rgb": [222, 0, 59] }, @@ -409380,23 +409380,23 @@ "year": 1815, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 25.83823381475085, - "c2": 11.164784857711439, - "c3": -2.0131763087504773, - "c4": 3.5662166634470793, - "c5": 30.443803113443366, - "c6": 9.536539641942326, - "c7": -10.88371802984405 + "points": { + "c1": 0.5561817143825607, + "c2": 18.46165738628749, + "c3": 31.438591879870494, + "c4": 20.942855835062836, + "c5": 15.780296354433652, + "c6": -32.64393745357496, + "c7": 10.16291580272604 }, - "vertexSeeds": { - "c1": 10.147697393842321, - "c2": 9.852497777570905, - "c3": 10.492239921154956, - "c4": 9.901055455749722, - "c5": 10.035347034869053, - "c6": 10.390846677140575, - "c7": 10.648081269244878 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122058, + "c3": 12.713823393435055, + "c4": 10.171058714748053, + "c5": 7.628294036061051, + "c6": 5.085529357374005, + "c7": 2.5427646786870026 }, "rgb": [222, 0, 59] }, @@ -409407,23 +409407,23 @@ "year": 1815, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -14.073894305923213, - "c2": 13.308198399807466, - "c3": -25.485975235585848, - "c4": 15.294889498846864, - "c5": 10.583152159342582, - "c6": 9.53370930903614, - "c7": -0.50668114406486 + "points": { + "c1": -24.622725610261657, + "c2": 6.352959101116433, + "c3": 20.524640697660786, + "c4": 9.650348117045034, + "c5": 4.760814198540146, + "c6": -13.0572904306254, + "c7": -24.731199386967937 }, - "vertexSeeds": { - "c1": 9.73538713625068, - "c2": 9.924062073000915, - "c3": 10.345858162772272, - "c4": 9.973026621353403, - "c5": 10.575752885133163, - "c6": 9.971977164768138, - "c7": 9.625798845520103 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.284327323162273, + "c3": 12.736939435968557, + "c4": 10.189551548774842, + "c5": 7.642163661581128, + "c6": 5.094775774387431, + "c7": 2.5473878871937154 }, "rgb": [238, 201, 159] }, @@ -409434,23 +409434,23 @@ "year": 1815, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 21.866253964124187, - "c2": 17.088900023022955, - "c3": 15.100157772785256, - "c4": -23.708420769690957, - "c5": -6.107890511606598, - "c6": -21.061091424586056, - "c7": -9.405364010606505 + "points": { + "c1": 16.48742082059838, + "c2": 16.131691753521764, + "c3": -1.5309813683555298, + "c4": -8.208270736879673, + "c5": 27.976001433260954, + "c6": 9.1654211332297, + "c7": 25.49720336360989 }, - "vertexSeeds": { - "c1": 4.9341511803221945, - "c2": 5.369023085599817, - "c3": 5.122343533156138, - "c4": 5.493260317414983, - "c5": 5.1014795315420045, - "c6": 5.362643087675301, - "c7": 4.7687843627174376 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785017, + "c3": 6.773000462320855, + "c4": 5.418400369856681, + "c5": 4.063800277392509, + "c6": 2.709200184928335, + "c7": 1.3546000924641675 }, "rgb": [86, 146, 138] }, @@ -409461,23 +409461,23 @@ "year": 1815, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -18.982008842336892, - "c2": -4.36128441029571, - "c3": -21.500950223125006, - "c4": -9.836834671154698, - "c5": -2.1212404220684355, - "c6": 9.645745573226247, - "c7": -8.678507321244748 + "points": { + "c1": 19.75305127994625, + "c2": 8.661342916150922, + "c3": -3.8898108437535193, + "c4": 8.370231349443785, + "c5": -6.442524433205218, + "c6": -21.61049549802635, + "c7": 21.51004620135646 }, - "vertexSeeds": { - "c1": 10.099868172577604, - "c2": 10.109087402470415, - "c3": 9.689443113375393, - "c4": 10.278354490106782, - "c5": 10.118204260309984, - "c6": 10.012935431887284, - "c7": 10.455289028159335 + "offsets": { + "c1": 17.637540453074433, + "c2": 15.117891816920961, + "c3": 12.598243180767446, + "c4": 10.078594544613974, + "c5": 7.558945908460459, + "c6": 5.039297272306987, + "c7": 2.5196486361534935 }, "rgb": [238, 201, 159] }, @@ -409488,23 +409488,23 @@ "year": 1815, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 17.882924055690612, - "c2": 9.195714750023829, - "c3": 16.948085171440145, - "c4": 12.575636677208028, - "c5": 25.531337158603794, - "c6": 3.42557107862266, - "c7": 22.6039102349558 + "points": { + "c1": -12.020643818013202, + "c2": 27.5398834805014, + "c3": -3.1856803024355784, + "c4": 19.811930819338638, + "c5": -7.249770058206138, + "c6": 1.1126503889369168, + "c7": 10.59930889466516 }, - "vertexSeeds": { - "c1": 4.817604572386291, - "c2": 5.171956178181805, - "c3": 5.0589057722535715, - "c4": 4.458865864613422, - "c5": 4.3850312171987085, - "c6": 4.868636607882801, - "c7": 4.853582898553581 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031900137, + "c3": 6.264447526583446, + "c4": 5.01155802126676, + "c5": 3.7586685159500686, + "c6": 2.5057790106333773, + "c7": 1.252889505316691 }, "rgb": [58, 15, 49] }, @@ -409515,23 +409515,23 @@ "year": 1815, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": -8.368050268352489, - "c2": -2.4108398471623573, - "c3": 13.116070649484882, - "c4": -2.9016315522834937, - "c5": -17.73174359026928, - "c6": -20.27179265939821, - "c7": -13.422983525463643 + "points": { + "c1": -20.493706180296495, + "c2": -8.374333463124566, + "c3": 10.263243764909241, + "c4": 10.9157328152464, + "c5": -2.9450678623564244, + "c6": -19.869221629559345, + "c7": -17.954221068068676 }, - "vertexSeeds": { - "c1": 8.79832217927063, - "c2": 8.920367174341733, - "c3": 8.877747861306087, - "c4": 8.718625301797875, - "c5": 8.929648830090871, - "c6": 8.874044051777574, - "c7": 8.935858030698101 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542291, + "c3": 10.6564956079519, + "c4": 8.525196486361505, + "c5": 6.393897364771111, + "c6": 4.262598243180788, + "c7": 2.131299121590394 }, "rgb": [222, 0, 59] }, @@ -409542,23 +409542,23 @@ "year": 1815, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -20.93673923198952, - "c2": 12.890941806873478, - "c3": -12.713002853525724, - "c4": 7.01844056011166, - "c5": 2.476174029025657, - "c6": -21.370427174447425, - "c7": 16.61411275545462 + "points": { + "c1": 18.633224940668946, + "c2": -9.731025100842977, + "c3": -22.96757538690667, + "c4": 10.89905051234156, + "c5": -14.122248040475565, + "c6": -10.998609235278408, + "c7": -4.577572700041937 }, - "vertexSeeds": { - "c1": 6.39664839181191, - "c2": 6.278764515605798, - "c3": 6.8230331996560665, - "c4": 7.304832680704301, - "c5": 6.639254058508612, - "c6": 6.754073262216418, - "c7": 6.4598723726748695 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324555, + "c3": 8.807212205270456, + "c4": 7.04576976421637, + "c5": 5.284327323162272, + "c6": 3.522884882108185, + "c7": 1.7614424410540868 }, "rgb": [86, 146, 138] }, @@ -409569,23 +409569,23 @@ "year": 1815, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 13.207806360773553, - "c2": -16.236169487147432, - "c3": -10.294131891750848, - "c4": -5.146870879209086, - "c5": 8.935214708500297, - "c6": 21.63942440864527, - "c7": 18.078051994445914 + "points": { + "c1": 8.12654436222703, + "c2": -12.506337670822592, + "c3": -11.512416926628076, + "c4": -6.299608167799477, + "c5": -23.36231540091439, + "c6": 11.16415021016681, + "c7": 4.490103981914501 }, - "vertexSeeds": { - "c1": 2.1885495347458113, - "c2": 2.0326151037282427, - "c3": 2.1892314281590037, - "c4": 2.0518924619772996, - "c5": 2.1867348626713436, - "c6": 2.151751872674848, - "c7": 2.2303541522087196 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.2454923717059656, + "c3": 2.7045769764216363, + "c4": 2.1636615811373106, + "c5": 1.6227461858529808, + "c6": 1.0818307905686553, + "c7": 0.5409153952843295 }, "rgb": [58, 15, 49] }, @@ -409596,23 +409596,23 @@ "year": 1816, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 20.438542750696925, - "c2": 40.197863149199804, - "c3": 14.191979839371037, - "c4": 27.98939538889782, - "c5": -2.1744024247173996, - "c6": 4.813959704141425, - "c7": -27.60016970661716 + "points": { + "c1": 16.611389321165454, + "c2": -4.008621955976622, + "c3": 35.773361712894356, + "c4": 42.08043987009272, + "c5": -39.674464079815124, + "c6": 7.5391192537482965, + "c7": -31.60907926128172 }, - "vertexSeeds": { - "c1": 1.88108923813469, - "c2": 1.7579454234890968, - "c3": 1.7679158777669741, - "c4": 1.808316996748488, - "c5": 1.8550306379382944, - "c6": 1.7498127772219498, - "c7": 1.7545059113113832 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624116, + "c3": 2.334720295885345, + "c4": 1.8677762367082744, + "c5": 1.4008321775312078, + "c6": 0.9338881183541372, + "c7": 0.46694405917706666 }, "rgb": [222, 0, 59] }, @@ -409623,23 +409623,23 @@ "year": 1815, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -14.44633274203133, - "c2": -18.808735709181494, - "c3": 23.251919514851636, - "c4": -13.961266777816451, - "c5": -32.8071437397478, - "c6": 27.49637882633406, - "c7": 6.954614405633357 + "points": { + "c1": -2.641402811862733, + "c2": -7.181450168821627, + "c3": -31.32822622813547, + "c4": 0.08391049635547887, + "c5": 15.707763053152327, + "c6": 3.2196435547996387, + "c7": 27.520131264587427 }, - "vertexSeeds": { - "c1": 6.587208065381519, - "c2": 7.339182525091131, - "c3": 6.3274485481846545, - "c4": 6.318504158877207, - "c5": 6.546863249887553, - "c6": 6.6921213718814245, - "c7": 6.6750805000102185 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525663, + "c3": 8.922792417938044, + "c4": 7.1382339343504375, + "c5": 5.3536754507628315, + "c6": 3.5691169671752134, + "c7": 1.7845584835876067 }, "rgb": [86, 146, 138] }, @@ -409650,23 +409650,23 @@ "year": 1815, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -9.811202604659682, - "c2": -9.266878320321142, - "c3": 0.9997004089432444, - "c4": -5.082492272954958, - "c5": -18.789980331980807, - "c6": 22.29497215531592, - "c7": 14.34885179408678 + "points": { + "c1": -8.710915550996898, + "c2": 1.7690882708317304, + "c3": 6.7517360583665145, + "c4": -8.645126322190585, + "c5": 16.257123643229686, + "c6": 1.3809031933206093, + "c7": 12.561522807614441 }, - "vertexSeeds": { - "c1": 3.574038821098685, - "c2": 3.43920610428391, - "c3": 3.6313592985070806, - "c4": 3.7519207558239405, - "c5": 3.7497710602685577, - "c6": 3.358448860954773, - "c7": 3.722624125362364 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.464632454923715, + "c3": 4.553860379103101, + "c4": 3.6430883032824797, + "c5": 2.7323162274618573, + "c6": 1.8215441516412358, + "c7": 0.9107720758206217 }, "rgb": [77, 76, 132] }, @@ -409677,23 +409677,23 @@ "year": 1815, "resistanceReported": false, "duration": 8380800, - "curveSeeds": { - "c1": -17.966452725385896, - "c2": 5.082777329724923, - "c3": -8.780932377373988, - "c4": 17.600454383995093, - "c5": 1.5904754614139769, - "c6": 4.373470469822895, - "c7": -3.168219797293238 + "points": { + "c1": 20.804964776297652, + "c2": 9.686086312201557, + "c3": 4.963894143902287, + "c4": -13.723908413820281, + "c5": 1.5223041392517622, + "c6": 13.768614225602839, + "c7": -8.46415821183891 }, - "vertexSeeds": { - "c1": 2.465351226819478, - "c2": 2.4267796227611735, - "c3": 2.4931949420328317, - "c4": 2.4779800444202125, - "c5": 2.362844246099194, - "c6": 2.4742415080695435, - "c7": 2.381244797542977 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550625, + "c3": 3.190013869625522, + "c4": 2.5520110957004194, + "c5": 1.9140083217753163, + "c6": 1.2760055478502097, + "c7": 0.6380027739251067 }, "rgb": [222, 0, 59] }, @@ -409704,23 +409704,23 @@ "year": 1815, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": 9.746010388677998, - "c2": 8.355957012552324, - "c3": -10.682853141740564, - "c4": 3.0977411635625955, - "c5": 18.473508402333728, - "c6": 0.37288228265446577, - "c7": -8.948630464967485 + "points": { + "c1": -6.733928793364619, + "c2": -14.867548052685489, + "c3": -4.948293571615846, + "c4": -18.68857757228986, + "c5": -17.940150981064992, + "c6": -7.131543014882766, + "c7": 20.134009766409683 }, - "vertexSeeds": { - "c1": 0.34041687699063783, - "c2": 0.3397341491973192, - "c3": 0.3519974762296973, - "c4": 0.3355932370230345, - "c5": 0.34852582645133445, - "c6": 0.3366678111027311, - "c7": 0.3541850137111634 + "offsets": { + "c1": 0.6472491909385114, + "c2": 0.5547850208044387, + "c3": 0.4623208506703648, + "c4": 0.36985668053629206, + "c5": 0.27739251040221935, + "c6": 0.1849283402681466, + "c7": 0.09246417013407272 }, "rgb": [86, 146, 138] }, @@ -409731,23 +409731,23 @@ "year": 1815, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -12.568590208606416, - "c2": -0.20640883254189646, - "c3": 1.266491713602253, - "c4": -16.255554139292766, - "c5": -14.916164315950388, - "c6": -17.611455460259045, - "c7": -21.2042180128454 + "points": { + "c1": 11.31490690312146, + "c2": -29.041780538162865, + "c3": 3.1065446999726802, + "c4": -16.562567615982232, + "c5": 18.269135098620666, + "c6": 20.35539203753475, + "c7": -10.03046755659906 }, - "vertexSeeds": { - "c1": 9.877291236686572, - "c2": 9.873252046925042, - "c3": 9.867724201816499, - "c4": 9.813030516437538, - "c5": 9.921841059592516, - "c6": 9.918175715378363, - "c7": 9.809460689151706 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.257975034674036, + "c3": 11.881645862228426, + "c4": 9.505316689782722, + "c5": 7.128987517337018, + "c6": 4.752658344891408, + "c7": 2.376329172445704 }, "rgb": [58, 15, 49] }, @@ -409758,23 +409758,23 @@ "year": 1815, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 28.354074314035856, - "c2": -27.705438771026, - "c3": -22.155792660431764, - "c4": 12.989541499900675, - "c5": -17.3744604537661, - "c6": 6.187028890581601, - "c7": -30.10828753596719 + "points": { + "c1": 9.66673473255635, + "c2": 5.342374147874388, + "c3": -0.40028155838485446, + "c4": 18.475077287441643, + "c5": -32.035662226119506, + "c6": 27.608610199108526, + "c7": 28.279019571316297 }, - "vertexSeeds": { - "c1": 5.180924509301903, - "c2": 5.815054628043326, - "c3": 5.484865692709741, - "c4": 5.357441814634718, - "c5": 5.870355656128852, - "c6": 5.444861527720334, - "c7": 5.319100383282028 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.43273231622746, + "c3": 7.027276930189547, + "c4": 5.62182154415165, + "c5": 4.216366158113737, + "c6": 2.810910772075825, + "c7": 1.4054553860379124 }, "rgb": [58, 15, 49] }, @@ -409785,23 +409785,23 @@ "year": 1815, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 14.207400796728294, - "c2": -5.596202643267038, - "c3": -0.13489754318666058, - "c4": 14.96894110981831, - "c5": -5.355402961619543, - "c6": 4.608689194174612, - "c7": 19.238448532393974 + "points": { + "c1": 19.93389840302197, + "c2": -3.5873355994662433, + "c3": 18.450053150844724, + "c4": -1.4395991020521208, + "c5": -9.168073523168694, + "c6": -2.2648919978492756, + "c7": 23.130623663940618 }, - "vertexSeeds": { - "c1": 2.5046148167863995, - "c2": 2.3716834620105813, - "c3": 2.509158137460858, - "c4": 2.3420214569510094, - "c5": 2.362749078240731, - "c6": 2.3394963580452495, - "c7": 2.2782492577558076 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.633841886269075, + "c3": 3.0282015718908926, + "c4": 2.422561257512714, + "c5": 1.8169209431345354, + "c6": 1.211280628756357, + "c7": 0.6056403143781784 }, "rgb": [77, 76, 132] }, @@ -409812,23 +409812,23 @@ "year": 1815, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -3.813811491591565, - "c2": 0.019048750964032024, - "c3": -11.94149059115287, - "c4": 26.2871637661027, - "c5": -23.544056099272396, - "c6": 25.865927966205298, - "c7": 28.05803315651471 + "points": { + "c1": 14.932537620704537, + "c2": 14.903231815134703, + "c3": -4.878028656534553, + "c4": -18.135010307569523, + "c5": -27.567324852716506, + "c6": 3.939451390266534, + "c7": 30.03422528977984 }, - "vertexSeeds": { - "c1": 8.373692930636976, - "c2": 7.985501639600762, - "c3": 8.2369083514538, - "c4": 7.940238082806115, - "c5": 8.161636105194535, - "c6": 7.9397383542279565, - "c7": 8.106307907686185 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019417, + "c3": 10.35598705501618, + "c4": 8.284789644012944, + "c5": 6.213592233009709, + "c6": 4.142394822006472, + "c7": 2.071197411003236 }, "rgb": [58, 15, 49] }, @@ -409839,23 +409839,23 @@ "year": 1817, "resistanceReported": false, "duration": 55382400, - "curveSeeds": { - "c1": 69.64791748136102, - "c2": -39.61947604153672, - "c3": -28.751515737637206, - "c4": -66.96083013989731, - "c5": 42.01543223913106, - "c6": -23.122476371069318, - "c7": 49.05516484597371 + "points": { + "c1": -15.693050906363375, + "c2": -46.83671825353079, + "c3": 42.87312963994087, + "c4": -57.66301293595867, + "c5": 37.31685904116469, + "c6": 31.69450980075446, + "c7": 68.2869174248352 }, - "vertexSeeds": { - "c1": 9.836889850942883, - "c2": 9.992457192342837, - "c3": 9.92402554583344, - "c4": 9.932030394893665, - "c5": 9.979917413131927, - "c6": 9.985214031801156, - "c7": 9.86361906767322 + "offsets": { + "c1": 16.796116504854368, + "c2": 14.39667128987524, + "c3": 11.997226074895956, + "c4": 9.597780859916828, + "c5": 7.198335644937541, + "c6": 4.798890429958414, + "c7": 2.399445214979207 }, "rgb": [77, 76, 132] }, @@ -409866,23 +409866,23 @@ "year": 1815, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -9.873554449960157, - "c2": -11.555886603040872, - "c3": 22.08892296979491, - "c4": -15.76824503725998, - "c5": -2.2503249931222165, - "c6": 13.345568544091595, - "c7": -7.490294987622788 + "points": { + "c1": -11.033706451618373, + "c2": 9.923895438048728, + "c3": -21.575068811224142, + "c4": 2.439026724643078, + "c5": -11.689756823141346, + "c6": -12.643217476962604, + "c7": 4.253328185936443 }, - "vertexSeeds": { - "c1": 5.284321072933318, - "c2": 5.346046226016588, - "c3": 4.999336208087682, - "c4": 5.051503036279191, - "c5": 5.259197309622463, - "c6": 4.896027180167967, - "c7": 5.496962041047727 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785017, + "c3": 6.773000462320855, + "c4": 5.418400369856681, + "c5": 4.063800277392509, + "c6": 2.709200184928335, + "c7": 1.3546000924641675 }, "rgb": [86, 146, 138] }, @@ -409893,23 +409893,23 @@ "year": 1815, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -9.130984209492773, - "c2": -26.688717310027194, - "c3": -4.381893104490501, - "c4": -21.37203297146536, - "c5": -25.94536945015357, - "c6": -17.81492311079662, - "c7": -16.380766939665996 + "points": { + "c1": -16.722564056083627, + "c2": 6.002624399692056, + "c3": 26.116682483319114, + "c4": -0.14863099264726642, + "c5": 11.95272630985438, + "c6": 3.2311075025522378, + "c7": -5.027307315062082 }, - "vertexSeeds": { - "c1": 4.179679444467457, - "c2": 4.069360142295281, - "c3": 4.219858086471573, - "c4": 4.143674312138288, - "c5": 4.239157787370424, - "c6": 4.500110987872293, - "c7": 4.104054290623595 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.6019417475728135, + "c3": 5.501618122977343, + "c4": 4.401294498381879, + "c5": 3.3009708737864067, + "c6": 2.2006472491909355, + "c7": 1.1003236245954713 }, "rgb": [86, 146, 138] }, @@ -409920,23 +409920,23 @@ "year": 1815, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 12.184449802679108, - "c2": -18.87473729894845, - "c3": -10.268021699018556, - "c4": 5.350700952926449, - "c5": -0.12940140537858724, - "c6": 22.82378498488435, - "c7": 13.125153991471219 + "points": { + "c1": -10.57477372054986, + "c2": -3.1385440600271544, + "c3": -14.32939767860193, + "c4": -14.18855012512659, + "c5": -16.246714378744045, + "c6": -26.56682214341504, + "c7": -12.287085206683733 }, - "vertexSeeds": { - "c1": 3.1560164433491518, - "c2": 2.9030333323822277, - "c3": 3.0719209080400542, - "c4": 3.038475078059977, - "c5": 2.880399204311192, - "c6": 2.8396391541015205, - "c7": 2.899316645949866 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [238, 201, 159] }, @@ -409947,23 +409947,23 @@ "year": 1815, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 9.262260193956521, - "c2": 7.3312726894027875, - "c3": -3.9320072232958694, - "c4": -6.87103010019251, - "c5": 15.617166014831959, - "c6": -22.57358633122105, - "c7": -21.36545294139158 + "points": { + "c1": -4.69889605872519, + "c2": 15.279236352796481, + "c3": -10.330956335149175, + "c4": -9.933291763794482, + "c5": -25.495923431624963, + "c6": -19.77522940968175, + "c7": -11.08838738320674 }, - "vertexSeeds": { - "c1": 11.036269430051814, - "c2": 11.036269430051814, - "c3": 11.036269430051814, - "c4": 11.036269430051814, - "c5": 11.036269430051814, - "c6": 11.036269430051814, - "c7": 11.036269430051814 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -409974,23 +409974,23 @@ "year": 1815, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 2.0820999719758078, - "c2": -24.73297870149868, - "c3": -3.160120979822647, - "c4": -20.50192960369723, - "c5": 10.480811278978216, - "c6": -12.905391800777068, - "c7": 11.014733839584068 + "points": { + "c1": 19.158977501703376, + "c2": 14.371301506530969, + "c3": 11.286797178891, + "c4": -26.87606875311999, + "c5": -27.066667442582652, + "c6": 22.077205097189776, + "c7": 12.339582957532727 }, - "vertexSeeds": { - "c1": 6.034008927037252, - "c2": 6.026224656373272, - "c3": 6.029314553716048, - "c4": 6.029588628543378, - "c5": 6.030852165005286, - "c6": 6.0289996479783365, - "c7": 6.024107511039841 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.65464632454899, + "c3": 7.212205270457779, + "c4": 5.769764216365994, + "c5": 4.327323162274782, + "c6": 2.884882108182997, + "c7": 1.4424410540917854 }, "rgb": [58, 15, 49] }, @@ -410001,23 +410001,23 @@ "year": 1815, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 0.6218478294467857, - "c2": -4.832999377427562, - "c3": 18.536323359464742, - "c4": 7.720935595751218, - "c5": 23.984527933428172, - "c6": -16.132038323960355, - "c7": -7.024169389526506 + "points": { + "c1": 13.050725733781523, + "c2": 11.753570776564946, + "c3": 14.591632361032868, + "c4": 1.5326755071384675, + "c5": -3.2477838919122206, + "c6": 3.5710094101282515, + "c7": 24.18817648718159 }, - "vertexSeeds": { - "c1": 3.051121746729757, - "c2": 3.1840975675155607, - "c3": 2.969728332745269, - "c4": 3.156499453384346, - "c5": 3.041169011665522, - "c6": 2.8381976609575155, - "c7": 3.089200204069881 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [238, 201, 159] }, @@ -410028,23 +410028,23 @@ "year": 1815, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -10.168537978877884, - "c2": -21.489500071536483, - "c3": 22.75505682344665, - "c4": 18.296794245484584, - "c5": 14.833385658168922, - "c6": 9.171394658695093, - "c7": -1.7603502018953527 + "points": { + "c1": 0.09390808250463323, + "c2": 23.357196210219342, + "c3": 20.582916344761763, + "c4": -8.918389836694509, + "c5": -5.7672016918259885, + "c6": 27.265814653409414, + "c7": 10.887912779194437 }, - "vertexSeeds": { - "c1": 3.855303772087271, - "c2": 3.7618438063570827, - "c3": 4.2516479067025985, - "c4": 3.9696448595851503, - "c5": 4.076199559462444, - "c6": 4.024770356896203, - "c7": 3.8798207943418728 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848822, + "c3": 5.08552935737402, + "c4": 4.06842348589921, + "c5": 3.051317614424407, + "c6": 2.034211742949605, + "c7": 1.0171058714748025 }, "rgb": [77, 76, 132] }, @@ -410055,23 +410055,23 @@ "year": 1815, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -3.2129951326876345, - "c2": 19.15857030045484, - "c3": -0.7363347626866172, - "c4": 6.770550838909706, - "c5": 2.043482549848374, - "c6": 3.639904811617157, - "c7": -5.316468728500428 + "points": { + "c1": 28.28430337889089, + "c2": -15.5602627885478, + "c3": 0.8260496827585371, + "c4": -4.259921495677752, + "c5": 28.93615433708944, + "c6": 8.810703342635428, + "c7": -30.51687802207711 }, - "vertexSeeds": { - "c1": 5.745590358025614, - "c2": 5.7687075769257286, - "c3": 5.717414971944805, - "c4": 5.625985851327555, - "c5": 5.695860402248585, - "c6": 5.879998057824445, - "c7": 5.484860003520651 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790568, + "c3": 7.3509015256588075, + "c4": 5.880721220527046, + "c5": 4.410540915395284, + "c6": 2.940360610263523, + "c7": 1.4701803051317615 }, "rgb": [77, 76, 132] }, @@ -410082,23 +410082,23 @@ "year": 1815, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 28.61324233763071, - "c2": -21.204315466046907, - "c3": -6.278153339889794, - "c4": 22.405055488032197, - "c5": -12.619082529536268, - "c6": -2.6642873878065956, - "c7": 29.762302572465103 + "points": { + "c1": 25.326308317379784, + "c2": -13.461296519062138, + "c3": -31.523502510058822, + "c4": -2.154367048178912, + "c5": 12.112593894874024, + "c6": -7.213681635424692, + "c7": 15.243337185301826 }, - "vertexSeeds": { - "c1": 5.989258812539264, - "c2": 6.283330161982525, - "c3": 6.550898439545655, - "c4": 6.190974021897033, - "c5": 6.109844113305504, - "c6": 6.32547247213301, - "c7": 6.521796781867126 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675455, + "c3": 7.859454461396201, + "c4": 6.287563569116965, + "c5": 4.715672676837728, + "c6": 3.143781784558492, + "c7": 1.5718908922792363 }, "rgb": [58, 15, 49] }, @@ -410109,23 +410109,23 @@ "year": 1815, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 24.572038546685658, - "c2": -6.171211916727927, - "c3": -5.384037672241092, - "c4": -8.784825771850606, - "c5": 21.469377989004126, - "c6": -18.786107321582975, - "c7": 11.150476284775412 + "points": { + "c1": 4.38633281053642, + "c2": -28.118366955103276, + "c3": 3.3652916969881694, + "c4": -17.22583237882825, + "c5": -21.17642272751329, + "c6": -15.083946543795022, + "c7": -6.64451560170777 }, - "vertexSeeds": { - "c1": 9.416616513916352, - "c2": 9.167501723735837, - "c3": 8.483485651775831, - "c4": 9.451501686745093, - "c5": 9.831311398629323, - "c6": 9.861711208048128, - "c7": 9.397399302020684 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.1747572815534, + "c3": 11.812297734627826, + "c4": 9.449838187702262, + "c5": 7.0873786407767, + "c6": 4.724919093851126, + "c7": 2.362459546925563 }, "rgb": [86, 146, 138] }, @@ -410136,23 +410136,23 @@ "year": 1815, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -20.134062078775937, - "c2": -12.0788547787213, - "c3": -20.189068253081828, - "c4": -11.563022422689684, - "c5": -21.22920889029862, - "c6": -9.889704695654192, - "c7": 25.819312180362015 + "points": { + "c1": 28.84829149237282, + "c2": -15.118610034581344, + "c3": 26.762573911719638, + "c4": -4.735455807125366, + "c5": -19.724634744089016, + "c6": -10.996188105309386, + "c7": 27.35483394932974 }, - "vertexSeeds": { - "c1": 6.644827789491175, - "c2": 6.521311571701196, - "c3": 6.7414158353361, - "c4": 6.793143451040345, - "c5": 6.4529868548050064, - "c6": 6.82481931838643, - "c7": 6.96891926297742 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.04160887656034, + "c3": 8.368007397133608, + "c4": 6.694405917706894, + "c5": 5.020804438280161, + "c6": 3.347202958853447, + "c7": 1.6736014794267136 }, "rgb": [238, 201, 159] }, @@ -410163,23 +410163,23 @@ "year": 1815, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -5.839803689674625, - "c2": -27.498169370727457, - "c3": -4.170053401645525, - "c4": -6.400193788652594, - "c5": 6.744106331115191, - "c6": 25.128892464656396, - "c7": -13.546770999498328 + "points": { + "c1": 32.69197909892692, + "c2": 29.700863951496586, + "c3": 28.896479546643334, + "c4": 27.13826989948901, + "c5": 12.848431966778811, + "c6": -3.743985325272334, + "c7": -20.644197210751926 }, - "vertexSeeds": { - "c1": 8.842622789099547, - "c2": 8.83490274742985, - "c3": 8.854891850195296, - "c4": 8.819644478858024, - "c5": 8.829963427880653, - "c6": 8.838068846752726, - "c7": 8.852212701614912 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381334, + "c3": 10.564031437817965, + "c4": 8.451225150254317, + "c5": 6.338418862690667, + "c6": 4.225612575127018, + "c7": 2.112806287563649 }, "rgb": [238, 201, 159] }, @@ -410190,23 +410190,23 @@ "year": 1815, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -8.942242672029014, - "c2": 6.636216252538276, - "c3": 12.433257399730707, - "c4": 22.148949345995277, - "c5": -23.279853132651706, - "c6": 14.870374705980282, - "c7": 9.460607889088891 + "points": { + "c1": -12.078607932711158, + "c2": -11.70363005473585, + "c3": -14.435595653559773, + "c4": -15.177489092398648, + "c5": 30.868222191638864, + "c6": -13.743173248108153, + "c7": 26.873420550567694 }, - "vertexSeeds": { - "c1": 12.260486511027839, - "c2": 13.15908062230352, - "c3": 12.939017317274438, - "c4": 13.051937351987416, - "c5": 11.910822627385711, - "c6": 12.498733085118975, - "c7": 12.739612198689109 + "offsets": { + "c1": 22.233009708737864, + "c2": 19.056865464632445, + "c3": 15.880721220527061, + "c4": 12.704576976421642, + "c5": 9.528432732316222, + "c6": 6.352288488210803, + "c7": 3.176144244105419 }, "rgb": [86, 146, 138] }, @@ -410217,23 +410217,23 @@ "year": 1816, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -7.58097497378612, - "c2": -25.67643549731804, - "c3": 29.864213479923002, - "c4": 17.732501140167308, - "c5": 6.3536540832012065, - "c6": -14.96916571114454, - "c7": -6.639661482743733 + "points": { + "c1": -0.7771133861356603, + "c2": -19.66257558814158, + "c3": -0.6247161080697055, + "c4": -9.060011728235587, + "c5": 1.807592633857844, + "c6": 25.68300702301567, + "c7": 15.41504306520968 }, - "vertexSeeds": { - "c1": 10.61472839693092, - "c2": 10.540273916095014, - "c3": 11.001079460525728, - "c4": 11.264002072430074, - "c5": 11.04923113490044, - "c6": 10.784825915714352, - "c7": 10.397047871418208 + "offsets": { + "c1": 18.899676375404532, + "c2": 16.199722607489598, + "c3": 13.499768839574665, + "c4": 10.799815071659731, + "c5": 8.099861303744799, + "c6": 5.399907535829866, + "c7": 2.699953767914933 }, "rgb": [222, 0, 59] }, @@ -410244,23 +410244,23 @@ "year": 1815, "resistanceReported": false, "duration": 6912000, - "curveSeeds": { - "c1": -12.05906463703327, - "c2": 10.152016043678838, - "c3": 16.011900663270268, - "c4": 4.66514737404945, - "c5": 7.9665186122270235, - "c6": -6.199755781290131, - "c7": -14.323062381418001 + "points": { + "c1": -15.339479753714174, + "c2": 10.426148167377931, + "c3": -13.638821881823308, + "c4": -11.49603381463264, + "c5": 3.827228217823979, + "c6": 11.252196267082827, + "c7": -18.563963301316058 }, - "vertexSeeds": { - "c1": 2.8821791621468558, - "c2": 2.777138910847112, - "c3": 2.7491526280390404, - "c4": 2.7608530265537388, - "c5": 3.049161018086051, - "c6": 3.1276453479287603, - "c7": 2.9027670052661656 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.49375866851595, + "c3": 3.7447988904299585, + "c4": 2.9958391123439667, + "c5": 2.246879334257975, + "c6": 1.4979195561719834, + "c7": 0.7489597780859917 }, "rgb": [238, 201, 159] }, @@ -410271,23 +410271,23 @@ "year": 1815, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -8.921884494907559, - "c2": 5.555197173772196, - "c3": 23.219555389695365, - "c4": 20.475801324204475, - "c5": 17.176018448765987, - "c6": 20.431480155463035, - "c7": -15.201199960379675 + "points": { + "c1": 14.646501063439537, + "c2": 25.975450038878968, + "c3": -1.8322822444863398, + "c4": -2.2410070794308226, + "c5": 22.024040179235165, + "c6": 10.783373564151226, + "c7": -22.19257106264461 }, - "vertexSeeds": { - "c1": 8.485943883604174, - "c2": 8.290724534834817, - "c3": 8.622647504757891, - "c4": 8.065008436046861, - "c5": 8.203400369990398, - "c6": 8.547050276201505, - "c7": 8.031862080569402 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019417, + "c3": 10.35598705501618, + "c4": 8.284789644012944, + "c5": 6.213592233009709, + "c6": 4.142394822006472, + "c7": 2.071197411003236 }, "rgb": [222, 0, 59] }, @@ -410298,23 +410298,23 @@ "year": 1815, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -11.886848300768682, - "c2": -12.175593287934053, - "c3": 12.975231411632016, - "c4": -1.7853015609006668, - "c5": -19.951673685407393, - "c6": 2.176708388880023, - "c7": -22.053238066073074 + "points": { + "c1": 12.450855153228346, + "c2": 26.395792585839345, + "c3": 21.59675040351793, + "c4": -0.8652503659113826, + "c5": -8.580042736039697, + "c6": 9.022486897442413, + "c7": -5.085741521952386 }, - "vertexSeeds": { - "c1": 9.905319598026392, - "c2": 9.878621294171106, - "c3": 10.249326838265514, - "c4": 10.273385753108045, - "c5": 10.734544091958186, - "c6": 10.06719741291082, - "c7": 10.483037309165763 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.42302357836338, + "c3": 12.852519648636141, + "c4": 10.282015718908907, + "c5": 7.711511789181709, + "c6": 5.141007859454473, + "c7": 2.5705039297272365 }, "rgb": [86, 146, 138] }, @@ -410325,23 +410325,23 @@ "year": 1815, "resistanceReported": false, "duration": 6393600, - "curveSeeds": { - "c1": -2.015801210514052, - "c2": 5.127282880045069, - "c3": 16.307472664532146, - "c4": 11.60025315334618, - "c5": -8.575260826772436, - "c6": 1.3090119138614256, - "c7": 4.597587666731702 + "points": { + "c1": 0.03196438404809854, + "c2": 7.226310428527835, + "c3": 3.54202198315469, + "c4": -6.6540852491374824, + "c5": 18.18763735900932, + "c6": 7.275193906314794, + "c7": 3.0199370051098597 }, - "vertexSeeds": { - "c1": 2.5617624029262345, - "c2": 2.4059791203500267, - "c3": 2.3677473622848555, - "c4": 2.4140326014994447, - "c5": 2.5834267849958463, - "c6": 2.600333615343465, - "c7": 2.443366682182646 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104063, + "c3": 3.166897827092002, + "c4": 2.5335182616736054, + "c5": 1.9001386962552012, + "c6": 1.2667591308368007, + "c7": 0.6333795654184003 }, "rgb": [238, 201, 159] }, @@ -410352,23 +410352,23 @@ "year": 1816, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": -9.878850813371358, - "c2": 6.976107303927051, - "c3": 31.982110453663033, - "c4": 4.70297610803717, - "c5": -14.89584835639441, - "c6": -6.839549900983499, - "c7": -29.20563412534437 + "points": { + "c1": 2.3780360725153287, + "c2": 34.76392078594046, + "c3": 28.65745654191614, + "c4": -38.84406515799595, + "c5": -0.5206832877250065, + "c6": -47.42492909542999, + "c7": -2.8826235492297343 }, - "vertexSeeds": { - "c1": 9.706991390367223, - "c2": 9.871347978562707, - "c3": 9.010283634730149, - "c4": 9.038915260247743, - "c5": 9.578361428810712, - "c6": 9.729268764350818, - "c7": 9.786363648541009 + "offsets": { + "c1": 16.56957928802589, + "c2": 14.202496532593628, + "c3": 11.835413777161346, + "c4": 9.468331021729083, + "c5": 7.101248266296803, + "c6": 4.734165510864542, + "c7": 2.367082755432281 }, "rgb": [58, 15, 49] }, @@ -410379,23 +410379,23 @@ "year": 1816, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -36.66126938383809, - "c2": 14.230509467173377, - "c3": -30.469917654633704, - "c4": 0.20955694634646704, - "c5": -12.51932008559685, - "c6": -36.678168257556166, - "c7": -1.9377645962763026 + "points": { + "c1": 1.1784288806287364, + "c2": 27.987178785705638, + "c3": 7.746348545306837, + "c4": -35.02854848735089, + "c5": 13.791153332993574, + "c6": -18.13965993566439, + "c7": 26.084462561522386 }, - "vertexSeeds": { - "c1": 9.143919725320245, - "c2": 8.630434005632376, - "c3": 8.60935495790302, - "c4": 8.566715100546526, - "c5": 8.72242485357593, - "c6": 8.990983174539597, - "c7": 9.113764319001707 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.28710124826629, + "c3": 11.072584373555255, + "c4": 8.8580674988442, + "c5": 6.643550624133145, + "c6": 4.42903374942211, + "c7": 2.214516874711055 }, "rgb": [58, 15, 49] }, @@ -410406,23 +410406,23 @@ "year": 1815, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -4.750718786113749, - "c2": -3.722160374760641, - "c3": -0.5336493564015008, - "c4": -17.538148779322366, - "c5": 11.108468604104822, - "c6": 15.941485853972651, - "c7": 12.627013547863541 + "points": { + "c1": 13.552140595192732, + "c2": 14.589737290383212, + "c3": -3.0368397437122923, + "c4": -14.97088939733074, + "c5": -11.697528218466841, + "c6": -17.421035777229605, + "c7": -9.29616419087168 }, - "vertexSeeds": { - "c1": 3.951581855978428, - "c2": 4.3189139683449485, - "c3": 4.338276102030958, - "c4": 4.330759288851439, - "c5": 3.8836335511250826, - "c6": 4.069787145500389, - "c7": 4.317649397511463 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130372, + "c3": 5.247341655108646, + "c4": 4.197873324086914, + "c5": 3.1484049930651894, + "c6": 2.098936662043457, + "c7": 1.0494683310217248 }, "rgb": [222, 0, 59] }, @@ -410433,23 +410433,23 @@ "year": 1815, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -24.17285965534602, - "c2": 8.852078087439239, - "c3": 1.5698941984392931, - "c4": 21.249288658059953, - "c5": 18.49544424991992, - "c6": 22.541793545466092, - "c7": -22.08872054891895 + "points": { + "c1": -3.8368330853073402, + "c2": -1.7162531129332663, + "c3": 26.411326527125063, + "c4": 18.773120030269233, + "c5": 17.07950156598484, + "c6": -7.282592585035424, + "c7": 5.782513917600511 }, - "vertexSeeds": { - "c1": 3.0845010375570725, - "c2": 3.293651962158489, - "c3": 3.2077200268562476, - "c4": 3.152362271977754, - "c5": 3.2864217668267726, - "c6": 3.16855169843287, - "c7": 3.3952434483853073 + "offsets": { + "c1": 5.6957928802589, + "c2": 4.882108183079058, + "c3": 4.068423485899217, + "c4": 3.254738788719375, + "c5": 2.4410540915395256, + "c6": 1.6273693943596839, + "c7": 0.8136846971798419 }, "rgb": [238, 201, 159] }, @@ -410460,23 +410460,23 @@ "year": 1815, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 8.826148044917982, - "c2": -0.8412792741054069, - "c3": -6.915296801158139, - "c4": -0.4755393452577472, - "c5": 24.288175307068354, - "c6": -27.685197817944523, - "c7": -25.207460457839893 + "points": { + "c1": -21.554800450884716, + "c2": 3.04985782209695, + "c3": 25.397370669114157, + "c4": 9.387485712829108, + "c5": 1.2970720319198143, + "c6": -7.472768490312792, + "c7": 28.918336117553277 }, - "vertexSeeds": { - "c1": 4.98469795723001, - "c2": 5.000912260999081, - "c3": 4.99164069521523, - "c4": 5.0773134380125216, - "c5": 4.975716676197166, - "c6": 5.039121558658747, - "c7": 5.050135518829713 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578363, + "c3": 6.079519186315302, + "c4": 4.863615349052242, + "c5": 3.6477115117891814, + "c6": 2.431807674526121, + "c7": 1.2159038372630604 }, "rgb": [222, 0, 59] }, @@ -410487,23 +410487,23 @@ "year": 1816, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 7.348581212732594, - "c2": 12.703538770775804, - "c3": 10.28664011627787, - "c4": -1.1622882663058647, - "c5": -7.318333655432749, - "c6": 21.531640494519937, - "c7": 5.376876546204439 + "points": { + "c1": -3.2437556010718467, + "c2": 16.118076033239248, + "c3": -25.252007563629828, + "c4": -8.108566031158816, + "c5": 24.79706501987281, + "c6": -16.70465563287342, + "c7": -10.610257517107655 }, - "vertexSeeds": { - "c1": 5.827894304733476, - "c2": 5.854023290923749, - "c3": 5.772298127079553, - "c4": 5.7513006693676205, - "c5": 5.634297154912332, - "c6": 5.665023918549924, - "c7": 5.363859802559084 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227455, + "c3": 7.027276930189554, + "c4": 5.6218215441516355, + "c5": 4.216366158113737, + "c6": 2.8109107720758177, + "c7": 1.4054553860378993 }, "rgb": [77, 76, 132] }, @@ -410514,23 +410514,23 @@ "year": 1816, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -7.491778054978095, - "c2": -17.882825820943523, - "c3": 21.902913697606465, - "c4": 7.309328378254513, - "c5": 13.772023545848178, - "c6": 0.9238480108654379, - "c7": 29.157209468493868 + "points": { + "c1": -19.413109439592663, + "c2": 23.711392363561565, + "c3": 23.117613438850867, + "c4": -13.015009520804952, + "c5": -16.648458014544573, + "c6": 25.876730504188103, + "c7": -19.267861353567667 }, - "vertexSeeds": { - "c1": 9.867814426617729, - "c2": 9.926781796964784, - "c3": 9.918182201992275, - "c4": 9.909502412038995, - "c5": 9.876478445817433, - "c6": 9.916840389764614, - "c7": 9.855788768458142 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.257975034674063, + "c3": 11.881645862228385, + "c4": 9.505316689782708, + "c5": 7.128987517337031, + "c6": 4.752658344891354, + "c7": 2.376329172445677 }, "rgb": [238, 201, 159] }, @@ -410541,23 +410541,23 @@ "year": 1816, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -5.9865520149887885, - "c2": 17.863937982253738, - "c3": -16.459034260619916, - "c4": -17.667030024805157, - "c5": 7.148354318822719, - "c6": 19.396221000663147, - "c7": -1.138190123382362 + "points": { + "c1": -10.174592820008236, + "c2": 6.7235277325435305, + "c3": -29.61616479632393, + "c4": 13.797171070916356, + "c5": 16.29334500011481, + "c6": 10.2402925152699, + "c7": 12.212337618598006 }, - "vertexSeeds": { - "c1": 6.843227294545473, - "c2": 6.134523977033192, - "c3": 6.385290184695774, - "c4": 6.596602965789229, - "c5": 6.232310279594273, - "c6": 6.243301814639589, - "c7": 6.567404642865613 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238566, + "c3": 8.183079056865466, + "c4": 6.546463245492368, + "c5": 4.909847434119283, + "c6": 3.2732316227461977, + "c7": 1.6366158113730989 }, "rgb": [77, 76, 132] }, @@ -410568,23 +410568,23 @@ "year": 1816, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 18.311118296094634, - "c2": -19.42003196707265, - "c3": 1.7550086771228948, - "c4": -14.652948625268138, - "c5": 1.8258863222160997, - "c6": -4.0996357974650195, - "c7": 20.824520722352176 + "points": { + "c1": -6.0029577032551416, + "c2": -22.648520428734557, + "c3": 9.773544137182682, + "c4": 20.310144559188338, + "c5": 5.885002821955197, + "c6": 27.46647619511225, + "c7": 13.839666426151723 }, - "vertexSeeds": { - "c1": 8.48425500751054, - "c2": 8.61686615893109, - "c3": 8.942211055575653, - "c4": 8.60083268400181, - "c5": 8.653554150337856, - "c6": 9.265347998919372, - "c7": 8.953355496947989 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.370319001386957, + "c3": 11.14193250115581, + "c4": 8.913546000924645, + "c5": 6.685159500693478, + "c6": 4.4567730004623325, + "c7": 2.2283865002311662 }, "rgb": [238, 201, 159] }, @@ -410595,23 +410595,23 @@ "year": 1816, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 0.39538151369475116, - "c2": -8.800190233331953, - "c3": -20.86408790200598, - "c4": -31.48679899821827, - "c5": -10.457363766803024, - "c6": 4.3611960912973515, - "c7": 14.46914505000943 + "points": { + "c1": -0.49724223107075716, + "c2": 7.946017536470833, + "c3": 3.14461603769265, + "c4": 10.179826005839864, + "c5": -10.345394846161867, + "c6": -34.13544726862099, + "c7": -31.807845502305543 }, - "vertexSeeds": { - "c1": 3.2189895396713415, - "c2": 3.1292745573100347, - "c3": 3.2650401454987397, - "c4": 3.24813723835981, - "c5": 3.2452753768889004, - "c6": 3.2242700153293993, - "c7": 3.2174571338154236 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837728, + "c3": 3.92972723069811, + "c4": 3.1437817845584726, + "c5": 2.357836338418854, + "c6": 1.5718908922792363, + "c7": 0.7859454461396181 }, "rgb": [77, 76, 132] }, @@ -410622,23 +410622,23 @@ "year": 1815, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -1.9125455881046385, - "c2": -1.180388330313285, - "c3": 8.164666074689823, - "c4": -3.250483747585939, - "c5": -12.19361144001179, - "c6": 10.804964159728971, - "c7": -14.081127548646524 + "points": { + "c1": -9.67953166004724, + "c2": -13.413854895731316, + "c3": -20.00669303317712, + "c4": 5.556562973474833, + "c5": -10.273280948582489, + "c6": 19.48231940762642, + "c7": 12.918493544035492 }, - "vertexSeeds": { - "c1": 4.61310240691366, - "c2": 4.5346956878650335, - "c3": 4.581357621579306, - "c4": 4.5325004418904165, - "c5": 4.635044490914361, - "c6": 4.6292154873302485, - "c7": 4.561234514140981 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653253, + "c3": 5.547850208044372, + "c4": 4.43828016643549, + "c5": 3.328710124826645, + "c6": 2.2191400832177637, + "c7": 1.1095700416088818 }, "rgb": [86, 146, 138] }, @@ -410649,23 +410649,23 @@ "year": 1816, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 17.507818670003896, - "c2": 28.810425287624515, - "c3": -15.351109086951745, - "c4": -0.23300536529082194, - "c5": -23.048674409191822, - "c6": 17.102802201225042, - "c7": 18.25081437997822 + "points": { + "c1": -28.771170857173278, + "c2": -1.6653025293587582, + "c3": 9.445103231176994, + "c4": -20.800574447247655, + "c5": -10.417094365238501, + "c6": -17.338702951889125, + "c7": -21.05067871670102 }, - "vertexSeeds": { - "c1": 7.613609535726095, - "c2": 8.031721681048106, - "c3": 8.264835573401237, - "c4": 8.207322888831808, - "c5": 7.903322711475785, - "c6": 8.388139913031457, - "c7": 8.421824351614774 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536756, + "c3": 10.078594544613965, + "c4": 8.062875635691158, + "c5": 6.047156726768369, + "c6": 4.031437817845579, + "c7": 2.0157189089227896 }, "rgb": [222, 0, 59] }, @@ -410676,23 +410676,23 @@ "year": 1816, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -4.459061459882495, - "c2": 27.3745454324307, - "c3": -5.666728164567761, - "c4": 20.5871507711675, - "c5": 23.229588769332075, - "c6": 12.66811106945238, - "c7": 27.94691323476797 + "points": { + "c1": -16.09014120899901, + "c2": -20.828835903199533, + "c3": 7.871294452342845, + "c4": 0.973590252959049, + "c5": -9.078803539336619, + "c6": -25.57661930915623, + "c7": -17.759833329947142 }, - "vertexSeeds": { - "c1": 10.55114554302098, - "c2": 10.484360004658145, - "c3": 11.367247367280338, - "c4": 10.623736342337423, - "c5": 11.052960505150583, - "c6": 10.639797072642434, - "c7": 10.912677282084013 + "offsets": { + "c1": 19.06148867313916, + "c2": 16.338418862690695, + "c3": 13.615349052242275, + "c4": 10.892279241793812, + "c5": 8.169209431345347, + "c6": 5.4461396208968855, + "c7": 2.7230698104484627 }, "rgb": [238, 201, 159] }, @@ -410703,23 +410703,23 @@ "year": 1816, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 6.695870348463288, - "c2": 15.412969943010076, - "c3": -10.700524054856913, - "c4": 22.673551548876432, - "c5": -32.764128185532755, - "c6": -26.24628033987641, - "c7": 10.660101768491415 + "points": { + "c1": -9.04953209521123, + "c2": -16.7686884668225, + "c3": 10.053122395989234, + "c4": -28.427859816205107, + "c5": -3.605744863673106, + "c6": -18.013053775039243, + "c7": 5.100398601166781 }, - "vertexSeeds": { - "c1": 6.802538820475784, - "c2": 7.104796193531886, - "c3": 6.58910722112439, - "c4": 6.786337826007202, - "c5": 7.274405799629229, - "c6": 6.734548895040939, - "c7": 6.881878109787948 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163664, + "c3": 8.714748035136388, + "c4": 6.971798428109115, + "c5": 5.228848821081841, + "c6": 3.485899214054566, + "c7": 1.7429496070272914 }, "rgb": [58, 15, 49] }, @@ -410730,23 +410730,23 @@ "year": 1816, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -0.27217853957255045, - "c2": 21.640240580087678, - "c3": -8.25622565196598, - "c4": 21.616209964756656, - "c5": -1.2318644129951863, - "c6": -7.566274287927726, - "c7": 27.453739394089958 + "points": { + "c1": 7.3496784587896045, + "c2": 24.987449674681336, + "c3": -5.034487348174636, + "c4": -16.878464823916275, + "c5": 10.458356152722068, + "c6": 29.393787373284127, + "c7": 9.582556751674424 }, - "vertexSeeds": { - "c1": 5.649737856442224, - "c2": 5.5402555281291, - "c3": 5.527428405811921, - "c4": 5.718977905175315, - "c5": 5.517037044428241, - "c6": 5.807008732500874, - "c7": 5.91635919942498 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.79334257975034, + "c3": 7.327785483125291, + "c4": 5.8622283865002265, + "c5": 4.3966712898751785, + "c6": 2.9311141932501132, + "c7": 1.4655570966250653 }, "rgb": [58, 15, 49] }, @@ -410757,23 +410757,23 @@ "year": 1815, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -24.425662730596155, - "c2": 17.369430639615572, - "c3": 14.522110946412035, - "c4": 15.633701320118618, - "c5": 24.691790270251637, - "c6": -15.011559322625702, - "c7": 1.8229042503543162 + "points": { + "c1": -9.533177474128202, + "c2": 24.843376822645084, + "c3": 1.1795378050378638, + "c4": -11.72595247601689, + "c5": -19.329820207761834, + "c6": 23.50777934960614, + "c7": -24.63367361879047 }, - "vertexSeeds": { - "c1": 9.020624581539966, - "c2": 8.561563567411682, - "c3": 8.591601174334208, - "c4": 8.65003046990978, - "c5": 8.507694086673638, - "c6": 9.005846124477516, - "c7": 8.43877413120643 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145625, + "c3": 11.003236245954701, + "c4": 8.802588996763758, + "c5": 6.601941747572813, + "c6": 4.401294498381888, + "c7": 2.200647249190944 }, "rgb": [238, 201, 159] }, @@ -410784,23 +410784,23 @@ "year": 1815, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -19.26171128217289, - "c2": 10.54564534003994, - "c3": 3.406277709943538, - "c4": 4.5566403840324945, - "c5": -6.380073459804656, - "c6": -8.054494232141021, - "c7": -7.696900602951519 + "points": { + "c1": 10.041594142714715, + "c2": -19.480986969009614, + "c3": 13.664887627207726, + "c4": 16.140152432492556, + "c5": 20.360144109391022, + "c6": 18.977670282054383, + "c7": -4.164559360947326 }, - "vertexSeeds": { - "c1": 5.136671175286203, - "c2": 5.179241315778932, - "c3": 5.582359722907769, - "c4": 5.03448082880689, - "c5": 5.573597364149633, - "c6": 5.1264163951081985, - "c7": 5.258241490246952 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.7498844197873265, + "c4": 5.399907535829871, + "c5": 4.049930651872401, + "c6": 2.699953767914932, + "c7": 1.3499768839574626 }, "rgb": [86, 146, 138] }, @@ -410811,23 +410811,23 @@ "year": 1815, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -10.52518987864834, - "c2": 3.8789622587768804, - "c3": 17.230990433942694, - "c4": 13.05892251446921, - "c5": 16.283595346813406, - "c6": -0.6006486593139186, - "c7": -1.4762814761938685 + "points": { + "c1": -8.785014074621886, + "c2": -12.590109059004163, + "c3": -0.9866495035888114, + "c4": -17.50324521721157, + "c5": 15.0056617372897, + "c6": 2.391642153493823, + "c7": 0.057146809596378745 }, - "vertexSeeds": { - "c1": 7.440915368566869, - "c2": 7.541030607756194, - "c3": 7.098130100603353, - "c4": 7.093233879081401, - "c5": 7.246699872570008, - "c6": 7.479112662965894, - "c7": 7.018323793621139 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -410838,23 +410838,23 @@ "year": 1816, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 9.106495885444886, - "c2": 27.224597475690125, - "c3": -5.273162475113416, - "c4": -21.466707553005747, - "c5": 16.978689720334565, - "c6": 2.8043160667816345, - "c7": 20.38243823454186 + "points": { + "c1": -0.5047137675135822, + "c2": -19.664179831903112, + "c3": -17.27370728769813, + "c4": -12.407434822467618, + "c5": 27.36185025603062, + "c6": 18.866370009063218, + "c7": -18.591626876120863 }, - "vertexSeeds": { - "c1": 9.501295336787566, - "c2": 9.501295336787566, - "c3": 9.501295336787566, - "c4": 9.501295336787566, - "c5": 9.501295336787566, - "c6": 9.501295336787566, - "c7": 9.501295336787566 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -410865,23 +410865,23 @@ "year": 1816, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": -19.118717837537908, - "c2": 21.50897763586847, - "c3": 5.673769661198307, - "c4": 13.144577960409293, - "c5": 26.801987017867965, - "c6": -25.51210553444332, - "c7": -33.288843130822535 + "points": { + "c1": -16.87893567833282, + "c2": -21.280553826582334, + "c3": -34.07183447575195, + "c4": 17.061970721032303, + "c5": -14.219498447949093, + "c6": -35.793921758939945, + "c7": -17.894804709793558 }, - "vertexSeeds": { - "c1": 2.914527560389652, - "c2": 2.6446607241889595, - "c3": 2.756451961237705, - "c4": 2.92083640152581, - "c5": 2.938359471731595, - "c6": 2.736148446025204, - "c7": 2.627209673145259 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.2995839112344, + "c3": 3.5829865926953297, + "c4": 2.8663892741562664, + "c5": 2.1497919556171965, + "c6": 1.4331946370781332, + "c7": 0.7165973185390629 }, "rgb": [77, 76, 132] }, @@ -410892,23 +410892,23 @@ "year": 1815, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 9.885756851702713, - "c2": 7.4629649182356665, - "c3": -14.528306793037364, - "c4": 6.379534459874705, - "c5": -19.16958260367164, - "c6": 6.635149420116782, - "c7": 0.5794467444136195 + "points": { + "c1": 5.222606998691376, + "c2": -13.538903830452602, + "c3": -5.351296663868336, + "c4": -12.296810662035632, + "c5": 15.863883667255259, + "c6": 4.541828332369896, + "c7": -13.362549033143521 }, - "vertexSeeds": { - "c1": 2.396746511836739, - "c2": 2.420467644222961, - "c3": 2.527629998975686, - "c4": 2.4158259020320916, - "c5": 2.3582711705848975, - "c6": 2.4453849515761954, - "c7": 2.3043193990372273 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.7725381414701835, + "c3": 3.143781784558483, + "c4": 2.515025427646789, + "c5": 1.8862690707350918, + "c6": 1.2575127138233946, + "c7": 0.6287563569116973 }, "rgb": [58, 15, 49] }, @@ -410919,23 +410919,23 @@ "year": 1816, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 9.298086697325154, - "c2": 30.091690476792714, - "c3": 18.111075442097956, - "c4": -9.209565472893544, - "c5": -22.739781330267693, - "c6": 16.98118926038655, - "c7": -18.535093863149314 + "points": { + "c1": 17.992935232496762, + "c2": -33.25750952308303, + "c3": 8.73626168061432, + "c4": -24.26002589459273, + "c5": 33.10640400014937, + "c6": -18.948697250333204, + "c7": 32.29812419714676 }, - "vertexSeeds": { - "c1": 11.79700789811893, - "c2": 11.087184354244283, - "c3": 11.491095433469747, - "c4": 11.370878402608717, - "c5": 11.67858524225153, - "c6": 11.912445896457324, - "c7": 11.66283465623291 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.198335644937572, + "c3": 14.331946370781328, + "c4": 11.465557096625046, + "c5": 8.599167822468806, + "c6": 5.732778548312523, + "c7": 2.866389274156242 }, "rgb": [58, 15, 49] }, @@ -410946,23 +410946,23 @@ "year": 1816, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 14.795137759091453, - "c2": -4.568468323450478, - "c3": 28.272771296741524, - "c4": -14.102837903137576, - "c5": -5.324447907196422, - "c6": -30.62121229630447, - "c7": 29.39232786907189 + "points": { + "c1": 29.80240812315226, + "c2": 1.7526194063556844, + "c3": -5.9783716971541025, + "c4": 26.899270698033817, + "c5": 9.307542957253283, + "c6": -20.861414783231922, + "c7": -23.229431712685606 }, - "vertexSeeds": { - "c1": 13.652834448087509, - "c2": 14.024816402903935, - "c3": 13.842608930410277, - "c4": 13.498519646347876, - "c5": 15.041298208844077, - "c6": 13.565415706272288, - "c7": 15.028331873950414 + "offsets": { + "c1": 25.11326860841424, + "c2": 21.525658807212196, + "c3": 17.938049006010186, + "c4": 14.350439204808144, + "c5": 10.762829403606098, + "c6": 7.175219602404088, + "c7": 3.587609801202044 }, "rgb": [222, 0, 59] }, @@ -410973,23 +410973,23 @@ "year": 1815, "resistanceReported": false, "duration": 7084800, - "curveSeeds": { - "c1": -10.118088873249643, - "c2": 10.648579309000002, - "c3": 3.693871006064697, - "c4": 4.819574329031937, - "c5": -13.986412215980424, - "c6": -5.293205299379883, - "c7": 5.548773836323068 + "points": { + "c1": 6.313766108618669, + "c2": 0.2869581504836347, + "c3": -2.347156572787373, + "c4": -12.590002420032251, + "c5": -19.16660715719946, + "c6": -6.1330422036105094, + "c7": 13.19133077472581 }, - "vertexSeeds": { - "c1": 2.0913489936556364, - "c2": 2.1851565074550376, - "c3": 2.14312300447789, - "c4": 2.130786783884098, - "c5": 2.1570901874053807, - "c6": 2.19543653372013, - "c7": 2.2568070550950092 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070742, + "c3": 2.820157189089229, + "c4": 2.256125751271384, + "c5": 1.692094313453539, + "c6": 1.1280628756356939, + "c7": 0.5640314378178488 }, "rgb": [58, 15, 49] }, @@ -411000,23 +411000,23 @@ "year": 1815, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": 20.184278687967236, - "c2": -7.640921753035991, - "c3": -8.33113795967575, - "c4": -12.420734820230434, - "c5": 13.760972166428267, - "c6": 14.697231436403158, - "c7": 3.2178682486995847 + "points": { + "c1": -6.0782711593951895, + "c2": -15.405420649739016, + "c3": -3.4304662807371855, + "c4": -20.923530513455727, + "c5": 14.832429599046016, + "c6": 10.727208826688297, + "c7": 4.297293523809682 }, - "vertexSeeds": { - "c1": 5.674464196973674, - "c2": 6.293858235131896, - "c3": 5.686601538883518, - "c4": 6.04813658285626, - "c5": 6.259477149960487, - "c6": 6.112157122269267, - "c7": 6.218790979372975 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.04299583911235, + "c3": 7.535829865926951, + "c4": 6.028663892741567, + "c5": 4.521497919556167, + "c6": 3.0143319463707834, + "c7": 1.5071659731853841 }, "rgb": [58, 15, 49] }, @@ -411027,23 +411027,23 @@ "year": 1816, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -5.4601519347947125, - "c2": 0.7453625840433347, - "c3": 20.27845754111202, - "c4": -29.63635797096267, - "c5": 32.64764438717236, - "c6": 11.789937528856846, - "c7": -22.698904875410925 + "points": { + "c1": -19.87560590454987, + "c2": -13.516427397042381, + "c3": -32.210886328430504, + "c4": -19.06348302446967, + "c5": -24.263294151888047, + "c6": -25.265708679763705, + "c7": -30.54638207484288 }, - "vertexSeeds": { - "c1": 6.952702072118878, - "c2": 7.177689063464689, - "c3": 7.416666169686923, - "c4": 7.296003517217307, - "c5": 7.242307379085401, - "c6": 6.995710887592535, - "c7": 7.539032653358294 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -411054,23 +411054,23 @@ "year": 1816, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -27.5741863431495, - "c2": 11.717135701745676, - "c3": -8.88343161204918, - "c4": -1.9714833966934506, - "c5": 23.115301733170547, - "c6": -13.567197592584694, - "c7": 31.735163487108153 + "points": { + "c1": 34.903182890186145, + "c2": 24.817641504666966, + "c3": 34.3379638549239, + "c4": 7.253116716828075, + "c5": 37.02987799010768, + "c6": 27.695589004647303, + "c7": -37.09176634543007 }, - "vertexSeeds": { - "c1": 8.831550913519445, - "c2": 8.808365654562872, - "c3": 8.512709793672549, - "c4": 9.21789511310587, - "c5": 9.100167448939231, - "c6": 9.031121188177751, - "c7": 9.292352673926459 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306522, + "c3": 11.095700416088757, + "c4": 8.876560332871009, + "c5": 6.657420249653261, + "c6": 4.438280166435496, + "c7": 2.219140083217748 }, "rgb": [238, 201, 159] }, @@ -411081,23 +411081,23 @@ "year": 1815, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": -6.917311671566644, - "c2": 17.50056280063528, - "c3": -6.218395554531686, - "c4": 19.786086944251252, - "c5": 10.920676148384558, - "c6": 6.45011653868513, - "c7": -22.233876121400886 + "points": { + "c1": -23.59744591013804, + "c2": -23.341352428128495, + "c3": 14.39005160542203, + "c4": 6.377185599634867, + "c5": -13.55132503795435, + "c6": -4.534651181570727, + "c7": 9.414794733126776 }, - "vertexSeeds": { - "c1": 7.616580310880829, - "c2": 7.616580310880829, - "c3": 7.616580310880829, - "c4": 7.616580310880829, - "c5": 7.616580310880829, - "c6": 7.616580310880829, - "c7": 7.616580310880829 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -411108,23 +411108,23 @@ "year": 1816, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -0.06369511207926593, - "c2": -27.604100971351194, - "c3": -26.062419174779393, - "c4": 40.98930682244844, - "c5": -39.28782994339024, - "c6": 38.59292867990166, - "c7": 20.210670925438336 + "points": { + "c1": 30.095601308463515, + "c2": 32.79573221083663, + "c3": 27.742442469830905, + "c4": -21.025789173516916, + "c5": -38.43089036886844, + "c6": 42.203640193147365, + "c7": 23.923170137762668 }, - "vertexSeeds": { - "c1": 6.17585100343739, - "c2": 6.408541957552614, - "c3": 5.735404936265243, - "c4": 6.1883592852658715, - "c5": 5.649163556023711, - "c6": 5.954553845199471, - "c7": 5.982765381263523 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554786, + "c3": 7.7901063337956575, + "c4": 6.232085067036516, + "c5": 4.674063800277387, + "c6": 3.116042533518258, + "c7": 1.558021266759129 }, "rgb": [238, 201, 159] }, @@ -411135,23 +411135,23 @@ "year": 1816, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 35.469296182774286, - "c2": 23.742754826817517, - "c3": 2.171045139676771, - "c4": -11.635042759957287, - "c5": -27.141586773002928, - "c6": 27.0231228166095, - "c7": -32.22769494331774 + "points": { + "c1": -17.4709021616749, + "c2": 35.08204623950746, + "c3": 17.301174878280513, + "c4": -6.66033543977624, + "c5": -23.104931185027688, + "c6": 9.774412418399315, + "c7": -8.921097976244251 }, - "vertexSeeds": { - "c1": 8.168784798617994, - "c2": 8.17075405365043, - "c3": 8.124037077678162, - "c4": 8.147315748261526, - "c5": 8.167975462867334, - "c6": 8.03838185579098, - "c7": 8.076411113519924 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013884, + "c3": 9.778085991678251, + "c4": 7.822468793342532, + "c5": 5.8668515950068985, + "c6": 3.911234396671266, + "c7": 1.955617198335633 }, "rgb": [86, 146, 138] }, @@ -411162,23 +411162,23 @@ "year": 1816, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -1.0260591078508057, - "c2": 18.59923136477891, - "c3": -27.89401471516062, - "c4": 18.574216448506277, - "c5": -27.83393367369686, - "c6": -1.950934068087065, - "c7": -5.59735440736187 + "points": { + "c1": 16.874618363191168, + "c2": -19.360966358318656, + "c3": -10.27031164673604, + "c4": -6.1106963895467885, + "c5": -28.685065093385, + "c6": -18.962948074819735, + "c7": -34.228903927982984 }, - "vertexSeeds": { - "c1": 5.022005519914188, - "c2": 5.315743491860542, - "c3": 5.151621541378649, - "c4": 5.49164041046757, - "c5": 5.5424335778503675, - "c6": 5.480704177419204, - "c7": 5.111937322109202 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.9611650485436884, + "c3": 6.63430420711974, + "c4": 5.30744336569579, + "c5": 3.9805825242718407, + "c6": 2.6537216828478916, + "c7": 1.326860841423957 }, "rgb": [238, 201, 159] }, @@ -411189,23 +411189,23 @@ "year": 1816, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -2.450134052440326, - "c2": -21.00271361144803, - "c3": 7.41248316324975, - "c4": 13.334544615171087, - "c5": 8.84896342292883, - "c6": 0.8181181606427579, - "c7": -27.698617845744646 + "points": { + "c1": -5.5871434131711055, + "c2": -10.44156354949424, + "c3": 15.85811192892238, + "c4": -11.418757557382737, + "c5": -0.8037706922049459, + "c6": 16.448795709886728, + "c7": 24.762445640091077 }, - "vertexSeeds": { - "c1": 5.903589543526689, - "c2": 5.687955649206931, - "c3": 5.650539685268816, - "c4": 5.525245762943679, - "c5": 5.426748354776522, - "c6": 5.640531159546896, - "c7": 6.164402060985912 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830792, + "c3": 7.374017568192327, + "c4": 5.899214054553854, + "c5": 4.424410540915391, + "c6": 2.949607027276927, + "c7": 1.4748035136384634 }, "rgb": [222, 0, 59] }, @@ -411216,23 +411216,23 @@ "year": 1816, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 20.94757496342553, - "c2": 14.289581273448029, - "c3": 0.5706138663821534, - "c4": -11.649505980685433, - "c5": 9.994170037704006, - "c6": 0.10921269997869487, - "c7": 13.599344767728773 + "points": { + "c1": 5.105815264816545, + "c2": 1.8946259464295103, + "c3": 3.7736996798089315, + "c4": 15.683199383004954, + "c5": -14.023689171708176, + "c6": 13.014261578195132, + "c7": 16.874765834756516 }, - "vertexSeeds": { - "c1": 2.4079977744598815, - "c2": 2.365689843973735, - "c3": 2.431681889387083, - "c4": 2.581905642982061, - "c5": 2.4904866983850065, - "c6": 2.637598920112366, - "c7": 2.4561673364973924 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104063, + "c3": 3.166897827092002, + "c4": 2.5335182616736054, + "c5": 1.9001386962552012, + "c6": 1.2667591308368007, + "c7": 0.6333795654184003 }, "rgb": [222, 0, 59] }, @@ -411243,23 +411243,23 @@ "year": 1816, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 9.162180112185315, - "c2": 2.34747113722538, - "c3": -13.764072974228803, - "c4": 2.112498715406563, - "c5": -14.470966904486394, - "c6": 24.19555555705379, - "c7": -1.4871744793202524 + "points": { + "c1": -2.2370235296140066, + "c2": 20.839751260162185, + "c3": 13.262546579319729, + "c4": -24.698644817707958, + "c5": 21.336706936864648, + "c6": 23.43177300660445, + "c7": 16.255007738733216 }, - "vertexSeeds": { - "c1": 6.93444986931106, - "c2": 6.44995100302977, - "c3": 6.510160732029951, - "c4": 6.798872226660947, - "c5": 6.647580582679083, - "c6": 6.675327816051773, - "c7": 6.731345707891776 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399453, + "c3": 8.275543226999535, + "c4": 6.620434581599636, + "c5": 4.965325936199717, + "c6": 3.310217290799818, + "c7": 1.6551086453999186 }, "rgb": [58, 15, 49] }, @@ -411270,23 +411270,23 @@ "year": 1816, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 2.0202831222268856, - "c2": 1.05896920654612, - "c3": 14.742534040134359, - "c4": 20.730159227614337, - "c5": 17.963958663613468, - "c6": 5.489594860872124, - "c7": -19.68478438780528 + "points": { + "c1": 8.291230812860142, + "c2": 27.41493940674173, + "c3": -14.565421554779043, + "c4": 24.50120205563895, + "c5": 24.00724780533092, + "c6": -6.931800144175295, + "c7": 10.362318376490997 }, - "vertexSeeds": { - "c1": 8.354344825977522, - "c2": 8.563911748645394, - "c3": 9.103471928361792, - "c4": 8.589893730443405, - "c5": 8.717281386927917, - "c6": 8.606285049368825, - "c7": 8.448704889036893 + "offsets": { + "c1": 15.242718446601941, + "c2": 13.065187239944523, + "c3": 10.887656033287106, + "c4": 8.71012482662967, + "c5": 6.532593619972252, + "c6": 4.355062413314835, + "c7": 2.1775312066574175 }, "rgb": [77, 76, 132] }, @@ -411297,23 +411297,23 @@ "year": 1816, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 16.47423061796023, - "c2": -6.8074093599160115, - "c3": 1.9437224431293068, - "c4": -1.864337340898274, - "c5": -8.592999652481588, - "c6": -0.8672255273530745, - "c7": 3.3972915923105838 + "points": { + "c1": -14.624877476351413, + "c2": 22.896919541145756, + "c3": -4.752151970149388, + "c4": 12.073548935917024, + "c5": -23.752974024165653, + "c6": -28.921808020947882, + "c7": -7.634651551969764 }, - "vertexSeeds": { - "c1": 2.975307021837258, - "c2": 2.752579535216445, - "c3": 2.855440197387187, - "c4": 2.639634947575973, - "c5": 2.6638829080830413, - "c6": 2.8581597382892587, - "c7": 2.8675484642368385 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.2995839112344, + "c3": 3.5829865926953297, + "c4": 2.8663892741562664, + "c5": 2.1497919556171965, + "c6": 1.4331946370781332, + "c7": 0.7165973185390629 }, "rgb": [77, 76, 132] }, @@ -411324,23 +411324,23 @@ "year": 1816, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 36.18860954516928, - "c2": 5.617444285947791, - "c3": 19.847781751126348, - "c4": 9.640107631393526, - "c5": -8.915210409380407, - "c6": -22.502859435537864, - "c7": 4.48760890281536 + "points": { + "c1": -4.90145185588495, + "c2": 35.97274183347262, + "c3": -1.2259464607014365, + "c4": -19.362438643966776, + "c5": 19.68772988412563, + "c6": -17.084452569543448, + "c7": 22.59785557018038 }, - "vertexSeeds": { - "c1": 0.8611541838746328, - "c2": 0.8623164363510301, - "c3": 0.9114098188331166, - "c4": 0.8630355540921171, - "c5": 0.8450253755566302, - "c6": 0.899467942975258, - "c7": 0.8367791790701271 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.3314840499306522, + "c3": 1.1095700416088772, + "c4": 0.8876560332871, + "c5": 0.665742024965325, + "c6": 0.44382801664355, + "c7": 0.221914008321775 }, "rgb": [238, 201, 159] }, @@ -411351,23 +411351,23 @@ "year": 1816, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -1.9880798661810886, - "c2": -22.697968598500474, - "c3": 25.24450036547791, - "c4": 16.45636307558903, - "c5": -23.94449390092754, - "c6": 0.489889242068692, - "c7": 16.02268670626274 + "points": { + "c1": 12.522396981614044, + "c2": 28.743075471229744, + "c3": 5.822642927892566, + "c4": 12.334022277877878, + "c5": 18.897568616335512, + "c6": 10.22935441815487, + "c7": -17.740932773563515 }, - "vertexSeeds": { - "c1": 8.679096345304044, - "c2": 8.655578635703455, - "c3": 8.975695949425806, - "c4": 8.991054222566598, - "c5": 8.681888396124677, - "c6": 8.520094263162687, - "c7": 8.671659014218134 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105416, + "c3": 10.980120203421187, + "c4": 8.784096162736937, + "c5": 6.588072122052708, + "c6": 4.39204808136848, + "c7": 2.196024040684251 }, "rgb": [238, 201, 159] }, @@ -411378,23 +411378,23 @@ "year": 1816, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -26.275636466968784, - "c2": -28.466803039265564, - "c3": -33.79499071664495, - "c4": -14.569047164897547, - "c5": -9.07472268071319, - "c6": -5.743051520698618, - "c7": -1.2605797225198998 + "points": { + "c1": 2.36901247996348, + "c2": 2.435101424460491, + "c3": -35.65326009404906, + "c4": 8.432184221432948, + "c5": -30.535308269552644, + "c6": -34.60506947286027, + "c7": -28.13568976217057 }, - "vertexSeeds": { - "c1": 10.001995815036338, - "c2": 9.66853772033871, - "c3": 10.320156352987494, - "c4": 9.920241376410468, - "c5": 10.033400468535177, - "c6": 10.171564187312299, - "c7": 10.030079195158894 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679605, + "c3": 12.45954692556633, + "c4": 9.967637540453056, + "c5": 7.47572815533978, + "c6": 4.983818770226528, + "c7": 2.4919093851132748 }, "rgb": [86, 146, 138] }, @@ -411405,23 +411405,23 @@ "year": 1815, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": -1.5985523569125704, - "c2": -16.479882942965972, - "c3": -1.6018417878695956, - "c4": -14.99880707794373, - "c5": 2.864271680257467, - "c6": 8.399265009549541, - "c7": -14.177736662669817 + "points": { + "c1": -18.107814827270044, + "c2": 6.493867683574511, + "c3": -3.301986494925014, + "c4": -4.044835552598553, + "c5": -3.997651892661512, + "c6": 19.76310259401763, + "c7": 3.4972270274932207 }, - "vertexSeeds": { - "c1": 3.0436598996041173, - "c2": 2.7975785578617787, - "c3": 2.897846395687955, - "c4": 3.1122191798933723, - "c5": 3.0211970244782234, - "c6": 2.8583815820410647, - "c7": 2.988392871076407 + "offsets": { + "c1": 5.307443365695793, + "c2": 4.549237170596392, + "c3": 3.791030975496991, + "c4": 3.032824780397597, + "c5": 2.274618585298196, + "c6": 1.5164123901987947, + "c7": 0.7582061950994011 }, "rgb": [77, 76, 132] }, @@ -411432,23 +411432,23 @@ "year": 1816, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -11.143775953101676, - "c2": -1.8431455929951746, - "c3": 5.582293220100219, - "c4": 11.182877795854651, - "c5": 11.6813705163419, - "c6": -1.5143614855692142, - "c7": -14.458153367751613 + "points": { + "c1": -21.05105775753433, + "c2": 3.1082271565320454, + "c3": -23.07940964187114, + "c4": -14.590210843749203, + "c5": -1.392536586608447, + "c6": 5.619502630090537, + "c7": 23.038061466617336 }, - "vertexSeeds": { - "c1": 15.877859997578016, - "c2": 14.97058058458, - "c3": 15.206141089474732, - "c4": 15.499193561664402, - "c5": 16.509656341904613, - "c6": 16.256950545806415, - "c7": 15.97675691506546 + "offsets": { + "c1": 27.89644012944984, + "c2": 23.9112343966713, + "c3": 19.926028663892726, + "c4": 15.94082293111419, + "c5": 11.95561719833565, + "c6": 7.970411465557078, + "c7": 3.985205732778539 }, "rgb": [77, 76, 132] }, @@ -411459,23 +411459,23 @@ "year": 1816, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": 5.1836584411157105, - "c2": 11.010854643458607, - "c3": -10.255067361849274, - "c4": 5.133904222048116, - "c5": -13.746138792495676, - "c6": -19.75696201779919, - "c7": 5.431473335807272 + "points": { + "c1": -6.4672341625928915, + "c2": -13.619158936106695, + "c3": -11.522095934213963, + "c4": 17.704685945695452, + "c5": 16.026024443779036, + "c6": 0.721726105659144, + "c7": -18.203144316804323 }, - "vertexSeeds": { - "c1": 1.7511766922076415, - "c2": 1.7963029634771297, - "c3": 1.8488036914990937, - "c4": 1.7454790510761302, - "c5": 1.839961692884921, - "c6": 1.71568551265164, - "c7": 1.7607795905794195 + "offsets": { + "c1": 3.2686084142394822, + "c2": 2.8016643550624116, + "c3": 2.334720295885345, + "c4": 1.8677762367082744, + "c5": 1.4008321775312078, + "c6": 0.9338881183541372, + "c7": 0.46694405917706666 }, "rgb": [222, 0, 59] }, @@ -411486,23 +411486,23 @@ "year": 1816, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -24.653155581392454, - "c2": 26.066721909081046, - "c3": 0.06557208368028, - "c4": -1.5219988299693696, - "c5": 28.578251771957888, - "c6": -22.457226122599913, - "c7": -14.091479899862653 + "points": { + "c1": -18.104648380291543, + "c2": 7.209377656500692, + "c3": 22.028790467516174, + "c4": -22.529045617833916, + "c5": -29.037105510798966, + "c6": 26.368605697313768, + "c7": -8.411033437659608 }, - "vertexSeeds": { - "c1": 9.602076128024667, - "c2": 9.35193550993041, - "c3": 9.223976580996744, - "c4": 9.560184123612347, - "c5": 9.527920705416218, - "c6": 9.421381699951407, - "c7": 9.584632457508858 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.75866851595007, + "c3": 11.465557096625059, + "c4": 9.172445677300047, + "c5": 6.879334257975035, + "c6": 4.5862228386500234, + "c7": 2.2931114193250117 }, "rgb": [77, 76, 132] }, @@ -411513,23 +411513,23 @@ "year": 1816, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 8.122995528788685, - "c2": 32.873577517420046, - "c3": 15.719004624608523, - "c4": -24.610194186693533, - "c5": -16.715741002517014, - "c6": -24.949452268074644, - "c7": 25.73799141637766 + "points": { + "c1": -31.44485488470222, + "c2": -7.121511059855017, + "c3": 29.25277128855852, + "c4": -24.329389616430852, + "c5": 30.38946069546421, + "c6": 6.681500946949107, + "c7": 22.422335007167 }, - "vertexSeeds": { - "c1": 5.025925197550885, - "c2": 5.611388599314566, - "c3": 4.880768167058345, - "c4": 5.1852730656481345, - "c5": 5.060171817419585, - "c6": 5.4540125352669735, - "c7": 5.735516246175698 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026356, + "c3": 6.911696717521956, + "c4": 5.529357374017567, + "c5": 4.147018030513178, + "c6": 2.764678687008789, + "c7": 1.382339343504389 }, "rgb": [222, 0, 59] }, @@ -411540,23 +411540,23 @@ "year": 1816, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 15.112692939476162, - "c2": 29.434540054672695, - "c3": -32.02654251614689, - "c4": -30.05262050673494, - "c5": -22.52518694053375, - "c6": 31.60952379443799, - "c7": -20.076180047180927 + "points": { + "c1": 2.869095566485008, + "c2": -9.987139411691043, + "c3": 19.30444476915838, + "c4": 4.63720456335308, + "c5": -0.3190192249865049, + "c6": 18.554327509298517, + "c7": -30.863060774986096 }, - "vertexSeeds": { - "c1": 6.933858534391916, - "c2": 6.7012624771908875, - "c3": 6.476810225205627, - "c4": 6.392078811503522, - "c5": 6.287490323434313, - "c6": 6.887930307193562, - "c7": 6.61259826003248 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721214, + "c3": 8.460471567267685, + "c4": 6.768377253814143, + "c5": 5.076282940360614, + "c6": 3.3841886269070716, + "c7": 1.6920943134535282 }, "rgb": [222, 0, 59] }, @@ -411567,23 +411567,23 @@ "year": 1816, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -3.882441449674154, - "c2": 7.879409133785508, - "c3": -3.3025779531086386, - "c4": 19.32097669227918, - "c5": -6.94197872430118, - "c6": 25.461983587972256, - "c7": -6.434311694684965 + "points": { + "c1": 13.178921771610383, + "c2": -26.901063326017727, + "c3": -7.045397377465566, + "c4": -24.98501583450629, + "c5": -28.90394336729571, + "c6": -23.285444091459823, + "c7": -16.60108544615654 }, - "vertexSeeds": { - "c1": 10.279606077410293, - "c2": 10.570138043040293, - "c3": 9.840918419817713, - "c4": 10.624144272337407, - "c5": 11.571533126534916, - "c6": 9.877897397001757, - "c7": 10.182791745600213 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133145, + "c3": 13.869625520110949, + "c4": 11.095700416088755, + "c5": 8.32177531206656, + "c6": 5.547850208044388, + "c7": 2.773925104022194 }, "rgb": [86, 146, 138] }, @@ -411594,23 +411594,23 @@ "year": 1816, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 28.105100323763402, - "c2": -23.708714229055854, - "c3": -11.648314402470373, - "c4": -14.691869476433073, - "c5": 25.403593712467845, - "c6": -18.439147314265533, - "c7": 19.35782696751523 + "points": { + "c1": -14.684275273968392, + "c2": -7.361029304840752, + "c3": 8.606210262302376, + "c4": 5.551352503043098, + "c5": 27.706856114693615, + "c6": 2.546036331698069, + "c7": -19.553075772852708 }, - "vertexSeeds": { - "c1": 0.3183712650074386, - "c2": 0.3494957588579647, - "c3": 0.34041770406388383, - "c4": 0.32096005394541177, - "c5": 0.3205357009312222, - "c6": 0.34670683805022057, - "c7": 0.33014460090703035 + "offsets": { + "c1": 0.6148867313915858, + "c2": 0.5270457697642168, + "c3": 0.43920480813684687, + "c4": 0.35136384650947794, + "c5": 0.26352288488210784, + "c6": 0.17568192325473897, + "c7": 0.08784096162737003 }, "rgb": [58, 15, 49] }, @@ -411621,23 +411621,23 @@ "year": 1816, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 11.72202917925803, - "c2": -27.166770795705506, - "c3": 1.6344770528071209, - "c4": -29.40600985895476, - "c5": 11.361461023824624, - "c6": -3.8409958134884334, - "c7": 32.673306629840226 + "points": { + "c1": 26.0879724397101, + "c2": 22.828106052769236, + "c3": -18.845267883319462, + "c4": 25.049509525405824, + "c5": -36.63225791577113, + "c6": -3.6644690961611346, + "c7": 29.447992580676598 }, - "vertexSeeds": { - "c1": 4.427137399200902, - "c2": 4.483749585567257, - "c3": 4.094427408583433, - "c4": 4.147387908971108, - "c5": 4.24285149309593, - "c6": 4.18664022955854, - "c7": 4.521362954811808 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843278, + "c4": 4.3273231622746176, + "c5": 3.245492371705965, + "c6": 2.1636615811373128, + "c7": 1.0818307905686602 }, "rgb": [222, 0, 59] }, @@ -411648,23 +411648,23 @@ "year": 1816, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -12.615012137077262, - "c2": 13.915997168977587, - "c3": 3.754487681655192, - "c4": -14.199532855756619, - "c5": 21.700580271650313, - "c6": 4.434961590553797, - "c7": 0.5264908462060767 + "points": { + "c1": -10.452307677805221, + "c2": 21.775732439739276, + "c3": -19.892438477024363, + "c4": -11.958685544720652, + "c5": -2.5516692188811234, + "c6": 2.840580196054109, + "c7": 7.919044383004977 }, - "vertexSeeds": { - "c1": 0.6497161574024577, - "c2": 0.6325605719096277, - "c3": 0.6299413846840427, - "c4": 0.644054622270806, - "c5": 0.6381492778426467, - "c6": 0.6328450908692561, - "c7": 0.6267848518930703 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.9708737864077677, + "c3": 0.8090614886731403, + "c4": 0.6472491909385131, + "c5": 0.48543689320388583, + "c6": 0.32362459546925454, + "c7": 0.16181229773462727 }, "rgb": [86, 146, 138] }, @@ -411675,23 +411675,23 @@ "year": 1816, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 11.901150459206782, - "c2": -0.12525572851886935, - "c3": -2.5370476098530688, - "c4": 17.025899513360912, - "c5": 18.64905302468702, - "c6": 2.169806753809141, - "c7": -11.740332669216812 + "points": { + "c1": 4.013171378887893, + "c2": 4.78861932653205, + "c3": -6.5693012576618734, + "c4": 22.726523669186903, + "c5": -25.81241653143991, + "c6": 0.04424448574980744, + "c7": 26.829036330518868 }, - "vertexSeeds": { - "c1": 5.056660553550313, - "c2": 4.955433071418687, - "c3": 5.080856691855017, - "c4": 4.873841005395723, - "c5": 5.249199869493208, - "c6": 5.009056636140041, - "c7": 5.007830207863072 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101256, + "c3": 6.380027739251037, + "c4": 5.104022191400838, + "c5": 3.828016643550619, + "c6": 2.552011095700419, + "c7": 1.2760055478502095 }, "rgb": [86, 146, 138] }, @@ -411702,23 +411702,23 @@ "year": 1816, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 33.00263452578508, - "c2": 15.930047636424092, - "c3": -2.8674285600143463, - "c4": 31.322788512043473, - "c5": 12.539642301121425, - "c6": -14.385359870034506, - "c7": -19.284937444416308 + "points": { + "c1": 13.731882119806805, + "c2": -34.62805960067654, + "c3": 36.31511904261295, + "c4": 26.266422688662146, + "c5": -27.85562920172483, + "c6": -19.617057271412826, + "c7": -23.46083549487578 }, - "vertexSeeds": { - "c1": 5.672855847773305, - "c2": 5.459357228008228, - "c3": 5.711950883002458, - "c4": 5.384472590044947, - "c5": 5.518318060227789, - "c6": 5.2749601501564864, - "c7": 5.323219177864228 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.26629680998613, + "c3": 6.888580674988442, + "c4": 5.510864539990753, + "c5": 4.133148404993065, + "c6": 2.7554322699953766, + "c7": 1.3777161349976883 }, "rgb": [222, 0, 59] }, @@ -411729,23 +411729,23 @@ "year": 1816, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": -4.20566299137246, - "c2": -15.985502036972829, - "c3": -14.84848912542775, - "c4": 0.3825489482685427, - "c5": 17.22593175960581, - "c6": 5.03115718990783, - "c7": 8.367782285448147 + "points": { + "c1": 11.446144378732892, + "c2": 13.425407034888938, + "c3": 6.380031016763262, + "c4": -11.64335175406141, + "c5": -20.887330398949242, + "c6": 0.3942802629265003, + "c7": -11.61007076380043 }, - "vertexSeeds": { - "c1": 4.494121829819463, - "c2": 4.671784447900936, - "c3": 4.651104340408641, - "c4": 4.755412707843337, - "c5": 4.3604921618692645, - "c6": 4.3022361479118, - "c7": 4.550291324456227 + "offsets": { + "c1": 8.025889967637541, + "c2": 6.879334257975039, + "c3": 5.732778548312528, + "c4": 4.586222838650026, + "c5": 3.439667128987516, + "c6": 2.293111419325013, + "c7": 1.1465557096625028 }, "rgb": [77, 76, 132] }, @@ -411756,23 +411756,23 @@ "year": 1816, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 28.712452163058728, - "c2": 25.469685917581558, - "c3": 7.068364916515151, - "c4": -22.89852695339109, - "c5": 17.039440170442013, - "c6": -0.09805687759838122, - "c7": 11.658582618402953 + "points": { + "c1": -34.56409633362624, + "c2": 35.99755013825714, + "c3": 18.49493169669529, + "c4": 25.283834375818017, + "c5": -19.788991027059307, + "c6": -14.015782329133767, + "c7": 13.825424808713208 }, - "vertexSeeds": { - "c1": 4.8090716097246675, - "c2": 4.440725084054419, - "c3": 4.442245634655527, - "c4": 4.654003252284477, - "c5": 4.666798933192434, - "c6": 4.5432134517349, - "c7": 4.526316698198335 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176143, + "c3": 5.848358760980118, + "c4": 4.678687008784101, + "c5": 3.5090152565880754, + "c6": 2.3393435043920503, + "c7": 1.1696717521960251 }, "rgb": [222, 0, 59] }, @@ -411783,23 +411783,23 @@ "year": 1816, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -14.439809331004792, - "c2": -15.160868191903662, - "c3": -21.15918421047926, - "c4": 10.876628748530042, - "c5": -1.5937967977405272, - "c6": -16.71471560947029, - "c7": -10.080119626871952 + "points": { + "c1": 1.077811086538155, + "c2": -12.86620669768753, + "c3": -16.598696135535555, + "c4": -3.051463598254333, + "c5": 8.417791850004303, + "c6": -2.9963534567317787, + "c7": 24.749593209728285 }, - "vertexSeeds": { - "c1": 8.863944492585924, - "c2": 8.97971935371366, - "c3": 8.596705324824624, - "c4": 8.600560512202636, - "c5": 8.441993331675608, - "c6": 8.462380380654427, - "c7": 8.533152024797287 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743413, + "c3": 10.772075820619511, + "c4": 8.617660656495609, + "c5": 6.463245492371707, + "c6": 4.308830328247804, + "c7": 2.154415164123902 }, "rgb": [238, 201, 159] }, @@ -411810,23 +411810,23 @@ "year": 1816, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": -9.353724143916724, - "c2": -18.82614583836509, - "c3": -12.333108785612525, - "c4": -10.561193173293136, - "c5": 11.831060588360423, - "c6": -1.1130219530721064, - "c7": 13.979979854854264 + "points": { + "c1": -14.96889053955551, + "c2": 12.260542949526496, + "c3": -9.584390615168749, + "c4": 2.9298993436638945, + "c5": -2.376351451228466, + "c6": -0.27964944448856954, + "c7": -22.57816625604329 }, - "vertexSeeds": { - "c1": 1.0675910198517795, - "c2": 1.0449944200449748, - "c3": 0.9890540190092506, - "c4": 0.9747025071189952, - "c5": 1.045283493577896, - "c6": 1.0084468155366233, - "c7": 1.033423399337693 + "offsets": { + "c1": 1.8122977346278317, + "c2": 1.5533980582524272, + "c3": 1.2944983818770226, + "c4": 1.035598705501618, + "c5": 0.7766990291262136, + "c6": 0.517799352750809, + "c7": 0.2588996763754045 }, "rgb": [58, 15, 49] }, @@ -411837,23 +411837,23 @@ "year": 1816, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -1.6169436814487348, - "c2": -12.767879206964771, - "c3": -5.712639376825383, - "c4": -12.047980730186353, - "c5": 8.663077544695827, - "c6": -17.144404484663788, - "c7": 12.644268353743914 + "points": { + "c1": -20.092921521301143, + "c2": -1.7513211216176785, + "c3": 18.896913156154515, + "c4": 26.121196757537486, + "c5": 18.51109236299406, + "c6": 28.826071218568398, + "c7": -25.354500963422446 }, - "vertexSeeds": { - "c1": 10.571032943414863, - "c2": 9.62688578548888, - "c3": 9.669366331584232, - "c4": 10.234561933162286, - "c5": 10.48224819889836, - "c6": 9.92419095726277, - "c7": 10.190757645304114 + "offsets": { + "c1": 17.89644012944984, + "c2": 15.339805825242724, + "c3": 12.78317152103561, + "c4": 10.226537216828495, + "c5": 7.669902912621345, + "c6": 5.113268608414231, + "c7": 2.5566343042071153 }, "rgb": [222, 0, 59] }, @@ -411864,23 +411864,23 @@ "year": 1816, "resistanceReported": false, "duration": 6912000, - "curveSeeds": { - "c1": -3.653826848716122, - "c2": -11.516996030670711, - "c3": -6.684484169901557, - "c4": -8.591161773947029, - "c5": 16.108796422246094, - "c6": -5.907613287288102, - "c7": 7.574984790296369 + "points": { + "c1": 12.310592772748318, + "c2": -8.25347749523047, + "c3": 6.096259043563403, + "c4": -11.253343100796362, + "c5": 6.144049033208201, + "c6": -1.329612641295661, + "c7": 2.148408955738244 }, - "vertexSeeds": { - "c1": 2.1986741138074875, - "c2": 2.164778043529747, - "c3": 2.2094940555427893, - "c4": 2.1961447980467854, - "c5": 2.2119906725895864, - "c6": 2.180197153215812, - "c7": 2.194540376965583 + "offsets": { + "c1": 3.7216828478964405, + "c2": 3.190013869625518, + "c3": 2.6583448913545955, + "c4": 2.1266759130836905, + "c5": 1.5950069348127678, + "c6": 1.0633379565418453, + "c7": 0.5316689782709226 }, "rgb": [222, 0, 59] }, @@ -411891,23 +411891,23 @@ "year": 1816, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": -15.986554790997571, - "c2": 9.490116683012914, - "c3": -8.63259763095575, - "c4": -7.688222422295372, - "c5": -8.932276334909679, - "c6": 4.5837917402608, - "c7": 14.312008748988543 + "points": { + "c1": 13.02281644935562, + "c2": -0.7825687029072164, + "c3": -16.868749960239047, + "c4": -9.090294838786265, + "c5": -1.8228597358185823, + "c6": 0.8607257548689873, + "c7": -6.022856499231665 }, - "vertexSeeds": { - "c1": 5.898458100997701, - "c2": 5.453143504509475, - "c3": 5.598759661975338, - "c4": 5.985003478999823, - "c5": 5.706964971184369, - "c6": 5.651263899580245, - "c7": 5.911703036196257 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710124, + "c3": 7.304669440591771, + "c4": 5.843735552473416, + "c5": 4.382801664355062, + "c6": 2.921867776236708, + "c7": 1.460933888118354 }, "rgb": [58, 15, 49] }, @@ -411918,23 +411918,23 @@ "year": 1816, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 9.511500856055456, - "c2": -2.636338362988287, - "c3": -20.11953969963911, - "c4": -1.8442550103480144, - "c5": -7.17322284375734, - "c6": -14.341424609519219, - "c7": 27.586636749116693 + "points": { + "c1": -26.7457373689326, + "c2": -6.949670604268313, + "c3": 27.81900732900123, + "c4": -15.507213953388927, + "c5": 2.207772242569135, + "c6": 1.0605663679313153, + "c7": 22.039503839859968 }, - "vertexSeeds": { - "c1": 9.546851693634839, - "c2": 9.535886261629338, - "c3": 9.542087221380243, - "c4": 9.247277789207239, - "c5": 9.472811857922581, - "c6": 9.596460008303097, - "c7": 8.969697830660046 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070732, + "c3": 11.534905224225607, + "c4": 9.227924179380501, + "c5": 6.920943134535376, + "c6": 4.613962089690251, + "c7": 2.3069810448451253 }, "rgb": [77, 76, 132] }, @@ -411945,23 +411945,23 @@ "year": 1816, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -26.101612045304147, - "c2": -19.56688252988351, - "c3": -22.053102924431656, - "c4": 9.0851759091771, - "c5": 16.323705172277368, - "c6": -2.9791721109434164, - "c7": 3.970950773302995 + "points": { + "c1": 13.754062953142505, + "c2": -25.258833630980973, + "c3": -3.4042912784278094, + "c4": -25.25045451787444, + "c5": -13.167850823163448, + "c6": -28.5425337410671, + "c7": 4.7686718234218795 }, - "vertexSeeds": { - "c1": 11.251936977034006, - "c2": 11.573035324476692, - "c3": 11.70834664560882, - "c4": 11.449028814161798, - "c5": 11.149461318788386, - "c6": 10.861714128918326, - "c7": 11.192858380069378 + "offsets": { + "c1": 19.838187702265373, + "c2": 17.004160887656017, + "c3": 14.1701340730467, + "c4": 11.336107258437345, + "c5": 8.502080443828028, + "c6": 5.668053629218672, + "c7": 2.8340268146093166 }, "rgb": [58, 15, 49] }, @@ -411972,23 +411972,23 @@ "year": 1816, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 1.6628955189446444, - "c2": -6.958633368989275, - "c3": 2.7450282834610498, - "c4": -12.698539654318745, - "c5": -13.93391837613153, - "c6": -17.929532906615037, - "c7": 15.644366385341613 + "points": { + "c1": 10.136016903393049, + "c2": -3.6264972422866393, + "c3": -16.437205134474095, + "c4": 24.1845112609631, + "c5": 15.127204291582636, + "c6": -4.633926069052073, + "c7": 21.284175293351034 }, - "vertexSeeds": { - "c1": 8.23879807091644, - "c2": 7.527846215107645, - "c3": 8.039069483809433, - "c4": 7.679242846647954, - "c5": 7.634187783186997, - "c6": 8.008354423104647, - "c7": 7.478560629214569 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496534, + "c3": 10.05547850208045, + "c4": 8.04438280166436, + "c5": 6.03328710124826, + "c6": 4.022191400832173, + "c7": 2.0110957004160865 }, "rgb": [77, 76, 132] }, @@ -411999,23 +411999,23 @@ "year": 1816, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -14.82294860694046, - "c2": -2.172268983573421, - "c3": -25.409011983644156, - "c4": -21.200501578160384, - "c5": 1.1449612850561621, - "c6": -25.743058555595567, - "c7": 9.19673950436762 + "points": { + "c1": 25.123051914113695, + "c2": 21.1786327572417, + "c3": -5.334799132571803, + "c4": -9.974578075767376, + "c5": 9.726524884044316, + "c6": 31.651527675837464, + "c7": -5.992197077357453 }, - "vertexSeeds": { - "c1": 11.0592725767715, - "c2": 10.596391949599525, - "c3": 11.18477121879654, - "c4": 10.72011432062843, - "c5": 11.431418591827953, - "c6": 10.697716177616892, - "c7": 11.174823334762026 + "offsets": { + "c1": 19.223300970873787, + "c2": 16.477115117891817, + "c3": 13.730929264909848, + "c4": 10.984743411927878, + "c5": 8.238557558945908, + "c6": 5.492371705963939, + "c7": 2.7461858529819696 }, "rgb": [86, 146, 138] }, @@ -412026,23 +412026,23 @@ "year": 1816, "resistanceReported": false, "duration": 3542400, - "curveSeeds": { - "c1": -0.21963371529546372, - "c2": 7.676360275017837, - "c3": 9.36035582064803, - "c4": -7.409330836265678, - "c5": 0.11055809978397768, - "c6": 5.547264887702349, - "c7": 3.2595190801937246 + "points": { + "c1": -6.418919177188652, + "c2": 4.090731362641504, + "c3": 11.007712408473603, + "c4": 7.284062573986274, + "c5": -1.8049376200104081, + "c6": 0.7059780168747505, + "c7": 12.659109470623198 }, - "vertexSeeds": { - "c1": 5.334595033406423, - "c2": 5.131406242172785, - "c3": 4.923454497938993, - "c4": 4.789171454302978, - "c5": 5.127656088601491, - "c6": 4.8648219731076985, - "c7": 5.049597673294177 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342579, + "c3": 6.51872399445215, + "c4": 5.214979195561719, + "c5": 3.9112343966712895, + "c6": 2.6074895977808596, + "c7": 1.3037447988904298 }, "rgb": [86, 146, 138] }, @@ -412053,23 +412053,23 @@ "year": 1816, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 0.0727794718379613, - "c2": 5.56140214844773, - "c3": -1.681394055904132, - "c4": 18.15455782416331, - "c5": -17.510639436489715, - "c6": 13.373783238061105, - "c7": 9.625337850393084 + "points": { + "c1": 22.91307385068267, + "c2": -2.8011232463188236, + "c3": 1.38535212517138, + "c4": -19.19669029238638, + "c5": -18.657494057528176, + "c6": -22.665384782719975, + "c7": -29.96450861107206 }, - "vertexSeeds": { - "c1": 4.263708717418199, - "c2": 4.2290622601452235, - "c3": 4.0736447036601, - "c4": 4.366924277845752, - "c5": 4.314743840544127, - "c6": 4.410610062638709, - "c7": 4.362681312931704 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371709, + "c3": 5.386037910309761, + "c4": 4.3088303282478035, + "c5": 3.2316227461858547, + "c6": 2.154415164123906, + "c7": 1.0772075820619484 }, "rgb": [238, 201, 159] }, @@ -412080,23 +412080,23 @@ "year": 1816, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 21.069180395775035, - "c2": -20.560084009535995, - "c3": 0.9230363726913282, - "c4": 11.401019910072357, - "c5": 8.820723868711767, - "c6": -14.426331445913494, - "c7": -13.901858254529877 + "points": { + "c1": -5.895465485202646, + "c2": 27.210976391685037, + "c3": -4.2845547205375105, + "c4": 20.003736678375937, + "c5": -16.224555544329853, + "c6": 17.682286520091104, + "c7": -19.303148753211765 }, - "vertexSeeds": { - "c1": 6.8652492313314255, - "c2": 7.7052818135360726, - "c3": 7.3891430304957595, - "c4": 7.057436212116827, - "c5": 7.5177531271602165, - "c6": 6.880562368661987, - "c7": 7.969044862312012 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.67822468793343, + "c3": 9.731853906611184, + "c4": 7.785483125288948, + "c5": 5.839112343966715, + "c6": 3.892741562644469, + "c7": 1.9463707813222344 }, "rgb": [86, 146, 138] }, @@ -412107,23 +412107,23 @@ "year": 1816, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -20.73633229689706, - "c2": -20.12422549580675, - "c3": -21.704794033031373, - "c4": -2.3418497504655207, - "c5": -25.424563117236165, - "c6": 13.635600873933754, - "c7": -12.729254037044502 + "points": { + "c1": 11.41963351369683, + "c2": 26.87706306025862, + "c3": 10.316102299047195, + "c4": 16.81992259035392, + "c5": -12.980685576408101, + "c6": -8.093392929550895, + "c7": 1.897911966675359 }, - "vertexSeeds": { - "c1": 4.44731605429783, - "c2": 4.500404729514798, - "c3": 4.569330285408508, - "c4": 4.637060462052017, - "c5": 4.673686843674142, - "c6": 4.5607102347588215, - "c7": 4.775086784796587 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181232, + "c4": 4.78964401294498, + "c5": 3.592233009708735, + "c6": 2.39482200647249, + "c7": 1.197411003236245 }, "rgb": [86, 146, 138] }, @@ -412134,23 +412134,23 @@ "year": 1816, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 7.190704011489132, - "c2": -28.40765519800067, - "c3": -0.04115979371312051, - "c4": 22.957530931242857, - "c5": 23.43509157866084, - "c6": 31.976135214825966, - "c7": 22.500962115191648 + "points": { + "c1": 21.30509999243197, + "c2": -10.134388717950706, + "c3": -31.4266879301764, + "c4": 23.914638133102073, + "c5": -36.319432886796875, + "c6": -5.5214126499487435, + "c7": -8.91136074920356 }, - "vertexSeeds": { - "c1": 5.177537715457546, - "c2": 5.295912737739081, - "c3": 5.278147514776781, - "c4": 5.975068317452516, - "c5": 5.286923041798827, - "c6": 5.449932884682369, - "c7": 5.64266018033853 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.7378640776699, + "c3": 7.281553398058249, + "c4": 5.825242718446608, + "c5": 4.368932038834957, + "c6": 2.912621359223304, + "c7": 1.456310679611652 }, "rgb": [58, 15, 49] }, @@ -412161,23 +412161,23 @@ "year": 1816, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -7.179637089393498, - "c2": -14.728531542499567, - "c3": -20.463857849275673, - "c4": -0.9325652015092487, - "c5": 3.794068150840438, - "c6": -3.6244149406884105, - "c7": -4.925384054740043 + "points": { + "c1": 0.720654099505218, + "c2": -22.316025097831243, + "c3": 12.786849895913669, + "c4": -34.584746598427856, + "c5": -1.477381298340788, + "c6": -34.57985177881091, + "c7": -26.605372466065866 }, - "vertexSeeds": { - "c1": 14.984969134536495, - "c2": 13.898086104204312, - "c3": 14.369293867386318, - "c4": 15.311802971768678, - "c5": 14.24950784419081, - "c6": 14.12659155231385, - "c7": 14.40965260579637 + "offsets": { + "c1": 25.6957928802589, + "c2": 22.024965325936197, + "c3": 18.3541377716135, + "c4": 14.6833102172908, + "c5": 11.012482662968099, + "c6": 7.3416551086454, + "c7": 3.6708275543227 }, "rgb": [238, 201, 159] }, @@ -412188,23 +412188,23 @@ "year": 1816, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 19.74532552683228, - "c2": 15.619125963773552, - "c3": 0.6514458654751465, - "c4": 23.46276800608734, - "c5": -3.2904183075394435, - "c6": -20.1643355907157, - "c7": -22.96249805630074 + "points": { + "c1": 11.355237030178348, + "c2": 11.69267995885524, + "c3": 22.814173523145104, + "c4": 19.484088662462835, + "c5": 13.243788402806427, + "c6": 23.703820074031558, + "c7": -1.0767520682527199 }, - "vertexSeeds": { - "c1": 8.08377879376844, - "c2": 8.301472398839161, - "c3": 7.401643371991902, - "c4": 8.121055416828652, - "c5": 7.380851571305983, - "c6": 7.711306492481329, - "c7": 7.540895580038068 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295421, + "c3": 9.939898289412849, + "c4": 7.951918631530275, + "c5": 5.963938973647703, + "c6": 3.97595931576513, + "c7": 1.9879796578825728 }, "rgb": [58, 15, 49] }, @@ -412215,23 +412215,23 @@ "year": 1816, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 3.2228303061687313, - "c2": -27.988745062863405, - "c3": -16.978034758477094, - "c4": 1.8838144611840768, - "c5": 28.81104761952666, - "c6": 3.477788329147458, - "c7": -10.518937063415876 + "points": { + "c1": -25.734213674855468, + "c2": -26.611830343366794, + "c3": 15.881934016972295, + "c4": 16.936891364273478, + "c5": -29.150900774360807, + "c6": -12.572822708862585, + "c7": -23.01688589789832 }, - "vertexSeeds": { - "c1": 6.895341929681057, - "c2": 6.210563693575959, - "c3": 6.56528894939377, - "c4": 6.494238786227819, - "c5": 6.697925068221833, - "c6": 6.667903429048957, - "c7": 7.262887570235893 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.54091539528433, + "c3": 8.784096162736942, + "c4": 7.027276930189545, + "c5": 5.270457697642159, + "c6": 3.5136384650947723, + "c7": 1.7568192325473861 }, "rgb": [222, 0, 59] }, @@ -412242,23 +412242,23 @@ "year": 1816, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -23.2334294534362, - "c2": 14.356369274726838, - "c3": 14.298290332611629, - "c4": 6.752766208552863, - "c5": -34.70779165777405, - "c6": 3.823070270035849, - "c7": -25.824177668800143 + "points": { + "c1": 28.313024307267042, + "c2": 28.143245559980315, + "c3": -9.96416717761318, + "c4": -15.026487849833511, + "c5": 16.089130371529883, + "c6": 1.5755093988051598, + "c7": 34.90606625874919 }, - "vertexSeeds": { - "c1": 2.8494675943784697, - "c2": 2.710023923900126, - "c3": 2.818672285964454, - "c4": 2.595969193448742, - "c5": 2.5548939695342474, - "c6": 2.623773584431169, - "c7": 2.7323696377894415 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952842, + "c3": 3.4211742949607005, + "c4": 2.7369394359685586, + "c5": 2.052704576976425, + "c6": 1.368469717984283, + "c7": 0.6842348589921415 }, "rgb": [58, 15, 49] }, @@ -412269,23 +412269,23 @@ "year": 1817, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": -38.4365051181659, - "c2": 23.30247532032869, - "c3": 22.8162011801329, - "c4": -17.810094966517127, - "c5": -2.487145957811876, - "c6": -9.697026485694046, - "c7": 39.834557332555185 + "points": { + "c1": -45.95271812138575, + "c2": -14.655145111854772, + "c3": -45.03330382045152, + "c4": 14.469748317642498, + "c5": 32.39856943675317, + "c6": 42.25908364566845, + "c7": 42.29446676490959 }, - "vertexSeeds": { - "c1": 0.6023316062176165, - "c2": 0.6023316062176165, - "c3": 0.6023316062176165, - "c4": 0.6023316062176165, - "c5": 0.6023316062176165, - "c6": 0.6023316062176165, - "c7": 0.6023316062176165 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -412296,23 +412296,23 @@ "year": 1817, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 28.201883663372, - "c2": -23.04538597244272, - "c3": -30.609876365707457, - "c4": -40.664288608013464, - "c5": -40.97323714904019, - "c6": 1.6503752166674275, - "c7": 18.236289915725074 + "points": { + "c1": -39.31770802714845, + "c2": -20.627669783099364, + "c3": 1.7752054742041636, + "c4": 33.80009595902047, + "c5": 14.491944201709366, + "c6": 1.1371926402050931, + "c7": -21.90741875928924 }, - "vertexSeeds": { - "c1": 3.3077487132824417, - "c2": 3.3248721135491275, - "c3": 3.3825060303020846, - "c4": 3.3015860178033076, - "c5": 3.1422248617263073, - "c6": 3.1202166744398276, - "c7": 3.217388691740556 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.0485436893203905, + "c3": 4.207119741100328, + "c4": 3.365695792880258, + "c5": 2.5242718446601953, + "c6": 1.6828478964401326, + "c7": 0.8414239482200625 }, "rgb": [86, 146, 138] }, @@ -412323,23 +412323,23 @@ "year": 1816, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -7.338303086809379, - "c2": 23.431910663941974, - "c3": 8.424936957721574, - "c4": 9.647943305010205, - "c5": -14.929882941991252, - "c6": -5.5418899773747725, - "c7": -5.402990675354122 + "points": { + "c1": -0.9835175451414742, + "c2": 23.080553270805627, + "c3": -23.24524277276561, + "c4": 25.102968137059687, + "c5": -20.70820716319689, + "c6": 27.132024588163166, + "c7": 16.803859235611544 }, - "vertexSeeds": { - "c1": 7.91810947802659, - "c2": 7.994808741243242, - "c3": 7.8768201125289234, - "c4": 7.9535845134124505, - "c5": 7.892428072201909, - "c6": 7.920938392112091, - "c7": 7.784239101725797 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536744, + "c3": 10.078594544613964, + "c4": 8.062875635691162, + "c5": 6.0471567267683835, + "c6": 4.031437817845581, + "c7": 2.015718908922802 }, "rgb": [86, 146, 138] }, @@ -412350,23 +412350,23 @@ "year": 1816, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -20.828226027202312, - "c2": 4.15783914244097, - "c3": -1.6798351055477703, - "c4": -16.639588614423694, - "c5": -7.792191224679989, - "c6": -0.0001434680993099846, - "c7": -22.81870474192701 + "points": { + "c1": -16.00888225215972, + "c2": 7.393052543454353, + "c3": -18.263408302715614, + "c4": 22.524766256100307, + "c5": -17.059022240898763, + "c6": -20.575858597984748, + "c7": -28.951017662989187 }, - "vertexSeeds": { - "c1": 10.7101486176632, - "c2": 10.340501177207514, - "c3": 9.800335249753438, - "c4": 10.053133974222826, - "c5": 9.81148779925713, - "c6": 10.315206405123114, - "c7": 9.74396150941328 + "offsets": { + "c1": 17.928802588996763, + "c2": 15.367545076282935, + "c3": 12.806287563569105, + "c4": 10.245030050855316, + "c5": 7.683772538141486, + "c6": 5.122515025427658, + "c7": 2.561257512713829 }, "rgb": [222, 0, 59] }, @@ -412377,23 +412377,23 @@ "year": 1816, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 25.08741765939535, - "c2": 8.182181632129456, - "c3": -25.006126750624986, - "c4": 26.050872065802963, - "c5": 14.315876070053783, - "c6": -14.29778296219786, - "c7": -13.943253745762497 + "points": { + "c1": -5.9695140105891085, + "c2": 16.575222084541934, + "c3": 19.49143806815716, + "c4": 18.631499246748625, + "c5": 2.3068839976414424, + "c6": -6.718738699827831, + "c7": 17.122128032979568 }, - "vertexSeeds": { - "c1": 5.220432323480139, - "c2": 4.952401894587062, - "c3": 4.8119224485521945, - "c4": 4.752223454175558, - "c5": 4.9188881731736895, - "c6": 4.930197561407238, - "c7": 5.126283150225635 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020813, + "c3": 6.333795654184004, + "c4": 5.067036523347211, + "c5": 3.8002773925104023, + "c6": 2.5335182616736014, + "c7": 1.2667591308368007 }, "rgb": [77, 76, 132] }, @@ -412404,23 +412404,23 @@ "year": 1816, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 1.2346662828372956, - "c2": 15.062925500408372, - "c3": 10.787892848907251, - "c4": -18.73815437117081, - "c5": -4.892768844373794, - "c6": 14.744179264656399, - "c7": 19.640086189789752 + "points": { + "c1": 18.99439783945296, + "c2": -23.697630910296787, + "c3": -23.542935618312164, + "c4": 15.398167427197816, + "c5": -23.674891172041775, + "c6": 19.892861379873633, + "c7": -23.574619178511703 }, - "vertexSeeds": { - "c1": 2.4673331668049547, - "c2": 2.384353829569229, - "c3": 2.4912439532702666, - "c4": 2.4450559973507375, - "c5": 2.478456489210012, - "c6": 2.3013636785317955, - "c7": 2.397243514793617 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429962, + "c3": 3.1206657420249653, + "c4": 2.496532593619972, + "c5": 1.872399445214979, + "c6": 1.248266296809986, + "c7": 0.624133148404993 }, "rgb": [86, 146, 138] }, @@ -412431,23 +412431,23 @@ "year": 1816, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": 21.357844689192476, - "c2": -13.086266741361486, - "c3": 18.608749352343764, - "c4": -2.8891742520082957, - "c5": -9.814739081031496, - "c6": 21.69922265217307, - "c7": 11.59320027770157 + "points": { + "c1": -4.72218826349615, + "c2": -9.348312895502865, + "c3": 13.824892259513035, + "c4": -18.501100244152923, + "c5": 4.7375260178968155, + "c6": 2.397102470268287, + "c7": -4.0073884815295315 }, - "vertexSeeds": { - "c1": 5.33490393148929, - "c2": 5.410943902866963, - "c3": 5.443817537937196, - "c4": 5.442452144214254, - "c5": 5.472860230409012, - "c6": 5.403411877117179, - "c7": 5.46802201924219 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382773, + "c3": 6.541840036985677, + "c4": 5.2334720295885155, + "c5": 3.9251040221914195, + "c6": 2.6167360147942578, + "c7": 1.3083680073971615 }, "rgb": [58, 15, 49] }, @@ -412458,23 +412458,23 @@ "year": 1816, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 17.14477444791855, - "c2": -8.128965659405573, - "c3": -15.604252892103151, - "c4": -26.529149456266275, - "c5": -8.606576895792895, - "c6": 26.173684841115488, - "c7": 17.463338578609203 + "points": { + "c1": -9.108051638143625, + "c2": -19.727580551440138, + "c3": 5.922416971924953, + "c4": 8.871482093189577, + "c5": 2.174227373298006, + "c6": -24.09456271257904, + "c7": 7.339338717626916 }, - "vertexSeeds": { - "c1": 10.492575972965932, - "c2": 10.471758677393364, - "c3": 10.045323351788706, - "c4": 10.138567795778988, - "c5": 9.944031685685477, - "c6": 9.93222973395798, - "c7": 10.131762736143589 + "offsets": { + "c1": 17.57281553398058, + "c2": 15.062413314840482, + "c3": 12.55201109570042, + "c4": 10.041608876560321, + "c5": 7.5312066574202605, + "c6": 5.020804438280161, + "c7": 2.5104022191400803 }, "rgb": [77, 76, 132] }, @@ -412485,23 +412485,23 @@ "year": 1816, "resistanceReported": false, "duration": 2678400, - "curveSeeds": { - "c1": -8.801114268511675, - "c2": -6.245620156574765, - "c3": -7.868782758512694, - "c4": 9.755421816471737, - "c5": 8.922137552489039, - "c6": -12.159901453500433, - "c7": -5.240498645936472 + "points": { + "c1": 10.206073041619396, + "c2": -11.454887254677285, + "c3": 10.913714319572692, + "c4": 9.370180689891141, + "c5": -1.7748718447987901, + "c6": -14.592166409157912, + "c7": 0.024917326521608274 }, - "vertexSeeds": { - "c1": 0.21966856381229435, - "c2": 0.22013154437288016, - "c3": 0.2257003134027105, - "c4": 0.2202918545492929, - "c5": 0.2234184534391228, - "c6": 0.22027909407879576, - "c7": 0.2298459186554739 + "offsets": { + "c1": 0.4207119741100324, + "c2": 0.36061026352288517, + "c3": 0.30050855293573714, + "c4": 0.24040684234858983, + "c5": 0.18030513176144258, + "c6": 0.12020342117429529, + "c7": 0.06010171058714728 }, "rgb": [86, 146, 138] }, @@ -412512,23 +412512,23 @@ "year": 1816, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -20.669581325590475, - "c2": 4.45950768919317, - "c3": -18.84556860561149, - "c4": 13.757295487791989, - "c5": -14.039637459091683, - "c6": 16.50288927589705, - "c7": -10.996540647142002 + "points": { + "c1": -6.682460438490601, + "c2": 6.84981742558805, + "c3": 20.659928132964634, + "c4": 6.976366512446209, + "c5": -5.2673074326950875, + "c6": 6.8377958787186195, + "c7": -7.769261612042776 }, - "vertexSeeds": { - "c1": 4.086738019715239, - "c2": 4.001217050096006, - "c3": 4.440578260539117, - "c4": 4.476021617128037, - "c5": 3.9525706213008562, - "c6": 4.320282766300528, - "c7": 3.9942833434806073 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371709, + "c3": 5.386037910309755, + "c4": 4.308830328247807, + "c5": 3.231622746185851, + "c6": 2.1544151641239035, + "c7": 1.077207582061948 }, "rgb": [77, 76, 132] }, @@ -412539,23 +412539,23 @@ "year": 1816, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -6.507010870614369, - "c2": -15.156644750475174, - "c3": -16.611254141428674, - "c4": -25.49758257770689, - "c5": 24.59925658370361, - "c6": 18.789770894524157, - "c7": 2.404789475922218 + "points": { + "c1": 8.152704437664372, + "c2": -12.454852263706695, + "c3": 0.23998840151518053, + "c4": 14.001980391540418, + "c5": 2.88425514748533, + "c6": -5.178661685314882, + "c7": -20.192337499614027 }, - "vertexSeeds": { - "c1": 4.5613377230267265, - "c2": 4.541188409571882, - "c3": 4.341288914835547, - "c4": 4.278509289834312, - "c5": 4.312347333746884, - "c6": 4.4456867018124635, - "c7": 4.475641946024612 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733705, + "c3": 5.594082293111422, + "c4": 4.475265834489139, + "c5": 3.356449375866857, + "c6": 2.237632917244565, + "c7": 1.1188164586222824 }, "rgb": [77, 76, 132] }, @@ -412566,23 +412566,23 @@ "year": 1816, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 8.753159482360992, - "c2": 3.285908155556072, - "c3": -15.570163226014401, - "c4": 7.725369641771511, - "c5": 14.42470558718312, - "c6": -16.838840495074443, - "c7": -12.586803519229683 + "points": { + "c1": 14.28784226270858, + "c2": 3.1372178505398907, + "c3": 7.455861702651806, + "c4": 4.164481931287192, + "c5": 6.299564358648226, + "c6": 12.903466465289732, + "c7": 20.82110766760764 }, - "vertexSeeds": { - "c1": 2.241113385231504, - "c2": 2.247753804988883, - "c3": 2.1109225984931173, - "c4": 2.229259445924386, - "c5": 2.1136888574227006, - "c6": 2.11293100622071, - "c7": 2.1110892782784445 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461853, + "c3": 2.7276930189551534, + "c4": 2.1821544151641215, + "c5": 1.636615811373095, + "c6": 1.0910772075820636, + "c7": 0.5455386037910318 }, "rgb": [222, 0, 59] }, @@ -412593,23 +412593,23 @@ "year": 1816, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -10.987985261192637, - "c2": -22.893215860733676, - "c3": 8.575508199397394, - "c4": 12.461467612454598, - "c5": -6.09573522187948, - "c6": -2.665937442858585, - "c7": -17.70585860201763 + "points": { + "c1": 20.337084804618357, + "c2": -18.03670084173209, + "c3": 22.846902332494977, + "c4": -21.233129271662115, + "c5": -23.355400808046316, + "c6": 19.820790528860144, + "c7": 21.0428054334405 }, - "vertexSeeds": { - "c1": 7.232960304250797, - "c2": 6.6169339870158606, - "c3": 6.595805342671595, - "c4": 6.604145184591279, - "c5": 7.221577015924959, - "c6": 7.339498231325067, - "c7": 7.3974084059726115 + "offsets": { + "c1": 12.394822006472491, + "c2": 10.624133148404992, + "c3": 8.853444290337494, + "c4": 7.082755432269995, + "c5": 5.312066574202496, + "c6": 3.5413777161349973, + "c7": 1.7706888580674986 }, "rgb": [222, 0, 59] }, @@ -412620,23 +412620,23 @@ "year": 1816, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 14.790134813392719, - "c2": 32.751595724365885, - "c3": 33.90696970630347, - "c4": 26.94204812039878, - "c5": 10.521935212138132, - "c6": 0.772614806860858, - "c7": -21.498841900914492 + "points": { + "c1": 4.267391592338832, + "c2": 36.32733264386063, + "c3": 6.502605965429694, + "c4": -13.153595731122767, + "c5": 23.184690870289593, + "c6": -25.189046439492813, + "c7": 38.69865270497732 }, - "vertexSeeds": { - "c1": 4.904478720472945, - "c2": 5.0208974979149765, - "c3": 4.971307907935888, - "c4": 5.084481427618563, - "c5": 5.258764411573404, - "c6": 4.669370792354251, - "c7": 5.032751677748758 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302355, + "c3": 6.495607951918625, + "c4": 5.196486361534908, + "c5": 3.8973647711511776, + "c6": 2.5982431807674478, + "c7": 1.2991215903837239 }, "rgb": [58, 15, 49] }, @@ -412647,23 +412647,23 @@ "year": 1816, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -13.159991194465931, - "c2": -18.992687307434764, - "c3": -11.485280265777817, - "c4": 16.21137916971092, - "c5": 0.8977166253959794, - "c6": 8.096908744034298, - "c7": -5.945344791175518 + "points": { + "c1": 15.650580056920397, + "c2": -25.90476234348985, + "c3": 25.11583748733905, + "c4": -30.19617333966947, + "c5": -10.026795087379217, + "c6": -31.01343951400938, + "c7": 19.843668566803046 }, - "vertexSeeds": { - "c1": 0.8443833850899913, - "c2": 0.8699218790863784, - "c3": 0.8404048502901579, - "c4": 0.8557089601979299, - "c5": 0.7962497684248497, - "c6": 0.8628935814069589, - "c7": 0.7651370793484163 + "offsets": { + "c1": 1.4886731391585761, + "c2": 1.2760055478502077, + "c3": 1.0633379565418393, + "c4": 0.8506703652334724, + "c5": 0.6380027739251038, + "c6": 0.42533518261673536, + "c7": 0.21266759130836846 }, "rgb": [238, 201, 159] }, @@ -412674,23 +412674,23 @@ "year": 1816, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 5.380460678005022, - "c2": 17.93412288849516, - "c3": -5.578110632195475, - "c4": -28.977866341471838, - "c5": -22.622878523187836, - "c6": -32.6227734800452, - "c7": -7.228001343615389 + "points": { + "c1": 22.688408252276744, + "c2": -8.928316207989873, + "c3": 25.72000490450138, + "c4": -14.544022653468136, + "c5": 15.38887103118008, + "c6": 18.573833163738, + "c7": -7.353432905478449 }, - "vertexSeeds": { - "c1": 6.2716739788923235, - "c2": 6.712607338017755, - "c3": 6.330649587539739, - "c4": 6.646254813236461, - "c5": 6.402239778141688, - "c6": 6.343741008588354, - "c7": 6.2005635943620065 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198333, + "c3": 8.15996301433194, + "c4": 6.5279704114655495, + "c5": 4.895977808599157, + "c6": 3.263985205732784, + "c7": 1.631992602866392 }, "rgb": [238, 201, 159] }, @@ -412701,23 +412701,23 @@ "year": 1816, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -28.793692429688182, - "c2": 18.702983889672655, - "c3": 26.8969729094463, - "c4": -14.326633903174976, - "c5": -17.783730016970182, - "c6": 8.721217499644059, - "c7": -9.4552049755073 + "points": { + "c1": -23.77561914384488, + "c2": 21.087922748669136, + "c3": -19.385042492999716, + "c4": -23.889557629329104, + "c5": 7.981221652571868, + "c6": 9.293894377961244, + "c7": 13.541250578302822 }, - "vertexSeeds": { - "c1": 8.768737250118608, - "c2": 9.234403327971023, - "c3": 8.928761182710721, - "c4": 9.376388953718648, - "c5": 9.00869552049925, - "c6": 9.340977820482268, - "c7": 8.851431450022442 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.675450762829408, + "c3": 11.396208969024494, + "c4": 9.1169671752196, + "c5": 6.837725381414704, + "c6": 4.55848358760979, + "c7": 2.279241793804895 }, "rgb": [77, 76, 132] }, @@ -412728,23 +412728,23 @@ "year": 1816, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -15.346102250498282, - "c2": -12.052400604194261, - "c3": 21.654047431602475, - "c4": -4.857889287657525, - "c5": -27.06470113834274, - "c6": -16.608237264185604, - "c7": -5.862761165433092 + "points": { + "c1": 17.55813956964906, + "c2": -14.234530534804502, + "c3": 0.028220758879413665, + "c4": 25.483256813856872, + "c5": 30.87289922236207, + "c6": -29.468639561691514, + "c7": -10.094099085369525 }, - "vertexSeeds": { - "c1": 8.217993738316698, - "c2": 8.910136604279433, - "c3": 8.81443929336416, - "c4": 8.758164390154569, - "c5": 8.656882228660217, - "c6": 8.712891846458776, - "c7": 8.624118783040126 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703191, + "c3": 10.748959778085997, + "c4": 8.599167822468782, + "c5": 6.449375866851586, + "c6": 4.299583911234391, + "c7": 2.1497919556171956 }, "rgb": [222, 0, 59] }, @@ -412755,23 +412755,23 @@ "year": 1816, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 13.85684922074573, - "c2": -2.3638872152252652, - "c3": 15.595921925658331, - "c4": 12.301770817884318, - "c5": 18.173449878406167, - "c6": 0.8072561176954025, - "c7": -11.571111230180549 + "points": { + "c1": -18.721057262527157, + "c2": -0.45309102245783706, + "c3": -2.9349861919982985, + "c4": 24.63038815156891, + "c5": -13.407827127896288, + "c6": 7.159299432671055, + "c7": -20.235424358071953 }, - "vertexSeeds": { - "c1": 4.4768124661765665, - "c2": 4.139024883468118, - "c3": 4.01382054967009, - "c4": 4.477012315380723, - "c5": 4.127971994480396, - "c6": 3.824456044432839, - "c7": 4.420442672792467 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331482, + "c3": 5.362921867776239, + "c4": 4.2903374942209895, + "c5": 3.217753120665741, + "c6": 2.145168747110492, + "c7": 1.072584373555249 }, "rgb": [58, 15, 49] }, @@ -412782,23 +412782,23 @@ "year": 1816, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 28.700113947711486, - "c2": 20.773957375427862, - "c3": 13.351986180349371, - "c4": -7.1414098006878355, - "c5": -27.694011701015956, - "c6": 20.160081175223524, - "c7": -18.348593258670633 + "points": { + "c1": 16.991231248521913, + "c2": -6.736956804035874, + "c3": -27.564995335935546, + "c4": 9.17102775758314, + "c5": -28.89151326034969, + "c6": -8.330756285453894, + "c7": 1.5704320252244202 }, - "vertexSeeds": { - "c1": 6.410327100530375, - "c2": 6.371736681120611, - "c3": 6.209757207196276, - "c4": 6.864385814883186, - "c5": 6.419214830444953, - "c6": 6.55166772282995, - "c7": 6.4115796334402395 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.93065187239944, + "c3": 8.275543226999543, + "c4": 6.620434581599632, + "c5": 4.96532593619972, + "c6": 3.3102172907998075, + "c7": 1.6551086453999122 }, "rgb": [77, 76, 132] }, @@ -412809,23 +412809,23 @@ "year": 1816, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 15.132336500780006, - "c2": 7.480190234269912, - "c3": -19.69888387141192, - "c4": 2.1399678588980393, - "c5": -25.619186038090323, - "c6": -4.752298830545136, - "c7": -20.70541699853593 + "points": { + "c1": -32.58718383746238, + "c2": -4.650641984338389, + "c3": -0.21925314302102805, + "c4": -5.190012611375536, + "c5": 30.09454367083675, + "c6": 20.080436527233672, + "c7": -25.82510917661399 }, - "vertexSeeds": { - "c1": 4.25017658855623, - "c2": 4.227038978077051, - "c3": 4.286456637725793, - "c4": 4.273781465763224, - "c5": 4.211219915427937, - "c6": 4.272429659842427, - "c7": 4.179537456208042 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.1581137309292595, + "c3": 5.131761442441044, + "c4": 4.105409153952863, + "c5": 3.0790568654646466, + "c6": 2.0527045769764314, + "c7": 1.0263522884882157 }, "rgb": [238, 201, 159] }, @@ -412836,23 +412836,23 @@ "year": 1816, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -8.435036149288582, - "c2": 0.4451410972947336, - "c3": -19.556803138321328, - "c4": -20.178308940325387, - "c5": 9.30955844346429, - "c6": 20.417548126257287, - "c7": 25.028982066466355 + "points": { + "c1": 5.431221950314622, + "c2": -7.199159195773131, + "c3": -7.323279778829335, + "c4": 7.91365795928678, + "c5": -26.803490491445356, + "c6": -0.2601012179033084, + "c7": 15.624482655314402 }, - "vertexSeeds": { - "c1": 6.804109595963209, - "c2": 6.914062227380834, - "c3": 7.280086626355861, - "c4": 7.342951204136066, - "c5": 7.025953582217517, - "c6": 6.797376082396715, - "c7": 6.854276209882922 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807206, + "c3": 9.084604715672668, + "c4": 7.267683772538144, + "c5": 5.450762829403603, + "c6": 3.633841886269064, + "c7": 1.8169209431345392 }, "rgb": [58, 15, 49] }, @@ -412863,23 +412863,23 @@ "year": 1816, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 28.221353014708164, - "c2": -2.6511487481903124, - "c3": 23.524324935565346, - "c4": -28.220710722173514, - "c5": 16.916799599100017, - "c6": 10.98597415741888, - "c7": 26.427122192295116 + "points": { + "c1": 25.69435160313577, + "c2": 23.76655872721568, + "c3": -3.016275862694144, + "c4": -30.109443690897244, + "c5": 28.226460712629425, + "c6": 20.462004298951797, + "c7": 11.119192115638633 }, - "vertexSeeds": { - "c1": 10.34445483199686, - "c2": 10.001327524942582, - "c3": 10.02814068916741, - "c4": 10.040572343344833, - "c5": 10.029163291190969, - "c6": 10.136712878489645, - "c7": 10.034673943978145 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.00693481276009, + "c3": 12.505779010633368, + "c4": 10.004623208506727, + "c5": 7.503467406380007, + "c6": 5.0023116042533635, + "c7": 2.5011558021266436 }, "rgb": [86, 146, 138] }, @@ -412890,23 +412890,23 @@ "year": 1816, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -2.864454624414801, - "c2": 6.5589428051002905, - "c3": -24.370849746571654, - "c4": -10.11571396371745, - "c5": -18.427370365419204, - "c6": 21.968368877992784, - "c7": 5.971426385267112 + "points": { + "c1": 28.355923097859968, + "c2": 3.0946920595969623, + "c3": -19.77201561053491, + "c4": -3.2159441058983695, + "c5": 15.593813176117276, + "c6": 20.88799177818694, + "c7": 6.3734261908702585 }, - "vertexSeeds": { - "c1": 6.872988550510261, - "c2": 7.196144565886239, - "c3": 7.151297577635275, - "c4": 6.392492650611223, - "c5": 6.638042000945952, - "c6": 6.190108759572465, - "c7": 6.420167947556006 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.45769764216366, + "c3": 8.714748035136385, + "c4": 6.971798428109107, + "c5": 5.22884882108183, + "c6": 3.4858992140545535, + "c7": 1.7429496070272767 }, "rgb": [58, 15, 49] }, @@ -412917,23 +412917,23 @@ "year": 1816, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": -5.266884837431951, - "c2": -15.896181430616268, - "c3": 11.775790214568836, - "c4": -15.801732942251196, - "c5": 4.568198849533292, - "c6": -6.10466162716566, - "c7": -0.3558889844302868 + "points": { + "c1": 11.833402167841719, + "c2": -7.4638006259266, + "c3": 14.808091455541806, + "c4": 13.544958011455385, + "c5": 6.265561070089998, + "c6": 9.990281801155628, + "c7": -0.871853808481557 }, - "vertexSeeds": { - "c1": 0.18733476295287294, - "c2": 0.17814580010917216, - "c3": 0.1835625398436705, - "c4": 0.18351135126854323, - "c5": 0.1814055929215908, - "c6": 0.17939291881472277, - "c7": 0.1748859073877399 + "offsets": { + "c1": 0.3559870550161813, + "c2": 0.30513176144244125, + "c3": 0.2542764678687006, + "c4": 0.20342117429496065, + "c5": 0.15256588072122063, + "c6": 0.10171058714748063, + "c7": 0.05085529357374 }, "rgb": [77, 76, 132] }, @@ -412944,23 +412944,23 @@ "year": 1816, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 3.7811528745337775, - "c2": 22.925969493486676, - "c3": -9.123862725946465, - "c4": 20.591970116140367, - "c5": 11.111061914780414, - "c6": -20.897471527717297, - "c7": -0.7916903700158002 + "points": { + "c1": -11.872919003859028, + "c2": 1.7672160711211475, + "c3": -20.70292061207656, + "c4": 6.433697553562361, + "c5": -7.0936594373628665, + "c6": -7.960558465864878, + "c7": 25.330122381959747 }, - "vertexSeeds": { - "c1": 7.730929937356969, - "c2": 7.721080128498175, - "c3": 7.7011948431229476, - "c4": 7.699522115407449, - "c5": 7.745451737375106, - "c6": 7.743458051589047, - "c7": 7.727700278729256 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088695, + "c3": 9.24641701340741, + "c4": 7.397133610725879, + "c5": 5.5478502080443475, + "c6": 3.6985668053628165, + "c7": 1.8492834026815308 }, "rgb": [222, 0, 59] }, @@ -412971,23 +412971,23 @@ "year": 1816, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 9.238443188694738, - "c2": -13.551532196060915, - "c3": 3.3821941170447474, - "c4": 0.7453210652869906, - "c5": 17.911412068324218, - "c6": 2.968832562337866, - "c7": 14.621087652882714 + "points": { + "c1": -5.915604523112876, + "c2": -20.916182246675305, + "c3": 12.17487475546477, + "c4": -25.666449681900218, + "c5": -26.85527532634447, + "c6": 30.57270386275288, + "c7": -3.2510731937161808 }, - "vertexSeeds": { - "c1": 6.986022730679085, - "c2": 6.954464101618028, - "c3": 6.827952568353281, - "c4": 6.7185708495728145, - "c5": 6.802120460891434, - "c6": 6.554585051973318, - "c7": 6.527030536606964 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520115, + "c3": 8.3448913546001, + "c4": 6.675913083680085, + "c5": 5.006934812760068, + "c6": 3.337956541840031, + "c7": 1.6689782709200156 }, "rgb": [238, 201, 159] }, @@ -412998,23 +412998,23 @@ "year": 1816, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 18.831367665244212, - "c2": -22.15299353746, - "c3": -8.998242897357148, - "c4": -16.759967927302974, - "c5": -28.340431655891727, - "c6": 13.545530089515513, - "c7": -1.359792427487161 + "points": { + "c1": -19.25341264226656, + "c2": -31.93205122719634, + "c3": 28.059079688157773, + "c4": 6.8676933822836475, + "c5": 30.724467960893243, + "c6": 0.34853366026060684, + "c7": 23.187379637024684 }, - "vertexSeeds": { - "c1": 4.560664841897211, - "c2": 4.564542043000637, - "c3": 4.679962632921305, - "c4": 4.894176809637904, - "c5": 4.538524178172149, - "c6": 4.564938475564401, - "c7": 4.592508930993953 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337036, + "c3": 5.940822931114191, + "c4": 4.752658344891357, + "c5": 3.5644937586685126, + "c6": 2.3763291724456783, + "c7": 1.1881645862228443 }, "rgb": [238, 201, 159] }, @@ -413025,23 +413025,23 @@ "year": 1816, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -30.48831220475074, - "c2": 8.714947759288371, - "c3": 7.948944711142545, - "c4": -26.341628369417712, - "c5": -24.325144868532234, - "c6": 15.240302948025764, - "c7": -10.188600413388471 + "points": { + "c1": 14.095077273530393, + "c2": -13.025029346207429, + "c3": -34.240734563642235, + "c4": -1.6702486854478664, + "c5": -20.074174152463506, + "c6": 21.075702734446523, + "c7": -30.948990689193582 }, - "vertexSeeds": { - "c1": 9.77039652919436, - "c2": 9.027600360011997, - "c3": 9.357805259846868, - "c4": 9.351059867135554, - "c5": 9.485887005280302, - "c6": 9.432568020798527, - "c7": 8.799390769603056 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.00832177531207, + "c3": 11.673601479426713, + "c4": 9.338881183541375, + "c5": 7.004160887656035, + "c6": 4.6694405917706785, + "c7": 2.3347202958853392 }, "rgb": [222, 0, 59] }, @@ -413052,23 +413052,23 @@ "year": 1816, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -17.421723753159604, - "c2": -11.296142432626016, - "c3": -13.069420183242327, - "c4": -18.098865267232433, - "c5": -2.6082777364060625, - "c6": -12.206120377174436, - "c7": 15.06076240849568 + "points": { + "c1": 20.49652005562991, + "c2": 2.780837478465976, + "c3": 12.052749956841648, + "c4": 8.006214327875231, + "c5": 13.600887779885472, + "c6": -16.76663262421816, + "c7": -17.88682007023798 }, - "vertexSeeds": { - "c1": 9.252946103496487, - "c2": 9.164490144885294, - "c3": 9.157284093751752, - "c4": 8.864710089778027, - "c5": 9.445120866227832, - "c6": 9.606207735664427, - "c7": 9.215311427935683 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.9251040221914, + "c3": 11.604253351826165, + "c4": 9.283402681460947, + "c5": 6.962552011095711, + "c6": 4.6417013407304735, + "c7": 2.3208506703652367 }, "rgb": [77, 76, 132] }, @@ -413079,23 +413079,23 @@ "year": 1816, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -13.557893058612919, - "c2": -6.843284268501513, - "c3": 4.305313498797755, - "c4": 14.847464176626442, - "c5": 5.8887924942552665, - "c6": -10.692519598948692, - "c7": -21.13100229220747 + "points": { + "c1": -9.517263613853338, + "c2": -15.01557509688244, + "c3": -20.673604177661403, + "c4": -2.530567235767048, + "c5": -20.599207310993712, + "c6": 26.37331245911172, + "c7": 6.335853068550545 }, - "vertexSeeds": { - "c1": 10.696817418543898, - "c2": 9.830384240982754, - "c3": 10.128415247725025, - "c4": 10.274334263501604, - "c5": 10.883060063041892, - "c6": 10.729611679738316, - "c7": 9.998619516718097 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725376, + "c3": 13.060564031437805, + "c4": 10.448451225150267, + "c5": 7.836338418862696, + "c6": 5.224225612575125, + "c7": 2.612112806287554 }, "rgb": [86, 146, 138] }, @@ -413106,23 +413106,23 @@ "year": 1816, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -19.031895597769626, - "c2": -3.2137701923933655, - "c3": 3.730486556759871, - "c4": -14.070320294045196, - "c5": -11.185118427716386, - "c6": 20.704694098162065, - "c7": -21.2281007031512 + "points": { + "c1": -29.620300614239127, + "c2": 12.47364058558425, + "c3": 30.841833440498647, + "c4": 5.767338869054186, + "c5": -31.00164664599785, + "c6": -3.42265887550084, + "c7": -4.654725562870546 }, - "vertexSeeds": { - "c1": 8.588166018423065, - "c2": 9.027641256311306, - "c3": 8.806822654050677, - "c4": 8.965516272719695, - "c5": 8.701073109620621, - "c6": 8.87676178728001, - "c7": 9.045469874721618 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266293, + "c3": 11.07258437355524, + "c4": 8.85806749884421, + "c5": 6.643550624133157, + "c6": 4.429033749422105, + "c7": 2.2145168747110526 }, "rgb": [238, 201, 159] }, @@ -413133,23 +413133,23 @@ "year": 1816, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -6.918394618873879, - "c2": -22.968337376642992, - "c3": -14.980947316404688, - "c4": -10.560467949297845, - "c5": -2.1061097396600807, - "c6": 23.94709985086637, - "c7": 24.577267939138597 + "points": { + "c1": -12.386499490303347, + "c2": -28.38932332782681, + "c3": 18.83311568467303, + "c4": -21.437710848281966, + "c5": -7.611102007880152, + "c6": 12.179582077295446, + "c7": -12.542255879742982 }, - "vertexSeeds": { - "c1": 8.97555043907549, - "c2": 9.29465971081893, - "c3": 8.857338862446142, - "c4": 9.088577650705941, - "c5": 9.429116570251834, - "c6": 9.046415327043949, - "c7": 8.642754528501206 + "offsets": { + "c1": 15.792880258899677, + "c2": 13.5367545076283, + "c3": 11.280628756356904, + "c4": 9.024503005085528, + "c5": 6.76837725381415, + "c6": 4.512251502542774, + "c7": 2.256125751271377 }, "rgb": [222, 0, 59] }, @@ -413160,23 +413160,23 @@ "year": 1817, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -9.44273347080646, - "c2": -19.333456797495252, - "c3": 8.014970550400875, - "c4": 17.499934445780525, - "c5": -23.254660393257616, - "c6": 32.81540664180649, - "c7": -10.562129660465942 + "points": { + "c1": -28.697498806647467, + "c2": 28.488395097709315, + "c3": -5.205019045745495, + "c4": 4.51001492019364, + "c5": -23.068846899605923, + "c6": -33.1282577829394, + "c7": 35.665510737922844 }, - "vertexSeeds": { - "c1": 6.532548141182407, - "c2": 5.818226328326219, - "c3": 6.055849663915997, - "c4": 6.255295669659904, - "c5": 6.323118689228547, - "c6": 6.209393631155436, - "c7": 5.724040318783015 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876556, + "c3": 7.975034674063803, + "c4": 6.3800277392510365, + "c5": 4.785020804438284, + "c6": 3.1900138696255183, + "c7": 1.5950069348127658 }, "rgb": [222, 0, 59] }, @@ -413187,23 +413187,23 @@ "year": 1816, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -17.315805310774365, - "c2": -12.08982308250977, - "c3": -20.178874265598125, - "c4": 17.939385019678703, - "c5": -12.441639591852082, - "c6": -15.577551650414115, - "c7": 3.215997188377049 + "points": { + "c1": -19.856782499569558, + "c2": 26.53003476270733, + "c3": -9.808379114777132, + "c4": 1.6296447040614694, + "c5": 14.539055730826007, + "c6": -5.011628226755949, + "c7": 5.188906362177143 }, - "vertexSeeds": { - "c1": 9.415841166861805, - "c2": 10.750110020155265, - "c3": 10.146333457730623, - "c4": 10.374066243563425, - "c5": 10.43266790663285, - "c6": 10.153088230565906, - "c7": 9.55503856630271 + "offsets": { + "c1": 18.09061488673139, + "c2": 15.506241331484047, + "c3": 12.921867776236702, + "c4": 10.337494220989358, + "c5": 7.753120665742023, + "c6": 5.168747110494689, + "c7": 2.5843735552473444 }, "rgb": [86, 146, 138] }, @@ -413214,23 +413214,23 @@ "year": 1816, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -4.960901077272073, - "c2": -20.151121269292346, - "c3": -4.319217182375649, - "c4": -3.8809533622621544, - "c5": 22.420501197585544, - "c6": -22.427623428612833, - "c7": 19.59220310358107 + "points": { + "c1": -6.224432324185116, + "c2": 13.188478277063673, + "c3": 21.863386616472738, + "c4": 6.15768753691264, + "c5": -22.295919126623442, + "c6": 12.563541884543326, + "c7": 25.17506545967801 }, - "vertexSeeds": { - "c1": 3.9960771269713113, - "c2": 4.055216438188321, - "c3": 4.113949454324527, - "c4": 3.9845503100831587, - "c5": 4.153674860594547, - "c6": 3.7878847353374057, - "c7": 4.104046811893591 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808601, + "c3": 5.062413314840502, + "c4": 4.049930651872396, + "c5": 3.0374479889042965, + "c6": 2.024965325936198, + "c7": 1.012482662968099 }, "rgb": [86, 146, 138] }, @@ -413241,23 +413241,23 @@ "year": 1817, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": 3.6303415542578534, - "c2": -0.42728443401053795, - "c3": 19.818768834210587, - "c4": -31.669811031071998, - "c5": -10.653685019533476, - "c6": 14.489441685688163, - "c7": -22.950170619628164 + "points": { + "c1": 16.757340978388882, + "c2": 33.721630231833245, + "c3": -40.75235798171513, + "c4": -29.827148495135862, + "c5": -29.30727927945967, + "c6": -50.65912581132419, + "c7": -1.2967389693421936 }, - "vertexSeeds": { - "c1": 7.006456520173753, - "c2": 7.412824093359082, - "c3": 8.19135552688532, - "c4": 7.964786968936527, - "c5": 7.748303045203284, - "c6": 8.192861991501058, - "c7": 8.145378401316039 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.84466019417476, + "c3": 9.870550161812293, + "c4": 7.896440129449836, + "c5": 5.92233009708738, + "c6": 3.9482200647249126, + "c7": 1.9741100323624563 }, "rgb": [238, 201, 159] }, @@ -413268,23 +413268,23 @@ "year": 1816, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 25.264007464423162, - "c2": 9.382888002148032, - "c3": 1.173744493336656, - "c4": 27.33340876760234, - "c5": -5.3761741081910515, - "c6": -25.90466388292729, - "c7": 6.922413485426237 + "points": { + "c1": -9.150201140566136, + "c2": 5.893196053568442, + "c3": 0.9284860639812038, + "c4": 13.289216183191218, + "c5": -16.869077574429287, + "c6": 25.95523552842376, + "c7": -15.733815291213887 }, - "vertexSeeds": { - "c1": 6.1724959487537845, - "c2": 6.120177807494303, - "c3": 5.967955979621304, - "c4": 5.872242207484636, - "c5": 5.496318337529478, - "c6": 5.894891253749072, - "c7": 5.517069594612405 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911243, + "c3": 7.420249653259364, + "c4": 5.936199722607486, + "c5": 4.452149791955621, + "c6": 2.9680998613037577, + "c7": 1.4840499306518788 }, "rgb": [86, 146, 138] }, @@ -413295,23 +413295,23 @@ "year": 1816, "resistanceReported": false, "duration": 9244800, - "curveSeeds": { - "c1": -18.2322393418372, - "c2": 8.269736267145138, - "c3": 13.240276699736008, - "c4": 19.908109720659255, - "c5": -10.140636365754137, - "c6": -3.7390418757992023, - "c7": 12.502703137239365 + "points": { + "c1": -12.630499531507962, + "c2": 7.593273354925564, + "c3": -21.549409533409833, + "c4": 10.675642941537788, + "c5": -14.765377010017392, + "c6": -10.312482337086612, + "c7": 0.9775764583755127 }, - "vertexSeeds": { - "c1": 3.0248852527058574, - "c2": 3.215497378358471, - "c3": 3.2311441535552405, - "c4": 3.193426745641347, - "c5": 2.853620454903161, - "c6": 2.8716175446490526, - "c7": 2.8970968927122995 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757281, + "c3": 3.883495145631068, + "c4": 3.1067961165048543, + "c5": 2.3300970873786406, + "c6": 1.5533980582524272, + "c7": 0.7766990291262136 }, "rgb": [222, 0, 59] }, @@ -413322,23 +413322,23 @@ "year": 1816, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 4.940120306751403, - "c2": -25.98593066620404, - "c3": 2.8505976246092573, - "c4": -7.398461361318994, - "c5": -11.444591469617261, - "c6": -27.930334660362355, - "c7": 27.271993747712727 + "points": { + "c1": -2.8689419999121952, + "c2": 17.594063383509756, + "c3": 21.167784267193113, + "c4": -32.18935571444157, + "c5": 2.905620312838103, + "c6": -33.57478413857984, + "c7": 6.579959723603494 }, - "vertexSeeds": { - "c1": 5.681982063797801, - "c2": 5.46707970637503, - "c3": 5.63018502614284, - "c4": 5.623906435626871, - "c5": 5.0936949192644265, - "c6": 5.144325189232974, - "c7": 5.7952170297834975 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055474, + "c4": 5.547850208044376, + "c5": 4.160887656033278, + "c6": 2.7739251040221955, + "c7": 1.3869625520110977 }, "rgb": [222, 0, 59] }, @@ -413349,23 +413349,23 @@ "year": 1816, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -2.7323527453695675, - "c2": 19.26307368488361, - "c3": 19.263526637625443, - "c4": -14.504843590732643, - "c5": -24.025742965168874, - "c6": 8.12331188499807, - "c7": -12.426587704590178 + "points": { + "c1": -14.743252899788718, + "c2": 22.345617658183993, + "c3": 4.646737446790748, + "c4": 8.199529630693359, + "c5": -6.543706627759061, + "c6": 6.125451007323473, + "c7": 16.252672126164544 }, - "vertexSeeds": { - "c1": 5.694976173559727, - "c2": 5.9646146004125, - "c3": 6.042985614020195, - "c4": 6.1040020225918035, - "c5": 5.6586060822054405, - "c6": 5.809071051164909, - "c7": 5.855736947704043 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871017, + "c3": 7.397133610725838, + "c4": 5.917706888580673, + "c5": 4.438280166435509, + "c6": 2.9588534442903445, + "c7": 1.4794267221451645 }, "rgb": [238, 201, 159] }, @@ -413376,23 +413376,23 @@ "year": 1816, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -20.16830081624006, - "c2": 16.484670366460755, - "c3": 11.128756786265363, - "c4": 21.656476095289733, - "c5": 9.166436331359364, - "c6": -25.31244235216267, - "c7": -23.696376146055208 + "points": { + "c1": -25.650158850932783, + "c2": 0.49332389715254266, + "c3": -31.28591213025794, + "c4": -6.753004871734042, + "c5": 20.731016886760486, + "c6": -21.791936682362795, + "c7": 1.7168018724005236 }, - "vertexSeeds": { - "c1": 10.59961269323263, - "c2": 9.194690515942732, - "c3": 10.548618440528879, - "c4": 9.171980138579933, - "c5": 8.192029116206637, - "c6": 9.885293018875526, - "c7": 10.388227343795576 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.22884882108183, + "c3": 12.690707350901526, + "c4": 10.15256588072122, + "c5": 7.614424410540915, + "c6": 5.07628294036061, + "c7": 2.538141470180305 }, "rgb": [86, 146, 138] }, @@ -413403,23 +413403,23 @@ "year": 1816, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -12.430753227017764, - "c2": -21.020863621691408, - "c3": 0.4385259713996632, - "c4": -13.33086078956724, - "c5": 0.18965484941377397, - "c6": -5.421416817725657, - "c7": -15.811701148143355 + "points": { + "c1": -3.038999550235861, + "c2": -27.59740217018937, + "c3": -9.02453951859539, + "c4": -11.52642998414457, + "c5": -17.576094786764365, + "c6": -13.03095526465859, + "c7": 22.016904485176575 }, - "vertexSeeds": { - "c1": 5.292459157974848, - "c2": 5.314964394243226, - "c3": 5.363314651105324, - "c4": 5.211820420516946, - "c5": 5.79177699312493, - "c6": 5.46154068524876, - "c7": 5.20571760906315 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147021, + "c3": 6.981044845122509, + "c4": 5.584835876098009, + "c5": 4.188626907073511, + "c6": 2.792417938048997, + "c7": 1.3962089690244985 }, "rgb": [238, 201, 159] }, @@ -413430,23 +413430,23 @@ "year": 1816, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -8.66760970191816, - "c2": -12.288457243364025, - "c3": 3.126698145685509, - "c4": 12.748939386827722, - "c5": 20.443208363958362, - "c6": -21.98932087476883, - "c7": 17.874544825597255 + "points": { + "c1": 21.85985079178443, + "c2": -31.389037485866915, + "c3": 20.864853702230427, + "c4": 22.180680698835566, + "c5": -6.982834951490528, + "c6": 22.047283065369776, + "c7": -16.320863626238967 }, - "vertexSeeds": { - "c1": 5.44499718739049, - "c2": 5.337602898165036, - "c3": 5.427281898102158, - "c4": 5.605553670781709, - "c5": 5.963597724695485, - "c6": 5.454822532104862, - "c7": 5.339473973494102 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589457, + "c3": 7.235321312991224, + "c4": 5.788257050392975, + "c5": 4.3411927877947285, + "c6": 2.8941285251964954, + "c7": 1.4470642625982477 }, "rgb": [77, 76, 132] }, @@ -413457,23 +413457,23 @@ "year": 1817, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 13.627121325714683, - "c2": 9.264545598199952, - "c3": 22.709317036753518, - "c4": -22.856948820581863, - "c5": 3.454652850775396, - "c6": -4.456321771960177, - "c7": -26.00658097872769 + "points": { + "c1": -13.032807487151437, + "c2": -3.0843577137931746, + "c3": -31.21789215187821, + "c4": -30.354985685817496, + "c5": 31.072784787938737, + "c6": -19.62101475908253, + "c7": 37.24344234770505 }, - "vertexSeeds": { - "c1": 7.4278207472762245, - "c2": 8.010801504501275, - "c3": 7.124044948750908, - "c4": 7.318081492995156, - "c5": 7.764262180330491, - "c6": 7.211940192981144, - "c7": 7.091577059705 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772538, + "c3": 9.639389736477115, + "c4": 7.711511789181692, + "c5": 5.783633841886269, + "c6": 3.855755894590846, + "c7": 1.927877947295423 }, "rgb": [238, 201, 159] }, @@ -413484,23 +413484,23 @@ "year": 1816, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": -17.764939266033302, - "c2": 2.6563932839515303, - "c3": -9.465077759505096, - "c4": -4.094373091930233, - "c5": -8.127409095758642, - "c6": 17.008778004419376, - "c7": 21.592087248448763 + "points": { + "c1": -7.634745218238372, + "c2": 17.721639742633116, + "c3": -20.757466413938193, + "c4": 0.2861415988678253, + "c5": 5.152333625968897, + "c6": -22.434167134794023, + "c7": 23.157255173685698 }, - "vertexSeeds": { - "c1": 3.5143013686475246, - "c2": 3.473365588781749, - "c3": 3.383570065091743, - "c4": 3.7081339231500916, - "c5": 3.4282279905239337, - "c6": 3.581985474754776, - "c7": 3.733571337860815 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.5201109570041575, + "c3": 4.600092464170135, + "c4": 3.680073971336105, + "c5": 2.7600554785020828, + "c6": 1.8400369856680525, + "c7": 0.9200184928340301 }, "rgb": [86, 146, 138] }, @@ -413511,23 +413511,23 @@ "year": 1816, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 5.399888524016649, - "c2": -21.44942592418958, - "c3": 11.423716503186295, - "c4": -4.265902693405113, - "c5": 28.303614659874814, - "c6": -30.142767323550082, - "c7": 31.548313575814984 + "points": { + "c1": -1.5832579041200816, + "c2": -24.15488084309962, + "c3": -28.742750271026758, + "c4": 1.0062470481488646, + "c5": -23.779168179945813, + "c6": -6.101853652980175, + "c7": -28.011377331493698 }, - "vertexSeeds": { - "c1": 8.707599590851352, - "c2": 9.093650586912045, - "c3": 8.505035350719075, - "c4": 8.859163472168774, - "c5": 8.729809250353588, - "c6": 8.928559905078572, - "c7": 8.69732989130722 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306522, + "c3": 11.095700416088757, + "c4": 8.876560332871009, + "c5": 6.657420249653261, + "c6": 4.438280166435496, + "c7": 2.219140083217748 }, "rgb": [222, 0, 59] }, @@ -413538,23 +413538,23 @@ "year": 1816, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -18.38489034485175, - "c2": -4.807225857696665, - "c3": 6.434037135051764, - "c4": 12.799514688833202, - "c5": -10.296844317063037, - "c6": -6.704712012473152, - "c7": 8.238170094986469 + "points": { + "c1": -9.853825386820013, + "c2": 7.490792779698744, + "c3": 13.938219272745677, + "c4": 28.474195351400986, + "c5": 1.020627223767839, + "c6": 27.910400193532674, + "c7": -17.1343063031549 }, - "vertexSeeds": { - "c1": 7.966233154846777, - "c2": 7.367646315773811, - "c3": 7.783371782652573, - "c4": 7.644606728580025, - "c5": 7.385919274192247, - "c6": 7.521321580341385, - "c7": 7.952741143828961 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013879, + "c3": 9.778085991678223, + "c4": 7.822468793342585, + "c5": 5.866851595006931, + "c6": 3.9112343966712926, + "c7": 1.9556171983356387 }, "rgb": [222, 0, 59] }, @@ -413565,23 +413565,23 @@ "year": 1816, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -7.255707451692924, - "c2": -9.694459782685064, - "c3": -3.284840512471513, - "c4": 1.3862326911796359, - "c5": 3.595235824594976, - "c6": 5.497593591091576, - "c7": -6.622992742273361 + "points": { + "c1": 16.193542338699437, + "c2": -15.161968216996986, + "c3": 1.21713986884415, + "c4": -15.664864614366113, + "c5": 6.15651053514177, + "c6": 18.080730680143454, + "c7": 9.271949974574415 }, - "vertexSeeds": { - "c1": 1.8138030941312504, - "c2": 1.605841452742769, - "c3": 1.6353728689472438, - "c4": 1.8469397839530426, - "c5": 1.6526657984117685, - "c6": 1.6301879153399168, - "c7": 1.6541894447814822 + "offsets": { + "c1": 3.13915857605178, + "c2": 2.690707350901526, + "c3": 2.242256125751271, + "c4": 1.7938049006010164, + "c5": 1.3453536754507618, + "c6": 0.8969024503005091, + "c7": 0.44845122515025265 }, "rgb": [86, 146, 138] }, @@ -413592,23 +413592,23 @@ "year": 1816, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -27.089451467365244, - "c2": -15.124580815738923, - "c3": 27.458633125649616, - "c4": -8.727815484303115, - "c5": 0.5260115129333052, - "c6": 17.329475849718694, - "c7": 8.873658274014193 + "points": { + "c1": 25.662098270302984, + "c2": -30.005652176081416, + "c3": -7.715631025060233, + "c4": -12.190921263505277, + "c5": -11.945138814003624, + "c6": 26.114650825981684, + "c7": -15.13440894630147 }, - "vertexSeeds": { - "c1": 7.064080775851852, - "c2": 7.727067948005492, - "c3": 7.274796398422463, - "c4": 7.68139823899542, - "c5": 7.687211916014453, - "c6": 7.140537046865709, - "c7": 7.3679380118256335 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812766, + "c3": 9.662505779010633, + "c4": 7.73000462320851, + "c5": 5.797503467406377, + "c6": 3.865002311604255, + "c7": 1.9325011558021334 }, "rgb": [77, 76, 132] }, @@ -413619,23 +413619,23 @@ "year": 1816, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -19.830362583217624, - "c2": -18.689078613067004, - "c3": 16.410921093628396, - "c4": -5.75858136510616, - "c5": 17.61802519429842, - "c6": 31.01145531212309, - "c7": -31.93751302824589 + "points": { + "c1": 33.378147458966396, + "c2": -30.070791316948, + "c3": 13.180717388874626, + "c4": -14.996365762806779, + "c5": 21.443564476648262, + "c6": 28.38304816833694, + "c7": -3.2016220465156984 }, - "vertexSeeds": { - "c1": 6.627773911842356, - "c2": 7.0057129807005305, - "c3": 6.6320791739307, - "c4": 6.593599333889941, - "c5": 6.511892679371423, - "c6": 6.81846335536897, - "c7": 7.073040016915275 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002776, + "c3": 8.622283865002318, + "c4": 6.897827092001857, + "c5": 5.173370319001379, + "c6": 3.4489135460009193, + "c7": 1.7244567730004596 }, "rgb": [238, 201, 159] }, @@ -413646,23 +413646,23 @@ "year": 1817, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -11.197088509340734, - "c2": -27.09489060168257, - "c3": -8.89002380570103, - "c4": 2.769986297465678, - "c5": 25.18026524587266, - "c6": 6.346245124181017, - "c7": -34.20923284651019 + "points": { + "c1": 1.263600180386213, + "c2": 20.204360219424082, + "c3": 28.147513396305605, + "c4": -12.147010508278541, + "c5": 13.406076640386836, + "c6": -22.211902476299585, + "c7": 18.30377947551704 }, - "vertexSeeds": { - "c1": 6.917029827942069, - "c2": 6.935830942047639, - "c3": 7.098723840627751, - "c4": 6.7780466759826785, - "c5": 7.2306414642406684, - "c6": 6.928204675992051, - "c7": 7.0303657127106876 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485432, + "c3": 8.899676375404539, + "c4": 7.119741100323627, + "c5": 5.339805825242716, + "c6": 3.5598705501618046, + "c7": 1.7799352750809116 }, "rgb": [238, 201, 159] }, @@ -413673,23 +413673,23 @@ "year": 1817, "resistanceReported": false, "duration": 43718400, - "curveSeeds": { - "c1": -54.239524607185444, - "c2": -45.1850698145273, - "c3": 3.196759964140753, - "c4": -40.01646916968231, - "c5": 40.47953623464006, - "c6": 57.627369022719826, - "c7": 46.878662339610294 + "points": { + "c1": -43.63454113763108, + "c2": 4.307160193380263, + "c3": -14.633642736678631, + "c4": 19.827360067836402, + "c5": -5.130342348514056, + "c6": 39.98306909819588, + "c7": -48.16570933217529 }, - "vertexSeeds": { - "c1": 9.72578147933909, - "c2": 10.66188410015666, - "c3": 9.597949841747521, - "c4": 10.854659646565622, - "c5": 9.494006688307726, - "c6": 10.209040020515898, - "c7": 10.916240790181467 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644936, + "c3": 13.014331946370774, + "c4": 10.411465557096614, + "c5": 7.80859916782248, + "c6": 5.20573277854832, + "c7": 2.60286638927416 }, "rgb": [222, 0, 59] }, @@ -413700,23 +413700,23 @@ "year": 1816, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -16.763331575047552, - "c2": 3.827162935006932, - "c3": -2.7678360030993368, - "c4": 14.453765215416407, - "c5": -13.879278470326584, - "c6": 13.934386175452783, - "c7": -13.561955231947378 + "points": { + "c1": 3.928917798071364, + "c2": 6.939737387501676, + "c3": 27.147136728030983, + "c4": 10.048930007674759, + "c5": -24.76221862724917, + "c6": -24.572878727785806, + "c7": -6.0771020777934694 }, - "vertexSeeds": { - "c1": 3.9704710662580283, - "c2": 3.7942910384068016, - "c3": 3.988554451604136, - "c4": 4.050846532418402, - "c5": 3.5895342979303324, - "c6": 3.8637185379196706, - "c7": 4.028335079614399 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486822, + "c3": 4.877484974572351, + "c4": 3.901987979657879, + "c5": 2.9264909847434146, + "c6": 1.9509939898289432, + "c7": 0.9754969949144716 }, "rgb": [86, 146, 138] }, @@ -413727,23 +413727,23 @@ "year": 1816, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -13.220361146662569, - "c2": -3.3893224761911007, - "c3": 14.789268809233477, - "c4": -11.933324394108881, - "c5": -4.070796389553749, - "c6": -11.499471968804377, - "c7": 11.365426242859229 + "points": { + "c1": -14.73479691902788, + "c2": -6.9621671086600685, + "c3": -19.739789859310328, + "c4": -5.037330360434595, + "c5": -28.26552687377841, + "c6": 19.751290606741208, + "c7": 3.5341178113485796 }, - "vertexSeeds": { - "c1": 3.5716596727193455, - "c2": 3.5921615515741037, - "c3": 3.360030202777497, - "c4": 3.5317172018502925, - "c5": 3.4931244549396867, - "c6": 3.4261606113513974, - "c7": 3.3826826244123387 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762829, + "c3": 4.461396208969022, + "c4": 3.5691169671752236, + "c5": 2.676837725381418, + "c6": 1.7845584835876118, + "c7": 0.8922792417938059 }, "rgb": [222, 0, 59] }, @@ -413754,23 +413754,23 @@ "year": 1816, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -11.041304422886254, - "c2": -16.071691390063087, - "c3": -4.535445707075997, - "c4": -14.987758350278902, - "c5": 22.114361340705443, - "c6": -13.65458550809473, - "c7": -14.325226054399614 + "points": { + "c1": -21.646827802530368, + "c2": -15.894269591808275, + "c3": -11.607563155016834, + "c4": 20.82543873534601, + "c5": 18.977469997729905, + "c6": 11.844600569126563, + "c7": -9.858112870852356 }, - "vertexSeeds": { - "c1": 14.76274418648189, - "c2": 14.848203391313334, - "c3": 15.040239389931811, - "c4": 15.298950245838698, - "c5": 15.540117997808494, - "c6": 14.4973616317919, - "c7": 14.07041577964621 + "offsets": { + "c1": 26.116504854368934, + "c2": 22.385575589459098, + "c3": 18.654646324549233, + "c4": 14.9237170596394, + "c5": 11.192787794729533, + "c6": 7.4618585298197, + "c7": 3.730929264909834 }, "rgb": [238, 201, 159] }, @@ -413781,23 +413781,23 @@ "year": 1816, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -18.408751928832938, - "c2": -26.986072910319997, - "c3": 14.09320149986706, - "c4": 23.12003748348474, - "c5": 26.130453887611804, - "c6": -14.764981529784302, - "c7": 14.118935710638969 + "points": { + "c1": 6.1826337492731405, + "c2": -23.875380252422097, + "c3": -18.812058391030348, + "c4": -28.985721481539837, + "c5": -10.387589765210787, + "c6": 11.087485668327563, + "c7": -12.083822444054903 }, - "vertexSeeds": { - "c1": 4.6731741858393265, - "c2": 4.229774040587109, - "c3": 4.692890218114366, - "c4": 4.5888320749801155, - "c5": 4.728083134240711, - "c6": 4.74289706178756, - "c7": 4.402916833439612 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934811, + "c3": 5.709662505779008, + "c4": 4.567730004623205, + "c5": 3.4257975034674018, + "c6": 2.283865002311606, + "c7": 1.1419325011557955 }, "rgb": [86, 146, 138] }, @@ -413808,23 +413808,23 @@ "year": 1816, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -1.8835812049914935, - "c2": -8.260698855948334, - "c3": 24.59763710143666, - "c4": -5.867983152260365, - "c5": 23.76666960389688, - "c6": -2.7050403331840727, - "c7": -22.37235506174322 + "points": { + "c1": 5.447143992926456, + "c2": -20.098286266851666, + "c3": 11.86613680457529, + "c4": -7.442702886143579, + "c5": 21.995698347231034, + "c6": -25.150676159147746, + "c7": -10.396998434527998 }, - "vertexSeeds": { - "c1": 3.192117318292854, - "c2": 3.305552702238364, - "c3": 3.251802470410853, - "c4": 3.2018533213219538, - "c5": 3.2043566598238584, - "c6": 3.2390113891284393, - "c7": 3.1488214601308724 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400835, + "c3": 4.253351826167357, + "c4": 3.4026814609338873, + "c5": 2.5520110957004176, + "c6": 1.7013407304669474, + "c7": 0.8506703652334701 }, "rgb": [77, 76, 132] }, @@ -413835,23 +413835,23 @@ "year": 1817, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -22.325680662000792, - "c2": -1.150487066635364, - "c3": -18.351576045717472, - "c4": -33.78987100612222, - "c5": 27.076244840782536, - "c6": -27.377209711161104, - "c7": 20.543667349049343 + "points": { + "c1": -22.818885412549804, + "c2": 3.6588657863508374, + "c3": 35.38369339145652, + "c4": 34.59273806314009, + "c5": -32.59903522558342, + "c6": 11.241220958332526, + "c7": 16.9778875981132 }, - "vertexSeeds": { - "c1": 4.286868238563117, - "c2": 3.9980766471262537, - "c3": 3.9344725092718695, - "c4": 4.331550489227494, - "c5": 3.833693325213315, - "c6": 4.144781840535979, - "c7": 3.9416742087654777 + "offsets": { + "c1": 7.313915857605179, + "c2": 6.269070735090151, + "c3": 5.224225612575128, + "c4": 4.1793804900601, + "c5": 3.134535367545079, + "c6": 2.08969024503005, + "c7": 1.0448451225150288 }, "rgb": [222, 0, 59] }, @@ -413862,23 +413862,23 @@ "year": 1817, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -19.28525415242127, - "c2": -0.5364698199346165, - "c3": -18.651725966612887, - "c4": -21.257207864067908, - "c5": 28.297881863027634, - "c6": -10.223375771446769, - "c7": -14.372727906758413 + "points": { + "c1": -13.077433387234112, + "c2": 26.824924032551763, + "c3": -6.639743889847512, + "c4": -19.047588263008315, + "c5": 27.150536858695993, + "c6": 0.043222850101550137, + "c7": -32.29566943756585 }, - "vertexSeeds": { - "c1": 8.898159027092557, - "c2": 7.924919965391642, - "c3": 8.071711378030274, - "c4": 8.364015181724609, - "c5": 8.78641943854235, - "c6": 8.710895992565137, - "c7": 9.373268245178476 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708735, + "c3": 11.326860841423953, + "c4": 9.06148867313916, + "c5": 6.796116504854368, + "c6": 4.530744336569585, + "c7": 2.2653721682847925 }, "rgb": [77, 76, 132] }, @@ -413889,23 +413889,23 @@ "year": 1816, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 26.152628285658718, - "c2": 15.983960050267466, - "c3": -1.0229449643830293, - "c4": -0.8894022075319903, - "c5": -9.204318536890227, - "c6": -22.97729450618372, - "c7": 19.712849632429307 + "points": { + "c1": -10.026734869059812, + "c2": -14.52868655912243, + "c3": -26.36482094556973, + "c4": 12.689654943379455, + "c5": 12.63168966442645, + "c6": -1.164211854109027, + "c7": 29.465757544408856 }, - "vertexSeeds": { - "c1": 6.53729508516699, - "c2": 6.403110124026802, - "c3": 6.036679253191004, - "c4": 6.171392984008011, - "c5": 6.446721605597195, - "c6": 5.6759564596723395, - "c7": 6.399846194927212 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836336, + "c3": 7.951918631530278, + "c4": 6.36153490522422, + "c5": 4.771151178918173, + "c6": 3.180767452612116, + "c7": 1.590383726306058 }, "rgb": [58, 15, 49] }, @@ -413916,23 +413916,23 @@ "year": 1816, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 21.36541114347777, - "c2": 24.563988552438193, - "c3": -26.675770439154338, - "c4": -13.718541955942372, - "c5": -21.71334014939017, - "c6": 27.829031848452633, - "c7": 9.229127495786319 + "points": { + "c1": -26.388999109938318, + "c2": -20.68513751724152, + "c3": -15.849884267679439, + "c4": 28.703593011936515, + "c5": 27.151781964824803, + "c6": 1.3366089861753245, + "c7": 9.215051685958418 }, - "vertexSeeds": { - "c1": 10.346582582377692, - "c2": 10.128262728063103, - "c3": 9.862156752530503, - "c4": 9.645969371569503, - "c5": 9.743980451910529, - "c6": 9.720183449258235, - "c7": 10.030014213930047 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.84049930651871, + "c3": 12.367082755432273, + "c4": 9.893666204345823, + "c5": 7.420249653259372, + "c6": 4.946833102172903, + "c7": 2.4734165510864687 }, "rgb": [77, 76, 132] }, @@ -413943,23 +413943,23 @@ "year": 1816, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -1.881516968238131, - "c2": 2.6488302223120392, - "c3": -11.468355602366028, - "c4": 15.350054343631477, - "c5": 3.832440631669659, - "c6": -16.896417889637483, - "c7": 20.07154061440628 + "points": { + "c1": 13.105959536687351, + "c2": 17.16184050672485, + "c3": 4.101413915270097, + "c4": -16.026021161005872, + "c5": 7.0992107048361035, + "c6": -3.7924407194337455, + "c7": -7.664859871547698 }, - "vertexSeeds": { - "c1": 6.11424160580467, - "c2": 5.628545522613072, - "c3": 5.754963332154561, - "c4": 6.20068595125184, - "c5": 5.916265498283446, - "c6": 6.222415490979203, - "c7": 5.733006257855562 + "offsets": { + "c1": 10.453074433656957, + "c2": 8.95977808599168, + "c3": 7.466481738326403, + "c4": 5.973185390661125, + "c5": 4.479889042995847, + "c6": 2.986592695330555, + "c7": 1.4932963476652774 }, "rgb": [238, 201, 159] }, @@ -413970,23 +413970,23 @@ "year": 1816, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -11.430831345818163, - "c2": 19.236714207608543, - "c3": -14.90041657002712, - "c4": -6.698905222158107, - "c5": 24.089542470783883, - "c6": -2.6302104428620083, - "c7": -21.745072964974657 + "points": { + "c1": -16.420638825908362, + "c2": 19.458724601845667, + "c3": 16.213554976759625, + "c4": -16.522795731722702, + "c5": -18.544040540467584, + "c6": 24.789251376288945, + "c7": 0.9091955150961475 }, - "vertexSeeds": { - "c1": 9.918844454809896, - "c2": 10.58568144375399, - "c3": 10.67439424571809, - "c4": 9.732290279551043, - "c5": 10.00972611013443, - "c6": 10.055520042103842, - "c7": 9.728321875957338 + "offsets": { + "c1": 17.864077669902912, + "c2": 15.312066574202492, + "c3": 12.760055478502068, + "c4": 10.208044382801686, + "c5": 7.656033287101264, + "c6": 5.104022191400843, + "c7": 2.5520110957004216 }, "rgb": [58, 15, 49] }, @@ -413997,23 +413997,23 @@ "year": 1816, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 16.614929703722588, - "c2": 25.32497100518121, - "c3": -18.53354671986439, - "c4": 26.296426625747642, - "c5": 13.436977866415127, - "c6": 2.605685706945952, - "c7": -18.89974435460794 + "points": { + "c1": -7.97440967455864, + "c2": -28.89564666228713, + "c3": 9.459823280474609, + "c4": -4.38363201815762, + "c5": 10.053351016256627, + "c6": -11.081174086450574, + "c7": 20.67263598852766 }, - "vertexSeeds": { - "c1": 8.34805172837165, - "c2": 8.557699173774578, - "c3": 8.074919756202304, - "c4": 8.692255516373372, - "c5": 8.556657725356795, - "c6": 8.439919352256648, - "c7": 8.052636429572752 + "offsets": { + "c1": 14.757281553398057, + "c2": 12.649098474341184, + "c3": 10.54091539528433, + "c4": 8.432732316227456, + "c5": 6.324549237170602, + "c6": 4.216366158113728, + "c7": 2.1081830790568543 }, "rgb": [86, 146, 138] }, @@ -414024,23 +414024,23 @@ "year": 1816, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 20.113168674463903, - "c2": 5.7002957660849205, - "c3": -0.7086619937192395, - "c4": -16.067128642059146, - "c5": 24.97966457324458, - "c6": -16.9456562914566, - "c7": -23.95183300378704 + "points": { + "c1": -8.113161767381872, + "c2": -4.292703517226066, + "c3": 1.1119754705835554, + "c4": -6.901786743769854, + "c5": 3.122896966860978, + "c6": -26.15208950103021, + "c7": 1.956522130051436 }, - "vertexSeeds": { - "c1": 8.337781253759788, - "c2": 8.580953859144103, - "c3": 8.185250467066826, - "c4": 8.81205365191954, - "c5": 8.243392562690774, - "c6": 8.765977115185416, - "c7": 8.199957094784287 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542293, + "c3": 10.656495607951923, + "c4": 8.52519648636153, + "c5": 6.393897364771156, + "c6": 4.262598243180765, + "c7": 2.1312991215903923 }, "rgb": [238, 201, 159] }, @@ -414051,23 +414051,23 @@ "year": 1816, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 20.78208821156644, - "c2": 17.829182699046648, - "c3": 0.4367797603810182, - "c4": -5.304455894624212, - "c5": -7.296745559848791, - "c6": 15.912797248303406, - "c7": -16.76936631278622 + "points": { + "c1": 17.88296077838448, + "c2": -22.469330180614644, + "c3": 16.84901035917361, + "c4": 11.08259994770252, + "c5": 9.203661950057288, + "c6": -15.237862693578423, + "c7": -4.675692911041249 }, - "vertexSeeds": { - "c1": 8.082891841962622, - "c2": 8.054127525334595, - "c3": 8.088529037972892, - "c4": 8.177656277982953, - "c5": 8.04572670968283, - "c6": 8.020011321379911, - "c7": 8.392639303555104 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737864, + "c3": 10.194174757281553, + "c4": 8.155339805825243, + "c5": 6.116504854368932, + "c6": 4.077669902912621, + "c7": 2.0388349514563107 }, "rgb": [58, 15, 49] }, @@ -414078,23 +414078,23 @@ "year": 1817, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -10.173426826759474, - "c2": -8.131102935830356, - "c3": -12.715704095988357, - "c4": -28.584091979307075, - "c5": 9.02713287244034, - "c6": 21.6260129212219, - "c7": -12.527222761251817 + "points": { + "c1": 29.15167791912087, + "c2": 3.860100090740012, + "c3": 13.802213476551735, + "c4": -7.659316915780067, + "c5": -8.679553131243186, + "c6": 21.82202926165192, + "c7": 30.75235625229425 }, - "vertexSeeds": { - "c1": 8.501988710762372, - "c2": 8.74967433222642, - "c3": 8.667952570142305, - "c4": 8.665868951306336, - "c5": 8.765012607215043, - "c6": 8.646010161709176, - "c7": 8.690436347645745 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381409, + "c3": 10.564031437817837, + "c4": 8.45122515025428, + "c5": 6.3384188626907045, + "c6": 4.225612575127131, + "c7": 2.1128062875635583 }, "rgb": [222, 0, 59] }, @@ -414105,23 +414105,23 @@ "year": 1816, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -6.674493816542313, - "c2": 13.37220866161364, - "c3": 22.48688725888588, - "c4": 12.30410268985203, - "c5": -15.919973458620838, - "c6": 24.410093378331652, - "c7": 8.44348667395149 + "points": { + "c1": 12.344526976315834, + "c2": -24.883943182178093, + "c3": 7.9083216535386995, + "c4": 17.07812601143648, + "c5": -6.6127364111486315, + "c6": 27.78036802172879, + "c7": -11.957832604069498 }, - "vertexSeeds": { - "c1": 1.7748093579599922, - "c2": 1.7997853332890328, - "c3": 1.9768598277845237, - "c4": 1.916041187440718, - "c5": 1.8684931967969856, - "c6": 1.8659507142101504, - "c7": 1.9357547859892443 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.8848821081830787, + "c3": 2.404068423485901, + "c4": 1.9232547387887202, + "c5": 1.4424410540915393, + "c6": 0.9616273693943582, + "c7": 0.480813684697181 }, "rgb": [222, 0, 59] }, @@ -414132,23 +414132,23 @@ "year": 1817, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 19.444011368435373, - "c2": -27.874773494122945, - "c3": 11.240371110635966, - "c4": 2.2926492983605478, - "c5": -8.221011801161566, - "c6": -16.743038848091462, - "c7": 23.57872452420509 + "points": { + "c1": 5.443365938503035, + "c2": 15.449431772001532, + "c3": -4.41508390453631, + "c4": -12.715066491001412, + "c5": 29.477153706760674, + "c6": -9.515724414806218, + "c7": -2.6571541825550042 }, - "vertexSeeds": { - "c1": 5.1746869357432725, - "c2": 5.6290902773812155, - "c3": 5.373909502816181, - "c4": 5.358812825561188, - "c5": 5.810068865215532, - "c6": 5.784972219221976, - "c7": 5.196136712899148 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147021, + "c3": 6.981044845122509, + "c4": 5.584835876098009, + "c5": 4.188626907073511, + "c6": 2.792417938048997, + "c7": 1.3962089690244985 }, "rgb": [77, 76, 132] }, @@ -414159,23 +414159,23 @@ "year": 1817, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -11.816276907443545, - "c2": 22.49788478188058, - "c3": -30.454512781424782, - "c4": -6.586656893578699, - "c5": 34.544122207893494, - "c6": 12.545393683272131, - "c7": 7.884262320156317 + "points": { + "c1": -28.654017414315057, + "c2": -7.511222474770737, + "c3": -24.174807987571803, + "c4": 16.510063125428964, + "c5": -33.20378917255448, + "c6": -3.4701708449871944, + "c7": 18.249457560916113 }, - "vertexSeeds": { - "c1": 5.7952016385838405, - "c2": 6.06154795442527, - "c3": 6.1483015319156795, - "c4": 6.286355846716688, - "c5": 5.8761867032801325, - "c6": 6.358470730818246, - "c7": 6.156819052805294 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434126, + "c3": 7.7207582061950975, + "c4": 6.176606564956084, + "c5": 4.632454923717055, + "c6": 3.088303282478042, + "c7": 1.5441516412390286 }, "rgb": [222, 0, 59] }, @@ -414186,23 +414186,23 @@ "year": 1817, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -24.423808952715763, - "c2": 17.079399327831567, - "c3": -22.99667685520575, - "c4": -19.177271703636038, - "c5": -22.81026871752546, - "c6": 7.674787097598887, - "c7": 27.67956452478756 + "points": { + "c1": -24.443899068933867, + "c2": 0.7609068077599872, + "c3": 7.69556736611149, + "c4": -24.253342380256495, + "c5": -30.45162946075785, + "c6": -30.645768818689636, + "c7": 19.915800212042797 }, - "vertexSeeds": { - "c1": 7.0720430287543214, - "c2": 6.96624810123953, - "c3": 7.0392656700408915, - "c4": 7.190962281047409, - "c5": 7.005415848920957, - "c6": 7.109419016439475, - "c7": 7.071973455341133 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324548, + "c3": 8.807212205270453, + "c4": 7.0457697642163595, + "c5": 5.284327323162283, + "c6": 3.5228848821081886, + "c7": 1.7614424410540943 }, "rgb": [222, 0, 59] }, @@ -414213,23 +414213,23 @@ "year": 1817, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 1.1124086922546184, - "c2": 17.371809249552356, - "c3": 11.383119430657075, - "c4": -13.164415290916594, - "c5": 28.920145194085592, - "c6": 6.8019286874788705, - "c7": 14.641303088197922 + "points": { + "c1": -10.42165287288044, + "c2": -18.16742598535475, + "c3": -27.073710056483293, + "c4": -25.715872247239098, + "c5": -3.744855949444858, + "c6": -26.99621601703082, + "c7": 25.182412231152824 }, - "vertexSeeds": { - "c1": 7.632070734616894, - "c2": 9.278818152298212, - "c3": 7.736689918486334, - "c4": 8.619149671186445, - "c5": 9.50049166265899, - "c6": 8.616981586775882, - "c7": 8.76362857050317 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.174757281553397, + "c3": 11.81229773462783, + "c4": 9.449838187702271, + "c5": 7.087378640776702, + "c6": 4.724919093851136, + "c7": 2.362459546925568 }, "rgb": [86, 146, 138] }, @@ -414240,23 +414240,23 @@ "year": 1816, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 2.5449763463148933, - "c2": -1.3994789758966242, - "c3": 5.714145675107776, - "c4": -16.70058044449051, - "c5": 4.779667270605589, - "c6": -6.2632380375469445, - "c7": -15.27443294747371 + "points": { + "c1": 13.829535091227843, + "c2": 13.583906977767501, + "c3": -0.2929508377147023, + "c4": -16.277986173024228, + "c5": -13.472449342238026, + "c6": 10.262350734858206, + "c7": 3.8081477351532733 }, - "vertexSeeds": { - "c1": 10.047122165159763, - "c2": 9.246379626121875, - "c3": 9.705216357300559, - "c4": 9.987093269371542, - "c5": 9.72538144925415, - "c6": 10.061810579951798, - "c7": 10.071090690142952 + "offsets": { + "c1": 16.86084142394822, + "c2": 14.452149791955616, + "c3": 12.043458159963015, + "c4": 9.634766527970411, + "c5": 7.226074895977808, + "c6": 4.817383263985206, + "c7": 2.408691631992603 }, "rgb": [238, 201, 159] }, @@ -414267,23 +414267,23 @@ "year": 1817, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -0.19067378360068687, - "c2": -27.04782532498824, - "c3": 23.565945301341717, - "c4": 3.393613728146118, - "c5": -22.11650041847752, - "c6": 18.08935793346807, - "c7": 22.567170388721873 + "points": { + "c1": 24.053331105585567, + "c2": 12.768549713379667, + "c3": 25.75838074840556, + "c4": -25.79109122230108, + "c5": -3.8481503726088775, + "c6": -16.691463378962823, + "c7": -24.293455426964886 }, - "vertexSeeds": { - "c1": 4.626285157591626, - "c2": 4.652398751759279, - "c3": 4.498784726865261, - "c4": 4.441817462895928, - "c5": 4.732773309407843, - "c6": 4.744617597251966, - "c7": 4.72080247512284 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894594, + "c3": 5.686546463245488, + "c4": 4.549237170596393, + "c5": 3.411927877947297, + "c6": 2.2746185852981915, + "c7": 1.1373092926490957 }, "rgb": [58, 15, 49] }, @@ -414294,23 +414294,23 @@ "year": 1817, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -16.91845950706842, - "c2": 9.7919087113155, - "c3": 19.44129552786169, - "c4": 12.951509531177571, - "c5": 20.130155102409397, - "c6": 2.758240397696312, - "c7": 8.100184948003019 + "points": { + "c1": 12.896120555493098, + "c2": 1.3365841621501318, + "c3": 18.332914408022774, + "c4": 2.758320139952687, + "c5": -6.415948647804992, + "c6": 27.321834235775036, + "c7": -22.61453458322691 }, - "vertexSeeds": { - "c1": 10.840967434746805, - "c2": 11.106262473791805, - "c3": 11.161136370016838, - "c4": 10.813122773020213, - "c5": 10.981695486060838, - "c6": 10.602921055354587, - "c7": 10.882445967888872 + "offsets": { + "c1": 19.385113268608414, + "c2": 16.615811373092946, + "c3": 13.846509477577433, + "c4": 11.077207582061963, + "c5": 8.307905686546452, + "c6": 5.538603791030981, + "c7": 2.7693018955154702 }, "rgb": [58, 15, 49] }, @@ -414321,23 +414321,23 @@ "year": 1817, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 23.907085446732236, - "c2": 12.9500766454814, - "c3": -21.66021945805102, - "c4": 16.380907831657748, - "c5": -15.59461931106898, - "c6": 0.728436793266102, - "c7": -20.082698134341 + "points": { + "c1": -11.529587481975252, + "c2": -23.29775518159273, + "c3": 21.81524777723187, + "c4": -15.82803830139201, + "c5": 20.523088616061546, + "c6": -23.193146654917474, + "c7": -21.966318701434304 }, - "vertexSeeds": { - "c1": 2.5149105573983883, - "c2": 2.7179247395177506, - "c3": 2.7883910104962535, - "c4": 2.6676672695425987, - "c5": 2.4879989560333833, - "c6": 2.6792417469316234, - "c7": 2.707915848583525 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.049930651872398, + "c3": 3.3749422098936632, + "c4": 2.6999537679149355, + "c5": 2.0249653259362006, + "c6": 1.349976883957466, + "c7": 0.6749884419787311 }, "rgb": [58, 15, 49] }, @@ -414348,23 +414348,23 @@ "year": 1817, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -24.035599584559126, - "c2": -0.8953410543674849, - "c3": 1.4871266800223353, - "c4": 4.722222592235163, - "c5": -16.15611386322952, - "c6": 9.246139543659645, - "c7": 22.17680396246488 + "points": { + "c1": 1.4365110217801274, + "c2": -20.99916962879707, + "c3": -6.668080676869437, + "c4": 22.18577540016871, + "c5": 27.945509413506876, + "c6": -21.320006810490987, + "c7": -25.66304944911113 }, - "vertexSeeds": { - "c1": 10.422573430042151, - "c2": 10.325659853488961, - "c3": 9.732401806489047, - "c4": 9.616187941871988, - "c5": 9.54189877291088, - "c6": 9.877688958416051, - "c7": 10.71113774824343 + "offsets": { + "c1": 18.058252427184467, + "c2": 15.47850208044382, + "c3": 12.898751733703197, + "c4": 10.31900138696255, + "c5": 7.739251040221916, + "c6": 5.159500693481281, + "c7": 2.579750346740635 }, "rgb": [77, 76, 132] }, @@ -414375,23 +414375,23 @@ "year": 1817, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -2.70499238198461, - "c2": 23.94401013224587, - "c3": 4.090459552183756, - "c4": -13.158490968922356, - "c5": -8.217997825642424, - "c6": 15.565916546551101, - "c7": -22.152929605470426 + "points": { + "c1": 12.276218543921964, + "c2": 24.993066330135264, + "c3": 13.610279887998956, + "c4": 0.10423496770659924, + "c5": -7.935149659813941, + "c6": -9.451740519565025, + "c7": 4.2690007909998045 }, - "vertexSeeds": { - "c1": 7.9503771438206625, - "c2": 8.564581361688195, - "c3": 8.76756406204509, - "c4": 8.709232433248987, - "c5": 8.884583100469747, - "c6": 8.49097616981202, - "c7": 8.051805131735964 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.84327323162274, + "c3": 10.702727693018955, + "c4": 8.56218215441516, + "c5": 6.421636615811377, + "c6": 4.28109107720758, + "c7": 2.1405455386037824 }, "rgb": [222, 0, 59] }, @@ -414402,23 +414402,23 @@ "year": 1817, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -6.16686861450372, - "c2": -31.221221026908925, - "c3": 7.521380626237466, - "c4": -30.61150872243659, - "c5": -17.587563830308085, - "c6": -27.29197350281147, - "c7": -6.724893478045825 + "points": { + "c1": -26.13331598738737, + "c2": -6.932546716719813, + "c3": -28.628233660227355, + "c4": 25.515754475676694, + "c5": 0.538133630211135, + "c6": 34.401327366225225, + "c7": -24.769966912335356 }, - "vertexSeeds": { - "c1": 4.445496645462868, - "c2": 4.677724298769592, - "c3": 4.645309479684374, - "c4": 4.661113502412702, - "c5": 4.507131610433555, - "c6": 4.209906353328615, - "c7": 4.707798338732179 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854366, + "c3": 5.6634304207119746, + "c4": 4.530744336569577, + "c5": 3.3980582524271865, + "c6": 2.2653721682847885, + "c7": 1.1326860841423905 }, "rgb": [86, 146, 138] }, @@ -414429,23 +414429,23 @@ "year": 1817, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 3.667672992906862, - "c2": -16.88226045837927, - "c3": -4.85221068049832, - "c4": 21.600899019971497, - "c5": -11.2683555868702, - "c6": 8.775217995182697, - "c7": 8.903652927808817 + "points": { + "c1": -28.012123593624306, + "c2": -27.54650337674488, + "c3": 16.930688283711252, + "c4": -15.408363784886209, + "c5": 12.002219903306088, + "c6": 21.11511492322658, + "c7": -22.868660313604646 }, - "vertexSeeds": { - "c1": 6.337966045962622, - "c2": 6.2208582000153845, - "c3": 6.547843971901705, - "c4": 5.939777688147015, - "c5": 5.903507009057522, - "c6": 6.487329638701466, - "c7": 6.213100759713278 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836338, + "c3": 7.9519186315302814, + "c4": 6.361534905224225, + "c5": 4.771151178918169, + "c6": 3.1807674526121126, + "c7": 1.5903837263060563 }, "rgb": [222, 0, 59] }, @@ -414456,23 +414456,23 @@ "year": 1817, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -28.382115467378078, - "c2": 16.312752262484494, - "c3": 25.631896514461424, - "c4": -2.6931163755874223, - "c5": -24.05251991686439, - "c6": 22.301060011232074, - "c7": -21.19332975862682 + "points": { + "c1": -36.04332599526355, + "c2": 8.521747365171507, + "c3": -5.9079693861135, + "c4": 33.43508481936457, + "c5": -6.782981025344895, + "c6": 23.11583100527045, + "c7": -6.273167554858098 }, - "vertexSeeds": { - "c1": 3.7873622767297555, - "c2": 3.6054415417813233, - "c3": 3.5809227708266227, - "c4": 3.647824358346363, - "c5": 3.683024542288332, - "c6": 3.9051676431928826, - "c7": 3.6933506581924163 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165046, + "c3": 4.69255663430421, + "c4": 3.754045307443367, + "c5": 2.815533980582523, + "c6": 1.877022653721687, + "c7": 0.9385113268608435 }, "rgb": [238, 201, 159] }, @@ -414483,23 +414483,23 @@ "year": 1817, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 5.389756224972537, - "c2": -15.60643325436661, - "c3": 12.487578598710193, - "c4": 13.533605464925074, - "c5": 15.908535499759864, - "c6": -19.556602064408104, - "c7": 14.38372387833224 + "points": { + "c1": -18.09654944453401, + "c2": 18.645659009088682, + "c3": -17.503151525998987, + "c4": -10.62031366482747, + "c5": -18.06037433926518, + "c6": -11.241428447652826, + "c7": -5.919545770038123 }, - "vertexSeeds": { - "c1": 8.359504282793054, - "c2": 8.150634783736272, - "c3": 8.371596760583337, - "c4": 8.430598662314171, - "c5": 8.477793650917407, - "c6": 7.962008261708146, - "c7": 7.65231838841981 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938977, + "c3": 10.30975496994915, + "c4": 8.247803975959307, + "c5": 6.1858529819694805, + "c6": 4.123901987979654, + "c7": 2.061950993989827 }, "rgb": [58, 15, 49] }, @@ -414510,23 +414510,23 @@ "year": 1817, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -8.501378274762427, - "c2": 10.29013607617717, - "c3": 26.37228865910309, - "c4": 0.2921795539577978, - "c5": -26.95826220918209, - "c6": -18.467045566989974, - "c7": 19.634130431511423 + "points": { + "c1": -13.55012518252978, + "c2": 21.35425106532957, + "c3": 22.530037919471447, + "c4": 4.397322642236141, + "c5": 1.5131862439111252, + "c6": -27.608516300733616, + "c7": -18.06995234069663 }, - "vertexSeeds": { - "c1": 9.616400557293616, - "c2": 9.971786101440811, - "c3": 9.076529695594244, - "c4": 9.05497464108604, - "c5": 9.563034204656239, - "c6": 9.557176844742518, - "c7": 9.455976147197859 + "offsets": { + "c1": 16.796116504854368, + "c2": 14.396671289875178, + "c3": 11.997226074895986, + "c4": 9.59778085991678, + "c5": 7.198335644937589, + "c6": 4.798890429958397, + "c7": 2.399445214979191 }, "rgb": [86, 146, 138] }, @@ -414537,23 +414537,23 @@ "year": 1817, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 15.009079287206546, - "c2": 23.010925179277244, - "c3": 2.8919223009852217, - "c4": -32.14896672518567, - "c5": -24.903087506916446, - "c6": -31.230270593921475, - "c7": -6.628831245159596 + "points": { + "c1": -24.76587001467632, + "c2": 5.323207450947741, + "c3": 10.22623842921778, + "c4": -15.252128951563872, + "c5": 1.9151592395168464, + "c6": -31.949946636263125, + "c7": 6.2852980901952336 }, - "vertexSeeds": { - "c1": 8.542630199001394, - "c2": 8.430765410105556, - "c3": 8.106515306142112, - "c4": 8.566372732854518, - "c5": 8.532569499714414, - "c6": 8.18857481244368, - "c7": 8.232192684605803 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858517, + "c3": 10.26352288488211, + "c4": 8.210818307905678, + "c5": 6.158113730929273, + "c6": 4.105409153952839, + "c7": 2.0527045769764336 }, "rgb": [86, 146, 138] }, @@ -414564,23 +414564,23 @@ "year": 1817, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": -13.511872094084584, - "c2": -6.802459258406682, - "c3": -18.92830911578782, - "c4": 29.295212253977667, - "c5": 31.48696494102542, - "c6": 3.843658560644549, - "c7": 11.341210158268083 + "points": { + "c1": -8.507841602348726, + "c2": 2.400699251009968, + "c3": -31.661206936261312, + "c4": 26.813199101885935, + "c5": 33.765555964098496, + "c6": 8.493032491337651, + "c7": 3.5856808519668633 }, - "vertexSeeds": { - "c1": 2.588572320170999, - "c2": 2.5340462395311456, - "c3": 2.547478988474449, - "c4": 2.531148011192144, - "c5": 2.6108984788787146, - "c6": 2.6413086811424242, - "c7": 2.508520482523173 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.800277392510405, + "c3": 3.1668978270920065, + "c4": 2.5335182616736085, + "c5": 1.9001386962551945, + "c6": 1.2667591308367963, + "c7": 0.6333795654183981 }, "rgb": [77, 76, 132] }, @@ -414591,23 +414591,23 @@ "year": 1817, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 27.855790424973854, - "c2": 23.878898312115382, - "c3": 14.530496259376712, - "c4": -14.883015594117726, - "c5": -25.181983252808642, - "c6": -27.96441663620594, - "c7": -16.721840960019676 + "points": { + "c1": -30.171586886927123, + "c2": 18.69993575764081, + "c3": 27.75812521709053, + "c4": -27.606252933482974, + "c5": 32.61709576087683, + "c6": 34.22712925892741, + "c7": 16.164619460067904 }, - "vertexSeeds": { - "c1": 6.580656922490278, - "c2": 6.761722672605539, - "c3": 7.061769681236924, - "c4": 7.094110925991829, - "c5": 6.717081791787989, - "c6": 7.117238881770324, - "c7": 7.176079850812419 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.54091539528433, + "c3": 8.784096162736942, + "c4": 7.027276930189545, + "c5": 5.270457697642159, + "c6": 3.5136384650947723, + "c7": 1.7568192325473861 }, "rgb": [77, 76, 132] }, @@ -414618,23 +414618,23 @@ "year": 1817, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 30.351883710026208, - "c2": 15.017811303533492, - "c3": -0.6579186890767303, - "c4": 33.02109264962326, - "c5": -35.15993215045114, - "c6": 21.315121009603324, - "c7": -7.9564175001767055 + "points": { + "c1": 18.465329956347006, + "c2": 4.826918103498343, + "c3": 30.8875230558287, + "c4": -26.33270719224153, + "c5": -34.772721304987755, + "c6": -30.29756050103198, + "c7": -27.03429078787043 }, - "vertexSeeds": { - "c1": 1.5120994687153706, - "c2": 1.4566842073721573, - "c3": 1.4404962147275906, - "c4": 1.4492137413037112, - "c5": 1.429542281787426, - "c6": 1.4273374106207752, - "c7": 1.5979062197342384 + "offsets": { + "c1": 2.7831715210355985, + "c2": 2.3855755894590853, + "c3": 1.9879796578825693, + "c4": 1.5903837263060558, + "c5": 1.1927877947295427, + "c6": 0.7951918631530266, + "c7": 0.3975959315765133 }, "rgb": [222, 0, 59] }, @@ -414645,23 +414645,23 @@ "year": 1817, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -13.098326304828552, - "c2": 4.698948058230929, - "c3": -9.885337005470827, - "c4": -25.242867131148323, - "c5": 23.7495207692988, - "c6": -15.777399755596386, - "c7": -9.946617313249824 + "points": { + "c1": -21.119535651753605, + "c2": -14.211581060279759, + "c3": 13.401695477868497, + "c4": 20.880896145358566, + "c5": -10.80225443957288, + "c6": 25.931745979199025, + "c7": 0.6734328198791459 }, - "vertexSeeds": { - "c1": 3.053503091344376, - "c2": 3.146708468662732, - "c3": 2.847011133128787, - "c4": 3.148785590869279, - "c5": 2.929381002553429, - "c6": 3.1919594427928635, - "c7": 3.0303977391776407 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [58, 15, 49] }, @@ -414672,23 +414672,23 @@ "year": 1817, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 20.79449257251676, - "c2": -14.546736593784885, - "c3": -16.94120112900802, - "c4": 9.549612757580796, - "c5": -13.416344612797092, - "c6": 0.5551902419045014, - "c7": -15.078259501550091 + "points": { + "c1": -21.445124028165583, + "c2": -0.5677945695874698, + "c3": -11.466441091191772, + "c4": -14.053257013556685, + "c5": -6.27450208661616, + "c6": -3.4265321875505528, + "c7": -1.2608130997328644 }, - "vertexSeeds": { - "c1": 7.7529749689355985, - "c2": 7.633403901366405, - "c3": 7.5129568945096885, - "c4": 6.85741483059169, - "c5": 7.617004058076406, - "c6": 6.777500700644373, - "c7": 6.303811884185815 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249654, + "c3": 9.338881183541377, + "c4": 7.471104946833099, + "c5": 5.603328710124822, + "c6": 3.7355524734165466, + "c7": 1.86777623670827 }, "rgb": [86, 146, 138] }, @@ -414699,23 +414699,23 @@ "year": 1817, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 4.077000579446569, - "c2": -12.895799883305418, - "c3": 8.401809381279815, - "c4": -19.682154609723128, - "c5": -1.744827880845687, - "c6": 5.215392553807508, - "c7": -10.34026411335571 + "points": { + "c1": -0.4156056237644563, + "c2": 25.307178269606656, + "c3": 12.106520998445038, + "c4": -14.855029558511454, + "c5": 23.134982361521697, + "c6": -20.250094552785892, + "c7": 4.6003475559162155 }, - "vertexSeeds": { - "c1": 4.707492097476536, - "c2": 4.578126030373966, - "c3": 5.080983354079423, - "c4": 5.198783034353721, - "c5": 4.770578210360974, - "c6": 5.039487630345108, - "c7": 4.567445509124497 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.461858529819699, + "c3": 6.218215441516417, + "c4": 4.974572353213129, + "c5": 3.7309292649098493, + "c6": 2.4872861766065606, + "c7": 1.2436430883032803 }, "rgb": [58, 15, 49] }, @@ -414726,23 +414726,23 @@ "year": 1818, "resistanceReported": false, "duration": 45532800, - "curveSeeds": { - "c1": -57.48417688187473, - "c2": -37.734520217639044, - "c3": 29.48898964235139, - "c4": 35.721110656801095, - "c5": 32.70791759609396, - "c6": 16.577660995090902, - "c7": 17.911010278386108 + "points": { + "c1": -27.977492813134695, + "c2": 2.7507017764309083, + "c3": -19.78591209018081, + "c4": -13.628116021646868, + "c5": -36.13544606764212, + "c6": 23.106439924564093, + "c7": 8.400907297777216 }, - "vertexSeeds": { - "c1": 7.2979788600162045, - "c2": 5.0796590241306285, - "c3": 6.755514776572136, - "c4": 6.747294159282527, - "c5": 5.968277670335736, - "c6": 5.81545155519817, - "c7": 5.922127552027447 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933424, + "c3": 9.731853906611189, + "c4": 7.785483125288952, + "c5": 5.839112343966712, + "c6": 3.892741562644478, + "c7": 1.946370781322239 }, "rgb": [86, 146, 138] }, @@ -414753,23 +414753,23 @@ "year": 1816, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 18.973898486397566, - "c2": -3.5921977337064526, - "c3": 16.238236785274324, - "c4": -22.327039454821676, - "c5": 2.5075609476169767, - "c6": -1.6119855151758635, - "c7": -18.859371474245513 + "points": { + "c1": 17.84800257344014, + "c2": -7.743923143716916, + "c3": -4.930728092353245, + "c4": 16.926995635508206, + "c5": -7.642504935877479, + "c6": -13.8033407193066, + "c7": 9.339379544821561 }, - "vertexSeeds": { - "c1": 2.565209218101807, - "c2": 2.587816735467641, - "c3": 2.5890365782094076, - "c4": 2.572231324208549, - "c5": 2.5183578523963464, - "c6": 2.7915294159224553, - "c7": 2.6108271951264777 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832175, + "c3": 3.351826167360144, + "c4": 2.6814609338881192, + "c5": 2.0110957004160874, + "c6": 1.340730466944056, + "c7": 0.6703652334720318 }, "rgb": [86, 146, 138] }, @@ -414780,23 +414780,23 @@ "year": 1816, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": 16.68795950081913, - "c2": -6.335353444937173, - "c3": 1.3969850601860614, - "c4": -5.774353217273433, - "c5": -1.1155379194134198, - "c6": 0.3825872639314092, - "c7": -20.40797854257099 + "points": { + "c1": 6.377741905703001, + "c2": -18.9299165977374, + "c3": 5.094939971824363, + "c4": -16.392027598109806, + "c5": 6.684872295389788, + "c6": 13.903734677501763, + "c7": -3.1058130975951848 }, - "vertexSeeds": { - "c1": 2.434018611089022, - "c2": 2.66567792310367, - "c3": 2.4221555575290425, - "c4": 2.4889197533947742, - "c5": 2.5911879865239245, - "c6": 2.5929656025415397, - "c7": 2.647690009046557 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590848, + "c3": 3.2131299121590415, + "c4": 2.570503929727228, + "c5": 1.927877947295422, + "c6": 1.2852519648636158, + "c7": 0.642625982431806 }, "rgb": [222, 0, 59] }, @@ -414807,23 +414807,23 @@ "year": 1817, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 4.720717899686331, - "c2": -6.105119830656754, - "c3": 18.22458644003916, - "c4": -17.260205683779617, - "c5": 15.850003015871195, - "c6": -3.5398635851454507, - "c7": -23.251149548935437 + "points": { + "c1": 25.217125497007117, + "c2": -5.2937965205806385, + "c3": -14.52889725336813, + "c4": -3.5196259524063684, + "c5": -5.034605971290844, + "c6": 15.510431144704242, + "c7": -2.0358154089479896 }, - "vertexSeeds": { - "c1": 7.530884184322316, - "c2": 8.156137253206044, - "c3": 7.339247683674765, - "c4": 7.510820226648269, - "c5": 7.974884359077711, - "c6": 7.755699305330764, - "c7": 7.370134429994345 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295421, + "c3": 9.939898289412849, + "c4": 7.951918631530275, + "c5": 5.963938973647703, + "c6": 3.97595931576513, + "c7": 1.9879796578825728 }, "rgb": [58, 15, 49] }, @@ -414834,23 +414834,23 @@ "year": 1817, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 17.584080067683455, - "c2": 26.470331506537395, - "c3": -11.960936643867386, - "c4": -21.6548610547728, - "c5": -23.34158165203342, - "c6": -18.797869004860036, - "c7": -23.62104827109109 + "points": { + "c1": 9.741496152541071, + "c2": 20.997660985119172, + "c3": -1.1130571487400758, + "c4": 2.77285232456833, + "c5": -28.258456469769076, + "c6": -11.243984122874647, + "c7": 12.332731593209427 }, - "vertexSeeds": { - "c1": 8.899379062178483, - "c2": 8.949110900143381, - "c3": 8.959152383973494, - "c4": 8.969671305088504, - "c5": 8.939471865605933, - "c6": 8.93507535384096, - "c7": 8.905833807283315 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.843273231622806, + "c3": 10.702727693018863, + "c4": 8.562182154415133, + "c5": 6.421636615811403, + "c6": 4.281091077207673, + "c7": 2.14054553860373 }, "rgb": [86, 146, 138] }, @@ -414861,23 +414861,23 @@ "year": 1817, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 34.08525888242765, - "c2": 14.334597071469126, - "c3": 18.823225161645723, - "c4": -29.76762209320671, - "c5": -13.9409320646132, - "c6": 28.25366054170587, - "c7": -19.777681091360872 + "points": { + "c1": 20.732492898194522, + "c2": 14.312886251858025, + "c3": -22.33811700842944, + "c4": 38.24034013289662, + "c5": 8.390598721182208, + "c6": -11.84535670508783, + "c7": -25.732514868635413 }, - "vertexSeeds": { - "c1": 7.488594676192494, - "c2": 6.956023699416091, - "c3": 6.871212584926451, - "c4": 7.140114088789885, - "c5": 7.549462833585736, - "c6": 7.7660363343434256, - "c7": 7.33130363710619 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128988, + "c3": 9.269533055940824, + "c4": 7.415626444752658, + "c5": 5.561719833564494, + "c6": 3.707813222376329, + "c7": 1.8539066111881646 }, "rgb": [222, 0, 59] }, @@ -414888,23 +414888,23 @@ "year": 1817, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 24.866244574028396, - "c2": 15.514163131810722, - "c3": 6.045921982998674, - "c4": -7.768715087902901, - "c5": 13.034496183732156, - "c6": -2.355084296831393, - "c7": 19.245471828207567 + "points": { + "c1": -15.621292835664066, + "c2": 13.315685399773432, + "c3": -1.845685374733069, + "c4": 14.812195903592443, + "c5": -10.569237456814406, + "c6": -13.358836502741841, + "c7": -21.822520564245472 }, - "vertexSeeds": { - "c1": 4.098408599421026, - "c2": 4.343777775664371, - "c3": 4.5234949806382225, - "c4": 4.58924438370322, - "c5": 4.428233817852525, - "c6": 4.554925873827042, - "c7": 4.411805850766099 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.8238557558945905, + "c3": 5.6865464632454925, + "c4": 4.549237170596394, + "c5": 3.4119278779472952, + "c6": 2.274618585298197, + "c7": 1.1373092926490984 }, "rgb": [222, 0, 59] }, @@ -414915,23 +414915,23 @@ "year": 1817, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -7.031024857120347, - "c2": -9.21295807885468, - "c3": -20.689626460536637, - "c4": 20.098758629466452, - "c5": -25.519542396729275, - "c6": -24.516830487212086, - "c7": -18.52048841769676 + "points": { + "c1": 28.079478707369887, + "c2": 8.91780081453102, + "c3": -9.383423661710754, + "c4": 20.54979206900559, + "c5": 16.524652609203635, + "c6": 7.1392253871592, + "c7": 4.466384639691967 }, - "vertexSeeds": { - "c1": 5.934878759864077, - "c2": 6.52449832795101, - "c3": 6.285668056800035, - "c4": 6.048418080971985, - "c5": 5.86601111952204, - "c6": 6.031658293070286, - "c7": 6.076569100783166 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715672, + "c3": 7.882570503929728, + "c4": 6.306056403143781, + "c5": 4.729542302357836, + "c6": 3.1530282015718907, + "c7": 1.5765141007859453 }, "rgb": [58, 15, 49] }, @@ -414942,23 +414942,23 @@ "year": 1817, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -17.691546710308355, - "c2": -0.6134625811101522, - "c3": 7.761856544505239, - "c4": 2.7791418379707338, - "c5": 2.4566428822071025, - "c6": 21.357223046624835, - "c7": -19.690498321674816 + "points": { + "c1": 17.980478718832902, + "c2": 20.81542573216004, + "c3": -1.7765819355527164, + "c4": 16.611798347839493, + "c5": 3.4248165513303874, + "c6": -24.24025918387294, + "c7": 8.132657340237596 }, - "vertexSeeds": { - "c1": 5.231648007297944, - "c2": 5.281193091219891, - "c3": 5.1787971354476685, - "c4": 5.283961563320296, - "c5": 5.29213434785485, - "c6": 5.305907008438386, - "c7": 5.2708519710307575 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036060999, + "c3": 6.35691169671753, + "c4": 5.085529357373999, + "c5": 3.814147018030531, + "c6": 2.5427646786869995, + "c7": 1.2713823393434682 }, "rgb": [86, 146, 138] }, @@ -414969,23 +414969,23 @@ "year": 1817, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -16.48369817684513, - "c2": 12.46775261982948, - "c3": -10.947941510039314, - "c4": -24.847696621404047, - "c5": -23.647201502004688, - "c6": -10.748286930412684, - "c7": 14.703812152611565 + "points": { + "c1": 16.66585240370225, + "c2": 24.396384101117608, + "c3": -3.0858734600521416, + "c4": 2.3455028783748517, + "c5": 21.611582605470847, + "c6": -8.408452963720784, + "c7": 8.390351295610284 }, - "vertexSeeds": { - "c1": 5.0168032907477, - "c2": 5.10506778812228, - "c3": 5.146697081957649, - "c4": 5.141221007940877, - "c5": 5.019784600157932, - "c6": 5.139388238036645, - "c7": 5.145820499049725 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699003, + "c3": 6.148867313915867, + "c4": 4.9190938511326685, + "c5": 3.689320388349532, + "c6": 2.4595469255663343, + "c7": 1.2297734627831978 }, "rgb": [238, 201, 159] }, @@ -414996,23 +414996,23 @@ "year": 1817, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -28.746514613341272, - "c2": -2.6457566540756616, - "c3": 33.124660590890116, - "c4": -14.519158376704656, - "c5": 15.187882683363725, - "c6": 6.792759714547309, - "c7": -14.910999289942382 + "points": { + "c1": 16.592535630527813, + "c2": 28.88169962216908, + "c3": 18.95768187556049, + "c4": 4.239823617255077, + "c5": 4.30332458576018, + "c6": 9.532905643889706, + "c7": 5.326631781919772 }, - "vertexSeeds": { - "c1": 2.279911238011258, - "c2": 2.4816438636714158, - "c3": 2.1340996686272264, - "c4": 2.2398638995658047, - "c5": 2.5173881103867504, - "c6": 2.334257227063523, - "c7": 2.4902373727301277 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690696, + "c3": 3.028201571890892, + "c4": 2.422561257512715, + "c5": 1.8169209431345348, + "c6": 1.2112806287563547, + "c7": 0.6056403143781773 }, "rgb": [222, 0, 59] }, @@ -415023,23 +415023,23 @@ "year": 1817, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -18.512547111416325, - "c2": 26.159803913477948, - "c3": 27.221344892098674, - "c4": -24.82286703667625, - "c5": -23.48062160342624, - "c6": -15.134144867391186, - "c7": -4.974616204155058 + "points": { + "c1": -23.613477209426726, + "c2": 18.103684163568715, + "c3": -2.382562493270168, + "c4": -5.543672519491903, + "c5": 13.30896293505603, + "c6": -8.633534648748828, + "c7": -20.26495429623352 }, - "vertexSeeds": { - "c1": 5.50241958075329, - "c2": 5.450166557639769, - "c3": 5.488140944516424, - "c4": 5.5057977911940865, - "c5": 5.219226216472783, - "c6": 5.566179787410031, - "c7": 5.1854699781204285 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.98890429958391, + "c3": 6.657420249653259, + "c4": 5.325936199722607, + "c5": 3.994452149791955, + "c6": 2.6629680998613035, + "c7": 1.3314840499306517 }, "rgb": [77, 76, 132] }, @@ -415050,23 +415050,23 @@ "year": 1817, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -18.809717400147047, - "c2": -14.512009355256774, - "c3": 15.899843296200757, - "c4": 17.64431838263338, - "c5": -16.799390537774826, - "c6": -16.372298773201713, - "c7": -21.29246450889512 + "points": { + "c1": -14.235765729078231, + "c2": 6.7584103206366635, + "c3": 12.791787134431019, + "c4": 14.520596551643955, + "c5": -10.557416447630178, + "c6": 13.228565030272463, + "c7": -4.035664343410758 }, - "vertexSeeds": { - "c1": 5.0048253438007375, - "c2": 4.832517251068463, - "c3": 4.833604519447811, - "c4": 4.844478124945497, - "c5": 4.988616257081565, - "c6": 4.978184253446214, - "c7": 5.007478070321946 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417463, + "c3": 5.987055016181251, + "c4": 4.789644012944991, + "c5": 3.5922330097087314, + "c6": 2.3948220064724954, + "c7": 1.1974110032362597 }, "rgb": [77, 76, 132] }, @@ -415077,23 +415077,23 @@ "year": 1817, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -26.802847653049763, - "c2": 26.83567897256255, - "c3": -12.541444587722818, - "c4": 10.899540081046009, - "c5": -15.77171934564151, - "c6": 19.70407648673311, - "c7": 20.34590779572324 + "points": { + "c1": 10.047969263337688, + "c2": -18.095463231394742, + "c3": -19.01366950104585, + "c4": 13.053910025635194, + "c5": -13.98255872921566, + "c6": -14.249512963019699, + "c7": 13.099417078647246 }, - "vertexSeeds": { - "c1": 3.444168458053789, - "c2": 3.6047971516344437, - "c3": 3.811861413828261, - "c4": 3.6604086284370663, - "c5": 3.5823764034344827, - "c6": 3.6243653151587263, - "c7": 3.5341805609810137 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004164, + "c3": 4.600092464170139, + "c4": 3.6800739713361064, + "c5": 2.760055478502082, + "c6": 1.8400369856680574, + "c7": 0.920018492834033 }, "rgb": [222, 0, 59] }, @@ -415104,23 +415104,23 @@ "year": 1817, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": 19.992326294651804, - "c2": -5.19040709318665, - "c3": -37.35896672080046, - "c4": -37.13010037842215, - "c5": -44.93312753536773, - "c6": -19.867783088895287, - "c7": -18.77259588533377 + "points": { + "c1": 37.867401453101934, + "c2": 23.657861844969602, + "c3": 34.74423439154813, + "c4": -8.045440532968698, + "c5": 34.6117668536796, + "c6": 11.207449642153932, + "c7": -19.833587422873663 }, - "vertexSeeds": { - "c1": 6.03800546210045, - "c2": 5.881427694472498, - "c3": 6.29086084877106, - "c4": 5.830073869308118, - "c5": 5.959530676812694, - "c6": 6.065543483688175, - "c7": 6.313617230595276 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [86, 146, 138] }, @@ -415131,23 +415131,23 @@ "year": 1817, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -19.502688005601353, - "c2": -4.233426923052253, - "c3": 14.852258818605925, - "c4": 3.762123227672941, - "c5": 18.221377158987337, - "c6": 3.978671080467148, - "c7": -15.06238073113687 + "points": { + "c1": 8.051990829336688, + "c2": -20.03944071359773, + "c3": 3.140171947046632, + "c4": -3.254547033404414, + "c5": -21.744049015776106, + "c6": 22.655418431678093, + "c7": 17.710284964956585 }, - "vertexSeeds": { - "c1": 11.68155087957397, - "c2": 11.81164133215255, - "c3": 11.686467271958218, - "c4": 11.863739275161814, - "c5": 11.863099661886556, - "c6": 11.747816676428927, - "c7": 11.657479583569142 + "offsets": { + "c1": 19.870550161812297, + "c2": 17.031900138696194, + "c3": 14.193250115580232, + "c4": 11.354600092464128, + "c5": 8.515950069348168, + "c6": 5.677300046232064, + "c7": 2.8386500231161027 }, "rgb": [58, 15, 49] }, @@ -415158,23 +415158,23 @@ "year": 1817, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": -0.6191561119574054, - "c2": -20.047509953564415, - "c3": -10.1200434840209, - "c4": 17.18462740877701, - "c5": -10.834661056623128, - "c6": 0.8099402587644455, - "c7": -7.114392483899934 + "points": { + "c1": -9.967327115192877, + "c2": -20.385243244336717, + "c3": -10.429277730519553, + "c4": -7.411489292563047, + "c5": -22.49659555453545, + "c6": 7.345729360223039, + "c7": -7.142092074048108 }, - "vertexSeeds": { - "c1": 7.536315274722899, - "c2": 7.589745930916567, - "c3": 7.546984153788317, - "c4": 7.589724138191964, - "c5": 7.5436527427671605, - "c6": 7.565794950241878, - "c7": 7.5378462464198375 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.87378640776704, + "c3": 9.061488673139081, + "c4": 7.2491909385113, + "c5": 5.43689320388352, + "c6": 3.62459546925556, + "c7": 1.81229773462778 }, "rgb": [77, 76, 132] }, @@ -415185,23 +415185,23 @@ "year": 1817, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 18.498348127557996, - "c2": 29.406902914869242, - "c3": -2.73379242241748, - "c4": -3.88641410422537, - "c5": 7.332323087128877, - "c6": -20.20852578289187, - "c7": 11.314044131846195 + "points": { + "c1": -31.773219906640612, + "c2": 22.289630582911045, + "c3": 14.991416508290222, + "c4": -10.73773734862516, + "c5": -5.549084296108536, + "c6": -27.02475732620193, + "c7": -4.880197847565039 }, - "vertexSeeds": { - "c1": 2.176134339713124, - "c2": 2.095644884512372, - "c3": 2.0633786160827268, - "c4": 2.119133044200249, - "c5": 1.9880705648562809, - "c6": 2.0191472910114507, - "c7": 2.0595010546618666 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852995, + "c3": 2.635228848821081, + "c4": 2.1081830790568663, + "c5": 1.581137309292648, + "c6": 1.0540915395284332, + "c7": 0.5270457697642185 }, "rgb": [86, 146, 138] }, @@ -415212,23 +415212,23 @@ "year": 1817, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -25.24058663624434, - "c2": -26.759917159513932, - "c3": 5.632364753379573, - "c4": 7.582479107661481, - "c5": 5.5928029075927235, - "c6": -10.866135267497313, - "c7": -8.516658840967729 + "points": { + "c1": 5.008352314997055, + "c2": 30.592347713557224, + "c3": -0.6437874356022562, + "c4": 13.506276595772484, + "c5": 17.524676812468286, + "c6": -15.523079194863172, + "c7": 3.7238822654643684 }, - "vertexSeeds": { - "c1": 6.0889252281799315, - "c2": 6.080933434988591, - "c3": 6.146863899154247, - "c4": 6.061031607335446, - "c5": 6.104125679253855, - "c6": 6.031349663333059, - "c7": 6.195060153508138 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911234, + "c3": 7.420249653259362, + "c4": 5.936199722607489, + "c5": 4.452149791955617, + "c6": 2.9680998613037444, + "c7": 1.4840499306518722 }, "rgb": [77, 76, 132] }, @@ -415239,23 +415239,23 @@ "year": 1817, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": -3.3835904011846267, - "c2": -2.1682454698551794, - "c3": -2.8008806053828046, - "c4": 11.500412526545965, - "c5": 15.684035349355668, - "c6": -11.989520563175706, - "c7": -17.053650853265776 + "points": { + "c1": -17.66016337397447, + "c2": 13.94616618828909, + "c3": 9.895044515469756, + "c4": -15.033211557582108, + "c5": -20.44290719452555, + "c6": 9.323650878332877, + "c7": 4.190057944213738 }, - "vertexSeeds": { - "c1": 7.218059400413701, - "c2": 7.641511888862665, - "c3": 7.193541721856958, - "c4": 6.9935714742787, - "c5": 7.501144069186013, - "c6": 7.261929803236891, - "c7": 7.416242810440038 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289876, + "c3": 9.361997226074896, + "c4": 7.489597780859917, + "c5": 5.617198335644938, + "c6": 3.7447988904299585, + "c7": 1.8723994452149793 }, "rgb": [77, 76, 132] }, @@ -415266,23 +415266,23 @@ "year": 1817, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -17.639304210108023, - "c2": -20.287562929084295, - "c3": 17.013957194677722, - "c4": 12.662549875721048, - "c5": -10.628026679689686, - "c6": 23.8742077980513, - "c7": -16.38691234379648 + "points": { + "c1": 19.047687654233442, + "c2": -10.97199695095954, + "c3": -6.43051462071525, + "c4": 2.630378908011849, + "c5": 25.789867678621498, + "c6": -29.498600737267214, + "c7": 16.76080728699589 }, - "vertexSeeds": { - "c1": 8.684248937767915, - "c2": 8.868630571712039, - "c3": 8.98523871284369, - "c4": 8.525454374386829, - "c5": 8.356256288126046, - "c6": 8.324400158179198, - "c7": 8.856203069033043 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743419, + "c3": 10.7720758206195, + "c4": 8.617660656495605, + "c5": 6.463245492371709, + "c6": 4.308830328247814, + "c7": 2.154415164123896 }, "rgb": [86, 146, 138] }, @@ -415293,23 +415293,23 @@ "year": 1818, "resistanceReported": false, "duration": 48384000, - "curveSeeds": { - "c1": -31.930735896521508, - "c2": -5.190909651069518, - "c3": 22.569048825638184, - "c4": 36.644682257901486, - "c5": -13.754487000719237, - "c6": 35.84044569344707, - "c7": 25.646976614935973 + "points": { + "c1": -51.02711267617301, + "c2": 63.27529501040769, + "c3": -58.97111764746295, + "c4": 47.33730844072974, + "c5": 59.71391865550609, + "c6": -53.1733287932762, + "c7": 10.098208602212836 }, - "vertexSeeds": { - "c1": 9.211771475863163, - "c2": 8.831534243249878, - "c3": 8.915580903266644, - "c4": 8.634410312089484, - "c5": 8.572927089439483, - "c6": 9.261851958158584, - "c7": 9.389550203218304 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588073, + "c3": 11.257512713823397, + "c4": 9.00601017105872, + "c5": 6.754507628294044, + "c6": 4.503005085529352, + "c7": 2.251502542764676 }, "rgb": [238, 201, 159] }, @@ -415320,23 +415320,23 @@ "year": 1817, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -19.287679527767196, - "c2": -4.34395138330823, - "c3": 6.229924237194048, - "c4": -9.28641900229513, - "c5": 4.5531251052792925, - "c6": 6.155862439951882, - "c7": -1.0313040412799381 + "points": { + "c1": 24.769430648284114, + "c2": -22.74824056417952, + "c3": -28.166865035060802, + "c4": -21.283894177020024, + "c5": -16.295275524245938, + "c6": -9.58831452796456, + "c7": -32.210977322246336 }, - "vertexSeeds": { - "c1": 9.679853913820613, - "c2": 9.905039694199163, - "c3": 9.496451950228295, - "c4": 9.612518969100389, - "c5": 9.319295283908351, - "c6": 9.77966301921801, - "c7": 9.446456671156364 + "offsets": { + "c1": 16.666666666666664, + "c2": 14.285714285714274, + "c3": 11.904761904761907, + "c4": 9.523809523809517, + "c5": 7.142857142857148, + "c6": 4.761904761904758, + "c7": 2.380952380952368 }, "rgb": [77, 76, 132] }, @@ -415347,23 +415347,23 @@ "year": 1817, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 16.420700014609892, - "c2": 16.043616453551245, - "c3": -17.676046206892256, - "c4": -15.218036351138798, - "c5": -19.90200868724877, - "c6": 2.801278868443127, - "c7": -15.279332347156899 + "points": { + "c1": 12.670085220321944, + "c2": 9.390204301285813, + "c3": -13.396630377288337, + "c4": -15.826270421258773, + "c5": 20.029693018767396, + "c6": -7.03844365578421, + "c7": 3.6299848839466087 }, - "vertexSeeds": { - "c1": 11.085006197943002, - "c2": 11.215068804385371, - "c3": 11.359104621872055, - "c4": 11.248228422449571, - "c5": 11.429093440801678, - "c6": 11.253123839732293, - "c7": 11.10828666253795 + "offsets": { + "c1": 19.223300970873787, + "c2": 16.477115117891802, + "c3": 13.730929264909822, + "c4": 10.98474341192784, + "c5": 8.238557558945947, + "c6": 5.492371705963966, + "c7": 2.746185852981983 }, "rgb": [222, 0, 59] }, @@ -415374,23 +415374,23 @@ "year": 1817, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 0.5572178985157734, - "c2": 22.068683918822032, - "c3": 15.438713124489354, - "c4": 15.157152751038637, - "c5": -9.111978163555428, - "c6": 0.5698915488547023, - "c7": -10.384115373938101 + "points": { + "c1": 13.490898807695125, + "c2": 24.602411926392087, + "c3": -8.800390204306089, + "c4": -13.278778507115916, + "c5": 20.554039462547244, + "c6": -4.4312016750481575, + "c7": 6.526002052097272 }, - "vertexSeeds": { - "c1": 4.424636488957694, - "c2": 3.0933137200452694, - "c3": 1.3800855115978625, - "c4": 1.5781260725708797, - "c5": 2.3684754660105187, - "c6": 3.755340358000406, - "c7": 4.923583332977547 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020805, + "c3": 6.333795654184004, + "c4": 5.067036523347203, + "c5": 3.8002773925104023, + "c6": 2.5335182616736014, + "c7": 1.2667591308368007 }, "rgb": [86, 146, 138] }, @@ -415401,23 +415401,23 @@ "year": 1817, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 1.231845310177338, - "c2": -25.546071729368254, - "c3": 1.53413318079377, - "c4": 26.97270314794697, - "c5": 8.20526858410518, - "c6": 15.52165002272653, - "c7": 21.736472931913394 + "points": { + "c1": 26.364055002095707, + "c2": -1.1957861150830595, + "c3": -20.3687943652072, + "c4": -13.079866856795146, + "c5": -24.090859849274363, + "c6": 22.175911784128555, + "c7": 31.218793016664083 }, - "vertexSeeds": { - "c1": 9.828917964361928, - "c2": 9.590795780470888, - "c3": 9.97915549417494, - "c4": 10.244751775586149, - "c5": 9.290097941058093, - "c6": 9.783746903701095, - "c7": 9.850450114589796 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [77, 76, 132] }, @@ -415428,23 +415428,23 @@ "year": 1817, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -9.333973971198382, - "c2": -6.301622406010178, - "c3": 25.670927997363123, - "c4": -26.68838890693826, - "c5": -10.628849203641106, - "c6": 16.129433972338028, - "c7": -20.148029165671446 + "points": { + "c1": -23.850878615963648, + "c2": -1.1408062380566797, + "c3": -28.05922750017063, + "c4": 15.62301455872285, + "c5": 27.067168144995, + "c6": 26.83251220515914, + "c7": 24.069268033767045 }, - "vertexSeeds": { - "c1": 8.109754920883706, - "c2": 8.76999140378835, - "c3": 8.772675043737333, - "c4": 7.936635461042154, - "c5": 8.059048922462194, - "c6": 7.9628893420159175, - "c7": 8.712326868756199 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.676837725381407, + "c3": 10.564031437817846, + "c4": 8.45122515025427, + "c5": 6.338418862690712, + "c6": 4.225612575127135, + "c7": 2.1128062875635765 }, "rgb": [86, 146, 138] }, @@ -415455,23 +415455,23 @@ "year": 1817, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -3.0353145140013886, - "c2": -9.453469425656998, - "c3": 27.636114177449194, - "c4": 2.5585174110624855, - "c5": -25.25720809344316, - "c6": -2.566489893241652, - "c7": 13.19755171735872 + "points": { + "c1": -20.27080972936266, + "c2": 8.501244152038183, + "c3": -15.638869512587462, + "c4": 28.047149185793906, + "c5": 8.919505074841751, + "c6": -4.004728823038292, + "c7": 7.495714836374425 }, - "vertexSeeds": { - "c1": 10.930920328189512, - "c2": 11.407515736246381, - "c3": 10.310855479786206, - "c4": 10.91500229914464, - "c5": 10.790723357091206, - "c6": 10.45485822818231, - "c7": 11.3529312718998 + "offsets": { + "c1": 19.320388349514563, + "c2": 16.56033287101248, + "c3": 13.800277392510402, + "c4": 11.04022191400832, + "c5": 8.28016643550624, + "c6": 5.52011095700416, + "c7": 2.76005547850208 }, "rgb": [222, 0, 59] }, @@ -415482,23 +415482,23 @@ "year": 1817, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 17.05312077055069, - "c2": 2.495582300594066, - "c3": -3.725051832220597, - "c4": -15.370112515071558, - "c5": 4.741858224616934, - "c6": -2.07405396307259, - "c7": 6.914520695442938 + "points": { + "c1": 12.085395890665936, + "c2": 5.990779590801473, + "c3": 3.2056675059529667, + "c4": -1.75634350492993, + "c5": 8.248360777478418, + "c6": 29.06037359241965, + "c7": 11.828085790834102 }, - "vertexSeeds": { - "c1": 2.460247674514148, - "c2": 2.2585450475047435, - "c3": 2.372250550082035, - "c4": 2.435148432068087, - "c5": 2.200154826196278, - "c6": 2.481198329817699, - "c7": 2.3041085144708147 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288508, + "c3": 3.0050855293573737, + "c4": 2.4040684234859007, + "c5": 1.8030513176144234, + "c6": 1.2020342117429503, + "c7": 0.6010171058714733 }, "rgb": [77, 76, 132] }, @@ -415509,23 +415509,23 @@ "year": 1817, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 0.4900242610890899, - "c2": 4.94244651655071, - "c3": -2.965123330292787, - "c4": -7.011266169244728, - "c5": 24.400754808164542, - "c6": 8.068253873259223, - "c7": -22.674916833137218 + "points": { + "c1": 9.414580543398515, + "c2": 1.223056913752366, + "c3": -25.758911489219376, + "c4": -12.837182721833845, + "c5": 1.5055058295485253, + "c6": -19.229355615949277, + "c7": -12.80086873620705 }, - "vertexSeeds": { - "c1": 10.490463492540078, - "c2": 10.033508983392986, - "c3": 10.06163604976058, - "c4": 10.03993603099721, - "c5": 10.254200581760406, - "c6": 10.111188051099733, - "c7": 10.547333508220081 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961158, + "c3": 12.621359223300956, + "c4": 10.097087378640788, + "c5": 7.572815533980587, + "c6": 5.048543689320386, + "c7": 2.524271844660184 }, "rgb": [86, 146, 138] }, @@ -415536,23 +415536,23 @@ "year": 1817, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 1.5424887730846812, - "c2": 1.3150061985950998, - "c3": 13.127458549063064, - "c4": 3.6324753501270166, - "c5": -11.200760201710139, - "c6": -18.025496257517332, - "c7": -12.242107559428359 + "points": { + "c1": -16.344751973152782, + "c2": -21.8870099307873, + "c3": 26.922128328987625, + "c4": 2.038970468600798, + "c5": -12.823913774318754, + "c6": -11.307290896789326, + "c7": -15.57108773943456 }, - "vertexSeeds": { - "c1": 3.885670732207822, - "c2": 4.051523821600981, - "c3": 3.8260933363194596, - "c4": 3.8674218806410305, - "c5": 3.769512427909772, - "c6": 4.0039817901188055, - "c7": 4.208847597716269 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929267, + "c3": 5.131761442441051, + "c4": 4.105409153952842, + "c5": 3.0790568654646333, + "c6": 2.0527045769764247, + "c7": 1.0263522884882086 }, "rgb": [86, 146, 138] }, @@ -415563,23 +415563,23 @@ "year": 1817, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -1.1431332291250733, - "c2": 3.6613192609463745, - "c3": 20.162348487806888, - "c4": 10.104435077951585, - "c5": -9.457368312783704, - "c6": 1.739878009817236, - "c7": 17.226562322072823 + "points": { + "c1": -3.693521866438836, + "c2": 23.06639236907712, + "c3": 5.295401175044397, + "c4": 18.84555972560647, + "c5": 4.651113504139168, + "c6": -14.647353870109841, + "c7": -6.189282568182307 }, - "vertexSeeds": { - "c1": 8.567450073350596, - "c2": 8.419607229767715, - "c3": 8.378803484556249, - "c4": 8.55931316873317, - "c5": 8.434889064294605, - "c6": 8.312757052302441, - "c7": 8.369185597980142 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778086, + "c3": 10.217290799815071, + "c4": 8.173832639852057, + "c5": 6.130374479889043, + "c6": 4.086916319926028, + "c7": 2.043458159963014 }, "rgb": [86, 146, 138] }, @@ -415590,23 +415590,23 @@ "year": 1817, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 25.18397267774163, - "c2": -10.285971426245784, - "c3": 26.782931631821064, - "c4": 23.21254501709935, - "c5": 1.50172841817907, - "c6": 3.5126951579508088, - "c7": 7.658256955415752 + "points": { + "c1": 3.9318070823970714, + "c2": -15.127219374182545, + "c3": 20.565815768325002, + "c4": -24.356899947005893, + "c5": 14.796472425852137, + "c6": 27.930156075928984, + "c7": -24.99644990755271 }, - "vertexSeeds": { - "c1": 7.2772259690147445, - "c2": 7.6312577981388845, - "c3": 7.091135123202046, - "c4": 7.633801638518493, - "c5": 7.634223749730242, - "c6": 7.27479424593471, - "c7": 7.523141411749522 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013868, + "c3": 9.77808599167822, + "c4": 7.822468793342582, + "c5": 5.866851595006934, + "c6": 3.9112343966712855, + "c7": 1.9556171983356485 }, "rgb": [86, 146, 138] }, @@ -415617,23 +415617,23 @@ "year": 1817, "resistanceReported": false, "duration": 6825600, - "curveSeeds": { - "c1": -6.238497130748927, - "c2": 2.4885908923083306, - "c3": -3.985523067803612, - "c4": 3.7716723384759874, - "c5": 13.816104099064837, - "c6": -14.782863347385636, - "c7": -5.93012538613209 + "points": { + "c1": -2.801687697066839, + "c2": 10.419574763755197, + "c3": 5.033075155819777, + "c4": -14.744690793845999, + "c5": -10.146874458686813, + "c6": 9.047713852999625, + "c7": 14.264093763265166 }, - "vertexSeeds": { - "c1": 3.534223639744271, - "c2": 3.3039970506462777, - "c3": 3.4473911697698814, - "c4": 3.5761496040133394, - "c5": 3.4130274242133254, - "c6": 3.36851059507645, - "c7": 3.570676119106929 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803051, + "c3": 4.484512251502541, + "c4": 3.5876098012020314, + "c5": 2.6907073509015293, + "c6": 1.7938049006010193, + "c7": 0.8969024503005096 }, "rgb": [58, 15, 49] }, @@ -415644,23 +415644,23 @@ "year": 1817, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -11.014043194931396, - "c2": -15.976636261516612, - "c3": -16.392587269599403, - "c4": -23.340241576578673, - "c5": -11.281353641018088, - "c6": -12.90150911009007, - "c7": -19.16984458029474 + "points": { + "c1": 26.800618311153077, + "c2": 23.463440481485204, + "c3": -22.55604434582697, + "c4": 8.456089015749438, + "c5": 27.85537925970181, + "c6": 7.662025191527615, + "c7": -28.468526673916173 }, - "vertexSeeds": { - "c1": 2.1865767592463548, - "c2": 2.225022371043896, - "c3": 2.1399751954704183, - "c4": 2.274474974054625, - "c5": 2.1171423212923175, - "c6": 2.2855776991500365, - "c7": 2.2780324916575 + "offsets": { + "c1": 3.8834951456310676, + "c2": 3.3287101248266304, + "c3": 2.7739251040221893, + "c4": 2.219140083217752, + "c5": 1.6643550624133152, + "c6": 1.109570041608878, + "c7": 0.5547850208044373 }, "rgb": [58, 15, 49] }, @@ -415671,23 +415671,23 @@ "year": 1817, "resistanceReported": false, "duration": 35424000, - "curveSeeds": { - "c1": 7.793282799367681, - "c2": 24.383087815376342, - "c3": 33.80699651075513, - "c4": 6.507702135526948, - "c5": 15.366011759768568, - "c6": 43.93524353625811, - "c7": 3.412546502536294 + "points": { + "c1": 33.22716493738301, + "c2": -12.669762193266507, + "c3": 49.63601925483654, + "c4": 40.100599993039424, + "c5": -6.376785768862597, + "c6": 23.756172233694087, + "c7": 42.56326335829729 }, - "vertexSeeds": { - "c1": 4.665712289632093, - "c2": 4.165063015467827, - "c3": 4.184274893794615, - "c4": 4.417860947343986, - "c5": 4.370453991530785, - "c6": 4.278512345648902, - "c7": 4.5045550675001245 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854366, + "c3": 5.6634304207119746, + "c4": 4.530744336569577, + "c5": 3.3980582524271865, + "c6": 2.2653721682847885, + "c7": 1.1326860841423905 }, "rgb": [77, 76, 132] }, @@ -415698,23 +415698,23 @@ "year": 1817, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 25.45888618803598, - "c2": -18.428320180669054, - "c3": -17.481311908608298, - "c4": -9.599543318465752, - "c5": 11.247743537052909, - "c6": 11.371972675917046, - "c7": -0.19177704777433746 + "points": { + "c1": 19.844802456124395, + "c2": 22.159335242304923, + "c3": 10.056042098969787, + "c4": -6.7058443530262615, + "c5": -7.507109974081484, + "c6": 10.079923107820054, + "c7": -2.5744475437846575 }, - "vertexSeeds": { - "c1": 2.985548047063768, - "c2": 3.0243935994442688, - "c3": 2.7607564058814904, - "c4": 3.003588394815798, - "c5": 2.771640805574598, - "c6": 2.834955011107007, - "c7": 2.8436573925199986 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355064, + "c3": 3.6523347202958876, + "c4": 2.921867776236703, + "c5": 2.1914008321775276, + "c6": 1.4609338881183516, + "c7": 0.7304669440591758 }, "rgb": [58, 15, 49] }, @@ -415725,23 +415725,23 @@ "year": 1817, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": 14.454473423263991, - "c2": -13.742037102356717, - "c3": 12.546164167909378, - "c4": 2.619130453715435, - "c5": -8.561450024213505, - "c6": -8.473282434123986, - "c7": -2.1243379521621346 + "points": { + "c1": 16.50875412790737, + "c2": -2.2389023661680767, + "c3": -7.0492427868544745, + "c4": 4.782988042571006, + "c5": -11.497340973711534, + "c6": 8.987093393445015, + "c7": -18.617894366853356 }, - "vertexSeeds": { - "c1": 3.023112388150246, - "c2": 3.0795357203797735, - "c3": 2.8264044526061776, - "c4": 2.778678834204565, - "c5": 2.855337649506764, - "c6": 2.8228668460053408, - "c7": 2.7489048535472715 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475727, + "c3": 3.721682847896438, + "c4": 2.9773462783171567, + "c5": 2.233009708737867, + "c6": 1.4886731391585784, + "c7": 0.7443365695792892 }, "rgb": [222, 0, 59] }, @@ -415752,23 +415752,23 @@ "year": 1817, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 12.943334841056299, - "c2": 23.349833893579692, - "c3": -6.6466827342759345, - "c4": -0.2616231636357469, - "c5": -17.291143239461682, - "c6": -1.4714221491966946, - "c7": 9.274939913985797 + "points": { + "c1": -5.480880241466917, + "c2": 5.707068177036859, + "c3": -21.241155751017157, + "c4": 16.400639978358583, + "c5": -10.31922556180525, + "c6": 16.33905725551039, + "c7": 25.52228815634865 }, - "vertexSeeds": { - "c1": 2.777779135490957, - "c2": 2.7340241132194723, - "c3": 2.6929953444380774, - "c4": 2.88167744282951, - "c5": 2.9739901980078125, - "c6": 2.9377863895012353, - "c7": 2.8222990715886502 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.3273231622746176, + "c3": 3.6061026352288463, + "c4": 2.884882108183076, + "c5": 2.163661581137305, + "c6": 1.4424410540915416, + "c7": 0.7212205270457708 }, "rgb": [58, 15, 49] }, @@ -415779,23 +415779,23 @@ "year": 1817, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -30.303685341317724, - "c2": -4.898862616036908, - "c3": 33.12141811962246, - "c4": -30.141298419494795, - "c5": -13.753017030460061, - "c6": 22.709721667164473, - "c7": -28.982537405379126 + "points": { + "c1": 27.550548495717962, + "c2": -22.835415960995554, + "c3": 42.531464534664494, + "c4": -38.72009542291479, + "c5": 18.143551834166836, + "c6": 11.633914923022843, + "c7": 19.602218855323187 }, - "vertexSeeds": { - "c1": 4.287642976591317, - "c2": 5.4368827271953855, - "c3": 4.686303970045242, - "c4": 5.38346328343247, - "c5": 4.151473186005602, - "c6": 4.410964243619172, - "c7": 4.436309597049573 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342581, + "c3": 6.518723994452151, + "c4": 5.214979195561724, + "c5": 3.9112343966712904, + "c6": 2.607489597780862, + "c7": 1.3037447988904327 }, "rgb": [222, 0, 59] }, @@ -415806,23 +415806,23 @@ "year": 1817, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": -8.051139946582687, - "c2": 10.49223857789952, - "c3": -43.40818060291011, - "c4": -48.106319327680175, - "c5": 4.454387412215468, - "c6": -29.727704082991647, - "c7": -4.894013947995042 + "points": { + "c1": -26.9326319980298, + "c2": -33.5949999244846, + "c3": 30.412943183303796, + "c4": -4.700926860357207, + "c5": -34.9198010668394, + "c6": -1.7263418253436242, + "c7": 20.766342647684112 }, - "vertexSeeds": { - "c1": 13.175147805838172, - "c2": 10.777740179963066, - "c3": 9.766885341990008, - "c4": 14.904916266988288, - "c5": 11.416819526860298, - "c6": 11.466286153885946, - "c7": 10.917987890368531 + "offsets": { + "c1": 26.116504854368934, + "c2": 22.385575589459084, + "c3": 18.65464632454924, + "c4": 14.92371705963939, + "c5": 11.192787794729549, + "c6": 7.461858529819698, + "c7": 3.7309292649098467 }, "rgb": [77, 76, 132] }, @@ -415833,23 +415833,23 @@ "year": 1817, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -14.45042532510261, - "c2": 10.720050069425412, - "c3": 11.76922061593968, - "c4": 15.78504419181698, - "c5": -15.541117555937337, - "c6": 15.734311004486969, - "c7": 18.565972803676573 + "points": { + "c1": 14.46529692384555, + "c2": 20.960730750461984, + "c3": 6.354018428560497, + "c4": 8.597615705546673, + "c5": -1.3034280605371293, + "c6": -22.334059510797132, + "c7": -6.251002692122711 }, - "vertexSeeds": { - "c1": 4.934387939586902, - "c2": 4.953826369641783, - "c3": 4.690517574098883, - "c4": 4.689299018196798, - "c5": 4.8658712641459365, - "c6": 4.788544546969521, - "c7": 4.829728915012907 + "offsets": { + "c1": 8.511326860841423, + "c2": 7.295423023578363, + "c3": 6.079519186315302, + "c4": 4.863615349052242, + "c5": 3.6477115117891814, + "c6": 2.431807674526121, + "c7": 1.2159038372630604 }, "rgb": [77, 76, 132] }, @@ -415860,23 +415860,23 @@ "year": 1817, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -1.9793586816634416, - "c2": 14.714983031232109, - "c3": 28.67814149355027, - "c4": 30.207247326824188, - "c5": 17.12479161855908, - "c6": -12.343972169743736, - "c7": 29.841230521485706 + "points": { + "c1": 28.98732166303119, + "c2": 32.388217265409146, + "c3": -31.44850857099889, + "c4": 6.428368395185153, + "c5": -3.9097332421269613, + "c6": -29.062864248299807, + "c7": -7.467885684626022 }, - "vertexSeeds": { - "c1": 5.511960653716175, - "c2": 6.000683518620009, - "c3": 6.475063955033379, - "c4": 5.812444438039834, - "c5": 5.915343955017636, - "c6": 6.363196922014845, - "c7": 5.697591311633325 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514566, + "c3": 7.7669902912621405, + "c4": 6.213592233009713, + "c5": 4.660194174757288, + "c6": 3.106796116504851, + "c7": 1.5533980582524256 }, "rgb": [222, 0, 59] }, @@ -415887,23 +415887,23 @@ "year": 1817, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 25.474522691922303, - "c2": 28.338461335065347, - "c3": 7.0846382470649445, - "c4": -6.467961186272106, - "c5": 27.779384655627233, - "c6": -19.95040367053532, - "c7": 8.891608351911906 + "points": { + "c1": -7.300646275073873, + "c2": 11.11434376658405, + "c3": -24.24398892823767, + "c4": -2.5177304539220557, + "c5": 9.337751210142372, + "c6": 1.2359077196204566, + "c7": -9.582292361521926 }, - "vertexSeeds": { - "c1": 1.3418380559105083, - "c2": 1.3876793019659552, - "c3": 1.5107427173286272, - "c4": 1.5089445518961597, - "c5": 1.4943683432814612, - "c6": 1.4605407905329966, - "c7": 1.4515376763827992 + "offsets": { + "c1": 2.5889967637540456, + "c2": 2.219140083217753, + "c3": 1.84928340268146, + "c4": 1.4794267221451673, + "c5": 1.1095700416088783, + "c6": 0.7397133610725856, + "c7": 0.3698566805362928 }, "rgb": [86, 146, 138] }, @@ -415914,23 +415914,23 @@ "year": 1817, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 24.98644486154862, - "c2": 0.6982163876005067, - "c3": 22.24938061517104, - "c4": -17.39633066627485, - "c5": 5.387873682743773, - "c6": -30.72547272347639, - "c7": -16.447774269724675 + "points": { + "c1": -4.837796994550143, + "c2": -17.607538649888994, + "c3": -0.3078760738437083, + "c4": -22.597868519119764, + "c5": 11.051136562440071, + "c6": -30.953003060152675, + "c7": 30.22263188300019 }, - "vertexSeeds": { - "c1": 8.370814445306847, - "c2": 7.714790337058111, - "c3": 8.439252571793174, - "c4": 8.447389406084762, - "c5": 7.160637622659577, - "c6": 7.623660266202888, - "c7": 7.169690594521393 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657427, + "c3": 10.147942672214516, + "c4": 8.118354137771616, + "c5": 6.088765603328707, + "c6": 4.059177068885808, + "c7": 2.0295885344429103 }, "rgb": [238, 201, 159] }, @@ -415941,23 +415941,23 @@ "year": 1817, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 9.427236393272263, - "c2": -23.687092053964488, - "c3": 18.546582897717574, - "c4": -12.34450991832082, - "c5": -8.905936509670173, - "c6": 15.768870958462944, - "c7": 20.995367093998905 + "points": { + "c1": 20.57075321440946, + "c2": -4.166356423269981, + "c3": -1.9899304868238268, + "c4": -1.7937951856146306, + "c5": 5.834232945445013, + "c6": -11.847546644332347, + "c7": 1.7686946427293542 }, - "vertexSeeds": { - "c1": 7.6590204983095855, - "c2": 7.946594270674367, - "c3": 7.76557461392666, - "c4": 7.27478960622274, - "c5": 7.550933447587708, - "c6": 7.851993916212696, - "c7": 7.704833977617859 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611654, + "c3": 9.546925566343033, + "c4": 7.63754045307443, + "c5": 5.728155339805827, + "c6": 3.818770226537205, + "c7": 1.9093851132686026 }, "rgb": [222, 0, 59] }, @@ -415968,23 +415968,23 @@ "year": 1817, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -30.002360029129015, - "c2": 11.476974405060378, - "c3": 10.20645422439097, - "c4": -30.20111452915466, - "c5": -17.242690596604625, - "c6": 21.002838585150005, - "c7": -27.04320679752464 + "points": { + "c1": -11.433137211886581, + "c2": -29.68557846764632, + "c3": -7.343585322525666, + "c4": 22.19075928392749, + "c5": 22.416178863993416, + "c6": -1.1566714119620904, + "c7": -6.231518700391732 }, - "vertexSeeds": { - "c1": 6.521094920078826, - "c2": 6.704962114105345, - "c3": 6.57640925155342, - "c4": 6.873542682569634, - "c5": 7.084431990662625, - "c6": 7.226405407110708, - "c7": 7.1652765783705155 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.40221914008322, + "c3": 8.668515950069354, + "c4": 6.934812760055469, + "c5": 5.201109570041601, + "c6": 3.4674063800277346, + "c7": 1.7337031900138673 }, "rgb": [58, 15, 49] }, @@ -415995,23 +415995,23 @@ "year": 1817, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -22.596481816074167, - "c2": 13.113193007489258, - "c3": 5.668174119725414, - "c4": -3.5695608302988617, - "c5": 2.796996566797688, - "c6": 13.96854827015521, - "c7": -11.510156903934469 + "points": { + "c1": 25.98021453719064, + "c2": 4.059925214607489, + "c3": 20.554661435092108, + "c4": 14.215027512109984, + "c5": 3.9149625122637204, + "c6": -14.358650368018303, + "c7": -24.96867023266725 }, - "vertexSeeds": { - "c1": 7.156241374667621, - "c2": 7.291499966789188, - "c3": 6.9714905820539785, - "c4": 7.547875639832265, - "c5": 7.202523565805907, - "c6": 6.862248269415055, - "c7": 7.13526180000008 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [77, 76, 132] }, @@ -416022,23 +416022,23 @@ "year": 1817, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": 13.768564055840883, - "c2": -23.31898922367279, - "c3": 3.3512796358835573, - "c4": 21.136064531897304, - "c5": -6.27129140555034, - "c6": 14.47763496833349, - "c7": 3.772142218294995 + "points": { + "c1": 2.0387776076427606, + "c2": 17.28073490242297, + "c3": -8.505720061863016, + "c4": -12.264669841583821, + "c5": -11.452824056587136, + "c6": 16.137409812077998, + "c7": -11.304284304288473 }, - "vertexSeeds": { - "c1": 3.473928967832736, - "c2": 3.2444757690741426, - "c3": 3.22601929564296, - "c4": 3.177240104207073, - "c5": 3.316582434103742, - "c6": 3.242939700721054, - "c7": 3.2247605648348148 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521499, + "c3": 4.322699953767917, + "c4": 3.458159963014335, + "c5": 2.593619972260746, + "c6": 1.729079981507164, + "c7": 0.864539990753582 }, "rgb": [222, 0, 59] }, @@ -416049,23 +416049,23 @@ "year": 1817, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 17.195919284529488, - "c2": 5.678868229090156, - "c3": 14.290063942687134, - "c4": 19.428783616021803, - "c5": 1.135763820074338, - "c6": 4.673516391327006, - "c7": -4.627802833908593 + "points": { + "c1": 22.992511377726807, + "c2": -27.8075423417218, + "c3": 6.417509384583134, + "c4": -5.044641681359078, + "c5": -28.607954858604494, + "c6": -26.423380237142343, + "c7": -11.27539570498499 }, - "vertexSeeds": { - "c1": 8.448520736292378, - "c2": 8.441632278325041, - "c3": 8.408373884129684, - "c4": 8.327974307081774, - "c5": 8.323102685246079, - "c6": 8.469052386024568, - "c7": 8.323504814804362 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657399, + "c3": 10.147942672214553, + "c4": 8.118354137771627, + "c5": 6.088765603328699, + "c6": 4.0591770688858535, + "c7": 2.0295885344429268 }, "rgb": [238, 201, 159] }, @@ -416076,23 +416076,23 @@ "year": 1817, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -14.144704005519415, - "c2": -9.417838462537224, - "c3": -20.34244356247524, - "c4": 7.317591973017279, - "c5": -11.39133840506389, - "c6": -10.830314969240252, - "c7": 13.272844539034534 + "points": { + "c1": 7.999634554263569, + "c2": -15.140197612629127, + "c3": 9.497830797242376, + "c4": 11.730037076053282, + "c5": 24.222363765307964, + "c6": -23.97670120424914, + "c7": 17.98772958265324 }, - "vertexSeeds": { - "c1": 4.220368062861016, - "c2": 4.478174423767288, - "c3": 4.277764848048302, - "c4": 4.3188438131234905, - "c5": 4.391570846149519, - "c6": 4.2126902854321235, - "c7": 3.9959236157381843 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843278, + "c4": 4.3273231622746176, + "c5": 3.245492371705965, + "c6": 2.1636615811373128, + "c7": 1.0818307905686602 }, "rgb": [58, 15, 49] }, @@ -416103,23 +416103,23 @@ "year": 1817, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 5.6635706432647694, - "c2": -6.343337151965397, - "c3": 13.083998540969638, - "c4": 6.651716300483912, - "c5": 21.89814495561228, - "c6": -1.9868993796547123, - "c7": 10.720005787500362 + "points": { + "c1": 6.76782555936439, + "c2": -5.18702249492112, + "c3": 1.2314564110382378, + "c4": 27.62115567998734, + "c5": 22.79514332163391, + "c6": -30.837201647444427, + "c7": -26.720748206886018 }, - "vertexSeeds": { - "c1": 3.3520992858057443, - "c2": 3.3104402124922387, - "c3": 3.2279241380797288, - "c4": 3.3085089289562184, - "c5": 3.21769054247274, - "c6": 3.3438973785276254, - "c7": 3.349420524763548 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.9930651872399485, + "c3": 4.160887656033286, + "c4": 3.3287101248266326, + "c5": 2.4965325936199694, + "c6": 1.6643550624133163, + "c7": 0.832177531206663 }, "rgb": [58, 15, 49] }, @@ -416130,23 +416130,23 @@ "year": 1817, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 23.706777672254926, - "c2": 8.168461049716843, - "c3": 9.302438324237375, - "c4": -19.35479953791515, - "c5": 3.0074761279834803, - "c6": -27.1770784664539, - "c7": -9.583796750958097 + "points": { + "c1": 17.799456691318756, + "c2": 27.28357519956771, + "c3": -7.4194685595679175, + "c4": 20.499664733177195, + "c5": 2.829100596975305, + "c6": -2.757235084093871, + "c7": -17.720339974471564 }, - "vertexSeeds": { - "c1": 5.269237359592907, - "c2": 5.132340145321216, - "c3": 5.279095093125663, - "c4": 4.888908425524855, - "c5": 5.217068914515624, - "c6": 5.410348711218626, - "c7": 4.898169420552113 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503462, + "c3": 6.6111881645862285, + "c4": 5.28895053166898, + "c5": 3.966712898751731, + "c6": 2.6444752658344823, + "c7": 1.3222376329172487 }, "rgb": [77, 76, 132] }, @@ -416157,23 +416157,23 @@ "year": 1817, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -15.324552936203064, - "c2": -11.159200135143399, - "c3": 4.456379634714239, - "c4": -1.3623725035837175, - "c5": -23.62901180565728, - "c6": 5.855791198224143, - "c7": -21.526228446379445 + "points": { + "c1": -26.376939269291377, + "c2": 13.442713687762716, + "c3": -24.017650203984253, + "c4": -9.475837867342495, + "c5": 15.721890469779847, + "c6": 26.402690223218475, + "c7": -17.5355424334737 }, - "vertexSeeds": { - "c1": 3.057167936158267, - "c2": 3.271474389052104, - "c3": 3.251385364400166, - "c4": 2.9625793117128203, - "c5": 3.0933591599518393, - "c6": 3.2074054314584086, - "c7": 2.9024661199344037 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.96532593619972, + "c3": 4.137771613499769, + "c4": 3.3102172907998133, + "c5": 2.482662968099863, + "c6": 1.6551086453999067, + "c7": 0.8275543226999561 }, "rgb": [222, 0, 59] }, @@ -416184,23 +416184,23 @@ "year": 1817, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -27.091353598526783, - "c2": 5.201865248206232, - "c3": 5.089505696145849, - "c4": -15.322231265348979, - "c5": 2.808128618307066, - "c6": 13.342788893782, - "c7": -18.29585086761196 + "points": { + "c1": -5.814480598565904, + "c2": 9.934983440450871, + "c3": -10.854193794652954, + "c4": 27.22842628883346, + "c5": 14.159208752520918, + "c6": -25.28623588209852, + "c7": 21.647704283994244 }, - "vertexSeeds": { - "c1": 12.624983329206936, - "c2": 14.277971961593067, - "c3": 13.630496171274745, - "c4": 13.672544998910535, - "c5": 12.749218749069515, - "c6": 13.860878234731418, - "c7": 13.993334480799247 + "offsets": { + "c1": 23.883495145631066, + "c2": 20.471567267683763, + "c3": 17.059639389736457, + "c4": 13.647711511789185, + "c5": 10.235783633841882, + "c6": 6.823855755894577, + "c7": 3.411927877947273 }, "rgb": [77, 76, 132] }, @@ -416211,23 +416211,23 @@ "year": 1817, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -12.345227366394504, - "c2": -25.23817586352027, - "c3": -19.940161997368882, - "c4": -6.753752299867273, - "c5": 10.259012057853816, - "c6": -15.856072728747577, - "c7": 6.761360037976715 + "points": { + "c1": 14.272445890441027, + "c2": -10.719767541868983, + "c3": 15.14529206240121, + "c4": 13.366740433888403, + "c5": -9.466609622864066, + "c6": -27.310471829393343, + "c7": 19.366992049135405 }, - "vertexSeeds": { - "c1": 2.82918722595532, - "c2": 2.9118984884588257, - "c3": 2.96027433014889, - "c4": 2.8518348807155576, - "c5": 2.757579283966367, - "c6": 2.9357578699706877, - "c7": 3.0264368457714763 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.49375866851595, + "c3": 3.7447988904299585, + "c4": 2.9958391123439667, + "c5": 2.246879334257975, + "c6": 1.4979195561719834, + "c7": 0.7489597780859917 }, "rgb": [222, 0, 59] }, @@ -416238,23 +416238,23 @@ "year": 1817, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": -17.949302599935667, - "c2": 6.467145756215508, - "c3": 3.1431846751782686, - "c4": 36.16570008677588, - "c5": 15.32207182325157, - "c6": 28.228116833077756, - "c7": -6.976104473142875 + "points": { + "c1": 21.487042595074193, + "c2": -44.93764306594185, + "c3": -8.133153246595782, + "c4": -35.54246656370045, + "c5": 45.81345397849626, + "c6": 34.65110419882256, + "c7": -9.944450894124174 }, - "vertexSeeds": { - "c1": 4.487605379705437, - "c2": 4.271343055833263, - "c3": 4.338962477014645, - "c4": 4.472474533989231, - "c5": 4.3512974127993225, - "c6": 4.276278596432562, - "c7": 4.410933148032533 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411928, + "c3": 5.4091539528432735, + "c4": 4.327323162274618, + "c5": 3.245492371705964, + "c6": 2.163661581137309, + "c7": 1.0818307905686546 }, "rgb": [58, 15, 49] }, @@ -416265,23 +416265,23 @@ "year": 1817, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -5.428395540735419, - "c2": -14.192407006330996, - "c3": -8.948379931948935, - "c4": 3.7450844562679393, - "c5": 10.380966103435313, - "c6": 27.892187998859328, - "c7": -1.519823703922171 + "points": { + "c1": 29.888746542278348, + "c2": -22.02672737611701, + "c3": -29.959947717555348, + "c4": -26.16440802309695, + "c5": -22.98877214915426, + "c6": 7.413809821176393, + "c7": -20.34513432090878 }, - "vertexSeeds": { - "c1": 9.903908077872934, - "c2": 10.376713559056384, - "c3": 9.732121457739645, - "c4": 9.56977440411762, - "c5": 10.402248691854506, - "c6": 9.865858890812396, - "c7": 10.163493409724518 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.006934812760061, + "c3": 12.50577901063339, + "c4": 10.00462320850672, + "c5": 7.503467406380031, + "c6": 5.00231160425336, + "c7": 2.5011558021266715 }, "rgb": [238, 201, 159] }, @@ -416292,23 +416292,23 @@ "year": 1817, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -1.1680786112733266, - "c2": 3.1154122757067313, - "c3": -15.918030410690454, - "c4": -8.34543020380081, - "c5": 27.058593884426415, - "c6": -0.5967617049674381, - "c7": -17.736762712888634 + "points": { + "c1": -20.58451934790957, + "c2": -5.102396124432509, + "c3": 26.829565972444954, + "c4": -20.504699850306608, + "c5": -10.317685362476947, + "c6": 5.9618578419569985, + "c7": 8.745362934876624 }, - "vertexSeeds": { - "c1": 8.607269742597905, - "c2": 9.078374872906211, - "c3": 8.59824613028879, - "c4": 8.561585016152758, - "c5": 9.12519052357764, - "c6": 8.910051418815728, - "c7": 9.614993312795525 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110949, + "c3": 11.558021266759132, + "c4": 9.2464170134073, + "c5": 6.934812760055482, + "c6": 4.62320850670365, + "c7": 2.311604253351832 }, "rgb": [86, 146, 138] }, @@ -416319,23 +416319,23 @@ "year": 1817, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -28.648435888297698, - "c2": 22.408350507532234, - "c3": -11.375368158682331, - "c4": 1.814847159804934, - "c5": 14.309137878753944, - "c6": -4.519329549301663, - "c7": 18.12417790081126 + "points": { + "c1": 3.009408369729414, + "c2": 4.353861240048083, + "c3": -3.0361338210650644, + "c4": -9.629575906216516, + "c5": -9.436899150962873, + "c6": 23.928470949529554, + "c7": -3.573036673319912 }, - "vertexSeeds": { - "c1": 5.269587657249152, - "c2": 5.246728988864391, - "c3": 5.25634053853942, - "c4": 5.836389018983547, - "c5": 5.180044200131389, - "c6": 5.473923967702538, - "c7": 5.693162364036031 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187242, + "c3": 7.004160887656036, + "c4": 5.603328710124819, + "c5": 4.2024965325936146, + "c6": 2.8016643550624094, + "c7": 1.4008321775312047 }, "rgb": [58, 15, 49] }, @@ -416346,23 +416346,23 @@ "year": 1817, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -27.804878458334034, - "c2": 1.602518411663521, - "c3": 1.4168856261254952, - "c4": 11.309813069576858, - "c5": -22.150756262221854, - "c6": 28.975033027849012, - "c7": -15.097718441010386 + "points": { + "c1": 12.508092938095658, + "c2": -23.711395697324157, + "c3": 0.956252352524011, + "c4": -2.8766764556019524, + "c5": 2.468677115390882, + "c6": 14.509773814608103, + "c7": 7.597700905228727 }, - "vertexSeeds": { - "c1": 9.84706716992018, - "c2": 11.609030222477214, - "c3": 11.682712708736974, - "c4": 10.796001781532327, - "c5": 11.289818112035277, - "c6": 10.86982240356064, - "c7": 11.397788566548511 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.753120665742035, + "c3": 14.794267221451687, + "c4": 11.835413777161355, + "c5": 8.876560332871009, + "c6": 5.917706888580677, + "c7": 2.9588534442903307 }, "rgb": [238, 201, 159] }, @@ -416373,23 +416373,23 @@ "year": 1817, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -0.32483453453929556, - "c2": -11.106828210960122, - "c3": 2.5101327452305604, - "c4": 26.218120333431184, - "c5": 21.647775625648773, - "c6": -1.7804304479798496, - "c7": 12.746240317070967 + "points": { + "c1": 11.81081347607594, + "c2": -7.381933909280789, + "c3": 7.6083990020441625, + "c4": 18.487390331295632, + "c5": 3.7897768738115296, + "c6": -27.062825299299, + "c7": -1.6055141492005873 }, - "vertexSeeds": { - "c1": 7.990304189606485, - "c2": 8.038533652462986, - "c3": 8.055206865577048, - "c4": 8.101884640414763, - "c5": 8.020666040083329, - "c6": 8.081850513727034, - "c7": 8.106586199062606 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893224, + "c3": 9.708737864077639, + "c4": 7.766990291262126, + "c5": 5.825242718446612, + "c6": 3.8834951456310276, + "c7": 1.9417475728155138 }, "rgb": [77, 76, 132] }, @@ -416400,23 +416400,23 @@ "year": 1817, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -8.27849734857221, - "c2": -5.365678953814282, - "c3": -20.97957957862556, - "c4": 4.534015600884402, - "c5": -2.1974954032136402, - "c6": 19.179894076998146, - "c7": 13.313168156473509 + "points": { + "c1": -18.373508751122152, + "c2": 21.59585502681182, + "c3": -13.571172551362597, + "c4": 11.63602872069201, + "c5": -13.84734755980832, + "c6": 10.514564148700451, + "c7": -18.57392695038531 }, - "vertexSeeds": { - "c1": 2.172730993641012, - "c2": 2.2312493075048767, - "c3": 2.2441440502441012, - "c4": 2.227981106991047, - "c5": 2.279599700843126, - "c6": 2.245508168247015, - "c7": 2.2388732433870224 + "offsets": { + "c1": 4.0453074433656955, + "c2": 3.46740638002774, + "c3": 2.889505316689781, + "c4": 2.3116042533518253, + "c5": 1.73370319001387, + "c6": 1.1558021266759146, + "c7": 0.5779010633379554 }, "rgb": [222, 0, 59] }, @@ -416427,23 +416427,23 @@ "year": 1817, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 16.75252884840201, - "c2": 3.8910381287572875, - "c3": -18.304169577671303, - "c4": 19.802537010172475, - "c5": -14.993672329066188, - "c6": 21.703496842470994, - "c7": -20.160883093180743 + "points": { + "c1": 23.92030578866056, + "c2": -5.952753244771802, + "c3": 16.597433423955, + "c4": -18.197627994031293, + "c5": -22.538015981583236, + "c6": 22.3898077597614, + "c7": 21.660016415346714 }, - "vertexSeeds": { - "c1": 4.325540916378675, - "c2": 4.00007139402642, - "c3": 3.9836600836374156, - "c4": 4.27661962363865, - "c5": 3.958202486318108, - "c6": 3.924924464712769, - "c7": 4.268790357904457 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.3166897827092, + "c4": 4.253351826167363, + "c5": 3.1900138696255183, + "c6": 2.1266759130836816, + "c7": 1.063337956541837 }, "rgb": [222, 0, 59] }, @@ -416454,23 +416454,23 @@ "year": 1817, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 26.38655052409782, - "c2": 31.203917643920185, - "c3": 43.08507367515174, - "c4": -43.78570769898203, - "c5": -20.969556954435745, - "c6": 3.497919514413674, - "c7": 1.5201097900788625 + "points": { + "c1": -18.377266499437027, + "c2": 44.29401926066907, + "c3": -6.194827522002882, + "c4": -25.475301389505656, + "c5": 34.87253994735115, + "c6": -29.217145759777875, + "c7": 17.30121241456603 }, - "vertexSeeds": { - "c1": 5.265806030366305, - "c2": 5.318378997421997, - "c3": 5.195436573101711, - "c4": 5.283263082966218, - "c5": 5.184210320437735, - "c6": 5.193782388084072, - "c7": 5.19278961962049 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036060999, + "c3": 6.35691169671753, + "c4": 5.085529357373999, + "c5": 3.814147018030531, + "c6": 2.5427646786869995, + "c7": 1.2713823393434682 }, "rgb": [222, 0, 59] }, @@ -416481,23 +416481,23 @@ "year": 1817, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -19.60365858093835, - "c2": 3.5255781327718694, - "c3": -20.649190898443134, - "c4": 18.590808668691423, - "c5": 21.15133380200882, - "c6": -20.10931846369262, - "c7": 2.4037345977826554 + "points": { + "c1": -23.448880404494062, + "c2": 4.128621458893306, + "c3": -18.014556159599493, + "c4": -13.746583901344819, + "c5": 0.3830124914700761, + "c6": -24.855819770423018, + "c7": -22.96903888250573 }, - "vertexSeeds": { - "c1": 3.7548769506264876, - "c2": 4.1143943498867515, - "c3": 4.249966512641212, - "c4": 4.239851466752599, - "c5": 3.74594448073785, - "c6": 4.458919729351728, - "c7": 4.072084580886889 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291265, + "c3": 5.339805825242718, + "c4": 4.271844660194176, + "c5": 3.2038834951456296, + "c6": 2.135922330097088, + "c7": 1.0679611650485417 }, "rgb": [58, 15, 49] }, @@ -416508,23 +416508,23 @@ "year": 1817, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 5.416659134108812, - "c2": 15.462345826007098, - "c3": -20.86271715036409, - "c4": 22.441788870510134, - "c5": -11.177560043208276, - "c6": -19.88387192393726, - "c7": -21.80997117602833 + "points": { + "c1": 24.531697569416945, + "c2": -8.379523995476305, + "c3": -15.367492030315828, + "c4": 5.854333433429051, + "c5": -25.85859654416805, + "c6": 2.4072343786671055, + "c7": -23.67794491860932 }, - "vertexSeeds": { - "c1": 5.379609323711156, - "c2": 5.337649836000649, - "c3": 4.962242995856609, - "c4": 5.031729373329144, - "c5": 5.359062573268842, - "c6": 4.991892728287238, - "c7": 5.173659960455097 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704575, + "c3": 6.72676837725381, + "c4": 5.3814147018030445, + "c5": 4.03606102635228, + "c6": 2.69070735090153, + "c7": 1.345353675450765 }, "rgb": [222, 0, 59] }, @@ -416535,23 +416535,23 @@ "year": 1817, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 1.3403755410109746, - "c2": 11.412528798789555, - "c3": 16.830567384625336, - "c4": 2.557604553577889, - "c5": 21.606787268379282, - "c6": 15.870643237141106, - "c7": 12.247253922619148 + "points": { + "c1": -20.39620237157227, + "c2": 3.757812700931826, + "c3": -12.53428169337826, + "c4": -10.234681921980705, + "c5": -5.369784824297028, + "c6": -24.4035071479657, + "c7": -24.672196182690044 }, - "vertexSeeds": { - "c1": 7.495657653156802, - "c2": 7.400409006243459, - "c3": 7.520139215978663, - "c4": 6.571231676364331, - "c5": 7.105472724947463, - "c6": 7.673836514642021, - "c7": 6.496043145948361 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968106, + "c3": 9.177068885806749, + "c4": 7.341655108645402, + "c5": 5.506241331484047, + "c6": 3.670827554322701, + "c7": 1.8354137771613452 }, "rgb": [77, 76, 132] }, @@ -416562,23 +416562,23 @@ "year": 1817, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 0.2870918517984542, - "c2": -6.104163229468451, - "c3": -25.641901919481228, - "c4": -21.16154045203374, - "c5": -10.995277093890504, - "c6": -4.8207346986535775, - "c7": -0.07603332021515996 + "points": { + "c1": 27.59931660098917, + "c2": -9.509661120439159, + "c3": 6.337216358253976, + "c4": -6.407910201013603, + "c5": 3.076046369115531, + "c6": 6.539131014253876, + "c7": -5.772180237836608 }, - "vertexSeeds": { - "c1": 15.261768906927712, - "c2": 15.42426347709285, - "c3": 15.123529071227354, - "c4": 15.478032124824024, - "c5": 15.521912153261567, - "c6": 15.626643190733171, - "c7": 15.265806175825167 + "offsets": { + "c1": 26.310679611650485, + "c2": 22.552011095700383, + "c3": 18.79334257975036, + "c4": 15.034674063800253, + "c5": 11.27600554785023, + "c6": 7.5173370319001265, + "c7": 3.758668515950104 }, "rgb": [222, 0, 59] }, @@ -416589,23 +416589,23 @@ "year": 1817, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -27.478618259446947, - "c2": -4.854243246501294, - "c3": 23.80428571313707, - "c4": 11.915103805104863, - "c5": 30.597333693471832, - "c6": -19.657816601201613, - "c7": -27.789493924957654 + "points": { + "c1": 32.105200069687754, + "c2": -9.949328932114277, + "c3": -26.032993496915395, + "c4": 18.87784496314248, + "c5": -31.63340443269859, + "c6": 2.7727973644800272, + "c7": -24.84003235097834 }, - "vertexSeeds": { - "c1": 8.491804911791542, - "c2": 8.167911022264452, - "c3": 8.57685271493855, - "c4": 9.269158367015875, - "c5": 8.566029282695833, - "c6": 9.427112535647236, - "c7": 8.680372301120949 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588066, + "c3": 11.257512713823395, + "c4": 9.00601017105871, + "c5": 6.754507628294027, + "c6": 4.503005085529355, + "c7": 2.2515025427646718 }, "rgb": [222, 0, 59] }, @@ -416616,23 +416616,23 @@ "year": 1817, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -5.67340578854256, - "c2": -5.267586827613968, - "c3": -5.315533137416068, - "c4": -22.360175394405562, - "c5": -14.540809408575216, - "c6": -12.772535513731249, - "c7": -27.971018181793287 + "points": { + "c1": -20.015575371787858, + "c2": -8.870774745097485, + "c3": -3.3426563037992203, + "c4": -16.384882194122923, + "c5": 3.7602790021763006, + "c6": -13.153678199054976, + "c7": -13.523061594493473 }, - "vertexSeeds": { - "c1": 10.701644331038953, - "c2": 9.84189246980558, - "c3": 10.697274153817878, - "c4": 10.456568865778191, - "c5": 10.699964484490671, - "c6": 9.904612030457562, - "c7": 10.303909763723237 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323159, + "c3": 12.829403606102625, + "c4": 10.263522884882093, + "c5": 7.697642163661598, + "c6": 5.131761442441066, + "c7": 2.565880721220533 }, "rgb": [86, 146, 138] }, @@ -416643,23 +416643,23 @@ "year": 1817, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 22.0354756754617, - "c2": 11.191783020196201, - "c3": -30.749231737692014, - "c4": 14.491794019485713, - "c5": 7.180968445536184, - "c6": 12.37779741095245, - "c7": -19.239683495967068 + "points": { + "c1": 16.349660740441678, + "c2": -13.343466579616987, + "c3": -26.160463338572942, + "c4": -2.997173423623451, + "c5": 23.42041438008681, + "c6": -16.32376958721774, + "c7": 24.639579992623027 }, - "vertexSeeds": { - "c1": 5.102486557686182, - "c2": 5.27498291217346, - "c3": 5.164157204148602, - "c4": 5.281819572999792, - "c5": 5.18388786982692, - "c6": 5.077082125637152, - "c7": 5.1539845324375095 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543689, + "c3": 6.634304207119742, + "c4": 5.307443365695793, + "c5": 3.9805825242718447, + "c6": 2.6537216828478964, + "c7": 1.3268608414239482 }, "rgb": [222, 0, 59] }, @@ -416670,23 +416670,23 @@ "year": 1817, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -4.574433635873138, - "c2": 16.01804924483033, - "c3": -20.194587948055563, - "c4": -8.426750460369597, - "c5": 15.07420877582367, - "c6": -23.692152964209964, - "c7": 4.292809451783526 + "points": { + "c1": -6.416538411787233, + "c2": -9.710828681406557, + "c3": -10.683661229544544, + "c4": -1.6816577613903583, + "c5": -19.486359030262932, + "c6": -18.87894908680942, + "c7": -9.339538965938324 }, - "vertexSeeds": { - "c1": 8.127429335127967, - "c2": 8.508170160136489, - "c3": 8.444647663483002, - "c4": 8.518445974757961, - "c5": 7.994080197302909, - "c6": 8.180182908418521, - "c7": 8.218186664838381 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220523, + "c3": 10.471567267683762, + "c4": 8.377253814147021, + "c5": 6.282940360610262, + "c6": 4.188626907073502, + "c7": 2.09431345353676 }, "rgb": [222, 0, 59] }, @@ -416697,23 +416697,23 @@ "year": 1817, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 5.247232647584337, - "c2": 23.1038470544554, - "c3": -12.131922987328371, - "c4": -3.6843903704657492, - "c5": -22.988647659321906, - "c6": -8.585893648583562, - "c7": -9.297934019305478 + "points": { + "c1": 18.888727528022564, + "c2": 19.37040640434482, + "c3": 15.563214556933957, + "c4": 8.782640975420478, + "c5": -6.490128729818075, + "c6": -5.373543584760348, + "c7": -24.134219480844525 }, - "vertexSeeds": { - "c1": 1.9509921777490635, - "c2": 1.98116414078522, - "c3": 1.9829686862631386, - "c4": 1.9571490337822894, - "c5": 2.0084825313676244, - "c6": 1.8374892503793505, - "c7": 1.8794026653362268 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635247, + "c3": 2.4503005085529352, + "c4": 1.9602404068423498, + "c5": 1.4701803051317603, + "c6": 0.9801202034211749, + "c7": 0.49006010171058934 }, "rgb": [238, 201, 159] }, @@ -416724,23 +416724,23 @@ "year": 1817, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 28.53069676714925, - "c2": -35.47622575111683, - "c3": -5.673179898325564, - "c4": -10.892741152123754, - "c5": 23.586731229110626, - "c6": 3.38387566151097, - "c7": 15.780877829417513 + "points": { + "c1": 21.246054147308698, + "c2": 1.2724395944997298, + "c3": -11.008990854488864, + "c4": 27.842644287422374, + "c5": -7.661507238130241, + "c6": 18.5659517225904, + "c7": -35.227942391763975 }, - "vertexSeeds": { - "c1": 12.038952316908325, - "c2": 11.860412952935837, - "c3": 12.093261261013142, - "c4": 12.16866722511454, - "c5": 12.160294481687108, - "c6": 11.931613438353363, - "c7": 12.077517502050698 + "offsets": { + "c1": 20.614886731391586, + "c2": 17.669902912621396, + "c3": 14.724919093851119, + "c4": 11.779935275080932, + "c5": 8.834951456310653, + "c6": 5.889967637540466, + "c7": 2.944983818770278 }, "rgb": [77, 76, 132] }, @@ -416751,23 +416751,23 @@ "year": 1817, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 17.095697954118116, - "c2": 10.497517974218944, - "c3": 4.582847206639258, - "c4": -9.464600223992946, - "c5": 8.68692744621741, - "c6": 14.061418791466835, - "c7": 15.17101922008829 + "points": { + "c1": 25.780958936490315, + "c2": 10.748872205980618, + "c3": 29.104909325831258, + "c4": 22.145984676027965, + "c5": -18.62251659058144, + "c6": 20.845725207778095, + "c7": 3.202531032790546 }, - "vertexSeeds": { - "c1": 5.532703007269633, - "c2": 5.377157403973735, - "c3": 5.566089686088011, - "c4": 5.917998117369243, - "c5": 5.779104563913162, - "c6": 5.633856271081763, - "c7": 5.809060491399546 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307898, + "c3": 7.073509015256591, + "c4": 5.658807212205265, + "c5": 4.244105409153959, + "c6": 2.8294036061026326, + "c7": 1.4147018030513068 }, "rgb": [58, 15, 49] }, @@ -416778,23 +416778,23 @@ "year": 1817, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": -23.501306263455568, - "c2": 0.1358320382996112, - "c3": 34.629033037668876, - "c4": -33.793957553730515, - "c5": -2.0143577010570155, - "c6": -15.439376962912114, - "c7": -17.241276650224176 + "points": { + "c1": 17.11264620074592, + "c2": 14.496409289120024, + "c3": -32.83954955454767, + "c4": -27.162014851787973, + "c5": 36.63403476456098, + "c6": -29.386640839308086, + "c7": 19.85876413048412 }, - "vertexSeeds": { - "c1": 6.2364731391860575, - "c2": 6.120897265874599, - "c3": 6.181564703313089, - "c4": 6.101656686527806, - "c5": 6.203134382798185, - "c6": 6.275502579571244, - "c7": 6.202247442368491 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031889, + "c3": 7.489597780859921, + "c4": 5.991678224687926, + "c5": 4.493758668515958, + "c6": 2.995839112343963, + "c7": 1.497919556171995 }, "rgb": [238, 201, 159] }, @@ -416805,23 +416805,23 @@ "year": 1817, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 22.29018327779172, - "c2": -20.54795624976735, - "c3": 0.132588320290008, - "c4": -6.545861120613836, - "c5": 0.5894454122273842, - "c6": -5.996332099538272, - "c7": -7.667319120770983 + "points": { + "c1": 2.3118485982740324, + "c2": -15.215063146638883, + "c3": -15.285050127983814, + "c4": 2.3066063322492347, + "c5": 11.725344491747954, + "c6": -7.746586388234771, + "c7": -8.415601926597983 }, - "vertexSeeds": { - "c1": 2.694321354952391, - "c2": 2.5859471612398237, - "c3": 2.6179919207978846, - "c4": 2.6628543773922853, - "c5": 2.624962804581738, - "c6": 2.854197375848533, - "c7": 2.8551086740350815 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.773925104022189, + "c5": 2.0804438280166457, + "c6": 1.3869625520110944, + "c7": 0.6934812760055434 }, "rgb": [86, 146, 138] }, @@ -416832,23 +416832,23 @@ "year": 1817, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 23.41460009448815, - "c2": 18.43384505290286, - "c3": 2.733055286588595, - "c4": 9.770107702203134, - "c5": 20.880203877844224, - "c6": 21.34339341655076, - "c7": 9.290054832942033 + "points": { + "c1": -18.343247076046488, + "c2": -9.365222854631675, + "c3": -9.538946189719237, + "c4": -12.84693535099265, + "c5": -7.129505605418107, + "c6": 8.237216117390794, + "c7": -1.4357357285381553 }, - "vertexSeeds": { - "c1": 6.875639649394575, - "c2": 7.230778150890734, - "c3": 7.128112281935834, - "c4": 7.319938359520376, - "c5": 7.09771129143458, - "c6": 7.013396030049139, - "c7": 6.885864631494473 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [86, 146, 138] }, @@ -416859,23 +416859,23 @@ "year": 1817, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 20.15411204980086, - "c2": 19.469117727992217, - "c3": 11.797956463325516, - "c4": 0.629783799828008, - "c5": 19.543504767697815, - "c6": -1.7099328195036705, - "c7": -21.773123356184396 + "points": { + "c1": 14.174894897139882, + "c2": 1.3933726520735874, + "c3": -3.1459800661081836, + "c4": -9.825815613241659, + "c5": -1.912446777495262, + "c6": 9.98777469477729, + "c7": 20.204699296915653 }, - "vertexSeeds": { - "c1": 7.979622420762793, - "c2": 8.102138357826334, - "c3": 8.150300294255628, - "c4": 8.703865703491998, - "c5": 7.872913838974608, - "c6": 7.86444691181142, - "c7": 7.8423547452494 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743415, + "c3": 10.772075820619515, + "c4": 8.617660656495602, + "c5": 6.463245492371701, + "c6": 4.308830328247801, + "c7": 2.1544151641239004 }, "rgb": [238, 201, 159] }, @@ -416886,23 +416886,23 @@ "year": 1817, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -5.146909472497665, - "c2": 3.515390148516275, - "c3": 2.8262753447943183, - "c4": 9.158137762545266, - "c5": 20.824182481193247, - "c6": 7.891852230637475, - "c7": 14.181190698878467 + "points": { + "c1": 5.77499740690363, + "c2": -11.033296764202916, + "c3": 15.036617463001939, + "c4": -11.244121077000429, + "c5": 16.438528756354835, + "c6": -8.533716642662256, + "c7": 15.147820800619684 }, - "vertexSeeds": { - "c1": 3.2629133613645496, - "c2": 3.534101532759808, - "c3": 3.2729966088482665, - "c4": 3.5102703987870294, - "c5": 3.427203937033554, - "c6": 3.48228996396109, - "c7": 3.202082568732897 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [58, 15, 49] }, @@ -416913,23 +416913,23 @@ "year": 1817, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 21.26558245256441, - "c2": -22.572454268943474, - "c3": -12.846059221735473, - "c4": -13.126174751642587, - "c5": -22.93929836470163, - "c6": -9.139652957007563, - "c7": -17.423331052331505 + "points": { + "c1": -20.677855696939343, + "c2": -11.965511961481287, + "c3": 21.508478597046242, + "c4": -1.2040565025778918, + "c5": 28.714099795367595, + "c6": -10.882002034537159, + "c7": 25.996552416738567 }, - "vertexSeeds": { - "c1": 8.83980849881579, - "c2": 8.576800064623658, - "c3": 8.411406678539425, - "c4": 8.340281851167491, - "c5": 8.159475756835063, - "c6": 8.81562801714945, - "c7": 8.337117131926137 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708739, + "c3": 11.32686084142395, + "c4": 9.061488673139163, + "c5": 6.796116504854376, + "c6": 4.530744336569588, + "c7": 2.2653721682848 }, "rgb": [58, 15, 49] }, @@ -416940,23 +416940,23 @@ "year": 1817, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -23.98083701572213, - "c2": 27.99110760907336, - "c3": 10.224060241575081, - "c4": -15.967849091962217, - "c5": -19.83241014468704, - "c6": 14.797688166342695, - "c7": 1.8339195885632265 + "points": { + "c1": 28.468782407578416, + "c2": -23.253396998520316, + "c3": 20.723559430671088, + "c4": -2.752392828703627, + "c5": 28.739349915648255, + "c6": 16.962432913642715, + "c7": -24.77185047786854 }, - "vertexSeeds": { - "c1": 5.796141890282411, - "c2": 5.782904518410246, - "c3": 5.971051061083867, - "c4": 5.695427664134997, - "c5": 5.6186178228464145, - "c6": 5.92909044695897, - "c7": 6.2074674637787695 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192784, + "c3": 7.582061950993982, + "c4": 6.065649560795194, + "c5": 4.549237170596392, + "c6": 3.0328247803975894, + "c7": 1.5164123901988023 }, "rgb": [86, 146, 138] }, @@ -416967,23 +416967,23 @@ "year": 1817, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 19.871647279658543, - "c2": 8.766015038258747, - "c3": 21.69568052457066, - "c4": 8.64291904739634, - "c5": 4.02029714472026, - "c6": 13.984442640598036, - "c7": -9.727122929516613 + "points": { + "c1": 12.965409380353716, + "c2": -7.619172487813138, + "c3": -5.890724318246061, + "c4": -0.4778712855348921, + "c5": -4.97490377730616, + "c6": -20.028327737229453, + "c7": -6.299919597124102 }, - "vertexSeeds": { - "c1": 9.322581476242993, - "c2": 9.316363956309628, - "c3": 9.324116744733315, - "c4": 9.291447525556478, - "c5": 9.268567020214363, - "c6": 9.309622726733869, - "c7": 9.307286100829932 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346657, + "c3": 11.11881645862241, + "c4": 8.89505316689787, + "c5": 6.671289875173328, + "c6": 4.447526583448787, + "c7": 2.223763291724541 }, "rgb": [238, 201, 159] }, @@ -416994,23 +416994,23 @@ "year": 1817, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 2.085394235852654, - "c2": 8.554958160505656, - "c3": 16.109655905073005, - "c4": 20.63826962398715, - "c5": -0.25749270518662826, - "c6": 19.080652616742796, - "c7": 8.436079953750607 + "points": { + "c1": -6.659180470704925, + "c2": -18.95650583595385, + "c3": -28.807200671589328, + "c4": 19.89452864475149, + "c5": 1.1297415215576336, + "c6": -32.670848996502826, + "c7": -12.280292236381165 }, - "vertexSeeds": { - "c1": 7.051912693499334, - "c2": 6.690554915231425, - "c3": 6.999098945674738, - "c4": 6.705698704731515, - "c5": 7.349368019810406, - "c6": 7.170255547400258, - "c7": 6.996214668904986 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128991, + "c3": 9.269533055940826, + "c4": 7.4156264447526645, + "c5": 5.5617198335644895, + "c6": 3.7078132223763265, + "c7": 1.8539066111881632 }, "rgb": [238, 201, 159] }, @@ -417021,23 +417021,23 @@ "year": 1817, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 26.991745191136378, - "c2": 19.647926956280063, - "c3": -26.631247706928985, - "c4": 19.047373276243906, - "c5": -2.162420656771431, - "c6": 10.090183005542759, - "c7": 20.276522195153188 + "points": { + "c1": 31.015543402874645, + "c2": -9.36409994463368, + "c3": -17.426960858621705, + "c4": -22.52103028230143, + "c5": 6.510266419827065, + "c6": -12.042701655851573, + "c7": 3.1003859865869536 }, - "vertexSeeds": { - "c1": 10.104149335617109, - "c2": 9.014668811291713, - "c3": 10.310748604767307, - "c4": 9.77123580639504, - "c5": 10.030538256412065, - "c6": 10.004669523077903, - "c7": 10.02887626971116 + "offsets": { + "c1": 17.475728155339805, + "c2": 14.97919556171984, + "c3": 12.482662968099852, + "c4": 9.986130374479886, + "c5": 7.48959778085992, + "c6": 4.993065187239943, + "c7": 2.4965325936199654 }, "rgb": [222, 0, 59] }, @@ -417048,23 +417048,23 @@ "year": 1817, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 22.838583719607072, - "c2": 14.479437265764147, - "c3": 11.172866339561736, - "c4": -15.93365742447202, - "c5": 5.0186245535108505, - "c6": -23.572076617885298, - "c7": -2.8394080298836926 + "points": { + "c1": -5.179993514423671, + "c2": 5.14665764823069, + "c3": -18.09447046188002, + "c4": -2.50358260035129, + "c5": 4.631356853331315, + "c6": -0.8430155156422536, + "c7": -18.999477778969027 }, - "vertexSeeds": { - "c1": 3.822934039066972, - "c2": 3.509936089546408, - "c3": 3.6596580211179885, - "c4": 3.582656140072806, - "c5": 3.6163120602696823, - "c6": 3.796702810504074, - "c7": 3.815351842321185 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325938, + "c3": 4.785020804438283, + "c4": 3.828016643550623, + "c5": 2.871012482662969, + "c6": 1.9140083217753148, + "c7": 0.9570041608876609 }, "rgb": [77, 76, 132] }, @@ -417075,23 +417075,23 @@ "year": 1817, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -23.383657838434495, - "c2": 19.035680003519452, - "c3": -22.733751812223986, - "c4": 0.9747764925285445, - "c5": 11.163684038475239, - "c6": 20.806290973076862, - "c7": -8.565460094077316 + "points": { + "c1": -7.189771705704661, + "c2": -15.510618932161167, + "c3": -21.181527166292653, + "c4": 0.7903774266352315, + "c5": 11.962664354035844, + "c6": -6.083842545862403, + "c7": 4.463500386193825 }, - "vertexSeeds": { - "c1": 3.2211143719711095, - "c2": 3.386437032123696, - "c3": 3.2863746702415515, - "c4": 3.180158954569625, - "c5": 3.1739438464889544, - "c6": 3.2431720772680688, - "c7": 3.372287988545939 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199721, + "c3": 4.137771613499766, + "c4": 3.3102172907998115, + "c5": 2.4826629680998646, + "c6": 1.65510864539991, + "c7": 0.827554322699955 }, "rgb": [238, 201, 159] }, @@ -417102,23 +417102,23 @@ "year": 1817, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -3.6172176785798804, - "c2": -4.226369751977609, - "c3": -6.8271442626399335, - "c4": -6.605345053478548, - "c5": 17.400670449111445, - "c6": 2.15565350127531, - "c7": 14.485857804282965 + "points": { + "c1": -3.451145657276637, + "c2": -12.773483525756339, + "c3": -19.63474155691024, + "c4": -15.707021946641268, + "c5": -11.369592657077726, + "c6": 16.977393436778435, + "c7": -17.94404889976635 }, - "vertexSeeds": { - "c1": 13.54101159593054, - "c2": 11.860776323019168, - "c3": 13.254617316863012, - "c4": 12.60228147198522, - "c5": 13.231737426966959, - "c6": 12.614099350534925, - "c7": 12.781607284692987 + "offsets": { + "c1": 22.75080906148867, + "c2": 19.500693481276, + "c3": 16.250577901063348, + "c4": 13.000462320850673, + "c5": 9.750346740638, + "c6": 6.500231160425325, + "c7": 3.2501155802126735 }, "rgb": [86, 146, 138] }, @@ -417129,23 +417129,23 @@ "year": 1817, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 7.994307259507792, - "c2": -10.665334196620185, - "c3": 7.185792797949354, - "c4": 0.583008120973318, - "c5": -0.840464122805237, - "c6": -13.128923977967691, - "c7": -1.666267032250797 + "points": { + "c1": 2.600648649680224, + "c2": -19.36683631299382, + "c3": 20.25645321165557, + "c4": -3.9242983417573356, + "c5": -1.139173590947486, + "c6": 0.6373821826996, + "c7": -13.620061181666449 }, - "vertexSeeds": { - "c1": 4.548500954418087, - "c2": 4.522122276778366, - "c3": 4.3078305461960715, - "c4": 4.310961141589544, - "c5": 4.074132400476095, - "c6": 4.325990342111487, - "c7": 4.241963814901249 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613036, + "c3": 5.524734165510862, + "c4": 4.4197873324086885, + "c5": 3.314840499306514, + "c6": 2.209893666204348, + "c7": 1.1049468331021663 }, "rgb": [238, 201, 159] }, @@ -417156,23 +417156,23 @@ "year": 1817, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -24.52515383807381, - "c2": -0.09270721994520059, - "c3": -0.39798966982019124, - "c4": 7.115851383652512, - "c5": 23.718492457123446, - "c6": -19.999830386301465, - "c7": 11.186121435596128 + "points": { + "c1": 10.705174067362911, + "c2": 17.192464713693816, + "c3": 21.332596362907537, + "c4": 5.601697581510535, + "c5": 7.612716761123025, + "c6": 12.826887341857123, + "c7": -30.813601760114718 }, - "vertexSeeds": { - "c1": 6.137122503412959, - "c2": 6.699102162903834, - "c3": 7.164035550652267, - "c4": 7.063626949548752, - "c5": 6.51842782544494, - "c6": 7.024376647228456, - "c7": 6.575444704227495 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123439, + "c3": 8.691631992602867, + "c4": 6.953305594082292, + "c5": 5.214979195561719, + "c6": 3.476652797041146, + "c7": 1.738326398520573 }, "rgb": [77, 76, 132] }, @@ -417183,23 +417183,23 @@ "year": 1817, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -9.900162653957551, - "c2": 15.536335208485728, - "c3": 17.278873378320217, - "c4": -19.221730183049438, - "c5": 14.346915159898845, - "c6": 3.3243194791776283, - "c7": -19.775033584508357 + "points": { + "c1": -26.455006130846765, + "c2": -7.35402128426982, + "c3": -11.409886341442903, + "c4": -17.335116035292515, + "c5": -17.421994900166887, + "c6": -8.380746495046765, + "c7": 32.34028223607358 }, - "vertexSeeds": { - "c1": 12.860858253745604, - "c2": 13.675620494014797, - "c3": 12.85646357545407, - "c4": 12.017105087448133, - "c5": 14.168758192159224, - "c6": 13.944341312885495, - "c7": 14.136458496281513 + "offsets": { + "c1": 23.754045307443366, + "c2": 20.360610263522883, + "c3": 16.967175219602407, + "c4": 13.573740175681923, + "c5": 10.180305131761441, + "c6": 6.786870087840962, + "c7": 3.393435043920481 }, "rgb": [222, 0, 59] }, @@ -417210,23 +417210,23 @@ "year": 1817, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 28.20732185273119, - "c2": 8.330887386673737, - "c3": -12.07674535934531, - "c4": -21.418803564713524, - "c5": -7.605706317446771, - "c6": -18.800058585314368, - "c7": -23.05763511509282 + "points": { + "c1": 9.149872206469645, + "c2": 16.605964771266954, + "c3": -20.32494737100312, + "c4": -6.75022739406019, + "c5": 8.544037870258059, + "c6": 30.281556903364553, + "c7": -5.799428598534938 }, - "vertexSeeds": { - "c1": 8.63658211394494, - "c2": 8.943478997057138, - "c3": 9.195027550515313, - "c4": 9.480859124257423, - "c5": 8.81077714934728, - "c6": 9.171400794807203, - "c7": 8.966233935465187 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668524, + "c3": 11.303744798890428, + "c4": 9.042995839112349, + "c5": 6.782246879334252, + "c6": 4.521497919556174, + "c7": 2.260748959778078 }, "rgb": [77, 76, 132] }, @@ -417237,23 +417237,23 @@ "year": 1817, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -9.359927244465638, - "c2": 4.2175190558415245, - "c3": 2.4441052018938016, - "c4": -12.887293645203798, - "c5": -5.0782097749036765, - "c6": 16.59276223961653, - "c7": 3.579661299139179 + "points": { + "c1": -21.29409834342941, + "c2": -11.126646723777743, + "c3": -27.15676456055628, + "c4": -11.257365010729291, + "c5": -20.169632444786117, + "c6": -10.954042181647583, + "c7": 3.3760875435270243 }, - "vertexSeeds": { - "c1": 9.765461380073878, - "c2": 9.981291854243805, - "c3": 9.90231217891252, - "c4": 9.7585044873265, - "c5": 9.158945970969693, - "c6": 9.266460420533573, - "c7": 10.05194871692438 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915396, + "c3": 12.020342117429497, + "c4": 9.616273693943597, + "c5": 7.212205270457698, + "c6": 4.808136846971799, + "c7": 2.4040684234858993 }, "rgb": [86, 146, 138] }, @@ -417264,23 +417264,23 @@ "year": 1817, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 6.39187069451091, - "c2": -26.597833520579158, - "c3": 1.9419803001400489, - "c4": -15.41958120029442, - "c5": 28.33201230152064, - "c6": -7.0421905899267685, - "c7": -6.8824973919051935 + "points": { + "c1": 8.051041177807093, + "c2": 29.893980562136726, + "c3": 22.10707118153251, + "c4": -25.65748432466774, + "c5": -8.114876076158065, + "c6": 1.9216367193202544, + "c7": -0.43544384875418984 }, - "vertexSeeds": { - "c1": 9.031095022937869, - "c2": 9.232517887296549, - "c3": 9.381684636034478, - "c4": 9.043320634061141, - "c5": 9.221190847959939, - "c6": 8.85591115510421, - "c7": 8.894370331771304 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748956, + "c3": 11.349976883957458, + "c4": 9.079981507165977, + "c5": 6.809986130374478, + "c6": 4.53999075358298, + "c7": 2.2699953767914978 }, "rgb": [58, 15, 49] }, @@ -417291,23 +417291,23 @@ "year": 1818, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 0.40369298381646246, - "c2": -12.68712498820161, - "c3": -33.49162509572477, - "c4": 2.7226452456168673, - "c5": 3.7917583869646663, - "c6": 23.955448478766698, - "c7": 11.766642173896791 + "points": { + "c1": -0.14322862347668064, + "c2": 25.388038065962547, + "c3": -38.28584436731958, + "c4": 32.10072804149519, + "c5": 27.450195968604874, + "c6": -21.80954902690334, + "c7": 15.994984583900894 }, - "vertexSeeds": { - "c1": 8.588084641111994, - "c2": 8.529422099357664, - "c3": 8.477865951424878, - "c4": 8.499947058340751, - "c5": 8.483310583154065, - "c6": 8.454373034006428, - "c7": 8.621223203764146 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898778, + "c3": 10.286638927415618, + "c4": 8.22931114193252, + "c5": 6.171983356449358, + "c6": 4.11465557096626, + "c7": 2.057327785483161 }, "rgb": [77, 76, 132] }, @@ -417318,23 +417318,23 @@ "year": 1817, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -8.511615870231388, - "c2": -18.844855202775232, - "c3": 9.157550024601818, - "c4": -16.273904177931747, - "c5": 16.573440969896765, - "c6": 5.474911894577673, - "c7": -24.07701752442458 + "points": { + "c1": 8.863249138635283, + "c2": 26.35659181028373, + "c3": 1.4629180100235502, + "c4": 8.413053750665803, + "c5": 25.448102103479137, + "c6": -5.216729583601637, + "c7": -20.417558315694677 }, - "vertexSeeds": { - "c1": 8.77771591769647, - "c2": 8.994826912083468, - "c3": 8.6003231226586, - "c4": 8.452453253690647, - "c5": 8.431134171664304, - "c6": 8.784858987290207, - "c7": 8.908203361856865 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864084, + "c3": 10.841423948220077, + "c4": 8.67313915857605, + "c5": 6.504854368932042, + "c6": 4.336569579288036, + "c7": 2.1682847896440065 }, "rgb": [77, 76, 132] }, @@ -417345,23 +417345,23 @@ "year": 1817, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -17.65131108346563, - "c2": -22.33387252220378, - "c3": 11.956250864612926, - "c4": -10.52877837861093, - "c5": -3.733889624249116, - "c6": 20.05358983263733, - "c7": 22.198209871694566 + "points": { + "c1": 27.4712062699765, + "c2": -10.843665094194709, + "c3": 9.70486292738051, + "c4": 6.606867091835397, + "c5": -20.250845550117823, + "c6": 3.0778804729862905, + "c7": 24.971252177327493 }, - "vertexSeeds": { - "c1": 7.7429602868788, - "c2": 8.720618145610997, - "c3": 8.273707834555351, - "c4": 9.224847420486755, - "c5": 8.499157221177343, - "c6": 8.596448734786588, - "c7": 8.833012145978351 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.20388349514563, + "c3": 11.003236245954694, + "c4": 8.802588996763754, + "c5": 6.601941747572815, + "c6": 4.401294498381877, + "c7": 2.2006472491909386 }, "rgb": [222, 0, 59] }, @@ -417372,23 +417372,23 @@ "year": 1817, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 3.5036854957488295, - "c2": 2.304010286753318, - "c3": 17.220297364477418, - "c4": 13.346940067263837, - "c5": 15.874127822747468, - "c6": 1.1137281052087147, - "c7": -18.620237565403794 + "points": { + "c1": -6.359702080403974, + "c2": -11.263447741726612, + "c3": 8.12822014123735, + "c4": 7.190635477438924, + "c5": 9.672153726482748, + "c6": -24.872953110409412, + "c7": -15.22777491717969 }, - "vertexSeeds": { - "c1": 11.406095826147487, - "c2": 11.663698646301906, - "c3": 11.152603431063959, - "c4": 11.660072404123989, - "c5": 11.355179974463914, - "c6": 11.498454865961978, - "c7": 11.581048689034832 + "offsets": { + "c1": 19.54692556634304, + "c2": 16.754507628294004, + "c3": 13.96208969024504, + "c4": 11.169671752196004, + "c5": 8.37725381414704, + "c6": 5.584835876098002, + "c7": 2.792417938049038 }, "rgb": [222, 0, 59] }, @@ -417399,23 +417399,23 @@ "year": 1817, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 17.326216507600144, - "c2": 5.805590814086699, - "c3": 1.574595962979636, - "c4": -12.866001732424401, - "c5": -13.938555705186392, - "c6": -1.5593397874862625, - "c7": 20.30857836025254 + "points": { + "c1": -19.596016607910094, + "c2": 6.215101538599484, + "c3": 0.9138901709311398, + "c4": 28.039832556303026, + "c5": -0.9657359078965406, + "c6": -20.928752321845167, + "c7": 9.698834539736097 }, - "vertexSeeds": { - "c1": 8.110777886965089, - "c2": 8.42018009828554, - "c3": 8.657981842187258, - "c4": 8.329740706594551, - "c5": 8.497096900567838, - "c6": 8.369516526011433, - "c7": 8.297595622569112 + "offsets": { + "c1": 14.627831715210357, + "c2": 12.538141470180305, + "c3": 10.448451225150256, + "c4": 8.358760980120204, + "c5": 6.2690707350901524, + "c6": 4.179380490060102, + "c7": 2.089690245030051 }, "rgb": [222, 0, 59] }, @@ -417426,23 +417426,23 @@ "year": 1817, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 14.974438861366622, - "c2": -3.7262167437715696, - "c3": 7.875961140087362, - "c4": 5.316487250753134, - "c5": 24.952779038649602, - "c6": -28.465111192827997, - "c7": 7.59861777643215 + "points": { + "c1": -19.526935430782352, + "c2": -23.546864394878888, + "c3": -11.786753728195219, + "c4": -24.785236477981535, + "c5": 1.2474761936180414, + "c6": -3.393122198407344, + "c7": 15.595846342177232 }, - "vertexSeeds": { - "c1": 5.24368713848637, - "c2": 4.653735412993753, - "c3": 5.159415421012815, - "c4": 4.9977535399869515, - "c5": 4.896208557706102, - "c6": 5.109963090696939, - "c7": 4.879396904145739 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503465, + "c3": 6.611188164586219, + "c4": 5.2889505316689736, + "c5": 3.9667128987517377, + "c6": 2.6444752658344917, + "c7": 1.3222376329172458 }, "rgb": [58, 15, 49] }, @@ -417453,23 +417453,23 @@ "year": 1817, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 12.001723105429676, - "c2": 9.64550488069753, - "c3": 8.939059375011048, - "c4": 17.45588144178533, - "c5": 7.854342124048777, - "c6": -16.965920133531107, - "c7": 21.71608394671695 + "points": { + "c1": 27.27415151218873, + "c2": -10.08208411699001, + "c3": 3.8093010161774217, + "c4": -6.671013924746692, + "c5": -16.908627522194394, + "c6": 3.719975663525588, + "c7": 28.12980015523297 }, - "vertexSeeds": { - "c1": 7.7201490237225565, - "c2": 8.045171692937366, - "c3": 7.444895209525024, - "c4": 7.942667089809452, - "c5": 8.072938226005613, - "c6": 8.105434866405556, - "c7": 8.447849619259639 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778082, + "c3": 10.217290799815078, + "c4": 8.17383263985206, + "c5": 6.130374479889041, + "c6": 4.086916319926023, + "c7": 2.043458159963018 }, "rgb": [58, 15, 49] }, @@ -417480,23 +417480,23 @@ "year": 1818, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 29.002077295885783, - "c2": -7.1286115640966905, - "c3": 21.006643157099305, - "c4": 29.82357464872966, - "c5": 7.362837333548249, - "c6": -20.380035110546913, - "c7": 23.42655168754834 + "points": { + "c1": 6.0664532956293655, + "c2": 19.776535571368925, + "c3": 3.121382046415242, + "c4": -28.671836451763472, + "c5": -6.731023443596637, + "c6": -23.357494177560394, + "c7": -18.48523767737536 }, - "vertexSeeds": { - "c1": 7.047526850552716, - "c2": 6.922648951931947, - "c3": 7.027456732165792, - "c4": 6.990887584647744, - "c5": 6.963743069745861, - "c6": 6.865040423036909, - "c7": 7.045150325132407 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640758, + "c3": 8.414239482200676, + "c4": 6.7313915857605275, + "c5": 5.048543689320379, + "c6": 3.36569579288023, + "c7": 1.6828478964401485 }, "rgb": [238, 201, 159] }, @@ -417507,23 +417507,23 @@ "year": 1817, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 20.369361985820504, - "c2": -21.503258282579015, - "c3": -23.105193713802585, - "c4": -7.590412550537245, - "c5": 11.320073510880725, - "c6": -12.130488546843052, - "c7": -9.949269420807138 + "points": { + "c1": 0.9934857743026839, + "c2": 21.68144446692348, + "c3": 11.225986745269097, + "c4": -14.794625775845379, + "c5": -5.229931854302986, + "c6": 15.047601481031656, + "c7": -24.74116301607902 }, - "vertexSeeds": { - "c1": 8.75512561389076, - "c2": 8.552188701829783, - "c3": 8.624621246784091, - "c4": 8.689077345978394, - "c5": 8.937708049407581, - "c6": 8.760685075955315, - "c7": 8.564888407246812 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662977, + "c3": 10.725843735552457, + "c4": 8.580674988441972, + "c5": 6.435506241331488, + "c6": 4.29033749422097, + "c7": 2.145168747110485 }, "rgb": [86, 146, 138] }, @@ -417534,23 +417534,23 @@ "year": 1817, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -14.04423710475971, - "c2": 16.70118148007944, - "c3": 12.356426480778836, - "c4": -18.05306385581723, - "c5": 8.156726109525856, - "c6": -26.2635931155192, - "c7": 22.498854151701117 + "points": { + "c1": 22.896647147277243, + "c2": 14.471410285079813, + "c3": 16.912482951120225, + "c4": 9.642365904334547, + "c5": -0.05850338207553207, + "c6": 18.163552512192027, + "c7": -27.856484060791097 }, - "vertexSeeds": { - "c1": 4.315115351511103, - "c2": 4.416516018537065, - "c3": 4.388620875387812, - "c4": 4.231943161024367, - "c5": 4.164536529995141, - "c6": 4.292737779888065, - "c7": 4.332754991994426 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175682, + "c4": 4.234858992140545, + "c5": 3.1761442441054086, + "c6": 2.1174294960702724, + "c7": 1.0587147480351362 }, "rgb": [222, 0, 59] }, @@ -417561,23 +417561,23 @@ "year": 1817, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -20.824128648967374, - "c2": 24.478992362252207, - "c3": 22.314885348189677, - "c4": 14.703962373062765, - "c5": -20.84968044703773, - "c6": -23.983734799660752, - "c7": -18.39158290687364 + "points": { + "c1": 1.8862481900889279, + "c2": 18.646335729647568, + "c3": -14.87394273991882, + "c4": -22.810485452929164, + "c5": -9.276091813545342, + "c6": 0.8155467527851243, + "c7": -11.622231384994045 }, - "vertexSeeds": { - "c1": 11.361148580001052, - "c2": 10.969101566605122, - "c3": 11.189073661350209, - "c4": 11.08570254461389, - "c5": 11.170015390155838, - "c6": 11.336640197441525, - "c7": 10.85554719583626 + "offsets": { + "c1": 19.223300970873787, + "c2": 16.477115117891792, + "c3": 13.730929264909857, + "c4": 10.98474341192786, + "c5": 8.238557558945924, + "c6": 5.49237170596393, + "c7": 2.746185852981995 }, "rgb": [238, 201, 159] }, @@ -417588,23 +417588,23 @@ "year": 1817, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 28.168592159459994, - "c2": -13.289265662324443, - "c3": -25.65552246423794, - "c4": -9.381330262840507, - "c5": -12.816966378079815, - "c6": 13.053542419468268, - "c7": -4.822703108560699 + "points": { + "c1": 23.688360454455545, + "c2": -25.746368892459017, + "c3": 20.6595222002687, + "c4": 17.80723395290264, + "c5": -16.157067149535308, + "c6": 18.572368297651717, + "c7": 25.59160230228027 }, - "vertexSeeds": { - "c1": 11.035256920136108, - "c2": 11.646159301289826, - "c3": 10.799912752865607, - "c4": 10.875065761629656, - "c5": 11.569765272436385, - "c6": 11.560054493358344, - "c7": 11.389406279441648 + "offsets": { + "c1": 19.611650485436893, + "c2": 16.809986130374476, + "c3": 14.008321775312059, + "c4": 11.20665742024964, + "c5": 8.404993065187254, + "c6": 5.603328710124837, + "c7": 2.8016643550624183 }, "rgb": [77, 76, 132] }, @@ -417615,23 +417615,23 @@ "year": 1817, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 12.87014516758449, - "c2": -3.2251312219406643, - "c3": -16.641567080018472, - "c4": -22.876632508787175, - "c5": 8.287480045748069, - "c6": -4.31437644945661, - "c7": -20.91831325845377 + "points": { + "c1": 11.084585366532764, + "c2": 16.847387102270872, + "c3": 22.838695736698398, + "c4": 23.049096261210416, + "c5": 7.796461222394555, + "c6": -12.268044934817606, + "c7": -9.853374753256979 }, - "vertexSeeds": { - "c1": 9.567864620728402, - "c2": 9.560200589252664, - "c3": 9.510366811327398, - "c4": 9.593514118782021, - "c5": 9.572733569854147, - "c6": 9.533429307161722, - "c7": 9.578582599818352 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.75866851595007, + "c3": 11.465557096625059, + "c4": 9.172445677300047, + "c5": 6.879334257975035, + "c6": 4.5862228386500234, + "c7": 2.2931114193250117 }, "rgb": [238, 201, 159] }, @@ -417642,23 +417642,23 @@ "year": 1817, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -26.025902240223182, - "c2": 4.964712270078561, - "c3": -26.772466517912136, - "c4": -25.933984683454845, - "c5": -15.642700158374497, - "c6": 14.212041477309103, - "c7": 9.924771887216362 + "points": { + "c1": -10.447709636884625, + "c2": 6.023123329415139, + "c3": 10.66109010560395, + "c4": -12.242311939900759, + "c5": 3.3366429492938714, + "c6": -3.893525242881278, + "c7": -7.6289952773146865 }, - "vertexSeeds": { - "c1": 10.793177104397172, - "c2": 9.984745436106909, - "c3": 9.850604547464219, - "c4": 11.03184283737952, - "c5": 9.502710812140434, - "c6": 10.98649527120821, - "c7": 9.742978661853885 + "offsets": { + "c1": 18.41423948220065, + "c2": 15.783633841886264, + "c3": 13.153028201571903, + "c4": 10.522422561257518, + "c5": 7.891816920943132, + "c6": 5.261211280628759, + "c7": 2.630605640314385 }, "rgb": [77, 76, 132] }, @@ -417669,23 +417669,23 @@ "year": 1817, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -26.42179335004083, - "c2": 23.47985801865009, - "c3": -8.583236497899176, - "c4": -13.969993717767835, - "c5": -2.168078958210593, - "c6": 10.252166833058013, - "c7": -15.04186140961624 + "points": { + "c1": -13.818303040509305, + "c2": 10.656084812241254, + "c3": 15.108070703960102, + "c4": -24.196991518528414, + "c5": 12.891671777076795, + "c6": 15.06813711694791, + "c7": 9.650319074795178 }, - "vertexSeeds": { - "c1": 2.7753209473743876, - "c2": 2.810360592923333, - "c3": 2.676280433870098, - "c4": 2.652459107484784, - "c5": 2.7939296437767354, - "c6": 2.8597181774665335, - "c7": 2.7962746414428086 + "offsets": { + "c1": 4.854368932038835, + "c2": 4.1608876560332835, + "c3": 3.46740638002774, + "c4": 2.773925104022189, + "c5": 2.0804438280166457, + "c6": 1.3869625520110944, + "c7": 0.6934812760055434 }, "rgb": [222, 0, 59] }, @@ -417696,23 +417696,23 @@ "year": 1817, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -0.09235827645058592, - "c2": 6.0429559445872165, - "c3": -10.922649210406522, - "c4": 9.154095633802196, - "c5": -13.399844139091698, - "c6": -5.616445778305518, - "c7": 14.76554352670301 + "points": { + "c1": 22.758537333738776, + "c2": -0.3357917079317936, + "c3": 14.435510749099524, + "c4": 26.044981494883178, + "c5": 2.5361036559724894, + "c6": 6.871126512317115, + "c7": -20.189539949903285 }, - "vertexSeeds": { - "c1": 10.026021028490955, - "c2": 8.855085045917965, - "c3": 10.295486374491347, - "c4": 9.859937632900342, - "c5": 9.838563416362485, - "c6": 10.275347017188496, - "c7": 9.96934147634731 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438268, + "c3": 12.320850670365237, + "c4": 9.856680536292192, + "c5": 7.392510402219146, + "c6": 4.92834026814609, + "c7": 2.4641701340730564 }, "rgb": [222, 0, 59] }, @@ -417723,23 +417723,23 @@ "year": 1817, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -6.28948537007717, - "c2": 24.192648158531178, - "c3": 27.65420089312493, - "c4": 2.020912803713429, - "c5": 7.91927128545921, - "c6": -10.539763802028826, - "c7": -23.115663248326317 + "points": { + "c1": 4.789322517350897, + "c2": 16.981437883012816, + "c3": 2.175325141522862, + "c4": 5.439242110411584, + "c5": 10.902303271134343, + "c6": 1.4367566316400016, + "c7": -15.670943296986987 }, - "vertexSeeds": { - "c1": 1.429637509061019, - "c2": 1.4487658884771228, - "c3": 1.412285129340066, - "c4": 1.4466805562147762, - "c5": 1.4028438630196154, - "c6": 1.3915818902987829, - "c7": 1.422725442424381 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.1081830790568667, + "c3": 1.7568192325473904, + "c4": 1.4054553860379142, + "c5": 1.0540915395284378, + "c6": 0.7027276930189527, + "c7": 0.35136384650947633 }, "rgb": [86, 146, 138] }, @@ -417750,23 +417750,23 @@ "year": 1818, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -21.210145872864977, - "c2": -17.3912932385085, - "c3": -2.940373677242661, - "c4": -24.49225760242982, - "c5": -21.19364423520721, - "c6": -24.858825551598294, - "c7": -10.72258106368496 + "points": { + "c1": 24.90106549878965, + "c2": 21.061990562923995, + "c3": 32.69754992669379, + "c4": 4.514827919015175, + "c5": 26.956238546472754, + "c6": 2.4888787096891107, + "c7": 4.757664637803977 }, - "vertexSeeds": { - "c1": 8.978265144945444, - "c2": 8.26331733637895, - "c3": 8.562063467338099, - "c4": 9.186827331420728, - "c5": 9.250151217067916, - "c6": 8.910336330668658, - "c7": 7.768051512291741 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.2871012482663, + "c3": 11.072584373555244, + "c4": 8.8580674988442, + "c5": 6.643550624133156, + "c6": 4.4290337494221, + "c7": 2.2145168747110557 }, "rgb": [58, 15, 49] }, @@ -417777,23 +417777,23 @@ "year": 1817, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": -14.058844799933384, - "c2": 17.3417928010819, - "c3": 9.154736198549301, - "c4": 9.258314795634742, - "c5": -0.8700141707676501, - "c6": 5.712199808541651, - "c7": 5.932046648595787 + "points": { + "c1": -12.515706207774933, + "c2": 8.22992542917985, + "c3": -15.780805348897928, + "c4": -1.050786032134063, + "c5": 0.6023401918596925, + "c6": 8.565944796533607, + "c7": -13.613684766261569 }, - "vertexSeeds": { - "c1": 6.805310867467073, - "c2": 6.862301742077493, - "c3": 6.575525923950495, - "c4": 7.0714522868146155, - "c5": 6.615015559697887, - "c6": 7.02953312653961, - "c7": 6.3313298225416945 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680998, + "c3": 8.437355524734166, + "c4": 6.749884419787332, + "c5": 5.062413314840499, + "c6": 3.374942209893666, + "c7": 1.687471104946833 }, "rgb": [86, 146, 138] }, @@ -417804,23 +417804,23 @@ "year": 1818, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -14.462217867827611, - "c2": -13.817208379037353, - "c3": 22.908774711768512, - "c4": 12.205471035012682, - "c5": -3.1133716397404285, - "c6": 20.016232626058834, - "c7": -15.639372665222835 + "points": { + "c1": -2.0439249879810575, + "c2": 3.634370691385481, + "c3": -20.619604608836596, + "c4": -20.230167779611364, + "c5": -13.209227051582232, + "c6": 7.977235264596825, + "c7": 1.0222035278538648 }, - "vertexSeeds": { - "c1": 9.043050370521767, - "c2": 8.591180167574999, - "c3": 9.02814200449224, - "c4": 9.530744252340192, - "c5": 8.678866409832942, - "c6": 9.00125882462761, - "c7": 8.769872574596501 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.786407766990296, + "c3": 11.48867313915857, + "c4": 9.19093851132686, + "c5": 6.893203883495148, + "c6": 4.5954692556634225, + "c7": 2.2977346278317112 }, "rgb": [238, 201, 159] }, @@ -417831,23 +417831,23 @@ "year": 1817, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -7.223161335697888, - "c2": 8.05527588659928, - "c3": 19.839865014785087, - "c4": -0.4696389631438329, - "c5": -13.84836784428298, - "c6": -5.045123037358987, - "c7": -25.66248908960699 + "points": { + "c1": 6.483255705141662, + "c2": -26.17197446265237, + "c3": 9.931712951828974, + "c4": 20.27827109267862, + "c5": -11.699717576106341, + "c6": -10.192063620682642, + "c7": 11.031884650445338 }, - "vertexSeeds": { - "c1": 5.744865390343208, - "c2": 6.407550200340058, - "c3": 5.503863054399703, - "c4": 5.69470562282764, - "c5": 5.651192085924546, - "c6": 6.325109908035632, - "c7": 5.6704980508366445 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434122, + "c3": 7.720758206195095, + "c4": 6.176606564956078, + "c5": 4.632454923717061, + "c6": 3.0883032824780328, + "c7": 1.5441516412390164 }, "rgb": [58, 15, 49] }, @@ -417858,23 +417858,23 @@ "year": 1818, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -1.2125172963293878, - "c2": 1.8893586892293754, - "c3": 3.069026913642226, - "c4": -31.806302550313106, - "c5": -30.704155140681877, - "c6": 15.646188210621553, - "c7": 30.807557743888395 + "points": { + "c1": 8.171966233322578, + "c2": 2.33928177007963, + "c3": 16.252943010214793, + "c4": 22.774486434866297, + "c5": -13.523706573225674, + "c6": -20.530263510942994, + "c7": 33.62871000613961 }, - "vertexSeeds": { - "c1": 8.58431721000126, - "c2": 4.934170760682354, - "c3": 7.436852389488758, - "c4": 6.274509921233791, - "c5": 4.820245481894143, - "c6": 4.672319675159384, - "c7": 8.610558039850869 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.871012482662968, + "c3": 10.725843735552473, + "c4": 8.580674988441979, + "c5": 6.435506241331483, + "c6": 4.2903374942209895, + "c7": 2.1451687471104965 }, "rgb": [238, 201, 159] }, @@ -417885,23 +417885,23 @@ "year": 1818, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 8.88653875106155, - "c2": 7.416861351989574, - "c3": 4.7260997384639225, - "c4": -2.1806230190345524, - "c5": -18.860117416338273, - "c6": 13.829365274778326, - "c7": -23.93974216314158 + "points": { + "c1": 8.732785370193568, + "c2": 16.392049148209637, + "c3": -22.737407515795198, + "c4": -21.621298013330332, + "c5": 16.9510282262411, + "c6": 23.877924664599632, + "c7": 25.359646743943443 }, - "vertexSeeds": { - "c1": 9.769113688030302, - "c2": 10.14273133382441, - "c3": 10.581192964210784, - "c4": 10.62039293796749, - "c5": 10.457880906775088, - "c6": 11.283152340544001, - "c7": 9.934617748260372 + "offsets": { + "c1": 18.899676375404532, + "c2": 16.199722607489594, + "c3": 13.499768839574658, + "c4": 10.79981507165972, + "c5": 8.099861303744785, + "c6": 5.399907535829874, + "c7": 2.699953767914937 }, "rgb": [77, 76, 132] }, @@ -417912,23 +417912,23 @@ "year": 1817, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": 18.327508096247215, - "c2": 18.92693066324278, - "c3": -14.657065678221683, - "c4": -2.2628353333690185, - "c5": -6.086235197844616, - "c6": 8.519510148822707, - "c7": -7.4753356410038805 + "points": { + "c1": -22.87691131458813, + "c2": 19.75677783225438, + "c3": 0.2976511592367963, + "c4": -12.012043633790702, + "c5": -22.388455348541576, + "c6": 15.536514080769543, + "c7": 7.630596324404824 }, - "vertexSeeds": { - "c1": 8.2957647451492, - "c2": 7.943387098786335, - "c3": 7.758933758475036, - "c4": 8.040650739795604, - "c5": 8.135094681711923, - "c6": 7.8106766630606055, - "c7": 8.060270922149884 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.03883495145632, + "c3": 10.032362459546922, + "c4": 8.025889967637546, + "c5": 6.019417475728149, + "c6": 4.012944983818773, + "c7": 2.0064724919093964 }, "rgb": [222, 0, 59] }, @@ -417939,23 +417939,23 @@ "year": 1817, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -17.61397200117157, - "c2": 11.532859303972131, - "c3": 21.036196336870034, - "c4": 8.260594632061306, - "c5": 13.803403826970609, - "c6": 10.731309135387868, - "c7": -16.910107681225874 + "points": { + "c1": 17.872881323495584, + "c2": 3.8579753740838, + "c3": 23.257629599181655, + "c4": -23.42945999008754, + "c5": 14.732941962013165, + "c6": 8.530654262489932, + "c7": -2.0392202165066173 }, - "vertexSeeds": { - "c1": 4.250224051368236, - "c2": 4.521265220750431, - "c3": 4.26243736970684, - "c4": 4.144065373487605, - "c5": 4.520902306055525, - "c6": 4.51362522245468, - "c7": 4.1464351500839065 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613034, + "c3": 5.524734165510865, + "c4": 4.4197873324086885, + "c5": 3.3148404993065212, + "c6": 2.2098936662043442, + "c7": 1.1049468331021768 }, "rgb": [58, 15, 49] }, @@ -417966,23 +417966,23 @@ "year": 1818, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 9.998038979464674, - "c2": 4.025075006193653, - "c3": 25.144493898467502, - "c4": -24.678625422394887, - "c5": -1.7178103163948641, - "c6": -19.20137328187644, - "c7": 22.017946361319197 + "points": { + "c1": 26.672537574133635, + "c2": 0.7233016318630519, + "c3": 10.869354215595749, + "c4": 25.63190281623062, + "c5": 20.01298249811672, + "c6": -3.4099526068227206, + "c7": 17.260004530958454 }, - "vertexSeeds": { - "c1": 5.3212242271857, - "c2": 5.694903693181734, - "c3": 5.149285050762396, - "c4": 5.907651897231543, - "c5": 6.007327305713621, - "c6": 4.970885541364103, - "c7": 5.8650354109920375 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629684, + "c3": 7.258437355524738, + "c4": 5.806749884419785, + "c5": 4.355062413314842, + "c6": 2.9033749422098976, + "c7": 1.4516874711049441 }, "rgb": [77, 76, 132] }, @@ -417993,23 +417993,23 @@ "year": 1817, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -19.568579850407225, - "c2": 22.706882226935175, - "c3": -5.232642091066424, - "c4": 5.232415532645913, - "c5": -5.26682235496429, - "c6": 18.833302155276538, - "c7": -3.477251636755504 + "points": { + "c1": 16.599141958511478, + "c2": -21.018617806997216, + "c3": 2.178046596161199, + "c4": 18.154562290344796, + "c5": -20.9902925212669, + "c6": 7.409341872666527, + "c7": 18.871988193579224 }, - "vertexSeeds": { - "c1": 7.368202024171841, - "c2": 7.3495708320401345, - "c3": 7.35714551967111, - "c4": 7.382006819447938, - "c5": 7.3460934865178045, - "c6": 7.2910135678697765, - "c7": 7.299831201123014 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364822, + "c3": 8.83032824780396, + "c4": 7.064262598243215, + "c5": 5.298196948682353, + "c6": 3.5321312991216076, + "c7": 1.7660656495608622 }, "rgb": [238, 201, 159] }, @@ -418020,23 +418020,23 @@ "year": 1817, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 13.664770953914758, - "c2": -0.8744088404856747, - "c3": 9.598855015381282, - "c4": 0.7905223436693234, - "c5": -7.089636549949651, - "c6": 1.675424406149439, - "c7": 14.261715588898635 + "points": { + "c1": -15.608211018269968, + "c2": 10.301049448032458, + "c3": 12.960732865352643, + "c4": -18.571356664880703, + "c5": 5.76526662687861, + "c6": 14.197637218781626, + "c7": -12.201136032160186 }, - "vertexSeeds": { - "c1": 3.3512948123854027, - "c2": 3.095502655618694, - "c3": 3.0980642563283376, - "c4": 3.25328701574901, - "c5": 3.1734413455830373, - "c6": 3.378927499198587, - "c7": 3.3012323873818654 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199721, + "c3": 4.137771613499766, + "c4": 3.3102172907998115, + "c5": 2.4826629680998646, + "c6": 1.65510864539991, + "c7": 0.827554322699955 }, "rgb": [77, 76, 132] }, @@ -418047,23 +418047,23 @@ "year": 1817, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -11.244830955134667, - "c2": 13.630004460690316, - "c3": 20.017903368013066, - "c4": 10.436882849037339, - "c5": -24.287212747874666, - "c6": 12.89061108183187, - "c7": -7.480114978122149 + "points": { + "c1": -6.529001979397378, + "c2": 9.504884823764705, + "c3": -19.73475300223641, + "c4": -10.350272506674916, + "c5": -15.13204196048851, + "c6": 18.30943749709462, + "c7": -17.51231168871184 }, - "vertexSeeds": { - "c1": 8.46459490858212, - "c2": 8.452642673138335, - "c3": 8.490124553696528, - "c4": 8.510042334860042, - "c5": 8.467338528705517, - "c6": 8.547935455119827, - "c7": 8.485566616977575 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.34396671289873, + "c3": 10.286638927415662, + "c4": 8.229311141932515, + "c5": 6.171983356449365, + "c6": 4.114655570966298, + "c7": 2.057327785483149 }, "rgb": [222, 0, 59] }, @@ -418074,23 +418074,23 @@ "year": 1818, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -14.210640763320509, - "c2": -8.230537851031272, - "c3": -9.764746801463382, - "c4": 10.477162597139309, - "c5": 26.243892254056785, - "c6": 14.6498742598387, - "c7": 13.154971612691913 + "points": { + "c1": 0.8367551841188252, + "c2": 12.776221334287737, + "c3": 1.6210902976952077, + "c4": -6.302328750832768, + "c5": 15.175763212204405, + "c6": -10.268123966338155, + "c7": -21.74940223701301 }, - "vertexSeeds": { - "c1": 4.378619099160624, - "c2": 4.634839767701573, - "c3": 4.599218371672196, - "c4": 4.507804812701637, - "c5": 4.237759232112442, - "c6": 4.526232470654028, - "c7": 4.671460349838287 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733702, + "c3": 5.594082293111416, + "c4": 4.475265834489132, + "c5": 3.3564493758668474, + "c6": 2.237632917244562, + "c7": 1.1188164586222775 }, "rgb": [86, 146, 138] }, @@ -418101,23 +418101,23 @@ "year": 1817, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": 6.834532231355393, - "c2": -14.630916380311557, - "c3": -16.382388253602002, - "c4": 2.913642240884897, - "c5": 0.020146167957722838, - "c6": 7.90555938094548, - "c7": -15.587221054929838 + "points": { + "c1": 12.141033329288675, + "c2": 18.222031636359112, + "c3": -3.2313771783830205, + "c4": -18.296567678610604, + "c5": -16.85415391061798, + "c6": 10.91494882606122, + "c7": 23.501528784141172 }, - "vertexSeeds": { - "c1": 2.5053389341161743, - "c2": 2.662408016113768, - "c3": 2.609751155004158, - "c4": 2.5402230771299243, - "c5": 2.475135374006368, - "c6": 2.69052316021576, - "c7": 2.6611744992986814 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919565, + "c3": 3.3287101248266318, + "c4": 2.6629680998612986, + "c5": 1.9972260748959743, + "c6": 1.3314840499306493, + "c7": 0.6657420249653246 }, "rgb": [238, 201, 159] }, @@ -418128,23 +418128,23 @@ "year": 1817, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": -5.3320721614249855, - "c2": -0.743324727964481, - "c3": 4.796607067146731, - "c4": 15.259023879625232, - "c5": -2.1787250122780897, - "c6": 7.555084862562435, - "c7": -13.948785467663676 + "points": { + "c1": -19.81917063921137, + "c2": 11.195695522569949, + "c3": 17.374039051406008, + "c4": 5.564854325045225, + "c5": -17.26245970939446, + "c6": -1.8210739611576443, + "c7": 20.17259937799838 }, - "vertexSeeds": { - "c1": 10.1119748468592, - "c2": 10.073123101464503, - "c3": 9.705618115680045, - "c4": 9.984591552443705, - "c5": 9.960905233891973, - "c6": 9.325871698587848, - "c7": 10.219675840856887 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.64632454923718, + "c3": 12.205270457697624, + "c4": 9.764216366158108, + "c5": 7.32316227461859, + "c6": 4.882108183079054, + "c7": 2.441054091539517 }, "rgb": [58, 15, 49] }, @@ -418155,23 +418155,23 @@ "year": 1817, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -22.10727792798413, - "c2": -18.602527559498892, - "c3": 11.221437925715165, - "c4": 5.420697148794979, - "c5": -0.9584881002074219, - "c6": -4.992518690952938, - "c7": -1.0779043030081326 + "points": { + "c1": -12.60962820942616, + "c2": -16.194082117786863, + "c3": 24.075492852613614, + "c4": 4.835748577731042, + "c5": 17.049765283385412, + "c6": 19.622092291565394, + "c7": -17.706067002468046 }, - "vertexSeeds": { - "c1": 2.272198453458506, - "c2": 2.170266115371101, - "c3": 2.245879716582556, - "c4": 2.371747939093489, - "c5": 2.1769536525169166, - "c6": 2.2091318787189707, - "c7": 2.1262073013779417 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875194, + "c3": 2.866389274156264, + "c4": 2.293111419325013, + "c5": 1.719833564493758, + "c6": 1.1465557096625065, + "c7": 0.5732778548312514 }, "rgb": [86, 146, 138] }, @@ -418182,23 +418182,23 @@ "year": 1818, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 12.604660713169217, - "c2": 3.772313864168442, - "c3": -6.198390395184489, - "c4": -24.881300389865537, - "c5": -17.424297341539543, - "c6": -15.668308039453766, - "c7": -6.76156424088861 + "points": { + "c1": 27.98658077730692, + "c2": 17.24986070576555, + "c3": 6.700727723610612, + "c4": -20.810610605394338, + "c5": 20.48282572266367, + "c6": -15.25823886138198, + "c7": 3.966060433366323 }, - "vertexSeeds": { - "c1": 2.122185506255607, - "c2": 1.9666101314381017, - "c3": 1.9645552114330458, - "c4": 1.853730562504704, - "c5": 1.9990916211951109, - "c6": 1.9503306670887632, - "c7": 2.0786729035775684 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.106796116504853, + "c3": 2.5889967637540456, + "c4": 2.071197411003235, + "c5": 1.553398058252428, + "c6": 1.0355987055016176, + "c7": 0.5177993527508103 }, "rgb": [58, 15, 49] }, @@ -418209,23 +418209,23 @@ "year": 1818, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -19.17827111790341, - "c2": -13.960260024128036, - "c3": 21.764471645597197, - "c4": -8.218857857491539, - "c5": -19.609812030150724, - "c6": 0.7841756905435773, - "c7": -9.030735547399406 + "points": { + "c1": -28.312947416464883, + "c2": 22.008265351212472, + "c3": -0.33374706084647343, + "c4": 25.42273671385893, + "c5": 16.815004348791156, + "c6": -10.38584218390994, + "c7": 23.33921019290625 }, - "vertexSeeds": { - "c1": 8.348723179015733, - "c2": 8.311294452189818, - "c3": 8.309523881198135, - "c4": 8.69135788440847, - "c5": 8.588985135140716, - "c6": 8.180477113543683, - "c7": 8.361476730831958 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059646, + "c3": 10.379103097549688, + "c4": 8.303282478039756, + "c5": 6.227461858529823, + "c6": 4.151641239019865, + "c7": 2.0758206195099325 }, "rgb": [86, 146, 138] }, @@ -418236,23 +418236,23 @@ "year": 1818, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 18.107819035942562, - "c2": -6.268268168169612, - "c3": -19.435361278033007, - "c4": -27.727050549752867, - "c5": 22.097831376893154, - "c6": 23.384651406010583, - "c7": 3.264275817710022 + "points": { + "c1": 14.484501013477505, + "c2": -9.770612403186107, + "c3": -18.132002569559198, + "c4": -5.139301547768593, + "c5": 14.00786706251452, + "c6": 11.510923328219626, + "c7": 31.95627901904342 }, - "vertexSeeds": { - "c1": 6.42641924322586, - "c2": 6.383519948833062, - "c3": 6.3440676607916915, - "c4": 6.562020178116853, - "c5": 6.361272262033257, - "c6": 6.505307931535856, - "c7": 6.508692461018986 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876558, + "c3": 7.975034674063791, + "c4": 6.3800277392510605, + "c5": 4.785020804438295, + "c6": 3.1900138696255302, + "c7": 1.5950069348127651 }, "rgb": [77, 76, 132] }, @@ -418263,23 +418263,23 @@ "year": 1817, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -18.9343758334786, - "c2": 13.869462988193106, - "c3": 7.613315473132474, - "c4": 14.458539357872354, - "c5": 7.563962006130062, - "c6": 17.733646453444067, - "c7": 10.146126105328076 + "points": { + "c1": 9.8491374503501, + "c2": -13.100293559220958, + "c3": -11.362129917874231, + "c4": -5.406795604691954, + "c5": 17.35717350533504, + "c6": 19.366017309909616, + "c7": 17.479374138288016 }, - "vertexSeeds": { - "c1": 4.784577934191801, - "c2": 5.020325070276655, - "c3": 4.637136950602757, - "c4": 4.729325432969608, - "c5": 4.698492867229552, - "c6": 4.901208145696854, - "c7": 4.664353853911583 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699028, + "c3": 6.148867313915856, + "c4": 4.919093851132683, + "c5": 3.6893203883495107, + "c6": 2.459546925566338, + "c7": 1.2297734627831653 }, "rgb": [58, 15, 49] }, @@ -418290,23 +418290,23 @@ "year": 1817, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -18.34141998463868, - "c2": 19.40979426679455, - "c3": 13.526524328228767, - "c4": -6.252875964041204, - "c5": -12.126457144775182, - "c6": -8.63829253708699, - "c7": -10.27543111043305 + "points": { + "c1": 6.284432760467077, + "c2": -4.264593828944065, + "c3": -12.19530082981908, + "c4": -10.043556963282793, + "c5": 3.000323196737206, + "c6": 2.5505027993459883, + "c7": -15.066754426820209 }, - "vertexSeeds": { - "c1": 2.4737884206445164, - "c2": 2.344052150145549, - "c3": 2.6377848313154475, - "c4": 2.560729525737238, - "c5": 2.4940231717454706, - "c6": 2.5845290741202436, - "c7": 2.5478161563121624 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.828016643550625, + "c3": 3.190013869625522, + "c4": 2.5520110957004194, + "c5": 1.9140083217753163, + "c6": 1.2760055478502097, + "c7": 0.6380027739251067 }, "rgb": [222, 0, 59] }, @@ -418317,23 +418317,23 @@ "year": 1818, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -6.214074389167031, - "c2": -10.699757608721892, - "c3": 3.2769878507193724, - "c4": -19.017955467974044, - "c5": -11.020577125323506, - "c6": -3.55799999108649, - "c7": 31.308277122557143 + "points": { + "c1": -7.267451376605429, + "c2": -2.8506104353107418, + "c3": 9.239598469977189, + "c4": 22.023085280406434, + "c5": -17.95779458291682, + "c6": -34.723444250458094, + "c7": -20.549602949703427 }, - "vertexSeeds": { - "c1": 2.948928751730554, - "c2": 2.9059689292683792, - "c3": 2.9650017646008715, - "c4": 2.9115271563823937, - "c5": 2.938955873286532, - "c6": 2.959074332812541, - "c7": 2.9370821860937255 + "offsets": { + "c1": 4.983818770226537, + "c2": 4.2718446601941595, + "c3": 3.559870550161817, + "c4": 2.8478964401294395, + "c5": 2.1359223300970975, + "c6": 1.4239482200647198, + "c7": 0.7119741100323422 }, "rgb": [86, 146, 138] }, @@ -418344,23 +418344,23 @@ "year": 1818, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -0.3478950955341098, - "c2": -12.378535587292445, - "c3": 16.208249344221166, - "c4": 6.711286187558642, - "c5": -15.836723306899458, - "c6": 13.489732883770628, - "c7": -2.249837024302245 + "points": { + "c1": -24.735963025306358, + "c2": -14.753016355327295, + "c3": 18.100838905575173, + "c4": -16.716430526446157, + "c5": 3.063502165772828, + "c6": 15.092542459177537, + "c7": 5.3438118501581755 }, - "vertexSeeds": { - "c1": 1.1822448241312304, - "c2": 1.1134855431794886, - "c3": 1.0534063088827506, - "c4": 1.0324097421474168, - "c5": 1.0419103677919146, - "c6": 1.0483092539947165, - "c7": 1.0841729973550598 + "offsets": { + "c1": 2.0064724919093853, + "c2": 1.7198335644937597, + "c3": 1.433194637078132, + "c4": 1.1465557096625065, + "c5": 0.859916782246879, + "c6": 0.5732778548312533, + "c7": 0.2866389274156275 }, "rgb": [86, 146, 138] }, @@ -418371,23 +418371,23 @@ "year": 1818, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 7.807309526470732, - "c2": 18.024482576060414, - "c3": 24.68812722804718, - "c4": 11.866647863701495, - "c5": -1.836994982683354, - "c6": -12.680994941982377, - "c7": 25.9156279984117 + "points": { + "c1": 9.695715947964317, + "c2": 0.9484044628847244, + "c3": 18.978100652387653, + "c4": 29.435070357625982, + "c5": 13.21621706205569, + "c6": 23.87272281709503, + "c7": -10.064633826432203 }, - "vertexSeeds": { - "c1": 7.045277901471381, - "c2": 7.612560754433144, - "c3": 7.632862187357844, - "c4": 7.16806063572043, - "c5": 7.951121825894697, - "c6": 7.081039557671836, - "c7": 6.789108078102296 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.42857142857143, + "c3": 9.523809523809527, + "c4": 7.619047619047613, + "c5": 5.71428571428571, + "c6": 3.8095238095238066, + "c7": 1.9047619047619033 }, "rgb": [238, 201, 159] }, @@ -418398,23 +418398,23 @@ "year": 1818, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 30.289888246813675, - "c2": 16.57517596273936, - "c3": -21.800008493566967, - "c4": -15.076510120499758, - "c5": 34.333998979984045, - "c6": 28.99849146634645, - "c7": -13.334242118761903 + "points": { + "c1": -1.5479927642442206, + "c2": 35.308007168547036, + "c3": 17.221129360563886, + "c4": -37.963001317918796, + "c5": 32.65946781883956, + "c6": 33.87915793350621, + "c7": -15.073704930600204 }, - "vertexSeeds": { - "c1": 13.740568360205527, - "c2": 13.250860794142442, - "c3": 12.866321684500786, - "c4": 13.278667179635185, - "c5": 13.02235864526422, - "c6": 13.18949819437127, - "c7": 13.115795878302908 + "offsets": { + "c1": 23.07443365695793, + "c2": 19.778085991678225, + "c3": 16.48173832639852, + "c4": 13.185390661118817, + "c5": 9.889042995839112, + "c6": 6.592695330559408, + "c7": 3.296347665279704 }, "rgb": [77, 76, 132] }, @@ -418425,23 +418425,23 @@ "year": 1818, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -14.227889525087019, - "c2": 13.048067848548886, - "c3": -26.41351761775107, - "c4": -15.782181664211098, - "c5": -10.366144075154004, - "c6": 26.368062030667044, - "c7": -6.405223862551036 + "points": { + "c1": -26.744119118432028, + "c2": 0.1308990356711348, + "c3": -11.245936940360625, + "c4": -1.7991624997615006, + "c5": -22.44624156906555, + "c6": -1.8027190926295056, + "c7": 13.627489606935324 }, - "vertexSeeds": { - "c1": 7.11857486967701, - "c2": 6.65757924772449, - "c3": 6.428471487678277, - "c4": 6.43967723980082, - "c5": 7.201062801978164, - "c6": 6.956161620410976, - "c7": 7.036337224763809 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042998, + "c3": 8.645399907535834, + "c4": 6.91631992602867, + "c5": 5.187239944521492, + "c6": 3.458159963014328, + "c7": 1.729079981507164 }, "rgb": [58, 15, 49] }, @@ -418452,23 +418452,23 @@ "year": 1818, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": -17.720669591077613, - "c2": 11.081014347660506, - "c3": 3.029294096337832, - "c4": -7.334648332304759, - "c5": -19.157009543341072, - "c6": -10.668429969350411, - "c7": 17.01158694142387 + "points": { + "c1": -7.986007358190218, + "c2": 21.260289561720178, + "c3": 20.577548252519804, + "c4": -8.871417494123985, + "c5": 20.87780920705339, + "c6": -20.291965517969246, + "c7": 14.87873175434813 }, - "vertexSeeds": { - "c1": 8.033781857889284, - "c2": 7.946428167030741, - "c3": 8.015503349125089, - "c4": 8.112184714806654, - "c5": 7.9683904988241965, - "c6": 8.067807792703542, - "c7": 7.887833758666519 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852977, + "c3": 9.685621821544139, + "c4": 7.748497457235303, + "c5": 5.811373092926468, + "c6": 3.874248728617672, + "c7": 1.937124364308836 }, "rgb": [222, 0, 59] }, @@ -418479,23 +418479,23 @@ "year": 1818, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -8.630295736349169, - "c2": -11.872678744676886, - "c3": 19.40029121467414, - "c4": 16.407830947076732, - "c5": -12.664544798013248, - "c6": 1.6383424844624805, - "c7": -11.432361354594239 + "points": { + "c1": 3.2571337221241805, + "c2": 5.977699220131605, + "c3": 23.833774530768423, + "c4": -17.320188982009395, + "c5": -20.8786212316071, + "c6": -20.136350163906922, + "c7": -18.359378994254662 }, - "vertexSeeds": { - "c1": 8.163214480444822, - "c2": 8.183581692163722, - "c3": 8.339247842313501, - "c4": 8.116849581066537, - "c5": 8.172122266460846, - "c6": 8.138091318577535, - "c7": 8.454645634887592 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.14979195561719, + "c3": 10.124826629681014, + "c4": 8.099861303744804, + "c5": 6.074895977808595, + "c6": 4.049930651872385, + "c7": 2.0249653259362095 }, "rgb": [222, 0, 59] }, @@ -418506,23 +418506,23 @@ "year": 1817, "resistanceReported": false, "duration": 5702400, - "curveSeeds": { - "c1": 7.857553926028352, - "c2": -10.879147105793336, - "c3": -0.3882027768333902, - "c4": 5.542454763758197, - "c5": -13.187299361313062, - "c6": -12.234529960723506, - "c7": 5.842760565844149 + "points": { + "c1": -7.531436758719256, + "c2": 13.72708792349545, + "c3": -10.547131364971166, + "c4": -10.60028318338426, + "c5": -7.108525536133007, + "c6": -11.867016384663717, + "c7": -11.73409310680735 }, - "vertexSeeds": { - "c1": 1.8264248704663213, - "c2": 1.8264248704663213, - "c3": 1.8264248704663213, - "c4": 1.8264248704663213, - "c5": 1.8264248704663213, - "c6": 1.8264248704663213, - "c7": 1.8264248704663213 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -418533,23 +418533,23 @@ "year": 1818, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 5.010752417151064, - "c2": -14.408450891710638, - "c3": -8.303234370814309, - "c4": 3.857752314621056, - "c5": 11.098666199274039, - "c6": 11.367287266138117, - "c7": -21.50504458171711 + "points": { + "c1": 23.473783259661626, + "c2": 29.56549374896311, + "c3": 10.488814169814109, + "c4": 18.763192640529606, + "c5": -7.860196889950728, + "c6": -13.40837669553785, + "c7": 2.073275934880151 }, - "vertexSeeds": { - "c1": 8.135598674291606, - "c2": 8.180132265050378, - "c3": 8.08252041428841, - "c4": 6.869853527610758, - "c5": 7.706508483996428, - "c6": 7.3402418777862435, - "c7": 8.005603613198268 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295427, + "c3": 9.939898289412852, + "c4": 7.951918631530285, + "c5": 5.963938973647709, + "c6": 3.9759593157651425, + "c7": 1.9879796578825755 }, "rgb": [77, 76, 132] }, @@ -418560,23 +418560,23 @@ "year": 1818, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -0.3987030644407987, - "c2": -7.510295618164328, - "c3": -10.874800470371898, - "c4": -8.962337483017375, - "c5": -6.589953764597482, - "c6": 20.298679633425166, - "c7": 24.010499263084697 + "points": { + "c1": -20.090365182651894, + "c2": -28.261737950091337, + "c3": 0.9154515386137945, + "c4": 27.8956318494209, + "c5": 18.819818101550126, + "c6": -14.099307975488195, + "c7": -8.479614148178733 }, - "vertexSeeds": { - "c1": 8.186667933800496, - "c2": 8.233186298088956, - "c3": 8.213754991192538, - "c4": 8.21412305005888, - "c5": 8.29145587736286, - "c6": 8.194878543103744, - "c7": 8.248209646743005 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214937, + "c3": 9.89366620434583, + "c4": 7.914932963476624, + "c5": 5.936199722607518, + "c6": 3.957466481738312, + "c7": 1.9787332408692053 }, "rgb": [77, 76, 132] }, @@ -418587,23 +418587,23 @@ "year": 1818, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 16.03771821632148, - "c2": 22.143777218469104, - "c3": 27.75753360106758, - "c4": -4.182744072464253, - "c5": -33.044600666672295, - "c6": 8.627626093772427, - "c7": 6.940241754598141 + "points": { + "c1": 11.585856146733981, + "c2": 21.460098465143048, + "c3": 20.363995781295742, + "c4": 2.1915747120874585, + "c5": -26.946702900186335, + "c6": -29.79180644465491, + "c7": 9.554556709838515 }, - "vertexSeeds": { - "c1": 7.193171012076204, - "c2": 7.202864995059695, - "c3": 7.482477082146781, - "c4": 7.696423089841752, - "c5": 7.413953999583677, - "c6": 7.457369234837694, - "c7": 7.688071256149156 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289877, + "c3": 9.361997226074902, + "c4": 7.489597780859908, + "c5": 5.61719833564493, + "c6": 3.744798890429954, + "c7": 1.872399445214977 }, "rgb": [222, 0, 59] }, @@ -418614,23 +418614,23 @@ "year": 1818, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 12.811782734193613, - "c2": 3.820109645401949, - "c3": -32.33418942584459, - "c4": 10.250494697467033, - "c5": 27.238506328274667, - "c6": 23.482869848070564, - "c7": 24.010549450952446 + "points": { + "c1": 15.513692226205727, + "c2": -11.25634300841508, + "c3": 1.3986250684380295, + "c4": 9.368872095921738, + "c5": 9.979625067218116, + "c6": -35.80185178085332, + "c7": -7.830339249859399 }, - "vertexSeeds": { - "c1": 5.631688851445466, - "c2": 5.316075090156895, - "c3": 5.435835144605724, - "c4": 5.715816646395606, - "c5": 5.15422129967753, - "c6": 5.447832217190757, - "c7": 5.497847450346542 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905685, + "c3": 6.842348589921401, + "c4": 5.473878871937117, + "c5": 4.10540915395285, + "c6": 2.736939435968566, + "c7": 1.368469717984283 }, "rgb": [86, 146, 138] }, @@ -418641,23 +418641,23 @@ "year": 1818, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -1.2468594307788585, - "c2": 24.49211706210859, - "c3": -17.448672951707934, - "c4": -7.6740706372811935, - "c5": 2.6400166569350425, - "c6": -21.092566348156506, - "c7": -1.8740498974829727 + "points": { + "c1": 13.366936139376762, + "c2": -6.627024838319496, + "c3": 2.609407859307222, + "c4": 26.782743287660082, + "c5": 8.897467852578181, + "c6": -5.584552910090352, + "c7": -13.334410134108913 }, - "vertexSeeds": { - "c1": 5.526052934977772, - "c2": 5.079882213700633, - "c3": 5.1157730121087, - "c4": 5.560450626218862, - "c5": 5.291293250639807, - "c6": 5.459152370264775, - "c7": 5.615705371417334 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704575, + "c3": 6.72676837725381, + "c4": 5.3814147018030445, + "c5": 4.03606102635228, + "c6": 2.69070735090153, + "c7": 1.345353675450765 }, "rgb": [58, 15, 49] }, @@ -418668,23 +418668,23 @@ "year": 1818, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 38.88051431227839, - "c2": -15.013171196206443, - "c3": 38.95344782698767, - "c4": 43.63105287546831, - "c5": -3.219550526670716, - "c6": 7.195215321904499, - "c7": 31.553783762118968 + "points": { + "c1": -15.205482094200036, + "c2": -3.823865028139217, + "c3": -29.093554263640808, + "c4": 43.74820001696004, + "c5": -23.220165329848744, + "c6": -27.745229870983398, + "c7": -9.529917005573331 }, - "vertexSeeds": { - "c1": 5.660755485965698, - "c2": 5.907548172552914, - "c3": 6.220454959115304, - "c4": 5.790708773154194, - "c5": 6.03966998652511, - "c6": 5.849436162056369, - "c7": 6.124473845508759 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434119, + "c3": 7.720758206195099, + "c4": 6.176606564956079, + "c5": 4.632454923717059, + "c6": 3.0883032824780394, + "c7": 1.5441516412390197 }, "rgb": [86, 146, 138] }, @@ -418695,23 +418695,23 @@ "year": 1818, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -16.14760260687325, - "c2": 5.041061434654306, - "c3": -3.4810928225681934, - "c4": 13.795875489250651, - "c5": -7.230630856558907, - "c6": 14.09327291684647, - "c7": -9.773526608171881 + "points": { + "c1": -21.230712200972256, + "c2": 27.601867670362136, + "c3": 12.157826544481349, + "c4": 14.25262017033619, + "c5": -19.101866360788094, + "c6": 6.367932039100378, + "c7": -13.665775329780312 }, - "vertexSeeds": { - "c1": 8.436209515789246, - "c2": 8.416987654590692, - "c3": 8.436839762337318, - "c4": 8.461595614221816, - "c5": 8.542501096265696, - "c6": 8.45855481164467, - "c7": 8.437063098220479 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737821, + "c3": 10.194174757281568, + "c4": 8.155339805825214, + "c5": 6.116504854368961, + "c6": 4.077669902912607, + "c7": 2.038834951456354 }, "rgb": [86, 146, 138] }, @@ -418722,23 +418722,23 @@ "year": 1818, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 30.314128114434133, - "c2": 24.96472229629743, - "c3": -1.0196754625776023, - "c4": 12.84231384736075, - "c5": -34.065869476804856, - "c6": -26.876763249453973, - "c7": 24.202630517319903 + "points": { + "c1": 27.02227680593527, + "c2": 3.5364975071850466, + "c3": 9.319668259404331, + "c4": 29.27304293226245, + "c5": -11.353170524225703, + "c6": -38.10365812700274, + "c7": -8.858781566926389 }, - "vertexSeeds": { - "c1": 6.354442968453011, - "c2": 5.686165664480151, - "c3": 5.705792896389348, - "c4": 6.001694989599488, - "c5": 6.029396060294636, - "c6": 6.553947343586173, - "c7": 6.495531621407558 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.87378640776699, + "c3": 9.061488673139161, + "c4": 7.249190938511326, + "c5": 5.436893203883495, + "c6": 3.624595469255666, + "c7": 1.8122977346278297 }, "rgb": [86, 146, 138] }, @@ -418749,23 +418749,23 @@ "year": 1818, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 15.374911801768597, - "c2": -20.15234358122427, - "c3": 20.812020040430717, - "c4": -10.733489100460272, - "c5": 18.24719679771954, - "c6": -7.274524664673905, - "c7": -35.58139782555536 + "points": { + "c1": 15.687505208062731, + "c2": 0.45425772657758046, + "c3": 31.207461678909517, + "c4": -23.81368736947207, + "c5": -8.721176798774547, + "c6": -27.958613652404054, + "c7": 33.06419525087937 }, - "vertexSeeds": { - "c1": 10.843130293032074, - "c2": 10.256061396959115, - "c3": 8.628465199771082, - "c4": 9.722697576341519, - "c5": 11.872061849547876, - "c6": 9.631720336195105, - "c7": 9.296332278978882 + "offsets": { + "c1": 21.326860841423947, + "c2": 18.28016643550624, + "c3": 15.233472029588533, + "c4": 12.186777623670825, + "c5": 9.140083217753123, + "c6": 6.093388811835412, + "c7": 3.046694405917706 }, "rgb": [58, 15, 49] }, @@ -418776,23 +418776,23 @@ "year": 1818, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -12.01581782152018, - "c2": -20.57321709435824, - "c3": 0.48901560613959205, - "c4": 1.303993000927914, - "c5": 13.048939941505797, - "c6": 21.484277815311106, - "c7": 27.35326239414356 + "points": { + "c1": 27.831459253208312, + "c2": -17.91935236101697, + "c3": 21.784927818122195, + "c4": -23.68926585821826, + "c5": 17.912014861307124, + "c6": 19.030506074337264, + "c7": -5.326085404401518 }, - "vertexSeeds": { - "c1": 3.9960474526055982, - "c2": 3.8067322341826064, - "c3": 3.741323880300023, - "c4": 4.139512376259293, - "c5": 3.9043845038934095, - "c6": 3.8640949306562193, - "c7": 4.122386747732965 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049928, + "c3": 5.201109570041609, + "c4": 4.160887656033285, + "c5": 3.1206657420249666, + "c6": 2.0804438280166426, + "c7": 1.0402219140083186 }, "rgb": [86, 146, 138] }, @@ -418803,23 +418803,23 @@ "year": 1818, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -4.748482307751047, - "c2": -25.62568348124648, - "c3": -22.282051190817626, - "c4": -13.573612509795122, - "c5": 10.095778887909646, - "c6": -13.543267636011912, - "c7": 0.6953176815978779 + "points": { + "c1": 19.74318495311413, + "c2": -10.222474264662054, + "c3": -22.872437191175557, + "c4": 14.172782849711503, + "c5": 3.248965497718366, + "c6": 23.00645760760426, + "c7": 5.611952623324342 }, - "vertexSeeds": { - "c1": 6.808829545636189, - "c2": 7.118941897171635, - "c3": 7.167311742262818, - "c4": 7.163816233320506, - "c5": 6.6839919799570175, - "c6": 7.011736079957793, - "c7": 7.068530057436799 + "offsets": { + "c1": 11.974110032362459, + "c2": 10.263522884882104, + "c3": 8.552935737401748, + "c4": 6.842348589921394, + "c5": 5.131761442441039, + "c6": 3.4211742949607102, + "c7": 1.7105871474803551 }, "rgb": [238, 201, 159] }, @@ -418830,23 +418830,23 @@ "year": 1818, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -19.372061756456155, - "c2": 15.748782014603428, - "c3": 17.715962995004098, - "c4": -4.550795319684006, - "c5": 12.650227925374978, - "c6": 11.981326938276645, - "c7": -20.38111718726672 + "points": { + "c1": -27.97004381886881, + "c2": 12.457337363047806, + "c3": 7.715201696834633, + "c4": -2.9992824704384766, + "c5": 27.850347812417503, + "c6": -7.620864027444277, + "c7": 21.46366493853916 }, - "vertexSeeds": { - "c1": 10.259596129843347, - "c2": 10.260909241845564, - "c3": 10.161566175862658, - "c4": 10.400495434151086, - "c5": 10.356563266511426, - "c6": 10.075816412097462, - "c7": 9.876734230909085 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.006934812760065, + "c3": 12.505779010633399, + "c4": 10.004623208506668, + "c5": 7.503467406380001, + "c6": 5.002311604253334, + "c7": 2.501155802126667 }, "rgb": [238, 201, 159] }, @@ -418857,23 +418857,23 @@ "year": 1818, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -14.972606744237183, - "c2": -1.3057011819995878, - "c3": -2.5994136643228174, - "c4": 26.42854351172574, - "c5": -15.834045817120797, - "c6": 22.782845399803687, - "c7": -18.237698459027882 + "points": { + "c1": -21.15208357543863, + "c2": -14.002228304589467, + "c3": -0.9956986323506527, + "c4": 16.171265384027, + "c5": 12.721917701112528, + "c6": -1.6732523579704655, + "c7": -14.855924955871464 }, - "vertexSeeds": { - "c1": 12.05917260822334, - "c2": 12.679529555625967, - "c3": 12.07167608020825, - "c4": 12.537471502090423, - "c5": 12.448088262721296, - "c6": 12.175854761614037, - "c7": 12.311891313589783 + "offsets": { + "c1": 21.650485436893206, + "c2": 18.557558945908447, + "c3": 15.464632454923741, + "c4": 12.37170596393898, + "c5": 9.278779472954223, + "c6": 6.185852981969517, + "c7": 3.0929264909847585 }, "rgb": [238, 201, 159] }, @@ -418884,23 +418884,23 @@ "year": 1818, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -19.056730214627457, - "c2": -30.054142954739994, - "c3": -11.858962916379529, - "c4": -24.7862079727685, - "c5": -2.779851575138963, - "c6": 11.480114142186256, - "c7": -20.252023942394462 + "points": { + "c1": 28.80122204875571, + "c2": -9.659610831209047, + "c3": 14.67456445809377, + "c4": -8.502305701118068, + "c5": -1.7404030039988356, + "c6": 26.713433120309958, + "c7": 22.982975776805567 }, - "vertexSeeds": { - "c1": 8.28820116703257, - "c2": 8.515104628609684, - "c3": 8.738906735525365, - "c4": 8.502834835189262, - "c5": 8.951143237327505, - "c6": 8.484242434318185, - "c7": 8.49924546744031 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.843273231622751, + "c3": 10.702727693018945, + "c4": 8.56218215441516, + "c5": 6.421636615811376, + "c6": 4.281091077207569, + "c7": 2.1405455386037846 }, "rgb": [238, 201, 159] }, @@ -418911,23 +418911,23 @@ "year": 1818, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 20.34137853390147, - "c2": 15.123524269162992, - "c3": -8.123892924840135, - "c4": 30.64809807756818, - "c5": -8.96196736496277, - "c6": -28.967185519970002, - "c7": 29.259317606359744 + "points": { + "c1": -3.1332252890683847, + "c2": 12.990784019306176, + "c3": 4.378308469597499, + "c4": 8.582441880787108, + "c5": -20.739197158173898, + "c6": -9.661729845932456, + "c7": 23.792991219034683 }, - "vertexSeeds": { - "c1": 7.816963677074846, - "c2": 7.605345798048606, - "c3": 8.278089585041037, - "c4": 7.99710860926052, - "c5": 8.330925949873706, - "c6": 8.305523494544602, - "c7": 7.739312172954026 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858526, + "c3": 10.263522884882104, + "c4": 8.210818307905681, + "c5": 6.15811373092927, + "c6": 4.105409153952847, + "c7": 2.0527045769764234 }, "rgb": [238, 201, 159] }, @@ -418938,23 +418938,23 @@ "year": 1818, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -19.88327067014866, - "c2": 6.4787725664386535, - "c3": -19.77423600265182, - "c4": -16.161332702123797, - "c5": -13.883209562304744, - "c6": -3.882942910361315, - "c7": -7.255317645999913 + "points": { + "c1": -15.133251126653626, + "c2": -10.652938187213703, + "c3": 23.247743598928835, + "c4": 8.391783889059532, + "c5": 6.470907150206372, + "c6": 22.051136746131547, + "c7": 6.507268880963373 }, - "vertexSeeds": { - "c1": 11.874232602348073, - "c2": 11.987281651892866, - "c3": 11.79889615860571, - "c4": 11.737930479996166, - "c5": 12.023587853626678, - "c6": 12.151398906500292, - "c7": 11.810047613403539 + "offsets": { + "c1": 20.485436893203886, + "c2": 17.558945908460448, + "c3": 14.63245492371707, + "c4": 11.70596393897363, + "c5": 8.779472954230254, + "c6": 5.852981969486815, + "c7": 2.9264909847434395 }, "rgb": [86, 146, 138] }, @@ -418965,23 +418965,23 @@ "year": 1818, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 9.443687538621337, - "c2": -24.555652893963636, - "c3": -8.955615758682793, - "c4": -12.455187210313158, - "c5": 20.731093793197044, - "c6": 23.759560562889018, - "c7": -17.131779898343126 + "points": { + "c1": -11.550540522852437, + "c2": -24.58804818778155, + "c3": 26.798871562250707, + "c4": -21.58725961896, + "c5": -13.26883961085493, + "c6": 21.476598143616034, + "c7": -9.502872066804237 }, - "vertexSeeds": { - "c1": 6.206459126988582, - "c2": 6.594438241354711, - "c3": 6.2461267427613985, - "c4": 6.444009589139384, - "c5": 6.365878284896926, - "c6": 6.4384555029589725, - "c7": 6.489565115388141 + "offsets": { + "c1": 11.035598705501618, + "c2": 9.459084604715665, + "c3": 7.8825705039297125, + "c4": 6.306056403143785, + "c5": 4.7295423023578325, + "c6": 3.1530282015718796, + "c7": 1.5765141007859267 }, "rgb": [238, 201, 159] }, @@ -418992,23 +418992,23 @@ "year": 1818, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 11.13822742352211, - "c2": 15.862374174979593, - "c3": -17.70466503455312, - "c4": -5.853362818492105, - "c5": -9.33794029486631, - "c6": 20.09840657963641, - "c7": 20.951212090574664 + "points": { + "c1": -28.13658382227084, + "c2": -7.388010767332975, + "c3": 22.325954770683822, + "c4": -5.557307310986349, + "c5": 12.55572149591734, + "c6": -8.872716003652751, + "c7": 19.75963364945727 }, - "vertexSeeds": { - "c1": 7.447933077377062, - "c2": 8.138820543760318, - "c3": 7.7844951098449835, - "c4": 8.184373276032074, - "c5": 7.961996963840869, - "c6": 7.7389852330460664, - "c7": 7.977403550360533 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737859, + "c3": 10.194174757281555, + "c4": 8.155339805825239, + "c5": 6.116504854368935, + "c6": 4.0776699029126195, + "c7": 2.038834951456304 }, "rgb": [86, 146, 138] }, @@ -419019,23 +419019,23 @@ "year": 1818, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 26.243969731847827, - "c2": 5.573012079004499, - "c3": -28.586439057778687, - "c4": 23.708183527585476, - "c5": -29.42883004250215, - "c6": -1.5299000166677423, - "c7": -8.939459692201911 + "points": { + "c1": 23.447144407859277, + "c2": 14.220904059378078, + "c3": 26.079323580901963, + "c4": 28.06030398237435, + "c5": 24.15986774304055, + "c6": -9.187449753925247, + "c7": -6.225813207164652 }, - "vertexSeeds": { - "c1": 5.8501630307004575, - "c2": 5.860214859112557, - "c3": 5.890612830866366, - "c4": 5.894011402177904, - "c5": 5.5034508765241235, - "c6": 5.8766613343816285, - "c7": 5.876014709610384 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267676, + "c3": 7.050392972723079, + "c4": 5.640314378178458, + "c5": 4.230235783633838, + "c6": 2.820157189089241, + "c7": 1.4100785945446206 }, "rgb": [86, 146, 138] }, @@ -419046,23 +419046,23 @@ "year": 1818, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -22.271449743589645, - "c2": -21.296934263435723, - "c3": -21.895006634086393, - "c4": -6.473006753247713, - "c5": 0.8266871060442114, - "c6": -11.409877261867926, - "c7": 28.583539005935457 + "points": { + "c1": 20.674019927854644, + "c2": -34.513355886538314, + "c3": -25.84622009407702, + "c4": 35.21903792302831, + "c5": -34.885540977132884, + "c6": 22.39695379776466, + "c7": 25.76580907860258 }, - "vertexSeeds": { - "c1": 7.782024515141702, - "c2": 8.19462806021817, - "c3": 6.644349550115795, - "c4": 6.765716015853841, - "c5": 6.560444704783905, - "c6": 7.526257554738817, - "c7": 7.800157632533214 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.76144244105409, + "c3": 9.801202034211746, + "c4": 7.840961627369396, + "c5": 5.880721220527045, + "c6": 3.920480813684702, + "c7": 1.960240406842351 }, "rgb": [58, 15, 49] }, @@ -419073,23 +419073,23 @@ "year": 1818, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": 16.50040435431346, - "c2": -41.2371705999255, - "c3": 27.403503906477177, - "c4": 39.304242907097795, - "c5": 16.37631822321314, - "c6": 41.58255581199703, - "c7": 9.694147965054114 + "points": { + "c1": -32.36081860425057, + "c2": 34.57720077127933, + "c3": -13.484197280289102, + "c4": -13.34659180174824, + "c5": -44.22300935426013, + "c6": -25.123353316876145, + "c7": 41.47669230542545 }, - "vertexSeeds": { - "c1": 10.47686661527426, - "c2": 10.680722642226998, - "c3": 10.048322951745206, - "c4": 10.365113210572694, - "c5": 10.698754930528796, - "c6": 10.958527760092434, - "c7": 10.075348784359672 + "offsets": { + "c1": 18.41423948220065, + "c2": 15.783633841886271, + "c3": 13.153028201571892, + "c4": 10.522422561257514, + "c5": 7.8918169209431355, + "c6": 5.261211280628757, + "c7": 2.6306056403143785 }, "rgb": [222, 0, 59] }, @@ -419100,23 +419100,23 @@ "year": 1818, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 9.234103345771317, - "c2": -8.351464779199322, - "c3": -6.66267094198456, - "c4": 5.8217161864657925, - "c5": -6.503288708437426, - "c6": 5.235379432723761, - "c7": 4.779327120014802 + "points": { + "c1": 18.999426290926557, + "c2": 9.667623317058087, + "c3": -5.263105023945094, + "c4": -1.7867301558053583, + "c5": 5.085459005977878, + "c6": -5.042488611591306, + "c7": -6.321581793628496 }, - "vertexSeeds": { - "c1": 3.9068613371817404, - "c2": 3.9052825749826763, - "c3": 3.757761477830101, - "c4": 3.8085776225907955, - "c5": 3.63797000155139, - "c6": 3.6490760980602324, - "c7": 3.8602100092794944 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325937, + "c3": 4.7850208044382825, + "c4": 3.8280166435506273, + "c5": 2.871012482662965, + "c6": 1.9140083217753097, + "c7": 0.9570041608876548 }, "rgb": [58, 15, 49] }, @@ -419127,23 +419127,23 @@ "year": 1818, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 22.29901224066441, - "c2": 1.3425083781157596, - "c3": -38.43903328272204, - "c4": -11.435882247986736, - "c5": -38.29612601248053, - "c6": 11.424175436986864, - "c7": 31.98174452652711 + "points": { + "c1": -19.458477669642726, + "c2": -38.32580811975879, + "c3": -30.681522030141068, + "c4": -29.720424880268123, + "c5": 19.24813397512912, + "c6": -39.92932802974792, + "c7": 32.17120611524257 }, - "vertexSeeds": { - "c1": 6.05925260797457, - "c2": 5.993634757305772, - "c3": 6.055046178501258, - "c4": 5.899137566159754, - "c5": 6.058525042532601, - "c6": 6.037732371682142, - "c7": 6.053333931443916 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.68238557558947, + "c3": 7.235321312991235, + "c4": 5.7882570503930015, + "c5": 4.341192787794767, + "c6": 2.8941285251964683, + "c7": 1.4470642625982342 }, "rgb": [222, 0, 59] }, @@ -419154,23 +419154,23 @@ "year": 1818, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -30.60574868946017, - "c2": 32.83548082943592, - "c3": -0.8988599467864944, - "c4": 3.522482905644516, - "c5": -27.337409643859104, - "c6": -5.847309764893065, - "c7": -9.024926687183562 + "points": { + "c1": -22.259270983361226, + "c2": 30.338933330484508, + "c3": -31.751514484661413, + "c4": 8.085693649419895, + "c5": 19.332751116530915, + "c6": -21.580551461701955, + "c7": -28.798523143192277 }, - "vertexSeeds": { - "c1": 4.0878326492776464, - "c2": 4.098559403814515, - "c3": 4.184202737780293, - "c4": 3.93948486688353, - "c5": 3.920212695370043, - "c6": 3.9298472293032938, - "c7": 3.9381958752276556 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728157, + "c3": 5.016181229773459, + "c4": 4.012944983818769, + "c5": 3.0097087378640786, + "c6": 2.006472491909381, + "c7": 1.0032362459546904 }, "rgb": [238, 201, 159] }, @@ -419181,23 +419181,23 @@ "year": 1818, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -3.8868793132712547, - "c2": -2.3367187539975127, - "c3": -3.845467591628502, - "c4": 23.433992268941672, - "c5": -23.988784297321953, - "c6": 2.266123526043092, - "c7": -13.2328252279214 + "points": { + "c1": -17.831363346536243, + "c2": -8.756575273012825, + "c3": -15.673617682745645, + "c4": 15.803497330861653, + "c5": 0.10280829730041674, + "c6": -21.256125602749627, + "c7": -10.434527094461629 }, - "vertexSeeds": { - "c1": 3.4634238019875996, - "c2": 3.445397248111391, - "c3": 3.395067356905398, - "c4": 3.3926606560231103, - "c5": 3.431058970131622, - "c6": 3.425708833829588, - "c7": 3.426870772537444 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239935, + "c3": 4.160887656033301, + "c4": 3.328710124826635, + "c5": 2.4965325936199676, + "c6": 1.6643550624133006, + "c7": 0.8321775312066669 }, "rgb": [77, 76, 132] }, @@ -419208,23 +419208,23 @@ "year": 1818, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 13.626056694520294, - "c2": -18.03945491589705, - "c3": 16.124355959415603, - "c4": -7.93818683398665, - "c5": 2.107166206706463, - "c6": 8.262281214240005, - "c7": -18.193030791465496 + "points": { + "c1": -21.23723461013141, + "c2": 21.240091033995554, + "c3": 3.5752511446620474, + "c4": -0.22065295239853455, + "c5": -2.9429464113188395, + "c6": -19.933763611113594, + "c7": 3.799645563306715 }, - "vertexSeeds": { - "c1": 4.304087803012203, - "c2": 4.305247123370515, - "c3": 4.4023977844394775, - "c4": 4.073476596242292, - "c5": 4.405870199618715, - "c6": 4.056087303711401, - "c7": 4.091912770434632 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170599, + "c3": 5.270457697642162, + "c4": 4.216366158113733, + "c5": 3.162274618585296, + "c6": 2.1081830790568663, + "c7": 1.054091539528437 }, "rgb": [222, 0, 59] }, @@ -419235,23 +419235,23 @@ "year": 1818, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": -16.149409885275734, - "c2": -11.644300782023354, - "c3": -8.217768935314124, - "c4": 14.817818784707043, - "c5": 1.7785590478481588, - "c6": -20.910113875726708, - "c7": -8.811210375491317 + "points": { + "c1": 6.646875511563188, + "c2": 6.438347263780866, + "c3": -21.438035028772042, + "c4": -8.28005912771401, + "c5": -13.438905849502886, + "c6": 20.139019455526423, + "c7": 15.916941436183357 }, - "vertexSeeds": { - "c1": 3.725237996728636, - "c2": 3.980270846121638, - "c3": 4.008836191487617, - "c4": 3.863029323683017, - "c5": 4.023029636478377, - "c6": 3.986140587479798, - "c7": 4.014315305457057 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466, + "c3": 4.854368932038833, + "c4": 3.8834951456310645, + "c5": 2.9126213592232966, + "c6": 1.9417475728155285, + "c7": 0.9708737864077607 }, "rgb": [77, 76, 132] }, @@ -419262,23 +419262,23 @@ "year": 1818, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -12.609124409428029, - "c2": -22.475561482573895, - "c3": -18.66375310536373, - "c4": -13.687348604368417, - "c5": -18.49404658763296, - "c6": 11.889865419515651, - "c7": 0.568120073726071 + "points": { + "c1": 7.2644144529796435, + "c2": 4.316588975893197, + "c3": -25.670928220171568, + "c4": 7.2276608536827425, + "c5": 11.890480780788941, + "c6": -12.182650017936592, + "c7": 28.176257785380137 }, - "vertexSeeds": { - "c1": 8.286689724094021, - "c2": 8.197327696248957, - "c3": 8.086200619910029, - "c4": 7.9020078471869075, - "c5": 8.076366790386125, - "c6": 8.200035119662514, - "c7": 8.23674160928201 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375876, + "c3": 9.986130374479886, + "c4": 7.9889042995839175, + "c5": 5.991678224687928, + "c6": 3.9944521497919587, + "c7": 1.9972260748959891 }, "rgb": [86, 146, 138] }, @@ -419289,23 +419289,23 @@ "year": 1818, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 24.385843075671744, - "c2": 29.740738666521537, - "c3": 21.789198574269705, - "c4": 16.739436042323376, - "c5": -4.02092598905789, - "c6": -17.764573692727808, - "c7": -22.780235486183173 + "points": { + "c1": 0.5027838974537175, + "c2": -11.619165744628486, + "c3": -20.440443067672014, + "c4": 28.359613985785728, + "c5": 12.731513773942382, + "c6": 0.35688480658445343, + "c7": -1.8144757152359645 }, - "vertexSeeds": { - "c1": 14.850390467124239, - "c2": 14.86117447451137, - "c3": 15.208877066538932, - "c4": 15.11899140371899, - "c5": 15.512493531866975, - "c6": 15.710339912793117, - "c7": 15.451278246753857 + "offsets": { + "c1": 26.407766990291265, + "c2": 22.635228848821065, + "c3": 18.86269070735091, + "c4": 15.09015256588071, + "c5": 11.317614424410555, + "c6": 7.545076282940355, + "c7": 3.7725381414702004 }, "rgb": [77, 76, 132] }, @@ -419316,23 +419316,23 @@ "year": 1818, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 9.977459803537116, - "c2": -5.3000785825603, - "c3": 24.309380343229435, - "c4": 10.912616337876152, - "c5": -2.9854211078098203, - "c6": -11.956028909634831, - "c7": 11.378663708664412 + "points": { + "c1": -24.79254039809677, + "c2": -15.207826453489531, + "c3": 21.704572174796603, + "c4": 19.24191034439434, + "c5": 12.528292083266045, + "c6": 23.99208759697939, + "c7": 7.219894456920969 }, - "vertexSeeds": { - "c1": 2.7714594113308473, - "c2": 2.7772030950465707, - "c3": 2.8368460783854426, - "c4": 2.5584507253243087, - "c5": 2.7262375389573807, - "c6": 2.5456643547156275, - "c7": 2.6612615924684646 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993063, + "c3": 3.444290337494217, + "c4": 2.755432269995378, + "c5": 2.0665742024965317, + "c6": 1.3777161349976852, + "c7": 0.6888580674988465 }, "rgb": [238, 201, 159] }, @@ -419343,23 +419343,23 @@ "year": 1818, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -18.984358766075722, - "c2": -29.173464884341225, - "c3": -3.257707361999543, - "c4": -13.741339456272662, - "c5": -27.674695265261022, - "c6": -20.820596632950597, - "c7": -15.597452199324689 + "points": { + "c1": -13.398944607364385, + "c2": -12.710465211128383, + "c3": -13.392850890886535, + "c4": -14.465709771422102, + "c5": -11.509850117868737, + "c6": -2.8325762783034634, + "c7": -14.425843001175785 }, - "vertexSeeds": { - "c1": 1.737363587308816, - "c2": 1.6934128079422544, - "c3": 1.779788901239836, - "c4": 1.8174083601312383, - "c5": 1.8256569084509136, - "c6": 1.656156513851309, - "c7": 1.7686816381002493 + "offsets": { + "c1": 3.1067961165048543, + "c2": 2.6629680998613052, + "c3": 2.2191400832177526, + "c4": 1.7753120665742035, + "c5": 1.3314840499306508, + "c6": 0.8876560332871017, + "c7": 0.44382801664355276 }, "rgb": [86, 146, 138] }, @@ -419370,23 +419370,23 @@ "year": 1818, "resistanceReported": false, "duration": 27734400, - "curveSeeds": { - "c1": 3.3677824490726422, - "c2": -29.114898716743753, - "c3": -25.975790547940804, - "c4": 19.029383727251904, - "c5": -16.64771073225151, - "c6": 28.5910037885878, - "c7": 15.286805433407984 + "points": { + "c1": -7.51176599178423, + "c2": -4.150927686123474, + "c3": -34.78809250846864, + "c4": -40.44396237400335, + "c5": -35.97185410808273, + "c6": -23.16091685629241, + "c7": 4.891699633100735 }, - "vertexSeeds": { - "c1": 2.125483178821154, - "c2": 2.0618787738973228, - "c3": 2.140694323878143, - "c4": 2.19965366077016, - "c5": 1.954829782357288, - "c6": 2.0949402946332785, - "c7": 2.209276281608574 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.273231622746186, + "c3": 2.7276930189551556, + "c4": 2.182154415164122, + "c5": 1.6366158113730915, + "c6": 1.091077207582061, + "c7": 0.5455386037910305 }, "rgb": [222, 0, 59] }, @@ -419397,23 +419397,23 @@ "year": 1818, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 19.30140464218026, - "c2": -17.504021650935584, - "c3": -4.5543689818614865, - "c4": 26.601855680213667, - "c5": -6.852507191390249, - "c6": 26.67311963433267, - "c7": -29.548632037956455 + "points": { + "c1": -13.374917637637825, + "c2": -27.007926337998455, + "c3": 18.164275891922372, + "c4": 15.745004411255337, + "c5": -20.195203675719092, + "c6": 12.572247312737545, + "c7": 11.923195735812321 }, - "vertexSeeds": { - "c1": 3.6162779947493138, - "c2": 3.5737393053815976, - "c3": 3.6631763487499596, - "c4": 3.6566894662662026, - "c5": 3.4252873559560073, - "c6": 3.71687077689292, - "c7": 3.5849566437019873 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.49237170596394, + "c3": 4.576976421636618, + "c4": 3.661581137309288, + "c5": 2.746185852981966, + "c6": 1.830790568654644, + "c7": 0.915395284327322 }, "rgb": [58, 15, 49] }, @@ -419424,23 +419424,23 @@ "year": 1818, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -22.096718137774246, - "c2": 31.742574966368124, - "c3": 15.061198952330727, - "c4": 17.341890632126507, - "c5": 30.4774684992758, - "c6": 11.658302371552246, - "c7": -23.756877481825136 + "points": { + "c1": 19.745637803271322, + "c2": -4.359571034002002, + "c3": -11.936528645593686, + "c4": 0.9928063864605647, + "c5": -8.222503172424254, + "c6": 15.719227055370474, + "c7": -16.253442221562054 }, - "vertexSeeds": { - "c1": 4.239689389407516, - "c2": 4.2958972891767795, - "c3": 4.087677986799558, - "c4": 4.063847281628948, - "c5": 4.233234943323059, - "c6": 4.356532076433207, - "c7": 4.0702784466661015 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210817, + "c3": 5.293573740175682, + "c4": 4.234858992140545, + "c5": 3.1761442441054086, + "c6": 2.1174294960702724, + "c7": 1.0587147480351362 }, "rgb": [238, 201, 159] }, @@ -419451,23 +419451,23 @@ "year": 1818, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -18.10678019899197, - "c2": -21.62470959454533, - "c3": -24.954393947872827, - "c4": -14.131120362172759, - "c5": 1.3901598761860612, - "c6": -22.413267229656327, - "c7": 30.270559509211907 + "points": { + "c1": -26.3668406998329, + "c2": -12.090870221473569, + "c3": 27.12828682165693, + "c4": -15.40438118355804, + "c5": 10.308524136530394, + "c6": -32.78020429008765, + "c7": 16.391444886750826 }, - "vertexSeeds": { - "c1": 7.8411880498404605, - "c2": 7.6053437162698385, - "c3": 7.592197512512483, - "c4": 7.772534822226943, - "c5": 7.7886517526507895, - "c6": 7.621869633617076, - "c7": 7.698798940962821 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289876, + "c3": 9.361997226074896, + "c4": 7.489597780859917, + "c5": 5.617198335644938, + "c6": 3.7447988904299585, + "c7": 1.8723994452149793 }, "rgb": [222, 0, 59] }, @@ -419478,23 +419478,23 @@ "year": 1818, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 14.743633851402578, - "c2": -28.037123369270265, - "c3": 14.332393582708946, - "c4": 4.995536689983794, - "c5": -1.1022656674207383, - "c6": 4.148845084581922, - "c7": -22.663045071539997 + "points": { + "c1": 15.849948891313808, + "c2": -33.93108429659398, + "c3": -36.23862840495497, + "c4": 14.173541788501666, + "c5": -34.17711723588484, + "c6": 36.57014643339281, + "c7": -11.879761384746189 }, - "vertexSeeds": { - "c1": 8.158081363024115, - "c2": 8.156822541434162, - "c3": 8.14998339822218, - "c4": 8.142786972152681, - "c5": 8.154566794879731, - "c6": 8.166276237978122, - "c7": 8.179132093813061 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973701, + "c3": 9.754969949144622, + "c4": 7.8039759593157365, + "c5": 5.852981969486851, + "c6": 3.901987979657965, + "c7": 1.9509939898288855 }, "rgb": [238, 201, 159] }, @@ -419505,23 +419505,23 @@ "year": 1818, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -17.829470005057246, - "c2": 2.9642684003731468, - "c3": -17.32144155905884, - "c4": 10.599590426354876, - "c5": 0.5491903154266318, - "c6": 6.694605891351014, - "c7": 19.75502996043218 + "points": { + "c1": 5.365688030000381, + "c2": -25.189249664697623, + "c3": 23.13257272100881, + "c4": 1.5826168938045804, + "c5": 28.36413743475968, + "c6": -29.92655668590496, + "c7": -29.881342902341537 }, - "vertexSeeds": { - "c1": 10.869479494070022, - "c2": 10.759549808598747, - "c3": 10.810776821849919, - "c4": 10.554129387585087, - "c5": 10.771260717271318, - "c6": 10.966734903373867, - "c7": 10.77798197039217 + "offsets": { + "c1": 18.51132686084142, + "c2": 15.866851595006942, + "c3": 13.222376329172462, + "c4": 10.577901063337983, + "c5": 7.933425797503504, + "c6": 5.2889505316689585, + "c7": 2.6444752658344792 }, "rgb": [86, 146, 138] }, @@ -419532,23 +419532,23 @@ "year": 1818, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 23.1356450659735, - "c2": -6.919141206949234, - "c3": -4.18988651418119, - "c4": 4.615635614247218, - "c5": -16.057176520235167, - "c6": 21.1061581555675, - "c7": 10.873962165960094 + "points": { + "c1": -4.8547629164034625, + "c2": -17.278314073222276, + "c3": 25.395481922338696, + "c4": -11.870859676464836, + "c5": 16.610632648539067, + "c6": 8.895280987975056, + "c7": 20.702311169730876 }, - "vertexSeeds": { - "c1": 4.229324022923209, - "c2": 4.285005328632433, - "c3": 4.540452190040436, - "c4": 4.223583153549245, - "c5": 4.6226336545789755, - "c6": 4.258717161585849, - "c7": 4.528733642872984 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613039, + "c3": 5.524734165510867, + "c4": 4.419787332408696, + "c5": 3.3148404993065244, + "c6": 2.209893666204343, + "c7": 1.1049468331021715 }, "rgb": [86, 146, 138] }, @@ -419559,23 +419559,23 @@ "year": 1818, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -5.986854145779347, - "c2": 22.880506846965556, - "c3": -12.746373086624207, - "c4": 24.952498137041996, - "c5": -18.82227215732663, - "c6": 3.0971307928294856, - "c7": 0.32162537745213626 + "points": { + "c1": 23.76840376826916, + "c2": 13.10939051875205, + "c3": 29.334808679034822, + "c4": -9.831043307952584, + "c5": 28.950648575500033, + "c6": 12.050295571471942, + "c7": -29.15043841267918 }, - "vertexSeeds": { - "c1": 5.902326774073418, - "c2": 5.316740844939405, - "c3": 5.447897900299914, - "c4": 5.356902978501443, - "c5": 5.498422869250016, - "c6": 5.581546803770794, - "c7": 5.890407666203643 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267685, + "c3": 7.050392972723073, + "c4": 5.640314378178461, + "c5": 4.23023578363385, + "c6": 2.820157189089223, + "c7": 1.4100785945446115 }, "rgb": [86, 146, 138] }, @@ -419586,23 +419586,23 @@ "year": 1818, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 22.356847833461316, - "c2": 2.662098422095312, - "c3": -11.990794133372908, - "c4": 30.221178083376614, - "c5": -14.874724123005322, - "c6": -31.05433705306591, - "c7": -30.57878927602312 + "points": { + "c1": 33.91407136949411, + "c2": 16.042600814440156, + "c3": -17.42121668076353, + "c4": -18.358027746237152, + "c5": 31.690882884740276, + "c6": -29.267262715435493, + "c7": 17.25469081257254 }, - "vertexSeeds": { - "c1": 6.328355117175736, - "c2": 6.44041559660421, - "c3": 6.844263779154387, - "c4": 6.567742783033922, - "c5": 6.7110084951059035, - "c6": 6.589827260172409, - "c7": 6.5679907984681405 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359224, + "c3": 8.252427184466024, + "c4": 6.601941747572807, + "c5": 4.951456310679605, + "c6": 3.3009708737864036, + "c7": 1.6504854368932018 }, "rgb": [77, 76, 132] }, @@ -419613,23 +419613,23 @@ "year": 1818, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 10.907072078520024, - "c2": 30.567950375774444, - "c3": -30.866304616166477, - "c4": 34.920780344044275, - "c5": 25.369152480737647, - "c6": -24.87076092047431, - "c7": 24.299200698480092 + "points": { + "c1": -22.771801043747338, + "c2": 6.163000719630553, + "c3": -11.829873099442384, + "c4": 7.304135754092933, + "c5": -13.33753924534987, + "c6": -24.350228765036867, + "c7": 33.766947830780694 }, - "vertexSeeds": { - "c1": 3.2820403829606275, - "c2": 3.2391988811649854, - "c3": 3.3030579079959885, - "c4": 3.110341421301042, - "c5": 3.2684263699589806, - "c6": 3.150120347460673, - "c7": 3.2342918334144675 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.7711511789181715, + "c3": 3.9759593157651363, + "c4": 3.1807674526121112, + "c5": 2.3855755894590858, + "c6": 1.5903837263060507, + "c7": 0.7951918631530254 }, "rgb": [77, 76, 132] }, @@ -419640,23 +419640,23 @@ "year": 1818, "resistanceReported": false, "duration": 27648000, - "curveSeeds": { - "c1": -0.9893349431464955, - "c2": -15.623091872264428, - "c3": 27.471999338758053, - "c4": -29.814595356992946, - "c5": -34.10679646237969, - "c6": 2.861235635879737, - "c7": 15.612222683331957 + "points": { + "c1": 14.188264049082036, + "c2": 28.935134390138373, + "c3": -9.153692369002158, + "c4": 4.623293185767572, + "c5": 1.2131112356539475, + "c6": -32.47643471728263, + "c7": -25.97459085331462 }, - "vertexSeeds": { - "c1": 5.241788735355003, - "c2": 4.923900243103563, - "c3": 5.329713959074814, - "c4": 5.027543431644408, - "c5": 4.9797039647488655, - "c6": 5.044366920685025, - "c7": 5.005513169617208 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262134, + "c3": 6.472491909385108, + "c4": 5.177993527508082, + "c5": 3.883495145631057, + "c6": 2.5889967637540514, + "c7": 1.2944983818770257 }, "rgb": [77, 76, 132] }, @@ -419667,23 +419667,23 @@ "year": 1819, "resistanceReported": false, "duration": 56764800, - "curveSeeds": { - "c1": -44.31323672225081, - "c2": 40.95224769382668, - "c3": -28.05390423878457, - "c4": -69.9455174806333, - "c5": 54.49192761631798, - "c6": 21.402709417990565, - "c7": 7.644798509309894 + "points": { + "c1": 9.91246031173074, + "c2": -42.984556050933264, + "c3": -40.558055205132014, + "c4": 53.478642398126524, + "c5": -52.89065003032823, + "c6": 15.864698520794349, + "c7": -26.589770798304833 }, - "vertexSeeds": { - "c1": 5.632424856334694, - "c2": 5.709793234847026, - "c3": 5.642466930422465, - "c4": 5.664229693150087, - "c5": 5.711404755475393, - "c6": 5.646019580027136, - "c7": 5.700408286754161 + "offsets": { + "c1": 9.611650485436893, + "c2": 8.23855755894588, + "c3": 6.865464632454934, + "c4": 5.49237170596392, + "c5": 4.119278779472974, + "c6": 2.74618585298196, + "c7": 1.373092926491014 }, "rgb": [77, 76, 132] }, @@ -419694,23 +419694,23 @@ "year": 1818, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -27.640643079541857, - "c2": -12.582066953797227, - "c3": 2.7106629692468758, - "c4": 9.421685821906209, - "c5": -20.300052678842817, - "c6": 20.38290330691261, - "c7": 23.12611185527667 + "points": { + "c1": 3.149665987896732, + "c2": -31.989324548579425, + "c3": -8.978862571300812, + "c4": -0.19894767227008003, + "c5": 23.429312820657245, + "c6": 16.42057505442012, + "c7": 14.535901228326892 }, - "vertexSeeds": { - "c1": 6.8272733687591005, - "c2": 6.864366388082795, - "c3": 6.536196655023185, - "c4": 6.644778420836197, - "c5": 6.6701812662405615, - "c6": 6.806943267421607, - "c7": 6.546914903610833 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.902912621359228, + "c3": 8.252427184466027, + "c4": 6.601941747572828, + "c5": 4.951456310679628, + "c6": 3.3009708737863996, + "c7": 1.6504854368931998 }, "rgb": [222, 0, 59] }, @@ -419721,23 +419721,23 @@ "year": 1818, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": 5.183314758182689, - "c2": -20.090203190842963, - "c3": 4.070898431897472, - "c4": -11.548598745736061, - "c5": -12.745206645279177, - "c6": -5.828153530166373, - "c7": -4.108860147475276 + "points": { + "c1": -13.89500892340055, + "c2": 19.94007898085278, + "c3": 15.002306823418419, + "c4": 6.760335573140981, + "c5": 19.675195566251485, + "c6": -20.526604817981656, + "c7": -21.33415090311452 }, - "vertexSeeds": { - "c1": 4.4640418470322505, - "c2": 4.004475849004839, - "c3": 3.725747417232893, - "c4": 3.958589449045805, - "c5": 4.213582839856796, - "c6": 2.6996757593356313, - "c7": 3.7667777233488753 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532593, + "c3": 5.478502080443828, + "c4": 4.382801664355062, + "c5": 3.2871012482662967, + "c6": 2.191400832177531, + "c7": 1.0957004160887656 }, "rgb": [222, 0, 59] }, @@ -419748,23 +419748,23 @@ "year": 1818, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -20.14828489976971, - "c2": -6.566179593513734, - "c3": 30.473035526459626, - "c4": -3.590693075640477, - "c5": 24.621333658682637, - "c6": 11.030007704588968, - "c7": 11.11723599648547 + "points": { + "c1": 26.702219666342536, + "c2": 7.706178554901385, + "c3": 21.538072658869858, + "c4": 21.198740085810314, + "c5": -25.15339724612675, + "c6": -21.906661665973843, + "c7": 22.123487243656207 }, - "vertexSeeds": { - "c1": 10.37880930494939, - "c2": 10.397148386895166, - "c3": 10.694007685464648, - "c4": 10.784724705335991, - "c5": 11.093635890092925, - "c6": 10.062028947139668, - "c7": 10.218897699962909 + "offsets": { + "c1": 18.6084142394822, + "c2": 15.95006934812761, + "c3": 13.291724456772984, + "c4": 10.633379565418396, + "c5": 7.975034674063805, + "c6": 5.3166897827091795, + "c7": 2.6583448913545897 }, "rgb": [58, 15, 49] }, @@ -419775,23 +419775,23 @@ "year": 1818, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 31.50738465445309, - "c2": -14.88145526910813, - "c3": 24.98060742373142, - "c4": 14.557479866262774, - "c5": 23.66530237449696, - "c6": -9.405778912394286, - "c7": 19.6737054309962 + "points": { + "c1": -6.173073736966575, + "c2": 7.766760010699407, + "c3": 2.5089255075779775, + "c4": 10.6532242646145, + "c5": -1.5147788261402155, + "c6": -14.824517952616386, + "c7": 6.687819951202961 }, - "vertexSeeds": { - "c1": 7.083805610498681, - "c2": 7.102239962431543, - "c3": 7.073352220530804, - "c4": 7.107611462857422, - "c5": 7.091470264804532, - "c6": 7.087773103168193, - "c7": 7.073592306345957 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761491, + "c3": 8.4835876098013, + "c4": 6.786870087841106, + "c5": 5.090152565880577, + "c6": 3.3934350439203844, + "c7": 1.6967175219601922 }, "rgb": [222, 0, 59] }, @@ -419802,23 +419802,23 @@ "year": 1819, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": 4.221331287408326, - "c2": 33.36108306789808, - "c3": -36.49941567268188, - "c4": -23.599806688810606, - "c5": -2.0677371630446757, - "c6": 19.607217171917213, - "c7": -15.19335830354742 + "points": { + "c1": -54.68277889727309, + "c2": 34.67862592285324, + "c3": 35.47418143169263, + "c4": -44.2103989716975, + "c5": 1.7164956273590448, + "c6": -43.109334829200385, + "c7": 5.269677528813347 }, - "vertexSeeds": { - "c1": 4.491642006967122, - "c2": 4.403698676838046, - "c3": 4.352468716038838, - "c4": 4.247301616691335, - "c5": 4.5331487103639745, - "c6": 4.486475300846121, - "c7": 4.607610785613507 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613039, + "c3": 5.524734165510867, + "c4": 4.419787332408696, + "c5": 3.3148404993065244, + "c6": 2.209893666204343, + "c7": 1.1049468331021715 }, "rgb": [238, 201, 159] }, @@ -419829,23 +419829,23 @@ "year": 1819, "resistanceReported": false, "duration": 60393600, - "curveSeeds": { - "c1": -65.18719989542753, - "c2": 47.77068306013496, - "c3": 69.2089801837147, - "c4": 5.192121679247705, - "c5": -1.3630149285121433, - "c6": -8.600000930742468, - "c7": 50.88545469729293 + "points": { + "c1": 75.96342014944771, + "c2": -4.979286447445858, + "c3": 62.22714395166925, + "c4": -0.36617132330599134, + "c5": -58.500780286816045, + "c6": -29.455509829566154, + "c7": -50.22503824533558 }, - "vertexSeeds": { - "c1": 6.863505513775246, - "c2": 7.481635533981515, - "c3": 7.317495624418056, - "c4": 7.249839379815311, - "c5": 7.514182842441235, - "c6": 7.508832338796839, - "c7": 7.30988241654265 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -419856,23 +419856,23 @@ "year": 1818, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 14.207608337390717, - "c2": -8.201691555332882, - "c3": 0.3011463228669662, - "c4": 0.5324229886107652, - "c5": -10.3569474224673, - "c6": 25.140318536023166, - "c7": 15.987062087225112 + "points": { + "c1": 25.345202725099718, + "c2": 23.763396192821837, + "c3": -29.105587456373367, + "c4": 0.21927800410301046, + "c5": 17.33593662097455, + "c6": 17.944898764371757, + "c7": -8.033938856362454 }, - "vertexSeeds": { - "c1": 4.521972193332041, - "c2": 4.903445799245468, - "c3": 4.854919880378472, - "c4": 4.5485426218551455, - "c5": 4.8967562231935595, - "c6": 4.7217893208556445, - "c7": 4.586370887750533 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256593, + "c3": 5.894590846047156, + "c4": 4.715672676837729, + "c5": 3.5367545076282916, + "c6": 2.3578363384188643, + "c7": 1.178918169209437 }, "rgb": [86, 146, 138] }, @@ -419883,23 +419883,23 @@ "year": 1818, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -15.196992072168051, - "c2": 22.569877317960945, - "c3": 13.773561386786099, - "c4": -1.746230133393528, - "c5": 20.596353871468928, - "c6": -18.920596611245784, - "c7": -5.435981980568172 + "points": { + "c1": -14.902042960124188, + "c2": -19.397805204274256, + "c3": 7.231136108614059, + "c4": 1.0045285120598777, + "c5": 18.791956481465142, + "c6": 29.917522336349677, + "c7": 10.276010181500986 }, - "vertexSeeds": { - "c1": 4.785766138914461, - "c2": 4.935485842982604, - "c3": 4.941797358917974, - "c4": 4.931244527210521, - "c5": 5.100123759855978, - "c6": 4.78181369200994, - "c7": 5.057912404678525 + "offsets": { + "c1": 8.867313915857606, + "c2": 7.600554785020803, + "c3": 6.333795654184001, + "c4": 5.0670365233471975, + "c5": 3.8002773925104014, + "c6": 2.533518261673606, + "c7": 1.266759130836803 }, "rgb": [58, 15, 49] }, @@ -419910,23 +419910,23 @@ "year": 1818, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -25.614097897158928, - "c2": 14.433322109345177, - "c3": 7.053767047201738, - "c4": 15.216125656261127, - "c5": 29.59631917761002, - "c6": 9.33175614720345, - "c7": -1.549814933004665 + "points": { + "c1": -10.90073615101987, + "c2": 0.37855546645217686, + "c3": 27.778773187690483, + "c4": 11.24598092908225, + "c5": -4.2511894630526825, + "c6": -22.681356034826372, + "c7": -7.700208127880739 }, - "vertexSeeds": { - "c1": 5.496854951908398, - "c2": 5.5199588628041685, - "c3": 5.575673395666606, - "c4": 5.505302208535386, - "c5": 5.486950152954815, - "c6": 5.53570688072917, - "c7": 5.57108090131163 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.9889042995839485, + "c3": 6.657420249653247, + "c4": 5.325936199722633, + "c5": 3.9944521497919303, + "c6": 2.6629680998613163, + "c7": 1.3314840499307021 }, "rgb": [222, 0, 59] }, @@ -419937,23 +419937,23 @@ "year": 1818, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 0.25603770508866575, - "c2": 9.053671743852107, - "c3": 34.90554031226036, - "c4": -35.92416461671788, - "c5": -32.98344866427482, - "c6": 36.913822739502805, - "c7": -0.21506098264201512 + "points": { + "c1": -30.51569688739849, + "c2": -7.9475315474168795, + "c3": 13.458407905205206, + "c4": -31.17559303388304, + "c5": -40.33057521884432, + "c6": 13.1504906046599, + "c7": 11.634273357353123 }, - "vertexSeeds": { - "c1": 7.047818771799013, - "c2": 7.473882218361268, - "c3": 7.505358340792789, - "c4": 7.3138029546914, - "c5": 7.5493335196953595, - "c6": 6.864053123902226, - "c7": 6.839383547794408 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -419964,23 +419964,23 @@ "year": 1818, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 23.01470571418506, - "c2": -25.27557044228597, - "c3": 1.6357388386912568, - "c4": -21.24652059110184, - "c5": 10.658559594562224, - "c6": -13.880096400257901, - "c7": -10.883931548029047 + "points": { + "c1": 24.701086036713903, + "c2": 29.90413782864264, + "c3": -25.649322567466044, + "c4": 28.687548384325666, + "c5": -29.599769660194873, + "c6": 3.2254521555492275, + "c7": -13.962300415494617 }, - "vertexSeeds": { - "c1": 10.587694100578293, - "c2": 9.721629724437829, - "c3": 11.230545561539808, - "c4": 10.09772169538019, - "c5": 10.060958906573342, - "c6": 11.114314230665371, - "c7": 11.117058843571284 + "offsets": { + "c1": 18.867313915857604, + "c2": 16.17198335644938, + "c3": 13.476652797041135, + "c4": 10.781322237632914, + "c5": 8.08599167822469, + "c6": 5.390661118816468, + "c7": 2.695330559408234 }, "rgb": [86, 146, 138] }, @@ -419991,23 +419991,23 @@ "year": 1818, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -14.644571338476666, - "c2": 13.653120529665685, - "c3": -22.816537298179686, - "c4": 1.423658852497276, - "c5": 31.46715330040896, - "c6": -30.43585059534783, - "c7": -20.911998598474497 + "points": { + "c1": 0.7300200581198268, + "c2": -30.09542171602121, + "c3": -20.8939295354539, + "c4": -15.274915576751763, + "c5": -19.06892594710152, + "c6": 33.51259129106264, + "c7": 15.984993986793171 }, - "vertexSeeds": { - "c1": 9.896065329842003, - "c2": 10.74302787311626, - "c3": 10.164196752162757, - "c4": 11.36416246084734, - "c5": 10.706335929510114, - "c6": 10.775451119272738, - "c7": 10.055222558729064 + "offsets": { + "c1": 19.093851132686083, + "c2": 16.366158113730922, + "c3": 13.638465094775782, + "c4": 10.910772075820622, + "c5": 8.183079056865461, + "c6": 5.4553860379103005, + "c7": 2.727693018955161 }, "rgb": [222, 0, 59] }, @@ -420018,23 +420018,23 @@ "year": 1818, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 2.206348382730546, - "c2": 28.865939132067908, - "c3": 24.10281887982702, - "c4": 33.19193693410176, - "c5": 21.692376661492233, - "c6": -18.17032808485708, - "c7": -1.4407913372572736 + "points": { + "c1": -5.103667989329061, + "c2": -0.6525872334580924, + "c3": 11.156112038641432, + "c4": -9.573019457741879, + "c5": 29.292876381544488, + "c6": 13.430923903752728, + "c7": 26.554272703240656 }, - "vertexSeeds": { - "c1": 6.026572742066359, - "c2": 5.1069121700998, - "c3": 5.792511788495074, - "c4": 5.5781761038324795, - "c5": 5.541890699572844, - "c6": 5.516179206900263, - "c7": 5.558776479808064 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.71012482662968, + "c3": 7.258437355524734, + "c4": 5.806749884419787, + "c5": 4.35506241331484, + "c6": 2.9033749422098936, + "c7": 1.4516874711049468 }, "rgb": [58, 15, 49] }, @@ -420045,23 +420045,23 @@ "year": 1818, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 33.57299188797302, - "c2": 10.364376020583705, - "c3": -5.909349210656213, - "c4": 26.41310011305815, - "c5": -14.24724679673897, - "c6": 16.236233480418953, - "c7": -33.40820844246284 + "points": { + "c1": -30.30349623508419, + "c2": 25.454833079825697, + "c3": -24.335245107963047, + "c4": 12.794646406065183, + "c5": 3.9690733174958055, + "c6": -35.163474478542064, + "c7": 1.1026651432371253 }, - "vertexSeeds": { - "c1": 7.7450879980142044, - "c2": 7.606528611602316, - "c3": 7.572904184357576, - "c4": 7.6842285110325, - "c5": 7.685159560736541, - "c6": 7.714473219894269, - "c7": 7.621714752484471 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667129007, + "c3": 9.269533055940862, + "c4": 7.41562644475265, + "c5": 5.561719833564504, + "c6": 3.707813222376358, + "c7": 1.8539066111882125 }, "rgb": [77, 76, 132] }, @@ -420072,23 +420072,23 @@ "year": 1818, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -30.381447635568893, - "c2": 0.8902969963064749, - "c3": -17.19701393744149, - "c4": -0.5960027332241395, - "c5": -23.14450282107433, - "c6": 22.11361964530073, - "c7": 3.7975098999501995 + "points": { + "c1": 37.847783030292824, + "c2": 3.1611544984290347, + "c3": -19.661410307892314, + "c4": -23.594051998693587, + "c5": -28.310665914190594, + "c6": 33.13133776464263, + "c7": 13.335688675983718 }, - "vertexSeeds": { - "c1": 8.62092331565784, - "c2": 8.539599939485564, - "c3": 8.530441514734884, - "c4": 8.896192067821815, - "c5": 9.066490720556247, - "c6": 8.636669970010121, - "c7": 8.918323343888781 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507635, + "c3": 11.211280628756349, + "c4": 8.969024503005084, + "c5": 6.726768377253817, + "c6": 4.484512251502532, + "c7": 2.242256125751266 }, "rgb": [238, 201, 159] }, @@ -420099,23 +420099,23 @@ "year": 1818, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 18.226671633815407, - "c2": -10.36572975301107, - "c3": -11.913518289253634, - "c4": -10.272730490670433, - "c5": 4.340333175769302, - "c6": -10.150999976445913, - "c7": -36.07045959726936 + "points": { + "c1": -21.712141742484775, + "c2": -33.35422885328788, + "c3": -7.795805233281172, + "c4": -34.265107917301194, + "c5": 40.5527468996428, + "c6": -22.46722631366752, + "c7": 35.65085697305601 }, - "vertexSeeds": { - "c1": 6.121701920910691, - "c2": 6.344455053158891, - "c3": 6.346366412176827, - "c4": 6.1222079856302845, - "c5": 6.123277768670618, - "c6": 6.344237556929567, - "c7": 6.329692571968357 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313437, + "c3": 7.651410078594552, + "c4": 6.121128062875625, + "c5": 4.590846047156739, + "c6": 3.0605640314378126, + "c7": 1.5302820157189265 }, "rgb": [86, 146, 138] }, @@ -420126,23 +420126,23 @@ "year": 1819, "resistanceReported": false, "duration": 29462400, - "curveSeeds": { - "c1": 30.5557448984477, - "c2": 32.55944903967426, - "c3": -16.554378287608497, - "c4": -36.15491684251119, - "c5": 29.8448914837918, - "c6": 36.96914119291117, - "c7": 0.14259549326319387 + "points": { + "c1": 26.86581697814981, + "c2": -18.069535587399535, + "c3": -17.3132199004788, + "c4": 20.270792151320236, + "c5": -15.0624301642491, + "c6": -25.263353739114926, + "c7": 8.87277348084644 }, - "vertexSeeds": { - "c1": 4.167915312005272, - "c2": 4.189854739843719, - "c3": 4.286745148955303, - "c4": 4.172619414268698, - "c5": 4.328258251565217, - "c6": 4.3042829198534465, - "c7": 4.403342849468269 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170597, + "c3": 5.270457697642166, + "c4": 4.216366158113734, + "c5": 3.1622746185853026, + "c6": 2.1081830790568628, + "c7": 1.0540915395284398 }, "rgb": [58, 15, 49] }, @@ -420153,23 +420153,23 @@ "year": 1818, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -4.701053898985737, - "c2": -18.48058729131902, - "c3": -19.539090179053737, - "c4": -5.466699703572086, - "c5": 23.976442502010954, - "c6": 14.326211469921589, - "c7": -14.353405630024657 + "points": { + "c1": 30.023512809563037, + "c2": 0.8909945997434789, + "c3": -22.099357285590155, + "c4": 8.956724274172593, + "c5": 16.369610971320775, + "c6": 16.551269576901618, + "c7": 31.763000909642763 }, - "vertexSeeds": { - "c1": 3.8421273159200187, - "c2": 4.026262304299632, - "c3": 4.147864147014368, - "c4": 4.114387431420991, - "c5": 3.592668045782303, - "c6": 4.152155548797846, - "c7": 3.8493883619422706 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687933, + "c3": 4.993065187239945, + "c4": 3.9944521497919556, + "c5": 2.9958391123439667, + "c6": 1.9972260748959778, + "c7": 0.9986130374479889 }, "rgb": [77, 76, 132] }, @@ -420180,23 +420180,23 @@ "year": 1818, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -3.8314664741195017, - "c2": -17.736223241392054, - "c3": 27.03826873648741, - "c4": 27.812027898401745, - "c5": 9.227344597996712, - "c6": 19.848802712043188, - "c7": 12.541735827207518 + "points": { + "c1": 23.135457780676184, + "c2": -18.877383986649583, + "c3": -33.253338049173045, + "c4": 15.369985650173817, + "c5": 22.021677506888274, + "c6": -26.50929421613724, + "c7": -9.690149848658056 }, - "vertexSeeds": { - "c1": 7.69264108171826, - "c2": 7.6022512878818445, - "c3": 7.060024685130496, - "c4": 7.47475166192768, - "c5": 7.049337673862243, - "c6": 7.082012164968246, - "c7": 7.6822324700783025 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088762, + "c3": 9.246417013407298, + "c4": 7.397133610725835, + "c5": 5.54785020804439, + "c6": 3.698566805362927, + "c7": 1.8492834026814635 }, "rgb": [222, 0, 59] }, @@ -420207,23 +420207,23 @@ "year": 1818, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 30.196415194775653, - "c2": 3.6303427176282597, - "c3": 33.27969846501037, - "c4": 30.5547754873579, - "c5": -14.257347196760236, - "c6": 22.67202271166459, - "c7": 11.80555213000094 + "points": { + "c1": 22.71633814950973, + "c2": 26.541496023912103, + "c3": 31.295612594931043, + "c4": 8.297585576287794, + "c5": -9.182167835113503, + "c6": -38.720653771510065, + "c7": -13.314383034643008 }, - "vertexSeeds": { - "c1": 9.372413149673571, - "c2": 9.413793783197569, - "c3": 9.48479798017984, - "c4": 9.386714431118568, - "c5": 9.319036564053576, - "c6": 9.501367572851123, - "c7": 9.348587957836333 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.64771151178917, + "c3": 11.373092926490964, + "c4": 9.098474341192832, + "c5": 6.823855755894623, + "c6": 4.549237170596416, + "c7": 2.274618585298208 }, "rgb": [222, 0, 59] }, @@ -420234,23 +420234,23 @@ "year": 1818, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -3.6668968935761583, - "c2": 0.28979369405575994, - "c3": -5.4347252248140485, - "c4": -28.362360559634304, - "c5": -14.312343659142968, - "c6": 18.98461781413669, - "c7": 12.652704487791965 + "points": { + "c1": -3.242632138393809, + "c2": -21.911845217697685, + "c3": -31.83853582948769, + "c4": -24.56619996104832, + "c5": 8.694799970868146, + "c6": 25.739173077299363, + "c7": 3.540983991493462 }, - "vertexSeeds": { - "c1": 7.004873842819315, - "c2": 7.195727185021299, - "c3": 7.5949965867476745, - "c4": 7.5315441531047975, - "c5": 7.415572798300546, - "c6": 6.624632534273424, - "c7": 7.382992937765652 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289876, + "c3": 9.3619972260749, + "c4": 7.489597780859921, + "c5": 5.617198335644944, + "c6": 3.7447988904299665, + "c7": 1.8723994452149886 }, "rgb": [238, 201, 159] }, @@ -420261,23 +420261,23 @@ "year": 1818, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -8.896579670169547, - "c2": 10.412874168085331, - "c3": 15.810723120691918, - "c4": 8.65719636051206, - "c5": -12.134481683042619, - "c6": -24.923828282723907, - "c7": -22.812890926824785 + "points": { + "c1": 9.300257971795887, + "c2": -24.25548863105273, + "c3": 10.522949978909573, + "c4": -21.769602397320185, + "c5": 4.365647908349615, + "c6": -10.445831019585345, + "c7": 14.236143046223603 }, - "vertexSeeds": { - "c1": 8.40432428083588, - "c2": 8.467994149292641, - "c3": 8.486156475072978, - "c4": 8.44819354656121, - "c5": 8.479966280342044, - "c6": 8.468973412093934, - "c7": 8.454049460161063 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697655, + "c3": 10.17105871474806, + "c4": 8.136846971798377, + "c5": 6.102635228848783, + "c6": 4.068423485899189, + "c7": 2.0342117429495943 }, "rgb": [77, 76, 132] }, @@ -420288,23 +420288,23 @@ "year": 1818, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 5.5983519720043695, - "c2": 16.965511806975123, - "c3": -13.113306031282557, - "c4": 1.6344609001207537, - "c5": 24.57324401112978, - "c6": -13.350406335323962, - "c7": -11.601109809035972 + "points": { + "c1": -12.419343783561136, + "c2": -9.679957471255385, + "c3": 11.836828713282138, + "c4": 10.963129889052603, + "c5": 25.409984042664917, + "c6": -22.590452900692036, + "c7": 6.258289137769367 }, - "vertexSeeds": { - "c1": 7.033174089007909, - "c2": 7.412835332343665, - "c3": 7.199263818933941, - "c4": 7.476261007827104, - "c5": 7.226637815652687, - "c6": 7.51831172906853, - "c7": 7.0408756588604255 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -420315,23 +420315,23 @@ "year": 1818, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 9.12062425499419, - "c2": -14.831492656162423, - "c3": 11.771637908528149, - "c4": 19.263070045373404, - "c5": -13.536568311647631, - "c6": 1.1300314314337534, - "c7": -18.952197912750805 + "points": { + "c1": 9.835468534426894, + "c2": -18.811762662796646, + "c3": -1.9138753273347966, + "c4": -19.930748754076607, + "c5": -19.477803375525365, + "c6": -8.634367604103236, + "c7": 7.132597365981244 }, - "vertexSeeds": { - "c1": 7.193304890516001, - "c2": 7.1955783112885685, - "c3": 7.191020388093354, - "c4": 7.1817526178591145, - "c5": 7.18389370721948, - "c6": 7.187884615471435, - "c7": 7.203538332682826 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.3190013869626, + "c3": 8.59916782246889, + "c4": 6.879334257975182, + "c5": 5.159500693481129, + "c6": 3.4396671289874194, + "c7": 1.7198335644937097 }, "rgb": [77, 76, 132] }, @@ -420342,23 +420342,23 @@ "year": 1818, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 16.867834105071772, - "c2": -24.367576265943494, - "c3": -21.308461181378096, - "c4": -13.276605322849672, - "c5": 0.8393351717907223, - "c6": -7.489496037146129, - "c7": 4.165401556492036 + "points": { + "c1": 19.41627643797446, + "c2": 14.198405009846049, + "c3": 30.038403659133067, + "c4": -16.78682177519017, + "c5": 11.337882936031292, + "c6": -8.682530783399542, + "c7": 8.804486060957096 }, - "vertexSeeds": { - "c1": 6.359251075366991, - "c2": 6.468091456208426, - "c3": 6.446446206807773, - "c4": 6.425272882775666, - "c5": 6.419403710504519, - "c6": 6.417820022150089, - "c7": 6.403537563982715 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434163, + "c3": 7.720758206195085, + "c4": 6.176606564956109, + "c5": 4.632454923717031, + "c6": 3.0883032824780545, + "c7": 1.5441516412390783 }, "rgb": [58, 15, 49] }, @@ -420369,23 +420369,23 @@ "year": 1818, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -14.857235316062319, - "c2": 7.0204379390128615, - "c3": -17.72425549975712, - "c4": -6.9847822510962665, - "c5": 19.730181766772965, - "c6": -24.05151048666876, - "c7": -0.8276042397843462 + "points": { + "c1": 10.557184288268807, + "c2": 7.426420472438998, + "c3": 24.438258565578813, + "c4": -21.359584799197368, + "c5": 6.61950614285108, + "c6": 5.211679498090916, + "c7": 19.724262828682804 }, - "vertexSeeds": { - "c1": 4.609629000142655, - "c2": 4.240832906981263, - "c3": 4.424387957846093, - "c4": 4.567360385823796, - "c5": 4.504443747787065, - "c6": 4.5684759653256215, - "c7": 4.585029447953403 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613039, + "c3": 5.524734165510867, + "c4": 4.419787332408696, + "c5": 3.3148404993065244, + "c6": 2.209893666204343, + "c7": 1.1049468331021715 }, "rgb": [222, 0, 59] }, @@ -420396,23 +420396,23 @@ "year": 1819, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 29.890593545282783, - "c2": -22.64907959665533, - "c3": -16.774664414322405, - "c4": -27.13929887153315, - "c5": -14.544993439058757, - "c6": 15.809088438057316, - "c7": 33.387527584705495 + "points": { + "c1": -26.378247792064485, + "c2": 39.60209637770035, + "c3": 17.983928702471225, + "c4": -11.603472063553504, + "c5": -6.638887338671793, + "c6": -21.095882166323538, + "c7": -32.352606804238576 }, - "vertexSeeds": { - "c1": 4.4133685551667625, - "c2": 4.255422736701142, - "c3": 4.745874149511489, - "c4": 4.7995985661300855, - "c5": 4.6309310540533835, - "c6": 4.683420728442104, - "c7": 4.601307711259038 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216367, + "c3": 5.8714748035136415, + "c4": 4.697179842810909, + "c5": 3.5228848821081833, + "c6": 2.3485899214054577, + "c7": 1.1742949607027255 }, "rgb": [86, 146, 138] }, @@ -420423,23 +420423,23 @@ "year": 1819, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 28.273853104359745, - "c2": 2.573594891363669, - "c3": -39.07959233917154, - "c4": 19.72737508892363, - "c5": -22.30663640484918, - "c6": 14.47456319443046, - "c7": 2.2006655061835048 + "points": { + "c1": 4.957211691336845, + "c2": 23.47160383304933, + "c3": 13.088586891595007, + "c4": -36.21992872532068, + "c5": -24.03926198241457, + "c6": 34.624334311202105, + "c7": -28.130926071668437 }, - "vertexSeeds": { - "c1": 4.60762296235957, - "c2": 4.516839979457313, - "c3": 3.943996652634167, - "c4": 3.848076647490565, - "c5": 4.274421446381526, - "c6": 3.9086684756000767, - "c7": 4.4215192510502 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377256, + "c3": 5.9639389736477115, + "c4": 4.771151178918168, + "c5": 3.578363384188628, + "c6": 2.3855755894590875, + "c7": 1.1927877947295438 }, "rgb": [58, 15, 49] }, @@ -420450,23 +420450,23 @@ "year": 1818, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 2.85823110632478, - "c2": -29.092361257133945, - "c3": -15.053009621805543, - "c4": 25.240407721057196, - "c5": -32.502099691631315, - "c6": -27.792982471442336, - "c7": -30.835587106623763 + "points": { + "c1": 23.02677646590393, + "c2": -28.6496726138503, + "c3": -13.959707682002968, + "c4": -26.57345042520699, + "c5": -24.64390149702332, + "c6": -4.836584170539108, + "c7": 1.3183393354620065 }, - "vertexSeeds": { - "c1": 9.289897752299913, - "c2": 9.29698794683173, - "c3": 9.35413776684325, - "c4": 9.31960461682159, - "c5": 9.31973679253782, - "c6": 9.324597785585182, - "c7": 9.322962378525949 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.39805825242725, + "c3": 11.165048543689226, + "c4": 8.932038834951426, + "c5": 6.699029126213625, + "c6": 4.466019417475824, + "c7": 2.233009708737801 }, "rgb": [77, 76, 132] }, @@ -420477,23 +420477,23 @@ "year": 1818, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -19.117510024159486, - "c2": 27.601192265056643, - "c3": 29.800542293532647, - "c4": -12.964230005290194, - "c5": 5.806195255627696, - "c6": -6.58736519616706, - "c7": 8.799836807832929 + "points": { + "c1": 8.262197896991573, + "c2": 15.003693010842305, + "c3": 6.737975066847014, + "c4": -23.514321167700395, + "c5": -29.630190642162948, + "c6": -14.992934091517043, + "c7": -1.5730932446025285 }, - "vertexSeeds": { - "c1": 6.49145515746418, - "c2": 6.587171269233229, - "c3": 6.833957624372974, - "c4": 6.934409146351022, - "c5": 6.556377230365441, - "c6": 6.615582602961184, - "c7": 6.29608478785893 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399453, + "c3": 8.275543226999535, + "c4": 6.620434581599636, + "c5": 4.965325936199717, + "c6": 3.310217290799818, + "c7": 1.6551086453999186 }, "rgb": [238, 201, 159] }, @@ -420504,23 +420504,23 @@ "year": 1819, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -32.948434670327224, - "c2": -5.199135940745503, - "c3": 20.5128555142523, - "c4": -26.025118488782574, - "c5": -10.717567303456686, - "c6": -33.41730444653666, - "c7": -24.041410163562084 + "points": { + "c1": 28.459443985280487, + "c2": 6.033823035561191, + "c3": -6.514448095948332, + "c4": -20.98030087984707, + "c5": -15.934569521203247, + "c6": -34.73606114519182, + "c7": 5.243958586939776 }, - "vertexSeeds": { - "c1": 3.3818675425437936, - "c2": 3.1487753879164395, - "c3": 3.525364886526202, - "c4": 3.2638411584076508, - "c5": 3.302838653713109, - "c6": 3.221619639701032, - "c7": 3.523498462595753 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [77, 76, 132] }, @@ -420531,23 +420531,23 @@ "year": 1818, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 18.45709567474096, - "c2": 19.35208699094046, - "c3": -11.777389885115396, - "c4": -19.124919279642306, - "c5": -6.910784392231609, - "c6": -16.656675218655803, - "c7": 7.893638604113644 + "points": { + "c1": -27.56363987698743, + "c2": -24.228330424101312, + "c3": 7.661616599792946, + "c4": 9.950305119428084, + "c5": 8.522412191531995, + "c6": 27.628477071411194, + "c7": -2.3432253981479825 }, - "vertexSeeds": { - "c1": 5.633361366141, - "c2": 5.633301609819845, - "c3": 5.623958539565026, - "c4": 5.632162814287961, - "c5": 5.621968121618456, - "c6": 5.63275775539565, - "c7": 5.618967849875318 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704348, + "c3": 6.726768377253891, + "c4": 5.381414701802899, + "c5": 4.036061026352441, + "c6": 2.6907073509014494, + "c7": 1.3453536754509923 }, "rgb": [77, 76, 132] }, @@ -420558,23 +420558,23 @@ "year": 1818, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 17.903376915475796, - "c2": 2.4778578590736657, - "c3": 27.938207733072794, - "c4": -8.955140209098111, - "c5": -24.619171245501523, - "c6": 11.62495698120874, - "c7": -0.9853924946758603 + "points": { + "c1": -29.180874314259153, + "c2": 12.518902259930293, + "c3": 2.6423126169458513, + "c4": 16.54319968211764, + "c5": -28.317078543739868, + "c6": 12.06563019824737, + "c7": -17.466306499987716 }, - "vertexSeeds": { - "c1": 6.481914455413383, - "c2": 6.479100304518875, - "c3": 6.470941762003736, - "c4": 6.488893431722681, - "c5": 6.4802189059042865, - "c6": 6.475020385989321, - "c7": 6.472326425198035 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474078, + "c3": 7.743874248728706, + "c4": 6.195099398982718, + "c5": 4.646324549237347, + "c6": 3.097549699491359, + "c7": 1.5487748497459877 }, "rgb": [238, 201, 159] }, @@ -420585,23 +420585,23 @@ "year": 1818, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -5.380836967742987, - "c2": -2.994220582689408, - "c3": 30.83741839326671, - "c4": 23.086604321347792, - "c5": 9.884344849469905, - "c6": 25.280597563753084, - "c7": -5.588773458159693 + "points": { + "c1": 10.300073877017034, + "c2": -3.4423774895914825, + "c3": 8.317692641084044, + "c4": 7.184084916427629, + "c5": -25.413802003507083, + "c6": -32.2513658133111, + "c7": 7.370645687713164 }, - "vertexSeeds": { - "c1": 9.679012020240826, - "c2": 10.092635656652838, - "c3": 10.159554734910152, - "c4": 9.958635313339022, - "c5": 9.636407344627768, - "c6": 9.488910539954782, - "c7": 10.093380876921378 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [222, 0, 59] }, @@ -420612,23 +420612,23 @@ "year": 1818, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -8.933851514884871, - "c2": 8.608749953050797, - "c3": -17.97657839452853, - "c4": 14.128881255357314, - "c5": 2.9343830025860385, - "c6": -30.21682466581851, - "c7": -24.665905758042342 + "points": { + "c1": 27.516337393667293, + "c2": -5.026355717207409, + "c3": -16.982789297507153, + "c4": -0.6270783289104358, + "c5": 0.8761564405566702, + "c6": -7.117695410840877, + "c7": 20.702219091434195 }, - "vertexSeeds": { - "c1": 10.177619377799239, - "c2": 7.9681885345016905, - "c3": 9.321408866006157, - "c4": 9.003531819978754, - "c5": 10.3340141626222, - "c6": 9.92017384748393, - "c7": 9.679909176786495 + "offsets": { + "c1": 17.60517799352751, + "c2": 15.090152565880727, + "c3": 12.575127138233933, + "c4": 10.060101710587146, + "c5": 7.545076282940356, + "c6": 5.0300508552935685, + "c7": 2.5150254276467807 }, "rgb": [58, 15, 49] }, @@ -420639,23 +420639,23 @@ "year": 1819, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 7.206680442269231, - "c2": -32.06149604580091, - "c3": -2.0784346976033774, - "c4": -16.510506213478944, - "c5": -1.162024204988498, - "c6": -29.81962201384864, - "c7": 21.232742380613487 + "points": { + "c1": -1.6611881314970276, + "c2": 20.759578755467224, + "c3": 37.10579540576378, + "c4": 23.73258966827349, + "c5": 28.774942767009726, + "c6": 36.71368853167592, + "c7": -28.678433148198767 }, - "vertexSeeds": { - "c1": 4.426396182727849, - "c2": 4.301382959356478, - "c3": 4.232605235486955, - "c4": 4.436892035062066, - "c5": 4.355231784896058, - "c6": 4.613044345622381, - "c7": 4.501002402028808 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613039, + "c3": 5.524734165510867, + "c4": 4.419787332408696, + "c5": 3.3148404993065244, + "c6": 2.209893666204343, + "c7": 1.1049468331021715 }, "rgb": [77, 76, 132] }, @@ -420666,23 +420666,23 @@ "year": 1818, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 4.1048184135983306, - "c2": 0.05690359199492434, - "c3": -3.672013733676039, - "c4": 0.27160921393198123, - "c5": 16.179614875651566, - "c6": -15.351885015864301, - "c7": 1.1798203472526936 + "points": { + "c1": 22.414665250784914, + "c2": 17.806275519070496, + "c3": 23.93506064889258, + "c4": 33.79641669757338, + "c5": -15.789886835837674, + "c6": -10.19737081863629, + "c7": -23.24292525626676 }, - "vertexSeeds": { - "c1": 7.198299451225539, - "c2": 6.607512423468352, - "c3": 6.4143530469347905, - "c4": 6.538127360925104, - "c5": 6.063217716682147, - "c6": 6.117399435075554, - "c7": 6.638555650253878 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083218, + "c3": 8.668515950069352, + "c4": 6.9348127600554745, + "c5": 5.201109570041606, + "c6": 3.4674063800277373, + "c7": 1.7337031900138686 }, "rgb": [77, 76, 132] }, @@ -420693,23 +420693,23 @@ "year": 1819, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 19.797449044691668, - "c2": 16.071318384230665, - "c3": 10.32419874952491, - "c4": 30.225577433954278, - "c5": 30.885435825379012, - "c6": 14.251346585530044, - "c7": -27.668795316841525 + "points": { + "c1": 23.721127162124553, + "c2": -8.988911141441406, + "c3": -21.0689204900433, + "c4": -32.49263992246703, + "c5": 8.193731856993026, + "c6": -7.891888755785359, + "c7": -1.971492442815368 }, - "vertexSeeds": { - "c1": 3.25673617960463, - "c2": 3.4247224631683557, - "c3": 3.172069847892154, - "c4": 3.533961089494928, - "c5": 3.3659018649100374, - "c6": 3.334401761596142, - "c7": 3.4656860778038627 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [77, 76, 132] }, @@ -420720,23 +420720,23 @@ "year": 1819, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 2.142933967956374, - "c2": -1.756434691438784, - "c3": 37.306384507050524, - "c4": 26.36613367048809, - "c5": -31.938658511672532, - "c6": 10.364316120863322, - "c7": 18.09576754913698 + "points": { + "c1": -11.106053963685081, + "c2": -17.074184690967808, + "c3": 11.792662220547108, + "c4": -16.470584501669485, + "c5": -33.63257024801523, + "c6": 13.287220378982198, + "c7": 4.805075708642761 }, - "vertexSeeds": { - "c1": 9.708329084509305, - "c2": 9.656432164098899, - "c3": 10.167104002165072, - "c4": 10.110046060659755, - "c5": 9.696870255187378, - "c6": 9.858007561409513, - "c7": 10.243041310635599 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317599, + "c3": 12.251502542764705, + "c4": 9.801202034211752, + "c5": 7.3509015256587995, + "c6": 4.900601017105876, + "c7": 2.450300508552952 }, "rgb": [238, 201, 159] }, @@ -420747,23 +420747,23 @@ "year": 1819, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -19.81576859932727, - "c2": 19.701914724629894, - "c3": 5.6087854782187705, - "c4": 1.9013460002522322, - "c5": -4.183737600752124, - "c6": -9.81007267883087, - "c7": 29.010862870426195 + "points": { + "c1": -8.393906009081267, + "c2": 11.94442958856908, + "c3": -0.6021801566506468, + "c4": 3.3230293726847577, + "c5": 30.883294647450093, + "c6": 28.078903440782334, + "c7": -18.558410363304027 }, - "vertexSeeds": { - "c1": 8.525505879926099, - "c2": 8.755033079129838, - "c3": 8.366765696836348, - "c4": 9.083602618448376, - "c5": 9.039030878398469, - "c6": 8.580389702912674, - "c7": 9.485291521679997 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909847, + "c3": 11.442441054091539, + "c4": 9.153952843273228, + "c5": 6.86546463245493, + "c6": 4.576976421636621, + "c7": 2.2884882108183104 }, "rgb": [222, 0, 59] }, @@ -420774,23 +420774,23 @@ "year": 1818, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -27.598867632876782, - "c2": -8.091524182885038, - "c3": 27.000592445740917, - "c4": 14.26197817773794, - "c5": -20.04302635417396, - "c6": 12.917590617452884, - "c7": -14.511680273022272 + "points": { + "c1": -4.9783134075532445, + "c2": -15.29918507607831, + "c3": 8.328640181200804, + "c4": 2.0400086822463095, + "c5": 28.62825744425902, + "c6": -6.522579426896105, + "c7": -8.891131615229536 }, - "vertexSeeds": { - "c1": 7.3670965754347275, - "c2": 7.507191127510395, - "c3": 7.059522449831481, - "c4": 7.522287528236563, - "c5": 7.578934803776591, - "c6": 7.623081138018743, - "c7": 7.66609373004405 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128984, + "c3": 9.269533055940833, + "c4": 7.415626444752661, + "c5": 5.561719833564492, + "c6": 3.707813222376321, + "c7": 1.8539066111881704 }, "rgb": [238, 201, 159] }, @@ -420801,23 +420801,23 @@ "year": 1819, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 26.96099925049827, - "c2": 16.439469907894207, - "c3": -21.9016450455751, - "c4": -27.023019212874946, - "c5": 15.236279489807721, - "c6": -18.135255086569753, - "c7": 9.199757094988406 + "points": { + "c1": 23.411508528519676, + "c2": -25.724228477818645, + "c3": -16.78501510036921, + "c4": 27.962430168962477, + "c5": 8.172903321976868, + "c6": 30.283619424686464, + "c7": 17.668919619787495 }, - "vertexSeeds": { - "c1": 11.414915352685025, - "c2": 11.240189860675267, - "c3": 11.481698243276195, - "c4": 11.295493220396633, - "c5": 11.61661885656614, - "c6": 11.472554442187826, - "c7": 11.455386183333253 + "offsets": { + "c1": 19.385113268608414, + "c2": 16.615811373092914, + "c3": 13.846509477577413, + "c4": 11.077207582061911, + "c5": 8.307905686546503, + "c6": 5.538603791031002, + "c7": 2.769301895515501 }, "rgb": [77, 76, 132] }, @@ -420828,23 +420828,23 @@ "year": 1818, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -15.17244061547524, - "c2": 21.187881059032776, - "c3": 23.108157479821017, - "c4": 21.25446811035919, - "c5": -10.554476256894079, - "c6": -15.9724380471622, - "c7": -11.286542461490708 + "points": { + "c1": 10.60691085018916, + "c2": -5.522091633784939, + "c3": 2.2275223698919753, + "c4": -0.6802919674384782, + "c5": 4.801796696875776, + "c6": 18.46557849572293, + "c7": 5.126024024546204 }, - "vertexSeeds": { - "c1": 7.9072681978938615, - "c2": 7.907161434550935, - "c3": 7.899076682788311, - "c4": 7.900449356155098, - "c5": 7.903919870543519, - "c6": 7.895561628213305, - "c7": 7.895024194409433 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.31761442441022, + "c3": 9.431345353675558, + "c4": 7.545076282940147, + "c5": 5.6588072122054855, + "c6": 3.7725381414700734, + "c7": 1.886269070735412 }, "rgb": [238, 201, 159] }, @@ -420855,23 +420855,23 @@ "year": 1819, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 24.352582736157196, - "c2": 12.007850465619072, - "c3": -13.862722844684995, - "c4": -29.850876035283648, - "c5": -14.733595430574397, - "c6": -26.906593068061717, - "c7": 18.923731554378286 + "points": { + "c1": -15.131787918731895, + "c2": -18.066911991060632, + "c3": 30.222865459872665, + "c4": -1.4463240243313038, + "c5": -17.364125409842018, + "c6": 4.978552160682391, + "c7": 33.04879344097927 }, - "vertexSeeds": { - "c1": 6.033250673860002, - "c2": 5.9882321252455455, - "c3": 6.155177789374788, - "c4": 6.236191048591627, - "c5": 6.140333294799101, - "c6": 6.10184772913039, - "c7": 6.133641110732746 + "offsets": { + "c1": 10.420711974110032, + "c2": 8.93203883495144, + "c3": 7.443365695792886, + "c4": 5.954692556634294, + "c5": 4.4660194174757395, + "c6": 2.977346278317147, + "c7": 1.488673139158593 }, "rgb": [86, 146, 138] }, @@ -420882,23 +420882,23 @@ "year": 1819, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 8.060244601468721, - "c2": -0.59576180498809, - "c3": 13.121912182808774, - "c4": -13.59580122792569, - "c5": -18.721669887949247, - "c6": -24.307600273942647, - "c7": 5.115938452793156 + "points": { + "c1": 30.461317289255057, + "c2": 4.0698922112265805, + "c3": -30.679626008784446, + "c4": -30.181505337101093, + "c5": 15.090728826794013, + "c6": 3.401726677295798, + "c7": 0.20579290886064427 }, - "vertexSeeds": { - "c1": 8.29901807221362, - "c2": 8.18993896591208, - "c3": 8.337467239557174, - "c4": 7.433272768165798, - "c5": 8.510286472896775, - "c6": 7.407900850618066, - "c7": 7.553267556918379 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938975, + "c3": 10.309754969949148, + "c4": 8.24780397595931, + "c5": 6.185852981969483, + "c6": 4.123901987979655, + "c7": 2.0619509939898273 }, "rgb": [222, 0, 59] }, @@ -420909,23 +420909,23 @@ "year": 1818, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": 17.602839963161976, - "c2": 11.721708698974979, - "c3": 11.305354518595742, - "c4": -3.9564826584315576, - "c5": -18.970469735977694, - "c6": 2.021964501044131, - "c7": -12.968265255379157 + "points": { + "c1": 20.34356056036826, + "c2": -14.300592192097582, + "c3": 20.785985503384147, + "c4": 12.378515954981026, + "c5": 5.289954203662528, + "c6": -10.839036915749418, + "c7": 6.941601422718545 }, - "vertexSeeds": { - "c1": 5.756346342528602, - "c2": 5.986999304523316, - "c3": 5.93330998604147, - "c4": 6.157993193931922, - "c5": 5.721597614728504, - "c6": 5.912360139309762, - "c7": 6.08263824138033 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871017, + "c3": 7.3971336107258505, + "c4": 5.9177068885806845, + "c5": 4.438280166435499, + "c6": 2.9588534442903325, + "c7": 1.4794267221451662 }, "rgb": [77, 76, 132] }, @@ -420936,23 +420936,23 @@ "year": 1819, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -7.69862233460146, - "c2": -21.738242938305287, - "c3": -15.840012882255644, - "c4": -2.685058155624933, - "c5": -26.425945709828333, - "c6": -3.5286022826127237, - "c7": 23.35197586470167 + "points": { + "c1": -11.290815412187268, + "c2": 6.805194132527198, + "c3": -21.119312278884006, + "c4": 30.000670042483918, + "c5": -13.500210081232204, + "c6": 21.282489526250345, + "c7": -3.456147343288226 }, - "vertexSeeds": { - "c1": 8.052534909321174, - "c2": 7.099330772354256, - "c3": 8.988368217535168, - "c4": 8.709634254220445, - "c5": 8.15056418230597, - "c6": 8.645217821007005, - "c7": 8.5279792982534 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403606, + "c3": 12.87563569116967, + "c4": 10.300508552935737, + "c5": 7.725381414701798, + "c6": 5.150254276467865, + "c7": 2.5751271382339325 }, "rgb": [222, 0, 59] }, @@ -420963,23 +420963,23 @@ "year": 1819, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -10.160454834347107, - "c2": -21.237129031009623, - "c3": 7.622521482795509, - "c4": -19.29080543131549, - "c5": 5.5563620044727635, - "c6": 28.981636138654064, - "c7": 9.959535428571304 + "points": { + "c1": 9.508428553897811, + "c2": 0.21995809728513294, + "c3": -14.916209903607314, + "c4": -6.311499371417572, + "c5": -22.366964613165138, + "c6": -3.1747522596408473, + "c7": 22.610939099658932 }, - "vertexSeeds": { - "c1": 6.3804450820803025, - "c2": 6.381007744789304, - "c3": 6.384875939387304, - "c4": 6.379951628524125, - "c5": 6.390587723366278, - "c6": 6.386397304338427, - "c7": 6.38335799493013 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327297, + "c3": 7.628294036061112, + "c4": 6.102635228848647, + "c5": 4.576976421636789, + "c6": 3.0513176144243235, + "c7": 1.5256588072124653 }, "rgb": [238, 201, 159] }, @@ -420990,23 +420990,23 @@ "year": 1819, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 5.251053390909149, - "c2": -16.467121538068856, - "c3": -3.8048768584174013, - "c4": 23.960971849578556, - "c5": 27.843618440455472, - "c6": 15.351584131564827, - "c7": 10.30248852880323 + "points": { + "c1": -12.066081530980863, + "c2": -1.5819162244832796, + "c3": -21.29677706968305, + "c4": 27.65853542620396, + "c5": -6.433772058354634, + "c6": 21.909706681433086, + "c7": 15.31363900418858 }, - "vertexSeeds": { - "c1": 7.506394196786743, - "c2": 7.507732968514341, - "c3": 7.518959632301631, - "c4": 7.520250127563615, - "c5": 7.511962297070744, - "c6": 7.536271652584093, - "c7": 7.513193405906565 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646258, + "c3": 8.992140545538707, + "c4": 7.193712436430919, + "c5": 5.395284327323129, + "c6": 3.59685621821534, + "c7": 1.798428109107789 }, "rgb": [86, 146, 138] }, @@ -421017,23 +421017,23 @@ "year": 1819, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 34.317135579760354, - "c2": 26.540966645680065, - "c3": -3.064448989356059, - "c4": -0.10020562616520579, - "c5": 15.210179730349559, - "c6": -0.2989306803739211, - "c7": -28.698421520045592 + "points": { + "c1": -23.907572834908756, + "c2": 16.54033904143069, + "c3": -14.993518357637708, + "c4": 11.685790726998334, + "c5": 35.50029764607023, + "c6": -35.8205906549924, + "c7": 23.04549095413362 }, - "vertexSeeds": { - "c1": 7.829510242482627, - "c2": 7.3134784493153555, - "c3": 8.004541407251887, - "c4": 8.325247432298395, - "c5": 7.534086691245578, - "c6": 8.203242491196747, - "c7": 8.322347353380966 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456316, + "c3": 10.032362459546924, + "c4": 8.025889967637545, + "c5": 6.019417475728151, + "c6": 4.012944983818772, + "c7": 2.006472491909379 }, "rgb": [86, 146, 138] }, @@ -421044,23 +421044,23 @@ "year": 1819, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 19.04805567750808, - "c2": -18.465732705015455, - "c3": 29.69254885123148, - "c4": -17.137622277955135, - "c5": -34.12248100476434, - "c6": -24.650237180578987, - "c7": 31.45470832901377 + "points": { + "c1": 37.809205414624444, + "c2": -33.81750154067253, + "c3": -9.575292600964737, + "c4": 29.32901881175046, + "c5": 37.72227713068027, + "c6": 41.15799733799956, + "c7": -31.512102100724906 }, - "vertexSeeds": { - "c1": 5.624237367530933, - "c2": 5.440174140106358, - "c3": 5.6199847633560385, - "c4": 5.447934223958858, - "c5": 5.573555809652118, - "c6": 5.412660804235731, - "c7": 5.361742289051698 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106792, + "c3": 6.95792880258899, + "c4": 5.5663430420712094, + "c5": 4.174757281553407, + "c6": 2.7831715210356047, + "c7": 1.3915857605178024 }, "rgb": [86, 146, 138] }, @@ -421071,23 +421071,23 @@ "year": 1818, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 4.35202143619227, - "c2": -3.476805239193517, - "c3": 15.392453023721188, - "c4": -3.827532797202739, - "c5": 7.802393737378825, - "c6": 3.6009337062048594, - "c7": 0.5821610738816183 + "points": { + "c1": -8.496944429638102, + "c2": 0.8682195684524601, + "c3": -14.109691218130973, + "c4": -11.184621827337326, + "c5": 17.163234051913726, + "c6": 7.2049445671476775, + "c7": -16.474526304377417 }, - "vertexSeeds": { - "c1": 6.6047358125464815, - "c2": 6.312572902364505, - "c3": 6.136244841388161, - "c4": 6.126540988424628, - "c5": 6.202050488405474, - "c6": 6.228102616022469, - "c7": 6.268353003163346 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796123, + "c3": 7.9288025889967555, + "c4": 6.3430420711974085, + "c5": 4.7572815533980615, + "c6": 3.171521035598714, + "c7": 1.5857605177993472 }, "rgb": [86, 146, 138] }, @@ -421098,23 +421098,23 @@ "year": 1819, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -16.751688742370717, - "c2": 3.4742956017899793, - "c3": -6.7098104074995675, - "c4": 4.546337725516182, - "c5": 25.057823365589762, - "c6": -17.37144275137701, - "c7": -21.15457799008919 + "points": { + "c1": 0.6996575713937787, + "c2": -24.457181427081576, + "c3": 24.682935148570756, + "c4": 16.567056831132597, + "c5": 15.630747061094446, + "c6": -11.111186732347814, + "c7": -24.103298757324374 }, - "vertexSeeds": { - "c1": 4.995577743146329, - "c2": 5.238777249241397, - "c3": 5.133063308530353, - "c4": 5.2046391099167, - "c5": 4.8986044261340425, - "c6": 5.121056520806205, - "c7": 5.15520605268389 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [238, 201, 159] }, @@ -421125,23 +421125,23 @@ "year": 1819, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -28.275743609683175, - "c2": -2.872537256428714, - "c3": -28.515095449037393, - "c4": -37.536965995222886, - "c5": 22.23670053282141, - "c6": -19.259094277487613, - "c7": 28.58612650318075 + "points": { + "c1": -21.814160040759468, + "c2": 27.38026864013206, + "c3": 23.153833977414912, + "c4": 24.26702447985972, + "c5": -13.163745907076343, + "c6": 24.658236089595405, + "c7": 9.451170553159407 }, - "vertexSeeds": { - "c1": 7.423733539047146, - "c2": 6.89566194012653, - "c3": 7.042924537770446, - "c4": 7.0782619213400135, - "c5": 7.3130692061490565, - "c6": 7.38971806483613, - "c7": 7.275944161536348 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -421152,23 +421152,23 @@ "year": 1819, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -24.143941036850695, - "c2": -16.7156060083204, - "c3": 15.341291433041562, - "c4": -17.39609493832694, - "c5": -4.115992640625944, - "c6": 8.55551857217118, - "c7": 4.979325734110617 + "points": { + "c1": 21.173022866608605, + "c2": 27.31008474683935, + "c3": 24.108384459431257, + "c4": -9.07225687116183, + "c5": 9.988896058755806, + "c6": 20.720662669438944, + "c7": -18.25535084734554 }, - "vertexSeeds": { - "c1": 4.295167786883148, - "c2": 4.303600225026313, - "c3": 4.3067258368555805, - "c4": 4.296884275004186, - "c5": 4.2983260173105995, - "c6": 4.300937304257526, - "c7": 4.310755350764111 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969517, + "c3": 5.154877484974631, + "c4": 4.123901987979746, + "c5": 3.092926490984656, + "c6": 2.0619509939897704, + "c7": 1.0309754969948852 }, "rgb": [58, 15, 49] }, @@ -421179,23 +421179,23 @@ "year": 1819, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 14.11502865339089, - "c2": 8.066236484211071, - "c3": -25.400038802436402, - "c4": 4.09205680568795, - "c5": -17.97364958849857, - "c6": 17.484305886053203, - "c7": 17.8330357840201 + "points": { + "c1": 11.074582001565236, + "c2": 4.888739189071476, + "c3": 7.490239382505695, + "c4": 12.306342051277273, + "c5": -6.890470875224068, + "c6": -24.800568667775885, + "c7": 25.742756440856102 }, - "vertexSeeds": { - "c1": 2.934485170264366, - "c2": 2.7977500331576124, - "c3": 2.8992050174881765, - "c4": 2.769809759508549, - "c5": 2.8286636274614705, - "c6": 3.113602220520244, - "c7": 2.7784026086025104 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.4937586685159525, + "c3": 3.744798890429956, + "c4": 2.9958391123439663, + "c5": 2.2468793342579763, + "c6": 1.4979195561719794, + "c7": 0.7489597780859897 }, "rgb": [238, 201, 159] }, @@ -421206,23 +421206,23 @@ "year": 1819, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -5.329866105133259, - "c2": 24.590573199768613, - "c3": -13.551657122749816, - "c4": -30.44527658525928, - "c5": -6.83573800400324, - "c6": 19.040195735019083, - "c7": -31.949436090754435 + "points": { + "c1": 17.36891681493097, + "c2": 31.991599403903265, + "c3": -0.9028222489798736, + "c4": 29.92633308134934, + "c5": -8.579981432447596, + "c6": -20.95558950552064, + "c7": 32.1565932463117 }, - "vertexSeeds": { - "c1": 4.379766088536206, - "c2": 4.389683939167797, - "c3": 4.390468581591032, - "c4": 4.39023172040469, - "c5": 4.360550775765174, - "c6": 4.360356233504928, - "c7": 4.420731288865517 + "offsets": { + "c1": 7.411003236245954, + "c2": 6.352288488210795, + "c3": 5.293573740175689, + "c4": 4.234858992140531, + "c5": 3.176144244105424, + "c6": 2.1174294960702653, + "c7": 1.0587147480351589 }, "rgb": [222, 0, 59] }, @@ -421233,23 +421233,23 @@ "year": 1819, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 9.254979398793612, - "c2": -17.016388942983568, - "c3": -19.675719607740355, - "c4": 29.547189331795348, - "c5": -1.7502905985692472, - "c6": 8.380792195684702, - "c7": 9.7336188090126 + "points": { + "c1": 10.532997859649711, + "c2": 9.302666497721454, + "c3": -16.279501164394297, + "c4": -7.349054698628386, + "c5": 6.843977998254424, + "c6": -32.25697854466713, + "c7": -16.194931004191318 }, - "vertexSeeds": { - "c1": 6.625834284063424, - "c2": 6.70037171915446, - "c3": 6.701483251061195, - "c4": 6.727272619229879, - "c5": 6.722846151753413, - "c6": 6.740063741551351, - "c7": 6.673998172425655 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.65325936199727, + "c3": 8.044382801664339, + "c4": 6.435506241331514, + "c5": 4.8266296809985825, + "c6": 3.217753120665757, + "c7": 1.6088765603329316 }, "rgb": [238, 201, 159] }, @@ -421260,23 +421260,23 @@ "year": 1819, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 20.87667596154759, - "c2": 7.7067168007223685, - "c3": 23.95740205658661, - "c4": -15.145213166576177, - "c5": 26.40464769750752, - "c6": 23.507544284349486, - "c7": 5.992984084279982 + "points": { + "c1": 18.184393686683244, + "c2": -14.110460903969653, + "c3": 26.38224107513708, + "c4": 1.562253729680318, + "c5": 17.448499486907963, + "c6": 21.103324694188018, + "c7": -13.223743335254827 }, - "vertexSeeds": { - "c1": 4.88613482671981, - "c2": 4.8855609023890505, - "c3": 4.88011945435891, - "c4": 4.889931574427525, - "c5": 4.881615023572604, - "c6": 4.887697486925122, - "c7": 4.886919581674879 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.0180305131761775, + "c3": 5.848358760980187, + "c4": 4.678687008784196, + "c5": 3.5090152565879724, + "c6": 2.3393435043919815, + "c7": 1.1696717521959907 }, "rgb": [238, 201, 159] }, @@ -421287,23 +421287,23 @@ "year": 1819, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 36.80194841125035, - "c2": 0.13957626599450634, - "c3": -14.971702070506232, - "c4": 36.69033150154311, - "c5": 9.166268150989211, - "c6": 4.53438924635023, - "c7": 12.740554860690835 + "points": { + "c1": -5.495301864949184, + "c2": -4.873627337037988, + "c3": -18.336302984234557, + "c4": 34.61857159945639, + "c5": 22.02578948381617, + "c6": 21.712505685376016, + "c7": 18.12143014916115 }, - "vertexSeeds": { - "c1": 7.4889415734227605, - "c2": 7.449068165650489, - "c3": 7.479172767537063, - "c4": 7.471680776003723, - "c5": 7.493720286940265, - "c6": 7.401250394595425, - "c7": 7.491311798197188 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565881, + "c3": 8.945908460471568, + "c4": 7.156726768377254, + "c5": 5.367545076282941, + "c6": 3.578363384188627, + "c7": 1.7891816920943135 }, "rgb": [77, 76, 132] }, @@ -421314,23 +421314,23 @@ "year": 1819, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 2.6077359025999627, - "c2": -26.959700047450397, - "c3": 5.1515985853436845, - "c4": -16.002740720863468, - "c5": -6.829370225409544, - "c6": -17.187583236605054, - "c7": 2.6951957127579504 + "points": { + "c1": 14.362994603285813, + "c2": -32.07925150141881, + "c3": 17.235546488569057, + "c4": -26.024642567221413, + "c5": -3.370426575571443, + "c6": -2.907395796004863, + "c7": -1.3397196288913733 }, - "vertexSeeds": { - "c1": 5.364488255339126, - "c2": 5.5284128367119045, - "c3": 5.4202893488248955, - "c4": 5.37830554816775, - "c5": 5.418746425580832, - "c6": 5.482621151537229, - "c7": 5.347020209491925 + "offsets": { + "c1": 9.25566343042071, + "c2": 7.933425797503481, + "c3": 6.611188164586202, + "c4": 5.288950531668971, + "c5": 3.9667128987517404, + "c6": 2.6444752658344615, + "c7": 1.3222376329172307 }, "rgb": [238, 201, 159] }, @@ -421341,23 +421341,23 @@ "year": 1819, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 35.964185971669856, - "c2": 15.292683980192692, - "c3": -19.123093128873887, - "c4": -22.14308836634506, - "c5": -21.21402515250839, - "c6": -11.668007251080802, - "c7": 11.317057507899868 + "points": { + "c1": 32.62754847574897, + "c2": -36.844470915206244, + "c3": 7.536159675239794, + "c4": -33.25798142240421, + "c5": -14.120630323838046, + "c6": -39.61830434705697, + "c7": -38.51056679810569 }, - "vertexSeeds": { - "c1": 4.392408464176233, - "c2": 4.447583324779174, - "c3": 4.295413580383507, - "c4": 4.340863355035412, - "c5": 4.331528034759704, - "c6": 4.281363488340357, - "c7": 4.253560606891258 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613039, + "c3": 5.524734165510867, + "c4": 4.419787332408696, + "c5": 3.3148404993065244, + "c6": 2.209893666204343, + "c7": 1.1049468331021715 }, "rgb": [222, 0, 59] }, @@ -421368,23 +421368,23 @@ "year": 1819, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -15.528675805761033, - "c2": -13.681501086935093, - "c3": -11.333107631584465, - "c4": -14.70404294482482, - "c5": -20.346515340184425, - "c6": -17.210345858070948, - "c7": -11.567062640086416 + "points": { + "c1": 15.209572263976831, + "c2": -11.552610476619282, + "c3": -26.63282617565633, + "c4": -24.53331084283497, + "c5": 13.666102646393064, + "c6": -21.065663978367866, + "c7": 12.226517240361687 }, - "vertexSeeds": { - "c1": 5.839165858948069, - "c2": 5.840634501271212, - "c3": 5.8307093545011455, - "c4": 5.831121035457417, - "c5": 5.840916416420134, - "c6": 5.8349169175977815, - "c7": 5.834255523272943 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.37725381414678, + "c3": 6.981044845122594, + "c4": 5.584835876097853, + "c5": 4.188626907073668, + "c6": 2.7924179380489265, + "c7": 1.396208969024741 }, "rgb": [238, 201, 159] }, @@ -421395,23 +421395,23 @@ "year": 1819, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -17.510685178504037, - "c2": 12.140711654957457, - "c3": -11.354178981051778, - "c4": -0.9579664240914845, - "c5": -3.8174982337673597, - "c6": -20.882044142373942, - "c7": -14.59626315311475 + "points": { + "c1": 9.547013911100883, + "c2": 1.4803347177078194, + "c3": -11.877540487679962, + "c4": -23.171144261090646, + "c5": -20.377120240752333, + "c6": -26.301755038467604, + "c7": 0.39515013489537054 }, - "vertexSeeds": { - "c1": 5.989727710407307, - "c2": 5.759091268527877, - "c3": 6.161089125616651, - "c4": 5.914752452214629, - "c5": 5.876526122794125, - "c6": 6.398663891059508, - "c7": 6.408429133680503 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313446, + "c3": 7.651410078594548, + "c4": 6.1211280628756315, + "c5": 4.590846047156732, + "c6": 3.0605640314378157, + "c7": 1.5302820157188994 }, "rgb": [222, 0, 59] }, @@ -421422,23 +421422,23 @@ "year": 1819, "resistanceReported": false, "duration": 30412800, - "curveSeeds": { - "c1": -42.613456262566416, - "c2": -18.315780430543732, - "c3": -32.82147683887692, - "c4": 33.092311426611076, - "c5": 1.740795218624669, - "c6": -34.8625879681497, - "c7": 40.385125423236374 + "points": { + "c1": -14.866445188009322, + "c2": 24.395318315231663, + "c3": -13.705249355819497, + "c4": 26.14718769744212, + "c5": -40.228139052911864, + "c6": -30.328249040288625, + "c7": 14.606389241186115 }, - "vertexSeeds": { - "c1": 7.551482589779428, - "c2": 7.941620289327281, - "c3": 7.478310185984423, - "c4": 7.950634803104053, - "c5": 7.688240718330351, - "c6": 8.157643354512834, - "c7": 8.098805851465851 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778082, + "c3": 10.217290799815078, + "c4": 8.17383263985206, + "c5": 6.130374479889041, + "c6": 4.086916319926023, + "c7": 2.043458159963018 }, "rgb": [77, 76, 132] }, @@ -421449,23 +421449,23 @@ "year": 1819, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -11.443678372032517, - "c2": -19.370808696502163, - "c3": 9.501189878604489, - "c4": -0.6156395396104131, - "c5": 4.845523395019953, - "c6": 2.9166497166989274, - "c7": -20.265214279821258 + "points": { + "c1": -4.565731667236353, + "c2": -9.849854593814458, + "c3": -22.553827606778643, + "c4": -3.810441729075226, + "c5": -9.098612257326385, + "c6": 5.103460714798167, + "c7": -1.898215639844409 }, - "vertexSeeds": { - "c1": 5.258119450195501, - "c2": 5.4925754262436355, - "c3": 5.236290620754445, - "c4": 5.044140272065483, - "c5": 5.43634795758723, - "c6": 5.371818802563438, - "c7": 5.585648044850397 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664355, + "c3": 6.703652334720296, + "c4": 5.362921867776237, + "c5": 4.0221914008321775, + "c6": 2.6814609338881183, + "c7": 1.3407304669440592 }, "rgb": [86, 146, 138] }, @@ -421476,23 +421476,23 @@ "year": 1819, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -15.280956596212015, - "c2": -32.601262866552, - "c3": 21.691769642448044, - "c4": 0.6813972307044622, - "c5": 26.416703958802678, - "c6": -24.06830773259449, - "c7": 6.6666432316301965 + "points": { + "c1": 11.310946468067264, + "c2": 22.610227903664132, + "c3": -26.61695511907226, + "c4": 25.139159354458357, + "c5": 10.057221696419695, + "c6": 3.9198966617322526, + "c7": 34.89928260210934 }, - "vertexSeeds": { - "c1": 4.313471502590674, - "c2": 4.313471502590674, - "c3": 4.313471502590674, - "c4": 4.313471502590674, - "c5": 4.313471502590674, - "c6": 4.313471502590674, - "c7": 4.313471502590674 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -421503,23 +421503,23 @@ "year": 1819, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 6.908920798711517, - "c2": -25.900561536238808, - "c3": -2.5951826725667573, - "c4": 20.39229456529728, - "c5": -4.636676115187679, - "c6": 23.266167992397516, - "c7": 7.379031632038238 + "points": { + "c1": -16.933262958469015, + "c2": -21.556303806590513, + "c3": 30.16756636871019, + "c4": 20.019818234246287, + "c5": -8.221602289103839, + "c6": -29.715141372040115, + "c7": -27.832454366569852 }, - "vertexSeeds": { - "c1": 3.9391367903770007, - "c2": 3.847084968590811, - "c3": 3.9607408081663737, - "c4": 3.894660244487345, - "c5": 3.8292778798635068, - "c6": 3.83260696361988, - "c7": 3.839602876350013 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285721, + "c3": 4.761904761904753, + "c4": 3.8095238095238066, + "c5": 2.8571428571428603, + "c6": 1.904761904761914, + "c7": 0.9523809523809464 }, "rgb": [238, 201, 159] }, @@ -421530,23 +421530,23 @@ "year": 1819, "resistanceReported": false, "duration": 34387200, - "curveSeeds": { - "c1": -24.642444056347138, - "c2": 34.98935459383756, - "c3": -4.500311948834579, - "c4": -25.52266579271806, - "c5": -1.3346936517779184, - "c6": -20.172276175364562, - "c7": 17.757687556284296 + "points": { + "c1": 38.202690088042715, + "c2": 37.25977779418352, + "c3": -26.16385959743201, + "c4": -30.248418254912572, + "c5": -10.467649644593251, + "c6": 47.97252705476683, + "c7": 20.20475946876411 }, - "vertexSeeds": { - "c1": 3.764377145154948, - "c2": 3.7921977612150344, - "c3": 3.8039558363722454, - "c4": 3.805565705567269, - "c5": 3.8652424209668093, - "c6": 3.7796740454943007, - "c7": 3.802612796937492 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044382, + "c3": 4.623208506703652, + "c4": 3.6985668053629213, + "c5": 2.773925104022191, + "c6": 1.8492834026814606, + "c7": 0.9246417013407303 }, "rgb": [86, 146, 138] }, @@ -421557,23 +421557,23 @@ "year": 1819, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -5.129872301059354, - "c2": -18.298511885008317, - "c3": 18.333409957604832, - "c4": 22.011589859258013, - "c5": -4.713610173053546, - "c6": 22.453059543400673, - "c7": 21.882363270102037 + "points": { + "c1": 23.359493672132277, + "c2": 17.163090780669915, + "c3": -12.557561014355697, + "c4": 21.76056124993418, + "c5": -24.500268124970624, + "c6": -7.991272085307813, + "c7": -1.7016144008306284 }, - "vertexSeeds": { - "c1": 16.48290859219407, - "c2": 13.722978361379207, - "c3": 15.898623402202364, - "c4": 13.695451466899025, - "c5": 13.208332368703369, - "c6": 13.540484367201934, - "c7": 14.177140845821437 + "offsets": { + "c1": 28.058252427184467, + "c2": 24.049930651872394, + "c3": 20.04160887656034, + "c4": 16.03328710124827, + "c5": 12.024965325936197, + "c6": 8.016643550624126, + "c7": 4.008321775312071 }, "rgb": [238, 201, 159] }, @@ -421584,23 +421584,23 @@ "year": 1819, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -4.736423080341201, - "c2": 30.619498645812932, - "c3": -12.303172026200109, - "c4": -3.1650098131980293, - "c5": 30.567617710948404, - "c6": -7.345898719760207, - "c7": 5.582121053033866 + "points": { + "c1": 11.146862009430151, + "c2": -31.440256946106143, + "c3": -28.81392352981005, + "c4": 23.996588643762315, + "c5": -8.83648015840997, + "c6": 22.229572174918665, + "c7": 25.63263117426031 }, - "vertexSeeds": { - "c1": 4.542220678646558, - "c2": 4.19304087600071, - "c3": 3.8560722932212173, - "c4": 4.080751602138651, - "c5": 4.480174000030284, - "c6": 4.013829110397175, - "c7": 4.007595594108962 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492372, + "c3": 5.455386037910311, + "c4": 4.36430883032825, + "c5": 3.273231622746189, + "c6": 2.182154415164128, + "c7": 1.091077207582067 }, "rgb": [77, 76, 132] }, @@ -421611,23 +421611,23 @@ "year": 1819, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 27.60937567460805, - "c2": 3.0743458608642094, - "c3": 18.695000464917616, - "c4": 13.808806688280402, - "c5": 8.768275750608641, - "c6": -23.124955729396675, - "c7": 25.251444406221747 + "points": { + "c1": -23.520553543305336, + "c2": 6.886321494682321, + "c3": 5.815007921555768, + "c4": 19.88310129105298, + "c5": 18.41471736465661, + "c6": 9.493596089560882, + "c7": 5.4472866411193195 }, - "vertexSeeds": { - "c1": 2.3650532138849742, - "c2": 2.385927270627265, - "c3": 2.338839144367619, - "c4": 2.387914929530837, - "c5": 2.380344472553671, - "c6": 2.3781019421036906, - "c7": 2.3813810108955495 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.439667128987515, + "c3": 2.8663892741562593, + "c4": 2.2931114193250037, + "c5": 1.719833564493748, + "c6": 1.1465557096625114, + "c7": 0.5732778548312557 }, "rgb": [77, 76, 132] }, @@ -421638,23 +421638,23 @@ "year": 1819, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 10.941894469461658, - "c2": -23.619549951918934, - "c3": 16.67214840390718, - "c4": 31.914929329723904, - "c5": -28.73117293130319, - "c6": -17.423919995750794, - "c7": 14.276026862080364 + "points": { + "c1": -24.52226198873086, + "c2": -21.055087770819295, + "c3": -21.37965200565141, + "c4": -20.073113054071804, + "c5": 14.26159420471263, + "c6": 16.73554084406797, + "c7": 18.246435959722298 }, - "vertexSeeds": { - "c1": 6.2273074114990274, - "c2": 6.287371898891242, - "c3": 6.2434710247245855, - "c4": 6.267919396026873, - "c5": 6.227323193022755, - "c6": 6.293919351320288, - "c7": 6.284186620011145 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072164, + "c3": 7.51271382339337, + "c4": 6.010171058714726, + "c5": 4.507628294036082, + "c6": 3.0050855293574377, + "c7": 1.5025427646786442 }, "rgb": [77, 76, 132] }, @@ -421665,23 +421665,23 @@ "year": 1819, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 18.9918680817974, - "c2": 28.81235738675049, - "c3": 28.754506637633902, - "c4": 17.290467727273438, - "c5": -8.728271284990583, - "c6": 26.151941841562284, - "c7": -18.4993836400565 + "points": { + "c1": 15.395543796145397, + "c2": -24.979026787342665, + "c3": -11.92950356199637, + "c4": 1.5927354315858722, + "c5": 33.20327104008756, + "c6": 0.20463779020269612, + "c7": -29.976351090988107 }, - "vertexSeeds": { - "c1": 4.8238179903193315, - "c2": 4.827424444135806, - "c3": 4.793891846259967, - "c4": 4.799394101425219, - "c5": 4.79110899539236, - "c6": 4.787901369687864, - "c7": 4.809519352390088 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095677, + "c3": 5.802126675913093, + "c4": 4.641701340730451, + "c5": 3.4812760055478673, + "c6": 2.3208506703652256, + "c7": 1.160425335182584 }, "rgb": [58, 15, 49] }, @@ -421692,23 +421692,23 @@ "year": 1819, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -7.388683841408504, - "c2": 3.807273288045181, - "c3": -15.162604809309741, - "c4": -8.106564969088797, - "c5": 16.827368231442385, - "c6": 25.05038224317446, - "c7": 8.397112775401503 + "points": { + "c1": -20.32926954235731, + "c2": 6.274080374317933, + "c3": -22.878549576888144, + "c4": 3.245928953730189, + "c5": -18.719007525315405, + "c6": 2.6870549209018364, + "c7": -22.42884782886625 }, - "vertexSeeds": { - "c1": 3.4643970270156026, - "c2": 3.4641782476411183, - "c3": 3.472160772735695, - "c4": 3.4588085747527204, - "c5": 3.4687382752050286, - "c6": 3.4590318942128215, - "c7": 3.462910280920266 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239968, + "c3": 4.160887656033334, + "c4": 3.3287101248267006, + "c5": 2.4965325936199014, + "c6": 1.6643550624132675, + "c7": 0.8321775312066337 }, "rgb": [77, 76, 132] }, @@ -421719,23 +421719,23 @@ "year": 1819, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -0.4141058267599931, - "c2": -4.994276962984056, - "c3": -7.70827097402141, - "c4": 9.864000962301283, - "c5": -9.378540248797936, - "c6": 1.1215038566022208, - "c7": -10.20033314832357 + "points": { + "c1": -13.443012982341886, + "c2": -3.9756681281749557, + "c3": 27.204783164509003, + "c4": -23.538474168839976, + "c5": 12.377879189403039, + "c6": -16.38174377505676, + "c7": 25.202963079893287 }, - "vertexSeeds": { - "c1": 4.934518984941074, - "c2": 4.925965962292889, - "c3": 4.943297371940137, - "c4": 4.899412786826307, - "c5": 4.926624047568539, - "c6": 4.928260922891027, - "c7": 4.898837270568868 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296843, + "c3": 5.917706888580663, + "c4": 4.734165510864562, + "c5": 3.5506241331483825, + "c6": 2.367082755432281, + "c7": 1.1835413777161012 }, "rgb": [58, 15, 49] }, @@ -421746,23 +421746,23 @@ "year": 1819, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -2.5529005546895362, - "c2": 8.67402532130912, - "c3": 23.670969896073498, - "c4": 29.41583854929622, - "c5": 27.412728872047335, - "c6": -1.373471657625423, - "c7": -21.914748916632234 + "points": { + "c1": 0.6918828119400473, + "c2": -1.1725940185511767, + "c3": -25.390752769892483, + "c4": 13.006179775633491, + "c5": 3.7661647040195376, + "c6": -11.439851372643908, + "c7": -18.44076780665911 }, - "vertexSeeds": { - "c1": 7.245073509215151, - "c2": 7.118272747596928, - "c3": 7.238392003067652, - "c4": 7.102179401482324, - "c5": 7.147965574951468, - "c6": 7.163435919023708, - "c7": 7.038105066063134 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043014, + "c3": 8.645399907535804, + "c4": 6.916319926028656, + "c5": 5.187239944521507, + "c6": 3.4581599630142965, + "c7": 1.7290799815071483 }, "rgb": [58, 15, 49] }, @@ -421773,23 +421773,23 @@ "year": 1819, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 9.555863938899037, - "c2": -7.008510417606892, - "c3": 3.7795217490050206, - "c4": -1.7746521851064117, - "c5": -38.917255023649936, - "c6": -13.43754117465993, - "c7": 13.039018964542748 + "points": { + "c1": 2.3797605533486816, + "c2": 3.6898255538233258, + "c3": 33.767887296766155, + "c4": 8.629079366136196, + "c5": 15.824777253396569, + "c6": 14.630849728192565, + "c7": -3.520558634712259 }, - "vertexSeeds": { - "c1": 4.917564358416777, - "c2": 4.921832330240726, - "c3": 5.539124827063066, - "c4": 5.4544206254165575, - "c5": 5.153196116622775, - "c6": 5.214235629455052, - "c7": 5.494689018632835 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785019, + "c3": 6.773000462320846, + "c4": 5.4184003698566885, + "c5": 4.063800277392516, + "c6": 2.7092001849283442, + "c7": 1.3546000924641721 }, "rgb": [77, 76, 132] }, @@ -421800,23 +421800,23 @@ "year": 1819, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -28.424434498430386, - "c2": 33.72343248743916, - "c3": 3.984112341896221, - "c4": -40.89830030686272, - "c5": -32.79117980883987, - "c6": 32.956079970875216, - "c7": -35.321801554794824 + "points": { + "c1": 33.65916380111572, + "c2": 14.935723798031098, + "c3": 30.65881247408874, + "c4": -32.13104855724209, + "c5": 18.423023327974363, + "c6": 28.41102505852627, + "c7": 28.56958014156043 }, - "vertexSeeds": { - "c1": 4.368972559853944, - "c2": 4.0604156139696155, - "c3": 4.458188261826202, - "c4": 4.066516080229128, - "c5": 4.25214982036969, - "c6": 4.463152899730946, - "c7": 4.094881259847712 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291264, + "c3": 5.339805825242721, + "c4": 4.271844660194179, + "c5": 3.2038834951456368, + "c6": 2.1359223300970847, + "c7": 1.0679611650485423 }, "rgb": [238, 201, 159] }, @@ -421827,23 +421827,23 @@ "year": 1820, "resistanceReported": false, "duration": 43113600, - "curveSeeds": { - "c1": 26.49525198027301, - "c2": -3.3260768243737644, - "c3": 24.640099314064557, - "c4": -17.277375979634137, - "c5": 15.929138326397279, - "c6": 32.71525340635522, - "c7": 43.25934817786319 + "points": { + "c1": -14.629172901244566, + "c2": 39.78292343095643, + "c3": -22.40335417574606, + "c4": -19.57696804598043, + "c5": 57.07920865230177, + "c6": -30.901653152953855, + "c7": 19.52139954114982 }, - "vertexSeeds": { - "c1": 5.945218742134217, - "c2": 5.891151203125175, - "c3": 6.1602459013188735, - "c4": 5.987020743888256, - "c5": 6.011128098253151, - "c6": 6.162115737837549, - "c7": 5.99571922343671 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911245, + "c3": 7.420249653259359, + "c4": 5.936199722607496, + "c5": 4.452149791955611, + "c6": 2.968099861303748, + "c7": 1.484049930651863 }, "rgb": [58, 15, 49] }, @@ -421854,23 +421854,23 @@ "year": 1819, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -21.30002065546291, - "c2": 1.240421005689111, - "c3": -25.474428488912388, - "c4": 8.239705338793556, - "c5": 21.57936396502314, - "c6": -22.9482204409248, - "c7": 24.272706663998093 + "points": { + "c1": 8.249950967207383, + "c2": -26.27057693260779, + "c3": -1.9052169056818613, + "c4": 0.19842553285525355, + "c5": 24.748584129698372, + "c6": -19.39328175421187, + "c7": -28.28670748741123 }, - "vertexSeeds": { - "c1": 3.1532395606582275, - "c2": 3.1363985430024552, - "c3": 3.221640267613915, - "c4": 3.2105310419319784, - "c5": 3.210570553907448, - "c6": 3.155701003888488, - "c7": 3.1771136457132596 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717051, + "c3": 3.860379103097563, + "c4": 3.0883032824780443, + "c5": 2.3162274618585257, + "c6": 1.5441516412390375, + "c7": 0.7720758206195187 }, "rgb": [77, 76, 132] }, @@ -421881,23 +421881,23 @@ "year": 1819, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -32.559701364375044, - "c2": 34.50035423762236, - "c3": -5.99457486542164, - "c4": 2.2838456361743837, - "c5": -30.324734436801602, - "c6": -22.372989340864255, - "c7": -34.57659799130155 + "points": { + "c1": -17.585576990577852, + "c2": -39.02678077081654, + "c3": 42.38588976720817, + "c4": -24.884404136869215, + "c5": -17.87753824218062, + "c6": -30.871694018887506, + "c7": -0.9061786734437689 }, - "vertexSeeds": { - "c1": 9.123451204731422, - "c2": 8.94270001710116, - "c3": 8.269082686516812, - "c4": 9.089141328361382, - "c5": 8.84908835941539, - "c6": 8.341433172994785, - "c7": 8.989190538279306 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105414, + "c3": 10.980120203421183, + "c4": 8.784096162736937, + "c5": 6.588072122052707, + "c6": 4.392048081368477, + "c7": 2.1960240406842466 }, "rgb": [77, 76, 132] }, @@ -421908,23 +421908,23 @@ "year": 1820, "resistanceReported": false, "duration": 37584000, - "curveSeeds": { - "c1": 27.392852883065167, - "c2": 50.67143695204921, - "c3": 38.82264449823605, - "c4": -27.18396757802554, - "c5": -4.14675291652938, - "c6": -5.112580354667614, - "c7": -15.234791492376942 + "points": { + "c1": 26.80015617227206, + "c2": 40.50474290188665, + "c3": 28.361557446654793, + "c4": 47.980085230369674, + "c5": 40.66062696579247, + "c6": 34.26834255109993, + "c7": -31.113727483688763 }, - "vertexSeeds": { - "c1": 3.2235973722477747, - "c2": 3.3248419054901155, - "c3": 3.2396938895583594, - "c4": 3.2389364410382697, - "c5": 3.0992145138699128, - "c6": 3.1569249557447083, - "c7": 3.340778224412381 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [86, 146, 138] }, @@ -421935,23 +421935,23 @@ "year": 1819, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 15.920404793865686, - "c2": 23.38436374802704, - "c3": -8.923355354087438, - "c4": -30.55155928212234, - "c5": 8.403536750892393, - "c6": 13.597651873069871, - "c7": -17.96323626126802 + "points": { + "c1": 4.8878669386740015, + "c2": -24.187166550084072, + "c3": -11.191649670908625, + "c4": 32.55697679957461, + "c5": -15.59002595760678, + "c6": -18.816347858497345, + "c7": 22.138977881506207 }, - "vertexSeeds": { - "c1": 7.066813529302342, - "c2": 6.8239329420807895, - "c3": 6.014771573478674, - "c4": 6.937104874246491, - "c5": 5.990107668934233, - "c6": 7.040027282257761, - "c7": 6.78545781201716 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.124826629680998, + "c3": 8.437355524734166, + "c4": 6.749884419787332, + "c5": 5.062413314840499, + "c6": 3.374942209893666, + "c7": 1.687471104946833 }, "rgb": [58, 15, 49] }, @@ -421962,23 +421962,23 @@ "year": 1820, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": 20.35080549582245, - "c2": 48.65076909080336, - "c3": -5.897769635571578, - "c4": -56.74428094703557, - "c5": -17.001696687039342, - "c6": 55.90559257341405, - "c7": 3.9232234161072057 + "points": { + "c1": -12.090125747684837, + "c2": -55.8577860809648, + "c3": 36.57297109154343, + "c4": -49.40751687051188, + "c5": -15.139077924535322, + "c6": -31.2319909033674, + "c7": -25.90881079423218 }, - "vertexSeeds": { - "c1": 9.545244242817654, - "c2": 9.370288245213885, - "c3": 9.312308136370584, - "c4": 9.562302063265573, - "c5": 9.70937259111691, - "c6": 8.920784848626417, - "c7": 9.535184439500496 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151175, + "c3": 11.581137309292641, + "c4": 9.26490984743411, + "c5": 6.9486823855755775, + "c6": 4.632454923717065, + "c7": 2.3162274618585323 }, "rgb": [77, 76, 132] }, @@ -421989,23 +421989,23 @@ "year": 1819, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 14.881240070062667, - "c2": 20.044035793770455, - "c3": 5.531423224513908, - "c4": -2.8694179689652017, - "c5": -5.950061207275525, - "c6": 15.886653273983, - "c7": -1.831528278317947 + "points": { + "c1": -3.0823799271088888, + "c2": -29.62867110536734, + "c3": 15.691984799435751, + "c4": 45.56694906264385, + "c5": 36.42246813827736, + "c6": 41.678632101297204, + "c7": 11.675975628740197 }, - "vertexSeeds": { - "c1": 10.917294500424248, - "c2": 10.93827672152968, - "c3": 10.826089747814226, - "c4": 10.789556492896454, - "c5": 11.030878994210083, - "c6": 10.923530330391404, - "c7": 10.924568805064865 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.81137309292647, + "c3": 13.176144244105442, + "c4": 10.540915395284339, + "c5": 7.905686546463235, + "c6": 5.270457697642131, + "c7": 2.635228848821104 }, "rgb": [58, 15, 49] }, @@ -422016,23 +422016,23 @@ "year": 1819, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 31.410787348980925, - "c2": 16.18552873114887, - "c3": 9.084939436532444, - "c4": -31.022878931555827, - "c5": -22.338143332157145, - "c6": 12.122349930193444, - "c7": 7.46803654534412 + "points": { + "c1": -29.814060288540542, + "c2": -5.736576140997389, + "c3": -21.43921882377294, + "c4": 10.091613313614495, + "c5": -14.880607787170721, + "c6": 23.893678036126175, + "c7": -17.09379898394943 }, - "vertexSeeds": { - "c1": 4.158031088082901, - "c2": 4.158031088082901, - "c3": 4.158031088082901, - "c4": 4.158031088082901, - "c5": 4.158031088082901, - "c6": 4.158031088082901, - "c7": 4.158031088082901 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -422043,23 +422043,23 @@ "year": 1819, "resistanceReported": false, "duration": 3715200, - "curveSeeds": { - "c1": 7.386523269150127, - "c2": -6.941041161213282, - "c3": -7.906587539165967, - "c4": -11.555913198693732, - "c5": 10.518034654463234, - "c6": 8.912133528858059, - "c7": 9.96208060910467 + "points": { + "c1": 13.930593620385602, + "c2": -12.673785438579767, + "c3": 5.582169322179935, + "c4": -0.8945718059324079, + "c5": -13.817389018349568, + "c6": -4.92831794333709, + "c7": 10.10744976713127 }, - "vertexSeeds": { - "c1": 3.8663160079541767, - "c2": 4.305117851598981, - "c3": 4.488822834463314, - "c4": 4.418512821335763, - "c5": 4.043155970780764, - "c6": 4.185205176450728, - "c7": 4.245143383609054 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843273, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.16366158113731, + "c7": 1.0818307905686575 }, "rgb": [77, 76, 132] }, @@ -422070,23 +422070,23 @@ "year": 1819, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -13.513410006468643, - "c2": 17.279275957668677, - "c3": 29.581521712238843, - "c4": 29.191461526944078, - "c5": 5.997213313024179, - "c6": -19.79965912019523, - "c7": 6.3206161441597395 + "points": { + "c1": 14.01563031977527, + "c2": 24.684373877129204, + "c3": -30.157786725819452, + "c4": 23.764063271955564, + "c5": -4.794511435020027, + "c6": 31.390326794010996, + "c7": 13.9051893758975 }, - "vertexSeeds": { - "c1": 6.106744330926529, - "c2": 6.126185980409911, - "c3": 6.076328570333618, - "c4": 6.173285523776501, - "c5": 6.092771395772777, - "c6": 5.970135856244111, - "c7": 6.070045696250357 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.0984743411928, + "c3": 7.582061950993985, + "c4": 6.065649560795201, + "c5": 4.549237170596386, + "c6": 3.0328247803976005, + "c7": 1.516412390198785 }, "rgb": [222, 0, 59] }, @@ -422097,23 +422097,23 @@ "year": 1819, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -10.25240601491426, - "c2": 21.848411324410563, - "c3": -26.0720547424203, - "c4": 4.584580212673153, - "c5": -0.2794304285625344, - "c6": 20.792665615392004, - "c7": 5.978306499064544 + "points": { + "c1": 8.540330373571841, + "c2": 30.765755350323772, + "c3": -33.12236120442122, + "c4": -23.441397744120792, + "c5": 7.492589941269827, + "c6": -16.921847677761825, + "c7": 17.094361257792492 }, - "vertexSeeds": { - "c1": 5.298081171739495, - "c2": 4.943341121218814, - "c3": 5.119470709449843, - "c4": 5.455117740692356, - "c5": 5.205664351182707, - "c6": 5.342108019264096, - "c7": 5.3134109716774685 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382801, + "c3": 6.541840036985668, + "c4": 5.233472029588534, + "c5": 3.9251040221914004, + "c6": 2.616736014794267, + "c7": 1.3083680073971335 }, "rgb": [58, 15, 49] }, @@ -422124,23 +422124,23 @@ "year": 1819, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -0.576455641423891, - "c2": 34.70915990827935, - "c3": 4.606060261385956, - "c4": 33.87210953615825, - "c5": -27.986314361060987, - "c6": -8.540689797183237, - "c7": -13.926604630644338 + "points": { + "c1": -10.130162023726516, + "c2": -6.960702335290936, + "c3": 14.100901012035628, + "c4": 26.315881466932936, + "c5": -19.2688474533857, + "c6": 31.789093666155992, + "c7": -8.815316927139765 }, - "vertexSeeds": { - "c1": 9.63088783532534, - "c2": 9.969849305428538, - "c3": 9.927048613713715, - "c4": 9.616721184984511, - "c5": 9.726447623352701, - "c6": 9.918073294331196, - "c7": 9.745010420170981 + "offsets": { + "c1": 17.184466019417478, + "c2": 14.729542302357846, + "c3": 12.274618585298212, + "c4": 9.819694868238582, + "c5": 7.364771151178923, + "c6": 4.909847434119291, + "c7": 2.4549237170596325 }, "rgb": [86, 146, 138] }, @@ -422151,23 +422151,23 @@ "year": 1819, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": 22.117859646112194, - "c2": 23.9864316233693, - "c3": 31.219384869519786, - "c4": -5.268717758177402, - "c5": -32.61087067332364, - "c6": -1.6557902695510833, - "c7": -27.247443994754157 + "points": { + "c1": 33.63247212206117, + "c2": 15.047629039380183, + "c3": -4.985575502798028, + "c4": -9.18163780103226, + "c5": 26.87850728471514, + "c6": -36.95010118105578, + "c7": 16.90977930748106 }, - "vertexSeeds": { - "c1": 7.521430557465818, - "c2": 6.962531297503802, - "c3": 7.107576668670355, - "c4": 7.485822742225519, - "c5": 7.15375503952024, - "c6": 7.432224131611609, - "c7": 7.393870811331643 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -422178,23 +422178,23 @@ "year": 1819, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 37.17543738878055, - "c2": 32.12199197939701, - "c3": 26.510343697674287, - "c4": 7.235102621302708, - "c5": 18.22396291328682, - "c6": 31.655922135026756, - "c7": -34.78621696582296 + "points": { + "c1": 3.1499240088624063, + "c2": -38.770584237048524, + "c3": 14.736095496300372, + "c4": -6.906234363562049, + "c5": -7.981689914760942, + "c6": 13.687808062847594, + "c7": -35.56506490212841 }, - "vertexSeeds": { - "c1": 0.4857512953367875, - "c2": 0.4857512953367875, - "c3": 0.4857512953367875, - "c4": 0.4857512953367875, - "c5": 0.4857512953367875, - "c6": 0.4857512953367875, - "c7": 0.4857512953367875 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -422205,23 +422205,23 @@ "year": 1819, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 20.373764094131637, - "c2": -29.692513730904018, - "c3": -19.12953347164219, - "c4": 32.300425169528935, - "c5": 30.202922201293703, - "c6": 8.395415083159023, - "c7": 11.643384862123177 + "points": { + "c1": -37.23182704425832, + "c2": 36.027272828205, + "c3": 2.4308247732326933, + "c4": 23.325046597305928, + "c5": -19.175432112280184, + "c6": 13.963126735539852, + "c7": -36.20516959856366 }, - "vertexSeeds": { - "c1": 0, - "c2": 0, - "c3": 0, - "c4": 0, - "c5": 0, - "c6": 0, - "c7": 0 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -422232,23 +422232,23 @@ "year": 1819, "resistanceReported": false, "duration": 3196800, - "curveSeeds": { - "c1": -9.223380042698981, - "c2": 1.424484767237411, - "c3": 13.308388258951014, - "c4": -1.9828928052467365, - "c5": 7.108462837408487, - "c6": 1.75895170902095, - "c7": -0.8060860241684917 + "points": { + "c1": -1.7060907751966248, + "c2": -5.8357721139650565, + "c3": 12.159433708816762, + "c4": -10.493146414541176, + "c5": 7.71180460901987, + "c6": -7.961601486802706, + "c7": -13.886308067458632 }, - "vertexSeeds": { - "c1": 7.185375156974673, - "c2": 7.472405276510185, - "c3": 7.19898645712643, - "c4": 7.132785793031175, - "c5": 7.213003663585652, - "c6": 7.296752279778941, - "c7": 7.3121471802889415 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.762829403606094, + "c3": 8.969024503005098, + "c4": 7.175219602404073, + "c5": 5.381414701803047, + "c6": 3.5876098012020217, + "c7": 1.793804900601026 }, "rgb": [77, 76, 132] }, @@ -422259,23 +422259,23 @@ "year": 1819, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -31.041976874412008, - "c2": 30.037637304869094, - "c3": 18.725686892770895, - "c4": 5.475476936819305, - "c5": 27.28704560104022, - "c6": 28.953539414973434, - "c7": 4.382494685918601 + "points": { + "c1": -16.213427871682413, + "c2": 26.514620247269747, + "c3": -9.97741769503332, + "c4": -16.61002080847445, + "c5": 1.287669719646793, + "c6": 20.033579318992295, + "c7": -0.3932738704781755 }, - "vertexSeeds": { - "c1": 1.9928002353880894, - "c2": 2.163643038525334, - "c3": 2.1399339165786295, - "c4": 2.106248371390201, - "c5": 2.030531258162905, - "c6": 2.096375718037283, - "c7": 2.0256144096083153 + "offsets": { + "c1": 3.6893203883495143, + "c2": 3.1622746185852995, + "c3": 2.635228848821081, + "c4": 2.1081830790568663, + "c5": 1.581137309292648, + "c6": 1.0540915395284332, + "c7": 0.5270457697642185 }, "rgb": [77, 76, 132] }, @@ -422286,23 +422286,23 @@ "year": 1819, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 16.44828725937051, - "c2": 19.252751019325423, - "c3": 8.020198343056219, - "c4": -4.851367699181608, - "c5": -3.759662750791417, - "c6": 2.5412760619214794, - "c7": 9.126220732486324 + "points": { + "c1": -11.468387003392795, + "c2": 5.073183388520622, + "c3": 17.540845276196137, + "c4": 11.430195333545782, + "c5": -3.9345364054810013, + "c6": -4.182296751946687, + "c7": -2.707000176148604 }, - "vertexSeeds": { - "c1": 0.20624955232514136, - "c2": 0.21010584237472055, - "c3": 0.2086984191093209, - "c4": 0.20690302495598806, - "c5": 0.19699990259715386, - "c6": 0.21268014571418975, - "c7": 0.19568763657619168 + "offsets": { + "c1": 0.3883495145631068, + "c2": 0.33287101248266315, + "c3": 0.2773925104022195, + "c4": 0.2219140083217752, + "c5": 0.16643550624133158, + "c6": 0.11095700416088795, + "c7": 0.05547850208044363 }, "rgb": [222, 0, 59] }, @@ -422313,23 +422313,23 @@ "year": 1820, "resistanceReported": false, "duration": 35769600, - "curveSeeds": { - "c1": -33.59876832327665, - "c2": 1.5728607037678017, - "c3": -37.780302236183, - "c4": 5.197435769752879, - "c5": -20.63923557025686, - "c6": -48.73831810867871, - "c7": 27.564546102666874 + "points": { + "c1": 33.61220266810128, + "c2": 29.932933415757937, + "c3": 47.36441617457664, + "c4": 33.062079990410915, + "c5": -37.309741332472825, + "c6": -10.584282561108594, + "c7": 30.297529091350675 }, - "vertexSeeds": { - "c1": 1.7495676336099397, - "c2": 2.016098285518436, - "c3": 2.03750577016918, - "c4": 1.9524204539120364, - "c5": 1.9956412797466636, - "c6": 2.0085128429676558, - "c7": 1.7602901811880471 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.9403606102635242, + "c3": 2.4503005085529357, + "c4": 1.9602404068423498, + "c5": 1.4701803051317606, + "c6": 0.9801202034211749, + "c7": 0.4900601017105859 }, "rgb": [77, 76, 132] }, @@ -422340,23 +422340,23 @@ "year": 1819, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 14.233738367670853, - "c2": 11.568543919179191, - "c3": -37.353039756036814, - "c4": -23.41478347930372, - "c5": 33.781990297828, - "c6": -13.60295185416383, - "c7": 21.41990144094823 + "points": { + "c1": -38.85166192984673, + "c2": -1.2883767473598837, + "c3": 17.2587229272062, + "c4": -16.924354689777594, + "c5": -39.95105964706862, + "c6": -21.10740394321237, + "c7": -35.010501633263246 }, - "vertexSeeds": { - "c1": 7.856259556914489, - "c2": 7.69344486490119, - "c3": 7.6704151206083075, - "c4": 7.6468034673529335, - "c5": 7.717698386853401, - "c6": 7.6649408371134555, - "c7": 7.697850196508428 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370342, + "c3": 9.408229311141923, + "c4": 7.526583448913563, + "c5": 5.644937586685143, + "c6": 3.7632917244567814, + "c7": 1.8816458622284191 }, "rgb": [77, 76, 132] }, @@ -422367,23 +422367,23 @@ "year": 1819, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -20.715734532613702, - "c2": 15.272507119880565, - "c3": -29.360131809947134, - "c4": -21.349549917549908, - "c5": 18.512549133575888, - "c6": -18.758091466679854, - "c7": -28.45368107448874 + "points": { + "c1": 28.332915634568728, + "c2": 23.2615641733302, + "c3": -11.60344405307351, + "c4": -8.429693479941331, + "c5": 18.56689982920964, + "c6": 8.928528374883975, + "c7": 23.56092669874512 }, - "vertexSeeds": { - "c1": 4.818612091855062, - "c2": 4.762116797432115, - "c3": 4.538470890462105, - "c4": 4.725282232884522, - "c5": 4.46718465437726, - "c6": 4.60107401698098, - "c7": 4.420665712065757 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859922, + "c3": 6.241331484049929, + "c4": 4.993065187239948, + "c5": 3.744798890429961, + "c6": 2.496532593619974, + "c7": 1.248266296809987 }, "rgb": [222, 0, 59] }, @@ -422394,23 +422394,23 @@ "year": 1819, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -5.489744338898877, - "c2": 5.592690654849143, - "c3": -3.2522362643419562, - "c4": 5.012712821783026, - "c5": 15.424797205208883, - "c6": 12.818474314740804, - "c7": -8.05191373734535 + "points": { + "c1": 1.104710482900849, + "c2": 6.240906359892797, + "c3": -14.495216372765933, + "c4": 17.000310606798486, + "c5": 15.838802850775757, + "c6": 25.665147154312145, + "c7": -14.328458783468324 }, - "vertexSeeds": { - "c1": 3.4250547968337974, - "c2": 3.5521464427778087, - "c3": 3.420060385244766, - "c4": 3.7028365225745876, - "c5": 3.466584273683283, - "c6": 3.159086175687117, - "c7": 3.5368288837470874 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703654, + "c4": 3.698566805362922, + "c5": 2.7739251040221906, + "c6": 1.8492834026814589, + "c7": 0.9246417013407318 }, "rgb": [86, 146, 138] }, @@ -422421,23 +422421,23 @@ "year": 1820, "resistanceReported": false, "duration": 42422400, - "curveSeeds": { - "c1": -22.732357134177214, - "c2": 26.611412965055685, - "c3": -39.16225389656557, - "c4": 18.51428334882393, - "c5": 45.702054763148276, - "c6": -0.08007170256818341, - "c7": -34.80983278473714 + "points": { + "c1": -43.37214733794664, + "c2": 20.09308412751806, + "c3": -19.65334041409949, + "c4": -28.281245127489548, + "c5": 4.644519799525739, + "c6": -42.03951784379234, + "c7": -41.79929709741843 }, - "vertexSeeds": { - "c1": 2.56352046872893, - "c2": 2.3684047137509237, - "c3": 2.5126765733229135, - "c4": 2.4670160599886803, - "c5": 2.412318127438878, - "c6": 2.586139517948748, - "c7": 2.4412321119474156 + "offsets": { + "c1": 4.368932038834951, + "c2": 3.744798890429957, + "c3": 3.120665742024962, + "c4": 2.496532593619968, + "c5": 1.8723994452149786, + "c6": 1.248266296809984, + "c7": 0.6241331484049945 }, "rgb": [58, 15, 49] }, @@ -422448,23 +422448,23 @@ "year": 1819, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 15.526411177126356, - "c2": 26.49026626534696, - "c3": -11.892097749809594, - "c4": 25.10742392263588, - "c5": -18.008470152968723, - "c6": -26.553108856032285, - "c7": 10.26733265549116 + "points": { + "c1": 10.785380403545084, + "c2": 4.720586975214971, + "c3": 6.652832751346246, + "c4": -5.848068133938973, + "c5": -28.52387675324352, + "c6": 28.973721013587365, + "c7": -2.5615687068012 }, - "vertexSeeds": { - "c1": 5.357034529330649, - "c2": 5.381397284252528, - "c3": 5.406109018560241, - "c4": 5.287901272846107, - "c5": 5.305562363386842, - "c6": 5.292588010300638, - "c7": 5.491803091577838 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905686, + "c3": 6.842348589921405, + "c4": 5.473878871937124, + "c5": 4.105409153952843, + "c6": 2.736939435968562, + "c7": 1.368469717984281 }, "rgb": [77, 76, 132] }, @@ -422475,23 +422475,23 @@ "year": 1819, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 10.256859681534799, - "c2": -3.2835499024744124, - "c3": 17.951778824016365, - "c4": 18.288092825929418, - "c5": -3.1439390392728086, - "c6": -8.94619308861478, - "c7": -17.46450882233464 + "points": { + "c1": -38.00355654350817, + "c2": 38.4705598779867, + "c3": -14.249548655290472, + "c4": 13.320850114471426, + "c5": 10.4189677551702, + "c6": 5.432373928745108, + "c7": -8.313907975143895 }, - "vertexSeeds": { - "c1": 7.308862300700003, - "c2": 7.433243918451439, - "c3": 7.483880632789482, - "c4": 7.399920724993573, - "c5": 7.447854485913302, - "c6": 7.41014553670983, - "c7": 7.471255329233485 + "offsets": { + "c1": 12.815533980582524, + "c2": 10.984743411927893, + "c3": 9.153952843273226, + "c4": 7.323162274618596, + "c5": 5.4923717059639285, + "c6": 3.661581137309298, + "c7": 1.830790568654667 }, "rgb": [222, 0, 59] }, @@ -422502,23 +422502,23 @@ "year": 1819, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 23.504823688735183, - "c2": -7.491367987825615, - "c3": -14.96036585799758, - "c4": 26.1554582637776, - "c5": -28.99474118577227, - "c6": -0.4247713081973963, - "c7": 1.9621134199560153 + "points": { + "c1": 5.779000020671546, + "c2": -10.048755909114675, + "c3": 23.424983075312404, + "c4": 15.957322469179779, + "c5": 14.320045598804093, + "c6": -27.792927797960665, + "c7": -13.43900662284003 }, - "vertexSeeds": { - "c1": 4.953271800266649, - "c2": 4.900051007749469, - "c3": 5.026754541111132, - "c4": 4.842240018695418, - "c5": 5.038655881079502, - "c6": 5.029656993046272, - "c7": 4.907976274779736 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497931, + "c3": 6.033287101248247, + "c4": 4.8266296809986065, + "c5": 3.6199722607489657, + "c6": 2.4133148404993032, + "c7": 1.2066574202496625 }, "rgb": [77, 76, 132] }, @@ -422529,23 +422529,23 @@ "year": 1819, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 16.950520896771412, - "c2": 21.973200935605856, - "c3": 17.31288238726317, - "c4": 24.055275008775194, - "c5": 0.8292380518550324, - "c6": -27.39584961477386, - "c7": -3.7608385813423837 + "points": { + "c1": 3.7676578774491993, + "c2": 26.586634872862778, + "c3": -19.73917117537222, + "c4": 19.70530713754118, + "c5": 6.122279193641912, + "c6": -17.06281863358025, + "c7": 25.15467384265789 }, - "vertexSeeds": { - "c1": 5.495439919242997, - "c2": 5.5118551625931875, - "c3": 5.480036894858129, - "c4": 5.494778588842346, - "c5": 5.512226821817367, - "c6": 5.49159963018137, - "c7": 5.48253493890274 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463283, + "c3": 6.58807212205278, + "c4": 5.270457697642276, + "c5": 3.9528432732315104, + "c6": 2.635228848821007, + "c7": 1.3176144244105035 }, "rgb": [238, 201, 159] }, @@ -422556,23 +422556,23 @@ "year": 1819, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 20.959040244146177, - "c2": -11.805293766048436, - "c3": -6.513865244900387, - "c4": -0.44335176958850653, - "c5": -25.60113354329676, - "c6": -13.673224322935365, - "c7": -19.708895341378785 + "points": { + "c1": -20.855239335186724, + "c2": -16.791605043225537, + "c3": 7.542769933786413, + "c4": -25.331610086520172, + "c5": -3.827796258595349, + "c6": 15.724360865059648, + "c7": 13.53346321853471 }, - "vertexSeeds": { - "c1": 7.539124581615134, - "c2": 7.593193441524023, - "c3": 7.503696568190465, - "c4": 7.583572330160156, - "c5": 7.521891051807059, - "c6": 7.527107250157219, - "c7": 7.586947506675763 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.87378640776697, + "c3": 9.061488673139117, + "c4": 7.249190938511409, + "c5": 5.436893203883556, + "c6": 3.6245954692557043, + "c7": 1.8122977346278522 }, "rgb": [238, 201, 159] }, @@ -422583,23 +422583,23 @@ "year": 1819, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -21.774561155643845, - "c2": 26.094339512521607, - "c3": 11.31835865499383, - "c4": 11.913022258199376, - "c5": 7.157780702448619, - "c6": 8.283735387842654, - "c7": -22.514344359993924 + "points": { + "c1": -7.752863352913238, + "c2": -18.5475538577203, + "c3": 5.304672599744514, + "c4": 4.692059559457476, + "c5": -23.145790712727745, + "c6": -26.88624435546781, + "c7": -0.2364937725860763 }, - "vertexSeeds": { - "c1": 6.3494064390636, - "c2": 6.252149196121653, - "c3": 6.317260532136948, - "c4": 6.2561717138001685, - "c5": 6.300937188043587, - "c6": 6.277717789152236, - "c7": 6.316768576235077 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192755, + "c3": 7.582061950994, + "c4": 6.06564956079517, + "c5": 4.549237170596416, + "c6": 3.032824780397585, + "c7": 1.5164123901988302 }, "rgb": [238, 201, 159] }, @@ -422610,23 +422610,23 @@ "year": 1819, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 13.533023770208573, - "c2": -8.96274798462563, - "c3": 14.468426308508313, - "c4": -9.716663948548582, - "c5": 2.160532708700405, - "c6": 8.858263473445518, - "c7": -1.7630203079083842 + "points": { + "c1": 17.09002208448244, + "c2": -12.498290251255668, + "c3": -22.338617087060616, + "c4": 6.45055252787003, + "c5": -30.000933545178135, + "c6": -30.082418120987167, + "c7": 19.208574363048605 }, - "vertexSeeds": { - "c1": 6.648794735404347, - "c2": 6.633776878166726, - "c3": 6.60585217161919, - "c4": 6.666055817786571, - "c5": 6.5995838159268425, - "c6": 6.578681467448855, - "c7": 6.596233209473804 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876561, + "c3": 7.975034674063801, + "c4": 6.380027739251041, + "c5": 4.785020804438281, + "c6": 3.1900138696255205, + "c7": 1.5950069348127602 }, "rgb": [86, 146, 138] }, @@ -422637,23 +422637,23 @@ "year": 1819, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -5.437141986534641, - "c2": 2.6525142732864246, - "c3": 18.689956799620354, - "c4": 26.427992496027308, - "c5": 3.485104065659577, - "c6": -0.8671564696904497, - "c7": 3.428679306842337 + "points": { + "c1": 4.298618741020292, + "c2": -12.378594348920206, + "c3": 4.617149577583419, + "c4": -20.647218046050675, + "c5": 21.493303581307728, + "c6": -28.101178974810182, + "c7": 5.112495330402879 }, - "vertexSeeds": { - "c1": 7.3105088045491335, - "c2": 7.313018105972006, - "c3": 7.295804216111456, - "c4": 7.273673048710584, - "c5": 7.266842625244838, - "c6": 7.320350196476534, - "c7": 7.292007668916771 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284308, + "c3": 8.784096162736901, + "c4": 7.027276930189491, + "c5": 5.2704576976422235, + "c6": 3.513638465094816, + "c7": 1.756819232547408 }, "rgb": [222, 0, 59] }, @@ -422664,23 +422664,23 @@ "year": 1820, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": 17.072322144042836, - "c2": -20.96019520918897, - "c3": -31.162252754152927, - "c4": 27.54771762215809, - "c5": 30.89914381622002, - "c6": 17.262344252158357, - "c7": -6.542478088669711 + "points": { + "c1": 5.519555516105392, + "c2": -29.506746382447247, + "c3": -28.827465524829485, + "c4": 27.84124835346384, + "c5": -25.464893477896315, + "c6": -1.8935765015595791, + "c7": 8.657354483571282 }, - "vertexSeeds": { - "c1": 9.009899419837145, - "c2": 8.467066251856826, - "c3": 9.14418453524822, - "c4": 8.796395212976966, - "c5": 8.978032465262496, - "c6": 8.888805962225627, - "c7": 8.901129828974474 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105416, + "c3": 10.980120203421187, + "c4": 8.784096162736937, + "c5": 6.588072122052708, + "c6": 4.39204808136848, + "c7": 2.196024040684251 }, "rgb": [58, 15, 49] }, @@ -422691,23 +422691,23 @@ "year": 1820, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": 28.098249963270398, - "c2": -14.248910428433984, - "c3": -3.760894546815237, - "c4": 19.516683076744137, - "c5": -2.4782242404128176, - "c6": -25.465214856986428, - "c7": 18.087358431746857 + "points": { + "c1": -22.865083164217452, + "c2": 22.489334746882683, + "c3": 13.086951418164588, + "c4": 22.543587411478974, + "c5": -32.39039444477178, + "c6": -32.74434038460614, + "c7": 22.85139865326496 }, - "vertexSeeds": { - "c1": 5.432921724987397, - "c2": 6.932911469630941, - "c3": 5.752666104512187, - "c4": 5.175899969788779, - "c5": 8.267533902351154, - "c6": 6.480218128251326, - "c7": 6.435637251698985 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295423, + "c3": 9.939898289412852, + "c4": 7.951918631530281, + "c5": 5.963938973647712, + "c6": 3.9759593157651407, + "c7": 1.9879796578825693 }, "rgb": [86, 146, 138] }, @@ -422718,23 +422718,23 @@ "year": 1819, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -8.52283930905283, - "c2": -13.760859668472484, - "c3": 6.822551842495294, - "c4": 22.42087757524967, - "c5": -0.8216180166721898, - "c6": -17.857868477659423, - "c7": -22.746887701096423 + "points": { + "c1": -26.756815775682583, + "c2": -12.530237829400733, + "c3": -23.944884339040726, + "c4": -25.434602032828426, + "c5": -5.0117513485940925, + "c6": -3.4268804208295798, + "c7": -15.970736594507187 }, - "vertexSeeds": { - "c1": 10.91623599627016, - "c2": 11.173026615235422, - "c3": 11.041731222293613, - "c4": 11.27591508851034, - "c5": 11.076486910621394, - "c6": 11.12897172226394, - "c7": 11.313450884525722 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.588072122052697, + "c3": 13.823393435043904, + "c4": 11.058714748035172, + "c5": 8.294036061026379, + "c6": 5.529357374017586, + "c7": 2.764678687008793 }, "rgb": [77, 76, 132] }, @@ -422745,23 +422745,23 @@ "year": 1820, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": -4.119448923507967, - "c2": 17.59506499297155, - "c3": -35.66422959482298, - "c4": 22.92815561999675, - "c5": 18.317650822327018, - "c6": -22.02261999799574, - "c7": -25.97262832652997 + "points": { + "c1": -17.295385449957944, + "c2": -11.64020711900777, + "c3": -14.8416567128744, + "c4": -29.734265086842107, + "c5": -7.691645842520785, + "c6": -17.470503682711414, + "c7": 23.806364214014685 }, - "vertexSeeds": { - "c1": 0.21373056994818654, - "c2": 0.21373056994818654, - "c3": 0.21373056994818654, - "c4": 0.21373056994818654, - "c5": 0.21373056994818654, - "c6": 0.21373056994818654, - "c7": 0.21373056994818654 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -422772,23 +422772,23 @@ "year": 1820, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -25.047229216342163, - "c2": 6.937227700755763, - "c3": -16.76312402045039, - "c4": 16.57355873302393, - "c5": -28.22225922514493, - "c6": -0.48711754627583304, - "c7": -6.108200036044881 + "points": { + "c1": -19.250158254193824, + "c2": 0.24172896457256599, + "c3": -34.623015321191254, + "c4": 6.794536465862933, + "c5": 14.351135852090735, + "c6": 35.140810434687445, + "c7": -15.644733502815267 }, - "vertexSeeds": { - "c1": 7.02053025451928, - "c2": 7.41650524686942, - "c3": 7.167324087393162, - "c4": 6.9566559626840565, - "c5": 7.175941508658225, - "c6": 7.265826891030335, - "c7": 7.141632353970579 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -422799,23 +422799,23 @@ "year": 1820, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 33.464611947244954, - "c2": 16.47827253728824, - "c3": -4.882444011980148, - "c4": -19.064251639206923, - "c5": -33.733766119291666, - "c6": 28.028294456271986, - "c7": -26.845573689762013 + "points": { + "c1": -15.587621360411216, + "c2": 8.392731898215388, + "c3": -19.773024956727852, + "c4": 30.63377388416611, + "c5": -2.3723471670237544, + "c6": -1.7243802561252437, + "c7": -9.795012589836276 }, - "vertexSeeds": { - "c1": 7.09095874396977, - "c2": 6.856272513726877, - "c3": 7.02713966578643, - "c4": 6.909523834796446, - "c5": 7.38698474813862, - "c6": 7.176352831549348, - "c7": 6.928141713121437 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [77, 76, 132] }, @@ -422826,23 +422826,23 @@ "year": 1819, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": 10.01777617606544, - "c2": -7.209749507689571, - "c3": 15.72651675245752, - "c4": -0.6923026438377278, - "c5": -4.586953755628393, - "c6": 14.357350288091439, - "c7": -10.954434867316015 + "points": { + "c1": 1.2237811410880113, + "c2": -11.528857012234342, + "c3": -2.4376691392326464, + "c4": -5.419630682039376, + "c5": -15.8062663267243, + "c6": -7.2937419137082316, + "c7": 13.69360418390309 }, - "vertexSeeds": { - "c1": 5.868805173232315, - "c2": 5.871441566685927, - "c3": 5.870466779713322, - "c4": 5.885741640183954, - "c5": 5.880493257875223, - "c6": 5.881425380087873, - "c7": 5.869023865000729 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227222, + "c3": 7.027276930189632, + "c4": 5.621821544151482, + "c5": 4.216366158113891, + "c6": 2.810910772075741, + "c7": 1.40545538603815 }, "rgb": [86, 146, 138] }, @@ -422853,23 +422853,23 @@ "year": 1819, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 17.286013504498325, - "c2": 4.850112931256906, - "c3": -19.316926618580656, - "c4": -19.658941443169276, - "c5": -4.701710061850207, - "c6": 17.370626139454036, - "c7": -11.110525113565386 + "points": { + "c1": 25.29094125469967, + "c2": 6.001657719574158, + "c3": -20.40119693205446, + "c4": 14.499579635488377, + "c5": -1.629332229141049, + "c6": 27.269117913305056, + "c7": 8.56187184337232 }, - "vertexSeeds": { - "c1": 7.57115051769141, - "c2": 7.510073222643599, - "c3": 7.508021758779019, - "c4": 7.571288560781049, - "c5": 7.569729930904585, - "c6": 7.562297983229403, - "c7": 7.5514794613436615 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.87378640776697, + "c3": 9.061488673139117, + "c4": 7.249190938511409, + "c5": 5.436893203883556, + "c6": 3.6245954692557043, + "c7": 1.8122977346278522 }, "rgb": [86, 146, 138] }, @@ -422880,23 +422880,23 @@ "year": 1820, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": 40.60824531677294, - "c2": -0.44849868960286443, - "c3": -14.975036931966645, - "c4": -6.953650706422394, - "c5": 14.208456526378491, - "c6": -2.367371585528595, - "c7": -3.5804433721942956 + "points": { + "c1": 34.65810187427256, + "c2": -19.41769163090152, + "c3": 5.070264638229347, + "c4": -19.384086574038353, + "c5": -34.90001612173282, + "c6": -24.943576731651547, + "c7": 28.758348979891423 }, - "vertexSeeds": { - "c1": 5.1054708610971735, - "c2": 5.496842594045465, - "c3": 5.082358154913331, - "c4": 5.3504510177476154, - "c5": 5.477553243626909, - "c6": 5.290205183094995, - "c7": 5.130405442255827 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543699, + "c3": 6.6343042071197385, + "c4": 5.307443365695799, + "c5": 3.98058252427184, + "c6": 2.6537216828478996, + "c7": 1.3268608414239595 }, "rgb": [58, 15, 49] }, @@ -422907,23 +422907,23 @@ "year": 1819, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 10.423266282587875, - "c2": -23.932949403557892, - "c3": -20.25572193057015, - "c4": 29.530552582796858, - "c5": 26.58093110136759, - "c6": -2.449162796159854, - "c7": -22.103730864756095 + "points": { + "c1": 7.676368430301892, + "c2": 3.8970008520449966, + "c3": -3.796297836324733, + "c4": -9.469224110677043, + "c5": 7.3622900865722585, + "c6": -2.002618042130649, + "c7": -7.162486742141208 }, - "vertexSeeds": { - "c1": 7.991784746142011, - "c2": 8.23464604034197, - "c3": 7.2769098536281085, - "c4": 8.119480112836287, - "c5": 7.823808416170007, - "c6": 7.531262408309054, - "c7": 7.927697639771035 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214977, + "c3": 9.893666204345811, + "c4": 7.914932963476646, + "c5": 5.936199722607482, + "c6": 3.957466481738316, + "c7": 1.9787332408691654 }, "rgb": [86, 146, 138] }, @@ -422934,23 +422934,23 @@ "year": 1819, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -15.448003878852425, - "c2": 19.05684133266052, - "c3": 10.724620126399568, - "c4": 23.462216498064205, - "c5": 1.6971399984198818, - "c6": -27.0739136530655, - "c7": -1.53200078791399 + "points": { + "c1": 7.878599296348678, + "c2": 27.341653265690166, + "c3": 17.8221190096875, + "c4": 22.053999884972473, + "c5": -29.120006280732202, + "c6": -5.08521586766032, + "c7": -26.71551160041157 }, - "vertexSeeds": { - "c1": 9.694633966908901, - "c2": 10.055049094562536, - "c3": 9.467574857206648, - "c4": 10.261772163413069, - "c5": 9.556490325992293, - "c6": 9.532894222098864, - "c7": 10.015240085193092 + "offsets": { + "c1": 17.216828478964402, + "c2": 14.757281553398052, + "c3": 12.297734627831703, + "c4": 9.838187702265397, + "c5": 7.378640776699026, + "c6": 4.919093851132699, + "c7": 2.4595469255663494 }, "rgb": [77, 76, 132] }, @@ -422961,23 +422961,23 @@ "year": 1819, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 6.610592940213529, - "c2": 23.865839100329552, - "c3": 6.703970879567869, - "c4": 11.645431244324882, - "c5": 8.594752062708466, - "c6": -24.16255152772456, - "c7": -14.761334373525349 + "points": { + "c1": 4.185398056351346, + "c2": 9.315783472917033, + "c3": 26.274873493990953, + "c4": 21.10230523696778, + "c5": 6.691303148384584, + "c6": -5.859137822382802, + "c7": -7.734104500458756 }, - "vertexSeeds": { - "c1": 10.778495035288847, - "c2": 11.28995648332313, - "c3": 10.384126071251265, - "c4": 11.120571569562477, - "c5": 10.462333534170583, - "c6": 11.05592507045298, - "c7": 10.780834754272131 + "offsets": { + "c1": 18.867313915857604, + "c2": 16.17198335644936, + "c3": 13.476652797041165, + "c4": 10.781322237632923, + "c5": 8.08599167822468, + "c6": 5.390661118816439, + "c7": 2.695330559408242 }, "rgb": [58, 15, 49] }, @@ -422988,23 +422988,23 @@ "year": 1820, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -27.24788100174759, - "c2": 19.683108924003406, - "c3": -29.799090431653294, - "c4": -14.337103560473402, - "c5": -22.286707858230653, - "c6": 9.64606164738558, - "c7": 20.068412985141173 + "points": { + "c1": -28.948460932993278, + "c2": 15.224748301295634, + "c3": -8.456019113584738, + "c4": 15.512972440505045, + "c5": 20.86371066053701, + "c6": -27.05888062406058, + "c7": -9.470453834951915 }, - "vertexSeeds": { - "c1": 9.311275872985767, - "c2": 9.234562536895774, - "c3": 7.281916127770487, - "c4": 5.978407153263817, - "c5": 9.58397708402416, - "c6": 8.681915791266718, - "c7": 6.990246443906813 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513177, + "c3": 11.789181692094315, + "c4": 9.431345353675452, + "c5": 7.073509015256589, + "c6": 4.715672676837726, + "c7": 2.3578363384188608 }, "rgb": [58, 15, 49] }, @@ -423015,23 +423015,23 @@ "year": 1819, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -16.59848370246149, - "c2": 8.879587496659635, - "c3": 4.036955249789518, - "c4": 11.51102272967282, - "c5": 24.19381097989263, - "c6": -2.114623919312212, - "c7": -16.282840708212277 + "points": { + "c1": -1.9761233826477778, + "c2": 18.68492330117611, + "c3": -9.027288513961707, + "c4": -18.264811576092583, + "c5": -20.7284596485519, + "c6": 8.93329394947325, + "c7": 16.891387972834874 }, - "vertexSeeds": { - "c1": 4.911572316935448, - "c2": 4.959952651648126, - "c3": 4.75318643242928, - "c4": 4.671300004964525, - "c5": 4.693667034430924, - "c6": 4.709194187527858, - "c7": 4.90295531354425 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538133, + "c3": 6.056403143781788, + "c4": 4.845122515025422, + "c5": 3.6338418862690665, + "c6": 2.422561257512711, + "c7": 1.2112806287563556 }, "rgb": [77, 76, 132] }, @@ -423042,23 +423042,23 @@ "year": 1819, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 2.8661420506121544, - "c2": 28.82589726892575, - "c3": -4.906785012185686, - "c4": -21.284076381510165, - "c5": -27.77012292292371, - "c6": -3.568033065895193, - "c7": -13.878832110660912 + "points": { + "c1": 0.9258732243185293, + "c2": -31.634752928622056, + "c3": 30.643384669282035, + "c4": 11.700015644269172, + "c5": -28.074198832401116, + "c6": 0.9893090567390743, + "c7": -8.356638743822295 }, - "vertexSeeds": { - "c1": 2.332759160376642, - "c2": 2.3352104774205933, - "c3": 2.3509656353144934, - "c4": 2.344073316100937, - "c5": 2.3494748547791673, - "c6": 2.34085721722709, - "c7": 2.333552260308546 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070898, + "c3": 2.820157189089204, + "c4": 2.2561257512713744, + "c5": 1.6920943134535449, + "c6": 1.1280628756357152, + "c7": 0.5640314378178296 }, "rgb": [238, 201, 159] }, @@ -423069,23 +423069,23 @@ "year": 1819, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -10.314950753996902, - "c2": 6.219563710519555, - "c3": 0.518282143380361, - "c4": 5.753127364429346, - "c5": -0.5393320715655996, - "c6": -10.986522173914379, - "c7": 13.874727577990903 + "points": { + "c1": 22.424057111823103, + "c2": -1.7928869800337282, + "c3": 11.290538529607737, + "c4": 4.320590626935289, + "c5": -10.700106032856194, + "c6": -11.702663049569061, + "c7": -21.266412701897043 }, - "vertexSeeds": { - "c1": 0.23316062176165803, - "c2": 0.23316062176165803, - "c3": 0.23316062176165803, - "c4": 0.23316062176165803, - "c5": 0.23316062176165803, - "c6": 0.23316062176165803, - "c7": 0.23316062176165803 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -423096,23 +423096,23 @@ "year": 1820, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -34.51335000782785, - "c2": -14.671006415945659, - "c3": -8.281960277875356, - "c4": -0.6524276840188463, - "c5": -2.8753794470164706, - "c6": 31.95768251549724, - "c7": -35.79957486519657 + "points": { + "c1": -34.540038177531976, + "c2": 3.755049777767617, + "c3": -26.637615149603622, + "c4": -21.126844421709905, + "c5": 33.40234699999543, + "c6": -31.95236598132032, + "c7": -0.4739296644669224 }, - "vertexSeeds": { - "c1": 6.008413922057183, - "c2": 6.313676469382871, - "c3": 6.152901521796326, - "c4": 6.0730585000035875, - "c5": 6.2269538148281995, - "c6": 5.984235414325247, - "c7": 5.960723909343638 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393897, + "c3": 7.697642163661581, + "c4": 6.158113730929264, + "c5": 4.618585298196948, + "c6": 3.079056865464632, + "c7": 1.539528432732316 }, "rgb": [238, 201, 159] }, @@ -423123,23 +423123,23 @@ "year": 1820, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 28.26171097584021, - "c2": 20.751675185817042, - "c3": -15.894368973166475, - "c4": -23.67771534806639, - "c5": -2.5036644186349584, - "c6": 4.147895474300988, - "c7": -26.57050862124661 + "points": { + "c1": -3.1055923773180822, + "c2": 23.7562601791442, + "c3": -27.502412369954033, + "c4": 13.767151411511428, + "c5": 6.687840447723495, + "c6": -28.389033443015478, + "c7": 20.181390666863628 }, - "vertexSeeds": { - "c1": 11.010322632909189, - "c2": 9.860993900052945, - "c3": 11.30811788493491, - "c4": 12.918686331977302, - "c5": 11.88295219163446, - "c6": 11.68738669345529, - "c7": 10.729865753780594 + "offsets": { + "c1": 21.68284789644013, + "c2": 18.58529819694868, + "c3": 15.487748497457236, + "c4": 12.390198797965787, + "c5": 9.29264909847434, + "c6": 6.195099398982894, + "c7": 3.097549699491447 }, "rgb": [58, 15, 49] }, @@ -423150,23 +423150,23 @@ "year": 1820, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 31.100958340124606, - "c2": -24.973492804860506, - "c3": 18.434468901372995, - "c4": -21.06356790937003, - "c5": -12.712616635919936, - "c6": -29.809246248921085, - "c7": 8.348362048734721 + "points": { + "c1": -3.8218858502951747, + "c2": 10.414888168907183, + "c3": 18.88365464963878, + "c4": -11.409883628708481, + "c5": 33.18799413331956, + "c6": 26.97373590186656, + "c7": -21.567810324163666 }, - "vertexSeeds": { - "c1": 7.871230256412139, - "c2": 8.052730737627137, - "c3": 7.733780350489753, - "c4": 8.228976824208166, - "c5": 7.627120190633807, - "c6": 7.905416075353241, - "c7": 8.23880420151406 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.03883495145632, + "c3": 10.032362459546922, + "c4": 8.025889967637546, + "c5": 6.019417475728149, + "c6": 4.012944983818773, + "c7": 2.0064724919093964 }, "rgb": [58, 15, 49] }, @@ -423177,23 +423177,23 @@ "year": 1820, "resistanceReported": false, "duration": 27475200, - "curveSeeds": { - "c1": -36.482421062576236, - "c2": -4.96462131483792, - "c3": -29.739853639199655, - "c4": -39.87240436822324, - "c5": 31.673337962456728, - "c6": -4.143508604344703, - "c7": 31.311827374687383 + "points": { + "c1": -25.770270284387983, + "c2": -9.987888000415943, + "c3": -14.915015690377661, + "c4": -1.5395917698037138, + "c5": -38.71130302057087, + "c6": -6.535422883975762, + "c7": -9.876260175367747 }, - "vertexSeeds": { - "c1": 11.578464406701555, - "c2": 12.011863862459675, - "c3": 11.230189490256036, - "c4": 11.271570553564391, - "c5": 11.724992813563047, - "c6": 11.43639947516194, - "c7": 11.551306716282474 + "offsets": { + "c1": 20.097087378640776, + "c2": 17.226074895977813, + "c3": 14.35506241331485, + "c4": 11.484049930651887, + "c5": 8.613037447988923, + "c6": 5.7420249653259265, + "c7": 2.8710124826629633 }, "rgb": [86, 146, 138] }, @@ -423204,23 +423204,23 @@ "year": 1820, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 10.458514829228456, - "c2": -20.343394411847633, - "c3": -33.67541009047352, - "c4": 23.58041174016119, - "c5": -2.3166270075939366, - "c6": 11.7767715928994, - "c7": 22.177167657206617 + "points": { + "c1": 6.719450647085928, + "c2": -37.240476173551514, + "c3": -27.52154825053777, + "c4": -34.38867797900266, + "c5": 2.8335284120386746, + "c6": -25.917345409968572, + "c7": 31.49860682705733 }, - "vertexSeeds": { - "c1": 7.955170904911578, - "c2": 7.6989165802021695, - "c3": 7.817703275483689, - "c4": 7.773966013460219, - "c5": 7.5258265345988375, - "c6": 8.077783707265647, - "c7": 8.056695835275884 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094312, + "c3": 9.824318076745255, + "c4": 7.859454461396221, + "c5": 5.894590846047165, + "c6": 3.9297272306981106, + "c7": 1.9648636153490553 }, "rgb": [77, 76, 132] }, @@ -423231,23 +423231,23 @@ "year": 1820, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 31.082002983702807, - "c2": 9.054838282750516, - "c3": -4.285955638198313, - "c4": 1.4527776207770273, - "c5": -11.520714963196422, - "c6": 33.63066701022717, - "c7": -33.375067590247745 + "points": { + "c1": -6.555251263858036, + "c2": 12.011498884271425, + "c3": 2.6375874532551506, + "c4": -0.8206996458751092, + "c5": 28.412179740249925, + "c6": -17.206347352550797, + "c7": 2.302253577523281 }, - "vertexSeeds": { - "c1": 3.9810809197973005, - "c2": 4.027723720990297, - "c3": 4.3463259386775706, - "c4": 4.312167273329527, - "c5": 4.4719984595934275, - "c6": 4.038353282427662, - "c7": 4.035189703071059 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331483, + "c3": 5.362921867776237, + "c4": 4.290337494220989, + "c5": 3.2177531206657415, + "c6": 2.1451687471104943, + "c7": 1.0725843735552472 }, "rgb": [77, 76, 132] }, @@ -423258,23 +423258,23 @@ "year": 1820, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -28.79897196989444, - "c2": -31.161502580935473, - "c3": -3.154354155599375, - "c4": -24.145216050026594, - "c5": -2.2716720961179924, - "c6": 0.6372120405680732, - "c7": 24.9884930268056 + "points": { + "c1": 11.446892031281706, + "c2": 30.666103024301016, + "c3": -6.697285488485928, + "c4": -13.090785800986655, + "c5": 21.880449520308446, + "c6": -15.67644739131514, + "c7": -21.375383282174248 }, - "vertexSeeds": { - "c1": 7.533403301250062, - "c2": 7.6586239518419115, - "c3": 8.120601162352004, - "c4": 8.027013134855967, - "c5": 7.6655980249773235, - "c6": 8.172751593363294, - "c7": 7.911896426152617 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134532, + "c3": 9.847434119278773, + "c4": 7.877947295423015, + "c5": 5.908460471567256, + "c6": 3.9389736477115176, + "c7": 1.9694868238557588 }, "rgb": [238, 201, 159] }, @@ -423285,23 +423285,23 @@ "year": 1819, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -16.68775024118132, - "c2": 22.051497570097013, - "c3": -22.184053633259914, - "c4": 3.282911987264928, - "c5": 17.043499459590933, - "c6": 24.600690570687334, - "c7": -11.049679862033281 + "points": { + "c1": 16.415812819962547, + "c2": 16.75587431936411, + "c3": 23.907921059893, + "c4": 24.612986176550102, + "c5": 10.302096548256827, + "c6": -2.511149763078972, + "c7": 7.046296295054923 }, - "vertexSeeds": { - "c1": 10.858805410872115, - "c2": 10.722089665971906, - "c3": 10.613306758155222, - "c4": 10.621618216467212, - "c5": 10.868775873671758, - "c6": 10.553299873594591, - "c7": 10.68972257382128 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.61719833564491, + "c3": 13.014331946370827, + "c4": 10.41146555709664, + "c5": 7.808599167822455, + "c6": 5.205732778548268, + "c7": 2.602866389274186 }, "rgb": [77, 76, 132] }, @@ -423312,23 +423312,23 @@ "year": 1820, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -4.4623273406234745, - "c2": -3.434278689622321, - "c3": 3.040691634226377, - "c4": 21.971248049704585, - "c5": -11.193811901711143, - "c6": -32.108440822604834, - "c7": -18.11113879356872 + "points": { + "c1": 31.826466642210903, + "c2": 28.78983003693481, + "c3": -29.28026529908824, + "c4": 15.977149202966103, + "c5": -10.283262715598319, + "c6": -32.74931902657417, + "c7": 30.60129948106389 }, - "vertexSeeds": { - "c1": 7.27134499172511, - "c2": 7.354442928106815, - "c3": 7.296298367626285, - "c4": 7.470260163229314, - "c5": 7.352417631836218, - "c6": 7.5372993017202745, - "c7": 6.923200422768178 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [86, 146, 138] }, @@ -423339,23 +423339,23 @@ "year": 1820, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 21.17596165896243, - "c2": -30.194926021505744, - "c3": 3.4251270125890727, - "c4": -14.409351179024899, - "c5": -18.82719639512055, - "c6": -7.668190325690439, - "c7": 22.81784668790526 + "points": { + "c1": -31.02870602038028, + "c2": 16.645773379866114, + "c3": 7.159229016918886, + "c4": -11.298599677138363, + "c5": 14.8272456672548, + "c6": 8.352621375604556, + "c7": 10.460298754721812 }, - "vertexSeeds": { - "c1": 9.370949726233405, - "c2": 10.06339400485132, - "c3": 9.795236377479599, - "c4": 9.628064963948892, - "c5": 9.537883207424844, - "c6": 10.22988046444544, - "c7": 9.613662096910838 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [77, 76, 132] }, @@ -423366,23 +423366,23 @@ "year": 1820, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 2.6868126059091537, - "c2": 26.218663185273407, - "c3": 11.701822306861146, - "c4": 5.156978400094708, - "c5": -32.66187358355327, - "c6": -9.230303417811427, - "c7": 11.264374401532535 + "points": { + "c1": -16.549669741603104, + "c2": -14.329174346563917, + "c3": -29.755405663595305, + "c4": -28.661893311970882, + "c5": 3.2678966415809114, + "c6": 29.16554660865515, + "c7": 3.2807212201742644 }, - "vertexSeeds": { - "c1": 6.9999639612239735, - "c2": 7.36230094225577, - "c3": 7.47593771791366, - "c4": 6.989629745255728, - "c5": 7.4716460553711785, - "c6": 7.303434936383848, - "c7": 7.531588618275388 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [58, 15, 49] }, @@ -423393,23 +423393,23 @@ "year": 1820, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 11.994932791749239, - "c2": -16.662116560082293, - "c3": 14.324070578263917, - "c4": 4.319758358061922, - "c5": 20.509933601749598, - "c6": -27.34428558155488, - "c7": -22.074449250355087 + "points": { + "c1": 5.879818114679676, + "c2": 22.3366680347056, + "c3": -23.936618944870713, + "c4": 4.446769949651124, + "c5": -19.409810404567942, + "c6": -3.4015965860250006, + "c7": -20.870300400095253 }, - "vertexSeeds": { - "c1": 5.974010209838516, - "c2": 5.845423628512543, - "c3": 5.591395028946137, - "c4": 5.994554043978255, - "c5": 5.685438761450072, - "c6": 5.841054594165728, - "c7": 5.896179366400506 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.59916782246879, + "c3": 7.165973185390669, + "c4": 5.732778548312532, + "c5": 4.299583911234395, + "c6": 2.8663892741562567, + "c7": 1.4331946370781374 }, "rgb": [58, 15, 49] }, @@ -423420,23 +423420,23 @@ "year": 1820, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -25.8482234871937, - "c2": -13.099336324765105, - "c3": 19.31539866674263, - "c4": 9.31893658499127, - "c5": -1.2641502881228064, - "c6": -33.894893348495756, - "c7": -20.52624582745979 + "points": { + "c1": -17.69237928461933, + "c2": -23.061472031191997, + "c3": -1.2359075361714034, + "c4": -19.219044969160834, + "c5": 12.584774159348179, + "c6": 31.52556844406373, + "c7": -27.60065038691706 }, - "vertexSeeds": { - "c1": 7.311342468179386, - "c2": 6.892458483200952, - "c3": 6.852871991958903, - "c4": 7.347357325222289, - "c5": 7.223536455369529, - "c6": 7.220910626076395, - "c7": 6.828990380114161 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485429, + "c3": 8.899676375404534, + "c4": 7.119741100323619, + "c5": 5.339805825242724, + "c6": 3.5598705501618095, + "c7": 1.7799352750809148 }, "rgb": [77, 76, 132] }, @@ -423447,23 +423447,23 @@ "year": 1819, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": -3.050610287683618, - "c2": 15.422644597528286, - "c3": 12.162040274657425, - "c4": 18.976578039503, - "c5": 19.155166136736288, - "c6": 17.94403717423563, - "c7": -1.1394952942077268 + "points": { + "c1": -7.224456414818118, + "c2": -19.74578382438976, + "c3": -3.369528958505718, + "c4": 10.011437083707008, + "c5": 18.505222504023873, + "c6": -14.006319389305094, + "c7": 7.865859240090099 }, - "vertexSeeds": { - "c1": 0.605872612065315, - "c2": 0.6267083007641068, - "c3": 0.6290222964010421, - "c4": 0.6600992373839943, - "c5": 0.6284211612986775, - "c6": 0.6319912862520006, - "c7": 0.620011072440147 + "offsets": { + "c1": 1.035598705501618, + "c2": 0.8876560332871004, + "c3": 0.7397133610725853, + "c4": 0.5917706888580677, + "c5": 0.4438280166435502, + "c6": 0.2958853444290327, + "c7": 0.14794267221451757 }, "rgb": [86, 146, 138] }, @@ -423474,23 +423474,23 @@ "year": 1820, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 4.159093946267511, - "c2": -26.16167733029259, - "c3": -17.923873660827496, - "c4": 10.336596608627964, - "c5": -1.4033980161842372, - "c6": -25.155048701592293, - "c7": -14.165984982789041 + "points": { + "c1": -31.872535895368973, + "c2": 24.840682326474507, + "c3": 9.02483089157493, + "c4": -8.94365208689625, + "c5": 22.234142951936512, + "c6": -20.517234148699778, + "c7": -22.112473215986114 }, - "vertexSeeds": { - "c1": 9.539339792118813, - "c2": 9.23242538603787, - "c3": 10.04678413174294, - "c4": 9.63356660953058, - "c5": 9.355437785497173, - "c6": 9.206001945413805, - "c7": 10.158391533947317 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [238, 201, 159] }, @@ -423501,23 +423501,23 @@ "year": 1819, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 12.17391058777293, - "c2": -13.251359145433533, - "c3": 11.540609039987078, - "c4": 9.29255201360549, - "c5": 2.034677839436629, - "c6": -6.595037649334907, - "c7": 11.958385248544367 + "points": { + "c1": 7.8880457185370005, + "c2": -18.741726672608294, + "c3": 14.584459018260716, + "c4": -13.621295392609635, + "c5": -18.524181285365948, + "c6": 12.97002872572709, + "c7": 21.561265633159877 }, - "vertexSeeds": { - "c1": 0.15544041450777202, - "c2": 0.15544041450777202, - "c3": 0.15544041450777202, - "c4": 0.15544041450777202, - "c5": 0.15544041450777202, - "c6": 0.15544041450777202, - "c7": 0.15544041450777202 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -423528,23 +423528,23 @@ "year": 1820, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -22.855540122187215, - "c2": -11.871553083453408, - "c3": -9.260790219234732, - "c4": -15.777479936404198, - "c5": 24.51012626401124, - "c6": -1.8138629661833754, - "c7": 6.742013417658498 + "points": { + "c1": -24.30516273884561, + "c2": 0.16753521905739532, + "c3": -8.171976802680348, + "c4": -3.1521613756347584, + "c5": -15.059631317075732, + "c6": 12.206404343710332, + "c7": -12.953365911342601 }, - "vertexSeeds": { - "c1": 9.258623042491626, - "c2": 9.38574593954375, - "c3": 8.695006683327438, - "c4": 9.029511354973506, - "c5": 9.191482070146776, - "c6": 9.666181613335176, - "c7": 9.231515264131291 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110953, + "c3": 11.558021266759125, + "c4": 9.246417013407296, + "c5": 6.934812760055486, + "c6": 4.623208506703657, + "c7": 2.3116042533518284 }, "rgb": [222, 0, 59] }, @@ -423555,23 +423555,23 @@ "year": 1820, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -24.840013357630323, - "c2": 6.492655456871244, - "c3": 11.176230494986672, - "c4": 3.260821478851522, - "c5": 7.427430686090776, - "c6": -22.04760810206197, - "c7": 22.904135869262984 + "points": { + "c1": -9.306591244561947, + "c2": -24.1869476987032, + "c3": -21.42145846787512, + "c4": 2.9999542870434723, + "c5": 2.293577205706736, + "c6": -19.532342990732584, + "c7": -10.511665345271656 }, - "vertexSeeds": { - "c1": 3.3218189449789226, - "c2": 3.2537883519495714, - "c3": 3.3437347799263746, - "c4": 3.22453771021948, - "c5": 3.2480027523722543, - "c6": 3.261367598802073, - "c7": 3.201164616690261 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [58, 15, 49] }, @@ -423582,23 +423582,23 @@ "year": 1820, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 17.44417801305136, - "c2": 30.082495092232545, - "c3": 11.962280384404547, - "c4": -8.156705897018327, - "c5": 2.587437339346142, - "c6": -5.962808967338816, - "c7": -22.78130502152421 + "points": { + "c1": 9.853931230211892, + "c2": -29.8377559710337, + "c3": 27.778141255167533, + "c4": -6.214592601239062, + "c5": -3.1961344159667178, + "c6": 2.3293834416312507, + "c7": -9.20685825362013 }, - "vertexSeeds": { - "c1": 7.864304504973476, - "c2": 8.13888224947545, - "c3": 7.924650049571007, - "c4": 8.024665089836063, - "c5": 7.684161614378073, - "c6": 7.951599791219848, - "c7": 7.46364243347223 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973653, + "c3": 9.754969949144702, + "c4": 7.8039759593157685, + "c5": 5.852981969486819, + "c6": 3.9019879796578842, + "c7": 1.9509939898289508 }, "rgb": [238, 201, 159] }, @@ -423609,23 +423609,23 @@ "year": 1820, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -16.07454754976782, - "c2": 4.771116702721308, - "c3": -2.4097794571086126, - "c4": 26.01885978566849, - "c5": -6.055457050650862, - "c6": 8.68322850370356, - "c7": -0.729102960666701 + "points": { + "c1": -4.863127990590918, + "c2": 4.673684246330147, + "c3": 18.50893707385527, + "c4": -26.982859268800844, + "c5": 27.07471280227648, + "c6": -12.620781248790554, + "c7": 22.455436694709363 }, - "vertexSeeds": { - "c1": 7.144624444900062, - "c2": 6.868332323348815, - "c3": 7.00005115123622, - "c4": 7.412481166501104, - "c5": 7.25296588326687, - "c6": 7.046245925599437, - "c7": 7.205679849347469 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -423636,23 +423636,23 @@ "year": 1820, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -6.798195227578997, - "c2": 30.243497740171875, - "c3": 9.565406919599944, - "c4": 3.461501937157813, - "c5": -19.46710909190903, - "c6": 20.718269983384616, - "c7": 14.202546198733401 + "points": { + "c1": 15.844666782700124, + "c2": 24.49846888213095, + "c3": 21.916343793842756, + "c4": -34.837223056640916, + "c5": -3.851630558664091, + "c6": 9.160620676135572, + "c7": -7.122242613327121 }, - "vertexSeeds": { - "c1": 9.339066697840408, - "c2": 9.289817054527237, - "c3": 9.205212405658534, - "c4": 9.805308151382224, - "c5": 9.653373764101087, - "c6": 9.873197078679958, - "c7": 9.241580491272128 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [58, 15, 49] }, @@ -423663,23 +423663,23 @@ "year": 1820, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -2.4329852152125184, - "c2": 19.00298869368531, - "c3": 17.54437238727595, - "c4": -6.631981864229008, - "c5": -2.2358848946236023, - "c6": 6.78519578365848, - "c7": -13.215593399218147 + "points": { + "c1": 11.202378907051589, + "c2": -22.407856946348254, + "c3": -24.64079811279501, + "c4": 11.482673993479729, + "c5": 4.732864139782315, + "c6": -23.93091770787719, + "c7": 7.304595448605944 }, - "vertexSeeds": { - "c1": 6.942170049192938, - "c2": 6.855993035051531, - "c3": 7.436216992146924, - "c4": 7.242726156365238, - "c5": 7.022347523045237, - "c6": 7.018429603456284, - "c7": 7.014239794867843 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -423690,23 +423690,23 @@ "year": 1820, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -0.6286384522602901, - "c2": 28.323066257983058, - "c3": -1.5368614008581396, - "c4": 21.31447280475235, - "c5": 5.354732944388886, - "c6": 11.019775402551694, - "c7": 31.88304535644184 + "points": { + "c1": -17.51547846762048, + "c2": 23.180527129581172, + "c3": -15.771330857810177, + "c4": -21.729405354747843, + "c5": -29.949811045161347, + "c6": -34.31571790597912, + "c7": 19.528588446283557 }, - "vertexSeeds": { - "c1": 2.298881634886194, - "c2": 2.2717110838111494, - "c3": 2.3499098372839464, - "c4": 2.387171700505788, - "c5": 2.305298711527083, - "c6": 2.255701078796476, - "c7": 2.2806392831837345 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875176, + "c3": 2.8663892741562647, + "c4": 2.2931114193250117, + "c5": 1.7198335644937588, + "c6": 1.1465557096625059, + "c7": 0.5732778548312529 }, "rgb": [238, 201, 159] }, @@ -423717,23 +423717,23 @@ "year": 1819, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -16.40627628046046, - "c2": 16.50726012525704, - "c3": 9.830201353333972, - "c4": -14.458999062082189, - "c5": -20.157586174451406, - "c6": -9.777718969551286, - "c7": 16.7307498980501 + "points": { + "c1": -21.65076338477592, + "c2": 12.641708124169568, + "c3": -17.624127456819195, + "c4": 2.9730047564149054, + "c5": -18.398442778587427, + "c6": 2.5166450271616156, + "c7": 14.37732043657364 }, - "vertexSeeds": { - "c1": 0.7577720207253886, - "c2": 0.7577720207253886, - "c3": 0.7577720207253886, - "c4": 0.7577720207253886, - "c5": 0.7577720207253886, - "c6": 0.7577720207253886, - "c7": 0.7577720207253886 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -423744,23 +423744,23 @@ "year": 1820, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 11.185445790896935, - "c2": 15.429989478733447, - "c3": -12.976770669412453, - "c4": -32.17176372814885, - "c5": 24.208090187720792, - "c6": 8.611672829275797, - "c7": 6.7523560352826735 + "points": { + "c1": -6.452746871382232, + "c2": -9.458735630523705, + "c3": -39.398408328832154, + "c4": 40.81210343932015, + "c5": 27.008603655346285, + "c6": -37.48110542631899, + "c7": 31.505503422101576 }, - "vertexSeeds": { - "c1": 5.363488565135751, - "c2": 6.0325733956461765, - "c3": 5.844568813894195, - "c4": 5.765653007712831, - "c5": 6.105873112620665, - "c6": 5.623690760735531, - "c7": 5.850472401348802 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313453, + "c3": 7.651410078594545, + "c4": 6.121128062875636, + "c5": 4.5908460471567265, + "c6": 3.060564031437818, + "c7": 1.530282015718909 }, "rgb": [238, 201, 159] }, @@ -423771,23 +423771,23 @@ "year": 1820, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 0.13933207146053306, - "c2": -10.283584048386299, - "c3": -12.336613048329244, - "c4": 0.5676284079120464, - "c5": 8.477032812537022, - "c6": 24.39072109303294, - "c7": -21.11626252786671 + "points": { + "c1": 1.1740889676661794, + "c2": -13.860972913367688, + "c3": 0.019120406960592362, + "c4": 21.095721039776254, + "c5": -25.63981787279435, + "c6": -27.29170452474892, + "c7": -17.522273688984093 }, - "vertexSeeds": { - "c1": 4.142720502420438, - "c2": 4.48263879344298, - "c3": 4.5056452328709495, - "c4": 4.130121606769598, - "c5": 4.259055404894047, - "c6": 4.115689692341338, - "c7": 4.156415490087895 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.518723994452151, + "c3": 5.432269995376787, + "c4": 4.345815996301432, + "c5": 3.2593619972260757, + "c6": 2.17290799815072, + "c7": 1.086453999075356 }, "rgb": [238, 201, 159] }, @@ -423798,23 +423798,23 @@ "year": 1820, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -8.4386355822061, - "c2": -0.5209105677628045, - "c3": -0.4545120405908065, - "c4": 3.5001183725677727, - "c5": 22.261053134157667, - "c6": 4.5205669850534385, - "c7": -25.7963146917322 + "points": { + "c1": 30.104052768692377, + "c2": 12.18633856080551, + "c3": 16.64524018579953, + "c4": -22.629163069535693, + "c5": -10.123445319119316, + "c6": -17.711240515567752, + "c7": 1.602788929588307 }, - "vertexSeeds": { - "c1": 7.506096495573937, - "c2": 7.096671571427377, - "c3": 6.95342752575594, - "c4": 7.0507611785243185, - "c5": 7.552996887295024, - "c6": 6.995027457074248, - "c7": 7.421168505646826 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -423825,23 +423825,23 @@ "year": 1820, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 22.555966429826114, - "c2": 11.028003576435893, - "c3": 17.332343279336143, - "c4": 20.41968546199442, - "c5": -17.10575895891143, - "c6": 25.129415320340108, - "c7": 28.697670011339596 + "points": { + "c1": -24.336826786291162, + "c2": 15.785553407588083, + "c3": -18.183622741166705, + "c4": 14.68296510063454, + "c5": 7.013273514004318, + "c6": 27.569735018409453, + "c7": -17.112107666668532 }, - "vertexSeeds": { - "c1": 7.522829565456741, - "c2": 6.86825098666667, - "c3": 7.25598924471366, - "c4": 7.004126084454427, - "c5": 7.1552100735060735, - "c6": 6.982473888624413, - "c7": 7.465324185529684 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [58, 15, 49] }, @@ -423852,23 +423852,23 @@ "year": 1820, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -4.373751454327113, - "c2": -7.21647610896477, - "c3": -15.30364388216061, - "c4": 35.76002576167322, - "c5": -5.085355865753513, - "c6": -19.041851197726785, - "c7": 27.16228755314158 + "points": { + "c1": 17.74528700105634, + "c2": -34.35214811382997, + "c3": 38.43814914038845, + "c4": -1.9705333432796692, + "c5": 6.753447797181792, + "c6": 9.027763713290021, + "c7": 12.356864133862793 }, - "vertexSeeds": { - "c1": 3.1217674313902894, - "c2": 3.203226146214349, - "c3": 3.4860157515602093, - "c4": 3.1019419412594753, - "c5": 3.358583382177216, - "c6": 3.2114987149485805, - "c7": 3.4894983276593763 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [77, 76, 132] }, @@ -423879,23 +423879,23 @@ "year": 1820, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": 18.975574152269527, - "c2": 10.221881971876304, - "c3": -11.758054933758972, - "c4": 16.32858824475613, - "c5": -9.881778941467337, - "c6": -13.950698818407028, - "c7": -13.318343296883846 + "points": { + "c1": 3.711146086540314, + "c2": 13.41291705729589, + "c3": 20.7848537387157, + "c4": 4.929733315628127, + "c5": 12.858011163964658, + "c6": -20.07425466822268, + "c7": -14.166670864807099 }, - "vertexSeeds": { - "c1": 1.974345837964331, - "c2": 2.015799116008295, - "c3": 1.9449817847762194, - "c4": 1.8253929951096821, - "c5": 1.9404707017517608, - "c6": 1.8545093794329144, - "c7": 2.020556511812343 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233, + "c3": 2.427184466019419, + "c4": 1.9417475728155345, + "c5": 1.45631067961165, + "c6": 0.970873786407769, + "c7": 0.4854368932038845 }, "rgb": [86, 146, 138] }, @@ -423906,23 +423906,23 @@ "year": 1820, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 9.838445918128095, - "c2": 7.712101170363013, - "c3": -0.4557130015936295, - "c4": 8.167400383734552, - "c5": -0.5522755475156842, - "c6": 32.52596727509827, - "c7": -6.235532288992136 + "points": { + "c1": -27.441112636300147, + "c2": -17.15104881488645, + "c3": 33.07546662897245, + "c4": -34.10113950434491, + "c5": 35.32866420593632, + "c6": -2.0400044792619454, + "c7": -10.082741092335858 }, - "vertexSeeds": { - "c1": 3.956655103590519, - "c2": 4.70512954267359, - "c3": 4.340184892850509, - "c4": 4.1238309179039065, - "c5": 4.586388298906586, - "c6": 4.3843956413655665, - "c7": 4.084396034236191 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.7683772538141485, + "c3": 5.640314378178459, + "c4": 4.512251502542764, + "c5": 3.3841886269070742, + "c6": 2.2561257512713846, + "c7": 1.1280628756356899 }, "rgb": [86, 146, 138] }, @@ -423933,23 +423933,23 @@ "year": 1820, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -26.448760860480782, - "c2": -18.78804906448223, - "c3": -0.13077304970181913, - "c4": 29.499656091415343, - "c5": -11.160835656582396, - "c6": -6.992170356269238, - "c7": -20.288346598728253 + "points": { + "c1": 31.111919519787808, + "c2": -13.792712342549269, + "c3": -26.208811305191944, + "c4": -18.670365976933343, + "c5": -18.474781523304582, + "c6": -12.635349324945, + "c7": -18.54670007547999 }, - "vertexSeeds": { - "c1": 7.0763137740832, - "c2": 7.142509807116853, - "c3": 7.439245575104048, - "c4": 7.521887833555547, - "c5": 7.148156833689253, - "c6": 7.1630863413558, - "c7": 7.341093165902828 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [86, 146, 138] }, @@ -423960,23 +423960,23 @@ "year": 1820, "resistanceReported": false, "duration": 38707200, - "curveSeeds": { - "c1": -34.95978892074945, - "c2": -50.572083069096685, - "c3": 49.7612211366921, - "c4": -35.546586501589104, - "c5": -45.41444664619425, - "c6": -44.657533708056135, - "c7": -42.47178355810011 + "points": { + "c1": 33.00763282127026, + "c2": -16.19093550605104, + "c3": -1.2262061194597393, + "c4": 54.22868858252912, + "c5": 49.60657756631262, + "c6": -39.63882308687329, + "c7": -21.30014823059762 }, - "vertexSeeds": { - "c1": 9.875363264944458, - "c2": 10.204442996399273, - "c3": 10.141217094485029, - "c4": 9.842460726791343, - "c5": 9.972477954298542, - "c6": 9.459690440506463, - "c7": 9.797581990353898 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [77, 76, 132] }, @@ -423987,23 +423987,23 @@ "year": 1820, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -32.584039655040954, - "c2": -10.888141861640431, - "c3": 23.728928448470448, - "c4": -9.283063551228885, - "c5": 21.592455871756115, - "c6": -34.985747909192845, - "c7": 10.747592823189713 + "points": { + "c1": -23.63089360263468, + "c2": 25.848759807206747, + "c3": -17.243690121751914, + "c4": 24.826189845790815, + "c5": -17.73834057437721, + "c6": -26.921374877771804, + "c7": -19.642173976490703 }, - "vertexSeeds": { - "c1": 7.88250368836089, - "c2": 7.963656727426142, - "c3": 8.187824066199324, - "c4": 7.873980689111274, - "c5": 8.196194244847037, - "c6": 7.907334548643743, - "c7": 7.763064417780679 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255198, + "c3": 9.916782246879327, + "c4": 7.933425797503478, + "c5": 5.950069348127608, + "c6": 3.966712898751739, + "c7": 1.9833564493758695 }, "rgb": [238, 201, 159] }, @@ -424014,23 +424014,23 @@ "year": 1820, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 25.282212125930503, - "c2": -19.48420825937858, - "c3": 19.521478498956096, - "c4": -11.037367203035036, - "c5": -25.96592688218427, - "c6": -7.976506735550451, - "c7": 17.174250868098856 + "points": { + "c1": 20.75095409051883, + "c2": -12.807952679876795, + "c3": -25.33941530653136, + "c4": -8.480387148219535, + "c5": -17.48419084641982, + "c6": -19.429118990578615, + "c7": -26.11053941198946 }, - "vertexSeeds": { - "c1": 6.92899794034756, - "c2": 7.014751400241281, - "c3": 7.4203819344110205, - "c4": 6.914103656916552, - "c5": 7.542795519563709, - "c6": 6.88968093709648, - "c7": 7.478935593879267 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [86, 146, 138] }, @@ -424041,23 +424041,23 @@ "year": 1820, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -19.140704526695327, - "c2": -9.087060305318548, - "c3": 3.989999608630498, - "c4": -2.512075605359243, - "c5": 16.35335222502882, - "c6": 1.333725731186874, - "c7": -24.77577157513624 + "points": { + "c1": 27.420325830606828, + "c2": -23.831132317701254, + "c3": -29.9951871281377, + "c4": 7.1057654238811665, + "c5": 5.821396393039102, + "c6": 24.998883107323714, + "c7": -12.845472186234108 }, - "vertexSeeds": { - "c1": 3.9133620046886652, - "c2": 3.919250736794207, - "c3": 4.061661841356702, - "c4": 3.964999840099405, - "c5": 4.069395532988881, - "c6": 3.8889420492355593, - "c7": 3.8323366266615753 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.019417475728154, + "c3": 5.016181229773459, + "c4": 4.012944983818776, + "c5": 3.0097087378640817, + "c6": 2.006472491909388, + "c7": 1.003236245954694 }, "rgb": [77, 76, 132] }, @@ -424068,23 +424068,23 @@ "year": 1820, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 4.381688718383472, - "c2": -20.18929690483511, - "c3": 26.223939415794188, - "c4": -3.7685598644252387, - "c5": 22.017862954306683, - "c6": 1.2649331545717288, - "c7": -4.7381390659785225 + "points": { + "c1": -12.955686068189618, + "c2": 2.1619615889481665, + "c3": -9.175068664528805, + "c4": 20.07610930239363, + "c5": 6.888938349392031, + "c6": -19.50283964237643, + "c7": -24.859741837908235 }, - "vertexSeeds": { - "c1": 3.1115866034638944, - "c2": 3.1108890138461316, - "c3": 3.2099909199218164, - "c4": 3.250804652918609, - "c5": 3.160356239501323, - "c6": 3.1106603134640096, - "c7": 3.2893453323791757 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [222, 0, 59] }, @@ -424095,23 +424095,23 @@ "year": 1820, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -16.374868088744712, - "c2": 0.562479405500369, - "c3": 13.461746818831262, - "c4": 26.30637050018525, - "c5": 14.913252780936876, - "c6": -5.83665790546214, - "c7": 16.66305106192804 + "points": { + "c1": 6.071237745579143, + "c2": -9.72228851219474, + "c3": 4.918558686566758, + "c4": -7.756128603128335, + "c5": 27.49027420524291, + "c6": -28.440958427418323, + "c7": -16.7832779395494 }, - "vertexSeeds": { - "c1": 6.904979915941665, - "c2": 6.857026115958763, - "c3": 6.985444342443741, - "c4": 7.362878942602515, - "c5": 7.0711692934331, - "c6": 6.952021441371674, - "c7": 7.1359880471263395 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -424122,23 +424122,23 @@ "year": 1820, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -14.564786918295528, - "c2": -16.058228959052673, - "c3": 21.59537750576456, - "c4": -18.520771700397137, - "c5": -18.035969038924257, - "c6": -24.85413759970899, - "c7": 12.225175859050665 + "points": { + "c1": -6.088359437063634, + "c2": -24.892420006905176, + "c3": -4.265027118834087, + "c4": -18.00600780582683, + "c5": 10.667958258071117, + "c6": 3.2735509440382984, + "c7": 25.15718193449051 }, - "vertexSeeds": { - "c1": 7.477410058235962, - "c2": 6.889117138523273, - "c3": 7.038187172423766, - "c4": 7.400218004993442, - "c5": 7.3848418522079395, - "c6": 6.942536346338572, - "c7": 6.868716162369084 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -424149,23 +424149,23 @@ "year": 1820, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 19.915514231817617, - "c2": 31.25184167914602, - "c3": -35.518255219262265, - "c4": -24.84203328881172, - "c5": 35.9351394195401, - "c6": -36.252248938987066, - "c7": 7.3438221577041745 + "points": { + "c1": 39.344786518969904, + "c2": 10.782627206729082, + "c3": -12.793471952729597, + "c4": -6.902923235697763, + "c5": -23.947552309493428, + "c6": 20.29975066347358, + "c7": -19.621998235795456 }, - "vertexSeeds": { - "c1": 10.047521779805207, - "c2": 10.081485099548843, - "c3": 9.508436851914723, - "c4": 9.398710737302329, - "c5": 10.138080054642552, - "c6": 9.398969634425718, - "c7": 9.428868810193233 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [77, 76, 132] }, @@ -424176,23 +424176,23 @@ "year": 1820, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": -10.672456847860143, - "c2": -8.466699650233277, - "c3": -20.281803533021318, - "c4": -14.173924794140675, - "c5": 31.04215183955843, - "c6": -32.01468493643433, - "c7": -34.145594924079944 + "points": { + "c1": 8.066448078144582, + "c2": 1.553923821909855, + "c3": 38.3763627982717, + "c4": -28.385086452240415, + "c5": 7.822262104990855, + "c6": -28.743257799105564, + "c7": -30.34285427087869 }, - "vertexSeeds": { - "c1": 8.205832013456622, - "c2": 8.182602058722317, - "c3": 7.646088922022795, - "c4": 7.555142734782542, - "c5": 7.662603939383091, - "c6": 8.225155381870803, - "c7": 7.76763456441825 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094312, + "c3": 9.824318076745255, + "c4": 7.859454461396221, + "c5": 5.894590846047165, + "c6": 3.9297272306981106, + "c7": 1.9648636153490553 }, "rgb": [222, 0, 59] }, @@ -424203,23 +424203,23 @@ "year": 1820, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": 10.288311248760373, - "c2": -19.5222689008316, - "c3": 12.06918336433504, - "c4": 14.60767928799919, - "c5": -20.067626399738376, - "c6": 17.164516191219384, - "c7": 17.10727823243988 + "points": { + "c1": 21.62695206474796, + "c2": -14.737023472797006, + "c3": 5.680099104962462, + "c4": -1.6940321006661208, + "c5": 6.760930035987375, + "c6": 17.044569396884377, + "c7": -0.515583749087785 }, - "vertexSeeds": { - "c1": 1.5544041450777202, - "c2": 1.5544041450777202, - "c3": 1.5544041450777202, - "c4": 1.5544041450777202, - "c5": 1.5544041450777202, - "c6": 1.5544041450777202, - "c7": 1.5544041450777202 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -424230,23 +424230,23 @@ "year": 1820, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 22.917319975358105, - "c2": -1.9808116678093413, - "c3": 40.49431534235162, - "c4": -24.86519804272346, - "c5": 8.894612539772297, - "c6": -14.11360851023058, - "c7": -8.618268130243507 + "points": { + "c1": 22.3007303407748, + "c2": 33.338415840886434, + "c3": 17.95050040865258, + "c4": -6.722555977814153, + "c5": -23.804349402815447, + "c6": 4.2770437505619725, + "c7": 5.7643174426813815 }, - "vertexSeeds": { - "c1": 1.6267333450711634, - "c2": 1.6290403540426954, - "c3": 1.6175350839779976, - "c4": 1.6168897916487763, - "c5": 1.6251356567811563, - "c6": 1.6239158199916086, - "c7": 1.6318115733977783 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.3578363384188736, + "c3": 1.9648636153490746, + "c4": 1.5718908922792363, + "c5": 1.1789181692094368, + "c6": 0.7859454461396377, + "c7": 0.3929727230697993 }, "rgb": [238, 201, 159] }, @@ -424257,23 +424257,23 @@ "year": 1820, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -17.06530552267067, - "c2": -23.826880678015833, - "c3": -6.565052933852179, - "c4": -16.330707732786443, - "c5": 37.63229375444702, - "c6": -15.678678940599344, - "c7": 12.264608414247036 + "points": { + "c1": 37.61419350873513, + "c2": -4.205846013559103, + "c3": -15.131584612336304, + "c4": 21.51017718378759, + "c5": 35.40657991836723, + "c6": -12.992630246831641, + "c7": 21.37665678233749 }, - "vertexSeeds": { - "c1": 4.073567053157403, - "c2": 4.150010066527111, - "c3": 4.4060780472478855, - "c4": 4.367497412923876, - "c5": 4.304341593554697, - "c6": 4.200444830000348, - "c7": 4.0879702076835605 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331487, + "c3": 5.362921867776235, + "c4": 4.290337494220991, + "c5": 3.2177531206657397, + "c6": 2.1451687471104957, + "c7": 1.0725843735552523 }, "rgb": [222, 0, 59] }, @@ -424284,23 +424284,23 @@ "year": 1820, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -18.279847763480802, - "c2": -6.3502852943575405, - "c3": 2.186520542800192, - "c4": 15.245765062174712, - "c5": 4.9047671563296795, - "c6": -13.8658300202158, - "c7": -13.699279462615731 + "points": { + "c1": 25.8263546836069, + "c2": -16.827968900955256, + "c3": -12.534192996968814, + "c4": -2.729135377359615, + "c5": 23.38256293698136, + "c6": 25.83161282813502, + "c7": -3.882118886122928 }, - "vertexSeeds": { - "c1": 4.970135766057895, - "c2": 5.222833264077315, - "c3": 5.007568537207469, - "c4": 5.270616452418184, - "c5": 4.885000654287193, - "c6": 5.045624447907824, - "c7": 5.116220751719844 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -424311,23 +424311,23 @@ "year": 1820, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": 0.26382933068284586, - "c2": -1.9245417516342016, - "c3": 29.425085937539407, - "c4": 10.072573956578502, - "c5": 24.281512127132657, - "c6": 8.04652384130717, - "c7": -35.044456033574825 + "points": { + "c1": 4.1533780666533815, + "c2": -33.260036692989445, + "c3": -43.034792712358474, + "c4": 13.427743596637825, + "c5": 42.99829776092567, + "c6": -8.244910630380488, + "c7": -27.96617468967439 }, - "vertexSeeds": { - "c1": 4.431273395439814, - "c2": 4.31377717693772, - "c3": 4.556851291041237, - "c4": 4.3154352282149535, - "c5": 4.262436786592753, - "c6": 4.38656028423524, - "c7": 4.593402251999134 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613039, + "c3": 5.524734165510867, + "c4": 4.419787332408696, + "c5": 3.3148404993065244, + "c6": 2.209893666204343, + "c7": 1.1049468331021715 }, "rgb": [58, 15, 49] }, @@ -424338,23 +424338,23 @@ "year": 1820, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 16.140583408819552, - "c2": -29.39691381676757, - "c3": -15.000575286727713, - "c4": -31.039935640135287, - "c5": -6.486072788919351, - "c6": 20.728852052501786, - "c7": -10.901577844412277 + "points": { + "c1": 4.588956907264198, + "c2": -0.6957570858575721, + "c3": 5.434675381263894, + "c4": -23.971447472378024, + "c5": -6.051857433480492, + "c6": -3.736157442046771, + "c7": -8.698152581212955 }, - "vertexSeeds": { - "c1": 3.241861849346178, - "c2": 3.0151433419415605, - "c3": 3.105566912061345, - "c4": 2.9625302687250104, - "c5": 2.9683117309102034, - "c6": 3.124671553954865, - "c7": 3.071610014972115 + "offsets": { + "c1": 5.533980582524272, + "c2": 4.74341192787795, + "c3": 3.95284327323162, + "c4": 3.1622746185852977, + "c5": 2.371705963938975, + "c6": 1.5811373092926448, + "c7": 0.7905686546463224 }, "rgb": [86, 146, 138] }, @@ -424365,23 +424365,23 @@ "year": 1820, "resistanceReported": false, "duration": 29116800, - "curveSeeds": { - "c1": -31.176438312772873, - "c2": 12.683861069437533, - "c3": 11.389418795661825, - "c4": -12.479732035124549, - "c5": -26.83363541751388, - "c6": -8.554794650221929, - "c7": 26.94833558152284 + "points": { + "c1": 14.164481022012893, + "c2": -12.43594070575621, + "c3": -0.025817657429911378, + "c4": 42.516696396689795, + "c5": -42.49825345962462, + "c6": 10.476562486666872, + "c7": 11.383643913932943 }, - "vertexSeeds": { - "c1": 7.995320832763076, - "c2": 7.8713246020483885, - "c3": 7.422259965546896, - "c4": 7.40121822245675, - "c5": 7.68480607406932, - "c6": 7.567268148474282, - "c7": 7.6757807726837 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933422, + "c3": 9.731853906611182, + "c4": 7.785483125288942, + "c5": 5.839112343966701, + "c6": 3.892741562644481, + "c7": 1.9463707813222404 }, "rgb": [238, 201, 159] }, @@ -424392,23 +424392,23 @@ "year": 1820, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -21.07739408861323, - "c2": 29.20101092047134, - "c3": -15.205031365887887, - "c4": -9.307822798102158, - "c5": 6.06355647573946, - "c6": 0.7211172845379039, - "c7": 4.552254369701842 + "points": { + "c1": 26.861743323770007, + "c2": -14.100311469548792, + "c3": 30.373681113372854, + "c4": 30.27430482085836, + "c5": 31.457860246681207, + "c6": -11.05867384881368, + "c7": -30.933116982382742 }, - "vertexSeeds": { - "c1": 8.956274887252002, - "c2": 9.090519014647281, - "c3": 8.957474887540162, - "c4": 9.205288908713442, - "c5": 8.806040165929067, - "c6": 8.87981062463629, - "c7": 8.7879206685893 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105416, + "c3": 10.980120203421187, + "c4": 8.784096162736937, + "c5": 6.588072122052708, + "c6": 4.39204808136848, + "c7": 2.196024040684251 }, "rgb": [86, 146, 138] }, @@ -424419,23 +424419,23 @@ "year": 1820, "resistanceReported": false, "duration": 30844800, - "curveSeeds": { - "c1": -16.9185160393942, - "c2": -36.76790702799178, - "c3": 14.034218220931628, - "c4": -9.744289218469731, - "c5": 35.27153294332114, - "c6": -12.547441202045718, - "c7": -28.038964494891708 + "points": { + "c1": 34.56319741993311, + "c2": 45.56454109964684, + "c3": -5.118019815847141, + "c4": 23.103782102387477, + "c5": 9.147783527347805, + "c6": -10.359078203048554, + "c7": -20.86311015279185 }, - "vertexSeeds": { - "c1": 6.9494044389971625, - "c2": 7.184923852017381, - "c3": 7.2263599660062425, - "c4": 7.441604171326333, - "c5": 6.9063252962599, - "c6": 6.964777961116091, - "c7": 7.004012990328713 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -424446,23 +424446,23 @@ "year": 1820, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 15.816875642325495, - "c2": 15.975433422010294, - "c3": 11.700752845100961, - "c4": -8.355637246675148, - "c5": 3.8026204794050393, - "c6": 2.2470137593972197, - "c7": -22.802932428687786 + "points": { + "c1": -18.27425250541876, + "c2": 9.295568676473028, + "c3": -1.3777897706700664, + "c4": -12.87650443721182, + "c5": -11.07690969837347, + "c6": 14.319687987103574, + "c7": -23.434392075339666 }, - "vertexSeeds": { - "c1": 11.613654875901467, - "c2": 11.609629956233475, - "c3": 11.584153533697567, - "c4": 12.210970873866964, - "c5": 12.662156355827914, - "c6": 12.523233206013852, - "c7": 11.832941716046985 + "offsets": { + "c1": 21.3915857605178, + "c2": 18.33564493758669, + "c3": 15.27970411465558, + "c4": 12.22376329172447, + "c5": 9.167822468793327, + "c6": 6.111881645862218, + "c7": 3.055940822931109 }, "rgb": [86, 146, 138] }, @@ -424473,23 +424473,23 @@ "year": 1820, "resistanceReported": false, "duration": 8121600, - "curveSeeds": { - "c1": 4.70897476442412, - "c2": -9.075769029751832, - "c3": 14.606500960368859, - "c4": 3.5860747760120937, - "c5": -0.7041695249031363, - "c6": 9.900127439566337, - "c7": 6.635948268787686 + "points": { + "c1": -20.06332673221316, + "c2": -7.837845190620223, + "c3": -6.4062516451816265, + "c4": -4.453138876419015, + "c5": 11.771586976089392, + "c6": 5.351733906176374, + "c7": -9.453473693101046 }, - "vertexSeeds": { - "c1": 5.0326232112394065, - "c2": 5.234252429683965, - "c3": 5.043979325724008, - "c4": 5.209711002790763, - "c5": 5.146798941441175, - "c6": 5.232779116638785, - "c7": 5.060188569856542 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -424500,23 +424500,23 @@ "year": 1820, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 15.754865140633562, - "c2": 3.6468744795806103, - "c3": -0.353044884090977, - "c4": 5.714823873612495, - "c5": -22.002578377884557, - "c6": -13.901406022626837, - "c7": -17.40904077920944 + "points": { + "c1": 11.731991911210642, + "c2": 18.891921844949508, + "c3": -18.699412376795856, + "c4": -18.570081161840584, + "c5": 11.919468376953361, + "c6": 25.734115771988463, + "c7": 12.160838868569165 }, - "vertexSeeds": { - "c1": 5.12876048770844, - "c2": 5.274228089405143, - "c3": 5.251114347940074, - "c4": 4.841806729763957, - "c5": 5.265692791395511, - "c6": 5.101289254930904, - "c7": 5.099237561036545 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -424527,23 +424527,23 @@ "year": 1821, "resistanceReported": false, "duration": 52099200, - "curveSeeds": { - "c1": -58.46695214224752, - "c2": 43.62747652566692, - "c3": -61.40531526015674, - "c4": -21.73464416385491, - "c5": 39.21039278411675, - "c6": -0.2016641819975149, - "c7": -47.686787008133365 + "points": { + "c1": 8.823728260049663, + "c2": 51.77792691979522, + "c3": -17.917458307292307, + "c4": 43.32760887773664, + "c5": -52.27606881027944, + "c6": -47.31307025234983, + "c7": -10.158661517809364 }, - "vertexSeeds": { - "c1": 14.41685223744493, - "c2": 14.483454405640765, - "c3": 14.580841844698574, - "c4": 14.51929341706373, - "c5": 14.367264803047, - "c6": 14.527546068109908, - "c7": 14.259394862220555 + "offsets": { + "c1": 24.563106796116504, + "c2": 21.054091539528446, + "c3": 17.545076282940393, + "c4": 14.036061026352336, + "c5": 10.527045769764168, + "c6": 7.018030513176112, + "c7": 3.509015256588056 }, "rgb": [86, 146, 138] }, @@ -424554,23 +424554,23 @@ "year": 1821, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 38.6096924372593, - "c2": -19.673580423216254, - "c3": -37.69694854785043, - "c4": -35.01049469258495, - "c5": -23.16595866309894, - "c6": -3.5738288834605427, - "c7": 23.013948922440903 + "points": { + "c1": -20.029401349111588, + "c2": -40.53012905408869, + "c3": 43.51078528065554, + "c4": 15.032417997967897, + "c5": -1.4351582212137615, + "c6": -21.590510479122933, + "c7": 14.568243409925714 }, - "vertexSeeds": { - "c1": 4.350304640924301, - "c2": 3.9936563470980224, - "c3": 4.027473950104589, - "c4": 4.2074078778287705, - "c5": 4.1681577551057885, - "c6": 4.167878944850428, - "c7": 4.036654794627281 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371709, + "c3": 5.386037910309755, + "c4": 4.308830328247807, + "c5": 3.231622746185851, + "c6": 2.1544151641239035, + "c7": 1.077207582061948 }, "rgb": [238, 201, 159] }, @@ -424581,23 +424581,23 @@ "year": 1820, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -21.744511443085774, - "c2": 26.256048866871737, - "c3": 14.55596086193043, - "c4": 9.715055363965114, - "c5": -31.588008183175944, - "c6": -12.206343816471144, - "c7": -6.017602440423104 + "points": { + "c1": -17.726933725547443, + "c2": 33.083649058385205, + "c3": -32.78368430346208, + "c4": 4.359862652877602, + "c5": 32.82265201812771, + "c6": 3.1595153102162925, + "c7": -18.559992359989014 }, - "vertexSeeds": { - "c1": 3.9685744096783337, - "c2": 3.924898574736372, - "c3": 3.8492152191859286, - "c4": 3.8763297153950598, - "c5": 3.9322226115848546, - "c6": 3.9458538600507813, - "c7": 3.920774514852022 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466, + "c3": 4.85436893203883, + "c4": 3.8834951456310614, + "c5": 2.9126213592233072, + "c6": 1.9417475728155382, + "c7": 0.9708737864077691 }, "rgb": [77, 76, 132] }, @@ -424608,23 +424608,23 @@ "year": 1820, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -5.0213609145191, - "c2": 5.32585916049748, - "c3": -14.210608635380247, - "c4": 0.000033299531501995716, - "c5": 8.024729744200364, - "c6": -1.3828553539970017, - "c7": -22.859530358544006 + "points": { + "c1": -12.341567043282275, + "c2": 12.495521591770967, + "c3": -8.553404190541382, + "c4": 0.8698736114076979, + "c5": 24.424645278471054, + "c6": -16.6527455545692, + "c7": 11.444939183538246 }, - "vertexSeeds": { - "c1": 3.943248703579237, - "c2": 4.3931770321954735, - "c3": 3.924247324657804, - "c4": 4.051536220472018, - "c5": 3.81882846575454, - "c6": 3.986571865433737, - "c7": 4.03909811587432 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843273, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.16366158113731, + "c7": 1.0818307905686575 }, "rgb": [238, 201, 159] }, @@ -424635,23 +424635,23 @@ "year": 1820, "resistanceReported": false, "duration": 8380800, - "curveSeeds": { - "c1": 16.6030596325852, - "c2": -17.22103272237304, - "c3": 1.7958364485348959, - "c4": -12.37901572351742, - "c5": 15.411178079391021, - "c6": 12.935109387955187, - "c7": 13.648785189288517 + "points": { + "c1": -4.929231559549251, + "c2": 1.9589478789036612, + "c3": -11.139311085561097, + "c4": -20.756885114444238, + "c5": 1.9613993869413981, + "c6": -15.885932992388831, + "c7": -12.978833260496225 }, - "vertexSeeds": { - "c1": 5.013082003921066, - "c2": 5.269543042543534, - "c3": 5.22396733496181, - "c4": 4.9044677532332255, - "c5": 4.963795592328151, - "c6": 5.125623690212945, - "c7": 5.28044866605628 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -424662,23 +424662,23 @@ "year": 1820, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 15.963094822186122, - "c2": 2.3903991999323395, - "c3": -6.555324575077211, - "c4": 14.115899730499002, - "c5": -31.0798684768137, - "c6": -14.453491272413189, - "c7": -5.796355393769403 + "points": { + "c1": -19.910369552072517, + "c2": 8.68047708032006, + "c3": 12.540134447494317, + "c4": 26.098953318543742, + "c5": -3.290729585613768, + "c6": 12.341814159730461, + "c7": 21.941367377978708 }, - "vertexSeeds": { - "c1": 7.153281920199118, - "c2": 7.312980246499985, - "c3": 7.404662208732765, - "c4": 7.140604329981858, - "c5": 6.918890813265445, - "c6": 6.866097617702865, - "c7": 7.338704676948769 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [86, 146, 138] }, @@ -424689,23 +424689,23 @@ "year": 1820, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 14.661514795563711, - "c2": -4.551833405426446, - "c3": 14.0558289679229, - "c4": -7.010341818112224, - "c5": 1.7414952932236147, - "c6": -5.551800200791941, - "c7": 27.801100064064265 + "points": { + "c1": -8.048277498999486, + "c2": -28.191505335510357, + "c3": -18.164239812383293, + "c4": 23.86701602679417, + "c5": -30.609807549404533, + "c6": -21.978801355790274, + "c7": 34.00343883291691 }, - "vertexSeeds": { - "c1": 7.1542259795681975, - "c2": 7.175222967119348, - "c3": 7.503670514947087, - "c4": 7.034905010535106, - "c5": 7.000616536824029, - "c6": 7.24258677060937, - "c7": 7.526554590947746 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -424716,23 +424716,23 @@ "year": 1821, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": -6.796024451260934, - "c2": -34.10384341901576, - "c3": -3.5963656123636483, - "c4": -28.767901231144254, - "c5": -11.325824669754475, - "c6": 37.98000372652383, - "c7": 9.550094775075337 + "points": { + "c1": 36.98014486545851, + "c2": -3.785380586123715, + "c3": -39.40693185423123, + "c4": -4.36051571668601, + "c5": 28.945306146584954, + "c6": -7.921082323702727, + "c7": -42.55027515112657 }, - "vertexSeeds": { - "c1": 10.690353174007095, - "c2": 10.68726116416374, - "c3": 10.690059234324954, - "c4": 10.66596613840607, - "c5": 10.704196222588568, - "c6": 10.672369851106902, - "c7": 10.657720838718202 + "offsets": { + "c1": 18.02588996763754, + "c2": 15.450762829403677, + "c3": 12.875635691169562, + "c4": 10.3005085529357, + "c5": 7.725381414701839, + "c6": 5.150254276467978, + "c7": 2.575127138233861 }, "rgb": [222, 0, 59] }, @@ -424743,23 +424743,23 @@ "year": 1820, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": -9.05991268909716, - "c2": 26.77514296833995, - "c3": 12.301614353759575, - "c4": -11.081108002704475, - "c5": 32.69951085194832, - "c6": -34.35296983980861, - "c7": 20.856325335413565 + "points": { + "c1": 13.582810272334228, + "c2": -7.266148967240831, + "c3": -27.11608085420648, + "c4": -1.946584642502856, + "c5": 38.12302087044188, + "c6": 29.799535551212273, + "c7": 7.528350813654953 }, - "vertexSeeds": { - "c1": 3.254289837257516, - "c2": 3.2140005875493194, - "c3": 3.3443670974461868, - "c4": 3.524142401046741, - "c5": 3.1373349266761728, - "c6": 3.135380720145151, - "c7": 3.157717916207034 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [86, 146, 138] }, @@ -424770,23 +424770,23 @@ "year": 1820, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 5.750156671904669, - "c2": -8.057891891472984, - "c3": -21.429452360856555, - "c4": 21.98898302102203, - "c5": 4.958972742482445, - "c6": -18.992948862238457, - "c7": 29.302270423469935 + "points": { + "c1": -21.833494171380593, + "c2": -8.720066242455488, + "c3": -25.064571618378256, + "c4": -10.429100087361281, + "c5": 23.25791882608482, + "c6": -0.8159715477083438, + "c7": -31.11520879311204 }, - "vertexSeeds": { - "c1": 2.5550549610028472, - "c2": 2.6007765355041466, - "c3": 2.691584956368082, - "c4": 2.76415668017131, - "c5": 2.6082746842923465, - "c6": 2.738869091341484, - "c7": 2.7168882481718146 + "offsets": { + "c1": 4.692556634304207, + "c2": 4.022191400832179, + "c3": 3.3518261673601506, + "c4": 2.6814609338881135, + "c5": 2.011095700416085, + "c6": 1.3407304669440567, + "c7": 0.6703652334720284 }, "rgb": [58, 15, 49] }, @@ -424797,23 +424797,23 @@ "year": 1820, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 19.203102555012293, - "c2": -21.684588128516793, - "c3": -12.789095460556148, - "c4": 25.331551085881344, - "c5": 9.151200784896645, - "c6": 0.11545466711611851, - "c7": -8.564138060983773 + "points": { + "c1": -16.744406101892405, + "c2": 25.489718514247322, + "c3": 19.40794182598671, + "c4": 25.95844663737958, + "c5": 2.4570506578921254, + "c6": -4.917785597215065, + "c7": 15.126742860441986 }, - "vertexSeeds": { - "c1": 5.187312861716026, - "c2": 5.207884252225521, - "c3": 5.2273140061180925, - "c4": 5.131462413649972, - "c5": 5.27995889413188, - "c6": 5.199125560488269, - "c7": 5.237285332703336 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -424824,23 +424824,23 @@ "year": 1820, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -2.220552787300008, - "c2": 21.55235471367287, - "c3": -20.947334264046557, - "c4": 10.393765223239932, - "c5": 30.812781973605524, - "c6": -34.46098246182661, - "c7": -34.38622514796996 + "points": { + "c1": -31.44284670602968, + "c2": 9.319788708996867, + "c3": 14.179235029854645, + "c4": -32.45265386117335, + "c5": 21.24801990800586, + "c6": -17.468226037981257, + "c7": 15.423420017425165 }, - "vertexSeeds": { - "c1": 6.192902661879129, - "c2": 6.190447542417772, - "c3": 6.052983196418284, - "c4": 6.020496656355672, - "c5": 5.741586753850395, - "c6": 6.0491300906279895, - "c7": 5.705941470554466 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911238, + "c3": 7.420249653259368, + "c4": 5.9361997226074985, + "c5": 4.4521497919556285, + "c6": 2.9680998613037395, + "c7": 1.4840499306518697 }, "rgb": [58, 15, 49] }, @@ -424851,23 +424851,23 @@ "year": 1820, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -3.6812787605220656, - "c2": -19.922491907613807, - "c3": -21.453357248705267, - "c4": 19.753723253929333, - "c5": 19.59584040840748, - "c6": -21.673370975674892, - "c7": -23.183824529063443 + "points": { + "c1": 20.712106396766632, + "c2": 4.543636547672154, + "c3": -1.834827580239299, + "c4": 23.72611628527253, + "c5": 5.897033402387887, + "c6": 6.3132518470923635, + "c7": 14.061901675699982 }, - "vertexSeeds": { - "c1": 9.583971119550332, - "c2": 9.602221869241083, - "c3": 8.792837681207551, - "c4": 8.939663912221494, - "c5": 8.890370919216668, - "c6": 9.399409075878363, - "c7": 8.838284179447172 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070732, + "c3": 11.534905224225607, + "c4": 9.227924179380501, + "c5": 6.920943134535376, + "c6": 4.613962089690251, + "c7": 2.3069810448451253 }, "rgb": [86, 146, 138] }, @@ -424878,23 +424878,23 @@ "year": 1821, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 20.4948529606828, - "c2": 9.09288706755197, - "c3": 1.4829802911510228, - "c4": 19.84136368089719, - "c5": -30.087868818943647, - "c6": -35.80871018286646, - "c7": 30.21936046162515 + "points": { + "c1": 33.86084004467647, + "c2": -40.31416806656628, + "c3": 11.580290992772916, + "c4": -43.36414454039154, + "c5": -17.57799629433095, + "c6": -22.167793673512673, + "c7": -37.7805174197583 }, - "vertexSeeds": { - "c1": 16.573917071367134, - "c2": 18.29973285245697, - "c3": 13.009163761096358, - "c4": 15.390957318702426, - "c5": 13.094352199547192, - "c6": 16.44320285509126, - "c7": 14.16297536691158 + "offsets": { + "c1": 32.103559870550164, + "c2": 27.517337031900148, + "c3": 22.931114193250114, + "c4": 18.344891354600097, + "c5": 13.758668515950069, + "c6": 9.172445677300049, + "c7": 4.58622283865003 }, "rgb": [58, 15, 49] }, @@ -424905,23 +424905,23 @@ "year": 1820, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": 14.290847810200546, - "c2": 9.013424520220838, - "c3": -9.084602164034065, - "c4": 3.738679782800567, - "c5": 10.836383752184368, - "c6": 7.040629393418907, - "c7": -0.8628515053887895 + "points": { + "c1": -21.048343135198444, + "c2": 6.695351004770316, + "c3": 14.446625369968366, + "c4": 9.19658120824419, + "c5": -5.738794279323923, + "c6": -21.289502622580915, + "c7": -20.277645114637366 }, - "vertexSeeds": { - "c1": 4.625945912549507, - "c2": 4.449407725107561, - "c3": 4.751602140257172, - "c4": 4.878449937901081, - "c5": 4.864104606598048, - "c6": 4.967865210305401, - "c7": 4.4739948959483335 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417477, + "c3": 5.987055016181232, + "c4": 4.78964401294498, + "c5": 3.592233009708735, + "c6": 2.39482200647249, + "c7": 1.197411003236245 }, "rgb": [238, 201, 159] }, @@ -424932,23 +424932,23 @@ "year": 1820, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -9.026529608131181, - "c2": 5.191246608007248, - "c3": -9.165942344964261, - "c4": -31.69678526517373, - "c5": -23.923954424145847, - "c6": 12.660076552450391, - "c7": -29.490616169171968 + "points": { + "c1": 14.263247435090562, + "c2": 34.08308761016715, + "c3": -24.94776829017295, + "c4": -13.449879514056729, + "c5": 17.0929582074233, + "c6": -11.368029941980872, + "c7": -33.93583160085962 }, - "vertexSeeds": { - "c1": 7.311155452683307, - "c2": 7.011007952342804, - "c3": 7.53281943218201, - "c4": 6.968570998375695, - "c5": 7.15000912478219, - "c6": 6.931833857865543, - "c7": 7.2119708536512634 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -424959,23 +424959,23 @@ "year": 1820, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 35.30583793272817, - "c2": 29.66158349880658, - "c3": -30.987478170824748, - "c4": -21.2120785477468, - "c5": 25.422526615619383, - "c6": 32.70460554814821, - "c7": 34.14910631668137 + "points": { + "c1": 5.130652676350216, + "c2": 19.937563847806565, + "c3": -20.57941631641623, + "c4": 3.319632793213529, + "c5": 2.523251665013568, + "c6": 15.539305366283557, + "c7": -2.9954166580074215 }, - "vertexSeeds": { - "c1": 6.9201431066034305, - "c2": 7.283193652711, - "c3": 7.346235785244992, - "c4": 7.098615254631773, - "c5": 7.064643237277398, - "c6": 7.285586347332399, - "c7": 7.306846175148797 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -424986,23 +424986,23 @@ "year": 1821, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -18.372800959333894, - "c2": -8.458459432472466, - "c3": 0.4375406462880349, - "c4": 19.926820225973614, - "c5": -32.802191025797086, - "c6": -16.04873770700743, - "c7": -18.549190800393557 + "points": { + "c1": -19.290851906159546, + "c2": 19.002149702116675, + "c3": -31.486860565972044, + "c4": 36.71019217277039, + "c5": 20.038429447233646, + "c6": -34.507915393713276, + "c7": 19.928361157122247 }, - "vertexSeeds": { - "c1": 7.945170079048392, - "c2": 8.053614937169083, - "c3": 8.028122935710865, - "c4": 7.91022299785751, - "c5": 8.056238751269213, - "c6": 7.9478822788104155, - "c7": 7.954689461470885 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732277, + "c3": 9.616273693943612, + "c4": 7.693018955154852, + "c5": 5.769764216366186, + "c6": 3.846509477577426, + "c7": 1.9232547387887606 }, "rgb": [77, 76, 132] }, @@ -425013,23 +425013,23 @@ "year": 1821, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 40.340032300191424, - "c2": -19.917026497784086, - "c3": -33.1194577728934, - "c4": -27.657002021072042, - "c5": 12.073594612808655, - "c6": -3.126648366188725, - "c7": -4.78910675048941 + "points": { + "c1": -11.298101725445491, + "c2": -45.05650860315756, + "c3": -41.81716018768749, + "c4": -15.843305826261403, + "c5": -12.312275506969272, + "c6": 33.39743889959236, + "c7": 21.75650285343734 }, - "vertexSeeds": { - "c1": 8.430632943572531, - "c2": 7.330928440113975, - "c3": 6.766809543381531, - "c4": 6.924202704406609, - "c5": 8.964795035916405, - "c6": 6.897923992900628, - "c7": 8.599179519522735 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.558021266759127, + "c4": 9.246417013407303, + "c5": 6.934812760055478, + "c6": 4.623208506703649, + "c7": 2.3116042533518244 }, "rgb": [222, 0, 59] }, @@ -425040,23 +425040,23 @@ "year": 1821, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -23.19497828319276, - "c2": 1.9501036920859462, - "c3": 34.301671694495234, - "c4": -3.7986313057117016, - "c5": 17.516152200518, - "c6": 28.86010047997396, - "c7": -11.540254083221985 + "points": { + "c1": -41.79851494909188, + "c2": -14.623214728713585, + "c3": -17.469383768509214, + "c4": 10.477561332486154, + "c5": -22.657749201673294, + "c6": -38.995908304574776, + "c7": 38.13877067950444 }, - "vertexSeeds": { - "c1": 1.808745100538055, - "c2": 1.8639922886706157, - "c3": 1.8316043863331284, - "c4": 1.8784395857221645, - "c5": 1.7337000671322333, - "c6": 1.8045453168310284, - "c7": 1.6322911615893776 + "offsets": { + "c1": 3.171521035598705, + "c2": 2.718446601941747, + "c3": 2.2653721682847885, + "c4": 1.81229773462783, + "c5": 1.3592233009708716, + "c6": 0.9061488673139132, + "c7": 0.45307443365695493 }, "rgb": [86, 146, 138] }, @@ -425067,23 +425067,23 @@ "year": 1821, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -34.25440262579811, - "c2": 1.428644783822918, - "c3": -8.305799558435123, - "c4": -13.077423329604645, - "c5": 15.077085947325926, - "c6": -16.11160372118297, - "c7": 35.882791115106855 + "points": { + "c1": -24.595803950266713, + "c2": -7.036409965070817, + "c3": -10.169006525825225, + "c4": -12.07838285071599, + "c5": -8.457694528564268, + "c6": -15.641271389724647, + "c7": -33.54441602359286 }, - "vertexSeeds": { - "c1": 9.996101851553052, - "c2": 10.033486529464422, - "c3": 9.944785390947748, - "c4": 10.119170816737498, - "c5": 9.937083981316311, - "c6": 10.047254857631842, - "c7": 10.117373964594155 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995863, + "c3": 12.06657420249658, + "c4": 9.6532593619973, + "c5": 7.239944521497844, + "c6": 4.826629680998562, + "c7": 2.413314840499281 }, "rgb": [58, 15, 49] }, @@ -425094,23 +425094,23 @@ "year": 1820, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -5.685322075878233, - "c2": 3.046660024661996, - "c3": -17.619648599255456, - "c4": -16.49308305337563, - "c5": -34.241478259678814, - "c6": -3.698756905744087, - "c7": -1.060696787712473 + "points": { + "c1": -18.275472464602373, + "c2": -19.981546210209405, + "c3": -17.293267197012025, + "c4": 8.748777444377389, + "c5": 15.502843412857409, + "c6": -5.969062718352184, + "c7": -12.522069552957145 }, - "vertexSeeds": { - "c1": 9.503669047530963, - "c2": 9.798197035560017, - "c3": 10.114677865975862, - "c4": 9.768772109249293, - "c5": 9.288573418104734, - "c6": 9.793810146458556, - "c7": 9.93032201141121 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [58, 15, 49] }, @@ -425121,23 +425121,23 @@ "year": 1821, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -13.384124162079512, - "c2": 17.681390321718325, - "c3": -2.835362773847315, - "c4": 23.584926248030875, - "c5": 28.547752654822787, - "c6": 35.80572370298442, - "c7": -24.38496597787401 + "points": { + "c1": -38.39500494835486, + "c2": 5.305778289959463, + "c3": -0.21715333100242162, + "c4": 28.908779249427056, + "c5": -13.578912286994509, + "c6": 23.315470818182675, + "c7": 34.52961830231746 }, - "vertexSeeds": { - "c1": 4.016698844571281, - "c2": 4.023800529824044, - "c3": 4.125202976838085, - "c4": 4.164619548043295, - "c5": 4.143292218165271, - "c6": 4.217154874468395, - "c7": 4.156420526798919 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009706, + "c3": 5.177993527508084, + "c4": 4.142394822006474, + "c5": 3.106796116504853, + "c6": 2.0711974110032316, + "c7": 1.0355987055016214 }, "rgb": [222, 0, 59] }, @@ -425148,23 +425148,23 @@ "year": 1820, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 7.810694409257579, - "c2": 26.25800734879374, - "c3": 24.24350214709812, - "c4": -21.579314192258906, - "c5": -24.839345761859953, - "c6": 22.90257442401615, - "c7": 5.609087082988452 + "points": { + "c1": 14.5243707085858, + "c2": -19.240719842721838, + "c3": -15.625092501612547, + "c4": 8.904487822102894, + "c5": -25.043332690294513, + "c6": -30.588592922917126, + "c7": -28.02875926344557 }, - "vertexSeeds": { - "c1": 6.982765686385681, - "c2": 7.169541419665601, - "c3": 7.007183967909881, - "c4": 7.22396239030393, - "c5": 6.91242166779293, - "c6": 7.194309864311671, - "c7": 7.341939220187929 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -425175,23 +425175,23 @@ "year": 1820, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -14.352875037001187, - "c2": -30.864573716217816, - "c3": -1.8325729897234737, - "c4": -10.20807852229892, - "c5": -7.494107338447254, - "c6": 7.352589654568405, - "c7": 31.423456747734797 + "points": { + "c1": 15.481423512813898, + "c2": 14.339725224789603, + "c3": -23.903371350838416, + "c4": -5.91917310182264, + "c5": -26.71086157183917, + "c6": 27.206726055262443, + "c7": 26.57659146541448 }, - "vertexSeeds": { - "c1": 8.350868763018838, - "c2": 8.464256795097922, - "c3": 7.972316833039444, - "c4": 8.412515926979747, - "c5": 8.36756892380831, - "c6": 8.545786268727955, - "c7": 8.621510800683193 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809986, + "c3": 10.402219140083217, + "c4": 8.321775312066572, + "c5": 6.24133148404993, + "c6": 4.160887656033286, + "c7": 2.080443828016643 }, "rgb": [222, 0, 59] }, @@ -425202,23 +425202,23 @@ "year": 1820, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -13.311504525894534, - "c2": -22.243391676698476, - "c3": 25.47489865460296, - "c4": -24.928370922459784, - "c5": -22.91149610409144, - "c6": -13.875147134934451, - "c7": -14.925942712062625 + "points": { + "c1": 0.48215140700336434, + "c2": 1.6284420644568556, + "c3": -18.60333246767417, + "c4": -19.779460934996752, + "c5": -1.792817846648525, + "c6": 0.06873490447459574, + "c7": 10.145743822769717 }, - "vertexSeeds": { - "c1": 7.462723007303541, - "c2": 7.422626306165656, - "c3": 7.113903879884348, - "c4": 7.402860666332641, - "c5": 7.489793503106297, - "c6": 7.152706352266259, - "c7": 7.28865157321296 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [77, 76, 132] }, @@ -425229,23 +425229,23 @@ "year": 1821, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -17.43248872676785, - "c2": -6.365280347897951, - "c3": -23.638908632343277, - "c4": 5.006512915622373, - "c5": 5.386817582515512, - "c6": 34.7374537049634, - "c7": -15.87037136211816 + "points": { + "c1": -15.115601785020196, + "c2": -0.26258857661622415, + "c3": 20.461696309516398, + "c4": 18.794257625727127, + "c5": -9.209815981719611, + "c6": -15.217999960212051, + "c7": -34.5810735072036 }, - "vertexSeeds": { - "c1": 7.575170638913857, - "c2": 6.451327160965933, - "c3": 6.071081822557089, - "c4": 6.2792697591691695, - "c5": 6.548068842597801, - "c6": 7.137043504827962, - "c7": 8.291626748097467 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145634, + "c3": 11.003236245954692, + "c4": 8.802588996763756, + "c5": 6.601941747572814, + "c6": 4.401294498381878, + "c7": 2.2006472491909417 }, "rgb": [58, 15, 49] }, @@ -425256,23 +425256,23 @@ "year": 1821, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 10.966460588567507, - "c2": -2.668959298666479, - "c3": 24.105457210642612, - "c4": 33.83332880327738, - "c5": 12.714529231426937, - "c6": 1.5388490759796554, - "c7": 36.27090546856169 + "points": { + "c1": 4.388126179623043, + "c2": -15.192943705683362, + "c3": 36.08581441503837, + "c4": 30.11640163986499, + "c5": -38.38713128518383, + "c6": 17.197888716266675, + "c7": -31.190160320987573 }, - "vertexSeeds": { - "c1": 6.740824929615044, - "c2": 6.919669078515542, - "c3": 6.652838022981398, - "c4": 6.961815597393574, - "c5": 6.8715981945490965, - "c6": 6.692962837569041, - "c7": 6.6533247120138785 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560346, + "c3": 8.368007397133605, + "c4": 6.694405917706898, + "c5": 5.020804438280156, + "c6": 3.347202958853449, + "c7": 1.6736014794267076 }, "rgb": [238, 201, 159] }, @@ -425283,23 +425283,23 @@ "year": 1821, "resistanceReported": false, "duration": 46310400, - "curveSeeds": { - "c1": 16.03840728761152, - "c2": 25.525884067526405, - "c3": 33.10930636001888, - "c4": -18.27804731606912, - "c5": -8.704659503838414, - "c6": 24.811724716455615, - "c7": -52.11896149047729 + "points": { + "c1": 56.24678395148095, + "c2": -32.58061226359262, + "c3": 28.439607367501992, + "c4": 39.05825487179057, + "c5": -10.220930195811405, + "c6": 31.064060164670735, + "c7": 10.060993202695528 }, - "vertexSeeds": { - "c1": 2.756907275542149, - "c2": 2.7794292020092652, - "c3": 2.8712724251848805, - "c4": 2.9365747129074036, - "c5": 2.776984746273072, - "c6": 2.9211769302427233, - "c7": 3.0481243788679486 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.3828016643550605, + "c3": 3.652334720295889, + "c4": 2.9218677762367093, + "c5": 2.1914008321775302, + "c6": 1.4609338881183587, + "c7": 0.7304669440591793 }, "rgb": [238, 201, 159] }, @@ -425310,23 +425310,23 @@ "year": 1820, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -11.30394036944518, - "c2": -1.3960494179302643, - "c3": 20.650701182575578, - "c4": -5.680076938397761, - "c5": -22.9149409568154, - "c6": 15.106756965706904, - "c7": 25.776640222978447 + "points": { + "c1": 11.542144719159833, + "c2": -17.158154032972302, + "c3": -2.7436521262232816, + "c4": 3.0070853618257978, + "c5": 12.221365685521956, + "c6": 11.44302259820093, + "c7": 2.172167528631075 }, - "vertexSeeds": { - "c1": 8.674660659976274, - "c2": 8.578413468894826, - "c3": 8.093934166212403, - "c4": 8.702117167925435, - "c5": 8.282902308168683, - "c6": 8.140515201167227, - "c7": 8.488970840694407 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.981969486823859, + "c3": 10.818307905686552, + "c4": 8.654646324549228, + "c5": 6.4909847434119206, + "c6": 4.327323162274614, + "c7": 2.163661581137307 }, "rgb": [77, 76, 132] }, @@ -425337,23 +425337,23 @@ "year": 1820, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 22.02440779040151, - "c2": -18.157736962967828, - "c3": -13.913785341551542, - "c4": 13.546177648281535, - "c5": -17.92263665742, - "c6": -7.924115407509241, - "c7": -31.99948474552438 + "points": { + "c1": 16.35222352884042, + "c2": -9.987155749676127, + "c3": 20.3485688152864, + "c4": -18.65490173428345, + "c5": -17.831456144073652, + "c6": 14.97280619825117, + "c7": -32.298607078927816 }, - "vertexSeeds": { - "c1": 7.135874147224494, - "c2": 7.254552429378164, - "c3": 7.542453642995632, - "c4": 6.961412769563734, - "c5": 7.316843543343336, - "c6": 7.457818301268348, - "c7": 7.544435011146795 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -425364,23 +425364,23 @@ "year": 1820, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 26.400435333928918, - "c2": -19.30748910708503, - "c3": 22.842875379109877, - "c4": 3.6072749875987924, - "c5": 13.749113111838405, - "c6": 12.432549335442872, - "c7": 24.98108700528212 + "points": { + "c1": -16.974508060822828, + "c2": -2.2397443297072464, + "c3": -8.430500598439757, + "c4": -27.407537038959198, + "c5": 29.086292273783307, + "c6": -23.197358191711764, + "c7": 10.470876208119918 }, - "vertexSeeds": { - "c1": 3.309512199896727, - "c2": 3.0916745194615087, - "c3": 3.360534422667186, - "c4": 3.309715155119633, - "c5": 3.4450600072974478, - "c6": 3.14584720036664, - "c7": 3.1750618075039228 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [86, 146, 138] }, @@ -425391,23 +425391,23 @@ "year": 1820, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -10.735187438870607, - "c2": -15.63496469809039, - "c3": 16.25857957863692, - "c4": 25.589893134055174, - "c5": 16.414907074814003, - "c6": 0.8290856855910036, - "c7": -12.378773173371272 + "points": { + "c1": 12.534353719411541, + "c2": 2.2635172447504246, + "c3": 11.993779537663748, + "c4": -14.44178520174735, + "c5": 27.349689855103122, + "c6": -12.184755881179, + "c7": -21.50091860344834 }, - "vertexSeeds": { - "c1": 3.412880062110985, - "c2": 3.172555818213878, - "c3": 3.3046213503285324, - "c4": 3.121095691994248, - "c5": 3.1532572742635896, - "c6": 3.1561866692739455, - "c7": 3.245054104164493 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [222, 0, 59] }, @@ -425418,23 +425418,23 @@ "year": 1820, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -20.20326147520938, - "c2": -24.682020329404573, - "c3": 22.571114311483903, - "c4": -22.403178343225417, - "c5": 30.12331914667864, - "c6": 16.830518501853383, - "c7": 23.677222575787184 + "points": { + "c1": 14.94766573058331, + "c2": 32.88070803386124, + "c3": 4.145304942006852, + "c4": -24.306882140487623, + "c5": 6.432182193080848, + "c6": 25.348027340436182, + "c7": -31.351206730727156 }, - "vertexSeeds": { - "c1": 8.042081354733124, - "c2": 7.950840379735444, - "c3": 8.14713502750963, - "c4": 8.18295691345803, - "c5": 7.93254851455626, - "c6": 7.909388677434616, - "c7": 7.909924341551521 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375876, + "c3": 9.986130374479886, + "c4": 7.9889042995839175, + "c5": 5.991678224687928, + "c6": 3.9944521497919587, + "c7": 1.9972260748959891 }, "rgb": [222, 0, 59] }, @@ -425445,23 +425445,23 @@ "year": 1820, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 19.879389414528777, - "c2": -2.562846929710851, - "c3": -10.213360585885983, - "c4": -24.17419077396868, - "c5": 8.706137733225074, - "c6": 21.489532110248238, - "c7": 3.9086488820064353 + "points": { + "c1": -15.773467655237399, + "c2": 4.462671139722747, + "c3": -5.098923985355103, + "c4": 20.17790937567909, + "c5": -21.90122868853394, + "c6": 8.598663552885323, + "c7": 17.779851278415574 }, - "vertexSeeds": { - "c1": 9.422548491748127, - "c2": 9.900295588221551, - "c3": 9.624650095318113, - "c4": 9.527319744404469, - "c5": 9.846674509082803, - "c6": 10.05046692002762, - "c7": 9.726512936736256 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [77, 76, 132] }, @@ -425472,23 +425472,23 @@ "year": 1821, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -16.93147687577342, - "c2": 10.264091928290803, - "c3": -29.24136384738025, - "c4": 18.356978186791473, - "c5": 5.28166145133622, - "c6": 0.5092975274107658, - "c7": 19.397032900204117 + "points": { + "c1": -19.480187279286234, + "c2": -3.557668333520404, + "c3": -32.363265430905635, + "c4": -11.072481005852541, + "c5": -32.79344681086547, + "c6": 1.7143751518690564, + "c7": -32.51221555087306 }, - "vertexSeeds": { - "c1": 7.1230040084494926, - "c2": 7.563235847824417, - "c3": 5.408485810588316, - "c4": 7.661394933708882, - "c5": 5.883262764265178, - "c6": 7.720765211249256, - "c7": 5.233526623426962 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.09153952843273, + "c3": 11.742949607027276, + "c4": 9.39435968562182, + "c5": 7.045769764216365, + "c6": 4.69717984281091, + "c7": 2.348589921405455 }, "rgb": [238, 201, 159] }, @@ -425499,23 +425499,23 @@ "year": 1820, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -0.2467966763047862, - "c2": -15.709275787502072, - "c3": 12.585388343341307, - "c4": 5.115660757022255, - "c5": 27.05800256536709, - "c6": -10.900070749266543, - "c7": -12.419378134913295 + "points": { + "c1": -26.139388326305273, + "c2": 18.792958830207077, + "c3": -11.742902971220325, + "c4": 7.025345075188412, + "c5": 29.868751297843126, + "c6": 8.420607598551541, + "c7": 21.52129591343723 }, - "vertexSeeds": { - "c1": 10.125198024355551, - "c2": 10.25608007390318, - "c3": 10.068437852589602, - "c4": 10.199503969406148, - "c5": 9.983034250344431, - "c6": 10.019713946891248, - "c7": 9.651395055979195 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.7018030513176, + "c3": 12.251502542764683, + "c4": 9.801202034211732, + "c5": 7.3509015256588, + "c6": 4.900601017105866, + "c7": 2.450300508552933 }, "rgb": [58, 15, 49] }, @@ -425526,23 +425526,23 @@ "year": 1821, "resistanceReported": false, "duration": 28166400, - "curveSeeds": { - "c1": 8.37686801493578, - "c2": -23.634869470511607, - "c3": 20.06530288506675, - "c4": 4.373943027285449, - "c5": 0.8460698806044888, - "c6": -4.68597380645204, - "c7": -29.759264144833367 + "points": { + "c1": 15.952253180702378, + "c2": 20.025320066689886, + "c3": -42.047864010718435, + "c4": -9.147892473794343, + "c5": -41.55331402892845, + "c6": -5.678058064384182, + "c7": 0.13148766900979325 }, - "vertexSeeds": { - "c1": 4.164461085186501, - "c2": 4.392110521317601, - "c3": 3.7805533969643337, - "c4": 4.2951683296902905, - "c5": 4.086856451299436, - "c6": 4.287772158651872, - "c7": 3.9419100411247063 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843273, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.16366158113731, + "c7": 1.0818307905686575 }, "rgb": [58, 15, 49] }, @@ -425553,23 +425553,23 @@ "year": 1820, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 0.6093997789106247, - "c2": 28.234070899455524, - "c3": -4.246438934571241, - "c4": -26.470183145973316, - "c5": 25.31218063470535, - "c6": 13.32104799559091, - "c7": -16.97176082016756 + "points": { + "c1": 14.53582530629918, + "c2": 4.122020642231881, + "c3": 11.883169030503652, + "c4": -30.453035453887548, + "c5": 26.03408223318462, + "c6": 27.579772550037767, + "c7": -28.694870091617815 }, - "vertexSeeds": { - "c1": 8.955379967683841, - "c2": 9.437385767194783, - "c3": 9.33503722269072, - "c4": 8.987594544080563, - "c5": 9.039957999446965, - "c6": 9.312445181658688, - "c7": 9.575600997022187 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.9251040221914, + "c3": 11.604253351826165, + "c4": 9.283402681460947, + "c5": 6.962552011095711, + "c6": 4.6417013407304735, + "c7": 2.3208506703652367 }, "rgb": [58, 15, 49] }, @@ -425580,23 +425580,23 @@ "year": 1821, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 0.08380690494171716, - "c2": -27.95261443728437, - "c3": -19.12728554912843, - "c4": -28.60808803212747, - "c5": -26.30153864258611, - "c6": 25.02710032350017, - "c7": 5.015597356829204 + "points": { + "c1": 16.33293385258601, + "c2": -35.938203705384325, + "c3": 17.38643876893648, + "c4": 21.862504557445135, + "c5": -4.067271100216942, + "c6": -3.220334566767434, + "c7": -29.733603322039 }, - "vertexSeeds": { - "c1": 6.746951827988264, - "c2": 8.232701870588816, - "c3": 6.593367188196206, - "c4": 7.790288918069924, - "c5": 7.82396543241131, - "c6": 7.190269977108345, - "c7": 8.252529216022698 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.98335644937587, + "c3": 9.986130374479888, + "c4": 7.988904299583913, + "c5": 5.991678224687932, + "c6": 3.9944521497919565, + "c7": 1.9972260748959814 }, "rgb": [58, 15, 49] }, @@ -425607,23 +425607,23 @@ "year": 1821, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -19.315146487957634, - "c2": 26.148034111280765, - "c3": -27.156673326707427, - "c4": -11.16838677877584, - "c5": -21.48438289854334, - "c6": -15.189789723704767, - "c7": 31.231343988343596 + "points": { + "c1": 29.41597138696978, + "c2": 29.65493738848916, + "c3": -30.155791169415426, + "c4": -26.70925441759501, + "c5": 6.106591087025521, + "c6": -24.04669424708253, + "c7": 26.306754321747874 }, - "vertexSeeds": { - "c1": 9.526953295295558, - "c2": 9.590645105870196, - "c3": 9.840794497964003, - "c4": 9.407556231656644, - "c5": 9.477482540108232, - "c6": 9.424925773410882, - "c7": 9.786982889801939 + "offsets": { + "c1": 17.184466019417478, + "c2": 14.72954230235785, + "c3": 12.274618585298182, + "c4": 9.819694868238553, + "c5": 7.364771151178925, + "c6": 4.909847434119277, + "c7": 2.454923717059648 }, "rgb": [77, 76, 132] }, @@ -425634,23 +425634,23 @@ "year": 1821, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 21.189459794494987, - "c2": 3.3297558333378205, - "c3": 12.319334740842038, - "c4": -4.579160837649944, - "c5": 22.59265951571799, - "c6": -35.02898487564844, - "c7": 13.475413417268918 + "points": { + "c1": -4.832096406522467, + "c2": 38.23153745403273, + "c3": 31.137148391549744, + "c4": -26.843914841700844, + "c5": -36.694079866792976, + "c6": -22.107253476045, + "c7": 38.746080533228266 }, - "vertexSeeds": { - "c1": 8.71982523189478, - "c2": 8.670876178757974, - "c3": 8.470284324522627, - "c4": 8.429107795337078, - "c5": 8.715769643513413, - "c6": 8.66496140094046, - "c7": 8.557633181374086 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099877, + "c3": 10.402219140083211, + "c4": 8.321775312066586, + "c5": 6.241331484049918, + "c6": 4.160887656033293, + "c7": 2.080443828016667 }, "rgb": [86, 146, 138] }, @@ -425661,23 +425661,23 @@ "year": 1821, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -32.504904158447204, - "c2": 2.0999277482529095, - "c3": 27.10874368591837, - "c4": -13.67373360127862, - "c5": 9.736779816165303, - "c6": -15.60515397970056, - "c7": 14.422505885375443 + "points": { + "c1": 33.28418309534672, + "c2": -1.7526250606601224, + "c3": 30.463208929900517, + "c4": -23.91481642654486, + "c5": -5.311458049515437, + "c6": -28.494567951380052, + "c7": 19.006988267053032 }, - "vertexSeeds": { - "c1": 8.317575495248922, - "c2": 8.313102868968096, - "c3": 8.476474207345522, - "c4": 7.978634083525791, - "c5": 8.352410745081304, - "c6": 8.680475311760134, - "c7": 8.531416263936057 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019417, + "c3": 10.35598705501618, + "c4": 8.284789644012944, + "c5": 6.213592233009709, + "c6": 4.142394822006472, + "c7": 2.071197411003236 }, "rgb": [238, 201, 159] }, @@ -425688,23 +425688,23 @@ "year": 1821, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 21.67463928549445, - "c2": -30.308062080246856, - "c3": -18.775350004541696, - "c4": -10.97162476033003, - "c5": 28.51229199928234, - "c6": -18.353862534445287, - "c7": 6.232855663361988 + "points": { + "c1": 35.135906534667, + "c2": 3.875259601692953, + "c3": 29.834904247414485, + "c4": 30.60727617099947, + "c5": -11.03932933873012, + "c6": 35.18556056436495, + "c7": -15.331926315337721 }, - "vertexSeeds": { - "c1": 7.49769415179559, - "c2": 7.931879940641007, - "c3": 6.640105242581228, - "c4": 6.742918356435903, - "c5": 6.478748460326304, - "c6": 7.837854249993919, - "c7": 6.219889056954728 + "offsets": { + "c1": 14.045307443365695, + "c2": 12.038834951456309, + "c3": 10.032362459546924, + "c4": 8.025889967637537, + "c5": 6.019417475728153, + "c6": 4.012944983818767, + "c7": 2.0064724919093857 }, "rgb": [238, 201, 159] }, @@ -425715,23 +425715,23 @@ "year": 1821, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": -7.89608997913637, - "c2": 41.607009289743914, - "c3": -21.481043969362524, - "c4": -1.5308850128023863, - "c5": -33.588788141763644, - "c6": -24.380739987694877, - "c7": 43.15786621733318 + "points": { + "c1": -29.827664508718634, + "c2": 1.0295743734244596, + "c3": -11.120769929719543, + "c4": 9.111196735210648, + "c5": -25.454141149262618, + "c6": 45.021201140073416, + "c7": -5.4069928445477515 }, - "vertexSeeds": { - "c1": 1.409121533240378, - "c2": 1.3542996783137358, - "c3": 1.3507886386711456, - "c4": 1.3660950137934496, - "c5": 1.4033945240302805, - "c6": 1.3306009980380855, - "c7": 1.3521518543016375 + "offsets": { + "c1": 2.459546925566343, + "c2": 2.1081830790568654, + "c3": 1.756819232547388, + "c4": 1.4054553860379102, + "c5": 1.0540915395284327, + "c6": 0.7027276930189551, + "c7": 0.35136384650947755 }, "rgb": [77, 76, 132] }, @@ -425742,23 +425742,23 @@ "year": 1821, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 27.290263425903348, - "c2": -17.041216362482473, - "c3": -21.927523855493916, - "c4": 25.652827765937403, - "c5": -20.10782964949395, - "c6": 16.386596430835212, - "c7": -2.565907357254183 + "points": { + "c1": -9.992324645793811, + "c2": 25.483806735531246, + "c3": -6.45876229613944, + "c4": -9.702611625320657, + "c5": -4.691234858504597, + "c6": 21.532598435328843, + "c7": 20.430140726435965 }, - "vertexSeeds": { - "c1": 7.755375128113244, - "c2": 8.192124582500284, - "c3": 7.8042884984698, - "c4": 7.845071034748741, - "c5": 7.820441470602119, - "c6": 7.714173793347599, - "c7": 8.227490330610241 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094303, + "c3": 9.824318076745264, + "c4": 7.859454461396202, + "c5": 5.894590846047165, + "c6": 3.929727230698101, + "c7": 1.9648636153490369 }, "rgb": [77, 76, 132] }, @@ -425769,23 +425769,23 @@ "year": 1821, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 40.26965927629057, - "c2": 36.32463833236589, - "c3": 0.21227241884833603, - "c4": -35.57898805672171, - "c5": -0.8706618986404706, - "c6": 6.387507215559509, - "c7": -12.049806482212531 + "points": { + "c1": -12.701303673359543, + "c2": -40.24504423368758, + "c3": -39.383188761163964, + "c4": -33.325719524656854, + "c5": 29.085219988845992, + "c6": 0.361562028246162, + "c7": 9.832458593194417 }, - "vertexSeeds": { - "c1": 5.478008949193768, - "c2": 5.190569554579296, - "c3": 4.863440830887796, - "c4": 5.324588522256248, - "c5": 5.860808046190595, - "c6": 4.744945036654198, - "c7": 4.354660578540237 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072125, + "c3": 7.512713823393433, + "c4": 6.010171058714749, + "c5": 4.507628294036059, + "c6": 3.0050855293573746, + "c7": 1.5025427646786873 }, "rgb": [86, 146, 138] }, @@ -425796,23 +425796,23 @@ "year": 1821, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 29.817609350239874, - "c2": 4.287152150196992, - "c3": 4.901766067126264, - "c4": -20.898046738420845, - "c5": -16.493002147413144, - "c6": 16.741534015197647, - "c7": 29.181483122138705 + "points": { + "c1": -4.653518258485242, + "c2": 31.007797143846318, + "c3": -15.73709604847296, + "c4": 4.209434966618517, + "c5": 14.539004531259486, + "c6": -19.069577071999362, + "c7": -13.492287261791557 }, - "vertexSeeds": { - "c1": 4.540717546212202, - "c2": 5.898776838962087, - "c3": 5.9982134212355565, - "c4": 9.143209542184854, - "c5": 7.962305903164669, - "c6": 4.60893887208245, - "c7": 5.883621775565958 + "offsets": { + "c1": 17.928802588996763, + "c2": 15.36754507628294, + "c3": 12.806287563569118, + "c4": 10.245030050855295, + "c5": 7.683772538141469, + "c6": 5.1225150254276475, + "c7": 2.561257512713825 }, "rgb": [222, 0, 59] }, @@ -425823,23 +425823,23 @@ "year": 1820, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": 17.44457224049246, - "c2": 12.811394652251263, - "c3": 11.814125352914363, - "c4": 8.46608675010932, - "c5": 21.053758907446355, - "c6": -0.23655084381588054, - "c7": 19.69353024884943 + "points": { + "c1": -10.22884438615325, + "c2": -19.693113277204738, + "c3": -0.10001299856343948, + "c4": 2.218511044134356, + "c5": -5.372752338571548, + "c6": 0.8640858094089552, + "c7": -7.156795560275036 }, - "vertexSeeds": { - "c1": 3.848839496517916, - "c2": 4.061542151378754, - "c3": 3.8435327333410783, - "c4": 4.1730601464822366, - "c5": 3.9636210358010264, - "c6": 4.210264109191353, - "c7": 4.008460109966884 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843273, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.16366158113731, + "c7": 1.0818307905686575 }, "rgb": [238, 201, 159] }, @@ -425850,23 +425850,23 @@ "year": 1820, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -17.517878426937074, - "c2": 24.693934268282604, - "c3": -7.794142495938239, - "c4": 14.591983763774614, - "c5": -24.389178911295318, - "c6": 7.9565654067709985, - "c7": -18.130381231928478 + "points": { + "c1": 27.503791080065504, + "c2": 21.39840559376622, + "c3": 0.6332734441708219, + "c4": -5.401816750199423, + "c5": -22.04546620082609, + "c6": -21.134153756092267, + "c7": 9.937428202317783 }, - "vertexSeeds": { - "c1": 7.065928427056986, - "c2": 6.7924866402650785, - "c3": 7.38352893021413, - "c4": 7.087691901333522, - "c5": 7.22733653767391, - "c6": 7.276725578519269, - "c7": 7.246169181349531 + "offsets": { + "c1": 12.459546925566343, + "c2": 10.679611650485429, + "c3": 8.899676375404534, + "c4": 7.119741100323619, + "c5": 5.339805825242724, + "c6": 3.5598705501618095, + "c7": 1.7799352750809148 }, "rgb": [222, 0, 59] }, @@ -425877,23 +425877,23 @@ "year": 1821, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 22.68942515340131, - "c2": -6.81238685136978, - "c3": -13.377510205920572, - "c4": 33.596069102609704, - "c5": 20.225980712439295, - "c6": -4.285818460858913, - "c7": 16.219287474714022 + "points": { + "c1": -13.688600322219099, + "c2": 23.50929541931196, + "c3": -3.541636625686216, + "c4": -17.716222885392874, + "c5": -17.077662150700554, + "c6": 31.825522735577238, + "c7": 21.351287472266698 }, - "vertexSeeds": { - "c1": 11.541504776750708, - "c2": 12.372083691790289, - "c3": 11.182111419513955, - "c4": 12.428934313929945, - "c5": 12.108603082359192, - "c6": 11.34805773202563, - "c7": 11.70408856121022 + "offsets": { + "c1": 20.776699029126213, + "c2": 17.808599167822468, + "c3": 14.840499306518725, + "c4": 11.872399445214977, + "c5": 8.904299583911234, + "c6": 5.936199722607489, + "c7": 2.9680998613037444 }, "rgb": [222, 0, 59] }, @@ -425904,23 +425904,23 @@ "year": 1821, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 10.283688833274216, - "c2": -1.525195532934049, - "c3": 6.630489132146014, - "c4": -6.411409092556507, - "c5": -5.085682975669375, - "c6": 3.6473318795325937, - "c7": 8.217512032161157 + "points": { + "c1": 0.06460235742077103, + "c2": -9.372890914827405, + "c3": 12.963144250340019, + "c4": 18.547657768822308, + "c5": -6.752487446209841, + "c6": 13.88556029367707, + "c7": -0.9138405495399837 }, - "vertexSeeds": { - "c1": 3.8222070631284506, - "c2": 4.0452265444129285, - "c3": 4.090419809441284, - "c4": 3.845954758828305, - "c5": 3.8798482187797236, - "c6": 3.8762880464054152, - "c7": 3.8012783308524702 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607489, + "c3": 4.946833102172905, + "c4": 3.957466481738332, + "c5": 2.968099861303749, + "c6": 1.978733240869166, + "c7": 0.989366620434583 }, "rgb": [58, 15, 49] }, @@ -425931,23 +425931,23 @@ "year": 1820, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 19.18404648907636, - "c2": -15.70132935188419, - "c3": 20.368886963315084, - "c4": 0.10637442916589279, - "c5": -13.181757094425395, - "c6": 19.344047562745295, - "c7": -11.976394439470011 + "points": { + "c1": -20.205913030208393, + "c2": 14.972031073280704, + "c3": 2.049696332242501, + "c4": -3.4500864389968804, + "c5": 13.66012634962587, + "c6": -6.0693143291522205, + "c7": -18.719147554775365 }, - "vertexSeeds": { - "c1": 7.2322701130320075, - "c2": 7.09835346277483, - "c3": 6.929736790997819, - "c4": 7.03587997539887, - "c5": 7.01703528378854, - "c6": 7.400389507618076, - "c7": 7.088613450291632 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [58, 15, 49] }, @@ -425958,23 +425958,23 @@ "year": 1820, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 11.886729425106164, - "c2": -24.70858762428054, - "c3": -4.601419684928246, - "c4": 1.5439823576455218, - "c5": -4.340934376396728, - "c6": 11.588694145041853, - "c7": 12.426065884787636 + "points": { + "c1": 2.4227757378205013, + "c2": 25.96377664858539, + "c3": -0.4688390631231236, + "c4": 12.118719028407664, + "c5": -12.982829261986623, + "c6": -11.636209051833635, + "c7": -12.373688679375075 }, - "vertexSeeds": { - "c1": 6.9888561024008355, - "c2": 7.2649650245298005, - "c3": 7.464641823511472, - "c4": 7.000060412404225, - "c5": 7.493331989505, - "c6": 7.394364500752957, - "c7": 7.008697153884523 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [58, 15, 49] }, @@ -425985,23 +425985,23 @@ "year": 1821, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -34.76344165220426, - "c2": 36.05520070387987, - "c3": -35.88074880220135, - "c4": 24.932981188165037, - "c5": 15.780528212649273, - "c6": 23.486098160822074, - "c7": -7.784147669601332 + "points": { + "c1": -5.390976252641529, + "c2": 8.883924139976763, + "c3": 30.209085123679053, + "c4": -18.508646248132898, + "c5": 18.180434789077182, + "c6": -18.518971005079816, + "c7": 13.720739746459557 }, - "vertexSeeds": { - "c1": 0.19462830203171097, - "c2": 0.20214860768393203, - "c3": 0.22579684619942528, - "c4": 0.22039090880094642, - "c5": 0.23218066402183252, - "c6": 0.2062866853545359, - "c7": 0.21143475551559027 + "offsets": { + "c1": 0.4207119741100324, + "c2": 0.36061026352288483, + "c3": 0.3005085529357376, + "c4": 0.24040684234858997, + "c5": 0.18030513176144242, + "c6": 0.1202034211742948, + "c7": 0.06010171058714759 }, "rgb": [86, 146, 138] }, @@ -426012,23 +426012,23 @@ "year": 1821, "resistanceReported": false, "duration": 42681600, - "curveSeeds": { - "c1": 50.56425825865635, - "c2": 42.79286251104362, - "c3": -31.060623465878628, - "c4": -32.63674303213341, - "c5": -53.22529890538395, - "c6": -56.72124136818914, - "c7": -28.214805549989574 + "points": { + "c1": -18.056227007493398, + "c2": 47.83211889412041, + "c3": -55.63791990420273, + "c4": 17.808080938225885, + "c5": -22.5362281455633, + "c6": 39.04474568763416, + "c7": 25.60040719603218 }, - "vertexSeeds": { - "c1": 10.922325636004253, - "c2": 11.089913337928781, - "c3": 10.923019159941521, - "c4": 11.071226973429743, - "c5": 11.04789901440034, - "c6": 11.111718754324688, - "c7": 11.032107908894588 + "offsets": { + "c1": 18.54368932038835, + "c2": 15.894590846047231, + "c3": 13.24549237170594, + "c4": 10.596393897364822, + "c5": 7.947295423023529, + "c6": 5.298196948682411, + "c7": 2.6490984743411174 }, "rgb": [58, 15, 49] }, @@ -426039,23 +426039,23 @@ "year": 1821, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -13.599870370422934, - "c2": -4.905570320140146, - "c3": 26.190550203616674, - "c4": 31.490535056671234, - "c5": 31.527645207009044, - "c6": -21.225654480226147, - "c7": -23.11523496971892 + "points": { + "c1": -8.816823172795637, + "c2": -22.059697679064023, + "c3": 20.131979753118337, + "c4": 23.286341185291207, + "c5": -7.136752791545124, + "c6": -11.117740132810052, + "c7": 4.103931713252663 }, - "vertexSeeds": { - "c1": 8.642153019576226, - "c2": 8.682253311187736, - "c3": 8.68215687253754, - "c4": 8.595989433981359, - "c5": 8.760306447322295, - "c6": 8.819879044294453, - "c7": 8.417089354576792 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300955, + "c3": 10.517799352750814, + "c4": 8.414239482200637, + "c5": 6.310679611650497, + "c6": 4.2071197411003185, + "c7": 2.10355987055014 }, "rgb": [86, 146, 138] }, @@ -426066,23 +426066,23 @@ "year": 1822, "resistanceReported": false, "duration": 48038400, - "curveSeeds": { - "c1": -47.91287638195975, - "c2": 50.9200014360808, - "c3": 0.7858462519915008, - "c4": -14.527250744737238, - "c5": 7.2140644441064055, - "c6": -53.543464635858015, - "c7": -24.622941935573188 + "points": { + "c1": -9.38336850156199, + "c2": -53.1260667237914, + "c3": 28.98173882580805, + "c4": -37.498015989903706, + "c5": -32.478768014237886, + "c6": -61.05802224321561, + "c7": 30.245358061721518 }, - "vertexSeeds": { - "c1": 5.956884036422012, - "c2": 7.008126336669336, - "c3": 5.2547393812547005, - "c4": 6.726130787966747, - "c5": 5.86182475305778, - "c6": 7.053687191278892, - "c7": 5.272656354198969 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646323, + "c3": 8.992140545538605, + "c4": 7.193712436430882, + "c5": 5.395284327323164, + "c6": 3.596856218215441, + "c7": 1.7984281091077177 }, "rgb": [238, 201, 159] }, @@ -426093,23 +426093,23 @@ "year": 1821, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 9.222092227517173, - "c2": 22.653368127352444, - "c3": -5.760567619057976, - "c4": 9.667803697149303, - "c5": -25.1885439634449, - "c6": -18.45862826492576, - "c7": -15.733768360250933 + "points": { + "c1": 12.475809498960025, + "c2": 10.176862979113821, + "c3": 1.5621269956193196, + "c4": -6.353039367822571, + "c5": -14.521423790687985, + "c6": -13.255720295228617, + "c7": 18.1846949870988 }, - "vertexSeeds": { - "c1": 7.942406426330324, - "c2": 8.474125544751733, - "c3": 8.388883049098245, - "c4": 8.307469706715098, - "c5": 8.323218677104144, - "c6": 8.464760762114887, - "c7": 8.396845422840991 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.17753120665743, + "c3": 10.147942672214514, + "c4": 8.11835413777162, + "c5": 6.088765603328705, + "c6": 4.05917706888581, + "c7": 2.029588534442895 }, "rgb": [77, 76, 132] }, @@ -426120,23 +426120,23 @@ "year": 1821, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -2.2956670630173726, - "c2": 30.59550577100181, - "c3": 15.758564665576351, - "c4": 25.712640822217054, - "c5": 8.138031718631119, - "c6": 30.61457397199596, - "c7": 20.063597635701512 + "points": { + "c1": -27.994210092476678, + "c2": -32.108115968946336, + "c3": 32.05521326475848, + "c4": -3.8200744644289166, + "c5": 25.820163073434834, + "c6": -8.800372553760312, + "c7": -21.657712164553374 }, - "vertexSeeds": { - "c1": 6.346228811584284, - "c2": 6.273433288591322, - "c3": 5.74942460136676, - "c4": 6.091680790506323, - "c5": 5.9933364352981515, - "c6": 6.888720544740851, - "c7": 6.899338655504977 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042997, + "c3": 8.645399907535833, + "c4": 6.916319926028668, + "c5": 5.187239944521503, + "c6": 3.4581599630143374, + "c7": 1.7290799815071722 }, "rgb": [222, 0, 59] }, @@ -426147,23 +426147,23 @@ "year": 1821, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 3.639105801630098, - "c2": 27.556301218053495, - "c3": 20.657135190747024, - "c4": 19.034102266948782, - "c5": 28.651037895713092, - "c6": -12.446369091470647, - "c7": 29.704846190241252 + "points": { + "c1": -20.973739341046652, + "c2": 28.179454561452665, + "c3": 31.81132774573493, + "c4": -20.940323748034906, + "c5": 25.268996735823052, + "c6": 10.231170036553294, + "c7": 18.798430540436982 }, - "vertexSeeds": { - "c1": 10.581296927689053, - "c2": 10.635495570638252, - "c3": 8.690884371647263, - "c4": 8.892236781888652, - "c5": 8.202436498092451, - "c6": 8.858453658924088, - "c7": 9.738883010998402 + "offsets": { + "c1": 18.802588996763753, + "c2": 16.116504854368927, + "c3": 13.430420711974111, + "c4": 10.744336569579287, + "c5": 8.058252427184465, + "c6": 5.372168284789646, + "c7": 2.68608414239482 }, "rgb": [222, 0, 59] }, @@ -426174,23 +426174,23 @@ "year": 1821, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 11.832859790316832, - "c2": -8.620654356883541, - "c3": 29.206115107085928, - "c4": -6.581429279102512, - "c5": -4.01411677938885, - "c6": 19.75867242639552, - "c7": 21.132408100600145 + "points": { + "c1": -24.629560865017183, + "c2": -17.429335375978148, + "c3": -15.234154113780633, + "c4": -28.221050465506586, + "c5": -18.22997139290307, + "c6": 29.202317049542316, + "c7": -20.548549615199423 }, - "vertexSeeds": { - "c1": 8.102246987718114, - "c2": 8.353623440722176, - "c3": 7.8234987965642775, - "c4": 8.057263980092145, - "c5": 8.223872451414445, - "c6": 7.731881315802799, - "c7": 8.119207921321419 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335636, + "c3": 9.963014331946374, + "c4": 7.97041146555709, + "c5": 5.97780859916783, + "c6": 3.985205732778545, + "c7": 1.9926028663892617 }, "rgb": [58, 15, 49] }, @@ -426201,23 +426201,23 @@ "year": 1821, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -23.32556693017822, - "c2": -3.15506429541999, - "c3": 18.960729744874175, - "c4": 25.287579907791045, - "c5": -2.9581021426940772, - "c6": 19.412704619378342, - "c7": -25.351553023299815 + "points": { + "c1": -25.809269589622094, + "c2": -7.961155615179113, + "c3": 1.2931770341936186, + "c4": 12.946563674937899, + "c5": 25.955475104250276, + "c6": -3.521801790775708, + "c7": 29.51843778049166 }, - "vertexSeeds": { - "c1": 5.195649003340157, - "c2": 6.208648422101417, - "c3": 5.251843932393976, - "c4": 5.542549979810477, - "c5": 5.04117850737016, - "c6": 6.002709767706826, - "c7": 5.825395154114519 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554784, + "c3": 7.790106333795654, + "c4": 6.232085067036523, + "c5": 4.674063800277392, + "c6": 3.1160425335182613, + "c7": 1.5580212667591307 }, "rgb": [58, 15, 49] }, @@ -426228,23 +426228,23 @@ "year": 1820, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": -10.08783341512977, - "c2": 6.018379433823505, - "c3": 2.9373527036192684, - "c4": 0.19398871880362023, - "c5": 11.846953757397113, - "c6": 3.487631752522784, - "c7": 20.101472805117805 + "points": { + "c1": -20.984796077069895, + "c2": -1.6767736758709901, + "c3": 21.057110454077343, + "c4": -13.834962455421188, + "c5": 5.405097176615641, + "c6": 10.21867424972638, + "c7": -6.749862397211482 }, - "vertexSeeds": { - "c1": 5.089072366624987, - "c2": 5.138436891321288, - "c3": 5.342380779724548, - "c4": 4.804642082691219, - "c5": 5.220965447676326, - "c6": 4.737998196107739, - "c7": 5.319699891023351 + "offsets": { + "c1": 8.932038834951456, + "c2": 7.656033287101246, + "c3": 6.3800277392510365, + "c4": 5.10402219140084, + "c5": 3.828016643550623, + "c6": 2.55201109570042, + "c7": 1.27600554785021 }, "rgb": [58, 15, 49] }, @@ -426255,23 +426255,23 @@ "year": 1821, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -27.483454097272578, - "c2": 0.2011073353058883, - "c3": -11.894091452335552, - "c4": 22.26626446570488, - "c5": -24.756422333527777, - "c6": -23.167348032560724, - "c7": 11.315175328563221 + "points": { + "c1": 25.48532811075112, + "c2": -18.736124606364076, + "c3": -6.542214421178116, + "c4": -28.587101874113138, + "c5": 1.2290618700696356, + "c6": -23.515452617396598, + "c7": -7.87519835879819 }, - "vertexSeeds": { - "c1": 5.858196287107106, - "c2": 4.913347866435586, - "c3": 5.67902091684063, - "c4": 6.526045674480991, - "c5": 5.512951465456861, - "c6": 6.170335455495554, - "c7": 6.490373428250115 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916783, + "c3": 7.9981507165973165, + "c4": 6.398520573277856, + "c5": 4.798890429958393, + "c6": 3.199260286638926, + "c7": 1.5996301433194646 }, "rgb": [238, 201, 159] }, @@ -426282,23 +426282,23 @@ "year": 1821, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 18.692797633275564, - "c2": -26.41798169000884, - "c3": 5.778252298137307, - "c4": -25.394431230188452, - "c5": 30.47701244356939, - "c6": 6.72538819140205, - "c7": 14.097437591677025 + "points": { + "c1": -24.002547678315892, + "c2": -18.896583320548682, + "c3": 0.5622678471159759, + "c4": 24.180498089509705, + "c5": 1.4066449168582835, + "c6": -23.19736327069461, + "c7": -32.86196755445611 }, - "vertexSeeds": { - "c1": 5.720566571034458, - "c2": 5.816162419255814, - "c3": 5.8957449286434755, - "c4": 5.635312662583575, - "c5": 5.852063462735669, - "c6": 5.563610395364116, - "c7": 6.0277936892387265 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549242, + "c3": 7.212205270457687, + "c4": 5.769764216366154, + "c5": 4.327323162274621, + "c6": 2.884882108183089, + "c7": 1.442441054091533 }, "rgb": [86, 146, 138] }, @@ -426309,23 +426309,23 @@ "year": 1820, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": -20.742072863648083, - "c2": 0.17521575939538891, - "c3": -10.848320109282513, - "c4": -17.726388959585172, - "c5": -9.896568262870234, - "c6": -20.859122188272533, - "c7": 12.631240993433064 + "points": { + "c1": 3.4915862299466873, + "c2": -20.948502872270442, + "c3": -16.69164355515564, + "c4": -6.805360752702068, + "c5": -15.00984570812654, + "c6": -19.011134824549224, + "c7": 22.563887737119476 }, - "vertexSeeds": { - "c1": 3.3266930938245, - "c2": 3.1495722930228824, - "c3": 3.101989354226644, - "c4": 3.415501077566347, - "c5": 3.382318747204942, - "c6": 3.242825560161682, - "c7": 3.49611676395128 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [86, 146, 138] }, @@ -426336,23 +426336,23 @@ "year": 1821, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 17.505813378078734, - "c2": 19.730982304273503, - "c3": -16.90497566791108, - "c4": 7.477909051821918, - "c5": -21.977585444743887, - "c6": 22.36033284100467, - "c7": 0.32308968481515876 + "points": { + "c1": 14.50398855963546, + "c2": -4.812854506430938, + "c3": 30.99304211923321, + "c4": 12.632167810699578, + "c5": 15.937588019801218, + "c6": -3.046380530463736, + "c7": -24.786208831981703 }, - "vertexSeeds": { - "c1": 7.914248986579698, - "c2": 7.410665651765187, - "c3": 7.424982181484439, - "c4": 7.482119219004664, - "c5": 7.442628775351677, - "c6": 7.32772775537273, - "c7": 7.485258568347179 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732324, + "c3": 9.61627369394359, + "c4": 7.693018955154875, + "c5": 5.769764216366162, + "c6": 3.846509477577448, + "c7": 1.923254738788714 }, "rgb": [58, 15, 49] }, @@ -426363,23 +426363,23 @@ "year": 1821, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": 30.689072090427942, - "c2": -20.58190771302618, - "c3": -34.40489153120702, - "c4": 27.76085967760362, - "c5": 12.999783198941465, - "c6": -10.266531366522248, - "c7": 10.616917343025342 + "points": { + "c1": 1.2914146535096975, + "c2": -7.03693972010684, + "c3": 33.428919893357104, + "c4": -33.31954409796558, + "c5": -6.1985377370216845, + "c6": 31.633148516468466, + "c7": -31.247826800101578 }, - "vertexSeeds": { - "c1": 9.798477557624548, - "c2": 7.40606396546874, - "c3": 7.588178770043307, - "c4": 9.67735348534977, - "c5": 9.294621920101395, - "c6": 9.187366669744671, - "c7": 8.45860619573107 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.646324549237168, + "c3": 12.205270457697642, + "c4": 9.764216366158111, + "c5": 7.3231622746185865, + "c6": 4.882108183079056, + "c7": 2.4410540915395242 }, "rgb": [77, 76, 132] }, @@ -426390,23 +426390,23 @@ "year": 1821, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 39.916114442833134, - "c2": -41.90318914035343, - "c3": 22.48065231512784, - "c4": -32.371567421282265, - "c5": 2.4506021158347977, - "c6": 24.88884544285864, - "c7": -24.291672715931924 + "points": { + "c1": 27.40843711320143, + "c2": -11.572286376260067, + "c3": -42.48413061257334, + "c4": 24.847676127386677, + "c5": 31.168499614763746, + "c6": 33.351992752071254, + "c7": -12.147468295293105 }, - "vertexSeeds": { - "c1": 4.558612271495857, - "c2": 4.600752707587241, - "c3": 4.888012959428786, - "c4": 4.71613028654927, - "c5": 4.508650451214368, - "c6": 4.645425111787713, - "c7": 4.869564959640563 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216361, + "c3": 5.871474803513639, + "c4": 4.697179842810908, + "c5": 3.522884882108185, + "c6": 2.348589921405454, + "c7": 1.1742949607027227 }, "rgb": [58, 15, 49] }, @@ -426417,23 +426417,23 @@ "year": 1820, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": 7.177642738794432, - "c2": 16.439544492687435, - "c3": -16.52421775511727, - "c4": 15.259208940528854, - "c5": 0.6230682456570911, - "c6": 16.71677220711489, - "c7": -15.32860385693213 + "points": { + "c1": -11.556526531394471, + "c2": -16.208437999100074, + "c3": 1.1764845213800434, + "c4": -8.442109308895317, + "c5": 13.19501033038436, + "c6": 2.1972033241292834, + "c7": 5.883189359492814 }, - "vertexSeeds": { - "c1": 5.231787832024781, - "c2": 5.0061378554445914, - "c3": 4.967817007012494, - "c4": 5.1009969620377165, - "c5": 5.272636472052777, - "c6": 5.107377071009546, - "c7": 5.0847219468541 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [77, 76, 132] }, @@ -426444,23 +426444,23 @@ "year": 1821, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 17.939276736482835, - "c2": -2.405996130259755, - "c3": -18.644037741615882, - "c4": 21.08181134429584, - "c5": -15.285300161611037, - "c6": -2.9199733632786327, - "c7": 11.90709639096583 + "points": { + "c1": 23.7699528129635, + "c2": -29.20325069240785, + "c3": -17.696933152151402, + "c4": -27.828900637091067, + "c5": 2.758868537944597, + "c6": 18.035408719253173, + "c7": -6.65970611719964 }, - "vertexSeeds": { - "c1": 3.4582892710407345, - "c2": 3.3203460576251995, - "c3": 3.3686582119893465, - "c4": 3.2182362345267053, - "c5": 3.167618056537028, - "c6": 3.317226357874966, - "c7": 3.160543087595019 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [222, 0, 59] }, @@ -426471,23 +426471,23 @@ "year": 1821, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 2.996250227566982, - "c2": 17.147050550380108, - "c3": 11.314982763888928, - "c4": 33.96520304719812, - "c5": -34.33898923886088, - "c6": -34.07201102850687, - "c7": 18.290982824034536 + "points": { + "c1": 22.632853740864405, + "c2": 33.185325724489665, + "c3": 5.080405157432736, + "c4": -23.049639433732004, + "c5": -35.35218698054615, + "c6": 26.552974208665496, + "c7": -26.46956446266164 }, - "vertexSeeds": { - "c1": 5.379388718717578, - "c2": 5.451486480004269, - "c3": 5.310273338400139, - "c4": 5.16030229971785, - "c5": 5.381764388310136, - "c6": 5.172146645180211, - "c7": 5.26962141534918 + "offsets": { + "c1": 9.352750809061488, + "c2": 8.016643550624126, + "c3": 6.680536292186787, + "c4": 5.3444290337494245, + "c5": 4.008321775312063, + "c6": 2.6722145168747238, + "c7": 1.3361072584373619 }, "rgb": [238, 201, 159] }, @@ -426498,23 +426498,23 @@ "year": 1821, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -0.7881142922140896, - "c2": -37.11207129765039, - "c3": 15.134984747678118, - "c4": -10.010692099440007, - "c5": 31.732478502700694, - "c6": 16.874118615626024, - "c7": -23.112380636378873 + "points": { + "c1": 4.926369582358646, + "c2": -19.80604702088062, + "c3": 15.285794566095042, + "c4": -27.558432158932003, + "c5": -11.64659405163653, + "c6": 13.795529304089115, + "c7": 31.798003582215905 }, - "vertexSeeds": { - "c1": 7.540498987290775, - "c2": 7.849453702708107, - "c3": 7.460878040265444, - "c4": 7.256629078280524, - "c5": 8.023606586464723, - "c6": 7.983759074266153, - "c7": 7.52743903394647 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692091, + "c3": 9.593157651410078, + "c4": 7.6745261211280615, + "c5": 5.7558945908460455, + "c6": 3.8372630605640308, + "c7": 1.9186315302820154 }, "rgb": [238, 201, 159] }, @@ -426525,23 +426525,23 @@ "year": 1821, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -15.607628381227858, - "c2": -3.985702871162438, - "c3": -8.544501972219734, - "c4": -6.30211338777422, - "c5": 7.632411749340413, - "c6": 17.971502811230025, - "c7": -20.21036638384261 + "points": { + "c1": -14.720619431228997, + "c2": -19.3096003996434, + "c3": -1.9959169203227063, + "c4": 9.69581587151636, + "c5": -6.098776341392071, + "c6": 14.131082308733546, + "c7": 6.634221654789375 }, - "vertexSeeds": { - "c1": 8.294424035986498, - "c2": 7.861852133338419, - "c3": 8.480255087742778, - "c4": 7.677438967065806, - "c5": 8.408754596289445, - "c6": 7.969104780569841, - "c7": 8.03030585241672 + "offsets": { + "c1": 14.207119741100325, + "c2": 12.177531206657425, + "c3": 10.147942672214512, + "c4": 8.118354137771613, + "c5": 6.088765603328713, + "c6": 4.059177068885813, + "c7": 2.0295885344428997 }, "rgb": [77, 76, 132] }, @@ -426552,23 +426552,23 @@ "year": 1821, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -6.8859287650109735, - "c2": 9.759180628161278, - "c3": 4.0360000263566, - "c4": -3.1244187267134222, - "c5": 0.17139559167653218, - "c6": 9.146023009776119, - "c7": 20.42040028783744 + "points": { + "c1": -20.249776383762757, + "c2": 27.961565975941408, + "c3": 0.1518773463774643, + "c4": 27.90307063506577, + "c5": -3.541485923300449, + "c6": 30.89933940011478, + "c7": 13.727510965035084 }, - "vertexSeeds": { - "c1": 8.840721822834603, - "c2": 8.900934294882791, - "c3": 8.507575904099179, - "c4": 8.927170408215487, - "c5": 9.065772543640813, - "c6": 8.639771488565072, - "c7": 8.586246218312967 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105407, + "c3": 10.980120203421167, + "c4": 8.784096162736931, + "c5": 6.588072122052693, + "c6": 4.392048081368476, + "c7": 2.196024040684238 }, "rgb": [238, 201, 159] }, @@ -426579,23 +426579,23 @@ "year": 1821, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -15.023858663476858, - "c2": 26.84046155960028, - "c3": -5.482548827810621, - "c4": 23.965676629938933, - "c5": -19.6287379937346, - "c6": -1.228814647453646, - "c7": -14.681805013432687 + "points": { + "c1": 35.36658085330279, + "c2": -35.57572057545976, + "c3": -30.241768306509062, + "c4": -27.856646759858652, + "c5": -8.898521372695047, + "c6": 17.824481326429257, + "c7": 21.381913572550587 }, - "vertexSeeds": { - "c1": 13.470695022152904, - "c2": 14.191779644255474, - "c3": 13.329443202304805, - "c4": 13.454211177039149, - "c5": 14.141881422821447, - "c6": 14.063920742213089, - "c7": 13.519589577378566 + "offsets": { + "c1": 23.980582524271846, + "c2": 20.55478502080446, + "c3": 17.128987517337023, + "c4": 13.703190013869639, + "c5": 10.277392510402207, + "c6": 6.8515950069348195, + "c7": 3.4257975034673875 }, "rgb": [238, 201, 159] }, @@ -426606,23 +426606,23 @@ "year": 1821, "resistanceReported": false, "duration": 6480000, - "curveSeeds": { - "c1": 6.021868884560032, - "c2": 7.156248131452351, - "c3": 4.220155862174931, - "c4": -12.763539328113865, - "c5": 6.769171882190204, - "c6": -0.9481595198264436, - "c7": 6.515068734179952 + "points": { + "c1": -12.451213858440621, + "c2": 17.20581706425734, + "c3": -11.757804482246001, + "c4": 10.433505470613294, + "c5": -6.82694477679749, + "c6": 14.007253458396399, + "c7": -11.588100882970533 }, - "vertexSeeds": { - "c1": 7.0933447783657435, - "c2": 7.16722882090201, - "c3": 7.052213186972048, - "c4": 7.00759581993363, - "c5": 6.9797473181366545, - "c6": 6.990642955983175, - "c7": 6.781078249061269 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.42995839112344, + "c3": 8.69163199260287, + "c4": 6.9533055940823, + "c5": 5.214979195561729, + "c6": 3.4766527970411416, + "c7": 1.7383263985205877 }, "rgb": [222, 0, 59] }, @@ -426633,23 +426633,23 @@ "year": 1821, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": -5.285620345192179, - "c2": -25.29882377647477, - "c3": -12.496374209482425, - "c4": -24.31749730973057, - "c5": 5.207006566218318, - "c6": 3.802245174049993, - "c7": -10.835100710377112 + "points": { + "c1": 18.80075131791301, + "c2": -28.484715639068348, + "c3": -14.945696359753907, + "c4": 21.915670961427892, + "c5": 5.5400666483587955, + "c6": -13.322675474484075, + "c7": 12.596288238508698 }, - "vertexSeeds": { - "c1": 10.407269517135767, - "c2": 10.728644815993812, - "c3": 10.025013334896492, - "c4": 10.039242328725226, - "c5": 10.748772423807772, - "c6": 10.36338720406367, - "c7": 10.354279428874506 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.700416088765598, + "c3": 13.083680073971324, + "c4": 10.466944059177093, + "c5": 7.850208044382819, + "c6": 5.233472029588547, + "c7": 2.6167360147942733 }, "rgb": [222, 0, 59] }, @@ -426660,23 +426660,23 @@ "year": 1821, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 1.5079006977433203, - "c2": 0.3996133609787691, - "c3": -24.412019255652314, - "c4": 0.11260397841985537, - "c5": -18.162962825963078, - "c6": -16.77407633235882, - "c7": 6.797139851859118 + "points": { + "c1": 25.568803370979246, + "c2": 7.749234204559528, + "c3": 4.248243421262838, + "c4": -10.561592461410264, + "c5": 14.407703882224844, + "c6": 2.397617443245103, + "c7": 9.956149879155461 }, - "vertexSeeds": { - "c1": 4.138771283356753, - "c2": 4.101262265379183, - "c3": 4.055838767582751, - "c4": 4.1005763728974, - "c5": 3.9573968113343687, - "c6": 4.154769184223439, - "c7": 4.08295007038244 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [58, 15, 49] }, @@ -426687,23 +426687,23 @@ "year": 1821, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 7.897292178536311, - "c2": 13.266043302552383, - "c3": -24.698863321990622, - "c4": -1.4167662731126924, - "c5": 16.295729294790526, - "c6": 11.158184077776177, - "c7": -6.916189653021856 + "points": { + "c1": -11.509651833658026, + "c2": -19.080940037809178, + "c3": -9.914748216715292, + "c4": 13.115435191125094, + "c5": 16.486583710291455, + "c6": 10.217336807565047, + "c7": 1.7944288715838184 }, - "vertexSeeds": { - "c1": 5.124840113547292, - "c2": 4.986979188433304, - "c3": 5.257686299638174, - "c4": 5.023368727396768, - "c5": 5.265566657099615, - "c6": 5.1727326307073325, - "c7": 5.275541563201015 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [238, 201, 159] }, @@ -426714,23 +426714,23 @@ "year": 1821, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -3.1482538422104547, - "c2": -2.2836300020338065, - "c3": -23.63324174900862, - "c4": 16.324345344203604, - "c5": 4.388801038341018, - "c6": 14.761014380761242, - "c7": 12.56076124886911 + "points": { + "c1": 7.5192764056913965, + "c2": -8.034434288506418, + "c3": -22.426378330708832, + "c4": 0.17435039411200393, + "c5": -20.192181064419504, + "c6": 24.999863339239827, + "c7": 18.736505122790522 }, - "vertexSeeds": { - "c1": 6.2239940624767645, - "c2": 5.989788143114609, - "c3": 6.039460416698278, - "c4": 5.956735892112912, - "c5": 6.00462889434756, - "c6": 5.9127446935941395, - "c7": 6.165647344503296 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072129, + "c3": 7.512713823393424, + "c4": 6.010171058714744, + "c5": 4.507628294036064, + "c6": 3.005085529357384, + "c7": 1.5025427646786802 }, "rgb": [77, 76, 132] }, @@ -426741,23 +426741,23 @@ "year": 1821, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -32.082972442298555, - "c2": -22.292373072270586, - "c3": -10.081900447708634, - "c4": -33.3995309804464, - "c5": -24.349192725262075, - "c6": -14.46076815257453, - "c7": 22.24222509462544 + "points": { + "c1": -4.561610361046036, + "c2": -24.679925311468146, + "c3": -34.01651751450684, + "c4": -12.478565306845905, + "c5": -12.072688117565118, + "c6": -37.58703478145496, + "c7": -15.510088905653834 }, - "vertexSeeds": { - "c1": 6.9886776522748, - "c2": 7.540704547379222, - "c3": 7.013060768331185, - "c4": 6.692244476186305, - "c5": 7.144146132567856, - "c6": 7.7933446133212705, - "c7": 6.973985882954166 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410541, + "c3": 9.431345353675452, + "c4": 7.545076282940361, + "c5": 5.658807212205271, + "c6": 3.7725381414701804, + "c7": 1.8862690707350902 }, "rgb": [86, 146, 138] }, @@ -426768,23 +426768,23 @@ "year": 1821, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -9.094918956429956, - "c2": 4.015523242990348, - "c3": 15.49483966421424, - "c4": -18.97007346163495, - "c5": 15.010425938961774, - "c6": -13.999257519896894, - "c7": -10.794809641447433 + "points": { + "c1": 16.376118326880118, + "c2": 11.673654827969493, + "c3": 2.4809789507679483, + "c4": -16.961583036545722, + "c5": 18.719756071409286, + "c6": 7.678398865692952, + "c7": 5.673918690433979 }, - "vertexSeeds": { - "c1": 1.6439373949229634, - "c2": 1.6119907840821945, - "c3": 1.696705716305101, - "c4": 1.6101975725476028, - "c5": 1.6156428464123893, - "c6": 1.7920412642741845, - "c7": 1.7043288159071506 + "offsets": { + "c1": 3.042071197411003, + "c2": 2.6074895977808605, + "c3": 2.172907998150715, + "c4": 1.7383263985205728, + "c5": 1.3037447988904303, + "c6": 0.8691631992602845, + "c7": 0.43458159963014226 }, "rgb": [77, 76, 132] }, @@ -426795,23 +426795,23 @@ "year": 1821, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 3.5231751734727794, - "c2": 21.069948741081028, - "c3": 23.583290984218984, - "c4": 23.514910452268246, - "c5": -4.182069746965134, - "c6": 33.260841563302044, - "c7": 17.71626500265669 + "points": { + "c1": 20.122027735311363, + "c2": -2.998067330337342, + "c3": 32.670926435812866, + "c4": 21.149348031911693, + "c5": -21.866420067692346, + "c6": -26.219697401026856, + "c7": -20.01425782177497 }, - "vertexSeeds": { - "c1": 9.06838582012812, - "c2": 9.189704487992994, - "c3": 9.193562900608155, - "c4": 9.0563655314202, - "c5": 9.304841066604597, - "c6": 8.927851295865764, - "c7": 9.08866162876667 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.34257975034674, + "c3": 11.118816458622284, + "c4": 8.895053166897826, + "c5": 6.67128987517337, + "c6": 4.447526583448913, + "c7": 2.2237632917244565 }, "rgb": [58, 15, 49] }, @@ -426822,23 +426822,23 @@ "year": 1821, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 5.192132833822544, - "c2": 16.17865225407025, - "c3": -20.544725342974672, - "c4": -22.80597935501487, - "c5": -6.749896115979137, - "c6": 3.5479300784246064, - "c7": -21.268514244957828 + "points": { + "c1": 21.517251154232923, + "c2": -26.422720520321562, + "c3": 11.407266396045749, + "c4": -7.429330474574261, + "c5": -16.829367676634156, + "c6": 13.631681156926817, + "c7": -4.25820370500859 }, - "vertexSeeds": { - "c1": 9.36956354188535, - "c2": 9.456363433451395, - "c3": 8.580551316399257, - "c4": 8.283221438410138, - "c5": 8.819994596738445, - "c6": 9.00308553818941, - "c7": 9.371862116803518 + "offsets": { + "c1": 15.889967637540453, + "c2": 13.619972260748959, + "c3": 11.349976883957464, + "c4": 9.07998150716597, + "c5": 6.809986130374484, + "c6": 4.53999075358299, + "c7": 2.269995376791495 }, "rgb": [77, 76, 132] }, @@ -426849,23 +426849,23 @@ "year": 1822, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -21.975206593494736, - "c2": -41.1923123346217, - "c3": -32.518315540377266, - "c4": -8.401292808689554, - "c5": 29.40187447312742, - "c6": -46.20369509453004, - "c7": -14.623293345871748 + "points": { + "c1": -47.721062278139044, + "c2": -34.68510316218417, + "c3": -8.131194022472513, + "c4": 40.86411152663702, + "c5": -2.1744984081899617, + "c6": 28.982987061087798, + "c7": 20.00704548365033 }, - "vertexSeeds": { - "c1": 15.303108772220018, - "c2": 15.114294817878635, - "c3": 14.877655699501316, - "c4": 14.632576053133725, - "c5": 15.175181141594651, - "c6": 14.96888863091658, - "c7": 14.592117025945386 + "offsets": { + "c1": 26.148867313915858, + "c2": 22.413314840499286, + "c3": 18.67776236708276, + "c4": 14.94220989366619, + "c5": 11.206657420249668, + "c6": 7.471104946833095, + "c7": 3.7355524734165217 }, "rgb": [58, 15, 49] }, @@ -426876,23 +426876,23 @@ "year": 1821, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -9.599004996167968, - "c2": -20.96556509401842, - "c3": -19.701521824178812, - "c4": 9.400916806915568, - "c5": 0.3833815221090191, - "c6": 19.502977991686542, - "c7": -3.372460051823918 + "points": { + "c1": 2.204822048307186, + "c2": -20.839673083772645, + "c3": -18.63801385093569, + "c4": 22.772883263505292, + "c5": 22.1298227100761, + "c6": -3.9793662832688312, + "c7": -11.648613948285051 }, - "vertexSeeds": { - "c1": 1.5745548248601502, - "c2": 1.5056345661163584, - "c3": 1.4969206423886583, - "c4": 1.5679388757764192, - "c5": 1.5445602521503756, - "c6": 1.548367292781805, - "c7": 1.5855359326542144 + "offsets": { + "c1": 2.686084142394822, + "c2": 2.302357836338422, + "c3": 1.9186315302820145, + "c4": 1.5349052242256147, + "c5": 1.1511789181692071, + "c6": 0.7674526121128074, + "c7": 0.38372630605639985 }, "rgb": [58, 15, 49] }, @@ -426903,23 +426903,23 @@ "year": 1821, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -5.602688616635248, - "c2": 28.46734541463286, - "c3": -12.298187134900754, - "c4": -17.485395381269328, - "c5": 11.499480464488961, - "c6": -26.09294309101837, - "c7": 9.511444403460558 + "points": { + "c1": -13.895313004481991, + "c2": 27.53211086261402, + "c3": 11.966161781763404, + "c4": -9.996519777403368, + "c5": -3.590785941706244, + "c6": 2.115010172352548, + "c7": 2.303151380490192 }, - "vertexSeeds": { - "c1": 5.481268512296451, - "c2": 5.436835637995926, - "c3": 5.595565021645438, - "c4": 5.5468617857268745, - "c5": 5.5877416499912815, - "c6": 5.594135361297689, - "c7": 5.505891198154428 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026352, + "c3": 6.911696717521961, + "c4": 5.529357374017568, + "c5": 4.147018030513176, + "c6": 2.764678687008784, + "c7": 1.382339343504392 }, "rgb": [238, 201, 159] }, @@ -426930,23 +426930,23 @@ "year": 1821, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 7.813608129425759, - "c2": 5.111844391532063, - "c3": 10.144706377897208, - "c4": 25.014445114900163, - "c5": -6.107293259643026, - "c6": -9.81451766566365, - "c7": 13.662819748894258 + "points": { + "c1": -12.708284712481026, + "c2": 4.968189259768742, + "c3": -27.72629057305301, + "c4": -13.059247313357293, + "c5": 4.704283588357519, + "c6": 11.775663626525557, + "c7": 2.052217783252299 }, - "vertexSeeds": { - "c1": 4.409456967189686, - "c2": 4.742280193682456, - "c3": 4.423339202356206, - "c4": 4.677614468829004, - "c5": 4.8221731807926025, - "c6": 4.826919104132148, - "c7": 4.699511287873414 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256591, + "c3": 5.894590846047161, + "c4": 4.715672676837725, + "c5": 3.5367545076282956, + "c6": 2.357836338418866, + "c7": 1.1789181692094293 }, "rgb": [58, 15, 49] }, @@ -426957,23 +426957,23 @@ "year": 1821, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": 4.264969396170169, - "c2": 17.352479392028997, - "c3": 16.64985877530691, - "c4": 18.946603022883906, - "c5": -8.86312615674185, - "c6": -16.096157943373353, - "c7": -5.300006134772987 + "points": { + "c1": -9.553345472858743, + "c2": -17.176853609547816, + "c3": -6.896309071338983, + "c4": -7.222633390871536, + "c5": -16.46695413681961, + "c6": 14.887199749218539, + "c7": -16.489558154510682 }, - "vertexSeeds": { - "c1": 2.895077720207254, - "c2": 2.895077720207254, - "c3": 2.895077720207254, - "c4": 2.895077720207254, - "c5": 2.895077720207254, - "c6": 2.895077720207254, - "c7": 2.895077720207254 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -426984,23 +426984,23 @@ "year": 1822, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -47.56648453658128, - "c2": 11.09799824242215, - "c3": -42.19587709259694, - "c4": 42.54566407914157, - "c5": 26.198036214171346, - "c6": 27.753195572392706, - "c7": 26.325046826263154 + "points": { + "c1": 5.270678779875951, + "c2": -13.689764414289087, + "c3": 31.07564993548602, + "c4": -28.45836101511124, + "c5": 12.558072951246153, + "c6": 9.634714304173983, + "c7": 27.82273860736388 }, - "vertexSeeds": { - "c1": 8.063259839363818, - "c2": 8.092820372597142, - "c3": 8.56463898012439, - "c4": 8.63785974087625, - "c5": 8.797145552274673, - "c6": 8.10825621103505, - "c7": 8.209476993664333 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [222, 0, 59] }, @@ -427011,23 +427011,23 @@ "year": 1822, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": 25.15669587546516, - "c2": -17.41294451861961, - "c3": -47.528904153689524, - "c4": 26.18821797238091, - "c5": 23.808155737297852, - "c6": -16.21420077901366, - "c7": 7.24444463885709 + "points": { + "c1": 6.289426468709188, + "c2": -36.62372846318872, + "c3": -42.9972252233495, + "c4": 37.7448881737366, + "c5": -50.308125099388434, + "c6": -3.8642269018441837, + "c7": 43.384263303314924 }, - "vertexSeeds": { - "c1": 8.892110777656647, - "c2": 8.864560331450335, - "c3": 8.741551671117705, - "c4": 9.059709427851816, - "c5": 9.195651901452589, - "c6": 8.79393200206746, - "c7": 8.798372119724672 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346736, + "c3": 11.118816458622275, + "c4": 8.895053166897817, + "c5": 6.6712898751733825, + "c6": 4.447526583448921, + "c7": 2.2237632917244605 }, "rgb": [222, 0, 59] }, @@ -427038,23 +427038,23 @@ "year": 1822, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -15.438324523890941, - "c2": 28.90305907779519, - "c3": 31.293938527148697, - "c4": -9.268910808506753, - "c5": -10.005922301060885, - "c6": -3.329301103676279, - "c7": -1.2000658044558818 + "points": { + "c1": 11.303206933964539, + "c2": -1.5248749166160707, + "c3": -25.25438098501244, + "c4": 45.519226908111136, + "c5": 17.287090140657718, + "c6": 28.934888177282176, + "c7": -9.82325675214674 }, - "vertexSeeds": { - "c1": 3.1485294497333687, - "c2": 3.168323050261663, - "c3": 3.499978928608916, - "c4": 3.457362416800521, - "c5": 3.32026017309481, - "c6": 3.362628548453202, - "c7": 3.233662823667878 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [77, 76, 132] }, @@ -427065,23 +427065,23 @@ "year": 1822, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -4.0422364009888625, - "c2": -19.82342937578451, - "c3": 7.702907652970801, - "c4": 2.682927435876536, - "c5": -24.175250356635292, - "c6": 18.42595563583606, - "c7": 39.05748661516543 + "points": { + "c1": 33.58512646827198, + "c2": -26.484573024370857, + "c3": -41.93452153782415, + "c4": 18.723158205682765, + "c5": 3.376199954061292, + "c6": 7.833218615236227, + "c7": 5.3026470329636695 }, - "vertexSeeds": { - "c1": 3.9054588836055393, - "c2": 3.7343534505941895, - "c3": 3.833528299013766, - "c4": 4.4702734878484875, - "c5": 4.48296525528603, - "c6": 3.8028238879583984, - "c7": 3.86974011200531 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.49098474341193, + "c3": 5.409153952843273, + "c4": 4.32732316227462, + "c5": 3.2454923717059625, + "c6": 2.16366158113731, + "c7": 1.0818307905686575 }, "rgb": [58, 15, 49] }, @@ -427092,23 +427092,23 @@ "year": 1821, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -7.9407670789270615, - "c2": 2.457295288404193, - "c3": 1.7936879634333494, - "c4": -3.2907142819709776, - "c5": -0.6582225791414658, - "c6": -8.615031717040784, - "c7": -20.551839672161528 + "points": { + "c1": 0.14659397060240664, + "c2": 10.380786854791019, + "c3": -17.394565208626403, + "c4": -0.1121560688902612, + "c5": -8.782621403297696, + "c6": 15.268292643746733, + "c7": 2.316311223078383 }, - "vertexSeeds": { - "c1": 4.767241980843411, - "c2": 4.966244866646335, - "c3": 4.881896046091584, - "c4": 5.189291886814133, - "c5": 5.022172628437936, - "c6": 5.10362865351363, - "c7": 4.799192970315826 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.4618585298196995, + "c3": 6.218215441516419, + "c4": 4.9745723532131185, + "c5": 3.7309292649098498, + "c6": 2.4872861766065593, + "c7": 1.2436430883032796 }, "rgb": [77, 76, 132] }, @@ -427119,23 +427119,23 @@ "year": 1821, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 6.893703428697727, - "c2": -12.29860842916154, - "c3": 29.136242878072252, - "c4": 28.770851529108256, - "c5": 32.32669298364719, - "c6": 14.182158728707535, - "c7": 28.357527529308143 + "points": { + "c1": -7.5808407736044, + "c2": -11.267080601821888, + "c3": -6.677122301092833, + "c4": -6.762366790902355, + "c5": -31.91356328108082, + "c6": 6.1361815172314635, + "c7": -14.116716232034829 }, - "vertexSeeds": { - "c1": 7.253736693346428, - "c2": 7.478759971744091, - "c3": 8.502376684729624, - "c4": 7.66922880349707, - "c5": 8.191250796829616, - "c6": 7.873346438285835, - "c7": 7.664582935473305 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909847, + "c3": 11.442441054091542, + "c4": 9.153952843273231, + "c5": 6.865464632454927, + "c6": 4.5769764216366156, + "c7": 2.2884882108183042 }, "rgb": [86, 146, 138] }, @@ -427146,23 +427146,23 @@ "year": 1822, "resistanceReported": false, "duration": 31881600, - "curveSeeds": { - "c1": -3.183498056719337, - "c2": -6.947472820804805, - "c3": 9.971473388910837, - "c4": -40.36685270385248, - "c5": -38.76165544984584, - "c6": 0.5418508377572095, - "c7": 3.4474440698785003 + "points": { + "c1": 5.378878560300095, + "c2": 39.10151571161317, + "c3": -1.8624409744106245, + "c4": 21.351959794482234, + "c5": -11.250376015938684, + "c6": -34.15973122672867, + "c7": 32.79045172492848 }, - "vertexSeeds": { - "c1": 3.256300685931757, - "c2": 3.274810789923129, - "c3": 3.2664712923900323, - "c4": 3.2761070171797213, - "c5": 3.278342418770461, - "c6": 3.272898637252437, - "c7": 3.2508370354251284 + "offsets": { + "c1": 5.501618122977346, + "c2": 4.715672676837747, + "c3": 3.929727230698149, + "c4": 3.1437817845584726, + "c5": 2.3578363384188736, + "c6": 1.5718908922792754, + "c7": 0.7859454461395986 }, "rgb": [238, 201, 159] }, @@ -427173,23 +427173,23 @@ "year": 1822, "resistanceReported": false, "duration": 35251200, - "curveSeeds": { - "c1": 46.33219757637349, - "c2": 8.468267954846468, - "c3": 28.490522766777445, - "c4": 2.852256168386944, - "c5": -45.45453073426999, - "c6": -12.150835686024926, - "c7": 43.45172432357725 + "points": { + "c1": -47.584777464314726, + "c2": -10.897677526578995, + "c3": -23.77774107121415, + "c4": 10.719657745379195, + "c5": -1.1164983563677353, + "c6": -46.07851381022041, + "c7": -49.42750717871121 }, - "vertexSeeds": { - "c1": 8.068272725059478, - "c2": 8.15687402297372, - "c3": 8.143571279890256, - "c4": 8.034632894269194, - "c5": 8.114898348503251, - "c6": 8.061981404011473, - "c7": 8.159259029387023 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933438, + "c3": 9.731853906611212, + "c4": 7.785483125288987, + "c5": 5.839112343966762, + "c6": 3.8927415626444506, + "c7": 1.9463707813222253 }, "rgb": [58, 15, 49] }, @@ -427200,23 +427200,23 @@ "year": 1821, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -13.127359930281134, - "c2": 8.143509523974956, - "c3": -21.810790029633853, - "c4": -27.289548722442337, - "c5": -32.97667810403676, - "c6": -15.883812085474108, - "c7": -13.756501549623362 + "points": { + "c1": 15.272240815670536, + "c2": -21.611609112324466, + "c3": 28.435962556412782, + "c4": -29.0663127446937, + "c5": -17.14077090549118, + "c6": 9.88624560417123, + "c7": -8.333782203340345 }, - "vertexSeeds": { - "c1": 8.993357808278434, - "c2": 9.1553740426966, - "c3": 9.647298585370917, - "c4": 9.457321480833528, - "c5": 9.120372072864644, - "c6": 9.013343479759095, - "c7": 8.80909132505319 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.147018030513172, + "c3": 11.789181692094317, + "c4": 9.431345353675447, + "c5": 7.073509015256593, + "c6": 4.715672676837723, + "c7": 2.3578363384188537 }, "rgb": [238, 201, 159] }, @@ -427227,23 +427227,23 @@ "year": 1821, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 13.914111099784087, - "c2": 7.906978878527646, - "c3": -0.7494139455591586, - "c4": 17.402097197219426, - "c5": 3.7662077650004413, - "c6": 17.089833725528948, - "c7": -14.408068228187311 + "points": { + "c1": 24.747467104962155, + "c2": -27.132018071257086, + "c3": -7.486996524114474, + "c4": 27.566162099354607, + "c5": -25.726364128596597, + "c6": -5.463720508282474, + "c7": -21.601220923137483 }, - "vertexSeeds": { - "c1": 8.84198135288057, - "c2": 8.695963868175808, - "c3": 9.31669668394806, - "c4": 8.677663794562534, - "c5": 8.615788670211593, - "c6": 9.357121336671602, - "c7": 8.662169288645455 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -427254,23 +427254,23 @@ "year": 1821, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 7.928083357017435, - "c2": 14.098160271844954, - "c3": -11.065677998086791, - "c4": -8.496493722936954, - "c5": 21.332018172114388, - "c6": -17.84742745205922, - "c7": 13.42836118957883 + "points": { + "c1": 9.631739240992871, + "c2": -0.5599820972996881, + "c3": -11.916661972211166, + "c4": -15.903929493718639, + "c5": 27.74733932599569, + "c6": 15.84428432586553, + "c7": 20.524662532333274 }, - "vertexSeeds": { - "c1": 10.537501652826133, - "c2": 10.71476311911761, - "c3": 10.701625865210463, - "c4": 10.20479186680484, - "c5": 10.305167608602172, - "c6": 10.003522388426148, - "c7": 10.655167801345103 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.700416088765609, + "c3": 13.083680073971346, + "c4": 10.466944059177086, + "c5": 7.850208044382825, + "c6": 5.233472029588523, + "c7": 2.6167360147942613 }, "rgb": [222, 0, 59] }, @@ -427281,23 +427281,23 @@ "year": 1821, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -8.985048512063987, - "c2": 20.042428710782154, - "c3": 23.390105478415208, - "c4": -3.332713630509822, - "c5": -11.51784438308141, - "c6": 24.31459038673855, - "c7": 19.29275141733273 + "points": { + "c1": -15.511692439935373, + "c2": -15.57584318198905, + "c3": 7.438685034051254, + "c4": 12.67166595337654, + "c5": 27.1481864892449, + "c6": 11.048055962942534, + "c7": -9.74141462726509 }, - "vertexSeeds": { - "c1": 5.169674964409625, - "c2": 5.1344356731151075, - "c3": 5.226071933672776, - "c4": 4.874777445331217, - "c5": 4.852935297166718, - "c6": 5.173866598098984, - "c7": 5.241344904573069 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -427308,23 +427308,23 @@ "year": 1821, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -7.010324806256094, - "c2": 18.109834660506063, - "c3": 4.125847490291886, - "c4": -26.924189583159063, - "c5": 18.793836139950887, - "c6": -25.61021327801457, - "c7": -6.369129939752874 + "points": { + "c1": -3.924311009412385, + "c2": 3.0776346704662103, + "c3": -27.52659600152962, + "c4": -9.229611315305718, + "c5": -31.904774772518333, + "c6": 3.283200210415181, + "c7": 25.935277845129733 }, - "vertexSeeds": { - "c1": 7.892112381804373, - "c2": 7.349506635241446, - "c3": 7.730347680876386, - "c4": 7.605788368386668, - "c5": 8.05311068788741, - "c6": 7.9017168532348645, - "c7": 8.07103831350073 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772544, + "c3": 9.639389736477106, + "c4": 7.711511789181689, + "c5": 5.783633841886272, + "c6": 3.855755894590855, + "c7": 1.9278779472954173 }, "rgb": [86, 146, 138] }, @@ -427335,23 +427335,23 @@ "year": 1821, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -25.514709647081947, - "c2": -23.82001116550464, - "c3": 5.531827357812155, - "c4": 11.62135342422544, - "c5": -22.06850992613769, - "c6": 8.653519256428936, - "c7": -5.6056235674607535 + "points": { + "c1": -7.249946626432088, + "c2": 17.9259832151526, + "c3": 23.74140162056421, + "c4": -24.150252870798386, + "c5": -22.023331161658923, + "c6": -14.871056918663939, + "c7": 27.66487346670216 }, - "vertexSeeds": { - "c1": 5.580496245127405, - "c2": 5.460880980985341, - "c3": 5.4040550014489055, - "c4": 5.719858460713315, - "c5": 5.837030978415534, - "c6": 5.566726140886791, - "c7": 5.8392987611483615 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227455, + "c3": 7.027276930189554, + "c4": 5.621821544151636, + "c5": 4.216366158113736, + "c6": 2.810910772075818, + "c7": 1.4054553860379173 }, "rgb": [58, 15, 49] }, @@ -427362,23 +427362,23 @@ "year": 1821, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 15.743207224918194, - "c2": 3.3578865585295077, - "c3": 0.5071528885075267, - "c4": -8.3925707392751, - "c5": 14.938219489629532, - "c6": -11.372338267235644, - "c7": 33.15771382122283 + "points": { + "c1": -9.073732415780643, + "c2": -17.128414289516616, + "c3": 19.798957674376986, + "c4": -35.34294508203163, + "c5": -16.461923224309142, + "c6": 30.31228211469599, + "c7": 34.17021337528743 }, - "vertexSeeds": { - "c1": 10.126741088341767, - "c2": 9.872989525644131, - "c3": 10.358241417418313, - "c4": 10.628422411902047, - "c5": 9.870353597437015, - "c6": 10.693612279064062, - "c7": 10.511098410565408 + "offsets": { + "c1": 18.7378640776699, + "c2": 16.061026352288483, + "c3": 13.384188626907063, + "c4": 10.707350901525645, + "c5": 8.030513176144256, + "c6": 5.353675450762837, + "c7": 2.6768377253814184 }, "rgb": [222, 0, 59] }, @@ -427389,23 +427389,23 @@ "year": 1821, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": 1.888797784667993, - "c2": 13.836793926754876, - "c3": 8.425285507178597, - "c4": -3.952468179255579, - "c5": 10.31233313101642, - "c6": 8.21769754372799, - "c7": 1.450825891624639 + "points": { + "c1": 4.820707991505984, + "c2": 1.8583994236573034, + "c3": 3.0721511067930045, + "c4": -10.12354614233443, + "c5": 15.705019620327413, + "c6": -6.857874612911619, + "c7": -8.005167149787466 }, - "vertexSeeds": { - "c1": 2.964870980478174, - "c2": 2.8908745400310005, - "c3": 3.0060373958674487, - "c4": 3.111046559749284, - "c5": 3.217267639577663, - "c6": 3.1153691039802127, - "c7": 2.93940434885754 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [77, 76, 132] }, @@ -427416,23 +427416,23 @@ "year": 1821, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -17.699687216179672, - "c2": 10.649704145348828, - "c3": -3.32618910181775, - "c4": -22.772368754823177, - "c5": 0.9194490668317457, - "c6": -17.38139098307177, - "c7": -12.730253791549057 + "points": { + "c1": -11.043818233896506, + "c2": -28.917646486442436, + "c3": 2.7680210378305574, + "c4": 19.053533305920205, + "c5": 35.362144732524904, + "c6": 11.038640508135856, + "c7": -4.889871130191857 }, - "vertexSeeds": { - "c1": 9.320815441034691, - "c2": 9.529401496589927, - "c3": 9.422642845548925, - "c4": 9.803093362585265, - "c5": 9.190877286005845, - "c6": 9.443688892599257, - "c7": 9.100793248547467 + "offsets": { + "c1": 16.472491909385116, + "c2": 14.119278779472946, + "c3": 11.766065649560801, + "c4": 9.412852519648633, + "c5": 7.059639389736485, + "c6": 4.706426259824316, + "c7": 2.353213129912147 }, "rgb": [238, 201, 159] }, @@ -427443,23 +427443,23 @@ "year": 1821, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 7.19642560064333, - "c2": 14.003293261305927, - "c3": -2.6947473820048096, - "c4": 1.7488965026382601, - "c5": -14.229256764739223, - "c6": -4.92589706992538, - "c7": -2.798963706819606 + "points": { + "c1": 16.20858810501553, + "c2": -7.118933076330073, + "c3": -17.629681261075003, + "c4": 31.66428138363301, + "c5": 0.06910644495161478, + "c6": -33.92969750000776, + "c7": -5.435005999951365 }, - "vertexSeeds": { - "c1": 7.864181969768352, - "c2": 7.7726768663624055, - "c3": 7.600263113536977, - "c4": 7.656529996945133, - "c5": 7.677424363020435, - "c6": 7.68341686782886, - "c7": 7.827428686696569 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370305, + "c3": 9.408229311141907, + "c4": 7.526583448913552, + "c5": 5.6449375866851526, + "c6": 3.7632917244567534, + "c7": 1.8816458622283991 }, "rgb": [222, 0, 59] }, @@ -427470,23 +427470,23 @@ "year": 1821, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 15.741738521233437, - "c2": -23.77838751520703, - "c3": -8.07489459495752, - "c4": 5.181448330189433, - "c5": 9.742545287299414, - "c6": 23.841288641610745, - "c7": 20.90700306717165 + "points": { + "c1": 11.700057402786172, + "c2": 34.16594046480725, + "c3": 1.177531712044214, + "c4": 22.86208496726684, + "c5": -7.648383047760397, + "c6": 27.919697921523472, + "c7": -31.84960462098263 }, - "vertexSeeds": { - "c1": 8.706550304175789, - "c2": 8.70674493281165, - "c3": 8.717342632059768, - "c4": 8.710009952847274, - "c5": 8.710686633191994, - "c6": 8.715789876163948, - "c7": 8.7137808160029 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099506, + "c3": 10.402219140083336, + "c4": 8.321775312066338, + "c5": 6.241331484050167, + "c6": 4.160887656033169, + "c7": 2.0804438280169983 }, "rgb": [77, 76, 132] }, @@ -427497,23 +427497,23 @@ "year": 1821, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -21.273237711945654, - "c2": 6.018329866196904, - "c3": 1.4656052736306542, - "c4": 16.13201405189672, - "c5": 4.180051709493494, - "c6": -0.34316897792471934, - "c7": 22.200962372724998 + "points": { + "c1": -18.521886381179158, + "c2": -2.521675453986621, + "c3": 8.278115478032408, + "c4": -6.915730870566385, + "c5": -24.327455425386045, + "c6": 1.2795844648506183, + "c7": 0.18579598510137174 }, - "vertexSeeds": { - "c1": 4.071337841598203, - "c2": 4.231334850517782, - "c3": 4.317508820907276, - "c4": 4.080490197095313, - "c5": 4.0096078210681, - "c6": 4.090938597630097, - "c7": 4.056587397155079 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331487, + "c3": 5.362921867776235, + "c4": 4.290337494220991, + "c5": 3.2177531206657397, + "c6": 2.1451687471104957, + "c7": 1.0725843735552523 }, "rgb": [86, 146, 138] }, @@ -427524,23 +427524,23 @@ "year": 1821, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -26.288066762230844, - "c2": -19.985000100979434, - "c3": -23.52581255626279, - "c4": 4.303154926694599, - "c5": -18.515746373454647, - "c6": 7.199653626395165, - "c7": 25.97147959849809 + "points": { + "c1": 13.609089112422083, + "c2": -18.256275787455657, + "c3": -1.7351340553240924, + "c4": -31.41900872619682, + "c5": 7.341981942051255, + "c6": -27.398407593913756, + "c7": -21.913285731117266 }, - "vertexSeeds": { - "c1": 4.534431456847367, - "c2": 4.513976119345257, - "c3": 4.534645092361115, - "c4": 4.6160148369008285, - "c5": 4.576058304644576, - "c6": 4.58527915200811, - "c7": 4.4857131461405855 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613042, + "c3": 5.524734165510872, + "c4": 4.419787332408704, + "c5": 3.3148404993065346, + "c6": 2.209893666204338, + "c7": 1.104946833102169 }, "rgb": [77, 76, 132] }, @@ -427551,23 +427551,23 @@ "year": 1821, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 7.1420654814583, - "c2": -5.232132412182377, - "c3": 14.865145571631661, - "c4": -29.978315899620522, - "c5": -13.636838188868808, - "c6": -19.354429268470934, - "c7": -10.744994029800957 + "points": { + "c1": -13.765198293215256, + "c2": 20.969753070836646, + "c3": 24.97783045052948, + "c4": -6.0456199020166395, + "c5": -22.059504758955566, + "c6": -11.906034876840778, + "c7": -24.448466858476152 }, - "vertexSeeds": { - "c1": 7.412418586124774, - "c2": 7.19069537577904, - "c3": 7.6084497425827, - "c4": 7.313920079424748, - "c5": 7.688816084655734, - "c6": 7.155815599167065, - "c7": 7.177844214134051 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249648, + "c3": 9.338881183541366, + "c4": 7.471104946833105, + "c5": 5.603328710124824, + "c6": 3.735552473416543, + "c7": 1.8677762367082813 }, "rgb": [238, 201, 159] }, @@ -427578,23 +427578,23 @@ "year": 1821, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -2.732065395585849, - "c2": -13.537539429105967, - "c3": 9.455015375318201, - "c4": -3.06117133700414, - "c5": -13.320138714778073, - "c6": 22.919975527794303, - "c7": 23.55780454943567 + "points": { + "c1": -8.691619857350858, + "c2": 18.483742670176465, + "c3": 16.86533381445736, + "c4": -0.3148796378859906, + "c5": -7.173343744008552, + "c6": -20.516869340872553, + "c7": 21.39548188799562 }, - "vertexSeeds": { - "c1": 14.000350659294513, - "c2": 13.714527032491642, - "c3": 13.655081835961257, - "c4": 13.799052347144748, - "c5": 13.948441724356373, - "c6": 13.547767351859006, - "c7": 13.78975611776937 + "offsets": { + "c1": 24.045307443365697, + "c2": 20.61026352288489, + "c3": 17.175219602404084, + "c4": 13.740175681923276, + "c5": 10.305131761442468, + "c6": 6.870087840961616, + "c7": 3.435043920480808 }, "rgb": [86, 146, 138] }, @@ -427605,23 +427605,23 @@ "year": 1821, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -3.7835001296103385, - "c2": 6.4043551917886745, - "c3": 10.872811962474657, - "c4": -28.93572832766102, - "c5": 10.97769660743019, - "c6": -12.525977535314581, - "c7": 26.229285460887986 + "points": { + "c1": -9.60751552230304, + "c2": 26.77783598431978, + "c3": -6.152512186088586, + "c4": -9.182834804618807, + "c5": 23.016667964228247, + "c6": -23.048250087324483, + "c7": 33.00572309094494 }, - "vertexSeeds": { - "c1": 2.621042843359579, - "c2": 2.766890503797391, - "c3": 2.8170744578212426, - "c4": 2.668063697749773, - "c5": 2.661832330072705, - "c6": 2.75658900404011, - "c7": 2.790782543883803 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993065, + "c3": 3.444290337494221, + "c4": 2.7554322699953766, + "c5": 2.0665742024965326, + "c6": 1.3777161349976883, + "c7": 0.6888580674988442 }, "rgb": [222, 0, 59] }, @@ -427632,23 +427632,23 @@ "year": 1821, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 23.576500250720898, - "c2": -20.277843802096662, - "c3": 19.68401500696617, - "c4": 3.0076760384203567, - "c5": 30.738277089427065, - "c6": 24.45954000392593, - "c7": 32.81445073773625 + "points": { + "c1": 13.489631715547361, + "c2": 28.54246196021296, + "c3": 17.44924528634236, + "c4": 19.692791065149635, + "c5": 0.4766212520065878, + "c6": 34.348767482779465, + "c7": 23.65341550521851 }, - "vertexSeeds": { - "c1": 9.743677281773246, - "c2": 10.109636925373087, - "c3": 10.37867671114968, - "c4": 9.852053087017225, - "c5": 10.057732698590335, - "c6": 9.747642998114882, - "c7": 10.39512461645933 + "offsets": { + "c1": 17.60517799352751, + "c2": 15.090152565880702, + "c3": 12.57512713823394, + "c4": 10.060101710587135, + "c5": 7.545076282940374, + "c6": 5.030050855293568, + "c7": 2.515025427646784 }, "rgb": [238, 201, 159] }, @@ -427659,23 +427659,23 @@ "year": 1821, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 21.94195779073238, - "c2": -30.898208798346097, - "c3": -24.40920465262061, - "c4": -13.99223962424233, - "c5": 34.01475873480586, - "c6": -22.25306849764509, - "c7": 24.456372012669952 + "points": { + "c1": 2.891238106981369, + "c2": -28.90526323777899, + "c3": -11.048216903097124, + "c4": -26.993248341935143, + "c5": 35.12456231379267, + "c6": -8.078354376805564, + "c7": 11.133632380200844 }, - "vertexSeeds": { - "c1": 2.66744783414599, - "c2": 2.7221927212251495, - "c3": 2.7355432042666292, - "c4": 2.6734628716330007, - "c5": 2.7131223144469594, - "c6": 2.6798433478590753, - "c7": 2.6638180975047687 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.9667128987517355, + "c3": 3.3055940822931156, + "c4": 2.6444752658344957, + "c5": 1.983356449375876, + "c6": 1.3222376329172396, + "c7": 0.6611188164586198 }, "rgb": [222, 0, 59] }, @@ -427686,23 +427686,23 @@ "year": 1821, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -24.50975471540268, - "c2": -21.578352806554555, - "c3": -28.331556071811338, - "c4": -6.213393240863564, - "c5": 27.807139588990907, - "c6": -29.52620434182064, - "c7": 24.134599802415977 + "points": { + "c1": 8.5829380383094, + "c2": 16.318533920126285, + "c3": -27.889111408061666, + "c4": 29.325124911332253, + "c5": -3.5774934008880095, + "c6": 30.789036558781888, + "c7": -30.79201653058099 }, - "vertexSeeds": { - "c1": 8.626543296751313, - "c2": 8.273712271161376, - "c3": 8.05371573466387, - "c4": 8.31085583251338, - "c5": 8.366082283621648, - "c6": 8.520630777426193, - "c7": 8.371724031191054 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.45492371705964, + "c3": 10.3791030975497, + "c4": 8.30328247803976, + "c5": 6.22746185852982, + "c6": 4.15164123901988, + "c7": 2.07582061950994 }, "rgb": [58, 15, 49] }, @@ -427713,23 +427713,23 @@ "year": 1822, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -14.841271186354902, - "c2": -18.547355042275104, - "c3": -33.17310476819062, - "c4": 5.741515852028023, - "c5": 4.399672245381609, - "c6": 34.78103683665246, - "c7": 35.70364483345767 + "points": { + "c1": 4.5525049999420375, + "c2": -5.036276035610811, + "c3": 28.205397523877124, + "c4": -21.62515552853006, + "c5": -12.838376923375932, + "c6": 21.08516931689276, + "c7": -30.729401896539287 }, - "vertexSeeds": { - "c1": 4.182495799834346, - "c2": 4.189887104562862, - "c3": 4.406998332248907, - "c4": 4.409961550729701, - "c5": 4.372300411590919, - "c6": 4.40317555655545, - "c7": 4.384869490891615 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170591, + "c3": 5.270457697642171, + "c4": 4.216366158113733, + "c5": 3.1622746185852955, + "c6": 2.1081830790568756, + "c7": 1.0540915395284378 }, "rgb": [222, 0, 59] }, @@ -427740,23 +427740,23 @@ "year": 1821, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -22.633588976316133, - "c2": -26.948267647022046, - "c3": 20.284055376959884, - "c4": -1.3535709811239975, - "c5": 3.6004085217454644, - "c6": 19.534461736975636, - "c7": 26.863545096346847 + "points": { + "c1": -25.30887465754261, + "c2": -6.709355197277663, + "c3": -12.53515413200818, + "c4": 27.830599750298255, + "c5": -18.769306690712234, + "c6": 17.546885573758956, + "c7": -1.5850710685966334 }, - "vertexSeeds": { - "c1": 9.85903257239771, - "c2": 9.775281627290916, - "c3": 9.885156375851867, - "c4": 9.68964351335109, - "c5": 9.802141685564852, - "c6": 9.790845784054154, - "c7": 9.818102918955999 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.174757281553372, + "c3": 11.81229773462784, + "c4": 9.449838187702248, + "c5": 7.087378640776717, + "c6": 4.724919093851124, + "c7": 2.362459546925593 }, "rgb": [86, 146, 138] }, @@ -427767,23 +427767,23 @@ "year": 1822, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -12.345304872979558, - "c2": 34.03251422494088, - "c3": -23.544330991732036, - "c4": -6.851649953529986, - "c5": -24.03484457456595, - "c6": -10.709642936246084, - "c7": -25.58401961863425 + "points": { + "c1": 25.096133692512467, + "c2": 13.143785599019978, + "c3": -34.92926565713749, + "c4": 32.60345082997567, + "c5": -30.37101251120928, + "c6": -12.188593399745507, + "c7": -12.415756527311672 }, - "vertexSeeds": { - "c1": 6.495802910964439, - "c2": 7.717562564811856, - "c3": 8.189904459174866, - "c4": 6.446601559196197, - "c5": 7.904658655319061, - "c6": 6.458403869636663, - "c7": 8.951538985315644 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789181, + "c3": 11.373092926490985, + "c4": 9.098474341192787, + "c5": 6.8238557558945905, + "c6": 4.549237170596394, + "c7": 2.274618585298197 }, "rgb": [58, 15, 49] }, @@ -427794,23 +427794,23 @@ "year": 1822, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 26.804418859452547, - "c2": -3.631892871615957, - "c3": -0.836542795089656, - "c4": -4.632530177378971, - "c5": 22.606892694191465, - "c6": 21.71402638517172, - "c7": -17.523102184821497 + "points": { + "c1": 23.766092294951875, + "c2": 7.390585539778364, + "c3": -16.20482623515216, + "c4": -11.259210781173401, + "c5": -0.9898230537297508, + "c6": -8.525879593551597, + "c7": 6.351660028798925 }, - "vertexSeeds": { - "c1": 5.226596340457302, - "c2": 4.866464694806112, - "c3": 5.105788687519688, - "c4": 4.9630440983297905, - "c5": 5.034725436987707, - "c6": 5.209449014867348, - "c7": 5.015423288976267 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859927, + "c3": 6.241331484049927, + "c4": 4.993065187239952, + "c5": 3.7447988904299514, + "c6": 2.496532593619976, + "c7": 1.248266296809988 }, "rgb": [238, 201, 159] }, @@ -427821,23 +427821,23 @@ "year": 1822, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 3.009144435849926, - "c2": -26.09423169088921, - "c3": 7.9415605079217855, - "c4": 2.798970761669011, - "c5": -1.5946074453714232, - "c6": -14.992619408164188, - "c7": 16.988383875725077 + "points": { + "c1": 16.682207371722697, + "c2": -10.735596603654244, + "c3": 36.14814674592225, + "c4": 19.526571990709414, + "c5": -24.20545984938009, + "c6": 28.669840987489593, + "c7": 24.731856518695267 }, - "vertexSeeds": { - "c1": 3.2901926222621105, - "c2": 3.466651426994164, - "c3": 3.296325723200011, - "c4": 3.466144772298992, - "c5": 3.270001993475595, - "c6": 3.3080691348549873, - "c7": 3.542644102888223 + "offsets": { + "c1": 5.9870550161812295, + "c2": 5.131761442441058, + "c3": 4.276467868700877, + "c4": 3.421174294960706, + "c5": 2.565880721220524, + "c6": 1.710587147480353, + "c7": 0.8552935737401814 }, "rgb": [238, 201, 159] }, @@ -427848,23 +427848,23 @@ "year": 1821, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 16.586518785977365, - "c2": 15.304798919953871, - "c3": 23.745749596971425, - "c4": 26.669626423702123, - "c5": -10.100285143936542, - "c6": -14.07534485488522, - "c7": -6.205421964313828 + "points": { + "c1": -25.756765135306445, + "c2": -12.319224317981384, + "c3": 14.00573468163688, + "c4": -25.837534110171703, + "c5": 15.963111051511369, + "c6": -1.8421115727204551, + "c7": -3.013528172485941 }, - "vertexSeeds": { - "c1": 10.78214947931727, - "c2": 10.259038347161471, - "c3": 10.714500012048275, - "c4": 11.08145443671442, - "c5": 11.64946958124977, - "c6": 10.728106161378502, - "c7": 10.64006089795429 + "offsets": { + "c1": 19.70873786407767, + "c2": 16.893203883495158, + "c3": 14.077669902912616, + "c4": 11.262135922330105, + "c5": 8.446601941747565, + "c6": 5.631067961165052, + "c7": 2.8155339805825133 }, "rgb": [222, 0, 59] }, @@ -427875,23 +427875,23 @@ "year": 1822, "resistanceReported": false, "duration": 31708800, - "curveSeeds": { - "c1": 32.16781913276984, - "c2": 41.59477468131235, - "c3": 39.73525107867274, - "c4": 33.955180961665285, - "c5": -21.5374223581904, - "c6": 30.67981808634466, - "c7": -34.96991777816161 + "points": { + "c1": -3.3066377417004915, + "c2": -19.025096202982184, + "c3": -5.310597526966291, + "c4": 25.39075993590071, + "c5": -29.618734053550554, + "c6": 46.35664618562736, + "c7": 39.20330443859921 }, - "vertexSeeds": { - "c1": 7.9812439233335555, - "c2": 8.049128893311122, - "c3": 8.006130727639276, - "c4": 8.032548704340368, - "c5": 8.00835913088631, - "c6": 7.996848427475976, - "c7": 8.012183485187741 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.59500693481272, + "c3": 9.662505779010647, + "c4": 7.73000462320848, + "c5": 5.797503467406408, + "c6": 3.86500231160424, + "c7": 1.9325011558021679 }, "rgb": [58, 15, 49] }, @@ -427902,23 +427902,23 @@ "year": 1821, "resistanceReported": false, "duration": 5011200, - "curveSeeds": { - "c1": 10.252954972677115, - "c2": -6.323726311182858, - "c3": 0.4819685598116248, - "c4": -14.669825760875355, - "c5": -13.365572165478998, - "c6": 2.9812425331462844, - "c7": 5.600526791869255 + "points": { + "c1": 2.7022151248305732, + "c2": 1.9090121831463946, + "c3": -4.101066273610591, + "c4": -11.67545141062586, + "c5": -17.30126842415259, + "c6": -16.044884702449053, + "c7": 3.5848966445257204 }, - "vertexSeeds": { - "c1": 1.8835968634854046, - "c2": 1.8086801487353594, - "c3": 1.889161507117076, - "c4": 1.8871626625031335, - "c5": 1.961286596910568, - "c6": 1.9321195278426377, - "c7": 1.9019665458352528 + "offsets": { + "c1": 3.3333333333333335, + "c2": 2.857142857142859, + "c3": 2.3809523809523805, + "c4": 1.9047619047619058, + "c5": 1.4285714285714275, + "c6": 0.9523809523809529, + "c7": 0.4761904761904785 }, "rgb": [58, 15, 49] }, @@ -427929,23 +427929,23 @@ "year": 1821, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -24.974069585522653, - "c2": -5.2118440707473965, - "c3": -22.47979666882906, - "c4": 3.6690471840775842, - "c5": 16.613342411038577, - "c6": -1.6330453328487593, - "c7": -2.3698213096912966 + "points": { + "c1": 0.8875804060654247, + "c2": -24.282592115859448, + "c3": 3.9452491679141453, + "c4": -26.720116838310748, + "c5": -16.444697695637565, + "c6": -10.149177868284468, + "c7": 16.22451000273107 }, - "vertexSeeds": { - "c1": 2.167127004704242, - "c2": 2.367762302115284, - "c3": 2.607889282641439, - "c4": 2.4162150945947887, - "c5": 2.5986213246273615, - "c6": 2.6075874247758124, - "c7": 2.4249092161292434 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631068, + "c3": 3.236245954692557, + "c4": 2.588996763754045, + "c5": 1.941747572815534, + "c6": 1.2944983818770226, + "c7": 0.6472491909385113 }, "rgb": [77, 76, 132] }, @@ -427956,23 +427956,23 @@ "year": 1821, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -19.099259988656907, - "c2": 14.878076737969668, - "c3": -10.573529428070586, - "c4": 24.617210662979584, - "c5": -19.399387166352213, - "c6": -16.64710248083244, - "c7": 5.318762932396627 + "points": { + "c1": -20.377074727674525, + "c2": -5.432389619589575, + "c3": 27.74715130276702, + "c4": 22.147964490650306, + "c5": 16.703435286452365, + "c6": -14.593962123781607, + "c7": 6.619021558137543 }, - "vertexSeeds": { - "c1": 2.6326688521291324, - "c2": 2.8384750442971467, - "c3": 2.9301138833998746, - "c4": 2.810570469099088, - "c5": 2.719654238477598, - "c6": 2.849822189638134, - "c7": 2.664872304650601 + "offsets": { + "c1": 4.951456310679612, + "c2": 4.244105409153955, + "c3": 3.5367545076282907, + "c4": 2.8294036061026344, + "c5": 2.1220527045769777, + "c6": 1.414701803051313, + "c7": 0.7073509015256565 }, "rgb": [58, 15, 49] }, @@ -427983,23 +427983,23 @@ "year": 1821, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 6.714033500404291, - "c2": 26.11414839249982, - "c3": 12.638175383642185, - "c4": 14.756836891463266, - "c5": -21.183014901126775, - "c6": 19.799274060847658, - "c7": -25.166870135824134 + "points": { + "c1": 21.82790801034365, + "c2": 21.437648159870072, + "c3": 9.356366328965969, + "c4": 3.606680374796575, + "c5": -8.331494008633893, + "c6": -29.791387977414907, + "c7": 11.291720257938316 }, - "vertexSeeds": { - "c1": 9.526630898030295, - "c2": 9.121601467305513, - "c3": 8.656590979371563, - "c4": 9.188486307974241, - "c5": 8.840654848947123, - "c6": 8.736943015479817, - "c7": 9.367671446157289 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789188, + "c3": 11.373092926490976, + "c4": 9.098474341192786, + "c5": 6.823855755894594, + "c6": 4.549237170596383, + "c7": 2.2746185852981915 }, "rgb": [238, 201, 159] }, @@ -428010,23 +428010,23 @@ "year": 1822, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -9.860056776502255, - "c2": 11.577677206929124, - "c3": 15.282297765856669, - "c4": 32.26091382937394, - "c5": 1.131822783546383, - "c6": 38.254541301894726, - "c7": 21.43241749912209 + "points": { + "c1": 29.155660453288384, + "c2": 19.38743102551677, + "c3": -39.472528842625266, + "c4": 32.58567960776093, + "c5": 6.274058480850691, + "c6": -26.413700550547155, + "c7": 41.970452362306695 }, - "vertexSeeds": { - "c1": 1.0277502653273818, - "c2": 0.9149329208525755, - "c3": 0.9425958710746732, - "c4": 0.93146812098926, - "c5": 1.0353255169617033, - "c6": 0.9407044306572745, - "c7": 0.9866404074592219 + "offsets": { + "c1": 1.779935275080906, + "c2": 1.5256588072122048, + "c3": 1.271382339343505, + "c4": 1.0171058714748038, + "c5": 0.7628294036061024, + "c6": 0.5085529357374009, + "c7": 0.2542764678687014 }, "rgb": [238, 201, 159] }, @@ -428037,23 +428037,23 @@ "year": 1821, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 17.14393934003356, - "c2": -14.469831559142476, - "c3": 4.6834857998956885, - "c4": -9.312351187193944, - "c5": -16.572008246268776, - "c6": 10.707591432234718, - "c7": 2.6743915081319223 + "points": { + "c1": -14.851921760929269, + "c2": 27.496768679347124, + "c3": 2.195424298935709, + "c4": -0.7437820160177928, + "c5": -24.207050394473985, + "c6": -11.31957114134103, + "c7": -0.12525635171409277 }, - "vertexSeeds": { - "c1": 7.636010362694301, - "c2": 7.636010362694301, - "c3": 7.636010362694301, - "c4": 7.636010362694301, - "c5": 7.636010362694301, - "c6": 7.636010362694301, - "c7": 7.636010362694301 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -428064,23 +428064,23 @@ "year": 1821, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -5.329734379876072, - "c2": -19.406818085051967, - "c3": 13.893270810806875, - "c4": -11.480814160679023, - "c5": 15.265342482053832, - "c6": -6.5919699680577715, - "c7": -11.343563073917919 + "points": { + "c1": -2.986113349486864, + "c2": -7.099379207487733, + "c3": 4.627293125813907, + "c4": 4.61021332588269, + "c5": -7.204152718967549, + "c6": 12.829627746809955, + "c7": 21.831678818959155 }, - "vertexSeeds": { - "c1": 4.347868340144377, - "c2": 4.630245304993147, - "c3": 4.321922089286048, - "c4": 4.275383418387301, - "c5": 4.450363032017837, - "c6": 4.5749677717055315, - "c7": 4.320020700286112 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733706, + "c3": 5.594082293111415, + "c4": 4.475265834489134, + "c5": 3.356449375866853, + "c6": 2.237632917244562, + "c7": 1.118816458622281 }, "rgb": [77, 76, 132] }, @@ -428091,23 +428091,23 @@ "year": 1821, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 7.249551771887791, - "c2": 22.094419423171733, - "c3": 14.50121273999672, - "c4": 5.698359416564681, - "c5": 6.3873559499812735, - "c6": 13.539211922799442, - "c7": -20.371116357975993 + "points": { + "c1": -23.766359307125448, + "c2": -16.55448284324499, + "c3": -28.200852767816095, + "c4": 3.0676402302984087, + "c5": -24.081074291366196, + "c6": -21.273961252839566, + "c7": 7.0050171157394345 }, - "vertexSeeds": { - "c1": 4.04376410591648, - "c2": 4.1145791872455595, - "c3": 4.493742318567572, - "c4": 4.305871962199403, - "c5": 4.261230049977106, - "c6": 4.498803239589787, - "c7": 4.188461732117522 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411928, + "c3": 5.4091539528432735, + "c4": 4.327323162274618, + "c5": 3.245492371705964, + "c6": 2.163661581137309, + "c7": 1.0818307905686546 }, "rgb": [77, 76, 132] }, @@ -428118,23 +428118,23 @@ "year": 1822, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 22.29684438767079, - "c2": -4.678256441191856, - "c3": -15.97324173892615, - "c4": 11.808466104659527, - "c5": -23.44054857914045, - "c6": 15.221966505979577, - "c7": -30.133846211305745 + "points": { + "c1": -11.427532621217704, + "c2": 30.721280960723774, + "c3": -32.71715813892984, + "c4": 1.09230672424831, + "c5": -24.033557217583926, + "c6": 14.86815801215527, + "c7": -29.399804693869577 }, - "vertexSeeds": { - "c1": 8.896197998803936, - "c2": 8.556928794360868, - "c3": 8.418655831558771, - "c4": 8.466628400539319, - "c5": 8.459854079538694, - "c6": 8.833740478608064, - "c7": 8.313701388622045 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502073, + "c3": 10.633379565418405, + "c4": 8.506703652334716, + "c5": 6.380027739251046, + "c6": 4.253351826167358, + "c7": 2.1266759130836888 }, "rgb": [77, 76, 132] }, @@ -428145,23 +428145,23 @@ "year": 1822, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 13.737742929874763, - "c2": -29.09719851165414, - "c3": 28.537245492996817, - "c4": 30.361392380768194, - "c5": -35.596849865330114, - "c6": -39.59941344763061, - "c7": -24.97392968308636 + "points": { + "c1": -4.888017882220048, + "c2": -32.259823640781946, + "c3": -3.8814748934089494, + "c4": 16.3391175961008, + "c5": 8.186089859087538, + "c6": 3.1036410552463565, + "c7": 33.94307335710931 }, - "vertexSeeds": { - "c1": 7.8220485802181265, - "c2": 7.403727204373795, - "c3": 7.656838519529509, - "c4": 8.672266072946657, - "c5": 7.811320324165661, - "c6": 7.912062237851042, - "c7": 8.484043923347532 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.42718446601942, + "c3": 10.355987055016177, + "c4": 8.284789644012942, + "c5": 6.21359223300971, + "c6": 4.142394822006478, + "c7": 2.071197411003233 }, "rgb": [238, 201, 159] }, @@ -428172,23 +428172,23 @@ "year": 1821, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 15.55171612135242, - "c2": 23.671098160431875, - "c3": 14.755166833074995, - "c4": 29.36303184573314, - "c5": 22.794316284676235, - "c6": 12.093338233207852, - "c7": 20.97196946684837 + "points": { + "c1": -16.438602335004212, + "c2": 2.4538185386664395, + "c3": 22.332672186995055, + "c4": 12.241410857492461, + "c5": -10.723715379837707, + "c6": 20.30185467170628, + "c7": -20.677155699347892 }, - "vertexSeeds": { - "c1": 6.3710646983018115, - "c2": 6.408818946357885, - "c3": 6.4784214884546225, - "c4": 6.55099221875158, - "c5": 6.912733487337605, - "c6": 6.678390793738084, - "c7": 6.815612693847983 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399439, + "c3": 8.275543226999538, + "c4": 6.620434581599626, + "c5": 4.965325936199727, + "c6": 3.310217290799813, + "c7": 1.6551086453998998 }, "rgb": [77, 76, 132] }, @@ -428199,23 +428199,23 @@ "year": 1822, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -29.714506983303757, - "c2": 27.060866540943785, - "c3": -18.36670604743239, - "c4": 19.595860751815167, - "c5": -14.428075354832629, - "c6": 11.318796863415066, - "c7": -22.189225100086123 + "points": { + "c1": 10.972775004789433, + "c2": 32.083231915678546, + "c3": -21.912409067108975, + "c4": 16.64917581373593, + "c5": -10.127743500695278, + "c6": 21.932176131856778, + "c7": 13.151225502835558 }, - "vertexSeeds": { - "c1": 8.417046240476203, - "c2": 8.777630804994947, - "c3": 10.031830680835563, - "c4": 9.10646094911598, - "c5": 8.326066617427204, - "c6": 8.900298682534732, - "c7": 9.155893220897592 + "offsets": { + "c1": 17.216828478964402, + "c2": 14.757281553398062, + "c3": 12.297734627831712, + "c4": 9.838187702265373, + "c5": 7.378640776699023, + "c6": 4.919093851132682, + "c7": 2.459546925566341 }, "rgb": [77, 76, 132] }, @@ -428226,23 +428226,23 @@ "year": 1822, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -12.173966325002077, - "c2": 0.6555526994037599, - "c3": 6.185032750242517, - "c4": -25.569092290804633, - "c5": -11.2250580184926, - "c6": -18.044612525449505, - "c7": 14.946736870876865 + "points": { + "c1": 28.045622828621823, + "c2": -0.9600456820895964, + "c3": -25.9623160493445, + "c4": 29.78259307063481, + "c5": -9.877018481146848, + "c6": -4.236802955860696, + "c7": -2.9264312483129267 }, - "vertexSeeds": { - "c1": 4.522752129902712, - "c2": 4.779011811570475, - "c3": 4.798818002087955, - "c4": 4.871757444740656, - "c5": 4.74279937104118, - "c6": 4.8666516832772055, - "c7": 4.640068448204938 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256585, + "c3": 5.8945908460471585, + "c4": 4.715672676837722, + "c5": 3.536754507628297, + "c6": 2.357836338418861, + "c7": 1.1789181692094355 }, "rgb": [58, 15, 49] }, @@ -428253,23 +428253,23 @@ "year": 1821, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 0.6875028077753385, - "c2": 0.026446015711901083, - "c3": 16.194421560748204, - "c4": -19.835249984170936, - "c5": 10.673450511313298, - "c6": -0.8289370208881301, - "c7": 4.099273771132889 + "points": { + "c1": 18.266459474612162, + "c2": 8.748366140036133, + "c3": -0.915329529696514, + "c4": 21.65119550124321, + "c5": -11.346213621362843, + "c6": 15.535651785873121, + "c7": -17.39050195884009 }, - "vertexSeeds": { - "c1": 8.538807577761453, - "c2": 7.894829070953098, - "c3": 8.831809491956411, - "c4": 8.286575481932006, - "c5": 9.03821934579367, - "c6": 8.08905098416992, - "c7": 8.234696688664602 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.981969486823854, + "c3": 10.81830790568654, + "c4": 8.654646324549239, + "c5": 6.490984743411927, + "c6": 4.327323162274614, + "c7": 2.1636615811373017 }, "rgb": [58, 15, 49] }, @@ -428280,23 +428280,23 @@ "year": 1822, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -23.72416868296231, - "c2": -26.30526554537508, - "c3": -19.701033066755922, - "c4": -11.206476068966207, - "c5": 14.999885490600235, - "c6": 19.608700640251236, - "c7": 13.98569062784852 + "points": { + "c1": 37.23791142580174, + "c2": 2.100986136775461, + "c3": 3.706872143944537, + "c4": -1.889078163620006, + "c5": -38.70090848762327, + "c6": -11.413368736369979, + "c7": 21.986538476135955 }, - "vertexSeeds": { - "c1": 1.0732356463763995, - "c2": 1.056425958724133, - "c3": 1.0426602559573634, - "c4": 2.2292943193573507, - "c5": 2.2845415951047032, - "c6": 1.1244979629565641, - "c7": 2.3245428814949745 + "offsets": { + "c1": 4.23948220064725, + "c2": 3.6338418862690713, + "c3": 3.0282015718908926, + "c4": 2.4225612575127142, + "c5": 1.816920943134536, + "c6": 1.2112806287563567, + "c7": 0.6056403143781783 }, "rgb": [86, 146, 138] }, @@ -428307,23 +428307,23 @@ "year": 1822, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 21.71942829995021, - "c2": 7.363550188917358, - "c3": 25.933567661340753, - "c4": -5.268046311397072, - "c5": 6.078846443297181, - "c6": -25.13424462935324, - "c7": 14.011115418034073 + "points": { + "c1": 20.97401041026415, + "c2": -9.43350872287419, + "c3": -34.54959640811713, + "c4": 25.628223592425165, + "c5": 6.648292394253382, + "c6": -14.25941122751177, + "c7": -7.183459655814225 }, - "vertexSeeds": { - "c1": 0.7716411241602713, - "c2": 0.7696587139461137, - "c3": 0.7915437673222859, - "c4": 0.7758572523176316, - "c5": 0.768217452665403, - "c6": 0.7975934076672913, - "c7": 0.7761056199618124 + "offsets": { + "c1": 1.3915857605177993, + "c2": 1.1927877947295413, + "c3": 0.9939898289412866, + "c4": 0.7951918631530286, + "c5": 0.5963938973647707, + "c6": 0.39759593157651596, + "c7": 0.19879796578825798 }, "rgb": [77, 76, 132] }, @@ -428334,23 +428334,23 @@ "year": 1822, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 23.830129543925374, - "c2": 19.01949476168661, - "c3": -19.015242611466594, - "c4": -18.07127260226285, - "c5": -1.478423941238841, - "c6": 33.131845835757844, - "c7": 22.510613548228378 + "points": { + "c1": -2.2212382662755914, + "c2": -17.071085950304774, + "c3": 24.533489412790843, + "c4": 4.353541402013143, + "c5": -0.7391917132371475, + "c6": 5.47166735182342, + "c7": 24.468676040971886 }, - "vertexSeeds": { - "c1": 9.26608825871679, - "c2": 10.031702897668161, - "c3": 8.958777847425154, - "c4": 8.49473365789634, - "c5": 8.929094075036044, - "c6": 9.842988381671677, - "c7": 9.249025718876133 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.674063800277384, + "c3": 12.228386500231158, + "c4": 9.78270920018493, + "c5": 7.337031900138703, + "c6": 4.891354600092465, + "c7": 2.445677300046238 }, "rgb": [222, 0, 59] }, @@ -428361,23 +428361,23 @@ "year": 1822, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -26.329885908289967, - "c2": 9.592510730731142, - "c3": -14.24523905969794, - "c4": -10.170790917796392, - "c5": -32.420142005727826, - "c6": -20.81409623442336, - "c7": -12.95415702522103 + "points": { + "c1": 12.760547433724923, + "c2": -15.237428346255726, + "c3": 11.03703630965795, + "c4": 21.69352176928615, + "c5": -3.603117263114072, + "c6": -11.765903836400817, + "c7": -3.773730757658683 }, - "vertexSeeds": { - "c1": 8.924318825866857, - "c2": 9.905523813688507, - "c3": 10.777190178953692, - "c4": 10.121413392536978, - "c5": 11.525866502609496, - "c6": 12.090928281712038, - "c7": 10.214934134338488 + "offsets": { + "c1": 20.42071197411003, + "c2": 17.50346740638003, + "c3": 14.586222838650025, + "c4": 11.668978270920013, + "c5": 8.751733703190007, + "c6": 5.834489135460006, + "c7": 2.917244567730003 }, "rgb": [222, 0, 59] }, @@ -428388,23 +428388,23 @@ "year": 1822, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 18.867475442541178, - "c2": -26.968472075598758, - "c3": 16.761851483881287, - "c4": 20.804231658590375, - "c5": 16.480426516367693, - "c6": 1.290723655020102, - "c7": 4.258340261304028 + "points": { + "c1": 28.752281978672222, + "c2": -26.9543983159053, + "c3": 8.98012360167563, + "c4": -32.048050163843264, + "c5": 19.140419403106172, + "c6": 20.28098714100262, + "c7": 24.860265667025764 }, - "vertexSeeds": { - "c1": 11.695932379894769, - "c2": 11.103053086596875, - "c3": 11.803777047504179, - "c4": 11.769623329416538, - "c5": 11.808542607653791, - "c6": 11.275921234284894, - "c7": 11.717127890725715 + "offsets": { + "c1": 20.355987055016183, + "c2": 17.447988904299596, + "c3": 14.539990753582972, + "c4": 11.631992602866385, + "c5": 8.723994452149798, + "c6": 5.8159963014331755, + "c7": 2.9079981507165877 }, "rgb": [77, 76, 132] }, @@ -428415,23 +428415,23 @@ "year": 1822, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 24.574579523499185, - "c2": 7.754019187221058, - "c3": 9.493018266101824, - "c4": 20.071439056278802, - "c5": 7.348353266154039, - "c6": 14.444812083819716, - "c7": 13.534943886634668 + "points": { + "c1": -30.14149590212097, + "c2": -8.745178079983045, + "c3": 30.17857098417403, + "c4": -21.8895941822032, + "c5": -20.467774345223823, + "c6": 19.751264646359765, + "c7": 16.4257186891083 }, - "vertexSeeds": { - "c1": 9.566921384890684, - "c2": 10.394363440087437, - "c3": 9.784905688185402, - "c4": 9.730130766624868, - "c5": 10.220753806866071, - "c6": 10.240407643493825, - "c7": 9.6715767690227 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.868238557558955, + "c3": 12.39019879796577, + "c4": 9.912159038372623, + "c5": 7.434119278779478, + "c6": 4.956079519186312, + "c7": 2.478039759593166 }, "rgb": [222, 0, 59] }, @@ -428442,23 +428442,23 @@ "year": 1822, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 19.134551288313467, - "c2": 6.318983115035046, - "c3": -1.9906790898904596, - "c4": -9.017695941570018, - "c5": -5.35734380663898, - "c6": -6.625518040554951, - "c7": 25.00746698706491 + "points": { + "c1": 19.076483015971775, + "c2": 15.05085812782223, + "c3": 8.874041536016101, + "c4": 30.390474079922264, + "c5": -28.337441818935634, + "c6": -9.139689237571467, + "c7": 6.367627083143695 }, - "vertexSeeds": { - "c1": 3.8724441981577704, - "c2": 4.083621417628998, - "c3": 3.8900046069594234, - "c4": 4.094649453436462, - "c5": 4.035334831922108, - "c6": 4.016613203056119, - "c7": 3.994687795592847 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [222, 0, 59] }, @@ -428469,23 +428469,23 @@ "year": 1822, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 9.642846897128905, - "c2": 16.43087074713403, - "c3": 2.7985658123058315, - "c4": -4.094366312279295, - "c5": 14.444659647454209, - "c6": -19.08386476004206, - "c7": -8.568971501593388 + "points": { + "c1": -19.464974745682568, + "c2": -25.760548420442472, + "c3": -24.03548064933654, + "c4": -29.947484512646504, + "c5": -19.507002095107932, + "c6": 20.120389016326662, + "c7": -14.403911183046564 }, - "vertexSeeds": { - "c1": 9.037942718879886, - "c2": 8.94501986966644, - "c3": 9.007431790532785, - "c4": 8.940888420058327, - "c5": 9.109059063670303, - "c6": 8.966431262217139, - "c7": 9.10640904173617 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904274, + "c3": 10.864539990753533, + "c4": 8.691631992602879, + "c5": 6.518723994452137, + "c6": 4.345815996301395, + "c7": 2.172907998150655 }, "rgb": [238, 201, 159] }, @@ -428496,23 +428496,23 @@ "year": 1822, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 29.289326947431285, - "c2": 21.151713867666366, - "c3": -17.67290198147147, - "c4": -10.937444333727168, - "c5": 30.896503979853527, - "c6": 19.808284295981032, - "c7": -0.17276657653563632 + "points": { + "c1": -23.419854427799265, + "c2": -3.4234962250521193, + "c3": 28.454160548276157, + "c4": 5.786362643384194, + "c5": 34.435270308759435, + "c6": 24.51257957544545, + "c7": -16.49293829628804 }, - "vertexSeeds": { - "c1": 7.885035558597133, - "c2": 7.999383380372682, - "c3": 7.646651860774899, - "c4": 7.809354898124268, - "c5": 7.913294086313775, - "c6": 7.934943285412678, - "c7": 7.985268329456779 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893193, + "c3": 9.708737864077673, + "c4": 7.766990291262129, + "c5": 5.825242718446608, + "c6": 3.8834951456310645, + "c7": 1.941747572815543 }, "rgb": [77, 76, 132] }, @@ -428523,23 +428523,23 @@ "year": 1822, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 7.5530217882634005, - "c2": -28.055942421321806, - "c3": 22.147143418217894, - "c4": -8.60428993094936, - "c5": -26.375309039513915, - "c6": 5.226704007689051, - "c7": 2.81768725551607 + "points": { + "c1": 18.686111690718676, + "c2": -29.373357634545943, + "c3": 20.45118729744737, + "c4": -24.720182485586847, + "c5": 11.411883536435951, + "c6": 1.1643183056482513, + "c7": 30.48496090171296 }, - "vertexSeeds": { - "c1": 1.329422359319239, - "c2": 1.3217219327203058, - "c3": 1.1201924198806423, - "c4": 1.2390641258093757, - "c5": 1.1835476633376394, - "c6": 1.116548839863502, - "c7": 1.2932304006588262 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.941747572815534, + "c3": 1.618122977346278, + "c4": 1.2944983818770222, + "c5": 0.9708737864077677, + "c6": 0.6472491909385117, + "c7": 0.32362459546925587 }, "rgb": [58, 15, 49] }, @@ -428550,23 +428550,23 @@ "year": 1821, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -5.6529434351140395, - "c2": 7.254343055719261, - "c3": 3.2337179187419736, - "c4": 15.951765638441756, - "c5": -18.83214612045029, - "c6": -11.288088333756297, - "c7": -11.680247296907853 + "points": { + "c1": -18.308656533342297, + "c2": -15.357292908913216, + "c3": -17.692754099362944, + "c4": -5.1263664308933485, + "c5": -1.6935460952805528, + "c6": 16.942054409110938, + "c7": 21.84313259770515 }, - "vertexSeeds": { - "c1": 4.314622335226846, - "c2": 4.406336926890096, - "c3": 4.353785520426489, - "c4": 4.611167071240542, - "c5": 4.4838799378084095, - "c6": 4.470045128055563, - "c7": 4.408649660366126 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733702, + "c3": 5.594082293111416, + "c4": 4.4752658344891305, + "c5": 3.356449375866845, + "c6": 2.237632917244571, + "c7": 1.1188164586222742 }, "rgb": [86, 146, 138] }, @@ -428577,23 +428577,23 @@ "year": 1822, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -22.653961143370196, - "c2": -17.120273848669555, - "c3": -15.6234079398637, - "c4": -32.586968431462395, - "c5": -23.790652608017822, - "c6": 24.471438966956093, - "c7": 25.05788868412781 + "points": { + "c1": 13.719358731483027, + "c2": 10.970483067697565, + "c3": 21.500256519971202, + "c4": -2.8159523767528896, + "c5": 2.8189272058660464, + "c6": -24.786457960132758, + "c7": 18.087620853709836 }, - "vertexSeeds": { - "c1": 9.589596333996722, - "c2": 8.523762117108092, - "c3": 9.042993089330798, - "c4": 9.472283423123887, - "c5": 7.707354475928798, - "c6": 9.61511909066823, - "c7": 7.549481772087547 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915392, + "c3": 12.020342117429498, + "c4": 9.616273693943599, + "c5": 7.212205270457696, + "c6": 4.808136846971802, + "c7": 2.404068423485901 }, "rgb": [238, 201, 159] }, @@ -428604,23 +428604,23 @@ "year": 1822, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -4.566898071992231, - "c2": -25.147314100210373, - "c3": 3.0597185802589593, - "c4": 33.84349637841726, - "c5": 19.740886974159352, - "c6": -31.820993760530076, - "c7": 20.812940525393635 + "points": { + "c1": 20.794343096287008, + "c2": -9.661925399230086, + "c3": 2.2393705406697464, + "c4": -31.18859959908589, + "c5": -22.752006531694033, + "c6": -29.0396483343015, + "c7": 33.10932704226573 }, - "vertexSeeds": { - "c1": 5.843779137412609, - "c2": 5.917281163816965, - "c3": 5.934866608092105, - "c4": 5.82607327125426, - "c5": 5.881655098447354, - "c6": 5.939369671806552, - "c7": 5.925292747902706 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.515950069348127, + "c3": 7.096625057790106, + "c4": 5.677300046232085, + "c5": 4.257975034674064, + "c6": 2.8386500231160423, + "c7": 1.4193250115580212 }, "rgb": [58, 15, 49] }, @@ -428631,23 +428631,23 @@ "year": 1822, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 2.276610441812501, - "c2": 21.214895263851623, - "c3": -26.616455737803726, - "c4": 6.323060026583143, - "c5": -4.607986209998835, - "c6": -26.751248246327094, - "c7": 30.884826338694886 + "points": { + "c1": -15.924058349179791, + "c2": -19.541728689862744, + "c3": -13.211159810411946, + "c4": 0.3135817447332059, + "c5": -5.263182179987652, + "c6": 26.229325951847756, + "c7": 18.04585267063586 }, - "vertexSeeds": { - "c1": 0.6338754706961099, - "c2": 0.6401778938711182, - "c3": 0.5670047474536924, - "c4": 0.5598300971603951, - "c5": 0.5841318769772691, - "c6": 0.6340663184720997, - "c7": 0.6514682503521589 + "offsets": { + "c1": 1.132686084142395, + "c2": 0.9708737864077672, + "c3": 0.8090614886731397, + "c4": 0.647249190938512, + "c5": 0.4854368932038836, + "c6": 0.3236245954692553, + "c7": 0.16181229773462766 }, "rgb": [86, 146, 138] }, @@ -428658,23 +428658,23 @@ "year": 1822, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -5.9927623653811075, - "c2": 22.468675616588634, - "c3": -16.835113256261415, - "c4": -15.583897654600246, - "c5": -9.407077644038768, - "c6": -17.366077048039813, - "c7": -27.52216302487414 + "points": { + "c1": 10.535852559526248, + "c2": 11.341485046446792, + "c3": 15.532645752537036, + "c4": 4.092840771267305, + "c5": -3.0189817910173247, + "c6": 26.131835787387466, + "c7": -22.362101035118787 }, - "vertexSeeds": { - "c1": 2.7634779050870044, - "c2": 2.845408432856444, - "c3": 2.924572889259434, - "c4": 2.688628072977204, - "c5": 2.6640422583295615, - "c6": 2.8141850533154833, - "c7": 2.672125714256146 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113731, + "c3": 3.513638465094776, + "c4": 2.8109107720758204, + "c5": 2.1081830790568654, + "c6": 1.4054553860379102, + "c7": 0.7027276930189551 }, "rgb": [222, 0, 59] }, @@ -428685,23 +428685,23 @@ "year": 1822, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -22.906080066725863, - "c2": 22.559258157472506, - "c3": 20.48141953119889, - "c4": 28.841676353632273, - "c5": -25.84505779871504, - "c6": -29.94453002992835, - "c7": 15.97650602703088 + "points": { + "c1": 15.51601748777977, + "c2": 24.908064815189206, + "c3": 2.0515868687686094, + "c4": 29.003945912853396, + "c5": 22.409761722514837, + "c6": 6.2581200547875895, + "c7": 20.3110885413627 }, - "vertexSeeds": { - "c1": 3.5359963039498568, - "c2": 3.478478504633906, - "c3": 3.418861226425095, - "c4": 3.517119982227424, - "c5": 3.6713406407327147, - "c6": 3.5926092222162835, - "c7": 3.546861442401434 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722607, + "c3": 4.438280166435506, + "c4": 3.5506241331484047, + "c5": 2.6629680998613035, + "c6": 1.7753120665742024, + "c7": 0.8876560332871012 }, "rgb": [77, 76, 132] }, @@ -428712,23 +428712,23 @@ "year": 1822, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -26.29587618248936, - "c2": 3.38699364020777, - "c3": 10.08428498960442, - "c4": -8.039229299178569, - "c5": 25.28100972868304, - "c6": 32.87388423542096, - "c7": 18.563775644432752 + "points": { + "c1": -22.20953770603558, + "c2": -24.06582744937745, + "c3": -21.80549560434637, + "c4": 1.7040047412093458, + "c5": -3.3919520519330746, + "c6": -2.749369825411307, + "c7": 20.764398047355648 }, - "vertexSeeds": { - "c1": 11.255075294803335, - "c2": 10.232450946957421, - "c3": 11.01941267158156, - "c4": 9.313317044421137, - "c5": 10.677335649825194, - "c6": 11.89895178562898, - "c7": 11.812053986922066 + "offsets": { + "c1": 20.161812297734627, + "c2": 17.281553398058257, + "c3": 14.401294498381871, + "c4": 11.521035598705499, + "c5": 8.640776699029129, + "c6": 5.760517799352749, + "c7": 2.880258899676371 }, "rgb": [58, 15, 49] }, @@ -428739,23 +428739,23 @@ "year": 1822, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -5.935049864379263, - "c2": -19.091587669067458, - "c3": -16.9522813952656, - "c4": 17.578207631707368, - "c5": -11.801954024097391, - "c6": -5.9148328293971915, - "c7": 25.721971428961997 + "points": { + "c1": -25.384976279564118, + "c2": -26.343378896964623, + "c3": 31.133343176132772, + "c4": -24.329715163353235, + "c5": 8.734238306900938, + "c6": -26.182056088850622, + "c7": 24.781457974371957 }, - "vertexSeeds": { - "c1": 2.906811842209382, - "c2": 2.8531074038624977, - "c3": 2.8243097503866994, - "c4": 2.855932599451146, - "c5": 2.922187771314473, - "c6": 2.8378754755511357, - "c7": 2.8847580674835616 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.216366158113727, + "c3": 3.5136384650947696, + "c4": 2.8109107720758106, + "c5": 2.1081830790568756, + "c6": 1.405455386037917, + "c7": 0.7027276930189585 }, "rgb": [86, 146, 138] }, @@ -428766,23 +428766,23 @@ "year": 1822, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 22.379835402046254, - "c2": -13.127184173795039, - "c3": 26.969942594686586, - "c4": -25.083404379040843, - "c5": -3.770361442290792, - "c6": 7.6247260976165805, - "c7": -23.426808504043386 + "points": { + "c1": 1.8722555053923884, + "c2": -2.573254035684119, + "c3": 16.0231013583565, + "c4": -7.244097763089599, + "c5": 3.1395599190661088, + "c6": 15.934427934858782, + "c7": -9.740165298702788 }, - "vertexSeeds": { - "c1": 6.389365595768498, - "c2": 6.402842316378185, - "c3": 6.4674387579295, - "c4": 6.292178549690201, - "c5": 6.804180724649501, - "c6": 6.453377889267951, - "c7": 6.528650152683294 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158118, + "c3": 8.136846971798436, + "c4": 6.509477577438753, + "c5": 4.88210818307907, + "c6": 3.254738788719366, + "c7": 1.627369394359683 }, "rgb": [222, 0, 59] }, @@ -428793,23 +428793,23 @@ "year": 1822, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -9.212539733478941, - "c2": 20.035959691395764, - "c3": -9.771361475270119, - "c4": -23.448220230448406, - "c5": 1.023295900276306, - "c6": 2.2006298880961914, - "c7": 15.175430936530216 + "points": { + "c1": 15.00281889047988, + "c2": -28.440477684867414, + "c3": -1.6904751284303892, + "c4": -10.719191151341956, + "c5": 28.285829538515316, + "c6": 11.183532041819902, + "c7": 22.859203977541945 }, - "vertexSeeds": { - "c1": 8.936411923343234, - "c2": 8.937492021815965, - "c3": 8.922909214502727, - "c4": 8.957225732655198, - "c5": 8.95558935106458, - "c6": 8.930137842798098, - "c7": 8.943553287980787 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582586, + "c3": 10.679611650485558, + "c4": 8.543689320388532, + "c5": 6.40776699029108, + "c6": 4.271844660194054, + "c7": 2.135922330097027 }, "rgb": [222, 0, 59] }, @@ -428820,23 +428820,23 @@ "year": 1821, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 19.68587482590705, - "c2": -6.860821376754853, - "c3": -10.45743333489564, - "c4": 7.849094442974067, - "c5": 20.102146426620337, - "c6": 9.612538492102608, - "c7": 22.34735902934407 + "points": { + "c1": 18.80294407132523, + "c2": -7.0369488730390835, + "c3": 21.394170557855915, + "c4": 7.462277274652294, + "c5": 14.563311868678802, + "c6": -17.37771095010316, + "c7": 21.75274697997304 }, - "vertexSeeds": { - "c1": 4.251946185267761, - "c2": 4.247417768884435, - "c3": 4.249572753087112, - "c4": 4.252476737643384, - "c5": 4.247838470966221, - "c6": 4.239493540793915, - "c7": 4.245116016949015 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.1026352288488495, + "c3": 5.085529357374075, + "c4": 4.0684234858993005, + "c5": 3.051317614424324, + "c6": 2.034211742949549, + "c7": 1.0171058714747745 }, "rgb": [86, 146, 138] }, @@ -428847,23 +428847,23 @@ "year": 1822, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -1.878878907224376, - "c2": -17.0584153275072, - "c3": 8.749518283914092, - "c4": -24.174575421781526, - "c5": 18.64374436019782, - "c6": 4.077245309143674, - "c7": -5.108550251297967 + "points": { + "c1": 14.29535012803683, + "c2": 0.32677833786387467, + "c3": 2.956040207348771, + "c4": 21.924201761877583, + "c5": -20.353069800615334, + "c6": 14.630900457583635, + "c7": -17.03361859424343 }, - "vertexSeeds": { - "c1": 5.047087335359493, - "c2": 5.166299182145397, - "c3": 5.134337628154982, - "c4": 4.852186555682179, - "c5": 5.096604473910043, - "c6": 4.922669451537107, - "c7": 4.951323671239575 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -428874,23 +428874,23 @@ "year": 1822, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 16.964240949770126, - "c2": 16.189123539311236, - "c3": -12.710962308746923, - "c4": -17.29195825917617, - "c5": 3.4700628437144623, - "c6": 3.320655935908956, - "c7": 0.1261567989767869 + "points": { + "c1": -29.530191427779396, + "c2": -29.41064217423673, + "c3": 20.651006379411537, + "c4": 9.062767743931804, + "c5": 3.192301537864619, + "c6": 21.86957394967889, + "c7": -16.37745581530366 }, - "vertexSeeds": { - "c1": 7.598904967459601, - "c2": 7.9370101392631245, - "c3": 7.710676258940737, - "c4": 8.013793255246814, - "c5": 7.588902203904428, - "c6": 8.217159697238857, - "c7": 7.5227072305786296 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054083, + "c3": 9.801202034211746, + "c4": 7.8409616273693885, + "c5": 5.880721220527052, + "c6": 3.9204808136846943, + "c7": 1.9602404068423362 }, "rgb": [77, 76, 132] }, @@ -428901,23 +428901,23 @@ "year": 1822, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 12.90875164652995, - "c2": -29.575545325559176, - "c3": -19.28754111830274, - "c4": -6.69667192206337, - "c5": -16.583780564029283, - "c6": -11.851017007650178, - "c7": 31.626842505237434 + "points": { + "c1": -31.319832274125275, + "c2": -4.385610183379232, + "c3": -13.009523125032576, + "c4": 9.062591703655436, + "c5": 32.61725676383804, + "c6": -19.79175848432486, + "c7": 19.60860516220241 }, - "vertexSeeds": { - "c1": 12.602855382558209, - "c2": 12.00790489038785, - "c3": 9.614484797222465, - "c4": 11.500742284374027, - "c5": 12.585349068472722, - "c6": 9.759418836575017, - "c7": 11.59723773937052 + "offsets": { + "c1": 21.74757281553398, + "c2": 18.640776699029132, + "c3": 15.533980582524268, + "c4": 12.427184466019417, + "c5": 9.320388349514566, + "c6": 6.213592233009702, + "c7": 3.106796116504851 }, "rgb": [77, 76, 132] }, @@ -428928,23 +428928,23 @@ "year": 1822, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -17.55685179009152, - "c2": -12.578530530917394, - "c3": 13.017794507835465, - "c4": -1.7233735540549446, - "c5": 21.81327822141426, - "c6": 0.7567341384849868, - "c7": -24.81698457452472 + "points": { + "c1": 27.40222040573764, + "c2": -11.719138454473779, + "c3": 26.911099392162637, + "c4": 18.142559860786644, + "c5": 6.364651732948861, + "c6": -21.602620473777122, + "c7": -25.3587614385274 }, - "vertexSeeds": { - "c1": 8.635513840439929, - "c2": 8.439685130525593, - "c3": 8.502718338452253, - "c4": 8.85265875783495, - "c5": 8.55371843596699, - "c6": 8.256248766327174, - "c7": 8.953129042635702 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.89875173370318, + "c3": 10.748959778085995, + "c4": 8.599167822468788, + "c5": 6.4493758668516, + "c6": 4.299583911234394, + "c7": 2.1497919556171867 }, "rgb": [77, 76, 132] }, @@ -428955,23 +428955,23 @@ "year": 1822, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 5.568035022815103, - "c2": -10.372464102736147, - "c3": 4.424819865805343, - "c4": -25.310242068884726, - "c5": -14.938850682884517, - "c6": 22.764773434502295, - "c7": -15.339995511335786 + "points": { + "c1": -20.46953650341532, + "c2": 26.7898747256028, + "c3": 16.194593754180772, + "c4": 5.5289111902257915, + "c5": -18.380281051509513, + "c6": 16.213873308446978, + "c7": 5.745456847586155 }, - "vertexSeeds": { - "c1": 5.473265715187145, - "c2": 5.620197864925142, - "c3": 5.719244001954479, - "c4": 5.6590360455737265, - "c5": 5.692068323853992, - "c6": 5.553014643811683, - "c7": 5.576193292471058 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.349514563106801, + "c3": 6.957928802588987, + "c4": 5.5663430420711935, + "c5": 4.174757281553401, + "c6": 2.7831715210356083, + "c7": 1.391585760517793 }, "rgb": [77, 76, 132] }, @@ -428982,23 +428982,23 @@ "year": 1822, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -13.887432099633207, - "c2": -21.042576692131387, - "c3": 24.556807381109756, - "c4": 8.211720470214729, - "c5": -25.726849644868803, - "c6": 5.829271446267704, - "c7": -13.83348490334858 + "points": { + "c1": -3.63813689976363, + "c2": -10.115782407451814, + "c3": -25.04460554773268, + "c4": -3.3947677313138804, + "c5": 15.292435335872732, + "c6": -25.362731041668894, + "c7": 2.448743018458565 }, - "vertexSeeds": { - "c1": 4.594445060895682, - "c2": 4.565582824971795, - "c3": 4.6153426098997965, - "c4": 4.705905518274403, - "c5": 4.723452062060765, - "c6": 4.42631444683475, - "c7": 4.587561862885381 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.796116504854363, + "c3": 5.663430420711975, + "c4": 4.530744336569575, + "c5": 3.3980582524271883, + "c6": 2.2653721682847876, + "c7": 1.1326860841424002 }, "rgb": [86, 146, 138] }, @@ -429009,23 +429009,23 @@ "year": 1822, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -26.24475662677953, - "c2": -2.1364462349499966, - "c3": -2.690353977252535, - "c4": -23.737334567737022, - "c5": -18.0119760987845, - "c6": 10.194418731563317, - "c7": 24.2212499615866 + "points": { + "c1": 26.023883395306157, + "c2": -23.028871653179102, + "c3": -16.097685959655365, + "c4": -28.3923729072365, + "c5": 3.626730390063507, + "c6": 3.528077140313549, + "c7": 6.180135838191404 }, - "vertexSeeds": { - "c1": 8.344561264243, - "c2": 8.110755592052746, - "c3": 8.003495908012063, - "c4": 7.924111077569241, - "c5": 8.060254971853686, - "c6": 7.828121014325494, - "c7": 8.248529445102763 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335634, + "c3": 9.963014331946374, + "c4": 7.970411465557088, + "c5": 5.977808599167831, + "c6": 3.985205732778544, + "c7": 1.992602866389286 }, "rgb": [77, 76, 132] }, @@ -429036,23 +429036,23 @@ "year": 1822, "resistanceReported": false, "duration": 36547200, - "curveSeeds": { - "c1": 18.277314470358377, - "c2": 12.087093678930387, - "c3": 13.38185220658896, - "c4": -36.62223948372651, - "c5": -18.38589873768129, - "c6": -43.31793571749506, - "c7": -1.7724388112564995 + "points": { + "c1": 0.45728033132584045, + "c2": -33.58196849063884, + "c3": 34.53139331374608, + "c4": 11.851981093030204, + "c5": -36.77450954620143, + "c6": -40.43969220677704, + "c7": -51.988896940257995 }, - "vertexSeeds": { - "c1": 6.152157438766179, - "c2": 6.374685596222944, - "c3": 6.401726463977169, - "c4": 6.401742597354742, - "c5": 6.115896113229187, - "c6": 6.2661593416061185, - "c7": 6.321327730612753 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353664, + "c3": 7.674526121128078, + "c4": 6.139620896902455, + "c5": 4.604715672676832, + "c6": 3.069810448451246, + "c7": 1.534905224225623 }, "rgb": [238, 201, 159] }, @@ -429063,23 +429063,23 @@ "year": 1822, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 5.814934866398307, - "c2": -16.05627534675667, - "c3": 20.24743227649932, - "c4": -22.18987299964877, - "c5": 1.2873021710616044, - "c6": -18.208860869801953, - "c7": -25.530447441827715 + "points": { + "c1": -4.165807185249427, + "c2": -26.52228243683179, + "c3": 27.14603788672424, + "c4": -3.4381627885090573, + "c5": 27.45693605644502, + "c6": -13.853897970331557, + "c7": 14.638385488331256 }, - "vertexSeeds": { - "c1": 3.2483286736417263, - "c2": 3.2490647897637683, - "c3": 3.280332130447702, - "c4": 3.2767364658814437, - "c5": 3.315583680944919, - "c6": 3.2332714428613505, - "c7": 3.3184508447456125 + "offsets": { + "c1": 5.598705501618123, + "c2": 4.798890429958393, + "c3": 3.999075358298665, + "c4": 3.199260286638936, + "c5": 2.399445214979187, + "c6": 1.599630143319458, + "c7": 0.799815071659729 }, "rgb": [238, 201, 159] }, @@ -429090,23 +429090,23 @@ "year": 1822, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 21.21567217172405, - "c2": 10.761356564131283, - "c3": -23.179687890051213, - "c4": 17.182711591265665, - "c5": 10.060743902105521, - "c6": 14.774902972478465, - "c7": -20.446738948562096 + "points": { + "c1": -10.610899541119903, + "c2": 25.877769451406927, + "c3": 19.22687792778691, + "c4": -16.134629127397133, + "c5": -1.3454989244728957, + "c6": 16.349422816541505, + "c7": 26.013493566313173 }, - "vertexSeeds": { - "c1": 2.994094708920827, - "c2": 2.979011032304087, - "c3": 2.940427760567128, - "c4": 2.9000194106039854, - "c5": 2.75372407024861, - "c6": 3.008853993097009, - "c7": 2.908544684190515 + "offsets": { + "c1": 5.048543689320388, + "c2": 4.327323162274619, + "c3": 3.606102635228851, + "c4": 2.884882108183074, + "c5": 2.1636615811373052, + "c6": 1.442441054091537, + "c7": 0.7212205270457684 }, "rgb": [86, 146, 138] }, @@ -429117,23 +429117,23 @@ "year": 1822, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -22.425380035304226, - "c2": -16.0165026261859, - "c3": 17.908756326127698, - "c4": -4.0191074826683355, - "c5": 22.031400124493775, - "c6": 22.383225268186127, - "c7": -14.618372791500018 + "points": { + "c1": -11.866840689053117, + "c2": 28.68336018290243, + "c3": 12.85919264770678, + "c4": -2.2043881817526874, + "c5": -22.570582870011783, + "c6": -28.374586249865743, + "c7": 23.853198975745546 }, - "vertexSeeds": { - "c1": 3.499958488232916, - "c2": 3.3996048671417882, - "c3": 3.5267543222430526, - "c4": 3.3215511555503268, - "c5": 3.295395650148624, - "c6": 3.4052374772763456, - "c7": 3.502317067506553 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [58, 15, 49] }, @@ -429144,23 +429144,23 @@ "year": 1822, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -4.299489197609329, - "c2": 7.9066295885791575, - "c3": -24.891412290849193, - "c4": 21.12548659006579, - "c5": -4.938003193706226, - "c6": -14.475717094363699, - "c7": 14.611986410815717 + "points": { + "c1": -15.808959530693558, + "c2": -20.228989343671817, + "c3": 4.586235928163177, + "c4": -15.2079413343125, + "c5": 23.496878128686575, + "c6": -14.549964665016704, + "c7": -27.75921501862178 }, - "vertexSeeds": { - "c1": 6.038331684604744, - "c2": 5.552571953276795, - "c3": 6.187475689575848, - "c4": 5.550342869263787, - "c5": 5.835416690582869, - "c6": 6.0763227481657776, - "c7": 5.9645069454138655 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871021, + "c3": 7.3971336107258425, + "c4": 5.917706888580681, + "c5": 4.438280166435502, + "c6": 2.9588534442903405, + "c7": 1.479426722145179 }, "rgb": [86, 146, 138] }, @@ -429171,23 +429171,23 @@ "year": 1822, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -28.051062801188362, - "c2": -16.053114977788425, - "c3": -17.72929193910399, - "c4": -9.991647645690751, - "c5": -23.092246155073422, - "c6": -18.4783639541348, - "c7": 23.8076270868289 + "points": { + "c1": 8.742576544695076, + "c2": 30.28635650829763, + "c3": -8.71519607578687, + "c4": 8.689899112939017, + "c5": -12.004018715409028, + "c6": -15.272410380251834, + "c7": 21.949552851006374 }, - "vertexSeeds": { - "c1": 9.717800733421637, - "c2": 9.243598476867511, - "c3": 9.6573298476801, - "c4": 10.052516478298257, - "c5": 11.15275433971783, - "c6": 10.199085347072819, - "c7": 10.334326075536636 + "offsets": { + "c1": 18.673139158576053, + "c2": 16.00554785020805, + "c3": 13.337956541840029, + "c4": 10.670365233472028, + "c5": 8.002773925104025, + "c6": 5.335182616736014, + "c7": 2.6675913083680016 }, "rgb": [58, 15, 49] }, @@ -429198,23 +429198,23 @@ "year": 1822, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -22.25682706138767, - "c2": 0.6288785571843079, - "c3": 4.390041418911014, - "c4": 20.385594052873916, - "c5": -13.166531854129712, - "c6": -4.606169296423985, - "c7": -23.63076114271762 + "points": { + "c1": 26.609085751553067, + "c2": -3.6265539503729087, + "c3": -22.961191729913004, + "c4": 20.862200496341316, + "c5": -19.53175496886916, + "c6": 28.602302302898472, + "c7": -18.666331812892764 }, - "vertexSeeds": { - "c1": 4.691432632854922, - "c2": 4.560158392302052, - "c3": 4.878530893387447, - "c4": 4.6412690720720695, - "c5": 4.630679663047145, - "c6": 4.648930053679122, - "c7": 4.809860003677253 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337036, + "c3": 5.940822931114191, + "c4": 4.752658344891357, + "c5": 3.5644937586685126, + "c6": 2.3763291724456783, + "c7": 1.1881645862228443 }, "rgb": [86, 146, 138] }, @@ -429225,23 +429225,23 @@ "year": 1822, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 25.733890635319053, - "c2": -5.920346444127208, - "c3": -24.851050090440012, - "c4": -4.924979002486349, - "c5": -15.25975038586493, - "c6": -27.573487582240983, - "c7": -11.248985122536183 + "points": { + "c1": -20.920268594429043, + "c2": 30.158081503175428, + "c3": -24.372773227124494, + "c4": -28.424893929992578, + "c5": -19.90235468421441, + "c6": -23.289534989529756, + "c7": -4.987359561107482 }, - "vertexSeeds": { - "c1": 8.534220469485234, - "c2": 7.815530857253773, - "c3": 8.127045452930876, - "c4": 8.204374127962824, - "c5": 7.805545155825189, - "c6": 8.00610688195243, - "c7": 8.174543023977296 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778086, + "c3": 10.217290799815071, + "c4": 8.173832639852057, + "c5": 6.130374479889043, + "c6": 4.086916319926028, + "c7": 2.043458159963014 }, "rgb": [86, 146, 138] }, @@ -429252,23 +429252,23 @@ "year": 1822, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": 2.678665122726212, - "c2": -4.400200715632408, - "c3": -12.45374354531525, - "c4": -12.566324519431769, - "c5": -18.56827424069089, - "c6": -21.462372885609316, - "c7": -12.11453448077777 + "points": { + "c1": 1.5496162470251065, + "c2": 16.0134593053371, + "c3": -8.247686514269688, + "c4": -18.622918685582206, + "c5": -4.860391837291488, + "c6": 5.234896987256128, + "c7": -18.667096748692238 }, - "vertexSeeds": { - "c1": 3.2672893230144058, - "c2": 3.3811983449483076, - "c3": 3.5120244734728447, - "c4": 3.2251895969806186, - "c5": 3.2402797552674203, - "c6": 3.367829740236629, - "c7": 3.303019081989616 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [77, 76, 132] }, @@ -429279,23 +429279,23 @@ "year": 1822, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -8.896471085314406, - "c2": -21.146907756349243, - "c3": 6.032449493416124, - "c4": 3.9423133410890117, - "c5": 30.596053069901274, - "c6": -2.1610245604933382, - "c7": -14.4224218604529 + "points": { + "c1": -18.46692080604122, + "c2": 38.06986074855301, + "c3": -31.890556889483186, + "c4": 11.77255732354957, + "c5": -35.0203176429187, + "c6": 30.52032582943893, + "c7": 18.83257456632358 }, - "vertexSeeds": { - "c1": 1.6399219115175083, - "c2": 1.5613051911069318, - "c3": 1.9089211253311777, - "c4": 1.569399664318206, - "c5": 1.709413644445957, - "c6": 1.548263925835443, - "c7": 1.8565753857673593 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.311604253351827, + "c4": 1.849283402681461, + "c5": 1.3869625520110953, + "c6": 0.9246417013407294, + "c7": 0.4623208506703659 }, "rgb": [222, 0, 59] }, @@ -429306,23 +429306,23 @@ "year": 1822, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -23.06005845108799, - "c2": 5.8910930610142245, - "c3": -5.016455010641597, - "c4": 21.597302419517995, - "c5": 14.874649787954901, - "c6": 26.288403395276596, - "c7": 6.7934454875444175 + "points": { + "c1": 6.874711343580067, + "c2": -15.617643692098872, + "c3": 14.224228022594154, + "c4": -1.5683450214848946, + "c5": -19.790039533423645, + "c6": 5.615087531038498, + "c7": 14.193036674254017 }, - "vertexSeeds": { - "c1": 9.632085608643582, - "c2": 9.662274350349787, - "c3": 9.730212364533031, - "c4": 9.538794583317962, - "c5": 9.709163241438043, - "c6": 9.449342409213342, - "c7": 9.480913988141609 + "offsets": { + "c1": 16.310679611650485, + "c2": 13.980582524271844, + "c3": 11.650485436893204, + "c4": 9.320388349514563, + "c5": 6.990291262135922, + "c6": 4.660194174757281, + "c7": 2.3300970873786406 }, "rgb": [86, 146, 138] }, @@ -429333,23 +429333,23 @@ "year": 1822, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 4.19183946998271, - "c2": -6.229701821685055, - "c3": 9.13036613851908, - "c4": -9.569594839079503, - "c5": 30.3781913101501, - "c6": -9.431474305859432, - "c7": 26.841142428966506 + "points": { + "c1": 13.544176117563332, + "c2": 29.236193270644662, + "c3": -27.170215670392047, + "c4": 8.436399124301055, + "c5": 22.636193154007536, + "c6": 2.277072318519899, + "c7": -24.39332968266214 }, - "vertexSeeds": { - "c1": 0.031836725671547536, - "c2": 0.03269665560884041, - "c3": 0.033803173044872785, - "c4": 0.023452673135924217, - "c5": 0.022470629041322465, - "c6": 0.024896823059448674, - "c7": 0.01974339866096456 + "offsets": { + "c1": 0.0970873786407767, + "c2": 0.08321775312066573, + "c3": 0.06934812760055477, + "c4": 0.05547850208044386, + "c5": 0.04160887656033289, + "c6": 0.02773925104022193, + "c7": 0.013869625520110965 }, "rgb": [86, 146, 138] }, @@ -429360,23 +429360,23 @@ "year": 1822, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 13.029791134552148, - "c2": -14.598846313364838, - "c3": 23.298941261358124, - "c4": 13.033970904270284, - "c5": -13.12797069657115, - "c6": -8.671373197509542, - "c7": 13.622881397971547 + "points": { + "c1": -28.398524907532963, + "c2": 28.031252850230572, + "c3": 27.826040799003508, + "c4": -11.077708578879903, + "c5": 16.966408208515993, + "c6": 15.087537105161225, + "c7": 0.9319485475682043 }, - "vertexSeeds": { - "c1": 0.85281000536141, - "c2": 0.8493436193153576, - "c3": 0.8590649198230764, - "c4": 0.8852121384783888, - "c5": 0.8834548255320264, - "c6": 0.8840066687134635, - "c7": 0.8382733802449264 + "offsets": { + "c1": 1.5210355987055015, + "c2": 1.3037447988904287, + "c3": 1.0864539990753599, + "c4": 0.8691631992602871, + "c5": 0.6518723994452144, + "c6": 0.43458159963014537, + "c7": 0.21729079981507268 }, "rgb": [222, 0, 59] }, @@ -429387,23 +429387,23 @@ "year": 1822, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 13.353516387924643, - "c2": 29.550524479263856, - "c3": -12.379525151123921, - "c4": -25.069107215063042, - "c5": -33.58859374323006, - "c6": 31.421069427658537, - "c7": -21.401104448686 + "points": { + "c1": 32.5110821032479, + "c2": 32.9188792706676, + "c3": -11.978241629938577, + "c4": 10.265893350523037, + "c5": 22.695088387536863, + "c6": -13.12365561562433, + "c7": -28.637321128832415 }, - "vertexSeeds": { - "c1": 8.111296923860026, - "c2": 8.094813938204075, - "c3": 7.947668918501258, - "c4": 7.985509181765821, - "c5": 7.927896647666521, - "c6": 7.970200483408199, - "c7": 8.06994345320856 + "offsets": { + "c1": 13.559870550161811, + "c2": 11.622746185852959, + "c3": 9.685621821544107, + "c4": 7.748497457235333, + "c5": 5.8113730929264795, + "c6": 3.8742487286176273, + "c7": 1.9371243643087752 }, "rgb": [58, 15, 49] }, @@ -429414,23 +429414,23 @@ "year": 1822, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -18.24402570565834, - "c2": 9.975452872831902, - "c3": 20.82616066373557, - "c4": -9.188190725349553, - "c5": -13.61089469980946, - "c6": -12.317855879146762, - "c7": 26.010411513585915 + "points": { + "c1": 13.255613279612568, + "c2": 0.32184057324633386, + "c3": 16.685411968459512, + "c4": 19.356283763984436, + "c5": 6.757756620974455, + "c6": -11.803549141745755, + "c7": 38.16926896049665 }, - "vertexSeeds": { - "c1": 8.434637405215362, - "c2": 8.415125081233342, - "c3": 8.762669755492318, - "c4": 8.768180948488693, - "c5": 8.77278086628906, - "c6": 8.518966183743448, - "c7": 8.399375415589265 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461874, + "c3": 10.610263522884878, + "c4": 8.488210818307916, + "c5": 6.366158113730921, + "c6": 4.244105409153958, + "c7": 2.1220527045769946 }, "rgb": [222, 0, 59] }, @@ -429441,23 +429441,23 @@ "year": 1822, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 4.0240790731908405, - "c2": -23.479673864417087, - "c3": -3.1273120973457935, - "c4": 16.472382012250712, - "c5": -0.4042596418835984, - "c6": -27.607323450147618, - "c7": -9.122291193833831 + "points": { + "c1": -5.875024805029501, + "c2": 4.9814266043589654, + "c3": -30.381639788110974, + "c4": 0.7402949115900803, + "c5": -19.12609961825642, + "c6": -13.27680477344762, + "c7": 7.925093540119363 }, - "vertexSeeds": { - "c1": 4.629935420244674, - "c2": 5.387090105994581, - "c3": 4.878770910324378, - "c4": 4.639047713360029, - "c5": 5.337101864448225, - "c6": 5.605586792917906, - "c7": 5.382151583106601 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267682, + "c3": 7.050392972723067, + "c4": 5.640314378178451, + "c5": 4.230235783633845, + "c6": 2.82015718908923, + "c7": 1.410078594544615 }, "rgb": [222, 0, 59] }, @@ -429468,23 +429468,23 @@ "year": 1822, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -7.201202011587132, - "c2": 26.721399187281524, - "c3": -27.37248495338525, - "c4": 6.209193281851416, - "c5": 6.356971819771484, - "c6": 29.56457985242967, - "c7": -1.601132451321547 + "points": { + "c1": 25.633386340953336, + "c2": -9.292711257496492, + "c3": -13.684795958784331, + "c4": -15.676220240654391, + "c5": -14.005076968387794, + "c6": -9.398521359769017, + "c7": 12.442529867977264 }, - "vertexSeeds": { - "c1": 1.997227700910158, - "c2": 1.96138511549475, - "c3": 1.9295306704216173, - "c4": 1.820593374786138, - "c5": 1.941993872851871, - "c6": 1.9671690552845869, - "c7": 1.9514430741593445 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.884882108183079, + "c3": 2.404068423485898, + "c4": 1.9232547387887176, + "c5": 1.4424410540915371, + "c6": 0.9616273693943612, + "c7": 0.4808136846971758 }, "rgb": [86, 146, 138] }, @@ -429495,23 +429495,23 @@ "year": 1822, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 0.6855721727990414, - "c2": -2.8771690734678614, - "c3": -32.07528456738302, - "c4": -28.56819584082001, - "c5": -17.252140350320996, - "c6": -28.424090282678254, - "c7": 6.906489400030495 + "points": { + "c1": 25.313887065766572, + "c2": -21.046503875613837, + "c3": 34.80247798541289, + "c4": 23.81162901944832, + "c5": -32.40071714419971, + "c6": -29.165049215442934, + "c7": 24.47617468480218 }, - "vertexSeeds": { - "c1": 1.9923565249966697, - "c2": 1.962609420699302, - "c3": 3.553073665128605, - "c4": 2.5315253763174717, - "c5": 2.2815048305964174, - "c6": 1.9933266402624992, - "c7": 2.667337060268469 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521498, + "c3": 4.322699953767916, + "c4": 3.4581599630143325, + "c5": 2.59361997226075, + "c6": 1.7290799815071662, + "c7": 0.8645399907535828 }, "rgb": [86, 146, 138] }, @@ -429522,23 +429522,23 @@ "year": 1822, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -20.783403901238355, - "c2": -37.63520343614202, - "c3": 35.86113346494596, - "c4": -2.8163232502049453, - "c5": -26.25296872573864, - "c6": -9.239755091808185, - "c7": 16.542442640119468 + "points": { + "c1": 25.235052789092443, + "c2": -23.06857423518108, + "c3": 16.35560636755831, + "c4": 3.4140432730706394, + "c5": 21.085755785924754, + "c6": 38.41798365672437, + "c7": -22.893655664453778 }, - "vertexSeeds": { - "c1": 4.284484354967557, - "c2": 4.319167953609692, - "c3": 4.540946159504889, - "c4": 4.344884851779322, - "c5": 4.599662502435635, - "c6": 4.316571377580305, - "c7": 4.508858901519966 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613039, + "c3": 5.524734165510867, + "c4": 4.419787332408696, + "c5": 3.3148404993065244, + "c6": 2.209893666204343, + "c7": 1.1049468331021715 }, "rgb": [238, 201, 159] }, @@ -429549,23 +429549,23 @@ "year": 1822, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 16.59660265591265, - "c2": -19.543814593392135, - "c3": 14.725531023286319, - "c4": -24.75986032955003, - "c5": 13.865547145643003, - "c6": -28.787623038901938, - "c7": 13.491749828519307 + "points": { + "c1": 4.999493730117621, + "c2": -8.538293526762779, + "c3": -32.53372370167993, + "c4": 17.729864316744603, + "c5": -8.532686781361669, + "c6": -18.060862433585545, + "c7": 0.19167563506812257 }, - "vertexSeeds": { - "c1": 7.335525100989083, - "c2": 7.450983676979193, - "c3": 7.122879993946499, - "c4": 7.155060121102556, - "c5": 7.406431796503367, - "c6": 7.088578969501164, - "c7": 7.475626640152689 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686545, + "c3": 9.015256588072122, + "c4": 7.212205270457697, + "c5": 5.409153952843273, + "c6": 3.6061026352288486, + "c7": 1.8030513176144243 }, "rgb": [86, 146, 138] }, @@ -429576,23 +429576,23 @@ "year": 1822, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -20.829397657138532, - "c2": -17.49102220179773, - "c3": -22.17230192935415, - "c4": -25.929040627351846, - "c5": 3.855585317882916, - "c6": -15.517747880349996, - "c7": -22.40105039216443 + "points": { + "c1": 22.804248442958357, + "c2": 5.664401585467129, + "c3": -17.311952598064117, + "c4": -0.40000018099795653, + "c5": -26.91195771496036, + "c6": -10.915362782105273, + "c7": 24.20730237874484 }, - "vertexSeeds": { - "c1": 7.175110343831729, - "c2": 7.088936830199508, - "c3": 6.920259782642439, - "c4": 6.925200057012128, - "c5": 7.043067711517729, - "c6": 6.986212235403539, - "c7": 7.161297361294154 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922336, + "c3": 8.576051779935288, + "c4": 6.860841423948238, + "c5": 5.145631067961147, + "c6": 3.4304207119740977, + "c7": 1.7152103559870489 }, "rgb": [222, 0, 59] }, @@ -429603,23 +429603,23 @@ "year": 1822, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -25.635597632126867, - "c2": 18.67469129625708, - "c3": 15.92688461681987, - "c4": -5.196223518176577, - "c5": 23.010951594611868, - "c6": 30.277452893146133, - "c7": -8.805056115421731 + "points": { + "c1": -6.15774698496767, + "c2": 13.87385309742207, + "c3": 10.375899245678198, + "c4": -28.681577622522745, + "c5": -33.85945546880263, + "c6": 22.411715012765157, + "c7": 29.79230446689452 }, - "vertexSeeds": { - "c1": 6.965533551718992, - "c2": 7.277630670158626, - "c3": 7.4753959112622566, - "c4": 7.172028818795197, - "c5": 7.395776702203433, - "c6": 7.07303166358554, - "c7": 7.023573966492778 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [238, 201, 159] }, @@ -429630,23 +429630,23 @@ "year": 1823, "resistanceReported": false, "duration": 42595200, - "curveSeeds": { - "c1": -40.657701305955754, - "c2": 33.86010746020873, - "c3": -34.95316665426088, - "c4": -20.925665745993278, - "c5": -41.96596428391617, - "c6": 51.687659965213534, - "c7": 43.19208696208508 + "points": { + "c1": -35.54080244691805, + "c2": 35.37246114159314, + "c3": -18.191231826335446, + "c4": 28.70974691756502, + "c5": -8.318202957472614, + "c6": 17.10821366012606, + "c7": 52.89603296586248 }, - "vertexSeeds": { - "c1": 8.642304164435531, - "c2": 9.18864725789648, - "c3": 9.19192043153513, - "c4": 9.222780820066404, - "c5": 9.284900738416484, - "c6": 8.851389304389853, - "c7": 9.053920082120406 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789174, + "c3": 11.373092926490987, + "c4": 9.098474341192782, + "c5": 6.823855755894596, + "c6": 4.549237170596391, + "c7": 2.274618585298187 }, "rgb": [77, 76, 132] }, @@ -429657,23 +429657,23 @@ "year": 1822, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -16.503241761939506, - "c2": 2.242717243371011, - "c3": 11.185751327091989, - "c4": 11.681346200497732, - "c5": -8.457982057117054, - "c6": -0.5802683178107877, - "c7": 1.345243192523263 + "points": { + "c1": 6.70269086867879, + "c2": 24.16195925657205, + "c3": -20.72898143380479, + "c4": 19.515722150783713, + "c5": -14.877816478462439, + "c6": 27.142051943886532, + "c7": 9.22204007621946 }, - "vertexSeeds": { - "c1": 8.60359923836685, - "c2": 8.520400184151038, - "c3": 8.553279964189745, - "c4": 7.97931218598966, - "c5": 6.858962020436144, - "c6": 8.928457197352683, - "c7": 7.803663368720758 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703193, + "c3": 10.748959778085993, + "c4": 8.599167822468791, + "c5": 6.449375866851597, + "c6": 4.299583911234403, + "c7": 2.1497919556172014 }, "rgb": [222, 0, 59] }, @@ -429684,23 +429684,23 @@ "year": 1822, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 6.908208239937903, - "c2": -10.000109240183189, - "c3": -3.0816250580250575, - "c4": 8.755175210367394, - "c5": 29.031142173665646, - "c6": -3.9248988284047606, - "c7": 28.101996119933307 + "points": { + "c1": 0.02923283812824451, + "c2": -6.495359316239149, + "c3": 22.682945791713312, + "c4": 20.70786698495458, + "c5": 25.573714953352127, + "c6": -30.1121177181621, + "c7": -28.88732907082423 }, - "vertexSeeds": { - "c1": 12.556258592554027, - "c2": 13.246615677499122, - "c3": 14.487715546915785, - "c4": 11.093102026209584, - "c5": 12.311125259417327, - "c6": 12.04039335853474, - "c7": 13.264218170762815 + "offsets": { + "c1": 24.174757281553397, + "c2": 20.721220527045766, + "c3": 17.267683772538142, + "c4": 13.814147018030509, + "c5": 10.360610263522888, + "c6": 6.907073509015254, + "c7": 3.4535367545076214 }, "rgb": [238, 201, 159] }, @@ -429711,23 +429711,23 @@ "year": 1822, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 25.3459717119714, - "c2": 35.21230847749719, - "c3": -16.04533114624596, - "c4": -36.9607524822379, - "c5": 4.161931617665665, - "c6": 14.976993491694905, - "c7": 29.794359088820215 + "points": { + "c1": -11.981898019884305, + "c2": 0.5010903543415992, + "c3": -19.081038816507547, + "c4": 11.81298549267936, + "c5": 5.385109939106663, + "c6": -41.92172410059228, + "c7": -22.217838201174487 }, - "vertexSeeds": { - "c1": 9.083563702210752, - "c2": 8.967476863684388, - "c3": 8.84535399128847, - "c4": 9.27186432511792, - "c5": 8.83586548138965, - "c6": 9.24411693194867, - "c7": 9.167660380097418 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467397, + "c3": 11.188164586222841, + "c4": 8.950531668978265, + "c5": 6.712898751733709, + "c6": 4.475265834489132, + "c7": 2.237632917244556 }, "rgb": [77, 76, 132] }, @@ -429738,23 +429738,23 @@ "year": 1822, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": 8.406252634386135, - "c2": 30.56506509003757, - "c3": -17.817757204573297, - "c4": -22.975014466208943, - "c5": 22.55716527802464, - "c6": 7.723556284660141, - "c7": 9.443301796761702 + "points": { + "c1": 23.744799795852813, + "c2": 12.917111154073304, + "c3": -5.165059512581724, + "c4": -28.202220047829083, + "c5": -34.23170583302894, + "c6": -9.553052080597709, + "c7": 9.310224417944653 }, - "vertexSeeds": { - "c1": 8.510760312023343, - "c2": 8.37026802133178, - "c3": 8.565221635287786, - "c4": 8.740633991967353, - "c5": 8.297151158576446, - "c6": 8.680309797627459, - "c7": 8.893607004791656 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984746, + "c3": 10.910772075820624, + "c4": 8.728617660656504, + "c5": 6.546463245492383, + "c6": 4.364308830328262, + "c7": 2.1821544151641405 }, "rgb": [58, 15, 49] }, @@ -429765,23 +429765,23 @@ "year": 1822, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -1.5629213163153857, - "c2": -3.448871192204578, - "c3": -9.761496889141938, - "c4": 23.843132773882882, - "c5": 10.942358994551594, - "c6": -2.1607487707317716, - "c7": 7.454224391916075 + "points": { + "c1": -31.577827103920626, + "c2": 4.181011595302081, + "c3": 9.028240146303467, + "c4": 32.683869836304325, + "c5": 7.01237146391626, + "c6": 1.8521002134656541, + "c7": 4.81445350691105 }, - "vertexSeeds": { - "c1": 8.594023904655215, - "c2": 7.781052546759816, - "c3": 8.095625957617417, - "c4": 8.676668842612862, - "c5": 8.277440636092233, - "c6": 8.55117030720312, - "c7": 7.8472472977629275 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059637, + "c3": 10.379103097549695, + "c4": 8.303282478039753, + "c5": 6.22746185852981, + "c6": 4.151641239019868, + "c7": 2.0758206195099422 }, "rgb": [238, 201, 159] }, @@ -429792,23 +429792,23 @@ "year": 1822, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 19.412456721596087, - "c2": -24.603233933133616, - "c3": -26.73678718336548, - "c4": -21.138199477381733, - "c5": 5.9372357477345545, - "c6": -18.55541500537054, - "c7": 7.38129982973814 + "points": { + "c1": 21.761786650382284, + "c2": -9.375032573609126, + "c3": 13.534347331194517, + "c4": -12.840880173722582, + "c5": 24.52664600976251, + "c6": 28.87541640590519, + "c7": -18.394998092100955 }, - "vertexSeeds": { - "c1": 8.390833007703572, - "c2": 8.251374140276553, - "c3": 9.09947739357875, - "c4": 9.14216070661505, - "c5": 8.487797228175177, - "c6": 9.021411588528611, - "c7": 8.832163863030589 + "offsets": { + "c1": 15.436893203883495, + "c2": 13.23162274618585, + "c3": 11.026352288488205, + "c4": 8.821081830790561, + "c5": 6.615811373092933, + "c6": 4.4105409153952895, + "c7": 2.2052704576976447 }, "rgb": [238, 201, 159] }, @@ -429819,23 +429819,23 @@ "year": 1822, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 22.510645027459077, - "c2": -24.582011321719, - "c3": 10.197422347107214, - "c4": 5.044691543741962, - "c5": -2.418044377703186, - "c6": -18.81468288611412, - "c7": -9.858437089332707 + "points": { + "c1": -4.771076827198375, + "c2": 7.866399957570209, + "c3": 28.664223289358205, + "c4": 16.027462709658614, + "c5": -19.181379933601086, + "c6": 14.491324753006296, + "c7": -4.0063463684150875 }, - "vertexSeeds": { - "c1": 8.880906571000345, - "c2": 8.13403363418109, - "c3": 8.372721684217922, - "c4": 7.31444340485535, - "c5": 9.109324891034184, - "c6": 7.5188037252370075, - "c7": 8.649614991687624 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266294, + "c3": 11.072584373555246, + "c4": 8.858067498844196, + "c5": 6.643550624133147, + "c6": 4.429033749422098, + "c7": 2.214516874711049 }, "rgb": [58, 15, 49] }, @@ -429846,23 +429846,23 @@ "year": 1822, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -11.09051220457858, - "c2": -22.122722971825592, - "c3": 2.302592169570385, - "c4": 10.270304573412385, - "c5": -11.659676772042886, - "c6": 2.701263225790022, - "c7": -18.164513700244797 + "points": { + "c1": 6.977792041567618, + "c2": -12.781103875420614, + "c3": 5.53812308397924, + "c4": 20.674888538739385, + "c5": 20.32402095195201, + "c6": -15.16622455911607, + "c7": -14.196342453883371 }, - "vertexSeeds": { - "c1": 6.926277379461639, - "c2": 6.700170941460647, - "c3": 6.656538103674971, - "c4": 6.84188456007406, - "c5": 6.975746190943008, - "c6": 6.862197224543756, - "c7": 6.676773267269222 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.20804438280166, + "c3": 8.50670365233473, + "c4": 6.80536292186778, + "c5": 5.10402219140083, + "c6": 3.4026814609339007, + "c7": 1.7013407304669503 }, "rgb": [238, 201, 159] }, @@ -429873,23 +429873,23 @@ "year": 1822, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 25.081015159008913, - "c2": -11.654362047714947, - "c3": 4.245505188786893, - "c4": 11.124950954406188, - "c5": 24.049347712157044, - "c6": -17.485307463176188, - "c7": -16.596715268326086 + "points": { + "c1": -10.642429850367215, + "c2": -8.445739517040273, + "c3": -2.6522524285633047, + "c4": -15.144803512817743, + "c5": 3.1623289976945976, + "c6": 8.404364430076313, + "c7": 3.853024931669154 }, - "vertexSeeds": { - "c1": 5.608233531567532, - "c2": 5.761906139826202, - "c3": 5.820628827212335, - "c4": 5.624807249159646, - "c5": 6.081013436432787, - "c6": 5.649911335798812, - "c7": 5.588328632531191 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313458, + "c3": 7.651410078594553, + "c4": 6.121128062875635, + "c5": 4.590846047156729, + "c6": 3.0605640314378237, + "c7": 1.530282015718905 }, "rgb": [58, 15, 49] }, @@ -429900,23 +429900,23 @@ "year": 1822, "resistanceReported": false, "duration": 7516800, - "curveSeeds": { - "c1": -2.072621714846729, - "c2": -8.617729315720224, - "c3": -13.674322291840753, - "c4": 1.3930419202155555, - "c5": 6.912336079346243, - "c6": -13.833942731097054, - "c7": -12.540112983396117 + "points": { + "c1": -3.817030591211296, + "c2": -17.52846824552544, + "c3": -11.128232719547487, + "c4": -1.1381847681164388, + "c5": 8.532143931423182, + "c6": 10.956313188485709, + "c7": 18.121192276105127 }, - "vertexSeeds": { - "c1": 5.798841579484406, - "c2": 5.092214071754852, - "c3": 5.646065152291745, - "c4": 6.0989590640615745, - "c5": 5.633957400427933, - "c6": 6.010431212562557, - "c7": 5.405495472489932 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830792, + "c3": 7.374017568192327, + "c4": 5.899214054553854, + "c5": 4.424410540915391, + "c6": 2.949607027276927, + "c7": 1.4748035136384634 }, "rgb": [222, 0, 59] }, @@ -429927,23 +429927,23 @@ "year": 1822, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -27.80800078201437, - "c2": 14.467358757318387, - "c3": 29.12911395019659, - "c4": 9.787648956544189, - "c5": 0.42766587936151623, - "c6": 18.924034614843336, - "c7": -18.241805448047955 + "points": { + "c1": 3.871632080376827, + "c2": -10.93645159104133, + "c3": 28.147564760950004, + "c4": 9.111998044698538, + "c5": -31.319307931279003, + "c6": 3.6861344832780745, + "c7": 18.658671525653546 }, - "vertexSeeds": { - "c1": 7.9835938620877585, - "c2": 7.552065979807929, - "c3": 7.731455121663581, - "c4": 7.66521414039747, - "c5": 7.607929802355138, - "c6": 8.05546032837284, - "c7": 8.069412603132056 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094317, + "c3": 9.824318076745268, + "c4": 7.859454461396196, + "c5": 5.894590846047148, + "c6": 3.929727230698098, + "c7": 1.964863615349049 }, "rgb": [238, 201, 159] }, @@ -429954,23 +429954,23 @@ "year": 1822, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -29.285540946289792, - "c2": 22.729837457130508, - "c3": -21.268682299417904, - "c4": -13.047438942234685, - "c5": 17.467739110988887, - "c6": -36.56650102757636, - "c7": -19.743458734366406 + "points": { + "c1": -9.831792490083586, + "c2": 22.098236524909183, + "c3": 17.580093251498454, + "c4": 29.656436577913304, + "c5": 8.066895131953672, + "c6": -1.8192435501920556, + "c7": 34.193208367589826 }, - "vertexSeeds": { - "c1": 4.7289871624557795, - "c2": 4.402808371347596, - "c3": 4.598183072982495, - "c4": 4.499318680423504, - "c5": 4.350811959954483, - "c6": 4.763320322384846, - "c7": 4.504075030411439 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934815, + "c3": 5.709662505779006, + "c4": 4.567730004623207, + "c5": 3.4257975034674075, + "c6": 2.2838650023116083, + "c7": 1.1419325011557993 }, "rgb": [77, 76, 132] }, @@ -429981,23 +429981,23 @@ "year": 1822, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 17.608182389919982, - "c2": -6.248727868839293, - "c3": 4.150485172156216, - "c4": -30.47277508089869, - "c5": 6.6755833341748385, - "c6": -6.357579294082669, - "c7": -17.783682505498643 + "points": { + "c1": -3.8068923067806253, + "c2": 11.681518290959943, + "c3": 0.21624171937784098, + "c4": 27.52126518069268, + "c5": -30.03239790121603, + "c6": 18.395845847732687, + "c7": -31.10730572866923 }, - "vertexSeeds": { - "c1": 2.8534393075289537, - "c2": 2.8628908784351323, - "c3": 2.8754226001202374, - "c4": 2.850841742593502, - "c5": 2.8637012997237496, - "c6": 2.8719796574144945, - "c7": 2.8439465634967838 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993085, + "c3": 3.444290337494192, + "c4": 2.7554322699953673, + "c5": 2.0665742024965423, + "c6": 1.3777161349977178, + "c7": 0.6888580674988246 }, "rgb": [58, 15, 49] }, @@ -430008,23 +430008,23 @@ "year": 1822, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 22.63825626990301, - "c2": -28.82709404213004, - "c3": -17.31480391343398, - "c4": 22.220645189881836, - "c5": -2.3345932714983846, - "c6": -22.89846056284975, - "c7": 32.76967176471736 + "points": { + "c1": -29.5919167852162, + "c2": -37.719339697567314, + "c3": 30.947699192190072, + "c4": -16.503768358105138, + "c5": 7.018782343195596, + "c6": -13.397484738554077, + "c7": 33.75355874462909 }, - "vertexSeeds": { - "c1": 6.140399633176877, - "c2": 6.462686375163019, - "c3": 6.045182003334684, - "c4": 6.378871290107503, - "c5": 6.401958173693228, - "c6": 6.656234942108996, - "c7": 6.551453190506042 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077674, + "c3": 8.090614886731386, + "c4": 6.472491909385112, + "c5": 4.854368932038837, + "c6": 3.2362459546925635, + "c7": 1.618122977346274 }, "rgb": [222, 0, 59] }, @@ -430035,23 +430035,23 @@ "year": 1822, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 33.14730277894249, - "c2": 19.084001826956666, - "c3": -29.51918031237049, - "c4": -14.556503036352765, - "c5": 31.549287506832073, - "c6": -21.229420254864547, - "c7": 26.002833200956623 + "points": { + "c1": 17.736942939192026, + "c2": 33.53957464594829, + "c3": -31.524148826575114, + "c4": 8.217242829146294, + "c5": 30.560761531849636, + "c6": 9.12850347627441, + "c7": 17.044771936646633 }, - "vertexSeeds": { - "c1": 7.574889299112061, - "c2": 7.801511272312516, - "c3": 7.866462686972013, - "c4": 7.843661136679044, - "c5": 7.6010481880064615, - "c6": 7.57724303734054, - "c7": 7.812293222975347 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410555, + "c3": 9.431345353675475, + "c4": 7.545076282940355, + "c5": 5.658807212205278, + "c6": 3.7725381414701986, + "c7": 1.8862690707350784 }, "rgb": [238, 201, 159] }, @@ -430062,23 +430062,23 @@ "year": 1822, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -20.64558001854802, - "c2": -2.0764231415189656, - "c3": 16.842883852541092, - "c4": 0.5375957397746731, - "c5": -9.860336797236146, - "c6": -17.509844214784408, - "c7": -7.251343279515915 + "points": { + "c1": 3.7639885423473984, + "c2": -4.046069239906707, + "c3": -20.60860155360095, + "c4": -8.494769828097121, + "c5": 1.4133994148648732, + "c6": 4.37158442447344, + "c7": -8.076668813979625 }, - "vertexSeeds": { - "c1": 3.5346793696368786, - "c2": 3.6046363902554153, - "c3": 3.81619604597673, - "c4": 3.56728917576608, - "c5": 3.782879875150557, - "c6": 3.5697174230306032, - "c7": 3.8858232980355965 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124826, + "c3": 4.6694405917706865, + "c4": 3.735552473416557, + "c5": 2.801664355062417, + "c6": 1.8677762367082784, + "c7": 0.9338881183541392 }, "rgb": [238, 201, 159] }, @@ -430089,23 +430089,23 @@ "year": 1822, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": 20.990036998300923, - "c2": 14.929299030995722, - "c3": 8.207011083732969, - "c4": -6.351430388468977, - "c5": 20.555512190669965, - "c6": -3.4615378720377485, - "c7": 13.65870115244011 + "points": { + "c1": 22.77658854047545, + "c2": -0.5714124604969584, + "c3": 2.0254402754808005, + "c4": -23.67112445648623, + "c5": 9.122058226317733, + "c6": -16.773044664068827, + "c7": -12.210096898341982 }, - "vertexSeeds": { - "c1": 4.806262377541448, - "c2": 4.609300412061059, - "c3": 4.72737204222395, - "c4": 4.763597552062075, - "c5": 4.538471497408574, - "c6": 4.680022159133687, - "c7": 4.607889914836435 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055474, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.4674063800277413, + "c6": 2.3116042533518244, + "c7": 1.1558021266759078 }, "rgb": [222, 0, 59] }, @@ -430116,23 +430116,23 @@ "year": 1822, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -14.693513235150046, - "c2": 9.104088479799756, - "c3": -13.97044053568009, - "c4": -26.427757891930423, - "c5": 20.0461420779709, - "c6": -21.211460690923147, - "c7": 0.8257784948646147 + "points": { + "c1": -2.6420802850640577, + "c2": 2.5801573958416952, + "c3": 18.471960665404325, + "c4": 30.830494019718074, + "c5": -28.60807694682802, + "c6": 11.89073322500856, + "c7": 25.66491686526784 }, - "vertexSeeds": { - "c1": 10.439497709941444, - "c2": 10.487287572778206, - "c3": 10.563930815269282, - "c4": 10.469219030541877, - "c5": 10.344949579018886, - "c6": 10.385178692202262, - "c7": 10.426845814117435 + "offsets": { + "c1": 17.637540453074433, + "c2": 15.117891816921015, + "c3": 12.59824318076743, + "c4": 10.07859454461401, + "c5": 7.558945908460424, + "c6": 5.039297272307005, + "c7": 2.519648636153419 }, "rgb": [77, 76, 132] }, @@ -430143,23 +430143,23 @@ "year": 1822, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -21.919245964049935, - "c2": 24.035189854564393, - "c3": -1.1223138873075449, - "c4": 17.185272762843724, - "c5": -20.90384906383894, - "c6": -4.99184526382383, - "c7": -11.725494489111966 + "points": { + "c1": -23.158970000246594, + "c2": 11.260195100532393, + "c3": -11.473692625226501, + "c4": 3.3935464334269483, + "c5": -28.7563747338258, + "c6": 3.857017577372254, + "c7": 28.479174536816878 }, - "vertexSeeds": { - "c1": 10.060630717858777, - "c2": 10.589804128183722, - "c3": 10.417753446092684, - "c4": 10.576604346782824, - "c5": 10.96393544163239, - "c6": 10.539624415675078, - "c7": 10.743085777249105 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.700416088765609, + "c3": 13.083680073971346, + "c4": 10.466944059177086, + "c5": 7.850208044382825, + "c6": 5.233472029588523, + "c7": 2.6167360147942613 }, "rgb": [58, 15, 49] }, @@ -430170,23 +430170,23 @@ "year": 1822, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -3.5796224717040275, - "c2": 29.11754567702643, - "c3": -25.412316846591033, - "c4": -29.727956353495006, - "c5": 17.289786406310068, - "c6": 26.92063759245062, - "c7": 22.48799514004642 + "points": { + "c1": 9.021364814365029, + "c2": -17.891385073754176, + "c3": 23.815046575767532, + "c4": -25.17333691469888, + "c5": 32.58751689718484, + "c6": -6.6697507825418185, + "c7": -15.519109194203143 }, - "vertexSeeds": { - "c1": 5.780602093124314, - "c2": 5.198738126592034, - "c3": 5.208658365296431, - "c4": 5.601404405551668, - "c5": 5.649220049843829, - "c6": 5.585390675581271, - "c7": 5.622409349958437 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.377253814147013, + "c3": 6.981044845122522, + "c4": 5.584835876098014, + "c5": 4.188626907073506, + "c6": 2.792417938049015, + "c7": 1.3962089690245074 }, "rgb": [77, 76, 132] }, @@ -430197,23 +430197,23 @@ "year": 1822, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -14.088323964894139, - "c2": 20.18155267069462, - "c3": -9.045246115133498, - "c4": 6.893065332688693, - "c5": -8.328607571178907, - "c6": -11.359418993100132, - "c7": -16.861063894066163 + "points": { + "c1": -24.432337392401486, + "c2": -5.430428375791763, + "c3": -9.540990004979452, + "c4": -11.757344323854838, + "c5": 30.096223498192693, + "c6": -6.790847182758323, + "c7": -21.4814482609547 }, - "vertexSeeds": { - "c1": 4.411157228342572, - "c2": 4.384954180965892, - "c3": 5.578413997916793, - "c4": 4.826441267595639, - "c5": 4.755281820619992, - "c6": 6.258340969305706, - "c7": 4.484908143595106 + "offsets": { + "c1": 10.517799352750808, + "c2": 9.015256588072118, + "c3": 7.512713823393435, + "c4": 6.010171058714751, + "c5": 4.507628294036061, + "c6": 3.0050855293573737, + "c7": 1.5025427646786869 }, "rgb": [86, 146, 138] }, @@ -430224,23 +430224,23 @@ "year": 1822, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -19.911879246732802, - "c2": -22.347643173899314, - "c3": -3.711227051647448, - "c4": -19.850441855038177, - "c5": 15.603109313159116, - "c6": 22.806577119995943, - "c7": 20.25142183808252 + "points": { + "c1": 9.724108714042998, + "c2": -22.851366295670275, + "c3": 30.543143823499108, + "c4": -29.002616025926205, + "c5": 9.152284345247075, + "c6": -6.930092081420476, + "c7": 18.941313146361942 }, - "vertexSeeds": { - "c1": 2.6993501020710284, - "c2": 6.792243407353426, - "c3": 1.7594959405636694, - "c4": 4.41663367914047, - "c5": 1.9573651932212304, - "c6": 4.521977203774251, - "c7": 6.718741126352608 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284328, + "c3": 8.784096162736942, + "c4": 7.027276930189552, + "c5": 5.270457697642164, + "c6": 3.5136384650947763, + "c7": 1.7568192325473875 }, "rgb": [222, 0, 59] }, @@ -430251,23 +430251,23 @@ "year": 1822, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 0.6361219583335185, - "c2": -13.053210747586663, - "c3": -25.3113655869764, - "c4": 0.3498824480827203, - "c5": -1.5523506551796586, - "c6": 4.769473728991898, - "c7": 24.699574114657345 + "points": { + "c1": -9.061678046354466, + "c2": 26.714726666898628, + "c3": -17.819956620064122, + "c4": 18.94152360072144, + "c5": 27.47793618783389, + "c6": -14.957619796813491, + "c7": -8.588067116872626 }, - "vertexSeeds": { - "c1": 6.021046113281163, - "c2": 5.715063545480682, - "c3": 5.726140075277255, - "c4": 5.910636231778054, - "c5": 5.834576192492895, - "c6": 5.800257182808926, - "c7": 5.8411396702471885 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629688, + "c3": 7.258437355524724, + "c4": 5.806749884419784, + "c5": 4.355062413314844, + "c6": 2.9033749422098802, + "c7": 1.4516874711049401 }, "rgb": [86, 146, 138] }, @@ -430278,23 +430278,23 @@ "year": 1822, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -5.264988098001691, - "c2": 15.131416924065551, - "c3": -27.29079266953341, - "c4": 2.0758770378952, - "c5": 2.1735903301539956, - "c6": 25.1130231505305, - "c7": 6.863412602852758 + "points": { + "c1": 14.738819920653917, + "c2": 14.928932509842348, + "c3": 23.92768953890286, + "c4": 22.03607228215852, + "c5": 21.37453766851843, + "c6": -21.1739899821958, + "c7": 14.603126860846587 }, - "vertexSeeds": { - "c1": 13.469322513219721, - "c2": 13.484599603622193, - "c3": 13.633944943213006, - "c4": 12.75186042985058, - "c5": 13.19737185077956, - "c6": 11.877436651757407, - "c7": 11.853888222410651 + "offsets": { + "c1": 24.59546925566343, + "c2": 21.081830790568645, + "c3": 17.568192325473877, + "c4": 14.054553860379109, + "c5": 10.540915395284323, + "c6": 7.027276930189537, + "c7": 3.5136384650947683 }, "rgb": [86, 146, 138] }, @@ -430305,23 +430305,23 @@ "year": 1822, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -18.23878832238463, - "c2": 5.336485644420588, - "c3": -2.2072600309621713, - "c4": 2.545408161107499, - "c5": -15.709156679779781, - "c6": 25.327317524279916, - "c7": -18.995475975888297 + "points": { + "c1": -19.328047633664312, + "c2": 24.013397452008654, + "c3": -29.435184918351787, + "c4": -28.644921963179204, + "c5": -30.272708091655623, + "c6": 27.390575987782015, + "c7": -7.058128063143535 }, - "vertexSeeds": { - "c1": 0.17487046632124353, - "c2": 0.17487046632124353, - "c3": 0.17487046632124353, - "c4": 0.17487046632124353, - "c5": 0.17487046632124353, - "c6": 0.17487046632124353, - "c7": 0.17487046632124353 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -430332,23 +430332,23 @@ "year": 1822, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 18.965952550528122, - "c2": 22.927286092229444, - "c3": -17.48127696218369, - "c4": 33.749964496952416, - "c5": -15.97099572613672, - "c6": 20.988312250434326, - "c7": 29.119813424798394 + "points": { + "c1": 17.142405576251406, + "c2": -6.951907471668736, + "c3": 23.690135069130918, + "c4": 2.452796814739628, + "c5": -10.961793415359452, + "c6": 7.67009482978991, + "c7": 28.78309848362315 }, - "vertexSeeds": { - "c1": 12.070373609881942, - "c2": 11.447119662270158, - "c3": 12.386459672994741, - "c4": 12.415978950984034, - "c5": 12.576253496854967, - "c6": 11.410440591475613, - "c7": 12.027684638500762 + "offsets": { + "c1": 21.197411003236247, + "c2": 18.16920943134537, + "c3": 15.141007859454458, + "c4": 12.11280628756358, + "c5": 9.084604715672668, + "c6": 6.05640314378179, + "c7": 3.028201571890909 }, "rgb": [238, 201, 159] }, @@ -430359,23 +430359,23 @@ "year": 1822, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 23.340184318735254, - "c2": 1.7243284402537782, - "c3": -20.551488321750835, - "c4": -9.361828227663047, - "c5": 23.95078599989541, - "c6": -3.0944765248940023, - "c7": 25.028403555785246 + "points": { + "c1": -19.38913567721075, + "c2": 13.149222109793996, + "c3": -8.284222975028094, + "c4": 34.01484054912834, + "c5": -9.783388831283606, + "c6": 10.17350198683743, + "c7": 9.11012934621909 }, - "vertexSeeds": { - "c1": 14.1733510403926, - "c2": 13.538169534566672, - "c3": 13.797400007338446, - "c4": 13.765548736310103, - "c5": 14.208484827846595, - "c6": 13.848490072390158, - "c7": 13.987923634661842 + "offsets": { + "c1": 23.721682847896442, + "c2": 20.332871012482656, + "c3": 16.944059177068866, + "c4": 13.55524734165508, + "c5": 10.166435506241292, + "c6": 6.777623670827576, + "c7": 3.388811835413788 }, "rgb": [77, 76, 132] }, @@ -430386,23 +430386,23 @@ "year": 1822, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": 26.413687567522416, - "c2": -4.730819024422509, - "c3": -23.30691386188138, - "c4": 13.441582466564263, - "c5": 13.592164698024824, - "c6": 13.68363038477412, - "c7": 4.573438895815251 + "points": { + "c1": 6.826186611366026, + "c2": 40.145428761761806, + "c3": -9.551361964862153, + "c4": 8.433116522917338, + "c5": -39.242349774165255, + "c6": 35.967009737513095, + "c7": 36.541359845847865 }, - "vertexSeeds": { - "c1": 7.252044483463293, - "c2": 7.406642516911633, - "c3": 6.829943116598708, - "c4": 7.216962478309931, - "c5": 7.2421663161698575, - "c6": 7.128075061344565, - "c7": 7.148039392920733 + "offsets": { + "c1": 12.427184466019417, + "c2": 10.651872399445212, + "c3": 8.876560332871005, + "c4": 7.1012482662968015, + "c5": 5.325936199722617, + "c6": 3.550624133148411, + "c7": 1.7753120665742055 }, "rgb": [77, 76, 132] }, @@ -430413,23 +430413,23 @@ "year": 1822, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -7.4507525806161325, - "c2": -31.588224840765736, - "c3": 10.091572689431537, - "c4": -31.456131128741173, - "c5": 17.266347653774375, - "c6": -8.536741337034105, - "c7": 31.616569247041213 + "points": { + "c1": 23.603048619801484, + "c2": -19.938350407812177, + "c3": 4.838281541858549, + "c4": 8.855317889752051, + "c5": -2.781173392081481, + "c6": -8.960180288716831, + "c7": 26.835973583828014 }, - "vertexSeeds": { - "c1": 4.50669130467852, - "c2": 4.318121816733136, - "c3": 4.486675069147082, - "c4": 4.062040825451655, - "c5": 4.490643119738186, - "c6": 4.227779285271339, - "c7": 4.555374094213269 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613039, + "c3": 5.524734165510866, + "c4": 4.419787332408695, + "c5": 3.3148404993065226, + "c6": 2.209893666204351, + "c7": 1.104946833102179 }, "rgb": [238, 201, 159] }, @@ -430440,23 +430440,23 @@ "year": 1822, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -15.408912625983378, - "c2": -2.2377845029822794, - "c3": -2.1558225913783033, - "c4": -2.6939004439700867, - "c5": 8.196243517240202, - "c6": 9.846384711546904, - "c7": -18.743345870082308 + "points": { + "c1": -25.264346450221772, + "c2": -2.8489582861774707, + "c3": 21.70499749267527, + "c4": -20.650308982886866, + "c5": -19.778490470097015, + "c6": -6.379460669541178, + "c7": -20.137974843144573 }, - "vertexSeeds": { - "c1": 7.638663431611179, - "c2": 7.636250562606576, - "c3": 7.534565298882059, - "c4": 7.4437107609063915, - "c5": 7.497963045474663, - "c6": 7.627393819515562, - "c7": 7.492981485347782 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887656, + "c3": 9.130836800739715, + "c4": 7.304669440591771, + "c5": 5.478502080443828, + "c6": 3.6523347202958854, + "c7": 1.8261673601479427 }, "rgb": [86, 146, 138] }, @@ -430467,23 +430467,23 @@ "year": 1822, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -2.9044976459873695, - "c2": -30.946062632912973, - "c3": 20.67503118747011, - "c4": 3.4200203971956427, - "c5": 22.577748055370137, - "c6": -23.527840786679086, - "c7": -10.015015525167225 + "points": { + "c1": -24.700232996528698, + "c2": -11.563772333321069, + "c3": -35.537307992439736, + "c4": 15.405508910326297, + "c5": 38.994758120973515, + "c6": -30.250225589234873, + "c7": -4.720969240608241 }, - "vertexSeeds": { - "c1": 9.854781280816363, - "c2": 9.29690961268929, - "c3": 9.277471393740923, - "c4": 9.686580388520094, - "c5": 9.959093334626653, - "c6": 9.286484591578114, - "c7": 9.094321952702106 + "offsets": { + "c1": 16.666666666666664, + "c2": 14.285714285714292, + "c3": 11.9047619047619, + "c4": 9.523809523809527, + "c5": 7.142857142857136, + "c6": 4.761904761904764, + "c7": 2.380952380952392 }, "rgb": [238, 201, 159] }, @@ -430494,23 +430494,23 @@ "year": 1823, "resistanceReported": false, "duration": 36720000, - "curveSeeds": { - "c1": -17.72776225538901, - "c2": 5.607254378207543, - "c3": 38.462947689228734, - "c4": -42.099227082676244, - "c5": 41.82707036438304, - "c6": 39.81041552444311, - "c7": -47.32292436045716 + "points": { + "c1": 36.429940240421296, + "c2": -21.05786505817202, + "c3": 40.04256123157162, + "c4": 11.938889145684435, + "c5": 15.509750013009288, + "c6": 29.040930630289033, + "c7": 32.323510025130865 }, - "vertexSeeds": { - "c1": 2.7317885174497136, - "c2": 2.9164934004711704, - "c3": 3.488421439955687, - "c4": 2.767024648031896, - "c5": 2.7593013049332797, - "c6": 2.5769007017162266, - "c7": 2.8687715710850075 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280165, + "c3": 4.184003698566803, + "c4": 3.3472029588534444, + "c5": 2.5104022191400825, + "c6": 1.6736014794267207, + "c7": 0.8368007397133619 }, "rgb": [58, 15, 49] }, @@ -430521,23 +430521,23 @@ "year": 1822, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -15.647635112262018, - "c2": -19.81507641808059, - "c3": 11.31812459062687, - "c4": 22.28128071821906, - "c5": -25.573077614113107, - "c6": 22.173909793946425, - "c7": -2.846578926183657 + "points": { + "c1": -26.595417107070535, + "c2": 27.57921734515642, + "c3": -20.212534917398116, + "c4": 14.788164239931934, + "c5": 19.37714354299335, + "c6": 23.06420781368431, + "c7": -3.883041489611607 }, - "vertexSeeds": { - "c1": 5.15663456762351, - "c2": 4.564391418515035, - "c3": 4.639068460318126, - "c4": 5.537150465529127, - "c5": 5.354293761892935, - "c6": 3.6730461680241824, - "c7": 5.628672150700147 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.71012482662968, + "c3": 7.258437355524734, + "c4": 5.806749884419787, + "c5": 4.35506241331484, + "c6": 2.9033749422098936, + "c7": 1.4516874711049468 }, "rgb": [58, 15, 49] }, @@ -430548,23 +430548,23 @@ "year": 1822, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -12.132408279737461, - "c2": -14.633003150160256, - "c3": 8.388125032588409, - "c4": -13.964011647510326, - "c5": 16.37602664952425, - "c6": -21.046565092585304, - "c7": -19.68189130307981 + "points": { + "c1": 11.643715471068056, + "c2": -8.399952970032471, + "c3": 17.31998976708894, + "c4": 14.481383109028407, + "c5": -0.03899755263097049, + "c6": 1.5115059670597546, + "c7": 11.32927143600348 }, - "vertexSeeds": { - "c1": 4.764752915629077, - "c2": 4.304957553246183, - "c3": 4.737489299898601, - "c4": 4.354123219496916, - "c5": 4.538381511854254, - "c6": 4.415908177459868, - "c7": 4.600280139261408 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.8515950069348115, + "c3": 5.7096625057790105, + "c4": 4.567730004623208, + "c5": 3.4257975034674057, + "c6": 2.283865002311604, + "c7": 1.141932501155802 }, "rgb": [86, 146, 138] }, @@ -430575,23 +430575,23 @@ "year": 1822, "resistanceReported": false, "duration": 30585600, - "curveSeeds": { - "c1": 0.038304380920727965, - "c2": 2.6307319300675616, - "c3": 3.3097757838578303, - "c4": -18.82391182720567, - "c5": -10.580878447632102, - "c6": 2.337623966380704, - "c7": 1.3451388824500015 + "points": { + "c1": -27.468375952283363, + "c2": 4.62504264913008, + "c3": -22.727326532428105, + "c4": 7.8906669468639095, + "c5": 31.46276277039354, + "c6": -37.82084656890594, + "c7": 9.99654721447537 }, - "vertexSeeds": { - "c1": 1.7610971539775124, - "c2": 1.8455482839979083, - "c3": 1.7172294027413908, - "c4": 1.770281402077842, - "c5": 1.7256896865099018, - "c6": 1.8335004221933502, - "c7": 1.726601221202189 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.8862690707350886, + "c5": 1.4147018030513194, + "c6": 0.9431345353675462, + "c7": 0.4715672676837731 }, "rgb": [58, 15, 49] }, @@ -430602,23 +430602,23 @@ "year": 1822, "resistanceReported": false, "duration": 5097600, - "curveSeeds": { - "c1": -1.8779620701335187, - "c2": 9.565361884045824, - "c3": -4.903738169454611, - "c4": 1.17272881154447, - "c5": -13.124882999627298, - "c6": 1.8586197579497608, - "c7": 11.050010642915197 + "points": { + "c1": 11.394314655352748, + "c2": -5.044564366208649, + "c3": -12.983562728827334, + "c4": 3.32715518674404, + "c5": 13.549649585038523, + "c6": -11.464795927127739, + "c7": 13.629049035329793 }, - "vertexSeeds": { - "c1": 0.16176543392391876, - "c2": 0.1682512036820528, - "c3": 0.168421892261506, - "c4": 0.15680748657255236, - "c5": 0.14330076163244834, - "c6": 0.136865925928969, - "c7": 0.15533258086981327 + "offsets": { + "c1": 0.3236245954692557, + "c2": 0.2773925104022191, + "c3": 0.2311604253351827, + "c4": 0.18492834026814603, + "c5": 0.13869625520110967, + "c6": 0.09246417013407301, + "c7": 0.04623208506703665 }, "rgb": [86, 146, 138] }, @@ -430629,23 +430629,23 @@ "year": 1822, "resistanceReported": true, "duration": 14515200, - "curveSeeds": { - "c1": -11.647891931772177, - "c2": -23.586578539306288, - "c3": 0.5725950014823269, - "c4": -13.412619544888035, - "c5": 0.19301902016974282, - "c6": -9.870364270950674, - "c7": -25.31440708352945 + "points": { + "c1": -1.6690786511063855, + "c2": -25.63529751255096, + "c3": 1.6181384132713035, + "c4": 0.48834920307423246, + "c5": 13.468395963163342, + "c6": 3.2043758776241624, + "c7": 20.192019550238594 }, - "vertexSeeds": { - "c1": 0.5617347003012368, - "c2": 0.5979561176460739, - "c3": 0.6177932624619854, - "c4": 0.6229890722056945, - "c5": 0.6182086739954393, - "c6": 0.6027481910120497, - "c7": 0.6368941147107963 + "offsets": { + "c1": 1.1003236245954693, + "c2": 0.9431345353675451, + "c3": 0.7859454461396209, + "c4": 0.6287563569116967, + "c5": 0.47156726768377255, + "c6": 0.31437817845584837, + "c7": 0.15718908922792418 }, "rgb": [86, 146, 138] }, @@ -430656,23 +430656,23 @@ "year": 1822, "resistanceReported": false, "duration": 30499200, - "curveSeeds": { - "c1": -36.09579484883446, - "c2": -41.191159754561426, - "c3": -28.36259567804987, - "c4": 1.4794522617371229, - "c5": -35.672492261685605, - "c6": 15.332996170443323, - "c7": -28.475112317531085 + "points": { + "c1": 44.584945943222664, + "c2": 32.45365545138614, + "c3": -33.571657095396404, + "c4": -17.338870367490852, + "c5": 25.53425630314213, + "c6": -10.343921353208827, + "c7": 5.9897012761597 }, - "vertexSeeds": { - "c1": 8.23099347092777, - "c2": 7.903381323690529, - "c3": 7.748390835610321, - "c4": 7.78668287558888, - "c5": 8.593103790442973, - "c6": 7.742577696340333, - "c7": 8.980114729178766 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [86, 146, 138] }, @@ -430683,23 +430683,23 @@ "year": 1822, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 19.336512486244935, - "c2": 19.79202868112958, - "c3": 17.705005214963933, - "c4": -22.11035728692918, - "c5": 2.9501669233988324, - "c6": -14.823081457004047, - "c7": 24.39311262585494 + "points": { + "c1": -22.561616660385067, + "c2": -19.142464271170663, + "c3": -19.197647767765616, + "c4": 6.3883724423825825, + "c5": -36.08340053827825, + "c6": 1.9024017411340353, + "c7": -34.028154519023516 }, - "vertexSeeds": { - "c1": 2.368880667277437, - "c2": 2.3219085817215896, - "c3": 2.315270573830553, - "c4": 2.3636490415507443, - "c5": 2.366920612080752, - "c6": 2.2813151000410934, - "c7": 2.2908981656738083 + "offsets": { + "c1": 4.0129449838187705, + "c2": 3.4396671289875176, + "c3": 2.8663892741562647, + "c4": 2.2931114193250117, + "c5": 1.7198335644937588, + "c6": 1.1465557096625059, + "c7": 0.5732778548312529 }, "rgb": [238, 201, 159] }, @@ -430710,23 +430710,23 @@ "year": 1822, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": 18.292274662276096, - "c2": -15.559652274229023, - "c3": -20.11858900544791, - "c4": -20.257820191204964, - "c5": 20.651794599218594, - "c6": -17.752930563272592, - "c7": -20.661434543333325 + "points": { + "c1": -12.58464929605798, + "c2": -15.863798049620716, + "c3": 15.373540010814121, + "c4": -16.973177665141844, + "c5": -1.0597165997300557, + "c6": -14.936824582846429, + "c7": -19.219832582457194 }, - "vertexSeeds": { - "c1": 6.4151807548326545, - "c2": 6.5434273949048265, - "c3": 6.501399847117484, - "c4": 6.2557598738591915, - "c5": 6.429490238407418, - "c6": 6.064518322749262, - "c7": 6.234847804754836 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876561, + "c3": 7.975034674063801, + "c4": 6.380027739251041, + "c5": 4.785020804438281, + "c6": 3.1900138696255205, + "c7": 1.5950069348127602 }, "rgb": [222, 0, 59] }, @@ -430737,23 +430737,23 @@ "year": 1822, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 3.453822937985791, - "c2": -18.876983216229263, - "c3": -2.4964910849497954, - "c4": 20.999131928376283, - "c5": -10.306957846133734, - "c6": 2.033311749388897, - "c7": 16.186564388046552 + "points": { + "c1": 6.250034774416942, + "c2": -10.616126786312233, + "c3": -17.04599087187306, + "c4": -8.247757911727138, + "c5": -26.607558234543866, + "c6": -2.386317812497726, + "c7": 16.355244562725705 }, - "vertexSeeds": { - "c1": 3.1855057905523045, - "c2": 3.2431683701667726, - "c3": 3.203997819679546, - "c4": 3.2304883496825827, - "c5": 3.11004641383772, - "c6": 3.125836508802386, - "c7": 3.207430213122311 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757285, + "c3": 3.883495145631074, + "c4": 3.1067961165048628, + "c5": 2.3300970873786326, + "c6": 1.5533980582524218, + "c7": 0.7766990291262109 }, "rgb": [77, 76, 132] }, @@ -430764,23 +430764,23 @@ "year": 1822, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 4.06063951848558, - "c2": 29.53368903138606, - "c3": -30.59310860198407, - "c4": 2.100012046110834, - "c5": 3.561359033764681, - "c6": -25.855958559585165, - "c7": -27.587970143478028 + "points": { + "c1": -13.369260994493036, + "c2": 12.306329322239165, + "c3": -2.2195906848490594, + "c4": 6.632039221558529, + "c5": 15.096247206876825, + "c6": -31.049749631904202, + "c7": 2.8900741825545495 }, - "vertexSeeds": { - "c1": 8.507824390508489, - "c2": 7.632192365124933, - "c3": 7.438747339083172, - "c4": 8.880892647617655, - "c5": 7.9431949665546755, - "c6": 8.862792917297348, - "c7": 8.859243393167855 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984748, + "c3": 10.910772075820617, + "c4": 8.728617660656498, + "c5": 6.546463245492378, + "c6": 4.364308830328249, + "c7": 2.182154415164129 }, "rgb": [58, 15, 49] }, @@ -430791,23 +430791,23 @@ "year": 1822, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": -14.18220747896968, - "c2": -1.3244040824901617, - "c3": 12.231841838993631, - "c4": 13.60806575572802, - "c5": -11.543262302618889, - "c6": -9.192137465223027, - "c7": 10.387606647939513 + "points": { + "c1": -2.475507558346269, + "c2": 18.590580186922708, + "c3": -13.087768477244348, + "c4": 15.32249332820625, + "c5": 2.688451084893554, + "c6": -9.830447099102786, + "c7": 11.578294883522318 }, - "vertexSeeds": { - "c1": 7.212821075148516, - "c2": 7.251915961720787, - "c3": 6.951327681694847, - "c4": 7.322029355882749, - "c5": 6.926361493028245, - "c6": 6.975670551554553, - "c7": 7.2022488879647755 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284333, + "c3": 8.784096162736947, + "c4": 7.027276930189535, + "c5": 5.270457697642151, + "c6": 3.5136384650947674, + "c7": 1.7568192325473837 }, "rgb": [77, 76, 132] }, @@ -430818,23 +430818,23 @@ "year": 1822, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": 2.3403388608468134, - "c2": 16.338971494369325, - "c3": 14.882290836342435, - "c4": -9.907389989878874, - "c5": -9.205361717116453, - "c6": 16.755852351132567, - "c7": 18.592151375577053 + "points": { + "c1": 14.785335451094731, + "c2": -17.65780048974453, + "c3": -1.7137508123378744, + "c4": 22.287990486564368, + "c5": 10.342827124721843, + "c6": -17.03516014630604, + "c7": 14.831541858840652 }, - "vertexSeeds": { - "c1": 4.907898439730055, - "c2": 5.4918044931809185, - "c3": 4.914578988424449, - "c4": 4.985364557017325, - "c5": 5.215959056828329, - "c6": 5.133157701659533, - "c7": 4.838816325131601 + "offsets": { + "c1": 9.288025889967638, + "c2": 7.961165048543695, + "c3": 6.634304207119738, + "c4": 5.307443365695794, + "c5": 3.980582524271851, + "c6": 2.6537216828478933, + "c7": 1.3268608414239504 }, "rgb": [58, 15, 49] }, @@ -430845,23 +430845,23 @@ "year": 1822, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -26.382667415844416, - "c2": -26.526570758234165, - "c3": 15.363044755870916, - "c4": -10.429898054241733, - "c5": -29.613765646509407, - "c6": 34.50931408625661, - "c7": 33.49725110809247 + "points": { + "c1": 29.11244946060367, + "c2": -18.93773628625147, + "c3": 11.130572584660072, + "c4": -16.121330011685686, + "c5": -34.84532287479949, + "c6": -36.02363399624707, + "c7": -36.34811432399651 }, - "vertexSeeds": { - "c1": 10.726943710637991, - "c2": 11.882455627641454, - "c3": 11.543795327252074, - "c4": 11.419857303625314, - "c5": 10.724342110072437, - "c6": 10.904680342825646, - "c7": 11.008719585941874 + "offsets": { + "c1": 19.967637540453072, + "c2": 17.115117891816922, + "c3": 14.262598243180776, + "c4": 11.410078594544625, + "c5": 8.557558945908477, + "c6": 5.705039297272328, + "c7": 2.8525196486361786 }, "rgb": [58, 15, 49] }, @@ -430872,23 +430872,23 @@ "year": 1822, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": 13.741419494506466, - "c2": -5.861168243320035, - "c3": -8.320040284297793, - "c4": 13.160046150210647, - "c5": -20.44633262491336, - "c6": 6.8109360484538755, - "c7": -15.234656565907997 + "points": { + "c1": 0.27813643066476956, + "c2": -1.2369664231212418, + "c3": 0.5674865534068303, + "c4": 18.400596371724596, + "c5": -17.7236400727152, + "c6": 8.04422070676906, + "c7": -0.5502592556108858 }, - "vertexSeeds": { - "c1": 5.0261875196303665, - "c2": 5.184114452729899, - "c3": 5.067269651599272, - "c4": 4.984057071995292, - "c5": 5.187577533531269, - "c6": 5.100423803288437, - "c7": 5.017985083653446 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779466, + "c3": 6.195099398982882, + "c4": 4.956079519186297, + "c5": 3.7170596393897126, + "c6": 2.478039759593169, + "c7": 1.2390198797965846 }, "rgb": [238, 201, 159] }, @@ -430899,23 +430899,23 @@ "year": 1822, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 14.327414505567369, - "c2": 17.856493613885, - "c3": -13.895062548986022, - "c4": -0.9968592069325766, - "c5": -1.51781071448152, - "c6": -21.402961904935772, - "c7": -16.702288466058352 + "points": { + "c1": 24.72329628438481, + "c2": 4.364436339413615, + "c3": -16.00112586592266, + "c4": 32.06488377831826, + "c5": -8.921067294298048, + "c6": 33.53480587381554, + "c7": -0.7566673972681741 }, - "vertexSeeds": { - "c1": 5.803352644268896, - "c2": 5.780864660612655, - "c3": 5.783823837082998, - "c4": 5.788186524836524, - "c5": 5.785758847127091, - "c6": 5.772130449659156, - "c7": 5.787009149036751 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066613, + "c3": 6.934812760055557, + "c4": 5.5478502080445, + "c5": 4.160887656033169, + "c6": 2.7739251040221125, + "c7": 1.3869625520110562 }, "rgb": [238, 201, 159] }, @@ -430926,23 +430926,23 @@ "year": 1822, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 10.95125187684851, - "c2": 11.043940773679118, - "c3": 15.064336412064982, - "c4": -19.45645113756929, - "c5": 9.219991658808329, - "c6": 18.636875525725237, - "c7": 17.646310426267362 + "points": { + "c1": 23.478917069636147, + "c2": -22.22295447075049, + "c3": 12.312732081908706, + "c4": 1.4483114077955364, + "c5": 5.597842987918465, + "c6": -18.759956242072903, + "c7": -22.30702982767916 }, - "vertexSeeds": { - "c1": 5.116575694932431, - "c2": 4.854047315406682, - "c3": 4.9729059159336435, - "c4": 5.191048270466555, - "c5": 4.990345340099652, - "c6": 4.892457994686073, - "c7": 5.189029092456466 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [77, 76, 132] }, @@ -430953,23 +430953,23 @@ "year": 1822, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 20.38467725994117, - "c2": 4.752585211144837, - "c3": 15.481590730160917, - "c4": 8.067071869620179, - "c5": 22.484515270515494, - "c6": 1.0182633418474012, - "c7": -16.809481425614894 + "points": { + "c1": 16.06647072953266, + "c2": 16.77239552108449, + "c3": 25.593749239819637, + "c4": -11.083107701615138, + "c5": -20.95837499538986, + "c6": -12.097407093048185, + "c7": 9.953149540490045 }, - "vertexSeeds": { - "c1": 3.3724907807038798, - "c2": 3.1998387566860425, - "c3": 3.138378612965331, - "c4": 3.188421769869106, - "c5": 3.1345680460441097, - "c6": 3.4719146228481055, - "c7": 3.3524306819228817 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [222, 0, 59] }, @@ -430980,23 +430980,23 @@ "year": 1822, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -13.41061496916943, - "c2": 11.938552611693918, - "c3": 9.323319902800673, - "c4": -21.43385168524486, - "c5": 11.7699274121339, - "c6": -8.465223744315345, - "c7": 12.641876817732186 + "points": { + "c1": 33.33327417978718, + "c2": -30.654202979054578, + "c3": -3.896497609015462, + "c4": 18.937865017646764, + "c5": -10.303543281630983, + "c6": -27.750293434638415, + "c7": 5.427890234882504 }, - "vertexSeeds": { - "c1": 10.167321827584503, - "c2": 10.17241678281575, - "c3": 10.174615429661632, - "c4": 10.173480376465454, - "c5": 10.171088658034597, - "c6": 10.176820540699486, - "c7": 10.178413567296962 + "offsets": { + "c1": 16.990291262135923, + "c2": 14.563106796117058, + "c3": 12.13592233009626, + "c4": 9.708737864077394, + "c5": 7.281553398058529, + "c6": 4.854368932039663, + "c7": 2.4271844660188657 }, "rgb": [238, 201, 159] }, @@ -431007,23 +431007,23 @@ "year": 1822, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 6.9067792995505215, - "c2": -22.455924927184842, - "c3": -26.972992269662008, - "c4": 15.969462618719383, - "c5": 30.748151822169632, - "c6": 25.239965391456543, - "c7": 3.343091786032055 + "points": { + "c1": -17.649240518100157, + "c2": 3.7513135101716273, + "c3": -0.12814516079767913, + "c4": -10.350896183088356, + "c5": 0.10142798857714297, + "c6": 6.220534978758785, + "c7": 30.30077365083963 }, - "vertexSeeds": { - "c1": 6.836710087250104, - "c2": 7.0225015678032365, - "c3": 6.9855750291527485, - "c4": 6.951971385658509, - "c5": 7.010418279798481, - "c6": 6.843170069420996, - "c7": 6.916652921335523 + "offsets": { + "c1": 11.812297734627832, + "c2": 10.12482662968102, + "c3": 8.437355524734159, + "c4": 6.749884419787348, + "c5": 5.062413314840485, + "c6": 3.374942209893674, + "c7": 1.687471104946811 }, "rgb": [77, 76, 132] }, @@ -431034,23 +431034,23 @@ "year": 1822, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 15.112203774519507, - "c2": 4.063073324225822, - "c3": 15.906861712953244, - "c4": -18.80397126869714, - "c5": -19.466334846154, - "c6": -17.470491275958665, - "c7": -12.0891821579741 + "points": { + "c1": -8.853370151395016, + "c2": -23.140724444081336, + "c3": -11.96085846161874, + "c4": 11.365954210264455, + "c5": 18.66588594174476, + "c6": 14.79862928381931, + "c7": 17.18598126765776 }, - "vertexSeeds": { - "c1": 4.690882377394179, - "c2": 4.592238906214293, - "c3": 4.978532570612862, - "c4": 4.776073563982302, - "c5": 4.8098698288400685, - "c6": 4.911277702284199, - "c7": 4.51736988217968 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377256, + "c3": 5.963938973647708, + "c4": 4.771151178918168, + "c5": 3.578363384188628, + "c6": 2.38557558945908, + "c7": 1.19278779472954 }, "rgb": [86, 146, 138] }, @@ -431061,23 +431061,23 @@ "year": 1822, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 3.6451164040380206, - "c2": 20.97545816779305, - "c3": 2.7067986237716326, - "c4": -13.913455440221352, - "c5": -31.551396217465353, - "c6": -9.52027168905624, - "c7": -7.318027440818923 + "points": { + "c1": -23.40416289942909, + "c2": 26.493579334352646, + "c3": 34.313885587465236, + "c4": -6.594516001010781, + "c5": 29.54365508066175, + "c6": -7.530443589385317, + "c7": 5.447722455299228 }, - "vertexSeeds": { - "c1": 2.5078604495403822, - "c2": 2.543946454206868, - "c3": 2.568391696279206, - "c4": 2.76107610582216, - "c5": 2.4582682132526514, - "c6": 2.481191205177475, - "c7": 2.524263245981583 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919583, + "c3": 3.3287101248266286, + "c4": 2.6629680998613057, + "c5": 1.9972260748959758, + "c6": 1.3314840499306528, + "c7": 0.6657420249653264 }, "rgb": [86, 146, 138] }, @@ -431088,23 +431088,23 @@ "year": 1822, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 25.066003117136553, - "c2": -16.912037360020445, - "c3": -10.86029822235032, - "c4": -15.633356297678276, - "c5": 14.930248580910352, - "c6": -9.46240978843031, - "c7": 20.615742475711606 + "points": { + "c1": -19.806214498229266, + "c2": -30.202107423360285, + "c3": -7.748773413458888, + "c4": 6.259649950460272, + "c5": -27.887983096544225, + "c6": 27.23837424439418, + "c7": 20.742403924115507 }, - "vertexSeeds": { - "c1": 4.950825328814219, - "c2": 4.955844005679935, - "c3": 4.610219959704775, - "c4": 4.692421489442677, - "c5": 4.645466039724739, - "c6": 4.79910467327515, - "c7": 4.6303645081524145 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457692, + "c3": 6.0101710587147466, + "c4": 4.808136846971801, + "c5": 3.606102635228846, + "c6": 2.4040684234859007, + "c7": 1.2020342117429554 }, "rgb": [238, 201, 159] }, @@ -431115,23 +431115,23 @@ "year": 1822, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -3.7510206136438065, - "c2": -11.714498379717622, - "c3": 16.243641323175755, - "c4": 11.614351687151878, - "c5": -15.214547357925305, - "c6": -5.412293447751445, - "c7": -0.4583050232367185 + "points": { + "c1": -1.2509829699853015, + "c2": -22.799932803514153, + "c3": -20.83718936679317, + "c4": -11.384181345969546, + "c5": -8.199313487831976, + "c6": -15.912863244926926, + "c7": 7.659271836528678 }, - "vertexSeeds": { - "c1": 5.680730160646022, - "c2": 5.6825072526260545, - "c3": 5.720944940486104, - "c4": 5.675970168703234, - "c5": 5.715512670254787, - "c6": 5.6803745049081495, - "c7": 5.670414363133641 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905726, + "c3": 6.842348589921347, + "c4": 5.473878871937105, + "c5": 4.105409153952863, + "c6": 2.7369394359686203, + "c7": 1.3684697179842422 }, "rgb": [238, 201, 159] }, @@ -431142,23 +431142,23 @@ "year": 1822, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 0.2699708356155881, - "c2": 10.199220627529321, - "c3": -31.911203264098305, - "c4": 14.339661513586115, - "c5": -0.7748271675460217, - "c6": -24.14321016783387, - "c7": 24.188116574607648 + "points": { + "c1": 26.950567897350815, + "c2": -5.282598042780503, + "c3": -1.282700860355014, + "c4": 31.798829425700603, + "c5": 24.38715777961297, + "c6": -6.523985098967842, + "c7": -3.3409750827655813 }, - "vertexSeeds": { - "c1": 8.33053894592649, - "c2": 8.27516200365381, - "c3": 8.256233716993737, - "c4": 8.33817572956612, - "c5": 8.271734633235985, - "c6": 8.260497732983078, - "c7": 8.269999793349418 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335702, + "c3": 9.963014331946352, + "c4": 7.970411465557135, + "c5": 5.977808599167785, + "c6": 3.9852057327785677, + "c7": 1.9926028663893496 }, "rgb": [238, 201, 159] }, @@ -431169,23 +431169,23 @@ "year": 1822, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 31.209574051264468, - "c2": -12.99251423066686, - "c3": 30.19563151536542, - "c4": -24.66215230341524, - "c5": 9.929305214840767, - "c6": 12.468917422509143, - "c7": -0.016344900053951505 + "points": { + "c1": 0.2261689377154923, + "c2": -27.730075761564805, + "c3": -10.097144295071956, + "c4": 16.30253480958931, + "c5": -12.029892552231175, + "c6": 30.87831593484043, + "c7": -15.79000968158843 }, - "vertexSeeds": { - "c1": 3.3620684771727367, - "c2": 3.434163601361773, - "c3": 3.3543783661907574, - "c4": 3.3774555512529703, - "c5": 3.4309850199888117, - "c6": 3.4111045633520742, - "c7": 3.396510356266759 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159491, + "c3": 4.114655570966265, + "c4": 3.2917244567730055, + "c5": 2.4687933425797457, + "c6": 1.6458622283865192, + "c7": 0.8229311141932596 }, "rgb": [222, 0, 59] }, @@ -431196,23 +431196,23 @@ "year": 1822, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -20.983043838291024, - "c2": 3.2192835797535757, - "c3": -6.639792190199007, - "c4": -2.1161719286788916, - "c5": -11.649223617496464, - "c6": -15.849379014943768, - "c7": 5.543793401870094 + "points": { + "c1": 9.634922296681633, + "c2": 13.017808569897841, + "c3": 8.003413064218162, + "c4": 28.12891832811366, + "c5": 6.552471599409731, + "c6": -15.242080491547757, + "c7": -5.398741833797864 }, - "vertexSeeds": { - "c1": 11.22319751645242, - "c2": 11.419833134641365, - "c3": 11.0215959802559, - "c4": 10.479165995603381, - "c5": 11.370509601752426, - "c6": 11.181521325647335, - "c7": 10.79952844612966 + "offsets": { + "c1": 19.25566343042071, + "c2": 16.504854368932047, + "c3": 13.75404530744335, + "c4": 11.003236245954687, + "c5": 8.252427184466024, + "c6": 5.501618122977326, + "c7": 2.750809061488663 }, "rgb": [58, 15, 49] }, @@ -431223,23 +431223,23 @@ "year": 1823, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": 23.09463124244732, - "c2": 27.130476051991522, - "c3": 20.73630305933716, - "c4": -4.551130176817843, - "c5": -24.81046245798535, - "c6": -23.25359232829156, - "c7": -1.830783252103025 + "points": { + "c1": -37.98292664301623, + "c2": -42.80865810397914, + "c3": -23.316989113157963, + "c4": 27.829994477712034, + "c5": -42.05256774720292, + "c6": 6.647183463858013, + "c7": -41.08322808513948 }, - "vertexSeeds": { - "c1": 4.516773057687593, - "c2": 4.720720910632715, - "c3": 4.509386471649417, - "c4": 4.321882187126724, - "c5": 4.55174225111974, - "c6": 4.402034086862611, - "c7": 4.446183054434852 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.76837725381415, + "c3": 5.640314378178452, + "c4": 4.512251502542764, + "c5": 3.384188626907075, + "c6": 2.256125751271387, + "c7": 1.1280628756356885 }, "rgb": [238, 201, 159] }, @@ -431250,23 +431250,23 @@ "year": 1822, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -19.807792932080154, - "c2": -7.970443907034975, - "c3": -1.9345061575413425, - "c4": 11.003065442978041, - "c5": 9.294962612383515, - "c6": 17.52988545934209, - "c7": 10.890102962047152 + "points": { + "c1": -3.442976916155075, + "c2": 11.190393295344201, + "c3": -17.539046215399342, + "c4": -17.51861257483722, + "c5": -11.119415936348236, + "c6": -8.73519314633301, + "c7": -21.021182779777817 }, - "vertexSeeds": { - "c1": 4.674683129405688, - "c2": 4.68821543566737, - "c3": 4.633604284194424, - "c4": 4.723819291073617, - "c5": 4.740432787179129, - "c6": 4.675990460839016, - "c7": 4.711523367771022 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.79611650485436, + "c3": 5.663430420711976, + "c4": 4.530744336569573, + "c5": 3.3980582524271905, + "c6": 2.2653721682847867, + "c7": 1.1326860841423831 }, "rgb": [238, 201, 159] }, @@ -431277,23 +431277,23 @@ "year": 1822, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": 13.252616081235427, - "c2": 3.9689526413134324, - "c3": -1.0439959680176258, - "c4": -4.030027314178351, - "c5": 1.1831424358654168, - "c6": 3.342553275784436, - "c7": 7.468158889765203 + "points": { + "c1": -6.599148840694021, + "c2": -7.069357992399926, + "c3": 7.704282914513499, + "c4": 0.9065902502346397, + "c5": -0.07452294430217421, + "c6": -5.2080411824471184, + "c7": 19.664405392133506 }, - "vertexSeeds": { - "c1": 5.050074749910232, - "c2": 4.924338102539978, - "c3": 4.944273581994703, - "c4": 5.246312330703648, - "c5": 5.107860654308406, - "c6": 5.040873958515703, - "c7": 5.193655670763381 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [238, 201, 159] }, @@ -431304,23 +431304,23 @@ "year": 1823, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -7.949442408327499, - "c2": 27.112607885789195, - "c3": 9.451102487394593, - "c4": 16.660766325828554, - "c5": -7.083115799231397, - "c6": -15.823278039283238, - "c7": 10.5047579288998 + "points": { + "c1": 4.984248022430272, + "c2": 26.258909917782205, + "c3": -12.818404456475847, + "c4": 32.84526965265643, + "c5": -12.299838743235842, + "c6": 24.7842580871557, + "c7": 20.178254025417438 }, - "vertexSeeds": { - "c1": 2.4436288934476718, - "c2": 2.6749025867215677, - "c3": 2.740713456137395, - "c4": 2.5222722324163893, - "c5": 2.3258493271233207, - "c6": 2.4408108265755804, - "c7": 2.460568905969335 + "offsets": { + "c1": 4.919093851132686, + "c2": 4.21636615811373, + "c3": 3.513638465094775, + "c4": 2.8109107720758235, + "c5": 2.108183079056867, + "c6": 1.4054553860379118, + "c7": 0.7027276930189559 }, "rgb": [222, 0, 59] }, @@ -431331,23 +431331,23 @@ "year": 1822, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 25.19365646936326, - "c2": -19.866279699503778, - "c3": 28.133601982198766, - "c4": 11.197288154980232, - "c5": 2.1708219648145857, - "c6": 3.9520890593078413, - "c7": 14.968142456262608 + "points": { + "c1": -21.0795433730016, + "c2": 18.487423906937426, + "c3": 21.955124727573978, + "c4": -8.43975594098568, + "c5": 4.05403524253293, + "c6": 12.987470112935103, + "c7": 16.2406695847268 }, - "vertexSeeds": { - "c1": 9.623842335219974, - "c2": 9.670430272002283, - "c3": 9.654179879752212, - "c4": 9.65342776703599, - "c5": 9.667979515010293, - "c6": 9.672229549154139, - "c7": 9.616720372204922 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.8418862690708, + "c3": 11.534905224225515, + "c4": 9.227924179380457, + "c5": 6.9209431345354, + "c6": 4.613962089690343, + "c7": 2.306981044845057 }, "rgb": [222, 0, 59] }, @@ -431358,23 +431358,23 @@ "year": 1822, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -17.175825872432817, - "c2": 13.956104807355768, - "c3": -19.801979200239963, - "c4": -1.1107126072679705, - "c5": -1.7234172394263432, - "c6": 13.082010692417132, - "c7": 22.72916793759182 + "points": { + "c1": 6.987337492413818, + "c2": -22.064762549509872, + "c3": 14.78211399152853, + "c4": 3.72689019781496, + "c5": -8.693442178121288, + "c6": 20.29612491692915, + "c7": -19.19087343722984 }, - "vertexSeeds": { - "c1": 3.457179638473644, - "c2": 3.409073981508093, - "c3": 3.7415288805324343, - "c4": 3.508089618811609, - "c5": 3.586158758489699, - "c6": 3.7438466006108193, - "c7": 3.7136241946411044 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.603328710124827, + "c3": 4.669440591770689, + "c4": 3.735552473416551, + "c5": 2.8016643550624134, + "c6": 1.8677762367082755, + "c7": 0.9338881183541378 }, "rgb": [238, 201, 159] }, @@ -431385,23 +431385,23 @@ "year": 1822, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -9.249772450225183, - "c2": -15.909699634536981, - "c3": -3.2451463548420456, - "c4": -11.58655057434861, - "c5": 19.02208526516357, - "c6": -16.621699904247386, - "c7": 10.11499751331375 + "points": { + "c1": -31.134048589889705, + "c2": -26.24248723954895, + "c3": -10.491791888776653, + "c4": 12.60950990467585, + "c5": -29.215285222447093, + "c6": 7.822227989154694, + "c7": 14.536154756291662 }, - "vertexSeeds": { - "c1": 4.579795574017832, - "c2": 4.775954139780254, - "c3": 4.51448311469149, - "c4": 4.593394502230027, - "c5": 4.372323597631843, - "c6": 4.497889483990106, - "c7": 4.552436888514232 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015261, + "c3": 5.755894590846044, + "c4": 4.6047156726768375, + "c5": 3.4535367545076303, + "c6": 2.3023578363384134, + "c7": 1.1511789181692067 }, "rgb": [77, 76, 132] }, @@ -431412,23 +431412,23 @@ "year": 1822, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -13.920543182903973, - "c2": 7.577316861344023, - "c3": -14.073783820303685, - "c4": -19.040305432074753, - "c5": 16.471572093619642, - "c6": 15.407224680584456, - "c7": -25.690649824470174 + "points": { + "c1": -20.138960962597885, + "c2": -12.339607951816575, + "c3": 3.257994387185626, + "c4": 7.183496821572959, + "c5": 14.875627758936666, + "c6": -6.330237302850371, + "c7": 28.644507748445214 }, - "vertexSeeds": { - "c1": 3.16297492787236, - "c2": 3.1009444615527597, - "c3": 2.9748140939008207, - "c4": 2.919132922847291, - "c5": 2.9435205054101754, - "c6": 3.001939188621681, - "c7": 2.8868469655883815 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [86, 146, 138] }, @@ -431439,23 +431439,23 @@ "year": 1822, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -7.56161738569709, - "c2": -15.949294945702524, - "c3": 3.3848707534271654, - "c4": -20.375771987443873, - "c5": 22.63126720910573, - "c6": 11.440160827771237, - "c7": -24.37774977487215 + "points": { + "c1": -13.963011686075209, + "c2": -21.233126682857755, + "c3": -16.3161121589935, + "c4": 24.73502682780874, + "c5": -12.301604480058542, + "c6": -16.986371621036113, + "c7": 1.1037234469968773 }, - "vertexSeeds": { - "c1": 3.787162752859441, - "c2": 3.835979903669393, - "c3": 3.6252273937301425, - "c4": 3.896175213325439, - "c5": 3.7708402382891757, - "c6": 3.7114668075634882, - "c7": 4.052622095576371 + "offsets": { + "c1": 6.990291262135923, + "c2": 5.991678224687937, + "c3": 4.993065187239944, + "c4": 3.994452149791958, + "c5": 2.9958391123439654, + "c6": 1.997226074895979, + "c7": 0.9986130374479926 }, "rgb": [77, 76, 132] }, @@ -431466,23 +431466,23 @@ "year": 1822, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 8.128762874285883, - "c2": -26.016739260807295, - "c3": 20.374389536940036, - "c4": 17.117112454849227, - "c5": -28.019522495907836, - "c6": -11.370251317256955, - "c7": -1.300171233501036 + "points": { + "c1": 11.173106349116985, + "c2": -8.742535460886288, + "c3": -22.064841866278627, + "c4": -23.119156827153915, + "c5": -6.864230663463811, + "c6": 13.375310559199626, + "c7": 9.979520683366324 }, - "vertexSeeds": { - "c1": 9.31288312131395, - "c2": 9.475475651282999, - "c3": 9.28110284857574, - "c4": 9.925842033728866, - "c5": 9.142758794540482, - "c6": 9.986648437066442, - "c7": 9.976531620109231 + "offsets": { + "c1": 16.796116504854368, + "c2": 14.396671289875172, + "c3": 11.997226074895977, + "c4": 9.597780859916782, + "c5": 7.198335644937586, + "c6": 4.798890429958391, + "c7": 2.3994452149791954 }, "rgb": [77, 76, 132] }, @@ -431493,23 +431493,23 @@ "year": 1822, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 7.968504245306274, - "c2": 18.548109014346142, - "c3": 8.203289798657305, - "c4": 14.455757141341106, - "c5": 1.0837797419614397, - "c6": 5.753167043270157, - "c7": 20.923510133841962 + "points": { + "c1": -8.032110935193451, + "c2": -12.755133194330991, + "c3": 15.770652360635662, + "c4": 11.264679923962401, + "c5": -24.130699755513483, + "c6": 12.299223354808081, + "c7": -20.31283872884316 }, - "vertexSeeds": { - "c1": 8.46640999617087, - "c2": 8.48683710613341, - "c3": 8.42843397079894, - "c4": 8.41565374374262, - "c5": 8.422503877273106, - "c6": 8.466717535823268, - "c7": 8.461092832787873 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617257, + "c3": 10.124826629680912, + "c4": 8.09986130374477, + "c5": 6.0748959778086284, + "c6": 4.049930651872486, + "c7": 2.0249653259361424 }, "rgb": [222, 0, 59] }, @@ -431520,23 +431520,23 @@ "year": 1823, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": 10.965588895198891, - "c2": -17.83137865182536, - "c3": -18.353385493751322, - "c4": 9.908073722640758, - "c5": 16.311390741550106, - "c6": 12.996414621426837, - "c7": 5.878283895234887 + "points": { + "c1": -9.014296574319225, + "c2": 36.03991103449616, + "c3": -38.58784531037187, + "c4": -33.27504764533166, + "c5": -33.399148591900236, + "c6": -17.341861791589636, + "c7": -33.9443628699089 }, - "vertexSeeds": { - "c1": 10.481230036000888, - "c2": 10.452766702843705, - "c3": 10.39384311202037, - "c4": 10.51042180975385, - "c5": 10.44909991165631, - "c6": 10.376579602063984, - "c7": 10.47116212186076 + "offsets": { + "c1": 17.540453074433657, + "c2": 15.03467406380025, + "c3": 12.528895053166842, + "c4": 10.023116042533433, + "c5": 7.517337031900224, + "c6": 5.011558021266817, + "c7": 2.5057790106334084 }, "rgb": [58, 15, 49] }, @@ -431547,23 +431547,23 @@ "year": 1822, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 9.86244821915512, - "c2": -29.46019798382209, - "c3": 17.98595843507058, - "c4": 12.032193326678026, - "c5": 18.33828876293579, - "c6": 0.2035476268937444, - "c7": 29.322859031002878 + "points": { + "c1": -23.52800923656592, + "c2": -7.045767498646722, + "c3": -15.25134293488341, + "c4": -23.63064892233722, + "c5": -3.0138969597443044, + "c6": -19.817458674852492, + "c7": 24.48462350999005 }, - "vertexSeeds": { - "c1": 9.046461062195432, - "c2": 9.018808651602841, - "c3": 8.970955824022711, - "c4": 8.994007214598888, - "c5": 9.05187166411177, - "c6": 8.93143714247506, - "c7": 8.958962510619907 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [77, 76, 132] }, @@ -431574,23 +431574,23 @@ "year": 1822, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -22.315311010627962, - "c2": 8.113961939394116, - "c3": -1.2782280248336377, - "c4": 10.902869861588051, - "c5": 15.824116546739084, - "c6": -27.41181494181166, - "c7": 13.830540708492201 + "points": { + "c1": 17.186714217675664, + "c2": 14.293788883004673, + "c3": -9.085670711022619, + "c4": -26.748683790364996, + "c5": 12.561066953764126, + "c6": -21.500419381377537, + "c7": -30.655696882622227 }, - "vertexSeeds": { - "c1": 6.199444343206399, - "c2": 5.840275906071336, - "c3": 6.075303022420584, - "c4": 6.22610230276393, - "c5": 6.313415653881237, - "c6": 6.297116657142913, - "c7": 6.110233655776698 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152569, + "c3": 7.558945908460477, + "c4": 6.047156726768367, + "c5": 4.535367545076275, + "c6": 3.0235783633841833, + "c7": 1.5117891816920916 }, "rgb": [77, 76, 132] }, @@ -431601,23 +431601,23 @@ "year": 1822, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -8.51388387635814, - "c2": 25.801070533261218, - "c3": 13.712458238529713, - "c4": 7.181939956844616, - "c5": -13.236303997849092, - "c6": -2.0297520472705415, - "c7": 19.967784364382062 + "points": { + "c1": -22.407209876350947, + "c2": -16.356140115068197, + "c3": 25.27293596845852, + "c4": 15.824325750393605, + "c5": -11.383452485870336, + "c6": 11.777560335508404, + "c7": 14.532923257542834 }, - "vertexSeeds": { - "c1": 8.957860978204236, - "c2": 9.508995270340096, - "c3": 9.278443275029453, - "c4": 9.25871302958104, - "c5": 8.815725382128683, - "c6": 8.914394192493216, - "c7": 9.289746103517599 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.786407766990285, + "c3": 11.488673139158564, + "c4": 9.190938511326864, + "c5": 6.893203883495143, + "c6": 4.5954692556634225, + "c7": 2.2977346278317006 }, "rgb": [238, 201, 159] }, @@ -431628,23 +431628,23 @@ "year": 1823, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 17.62825735940757, - "c2": -10.961804051050319, - "c3": -19.737888835215088, - "c4": -29.882167212946054, - "c5": 3.8567087557515976, - "c6": -27.318629921200646, - "c7": -19.05816487258807 + "points": { + "c1": -27.051246408864657, + "c2": 9.269118711046715, + "c3": 25.977878925207428, + "c4": -14.76315486483913, + "c5": 8.58333113751447, + "c6": 12.503767762767083, + "c7": 10.556480396663005 }, - "vertexSeeds": { - "c1": 7.8646222627809825, - "c2": 7.787366131216213, - "c3": 7.8696881439268935, - "c4": 7.491526368195179, - "c5": 8.00527902513053, - "c6": 7.660132121191644, - "c7": 7.722069870516782 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.73370319001387, + "c3": 9.77808599167822, + "c4": 7.822468793342592, + "c5": 5.866851595006944, + "c6": 3.911234396671296, + "c7": 1.955617198335648 }, "rgb": [238, 201, 159] }, @@ -431655,23 +431655,23 @@ "year": 1822, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 18.984468747090332, - "c2": -14.75019654598171, - "c3": -16.322543849399487, - "c4": 0.5773121290807168, - "c5": 18.506261834838156, - "c6": 20.754447979190275, - "c7": -21.475465253953338 + "points": { + "c1": -20.206993592146453, + "c2": -10.014636633632723, + "c3": 3.945654346608876, + "c4": 9.461661306687468, + "c5": 26.13168783788742, + "c6": -21.030536572468296, + "c7": -0.8404933430991477 }, - "vertexSeeds": { - "c1": 11.127277435526507, - "c2": 11.105431642140653, - "c3": 10.973388214431072, - "c4": 10.911246991748195, - "c5": 11.131026326395766, - "c6": 11.064998574433156, - "c7": 10.94893575049328 + "offsets": { + "c1": 18.576051779935277, + "c2": 15.922330097087334, + "c3": 13.268608414239553, + "c4": 10.61488673139161, + "c5": 7.961165048543667, + "c6": 5.307443365695724, + "c7": 2.653721682847943 }, "rgb": [238, 201, 159] }, @@ -431682,23 +431682,23 @@ "year": 1822, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -22.687650292403607, - "c2": -8.377317360122426, - "c3": 3.406344930225167, - "c4": 15.11476174814802, - "c5": 14.168580007027956, - "c6": 13.169767089116576, - "c7": 15.312896530630908 + "points": { + "c1": -22.426728352322826, + "c2": -28.880296666228435, + "c3": -2.6922485618184027, + "c4": 13.929436950222815, + "c5": 17.760571935547105, + "c6": -0.5854269730052053, + "c7": -11.817106769794457 }, - "vertexSeeds": { - "c1": 6.531005576787148, - "c2": 6.508891981765712, - "c3": 6.4973664644919955, - "c4": 6.519152583548399, - "c5": 6.538930723877921, - "c6": 6.538597702677382, - "c7": 6.49767586643388 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.37586685159495, + "c3": 7.813222376329262, + "c4": 6.250577901063369, + "c5": 4.687933425797475, + "c6": 3.1252889505315804, + "c7": 1.5626444752658937 }, "rgb": [86, 146, 138] }, @@ -431709,23 +431709,23 @@ "year": 1822, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -12.772986555702659, - "c2": 10.239430479641875, - "c3": 24.08804734779269, - "c4": -21.58677646654727, - "c5": 7.29863467203927, - "c6": 24.141772339319594, - "c7": 20.316793502023494 + "points": { + "c1": -7.611594866935516, + "c2": -4.415124813270637, + "c3": -28.022145582401027, + "c4": -18.28972837393107, + "c5": -21.02906262611002, + "c6": -22.69065521978922, + "c7": 16.384871960984995 }, - "vertexSeeds": { - "c1": 5.791057655440145, - "c2": 6.3855568603995545, - "c3": 6.207457712159257, - "c4": 5.69139042471913, - "c5": 6.042598420622631, - "c6": 6.1742552295422355, - "c7": 6.3885741426594 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951457, + "c3": 7.766990291262134, + "c4": 6.213592233009713, + "c5": 4.660194174757292, + "c6": 3.1067961165048565, + "c7": 1.553398058252435 }, "rgb": [238, 201, 159] }, @@ -431736,23 +431736,23 @@ "year": 1823, "resistanceReported": false, "duration": 27216000, - "curveSeeds": { - "c1": -16.995001268891, - "c2": 25.52440158028149, - "c3": -26.358255582153674, - "c4": 34.84180581169697, - "c5": -7.172243941616728, - "c6": -23.734275984679616, - "c7": -37.51759694236351 + "points": { + "c1": -0.24518894709145655, + "c2": -41.2639679040915, + "c3": -35.112039512771844, + "c4": 31.018603398124526, + "c5": -31.920169046070733, + "c6": -24.080461996092218, + "c7": -37.41582460823949 }, - "vertexSeeds": { - "c1": 4.335868041930327, - "c2": 4.170767045214818, - "c3": 4.283738835540734, - "c4": 4.36384639830895, - "c5": 4.0768540238737945, - "c6": 4.1657351417183435, - "c7": 4.173595454373838 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130372, + "c3": 5.247341655108639, + "c4": 4.197873324086918, + "c5": 3.148404993065186, + "c6": 2.0989366620434535, + "c7": 1.0494683310217212 }, "rgb": [222, 0, 59] }, @@ -431763,23 +431763,23 @@ "year": 1823, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": 5.200280624057662, - "c2": 25.76375597199045, - "c3": -1.7632593122061024, - "c4": 32.18188816380501, - "c5": -13.164333552559544, - "c6": -14.443411649935275, - "c7": -8.342376340598449 + "points": { + "c1": -19.883635437995103, + "c2": -35.58742682312019, + "c3": -8.331119537898026, + "c4": 2.4633272156255472, + "c5": 43.87009344052656, + "c6": -42.53032775147133, + "c7": -29.387461165378166 }, - "vertexSeeds": { - "c1": 4.351488208978853, - "c2": 4.4242361832688575, - "c3": 4.145762527475287, - "c4": 4.179069760812188, - "c5": 4.156880025740323, - "c6": 4.389478012385846, - "c7": 4.128189168032788 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371706, + "c3": 5.386037910309752, + "c4": 4.308830328247811, + "c5": 3.2316227461858578, + "c6": 2.1544151641239053, + "c7": 1.0772075820619527 }, "rgb": [86, 146, 138] }, @@ -431790,23 +431790,23 @@ "year": 1822, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 11.348727797771062, - "c2": -12.27309933156953, - "c3": 17.400461434999393, - "c4": -6.324186852978126, - "c5": 29.195397737806147, - "c6": -28.683321597784296, - "c7": -6.127089654753274 + "points": { + "c1": -18.618390239680018, + "c2": -19.383293519952336, + "c3": -26.04054915705864, + "c4": -3.4234495958127837, + "c5": 13.769955374038155, + "c6": -27.163115825027905, + "c7": -6.496249725441736 }, - "vertexSeeds": { - "c1": 2.3510362694300517, - "c2": 2.3510362694300517, - "c3": 2.3510362694300517, - "c4": 2.3510362694300517, - "c5": 2.3510362694300517, - "c6": 2.3510362694300517, - "c7": 2.3510362694300517 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -431817,23 +431817,23 @@ "year": 1823, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 19.85421765161473, - "c2": 6.9237720146986454, - "c3": 2.7099950157594996, - "c4": -23.670557364039343, - "c5": -19.693774074374154, - "c6": -8.0350876613409, - "c7": -4.600931985014228 + "points": { + "c1": -24.66099791456906, + "c2": 16.80463155511943, + "c3": -33.288016891669024, + "c4": -12.013878515788061, + "c5": -5.959194207203705, + "c6": 26.13684831109868, + "c7": -15.365629614771464 }, - "vertexSeeds": { - "c1": 5.478313496116151, - "c2": 5.586664122534115, - "c3": 5.535588028543064, - "c4": 5.577099393643378, - "c5": 5.585476419365483, - "c6": 5.5251720901208, - "c7": 5.503199543096315 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704563, + "c3": 6.726768377253838, + "c4": 5.38141470180306, + "c5": 4.036061026352281, + "c6": 2.6907073509015027, + "c7": 1.3453536754507782 }, "rgb": [58, 15, 49] }, @@ -431844,23 +431844,23 @@ "year": 1823, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -11.227271092722159, - "c2": -22.086148200243493, - "c3": 10.875655845508398, - "c4": 24.940292068768905, - "c5": 36.74926121918293, - "c6": 34.24318967490082, - "c7": -0.9063918505971387 + "points": { + "c1": 37.682457345900886, + "c2": 34.364855309998305, + "c3": -1.2783148993650144, + "c4": 23.831370854429828, + "c5": 5.856615122921738, + "c6": 34.34593970837214, + "c7": 11.439131907003727 }, - "vertexSeeds": { - "c1": 6.168123284213889, - "c2": 5.204089801658958, - "c3": 5.401847516856688, - "c4": 5.847999563663268, - "c5": 5.616473329571941, - "c6": 5.3062366700702315, - "c7": 4.9706326029687835 + "offsets": { + "c1": 10.938511326860842, + "c2": 9.375866851595008, + "c3": 7.813222376329175, + "c4": 6.250577901063342, + "c5": 4.687933425797501, + "c6": 3.1252889505316674, + "c7": 1.5626444752658337 }, "rgb": [222, 0, 59] }, @@ -431871,23 +431871,23 @@ "year": 1822, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -2.907412898820347, - "c2": -9.832379408459595, - "c3": -28.930729453085245, - "c4": 6.397382071779365, - "c5": -17.117208264457602, - "c6": 5.277883409926847, - "c7": -14.561807827828169 + "points": { + "c1": -8.462521236612854, + "c2": -27.935801571338054, + "c3": -5.795579035422101, + "c4": 28.707383140334876, + "c5": -31.299601028959586, + "c6": 7.949539428484499, + "c7": -0.9733048062603942 }, - "vertexSeeds": { - "c1": 4.261544688101319, - "c2": 4.342742876481523, - "c3": 4.613377625772114, - "c4": 4.346156853592442, - "c5": 4.5873983899527815, - "c6": 4.332272554137483, - "c7": 4.592290143628499 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613039, + "c3": 5.524734165510867, + "c4": 4.419787332408696, + "c5": 3.3148404993065244, + "c6": 2.209893666204343, + "c7": 1.1049468331021715 }, "rgb": [238, 201, 159] }, @@ -431898,23 +431898,23 @@ "year": 1822, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -7.487499458837108, - "c2": -16.33638959089808, - "c3": -17.379727560370238, - "c4": 20.539420504265806, - "c5": -21.266819262220064, - "c6": -3.3986599889784195, - "c7": 1.0553530192447624 + "points": { + "c1": 22.833160068649995, + "c2": -2.3425222721821797, + "c3": -13.16977312761754, + "c4": -16.624242879775238, + "c5": -24.11416065834133, + "c6": 5.081112003116559, + "c7": 14.042623556987124 }, - "vertexSeeds": { - "c1": 5.131623035283498, - "c2": 4.964496636321358, - "c3": 5.395455768917642, - "c4": 5.000007011137118, - "c5": 4.954296714605134, - "c6": 5.33817949911388, - "c7": 5.349321540763666 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262134, + "c3": 6.472491909385108, + "c4": 5.177993527508082, + "c5": 3.883495145631057, + "c6": 2.5889967637540514, + "c7": 1.2944983818770257 }, "rgb": [86, 146, 138] }, @@ -431925,23 +431925,23 @@ "year": 1823, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -12.289820766490589, - "c2": -4.068966383363815, - "c3": 0.5246692917091593, - "c4": 29.805067815231418, - "c5": 24.488286166306544, - "c6": 5.365698451659675, - "c7": 20.173836812101868 + "points": { + "c1": -14.204980833647998, + "c2": -17.65420705247057, + "c3": -32.19982594715277, + "c4": 15.436209370291948, + "c5": 25.034105769359506, + "c6": 13.1461684585068, + "c7": 30.2961480778319 }, - "vertexSeeds": { - "c1": 11.651198408898447, - "c2": 11.724224208106762, - "c3": 11.783490647437175, - "c4": 11.74411720589218, - "c5": 11.845431351945711, - "c6": 11.763354266462597, - "c7": 11.833324207991488 + "offsets": { + "c1": 19.838187702265373, + "c2": 17.004160887655974, + "c3": 14.170134073046714, + "c4": 11.336107258437316, + "c5": 8.502080443828056, + "c6": 5.668053629218658, + "c7": 2.834026814609399 }, "rgb": [222, 0, 59] }, @@ -431952,23 +431952,23 @@ "year": 1823, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -2.1795401653573947, - "c2": -7.756888475505438, - "c3": -17.075026865089583, - "c4": 15.345014228815852, - "c5": -21.890024566107236, - "c6": 3.955283774132152, - "c7": 22.029965555322487 + "points": { + "c1": -30.926916268544954, + "c2": 19.731688422665307, + "c3": 30.139067227878144, + "c4": 24.082260047322407, + "c5": 17.772802052722902, + "c6": -16.923261401304828, + "c7": 12.338204549419864 }, - "vertexSeeds": { - "c1": 5.649962448366904, - "c2": 5.412377231368525, - "c3": 5.424728307144032, - "c4": 5.602049161818864, - "c5": 5.600931503463924, - "c6": 5.603631140633934, - "c7": 5.521825718278974 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744817, + "c3": 6.7498844197873265, + "c4": 5.399907535829879, + "c5": 4.049930651872388, + "c6": 2.6999537679149395, + "c7": 1.3499768839574489 }, "rgb": [58, 15, 49] }, @@ -431979,23 +431979,23 @@ "year": 1822, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 3.329243426316218, - "c2": -3.2843723789404784, - "c3": -7.144142467519405, - "c4": -5.182336226644949, - "c5": -5.124105168549832, - "c6": -12.268391850987475, - "c7": 24.532033118070377 + "points": { + "c1": 15.850294050139365, + "c2": -18.4477699290565, + "c3": -3.7548877803375973, + "c4": 11.888325338797753, + "c5": 20.43091150121459, + "c6": 0.5073245846814913, + "c7": 6.497492091393642 }, - "vertexSeeds": { - "c1": 5.539680139373951, - "c2": 5.551800838677041, - "c3": 5.333001785632481, - "c4": 5.573224404178397, - "c5": 5.478054767017456, - "c6": 5.327783156795701, - "c7": 5.676260984605647 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026352, + "c3": 6.911696717521961, + "c4": 5.529357374017568, + "c5": 4.147018030513176, + "c6": 2.764678687008784, + "c7": 1.382339343504392 }, "rgb": [58, 15, 49] }, @@ -432006,23 +432006,23 @@ "year": 1823, "resistanceReported": false, "duration": 42076800, - "curveSeeds": { - "c1": 3.695099174350652, - "c2": -46.57744096730552, - "c3": -25.94829903852968, - "c4": 40.54386790804611, - "c5": 9.891642589314856, - "c6": 54.847421167829594, - "c7": -29.82911244362839 + "points": { + "c1": 49.837279997641446, + "c2": -29.59156800647339, + "c3": -51.52425586070779, + "c4": -0.33987253089027547, + "c5": 34.53774854969416, + "c6": -22.14839737515358, + "c7": 0.13423062628762494 }, - "vertexSeeds": { - "c1": 8.257923666962954, - "c2": 9.124010769002686, - "c3": 8.17864557698615, - "c4": 9.597781118306429, - "c5": 9.523395278963992, - "c6": 8.923018716134218, - "c7": 9.055971483389488 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.00832177531206, + "c3": 11.673601479426724, + "c4": 9.338881183541375, + "c5": 7.0041608876560355, + "c6": 4.669440591770687, + "c7": 2.3347202958853384 }, "rgb": [222, 0, 59] }, @@ -432033,23 +432033,23 @@ "year": 1823, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -2.4881536152987564, - "c2": 3.336818337904372, - "c3": -23.119947959391496, - "c4": 21.130519933550648, - "c5": 29.97085483946957, - "c6": 17.9926017038736, - "c7": 5.270938782670573 + "points": { + "c1": 14.560910964344501, + "c2": 8.886859722430025, + "c3": 11.051480712958622, + "c4": -5.593369478998518, + "c5": 13.732172598840357, + "c6": -15.61668978290264, + "c7": -18.682384140918185 }, - "vertexSeeds": { - "c1": 13.662759755969512, - "c2": 13.418884326953027, - "c3": 14.09686556919331, - "c4": 14.205954724916559, - "c5": 13.7872837306568, - "c6": 13.843454073641475, - "c7": 14.174232119500802 + "offsets": { + "c1": 23.721682847896442, + "c2": 20.332871012482638, + "c3": 16.944059177068894, + "c4": 13.555247341655093, + "c5": 10.166435506241351, + "c6": 6.777623670827547, + "c7": 3.388811835413742 }, "rgb": [238, 201, 159] }, @@ -432060,23 +432060,23 @@ "year": 1822, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 13.01467840595489, - "c2": -12.118710435449096, - "c3": -21.970014486788017, - "c4": 0.7049850982445776, - "c5": 8.658100126154096, - "c6": 4.490076209449764, - "c7": -22.84595957112358 + "points": { + "c1": -15.580678899382093, + "c2": -24.679652001058862, + "c3": -7.652149398157704, + "c4": -26.119349580738056, + "c5": 11.694340747446581, + "c6": -15.76474996853112, + "c7": 20.551699962744543 }, - "vertexSeeds": { - "c1": 3.456598260439698, - "c2": 3.469728321215846, - "c3": 3.4454838610801968, - "c4": 3.439534783146574, - "c5": 3.471662927117307, - "c6": 3.4539544306358505, - "c7": 3.4529891652947335 + "offsets": { + "c1": 5.825242718446602, + "c2": 4.993065187239968, + "c3": 4.1608876560332515, + "c4": 3.328710124826618, + "c5": 2.496532593619984, + "c6": 1.6643550624133503, + "c7": 0.8321775312066337 }, "rgb": [77, 76, 132] }, @@ -432087,23 +432087,23 @@ "year": 1822, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -15.140630567990963, - "c2": 19.311091158937153, - "c3": -23.560896253284234, - "c4": -8.370758420915369, - "c5": -9.014111249186136, - "c6": 20.77093352611469, - "c7": 8.33296043818337 + "points": { + "c1": -15.238096278399762, + "c2": -26.420386758441026, + "c3": -10.75787029931968, + "c4": -23.607302288134672, + "c5": -18.6383799759344, + "c6": -26.825280053373262, + "c7": 7.680268413886125 }, - "vertexSeeds": { - "c1": 3.3161173515848614, - "c2": 3.3635135609463465, - "c3": 3.3958533041549988, - "c4": 3.4166342360594713, - "c5": 3.3501105066469203, - "c6": 3.384647065294773, - "c7": 3.4363832943646084 + "offsets": { + "c1": 5.857605177993527, + "c2": 5.020804438280164, + "c3": 4.184003698566801, + "c4": 3.3472029588534387, + "c5": 2.5104022191400883, + "c6": 1.6736014794267258, + "c7": 0.8368007397133629 }, "rgb": [77, 76, 132] }, @@ -432114,23 +432114,23 @@ "year": 1823, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -22.65750086805137, - "c2": -4.0847932735376205, - "c3": 13.551714689556121, - "c4": 15.620565784759776, - "c5": -2.1655225094448802, - "c6": -4.4330679510163655, - "c7": -29.76593963995688 + "points": { + "c1": -4.74362905118171, + "c2": 26.510083262858842, + "c3": 24.379702771717803, + "c4": -14.065346995268666, + "c5": -21.969075688613785, + "c6": 10.0081049725243, + "c7": 23.484015586509464 }, - "vertexSeeds": { - "c1": 9.604236597702654, - "c2": 9.592115381673608, - "c3": 9.802388699712969, - "c4": 9.911204601254743, - "c5": 9.673098494308128, - "c6": 9.973660812385408, - "c7": 9.586176430246237 + "offsets": { + "c1": 16.73139158576052, + "c2": 14.34119278779472, + "c3": 11.950993989828959, + "c4": 9.560795191863159, + "c5": 7.17059639389736, + "c6": 4.7803975959316, + "c7": 2.3901987979658 }, "rgb": [238, 201, 159] }, @@ -432141,23 +432141,23 @@ "year": 1823, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": -29.31520400058972, - "c2": 28.924830218443695, - "c3": 5.627654720319349, - "c4": 6.092741170307541, - "c5": 16.780418013906257, - "c6": 19.573007119656687, - "c7": -18.047206456050635 + "points": { + "c1": 26.649563690863026, + "c2": 14.980355583146427, + "c3": -14.209230985632907, + "c4": -19.789368357161706, + "c5": -37.0563647209137, + "c6": 32.97553950290578, + "c7": 17.639989593619603 }, - "vertexSeeds": { - "c1": 9.696228231279196, - "c2": 9.716823950809774, - "c3": 9.571965970495368, - "c4": 9.607873282471743, - "c5": 9.731644663500242, - "c6": 9.631818743669903, - "c7": 9.610915981880115 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.925104022191391, + "c3": 11.604253351826149, + "c4": 9.28340268146098, + "c5": 6.962552011095735, + "c6": 4.64170134073049, + "c7": 2.320850670365245 }, "rgb": [86, 146, 138] }, @@ -432168,23 +432168,23 @@ "year": 1823, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 28.484736018308638, - "c2": -22.994462785390194, - "c3": -13.022291403398267, - "c4": -27.72738787875687, - "c5": 16.496206702231014, - "c6": 1.197126900253, - "c7": 13.75226400978201 + "points": { + "c1": -29.544343181138863, + "c2": -2.6102317329914797, + "c3": 9.236808629878972, + "c4": 21.43583110020932, + "c5": -16.920671907945035, + "c6": 19.274828706886368, + "c7": 18.49932169683496 }, - "vertexSeeds": { - "c1": 8.813918622980822, - "c2": 8.724297828067774, - "c3": 8.686619261753492, - "c4": 8.63892346738628, - "c5": 8.70064586559803, - "c6": 8.872179102872295, - "c7": 8.704047011663901 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421635, + "c3": 10.587147480351364, + "c4": 8.46971798428109, + "c5": 6.352288488210817, + "c6": 4.234858992140545, + "c7": 2.1174294960702724 }, "rgb": [58, 15, 49] }, @@ -432195,23 +432195,23 @@ "year": 1823, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -19.977661962612977, - "c2": -2.1519479973030755, - "c3": -21.33470961643294, - "c4": 21.88330770628642, - "c5": -28.23510089877029, - "c6": 17.775986758531044, - "c7": -24.16638522553314 + "points": { + "c1": 13.106950729055804, + "c2": 22.893505998649346, + "c3": -28.927438154404328, + "c4": 23.987253469505987, + "c5": 14.818956387487411, + "c6": 19.0884267304126, + "c7": 10.326171828557648 }, - "vertexSeeds": { - "c1": 11.475103407504479, - "c2": 10.675658677908535, - "c3": 10.774792367457689, - "c4": 11.301262669171717, - "c5": 10.844382149310277, - "c6": 10.78131281516422, - "c7": 10.290717520950194 + "offsets": { + "c1": 19.223300970873787, + "c2": 16.477115117891806, + "c3": 13.730929264909829, + "c4": 10.984743411927884, + "c5": 8.238557558945903, + "c6": 5.492371705963925, + "c7": 2.746185852981946 }, "rgb": [238, 201, 159] }, @@ -432222,23 +432222,23 @@ "year": 1823, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -34.47149702221315, - "c2": 5.859211164018703, - "c3": 22.24589246848376, - "c4": -6.764376914688015, - "c5": 6.960935869541871, - "c6": 10.192447235549182, - "c7": 1.0897171202752318 + "points": { + "c1": -17.596245950312493, + "c2": 18.105072044940364, + "c3": 8.961218517582736, + "c4": 29.417974237515132, + "c5": 15.300536541065618, + "c6": -17.019918941430724, + "c7": -8.08772462555136 }, - "vertexSeeds": { - "c1": 12.230276448896607, - "c2": 12.232163523693009, - "c3": 12.254302929361025, - "c4": 12.252271115149316, - "c5": 12.24588833955585, - "c6": 12.251183631486885, - "c7": 12.233444735691412 + "offsets": { + "c1": 20.45307443365696, + "c2": 17.53120665741975, + "c3": 14.609338881183708, + "c4": 11.687471104946502, + "c5": 8.765603328710457, + "c6": 5.843735552473251, + "c7": 2.9218677762372067 }, "rgb": [86, 146, 138] }, @@ -432249,23 +432249,23 @@ "year": 1823, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -23.295777507137988, - "c2": 23.504795027513666, - "c3": -13.984677048984897, - "c4": 23.873667798701696, - "c5": 15.991497222741174, - "c6": -5.417092606830337, - "c7": 27.069006873108826 + "points": { + "c1": 12.002377926000953, + "c2": -12.770973752594124, + "c3": -25.109847605843054, + "c4": 20.08014072764182, + "c5": -17.160134141180333, + "c6": -25.28207400735813, + "c7": -12.023331438070421 }, - "vertexSeeds": { - "c1": 7.945626060598955, - "c2": 7.988657617216329, - "c3": 8.00638519539489, - "c4": 7.898250655409481, - "c5": 8.007803541043485, - "c6": 8.048893230110208, - "c7": 8.006474844020739 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.53952843273233, + "c3": 9.616273693943622, + "c4": 7.6930189551549155, + "c5": 5.769764216366123, + "c6": 3.846509477577415, + "c7": 1.9232547387887076 }, "rgb": [238, 201, 159] }, @@ -432276,23 +432276,23 @@ "year": 1823, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 19.876170234119158, - "c2": -4.208070434864446, - "c3": -7.907156327388584, - "c4": -32.275251356081085, - "c5": 20.983624498848314, - "c6": 22.004701106288955, - "c7": 16.616168412314515 + "points": { + "c1": 9.682664756326126, + "c2": 0.9555895314259217, + "c3": 32.929951086140456, + "c4": 16.36781918622855, + "c5": -9.996899854935783, + "c6": -10.117664709832159, + "c7": -14.573710454847454 }, - "vertexSeeds": { - "c1": 9.28786927226426, - "c2": 9.416390574162811, - "c3": 9.404186868862235, - "c4": 9.63775799963602, - "c5": 9.637221615100175, - "c6": 9.17801120053702, - "c7": 8.911727592040014 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151183, + "c3": 11.581137309292638, + "c4": 9.264909847434115, + "c5": 6.948682385575592, + "c6": 4.632454923717048, + "c7": 2.316227461858524 }, "rgb": [58, 15, 49] }, @@ -432303,23 +432303,23 @@ "year": 1822, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 3.278321746300481, - "c2": 16.501702820891772, - "c3": -4.627246504180494, - "c4": 6.387116326695171, - "c5": -15.470702856460957, - "c6": -17.215620845404917, - "c7": 3.9954088560437455 + "points": { + "c1": 9.918573812948644, + "c2": 19.869283943212096, + "c3": 21.09118950233173, + "c4": 1.6763517083677613, + "c5": -22.07422707676258, + "c6": -6.813949854405433, + "c7": 13.634592336580148 }, - "vertexSeeds": { - "c1": 3.9539395670796997, - "c2": 3.926213339604389, - "c3": 3.857618747682741, - "c4": 4.065032084922281, - "c5": 3.888084382976305, - "c6": 4.097695794102201, - "c7": 3.8762652592186937 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607484, + "c3": 4.94683310217291, + "c4": 3.957466481738323, + "c5": 2.968099861303748, + "c6": 1.9787332408691616, + "c7": 0.9893666204345754 }, "rgb": [238, 201, 159] }, @@ -432330,23 +432330,23 @@ "year": 1823, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -18.82942256341732, - "c2": -3.856686876265492, - "c3": 14.875467594009713, - "c4": -11.30048422983122, - "c5": -0.787562594576471, - "c6": -16.81051327064597, - "c7": -37.030901203058065 + "points": { + "c1": -16.155448319057104, + "c2": 27.183654241637328, + "c3": 8.09348823484865, + "c4": 7.949810426212167, + "c5": -21.570393409808784, + "c6": 30.72868555525541, + "c7": 25.386318040124976 }, - "vertexSeeds": { - "c1": 8.917196876804868, - "c2": 8.781924738715, - "c3": 9.526666131305827, - "c4": 8.773639992839206, - "c5": 9.079372392338191, - "c6": 8.729058677944288, - "c7": 8.705864609309263 + "offsets": { + "c1": 16.796116504854368, + "c2": 14.396671289875172, + "c3": 11.997226074895977, + "c4": 9.597780859916782, + "c5": 7.198335644937586, + "c6": 4.798890429958391, + "c7": 2.3994452149791954 }, "rgb": [238, 201, 159] }, @@ -432357,23 +432357,23 @@ "year": 1823, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -28.06147780558918, - "c2": 21.616100477701863, - "c3": 24.288974194535882, - "c4": -10.488208118219514, - "c5": -30.498400305331696, - "c6": 21.983300936571148, - "c7": -16.50898221421266 + "points": { + "c1": 14.722052357569588, + "c2": -2.1693153932348537, + "c3": -33.890479830588745, + "c4": 19.869119827913323, + "c5": 1.5589827987801215, + "c6": -12.023705491405462, + "c7": -25.432671942929986 }, - "vertexSeeds": { - "c1": 6.861920627447624, - "c2": 7.374625094716208, - "c3": 7.498920221925429, - "c4": 7.169431839511795, - "c5": 6.921908046985769, - "c6": 7.6125260116416404, - "c7": 6.945752292799887 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169213, + "c3": 9.292649098474346, + "c4": 7.434119278779466, + "c5": 5.5755894590846, + "c6": 3.717059639389733, + "c7": 1.8585298196948665 }, "rgb": [222, 0, 59] }, @@ -432384,23 +432384,23 @@ "year": 1823, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 31.97990784391545, - "c2": -16.916464224828193, - "c3": -7.371839444212249, - "c4": 26.79769987156365, - "c5": 33.21810203155703, - "c6": 32.59169900481702, - "c7": -32.64983397377899 + "points": { + "c1": -1.8889166040220857, + "c2": -29.16237043430251, + "c3": -24.613671712795124, + "c4": 18.18549300686329, + "c5": -0.8685891961663756, + "c6": -20.78268180036242, + "c7": 1.5400628558240328 }, - "vertexSeeds": { - "c1": 6.049116729573427, - "c2": 6.206793747516293, - "c3": 6.261424061928535, - "c4": 6.4463927060381, - "c5": 6.332866872895813, - "c6": 6.230330965609451, - "c7": 6.30583940618937 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474344, + "c3": 7.743874248728625, + "c4": 6.195099398982893, + "c5": 4.646324549237172, + "c6": 3.097549699491452, + "c7": 1.5487748497457328 }, "rgb": [86, 146, 138] }, @@ -432411,23 +432411,23 @@ "year": 1823, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -20.072359707841052, - "c2": -1.3103575762522972, - "c3": -18.094948544522026, - "c4": 22.08399964528045, - "c5": 21.257724202169193, - "c6": -15.843762197315696, - "c7": -20.270359669152803 + "points": { + "c1": 14.554982321790241, + "c2": -18.612881113840352, + "c3": -5.968691248346076, + "c4": -6.7137537833482845, + "c5": 8.490287198390156, + "c6": 20.51382144607083, + "c7": -17.646992644812208 }, - "vertexSeeds": { - "c1": 8.926768787651497, - "c2": 8.870663012830283, - "c3": 8.992975715225805, - "c4": 8.91225198918358, - "c5": 9.011811804855652, - "c6": 8.97884049754742, - "c7": 8.900394139554313 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703143, + "c3": 10.748959778086007, + "c4": 8.599167822468763, + "c5": 6.449375866851625, + "c6": 4.299583911234381, + "c7": 2.149791955617244 }, "rgb": [222, 0, 59] }, @@ -432438,23 +432438,23 @@ "year": 1823, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 15.866341887837766, - "c2": -7.744525625224636, - "c3": -28.398811697795985, - "c4": -28.786710919323934, - "c5": 12.536545867757152, - "c6": -20.563635140000663, - "c7": 28.074583628360383 + "points": { + "c1": 14.513246097117193, + "c2": 30.92512714980889, + "c3": 2.708969340377312, + "c4": -1.8616478195204067, + "c5": -10.021703886792366, + "c6": -26.630310486171595, + "c7": 7.784281888369851 }, - "vertexSeeds": { - "c1": 6.226784975846218, - "c2": 5.901238027887691, - "c3": 5.586197170413601, - "c4": 6.1477687534829935, - "c5": 5.909190695849246, - "c6": 5.84206635399617, - "c7": 5.5796179273938495 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192789, + "c3": 7.582061950993993, + "c4": 6.065649560795198, + "c5": 4.549237170596402, + "c6": 3.0328247803976063, + "c7": 1.5164123901988102 }, "rgb": [86, 146, 138] }, @@ -432465,23 +432465,23 @@ "year": 1822, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": -14.672197883186259, - "c2": -0.7578392260724733, - "c3": -13.290793695482918, - "c4": -2.8526946899399306, - "c5": 20.27439430199282, - "c6": 0.2435402087847649, - "c7": 2.514234095005367 + "points": { + "c1": -22.344051940106443, + "c2": 6.335642528730585, + "c3": 22.87968038448936, + "c4": -24.32547120587526, + "c5": 6.974309790761282, + "c6": -3.4183665791276816, + "c7": -11.952955162419546 }, - "vertexSeeds": { - "c1": 5.092872009245354, - "c2": 5.103351136123321, - "c3": 5.095352384227574, - "c4": 5.101501761967283, - "c5": 5.091618640932374, - "c6": 5.097292194177266, - "c7": 5.102977514052457 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618377, + "c3": 6.10263522884889, + "c4": 4.882108183078918, + "c5": 3.6615811373094314, + "c6": 2.441054091539459, + "c7": 1.2205270457699724 }, "rgb": [77, 76, 132] }, @@ -432492,23 +432492,23 @@ "year": 1823, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 4.938720980088604, - "c2": 2.648987290023939, - "c3": 28.308999538373286, - "c4": -27.794240750904052, - "c5": 27.58107838638916, - "c6": -31.172572052475896, - "c7": -6.398626044191115 + "points": { + "c1": 15.769818528331456, + "c2": -27.275545604287338, + "c3": 11.063866162309488, + "c4": -19.910664262299978, + "c5": -19.08952385231199, + "c6": -10.076946317305826, + "c7": 7.394367291206436 }, - "vertexSeeds": { - "c1": 7.8732783845842516, - "c2": 7.662667718181622, - "c3": 7.92683953716316, - "c4": 8.526048204090086, - "c5": 8.190582183378954, - "c6": 7.786219290553094, - "c7": 7.968640246255705 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.20527045769765, + "c3": 10.171058714748032, + "c4": 8.136846971798434, + "c5": 6.102635228848816, + "c6": 4.068423485899217, + "c7": 2.034211742949617 }, "rgb": [58, 15, 49] }, @@ -432519,23 +432519,23 @@ "year": 1823, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -24.704325933991512, - "c2": -8.683116733880606, - "c3": 27.42224123641097, - "c4": -2.0646150291204854, - "c5": -12.268645161540192, - "c6": 12.418672622389089, - "c7": -19.010774242932662 + "points": { + "c1": 14.484565964186757, + "c2": -3.765240691796844, + "c3": 26.7268025589171, + "c4": -11.182762680277435, + "c5": -14.369079513285286, + "c6": -24.802176042856168, + "c7": 11.2745373398324 }, - "vertexSeeds": { - "c1": 9.846614882972277, - "c2": 9.544743897666441, - "c3": 9.679541641433591, - "c4": 9.421517032572014, - "c5": 9.468240533562089, - "c6": 9.972581346374373, - "c7": 9.844674970964832 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.4244105409154, + "c3": 12.020342117429504, + "c4": 9.616273693943596, + "c5": 7.2122052704577, + "c6": 4.808136846971804, + "c7": 2.404068423485896 }, "rgb": [222, 0, 59] }, @@ -432546,23 +432546,23 @@ "year": 1822, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 3.4809126927195173, - "c2": 0.13310715338376866, - "c3": -17.325644506133315, - "c4": 11.152610858127737, - "c5": 4.7426626679301975, - "c6": -4.1713260499445965, - "c7": -16.321816328206353 + "points": { + "c1": -16.471592029279016, + "c2": -4.460556953887192, + "c3": -21.092083467976597, + "c4": 10.469662126938132, + "c5": 1.4490320921322102, + "c6": 9.784080080565886, + "c7": -18.789975195815313 }, - "vertexSeeds": { - "c1": 3.2817272540851867, - "c2": 3.207193352355674, - "c3": 3.5062618474304164, - "c4": 3.5076253578053302, - "c5": 3.184217957200261, - "c6": 3.5156825033416257, - "c7": 3.480390510243028 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [58, 15, 49] }, @@ -432573,23 +432573,23 @@ "year": 1822, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 23.45718546501889, - "c2": 13.923107492271797, - "c3": 2.2025765756240645, - "c4": 7.653452657375674, - "c5": -17.103917031391358, - "c6": -12.765350654429383, - "c7": 22.658750848560885 + "points": { + "c1": -8.845013711403446, + "c2": -2.683248730115924, + "c3": -6.196365949422397, + "c4": -14.242900373966052, + "c5": -14.299389815451956, + "c6": -13.891800471351448, + "c7": 8.3329585165243 }, - "vertexSeeds": { - "c1": 8.153484479698106, - "c2": 8.667587279800541, - "c3": 8.150711464269135, - "c4": 8.275804786835382, - "c5": 8.29494424004019, - "c6": 8.463602011530513, - "c7": 8.33519585434719 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140078, + "c3": 10.425335182616728, + "c4": 8.340268146093377, + "c5": 6.255201109570027, + "c6": 4.170134073046701, + "c7": 2.0850670365233506 }, "rgb": [238, 201, 159] }, @@ -432600,23 +432600,23 @@ "year": 1822, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 5.831594254681541, - "c2": -5.563212746131029, - "c3": -1.4830785756056528, - "c4": -9.150758500748163, - "c5": 5.5257975455714785, - "c6": 7.390947803454608, - "c7": 18.44547657986176 + "points": { + "c1": 24.68168069200786, + "c2": -22.754883813362397, + "c3": -0.021768243449706404, + "c4": -12.852344505218667, + "c5": -5.0786265582275405, + "c6": 4.128030721314612, + "c7": -25.13130404515667 }, - "vertexSeeds": { - "c1": 3.724801541364367, - "c2": 3.525713471054347, - "c3": 3.8659863723349464, - "c4": 3.908885813605089, - "c5": 3.767763648867321, - "c6": 3.907984269473883, - "c7": 3.6357949006429684 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325937, + "c3": 4.785020804438282, + "c4": 3.82801664355062, + "c5": 2.871012482662965, + "c6": 1.91400832177531, + "c7": 0.957004160887655 }, "rgb": [238, 201, 159] }, @@ -432627,23 +432627,23 @@ "year": 1823, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -4.678826512019139, - "c2": 31.68042677513847, - "c3": 1.2684842945859032, - "c4": 30.36424292188657, - "c5": -4.95584845319879, - "c6": -5.848808894674388, - "c7": -28.34690307568127 + "points": { + "c1": 10.211212639073594, + "c2": 31.7566838682054, + "c3": -16.118389063015577, + "c4": 5.85803527859639, + "c5": 10.085277107459476, + "c6": 2.830057023605548, + "c7": 21.36956660878866 }, - "vertexSeeds": { - "c1": 12.093328838327386, - "c2": 11.923827098920656, - "c3": 11.952448230397506, - "c4": 11.033250858056864, - "c5": 11.276936293925026, - "c6": 11.485589789705038, - "c7": 11.753893487321795 + "offsets": { + "c1": 20.45307443365696, + "c2": 17.53120665742024, + "c3": 14.609338881183522, + "c4": 11.68747110494684, + "c5": 8.76560332871012, + "c6": 5.843735552473402, + "c7": 2.9218677762367182 }, "rgb": [222, 0, 59] }, @@ -432654,23 +432654,23 @@ "year": 1823, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": 20.594181255693158, - "c2": 28.399160867863927, - "c3": 53.23556936626359, - "c4": 23.572809947964018, - "c5": 3.407461527721182, - "c6": 52.31516697250886, - "c7": -7.20404441679392 + "points": { + "c1": -18.201048596080483, + "c2": 15.636829976693619, + "c3": -30.77800666078854, + "c4": 16.148247716641592, + "c5": 35.61022883510999, + "c6": 47.478327437304415, + "c7": -9.990955604179803 }, - "vertexSeeds": { - "c1": 10.723248390287221, - "c2": 10.663247798550234, - "c3": 10.670866963403894, - "c4": 10.8273757370841, - "c5": 10.735496641290721, - "c6": 10.7465756605479, - "c7": 10.788213936824938 + "offsets": { + "c1": 18.09061488673139, + "c2": 15.506241331484123, + "c3": 12.921867776236684, + "c4": 10.337494220989417, + "c5": 7.753120665741976, + "c6": 5.168747110494708, + "c7": 2.5843735552474394 }, "rgb": [58, 15, 49] }, @@ -432681,23 +432681,23 @@ "year": 1822, "resistanceReported": false, "duration": 8035200, - "curveSeeds": { - "c1": 11.628325904061072, - "c2": 14.435001026017872, - "c3": -11.205643059985757, - "c4": 13.702257527411447, - "c5": 16.65552433659255, - "c6": -2.991727763903727, - "c7": -14.172837308385935 + "points": { + "c1": -6.530319669166438, + "c2": -14.044654478771255, + "c3": -15.245792094965225, + "c4": -3.4270385350770205, + "c5": 5.163643745214024, + "c6": -18.442721573462258, + "c7": -3.692781224113908 }, - "vertexSeeds": { - "c1": 7.459476353066191, - "c2": 7.50947618754067, - "c3": 7.5166817541433515, - "c4": 7.485262001744795, - "c5": 7.5128724105091065, - "c6": 7.455646825285204, - "c7": 7.38503619730037 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646288, + "c3": 8.992140545538618, + "c4": 7.193712436430858, + "c5": 5.395284327323188, + "c6": 3.596856218215429, + "c7": 1.79842810910767 }, "rgb": [86, 146, 138] }, @@ -432708,23 +432708,23 @@ "year": 1823, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -9.373509654153601, - "c2": 4.1651241621534325, - "c3": -27.5265049382404, - "c4": -22.93259632147842, - "c5": -28.16846917929506, - "c6": 5.814332829410247, - "c7": -21.09912295457546 + "points": { + "c1": 24.427997829231494, + "c2": 3.4568346497349722, + "c3": 22.18581538245877, + "c4": -7.670231586309171, + "c5": -17.13297953125204, + "c6": 0.963087727241799, + "c7": -16.66650464772126 }, - "vertexSeeds": { - "c1": 6.274577491992576, - "c2": 5.967959496335395, - "c3": 5.8932133726815055, - "c4": 6.424703580057269, - "c5": 6.504582146561553, - "c6": 6.5120985667841715, - "c7": 6.276400630496682 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037444, + "c3": 8.067498844197875, + "c4": 6.453999075358295, + "c5": 4.840499306518728, + "c6": 3.2269995376791476, + "c7": 1.6134997688395678 }, "rgb": [58, 15, 49] }, @@ -432735,23 +432735,23 @@ "year": 1823, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -32.881302047585564, - "c2": -27.202810347939014, - "c3": -5.860896872879987, - "c4": -33.622459627975786, - "c5": 22.837348595158304, - "c6": -4.220001752255932, - "c7": 9.67557728181314 + "points": { + "c1": -9.288302185580328, + "c2": -26.692917632964388, + "c3": 22.365254737249586, + "c4": -22.968778116484412, + "c5": -25.578446641619983, + "c6": 18.692185343796616, + "c7": 25.652857793737645 }, - "vertexSeeds": { - "c1": 7.904123354834383, - "c2": 7.849852541770256, - "c3": 7.50852282195811, - "c4": 7.895424885883078, - "c5": 7.489087816482099, - "c6": 7.651836520482965, - "c7": 7.451056629965971 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410532, + "c3": 9.431345353675464, + "c4": 7.545076282940365, + "c5": 5.658807212205266, + "c6": 3.7725381414701986, + "c7": 1.8862690707350993 }, "rgb": [77, 76, 132] }, @@ -432762,23 +432762,23 @@ "year": 1823, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 6.5362757012459305, - "c2": 11.525591822380072, - "c3": 9.213525643872767, - "c4": 21.03805737350075, - "c5": 4.54667460238036, - "c6": 3.788377125444846, - "c7": 13.040310660603645 + "points": { + "c1": 14.96424109959053, + "c2": -14.868870298125186, + "c3": -6.440293234069738, + "c4": 10.753682017521022, + "c5": 6.597675398475197, + "c6": 8.240350264514788, + "c7": -0.8733766299484103 }, - "vertexSeeds": { - "c1": 5.086493447741615, - "c2": 4.986548333581753, - "c3": 5.015187233583664, - "c4": 5.077933176421484, - "c5": 4.980080103021447, - "c6": 5.276356938951957, - "c7": 5.248546058053195 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -432789,23 +432789,23 @@ "year": 1823, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -0.983792939144319, - "c2": -20.976048226326995, - "c3": -13.842971352936335, - "c4": -7.3621673355977695, - "c5": 12.196261180580969, - "c6": -18.953184868246876, - "c7": 7.068891774866739 + "points": { + "c1": 6.031968228616705, + "c2": -13.157159443167165, + "c3": -8.160469506769182, + "c4": 8.850728040721599, + "c5": 9.080961128306534, + "c6": -4.798372232717426, + "c7": -0.39255179049898103 }, - "vertexSeeds": { - "c1": 5.257476152792433, - "c2": 5.0710464552440015, - "c3": 5.2571851292581675, - "c4": 5.1535701035637285, - "c5": 5.068370358399545, - "c6": 5.115465370286715, - "c7": 4.840010984858291 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -432816,23 +432816,23 @@ "year": 1823, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 16.19041721388541, - "c2": 7.032044550149465, - "c3": -18.735064809661072, - "c4": 0.04592773409939355, - "c5": -9.214170634370959, - "c6": -2.619124861656001, - "c7": 13.570281761264702 + "points": { + "c1": -6.354124529545452, + "c2": 14.99394449646892, + "c3": 2.4512921728000094, + "c4": -7.219412424441231, + "c5": 23.40832042151642, + "c6": 31.710321405953948, + "c7": -0.3262720774804144 }, - "vertexSeeds": { - "c1": 6.243958441752511, - "c2": 6.192717457521375, - "c3": 6.10711631091207, - "c4": 6.290020238327498, - "c5": 6.082755453039204, - "c6": 6.044658458989391, - "c7": 5.913894731390108 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.15395284327323, + "c3": 7.628294036061026, + "c4": 6.10263522884882, + "c5": 4.576976421636615, + "c6": 3.05131761442441, + "c7": 1.525658807212205 }, "rgb": [238, 201, 159] }, @@ -432843,23 +432843,23 @@ "year": 1823, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 23.138651651237616, - "c2": 39.33781574718664, - "c3": 17.63868568469404, - "c4": -35.91418496780553, - "c5": -16.239151191256493, - "c6": -39.49325924511997, - "c7": -0.38731041082513684 + "points": { + "c1": -31.602037912071403, + "c2": 19.782359358556207, + "c3": -34.15688035488257, + "c4": 22.060489881440446, + "c5": 17.215718220394464, + "c6": 36.136401268479844, + "c7": -0.005165012433359095 }, - "vertexSeeds": { - "c1": 12.124352331606218, - "c2": 12.124352331606218, - "c3": 12.124352331606218, - "c4": 12.124352331606218, - "c5": 12.124352331606218, - "c6": 12.124352331606218, - "c7": 12.124352331606218 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -432870,23 +432870,23 @@ "year": 1823, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -2.852337284194487, - "c2": -5.948637071738325, - "c3": -7.676070086691055, - "c4": 9.952594533176345, - "c5": -8.175077354362497, - "c6": -17.63913149210909, - "c7": 21.14968401492755 + "points": { + "c1": -16.58072093679815, + "c2": 16.421468324442195, + "c3": -1.0359291308580154, + "c4": 12.742831917451973, + "c5": 25.890767012742728, + "c6": 16.684034803247066, + "c7": -18.583350609607002 }, - "vertexSeeds": { - "c1": 13.120722499069753, - "c2": 12.96443918532162, - "c3": 13.361492917981526, - "c4": 13.271676817142641, - "c5": 13.421039078424709, - "c6": 12.951464273746051, - "c7": 13.396576305224857 + "offsets": { + "c1": 22.39482200647249, + "c2": 19.195561719833552, + "c3": 15.996301433194612, + "c4": 12.797041146555674, + "c5": 9.597780859916735, + "c6": 6.398520573277878, + "c7": 3.199260286638939 }, "rgb": [222, 0, 59] }, @@ -432897,23 +432897,23 @@ "year": 1823, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -11.272998757391532, - "c2": 12.045492989973894, - "c3": 15.937651759024988, - "c4": -6.469466713785117, - "c5": -11.855800220014071, - "c6": -21.19504468151926, - "c7": -17.340914330503814 + "points": { + "c1": -0.9790044473828274, + "c2": 16.273956546168314, + "c3": -16.359960657197618, + "c4": -15.916840650033153, + "c5": 18.698627259646017, + "c6": -12.969734397218724, + "c7": 12.35894416991328 }, - "vertexSeeds": { - "c1": 5.111486998289052, - "c2": 5.1236425627711455, - "c3": 5.1130500949854545, - "c4": 5.113297676356178, - "c5": 5.127809803326927, - "c6": 5.115167022618038, - "c7": 5.127621023538122 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658598, + "c3": 6.125751271382409, + "c4": 4.900601017105732, + "c5": 3.6754507628295428, + "c6": 2.450300508552866, + "c7": 1.2251502542766768 }, "rgb": [222, 0, 59] }, @@ -432924,23 +432924,23 @@ "year": 1823, "resistanceReported": false, "duration": 34560000, - "curveSeeds": { - "c1": -42.98143418951136, - "c2": -24.488209263845214, - "c3": 1.8124434349969363, - "c4": -38.236673117413424, - "c5": 24.663610254785617, - "c6": -23.117057796111354, - "c7": -5.319872798571566 + "points": { + "c1": 21.54114517524841, + "c2": 45.19349260958118, + "c3": -30.316601610157917, + "c4": -8.220916572573557, + "c5": -40.64343694069164, + "c6": -37.711788527570214, + "c7": 7.991790475801061 }, - "vertexSeeds": { - "c1": 8.683298445182732, - "c2": 8.726601878105587, - "c3": 8.420426210062836, - "c4": 8.416949080568033, - "c5": 8.473865618201648, - "c6": 8.537013820414987, - "c7": 8.663142099145588 + "offsets": { + "c1": 14.692556634304207, + "c2": 12.593619972260766, + "c3": 10.494683310217285, + "c4": 8.395746648173846, + "c5": 6.296809986130363, + "c6": 4.197873324086923, + "c7": 2.09893666204344 }, "rgb": [77, 76, 132] }, @@ -432951,23 +432951,23 @@ "year": 1823, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -7.366471540447979, - "c2": -13.84020487030166, - "c3": 10.973947355059636, - "c4": -24.466367143083755, - "c5": -7.6286271404783506, - "c6": -19.701856257967172, - "c7": 3.7793878649151083 + "points": { + "c1": -24.39932233828443, + "c2": -15.906001019351317, + "c3": -15.376239077684339, + "c4": 5.200814555419825, + "c5": 6.0701770456050355, + "c6": -14.314032269047239, + "c7": 0.8806398291071744 }, - "vertexSeeds": { - "c1": 6.473530610278516, - "c2": 6.20866632462348, - "c3": 6.344031387229682, - "c4": 6.260942974752468, - "c5": 6.252921977205625, - "c6": 6.4016327873816, - "c7": 6.218234819073202 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554772, + "c3": 7.7901063337956575, + "c4": 6.2320850670365155, + "c5": 4.6740638002774, + "c6": 3.1160425335182578, + "c7": 1.5580212667591147 }, "rgb": [238, 201, 159] }, @@ -432978,23 +432978,23 @@ "year": 1823, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 30.87153235674836, - "c2": -19.17251581047126, - "c3": 24.317955870023766, - "c4": -14.251945554349394, - "c5": -17.82022895180667, - "c6": 2.815529826498647, - "c7": -15.158225196451252 + "points": { + "c1": -25.15594244091615, + "c2": 24.6809576008544, + "c3": -20.01871034834737, + "c4": -27.605535823889102, + "c5": 33.542463132452276, + "c6": -8.516404731385556, + "c7": -28.379767075799776 }, - "vertexSeeds": { - "c1": 5.353563687045376, - "c2": 7.406933446711131, - "c3": 7.569003583050809, - "c4": 8.496281606255508, - "c5": 5.603557422068517, - "c6": 8.2181566199672, - "c7": 5.415217185653157 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.507628294036062, + "c3": 12.089690245030052, + "c4": 9.67175219602404, + "c5": 7.253814147018031, + "c6": 4.835876098012022, + "c7": 2.417938049006009 }, "rgb": [238, 201, 159] }, @@ -433005,23 +433005,23 @@ "year": 1823, "resistanceReported": false, "duration": 31449600, - "curveSeeds": { - "c1": 19.274339592470938, - "c2": 23.233828778560884, - "c3": 17.89788698755183, - "c4": -28.137173664762443, - "c5": -35.27138812599004, - "c6": 21.354075474989564, - "c7": 44.34378499909132 + "points": { + "c1": -6.21342421010786, + "c2": 38.26931958437715, + "c3": 12.605804827273325, + "c4": -20.006351271488796, + "c5": -20.78653057337744, + "c6": -35.94982049136851, + "c7": 39.509563449488546 }, - "vertexSeeds": { - "c1": 8.721262474688682, - "c2": 8.838307111604069, - "c3": 8.661326207322022, - "c4": 8.80445293475923, - "c5": 8.663935735873247, - "c6": 8.878400403766268, - "c7": 8.838151258564675 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421626, + "c3": 10.587147480351344, + "c4": 8.469717984281061, + "c5": 6.352288488210848, + "c6": 4.234858992140565, + "c7": 2.1174294960702826 }, "rgb": [238, 201, 159] }, @@ -433032,23 +433032,23 @@ "year": 1823, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -18.105103049121592, - "c2": -7.406593177859062, - "c3": 23.20577036385047, - "c4": 0.6801676936832308, - "c5": 16.667508655459116, - "c6": 27.77545839396148, - "c7": -12.23596882546061 + "points": { + "c1": 25.869188038592092, + "c2": 20.265855680797728, + "c3": 33.246334342259914, + "c4": -27.378346748952065, + "c5": -8.042152650571161, + "c6": 24.247408482060813, + "c7": -5.677191017077639 }, - "vertexSeeds": { - "c1": 9.591561321743457, - "c2": 9.686336322038981, - "c3": 9.089253361642784, - "c4": 9.817761206067104, - "c5": 9.141901553162299, - "c6": 9.341703816890755, - "c7": 9.77142126129252 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.091539528432738, + "c3": 11.742949607027272, + "c4": 9.394359685621826, + "c5": 7.0457697642163595, + "c6": 4.697179842810913, + "c7": 2.3485899214054466 }, "rgb": [86, 146, 138] }, @@ -433059,23 +433059,23 @@ "year": 1823, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": 24.888987903273893, - "c2": -13.38128869854091, - "c3": 0.34124377208964063, - "c4": 25.617859027195976, - "c5": -21.09725948727649, - "c6": 15.821374529332154, - "c7": 1.4177763497544404 + "points": { + "c1": -37.8159906430712, + "c2": 7.031148344154047, + "c3": 22.351111000447602, + "c4": 27.456599489007175, + "c5": -4.510317593673577, + "c6": -12.393947988209657, + "c7": -5.127759108385689 }, - "vertexSeeds": { - "c1": 7.744767595326487, - "c2": 7.8622043555926, - "c3": 7.829887443001136, - "c4": 7.90976184977639, - "c5": 7.881803112432497, - "c6": 7.668377627569901, - "c7": 7.915382579098679 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933438, + "c3": 9.731853906611184, + "c4": 7.785483125288959, + "c5": 5.839112343966705, + "c6": 3.8927415626444795, + "c7": 1.9463707813222253 }, "rgb": [77, 76, 132] }, @@ -433086,23 +433086,23 @@ "year": 1824, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -34.780825350219956, - "c2": 5.6736843038064535, - "c3": -5.469974247849059, - "c4": -0.3967861943535169, - "c5": -5.8834608324384945, - "c6": -35.01806905878223, - "c7": 39.311736163512066 + "points": { + "c1": -39.78561438507623, + "c2": 11.729124658584823, + "c3": 1.2708833468976195, + "c4": 33.6745248035119, + "c5": 24.38659677269959, + "c6": -41.85783906377181, + "c7": -30.6696297400198 }, - "vertexSeeds": { - "c1": 2.0827095244306926, - "c2": 2.1064747624667244, - "c3": 2.5030825129216003, - "c4": 2.3672252066436843, - "c5": 2.4221115485505793, - "c6": 2.4000747307576535, - "c7": 2.3512747947690666 + "offsets": { + "c1": 4.207119741100324, + "c2": 3.6061026352288477, + "c3": 3.0050855293573746, + "c4": 2.404068423485899, + "c5": 1.8030513176144225, + "c6": 1.2020342117429494, + "c7": 0.6010171058714734 }, "rgb": [58, 15, 49] }, @@ -433113,23 +433113,23 @@ "year": 1823, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -26.860024104115244, - "c2": 23.23280198847836, - "c3": -6.9345198221096815, - "c4": -18.87429399027019, - "c5": -16.1506832451622, - "c6": 21.309791185082293, - "c7": -11.52079076435071 + "points": { + "c1": 26.61382878137748, + "c2": -7.681190565607153, + "c3": -8.836052322611337, + "c4": 3.2651992090183803, + "c5": -2.4778256170943145, + "c6": -2.3392328024730844, + "c7": -16.14409598620388 }, - "vertexSeeds": { - "c1": 6.047555338428906, - "c2": 6.208654678213205, - "c3": 6.266909031119963, - "c4": 5.872224487760391, - "c5": 6.621896369907776, - "c6": 6.050521131916182, - "c7": 6.454591509459458 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.54230235783634, + "c3": 7.951918631530285, + "c4": 6.361534905224231, + "c5": 4.771151178918177, + "c6": 3.1807674526121086, + "c7": 1.5903837263060543 }, "rgb": [238, 201, 159] }, @@ -433140,23 +433140,23 @@ "year": 1823, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -31.66359413480057, - "c2": 0.31205451895277037, - "c3": -12.659028995590276, - "c4": 35.43557690175868, - "c5": 5.450516983004867, - "c6": -28.539437922702408, - "c7": 31.852365870414417 + "points": { + "c1": -36.168169538619, + "c2": 20.422982544845148, + "c3": 5.008402032259809, + "c4": -12.112833071825367, + "c5": -15.275538147364717, + "c6": 15.007895366760003, + "c7": 36.18405009793118 }, - "vertexSeeds": { - "c1": 8.22573234992747, - "c2": 7.65175167802396, - "c3": 7.529005419901474, - "c4": 7.5149254808051875, - "c5": 7.72208523139839, - "c6": 7.9780194484276725, - "c7": 7.6469734134924074 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094312, + "c3": 9.824318076745255, + "c4": 7.859454461396221, + "c5": 5.894590846047165, + "c6": 3.9297272306981106, + "c7": 1.9648636153490553 }, "rgb": [58, 15, 49] }, @@ -433167,23 +433167,23 @@ "year": 1823, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -23.683030990581063, - "c2": -0.04008613548175077, - "c3": -21.61389151329507, - "c4": -2.525348959345095, - "c5": -2.2856339824865692, - "c6": -14.55042467084248, - "c7": -25.46142949057071 + "points": { + "c1": -9.298491908539212, + "c2": -2.482612999466067, + "c3": -5.275951035927111, + "c4": 23.364579476081904, + "c5": 17.023771358780845, + "c6": -11.22036057585693, + "c7": 10.909498677784097 }, - "vertexSeeds": { - "c1": 3.350764020902008, - "c2": 3.106639895462029, - "c3": 3.0764764510655502, - "c4": 3.2237884671367905, - "c5": 3.189087645892239, - "c6": 3.3371330287016328, - "c7": 3.122966563826293 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119283, + "c3": 4.091539528432733, + "c4": 3.273231622746184, + "c5": 2.4549237170596414, + "c6": 1.6366158113730989, + "c7": 0.8183079056865494 }, "rgb": [222, 0, 59] }, @@ -433194,23 +433194,23 @@ "year": 1823, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": 7.395995559800372, - "c2": -16.826816188888753, - "c3": -18.305406157160263, - "c4": -11.534515432134143, - "c5": 8.23004265621286, - "c6": 4.809322725819779, - "c7": 11.963030385138932 + "points": { + "c1": 8.434759315168975, + "c2": -16.617678779631344, + "c3": -7.0923408510747805, + "c4": -6.152581340183509, + "c5": 1.8711395895008138, + "c6": -3.3842452716738087, + "c7": -1.0210100476511492 }, - "vertexSeeds": { - "c1": 2.84448923770245, - "c2": 3.1000091429042533, - "c3": 3.126363957334537, - "c4": 2.9233771148104317, - "c5": 3.123869636136927, - "c6": 2.949463607908649, - "c7": 2.830807145944113 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717059, + "c3": 3.8603791030975496, + "c4": 3.0883032824780394, + "c5": 2.3162274618585297, + "c6": 1.5441516412390197, + "c7": 0.7720758206195099 }, "rgb": [238, 201, 159] }, @@ -433221,23 +433221,23 @@ "year": 1823, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 14.173284926740713, - "c2": 21.04904388137271, - "c3": 21.039474532103675, - "c4": 11.874569609399195, - "c5": -9.932413965298684, - "c6": -4.437149687633511, - "c7": 6.711097171643267 + "points": { + "c1": -7.683111909285653, + "c2": 1.0463201038947894, + "c3": 16.236240102606132, + "c4": -2.1263944293120147, + "c5": 6.356206554474433, + "c6": -6.79819210002314, + "c7": -1.4520209739015044 }, - "vertexSeeds": { - "c1": 4.898966947332889, - "c2": 4.525958373233583, - "c3": 4.792386273214525, - "c4": 4.748922475534991, - "c5": 4.481381577770267, - "c6": 4.7157607713130965, - "c7": 4.920866572470769 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256585, + "c3": 5.8945908460471585, + "c4": 4.715672676837722, + "c5": 3.536754507628297, + "c6": 2.357836338418861, + "c7": 1.1789181692094355 }, "rgb": [58, 15, 49] }, @@ -433248,23 +433248,23 @@ "year": 1824, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 7.5274589600446475, - "c2": 0.7338235555360839, - "c3": -5.312985807651554, - "c4": -27.978025582915528, - "c5": -23.02633511961068, - "c6": -24.853659322278155, - "c7": -3.867348181788884 + "points": { + "c1": -3.8865336762043015, + "c2": 31.126382104622593, + "c3": 9.368052451100972, + "c4": -8.942810959212448, + "c5": -25.485649258123303, + "c6": -5.553800194031545, + "c7": 21.595351312111966 }, - "vertexSeeds": { - "c1": 6.262938111879217, - "c2": 6.119152023625118, - "c3": 6.226042238679904, - "c4": 6.096710003062024, - "c5": 6.8038584219020715, - "c6": 6.096018776325908, - "c7": 6.053577827792333 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158113, + "c3": 8.136846971798425, + "c4": 6.509477577438739, + "c5": 4.882108183079051, + "c6": 3.254738788719375, + "c7": 1.6273693943596763 }, "rgb": [86, 146, 138] }, @@ -433275,23 +433275,23 @@ "year": 1823, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 8.057836545989105, - "c2": 7.011816179035073, - "c3": 1.8739638065209334, - "c4": 1.6837189562332355, - "c5": 31.212395231702033, - "c6": 0.12259919664748509, - "c7": -7.099083924097531 + "points": { + "c1": -34.3348392165246, + "c2": -8.252042858114418, + "c3": 4.943476321800226, + "c4": 19.439937493385656, + "c5": 10.591165998854386, + "c6": -13.382470661806735, + "c7": 10.886261301528116 }, - "vertexSeeds": { - "c1": 9.95240882916281, - "c2": 10.148385516664929, - "c3": 10.036115644787062, - "c4": 9.892830392227633, - "c5": 9.943204987973315, - "c6": 9.908476017352625, - "c7": 10.09367364107348 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156674, + "c3": 12.159038372630622, + "c4": 9.72723069810445, + "c5": 7.2954230235783974, + "c6": 4.863615349052225, + "c7": 2.4318076745261727 }, "rgb": [222, 0, 59] }, @@ -433302,23 +433302,23 @@ "year": 1824, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": -37.6395706781156, - "c2": 4.81376948664947, - "c3": -0.8476228942891737, - "c4": -35.066411377901794, - "c5": -33.49231696232287, - "c6": 7.711796089623974, - "c7": 5.554507374086121 + "points": { + "c1": -8.364937807115204, + "c2": -1.8910630415902219, + "c3": -31.372879983333327, + "c4": 17.23613351018792, + "c5": -22.02338231552415, + "c6": 31.236048995039297, + "c7": 24.110171863243323 }, - "vertexSeeds": { - "c1": 8.820379478131386, - "c2": 8.46531000674261, - "c3": 8.776573369377553, - "c4": 9.000734497998861, - "c5": 8.697456920970003, - "c6": 8.549828408763615, - "c7": 8.590109937554203 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783642, + "c3": 10.795191863153017, + "c4": 8.63615349052242, + "c5": 6.477115117891821, + "c6": 4.318076745261223, + "c7": 2.159038372630598 }, "rgb": [86, 146, 138] }, @@ -433329,23 +433329,23 @@ "year": 1824, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -6.518775255813473, - "c2": -38.186191257080374, - "c3": -37.3637316043991, - "c4": 15.000035389615036, - "c5": 36.70003876253487, - "c6": 18.252620565811412, - "c7": -9.028930557607133 + "points": { + "c1": 29.544886156713652, + "c2": 35.08050308572539, + "c3": -22.30625053215359, + "c4": 23.78366985140311, + "c5": 17.67826377687875, + "c6": 4.2745332008443455, + "c7": -40.64976494594962 }, - "vertexSeeds": { - "c1": 3.9035290846167205, - "c2": 3.8642409187793496, - "c3": 3.8686204450550488, - "c4": 3.8682538816028993, - "c5": 3.8732488020670925, - "c6": 3.8507131577315934, - "c7": 3.87671986924168 + "offsets": { + "c1": 6.5372168284789645, + "c2": 5.6033287101248535, + "c3": 4.66944059177068, + "c4": 3.7355524734165693, + "c5": 2.8016643550623956, + "c6": 1.8677762367082846, + "c7": 0.9338881183541112 }, "rgb": [77, 76, 132] }, @@ -433356,23 +433356,23 @@ "year": 1823, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -1.0110515852288806, - "c2": -2.0491614650229444, - "c3": -3.9086907172403507, - "c4": -1.055713198072315, - "c5": 2.390651863513895, - "c6": 20.763728590662254, - "c7": -12.12691030317713 + "points": { + "c1": 7.850624127509533, + "c2": 13.009966832806434, + "c3": 14.962799321261187, + "c4": -0.37949333840822064, + "c5": 9.237432547592576, + "c6": 12.118566264829099, + "c7": 22.7654134058168 }, - "vertexSeeds": { - "c1": 3.189280778408782, - "c2": 3.2352584674024625, - "c3": 3.315692878569268, - "c4": 3.220274176765856, - "c5": 3.2935070332669634, - "c6": 3.093905652982471, - "c7": 3.413564486368766 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [77, 76, 132] }, @@ -433383,23 +433383,23 @@ "year": 1823, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -14.49466031536503, - "c2": -4.046317847360687, - "c3": -8.935456003103898, - "c4": -6.726785474949288, - "c5": -19.726486898703428, - "c6": -15.491512887714974, - "c7": -23.81079733194625 + "points": { + "c1": -12.999877728375285, + "c2": 14.635837304345525, + "c3": -12.356599847772301, + "c4": 1.3393738515085012, + "c5": 19.48644530976102, + "c6": 4.825794055756123, + "c7": -7.3216985175555855 }, - "vertexSeeds": { - "c1": 3.307269936536865, - "c2": 3.2999569531359585, - "c3": 3.300467391182275, - "c4": 3.2961569780917483, - "c5": 3.284725384210366, - "c6": 3.2981128212979884, - "c7": 3.310551154999445 + "offsets": { + "c1": 5.566343042071197, + "c2": 4.771151178918191, + "c3": 3.975959315765107, + "c4": 3.1807674526121015, + "c5": 2.3855755894590955, + "c6": 1.5903837263060903, + "c7": 0.7951918631530055 }, "rgb": [222, 0, 59] }, @@ -433410,23 +433410,23 @@ "year": 1824, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 35.702916143448235, - "c2": 41.053967151409736, - "c3": -12.186898245119348, - "c4": 22.096853232406772, - "c5": -24.889196431908516, - "c6": -23.508786305671496, - "c7": 31.869982093084133 + "points": { + "c1": -37.69997124774975, + "c2": 26.841271325467773, + "c3": 22.47583489722912, + "c4": -30.85663516869947, + "c5": -1.857613650384657, + "c6": -9.523383775934931, + "c7": 36.44880379239977 }, - "vertexSeeds": { - "c1": 11.826882949466222, - "c2": 11.383828311823699, - "c3": 10.694781360043223, - "c4": 11.715921817936207, - "c5": 11.679671515002902, - "c6": 11.069512713037355, - "c7": 11.407297273431572 + "offsets": { + "c1": 19.80582524271845, + "c2": 16.976421636615793, + "c3": 14.147018030513173, + "c4": 11.317614424410552, + "c5": 8.488210818307897, + "c6": 5.658807212205242, + "c7": 2.829403606102621 }, "rgb": [238, 201, 159] }, @@ -433437,23 +433437,23 @@ "year": 1823, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": -5.8845219514971525, - "c2": -3.3059762561476873, - "c3": -9.980670138135775, - "c4": 16.94784645090984, - "c5": -0.16470798361441652, - "c6": 10.987675332128592, - "c7": 11.394398679927189 + "points": { + "c1": 30.927734393301126, + "c2": 0.5974799379791911, + "c3": -27.96537445398354, + "c4": 2.4332629776004673, + "c5": 15.823211206047187, + "c6": -27.473700107349146, + "c7": 8.230862808409807 }, - "vertexSeeds": { - "c1": 14.461963478892912, - "c2": 14.56854645915627, - "c3": 14.613120671517585, - "c4": 14.680609266418566, - "c5": 14.694584710841536, - "c6": 14.59570014525623, - "c7": 14.587122852399405 + "offsets": { + "c1": 24.53074433656958, + "c2": 21.02635228848821, + "c3": 17.521960240406845, + "c4": 14.017568192325474, + "c5": 10.513176144244104, + "c6": 7.008784096162737, + "c7": 3.5043920480813684 }, "rgb": [238, 201, 159] }, @@ -433464,23 +433464,23 @@ "year": 1823, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -0.20991822340022637, - "c2": 22.432857208837675, - "c3": -20.729677345396173, - "c4": 2.7400044285966736, - "c5": -11.511857569773534, - "c6": 9.871694094537041, - "c7": -12.596350960485765 + "points": { + "c1": -16.577141729299647, + "c2": -12.537477253855714, + "c3": -26.33567969862908, + "c4": 5.604346457214639, + "c5": 15.14642385991418, + "c6": -26.256903476329676, + "c7": 25.539701963254586 }, - "vertexSeeds": { - "c1": 9.469484688894921, - "c2": 9.45669161171821, - "c3": 9.48632289837036, - "c4": 9.484349850513446, - "c5": 9.454483404547709, - "c6": 9.464801700160896, - "c7": 9.454628932765537 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708652, + "c3": 11.326860841424077, + "c4": 9.061488673139202, + "c5": 6.796116504854326, + "c6": 4.53074433656945, + "c7": 2.265372168284875 }, "rgb": [238, 201, 159] }, @@ -433491,23 +433491,23 @@ "year": 1823, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 17.82393395185204, - "c2": -22.63227056165157, - "c3": -26.278790534742182, - "c4": -17.256314853352997, - "c5": -2.8309110693205035, - "c6": 13.09833526543401, - "c7": -4.330524096737708 + "points": { + "c1": 27.55129539656791, + "c2": -16.86054427945085, + "c3": -1.5008037770734326, + "c4": 14.4781467678729, + "c5": 31.686033835808452, + "c6": 30.64621602153472, + "c7": 31.204071267521876 }, - "vertexSeeds": { - "c1": 5.625404874219958, - "c2": 5.6810908510246465, - "c3": 5.621020128158715, - "c4": 5.726277207347099, - "c5": 5.632602939386538, - "c6": 5.796747106076127, - "c7": 5.633599312673102 + "offsets": { + "c1": 9.77346278317152, + "c2": 8.37725381414701, + "c3": 6.9810448451225025, + "c4": 5.5848358760980386, + "c5": 4.1886269070735285, + "c6": 2.7924179380490193, + "c7": 1.3962089690245096 }, "rgb": [86, 146, 138] }, @@ -433518,23 +433518,23 @@ "year": 1824, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": 12.502436197657197, - "c2": 31.053097058465085, - "c3": -26.551662004003447, - "c4": 4.695938517702601, - "c5": 22.371578320122424, - "c6": 21.76405135380555, - "c7": 27.613033577400486 + "points": { + "c1": -19.9649930521094, + "c2": 25.006720702725588, + "c3": 18.028683282333233, + "c4": -9.083382510603187, + "c5": 6.555087888274706, + "c6": -32.4144112337255, + "c7": -22.261964923639752 }, - "vertexSeeds": { - "c1": 8.763608875743255, - "c2": 8.472610889138494, - "c3": 7.889477833879523, - "c4": 8.111587787897955, - "c5": 8.364753423458861, - "c6": 8.731777966055153, - "c7": 8.62794143745198 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300969, + "c3": 10.517799352750805, + "c4": 8.41423948220064, + "c5": 6.310679611650493, + "c6": 4.207119741100328, + "c7": 2.103559870550164 }, "rgb": [238, 201, 159] }, @@ -433545,23 +433545,23 @@ "year": 1824, "resistanceReported": false, "duration": 26092800, - "curveSeeds": { - "c1": -25.04611642141517, - "c2": -11.8008137889173, - "c3": 35.912454760938516, - "c4": -23.445037685107717, - "c5": 13.392946287484165, - "c6": 14.217713988597815, - "c7": 21.968288361953903 + "points": { + "c1": -11.707035997450067, + "c2": -14.869844921354343, + "c3": -1.4486659804112563, + "c4": 37.95882749074333, + "c5": -20.692375566861976, + "c6": 10.935150142655615, + "c7": 20.709052760288507 }, - "vertexSeeds": { - "c1": 8.350323820675245, - "c2": 7.151297820414542, - "c3": 5.67603511223644, - "c4": 8.637649513190313, - "c5": 6.625144589685984, - "c6": 6.087286420528682, - "c7": 5.394670535053248 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019417, + "c3": 10.355987055016179, + "c4": 8.28478964401294, + "c5": 6.213592233009709, + "c6": 4.14239482200647, + "c7": 2.071197411003233 }, "rgb": [222, 0, 59] }, @@ -433572,23 +433572,23 @@ "year": 1823, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -13.339498844086858, - "c2": 3.672843765715239, - "c3": -5.583070355718579, - "c4": 18.036189964297208, - "c5": 16.62654283784233, - "c6": 13.17885543194273, - "c7": 21.300998398572716 + "points": { + "c1": -1.0266686612557905, + "c2": -14.969942856146263, + "c3": -4.09416984692448, + "c4": -2.1211232804366773, + "c5": 23.77694884466156, + "c6": 10.936600044536192, + "c7": -10.902282316482705 }, - "vertexSeeds": { - "c1": 9.726707458309301, - "c2": 10.545180891331533, - "c3": 10.853684382179427, - "c4": 10.883856217373824, - "c5": 9.801126360401069, - "c6": 9.827529203962001, - "c7": 10.794223943335444 + "offsets": { + "c1": 18.54368932038835, + "c2": 15.894590846047146, + "c3": 13.245492371705968, + "c4": 10.596393897364763, + "c5": 7.947295423023586, + "c6": 5.2981969486823814, + "c7": 2.6490984743412045 }, "rgb": [86, 146, 138] }, @@ -433599,23 +433599,23 @@ "year": 1823, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -23.7430357281722, - "c2": -2.477623112604398, - "c3": -8.081503450147814, - "c4": -14.846670728147318, - "c5": -6.324230590626424, - "c6": 15.45141519666804, - "c7": -5.578032881043892 + "points": { + "c1": 8.740882011494744, + "c2": 21.974668279470624, + "c3": -10.53201299346965, + "c4": 25.487572388222834, + "c5": -24.956352850216177, + "c6": 17.263506466982495, + "c7": 24.09389926880596 }, - "vertexSeeds": { - "c1": 6.263060356628015, - "c2": 6.2611551275822555, - "c3": 6.026246694769529, - "c4": 6.297874950014144, - "c5": 5.933275214369466, - "c6": 6.281873647652114, - "c7": 5.791710941032924 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112354, + "c3": 7.535829865926949, + "c4": 6.028663892741569, + "c5": 4.5214979195561655, + "c6": 3.0143319463707847, + "c7": 1.5071659731854035 }, "rgb": [238, 201, 159] }, @@ -433626,23 +433626,23 @@ "year": 1824, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -15.353859287070932, - "c2": 35.78658668848696, - "c3": -25.781930882232714, - "c4": 27.34764488007489, - "c5": 13.09456259370333, - "c6": -33.726868127193775, - "c7": -1.697251345262174 + "points": { + "c1": -20.444470768692796, + "c2": 29.179540564135962, + "c3": -31.1107315672947, + "c4": 10.258207756935782, + "c5": 15.144850202007085, + "c6": -28.52061463921642, + "c7": 11.0503519729386 }, - "vertexSeeds": { - "c1": 9.545821686480327, - "c2": 10.308953717311962, - "c3": 9.585098885793423, - "c4": 10.243775221473157, - "c5": 8.166911970556544, - "c6": 9.288788453153224, - "c7": 9.861557316801184 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.868238557558954, + "c3": 12.390198797965787, + "c4": 9.912159038372629, + "c5": 7.434119278779471, + "c6": 4.956079519186314, + "c7": 2.478039759593157 }, "rgb": [77, 76, 132] }, @@ -433653,23 +433653,23 @@ "year": 1824, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 19.39984093867666, - "c2": -23.543378888677424, - "c3": 24.222820403142435, - "c4": -31.01422242605703, - "c5": -2.267624378748824, - "c6": -18.482977039650635, - "c7": 19.40582814797986 + "points": { + "c1": 18.076915583277675, + "c2": 32.149996171003394, + "c3": 22.408819123468042, + "c4": -19.20621158460304, + "c5": 22.739313296686284, + "c6": 12.414287407437477, + "c7": -26.03856218338391 }, - "vertexSeeds": { - "c1": 11.616766827740317, - "c2": 11.653435521371282, - "c3": 11.889212920409317, - "c4": 12.109455708680027, - "c5": 11.970562315334453, - "c6": 11.802804250460298, - "c7": 11.654031929025635 + "offsets": { + "c1": 20.22653721682848, + "c2": 17.337031900138687, + "c3": 14.44752658344889, + "c4": 11.558021266759098, + "c5": 8.66851595006938, + "c6": 5.7790106333795865, + "c7": 2.8895053166897933 }, "rgb": [77, 76, 132] }, @@ -433680,23 +433680,23 @@ "year": 1824, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 16.622106063054602, - "c2": -29.773080209400366, - "c3": 21.562621585214742, - "c4": 19.385351206905092, - "c5": -14.627228238602989, - "c6": -30.053075623344025, - "c7": -17.291385475029486 + "points": { + "c1": 23.927757587021745, + "c2": 6.449431664505205, + "c3": -2.284737900749885, + "c4": -9.397680358408238, + "c5": 6.322636630086251, + "c6": -16.757383531942516, + "c7": 18.998689641565136 }, - "vertexSeeds": { - "c1": 11.263862441303901, - "c2": 10.76695625804107, - "c3": 9.615778136324584, - "c4": 10.827058818598253, - "c5": 10.83057017806865, - "c6": 11.54744182549474, - "c7": 10.29532099735929 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.532593619972257, + "c3": 13.777161349976875, + "c4": 11.021729079981515, + "c5": 8.266296809986134, + "c6": 5.510864539990752, + "c7": 2.7554322699953713 }, "rgb": [222, 0, 59] }, @@ -433707,23 +433707,23 @@ "year": 1824, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -10.693280039055963, - "c2": -8.945640607534632, - "c3": -1.4194614943500774, - "c4": 23.891276967942307, - "c5": 3.200733983333098, - "c6": -20.9201331145588, - "c7": -25.258690536030528 + "points": { + "c1": -31.865793287247477, + "c2": 8.026905346212587, + "c3": 23.31990673937817, + "c4": -9.83149413710856, + "c5": 20.848001371461024, + "c6": -6.827806696354198, + "c7": 30.932100008805527 }, - "vertexSeeds": { - "c1": 11.400842393358236, - "c2": 10.453317326899453, - "c3": 11.187879804202232, - "c4": 10.406529842612228, - "c5": 10.735613384339945, - "c6": 11.251700376117299, - "c7": 9.367008349308662 + "offsets": { + "c1": 19.28802588996764, + "c2": 16.532593619972257, + "c3": 13.777161349976891, + "c4": 11.02172907998151, + "c5": 8.266296809986128, + "c6": 5.510864539990755, + "c7": 2.755432269995382 }, "rgb": [238, 201, 159] }, @@ -433734,23 +433734,23 @@ "year": 1823, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": 21.883153563399084, - "c2": -4.686134897495126, - "c3": -1.4455401673808055, - "c4": -16.607388135380717, - "c5": 2.763458658740877, - "c6": 4.709596043832423, - "c7": -11.014693037789707 + "points": { + "c1": 24.21231739313368, + "c2": 5.87620448881065, + "c3": 13.770826908835211, + "c4": -22.711741325922926, + "c5": 1.0462111111504058, + "c6": 18.373515994032893, + "c7": -6.526546573269815 }, - "vertexSeeds": { - "c1": 7.060098502951027, - "c2": 6.965147006933417, - "c3": 7.544699317081519, - "c4": 7.285161417391775, - "c5": 7.349691128686946, - "c6": 7.172272838124623, - "c7": 7.342783340636749 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686549, + "c3": 9.015256588072127, + "c4": 7.212205270457705, + "c5": 5.4091539528432655, + "c6": 3.606102635228843, + "c7": 1.8030513176144214 }, "rgb": [222, 0, 59] }, @@ -433761,23 +433761,23 @@ "year": 1823, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -13.580784968592527, - "c2": -21.98516491439451, - "c3": 9.879642903536514, - "c4": 1.2122059983267448, - "c5": -12.179616835310672, - "c6": -18.338585404932367, - "c7": 18.200629056478455 + "points": { + "c1": 24.829010089928822, + "c2": 21.358211489877448, + "c3": -21.75363986553051, + "c4": 18.23064770113576, + "c5": 1.480853581525711, + "c6": 5.896116378628683, + "c7": 14.758891306088465 }, - "vertexSeeds": { - "c1": 6.163539021381743, - "c2": 6.090256007216674, - "c3": 6.4035206372249, - "c4": 6.424821996137479, - "c5": 6.3224501019087445, - "c6": 6.368075567543485, - "c7": 6.224966679088977 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [58, 15, 49] }, @@ -433788,23 +433788,23 @@ "year": 1824, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": 19.935502388632543, - "c2": -22.831901715989467, - "c3": -28.93995779019621, - "c4": 13.001229836152149, - "c5": -34.64689400593786, - "c6": -20.184976881115414, - "c7": -19.111272922190093 + "points": { + "c1": 27.439666490949037, + "c2": 38.692096351385175, + "c3": -0.957390862837272, + "c4": -14.499474084794215, + "c5": 17.903594749403084, + "c6": 34.26438284912601, + "c7": 21.444285107389298 }, - "vertexSeeds": { - "c1": 11.228023628497136, - "c2": 11.118029468260499, - "c3": 11.327003384563891, - "c4": 10.966466453812203, - "c5": 9.611317563625215, - "c6": 9.750311359020936, - "c7": 11.919023912670403 + "offsets": { + "c1": 20.29126213592233, + "c2": 17.39251040221914, + "c3": 14.493758668515948, + "c4": 11.595006934812758, + "c5": 8.696255201109565, + "c6": 5.797503467406374, + "c7": 2.898751733703191 }, "rgb": [58, 15, 49] }, @@ -433815,23 +433815,23 @@ "year": 1823, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -22.879466073356625, - "c2": 10.911634077870456, - "c3": 19.269942879668445, - "c4": 23.843782068498218, - "c5": -17.5168445131314, - "c6": -14.481983384333612, - "c7": -1.336500096401327 + "points": { + "c1": 12.795271414614458, + "c2": 7.1398514961955435, + "c3": 20.387339254170197, + "c4": -26.607503667835843, + "c5": -17.82935179653939, + "c6": 8.46797135128637, + "c7": -2.7411028131716613 }, - "vertexSeeds": { - "c1": 11.48402659252262, - "c2": 11.538547000883643, - "c3": 11.59414482435866, - "c4": 11.580514303449496, - "c5": 11.580771284387025, - "c6": 11.638061722321199, - "c7": 11.61042263750292 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133116, + "c3": 13.869625520110894, + "c4": 11.09570041608867, + "c5": 8.321775312066446, + "c6": 5.547850208044446, + "c7": 2.773925104022223 }, "rgb": [86, 146, 138] }, @@ -433842,23 +433842,23 @@ "year": 1824, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 22.690179732785513, - "c2": 15.367316853164322, - "c3": -1.746911413986986, - "c4": 16.134651220779556, - "c5": -25.300434488687202, - "c6": 18.1187897957545, - "c7": 24.67291961689339 + "points": { + "c1": 5.194850244149052, + "c2": 31.550961611200023, + "c3": 8.30206202508051, + "c4": -16.29320437143011, + "c5": 29.64075802673814, + "c6": -18.341536527646046, + "c7": -15.74634053983393 }, - "vertexSeeds": { - "c1": 6.539507269193181, - "c2": 7.14351199049942, - "c3": 7.777952001053614, - "c4": 7.326899421625729, - "c5": 7.763078299415792, - "c6": 7.760612204673414, - "c7": 7.513434109172433 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249659, + "c3": 9.338881183541377, + "c4": 7.471104946833105, + "c5": 5.603328710124823, + "c6": 3.7355524734165524, + "c7": 1.8677762367082706 }, "rgb": [222, 0, 59] }, @@ -433869,23 +433869,23 @@ "year": 1824, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 29.794298804312746, - "c2": 2.5644471207713337, - "c3": -29.554548418766423, - "c4": -27.435047440707493, - "c5": 26.28589007495666, - "c6": -18.904323384797152, - "c7": -9.330835852263707 + "points": { + "c1": 33.471783614643115, + "c2": 32.97993920898139, + "c3": 33.2389600524064, + "c4": 7.906234250320814, + "c5": -27.64380465262733, + "c6": 0.6413802500696377, + "c7": -34.171590129036254 }, - "vertexSeeds": { - "c1": 13.17845421612245, - "c2": 12.870002363011308, - "c3": 13.504418947736065, - "c4": 13.113112409449657, - "c5": 13.428715728934032, - "c6": 12.890544064583075, - "c7": 13.21435734945635 + "offsets": { + "c1": 22.556634304207122, + "c2": 19.334257975034657, + "c3": 16.111881645862187, + "c4": 12.889505316689796, + "c5": 9.667128987517328, + "c6": 6.444752658344859, + "c7": 3.222376329172392 }, "rgb": [86, 146, 138] }, @@ -433896,23 +433896,23 @@ "year": 1824, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 22.377576666738136, - "c2": 12.971368251491946, - "c3": -22.594325223450163, - "c4": 31.199009144364503, - "c5": 28.484963678821103, - "c6": 3.8681448708720225, - "c7": 9.914036267498766 + "points": { + "c1": 9.59008617334603, + "c2": -9.245805306967984, + "c3": 24.391669984098606, + "c4": 31.30740092953541, + "c5": -22.813146938767122, + "c6": 26.444375571776952, + "c7": 12.374018863478504 }, - "vertexSeeds": { - "c1": 10.955910930730779, - "c2": 10.885101229799501, - "c3": 11.498119301446126, - "c4": 10.8438727052448, - "c5": 11.51707953127384, - "c6": 10.82148916456407, - "c7": 11.303975353951989 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133145, + "c3": 13.869625520110956, + "c4": 11.095700416088764, + "c5": 8.321775312066572, + "c6": 5.547850208044382, + "c7": 2.773925104022191 }, "rgb": [58, 15, 49] }, @@ -433923,23 +433923,23 @@ "year": 1824, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 33.95309851188811, - "c2": -3.7300294055430143, - "c3": -11.158135515151347, - "c4": 23.85316904846055, - "c5": 2.2405248681389835, - "c6": -27.58371846499481, - "c7": -30.76510585368157 + "points": { + "c1": 13.68809692709506, + "c2": 18.27960092886189, + "c3": 20.093045143507233, + "c4": -29.71605146043701, + "c5": 34.72322393722113, + "c6": 12.223359958609045, + "c7": 25.14359254137088 }, - "vertexSeeds": { - "c1": 7.592812452630759, - "c2": 8.738938772350783, - "c3": 7.513519880995421, - "c4": 8.82269992747435, - "c5": 3.796263812337947, - "c6": 8.209936617059125, - "c7": 9.227339053841964 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.75866851595007, + "c3": 11.465557096625059, + "c4": 9.172445677300047, + "c5": 6.879334257975036, + "c6": 4.5862228386500234, + "c7": 2.29311141932501 }, "rgb": [238, 201, 159] }, @@ -433950,23 +433950,23 @@ "year": 1824, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 15.896508704448355, - "c2": -12.820026599468694, - "c3": 25.411455402984924, - "c4": -27.274598169916583, - "c5": 25.033063820749714, - "c6": -15.499086866527275, - "c7": -12.171520374656371 + "points": { + "c1": 11.607734274408305, + "c2": 26.62399500103663, + "c3": 9.171493124403828, + "c4": 22.788947628022765, + "c5": 25.309951566275462, + "c6": 24.74341945516417, + "c7": 27.923089519824156 }, - "vertexSeeds": { - "c1": 7.228075777294096, - "c2": 8.203190309155424, - "c3": 7.337786118333185, - "c4": 7.461177132051657, - "c5": 8.133524360730277, - "c6": 7.505854192937883, - "c7": 6.764042608065003 + "offsets": { + "c1": 14.433656957928804, + "c2": 12.371705963938972, + "c3": 10.309754969949148, + "c4": 8.247803975959318, + "c5": 6.185852981969486, + "c6": 4.123901987979663, + "c7": 2.0619509939898313 }, "rgb": [222, 0, 59] }, @@ -433977,23 +433977,23 @@ "year": 1824, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -24.319356248261787, - "c2": 13.944698187032554, - "c3": -26.761623523194817, - "c4": -24.822486167243863, - "c5": 24.582879332484257, - "c6": 8.930350943100155, - "c7": -7.941933757043767 + "points": { + "c1": -23.203753311314546, + "c2": -13.998220149132681, + "c3": 17.83994811061648, + "c4": -12.03923277787013, + "c5": 0.6400805190204579, + "c6": 1.7418812070490013, + "c7": 13.346854037499785 }, - "vertexSeeds": { - "c1": 8.2309871190215, - "c2": 7.582105276620519, - "c3": 9.47694643559515, - "c4": 7.415225495002522, - "c5": 9.520598286023816, - "c6": 9.248572772040372, - "c7": 9.313899419455101 + "offsets": { + "c1": 16.73139158576052, + "c2": 14.34119278779473, + "c3": 11.950993989828941, + "c4": 9.560795191863152, + "c5": 7.170596393897362, + "c6": 4.780397595931572, + "c7": 2.3901987979657826 }, "rgb": [222, 0, 59] }, @@ -434004,23 +434004,23 @@ "year": 1824, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": 4.797294457242053, - "c2": -3.1052179652004455, - "c3": -23.970616396458887, - "c4": -23.565323023968684, - "c5": 21.03825380332662, - "c6": -10.788294246330064, - "c7": -21.24692336277632 + "points": { + "c1": -13.829029288877846, + "c2": -13.095532825539976, + "c3": 14.914256792334257, + "c4": 27.806303922957667, + "c5": -12.451314518483791, + "c6": -9.881671725973906, + "c7": 4.131531659954597 }, - "vertexSeeds": { - "c1": 10.929272844190205, - "c2": 10.903747551830506, - "c3": 10.836345106003872, - "c4": 10.901894693722259, - "c5": 10.875038370246923, - "c6": 10.955604783529845, - "c7": 10.965434351876606 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.700416088765557, + "c3": 13.083680073971406, + "c4": 10.466944059177093, + "c5": 7.850208044382779, + "c6": 5.233472029588466, + "c7": 2.616736014794313 }, "rgb": [86, 146, 138] }, @@ -434031,23 +434031,23 @@ "year": 1824, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 21.74358962480259, - "c2": 15.257478660501732, - "c3": -21.502570103774083, - "c4": 14.497389413679741, - "c5": -19.335098217995274, - "c6": -7.397782651324462, - "c7": 4.492974701394267 + "points": { + "c1": 8.9636471942975, + "c2": 29.678550600628775, + "c3": -12.187739120831967, + "c4": -8.993168312187802, + "c5": -20.358116853838673, + "c6": 7.925794884912676, + "c7": -4.829015818176195 }, - "vertexSeeds": { - "c1": 9.564749889051653, - "c2": 9.8669205748844, - "c3": 9.598017329200673, - "c4": 9.97750055497499, - "c5": 9.485990462924095, - "c6": 9.713744200348389, - "c7": 9.978857887979826 + "offsets": { + "c1": 16.763754045307444, + "c2": 14.368932038834938, + "c3": 11.974110032362455, + "c4": 9.579288025889975, + "c5": 7.184466019417469, + "c6": 4.789644012944987, + "c7": 2.394822006472505 }, "rgb": [86, 146, 138] }, @@ -434058,23 +434058,23 @@ "year": 1824, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -13.12441146441732, - "c2": 24.69965937562164, - "c3": -14.896211216769562, - "c4": 15.13868888482229, - "c5": 5.49114070574198, - "c6": 18.32649209464879, - "c7": 21.391487915131737 + "points": { + "c1": 25.45424456805603, + "c2": 3.653864810222558, + "c3": 19.07117485481447, + "c4": -14.93906293837594, + "c5": 26.93302795388973, + "c6": -21.87795751942484, + "c7": 10.866004636020289 }, - "vertexSeeds": { - "c1": 5.2570466317466815, - "c2": 5.0212730321596215, - "c3": 5.273375549252568, - "c4": 4.992826236029184, - "c5": 4.993157874084559, - "c6": 5.247098170517661, - "c7": 5.00189585813956 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -434085,23 +434085,23 @@ "year": 1824, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": 0.1639743157779492, - "c2": 21.23945632876719, - "c3": 22.06277982886961, - "c4": -16.70985117949957, - "c5": 8.3764505631224, - "c6": 21.364680014869073, - "c7": -17.66412175382051 + "points": { + "c1": -12.341943045947746, + "c2": 16.77526932118309, + "c3": -16.10589567593173, + "c4": -5.655916146500001, + "c5": -24.093633820193542, + "c6": -5.261720294250967, + "c7": -7.181961108291116 }, - "vertexSeeds": { - "c1": 5.409936564812396, - "c2": 5.735798199242798, - "c3": 5.12667172588968, - "c4": 5.453473086467109, - "c5": 5.167055570428407, - "c6": 5.460412326296919, - "c7": 5.328760909406224 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830792, + "c3": 7.374017568192327, + "c4": 5.899214054553854, + "c5": 4.424410540915391, + "c6": 2.949607027276927, + "c7": 1.4748035136384634 }, "rgb": [238, 201, 159] }, @@ -434112,23 +434112,23 @@ "year": 1824, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": 28.077124456451983, - "c2": 14.554316824585882, - "c3": 13.122049873635092, - "c4": -5.747039563411647, - "c5": -22.158966202136693, - "c6": -9.72253440908932, - "c7": -9.976899151163689 + "points": { + "c1": -30.157620072745797, + "c2": -27.984126802725648, + "c3": 7.8061754453489485, + "c4": -13.055491041531425, + "c5": -0.3747837294503995, + "c6": 23.33740871808739, + "c7": -35.583088261500976 }, - "vertexSeeds": { - "c1": 7.8242788216079155, - "c2": 7.733770275462534, - "c3": 8.055431797058995, - "c4": 7.831735958507622, - "c5": 8.045992223892995, - "c6": 8.173223707687491, - "c7": 8.126217799765007 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013873, + "c3": 9.778085991678232, + "c4": 7.82246879334259, + "c5": 5.866851595006947, + "c6": 3.911234396671284, + "c7": 1.955617198335642 }, "rgb": [86, 146, 138] }, @@ -434139,23 +434139,23 @@ "year": 1823, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": -19.965345887194726, - "c2": 5.069749556143517, - "c3": -17.5138323209432, - "c4": 14.864319624196646, - "c5": -9.95063432707646, - "c6": 9.513263518498935, - "c7": -12.724842437911493 + "points": { + "c1": -16.079861456962337, + "c2": 18.051562977020573, + "c3": 7.461779458960951, + "c4": 3.9505156666372905, + "c5": 3.5077350927379705, + "c6": 10.934772828438433, + "c7": 12.042863855803802 }, - "vertexSeeds": { - "c1": 8.294984357588687, - "c2": 8.551544708767265, - "c3": 8.571749504465137, - "c4": 8.24707699262236, - "c5": 8.430016395449922, - "c6": 8.23056869066692, - "c7": 8.620838479825855 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099856, + "c3": 10.402219140083208, + "c4": 8.32177531206656, + "c5": 6.241331484049912, + "c6": 4.160887656033296, + "c7": 2.080443828016648 }, "rgb": [222, 0, 59] }, @@ -434166,23 +434166,23 @@ "year": 1824, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -12.513802258996307, - "c2": 2.5119341536537902, - "c3": 15.879727539533206, - "c4": 21.497145354117933, - "c5": -3.363332569404026, - "c6": 11.398107683620715, - "c7": -9.76044705318903 + "points": { + "c1": 2.230651590866117, + "c2": -7.132311994337151, + "c3": -22.744311436374254, + "c4": -7.6023480657940254, + "c5": -0.29489300272204133, + "c6": -9.705360809014724, + "c7": 2.6998160986007917 }, - "vertexSeeds": { - "c1": 5.277776408576741, - "c2": 4.995625077834591, - "c3": 4.916058300171233, - "c4": 5.273291333331412, - "c5": 4.885257766470258, - "c6": 5.212949287608699, - "c7": 4.8470930508541485 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [222, 0, 59] }, @@ -434193,23 +434193,23 @@ "year": 1823, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": 5.8016590554705765, - "c2": -13.683970294654145, - "c3": -0.48774669829341377, - "c4": 17.705448632190706, - "c5": -10.758253292285135, - "c6": -2.94059545812555, - "c7": -9.28498899090199 + "points": { + "c1": 17.52539952976269, + "c2": -16.68535429564363, + "c3": -11.687293435523937, + "c4": -3.304622101852736, + "c5": 14.74973588341079, + "c6": 2.2332762909560486, + "c7": 14.586235624934385 }, - "vertexSeeds": { - "c1": 7.955461587992781, - "c2": 7.694426970714217, - "c3": 7.89904345299163, - "c4": 7.692882916052198, - "c5": 7.565041477225773, - "c6": 7.370009378743738, - "c7": 8.06935186409407 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772544, + "c3": 9.639389736477106, + "c4": 7.711511789181689, + "c5": 5.783633841886272, + "c6": 3.855755894590855, + "c7": 1.9278779472954173 }, "rgb": [77, 76, 132] }, @@ -434220,23 +434220,23 @@ "year": 1824, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 8.839068754503263, - "c2": 0.8648360196549874, - "c3": -14.97953437132749, - "c4": 21.97657675031984, - "c5": 9.576178341208728, - "c6": 20.263536804980436, - "c7": 4.942251973128013 + "points": { + "c1": 8.703077534865407, + "c2": 25.866926465708907, + "c3": -1.8609570567457574, + "c4": -13.283894765653994, + "c5": 14.358079037228421, + "c6": 31.68284543481836, + "c7": -15.913033119156292 }, - "vertexSeeds": { - "c1": 10.164066125943629, - "c2": 9.349051430412125, - "c3": 10.348012724768756, - "c4": 10.002722016248864, - "c5": 10.039148441199574, - "c6": 9.647381895269227, - "c7": 10.181545591928876 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.95145631067962, + "c3": 12.459546925566357, + "c4": 9.967637540453063, + "c5": 7.475728155339802, + "c6": 4.98381877022654, + "c7": 2.491909385113262 }, "rgb": [238, 201, 159] }, @@ -434247,23 +434247,23 @@ "year": 1824, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -8.5290850781886, - "c2": -2.262848082527068, - "c3": -16.44446692939364, - "c4": 14.002220356474425, - "c5": -26.70582832556322, - "c6": 21.198622181342678, - "c7": 9.637083777173245 + "points": { + "c1": 3.4930810015156197, + "c2": 12.977220371802012, + "c3": 17.698006282683394, + "c4": 25.98478433178684, + "c5": 10.502366515927235, + "c6": -27.462588220887852, + "c7": 7.647185400069439 }, - "vertexSeeds": { - "c1": 5.078996359702079, - "c2": 4.851074203855916, - "c3": 5.2258606791336915, - "c4": 5.2325871025333806, - "c5": 4.8659027487420525, - "c6": 4.9729620545789714, - "c7": 4.865563881500061 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -434274,23 +434274,23 @@ "year": 1824, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 15.735967491494542, - "c2": 19.688945674038372, - "c3": -16.385656272146058, - "c4": -19.76678404359399, - "c5": -2.8803012065562825, - "c6": 23.109401778831128, - "c7": 16.395012529183987 + "points": { + "c1": 7.848075840553406, + "c2": -9.609457911079097, + "c3": -25.259030877931927, + "c4": -6.775475483823733, + "c5": 11.266266617512237, + "c6": -10.204122228076173, + "c7": -25.820816570286993 }, - "vertexSeeds": { - "c1": 5.054842735419569, - "c2": 5.225675878804087, - "c3": 5.092586633291891, - "c4": 4.8571980097312855, - "c5": 5.059262287021008, - "c6": 4.894468956238881, - "c7": 5.0573725261348255 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -434301,23 +434301,23 @@ "year": 1824, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -21.247575205771994, - "c2": -12.402980403994526, - "c3": 13.690146464164357, - "c4": -15.688192775579317, - "c5": 5.274178977256717, - "c6": -26.991684244446617, - "c7": -12.456073947398004 + "points": { + "c1": -17.729829816038055, + "c2": 14.78763245202412, + "c3": 23.413433930452925, + "c4": -20.482747850254675, + "c5": 24.459530862435898, + "c6": 25.62481635721877, + "c7": -19.33375890294321 }, - "vertexSeeds": { - "c1": 3.1500944267430278, - "c2": 3.473289334756021, - "c3": 3.3541905268566876, - "c4": 3.35156954235981, - "c5": 3.420126775488104, - "c6": 3.4143578768361906, - "c7": 3.37612865190797 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [86, 146, 138] }, @@ -434328,23 +434328,23 @@ "year": 1823, "resistanceReported": false, "duration": 7171200, - "curveSeeds": { - "c1": 13.71508553129534, - "c2": -14.720917675273492, - "c3": 1.4740864283932709, - "c4": 1.4766277857473042, - "c5": -15.120270770200474, - "c6": -1.484443471647257, - "c7": -8.44566972670367 + "points": { + "c1": 8.350595581545672, + "c2": 6.967829725940749, + "c3": -8.688557727424413, + "c4": 9.521793327948476, + "c5": -14.985530346654354, + "c6": 11.893573767169073, + "c7": -18.70514785702856 }, - "vertexSeeds": { - "c1": 7.646969073436189, - "c2": 8.216238732534132, - "c3": 8.215351469047208, - "c4": 8.329889887024494, - "c5": 7.975067960251321, - "c6": 7.967729353892834, - "c7": 7.927956998099373 + "offsets": { + "c1": 14.077669902912621, + "c2": 12.066574202496541, + "c3": 10.05547850208044, + "c4": 8.04438280166436, + "c5": 6.03328710124826, + "c6": 4.02219140083218, + "c7": 2.0110957004160803 }, "rgb": [58, 15, 49] }, @@ -434355,23 +434355,23 @@ "year": 1824, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -6.600503441382237, - "c2": 19.008260569817285, - "c3": -7.614318980372033, - "c4": -1.4176749187602837, - "c5": -14.493958806795856, - "c6": -21.19711632011357, - "c7": -5.358874805618534 + "points": { + "c1": -2.754340676347308, + "c2": 19.02688346853031, + "c3": -26.864542917658017, + "c4": -23.216476007631986, + "c5": -20.766121319874983, + "c6": 14.707508265597273, + "c7": -5.63368134709749 }, - "vertexSeeds": { - "c1": 7.302549384832258, - "c2": 7.332819096762524, - "c3": 7.402337426497661, - "c4": 7.673182574944508, - "c5": 7.690291695879662, - "c6": 7.665583325018268, - "c7": 7.41722091273786 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.178918169209425, + "c3": 9.31576514100786, + "c4": 7.452612112806283, + "c5": 5.58945908460472, + "c6": 3.7263060564031414, + "c7": 1.8631530282015627 }, "rgb": [58, 15, 49] }, @@ -434382,23 +434382,23 @@ "year": 1824, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -0.8822133449613432, - "c2": 15.756815649520757, - "c3": -12.92696973596431, - "c4": 7.07809654568214, - "c5": -5.678560229093172, - "c6": -18.106808057178206, - "c7": -9.074920851564954 + "points": { + "c1": -17.008874606682035, + "c2": -24.888026645561652, + "c3": -18.454272333045527, + "c4": -17.9663446797856, + "c5": 30.828208745532766, + "c6": 25.655635509259692, + "c7": 7.283796927391332 }, - "vertexSeeds": { - "c1": 12.24967398913468, - "c2": 11.827293604045662, - "c3": 13.09617984429702, - "c4": 12.21591731633316, - "c5": 12.230514630396005, - "c6": 12.465737346383987, - "c7": 12.581848335522933 + "offsets": { + "c1": 22.071197411003237, + "c2": 18.918169209431333, + "c3": 15.76514100785947, + "c4": 12.612112806287568, + "c5": 9.459084604715667, + "c6": 6.306056403143767, + "c7": 3.1530282015719004 }, "rgb": [222, 0, 59] }, @@ -434409,23 +434409,23 @@ "year": 1824, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -7.5218094170275585, - "c2": -10.050659821767503, - "c3": -10.701924825667367, - "c4": -22.693575694655163, - "c5": 11.959674964126624, - "c6": -22.561115119862016, - "c7": 0.37320065853101525 + "points": { + "c1": 12.057857714383456, + "c2": -27.99790501793048, + "c3": -13.878663350740515, + "c4": 17.978083727990008, + "c5": 24.977076970738917, + "c6": 18.7432844945892, + "c7": 1.9142096721871091 }, - "vertexSeeds": { - "c1": 5.335765105293756, - "c2": 4.2623027793903105, - "c3": 4.8798300578268226, - "c4": 4.15670942476528, - "c5": 4.2711510893672315, - "c6": 4.910483121299143, - "c7": 4.872333711312678 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342581, + "c3": 6.518723994452151, + "c4": 5.214979195561724, + "c5": 3.9112343966712904, + "c6": 2.607489597780862, + "c7": 1.3037447988904327 }, "rgb": [58, 15, 49] }, @@ -434436,23 +434436,23 @@ "year": 1824, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 14.788495539133937, - "c2": 16.369348942165825, - "c3": -23.71866127357047, - "c4": 19.270713813687212, - "c5": -3.854032102147034, - "c6": 0.5990137485385958, - "c7": -23.783088244042354 + "points": { + "c1": -1.0601186025779832, + "c2": 6.95149406746037, + "c3": 16.795856810207976, + "c4": 4.0391118841079034, + "c5": 2.7179009947560395, + "c6": -14.027710801321815, + "c7": 25.100542737469556 }, - "vertexSeeds": { - "c1": 5.018987991553614, - "c2": 5.057809101668947, - "c3": 4.845204999718002, - "c4": 4.894435235207092, - "c5": 4.84408684233118, - "c6": 5.068714712148086, - "c7": 5.1749071597005605 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [77, 76, 132] }, @@ -434463,23 +434463,23 @@ "year": 1824, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 21.790658253717268, - "c2": -0.23166033780616857, - "c3": 18.227182299266204, - "c4": 21.052030528782176, - "c5": -6.835429886038661, - "c6": 26.047713180678684, - "c7": -25.848028001219017 + "points": { + "c1": 11.468793645806223, + "c2": 29.12722580809566, + "c3": -18.344361601030055, + "c4": 3.676537375732856, + "c5": -29.45893008099515, + "c6": 12.702419551653776, + "c7": -4.429280795815686 }, - "vertexSeeds": { - "c1": 8.438471593519084, - "c2": 8.450543246206696, - "c3": 8.479345028768913, - "c4": 8.531971407593142, - "c5": 8.463316046210934, - "c6": 8.534271626818827, - "c7": 8.49853594483765 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737821, + "c3": 10.194174757281568, + "c4": 8.155339805825214, + "c5": 6.116504854368961, + "c6": 4.077669902912607, + "c7": 2.038834951456354 }, "rgb": [77, 76, 132] }, @@ -434490,23 +434490,23 @@ "year": 1824, "resistanceReported": false, "duration": 5529600, - "curveSeeds": { - "c1": 15.594624823406146, - "c2": -0.7786172922877412, - "c3": -6.106293740537444, - "c4": 3.9740925699538856, - "c5": -2.465814426176694, - "c6": 10.52139136560162, - "c7": -0.5893773758162446 + "points": { + "c1": -2.392354913344052, + "c2": -14.033658762046251, + "c3": -5.810893276458275, + "c4": 15.892480398179071, + "c5": -2.4241388087243934, + "c6": 3.67444354277222, + "c7": -3.7623740776027486 }, - "vertexSeeds": { - "c1": 3.1987047676146245, - "c2": 3.461209434499321, - "c3": 3.1789063484436624, - "c4": 3.2900531382218206, - "c5": 3.097820943432605, - "c6": 3.42093254149673, - "c7": 3.3411594747043134 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [77, 76, 132] }, @@ -434517,23 +434517,23 @@ "year": 1824, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 16.002275865432804, - "c2": -19.183106291501403, - "c3": 13.131160449000493, - "c4": -13.048024050424596, - "c5": 21.07888812361156, - "c6": -13.143156850892447, - "c7": 1.8539431666460544 + "points": { + "c1": -10.421209042339537, + "c2": 9.272360789971987, + "c3": 9.990415405347942, + "c4": 2.479139671908559, + "c5": -20.78706195463933, + "c6": 18.945393744014677, + "c7": -22.206321066012958 }, - "vertexSeeds": { - "c1": 10.774256040635748, - "c2": 10.745884570622385, - "c3": 10.773821529374485, - "c4": 10.76927009223817, - "c5": 10.774860486430233, - "c6": 10.773919647175067, - "c7": 10.768078356618219 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578362946, + "c3": 12.8525196486363, + "c4": 10.28201571890863, + "c5": 7.711511789181984, + "c6": 5.141007859454315, + "c7": 2.570503929727669 }, "rgb": [77, 76, 132] }, @@ -434544,23 +434544,23 @@ "year": 1824, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 2.749827171006423, - "c2": 3.9679894432329483, - "c3": -4.924756038381506, - "c4": -0.8124935908777182, - "c5": 25.383146227025172, - "c6": 4.406333123550702, - "c7": -15.050610599773243 + "points": { + "c1": 22.5765604002003, + "c2": 20.81045413337187, + "c3": 10.805796874876663, + "c4": 28.665976929563406, + "c5": 26.329248248282063, + "c6": 28.736771567746622, + "c7": 12.610572943150395 }, - "vertexSeeds": { - "c1": 5.277451615171162, - "c2": 5.12478349172909, - "c3": 5.223547337107352, - "c4": 4.880282363983232, - "c5": 4.860588154578336, - "c6": 4.93452210245135, - "c7": 5.074726107486421 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [77, 76, 132] }, @@ -434571,23 +434571,23 @@ "year": 1824, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 18.55923760393372, - "c2": 10.968053388362915, - "c3": -6.230747870791788, - "c4": 25.422100190148118, - "c5": 10.536066110628926, - "c6": 1.1491646682545174, - "c7": 25.58361021513908 + "points": { + "c1": 11.628103393312383, + "c2": 21.940992617554468, + "c3": -2.4811727764986813, + "c4": -1.4830820193215537, + "c5": 11.059255170946937, + "c6": -22.022763360183887, + "c7": -16.967420472748852 }, - "vertexSeeds": { - "c1": 6.447146248680248, - "c2": 6.417129865610983, - "c3": 6.358141190594808, - "c4": 6.432448922670947, - "c5": 6.350829139102551, - "c6": 6.433332927175279, - "c7": 6.434940515089604 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434119, + "c3": 7.720758206195099, + "c4": 6.176606564956079, + "c5": 4.632454923717059, + "c6": 3.0883032824780394, + "c7": 1.5441516412390197 }, "rgb": [58, 15, 49] }, @@ -434598,23 +434598,23 @@ "year": 1824, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 3.877360025639444, - "c2": -26.22108295528365, - "c3": 9.35895771822819, - "c4": 24.115577993513803, - "c5": 4.3154294230235095, - "c6": -27.11091881502568, - "c7": -20.737943331427726 + "points": { + "c1": -2.777622782067237, + "c2": 19.17552105098366, + "c3": -2.625527150282185, + "c4": 11.143508293979494, + "c5": -21.21220445957982, + "c6": -12.428559077869306, + "c7": -21.592224024842796 }, - "vertexSeeds": { - "c1": 9.121452724940262, - "c2": 8.008416677807721, - "c3": 7.911305043098909, - "c4": 8.535445821090285, - "c5": 8.400816220010528, - "c6": 8.199231884003481, - "c7": 8.271306110464742 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105412, + "c3": 10.980120203421182, + "c4": 8.784096162736937, + "c5": 6.588072122052706, + "c6": 4.392048081368475, + "c7": 2.196024040684244 }, "rgb": [222, 0, 59] }, @@ -434625,23 +434625,23 @@ "year": 1824, "resistanceReported": false, "duration": 7344000, - "curveSeeds": { - "c1": -8.873877874634156, - "c2": -6.016173359441197, - "c3": -1.5615037937391634, - "c4": -14.493384766669914, - "c5": 7.534513706593209, - "c6": 6.802525570415547, - "c7": -15.999464215652685 + "points": { + "c1": -14.554104893744338, + "c2": -2.6233980731645303, + "c3": 4.428141592616004, + "c4": 11.23671878550746, + "c5": -8.87219899403828, + "c6": 11.402380750946861, + "c7": 9.246459116902926 }, - "vertexSeeds": { - "c1": 7.357763870640038, - "c2": 7.103443258961288, - "c3": 6.881991857397866, - "c4": 6.927303252198487, - "c5": 6.857637957546401, - "c6": 6.986350176294666, - "c7": 6.833368690821201 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766982, + "c3": 9.06148867313916, + "c4": 7.249190938511322, + "c5": 5.436893203883498, + "c6": 3.624595469255661, + "c7": 1.8122977346278233 }, "rgb": [238, 201, 159] }, @@ -434652,23 +434652,23 @@ "year": 1824, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -19.61103165490267, - "c2": -13.049108823538736, - "c3": -5.4020513112368285, - "c4": 0.8324215857616117, - "c5": 20.23209963875937, - "c6": 3.9593021682786116, - "c7": 19.856919935774695 + "points": { + "c1": -24.80957443916227, + "c2": 13.246600768764335, + "c3": 10.41485039956478, + "c4": 25.853266926698854, + "c5": 8.48410098199604, + "c6": -0.8592372387953624, + "c7": -27.396298617065934 }, - "vertexSeeds": { - "c1": 5.6203839583591435, - "c2": 5.298590857599651, - "c3": 5.570282019219294, - "c4": 5.486366195104215, - "c5": 5.238704802033114, - "c6": 5.455283732109903, - "c7": 5.462087839665763 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.32177531206657, + "c3": 6.934812760055473, + "c4": 5.547850208044376, + "c5": 4.160887656033294, + "c6": 2.773925104022196, + "c7": 1.386962552011098 }, "rgb": [238, 201, 159] }, @@ -434679,23 +434679,23 @@ "year": 1824, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 22.756068154270807, - "c2": -7.289905017440944, - "c3": -31.688638179053612, - "c4": 7.09571855330217, - "c5": -13.12963607041566, - "c6": -8.553617191278025, - "c7": -9.428028397948726 + "points": { + "c1": 14.23484538849624, + "c2": 19.58765281601891, + "c3": 30.3888694554945, + "c4": 5.071009200602006, + "c5": -25.2301681213412, + "c6": -21.946181494371622, + "c7": -27.260543021284224 }, - "vertexSeeds": { - "c1": 3.2409510988560233, - "c2": 3.244304837979583, - "c3": 3.3949757919129726, - "c4": 3.231627443908062, - "c5": 3.411212309420301, - "c6": 3.143206935395269, - "c7": 3.412251960077792 + "offsets": { + "c1": 5.728155339805825, + "c2": 4.909847434119283, + "c3": 4.091539528432731, + "c4": 3.273231622746189, + "c5": 2.454923717059637, + "c6": 1.6366158113730944, + "c7": 0.818307905686552 }, "rgb": [238, 201, 159] }, @@ -434706,23 +434706,23 @@ "year": 1824, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": -11.832901869268701, - "c2": 10.316336518651902, - "c3": -16.873085262990017, - "c4": 19.67128166688847, - "c5": 21.05979907923645, - "c6": 5.2044719203170295, - "c7": 14.969895837286195 + "points": { + "c1": -0.49842545012148065, + "c2": 6.791599426963387, + "c3": -18.60787405641799, + "c4": -20.172946685085385, + "c5": -15.880906343855957, + "c6": -17.242057109226742, + "c7": -19.715021396017526 }, - "vertexSeeds": { - "c1": 3.12172448494412, - "c2": 3.3426551392915, - "c3": 3.2106624069724767, - "c4": 3.255118505603488, - "c5": 3.3965914110768236, - "c6": 3.5080798273821814, - "c7": 3.383668476373849 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [238, 201, 159] }, @@ -434733,23 +434733,23 @@ "year": 1824, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 17.967563472019865, - "c2": -22.89137276231485, - "c3": -19.547109916179167, - "c4": 10.118050710109745, - "c5": 19.20709174615691, - "c6": 12.950431595559056, - "c7": -15.174696391266977 + "points": { + "c1": 23.092465636764015, + "c2": 14.269650806846332, + "c3": 26.295671392807986, + "c4": -5.400820420211421, + "c5": 25.941968191656134, + "c6": 5.8986484624338935, + "c7": 2.0667487279137333 }, - "vertexSeeds": { - "c1": 4.599767855789604, - "c2": 4.35953806732539, - "c3": 4.520923148775645, - "c4": 4.414723688483825, - "c5": 4.640012639330855, - "c6": 4.353159137643889, - "c7": 4.2849481936814 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693483, + "c3": 5.570966250577904, + "c4": 4.456773000462325, + "c5": 3.3425797503467365, + "c6": 2.228386500231158, + "c7": 1.114193250115579 }, "rgb": [222, 0, 59] }, @@ -434760,23 +434760,23 @@ "year": 1824, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -21.934936699469606, - "c2": 8.282383286253026, - "c3": 16.071715397086948, - "c4": -19.332213494991144, - "c5": 15.830891530007918, - "c6": -3.4945834794674724, - "c7": 8.048202898184336 + "points": { + "c1": 8.741352534356452, + "c2": -10.642814959376086, + "c3": 6.534461904972069, + "c4": -21.216985663667504, + "c5": 22.675919188360368, + "c6": 13.939416793299465, + "c7": -14.689914277304549 }, - "vertexSeeds": { - "c1": 5.264394522567872, - "c2": 5.264570231888851, - "c3": 5.0980669137692045, - "c4": 4.788204028476647, - "c5": 5.243293975379363, - "c6": 4.904178162058582, - "c7": 4.78173416199807 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181698, + "c3": 6.426259824318075, + "c4": 5.141007859454466, + "c5": 3.8557558945908412, + "c6": 2.570503929727225, + "c7": 1.2852519648636085 }, "rgb": [238, 201, 159] }, @@ -434787,23 +434787,23 @@ "year": 1824, "resistanceReported": false, "duration": 10713600, - "curveSeeds": { - "c1": -11.121629352474534, - "c2": 10.779817199564512, - "c3": 15.008816694054715, - "c4": 3.1953378198836973, - "c5": -15.933436293637271, - "c6": 1.5709665695994666, - "c7": -9.326928359599096 + "points": { + "c1": -4.985804205171945, + "c2": 17.302274065404816, + "c3": -1.0452446025008335, + "c4": -21.38453205632254, + "c5": -11.149796516770065, + "c6": 15.276986252911883, + "c7": 1.306108569068705 }, - "vertexSeeds": { - "c1": 4.394424169086202, - "c2": 4.640507783618051, - "c3": 4.735769445870578, - "c4": 4.750192111785851, - "c5": 4.706225224110098, - "c6": 4.585063550788242, - "c7": 4.507128806932076 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894594, + "c3": 5.686546463245488, + "c4": 4.549237170596393, + "c5": 3.411927877947297, + "c6": 2.2746185852981915, + "c7": 1.1373092926490957 }, "rgb": [58, 15, 49] }, @@ -434814,23 +434814,23 @@ "year": 1824, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -9.18421904940703, - "c2": -26.47338222048419, - "c3": -5.508590005641889, - "c4": -1.577227601642555, - "c5": -8.672639890925222, - "c6": -21.428870757331158, - "c7": 8.392702910725056 + "points": { + "c1": -32.17198898990304, + "c2": -20.697115240587316, + "c3": 27.835054767819784, + "c4": -2.455561444076082, + "c5": -29.820777567911964, + "c6": -21.355277965526703, + "c7": 25.987372929012487 }, - "vertexSeeds": { - "c1": 10.037477172309858, - "c2": 10.310001353350454, - "c3": 10.340278972357375, - "c4": 10.017644436755859, - "c5": 10.322829049404657, - "c6": 9.98061313833207, - "c7": 10.364979558075218 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518744, + "c3": 12.367082755432262, + "c4": 9.89366620434583, + "c5": 7.420249653259348, + "c6": 4.946833102172915, + "c7": 2.4734165510864576 }, "rgb": [222, 0, 59] }, @@ -434841,23 +434841,23 @@ "year": 1824, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": 9.866045367575861, - "c2": -10.51529089258168, - "c3": -11.846938057302863, - "c4": 4.011013225471206, - "c5": 10.195551821751668, - "c6": -14.844359298774371, - "c7": -13.59891453353831 + "points": { + "c1": -1.8408306054743235, + "c2": 7.871119408685004, + "c3": 7.2783527147717635, + "c4": 9.077290541945832, + "c5": -3.3922251489765465, + "c6": 10.696376751189387, + "c7": -7.869118293903682 }, - "vertexSeeds": { - "c1": 4.292933840329475, - "c2": 3.9800972473417766, - "c3": 4.24206631161026, - "c4": 5.2309181928768105, - "c5": 4.855646798471845, - "c6": 5.081969923874167, - "c7": 5.193323633305397 + "offsets": { + "c1": 8.89967637540453, + "c2": 7.628294036061026, + "c3": 6.356911696717521, + "c4": 5.085529357374017, + "c5": 3.814147018030513, + "c6": 2.5427646786870084, + "c7": 1.2713823393435042 }, "rgb": [58, 15, 49] }, @@ -434868,23 +434868,23 @@ "year": 1824, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 7.025055740352901, - "c2": 16.217393971017664, - "c3": 13.587238565886778, - "c4": 14.092417117680775, - "c5": -3.8896001380510015, - "c6": 6.564962448019866, - "c7": -0.4124740705279457 + "points": { + "c1": -1.0738480236320243, + "c2": 7.7281436294203125, + "c3": 19.241125681740492, + "c4": -8.489802810965122, + "c5": 10.527885739729491, + "c6": 14.521873206365711, + "c7": -3.750478846631456 }, - "vertexSeeds": { - "c1": 4.558836065653748, - "c2": 4.226822650095111, - "c3": 4.5497792822669165, - "c4": 4.598606678244586, - "c5": 4.596360565055476, - "c6": 4.335696805392744, - "c7": 4.587132205803186 + "offsets": { + "c1": 7.702265372168285, + "c2": 6.601941747572818, + "c3": 5.5016181229773435, + "c4": 4.401294498381876, + "c5": 3.300970873786409, + "c6": 2.2006472491909417, + "c7": 1.1003236245954673 }, "rgb": [77, 76, 132] }, @@ -434895,23 +434895,23 @@ "year": 1825, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -19.85924188682539, - "c2": -8.517771686397943, - "c3": 5.82878375776118, - "c4": 12.324399809826808, - "c5": -41.879786312009585, - "c6": -13.001111872715569, - "c7": -14.812572423527698 + "points": { + "c1": -7.004222446880853, + "c2": 30.825952411718745, + "c3": -16.140798775174012, + "c4": -24.068907619765792, + "c5": -29.365169181618356, + "c6": -11.702204046620032, + "c7": -15.460823507797546 }, - "vertexSeeds": { - "c1": 5.270934243040749, - "c2": 5.361138040484609, - "c3": 5.305895566205638, - "c4": 4.857006506921435, - "c5": 5.0640727864372606, - "c6": 4.982939681024677, - "c7": 4.840295823084631 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181698, + "c3": 6.426259824318075, + "c4": 5.141007859454466, + "c5": 3.8557558945908412, + "c6": 2.570503929727225, + "c7": 1.2852519648636085 }, "rgb": [238, 201, 159] }, @@ -434922,23 +434922,23 @@ "year": 1825, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": -15.846928092436098, - "c2": 18.502604401566224, - "c3": 23.465783997284177, - "c4": -32.53396660090987, - "c5": -24.999604957145273, - "c6": -37.81154309216267, - "c7": 43.257621395226096 + "points": { + "c1": 24.618619844974774, + "c2": -42.97138969748795, + "c3": 37.56627243155373, + "c4": 23.367659984807062, + "c5": 39.05308965389803, + "c6": -4.757604820498571, + "c7": -8.130275284545071 }, - "vertexSeeds": { - "c1": 4.958304629392786, - "c2": 4.934766810419337, - "c3": 4.9065551870392445, - "c4": 4.917685471858105, - "c5": 4.987890789642692, - "c6": 5.251200484907487, - "c7": 5.2609539566987795 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [86, 146, 138] }, @@ -434949,23 +434949,23 @@ "year": 1824, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": 5.001136361338897, - "c2": -15.562449334543775, - "c3": 2.9170486470928623, - "c4": 19.601426429954756, - "c5": -4.6320767387525095, - "c6": 17.00652497348237, - "c7": 9.842762584131478 + "points": { + "c1": 16.21998334000382, + "c2": 17.538348618302372, + "c3": -7.471346636363858, + "c4": -3.481405657275104, + "c5": -17.244523167167777, + "c6": 17.8575862138444, + "c7": 25.423121516533016 }, - "vertexSeeds": { - "c1": 4.099759622639853, - "c2": 4.59111069011403, - "c3": 4.87635524673998, - "c4": 4.934522477401699, - "c5": 4.238811306891601, - "c6": 4.4267732341512325, - "c7": 4.957629874196929 + "offsets": { + "c1": 8.349514563106796, + "c2": 7.156726768377252, + "c3": 5.963938973647709, + "c4": 4.77115117891817, + "c5": 3.578363384188626, + "c6": 2.3855755894590827, + "c7": 1.1927877947295438 }, "rgb": [77, 76, 132] }, @@ -434976,23 +434976,23 @@ "year": 1824, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 23.517358354088607, - "c2": 1.7734119606433048, - "c3": 8.620414041315414, - "c4": 1.928995295724679, - "c5": 5.558813899229104, - "c6": 6.609885529309665, - "c7": -11.880209160518639 + "points": { + "c1": 10.997560382449642, + "c2": 21.564130074318435, + "c3": -25.4046649646511, + "c4": 9.441449896133662, + "c5": 21.282801346115193, + "c6": -7.951063096818157, + "c7": 10.541420774662924 }, - "vertexSeeds": { - "c1": 3.1117882995869524, - "c2": 3.2354142367562404, - "c3": 3.2072334708038737, - "c4": 3.1570185973537006, - "c5": 3.314496033190369, - "c6": 3.386883597666869, - "c7": 3.2539767949449647 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [238, 201, 159] }, @@ -435003,23 +435003,23 @@ "year": 1824, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -14.987770167964793, - "c2": -12.67084543197464, - "c3": 15.729599737661637, - "c4": 11.062029512187856, - "c5": -25.214337785327288, - "c6": -3.7254357895552914, - "c7": -11.125926238994747 + "points": { + "c1": -6.266582981977024, + "c2": 12.119693451802384, + "c3": -30.09968174092442, + "c4": 11.493135003847648, + "c5": 11.113742652048728, + "c6": 26.427698460315902, + "c7": -31.809446521981815 }, - "vertexSeeds": { - "c1": 3.1059693449124737, - "c2": 3.3131372345871415, - "c3": 3.4814298402778956, - "c4": 3.326872392424151, - "c5": 3.461504579461961, - "c6": 3.52474756058032, - "c7": 3.387146048866873 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [222, 0, 59] }, @@ -435030,23 +435030,23 @@ "year": 1824, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": -10.90382916736284, - "c2": 2.5518002978961896, - "c3": 7.6586134724895665, - "c4": 10.052950194479479, - "c5": -15.844772992245819, - "c6": 15.052218848050174, - "c7": 15.13142675473864 + "points": { + "c1": 16.26078984548287, + "c2": 8.399754659732714, + "c3": -17.491190021066114, + "c4": -2.345378833785965, + "c5": -4.897881372319507, + "c6": 3.2273984689833917, + "c7": 16.4331129293777 }, - "vertexSeeds": { - "c1": 8.623953399959387, - "c2": 9.561092411137837, - "c3": 8.761089630138047, - "c4": 9.7905400101026, - "c5": 9.334420330910755, - "c6": 9.897689741956318, - "c7": 8.37696650574763 + "offsets": { + "c1": 16.666666666666664, + "c2": 14.285714285714288, + "c3": 11.904761904761902, + "c4": 9.523809523809526, + "c5": 7.142857142857139, + "c6": 4.761904761904763, + "c7": 2.3809523809523765 }, "rgb": [77, 76, 132] }, @@ -435057,23 +435057,23 @@ "year": 1824, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 21.429747819358283, - "c2": 12.59480594155518, - "c3": -9.3031047946902, - "c4": 12.699422423747805, - "c5": 9.566970710081513, - "c6": 24.45752249711949, - "c7": -7.904130301752762 + "points": { + "c1": 27.687377245557563, + "c2": -27.394784839042448, + "c3": -2.8852047574483883, + "c4": 14.62057069907619, + "c5": 16.09821739203369, + "c6": 19.696155505029928, + "c7": -5.923309913373345 }, - "vertexSeeds": { - "c1": 3.2089533980430565, - "c2": 3.0915341729355257, - "c3": 3.4710412368975745, - "c4": 3.121769789735923, - "c5": 3.161897427538593, - "c6": 3.335159514035885, - "c7": 3.206196755820516 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [238, 201, 159] }, @@ -435084,23 +435084,23 @@ "year": 1824, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 30.821137048339004, - "c2": 8.95831370951565, - "c3": 8.318963859988457, - "c4": -28.751585806437102, - "c5": 33.46305707999425, - "c6": -27.473968999648946, - "c7": 36.870537406416936 + "points": { + "c1": -23.892162638478418, + "c2": 32.7424644328208, + "c3": -25.229112954059392, + "c4": 28.627429565916465, + "c5": 5.183499629336637, + "c6": 31.10459218714545, + "c7": -17.440487168773693 }, - "vertexSeeds": { - "c1": 4.084739579305535, - "c2": 4.256024735070736, - "c3": 4.118126523793819, - "c4": 4.157129450947687, - "c5": 4.228393635753614, - "c6": 4.299443855875659, - "c7": 4.223947504342194 + "offsets": { + "c1": 7.216828478964402, + "c2": 6.185852981969482, + "c3": 5.15487748497458, + "c4": 4.123901987979661, + "c5": 3.092926490984741, + "c6": 2.061950993989839, + "c7": 1.0309754969949194 }, "rgb": [86, 146, 138] }, @@ -435111,23 +435111,23 @@ "year": 1824, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 2.48013636363779, - "c2": 5.083942200813432, - "c3": -10.994870085778427, - "c4": 24.170172294561823, - "c5": -17.926810239300764, - "c6": 0.8222007323133802, - "c7": 18.371445276941763 + "points": { + "c1": -18.444443612346845, + "c2": 17.489619863911855, + "c3": 15.067379021931565, + "c4": -0.04029010993664173, + "c5": 5.015421190957333, + "c6": -2.1227280404072104, + "c7": -21.862285993786337 }, - "vertexSeeds": { - "c1": 7.874963150545266, - "c2": 6.759415228568533, - "c3": 8.267610198501629, - "c4": 8.297599176863498, - "c5": 7.088761614304795, - "c6": 7.217924067082739, - "c7": 7.108933138874017 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295427, + "c3": 9.939898289412849, + "c4": 7.951918631530281, + "c5": 5.963938973647713, + "c6": 3.9759593157651447, + "c7": 1.9879796578825681 }, "rgb": [77, 76, 132] }, @@ -435138,23 +435138,23 @@ "year": 1824, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 26.51136280927002, - "c2": 11.612929924197683, - "c3": -15.493761645862724, - "c4": -29.66514868284544, - "c5": 18.63854051406017, - "c6": -29.759195751321492, - "c7": 11.900560123300505 + "points": { + "c1": 21.85714692776014, + "c2": 9.47074040309775, + "c3": -22.467895102001588, + "c4": 22.243730681923402, + "c5": 19.229066827498812, + "c6": 21.35536682170884, + "c7": -23.113814315581855 }, - "vertexSeeds": { - "c1": 14.339402662660845, - "c2": 14.450491467844694, - "c3": 14.453428660532964, - "c4": 14.364221892253655, - "c5": 14.580103048611809, - "c6": 14.409412187617399, - "c7": 14.62502167024821 + "offsets": { + "c1": 24.59546925566343, + "c2": 21.081830790568603, + "c3": 17.568192325473895, + "c4": 14.05455386037907, + "c5": 10.540915395284363, + "c6": 7.027276930189535, + "c7": 3.5136384650948282 }, "rgb": [58, 15, 49] }, @@ -435165,23 +435165,23 @@ "year": 1824, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 9.332848208266828, - "c2": 2.127762702559121, - "c3": 23.0560851580646, - "c4": -23.593045031754304, - "c5": -12.424441862848889, - "c6": -13.650713988292784, - "c7": 26.522345169383268 + "points": { + "c1": 14.140290119663863, + "c2": -2.6360190916693647, + "c3": 25.712446557229764, + "c4": -17.380072138183742, + "c5": 19.4020780401389, + "c6": 19.23754813819318, + "c7": 22.105690007832766 }, - "vertexSeeds": { - "c1": 10.557145043995897, - "c2": 10.573281468861852, - "c3": 10.478229065293963, - "c4": 10.1642407925268, - "c5": 10.821341258626537, - "c6": 10.567565619238222, - "c7": 10.859432484622705 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725362, + "c3": 13.060564031437824, + "c4": 10.448451225150242, + "c5": 7.836338418862705, + "c6": 5.224225612575121, + "c7": 2.6121128062875365 }, "rgb": [58, 15, 49] }, @@ -435192,23 +435192,23 @@ "year": 1824, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -14.781090265729151, - "c2": -5.429109373909771, - "c3": 21.042772590769154, - "c4": 8.287199512092421, - "c5": 14.955618888623071, - "c6": 15.381753116505145, - "c7": -6.842144612321363 + "points": { + "c1": 16.18163056969474, + "c2": -19.820937245985142, + "c3": 14.644529451751389, + "c4": -3.0443637086855695, + "c5": -19.570510770018583, + "c6": 13.160976007137414, + "c7": -13.482386633475066 }, - "vertexSeeds": { - "c1": 7.923760016425044, - "c2": 7.755460319103647, - "c3": 8.327692658016215, - "c4": 8.391751074954403, - "c5": 8.398546957367014, - "c6": 8.086353688645154, - "c7": 8.163943803486957 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147487, + "c4": 8.081368469717994, + "c5": 6.061026352288501, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [86, 146, 138] }, @@ -435219,23 +435219,23 @@ "year": 1824, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 13.803107531521775, - "c2": -8.868433147407407, - "c3": -8.942553912408881, - "c4": 1.1100291013201797, - "c5": -1.0023092371415956, - "c6": 15.40431733509137, - "c7": 16.76684541401987 + "points": { + "c1": 10.99948187596204, + "c2": 2.908493651922118, + "c3": -17.07590423891967, + "c4": -2.8582467888938154, + "c5": -17.12409577690941, + "c6": 18.40898367974082, + "c7": 12.04817242896057 }, - "vertexSeeds": { - "c1": 1.8273364270500756, - "c2": 1.8510135237583434, - "c3": 1.763187799603549, - "c4": 1.7686052758940214, - "c5": 1.783950539778405, - "c6": 1.7788394653044044, - "c7": 1.8861093838661154 + "offsets": { + "c1": 3.203883495145631, + "c2": 2.746185852981971, + "c3": 2.2884882108183056, + "c4": 1.8307905686546455, + "c5": 1.3730929264909855, + "c6": 0.9153952843273255, + "c7": 0.45769764216365993 }, "rgb": [58, 15, 49] }, @@ -435246,23 +435246,23 @@ "year": 1824, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 11.137668529776725, - "c2": 24.14334523261836, - "c3": 29.37950462060192, - "c4": 30.32499198266342, - "c5": 17.930239162004412, - "c6": -13.537542552539055, - "c7": 34.070420884606435 + "points": { + "c1": 15.449016246491311, + "c2": -31.0482138644947, + "c3": -29.53605736158442, + "c4": -11.02030916783541, + "c5": 37.267494504684606, + "c6": -3.055575228186683, + "c7": -32.03787031602543 }, - "vertexSeeds": { - "c1": 5.188607765375225, - "c2": 5.229177345668262, - "c3": 5.19673038108935, - "c4": 5.185692371841197, - "c5": 5.1882947578959335, - "c6": 5.1962448785637365, - "c7": 5.256815808792392 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940347, + "c3": 6.287563569116939, + "c4": 5.03005085529353, + "c5": 3.772538141470123, + "c6": 2.515025427646816, + "c7": 1.257512713823408 }, "rgb": [222, 0, 59] }, @@ -435273,23 +435273,23 @@ "year": 1824, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -14.31053226045655, - "c2": 27.410195437283868, - "c3": -17.626165972350087, - "c4": 21.184353076907236, - "c5": -24.956889907606648, - "c6": 21.002517511076704, - "c7": 8.934830834425817 + "points": { + "c1": 6.162278190748829, + "c2": 30.416969227938964, + "c3": -11.490699076627248, + "c4": -3.7044941622359744, + "c5": 8.772473060358607, + "c6": -25.75400550412769, + "c7": -25.243781259882525 }, - "vertexSeeds": { - "c1": 4.519449884476549, - "c2": 4.671267446043421, - "c3": 4.646511681758612, - "c4": 4.535231948373143, - "c5": 4.561606612953583, - "c6": 4.593960660659394, - "c7": 4.6195255771078685 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773919, + "c3": 5.617198335644945, + "c4": 4.493758668515952, + "c5": 3.3703190013869593, + "c6": 2.2468793342579856, + "c7": 1.1234396671289928 }, "rgb": [77, 76, 132] }, @@ -435300,23 +435300,23 @@ "year": 1824, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -32.19603071128792, - "c2": 25.849748330746166, - "c3": -19.11407587087267, - "c4": 10.13619722367109, - "c5": -18.3569725570172, - "c6": 35.72626441729433, - "c7": -30.86341190271076 + "points": { + "c1": -24.365946203615785, + "c2": 12.100143407305488, + "c3": 20.463299915964363, + "c4": 19.154713830674126, + "c5": -31.949029626478413, + "c6": 28.586866708982868, + "c7": 38.77057623819567 }, - "vertexSeeds": { - "c1": 6.127790169082059, - "c2": 6.181577667554643, - "c3": 6.172181251881443, - "c4": 6.169423174603861, - "c5": 6.191558636036341, - "c6": 6.139647696186586, - "c7": 6.122449551465991 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871057, + "c3": 7.397133610725781, + "c4": 5.917706888580654, + "c5": 4.438280166435528, + "c6": 2.958853444290401, + "c7": 1.479426722145127 }, "rgb": [77, 76, 132] }, @@ -435327,23 +435327,23 @@ "year": 1825, "resistanceReported": false, "duration": 30067200, - "curveSeeds": { - "c1": 7.747823427194717, - "c2": 32.18944769933149, - "c3": -38.79434458411358, - "c4": -31.652020244887936, - "c5": -15.225241555697313, - "c6": -13.267845760056115, - "c7": -12.996242624545587 + "points": { + "c1": -1.7071005119472744, + "c2": -21.103077036963743, + "c3": 31.381033176842315, + "c4": 0.607840434683375, + "c5": -39.65027305760542, + "c6": 19.630108728754912, + "c7": 44.191042373214266 }, - "vertexSeeds": { - "c1": 8.500087269062508, - "c2": 8.432754037167765, - "c3": 9.833955104818344, - "c4": 8.71422612440249, - "c5": 8.87739903853914, - "c6": 9.609219636792456, - "c7": 9.240246572481832 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.174757281553397, + "c3": 11.812297734627832, + "c4": 9.449838187702264, + "c5": 7.0873786407766985, + "c6": 4.724919093851132, + "c7": 2.362459546925566 }, "rgb": [58, 15, 49] }, @@ -435354,23 +435354,23 @@ "year": 1824, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 18.729501107136706, - "c2": -18.385921994215163, - "c3": -10.038454173303581, - "c4": 11.521233053019998, - "c5": -3.368334606089764, - "c6": 16.762378672215924, - "c7": -26.336594450834415 + "points": { + "c1": -10.178241521917943, + "c2": 25.197833145298283, + "c3": 29.002598883771498, + "c4": 0.9514240020983493, + "c5": -29.49883983363827, + "c6": -11.333871209615932, + "c7": -23.995828151959714 }, - "vertexSeeds": { - "c1": 10.748355830037232, - "c2": 10.77127778286409, - "c3": 10.855419177378518, - "c4": 10.845725046528974, - "c5": 10.859346674035693, - "c6": 10.80852369162793, - "c7": 10.747896065081077 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.58945908460479, + "c3": 12.991215903837153, + "c4": 10.392972723069775, + "c5": 7.794729542302395, + "c6": 5.196486361534758, + "c7": 2.598243180767379 }, "rgb": [77, 76, 132] }, @@ -435381,23 +435381,23 @@ "year": 1824, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": -17.6567880165606, - "c2": -14.142434889125822, - "c3": -7.627681961363157, - "c4": 3.15452077425428, - "c5": -14.582323817523555, - "c6": -5.786962992975662, - "c7": 16.1679901150147 + "points": { + "c1": 2.79431380721633, + "c2": 11.190331200088995, + "c3": 22.18417963912712, + "c4": 12.04751754725476, + "c5": 19.482168371998274, + "c6": 20.977267151510734, + "c7": 15.747802867149726 }, - "vertexSeeds": { - "c1": 6.83069896524262, - "c2": 6.89109653993599, - "c3": 6.757920212925782, - "c4": 6.764299834050365, - "c5": 6.391227495936635, - "c6": 6.3982406248738295, - "c7": 6.3682298879735555 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640772, + "c3": 8.414239482200639, + "c4": 6.7313915857605195, + "c5": 5.048543689320386, + "c6": 3.3656957928802527, + "c7": 1.6828478964401334 }, "rgb": [238, 201, 159] }, @@ -435408,23 +435408,23 @@ "year": 1824, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -24.25120545084598, - "c2": -0.10785055252462428, - "c3": -26.715733841047015, - "c4": 29.997811657771777, - "c5": -27.922351453713887, - "c6": 13.653785705006435, - "c7": 11.178415752019902 + "points": { + "c1": -16.698446312232548, + "c2": 7.4335622405809545, + "c3": -6.0342603295058765, + "c4": 32.19051594028188, + "c5": 6.504636211647636, + "c6": -29.953528822292064, + "c7": -11.687797502702786 }, - "vertexSeeds": { - "c1": 5.005446659642634, - "c2": 5.018103283424252, - "c3": 4.972963989408283, - "c4": 4.985658148586356, - "c5": 4.978261880180537, - "c6": 5.027095739126307, - "c7": 5.028930775774703 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457685, + "c3": 6.010171058714722, + "c4": 4.808136846971757, + "c5": 3.60610263522889, + "c6": 2.404068423485927, + "c7": 1.2020342117429634 }, "rgb": [86, 146, 138] }, @@ -435435,23 +435435,23 @@ "year": 1824, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -16.702324903641298, - "c2": -26.68262521719011, - "c3": -11.736411453644095, - "c4": 24.19166049507784, - "c5": 20.181552339953527, - "c6": -0.7478105515794127, - "c7": -11.108675458680079 + "points": { + "c1": 15.221275493352941, + "c2": 15.242683650058083, + "c3": -29.40760007213939, + "c4": -5.192462793625268, + "c5": -24.451042575982534, + "c6": -8.593887610889372, + "c7": 19.352593747692488 }, - "vertexSeeds": { - "c1": 3.1389805347874424, - "c2": 3.096500311887632, - "c3": 3.0442522295806196, - "c4": 3.0080986456203256, - "c5": 3.132244233340585, - "c6": 2.9780603561960923, - "c7": 3.095415564898638 + "offsets": { + "c1": 5.275080906148867, + "c2": 4.521497919556177, + "c3": 3.7679149329634694, + "c4": 3.0143319463707785, + "c5": 2.2607489597780885, + "c6": 1.507165973185381, + "c7": 0.7535829865926905 }, "rgb": [58, 15, 49] }, @@ -435462,23 +435462,23 @@ "year": 1824, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -4.599379842807551, - "c2": -27.88935423711223, - "c3": -17.638210359961423, - "c4": 8.163434980591472, - "c5": 8.074849980562053, - "c6": -18.915903124807166, - "c7": -21.441620255766914 + "points": { + "c1": 30.867615116881286, + "c2": -31.00050844919693, + "c3": 20.215407004019493, + "c4": 11.123794734295206, + "c5": 23.78674979677154, + "c6": 8.304527335934306, + "c7": 20.447786698394683 }, - "vertexSeeds": { - "c1": 2.9448122046157943, - "c2": 2.6176718597355375, - "c3": 2.9911725743015687, - "c4": 2.846655934770306, - "c5": 2.793900637495633, - "c6": 2.6715592561868045, - "c7": 2.4096813869946816 + "offsets": { + "c1": 5.016181229773463, + "c2": 4.299583911234397, + "c3": 3.5829865926953324, + "c4": 2.8663892741562633, + "c5": 2.149791955617198, + "c6": 1.4331946370781325, + "c7": 0.7165973185390672 }, "rgb": [86, 146, 138] }, @@ -435489,23 +435489,23 @@ "year": 1824, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 22.78583208383685, - "c2": 13.921332896667955, - "c3": -5.223157614323128, - "c4": -3.8359550905177784, - "c5": -7.701984217343124, - "c6": -14.696802273462215, - "c7": -23.12932915503857 + "points": { + "c1": -30.53655388189493, + "c2": -22.226930555013887, + "c3": 25.23510859454224, + "c4": 19.31490035532301, + "c5": -10.96593527723859, + "c6": 16.14805912641578, + "c7": 12.986135758854331 }, - "vertexSeeds": { - "c1": 9.465848258263287, - "c2": 9.46327647031133, - "c3": 9.461339779873505, - "c4": 9.460614761052865, - "c5": 9.46649843046458, - "c6": 9.47976932213612, - "c7": 9.44986056141698 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668581, + "c3": 11.303744798890559, + "c4": 9.042995839112537, + "c5": 6.782246879334066, + "c6": 4.521497919556044, + "c7": 2.260748959778022 }, "rgb": [58, 15, 49] }, @@ -435516,23 +435516,23 @@ "year": 1824, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 3.2398315338516213, - "c2": -10.128404969012523, - "c3": -6.443551653705594, - "c4": 11.75342593676946, - "c5": 7.946849650996597, - "c6": 22.27606122208246, - "c7": 20.27456630705681 + "points": { + "c1": 25.200573595286002, + "c2": -2.0370164350169304, + "c3": 3.668272778757636, + "c4": -18.49284678043098, + "c5": -19.87888007890306, + "c6": -11.679429063647154, + "c7": 7.9237595609697635 }, - "vertexSeeds": { - "c1": 3.488549618233712, - "c2": 3.5290149511258906, - "c3": 3.4919723925226878, - "c4": 3.2415606321274826, - "c5": 3.3780498274890274, - "c6": 3.314875264005431, - "c7": 3.411886890676361 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [222, 0, 59] }, @@ -435543,23 +435543,23 @@ "year": 1824, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 1.3126382311791858, - "c2": -28.131158808451968, - "c3": 0.03719970665423489, - "c4": -26.664014426429723, - "c5": -9.396525236303727, - "c6": 22.004255552999393, - "c7": 4.9109885406987 + "points": { + "c1": -4.10413485628543, + "c2": 21.966865214913263, + "c3": -13.959194239742601, + "c4": -18.87205419879267, + "c5": -19.90424610173789, + "c6": 14.509908619163859, + "c7": 4.510995793616694 }, - "vertexSeeds": { - "c1": 3.1834800259952005, - "c2": 3.45421988086045, - "c3": 3.4052813771811015, - "c4": 3.2362425381189603, - "c5": 3.229821500081974, - "c6": 3.502005881863177, - "c7": 3.235593066522448 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [222, 0, 59] }, @@ -435570,23 +435570,23 @@ "year": 1825, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 20.78468445003795, - "c2": 5.350455027839089, - "c3": 4.020676144536182, - "c4": 21.034477784033697, - "c5": 37.97253408467562, - "c6": 8.569452923929056, - "c7": -8.58461229784115 + "points": { + "c1": 6.974912031457336, + "c2": -1.5391403989663388, + "c3": -26.752899622758022, + "c4": -11.690252077335241, + "c5": 25.426999857337684, + "c6": -25.674059535535537, + "c7": -32.533888974071964 }, - "vertexSeeds": { - "c1": 8.838134660730615, - "c2": 7.771613317920778, - "c3": 8.790590277584252, - "c4": 8.451216213488479, - "c5": 8.550564390126413, - "c6": 8.683541692092296, - "c7": 8.005335759589745 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461865, + "c3": 10.610263522884882, + "c4": 8.48821081830791, + "c5": 6.3661581137309255, + "c6": 4.244105409153955, + "c7": 2.12205270457697 }, "rgb": [58, 15, 49] }, @@ -435597,23 +435597,23 @@ "year": 1825, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 22.517668877697446, - "c2": 28.748822473218297, - "c3": 2.071670571349941, - "c4": 5.915149687689997, - "c5": -13.447048720495449, - "c6": 6.399368160222288, - "c7": 20.459180656756537 + "points": { + "c1": -16.58200642381218, + "c2": 35.70917353314124, + "c3": -26.85850684374518, + "c4": 25.256828983047363, + "c5": 21.901459417094372, + "c6": -26.43209550948147, + "c7": 5.672185050328707 }, - "vertexSeeds": { - "c1": 10.1687430720896, - "c2": 10.11944204195387, - "c3": 10.605058917365051, - "c4": 10.189861837969563, - "c5": 10.260026612222564, - "c6": 10.432120285825777, - "c7": 10.766952030845442 + "offsets": { + "c1": 18.155339805825243, + "c2": 15.561719833564513, + "c3": 12.968099861303738, + "c4": 10.374479889043009, + "c5": 7.7808599167822345, + "c6": 5.1872399445215045, + "c7": 2.593619972260774 }, "rgb": [77, 76, 132] }, @@ -435624,23 +435624,23 @@ "year": 1824, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -15.450868101012928, - "c2": -17.735897125784877, - "c3": 14.50658048921752, - "c4": -17.64073772842438, - "c5": -11.350094960110088, - "c6": -7.163292427264405, - "c7": -12.72286781167187 + "points": { + "c1": -23.19552301528396, + "c2": 26.172894049769837, + "c3": 8.597874919379294, + "c4": -10.368017319123844, + "c5": 8.783696450803298, + "c6": -6.516447156934252, + "c7": -1.2392502732543385 }, - "vertexSeeds": { - "c1": 6.703556022121688, - "c2": 7.24541763924397, - "c3": 6.54291725411596, - "c4": 6.9106700200421916, - "c5": 6.815769559157097, - "c6": 6.523285156225431, - "c7": 7.248958788641141 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.42995839112344, + "c3": 8.69163199260287, + "c4": 6.9533055940823, + "c5": 5.214979195561729, + "c6": 3.4766527970411416, + "c7": 1.7383263985205877 }, "rgb": [238, 201, 159] }, @@ -435651,23 +435651,23 @@ "year": 1824, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -2.314941643763106, - "c2": 14.738601464824821, - "c3": -9.457120287128518, - "c4": 26.435116238572586, - "c5": 21.907357005375378, - "c6": 10.206214702712689, - "c7": -25.6018211447411 + "points": { + "c1": -8.5231347073363, + "c2": -3.130811813150551, + "c3": 26.942446247405616, + "c4": -15.179623481872994, + "c5": -7.375582056837679, + "c6": 22.660966988717664, + "c7": -8.866683721038417 }, - "vertexSeeds": { - "c1": 8.1205471044051, - "c2": 8.13679656303893, - "c3": 8.14001676760493, - "c4": 8.227908702211119, - "c5": 8.185373002885983, - "c6": 8.130513072010253, - "c7": 8.198046839093832 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094273, + "c3": 9.824318076745275, + "c4": 7.859454461396181, + "c5": 5.894590846047185, + "c6": 3.9297272306980906, + "c7": 1.9648636153490942 }, "rgb": [86, 146, 138] }, @@ -435678,23 +435678,23 @@ "year": 1824, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -23.062044487013964, - "c2": 4.885490473808876, - "c3": -26.492621360234015, - "c4": -4.223355633142603, - "c5": -22.667183683438886, - "c6": 6.498197995172898, - "c7": 1.1114933969855514 + "points": { + "c1": 2.6859838319273344, + "c2": -26.018107770740613, + "c3": -27.68141751121673, + "c4": -0.16170247045284825, + "c5": 15.626418543723528, + "c6": 0.6511128794948249, + "c7": 28.67328928191584 }, - "vertexSeeds": { - "c1": 8.24438920002316, - "c2": 8.02168762429944, - "c3": 8.244362710159242, - "c4": 8.09835380060493, - "c5": 8.655797673748438, - "c6": 7.904287177785109, - "c7": 8.10228688899912 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.45492371705964, + "c3": 10.3791030975497, + "c4": 8.30328247803976, + "c5": 6.22746185852982, + "c6": 4.15164123901988, + "c7": 2.07582061950994 }, "rgb": [77, 76, 132] }, @@ -435705,23 +435705,23 @@ "year": 1824, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": -0.8523176393024308, - "c2": 11.155533920695973, - "c3": 13.564023463888475, - "c4": 7.253849292681743, - "c5": 20.52643444433523, - "c6": -6.434426158847682, - "c7": 0.8976916295963342 + "points": { + "c1": -5.563353225623331, + "c2": 19.637567030054896, + "c3": -14.480587781392188, + "c4": -21.984456667879, + "c5": 28.694047338427474, + "c6": 13.680403930634164, + "c7": -13.616813327026076 }, - "vertexSeeds": { - "c1": 9.375553188310164, - "c2": 9.476342288638778, - "c3": 9.35320288524699, - "c4": 9.450786788940206, - "c5": 9.329769514895048, - "c6": 9.430969949214505, - "c7": 9.48123143772107 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708737, + "c3": 11.326860841423947, + "c4": 9.061488673139158, + "c5": 6.796116504854369, + "c6": 4.530744336569579, + "c7": 2.2653721682847894 }, "rgb": [58, 15, 49] }, @@ -435732,23 +435732,23 @@ "year": 1824, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 25.024506769122866, - "c2": -6.989001295267098, - "c3": -27.96599677455148, - "c4": -25.785912670650237, - "c5": -22.07952007077938, - "c6": -11.370873602835289, - "c7": -20.657419297210176 + "points": { + "c1": -23.757176082570368, + "c2": 11.64414705116237, + "c3": 9.220271785307283, + "c4": -24.491016825499916, + "c5": -6.750745550163359, + "c6": -18.49873813856574, + "c7": 21.01247283521738 }, - "vertexSeeds": { - "c1": 8.496142616361947, - "c2": 8.462594241727949, - "c3": 8.50843357580788, - "c4": 8.518530702044316, - "c5": 8.470997065723221, - "c6": 8.511831932481115, - "c7": 8.524172135781612 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737923, + "c3": 10.194174757281534, + "c4": 8.155339805825282, + "c5": 6.116504854368894, + "c6": 4.077669902912641, + "c7": 2.038834951456388 }, "rgb": [238, 201, 159] }, @@ -435759,23 +435759,23 @@ "year": 1824, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -11.162642280190866, - "c2": 17.23210924236468, - "c3": -18.333192519156853, - "c4": 21.766348744531925, - "c5": -28.54474047776361, - "c6": -30.958030482244826, - "c7": 30.822297611175827 + "points": { + "c1": -21.242336413929667, + "c2": 21.972096106564535, + "c3": -5.007650460425371, + "c4": 9.833971648903905, + "c5": -9.973046817974414, + "c6": 7.727099838062969, + "c7": -13.183430633134037 }, - "vertexSeeds": { - "c1": 10.93280847973112, - "c2": 10.716473137112162, - "c3": 10.928333106980975, - "c4": 10.643306668362762, - "c5": 10.911272420736776, - "c6": 10.78684956300251, - "c7": 10.92296676364783 + "offsets": { + "c1": 18.576051779935277, + "c2": 15.922330097087414, + "c3": 13.268608414239472, + "c4": 10.61488673139161, + "c5": 7.961165048543667, + "c6": 5.307443365695805, + "c7": 2.653721682847862 }, "rgb": [58, 15, 49] }, @@ -435786,23 +435786,23 @@ "year": 1824, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -9.519525381237624, - "c2": -5.980398659873838, - "c3": -12.21559289931172, - "c4": 19.08787832685082, - "c5": -3.8451542345302627, - "c6": -13.427525779567596, - "c7": -4.709342371530187 + "points": { + "c1": 11.78327411331638, + "c2": -6.386933763733538, + "c3": 8.324545819664664, + "c4": 9.617644316702844, + "c5": 24.984218789127645, + "c6": 17.366593487265902, + "c7": -6.965337774548249 }, - "vertexSeeds": { - "c1": 10.796713870751564, - "c2": 10.788289117721764, - "c3": 10.791814593573466, - "c4": 10.813271053919724, - "c5": 10.796903851860485, - "c6": 10.797260049089674, - "c7": 10.80889034761349 + "offsets": { + "c1": 18.058252427184467, + "c2": 15.47850208044339, + "c3": 12.898751733703337, + "c4": 10.31900138696226, + "c5": 7.739251040222207, + "c6": 5.15950069348113, + "c7": 2.579750346741078 }, "rgb": [77, 76, 132] }, @@ -435813,23 +435813,23 @@ "year": 1824, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": 23.742167319474532, - "c2": -13.412781678799966, - "c3": -13.895231914775437, - "c4": 14.898699393930912, - "c5": 15.337912922285618, - "c6": -24.54500163111852, - "c7": 12.690601291766122 + "points": { + "c1": -13.251129281173206, + "c2": 4.958647455974223, + "c3": -24.67673928499154, + "c4": -3.7598329474142886, + "c5": 8.911182058053825, + "c6": -28.428281258539027, + "c7": -10.127016717231342 }, - "vertexSeeds": { - "c1": 13.983242465746505, - "c2": 13.795134921666813, - "c3": 14.175420317979645, - "c4": 14.031651699324343, - "c5": 13.993479610683716, - "c6": 14.125506799289596, - "c7": 14.169832172190514 + "offsets": { + "c1": 24.01294498381877, + "c2": 20.582524271844637, + "c3": 17.152103559870586, + "c4": 13.721682847896453, + "c5": 10.291262135922318, + "c6": 6.8608414239482665, + "c7": 3.4304207119741332 }, "rgb": [77, 76, 132] }, @@ -435840,23 +435840,23 @@ "year": 1824, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 1.6109936050611786, - "c2": 9.05078155653581, - "c3": 10.589378405362055, - "c4": 23.328385970830766, - "c5": -20.79487230028305, - "c6": 19.026911077677298, - "c7": -11.539711809480766 + "points": { + "c1": -13.323544005736109, + "c2": -8.25547760304412, + "c3": 18.16690088091803, + "c4": 13.373762267273584, + "c5": -11.855858150356124, + "c6": 18.566008053428334, + "c7": -21.676408927115922 }, - "vertexSeeds": { - "c1": 12.944965460149891, - "c2": 12.949007385396264, - "c3": 12.957852131542552, - "c4": 12.94018276400545, - "c5": 12.950083024450404, - "c6": 12.955962106762419, - "c7": 12.928832666316861 + "offsets": { + "c1": 21.618122977346278, + "c2": 18.52981969486771, + "c3": 15.441516412390374, + "c4": 12.353213129911808, + "c5": 9.26490984743447, + "c6": 6.176606564955904, + "c7": 3.0883032824785666 }, "rgb": [77, 76, 132] }, @@ -435867,23 +435867,23 @@ "year": 1824, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 21.11480131813471, - "c2": 0.27721266283878876, - "c3": 0.5191816767730586, - "c4": -1.4127298497799963, - "c5": 16.980683354826546, - "c6": -8.458594732732507, - "c7": -16.600162085972762 + "points": { + "c1": 29.023880465033166, + "c2": -2.92660718963457, + "c3": 10.731358206241637, + "c4": -9.656159133506357, + "c5": 24.754869597098384, + "c6": 26.447817589419962, + "c7": 29.912742322372985 }, - "vertexSeeds": { - "c1": 7.611358670903702, - "c2": 7.752693336215448, - "c3": 7.681543605188461, - "c4": 7.679527417871074, - "c5": 7.684495102303053, - "c6": 7.758526756724264, - "c7": 7.844396261987739 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370305, + "c3": 9.408229311141907, + "c4": 7.526583448913552, + "c5": 5.6449375866851526, + "c6": 3.7632917244567534, + "c7": 1.8816458622283991 }, "rgb": [77, 76, 132] }, @@ -435894,23 +435894,23 @@ "year": 1825, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -38.224603252685995, - "c2": 30.56188084114146, - "c3": -7.887270082667218, - "c4": -22.928766549667497, - "c5": 34.59044160612953, - "c6": 21.828785964142696, - "c7": 23.366530876158265 + "points": { + "c1": -16.437258080361204, + "c2": 28.065099120785177, + "c3": -26.14850986947105, + "c4": -39.681930084121156, + "c5": -26.673592111271383, + "c6": -14.361562337911263, + "c7": 32.961826412246154 }, - "vertexSeeds": { - "c1": 10.178542532422483, - "c2": 9.854443712555305, - "c3": 10.491299908875511, - "c4": 10.419551562175855, - "c5": 10.16332048505547, - "c6": 10.13070550178738, - "c7": 10.18509418379381 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524276, + "c3": 12.944983818770233, + "c4": 10.35598705501619, + "c5": 7.766990291262148, + "c6": 5.177993527508104, + "c7": 2.588996763754043 }, "rgb": [58, 15, 49] }, @@ -435921,23 +435921,23 @@ "year": 1825, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": -37.930704149961684, - "c2": -38.2337394277407, - "c3": 27.65999698319191, - "c4": -29.71762295990309, - "c5": -4.934995856685248, - "c6": 6.413335636569734, - "c7": -5.531215212748286 + "points": { + "c1": -39.878246654340046, + "c2": 0.7641192308422973, + "c3": -41.142907430129455, + "c4": -4.337758025081975, + "c5": 19.90888481616676, + "c6": 36.4909612757941, + "c7": -9.399149600284822 }, - "vertexSeeds": { - "c1": 5.190421221935261, - "c2": 5.138282732286273, - "c3": 5.029347368496475, - "c4": 5.162561658111948, - "c5": 4.914783806740591, - "c6": 5.2795498535624485, - "c7": 4.920681883261455 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [58, 15, 49] }, @@ -435948,23 +435948,23 @@ "year": 1824, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 18.660524525383153, - "c2": 12.986233430796823, - "c3": -0.6380998115873595, - "c4": -5.515395001683515, - "c5": 2.841319811125551, - "c6": -4.0958156051169325, - "c7": -19.629164707638616 + "points": { + "c1": 27.48149362389261, + "c2": 27.71190451901449, + "c3": 25.593569839157823, + "c4": -16.013963884874826, + "c5": 14.501360657310059, + "c6": -27.80904594166619, + "c7": -7.97927779920024 }, - "vertexSeeds": { - "c1": 8.88580581165935, - "c2": 8.890215420871973, - "c3": 8.893874464534827, - "c4": 8.891961234666061, - "c5": 8.886282113374408, - "c6": 8.889542226974056, - "c7": 8.89231435479856 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461498, + "c3": 10.610263522885004, + "c4": 8.488210818307666, + "c5": 6.366158113731171, + "c6": 4.244105409153833, + "c7": 2.1220527045773383 }, "rgb": [58, 15, 49] }, @@ -435975,23 +435975,23 @@ "year": 1824, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -14.870103329165334, - "c2": -15.072184215101863, - "c3": -7.914877242347167, - "c4": -25.567032984982294, - "c5": -7.633639764149628, - "c6": 0.06496768465169822, - "c7": 17.734667167947727 + "points": { + "c1": -24.116997556104412, + "c2": 29.247539364109123, + "c3": 2.5370983344944733, + "c4": -3.899423789849866, + "c5": 29.548357872154597, + "c6": -25.02771984912624, + "c7": -27.78071996984444 }, - "vertexSeeds": { - "c1": 8.961613299020446, - "c2": 9.25321935897451, - "c3": 9.006344980660506, - "c4": 8.959301424610896, - "c5": 8.914157274589261, - "c6": 8.995261273637976, - "c7": 8.992522304427517 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306506, + "c3": 11.09570041608878, + "c4": 8.876560332871016, + "c5": 6.657420249653253, + "c6": 4.43828016643549, + "c7": 2.2191400832177637 }, "rgb": [77, 76, 132] }, @@ -436002,23 +436002,23 @@ "year": 1825, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 25.510992213579733, - "c2": -3.203621405905917, - "c3": -1.685179862738508, - "c4": 18.53535931143253, - "c5": -26.583317996550377, - "c6": 2.1146898054906984, - "c7": 22.992973787040086 + "points": { + "c1": -24.141277846274768, + "c2": -27.394962664927835, + "c3": -7.786682658749392, + "c4": 33.50983443763919, + "c5": 13.228147403816656, + "c6": -31.406560966097587, + "c7": 29.538401189048905 }, - "vertexSeeds": { - "c1": 14.53549437757335, - "c2": 15.302536999615668, - "c3": 14.906668004208267, - "c4": 14.125223087823782, - "c5": 14.659592139055507, - "c6": 14.251211539504004, - "c7": 14.423148092852049 + "offsets": { + "c1": 25.728155339805824, + "c2": 22.052704576976407, + "c3": 18.377253814147036, + "c4": 14.701803051317619, + "c5": 11.026352288488203, + "c6": 7.350901525658789, + "c7": 3.6754507628294153 }, "rgb": [77, 76, 132] }, @@ -436029,23 +436029,23 @@ "year": 1825, "resistanceReported": false, "duration": 37238400, - "curveSeeds": { - "c1": -32.31664598606544, - "c2": -17.50543308526018, - "c3": 41.65728542758302, - "c4": -9.728162520083202, - "c5": -5.539977870636598, - "c6": -28.516089904123596, - "c7": 34.59572476747074 + "points": { + "c1": -40.05589560228398, + "c2": 49.78893358274564, + "c3": -43.591470315775986, + "c4": -42.81013618167429, + "c5": 24.472472030704836, + "c6": -16.90987576444403, + "c7": -28.462633645093835 }, - "vertexSeeds": { - "c1": 2.506556106214831, - "c2": 2.506756815144969, - "c3": 2.532112096545091, - "c4": 2.5616815683194045, - "c5": 2.5668618800118974, - "c6": 2.525210729063616, - "c7": 2.699281493313765 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631065, + "c3": 3.2362459546925613, + "c4": 2.588996763754047, + "c5": 1.9417475728155325, + "c6": 1.294498381877029, + "c7": 0.6472491909385145 }, "rgb": [77, 76, 132] }, @@ -436056,23 +436056,23 @@ "year": 1825, "resistanceReported": false, "duration": 42422400, - "curveSeeds": { - "c1": 31.74729443971909, - "c2": 44.266733038903105, - "c3": 1.7519084490636345, - "c4": 24.448947054272786, - "c5": -15.889393760143975, - "c6": -25.97406887113546, - "c7": -39.79449508223677 + "points": { + "c1": 41.433777416097236, + "c2": 33.14568895897124, + "c3": 13.41831972694252, + "c4": 54.39343231094626, + "c5": -20.18148105942177, + "c6": -45.79675301603728, + "c7": -11.503403294104402 }, - "vertexSeeds": { - "c1": 6.18247164602082, - "c2": 6.126413408409817, - "c3": 6.4103466715493695, - "c4": 6.311683975410838, - "c5": 6.078614895487543, - "c6": 5.961692892837731, - "c7": 6.110396361424263 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434113, + "c3": 7.720758206195108, + "c4": 6.176606564956082, + "c5": 4.632454923717057, + "c6": 3.088303282478051, + "c7": 1.5441516412390255 }, "rgb": [58, 15, 49] }, @@ -436083,23 +436083,23 @@ "year": 1825, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 7.481453429804372, - "c2": -15.258226047055018, - "c3": -16.537573793582155, - "c4": 27.754398614691613, - "c5": 7.975395422603494, - "c6": 26.39083583374833, - "c7": -24.209809761881374 + "points": { + "c1": 11.262354415376059, + "c2": -28.921820585018455, + "c3": 22.044949706387023, + "c4": -14.57656214797948, + "c5": -16.273468833395214, + "c6": 1.3058333888066542, + "c7": 14.724506682879337 }, - "vertexSeeds": { - "c1": 12.033936955895411, - "c2": 11.703491114899991, - "c3": 11.559778724855475, - "c4": 11.913319077134545, - "c5": 11.494100095498775, - "c6": 11.605297296981174, - "c7": 11.228574566776302 + "offsets": { + "c1": 20.129449838187703, + "c2": 17.253814147018023, + "c3": 14.378178455848344, + "c4": 11.502542764678717, + "c5": 8.626907073509038, + "c6": 5.751271382339358, + "c7": 2.875635691169679 }, "rgb": [222, 0, 59] }, @@ -436110,23 +436110,23 @@ "year": 1824, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 28.878661157140165, - "c2": -6.856733623633094, - "c3": 21.16599530516676, - "c4": 0.12994670513982953, - "c5": 2.0963046888219488, - "c6": 3.3953063660755802, - "c7": -17.31180513406143 + "points": { + "c1": -16.935933642627347, + "c2": -4.250464936085585, + "c3": 30.013046103027506, + "c4": -29.53213155801587, + "c5": -13.10367302544288, + "c6": 29.026906990322942, + "c7": -24.07997000573529 }, - "vertexSeeds": { - "c1": 9.675587768022291, - "c2": 9.493061797413691, - "c3": 9.484516573751218, - "c4": 9.529903748079999, - "c5": 9.42115738154071, - "c6": 9.56864691160828, - "c7": 9.554357858980463 + "offsets": { + "c1": 16.245954692556637, + "c2": 13.925104022191384, + "c3": 11.604253351826175, + "c4": 9.283402681460924, + "c5": 6.962552011095714, + "c6": 4.641701340730462, + "c7": 2.320850670365252 }, "rgb": [238, 201, 159] }, @@ -436137,23 +436137,23 @@ "year": 1825, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -14.015963918302774, - "c2": 10.746557100895345, - "c3": 19.804113856769582, - "c4": 14.757352883406362, - "c5": -29.55585679858676, - "c6": -22.719574629402217, - "c7": 17.507308878218346 + "points": { + "c1": 7.748173699638812, + "c2": 16.107838438581908, + "c3": -33.80077009124698, + "c4": 14.592911214052009, + "c5": -31.946436820567122, + "c6": -31.081266599905383, + "c7": -15.475456515407561 }, - "vertexSeeds": { - "c1": 7.597185637741615, - "c2": 7.359915722373335, - "c3": 7.358369982931179, - "c4": 7.458704751711078, - "c5": 7.013722865280904, - "c6": 7.013206075586809, - "c7": 7.316192263877802 + "offsets": { + "c1": 13.398058252427184, + "c2": 11.484049930651869, + "c3": 9.570041608876567, + "c4": 7.65603328710125, + "c5": 5.7420249653259345, + "c6": 3.828016643550618, + "c7": 1.9140083217753159 }, "rgb": [77, 76, 132] }, @@ -436164,23 +436164,23 @@ "year": 1825, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 8.59736402740494, - "c2": -5.682935603641219, - "c3": 27.92571488935536, - "c4": -17.833097800631982, - "c5": -11.737694269857993, - "c6": 20.35541034861394, - "c7": 3.1209636480579483 + "points": { + "c1": -18.32545242569168, + "c2": 5.011080877678211, + "c3": -10.10456788944439, + "c4": 7.626229300721263, + "c5": -23.1530868005429, + "c6": -9.644232639992719, + "c7": -21.29948741198161 }, - "vertexSeeds": { - "c1": 4.70098854940377, - "c2": 4.711278642013725, - "c3": 4.470465376074196, - "c4": 4.7701020847410245, - "c5": 4.554186164890165, - "c6": 4.285888497892556, - "c7": 4.646167038186672 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176146, + "c3": 5.848358760980123, + "c4": 4.678687008784093, + "c5": 3.5090152565880692, + "c6": 2.3393435043920463, + "c7": 1.1696717521960232 }, "rgb": [58, 15, 49] }, @@ -436191,23 +436191,23 @@ "year": 1825, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 22.461130328787668, - "c2": -10.30325762845822, - "c3": -5.152533045217645, - "c4": 7.639596594855952, - "c5": -22.21349359533906, - "c6": 24.964169865111202, - "c7": 14.481845493073699 + "points": { + "c1": 31.980455336437288, + "c2": -25.24675738689772, + "c3": -6.772360963038036, + "c4": 24.214273698559545, + "c5": -29.41981486889872, + "c6": -3.806010211604466, + "c7": 25.122092669877752 }, - "vertexSeeds": { - "c1": 3.261889027326393, - "c2": 3.099846007808504, - "c3": 3.4238117148946814, - "c4": 3.4747328711268253, - "c5": 3.173776287869321, - "c6": 3.2734026369939975, - "c7": 3.2435875701590615 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [238, 201, 159] }, @@ -436218,23 +436218,23 @@ "year": 1824, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -0.23480764676363108, - "c2": 7.388976421571758, - "c3": -6.861507961232679, - "c4": 13.975826644035028, - "c5": 25.89816317750085, - "c6": -23.80324112188279, - "c7": -11.204755154213728 + "points": { + "c1": 16.838659545918976, + "c2": -17.541776848633177, + "c3": -6.1394294867220935, + "c4": -24.69930411388195, + "c5": -3.762106481058513, + "c6": -5.431092775661856, + "c7": -15.032994643934126 }, - "vertexSeeds": { - "c1": 9.314066193972609, - "c2": 9.271543096245749, - "c3": 9.198014587062843, - "c4": 9.272154902648788, - "c5": 8.920141977337398, - "c6": 9.164730997642048, - "c7": 9.236550015898153 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.398058252427191, + "c3": 11.165048543689332, + "c4": 8.932038834951474, + "c5": 6.699029126213615, + "c6": 4.466019417475718, + "c7": 2.233009708737859 }, "rgb": [58, 15, 49] }, @@ -436245,23 +436245,23 @@ "year": 1824, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -18.304349190229704, - "c2": 22.310867268621905, - "c3": 14.584598350001777, - "c4": -7.318851981199163, - "c5": 11.462610691996552, - "c6": -8.431223280246352, - "c7": 14.608092137825821 + "points": { + "c1": 5.898905889744434, + "c2": 9.566370753644925, + "c3": -19.612451518358164, + "c4": -17.099002173098963, + "c5": 11.012653159398681, + "c6": -12.548280562225292, + "c7": -9.417763723981427 }, - "vertexSeeds": { - "c1": 5.125962586522438, - "c2": 5.1645665729708625, - "c3": 5.282291122828172, - "c4": 5.245874410316918, - "c5": 4.856322663268149, - "c6": 4.906302693667179, - "c7": 5.2303586996536575 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [77, 76, 132] }, @@ -436272,23 +436272,23 @@ "year": 1824, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 16.117288906634684, - "c2": 9.714247646318789, - "c3": 27.060919650116205, - "c4": -0.4546458578533432, - "c5": 5.087819183746078, - "c6": -14.459697323539533, - "c7": -8.691937323645856 + "points": { + "c1": 18.91855418588073, + "c2": -18.328093503026533, + "c3": 9.55364647715566, + "c4": 24.62946074554369, + "c5": -13.622773370724648, + "c6": 18.888121620627288, + "c7": 3.0033150264905757 }, - "vertexSeeds": { - "c1": 12.871467006141174, - "c2": 12.918135096144834, - "c3": 12.750258237919802, - "c4": 12.769734297520156, - "c5": 12.766179034835101, - "c6": 12.90134800804111, - "c7": 12.873942195804075 + "offsets": { + "c1": 21.58576051779935, + "c2": 18.502080443828046, + "c3": 15.418400369856741, + "c4": 12.334720295885438, + "c5": 9.251040221914135, + "c6": 6.167360147942608, + "c7": 3.083680073971304 }, "rgb": [238, 201, 159] }, @@ -436299,23 +436299,23 @@ "year": 1825, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 10.290148916905494, - "c2": -31.697347255900127, - "c3": 10.805198480289356, - "c4": -19.822940398177042, - "c5": 35.116978045145494, - "c6": 21.762206922674665, - "c7": -6.3840015531647865 + "points": { + "c1": -5.351922769485263, + "c2": -41.315585380528354, + "c3": 9.609258308542032, + "c4": -6.752409452617016, + "c5": -26.577224172175313, + "c6": 8.387980504183375, + "c7": 0.17267748380523074 }, - "vertexSeeds": { - "c1": 10.418460343854761, - "c2": 10.34636793165789, - "c3": 8.182258873650941, - "c4": 7.480655533085789, - "c5": 9.950367447519893, - "c6": 7.6601307468028565, - "c7": 10.177136006034218 + "offsets": { + "c1": 17.637540453074433, + "c2": 15.117891816920942, + "c3": 12.598243180767453, + "c4": 10.078594544613962, + "c5": 7.558945908460471, + "c6": 5.039297272306981, + "c7": 2.5196486361534904 }, "rgb": [58, 15, 49] }, @@ -436326,23 +436326,23 @@ "year": 1825, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -14.649592433768415, - "c2": 21.10519468360414, - "c3": -22.682142881328183, - "c4": 16.24385454615446, - "c5": -23.341686829693174, - "c6": -18.319210558930557, - "c7": 23.231698777539705 + "points": { + "c1": -15.593597927931278, + "c2": -17.618191571978706, + "c3": 28.407088572662893, + "c4": 23.26850605740821, + "c5": -4.50423530099377, + "c6": -11.62742011318646, + "c7": 4.401884171593167 }, - "vertexSeeds": { - "c1": 10.954784986707672, - "c2": 10.278099135415692, - "c3": 9.878923164961549, - "c4": 10.075964749378464, - "c5": 9.856450455948243, - "c6": 10.954894653037144, - "c7": 10.571969028514564 + "offsets": { + "c1": 18.381877022653722, + "c2": 15.755894590846053, + "c3": 13.129912159038382, + "c4": 10.503929727230712, + "c5": 7.87794729542301, + "c6": 5.251964863615339, + "c7": 2.6259824318076697 }, "rgb": [58, 15, 49] }, @@ -436353,23 +436353,23 @@ "year": 1824, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -5.7551736935362605, - "c2": 12.230092685070552, - "c3": -16.76033174230988, - "c4": -2.450407956185302, - "c5": 25.20473685362405, - "c6": -2.7908763366117384, - "c7": -16.244362867579838 + "points": { + "c1": 24.981401098047627, + "c2": 26.995186287061856, + "c3": 7.497928771372784, + "c4": -19.099453924544033, + "c5": -10.105789486274912, + "c6": -25.236993715218297, + "c7": 17.74465366056411 }, - "vertexSeeds": { - "c1": 7.358166502855937, - "c2": 7.198147643865001, - "c3": 7.280069377498619, - "c4": 7.377036177905574, - "c5": 7.155034356946334, - "c6": 7.346280715968993, - "c7": 7.28368868873088 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324541, + "c3": 8.807212205270442, + "c4": 7.045769764216342, + "c5": 5.2843273231623, + "c6": 3.5228848821082, + "c7": 1.7614424410541 }, "rgb": [86, 146, 138] }, @@ -436380,23 +436380,23 @@ "year": 1825, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 3.259392362460808, - "c2": 21.11538822397037, - "c3": -1.6919260675591552, - "c4": -9.93827643525266, - "c5": 19.98817434182994, - "c6": -13.45478574268573, - "c7": -5.9630421037857 + "points": { + "c1": -27.28184130156964, + "c2": -20.76350723118132, + "c3": 8.033230721637374, + "c4": 14.118753100253507, + "c5": -31.317168183973486, + "c6": 28.332476976926685, + "c7": -17.935824848383444 }, - "vertexSeeds": { - "c1": 11.266460155922168, - "c2": 11.219141018165628, - "c3": 11.225782039495975, - "c4": 11.359094143382034, - "c5": 11.269372543764826, - "c6": 11.282496341636877, - "c7": 11.26321122921771 + "offsets": { + "c1": 19.223300970873787, + "c2": 16.477115117891845, + "c3": 13.730929264909806, + "c4": 10.984743411927864, + "c5": 8.238557558945923, + "c6": 5.492371705963982, + "c7": 2.746185852981941 }, "rgb": [86, 146, 138] }, @@ -436407,23 +436407,23 @@ "year": 1824, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": 3.8770942486288327, - "c2": -20.913634721611647, - "c3": -12.752639102370104, - "c4": -9.79127147754778, - "c5": -16.871249945154307, - "c6": -14.241774193047682, - "c7": -4.51626970348153 + "points": { + "c1": 1.0530635007516302, + "c2": 13.66982853343442, + "c3": -10.303656755274437, + "c4": -9.612974862436882, + "c5": 17.067705511029892, + "c6": 18.252459750665203, + "c7": 14.68467138050844 }, - "vertexSeeds": { - "c1": 3.0983337029056472, - "c2": 3.413274893218972, - "c3": 3.452092134359166, - "c4": 3.2847737539537607, - "c5": 3.486316053595512, - "c6": 3.1120523010166563, - "c7": 3.2993945548261605 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [238, 201, 159] }, @@ -436434,23 +436434,23 @@ "year": 1825, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -7.368199338098453, - "c2": -10.284602171587093, - "c3": -37.39278909879392, - "c4": -20.803208650519714, - "c5": 12.151877343239306, - "c6": -35.613777595059396, - "c7": 0.6203916886909937 + "points": { + "c1": 13.048299263869133, + "c2": -29.7612338512726, + "c3": -13.250324162317437, + "c4": 8.852364922907412, + "c5": -12.00841588215755, + "c6": 16.891461249556095, + "c7": -4.758335935725427 }, - "vertexSeeds": { - "c1": 7.104444251980115, - "c2": 6.8515550577192315, - "c3": 7.0352911360794605, - "c4": 6.981072982507313, - "c5": 7.004899260847264, - "c6": 6.955438033283672, - "c7": 7.016890340977252 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.18030513176143, + "c3": 8.48358760980122, + "c4": 6.786870087840968, + "c5": 5.090152565880715, + "c6": 3.3934350439204635, + "c7": 1.696717521960252 }, "rgb": [77, 76, 132] }, @@ -436461,23 +436461,23 @@ "year": 1825, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -9.342897872796406, - "c2": 20.019736205727654, - "c3": 29.45199459266172, - "c4": 37.05598645088568, - "c5": -18.630402901375113, - "c6": 26.727356402994104, - "c7": 38.97996206113811 + "points": { + "c1": 19.554380037877593, + "c2": 44.34613075735825, + "c3": -34.81437973761899, + "c4": 22.60620261383474, + "c5": -32.569087343873754, + "c6": 45.015181019402064, + "c7": 28.625786122593894 }, - "vertexSeeds": { - "c1": 8.462472181519615, - "c2": 8.739495501249543, - "c3": 9.287628455711793, - "c4": 9.106748948931052, - "c5": 9.272948323467059, - "c6": 9.011702586849681, - "c7": 9.236817807961303 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467415, + "c3": 11.188164586222834, + "c4": 8.950531668978275, + "c5": 6.7128987517336975, + "c6": 4.475265834489138, + "c7": 2.23763291724456 }, "rgb": [77, 76, 132] }, @@ -436488,23 +436488,23 @@ "year": 1825, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -13.131590638703281, - "c2": -5.811633721213077, - "c3": -8.190670374424734, - "c4": 18.086590692921696, - "c5": -12.165755320267145, - "c6": 9.850326749736219, - "c7": -8.403395543935037 + "points": { + "c1": -13.700406161244493, + "c2": -16.141755815928388, + "c3": 6.480846162466591, + "c4": -13.989915832151507, + "c5": -0.22651308020516225, + "c6": -0.9054591205740472, + "c7": -15.519179976325086 }, - "vertexSeeds": { - "c1": 6.131142078809092, - "c2": 5.930836588312216, - "c3": 5.816064854410582, - "c4": 6.0442756245350635, - "c5": 5.95922581436302, - "c6": 6.336849319723322, - "c7": 6.243614496884991 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [86, 146, 138] }, @@ -436515,23 +436515,23 @@ "year": 1824, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": 10.03599823853769, - "c2": -2.7183183922365934, - "c3": 8.17265344504159, - "c4": -1.3846164946353277, - "c5": -18.259503823493635, - "c6": 18.58456213533783, - "c7": -3.979173077657066 + "points": { + "c1": -22.211465476061786, + "c2": 6.787434670361744, + "c3": 1.5959349049641958, + "c4": -6.7070167068595445, + "c5": 2.6606134908208396, + "c6": 3.760336698135987, + "c7": 12.211485471087915 }, - "vertexSeeds": { - "c1": 4.148191665696433, - "c2": 4.101941677842874, - "c3": 4.144825613484804, - "c4": 4.251494390032633, - "c5": 4.236506674155877, - "c6": 4.133125254760463, - "c7": 4.224972849455336 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848829, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244047, + "c6": 2.03421174294961, + "c7": 1.0171058714747947 }, "rgb": [238, 201, 159] }, @@ -436542,23 +436542,23 @@ "year": 1825, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -32.872760268443656, - "c2": -41.174949899686716, - "c3": -9.73095658523195, - "c4": 11.701813258940753, - "c5": -8.576380895832123, - "c6": -3.8732899762163555, - "c7": 3.89736079890789 + "points": { + "c1": 26.972931087287648, + "c2": -38.9224659438008, + "c3": 42.633313146397086, + "c4": -36.03664475861341, + "c5": -19.826442972187717, + "c6": 35.13590438548428, + "c7": 13.925221188113994 }, - "vertexSeeds": { - "c1": 9.557039026845167, - "c2": 9.226357030114581, - "c3": 9.597219278671423, - "c4": 9.036060405794748, - "c5": 9.349229111759064, - "c6": 9.650876187949349, - "c7": 8.825395355367128 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151185, + "c3": 11.581137309292643, + "c4": 9.264909847434122, + "c5": 6.948682385575584, + "c6": 4.632454923717061, + "c7": 2.3162274618585217 }, "rgb": [222, 0, 59] }, @@ -436569,23 +436569,23 @@ "year": 1825, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 19.209091851717645, - "c2": 20.589256440793775, - "c3": 19.184890153068295, - "c4": -26.611866142455288, - "c5": -26.012620788010906, - "c6": -22.26609382382688, - "c7": 5.728286207303107 + "points": { + "c1": 7.73832391357211, + "c2": 26.237366096373904, + "c3": 0.6868852104217567, + "c4": -32.259590548923995, + "c5": -13.555566634056841, + "c6": 2.2890127709148587, + "c7": 29.732666045204127 }, - "vertexSeeds": { - "c1": 10.452759603669772, - "c2": 10.626222281062194, - "c3": 10.410216125889566, - "c4": 10.183737948707282, - "c5": 9.959421829222283, - "c6": 10.580143862965205, - "c7": 10.640466756821326 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323163, + "c3": 12.829403606102638, + "c4": 10.263522884882109, + "c5": 7.697642163661581, + "c6": 5.1317614424410545, + "c7": 2.5658807212205272 }, "rgb": [58, 15, 49] }, @@ -436596,23 +436596,23 @@ "year": 1825, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -27.28113491449346, - "c2": -22.940360023990525, - "c3": 25.488329229321774, - "c4": -4.298520790654354, - "c5": -15.364069699378424, - "c6": 26.406877687997937, - "c7": -16.82170730317442 + "points": { + "c1": -20.728715069578527, + "c2": -28.592191546572966, + "c3": -0.43882191071473287, + "c4": 25.37275937022937, + "c5": 4.7292114855256635, + "c6": -7.917651009535163, + "c7": -16.984565454818238 }, - "vertexSeeds": { - "c1": 10.09897881395208, - "c2": 10.07138651543219, - "c3": 10.06844288748906, - "c4": 10.107590597240785, - "c5": 10.097170211345366, - "c6": 10.104812766246853, - "c7": 10.103955522084137 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995746, + "c3": 12.066574202496348, + "c4": 9.65325936199695, + "c5": 7.239944521498193, + "c6": 4.826629680998795, + "c7": 2.4133148404993974 }, "rgb": [222, 0, 59] }, @@ -436623,23 +436623,23 @@ "year": 1825, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 22.31820877527012, - "c2": -0.22134992080463434, - "c3": -10.045658413722773, - "c4": -8.332341260397925, - "c5": -7.942347871525445, - "c6": -30.63415647300962, - "c7": -1.7494476308830187 + "points": { + "c1": 2.5138960206632106, + "c2": -10.14635714152308, + "c3": 0.4432464024560403, + "c4": 19.814340055374657, + "c5": 4.239181822739418, + "c6": 5.9296143983863345, + "c7": 18.45172079537572 }, - "vertexSeeds": { - "c1": 4.584741186824319, - "c2": 4.393666101868217, - "c3": 4.6702839659088635, - "c4": 4.599620964207935, - "c5": 4.3061975439164035, - "c6": 4.361407031989717, - "c7": 4.434174310214726 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.7683772538141485, + "c3": 5.640314378178459, + "c4": 4.512251502542769, + "c5": 3.3841886269070796, + "c6": 2.2561257512713797, + "c7": 1.1280628756356899 }, "rgb": [58, 15, 49] }, @@ -436650,23 +436650,23 @@ "year": 1825, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 4.327134787225294, - "c2": 27.47915163429077, - "c3": -20.08657929304439, - "c4": -4.253548740413546, - "c5": 22.34499607961696, - "c6": 0.9469056008842145, - "c7": -1.2987814596591143 + "points": { + "c1": -11.987778985569335, + "c2": -24.164328167843564, + "c3": 3.4002772758977535, + "c4": -6.539269717804331, + "c5": -21.443644000255944, + "c6": 16.643079805764298, + "c7": -27.41608435986113 }, - "vertexSeeds": { - "c1": 4.732822296480822, - "c2": 4.528021065808657, - "c3": 4.9100271367411406, - "c4": 4.6380315358872, - "c5": 4.4776831388657525, - "c6": 4.614251461899726, - "c7": 4.5434091963002174 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256593, + "c3": 5.894590846047156, + "c4": 4.715672676837729, + "c5": 3.5367545076282916, + "c6": 2.3578363384188643, + "c7": 1.178918169209437 }, "rgb": [86, 146, 138] }, @@ -436677,23 +436677,23 @@ "year": 1825, "resistanceReported": false, "duration": 38016000, - "curveSeeds": { - "c1": 34.163560361836105, - "c2": 30.728978412432824, - "c3": 33.50433240149127, - "c4": 34.63467744322692, - "c5": 47.9226141548898, - "c6": 22.334888474340588, - "c7": -41.854218788357095 + "points": { + "c1": -21.118884645198683, + "c2": -52.18779083121348, + "c3": -49.813479811694016, + "c4": 23.77396364336319, + "c5": 3.306410002385789, + "c6": 20.447720065414572, + "c7": 41.556983828468475 }, - "vertexSeeds": { - "c1": 0.940078864771356, - "c2": 0.9470027116166359, - "c3": 0.9511433831701324, - "c4": 0.9485335901852688, - "c5": 0.934961979951227, - "c6": 0.933183224980429, - "c7": 0.9514673414344524 + "offsets": { + "c1": 1.6181229773462782, + "c2": 1.3869625520110906, + "c3": 1.1558021266759146, + "c4": 0.9246417013407271, + "c5": 0.6934812760055511, + "c6": 0.46232085067036355, + "c7": 0.23116042533518752 }, "rgb": [58, 15, 49] }, @@ -436704,23 +436704,23 @@ "year": 1824, "resistanceReported": false, "duration": 5443200, - "curveSeeds": { - "c1": -8.873468994444398, - "c2": 5.400373618138701, - "c3": 0.8099527834053397, - "c4": -9.451221969919892, - "c5": 14.63379163100107, - "c6": 8.0485397294566, - "c7": 12.941447564542024 + "points": { + "c1": 4.787168169318576, + "c2": 5.352324998610332, + "c3": 1.4552343159900865, + "c4": 1.7231923690318673, + "c5": 1.2452624615816354, + "c6": 1.6295543673177946, + "c7": -9.708074884269143 }, - "vertexSeeds": { - "c1": 7.360663665640657, - "c2": 7.19046637185225, - "c3": 7.358348445025347, - "c4": 7.356688117079823, - "c5": 7.156896614831712, - "c6": 7.282461804153108, - "c7": 7.148639124157352 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284319, + "c3": 8.784096162736924, + "c4": 7.027276930189527, + "c5": 5.270457697642131, + "c6": 3.513638465094734, + "c7": 1.7568192325473964 }, "rgb": [222, 0, 59] }, @@ -436731,23 +436731,23 @@ "year": 1825, "resistanceReported": true, "duration": 15120000, - "curveSeeds": { - "c1": -16.949936037503626, - "c2": 16.881438390434116, - "c3": 24.37889218948771, - "c4": -5.204085718896298, - "c5": -21.32004956874969, - "c6": -4.049367739375743, - "c7": 1.2333256793689813 + "points": { + "c1": 23.500240741494746, + "c2": -11.453279550665549, + "c3": 11.428261728415702, + "c4": -4.822890813543744, + "c5": -25.798052985736202, + "c6": -20.972782252776252, + "c7": -9.274599616092615 }, - "vertexSeeds": { - "c1": 2.5453367875647666, - "c2": 2.5453367875647666, - "c3": 2.5453367875647666, - "c4": 2.5453367875647666, - "c5": 2.5453367875647666, - "c6": 2.5453367875647666, - "c7": 2.5453367875647666 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -436758,23 +436758,23 @@ "year": 1825, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 19.990179669608217, - "c2": 21.226523464918273, - "c3": -18.53843597641147, - "c4": 7.355723754554191, - "c5": 17.095516844858267, - "c6": 3.078600048132653, - "c7": -22.671708007526526 + "points": { + "c1": -14.52856447054136, + "c2": 15.56004667961242, + "c3": -23.43207865678188, + "c4": 6.674037238747772, + "c5": -1.795817170316397, + "c6": -19.90669989590844, + "c7": 16.99962840764644 }, - "vertexSeeds": { - "c1": 7.800719787675727, - "c2": 8.468751585730384, - "c3": 8.398312073228961, - "c4": 8.389016595727732, - "c5": 7.965975938264011, - "c6": 7.81091453822709, - "c7": 8.43614139605892 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.12205270457698, + "c3": 10.101710587147487, + "c4": 8.081368469717994, + "c5": 6.061026352288501, + "c6": 4.040684234858986, + "c7": 2.020342117429493 }, "rgb": [77, 76, 132] }, @@ -436785,23 +436785,23 @@ "year": 1825, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -14.51952207537275, - "c2": -17.22741212787814, - "c3": -22.325339158182018, - "c4": 7.951425151135009, - "c5": -18.502774964209546, - "c6": 1.6118086689490454, - "c7": -1.221405034224535 + "points": { + "c1": 12.98121417467512, + "c2": -11.979213644278058, + "c3": -3.715166001022382, + "c4": 2.988453575365316, + "c5": 21.02068421988658, + "c6": -26.78138517815295, + "c7": 20.117989318464932 }, - "vertexSeeds": { - "c1": 1.8688855703678902, - "c2": 1.8030242848880467, - "c3": 1.7521047235414775, - "c4": 1.8193038819455545, - "c5": 1.7489645643562362, - "c6": 1.8768582763464055, - "c7": 1.7961103923528172 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.77392510402219, + "c3": 2.3116042533518275, + "c4": 1.8492834026814613, + "c5": 1.386962552011095, + "c6": 0.9246417013407289, + "c7": 0.46232085067036627 }, "rgb": [238, 201, 159] }, @@ -436812,23 +436812,23 @@ "year": 1825, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 8.291501570864138, - "c2": 10.336543034007864, - "c3": 30.299667370805597, - "c4": -3.967056366707478, - "c5": -30.506475992305347, - "c6": -27.796639201651903, - "c7": -0.6191907058820441 + "points": { + "c1": 2.3136652126434356, + "c2": -17.43286950593567, + "c3": -0.8526525485656506, + "c4": 25.63964100821954, + "c5": -20.72481872439068, + "c6": -18.94106919333829, + "c7": -25.863469235387033 }, - "vertexSeeds": { - "c1": 11.23251215769468, - "c2": 11.264278264021366, - "c3": 11.253615918640431, - "c4": 11.25674310968277, - "c5": 11.273611551226871, - "c6": 11.29829499076371, - "c7": 11.272953039252709 + "offsets": { + "c1": 18.899676375404532, + "c2": 16.199722607489782, + "c3": 13.499768839574605, + "c4": 10.799815071659856, + "c5": 8.099861303744676, + "c6": 5.399907535829928, + "c7": 2.699953767914749 }, "rgb": [77, 76, 132] }, @@ -436839,23 +436839,23 @@ "year": 1825, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -32.44931405776422, - "c2": -19.786916047046663, - "c3": 30.777483973471647, - "c4": 35.41138914362952, - "c5": -9.693303277874804, - "c6": -6.506722721261337, - "c7": -13.523985529429762 + "points": { + "c1": -3.8778730276048634, + "c2": -17.704616868717636, + "c3": 16.75794130637191, + "c4": 5.866621185529908, + "c5": -14.957918066416838, + "c6": -21.433263469636675, + "c7": -17.131319729413487 }, - "vertexSeeds": { - "c1": 9.703889238743407, - "c2": 9.480911403805178, - "c3": 8.767176189213833, - "c4": 9.466206162448245, - "c5": 9.358003155989254, - "c6": 10.377591037167369, - "c7": 9.595433813152844 + "offsets": { + "c1": 18.220064724919094, + "c2": 15.617198335644932, + "c3": 13.014331946370788, + "c4": 10.411465557096626, + "c5": 7.808599167822466, + "c6": 5.205732778548313, + "c7": 2.6028663892741606 }, "rgb": [222, 0, 59] }, @@ -436866,23 +436866,23 @@ "year": 1825, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": -29.906977401323573, - "c2": 15.048596945382158, - "c3": -36.78478735277006, - "c4": 2.6569679894146887, - "c5": -14.687637662158568, - "c6": -19.214043470793513, - "c7": -25.53400411931807 + "points": { + "c1": -3.2830992593532997, + "c2": 31.17083567381259, + "c3": 31.752214254897567, + "c4": -17.89334316158096, + "c5": -34.617144757708395, + "c6": 22.865775345729517, + "c7": 34.61704519960172 }, - "vertexSeeds": { - "c1": 11.50590429427759, - "c2": 11.373737205717276, - "c3": 11.520454125288754, - "c4": 11.55609030534202, - "c5": 11.498797637240846, - "c6": 11.46656655651983, - "c7": 11.440040862577026 + "offsets": { + "c1": 19.320388349514563, + "c2": 16.560332871012513, + "c3": 13.800277392510457, + "c4": 11.040221914008407, + "c5": 8.280166435506155, + "c6": 5.520110957004103, + "c7": 2.7600554785020517 }, "rgb": [77, 76, 132] }, @@ -436893,23 +436893,23 @@ "year": 1824, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": -17.66842967032881, - "c2": -4.878768785406475, - "c3": 9.810434901019399, - "c4": -8.835978462650347, - "c5": 18.521591544637793, - "c6": -2.6810761855953995, - "c7": -4.720423069598185 + "points": { + "c1": -2.7780568531109964, + "c2": -7.166284774061616, + "c3": 17.36560325999563, + "c4": 2.8470793820478377, + "c5": -12.33435354623898, + "c6": 16.594143694001012, + "c7": 14.417796158823876 }, - "vertexSeeds": { - "c1": 8.764418937056467, - "c2": 8.398484197945722, - "c3": 8.994451306725583, - "c4": 8.624689039377001, - "c5": 8.836530771305396, - "c6": 8.999017020085374, - "c7": 8.556563254835599 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783623, + "c3": 10.795191863153033, + "c4": 8.636153490522416, + "c5": 6.477115117891824, + "c6": 4.318076745261208, + "c7": 2.159038372630592 }, "rgb": [77, 76, 132] }, @@ -436920,23 +436920,23 @@ "year": 1825, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 13.936747515844761, - "c2": -5.643777214285507, - "c3": 13.323153506201574, - "c4": 4.347800224627864, - "c5": 5.695586687791373, - "c6": 25.073932871971206, - "c7": -20.468084266295968 + "points": { + "c1": -28.83837889223865, + "c2": 18.62982118441068, + "c3": 3.5801109172527106, + "c4": 24.278996854211115, + "c5": -8.592187472087364, + "c6": 4.5113742127139105, + "c7": 27.561298312462398 }, - "vertexSeeds": { - "c1": 9.467570348524836, - "c2": 9.214848602670878, - "c3": 9.180335412891829, - "c4": 9.663074652994347, - "c5": 9.948413342328466, - "c6": 9.648781244190623, - "c7": 9.687435145190621 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754505, + "c3": 11.927877947295418, + "c4": 9.54230235783633, + "c5": 7.156726768377242, + "c6": 4.771151178918175, + "c7": 2.385575589459067 }, "rgb": [222, 0, 59] }, @@ -436947,23 +436947,23 @@ "year": 1826, "resistanceReported": false, "duration": 45446400, - "curveSeeds": { - "c1": -35.87849056683644, - "c2": 42.73915528570641, - "c3": -56.53881559783512, - "c4": -39.01681856719854, - "c5": -4.247548623524146, - "c6": -4.748981626927495, - "c7": 46.588497692443546 + "points": { + "c1": -31.00057092477469, + "c2": -11.30649025148481, + "c3": 41.67765000019096, + "c4": 42.433044565998934, + "c5": 40.31487680839877, + "c6": -25.65060333520131, + "c7": -0.08331633446019282 }, - "vertexSeeds": { - "c1": 7.16472131240803, - "c2": 7.223045771274526, - "c3": 7.177736165676794, - "c4": 7.172901958500126, - "c5": 7.197716552563423, - "c6": 7.2178513478267625, - "c7": 7.1671834459363515 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889042977, + "c3": 8.645399907535792, + "c4": 6.916319926028605, + "c5": 5.187239944521419, + "c6": 3.458159963014234, + "c7": 1.7290799815071858 }, "rgb": [86, 146, 138] }, @@ -436974,23 +436974,23 @@ "year": 1825, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 10.866639130709064, - "c2": 28.08160695739767, - "c3": 22.07773877132264, - "c4": -18.23591381047202, - "c5": 10.090552005953302, - "c6": -24.978541625912946, - "c7": -29.604994093776266 + "points": { + "c1": 22.583868372482424, + "c2": 26.193457491056098, + "c3": 12.612834976662807, + "c4": 21.22195905855602, + "c5": 25.42992472691547, + "c6": 1.2753994507869741, + "c7": -12.560558620432118 }, - "vertexSeeds": { - "c1": 6.597150719635458, - "c2": 6.429442039123986, - "c3": 6.320443372654866, - "c4": 6.456103950814868, - "c5": 6.500892588221157, - "c6": 6.395727686634773, - "c7": 6.472453780290524 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.51456310679613, + "c3": 7.92880258899676, + "c4": 6.343042071197421, + "c5": 4.75728155339805, + "c6": 3.1715210355987105, + "c7": 1.585760517799371 }, "rgb": [238, 201, 159] }, @@ -437001,23 +437001,23 @@ "year": 1825, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -17.899366997755944, - "c2": -25.039953672329396, - "c3": 17.108579813693297, - "c4": 23.2033324166457, - "c5": 13.517539814390346, - "c6": -23.050144128342623, - "c7": -21.33381249748777 + "points": { + "c1": -4.73398925465419, + "c2": -26.622168995240855, + "c3": 24.806332665004796, + "c4": 18.597481164288702, + "c5": 11.917423351875208, + "c6": -7.832999178067265, + "c7": 17.32775436003564 }, - "vertexSeeds": { - "c1": 4.13612496033527, - "c2": 3.7504431725786476, - "c3": 4.319060218930023, - "c4": 4.418583672463194, - "c5": 4.431366716502225, - "c6": 3.775287741402385, - "c7": 3.93507900188033 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251043, + "c3": 5.3166897827092, + "c4": 4.253351826167362, + "c5": 3.190013869625519, + "c6": 2.126675913083681, + "c7": 1.0633379565418433 }, "rgb": [77, 76, 132] }, @@ -437028,23 +437028,23 @@ "year": 1825, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -22.398507395837523, - "c2": 20.30718964541979, - "c3": -3.696021536935799, - "c4": 0.6621717641054374, - "c5": 13.332290509535703, - "c6": 22.724864565888062, - "c7": -9.921522411084883 + "points": { + "c1": 0.23732162100131404, + "c2": -8.310389334208796, + "c3": -22.909500442315547, + "c4": -12.914375792738543, + "c5": -13.298182001513034, + "c6": -32.39143537145639, + "c7": 15.560738497960322 }, - "vertexSeeds": { - "c1": 9.902513719583279, - "c2": 9.887138886315233, - "c3": 9.89547397390864, - "c4": 9.885314018889005, - "c5": 9.850622369462132, - "c6": 9.890078256549494, - "c7": 9.867450754246303 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.174757281553465, + "c3": 11.81229773462773, + "c4": 9.449838187702232, + "c5": 7.087378640776732, + "c6": 4.724919093851233, + "c7": 2.3624595469254994 }, "rgb": [77, 76, 132] }, @@ -437055,23 +437055,23 @@ "year": 1825, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -2.596136271353803, - "c2": -12.988077726426233, - "c3": -8.679321361810228, - "c4": 27.08861501343568, - "c5": -13.514310119413285, - "c6": 24.75041715505771, - "c7": 27.76997510443489 + "points": { + "c1": -21.27367581782346, + "c2": 20.279459162966134, + "c3": -30.396279980583763, + "c4": -13.372498719298655, + "c5": 20.38701307640349, + "c6": 9.051698880514465, + "c7": -1.0817691034807098 }, - "vertexSeeds": { - "c1": 7.555828729495821, - "c2": 7.577788172252171, - "c3": 7.472410683631256, - "c4": 7.284547909142286, - "c5": 7.2925126935703215, - "c6": 7.487108349213593, - "c7": 7.46040905946344 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088773, + "c3": 9.24641701340729, + "c4": 7.397133610725838, + "c5": 5.5478502080443866, + "c6": 3.698566805362934, + "c7": 1.8492834026814524 }, "rgb": [77, 76, 132] }, @@ -437082,23 +437082,23 @@ "year": 1825, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -14.776870561485076, - "c2": -27.80597290089519, - "c3": 2.2612519155223936, - "c4": -4.474090451156929, - "c5": 3.279261341026917, - "c6": 12.469838468535208, - "c7": 15.002231592844375 + "points": { + "c1": 6.6346280264580955, + "c2": 16.151181317083157, + "c3": 26.817194747452348, + "c4": -4.684424932668737, + "c5": 23.135983248171634, + "c6": -1.261702656681333, + "c7": -17.824139090295162 }, - "vertexSeeds": { - "c1": 6.0086371118149335, - "c2": 5.6626589057346015, - "c3": 6.17197168862878, - "c4": 6.291305436053728, - "c5": 5.761286567782229, - "c6": 6.549271439171573, - "c7": 5.888036838922542 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997229, + "c3": 8.044382801664353, + "c4": 6.4355062413314865, + "c5": 4.826629680998609, + "c6": 3.2177531206657433, + "c7": 1.608876560332866 }, "rgb": [58, 15, 49] }, @@ -437109,23 +437109,23 @@ "year": 1825, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -27.08836267819841, - "c2": 0.998134348000459, - "c3": 5.582289813821614, - "c4": -24.8693403068427, - "c5": -12.287607984726977, - "c6": 11.372361447887545, - "c7": -3.5904132204152717 + "points": { + "c1": 23.41983770985487, + "c2": 18.502620635562845, + "c3": -7.546400872023529, + "c4": 14.798572653609899, + "c5": -8.846466790448574, + "c6": -4.347423692933347, + "c7": -22.85114686495036 }, - "vertexSeeds": { - "c1": 6.709579692223813, - "c2": 6.163734515572938, - "c3": 6.233630107279435, - "c4": 6.6126455744594255, - "c5": 6.78630116706158, - "c6": 6.927180946904553, - "c7": 6.38923158411538 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640772, + "c3": 8.414239482200639, + "c4": 6.7313915857605195, + "c5": 5.048543689320386, + "c6": 3.3656957928802527, + "c7": 1.6828478964401334 }, "rgb": [238, 201, 159] }, @@ -437136,23 +437136,23 @@ "year": 1825, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -11.736684573611864, - "c2": 23.710866199528667, - "c3": 13.7951758059219, - "c4": 32.715898366314335, - "c5": 12.070480945350269, - "c6": -3.518384950462572, - "c7": -17.895466903309654 + "points": { + "c1": 7.628638803114036, + "c2": 7.5352067029805525, + "c3": -19.48451926759438, + "c4": 17.405979764936617, + "c5": 14.694653250241487, + "c6": -33.69376220785827, + "c7": 11.784047608845817 }, - "vertexSeeds": { - "c1": 3.8331048642198744, - "c2": 3.8200149492947375, - "c3": 3.7795962125911253, - "c4": 3.677041462769755, - "c5": 3.829995152233759, - "c6": 3.8418019015181373, - "c7": 3.7113116907100294 + "offsets": { + "c1": 6.440129449838188, + "c2": 5.520110957004167, + "c3": 4.600092464170146, + "c4": 3.680073971336104, + "c5": 2.7600554785020837, + "c6": 1.8400369856680625, + "c7": 0.920018492834021 }, "rgb": [58, 15, 49] }, @@ -437163,23 +437163,23 @@ "year": 1825, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -9.578416294224802, - "c2": -16.732165166646688, - "c3": -16.207656604754945, - "c4": -0.20922676079832314, - "c5": 2.078205846303433, - "c6": -16.82254273077296, - "c7": -7.428884630719892 + "points": { + "c1": -6.54826853895695, + "c2": -19.030657670403613, + "c3": 2.824134179736763, + "c4": -13.989756910731545, + "c5": -14.984473886287656, + "c6": 17.37166626738419, + "c7": -11.173143309560693 }, - "vertexSeeds": { - "c1": 10.375145299678188, - "c2": 9.809016132161679, - "c3": 9.792015494125458, - "c4": 10.510726382329501, - "c5": 10.588388314195122, - "c6": 10.443453561788674, - "c7": 10.566271442053493 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961173, + "c3": 12.621359223300983, + "c4": 10.097087378640753, + "c5": 7.572815533980564, + "c6": 5.048543689320376, + "c7": 2.524271844660188 }, "rgb": [238, 201, 159] }, @@ -437190,23 +437190,23 @@ "year": 1824, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": -20.79029795085202, - "c2": -13.776539506829156, - "c3": -0.9897297580660158, - "c4": 5.209862756326526, - "c5": -19.368816324581264, - "c6": 9.830101819408366, - "c7": -4.2672971038107335 + "points": { + "c1": -19.280530057350365, + "c2": 21.10522751456567, + "c3": -12.961115627272845, + "c4": -17.935605949209446, + "c5": -1.7816518658593097, + "c6": 5.924251773129733, + "c7": -1.8162005584554457 }, - "vertexSeeds": { - "c1": 2.9152939895067562, - "c2": 3.0295202163256625, - "c3": 2.997179121853245, - "c4": 2.989674374068942, - "c5": 2.9534149255166873, - "c6": 3.0170908839307837, - "c7": 2.9845082512647227 + "offsets": { + "c1": 5.242718446601942, + "c2": 4.4937586685159445, + "c3": 3.7447988904299603, + "c4": 2.995839112343963, + "c5": 2.246879334257979, + "c6": 1.4979195561719816, + "c7": 0.7489597780859975 }, "rgb": [86, 146, 138] }, @@ -437217,23 +437217,23 @@ "year": 1825, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 14.083061669606206, - "c2": 14.579938360474191, - "c3": -28.34987697411142, - "c4": 7.660189589993426, - "c5": -19.112305726399512, - "c6": 19.209881469185465, - "c7": 15.562868010771542 + "points": { + "c1": -28.458692713971097, + "c2": -8.750275554609036, + "c3": 29.5414351946315, + "c4": -9.130554026368614, + "c5": 11.592297692986708, + "c6": -8.983656156301116, + "c7": -25.764830476397318 }, - "vertexSeeds": { - "c1": 2.8588027893738026, - "c2": 2.859435449861748, - "c3": 2.861930934985878, - "c4": 2.8754996294998856, - "c5": 2.8624372814914567, - "c6": 2.8681033560976315, - "c7": 2.8607662515387977 + "offsets": { + "c1": 4.82200647249191, + "c2": 4.133148404993085, + "c3": 3.44429033749426, + "c4": 2.7554322699954357, + "c5": 2.066574202496474, + "c6": 1.3777161349976492, + "c7": 0.6888580674988246 }, "rgb": [86, 146, 138] }, @@ -437244,23 +437244,23 @@ "year": 1825, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -2.9031551592244966, - "c2": 20.587372201184074, - "c3": 21.48774016247993, - "c4": -4.2914073883653465, - "c5": 11.447699714480429, - "c6": -3.714704799725091, - "c7": -21.09585957236316 + "points": { + "c1": -3.6340478699985503, + "c2": 5.543138223852608, + "c3": -5.857724120777846, + "c4": 24.825147891786422, + "c5": 3.4945681460278912, + "c6": 9.721170074958508, + "c7": -23.53006094851384 }, - "vertexSeeds": { - "c1": 5.782141359558237, - "c2": 6.067299592404931, - "c3": 5.945940088967665, - "c4": 6.194442996204813, - "c5": 6.367844314870663, - "c6": 6.013963155373269, - "c7": 6.428632752583739 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.51456310679612, + "c3": 7.928802588996758, + "c4": 6.34304207119741, + "c5": 4.75728155339806, + "c6": 3.171521035598698, + "c7": 1.585760517799349 }, "rgb": [238, 201, 159] }, @@ -437271,23 +437271,23 @@ "year": 1825, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 30.89798004494657, - "c2": 24.285210332497307, - "c3": -10.989542287590602, - "c4": 36.75430229495053, - "c5": -13.702179968299728, - "c6": -20.3534101505974, - "c7": -12.332839796557138 + "points": { + "c1": -21.04702205176798, + "c2": 10.566559075337501, + "c3": -14.448646855210399, + "c4": 43.02790764649952, + "c5": -29.24057424345085, + "c6": -33.88939979347491, + "c7": -8.256089361608275 }, - "vertexSeeds": { - "c1": 9.016324425023589, - "c2": 9.24145901870517, - "c3": 9.178036675425046, - "c4": 8.078080928728037, - "c5": 8.609854918292633, - "c6": 8.289969076747678, - "c7": 8.885944686115584 + "offsets": { + "c1": 15.436893203883495, + "c2": 13.231622746185854, + "c3": 11.026352288488207, + "c4": 8.821081830790568, + "c5": 6.615811373092921, + "c6": 4.410540915395281, + "c7": 2.2052704576976403 }, "rgb": [77, 76, 132] }, @@ -437298,23 +437298,23 @@ "year": 1825, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 28.343270210215344, - "c2": 29.87452273375459, - "c3": 14.041300356821758, - "c4": -28.946405089071945, - "c5": 2.1023119909920496, - "c6": 27.071376839683992, - "c7": 28.68180619758823 + "points": { + "c1": 18.945423546810815, + "c2": -30.468897282772613, + "c3": 1.3837407625361422, + "c4": -4.513128570899529, + "c5": 30.317768493008572, + "c6": -3.727850186393983, + "c7": 23.092282804224254 }, - "vertexSeeds": { - "c1": 14.173741919719875, - "c2": 14.207067425344283, - "c3": 14.097042097286325, - "c4": 13.791968494153178, - "c5": 13.417156411789916, - "c6": 14.467463803483847, - "c7": 14.640642657568284 + "offsets": { + "c1": 24.466019417475728, + "c2": 20.970873786407765, + "c3": 17.475728155339805, + "c4": 13.980582524271844, + "c5": 10.485436893203882, + "c6": 6.990291262135922, + "c7": 3.495145631067961 }, "rgb": [86, 146, 138] }, @@ -437325,23 +437325,23 @@ "year": 1825, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 13.12116206994098, - "c2": 9.100875961737156, - "c3": -10.141953317525903, - "c4": 19.17150578614946, - "c5": -3.7891821143578923, - "c6": -5.481474496130714, - "c7": -13.522200993469319 + "points": { + "c1": 10.32851589692536, + "c2": -20.74743573947318, + "c3": 9.5611897527682, + "c4": -4.339425680928851, + "c5": 14.55180668812806, + "c6": -17.5834876927927, + "c7": -17.910060830196123 }, - "vertexSeeds": { - "c1": 0.4218580997057801, - "c2": 0.40357315968318574, - "c3": 0.4180023551581713, - "c4": 0.38584555546036947, - "c5": 0.3839059489641377, - "c6": 0.38438203884009564, - "c7": 0.42071257757319686 + "offsets": { + "c1": 0.7443365695792881, + "c2": 0.6380027739251037, + "c3": 0.5316689782709195, + "c4": 0.4253351826167362, + "c5": 0.31900138696255187, + "c6": 0.21266759130836763, + "c7": 0.10633379565418426 }, "rgb": [86, 146, 138] }, @@ -437352,23 +437352,23 @@ "year": 1825, "resistanceReported": false, "duration": 41040000, - "curveSeeds": { - "c1": -21.401306971889426, - "c2": -51.33107133456621, - "c3": -49.48250066657849, - "c4": 42.52937323923657, - "c5": -24.7787832192273, - "c6": -43.62249582324497, - "c7": 23.729488736176755 + "points": { + "c1": -31.701519016984, + "c2": -9.611400411793774, + "c3": -33.12841898753583, + "c4": -4.81971242532078, + "c5": -8.525662163285318, + "c6": -0.08293928429874597, + "c7": -19.947111573167966 }, - "vertexSeeds": { - "c1": 7.466523745179894, - "c2": 7.4755643469785715, - "c3": 7.466530512843721, - "c4": 7.462040738619106, - "c5": 7.473493958685676, - "c6": 7.474839068404506, - "c7": 7.462608586528892 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.707350901525356, + "c3": 8.922792417938151, + "c4": 7.138233934350237, + "c5": 5.353675450763032, + "c6": 3.5691169671751184, + "c7": 1.7845584835879142 }, "rgb": [77, 76, 132] }, @@ -437379,23 +437379,23 @@ "year": 1825, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -6.859598579348567, - "c2": -22.24451939690045, - "c3": 27.78268698478319, - "c4": 17.295340454164105, - "c5": -12.629190715692722, - "c6": 1.7854955229919298, - "c7": -31.568679408990132 + "points": { + "c1": -15.299057197435719, + "c2": 3.1496926490679726, + "c3": -4.516243149174173, + "c4": -32.62656367516263, + "c5": 23.503892870199095, + "c6": -23.71456893600701, + "c7": 11.707594791705993 }, - "vertexSeeds": { - "c1": 8.237281714646146, - "c2": 7.880457430273993, - "c3": 7.688545880687789, - "c4": 8.302096618177114, - "c5": 7.6486705748101524, - "c6": 7.792391748520005, - "c7": 7.98121802285419 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295414, + "c3": 9.939898289412856, + "c4": 7.951918631530275, + "c5": 5.963938973647719, + "c6": 3.9759593157651376, + "c7": 1.9879796578825801 }, "rgb": [77, 76, 132] }, @@ -437406,23 +437406,23 @@ "year": 1825, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 14.032155651771753, - "c2": 11.040436767926508, - "c3": -4.241212105607239, - "c4": 18.493286692804226, - "c5": 28.229385678045766, - "c6": -28.80288897534055, - "c7": 16.903002814421335 + "points": { + "c1": 18.858916652963316, + "c2": -29.8916708009874, + "c3": -15.855619233506854, + "c4": -11.821159992461908, + "c5": -26.004045639736667, + "c6": 19.244087063165075, + "c7": -15.363985957460933 }, - "vertexSeeds": { - "c1": 5.9057155317801255, - "c2": 5.900724298594218, - "c3": 5.989436290570352, - "c4": 6.007680515886851, - "c5": 6.247195021223285, - "c6": 5.893405302407828, - "c7": 5.88066153491668 + "offsets": { + "c1": 10.614886731391586, + "c2": 9.098474341192787, + "c3": 7.58206195099399, + "c4": 6.065649560795191, + "c5": 4.549237170596394, + "c6": 3.0328247803975956, + "c7": 1.5164123901987978 }, "rgb": [86, 146, 138] }, @@ -437433,23 +437433,23 @@ "year": 1825, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 26.523147407598522, - "c2": 20.625702019326383, - "c3": 10.13866005881033, - "c4": 1.7250222250863914, - "c5": 14.9280770926066, - "c6": -16.948932934189628, - "c7": 9.982484225817743 + "points": { + "c1": 32.76122911397191, + "c2": 6.33152818854925, + "c3": -32.62400715144831, + "c4": -33.045465796966624, + "c5": -11.278512918470263, + "c6": 34.51830291638727, + "c7": -11.257182112768703 }, - "vertexSeeds": { - "c1": 7.085887939380172, - "c2": 7.732691666910618, - "c3": 6.161342112877261, - "c4": 6.987473692733286, - "c5": 7.336653739938039, - "c6": 7.625310035452932, - "c7": 6.648045535336781 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289874, + "c3": 9.3619972260749, + "c4": 7.489597780859918, + "c5": 5.617198335644937, + "c6": 3.7447988904299625, + "c7": 1.8723994452149813 }, "rgb": [77, 76, 132] }, @@ -437460,23 +437460,23 @@ "year": 1825, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": -3.762713756068713, - "c2": -25.071991766986756, - "c3": -0.043097546013584065, - "c4": -22.388391258960542, - "c5": -23.148042118615635, - "c6": -17.55349336591027, - "c7": -6.777607127162128 + "points": { + "c1": -1.0912988044598464, + "c2": 16.15596801407493, + "c3": 7.553055597873211, + "c4": -15.141185226602792, + "c5": 11.549611794760409, + "c6": 3.9310297863286827, + "c7": 12.36874192601838 }, - "vertexSeeds": { - "c1": 8.583655520954142, - "c2": 8.484677133561517, - "c3": 8.374551307367303, - "c4": 8.565191025560921, - "c5": 8.385580340868213, - "c6": 8.577575679866966, - "c7": 8.497350977469667 + "offsets": { + "c1": 14.336569579288025, + "c2": 12.288488210818297, + "c3": 10.24040684234857, + "c4": 8.192325473878842, + "c5": 6.144244105409182, + "c6": 4.096162736939455, + "c7": 2.0480813684697274 }, "rgb": [86, 146, 138] }, @@ -437487,23 +437487,23 @@ "year": 1825, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": -14.1161663633706, - "c2": 12.335683534780404, - "c3": -15.380398716220846, - "c4": -16.116525331853644, - "c5": -13.136246432969866, - "c6": -4.897810328075586, - "c7": -17.33974006132749 + "points": { + "c1": -19.71543766727286, + "c2": 8.055634199137192, + "c3": -8.331888836023941, + "c4": -12.39591582575971, + "c5": 8.368916663386045, + "c6": -3.648617803946461, + "c7": -18.50547453608966 }, - "vertexSeeds": { - "c1": 3.270310888040349, - "c2": 3.2462375684454097, - "c3": 3.1667076691329927, - "c4": 3.1095609076489303, - "c5": 3.2102643792491437, - "c6": 3.3274310121712043, - "c7": 3.09720603388481 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [238, 201, 159] }, @@ -437514,23 +437514,23 @@ "year": 1825, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": -8.197213210588819, - "c2": -17.878582462069843, - "c3": -7.988891021958434, - "c4": 13.631972027434301, - "c5": 12.932499030202457, - "c6": 7.387978599907182, - "c7": -17.50313654015639 + "points": { + "c1": -14.613751548860147, + "c2": 16.683895593540015, + "c3": -13.073694567023075, + "c4": 20.629613998525635, + "c5": -3.79505803658704, + "c6": -0.6655610740357858, + "c7": -20.04326598380889 }, - "vertexSeeds": { - "c1": 4.973333121404477, - "c2": 5.180679844552425, - "c3": 5.034971136324207, - "c4": 4.886518052996707, - "c5": 5.23700461934172, - "c6": 4.916263471402273, - "c7": 4.939468810533194 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980586, + "c3": 6.3106796116504915, + "c4": 5.048543689320376, + "c5": 3.786407766990282, + "c6": 2.524271844660188, + "c7": 1.262135922330094 }, "rgb": [238, 201, 159] }, @@ -437541,23 +437541,23 @@ "year": 1825, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": 11.341074474690409, - "c2": -0.6555248091258292, - "c3": -25.10209411083389, - "c4": -23.00080844194143, - "c5": -19.284820640665576, - "c6": 23.8104126717539, - "c7": -0.14432605211852945 + "points": { + "c1": -17.24296909160214, + "c2": -33.437065629477715, + "c3": 20.984128091422498, + "c4": -31.44150999106284, + "c5": 8.903310073298776, + "c6": -28.25842318318437, + "c7": 5.7261037807084065 }, - "vertexSeeds": { - "c1": 4.7366014763848785, - "c2": 6.597851714885793, - "c3": 6.517808564287476, - "c4": 7.058795103509871, - "c5": 7.026539670320698, - "c6": 7.8589527453421315, - "c7": 7.380492192229049 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094314, + "c3": 9.824318076745264, + "c4": 7.859454461396209, + "c5": 5.8945908460471585, + "c6": 3.9297272306981053, + "c7": 1.964863615349052 }, "rgb": [222, 0, 59] }, @@ -437568,23 +437568,23 @@ "year": 1825, "resistanceReported": false, "duration": 29635200, - "curveSeeds": { - "c1": -1.4949767865299535, - "c2": 28.133854779485254, - "c3": 14.311307961217622, - "c4": -1.5904329189877302, - "c5": 18.558331850170248, - "c6": -28.79484366061218, - "c7": 16.86447299727822 + "points": { + "c1": 2.1130038922469225, + "c2": -10.665872621675078, + "c3": 32.98730722911659, + "c4": -4.71477787284357, + "c5": 3.743557576379658, + "c6": 40.19901757556385, + "c7": 18.277386045562217 }, - "vertexSeeds": { - "c1": 11.319049298825549, - "c2": 10.808563261599554, - "c3": 10.976521998146284, - "c4": 10.889216778286121, - "c5": 10.842148648907282, - "c6": 10.786154368741704, - "c7": 10.572691740089006 + "offsets": { + "c1": 19.12621359223301, + "c2": 16.39389736477114, + "c3": 13.661581137309312, + "c4": 10.92926490984744, + "c5": 8.19694868238557, + "c6": 5.464632454923744, + "c7": 2.732316227461872 }, "rgb": [58, 15, 49] }, @@ -437595,23 +437595,23 @@ "year": 1825, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -10.536464030814262, - "c2": -18.311464155966334, - "c3": -15.75966447469403, - "c4": 23.469682851155518, - "c5": 30.96626215006203, - "c6": -22.74703623857232, - "c7": -11.535961861964878 + "points": { + "c1": -25.499804092321433, + "c2": -27.590783007674595, + "c3": 13.798329998353687, + "c4": -35.852380492268146, + "c5": -13.388280130522496, + "c6": 5.182355146269622, + "c7": 8.197467713384228 }, - "vertexSeeds": { - "c1": 5.929157696623939, - "c2": 6.021019749017329, - "c3": 5.885586388694105, - "c4": 5.916321457996881, - "c5": 5.866073584297756, - "c6": 6.043337544496643, - "c7": 6.044293482531039 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.71012482662969, + "c3": 7.258437355524721, + "c4": 5.806749884419783, + "c5": 4.355062413314845, + "c6": 2.9033749422099073, + "c7": 1.4516874711049377 }, "rgb": [58, 15, 49] }, @@ -437622,23 +437622,23 @@ "year": 1825, "resistanceReported": false, "duration": 8121600, - "curveSeeds": { - "c1": 5.639011509668755, - "c2": -10.494092444506393, - "c3": -13.262307821543862, - "c4": 4.757980340807002, - "c5": 6.883638382533356, - "c6": 17.955048322269516, - "c7": 8.168066241834946 + "points": { + "c1": 18.415189293851537, + "c2": 18.72085003525279, + "c3": 2.404157260956655, + "c4": -12.264476352428778, + "c5": -16.42116263003225, + "c6": 5.673243117576625, + "c7": -3.048603387653216 }, - "vertexSeeds": { - "c1": 3.3258956683846805, - "c2": 3.4190303417495183, - "c3": 3.5318604965507023, - "c4": 3.426817764997566, - "c5": 3.3644195978740483, - "c6": 3.385041392529941, - "c7": 3.4077760826036014 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [77, 76, 132] }, @@ -437649,23 +437649,23 @@ "year": 1825, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -10.992445694075744, - "c2": -23.174288783565085, - "c3": -7.535002709167216, - "c4": 4.51779066313625, - "c5": 16.776443701779996, - "c6": 20.042498244078388, - "c7": -3.360071584607553 + "points": { + "c1": -9.835495237076742, + "c2": -0.5723603818770293, + "c3": 1.848687135227724, + "c4": 19.393937633033183, + "c5": -11.375840546013837, + "c6": -24.257549000087792, + "c7": -20.074369673435584 }, - "vertexSeeds": { - "c1": 5.094014550763851, - "c2": 4.981740019778714, - "c3": 5.114724405889219, - "c4": 5.05333019135126, - "c5": 5.120980096612163, - "c6": 5.096867924421495, - "c7": 5.003653995445689 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779488, + "c3": 6.1950993989828875, + "c4": 4.956079519186326, + "c5": 3.7170596393897255, + "c6": 2.478039759593163, + "c7": 1.2390198797965626 }, "rgb": [58, 15, 49] }, @@ -437676,23 +437676,23 @@ "year": 1825, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -28.56143466132843, - "c2": 16.26210449520383, - "c3": -30.91857524097347, - "c4": -3.8580759700882794, - "c5": 18.401529145123973, - "c6": -23.634373455484926, - "c7": 35.67825753344172 + "points": { + "c1": 5.422484640840082, + "c2": 14.875531120996342, + "c3": -37.123486826876984, + "c4": 26.017456745175863, + "c5": 8.326343014580083, + "c6": 3.5800858342871393, + "c7": 31.389062520003122 }, - "vertexSeeds": { - "c1": 3.632409528032392, - "c2": 3.676236050462423, - "c3": 3.670816873697702, - "c4": 3.5453873029639866, - "c5": 3.543661265563413, - "c6": 3.6756308055297007, - "c7": 3.687773047021624 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682392, + "c3": 4.415164123902, + "c4": 3.5321312991215876, + "c5": 2.649098474341196, + "c6": 1.7660656495608038, + "c7": 0.8830328247803921 }, "rgb": [86, 146, 138] }, @@ -437703,23 +437703,23 @@ "year": 1825, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -4.500313977442559, - "c2": -15.016393506202217, - "c3": 24.762470745746462, - "c4": -7.275306908740085, - "c5": -1.842627170821899, - "c6": 25.219383025469966, - "c7": 10.972325725275773 + "points": { + "c1": -8.738442175906826, + "c2": 8.438497843372453, + "c3": -18.081336562301807, + "c4": 9.85865433573337, + "c5": 10.342843163999525, + "c6": 9.114226193873854, + "c7": -26.155582071614432 }, - "vertexSeeds": { - "c1": 11.149920427562483, - "c2": 10.61747240281487, - "c3": 11.357006331893984, - "c4": 10.673562870284394, - "c5": 11.524056570264518, - "c6": 11.017111420472789, - "c7": 11.40393042159256 + "offsets": { + "c1": 20.485436893203886, + "c2": 17.558945908460483, + "c3": 14.632454923717058, + "c4": 11.705963938973657, + "c5": 8.77947295423023, + "c6": 5.852981969486828, + "c7": 2.926490984743427 }, "rgb": [222, 0, 59] }, @@ -437730,23 +437730,23 @@ "year": 1825, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -22.49565414983704, - "c2": -8.319162585111872, - "c3": -29.155897781667758, - "c4": 6.886587046205001, - "c5": 5.21247880752788, - "c6": -18.991446567722434, - "c7": 29.754873585869873 + "points": { + "c1": 26.929607011454493, + "c2": 32.67513939215321, + "c3": 35.25006193891544, + "c4": -7.813380578319748, + "c5": -9.826925456478698, + "c6": -6.195536563579424, + "c7": -9.137730874960958 }, - "vertexSeeds": { - "c1": 14.01243441141165, - "c2": 14.043711673903532, - "c3": 14.108724117210121, - "c4": 14.112737491657423, - "c5": 14.136786050667464, - "c6": 14.146511467090813, - "c7": 14.145938969982211 + "offsets": { + "c1": 23.624595469255663, + "c2": 20.24965325936209, + "c3": 16.874711049468523, + "c4": 13.499768839574617, + "c5": 10.124826629681046, + "c6": 6.7498844197874766, + "c7": 3.374942209893906 }, "rgb": [238, 201, 159] }, @@ -437757,23 +437757,23 @@ "year": 1825, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 12.649774700651655, - "c2": -16.458558502708215, - "c3": 2.0034755482257616, - "c4": -2.770372211965883, - "c5": -9.406363489232412, - "c6": 13.73584685868078, - "c7": -4.586317599650018 + "points": { + "c1": 0.7837876870737581, + "c2": -5.698568445829856, + "c3": 3.70758460747723, + "c4": -17.296174655352008, + "c5": 18.813126608380923, + "c6": 11.037057018041779, + "c7": -17.252922732692777 }, - "vertexSeeds": { - "c1": 4.152146867002852, - "c2": 4.075881213881855, - "c3": 4.104664116177522, - "c4": 4.118343451338044, - "c5": 3.9711583765451035, - "c6": 4.061838406793361, - "c7": 3.9295882325451372 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768372, + "c3": 5.039297272306982, + "c4": 4.031437817845581, + "c5": 3.0235783633841917, + "c6": 2.0157189089227905, + "c7": 1.007859454461401 }, "rgb": [222, 0, 59] }, @@ -437784,23 +437784,23 @@ "year": 1826, "resistanceReported": false, "duration": 41558400, - "curveSeeds": { - "c1": -7.32550567051517, - "c2": 1.295148286547537, - "c3": 9.29147834847626, - "c4": 44.667365593094445, - "c5": 52.1517737637472, - "c6": -14.63652330555427, - "c7": 47.65312103023953 + "points": { + "c1": -29.780560980473595, + "c2": 15.331575133041468, + "c3": -6.026544919963889, + "c4": -2.4004810266218968, + "c5": 28.06848501381127, + "c6": 20.07075134380962, + "c7": 29.735671022856508 }, - "vertexSeeds": { - "c1": 8.48976365816341, - "c2": 8.471786522183917, - "c3": 8.06114633286891, - "c4": 8.629947920743701, - "c5": 7.904752702846023, - "c6": 8.531463432805804, - "c7": 7.873766291787334 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140078, + "c3": 10.425335182616744, + "c4": 8.340268146093392, + "c5": 6.255201109570039, + "c6": 4.170134073046705, + "c7": 2.0850670365233523 }, "rgb": [222, 0, 59] }, @@ -437811,23 +437811,23 @@ "year": 1825, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 24.05491234669872, - "c2": -30.687158560562317, - "c3": -15.018862725708004, - "c4": 16.76436962711709, - "c5": 22.801087522981042, - "c6": -10.06650582235918, - "c7": 6.377856626249702 + "points": { + "c1": -32.55549135241576, + "c2": -35.242046529252356, + "c3": 21.73509318898971, + "c4": 38.18631297723895, + "c5": 38.22977979847381, + "c6": -31.132514182893743, + "c7": 30.97509579037041 }, - "vertexSeeds": { - "c1": 9.775445838994049, - "c2": 9.454922690407702, - "c3": 9.463054707301808, - "c4": 9.807745157672919, - "c5": 9.527902887572074, - "c6": 9.744709033056232, - "c7": 9.55708745517885 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352282, + "c3": 11.696717521960226, + "c4": 9.357374017568173, + "c5": 7.018030513176166, + "c6": 4.67868700878411, + "c7": 2.339343504392055 }, "rgb": [238, 201, 159] }, @@ -437838,23 +437838,23 @@ "year": 1825, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 3.9183598766578633, - "c2": 21.630015946964235, - "c3": -13.863828190277022, - "c4": 5.095624278978381, - "c5": -1.0464355995076922, - "c6": 16.10905002340305, - "c7": 15.164547329046961 + "points": { + "c1": -13.139072883595366, + "c2": 15.98590178611905, + "c3": -12.207639124343263, + "c4": -18.55582890157589, + "c5": -15.078925112176114, + "c6": 20.289608730948906, + "c7": -20.27551483069894 }, - "vertexSeeds": { - "c1": 10.23406696752685, - "c2": 9.983255996889108, - "c3": 9.956731627257104, - "c4": 9.787949041684188, - "c5": 10.515622250299119, - "c6": 10.145814930162079, - "c7": 10.566683962994668 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122058, + "c3": 12.713823393435055, + "c4": 10.171058714748053, + "c5": 7.628294036061051, + "c6": 5.085529357374005, + "c7": 2.5427646786870026 }, "rgb": [77, 76, 132] }, @@ -437865,23 +437865,23 @@ "year": 1825, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 21.140090389561294, - "c2": -2.216742656566865, - "c3": -7.51831630037859, - "c4": -25.230698149383006, - "c5": -6.183139197389053, - "c6": 21.458381327904462, - "c7": -18.488451910474105 + "points": { + "c1": -33.978752953574094, + "c2": 17.896895648569227, + "c3": 26.669127750500458, + "c4": 21.764919548910854, + "c5": 17.117031820642545, + "c6": 33.58948924908442, + "c7": 34.25506993417085 }, - "vertexSeeds": { - "c1": 7.466846766517835, - "c2": 7.651241352890956, - "c3": 7.678060668245696, - "c4": 7.71689895224628, - "c5": 7.469211162529118, - "c6": 7.36764335298602, - "c7": 7.496424972804669 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.067961165048537, + "c3": 9.223300970873774, + "c4": 7.378640776699051, + "c5": 5.533980582524288, + "c6": 3.6893203883495254, + "c7": 1.8446601941747627 }, "rgb": [77, 76, 132] }, @@ -437892,23 +437892,23 @@ "year": 1825, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -23.316909236354032, - "c2": -29.987250017224714, - "c3": 4.340621327814198, - "c4": -16.61536454150086, - "c5": -26.145844148203995, - "c6": 30.991873330015302, - "c7": -9.700709431875495 + "points": { + "c1": 23.390135301934613, + "c2": -7.102025208205415, + "c3": -7.092677975465122, + "c4": -32.668946961836674, + "c5": 11.704047602047382, + "c6": 23.6914458879722, + "c7": 26.409508330395383 }, - "vertexSeeds": { - "c1": 6.063655923679496, - "c2": 6.045026700713583, - "c3": 6.028402245974182, - "c4": 6.070154710497283, - "c5": 6.0592240747331605, - "c6": 6.036283322635875, - "c7": 6.027548447068388 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629626, + "c3": 7.2584373555248165, + "c4": 5.806749884419815, + "c5": 4.355062413314813, + "c6": 2.903374942209811, + "c7": 1.4516874711050016 }, "rgb": [238, 201, 159] }, @@ -437919,23 +437919,23 @@ "year": 1825, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -18.848234854395066, - "c2": -6.1491466642594865, - "c3": 21.216917236613902, - "c4": -8.611839795737218, - "c5": 0.7003447629308113, - "c6": 24.318863309842094, - "c7": 15.210800668954462 + "points": { + "c1": -16.06152466461532, + "c2": -23.64824459915448, + "c3": -11.485033225859791, + "c4": 7.075006067212165, + "c5": 11.47175433160762, + "c6": 4.2887567017805495, + "c7": 0.9969607625929093 }, - "vertexSeeds": { - "c1": 9.859381038452886, - "c2": 9.473433853191125, - "c3": 9.78675448883875, - "c4": 9.272986200826598, - "c5": 9.53653081386083, - "c6": 9.54957176268698, - "c7": 9.55032894305098 + "offsets": { + "c1": 16.699029126213592, + "c2": 14.313453536754498, + "c3": 11.927877947295427, + "c4": 9.542302357836332, + "c5": 7.1567267683772595, + "c6": 4.771151178918166, + "c7": 2.385575589459094 }, "rgb": [238, 201, 159] }, @@ -437946,23 +437946,23 @@ "year": 1825, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -20.993090054368572, - "c2": -24.54671649580802, - "c3": 17.830650967093383, - "c4": 14.293551595601357, - "c5": 10.48476859442448, - "c6": -6.420712997245204, - "c7": 23.544509920663415 + "points": { + "c1": 19.747711657416694, + "c2": -17.46421687093209, + "c3": 19.044199338157505, + "c4": 11.073794549726124, + "c5": -11.054902516874044, + "c6": -20.051694252836384, + "c7": -11.438884578843656 }, - "vertexSeeds": { - "c1": 7.494387855242355, - "c2": 7.124839658330692, - "c3": 7.2450222448315, - "c4": 7.414537102641655, - "c5": 7.526880088522948, - "c6": 7.368686726095634, - "c7": 7.144059647405877 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.206657420249654, + "c3": 9.338881183541378, + "c4": 7.471104946833102, + "c5": 5.603328710124827, + "c6": 3.735552473416551, + "c7": 1.8677762367082755 }, "rgb": [58, 15, 49] }, @@ -437973,23 +437973,23 @@ "year": 1825, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -24.508229062337065, - "c2": 14.136951555855948, - "c3": 3.183475034321173, - "c4": 25.37619939553137, - "c5": 21.28452502400336, - "c6": -27.771211335756103, - "c7": 21.66855424676339 + "points": { + "c1": -7.511256054080068, + "c2": 1.957870843326976, + "c3": -11.684607086733187, + "c4": -20.7443095221852, + "c5": -12.92449761493943, + "c6": -29.186204520097473, + "c7": -8.796424503310487 }, - "vertexSeeds": { - "c1": 9.954559076336185, - "c2": 9.263868055529496, - "c3": 9.618838233762498, - "c4": 9.162016114059819, - "c5": 9.281551911423504, - "c6": 9.362914372459628, - "c7": 9.909985314922874 + "offsets": { + "c1": 16.763754045307444, + "c2": 14.368932038834961, + "c3": 11.974110032362455, + "c4": 9.579288025889973, + "c5": 7.18446601941747, + "c6": 4.789644012944986, + "c7": 2.3948220064724834 }, "rgb": [86, 146, 138] }, @@ -438000,23 +438000,23 @@ "year": 1824, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": -13.052721514271743, - "c2": 13.429177259518703, - "c3": 9.177751505355378, - "c4": 5.794434647344424, - "c5": -8.81474979821844, - "c6": -4.659057404457332, - "c7": -13.692060334048094 + "points": { + "c1": -6.311495197762278, + "c2": 12.289837564707646, + "c3": 12.02365435799933, + "c4": -2.5918690151632315, + "c5": 3.3724112239397748, + "c6": -0.8904369997807287, + "c7": -10.170016186881465 }, - "vertexSeeds": { - "c1": 7.337659284210678, - "c2": 7.495699792274132, - "c3": 7.036165405473483, - "c4": 6.806143305361116, - "c5": 6.918110798999907, - "c6": 7.320893816060748, - "c7": 7.305431400581325 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [77, 76, 132] }, @@ -438027,23 +438027,23 @@ "year": 1825, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 11.70581461211129, - "c2": -7.905129217166479, - "c3": -19.559448631188182, - "c4": -13.71899887989667, - "c5": -25.720710643261164, - "c6": 19.741863514215026, - "c7": 17.06845207161919 + "points": { + "c1": -16.800090387936706, + "c2": -9.896130478064649, + "c3": 5.91504712956138, + "c4": -26.922759169836716, + "c5": -17.53742762021112, + "c6": -11.717049655934616, + "c7": 24.815812996082236 }, - "vertexSeeds": { - "c1": 5.522940852845303, - "c2": 6.200673389406606, - "c3": 5.337489397144731, - "c4": 6.032877192905204, - "c5": 5.641639136449181, - "c6": 5.502668165513624, - "c7": 5.419999696601027 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836336, + "c3": 7.951918631530279, + "c4": 6.361534905224221, + "c5": 4.771151178918164, + "c6": 3.1807674526121064, + "c7": 1.5903837263060492 }, "rgb": [86, 146, 138] }, @@ -438054,23 +438054,23 @@ "year": 1825, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 18.879059295441905, - "c2": 13.295001037783585, - "c3": -26.482044082164037, - "c4": 19.026004864666966, - "c5": -4.403994596837148, - "c6": 17.974630633494556, - "c7": 27.56560662664308 + "points": { + "c1": -20.90977495548593, + "c2": 23.801411439748676, + "c3": -1.8644585876591897, + "c4": 22.440995443122958, + "c5": 3.845127711413177, + "c6": 26.218343042031144, + "c7": 11.645773585221043 }, - "vertexSeeds": { - "c1": 11.673115687391448, - "c2": 12.183542610045595, - "c3": 11.935223382383422, - "c4": 12.191635044088883, - "c5": 11.654285551563778, - "c6": 11.94863329778597, - "c7": 11.739644577032596 + "offsets": { + "c1": 20.97087378640777, + "c2": 17.97503467406382, + "c3": 14.979195561719829, + "c4": 11.98335644937588, + "c5": 8.987517337031889, + "c6": 5.99167822468794, + "c7": 2.9958391123439894 }, "rgb": [222, 0, 59] }, @@ -438081,23 +438081,23 @@ "year": 1825, "resistanceReported": false, "duration": 23673600, - "curveSeeds": { - "c1": -0.8988981606256701, - "c2": 15.066084496159682, - "c3": 2.1334700525657055, - "c4": 3.80959788538712, - "c5": -12.158494192265952, - "c6": -19.467391556225554, - "c7": 13.74102594735465 + "points": { + "c1": 30.878945922166395, + "c2": -2.155290149043971, + "c3": 17.030947102063465, + "c4": 14.38262439557758, + "c5": 20.543881948536253, + "c6": 2.1847230848156585, + "c7": -1.787721553544003 }, - "vertexSeeds": { - "c1": 3.7634120435834095, - "c2": 3.9207553435934708, - "c3": 3.89943280776697, - "c4": 3.8560513812186454, - "c5": 3.688716188932495, - "c6": 3.546396888394038, - "c7": 3.715133419518206 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325938, + "c3": 4.785020804438283, + "c4": 3.828016643550623, + "c5": 2.871012482662969, + "c6": 1.9140083217753148, + "c7": 0.9570041608876609 }, "rgb": [238, 201, 159] }, @@ -438108,23 +438108,23 @@ "year": 1825, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -2.887090323046813, - "c2": -4.825176154368858, - "c3": -20.20363655695244, - "c4": -25.60970291094604, - "c5": -17.8063322950949, - "c6": -17.875498197517935, - "c7": -21.604150880507508 + "points": { + "c1": -6.686482114528168, + "c2": -20.70312529623229, + "c3": -23.41103886348558, + "c4": 21.489038834040517, + "c5": 20.738801731353742, + "c6": -16.347214303786906, + "c7": 26.5251624346156 }, - "vertexSeeds": { - "c1": 12.787723040806213, - "c2": 12.76868268739986, - "c3": 12.798835357391182, - "c4": 12.77499957843242, - "c5": 12.777429236969857, - "c6": 12.768275009147025, - "c7": 12.799662304115508 + "offsets": { + "c1": 21.35922330097087, + "c2": 18.30790568654594, + "c3": 15.256588072122224, + "c4": 12.205270457697294, + "c5": 9.153952843273577, + "c6": 6.102635228848647, + "c7": 3.0513176144249305 }, "rgb": [86, 146, 138] }, @@ -438135,23 +438135,23 @@ "year": 1825, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -29.059692441856633, - "c2": -15.45071753288271, - "c3": 30.628896338203873, - "c4": 13.696350831082611, - "c5": -22.08444221917808, - "c6": -2.347770618687477, - "c7": 33.9010315542683 + "points": { + "c1": -12.046638142047875, + "c2": 0.6613580552228484, + "c3": 14.384853180492541, + "c4": -14.336376971019966, + "c5": 35.02436872999654, + "c6": -2.8898296311057337, + "c7": -16.6385657065913 }, - "vertexSeeds": { - "c1": 14.472073379593283, - "c2": 14.580184673823803, - "c3": 14.375670713482261, - "c4": 14.582729320501361, - "c5": 14.523244898592461, - "c6": 14.665127733736607, - "c7": 14.579446072069645 + "offsets": { + "c1": 24.59546925566343, + "c2": 21.081830790568617, + "c3": 17.56819232547394, + "c4": 14.054553860379125, + "c5": 10.540915395284308, + "c6": 7.027276930189632, + "c7": 3.513638465094816 }, "rgb": [222, 0, 59] }, @@ -438162,23 +438162,23 @@ "year": 1826, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": -48.34579085438885, - "c2": 18.728602072092848, - "c3": 46.416903477976824, - "c4": 39.643802507781395, - "c5": 38.59541188400714, - "c6": 22.389119861480886, - "c7": 39.877000362496894 + "points": { + "c1": -10.881993664586155, + "c2": -48.24677313583162, + "c3": 21.311823769330637, + "c4": 49.77992048137937, + "c5": 43.25119873666076, + "c6": 23.512861392631926, + "c7": -25.476098713384893 }, - "vertexSeeds": { - "c1": 1.6706241613964201, - "c2": 1.6508978111269585, - "c3": 1.650579474434915, - "c4": 1.6714127616728787, - "c5": 1.6650507316037437, - "c6": 1.6686206801199108, - "c7": 1.7098143179843615 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.468793342579752, + "c3": 2.0573277854831282, + "c4": 1.6458622283865048, + "c5": 1.2343966712898709, + "c6": 0.8229311141932473, + "c7": 0.41146555709662364 }, "rgb": [222, 0, 59] }, @@ -438189,23 +438189,23 @@ "year": 1825, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -2.2190353737343784, - "c2": 8.414463480728877, - "c3": -26.269578985100132, - "c4": -6.929728895287241, - "c5": 19.03700654094466, - "c6": -5.04205524138915, - "c7": 5.736752010755026 + "points": { + "c1": 1.7505716548778096, + "c2": -32.35844331870559, + "c3": 28.716855310935657, + "c4": 23.696603875611927, + "c5": -3.8486264836759148, + "c6": -34.23151958641527, + "c7": 25.791777611270035 }, - "vertexSeeds": { - "c1": 2.3704663212435233, - "c2": 2.3704663212435233, - "c3": 2.3704663212435233, - "c4": 2.3704663212435233, - "c5": 2.3704663212435233, - "c6": 2.3704663212435233, - "c7": 2.3704663212435233 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -438216,23 +438216,23 @@ "year": 1825, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": -38.4006606644259, - "c2": 26.348775982786705, - "c3": -28.951985777365223, - "c4": 16.4316875930294, - "c5": -41.053512643146135, - "c6": 31.34566880720574, - "c7": 11.594928225699967 + "points": { + "c1": 41.62710818254324, + "c2": -30.898294953929614, + "c3": 42.532195971873236, + "c4": -27.7970555504493, + "c5": -13.978080479012817, + "c6": 40.139187915102866, + "c7": 38.32098781073476 }, - "vertexSeeds": { - "c1": 7.097802057189912, - "c2": 6.912474732731986, - "c3": 7.819704920231735, - "c4": 7.352864979346718, - "c5": 7.940433912039614, - "c6": 7.355929080354052, - "c7": 7.284242777197024 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893204, + "c3": 9.708737864077673, + "c4": 7.766990291262129, + "c5": 5.825242718446597, + "c6": 3.8834951456310645, + "c7": 1.9417475728155322 }, "rgb": [222, 0, 59] }, @@ -438243,23 +438243,23 @@ "year": 1825, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 25.0627622700225, - "c2": -6.9324862583103055, - "c3": -3.9039080525607517, - "c4": 7.891280311549902, - "c5": -3.5273118997217594, - "c6": -17.736002345883907, - "c7": 26.588411424717936 + "points": { + "c1": -3.0316523556859885, + "c2": 6.757043519562703, + "c3": 30.160198285458304, + "c4": -3.0686330771482666, + "c5": 8.638489319820255, + "c6": 6.422083380764224, + "c7": -3.1230895766870006 }, - "vertexSeeds": { - "c1": 4.825515803227168, - "c2": 5.121287062707313, - "c3": 5.079452618457912, - "c4": 4.963845255843155, - "c5": 5.077709587115772, - "c6": 4.824653689227444, - "c7": 4.847398741285896 + "offsets": { + "c1": 8.576051779935275, + "c2": 7.350901525658798, + "c3": 6.1257512713823425, + "c4": 4.900601017105876, + "c5": 3.675450762829399, + "c6": 2.4503005085529326, + "c7": 1.2251502542764663 }, "rgb": [238, 201, 159] }, @@ -438270,23 +438270,23 @@ "year": 1825, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 25.244143567250134, - "c2": -19.966838684392364, - "c3": -7.513167786737249, - "c4": 20.088714776473658, - "c5": -21.089064373489148, - "c6": -18.254622208342855, - "c7": 23.789966830769266 + "points": { + "c1": -11.055467374501248, + "c2": -2.7726687179542537, + "c3": 25.45114612676933, + "c4": -21.216431545077327, + "c5": 3.849183352452261, + "c6": 19.6511259811775, + "c7": -21.904725259288657 }, - "vertexSeeds": { - "c1": 3.3165905062462637, - "c2": 3.1154046458669513, - "c3": 3.4042137160639427, - "c4": 3.44515884369432, - "c5": 3.099350705294544, - "c6": 3.2107362318921644, - "c7": 3.432155672047079 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.076282940360607, + "c3": 4.230235783633843, + "c4": 3.3841886269070716, + "c5": 2.5381414701803, + "c6": 1.6920943134535358, + "c7": 0.8460471567267642 }, "rgb": [77, 76, 132] }, @@ -438297,23 +438297,23 @@ "year": 1825, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -19.450128630197028, - "c2": -8.359553208153436, - "c3": -7.554692759335147, - "c4": -23.166389835885592, - "c5": 2.386771472238376, - "c6": -15.798892058733257, - "c7": -14.382732831916977 + "points": { + "c1": 7.756943491929903, + "c2": 23.49701128678616, + "c3": -30.355791673868467, + "c4": -13.033375963861552, + "c5": -9.653162087156979, + "c6": 12.282527311117597, + "c7": 14.15597474972187 }, - "vertexSeeds": { - "c1": 5.335182383972505, - "c2": 5.2029767686064785, - "c3": 5.237623054828516, - "c4": 5.255494158929132, - "c5": 5.348702438073995, - "c6": 5.294836556425265, - "c7": 5.379902238087676 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262153, + "c3": 6.472491909385108, + "c4": 5.177993527508103, + "c5": 3.883495145631057, + "c6": 2.5889967637540514, + "c7": 1.2944983818770452 }, "rgb": [222, 0, 59] }, @@ -438324,23 +438324,23 @@ "year": 1825, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 11.958052218661088, - "c2": 12.273249052760292, - "c3": 9.900779856376523, - "c4": 21.0385306965987, - "c5": 34.814219502614485, - "c6": -23.008487147534595, - "c7": 17.367602122219594 + "points": { + "c1": 13.291187703474385, + "c2": 40.88591358087913, + "c3": 4.354911369682135, + "c4": 16.034138817253343, + "c5": -0.4788364609367477, + "c6": -20.263281056281034, + "c7": -35.63668418940201 }, - "vertexSeeds": { - "c1": 0.2674288282759074, - "c2": 0.254350456139484, - "c3": 0.26266586900099415, - "c4": 0.26410785213116716, - "c5": 0.27121394772267227, - "c6": 0.26047896694895895, - "c7": 0.25945442046676664 + "offsets": { + "c1": 0.48543689320388345, + "c2": 0.4160887656033289, + "c3": 0.3467406380027735, + "c4": 0.27739251040221896, + "c5": 0.20804438280166446, + "c6": 0.13869625520110906, + "c7": 0.06934812760055453 }, "rgb": [238, 201, 159] }, @@ -438351,23 +438351,23 @@ "year": 1825, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": -8.499353769082155, - "c2": -10.075614600051837, - "c3": -10.651211209758328, - "c4": -0.5821087607914457, - "c5": 13.114839337444579, - "c6": -19.236754533523012, - "c7": -2.760274368269208 + "points": { + "c1": -20.718934923155405, + "c2": -4.298460317843464, + "c3": -18.586415397628404, + "c4": -9.427253447960885, + "c5": 19.561791360976734, + "c6": -15.354365797006796, + "c7": 10.681136203455388 }, - "vertexSeeds": { - "c1": 4.755103024544624, - "c2": 4.764730384716349, - "c3": 4.742585063025869, - "c4": 4.745150951158378, - "c5": 4.825739676935199, - "c6": 4.788729742197986, - "c7": 4.766257454027458 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055465, + "c3": 5.779010633379585, + "c4": 4.623208506703659, + "c5": 3.4674063800277324, + "c6": 2.311604253351806, + "c7": 1.1558021266759262 }, "rgb": [222, 0, 59] }, @@ -438378,23 +438378,23 @@ "year": 1825, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -10.539203004889064, - "c2": 32.8723445131602, - "c3": 20.889306572563058, - "c4": -2.6173325448376232, - "c5": -32.6174289141968, - "c6": -16.733739725703163, - "c7": 4.335196671114197 + "points": { + "c1": -10.155657551437272, + "c2": -23.600621024325037, + "c3": -10.76814485776853, + "c4": 15.186534409351694, + "c5": 22.889649055724227, + "c6": 32.873272480236395, + "c7": 16.392024759693918 }, - "vertexSeeds": { - "c1": 5.820350945235472, - "c2": 6.39598221288105, - "c3": 6.441041120182914, - "c4": 6.255510799061857, - "c5": 6.088037398607015, - "c6": 6.355178805191621, - "c7": 5.757409746240763 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635234, + "c3": 7.836338418862685, + "c4": 6.269070735090151, + "c5": 4.701803051317617, + "c6": 3.1345353675450682, + "c7": 1.5672676837725341 }, "rgb": [238, 201, 159] }, @@ -438405,23 +438405,23 @@ "year": 1825, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -15.837995934331893, - "c2": -24.533155827348168, - "c3": -13.358251574116974, - "c4": -16.836900993559357, - "c5": -31.893017246894544, - "c6": 1.6120196915212333, - "c7": 3.3397709016855117 + "points": { + "c1": -2.055631673677553, + "c2": -25.42714955150385, + "c3": 19.17456544197168, + "c4": -36.0366570738689, + "c5": -20.087084955292728, + "c6": 1.4105127115597895, + "c7": 25.410197665443775 }, - "vertexSeeds": { - "c1": 6.575695216289833, - "c2": 6.584836995685296, - "c3": 6.552210135247721, - "c4": 6.554186790907249, - "c5": 6.570620184550551, - "c6": 6.586487010316987, - "c7": 6.580460904201582 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675495, + "c3": 7.859454461396298, + "c4": 6.2875635691171015, + "c5": 4.715672676837591, + "c6": 3.1437817845583944, + "c7": 1.5718908922791972 }, "rgb": [86, 146, 138] }, @@ -438432,23 +438432,23 @@ "year": 1825, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 5.39368989675711, - "c2": -33.82579743347699, - "c3": -34.62548256978283, - "c4": 17.25987225644043, - "c5": 34.48707231917196, - "c6": 22.2736943877228, - "c7": -22.571486983430948 + "points": { + "c1": -4.148330468780728, + "c2": 4.183109608135425, + "c3": 11.660247510832427, + "c4": 27.058753139109903, + "c5": -22.262189507000254, + "c6": -2.6260442136526336, + "c7": -22.964559418343203 }, - "vertexSeeds": { - "c1": 5.8982102805447765, - "c2": 5.874787945243323, - "c3": 6.2359841534303495, - "c4": 6.497952375502327, - "c5": 5.828310733801254, - "c6": 6.098579692433754, - "c7": 5.826915126095437 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514571, + "c3": 7.766990291262134, + "c4": 6.213592233009713, + "c5": 4.660194174757277, + "c6": 3.1067961165048565, + "c7": 1.5533980582524198 }, "rgb": [222, 0, 59] }, @@ -438459,23 +438459,23 @@ "year": 1826, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 11.620377959105703, - "c2": -12.065820822729219, - "c3": 9.24819485299357, - "c4": 0.5149455417185926, - "c5": 20.91723159787471, - "c6": 5.866102334532783, - "c7": 12.323176816030916 + "points": { + "c1": 29.69556162006561, + "c2": -4.006001824934728, + "c3": -13.219217320595156, + "c4": 6.766978635826895, + "c5": -11.092620844505706, + "c6": -10.577727690660723, + "c7": 21.583358507926896 }, - "vertexSeeds": { - "c1": 3.998885604241487, - "c2": 4.831797824375095, - "c3": 4.799825655885833, - "c4": 4.516698860387551, - "c5": 4.162066176928865, - "c6": 4.26143119029887, - "c7": 4.164934999026676 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055478, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.467406380027737, + "c6": 2.3116042533518244, + "c7": 1.1558021266759122 }, "rgb": [238, 201, 159] }, @@ -438486,23 +438486,23 @@ "year": 1825, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 4.180765398713621, - "c2": 15.434975752421348, - "c3": 25.2634935851403, - "c4": -21.375429642600267, - "c5": -17.08875965786546, - "c6": 23.30455697848613, - "c7": 13.231678849034534 + "points": { + "c1": 20.943237747337434, + "c2": -32.078061486038415, + "c3": 21.61315219250222, + "c4": -2.8355432490706285, + "c5": -17.982926185070887, + "c6": 28.052683745724877, + "c7": 9.76607007007707 }, - "vertexSeeds": { - "c1": 1.6890188578133847, - "c2": 1.544287251646634, - "c3": 1.635557326767469, - "c4": 1.5731936275303606, - "c5": 1.6584045772040725, - "c6": 1.5402514574147421, - "c7": 1.5673059681654908 + "offsets": { + "c1": 2.84789644012945, + "c2": 2.44105409153953, + "c3": 2.034211742949605, + "c4": 1.6273693943596852, + "c5": 1.220527045769765, + "c6": 0.813684697179845, + "c7": 0.40684234858992 }, "rgb": [86, 146, 138] }, @@ -438513,23 +438513,23 @@ "year": 1825, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 16.15804458467334, - "c2": 8.871853944017538, - "c3": -11.371058896665637, - "c4": -23.91889856405951, - "c5": -19.55249652288829, - "c6": 23.73988049929003, - "c7": -24.384345212270414 + "points": { + "c1": -8.466782533878654, + "c2": 35.247211197687335, + "c3": 34.75729230656806, + "c4": 20.346884798462057, + "c5": 24.070851579575262, + "c6": 2.124225755488567, + "c7": -21.639964719981776 }, - "vertexSeeds": { - "c1": 3.737015364331853, - "c2": 3.4154643794877333, - "c3": 3.820123979616331, - "c4": 3.2703739175083952, - "c5": 3.977439685331185, - "c6": 3.3260003816777406, - "c7": 3.6965181828385894 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.797503467406381, + "c3": 4.83125288950532, + "c4": 3.8650023116042527, + "c5": 2.8987517337031905, + "c6": 1.932501155802129, + "c7": 0.9662505779010621 }, "rgb": [222, 0, 59] }, @@ -438540,23 +438540,23 @@ "year": 1825, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -13.767322297839812, - "c2": -34.386414158687494, - "c3": 2.2665377785108944, - "c4": 21.157644734106476, - "c5": -17.41742936165542, - "c6": 0.3453061593912352, - "c7": -24.788836972400368 + "points": { + "c1": -7.247805670207892, + "c2": -12.163565875527876, + "c3": -2.0943473911496966, + "c4": 31.399685060980374, + "c5": -12.81632816655615, + "c6": -17.328968538117678, + "c7": 9.584363455054351 }, - "vertexSeeds": { - "c1": 6.6975636072155815, - "c2": 6.936179458808788, - "c3": 6.821948698346991, - "c4": 7.599166739201863, - "c5": 7.516857337066391, - "c6": 6.808718876910539, - "c7": 7.496069420708094 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088764, + "c3": 9.246417013407305, + "c4": 7.3971336107258425, + "c5": 5.547850208044382, + "c6": 3.6985668053629213, + "c7": 1.8492834026814606 }, "rgb": [58, 15, 49] }, @@ -438567,23 +438567,23 @@ "year": 1825, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -10.659368393925568, - "c2": 0.9537013343083096, - "c3": 3.857240354678524, - "c4": -20.501930602992516, - "c5": 18.81774537894199, - "c6": 14.297938503500685, - "c7": -23.577244179045312 + "points": { + "c1": -26.8046900635468, + "c2": -8.97793575257111, + "c3": 4.357028177721414, + "c4": -4.950047607781343, + "c5": 1.7385416653374577, + "c6": -7.788749161896998, + "c7": 11.279268907567054 }, - "vertexSeeds": { - "c1": 2.558894851143651, - "c2": 2.5675625269128037, - "c3": 2.571302696000257, - "c4": 2.335796615761421, - "c5": 2.4571520324208396, - "c6": 2.3833963351569736, - "c7": 2.4943649303841777 + "offsets": { + "c1": 4.433656957928803, + "c2": 3.8002773925104014, + "c3": 3.1668978270920003, + "c4": 2.5335182616735987, + "c5": 1.9001386962552007, + "c6": 1.2667591308368027, + "c7": 0.6333795654184013 }, "rgb": [222, 0, 59] }, @@ -438594,23 +438594,23 @@ "year": 1826, "resistanceReported": false, "duration": 30240000, - "curveSeeds": { - "c1": -1.0379165381408555, - "c2": 34.19586359101154, - "c3": -23.70940541470228, - "c4": -41.508790319529254, - "c5": -42.64270277766259, - "c6": 8.246642564263972, - "c7": 18.268322650084265 + "points": { + "c1": 34.64901294641313, + "c2": 16.70140532961829, + "c3": 33.435333962428935, + "c4": -20.656314544879354, + "c5": -1.2580842720295138, + "c6": -37.13425054480118, + "c7": 10.715062755556602 }, - "vertexSeeds": { - "c1": 8.509000166882451, - "c2": 8.443819329554938, - "c3": 8.34777550083551, - "c4": 8.338399682563333, - "c5": 8.669402107734934, - "c6": 8.394408781687654, - "c7": 8.148195884376037 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461851, + "c3": 10.610263522884887, + "c4": 8.488210818307902, + "c5": 6.366158113730935, + "c6": 4.244105409153951, + "c7": 2.1220527045769653 }, "rgb": [77, 76, 132] }, @@ -438621,23 +438621,23 @@ "year": 1825, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -14.330550530391191, - "c2": -14.560036900571417, - "c3": 11.228233279205671, - "c4": -16.33378339931795, - "c5": 25.3429797300173, - "c6": 13.495203523225154, - "c7": 12.667679957482388 + "points": { + "c1": 17.196685865688675, + "c2": -6.700722887443828, + "c3": -18.432606535130546, + "c4": 15.79003143851239, + "c5": -27.467281944961293, + "c6": -7.30247539112629, + "c7": -12.267274800115636 }, - "vertexSeeds": { - "c1": 6.329344615730215, - "c2": 6.062404280027332, - "c3": 6.273015353821417, - "c4": 5.9800042676376535, - "c5": 6.121316734301017, - "c6": 6.1440894546710165, - "c7": 6.457982439912317 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795649, + "c4": 6.232085067036532, + "c5": 4.674063800277399, + "c6": 3.116042533518266, + "c7": 1.558021266759133 }, "rgb": [222, 0, 59] }, @@ -438648,23 +438648,23 @@ "year": 1825, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 31.429551920479426, - "c2": 30.21140960089746, - "c3": 26.07499125935329, - "c4": 21.916029261238585, - "c5": 12.83688872724872, - "c6": 25.959505060032953, - "c7": -21.13213433721451 + "points": { + "c1": -5.851251123579807, + "c2": 32.98630318503703, + "c3": 7.137684045804946, + "c4": 1.7121656851023772, + "c5": 6.234714521141363, + "c6": 20.95169616741201, + "c7": 12.659285615978249 }, - "vertexSeeds": { - "c1": 8.067661951185107, - "c2": 8.128672160855897, - "c3": 8.243082250984259, - "c4": 8.04799951598553, - "c5": 8.255010037285382, - "c6": 8.275899161434799, - "c7": 8.264843146030698 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174747, + "c3": 9.870550161812279, + "c4": 7.896440129449876, + "c5": 5.922330097087406, + "c6": 3.948220064724938, + "c7": 1.974110032362469 }, "rgb": [222, 0, 59] }, @@ -438675,23 +438675,23 @@ "year": 1825, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -21.855756105746163, - "c2": 2.9752898187423895, - "c3": 11.079807892224842, - "c4": -11.250294757549007, - "c5": 24.849099769734217, - "c6": 32.62744271451618, - "c7": 29.784774143657145 + "points": { + "c1": 27.898222827097108, + "c2": 1.1383882816586919, + "c3": 26.3065649130545, + "c4": 23.95713123408258, + "c5": -6.358561888100823, + "c6": 20.35063730825172, + "c7": -24.960409970188756 }, - "vertexSeeds": { - "c1": 2.6441298978494068, - "c2": 2.551077798971951, - "c3": 2.5616466063581225, - "c4": 2.513660148189562, - "c5": 2.618287513168618, - "c6": 2.614056954869546, - "c7": 2.671245950263257 + "offsets": { + "c1": 4.498381877022654, + "c2": 3.855755894590843, + "c3": 3.213129912159043, + "c4": 2.570503929727232, + "c5": 1.9278779472954215, + "c6": 1.2852519648636107, + "c7": 0.6426259824318108 }, "rgb": [77, 76, 132] }, @@ -438702,23 +438702,23 @@ "year": 1825, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": -9.101157454255096, - "c2": 0.724723472770954, - "c3": 7.31086524253115, - "c4": 11.332946061858834, - "c5": -3.3894668494376425, - "c6": 15.256702675267086, - "c7": -12.77137753143552 + "points": { + "c1": 10.937458049223793, + "c2": -21.27219059874216, + "c3": 6.745123821459789, + "c4": 9.194474114230761, + "c5": -13.659680059916546, + "c6": -9.913438498636662, + "c7": 19.813516642850054 }, - "vertexSeeds": { - "c1": 3.0625873432045703, - "c2": 3.218495451638277, - "c3": 3.120410022123074, - "c4": 3.167245721607131, - "c5": 3.0880940065067986, - "c6": 3.188546584273192, - "c7": 3.2006839582416804 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717065, + "c3": 3.8603791030975425, + "c4": 3.088303282478037, + "c5": 2.3162274618585323, + "c6": 1.5441516412390102, + "c7": 0.7720758206195051 }, "rgb": [77, 76, 132] }, @@ -438729,23 +438729,23 @@ "year": 1825, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 11.538482005698121, - "c2": -20.264252722528063, - "c3": 31.45068828166785, - "c4": 19.318988657756705, - "c5": 29.649573783305193, - "c6": 2.5884488110914816, - "c7": 30.295357543080428 + "points": { + "c1": -20.61525287473623, + "c2": 7.230502314066776, + "c3": -19.17784167346477, + "c4": 29.354033135788164, + "c5": -21.554782149899786, + "c6": -10.998362266000296, + "c7": 31.40769982628364 }, - "vertexSeeds": { - "c1": 8.969558216414425, - "c2": 9.175001179483976, - "c3": 9.118719143681933, - "c4": 9.320181557699758, - "c5": 9.139109126648327, - "c6": 9.174639202633367, - "c7": 9.492782111199494 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789188, + "c3": 11.373092926490976, + "c4": 9.098474341192786, + "c5": 6.823855755894594, + "c6": 4.549237170596383, + "c7": 2.2746185852981915 }, "rgb": [238, 201, 159] }, @@ -438756,23 +438756,23 @@ "year": 1825, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -19.22149183558345, - "c2": -4.746555742827535, - "c3": -31.40974647683122, - "c4": -17.40151483794593, - "c5": -21.192181813685856, - "c6": 27.683449347876206, - "c7": -19.936113128164592 + "points": { + "c1": 34.99887274523499, + "c2": 13.063225047779937, + "c3": -20.690251203159725, + "c4": -22.734585204617986, + "c5": -32.074545631758156, + "c6": 2.7686097874880673, + "c7": 6.268595843783395 }, - "vertexSeeds": { - "c1": 5.041724827082995, - "c2": 5.0278236246676915, - "c3": 5.016764183640221, - "c4": 4.885722633878168, - "c5": 4.878839133208756, - "c6": 4.983502032714151, - "c7": 4.979860638806563 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.2676837725381365, + "c3": 6.0564031437817745, + "c4": 4.845122515025411, + "c5": 3.6338418862690682, + "c6": 2.4225612575127053, + "c7": 1.2112806287563427 }, "rgb": [238, 201, 159] }, @@ -438783,23 +438783,23 @@ "year": 1826, "resistanceReported": false, "duration": 36374400, - "curveSeeds": { - "c1": 17.405383244437992, - "c2": -0.021326716606857588, - "c3": -45.613189536162245, - "c4": -19.63232693694988, - "c5": 19.2491669995542, - "c6": 1.4473554187174216, - "c7": 31.194454217636938 + "points": { + "c1": 43.49566271540021, + "c2": -5.139457377143273, + "c3": -42.2475541372067, + "c4": 38.27851647665964, + "c5": -19.17311498651938, + "c6": -38.966106546000155, + "c7": -48.541777269529284 }, - "vertexSeeds": { - "c1": 4.503048421907642, - "c2": 4.88717176019995, - "c3": 4.3922812708960075, - "c4": 3.867893753568205, - "c5": 3.993037366619652, - "c6": 4.435974523566458, - "c7": 4.687170672108647 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.07350901525659, + "c3": 5.894590846047156, + "c4": 4.715672676837726, + "c5": 3.536754507628295, + "c6": 2.3578363384188648, + "c7": 1.1789181692094302 }, "rgb": [222, 0, 59] }, @@ -438810,23 +438810,23 @@ "year": 1826, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 3.71029757192332, - "c2": -18.385646068773454, - "c3": -29.9514430944973, - "c4": 0.4545103552630536, - "c5": -4.404920148825365, - "c6": -13.784683116868859, - "c7": -11.824935456252476 + "points": { + "c1": -36.703771652517624, + "c2": -37.75226904078909, + "c3": -31.7208679322204, + "c4": 4.915111771294669, + "c5": 34.57644662514937, + "c6": 9.981331277903152, + "c7": -9.702471339147461 }, - "vertexSeeds": { - "c1": 11.892590000396034, - "c2": 11.86444835462464, - "c3": 11.375177976655804, - "c4": 11.615172111398609, - "c5": 11.3791697892026, - "c6": 12.016266995818636, - "c7": 11.301227558262966 + "offsets": { + "c1": 20.22653721682848, + "c2": 17.337031900138683, + "c3": 14.447526583448933, + "c4": 11.558021266759138, + "c5": 8.668515950069342, + "c6": 5.779010633379594, + "c7": 2.889505316689797 }, "rgb": [58, 15, 49] }, @@ -438837,23 +438837,23 @@ "year": 1825, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 8.92037975072498, - "c2": -19.87547069523253, - "c3": 21.79695554273021, - "c4": -1.9734504772960406, - "c5": -14.653243106937232, - "c6": -21.784793523773978, - "c7": 16.886235817843698 + "points": { + "c1": 12.69327669851861, + "c2": 7.042480354366102, + "c3": -13.282007571275866, + "c4": -18.353168080664652, + "c5": 20.9763627363222, + "c6": 19.72832246392207, + "c7": -3.17698839813243 }, - "vertexSeeds": { - "c1": 6.213325580872301, - "c2": 6.604537374902542, - "c3": 6.459046736600349, - "c4": 6.505735810902673, - "c5": 6.628923649690233, - "c6": 6.07075297908035, - "c7": 6.737532265229693 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037456, + "c3": 8.067498844197871, + "c4": 6.453999075358304, + "c5": 4.840499306518719, + "c6": 3.226999537679152, + "c7": 1.6134997688395845 }, "rgb": [58, 15, 49] }, @@ -438864,23 +438864,23 @@ "year": 1826, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -6.2274999228965875, - "c2": -8.721433943070732, - "c3": 23.44704306350411, - "c4": 31.293525883712363, - "c5": -24.062381360697508, - "c6": 15.198896429285547, - "c7": -25.6016079126753 + "points": { + "c1": 6.529085028886314, + "c2": -17.630680102817795, + "c3": -16.41938678439054, + "c4": -31.497311745336066, + "c5": -4.436154564248824, + "c6": -12.761323438331281, + "c7": 26.255509083493777 }, - "vertexSeeds": { - "c1": 8.789641692439439, - "c2": 7.205583657645825, - "c3": 6.609063391876051, - "c4": 4.935271170669415, - "c5": 6.376877744444721, - "c6": 7.904415805228283, - "c7": 9.203970370139047 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266296, + "c3": 11.072584373555244, + "c4": 8.858067498844196, + "c5": 6.6435506241331455, + "c6": 4.429033749422097, + "c7": 2.21451687471105 }, "rgb": [222, 0, 59] }, @@ -438891,23 +438891,23 @@ "year": 1825, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -29.811926218069363, - "c2": 18.212780580582578, - "c3": -15.283019096509424, - "c4": 29.59533424290478, - "c5": -11.385503155522454, - "c6": -15.251720096782726, - "c7": -12.81054363294206 + "points": { + "c1": -3.535970175413702, + "c2": -23.16198791296378, + "c3": -10.823578004314967, + "c4": -8.67020458982762, + "c5": -12.849228166744222, + "c6": -10.763460177943294, + "c7": 20.237317976687578 }, - "vertexSeeds": { - "c1": 1.6321243523316062, - "c2": 1.6321243523316062, - "c3": 1.6321243523316062, - "c4": 1.6321243523316062, - "c5": 1.6321243523316062, - "c6": 1.6321243523316062, - "c7": 1.6321243523316062 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -438918,23 +438918,23 @@ "year": 1826, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -4.616339289577613, - "c2": 13.630688913997282, - "c3": -22.39411086183535, - "c4": -12.010091923142134, - "c5": -2.772457150133711, - "c6": 19.216646479895346, - "c7": 9.473418465872847 + "points": { + "c1": 18.181942721789618, + "c2": -13.163737327537127, + "c3": -13.717804821107425, + "c4": 2.495690477614275, + "c5": -15.06399008898089, + "c6": 13.465047999945106, + "c7": -15.757789639640297 }, - "vertexSeeds": { - "c1": 8.648138138052447, - "c2": 8.812833486788337, - "c3": 8.63756052554631, - "c4": 8.658692926450257, - "c5": 8.828382530411611, - "c6": 8.60707453985975, - "c7": 8.856020214789096 + "offsets": { + "c1": 14.789644012944983, + "c2": 12.67683772538139, + "c3": 10.564031437817853, + "c4": 8.451225150254261, + "c5": 6.338418862690723, + "c6": 4.225612575127131, + "c7": 2.112806287563537 }, "rgb": [86, 146, 138] }, @@ -438945,23 +438945,23 @@ "year": 1825, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -29.582993696276322, - "c2": 20.611425846315722, - "c3": 30.97266149067254, - "c4": -14.841666634230823, - "c5": -18.247086498648628, - "c6": 19.31220707219899, - "c7": -20.008996527161884 + "points": { + "c1": 17.105829554498946, + "c2": -6.638515572952095, + "c3": 7.177395456654807, + "c4": 21.71388822608275, + "c5": 2.4315398419158, + "c6": 18.846625415043995, + "c7": -29.050702866738405 }, - "vertexSeeds": { - "c1": 11.055254152337529, - "c2": 11.154380210965478, - "c3": 11.042651132863911, - "c4": 10.46612984901967, - "c5": 10.86081851116846, - "c6": 11.055453848223616, - "c7": 10.452464462190084 + "offsets": { + "c1": 18.899676375404532, + "c2": 16.199722607489594, + "c3": 13.499768839574655, + "c4": 10.799815071659717, + "c5": 8.09986130374478, + "c6": 5.399907535829876, + "c7": 2.699953767914938 }, "rgb": [222, 0, 59] }, @@ -438972,23 +438972,23 @@ "year": 1825, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -23.87848538018322, - "c2": 5.616214066425499, - "c3": -20.536182177551783, - "c4": -5.0370983073373985, - "c5": -29.64618042783265, - "c6": -16.146761752685745, - "c7": 10.49234369861427 + "points": { + "c1": 21.44002322901649, + "c2": -0.08914671741265323, + "c3": 31.136505000516294, + "c4": -20.09399708983534, + "c5": 2.7172764328741366, + "c6": 2.834079863550919, + "c7": -29.20988114457382 }, - "vertexSeeds": { - "c1": 4.777546447608114, - "c2": 4.88827180002553, - "c3": 4.840177564171898, - "c4": 4.911037071090009, - "c5": 4.9128642207734154, - "c6": 4.831367675688332, - "c7": 4.860896328947248 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256583, + "c3": 5.894590846047146, + "c4": 4.715672676837729, + "c5": 3.5367545076282916, + "c6": 2.3578363384188545, + "c7": 1.1789181692094175 }, "rgb": [58, 15, 49] }, @@ -438999,23 +438999,23 @@ "year": 1825, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -11.610785160668144, - "c2": 17.81514817059464, - "c3": 17.285814984490216, - "c4": -0.8663069523464877, - "c5": -3.5518683065227528, - "c6": 7.746037146494366, - "c7": 17.04459517315425 + "points": { + "c1": 23.13851160966798, + "c2": 3.295922045614894, + "c3": 30.275650536416606, + "c4": 31.709414817098498, + "c5": 25.232132901173365, + "c6": -2.234255278912528, + "c7": 17.204001216931793 }, - "vertexSeeds": { - "c1": 4.808360919840534, - "c2": 4.9533909405105225, - "c3": 5.175045756291958, - "c4": 4.970277756895105, - "c5": 5.104496144729772, - "c6": 5.381557580191989, - "c7": 5.38433508686442 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221921, + "c3": 6.449375866851593, + "c4": 5.15950069348128, + "c5": 3.869625520110953, + "c6": 2.579750346740633, + "c7": 1.2898751733703129 }, "rgb": [222, 0, 59] }, @@ -439026,23 +439026,23 @@ "year": 1825, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -15.176247152869726, - "c2": -11.886813087546196, - "c3": -16.515474454745465, - "c4": -17.369229492124553, - "c5": 21.896697158910836, - "c6": 24.163335067690948, - "c7": -5.813310012108463 + "points": { + "c1": -16.16257903839513, + "c2": 19.450012043766453, + "c3": -27.150827294268783, + "c4": 21.082820216440364, + "c5": 21.73930793685189, + "c6": -5.37468390255826, + "c7": 0.3963890835719681 }, - "vertexSeeds": { - "c1": 5.353713676377735, - "c2": 5.397940556264104, - "c3": 5.62815067590208, - "c4": 5.551656246998793, - "c5": 5.348737373433675, - "c6": 5.487429595992344, - "c7": 5.383214443713267 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744804, + "c3": 6.749884419787342, + "c4": 5.399907535829881, + "c5": 4.049930651872385, + "c6": 2.6999537679149235, + "c7": 1.3499768839574617 }, "rgb": [77, 76, 132] }, @@ -439053,23 +439053,23 @@ "year": 1826, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 7.671491541657581, - "c2": 6.693600204467899, - "c3": -17.209734741402837, - "c4": -10.540254343486488, - "c5": 1.474277175301978, - "c6": 22.809057727565204, - "c7": -28.977186724829753 + "points": { + "c1": -0.7890550272013854, + "c2": 11.743242320605475, + "c3": 9.872593321618233, + "c4": -1.8583913296618135, + "c5": 10.167215758865055, + "c6": -16.290026798696914, + "c7": 20.27146225110178 }, - "vertexSeeds": { - "c1": 4.905445690839325, - "c2": 4.310448302283904, - "c3": 3.7239027201750377, - "c4": 4.879992237556625, - "c5": 4.068131624327325, - "c6": 4.146981069461202, - "c7": 4.867626604843655 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457699, + "c3": 6.0101710587147466, + "c4": 4.808136846971799, + "c5": 3.606102635228846, + "c6": 2.404068423485897, + "c7": 1.2020342117429486 }, "rgb": [238, 201, 159] }, @@ -439080,23 +439080,23 @@ "year": 1825, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 24.14319670697792, - "c2": -1.4947006250603678, - "c3": 22.75352040059531, - "c4": -22.191597036756466, - "c5": -2.188346559314027, - "c6": -25.980708940363, - "c7": 20.784536078430346 + "points": { + "c1": -20.872230358194898, + "c2": 5.738326473282125, + "c3": 20.960491994486848, + "c4": -20.244188722859107, + "c5": -19.885173989401814, + "c6": 24.054675413450735, + "c7": -2.4045376265429645 }, - "vertexSeeds": { - "c1": 4.303190792265583, - "c2": 4.249739100073787, - "c3": 4.491692877013531, - "c4": 4.654620604280595, - "c5": 4.598103583365809, - "c6": 4.253430575171301, - "c7": 4.780728247021033 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.9348127600554745, + "c3": 5.779010633379566, + "c4": 4.62320850670365, + "c5": 3.467406380027741, + "c6": 2.311604253351825, + "c7": 1.155802126675916 }, "rgb": [58, 15, 49] }, @@ -439107,23 +439107,23 @@ "year": 1825, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 4.332947504726082, - "c2": 25.176770420375515, - "c3": -21.121972285911937, - "c4": -26.060593915355042, - "c5": 10.058650865830426, - "c6": 14.249124642050095, - "c7": 12.761257258452641 + "points": { + "c1": -9.747285203574492, + "c2": -26.410708377730945, + "c3": 3.817815779281485, + "c4": -0.44823120519303217, + "c5": 27.340555195431538, + "c6": -9.922185733666598, + "c7": -22.61879667100203 }, - "vertexSeeds": { - "c1": 13.089869823887081, - "c2": 12.932780809996387, - "c3": 13.20116971142194, - "c4": 13.327686121943387, - "c5": 13.317560035329834, - "c6": 13.505321593608317, - "c7": 13.19501281784738 + "offsets": { + "c1": 22.588996763754047, + "c2": 19.36199722607488, + "c3": 16.13499768839577, + "c4": 12.907998150716605, + "c5": 9.68099861303744, + "c6": 6.453999075358276, + "c7": 3.226999537679165 }, "rgb": [222, 0, 59] }, @@ -439134,23 +439134,23 @@ "year": 1825, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 6.435522753071634, - "c2": -1.8649894269292524, - "c3": -21.424279944829614, - "c4": 10.998508347650183, - "c5": 20.39165194661855, - "c6": -7.338288424437991, - "c7": 8.816386137229191 + "points": { + "c1": -1.0536654765763132, + "c2": -21.36520002634669, + "c3": -26.884164894383353, + "c4": -9.908284195181977, + "c5": -25.078714288243244, + "c6": 29.15922130791235, + "c7": 28.01287616128889 }, - "vertexSeeds": { - "c1": 4.653016662124856, - "c2": 4.6488567008067685, - "c3": 4.641514290304078, - "c4": 4.460342530874211, - "c5": 4.518319923415794, - "c6": 4.561367718227224, - "c7": 4.566712697056624 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693473, + "c3": 5.570966250577904, + "c4": 4.456773000462316, + "c5": 3.3425797503467467, + "c6": 2.228386500231158, + "c7": 1.1141932501155687 }, "rgb": [86, 146, 138] }, @@ -439161,23 +439161,23 @@ "year": 1825, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -18.07152571541458, - "c2": -20.17198446037806, - "c3": -20.423468629921864, - "c4": -10.374211590552935, - "c5": 9.808615301751939, - "c6": -24.65891172761586, - "c7": -15.883822886913078 + "points": { + "c1": -1.2794591413226932, + "c2": -6.280669455913717, + "c3": 12.128757520632323, + "c4": -7.448515007106849, + "c5": -0.013796284943285997, + "c6": -0.9080565108251335, + "c7": 12.51583467583006 }, - "vertexSeeds": { - "c1": 0.6800518134715026, - "c2": 0.6800518134715026, - "c3": 0.6800518134715026, - "c4": 0.6800518134715026, - "c5": 0.6800518134715026, - "c6": 0.6800518134715026, - "c7": 0.6800518134715026 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -439188,23 +439188,23 @@ "year": 1826, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -11.75345272245881, - "c2": 16.020422991488005, - "c3": -15.573727156651795, - "c4": -2.9004515536107363, - "c5": 0.6261741009922659, - "c6": -24.132991784059328, - "c7": 12.818595750034135 + "points": { + "c1": -23.58264274491875, + "c2": 14.008603469847458, + "c3": -32.924837710337826, + "c4": 28.13893525761803, + "c5": 12.901341245546561, + "c6": -12.891146462944981, + "c7": 3.5715842427132216 }, - "vertexSeeds": { - "c1": 7.762198722596542, - "c2": 8.15244135665155, - "c3": 7.4091069017925655, - "c4": 8.081282836627668, - "c5": 7.50400470411452, - "c6": 8.104963779003462, - "c7": 7.385065156392402 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973648, + "c3": 9.75496994914471, + "c4": 7.803975959315771, + "c5": 5.852981969486815, + "c6": 3.9019879796578767, + "c7": 1.9509939898289383 }, "rgb": [86, 146, 138] }, @@ -439215,23 +439215,23 @@ "year": 1826, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -15.118309338618086, - "c2": -20.606025310587782, - "c3": -16.54291912889567, - "c4": -15.41799448285333, - "c5": -23.49072917914779, - "c6": -5.475908291311921, - "c7": 16.930238918620848 + "points": { + "c1": -28.948212714541057, + "c2": -4.679955106563767, + "c3": 14.517156190843938, + "c4": 29.331882314198953, + "c5": -20.503548497099295, + "c6": 29.665213058855326, + "c7": -14.98302941280739 }, - "vertexSeeds": { - "c1": 3.6617544523873824, - "c2": 3.984167609956793, - "c3": 3.4200641217778918, - "c4": 5.305635050495422, - "c5": 4.1405796375316255, - "c6": 5.243142110805917, - "c7": 5.123235499872284 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302358, + "c3": 6.495607951918633, + "c4": 5.196486361534906, + "c5": 3.8973647711511816, + "c6": 2.5982431807674544, + "c7": 1.2991215903837272 }, "rgb": [222, 0, 59] }, @@ -439242,23 +439242,23 @@ "year": 1826, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 8.7847105615418, - "c2": 24.582123029783112, - "c3": 2.066942243145526, - "c4": -25.812961318597573, - "c5": -9.35483388376554, - "c6": -6.378070638619054, - "c7": 11.625490640558809 + "points": { + "c1": -20.662021137685265, + "c2": 9.584864922958104, + "c3": 8.751874775229254, + "c4": -29.398408220911918, + "c5": -21.674599655812266, + "c6": 15.590917016937766, + "c7": -19.992734847162374 }, - "vertexSeeds": { - "c1": 9.036132446512573, - "c2": 8.784779613077335, - "c3": 8.684339570160132, - "c4": 9.09088415508221, - "c5": 9.494515675253622, - "c6": 8.763603198915222, - "c7": 8.889108741945856 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -439269,23 +439269,23 @@ "year": 1825, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 27.04649805284068, - "c2": 12.59703939753128, - "c3": -25.597033968537882, - "c4": -27.407543489947507, - "c5": 18.304417812564235, - "c6": 6.615332445628216, - "c7": -25.800025696231764 + "points": { + "c1": 27.15103541837097, + "c2": 2.803489953446114, + "c3": -25.32767539560541, + "c4": -23.576644320057596, + "c5": 19.83613712783836, + "c6": 19.67770088483667, + "c7": -20.119336185689907 }, - "vertexSeeds": { - "c1": 4.420797949617915, - "c2": 4.42638036066933, - "c3": 4.414831617149087, - "c4": 4.456021022972958, - "c5": 4.421610284858135, - "c6": 4.465050620774479, - "c7": 4.422380280563683 + "offsets": { + "c1": 7.475728155339806, + "c2": 6.407766990291293, + "c3": 5.339805825242709, + "c4": 4.271844660194195, + "c5": 3.203883495145611, + "c6": 2.1359223300970975, + "c7": 1.0679611650485135 }, "rgb": [77, 76, 132] }, @@ -439296,23 +439296,23 @@ "year": 1826, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": -25.701370717367304, - "c2": 27.170199490150562, - "c3": -9.370884851788883, - "c4": 8.643451760270661, - "c5": -16.289173693473032, - "c6": 3.246773061103301, - "c7": -7.0625458034792175 + "points": { + "c1": 16.13396430542317, + "c2": 30.963053923335387, + "c3": 22.294216137640944, + "c4": 7.543794886015277, + "c5": -17.856204755643265, + "c6": -11.869472958884774, + "c7": -27.388313595001428 }, - "vertexSeeds": { - "c1": 2.6620240067992142, - "c2": 2.7823443525840204, - "c3": 2.7237218203129627, - "c4": 2.743145991454068, - "c5": 2.616596297835157, - "c6": 2.69966770024421, - "c7": 2.757346213705595 + "offsets": { + "c1": 4.789644012944984, + "c2": 4.105409153952842, + "c3": 3.4211742949607, + "c4": 2.736939435968558, + "c5": 2.0527045769764163, + "c6": 1.3684697179842837, + "c7": 0.6842348589921419 }, "rgb": [86, 146, 138] }, @@ -439323,23 +439323,23 @@ "year": 1825, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 2.2784409659634335, - "c2": 11.177809496908967, - "c3": 7.010329789089138, - "c4": 1.4247415345486623, - "c5": -3.0899587505562103, - "c6": -19.217095836297904, - "c7": 0.11296180519901355 + "points": { + "c1": 19.63348847609353, + "c2": 2.5299685035090107, + "c3": 10.942250515788214, + "c4": 25.07018752217913, + "c5": -6.149346342465556, + "c6": 20.192170250505004, + "c7": -9.858245715629348 }, - "vertexSeeds": { - "c1": 1.5962322149345671, - "c2": 1.7879363167395614, - "c3": 2.0309638152554452, - "c4": 1.4919917234111941, - "c5": 1.6865768043355063, - "c6": 1.6432777501780556, - "c7": 1.9432983548642309 + "offsets": { + "c1": 3.43042071197411, + "c2": 2.940360610263523, + "c3": 2.4503005085529357, + "c4": 1.9602404068423485, + "c5": 1.4701803051317615, + "c6": 0.9801202034211742, + "c7": 0.4900601017105871 }, "rgb": [238, 201, 159] }, @@ -439350,23 +439350,23 @@ "year": 1825, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 3.3444061462435783, - "c2": -10.12417819470355, - "c3": 11.101043401521345, - "c4": -16.758593426779743, - "c5": -5.177542986159601, - "c6": 21.349339721840572, - "c7": -21.39935991925373 + "points": { + "c1": 10.836594794782066, + "c2": 15.353042383816437, + "c3": 5.12246485001365, + "c4": 26.142713139634274, + "c5": 16.864111998497506, + "c6": 3.1710184870895723, + "c7": -3.393106905578218 }, - "vertexSeeds": { - "c1": 3.5847533954952406, - "c2": 3.559171950813364, - "c3": 3.4810489155155997, - "c4": 3.5552039428917026, - "c5": 3.500004838473963, - "c6": 3.562002970649171, - "c7": 3.5946394391319427 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601947, + "c3": 4.368932038834943, + "c4": 3.4951456310679583, + "c5": 2.6213592233009737, + "c6": 1.747572815533989, + "c7": 0.8737864077669848 }, "rgb": [77, 76, 132] }, @@ -439377,23 +439377,23 @@ "year": 1825, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 11.194053486016621, - "c2": -7.085081479707416, - "c3": -3.253540292831346, - "c4": -1.1200205412823045, - "c5": -19.952993038198837, - "c6": -24.824606456924524, - "c7": -11.042062252268497 + "points": { + "c1": 16.688604715668895, + "c2": 8.44891398754715, + "c3": 6.557929019318365, + "c4": 2.806222711043702, + "c5": -18.362233646811017, + "c6": -18.273037641502818, + "c7": 17.69158680955249 }, - "vertexSeeds": { - "c1": 7.0594837535317625, - "c2": 7.2357200320749175, - "c3": 7.209933068607593, - "c4": 7.081498569061025, - "c5": 7.003035225008859, - "c6": 7.231024642516761, - "c7": 7.242863338054172 + "offsets": { + "c1": 12.233009708737864, + "c2": 10.485436893203895, + "c3": 8.737864077669887, + "c4": 6.990291262135917, + "c5": 5.242718446601947, + "c6": 3.495145631067978, + "c7": 1.7475728155339696 }, "rgb": [58, 15, 49] }, @@ -439404,23 +439404,23 @@ "year": 1826, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -4.56170311961726, - "c2": 25.52295932008258, - "c3": -4.4824528823059175, - "c4": 1.5889919468189433, - "c5": -12.576185119767018, - "c6": 21.980350013226353, - "c7": -12.389003575015586 + "points": { + "c1": -13.111501625515864, + "c2": 3.6236142464757357, + "c3": -28.24483509935257, + "c4": -24.619433111850867, + "c5": 5.473885632678748, + "c6": 27.837129552974137, + "c7": 18.69701239274033 }, - "vertexSeeds": { - "c1": 8.354922279792746, - "c2": 8.354922279792746, - "c3": 8.354922279792746, - "c4": 8.354922279792746, - "c5": 8.354922279792746, - "c6": 8.354922279792746, - "c7": 8.354922279792746 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -439431,23 +439431,23 @@ "year": 1826, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 14.549253901584109, - "c2": -8.576230179353935, - "c3": -11.242365226743658, - "c4": -6.552985130217092, - "c5": 13.280607413686731, - "c6": -28.656224121644808, - "c7": -26.755019609032193 + "points": { + "c1": -3.9472506644994176, + "c2": 4.974787672427006, + "c3": -30.872613565864405, + "c4": 17.11073471092049, + "c5": 13.941523776128683, + "c6": -5.963424647676433, + "c7": -14.199371933147798 }, - "vertexSeeds": { - "c1": 4.163282021569805, - "c2": 3.9023724842266634, - "c3": 4.145588579725336, - "c4": 3.8579855296976806, - "c5": 3.891310049770913, - "c6": 4.091389613728164, - "c7": 4.086524995396659 + "offsets": { + "c1": 7.022653721682848, + "c2": 6.01941747572815, + "c3": 5.016181229773461, + "c4": 4.012944983818773, + "c5": 3.009708737864075, + "c6": 2.0064724919093773, + "c7": 1.0032362459546886 }, "rgb": [86, 146, 138] }, @@ -439458,23 +439458,23 @@ "year": 1826, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 18.899909652906423, - "c2": -11.160220540803728, - "c3": -7.8782597321156835, - "c4": 3.7135800125917413, - "c5": 2.4238966388299055, - "c6": 9.944493975667655, - "c7": 6.9847356360783195 + "points": { + "c1": 0.23896732132612186, + "c2": -4.321324926845342, + "c3": -11.786441201279107, + "c4": 12.019615497746265, + "c5": -8.868620562551495, + "c6": -12.657758950312669, + "c7": -13.770212225236296 }, - "vertexSeeds": { - "c1": 9.184850014447036, - "c2": 8.777892011097236, - "c3": 9.429768147834743, - "c4": 9.313622318865754, - "c5": 8.947796490316042, - "c6": 8.609693512578227, - "c7": 9.473166948242325 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -439485,23 +439485,23 @@ "year": 1826, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 30.957214987226536, - "c2": -19.55112092009851, - "c3": -30.915284329520738, - "c4": 12.80601056811787, - "c5": -21.269386699739325, - "c6": -13.5756918998681, - "c7": -2.567513821983983 + "points": { + "c1": -6.021432711413759, + "c2": -33.15064934351297, + "c3": 27.1642242229832, + "c4": 3.5035634538914096, + "c5": 15.89832674212228, + "c6": -19.093641455522324, + "c7": -22.05288578569417 }, - "vertexSeeds": { - "c1": 9.415312185966991, - "c2": 8.783195760560261, - "c3": 9.072663698507483, - "c4": 9.029363943485684, - "c5": 8.740416353367822, - "c6": 9.432274585313062, - "c7": 8.632722630205706 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -439512,23 +439512,23 @@ "year": 1826, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 4.011439230800015, - "c2": -15.623401652577702, - "c3": 32.198004922252466, - "c4": -29.05233231939969, - "c5": -30.722331681595733, - "c6": -14.02600114159068, - "c7": 32.30762824884843 + "points": { + "c1": -30.600028172037284, + "c2": 18.43877017157802, + "c3": 27.324957320337518, + "c4": 18.68984000520647, + "c5": -16.83090461907597, + "c6": 0.042810735154283464, + "c7": -3.8042572515871598 }, - "vertexSeeds": { - "c1": 1.9761152931808574, - "c2": 2.0894504663521154, - "c3": 1.9506687604313706, - "c4": 2.055554725476859, - "c5": 1.9262648041163448, - "c6": 2.046618835947241, - "c7": 2.096580557953644 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.079056865464633, + "c3": 2.565880721220528, + "c4": 2.0527045769764234, + "c5": 1.539528432732314, + "c6": 1.0263522884882095, + "c7": 0.5131761442441047 }, "rgb": [238, 201, 159] }, @@ -439539,23 +439539,23 @@ "year": 1826, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 13.210987754640914, - "c2": -6.399816798746816, - "c3": -15.59928338809985, - "c4": 21.802408946522608, - "c5": -16.596234981571143, - "c6": -9.35120211207175, - "c7": 0.8637566026377357 + "points": { + "c1": -4.438945463168299, + "c2": -5.203145560218875, + "c3": -16.978060321152416, + "c4": 19.85115077772095, + "c5": 9.452325177792932, + "c6": 6.057137950198548, + "c7": -12.716028989365787 }, - "vertexSeeds": { - "c1": 8.641750592140658, - "c2": 9.023743811666902, - "c3": 9.13614562748723, - "c4": 9.145055161225226, - "c5": 9.290452544333187, - "c6": 8.637209280398297, - "c7": 8.704721131281463 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -439566,23 +439566,23 @@ "year": 1825, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": -8.191082299197323, - "c2": -15.24086889353794, - "c3": 17.55118016349479, - "c4": 1.8939738727136195, - "c5": 2.196412751110767, - "c6": -17.501820577169273, - "c7": 18.441168029318035 + "points": { + "c1": 2.3629931864666496, + "c2": -10.152654135714695, + "c3": 15.535379989435157, + "c4": 5.688555686377395, + "c5": 20.747637119140542, + "c6": 17.60473502594425, + "c7": 12.67363127902194 }, - "vertexSeeds": { - "c1": 5.615139951349193, - "c2": 6.1757113616519135, - "c3": 6.357791995528204, - "c4": 6.001440277151249, - "c5": 6.9591730367257485, - "c6": 6.0520249612267785, - "c7": 4.91401267983291 + "offsets": { + "c1": 11.779935275080906, + "c2": 10.097087378640774, + "c3": 8.414239482200642, + "c4": 6.731391585760519, + "c5": 5.048543689320387, + "c6": 3.3656957928802558, + "c7": 1.682847896440131 }, "rgb": [222, 0, 59] }, @@ -439593,23 +439593,23 @@ "year": 1825, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": 8.756712196967118, - "c2": 7.501678919152106, - "c3": -14.856684241684182, - "c4": 2.4549356554752926, - "c5": 4.019560748041375, - "c6": -9.462284301918475, - "c7": -3.524724496776166 + "points": { + "c1": 7.494194857058545, + "c2": -17.238460212646164, + "c3": 10.65068201749083, + "c4": -17.67932375954101, + "c5": -1.713679326185197, + "c6": 12.636740063681025, + "c7": -20.48579209341647 }, - "vertexSeeds": { - "c1": 9.840025373364055, - "c2": 10.498184509076086, - "c3": 10.204133512207378, - "c4": 10.425981902064828, - "c5": 10.20445859552285, - "c6": 10.389133353167152, - "c7": 10.579358047976365 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122058, + "c3": 12.713823393435055, + "c4": 10.171058714748053, + "c5": 7.628294036061051, + "c6": 5.085529357374005, + "c7": 2.5427646786870026 }, "rgb": [58, 15, 49] }, @@ -439620,23 +439620,23 @@ "year": 1826, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -27.47765207871602, - "c2": 13.725692467408418, - "c3": -13.336604184491604, - "c4": -10.5220484650625, - "c5": 20.074854796120814, - "c6": 22.049965790226214, - "c7": 25.80161748137046 + "points": { + "c1": 22.496332302637878, + "c2": 26.185420164984368, + "c3": 1.4021299307749366, + "c4": 29.140797046388958, + "c5": -2.630366012644643, + "c6": -26.939966648040542, + "c7": -21.792537538376873 }, - "vertexSeeds": { - "c1": 8.107568986693408, - "c2": 8.13933917131664, - "c3": 8.14692711685338, - "c4": 8.108609537606725, - "c5": 8.114847911608848, - "c6": 8.088569308727783, - "c7": 8.178801177352076 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973625, + "c3": 9.75496994914466, + "c4": 7.8039759593156965, + "c5": 5.85298196948689, + "c6": 3.9019879796579264, + "c7": 1.9509939898289632 }, "rgb": [77, 76, 132] }, @@ -439647,23 +439647,23 @@ "year": 1826, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 18.641279668434688, - "c2": -19.338426788224417, - "c3": 19.947184071451023, - "c4": 12.774525595971607, - "c5": -12.966424156812812, - "c6": 18.669243510500305, - "c7": 1.6503039932682526 + "points": { + "c1": 26.7774662628178, + "c2": 21.812827537545513, + "c3": -12.237469649052947, + "c4": 15.986791038579423, + "c5": -20.00080945628687, + "c6": 22.39627019704916, + "c7": -24.9230219337534 }, - "vertexSeeds": { - "c1": 6.9562441506054595, - "c2": 6.937502885118546, - "c3": 6.961739057694633, - "c4": 6.973784400695464, - "c5": 6.971354738007358, - "c6": 6.959483979564765, - "c7": 6.974277529736028 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479936, + "c3": 8.321775312066668, + "c4": 6.657420249653401, + "c5": 4.993065187239803, + "c6": 3.328710124826535, + "c7": 1.6643550624132675 }, "rgb": [77, 76, 132] }, @@ -439674,23 +439674,23 @@ "year": 1826, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -17.73500290778013, - "c2": -6.418366027676775, - "c3": 3.1402860943142876, - "c4": -5.712666243260713, - "c5": 21.020156614185513, - "c6": -3.367240860151604, - "c7": 12.904158874877755 + "points": { + "c1": -6.37118121802234, + "c2": -29.09353169044765, + "c3": -17.17139852281946, + "c4": 20.000084588679268, + "c5": 21.912654495453292, + "c6": 0.08605867383671395, + "c7": 25.41411969157812 }, - "vertexSeeds": { - "c1": 3.9491065004048407, - "c2": 4.051266062803724, - "c3": 4.020037649556185, - "c4": 3.907641735876204, - "c5": 4.035538404147116, - "c6": 3.8984634783561805, - "c7": 4.044182991922405 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.82524271844661, + "c3": 4.854368932038832, + "c4": 3.883495145631074, + "c5": 2.9126213592232952, + "c6": 1.941747572815537, + "c7": 0.970873786407778 }, "rgb": [238, 201, 159] }, @@ -439701,23 +439701,23 @@ "year": 1826, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -5.692412794357473, - "c2": -0.6306210645434049, - "c3": 27.126753736415903, - "c4": -15.197878633067095, - "c5": -1.1734488863980204, - "c6": 17.949747995729542, - "c7": 13.03721252847772 + "points": { + "c1": -27.366096264347288, + "c2": 25.100665283215058, + "c3": -24.903841365767235, + "c4": 28.101128879832743, + "c5": 0.8385695559755391, + "c6": -23.89182403061462, + "c7": 28.435886848809247 }, - "vertexSeeds": { - "c1": 4.691227465490661, - "c2": 4.332152623574618, - "c3": 4.421073366674989, - "c4": 4.848917226543649, - "c5": 5.441632610410551, - "c6": 4.99404083086555, - "c7": 5.440074034904995 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463243, + "c3": 6.588072122052708, + "c4": 5.270457697642165, + "c5": 3.9528432732316214, + "c6": 2.6352288488210824, + "c7": 1.317614424410543 }, "rgb": [222, 0, 59] }, @@ -439728,23 +439728,23 @@ "year": 1826, "resistanceReported": false, "duration": 28425600, - "curveSeeds": { - "c1": -27.573377155704357, - "c2": -2.154253037416936, - "c3": -3.1394782410387876, - "c4": 3.1566273306479786, - "c5": 16.575707158991058, - "c6": -34.54447777871503, - "c7": -11.274122679467503 + "points": { + "c1": -18.127966829039046, + "c2": -14.006131666487903, + "c3": -14.797600519169581, + "c4": -27.6032267059678, + "c5": -39.04233729799743, + "c6": 32.48188583057551, + "c7": 7.946796792844069 }, - "vertexSeeds": { - "c1": 5.478717765949753, - "c2": 5.253485819306664, - "c3": 5.439344763347726, - "c4": 5.49237406243452, - "c5": 5.493291031932573, - "c6": 5.263431609337158, - "c7": 5.414733865989616 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -439755,23 +439755,23 @@ "year": 1826, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": -16.253952322453344, - "c2": 6.230797120303713, - "c3": -19.64469888319691, - "c4": 29.03494582986515, - "c5": 30.69888057774378, - "c6": 14.103288601436105, - "c7": -25.755220877574807 + "points": { + "c1": -38.03993699205676, + "c2": 16.777779054614072, + "c3": -27.7006658962982, + "c4": -2.9542325283075215, + "c5": 18.363284373903937, + "c6": 3.9357919293149095, + "c7": -19.210904017369977 }, - "vertexSeeds": { - "c1": 0.05829015544041451, - "c2": 0.05829015544041451, - "c3": 0.05829015544041451, - "c4": 0.05829015544041451, - "c5": 0.05829015544041451, - "c6": 0.05829015544041451, - "c7": 0.05829015544041451 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -439782,23 +439782,23 @@ "year": 1825, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": 0.276554410748421, - "c2": 5.820764724682451, - "c3": -2.9305766429274165, - "c4": -13.875299238251264, - "c5": 1.6261666268054462, - "c6": -20.241167972156546, - "c7": -10.066365181635538 + "points": { + "c1": -18.723577577082438, + "c2": 2.547943164748961, + "c3": 18.34780929738833, + "c4": 16.27618569790328, + "c5": -12.496226537077384, + "c6": -2.7426899036628996, + "c7": -15.51658893943485 }, - "vertexSeeds": { - "c1": 4.335718008602614, - "c2": 4.117816415335862, - "c3": 4.080361157858735, - "c4": 4.359249312993134, - "c5": 4.0006907088301285, - "c6": 3.999953819713718, - "c7": 4.282227152606158 + "offsets": { + "c1": 7.3786407766990285, + "c2": 6.324549237170592, + "c3": 5.270457697642164, + "c4": 4.216366158113728, + "c5": 3.162274618585301, + "c6": 2.108183079056864, + "c7": 1.0540915395284276 }, "rgb": [238, 201, 159] }, @@ -439809,23 +439809,23 @@ "year": 1826, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -28.564166646425964, - "c2": 15.425921823011613, - "c3": 29.344445123203315, - "c4": -28.760677750929656, - "c5": 23.093325479045873, - "c6": -20.399147851894526, - "c7": 28.658356833991952 + "points": { + "c1": -15.898402168326843, + "c2": 13.52633972595796, + "c3": 4.443248670596567, + "c4": 35.485988095104545, + "c5": 35.316588718738544, + "c6": 9.501836098673294, + "c7": -15.542233155733626 }, - "vertexSeeds": { - "c1": 7.848122813250172, - "c2": 7.991595381896015, - "c3": 7.704787961244544, - "c4": 7.515964832857178, - "c5": 7.5689945981932425, - "c6": 7.903789527963397, - "c7": 7.624712873234293 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.844660194174754, + "c3": 9.870550161812291, + "c4": 7.89644012944983, + "c5": 5.922330097087387, + "c6": 3.948220064724925, + "c7": 1.9741100323624625 }, "rgb": [77, 76, 132] }, @@ -439836,23 +439836,23 @@ "year": 1826, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 22.959945420830024, - "c2": 13.871023606271784, - "c3": -11.71702936245004, - "c4": 19.46578239338161, - "c5": 19.976904765022077, - "c6": 21.28566479479639, - "c7": -5.652914234819168 + "points": { + "c1": 24.32709214971426, + "c2": 6.490844097598, + "c3": -14.276127937310102, + "c4": 2.488757321082833, + "c5": 17.787477710584263, + "c6": -20.362288728159818, + "c7": -6.829277193527449 }, - "vertexSeeds": { - "c1": 0.6383382535291879, - "c2": 0.6102932351849742, - "c3": 0.6220858456417977, - "c4": 0.6346180435270447, - "c5": 0.626569880349613, - "c6": 0.6164414899344135, - "c7": 0.6122584363433768 + "offsets": { + "c1": 1.1003236245954693, + "c2": 0.9431345353675457, + "c3": 0.785945446139622, + "c4": 0.6287563569116984, + "c5": 0.4715672676837709, + "c6": 0.31437817845584726, + "c7": 0.15718908922792363 }, "rgb": [238, 201, 159] }, @@ -439863,23 +439863,23 @@ "year": 1826, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 15.091546771269549, - "c2": -8.469583394352984, - "c3": 4.634392239777135, - "c4": -15.584531433042198, - "c5": 11.984375503649119, - "c6": 9.096222034462691, - "c7": 1.7676152437941397 + "points": { + "c1": 6.838878106917946, + "c2": -14.011834745572457, + "c3": 15.298028373486368, + "c4": 28.618279605034445, + "c5": -13.898263000799847, + "c6": 5.823366416114617, + "c7": -5.989888210266216 }, - "vertexSeeds": { - "c1": 3.4786037887604473, - "c2": 3.3099200910594995, - "c3": 3.4523718068389764, - "c4": 3.277708953095537, - "c5": 3.518504490697196, - "c6": 3.2431622438469203, - "c7": 3.383285600224223 + "offsets": { + "c1": 5.922330097087379, + "c2": 5.07628294036061, + "c3": 4.230235783633842, + "c4": 3.3841886269070733, + "c5": 2.538141470180305, + "c6": 1.6920943134535367, + "c7": 0.8460471567267683 }, "rgb": [238, 201, 159] }, @@ -439890,23 +439890,23 @@ "year": 1826, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -17.933675535631068, - "c2": 20.529585856842377, - "c3": -11.243300907787056, - "c4": 21.74359855339409, - "c5": 20.177837363244283, - "c6": 1.6272873056758854, - "c7": -5.378625663049483 + "points": { + "c1": 13.761617614316012, + "c2": 19.961393793669085, + "c3": 24.24745314890094, + "c4": 14.396671728065048, + "c5": 2.9001500272995813, + "c6": -13.826803076924733, + "c7": 23.026723702236136 }, - "vertexSeeds": { - "c1": 5.40520480273445, - "c2": 5.29468856651573, - "c3": 5.417430029550522, - "c4": 5.383887618621783, - "c5": 4.923986357462926, - "c6": 5.113184273616615, - "c7": 5.414741762181334 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262138, + "c3": 6.472491909385116, + "c4": 5.177993527508095, + "c5": 3.883495145631073, + "c6": 2.5889967637540514, + "c7": 1.2944983818770301 }, "rgb": [86, 146, 138] }, @@ -439917,23 +439917,23 @@ "year": 1826, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": -18.610637038503803, - "c2": 15.89565302388138, - "c3": 20.17446038230306, - "c4": 7.761506325247858, - "c5": 0.6023864838195756, - "c6": -4.185127565052614, - "c7": 18.157865305477245 + "points": { + "c1": 5.543531695515981, + "c2": -16.747897093076812, + "c3": 19.963384321928444, + "c4": -7.271893322162516, + "c5": 13.498868454510884, + "c6": 15.316104992482522, + "c7": 9.423487942686457 }, - "vertexSeeds": { - "c1": 6.095479445822119, - "c2": 6.084899653595403, - "c3": 6.095595286026208, - "c4": 6.089392744412828, - "c5": 6.093436839983343, - "c6": 6.0980845172677745, - "c7": 6.082559498108039 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.737864077669654, + "c3": 7.281553398058335, + "c4": 5.825242718446436, + "c5": 4.368932038835117, + "c6": 2.912621359223218, + "c7": 1.4563106796118988 }, "rgb": [238, 201, 159] }, @@ -439944,23 +439944,23 @@ "year": 1825, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 2.1633969751387703, - "c2": -10.349542492982348, - "c3": 0.9837296512213207, - "c4": -14.101209774774812, - "c5": -18.54432646572538, - "c6": 1.3950009502562288, - "c7": 9.361480939278604 + "points": { + "c1": -5.359610868747964, + "c2": -2.236589741840511, + "c3": 22.027812352802158, + "c4": -13.393502026330822, + "c5": 11.232455252749673, + "c6": 20.417634503238716, + "c7": -1.2275535796201567 }, - "vertexSeeds": { - "c1": 3.1633031121635855, - "c2": 2.9825933136465723, - "c3": 3.047972244499738, - "c4": 3.007713778601361, - "c5": 3.0173444076871867, - "c6": 2.9032972285957754, - "c7": 3.097098621512322 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757283, + "c3": 3.8834951456310702, + "c4": 3.1067961165048508, + "c5": 2.3300970873786375, + "c6": 1.5533980582524254, + "c7": 0.7766990291262127 }, "rgb": [222, 0, 59] }, @@ -439971,23 +439971,23 @@ "year": 1826, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": -26.110038768399832, - "c2": -8.22627293330256, - "c3": 40.84362374706357, - "c4": 17.497416443815304, - "c5": 15.946763283880735, - "c6": -5.924060238959186, - "c7": 4.709304311521841 + "points": { + "c1": 0.9868341477743598, + "c2": -32.526875515404626, + "c3": -23.55184636764428, + "c4": 10.258031285535495, + "c5": 3.191036657619968, + "c6": -25.873776387004803, + "c7": -12.902111573509629 }, - "vertexSeeds": { - "c1": 5.3516538052791, - "c2": 5.910153390690041, - "c3": 4.8240485072423995, - "c4": 4.663273437089422, - "c5": 4.928178859196245, - "c6": 5.275991956862423, - "c7": 5.723112588336784 + "offsets": { + "c1": 10.032362459546926, + "c2": 8.599167822468795, + "c3": 7.165973185390663, + "c4": 5.732778548312531, + "c5": 4.299583911234399, + "c6": 2.8663892741562673, + "c7": 1.4331946370781317 }, "rgb": [238, 201, 159] }, @@ -439998,23 +439998,23 @@ "year": 1826, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": 38.82787230586213, - "c2": 9.229999683129762, - "c3": -28.07148434887955, - "c4": 37.613766714248, - "c5": -37.38081723707665, - "c6": 7.165119275921342, - "c7": -22.328643290337236 + "points": { + "c1": 24.724009876775995, + "c2": -17.882468172580815, + "c3": 2.7580071589955963, + "c4": -8.466895190991472, + "c5": -30.704719385278494, + "c6": 37.3731032989304, + "c7": -35.70688603331144 }, - "vertexSeeds": { - "c1": 3.925607389979879, - "c2": 4.018384070227558, - "c3": 4.035905394716625, - "c4": 3.9493769641201046, - "c5": 3.9037030683131033, - "c6": 3.992419574147934, - "c7": 3.913305287352937 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.82524271844661, + "c3": 4.854368932038832, + "c4": 3.883495145631074, + "c5": 2.9126213592232952, + "c6": 1.941747572815537, + "c7": 0.970873786407778 }, "rgb": [222, 0, 59] }, @@ -440025,23 +440025,23 @@ "year": 1826, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -12.455081831960102, - "c2": 23.799855837360795, - "c3": -23.83002413358709, - "c4": 22.035684548029565, - "c5": 6.352422500149093, - "c6": 14.966243669197368, - "c7": -2.2265500247750865 + "points": { + "c1": -15.50763952890952, + "c2": -12.791357540233495, + "c3": -21.18804509812006, + "c4": -25.563585361512203, + "c5": -11.02219565698716, + "c6": -20.528181270281895, + "c7": 9.364023354334101 }, - "vertexSeeds": { - "c1": 2.4014737521425054, - "c2": 2.3784580981022336, - "c3": 2.4231168643464778, - "c4": 2.340942665279304, - "c5": 2.3702167640608494, - "c6": 2.595462400418998, - "c7": 2.6997978468692105 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.8834951456310685, + "c3": 3.2362459546925573, + "c4": 2.588996763754047, + "c5": 1.9417475728155331, + "c6": 1.294498381877022, + "c7": 0.647249190938511 }, "rgb": [86, 146, 138] }, @@ -440052,23 +440052,23 @@ "year": 1826, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -22.181047323467745, - "c2": -2.155582752536244, - "c3": 19.150265755737706, - "c4": 11.48915947433899, - "c5": 6.689525904444771, - "c6": -25.41794245681109, - "c7": -19.41173070682838 + "points": { + "c1": -17.806837184347106, + "c2": 12.329014329704833, + "c3": -34.42352428921198, + "c4": 0.11539430949073903, + "c5": 13.569982802015197, + "c6": -6.297678534639225, + "c7": -26.576075159068694 }, - "vertexSeeds": { - "c1": 1.9723539782560013, - "c2": 1.9024771035025996, - "c3": 1.8749271840480566, - "c4": 2.0438069422766736, - "c5": 2.0223610673382084, - "c6": 1.893445227198022, - "c7": 1.8820153568643572 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037444, + "c3": 2.4734165510864523, + "c4": 1.978733240869166, + "c5": 1.4840499306518744, + "c6": 0.989366620434583, + "c7": 0.4946833102172915 }, "rgb": [222, 0, 59] }, @@ -440079,23 +440079,23 @@ "year": 1826, "resistanceReported": false, "duration": 30672000, - "curveSeeds": { - "c1": 15.462116316002906, - "c2": 11.465308479512032, - "c3": 2.829614133904421, - "c4": 6.577459147723083, - "c5": 23.330850586680043, - "c6": 23.541978041673843, - "c7": -8.239448676893389 + "points": { + "c1": 38.49011905753598, + "c2": -4.476173400096165, + "c3": 28.33865721354914, + "c4": -36.46379343955924, + "c5": -35.442813278373734, + "c6": -20.876607996130314, + "c7": -24.036391744191544 }, - "vertexSeeds": { - "c1": 5.694490837143687, - "c2": 5.676655383485382, - "c3": 5.761821797908663, - "c4": 5.773407508403712, - "c5": 5.411333076894319, - "c6": 5.477874774063032, - "c7": 5.649294559350833 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026365, + "c3": 6.911696717521957, + "c4": 5.529357374017577, + "c5": 4.147018030513169, + "c6": 2.7646786870087885, + "c7": 1.382339343504408 }, "rgb": [222, 0, 59] }, @@ -440106,23 +440106,23 @@ "year": 1826, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 2.975844872622975, - "c2": 8.51216573761264, - "c3": -1.2418670095107238, - "c4": 25.189126070602107, - "c5": -7.812867243710929, - "c6": -9.808028155781702, - "c7": 9.184653553264283 + "points": { + "c1": 14.934000197000088, + "c2": -20.379553403284426, + "c3": 14.522687474213278, + "c4": -24.445333331779338, + "c5": -27.00706038179537, + "c6": -1.7570606333989538, + "c7": -6.463426446157616 }, - "vertexSeeds": { - "c1": 1.8474653485660923, - "c2": 2.6685177309268715, - "c3": 2.347713470116741, - "c4": 2.2615456022434044, - "c5": 1.881193970842558, - "c6": 2.4907987853320592, - "c7": 2.952572485997047 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355061, + "c3": 3.6523347202958862, + "c4": 2.921867776236708, + "c5": 2.1914008321775316, + "c6": 1.4609338881183547, + "c7": 0.7304669440591768 }, "rgb": [77, 76, 132] }, @@ -440133,23 +440133,23 @@ "year": 1826, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 9.690208819606958, - "c2": -7.27755467559637, - "c3": -27.134210343209574, - "c4": -17.048158334873623, - "c5": 35.94249666663714, - "c6": 26.867994499474264, - "c7": -39.61963488207477 + "points": { + "c1": -41.16739136998242, + "c2": -4.595318840819431, + "c3": 43.47731200242893, + "c4": -19.43859475859319, + "c5": -25.55740749560332, + "c6": 39.516061224897, + "c7": -22.10881414709975 }, - "vertexSeeds": { - "c1": 8.150685431422366, - "c2": 8.189996147542713, - "c3": 8.122957029080133, - "c4": 8.142506553666603, - "c5": 8.209490335091798, - "c6": 8.141417368954707, - "c7": 8.168199709363794 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.78918169209437, + "c3": 9.824318076745243, + "c4": 7.859454461396247, + "c5": 5.89459084604712, + "c6": 3.9297272306981235, + "c7": 1.9648636153491266 }, "rgb": [77, 76, 132] }, @@ -440160,23 +440160,23 @@ "year": 1826, "resistanceReported": false, "duration": 26524800, - "curveSeeds": { - "c1": 10.018734010102435, - "c2": -0.14251557010832272, - "c3": 16.403293071878643, - "c4": -36.26605985909595, - "c5": 0.9712474446745603, - "c6": -34.042493178619885, - "c7": -30.823490552620296 + "points": { + "c1": 9.93394111389518, + "c2": 19.274030524333796, + "c3": 11.904540735825414, + "c4": -7.430180479228241, + "c5": 21.57342695891122, + "c6": -9.20536772638274, + "c7": -29.04537935322056 }, - "vertexSeeds": { - "c1": 13.859838597672352, - "c2": 13.85570902590538, - "c3": 13.766429608036423, - "c4": 13.937458185954045, - "c5": 13.771023583865974, - "c6": 13.767250193029044, - "c7": 13.865294497563468 + "offsets": { + "c1": 23.268608414239484, + "c2": 19.94452149791959, + "c3": 16.6204345815997, + "c4": 13.296347665279807, + "c5": 9.972260748959677, + "c6": 6.648173832639784, + "c7": 3.324086916319892 }, "rgb": [86, 146, 138] }, @@ -440187,23 +440187,23 @@ "year": 1827, "resistanceReported": false, "duration": 40262400, - "curveSeeds": { - "c1": -8.79512904856675, - "c2": 49.70650019387911, - "c3": -51.18626344700014, - "c4": -39.4591211499486, - "c5": 28.870962597587862, - "c6": -10.582911035513995, - "c7": -18.324758698681883 + "points": { + "c1": -39.012030018131064, + "c2": -48.009184840252146, + "c3": 20.194193629041834, + "c4": -34.76672283168054, + "c5": -27.33694875623673, + "c6": 52.39068350925976, + "c7": 4.5800954086346835 }, - "vertexSeeds": { - "c1": 5.860670111509049, - "c2": 5.877760950967492, - "c3": 5.780104412318684, - "c4": 5.831776994584048, - "c5": 5.778578834284107, - "c6": 5.799522641316492, - "c7": 5.856904350108789 + "offsets": { + "c1": 9.838187702265373, + "c2": 8.432732316227472, + "c3": 7.0272769301895694, + "c4": 5.621821544151668, + "c5": 4.216366158113766, + "c6": 2.810910772075803, + "c7": 1.4054553860379015 }, "rgb": [77, 76, 132] }, @@ -440214,23 +440214,23 @@ "year": 1826, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": -5.5280040593469195, - "c2": 9.886907784703578, - "c3": 21.352082263573777, - "c4": -6.49083529389492, - "c5": 8.413768353925441, - "c6": 1.3766399843591444, - "c7": -10.23106003264001 + "points": { + "c1": -20.770698236746398, + "c2": 2.628953689427224, + "c3": -2.789929433385012, + "c4": -5.416882189136732, + "c5": 21.30283660507552, + "c6": 1.0590835614646963, + "c7": 23.61796363609497 }, - "vertexSeeds": { - "c1": 4.209080048049149, - "c2": 4.103932063488364, - "c3": 4.186523361294359, - "c4": 4.096736293657193, - "c5": 4.198306360010209, - "c6": 4.199216754066056, - "c7": 4.367283695543296 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130371, + "c3": 5.247341655108646, + "c4": 4.197873324086913, + "c5": 3.14840499306519, + "c6": 2.0989366620434566, + "c7": 1.0494683310217239 }, "rgb": [238, 201, 159] }, @@ -440241,23 +440241,23 @@ "year": 1826, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": 9.779675797985611, - "c2": 5.854715378462007, - "c3": 1.694058901242073, - "c4": 14.2981417960778, - "c5": 11.962973495856833, - "c6": 1.0775344402551283, - "c7": 0.7317661061201512 + "points": { + "c1": -0.3349895182568723, + "c2": -7.848281775740864, + "c3": 16.456431371877542, + "c4": 20.650885601319807, + "c5": -10.869161805993324, + "c6": -18.348300568013354, + "c7": 13.98495508196961 }, - "vertexSeeds": { - "c1": 9.12429604991256, - "c2": 9.184558691639358, - "c3": 8.753342461169975, - "c4": 9.410401693362957, - "c5": 9.36364300994669, - "c6": 8.777061692360233, - "c7": 9.35548151445592 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588077, + "c3": 11.257512713823385, + "c4": 9.006010171058712, + "c5": 6.754507628294038, + "c6": 4.503005085529366, + "c7": 2.251502542764673 }, "rgb": [77, 76, 132] }, @@ -440268,23 +440268,23 @@ "year": 1826, "resistanceReported": false, "duration": 32400000, - "curveSeeds": { - "c1": 25.247391194572245, - "c2": -36.47484218613726, - "c3": -10.387170586422783, - "c4": 2.614834804876949, - "c5": 20.437081189983473, - "c6": -4.989060558125978, - "c7": 44.836896963854315 + "points": { + "c1": -24.76935748280178, + "c2": 24.33396469523842, + "c3": -5.60728028875171, + "c4": 47.340400967013636, + "c5": -15.076682945030392, + "c6": -43.530584256560886, + "c7": 45.77596948113819 }, - "vertexSeeds": { - "c1": 7.8270631578159175, - "c2": 7.824765874416933, - "c3": 7.76683328409463, - "c4": 8.073866218594878, - "c5": 7.780366889754521, - "c6": 7.917480043551833, - "c7": 7.898275339834038 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054088, + "c3": 9.801202034211734, + "c4": 7.8409616273694125, + "c5": 5.880721220527058, + "c6": 3.9204808136847062, + "c7": 1.9602404068423531 }, "rgb": [222, 0, 59] }, @@ -440295,23 +440295,23 @@ "year": 1826, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -23.674789356002016, - "c2": -2.26908775097964, - "c3": -7.670190910370835, - "c4": -5.108254238836743, - "c5": -4.414466936314014, - "c6": -8.989514523592565, - "c7": -7.402775475581642 + "points": { + "c1": -24.176765111207843, + "c2": -17.693037613970994, + "c3": -5.071830734576292, + "c4": 0.30358439132299964, + "c5": -7.930654970568401, + "c6": -24.82006735088956, + "c7": 33.777206380586335 }, - "vertexSeeds": { - "c1": 9.919025428793036, - "c2": 9.94756274727654, - "c3": 9.90488346443942, - "c4": 9.907387377257285, - "c5": 9.903463772942322, - "c6": 9.909302573139705, - "c7": 9.92064599485442 + "offsets": { + "c1": 16.601941747572816, + "c2": 14.230235783633754, + "c3": 11.858529819694688, + "c4": 9.48682385575594, + "c5": 7.115117891816877, + "c6": 4.743411927877813, + "c7": 2.3717059639390636 }, "rgb": [58, 15, 49] }, @@ -440322,23 +440322,23 @@ "year": 1826, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 22.119060494359235, - "c2": -18.789699830683773, - "c3": 16.766280866402806, - "c4": 21.00042628285639, - "c5": -26.87429848763226, - "c6": -26.211946842451407, - "c7": 23.52527004471707 + "points": { + "c1": -21.944839500801244, + "c2": -17.577983497072413, + "c3": -12.64087788593763, + "c4": -4.9921378205135305, + "c5": -29.280052700955892, + "c6": 24.683025151289776, + "c7": 19.32233952246459 }, - "vertexSeeds": { - "c1": 7.713730569948187, - "c2": 7.713730569948187, - "c3": 7.713730569948187, - "c4": 7.713730569948187, - "c5": 7.713730569948187, - "c6": 7.713730569948187, - "c7": 7.713730569948187 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -440349,23 +440349,23 @@ "year": 1826, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 15.67431417181379, - "c2": 12.26778701108352, - "c3": -7.002469401115565, - "c4": -0.10166463868835507, - "c5": 16.472615373780414, - "c6": -19.12543532783672, - "c7": -19.23583997997869 + "points": { + "c1": 16.869589585666475, + "c2": 7.133080521533664, + "c3": -4.704663048636103, + "c4": -22.21457910990297, + "c5": -1.9005321908018402, + "c6": 22.746066816256132, + "c7": 6.813807211212957 }, - "vertexSeeds": { - "c1": 2.4147184739403924, - "c2": 2.4785401043253805, - "c3": 2.412444284116454, - "c4": 2.485497124383045, - "c5": 2.4882545082117877, - "c6": 2.4575226787682474, - "c7": 2.5103702514589306 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092946, + "c3": 3.051317614424415, + "c4": 2.441054091539535, + "c5": 1.8307905686546473, + "c6": 1.2205270457697674, + "c7": 0.61026352288488 }, "rgb": [222, 0, 59] }, @@ -440376,23 +440376,23 @@ "year": 1826, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -13.497033620014035, - "c2": 16.867796832810647, - "c3": -5.624315010422869, - "c4": -3.7866674521229946, - "c5": 22.87264728853519, - "c6": 19.513874838954827, - "c7": -3.169899824332397 + "points": { + "c1": 21.51829523766869, + "c2": 1.0135896071057253, + "c3": 9.4326860643244, + "c4": 1.7439385386474484, + "c5": 2.8003655304859265, + "c6": -22.305790466214425, + "c7": -6.574287608543759 }, - "vertexSeeds": { - "c1": 3.9316594422242104, - "c2": 4.021017596786236, - "c3": 4.015133907412419, - "c4": 4.2261216319869, - "c5": 3.9889183249424827, - "c6": 4.024628420941239, - "c7": 4.109289262557088 + "offsets": { + "c1": 7.087378640776699, + "c2": 6.074895977808598, + "c3": 5.062413314840497, + "c4": 4.049930651872396, + "c5": 3.0374479889042947, + "c6": 2.0249653259362024, + "c7": 1.012482662968092 }, "rgb": [238, 201, 159] }, @@ -440403,23 +440403,23 @@ "year": 1826, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -9.14006715077672, - "c2": -15.55319135891899, - "c3": 12.486869407510166, - "c4": -16.26330352364476, - "c5": 3.302406509430071, - "c6": -8.058578485356389, - "c7": -24.36953615374195 + "points": { + "c1": 28.583703764927588, + "c2": 19.141672853902836, + "c3": 7.7484301879401976, + "c4": 18.423401690701485, + "c5": -24.29180702445494, + "c6": 25.005880240442405, + "c7": -0.568411900680676 }, - "vertexSeeds": { - "c1": 9.47981816436397, - "c2": 9.445044731783337, - "c3": 9.396431189419847, - "c4": 9.484384805890604, - "c5": 9.356749278677235, - "c6": 8.943924891517485, - "c7": 8.875488335274264 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -440430,23 +440430,23 @@ "year": 1827, "resistanceReported": false, "duration": 37065600, - "curveSeeds": { - "c1": -23.62117190675018, - "c2": -32.86778283649875, - "c3": -29.532205261937484, - "c4": 15.904669459289963, - "c5": -49.71867769334727, - "c6": -34.57190146794787, - "c7": -20.092768066108974 + "points": { + "c1": -10.258247843202135, + "c2": 10.847039307250036, + "c3": -43.81832068984694, + "c4": 22.584639061769778, + "c5": 50.56862450364875, + "c6": 30.168918795211653, + "c7": -4.428926731567067 }, - "vertexSeeds": { - "c1": 6.609406257705478, - "c2": 6.804885320064752, - "c3": 6.897776584646234, - "c4": 6.877925798332677, - "c5": 6.695418885053673, - "c6": 7.046543770295567, - "c7": 6.7386416453574265 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922329, + "c3": 8.576051779935275, + "c4": 6.860841423948219, + "c5": 5.1456310679611645, + "c6": 3.4304207119741097, + "c7": 1.7152103559870548 }, "rgb": [86, 146, 138] }, @@ -440457,23 +440457,23 @@ "year": 1826, "resistanceReported": false, "duration": 432000, - "curveSeeds": { - "c1": 2.6620777335406594, - "c2": -10.228860043324813, - "c3": 7.153881988024992, - "c4": -7.7815407904696485, - "c5": 9.648343908347695, - "c6": -5.257691663100996, - "c7": -6.056893346377475 + "points": { + "c1": -4.311324313405809, + "c2": 9.857186649585472, + "c3": 6.723894061867256, + "c4": 2.6395423629837325, + "c5": 8.712117555658715, + "c6": -3.5045023411509604, + "c7": 5.669667592475918 }, - "vertexSeeds": { - "c1": 9.040382034579663, - "c2": 9.608084663774868, - "c3": 10.374749711142847, - "c4": 9.774522562350164, - "c5": 8.784380455365811, - "c6": 9.514898219473926, - "c7": 8.76483779501692 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518728, + "c3": 12.367082755432268, + "c4": 9.89366620434582, + "c5": 7.420249653259359, + "c6": 4.94683310217291, + "c7": 2.47341655108646 }, "rgb": [77, 76, 132] }, @@ -440484,23 +440484,23 @@ "year": 1826, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 6.395046704310545, - "c2": 0.9821684229398429, - "c3": -20.1391854821209, - "c4": -2.1089271808829686, - "c5": 8.215992475055835, - "c6": 21.6152100694301, - "c7": -28.005934134295895 + "points": { + "c1": 27.5112649099407, + "c2": -13.791398085243014, + "c3": 3.9730749568981807, + "c4": -14.426853139983745, + "c5": -18.167455193650863, + "c6": 26.170537342209194, + "c7": -26.349529659946317 }, - "vertexSeeds": { - "c1": 10.592564598806703, - "c2": 10.972670481853806, - "c3": 11.13153302020831, - "c4": 10.537029347999743, - "c5": 11.10051569053251, - "c6": 10.670822967153445, - "c7": 10.864310669772214 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.9778085991678, + "c3": 13.314840499306525, + "c4": 10.651872399445201, + "c5": 7.988904299583925, + "c6": 5.325936199722601, + "c7": 2.6629680998613243 }, "rgb": [86, 146, 138] }, @@ -440511,23 +440511,23 @@ "year": 1826, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 16.649396717928273, - "c2": -3.1991924024788894, - "c3": 16.118314103249933, - "c4": 3.964022578991422, - "c5": -25.621411807538415, - "c6": 7.730267692233742, - "c7": 25.300738927262916 + "points": { + "c1": -6.578372926517822, + "c2": -10.602080436794576, + "c3": -19.79584689070679, + "c4": -22.686608896301905, + "c5": 20.5358965636503, + "c6": 4.8920422826099035, + "c7": -27.558550265886545 }, - "vertexSeeds": { - "c1": 3.0995919626782324, - "c2": 3.132313376732755, - "c3": 3.050847668220016, - "c4": 3.179086508541447, - "c5": 3.094785545935091, - "c6": 3.1949398208086652, - "c7": 3.08592901247293 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.60471567267684, + "c3": 3.8372630605640365, + "c4": 3.069810448451214, + "c5": 2.3023578363384107, + "c6": 1.534905224225607, + "c7": 0.7674526121128035 }, "rgb": [58, 15, 49] }, @@ -440538,23 +440538,23 @@ "year": 1826, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 16.319193222807847, - "c2": 15.182335434718198, - "c3": 18.753639927338753, - "c4": 18.82428581658867, - "c5": 9.39039971352279, - "c6": -4.0343536758121985, - "c7": 4.135064153937787 + "points": { + "c1": 15.853247330191444, + "c2": -17.63454572114918, + "c3": -23.00710817712541, + "c4": 19.1375564242933, + "c5": 24.781069455706778, + "c6": -18.363827310460223, + "c7": -11.310635785827163 }, - "vertexSeeds": { - "c1": 5.484157669418268, - "c2": 5.389896313767768, - "c3": 5.392996826765067, - "c4": 5.392035083762334, - "c5": 5.333408676519394, - "c6": 5.420788608389645, - "c7": 5.4478861650054755 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -440565,23 +440565,23 @@ "year": 1827, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": 45.06081832656851, - "c2": -36.86436756520614, - "c3": -36.43761661173311, - "c4": 19.138969250450174, - "c5": -0.4009678510026333, - "c6": 36.17260988349436, - "c7": 7.145691192226693 + "points": { + "c1": -46.491624719667875, + "c2": -31.183481362181514, + "c3": -46.40108059052026, + "c4": -24.244726791068558, + "c5": 8.868789031755938, + "c6": 9.479340821250723, + "c7": 6.697792152544203 }, - "vertexSeeds": { - "c1": 2.348575957328092, - "c2": 2.2734536118698516, - "c3": 2.274720103095085, - "c4": 2.2963210143888753, - "c5": 2.1592173777354717, - "c6": 2.2468954831066723, - "c7": 2.323775656455721 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.411927877947296, + "c3": 2.8432732316227476, + "c4": 2.274618585298194, + "c5": 1.7059639389736454, + "c6": 1.137309292649097, + "c7": 0.5686546463245485 }, "rgb": [58, 15, 49] }, @@ -440592,23 +440592,23 @@ "year": 1827, "resistanceReported": false, "duration": 50025600, - "curveSeeds": { - "c1": 11.420542297319486, - "c2": 12.961138965368662, - "c3": 22.03726178978239, - "c4": 17.650683233024637, - "c5": 37.60807089807102, - "c6": 31.065683432540283, - "c7": -57.85585953676048 + "points": { + "c1": 41.48358825920552, + "c2": -24.01721337603, + "c3": -51.38596512701868, + "c4": -42.28571203678606, + "c5": 12.689893769776674, + "c6": 25.851210352682827, + "c7": 23.639151333818916 }, - "vertexSeeds": { - "c1": 5.34270452431322, - "c2": 5.398591324224458, - "c3": 5.441510193336014, - "c4": 5.23987564320243, - "c5": 5.484278888095792, - "c6": 5.403948576473903, - "c7": 5.2734123848887915 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -440619,23 +440619,23 @@ "year": 1826, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -4.3804809105783065, - "c2": -18.258822100744503, - "c3": 6.658775987411396, - "c4": -3.094135565754634, - "c5": -0.19150052006601115, - "c6": -1.0268820773512566, - "c7": -15.399822068360322 + "points": { + "c1": 25.65772877502443, + "c2": 2.070910592444541, + "c3": 29.158075972399317, + "c4": 22.449926850453522, + "c5": 25.71206077302061, + "c6": 3.230790205827759, + "c7": -17.08344286713814 }, - "vertexSeeds": { - "c1": 7.110537841224207, - "c2": 6.727475417875446, - "c3": 6.888204272362732, - "c4": 7.031589118187555, - "c5": 6.646087260507691, - "c6": 6.674201696417624, - "c7": 7.0724757877712685 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.42995839112344, + "c3": 8.69163199260287, + "c4": 6.9533055940823, + "c5": 5.214979195561729, + "c6": 3.4766527970411416, + "c7": 1.7383263985205877 }, "rgb": [77, 76, 132] }, @@ -440646,23 +440646,23 @@ "year": 1826, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -11.449874274978491, - "c2": -4.962197338377617, - "c3": -2.061684518552987, - "c4": -18.467554454689594, - "c5": -6.139123890095874, - "c6": -25.568916394797128, - "c7": 29.5606198685209 + "points": { + "c1": 9.08843420136164, + "c2": -6.268707984649577, + "c3": 4.875829220981519, + "c4": 20.24916734857685, + "c5": 22.612107957355928, + "c6": -21.13822166145254, + "c7": 29.58045692465016 }, - "vertexSeeds": { - "c1": 9.207621338268133, - "c2": 8.824537635341706, - "c3": 9.371068206507001, - "c4": 9.13271934100303, - "c5": 9.178588585685107, - "c6": 8.656208972405569, - "c7": 9.469430739888448 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -440673,23 +440673,23 @@ "year": 1826, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 19.00008569320928, - "c2": -2.205278696957471, - "c3": 22.80713387943642, - "c4": -10.326670239388783, - "c5": 15.143936406150132, - "c6": 41.09076639714716, - "c7": 20.498964398705226 + "points": { + "c1": 1.1294905947612293, + "c2": 24.99484165237574, + "c3": 29.794807039751717, + "c4": -12.467871410083717, + "c5": -10.550716680318502, + "c6": -3.8923813165513366, + "c7": -11.031546555068793 }, - "vertexSeeds": { - "c1": 3.248292423820234, - "c2": 3.4036272975863056, - "c3": 4.021757098855007, - "c4": 3.4580234428134804, - "c5": 3.3564351173170257, - "c6": 3.398596960999297, - "c7": 3.3636396292168755 + "offsets": { + "c1": 6.86084142394822, + "c2": 5.880721220527047, + "c3": 4.900601017105874, + "c4": 3.920480813684697, + "c5": 2.9403606102635234, + "c6": 1.9602404068423505, + "c7": 0.9801202034211731 }, "rgb": [238, 201, 159] }, @@ -440700,23 +440700,23 @@ "year": 1826, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 23.00022643318747, - "c2": 13.763941509649868, - "c3": -14.466187915892114, - "c4": -29.68440646056255, - "c5": -0.17379303329359885, - "c6": 8.385566156190464, - "c7": 33.25456922300929 + "points": { + "c1": -2.0761083302096495, + "c2": 17.74333863086413, + "c3": 20.52357953738816, + "c4": 16.49557795766483, + "c5": 24.94249119087918, + "c6": 27.490296377887745, + "c7": -15.932344865112999 }, - "vertexSeeds": { - "c1": 9.653750969303022, - "c2": 9.86133469489494, - "c3": 10.094299480638544, - "c4": 9.995334993648683, - "c5": 10.070674699970116, - "c6": 9.621373714948485, - "c7": 10.263186843951875 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.923717059639376, + "c3": 12.436430883032832, + "c4": 9.949144706426251, + "c5": 7.461858529819707, + "c6": 4.974572353213145, + "c7": 2.487286176606582 }, "rgb": [238, 201, 159] }, @@ -440727,23 +440727,23 @@ "year": 1827, "resistanceReported": false, "duration": 29808000, - "curveSeeds": { - "c1": -1.406254634419156, - "c2": 4.234883358645291, - "c3": -28.506267181298853, - "c4": 32.97704933997194, - "c5": -31.709176785555805, - "c6": 37.80983999092534, - "c7": 4.8524202335239295 + "points": { + "c1": 22.848812786333283, + "c2": 37.544131720261674, + "c3": 17.277087754320874, + "c4": 8.269805200627587, + "c5": -35.45116240584176, + "c6": -31.237571588297406, + "c7": 26.17062430782599 }, - "vertexSeeds": { - "c1": 9.864114266317188, - "c2": 9.59084469010588, - "c3": 10.10950240740613, - "c4": 9.74103125167202, - "c5": 10.055864531568576, - "c6": 9.71751508717784, - "c7": 9.896687744580149 + "offsets": { + "c1": 17.0873786407767, + "c2": 14.64632454923717, + "c3": 12.205270457697642, + "c4": 9.764216366158113, + "c5": 7.323162274618585, + "c6": 4.8821081830790565, + "c7": 2.4410540915395282 }, "rgb": [77, 76, 132] }, @@ -440754,23 +440754,23 @@ "year": 1827, "resistanceReported": false, "duration": 34646400, - "curveSeeds": { - "c1": -27.25232171107687, - "c2": 17.084207646007677, - "c3": 17.390921750237773, - "c4": 24.805212890053745, - "c5": 17.43165129040738, - "c6": 15.14375750473394, - "c7": -27.76518286767095 + "points": { + "c1": -17.26208704101777, + "c2": 26.358593237861506, + "c3": -11.88301767584526, + "c4": 38.73115610160877, + "c5": -3.938165818782238, + "c6": -12.926262011102168, + "c7": 2.82443375619377 }, - "vertexSeeds": { - "c1": 5.998710331556355, - "c2": 6.088657988792071, - "c3": 6.011837613071115, - "c4": 6.138962882144031, - "c5": 6.13759095761286, - "c6": 6.049173331307521, - "c7": 6.030717379712588 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750357, + "c3": 7.327785483125307, + "c4": 5.862228386500259, + "c5": 4.3966712898752105, + "c6": 2.9311141932500973, + "c7": 1.4655570966250486 }, "rgb": [86, 146, 138] }, @@ -440781,23 +440781,23 @@ "year": 1827, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": -31.492253124643916, - "c2": 14.11901486459584, - "c3": -4.927814282206356, - "c4": -18.634821447741242, - "c5": -3.077482858293095, - "c6": -0.7527714658904543, - "c7": -22.687032486876802 + "points": { + "c1": 11.350955206703652, + "c2": -19.59363161437951, + "c3": 15.351205313243845, + "c4": 34.08351374871563, + "c5": 29.207635085868603, + "c6": 37.273272429491854, + "c7": 23.246625826673764 }, - "vertexSeeds": { - "c1": 3.9727611032891925, - "c2": 3.86678430174417, - "c3": 3.8179038181743548, - "c4": 3.7772707394719998, - "c5": 3.89755884409052, - "c6": 3.8406355179922085, - "c7": 4.0324618220879875 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.108645399907539, + "c4": 4.08691631992603, + "c5": 3.0651872399445206, + "c6": 2.0434581599630115, + "c7": 1.021729079981509 }, "rgb": [86, 146, 138] }, @@ -440808,23 +440808,23 @@ "year": 1826, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 1.1801773686690744, - "c2": -17.92094146116144, - "c3": -4.8929848887483125, - "c4": -11.705341265068398, - "c5": -19.300493525757922, - "c6": -6.79301352559802, - "c7": -10.146464871616146 + "points": { + "c1": 27.81971937243285, + "c2": -30.73550707971537, + "c3": 30.478020578375983, + "c4": 29.448626657118297, + "c5": 12.3689128046057, + "c6": -12.451317898027181, + "c7": 2.876558539400513 }, - "vertexSeeds": { - "c1": 7.653426392464255, - "c2": 7.65306009140708, - "c3": 7.641511205804036, - "c4": 7.644376053966593, - "c5": 7.638012092583326, - "c6": 7.6460442262118615, - "c7": 7.646256125720644 + "offsets": { + "c1": 12.7831715210356, + "c2": 10.957004160887346, + "c3": 9.130836800739818, + "c4": 7.304669440591564, + "c5": 5.478502080444036, + "c6": 3.652334720295782, + "c7": 1.8261673601482542 }, "rgb": [77, 76, 132] }, @@ -440835,23 +440835,23 @@ "year": 1826, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": -11.942929647131017, - "c2": -14.54048387030271, - "c3": -20.99398660903214, - "c4": -5.7206310743396855, - "c5": -8.702388321882717, - "c6": 15.275669886769414, - "c7": 15.028772834382352 + "points": { + "c1": 5.557631514158782, + "c2": 13.757806414636903, + "c3": -15.262302930397153, + "c4": -13.043336223277656, + "c5": -4.377145740375308, + "c6": 3.5079667508548447, + "c7": -13.724817207286419 }, - "vertexSeeds": { - "c1": 7.082038024270894, - "c2": 7.639418289386915, - "c3": 7.594692657491851, - "c4": 7.509683813495208, - "c5": 7.0088232909210655, - "c6": 7.661055808771699, - "c7": 7.269817434521932 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.04022191400832, + "c3": 9.200184928340263, + "c4": 7.360147942672226, + "c5": 5.520110957004168, + "c6": 3.680073971336113, + "c7": 1.8400369856680565 }, "rgb": [77, 76, 132] }, @@ -440862,23 +440862,23 @@ "year": 1827, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": 5.483922489209753, - "c2": -40.31824669672382, - "c3": 31.43960410801303, - "c4": 4.843092197181768, - "c5": -7.24651107555912, - "c6": -20.371379058004756, - "c7": 19.923050816322657 + "points": { + "c1": -0.763689605798568, + "c2": 36.6394707602074, + "c3": -30.61485321079146, + "c4": -23.48046504459108, + "c5": 25.416107453101745, + "c6": -12.347886967386366, + "c7": 31.465159962789883 }, - "vertexSeeds": { - "c1": 7.637532277272871, - "c2": 7.887767893429319, - "c3": 7.568258271269826, - "c4": 7.742319546482497, - "c5": 7.59999831132426, - "c6": 7.241185537403195, - "c7": 7.496939042597716 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -440889,23 +440889,23 @@ "year": 1826, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -6.021522666928039, - "c2": 31.868997620260167, - "c3": 1.9609013567327551, - "c4": -16.42977957112163, - "c5": -8.01463795435431, - "c6": -36.25111161133614, - "c7": 19.882794974456182 + "points": { + "c1": -0.6664172633275527, + "c2": 21.024257349918493, + "c3": -34.10008401073309, + "c4": 27.681048878859094, + "c5": 7.948569482657405, + "c6": 36.834609400782746, + "c7": 12.85507579802222 }, - "vertexSeeds": { - "c1": 4.371672744153868, - "c2": 4.045887692991964, - "c3": 4.1944638454689285, - "c4": 4.223443199899951, - "c5": 4.34961290452486, - "c6": 4.229442415747103, - "c7": 4.079100698617344 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.4355062413314865, + "c3": 5.362921867776232, + "c4": 4.290337494220988, + "c5": 3.2177531206657433, + "c6": 2.1451687471104894, + "c7": 1.0725843735552447 }, "rgb": [58, 15, 49] }, @@ -440916,23 +440916,23 @@ "year": 1826, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 0.5539171592161765, - "c2": -2.7715525668103886, - "c3": -17.338692726244343, - "c4": -5.630277800617989, - "c5": 14.773750303075076, - "c6": -17.115775550703574, - "c7": 10.101794545933195 + "points": { + "c1": -1.5883583319076955, + "c2": -26.41111123765463, + "c3": -17.609048476888095, + "c4": 23.911324029751526, + "c5": -6.322298813424737, + "c6": 16.83496303071201, + "c7": 5.771579498122108 }, - "vertexSeeds": { - "c1": 7.343951869703577, - "c2": 7.8702596962440765, - "c3": 7.248201977325231, - "c4": 7.934308110124606, - "c5": 7.377162160995734, - "c6": 7.872572468291599, - "c7": 7.505341675493502 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [58, 15, 49] }, @@ -440943,23 +440943,23 @@ "year": 1826, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": 1.3042067353117304, - "c2": -15.373084787129203, - "c3": -1.1610525232729856, - "c4": 2.314532982130263, - "c5": -4.820167824691396, - "c6": -14.648031756139957, - "c7": 21.349600329730123 + "points": { + "c1": -3.6074729614297567, + "c2": -21.726996125065668, + "c3": 13.122351694692647, + "c4": -13.522771717329162, + "c5": 14.901381859904546, + "c6": 3.578904615003701, + "c7": 0.510494229968451 }, - "vertexSeeds": { - "c1": 5.609683205093778, - "c2": 5.908710025708357, - "c3": 5.785225412420309, - "c4": 5.74723857638088, - "c5": 5.388130821451094, - "c6": 5.605185298192833, - "c7": 5.934054685340695 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -440970,23 +440970,23 @@ "year": 1826, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -0.5142527340349616, - "c2": 1.9131004086042829, - "c3": 10.433033519484383, - "c4": 11.31733021614124, - "c5": -6.873875081633798, - "c6": 11.249248300374177, - "c7": 6.067033656048487 + "points": { + "c1": -16.198756603219834, + "c2": -17.48122932166456, + "c3": -11.838153279087624, + "c4": -18.114518801122347, + "c5": -20.623161284488887, + "c6": 4.233709050353362, + "c7": -13.400485970242851 }, - "vertexSeeds": { - "c1": 6.177074196792817, - "c2": 5.985707155877705, - "c3": 6.297320287813209, - "c4": 6.173820697215256, - "c5": 6.1054323847182115, - "c6": 5.976293770841745, - "c7": 5.945073004357552 + "offsets": { + "c1": 10.970873786407767, + "c2": 9.403606102635228, + "c3": 7.836338418862691, + "c4": 6.269070735090152, + "c5": 4.701803051317614, + "c6": 3.134535367545076, + "c7": 1.567267683772538 }, "rgb": [58, 15, 49] }, @@ -440997,23 +440997,23 @@ "year": 1826, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": -22.965915365021985, - "c2": -0.6304674434638784, - "c3": 18.578588787345947, - "c4": 11.606984278050152, - "c5": 18.432340152852422, - "c6": -27.07375674181898, - "c7": -14.744232583113591 + "points": { + "c1": -4.869280357805945, + "c2": 25.257082360499975, + "c3": 3.78157044421771, + "c4": 0.8815725419686835, + "c5": 14.670425231292608, + "c6": -10.945837084245895, + "c7": 18.14790284996729 }, - "vertexSeeds": { - "c1": 0.7803131819732299, - "c2": 0.7620387713326265, - "c3": 0.8001209607995506, - "c4": 0.7800781607660311, - "c5": 0.7945501555522452, - "c6": 0.7767432740177695, - "c7": 0.7633254032277271 + "offsets": { + "c1": 1.3915857605177993, + "c2": 1.1927877947295429, + "c3": 0.9939898289412841, + "c4": 0.7951918631530278, + "c5": 0.5963938973647714, + "c6": 0.3975959315765127, + "c7": 0.19879796578825634 }, "rgb": [77, 76, 132] }, @@ -441024,23 +441024,23 @@ "year": 1826, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 18.49088245088825, - "c2": 6.041817961022531, - "c3": -0.2805824029627466, - "c4": 0.18028983555339195, - "c5": -2.91146322960903, - "c6": -20.884637153701988, - "c7": -19.458103715879297 + "points": { + "c1": 20.246909653352844, + "c2": 12.955101089512304, + "c3": -19.989419849400832, + "c4": 22.488236132437017, + "c5": 8.513344250136129, + "c6": -1.3586954347280837, + "c7": -24.105214363996357 }, - "vertexSeeds": { - "c1": 8.275396009286043, - "c2": 8.547400062491873, - "c3": 8.27871052564394, - "c4": 8.545057091416295, - "c5": 8.461015507621397, - "c6": 8.457601649508824, - "c7": 8.431378698046226 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809987, + "c3": 10.402219140083202, + "c4": 8.321775312066569, + "c5": 6.241331484049935, + "c6": 4.160887656033268, + "c7": 2.080443828016634 }, "rgb": [77, 76, 132] }, @@ -441051,23 +441051,23 @@ "year": 1826, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": 18.363695724647883, - "c2": -27.011929070991044, - "c3": 10.865975320641901, - "c4": -31.057295829809757, - "c5": 11.797316997484295, - "c6": 23.36454246868336, - "c7": 8.67733551812315 + "points": { + "c1": 8.663407920901612, + "c2": -28.862498891772397, + "c3": -26.27083645292503, + "c4": 1.6252245583932279, + "c5": 19.237388168667287, + "c6": 28.213659276082893, + "c7": -5.309267649026001 }, - "vertexSeeds": { - "c1": 6.496325438198644, - "c2": 6.516373206859629, - "c3": 6.482908205396193, - "c4": 6.521185402754849, - "c5": 6.519753298108227, - "c6": 6.487518712352179, - "c7": 6.504414480066118 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.348127600554726, + "c3": 7.790106333795742, + "c4": 6.232085067036553, + "c5": 4.674063800277363, + "c6": 3.116042533518173, + "c7": 1.5580212667591897 }, "rgb": [77, 76, 132] }, @@ -441078,23 +441078,23 @@ "year": 1826, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 7.625188289207273, - "c2": 18.624749824365047, - "c3": -15.30098002368241, - "c4": 3.514180181816009, - "c5": 10.463271569836671, - "c6": 15.81358370853107, - "c7": -11.743322473298207 + "points": { + "c1": -7.7424852738055705, + "c2": 10.801406084177742, + "c3": -23.246705707365805, + "c4": 34.91333109796351, + "c5": -21.43858261595477, + "c6": 6.678714113140494, + "c7": -15.764276350389167 }, - "vertexSeeds": { - "c1": 9.792099197626506, - "c2": 9.764034532015167, - "c3": 9.88547727784137, - "c4": 9.690912340454704, - "c5": 9.70451313676493, - "c6": 10.040910703783881, - "c7": 10.254219744186148 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.674063800277416, + "c3": 12.22838650023115, + "c4": 9.782709200184943, + "c5": 7.337031900138679, + "c6": 4.8913546000924715, + "c7": 2.4456773000462357 }, "rgb": [58, 15, 49] }, @@ -441105,23 +441105,23 @@ "year": 1826, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -0.7988761742164066, - "c2": 25.13822619764199, - "c3": 5.306698519399276, - "c4": 30.440446162097984, - "c5": 19.888218691896284, - "c6": -31.74264921982886, - "c7": -6.241139156674823 + "points": { + "c1": 24.881047295241082, + "c2": 9.683046409453276, + "c3": -11.954688177613907, + "c4": 12.603309226323574, + "c5": -9.277386902173095, + "c6": 22.092320469124843, + "c7": 17.97232668429549 }, - "vertexSeeds": { - "c1": 0.443013355981491, - "c2": 0.4391318116527567, - "c3": 0.4298827931332555, - "c4": 0.43924459162217516, - "c5": 0.4287198014033893, - "c6": 0.4416075808880062, - "c7": 0.43197143317683323 + "offsets": { + "c1": 0.7766990291262136, + "c2": 0.6657420249653263, + "c3": 0.554785020804439, + "c4": 0.44382801664354904, + "c5": 0.33287101248266177, + "c6": 0.22191400832177452, + "c7": 0.11095700416088726 }, "rgb": [77, 76, 132] }, @@ -441132,23 +441132,23 @@ "year": 1826, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": 25.301959845527257, - "c2": -8.851914705209403, - "c3": 17.153760788964682, - "c4": 28.755666720779544, - "c5": -17.81478083575997, - "c6": 25.44595277308464, - "c7": 5.469123831870945 + "points": { + "c1": 22.196150782378233, + "c2": -24.2572796022168, + "c3": 27.750240277386517, + "c4": 17.273969102487435, + "c5": 19.953257949263225, + "c6": 20.740197440624648, + "c7": 32.76205117664336 }, - "vertexSeeds": { - "c1": 4.33262493537813, - "c2": 4.290530648701078, - "c3": 4.278473687393238, - "c4": 4.313772123023254, - "c5": 4.31644894241352, - "c6": 4.261683087683183, - "c7": 4.2636751644857185 + "offsets": { + "c1": 7.249190938511327, + "c2": 6.213592233009686, + "c3": 5.177993527508098, + "c4": 4.142394822006458, + "c5": 3.106796116504869, + "c6": 2.071197411003229, + "c7": 1.0355987055015887 }, "rgb": [222, 0, 59] }, @@ -441159,23 +441159,23 @@ "year": 1827, "resistanceReported": false, "duration": 28080000, - "curveSeeds": { - "c1": 9.271539908795546, - "c2": 19.324930232558465, - "c3": -34.9909243257142, - "c4": 16.523979623895947, - "c5": 6.421165764632164, - "c6": -27.596995541228015, - "c7": 36.9169625812018 + "points": { + "c1": -22.368887075058314, + "c2": -13.987233717110886, + "c3": -29.169222013267735, + "c4": 3.7695715923834996, + "c5": -36.327524935447876, + "c6": 21.916053029432547, + "c7": 36.27407957856636 }, - "vertexSeeds": { - "c1": 7.422279792746114, - "c2": 7.422279792746114, - "c3": 7.422279792746114, - "c4": 7.422279792746114, - "c5": 7.422279792746114, - "c6": 7.422279792746114, - "c7": 7.422279792746114 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -441186,23 +441186,23 @@ "year": 1826, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -19.78603199682582, - "c2": -2.5407207161939986, - "c3": 11.377923021239305, - "c4": -17.29892574958156, - "c5": -20.45554588286016, - "c6": 16.546622188125866, - "c7": -16.594409376149258 + "points": { + "c1": -19.116821652851332, + "c2": 0.18219856379991484, + "c3": 17.97135064043095, + "c4": -20.63192620455803, + "c5": 22.806313329381688, + "c6": -15.932804315488601, + "c7": 0.7259020894348183 }, - "vertexSeeds": { - "c1": 9.056046483644133, - "c2": 8.817874189949794, - "c3": 9.194875272784232, - "c4": 8.905913957104218, - "c5": 8.84873620112645, - "c6": 8.938300841137877, - "c7": 9.16355282100791 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145615, + "c3": 11.003236245954698, + "c4": 8.802588996763744, + "c5": 6.601941747572828, + "c6": 4.401294498381872, + "c7": 2.200647249190916 }, "rgb": [222, 0, 59] }, @@ -441213,23 +441213,23 @@ "year": 1826, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -13.999824811663734, - "c2": 19.45454360249336, - "c3": -15.278856609649669, - "c4": 4.421756050809698, - "c5": -7.091620188450051, - "c6": -14.693170620268926, - "c7": 8.893054476758948 + "points": { + "c1": 12.528659104761992, + "c2": 6.332620044089467, + "c3": -12.808375846790094, + "c4": -2.182475561621054, + "c5": 10.38424196681872, + "c6": 25.937036784131422, + "c7": -5.660649690334111 }, - "vertexSeeds": { - "c1": 4.683476005186885, - "c2": 4.7265174883508125, - "c3": 4.68927608933231, - "c4": 4.716723220444086, - "c5": 4.715590062268076, - "c6": 4.712866719644293, - "c7": 4.730302310004395 + "offsets": { + "c1": 7.9288025889967635, + "c2": 6.7961165048544006, + "c3": 5.663430420711964, + "c4": 4.530744336569601, + "c5": 3.398058252427163, + "c6": 2.2653721682848005, + "c7": 1.1326860841423625 }, "rgb": [86, 146, 138] }, @@ -441240,23 +441240,23 @@ "year": 1827, "resistanceReported": false, "duration": 26956800, - "curveSeeds": { - "c1": -3.5779812866407283, - "c2": -10.847582479627903, - "c3": -0.930075187808221, - "c4": 26.145014685691052, - "c5": 36.325593513965345, - "c6": 25.074850534885044, - "c7": 31.791504459360837 + "points": { + "c1": 1.8233754048568898, + "c2": 33.282098785426754, + "c3": 21.604044826290384, + "c4": -15.501432822451466, + "c5": 19.26900111906876, + "c6": -9.502329022584792, + "c7": 16.306167812094202 }, - "vertexSeeds": { - "c1": 2.229705480317452, - "c2": 2.2950509953552394, - "c3": 2.30643449379634, - "c4": 1.9727689296763224, - "c5": 1.9873396575447553, - "c6": 2.0317751646648006, - "c7": 2.181893894728677 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070747, + "c3": 2.820157189089228, + "c4": 2.2561257512713833, + "c5": 1.692094313453536, + "c6": 1.1280628756356916, + "c7": 0.5640314378178444 }, "rgb": [222, 0, 59] }, @@ -441267,23 +441267,23 @@ "year": 1826, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -9.80507726573645, - "c2": -14.584355305480297, - "c3": 7.129021054002635, - "c4": -25.59664664976203, - "c5": -27.63322298737142, - "c6": 12.193012271948795, - "c7": -31.950413851712607 + "points": { + "c1": 6.08658575223356, + "c2": 10.57161017807912, + "c3": -28.377733014249436, + "c4": -26.37218885012815, + "c5": 15.215137214852106, + "c6": 11.41023729212494, + "c7": -28.88342736380689 }, - "vertexSeeds": { - "c1": 9.987046632124352, - "c2": 9.987046632124352, - "c3": 9.987046632124352, - "c4": 9.987046632124352, - "c5": 9.987046632124352, - "c6": 9.987046632124352, - "c7": 9.987046632124352 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -441294,23 +441294,23 @@ "year": 1826, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -4.963253730731303, - "c2": 6.113307172894057, - "c3": -3.2004447889004446, - "c4": 13.053664045449594, - "c5": 1.7866261177095701, - "c6": 16.154386940108033, - "c7": 21.280226123870484 + "points": { + "c1": -13.564619054795308, + "c2": -18.80905887713945, + "c3": -12.087561729773755, + "c4": 20.982230248230813, + "c5": -5.569422594632169, + "c6": 16.60995670529301, + "c7": 13.936247288492758 }, - "vertexSeeds": { - "c1": 11.310324560313099, - "c2": 11.272711903163984, - "c3": 11.330639560102375, - "c4": 11.338422016925882, - "c5": 11.309958085565848, - "c6": 11.169277943395134, - "c7": 11.318045278593578 + "offsets": { + "c1": 18.996763754045308, + "c2": 16.282940360610304, + "c3": 13.569116967175159, + "c4": 10.855293573740155, + "c5": 8.141470180305152, + "c6": 5.427646786870005, + "c7": 2.7138233934350025 }, "rgb": [77, 76, 132] }, @@ -441321,23 +441321,23 @@ "year": 1826, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -17.51453680073235, - "c2": 21.52892744011736, - "c3": -14.587004598397282, - "c4": -7.932562883731816, - "c5": 30.47951727505985, - "c6": -18.98483258160728, - "c7": 19.569095769082114 + "points": { + "c1": 13.838223578678928, + "c2": 1.453798236490556, + "c3": 30.315410927397032, + "c4": -32.482914256970716, + "c5": 4.301549393984359, + "c6": -13.50193638615345, + "c7": -14.539924378576575 }, - "vertexSeeds": { - "c1": 5.349592806863989, - "c2": 5.413033686773376, - "c3": 5.360621951047548, - "c4": 5.37021545714899, - "c5": 5.262265348605839, - "c6": 5.3721180972532245, - "c7": 5.281846170686487 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -441348,23 +441348,23 @@ "year": 1827, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 5.406154202526288, - "c2": -20.841326257617066, - "c3": 28.34990741483388, - "c4": -31.639556728045825, - "c5": 15.736484272358659, - "c6": -6.003519149235633, - "c7": -5.206093242857165 + "points": { + "c1": 8.851609796715678, + "c2": 19.28477354509171, + "c3": 3.408851640140476, + "c4": 19.22260676031982, + "c5": 24.571940610275263, + "c6": -29.321909201342095, + "c7": 22.7234655544612 }, - "vertexSeeds": { - "c1": 7.286269430051814, - "c2": 7.286269430051814, - "c3": 7.286269430051814, - "c4": 7.286269430051814, - "c5": 7.286269430051814, - "c6": 7.286269430051814, - "c7": 7.286269430051814 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -441375,23 +441375,23 @@ "year": 1827, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": -19.892521905509728, - "c2": -4.035139169387634, - "c3": 14.099243172034633, - "c4": 2.3177141576447653, - "c5": 33.409234681146344, - "c6": -34.84830554413978, - "c7": 2.750890045484063 + "points": { + "c1": -10.486886638629326, + "c2": 32.05158412127203, + "c3": 28.561864627026083, + "c4": 26.807107047491215, + "c5": 28.162013080465655, + "c6": 19.564527843432245, + "c7": -2.708812595836669 }, - "vertexSeeds": { - "c1": 10.308446804724985, - "c2": 9.941947617518675, - "c3": 9.85158594461826, - "c4": 9.89669890786301, - "c5": 9.612440850016837, - "c6": 9.896895050229643, - "c7": 10.399378500362976 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599161, + "c3": 12.413314840499293, + "c4": 9.93065187239947, + "c5": 7.447988904299581, + "c6": 4.965325936199735, + "c7": 2.4826629680998673 }, "rgb": [58, 15, 49] }, @@ -441402,23 +441402,23 @@ "year": 1826, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 11.098117889506945, - "c2": 17.01910625696722, - "c3": 13.199500714134075, - "c4": 1.2012820077603372, - "c5": -25.528112931321093, - "c6": 9.846235046599581, - "c7": 19.378502701579755 + "points": { + "c1": -16.375545170900512, + "c2": -4.8024042056711735, + "c3": -14.726921985417494, + "c4": 18.322029261565547, + "c5": 12.605718900512649, + "c6": -18.615221405708915, + "c7": 0.04001030244149817 }, - "vertexSeeds": { - "c1": 7.409511581862848, - "c2": 7.628137904416947, - "c3": 7.737962952622294, - "c4": 7.272329273855057, - "c5": 7.903830311162967, - "c6": 7.7584569413499, - "c7": 7.337038409519246 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.456310679611654, + "c3": 9.546925566343033, + "c4": 7.63754045307443, + "c5": 5.728155339805827, + "c6": 3.818770226537205, + "c7": 1.9093851132686026 }, "rgb": [86, 146, 138] }, @@ -441429,23 +441429,23 @@ "year": 1826, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -12.682497418169776, - "c2": 11.233108249106767, - "c3": -19.368781709679883, - "c4": -21.643644366173564, - "c5": 0.8031089936645728, - "c6": 3.857187369858817, - "c7": -20.18342813761419 + "points": { + "c1": 12.976619864201783, + "c2": 24.353172986945655, + "c3": -5.773861506299614, + "c4": 1.5470335555963217, + "c5": 6.506394005851746, + "c6": -4.539792808586757, + "c7": -10.872581645568044 }, - "vertexSeeds": { - "c1": 6.10458017850509, - "c2": 6.043436904036404, - "c3": 6.033572916602613, - "c4": 6.095119330785224, - "c5": 6.091055320998147, - "c6": 6.0642139470733785, - "c7": 6.066422124255839 + "offsets": { + "c1": 10.323624595469255, + "c2": 8.848821081830758, + "c3": 7.374017568192335, + "c4": 5.899214054553839, + "c5": 4.4244105409154155, + "c6": 2.9496070272769197, + "c7": 1.4748035136384965 }, "rgb": [77, 76, 132] }, @@ -441456,23 +441456,23 @@ "year": 1826, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 4.739350604480769, - "c2": -9.760864181101834, - "c3": -21.71087850721403, - "c4": -28.88196068027211, - "c5": 16.25530598035708, - "c6": -14.64569430521259, - "c7": 1.4447111878821275 + "points": { + "c1": 6.278140770608701, + "c2": -24.632186209371227, + "c3": -24.446719834933056, + "c4": -33.85050340899735, + "c5": 30.9510306341124, + "c6": 20.804194110400587, + "c7": -23.689729838014305 }, - "vertexSeeds": { - "c1": 12.533781067909453, - "c2": 12.247243189328655, - "c3": 12.67176099396647, - "c4": 12.578905999432482, - "c5": 12.664349096967909, - "c6": 12.876558551106148, - "c7": 12.445009184261973 + "offsets": { + "c1": 21.521035598705502, + "c2": 18.446601941747566, + "c3": 15.372168284789625, + "c4": 12.297734627831753, + "c5": 9.223300970873815, + "c6": 6.1488673139158765, + "c7": 3.0744336569579382 }, "rgb": [222, 0, 59] }, @@ -441483,23 +441483,23 @@ "year": 1826, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -4.860820597382826, - "c2": 11.827921702413128, - "c3": -10.973503555981571, - "c4": -23.17640048508138, - "c5": 16.123383456366724, - "c6": 8.538084636874196, - "c7": -15.778285970546913 + "points": { + "c1": -2.5618969313168805, + "c2": 5.675353358749113, + "c3": -16.041603071581825, + "c4": -15.094560837387172, + "c5": 1.489244549105166, + "c6": 11.878186451444456, + "c7": 8.043251993898082 }, - "vertexSeeds": { - "c1": 6.6734723079594716, - "c2": 6.694457177268214, - "c3": 6.711382539892629, - "c4": 6.7069862423154145, - "c5": 6.680615186622998, - "c6": 6.6569893094632056, - "c7": 6.66931216997854 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.62552011095705, + "c3": 8.021266759130768, + "c4": 6.417013407304647, + "c5": 4.812760055478525, + "c6": 3.2085067036524033, + "c7": 1.6042533518261217 }, "rgb": [58, 15, 49] }, @@ -441510,23 +441510,23 @@ "year": 1826, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -13.245463455745199, - "c2": -9.389593102699742, - "c3": 25.96344693770732, - "c4": 22.902212005463962, - "c5": 3.728503995447827, - "c6": -19.793385647954757, - "c7": -27.781497437520585 + "points": { + "c1": -28.21355377272574, + "c2": -14.666401475604442, + "c3": -5.240864946956535, + "c4": 18.489750031510866, + "c5": -2.351119096757831, + "c6": 26.901873191431918, + "c7": -5.739897218999463 }, - "vertexSeeds": { - "c1": 11.365583520217239, - "c2": 11.430667736702942, - "c3": 11.462882684512495, - "c4": 11.441013786973393, - "c5": 11.313615478535809, - "c6": 11.322100979724455, - "c7": 11.434976674264403 + "offsets": { + "c1": 19.12621359223301, + "c2": 16.39389736477123, + "c3": 13.661581137309177, + "c4": 10.929264909847396, + "c5": 8.196948682385615, + "c6": 5.464632454923834, + "c7": 2.732316227461781 }, "rgb": [58, 15, 49] }, @@ -441537,23 +441537,23 @@ "year": 1827, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -22.229036144018586, - "c2": -19.740264901808935, - "c3": 10.402028070745708, - "c4": 9.486261243174134, - "c5": 33.139297936816334, - "c6": -2.846647151043296, - "c7": 17.988480544431788 + "points": { + "c1": 29.05388106830739, + "c2": 27.82200396314863, + "c3": -24.509542438153744, + "c4": 35.3583634675893, + "c5": 30.37596143481818, + "c6": 24.058305813669676, + "c7": -32.89240806834235 }, - "vertexSeeds": { - "c1": 8.95116698222541, - "c2": 9.041899875606687, - "c3": 8.980110450196143, - "c4": 9.057964194508944, - "c5": 9.058419986753773, - "c6": 9.067640125532023, - "c7": 9.115427343525454 + "offsets": { + "c1": 15.242718446601941, + "c2": 13.065187239944496, + "c3": 10.887656033287053, + "c4": 8.710124826629693, + "c5": 6.532593619972248, + "c6": 4.355062413314803, + "c7": 2.1775312066573584 }, "rgb": [77, 76, 132] }, @@ -441564,23 +441564,23 @@ "year": 1826, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -20.974008071954874, - "c2": 24.73305070546871, - "c3": 25.10076976574634, - "c4": 20.177803575318823, - "c5": 16.470358280366643, - "c6": -26.075916293017155, - "c7": 29.1260676116538 + "points": { + "c1": -0.3870607940439079, + "c2": -4.507622942487245, + "c3": 5.156651501187799, + "c4": -15.979178389223645, + "c5": -30.052044834154717, + "c6": -16.456989330230755, + "c7": 7.667552198402515 }, - "vertexSeeds": { - "c1": 10.08419689119171, - "c2": 10.08419689119171, - "c3": 10.08419689119171, - "c4": 10.08419689119171, - "c5": 10.08419689119171, - "c6": 10.08419689119171, - "c7": 10.08419689119171 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -441591,23 +441591,23 @@ "year": 1827, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 20.99359084152617, - "c2": -11.049455727495015, - "c3": -17.722994245165278, - "c4": 20.7768389796831, - "c5": -25.243259808052784, - "c6": -1.7454975380940496, - "c7": -12.446935312769416 + "points": { + "c1": 32.368396930109675, + "c2": -14.341354675512761, + "c3": -19.680408072811158, + "c4": 23.066141677217303, + "c5": 18.77517812804603, + "c6": 17.838444297872748, + "c7": -27.477421029721306 }, - "vertexSeeds": { - "c1": 11.061356697724849, - "c2": 11.331794792314543, - "c3": 11.314533891403316, - "c4": 11.399205502715303, - "c5": 11.337948774738702, - "c6": 11.289979161871141, - "c7": 11.444157090510988 + "offsets": { + "c1": 19.093851132686083, + "c2": 16.36615811373094, + "c3": 13.638465094775793, + "c4": 10.910772075820649, + "c5": 8.183079056865504, + "c6": 5.45538603791029, + "c7": 2.727693018955145 }, "rgb": [222, 0, 59] }, @@ -441618,23 +441618,23 @@ "year": 1827, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": -33.74608113452164, - "c2": -29.909483907831685, - "c3": -19.384639465880355, - "c4": 5.936210741282878, - "c5": 26.683709850125453, - "c6": -23.620185931522396, - "c7": 24.574350051023387 + "points": { + "c1": 17.021850044876935, + "c2": 5.069161272361995, + "c3": -31.986405639957628, + "c4": 15.408982916827718, + "c5": 12.24033402416137, + "c6": -2.3497580924900774, + "c7": 15.521294367080671 }, - "vertexSeeds": { - "c1": 8.49454557210853, - "c2": 8.448327042008094, - "c3": 8.078210601737988, - "c4": 8.26239640451842, - "c5": 8.282188012477674, - "c6": 8.4798386610338, - "c7": 8.069121537418225 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898746, + "c3": 10.286638927415616, + "c4": 8.229311141932504, + "c5": 6.171983356449373, + "c6": 4.114655570966243, + "c7": 2.0573277854831304 }, "rgb": [86, 146, 138] }, @@ -441645,23 +441645,23 @@ "year": 1827, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 3.5907859562794613, - "c2": 12.714469425064898, - "c3": 17.62646020481663, - "c4": 0.09452511983407419, - "c5": 0.8694987575536999, - "c6": 28.681195807857954, - "c7": 37.356873513052896 + "points": { + "c1": -0.06536603702544852, + "c2": -13.460805081783409, + "c3": 3.5577525315906726, + "c4": 0.26451507691072607, + "c5": 11.615112479348383, + "c6": -29.506111606700117, + "c7": 2.8306257954017298 }, - "vertexSeeds": { - "c1": 14.545672186602983, - "c2": 13.671247550621732, - "c3": 14.065776773700879, - "c4": 14.442197393140106, - "c5": 14.265076387989263, - "c6": 14.817813330455664, - "c7": 14.109529655018557 + "offsets": { + "c1": 24.919093851132686, + "c2": 21.35922330097087, + "c3": 17.79935275080905, + "c4": 14.239482200647235, + "c5": 10.679611650485418, + "c6": 7.119741100323634, + "c7": 3.559870550161817 }, "rgb": [77, 76, 132] }, @@ -441672,23 +441672,23 @@ "year": 1826, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": -11.139095191907987, - "c2": -12.491581324900299, - "c3": 0.8941879867152664, - "c4": -4.881309776179409, - "c5": -2.447366837682452, - "c6": 4.256563220710966, - "c7": -17.586710664894216 + "points": { + "c1": 18.004215829506144, + "c2": -12.989480888581337, + "c3": 11.998597760859163, + "c4": -8.958090689851346, + "c5": -9.620072705920542, + "c6": 16.039332731256664, + "c7": -4.308902377381045 }, - "vertexSeeds": { - "c1": 11.57299150778235, - "c2": 11.377273836618528, - "c3": 11.46228038427961, - "c4": 11.647275124354048, - "c5": 11.612575499138705, - "c6": 11.74229207549812, - "c7": 11.577285204344365 + "offsets": { + "c1": 19.676375404530745, + "c2": 16.865464632454948, + "c3": 14.054553860379071, + "c4": 11.243643088303271, + "c5": 8.432732316227474, + "c6": 5.621821544151675, + "c7": 2.8109107720757986 }, "rgb": [238, 201, 159] }, @@ -441699,23 +441699,23 @@ "year": 1826, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -15.086713437984487, - "c2": -5.680984772820558, - "c3": -17.39444633104838, - "c4": -25.410939596849502, - "c5": -1.3248968447016338, - "c6": -22.738013823485545, - "c7": -10.329656581945684 + "points": { + "c1": 3.4893170390108104, + "c2": -25.122720822249402, + "c3": 14.480358090032095, + "c4": -8.580678539626188, + "c5": -0.3718950916147641, + "c6": -14.419464492341172, + "c7": -15.335501794993464 }, - "vertexSeeds": { - "c1": 11.82190942409699, - "c2": 11.743876209071491, - "c3": 12.284758462970874, - "c4": 11.405208599934126, - "c5": 11.47354772186088, - "c6": 11.835670475092444, - "c7": 11.661042654089696 + "offsets": { + "c1": 20.51779935275081, + "c2": 17.58668515950068, + "c3": 14.655570966250583, + "c4": 11.724456773000453, + "c5": 8.793342579750359, + "c6": 5.8622283865002265, + "c7": 2.931114193250095 }, "rgb": [77, 76, 132] }, @@ -441726,23 +441726,23 @@ "year": 1826, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": 5.965701163466072, - "c2": -20.771633672832564, - "c3": 0.9418899132551282, - "c4": -18.980341074417563, - "c5": 7.970793639904212, - "c6": 18.213259880403392, - "c7": 5.694810678500065 + "points": { + "c1": 15.207401008468771, + "c2": -12.269320272021137, + "c3": 14.977589159640367, + "c4": 7.114806520612284, + "c5": 16.566174665530973, + "c6": -8.537970228685644, + "c7": 1.4263657609222022 }, - "vertexSeeds": { - "c1": 5.7616708959099885, - "c2": 5.755783500651157, - "c3": 5.787957333796134, - "c4": 5.772026660186114, - "c5": 5.767363293178664, - "c6": 5.784879003640518, - "c7": 5.776700581650526 + "offsets": { + "c1": 9.676375404530745, + "c2": 8.294036061026393, + "c3": 6.911696717522039, + "c4": 5.529357374017686, + "c5": 4.147018030513059, + "c6": 2.764678687008706, + "c7": 1.382339343504353 }, "rgb": [238, 201, 159] }, @@ -441753,23 +441753,23 @@ "year": 1827, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -27.731934876562036, - "c2": -24.10673016265764, - "c3": -29.122399979832178, - "c4": -8.417548903546479, - "c5": 21.247949493649415, - "c6": -28.05956226724207, - "c7": -23.65016923562601 + "points": { + "c1": -12.242156308940693, + "c2": -14.902933851962086, + "c3": 12.01665105569311, + "c4": -8.598874004423806, + "c5": 16.145227205006123, + "c6": 18.159861594054206, + "c7": 25.224808389961154 }, - "vertexSeeds": { - "c1": 9.520725388601036, - "c2": 9.520725388601036, - "c3": 9.520725388601036, - "c4": 9.520725388601036, - "c5": 9.520725388601036, - "c6": 9.520725388601036, - "c7": 9.520725388601036 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -441780,23 +441780,23 @@ "year": 1827, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -10.029110409739978, - "c2": 1.6689448034545151, - "c3": 2.7718584087626468, - "c4": -19.65139547161806, - "c5": -15.515568899296682, - "c6": 9.430158965153147, - "c7": 4.259090283517409 + "points": { + "c1": -4.845182377825289, + "c2": -35.888513670315376, + "c3": -10.373757208303918, + "c4": -28.556825692452108, + "c5": 38.66693512386095, + "c6": 32.91273199378789, + "c7": 23.666884721666435 }, - "vertexSeeds": { - "c1": 12.155650272029899, - "c2": 12.251657256718437, - "c3": 11.532781598914402, - "c4": 12.607364347738798, - "c5": 11.62938069691096, - "c6": 12.616364395256205, - "c7": 12.402664900512006 + "offsets": { + "c1": 21.74757281553398, + "c2": 18.640776699029125, + "c3": 15.533980582524263, + "c4": 12.427184466019437, + "c5": 9.320388349514577, + "c6": 6.213592233009718, + "c7": 3.106796116504859 }, "rgb": [222, 0, 59] }, @@ -441807,23 +441807,23 @@ "year": 1827, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -29.514197284791955, - "c2": 35.935537281358734, - "c3": 31.314110693740446, - "c4": 35.0564561076926, - "c5": 3.1861008133331765, - "c6": -25.703143217585968, - "c7": 16.05921599088267 + "points": { + "c1": 13.04209493085164, + "c2": -6.465534416183395, + "c3": 23.459878887944768, + "c4": 3.3727251585106686, + "c5": -19.048210351126517, + "c6": -29.355534142059405, + "c7": 24.946396757281548 }, - "vertexSeeds": { - "c1": 4.203890650506343, - "c2": 3.8371366253814116, - "c3": 4.271429385653243, - "c4": 4.219655925271524, - "c5": 4.375561650691437, - "c6": 4.456934444276135, - "c7": 4.2851736509329745 + "offsets": { + "c1": 7.508090614886731, + "c2": 6.435506241331483, + "c3": 5.362921867776235, + "c4": 4.290337494220993, + "c5": 3.2177531206657446, + "c6": 2.1451687471104965, + "c7": 1.0725843735552483 }, "rgb": [77, 76, 132] }, @@ -441834,23 +441834,23 @@ "year": 1827, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -33.44423337969127, - "c2": 20.12480855963345, - "c3": 13.314050804281116, - "c4": -19.242409135485588, - "c5": -9.01599522448371, - "c6": 32.46015306047684, - "c7": 21.158068951730456 + "points": { + "c1": 29.26250789880116, + "c2": -7.5931632138767, + "c3": 36.336235205941435, + "c4": 24.112502577358086, + "c5": -12.000313172042823, + "c6": 24.724644095920603, + "c7": 36.280716556732855 }, - "vertexSeeds": { - "c1": 8.244988514192048, - "c2": 8.339700948803161, - "c3": 8.025928229814843, - "c4": 8.028596994950458, - "c5": 8.048155058465882, - "c6": 8.150723137494488, - "c7": 8.14554654714901 + "offsets": { + "c1": 13.94822006472492, + "c2": 11.955617198335645, + "c3": 9.963014331946372, + "c4": 7.970411465557096, + "c5": 5.9778085991678225, + "c6": 3.985205732778548, + "c7": 1.992602866389274 }, "rgb": [77, 76, 132] }, @@ -441861,23 +441861,23 @@ "year": 1827, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -2.0334521303804145, - "c2": 18.81153609061274, - "c3": 10.055312280688014, - "c4": 6.691552354559789, - "c5": 5.614512821222576, - "c6": 19.64430474984229, - "c7": 30.18524116638104 + "points": { + "c1": -23.228381901735418, + "c2": -25.54599463838639, + "c3": -15.066582814373621, + "c4": -12.241376727966536, + "c5": -15.036491662081307, + "c6": 23.77639052708445, + "c7": -7.56999364244113 }, - "vertexSeeds": { - "c1": 12.009528055211497, - "c2": 11.961015705111798, - "c3": 11.98490498516173, - "c4": 11.998347564746076, - "c5": 12.020764828803442, - "c6": 11.956222191305274, - "c7": 11.992654160268419 + "offsets": { + "c1": 20.097087378640776, + "c2": 17.226074895978, + "c3": 14.355062413314775, + "c4": 11.484049930652002, + "c5": 8.613037447988773, + "c6": 5.742024965326001, + "c7": 2.871012482662772 }, "rgb": [86, 146, 138] }, @@ -441888,23 +441888,23 @@ "year": 1827, "resistanceReported": false, "duration": 32140800, - "curveSeeds": { - "c1": 37.26475394073997, - "c2": 10.133665828705816, - "c3": -5.885620229003528, - "c4": 10.14636010922053, - "c5": 29.970412587716744, - "c6": -23.26751438274967, - "c7": -15.118273961804508 + "points": { + "c1": -39.619817977537785, + "c2": 43.1062496525301, + "c3": -40.91614927161541, + "c4": 43.716157086410114, + "c5": -20.172753375544342, + "c6": 43.71259303362806, + "c7": 37.34955689378635 }, - "vertexSeeds": { - "c1": 6.062574764361978, - "c2": 5.820704289945834, - "c3": 6.033608684136472, - "c4": 5.718021712083048, - "c5": 5.790859410130857, - "c6": 5.85989384353171, - "c7": 5.848097279404545 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.710124826629677, + "c3": 7.258437355524725, + "c4": 5.806749884419775, + "c5": 4.355062413314854, + "c6": 2.9033749422099024, + "c7": 1.4516874711049512 }, "rgb": [86, 146, 138] }, @@ -441915,23 +441915,23 @@ "year": 1827, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -14.765964898301975, - "c2": -19.12895548607022, - "c3": 14.84251576854523, - "c4": -14.774132402916031, - "c5": -4.79412210906543, - "c6": 23.30945965697573, - "c7": 3.5248776754845146 + "points": { + "c1": 14.998125094214288, + "c2": 25.664480543681776, + "c3": -15.109221964488391, + "c4": 18.59291497837654, + "c5": 25.43783112880658, + "c6": -2.3379833405973045, + "c7": -13.139100590046858 }, - "vertexSeeds": { - "c1": 8.670282777468756, - "c2": 8.6520261354342, - "c3": 8.660076893147835, - "c4": 8.657773910121271, - "c5": 8.67619454628752, - "c6": 8.668241839595881, - "c7": 8.666923108608712 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019476, + "c3": 10.3559870550163, + "c4": 8.284789644013122, + "c5": 6.213592233009532, + "c6": 4.142394822006355, + "c7": 2.0711974110031774 }, "rgb": [77, 76, 132] }, @@ -441942,23 +441942,23 @@ "year": 1827, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 30.940185224325262, - "c2": -5.483629990809881, - "c3": 39.060564405534834, - "c4": -35.56650010171026, - "c5": 20.77973263190205, - "c6": 11.1455893395771, - "c7": -18.851259448328655 + "points": { + "c1": 20.644550170086916, + "c2": -12.259712617954516, + "c3": -10.41146104122901, + "c4": 30.995715795066815, + "c5": -9.08789450370255, + "c6": 40.255759773791794, + "c7": -37.9748747538724 }, - "vertexSeeds": { - "c1": 10.827614157037985, - "c2": 11.132783383046117, - "c3": 11.829079211798367, - "c4": 12.178493486604964, - "c5": 10.586227290417787, - "c6": 11.926855501719967, - "c7": 12.156253241888315 + "offsets": { + "c1": 21.16504854368932, + "c2": 18.14147018030513, + "c3": 15.117891816920944, + "c4": 12.094313453536753, + "c5": 9.070735090152565, + "c6": 6.047156726768376, + "c7": 3.023578363384188 }, "rgb": [222, 0, 59] }, @@ -441969,23 +441969,23 @@ "year": 1827, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 16.020624282389942, - "c2": 1.350263492255916, - "c3": 17.530046555987564, - "c4": -2.44775684490768, - "c5": -9.309599878999936, - "c6": 21.027700548646475, - "c7": -5.021014079453302 + "points": { + "c1": -27.435069010148375, + "c2": 16.228421501379415, + "c3": 22.46224646217405, + "c4": -18.793039423933266, + "c5": 8.795690538651833, + "c6": -15.538609323848874, + "c7": -32.73859919989161 }, - "vertexSeeds": { - "c1": 6.044010400310681, - "c2": 6.909782667775761, - "c3": 7.667145668056632, - "c4": 7.595605764861645, - "c5": 7.530486182034938, - "c6": 8.607488664519785, - "c7": 5.142987094634488 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858528, + "c3": 10.263522884882105, + "c4": 8.210818307905685, + "c5": 6.158113730929263, + "c6": 4.105409153952846, + "c7": 2.05270457697642 }, "rgb": [58, 15, 49] }, @@ -441996,23 +441996,23 @@ "year": 1826, "resistanceReported": false, "duration": 6912000, - "curveSeeds": { - "c1": 1.3877001201049595, - "c2": 1.6570285431652358, - "c3": 1.3500016322545498, - "c4": 11.696991598123613, - "c5": 12.351228639941276, - "c6": 7.45727977842893, - "c7": -15.873542130004768 + "points": { + "c1": -6.797953378722594, + "c2": -5.3333215865446775, + "c3": -17.333083400224645, + "c4": 12.1764853977914, + "c5": 12.852131590975034, + "c6": -11.302446658899548, + "c7": 7.641881478498501 }, - "vertexSeeds": { - "c1": 10.26962393570663, - "c2": 10.440364212085061, - "c3": 10.700868026809276, - "c4": 10.343794417694536, - "c5": 10.332569342328577, - "c6": 10.598312741152942, - "c7": 10.28347863877422 + "offsets": { + "c1": 18.09061488673139, + "c2": 15.506241331484048, + "c3": 12.921867776236708, + "c4": 10.337494220989365, + "c5": 7.753120665742024, + "c6": 5.1687471104946825, + "c7": 2.5843735552473412 }, "rgb": [58, 15, 49] }, @@ -442023,23 +442023,23 @@ "year": 1827, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 23.583613424621397, - "c2": 11.651416832990442, - "c3": 11.057569009820611, - "c4": 22.547648342328642, - "c5": 12.639846506678154, - "c6": 10.535677516072454, - "c7": 16.713985548139924 + "points": { + "c1": 4.4647469690939765, + "c2": 1.8017144954835338, + "c3": -3.5945930729853295, + "c4": 9.674915281478349, + "c5": 11.748592511157824, + "c6": -13.228972586888384, + "c7": 4.681898883969723 }, - "vertexSeeds": { - "c1": 5.491848428336509, - "c2": 5.448726001740933, - "c3": 5.4916470610928885, - "c4": 5.474443708666697, - "c5": 5.402093254655294, - "c6": 5.252147660553372, - "c7": 5.465284057481993 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -442050,23 +442050,23 @@ "year": 1827, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -19.61714936090352, - "c2": -32.0255776505053, - "c3": -16.814335480677514, - "c4": -24.789191587506604, - "c5": 27.37680849677958, - "c6": -3.513937201349819, - "c7": 14.993957001743269 + "points": { + "c1": -5.0880973996176095, + "c2": -21.322631051037085, + "c3": -28.214755518030046, + "c4": 8.086301457280683, + "c5": -28.665899679702157, + "c6": 29.724510079807303, + "c7": -7.840308366623887 }, - "vertexSeeds": { - "c1": 6.469819590777298, - "c2": 6.266354933169629, - "c3": 5.910727376860944, - "c4": 6.085979996132051, - "c5": 6.359824518609759, - "c6": 6.001516832879811, - "c7": 6.162038141768066 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795649, + "c4": 6.2320850670365155, + "c5": 4.674063800277399, + "c6": 3.1160425335182667, + "c7": 1.5580212667591333 }, "rgb": [238, 201, 159] }, @@ -442077,23 +442077,23 @@ "year": 1827, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -31.06823005555105, - "c2": 15.321512838063256, - "c3": 18.036994865377544, - "c4": -10.66292213455575, - "c5": 30.63730520740546, - "c6": -9.980245806122767, - "c7": 5.515326912253762 + "points": { + "c1": -0.12683176101202775, + "c2": 2.1941099276983493, + "c3": 24.580833472263336, + "c4": -4.778403562117337, + "c5": 8.61472122198272, + "c6": -33.70843697591706, + "c7": -32.37555102686578 }, - "vertexSeeds": { - "c1": 8.946527149251285, - "c2": 8.95824213816677, - "c3": 8.908665093091722, - "c4": 8.804075033465487, - "c5": 9.00085672636278, - "c6": 8.823306816353478, - "c7": 8.936369536848503 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.009708737864054, + "c3": 10.841423948220074, + "c4": 8.673139158576037, + "c5": 6.5048543689320555, + "c6": 4.336569579288018, + "c7": 2.1682847896440376 }, "rgb": [86, 146, 138] }, @@ -442104,23 +442104,23 @@ "year": 1827, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 4.710575196472263, - "c2": 0.8659030621973507, - "c3": 13.807903338963449, - "c4": 2.346487350593552, - "c5": -4.925791512148383, - "c6": 19.698163854190625, - "c7": 7.208114044270303 + "points": { + "c1": 17.446782349158603, + "c2": -0.09945857932215318, + "c3": 24.53172707378637, + "c4": -10.08035524379411, + "c5": 2.5363272953117715, + "c6": -15.705893353669628, + "c7": 2.3416562752065104 }, - "vertexSeeds": { - "c1": 6.525271550064087, - "c2": 7.526121397238165, - "c3": 7.70554510353783, - "c4": 6.25939370187186, - "c5": 6.129417930384278, - "c6": 7.100850399519777, - "c7": 6.823001179446802 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088766, + "c3": 9.246417013407305, + "c4": 7.397133610725838, + "c5": 5.5478502080443794, + "c6": 3.698566805362919, + "c7": 1.8492834026814595 }, "rgb": [238, 201, 159] }, @@ -442131,23 +442131,23 @@ "year": 1827, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -16.36840169508476, - "c2": -0.6314803570053122, - "c3": -9.91769168224878, - "c4": 17.517970494898094, - "c5": 2.8198133097284668, - "c6": 10.895922297186686, - "c7": 21.205227114670087 + "points": { + "c1": -25.016953878458697, + "c2": -30.629237037558585, + "c3": -8.706570769951245, + "c4": -7.096933448728716, + "c5": 26.299299061482607, + "c6": 10.957452952221594, + "c7": -17.914566245398284 }, - "vertexSeeds": { - "c1": 8.844945673733031, - "c2": 8.858112593505895, - "c3": 8.918157120564736, - "c4": 8.872399166550508, - "c5": 8.888215371058836, - "c6": 8.895332023008574, - "c7": 8.81194598719251 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502142, + "c3": 10.633379565418382, + "c4": 8.506703652334762, + "c5": 6.380027739251001, + "c6": 4.253351826167381, + "c7": 2.12667591308362 }, "rgb": [86, 146, 138] }, @@ -442158,23 +442158,23 @@ "year": 1827, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -8.827177538072572, - "c2": 6.902356781243796, - "c3": -12.64147353553609, - "c4": -32.08638714844601, - "c5": 26.223130467875215, - "c6": 14.136041494366275, - "c7": 0.4875899177285561 + "points": { + "c1": 25.553595232377226, + "c2": -7.384694088781394, + "c3": -37.23358822902019, + "c4": 10.196886249266257, + "c5": 1.091076135988125, + "c6": -27.651498637025213, + "c7": 26.978419171833764 }, - "vertexSeeds": { - "c1": 7.960845562591123, - "c2": 7.817392706246962, - "c3": 7.916710826573717, - "c4": 8.111008648973247, - "c5": 7.691579686475325, - "c6": 7.413106349980315, - "c7": 8.043680662527185 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.650485436893199, + "c3": 9.708737864077657, + "c4": 7.766990291262138, + "c5": 5.825242718446599, + "c6": 3.883495145631059, + "c7": 1.9417475728155398 }, "rgb": [86, 146, 138] }, @@ -442185,23 +442185,23 @@ "year": 1827, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -23.52469065585874, - "c2": -22.23366795339711, - "c3": -23.30596887843707, - "c4": -30.165956418788806, - "c5": 28.780165420947647, - "c6": -26.65106337978252, - "c7": 16.1637890256346 + "points": { + "c1": 13.556949918645167, + "c2": -24.29931108693729, + "c3": -15.948493056502961, + "c4": 12.965413193868542, + "c5": -34.71297148130984, + "c6": -12.746202172863747, + "c7": 11.432759367178257 }, - "vertexSeeds": { - "c1": 5.65661626299931, - "c2": 5.8561593947038535, - "c3": 5.406062583111391, - "c4": 5.391478279088377, - "c5": 5.828343909518461, - "c6": 5.562291064472931, - "c7": 5.661014735775976 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -442212,23 +442212,23 @@ "year": 1827, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -3.9004476751072765, - "c2": -19.729173965708696, - "c3": -8.934896596783329, - "c4": -28.467151147925314, - "c5": 12.126060510112168, - "c6": 24.791819330742932, - "c7": 12.716271390543362 + "points": { + "c1": 27.354088616256618, + "c2": -0.8906817791165444, + "c3": -4.687142824030602, + "c4": 14.994856341866978, + "c5": 14.7348401128312, + "c6": -2.288672552203998, + "c7": 19.523665203109793 }, - "vertexSeeds": { - "c1": 8.048432663389901, - "c2": 8.409950985192966, - "c3": 8.566232193330583, - "c4": 8.700754812229398, - "c5": 8.035438343874432, - "c6": 7.933859443238929, - "c7": 7.685887751588196 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140081, + "c3": 10.425335182616736, + "c4": 8.340268146093388, + "c5": 6.255201109570041, + "c6": 4.170134073046694, + "c7": 2.085067036523347 }, "rgb": [222, 0, 59] }, @@ -442239,23 +442239,23 @@ "year": 1827, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": 15.38534557535042, - "c2": -22.406496918982768, - "c3": -5.579200542886458, - "c4": 22.824086481667592, - "c5": 18.00662174835241, - "c6": 23.24748824294744, - "c7": 8.634165675138291 + "points": { + "c1": 8.665022832689338, + "c2": -3.427038860759616, + "c3": 23.209096968215192, + "c4": 25.447853310628005, + "c5": -25.293671787773103, + "c6": 18.712856691168646, + "c7": -17.402332663734434 }, - "vertexSeeds": { - "c1": 5.182073012391923, - "c2": 5.060244681298917, - "c3": 5.068602411376758, - "c4": 4.859462848332028, - "c5": 4.866132857860233, - "c6": 5.024956538965851, - "c7": 4.936602204314913 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.4895977808599135, + "c3": 6.2413314840499226, + "c4": 4.993065187239933, + "c5": 3.7447988904299434, + "c6": 2.4965325936199796, + "c7": 1.2482662968099898 }, "rgb": [58, 15, 49] }, @@ -442266,23 +442266,23 @@ "year": 1827, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 2.4194893429968687, - "c2": -7.643057942249143, - "c3": -29.36560923940436, - "c4": 22.31968439416108, - "c5": 15.772640986684522, - "c6": -22.382209732837346, - "c7": -16.342047939465523 + "points": { + "c1": 21.19677337946409, + "c2": 4.905576692392636, + "c3": -33.70843247672068, + "c4": -5.833473374121777, + "c5": -12.227282064828707, + "c6": -24.085534012800345, + "c7": 6.723999739793555 }, - "vertexSeeds": { - "c1": 0.038860103626943004, - "c2": 0.038860103626943004, - "c3": 0.038860103626943004, - "c4": 0.038860103626943004, - "c5": 0.038860103626943004, - "c6": 0.038860103626943004, - "c7": 0.038860103626943004 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -442293,23 +442293,23 @@ "year": 1827, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": 27.291362519157374, - "c2": 8.93834717049944, - "c3": -11.239525399315504, - "c4": 42.748661277229644, - "c5": -40.107379173980405, - "c6": 49.24889133783951, - "c7": -39.34188999179516 + "points": { + "c1": 21.354894711554266, + "c2": 26.671331951092995, + "c3": -16.488411208330874, + "c4": 38.89134583999662, + "c5": 10.308102737586111, + "c6": 22.995954876453496, + "c7": -38.596821030801884 }, - "vertexSeeds": { - "c1": 3.8466717850830663, - "c2": 3.820922178258301, - "c3": 3.8114091000348003, - "c4": 3.8733009720178755, - "c5": 3.8141362297336308, - "c6": 3.8626710997608367, - "c7": 3.841179900809191 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084585, + "c3": 4.646324549237177, + "c4": 3.7170596393897237, + "c5": 2.7877947295423158, + "c6": 1.8585298196948619, + "c7": 0.929264909847454 }, "rgb": [58, 15, 49] }, @@ -442320,23 +442320,23 @@ "year": 1827, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 12.966604991790682, - "c2": -22.921657873382856, - "c3": 26.498679332154325, - "c4": -14.550103965327335, - "c5": 9.249524121981857, - "c6": -17.60622595422073, - "c7": -33.09969121782803 + "points": { + "c1": 39.825854993822574, + "c2": -15.49706351972522, + "c3": -32.39459322739427, + "c4": 26.96209403583336, + "c5": -22.8620938526985, + "c6": 27.349948380279272, + "c7": -31.49601995906729 }, - "vertexSeeds": { - "c1": 11.15510028426834, - "c2": 11.157663394665624, - "c3": 11.13428403019306, - "c4": 11.142357833931424, - "c5": 11.144727414249166, - "c6": 11.133857898825894, - "c7": 11.178987825596023 + "offsets": { + "c1": 18.673139158576053, + "c2": 16.00554785020812, + "c3": 13.337956541840189, + "c4": 10.670365233472257, + "c5": 8.002773925103796, + "c6": 5.335182616735864, + "c7": 2.667591308367932 }, "rgb": [222, 0, 59] }, @@ -442347,23 +442347,23 @@ "year": 1827, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -34.488495042256496, - "c2": -27.560293450664872, - "c3": 18.799078148387956, - "c4": 0.7388415588871027, - "c5": 14.061796514023328, - "c6": 31.006812121488935, - "c7": 14.207282685353817 + "points": { + "c1": 2.9253547747564994, + "c2": -7.346080997912942, + "c3": 33.221315034501316, + "c4": 36.49790656949875, + "c5": -29.35429499399143, + "c6": -2.1742427140242455, + "c7": 20.13782290452717 }, - "vertexSeeds": { - "c1": 8.168704546682862, - "c2": 7.990825922558724, - "c3": 7.988223739740049, - "c4": 8.084809333339642, - "c5": 8.212634227793943, - "c6": 8.114953059385787, - "c7": 8.18182564623368 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214992, + "c3": 9.893666204345811, + "c4": 7.914932963476661, + "c5": 5.936199722607482, + "c6": 3.9574664817383307, + "c7": 1.97873324086918 }, "rgb": [77, 76, 132] }, @@ -442374,23 +442374,23 @@ "year": 1827, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -26.20082604144912, - "c2": -21.97381091772682, - "c3": -28.298320401090855, - "c4": 0.9088734938379694, - "c5": -27.173892793324498, - "c6": 25.649610959478803, - "c7": 16.50994325965819 + "points": { + "c1": 8.276520817866196, + "c2": -22.63520900595114, + "c3": 14.875161497432106, + "c4": -22.03999638275724, + "c5": -3.4996139300849656, + "c6": -20.8145240541672, + "c7": 14.31122415644936 }, - "vertexSeeds": { - "c1": 8.266829408145652, - "c2": 8.27108090807054, - "c3": 8.271878972530926, - "c4": 8.266520745853395, - "c5": 8.258678738832026, - "c6": 8.27224166229687, - "c7": 8.266203118233623 + "offsets": { + "c1": 13.818770226537216, + "c2": 11.84466019417442, + "c3": 9.87055016181241, + "c4": 7.896440129449614, + "c5": 5.9223300970876025, + "c6": 3.948220064724807, + "c7": 1.974110032362796 }, "rgb": [238, 201, 159] }, @@ -442401,23 +442401,23 @@ "year": 1827, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -27.344291715953343, - "c2": -1.1087151139941938, - "c3": 20.246491884287643, - "c4": -2.155510629489523, - "c5": 12.745494568233887, - "c6": -10.140402240120363, - "c7": -23.304222714231685 + "points": { + "c1": -15.30181981420818, + "c2": 19.06311097316086, + "c3": 11.369064939375363, + "c4": 27.016390341642378, + "c5": 2.3407357031567173, + "c6": 17.93222221248697, + "c7": 26.633642543222635 }, - "vertexSeeds": { - "c1": 2.3317075564712866, - "c2": 2.1790168868739026, - "c3": 2.328325532386072, - "c4": 2.3018653175413055, - "c5": 2.165148988111189, - "c6": 2.251080998956085, - "c7": 2.2620611587466337 + "offsets": { + "c1": 3.9805825242718447, + "c2": 3.4119278779472975, + "c3": 2.8432732316227454, + "c4": 2.274618585298198, + "c5": 1.7059639389736463, + "c6": 1.137309292649099, + "c7": 0.568654646324552 }, "rgb": [222, 0, 59] }, @@ -442428,23 +442428,23 @@ "year": 1827, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 27.4192357333514, - "c2": 28.143336247350774, - "c3": -14.497291261945929, - "c4": 15.440268138447308, - "c5": 18.021572370484684, - "c6": -0.41462777242816173, - "c7": -17.355835637002137 + "points": { + "c1": -19.60383362678354, + "c2": 32.492177328199745, + "c3": -4.729856878643194, + "c4": -8.77731427352769, + "c5": -14.832638113432527, + "c6": -13.864217017135715, + "c7": 25.074585553266544 }, - "vertexSeeds": { - "c1": 4.994953433518589, - "c2": 4.936992055519332, - "c3": 4.1332132228190135, - "c4": 4.908203544630145, - "c5": 4.910851060284122, - "c6": 4.119465115198029, - "c7": 4.352263696275524 + "offsets": { + "c1": 8.608414239482201, + "c2": 7.378640776699033, + "c3": 6.148867313915855, + "c4": 4.919093851132687, + "c5": 3.689320388349514, + "c6": 2.459546925566341, + "c7": 1.2297734627831727 }, "rgb": [58, 15, 49] }, @@ -442455,23 +442455,23 @@ "year": 1827, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -0.7074370250466444, - "c2": -1.1653411506320026, - "c3": 34.08706905505569, - "c4": -19.28092451618781, - "c5": -22.607503231647023, - "c6": -31.375695137637987, - "c7": -13.964693811891784 + "points": { + "c1": -1.0985426236876776, + "c2": -23.181252347491252, + "c3": -17.79525632743618, + "c4": 40.8536791544079, + "c5": 22.095157673561587, + "c6": -28.211714745225223, + "c7": -24.373050411572486 }, - "vertexSeeds": { - "c1": 2.6640253236946467, - "c2": 2.5646636105920964, - "c3": 2.614961555957222, - "c4": 2.5154356555260913, - "c5": 2.6464231696426923, - "c6": 2.534373230772011, - "c7": 2.5753524727859114 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631067, + "c3": 3.236245954692554, + "c4": 2.588996763754041, + "c5": 1.9417475728155285, + "c6": 1.2944983818770257, + "c7": 0.6472491909385129 }, "rgb": [222, 0, 59] }, @@ -442482,23 +442482,23 @@ "year": 1827, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 34.14147102051426, - "c2": -15.577143241432243, - "c3": -13.377626900863277, - "c4": 32.56721239433237, - "c5": -32.38892852589102, - "c6": 5.205411800653025, - "c7": 10.017735107375366 + "points": { + "c1": -33.95773733076084, + "c2": 0.5010065504449983, + "c3": 4.998974840441505, + "c4": 25.12788418778814, + "c5": -28.407612668591593, + "c6": -11.631485015472915, + "c7": -27.839483549372808 }, - "vertexSeeds": { - "c1": 9.763587593109554, - "c2": 9.702970839794316, - "c3": 9.78229152414848, - "c4": 9.864093004577278, - "c5": 9.723851943306622, - "c6": 9.867173594633364, - "c7": 9.803381890042784 + "offsets": { + "c1": 16.50485436893204, + "c2": 14.14701803051315, + "c3": 11.789181692094354, + "c4": 9.431345353675466, + "c5": 7.073509015256575, + "c6": 4.715672676837685, + "c7": 2.3578363384188896 }, "rgb": [77, 76, 132] }, @@ -442509,23 +442509,23 @@ "year": 1827, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -19.972462396612364, - "c2": -3.380216004637237, - "c3": 8.10804798095021, - "c4": 12.734540402813394, - "c5": -18.386596513501473, - "c6": 21.828779894087027, - "c7": 2.3271712747318283 + "points": { + "c1": 1.8816085833434144, + "c2": -6.541745218697674, + "c3": 24.94166185196414, + "c4": -30.528590854553173, + "c5": -5.039219682217915, + "c6": 11.771773434946027, + "c7": 23.90070368944839 }, - "vertexSeeds": { - "c1": 4.871451698096565, - "c2": 5.209531799218781, - "c3": 5.205935444853978, - "c4": 5.2016464651123675, - "c5": 4.891454205875644, - "c6": 5.174154069529806, - "c7": 5.24133993696487 + "offsets": { + "c1": 8.83495145631068, + "c2": 7.572815533980592, + "c3": 6.310679611650483, + "c4": 5.048543689320394, + "c5": 3.7864077669902865, + "c6": 2.524271844660197, + "c7": 1.2621359223300985 }, "rgb": [86, 146, 138] }, @@ -442536,23 +442536,23 @@ "year": 1827, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -3.516407148824083, - "c2": 19.319830382231164, - "c3": -27.609056521865632, - "c4": 20.619621396649965, - "c5": -22.858968012483434, - "c6": -3.950444867101872, - "c7": 1.4483543792139493 + "points": { + "c1": 15.967716602889272, + "c2": -4.897200643090091, + "c3": 2.826164950791597, + "c4": -6.805342423586321, + "c5": -18.05399806525135, + "c6": -6.812300093764016, + "c7": 23.61443321773083 }, - "vertexSeeds": { - "c1": 9.965870767889268, - "c2": 9.847270158246587, - "c3": 9.753162443520756, - "c4": 9.899531197386377, - "c5": 9.510948208563073, - "c6": 9.603757885143953, - "c7": 9.917908134769233 + "offsets": { + "c1": 16.73139158576052, + "c2": 14.34119278779474, + "c3": 11.95099398982893, + "c4": 9.56079519186315, + "c5": 7.17059639389737, + "c6": 4.78039759593156, + "c7": 2.39019879796578 }, "rgb": [222, 0, 59] }, @@ -442563,23 +442563,23 @@ "year": 1827, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -19.055429140394292, - "c2": 19.361071384701916, - "c3": 23.435553001552506, - "c4": 5.74543179551037, - "c5": 25.507723541095785, - "c6": 25.594611486549773, - "c7": -19.25131373311148 + "points": { + "c1": 0.14092720044549623, + "c2": 2.507431626869767, + "c3": 29.846715496183513, + "c4": -2.854982742961848, + "c5": 26.222980904338996, + "c6": -22.83815095111174, + "c7": -28.728295231242715 }, - "vertexSeeds": { - "c1": 6.276779406453721, - "c2": 6.378089905033762, - "c3": 6.402280029601949, - "c4": 6.464620769609937, - "c5": 6.459114036037577, - "c6": 6.376066207974346, - "c7": 6.43973638696696 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434135, + "c3": 7.72075820619513, + "c4": 6.176606564956072, + "c5": 4.632454923717067, + "c6": 3.0883032824780634, + "c7": 1.5441516412390597 }, "rgb": [86, 146, 138] }, @@ -442590,23 +442590,23 @@ "year": 1827, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 11.865341559113809, - "c2": -25.08313726998719, - "c3": 18.841942282861083, - "c4": -27.806595877533084, - "c5": -28.22286068050189, - "c6": 13.081503128631901, - "c7": -26.862267595600198 + "points": { + "c1": -20.407533450538097, + "c2": -15.948827809096418, + "c3": -14.993234742344939, + "c4": -12.699650994367332, + "c5": 7.0618584680173555, + "c6": 8.256294787067247, + "c7": 22.68621788003378 }, - "vertexSeeds": { - "c1": 4.988675986783539, - "c2": 4.922239865120562, - "c3": 5.099876789992167, - "c4": 4.861555554467301, - "c5": 5.107990918668202, - "c6": 4.984634378932978, - "c7": 5.161952565772191 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739256, + "c3": 6.171983356449385, + "c4": 4.9375866851595145, + "c5": 3.7031900138696128, + "c6": 2.4687933425797572, + "c7": 1.2343966712898709 }, "rgb": [86, 146, 138] }, @@ -442617,23 +442617,23 @@ "year": 1827, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -8.30520267511784, - "c2": -7.783841905745572, - "c3": 16.519550996953523, - "c4": -19.021641104960423, - "c5": 22.73420852592353, - "c6": 18.59749495095318, - "c7": 23.65548090121153 + "points": { + "c1": 24.99690348091588, + "c2": 27.76112626213631, + "c3": 8.772275394349837, + "c4": 8.861332111075317, + "c5": 25.38521675998668, + "c6": 11.813221702732722, + "c7": -6.992477085706817 }, - "vertexSeeds": { - "c1": 10.170960497644554, - "c2": 10.384035548491655, - "c3": 10.767417367903633, - "c4": 10.28352780479881, - "c5": 11.059654238031673, - "c6": 10.592047125255451, - "c7": 10.671180986971336 + "offsets": { + "c1": 18.673139158576053, + "c2": 16.005547850208064, + "c3": 13.337956541840033, + "c4": 10.670365233472042, + "c5": 8.002773925104012, + "c6": 5.335182616736021, + "c7": 2.667591308367991 }, "rgb": [238, 201, 159] }, @@ -442644,23 +442644,23 @@ "year": 1827, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -19.273913664789518, - "c2": 17.66359653800687, - "c3": -24.516230831042172, - "c4": 20.630997816232515, - "c5": -2.033722870194371, - "c6": -26.62092526113239, - "c7": -14.165557564453625 + "points": { + "c1": -29.106098736820428, + "c2": -1.3910734763044346, + "c3": -25.84678644273227, + "c4": 5.696598149490583, + "c5": -4.094457110077268, + "c6": -27.398822741757904, + "c7": -23.089656141670364 }, - "vertexSeeds": { - "c1": 7.387725497025583, - "c2": 7.431172435248544, - "c3": 7.522229254509539, - "c4": 7.312424512535115, - "c5": 7.309038399761034, - "c6": 7.1781667589467295, - "c7": 7.329917405308585 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [58, 15, 49] }, @@ -442671,23 +442671,23 @@ "year": 1827, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 16.56442354520791, - "c2": -21.963633663376797, - "c3": -26.827604735903172, - "c4": 11.14712510415206, - "c5": 34.28699872775282, - "c6": -8.040321169096174, - "c7": 28.234872701832472 + "points": { + "c1": -17.12232083403054, + "c2": 13.198092632689438, + "c3": 32.0137089530551, + "c4": -24.301016538674652, + "c5": 8.205507282599129, + "c6": 15.77853616393454, + "c7": -18.013058786957746 }, - "vertexSeeds": { - "c1": 5.709093263515976, - "c2": 6.086014363880276, - "c3": 5.8454775241581975, - "c4": 5.970374769056572, - "c5": 5.719318364516661, - "c6": 5.644222205698361, - "c7": 5.914849938002519 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.7378640776699, + "c3": 7.281553398058246, + "c4": 5.825242718446615, + "c5": 4.368932038834961, + "c6": 2.9126213592233077, + "c7": 1.4563106796116538 }, "rgb": [86, 146, 138] }, @@ -442698,23 +442698,23 @@ "year": 1827, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 0.2861914329814468, - "c2": -3.467305210941234, - "c3": 18.468687811847875, - "c4": -0.1723393003377396, - "c5": -3.358564897443582, - "c6": -2.2367150134140914, - "c7": -8.172387282888117 + "points": { + "c1": -27.422783595260352, + "c2": 17.173450802969352, + "c3": -12.258258357898882, + "c4": 14.107194785181097, + "c5": -14.928046463678768, + "c6": 19.628104633009453, + "c7": -16.153648964529644 }, - "vertexSeeds": { - "c1": 7.845762437324328, - "c2": 8.577524524102268, - "c3": 8.518827990894794, - "c4": 8.049301164600493, - "c5": 8.450195809930005, - "c6": 8.60271003975314, - "c7": 7.759285284693642 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858535, + "c3": 10.2635228848821, + "c4": 8.210818307905685, + "c5": 6.1581137309292675, + "c6": 4.105409153952833, + "c7": 2.0527045769764163 }, "rgb": [58, 15, 49] }, @@ -442725,23 +442725,23 @@ "year": 1827, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 17.500044562138967, - "c2": -24.520515102908412, - "c3": 22.635424232914723, - "c4": -22.83204642806519, - "c5": 9.820483142022745, - "c6": 17.559979130115416, - "c7": -21.45017651175337 + "points": { + "c1": 29.127453088444042, + "c2": 22.29803344263525, + "c3": -24.040277746049846, + "c4": -7.332136532974253, + "c5": 24.1609767187977, + "c6": 2.7753043662556394, + "c7": 17.12464582016068 }, - "vertexSeeds": { - "c1": 7.896317412833989, - "c2": 7.890116160398222, - "c3": 7.894783639582738, - "c4": 7.899459583778636, - "c5": 7.9174620120792225, - "c6": 7.893056430475315, - "c7": 7.907837037284632 + "offsets": { + "c1": 13.236245954692558, + "c2": 11.345353675450818, + "c3": 9.454461396209078, + "c4": 7.563569116967337, + "c5": 5.672676837725221, + "c6": 3.7817845584834804, + "c7": 1.8908922792417402 }, "rgb": [238, 201, 159] }, @@ -442752,23 +442752,23 @@ "year": 1827, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": -32.759053192339564, - "c2": 13.491440566429858, - "c3": -36.81993839524578, - "c4": 9.176116066791892, - "c5": 36.16671969210336, - "c6": 6.133414795048282, - "c7": 31.203603633468873 + "points": { + "c1": 0.6828059009043272, + "c2": -12.485215811589907, + "c3": 3.5381536818469996, + "c4": -14.637430088552634, + "c5": 26.2338218311466, + "c6": -30.937176212091494, + "c7": -7.362797470096012 }, - "vertexSeeds": { - "c1": 11.163618430173726, - "c2": 11.143680654713386, - "c3": 11.166445961229742, - "c4": 11.123065510266692, - "c5": 11.089814114492523, - "c6": 11.10595416109871, - "c7": 11.146448507809751 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.977808599168002, + "c3": 13.314840499306458, + "c4": 10.651872399445336, + "c5": 7.98890429958379, + "c6": 5.325936199722668, + "c7": 2.662968099861122 }, "rgb": [222, 0, 59] }, @@ -442779,23 +442779,23 @@ "year": 1827, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 5.5763887172203574, - "c2": 19.2784042930111, - "c3": -1.546412574351475, - "c4": -18.444524481443636, - "c5": -14.09795243568807, - "c6": 16.52748628331471, - "c7": -1.4004521968342551 + "points": { + "c1": -14.284127231541481, + "c2": -22.083566331012857, + "c3": 0.49493942541837654, + "c4": 12.55643232232179, + "c5": 16.81880800443654, + "c6": -8.670439705496488, + "c7": -17.111740960869316 }, - "vertexSeeds": { - "c1": 4.872745407804548, - "c2": 4.97402013349857, - "c3": 4.924922346864177, - "c4": 4.959975111280845, - "c5": 4.89455355856523, - "c6": 4.791669665647341, - "c7": 4.967350257659796 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337034, + "c3": 5.940822931114198, + "c4": 4.752658344891361, + "c5": 3.5644937586685246, + "c6": 2.376329172445673, + "c7": 1.1881645862228365 }, "rgb": [222, 0, 59] }, @@ -442806,23 +442806,23 @@ "year": 1827, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 0.8225022964329796, - "c2": -9.29403574361093, - "c3": 23.889743629345187, - "c4": 0.1313370661421338, - "c5": -18.12542134045859, - "c6": -15.433704477083207, - "c7": 5.302351400298914 + "points": { + "c1": -19.83426583696425, + "c2": 16.632070385869465, + "c3": 13.479529338220647, + "c4": 29.65057659017828, + "c5": 3.022709915838231, + "c6": -18.075734437167615, + "c7": 27.776649403828348 }, - "vertexSeeds": { - "c1": 5.937162791371701, - "c2": 5.832197966857413, - "c3": 5.829962948903747, - "c4": 5.60297938916661, - "c5": 5.722164341593622, - "c6": 5.62868403763615, - "c7": 5.95989814394034 + "offsets": { + "c1": 9.967637540453074, + "c2": 8.543689320388346, + "c3": 7.1197411003236155, + "c4": 5.695792880258887, + "c5": 4.271844660194188, + "c6": 2.8478964401294586, + "c7": 1.4239482200647293 }, "rgb": [238, 201, 159] }, @@ -442833,23 +442833,23 @@ "year": 1827, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 9.348749678686929, - "c2": 34.253102466876506, - "c3": 26.025574295511454, - "c4": -27.002431304842293, - "c5": 3.5807564717118368, - "c6": -9.774337999042018, - "c7": -26.009661945770475 + "points": { + "c1": -34.023377566581985, + "c2": 5.394379532235277, + "c3": 0.23903556873295884, + "c4": 21.25914172512352, + "c5": -9.004941731197768, + "c6": 28.45762609288564, + "c7": -15.996332154520722 }, - "vertexSeeds": { - "c1": 7.484586943520213, - "c2": 9.533661982103746, - "c3": 5.46285004747935, - "c4": 2.8487337850878967, - "c5": 5.716199521663535, - "c6": 3.4686887481805875, - "c7": 9.190261661885852 + "offsets": { + "c1": 16.116504854368934, + "c2": 13.814147018030514, + "c3": 11.511789181692096, + "c4": 9.209431345353677, + "c5": 6.907073509015257, + "c6": 4.604715672676838, + "c7": 2.302357836338419 }, "rgb": [58, 15, 49] }, @@ -442860,23 +442860,23 @@ "year": 1827, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 24.498021970313566, - "c2": -8.919310942800603, - "c3": -22.035980485967972, - "c4": -10.550966034278582, - "c5": -22.536687740566638, - "c6": -4.143279426366444, - "c7": 23.037416160509217 + "points": { + "c1": 26.34014329063904, + "c2": -4.26725155044052, + "c3": -13.945102794737616, + "c4": -18.087754508824947, + "c5": 1.7154807428735914, + "c6": -13.023430815797502, + "c7": -8.568499967215281 }, - "vertexSeeds": { - "c1": 4.619093796617311, - "c2": 5.272546037148313, - "c3": 4.668585204507802, - "c4": 4.846257377065071, - "c5": 5.367892565395362, - "c6": 5.1317748980277695, - "c7": 4.916388364690913 + "offsets": { + "c1": 9.320388349514563, + "c2": 7.98890429958391, + "c3": 6.657420249653257, + "c4": 5.325936199722605, + "c5": 3.9944521497919525, + "c6": 2.662968099861305, + "c7": 1.3314840499306524 }, "rgb": [238, 201, 159] }, @@ -442887,23 +442887,23 @@ "year": 1827, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -27.616826010040466, - "c2": -19.331897378693427, - "c3": 21.93115682625787, - "c4": 6.085302144033953, - "c5": 2.109747547215882, - "c6": 8.381248314479663, - "c7": -15.81206852732155 + "points": { + "c1": -16.5295491130053, + "c2": -24.256892299358086, + "c3": -16.527592866831004, + "c4": 4.076498204234326, + "c5": -5.603610074859073, + "c6": -3.765071211610792, + "c7": 1.6929800694809956 }, - "vertexSeeds": { - "c1": 6.262762952533924, - "c2": 6.100134003731089, - "c3": 6.108469606168704, - "c4": 6.088109284102158, - "c5": 6.003573623420775, - "c6": 6.1487280682455445, - "c7": 6.306265615268672 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.070735090152576, + "c3": 7.5589459084604576, + "c4": 6.047156726768372, + "c5": 4.535367545076288, + "c6": 3.0235783633842033, + "c7": 1.5117891816920848 }, "rgb": [222, 0, 59] }, @@ -442914,23 +442914,23 @@ "year": 1827, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": -11.263947870386183, - "c2": -15.155498416194632, - "c3": -9.292870230634133, - "c4": 1.3801839347714626, - "c5": -3.4719691440199334, - "c6": 1.9606942235939862, - "c7": -15.539419144156575 + "points": { + "c1": -15.019560475962844, + "c2": -1.8417692301676354, + "c3": -21.88211188279653, + "c4": 10.617394656676542, + "c5": 22.96149937788427, + "c6": 19.47032059319302, + "c7": -5.084873552519323 }, - "vertexSeeds": { - "c1": 3.671195657056178, - "c2": 3.6464597883541168, - "c3": 3.638842820737204, - "c4": 3.66616493500019, - "c5": 3.6659394936560994, - "c6": 3.638007226035084, - "c7": 3.640195751864594 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682411, + "c3": 4.41516412390198, + "c4": 3.5321312991216076, + "c5": 2.6490984743411765, + "c6": 1.7660656495608038, + "c7": 0.8830328247804311 }, "rgb": [238, 201, 159] }, @@ -442941,23 +442941,23 @@ "year": 1827, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -17.073195511107304, - "c2": 18.63744302197552, - "c3": 12.348311846490375, - "c4": -30.632986608682206, - "c5": 8.581033426605856, - "c6": -9.360645590330215, - "c7": 10.782412202235776 + "points": { + "c1": 15.69041431231615, + "c2": 1.5989077726996754, + "c3": -9.281924192860618, + "c4": -15.53733794255303, + "c5": -19.715759327729756, + "c6": 5.092954384484116, + "c7": -10.736031345282488 }, - "vertexSeeds": { - "c1": 5.39751187371622, - "c2": 5.388143098721476, - "c3": 5.343882430397956, - "c4": 5.381926879561058, - "c5": 5.41985438754077, - "c6": 5.349557720204794, - "c7": 5.440315165887334 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302344, + "c3": 6.495607951918603, + "c4": 5.196486361534861, + "c5": 3.8973647711512234, + "c6": 2.5982431807674824, + "c7": 1.2991215903837412 }, "rgb": [238, 201, 159] }, @@ -442968,23 +442968,23 @@ "year": 1827, "resistanceReported": false, "duration": 35683200, - "curveSeeds": { - "c1": -7.047777385915346, - "c2": 35.96002693190183, - "c3": -8.553481844910316, - "c4": -44.08426162071758, - "c5": -0.13816212800054473, - "c6": -43.80002778505482, - "c7": 32.628770220624865 + "points": { + "c1": -0.2466149388285075, + "c2": -4.164667119414538, + "c3": -26.27501293974266, + "c4": -46.01263114968791, + "c5": 44.15128902540727, + "c6": -19.457597626806518, + "c7": -46.582468021154256 }, - "vertexSeeds": { - "c1": 8.493565498983452, - "c2": 8.824962374751701, - "c3": 9.308779423712007, - "c4": 8.852496112611949, - "c5": 8.559958160072643, - "c6": 8.250231594458889, - "c7": 8.42053493854549 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.39805825242718, + "c3": 11.165048543689323, + "c4": 8.932038834951452, + "c5": 6.699029126213596, + "c6": 4.466019417475726, + "c7": 2.2330097087378697 }, "rgb": [77, 76, 132] }, @@ -442995,23 +442995,23 @@ "year": 1827, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -15.235760973064423, - "c2": 26.016094870663572, - "c3": 23.98772353128046, - "c4": 8.616709586362028, - "c5": -12.906877639069682, - "c6": -15.567102700635155, - "c7": 26.559997530126715 + "points": { + "c1": -2.425744983979911, + "c2": -14.3042022796438, + "c3": 3.643627265213979, + "c4": -20.33710698791496, + "c5": -26.127195258879183, + "c6": 21.401425739737988, + "c7": -4.023475978193819 }, - "vertexSeeds": { - "c1": 6.177039041989481, - "c2": 6.216472654914319, - "c3": 6.16059749799744, - "c4": 6.216679481922846, - "c5": 6.204187157464383, - "c6": 6.177469820851813, - "c7": 6.159986953809382 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911179, + "c3": 7.420249653259447, + "c4": 5.936199722607518, + "c5": 4.4521497919555895, + "c6": 2.9680998613036604, + "c7": 1.4840499306519286 }, "rgb": [77, 76, 132] }, @@ -443022,23 +443022,23 @@ "year": 1827, "resistanceReported": false, "duration": 26697600, - "curveSeeds": { - "c1": 38.031467870199194, - "c2": 0.5268560423090207, - "c3": -9.604506017637437, - "c4": 16.94742517463586, - "c5": 1.326689846574176, - "c6": 8.971741459705079, - "c7": -18.23693356777926 + "points": { + "c1": -19.771355868080445, + "c2": 21.78977735536771, + "c3": 20.061346620483036, + "c4": 28.572252109334556, + "c5": 10.33861331670618, + "c6": -19.00857628676774, + "c7": -32.87400117369803 }, - "vertexSeeds": { - "c1": 4.461219959540005, - "c2": 4.697714692054953, - "c3": 4.716305004391374, - "c4": 4.683121626142044, - "c5": 4.51443034147996, - "c6": 4.8800268317972595, - "c7": 4.746882317002743 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.018030513176148, + "c3": 5.848358760980119, + "c4": 4.678687008784099, + "c5": 3.5090152565880692, + "c6": 2.3393435043920494, + "c7": 1.1696717521960198 }, "rgb": [77, 76, 132] }, @@ -443049,23 +443049,23 @@ "year": 1827, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": -9.830318684851067, - "c2": -18.640101259607835, - "c3": -13.590240500927042, - "c4": -6.6361707421677725, - "c5": -13.410473445425058, - "c6": -5.900313170441548, - "c7": -11.625215975457179 + "points": { + "c1": 5.853439826498715, + "c2": 17.632074505797355, + "c3": -19.843357873283505, + "c4": -5.972302514032718, + "c5": -2.1038474058911802, + "c6": -7.264013729848525, + "c7": -0.3421817429157805 }, - "vertexSeeds": { - "c1": 1.8366184050285994, - "c2": 1.827150829331991, - "c3": 1.8848823015346712, - "c4": 1.8357953172078219, - "c5": 1.8633667625547368, - "c6": 1.8422066862075468, - "c7": 1.8264638329627791 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.773925104022195, + "c3": 2.3116042533518244, + "c4": 1.8492834026814635, + "c5": 1.386962552011093, + "c6": 0.9246417013407318, + "c7": 0.4623208506703612 }, "rgb": [77, 76, 132] }, @@ -443076,23 +443076,23 @@ "year": 1827, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 9.132066409183498, - "c2": 23.646232116046722, - "c3": 30.664602981395387, - "c4": -6.339890510355609, - "c5": -16.74774185723229, - "c6": 21.801076407469584, - "c7": 26.66329822360481 + "points": { + "c1": 23.704995581166337, + "c2": 15.528464701744952, + "c3": 12.657076095392021, + "c4": -0.8956431460949688, + "c5": 5.678457272740239, + "c6": 16.88293239606631, + "c7": -16.12649684618326 }, - "vertexSeeds": { - "c1": 5.322165320809433, - "c2": 5.236594423102516, - "c3": 5.481910015611106, - "c4": 5.338605269913164, - "c5": 5.261090370313608, - "c6": 5.384569623898397, - "c7": 5.325270973102432 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -443103,23 +443103,23 @@ "year": 1827, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": -8.865193645401959, - "c2": 15.289770615716634, - "c3": -6.176393197791187, - "c4": -6.174283943227426, - "c5": -6.157408331072215, - "c6": 2.9083672523076913, - "c7": 12.65376491441662 + "points": { + "c1": -19.54623760410598, + "c2": -15.485199510354178, + "c3": -16.619749770828243, + "c4": 15.910166589245655, + "c5": -1.6790726691671836, + "c6": -15.744520242389065, + "c7": -16.51419302305065 }, - "vertexSeeds": { - "c1": 2.0766572206261484, - "c2": 2.0750929000716196, - "c3": 2.068263277711988, - "c4": 2.039753106265786, - "c5": 2.068492665880837, - "c6": 2.1126497939587403, - "c7": 2.1380915892579084 + "offsets": { + "c1": 3.6245954692556634, + "c2": 3.1067961165048543, + "c3": 2.588996763754045, + "c4": 2.071197411003236, + "c5": 1.5533980582524272, + "c6": 1.035598705501618, + "c7": 0.517799352750809 }, "rgb": [86, 146, 138] }, @@ -443130,23 +443130,23 @@ "year": 1827, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": -18.173710226667076, - "c2": 11.61880134353304, - "c3": 23.243450510351938, - "c4": 16.6546105419042, - "c5": 11.900153087251379, - "c6": 28.47291456887466, - "c7": 13.431061746657111 + "points": { + "c1": 14.874333129683155, + "c2": -20.266642735710107, + "c3": -26.485164554617697, + "c4": -6.600915361882045, + "c5": -29.820101152592645, + "c6": 2.828160423152948, + "c7": 13.91716990374675 }, - "vertexSeeds": { - "c1": 5.400055392765139, - "c2": 5.367769726778487, - "c3": 5.259192054312228, - "c4": 5.282893578209698, - "c5": 5.405355671360397, - "c6": 5.3450941344461445, - "c7": 5.494282903407187 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -443157,23 +443157,23 @@ "year": 1827, "resistanceReported": false, "duration": 345600, - "curveSeeds": { - "c1": -2.4386784865826563, - "c2": 2.2931105533896883, - "c3": -8.25964051126569, - "c4": -0.4335965659039758, - "c5": -8.36626300178367, - "c6": -4.440865311758225, - "c7": 4.670553996060484 + "points": { + "c1": -8.493441083081693, + "c2": 0.2958264296644142, + "c3": -3.6561577528576006, + "c4": -6.081637847136133, + "c5": 6.941482833907015, + "c6": 10.5639691383673, + "c7": -7.8151483301975135 }, - "vertexSeeds": { - "c1": 5.89859288795566, - "c2": 5.219764487785, - "c3": 5.216869790247225, - "c4": 5.0112899437011365, - "c5": 5.251279442393229, - "c6": 5.299089100494084, - "c7": 5.984695480770391 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924184, + "c4": 5.751271382339343, + "c5": 4.313453536754514, + "c6": 2.875635691169674, + "c7": 1.4378178455848345 }, "rgb": [58, 15, 49] }, @@ -443184,23 +443184,23 @@ "year": 1827, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -5.634068674885089, - "c2": 14.72192023858037, - "c3": -15.284341507681319, - "c4": 21.906295501665706, - "c5": -6.128370192375218, - "c6": -20.30339772219415, - "c7": 16.58664602609591 + "points": { + "c1": 18.561805281336287, + "c2": -26.62883895920643, + "c3": 23.303036224241662, + "c4": -11.976557371116268, + "c5": 11.224589558287857, + "c6": -25.140558320256975, + "c7": -21.281388755722812 }, - "vertexSeeds": { - "c1": 10.578853256735895, - "c2": 10.685726314326972, - "c3": 10.91001105580498, - "c4": 11.010386631309064, - "c5": 10.857740636533261, - "c6": 11.224003989705398, - "c7": 10.598269870782188 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.088765603328728, + "c3": 13.407304669440567, + "c4": 10.725843735552465, + "c5": 8.044382801664364, + "c6": 5.362921867776203, + "c7": 2.6814609338881015 }, "rgb": [86, 146, 138] }, @@ -443211,23 +443211,23 @@ "year": 1828, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 5.406886325336217, - "c2": -9.777705053583105, - "c3": 20.846175143507843, - "c4": -4.559280360524774, - "c5": -21.722303675521076, - "c6": 0.22959523157756223, - "c7": 30.93781794687647 + "points": { + "c1": 44.25070619941702, + "c2": -23.828996995819494, + "c3": -38.86413997462509, + "c4": -25.689871017359035, + "c5": 0.9468750058754196, + "c6": 18.734470079657733, + "c7": -2.7712663647790095 }, - "vertexSeeds": { - "c1": 5.281707602615724, - "c2": 5.281882853297322, - "c3": 5.380936027035903, - "c4": 5.3291125448483765, - "c5": 5.4511123707693026, - "c6": 5.454364036482304, - "c7": 5.3113614480295395 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -443238,23 +443238,23 @@ "year": 1828, "resistanceReported": false, "duration": 40694400, - "curveSeeds": { - "c1": 20.593348548862764, - "c2": -13.104050309659549, - "c3": 9.703397217887655, - "c4": -18.608130170840475, - "c5": 2.0286616821505987, - "c6": -43.21948221910322, - "c7": 16.246639262128255 + "points": { + "c1": -41.889138803859154, + "c2": 25.15693868410149, + "c3": 53.13272065233127, + "c4": -17.26230155359235, + "c5": -18.45015145247384, + "c6": 42.25231340491247, + "c7": 37.109834868361304 }, - "vertexSeeds": { - "c1": 10.67142085552059, - "c2": 11.206071493562895, - "c3": 10.194679395202183, - "c4": 10.333979221447157, - "c5": 11.10343245886303, - "c6": 9.602509582837742, - "c7": 10.677963369747152 + "offsets": { + "c1": 19.12621359223301, + "c2": 16.393897364771156, + "c3": 13.661581137309302, + "c4": 10.929264909847426, + "c5": 8.196948682385573, + "c6": 5.464632454923719, + "c7": 2.7323162274618538 }, "rgb": [238, 201, 159] }, @@ -443265,23 +443265,23 @@ "year": 1827, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 11.7318490130503, - "c2": 17.594916227989216, - "c3": 24.80086106478261, - "c4": -0.5693470507991449, - "c5": 22.047197534018373, - "c6": 33.40041244721577, - "c7": -0.909431684015729 + "points": { + "c1": -28.902518362508484, + "c2": 16.02344672538463, + "c3": -1.9147573836693894, + "c4": 41.696227334820804, + "c5": -35.01920722015582, + "c6": -1.5135865326789641, + "c7": -16.129206972654117 }, - "vertexSeeds": { - "c1": 8.74393032757641, - "c2": 9.078441907516558, - "c3": 8.926688557502862, - "c4": 8.998651456706114, - "c5": 8.947586124815114, - "c6": 8.882767563840135, - "c7": 9.108528831773933 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306522, + "c3": 11.095700416088773, + "c4": 8.876560332871025, + "c5": 6.657420249653247, + "c6": 4.438280166435498, + "c7": 2.219140083217749 }, "rgb": [238, 201, 159] }, @@ -443292,23 +443292,23 @@ "year": 1827, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 14.676387468769704, - "c2": -11.019294998339603, - "c3": 18.715316079426564, - "c4": 11.489226401924114, - "c5": 22.361733675665846, - "c6": 23.742583518333888, - "c7": -13.682192739405028 + "points": { + "c1": 22.940539685855633, + "c2": 3.9233049476733655, + "c3": 1.0817943663786487, + "c4": 16.265551422839415, + "c5": -22.47800104067327, + "c6": 1.248476245905774, + "c7": 26.035157567838006 }, - "vertexSeeds": { - "c1": 6.83339566161549, - "c2": 7.513800142198775, - "c3": 7.497581872931558, - "c4": 7.349496300251771, - "c5": 7.502836993167032, - "c6": 6.848343257228428, - "c7": 7.076569343619133 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [238, 201, 159] }, @@ -443319,23 +443319,23 @@ "year": 1827, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 24.145510211567032, - "c2": -3.006224754409139, - "c3": 30.483544980135857, - "c4": 10.577061168308564, - "c5": 30.152682044837785, - "c6": 18.200774137940993, - "c7": -21.025784060516415 + "points": { + "c1": 20.857647119662133, + "c2": 4.274788116436326, + "c3": 31.675947366288327, + "c4": 29.72686880159752, + "c5": 25.465732623909602, + "c6": 4.70442904437013, + "c7": 3.5170467011879936 }, - "vertexSeeds": { - "c1": 11.645334225327689, - "c2": 11.687591824685928, - "c3": 11.86876486989898, - "c4": 11.616572801080409, - "c5": 11.751352420877708, - "c6": 11.700293298594794, - "c7": 11.640885985146301 + "offsets": { + "c1": 19.93527508090615, + "c2": 17.087378640776667, + "c3": 14.239482200647299, + "c4": 11.391585760517817, + "c5": 8.543689320388333, + "c6": 5.695792880258851, + "c7": 2.847896440129482 }, "rgb": [86, 146, 138] }, @@ -443346,23 +443346,23 @@ "year": 1828, "resistanceReported": false, "duration": 49075200, - "curveSeeds": { - "c1": 34.44320283238738, - "c2": 21.88455739605684, - "c3": -5.026132826670903, - "c4": 57.05936115867605, - "c5": 60.631301912457566, - "c6": -56.50711123554488, - "c7": 7.562009998613554 + "points": { + "c1": 40.11300805953215, + "c2": 64.7767993867329, + "c3": -47.56381167126409, + "c4": 52.04587247078756, + "c5": -55.34112311654252, + "c6": 65.52175714414693, + "c7": -65.46261801629821 }, - "vertexSeeds": { - "c1": 7.807347186577948, - "c2": 6.710645735823748, - "c3": 6.303820193559957, - "c4": 7.569186584926872, - "c5": 6.542886584380211, - "c6": 6.845818249277752, - "c7": 6.823395856440669 + "offsets": { + "c1": 13.074433656957929, + "c2": 11.20665742024965, + "c3": 9.33888118354138, + "c4": 7.4711049468331, + "c5": 5.6033287101248295, + "c6": 3.73555247341655, + "c7": 1.867776236708279 }, "rgb": [58, 15, 49] }, @@ -443373,23 +443373,23 @@ "year": 1827, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 29.953028676416835, - "c2": -28.350274144882277, - "c3": -28.177423539190567, - "c4": 38.201490121607364, - "c5": -35.295207139888156, - "c6": 34.54050235784267, - "c7": -22.108779557412365 + "points": { + "c1": -2.014487576137981, + "c2": 0.17580654843733612, + "c3": 27.547940513553954, + "c4": 3.8501609178708662, + "c5": -2.3759153443409176, + "c6": 5.911540597007729, + "c7": 11.563028306695827 }, - "vertexSeeds": { - "c1": 8.61211548214053, - "c2": 8.342873175696905, - "c3": 8.55145148493108, - "c4": 8.555035821689657, - "c5": 8.501069453155997, - "c6": 8.41266610359273, - "c7": 8.311659329493317 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019417, + "c3": 10.35598705501618, + "c4": 8.284789644012944, + "c5": 6.213592233009709, + "c6": 4.142394822006472, + "c7": 2.071197411003236 }, "rgb": [77, 76, 132] }, @@ -443400,23 +443400,23 @@ "year": 1827, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -24.469735518490097, - "c2": 32.26473988194812, - "c3": -18.028253854505262, - "c4": 27.015015962229867, - "c5": 22.459040286570747, - "c6": -30.792392846276716, - "c7": 11.36860656492592 + "points": { + "c1": -33.45285867723314, + "c2": 17.135375388704404, + "c3": 18.948571437582686, + "c4": -19.402954319510673, + "c5": 8.630310920917559, + "c6": -21.717278301017455, + "c7": 30.814984204783244 }, - "vertexSeeds": { - "c1": 8.026965841911341, - "c2": 8.103478598911494, - "c3": 8.243390228381696, - "c4": 8.096611364565893, - "c5": 8.102311878757092, - "c6": 8.038495682544097, - "c7": 8.195163811170929 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134525, + "c3": 9.847434119278761, + "c4": 7.877947295423061, + "c5": 5.908460471567295, + "c6": 3.9389736477115305, + "c7": 1.9694868238557652 }, "rgb": [58, 15, 49] }, @@ -443427,23 +443427,23 @@ "year": 1827, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 28.613621611871924, - "c2": -8.178070751559911, - "c3": 8.680675957437973, - "c4": -3.1563876808124185, - "c5": 10.792826976752334, - "c6": 15.802851005871627, - "c7": 14.059418056992858 + "points": { + "c1": -15.887103096400622, + "c2": 9.50280579202774, + "c3": 10.745072880527264, + "c4": 1.428167893645611, + "c5": -6.1373366665850995, + "c6": 8.550034344049795, + "c7": 30.426958609526405 }, - "vertexSeeds": { - "c1": 6.0041637185804975, - "c2": 6.068623359445695, - "c3": 6.052247927825801, - "c4": 6.001728835170061, - "c5": 5.969249880206182, - "c6": 6.045938489334671, - "c7": 6.011685745585021 + "offsets": { + "c1": 10.161812297734627, + "c2": 8.71012482662965, + "c3": 7.258437355524745, + "c4": 5.806749884419767, + "c5": 4.355062413314861, + "c6": 2.9033749422098833, + "c7": 1.4516874711049776 }, "rgb": [86, 146, 138] }, @@ -443454,23 +443454,23 @@ "year": 1828, "resistanceReported": false, "duration": 31276800, - "curveSeeds": { - "c1": 39.874843766493015, - "c2": -17.923428335807504, - "c3": 33.996192742557426, - "c4": -11.384565772509774, - "c5": 41.88123685654823, - "c6": -24.42059642185602, - "c7": 42.3791231776779 + "points": { + "c1": 17.877311804971328, + "c2": 6.186126496001236, + "c3": -9.04237858133839, + "c4": 24.561242228703634, + "c5": 16.987517095526712, + "c6": 9.759947841940061, + "c7": 1.0422537698738452 }, - "vertexSeeds": { - "c1": 4.622355487179689, - "c2": 4.647091231285655, - "c3": 4.683855843259483, - "c4": 4.700322207080859, - "c5": 4.669364643786331, - "c6": 4.666913356812182, - "c7": 4.727869844952217 + "offsets": { + "c1": 7.961165048543689, + "c2": 6.823855755894595, + "c3": 5.6865464632455005, + "c4": 4.549237170596406, + "c5": 3.4119278779473117, + "c6": 2.274618585298189, + "c7": 1.1373092926490944 }, "rgb": [58, 15, 49] }, @@ -443481,23 +443481,23 @@ "year": 1827, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 12.532977443942169, - "c2": -17.40495242319528, - "c3": -20.814926905254787, - "c4": 16.644213317211662, - "c5": -13.308953135923028, - "c6": 14.901207158423876, - "c7": 13.781798244405064 + "points": { + "c1": 19.284806127814935, + "c2": 6.141492772245183, + "c3": -23.594520752281557, + "c4": -20.83218868476815, + "c5": 23.938252337881696, + "c6": -12.97447655629756, + "c7": -18.454709412214527 }, - "vertexSeeds": { - "c1": 5.987532222879699, - "c2": 6.017019057262869, - "c3": 6.1447525361981, - "c4": 6.104015953439082, - "c5": 6.121080075909495, - "c6": 6.066462582758732, - "c7": 6.166182765392827 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911222, + "c3": 7.420249653259366, + "c4": 5.9361997226074825, + "c5": 4.452149791955625, + "c6": 2.9680998613037413, + "c7": 1.4840499306518837 }, "rgb": [58, 15, 49] }, @@ -443508,23 +443508,23 @@ "year": 1827, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 18.856437662938227, - "c2": -2.0179453156402474, - "c3": 22.3777594003541, - "c4": 17.739997402509573, - "c5": -32.757793604627416, - "c6": -17.14321636126674, - "c7": -32.35351669200189 + "points": { + "c1": -15.1966801075551, + "c2": -19.452207042532283, + "c3": 5.821475304982627, + "c4": -28.156925597998566, + "c5": -26.83823521307757, + "c6": -31.306760594657845, + "c7": -33.12403748820512 }, - "vertexSeeds": { - "c1": 10.224567059342867, - "c2": 10.445346509051811, - "c3": 10.343393641603193, - "c4": 10.211250432849866, - "c5": 10.121722155581864, - "c6": 10.19097851820209, - "c7": 10.190349053911676 + "offsets": { + "c1": 17.637540453074433, + "c2": 15.117891816920926, + "c3": 12.598243180767478, + "c4": 10.07859454461397, + "c5": 7.558945908460463, + "c6": 5.039297272307015, + "c7": 2.5196486361535073 }, "rgb": [222, 0, 59] }, @@ -443535,23 +443535,23 @@ "year": 1828, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -24.826222374624606, - "c2": -0.7473756563971747, - "c3": -3.629497575702075, - "c4": -25.183201822432885, - "c5": -3.563076713370343, - "c6": 30.419826114958738, - "c7": -1.6850903963709811 + "points": { + "c1": -15.884106512789792, + "c2": 31.731367399050683, + "c3": -34.89040543422898, + "c4": 36.809250246977626, + "c5": 7.743682596283108, + "c6": 37.206266440279535, + "c7": -20.42123317899065 }, - "vertexSeeds": { - "c1": 8.194026708046964, - "c2": 8.184953624729971, - "c3": 8.169060634189787, - "c4": 8.204950820917384, - "c5": 8.19322779822973, - "c6": 8.142327405132763, - "c7": 8.154368003859476 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054148, + "c3": 9.80120203421166, + "c4": 7.840961627369366, + "c5": 5.880721220527074, + "c6": 3.920480813684781, + "c7": 1.960240406842293 }, "rgb": [58, 15, 49] }, @@ -443562,23 +443562,23 @@ "year": 1827, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 11.533432470223694, - "c2": -7.434632595424965, - "c3": -2.1055614661101245, - "c4": -23.171810024734874, - "c5": -14.844536300418591, - "c6": -20.550668577901252, - "c7": 16.078570089018257 + "points": { + "c1": -5.834688053899782, + "c2": 20.07978368245316, + "c3": 11.413429304446453, + "c4": -23.700105217200075, + "c5": 1.0476353730259298, + "c6": 14.934192404847195, + "c7": 4.4726034808870345 }, - "vertexSeeds": { - "c1": 8.612532990916803, - "c2": 8.848880148843016, - "c3": 9.312166278206641, - "c4": 9.125634225530748, - "c5": 8.76690536705058, - "c6": 8.524127306977906, - "c7": 8.548642772748142 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.453536754507635, + "c3": 11.211280628756349, + "c4": 8.969024503005084, + "c5": 6.726768377253817, + "c6": 4.484512251502532, + "c7": 2.242256125751266 }, "rgb": [222, 0, 59] }, @@ -443589,23 +443589,23 @@ "year": 1827, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": 19.288679503797525, - "c2": 15.765652902149924, - "c3": -7.278873314264347, - "c4": 10.906502617737086, - "c5": -5.071166748388608, - "c6": -2.4112553153299388, - "c7": -17.162934533059534 + "points": { + "c1": 13.353021052021504, + "c2": 6.816090252072556, + "c3": 20.04911884306499, + "c4": -20.416580323684556, + "c5": -12.433327529392518, + "c6": 17.4115396853001, + "c7": 9.232135937445602 }, - "vertexSeeds": { - "c1": 8.820255407675637, - "c2": 8.560903790851487, - "c3": 9.205881306622109, - "c4": 9.016790026067856, - "c5": 8.544326108938487, - "c6": 8.6572423196127, - "c7": 8.921942040025842 + "offsets": { + "c1": 15.663430420711974, + "c2": 13.425797503467415, + "c3": 11.188164586222834, + "c4": 8.950531668978275, + "c5": 6.7128987517336975, + "c6": 4.475265834489138, + "c7": 2.23763291724456 }, "rgb": [238, 201, 159] }, @@ -443616,23 +443616,23 @@ "year": 1827, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": -16.119556376907358, - "c2": -6.724891358165246, - "c3": -1.76220741649351, - "c4": -18.017071640522758, - "c5": -12.604889669336021, - "c6": -12.504239574342856, - "c7": 4.766750048215609 + "points": { + "c1": -7.372172680673588, + "c2": 4.890534695259763, + "c3": -21.36167877653398, + "c4": 8.489036913596873, + "c5": -1.0357374760206035, + "c6": -11.502750156754852, + "c7": 14.864139109541778 }, - "vertexSeeds": { - "c1": 6.984017685239884, - "c2": 6.840993695485303, - "c3": 6.963870749912167, - "c4": 6.795397461634979, - "c5": 7.527979868787632, - "c6": 7.412323984087385, - "c7": 6.9292783338377175 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [238, 201, 159] }, @@ -443643,23 +443643,23 @@ "year": 1827, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": 16.67087879007731, - "c2": -29.239319976644673, - "c3": -1.6196456575747504, - "c4": 14.946740855810347, - "c5": 37.17949618978389, - "c6": 36.746864977528176, - "c7": 37.2434803517564 + "points": { + "c1": 11.087920483111809, + "c2": -5.82535383789223, + "c3": -13.89685499314923, + "c4": 35.4819733027185, + "c5": 33.30179159127886, + "c6": -15.915393699770672, + "c7": 26.425312352941887 }, - "vertexSeeds": { - "c1": 7.548688223767457, - "c2": 7.467240799206067, - "c3": 7.484050158342184, - "c4": 7.567296529265536, - "c5": 7.488466838067787, - "c6": 7.552404505656277, - "c7": 7.474422152488161 + "offsets": { + "c1": 12.653721682847896, + "c2": 10.84604715672682, + "c3": 9.038372630605624, + "c4": 7.230698104484547, + "c5": 5.42302357836335, + "c6": 3.6153490522422733, + "c7": 1.8076745261210767 }, "rgb": [222, 0, 59] }, @@ -443670,23 +443670,23 @@ "year": 1827, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 1.3057757296928116, - "c2": -20.354854335363648, - "c3": 12.222413094388266, - "c4": -6.997631098471256, - "c5": 19.603135780023564, - "c6": -32.07809154662562, - "c7": -19.689271439514393 + "points": { + "c1": 25.936118715174167, + "c2": -13.315000974974602, + "c3": 27.407349456205452, + "c4": 31.286355301366513, + "c5": -31.334688271925923, + "c6": -4.291273389134343, + "c7": -27.321219684605214 }, - "vertexSeeds": { - "c1": 7.3883146181694235, - "c2": 7.3885023200241475, - "c3": 7.334754097671509, - "c4": 7.402494677293087, - "c5": 7.3863560710548235, - "c6": 7.340081827953306, - "c7": 7.312113593522084 + "offsets": { + "c1": 12.362459546925567, + "c2": 10.596393897364752, + "c3": 8.830328247803937, + "c4": 7.06426259824312, + "c5": 5.298196948682446, + "c6": 3.532131299121631, + "c7": 1.7660656495608156 }, "rgb": [77, 76, 132] }, @@ -443697,23 +443697,23 @@ "year": 1828, "resistanceReported": false, "duration": 26179200, - "curveSeeds": { - "c1": 15.67502830512997, - "c2": -6.570090624899294, - "c3": -18.811392286781352, - "c4": -31.546416401463787, - "c5": -30.635019602746972, - "c6": -2.700656737456825, - "c7": -23.45191298450034 + "points": { + "c1": -24.89653028074072, + "c2": -39.07494750241269, + "c3": 7.107398359997234, + "c4": 37.374277395249166, + "c5": -0.12236691933387078, + "c6": 14.282549497060494, + "c7": -33.14883963589424 }, - "vertexSeeds": { - "c1": 4.91580310880829, - "c2": 4.91580310880829, - "c3": 4.91580310880829, - "c4": 4.91580310880829, - "c5": 4.91580310880829, - "c6": 4.91580310880829, - "c7": 4.91580310880829 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -443724,23 +443724,23 @@ "year": 1828, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -25.90333876261559, - "c2": 38.35432263601844, - "c3": -19.986707765181986, - "c4": 5.250057401030716, - "c5": -3.412640723867277, - "c6": -25.559168708084062, - "c7": -32.84403991069313 + "points": { + "c1": 27.80278868213145, + "c2": -12.255787931094979, + "c3": 7.571815654349706, + "c4": -36.319780439816974, + "c5": 37.87587283828533, + "c6": -7.33493143612877, + "c7": -3.7428176835314417 }, - "vertexSeeds": { - "c1": 13.8841497821182, - "c2": 13.849512240236512, - "c3": 13.966717093006869, - "c4": 13.806627494311348, - "c5": 13.99771427129926, - "c6": 13.972486948293405, - "c7": 13.989263572657231 + "offsets": { + "c1": 23.36569579288026, + "c2": 20.02773925104026, + "c3": 16.689782709200255, + "c4": 13.351826167360251, + "c5": 10.013869625520009, + "c6": 6.675913083680005, + "c7": 3.3379565418400023 }, "rgb": [238, 201, 159] }, @@ -443751,23 +443751,23 @@ "year": 1828, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": -12.586876150017662, - "c2": -12.319141040046958, - "c3": 17.20981801523788, - "c4": 37.74614095894194, - "c5": 29.26456789010461, - "c6": -11.380724750802163, - "c7": 11.854171757845421 + "points": { + "c1": 17.67536829776688, + "c2": -39.37139008781721, + "c3": -4.5963039055899415, + "c4": -28.806450773637927, + "c5": -15.176010681560665, + "c6": 33.629978594605255, + "c7": 18.454489970242257 }, - "vertexSeeds": { - "c1": 10.482506578184703, - "c2": 10.233899298999292, - "c3": 11.544747283919548, - "c4": 11.659632794863349, - "c5": 10.95978169557118, - "c6": 11.265981907346243, - "c7": 11.051055260330928 + "offsets": { + "c1": 19.54692556634304, + "c2": 16.754507628294036, + "c3": 13.96208969024503, + "c4": 11.169671752196024, + "c5": 8.377253814147018, + "c6": 5.584835876098012, + "c7": 2.792417938049006 }, "rgb": [238, 201, 159] }, @@ -443778,23 +443778,23 @@ "year": 1827, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 15.227962324680412, - "c2": -26.345063868183402, - "c3": -8.303746907095153, - "c4": -14.597324267464217, - "c5": 34.68549775008436, - "c6": -18.295101609530526, - "c7": -9.589369681858518 + "points": { + "c1": -5.886049855041968, + "c2": -4.610154293029105, + "c3": 30.397222771121754, + "c4": -29.262616992067162, + "c5": 34.54304283040555, + "c6": -20.35656991865651, + "c7": -33.30576763105988 }, - "vertexSeeds": { - "c1": 6.953299451954268, - "c2": 6.9655624668663085, - "c3": 6.884492611075128, - "c4": 6.8848535808718765, - "c5": 6.9570780258944485, - "c6": 6.899871205020231, - "c7": 6.876522997519978 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479936, + "c3": 8.32177531206656, + "c4": 6.657420249653291, + "c5": 4.993065187239913, + "c6": 3.3287101248266455, + "c7": 1.6643550624132675 }, "rgb": [238, 201, 159] }, @@ -443805,23 +443805,23 @@ "year": 1827, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 14.43624360541385, - "c2": -3.1853424668015613, - "c3": 9.16436347967894, - "c4": 8.91239104654261, - "c5": 22.551442944804855, - "c6": -14.310195227007661, - "c7": 26.443927279533597 + "points": { + "c1": -29.760083991487722, + "c2": 15.186688820284196, + "c3": -13.106720210932565, + "c4": -30.291468161407437, + "c5": -8.9624229685522, + "c6": 5.086315659376908, + "c7": -1.2855264846829364 }, - "vertexSeeds": { - "c1": 4.892667916914533, - "c2": 4.9395475135318145, - "c3": 5.192505421347082, - "c4": 5.01899741832725, - "c5": 4.84804916571797, - "c6": 4.553281171080135, - "c7": 4.914315996997865 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.7947295423023615, + "c3": 6.495607951918636, + "c4": 5.196486361534902, + "c5": 3.8973647711511776, + "c6": 2.598243180767454, + "c7": 1.2991215903837294 }, "rgb": [238, 201, 159] }, @@ -443832,23 +443832,23 @@ "year": 1827, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 4.8213848005396045, - "c2": 3.2611712072659813, - "c3": -17.1355701863812, - "c4": -25.736955009609918, - "c5": 10.70411771512093, - "c6": -0.9188232458714403, - "c7": -4.716416169364699 + "points": { + "c1": -21.565852921498543, + "c2": 10.50143541897232, + "c3": -29.177777604332533, + "c4": 17.071536534748965, + "c5": 32.6021790928478, + "c6": -9.6643515228741, + "c7": 7.835948722031823 }, - "vertexSeeds": { - "c1": 1.6464946067654338, - "c2": 1.6461852464243074, - "c3": 1.6185873251687641, - "c4": 1.6650862465469305, - "c5": 1.6535983259224527, - "c6": 1.5988585234286858, - "c7": 1.6059827649135565 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.4133148404993077, + "c3": 2.0110957004160914, + "c4": 1.6088765603328652, + "c5": 1.2066574202496487, + "c6": 0.8044382801664326, + "c7": 0.4022191400832163 }, "rgb": [58, 15, 49] }, @@ -443859,23 +443859,23 @@ "year": 1827, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -19.753560197093684, - "c2": -24.95681521375007, - "c3": 28.499284089408874, - "c4": 4.936599871080098, - "c5": 31.892431744744606, - "c6": -23.201054092974033, - "c7": -28.840623622493847 + "points": { + "c1": -26.30592331591728, + "c2": 19.471368908726838, + "c3": 10.804526927442929, + "c4": 3.2160112623305466, + "c5": 5.951312282779718, + "c6": 25.15103877675893, + "c7": 2.006755102924096 }, - "vertexSeeds": { - "c1": 9.0236436418805, - "c2": 9.495753488527507, - "c3": 8.908328039105061, - "c4": 9.864088924796066, - "c5": 9.257409670147137, - "c6": 10.660393303388306, - "c7": 9.607703561394608 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363376, + "c3": 12.852519648636155, + "c4": 10.282015718908916, + "c5": 7.7115117891816976, + "c6": 5.1410078594544695, + "c7": 2.5705039297272396 }, "rgb": [238, 201, 159] }, @@ -443886,23 +443886,23 @@ "year": 1827, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -12.485793075919885, - "c2": -0.2541838869659081, - "c3": -4.037450505635187, - "c4": -4.020897261237522, - "c5": 13.34548952410907, - "c6": 14.409285347095938, - "c7": -12.7616098146081 + "points": { + "c1": 3.6618840620925077, + "c2": 12.549123156439656, + "c3": -1.7039570031887301, + "c4": -11.285524399665807, + "c5": 13.87405529278493, + "c6": -2.201272827524388, + "c7": 7.837600992399992 }, - "vertexSeeds": { - "c1": 3.6865086328725463, - "c2": 3.631030556904828, - "c3": 3.755364592040393, - "c4": 3.740023104108894, - "c5": 3.7870858811617287, - "c6": 3.8015033279583705, - "c7": 3.60680393405933 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044381, + "c3": 4.623208506703649, + "c4": 3.6985668053629177, + "c5": 2.773925104022195, + "c6": 1.8492834026814635, + "c7": 0.9246417013407318 }, "rgb": [58, 15, 49] }, @@ -443913,23 +443913,23 @@ "year": 1827, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -19.58683123550056, - "c2": -18.498851578425494, - "c3": 18.693052550231393, - "c4": 15.010195643919161, - "c5": 16.14985986463222, - "c6": 26.339828103756936, - "c7": -25.27771023601743 + "points": { + "c1": -0.26461537994652673, + "c2": 11.363350201667082, + "c3": 20.58168717811469, + "c4": -11.48551121574631, + "c5": -25.99265221204274, + "c6": 28.05105109071455, + "c7": -2.7135365125202924 }, - "vertexSeeds": { - "c1": 4.624204436489602, - "c2": 4.8176599086800875, - "c3": 4.436754346459183, - "c4": 4.6878003296838235, - "c5": 4.246995675625333, - "c6": 4.764415383451878, - "c7": 4.150450363293725 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497916, + "c3": 6.033287101248266, + "c4": 4.826629680998611, + "c5": 3.6199722607489604, + "c6": 2.4133148404993054, + "c7": 1.2066574202496505 }, "rgb": [58, 15, 49] }, @@ -443940,23 +443940,23 @@ "year": 1827, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 2.778402422282909, - "c2": -6.955031160951567, - "c3": 7.506136180147173, - "c4": 4.352511468924604, - "c5": 9.146819802661739, - "c6": 5.5278687892983385, - "c7": 12.928691497335727 + "points": { + "c1": -1.4850379051150995, + "c2": -14.213808780919404, + "c3": 8.251832220301239, + "c4": 28.222684648857147, + "c5": 7.1343915164828005, + "c6": 1.5457364848199617, + "c7": -1.787287581219772 }, - "vertexSeeds": { - "c1": 3.460659627719552, - "c2": 3.5570723989866124, - "c3": 3.558961895783767, - "c4": 3.5526772826167745, - "c5": 3.5837589268495966, - "c6": 3.4452747476554206, - "c7": 3.4749968288949193 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481282, + "c3": 4.299583911234407, + "c4": 3.4396671289875145, + "c5": 2.579750346740641, + "c6": 1.719833564493767, + "c7": 0.8599167822468929 }, "rgb": [77, 76, 132] }, @@ -443967,23 +443967,23 @@ "year": 1827, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -3.8430607684226032, - "c2": 26.349985866169177, - "c3": -2.988726054873549, - "c4": -26.22321209013201, - "c5": 21.07489485572534, - "c6": 7.354095540143234, - "c7": -27.030061263941995 + "points": { + "c1": 7.7460234004381405, + "c2": 1.0740643790548887, + "c3": -7.160406525054089, + "c4": -7.045023987906166, + "c5": 31.90907357474704, + "c6": 12.94908794995925, + "c7": 24.247787879430746 }, - "vertexSeeds": { - "c1": 12.76756754151785, - "c2": 12.776287331904019, - "c3": 12.858095366710756, - "c4": 12.825496796705007, - "c5": 12.842940301729714, - "c6": 12.898344571805135, - "c7": 12.785093984731981 + "offsets": { + "c1": 21.521035598705502, + "c2": 18.446601941747662, + "c3": 15.372168284789513, + "c4": 12.297734627831671, + "c5": 9.223300970873831, + "c6": 6.148867313915989, + "c7": 3.0744336569578414 }, "rgb": [222, 0, 59] }, @@ -443994,23 +443994,23 @@ "year": 1828, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 21.76284604949766, - "c2": 24.822062467261695, - "c3": -0.7843777082275665, - "c4": -11.971836297970782, - "c5": 25.914021604762887, - "c6": -8.615974112265487, - "c7": 4.558806660328315 + "points": { + "c1": 33.84587992150646, + "c2": -23.33951199990596, + "c3": 4.659889778876874, + "c4": -38.0892670425389, + "c5": -36.98100121875161, + "c6": -1.7431953218507061, + "c7": 19.06428223399859 }, - "vertexSeeds": { - "c1": 7.166467253844505, - "c2": 7.221805634948168, - "c3": 7.095288852790841, - "c4": 7.140885335479568, - "c5": 7.140527899989971, - "c6": 7.052795927903307, - "c7": 7.182585381214329 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083218, + "c3": 8.668515950069349, + "c4": 6.934812760055479, + "c5": 5.201109570041609, + "c6": 3.4674063800277395, + "c7": 1.7337031900138697 }, "rgb": [58, 15, 49] }, @@ -444021,23 +444021,23 @@ "year": 1828, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 13.877583268355053, - "c2": 16.8760048691805, - "c3": -11.465047087978384, - "c4": 20.11564743780842, - "c5": 23.70676918746876, - "c6": 13.06869471028471, - "c7": -39.61666607367113 + "points": { + "c1": 9.265017853753001, + "c2": -36.436497896562834, + "c3": 38.30950999670821, + "c4": -2.319980553816464, + "c5": -36.50934260947563, + "c6": 29.101045138742244, + "c7": 8.590753446094702 }, - "vertexSeeds": { - "c1": 6.380625968582296, - "c2": 6.466614082400322, - "c3": 6.391413489954357, - "c4": 6.447221308450893, - "c5": 6.449827435582968, - "c6": 6.409384052023265, - "c7": 6.360475768629931 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434119, + "c3": 7.720758206195099, + "c4": 6.176606564956079, + "c5": 4.632454923717059, + "c6": 3.0883032824780394, + "c7": 1.5441516412390197 }, "rgb": [86, 146, 138] }, @@ -444048,23 +444048,23 @@ "year": 1828, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -4.164713319261189, - "c2": 3.1644466419663644, - "c3": 16.905907697840213, - "c4": 31.41398094648946, - "c5": 22.544802549804963, - "c6": 17.18752203439942, - "c7": 33.23431078609221 + "points": { + "c1": -25.539424363952612, + "c2": -19.421430346551247, + "c3": 29.453905660929166, + "c4": -20.4761406565175, + "c5": 10.538508375915335, + "c6": 3.1623288147249795, + "c7": -4.710161502465443 }, - "vertexSeeds": { - "c1": 2.2207456659533364, - "c2": 2.4080200007670642, - "c3": 2.3317668454877882, - "c4": 2.322606267406892, - "c5": 2.3949563529198494, - "c6": 2.4427180624747433, - "c7": 2.2334377802499277 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081833, + "c3": 2.9357374017568203, + "c4": 2.3485899214054573, + "c5": 1.7614424410540894, + "c6": 1.1742949607027262, + "c7": 0.5871474803513631 }, "rgb": [77, 76, 132] }, @@ -444075,23 +444075,23 @@ "year": 1828, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -6.723398738198085, - "c2": -27.807469166092343, - "c3": 5.936973331479422, - "c4": 12.082542581302889, - "c5": -26.63404454676421, - "c6": -24.463239673954572, - "c7": 7.063729878903921 + "points": { + "c1": -13.90736220832607, + "c2": 7.223713646183455, + "c3": 10.644034379747325, + "c4": 20.33679937309219, + "c5": -18.68702393721743, + "c6": 12.700325500295875, + "c7": 13.09128110714471 }, - "vertexSeeds": { - "c1": 10.751502360867892, - "c2": 10.7696239718043, - "c3": 10.961199043539228, - "c4": 10.706173859291637, - "c5": 10.795710556696845, - "c6": 10.780302788273836, - "c7": 10.695594403858314 + "offsets": { + "c1": 18.349514563106798, + "c2": 15.728155339805845, + "c3": 13.106796116504889, + "c4": 10.485436893203934, + "c5": 7.864077669902979, + "c6": 5.242718446601909, + "c7": 2.6213592233009546 }, "rgb": [77, 76, 132] }, @@ -444102,23 +444102,23 @@ "year": 1828, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 0.5431453891754714, - "c2": 7.7889726999476565, - "c3": 21.627289095802155, - "c4": -20.05196101077923, - "c5": 12.961910053466518, - "c6": -1.2051529361611415, - "c7": -33.66827304899374 + "points": { + "c1": -1.6708261464588503, + "c2": 21.113690073860212, + "c3": -5.520691866572907, + "c4": 35.25053654423147, + "c5": -33.12209598641779, + "c6": -8.45759804149208, + "c7": 28.092741796522596 }, - "vertexSeeds": { - "c1": 7.5415367396563475, - "c2": 7.724231454629117, - "c3": 7.702177878162647, - "c4": 7.635095847131923, - "c5": 7.7440859835938, - "c6": 7.686943450404202, - "c7": 7.651371551236284 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128979, + "c3": 9.269533055940807, + "c4": 7.4156264447526326, + "c5": 5.561719833564459, + "c6": 3.707813222376285, + "c7": 1.8539066111881737 }, "rgb": [58, 15, 49] }, @@ -444129,23 +444129,23 @@ "year": 1828, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": -32.78851504423305, - "c2": -15.30300704407896, - "c3": 5.168881672814706, - "c4": -28.98571302604939, - "c5": 30.81158417966637, - "c6": 33.09343692477603, - "c7": -3.305054037865041 + "points": { + "c1": -41.49222848677938, + "c2": -9.065674281498204, + "c3": 31.722283423357524, + "c4": -20.719921633712847, + "c5": -12.220894287898105, + "c6": 26.387778533728465, + "c7": 22.520285300953006 }, - "vertexSeeds": { - "c1": 16.2779902667522, - "c2": 14.597167407621926, - "c3": 15.356163150286328, - "c4": 16.891712871030027, - "c5": 17.768793170144136, - "c6": 15.587596964885229, - "c7": 16.570347893466728 + "offsets": { + "c1": 30.1294498381877, + "c2": 25.82524271844661, + "c3": 21.521035598705495, + "c4": 17.216828478964405, + "c5": 12.912621359223294, + "c6": 8.608414239482203, + "c7": 4.30420711974111 }, "rgb": [77, 76, 132] }, @@ -444156,23 +444156,23 @@ "year": 1828, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -31.758360573113784, - "c2": 28.519941666408947, - "c3": 27.48638479274466, - "c4": -25.0522792991607, - "c5": -15.869106922213337, - "c6": 31.577419769015364, - "c7": -22.823187463263068 + "points": { + "c1": 29.11945180013506, + "c2": 20.515175805833806, + "c3": -5.412006712609987, + "c4": 29.11933703024318, + "c5": 3.15878612244137, + "c6": -19.61207451639988, + "c7": -14.605792041585836 }, - "vertexSeeds": { - "c1": 9.62193698325071, - "c2": 9.655334903726413, - "c3": 9.71068595355837, - "c4": 9.525391041804925, - "c5": 9.65765860150604, - "c6": 9.663109707463784, - "c7": 9.55900255728041 + "offsets": { + "c1": 16.310679611650485, + "c2": 13.980582524271844, + "c3": 11.650485436893204, + "c4": 9.320388349514563, + "c5": 6.990291262135922, + "c6": 4.660194174757281, + "c7": 2.3300970873786406 }, "rgb": [222, 0, 59] }, @@ -444183,23 +444183,23 @@ "year": 1828, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 37.35459016932743, - "c2": 11.327444877295967, - "c3": -28.220571477312614, - "c4": 16.471327011717875, - "c5": 12.44747124206011, - "c6": 29.974685245437634, - "c7": -1.6696686661199536 + "points": { + "c1": 15.30036044956882, + "c2": 21.121757354769635, + "c3": -23.56542387028062, + "c4": 19.060215590232694, + "c5": 35.52971152875548, + "c6": 47.071414545385885, + "c7": -6.943884023672261 }, - "vertexSeeds": { - "c1": 0.019430051813471502, - "c2": 0.019430051813471502, - "c3": 0.019430051813471502, - "c4": 0.019430051813471502, - "c5": 0.019430051813471502, - "c6": 0.019430051813471502, - "c7": 0.019430051813471502 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -444210,23 +444210,23 @@ "year": 1828, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 17.96660798916082, - "c2": -1.897642058167449, - "c3": 2.5242878361557075, - "c4": 30.221699850934826, - "c5": -30.81741305074214, - "c6": -26.492931915879858, - "c7": -25.405092737918995 + "points": { + "c1": 14.226456761746071, + "c2": 9.196829955992719, + "c3": 1.4797631162878986, + "c4": -31.630671039947703, + "c5": -2.1951275287675784, + "c6": 3.165665921878386, + "c7": -29.907086359900667 }, - "vertexSeeds": { - "c1": 3.0053741779316097, - "c2": 2.9756813776406204, - "c3": 3.0398111980933678, - "c4": 2.9047895900050786, - "c5": 2.9953012870795104, - "c6": 3.2057862672847173, - "c7": 2.926410523365067 + "offsets": { + "c1": 5.372168284789644, + "c2": 4.604715672676834, + "c3": 3.8372630605640325, + "c4": 3.0698104484512223, + "c5": 2.3023578363384214, + "c6": 1.5349052242256112, + "c7": 0.7674526121128101 }, "rgb": [86, 146, 138] }, @@ -444237,23 +444237,23 @@ "year": 1828, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 31.3615939136575, - "c2": 0.2654518802215051, - "c3": -7.74914349037503, - "c4": 8.263230346355122, - "c5": 21.84735349950072, - "c6": -6.791645911929123, - "c7": 6.994335963212322 + "points": { + "c1": -11.06738879100103, + "c2": -9.886893985278853, + "c3": 18.098813073951106, + "c4": -3.014635791025171, + "c5": -6.44384884296262, + "c6": -20.687729032382407, + "c7": -9.057663857913933 }, - "vertexSeeds": { - "c1": 10.11168860661409, - "c2": 10.058827614884354, - "c3": 10.051446247520575, - "c4": 9.983156356827084, - "c5": 9.98038039578239, - "c6": 10.06048317077643, - "c7": 10.218231721128154 + "offsets": { + "c1": 17.766990291262136, + "c2": 15.228848821081852, + "c3": 12.690707350901517, + "c4": 10.152565880721236, + "c5": 7.614424410540901, + "c6": 5.076282940360618, + "c7": 2.538141470180334 }, "rgb": [77, 76, 132] }, @@ -444264,23 +444264,23 @@ "year": 1827, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 18.499509297189817, - "c2": -11.283609202914167, - "c3": -12.086510692290824, - "c4": -15.050879721862799, - "c5": 10.458029272277756, - "c6": -3.884628913507381, - "c7": 5.274425084239766 + "points": { + "c1": -6.932772952214865, + "c2": 20.75986050859356, + "c3": 4.53811649360366, + "c4": -16.498046519465298, + "c5": 9.726968202786018, + "c6": -8.801492742485758, + "c7": 5.742015314882593 }, - "vertexSeeds": { - "c1": 4.347282786267185, - "c2": 4.346100360250392, - "c3": 4.335237265226281, - "c4": 4.3424856519197546, - "c5": 4.328772153864833, - "c6": 4.348443261269455, - "c7": 4.33769691383086 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.24133148404996, + "c3": 5.201109570041564, + "c4": 4.160887656033272, + "c5": 3.12066574202498, + "c6": 2.080443828016688, + "c7": 1.0402219140082922 }, "rgb": [86, 146, 138] }, @@ -444291,23 +444291,23 @@ "year": 1827, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -0.9864195049700761, - "c2": -2.770618510234968, - "c3": 9.395219872729598, - "c4": 25.53548479249958, - "c5": -14.153220052463723, - "c6": 28.268958776793504, - "c7": 12.024380355710996 + "points": { + "c1": 21.48784832358814, + "c2": 12.160328001452577, + "c3": -24.136599465602757, + "c4": -25.37811664362788, + "c5": -5.925040453360829, + "c6": -21.767275782426005, + "c7": 8.939388372851319 }, - "vertexSeeds": { - "c1": 7.193070985439518, - "c2": 7.202511626081081, - "c3": 7.250942791916007, - "c4": 7.259698371967107, - "c5": 7.168171319037173, - "c6": 6.988910594912112, - "c7": 7.17211268691481 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083199, + "c3": 8.668515950069356, + "c4": 6.9348127600554665, + "c5": 5.2011095700416226, + "c6": 3.4674063800277333, + "c7": 1.7337031900138895 }, "rgb": [77, 76, 132] }, @@ -444318,23 +444318,23 @@ "year": 1828, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 20.948942914358415, - "c2": 16.787126245138314, - "c3": 27.809296146149823, - "c4": -10.85411441897644, - "c5": -13.140402618163396, - "c6": 18.743853215241526, - "c7": 28.437000289937824 + "points": { + "c1": 30.5771157288118, + "c2": 1.7492748768992463, + "c3": 21.69102968405085, + "c4": 25.986052479524066, + "c5": 18.179605497123195, + "c6": -27.86544454442761, + "c7": 14.040587129306846 }, - "vertexSeeds": { - "c1": 6.800518134715026, - "c2": 6.800518134715026, - "c3": 6.800518134715026, - "c4": 6.800518134715026, - "c5": 6.800518134715026, - "c6": 6.800518134715026, - "c7": 6.800518134715026 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -444345,23 +444345,23 @@ "year": 1828, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 5.268232108338964, - "c2": 3.5920221836816992, - "c3": 12.5179879678251, - "c4": 23.084460366270868, - "c5": -24.51689335574132, - "c6": -14.100411418753296, - "c7": -27.229720532076698 + "points": { + "c1": 10.129395817197661, + "c2": 16.779777132075935, + "c3": -32.4944982975254, + "c4": -19.78691939959156, + "c5": -20.830220011940778, + "c6": 15.518773893922571, + "c7": 32.0293610157171 }, - "vertexSeeds": { - "c1": 15.840236752656136, - "c2": 14.539693631822495, - "c3": 15.855692415789694, - "c4": 15.008281178441159, - "c5": 14.69901638303457, - "c6": 14.721596479409625, - "c7": 15.080323674259837 + "offsets": { + "c1": 27.055016181229774, + "c2": 23.19001386962553, + "c3": 19.325011558021284, + "c4": 15.46000924641701, + "c5": 11.595006934812766, + "c6": 7.730004623208521, + "c7": 3.8650023116042433 }, "rgb": [77, 76, 132] }, @@ -444372,23 +444372,23 @@ "year": 1828, "resistanceReported": false, "duration": 45792000, - "curveSeeds": { - "c1": 40.057781013471406, - "c2": 39.231466704188115, - "c3": -51.85827617928537, - "c4": 42.09356196336996, - "c5": -38.42646321424613, - "c6": 57.0081717250281, - "c7": -2.7641156899909305 + "points": { + "c1": 60.42642464445914, + "c2": -38.86242763986738, + "c3": 55.73431676138369, + "c4": -1.4813384135427299, + "c5": -32.03853616168621, + "c6": -53.90916286688008, + "c7": 6.661234575215936 }, - "vertexSeeds": { - "c1": 4.205351121968903, - "c2": 4.199556423158699, - "c3": 4.212001632867889, - "c4": 4.201595816089019, - "c5": 4.213008738974817, - "c6": 4.213110100191595, - "c7": 4.207479328860641 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768406, + "c3": 5.039297272307038, + "c4": 4.031437817845671, + "c5": 3.0235783633841025, + "c6": 2.015718908922735, + "c7": 1.0078594544613675 }, "rgb": [77, 76, 132] }, @@ -444399,23 +444399,23 @@ "year": 1828, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -2.5438306074568686, - "c2": -14.504583280611197, - "c3": 27.003438216811023, - "c4": 3.768895903937139, - "c5": 3.234231105063852, - "c6": -18.045834299142633, - "c7": 15.679571092292282 + "points": { + "c1": -8.205349532114013, + "c2": 2.1393816454838905, + "c3": -2.342046638860122, + "c4": 18.915753434293645, + "c5": 21.679856631296747, + "c6": 10.004716474712534, + "c7": 14.899810708640107 }, - "vertexSeeds": { - "c1": 7.010486652429604, - "c2": 7.02800350440757, - "c3": 7.078176181906824, - "c4": 6.78552157149751, - "c5": 7.040570392334756, - "c6": 7.211438913151282, - "c7": 6.950330367329147 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002778, + "c3": 8.62228386500232, + "c4": 6.8978270920018625, + "c5": 5.173370319001404, + "c6": 3.4489135460009166, + "c7": 1.7244567730004583 }, "rgb": [86, 146, 138] }, @@ -444426,23 +444426,23 @@ "year": 1828, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 25.23037650967655, - "c2": -22.339393033489205, - "c3": 7.844442758056264, - "c4": 21.762843936793804, - "c5": 8.073933247842685, - "c6": -21.012885647828455, - "c7": 29.12750221714418 + "points": { + "c1": 0.2976290600868161, + "c2": 0.810362982782248, + "c3": -15.81286171090035, + "c4": -19.38757726262056, + "c5": 7.91205556305589, + "c6": -7.815140288277423, + "c7": -29.399535168979256 }, - "vertexSeeds": { - "c1": 7.07199551891637, - "c2": 7.007852369043582, - "c3": 7.368101945063414, - "c4": 7.1746826396885695, - "c5": 7.324616475493163, - "c6": 7.277973329649719, - "c7": 7.0521278698650605 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.568654646324541, + "c3": 8.80721220527047, + "c4": 7.04576976421637, + "c5": 5.2843273231622705, + "c6": 3.522884882108171, + "c7": 1.7614424410541 }, "rgb": [222, 0, 59] }, @@ -444453,23 +444453,23 @@ "year": 1828, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -21.717151606643792, - "c2": -24.60195245720447, - "c3": -16.641854630646463, - "c4": -2.2524010962877803, - "c5": 2.143009891723729, - "c6": 17.33665982184242, - "c7": -27.2258651688824 + "points": { + "c1": 0.35781505922212986, + "c2": -19.45190384080443, + "c3": -20.03398734735135, + "c4": -15.764076955715774, + "c5": -23.226820809139255, + "c6": -27.96547075785502, + "c7": 9.505325070325423 }, - "vertexSeeds": { - "c1": 6.801071098843098, - "c2": 6.8686715663302085, - "c3": 7.089303482648818, - "c4": 6.917317996188932, - "c5": 6.898127676979041, - "c6": 7.199693926818612, - "c7": 6.849772515248518 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002778, + "c3": 8.62228386500232, + "c4": 6.8978270920018625, + "c5": 5.173370319001404, + "c6": 3.4489135460009166, + "c7": 1.7244567730004583 }, "rgb": [86, 146, 138] }, @@ -444480,23 +444480,23 @@ "year": 1828, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -19.804059737825515, - "c2": -6.584003456137847, - "c3": -14.802294620824245, - "c4": -5.369138594363957, - "c5": 13.3135799542531, - "c6": 24.372187211770758, - "c7": 18.317697878380372 + "points": { + "c1": -7.763171691322341, + "c2": 30.771780439456094, + "c3": 9.023194436261448, + "c4": -13.035150668819536, + "c5": 31.910361712380507, + "c6": 11.556627674530134, + "c7": -34.818371681670776 }, - "vertexSeeds": { - "c1": 11.268472162213444, - "c2": 10.322590213438993, - "c3": 10.524482893835533, - "c4": 11.017064017866083, - "c5": 10.868564457033289, - "c6": 10.861466426043425, - "c7": 11.08558076549888 + "offsets": { + "c1": 18.996763754045308, + "c2": 16.28294036061025, + "c3": 13.569116967175237, + "c4": 10.855293573740182, + "c5": 8.141470180305125, + "c6": 5.427646786870111, + "c7": 2.7138233934350553 }, "rgb": [77, 76, 132] }, @@ -444507,23 +444507,23 @@ "year": 1828, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 17.877756011974633, - "c2": -5.067119877840106, - "c3": -36.86158302107367, - "c4": 28.362282164579263, - "c5": 20.393408791081136, - "c6": 19.032126708756785, - "c7": 31.140481417865878 + "points": { + "c1": -40.8592632612229, + "c2": 12.66030984840065, + "c3": 43.345193293628775, + "c4": 34.26794999594261, + "c5": -9.369702310896976, + "c6": 38.438151842058055, + "c7": 41.477850039243286 }, - "vertexSeeds": { - "c1": 5.6834869187547925, - "c2": 5.698701727523247, - "c3": 5.755407530160459, - "c4": 5.681263174377298, - "c5": 5.671683172403278, - "c6": 5.806882400092257, - "c7": 5.821086743002419 + "offsets": { + "c1": 9.741100323624595, + "c2": 8.34951456310681, + "c3": 6.957928802588975, + "c4": 5.56634304207119, + "c5": 4.174757281553405, + "c6": 2.7831715210355696, + "c7": 1.3915857605177848 }, "rgb": [222, 0, 59] }, @@ -444534,23 +444534,23 @@ "year": 1827, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -6.812442881707804, - "c2": 6.310874015539586, - "c3": 17.400017097656168, - "c4": -6.824774853646254, - "c5": -18.41831438849412, - "c6": 0.49039851211727736, - "c7": 12.225829601395851 + "points": { + "c1": 3.4054109290293226, + "c2": -22.201355069492934, + "c3": -22.656993315952157, + "c4": 4.913372656181256, + "c5": 16.753200413346157, + "c6": -21.068106066846504, + "c7": -10.00807393972245 }, - "vertexSeeds": { - "c1": 5.227296478879043, - "c2": 5.2357300975433985, - "c3": 5.232255192183584, - "c4": 5.263355488291027, - "c5": 5.226753604998745, - "c6": 5.233144808883385, - "c7": 5.264562356777636 + "offsets": { + "c1": 8.802588996763754, + "c2": 7.545076282940396, + "c3": 6.287563569117038, + "c4": 5.030050855293681, + "c5": 3.7725381414700734, + "c6": 2.5150254276467154, + "c7": 1.2575127138233577 }, "rgb": [86, 146, 138] }, @@ -444561,23 +444561,23 @@ "year": 1828, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": -13.033987918927469, - "c2": 2.9571625285808736, - "c3": -8.751123829925184, - "c4": 11.217710267445838, - "c5": 18.20882622894382, - "c6": 16.493559963346712, - "c7": -23.731711340460045 + "points": { + "c1": 15.159864566533052, + "c2": 18.90121534312909, + "c3": 1.386899804297414, + "c4": -10.565751616907434, + "c5": 18.840230080677813, + "c6": 19.610472977638338, + "c7": 22.36726007342434 }, - "vertexSeeds": { - "c1": 11.398986919116043, - "c2": 11.397689758040888, - "c3": 11.382929831493888, - "c4": 11.375754784146112, - "c5": 11.395746904611313, - "c6": 11.390727332471245, - "c7": 11.387788921270843 + "offsets": { + "c1": 19.02912621359223, + "c2": 16.31067961165002, + "c3": 13.592233009708892, + "c4": 10.87378640776668, + "c5": 8.155339805825552, + "c6": 5.43689320388334, + "c7": 2.718446601942211 }, "rgb": [86, 146, 138] }, @@ -444588,23 +444588,23 @@ "year": 1827, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -25.963793728277622, - "c2": 20.869488060892508, - "c3": 12.149179734520857, - "c4": -22.230582450143483, - "c5": 0.7318043159064551, - "c6": -22.94604659295729, - "c7": -13.470154838705232 + "points": { + "c1": 7.582775476058089, + "c2": -9.124274972246038, + "c3": 18.241032607765227, + "c4": -8.49845893515744, + "c5": -4.7882864480539595, + "c6": -3.033401247141061, + "c7": -19.88186940951719 }, - "vertexSeeds": { - "c1": 10.277436316155962, - "c2": 10.7784212278418, - "c3": 11.038082685252133, - "c4": 10.480419453727603, - "c5": 11.052206359812349, - "c6": 11.073747628606881, - "c7": 10.711842432675576 + "offsets": { + "c1": 18.54368932038835, + "c2": 15.894590846047175, + "c3": 13.245492371705957, + "c4": 10.596393897364782, + "c5": 7.947295423023568, + "c6": 5.298196948682391, + "c7": 2.649098474341176 }, "rgb": [77, 76, 132] }, @@ -444615,23 +444615,23 @@ "year": 1828, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -4.138054722628066, - "c2": 4.550525063645477, - "c3": 18.60614829803794, - "c4": 5.019327009773587, - "c5": -9.680741487626499, - "c6": -17.264430111772377, - "c7": 1.2554739579336776 + "points": { + "c1": 14.610568199536981, + "c2": -24.12659277700374, + "c3": -19.151515548128916, + "c4": -0.9108157360413962, + "c5": -20.083923278108024, + "c6": -26.72265488525849, + "c7": -24.132354682629558 }, - "vertexSeeds": { - "c1": 8.18447558194794, - "c2": 8.074166792309624, - "c3": 8.29094548123441, - "c4": 8.31850789166832, - "c5": 8.03999670168285, - "c6": 8.008098130324885, - "c7": 8.190165997680374 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.92787794729541, + "c3": 9.939898289412874, + "c4": 7.951918631530289, + "c5": 5.963938973647705, + "c6": 3.975959315765168, + "c7": 1.987979657882584 }, "rgb": [77, 76, 132] }, @@ -444642,23 +444642,23 @@ "year": 1828, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": 23.306562733240668, - "c2": -5.2376571768198765, - "c3": -16.270415840241974, - "c4": -14.8674857956558, - "c5": 3.203171967875697, - "c6": -3.527843172495551, - "c7": 7.4360456592973065 + "points": { + "c1": -18.44938679905566, + "c2": -17.639727392409053, + "c3": 22.30511126499067, + "c4": 20.12115822843637, + "c5": 1.8686327226833441, + "c6": 3.4070580561803325, + "c7": 15.617624807088298 }, - "vertexSeeds": { - "c1": 10.355503539853554, - "c2": 10.21608175826125, - "c3": 10.221874030898544, - "c4": 10.542675204755916, - "c5": 10.187060121733454, - "c6": 10.29421367173151, - "c7": 10.692753832333063 + "offsets": { + "c1": 17.96116504854369, + "c2": 15.395284327323147, + "c3": 12.829403606102662, + "c4": 10.263522884882118, + "c5": 7.697642163661573, + "c6": 5.131761442441029, + "c7": 2.5658807212205446 }, "rgb": [58, 15, 49] }, @@ -444669,23 +444669,23 @@ "year": 1828, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": 6.991242524949627, - "c2": 16.505236689444764, - "c3": 3.8954144048007464, - "c4": 13.333872111375243, - "c5": 17.799171392144935, - "c6": 22.980130738175703, - "c7": 23.179408046660384 + "points": { + "c1": -8.200926903831007, + "c2": 38.46716856956715, + "c3": -32.805911908297745, + "c4": -0.5059030003769678, + "c5": 12.973500115945363, + "c6": 7.589070172596244, + "c7": 15.025895693650376 }, - "vertexSeeds": { - "c1": 9.41291766709443, - "c2": 9.24730228577003, - "c3": 9.369750151772221, - "c4": 9.142049862932897, - "c5": 9.367616227526, - "c6": 9.134305466571899, - "c7": 8.884229127103675 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588079, + "c3": 11.257512713823381, + "c4": 9.00601017105871, + "c5": 6.754507628294039, + "c6": 4.503005085529369, + "c7": 2.2515025427646704 }, "rgb": [222, 0, 59] }, @@ -444696,23 +444696,23 @@ "year": 1828, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 1.3096126050347152, - "c2": -14.351203007126365, - "c3": -2.2021837019155583, - "c4": 20.610851832393188, - "c5": 10.975959460817187, - "c6": -1.549344076856137, - "c7": -19.223274799382533 + "points": { + "c1": 1.5329660288803098, + "c2": -0.3129052122970819, + "c3": 20.26094536889127, + "c4": -13.70876298552405, + "c5": 12.386351978777007, + "c6": -26.509837991000452, + "c7": 25.34094312299232 }, - "vertexSeeds": { - "c1": 8.89965977333725, - "c2": 8.90479653161632, - "c3": 8.927271489323795, - "c4": 8.97303156354264, - "c5": 8.909626670026912, - "c6": 8.960426685450248, - "c7": 8.947526065217074 + "offsets": { + "c1": 14.983818770226536, + "c2": 12.843273231622806, + "c3": 10.702727693018863, + "c4": 8.562182154415133, + "c5": 6.421636615811403, + "c6": 4.281091077207673, + "c7": 2.14054553860373 }, "rgb": [222, 0, 59] }, @@ -444723,23 +444723,23 @@ "year": 1828, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": -31.059456341395702, - "c2": -32.605480169286324, - "c3": 31.533078847051243, - "c4": -26.403616829405927, - "c5": 34.37993450694435, - "c6": 36.48561829447772, - "c7": -30.632471526773248 + "points": { + "c1": 1.134486952731244, + "c2": 19.19581361491604, + "c3": 18.114079902045773, + "c4": -14.57265489707573, + "c5": 35.26173378837643, + "c6": -7.068005431712628, + "c7": 7.784770502970524 }, - "vertexSeeds": { - "c1": 5.366637244949541, - "c2": 5.3770094231614225, - "c3": 5.368025264560349, - "c4": 5.3759489165876735, - "c5": 5.387414154170532, - "c6": 5.385752873336608, - "c7": 5.381613946428379 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221951, + "c3": 6.4493758668516685, + "c4": 5.1595006934813865, + "c5": 3.8696255201108474, + "c6": 2.579750346740565, + "c7": 1.2898751733702825 }, "rgb": [58, 15, 49] }, @@ -444750,23 +444750,23 @@ "year": 1828, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -4.294651925846978, - "c2": -14.9685057564838, - "c3": 6.993241164667374, - "c4": -0.12926270237322512, - "c5": 23.05722519200529, - "c6": -25.331762014407136, - "c7": 22.48739661641163 + "points": { + "c1": 14.201817436785802, + "c2": 13.462461584928782, + "c3": 30.117867131750252, + "c4": -37.49239055432831, + "c5": 15.30553024368006, + "c6": -1.508893089011515, + "c7": 4.913914277747992 }, - "vertexSeeds": { - "c1": 7.540447816482298, - "c2": 7.478357769663659, - "c3": 7.468058466170243, - "c4": 7.519563836261477, - "c5": 7.519426499528403, - "c6": 7.494419466604882, - "c7": 7.475763227063765 + "offsets": { + "c1": 12.62135922330097, + "c2": 10.818307905686526, + "c3": 9.01525658807208, + "c4": 7.212205270457636, + "c5": 5.409153952843335, + "c6": 3.60610263522889, + "c7": 1.803051317614445 }, "rgb": [86, 146, 138] }, @@ -444777,23 +444777,23 @@ "year": 1827, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": -9.009792594919544, - "c2": 21.353075074800156, - "c3": 9.718464204503949, - "c4": -4.371411574569013, - "c5": 18.520449926940888, - "c6": 7.930756296567093, - "c7": 4.5372878089181405 + "points": { + "c1": -16.324275337471995, + "c2": 18.594120234152054, + "c3": 17.472704587727033, + "c4": 20.82825075989808, + "c5": -2.3788630188721207, + "c6": -24.48310476522445, + "c7": 0.4810316592593473 }, - "vertexSeeds": { - "c1": 5.922230602631536, - "c2": 5.883107579001694, - "c3": 5.686483458764998, - "c4": 5.798332979341346, - "c5": 5.793207160685071, - "c6": 5.819138927079898, - "c7": 5.760403349050011 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -444804,23 +444804,23 @@ "year": 1828, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": -2.3506004592849123, - "c2": -14.397859798782548, - "c3": -22.776477275048563, - "c4": 6.895438231208082, - "c5": -22.9236210645169, - "c6": -25.531437884659073, - "c7": -6.533468904258804 + "points": { + "c1": 30.35907807022781, + "c2": 3.792790767983483, + "c3": -31.63389861589093, + "c4": -23.4416672515554, + "c5": 1.9627880492344758, + "c6": -8.237344022766415, + "c7": -13.619135363202457 }, - "vertexSeeds": { - "c1": 4.352331606217616, - "c2": 4.352331606217616, - "c3": 4.352331606217616, - "c4": 4.352331606217616, - "c5": 4.352331606217616, - "c6": 4.352331606217616, - "c7": 4.352331606217616 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -444831,23 +444831,23 @@ "year": 1827, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 13.536835465505597, - "c2": 4.387027493107084, - "c3": -11.271297327020141, - "c4": -1.9502294964474203, - "c5": -9.761523282993775, - "c6": 13.071318878772814, - "c7": 9.797628530724872 + "points": { + "c1": -22.183611931800986, + "c2": -22.150067305484534, + "c3": 8.04295324572459, + "c4": 17.549923927868925, + "c5": 21.520966501572595, + "c6": -14.725807779898355, + "c7": 10.82390184626449 }, - "vertexSeeds": { - "c1": 7.419260100407081, - "c2": 6.971216013083779, - "c3": 6.957215002528438, - "c4": 7.281509442728459, - "c5": 7.4339575954756345, - "c6": 7.230229760234801, - "c7": 6.8768043754964925 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [86, 146, 138] }, @@ -444858,23 +444858,23 @@ "year": 1827, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": -2.075254289899478, - "c2": 11.23740531042688, - "c3": 3.1707772241109886, - "c4": 9.19087372880525, - "c5": -3.9944812755757724, - "c6": -7.09908374367011, - "c7": 5.236284215381804 + "points": { + "c1": 11.89351106013769, + "c2": -16.066672337407642, + "c3": -0.592672166072699, + "c4": -8.226276042689975, + "c5": -13.367907930257571, + "c6": -6.0184539656582245, + "c7": -1.7353674165086943 }, - "vertexSeeds": { - "c1": 11.027128646803527, - "c2": 10.821853643569064, - "c3": 10.664957432713994, - "c4": 10.833402467635619, - "c5": 10.977753328398961, - "c6": 10.767245844724087, - "c7": 10.842294415602849 + "offsets": { + "c1": 18.41423948220065, + "c2": 15.783633841886232, + "c3": 13.153028201571905, + "c4": 10.522422561257489, + "c5": 7.891816920943161, + "c6": 5.2612112806287445, + "c7": 2.6306056403143265 }, "rgb": [238, 201, 159] }, @@ -444885,23 +444885,23 @@ "year": 1828, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 15.923535605717309, - "c2": -22.914452723191, - "c3": -4.207336171119941, - "c4": 10.796814662291634, - "c5": 22.751195977493968, - "c6": -19.062229692114574, - "c7": -21.258810157916663 + "points": { + "c1": 26.967706230307694, + "c2": 7.891522460071048, + "c3": -9.209669666613738, + "c4": -11.648721420654292, + "c5": 17.374912710651177, + "c6": -24.05291049177156, + "c7": -11.307107698556152 }, - "vertexSeeds": { - "c1": 7.951297935758799, - "c2": 7.620417140314141, - "c3": 7.426279509027384, - "c4": 7.819665817002055, - "c5": 7.314532472545352, - "c6": 7.205050825251793, - "c7": 7.67626762915411 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -444912,23 +444912,23 @@ "year": 1827, "resistanceReported": false, "duration": 11232000, - "curveSeeds": { - "c1": -19.746851732163194, - "c2": -12.021205741568329, - "c3": -10.781728332271127, - "c4": -17.18370897491008, - "c5": -11.94379247761431, - "c6": 15.186587803483327, - "c7": -5.096020603738346 + "points": { + "c1": -6.432694180614842, + "c2": -22.82550700436869, + "c3": -12.627810407045457, + "c4": 8.73986481893401, + "c5": 5.766166224733748, + "c6": 12.368172210988831, + "c7": -13.756890928454732 }, - "vertexSeeds": { - "c1": 2.817357512953368, - "c2": 2.817357512953368, - "c3": 2.817357512953368, - "c4": 2.817357512953368, - "c5": 2.817357512953368, - "c6": 2.817357512953368, - "c7": 2.817357512953368 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -444939,23 +444939,23 @@ "year": 1828, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 15.858595777774166, - "c2": -0.92137327402342, - "c3": 9.634105464369629, - "c4": -11.70017262932454, - "c5": 17.835747164192764, - "c6": -11.365105133623254, - "c7": -17.286817659515282 + "points": { + "c1": 23.409352074890972, + "c2": -4.433364179787905, + "c3": 8.94399240074372, + "c4": 5.396432857105776, + "c5": -4.734146261935855, + "c6": 1.1274280671918362, + "c7": 24.30476755180452 }, - "vertexSeeds": { - "c1": 12.21643805051787, - "c2": 11.903339320738164, - "c3": 12.116691378711758, - "c4": 12.195060729353132, - "c5": 12.162730996676462, - "c6": 11.935110925461075, - "c7": 12.288963345585067 + "offsets": { + "c1": 20.841423948220065, + "c2": 17.864077669902922, + "c3": 14.886731391585782, + "c4": 11.909385113268641, + "c5": 8.932038834951424, + "c6": 5.954692556634283, + "c7": 2.9773462783171416 }, "rgb": [58, 15, 49] }, @@ -444966,23 +444966,23 @@ "year": 1828, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": 8.329782004595796, - "c2": -27.040662655785432, - "c3": 7.966188442021018, - "c4": 4.791598297442416, - "c5": -7.310859928445613, - "c6": -12.86845375663021, - "c7": -18.507800140775895 + "points": { + "c1": 12.678737533489524, + "c2": -1.4996470527199364, + "c3": -3.505689757430286, + "c4": -10.283150814699738, + "c5": 11.269294226214171, + "c6": -11.84174074746964, + "c7": -1.8884821821552258 }, - "vertexSeeds": { - "c1": 4.352331606217616, - "c2": 4.352331606217616, - "c3": 4.352331606217616, - "c4": 4.352331606217616, - "c5": 4.352331606217616, - "c6": 4.352331606217616, - "c7": 4.352331606217616 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -444993,23 +444993,23 @@ "year": 1828, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 17.491061651791306, - "c2": 1.6324834498178546, - "c3": 21.02949394358248, - "c4": -16.09262126725928, - "c5": 27.571158476645046, - "c6": -21.710199732771443, - "c7": 15.881303931403103 + "points": { + "c1": 10.730823137243974, + "c2": -3.5501145020348766, + "c3": 22.750395160523922, + "c4": -9.568870233534145, + "c5": -28.66972428291374, + "c6": 10.129462908356672, + "c7": 18.87669691495278 }, - "vertexSeeds": { - "c1": 12.573918104138908, - "c2": 11.775363438142367, - "c3": 12.756302158774517, - "c4": 12.647190852714374, - "c5": 12.468204579866496, - "c6": 12.075449766321155, - "c7": 12.559263132152095 + "offsets": { + "c1": 21.45631067961165, + "c2": 18.391123439667123, + "c3": 15.325936199722596, + "c4": 12.260748959778068, + "c5": 9.195561719833583, + "c6": 6.1303744798890545, + "c7": 3.0651872399445272 }, "rgb": [86, 146, 138] }, @@ -445020,23 +445020,23 @@ "year": 1828, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": 19.253867219543128, - "c2": 25.29823136770619, - "c3": -28.64376702381445, - "c4": -5.998061023484432, - "c5": 5.086125433487663, - "c6": -15.164409421791479, - "c7": -13.524861742370089 + "points": { + "c1": -31.001308552527593, + "c2": -16.03692475974026, + "c3": -16.535553738089728, + "c4": 9.12770825383992, + "c5": 3.34951897301287, + "c6": -25.178120687245713, + "c7": -22.012143217157767 }, - "vertexSeeds": { - "c1": 13.424475911572557, - "c2": 13.416184307063453, - "c3": 13.412942940627731, - "c4": 13.410941552555922, - "c5": 13.418987180548402, - "c6": 13.410549374538297, - "c7": 13.424044130533243 + "offsets": { + "c1": 22.39482200647249, + "c2": 19.19556171983429, + "c3": 15.996301433193546, + "c4": 12.797041146555346, + "c5": 9.597780859917146, + "c6": 6.398520573278946, + "c7": 3.1992602866382 }, "rgb": [58, 15, 49] }, @@ -445047,23 +445047,23 @@ "year": 1828, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 20.494501814676568, - "c2": 20.08793345802942, - "c3": 17.692184927502275, - "c4": -29.652395718732812, - "c5": -23.532115135206897, - "c6": -26.30135749221386, - "c7": -15.6910250747171 + "points": { + "c1": 26.648584353077645, + "c2": -13.517118716009236, + "c3": 0.1425891501690444, + "c4": 16.946972182544165, + "c5": 19.50643015717541, + "c6": -17.69031616905106, + "c7": 13.843842497327785 }, - "vertexSeeds": { - "c1": 5.602154265675038, - "c2": 5.627726679756825, - "c3": 5.622093749321047, - "c4": 5.643788803972619, - "c5": 5.643573535816739, - "c6": 5.646745876601255, - "c7": 5.604056430665656 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744749, + "c3": 6.74988441978741, + "c4": 5.399907535829892, + "c5": 4.0499306518723746, + "c6": 2.6999537679150354, + "c7": 1.3499768839575177 }, "rgb": [77, 76, 132] }, @@ -445074,23 +445074,23 @@ "year": 1828, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 22.38627138854261, - "c2": -25.752013512261748, - "c3": -24.083166189624777, - "c4": 28.388235238522256, - "c5": 18.20140316668025, - "c6": 5.983765968985985, - "c7": 28.401641011174334 + "points": { + "c1": -3.461013488142875, + "c2": -36.883190726707305, + "c3": 25.90963094741545, + "c4": -0.2733459981935127, + "c5": -3.9084033298064114, + "c6": 4.687341540039689, + "c7": -35.72546226795663 }, - "vertexSeeds": { - "c1": 4.9492214569053345, - "c2": 4.884068200351807, - "c3": 4.857206443074057, - "c4": 4.876984546749042, - "c5": 4.9776185396397, - "c6": 4.850250601004355, - "c7": 4.8458475186268934 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457685, + "c3": 6.010171058714769, + "c4": 4.808136846971806, + "c5": 3.6061026352288423, + "c6": 2.404068423485903, + "c7": 1.2020342117429392 }, "rgb": [222, 0, 59] }, @@ -445101,23 +445101,23 @@ "year": 1828, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 28.634903273185998, - "c2": 26.893431039901053, - "c3": -9.951722242132298, - "c4": -32.72517751511647, - "c5": -29.041397751604237, - "c6": -19.02285658203033, - "c7": -24.434218538520533 + "points": { + "c1": -12.674326069140978, + "c2": 0.23239406796055562, + "c3": 7.23772117415664, + "c4": 1.2415831840083058, + "c5": -11.047455455494479, + "c6": 14.713093351663545, + "c7": -34.38358567807271 }, - "vertexSeeds": { - "c1": 10.313243821503113, - "c2": 10.453213918267414, - "c3": 10.577333569451612, - "c4": 10.72898906467092, - "c5": 10.562607902167775, - "c6": 10.389373645486078, - "c7": 10.346955832883094 + "offsets": { + "c1": 18.058252427184467, + "c2": 15.478502080443828, + "c3": 12.898751733703191, + "c4": 10.319001386962553, + "c5": 7.739251040221914, + "c6": 5.159500693481276, + "c7": 2.579750346740638 }, "rgb": [238, 201, 159] }, @@ -445128,23 +445128,23 @@ "year": 1828, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": 2.2999090204626, - "c2": 23.409169829863032, - "c3": -9.548001451184593, - "c4": 15.732822248712857, - "c5": 33.11901457122714, - "c6": -36.349882690885146, - "c7": 27.04650476818405 + "points": { + "c1": 18.52272885093649, + "c2": -15.63759838300631, + "c3": -18.68612363193344, + "c4": 24.977492117401567, + "c5": -33.19218132396915, + "c6": 2.049466495931803, + "c7": 32.56369876149141 }, - "vertexSeeds": { - "c1": 5.35057473407714, - "c2": 5.352323658957627, - "c3": 5.493414433977958, - "c4": 5.480796243413409, - "c5": 5.384947186980215, - "c6": 5.492358238439742, - "c7": 5.325625989517588 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.8779472954230085, + "c3": 6.564956079519209, + "c4": 5.251964863615357, + "c5": 3.9389736477115043, + "c6": 2.625982431807652, + "c7": 1.3129912159038521 }, "rgb": [86, 146, 138] }, @@ -445155,23 +445155,23 @@ "year": 1828, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 19.412623356647757, - "c2": -30.34249178771951, - "c3": -0.8688713718358869, - "c4": -29.58043656611645, - "c5": -21.38521691727395, - "c6": 17.557444775551836, - "c7": -13.278583120402505 + "points": { + "c1": -25.018177704634958, + "c2": -1.781377988796848, + "c3": -29.691951602069995, + "c4": 19.453621965984837, + "c5": 33.571458880614394, + "c6": -9.233274935419441, + "c7": 14.589659802704006 }, - "vertexSeeds": { - "c1": 6.659854451312762, - "c2": 6.5390071099562, - "c3": 6.7646116499991855, - "c4": 6.5874322707147375, - "c5": 6.220902724909835, - "c6": 6.548000353688519, - "c7": 6.325654747708285 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [77, 76, 132] }, @@ -445182,23 +445182,23 @@ "year": 1828, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -22.44174088672183, - "c2": -14.026826852551066, - "c3": -11.335374006447154, - "c4": -19.093606370296598, - "c5": -6.702050734168484, - "c6": -2.475675323109293, - "c7": 6.560257005365177 + "points": { + "c1": -22.76600298551309, + "c2": 27.13209182093951, + "c3": -12.122369218104172, + "c4": 24.00601403336852, + "c5": 5.850941842612475, + "c6": 5.123852301956365, + "c7": 18.599996246501963 }, - "vertexSeeds": { - "c1": 2.57968299669619, - "c2": 2.9928626919049326, - "c3": 2.9688000718301137, - "c4": 3.0710626462346715, - "c5": 2.894815010167049, - "c6": 2.704359870956715, - "c7": 2.924815270405209 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435505, + "c3": 3.698566805362923, + "c4": 2.9588534442903365, + "c5": 2.219140083217755, + "c6": 1.4794267221451682, + "c7": 0.7397133610725865 }, "rgb": [58, 15, 49] }, @@ -445209,23 +445209,23 @@ "year": 1828, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 24.908630727749838, - "c2": -14.481689077771932, - "c3": -25.301654310343487, - "c4": -20.166769787545483, - "c5": -19.13627967476576, - "c6": 25.53343232975991, - "c7": -20.576054474410295 + "points": { + "c1": -12.052857001565975, + "c2": 2.6049794222205485, + "c3": -2.0471486005115125, + "c4": -28.1603905045134, + "c5": -1.735609571652141, + "c6": -25.689300280914637, + "c7": -22.282146276846326 }, - "vertexSeeds": { - "c1": 7.793834494818578, - "c2": 7.88774993311606, - "c3": 7.933343852186949, - "c4": 7.764867684267072, - "c5": 7.911627009621437, - "c6": 7.8944910933430705, - "c7": 7.838491381773469 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531226, + "c3": 9.500693481275976, + "c4": 7.600554785020796, + "c5": 5.700416088765613, + "c6": 3.8002773925104316, + "c7": 1.9001386962551814 }, "rgb": [86, 146, 138] }, @@ -445236,23 +445236,23 @@ "year": 1828, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": -3.7145813190114936, - "c2": 7.916177805443894, - "c3": -18.68275417885952, - "c4": 7.1834033726398445, - "c5": 6.625585420177721, - "c6": -4.228711264057871, - "c7": 14.464573895820777 + "points": { + "c1": -26.401919636028065, + "c2": 16.637537661742314, + "c3": 10.408732017725328, + "c4": -4.9333010404823945, + "c5": -6.831934579596965, + "c6": -13.475779968136985, + "c7": 23.88264029348126 }, - "vertexSeeds": { - "c1": 5.8778781594942275, - "c2": 5.817230535354344, - "c3": 5.447035668346747, - "c4": 5.7081279708138615, - "c5": 5.927845418922343, - "c6": 5.822788458574345, - "c7": 5.6711232320500145 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -445263,23 +445263,23 @@ "year": 1828, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -9.887987359668593, - "c2": 17.81647070940405, - "c3": -30.402005876252588, - "c4": 12.267987891776073, - "c5": -25.949193155263387, - "c6": 8.409328393066758, - "c7": -30.34990864104469 + "points": { + "c1": -8.616313106175763, + "c2": 27.013076019182037, + "c3": -8.773632243281984, + "c4": -11.127725627853469, + "c5": 29.842120605703442, + "c6": 28.662704344559828, + "c7": 17.97001596049055 }, - "vertexSeeds": { - "c1": 2.5899276201289405, - "c2": 2.6217631176307115, - "c3": 2.5594554844365454, - "c4": 2.566571901798901, - "c5": 2.5664288470767476, - "c6": 2.556756680600524, - "c7": 2.615795736500693 + "offsets": { + "c1": 4.401294498381877, + "c2": 3.772538141470167, + "c3": 3.143781784558488, + "c4": 2.515025427646778, + "c5": 1.886269070735099, + "c6": 1.257512713823389, + "c7": 0.6287563569116789 }, "rgb": [238, 201, 159] }, @@ -445290,23 +445290,23 @@ "year": 1828, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 21.860999582762872, - "c2": -12.0746891093616, - "c3": -6.7785213400259465, - "c4": -13.646249324350698, - "c5": -30.908117968244067, - "c6": 30.81914685163582, - "c7": -1.4877775979857617 + "points": { + "c1": -2.8760299061660035, + "c2": -28.8296975003812, + "c3": -23.989766342135514, + "c4": -23.958454416735027, + "c5": 12.631259102273603, + "c6": -0.7488859978120885, + "c7": -32.79139563408725 }, - "vertexSeeds": { - "c1": 9.432934078768605, - "c2": 9.095646433353679, - "c3": 8.931722250335305, - "c4": 9.087054710046136, - "c5": 9.416400282988167, - "c6": 8.831077049225646, - "c7": 9.34253712943461 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -445317,23 +445317,23 @@ "year": 1828, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -13.275898107154829, - "c2": 8.246737871311687, - "c3": -6.420103480936504, - "c4": -10.591598967334999, - "c5": -5.152355355575921, - "c6": 9.62063201030508, - "c7": 21.926750304501738 + "points": { + "c1": -25.4562327082904, + "c2": 9.509242130659345, + "c3": -9.801301182541565, + "c4": 13.913407835010638, + "c5": -22.092713069514843, + "c6": -24.287111304458314, + "c7": 20.755150309503698 }, - "vertexSeeds": { - "c1": 7.2059296055818205, - "c2": 7.205056837297228, - "c3": 7.155771848295675, - "c4": 7.143928012259867, - "c5": 7.165576102618343, - "c6": 7.154651989194606, - "c7": 7.1536670984901525 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.3190013869626, + "c3": 8.59916782246872, + "c4": 6.87933425797501, + "c5": 5.1595006934813, + "c6": 3.439667128987591, + "c7": 1.7198335644937097 }, "rgb": [58, 15, 49] }, @@ -445344,23 +445344,23 @@ "year": 1828, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": -14.064199429737286, - "c2": -1.812079533752872, - "c3": 12.849422423025025, - "c4": 17.735040512499502, - "c5": 0.4591747437178526, - "c6": 20.315995490908293, - "c7": -12.573976993748726 + "points": { + "c1": 14.024451430349579, + "c2": 17.930159132188635, + "c3": -3.5927684184005884, + "c4": 0.924738300529981, + "c5": 15.313471125818388, + "c6": -8.307346887963817, + "c7": -9.107032880403338 }, - "vertexSeeds": { - "c1": 8.803259558441715, - "c2": 8.597995068133638, - "c3": 8.39346200694302, - "c4": 8.784151064887086, - "c5": 8.668095471731274, - "c6": 8.256581616124588, - "c7": 8.281700430861475 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743422, + "c3": 10.772075820619508, + "c4": 8.617660656495616, + "c5": 6.4632454923717, + "c6": 4.308830328247808, + "c7": 2.1544151641238933 }, "rgb": [222, 0, 59] }, @@ -445371,23 +445371,23 @@ "year": 1828, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": 14.602262660925362, - "c2": -38.51003950511105, - "c3": -36.220786112111114, - "c4": 32.379589143375775, - "c5": 17.06640688322804, - "c6": -19.444994844544198, - "c7": 39.722099623082066 + "points": { + "c1": -38.0860958936262, + "c2": -25.309644860451954, + "c3": -11.444323570777048, + "c4": -36.108054340334704, + "c5": 4.855795518749261, + "c6": -27.45950278287399, + "c7": -19.88792855048079 }, - "vertexSeeds": { - "c1": 6.240186102687408, - "c2": 6.48504872947809, - "c3": 6.550286579364945, - "c4": 6.385724515268371, - "c5": 6.704888434765292, - "c6": 6.30893681502159, - "c7": 6.388538803089983 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238566, + "c3": 8.183079056865463, + "c4": 6.546463245492378, + "c5": 4.909847434119274, + "c6": 3.273231622746189, + "c7": 1.636615811373104 }, "rgb": [238, 201, 159] }, @@ -445398,23 +445398,23 @@ "year": 1828, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -11.38703075239147, - "c2": -0.9199591841176478, - "c3": 3.8901897283470745, - "c4": 2.3619854435249543, - "c5": 11.088526504875592, - "c6": -9.70390816519146, - "c7": 5.683098678420922 + "points": { + "c1": -19.77777553179287, + "c2": 18.06909783730576, + "c3": -14.871465221941836, + "c4": 17.06336285757153, + "c5": 25.462337369055493, + "c6": 15.595441348694482, + "c7": -19.887275147714373 }, - "vertexSeeds": { - "c1": 5.378535827564828, - "c2": 5.390024742294396, - "c3": 5.3602654565371, - "c4": 5.4757887568910615, - "c5": 5.212356671497159, - "c6": 5.367835427565899, - "c7": 5.4654673505279785 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382793, + "c3": 6.541840036985681, + "c4": 5.2334720295885395, + "c5": 3.9251040221913964, + "c6": 2.6167360147942538, + "c7": 1.3083680073971424 }, "rgb": [58, 15, 49] }, @@ -445425,23 +445425,23 @@ "year": 1828, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": 12.521670409180608, - "c2": -17.514314446923336, - "c3": 11.01100160444551, - "c4": -16.31746531003523, - "c5": 1.8905354182352454, - "c6": -15.681518772201763, - "c7": 20.068527805045427 + "points": { + "c1": -8.499259784411304, + "c2": -21.43030323038458, + "c3": 7.7604725116280235, + "c4": 16.296805489334965, + "c5": 9.497602851161652, + "c6": -11.149064186893112, + "c7": -16.27623340514983 }, - "vertexSeeds": { - "c1": 5.32904973192505, - "c2": 5.436334629514141, - "c3": 5.253253998272301, - "c4": 5.381383581461573, - "c5": 5.4239083155194505, - "c6": 5.364926332253864, - "c7": 5.330630101393107 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -445452,23 +445452,23 @@ "year": 1828, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": -3.72091834014568, - "c2": 13.914253230631992, - "c3": 29.879372543691666, - "c4": -27.355331707991013, - "c5": 20.707206503603146, - "c6": -29.17385554001017, - "c7": -2.7574283801203983 + "points": { + "c1": -14.06138639956631, + "c2": -28.593837413353622, + "c3": 32.302093877501505, + "c4": 14.662319319457545, + "c5": -27.49465499960416, + "c6": 13.67993071182974, + "c7": -32.0445652775725 }, - "vertexSeeds": { - "c1": 8.475952183845322, - "c2": 8.52887429529022, - "c3": 8.487916352248403, - "c4": 8.48989985457561, - "c5": 8.497190838849761, - "c6": 8.49651146099869, - "c7": 8.520321788218332 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697566, + "c3": 10.17105871474815, + "c4": 8.136846971798468, + "c5": 6.102635228848783, + "c6": 4.068423485899098, + "c7": 2.034211742949684 }, "rgb": [238, 201, 159] }, @@ -445479,23 +445479,23 @@ "year": 1828, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": -29.300281592904177, - "c2": -27.364499570521605, - "c3": -17.51312508347815, - "c4": -8.799393005485317, - "c5": -22.706919560687858, - "c6": -23.74828445950451, - "c7": -21.691253843507695 + "points": { + "c1": 23.70214208643265, + "c2": 2.6216030480006154, + "c3": 32.54026366068379, + "c4": -11.944237858091892, + "c5": 11.641974996148697, + "c6": -8.245487074001325, + "c7": -30.42391767696082 }, - "vertexSeeds": { - "c1": 8.473860250002355, - "c2": 8.438966053433033, - "c3": 8.526687817558722, - "c4": 8.510751669811686, - "c5": 8.504878192024588, - "c6": 8.529375724599921, - "c7": 8.493543651105668 + "offsets": { + "c1": 14.239482200647249, + "c2": 12.205270457697619, + "c3": 10.17105871474799, + "c4": 8.136846971798358, + "c5": 6.102635228848728, + "c6": 4.0684234858992605, + "c7": 2.0342117429496303 }, "rgb": [58, 15, 49] }, @@ -445506,23 +445506,23 @@ "year": 1828, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 23.909097358978087, - "c2": -27.99251928234026, - "c3": 33.97405875568059, - "c4": -24.359062472407196, - "c5": 15.577369592304471, - "c6": 12.792292628729442, - "c7": -0.7828310784497248 + "points": { + "c1": -15.658975949154698, + "c2": 8.681236035595262, + "c3": 36.305334828780545, + "c4": 22.181624415652912, + "c5": -0.4907304647978634, + "c6": -22.792377079829084, + "c7": -13.348438814063819 }, - "vertexSeeds": { - "c1": 6.199457473465684, - "c2": 6.204315807472905, - "c3": 6.213051225501916, - "c4": 6.209208503616387, - "c5": 6.207843962095362, - "c6": 6.215469908310819, - "c7": 6.205541625045774 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583910982, + "c3": 7.420249653259447, + "c4": 5.936199722607321, + "c5": 4.452149791955786, + "c6": 2.9680998613036604, + "c7": 1.4840499306521255 }, "rgb": [86, 146, 138] }, @@ -445533,23 +445533,23 @@ "year": 1828, "resistanceReported": false, "duration": 26352000, - "curveSeeds": { - "c1": -11.689070271124088, - "c2": 13.813020529438262, - "c3": -34.45188305341956, - "c4": 12.63007425048908, - "c5": 14.280012392685855, - "c6": 22.07323374887516, - "c7": -33.7958326125287 + "points": { + "c1": 3.9938755972637807, + "c2": -18.584513441614728, + "c3": -24.78157675909387, + "c4": 9.644731958415122, + "c5": 17.781349980431244, + "c6": 39.483361380689416, + "c7": 33.67795258603424 }, - "vertexSeeds": { - "c1": 7.646794432300469, - "c2": 6.847325637015462, - "c3": 7.458660659854694, - "c4": 7.235402866238882, - "c5": 7.331532289123354, - "c6": 6.983254200910943, - "c7": 7.547481674543401 + "offsets": { + "c1": 12.880258899676376, + "c2": 11.04022191400832, + "c3": 9.200184928340263, + "c4": 7.360147942672207, + "c5": 5.520110957004151, + "c6": 3.6800739713360957, + "c7": 1.840036985668056 }, "rgb": [58, 15, 49] }, @@ -445560,23 +445560,23 @@ "year": 1828, "resistanceReported": false, "duration": 29980800, - "curveSeeds": { - "c1": -26.72621862718484, - "c2": 42.19154297256186, - "c3": 33.635542574797356, - "c4": -24.843919562774452, - "c5": -15.68020234424663, - "c6": -12.092754039170675, - "c7": 29.085848979296756 + "points": { + "c1": -19.957567655225425, + "c2": 42.31319092956333, + "c3": 15.57608379045567, + "c4": -40.73621350328655, + "c5": 5.1214145301909255, + "c6": 18.909907976599015, + "c7": 31.709782264266778 }, - "vertexSeeds": { - "c1": 6.329200766421968, - "c2": 6.309063882838757, - "c3": 5.997724149075323, - "c4": 5.992653967985606, - "c5": 6.039459317630003, - "c6": 6.0102212024740655, - "c7": 6.263726056208048 + "offsets": { + "c1": 10.647249190938512, + "c2": 9.126213592233022, + "c3": 7.605177993527504, + "c4": 6.084142394822016, + "c5": 4.563106796116497, + "c6": 3.042071197411008, + "c7": 1.521035598705519 }, "rgb": [86, 146, 138] }, @@ -445587,23 +445587,23 @@ "year": 1828, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 17.304659541806416, - "c2": 2.899119765402201, - "c3": -15.028243767176606, - "c4": -1.9630154735559167, - "c5": 15.370636540959936, - "c6": -7.652067728542908, - "c7": 5.41089558207014 + "points": { + "c1": -4.78563495308191, + "c2": -4.766019538891083, + "c3": 1.7578839717372823, + "c4": -22.046496487056565, + "c5": 14.458370343158933, + "c6": 11.814454419224823, + "c7": -4.130519526896705 }, - "vertexSeeds": { - "c1": 8.375984604218786, - "c2": 8.53405564523854, - "c3": 8.4161404011665, - "c4": 8.53108157706223, - "c5": 8.541708231672946, - "c6": 8.460432488501564, - "c7": 8.501628858230967 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737878, + "c3": 10.194174757281578, + "c4": 8.155339805825282, + "c5": 6.1165048543689835, + "c6": 4.077669902912596, + "c7": 2.038834951456298 }, "rgb": [86, 146, 138] }, @@ -445614,23 +445614,23 @@ "year": 1828, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": 23.072528351158482, - "c2": 5.657970707887706, - "c3": 20.094823806149925, - "c4": -16.599956795401294, - "c5": 15.139180821288065, - "c6": 17.261866093235696, - "c7": 13.653947702142354 + "points": { + "c1": 19.32155522681594, + "c2": -5.73228401419016, + "c3": 27.57096059841067, + "c4": -4.868498899396368, + "c5": -29.861421654131128, + "c6": -26.347712456970925, + "c7": 14.654238331407022 }, - "vertexSeeds": { - "c1": 12.403870629712156, - "c2": 12.377635698033979, - "c3": 12.340182509455744, - "c4": 12.460784077199063, - "c5": 12.287109707020816, - "c6": 12.293262733210364, - "c7": 12.147759924243083 + "offsets": { + "c1": 20.906148867313913, + "c2": 17.919556171983384, + "c3": 14.932963476652748, + "c4": 11.946370781322221, + "c5": 8.959778085991692, + "c6": 5.973185390661056, + "c7": 2.986592695330528 }, "rgb": [77, 76, 132] }, @@ -445641,23 +445641,23 @@ "year": 1828, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 30.601329641254253, - "c2": -36.11404460456408, - "c3": -20.93333551554263, - "c4": -14.890699496727098, - "c5": -6.33336254625139, - "c6": 10.54492582347359, - "c7": 0.8315226929698056 + "points": { + "c1": 15.225216363706664, + "c2": 28.426968411807437, + "c3": -10.997219336382276, + "c4": -37.4258931487284, + "c5": 29.19370173743036, + "c6": -28.8206445070427, + "c7": 14.717053582031838 }, - "vertexSeeds": { - "c1": 9.908601861931745, - "c2": 9.854985117681608, - "c3": 9.883514117883813, - "c4": 9.822195789455195, - "c5": 9.950577530656624, - "c6": 9.941626431709382, - "c7": 9.845065477664258 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.25797503467413, + "c3": 11.881645862228403, + "c4": 9.505316689782674, + "c5": 7.128987517336947, + "c6": 4.752658344891337, + "c7": 2.3763291724456095 }, "rgb": [77, 76, 132] }, @@ -445668,23 +445668,23 @@ "year": 1828, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -18.22423841578197, - "c2": -9.847374145231047, - "c3": -3.972522487643584, - "c4": -4.215280943141593, - "c5": 7.596501001125631, - "c6": -3.6073630679758892, - "c7": 10.89573699150871 + "points": { + "c1": 3.5186453969992897, + "c2": 18.640909654928173, + "c3": 15.287934817875275, + "c4": -12.906385064961857, + "c5": 19.394741359349545, + "c6": 5.034710137481081, + "c7": -3.6707442395284 }, - "vertexSeeds": { - "c1": 5.161354892215355, - "c2": 5.170692998143359, - "c3": 5.1690744003592, - "c4": 5.171055483511276, - "c5": 5.153885406587203, - "c6": 5.1373445844011085, - "c7": 5.204335283224743 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859903, + "c3": 6.241331484049902, + "c4": 4.9930651872399014, + "c5": 3.7447988904300007, + "c6": 2.4965325936200005, + "c7": 1.2482662968100002 }, "rgb": [86, 146, 138] }, @@ -445695,23 +445695,23 @@ "year": 1828, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": 21.49185643780075, - "c2": 15.378842262250451, - "c3": 3.5819182373636984, - "c4": 5.259345596851734, - "c5": 19.05905086576736, - "c6": -14.619211724284845, - "c7": 10.083290952035249 + "points": { + "c1": 7.963995877548655, + "c2": -22.876995198374118, + "c3": -15.183137781411608, + "c4": 8.88276567736277, + "c5": -13.106343278331188, + "c6": -6.464586953533082, + "c7": 23.876758477297642 }, - "vertexSeeds": { - "c1": 9.557475289344247, - "c2": 4.330341764707408, - "c3": 6.1733424904227245, - "c4": 10.26087211052987, - "c5": 6.985603615426188, - "c6": 10.090817926931802, - "c7": 9.923041744806369 + "offsets": { + "c1": 26.50485436893204, + "c2": 22.718446601941746, + "c3": 18.932038834951456, + "c4": 15.145631067961167, + "c5": 11.359223300970873, + "c6": 7.572815533980581, + "c7": 3.7864077669902927 }, "rgb": [77, 76, 132] }, @@ -445722,23 +445722,23 @@ "year": 1828, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": 0.06360623089533846, - "c2": -17.792180753062148, - "c3": 28.680821167332155, - "c4": 29.058045798842542, - "c5": -26.96266061557331, - "c6": -27.14552770510506, - "c7": -4.341610816254899 + "points": { + "c1": 26.125227469754947, + "c2": 40.66539310308326, + "c3": 40.232312226924535, + "c4": 7.799369992395725, + "c5": -33.57200101608302, + "c6": 21.113585118041414, + "c7": -25.33229961638825 }, - "vertexSeeds": { - "c1": 4.143829045064785, - "c2": 4.44943555842867, - "c3": 4.160276108928505, - "c4": 4.235646118745378, - "c5": 4.3142851858719125, - "c6": 4.392086162898089, - "c7": 4.451387419239491 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.463245492371709, + "c3": 5.386037910309761, + "c4": 4.3088303282478035, + "c5": 3.2316227461858547, + "c6": 2.154415164123906, + "c7": 1.0772075820619484 }, "rgb": [77, 76, 132] }, @@ -445749,23 +445749,23 @@ "year": 1828, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -28.126290928728007, - "c2": 18.19800822716263, - "c3": 18.766915174734088, - "c4": 17.358408210806694, - "c5": 21.97136175638557, - "c6": -28.156917291778502, - "c7": 18.42898737849041 + "points": { + "c1": -9.933971954436448, + "c2": -26.813314665087344, + "c3": 10.027866738479354, + "c4": 5.330303804229857, + "c5": -12.829513797946923, + "c6": 6.328767158302142, + "c7": 3.0307293038453764 }, - "vertexSeeds": { - "c1": 7.443269290340309, - "c2": 7.505567774707743, - "c3": 7.511989111730872, - "c4": 7.458112795983418, - "c5": 7.586512653166107, - "c6": 7.189767203417307, - "c7": 7.214285980855326 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [222, 0, 59] }, @@ -445776,23 +445776,23 @@ "year": 1828, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": -12.154998752620966, - "c2": 21.3520684375614, - "c3": -5.173732884994688, - "c4": -14.112912063542822, - "c5": -10.138447192538587, - "c6": 16.79534666312233, - "c7": -0.8080868359286484 + "points": { + "c1": 11.359114990030129, + "c2": -7.3865221075083625, + "c3": -23.230789699309327, + "c4": -2.41734911955907, + "c5": -8.266539555730713, + "c6": -13.43519791902652, + "c7": 7.7251869316099935 }, - "vertexSeeds": { - "c1": 4.524428939272399, - "c2": 4.502074169367803, - "c3": 4.508284522797376, - "c4": 4.517285831875692, - "c5": 4.518333234797241, - "c6": 4.523123964208602, - "c7": 4.495988039188915 + "offsets": { + "c1": 7.572815533980583, + "c2": 6.490984743411959, + "c3": 5.409153952843227, + "c4": 4.327323162274603, + "c5": 3.2454923717059794, + "c6": 2.1636615811373554, + "c7": 1.081830790568624 }, "rgb": [77, 76, 132] }, @@ -445803,23 +445803,23 @@ "year": 1828, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 3.983161985808124, - "c2": 22.597285394824954, - "c3": 16.326184201397243, - "c4": -10.456368083579758, - "c5": 6.860557787339477, - "c6": 26.512421056697416, - "c7": -27.26456101148719 + "points": { + "c1": -24.55636023967571, + "c2": 7.977979418598704, + "c3": 8.715711180765556, + "c4": -22.34688258918228, + "c5": -0.465564555478867, + "c6": -27.961956991631524, + "c7": 9.867100079449134 }, - "vertexSeeds": { - "c1": 5.232821975956178, - "c2": 5.435473716465343, - "c3": 5.299979114287649, - "c4": 5.329552884857164, - "c5": 5.432751731544521, - "c6": 5.405557808870545, - "c7": 5.26957451681188 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382819, + "c3": 6.541840036985662, + "c4": 5.233472029588547, + "c5": 3.9251040221913893, + "c6": 2.6167360147942733, + "c7": 1.3083680073971564 }, "rgb": [58, 15, 49] }, @@ -445830,23 +445830,23 @@ "year": 1828, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -11.105412342360708, - "c2": -6.528837789510671, - "c3": -2.8926075249760856, - "c4": -8.15645820629112, - "c5": -15.151161756442331, - "c6": 28.220995199716086, - "c7": 19.994374205763364 + "points": { + "c1": -13.025486708745145, + "c2": -15.469805374111505, + "c3": 34.58312646772765, + "c4": -12.082016708623968, + "c5": -9.3969988673677, + "c6": 34.859674377102905, + "c7": 5.94478639956062 }, - "vertexSeeds": { - "c1": 10.524032487212112, - "c2": 10.258109026638111, - "c3": 9.990079437463399, - "c4": 9.994938645892097, - "c5": 9.662019154191285, - "c6": 10.297792411125982, - "c7": 9.762066688997459 + "offsets": { + "c1": 17.831715210355988, + "c2": 15.284327323162278, + "c3": 12.736939435968567, + "c4": 10.189551548774858, + "c5": 7.642163661581147, + "c6": 5.09477577438742, + "c7": 2.54738788719371 }, "rgb": [238, 201, 159] }, @@ -445857,23 +445857,23 @@ "year": 1828, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": -18.50923235670895, - "c2": -7.342668745804058, - "c3": 2.369984941378263, - "c4": 16.16979177648429, - "c5": 9.24230739222456, - "c6": -3.71754006240133, - "c7": -25.354472945371146 + "points": { + "c1": 18.246775005414975, + "c2": 18.476484843072697, + "c3": 13.492736573267713, + "c4": -17.54505223448014, + "c5": -24.404394159333595, + "c6": -4.47642495855424, + "c7": 6.569744184146366 }, - "vertexSeeds": { - "c1": 10.403272366321572, - "c2": 10.25633055743447, - "c3": 10.762208979947635, - "c4": 10.4298553277632, - "c5": 10.520918303774506, - "c6": 10.58058282079582, - "c7": 10.368984013109802 + "offsets": { + "c1": 18.155339805825243, + "c2": 15.561719833564492, + "c3": 12.968099861303745, + "c4": 10.374479889042995, + "c5": 7.780859916782246, + "c6": 5.187239944521497, + "c7": 2.5936199722607487 }, "rgb": [86, 146, 138] }, @@ -445884,23 +445884,23 @@ "year": 1828, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -3.6767376199883977, - "c2": 15.725832450128888, - "c3": 17.20113632060397, - "c4": -18.864541570061384, - "c5": 19.84722970328428, - "c6": 4.178698271203569, - "c7": -3.907145712865592 + "points": { + "c1": 12.822138404112739, + "c2": 9.064905238667166, + "c3": -12.150042558202575, + "c4": -16.3202900657462, + "c5": 20.113587088844287, + "c6": -0.2357684995088718, + "c7": 15.737209807659791 }, - "vertexSeeds": { - "c1": 4.579289113072601, - "c2": 4.589502064890241, - "c3": 4.583933693644735, - "c4": 4.60557173700292, - "c5": 4.588528577795382, - "c6": 4.594809027099566, - "c7": 4.597117199198111 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613069, + "c3": 5.524734165510854, + "c4": 4.4197873324087125, + "c5": 3.3148404993064977, + "c6": 2.2098936662043562, + "c7": 1.1049468331022148 }, "rgb": [77, 76, 132] }, @@ -445911,23 +445911,23 @@ "year": 1828, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": 5.11230607881614, - "c2": 5.168757010125837, - "c3": 29.53933393356659, - "c4": -16.611242238103163, - "c5": 16.679409782372858, - "c6": 0.08132949951615132, - "c7": -17.394107283101395 + "points": { + "c1": -20.777138960521413, + "c2": -33.339378607407525, + "c3": -5.970970565064171, + "c4": -10.897201742887198, + "c5": 9.968827075628667, + "c6": 28.37227610216911, + "c7": -4.638549854836576 }, - "vertexSeeds": { - "c1": 3.8918054401872126, - "c2": 6.331618640919772, - "c3": 4.342107684532534, - "c4": 4.4267348184882165, - "c5": 4.542982392360094, - "c6": 4.936674041769045, - "c7": 5.444391204639395 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796116, + "c3": 7.9288025889967635, + "c4": 6.343042071197411, + "c5": 4.757281553398058, + "c6": 3.1715210355987042, + "c7": 1.585760517799353 }, "rgb": [58, 15, 49] }, @@ -445938,23 +445938,23 @@ "year": 1829, "resistanceReported": false, "duration": 37670400, - "curveSeeds": { - "c1": -43.50359866211689, - "c2": 30.453519389229655, - "c3": 37.89791319233095, - "c4": -18.18873825989524, - "c5": 27.137142897618006, - "c6": -7.363832015517374, - "c7": -50.63719854224062 + "points": { + "c1": 26.751692807175473, + "c2": -22.727088784522575, + "c3": -14.222987924560009, + "c4": 18.544223140229022, + "c5": -8.46645768592473, + "c6": 20.416277198486995, + "c7": 0.8610400446392674 }, - "vertexSeeds": { - "c1": 8.632515781438055, - "c2": 9.145689877177253, - "c3": 9.045087221787439, - "c4": 8.843758341614556, - "c5": 9.32263438453717, - "c6": 9.06006244491666, - "c7": 9.288997510252255 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -445965,23 +445965,23 @@ "year": 1828, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -0.1377335466242009, - "c2": -15.413086454222148, - "c3": 11.484698027412541, - "c4": -9.500606056699159, - "c5": 15.59217803995621, - "c6": -23.947914237465373, - "c7": -22.99200149595577 + "points": { + "c1": 18.934390414675697, + "c2": 12.6693087573815, + "c3": -5.674670232252236, + "c4": 1.778329917449394, + "c5": -21.53818193614986, + "c6": -1.5114077032425932, + "c7": -19.272067100018432 }, - "vertexSeeds": { - "c1": 1.8441172020635619, - "c2": 1.8202778380403442, - "c3": 1.8575098265021233, - "c4": 1.8842597608753038, - "c5": 1.7829928682141052, - "c6": 1.9209011151329367, - "c7": 1.7648635293394854 + "offsets": { + "c1": 3.2362459546925564, + "c2": 2.7739251040221906, + "c3": 2.3116042533518244, + "c4": 1.8492834026814589, + "c5": 1.3869625520110975, + "c6": 0.9246417013407318, + "c7": 0.4623208506703659 }, "rgb": [86, 146, 138] }, @@ -445992,23 +445992,23 @@ "year": 1829, "resistanceReported": false, "duration": 39052800, - "curveSeeds": { - "c1": -14.698428828186728, - "c2": -25.843035047465463, - "c3": 38.40424973025402, - "c4": 35.51841719155857, - "c5": 43.273722368389826, - "c6": 26.923922489168092, - "c7": -33.635116388086374 + "points": { + "c1": -43.19258461415402, + "c2": 29.25327154799932, + "c3": -43.00206337206875, + "c4": 45.47451569957836, + "c5": -7.5438970210243, + "c6": 17.996350764000937, + "c7": 1.826045886146538 }, - "vertexSeeds": { - "c1": 4.046683968210239, - "c2": 3.4017157195548355, - "c3": 4.262801929609756, - "c4": 3.514298166244981, - "c5": 3.6611213442663364, - "c6": 4.101514466083799, - "c7": 4.519071209356103 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653258, + "c3": 5.547850208044381, + "c4": 4.438280166435504, + "c5": 3.3287101248266273, + "c6": 2.219140083217751, + "c7": 1.109570041608877 }, "rgb": [77, 76, 132] }, @@ -446019,23 +446019,23 @@ "year": 1829, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 31.08415991727972, - "c2": 6.010510047179096, - "c3": 29.510155253415277, - "c4": -0.3698916502568963, - "c5": 42.74617235971263, - "c6": -16.870199427446583, - "c7": -44.31235256009291 + "points": { + "c1": 45.95210820088731, + "c2": 20.29871381512261, + "c3": -17.998584698788022, + "c4": 10.611592255927803, + "c5": -42.23483951872362, + "c6": -26.463090256196754, + "c7": 25.402863629092366 }, - "vertexSeeds": { - "c1": 5.3534872140313965, - "c2": 5.42624550416586, - "c3": 5.28116219802549, - "c4": 5.229676052983082, - "c5": 5.337219947355536, - "c6": 5.277415249022298, - "c7": 5.251625529793524 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382819, + "c3": 6.541840036985662, + "c4": 5.233472029588547, + "c5": 3.9251040221913893, + "c6": 2.6167360147942733, + "c7": 1.3083680073971564 }, "rgb": [58, 15, 49] }, @@ -446046,23 +446046,23 @@ "year": 1828, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 18.104861791410308, - "c2": 7.463322137525989, - "c3": -23.45826076785617, - "c4": -11.841228235894398, - "c5": -20.24719056856169, - "c6": -8.508625362685097, - "c7": 11.143787556587817 + "points": { + "c1": 25.475186329260467, + "c2": 10.852188522895815, + "c3": -0.28122603028833737, + "c4": 14.935137737478378, + "c5": 18.83284784837702, + "c6": -22.554182774213636, + "c7": -19.239154411566908 }, - "vertexSeeds": { - "c1": 5.377977467402799, - "c2": 5.564491400235709, - "c3": 5.853481677514833, - "c4": 5.4836787935087665, - "c5": 5.634169331938557, - "c6": 5.879139028161548, - "c7": 5.56645892593383 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -446073,23 +446073,23 @@ "year": 1828, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 22.167478216421397, - "c2": 5.945816217778823, - "c3": 1.3581959406112496, - "c4": 26.250195274712144, - "c5": 18.411460789698605, - "c6": -5.627085824837863, - "c7": -12.163814398272827 + "points": { + "c1": -19.453467534951578, + "c2": -5.398886106432272, + "c3": -10.358191925388784, + "c4": -23.440159245121066, + "c5": -28.74453826477684, + "c6": -23.302295319165037, + "c7": -27.826679525529332 }, - "vertexSeeds": { - "c1": 5.646080826812482, - "c2": 5.365947224666368, - "c3": 5.532515599884114, - "c4": 5.782301715982777, - "c5": 5.448561041878606, - "c6": 5.561283304354974, - "c7": 5.943925141239235 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -446100,23 +446100,23 @@ "year": 1828, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 9.193281873533138, - "c2": 1.5111449340042, - "c3": -28.885828065090582, - "c4": -32.50523494477641, - "c5": 30.77234368828023, - "c6": 23.440756195741244, - "c7": -19.70081289754541 + "points": { + "c1": 2.2672249248867686, + "c2": 6.496126944293586, + "c3": -0.9804843936619037, + "c4": 10.782325870507705, + "c5": 9.177887892798779, + "c6": 3.5468669129425905, + "c7": -12.044242888471548 }, - "vertexSeeds": { - "c1": 5.4094608733844485, - "c2": 5.283615248885269, - "c3": 5.322461563062655, - "c4": 5.26564582699803, - "c5": 5.376272206162696, - "c6": 5.381141844837656, - "c7": 5.402236206702407 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262122, + "c3": 6.472491909385136, + "c4": 5.177993527508098, + "c5": 3.883495145631061, + "c6": 2.5889967637540234, + "c7": 1.2944983818770375 }, "rgb": [58, 15, 49] }, @@ -446127,23 +446127,23 @@ "year": 1828, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": -8.59175865906034, - "c2": 13.369181168331775, - "c3": 12.738584368593333, - "c4": -15.243656979423335, - "c5": -11.659281551954411, - "c6": 8.46657567252203, - "c7": 10.987848345553676 + "points": { + "c1": -14.621625160162072, + "c2": -8.987186632719027, + "c3": -0.029792547219742005, + "c4": -24.0249973966991, + "c5": -19.20640806790165, + "c6": 15.748728263018354, + "c7": 15.81432106260856 }, - "vertexSeeds": { - "c1": 10.224734444059104, - "c2": 9.942048486318729, - "c3": 10.158589453075892, - "c4": 10.34840547485653, - "c5": 9.93213428035242, - "c6": 10.387564159996089, - "c7": 10.230494363849264 + "offsets": { + "c1": 17.508090614886733, + "c2": 15.00693481276003, + "c3": 12.50577901063339, + "c4": 10.004623208506686, + "c5": 7.5034674063800475, + "c6": 5.002311604253343, + "c7": 2.501155802126705 }, "rgb": [77, 76, 132] }, @@ -446154,23 +446154,23 @@ "year": 1828, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -16.609390755120018, - "c2": 10.718921132785074, - "c3": 4.1961361927345315, - "c4": -6.683456432860115, - "c5": -27.47664648038587, - "c6": -20.85770700814455, - "c7": 25.960698579583894 + "points": { + "c1": -2.6909483189128984, + "c2": 10.293115407861752, + "c3": 0.24957099111985315, + "c4": -22.918169239359024, + "c5": 16.004232813316538, + "c6": -14.356346683540266, + "c7": 23.79892990827508 }, - "vertexSeeds": { - "c1": 8.923929105807892, - "c2": 9.37374191494082, - "c3": 8.93098437212368, - "c4": 9.489690164647337, - "c5": 8.852786109965725, - "c6": 9.115712359614534, - "c7": 9.249270528875586 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -446181,23 +446181,23 @@ "year": 1828, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -20.451210870951293, - "c2": -35.62419953609731, - "c3": 14.821563511515855, - "c4": -21.72326311999327, - "c5": -20.878454251978123, - "c6": -11.269374538895928, - "c7": 0.5957715623876254 + "points": { + "c1": -14.556873415361288, + "c2": -9.194970630677123, + "c3": 39.22054039770178, + "c4": -1.3832151469279665, + "c5": -39.849244985593096, + "c6": 27.858449324591092, + "c7": -20.233169628165772 }, - "vertexSeeds": { - "c1": 7.752590673575129, - "c2": 7.752590673575129, - "c3": 7.752590673575129, - "c4": 7.752590673575129, - "c5": 7.752590673575129, - "c6": 7.752590673575129, - "c7": 7.752590673575129 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -446208,23 +446208,23 @@ "year": 1828, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 9.174944410020117, - "c2": -30.942286666861932, - "c3": 14.073747080976979, - "c4": 8.494931836954471, - "c5": 14.199901890909317, - "c6": -16.91273858065834, - "c7": 32.99006381750108 + "points": { + "c1": 40.331123109406406, + "c2": -21.14365902894322, + "c3": 5.835657095728855, + "c4": -39.31231353355124, + "c5": 18.30126840105261, + "c6": 36.014140402997256, + "c7": -14.202132876245358 }, - "vertexSeeds": { - "c1": 9.295071732943882, - "c2": 9.573640518130032, - "c3": 9.499302497799361, - "c4": 9.301286970489917, - "c5": 9.586202960636072, - "c6": 9.342213425729868, - "c7": 9.607929404100142 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.758668515950056, + "c3": 11.465557096625082, + "c4": 9.172445677300056, + "c5": 6.879334257975028, + "c6": 4.58622283865, + "c7": 2.2931114193250273 }, "rgb": [86, 146, 138] }, @@ -446235,23 +446235,23 @@ "year": 1828, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -17.672869178950812, - "c2": 11.893243708753761, - "c3": -18.543259256566643, - "c4": 6.218146205828955, - "c5": -12.844526973753144, - "c6": 0.7646697876292343, - "c7": -8.641170721887713 + "points": { + "c1": -7.494096815075423, + "c2": -24.201629409240734, + "c3": -10.571954411026073, + "c4": -17.985287498635415, + "c5": 2.992925550445097, + "c6": -2.8041849785188546, + "c7": 22.18369283217029 }, - "vertexSeeds": { - "c1": 8.539476264778916, - "c2": 8.40941639812921, - "c3": 8.210593601368421, - "c4": 8.402335651714152, - "c5": 8.450756815995073, - "c6": 8.543021994351747, - "c7": 8.428284911247511 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.45492371705964, + "c3": 10.3791030975497, + "c4": 8.30328247803976, + "c5": 6.22746185852982, + "c6": 4.15164123901988, + "c7": 2.07582061950994 }, "rgb": [86, 146, 138] }, @@ -446262,23 +446262,23 @@ "year": 1828, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -30.14735101875737, - "c2": -24.157578245721663, - "c3": -3.37402863952574, - "c4": -10.859445061702996, - "c5": 26.040368817164726, - "c6": -17.649907018554288, - "c7": -12.348812395466432 + "points": { + "c1": -33.21734015177393, + "c2": -36.685783147753185, + "c3": -29.37774548190822, + "c4": -7.557422384976505, + "c5": -0.7570757446816785, + "c6": 32.21620913847474, + "c7": 33.18302631447888 }, - "vertexSeeds": { - "c1": 5.478686419878277, - "c2": 5.495385014086366, - "c3": 5.4607507229125645, - "c4": 5.410277632728437, - "c5": 5.320631107139608, - "c6": 5.329394235731677, - "c7": 5.47902495677643 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -446289,23 +446289,23 @@ "year": 1828, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -23.066182660217187, - "c2": -0.060802174441477064, - "c3": -6.864986942010162, - "c4": 20.430175708587683, - "c5": -26.073069857072227, - "c6": -26.834024498839174, - "c7": 25.988991896406233 + "points": { + "c1": -13.463109234825971, + "c2": -23.439734748223426, + "c3": -27.637904276655828, + "c4": -33.287123980766694, + "c5": -8.313662576494806, + "c6": -9.345531089808034, + "c7": 30.85496292563407 }, - "vertexSeeds": { - "c1": 11.158675590143316, - "c2": 11.158492232373499, - "c3": 11.810827393159148, - "c4": 11.72162633785307, - "c5": 11.544544292966139, - "c6": 11.457717187718968, - "c7": 10.867741104989436 + "offsets": { + "c1": 19.93527508090615, + "c2": 17.08737864077668, + "c3": 14.239482200647254, + "c4": 11.391585760517787, + "c5": 8.543689320388362, + "c6": 5.695792880258893, + "c7": 2.8478964401294276 }, "rgb": [58, 15, 49] }, @@ -446316,23 +446316,23 @@ "year": 1828, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 12.841440167862295, - "c2": -1.2286276021959424, - "c3": -32.38747260990201, - "c4": -2.041807068567394, - "c5": 12.698405915007598, - "c6": -3.485191149909184, - "c7": -16.528695100067416 + "points": { + "c1": 8.32707876849836, + "c2": 23.416653742769093, + "c3": 23.435400196700094, + "c4": -14.127728443076347, + "c5": -26.30011166719053, + "c6": -17.62402286037124, + "c7": -4.043002181357139 }, - "vertexSeeds": { - "c1": 3.329332786234627, - "c2": 3.3365857713395455, - "c3": 3.416260366653508, - "c4": 3.3322829406423864, - "c5": 3.3350625491977945, - "c6": 3.3910589751911866, - "c7": 3.3084425268444164 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400834, + "c3": 4.253351826167364, + "c4": 3.4026814609338936, + "c5": 2.5520110957004114, + "c6": 1.701340730466941, + "c7": 0.8506703652334705 }, "rgb": [58, 15, 49] }, @@ -446343,23 +446343,23 @@ "year": 1828, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": 1.61969078626381, - "c2": 15.50108112864585, - "c3": 7.097122943469735, - "c4": 6.900751933871831, - "c5": -9.51190664699625, - "c6": -7.428872518447854, - "c7": 17.061983183608483 + "points": { + "c1": 3.5432057812634277, + "c2": -15.16960947059615, + "c3": -7.123522006812021, + "c4": -14.133845202665318, + "c5": -1.9149937342773953, + "c6": -10.9882330894888, + "c7": -19.535475153171568 }, - "vertexSeeds": { - "c1": 5.454584462172826, - "c2": 5.380463573820424, - "c3": 5.7719489908140424, - "c4": 5.542936521464133, - "c5": 5.450114917393231, - "c6": 5.749581809587707, - "c7": 5.540941942946294 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -446370,23 +446370,23 @@ "year": 1828, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -22.408574918546847, - "c2": 18.05538089773122, - "c3": -8.362279429390316, - "c4": 13.896685946271596, - "c5": -10.250354981060356, - "c6": -2.6763745478588774, - "c7": 14.55336136788408 + "points": { + "c1": 1.8146178215587092, + "c2": 14.71846443329153, + "c3": -7.764954288182228, + "c4": -23.327036518516174, + "c5": -3.932045169256263, + "c6": 18.31136997218293, + "c7": -2.7573908850933506 }, - "vertexSeeds": { - "c1": 7.987970912202454, - "c2": 8.119745642261815, - "c3": 8.170842126194314, - "c4": 8.127486043514859, - "c5": 7.984130672884048, - "c6": 8.132839854348422, - "c7": 8.260327759076862 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255196, + "c3": 9.916782246879324, + "c4": 7.933425797503453, + "c5": 5.950069348127613, + "c6": 3.966712898751742, + "c7": 1.983356449375871 }, "rgb": [86, 146, 138] }, @@ -446397,23 +446397,23 @@ "year": 1828, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": 17.45165479472294, - "c2": -4.855345517807464, - "c3": 3.635444323156804, - "c4": 27.4149032791911, - "c5": 29.439132324290142, - "c6": 29.158022591535442, - "c7": 20.493344675708315 + "points": { + "c1": 37.51390975956835, + "c2": 24.73420314939463, + "c3": 32.80260117636554, + "c4": 4.63433150212601, + "c5": 13.362902351327662, + "c6": 5.812706921070756, + "c7": -30.557524305738458 }, - "vertexSeeds": { - "c1": 8.990786886188234, - "c2": 8.731171326935215, - "c3": 9.158293577035423, - "c4": 8.941378795198329, - "c5": 9.021919588564572, - "c6": 9.264337065637077, - "c7": 9.026687786279277 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -446424,23 +446424,23 @@ "year": 1828, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -5.066341426722136, - "c2": -21.68776918798229, - "c3": -27.30030352544372, - "c4": 27.27580177568555, - "c5": 1.269159665103782, - "c6": -4.182707564375107, - "c7": 8.166457889398771 + "points": { + "c1": -2.298701382841706, + "c2": -11.536604386494375, + "c3": 4.200857659732414, + "c4": -16.56550976234825, + "c5": 3.9412830804150047, + "c6": 1.2795207824686017, + "c7": -6.903160304090168 }, - "vertexSeeds": { - "c1": 6.800518134715026, - "c2": 6.800518134715026, - "c3": 6.800518134715026, - "c4": 6.800518134715026, - "c5": 6.800518134715026, - "c6": 6.800518134715026, - "c7": 6.800518134715026 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -446451,23 +446451,23 @@ "year": 1828, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": -17.66672061841359, - "c2": 2.542366349454042, - "c3": 30.581767205930234, - "c4": -25.21711406653902, - "c5": -14.61830423514419, - "c6": -5.277251833127487, - "c7": -2.9366717982156594 + "points": { + "c1": -13.595927977616913, + "c2": -15.01986425233494, + "c3": -32.3939893737006, + "c4": -14.895777296785312, + "c5": -15.003765716039325, + "c6": 32.44030716738652, + "c7": -25.901065216247908 }, - "vertexSeeds": { - "c1": 1.963846771854941, - "c2": 1.608736209342573, - "c3": 1.8470171972629514, - "c4": 1.7879110984472277, - "c5": 1.6812380446680617, - "c6": 1.8790019415964552, - "c7": 1.5876436458138057 + "offsets": { + "c1": 3.3980582524271843, + "c2": 2.9126213592233023, + "c3": 2.4271844660194177, + "c4": 1.9417475728155333, + "c5": 1.4563106796116512, + "c6": 0.9708737864077688, + "c7": 0.4854368932038844 }, "rgb": [77, 76, 132] }, @@ -446478,23 +446478,23 @@ "year": 1828, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -20.840287648914472, - "c2": -8.393535928684413, - "c3": -13.286728958049391, - "c4": -4.395131497902824, - "c5": -4.749001382653422, - "c6": -13.40970509612892, - "c7": -1.2055082570382432 + "points": { + "c1": -4.2095158733304245, + "c2": -24.807085379125752, + "c3": 15.247072679625298, + "c4": 12.01651322396443, + "c5": -23.893319293388835, + "c6": 23.35614706891384, + "c7": 14.602929387168174 }, - "vertexSeeds": { - "c1": 1.5081634062658118, - "c2": 1.4931326140422831, - "c3": 1.5085548044256452, - "c4": 1.5018169918268371, - "c5": 1.5092679115579402, - "c6": 1.496406762473331, - "c7": 1.5072839662537696 + "offsets": { + "c1": 2.55663430420712, + "c2": 2.1914008321775236, + "c3": 1.8261673601479453, + "c4": 1.460933888118349, + "c5": 1.095700416088771, + "c6": 0.7304669440591745, + "c7": 0.36523347202959633 }, "rgb": [86, 146, 138] }, @@ -446505,23 +446505,23 @@ "year": 1828, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -2.429887573395927, - "c2": -10.738700266198059, - "c3": 0.7773237696677704, - "c4": -23.68905085025167, - "c5": -26.953936995968615, - "c6": -14.682559591930438, - "c7": -1.2532768593812271 + "points": { + "c1": 12.094898741377406, + "c2": 27.263157122519367, + "c3": 0.5984619454074647, + "c4": -21.406217764264248, + "c5": -0.39834772479112246, + "c6": 21.19795698159603, + "c7": -14.516096766917045 }, - "vertexSeeds": { - "c1": 5.341794361574356, - "c2": 5.442955379947321, - "c3": 5.42353199323744, - "c4": 5.428428520173201, - "c5": 5.4673472694460745, - "c6": 5.43652171097735, - "c7": 5.4417227841252185 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -446532,23 +446532,23 @@ "year": 1828, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -24.88077628171549, - "c2": 24.537721383733583, - "c3": -28.014787746926736, - "c4": 12.530759969225201, - "c5": 2.9786499251310232, - "c6": 4.259906619979873, - "c7": 30.617738405753826 + "points": { + "c1": 25.903059234136087, + "c2": -7.446774034481141, + "c3": -16.242639974708347, + "c4": -23.258749624455294, + "c5": -30.76988843505554, + "c6": 10.726318343769535, + "c7": -13.765255056626415 }, - "vertexSeeds": { - "c1": 10.364292047862047, - "c2": 10.62587624223204, - "c3": 10.362981100444431, - "c4": 10.32774955181162, - "c5": 10.456646113764442, - "c6": 10.241282637349126, - "c7": 10.613358744983627 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122062, + "c3": 12.713823393435067, + "c4": 10.17105871474799, + "c5": 7.628294036060991, + "c6": 5.085529357373995, + "c7": 2.5427646786869973 }, "rgb": [238, 201, 159] }, @@ -446559,23 +446559,23 @@ "year": 1828, "resistanceReported": false, "duration": 22377600, - "curveSeeds": { - "c1": -20.1112508493133, - "c2": 9.032245909982336, - "c3": 29.14402559321725, - "c4": -21.094856568819537, - "c5": -23.010252038876082, - "c6": -13.237198792782056, - "c7": 7.407426805609958 + "points": { + "c1": -33.13964125759847, + "c2": 19.522599365506437, + "c3": 34.93055076439063, + "c4": -32.49463926105735, + "c5": 23.034083929308572, + "c6": 0.07887760678303124, + "c7": 15.051799305627334 }, - "vertexSeeds": { - "c1": 5.715126279755278, - "c2": 7.268922733999674, - "c3": 6.011110691015004, - "c4": 6.409510535697382, - "c5": 7.910941070997098, - "c6": 5.368661778610688, - "c7": 3.707277983904423 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140083, + "c3": 10.425335182616736, + "c4": 8.340268146093388, + "c5": 6.2552011095700415, + "c6": 4.170134073046696, + "c7": 2.0850670365233466 }, "rgb": [86, 146, 138] }, @@ -446586,23 +446586,23 @@ "year": 1828, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 5.6679808164026895, - "c2": -32.96536735599372, - "c3": 17.654892297043915, - "c4": -17.449935198696764, - "c5": -32.06632116912749, - "c6": 18.8675797176015, - "c7": -11.429406192605406 + "points": { + "c1": 5.2160875376706315, + "c2": -21.88616158577477, + "c3": 32.82224623004407, + "c4": -6.77169334598225, + "c5": 34.071304769649814, + "c6": 1.522573136342693, + "c7": -3.0770009809784113 }, - "vertexSeeds": { - "c1": 10.468686323282261, - "c2": 10.452512867351842, - "c3": 10.135454377674447, - "c4": 10.011062207862919, - "c5": 11.392236296886272, - "c6": 10.665366662740883, - "c7": 11.749946837879149 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.75312066574203, + "c3": 14.794267221451694, + "c4": 11.835413777161342, + "c5": 8.876560332871007, + "c6": 5.917706888580671, + "c7": 2.9588534442903356 }, "rgb": [222, 0, 59] }, @@ -446613,23 +446613,23 @@ "year": 1829, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": 11.259245331263031, - "c2": 0.06673528324546396, - "c3": 30.005951009884235, - "c4": 7.276982244536853, - "c5": -41.14599758487177, - "c6": 20.923528977700933, - "c7": -43.696248572895584 + "points": { + "c1": -1.9145547072097386, + "c2": 25.908842662494884, + "c3": 36.57478461882979, + "c4": 16.715597802599454, + "c5": -48.420464790228294, + "c6": -1.24432990545359, + "c7": 41.71667999533617 }, - "vertexSeeds": { - "c1": 5.944235319120141, - "c2": 5.7681296359926115, - "c3": 5.900110068732743, - "c4": 5.8985452482437895, - "c5": 5.887071892737541, - "c6": 5.586620122809696, - "c7": 5.770778308901331 + "offsets": { + "c1": 10.29126213592233, + "c2": 8.821081830790575, + "c3": 7.350901525658818, + "c4": 5.880721220527043, + "c5": 4.410540915395288, + "c6": 2.940360610263531, + "c7": 1.4701803051317746 }, "rgb": [238, 201, 159] }, @@ -446640,23 +446640,23 @@ "year": 1828, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -28.01650351790188, - "c2": -22.96400733242863, - "c3": -32.24257864313616, - "c4": 20.840012401862786, - "c5": 30.70559428517449, - "c6": 23.836399600529987, - "c7": 20.285092394166128 + "points": { + "c1": -33.792903759478634, + "c2": -15.414545193344718, + "c3": -32.820842704315254, + "c4": -8.66999609398869, + "c5": -20.08705724117724, + "c6": -6.12109945219148, + "c7": -15.683318136195865 }, - "vertexSeeds": { - "c1": 5.442471530913163, - "c2": 5.461792356152536, - "c3": 5.259674730028227, - "c4": 5.2926208344354695, - "c5": 5.2938654346770315, - "c6": 5.354123559871956, - "c7": 5.307107191451812 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -446667,23 +446667,23 @@ "year": 1828, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 18.451209057818893, - "c2": 8.598277086324138, - "c3": -15.545730438879055, - "c4": 17.823606073805202, - "c5": 5.937740911531467, - "c6": 15.448954264247831, - "c7": -9.451435354232695 + "points": { + "c1": -11.309844656798273, + "c2": 0.7635155429537974, + "c3": -1.147801729199955, + "c4": -19.54241669438248, + "c5": 0.4294232536091904, + "c6": -19.837549844897516, + "c7": -4.502093845988121 }, - "vertexSeeds": { - "c1": 3.7773474563105434, - "c2": 3.8611142059393746, - "c3": 3.8296461593767734, - "c4": 3.8110364063660764, - "c5": 3.8351455435204986, - "c6": 3.79430069018437, - "c7": 3.841829443400817 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.547850208044372, + "c3": 4.6232085067036675, + "c4": 3.698566805362927, + "c5": 2.773925104022186, + "c6": 1.8492834026814449, + "c7": 0.924641701340741 }, "rgb": [238, 201, 159] }, @@ -446694,23 +446694,23 @@ "year": 1828, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -7.331383542614773, - "c2": -32.896608749775076, - "c3": -20.089000876179306, - "c4": 23.146226506454674, - "c5": 13.33117849590063, - "c6": -7.042803596548914, - "c7": 10.6967252643067 + "points": { + "c1": -5.099533215135402, + "c2": -17.860236950604342, + "c3": 5.6614467040250815, + "c4": -2.3654352277883106, + "c5": 20.75306906844918, + "c6": 15.2852864987305, + "c7": -15.077666228638947 }, - "vertexSeeds": { - "c1": 9.466169741064173, - "c2": 8.788908564539824, - "c3": 9.791758713826368, - "c4": 9.047378040148455, - "c5": 9.299939632685678, - "c6": 9.124222093296837, - "c7": 9.822119523593276 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.091539528432735, + "c3": 11.742949607027269, + "c4": 9.394359685621819, + "c5": 7.0457697642163675, + "c6": 4.697179842810917, + "c7": 2.34858992140545 }, "rgb": [77, 76, 132] }, @@ -446721,23 +446721,23 @@ "year": 1828, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": -26.680864048742745, - "c2": -30.781614479641988, - "c3": 13.750828038269198, - "c4": 27.985337377300922, - "c5": 3.0351712211400397, - "c6": 25.669639195510456, - "c7": -30.921777603610977 + "points": { + "c1": -29.814351152235922, + "c2": 5.060212267627783, + "c3": -20.882687079443933, + "c4": 24.492371383693765, + "c5": 21.762267121171988, + "c6": -10.966261335261493, + "c7": -31.867685441864133 }, - "vertexSeeds": { - "c1": 14.222328417456719, - "c2": 14.214558259151126, - "c3": 14.172774173501088, - "c4": 14.222382066981462, - "c5": 14.174476660051491, - "c6": 14.20719417257066, - "c7": 14.176567328698349 + "offsets": { + "c1": 23.721682847896442, + "c2": 20.33287101248254, + "c3": 16.94405917706863, + "c4": 13.555247341654725, + "c5": 10.166435506241717, + "c6": 6.777623670827811, + "c7": 3.3888118354139056 }, "rgb": [77, 76, 132] }, @@ -446748,23 +446748,23 @@ "year": 1829, "resistanceReported": false, "duration": 54432000, - "curveSeeds": { - "c1": -12.76448007478097, - "c2": 51.03370031814097, - "c3": 32.047454945112975, - "c4": -23.917006770821125, - "c5": 52.16511274567772, - "c6": 58.05033866224106, - "c7": -65.46636775686913 + "points": { + "c1": 5.557368936448242, + "c2": -39.291378203463765, + "c3": -9.107239675226296, + "c4": -14.119296120269738, + "c5": -16.303643275486635, + "c6": -1.9615410912851843, + "c7": 46.55774853860132 }, - "vertexSeeds": { - "c1": 8.265226941531955, - "c2": 7.817959436597538, - "c3": 6.927359843924819, - "c4": 7.531895425225829, - "c5": 8.180901649982584, - "c6": 7.589675577137754, - "c7": 7.2860663729727255 + "offsets": { + "c1": 14.271844660194175, + "c2": 12.233009708737868, + "c3": 10.194174757281552, + "c4": 8.155339805825246, + "c5": 6.116504854368929, + "c6": 4.077669902912623, + "c7": 2.0388349514563067 }, "rgb": [238, 201, 159] }, @@ -446775,23 +446775,23 @@ "year": 1828, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 8.132622446435384, - "c2": -18.213407813129827, - "c3": -0.524922086876316, - "c4": -11.799708618952067, - "c5": 16.525420120786812, - "c6": -27.44182506351171, - "c7": 32.954943173752135 + "points": { + "c1": 27.167871283156792, + "c2": -28.707631081497865, + "c3": 4.051799638250365, + "c4": -19.23139920046436, + "c5": 12.923275082409802, + "c6": -21.242093581957057, + "c7": -1.1045309520967592 }, - "vertexSeeds": { - "c1": 7.948643345082082, - "c2": 7.8739735626075396, - "c3": 8.16388325636705, - "c4": 7.920230418845682, - "c5": 8.190669114192552, - "c6": 8.2014414641709, - "c7": 7.873549882763462 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054092, + "c3": 9.801202034211743, + "c4": 7.840961627369394, + "c5": 5.880721220527046, + "c6": 3.920480813684697, + "c7": 1.9602404068423485 }, "rgb": [58, 15, 49] }, @@ -446802,23 +446802,23 @@ "year": 1828, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -24.936732426888558, - "c2": -6.454095269302872, - "c3": -13.175670063072806, - "c4": 14.187534882377278, - "c5": -9.181877679737646, - "c6": 16.80692739454455, - "c7": -15.837701962339958 + "points": { + "c1": -19.98799588058275, + "c2": 21.250731888517542, + "c3": 10.535624870926554, + "c4": -22.364876034608283, + "c5": -1.9410614698152955, + "c6": 20.400034370075318, + "c7": -4.633627628574107 }, - "vertexSeeds": { - "c1": 4.829276508524078, - "c2": 4.820953651740707, - "c3": 4.856254915012509, - "c4": 4.853781564882724, - "c5": 4.800083474929343, - "c6": 4.813947747933331, - "c7": 4.805575146817627 + "offsets": { + "c1": 8.122977346278319, + "c2": 6.962552011095735, + "c3": 5.802126675913074, + "c4": 4.64170134073049, + "c5": 3.481276005547829, + "c6": 2.320850670365245, + "c7": 1.160425335182584 }, "rgb": [58, 15, 49] }, @@ -446829,23 +446829,23 @@ "year": 1828, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -33.75426382858045, - "c2": -35.5874900315508, - "c3": 13.861280111240156, - "c4": -15.319306109231242, - "c5": 14.989617372309148, - "c6": -0.20241665654267393, - "c7": 25.259670438616176 + "points": { + "c1": -16.183482799967287, + "c2": 24.65269590754088, + "c3": -13.031676907060266, + "c4": -9.990461575202822, + "c5": -3.5646794651804967, + "c6": -37.84311643541956, + "c7": -22.152925969993948 }, - "vertexSeeds": { - "c1": 9.638156200517635, - "c2": 7.6695794128863, - "c3": 7.8686969382161145, - "c4": 7.677185683676388, - "c5": 9.523305245971164, - "c6": 8.902357986691342, - "c7": 8.93571867293881 + "offsets": { + "c1": 16.440129449838185, + "c2": 14.09153952843273, + "c3": 11.742949607027274, + "c4": 9.394359685621817, + "c5": 7.04576976421636, + "c6": 4.697179842810913, + "c7": 2.3485899214054564 }, "rgb": [77, 76, 132] }, @@ -446856,23 +446856,23 @@ "year": 1828, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 20.055013914379302, - "c2": -8.82250732175585, - "c3": -22.99310413105263, - "c4": 31.887849808202915, - "c5": 22.728222939128827, - "c6": 33.33871029634524, - "c7": 24.721756028038847 + "points": { + "c1": -20.711870338187335, + "c2": 12.468099031923494, + "c3": -32.43100643674451, + "c4": 0.42799630878632655, + "c5": -6.719890705533782, + "c6": -8.915411814696505, + "c7": -31.8500818924676 }, - "vertexSeeds": { - "c1": 10.286217963135796, - "c2": 10.506017148770685, - "c3": 10.694770898289956, - "c4": 10.610320097357983, - "c5": 10.430931178854165, - "c6": 10.824863068913421, - "c7": 10.462469774658665 + "offsets": { + "c1": 18.155339805825243, + "c2": 15.561719833564492, + "c3": 12.968099861303745, + "c4": 10.374479889042995, + "c5": 7.780859916782246, + "c6": 5.187239944521497, + "c7": 2.5936199722607487 }, "rgb": [77, 76, 132] }, @@ -446883,23 +446883,23 @@ "year": 1828, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 14.630269145173628, - "c2": -25.801839969172406, - "c3": 26.142851262813274, - "c4": 7.410697667969956, - "c5": -1.6025753832812768, - "c6": -8.897007445018861, - "c7": 13.849377541355523 + "points": { + "c1": -9.122527405265192, + "c2": -9.894301594746597, + "c3": -30.17024816603295, + "c4": 6.205460499250307, + "c5": 0.6156112735021537, + "c6": 26.915755281067057, + "c7": -27.07608701513564 }, - "vertexSeeds": { - "c1": 6.916256933190705, - "c2": 6.95978724958352, - "c3": 6.6904283970196365, - "c4": 6.465810339560414, - "c5": 6.829308795770119, - "c6": 6.258078802396984, - "c7": 6.6059046549018845 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123433, + "c3": 8.691631992602867, + "c4": 6.953305594082289, + "c5": 5.214979195561724, + "c6": 3.4766527970411447, + "c7": 1.7383263985205657 }, "rgb": [77, 76, 132] }, @@ -446910,23 +446910,23 @@ "year": 1829, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": -27.82657969899011, - "c2": -41.31374079965166, - "c3": -33.76334005066843, - "c4": 22.358611292201203, - "c5": -6.005266502037202, - "c6": 17.582401252369742, - "c7": 6.1443291942293286 + "points": { + "c1": -41.132565333591785, + "c2": -0.06978790885004571, + "c3": -26.12650240714437, + "c4": 31.088792524056387, + "c5": 22.954752841694045, + "c6": -39.277267600802894, + "c7": 4.908292235475322 }, - "vertexSeeds": { - "c1": 8.537113461038002, - "c2": 8.552300075923133, - "c3": 8.936253735458964, - "c4": 9.041190137923833, - "c5": 8.78715215444071, - "c6": 8.795716565247869, - "c7": 8.990105665300499 + "offsets": { + "c1": 15.372168284789645, + "c2": 13.176144244105403, + "c3": 10.980120203421185, + "c4": 8.784096162736942, + "c5": 6.588072122052702, + "c6": 4.39204808136846, + "c7": 2.1960240406842417 }, "rgb": [222, 0, 59] }, @@ -446937,23 +446937,23 @@ "year": 1829, "resistanceReported": false, "duration": 45360000, - "curveSeeds": { - "c1": 13.687456894542727, - "c2": 30.971855537047993, - "c3": 3.2446110282729776, - "c4": 29.02779813216207, - "c5": -57.77729995811344, - "c6": -31.19266450952635, - "c7": -40.83537337498591 + "points": { + "c1": -34.7286213505709, + "c2": -41.725296198291424, + "c3": -32.3067218338841, + "c4": 51.29777715857271, + "c5": 10.933966587049149, + "c6": 23.134616179270957, + "c7": 16.97711323596355 }, - "vertexSeeds": { - "c1": 4.610095110331137, - "c2": 4.66956991409444, - "c3": 5.297953908199149, - "c4": 5.274613186117097, - "c5": 4.760634900067539, - "c6": 5.281096368662351, - "c7": 5.448085645871216 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342584, + "c3": 6.518723994452148, + "c4": 5.214979195561724, + "c5": 3.9112343966712864, + "c6": 2.607489597780862, + "c7": 1.303744798890425 }, "rgb": [58, 15, 49] }, @@ -446964,23 +446964,23 @@ "year": 1828, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -25.590777795233905, - "c2": 9.273619666590086, - "c3": -4.934816452978037, - "c4": -19.18801120503416, - "c5": 15.82107803179079, - "c6": -28.640490469716912, - "c7": 4.098210856694209 + "points": { + "c1": -12.05666130022221, + "c2": -2.6252193423865933, + "c3": -10.230138893206238, + "c4": -30.167811862904276, + "c5": 17.131639145201163, + "c6": 6.87866287526041, + "c7": 11.62914660467861 }, - "vertexSeeds": { - "c1": 5.170343054338421, - "c2": 5.026611081416883, - "c3": 4.931521258494212, - "c4": 5.139829786055188, - "c5": 4.935995551495826, - "c6": 5.035179505422186, - "c7": 5.138117123248405 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779464, + "c3": 6.195099398982906, + "c4": 4.95607951918632, + "c5": 3.717059639389732, + "c6": 2.47803975959316, + "c7": 1.239019879796587 }, "rgb": [222, 0, 59] }, @@ -446991,23 +446991,23 @@ "year": 1828, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -22.662861387052637, - "c2": 30.924047709938108, - "c3": -21.00855380713808, - "c4": -0.3505901509602509, - "c5": -31.572442509088944, - "c6": -4.687604527133445, - "c7": 0.1741039295248683 + "points": { + "c1": 23.00794556800961, + "c2": 2.7756552569062123, + "c3": 33.656297572900584, + "c4": 11.717337172941377, + "c5": -5.209091218141715, + "c6": -28.529201891908354, + "c7": -20.473951629999746 }, - "vertexSeeds": { - "c1": 5.354886807533107, - "c2": 5.348087850847459, - "c3": 5.486456899888401, - "c4": 5.349387100506198, - "c5": 5.426879217700145, - "c6": 5.349248595874695, - "c7": 5.369412553161396 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -447018,23 +447018,23 @@ "year": 1828, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -5.348437067582198, - "c2": -12.755597499939554, - "c3": 16.20541784219739, - "c4": 8.619375855010997, - "c5": -12.880461752531437, - "c6": 0.22998188382284823, - "c7": 11.479105545421145 + "points": { + "c1": -0.35743568508401324, + "c2": 15.224590953899678, + "c3": 15.307414407741085, + "c4": -14.597103867005323, + "c5": 16.264587325266724, + "c6": -7.69565766880674, + "c7": -4.964160586068225 }, - "vertexSeeds": { - "c1": 0.038860103626943004, - "c2": 0.038860103626943004, - "c3": 0.038860103626943004, - "c4": 0.038860103626943004, - "c5": 0.038860103626943004, - "c6": 0.038860103626943004, - "c7": 0.038860103626943004 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -447045,23 +447045,23 @@ "year": 1828, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 28.498342666453624, - "c2": 19.062437310512742, - "c3": -24.72269045530733, - "c4": -33.93631990565053, - "c5": -7.947743774080184, - "c6": 20.37666001405851, - "c7": 27.11232489392875 + "points": { + "c1": -27.732602076489307, + "c2": 18.763981596123443, + "c3": 37.19838862470979, + "c4": -24.026117445491813, + "c5": -12.473564166424584, + "c6": 31.19401615429186, + "c7": -19.049341689289534 }, - "vertexSeeds": { - "c1": 9.142488751465685, - "c2": 9.646860677316436, - "c3": 9.85076341438236, - "c4": 8.51993707638613, - "c5": 8.613364686114265, - "c6": 8.450503709230336, - "c7": 9.384058579716502 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915396, + "c3": 12.020342117429497, + "c4": 9.616273693943597, + "c5": 7.212205270457698, + "c6": 4.808136846971799, + "c7": 2.4040684234858993 }, "rgb": [222, 0, 59] }, @@ -447072,23 +447072,23 @@ "year": 1829, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": -36.028072848671144, - "c2": 2.0556105736033956, - "c3": -35.316021217923115, - "c4": -20.625753922538127, - "c5": 16.104935573430033, - "c6": 31.716322861371495, - "c7": 11.59272411834965 + "points": { + "c1": -33.761338743142296, + "c2": -4.00516992688668, + "c3": -12.693997981087964, + "c4": 29.54953576661336, + "c5": -17.40903028962824, + "c6": 6.038631310407084, + "c7": 40.739124333892704 }, - "vertexSeeds": { - "c1": 7.127050861178472, - "c2": 7.708930120871349, - "c3": 7.205470818949421, - "c4": 6.95260887947416, - "c5": 7.301574229914726, - "c6": 7.941898479404846, - "c7": 7.692484588390881 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490983, + "c3": 9.477577438742482, + "c4": 7.582061950993999, + "c5": 5.686546463245499, + "c6": 3.7910309754969993, + "c7": 1.8955154877484997 }, "rgb": [58, 15, 49] }, @@ -447099,23 +447099,23 @@ "year": 1829, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": -35.77239991362159, - "c2": -0.7823560811636696, - "c3": 23.880193813881377, - "c4": -31.17827863097746, - "c5": 27.388898731433095, - "c6": 25.61728170628215, - "c7": 7.169421204219461 + "points": { + "c1": 3.781986351162942, + "c2": 3.0851371646021235, + "c3": 13.24482200472827, + "c4": -36.99524609728321, + "c5": 35.33667537697363, + "c6": 11.915047242834369, + "c7": 20.213419606804024 }, - "vertexSeeds": { - "c1": 5.403507633930171, - "c2": 5.41870311121078, - "c3": 5.429123249949618, - "c4": 5.3841568565802085, - "c5": 5.410968402015411, - "c6": 5.380673577300036, - "c7": 5.418355150629232 + "offsets": { + "c1": 9.093851132686085, + "c2": 7.794729542302395, + "c3": 6.4956079519185765, + "c4": 5.1964863615348875, + "c5": 3.8973647711511976, + "c6": 2.598243180767379, + "c7": 1.2991215903836895 }, "rgb": [86, 146, 138] }, @@ -447126,23 +447126,23 @@ "year": 1828, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -19.770642817463443, - "c2": -14.117059253576826, - "c3": -23.40270083403584, - "c4": -17.77189072253503, - "c5": -16.768469634071835, - "c6": 1.545250824303011, - "c7": -5.63952698247785 + "points": { + "c1": 26.831722186522427, + "c2": 7.4198459553091, + "c3": -30.3289785825796, + "c4": -32.13926696198755, + "c5": 33.61735108820539, + "c6": -13.26506489284904, + "c7": -15.959625269816804 }, - "vertexSeeds": { - "c1": 5.489247242942369, - "c2": 5.376355038932862, - "c3": 5.645752077819135, - "c4": 5.435864847777149, - "c5": 5.385830113894255, - "c6": 5.377504345094671, - "c7": 5.371333102341467 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -447153,23 +447153,23 @@ "year": 1828, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 19.048687901813786, - "c2": 15.271142846981078, - "c3": -11.203219436398484, - "c4": 21.33547223559625, - "c5": -5.636418606234837, - "c6": -12.626742488281007, - "c7": -23.89664499780561 + "points": { + "c1": -24.810709348073622, + "c2": 9.931954700377794, + "c3": 19.1843264286314, + "c4": 31.640524204223837, + "c5": 5.118615455446964, + "c6": -20.750217975425556, + "c7": 2.66519883582653 }, - "vertexSeeds": { - "c1": 5.427697023261046, - "c2": 5.291710780438926, - "c3": 5.364590136113416, - "c4": 5.422407018694326, - "c5": 5.23458199509285, - "c6": 5.443396152257116, - "c7": 5.4410526425434975 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -447180,23 +447180,23 @@ "year": 1828, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 28.196048606551717, - "c2": -20.3331735489241, - "c3": -23.2296064335487, - "c4": 4.804225881300692, - "c5": 9.28484610221322, - "c6": -8.335213272544117, - "c7": 21.67007800140421 + "points": { + "c1": 5.962568511315123, + "c2": 5.708270440493752, + "c3": 30.277191123516598, + "c4": -14.214846969413323, + "c5": -1.4717417432948672, + "c6": 24.77965435380136, + "c7": -20.42575581784834 }, - "vertexSeeds": { - "c1": 11.006274765517768, - "c2": 11.052597820790936, - "c3": 11.05442283231047, - "c4": 11.28925387861141, - "c5": 11.28432289468694, - "c6": 10.940954961288876, - "c7": 10.654671940438002 + "offsets": { + "c1": 19.093851132686083, + "c2": 16.366158113730922, + "c3": 13.638465094775759, + "c4": 10.9107720758206, + "c5": 8.183079056865436, + "c6": 5.455386037910323, + "c7": 2.7276930189551614 }, "rgb": [222, 0, 59] }, @@ -447207,23 +447207,23 @@ "year": 1828, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -0.39525303817653423, - "c2": 4.033749623519178, - "c3": -0.22714653981253008, - "c4": -22.408010174116626, - "c5": -30.499527913986416, - "c6": 10.740773255118057, - "c7": -30.202938071577783 + "points": { + "c1": 27.356934621145278, + "c2": 24.39799119874766, + "c3": -22.00793946251729, + "c4": -19.304568241710726, + "c5": 5.717156738582496, + "c6": 14.865628938202292, + "c7": 23.651227777636713 }, - "vertexSeeds": { - "c1": 10.926604050995447, - "c2": 10.915009678261814, - "c3": 10.914523164532662, - "c4": 10.871067772424764, - "c5": 10.862918850475618, - "c6": 10.945351976379802, - "c7": 10.869227771291005 + "offsets": { + "c1": 18.31715210355987, + "c2": 15.700416088765504, + "c3": 13.083680073971484, + "c4": 10.466944059177118, + "c5": 7.850208044382752, + "c6": 5.233472029588386, + "c7": 2.616736014794366 }, "rgb": [77, 76, 132] }, @@ -447234,23 +447234,23 @@ "year": 1829, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": -14.687487029106517, - "c2": -6.9257313679781305, - "c3": 5.243870926846739, - "c4": -26.661410744466906, - "c5": 24.798831948914092, - "c6": -18.516221606867468, - "c7": 12.557083154927142 + "points": { + "c1": 6.273290317951371, + "c2": -16.564367026652405, + "c3": 7.142520943946401, + "c4": -38.69906685183693, + "c5": -29.51708163980886, + "c6": -30.149030504075437, + "c7": -2.2592025911552582 }, - "vertexSeeds": { - "c1": 15.025763020343376, - "c2": 15.48145289371199, - "c3": 17.133083555312226, - "c4": 15.765094852926605, - "c5": 16.78319655672062, - "c6": 16.144080941770213, - "c7": 14.881202092714405 + "offsets": { + "c1": 29.28802588996764, + "c2": 25.104022191400833, + "c3": 20.920018492834036, + "c4": 16.736014794267213, + "c5": 12.552011095700408, + "c6": 8.368007397133606, + "c7": 4.184003698566803 }, "rgb": [222, 0, 59] }, @@ -447261,23 +447261,23 @@ "year": 1828, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -18.413921675973075, - "c2": 22.48173375017982, - "c3": 16.902471866069995, - "c4": -10.099649362347211, - "c5": 10.627406968711206, - "c6": 23.285095316021433, - "c7": -17.37462821732969 + "points": { + "c1": 0.34869473487391645, + "c2": 6.716399302397917, + "c3": 0.7525910725881673, + "c4": -7.906282420970484, + "c5": 9.559893047346165, + "c6": 3.500439064346537, + "c7": -2.8234585581742415 }, - "vertexSeeds": { - "c1": 8.086168738229667, - "c2": 8.151816158782111, - "c3": 7.470843357123931, - "c4": 7.095206147996386, - "c5": 8.146988686719144, - "c6": 7.742440371932343, - "c7": 7.139316069721806 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134534, + "c3": 9.847434119278779, + "c4": 7.877947295423023, + "c5": 5.908460471567267, + "c6": 3.9389736477115114, + "c7": 1.9694868238557557 }, "rgb": [86, 146, 138] }, @@ -447288,23 +447288,23 @@ "year": 1828, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": -22.203274427239247, - "c2": 5.913998971376699, - "c3": -11.495915242434027, - "c4": 3.0981151150535773, - "c5": -10.663839136205707, - "c6": 2.9392665990986337, - "c7": -16.720390266711043 + "points": { + "c1": -20.818710002547483, + "c2": -5.40559948297091, + "c3": 2.1175593574290055, + "c4": 8.830309137525923, + "c5": -2.4157611091750724, + "c6": 6.0644028088373645, + "c7": 14.325592205554983 }, - "vertexSeeds": { - "c1": 6.108926569031191, - "c2": 6.10579793145198, - "c3": 6.31898481314151, - "c4": 6.474741732111053, - "c5": 6.205659771093485, - "c6": 6.067186610380372, - "c7": 6.023601292553198 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795646, + "c4": 6.232085067036513, + "c5": 4.674063800277402, + "c6": 3.1160425335182684, + "c7": 1.5580212667591342 }, "rgb": [58, 15, 49] }, @@ -447315,23 +447315,23 @@ "year": 1828, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -20.821865514529414, - "c2": 6.008575910276846, - "c3": 30.20279065103093, - "c4": 0.08839353049817689, - "c5": -26.1613509246891, - "c6": -4.5223314104744645, - "c7": 3.530712437334465 + "points": { + "c1": -5.5671539006650015, + "c2": -4.222112200271479, + "c3": -13.377693702896025, + "c4": 22.36546830984856, + "c5": 24.499572130276952, + "c6": -29.824210481042446, + "c7": -29.027522250264127 }, - "vertexSeeds": { - "c1": 10.298350408805188, - "c2": 10.296757529071627, - "c3": 10.311478699765733, - "c4": 10.317234661147522, - "c5": 10.309016403148657, - "c6": 10.289477397866428, - "c7": 10.295407143268996 + "offsets": { + "c1": 17.216828478964402, + "c2": 14.75728155339764, + "c3": 12.297734627831856, + "c4": 9.838187702265094, + "c5": 7.378640776699309, + "c6": 4.919093851132547, + "c7": 2.4595469255667624 }, "rgb": [58, 15, 49] }, @@ -447342,23 +447342,23 @@ "year": 1829, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -26.379259807646402, - "c2": 11.83145941024933, - "c3": 12.299417610305262, - "c4": 23.30670777059757, - "c5": 32.471607564336466, - "c6": 31.94500259502017, - "c7": 6.846142364930124 + "points": { + "c1": -8.548447237221065, + "c2": 22.10655192724593, + "c3": 31.85771168849874, + "c4": 15.230621997854485, + "c5": 1.868186540240103, + "c6": -10.517335933760066, + "c7": -15.649267444555893 }, - "vertexSeeds": { - "c1": 10.726421046343255, - "c2": 10.777407609153192, - "c3": 10.87074248217242, - "c4": 10.578099638062563, - "c5": 10.759654651205235, - "c6": 10.619407182187997, - "c7": 10.779637496986195 + "offsets": { + "c1": 18.18770226537217, + "c2": 15.589459084604766, + "c3": 12.991215903837249, + "c4": 10.392972723069843, + "c5": 7.794729542302328, + "c6": 5.196486361534921, + "c7": 2.5982431807674065 }, "rgb": [77, 76, 132] }, @@ -447369,23 +447369,23 @@ "year": 1828, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 24.83619395665096, - "c2": 5.33152091317347, - "c3": -21.490264834372866, - "c4": -6.5828854203433735, - "c5": 29.887397975581074, - "c6": 20.105255772140374, - "c7": 13.37790685430057 + "points": { + "c1": -3.163560919001309, + "c2": -8.562413200278542, + "c3": -14.28267889942829, + "c4": 18.075465795348634, + "c5": -12.953735178814267, + "c6": -12.130253911753524, + "c7": 17.647391229075694 }, - "vertexSeeds": { - "c1": 9.017040877712201, - "c2": 9.047252315844354, - "c3": 8.952393913067421, - "c4": 8.830630711836436, - "c5": 9.034041556038362, - "c6": 8.711912315163634, - "c7": 8.830033719524373 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783616, + "c3": 10.795191863153034, + "c4": 8.636153490522412, + "c5": 6.477115117891828, + "c6": 4.318076745261206, + "c7": 2.159038372630622 }, "rgb": [58, 15, 49] }, @@ -447396,23 +447396,23 @@ "year": 1828, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -21.47921035294089, - "c2": -4.2194060910062205, - "c3": 22.55597914575021, - "c4": 8.450236624277647, - "c5": 7.012267286105558, - "c6": -1.0751757422091615, - "c7": 2.8148951075591455 + "points": { + "c1": 19.50148014966918, + "c2": -26.666001242364874, + "c3": -1.6775032693597574, + "c4": 27.73745932728028, + "c5": 20.170306749655094, + "c6": 8.28469602342761, + "c7": -12.15428339601188 }, - "vertexSeeds": { - "c1": 5.578914580773279, - "c2": 5.938991101638726, - "c3": 5.692635416324844, - "c4": 5.693686118720882, - "c5": 5.57998362240881, - "c6": 5.524414516976641, - "c7": 5.413061047683744 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -447423,23 +447423,23 @@ "year": 1828, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -17.549913167681797, - "c2": 26.156582734475187, - "c3": 17.13141576012403, - "c4": -10.780350539299977, - "c5": -7.052723277757632, - "c6": -6.97699253843647, - "c7": 6.474770012337444 + "points": { + "c1": 0.48861177585255433, + "c2": -9.73212602327201, + "c3": 30.610114640215237, + "c4": 19.346847213655693, + "c5": -12.409346551063738, + "c6": -29.889535494015316, + "c7": 8.483702649680225 }, - "vertexSeeds": { - "c1": 9.173418164612919, - "c2": 9.04299670749925, - "c3": 9.175680256302499, - "c4": 8.965888633407383, - "c5": 9.270178328197638, - "c6": 9.135187465682778, - "c7": 8.991965289632773 + "offsets": { + "c1": 15.501618122977344, + "c2": 13.287101248266314, + "c3": 11.07258437355524, + "c4": 8.85806749884421, + "c5": 6.643550624133135, + "c6": 4.429033749422105, + "c7": 2.2145168747110744 }, "rgb": [238, 201, 159] }, @@ -447450,23 +447450,23 @@ "year": 1828, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -14.479285019289962, - "c2": 9.180963685716137, - "c3": -12.79780032656518, - "c4": 22.11118667809184, - "c5": 26.977096551901937, - "c6": -9.544761611252735, - "c7": -20.264418320948547 + "points": { + "c1": 6.840631157550455, + "c2": -13.116688731722295, + "c3": 3.669308757862929, + "c4": -10.468032406026445, + "c5": -8.410472105711392, + "c6": 18.568407517781317, + "c7": -24.03120749064556 }, - "vertexSeeds": { - "c1": 3.8347638015347676, - "c2": 3.179471590047285, - "c3": 3.775947446025572, - "c4": 3.613380758983536, - "c5": 4.047036782548754, - "c6": 3.235607012977927, - "c7": 3.3296907130519404 + "offsets": { + "c1": 7.055016181229773, + "c2": 6.047156726768378, + "c3": 5.03929727230698, + "c4": 4.0314378178455845, + "c5": 3.0235783633841873, + "c6": 2.0157189089227923, + "c7": 1.007859454461398 }, "rgb": [86, 146, 138] }, @@ -447477,23 +447477,23 @@ "year": 1828, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": -22.608490469529706, - "c2": -12.730892461443473, - "c3": 23.927960539908042, - "c4": 0.26464816363203525, - "c5": -18.86355020582695, - "c6": -10.89743870471292, - "c7": 9.641507852489084 + "points": { + "c1": -23.70360761715828, + "c2": 4.5995177978574056, + "c3": -5.746148151097437, + "c4": 20.566161852775508, + "c5": 1.1953055463225333, + "c6": -22.28556588340134, + "c7": 6.641566998473493 }, - "vertexSeeds": { - "c1": 10.976935540383659, - "c2": 12.4854595873565, - "c3": 12.946538737769261, - "c4": 12.198109835238919, - "c5": 13.140519181593108, - "c6": 11.282222519718912, - "c7": 12.64057086532499 + "offsets": { + "c1": 22.330097087378643, + "c2": 19.140083217753133, + "c3": 15.950069348127606, + "c4": 12.760055478502077, + "c5": 9.570041608876567, + "c6": 6.380027739251058, + "c7": 3.190013869625529 }, "rgb": [222, 0, 59] }, @@ -447504,23 +447504,23 @@ "year": 1828, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -2.6864222630239745, - "c2": -23.850610426975464, - "c3": 8.017178918194368, - "c4": 4.865733774285715, - "c5": -25.23175150931859, - "c6": -19.960851270521655, - "c7": -30.081194470870553 + "points": { + "c1": 17.239509551853992, + "c2": -1.9337933771160642, + "c3": 17.978880676407975, + "c4": -5.683748382417114, + "c5": 27.932217799292744, + "c6": 5.112939329053113, + "c7": 30.417597440284126 }, - "vertexSeeds": { - "c1": 5.334812423222984, - "c2": 5.449321196576632, - "c3": 5.464391139898272, - "c4": 5.266185377449428, - "c5": 5.411645672689222, - "c6": 5.414143162792022, - "c7": 5.305205789235724 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -447531,23 +447531,23 @@ "year": 1829, "resistanceReported": false, "duration": 35510400, - "curveSeeds": { - "c1": 12.442643649453096, - "c2": 42.99770138464538, - "c3": -9.776925157217995, - "c4": 38.241588079223874, - "c5": -17.220615971286424, - "c6": 18.977206421573626, - "c7": -14.730444535694957 + "points": { + "c1": 46.8842366068712, + "c2": 35.72121563755282, + "c3": 40.70006470804975, + "c4": -39.90499297079873, + "c5": -33.572483528485876, + "c6": 22.313609983790457, + "c7": 47.891675080659496 }, - "vertexSeeds": { - "c1": 5.643645195541532, - "c2": 6.051085939568059, - "c3": 5.480997025174068, - "c4": 6.187021507095497, - "c5": 6.012002036819908, - "c6": 6.869859296096935, - "c7": 4.945865389595049 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.429958391123435, + "c3": 8.691631992602867, + "c4": 6.953305594082295, + "c5": 5.214979195561719, + "c6": 3.4766527970411434, + "c7": 1.738326398520573 }, "rgb": [86, 146, 138] }, @@ -447558,23 +447558,23 @@ "year": 1829, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -9.267565598279383, - "c2": 10.843952923947604, - "c3": 3.75692846334686, - "c4": -3.122580692423295, - "c5": 14.128933838138941, - "c6": -11.404850038972114, - "c7": 28.115316331763132 + "points": { + "c1": -32.18568159271029, + "c2": -8.264446455239163, + "c3": 31.15143304998717, + "c4": 28.714792383537535, + "c5": -25.440099339617554, + "c6": 21.877152506555746, + "c7": -6.974181901795273 }, - "vertexSeeds": { - "c1": 9.50376324081245, - "c2": 9.952011858791616, - "c3": 10.040731596916418, - "c4": 9.44327941189522, - "c5": 9.479889342892214, - "c6": 9.987852537755634, - "c7": 9.928251460131332 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438284, + "c3": 12.320850670365243, + "c4": 9.856680536292183, + "c5": 7.392510402219142, + "c6": 4.928340268146101, + "c7": 2.4641701340730413 }, "rgb": [222, 0, 59] }, @@ -447585,23 +447585,23 @@ "year": 1829, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 23.99488403065091, - "c2": 5.16901376421535, - "c3": -31.36787343277129, - "c4": 6.678449274592964, - "c5": 16.4130457678177, - "c6": -2.6082430279205084, - "c7": 21.116063301515993 + "points": { + "c1": -14.983868507007585, + "c2": -19.673585440795975, + "c3": -3.8618451115453567, + "c4": -30.31902409587828, + "c5": 29.93909089376959, + "c6": 1.1133855555486818, + "c7": -17.28414279193211 }, - "vertexSeeds": { - "c1": 5.576195351123136, - "c2": 5.59088673583773, - "c3": 5.369221612311636, - "c4": 5.865865435791137, - "c5": 5.9273144577453305, - "c6": 5.765942509755371, - "c7": 5.881220451394262 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -447612,23 +447612,23 @@ "year": 1829, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 35.07081172772241, - "c2": -8.838986314923936, - "c3": 31.666997480488142, - "c4": -1.9400427701912193, - "c5": 9.863318123963872, - "c6": 27.586833954930206, - "c7": -20.345139192263517 + "points": { + "c1": -24.703318362506455, + "c2": -31.885130450003004, + "c3": -9.503697151359493, + "c4": 34.49572811374531, + "c5": -9.775950798120242, + "c6": -2.9054118363078487, + "c7": 29.040050067418342 }, - "vertexSeeds": { - "c1": 8.534038882717565, - "c2": 8.894190654055398, - "c3": 9.36037083407507, - "c4": 8.780540033142673, - "c5": 9.492330780158436, - "c6": 10.254991303341333, - "c7": 9.465793167865645 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518728, + "c3": 12.367082755432268, + "c4": 9.89366620434582, + "c5": 7.420249653259359, + "c6": 4.94683310217291, + "c7": 2.47341655108646 }, "rgb": [238, 201, 159] }, @@ -447639,23 +447639,23 @@ "year": 1828, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": -8.346465275672344, - "c2": -25.796222906320693, - "c3": 4.655523765973157, - "c4": 22.092540514140985, - "c5": -27.70577775392508, - "c6": -3.3870086407223177, - "c7": -28.1325850851218 + "points": { + "c1": -26.58336315578922, + "c2": -22.06256452181026, + "c3": 7.117250619368214, + "c4": 3.2616759107176563, + "c5": -19.017856194344624, + "c6": 0.5705200801928854, + "c7": 10.00455993619235 }, - "vertexSeeds": { - "c1": 11.966186706814437, - "c2": 11.919779718608877, - "c3": 11.811134476901632, - "c4": 12.004894916714477, - "c5": 11.759107936772716, - "c6": 11.861760911046511, - "c7": 11.98333252421434 + "offsets": { + "c1": 20.032362459546928, + "c2": 17.170596393897306, + "c3": 14.308830328247826, + "c4": 11.447064262598204, + "c5": 8.585298196948724, + "c6": 5.723532131299102, + "c7": 2.861766065649622 }, "rgb": [77, 76, 132] }, @@ -447666,23 +447666,23 @@ "year": 1828, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 17.57733823267198, - "c2": -19.108122282351687, - "c3": 17.469759831043756, - "c4": -20.21203324279162, - "c5": 3.7128937849429953, - "c6": -10.251361038707572, - "c7": -2.1680153352188363 + "points": { + "c1": 7.584790829982527, + "c2": -6.688122293193977, + "c3": -15.966267822934169, + "c4": 18.650161834789362, + "c5": -4.134557611727214, + "c6": -1.366043141597224, + "c7": -3.397344873912406 }, - "vertexSeeds": { - "c1": 10.644890772346693, - "c2": 10.487054063851767, - "c3": 10.643881989470863, - "c4": 10.527131234244086, - "c5": 10.713965508354601, - "c6": 10.821506409434553, - "c7": 10.803168824336002 + "offsets": { + "c1": 18.09061488673139, + "c2": 15.50624133148402, + "c3": 12.921867776236752, + "c4": 10.337494220989381, + "c5": 7.75312066574201, + "c6": 5.168747110494742, + "c7": 2.584373555247371 }, "rgb": [238, 201, 159] }, @@ -447693,23 +447693,23 @@ "year": 1828, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 5.97605828142094, - "c2": 1.7055383683572067, - "c3": 8.0229261291788, - "c4": 2.2253449129498506, - "c5": -14.232273307083974, - "c6": 8.421918552469847, - "c7": 25.45423921058694 + "points": { + "c1": 19.61238249432548, + "c2": -5.637811742504553, + "c3": -8.547024323172405, + "c4": 20.5544370855649, + "c5": -11.722679991070528, + "c6": 23.31825829729393, + "c7": 26.398103713680413 }, - "vertexSeeds": { - "c1": 10.25796879611848, - "c2": 10.454427643919365, - "c3": 10.312507937014155, - "c4": 10.490227706549286, - "c5": 10.44084507383714, - "c6": 10.248957100009303, - "c7": 10.243703133332227 + "offsets": { + "c1": 17.702265372168284, + "c2": 15.173370319001434, + "c3": 12.644475265834473, + "c4": 10.115580212667622, + "c5": 7.5866851595006635, + "c6": 5.057790106333811, + "c7": 2.5288950531668526 }, "rgb": [86, 146, 138] }, @@ -447720,23 +447720,23 @@ "year": 1829, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 1.0814806972691429, - "c2": -22.99716947436006, - "c3": 2.8169834014625508, - "c4": -29.16236170362785, - "c5": 2.163847295041087, - "c6": 3.726246480539224, - "c7": -8.099479938980707 + "points": { + "c1": 26.41061829382825, + "c2": -10.88468238129358, + "c3": 28.30283113434905, + "c4": 5.607124275701111, + "c5": 25.591530594223578, + "c6": 14.546991499741047, + "c7": 16.513919191906936 }, - "vertexSeeds": { - "c1": 9.560961914343935, - "c2": 9.56720216141982, - "c3": 9.593319412160866, - "c4": 9.56364089480672, - "c5": 9.581230897156358, - "c6": 9.564094491901441, - "c7": 9.597125589502209 + "offsets": { + "c1": 16.019417475728158, + "c2": 13.730929264909914, + "c3": 11.442441054091672, + "c4": 9.153952843273428, + "c5": 6.86546463245473, + "c6": 4.576976421636487, + "c7": 2.2884882108182434 }, "rgb": [77, 76, 132] }, @@ -447747,23 +447747,23 @@ "year": 1829, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -17.115764550246734, - "c2": -29.857046211075392, - "c3": 20.257096678840426, - "c4": 29.049438250754676, - "c5": 8.07823425383129, - "c6": 34.74946461190271, - "c7": -3.311887711901335 + "points": { + "c1": -26.91537735563398, + "c2": -38.23483649748655, + "c3": -20.566504412097377, + "c4": 12.734262960752162, + "c5": -25.266387830338317, + "c6": 17.531121036563377, + "c7": 29.59875958892019 }, - "vertexSeeds": { - "c1": 9.122243509590648, - "c2": 9.360289752558394, - "c3": 9.168963066712301, - "c4": 9.197361531688239, - "c5": 9.688706811695015, - "c6": 9.020031546848594, - "c7": 9.394226443453025 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312067, + "c3": 11.673601479426727, + "c4": 9.338881183541385, + "c5": 7.004160887656045, + "c6": 4.669440591770683, + "c7": 2.3347202958853415 }, "rgb": [77, 76, 132] }, @@ -447774,23 +447774,23 @@ "year": 1829, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 11.710283833180824, - "c2": 10.48218349551594, - "c3": 11.392298479213814, - "c4": 20.763592662464788, - "c5": -25.57491446183242, - "c6": 7.147642978395858, - "c7": 7.777500524706554 + "points": { + "c1": -5.09420519095924, + "c2": 24.147316691034966, + "c3": -26.43079645964345, + "c4": 3.625519954269265, + "c5": -8.896360510371636, + "c6": 23.85240571727607, + "c7": 15.657595934452893 }, - "vertexSeeds": { - "c1": 4.632570389557258, - "c2": 4.632057073628813, - "c3": 4.658998934243921, - "c4": 4.646496882072505, - "c5": 4.63118951511431, - "c6": 4.635910023322227, - "c7": 4.62198524759874 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693513, + "c3": 5.570966250577891, + "c4": 4.456773000462342, + "c5": 3.34257975034672, + "c6": 2.228386500231171, + "c7": 1.1141932501155487 }, "rgb": [238, 201, 159] }, @@ -447801,23 +447801,23 @@ "year": 1829, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -27.024769156296962, - "c2": -21.077800494380767, - "c3": 30.859796666819847, - "c4": 14.884070893651426, - "c5": -8.522818812661054, - "c6": 24.567724998259244, - "c7": -7.255511301219375 + "points": { + "c1": 1.1514642546881007, + "c2": 1.414683240930394, + "c3": -2.9727936196038485, + "c4": 23.296847554179976, + "c5": 5.142776969124192, + "c6": 19.51880304103763, + "c7": -0.8183506456793168 }, - "vertexSeeds": { - "c1": 11.63860103626943, - "c2": 11.63860103626943, - "c3": 11.63860103626943, - "c4": 11.63860103626943, - "c5": 11.63860103626943, - "c6": 11.63860103626943, - "c7": 11.63860103626943 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -447828,23 +447828,23 @@ "year": 1828, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -13.115430773399476, - "c2": -11.894640695973855, - "c3": -4.3404742666185285, - "c4": -7.031129792909574, - "c5": 18.99272238562025, - "c6": -7.196210878117096, - "c7": -19.674310838299757 + "points": { + "c1": -0.9382864244944962, + "c2": 11.387935283547417, + "c3": 0.5249777562103262, + "c4": -5.891261192979734, + "c5": 9.589815480690614, + "c6": -18.26177465054809, + "c7": -18.78908905947489 }, - "vertexSeeds": { - "c1": 5.434223643482731, - "c2": 5.231104825009484, - "c3": 5.324598905559675, - "c4": 5.25055472782564, - "c5": 5.3733329108592205, - "c6": 5.326147188961977, - "c7": 5.389014169821032 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -447855,23 +447855,23 @@ "year": 1829, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -12.586069289601525, - "c2": -30.3107179486858, - "c3": -6.70636943700212, - "c4": 25.460797823382983, - "c5": 7.483347904072822, - "c6": -15.680274248034845, - "c7": 21.752220034064074 + "points": { + "c1": -29.119270263168175, + "c2": 16.85039063148332, + "c3": 13.6459911647989, + "c4": -19.92361131811692, + "c5": -12.749532439194798, + "c6": -14.635907426991135, + "c7": 17.260366198143558 }, - "vertexSeeds": { - "c1": 8.256575968752328, - "c2": 7.879105349532878, - "c3": 7.911299704272713, - "c4": 8.143905590720097, - "c5": 8.009068697499103, - "c6": 7.922561095731576, - "c7": 8.236033983320372 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.92787794729542, + "c3": 9.939898289412843, + "c4": 7.951918631530269, + "c5": 5.963938973647695, + "c6": 3.97595931576515, + "c7": 1.987979657882575 }, "rgb": [86, 146, 138] }, @@ -447882,23 +447882,23 @@ "year": 1829, "resistanceReported": false, "duration": 24710400, - "curveSeeds": { - "c1": -35.6659174167487, - "c2": -13.066529311595481, - "c3": 4.237347149416102, - "c4": -18.899144967446148, - "c5": -27.651824299738593, - "c6": -29.274475334354776, - "c7": -36.14525049558896 + "points": { + "c1": -8.35656646900274, + "c2": 22.20636481572638, + "c3": 28.108021878654938, + "c4": -11.535115621014974, + "c5": 37.333100168137335, + "c6": 23.023963212074065, + "c7": 34.72654239840641 }, - "vertexSeeds": { - "c1": 2.895077720207254, - "c2": 2.895077720207254, - "c3": 2.895077720207254, - "c4": 2.895077720207254, - "c5": 2.895077720207254, - "c6": 2.895077720207254, - "c7": 2.895077720207254 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -447909,23 +447909,23 @@ "year": 1829, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": -27.675896953756585, - "c2": -15.772291471606763, - "c3": 31.617997783967468, - "c4": -3.876930861694163, - "c5": -36.151161505051746, - "c6": -36.515977511809474, - "c7": 35.00025124385641 + "points": { + "c1": -3.0881835361722167, + "c2": -18.7426114603467, + "c3": 6.918146714642987, + "c4": -6.701274481353472, + "c5": 34.052745175830566, + "c6": -8.830003473100415, + "c7": -30.492854193384602 }, - "vertexSeeds": { - "c1": 7.618700661268308, - "c2": 7.482322340389015, - "c3": 7.900009364349141, - "c4": 7.96819765396614, - "c5": 7.631973634133217, - "c6": 7.7193708143554645, - "c7": 7.478299902056917 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094314, + "c3": 9.824318076745262, + "c4": 7.859454461396209, + "c5": 5.894590846047157, + "c6": 3.9297272306981044, + "c7": 1.9648636153490522 }, "rgb": [58, 15, 49] }, @@ -447936,23 +447936,23 @@ "year": 1829, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 16.286481762512523, - "c2": -1.762388017143273, - "c3": 0.8419409150111221, - "c4": -39.8673369724938, - "c5": -35.24718185234685, - "c6": 13.093454865978117, - "c7": -6.816150705037579 + "points": { + "c1": -40.18066747079276, + "c2": 1.2062468595914666, + "c3": 38.74873597341856, + "c4": -32.95557814947838, + "c5": -16.012896730703215, + "c6": 15.2231678749475, + "c7": 40.212156807253805 }, - "vertexSeeds": { - "c1": 6.865345993293629, - "c2": 6.969653055196144, - "c3": 6.77836251543167, - "c4": 6.892653396245118, - "c5": 6.824821472570546, - "c6": 6.828049138459523, - "c7": 6.981736783346928 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.041608876560353, + "c3": 8.368007397133603, + "c4": 6.694405917706903, + "c5": 5.020804438280152, + "c6": 3.3472029588534515, + "c7": 1.673601479426751 }, "rgb": [222, 0, 59] }, @@ -447963,23 +447963,23 @@ "year": 1828, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 1.6951378535520263, - "c2": 9.72325311689195, - "c3": 24.75606706380358, - "c4": 1.8330065631877375, - "c5": 8.016607256904795, - "c6": -20.31505795567646, - "c7": -0.5306020859826432 + "points": { + "c1": 8.312766343264979, + "c2": 19.802453919898408, + "c3": 10.180948096079614, + "c4": 6.551306691070604, + "c5": -18.385157679301685, + "c6": -3.5373074072400676, + "c7": 2.1454013147782796 }, - "vertexSeeds": { - "c1": 2.3847606475613246, - "c2": 2.420138758885775, - "c3": 2.369634098426762, - "c4": 2.4138669824221597, - "c5": 2.361414409691447, - "c6": 2.4085783984889195, - "c7": 2.3528354286721074 + "offsets": { + "c1": 4.110032362459546, + "c2": 3.5228848821081873, + "c3": 2.935737401756817, + "c4": 2.3485899214054586, + "c5": 1.7614424410540879, + "c6": 1.1742949607027293, + "c7": 0.5871474803513587 }, "rgb": [222, 0, 59] }, @@ -447990,23 +447990,23 @@ "year": 1829, "resistanceReported": false, "duration": 41817600, - "curveSeeds": { - "c1": 36.1665045707149, - "c2": 55.003690084005704, - "c3": 46.46663446598284, - "c4": -53.85675207218489, - "c5": -17.042276895961017, - "c6": 54.39944805940522, - "c7": 29.59946826587869 + "points": { + "c1": -9.384067345456536, + "c2": 51.09564101376498, + "c3": 51.47322179831988, + "c4": 20.612332977671862, + "c5": -38.91556869755911, + "c6": -20.33440138611639, + "c7": -36.09842233099732 }, - "vertexSeeds": { - "c1": 5.244619336367392, - "c2": 5.231427514961426, - "c3": 5.227083243796264, - "c4": 5.237657701885483, - "c5": 5.236785262202644, - "c6": 5.245000504367806, - "c7": 5.2425762269280325 + "offsets": { + "c1": 8.770226537216828, + "c2": 7.517337031899925, + "c3": 6.26444752658352, + "c4": 5.011558021266617, + "c5": 3.7586685159502116, + "c6": 2.5057790106333084, + "c7": 1.2528895053169034 }, "rgb": [222, 0, 59] }, @@ -448017,23 +448017,23 @@ "year": 1828, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": -5.280926648387695, - "c2": -28.430583304802706, - "c3": 4.18550840901451, - "c4": 22.26827532033959, - "c5": 17.50748094343303, - "c6": -13.578895212685836, - "c7": -21.289513585486116 + "points": { + "c1": -21.788312528879963, + "c2": 10.729235871510589, + "c3": 28.175675000937943, + "c4": 19.918427455947338, + "c5": 19.69084510960849, + "c6": 32.781470112250005, + "c7": 9.413776886477052 }, - "vertexSeeds": { - "c1": 5.17150678670078, - "c2": 5.216573479689029, - "c3": 5.210646295558215, - "c4": 5.223227305847347, - "c5": 5.211543641037443, - "c6": 5.161639619455343, - "c7": 5.156388770715875 + "offsets": { + "c1": 8.737864077669903, + "c2": 7.489597780859952, + "c3": 6.241331484049877, + "c4": 4.993065187239926, + "c5": 3.744798890429976, + "c6": 2.4965325936200253, + "c7": 1.2482662968099507 }, "rgb": [77, 76, 132] }, @@ -448044,23 +448044,23 @@ "year": 1828, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 23.315433569270482, - "c2": -9.595510488240457, - "c3": 12.548021236610957, - "c4": 3.3058600083004244, - "c5": 22.075044448170104, - "c6": 20.80316461634994, - "c7": -3.451529700774966 + "points": { + "c1": -20.32289084720886, + "c2": -5.447521696397384, + "c3": 27.729606502682707, + "c4": -3.313899128383408, + "c5": 8.594290938722729, + "c6": 3.456848381015952, + "c7": 15.080806923635052 }, - "vertexSeeds": { - "c1": 6.457869053228661, - "c2": 6.110009941812148, - "c3": 5.5225422622714415, - "c4": 7.68094790721932, - "c5": 6.4502316367248875, - "c6": 7.324986366448666, - "c7": 6.264860474339042 + "offsets": { + "c1": 14.498381877022654, + "c2": 12.427184466019417, + "c3": 10.355987055016179, + "c4": 8.28478964401294, + "c5": 6.213592233009709, + "c6": 4.14239482200647, + "c7": 2.071197411003233 }, "rgb": [222, 0, 59] }, @@ -448071,23 +448071,23 @@ "year": 1829, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -20.126490884283236, - "c2": -20.486401810259874, - "c3": -28.76928612613561, - "c4": 10.493980807303181, - "c5": 7.5642798355913285, - "c6": -28.63237890588107, - "c7": 30.42864279571073 + "points": { + "c1": -36.37796554553371, + "c2": 22.096459015112792, + "c3": 29.038699146627067, + "c4": -30.237791724987293, + "c5": 25.934678577319517, + "c6": -14.181049913189046, + "c7": -10.013326098880356 }, - "vertexSeeds": { - "c1": 8.03916992418902, - "c2": 8.50021345022096, - "c3": 8.162678412314845, - "c4": 8.156112347822738, - "c5": 8.470899062653215, - "c6": 8.073061778645418, - "c7": 8.31672399504721 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858531, + "c3": 10.263522884882113, + "c4": 8.210818307905694, + "c5": 6.158113730929256, + "c6": 4.105409153952838, + "c7": 2.052704576976419 }, "rgb": [222, 0, 59] }, @@ -448098,23 +448098,23 @@ "year": 1828, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 24.644625035829524, - "c2": -9.922396592431706, - "c3": 10.603788924147576, - "c4": 22.59114736534193, - "c5": 13.213960614989023, - "c6": -22.728922353869912, - "c7": -2.5538788261994014 + "points": { + "c1": 26.028925328989832, + "c2": 26.693428617242287, + "c3": -26.407349119774604, + "c4": 24.809043867153772, + "c5": -22.550805015311084, + "c6": 27.925017601528122, + "c7": 28.04915549984317 }, - "vertexSeeds": { - "c1": 7.675583539806008, - "c2": 7.425441333969462, - "c3": 7.6477145538143985, - "c4": 7.714349629320837, - "c5": 7.452367607001162, - "c6": 7.435440614555769, - "c7": 7.63543759598109 + "offsets": { + "c1": 13.171521035598705, + "c2": 11.289875173370307, + "c3": 9.408229311141936, + "c4": 7.526583448913538, + "c5": 5.644937586685167, + "c6": 3.763291724456769, + "c7": 1.8816458622283716 }, "rgb": [86, 146, 138] }, @@ -448125,23 +448125,23 @@ "year": 1828, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -22.769130996832736, - "c2": -12.292031074361875, - "c3": 4.663636720414271, - "c4": -21.563894300221257, - "c5": -5.938567181745601, - "c6": -12.255891269951446, - "c7": -15.165446064653377 + "points": { + "c1": -12.475045937178514, + "c2": -28.28449208250074, + "c3": -9.215888937632869, + "c4": 28.586702023551112, + "c5": -11.41977024266064, + "c6": -16.071972980004766, + "c7": 7.038490185590334 }, - "vertexSeeds": { - "c1": 11.15808411943502, - "c2": 10.870070473915504, - "c3": 11.16547555731266, - "c4": 10.569115729874627, - "c5": 11.022064312697367, - "c6": 10.745909288435568, - "c7": 10.705874256379758 + "offsets": { + "c1": 18.96440129449838, + "c2": 16.255201109570038, + "c3": 13.5460009246417, + "c4": 10.83680073971336, + "c5": 8.127600554785019, + "c6": 5.41840036985668, + "c7": 2.70920018492834 }, "rgb": [77, 76, 132] }, @@ -448152,23 +448152,23 @@ "year": 1829, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 5.891384780954034, - "c2": -21.666091927310987, - "c3": 10.599435664871258, - "c4": -25.903590061545092, - "c5": 5.508840332884041, - "c6": -7.209962652277124, - "c7": 26.123092404242954 + "points": { + "c1": 10.357694394106993, + "c2": 20.477855350500796, + "c3": -6.517420553921681, + "c4": 7.3396926824947, + "c5": 24.023750375008937, + "c6": 13.299800310909944, + "c7": -29.189712750491573 }, - "vertexSeeds": { - "c1": 13.675494901532602, - "c2": 13.534490815938867, - "c3": 13.426435962640168, - "c4": 12.662469459353701, - "c5": 13.540437300917196, - "c6": 13.713158189580604, - "c7": 13.357176604526803 + "offsets": { + "c1": 23.171521035598705, + "c2": 19.861303744798875, + "c3": 16.55108645399908, + "c4": 13.240869163199251, + "c5": 9.930651872399453, + "c6": 6.620434581599626, + "c7": 3.3102172907998284 }, "rgb": [238, 201, 159] }, @@ -448179,23 +448179,23 @@ "year": 1829, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -26.088269357478744, - "c2": -5.268540990741766, - "c3": 19.533135990903947, - "c4": 20.073195657537713, - "c5": -7.89668940766234, - "c6": -29.2455957573916, - "c7": 17.355148560182347 + "points": { + "c1": 29.449682976444233, + "c2": 17.84614591363651, + "c3": -4.100099118207989, + "c4": 13.052891788141611, + "c5": -21.21143704649794, + "c6": -6.555025593266453, + "c7": 11.200941159377042 }, - "vertexSeeds": { - "c1": 10.515300795965459, - "c2": 10.216712498012141, - "c3": 10.346179236101689, - "c4": 10.485548832481976, - "c5": 10.501074712239966, - "c6": 10.567962332937006, - "c7": 10.535099926952514 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122085, + "c3": 12.713823393435032, + "c4": 10.171058714748057, + "c5": 7.628294036061003, + "c6": 5.085529357374028, + "c7": 2.5427646786869755 }, "rgb": [77, 76, 132] }, @@ -448206,23 +448206,23 @@ "year": 1829, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 10.0336159856802, - "c2": 23.654234256664132, - "c3": -26.385915619094092, - "c4": 1.916533257582003, - "c5": 28.90272120172152, - "c6": 20.827197743960028, - "c7": -30.40325780719859 + "points": { + "c1": -8.593346745082503, + "c2": -32.87038476559586, + "c3": 31.481984810854087, + "c4": -10.47085409830768, + "c5": -9.22498278164317, + "c6": 4.703908210658369, + "c7": 1.3622045208419635 }, - "vertexSeeds": { - "c1": 5.84088908901862, - "c2": 5.9223050523269425, - "c3": 5.445060979653191, - "c4": 5.807112574733602, - "c5": 5.4306951768949165, - "c6": 5.436607989529616, - "c7": 5.9143352517040615 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -448233,23 +448233,23 @@ "year": 1829, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -11.856438281211318, - "c2": -11.705808862270764, - "c3": 12.95998183356587, - "c4": 24.42118269981561, - "c5": 24.234778270312148, - "c6": -14.754118831316255, - "c7": 27.144891853609543 + "points": { + "c1": -33.98788686389291, + "c2": 16.547322026440376, + "c3": 12.007341740321714, + "c4": 4.847435861576095, + "c5": -5.434871913782196, + "c6": -12.444816263238714, + "c7": -14.913812736053192 }, - "vertexSeeds": { - "c1": 4.056753071128457, - "c2": 4.220624340662455, - "c3": 4.062743963463882, - "c4": 4.195029622327588, - "c5": 4.073938082679274, - "c6": 4.235711034941479, - "c7": 4.050059902668582 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848819, + "c3": 5.085529357374013, + "c4": 4.068423485899207, + "c5": 3.051317614424417, + "c6": 2.0342117429496116, + "c7": 1.0171058714748058 }, "rgb": [77, 76, 132] }, @@ -448260,23 +448260,23 @@ "year": 1829, "resistanceReported": false, "duration": 23068800, - "curveSeeds": { - "c1": 11.733360750318937, - "c2": 31.288198829194087, - "c3": 34.13678024636576, - "c4": 22.442765769602026, - "c5": -28.740760901896344, - "c6": 25.665494820178544, - "c7": -4.662890513600562 + "points": { + "c1": -32.49345678450048, + "c2": -36.620271802162094, + "c3": -33.90513446771417, + "c4": 35.31325388207213, + "c5": -8.668225276367945, + "c6": -6.146280882338672, + "c7": 14.854406530309127 }, - "vertexSeeds": { - "c1": 9.837109128851049, - "c2": 9.896788218539433, - "c3": 9.902367580364137, - "c4": 9.86742324247228, - "c5": 9.92111137440472, - "c6": 10.069772744243172, - "c7": 10.13402649435104 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.59084604715677, + "c3": 12.15903837263059, + "c4": 9.727230698104513, + "c5": 7.295423023578334, + "c6": 4.863615349052257, + "c7": 2.4318076745261283 }, "rgb": [222, 0, 59] }, @@ -448287,23 +448287,23 @@ "year": 1829, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 17.94497152814707, - "c2": 6.747691061385467, - "c3": -8.196452002170393, - "c4": 9.306031920138764, - "c5": 22.966869504116573, - "c6": 18.026464555111957, - "c7": -2.0839646913188226 + "points": { + "c1": -14.798605175765422, + "c2": 18.721986479809118, + "c3": 6.554216370072027, + "c4": 14.555681510349885, + "c5": -22.011293636859417, + "c6": -0.6136161191747895, + "c7": -8.861469871120082 }, - "vertexSeeds": { - "c1": 3.6250402992270216, - "c2": 3.901259661617501, - "c3": 3.781933489176517, - "c4": 3.99749895195169, - "c5": 3.7297158750881887, - "c6": 4.021079453979344, - "c7": 3.836300603075909 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374016, + "c4": 4.068423485899212, + "c5": 3.051317614424407, + "c6": 2.0342117429496027, + "c7": 1.0171058714747985 }, "rgb": [58, 15, 49] }, @@ -448314,23 +448314,23 @@ "year": 1829, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": -13.182079576394894, - "c2": -5.519702732502388, - "c3": 9.2836919573801, - "c4": 27.65858634538364, - "c5": 16.374759607939808, - "c6": 5.1137116930372315, - "c7": 19.862894893362572 + "points": { + "c1": 29.734417323415414, + "c2": -23.947975938333528, + "c3": 3.7532307069479103, + "c4": 16.732776226446404, + "c5": 10.277533080677742, + "c6": 3.7018519787122415, + "c7": 12.919269774007958 }, - "vertexSeeds": { - "c1": 4.43122244624988, - "c2": 4.142214605026974, - "c3": 4.131241508290272, - "c4": 4.055144005372656, - "c5": 4.253432567387354, - "c6": 4.417014767596693, - "c7": 4.2162486785704445 + "offsets": { + "c1": 7.605177993527508, + "c2": 6.5187239944521504, + "c3": 5.432269995376793, + "c4": 4.345815996301429, + "c5": 3.2593619972260717, + "c6": 2.1729079981507144, + "c7": 1.0864539990753572 }, "rgb": [86, 146, 138] }, @@ -448341,23 +448341,23 @@ "year": 1829, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 23.874376181945323, - "c2": -4.118054673280064, - "c3": -28.316191318423215, - "c4": 20.380112820906433, - "c5": -10.495777068858626, - "c6": -26.51947762788254, - "c7": 23.691262634298155 + "points": { + "c1": 4.881905571602424, + "c2": -10.899854158351502, + "c3": -13.532101860131515, + "c4": 24.172260379425836, + "c5": 3.3440687396117568, + "c6": 21.554472632521303, + "c7": -6.65150978403252 }, - "vertexSeeds": { - "c1": 1.6241698332171082, - "c2": 1.6276925513336882, - "c3": 1.5905299832969053, - "c4": 1.65061576747492, - "c5": 1.5988486540725049, - "c6": 1.6075988783491186, - "c7": 1.634055920095374 + "offsets": { + "c1": 2.815533980582524, + "c2": 2.413314840499304, + "c3": 2.011095700416089, + "c4": 1.6088765603328694, + "c5": 1.2066574202496545, + "c6": 0.8044382801664347, + "c7": 0.4022191400832152 }, "rgb": [58, 15, 49] }, @@ -448368,23 +448368,23 @@ "year": 1829, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -20.308734037763706, - "c2": 1.4035312658073806, - "c3": 17.48563264441328, - "c4": -9.5322563012062, - "c5": -21.52108225229427, - "c6": 19.404479936623545, - "c7": 12.439457254119041 + "points": { + "c1": 10.507806743142424, + "c2": -11.879005955816414, + "c3": 26.655988793208003, + "c4": -12.84779703961806, + "c5": -5.908965124326283, + "c6": -6.460551758323991, + "c7": -3.1464556362453244 }, - "vertexSeeds": { - "c1": 4.261957959338902, - "c2": 4.292935946583723, - "c3": 4.137721670792564, - "c4": 4.219582029656043, - "c5": 4.136064926370626, - "c6": 4.271852358010501, - "c7": 4.097728117091497 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929256, + "c3": 5.131761442441056, + "c4": 4.105409153952838, + "c5": 3.0790568654646377, + "c6": 2.052704576976419, + "c7": 1.0263522884882186 }, "rgb": [77, 76, 132] }, @@ -448395,23 +448395,23 @@ "year": 1829, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -3.3791487064695858, - "c2": -16.29188462632372, - "c3": -22.60280117918628, - "c4": 0.5433670872415703, - "c5": 1.2715932834976407, - "c6": -7.451180850846331, - "c7": -1.3322352363522647 + "points": { + "c1": -8.825140859065087, + "c2": -7.842412055994309, + "c3": -5.7520377339519335, + "c4": 25.00614705243185, + "c5": 13.913599609481288, + "c6": 9.37784177557215, + "c7": 16.62405846004794 }, - "vertexSeeds": { - "c1": 7.844014542671278, - "c2": 8.544767039790763, - "c3": 8.513180675963255, - "c4": 7.903509331016677, - "c5": 7.97101335275314, - "c6": 8.713280511659127, - "c7": 9.033265734888516 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024972, + "c3": 10.933888118354137, + "c4": 8.747110494683314, + "c5": 6.56033287101248, + "c6": 4.373555247341657, + "c7": 2.1867776236708343 }, "rgb": [58, 15, 49] }, @@ -448422,23 +448422,23 @@ "year": 1829, "resistanceReported": false, "duration": 26870400, - "curveSeeds": { - "c1": 8.245276622720553, - "c2": -25.942145566660663, - "c3": -21.83780666622593, - "c4": 4.045173412254947, - "c5": -25.20932854602306, - "c6": -20.74147455723521, - "c7": -19.919234986378154 + "points": { + "c1": -40.93697051540323, + "c2": -29.267410708873726, + "c3": -8.67179359462154, + "c4": -30.561231499406233, + "c5": 28.23835980135737, + "c6": -29.672757490298807, + "c7": -18.388729323752735 }, - "vertexSeeds": { - "c1": 4.870261397777994, - "c2": 4.4267940864882585, - "c3": 4.45737966437018, - "c4": 4.487875906784727, - "c5": 4.7787055863521815, - "c6": 4.541168405200736, - "c7": 4.41218552725368 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135918, + "c3": 5.825242718446603, + "c4": 4.660194174757279, + "c5": 3.4951456310679636, + "c6": 2.3300970873786393, + "c7": 1.1650485436893152 }, "rgb": [86, 146, 138] }, @@ -448449,23 +448449,23 @@ "year": 1829, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 23.141882372859673, - "c2": 3.5457291754694573, - "c3": 9.089011297291226, - "c4": 26.56066107827724, - "c5": -0.8005196346790235, - "c6": -11.743607652338488, - "c7": 20.450003937487626 + "points": { + "c1": -21.49615412410965, + "c2": -5.660241390417259, + "c3": 8.758752128424877, + "c4": 12.703956685381907, + "c5": -8.766347833667858, + "c6": -9.697432760546484, + "c7": -27.34291791168954 }, - "vertexSeeds": { - "c1": 5.709472392089265, - "c2": 5.5187867213173165, - "c3": 5.494612698242468, - "c4": 5.861200054773568, - "c5": 5.821204184632576, - "c6": 5.868365246008944, - "c7": 5.398503117894641 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -448476,23 +448476,23 @@ "year": 1829, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 11.666968678470734, - "c2": -21.510361996640498, - "c3": 12.77851850864224, - "c4": -19.67344347046277, - "c5": 24.416416358783973, - "c6": -13.20793883978148, - "c7": 12.968323945814465 + "points": { + "c1": 30.593299199975526, + "c2": -8.829122529182893, + "c3": 14.580822038471453, + "c4": -17.57735206524876, + "c5": -12.132635847340765, + "c6": -26.442674134052616, + "c7": 24.204756777393058 }, - "vertexSeeds": { - "c1": 9.667431274065994, - "c2": 9.465101250093907, - "c3": 9.500041796320076, - "c4": 9.438597509380239, - "c5": 9.59903577280391, - "c6": 9.314467096573672, - "c7": 9.411429562340116 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.841886269070734, + "c3": 11.534905224225612, + "c4": 9.227924179380489, + "c5": 6.920943134535367, + "c6": 4.6139620896902445, + "c7": 2.3069810448451222 }, "rgb": [238, 201, 159] }, @@ -448503,23 +448503,23 @@ "year": 1829, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": 6.745300378152784, - "c2": 18.996389556021327, - "c3": 5.752557620370958, - "c4": 5.335221612802563, - "c5": 15.014859131664245, - "c6": 14.069890179434296, - "c7": -21.02856900143515 + "points": { + "c1": -29.59927089665313, + "c2": 21.486489428530987, + "c3": 16.237028901284347, + "c4": -0.9706149324782025, + "c5": -3.7954697098032177, + "c6": 17.34965557845488, + "c7": -15.796327527869348 }, - "vertexSeeds": { - "c1": 7.603559732323309, - "c2": 8.273881595921647, - "c3": 9.070923755417306, - "c4": 6.773800928824073, - "c5": 6.038714376911113, - "c6": 8.13498069347347, - "c7": 9.160001201571585 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306516, + "c3": 11.095700416088762, + "c4": 8.876560332871014, + "c5": 6.657420249653261, + "c6": 4.438280166435507, + "c7": 2.2191400832177535 }, "rgb": [77, 76, 132] }, @@ -448530,23 +448530,23 @@ "year": 1829, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -6.216366102202137, - "c2": -2.4455651899193143, - "c3": -26.2603858923889, - "c4": 5.079498802974317, - "c5": -18.616508583617396, - "c6": 11.229445801570161, - "c7": 23.123707066119362 + "points": { + "c1": 26.05763917215994, + "c2": 0.4946348895845212, + "c3": -14.800811566351545, + "c4": 21.6447620289771, + "c5": -1.176664979291754, + "c6": 4.7565506420358155, + "c7": -24.92026302978215 }, - "vertexSeeds": { - "c1": 8.78635725237577, - "c2": 8.785264303013413, - "c3": 8.812385848717756, - "c4": 8.829352896596124, - "c5": 8.823814594496513, - "c6": 8.787312578166249, - "c7": 8.808708063383571 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984752, + "c3": 10.910772075820605, + "c4": 8.72861766065649, + "c5": 6.546463245492376, + "c6": 4.364308830328228, + "c7": 2.182154415164114 }, "rgb": [86, 146, 138] }, @@ -448557,23 +448557,23 @@ "year": 1829, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -5.877827590151227, - "c2": 15.689800217126294, - "c3": -22.930212578055254, - "c4": -0.7035883549698916, - "c5": -16.353627439846665, - "c6": 30.25257133894146, - "c7": 17.234099662302025 + "points": { + "c1": -30.18300492131108, + "c2": -2.0669440919941735, + "c3": -9.534783098021254, + "c4": 4.257672843927139, + "c5": -5.39870092431568, + "c6": -32.269594057807375, + "c7": -16.531707051919895 }, - "vertexSeeds": { - "c1": 22.821192848983287, - "c2": 22.608718864957748, - "c3": 22.774711224704543, - "c4": 22.498995987545296, - "c5": 22.9242288330977, - "c6": 22.976327640406563, - "c7": 22.828249509654636 + "offsets": { + "c1": 38.44660194174757, + "c2": 32.95423023578357, + "c3": 27.46185852981979, + "c4": 21.96948682385579, + "c5": 16.477115117891785, + "c6": 10.984743411927784, + "c7": 5.492371705964001 }, "rgb": [58, 15, 49] }, @@ -448584,23 +448584,23 @@ "year": 1829, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -5.4035490313194074, - "c2": 28.000999499666683, - "c3": 6.444456525721122, - "c4": 34.49181078674526, - "c5": -34.02444526734224, - "c6": 21.468280946755826, - "c7": -7.657567308736244 + "points": { + "c1": -35.31359842128509, + "c2": -8.593948252499438, + "c3": 19.32137941789138, + "c4": -34.033687558384614, + "c5": -25.01826490480572, + "c6": -30.479602396614467, + "c7": 34.84870141649499 }, - "vertexSeeds": { - "c1": 3.480459200251985, - "c2": 3.5160825068418866, - "c3": 3.5128851075427256, - "c4": 3.501986743115797, - "c5": 3.4951045076605762, - "c6": 3.4892917512103083, - "c7": 3.5014730242276104 + "offsets": { + "c1": 5.889967637540453, + "c2": 5.048543689320412, + "c3": 4.207119741100287, + "c4": 3.365695792880247, + "c5": 2.524271844660206, + "c6": 1.6828478964401652, + "c7": 0.8414239482200407 }, "rgb": [77, 76, 132] }, @@ -448611,23 +448611,23 @@ "year": 1829, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 5.787843599327026, - "c2": -32.898654593732616, - "c3": -4.622602160220588, - "c4": -17.36641729794317, - "c5": -1.3892866560779282, - "c6": -22.49369570808512, - "c7": -31.233965690686478 + "points": { + "c1": 12.770998703135959, + "c2": 16.00373321569426, + "c3": 20.162294494648336, + "c4": -6.153591836396323, + "c5": 19.375418234868008, + "c6": 5.128362708727352, + "c7": -35.848566199085845 }, - "vertexSeeds": { - "c1": 3.265312117977141, - "c2": 3.3869274026269105, - "c3": 3.314350328123719, - "c4": 3.4576899225972317, - "c5": 3.4349847046844846, - "c6": 3.3485549914331942, - "c7": 3.2754378130090136 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199729, + "c3": 4.137771613499766, + "c4": 3.31021729079982, + "c5": 2.4826629680998566, + "c6": 1.65510864539991, + "c7": 0.8275543226999467 }, "rgb": [77, 76, 132] }, @@ -448638,23 +448638,23 @@ "year": 1829, "resistanceReported": false, "duration": 31104000, - "curveSeeds": { - "c1": -13.218676943913838, - "c2": 19.141149897213857, - "c3": -1.2763628171334958, - "c4": 8.944551801334342, - "c5": 20.274504830975488, - "c6": 41.51178017389776, - "c7": -7.401796945642559 + "points": { + "c1": -41.843995463378874, + "c2": 8.039095336256672, + "c3": -1.2709603368272226, + "c4": -28.149612545614605, + "c5": 41.73013170481215, + "c6": -17.2177057737895, + "c7": -24.056901118856615 }, - "vertexSeeds": { - "c1": 3.8643431960200396, - "c2": 3.8360478969372735, - "c3": 3.767909608532687, - "c4": 3.722249433775469, - "c5": 3.8992391936208213, - "c6": 3.807270169684741, - "c7": 3.74650471352634 + "offsets": { + "c1": 6.731391585760519, + "c2": 5.769764216366154, + "c3": 4.8081368469718, + "c4": 3.846509477577436, + "c5": 2.8848821081830827, + "c6": 1.923254738788718, + "c7": 0.9616273693943644 }, "rgb": [58, 15, 49] }, @@ -448665,23 +448665,23 @@ "year": 1829, "resistanceReported": false, "duration": 37929600, - "curveSeeds": { - "c1": 33.94884859488943, - "c2": -48.28000970910672, - "c3": -32.909659745560305, - "c4": 15.386296389631582, - "c5": 26.961590534138537, - "c6": 22.484183574502325, - "c7": 35.61250872591141 + "points": { + "c1": 4.222676600952006, + "c2": -46.66718970158273, + "c3": -1.2695920110328416, + "c4": 34.692424732455905, + "c5": 35.675462529667655, + "c6": 48.027483313026906, + "c7": -16.826392854499446 }, - "vertexSeeds": { - "c1": 8.293886955128874, - "c2": 8.213247562080031, - "c3": 8.247930431118991, - "c4": 8.213846003603948, - "c5": 8.244577154916, - "c6": 8.263271894721454, - "c7": 8.261867296191353 + "offsets": { + "c1": 13.851132686084142, + "c2": 11.872399445214956, + "c3": 9.893666204345772, + "c4": 7.914932963476584, + "c5": 5.936199722607557, + "c6": 3.9574664817383716, + "c7": 1.9787332408691858 }, "rgb": [86, 146, 138] }, @@ -448692,23 +448692,23 @@ "year": 1830, "resistanceReported": false, "duration": 47520000, - "curveSeeds": { - "c1": 2.2059137577700625, - "c2": -38.79708131665505, - "c3": -18.859993106658557, - "c4": 20.520434527391345, - "c5": -54.831376184268926, - "c6": -46.89279575928784, - "c7": -37.374725748096814 + "points": { + "c1": 3.38753199801819, + "c2": 36.17536850068622, + "c3": 2.2913019937121106, + "c4": -11.44022464934499, + "c5": 22.92026608126531, + "c6": -25.98705939251939, + "c7": 29.06576285084789 }, - "vertexSeeds": { - "c1": 6.786392943873148, - "c2": 6.8668581229805925, - "c3": 7.209996930790249, - "c4": 7.348717332682147, - "c5": 5.559892793373186, - "c6": 5.640626666814985, - "c7": 7.085602168423954 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134532, + "c3": 9.847434119278779, + "c4": 7.877947295423021, + "c5": 5.908460471567269, + "c6": 3.9389736477115105, + "c7": 1.969486823855753 }, "rgb": [222, 0, 59] }, @@ -448719,23 +448719,23 @@ "year": 1828, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": -7.696188895457489, - "c2": -8.799367167789333, - "c3": 9.150825193808714, - "c4": -5.924495393647176, - "c5": 4.896341532313137, - "c6": 16.528507682312124, - "c7": 13.758773374960406 + "points": { + "c1": -8.98101051238884, + "c2": -20.775949508554856, + "c3": 4.835283114944676, + "c4": 10.986411349554551, + "c5": 15.77972355629985, + "c6": 9.384348756227848, + "c7": 11.171671739298183 }, - "vertexSeeds": { - "c1": 8.678563192187257, - "c2": 8.68414321940348, - "c3": 8.674672872794597, - "c4": 8.619240531931306, - "c5": 8.695908706042465, - "c6": 8.632910506484325, - "c7": 8.707870141807312 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140081, + "c3": 10.425335182616736, + "c4": 8.340268146093388, + "c5": 6.255201109570041, + "c6": 4.170134073046694, + "c7": 2.085067036523347 }, "rgb": [222, 0, 59] }, @@ -448746,23 +448746,23 @@ "year": 1830, "resistanceReported": false, "duration": 66960000, - "curveSeeds": { - "c1": -73.75154089713517, - "c2": 8.626216607969369, - "c3": -11.439330903627464, - "c4": 18.102702562281237, - "c5": -18.523241057916408, - "c6": -56.433932263610544, - "c7": -18.541442336268943 + "points": { + "c1": 51.57803796310502, + "c2": 83.45086490506885, + "c3": -61.338515073697046, + "c4": -52.121342174279135, + "c5": 36.92545144237964, + "c6": 6.08924023503387, + "c7": 3.0168685385353484 }, - "vertexSeeds": { - "c1": 10.665392604551295, - "c2": 10.429526624747139, - "c3": 10.487931934946209, - "c4": 10.688816606859916, - "c5": 10.57754231043291, - "c6": 10.499874155444088, - "c7": 10.723149491082374 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363411, + "c3": 12.852519648636115, + "c4": 10.28201571890891, + "c5": 7.7115117891817055, + "c6": 5.1410078594545014, + "c7": 2.570503929727204 }, "rgb": [86, 146, 138] }, @@ -448773,23 +448773,23 @@ "year": 1829, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 19.875155896880514, - "c2": -21.58598730209206, - "c3": 33.48905232624242, - "c4": 1.611435680005151, - "c5": 22.434850365956265, - "c6": -2.9121213683018183, - "c7": -7.665798153914935 + "points": { + "c1": -38.53660751575405, + "c2": -15.271855306970263, + "c3": -33.798408596011285, + "c4": 23.868807534699172, + "c5": 24.535455669027677, + "c6": -30.670911839889378, + "c7": 15.595243095278683 }, - "vertexSeeds": { - "c1": 9.77806848805249, - "c2": 9.911441603892078, - "c3": 9.754404170763923, - "c4": 10.047645091955793, - "c5": 9.988188347135132, - "c6": 10.001006446413871, - "c7": 9.992768741959162 + "offsets": { + "c1": 16.796116504854368, + "c2": 14.396671289875188, + "c3": 11.997226074896007, + "c4": 9.597780859916774, + "c5": 7.198335644937594, + "c6": 4.798890429958361, + "c7": 2.3994452149791803 }, "rgb": [77, 76, 132] }, @@ -448800,23 +448800,23 @@ "year": 1829, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": 40.73415469801815, - "c2": -9.647080733210228, - "c3": 23.917540896414245, - "c4": -8.789522730467539, - "c5": -14.36901936895277, - "c6": 12.445476812881004, - "c7": -30.370655397856808 + "points": { + "c1": -10.056998442550103, + "c2": 9.935859078094879, + "c3": -30.211795198129124, + "c4": 39.14448684279757, + "c5": -1.445431848309049, + "c6": 38.81673809901559, + "c7": 40.448374003294724 }, - "vertexSeeds": { - "c1": 5.3344462294105774, - "c2": 5.323129482384258, - "c3": 5.335957327747569, - "c4": 5.343354726790918, - "c5": 5.345548935462261, - "c6": 5.3596006678132735, - "c7": 5.298347810363704 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141456, + "c3": 6.40314378178453, + "c4": 5.122515025427603, + "c5": 3.8418862690707787, + "c6": 2.5612575127138526, + "c7": 1.2806287563569263 }, "rgb": [238, 201, 159] }, @@ -448827,23 +448827,23 @@ "year": 1829, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -20.676791092551568, - "c2": -5.590492957920468, - "c3": -14.357822483409052, - "c4": -10.760011620343722, - "c5": -5.841148897702773, - "c6": -25.470678055553364, - "c7": 28.158047201397448 + "points": { + "c1": -0.2188736163950722, + "c2": -14.34611487306287, + "c3": 17.439084270161036, + "c4": -24.19655274486805, + "c5": 22.509514681417212, + "c6": 1.6594287277112336, + "c7": -6.296794547116608 }, - "vertexSeeds": { - "c1": 10.154241248391845, - "c2": 10.196769234469295, - "c3": 10.062009484540663, - "c4": 10.19305513633027, - "c5": 9.801588959612449, - "c6": 9.654176692508264, - "c7": 10.072370059928323 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156745, + "c3": 12.159038372630576, + "c4": 9.727230698104474, + "c5": 7.295423023578373, + "c6": 4.863615349052237, + "c7": 2.4318076745261354 }, "rgb": [86, 146, 138] }, @@ -448854,23 +448854,23 @@ "year": 1829, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -10.833396586560418, - "c2": 13.513417136920047, - "c3": -19.413045735100923, - "c4": -24.411158539628538, - "c5": -23.959376808556026, - "c6": 17.55397137782967, - "c7": -10.116718652624474 + "points": { + "c1": 4.020666898396925, + "c2": 29.75622793298632, + "c3": 23.245612425471514, + "c4": 12.999434978381586, + "c5": -28.678443232963424, + "c6": -9.004825392015796, + "c7": 28.279533768704823 }, - "vertexSeeds": { - "c1": 7.003288166583785, - "c2": 7.038891881142042, - "c3": 7.351963979341891, - "c4": 6.879229064177995, - "c5": 6.894977755236696, - "c6": 7.490655423137568, - "c7": 7.492748124385803 + "offsets": { + "c1": 12.524271844660195, + "c2": 10.735090152565888, + "c3": 8.945908460471559, + "c4": 7.156726768377251, + "c5": 5.367545076282944, + "c6": 3.5783633841886364, + "c7": 1.789181692094307 }, "rgb": [77, 76, 132] }, @@ -448881,23 +448881,23 @@ "year": 1829, "resistanceReported": false, "duration": 22636800, - "curveSeeds": { - "c1": 30.58585947523933, - "c2": -29.492084466926276, - "c3": 34.288705799811865, - "c4": -0.821608408661497, - "c5": -1.4240224993270019, - "c6": 24.331510699774704, - "c7": -0.4657122731671137 + "points": { + "c1": -34.451910394428324, + "c2": 0.15200603255810563, + "c3": -27.94734412284964, + "c4": -16.682897255279496, + "c5": -10.037360344724153, + "c6": 20.052672043232228, + "c7": 9.968528643715338 }, - "vertexSeeds": { - "c1": 4.812079412365341, - "c2": 4.668292771168796, - "c3": 4.872385582671526, - "c4": 4.26648714800527, - "c5": 4.190160223790919, - "c6": 4.43714383800119, - "c7": 4.59712109639195 + "offsets": { + "c1": 8.25242718446602, + "c2": 7.073509015256591, + "c3": 5.894590846047157, + "c4": 4.715672676837728, + "c5": 3.536754507628293, + "c6": 2.357836338418864, + "c7": 1.1789181692094348 }, "rgb": [238, 201, 159] }, @@ -448908,23 +448908,23 @@ "year": 1829, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": 9.377445850258631, - "c2": 9.177938017390222, - "c3": 5.783702391904793, - "c4": 10.45819294654796, - "c5": -18.189899535194897, - "c6": -4.494873455418345, - "c7": 16.995007196147622 + "points": { + "c1": -6.727083446835575, + "c2": 14.338265586764049, + "c3": -22.326183179240733, + "c4": 7.054368409262185, + "c5": 3.0090922070780017, + "c6": 3.3239755290518325, + "c7": 3.8432999215126387 }, - "vertexSeeds": { - "c1": 10.554994445318625, - "c2": 10.668687656015388, - "c3": 10.474599234288458, - "c4": 10.731691758303791, - "c5": 10.791693188194944, - "c6": 10.775850254094587, - "c7": 10.397597559667737 + "offsets": { + "c1": 18.705501618122977, + "c2": 16.03328710124826, + "c3": 13.36107258437354, + "c4": 10.688858067498824, + "c5": 8.016643550624153, + "c6": 5.344429033749435, + "c7": 2.6722145168747176 }, "rgb": [86, 146, 138] }, @@ -448935,23 +448935,23 @@ "year": 1829, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -5.7509723788451055, - "c2": -31.357943755768467, - "c3": 23.03250239560647, - "c4": 27.8122910688966, - "c5": 18.09719574964693, - "c6": -13.274208523931545, - "c7": -29.68554603845817 + "points": { + "c1": 18.92856014675504, + "c2": -3.2988371228685196, + "c3": 4.158306732451756, + "c4": 27.60993778552458, + "c5": 26.5401076975255, + "c6": -11.486771504898744, + "c7": 27.87211452143997 }, - "vertexSeeds": { - "c1": 9.239723014938955, - "c2": 9.19726601218899, - "c3": 9.293865878060245, - "c4": 9.232677438593125, - "c5": 9.186471629722915, - "c6": 9.135698314861418, - "c7": 9.119026355472421 + "offsets": { + "c1": 15.63106796116505, + "c2": 13.398058252427175, + "c3": 11.165048543689338, + "c4": 8.932038834951461, + "c5": 6.6990291262135875, + "c6": 4.46601941747575, + "c7": 2.233009708737875 }, "rgb": [58, 15, 49] }, @@ -448962,23 +448962,23 @@ "year": 1829, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 3.0378536737105932, - "c2": -0.01699776187082236, - "c3": -10.830092762073292, - "c4": 1.9289929579140264, - "c5": -21.996060550652953, - "c6": 17.422491287942226, - "c7": -8.479053486673408 + "points": { + "c1": -15.207345755023017, + "c2": -8.885662268580408, + "c3": -13.450779247258708, + "c4": -23.848487047577862, + "c5": 22.104191903992, + "c6": 28.516653327509683, + "c7": -25.22223128385654 }, - "vertexSeeds": { - "c1": 0.9037077957612607, - "c2": 0.9350936311569451, - "c3": 1.0063919066393563, - "c4": 0.9591937379787281, - "c5": 1.0072073159901154, - "c6": 0.9355887164148189, - "c7": 0.990520877760829 + "offsets": { + "c1": 1.715210355987055, + "c2": 1.470180305131761, + "c3": 1.225150254276467, + "c4": 0.9801202034211747, + "c5": 0.7350901525658805, + "c6": 0.4900601017105864, + "c7": 0.24503005085529234 }, "rgb": [58, 15, 49] }, @@ -448989,23 +448989,23 @@ "year": 1829, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -12.092082246625615, - "c2": 24.172743505761247, - "c3": 27.20305927138839, - "c4": -9.802916543986871, - "c5": 7.333818195166025, - "c6": -8.17145652283909, - "c7": 29.208313724009784 + "points": { + "c1": -7.114180973572001, + "c2": 25.827643602554645, + "c3": 24.547712770657505, + "c4": -19.009129856311052, + "c5": -33.7888726226279, + "c6": 28.358890146775266, + "c7": -24.57720137660506 }, - "vertexSeeds": { - "c1": 6.837964257755381, - "c2": 6.593156550862269, - "c3": 6.521224530371916, - "c4": 6.761743220058378, - "c5": 6.744399620633205, - "c6": 7.049097372086158, - "c7": 6.552101411226793 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761449, + "c3": 8.483587609801193, + "c4": 6.786870087840959, + "c5": 5.090152565880724, + "c6": 3.39343504392049, + "c7": 1.6967175219602344 }, "rgb": [86, 146, 138] }, @@ -449016,23 +449016,23 @@ "year": 1829, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": 2.482751484301783, - "c2": -8.112574929074036, - "c3": -6.168253046379476, - "c4": 22.47427480419263, - "c5": -21.865210711672383, - "c6": 2.139587963621125, - "c7": -11.388870995056507 + "points": { + "c1": 11.126146062289425, + "c2": 14.279316350595561, + "c3": 13.768422572961068, + "c4": 12.999869885725499, + "c5": 20.8629278421508, + "c6": -5.796224848782494, + "c7": -5.848334711631026 }, - "vertexSeeds": { - "c1": 6.704624357051058, - "c2": 6.77389519554294, - "c3": 6.7336871100581135, - "c4": 6.68336335577637, - "c5": 6.705735382076786, - "c6": 6.686459886151967, - "c7": 6.703762834943931 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077671, + "c3": 8.090614886731393, + "c4": 6.472491909385114, + "c5": 4.8543689320388355, + "c6": 3.236245954692557, + "c7": 1.6181229773462784 }, "rgb": [86, 146, 138] }, @@ -449043,23 +449043,23 @@ "year": 1829, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": 9.095093463883007, - "c2": 13.453502812098595, - "c3": 21.452854429273753, - "c4": -12.467810899711658, - "c5": 0.6865369391094944, - "c6": -20.06969101688582, - "c7": 2.6540049432391832 + "points": { + "c1": 10.736858990376977, + "c2": 6.652416978798666, + "c3": 16.645520207645337, + "c4": -13.819893844946566, + "c5": 28.030221841668837, + "c6": -14.196866433355895, + "c7": -22.49787603847198 }, - "vertexSeeds": { - "c1": 6.201660402528708, - "c2": 5.979261740164247, - "c3": 6.040865702506694, - "c4": 6.175839839624742, - "c5": 6.2173350265637355, - "c6": 6.202232507831233, - "c7": 6.151110296873704 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911218, + "c3": 7.420249653259368, + "c4": 5.936199722607479, + "c5": 4.4521497919556285, + "c6": 2.9680998613037395, + "c7": 1.4840499306518893 }, "rgb": [77, 76, 132] }, @@ -449070,23 +449070,23 @@ "year": 1829, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -31.777854019899188, - "c2": -20.589165416193318, - "c3": 9.852926314870174, - "c4": 5.530880291319939, - "c5": 22.662109619426822, - "c6": 18.657840994322875, - "c7": -23.6778753351626 + "points": { + "c1": -23.762867525553798, + "c2": -5.785122157487052, + "c3": -12.29190377038135, + "c4": -22.901918575925876, + "c5": -32.59687072344228, + "c6": -30.11502940215977, + "c7": 36.19483446454109 }, - "vertexSeeds": { - "c1": 5.623595437558297, - "c2": 5.612317443585668, - "c3": 5.558205339066946, - "c4": 5.610595719931157, - "c5": 5.514542175163663, - "c6": 5.502363736906475, - "c7": 5.564755357099222 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744808, + "c3": 6.7498844197873495, + "c4": 5.399907535829892, + "c5": 4.0499306518723746, + "c6": 2.6999537679149164, + "c7": 1.3499768839574582 }, "rgb": [222, 0, 59] }, @@ -449097,23 +449097,23 @@ "year": 1829, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": -12.776929253298487, - "c2": 3.5980309409152085, - "c3": 18.528794197006164, - "c4": 34.96659835627604, - "c5": 7.469573976834134, - "c6": 2.6828167502029814, - "c7": 27.699883111185784 + "points": { + "c1": 16.185053439762882, + "c2": -10.757937203161603, + "c3": 23.948220149828586, + "c4": 16.78292786442009, + "c5": 8.980965637707477, + "c6": 24.994179194036604, + "c7": -23.354930131577582 }, - "vertexSeeds": { - "c1": 7.035777337583663, - "c2": 15.641371612276755, - "c3": 6.485131188549164, - "c4": 17.200360572582575, - "c5": 7.058846288385957, - "c6": 16.558269285060973, - "c7": 13.864736365937723 + "offsets": { + "c1": 31.715210355987054, + "c2": 27.184466019417478, + "c3": 22.653721682847895, + "c4": 18.12297734627832, + "c5": 13.59223300970874, + "c6": 9.06148867313916, + "c7": 4.530744336569578 }, "rgb": [58, 15, 49] }, @@ -449124,23 +449124,23 @@ "year": 1829, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": 3.374132559967059, - "c2": 22.790153947316533, - "c3": -36.13705915145195, - "c4": 27.039949428315865, - "c5": 3.197422199502931, - "c6": 4.713682872911896, - "c7": -25.901382236697717 + "points": { + "c1": 5.320475911691709, + "c2": -35.63566954227766, + "c3": -0.5678882097547202, + "c4": -12.95841206125133, + "c5": -23.411926968081577, + "c6": 18.41542891061681, + "c7": 35.321154147271855 }, - "vertexSeeds": { - "c1": 5.438253197010602, - "c2": 5.327643808593385, - "c3": 5.464680711989701, - "c4": 5.450928059707782, - "c5": 5.472778923943175, - "c6": 5.411481436654295, - "c7": 5.34064999782172 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -449151,23 +449151,23 @@ "year": 1829, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -3.2067892913699865, - "c2": 14.158535150899844, - "c3": -4.513701379418297, - "c4": 2.3253600756878328, - "c5": 14.806642100231358, - "c6": 17.11228532242894, - "c7": 22.68626326568485 + "points": { + "c1": -3.6626637482895603, + "c2": 29.62954171025018, + "c3": -12.66303795803545, + "c4": -3.6321334150923263, + "c5": 11.615479539214078, + "c6": 2.82191232639709, + "c7": 4.172050658388102 }, - "vertexSeeds": { - "c1": 5.663184534629023, - "c2": 5.893947885833519, - "c3": 5.493545820587836, - "c4": 5.702974711657621, - "c5": 5.932614542610935, - "c6": 5.70144666645456, - "c7": 5.444679444168829 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -449178,23 +449178,23 @@ "year": 1829, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -19.694306321033828, - "c2": 11.964948401958889, - "c3": 25.478233916606268, - "c4": -11.73356951134675, - "c5": -8.168617404236986, - "c6": -13.737049412438001, - "c7": 11.619355444722562 + "points": { + "c1": -20.845874368518373, + "c2": 29.054121930003298, + "c3": 7.520166292681594, + "c4": -21.397922517023474, + "c5": -22.749980954628466, + "c6": 20.510622206961564, + "c7": 25.358151642045186 }, - "vertexSeeds": { - "c1": 6.952843556263755, - "c2": 7.08523478530071, - "c3": 7.0963014419648385, - "c4": 7.076203537634061, - "c5": 6.918832321159545, - "c6": 7.065924104022475, - "c7": 6.959350717774141 + "offsets": { + "c1": 11.877022653721683, + "c2": 10.180305131761424, + "c3": 8.483587609801164, + "c4": 6.786870087840972, + "c5": 5.090152565880712, + "c6": 3.393435043920452, + "c7": 1.6967175219601922 }, "rgb": [222, 0, 59] }, @@ -449205,23 +449205,23 @@ "year": 1829, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 14.318236211816778, - "c2": -26.84228424129576, - "c3": -0.6581262319881915, - "c4": 5.839159067601944, - "c5": 12.412460629497847, - "c6": -6.332517334953536, - "c7": 1.9239572729720997 + "points": { + "c1": -8.217544268858521, + "c2": -8.530445970642912, + "c3": 16.94775937566962, + "c4": -18.20070736485019, + "c5": -5.330547448666483, + "c6": -15.338429560237273, + "c7": 15.25286709005291 }, - "vertexSeeds": { - "c1": 11.075648047713097, - "c2": 11.167589594609355, - "c3": 10.756267706540012, - "c4": 10.806467621136806, - "c5": 10.68451013198636, - "c6": 11.0386563373638, - "c7": 10.810503523799003 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.08876560332871, + "c3": 13.407304669440592, + "c4": 10.725843735552473, + "c5": 8.044382801664355, + "c6": 5.362921867776237, + "c7": 2.6814609338881183 }, "rgb": [238, 201, 159] }, @@ -449232,23 +449232,23 @@ "year": 1829, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -13.993884048479234, - "c2": 22.075375471518633, - "c3": -5.994128583245619, - "c4": 27.23271084182828, - "c5": 13.228031785286, - "c6": -38.225670025834944, - "c7": -28.752104378891445 + "points": { + "c1": -27.41247386616296, + "c2": 31.232446423376658, + "c3": -36.22042691807217, + "c4": 15.796028591366834, + "c5": 19.910066798264417, + "c6": -1.21282633579483, + "c7": -6.107922600350221 }, - "vertexSeeds": { - "c1": 11.754166199445642, - "c2": 12.66440263390478, - "c3": 11.618252974107163, - "c4": 12.585181606399857, - "c5": 11.435670133786179, - "c6": 12.312416373375243, - "c7": 12.059268866936748 + "offsets": { + "c1": 21.22977346278317, + "c2": 18.19694868238557, + "c3": 15.164123901987969, + "c4": 12.131299121590404, + "c5": 9.098474341192803, + "c6": 6.065649560795202, + "c7": 3.032824780397601 }, "rgb": [77, 76, 132] }, @@ -449259,23 +449259,23 @@ "year": 1830, "resistanceReported": false, "duration": 44323200, - "curveSeeds": { - "c1": -29.17566574187499, - "c2": 44.17991519755982, - "c3": -41.051164432164185, - "c4": 37.90093536714497, - "c5": -1.4540804486805143, - "c6": -13.758568319634314, - "c7": -7.562437525080853 + "points": { + "c1": 28.537079799643493, + "c2": 16.049945408374825, + "c3": 0.8547627951570718, + "c4": -26.599800132568156, + "c5": -19.994000639429004, + "c6": -58.986140273228564, + "c7": -58.634836058350736 }, - "vertexSeeds": { - "c1": 10.291170260911073, - "c2": 9.742328357297268, - "c3": 9.799369052975837, - "c4": 9.769465488297168, - "c5": 9.907188834470544, - "c6": 9.878852144582703, - "c7": 9.60314141371996 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599179, + "c3": 12.41331484049929, + "c4": 9.930651872399439, + "c5": 7.4479889042995895, + "c6": 4.9653259361997195, + "c7": 2.48266296809985 }, "rgb": [86, 146, 138] }, @@ -449286,23 +449286,23 @@ "year": 1829, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -21.49175113806186, - "c2": 15.642598812229068, - "c3": -7.076766213506296, - "c4": 24.39602346703405, - "c5": 18.001086836594624, - "c6": -5.2547479345511405, - "c7": -21.913237941977954 + "points": { + "c1": 24.461570260808948, + "c2": 20.1161340792125, + "c3": 3.7508702350241236, + "c4": 14.445181155860347, + "c5": -29.105314138882907, + "c6": 2.882937613287524, + "c7": 14.756650896511161 }, - "vertexSeeds": { - "c1": 2.1320376322061496, - "c2": 1.9113164568906793, - "c3": 2.0309807599957854, - "c4": 1.9385091118412496, - "c5": 2.0306220537917934, - "c6": 1.7233403676273662, - "c7": 1.767926956869402 + "offsets": { + "c1": 3.6569579288025893, + "c2": 3.134535367545077, + "c3": 2.612112806287563, + "c4": 2.089690245030051, + "c5": 1.5672676837725386, + "c6": 1.0448451225150241, + "c7": 0.5224225612575121 }, "rgb": [86, 146, 138] }, @@ -449313,23 +449313,23 @@ "year": 1829, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": -0.19729690800793165, - "c2": 16.070011962488948, - "c3": -15.43719276701032, - "c4": -6.504044519242743, - "c5": -6.221907638944099, - "c6": -9.62455601765218, - "c7": 14.562424537142753 + "points": { + "c1": 6.726040358444099, + "c2": 20.204343091298632, + "c3": -16.552390363457878, + "c4": 3.0683174170691565, + "c5": -1.5913033561171765, + "c6": -12.683098808497057, + "c7": -1.3161047818716902 }, - "vertexSeeds": { - "c1": 5.582256177173612, - "c2": 5.699732324572944, - "c3": 5.685559065731184, - "c4": 5.814680698396401, - "c5": 5.7603100303776245, - "c6": 5.650008644894176, - "c7": 5.799070975847923 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -449340,23 +449340,23 @@ "year": 1829, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": -1.4224741648237291, - "c2": 24.2704705533804, - "c3": -7.71482983884901, - "c4": -29.061789611116065, - "c5": 1.9835332200964046, - "c6": -7.030728048454872, - "c7": -28.415899613361496 + "points": { + "c1": 11.461339200453885, + "c2": 3.8344284384274587, + "c3": 16.64854633773971, + "c4": -2.435025017102131, + "c5": -29.96341204116035, + "c6": -8.237925880406578, + "c7": -12.022491363994508 }, - "vertexSeeds": { - "c1": 7.693892306964065, - "c2": 7.458374665325788, - "c3": 7.750887262101367, - "c4": 7.360695006566862, - "c5": 7.578847705979942, - "c6": 7.566842616790287, - "c7": 7.725766070564641 + "offsets": { + "c1": 12.944983818770226, + "c2": 11.095700416088755, + "c3": 9.246417013407317, + "c4": 7.397133610725847, + "c5": 5.547850208044378, + "c6": 3.6985668053629084, + "c7": 1.8492834026814697 }, "rgb": [222, 0, 59] }, @@ -449367,23 +449367,23 @@ "year": 1829, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": 16.043494648570515, - "c2": -6.385153634679469, - "c3": 48.141212783384105, - "c4": -25.824407503687123, - "c5": -1.6168238661730001, - "c6": -7.211814390652201, - "c7": 11.708808184346701 + "points": { + "c1": -40.316739882190305, + "c2": 13.62102470106278, + "c3": -25.73948315673874, + "c4": -48.805769588939015, + "c5": 19.67819383462475, + "c6": -19.079668896889928, + "c7": 15.7578063765569 }, - "vertexSeeds": { - "c1": 5.744286550672384, - "c2": 5.888822811939061, - "c3": 5.792742038572873, - "c4": 5.836271570097596, - "c5": 5.777211685321626, - "c6": 5.857373745288033, - "c7": 5.753300130781652 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307891, + "c3": 7.073509015256613, + "c4": 5.6588072122052795, + "c5": 4.244105409153946, + "c6": 2.8294036061026113, + "c7": 1.4147018030513339 }, "rgb": [77, 76, 132] }, @@ -449394,23 +449394,23 @@ "year": 1829, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -12.961096213303609, - "c2": 12.466263670455465, - "c3": -18.803111923913626, - "c4": -3.621830179375152, - "c5": -14.21591056853038, - "c6": -3.0856842565073883, - "c7": 11.41324664278508 + "points": { + "c1": -6.416963050145739, + "c2": -11.374785767150078, + "c3": -12.451995546852684, + "c4": -6.425231759298271, + "c5": 14.867369890717466, + "c6": -3.785260563617495, + "c7": 24.066478161960237 }, - "vertexSeeds": { - "c1": 5.390662519390024, - "c2": 5.2961456728932665, - "c3": 5.43270891380956, - "c4": 5.32124238579665, - "c5": 5.232614247666525, - "c6": 5.419210743811481, - "c7": 5.312481087698677 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -449421,23 +449421,23 @@ "year": 1829, "resistanceReported": false, "duration": 27993600, - "curveSeeds": { - "c1": 11.993421130482474, - "c2": -39.37734815138665, - "c3": -18.539168160309178, - "c4": 0.2761420681543001, - "c5": -26.701287243526174, - "c6": 15.200527935297735, - "c7": -35.737620195875344 + "points": { + "c1": -30.158286429407756, + "c2": 16.792858396165812, + "c3": 9.578319694079305, + "c4": 41.322324349058675, + "c5": 35.69163488674732, + "c6": -13.366733426308745, + "c7": -2.3082703433141063 }, - "vertexSeeds": { - "c1": 8.408042670598801, - "c2": 4.164650376384609, - "c3": 6.633228429104035, - "c4": 4.443323308888074, - "c5": 2.735791803605187, - "c6": 2.299451470104491, - "c7": 1.4195123318568506 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617198, + "c3": 10.124826629680998, + "c4": 8.099861303744799, + "c5": 6.074895977808599, + "c6": 4.0499306518723985, + "c7": 2.0249653259362006 }, "rgb": [238, 201, 159] }, @@ -449448,23 +449448,23 @@ "year": 1829, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -16.619282803794256, - "c2": -9.135753505962835, - "c3": 23.2028555378037, - "c4": -4.444057136136067, - "c5": 13.662547861029601, - "c6": 22.011583767048144, - "c7": -26.942264379774656 + "points": { + "c1": 28.56054195886268, + "c2": 7.036885513082559, + "c3": -23.395952949579712, + "c4": -29.807387752284182, + "c5": -21.08923861527922, + "c6": 21.22052226026304, + "c7": -11.030547171048905 }, - "vertexSeeds": { - "c1": 5.628250779666628, - "c2": 5.279683055198498, - "c3": 5.159275632211693, - "c4": 5.568328579150842, - "c5": 5.202653756781267, - "c6": 5.41893253992241, - "c7": 5.225586322312673 + "offsets": { + "c1": 9.449838187702266, + "c2": 8.099861303744797, + "c3": 6.749884419787327, + "c4": 5.399907535829859, + "c5": 4.0499306518724065, + "c6": 2.6999537679149377, + "c7": 1.3499768839574688 }, "rgb": [77, 76, 132] }, @@ -449475,23 +449475,23 @@ "year": 1829, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": -10.00564234276991, - "c2": -3.3206266937468314, - "c3": 23.49209112055543, - "c4": -19.04926549228922, - "c5": -16.554222485113456, - "c6": 23.391778641572913, - "c7": 18.13876198886092 + "points": { + "c1": 14.75711871354465, + "c2": 22.64035306018844, + "c3": 19.669950399652485, + "c4": -3.4996585780286154, + "c5": 6.9195896980216745, + "c6": 16.646902522526396, + "c7": 7.541538963876064 }, - "vertexSeeds": { - "c1": 5.60448518062437, - "c2": 5.537381082850937, - "c3": 5.389711592741835, - "c4": 5.699712322413556, - "c5": 5.841858037479852, - "c6": 5.815683235142408, - "c7": 5.483733508125876 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -449502,23 +449502,23 @@ "year": 1829, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 3.139762886142563, - "c2": -1.8079659198152669, - "c3": 34.68195467961753, - "c4": -3.6812754020480796, - "c5": -3.2123683831041348, - "c6": -20.394702502467265, - "c7": -3.362793516138943 + "points": { + "c1": 30.79976766565251, + "c2": -15.516382009528225, + "c3": -5.895604501986625, + "c4": 30.02502108863638, + "c5": 13.069602935159374, + "c6": 10.70930226425726, + "c7": 13.749621503337423 }, - "vertexSeeds": { - "c1": 9.86245458405337, - "c2": 10.324097044797114, - "c3": 10.486603088689309, - "c4": 10.536723193032294, - "c5": 9.876145923953587, - "c6": 10.331142429710903, - "c7": 10.328700063388677 + "offsets": { + "c1": 17.60517799352751, + "c2": 15.090152565880738, + "c3": 12.575127138233912, + "c4": 10.060101710587139, + "c5": 7.545076282940369, + "c6": 5.030050855293598, + "c7": 2.515025427646771 }, "rgb": [86, 146, 138] }, @@ -449529,23 +449529,23 @@ "year": 1829, "resistanceReported": false, "duration": 12614400, - "curveSeeds": { - "c1": 19.115607945905325, - "c2": 20.19836030191817, - "c3": 19.413884770532725, - "c4": -16.392733593481292, - "c5": -15.237049063033211, - "c6": 19.248760313336547, - "c7": -16.895216043018877 + "points": { + "c1": -15.998194420187614, + "c2": -6.933871971750516, + "c3": -18.381032284558444, + "c4": -22.22888767511828, + "c5": 5.733269374865216, + "c6": -2.027788381465893, + "c7": 15.389810674946283 }, - "vertexSeeds": { - "c1": 10.0284346277045, - "c2": 10.107781545170448, - "c3": 10.13500586781426, - "c4": 9.980486382053318, - "c5": 10.130030246488467, - "c6": 9.96167030957968, - "c7": 9.965981568084796 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.674063800277436, + "c3": 12.228386500231144, + "c4": 9.782709200184957, + "c5": 7.337031900138666, + "c6": 4.891354600092479, + "c7": 2.4456773000461878 }, "rgb": [238, 201, 159] }, @@ -449556,23 +449556,23 @@ "year": 1829, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 2.2982339747615654, - "c2": 8.257611767554856, - "c3": 27.916009437117467, - "c4": 18.128918297609317, - "c5": 23.93614098602231, - "c6": -27.753362961954373, - "c7": -11.768848975056887 + "points": { + "c1": -31.564434094940786, + "c2": -24.605334705923774, + "c3": 2.7686346344415256, + "c4": 15.994654295240338, + "c5": 28.233511372356496, + "c6": 22.656052672950615, + "c7": 6.340936802031663 }, - "vertexSeeds": { - "c1": 9.491216252938989, - "c2": 9.44069618928494, - "c3": 9.190105027045858, - "c4": 8.97697481940292, - "c5": 9.477230988107678, - "c6": 9.501215226013446, - "c7": 9.151858435101584 + "offsets": { + "c1": 15.922330097087379, + "c2": 13.647711511789176, + "c3": 11.373092926490996, + "c4": 9.09847434119279, + "c5": 6.823855755894588, + "c6": 4.549237170596384, + "c7": 2.274618585298204 }, "rgb": [86, 146, 138] }, @@ -449583,23 +449583,23 @@ "year": 1829, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -14.84170903556883, - "c2": -1.3170034505048882, - "c3": 23.939071887985808, - "c4": 6.167242109598018, - "c5": -20.768897529449003, - "c6": -6.939982908667464, - "c7": 7.476012272368241 + "points": { + "c1": -14.875616515655725, + "c2": 17.03584129356685, + "c3": 28.547805582763242, + "c4": -25.669799552771714, + "c5": 6.2937937008590445, + "c6": 17.598966676105224, + "c7": 12.27507260541233 }, - "vertexSeeds": { - "c1": 5.061048169924406, - "c2": 5.080198908599162, - "c3": 5.038482770770509, - "c4": 5.056449521768855, - "c5": 5.056230825019878, - "c6": 5.093465914859802, - "c7": 5.084605641663302 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618619, + "c3": 6.102635228848769, + "c4": 4.88210818307904, + "c5": 3.6615811373093097, + "c6": 2.441054091539459, + "c7": 1.2205270457697295 }, "rgb": [58, 15, 49] }, @@ -449610,23 +449610,23 @@ "year": 1829, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -10.926482855096557, - "c2": -10.073536560711078, - "c3": -2.986702531190474, - "c4": -14.081921797243778, - "c5": 13.114465349788539, - "c6": -12.79350943496115, - "c7": 0.4449077245294646 + "points": { + "c1": -16.08017483196562, + "c2": -6.703757407598303, + "c3": -13.796781345725107, + "c4": -21.96110155673195, + "c5": 22.449072693580284, + "c6": -3.225612744015823, + "c7": -5.608988140361461 }, - "vertexSeeds": { - "c1": 2.040155440414508, - "c2": 2.040155440414508, - "c3": 2.040155440414508, - "c4": 2.040155440414508, - "c5": 2.040155440414508, - "c6": 2.040155440414508, - "c7": 2.040155440414508 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -449637,23 +449637,23 @@ "year": 1829, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 13.633010336714246, - "c2": -25.81078144802046, - "c3": -16.04029043051881, - "c4": 21.63808239313416, - "c5": -24.080656927671228, - "c6": 8.5917347940542, - "c7": -4.580508116476665 + "points": { + "c1": 14.40273764530858, + "c2": -21.663518786841223, + "c3": -19.254899166049487, + "c4": 13.047853110991145, + "c5": 20.217764057395716, + "c6": -10.226035895610504, + "c7": -19.97001102155052 }, - "vertexSeeds": { - "c1": 8.696969295312616, - "c2": 8.588087225765513, - "c3": 8.612838758854386, - "c4": 8.722476863547179, - "c5": 8.608944529657256, - "c6": 8.654378146400244, - "c7": 8.679898237629104 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099874, + "c3": 10.402219140083243, + "c4": 8.321775312066613, + "c5": 6.241331484049891, + "c6": 4.16088765603326, + "c7": 2.08044382801663 }, "rgb": [58, 15, 49] }, @@ -449664,23 +449664,23 @@ "year": 1829, "resistanceReported": false, "duration": 28684800, - "curveSeeds": { - "c1": -1.3826277604932429, - "c2": -15.47753527709196, - "c3": 6.450922567961726, - "c4": 21.72008091517079, - "c5": 34.36862706705394, - "c6": -9.178368619931142, - "c7": 34.05417748862873 + "points": { + "c1": -36.93410067484407, + "c2": 3.17817463276959, + "c3": 12.327420448845558, + "c4": -11.51047287609413, + "c5": 20.757244003563706, + "c6": 10.156792041407307, + "c7": -18.515715069598585 }, - "vertexSeeds": { - "c1": 5.4333428207844126, - "c2": 5.3004074515849595, - "c3": 5.41445688115739, - "c4": 5.47041225442806, - "c5": 4.9673628609519325, - "c6": 5.268730720332246, - "c7": 5.039412375897926 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382811, + "c3": 6.541840036985665, + "c4": 5.23347202958854, + "c5": 3.9251040221913955, + "c6": 2.61673601479427, + "c7": 1.3083680073971253 }, "rgb": [86, 146, 138] }, @@ -449691,23 +449691,23 @@ "year": 1829, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": -19.709288515712007, - "c2": 14.117251568606012, - "c3": 6.087565383958783, - "c4": -21.102062715011666, - "c5": 5.05950309625128, - "c6": -2.3560505384422363, - "c7": -7.0700690239061 + "points": { + "c1": -22.83905911867996, + "c2": 18.693517826508117, + "c3": 0.01842305648722231, + "c4": -27.329259508766444, + "c5": 16.32980842404579, + "c6": -12.955340841946668, + "c7": 13.372494905239012 }, - "vertexSeeds": { - "c1": 6.435382364636405, - "c2": 5.916658624112847, - "c3": 6.095655403287704, - "c4": 6.27696767250633, - "c5": 5.860717043650961, - "c6": 5.991892472628684, - "c7": 6.368616405454085 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661575, + "c4": 6.158113730929257, + "c5": 4.618585298196956, + "c6": 3.0790568654646377, + "c7": 1.5395284327323189 }, "rgb": [86, 146, 138] }, @@ -449718,23 +449718,23 @@ "year": 1829, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 7.89574972689914, - "c2": 12.802821619386023, - "c3": 25.737612943014824, - "c4": -4.177744469091515, - "c5": 21.02674940892114, - "c6": -13.605502252867417, - "c7": -13.543221796971087 + "points": { + "c1": 10.52297177071106, + "c2": -22.34734511238003, + "c3": 0.4742294539466769, + "c4": 12.250338684034297, + "c5": -16.244246767604288, + "c6": 8.312634517945064, + "c7": -2.264552625991719 }, - "vertexSeeds": { - "c1": 5.376928389286756, - "c2": 5.482482768835814, - "c3": 5.3115039308854985, - "c4": 5.4462192162756535, - "c5": 5.276514331001905, - "c6": 5.269134993333126, - "c7": 5.237084960801251 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -449745,23 +449745,23 @@ "year": 1829, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 6.35096508565907, - "c2": -18.891068567784558, - "c3": -14.527638853456422, - "c4": -2.128169945333319, - "c5": 16.91602867827557, - "c6": 3.5112204568547547, - "c7": 1.5957599332430839 + "points": { + "c1": -11.044086353630963, + "c2": 13.97166618326563, + "c3": -5.934180517251129, + "c4": 23.160882695097957, + "c5": -18.737256853701393, + "c6": 23.94599998016884, + "c7": 14.465445213049545 }, - "vertexSeeds": { - "c1": 6.865081206642503, - "c2": 6.854782314607628, - "c3": 6.885343012218971, - "c4": 6.809070641301847, - "c5": 6.902451478439442, - "c6": 6.803320665038715, - "c7": 6.9081452348169465 + "offsets": { + "c1": 11.553398058252426, + "c2": 9.90291262135927, + "c3": 8.252427184466004, + "c4": 6.601941747572847, + "c5": 4.95145631067958, + "c6": 3.3009708737864236, + "c7": 1.6504854368932662 }, "rgb": [77, 76, 132] }, @@ -449772,23 +449772,23 @@ "year": 1829, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 25.426464359670128, - "c2": -21.174697841524566, - "c3": 31.28976853806428, - "c4": -32.02865216335463, - "c5": 32.72133866029057, - "c6": 30.020093856825724, - "c7": 5.71383164976028 + "points": { + "c1": 26.13058885201685, + "c2": 33.347530990933876, + "c3": 28.567360700261126, + "c4": -20.515198335147232, + "c5": 12.74920830869555, + "c6": 6.01033248148029, + "c7": -32.09928162292536 }, - "vertexSeeds": { - "c1": 6.437797987577086, - "c2": 6.853208502750509, - "c3": 7.089018514135094, - "c4": 6.717114709586701, - "c5": 6.510038947226559, - "c6": 6.511993378394541, - "c7": 6.944048156771957 + "offsets": { + "c1": 12.006472491909385, + "c2": 10.291262135922334, + "c3": 8.576051779935284, + "c4": 6.860841423948217, + "c5": 5.145631067961167, + "c6": 3.4304207119741177, + "c7": 1.7152103559870675 }, "rgb": [77, 76, 132] }, @@ -449799,23 +449799,23 @@ "year": 1829, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -9.24335113166984, - "c2": -9.520382452808686, - "c3": -13.519369896700042, - "c4": 3.0248153740379706, - "c5": 20.20641342321789, - "c6": -23.37158533090812, - "c7": -20.01606905311432 + "points": { + "c1": -3.1061728768619403, + "c2": 15.62351479972665, + "c3": 4.672218823648102, + "c4": 16.18049120851751, + "c5": -17.000954441371004, + "c6": -21.607017748008726, + "c7": 0.8425065726029928 }, - "vertexSeeds": { - "c1": 5.321108576237448, - "c2": 5.383981165807375, - "c3": 5.476942447222372, - "c4": 5.248236918449702, - "c5": 5.349433231396641, - "c6": 5.234654247606117, - "c7": 5.246537300622734 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -449826,23 +449826,23 @@ "year": 1829, "resistanceReported": false, "duration": 22204800, - "curveSeeds": { - "c1": 28.77575469042543, - "c2": -3.752211975514566, - "c3": 34.059689729698746, - "c4": 17.814097811245354, - "c5": 24.16025619470261, - "c6": 7.3984610099918555, - "c7": -24.801790199570338 + "points": { + "c1": 18.265394042112668, + "c2": 9.536658917934048, + "c3": -21.358387892594244, + "c4": -25.76709288782998, + "c5": -16.322459316762593, + "c6": -32.540151996293076, + "c7": -10.603044478684513 }, - "vertexSeeds": { - "c1": 9.041888557847074, - "c2": 8.682769269957074, - "c3": 8.734459668471757, - "c4": 9.16467136819937, - "c5": 8.70304896004018, - "c6": 9.484934859929009, - "c7": 8.633344663508945 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -449853,23 +449853,23 @@ "year": 1829, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 17.535794240923988, - "c2": -10.254045983333945, - "c3": -20.886678726458744, - "c4": 25.15318447069036, - "c5": -20.699263608369662, - "c6": 13.419285758438814, - "c7": 4.053375583350661 + "points": { + "c1": 12.703107012624795, + "c2": -24.93737443399624, + "c3": -28.737282201758568, + "c4": -11.42516134880222, + "c5": 29.740361627361832, + "c6": 1.0667945005136268, + "c7": -27.37380067098249 }, - "vertexSeeds": { - "c1": 5.247917791826692, - "c2": 5.137926365069894, - "c3": 5.154148533092031, - "c4": 5.2617252573039295, - "c5": 5.32084337145897, - "c6": 5.097929297287825, - "c7": 4.800222493369694 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221911, + "c3": 6.449375866851589, + "c4": 5.159500693481282, + "c5": 3.8696255201109593, + "c6": 2.579750346740637, + "c7": 1.2898751733703224 }, "rgb": [58, 15, 49] }, @@ -449880,23 +449880,23 @@ "year": 1829, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": 24.006494769650722, - "c2": -13.952475038054398, - "c3": -27.170261308459065, - "c4": -6.96632642289747, - "c5": 12.273954058701193, - "c6": -2.78805626109029, - "c7": 12.787977881468628 + "points": { + "c1": -24.928131018199995, + "c2": -27.937975110012573, + "c3": 16.958449813928752, + "c4": -7.7867994358150305, + "c5": 26.5525118721364, + "c6": 22.494264464755922, + "c7": -27.100640335247597 }, - "vertexSeeds": { - "c1": 6.628854868638079, - "c2": 6.536544494061101, - "c3": 6.63227012879526, - "c4": 6.553410163557042, - "c5": 6.611489533344917, - "c6": 6.551421016081357, - "c7": 6.608038002156043 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.54230235783632, + "c3": 7.951918631530309, + "c4": 6.361534905224235, + "c5": 4.77115117891816, + "c6": 3.180767452612085, + "c7": 1.5903837263060745 }, "rgb": [77, 76, 132] }, @@ -449907,23 +449907,23 @@ "year": 1829, "resistanceReported": false, "duration": 11404800, - "curveSeeds": { - "c1": -3.0957738150782745, - "c2": 8.32215947039726, - "c3": -20.474986348289107, - "c4": 12.258664794517294, - "c5": -14.257404930782045, - "c6": 22.037157464794298, - "c7": -19.849096068193703 + "points": { + "c1": -17.510995129408442, + "c2": -22.36262329268352, + "c3": -13.03800779283379, + "c4": 9.710047850340217, + "c5": -23.903696480699438, + "c6": 3.9301119399494517, + "c7": 18.385149416561553 }, - "vertexSeeds": { - "c1": 8.533522026682194, - "c2": 8.576062213092328, - "c3": 8.414820037398988, - "c4": 8.230033652408867, - "c5": 8.69156622993349, - "c6": 8.327672285530822, - "c7": 8.657037958675605 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.510402219140081, + "c3": 10.425335182616736, + "c4": 8.340268146093388, + "c5": 6.255201109570041, + "c6": 4.170134073046694, + "c7": 2.085067036523347 }, "rgb": [238, 201, 159] }, @@ -449934,23 +449934,23 @@ "year": 1829, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -26.388462841336302, - "c2": -15.05106066968381, - "c3": 19.463468832156977, - "c4": -29.4783053248879, - "c5": -8.302921663485225, - "c6": 15.04920300060747, - "c7": 16.622807727200225 + "points": { + "c1": 29.693327652545847, + "c2": -27.747000618050652, + "c3": -35.029408055004424, + "c4": 5.571780982175426, + "c5": -14.88782152064313, + "c6": -12.473576243456929, + "c7": -30.575933653452807 }, - "vertexSeeds": { - "c1": 11.65032279492703, - "c2": 11.865808461737785, - "c3": 11.472849963276186, - "c4": 11.986278519403264, - "c5": 11.466261470615315, - "c6": 11.541021286412832, - "c7": 12.061109050089737 + "offsets": { + "c1": 20.93851132686084, + "c2": 17.947295423023597, + "c3": 14.956079519186309, + "c4": 11.964863615349064, + "c5": 8.973647711511777, + "c6": 5.982431807674532, + "c7": 2.9912159038372854 }, "rgb": [86, 146, 138] }, @@ -449961,23 +449961,23 @@ "year": 1829, "resistanceReported": false, "duration": 28771200, - "curveSeeds": { - "c1": 5.234408856741993, - "c2": -39.98074994945375, - "c3": 4.826878385837155, - "c4": 25.52464816548536, - "c5": 7.684004921363702, - "c6": -9.535466636202095, - "c7": 13.540422899996003 + "points": { + "c1": -5.248770572979417, + "c2": -15.906639066874583, + "c3": 9.327005648963336, + "c4": -9.32009587864546, + "c5": 13.245329637219456, + "c6": 35.167954717791304, + "c7": 43.338133439343025 }, - "vertexSeeds": { - "c1": 10.69462470081577, - "c2": 9.832634578930666, - "c3": 10.247042638267036, - "c4": 10.501439357167468, - "c5": 10.395704740938626, - "c6": 10.41293217990309, - "c7": 9.923887347310771 + "offsets": { + "c1": 17.928802588996763, + "c2": 15.367545076282958, + "c3": 12.80628756356911, + "c4": 10.245030050855307, + "c5": 7.683772538141458, + "c6": 5.122515025427654, + "c7": 2.5612575127138046 }, "rgb": [222, 0, 59] }, @@ -449988,23 +449988,23 @@ "year": 1829, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": 9.476897638057768, - "c2": -22.849605312498063, - "c3": 17.161882330943453, - "c4": 20.454155493092404, - "c5": -4.697690621236379, - "c6": -12.19264868339118, - "c7": -26.59380522068679 + "points": { + "c1": -0.6901064151426723, + "c2": 19.34178283658552, + "c3": -13.516074059368314, + "c4": 25.270598412151738, + "c5": -2.302993376250903, + "c6": 30.334283175293113, + "c7": -6.7488818302596165 }, - "vertexSeeds": { - "c1": 5.800671969130493, - "c2": 5.804647998651378, - "c3": 5.435324984838621, - "c4": 5.608241482445247, - "c5": 5.9384522522509915, - "c6": 5.399486670769767, - "c7": 5.862521880880864 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -450015,23 +450015,23 @@ "year": 1829, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 20.734692419068054, - "c2": -12.58768848638615, - "c3": -18.8701787627988, - "c4": 12.226021892737954, - "c5": 7.857230122329675, - "c6": 27.96807909511338, - "c7": -10.872929396205578 + "points": { + "c1": -27.978147653013437, + "c2": 22.09908276558248, + "c3": -34.517373442791474, + "c4": -30.77229070730568, + "c5": -32.93832047478585, + "c6": 33.620807664305126, + "c7": 27.467316121058673 }, - "vertexSeeds": { - "c1": 6.151142039477525, - "c2": 6.130770267733439, - "c3": 6.1079020279585485, - "c4": 5.798038700706502, - "c5": 5.926510317878009, - "c6": 5.856548244277038, - "c7": 5.780724596299437 + "offsets": { + "c1": 10.388349514563107, + "c2": 8.904299583911238, + "c3": 7.420249653259369, + "c4": 5.9361997226075, + "c5": 4.452149791955632, + "c6": 2.9680998613037377, + "c7": 1.4840499306518689 }, "rgb": [238, 201, 159] }, @@ -450042,23 +450042,23 @@ "year": 1830, "resistanceReported": false, "duration": 32227200, - "curveSeeds": { - "c1": 23.809956295763598, - "c2": 45.145334504298575, - "c3": -16.220635331700034, - "c4": -15.590956750621949, - "c5": -41.112629273527276, - "c6": -9.982827541434972, - "c7": -5.705228191637211 + "points": { + "c1": 30.40716758209537, + "c2": 15.66970924177783, + "c3": -24.85470275363747, + "c4": 17.90636357928868, + "c5": 31.963098353914262, + "c6": 25.579282523386027, + "c7": -13.932364008688438 }, - "vertexSeeds": { - "c1": 4.671960440041947, - "c2": 4.887336348209195, - "c3": 4.873322543532476, - "c4": 4.856637400431663, - "c5": 4.7997529419427005, - "c6": 4.601398883730165, - "c7": 4.8877193519350985 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216367, + "c3": 5.871474803513641, + "c4": 4.697179842810904, + "c5": 3.522884882108178, + "c6": 2.348589921405452, + "c7": 1.174294960702726 }, "rgb": [58, 15, 49] }, @@ -450069,23 +450069,23 @@ "year": 1829, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": -18.120894685982996, - "c2": -2.49255878009469, - "c3": 28.382248288406892, - "c4": -18.704620593456596, - "c5": -21.095946546391684, - "c6": -14.755386599598815, - "c7": 9.152419763509286 + "points": { + "c1": 0.022932276739361157, + "c2": -15.367533388286457, + "c3": -24.17366216050894, + "c4": 7.334617928927614, + "c5": 0.19796434616482372, + "c6": -1.0120805559609352, + "c7": -31.006896289260517 }, - "vertexSeeds": { - "c1": 3.046091170933115, - "c2": 3.6640371265579796, - "c3": 4.004770209136059, - "c4": 3.3410815325220686, - "c5": 3.126971356348079, - "c6": 3.9341874746678354, - "c7": 3.7139254299807956 + "offsets": { + "c1": 6.763754045307444, + "c2": 5.79750346740638, + "c3": 4.831252889505317, + "c4": 3.865002311604252, + "c5": 2.8987517337031883, + "c6": 1.9325011558021243, + "c7": 0.9662505779010603 }, "rgb": [77, 76, 132] }, @@ -450096,23 +450096,23 @@ "year": 1829, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": 10.420629717903687, - "c2": -12.029400609727702, - "c3": -0.950524683843426, - "c4": -17.176195736679805, - "c5": 36.209573299241264, - "c6": 6.866893066774409, - "c7": -8.534328364692623 + "points": { + "c1": -34.96517783352419, + "c2": 21.243507695197152, + "c3": -14.357480941296998, + "c4": -30.584075580329788, + "c5": 28.311427697421585, + "c6": -14.623875023568022, + "c7": -21.001351535377655 }, - "vertexSeeds": { - "c1": 7.043864272720698, - "c2": 7.3220427384900475, - "c3": 7.138332381707127, - "c4": 7.538720462438447, - "c5": 7.094693567812697, - "c6": 7.798088771318765, - "c7": 7.408191983009997 + "offsets": { + "c1": 13.106796116504855, + "c2": 11.234396671289877, + "c3": 9.361997226074902, + "c4": 7.489597780859908, + "c5": 5.61719833564493, + "c6": 3.744798890429954, + "c7": 1.872399445214977 }, "rgb": [77, 76, 132] }, @@ -450123,23 +450123,23 @@ "year": 1829, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 1.930885592842337, - "c2": -16.54401204128113, - "c3": -15.311959424477749, - "c4": -5.946034145067777, - "c5": 1.9452208947668197, - "c6": 32.48394820632079, - "c7": 28.151669490334065 + "points": { + "c1": 17.61745911991668, + "c2": 7.695492070287862, + "c3": 31.571576164484938, + "c4": -10.079072421843115, + "c5": 4.326277139263951, + "c6": 33.90264842589784, + "c7": -20.11329671864909 }, - "vertexSeeds": { - "c1": 7.2422808309738365, - "c2": 7.246906969402802, - "c3": 7.229977727335775, - "c4": 7.23067683047796, - "c5": 7.211062953177259, - "c6": 7.2241314855231185, - "c7": 7.2416695504868 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043046, + "c3": 8.645399907535928, + "c4": 6.9163199260288115, + "c5": 5.187239944521351, + "c6": 3.458159963014234, + "c7": 1.729079981507117 }, "rgb": [238, 201, 159] }, @@ -450150,23 +450150,23 @@ "year": 1830, "resistanceReported": false, "duration": 40003200, - "curveSeeds": { - "c1": -26.534359871848, - "c2": 38.94030668723383, - "c3": -53.03499326505463, - "c4": 46.20795939523251, - "c5": 30.773296210408418, - "c6": -42.641955167033736, - "c7": -8.976924991088062 + "points": { + "c1": 54.11984006528742, + "c2": 52.26649305619266, + "c3": -24.828485445993326, + "c4": -12.399142091972095, + "c5": -2.6588520043273007, + "c6": -14.390620467272399, + "c7": 41.15830902876502 }, - "vertexSeeds": { - "c1": 8.02994039211224, - "c2": 7.853910722093779, - "c3": 7.959388503574331, - "c4": 7.940813731011494, - "c5": 8.027945880791949, - "c6": 7.886375496231885, - "c7": 7.953464513460466 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.56726768377255, + "c3": 9.639389736477098, + "c4": 7.711511789181686, + "c5": 5.783633841886275, + "c6": 3.855755894590822, + "c7": 1.927877947295411 }, "rgb": [238, 201, 159] }, @@ -450177,23 +450177,23 @@ "year": 1829, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 24.800427284481252, - "c2": 5.920481437801442, - "c3": -4.783161698389016, - "c4": 9.491188399468335, - "c5": -7.321107099089026, - "c6": 31.400444060773374, - "c7": 18.147333751368727 + "points": { + "c1": -5.10983450563257, + "c2": 36.10299514098879, + "c3": -22.158538926409665, + "c4": 27.857881247409885, + "c5": -38.63682533462002, + "c6": -12.134829388650466, + "c7": 40.10735795236196 }, - "vertexSeeds": { - "c1": 2.5914062712434944, - "c2": 2.5340746438994355, - "c3": 2.653695539637787, - "c4": 2.7273749156249916, - "c5": 2.562099607632366, - "c6": 2.7113513021231497, - "c7": 2.70438220286739 + "offsets": { + "c1": 5.11326860841424, + "c2": 4.382801664355064, + "c3": 3.6523347202958885, + "c4": 2.9218677762367076, + "c5": 2.191400832177532, + "c6": 1.4609338881183564, + "c7": 0.7304669440591808 }, "rgb": [238, 201, 159] }, @@ -450204,23 +450204,23 @@ "year": 1830, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -29.193459058352037, - "c2": -32.68009542789156, - "c3": -30.866291988358867, - "c4": -1.821405096314507, - "c5": -12.484190571382193, - "c6": 23.453542354199882, - "c7": -41.82810324962719 + "points": { + "c1": -5.4515796543174275, + "c2": -24.025710976186453, + "c3": -7.182816673564709, + "c4": 21.37385058784575, + "c5": 13.602440298428043, + "c6": -1.1034840426344559, + "c7": -11.271927485862264 }, - "vertexSeeds": { - "c1": 3.214178600266095, - "c2": 3.240134905161395, - "c3": 3.1528186461470322, - "c4": 2.929406528810361, - "c5": 3.164890293901887, - "c6": 3.2359642691326087, - "c7": 3.0483596400916806 + "offsets": { + "c1": 5.436893203883495, + "c2": 4.660194174757285, + "c3": 3.883495145631064, + "c4": 3.106796116504853, + "c5": 2.3300970873786424, + "c6": 1.5533980582524312, + "c7": 0.776699029126211 }, "rgb": [77, 76, 132] }, @@ -450231,23 +450231,23 @@ "year": 1829, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -37.50453544264585, - "c2": -10.39189905078426, - "c3": 6.79615189551275, - "c4": -16.4174987937491, - "c5": -8.243767845349979, - "c6": -35.81839586807176, - "c7": -11.357353313950355 + "points": { + "c1": -2.301387895764435, + "c2": 23.840297032932384, + "c3": -40.60988623507193, + "c4": 23.16044419211159, + "c5": 6.77800113031698, + "c6": -1.574903920346273, + "c7": -34.60693038896688 }, - "vertexSeeds": { - "c1": 5.418054836730408, - "c2": 5.240568729660008, - "c3": 5.256954220867487, - "c4": 5.2309956002338165, - "c5": 5.364255479419915, - "c6": 5.315309987729827, - "c7": 5.267573036137695 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -450258,23 +450258,23 @@ "year": 1829, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -5.99244855896179, - "c2": 10.496179300607892, - "c3": -7.2348833982658824, - "c4": -8.777347736095198, - "c5": -4.711619935861535, - "c6": 4.469037447365309, - "c7": -5.613315438945772 + "points": { + "c1": 23.69693345712048, + "c2": 8.030247120613389, + "c3": 20.96535603551127, + "c4": 9.299311776169937, + "c5": 15.522700254089429, + "c6": -6.875317774359953, + "c7": -17.89462386511303 }, - "vertexSeeds": { - "c1": 4.966767756500429, - "c2": 4.946548104967014, - "c3": 4.9414334098105055, - "c4": 4.958528727045013, - "c5": 4.936816316600498, - "c6": 4.925390510701842, - "c7": 4.944098065519148 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517336987, + "c3": 5.94082293111426, + "c4": 4.752658344891377, + "c5": 3.5644937586684935, + "c6": 2.3763291724456885, + "c7": 1.1881645862228047 }, "rgb": [58, 15, 49] }, @@ -450285,23 +450285,23 @@ "year": 1829, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 18.187660647049398, - "c2": -11.235946941372134, - "c3": -6.9048388961879645, - "c4": 29.661709996851087, - "c5": 14.32588785905542, - "c6": -4.685527598323315, - "c7": 25.019513739816404 + "points": { + "c1": -28.413501149158463, + "c2": 10.345050995042605, + "c3": 19.845694947943244, + "c4": -6.526541945187226, + "c5": -1.7163155555472116, + "c6": 35.578284981599296, + "c7": -25.29033073121557 }, - "vertexSeeds": { - "c1": 5.867655094877386, - "c2": 5.965683648484123, - "c3": 5.7077020717853255, - "c4": 5.7465971513196035, - "c5": 6.028185749886829, - "c6": 5.99737543272063, - "c7": 6.1258984122211215 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750346, + "c3": 7.3277854831252895, + "c4": 5.862228386500231, + "c5": 4.396671289875173, + "c6": 2.9311141932501155, + "c7": 1.4655570966250577 }, "rgb": [58, 15, 49] }, @@ -450312,23 +450312,23 @@ "year": 1829, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 33.81405447716037, - "c2": 11.08009179524224, - "c3": 4.817139430590139, - "c4": 5.57988381809642, - "c5": -2.1260426640082812, - "c6": 25.908032154724566, - "c7": -31.121368975186368 + "points": { + "c1": -29.951311089288268, + "c2": 36.73327787779611, + "c3": 36.33388880634132, + "c4": 33.97348435865477, + "c5": -19.196552689214293, + "c6": 16.698675294332695, + "c7": 15.831152837918118 }, - "vertexSeeds": { - "c1": 8.942683347870366, - "c2": 9.042893918403133, - "c3": 8.955131463740862, - "c4": 9.007300559539827, - "c5": 8.926412737555662, - "c6": 8.987998244606851, - "c7": 9.011779237284182 + "offsets": { + "c1": 15.145631067961165, + "c2": 12.98196948682381, + "c3": 10.818307905686563, + "c4": 8.654646324549207, + "c5": 6.490984743411959, + "c6": 4.327323162274603, + "c7": 2.1636615811373554 }, "rgb": [77, 76, 132] }, @@ -450339,23 +450339,23 @@ "year": 1829, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 14.052383933259176, - "c2": -2.4100012264927955, - "c3": -4.417406138976805, - "c4": 11.384516892836867, - "c5": -18.37104474072534, - "c6": -0.499312983964181, - "c7": 25.047470422355484 + "points": { + "c1": 7.304567714712032, + "c2": 27.866522413866992, + "c3": 3.0191374064699446, + "c4": -25.102992311389777, + "c5": -8.55389509706767, + "c6": 13.675010948776094, + "c7": 23.834113433928554 }, - "vertexSeeds": { - "c1": 5.54716814892155, - "c2": 5.614967856303161, - "c3": 5.902736922109717, - "c4": 5.66603442271101, - "c5": 5.7744440186272294, - "c6": 5.376797523552931, - "c7": 5.887459692353679 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -450366,23 +450366,23 @@ "year": 1829, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 16.198161177008238, - "c2": -27.373483747866242, - "c3": -15.40733863991103, - "c4": -23.873716649351003, - "c5": 16.567040709082583, - "c6": -27.425225395229987, - "c7": 22.96486101674799 + "points": { + "c1": -1.2386371312568834, + "c2": -4.811342462479171, + "c3": -16.36511517264333, + "c4": -0.9126548387146016, + "c5": 23.131254155226145, + "c6": -23.81534444184292, + "c7": -12.335493173373091 }, - "vertexSeeds": { - "c1": 5.230756297472651, - "c2": 5.274041128750569, - "c3": 5.4924498344044, - "c4": 5.266348642393215, - "c5": 5.326653210320112, - "c6": 5.415140517911648, - "c7": 5.242875808897226 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -450393,23 +450393,23 @@ "year": 1829, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -16.371255378540372, - "c2": 22.11815921404173, - "c3": -10.868078203857774, - "c4": 19.348660355807926, - "c5": 15.004643273744794, - "c6": 2.4649645939703184, - "c7": 3.1991257213031368 + "points": { + "c1": -1.2694750895279086, + "c2": -33.404446905321514, + "c3": 14.464765018460092, + "c4": -7.70326312892464, + "c5": 5.906704641562229, + "c6": -27.12151034665181, + "c7": -28.700733698630323 }, - "vertexSeeds": { - "c1": 8.389657100119656, - "c2": 8.336152739284252, - "c3": 8.861571685545861, - "c4": 8.320974875582843, - "c5": 8.513383378944003, - "c6": 8.683229190338604, - "c7": 8.520304038546968 + "offsets": { + "c1": 14.919093851132686, + "c2": 12.787794729542302, + "c3": 10.65649560795192, + "c4": 8.525196486361535, + "c5": 6.393897364771151, + "c6": 4.262598243180768, + "c7": 2.131299121590384 }, "rgb": [86, 146, 138] }, @@ -450420,23 +450420,23 @@ "year": 1830, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 25.913706299141076, - "c2": -32.36544298600823, - "c3": 8.126405391704921, - "c4": 27.337867790011806, - "c5": 11.033284441546186, - "c6": -13.24911028118581, - "c7": -27.679360779901053 + "points": { + "c1": 40.52872908800668, + "c2": -33.49548707997668, + "c3": -45.73542782211016, + "c4": 18.988154276393836, + "c5": 1.5069241802990945, + "c6": -28.095666775417005, + "c7": -19.466087407649812 }, - "vertexSeeds": { - "c1": 4.71321603852632, - "c2": 4.685343164294975, - "c3": 4.685699533046132, - "c4": 4.65455505362968, - "c5": 4.671456068640105, - "c6": 4.601554478457514, - "c7": 4.6093041940605834 + "offsets": { + "c1": 7.8964401294498385, + "c2": 6.768377253814147, + "c3": 5.640314378178457, + "c4": 4.512251502542765, + "c5": 3.3841886269070733, + "c6": 2.2561257512713824, + "c7": 1.1280628756356912 }, "rgb": [77, 76, 132] }, @@ -450447,23 +450447,23 @@ "year": 1829, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 7.72519535110623, - "c2": -26.624422691270563, - "c3": 0.8589044307368141, - "c4": 22.875708940563158, - "c5": -24.303175756590697, - "c6": -29.294905233169292, - "c7": 12.132385018965444 + "points": { + "c1": -14.443502769164727, + "c2": -7.883588116191358, + "c3": 11.416783245439383, + "c4": 26.061681848949178, + "c5": -8.922706237699693, + "c6": 16.60137409786823, + "c7": -15.284442868273196 }, - "vertexSeeds": { - "c1": 8.840654221613018, - "c2": 9.4365546170199, - "c3": 8.75387322441205, - "c4": 9.065670365358935, - "c5": 9.208544223849064, - "c6": 8.867086923022809, - "c7": 9.172612924820116 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -450474,23 +450474,23 @@ "year": 1829, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 14.041226444088203, - "c2": 19.868573557574592, - "c3": -12.023452624103413, - "c4": 10.515241170247648, - "c5": 33.395435078002954, - "c6": -3.7594806810566723, - "c7": -33.93124039199158 + "points": { + "c1": -20.79320878848183, + "c2": -0.29031429484885507, + "c3": 36.69921628211086, + "c4": -35.08719766629194, + "c5": -39.75783465269734, + "c6": 21.33746649300562, + "c7": -26.863453241564052 }, - "vertexSeeds": { - "c1": 9.075657913650462, - "c2": 9.031626274079212, - "c3": 9.10417253866776, - "c4": 9.017737529047556, - "c5": 9.15406477737298, - "c6": 9.107148239360999, - "c7": 9.158966878624572 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024942, + "c3": 10.933888118354176, + "c4": 8.747110494683325, + "c5": 6.560332871012471, + "c6": 4.373555247341618, + "c7": 2.186777623670853 }, "rgb": [58, 15, 49] }, @@ -450501,23 +450501,23 @@ "year": 1830, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -21.68904060860155, - "c2": -24.945792483683654, - "c3": 9.209138984254373, - "c4": 0.16335109128795722, - "c5": -20.80992449413473, - "c6": 12.739526702959282, - "c7": -30.164586611032817 + "points": { + "c1": -45.27879709802601, + "c2": -7.918326910434359, + "c3": 3.5251981788630005, + "c4": 4.038386092513811, + "c5": 19.593223706426272, + "c6": -33.20991451982263, + "c7": -46.15053787155731 }, - "vertexSeeds": { - "c1": 9.265187057420833, - "c2": 9.38120137155932, - "c3": 9.068716508050189, - "c4": 9.32998386352003, - "c5": 9.248680642661997, - "c6": 9.167555937380422, - "c7": 9.23550935178022 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -450528,23 +450528,23 @@ "year": 1829, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 1.0395085544174592, - "c2": 13.829048432711673, - "c3": 18.533457538905104, - "c4": 5.529167600977942, - "c5": -4.539563365982573, - "c6": -8.916737989609594, - "c7": 2.38719495875846 + "points": { + "c1": 5.1247042804318355, + "c2": 15.94764918157513, + "c3": 27.20578182659687, + "c4": 18.25685996005415, + "c5": 23.808000238855286, + "c6": -4.984168396260635, + "c7": -3.6901785619699794 }, - "vertexSeeds": { - "c1": 5.396416370130703, - "c2": 5.282893495297011, - "c3": 5.47465926997968, - "c4": 5.271223939518141, - "c5": 5.481292486296851, - "c6": 5.281765794737754, - "c7": 5.259189899080017 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -450555,23 +450555,23 @@ "year": 1829, "resistanceReported": false, "duration": 28252800, - "curveSeeds": { - "c1": -30.431353916995953, - "c2": -40.293065142541444, - "c3": 3.161497079918867, - "c4": -23.87262130019536, - "c5": -19.146944034231662, - "c6": 21.10119323011159, - "c7": -19.527540882232994 + "points": { + "c1": 14.406483560247189, + "c2": 37.30253298383948, + "c3": 25.852439870011686, + "c4": 25.88326934532831, + "c5": -8.288473470545654, + "c6": 8.421343999745531, + "c7": 12.208552364653343 }, - "vertexSeeds": { - "c1": 8.142452498751407, - "c2": 8.201460831698212, - "c3": 8.278781434627833, - "c4": 8.145631622770589, - "c5": 8.268523585870938, - "c6": 8.32494656763093, - "c7": 8.21079598474532 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295402, + "c3": 9.939898289412888, + "c4": 7.951918631530294, + "c5": 5.963938973647701, + "c6": 3.975959315765107, + "c7": 1.9879796578825932 }, "rgb": [238, 201, 159] }, @@ -450582,23 +450582,23 @@ "year": 1830, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": -31.580788557492475, - "c2": -6.172916793516421, - "c3": -19.445614976682016, - "c4": 5.131280010112889, - "c5": -33.53035757744141, - "c6": 21.835525349208098, - "c7": 39.738563807516044 + "points": { + "c1": -38.77479420203907, + "c2": -31.11022791263763, + "c3": -12.475395926453217, + "c4": -4.701076852318373, + "c5": -36.62112723306939, + "c6": 2.938871878606811, + "c7": 19.603701590754582 }, - "vertexSeeds": { - "c1": 5.267187192343563, - "c2": 5.316043438235119, - "c3": 5.232523446256498, - "c4": 5.357157619787894, - "c5": 5.413950433113587, - "c6": 5.321883077587026, - "c7": 5.342226630538518 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -450609,23 +450609,23 @@ "year": 1829, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 21.2170626500614, - "c2": -8.803992505145509, - "c3": -11.673766340826774, - "c4": -24.276646551568504, - "c5": 30.256882104500896, - "c6": 11.886048067752078, - "c7": 19.018719423443798 + "points": { + "c1": 1.0243228859460913, + "c2": -39.92947689662365, + "c3": -15.855805808818829, + "c4": -18.99198589434037, + "c5": -28.64739940297149, + "c6": 23.404270536110936, + "c7": 9.948439504388674 }, - "vertexSeeds": { - "c1": 8.426865486755394, - "c2": 8.577013832291527, - "c3": 8.368790922756725, - "c4": 8.391679278156788, - "c5": 8.363081784228369, - "c6": 8.316950060062782, - "c7": 8.175214937684022 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.45492371705964, + "c3": 10.3791030975497, + "c4": 8.30328247803976, + "c5": 6.22746185852982, + "c6": 4.15164123901988, + "c7": 2.07582061950994 }, "rgb": [77, 76, 132] }, @@ -450636,23 +450636,23 @@ "year": 1829, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 3.82520900410222, - "c2": -7.20341168494231, - "c3": 25.33217291341083, - "c4": -23.650958237543083, - "c5": 25.12202950533746, - "c6": -23.789404593117045, - "c7": 21.9221857370418 + "points": { + "c1": -17.750585668325787, + "c2": -3.5360903643983193, + "c3": 31.636216596002413, + "c4": 22.03241361818575, + "c5": -3.4832815428448285, + "c6": -35.73726338349608, + "c7": -22.83936198888859 }, - "vertexSeeds": { - "c1": 7.601623278622373, - "c2": 7.505733914836303, - "c3": 7.406689922048928, - "c4": 7.332898554672687, - "c5": 7.445058052911654, - "c6": 7.504281151239599, - "c7": 7.482334481287194 + "offsets": { + "c1": 12.718446601941746, + "c2": 10.901525658807191, + "c3": 9.084604715672683, + "c4": 7.267683772538128, + "c5": 5.45076282940362, + "c6": 3.633841886269064, + "c7": 1.8169209431345559 }, "rgb": [58, 15, 49] }, @@ -450663,23 +450663,23 @@ "year": 1829, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 27.13286892948289, - "c2": -5.705807848258793, - "c3": 29.221428204856295, - "c4": -7.0983002166752165, - "c5": 6.670009070411766, - "c6": 4.753937674617411, - "c7": 8.238348516971548 + "points": { + "c1": -16.95645887132664, + "c2": 26.964479311788907, + "c3": -29.7040313646407, + "c4": 29.612725053756364, + "c5": -7.389999640552855, + "c6": -5.495962763201938, + "c7": 36.65698582982394 }, - "vertexSeeds": { - "c1": 5.37294917674224, - "c2": 5.237779625867747, - "c3": 6.738813489645201, - "c4": 5.006033336692884, - "c5": 4.6803207746363515, - "c6": 6.348468129286692, - "c7": 4.878604062526214 + "offsets": { + "c1": 11.262135922330096, + "c2": 9.653259361997224, + "c3": 8.044382801664355, + "c4": 6.435506241331483, + "c5": 4.826629680998612, + "c6": 3.2177531206657415, + "c7": 1.6088765603328736 }, "rgb": [222, 0, 59] }, @@ -450690,23 +450690,23 @@ "year": 1829, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -29.175370646961863, - "c2": 30.16451538955998, - "c3": -4.6552374745445775, - "c4": 29.305476082764727, - "c5": 12.547993705013347, - "c6": -18.084220076621445, - "c7": -4.502784577016179 + "points": { + "c1": -16.71061358160711, + "c2": -3.20224385662474, + "c3": -7.678851789643144, + "c4": 11.796021629388392, + "c5": 11.744328396945363, + "c6": -2.455915293812822, + "c7": -9.377461284739223 }, - "vertexSeeds": { - "c1": 2.7383934066520514, - "c2": 2.748683830184295, - "c3": 2.6950981971448393, - "c4": 2.7756142917212916, - "c5": 2.7724694056802575, - "c6": 2.7542492670929657, - "c7": 2.639098915996888 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.9944521497919596, + "c3": 3.3287101248266233, + "c4": 2.6629680998613012, + "c5": 1.9972260748959798, + "c6": 1.3314840499306582, + "c7": 0.6657420249653218 }, "rgb": [238, 201, 159] }, @@ -450717,23 +450717,23 @@ "year": 1830, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -25.17768330149196, - "c2": -27.605003599283314, - "c3": 29.110762857436512, - "c4": 13.443103952684723, - "c5": -44.16489539701219, - "c6": 26.69868549065457, - "c7": -40.839939237781664 + "points": { + "c1": 2.511462485189419, + "c2": -35.78636729446673, + "c3": 44.840911801962605, + "c4": 18.40333401920917, + "c5": -34.25201310399248, + "c6": 45.46506538739412, + "c7": -37.29522552365047 }, - "vertexSeeds": { - "c1": 9.494113550021252, - "c2": 8.880326296509006, - "c3": 8.708347876179934, - "c4": 9.098557808154128, - "c5": 9.191864498620518, - "c6": 9.367475610496307, - "c7": 8.968450215344438 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -450744,23 +450744,23 @@ "year": 1829, "resistanceReported": false, "duration": 7689600, - "curveSeeds": { - "c1": 1.8882548602104876, - "c2": -2.63051570907942, - "c3": 15.73900272076644, - "c4": -4.167903058045308, - "c5": -11.977315526819083, - "c6": 15.450915181957544, - "c7": 5.882286143922478 + "points": { + "c1": -1.7107586866369644, + "c2": 19.968328584851523, + "c3": -7.779807333444408, + "c4": 1.3713503538419047, + "c5": 5.621779514666876, + "c6": -15.63324460601904, + "c7": -4.512910962869082 }, - "vertexSeeds": { - "c1": 6.874110851080252, - "c2": 6.821031522202839, - "c3": 6.8763899251221865, - "c4": 6.84234124051004, - "c5": 7.006125818419124, - "c6": 7.023145142353681, - "c7": 6.854527870437789 + "offsets": { + "c1": 11.941747572815533, + "c2": 10.235783633841875, + "c3": 8.529819694868255, + "c4": 6.823855755894597, + "c5": 5.117891816920937, + "c6": 3.4119278779473183, + "c7": 1.7059639389736592 }, "rgb": [222, 0, 59] }, @@ -450771,23 +450771,23 @@ "year": 1829, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -21.99145258864526, - "c2": 20.539822583887208, - "c3": -21.152310033867273, - "c4": 25.785800361454903, - "c5": -14.652576381636457, - "c6": 20.734748516644096, - "c7": 0.3013576233280446 + "points": { + "c1": 25.251524760510144, + "c2": 18.881421008096602, + "c3": 5.144499993361144, + "c4": 19.108177315486692, + "c5": 29.216571515093094, + "c6": -8.95663733083396, + "c7": -25.96578810097153 }, - "vertexSeeds": { - "c1": 7.30086449524251, - "c2": 7.251434657785974, - "c3": 7.406830477082117, - "c4": 7.455180571542057, - "c5": 7.220609570023716, - "c6": 7.840233265847345, - "c7": 7.592157225807699 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [222, 0, 59] }, @@ -450798,23 +450798,23 @@ "year": 1829, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -18.693813921891554, - "c2": 8.971258905249961, - "c3": 0.6653337569306395, - "c4": -10.819200833992852, - "c5": 22.717232981488095, - "c6": 14.238707856015182, - "c7": 18.482089750077947 + "points": { + "c1": 4.0846814331044214, + "c2": -16.786669011845575, + "c3": -12.465472307892416, + "c4": -24.64649926601373, + "c5": 21.027580497520262, + "c6": 7.96785082414781, + "c7": -19.37196985899209 }, - "vertexSeeds": { - "c1": 4.997456197451616, - "c2": 4.803006886508124, - "c3": 4.045626414003176, - "c4": 4.006353429035069, - "c5": 4.952798659047405, - "c6": 4.984828706993272, - "c7": 3.92065645814817 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497919, + "c3": 6.033287101248266, + "c4": 4.8266296809986144, + "c5": 3.6199722607489613, + "c6": 2.413314840499309, + "c7": 1.2066574202496525 }, "rgb": [238, 201, 159] }, @@ -450825,23 +450825,23 @@ "year": 1829, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 2.7616827437587403, - "c2": 18.122229590862993, - "c3": 19.209401263549516, - "c4": -20.0243352107623, - "c5": 18.632215832956128, - "c6": 9.885745849681904, - "c7": -24.498595952224317 + "points": { + "c1": 24.369815114582586, + "c2": -26.565369428876025, + "c3": 13.551549243626688, + "c4": 22.108476295064754, + "c5": -20.0246045941229, + "c6": -11.682592345237385, + "c7": -3.1534092903332187 }, - "vertexSeeds": { - "c1": 5.865873681273266, - "c2": 5.846586911639663, - "c3": 5.847356952199438, - "c4": 5.872293297333802, - "c5": 5.755777497182093, - "c6": 5.705019904688474, - "c7": 5.665851095979783 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -450852,23 +450852,23 @@ "year": 1829, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": 6.1790460027918, - "c2": 26.97902523670816, - "c3": -29.777787213619092, - "c4": -14.0358917361316, - "c5": -24.1571723847468, - "c6": 24.444680747970637, - "c7": -24.230251895426587 + "points": { + "c1": -28.105495465911755, + "c2": 7.479971658637638, + "c3": 31.754430196737943, + "c4": 29.681915006317, + "c5": -33.91964178763253, + "c6": 32.40295525869547, + "c7": -8.750354941750238 }, - "vertexSeeds": { - "c1": 4.924508780241341, - "c2": 4.834545993243806, - "c3": 5.053440315492547, - "c4": 4.728616973431088, - "c5": 4.475028208059394, - "c6": 4.912037880821286, - "c7": 5.051475720834938 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.406380027739248, + "c3": 6.171983356449378, + "c4": 4.937586685159504, + "c5": 3.7031900138696288, + "c6": 2.468793342579754, + "c7": 1.2343966712898797 }, "rgb": [86, 146, 138] }, @@ -450879,23 +450879,23 @@ "year": 1830, "resistanceReported": false, "duration": 29289600, - "curveSeeds": { - "c1": 27.408185878110174, - "c2": 35.4665836834656, - "c3": 3.0677648328215383, - "c4": -36.745565088575496, - "c5": -37.75305172195095, - "c6": -25.051836600163597, - "c7": -1.4877098279266008 + "points": { + "c1": -11.394305796130006, + "c2": 29.053706409227743, + "c3": 42.36779591943878, + "c4": 10.696302013778435, + "c5": 18.460189903454996, + "c6": -38.48013126095773, + "c7": 39.03869210243302 }, - "vertexSeeds": { - "c1": 5.463122812459305, - "c2": 5.3496818616188735, - "c3": 5.403831406548457, - "c4": 5.473270533673497, - "c5": 5.389337877373194, - "c6": 5.435613390537552, - "c7": 5.373963788760729 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -450906,23 +450906,23 @@ "year": 1830, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -34.30871863415705, - "c2": -11.587671508039499, - "c3": 3.785286258745849, - "c4": -12.597822216431148, - "c5": 7.610107968537022, - "c6": 34.1762094315223, - "c7": 28.949924071380998 + "points": { + "c1": 23.937255473393314, + "c2": 23.401547768383672, + "c3": -33.77320455758581, + "c4": 23.989747198209074, + "c5": -26.92417368988146, + "c6": -34.672708129618194, + "c7": -4.5150121777863035 }, - "vertexSeeds": { - "c1": 3.3130333383194612, - "c2": 3.5602707525193065, - "c3": 3.3405850132630786, - "c4": 3.407828682050358, - "c5": 3.6115740635642144, - "c6": 3.314622929550319, - "c7": 3.4398141746423527 + "offsets": { + "c1": 6.051779935275081, + "c2": 5.187239944521501, + "c3": 4.322699953767911, + "c4": 3.4581599630143307, + "c5": 2.5936199722607505, + "c6": 1.7290799815071707, + "c7": 0.8645399907535799 }, "rgb": [77, 76, 132] }, @@ -450933,23 +450933,23 @@ "year": 1829, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": -19.060326029177368, - "c2": 4.198016860839456, - "c3": -10.85587523430867, - "c4": 0.00273473989728501, - "c5": 10.109321128872615, - "c6": -18.89545420816011, - "c7": 16.52404767760391 + "points": { + "c1": 9.493454212594528, + "c2": 23.84517508926276, + "c3": -8.501760455679634, + "c4": 19.788028061690746, + "c5": 12.079544302221407, + "c6": -13.466787845973496, + "c7": 14.508912020218432 }, - "vertexSeeds": { - "c1": 3.7922899080846832, - "c2": 3.846176471728272, - "c3": 3.7806542380283195, - "c4": 3.74715201746589, - "c5": 3.7928504714717204, - "c6": 3.9030405426010977, - "c7": 3.7359163160107727 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165056, + "c3": 4.6925566343042036, + "c4": 3.754045307443371, + "c5": 2.8155339805825186, + "c6": 1.8770226537216854, + "c7": 0.9385113268608333 }, "rgb": [222, 0, 59] }, @@ -450960,23 +450960,23 @@ "year": 1829, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 16.770840808542353, - "c2": -11.182385680055958, - "c3": -25.093708024374706, - "c4": -28.414170166090237, - "c5": -0.9798350931189113, - "c6": -2.101233208668571, - "c7": -7.744200504758645 + "points": { + "c1": -10.97604004834917, + "c2": 1.6918892269379668, + "c3": -28.197022227067027, + "c4": 29.311561608306846, + "c5": 23.37979286792269, + "c6": 21.305183850067202, + "c7": -11.77879663830807 }, - "vertexSeeds": { - "c1": 5.394639628810879, - "c2": 5.8605126094761175, - "c3": 5.9417586399966416, - "c4": 5.596167966624744, - "c5": 5.774726922902459, - "c6": 5.914336246320879, - "c7": 5.778506041837617 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -450987,23 +450987,23 @@ "year": 1830, "resistanceReported": false, "duration": 39398400, - "curveSeeds": { - "c1": 52.25819768309544, - "c2": -45.86488405227137, - "c3": 36.40018169325068, - "c4": -50.73111928323145, - "c5": 41.89567163512, - "c6": -27.851666841599087, - "c7": -5.626345180832736 + "points": { + "c1": -53.553523228902435, + "c2": 31.990769751794694, + "c3": 42.29734084540123, + "c4": 23.819984871213414, + "c5": 33.288104358063016, + "c6": 32.05210778175469, + "c7": -46.025032635896835 }, - "vertexSeeds": { - "c1": 1.6860341783506565, - "c2": 1.674302455483647, - "c3": 1.8016626897755332, - "c4": 1.6301967901283578, - "c5": 1.6847154735520158, - "c6": 1.6122171699704113, - "c7": 1.8258685868678182 + "offsets": { + "c1": 3.074433656957929, + "c2": 2.6352288488210815, + "c3": 2.196024040684234, + "c4": 1.75681923254739, + "c5": 1.3176144244105423, + "c6": 0.878409616273695, + "c7": 0.4392048081368475 }, "rgb": [86, 146, 138] }, @@ -451014,23 +451014,23 @@ "year": 1829, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": -12.120568287964117, - "c2": 12.333072216655317, - "c3": -18.065261893213837, - "c4": 5.067848438366319, - "c5": 15.839336524241311, - "c6": -27.719731477641343, - "c7": 7.530388811750292 + "points": { + "c1": 28.19577809723676, + "c2": -6.061585366190005, + "c3": 4.90225142440692, + "c4": 1.1741249431417415, + "c5": 18.741718178853894, + "c6": 9.68104116984523, + "c7": 22.072811184044276 }, - "vertexSeeds": { - "c1": 9.766288914421132, - "c2": 9.786548485414992, - "c3": 9.746747696985198, - "c4": 9.673020362742921, - "c5": 9.653360833476365, - "c6": 9.692731358742462, - "c7": 9.600717406544009 + "offsets": { + "c1": 16.375404530744337, + "c2": 14.036061026352314, + "c3": 11.696717521960204, + "c4": 9.357374017568182, + "c5": 7.018030513176157, + "c6": 4.678687008784133, + "c7": 2.339343504392024 }, "rgb": [238, 201, 159] }, @@ -451041,23 +451041,23 @@ "year": 1830, "resistanceReported": false, "duration": 28339200, - "curveSeeds": { - "c1": 32.65580908763599, - "c2": -32.101558017872414, - "c3": -32.966849572176514, - "c4": -27.154874028406937, - "c5": 33.30088755179098, - "c6": -40.433712833184536, - "c7": 12.984352609518645 + "points": { + "c1": -10.468855209124875, + "c2": 12.644419511667763, + "c3": -40.202299564774236, + "c4": -14.701770431198586, + "c5": -35.74898971588112, + "c6": 38.26315599973118, + "c7": -1.7556911000420428 }, - "vertexSeeds": { - "c1": 6.674017040843783, - "c2": 6.781109714541762, - "c3": 6.701796790595437, - "c4": 6.681064897269745, - "c5": 6.696081609829003, - "c6": 6.877893825301546, - "c7": 6.631494433781763 + "offsets": { + "c1": 11.488673139158575, + "c2": 9.8474341192788, + "c3": 8.206195099398975, + "c4": 6.564956079519201, + "c5": 4.923717059639375, + "c6": 3.2824780397596003, + "c7": 1.641239019879775 }, "rgb": [58, 15, 49] }, @@ -451068,23 +451068,23 @@ "year": 1829, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -22.80137890422934, - "c2": -29.63069613556739, - "c3": 13.59928879152605, - "c4": -31.86479502776277, - "c5": 9.528527165655618, - "c6": -22.31831430733292, - "c7": 18.060700016944622 + "points": { + "c1": 28.675841582901086, + "c2": -21.177755390671216, + "c3": 25.472146395949217, + "c4": 33.09140226196361, + "c5": -8.99508035314971, + "c6": -20.828993842815848, + "c7": -29.355299771552147 }, - "vertexSeeds": { - "c1": 7.262068280792672, - "c2": 7.204672796307629, - "c3": 7.224671473582262, - "c4": 7.236207938541858, - "c5": 7.266388137703495, - "c6": 7.254938280084489, - "c7": 7.234583435602889 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083268, + "c3": 8.668515950069274, + "c4": 6.934812760055454, + "c5": 5.201109570041634, + "c6": 3.467406380027641, + "c7": 1.7337031900138204 }, "rgb": [58, 15, 49] }, @@ -451095,23 +451095,23 @@ "year": 1829, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -5.523953870585899, - "c2": 2.314913809812335, - "c3": -24.9561554989698, - "c4": 2.11122730048017, - "c5": -22.538619745323892, - "c6": 15.855889693796893, - "c7": 4.198834935768335 + "points": { + "c1": 6.6529400628656745, + "c2": -3.2306269181380607, + "c3": 20.200736193105385, + "c4": -15.30123313742871, + "c5": -2.911550456333458, + "c6": -12.707611672369499, + "c7": 0.2610272052578466 }, - "vertexSeeds": { - "c1": 4.739196138251662, - "c2": 4.654625082105479, - "c3": 4.552378924513477, - "c4": 4.392145775221861, - "c5": 4.672025364856434, - "c6": 4.799503947217976, - "c7": 4.524910158533663 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055481, + "c3": 5.779010633379561, + "c4": 4.623208506703651, + "c5": 3.4674063800277404, + "c6": 2.31160425335183, + "c7": 1.1558021266759102 }, "rgb": [238, 201, 159] }, @@ -451122,23 +451122,23 @@ "year": 1830, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": -20.69822535644316, - "c2": -2.612775845479767, - "c3": -34.025561370800865, - "c4": 29.043227492322025, - "c5": 29.499511087146402, - "c6": 14.371451163838188, - "c7": 9.977586227567528 + "points": { + "c1": -20.640914768404542, + "c2": 31.260815149318688, + "c3": 18.121977558810755, + "c4": -30.879020678092132, + "c5": -29.09390679208672, + "c6": 13.230998492269322, + "c7": 27.01473188490143 }, - "vertexSeeds": { - "c1": 5.243663478378779, - "c2": 5.495503214648908, - "c3": 5.492085486932865, - "c4": 5.327783721703987, - "c5": 5.4062174147203015, - "c6": 5.450798409056128, - "c7": 5.419554762937323 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -451149,23 +451149,23 @@ "year": 1829, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 23.094681490517306, - "c2": -0.14478559427914917, - "c3": 25.013213405966145, - "c4": -17.299788922458447, - "c5": -15.718046558646579, - "c6": -13.977807195956542, - "c7": -16.816411545596225 + "points": { + "c1": -23.964599416429504, + "c2": 10.643453430463733, + "c3": 17.672454992144484, + "c4": 13.82712554071394, + "c5": 6.889521151211969, + "c6": -18.689042843751132, + "c7": 19.198711979423972 }, - "vertexSeeds": { - "c1": 9.405814822481636, - "c2": 8.595911800798104, - "c3": 9.362984232707177, - "c4": 9.033098818111343, - "c5": 8.699127566938458, - "c6": 9.261457139922586, - "c7": 9.711926773687159 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518728, + "c3": 12.367082755432268, + "c4": 9.89366620434582, + "c5": 7.420249653259359, + "c6": 4.94683310217291, + "c7": 2.47341655108646 }, "rgb": [58, 15, 49] }, @@ -451176,23 +451176,23 @@ "year": 1830, "resistanceReported": false, "duration": 24105600, - "curveSeeds": { - "c1": -22.053739307129543, - "c2": 10.468370353064195, - "c3": -4.920945132449649, - "c4": 30.8614546329408, - "c5": 15.920464697236376, - "c6": -11.236564524905017, - "c7": 5.238927743660064 + "points": { + "c1": -1.7865127382899075, + "c2": 17.346753749207373, + "c3": -10.208744564755193, + "c4": 24.617784852227224, + "c5": -29.834877326941335, + "c6": -28.75760110204122, + "c7": -14.225868529788535 }, - "vertexSeeds": { - "c1": 5.899285510287489, - "c2": 5.501674994434726, - "c3": 5.4236041263066745, - "c4": 5.5795093093192145, - "c5": 5.789973392564224, - "c6": 5.865745743510001, - "c7": 5.516178162219969 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -451203,23 +451203,23 @@ "year": 1829, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -10.651830333392137, - "c2": -1.9660765962976612, - "c3": 21.40429050381548, - "c4": -22.532574489696668, - "c5": -31.323936272166453, - "c6": 4.2921566548759245, - "c7": -25.072100790777704 + "points": { + "c1": 28.351604930146244, + "c2": 32.04445475890838, + "c3": -5.237746133418913, + "c4": 8.094721590752762, + "c5": 15.66940171322927, + "c6": -11.077883139484577, + "c7": 2.8946479610510423 }, - "vertexSeeds": { - "c1": 2.983910536512463, - "c2": 3.0273719823516916, - "c3": 2.979476190234353, - "c4": 2.9715031720374085, - "c5": 2.966671153101037, - "c6": 2.9557381895447077, - "c7": 3.022644523962517 + "offsets": { + "c1": 5.080906148867314, + "c2": 4.355062413314825, + "c3": 3.6292186777623723, + "c4": 2.9033749422098833, + "c5": 2.1775312066574304, + "c6": 1.4516874711049417, + "c7": 0.7258437355524888 }, "rgb": [238, 201, 159] }, @@ -451230,23 +451230,23 @@ "year": 1830, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 37.54160325167702, - "c2": 12.855694017451263, - "c3": -4.246980177007373, - "c4": -31.116243500854115, - "c5": -9.139586517351479, - "c6": 3.1924164458149917, - "c7": 23.230857864583704 + "points": { + "c1": 15.664923962830095, + "c2": -13.723453730706296, + "c3": 27.384007774326662, + "c4": 19.942986286868887, + "c5": 34.203281224303495, + "c6": 5.095200440007048, + "c7": 18.13159535794893 }, - "vertexSeeds": { - "c1": 5.585670028878857, - "c2": 5.4405020261350305, - "c3": 5.586231624156809, - "c4": 5.735865655431954, - "c5": 5.592895767811125, - "c6": 5.370187376061166, - "c7": 5.886524058012421 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -451257,23 +451257,23 @@ "year": 1830, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 6.72365615351449, - "c2": 9.768811814310311, - "c3": 4.844057401760274, - "c4": 15.384313829466414, - "c5": -4.092664814617187, - "c6": 10.7342204001582, - "c7": 17.88976191921555 + "points": { + "c1": -16.479299700411655, + "c2": -19.569470856273227, + "c3": 14.037709623514871, + "c4": -13.716582159903826, + "c5": -11.35100177519735, + "c6": -32.570484862391766, + "c7": -25.27140898287079 }, - "vertexSeeds": { - "c1": 11.129984724826091, - "c2": 11.2875874126848, - "c3": 10.953836023891041, - "c4": 10.8809958722951, - "c5": 10.997060544829942, - "c6": 11.014400533060291, - "c7": 11.387077593947524 + "offsets": { + "c1": 19.02912621359223, + "c2": 16.31067961165048, + "c3": 13.592233009708737, + "c4": 10.873786407766989, + "c5": 8.15533980582524, + "c6": 5.4368932038834945, + "c7": 2.7184466019417473 }, "rgb": [77, 76, 132] }, @@ -451284,23 +451284,23 @@ "year": 1830, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -23.675496991211013, - "c2": -24.256525117306474, - "c3": 10.225928353035059, - "c4": -7.939055063478904, - "c5": 18.959656368603802, - "c6": -23.501297961873526, - "c7": 17.84768626995008 + "points": { + "c1": 26.908702255982817, + "c2": 10.496772201967126, + "c3": 21.30626552125357, + "c4": 9.706363155332497, + "c5": 32.7377562381549, + "c6": -6.693022214195523, + "c7": 20.922249452958894 }, - "vertexSeeds": { - "c1": 5.382428541462016, - "c2": 5.922557710984847, - "c3": 5.611511404529531, - "c4": 5.476898776405778, - "c5": 5.410461406148551, - "c6": 5.910143433374739, - "c7": 5.427492438123086 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -451311,23 +451311,23 @@ "year": 1829, "resistanceReported": false, "duration": 8985600, - "curveSeeds": { - "c1": -12.02063838322604, - "c2": 15.320263471756405, - "c3": 12.896261753787883, - "c4": 18.167747058825896, - "c5": 5.016496872512832, - "c6": -11.15040351053551, - "c7": 8.713493137732218 + "points": { + "c1": -2.2793989007128843, + "c2": 6.1162708356844, + "c3": -9.632982293743911, + "c4": 2.8850695332582212, + "c5": -15.76892402907967, + "c6": -18.73612233648201, + "c7": -1.0671209169890616 }, - "vertexSeeds": { - "c1": 3.163094710349738, - "c2": 3.0392682873042074, - "c3": 2.676232183632799, - "c4": 3.273940310790058, - "c5": 2.906112467854487, - "c6": 3.9079043026524105, - "c7": 3.809999467514299 + "offsets": { + "c1": 9.029126213592233, + "c2": 7.739251040221913, + "c3": 6.449375866851596, + "c4": 5.159500693481275, + "c5": 3.869625520110958, + "c6": 2.5797503467406373, + "c7": 1.2898751733703187 }, "rgb": [58, 15, 49] }, @@ -451338,23 +451338,23 @@ "year": 1829, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": -15.041172290450866, - "c2": 16.905571907065752, - "c3": 7.633896263288875, - "c4": -13.989967506865389, - "c5": 14.255795575600946, - "c6": -7.499998230695692, - "c7": -8.799143149977244 + "points": { + "c1": 10.605270211983079, + "c2": 19.57819799639662, + "c3": -9.932443667984526, + "c4": 20.844127417965513, + "c5": -5.404855039541484, + "c6": 8.052483655560248, + "c7": -9.147280407420665 }, - "vertexSeeds": { - "c1": 4.521201974987083, - "c2": 4.776986358439245, - "c3": 4.8674239275019495, - "c4": 4.583813286316248, - "c5": 5.0171805284274065, - "c6": 4.814633622330504, - "c7": 4.8551421958414185 + "offsets": { + "c1": 8.4789644012945, + "c2": 7.267683772538139, + "c3": 6.056403143781786, + "c4": 4.845122515025426, + "c5": 3.633841886269073, + "c6": 2.422561257512713, + "c7": 1.2112806287563602 }, "rgb": [58, 15, 49] }, @@ -451365,23 +451365,23 @@ "year": 1830, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -3.87305483593126, - "c2": -7.697023083776418, - "c3": 22.61166734130482, - "c4": -21.275648542097173, - "c5": -14.816315307607361, - "c6": 5.189096877596118, - "c7": 16.786848550854383 + "points": { + "c1": 16.9582982471046, + "c2": -6.127394395090196, + "c3": 28.302164404368256, + "c4": 27.967773731129206, + "c5": -26.766350259464055, + "c6": -30.68985302790188, + "c7": -17.582430206728027 }, - "vertexSeeds": { - "c1": 5.410912770337845, - "c2": 5.271427301360866, - "c3": 5.304114622516332, - "c4": 5.26351971837186, - "c5": 5.303403046174118, - "c6": 5.387160090592633, - "c7": 5.260680683559856 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -451392,23 +451392,23 @@ "year": 1830, "resistanceReported": false, "duration": 25315200, - "curveSeeds": { - "c1": 15.259479528086096, - "c2": 2.0363840839489384, - "c3": 9.568605213038254, - "c4": -35.567540206088665, - "c5": 29.473429601481897, - "c6": 31.093520412321993, - "c7": -10.53897663621727 + "points": { + "c1": -2.226469010704335, + "c2": -22.95392857326526, + "c3": -18.3830842423124, + "c4": -13.261066695311229, + "c5": 18.913883901799835, + "c6": -33.69340048668053, + "c7": 29.96430040509324 }, - "vertexSeeds": { - "c1": 1.5155440414507773, - "c2": 1.5155440414507773, - "c3": 1.5155440414507773, - "c4": 1.5155440414507773, - "c5": 1.5155440414507773, - "c6": 1.5155440414507773, - "c7": 1.5155440414507773 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -451419,23 +451419,23 @@ "year": 1829, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 17.613803417180925, - "c2": -3.306219113830778, - "c3": 17.528682223185307, - "c4": 7.152596129002681, - "c5": -11.295947411441054, - "c6": -2.057322204445267, - "c7": -13.168661419643222 + "points": { + "c1": -26.265536279545792, + "c2": -23.707041389930318, + "c3": 14.070758119707499, + "c4": -6.170736135973652, + "c5": 11.45396911519262, + "c6": 12.041972989730773, + "c7": 14.745840738328674 }, - "vertexSeeds": { - "c1": 5.8759877128843705, - "c2": 5.643858295743767, - "c3": 5.478040868850213, - "c4": 5.670669000556111, - "c5": 5.7655901687990285, - "c6": 5.56696462869058, - "c7": 5.400084570281855 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -451446,23 +451446,23 @@ "year": 1830, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 32.45359756923159, - "c2": -26.22878523222154, - "c3": 18.90594937248605, - "c4": 4.751693040316191, - "c5": -18.950686300841497, - "c6": 16.3175916043808, - "c7": 11.924200885621211 + "points": { + "c1": -31.750707250510352, + "c2": -30.644356590387027, + "c3": -22.218288894516053, + "c4": -28.004806981877877, + "c5": 23.917115049480813, + "c6": 34.2742259068591, + "c7": -24.913642676104125 }, - "vertexSeeds": { - "c1": 5.633938968219083, - "c2": 5.8975988494278795, - "c3": 5.7459099249659005, - "c4": 5.7242352198875235, - "c5": 5.741087879896105, - "c6": 5.401076652955007, - "c7": 5.6304177956005255 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -451473,23 +451473,23 @@ "year": 1829, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -16.70573616297905, - "c2": -19.756658445445282, - "c3": 11.089555161545881, - "c4": 13.550562756685224, - "c5": 14.02126806967906, - "c6": -0.13923161833141862, - "c7": -19.854346686804043 + "points": { + "c1": 14.947531601720371, + "c2": 22.81035655587079, + "c3": -2.3343891167073636, + "c4": -25.5021137304042, + "c5": -20.14916396014942, + "c6": -3.515856954605514, + "c7": 3.970515031018234 }, - "vertexSeeds": { - "c1": 8.623525690867229, - "c2": 7.859900846663475, - "c3": 8.579939676304813, - "c4": 8.46332588412983, - "c5": 8.247171851301896, - "c6": 8.61710122411003, - "c7": 8.34307279020095 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.621359223300976, + "c3": 10.517799352750817, + "c4": 8.414239482200646, + "c5": 6.310679611650488, + "c6": 4.20711974110033, + "c7": 2.1035598705501575 }, "rgb": [77, 76, 132] }, @@ -451500,23 +451500,23 @@ "year": 1830, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 7.634002204994481, - "c2": 9.458035651720166, - "c3": 14.908759371712847, - "c4": 18.93128162197376, - "c5": -16.72348690107961, - "c6": -15.74134963367161, - "c7": 2.514990228494206 + "points": { + "c1": -33.908775067520885, + "c2": -28.96372102613993, + "c3": 20.083583923732576, + "c4": 14.079143443122085, + "c5": 30.767150148706406, + "c6": 5.944618735131272, + "c7": -7.157111304293313 }, - "vertexSeeds": { - "c1": 9.759488344809725, - "c2": 9.689309787441866, - "c3": 9.673468718647591, - "c4": 9.922888594658062, - "c5": 9.668289073462502, - "c6": 9.637382473905381, - "c7": 9.644305361562271 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.257975034674047, + "c3": 11.88164586222841, + "c4": 9.505316689782717, + "c5": 7.128987517337023, + "c6": 4.75265834489133, + "c7": 2.3763291724456934 }, "rgb": [77, 76, 132] }, @@ -451527,23 +451527,23 @@ "year": 1829, "resistanceReported": false, "duration": 11923200, - "curveSeeds": { - "c1": -8.21141478845075, - "c2": 18.917039712826003, - "c3": -21.290715046695027, - "c4": 12.762085162118524, - "c5": 4.444691576246701, - "c6": -11.069280499941264, - "c7": 2.1604965930534092 + "points": { + "c1": 9.327633888958019, + "c2": 6.252721262163092, + "c3": 19.363052693249834, + "c4": -9.6443895601435, + "c5": 3.712478587043176, + "c6": -3.857223846177181, + "c7": -17.028090686112368 }, - "vertexSeeds": { - "c1": 5.561304577961153, - "c2": 5.659520542184377, - "c3": 5.565584889639673, - "c4": 5.592722544274766, - "c5": 5.63788275541578, - "c6": 5.5969927207759955, - "c7": 5.63198830793031 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.12760055478499, + "c3": 6.7730004623208595, + "c4": 5.418400369856661, + "c5": 4.063800277392529, + "c6": 2.7092001849283305, + "c7": 1.3546000924641988 }, "rgb": [222, 0, 59] }, @@ -451554,23 +451554,23 @@ "year": 1829, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 7.887932476553246, - "c2": -11.271513440686412, - "c3": 8.780926842967808, - "c4": -3.020875566365369, - "c5": -21.2014823221999, - "c6": -13.61928278303562, - "c7": 1.965540254494428 + "points": { + "c1": -20.812755848489676, + "c2": 8.919919342959602, + "c3": 10.138198632677678, + "c4": 2.243264189557852, + "c5": 19.951260055217055, + "c6": -14.676050826936287, + "c7": -22.745471657403478 }, - "vertexSeeds": { - "c1": 6.87283412712262, - "c2": 6.630803492756986, - "c3": 6.695070172658305, - "c4": 6.929071880564117, - "c5": 6.765996773748536, - "c6": 7.005038539332409, - "c7": 7.0791492902629125 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721228, + "c3": 8.460471567267673, + "c4": 6.768377253814143, + "c5": 5.076282940360614, + "c6": 3.3841886269070582, + "c7": 1.6920943134535291 }, "rgb": [58, 15, 49] }, @@ -451581,23 +451581,23 @@ "year": 1829, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": -8.025748548555908, - "c2": 13.639815475346566, - "c3": -2.4872923604118053, - "c4": 8.031002077395492, - "c5": 2.9451310963517763, - "c6": -12.732814210456386, - "c7": -1.9117326424344068 + "points": { + "c1": 12.44587248814068, + "c2": -8.272291245297799, + "c3": -1.9141469718371233, + "c4": -8.666813012276418, + "c5": -15.315946960500602, + "c6": 19.095200549243362, + "c7": 2.420659982067299 }, - "vertexSeeds": { - "c1": 7.888562983832056, - "c2": 7.996197007725175, - "c3": 7.946400561851295, - "c4": 8.00387103157522, - "c5": 7.8663311870988535, - "c6": 7.910487963930713, - "c7": 7.889935789452739 + "offsets": { + "c1": 13.365695792880258, + "c2": 11.45631067961161, + "c3": 9.546925566343054, + "c4": 7.637540453074406, + "c5": 5.728155339805852, + "c6": 3.818770226537203, + "c7": 1.909385113268554 }, "rgb": [77, 76, 132] }, @@ -451608,23 +451608,23 @@ "year": 1829, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 18.787178406114208, - "c2": 20.117667674164352, - "c3": 20.463541844139165, - "c4": 16.88504275306694, - "c5": 20.383802070575634, - "c6": 23.407165845614188, - "c7": -9.319293003844406 + "points": { + "c1": -9.81831468708831, + "c2": 13.478890491408634, + "c3": 14.69340395145047, + "c4": 15.489777910959852, + "c5": 3.9259192261594364, + "c6": -0.9034289623995697, + "c7": 7.007836330799535 }, - "vertexSeeds": { - "c1": 6.744851940039076, - "c2": 6.754834954827303, - "c3": 6.7592537142003275, - "c4": 6.754539197959415, - "c5": 6.758971420334357, - "c6": 6.7576072184456, - "c7": 6.747284827310891 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037495, + "c3": 8.067498844197965, + "c4": 6.453999075358436, + "c5": 4.840499306518587, + "c6": 3.226999537679058, + "c7": 1.613499768839529 }, "rgb": [222, 0, 59] }, @@ -451635,23 +451635,23 @@ "year": 1829, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": -4.079074904344555, - "c2": 19.726511908893897, - "c3": 10.846373774014882, - "c4": -10.559237498071028, - "c5": -16.567439679674262, - "c6": 5.030486755292891, - "c7": -10.074345013346054 + "points": { + "c1": 4.702162712895021, + "c2": -16.767530795141795, + "c3": 21.0541943158105, + "c4": 16.61172074604358, + "c5": 14.857043699274158, + "c6": 5.509045429386443, + "c7": 8.41804606985589 }, - "vertexSeeds": { - "c1": 11.083435743746447, - "c2": 11.262713072392101, - "c3": 11.027652240313465, - "c4": 11.221239670317244, - "c5": 11.340239923275405, - "c6": 11.264546978095074, - "c7": 11.162174854219886 + "offsets": { + "c1": 18.932038834951456, + "c2": 16.2274618585298, + "c3": 13.522884882108148, + "c4": 10.81830790568649, + "c5": 8.113730929264838, + "c6": 5.40915395284331, + "c7": 2.704576976421655 }, "rgb": [86, 146, 138] }, @@ -451662,23 +451662,23 @@ "year": 1830, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 23.01396873859756, - "c2": -26.17298701930421, - "c3": 10.439420448080607, - "c4": -0.41782723532607946, - "c5": -6.149722990789392, - "c6": 12.010372806988915, - "c7": -19.326753503467543 + "points": { + "c1": -25.021287771870238, + "c2": 1.0923585215780385, + "c3": 0.7109287383763032, + "c4": 15.172238731269875, + "c5": -26.330631290516134, + "c6": -18.56906753108418, + "c7": 8.627199370292626 }, - "vertexSeeds": { - "c1": 2.4635734420377324, - "c2": 2.4560577764351934, - "c3": 2.459757418850837, - "c4": 2.458791045918045, - "c5": 2.4675647287269182, - "c6": 2.4485393697086084, - "c7": 2.44704511200283 + "offsets": { + "c1": 4.142394822006472, + "c2": 3.550624133148392, + "c3": 2.9588534442903414, + "c4": 2.3670827554322615, + "c5": 1.7753120665742108, + "c6": 1.1835413777161308, + "c7": 0.59177068885808 }, "rgb": [222, 0, 59] }, @@ -451689,23 +451689,23 @@ "year": 1830, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -16.605071307255805, - "c2": 0.08526153181714236, - "c3": -25.263969109502693, - "c4": 16.198592809370325, - "c5": 22.540123591360334, - "c6": -10.4923247988162, - "c7": 2.29445719411709 + "points": { + "c1": -7.850276042562939, + "c2": 6.0822897898631965, + "c3": -26.753397187857136, + "c4": 0.574444468999264, + "c5": -5.50774740097291, + "c6": 27.25799424685181, + "c7": 5.201540502249848 }, - "vertexSeeds": { - "c1": 5.448903965586795, - "c2": 5.323842841254526, - "c3": 5.240900871805216, - "c4": 5.226716149127522, - "c5": 5.45339495829714, - "c6": 5.31122169608981, - "c7": 5.4497710814819085 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -451716,23 +451716,23 @@ "year": 1829, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": 18.171842715336957, - "c2": 11.446718217269286, - "c3": -0.663520447346702, - "c4": 14.885048256966705, - "c5": 1.3287584318521652, - "c6": 22.369765973189935, - "c7": 4.89156058730833 + "points": { + "c1": 20.154402316929072, + "c2": -9.7974189176312, + "c3": 15.283398503096024, + "c4": 9.93494018878416, + "c5": -4.92398663767349, + "c6": -8.373881888796948, + "c7": 7.821508883083524 }, - "vertexSeeds": { - "c1": 5.3609405978196385, - "c2": 5.348190452849391, - "c3": 5.26586635642839, - "c4": 5.331315028153481, - "c5": 5.322807502814556, - "c6": 5.342293489709772, - "c7": 5.34466523018232 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -451743,23 +451743,23 @@ "year": 1829, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 15.018283599666027, - "c2": -4.8360093865717175, - "c3": -8.443731657741406, - "c4": 5.089458629890888, - "c5": 1.4430678656550384, - "c6": 17.644871591431432, - "c7": 8.49503708359138 + "points": { + "c1": 20.393753474082366, + "c2": -14.603300598481805, + "c3": 1.1286321842563858, + "c4": -19.84999755520931, + "c5": 0.08694062586659612, + "c6": -15.681241461317148, + "c7": 19.62275043186333 }, - "vertexSeeds": { - "c1": 4.423758011198209, - "c2": 4.446000003170565, - "c3": 4.378653883966784, - "c4": 4.368522284636068, - "c5": 4.439586186220608, - "c6": 4.471027190279582, - "c7": 4.497827883916509 + "offsets": { + "c1": 7.540453074433658, + "c2": 6.46324549237171, + "c3": 5.3860379103097635, + "c4": 4.308830328247789, + "c5": 3.2316227461858418, + "c6": 2.1544151641238947, + "c7": 1.0772075820619473 }, "rgb": [238, 201, 159] }, @@ -451770,23 +451770,23 @@ "year": 1830, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 7.785560440008624, - "c2": 26.360176248694103, - "c3": 27.562179557865804, - "c4": -28.157887803014738, - "c5": -30.599243606544036, - "c6": 26.576136915909082, - "c7": -33.215202644573814 + "points": { + "c1": -13.557727593207524, + "c2": -15.404602439615285, + "c3": 6.8000489718153645, + "c4": 16.940416053081194, + "c5": 32.335221473745584, + "c6": -19.034006140718414, + "c7": -3.670323717157526 }, - "vertexSeeds": { - "c1": 8.141340784825916, - "c2": 8.031425554190603, - "c3": 7.959281625429105, - "c4": 7.881894662431964, - "c5": 7.414015933842298, - "c6": 7.547503989636971, - "c7": 7.379516502154433 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094314, + "c3": 9.824318076745262, + "c4": 7.859454461396209, + "c5": 5.894590846047157, + "c6": 3.9297272306981044, + "c7": 1.9648636153490522 }, "rgb": [58, 15, 49] }, @@ -451797,23 +451797,23 @@ "year": 1830, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": -5.833696622580309, - "c2": -18.84158637163947, - "c3": 15.299981777802863, - "c4": 23.615641439222983, - "c5": -18.216955507108274, - "c6": 21.937374185038315, - "c7": -17.385771614337763 + "points": { + "c1": -25.140588770627662, + "c2": 21.00534606785223, + "c3": -25.75898847382511, + "c4": 4.651371889246651, + "c5": 0.03321739760164277, + "c6": 5.690649896814342, + "c7": 22.401363066509475 }, - "vertexSeeds": { - "c1": 5.855565498463002, - "c2": 5.585877272888993, - "c3": 5.500453773435027, - "c4": 5.7954098608101, - "c5": 5.723417858509154, - "c6": 5.904289822451091, - "c7": 5.426927399760832 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -451824,23 +451824,23 @@ "year": 1829, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": -3.5903764413144863, - "c2": 7.645755109090896, - "c3": -12.040544214771899, - "c4": -3.6940558003616992, - "c5": -15.288161961593989, - "c6": -1.021697876186515, - "c7": 9.750414723170966 + "points": { + "c1": 6.481143084097685, + "c2": 11.958942201232183, + "c3": 17.375626322264644, + "c4": 7.465875513931149, + "c5": -18.532103345023586, + "c6": -3.3535110100092425, + "c7": 12.746145957974392 }, - "vertexSeeds": { - "c1": 7.183408106113691, - "c2": 7.1994790141617555, - "c3": 7.292600610486657, - "c4": 7.189624861958255, - "c5": 7.264494632506417, - "c6": 7.21001505719885, - "c7": 7.269916829407715 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163673, + "c3": 8.714748035136406, + "c4": 6.971798428109141, + "c5": 5.228848821081875, + "c6": 3.4858992140545317, + "c7": 1.7429496070272659 }, "rgb": [222, 0, 59] }, @@ -451851,23 +451851,23 @@ "year": 1830, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 13.709911895822856, - "c2": -20.18922256094828, - "c3": 3.355218119162899, - "c4": 21.352425602726143, - "c5": -9.201412605128244, - "c6": -23.829359998211835, - "c7": 22.97188842900377 + "points": { + "c1": -20.710716838041535, + "c2": -17.202390794294242, + "c3": 4.225107228014934, + "c4": 7.911522292044019, + "c5": -4.93111739822443, + "c6": -31.32042143959477, + "c7": -19.233214080799353 }, - "vertexSeeds": { - "c1": 9.307790108850956, - "c2": 9.152346508384701, - "c3": 8.922295151854664, - "c4": 9.066984517275376, - "c5": 8.708592624191466, - "c6": 9.170036077864207, - "c7": 9.084653759188539 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -451878,23 +451878,23 @@ "year": 1829, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -3.2653718264012, - "c2": 11.906216983283631, - "c3": -9.286428333345913, - "c4": 10.992361303078543, - "c5": 19.434947730202325, - "c6": -2.0525972066212397, - "c7": -8.33993023315918 + "points": { + "c1": 17.793311369680907, + "c2": -9.807744164487364, + "c3": -9.47750924530813, + "c4": -0.36810954602152535, + "c5": -6.985368604121357, + "c6": 1.200542500499207, + "c7": 4.474614569083194 }, - "vertexSeeds": { - "c1": 10.544863503122555, - "c2": 10.618363307046867, - "c3": 10.73020080024902, - "c4": 11.035738206205787, - "c5": 10.827355555051465, - "c6": 10.452659148974217, - "c7": 10.438113476517977 + "offsets": { + "c1": 18.446601941747574, + "c2": 15.81137309292652, + "c3": 13.1761442441054, + "c4": 10.540915395284346, + "c5": 7.905686546463228, + "c6": 5.270457697642173, + "c7": 2.6352288488210545 }, "rgb": [77, 76, 132] }, @@ -451905,23 +451905,23 @@ "year": 1830, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 22.3339573493348, - "c2": -18.280211530835796, - "c3": -19.80340944423614, - "c4": 1.299305538379535, - "c5": -22.61861951197093, - "c6": -23.300454333277404, - "c7": 23.817887862947938 + "points": { + "c1": -16.248121904846712, + "c2": -6.661899895339964, + "c3": -27.229439290217808, + "c4": -23.02695442653355, + "c5": 14.628810077924616, + "c6": 0.813418031625595, + "c7": -21.156228822496857 }, - "vertexSeeds": { - "c1": 6.618301876901655, - "c2": 6.679922429438904, - "c3": 6.666704456984809, - "c4": 6.666729870527512, - "c5": 6.663145714602231, - "c6": 6.625930491350129, - "c7": 6.638461120712251 + "offsets": { + "c1": 11.197411003236246, + "c2": 9.597780859916828, + "c3": 7.998150716597304, + "c4": 6.398520573277885, + "c5": 4.798890429958361, + "c6": 3.1992602866389426, + "c7": 1.5996301433195241 }, "rgb": [86, 146, 138] }, @@ -451932,23 +451932,23 @@ "year": 1830, "resistanceReported": false, "duration": 16156800, - "curveSeeds": { - "c1": -13.46067827623775, - "c2": 12.686659777346279, - "c3": -23.440615939329334, - "c4": 10.018038393541197, - "c5": -9.96758379694867, - "c6": -4.512506416910451, - "c7": 24.67298262290192 + "points": { + "c1": 1.096230357150283, + "c2": -24.507960739335473, + "c3": -11.138516747390256, + "c4": -18.985578429134925, + "c5": 13.841086070861735, + "c6": 7.060924348243354, + "c7": -1.1112037616189028 }, - "vertexSeeds": { - "c1": 5.4240045617791575, - "c2": 5.73063683458694, - "c3": 5.780199107014508, - "c4": 5.380913804244763, - "c5": 5.560063463609035, - "c6": 5.502266478596618, - "c7": 5.511792613261962 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -451959,23 +451959,23 @@ "year": 1830, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -10.94006190840566, - "c2": -4.983338590779734, - "c3": 16.641991835253776, - "c4": -9.8594608512879, - "c5": -21.93650057245913, - "c6": -25.28279141493442, - "c7": -4.002377300631608 + "points": { + "c1": 13.230501037194372, + "c2": 28.61599855943804, + "c3": -13.31694430898892, + "c4": 30.45049814899538, + "c5": 28.91174655297435, + "c6": 12.325128722325239, + "c7": 0.5753587964228046 }, - "vertexSeeds": { - "c1": 5.498487410366821, - "c2": 5.726635166658762, - "c3": 5.775391422466344, - "c4": 5.739496675860821, - "c5": 5.824347989904579, - "c6": 5.472189116688431, - "c7": 5.581299588806827 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -451986,23 +451986,23 @@ "year": 1830, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": -5.583564433798234, - "c2": -17.241379189969855, - "c3": -24.257425822942526, - "c4": 16.76898874673992, - "c5": -0.2973517543075346, - "c6": 10.768420322134446, - "c7": 18.03065420487423 + "points": { + "c1": -18.7785038223695, + "c2": 15.219678297909105, + "c3": -10.614389292944413, + "c4": -7.014481482488474, + "c5": 27.933277699340344, + "c6": -0.22055202860378742, + "c7": -28.02121044258027 }, - "vertexSeeds": { - "c1": 5.292938507667667, - "c2": 5.2559747906262055, - "c3": 5.316221903322557, - "c4": 5.3313235266758, - "c5": 5.305142236668743, - "c6": 5.720324608575842, - "c7": 5.896156943108768 + "offsets": { + "c1": 9.870550161812297, + "c2": 8.460471567267685, + "c3": 7.050392972723073, + "c4": 5.640314378178461, + "c5": 4.23023578363385, + "c6": 2.820157189089223, + "c7": 1.4100785945446115 }, "rgb": [222, 0, 59] }, @@ -452013,23 +452013,23 @@ "year": 1829, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": 11.985677770782104, - "c2": -10.641038829705426, - "c3": 5.933188046659435, - "c4": 4.978832552146912, - "c5": -2.9568897508804106, - "c6": -13.765203266723702, - "c7": 17.705224988089064 + "points": { + "c1": 9.841305963724697, + "c2": -17.119707983869024, + "c3": 12.887004772731352, + "c4": -20.726643300464676, + "c5": -3.924635497890403, + "c6": -11.159251221652351, + "c7": -5.5879391519407235 }, - "vertexSeeds": { - "c1": 6.867797370711564, - "c2": 6.797464135555788, - "c3": 6.627671635355409, - "c4": 7.194832043472508, - "c5": 6.787971891055409, - "c6": 6.732140828233957, - "c7": 6.939533602577875 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083218, + "c3": 8.668515950069349, + "c4": 6.934812760055479, + "c5": 5.201109570041609, + "c6": 3.4674063800277395, + "c7": 1.7337031900138697 }, "rgb": [222, 0, 59] }, @@ -452040,23 +452040,23 @@ "year": 1829, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": -2.708716878428582, - "c2": 17.049375345890997, - "c3": 19.068223449717724, - "c4": 14.993358319578089, - "c5": 19.681447678286315, - "c6": -4.583075539804263, - "c7": 5.314019432278993 + "points": { + "c1": 3.3358585214988707, + "c2": 0.6923794358142814, + "c3": -19.057914037195523, + "c4": -6.507817653796327, + "c5": 20.349227835366097, + "c6": 3.7389191517356686, + "c7": -9.398537463629074 }, - "vertexSeeds": { - "c1": 7.308464218173925, - "c2": 7.234404116143204, - "c3": 7.9254056865150355, - "c4": 8.095377356585269, - "c5": 7.823503367041416, - "c6": 7.910275787027801, - "c7": 7.775470112316825 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375869, + "c3": 9.986130374479893, + "c4": 7.988904299583905, + "c5": 5.991678224687929, + "c6": 3.9944521497919525, + "c7": 1.9972260748959763 }, "rgb": [77, 76, 132] }, @@ -452067,23 +452067,23 @@ "year": 1830, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 8.091207774310927, - "c2": -26.648693433006486, - "c3": -20.36699256212131, - "c4": 21.592915425116967, - "c5": 13.863365844869573, - "c6": -26.88498940719607, - "c7": -4.381032748586808 + "points": { + "c1": -12.459664058293164, + "c2": -12.955518765443063, + "c3": 4.132362682003386, + "c4": 21.487417033780677, + "c5": -18.42120612358295, + "c6": 20.948275051371557, + "c7": 30.165211523126974 }, - "vertexSeeds": { - "c1": 5.52560105671164, - "c2": 5.515145808440348, - "c3": 5.434399274303393, - "c4": 5.887364105901082, - "c5": 5.67540772952071, - "c6": 5.623203303151343, - "c7": 5.872670979488513 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -452094,23 +452094,23 @@ "year": 1829, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": 12.315255727636707, - "c2": -6.548090248003875, - "c3": -4.546826562152372, - "c4": 2.4437800451750995, - "c5": 1.2186919200004311, - "c6": -12.309987798645608, - "c7": 13.56965972335259 + "points": { + "c1": -6.142565894838725, + "c2": -0.8333840831833328, + "c3": -10.842964364004354, + "c4": -7.477146790370693, + "c5": -2.7014188431188124, + "c6": -11.95720932945584, + "c7": 5.63826575789507 }, - "vertexSeeds": { - "c1": 8.849848745987579, - "c2": 8.848855580981086, - "c3": 8.835157583667518, - "c4": 8.882390159492617, - "c5": 8.860007906878211, - "c6": 8.892763550706812, - "c7": 8.867283729204354 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.73231622746192, + "c3": 10.610263522884793, + "c4": 8.488210818307877, + "c5": 6.36615811373096, + "c6": 4.244105409154043, + "c7": 2.1220527045769164 }, "rgb": [86, 146, 138] }, @@ -452121,23 +452121,23 @@ "year": 1830, "resistanceReported": true, "duration": 19180800, - "curveSeeds": { - "c1": -6.280981761287045, - "c2": -9.606864018924103, - "c3": -29.295510804350883, - "c4": -10.984669878824853, - "c5": -27.39288285916381, - "c6": 13.744600185301802, - "c7": 6.5328983953919355 + "points": { + "c1": -3.3227133330224667, + "c2": 30.601563571403304, + "c3": -17.574318149790503, + "c4": -22.607830784307872, + "c5": -19.65084047548705, + "c6": 8.494154161251515, + "c7": 28.064930969360084 }, - "vertexSeeds": { - "c1": 6.820609982468074, - "c2": 6.815990894728651, - "c3": 6.79206116289711, - "c4": 6.81517615359789, - "c5": 6.822084323478918, - "c6": 6.7954251003244845, - "c7": 6.811127824084302 + "offsets": { + "c1": 11.45631067961165, + "c2": 9.819694868238539, + "c3": 8.183079056865427, + "c4": 6.546463245492447, + "c5": 4.909847434119334, + "c6": 3.2732316227462235, + "c7": 1.6366158113731117 }, "rgb": [77, 76, 132] }, @@ -452148,23 +452148,23 @@ "year": 1830, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": 2.760269414007773, - "c2": -30.908241784806943, - "c3": 3.5836842662142203, - "c4": -34.18954852735466, - "c5": -5.248167998115214, - "c6": 18.051312515148958, - "c7": 20.714484558273178 + "points": { + "c1": -25.47100475445641, + "c2": -30.05852444681703, + "c3": -19.2425434207323, + "c4": -28.12002292151164, + "c5": 9.430852403486313, + "c6": 4.303418047513709, + "c7": 30.521236014367993 }, - "vertexSeeds": { - "c1": 3.5738304504312177, - "c2": 3.584823046840331, - "c3": 3.546694379886583, - "c4": 3.562151868285719, - "c5": 3.5772949350366394, - "c6": 3.5930510530348503, - "c7": 3.550240670726048 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.1595006934813, + "c3": 4.2995839112343885, + "c4": 3.439667128987534, + "c5": 2.5797503467406218, + "c6": 1.719833564493767, + "c7": 0.8599167822469118 }, "rgb": [58, 15, 49] }, @@ -452175,23 +452175,23 @@ "year": 1830, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 29.21579297208424, - "c2": -21.738558851121446, - "c3": 9.769923427884788, - "c4": -13.901771874079362, - "c5": 25.508743272364004, - "c6": 5.212014424443094, - "c7": -27.119501270027115 + "points": { + "c1": -12.814547570158943, + "c2": -10.786722228472463, + "c3": 32.524163940837894, + "c4": -27.350262130464024, + "c5": 12.184995206330072, + "c6": -21.684087425145478, + "c7": -7.723166837197208 }, - "vertexSeeds": { - "c1": 9.928756476683938, - "c2": 9.928756476683938, - "c3": 9.928756476683938, - "c4": 9.928756476683938, - "c5": 9.928756476683938, - "c6": 9.928756476683938, - "c7": 9.928756476683938 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [238, 201, 159] }, @@ -452202,23 +452202,23 @@ "year": 1830, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 5.064979737073941, - "c2": -5.161963696885682, - "c3": 0.27992201166085096, - "c4": 16.495872389970867, - "c5": -21.539592710810254, - "c6": 19.131360329159957, - "c7": 16.669065956997013 + "points": { + "c1": -18.449829531071018, + "c2": 10.162017181006899, + "c3": 17.573036680138156, + "c4": 16.110178681680903, + "c5": 4.107803293359538, + "c6": -20.492567601152196, + "c7": -15.55092107491011 }, - "vertexSeeds": { - "c1": 7.616038419134753, - "c2": 7.693208097896572, - "c3": 7.6568678629651945, - "c4": 7.605482194628593, - "c5": 7.652119562903957, - "c6": 7.620989801518363, - "c7": 7.681683266107563 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968079, + "c3": 9.177068885806708, + "c4": 7.3416551086453365, + "c5": 5.506241331483966, + "c6": 3.6708275543225954, + "c7": 1.835413777161371 }, "rgb": [77, 76, 132] }, @@ -452229,23 +452229,23 @@ "year": 1830, "resistanceReported": false, "duration": 25142400, - "curveSeeds": { - "c1": 29.862588983665887, - "c2": -32.11327708301704, - "c3": 7.020505178251241, - "c4": -18.52998702878643, - "c5": 16.150821956686087, - "c6": -13.667811712124283, - "c7": -6.382931174685439 + "points": { + "c1": 19.227206497652567, + "c2": 23.79678543398704, + "c3": 17.99697711980445, + "c4": 24.878747797082482, + "c5": -35.8722913839953, + "c6": 23.17071800498853, + "c7": 29.461617567780408 }, - "vertexSeeds": { - "c1": 5.708445473283376, - "c2": 5.466673733362602, - "c3": 5.615944920259783, - "c4": 5.546993334108814, - "c5": 5.726027211045848, - "c6": 5.887519787056342, - "c7": 5.525182122735495 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -452256,23 +452256,23 @@ "year": 1830, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -20.041039476611623, - "c2": 17.348430114422186, - "c3": 0.42631429081744443, - "c4": 11.002756500354103, - "c5": -3.88548534073454, - "c6": -23.566419853666734, - "c7": -0.2680154327020432 + "points": { + "c1": 25.500975038663704, + "c2": 0.616469701567631, + "c3": -24.572558027354056, + "c4": -9.040029379157026, + "c5": -17.389710383909062, + "c6": -5.578976863044719, + "c7": -13.232935704145554 }, - "vertexSeeds": { - "c1": 3.5174133175808864, - "c2": 3.552566198744429, - "c3": 3.5028938722716463, - "c4": 3.516013320860572, - "c5": 3.362139500504448, - "c6": 3.4146723395886474, - "c7": 3.4601467682236735 + "offsets": { + "c1": 5.9546925566343045, + "c2": 5.104022191400828, + "c3": 4.253351826167367, + "c4": 3.40268146093389, + "c5": 2.552011095700414, + "c6": 1.7013407304669523, + "c7": 0.8506703652334762 }, "rgb": [238, 201, 159] }, @@ -452283,23 +452283,23 @@ "year": 1829, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": 6.921234180651506, - "c2": -5.409364882029196, - "c3": 1.154400358778208, - "c4": -0.9101506374509292, - "c5": -3.46523808684141, - "c6": 15.584248839359468, - "c7": 9.759577117338214 + "points": { + "c1": 5.816589132501889, + "c2": 0.5588700093634245, + "c3": -15.032413782421592, + "c4": -14.708843989105386, + "c5": -2.5185541824900692, + "c6": 15.18210645709955, + "c7": 3.2639345982528702 }, - "vertexSeeds": { - "c1": 7.286269430051814, - "c2": 7.286269430051814, - "c3": 7.286269430051814, - "c4": 7.286269430051814, - "c5": 7.286269430051814, - "c6": 7.286269430051814, - "c7": 7.286269430051814 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -452310,23 +452310,23 @@ "year": 1830, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -9.85027983358986, - "c2": -20.571282825151286, - "c3": 11.35699517904488, - "c4": -19.91005344014789, - "c5": 0.34629647322710255, - "c6": 8.82280651570111, - "c7": -7.958184150885845 + "points": { + "c1": 9.374898759896098, + "c2": 21.171338171467497, + "c3": -22.23891586756721, + "c4": 8.185306061404418, + "c5": -7.122143670921769, + "c6": 19.173250805178938, + "c7": 19.17816464619618 }, - "vertexSeeds": { - "c1": 4.960679527546598, - "c2": 4.966386973175197, - "c3": 4.9555981819705845, - "c4": 4.968336857198359, - "c5": 4.956035946778455, - "c6": 4.965643780558476, - "c7": 4.97348837395278 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517336829, + "c3": 5.94082293111426, + "c4": 4.752658344891219, + "c5": 3.5644937586686507, + "c6": 2.3763291724456095, + "c7": 1.1881645862230412 }, "rgb": [222, 0, 59] }, @@ -452337,23 +452337,23 @@ "year": 1830, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -21.983042486358606, - "c2": 14.056222569585401, - "c3": 0.7988914325928356, - "c4": 19.761989922760222, - "c5": -21.568269109472375, - "c6": -8.819053661799405, - "c7": -5.799670103318533 + "points": { + "c1": 28.02390910760009, + "c2": 28.619502918940313, + "c3": 14.226560675070239, + "c4": 14.867215805825268, + "c5": -5.64928785741651, + "c6": -28.860095158544112, + "c7": 26.7913874469375 }, - "vertexSeeds": { - "c1": 8.179430754753145, - "c2": 8.087254729309349, - "c3": 8.254202044073448, - "c4": 8.083003307433309, - "c5": 8.079454896909489, - "c6": 8.241550899522606, - "c7": 8.15375643995897 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295402, + "c3": 9.939898289412861, + "c4": 7.951918631530268, + "c5": 5.963938973647727, + "c6": 3.975959315765134, + "c7": 1.9879796578825404 }, "rgb": [58, 15, 49] }, @@ -452364,23 +452364,23 @@ "year": 1830, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 17.7218890811412, - "c2": 34.45804412503629, - "c3": 39.827906988752, - "c4": -36.24479982827944, - "c5": -5.2614641524059635, - "c6": 10.428142122050808, - "c7": -20.86993908671001 + "points": { + "c1": -27.916714046063905, + "c2": 6.123452325139866, + "c3": -43.40478843071673, + "c4": 25.78276798813028, + "c5": 23.089738424786837, + "c6": -16.120273780350132, + "c7": -22.404439653693387 }, - "vertexSeeds": { - "c1": 11.925908741688664, - "c2": 12.717471456875701, - "c3": 11.977391974940637, - "c4": 11.688107505550203, - "c5": 11.907653927902048, - "c6": 12.486943507413294, - "c7": 11.753102320491475 + "offsets": { + "c1": 21.423948220064727, + "c2": 18.3633841886269, + "c3": 15.302820157189107, + "c4": 12.242256125751279, + "c5": 9.18169209431345, + "c6": 6.121128062875619, + "c7": 3.060564031437829 }, "rgb": [86, 146, 138] }, @@ -452391,23 +452391,23 @@ "year": 1830, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": 23.433912804212618, - "c2": 21.64090426299945, - "c3": -23.90648235016667, - "c4": 14.94821602325058, - "c5": -3.3749390075423165, - "c6": -12.02266194247325, - "c7": -14.373855034708836 + "points": { + "c1": -23.97682169183405, + "c2": -21.234328260824768, + "c3": -13.01915043707782, + "c4": 24.21402728033779, + "c5": 4.171791827020613, + "c6": 2.7233482584154842, + "c7": -0.5072014684454587 }, - "vertexSeeds": { - "c1": 5.904289859560427, - "c2": 4.458777895883289, - "c3": 5.100745063561494, - "c4": 4.965608382104127, - "c5": 5.591552506941859, - "c6": 6.077899957401467, - "c7": 4.2839138963196985 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876558, + "c3": 7.975034674063801, + "c4": 6.380027739251043, + "c5": 4.785020804438281, + "c6": 3.1900138696255205, + "c7": 1.5950069348127602 }, "rgb": [77, 76, 132] }, @@ -452418,23 +452418,23 @@ "year": 1830, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -11.331134127050088, - "c2": 11.350319549492692, - "c3": -0.10550198037154601, - "c4": -25.463223458060174, - "c5": 14.45383769896392, - "c6": 5.2282193446029765, - "c7": -16.86257645886724 + "points": { + "c1": 12.362284422053978, + "c2": 19.804669401079675, + "c3": 23.19011578975449, + "c4": 18.770424959066386, + "c5": 18.184534367370947, + "c6": -10.454829277007033, + "c7": -21.41440490590788 }, - "vertexSeeds": { - "c1": 2.552727564812281, - "c2": 2.5919942540993604, - "c3": 2.685112329069785, - "c4": 2.606175817970288, - "c5": 2.7327137559840673, - "c6": 2.7350253443835455, - "c7": 2.713637412199113 + "offsets": { + "c1": 4.627831715210355, + "c2": 3.966712898751733, + "c3": 3.305594082293111, + "c4": 2.6444752658344886, + "c5": 1.9833564493758664, + "c6": 1.3222376329172443, + "c7": 0.6611188164586221 }, "rgb": [58, 15, 49] }, @@ -452445,23 +452445,23 @@ "year": 1830, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": 13.794101878171766, - "c2": 31.062029514508453, - "c3": -17.46975153083861, - "c4": 16.705811362026033, - "c5": -23.52557022421803, - "c6": -17.34224634675768, - "c7": 21.292599869977337 + "points": { + "c1": -37.331389762658, + "c2": 12.41256929972436, + "c3": -5.475673615301545, + "c4": 33.38219074154527, + "c5": -27.115845633177294, + "c6": 2.898148199086137, + "c7": -25.674558262594267 }, - "vertexSeeds": { - "c1": 5.3565647105934495, - "c2": 5.432283251130193, - "c3": 5.497007454416022, - "c4": 5.24896532698607, - "c5": 5.371204137631421, - "c6": 5.301972988808863, - "c7": 5.45532108917256 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -452472,23 +452472,23 @@ "year": 1830, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -6.723071071495969, - "c2": -7.3724057805204595, - "c3": 23.223258082871105, - "c4": -15.131554810253377, - "c5": -12.726822189389516, - "c6": 15.049612054940205, - "c7": 17.048559586154937 + "points": { + "c1": 33.021186898138154, + "c2": 25.49365589887246, + "c3": -20.795849444376028, + "c4": -2.827387390303194, + "c5": 26.68342690171272, + "c6": 30.095440669314442, + "c7": 30.699730416207373 }, - "vertexSeeds": { - "c1": 7.476182665572842, - "c2": 7.915556978895172, - "c3": 7.870734432188376, - "c4": 7.237867132860357, - "c5": 7.347474174477247, - "c6": 7.495192662038768, - "c7": 7.721078079067571 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -452499,23 +452499,23 @@ "year": 1830, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -1.1497695874646006, - "c2": -19.118300805121194, - "c3": 4.614712953402414, - "c4": 4.379654824435136, - "c5": -9.251354595045688, - "c6": -18.776855825600208, - "c7": 20.5973162403642 + "points": { + "c1": -19.568175985331266, + "c2": 9.927544977974769, + "c3": 12.437195504103222, + "c4": 22.579837015842543, + "c5": 6.438422724199903, + "c6": 25.756725018768805, + "c7": 10.854753588701485 }, - "vertexSeeds": { - "c1": 4.948897496717146, - "c2": 5.045784370734814, - "c3": 4.69899937779554, - "c4": 4.782369917250388, - "c5": 4.832681082178654, - "c6": 4.933895573121064, - "c7": 4.948742894594169 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [238, 201, 159] }, @@ -452526,23 +452526,23 @@ "year": 1830, "resistanceReported": false, "duration": 14515200, - "curveSeeds": { - "c1": 18.71431748033326, - "c2": 5.734074488261232, - "c3": 23.966047787119795, - "c4": -14.258686691867643, - "c5": 0.4900399449401931, - "c6": -21.884671226563015, - "c7": -21.119692935092274 + "points": { + "c1": 11.55929061267005, + "c2": 6.143539921271785, + "c3": -27.290761921348096, + "c4": -6.135074806701265, + "c5": -10.41809988466622, + "c6": -26.627523238475558, + "c7": -0.007233695497120607 }, - "vertexSeeds": { - "c1": 2.2976154144846506, - "c2": 2.333557279040754, - "c3": 2.2025344876027737, - "c4": 2.2952013899854453, - "c5": 2.296366967360781, - "c6": 2.155057184012089, - "c7": 2.3402620476450897 + "offsets": { + "c1": 3.9482200647249193, + "c2": 3.3841886269070756, + "c3": 2.8201571890892274, + "c4": 2.2561257512713837, + "c5": 1.6920943134535353, + "c6": 1.1280628756356919, + "c7": 0.5640314378178484 }, "rgb": [222, 0, 59] }, @@ -452553,23 +452553,23 @@ "year": 1830, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": 16.603021557371342, - "c2": -17.95440520631136, - "c3": 0.02168245190058471, - "c4": 5.201063338012499, - "c5": 0.31794601487850827, - "c6": -10.272942457617537, - "c7": -8.222096030190787 + "points": { + "c1": -7.933998335563603, + "c2": -7.010430017178653, + "c3": -10.689950724973448, + "c4": -3.4950698880344646, + "c5": 13.24143708423491, + "c6": 15.956610036774912, + "c7": -17.36870947434315 }, - "vertexSeeds": { - "c1": 6.4852693136208295, - "c2": 6.321837065758561, - "c3": 6.282277306700171, - "c4": 6.349091326235576, - "c5": 6.229277847737988, - "c6": 6.420721403057723, - "c7": 6.250404593208916 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474355, + "c3": 7.743874248728613, + "c4": 6.1950993989829035, + "c5": 4.646324549237162, + "c6": 3.0975496994914518, + "c7": 1.5487748497457412 }, "rgb": [86, 146, 138] }, @@ -452580,23 +452580,23 @@ "year": 1830, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -24.285412392915717, - "c2": -31.35775104785132, - "c3": 13.688387453441678, - "c4": 26.65991042923767, - "c5": -25.007360027773238, - "c6": 8.584834775491188, - "c7": -17.393441840333725 + "points": { + "c1": -20.962543337123, + "c2": -1.7127516100554558, + "c3": -3.8832650423632167, + "c4": -2.2422451177166636, + "c5": 19.046955666489133, + "c6": -10.607946904858498, + "c7": -32.11732070810367 }, - "vertexSeeds": { - "c1": 3.7292434145300293, - "c2": 3.9491654643682415, - "c3": 3.962459377748674, - "c4": 4.010688167268481, - "c5": 3.7440729993694077, - "c6": 3.9065564553501333, - "c7": 4.023583314675693 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.8252427184466, + "c3": 4.854368932038832, + "c4": 3.883495145631074, + "c5": 2.912621359223305, + "c6": 1.941747572815537, + "c7": 0.9708737864077684 }, "rgb": [222, 0, 59] }, @@ -452607,23 +452607,23 @@ "year": 1830, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": -20.366055579624053, - "c2": 21.080991059922457, - "c3": 13.520607932722758, - "c4": -4.352896747409154, - "c5": 12.470756419612133, - "c6": 3.9237047841123633, - "c7": 22.475342597734706 + "points": { + "c1": -7.2717137478495815, + "c2": 10.059570024592563, + "c3": -19.96564522042599, + "c4": 11.8003707914967, + "c5": 25.810358347147275, + "c6": 22.016096676158323, + "c7": -2.8695984905461884 }, - "vertexSeeds": { - "c1": 5.097962385802694, - "c2": 5.2740469375523915, - "c3": 5.244329266040037, - "c4": 5.319550397557981, - "c5": 5.1270620505134765, - "c6": 5.137160324428072, - "c7": 5.129950246464026 + "offsets": { + "c1": 9.158576051779935, + "c2": 7.850208044382799, + "c3": 6.541840036985662, + "c4": 5.233472029588547, + "c5": 3.9251040221914093, + "c6": 2.6167360147942733, + "c7": 1.3083680073971367 }, "rgb": [86, 146, 138] }, @@ -452634,23 +452634,23 @@ "year": 1830, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -18.396973814689375, - "c2": 9.167331796758255, - "c3": 14.106697142224736, - "c4": 8.506625366471308, - "c5": 7.9744458305770465, - "c6": -20.45898759980737, - "c7": 8.255671025543442 + "points": { + "c1": 12.807279877073523, + "c2": 11.58505419135167, + "c3": -2.755916176575308, + "c4": 2.389186718716253, + "c5": 17.624463270866347, + "c6": 12.48601866290495, + "c7": 9.400830806235529 }, - "vertexSeeds": { - "c1": 9.370550610633426, - "c2": 8.623597997773004, - "c3": 8.79256341797635, - "c4": 8.98172708442197, - "c5": 9.04602923329275, - "c6": 8.620646391792416, - "c7": 8.627505621131075 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -452661,23 +452661,23 @@ "year": 1830, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 18.243884615741276, - "c2": 9.040947758278374, - "c3": 19.437881780667322, - "c4": -15.09694202613953, - "c5": 5.869315892152272, - "c6": 2.889087627862814, - "c7": 10.370065398000445 + "points": { + "c1": 11.815832993704536, + "c2": -11.848274183963051, + "c3": 14.134898733642881, + "c4": 9.866060032778936, + "c5": 18.98263227095173, + "c6": -8.406859356425908, + "c7": -22.42537549984751 }, - "vertexSeeds": { - "c1": 3.477979274611399, - "c2": 3.477979274611399, - "c3": 3.477979274611399, - "c4": 3.477979274611399, - "c5": 3.477979274611399, - "c6": 3.477979274611399, - "c7": 3.477979274611399 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -452688,23 +452688,23 @@ "year": 1830, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 10.35732756632845, - "c2": -12.007183475534056, - "c3": 15.86708929028623, - "c4": 0.8864533528764298, - "c5": -1.145190310978009, - "c6": 25.36693979916513, - "c7": 7.811361511203394 + "points": { + "c1": -26.346587292577958, + "c2": 30.568306186452666, + "c3": 15.13494051802499, + "c4": 10.858775035438313, + "c5": -16.03315050644845, + "c6": 3.9402953310276914, + "c7": 11.326041029595707 }, - "vertexSeeds": { - "c1": 5.728392990652848, - "c2": 5.580255248572489, - "c3": 5.909538631425061, - "c4": 5.443372823332014, - "c5": 5.693596637955572, - "c6": 5.370583795457921, - "c7": 5.821322743217083 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -452715,23 +452715,23 @@ "year": 1830, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": -12.517946290879873, - "c2": 22.107774773603374, - "c3": 2.0691958398527746, - "c4": -16.240976814048835, - "c5": 4.048717943493141, - "c6": -22.425673204906595, - "c7": -23.518652785177768 + "points": { + "c1": -23.35680575823627, + "c2": 7.912169321237656, + "c3": 21.984387032475418, + "c4": 17.536326206909628, + "c5": -13.912611823708286, + "c6": -1.0428707317095842, + "c7": 6.230772988438652 }, - "vertexSeeds": { - "c1": 3.586933041372656, - "c2": 3.4913262100304086, - "c3": 3.7447032624208267, - "c4": 3.5721051358860296, - "c5": 3.733678425880457, - "c6": 3.650232378736674, - "c7": 3.551976198815984 + "offsets": { + "c1": 6.27831715210356, + "c2": 5.381414701803052, + "c3": 4.484512251502543, + "c4": 3.587609801202034, + "c5": 2.690707350901526, + "c6": 1.793804900601017, + "c7": 0.8969024503005085 }, "rgb": [77, 76, 132] }, @@ -452742,23 +452742,23 @@ "year": 1830, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": -16.77245904702411, - "c2": 14.968798753322481, - "c3": -3.3753735331642964, - "c4": -9.297535534837754, - "c5": 13.77846472957711, - "c6": -8.074051516403385, - "c7": -13.509288580645869 + "points": { + "c1": 16.13042458275114, + "c2": 18.73931269965361, + "c3": 17.7349394805518, + "c4": 20.556433504348263, + "c5": -9.597317892741184, + "c6": 12.389019089565352, + "c7": -14.550080831376256 }, - "vertexSeeds": { - "c1": 6.6204892759046094, - "c2": 6.3521973363999, - "c3": 6.524740534787381, - "c4": 6.6371542922338085, - "c5": 6.565338439897512, - "c6": 6.209917434318333, - "c7": 6.601803973688913 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796121, + "c3": 7.9288025889967715, + "c4": 6.343042071197424, + "c5": 4.757281553398074, + "c6": 3.171521035598698, + "c7": 1.585760517799349 }, "rgb": [222, 0, 59] }, @@ -452769,23 +452769,23 @@ "year": 1830, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": -8.746846189577916, - "c2": -3.6261841521992526, - "c3": -6.977684229824915, - "c4": -17.75483565491758, - "c5": 17.798955249192375, - "c6": -16.120648201220504, - "c7": -10.803682626020315 + "points": { + "c1": 4.433519172162978, + "c2": 10.026413522698906, + "c3": 3.705986496688009, + "c4": 1.065905029078877, + "c5": -10.617115902328067, + "c6": 14.030487893310678, + "c7": -2.5210978213241297 }, - "vertexSeeds": { - "c1": 4.858138913099644, - "c2": 4.800048894379348, - "c3": 4.838403323679364, - "c4": 4.800306822665897, - "c5": 4.847817727953919, - "c6": 4.8206798019983115, - "c7": 4.842354223600446 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135897, + "c3": 5.82524271844661, + "c4": 4.660194174757265, + "c5": 3.495145631067978, + "c6": 2.3300970873786326, + "c7": 1.1650485436892872 }, "rgb": [222, 0, 59] }, @@ -452796,23 +452796,23 @@ "year": 1830, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": -2.7368164922711866, - "c2": -15.900320253512335, - "c3": -1.5818958979909787, - "c4": 4.085882171353749, - "c5": -6.0236436375472895, - "c6": -14.786167922733483, - "c7": -15.330459922167618 + "points": { + "c1": 9.232198921913735, + "c2": 18.12658399384931, + "c3": 1.7051239034347638, + "c4": 19.328839687330266, + "c5": -15.949588024470945, + "c6": 0.9379469557791964, + "c7": 16.51843728365641 }, - "vertexSeeds": { - "c1": 5.002456275311134, - "c2": 5.0057931130528, - "c3": 4.998813967713468, - "c4": 5.003891372828756, - "c5": 5.000912511611993, - "c6": 5.009600352345794, - "c7": 4.999449513242908 + "offsets": { + "c1": 8.381877022653722, + "c2": 7.184466019417272, + "c3": 5.987055016181298, + "c4": 4.789644012944848, + "c5": 3.592233009708874, + "c6": 2.394822006472424, + "c7": 1.1974110032364502 }, "rgb": [238, 201, 159] }, @@ -452823,23 +452823,23 @@ "year": 1830, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": 12.935603370464271, - "c2": 18.68993034822143, - "c3": 8.10996081466882, - "c4": 12.158091842733747, - "c5": 4.672250166363646, - "c6": 16.380180061928236, - "c7": 7.887088783093322 + "points": { + "c1": 11.672164967258539, + "c2": -1.596090477945328, + "c3": -5.362572202142125, + "c4": -4.756723768179032, + "c5": -20.492068822161873, + "c6": -9.581665849247129, + "c7": -11.067138536064322 }, - "vertexSeeds": { - "c1": 9.534435795729918, - "c2": 9.631146493251475, - "c3": 9.63967475107855, - "c4": 9.63124952660499, - "c5": 9.568911833586961, - "c6": 9.67522891585894, - "c7": 9.649656425271589 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.84188626907075, + "c3": 11.534905224225641, + "c4": 9.227924179380432, + "c5": 6.9209431345353245, + "c6": 4.613962089690216, + "c7": 2.306981044845108 }, "rgb": [77, 76, 132] }, @@ -452850,23 +452850,23 @@ "year": 1830, "resistanceReported": false, "duration": 8985600, - "curveSeeds": { - "c1": 16.17601019521583, - "c2": -9.819434424503791, - "c3": -9.798066625214863, - "c4": -5.34001203469537, - "c5": -7.750016847902327, - "c6": 4.523367883770458, - "c7": 4.902871216026181 + "points": { + "c1": 13.672330353761772, + "c2": 11.255803325644642, + "c3": -3.2347064918653707, + "c4": -4.989106233893214, + "c5": 3.092537542963825, + "c6": -11.189418497774781, + "c7": 15.07485334253628 }, - "vertexSeeds": { - "c1": 3.957239547740368, - "c2": 6.949022746972538, - "c3": 4.658653034266541, - "c4": 5.30016332449241, - "c5": 3.596414734724247, - "c6": 4.081338731623407, - "c7": 4.7341281633405 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163662, + "c3": 8.714748035136383, + "c4": 6.971798428109107, + "c5": 5.228848821081831, + "c6": 3.4858992140545535, + "c7": 1.7429496070272759 }, "rgb": [77, 76, 132] }, @@ -452877,23 +452877,23 @@ "year": 1830, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -16.44813626067311, - "c2": 14.033343547648485, - "c3": 2.4494904001653524, - "c4": 17.17348050518426, - "c5": -17.229478616817907, - "c6": 7.745386068680215, - "c7": -10.263428510753538 + "points": { + "c1": -17.025314281490154, + "c2": 19.40273549911266, + "c3": 9.309536344188828, + "c4": -8.22535586817444, + "c5": 21.741060071897166, + "c6": 23.241088159903015, + "c7": -16.818724535194097 }, - "vertexSeeds": { - "c1": 7.444426669756439, - "c2": 7.691351543046372, - "c3": 7.648685003183633, - "c4": 7.758554259200615, - "c5": 7.891252066506451, - "c6": 7.476731109753201, - "c7": 7.291600620721893 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [222, 0, 59] }, @@ -452904,23 +452904,23 @@ "year": 1830, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": 14.188585586527541, - "c2": 20.295674062288395, - "c3": -4.318232328308117, - "c4": -6.253619872034491, - "c5": -17.23227914150527, - "c6": -14.72112677668579, - "c7": -14.032727801942277 + "points": { + "c1": -6.069405711238513, + "c2": -24.178099476206643, + "c3": -4.171558245408537, + "c4": 9.670235550617885, + "c5": -10.532309865617503, + "c6": 27.24920721945408, + "c7": -28.96970967623176 }, - "vertexSeeds": { - "c1": 5.379880061531715, - "c2": 5.372529476745894, - "c3": 5.309942750971486, - "c4": 5.303752140956511, - "c5": 5.394793584469395, - "c6": 5.486579544804897, - "c7": 5.423422314267253 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -452931,23 +452931,23 @@ "year": 1830, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 9.7683170864039, - "c2": 0.4922195222329506, - "c3": -8.001518738361494, - "c4": 0.6869679014817436, - "c5": -24.954290705930962, - "c6": 23.23036223650956, - "c7": 15.66129485055399 + "points": { + "c1": 27.901760576916256, + "c2": -18.19210034662961, + "c3": -18.820594476461075, + "c4": -15.984496149668553, + "c5": 11.61360024475589, + "c6": -20.811351106382894, + "c7": -13.358777956526788 }, - "vertexSeeds": { - "c1": 5.279041540832499, - "c2": 5.3380732340351305, - "c3": 5.445924261457595, - "c4": 5.4850206366190095, - "c5": 5.407046081516452, - "c6": 5.317446279548718, - "c7": 5.411013402933453 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -452958,23 +452958,23 @@ "year": 1830, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": 7.767376734420637, - "c2": -4.840718572568322, - "c3": 5.683801874951467, - "c4": 1.5753923384483883, - "c5": -11.267784599967856, - "c6": 9.782068965254606, - "c7": -10.153243201454421 + "points": { + "c1": -4.67093556393182, + "c2": -16.27729667598881, + "c3": 13.320021648494755, + "c4": 9.57878276472977, + "c5": 6.073061401633655, + "c6": 14.30283514870526, + "c7": 10.43005901662588 }, - "vertexSeeds": { - "c1": 5.401578710657555, - "c2": 5.436082042566631, - "c3": 5.453736255536621, - "c4": 5.436263932358493, - "c5": 5.441931800500331, - "c6": 5.455364233581205, - "c7": 5.409109773386439 + "offsets": { + "c1": 9.223300970873787, + "c2": 7.905686546463283, + "c3": 6.588072122052693, + "c4": 5.270457697642189, + "c5": 3.952843273231598, + "c6": 2.6352288488210944, + "c7": 1.3176144244105035 }, "rgb": [222, 0, 59] }, @@ -452985,23 +452985,23 @@ "year": 1830, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 23.20593392753643, - "c2": -13.10351497200609, - "c3": 18.381989432851345, - "c4": 2.9151544088901318, - "c5": -4.795961772000126, - "c6": -15.932674793550744, - "c7": -25.391023140146004 + "points": { + "c1": -22.73437761390126, + "c2": -15.432460480379532, + "c3": 26.41315861477707, + "c4": -4.329841779758365, + "c5": -14.391443408948803, + "c6": -8.46190916407674, + "c7": -3.0286347552691595 }, - "vertexSeeds": { - "c1": 5.39021282834454, - "c2": 5.492326920371507, - "c3": 5.291168131675312, - "c4": 5.347789589018427, - "c5": 5.389537694536895, - "c6": 5.421376260505332, - "c7": 5.381494530021208 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -453012,23 +453012,23 @@ "year": 1830, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -4.664971089487828, - "c2": 7.611428235287072, - "c3": 9.60519638864993, - "c4": 25.002291152311024, - "c5": -15.64904231038702, - "c6": 26.256181822357846, - "c7": 0.3345567045873281 + "points": { + "c1": -15.86419278648141, + "c2": 0.5892703492837086, + "c3": -22.691217426159756, + "c4": -34.54929049290772, + "c5": 28.03349203449774, + "c6": 1.5919948047163928, + "c7": 4.113739533435641 }, - "vertexSeeds": { - "c1": 5.900044895171677, - "c2": 5.4420312138569455, - "c3": 5.865805979594167, - "c4": 5.718284157015971, - "c5": 5.945299751978764, - "c6": 5.754413125366918, - "c7": 5.808362893470831 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -453039,23 +453039,23 @@ "year": 1830, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 31.90804130612969, - "c2": -16.454287164785224, - "c3": 4.3714145330866, - "c4": 20.81276035317216, - "c5": -6.548171553029242, - "c6": -4.660037508166205, - "c7": 29.272006527386793 + "points": { + "c1": 7.030583288466474, + "c2": -32.13727003340707, + "c3": 4.063725557375321, + "c4": 21.670154219701857, + "c5": -25.548345651682393, + "c6": -17.91466337926651, + "c7": 18.997276255668517 }, - "vertexSeeds": { - "c1": 3.044689532321655, - "c2": 3.0637461938005384, - "c3": 3.1097721171075956, - "c4": 3.0981959348247057, - "c5": 3.145035964918281, - "c6": 3.0460472004699586, - "c7": 3.0146369082247775 + "offsets": { + "c1": 5.339805825242718, + "c2": 4.57697642163662, + "c3": 3.814147018030522, + "c4": 3.051317614424408, + "c5": 2.28848821081831, + "c6": 1.5256588072122124, + "c7": 0.7628294036060977 }, "rgb": [77, 76, 132] }, @@ -453066,23 +453066,23 @@ "year": 1831, "resistanceReported": false, "duration": 62899200, - "curveSeeds": { - "c1": -34.179467647787455, - "c2": 77.77459827972203, - "c3": -54.70599756883541, - "c4": -43.92110820073893, - "c5": 17.154139917957764, - "c6": 30.329266110926028, - "c7": 15.109764184719069 + "points": { + "c1": 80.39462377599693, + "c2": -19.816171504627775, + "c3": 46.41943505424389, + "c4": -23.58888954428688, + "c5": -39.50784531989267, + "c6": -18.217421508362342, + "c7": 18.42954176386627 }, - "vertexSeeds": { - "c1": 5.379588930833198, - "c2": 5.249816735473364, - "c3": 5.280878312035975, - "c4": 5.454209278224435, - "c5": 5.4888002359864165, - "c6": 5.356469613648959, - "c7": 5.289347052830405 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -453093,23 +453093,23 @@ "year": 1831, "resistanceReported": false, "duration": 32054400, - "curveSeeds": { - "c1": -42.70804062358432, - "c2": -16.599589751803233, - "c3": 11.613307999445446, - "c4": -6.0102943320941264, - "c5": 19.61133726778155, - "c6": -8.352543699934401, - "c7": -43.96864068717996 + "points": { + "c1": 3.108870060908828, + "c2": -6.860541713717758, + "c3": 30.570927808577082, + "c4": 13.477220292328468, + "c5": -27.7547382106997, + "c6": 29.392313511234008, + "c7": 46.433502928844845 }, - "vertexSeeds": { - "c1": 5.306370315078817, - "c2": 5.242591757913497, - "c3": 5.275374401853043, - "c4": 5.283932662488347, - "c5": 5.428088513672029, - "c6": 5.454765551720808, - "c7": 5.464141652671469 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -453120,23 +453120,23 @@ "year": 1831, "resistanceReported": false, "duration": 33436800, - "curveSeeds": { - "c1": -39.28984201697339, - "c2": -8.377652610244951, - "c3": 11.129340590018963, - "c4": 8.407200791798111, - "c5": 35.13405774655217, - "c6": 34.28855210524395, - "c7": -38.97720416757298 + "points": { + "c1": 34.582350410484366, + "c2": 16.198633224952616, + "c3": 8.609643206848894, + "c4": 2.7924821816967125, + "c5": 39.85084919079942, + "c6": 16.225479034074752, + "c7": 41.44153503477813 }, - "vertexSeeds": { - "c1": 7.417874459304307, - "c2": 7.72165438533279, - "c3": 7.549140630709038, - "c4": 7.642118155262823, - "c5": 7.574428919432846, - "c6": 7.424915714086995, - "c7": 7.386627321852411 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -453147,23 +453147,23 @@ "year": 1831, "resistanceReported": false, "duration": 37324800, - "curveSeeds": { - "c1": 49.117078184445106, - "c2": 10.093447820487917, - "c3": 49.976994672918124, - "c4": -44.552620454787274, - "c5": 20.03668991728962, - "c6": 0.1937266713511434, - "c7": 40.491897595096276 + "points": { + "c1": 31.551650844124367, + "c2": 32.480824278141455, + "c3": -15.942795914604702, + "c4": -22.33015765144723, + "c5": -42.4241193380389, + "c6": -17.567826927251865, + "c7": -16.191825979524538 }, - "vertexSeeds": { - "c1": 5.387417303350882, - "c2": 5.426679062031061, - "c3": 5.252102225819548, - "c4": 5.297944210812355, - "c5": 5.429316547897098, - "c6": 5.234278693024857, - "c7": 5.436355030344 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -453174,23 +453174,23 @@ "year": 1830, "resistanceReported": false, "duration": 30326400, - "curveSeeds": { - "c1": -42.83730021661176, - "c2": 9.44912395377225, - "c3": -17.408458292337485, - "c4": -3.2961682680374835, - "c5": 4.5563237460364405, - "c6": 29.837626283050803, - "c7": -14.225712917306552 + "points": { + "c1": -20.874997906588003, + "c2": -26.74807944260044, + "c3": -35.83736759625372, + "c4": -20.992849278355585, + "c5": 2.529311730275303, + "c6": -9.44478151299976, + "c7": 13.715136599782447 }, - "vertexSeeds": { - "c1": 0.971502590673575, - "c2": 0.971502590673575, - "c3": 0.971502590673575, - "c4": 0.971502590673575, - "c5": 0.971502590673575, - "c6": 0.971502590673575, - "c7": 0.971502590673575 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -453201,23 +453201,23 @@ "year": 1831, "resistanceReported": false, "duration": 30931200, - "curveSeeds": { - "c1": 38.21347442685268, - "c2": -5.803961281123563, - "c3": 25.11769744082296, - "c4": -34.59687069861836, - "c5": -9.463281770522784, - "c6": 39.71509119013276, - "c7": 32.239401285145256 + "points": { + "c1": -31.351918123143584, + "c2": -24.143866790707015, + "c3": 18.00662826378371, + "c4": -33.3307026300394, + "c5": -45.85126536882084, + "c6": -26.07311099604159, + "c7": 44.10952583800137 }, - "vertexSeeds": { - "c1": 9.724537818523004, - "c2": 9.737205853107785, - "c3": 9.765320067760294, - "c4": 9.788916393179743, - "c5": 9.723539528068688, - "c6": 9.723064435800556, - "c7": 9.736454211246329 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312131, + "c3": 11.67360147942662, + "c4": 9.338881183541343, + "c5": 7.004160887656066, + "c6": 4.669440591770788, + "c7": 2.334720295885278 }, "rgb": [222, 0, 59] }, @@ -453228,23 +453228,23 @@ "year": 1830, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -19.32380216731075, - "c2": -33.893485952743134, - "c3": 26.93142057854329, - "c4": 19.783503275732997, - "c5": -35.938316663458, - "c6": 11.348019043947232, - "c7": -14.668419750775879 + "points": { + "c1": -41.193168916947165, + "c2": -16.99168426336862, + "c3": 11.10226783294037, + "c4": -21.941431792709203, + "c5": -3.8399649355316896, + "c6": 34.83514220778614, + "c7": 16.363331958258172 }, - "vertexSeeds": { - "c1": 1.0587725585063608, - "c2": 1.070092137016497, - "c3": 1.0799436264557112, - "c4": 1.1378187698600342, - "c5": 1.0739091926005404, - "c6": 1.1497018658595155, - "c7": 1.116597796455266 + "offsets": { + "c1": 1.9741100323624596, + "c2": 1.6920943134535378, + "c3": 1.4100785945446137, + "c4": 1.1280628756356919, + "c5": 0.8460471567267677, + "c6": 0.5640314378178459, + "c7": 0.2820157189089242 }, "rgb": [86, 146, 138] }, @@ -453255,23 +453255,23 @@ "year": 1831, "resistanceReported": false, "duration": 42940800, - "curveSeeds": { - "c1": -28.962451930780162, - "c2": -31.94524492519039, - "c3": 33.20214512873206, - "c4": 38.55960786364971, - "c5": 55.35572056664615, - "c6": -17.74632494069136, - "c7": 7.275747573778538 + "points": { + "c1": -48.419902253853614, + "c2": -14.957996942419939, + "c3": 17.473093656637168, + "c4": 4.321276319562543, + "c5": -31.09744696162188, + "c6": -54.51163438230623, + "c7": 33.42171575567455 }, - "vertexSeeds": { - "c1": 3.363236680337868, - "c2": 3.179107332462118, - "c3": 3.3139871569999446, - "c4": 3.1233451584302, - "c5": 3.087783018077255, - "c6": 3.2700748142200027, - "c7": 3.1140814833407755 + "offsets": { + "c1": 5.6634304207119746, + "c2": 4.854368932038833, + "c3": 4.0453074433657, + "c4": 3.236245954692558, + "c5": 2.4271844660194164, + "c6": 1.6181229773462746, + "c7": 0.8090614886731419 }, "rgb": [58, 15, 49] }, @@ -453282,23 +453282,23 @@ "year": 1830, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": 1.0894187788746876, - "c2": -7.744458164253722, - "c3": 12.836262868473987, - "c4": -19.442175329246215, - "c5": 27.355578524120638, - "c6": -30.65677196805471, - "c7": 10.225617089049926 + "points": { + "c1": -25.249058733242645, + "c2": 36.22638270688473, + "c3": 8.965246192172039, + "c4": 9.252392396314356, + "c5": -27.800559229978415, + "c6": 37.7198069162933, + "c7": 38.18594387274835 }, - "vertexSeeds": { - "c1": 8.668222742907009, - "c2": 9.44421859272029, - "c3": 9.170851923291087, - "c4": 9.485443112345992, - "c5": 9.29658559316138, - "c6": 9.37002197531109, - "c7": 9.361033005960666 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -453309,23 +453309,23 @@ "year": 1830, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -23.871410358206568, - "c2": 4.778957978759543, - "c3": -31.5599100059954, - "c4": 20.589379354755195, - "c5": -13.90681567154428, - "c6": 3.610464604133412, - "c7": 3.9462713504678675 + "points": { + "c1": 31.536222452855448, + "c2": 24.048979879948668, + "c3": 3.9813522964155936, + "c4": -17.0833757977415, + "c5": 32.69312913638037, + "c6": -27.088393036237974, + "c7": -22.310683307339538 }, - "vertexSeeds": { - "c1": 5.156077860628445, - "c2": 5.064075162324643, - "c3": 5.512411635127873, - "c4": 5.0640001685227745, - "c5": 5.669770332647058, - "c6": 5.629901880689896, - "c7": 5.257790161461699 + "offsets": { + "c1": 9.48220064724919, + "c2": 8.127600554785023, + "c3": 6.773000462320846, + "c4": 5.418400369856679, + "c5": 4.063800277392511, + "c6": 2.7092001849283394, + "c7": 1.3546000924641675 }, "rgb": [222, 0, 59] }, @@ -453336,23 +453336,23 @@ "year": 1830, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 26.837398786321497, - "c2": -20.586843410027438, - "c3": -2.827985940151443, - "c4": -7.385614725211148, - "c5": 12.124962812851859, - "c6": 0.8859241805824212, - "c7": -25.226086467041632 + "points": { + "c1": -0.2438426509948073, + "c2": 4.615003582160615, + "c3": -19.00803739899154, + "c4": 10.751118560458625, + "c5": 1.7640227651668319, + "c6": 20.561803874308243, + "c7": 15.4339783715732 }, - "vertexSeeds": { - "c1": 8.669868200575944, - "c2": 8.49282628886123, - "c3": 9.865708394074055, - "c4": 9.135025667921225, - "c5": 8.81197079838131, - "c6": 8.590456734171822, - "c7": 9.676352829673649 + "offsets": { + "c1": 16.796116504854368, + "c2": 14.396671289875167, + "c3": 11.997226074895979, + "c4": 9.59778085991678, + "c5": 7.19833564493759, + "c6": 4.79889042995839, + "c7": 2.399445214979189 }, "rgb": [58, 15, 49] }, @@ -453363,23 +453363,23 @@ "year": 1830, "resistanceReported": false, "duration": 19526400, - "curveSeeds": { - "c1": -17.383024793906134, - "c2": 11.851241216636094, - "c3": 28.738854872383083, - "c4": 9.009224091163727, - "c5": -7.356763427067683, - "c6": 19.023261075771767, - "c7": -27.114667715531596 + "points": { + "c1": 32.91033280984307, + "c2": 19.900794071288978, + "c3": 28.4014543663909, + "c4": 17.840584802585617, + "c5": 16.36763624962788, + "c6": 9.021527266724462, + "c7": 16.934544809545706 }, - "vertexSeeds": { - "c1": 5.595711050887568, - "c2": 5.390207197106872, - "c3": 5.464353793740925, - "c4": 5.828313758992797, - "c5": 5.791838526235149, - "c6": 5.487255341998102, - "c7": 5.530455756904177 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -453390,23 +453390,23 @@ "year": 1830, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -17.903145769149145, - "c2": 17.134464915926813, - "c3": 10.64951472341182, - "c4": -6.945383960044012, - "c5": -14.685215888362215, - "c6": 3.8025757802152, - "c7": -26.956452991107472 + "points": { + "c1": 16.87185098400891, + "c2": 18.288674704349745, + "c3": -14.364744686047754, + "c4": 19.558424095796703, + "c5": 23.22796762925089, + "c6": -34.862836583002704, + "c7": -25.12143381703184 }, - "vertexSeeds": { - "c1": 5.4627236211685375, - "c2": 5.402945761678945, - "c3": 5.361422725624371, - "c4": 5.282370110909964, - "c5": 5.48464899872959, - "c6": 5.411661240397342, - "c7": 5.393778774216747 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -453417,23 +453417,23 @@ "year": 1831, "resistanceReported": false, "duration": 33696000, - "curveSeeds": { - "c1": -40.76216911629355, - "c2": 40.448141920646044, - "c3": -19.488384194448983, - "c4": -45.92838040595166, - "c5": -17.327123615529565, - "c6": -26.132498684077603, - "c7": -26.90808363031633 + "points": { + "c1": 48.80809883391553, + "c2": 33.87131851996788, + "c3": 33.722501274565865, + "c4": 17.428328926352172, + "c5": 27.335623490892253, + "c6": -32.74695875006654, + "c7": 25.275388546041818 }, - "vertexSeeds": { - "c1": 7.894865615715683, - "c2": 7.4906523483198235, - "c3": 7.276788435122751, - "c4": 7.4027025631082495, - "c5": 7.530912818459489, - "c6": 7.919095485289839, - "c7": 7.407710341888286 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [238, 201, 159] }, @@ -453444,23 +453444,23 @@ "year": 1831, "resistanceReported": true, "duration": 31104000, - "curveSeeds": { - "c1": -9.339832673174058, - "c2": 38.21979958183546, - "c3": -38.458276179195416, - "c4": 33.66495873923259, - "c5": -39.06341617916041, - "c6": -10.04813766465761, - "c7": 32.43767337049067 + "points": { + "c1": -20.171973361698235, + "c2": 40.788739084248505, + "c3": 39.43963224809072, + "c4": -40.32701846734895, + "c5": 10.67439912517031, + "c6": -13.857672831359231, + "c7": 13.060247031966433 }, - "vertexSeeds": { - "c1": 1.7681347150259068, - "c2": 1.7681347150259068, - "c3": 1.7681347150259068, - "c4": 1.7681347150259068, - "c5": 1.7681347150259068, - "c6": 1.7681347150259068, - "c7": 1.7681347150259068 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -453471,23 +453471,23 @@ "year": 1830, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 16.2630186431256, - "c2": -17.8539361516564, - "c3": -7.038515613878715, - "c4": -20.094464269794866, - "c5": -15.46694515385018, - "c6": -13.081438463326672, - "c7": 12.84200725059802 + "points": { + "c1": -15.421499131416452, + "c2": 24.00863640585195, + "c3": 15.600733131559597, + "c4": 0.8785056405892888, + "c5": 25.64138161255296, + "c6": 19.87620951966861, + "c7": -22.694961617564175 }, - "vertexSeeds": { - "c1": 5.937288651345314, - "c2": 5.440373603083315, - "c3": 5.601699602593585, - "c4": 5.53588391309668, - "c5": 5.555581014609028, - "c6": 5.524325214166541, - "c7": 5.366133092409513 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -453498,23 +453498,23 @@ "year": 1830, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 4.99513908035507, - "c2": -4.857221264789597, - "c3": -3.321770205828848, - "c4": 9.917594566035227, - "c5": 11.440941679072324, - "c6": 10.529705625894515, - "c7": -12.570310309608125 + "points": { + "c1": 1.3040552724169139, + "c2": -4.440937111571166, + "c3": 16.76028452467284, + "c4": 9.827837295710914, + "c5": 9.994973504868746, + "c6": 2.2167933693757647, + "c7": 17.52795795198587 }, - "vertexSeeds": { - "c1": 9.286424044560974, - "c2": 8.987541494043878, - "c3": 9.064815206464097, - "c4": 8.909348037390608, - "c5": 8.744063472581988, - "c6": 8.709224411848277, - "c7": 8.678943895420279 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -453525,23 +453525,23 @@ "year": 1831, "resistanceReported": false, "duration": 25488000, - "curveSeeds": { - "c1": 12.157544979572933, - "c2": -26.842403892320306, - "c3": -24.79439175353431, - "c4": 36.190310388252016, - "c5": 11.40808414798196, - "c6": 37.62847531457629, - "c7": 30.178315386529746 + "points": { + "c1": 26.19247610569147, + "c2": 14.959999583670324, + "c3": -36.53435891027924, + "c4": 25.90344804251994, + "c5": 25.91202190384827, + "c6": 10.338532767675659, + "c7": -7.859250291571513 }, - "vertexSeeds": { - "c1": 6.040985913533753, - "c2": 6.03325752476017, - "c3": 6.028683743619271, - "c4": 6.03912312454672, - "c5": 6.018525755322055, - "c6": 6.011813014847027, - "c7": 6.015145015801488 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589405, + "c3": 7.2353213129912985, + "c4": 5.7882570503930015, + "c5": 4.341192787794703, + "c6": 2.8941285251964044, + "c7": 1.4470642625982981 }, "rgb": [86, 146, 138] }, @@ -453552,23 +453552,23 @@ "year": 1831, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -3.111008068882388, - "c2": 4.7705604075718355, - "c3": 23.250521607239833, - "c4": -15.449199246375528, - "c5": -29.27983367082895, - "c6": 23.14645987607397, - "c7": -28.60062906657602 + "points": { + "c1": 24.9631489043906, + "c2": 31.60455581333359, + "c3": 23.767059539547425, + "c4": -21.098563866490167, + "c5": 14.436722216601254, + "c6": -6.430350262311883, + "c7": -18.0488159590923 }, - "vertexSeeds": { - "c1": 12.171622278189773, - "c2": 12.101407589416771, - "c3": 11.367976499088954, - "c4": 11.231786130665661, - "c5": 11.473905333225499, - "c6": 11.338269633146977, - "c7": 11.549177909637853 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.753120665742014, + "c3": 14.794267221451694, + "c4": 11.835413777161342, + "c5": 8.876560332871023, + "c6": 5.917706888580671, + "c7": 2.958853444290317 }, "rgb": [58, 15, 49] }, @@ -453579,23 +453579,23 @@ "year": 1831, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -24.51644170216511, - "c2": 19.143162885640116, - "c3": -23.900131873995544, - "c4": 23.051799049172907, - "c5": 5.873176945821534, - "c6": -11.165413733993226, - "c7": -32.16009631998456 + "points": { + "c1": -18.311529394480214, + "c2": 0.5487922004974166, + "c3": -24.109193526260317, + "c4": 1.4840138877621385, + "c5": -27.89277031951965, + "c6": -24.256634911369176, + "c7": 22.601327287735153 }, - "vertexSeeds": { - "c1": 4.193756236213653, - "c2": 5.215565133590909, - "c3": 4.974987395345292, - "c4": 5.428935931242121, - "c5": 4.300593664385044, - "c6": 4.068156103105468, - "c7": 4.910938102586119 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664355, + "c3": 6.703652334720296, + "c4": 5.362921867776237, + "c5": 4.0221914008321775, + "c6": 2.6814609338881183, + "c7": 1.3407304669440592 }, "rgb": [222, 0, 59] }, @@ -453606,23 +453606,23 @@ "year": 1830, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 6.177951558828482, - "c2": -14.454192983576824, - "c3": 13.389718567084962, - "c4": -8.593611938462773, - "c5": 8.303126063562758, - "c6": 23.495473707550154, - "c7": 21.26807120776069 + "points": { + "c1": -20.914347152812972, + "c2": -0.13054883885255109, + "c3": 9.070516945874566, + "c4": -1.8447426321571783, + "c5": -23.563801481206895, + "c6": 20.69364708183477, + "c7": -25.63383011807635 }, - "vertexSeeds": { - "c1": 2.716620674548826, - "c2": 2.715402724722435, - "c3": 2.706592150985862, - "c4": 2.71912465941073, - "c5": 2.7061929850499107, - "c6": 2.7128496213984317, - "c7": 2.7028373048175363 + "offsets": { + "c1": 4.563106796116505, + "c2": 3.911234396671308, + "c3": 3.2593619972261116, + "c4": 2.607489597780915, + "c5": 1.9556171983355892, + "c6": 1.3037447988903927, + "c7": 0.6518723994451964 }, "rgb": [86, 146, 138] }, @@ -453633,23 +453633,23 @@ "year": 1830, "resistanceReported": false, "duration": 9590400, - "curveSeeds": { - "c1": -9.535584286201713, - "c2": -10.800514461918159, - "c3": 12.37968470396087, - "c4": -17.816615579389566, - "c5": -18.347907056774524, - "c6": 14.935672908874686, - "c7": 0.1750979846190397 + "points": { + "c1": -16.84115303791842, + "c2": -1.66145192275021, + "c3": 13.49640054914623, + "c4": -3.5585558332643927, + "c5": 20.52675090700854, + "c6": -14.621680590079496, + "c7": -17.663123054112198 }, - "vertexSeeds": { - "c1": 5.811350015165246, - "c2": 5.749017654594193, - "c3": 5.492109935590722, - "c4": 5.7332648377025786, - "c5": 5.412707600948027, - "c6": 5.445948996674113, - "c7": 5.785945669353358 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -453660,23 +453660,23 @@ "year": 1831, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -15.935523339674862, - "c2": -31.86002223167759, - "c3": 17.00204720478326, - "c4": 5.079450317223966, - "c5": -15.933146514767799, - "c6": 12.175376556492623, - "c7": 15.466689590277383 + "points": { + "c1": 27.775560001246042, + "c2": -27.237423747732482, + "c3": -5.066752321868613, + "c4": -14.055214179044015, + "c5": 9.851806763844728, + "c6": 24.23931740922449, + "c7": -8.620465357337128 }, - "vertexSeeds": { - "c1": 5.260622549602652, - "c2": 5.236708564076523, - "c3": 5.318229796523892, - "c4": 5.324463891042321, - "c5": 5.304453762859331, - "c6": 5.434158961068855, - "c7": 5.4737468320421785 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -453687,23 +453687,23 @@ "year": 1830, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 19.788955891155826, - "c2": -21.995811451510555, - "c3": 18.198377264758104, - "c4": -25.360676903194307, - "c5": -8.028022315205998, - "c6": -2.5091200037608203, - "c7": 26.60373570396617 + "points": { + "c1": 11.829743431428934, + "c2": 8.848940395847332, + "c3": 10.653476454236635, + "c4": 15.217655690357677, + "c5": -19.60622934343752, + "c6": -13.092176320119322, + "c7": 11.193429882105473 }, - "vertexSeeds": { - "c1": 8.831055695199888, - "c2": 8.780784810469337, - "c3": 9.264126692385286, - "c4": 9.362125705662674, - "c5": 9.203241454627179, - "c6": 9.105543798368622, - "c7": 9.206765795493986 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -453714,23 +453714,23 @@ "year": 1831, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 26.07112554405753, - "c2": 11.287797357763601, - "c3": -31.830422635881117, - "c4": 12.187847231151686, - "c5": 14.756289752329579, - "c6": -4.312669277416834, - "c7": -19.39048408432756 + "points": { + "c1": -28.441656567175993, + "c2": 26.102117439003543, + "c3": -11.283740944269763, + "c4": -29.608894641482216, + "c5": -2.7793847061577246, + "c6": -7.484380672377295, + "c7": 1.480721491682111 }, - "vertexSeeds": { - "c1": 5.824272286027411, - "c2": 5.753202900814498, - "c3": 5.671683729808742, - "c4": 5.675604184471856, - "c5": 5.510366604913131, - "c6": 5.423835520861735, - "c7": 5.605417274661088 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -453741,23 +453741,23 @@ "year": 1831, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": -8.58161032156628, - "c2": -8.815925578598023, - "c3": 31.74725961707511, - "c4": 22.396658809622544, - "c5": 0.4960203548693727, - "c6": 21.67047309691062, - "c7": 25.60459547081561 + "points": { + "c1": -31.77898154788905, + "c2": 32.684946904327, + "c3": 19.664694665920905, + "c4": -16.922605051797188, + "c5": -2.0623445626566124, + "c6": -8.336002026629245, + "c7": -32.119617119187296 }, - "vertexSeeds": { - "c1": 5.858995695764871, - "c2": 5.930845838526175, - "c3": 5.613868856582743, - "c4": 5.849434591791877, - "c5": 5.628527707784685, - "c6": 5.572344476412341, - "c7": 5.4260976870891975 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509019, + "c3": 7.1890892279241845, + "c4": 5.751271382339351, + "c5": 4.3134535367545, + "c6": 2.8756356911696668, + "c7": 1.4378178455848334 }, "rgb": [222, 0, 59] }, @@ -453768,23 +453768,23 @@ "year": 1831, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 28.568357537445344, - "c2": -9.98795838379062, - "c3": -19.084673286775065, - "c4": -32.84556865353104, - "c5": -28.404653992798547, - "c6": -14.937205324817498, - "c7": -11.786108154347971 + "points": { + "c1": -36.88204319953609, + "c2": 23.87381459452456, + "c3": 25.724846947352887, + "c4": 14.741308695922456, + "c5": 32.19637217078462, + "c6": 28.713027981715918, + "c7": -29.29182066477278 }, - "vertexSeeds": { - "c1": 5.83549529655639, - "c2": 6.394405558497219, - "c3": 6.048860075543021, - "c4": 5.8136774034825915, - "c5": 5.969828489730853, - "c6": 6.3334896722966985, - "c7": 6.0386854012730815 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594553, + "c4": 6.1211280628756395, + "c5": 4.590846047156725, + "c6": 3.0605640314378095, + "c7": 1.5302820157189145 }, "rgb": [222, 0, 59] }, @@ -453795,23 +453795,23 @@ "year": 1830, "resistanceReported": false, "duration": 12355200, - "curveSeeds": { - "c1": -20.876777049936926, - "c2": -13.659767438486965, - "c3": -17.432376925653887, - "c4": -13.188980811515908, - "c5": -21.31410634281325, - "c6": 5.866959643364478, - "c7": 6.217925403091169 + "points": { + "c1": 1.6976240992244307, + "c2": 11.57209849248638, + "c3": -16.208288611252105, + "c4": -25.115945629068523, + "c5": 11.624301090708979, + "c6": -7.233339331874539, + "c7": -5.186989721154536 }, - "vertexSeeds": { - "c1": 8.894391873917009, - "c2": 8.768937005333948, - "c3": 8.920879256228279, - "c4": 9.057656067323565, - "c5": 8.944399284189515, - "c6": 9.474327005905606, - "c7": 8.875046620035778 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -453822,23 +453822,23 @@ "year": 1831, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -11.571981376176744, - "c2": 11.017206224682397, - "c3": -14.772604855311862, - "c4": -4.357431008781628, - "c5": -16.13465489003122, - "c6": -17.97134088786773, - "c7": 15.6438634941398 + "points": { + "c1": 3.77254310766088, + "c2": -1.4015593406521987, + "c3": 9.9390263852234, + "c4": 16.002621495791168, + "c5": 6.381384925058093, + "c6": -25.796315451326578, + "c7": -25.595223410768703 }, - "vertexSeeds": { - "c1": 5.3086678778562675, - "c2": 5.394432911290713, - "c3": 5.373153509432527, - "c4": 5.454759241030256, - "c5": 5.3656014123655815, - "c6": 5.280091128504629, - "c7": 5.351539333251296 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -453849,23 +453849,23 @@ "year": 1831, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 18.858795444345848, - "c2": -17.6182030594024, - "c3": -3.1647996032511543, - "c4": -23.665008285457017, - "c5": -15.774081641775778, - "c6": -5.909643641963285, - "c7": -19.951718795016653 + "points": { + "c1": 18.09752718034883, + "c2": -12.280720556629905, + "c3": 20.73499391562193, + "c4": -0.6124465178170233, + "c5": 15.670349140794723, + "c6": -16.665198636025703, + "c7": 13.875864908260933 }, - "vertexSeeds": { - "c1": 9.316942593287061, - "c2": 9.04842819086238, - "c3": 8.799036008517653, - "c4": 9.455010048125901, - "c5": 9.110057488890634, - "c6": 8.740147054053597, - "c7": 9.025015546446664 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -453876,23 +453876,23 @@ "year": 1831, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -0.7016779841599394, - "c2": -24.345247546434752, - "c3": 6.33915403834359, - "c4": -15.055816121197042, - "c5": 24.83047736469533, - "c6": -16.127919824937464, - "c7": -27.59872351020332 + "points": { + "c1": 8.906382588591889, + "c2": -29.3593319635571, + "c3": 26.769644011277066, + "c4": 4.1073518285513515, + "c5": -2.08344731029646, + "c6": -12.861132550297171, + "c7": 10.186265372026192 }, - "vertexSeeds": { - "c1": 6.108318199784273, - "c2": 6.195388957112502, - "c3": 6.254426227506385, - "c4": 6.126265400628919, - "c5": 6.234762969694279, - "c6": 6.050787581619535, - "c7": 6.180535083820931 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.9875173370319, + "c3": 7.489597780859917, + "c4": 5.991678224687933, + "c5": 4.49375866851595, + "c6": 2.9958391123439667, + "c7": 1.4979195561719834 }, "rgb": [58, 15, 49] }, @@ -453903,23 +453903,23 @@ "year": 1831, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": 36.641700108332365, - "c2": -12.72342195141102, - "c3": 0.6892487746360132, - "c4": -4.008953114021651, - "c5": 7.818077089989288, - "c6": -1.2574712491644604, - "c7": 24.442996892672646 + "points": { + "c1": -34.449300093573456, + "c2": 18.097543729047622, + "c3": -1.5502944163338839, + "c4": 11.553807190323148, + "c5": 13.765682405149626, + "c6": 42.18927462671393, + "c7": 39.32051487068312 }, - "vertexSeeds": { - "c1": 5.605719935099857, - "c2": 5.693230786126324, - "c3": 5.811699164050593, - "c4": 5.559061602572888, - "c5": 5.538482587367326, - "c6": 5.603411611751288, - "c7": 5.488216198258994 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -453930,23 +453930,23 @@ "year": 1831, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 3.132049673463875, - "c2": 16.65668716478664, - "c3": -3.6055465239376545, - "c4": 18.16605884628195, - "c5": -1.611164924551641, - "c6": 14.657883703749448, - "c7": 7.014393516981642 + "points": { + "c1": 18.339184262621764, + "c2": -11.153364512415164, + "c3": 15.937244188723362, + "c4": -1.944659966745487, + "c5": 18.73853469529572, + "c6": 15.683689042022777, + "c7": -19.98352792175549 }, - "vertexSeeds": { - "c1": 3.580040082414557, - "c2": 3.5200228703772756, - "c3": 3.5125124319343204, - "c4": 3.7133566117604104, - "c5": 3.741312582275035, - "c6": 3.795723320550355, - "c7": 3.8408190140889737 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.54785020804438, + "c3": 4.623208506703657, + "c4": 3.6985668053629226, + "c5": 2.77392510402219, + "c6": 1.8492834026814566, + "c7": 0.9246417013407332 }, "rgb": [86, 146, 138] }, @@ -453957,23 +453957,23 @@ "year": 1831, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 14.6005654618215, - "c2": 24.295161814015753, - "c3": -23.019528558716587, - "c4": -7.241701683512666, - "c5": -14.132932661763538, - "c6": -21.880573104987132, - "c7": -20.949790305803344 + "points": { + "c1": -0.04475173965288448, + "c2": 26.1187033105662, + "c3": -10.1021528781679, + "c4": -8.921205445895001, + "c5": 24.871488715047033, + "c6": 18.290366409703143, + "c7": -22.2082045533355 }, - "vertexSeeds": { - "c1": 9.30172203664497, - "c2": 8.860264514691908, - "c3": 8.804859790947354, - "c4": 8.706177269669139, - "c5": 8.695859222811292, - "c6": 8.769893618042675, - "c7": 9.000227499697294 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -453984,23 +453984,23 @@ "year": 1831, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 10.006361324776151, - "c2": -25.69938056045652, - "c3": -29.99916366297753, - "c4": 14.821617304499405, - "c5": 3.3040491271187165, - "c6": 19.927546136258158, - "c7": -13.001349764340382 + "points": { + "c1": 18.085031141154523, + "c2": -28.455642652939915, + "c3": 23.051024335514043, + "c4": -4.886713136488893, + "c5": -23.104837785923735, + "c6": -32.697588756642915, + "c7": 7.874922989771406 }, - "vertexSeeds": { - "c1": 7.8240830378099036, - "c2": 7.894868880096953, - "c3": 7.858320975449624, - "c4": 7.182403267300768, - "c5": 7.390159932443115, - "c6": 7.84572465473402, - "c7": 7.40539492040117 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [86, 146, 138] }, @@ -454011,23 +454011,23 @@ "year": 1831, "resistanceReported": false, "duration": 26611200, - "curveSeeds": { - "c1": -1.0987652803167691, - "c2": -18.753688376472205, - "c3": -1.8938803460352247, - "c4": -4.861693396863686, - "c5": 10.671869532663429, - "c6": -32.2255115765196, - "c7": 22.20821754635172 + "points": { + "c1": -19.692431448509957, + "c2": 21.56392982623145, + "c3": -13.298754816669767, + "c4": -25.52041222111999, + "c5": -31.388462592563656, + "c6": 18.369220535823246, + "c7": -8.736300888057208 }, - "vertexSeeds": { - "c1": 12.282232146105578, - "c2": 13.404186112013797, - "c3": 12.395003394092798, - "c4": 12.754050021140431, - "c5": 13.106271287309548, - "c6": 13.682044170751322, - "c7": 13.402784985387123 + "offsets": { + "c1": 24.271844660194176, + "c2": 20.804438280166433, + "c3": 17.337031900138694, + "c4": 13.869625520110969, + "c5": 10.402219140083226, + "c6": 6.934812760055484, + "c7": 3.467406380027742 }, "rgb": [238, 201, 159] }, @@ -454038,23 +454038,23 @@ "year": 1831, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": 17.251284560177687, - "c2": -9.903447092257178, - "c3": 19.378967624870484, - "c4": -5.136596052972788, - "c5": 18.69282782801799, - "c6": -16.05235296328284, - "c7": -6.299667240009693 + "points": { + "c1": 4.160824254281085, + "c2": -13.050506284852757, + "c3": -6.981422074754045, + "c4": -18.634823931815788, + "c5": -6.185442297056131, + "c6": 0.37565817452490435, + "c7": -15.328593861445473 }, - "vertexSeeds": { - "c1": 5.646466472667028, - "c2": 5.412258340232229, - "c3": 5.377506170046099, - "c4": 5.391926287601607, - "c5": 5.584512389772415, - "c6": 5.910343124206817, - "c7": 5.8358930453827105 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -454065,23 +454065,23 @@ "year": 1831, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -10.688133327153182, - "c2": -8.057391648286885, - "c3": -3.6117057576819995, - "c4": 25.88076336747891, - "c5": -17.438165686217324, - "c6": 1.2147121170801611, - "c7": -15.563515980919682 + "points": { + "c1": 2.4622742772898434, + "c2": -16.886354317448216, + "c3": 8.719466473832671, + "c4": -15.052896314443643, + "c5": 24.960647698728902, + "c6": -19.967582839923814, + "c7": 19.625691846797334 }, - "vertexSeeds": { - "c1": 4.500000178552571, - "c2": 4.7562877879074446, - "c3": 4.26355891950659, - "c4": 4.440448266797152, - "c5": 4.501202490151104, - "c6": 4.6728869069063865, - "c7": 4.595865667568092 + "offsets": { + "c1": 8.058252427184467, + "c2": 6.907073509015259, + "c3": 5.75589459084605, + "c4": 4.604715672676842, + "c5": 3.453536754507633, + "c6": 2.3023578363384245, + "c7": 1.1511789181692158 }, "rgb": [58, 15, 49] }, @@ -454092,23 +454092,23 @@ "year": 1831, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -2.365623925457008, - "c2": -22.18241250456324, - "c3": 1.0723981106480487, - "c4": -9.382265412596414, - "c5": -13.57693217042662, - "c6": -8.559864586820114, - "c7": -10.934892111919215 + "points": { + "c1": 19.574543778447122, + "c2": 19.039697358167004, + "c3": -14.490275489436277, + "c4": 9.196922974089532, + "c5": 8.974501530810848, + "c6": 8.423117770897548, + "c7": 6.4864202657015895 }, - "vertexSeeds": { - "c1": 5.352148469666595, - "c2": 5.272201630848237, - "c3": 5.247619075661763, - "c4": 5.436826638180504, - "c5": 5.2393353528618505, - "c6": 5.387151022515954, - "c7": 5.379705228429848 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -454119,23 +454119,23 @@ "year": 1831, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 6.931216905811503, - "c2": 23.197194471961666, - "c3": 22.72449387217943, - "c4": 5.049029660566632, - "c5": -2.956661641645365, - "c6": -15.374997100048764, - "c7": -19.41844230320372 + "points": { + "c1": -22.611655061477986, + "c2": 2.03707242200592, + "c3": -22.34800384665215, + "c4": -6.852222539334619, + "c5": -21.731095340330945, + "c6": -2.8787343130439957, + "c7": 19.278629641476442 }, - "vertexSeeds": { - "c1": 9.026910408373375, - "c2": 9.283967825342042, - "c3": 8.650059719001728, - "c4": 8.952941284491255, - "c5": 9.064864597312422, - "c6": 9.243471530784799, - "c7": 8.61661936958824 + "offsets": { + "c1": 16.051779935275082, + "c2": 13.758668515950069, + "c3": 11.465557096625055, + "c4": 9.172445677300056, + "c5": 6.879334257975041, + "c6": 4.586222838650028, + "c7": 2.293111419325014 }, "rgb": [222, 0, 59] }, @@ -454146,23 +454146,23 @@ "year": 1831, "resistanceReported": false, "duration": 29721600, - "curveSeeds": { - "c1": 42.47171576880734, - "c2": -16.661211208680605, - "c3": 25.534878398607702, - "c4": 10.080566302688688, - "c5": -29.575438403720465, - "c6": 25.424954785666912, - "c7": -29.753492249785378 + "points": { + "c1": 14.415960052614842, + "c2": 6.061512712540271, + "c3": -23.641649027107892, + "c4": -39.11694399170949, + "c5": 15.590485209150728, + "c6": -30.891246617686335, + "c7": -19.8296393770791 }, - "vertexSeeds": { - "c1": 7.37853646692092, - "c2": 7.922038737679209, - "c3": 7.672967708295508, - "c4": 7.803475336646697, - "c5": 7.702009589481579, - "c6": 7.202861537481431, - "c7": 7.805191137598797 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -454173,23 +454173,23 @@ "year": 1831, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": 28.86219970533501, - "c2": -15.47028426968074, - "c3": -12.027970568527522, - "c4": 7.557574842932816, - "c5": -16.591703018324232, - "c6": -15.906760244512736, - "c7": -6.269540891703642 + "points": { + "c1": 14.568259881231754, + "c2": 9.910048380608885, + "c3": 5.497716902568243, + "c4": 2.300831730818203, + "c5": -6.600688266341894, + "c6": 13.726757474469267, + "c7": 7.215526843887346 }, - "vertexSeeds": { - "c1": 5.7912899610751065, - "c2": 5.374145516744681, - "c3": 5.534232889759833, - "c4": 5.792734327457948, - "c5": 5.640040518720033, - "c6": 5.642377597851556, - "c7": 5.666508152133651 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -454200,23 +454200,23 @@ "year": 1831, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -29.56704828319586, - "c2": 17.248626132778483, - "c3": 29.31915067409785, - "c4": -1.6761428954762039, - "c5": 22.991838308112648, - "c6": -27.985525526628027, - "c7": 18.026840266930392 + "points": { + "c1": -12.958768279291547, + "c2": 4.221635214261539, + "c3": 16.524268156941417, + "c4": 25.599225705906612, + "c5": -25.078352012685166, + "c6": 24.69601855550085, + "c7": -0.36517958250919236 }, - "vertexSeeds": { - "c1": 3.64962548594648, - "c2": 3.579664266250015, - "c3": 3.628804721916121, - "c4": 3.649211283437005, - "c5": 3.6972657702644813, - "c6": 3.603519271952958, - "c7": 3.6844779137260555 + "offsets": { + "c1": 6.213592233009709, + "c2": 5.325936199722607, + "c3": 4.438280166435506, + "c4": 3.5506241331484047, + "c5": 2.6629680998613035, + "c6": 1.7753120665742024, + "c7": 0.8876560332871012 }, "rgb": [86, 146, 138] }, @@ -454227,23 +454227,23 @@ "year": 1832, "resistanceReported": false, "duration": 38620800, - "curveSeeds": { - "c1": 47.47575198199262, - "c2": 21.808044054349587, - "c3": 11.494508340587643, - "c4": -41.39484555278855, - "c5": -30.989917169458103, - "c6": -39.17839984959249, - "c7": -9.818118542546614 + "points": { + "c1": 21.41724304442453, + "c2": -13.567796385530237, + "c3": 34.425494022636876, + "c4": 38.36537701294963, + "c5": -36.112458658444076, + "c6": 32.17044426966236, + "c7": 35.90214696287838 }, - "vertexSeeds": { - "c1": 7.214233036271151, - "c2": 7.163078376530571, - "c3": 7.87558273322934, - "c4": 7.351368777345716, - "c5": 7.432690140019252, - "c6": 7.306181441792954, - "c7": 7.616291060945165 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [238, 201, 159] }, @@ -454254,23 +454254,23 @@ "year": 1831, "resistanceReported": false, "duration": 23241600, - "curveSeeds": { - "c1": 17.06661846794232, - "c2": 34.863585524980785, - "c3": -20.782259943852274, - "c4": 34.305530902072384, - "c5": -1.334668163423082, - "c6": -10.80255892752616, - "c7": 2.566955529404268 + "points": { + "c1": -12.703964343733919, + "c2": -2.2157579599923025, + "c3": 13.566827443939793, + "c4": 10.296309043924488, + "c5": -6.982443512896051, + "c6": 34.435774206053644, + "c7": 26.92622640690754 }, - "vertexSeeds": { - "c1": 5.232785017371993, - "c2": 5.2698608761650965, - "c3": 5.362171192208217, - "c4": 5.256600264368989, - "c5": 5.227715887479023, - "c6": 5.470174811210286, - "c7": 5.228609716787081 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -454281,23 +454281,23 @@ "year": 1831, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -7.4429683483305595, - "c2": -9.395812630709639, - "c3": -9.795215352568768, - "c4": -33.99305937950824, - "c5": -22.669725827197432, - "c6": 3.094515391520474, - "c7": 31.646779821662705 + "points": { + "c1": 22.160624588541943, + "c2": -16.071510916610755, + "c3": -4.3721727220907525, + "c4": 24.91936271652903, + "c5": 29.368453994432983, + "c6": -29.087002029835276, + "c7": 7.226857623505069 }, - "vertexSeeds": { - "c1": 0.451779560960696, - "c2": 0.4585185057854659, - "c3": 0.4417292651394941, - "c4": 0.43555512317761275, - "c5": 0.4324839505259782, - "c6": 0.43405498362064804, - "c7": 0.43733781311226805 + "offsets": { + "c1": 0.8090614886731391, + "c2": 0.6934812760055482, + "c3": 0.5779010633379559, + "c4": 0.462320850670365, + "c5": 0.3467406380027741, + "c6": 0.23116042533518322, + "c7": 0.11558021266759089 }, "rgb": [86, 146, 138] }, @@ -454308,23 +454308,23 @@ "year": 1831, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 21.34565325859171, - "c2": -13.200815033513638, - "c3": -5.147594333673641, - "c4": -5.734161763681993, - "c5": -10.442715056077299, - "c6": 9.779127239916576, - "c7": 16.686862668998366 + "points": { + "c1": 23.00490176786007, + "c2": -3.5380495722913317, + "c3": 0.6530427065537303, + "c4": -21.576803860742277, + "c5": 8.238083786516633, + "c6": -16.847153394291787, + "c7": -1.33850675171157 }, - "vertexSeeds": { - "c1": 5.374831810991709, - "c2": 5.682087046630116, - "c3": 5.674523195965873, - "c4": 5.574447638505221, - "c5": 5.707691090822468, - "c6": 5.734020734633144, - "c7": 5.898035485657618 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -454335,23 +454335,23 @@ "year": 1831, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 24.253691629192474, - "c2": 19.550229987387972, - "c3": -5.740517766537497, - "c4": -24.23176375823475, - "c5": 7.7961084894461905, - "c6": 25.05870576647567, - "c7": 15.500454267473863 + "points": { + "c1": -22.01882627875873, + "c2": 17.56471958483683, + "c3": 9.114520618020592, + "c4": -12.106769530700173, + "c5": 20.765255660760786, + "c6": -3.816225489876384, + "c7": 12.135436203797973 }, - "vertexSeeds": { - "c1": 5.376716774161237, - "c2": 5.474150400142222, - "c3": 5.397784077049555, - "c4": 5.402387475441502, - "c5": 5.337107896772379, - "c6": 5.441274576427707, - "c7": 5.300443001537555 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -454362,23 +454362,23 @@ "year": 1831, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -2.832386038655457, - "c2": -18.25142026406997, - "c3": -11.07812899294083, - "c4": -26.158616647350637, - "c5": 19.025203801016694, - "c6": -13.122891621774759, - "c7": -32.724023239549325 + "points": { + "c1": 33.87878501211277, + "c2": -13.16339715570021, + "c3": -6.847005620115564, + "c4": -24.157594438863228, + "c5": 23.73345668708847, + "c6": -31.43475105848762, + "c7": -14.26409430335369 }, - "vertexSeeds": { - "c1": 7.256454198433009, - "c2": 7.613909662607352, - "c3": 7.366128441806097, - "c4": 7.585265958125295, - "c5": 7.796708477063323, - "c6": 7.828693653977464, - "c7": 7.61366303915195 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [86, 146, 138] }, @@ -454389,23 +454389,23 @@ "year": 1831, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 8.770875730125024, - "c2": -0.7270270030921466, - "c3": 10.111856243923043, - "c4": -15.702834144578299, - "c5": 16.453807484836275, - "c6": -0.46092159575574954, - "c7": -7.516446401787398 + "points": { + "c1": 1.4163212925106414, + "c2": 13.7461302919411, + "c3": -9.449315271747146, + "c4": 15.10389730953063, + "c5": 21.80017176433541, + "c6": -6.740595119972696, + "c7": 5.475120905293139 }, - "vertexSeeds": { - "c1": 5.236235983097416, - "c2": 5.3418231582601585, - "c3": 5.343191556886411, - "c4": 5.437508903903102, - "c5": 5.440927646744152, - "c6": 5.2605488113783885, - "c7": 5.374653504069792 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -454416,23 +454416,23 @@ "year": 1831, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": -15.64414274831665, - "c2": -0.8277737660962288, - "c3": -10.633924759793867, - "c4": 12.993542869378565, - "c5": -14.195621040937688, - "c6": -12.933716149658942, - "c7": 18.208429225837484 + "points": { + "c1": 7.201261720489349, + "c2": -34.11185756041438, + "c3": 13.379376352075873, + "c4": -24.556506885950746, + "c5": 2.4097616570459337, + "c6": -10.601137428646826, + "c7": 6.731157593365133 }, - "vertexSeeds": { - "c1": 5.3736724032027405, - "c2": 5.344048390472696, - "c3": 5.282961842201193, - "c4": 5.30177645472027, - "c5": 5.304214966440596, - "c6": 5.309634104100802, - "c7": 5.390991050992766 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -454443,23 +454443,23 @@ "year": 1831, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": 24.733844430582508, - "c2": 19.219198637957035, - "c3": -2.8169253147273245, - "c4": 32.43329321036039, - "c5": -29.441136221528634, - "c6": -19.731504036540024, - "c7": -31.270783014515725 + "points": { + "c1": -18.441816145233197, + "c2": 2.36033087113217, + "c3": -21.105484643568353, + "c4": 35.07978953924544, + "c5": 16.745477533102175, + "c6": 6.616837344355744, + "c7": -1.1610768414606127 }, - "vertexSeeds": { - "c1": 5.245997474574954, - "c2": 5.294760568209222, - "c3": 5.2570618688336515, - "c4": 5.3409051394706255, - "c5": 5.264087427405195, - "c6": 5.308025989491859, - "c7": 5.352056820396359 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -454470,23 +454470,23 @@ "year": 1831, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": -20.155365883748964, - "c2": -10.146796963881185, - "c3": -19.38097088398562, - "c4": 9.330341678560018, - "c5": 9.288926324287864, - "c6": 5.557881650556219, - "c7": 20.774307946478586 + "points": { + "c1": 1.4585240079716577, + "c2": -23.129514066660274, + "c3": 15.314234314101597, + "c4": 0.5421224778654263, + "c5": 11.656386593001493, + "c6": -10.174904610531854, + "c7": -9.349877546383405 }, - "vertexSeeds": { - "c1": 5.329201151523776, - "c2": 5.417148013068771, - "c3": 5.444175436735131, - "c4": 5.3333309389769985, - "c5": 5.4227061304968025, - "c6": 5.448284439533056, - "c7": 5.3402226656495015 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -454497,23 +454497,23 @@ "year": 1831, "resistanceReported": false, "duration": 13392000, - "curveSeeds": { - "c1": 10.049997082544927, - "c2": 11.842351111806167, - "c3": 5.56106606859813, - "c4": 1.8926985697737848, - "c5": -7.652293731620464, - "c6": -12.594928810345365, - "c7": 24.194269661013436 + "points": { + "c1": 2.0689106329364577, + "c2": -15.666627271684359, + "c3": 3.418870610234329, + "c4": 7.0957529175952345, + "c5": 3.6311255997775653, + "c6": -16.0956462562203, + "c7": 23.540050173148366 }, - "vertexSeeds": { - "c1": 0.13657842397450845, - "c2": 0.15350651890016329, - "c3": 0.1525783358920479, - "c4": 0.14092859243890019, - "c5": 0.14281729441778465, - "c6": 0.13934201418434636, - "c7": 0.13992660617843106 + "offsets": { + "c1": 0.2912621359223301, + "c2": 0.24965325936199728, + "c3": 0.20804438280166448, + "c4": 0.16643550624133116, + "c5": 0.12482662968099839, + "c6": 0.08321775312066558, + "c7": 0.04160887656033279 }, "rgb": [86, 146, 138] }, @@ -454524,23 +454524,23 @@ "year": 1831, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -22.397014835054996, - "c2": -16.82795395682983, - "c3": 0.20497900345893783, - "c4": -2.1809652164272038, - "c5": -15.172371761668956, - "c6": -19.465281656233614, - "c7": 16.383340309859257 + "points": { + "c1": -24.323781293307523, + "c2": -26.3408003985773, + "c3": 16.366996344706287, + "c4": -19.03387392937197, + "c5": -18.79579379553805, + "c6": -12.69964950088756, + "c7": 22.32703817162973 }, - "vertexSeeds": { - "c1": 5.325847914265587, - "c2": 5.281444721393103, - "c3": 5.35895295947367, - "c4": 5.4780742115366925, - "c5": 5.433056477740582, - "c6": 5.417848297198879, - "c7": 5.240550168194522 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -454551,23 +454551,23 @@ "year": 1831, "resistanceReported": false, "duration": 7084800, - "curveSeeds": { - "c1": -14.680202379774508, - "c2": -4.608241819123757, - "c3": 8.062933123665776, - "c4": 16.666078499480168, - "c5": -2.9363848912019996, - "c6": -12.79959593722954, - "c7": 6.139216961219937 + "points": { + "c1": 18.899021420881187, + "c2": -11.707985600569176, + "c3": -15.920247149205716, + "c4": 11.884980595452117, + "c5": -4.806684280345753, + "c6": 1.4657116192575366, + "c7": 19.54581170633009 }, - "vertexSeeds": { - "c1": 5.513142100386553, - "c2": 5.400966087411584, - "c3": 5.826993408492031, - "c4": 5.8001179874057325, - "c5": 5.483498023692691, - "c6": 5.51446228337854, - "c7": 5.771923360837696 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -454578,23 +454578,23 @@ "year": 1831, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": -22.8585044346175, - "c2": -2.778553868822854, - "c3": -17.10728090862735, - "c4": -19.798516537211547, - "c5": 18.913720904689097, - "c6": 3.783786119736021, - "c7": -7.050006470137202 + "points": { + "c1": -6.192803248654261, + "c2": -9.028757225524473, + "c3": 8.440215665769156, + "c4": -15.354452179482607, + "c5": 22.517765775550206, + "c6": -9.475789517520482, + "c7": -6.769762043182013 }, - "vertexSeeds": { - "c1": 8.868952364235772, - "c2": 8.664316764748088, - "c3": 9.37066185590542, - "c4": 8.687090883485375, - "c5": 8.94314724313758, - "c6": 9.178629382504493, - "c7": 8.818617937068462 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -454605,23 +454605,23 @@ "year": 1831, "resistanceReported": false, "duration": 8467200, - "curveSeeds": { - "c1": 5.4541976701841755, - "c2": 9.055372666811198, - "c3": 3.187102374927079, - "c4": 3.1202601493447943, - "c5": 4.380038060944752, - "c6": 2.074385838313983, - "c7": -10.72660343338119 + "points": { + "c1": -11.725353665387454, + "c2": 16.358544820680958, + "c3": -1.799940814207126, + "c4": -14.970199053391436, + "c5": -0.030310924220771085, + "c6": 19.487082702454277, + "c7": 3.160991285447011 }, - "vertexSeeds": { - "c1": 0.15486485206965694, - "c2": 0.13706769691058915, - "c3": 0.15261254899968477, - "c4": 0.13751724103733567, - "c5": 0.15199612584467811, - "c6": 0.15071133258679084, - "c7": 0.13903973063846223 + "offsets": { + "c1": 0.2912621359223301, + "c2": 0.24965325936199728, + "c3": 0.20804438280166448, + "c4": 0.16643550624133116, + "c5": 0.12482662968099839, + "c6": 0.08321775312066558, + "c7": 0.04160887656033279 }, "rgb": [58, 15, 49] }, @@ -454632,23 +454632,23 @@ "year": 1831, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 4.586511493543064, - "c2": -27.508790181576448, - "c3": -15.78988885267026, - "c4": 1.5749719789250634, - "c5": 22.160702293530143, - "c6": 19.6159957485522, - "c7": 20.034420274420583 + "points": { + "c1": 21.935499993087348, + "c2": -22.418546986323868, + "c3": 4.08148021250625, + "c4": -11.43295231588517, + "c5": 29.481302058357876, + "c6": 4.2462516206950625, + "c7": -10.890707567776754 }, - "vertexSeeds": { - "c1": 5.893388178919906, - "c2": 5.833878926660001, - "c3": 5.776143309885595, - "c4": 5.418790714035644, - "c5": 5.5037339926533875, - "c6": 5.6669257083507985, - "c7": 5.763340175689748 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -454659,23 +454659,23 @@ "year": 1831, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -0.8257155306955504, - "c2": -16.866215657682638, - "c3": 24.135282404937286, - "c4": 13.317336113306169, - "c5": 18.16558121180541, - "c6": -10.147159164867123, - "c7": 8.259481971610867 + "points": { + "c1": 7.913112641219094, + "c2": -11.404506686276829, + "c3": -11.78395045020968, + "c4": -14.519341785678964, + "c5": -9.573657259470057, + "c6": -27.304233484304675, + "c7": 17.506946080203207 }, - "vertexSeeds": { - "c1": 3.8457443350357083, - "c2": 3.412046432646547, - "c3": 3.9684508595889723, - "c4": 3.3889246461533262, - "c5": 3.7453724059135483, - "c6": 3.2575521137102235, - "c7": 3.6820338162602044 + "offsets": { + "c1": 6.699029126213592, + "c2": 5.742024965325937, + "c3": 4.785020804438278, + "c4": 3.828016643550623, + "c5": 2.8710124826629686, + "c6": 1.914008321775314, + "c7": 0.9570041608876546 }, "rgb": [58, 15, 49] }, @@ -454686,23 +454686,23 @@ "year": 1831, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 16.376633052693407, - "c2": 1.0468198477451267, - "c3": 15.469143104611419, - "c4": 11.619912355708713, - "c5": -9.336537386547096, - "c6": 22.104012859138123, - "c7": 6.920624467008878 + "points": { + "c1": -19.891570763260365, + "c2": 23.492125615405335, + "c3": -11.866334320511768, + "c4": -3.0126688204968985, + "c5": -10.323391557323763, + "c6": 17.022997782412645, + "c7": 2.8090724174228328 }, - "vertexSeeds": { - "c1": 5.910935430094063, - "c2": 5.451942184943896, - "c3": 5.4013886244620535, - "c4": 5.848891024419963, - "c5": 5.489318813524696, - "c6": 5.807073387821104, - "c7": 5.812315512733604 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -454713,23 +454713,23 @@ "year": 1831, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": -16.63472668380548, - "c2": -13.546329161123072, - "c3": 20.862185480257523, - "c4": 18.245976059978922, - "c5": 15.515818954187878, - "c6": -11.96550790476577, - "c7": -17.616285836883478 + "points": { + "c1": 3.422923054076776, + "c2": -7.9618569752274055, + "c3": -1.9032771289316344, + "c4": -22.02231706287403, + "c5": -21.69446613335319, + "c6": -9.694060879995021, + "c7": 24.92599235518277 }, - "vertexSeeds": { - "c1": 0.019430051813471502, - "c2": 0.019430051813471502, - "c3": 0.019430051813471502, - "c4": 0.019430051813471502, - "c5": 0.019430051813471502, - "c6": 0.019430051813471502, - "c7": 0.019430051813471502 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -454740,23 +454740,23 @@ "year": 1831, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 3.809248518866422, - "c2": 24.437322638476402, - "c3": -2.458304284454769, - "c4": 12.689098543399425, - "c5": -7.878859014010732, - "c6": -13.326124238682352, - "c7": -5.856651573367614 + "points": { + "c1": 0.6985398415960233, + "c2": 5.287646916782094, + "c3": 20.50041828695973, + "c4": 8.931713997404884, + "c5": 16.2324664115566, + "c6": 25.48231403955316, + "c7": 1.8152323345772352 }, - "vertexSeeds": { - "c1": 8.548098111986535, - "c2": 8.501567369366041, - "c3": 9.174772087381642, - "c4": 9.115121499520033, - "c5": 8.481834854495977, - "c6": 8.823626444232099, - "c7": 9.220441361233744 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346735, + "c3": 11.118816458622272, + "c4": 8.89505316689783, + "c5": 6.671289875173367, + "c6": 4.447526583448906, + "c7": 2.2237632917244428 }, "rgb": [222, 0, 59] }, @@ -454767,23 +454767,23 @@ "year": 1831, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -0.20597588967250147, - "c2": -9.62767852310279, - "c3": -2.9480647043970905, - "c4": -12.765108926416918, - "c5": -27.93712093491181, - "c6": -18.951044012779352, - "c7": -14.019187633914308 + "points": { + "c1": 15.847172723545988, + "c2": 6.8360595121091094, + "c3": -31.768362217934595, + "c4": 24.317379725330035, + "c5": -12.744264247484828, + "c6": 20.364821997646217, + "c7": 7.719235998880627 }, - "vertexSeeds": { - "c1": 5.470719675179552, - "c2": 5.354657846224135, - "c3": 5.392075631166474, - "c4": 5.282697527330962, - "c5": 5.398829740057537, - "c6": 5.326613268806737, - "c7": 5.406691090751258 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -454794,23 +454794,23 @@ "year": 1831, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -0.6754797705534159, - "c2": -21.516824011389424, - "c3": -4.888866549163893, - "c4": 20.183657720599125, - "c5": -11.171499626655319, - "c6": -15.16722337979561, - "c7": -25.201321591726128 + "points": { + "c1": 20.794783419461115, + "c2": 3.518706252995951, + "c3": 15.541550178273692, + "c4": 16.42980940498087, + "c5": -26.584582481682776, + "c6": -13.170549718939611, + "c7": 12.809007772676193 }, - "vertexSeeds": { - "c1": 5.620773204022979, - "c2": 5.923081736567806, - "c3": 5.893590909525619, - "c4": 5.4904979573471095, - "c5": 5.642079491978289, - "c6": 5.5649105619801, - "c7": 5.370660122817219 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -454821,23 +454821,23 @@ "year": 1832, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -25.43968042101954, - "c2": -1.9720751218156813, - "c3": 10.044969525378363, - "c4": 3.682333229753752, - "c5": 1.0636140015130948, - "c6": -2.6991655269884696, - "c7": 20.632934805169853 + "points": { + "c1": -20.61071498762049, + "c2": 7.551014044575545, + "c3": -19.87258278305989, + "c4": -22.760405962155378, + "c5": 12.073088718623595, + "c6": 24.132287575614825, + "c7": -13.550030121701791 }, - "vertexSeeds": { - "c1": 5.7522953065466, - "c2": 5.931076733313495, - "c3": 5.401862214116572, - "c4": 5.815838169838305, - "c5": 5.655753523278188, - "c6": 5.941092990596342, - "c7": 5.542392450447242 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -454848,23 +454848,23 @@ "year": 1832, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -0.3164811266238843, - "c2": -0.22881087247443332, - "c3": -9.398155513876626, - "c4": -20.180711422400734, - "c5": -3.9786418767828806, - "c6": -7.467867916185128, - "c7": -16.810268438274342 + "points": { + "c1": -19.31327690353076, + "c2": 0.1430189558154389, + "c3": 21.380861193266117, + "c4": -3.6593437135738753, + "c5": 18.8279065077939, + "c6": 8.736886961377774, + "c7": 16.136993721634557 }, - "vertexSeeds": { - "c1": 5.382972459798682, - "c2": 5.859907681593661, - "c3": 5.705950643170417, - "c4": 5.651597826710042, - "c5": 5.911513532108305, - "c6": 5.932289072744536, - "c7": 5.927865129573848 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -454875,23 +454875,23 @@ "year": 1832, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 14.281131613162252, - "c2": 17.23376808306434, - "c3": 16.689689648813143, - "c4": -9.500827869929612, - "c5": -24.347954855701797, - "c6": -19.802958234158815, - "c7": -7.616497237888442 + "points": { + "c1": 3.787607153888345, + "c2": -10.049407666367177, + "c3": 16.090070301613835, + "c4": 14.157123679154509, + "c5": 27.312957329346872, + "c6": 23.630852433961856, + "c7": -21.803647518424533 }, - "vertexSeeds": { - "c1": 2.1304398424659423, - "c2": 2.0994497523997544, - "c3": 2.214751579284725, - "c4": 2.1094635886158217, - "c5": 2.196798052961886, - "c6": 2.2435943362303483, - "c7": 2.0386155474752807 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551547, + "c4": 2.1821544151641237, + "c5": 1.6366158113730929, + "c6": 1.0910772075820618, + "c7": 0.5455386037910309 }, "rgb": [86, 146, 138] }, @@ -454902,23 +454902,23 @@ "year": 1832, "resistanceReported": false, "duration": 25228800, - "curveSeeds": { - "c1": 29.77428042149735, - "c2": -2.36894704338971, - "c3": -3.872828422050837, - "c4": -8.01149728927789, - "c5": -26.292484294584057, - "c6": 1.7056172887837278, - "c7": 25.82046647539547 + "points": { + "c1": 34.71884475343931, + "c2": -8.233374645644378, + "c3": 38.94874269514328, + "c4": 24.654853200295832, + "c5": 24.134653386447113, + "c6": -33.845030839762806, + "c7": 6.923297738073742 }, - "vertexSeeds": { - "c1": 8.623662884697012, - "c2": 8.772810690252445, - "c3": 9.075115392396329, - "c4": 8.972678592808965, - "c5": 8.404915742687567, - "c6": 8.397230139491555, - "c7": 8.85853927909998 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226083, + "c3": 11.049468331021725, + "c4": 8.839574664817388, + "c5": 6.629680998613032, + "c6": 4.419787332408694, + "c7": 2.2098936662043562 }, "rgb": [77, 76, 132] }, @@ -454929,23 +454929,23 @@ "year": 1832, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": 5.743099420452911, - "c2": 16.62472198764155, - "c3": 7.899713125837142, - "c4": 12.56212967630223, - "c5": 8.453361968820147, - "c6": 16.643748832284878, - "c7": -0.9678274377397429 + "points": { + "c1": -15.89807469128226, + "c2": -5.76747796999882, + "c3": -14.971955436992936, + "c4": -11.389802840482654, + "c5": 11.946952945310699, + "c6": 8.040975544615147, + "c7": -16.858003716323832 }, - "vertexSeeds": { - "c1": 8.785205462801425, - "c2": 8.620302585139532, - "c3": 8.963194588031568, - "c4": 8.884420310089117, - "c5": 9.043195526075316, - "c6": 8.801758981334546, - "c7": 8.704193669576123 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -454956,23 +454956,23 @@ "year": 1832, "resistanceReported": false, "duration": 16502400, - "curveSeeds": { - "c1": 22.834721600274534, - "c2": 14.486953965790988, - "c3": 6.338735144199859, - "c4": 0.05844853040198217, - "c5": 25.673276106503835, - "c6": -20.004778229784073, - "c7": -19.748268700982326 + "points": { + "c1": 3.219030051675716, + "c2": -20.817968812194373, + "c3": -28.88519006063474, + "c4": -21.587367862380265, + "c5": -20.453592835547934, + "c6": 12.863457902833296, + "c7": -12.787354845008299 }, - "vertexSeeds": { - "c1": 4.63743984201206, - "c2": 4.639653039641769, - "c3": 4.632996651818727, - "c4": 4.656742912354295, - "c5": 4.622694220376896, - "c6": 4.64466040856303, - "c7": 4.6497168112237794 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693513, + "c3": 5.570966250577891, + "c4": 4.456773000462342, + "c5": 3.34257975034672, + "c6": 2.228386500231171, + "c7": 1.1141932501155487 }, "rgb": [77, 76, 132] }, @@ -454983,23 +454983,23 @@ "year": 1832, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": 8.122835661012715, - "c2": -26.39863554148865, - "c3": -11.723086518622377, - "c4": -13.744684409939133, - "c5": 32.09767868069594, - "c6": 19.067787311178492, - "c7": -27.131810009845562 + "points": { + "c1": -25.72010864739469, + "c2": -29.845361462851223, + "c3": 16.42346287584266, + "c4": -27.931792282037076, + "c5": 20.24728427040872, + "c6": -31.669502686214543, + "c7": -22.689817856884186 }, - "vertexSeeds": { - "c1": 5.727720259666635, - "c2": 5.80586134455109, - "c3": 5.689754107326711, - "c4": 5.890177015813986, - "c5": 5.907205281107525, - "c6": 5.663818787623148, - "c7": 5.36651147424017 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -455010,23 +455010,23 @@ "year": 1832, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -9.916699156126132, - "c2": 18.65320047055176, - "c3": -5.438225883962232, - "c4": -10.254745516477316, - "c5": -15.596435547634712, - "c6": -4.384646587671167, - "c7": 19.773042629826676 + "points": { + "c1": 1.6420029394460016, + "c2": 18.27698341022345, + "c3": -11.054302909134671, + "c4": -0.4726625254462853, + "c5": 14.718840003909705, + "c6": 22.758475580446827, + "c7": -10.045074363876916 }, - "vertexSeeds": { - "c1": 5.232302360333551, - "c2": 5.57681572806158, - "c3": 5.168782745896056, - "c4": 5.078531526551337, - "c5": 5.285633763837093, - "c6": 5.559908263625217, - "c7": 5.3972230743763925 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664359, + "c3": 6.703652334720293, + "c4": 5.362921867776238, + "c5": 4.022191400832171, + "c6": 2.681460933888116, + "c7": 1.3407304669440607 }, "rgb": [77, 76, 132] }, @@ -455037,23 +455037,23 @@ "year": 1832, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -7.502486487028953, - "c2": 11.537989980189113, - "c3": 18.746387736008185, - "c4": -27.056967783581158, - "c5": -14.910763174778873, - "c6": 2.860868116310602, - "c7": 9.108019917650804 + "points": { + "c1": 18.75093623418027, + "c2": 28.714161820796978, + "c3": -29.41902743012408, + "c4": 5.128400850927054, + "c5": 28.159091086917623, + "c6": 23.67443868337215, + "c7": -15.694457282307807 }, - "vertexSeeds": { - "c1": 8.899182132320833, - "c2": 9.488914453133013, - "c3": 9.058352695897772, - "c4": 8.888564357136271, - "c5": 8.981510939995532, - "c6": 8.734466468143264, - "c7": 8.850990379356817 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -455064,23 +455064,23 @@ "year": 1832, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": 7.020809324655115, - "c2": 9.360599540375375, - "c3": 0.6436900681763369, - "c4": -7.408343891245426, - "c5": -2.318202860903611, - "c6": 8.169747294426454, - "c7": 0.25054689231755845 + "points": { + "c1": -19.997955534620086, + "c2": 15.763952867900336, + "c3": 17.81733868888889, + "c4": 16.457994044482817, + "c5": 19.32592526724163, + "c6": -4.207909808408793, + "c7": -25.22174504374531 }, - "vertexSeeds": { - "c1": 5.443228950306177, - "c2": 5.429635966136934, - "c3": 5.6537240026920195, - "c4": 5.691519572158417, - "c5": 5.941986487185526, - "c6": 5.917312918878569, - "c7": 5.365660576982022 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -455091,23 +455091,23 @@ "year": 1832, "resistanceReported": false, "duration": 23414400, - "curveSeeds": { - "c1": -5.602320630213445, - "c2": -18.326980495685135, - "c3": -6.89933084953811, - "c4": 19.35903313825316, - "c5": -2.451748306054057, - "c6": 13.071077316814652, - "c7": 15.306694854633449 + "points": { + "c1": 35.35535213228043, + "c2": -14.53653516508868, + "c3": 20.712808784249127, + "c4": 36.78597906563485, + "c5": 19.140134138035563, + "c6": -13.826933470267946, + "c7": 15.036531343990525 }, - "vertexSeeds": { - "c1": 7.900907199980813, - "c2": 7.383362003800875, - "c3": 7.648247252788645, - "c4": 7.515200191144606, - "c5": 8.20976104842051, - "c6": 7.407284268792583, - "c7": 8.184456498555667 + "offsets": { + "c1": 13.78640776699029, + "c2": 11.816920943134539, + "c3": 9.847434119278788, + "c4": 7.877947295423021, + "c5": 5.9084604715672695, + "c6": 3.938973647711518, + "c7": 1.969486823855751 }, "rgb": [238, 201, 159] }, @@ -455118,23 +455118,23 @@ "year": 1832, "resistanceReported": false, "duration": 18662400, - "curveSeeds": { - "c1": -27.919711835152786, - "c2": -16.86696408455045, - "c3": -23.114087591735736, - "c4": 12.76804419967386, - "c5": 6.425494007826934, - "c6": 19.92895342379596, - "c7": 21.773984111460358 + "points": { + "c1": 12.130377858517853, + "c2": 18.88973863117439, + "c3": -0.07120397775990028, + "c4": -1.0645980720936343, + "c5": 15.382449344086638, + "c6": -0.9319198840553646, + "c7": -16.790391186128033 }, - "vertexSeeds": { - "c1": 9.024394017573734, - "c2": 9.427033272089012, - "c3": 8.698408501154217, - "c4": 9.010482156426743, - "c5": 8.674173597544009, - "c6": 9.015164857996284, - "c7": 9.104110092151098 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -455145,23 +455145,23 @@ "year": 1832, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": 13.724151344547632, - "c2": -20.263501444237306, - "c3": 11.36765118747903, - "c4": 16.1683156541018, - "c5": 4.827908799553239, - "c6": -1.4139945998541243, - "c7": 1.0327679585572191 + "points": { + "c1": -10.908690054070915, + "c2": 18.790370878183875, + "c3": -15.85325409839481, + "c4": 14.415307265274858, + "c5": -1.6525421593315208, + "c6": 18.754372659532333, + "c7": -15.120339128729949 }, - "vertexSeeds": { - "c1": 8.734203538814898, - "c2": 8.825041626229819, - "c3": 8.867262366453136, - "c4": 8.681128011966676, - "c5": 8.78952679475066, - "c6": 8.686153112458152, - "c7": 8.739190139783393 + "offsets": { + "c1": 14.886731391585762, + "c2": 12.760055478502109, + "c3": 10.633379565418393, + "c4": 8.50670365233474, + "c5": 6.380027739251022, + "c6": 4.25335182616737, + "c7": 2.1266759130836523 }, "rgb": [77, 76, 132] }, @@ -455172,23 +455172,23 @@ "year": 1832, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 11.887536197160365, - "c2": 3.401835241397496, - "c3": -8.217626502920236, - "c4": -15.235094284612224, - "c5": -0.2629073028903832, - "c6": 20.56371634454154, - "c7": -11.86463893882076 + "points": { + "c1": -9.268080167142635, + "c2": 17.364137971734998, + "c3": 1.5999122077066055, + "c4": -3.3255576792225057, + "c5": -5.98891767237464, + "c6": 2.281652339009039, + "c7": 23.316040054784636 }, - "vertexSeeds": { - "c1": 12.005545403938992, - "c2": 11.90134175733433, - "c3": 12.136011115743672, - "c4": 11.76186745545546, - "c5": 12.10915521423807, - "c6": 11.949789474576686, - "c7": 12.384160477252138 + "offsets": { + "c1": 21.326860841423947, + "c2": 18.280166435506228, + "c3": 15.233472029588553, + "c4": 12.186777623670833, + "c5": 9.140083217753114, + "c6": 6.0933888118353945, + "c7": 3.0466944059177195 }, "rgb": [77, 76, 132] }, @@ -455199,23 +455199,23 @@ "year": 1832, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 22.442982006117, - "c2": 9.348840136465817, - "c3": -0.879997704852272, - "c4": -18.621695415715934, - "c5": 5.282889819368187, - "c6": 0.9650616884340408, - "c7": 12.037570458041962 + "points": { + "c1": 16.141291126236275, + "c2": 15.67337741069933, + "c3": -7.949180646610749, + "c4": 15.274816372451, + "c5": 27.41113688548728, + "c6": -11.375599878662872, + "c7": 0.7873970407915536 }, - "vertexSeeds": { - "c1": 2.6491600667116995, - "c2": 2.6593514296600427, - "c3": 2.655217642567613, - "c4": 2.6067568940401045, - "c5": 2.6230895068938924, - "c6": 2.6570573910573456, - "c7": 2.6472020145510102 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506104, + "c3": 3.1900138696255245, + "c4": 2.552011095700407, + "c5": 1.914008321775321, + "c6": 1.2760055478502035, + "c7": 0.6380027739251176 }, "rgb": [77, 76, 132] }, @@ -455226,23 +455226,23 @@ "year": 1832, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -16.65751617828139, - "c2": 21.49796713331542, - "c3": -7.324421295838334, - "c4": 21.19102675857058, - "c5": 2.430714911899738, - "c6": 6.513898053147813, - "c7": 6.072282865456014 + "points": { + "c1": -4.083919836256296, + "c2": 9.807961403108827, + "c3": -16.350705394601505, + "c4": -16.142469496388276, + "c5": -8.595635502555252, + "c6": -21.04602363512687, + "c7": -2.062955956797399 }, - "vertexSeeds": { - "c1": 5.609753019710306, - "c2": 5.392213036884209, - "c3": 5.501307204713307, - "c4": 5.708201988486102, - "c5": 5.723258530725783, - "c6": 5.5935150232202115, - "c7": 5.829503262130963 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -455253,23 +455253,23 @@ "year": 1832, "resistanceReported": false, "duration": 28944000, - "curveSeeds": { - "c1": 11.817101910086919, - "c2": -4.269080775316091, - "c3": -17.848271217826344, - "c4": 25.288215944216553, - "c5": -12.063128029515244, - "c6": 31.798533904290174, - "c7": 4.298081204151117 + "points": { + "c1": -1.484243747157862, + "c2": 1.612000644425656, + "c3": 10.76359704663443, + "c4": -34.526889800642294, + "c5": 39.06498327236428, + "c6": 15.590522579967072, + "c7": 15.504959164733705 }, - "vertexSeeds": { - "c1": 7.6271075755981235, - "c2": 7.885249182286424, - "c3": 7.225657668700581, - "c4": 7.680101696398603, - "c5": 7.402304774786658, - "c6": 7.696893665043785, - "c7": 7.350973325998189 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [58, 15, 49] }, @@ -455280,23 +455280,23 @@ "year": 1832, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 18.305128807576914, - "c2": 18.634882706387337, - "c3": -4.548799618390984, - "c4": -2.0009242317839693, - "c5": 6.037719530403429, - "c6": -9.015741432694707, - "c7": -2.6367361933592868 + "points": { + "c1": -2.039748336087758, + "c2": -7.568222710325568, + "c3": -19.613614988500153, + "c4": -7.988285723083671, + "c5": 23.987495004633942, + "c6": -6.226510512634775, + "c7": 22.9138175418827 }, - "vertexSeeds": { - "c1": 5.926880988771801, - "c2": 6.032690325294422, - "c3": 5.418229480556031, - "c4": 5.77854838915003, - "c5": 5.758600648093357, - "c6": 5.897186559904199, - "c7": 5.479888085248348 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549233, + "c3": 7.212205270457693, + "c4": 5.76976421636615, + "c5": 4.3273231622746255, + "c6": 2.8848821081830835, + "c7": 1.4424410540915418 }, "rgb": [222, 0, 59] }, @@ -455307,23 +455307,23 @@ "year": 1832, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 0.9684037272217623, - "c2": 21.008462984119085, - "c3": -27.649445453303468, - "c4": 19.725283249225427, - "c5": -9.752150702207313, - "c6": -8.084600332166715, - "c7": -11.288618211402039 + "points": { + "c1": 6.336774362033978, + "c2": -9.373105273014723, + "c3": 21.989167024761308, + "c4": 31.883159888870466, + "c5": -31.432822202795343, + "c6": -35.17729496807658, + "c7": 12.624206714849336 }, - "vertexSeeds": { - "c1": 9.1381397389125, - "c2": 9.462479804056102, - "c3": 9.320872279715017, - "c4": 9.231067602869834, - "c5": 9.474300923230906, - "c6": 9.091320366492093, - "c7": 9.319169127365836 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -455334,23 +455334,23 @@ "year": 1832, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 21.57481499317791, - "c2": -0.36439241545933143, - "c3": -26.577559104477313, - "c4": 9.579243645699854, - "c5": -4.285971116556684, - "c6": 26.72749741807273, - "c7": -10.362238099653162 + "points": { + "c1": 4.60388343283509, + "c2": -26.52710369333306, + "c3": 23.472799730554293, + "c4": 9.886649939433298, + "c5": 5.375475270098676, + "c6": -19.006211211321418, + "c7": -15.362479342406447 }, - "vertexSeeds": { - "c1": 9.136129142201682, - "c2": 9.313834133810998, - "c3": 9.395922615324714, - "c4": 9.335719125668037, - "c5": 9.22999648127324, - "c6": 9.079733697682872, - "c7": 9.355077563180602 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -455361,23 +455361,23 @@ "year": 1832, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 4.05270296844629, - "c2": -28.606939294589573, - "c3": -12.023925550060067, - "c4": -2.3212474896579067, - "c5": -32.877895016418016, - "c6": -8.185128292669965, - "c7": 34.839350242085715 + "points": { + "c1": 13.412235797952867, + "c2": 19.549097295314795, + "c3": 22.910401198008458, + "c4": 27.354273185740283, + "c5": 21.99196403554994, + "c6": -5.453369493527632, + "c7": 10.16495831780776 }, - "vertexSeeds": { - "c1": 8.950834334595312, - "c2": 9.205785311024677, - "c3": 8.903381917918052, - "c4": 9.405810444386255, - "c5": 8.932264649357045, - "c6": 9.011116674075547, - "c7": 9.163218492516739 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -455388,23 +455388,23 @@ "year": 1832, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": -0.27345622727965946, - "c2": -7.336417408606636, - "c3": -26.99558849550325, - "c4": 24.458081622516847, - "c5": 16.157431899111668, - "c6": -18.512928228942844, - "c7": 2.732046575231795 + "points": { + "c1": -22.736116424453474, + "c2": -20.295553177647747, + "c3": 11.697605266371536, + "c4": -11.761078434789535, + "c5": -9.194252175452423, + "c6": -26.313710867625087, + "c7": 5.258726031716872 }, - "vertexSeeds": { - "c1": 5.81127474673975, - "c2": 5.441067017874474, - "c3": 5.885411741081998, - "c4": 5.444441769866895, - "c5": 5.589076885940653, - "c6": 5.429386827735798, - "c7": 5.8399145048557255 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -455415,23 +455415,23 @@ "year": 1832, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 13.746810499836961, - "c2": -6.069706150542917, - "c3": 25.067882409504705, - "c4": 25.12535735192835, - "c5": 1.9853961416746273, - "c6": -15.979829115161383, - "c7": 21.650332521476372 + "points": { + "c1": 19.79484330359483, + "c2": -12.724592275541447, + "c3": 31.205850883658165, + "c4": -6.307806153890468, + "c5": 8.084425559544094, + "c6": 10.87983526029798, + "c7": 26.27492799043727 }, - "vertexSeeds": { - "c1": 5.625085884945204, - "c2": 5.531997233625463, - "c3": 5.441848755123397, - "c4": 5.739296722919053, - "c5": 5.488794722511012, - "c6": 5.496899369311491, - "c7": 5.438859251017392 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -455442,23 +455442,23 @@ "year": 1833, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 23.698939970344192, - "c2": 13.96034014613275, - "c3": 34.41840755713374, - "c4": -36.48151807289084, - "c5": 25.76833733542494, - "c6": 17.151026027697277, - "c7": 29.123276184552786 + "points": { + "c1": 37.151712825451646, + "c2": 35.55850051383782, + "c3": 1.7731705625814271, + "c4": -15.530486928019322, + "c5": -16.15133605799327, + "c6": 1.560761444064795, + "c7": -20.706331060564985 }, - "vertexSeeds": { - "c1": 7.664095335881335, - "c2": 7.786875729488625, - "c3": 7.217528093439377, - "c4": 7.879052717043369, - "c5": 7.768743854536767, - "c6": 7.709144244087716, - "c7": 7.607893653213783 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [222, 0, 59] }, @@ -455469,23 +455469,23 @@ "year": 1832, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 5.388131859941517, - "c2": -11.08888024561626, - "c3": -19.522182180946587, - "c4": 5.242721107843785, - "c5": -18.336277175620996, - "c6": -6.138430939083236, - "c7": 13.274340438290608 + "points": { + "c1": 12.895912310690413, + "c2": -3.4668948188843984, + "c3": -11.398719443111966, + "c4": -3.1172778585364647, + "c5": 23.247595958516435, + "c6": -21.69163580589782, + "c7": -5.546614624281805 }, - "vertexSeeds": { - "c1": 8.870383115580072, - "c2": 8.750264379948302, - "c3": 9.376021098092588, - "c4": 8.954479057961041, - "c5": 9.358305145350412, - "c6": 9.454793176616747, - "c7": 8.689497820007373 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -455496,23 +455496,23 @@ "year": 1832, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -18.223032196605047, - "c2": 16.119407406706138, - "c3": -16.9397637233008, - "c4": -6.820633396388274, - "c5": 17.318879641490064, - "c6": 7.53063226664149, - "c7": -7.7354476377130545 + "points": { + "c1": -19.498975340327632, + "c2": -19.069986041333745, + "c3": -4.705093445978086, + "c4": 11.558858952215395, + "c5": 3.285646337172029, + "c6": -10.6576176538014, + "c7": 15.99860171739838 }, - "vertexSeeds": { - "c1": 7.542873119750607, - "c2": 7.646366699966295, - "c3": 7.549597175989173, - "c4": 7.9209824974875875, - "c5": 7.500226294504167, - "c6": 7.79900077023351, - "c7": 7.551229691908078 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [58, 15, 49] }, @@ -455523,23 +455523,23 @@ "year": 1832, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -14.821770563159573, - "c2": -13.034069187843052, - "c3": 14.79744181726808, - "c4": 15.516837168195217, - "c5": 22.363220343630736, - "c6": 23.541818634365733, - "c7": 1.1985207150790025 + "points": { + "c1": -6.077078930592098, + "c2": -21.173735706134593, + "c3": -12.610354594878862, + "c4": -12.114930998063084, + "c5": 10.599650327411062, + "c6": -9.5312156388819, + "c7": -15.290385777885051 }, - "vertexSeeds": { - "c1": 5.709093805987339, - "c2": 5.485138196289217, - "c3": 5.65154304487648, - "c4": 5.8820424885478415, - "c5": 5.4941918653246535, - "c6": 5.691557705129855, - "c7": 5.677388856844911 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -455550,23 +455550,23 @@ "year": 1832, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 20.072635756123763, - "c2": 4.32285632282186, - "c3": -8.213451592202805, - "c4": -15.650713468981154, - "c5": 3.651011415415251, - "c6": -5.103978242503832, - "c7": -18.67199826677639 + "points": { + "c1": 31.01844728070173, + "c2": 3.599776158220102, + "c3": -29.5485603786454, + "c4": -13.258141215819204, + "c5": -12.908350739493947, + "c6": 18.83623853920225, + "c7": 20.89147844930919 }, - "vertexSeeds": { - "c1": 5.491810878628507, - "c2": 5.477223332770768, - "c3": 5.243568174012638, - "c4": 5.258352144239547, - "c5": 5.438754377174423, - "c6": 5.239177235348563, - "c7": 5.408598537398824 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -455577,23 +455577,23 @@ "year": 1832, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -2.5179525346384857, - "c2": -15.241501318085515, - "c3": 11.407097854294769, - "c4": -6.027515211224895, - "c5": 9.225765351550258, - "c6": 8.656558548704204, - "c7": -13.722308485075432 + "points": { + "c1": 10.395725274577792, + "c2": -12.059507009233972, + "c3": 12.160339220798335, + "c4": -21.908582903081218, + "c5": 25.563060954250183, + "c6": 19.650095167001915, + "c7": 16.290520765885894 }, - "vertexSeeds": { - "c1": 7.482778258382778, - "c2": 7.608967839143652, - "c3": 7.460625792744317, - "c4": 7.530429080506352, - "c5": 7.61394544636995, - "c6": 7.951832823186909, - "c7": 7.291547275124744 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [58, 15, 49] }, @@ -455604,23 +455604,23 @@ "year": 1832, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -0.9025815890289905, - "c2": 2.484764417465591, - "c3": 21.15474839451383, - "c4": -22.948513714008133, - "c5": -7.953777913116092, - "c6": -14.949495767997345, - "c7": 19.153386208779132 + "points": { + "c1": 16.639695619379943, + "c2": 9.425931429238325, + "c3": -19.38315886050345, + "c4": -10.696335481862441, + "c5": 6.2124413916397785, + "c6": 17.894748657048616, + "c7": -26.285037994858524 }, - "vertexSeeds": { - "c1": 9.970079665013667, - "c2": 9.661024702069675, - "c3": 9.536678866522514, - "c4": 10.035103916347758, - "c5": 10.187809969326743, - "c6": 9.784688109513649, - "c7": 10.249464652337323 + "offsets": { + "c1": 17.281553398058254, + "c2": 14.81276005547851, + "c3": 12.343966712898764, + "c4": 9.87517337031902, + "c5": 7.406380027739255, + "c6": 4.93758668515949, + "c7": 2.468793342579745 }, "rgb": [222, 0, 59] }, @@ -455631,23 +455631,23 @@ "year": 1832, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -15.910863785312818, - "c2": -21.314666878665587, - "c3": -20.67419010613735, - "c4": -10.099768928540733, - "c5": -13.61793107086153, - "c6": -4.759329983234149, - "c7": -8.257560973936055 + "points": { + "c1": -22.250283115479483, + "c2": -24.359493956888826, + "c3": 26.131323165609967, + "c4": -1.7790435133883165, + "c5": 8.066064591840746, + "c6": -17.610733874357948, + "c7": 9.903586200216072 }, - "vertexSeeds": { - "c1": 5.465706894408646, - "c2": 5.488136713989397, - "c3": 5.379496770458133, - "c4": 5.254418681915519, - "c5": 5.3526767279977, - "c6": 5.431536260248426, - "c7": 5.497433064445026 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -455658,23 +455658,23 @@ "year": 1832, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -19.585770154755288, - "c2": 18.90812847211469, - "c3": 10.058084069252068, - "c4": -0.024624798956967453, - "c5": 13.741969965392038, - "c6": 2.6811644385682634, - "c7": 20.528387154054535 + "points": { + "c1": 16.734455319379457, + "c2": -10.526336503453752, + "c3": 13.441622335609829, + "c4": -16.11394578343243, + "c5": 22.523295217015423, + "c6": -17.797773048490143, + "c7": -17.32677058280637 }, - "vertexSeeds": { - "c1": 5.232779523285636, - "c2": 5.408841219494448, - "c3": 5.288604104439111, - "c4": 5.375568078274872, - "c5": 5.439185000334099, - "c6": 5.384143949727157, - "c7": 5.341432895389576 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -455685,23 +455685,23 @@ "year": 1832, "resistanceReported": false, "duration": 12960000, - "curveSeeds": { - "c1": 21.118289871056888, - "c2": -11.934143467402706, - "c3": -6.652736704958162, - "c4": -3.5860896297749214, - "c5": -11.136627573719737, - "c6": -5.449787329968114, - "c7": 10.887015827878102 + "points": { + "c1": -3.686560015698202, + "c2": 12.814683244807547, + "c3": -14.50292972651837, + "c4": 18.978570050910946, + "c5": -14.219054757312778, + "c6": -16.50249348943529, + "c7": -21.724998845372227 }, - "vertexSeeds": { - "c1": 7.679357308385229, - "c2": 7.3552037886002735, - "c3": 7.318032988382212, - "c4": 7.869773004891451, - "c5": 7.198461017240312, - "c6": 7.509828313304594, - "c7": 7.649779376831007 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -455712,23 +455712,23 @@ "year": 1833, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": 15.591218009335826, - "c2": -17.35543725396391, - "c3": 17.785253492356112, - "c4": -8.49289546732027, - "c5": -3.2305904757869612, - "c6": -21.488311548608152, - "c7": 17.892228616686467 + "points": { + "c1": -11.130451476053679, + "c2": 23.029769984118282, + "c3": 5.209214977615865, + "c4": -16.616606200694875, + "c5": 4.835338962496998, + "c6": -0.920379644165866, + "c7": -9.181484574032254 }, - "vertexSeeds": { - "c1": 5.267277297198676, - "c2": 5.263273873633677, - "c3": 5.39212532938958, - "c4": 5.3321412019708205, - "c5": 5.409341770816762, - "c6": 5.226741165192087, - "c7": 5.322156160711236 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -455739,23 +455739,23 @@ "year": 1833, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 16.802139591631896, - "c2": 12.491119550115027, - "c3": -23.51977445265388, - "c4": 11.252581106422436, - "c5": -10.684578137570416, - "c6": -19.33997695168277, - "c7": 10.347812887309583 + "points": { + "c1": 19.98898949052604, + "c2": -12.848043189411364, + "c3": 23.50757007763156, + "c4": 2.504682238447163, + "c5": 0.33627646343078865, + "c6": 15.002198672629806, + "c7": 18.748454811282794 }, - "vertexSeeds": { - "c1": 5.473729812736558, - "c2": 5.8639291405354035, - "c3": 5.925089609734499, - "c4": 5.572780785855311, - "c5": 5.823933242678004, - "c6": 5.890568422010289, - "c7": 5.684520373903836 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -455766,23 +455766,23 @@ "year": 1833, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": -8.575672175958204, - "c2": 2.2347407740891576, - "c3": 19.79282368447135, - "c4": -17.43813394714246, - "c5": -21.844591549603, - "c6": 11.3221930240422, - "c7": 5.923078598406459 + "points": { + "c1": -15.416905304697208, + "c2": 10.479767607253628, + "c3": 16.553776934932323, + "c4": -12.227757747562762, + "c5": -5.659136420251059, + "c6": 7.862349287622969, + "c7": -6.530702822374874 }, - "vertexSeeds": { - "c1": 5.393275694430675, - "c2": 5.4962690736968804, - "c3": 5.466748484600383, - "c4": 5.3062574744759745, - "c5": 5.329176330646095, - "c6": 5.495045517953128, - "c7": 5.325872788287219 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -455793,23 +455793,23 @@ "year": 1833, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 2.2401420990884837, - "c2": 24.87496235384375, - "c3": -8.299571739091707, - "c4": -23.46294015616137, - "c5": -9.036012863806612, - "c6": 12.121310575775937, - "c7": 25.67660865774768 + "points": { + "c1": 23.419122650805292, + "c2": 21.773518792127128, + "c3": 27.486013419858374, + "c4": -23.03566726875122, + "c5": -5.004314411579916, + "c6": 25.195413679537623, + "c7": -24.135109895327925 }, - "vertexSeeds": { - "c1": 3.853283682593653, - "c2": 3.8436622403693446, - "c3": 3.8043747842413027, - "c4": 3.884393639930308, - "c5": 3.798935061928744, - "c6": 3.862567266847195, - "c7": 3.8783774884008664 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.575589459084595, + "c3": 4.64632454923715, + "c4": 3.7170596393897424, + "c5": 2.7877947295422976, + "c6": 1.8585298196948525, + "c7": 0.9292649098474448 }, "rgb": [222, 0, 59] }, @@ -455820,23 +455820,23 @@ "year": 1833, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 15.786600508543295, - "c2": 20.98934415889709, - "c3": 2.3540881845321593, - "c4": -0.7389331156722179, - "c5": -23.306461109579267, - "c6": -16.479246777371305, - "c7": -21.271345940744183 + "points": { + "c1": -10.984489406717056, + "c2": 16.62716107915429, + "c3": 11.70806836993036, + "c4": -13.004522270563484, + "c5": -9.776879824796403, + "c6": 11.059932577691036, + "c7": -17.18192829991144 }, - "vertexSeeds": { - "c1": 4.121263571701014, - "c2": 4.218858362701982, - "c3": 4.183478283125256, - "c4": 4.131562761852349, - "c5": 4.196051676727572, - "c6": 4.167923331651729, - "c7": 4.108236074830896 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.102635228848825, + "c3": 5.085529357374025, + "c4": 4.068423485899199, + "c5": 3.0513176144243994, + "c6": 2.0342117429495996, + "c7": 1.0171058714747998 }, "rgb": [222, 0, 59] }, @@ -455847,23 +455847,23 @@ "year": 1833, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -11.232331001275861, - "c2": -1.7416637715161372, - "c3": 0.05436513948755817, - "c4": -6.4934397869140525, - "c5": -18.689852944900426, - "c6": -9.161163373948646, - "c7": -5.47805343833074 + "points": { + "c1": -9.816465484739652, + "c2": 17.45955680358022, + "c3": -9.23221777774506, + "c4": -3.323026793196469, + "c5": 7.816220056980605, + "c6": -23.1478685809665, + "c7": -15.380189581887338 }, - "vertexSeeds": { - "c1": 7.3275398217407, - "c2": 7.739688263876854, - "c3": 7.692557008469134, - "c4": 7.483807161545146, - "c5": 7.412815490310526, - "c6": 7.702154426645516, - "c7": 7.680089439710678 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -455874,23 +455874,23 @@ "year": 1833, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -16.239864421539366, - "c2": 8.938772024538284, - "c3": 2.9440825825780443, - "c4": 0.7751978716392358, - "c5": -0.9689134603322564, - "c6": 5.998817392962781, - "c7": 28.95353195345771 + "points": { + "c1": -13.097348352487156, + "c2": 30.8414282076575, + "c3": -3.512753058727416, + "c4": 23.50943439578041, + "c5": 3.7444040207978304, + "c6": -16.948042324241136, + "c7": 24.383015519052286 }, - "vertexSeeds": { - "c1": 3.8425778072578907, - "c2": 3.789653761280411, - "c3": 3.8378410864907297, - "c4": 3.8515582112749307, - "c5": 3.7835709807160245, - "c6": 3.844760073436945, - "c7": 3.840265748402556 + "offsets": { + "c1": 6.5048543689320395, + "c2": 5.5755894590846005, + "c3": 4.646324549237162, + "c4": 3.7170596393897237, + "c5": 2.7877947295423158, + "c6": 1.8585298196948774, + "c7": 0.9292649098474387 }, "rgb": [238, 201, 159] }, @@ -455901,23 +455901,23 @@ "year": 1833, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 5.4515946880014, - "c2": -11.533266570743283, - "c3": 17.88583579076721, - "c4": 12.381776602652558, - "c5": -2.8995411510160665, - "c6": 4.391580115574186, - "c7": -12.991347190608241 + "points": { + "c1": -2.744546655611277, + "c2": -24.233779494037172, + "c3": -19.91158990066959, + "c4": -14.799861082836458, + "c5": -20.021887869684583, + "c6": -22.4298346262268, + "c7": -16.201156817852443 }, - "vertexSeeds": { - "c1": 5.486610835076818, - "c2": 5.354689632247101, - "c3": 5.269189907921838, - "c4": 5.247846404074903, - "c5": 5.306140116507581, - "c6": 5.4214185395739225, - "c7": 5.426020513720515 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664344, + "c3": 6.703652334720299, + "c4": 5.3629218677762305, + "c5": 4.022191400832185, + "c6": 2.6814609338881152, + "c7": 1.3407304669440696 }, "rgb": [77, 76, 132] }, @@ -455928,23 +455928,23 @@ "year": 1833, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 4.483816741988349, - "c2": 17.85397492634679, - "c3": -8.08200646477751, - "c4": 16.624448425708227, - "c5": 3.881137866657486, - "c6": 3.7796981647245538, - "c7": -3.8236990964737885 + "points": { + "c1": -0.6078000896369744, + "c2": -11.330855387883446, + "c3": -13.146684283118308, + "c4": -1.1679971604645303, + "c5": -6.456147198873481, + "c6": 5.084051027109478, + "c7": 4.205288763583727 }, - "vertexSeeds": { - "c1": 4.582137630306931, - "c2": 4.348609930094211, - "c3": 5.077219576094872, - "c4": 4.216777060450462, - "c5": 4.90601039342917, - "c6": 5.1990906850546414, - "c7": 4.962815120829714 + "offsets": { + "c1": 9.06148867313916, + "c2": 7.766990291262136, + "c3": 6.472491909385112, + "c4": 5.177993527508089, + "c5": 3.883495145631068, + "c6": 2.5889967637540443, + "c7": 1.2944983818770204 }, "rgb": [222, 0, 59] }, @@ -455955,23 +455955,23 @@ "year": 1833, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -22.573067530977355, - "c2": 24.500634732676552, - "c3": 8.72256812623391, - "c4": -15.05738375100693, - "c5": -27.09224112064589, - "c6": 4.878967195763721, - "c7": 1.624138446803979 + "points": { + "c1": 16.304330614265766, + "c2": 24.5053152086342, + "c3": -14.459422370243951, + "c4": 26.989921560314002, + "c5": 15.80572928609616, + "c6": -12.803969529373127, + "c7": 7.809472098137178 }, - "vertexSeeds": { - "c1": 5.4932979109644045, - "c2": 5.461170392668742, - "c3": 5.469250396303584, - "c4": 5.398032043890779, - "c5": 5.399462166844492, - "c6": 5.488420247941684, - "c7": 5.398736670395517 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -455982,23 +455982,23 @@ "year": 1833, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -3.609988281047709, - "c2": -13.029646890848172, - "c3": -23.51128447536627, - "c4": -25.573739432615117, - "c5": 21.092159149593265, - "c6": 19.925447435127012, - "c7": 16.59807303794834 + "points": { + "c1": 5.056051171538307, + "c2": 12.853406502420846, + "c3": -1.06511938024682, + "c4": -21.105535919919532, + "c5": 17.464915978166935, + "c6": -22.751701608415473, + "c7": -10.997855042810013 }, - "vertexSeeds": { - "c1": 8.310246579189593, - "c2": 8.106281550142805, - "c3": 8.234976510754487, - "c4": 8.302123402398376, - "c5": 8.222390369153729, - "c6": 8.2183110322227, - "c7": 8.44108608532907 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.48266296809986, + "c3": 10.402219140083217, + "c4": 8.321775312066572, + "c5": 6.24133148404993, + "c6": 4.160887656033286, + "c7": 2.080443828016643 }, "rgb": [238, 201, 159] }, @@ -456009,23 +456009,23 @@ "year": 1833, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 24.273801283892688, - "c2": -19.74411546788972, - "c3": -14.913467125003686, - "c4": 14.308667845300455, - "c5": -10.506650198207815, - "c6": 23.325524863326947, - "c7": -3.3804647411001483 + "points": { + "c1": -22.915601314199797, + "c2": -20.483838567424872, + "c3": 19.202502571209777, + "c4": 9.339118553599107, + "c5": -32.024455657971096, + "c6": 1.1288883161062557, + "c7": -11.165639855028331 }, - "vertexSeeds": { - "c1": 5.369524291372179, - "c2": 5.2365101525040325, - "c3": 5.319439941315682, - "c4": 5.25824760766481, - "c5": 5.258934324800684, - "c6": 5.2853737074078175, - "c7": 5.358053982857329 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [77, 76, 132] }, @@ -456036,23 +456036,23 @@ "year": 1833, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -29.314481480776685, - "c2": 19.400334973600742, - "c3": 2.559748605800337, - "c4": 17.458911140523902, - "c5": -28.463468873824144, - "c6": -20.49993543260903, - "c7": 11.67079348877754 + "points": { + "c1": -17.798277630444876, + "c2": -4.672150050321804, + "c3": 9.875386107357386, + "c4": 0.04918862427005877, + "c5": -8.127493989575193, + "c6": -16.13004740995521, + "c7": -22.333561331699954 }, - "vertexSeeds": { - "c1": 5.376913594938798, - "c2": 5.938103061740857, - "c3": 5.690962803090207, - "c4": 5.862055934018628, - "c5": 5.8991232920379115, - "c6": 5.92853136201292, - "c7": 5.790718134038955 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -456063,23 +456063,23 @@ "year": 1833, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -7.1635266741367865, - "c2": 3.4667763625357964, - "c3": 1.8248890290294248, - "c4": 16.727461591487785, - "c5": -2.738325153485931, - "c6": 25.857942778578515, - "c7": -5.552226790974732 + "points": { + "c1": 19.13219862949612, + "c2": 16.4454942007869, + "c3": -10.977798663406539, + "c4": -15.822703095129762, + "c5": 13.535341837632817, + "c6": 5.011797139810813, + "c7": -16.558921764801706 }, - "vertexSeeds": { - "c1": 2.1123911289258674, - "c2": 2.220827348390323, - "c3": 2.157892422563527, - "c4": 2.2481137921927195, - "c5": 2.1071685398300763, - "c6": 2.229166349324833, - "c7": 2.120544033161819 + "offsets": { + "c1": 3.7864077669902914, + "c2": 3.245492371705966, + "c3": 2.7045769764216336, + "c4": 2.1636615811373083, + "c5": 1.622746185852983, + "c6": 1.0818307905686508, + "c7": 0.5409153952843254 }, "rgb": [86, 146, 138] }, @@ -456090,23 +456090,23 @@ "year": 1833, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": 25.474938044295396, - "c2": -12.65002077542856, - "c3": 15.434560321969474, - "c4": 12.174053958617225, - "c5": 9.021659151858596, - "c6": -18.502201667658586, - "c7": -1.83171762586203 + "points": { + "c1": 11.799835711824652, + "c2": 2.7034392841781774, + "c3": -26.217197725803796, + "c4": 19.76464558685007, + "c5": 13.271777828654013, + "c6": 20.58129764726773, + "c7": -12.930866710954188 }, - "vertexSeeds": { - "c1": 5.9455958549222805, - "c2": 5.9455958549222805, - "c3": 5.9455958549222805, - "c4": 5.9455958549222805, - "c5": 5.9455958549222805, - "c6": 5.9455958549222805, - "c7": 5.9455958549222805 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -456117,23 +456117,23 @@ "year": 1833, "resistanceReported": false, "duration": 1036800, - "curveSeeds": { - "c1": 2.482694283346353, - "c2": -8.519373903664166, - "c3": -9.459407032348963, - "c4": 10.85015662161957, - "c5": -0.9789142756251739, - "c6": 0.009578700676204477, - "c7": -4.0113925304881 + "points": { + "c1": -9.498983512780796, + "c2": -10.976360574866488, + "c3": -2.3004281117115255, + "c4": 12.442296267485238, + "c5": -8.984255040914075, + "c6": 2.5953760790727376, + "c7": 7.934537714201019 }, - "vertexSeeds": { - "c1": 8.63191053202116, - "c2": 8.96496155137943, - "c3": 9.259051609160798, - "c4": 9.033735982784027, - "c5": 9.310117872914455, - "c6": 8.94387486994429, - "c7": 9.297583279720108 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -456144,23 +456144,23 @@ "year": 1833, "resistanceReported": false, "duration": 17712000, - "curveSeeds": { - "c1": -24.4034260480882, - "c2": -18.152974173913428, - "c3": -20.219200324881573, - "c4": -1.204459802220395, - "c5": -24.2432011310978, - "c6": 2.798890163009279, - "c7": -15.50673068191651 + "points": { + "c1": -8.259660338115793, + "c2": -18.287379936051238, + "c3": -4.289485378421411, + "c4": 6.48160490591486, + "c5": -6.910519465842036, + "c6": 20.45517259578519, + "c7": -14.04212497095455 }, - "vertexSeeds": { - "c1": 7.250969745505058, - "c2": 7.877969729618469, - "c3": 7.376686068202027, - "c4": 7.890195232808203, - "c5": 7.498823862627305, - "c6": 7.485368292202168, - "c7": 7.384238917873646 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -456171,23 +456171,23 @@ "year": 1833, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": 2.808452038093222, - "c2": 17.454164105752184, - "c3": 10.846811578494169, - "c4": -3.9009831860462043, - "c5": 12.656025479436167, - "c6": -5.51409247949649, - "c7": 16.302985415871632 + "points": { + "c1": 37.60434815659149, + "c2": 14.018483571661726, + "c3": 39.29568559167267, + "c4": 28.22964362575761, + "c5": 35.847565054338766, + "c6": -7.216876449746003, + "c7": -36.78134802160566 }, - "vertexSeeds": { - "c1": 7.439394633741264, - "c2": 7.329345547653458, - "c3": 7.38583939171267, - "c4": 7.4244046765788125, - "c5": 7.288637364535319, - "c6": 7.8897368688019585, - "c7": 7.9646913001230715 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [222, 0, 59] }, @@ -456198,23 +456198,23 @@ "year": 1833, "resistanceReported": false, "duration": 26438400, - "curveSeeds": { - "c1": -31.31713310449455, - "c2": 17.061665613809325, - "c3": -13.239420017605593, - "c4": 4.879621293399957, - "c5": -26.506340205974592, - "c6": -7.546927451644709, - "c7": -1.653585542817467 + "points": { + "c1": -40.2373298197193, + "c2": -7.8307558498515775, + "c3": 12.814826974829458, + "c4": 9.205982762523512, + "c5": 27.63849785268051, + "c6": 2.9101607935890996, + "c7": 19.147637112818735 }, - "vertexSeeds": { - "c1": 7.960995908366103, - "c2": 7.710242135056319, - "c3": 7.637992072696982, - "c4": 7.882782770592074, - "c5": 7.3648129235781035, - "c6": 7.936492316339681, - "c7": 7.554336976195167 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [86, 146, 138] }, @@ -456225,23 +456225,23 @@ "year": 1834, "resistanceReported": false, "duration": 34214400, - "curveSeeds": { - "c1": 19.502577270987025, - "c2": -14.92261070660345, - "c3": 37.06551862767977, - "c4": -39.41426475985748, - "c5": -38.40162440355086, - "c6": 26.053581536223923, - "c7": -2.5704683237537864 + "points": { + "c1": -11.249904312862824, + "c2": -34.796775127598345, + "c3": 45.84743048067828, + "c4": -36.43157058395656, + "c5": -44.80772018840756, + "c6": -5.409130090568489, + "c7": -24.143636315776757 }, - "vertexSeeds": { - "c1": 9.208423066551093, - "c2": 9.05019987145886, - "c3": 9.315330036165454, - "c4": 8.850110262020875, - "c5": 9.47065632908224, - "c6": 8.921536185307685, - "c7": 8.755105175217285 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.786407766990289, + "c3": 11.488673139158571, + "c4": 9.190938511326854, + "c5": 6.893203883495135, + "c6": 4.595469255663416, + "c7": 2.2977346278316984 }, "rgb": [222, 0, 59] }, @@ -456252,23 +456252,23 @@ "year": 1834, "resistanceReported": false, "duration": 39744000, - "curveSeeds": { - "c1": 45.53125878314299, - "c2": 38.270412768820634, - "c3": 8.281113953800912, - "c4": 12.830935703617527, - "c5": -53.36327917445894, - "c6": -12.234684122227826, - "c7": 43.471331779920504 + "points": { + "c1": -9.112228485577859, + "c2": -53.33337304447833, + "c3": 20.2629436528901, + "c4": 32.745114569085075, + "c5": -12.600929441898955, + "c6": 33.58947374385896, + "c7": -0.15744507697817056 }, - "vertexSeeds": { - "c1": 6.262814481169591, - "c2": 6.166338310040854, - "c3": 6.249870034596341, - "c4": 6.4735356052760755, - "c5": 6.238002575868737, - "c6": 6.248462857350746, - "c7": 5.8623300221537935 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514571, + "c3": 7.766990291262134, + "c4": 6.213592233009713, + "c5": 4.660194174757277, + "c6": 3.1067961165048565, + "c7": 1.5533980582524198 }, "rgb": [58, 15, 49] }, @@ -456279,23 +456279,23 @@ "year": 1834, "resistanceReported": false, "duration": 45273600, - "curveSeeds": { - "c1": -44.37402280508287, - "c2": 53.831314667744735, - "c3": -14.6371814423796, - "c4": -30.567862914709576, - "c5": -3.770474491044034, - "c6": 53.551231286894904, - "c7": 22.675330183195072 + "points": { + "c1": -55.162646337222185, + "c2": -5.74272332972852, + "c3": 6.856922285480692, + "c4": -13.971400837257207, + "c5": -57.74025968162258, + "c6": -21.573334812800667, + "c7": -2.8145344050994083 }, - "vertexSeeds": { - "c1": 8.657570334601475, - "c2": 8.997682251728147, - "c3": 9.401689989100289, - "c4": 9.44565486197464, - "c5": 9.470821664587692, - "c6": 9.317949063772623, - "c7": 9.153805576139503 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -456306,23 +456306,23 @@ "year": 1833, "resistanceReported": false, "duration": 18230400, - "curveSeeds": { - "c1": 3.525172473479703, - "c2": 28.77496836930008, - "c3": 15.567246429280406, - "c4": 11.209093021602204, - "c5": 27.474294495557142, - "c6": -12.884948556950452, - "c7": -25.25464397346647 + "points": { + "c1": -1.2045544491023747, + "c2": 15.817561211222685, + "c3": -30.916055461463735, + "c4": -25.11137219655729, + "c5": -8.138774292221388, + "c6": -15.099220857437576, + "c7": -21.784410449180477 }, - "vertexSeeds": { - "c1": 9.432344269009677, - "c2": 9.365820848228827, - "c3": 9.267612000451422, - "c4": 8.678504842106152, - "c5": 9.118566125385938, - "c6": 8.81412715950011, - "c7": 9.115657706493145 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -456333,23 +456333,23 @@ "year": 1833, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 32.169295745452665, - "c2": 18.970661723492285, - "c3": -17.310813966071613, - "c4": -2.9206368969755836, - "c5": -18.17513800628253, - "c6": -19.34198687588468, - "c7": -26.474527417371558 + "points": { + "c1": -23.164098325283007, + "c2": 22.02919525126743, + "c3": 22.885508791464915, + "c4": -5.278113085894077, + "c5": -3.051764569283744, + "c6": -16.358210890968707, + "c7": -18.46379560781369 }, - "vertexSeeds": { - "c1": 16.288703057357612, - "c2": 15.688473407881363, - "c3": 16.04678853007392, - "c4": 15.032518258868258, - "c5": 16.108086937613542, - "c6": 14.765665276419977, - "c7": 15.615295029978592 + "offsets": { + "c1": 27.346278317152105, + "c2": 23.439667128987516, + "c3": 19.53305594082292, + "c4": 15.62644475265833, + "c5": 11.719833564493738, + "c6": 7.813222376329147, + "c7": 3.9066111881645553 }, "rgb": [86, 146, 138] }, @@ -456360,23 +456360,23 @@ "year": 1833, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -6.0590908567538655, - "c2": -8.307976112824392, - "c3": 2.7765289441194163, - "c4": 3.501497496515473, - "c5": 18.10740477987028, - "c6": 10.500479893139826, - "c7": 4.30853107464004 + "points": { + "c1": -18.041715885456668, + "c2": -21.795677566947738, + "c3": 24.938193169741517, + "c4": -0.8243768178895614, + "c5": 17.002204689424737, + "c6": 10.322553945613116, + "c7": 4.781472172785055 }, - "vertexSeeds": { - "c1": 9.097441173442022, - "c2": 9.418173201316003, - "c3": 9.074567117558503, - "c4": 9.404449456894566, - "c5": 8.746960311340171, - "c6": 9.062472776098744, - "c7": 9.393186966866159 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -456387,23 +456387,23 @@ "year": 1834, "resistanceReported": false, "duration": 33955200, - "curveSeeds": { - "c1": 18.163279298039363, - "c2": 16.941119948590476, - "c3": -11.646846564774833, - "c4": 21.971879408282497, - "c5": -43.369522588762436, - "c6": -22.26217773482078, - "c7": 46.4973602864765 + "points": { + "c1": 3.9589312072767058, + "c2": -10.239548553190346, + "c3": 19.35600124566779, + "c4": -31.2910167793718, + "c5": -7.414475386682518, + "c6": -27.680592167451564, + "c7": 45.30208791503677 }, - "vertexSeeds": { - "c1": 4.573202103566613, - "c2": 4.571560893882946, - "c3": 4.696482370818387, - "c4": 4.689144179665267, - "c5": 4.614249143394969, - "c6": 4.580623822434634, - "c7": 4.629016888311429 + "offsets": { + "c1": 7.993527508090614, + "c2": 6.851595006934809, + "c3": 5.709662505779016, + "c4": 4.567730004623209, + "c5": 3.4257975034674044, + "c6": 2.283865002311611, + "c7": 1.1419325011558055 }, "rgb": [238, 201, 159] }, @@ -456414,23 +456414,23 @@ "year": 1833, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -23.919150241450325, - "c2": -4.304047691555748, - "c3": 13.729252318985715, - "c4": 5.50577730099112, - "c5": -18.487647951374193, - "c6": 15.410917658932775, - "c7": -20.931082126460243 + "points": { + "c1": -16.98497189023085, + "c2": -3.193516122918698, + "c3": -24.590159757614224, + "c4": -24.39347190435122, + "c5": 13.838213337957868, + "c6": -8.166967476347466, + "c7": -15.036530077261668 }, - "vertexSeeds": { - "c1": 9.188037566449479, - "c2": 9.183066459285639, - "c3": 9.186374170014382, - "c4": 8.981581227803748, - "c5": 8.74567456802776, - "c6": 9.279924272539374, - "c7": 9.287166666711359 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -456441,23 +456441,23 @@ "year": 1833, "resistanceReported": false, "duration": 26006400, - "curveSeeds": { - "c1": -23.858219108211788, - "c2": -11.039016984331965, - "c3": -25.7401412799274, - "c4": 1.03639445449695, - "c5": -25.543234591983836, - "c6": 31.758338237467186, - "c7": 35.93261389961205 + "points": { + "c1": 1.593019981838573, + "c2": 13.109570250364563, + "c3": -24.8066978709857, + "c4": -2.6419452862320654, + "c5": -31.129137565065843, + "c6": -33.593304507180605, + "c7": 31.58058342904117 }, - "vertexSeeds": { - "c1": 9.922025143884348, - "c2": 8.71627905491762, - "c3": 9.169923845006002, - "c4": 9.628957056820871, - "c5": 10.1403147302852, - "c6": 10.040189961509487, - "c7": 8.619448630264383 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518728, + "c3": 12.367082755432268, + "c4": 9.89366620434582, + "c5": 7.420249653259359, + "c6": 4.94683310217291, + "c7": 2.47341655108646 }, "rgb": [58, 15, 49] }, @@ -456468,23 +456468,23 @@ "year": 1833, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": 19.3135383328245, - "c2": -5.708973940491276, - "c3": 2.4144891756405187, - "c4": 18.157635590139108, - "c5": 26.673455269825517, - "c6": -23.75700547306556, - "c7": 20.60331681483143 + "points": { + "c1": 33.4213322824571, + "c2": -34.055390949070684, + "c3": -21.59788609362328, + "c4": -24.390334330324304, + "c5": -32.56983489052031, + "c6": 31.343698700834494, + "c7": 25.009810133949102 }, - "vertexSeeds": { - "c1": 5.526422294205184, - "c2": 5.774568905832278, - "c3": 5.402806658865624, - "c4": 5.572788742865002, - "c5": 5.779162699639677, - "c6": 5.542418400674359, - "c7": 5.895559389626356 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -456495,23 +456495,23 @@ "year": 1833, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 23.834478990549677, - "c2": -36.16223042601988, - "c3": 0.2832672242351393, - "c4": -29.714806056985736, - "c5": 2.1862776264227293, - "c6": 20.444004812508304, - "c7": -35.91751174418782 + "points": { + "c1": -36.61268971908824, + "c2": 13.730415522197148, + "c3": 4.118761752312182, + "c4": -1.332618011629279, + "c5": 28.713496077823685, + "c6": -9.395921238993854, + "c7": -23.95385979977642 }, - "vertexSeeds": { - "c1": 5.694263375851787, - "c2": 5.703717376278188, - "c3": 5.488378807110342, - "c4": 5.660526450843473, - "c5": 5.551747155622584, - "c6": 5.656651714317222, - "c7": 5.8038523012655485 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -456522,23 +456522,23 @@ "year": 1833, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -2.972810238873759, - "c2": -7.879632432585858, - "c3": 27.536355533970443, - "c4": 11.85277605638317, - "c5": -3.043466136075601, - "c6": 17.53176894303072, - "c7": -0.7937440695716624 + "points": { + "c1": -3.417597215860198, + "c2": -14.87921580514941, + "c3": -28.478100928686658, + "c4": 13.356634604963226, + "c5": 3.720388709640403, + "c6": 27.97263538868041, + "c7": -8.071873765576878 }, - "vertexSeeds": { - "c1": 5.934377453595076, - "c2": 5.071503232840318, - "c3": 5.410661233342044, - "c4": 7.8942675688336905, - "c5": 5.154789892774027, - "c6": 4.7706848896004885, - "c7": 4.4492395706514625 + "offsets": { + "c1": 13.980582524271846, + "c2": 11.983356449375869, + "c3": 9.986130374479888, + "c4": 7.988904299583911, + "c5": 5.991678224687932, + "c6": 3.9944521497919547, + "c7": 1.9972260748959787 }, "rgb": [86, 146, 138] }, @@ -456549,23 +456549,23 @@ "year": 1833, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 10.06605513027191, - "c2": 5.73418813602235, - "c3": -11.905016468000861, - "c4": -24.22921233986844, - "c5": -18.91977130192025, - "c6": -16.217065174579844, - "c7": 4.201181558025922 + "points": { + "c1": -25.2154639938799, + "c2": -1.3019357122554602, + "c3": -11.837301488020472, + "c4": 6.773303749926097, + "c5": 10.59375815477674, + "c6": -0.3488920478010229, + "c7": -27.3733150903103 }, - "vertexSeeds": { - "c1": 9.167430549880564, - "c2": 8.820740360601057, - "c3": 9.164790523116016, - "c4": 8.828182315442195, - "c5": 8.7105798319698, - "c6": 9.198596716440012, - "c7": 9.491360270801968 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -456576,23 +456576,23 @@ "year": 1834, "resistanceReported": false, "duration": 20217600, - "curveSeeds": { - "c1": -20.41768672965764, - "c2": 26.55996752410244, - "c3": -19.3009028356165, - "c4": 19.017215469274717, - "c5": -25.102320793522022, - "c6": 7.984022120131144, - "c7": 28.55155359567579 + "points": { + "c1": -33.648681153944864, + "c2": -13.580955208269298, + "c3": 5.751594206605425, + "c4": 17.543853855992495, + "c5": 7.532139361905735, + "c6": -33.92279413899327, + "c7": -28.723689071552844 }, - "vertexSeeds": { - "c1": 8.71312553129362, - "c2": 9.142616934688608, - "c3": 9.094186303631965, - "c4": 8.91687938454322, - "c5": 9.15511426117872, - "c6": 8.892989623879435, - "c7": 9.418535163156186 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -456603,23 +456603,23 @@ "year": 1833, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": -8.728196735924072, - "c2": 9.502095196744712, - "c3": 27.31505848884477, - "c4": 20.573883283430007, - "c5": -18.422153327241674, - "c6": 2.655827538566605, - "c7": -13.06706059077679 + "points": { + "c1": 1.3890648649912087, + "c2": -25.679310629658616, + "c3": -12.984453785616783, + "c4": 25.527110869488205, + "c5": -11.719963791449064, + "c6": 23.664075820592082, + "c7": -12.463739734973103 }, - "vertexSeeds": { - "c1": 5.283619345395872, - "c2": 5.335881125310199, - "c3": 5.351921599705872, - "c4": 5.226959702863209, - "c5": 5.302054165897779, - "c6": 5.278900688493372, - "c7": 5.240954213285235 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -456630,23 +456630,23 @@ "year": 1833, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -13.945384438646197, - "c2": -22.642945084778844, - "c3": 17.23597599431849, - "c4": -14.32911665818657, - "c5": 3.1532866062107843, - "c6": -3.8556525613770276, - "c7": -18.24855446463543 + "points": { + "c1": -7.892788166714077, + "c2": -20.611173216148835, + "c3": -2.723970000030423, + "c4": 26.114978905166677, + "c5": -15.991677824165095, + "c6": 23.335339832970863, + "c7": -22.17635911005233 }, - "vertexSeeds": { - "c1": 6.720949429128136, - "c2": 6.505880260636193, - "c3": 6.239418220530033, - "c4": 6.59144232135806, - "c5": 6.404395304849085, - "c6": 6.387680566650097, - "c7": 6.6583168548279374 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077667, + "c3": 8.090614886731386, + "c4": 6.472491909385106, + "c5": 4.854368932038825, + "c6": 3.236245954692562, + "c7": 1.618122977346281 }, "rgb": [238, 201, 159] }, @@ -456657,23 +456657,23 @@ "year": 1834, "resistanceReported": false, "duration": 21254400, - "curveSeeds": { - "c1": -12.927592971491407, - "c2": 30.90930015947785, - "c3": -23.946630212081217, - "c4": -5.24277550663324, - "c5": 9.621166352756, - "c6": 16.836036179634633, - "c7": 10.330075846754163 + "points": { + "c1": 33.04414733382403, + "c2": 17.657600640965967, + "c3": -34.71984617633069, + "c4": -9.614286051035705, + "c5": 15.921325227117862, + "c6": -8.95566836551125, + "c7": 26.759756553754542 }, - "vertexSeeds": { - "c1": 7.789544121915211, - "c2": 7.558153129164316, - "c3": 7.459313634110581, - "c4": 7.381434322255746, - "c5": 7.498622780350473, - "c6": 7.817549074816104, - "c7": 7.62759661370616 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410536, + "c3": 9.431345353675463, + "c4": 7.545076282940365, + "c5": 5.658807212205268, + "c6": 3.772538141470194, + "c7": 1.886269070735097 }, "rgb": [222, 0, 59] }, @@ -456684,23 +456684,23 @@ "year": 1834, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": -7.684411618423006, - "c2": 14.791095529091816, - "c3": -2.1068385648241907, - "c4": -4.961798280549534, - "c5": -14.76640286757693, - "c6": -14.045339089694364, - "c7": 24.278773136165288 + "points": { + "c1": 17.85933339548529, + "c2": 26.84589141459612, + "c3": 4.542991106571595, + "c4": 13.657564758847688, + "c5": -30.77117941787963, + "c6": -25.75304395223489, + "c7": -7.504246503611004 }, - "vertexSeeds": { - "c1": 5.369465529355788, - "c2": 5.315602554356898, - "c3": 5.4593643951203195, - "c4": 5.308191328826967, - "c5": 5.275580520329956, - "c6": 5.2500499357007975, - "c7": 5.447909736791599 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -456711,23 +456711,23 @@ "year": 1833, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 25.95489270864391, - "c2": 17.862697315518773, - "c3": 13.254676107680332, - "c4": -10.626923921733269, - "c5": -1.5252319493843949, - "c6": 2.9989897844449764, - "c7": -14.162533107683254 + "points": { + "c1": -3.5873043373031663, + "c2": -0.11516776503716031, + "c3": 16.855812896979984, + "c4": 6.292653367925084, + "c5": 21.44112667987185, + "c6": -28.02811901964955, + "c7": 9.236807605526678 }, - "vertexSeeds": { - "c1": 9.945499197766006, - "c2": 9.464951086289428, - "c3": 9.603898824907422, - "c4": 9.903165899707364, - "c5": 9.721644030016753, - "c6": 9.656842878762959, - "c7": 9.707404029065222 + "offsets": { + "c1": 16.92556634304207, + "c2": 14.507628294036078, + "c3": 12.08969024503003, + "c4": 9.671752196024032, + "c5": 7.253814147018039, + "c6": 4.835876098012016, + "c7": 2.417938049005995 }, "rgb": [77, 76, 132] }, @@ -456738,23 +456738,23 @@ "year": 1834, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -20.279240492405894, - "c2": 13.879465602614786, - "c3": 25.17814585996905, - "c4": -19.240141479174717, - "c5": 24.499388711642737, - "c6": 12.447411767862341, - "c7": -6.710002745296968 + "points": { + "c1": 19.409103711912415, + "c2": -8.78635049708036, + "c3": 20.263103364369663, + "c4": 4.248709974250588, + "c5": 15.374238732398538, + "c6": -21.185264288847407, + "c7": -7.480887814760699 }, - "vertexSeeds": { - "c1": 7.194513694382133, - "c2": 7.4509596071696516, - "c3": 7.95359971801596, - "c4": 7.8750516991612285, - "c5": 7.515586038659677, - "c6": 7.75109841919039, - "c7": 7.552456209553158 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [86, 146, 138] }, @@ -456765,23 +456765,23 @@ "year": 1834, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -21.979809285003434, - "c2": -14.10929993323504, - "c3": -16.081186770290916, - "c4": -21.889156232308558, - "c5": 25.942903498948596, - "c6": 22.616797703576687, - "c7": 23.076473390516597 + "points": { + "c1": -25.75610944061022, + "c2": -2.16884690205832, + "c3": 27.469463203670877, + "c4": 31.115172831917036, + "c5": -6.569454503500072, + "c6": 28.11591179549626, + "c7": -29.416435737562978 }, - "vertexSeeds": { - "c1": 9.161885472361107, - "c2": 9.119583077835015, - "c3": 8.612752096245075, - "c4": 9.120549796619382, - "c5": 9.345585741329483, - "c6": 8.976592981779948, - "c7": 9.043034686454245 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -456792,23 +456792,23 @@ "year": 1833, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 4.3900333531824245, - "c2": -4.6804180908799715, - "c3": 7.41984410787294, - "c4": -20.744562550043813, - "c5": 4.854236577630985, - "c6": -15.666194917495522, - "c7": -24.094432831091964 + "points": { + "c1": 0.35571599234786433, + "c2": 15.896575773648586, + "c3": -23.425221718436998, + "c4": 13.754964843468578, + "c5": -26.784457975495844, + "c6": 0.18934562299084945, + "c7": -24.537799702367575 }, - "vertexSeeds": { - "c1": 6.533936882713034, - "c2": 6.542523094445449, - "c3": 6.590690836226381, - "c4": 6.644786300900804, - "c5": 6.6245393999699065, - "c6": 6.533032339583332, - "c7": 6.599556791472745 + "offsets": { + "c1": 11.10032362459547, + "c2": 9.514563106796084, + "c3": 7.928802588996776, + "c4": 6.343042071197389, + "c5": 4.757281553398081, + "c6": 3.1715210355986945, + "c7": 1.5857605177993077 }, "rgb": [77, 76, 132] }, @@ -456819,23 +456819,23 @@ "year": 1834, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -10.458676335740677, - "c2": 20.301395288093243, - "c3": 23.45001834537072, - "c4": 8.8600211924776, - "c5": 2.959372362260808, - "c6": -11.673591965392985, - "c7": -4.972186354586654 + "points": { + "c1": 20.344338312921924, + "c2": -15.0489848313519, + "c3": -2.964786974126337, + "c4": -26.340551659207787, + "c5": 5.032951231123672, + "c6": -26.453590290581822, + "c7": -26.800049685445234 }, - "vertexSeeds": { - "c1": 5.427518049840351, - "c2": 5.464502871692358, - "c3": 5.321546372799505, - "c4": 5.477205053153822, - "c5": 5.332670513156428, - "c6": 5.24895288913804, - "c7": 5.227966910384915 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -456846,23 +456846,23 @@ "year": 1834, "resistanceReported": false, "duration": 27561600, - "curveSeeds": { - "c1": 5.529774933598958, - "c2": 34.87631211904701, - "c3": 4.06411042066523, - "c4": -36.20098627221269, - "c5": -19.07948840089826, - "c6": 7.0965420407926345, - "c7": 38.27729449171651 + "points": { + "c1": 2.0823532739323554, + "c2": -20.580562751712375, + "c3": 30.29999429074028, + "c4": 28.835838712032107, + "c5": 36.2005997222192, + "c6": 20.60506368521206, + "c7": 3.952534223510895 }, - "vertexSeeds": { - "c1": 9.480884904743473, - "c2": 8.630705396251084, - "c3": 9.158173237759463, - "c4": 8.938569454817873, - "c5": 9.09874143613173, - "c6": 8.9642879082769, - "c7": 8.852620192069015 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -456873,23 +456873,23 @@ "year": 1834, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 7.405474665414211, - "c2": -11.931234724716909, - "c3": 26.666548791457046, - "c4": 1.814295880499813, - "c5": -29.924235313847472, - "c6": -10.436127175508087, - "c7": -27.27263153238189 + "points": { + "c1": -31.34031185046522, + "c2": -19.584512649340194, + "c3": -4.707977835420849, + "c4": 26.823571056254977, + "c5": -22.112741636208916, + "c6": -33.8143356892681, + "c7": 26.14641548795266 }, - "vertexSeeds": { - "c1": 5.383586456805157, - "c2": 5.358679334358412, - "c3": 5.2838665677841945, - "c4": 5.3220959468265825, - "c5": 5.4764346787343285, - "c6": 5.335793044941001, - "c7": 5.301547507114248 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -456900,23 +456900,23 @@ "year": 1834, "resistanceReported": false, "duration": 24624000, - "curveSeeds": { - "c1": 10.481011068191556, - "c2": 25.15699502882967, - "c3": 0.7466623748381451, - "c4": 30.258288387708426, - "c5": -31.42649989077871, - "c6": 0.4519189822049299, - "c7": -18.875143646980874 + "points": { + "c1": -32.095390090016195, + "c2": -3.8518126015324583, + "c3": 5.7559016125818445, + "c4": -24.31858420848377, + "c5": -18.600956296200973, + "c6": 22.164725872035135, + "c7": -2.9334923153002705 }, - "vertexSeeds": { - "c1": 7.940337878640159, - "c2": 7.258270990137003, - "c3": 7.643474947031829, - "c4": 7.363707965899132, - "c5": 7.238548762800982, - "c6": 7.696363933002215, - "c7": 7.660817226186175 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [86, 146, 138] }, @@ -456927,23 +456927,23 @@ "year": 1834, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 7.599717259571026, - "c2": 5.9998817803522435, - "c3": 14.588152059918865, - "c4": 6.133925187980491, - "c5": 13.856286889462762, - "c6": 7.040439942974981, - "c7": 28.531337311266665 + "points": { + "c1": 11.384589801886676, + "c2": -9.169012215502331, + "c3": 13.298357513784417, + "c4": 17.14767636868227, + "c5": -20.299731133181098, + "c6": -28.893790811053297, + "c7": -25.689915366954388 }, - "vertexSeeds": { - "c1": 8.761263733899563, - "c2": 9.108116201539255, - "c3": 9.451855250128919, - "c4": 8.887085163493396, - "c5": 8.886675569368188, - "c6": 9.500951069587066, - "c7": 9.32231884948716 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -456954,23 +456954,23 @@ "year": 1834, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": 12.47542188582812, - "c2": 5.609221286356892, - "c3": 6.986190249549722, - "c4": 3.1049348211434094, - "c5": -25.585804020180014, - "c6": 3.3829827628522793, - "c7": 14.34510241863235 + "points": { + "c1": 1.1919660125831442, + "c2": 11.524320952371447, + "c3": 5.1690032370879635, + "c4": -32.411069094975446, + "c5": 5.317735908896317, + "c6": 21.487815658649367, + "c7": -7.257949572987915 }, - "vertexSeeds": { - "c1": 4.384374633850699, - "c2": 4.161027367882704, - "c3": 4.170220629143562, - "c4": 4.214155358409998, - "c5": 4.615862369450953, - "c6": 4.273456401102653, - "c7": 4.549931180752272 + "offsets": { + "c1": 7.73462783171521, + "c2": 6.629680998613042, + "c3": 5.524734165510862, + "c4": 4.419787332408694, + "c5": 3.314840499306516, + "c6": 2.209893666204347, + "c7": 1.1049468331021781 }, "rgb": [58, 15, 49] }, @@ -456981,23 +456981,23 @@ "year": 1834, "resistanceReported": false, "duration": 26784000, - "curveSeeds": { - "c1": -10.229510105379394, - "c2": 24.157693916318657, - "c3": -13.47027367914433, - "c4": 10.56277956629399, - "c5": -13.411177198525174, - "c6": 33.24093743188513, - "c7": -24.273839577226788 + "points": { + "c1": -5.309095232520683, + "c2": 21.734752242372295, + "c3": 27.73238713025053, + "c4": 8.711735895603297, + "c5": 6.896157352816822, + "c6": 24.892238997583974, + "c7": -34.711413503919154 }, - "vertexSeeds": { - "c1": 8.700466807402075, - "c2": 8.692287365269559, - "c3": 9.222948882182253, - "c4": 8.736613999759818, - "c5": 9.357043536239454, - "c6": 8.81540693231512, - "c7": 9.155099910377455 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110956, + "c3": 11.558021266759132, + "c4": 9.246417013407298, + "c5": 6.934812760055474, + "c6": 4.623208506703649, + "c7": 2.3116042533518244 }, "rgb": [222, 0, 59] }, @@ -457008,23 +457008,23 @@ "year": 1834, "resistanceReported": false, "duration": 24019200, - "curveSeeds": { - "c1": 22.052862970443947, - "c2": -16.31632987322596, - "c3": 17.125619897927457, - "c4": 4.621717278500938, - "c5": 36.21507563667852, - "c6": -22.450829575351438, - "c7": 13.130579483918446 + "points": { + "c1": -13.135990005374296, + "c2": 16.005800031161925, + "c3": 16.556507071992385, + "c4": -6.8828759220240805, + "c5": 35.25458260329904, + "c6": 15.9717739034908, + "c7": 37.93215654652201 }, - "vertexSeeds": { - "c1": 7.782518735273742, - "c2": 7.865139157245562, - "c3": 7.6170056694194965, - "c4": 7.443015832257993, - "c5": 7.662560264754868, - "c6": 7.596138613434044, - "c7": 7.389731575074201 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [238, 201, 159] }, @@ -457035,23 +457035,23 @@ "year": 1834, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 23.3788020818404, - "c2": 9.13271571276162, - "c3": -5.199491751416865, - "c4": 19.580679075851993, - "c5": 2.921395454478308, - "c6": -25.37673201322597, - "c7": -15.687481873787805 + "points": { + "c1": -0.32896863714341507, + "c2": 3.4935309658411917, + "c3": 17.343122990688084, + "c4": -27.900353744976343, + "c5": -18.307076304532544, + "c6": -9.238409409211112, + "c7": -3.2883946243224678 }, - "vertexSeeds": { - "c1": 2.0357697405033477, - "c2": 2.133253101010469, - "c3": 2.1294054913279323, - "c4": 2.1011853239920515, - "c5": 2.105574238945824, - "c6": 2.0730423815599988, - "c7": 2.2215990599544515 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461857, + "c3": 2.7276930189551547, + "c4": 2.1821544151641237, + "c5": 1.6366158113730929, + "c6": 1.0910772075820618, + "c7": 0.5455386037910309 }, "rgb": [238, 201, 159] }, @@ -457062,23 +457062,23 @@ "year": 1834, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 17.258505936548595, - "c2": -7.639791098114532, - "c3": 3.545654487538574, - "c4": 21.83707144504774, - "c5": 19.780700163674155, - "c6": -17.652582619769916, - "c7": -21.32812770539991 + "points": { + "c1": -1.2644508642352932, + "c2": 18.380365389617104, + "c3": 14.974915407210425, + "c4": 7.151921449069242, + "c5": 5.08770636567429, + "c6": 25.06838527292878, + "c7": -18.260652159022754 }, - "vertexSeeds": { - "c1": 3.0420824624003338, - "c2": 1.9605195419521406, - "c3": 2.0459394274412306, - "c4": 3.0496848241623304, - "c5": 2.047691394579688, - "c6": 2.718649324560392, - "c7": 2.2310434876867267 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.438280166435507, + "c3": 3.6985668053629217, + "c4": 2.958853444290337, + "c5": 2.2191400832177535, + "c6": 1.4794267221451685, + "c7": 0.7397133610725847 }, "rgb": [222, 0, 59] }, @@ -457089,23 +457089,23 @@ "year": 1834, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -2.853726613008792, - "c2": -19.548593897090043, - "c3": -7.03089656360623, - "c4": -22.71896575992838, - "c5": -14.880849757261316, - "c6": 22.165722662127557, - "c7": -21.814364156771543 + "points": { + "c1": 20.583385306535106, + "c2": 15.182113131924474, + "c3": -15.38036213129951, + "c4": -23.7969427876835, + "c5": 10.139221381515235, + "c6": -12.081745745434265, + "c7": 10.327231260568134 }, - "vertexSeeds": { - "c1": 5.935507301173614, - "c2": 5.9882586793279104, - "c3": 6.027621117470398, - "c4": 5.999320674367826, - "c5": 5.531586087751534, - "c6": 5.699184393266106, - "c7": 5.9963548348748255 + "offsets": { + "c1": 10.258899676375405, + "c2": 8.793342579750348, + "c3": 7.327785483125293, + "c4": 5.862228386500238, + "c5": 4.396671289875168, + "c6": 2.9311141932501115, + "c7": 1.4655570966250557 }, "rgb": [86, 146, 138] }, @@ -457116,23 +457116,23 @@ "year": 1834, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 29.0151780481697, - "c2": -21.383157207578734, - "c3": 29.0273958209807, - "c4": -8.71600010746684, - "c5": -16.524596808612046, - "c6": -23.782166922172035, - "c7": -8.615632525846337 + "points": { + "c1": 11.471633124450356, + "c2": 19.011283532260443, + "c3": 22.089910720620864, + "c4": -13.436807042242023, + "c5": -14.138430489094027, + "c6": -6.795434331132981, + "c7": -22.000899714587298 }, - "vertexSeeds": { - "c1": 3.272381220560956, - "c2": 3.1962892867391615, - "c3": 3.2336386697069215, - "c4": 3.235391810589431, - "c5": 3.4159284439895004, - "c6": 3.150597747653589, - "c7": 3.2707863695451596 + "offsets": { + "c1": 5.792880258899676, + "c2": 4.965325936199722, + "c3": 4.137771613499769, + "c4": 3.3102172907998146, + "c5": 2.482662968099861, + "c6": 1.6551086453999073, + "c7": 0.8275543226999537 }, "rgb": [222, 0, 59] }, @@ -457143,23 +457143,23 @@ "year": 1834, "resistanceReported": false, "duration": 31190400, - "curveSeeds": { - "c1": -25.603538480604044, - "c2": 24.90740408764716, - "c3": 26.717741894894296, - "c4": 40.28166140609405, - "c5": -23.162625341144192, - "c6": -40.491521311403716, - "c7": -43.773792820915986 + "points": { + "c1": -14.646251935077924, + "c2": 23.308709601327784, + "c3": -11.759076199083665, + "c4": -0.6935533480280327, + "c5": -0.4013517369184285, + "c6": 16.976839368643155, + "c7": -46.03372728433371 }, - "vertexSeeds": { - "c1": 9.475551861474454, - "c2": 9.67245550277627, - "c3": 8.968765525348, - "c4": 9.387381530878027, - "c5": 10.277205243811245, - "c6": 10.250227144552246, - "c7": 10.341685553174399 + "offsets": { + "c1": 23.55987055016181, + "c2": 20.194174757281548, + "c3": 16.828478964401295, + "c4": 13.462783171521037, + "c5": 10.097087378640774, + "c6": 6.731391585760519, + "c7": 3.365695792880261 }, "rgb": [238, 201, 159] }, @@ -457170,23 +457170,23 @@ "year": 1834, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 2.9018711169580165, - "c2": 16.714002495761704, - "c3": -3.779942031854425, - "c4": 19.778043120933845, - "c5": 18.077464501496024, - "c6": 23.92129367255491, - "c7": 6.996937762340529 + "points": { + "c1": -7.761412322622348, + "c2": -5.513260555341645, + "c3": 13.8459078308465, + "c4": 27.444019745235714, + "c5": -25.317032845657785, + "c6": 22.744948922067415, + "c7": -23.355644433281228 }, - "vertexSeeds": { - "c1": 5.376120176724487, - "c2": 5.50097485160553, - "c3": 5.847390267004737, - "c4": 5.55579389536, - "c5": 5.858645458949318, - "c6": 5.5105766206404585, - "c7": 5.671886066890552 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307905, + "c3": 7.0735090152565885, + "c4": 5.658807212205271, + "c5": 4.244105409153953, + "c6": 2.8294036061026353, + "c7": 1.4147018030513177 }, "rgb": [58, 15, 49] }, @@ -457197,23 +457197,23 @@ "year": 1834, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -8.897565737084424, - "c2": -17.93373192166675, - "c3": 16.846581855275087, - "c4": -12.396958894294114, - "c5": -6.889278939366367, - "c6": 2.425292824814747, - "c7": 13.617360002238069 + "points": { + "c1": -28.490500392091867, + "c2": -5.906839826091719, + "c3": -11.596099674570635, + "c4": -11.985185412719328, + "c5": -10.390346813060944, + "c6": 16.523541900734525, + "c7": -16.46864869635609 }, - "vertexSeeds": { - "c1": 7.693465486381189, - "c2": 7.519731176050803, - "c3": 7.258762796126059, - "c4": 7.726909174929811, - "c5": 7.662112037429328, - "c6": 7.363422495997777, - "c7": 7.140584055564283 + "offsets": { + "c1": 12.977346278317153, + "c2": 11.123439667128999, + "c3": 9.26953305594082, + "c4": 7.415626444752665, + "c5": 5.561719833564488, + "c6": 3.7078132223763327, + "c7": 1.8539066111881772 }, "rgb": [77, 76, 132] }, @@ -457224,23 +457224,23 @@ "year": 1835, "resistanceReported": false, "duration": 34992000, - "curveSeeds": { - "c1": -26.47216456808901, - "c2": -31.982452581635204, - "c3": 45.95335727397888, - "c4": 36.65718716023636, - "c5": -0.2230325272050706, - "c6": 45.343751620131286, - "c7": -32.41124502895087 + "points": { + "c1": 22.852328324282993, + "c2": -44.13253553742703, + "c3": -12.313079115523912, + "c4": -27.25212068520067, + "c5": -4.73836976561693, + "c6": 30.740176608537936, + "c7": 10.013060275839251 }, - "vertexSeeds": { - "c1": 6.8057894746002745, - "c2": 7.06755431762275, - "c3": 7.330718163325774, - "c4": 7.32131286426977, - "c5": 7.483666384027112, - "c6": 7.066688381576136, - "c7": 7.182975604416942 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766987, + "c3": 9.061488673139152, + "c4": 7.249190938511319, + "c5": 5.436893203883502, + "c6": 3.624595469255668, + "c7": 1.812297734627834 }, "rgb": [86, 146, 138] }, @@ -457251,23 +457251,23 @@ "year": 1834, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -3.2725999184078276, - "c2": -11.370409031858056, - "c3": 17.84424495118308, - "c4": 11.24330724168302, - "c5": 25.75603810519555, - "c6": -23.578474450946334, - "c7": -22.362473283612054 + "points": { + "c1": -29.355914886305097, + "c2": -25.193187854641586, + "c3": -9.216272619692319, + "c4": -18.729577608137255, + "c5": 0.5723916841845877, + "c6": 15.170937368463228, + "c7": -16.82155139296283 }, - "vertexSeeds": { - "c1": 5.3770413068832, - "c2": 5.39022860486939, - "c3": 5.49322816000762, - "c4": 5.232892013956693, - "c5": 5.460839909126128, - "c6": 5.321863279791671, - "c7": 5.481471885745165 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -457278,23 +457278,23 @@ "year": 1834, "resistanceReported": false, "duration": 24192000, - "curveSeeds": { - "c1": -19.202058079284026, - "c2": 25.018279645086388, - "c3": 0.5797490951435975, - "c4": 5.212013664697892, - "c5": 17.225547564287247, - "c6": -13.211054589487429, - "c7": 23.076271337954353 + "points": { + "c1": -18.35220418060471, + "c2": -36.90645881778713, + "c3": -35.41189950596322, + "c4": 1.663095694325257, + "c5": 4.839552985455704, + "c6": 11.69823029306339, + "c7": -7.751938481686725 }, - "vertexSeeds": { - "c1": 8.746908463236645, - "c2": 9.431064999521038, - "c3": 8.81150942609858, - "c4": 9.268731160420828, - "c5": 9.450649896933227, - "c6": 8.736781555645777, - "c7": 9.016498034623464 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -457305,23 +457305,23 @@ "year": 1834, "resistanceReported": false, "duration": 24451200, - "curveSeeds": { - "c1": 3.792700129462389, - "c2": -22.097206340595157, - "c3": 14.32915542117054, - "c4": 11.739906580848107, - "c5": -36.22802198637456, - "c6": 3.8368593554734005, - "c7": -33.603347329925455 + "points": { + "c1": 38.17238918572289, + "c2": -37.30404570255447, + "c3": -36.65417971469872, + "c4": -22.971946223090804, + "c5": 6.843052364355501, + "c6": 6.692783878045319, + "c7": 8.298860176037365 }, - "vertexSeeds": { - "c1": 9.376735561859586, - "c2": 9.022986543865118, - "c3": 8.968576121891399, - "c4": 9.285528043230956, - "c5": 9.2686276677838, - "c6": 9.198882826389774, - "c7": 9.430463635053892 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -457332,23 +457332,23 @@ "year": 1834, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": -17.175884622699854, - "c2": 0.9463055539864378, - "c3": -3.3051315283605014, - "c4": 28.723580799997993, - "c5": 23.82125043054973, - "c6": 12.92742380054106, - "c7": -23.949856503439765 + "points": { + "c1": 3.8957778595829424, + "c2": 8.824185073461976, + "c3": -1.3716126699265345, + "c4": 10.741669206654947, + "c5": -18.6216346295637, + "c6": -2.001741548611289, + "c7": -32.44604301952314 }, - "vertexSeeds": { - "c1": 5.857133228240788, - "c2": 5.385403910761722, - "c3": 5.768429583511979, - "c4": 5.600106961965422, - "c5": 5.723494652567053, - "c6": 5.5380878206185145, - "c7": 5.405663341508098 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -457359,23 +457359,23 @@ "year": 1834, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 19.052364649411135, - "c2": 5.350528556071492, - "c3": 8.981967550507772, - "c4": -8.373633906332241, - "c5": -10.00796395894271, - "c6": 15.598996191316683, - "c7": 19.94640920629192 + "points": { + "c1": -5.552379110668845, + "c2": 0.3234022554796958, + "c3": 28.02320024923736, + "c4": 24.874868535430547, + "c5": -8.83599917973261, + "c6": -8.209989955886517, + "c7": -6.568566813028809 }, - "vertexSeeds": { - "c1": 4.855372179757661, - "c2": 4.794081357054885, - "c3": 4.7426327126959436, - "c4": 4.861624510666094, - "c5": 4.658329199431566, - "c6": 4.6508225262348875, - "c7": 4.812367466555943 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135917, + "c3": 5.82524271844661, + "c4": 4.660194174757284, + "c5": 3.4951456310679583, + "c6": 2.3300970873786517, + "c7": 1.1650485436893259 }, "rgb": [86, 146, 138] }, @@ -457386,23 +457386,23 @@ "year": 1834, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": -16.438858792291043, - "c2": 20.23970356137088, - "c3": 10.42165600946187, - "c4": -2.3657326178879288, - "c5": -2.4796561112858626, - "c6": 6.8243507769693466, - "c7": 10.029573084682028 + "points": { + "c1": 1.9622440738029354, + "c2": -21.196587588485055, + "c3": 24.06861867104135, + "c4": 21.412525071412404, + "c5": 12.613768456675295, + "c6": -4.245401369577106, + "c7": -10.691197756361676 }, - "vertexSeeds": { - "c1": 8.525275172357551, - "c2": 8.565091978331452, - "c3": 8.594221410830883, - "c4": 8.548717779364402, - "c5": 8.54052597178663, - "c6": 8.580676388822566, - "c7": 8.579882801437005 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858485, + "c3": 10.263522884882121, + "c4": 8.210818307905656, + "c5": 6.158113730929293, + "c6": 4.105409153952828, + "c7": 2.052704576976465 }, "rgb": [238, 201, 159] }, @@ -457413,23 +457413,23 @@ "year": 1834, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 12.570808603841439, - "c2": -22.170776795562674, - "c3": 20.990618682612766, - "c4": 2.829454053020182, - "c5": 4.167306184613633, - "c6": -11.733903761842232, - "c7": 23.669220293528145 + "points": { + "c1": -21.085310304655486, + "c2": -31.972440444736684, + "c3": -14.071237309326019, + "c4": 18.72404226133859, + "c5": 0.681587762755143, + "c6": -13.43264141143758, + "c7": 3.240506978626769 }, - "vertexSeeds": { - "c1": 2.73528234114103, - "c2": 2.712101231361056, - "c3": 2.703743143005133, - "c4": 2.6974474683679315, - "c5": 2.8093197557084117, - "c6": 2.7358612396101014, - "c7": 2.785822581557137 + "offsets": { + "c1": 4.724919093851133, + "c2": 4.049930651872394, + "c3": 3.374942209893668, + "c4": 2.6999537679149297, + "c5": 2.0249653259362033, + "c6": 1.3499768839574648, + "c7": 0.6749884419787263 }, "rgb": [86, 146, 138] }, @@ -457440,23 +457440,23 @@ "year": 1834, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 23.16043554431302, - "c2": 3.784237277948119, - "c3": -23.36195322404036, - "c4": -3.973226028947014, - "c5": 7.868266365089877, - "c6": -11.420545179956825, - "c7": -5.259450065729741 + "points": { + "c1": -22.791283948108525, + "c2": -2.4384350202657146, + "c3": 1.8826926120838543, + "c4": 7.014967143685386, + "c5": 9.547646395669641, + "c6": -1.4788895688397687, + "c7": 5.782562491468251 }, - "vertexSeeds": { - "c1": 8.729403658868138, - "c2": 9.452160655450474, - "c3": 8.827531557950664, - "c4": 9.46542945549052, - "c5": 9.419213334775993, - "c6": 9.406364901575014, - "c7": 8.854407586197283 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -457467,23 +457467,23 @@ "year": 1834, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 20.23851550686381, - "c2": -5.603546478864651, - "c3": -0.6154892574253097, - "c4": -25.628423901904387, - "c5": 18.24581156627489, - "c6": 12.689593554846663, - "c7": -8.753080589210025 + "points": { + "c1": 8.88009052300109, + "c2": 26.742079073962945, + "c3": -26.13940877877384, + "c4": 24.55482091434619, + "c5": -13.876847961430716, + "c6": 12.678302794310266, + "c7": -4.5689994987209985 }, - "vertexSeeds": { - "c1": 5.763671298351549, - "c2": 5.419335393469179, - "c3": 5.9404409641884754, - "c4": 5.896514213560807, - "c5": 5.429635152723899, - "c6": 5.86413606706462, - "c7": 5.537842865601997 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -457494,23 +457494,23 @@ "year": 1834, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": -2.2884582073481816, - "c2": -21.038355833211863, - "c3": -28.82178915436286, - "c4": -6.8981301947537155, - "c5": -20.87389351296875, - "c6": -4.895657601565581, - "c7": 6.852815437561951 + "points": { + "c1": -19.03606186899135, + "c2": -13.544259277444933, + "c3": -28.299689356578952, + "c4": 27.285177913216458, + "c5": -11.213014607933381, + "c6": 28.64780643451219, + "c7": -35.51867551935277 }, - "vertexSeeds": { - "c1": 9.24350695438888, - "c2": 9.054417536664866, - "c3": 9.167698682782078, - "c4": 9.325382873385095, - "c5": 8.999377342454837, - "c6": 8.935606389263006, - "c7": 9.19561019684837 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -457521,23 +457521,23 @@ "year": 1835, "resistanceReported": false, "duration": 24278400, - "curveSeeds": { - "c1": 25.417026029537247, - "c2": 5.078973026817096, - "c3": 19.314063189074595, - "c4": -10.638799153769892, - "c5": -9.819578134898158, - "c6": 19.917465728603517, - "c7": -23.76141043713085 + "points": { + "c1": -4.774349649725416, + "c2": -20.011586027838717, + "c3": -18.274246129919714, + "c4": 1.6360835407892935, + "c5": 18.096564948679585, + "c6": -26.083618774726354, + "c7": -3.689995850793096 }, - "vertexSeeds": { - "c1": 7.776353751590061, - "c2": 7.382612877625863, - "c3": 7.962187572025672, - "c4": 7.704962623225029, - "c5": 7.72134307598565, - "c6": 7.41946217162775, - "c7": 7.470828261443188 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [58, 15, 49] }, @@ -457548,23 +457548,23 @@ "year": 1834, "resistanceReported": false, "duration": 18576000, - "curveSeeds": { - "c1": 12.124453001492974, - "c2": 28.257254518301316, - "c3": -9.530814944157438, - "c4": -28.136239905843194, - "c5": 2.700406411903444, - "c6": 7.154111475161635, - "c7": 26.745924941180036 + "points": { + "c1": 23.79061626916726, + "c2": -8.818023064747099, + "c3": -15.165257784570414, + "c4": 29.407412927748133, + "c5": 9.962914069675818, + "c6": 9.9815247422572, + "c7": 15.682117748581348 }, - "vertexSeeds": { - "c1": 8.088220217914515, - "c2": 7.873286321099545, - "c3": 7.890203752507965, - "c4": 8.117931755248556, - "c5": 7.822899440405972, - "c6": 8.108116867465508, - "c7": 7.989241186790862 + "offsets": { + "c1": 13.592233009708737, + "c2": 11.65048543689319, + "c3": 9.708737864077689, + "c4": 7.766990291262142, + "c5": 5.825242718446595, + "c6": 3.883495145631048, + "c7": 1.9417475728155469 }, "rgb": [86, 146, 138] }, @@ -457575,23 +457575,23 @@ "year": 1834, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -18.856836856831904, - "c2": 23.77824033976613, - "c3": -5.126424999929981, - "c4": -21.136850081956695, - "c5": -19.690011467731644, - "c6": 11.827761358243954, - "c7": 15.03456760987018 + "points": { + "c1": 14.212839069463058, + "c2": 21.424826566806885, + "c3": 29.094762834643014, + "c4": -3.214792402269481, + "c5": 6.743217141834528, + "c6": -18.381201219807423, + "c7": 14.212393413322204 }, - "vertexSeeds": { - "c1": 5.430080106339805, - "c2": 5.6341641265374, - "c3": 5.54412045706179, - "c4": 5.506545758243608, - "c5": 5.82533169903083, - "c6": 5.8674968884531085, - "c7": 5.491084154191318 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -457602,23 +457602,23 @@ "year": 1834, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -10.817957439668646, - "c2": 22.331442287738135, - "c3": 13.945856876674739, - "c4": -23.152157538548714, - "c5": 6.727143717186706, - "c6": -27.160052524457356, - "c7": -27.39530878950958 + "points": { + "c1": 0.01405344301036493, + "c2": 16.019797828564627, + "c3": -11.981535036787687, + "c4": 13.400917176341146, + "c5": -11.163284002299449, + "c6": 25.82052667626479, + "c7": 13.94716022549693 }, - "vertexSeeds": { - "c1": 8.710846026467843, - "c2": 9.416834867496807, - "c3": 9.079292642575652, - "c4": 9.22006081570006, - "c5": 9.402234582039199, - "c6": 8.74290716554335, - "c7": 8.710420128981816 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -457629,23 +457629,23 @@ "year": 1835, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": -25.980639236242695, - "c2": -32.24375625968843, - "c3": -30.313566775659087, - "c4": -12.449829511791915, - "c5": -19.660615599019003, - "c6": 12.316173889142114, - "c7": 17.446835159552144 + "points": { + "c1": -23.547621966081138, + "c2": -10.583194356274625, + "c3": 23.83399660993725, + "c4": -11.529890056920838, + "c5": 22.674967701707267, + "c6": -23.327061758631267, + "c7": 9.528320555384198 }, - "vertexSeeds": { - "c1": 5.643471395718269, - "c2": 5.422935307253625, - "c3": 6.483201716951884, - "c4": 4.541978009361819, - "c5": 4.658847084366594, - "c6": 5.987147514809295, - "c7": 5.244040796839134 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.292649098474342, + "c3": 7.743874248728622, + "c4": 6.195099398982894, + "c5": 4.646324549237171, + "c6": 3.0975496994914495, + "c7": 1.5487748497457248 }, "rgb": [77, 76, 132] }, @@ -457656,23 +457656,23 @@ "year": 1834, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": -6.674899535031976, - "c2": 15.505526791043579, - "c3": 1.7207120780688214, - "c4": 20.808805560584283, - "c5": -22.397172095751078, - "c6": -28.366861704747443, - "c7": -1.7524215871715363 + "points": { + "c1": 14.251853004398399, + "c2": 30.91515023072718, + "c3": -13.044696952406795, + "c4": -31.82683543953671, + "c5": 29.24393297345923, + "c6": -9.411700461397267, + "c7": -5.732205761823472 }, - "vertexSeeds": { - "c1": 5.5285337708710225, - "c2": 5.365059105052589, - "c3": 5.542368188217007, - "c4": 5.898941305783838, - "c5": 5.8875765654418615, - "c6": 5.600576944056471, - "c7": 5.701805020527196 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -457683,23 +457683,23 @@ "year": 1834, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -8.148566923430248, - "c2": -17.657420789853646, - "c3": 8.75094223347271, - "c4": 16.159855199262072, - "c5": 24.367132747229636, - "c6": 19.501426350734707, - "c7": -23.75459170267922 + "points": { + "c1": 25.992815751950182, + "c2": 14.781066411752064, + "c3": -15.7090515902952, + "c4": 31.077918976718394, + "c5": -17.532714911324632, + "c6": -0.3236296489379349, + "c7": 2.8993349535341224 }, - "vertexSeeds": { - "c1": 8.857529020347, - "c2": 8.697557587702848, - "c3": 9.439583826007679, - "c4": 9.385362664556057, - "c5": 9.042569557139776, - "c6": 9.142266156812848, - "c7": 9.008491970122748 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -457710,23 +457710,23 @@ "year": 1835, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 12.240287532195627, - "c2": -29.890395277779284, - "c3": 7.548839875056505, - "c4": -21.563817258455536, - "c5": 13.856017809340688, - "c6": 20.363162114323114, - "c7": 16.629209167893304 + "points": { + "c1": -13.72512934204077, + "c2": 0.5985130954618825, + "c3": 20.233287331704354, + "c4": -13.148057875580104, + "c5": 17.356911680877843, + "c6": 21.554372303687316, + "c7": -5.81917327086807 }, - "vertexSeeds": { - "c1": 5.651906922337544, - "c2": 5.821012281114074, - "c3": 5.837751693513212, - "c4": 5.83708019525496, - "c5": 5.878467729369023, - "c6": 5.6004496404357695, - "c7": 5.518039833779997 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -457737,23 +457737,23 @@ "year": 1835, "resistanceReported": false, "duration": 38966400, - "curveSeeds": { - "c1": 14.103024123760129, - "c2": 52.149995111841655, - "c3": 30.482824892491415, - "c4": 28.453740509828897, - "c5": -48.91681603035572, - "c6": 18.346120355619952, - "c7": 36.08437683249486 + "points": { + "c1": 33.340202835976164, + "c2": 27.248286765099344, + "c3": -48.224448167615606, + "c4": -1.0102892242465842, + "c5": -28.62042568512876, + "c6": -5.193676970310499, + "c7": 50.82782880500243 }, - "vertexSeeds": { - "c1": 9.43928910531418, - "c2": 9.302330868873286, - "c3": 9.403350982734512, - "c4": 8.616419566377184, - "c5": 9.02760759734831, - "c6": 8.610215253329995, - "c7": 8.825120859622437 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -457764,23 +457764,23 @@ "year": 1835, "resistanceReported": false, "duration": 23760000, - "curveSeeds": { - "c1": -30.734913526877136, - "c2": -2.5714709036733225, - "c3": 22.04316885635842, - "c4": -12.631683375560879, - "c5": -32.29277889753242, - "c6": -29.338213587039707, - "c7": -28.99863722012546 + "points": { + "c1": -24.631353689904756, + "c2": 14.451069260233218, + "c3": -36.89836404072167, + "c4": -11.799885959089671, + "c5": -26.653329481340926, + "c6": 32.511995231748685, + "c7": -30.87339129893752 }, - "vertexSeeds": { - "c1": 5.6372068213746465, - "c2": 5.697410356461903, - "c3": 5.850503015156295, - "c4": 5.747354407083847, - "c5": 5.3699508218973175, - "c6": 5.3934399655819885, - "c7": 5.843499088132611 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -457791,23 +457791,23 @@ "year": 1835, "resistanceReported": false, "duration": 21513600, - "curveSeeds": { - "c1": -5.820858202623381, - "c2": -22.1792052443491, - "c3": -20.084716495548616, - "c4": -2.9627118218473427, - "c5": -4.007573753897482, - "c6": 28.763571656921464, - "c7": -20.600695050141795 + "points": { + "c1": 26.83105102412258, + "c2": 7.775694521564276, + "c3": 10.570991740341995, + "c4": -11.389400683070306, + "c5": 31.179400343663104, + "c6": -1.3386860995020342, + "c7": -0.994069174129173 }, - "vertexSeeds": { - "c1": 9.612424439329, - "c2": 9.922805092530353, - "c3": 10.126827282835277, - "c4": 9.68471396133668, - "c5": 9.335426053590039, - "c6": 9.874403555686182, - "c7": 9.405100838355752 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518728, + "c3": 12.367082755432268, + "c4": 9.89366620434582, + "c5": 7.420249653259359, + "c6": 4.94683310217291, + "c7": 2.47341655108646 }, "rgb": [58, 15, 49] }, @@ -457818,23 +457818,23 @@ "year": 1835, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 22.553783646812057, - "c2": -28.89752964446875, - "c3": 31.87406547395551, - "c4": -29.64061796583027, - "c5": -21.096542784211984, - "c6": -17.5638944485896, - "c7": 26.288702352750292 + "points": { + "c1": -19.325051946594364, + "c2": -6.224676294732863, + "c3": 29.139186119487718, + "c4": -21.85618211400065, + "c5": 27.2261751186024, + "c6": 8.806862926020209, + "c7": 4.868847662492925 }, - "vertexSeeds": { - "c1": 11.699373330979896, - "c2": 12.106544324923554, - "c3": 11.263026524965504, - "c4": 9.878757066397833, - "c5": 12.496448192250421, - "c6": 11.261856983892704, - "c7": 13.03140165272529 + "offsets": { + "c1": 21.877022653721685, + "c2": 18.75173370319002, + "c3": 15.62644475265834, + "c4": 12.501155802126673, + "c5": 9.37586685159501, + "c6": 6.250577901063345, + "c7": 3.1252889505316657 }, "rgb": [222, 0, 59] }, @@ -457845,23 +457845,23 @@ "year": 1835, "resistanceReported": false, "duration": 25401600, - "curveSeeds": { - "c1": 27.526139278582775, - "c2": -36.597586057210286, - "c3": 11.776010526430085, - "c4": -36.68804389825262, - "c5": 22.87689161138809, - "c6": 10.081743755349628, - "c7": 27.954641474222797 + "points": { + "c1": -8.485828292203344, + "c2": -38.66059189707504, + "c3": -21.91595452289768, + "c4": 29.731454896768696, + "c5": -30.724399684262185, + "c6": -38.93999152990015, + "c7": -33.70759393015624 }, - "vertexSeeds": { - "c1": 8.14034809085907, - "c2": 7.369660164535191, - "c3": 8.314470096481328, - "c4": 7.4136478204227085, - "c5": 8.166681323337782, - "c6": 7.803392215780055, - "c7": 7.151298953337932 + "offsets": { + "c1": 13.915857605177994, + "c2": 11.927877947295427, + "c3": 9.939898289412847, + "c4": 7.951918631530281, + "c5": 5.963938973647713, + "c6": 3.9759593157651465, + "c7": 1.987979657882567 }, "rgb": [77, 76, 132] }, @@ -457872,23 +457872,23 @@ "year": 1834, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 13.816236847356123, - "c2": -9.240858906833552, - "c3": -21.4772053493894, - "c4": -12.897312041466018, - "c5": -4.054280527874582, - "c6": -0.17364912514794284, - "c7": 14.964238415485823 + "points": { + "c1": 26.627975229931472, + "c2": 0.604228446881045, + "c3": -23.024919566615104, + "c4": 24.011103631014514, + "c5": -5.775425134985927, + "c6": 21.346962311522496, + "c7": -9.328832869328565 }, - "vertexSeeds": { - "c1": 8.678360705202111, - "c2": 9.088832658696266, - "c3": 8.986737420778176, - "c4": 8.751827547910404, - "c5": 9.186764689016156, - "c6": 8.667309630844962, - "c7": 9.007170059140584 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [58, 15, 49] }, @@ -457899,23 +457899,23 @@ "year": 1835, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -10.3751190544351, - "c2": -8.076542787470235, - "c3": -25.997501811133652, - "c4": -6.905824329198179, - "c5": -8.144570866971726, - "c6": -27.85124740783112, - "c7": -5.003803675561976 + "points": { + "c1": 15.140658743426957, + "c2": -2.2752523287794304, + "c3": 7.803238815542688, + "c4": -18.614711299797122, + "c5": -18.161484939485533, + "c6": 13.765431676264118, + "c7": -6.276837535939112 }, - "vertexSeeds": { - "c1": 5.236120031066445, - "c2": 5.3281895471476615, - "c3": 5.455807902287706, - "c4": 5.326079353347452, - "c5": 5.45847907055137, - "c6": 5.392212899130841, - "c7": 5.292141865588803 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -457926,23 +457926,23 @@ "year": 1834, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -5.341794079439335, - "c2": 0.7246958319650503, - "c3": 8.585396103418152, - "c4": -10.10710504714041, - "c5": -17.273904726597564, - "c6": 20.769554786639578, - "c7": 10.769436844538955 + "points": { + "c1": -18.46297423345718, + "c2": 9.018730666526562, + "c3": -20.9725174125464, + "c4": 8.073552445633073, + "c5": 19.716103327276915, + "c6": -11.194822026004669, + "c7": 4.159182909320425 }, - "vertexSeeds": { - "c1": 10.527958250136336, - "c2": 10.459056498854055, - "c3": 10.13659982392493, - "c4": 10.41376772324518, - "c5": 10.25911296730773, - "c6": 10.148880599629914, - "c7": 10.40622023221707 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122073, + "c3": 12.713823393435014, + "c4": 10.171058714748025, + "c5": 7.628294036061036, + "c6": 5.085529357374048, + "c7": 2.542764678686989 }, "rgb": [86, 146, 138] }, @@ -457953,23 +457953,23 @@ "year": 1835, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": 20.689948446493894, - "c2": 18.09644369235982, - "c3": 3.8851724350520485, - "c4": -8.066037842053667, - "c5": 23.502709842289086, - "c6": -28.3233031554016, - "c7": -9.244264405568657 + "points": { + "c1": 2.9447548799309473, + "c2": 10.850590712519967, + "c3": -8.151821408709129, + "c4": -12.664831317120836, + "c5": -19.23773088597151, + "c6": 21.971038723971006, + "c7": -6.815740583051873 }, - "vertexSeeds": { - "c1": 7.325286326640771, - "c2": 7.289611165378672, - "c3": 7.6191248501782, - "c4": 7.722828395576823, - "c5": 7.893175520725174, - "c6": 7.341063045688717, - "c7": 7.150568212990523 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [86, 146, 138] }, @@ -457980,23 +457980,23 @@ "year": 1835, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 7.451324469902424, - "c2": -30.743531649399834, - "c3": 29.051323025407683, - "c4": -26.173535192251755, - "c5": 27.938717465793772, - "c6": -12.20267359786068, - "c7": 12.990550328555749 + "points": { + "c1": -2.853931452971466, + "c2": 10.33829360297618, + "c3": -22.720935152603545, + "c4": -26.15570950104114, + "c5": 13.331465270267408, + "c6": -18.4368890334144, + "c7": 18.2604755122506 }, - "vertexSeeds": { - "c1": 7.907776338889283, - "c2": 7.5834492623084415, - "c3": 7.947236477872098, - "c4": 7.599924301369356, - "c5": 7.803209722392944, - "c6": 7.840406431034077, - "c7": 7.92904250076819 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [58, 15, 49] }, @@ -458007,23 +458007,23 @@ "year": 1834, "resistanceReported": false, "duration": 8899200, - "curveSeeds": { - "c1": -9.997830784098912, - "c2": 16.945387326513924, - "c3": -19.230593838442992, - "c4": -5.428835257005291, - "c5": -16.201269446856106, - "c6": 9.47722696800432, - "c7": -15.6835466242382 + "points": { + "c1": 2.6436399772424757, + "c2": -18.052455929782113, + "c3": -15.470274676298644, + "c4": 19.094991754609957, + "c5": 4.298908257558374, + "c6": 7.55490873203831, + "c7": -8.750641834272422 }, - "vertexSeeds": { - "c1": 7.252388459829517, - "c2": 7.247815860770558, - "c3": 7.415228438668879, - "c4": 7.342716351484697, - "c5": 7.257067220449283, - "c6": 7.4104905757085815, - "c7": 7.261533580917704 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152565, + "c3": 8.922792417938062, + "c4": 7.138233934350443, + "c5": 5.353675450762825, + "c6": 3.569116967175237, + "c7": 1.7845584835876185 }, "rgb": [58, 15, 49] }, @@ -458034,23 +458034,23 @@ "year": 1835, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 10.281587015449368, - "c2": -0.8207393034994794, - "c3": -25.404259927942974, - "c4": -13.212859416040068, - "c5": 7.418811046687708, - "c6": -0.5498269962244962, - "c7": -17.239850669388574 + "points": { + "c1": -31.29646709751165, + "c2": 22.917200273279946, + "c3": 24.05750185027282, + "c4": -36.21786371330065, + "c5": -29.110435580582838, + "c6": 10.370635584428598, + "c7": 16.444274813550948 }, - "vertexSeeds": { - "c1": 15.467527037158748, - "c2": 13.880121443865718, - "c3": 13.508039193760517, - "c4": 14.660740059401846, - "c5": 15.41663903971017, - "c6": 15.137021790325253, - "c7": 14.028654042568206 + "offsets": { + "c1": 26.148867313915858, + "c2": 22.413314840499307, + "c3": 18.67776236708276, + "c4": 14.942209893666213, + "c5": 11.206657420249664, + "c6": 7.471104946833116, + "c7": 3.7355524734165684 }, "rgb": [222, 0, 59] }, @@ -458061,23 +458061,23 @@ "year": 1835, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": -7.375302102239651, - "c2": -15.1952851316778, - "c3": -7.8982313825022565, - "c4": 7.913334984846841, - "c5": 3.042632269492337, - "c6": -18.452176987865386, - "c7": -10.718938635513876 + "points": { + "c1": 6.911867674329677, + "c2": -25.0967597323906, + "c3": 31.263368034736132, + "c4": 19.59414080357748, + "c5": 4.9434709705836894, + "c6": -11.734062632308824, + "c7": 0.19421494163163544 }, - "vertexSeeds": { - "c1": 5.944869932830133, - "c2": 6.0486781138763215, - "c3": 5.916864379945048, - "c4": 6.042969337020209, - "c5": 6.019881655902281, - "c6": 6.035506791185647, - "c7": 6.000726617464977 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589429, + "c3": 7.235321312991227, + "c4": 5.788257050392953, + "c5": 4.341192787794751, + "c6": 2.8941285251964763, + "c7": 1.4470642625982741 }, "rgb": [58, 15, 49] }, @@ -458088,23 +458088,23 @@ "year": 1835, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": -15.320859824544307, - "c2": -21.56670982898038, - "c3": 18.679773457885695, - "c4": -9.43070319176832, - "c5": -24.8001678887006, - "c6": 19.754772076158964, - "c7": 16.77045252834104 + "points": { + "c1": 23.852254666725756, + "c2": 0.7825834677757619, + "c3": 11.30315972866024, + "c4": 0.5675230886829787, + "c5": -2.024078010327379, + "c6": -7.061018624732625, + "c7": 2.625660983365343 }, - "vertexSeeds": { - "c1": 8.67616470615576, - "c2": 9.22095040884814, - "c3": 9.254233564410068, - "c4": 9.159634868156182, - "c5": 9.189401159262196, - "c6": 8.95923220872346, - "c7": 8.905070794288035 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -458115,23 +458115,23 @@ "year": 1835, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 25.00449363427962, - "c2": 19.788606262938096, - "c3": -30.35336393935622, - "c4": 20.259141315878345, - "c5": 15.66557561621557, - "c6": 5.240918813336258, - "c7": 4.659049633910307 + "points": { + "c1": 17.634068009432106, + "c2": -15.269436767609669, + "c3": -1.8085649341556334, + "c4": -34.432924294762906, + "c5": -16.188711391756033, + "c6": 0.4553182398365081, + "c7": 14.776077526841313 }, - "vertexSeeds": { - "c1": 7.544779846849665, - "c2": 7.747229131322163, - "c3": 7.2676308000544, - "c4": 7.540945022189647, - "c5": 7.343528371650015, - "c6": 7.180740721478094, - "c7": 7.606749988283311 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -458142,23 +458142,23 @@ "year": 1835, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": 8.74838637236821, - "c2": -17.601128622101587, - "c3": 6.217985060110827, - "c4": 13.046474194265741, - "c5": -3.522982372687771, - "c6": -31.354841042164576, - "c7": -8.88317661702186 + "points": { + "c1": 4.237406985075992, + "c2": 30.328242672454536, + "c3": 2.11516995106404, + "c4": 30.405416463481686, + "c5": -26.906428378923245, + "c6": 12.204857200259163, + "c7": -11.144023245108766 }, - "vertexSeeds": { - "c1": 5.3066897876251335, - "c2": 5.445789047458997, - "c3": 5.230550889620804, - "c4": 5.239299647344444, - "c5": 5.376422715429098, - "c6": 5.358058025368085, - "c7": 5.371553222175226 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -458169,23 +458169,23 @@ "year": 1835, "resistanceReported": false, "duration": 22464000, - "curveSeeds": { - "c1": 12.286475113349127, - "c2": -18.644030063318823, - "c3": -32.368484145308585, - "c4": -14.727300779057309, - "c5": 10.250426595413181, - "c6": -25.882654078775595, - "c7": -8.71581319684072 + "points": { + "c1": -1.5253179763739553, + "c2": -30.30802164441601, + "c3": -31.14818820726666, + "c4": 7.914098590858799, + "c5": -2.31240805076812, + "c6": 28.5085346033931, + "c7": 20.961072904135072 }, - "vertexSeeds": { - "c1": 12.945112406574436, - "c2": 11.078864331237256, - "c3": 11.13211139535263, - "c4": 13.069626871710092, - "c5": 11.774695877605737, - "c6": 12.382239024429596, - "c7": 13.348492741273795 + "offsets": { + "c1": 22.330097087378643, + "c2": 19.140083217753133, + "c3": 15.950069348127606, + "c4": 12.760055478502077, + "c5": 9.570041608876567, + "c6": 6.380027739251058, + "c7": 3.190013869625529 }, "rgb": [238, 201, 159] }, @@ -458196,23 +458196,23 @@ "year": 1835, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -6.061218920795998, - "c2": 9.507536735148115, - "c3": -26.813169032538458, - "c4": -12.603955485320839, - "c5": -13.311122981396117, - "c6": 1.382375918975434, - "c7": 30.883995827692104 + "points": { + "c1": -12.268692155089283, + "c2": -32.1733351376149, + "c3": 19.151661873450422, + "c4": -33.436295019748485, + "c5": 4.701949866927933, + "c6": -15.98879967608601, + "c7": -8.372256510827466 }, - "vertexSeeds": { - "c1": 8.881517653571517, - "c2": 8.705470884592597, - "c3": 8.983376101176157, - "c4": 9.069390424693578, - "c5": 9.263471129728517, - "c6": 8.743237002002502, - "c7": 8.746467579196333 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -458223,23 +458223,23 @@ "year": 1835, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -24.81291225513558, - "c2": 19.401979073479765, - "c3": 29.635893277665694, - "c4": 31.918922951939464, - "c5": -22.28012490537192, - "c6": 21.12997452888026, - "c7": 20.923185644169394 + "points": { + "c1": 32.28660556857055, + "c2": 14.734266370614193, + "c3": 27.729695440244406, + "c4": -8.13552249105081, + "c5": 17.019341325186495, + "c6": -14.6599015981461, + "c7": -34.64903829259827 }, - "vertexSeeds": { - "c1": 5.63937517269646, - "c2": 5.5077231897585905, - "c3": 5.891811913535358, - "c4": 5.739985942389223, - "c5": 5.84561384562661, - "c6": 5.459184432171447, - "c7": 5.848744981892079 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -458250,23 +458250,23 @@ "year": 1836, "resistanceReported": false, "duration": 40867200, - "curveSeeds": { - "c1": 39.49337055792587, - "c2": 24.762242310289324, - "c3": 11.847413108395088, - "c4": -32.06229141370292, - "c5": -35.11242830983399, - "c6": -25.260652269433816, - "c7": -23.008777287273336 + "points": { + "c1": -9.549428125989877, + "c2": 46.79473601784626, + "c3": -29.620703209507962, + "c4": 31.85452225302305, + "c5": 0.24858030284788413, + "c6": -6.2761818216446414, + "c7": 53.35120446796486 }, - "vertexSeeds": { - "c1": 3.8213224382396525, - "c2": 3.7778117741483572, - "c3": 3.815652206876183, - "c4": 3.8068197047236647, - "c5": 3.7825993185192184, - "c6": 3.770855213526605, - "c7": 3.8065579356095824 + "offsets": { + "c1": 6.407766990291262, + "c2": 5.49237170596392, + "c3": 4.576976421636622, + "c4": 3.6615811373092795, + "c5": 2.7461858529819825, + "c6": 1.8307905686546397, + "c7": 0.9153952843273426 }, "rgb": [77, 76, 132] }, @@ -458277,23 +458277,23 @@ "year": 1835, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": -3.4647956203311683, - "c2": 3.6377580609369495, - "c3": 1.4209963549710878, - "c4": 8.693224412873349, - "c5": -10.005489483361629, - "c6": -5.043655845341812, - "c7": -6.554785507154813 + "points": { + "c1": -6.634907907651659, + "c2": 16.642149191537484, + "c3": 15.3170984008176, + "c4": 14.246336308111552, + "c5": 16.88483481209029, + "c6": -3.6882354636357846, + "c7": -1.1698682010236325 }, - "vertexSeeds": { - "c1": 7.035694798261529, - "c2": 6.814718827885368, - "c3": 6.631462724076948, - "c4": 6.698449990455096, - "c5": 6.7039411748519235, - "c6": 6.921968737510479, - "c7": 6.869483546134916 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801676, + "c3": 8.506703652334718, + "c4": 6.8053629218677845, + "c5": 5.1040221914008255, + "c6": 3.4026814609338922, + "c7": 1.7013407304669586 }, "rgb": [222, 0, 59] }, @@ -458304,23 +458304,23 @@ "year": 1835, "resistanceReported": false, "duration": 6912000, - "curveSeeds": { - "c1": -5.969307211842679, - "c2": -7.9887290295287965, - "c3": -9.677164353878444, - "c4": -14.319804726815102, - "c5": -4.504422009421976, - "c6": -17.45752255452864, - "c7": -10.671437035278311 + "points": { + "c1": 9.683194240594219, + "c2": -13.665410003143666, + "c3": -18.618258386954608, + "c4": -4.49430786039891, + "c5": -18.596388469024628, + "c6": 2.255610178083952, + "c7": -2.986071907170942 }, - "vertexSeeds": { - "c1": 5.330897464450515, - "c2": 5.443413083840177, - "c3": 5.313379686392455, - "c4": 5.2999656037646, - "c5": 5.23264484145147, - "c6": 5.357819951196213, - "c7": 5.385717393369665 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -458331,23 +458331,23 @@ "year": 1835, "resistanceReported": false, "duration": 33782400, - "curveSeeds": { - "c1": 30.446269303525007, - "c2": 18.399681682879795, - "c3": -28.675462831115727, - "c4": 41.88516860711065, - "c5": 28.12981975072693, - "c6": -22.53040845795964, - "c7": -15.734269912663237 + "points": { + "c1": 45.1245103316103, + "c2": 11.303822100983908, + "c3": 22.7772642050111, + "c4": 0.23799551759230297, + "c5": 39.00458358970217, + "c6": -21.727901357264006, + "c7": -37.85673063988495 }, - "vertexSeeds": { - "c1": 5.376544371002699, - "c2": 5.420026190890058, - "c3": 5.918468293039366, - "c4": 5.377066418588077, - "c5": 5.582877642789349, - "c6": 5.748324927728717, - "c7": 5.440266489802942 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -458358,23 +458358,23 @@ "year": 1835, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": 11.590286081504182, - "c2": 9.055991942021407, - "c3": 44.17684213484891, - "c4": -28.861129387339275, - "c5": -29.732060360859776, - "c6": -43.74581141218892, - "c7": 35.662047646380074 + "points": { + "c1": -12.601459008192911, + "c2": 47.32225729863727, + "c3": -18.47557576133802, + "c4": 0.28339028031535207, + "c5": 37.26817523292627, + "c6": -22.825367071139596, + "c7": 17.34687649307176 }, - "vertexSeeds": { - "c1": 5.4088370054133845, - "c2": 5.356743295949304, - "c3": 5.424114268979843, - "c4": 5.433127775332094, - "c5": 5.374279732224562, - "c6": 5.443532284505782, - "c7": 5.385669203223111 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -458385,23 +458385,23 @@ "year": 1835, "resistanceReported": false, "duration": 22723200, - "curveSeeds": { - "c1": 8.008119406331218, - "c2": 11.385040992611728, - "c3": 12.627124505689004, - "c4": -27.696066583267548, - "c5": -17.024867392705325, - "c6": 10.034842605316243, - "c7": 17.33680066800084 + "points": { + "c1": -32.01555305080469, + "c2": -22.391262816346938, + "c3": -30.01149656940621, + "c4": -2.5615158014424395, + "c5": 11.814185387234907, + "c6": 3.5643105681930365, + "c7": 24.430216949379513 }, - "vertexSeeds": { - "c1": 5.363855301583604, - "c2": 5.607307025668167, - "c3": 5.508948290756112, - "c4": 5.462887803337384, - "c5": 5.737723043012155, - "c6": 5.79284774856454, - "c7": 5.403484795850403 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -458412,23 +458412,23 @@ "year": 1835, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 5.152596547806542, - "c2": -9.892498498775925, - "c3": -0.7728412498035908, - "c4": -24.417322180891595, - "c5": 11.253304808121914, - "c6": -1.281120928377124, - "c7": -3.4473764955662602 + "points": { + "c1": -1.26808502227086, + "c2": 12.434010559665865, + "c3": -2.5556007055830925, + "c4": -16.495020402182277, + "c5": -6.561708126657862, + "c6": 8.600065830911689, + "c7": -26.04130162905124 }, - "vertexSeeds": { - "c1": 7.656397043156005, - "c2": 7.267016970721862, - "c3": 7.773940306812534, - "c4": 7.190231534124155, - "c5": 7.285735308253313, - "c6": 7.656917149363975, - "c7": 7.767146992256761 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -458439,23 +458439,23 @@ "year": 1835, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": 2.196850790065664, - "c2": -16.11779447881925, - "c3": -8.298570118783957, - "c4": 5.986075217949601, - "c5": -1.8319327989370588, - "c6": -12.302721474018512, - "c7": 4.206336966240851 + "points": { + "c1": 4.654706689568215, + "c2": -17.807255266616185, + "c3": -12.773686823900654, + "c4": 3.1729673766365103, + "c5": -12.899065137200461, + "c6": -13.193083944605696, + "c7": 6.600866260622052 }, - "vertexSeeds": { - "c1": 9.596314429751873, - "c2": 9.395989580033358, - "c3": 9.64268601524447, - "c4": 9.57934380588105, - "c5": 9.632374797516256, - "c6": 9.619060546098256, - "c7": 9.585771377017064 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011094, + "c3": 11.558021266759154, + "c4": 9.246417013407312, + "c5": 6.93481276005547, + "c6": 4.623208506703628, + "c7": 2.3116042533518417 }, "rgb": [58, 15, 49] }, @@ -458466,23 +458466,23 @@ "year": 1835, "resistanceReported": false, "duration": 34041600, - "curveSeeds": { - "c1": 15.919961298882725, - "c2": -17.50324584327128, - "c3": 31.408892668873563, - "c4": 16.55216355495181, - "c5": -42.35555319673059, - "c6": -39.69799863447467, - "c7": -44.974865546526736 + "points": { + "c1": 27.97502158232784, + "c2": 43.805720150454334, + "c3": 6.461532580257405, + "c4": -36.366970787166615, + "c5": 1.3257773545701284, + "c6": -36.54244776977547, + "c7": 36.51957441737878 }, - "vertexSeeds": { - "c1": 5.233363854634619, - "c2": 5.480611373056654, - "c3": 5.399621592449166, - "c4": 5.2751665736202975, - "c5": 5.392090711731699, - "c6": 5.2399733898899425, - "c7": 5.420884977631025 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -458493,23 +458493,23 @@ "year": 1835, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": -1.4233948614377105, - "c2": -20.560645596137693, - "c3": 4.749229646349477, - "c4": -5.298217688563309, - "c5": 26.409364941335525, - "c6": 26.175161477419046, - "c7": 15.642860620129852 + "points": { + "c1": -4.915854697800842, + "c2": -11.171590239763773, + "c3": 26.995129915029764, + "c4": -8.559414324162358, + "c5": 8.100475398746447, + "c6": -9.169710756870646, + "c7": -15.435853594941294 }, - "vertexSeeds": { - "c1": 8.651545936672626, - "c2": 9.079154651699628, - "c3": 8.882767402439473, - "c4": 9.225882797626271, - "c5": 9.371971495778773, - "c6": 9.197716233535317, - "c7": 8.980953844338597 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -458520,23 +458520,23 @@ "year": 1835, "resistanceReported": false, "duration": 34819200, - "curveSeeds": { - "c1": -37.52988196891844, - "c2": -35.03571680967784, - "c3": 30.52415674584485, - "c4": 13.112883472767678, - "c5": -32.550871414378264, - "c6": -46.75980060469911, - "c7": -47.24930389823052 + "points": { + "c1": -4.773979538292586, + "c2": -45.488007033476045, + "c3": 3.811581968460395, + "c4": -42.915519108000765, + "c5": 6.1650673524171395, + "c6": 31.89659920633818, + "c7": -6.984078712115064 }, - "vertexSeeds": { - "c1": 3.391693644218297, - "c2": 3.8275839404668126, - "c3": 3.3774824293490786, - "c4": 3.3724770561172477, - "c5": 3.0867119993583167, - "c6": 3.702274068183127, - "c7": 2.6708876192286453 + "offsets": { + "c1": 6.796116504854369, + "c2": 5.825242718446602, + "c3": 4.854368932038834, + "c4": 3.8834951456310676, + "c5": 2.912621359223301, + "c6": 1.941747572815535, + "c7": 0.9708737864077663 }, "rgb": [58, 15, 49] }, @@ -458547,23 +458547,23 @@ "year": 1835, "resistanceReported": false, "duration": 14947200, - "curveSeeds": { - "c1": 5.5830293401854085, - "c2": -20.556014226600116, - "c3": -11.884002534100972, - "c4": -13.27052071081014, - "c5": -18.808234361238444, - "c6": 0.7214743362844906, - "c7": -19.686658305752854 + "points": { + "c1": 17.81198319745166, + "c2": 5.549547590533535, + "c3": -0.949228816831571, + "c4": 13.749896689869459, + "c5": -1.7742817829636266, + "c6": 24.623428969452277, + "c7": -19.818339894284392 }, - "vertexSeeds": { - "c1": 5.496818551369126, - "c2": 5.605306390263123, - "c3": 5.4674052035187986, - "c4": 5.741065735357876, - "c5": 5.931695997831785, - "c6": 5.490342531861198, - "c7": 5.6601221138774624 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -458574,23 +458574,23 @@ "year": 1835, "resistanceReported": false, "duration": 21427200, - "curveSeeds": { - "c1": 3.7808714868161957, - "c2": 0.8526953229983789, - "c3": -27.669588643777594, - "c4": -14.56616642532154, - "c5": -12.598992686365964, - "c6": 32.263406016044236, - "c7": -15.676536804966648 + "points": { + "c1": -2.506696177334746, + "c2": 16.752230835878123, + "c3": 22.536177533675662, + "c4": -8.37650554145382, + "c5": -28.815566863195436, + "c6": -2.523902627874172, + "c7": 28.048787937800896 }, - "vertexSeeds": { - "c1": 5.390082419791406, - "c2": 5.459891922277808, - "c3": 5.4162650725319, - "c4": 5.391700865200231, - "c5": 5.261392668712869, - "c6": 5.276725073277741, - "c7": 5.341991592470263 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -458601,23 +458601,23 @@ "year": 1836, "resistanceReported": false, "duration": 37497600, - "curveSeeds": { - "c1": 34.60770906090608, - "c2": 24.608584599896, - "c3": -24.352600067453697, - "c4": 1.6056647122703822, - "c5": -17.333471954202913, - "c6": -48.37423393112335, - "c7": -6.1791805138199365 + "points": { + "c1": 44.165193410317606, + "c2": 12.123300487238346, + "c3": 8.327230882790374, + "c4": 4.547658924279347, + "c5": -9.974422727077531, + "c6": 19.00948533241985, + "c7": 20.461240851037665 }, - "vertexSeeds": { - "c1": 6.501497931645973, - "c2": 7.061784432993418, - "c3": 6.938404231930138, - "c4": 6.790339699105936, - "c5": 6.688068449353496, - "c6": 6.768906620110318, - "c7": 6.911594560055903 + "offsets": { + "c1": 12.168284789644012, + "c2": 10.42995839112344, + "c3": 8.69163199260287, + "c4": 6.9533055940823, + "c5": 5.214979195561729, + "c6": 3.4766527970411416, + "c7": 1.7383263985205877 }, "rgb": [77, 76, 132] }, @@ -458628,23 +458628,23 @@ "year": 1835, "resistanceReported": false, "duration": 22032000, - "curveSeeds": { - "c1": 21.93629083051168, - "c2": -11.717493552032554, - "c3": -7.977289872302805, - "c4": -4.4166549339327545, - "c5": 0.03073623450435292, - "c6": 20.37039969441816, - "c7": -16.731088476194167 + "points": { + "c1": -11.242649308513425, + "c2": 33.313475828395084, + "c3": 12.935871958447905, + "c4": 30.234500881242553, + "c5": -9.188447326846074, + "c6": 11.477776037547791, + "c7": 34.16707667386186 }, - "vertexSeeds": { - "c1": 8.958620793473958, - "c2": 9.082721043745256, - "c3": 9.219216119521118, - "c4": 9.340330165472112, - "c5": 8.630356289005848, - "c6": 9.292349858910756, - "c7": 8.95168912408556 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -458655,23 +458655,23 @@ "year": 1836, "resistanceReported": false, "duration": 33264000, - "curveSeeds": { - "c1": 3.4716306046645258, - "c2": 34.607860222312915, - "c3": -31.723917849787085, - "c4": -1.1679085173532258, - "c5": 24.99434017305294, - "c6": 43.70118987246381, - "c7": -44.37344514792449 + "points": { + "c1": -32.332380177516654, + "c2": -44.37561325215954, + "c3": 25.04789196851177, + "c4": 12.091522703659905, + "c5": 46.628278258106654, + "c6": -23.692210085220328, + "c7": 20.661874925836422 }, - "vertexSeeds": { - "c1": 9.08963571886815, - "c2": 8.66876293440303, - "c3": 8.719352498509632, - "c4": 8.882003323496571, - "c5": 9.111668130453388, - "c6": 8.922885898419885, - "c7": 8.939037176457283 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -458682,23 +458682,23 @@ "year": 1835, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -17.909043841894004, - "c2": 16.613299308277014, - "c3": 22.49573355886063, - "c4": -11.805919335651888, - "c5": -8.90664226029481, - "c6": -24.170823548789297, - "c7": -18.857283919610538 + "points": { + "c1": -1.7611485883657139, + "c2": 22.339029276777175, + "c3": -10.193518035936659, + "c4": -6.11845393116257, + "c5": -4.86534645838076, + "c6": -24.266098703258624, + "c7": -7.11154063703081 }, - "vertexSeeds": { - "c1": 2.9859895089535424, - "c2": 2.867512902459019, - "c3": 2.8595516350423797, - "c4": 2.9458149536870337, - "c5": 2.8187923144389777, - "c6": 2.8479790809761623, - "c7": 2.8795259821538606 + "offsets": { + "c1": 5.177993527508091, + "c2": 4.4382801664355105, + "c3": 3.6985668053629213, + "c4": 2.9588534442903405, + "c5": 2.219140083217751, + "c6": 1.4794267221451702, + "c7": 0.7397133610725894 }, "rgb": [86, 146, 138] }, @@ -458709,23 +458709,23 @@ "year": 1835, "resistanceReported": false, "duration": 24883200, - "curveSeeds": { - "c1": -8.24805952291468, - "c2": 4.836063498788583, - "c3": -3.81615748827722, - "c4": 21.31112265360111, - "c5": 0.9329618546325662, - "c6": -31.89409679893833, - "c7": -13.337516216768172 + "points": { + "c1": 20.255569548482825, + "c2": 3.7175759306732417, + "c3": -22.99411865772214, + "c4": -33.027969234075385, + "c5": 30.74343665661813, + "c6": -22.374358776869016, + "c7": 20.73908013848319 }, - "vertexSeeds": { - "c1": 7.749139039528578, - "c2": 7.7635678544524565, - "c3": 7.675770842307215, - "c4": 7.326001325077006, - "c5": 7.72645100048567, - "c6": 7.779455798509913, - "c7": 7.343090982883258 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [238, 201, 159] }, @@ -458736,23 +458736,23 @@ "year": 1835, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": -29.651278067701, - "c2": 38.10790484512164, - "c3": 21.043232371636883, - "c4": 39.14462430213676, - "c5": -24.00835514073174, - "c6": -31.331463560300563, - "c7": -6.812910534591701 + "points": { + "c1": -35.30440050810535, + "c2": 12.354895623157034, + "c3": -5.002503503099618, + "c4": 36.98875714316556, + "c5": -8.668350500025866, + "c6": -31.93691361181279, + "c7": 6.182425416621584 }, - "vertexSeeds": { - "c1": 4.954964130372312, - "c2": 4.743809373045592, - "c3": 4.819559073153114, - "c4": 4.830637535675805, - "c5": 4.746319075977611, - "c6": 4.9363295374919405, - "c7": 4.800052664269131 + "offsets": { + "c1": 8.446601941747572, + "c2": 7.239944521497923, + "c3": 6.033287101248274, + "c4": 4.82662968099861, + "c5": 3.6199722607489613, + "c6": 2.4133148404992975, + "c7": 1.2066574202496487 }, "rgb": [58, 15, 49] }, @@ -458763,23 +458763,23 @@ "year": 1835, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -19.95703925616426, - "c2": -18.03740718400511, - "c3": -11.909215300195683, - "c4": -23.74098798294171, - "c5": -25.95879355026228, - "c6": -4.761135847619521, - "c7": 4.365469688521365 + "points": { + "c1": 13.773615463635288, + "c2": -15.4329239172158, + "c3": 6.6610912032301925, + "c4": -3.036697328592176, + "c5": 2.6264503407459827, + "c6": 16.814065368486403, + "c7": 27.308742577877403 }, - "vertexSeeds": { - "c1": 5.479011118081465, - "c2": 5.317619153676494, - "c3": 5.49122856728301, - "c4": 5.496526816980123, - "c5": 5.227175537859374, - "c6": 5.454575099180016, - "c7": 5.264825560226638 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -458790,23 +458790,23 @@ "year": 1835, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": -10.428283071545408, - "c2": 22.28502870951396, - "c3": -0.5828305629408739, - "c4": -13.195808590536684, - "c5": 5.958712172279064, - "c6": 1.4183669784847304, - "c7": -8.125749057294737 + "points": { + "c1": 15.836103030435417, + "c2": -24.129679663138887, + "c3": -7.819148063566743, + "c4": -15.423846145450488, + "c5": 1.3676831871632338, + "c6": -17.697451455239303, + "c7": 20.08301072748244 }, - "vertexSeeds": { - "c1": 5.226995236688339, - "c2": 5.333246599630302, - "c3": 5.495496283461442, - "c4": 5.299581533361417, - "c5": 5.436851461484884, - "c6": 5.264531952042774, - "c7": 5.3600457477188765 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [238, 201, 159] }, @@ -458817,23 +458817,23 @@ "year": 1835, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -0.3854212980659071, - "c2": -27.585534246989116, - "c3": 11.103752903880629, - "c4": -7.177583943213811, - "c5": 5.963332648766613, - "c6": -13.961775730696928, - "c7": 16.086668439035694 + "points": { + "c1": -10.191996175824116, + "c2": 9.591362733422265, + "c3": -29.60794865709058, + "c4": 17.83028984553377, + "c5": -8.659127645098774, + "c6": -8.590511693532218, + "c7": 27.355351980294273 }, - "vertexSeeds": { - "c1": 5.382741906026581, - "c2": 5.718398460252103, - "c3": 5.8666492912840695, - "c4": 5.721076397516157, - "c5": 5.371102835647898, - "c6": 5.531445955370881, - "c7": 5.605450277479445 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -458844,23 +458844,23 @@ "year": 1835, "resistanceReported": false, "duration": 16675200, - "curveSeeds": { - "c1": -3.015761242889539, - "c2": 12.136856630822766, - "c3": -4.647082543043503, - "c4": -24.14431756806106, - "c5": 2.7138888667478405, - "c6": 15.592464088045634, - "c7": 18.567858923138072 + "points": { + "c1": 3.974986183471291, + "c2": -10.993049745963393, + "c3": -7.148798324030807, + "c4": 3.7660974111355934, + "c5": -4.128156683442491, + "c6": -27.791736956718946, + "c7": 2.3387784387972026 }, - "vertexSeeds": { - "c1": 5.239193004142705, - "c2": 5.446217323253735, - "c3": 5.401225259833014, - "c4": 5.365121812520185, - "c5": 5.379246660021005, - "c6": 5.321056560185822, - "c7": 5.408241417285496 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -458871,23 +458871,23 @@ "year": 1835, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": -3.6451036614894505, - "c2": 22.926416933822555, - "c3": -18.6715595417229, - "c4": -8.149188142586404, - "c5": 0.7839399637801208, - "c6": -12.083717983199211, - "c7": 14.093538524158863 + "points": { + "c1": -20.074406367050212, + "c2": 0.024802703720645525, + "c3": 7.497531103071562, + "c4": -20.486063004792655, + "c5": 23.221948823904842, + "c6": 8.819322252025199, + "c7": -18.037091959585418 }, - "vertexSeeds": { - "c1": 8.71819139577154, - "c2": 9.201015384558026, - "c3": 9.238855464751472, - "c4": 8.685800246161962, - "c5": 8.864026882162298, - "c6": 8.719755825030074, - "c7": 8.943147653056625 + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588068, + "c3": 11.257512713823388, + "c4": 9.006010171058707, + "c5": 6.754507628294024, + "c6": 4.503005085529363, + "c7": 2.2515025427646815 }, "rgb": [77, 76, 132] }, @@ -458898,23 +458898,23 @@ "year": 1835, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 23.181516865406703, - "c2": 21.369642684858075, - "c3": 8.442785269744572, - "c4": -1.1324182869254678, - "c5": -13.739220913820098, - "c6": 6.631467210809522, - "c7": -5.242948408710731 + "points": { + "c1": 12.403025934905973, + "c2": 16.17898135602825, + "c3": -5.200070993364939, + "c4": 0.9241445680633618, + "c5": 26.27526775428797, + "c6": -7.255962432807554, + "c7": 13.029726086361006 }, - "vertexSeeds": { - "c1": 13.970768177808846, - "c2": 14.200445085527374, - "c3": 13.70109690784032, - "c4": 13.996170254333217, - "c5": 14.200914653353975, - "c6": 14.121573923395447, - "c7": 13.897490845507273 + "offsets": { + "c1": 23.78640776699029, + "c2": 20.388349514563107, + "c3": 16.990291262135923, + "c4": 13.592233009708737, + "c5": 10.194174757281553, + "c6": 6.796116504854369, + "c7": 3.3980582524271843 }, "rgb": [222, 0, 59] }, @@ -458925,23 +458925,23 @@ "year": 1836, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": -18.439561733085522, - "c2": -14.06694577206919, - "c3": -29.59302001859257, - "c4": 7.891140794880812, - "c5": -4.744603105521435, - "c6": -11.050680404049409, - "c7": -36.646274696978644 + "points": { + "c1": 2.6694895562725947, + "c2": -34.347585904863706, + "c3": 3.3627983131483887, + "c4": 4.141700551515697, + "c5": 10.668705186320395, + "c6": 33.25644484352653, + "c7": 1.6038646710998634 }, - "vertexSeeds": { - "c1": 8.625945544222759, - "c2": 8.694007737226153, - "c3": 9.431382600555693, - "c4": 8.957093618589354, - "c5": 9.334871797909145, - "c6": 8.83700754706121, - "c7": 8.916273183946311 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -458952,23 +458952,23 @@ "year": 1835, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -3.5378862885433158, - "c2": -12.432477856150792, - "c3": 9.247130390290572, - "c4": -25.839873330882714, - "c5": 7.671378051006144, - "c6": -8.189434101296499, - "c7": -8.054970266865062 + "points": { + "c1": -8.92793240727518, + "c2": -24.216718725444913, + "c3": -5.042896814927332, + "c4": -8.551026413470545, + "c5": 9.624444230802808, + "c6": -7.434173192236294, + "c7": -3.614269587498427 }, - "vertexSeeds": { - "c1": 5.394208658914807, - "c2": 5.687003517907266, - "c3": 5.479271490699921, - "c4": 5.421702457143732, - "c5": 5.94203948415851, - "c6": 5.754201222937842, - "c7": 5.6381899766933525 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -458979,23 +458979,23 @@ "year": 1836, "resistanceReported": false, "duration": 33177600, - "curveSeeds": { - "c1": -12.210565073543897, - "c2": 12.250427771372202, - "c3": -4.515009160332653, - "c4": 30.242623014146545, - "c5": -33.61608300029113, - "c6": -10.20309609308368, - "c7": 25.99044142893321 + "points": { + "c1": -42.83429522861373, + "c2": 22.124219496297968, + "c3": 42.90963275431014, + "c4": -3.509311541950801, + "c5": -5.634188849015722, + "c6": -33.31247633903957, + "c7": -25.563673737274158 }, - "vertexSeeds": { - "c1": 5.581613335089098, - "c2": 5.530691399876577, - "c3": 5.732913811765838, - "c4": 5.840621784128874, - "c5": 5.535462069314042, - "c6": 5.585186802407164, - "c7": 5.884781362955819 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -459006,23 +459006,23 @@ "year": 1835, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 22.997171019945355, - "c2": 34.06291561633778, - "c3": 2.771072135382198, - "c4": -7.859604773326403, - "c5": 11.00508233018418, - "c6": -15.922068340377866, - "c7": -8.07955109818629 + "points": { + "c1": 34.41130266491795, + "c2": -28.017232100414383, + "c3": 16.408854997714478, + "c4": -31.07635735533652, + "c5": 4.0595406067634485, + "c6": 30.926192300052, + "c7": -35.91303539436287 }, - "vertexSeeds": { - "c1": 10.143369555914722, - "c2": 8.970267562725384, - "c3": 9.022296773212506, - "c4": 10.114135660611124, - "c5": 10.212734714540339, - "c6": 9.38775739509851, - "c7": 10.101591366700246 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518728, + "c3": 12.367082755432268, + "c4": 9.89366620434582, + "c5": 7.420249653259359, + "c6": 4.94683310217291, + "c7": 2.47341655108646 }, "rgb": [86, 146, 138] }, @@ -459033,23 +459033,23 @@ "year": 1835, "resistanceReported": false, "duration": 21081600, - "curveSeeds": { - "c1": -4.8318882019259775, - "c2": -0.7154449777656922, - "c3": 22.045434507707512, - "c4": -25.40709719056268, - "c5": -14.815466764380243, - "c6": -12.507181522033125, - "c7": -30.396476907917723 + "points": { + "c1": -27.5752165908017, + "c2": -5.005743346463493, + "c3": 0.2168303614661582, + "c4": -25.84303684768316, + "c5": 12.031993236080474, + "c6": 33.42014683860202, + "c7": 30.210179637727506 }, - "vertexSeeds": { - "c1": 5.2572187242359085, - "c2": 5.229373425315819, - "c3": 5.459428991229402, - "c4": 5.2206143225753765, - "c5": 5.256407930158044, - "c6": 5.376258029232628, - "c7": 5.2630489413693535 + "offsets": { + "c1": 9.12621359223301, + "c2": 7.822468793342596, + "c3": 6.518723994452143, + "c4": 5.214979195561732, + "c5": 3.9112343966712784, + "c6": 2.607489597780866, + "c7": 1.3037447988904527 }, "rgb": [238, 201, 159] }, @@ -459060,23 +459060,23 @@ "year": 1835, "resistanceReported": false, "duration": 17884800, - "curveSeeds": { - "c1": -12.052762773356914, - "c2": 18.332988089597695, - "c3": 29.22118655527743, - "c4": 8.681562331876695, - "c5": 23.093848692062675, - "c6": 23.950421021869307, - "c7": 23.327329998090274 + "points": { + "c1": -7.440554011631434, + "c2": 9.439137530815817, + "c3": -5.06854381581541, + "c4": 26.657374846258012, + "c5": -1.5436084819093594, + "c6": 30.724635030357316, + "c7": -19.19292363436303 }, - "vertexSeeds": { - "c1": 5.48797054500787, - "c2": 5.369042533706575, - "c3": 5.266710414836457, - "c4": 5.355793194246482, - "c5": 5.312970974093669, - "c6": 5.482836279000841, - "c7": 5.280106050684359 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -459087,23 +459087,23 @@ "year": 1835, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -14.969801842994368, - "c2": 9.457698374649283, - "c3": 30.67238770563464, - "c4": -22.43450530979644, - "c5": 24.833251669423497, - "c6": -29.509215425692897, - "c7": -30.35251586785874 + "points": { + "c1": 12.563982391674443, + "c2": 2.842618215006894, + "c3": 18.184064104827087, + "c4": -33.76359751926608, + "c5": 7.9612438119546525, + "c6": -33.70733355648406, + "c7": -13.144926511966826 }, - "vertexSeeds": { - "c1": 5.457513658989134, - "c2": 5.383103757585754, - "c3": 5.49230406902119, - "c4": 5.477154695955964, - "c5": 5.455875911300678, - "c6": 5.486458968378395, - "c7": 5.4536658930144695 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -459114,23 +459114,23 @@ "year": 1835, "resistanceReported": false, "duration": 21772800, - "curveSeeds": { - "c1": 12.77907945889195, - "c2": -12.291600008002973, - "c3": 5.070876910133002, - "c4": -21.207318529110804, - "c5": -33.289153152988796, - "c6": -25.60508469848928, - "c7": -22.5769369877748 + "points": { + "c1": -14.68536899485795, + "c2": -31.290398634421237, + "c3": 17.746030710634976, + "c4": 20.44015603913057, + "c5": 23.747982452363125, + "c6": 19.57688759876779, + "c7": -23.965171829633157 }, - "vertexSeeds": { - "c1": 9.213104536503502, - "c2": 8.509192786990328, - "c3": 9.21768157842562, - "c4": 8.805106356362248, - "c5": 9.259197356318412, - "c6": 8.625505526569018, - "c7": 9.271687409846674 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346744, + "c3": 11.11881645862229, + "c4": 8.895053166897835, + "c5": 6.671289875173381, + "c6": 4.4475265834489095, + "c7": 2.2237632917244547 }, "rgb": [58, 15, 49] }, @@ -459141,23 +459141,23 @@ "year": 1835, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": 15.17622482195025, - "c2": 6.2016937712198335, - "c3": -9.403879634307943, - "c4": 15.49544270306798, - "c5": 7.999050262038722, - "c6": 20.244806803170576, - "c7": 12.458789660693988 + "points": { + "c1": -11.407168976001321, + "c2": 25.47138705841096, + "c3": 11.734945718608543, + "c4": -7.035463614978703, + "c5": -13.29899589049144, + "c6": -12.861089380700205, + "c7": -14.368738183824217 }, - "vertexSeeds": { - "c1": 6.546243793286672, - "c2": 6.588616657305385, - "c3": 6.684360933437013, - "c4": 6.5418700322437235, - "c5": 6.376016578334062, - "c6": 6.386972867755127, - "c7": 6.556110383556463 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158125, + "c3": 8.136846971798425, + "c4": 6.5094775774387506, + "c5": 4.882108183079051, + "c6": 3.2547387887193753, + "c7": 1.6273693943596756 }, "rgb": [238, 201, 159] }, @@ -459168,23 +459168,23 @@ "year": 1836, "resistanceReported": false, "duration": 32313600, - "curveSeeds": { - "c1": 8.849055025120713, - "c2": 26.314429810214406, - "c3": 33.34548311530156, - "c4": 28.858103737358803, - "c5": 31.949835720740978, - "c6": 31.954909616763658, - "c7": 16.378422847727975 + "points": { + "c1": -9.322755834426715, + "c2": -40.2381831962263, + "c3": -38.88893304124286, + "c4": -40.37828092803563, + "c5": 42.18987117366228, + "c6": -26.08800875497936, + "c7": -22.9277666617594 }, - "vertexSeeds": { - "c1": 9.230316683554014, - "c2": 8.886216180170114, - "c3": 8.729344186687559, - "c4": 9.432442163385597, - "c5": 9.246365317467305, - "c6": 8.822992700020471, - "c7": 9.10315384335674 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -459195,23 +459195,23 @@ "year": 1835, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 13.98219324698158, - "c2": -13.288558985649, - "c3": 24.00521951160019, - "c4": -18.955452712574175, - "c5": -1.9363857917644864, - "c6": -13.400448773528055, - "c7": 18.700810712038205 + "points": { + "c1": 31.741363783460457, + "c2": 16.49948827939928, + "c3": 18.1699300112381, + "c4": -19.657828638568358, + "c5": -20.469909243463395, + "c6": 0.6817486692532242, + "c7": 17.80790057813264 }, - "vertexSeeds": { - "c1": 3.94939186220348, - "c2": 4.0315487515320285, - "c3": 4.035055822179179, - "c4": 4.0549248877846455, - "c5": 3.921772044223698, - "c6": 3.9168553880880093, - "c7": 4.071672880102195 + "offsets": { + "c1": 6.925566343042071, + "c2": 5.936199722607484, + "c3": 4.946833102172915, + "c4": 3.9574664817383285, + "c5": 2.968099861303742, + "c6": 1.978733240869156, + "c7": 0.9893666204345863 }, "rgb": [58, 15, 49] }, @@ -459222,23 +459222,23 @@ "year": 1836, "resistanceReported": false, "duration": 25833600, - "curveSeeds": { - "c1": 28.17464102193796, - "c2": -3.489356687517777, - "c3": 9.342895253639064, - "c4": -22.263378056604353, - "c5": 13.583026829527228, - "c6": 3.8221927542942, - "c7": -18.851868240903425 + "points": { + "c1": -38.829121526002595, + "c2": -22.709920329461692, + "c3": 11.163267132047629, + "c4": -2.965616156118436, + "c5": -33.89437892875124, + "c6": 32.5575384031891, + "c7": 2.196649967331453 }, - "vertexSeeds": { - "c1": 9.076045502896045, - "c2": 8.791237015374088, - "c3": 8.93211559038343, - "c4": 9.049464947798112, - "c5": 9.371091504281615, - "c6": 9.177520780041412, - "c7": 8.774186634119 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -459249,23 +459249,23 @@ "year": 1835, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 17.43354642490504, - "c2": 14.317984745523432, - "c3": 13.594977946958096, - "c4": 8.056793662867257, - "c5": 16.305975748074673, - "c6": -16.61785480952721, - "c7": 16.94048139691772 + "points": { + "c1": -12.050910195941134, + "c2": -17.104277764458182, + "c3": 0.2689418792068743, + "c4": 3.552317515831845, + "c5": 21.562992166893252, + "c6": 25.79619140331703, + "c7": 16.057151191039914 }, - "vertexSeeds": { - "c1": 8.407735358810994, - "c2": 8.824954489623405, - "c3": 9.083690314484535, - "c4": 8.842007735131618, - "c5": 8.563875583968205, - "c6": 8.856111210873822, - "c7": 8.536824444386657 + "offsets": { + "c1": 15.436893203883495, + "c2": 13.231622746185858, + "c3": 11.026352288488221, + "c4": 8.821081830790567, + "c5": 6.615811373092929, + "c6": 4.410540915395292, + "c7": 2.205270457697656 }, "rgb": [86, 146, 138] }, @@ -459276,23 +459276,23 @@ "year": 1835, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -8.392015993260753, - "c2": 1.3532893118396707, - "c3": -8.887336454979408, - "c4": -0.6080123591769215, - "c5": -20.170884485720876, - "c6": -7.845256980809129, - "c7": 7.434973429225039 + "points": { + "c1": -17.20598663474038, + "c2": 9.14331200814648, + "c3": -22.20750289129311, + "c4": 18.739111920208295, + "c5": -11.724756639841033, + "c6": 28.75260886155276, + "c7": -24.855146068814953 }, - "vertexSeeds": { - "c1": 8.198065556052331, - "c2": 7.6315632030952845, - "c3": 8.241104944281004, - "c4": 8.120786222382598, - "c5": 7.853778033185726, - "c6": 8.020465887525885, - "c7": 7.944740513718628 + "offsets": { + "c1": 13.883495145631066, + "c2": 11.900138696255203, + "c3": 9.916782246879336, + "c4": 7.933425797503472, + "c5": 5.950069348127594, + "c6": 3.9667128987517297, + "c7": 1.9833564493758649 }, "rgb": [222, 0, 59] }, @@ -459303,23 +459303,23 @@ "year": 1836, "resistanceReported": false, "duration": 21859200, - "curveSeeds": { - "c1": 25.534024281075396, - "c2": 33.319267760005445, - "c3": 17.709241411920104, - "c4": -7.67113925180443, - "c5": -14.633713913365884, - "c6": -0.7991675031141341, - "c7": -7.158000432332859 + "points": { + "c1": -35.135088720600955, + "c2": 22.89838735082045, + "c3": -27.888063409824156, + "c4": 4.542865028711866, + "c5": 13.559007204603006, + "c6": 20.44236427852801, + "c7": 32.96773211980813 }, - "vertexSeeds": { - "c1": 5.049946253383626, - "c2": 4.96062486573533, - "c3": 4.927618853697302, - "c4": 4.891090720157624, - "c5": 4.818408942085892, - "c6": 5.038680639711049, - "c7": 5.103130443075661 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618595, + "c3": 6.1026352288488175, + "c4": 4.882108183079052, + "c5": 3.6615811373092857, + "c6": 2.4410540915395322, + "c7": 1.2205270457697537 }, "rgb": [77, 76, 132] }, @@ -459330,23 +459330,23 @@ "year": 1836, "resistanceReported": false, "duration": 20908800, - "curveSeeds": { - "c1": -5.817660043257071, - "c2": 28.950354426570783, - "c3": -7.70152000038043, - "c4": 24.977437473238034, - "c5": 14.947566556056948, - "c6": -28.80964440362251, - "c7": -28.295193080928943 + "points": { + "c1": 14.8809831074825, + "c2": 12.664938579794615, + "c3": 21.93564716595254, + "c4": 0.8865717464369922, + "c5": 13.189090034754628, + "c6": -33.20081157142067, + "c7": 30.774002140464773 }, - "vertexSeeds": { - "c1": 8.429150827933874, - "c2": 9.964045151797942, - "c3": 9.080782720297957, - "c4": 9.211653565619978, - "c5": 8.838215063453028, - "c6": 9.174881516460344, - "c7": 9.469514427174976 + "offsets": { + "c1": 16.763754045307444, + "c2": 14.368932038834956, + "c3": 11.974110032362459, + "c4": 9.579288025889971, + "c5": 7.1844660194174725, + "c6": 4.7896440129449855, + "c7": 2.3948220064724985 }, "rgb": [86, 146, 138] }, @@ -459357,23 +459357,23 @@ "year": 1835, "resistanceReported": false, "duration": 17798400, - "curveSeeds": { - "c1": 6.238840523726893, - "c2": -10.85513611603277, - "c3": -5.021226903749916, - "c4": -3.483507658751261, - "c5": 18.328926002570903, - "c6": 11.703545298129562, - "c7": 19.336728747034037 + "points": { + "c1": -24.31464569596347, + "c2": 9.300819274168745, + "c3": -15.088317063412106, + "c4": -3.9009492102005012, + "c5": -4.8446018027702, + "c6": -27.548332026530034, + "c7": 6.724184608844716 }, - "vertexSeeds": { - "c1": 5.75766019527157, - "c2": 5.53003768144904, - "c3": 5.6608106730013885, - "c4": 5.86636097470887, - "c5": 5.850758887904965, - "c6": 5.692460684228474, - "c7": 5.377304505196179 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -459384,23 +459384,23 @@ "year": 1836, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -19.681903480894835, - "c2": -31.410424588358335, - "c3": 31.522684649762056, - "c4": 26.05660885029267, - "c5": -2.9506124050870888, - "c6": -20.33687346703556, - "c7": 19.211293680766268 + "points": { + "c1": 26.895843171202003, + "c2": -30.416057989668566, + "c3": 28.32527684013631, + "c4": 21.369087308405014, + "c5": 23.42918475301539, + "c6": 8.601596144744015, + "c7": 23.729397849315184 }, - "vertexSeeds": { - "c1": 4.3389099035501095, - "c2": 4.352308072035963, - "c3": 4.379669967972475, - "c4": 4.337023844756316, - "c5": 4.367508481975519, - "c6": 4.344163437575793, - "c7": 4.378709996993497 + "offsets": { + "c1": 7.3462783171521036, + "c2": 6.296809986130352, + "c3": 5.247341655108653, + "c4": 4.197873324086902, + "c5": 3.1484049930652023, + "c6": 2.098936662043451, + "c7": 1.0494683310217514 }, "rgb": [238, 201, 159] }, @@ -459411,23 +459411,23 @@ "year": 1836, "resistanceReported": false, "duration": 33350400, - "curveSeeds": { - "c1": -40.269772905646484, - "c2": 38.96303691488272, - "c3": 29.386124455769718, - "c4": -5.880224116252613, - "c5": 32.14790387006512, - "c6": -32.626549152564365, - "c7": 37.74849817981223 + "points": { + "c1": 31.01640733504682, + "c2": -2.6868636288802676, + "c3": -29.437939142426693, + "c4": 1.580627550310922, + "c5": 47.46097963735011, + "c6": 18.379888667408167, + "c7": -16.958639262223624 }, - "vertexSeeds": { - "c1": 9.409127794145713, - "c2": 8.784991992404642, - "c3": 9.236436285195667, - "c4": 8.84623973086686, - "c5": 8.615706104774628, - "c6": 8.772982232926005, - "c7": 9.294653284811277 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -459438,23 +459438,23 @@ "year": 1835, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -23.633828819516012, - "c2": -19.419040590214237, - "c3": 4.825375332153541, - "c4": 17.541951464820848, - "c5": -19.279923585119473, - "c6": -5.679789405677731, - "c7": 21.766566659933865 + "points": { + "c1": 1.2995284440337507, + "c2": -21.16577866067803, + "c3": 18.00251382685, + "c4": -12.074405635084947, + "c5": -17.31556442153684, + "c6": -21.711682435583096, + "c7": 2.1062230352935956 }, - "vertexSeeds": { - "c1": 5.411351291426381, - "c2": 5.254751515042308, - "c3": 5.263537402021993, - "c4": 5.49031669275402, - "c5": 5.427282392989914, - "c6": 5.480981101750533, - "c7": 5.423428953355305 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -459465,23 +459465,23 @@ "year": 1836, "resistanceReported": false, "duration": 25056000, - "curveSeeds": { - "c1": -14.512538987095862, - "c2": 0.33567276830534354, - "c3": -13.864590351017977, - "c4": -8.725069331583889, - "c5": -18.255961671363885, - "c6": -9.072430457157012, - "c7": -7.693695908186228 + "points": { + "c1": -4.185282605358054, + "c2": -6.568148957364329, + "c3": 11.781914457321484, + "c4": 10.588372957444577, + "c5": -35.04355774580952, + "c6": 10.713442780612674, + "c7": -19.542084082582633 }, - "vertexSeeds": { - "c1": 7.175573034352642, - "c2": 6.358344380680059, - "c3": 6.278169251609898, - "c4": 7.354094786156892, - "c5": 6.312910813383596, - "c6": 6.083528088777379, - "c7": 7.259466075129233 + "offsets": { + "c1": 12.330097087378642, + "c2": 10.56865464632455, + "c3": 8.807212205270456, + "c4": 7.045769764216363, + "c5": 5.28432732316227, + "c6": 3.522884882108177, + "c7": 1.7614424410540843 }, "rgb": [86, 146, 138] }, @@ -459492,23 +459492,23 @@ "year": 1836, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": 25.404947745518022, - "c2": 1.9042934741997257, - "c3": 3.5709517264973343, - "c4": -16.243347204021806, - "c5": 23.25272224444005, - "c6": -19.90080006934892, - "c7": 33.30907479863282 + "points": { + "c1": -9.864104487781361, + "c2": -16.7382618792664, + "c3": -35.282139569652436, + "c4": 8.236321689445724, + "c5": 5.821957164291192, + "c6": -18.1942388875223, + "c7": 34.301773259562324 }, - "vertexSeeds": { - "c1": 5.380657512586736, - "c2": 5.750402980311871, - "c3": 5.741809677520975, - "c4": 5.421212116010396, - "c5": 5.74490700728997, - "c6": 5.926688038598546, - "c7": 5.928706391956991 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -459519,23 +459519,23 @@ "year": 1836, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -17.349284609299836, - "c2": -5.542091923488243, - "c3": 4.198795055503162, - "c4": 11.098810800535283, - "c5": -21.532521159547834, - "c6": -26.415164346794498, - "c7": -5.744808715460639 + "points": { + "c1": -22.64208500352622, + "c2": 20.696410308168666, + "c3": -27.496470767359625, + "c4": -22.30510606958839, + "c5": -9.37756852093678, + "c6": 6.348817877656451, + "c7": 11.711160606174872 }, - "vertexSeeds": { - "c1": 14.286962434420268, - "c2": 12.022290330467326, - "c3": 14.683206881617425, - "c4": 14.191981621590461, - "c5": 12.687754055728607, - "c6": 12.479338361565112, - "c7": 12.37176046658236 + "offsets": { + "c1": 25.88996763754045, + "c2": 22.191400832177525, + "c3": 18.492834026814613, + "c4": 14.794267221451689, + "c5": 11.095700416088762, + "c6": 7.397133610725851, + "c7": 3.6985668053629257 }, "rgb": [77, 76, 132] }, @@ -459546,23 +459546,23 @@ "year": 1836, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": 28.3702652527904, - "c2": -13.74677083400461, - "c3": 24.89679329836336, - "c4": 10.230268789127617, - "c5": 3.8625720479534387, - "c6": 28.63738099554047, - "c7": 10.544380189692223 + "points": { + "c1": 29.486486069911756, + "c2": -6.176769197396016, + "c3": -12.433694613935621, + "c4": 12.138078475798693, + "c5": 4.586323598796305, + "c6": 22.950503848023736, + "c7": -10.379802124463787 }, - "vertexSeeds": { - "c1": 7.118993671875868, - "c2": 6.636815237305289, - "c3": 6.869248455259227, - "c4": 6.628309342011242, - "c5": 6.710882557336425, - "c6": 6.886633733817192, - "c7": 7.215901004356016 + "offsets": { + "c1": 12.103559870550162, + "c2": 10.374479889043002, + "c3": 8.645399907535824, + "c4": 6.916319926028662, + "c5": 5.187239944521501, + "c6": 3.458159963014339, + "c7": 1.7290799815071614 }, "rgb": [77, 76, 132] }, @@ -459573,23 +459573,23 @@ "year": 1836, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -24.676150998201937, - "c2": 0.6744624123220575, - "c3": -8.587630140953426, - "c4": 6.6583935371939305, - "c5": -12.63997897502091, - "c6": -20.23755793515764, - "c7": -18.580562525501 + "points": { + "c1": -12.54618737124217, + "c2": 25.269238728633184, + "c3": -11.647420969561303, + "c4": -11.847981319045594, + "c5": 17.86324832875411, + "c6": 13.514715188255089, + "c7": -20.658293580055357 }, - "vertexSeeds": { - "c1": 6.8394795236415975, - "c2": 7.266071088594483, - "c3": 7.228231726630541, - "c4": 6.913640738456046, - "c5": 7.1880182047681265, - "c6": 6.818772835328974, - "c7": 7.183502776261713 + "offsets": { + "c1": 12.200647249190938, + "c2": 10.457697642163664, + "c3": 8.714748035136392, + "c4": 6.971798428109118, + "c5": 5.228848821081844, + "c6": 3.4858992140545473, + "c7": 1.7429496070272736 }, "rgb": [86, 146, 138] }, @@ -459600,23 +459600,23 @@ "year": 1835, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -0.9080232975145002, - "c2": -20.537634960428598, - "c3": 21.60849200476595, - "c4": 13.20339642841126, - "c5": 14.905881988741214, - "c6": 21.253633586782115, - "c7": 0.5853599794595219 + "points": { + "c1": 23.42410735453752, + "c2": -15.489055318092694, + "c3": 20.91742194073317, + "c4": 28.555590539164342, + "c5": 20.710835251251908, + "c6": -6.929284225554834, + "c7": -18.092684954691233 }, - "vertexSeeds": { - "c1": 5.241940911911804, - "c2": 5.423997523809502, - "c3": 5.399853798281538, - "c4": 5.2667263337984105, - "c5": 5.406437017160425, - "c6": 5.34730428975246, - "c7": 5.366702208709292 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -459627,23 +459627,23 @@ "year": 1836, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": 8.83439251446368, - "c2": -23.42243755152139, - "c3": -8.569647004257863, - "c4": 11.53334396908749, - "c5": -25.08500471980254, - "c6": -31.068543906329833, - "c7": -9.149777212754927 + "points": { + "c1": -20.58121782361993, + "c2": 25.80628552065351, + "c3": -10.295052028160661, + "c4": -28.982122152727666, + "c5": -22.49739031839917, + "c6": -11.276225303263345, + "c7": -9.29493223222909 }, - "vertexSeeds": { - "c1": 5.547497950036746, - "c2": 5.613152057561811, - "c3": 5.660844745453203, - "c4": 5.861686434412832, - "c5": 5.581511985084399, - "c6": 5.399596817855491, - "c7": 5.452624901203565 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -459654,23 +459654,23 @@ "year": 1836, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -3.273083255600813, - "c2": 9.780790579109166, - "c3": -25.287029962316186, - "c4": 6.610696004101484, - "c5": -21.6557557725177, - "c6": -4.275779408560119, - "c7": -6.889405026814401 + "points": { + "c1": 21.436140836078586, + "c2": 9.376654331763497, + "c3": 16.287062466732834, + "c4": 2.479028115996215, + "c5": 21.743126746164435, + "c6": 29.028196242746937, + "c7": -22.10326271881489 }, - "vertexSeeds": { - "c1": 5.625659148499278, - "c2": 5.85988724128808, - "c3": 5.5074561499120875, - "c4": 5.856244818425779, - "c5": 5.703275534421637, - "c6": 5.533231305881851, - "c7": 5.617451047093328 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -459681,23 +459681,23 @@ "year": 1836, "resistanceReported": false, "duration": 18748800, - "curveSeeds": { - "c1": 11.898511412203984, - "c2": 26.339228172187074, - "c3": -17.95005236344663, - "c4": 11.01980442349316, - "c5": -19.346174048786967, - "c6": -28.611864981929088, - "c7": -21.70644388895756 + "points": { + "c1": -27.981418820527093, + "c2": -8.107157506389932, + "c3": 16.48019334048451, + "c4": 18.09052198018808, + "c5": -13.444516876620217, + "c6": 26.821191110560633, + "c7": -19.91456616489918 }, - "vertexSeeds": { - "c1": 9.240733014896565, - "c2": 9.025541786474564, - "c3": 9.264800856052116, - "c4": 8.980647471339884, - "c5": 8.827234396433713, - "c6": 8.793800053597417, - "c7": 8.995805271689207 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -459708,23 +459708,23 @@ "year": 1836, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 12.384051600645748, - "c2": -12.11993058948119, - "c3": 7.274276849393104, - "c4": 8.171100576186035, - "c5": 19.223022084517872, - "c6": 35.97045818346576, - "c7": 19.245208924422577 + "points": { + "c1": 4.878369868209475, + "c2": 12.063268922966827, + "c3": -24.417325032999123, + "c4": -6.041501998131572, + "c5": -20.57160280887597, + "c6": -34.366740511718646, + "c7": -29.424919087039516 }, - "vertexSeeds": { - "c1": 5.459927578967339, - "c2": 5.37849195045021, - "c3": 5.821981033852606, - "c4": 5.757715131128179, - "c5": 5.517398359699128, - "c6": 5.381545219965616, - "c7": 5.380985803104259 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -459735,23 +459735,23 @@ "year": 1835, "resistanceReported": false, "duration": 15033600, - "curveSeeds": { - "c1": 0.24431308227398674, - "c2": -15.212671711880997, - "c3": -13.965880324481237, - "c4": 2.969809285164839, - "c5": 5.778686811860382, - "c6": 3.321462247448519, - "c7": 5.117077222466563 + "points": { + "c1": -4.607146336662002, + "c2": 20.2254721776293, + "c3": -19.60919955476563, + "c4": 2.688682927804315, + "c5": -14.212177415954637, + "c6": -3.314313526895436, + "c7": 6.1432347004126555 }, - "vertexSeeds": { - "c1": 4.544714179334169, - "c2": 4.450396733215973, - "c3": 4.489110287674895, - "c4": 4.516849557959704, - "c5": 4.553999200038082, - "c6": 4.536438077924547, - "c7": 4.484148334073139 + "offsets": { + "c1": 7.6375404530744335, + "c2": 6.546463245492366, + "c3": 5.455386037910317, + "c4": 4.36430883032825, + "c5": 3.273231622746183, + "c6": 2.1821544151641343, + "c7": 1.0910772075820672 }, "rgb": [77, 76, 132] }, @@ -459762,23 +459762,23 @@ "year": 1836, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 8.447682941609767, - "c2": 0.7104019747872954, - "c3": 17.66610259738584, - "c4": -3.4349876570269338, - "c5": -3.257397962276901, - "c6": -19.38263434224547, - "c7": -25.811213295010315 + "points": { + "c1": -3.9062292051913516, + "c2": 13.2055934434273, + "c3": 18.01894629657774, + "c4": -27.854657840515454, + "c5": -4.706447915515259, + "c6": -22.04117610784634, + "c7": -0.5433137010093496 }, - "vertexSeeds": { - "c1": 4.958670602194869, - "c2": 4.722235775051239, - "c3": 4.7173778233043215, - "c4": 4.819721012392981, - "c5": 4.942715635830325, - "c6": 4.752004919405353, - "c7": 4.920167483951657 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337036, + "c3": 5.9408229311141865, + "c4": 4.752658344891352, + "c5": 3.564493758668518, + "c6": 2.3763291724456836, + "c7": 1.1881645862228343 }, "rgb": [77, 76, 132] }, @@ -459789,23 +459789,23 @@ "year": 1836, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 2.3067167635133217, - "c2": -27.86642628979115, - "c3": 6.101590052383273, - "c4": -10.617771948196303, - "c5": 20.13638404417229, - "c6": 20.952279231720695, - "c7": -4.062555072891005 + "points": { + "c1": -26.997033246086737, + "c2": 24.016265301285387, + "c3": 3.584501564581423, + "c4": 12.633155368006562, + "c5": -15.671714824662288, + "c6": -21.768132263504196, + "c7": -32.212793355560216 }, - "vertexSeeds": { - "c1": 9.301288143462905, - "c2": 8.752825970083002, - "c3": 9.217876927505811, - "c4": 8.77735940181127, - "c5": 9.275929272566385, - "c6": 9.40781079398345, - "c7": 9.260225548600303 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -459816,23 +459816,23 @@ "year": 1836, "resistanceReported": false, "duration": 17280000, - "curveSeeds": { - "c1": 1.0990472476563262, - "c2": 11.76418873809586, - "c3": 7.15610384321031, - "c4": 0.20240050238270157, - "c5": -26.92386422302387, - "c6": -1.5144792892536927, - "c7": -25.685081545427728 + "points": { + "c1": -24.351918190873242, + "c2": 20.741095690710274, + "c3": 14.967419922058227, + "c4": 13.844869790600619, + "c5": 13.906451775910874, + "c6": -20.758472198713903, + "c7": 9.28980269936276 }, - "vertexSeeds": { - "c1": 11.222646157011921, - "c2": 10.888458921213399, - "c3": 11.64251348005821, - "c4": 11.344295114043991, - "c5": 11.782503175735302, - "c6": 11.457200796683567, - "c7": 11.280028918611276 + "offsets": { + "c1": 19.967637540453072, + "c2": 17.115117891816908, + "c3": 14.26259824318077, + "c4": 11.410078594544604, + "c5": 8.557558945908468, + "c6": 5.705039297272302, + "c7": 2.852519648636136 }, "rgb": [86, 146, 138] }, @@ -459843,23 +459843,23 @@ "year": 1836, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -13.760274432782666, - "c2": 25.013826539814318, - "c3": 19.53711010697066, - "c4": 6.941937855900029, - "c5": 15.209882485828466, - "c6": 23.10563250460695, - "c7": 2.6230604087761904 + "points": { + "c1": 17.018177677121905, + "c2": 20.25617454006602, + "c3": -32.38180454728251, + "c4": -25.241791884720065, + "c5": 6.651060462410669, + "c6": 3.483636309558534, + "c7": 16.51247492682093 }, - "vertexSeeds": { - "c1": 3.550355773133559, - "c2": 3.5829952585764717, - "c3": 3.6605016008485816, - "c4": 3.613168485182533, - "c5": 3.6441090126588156, - "c6": 3.537394038751011, - "c7": 3.616363199142304 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642167, + "c3": 4.392048081368465, + "c4": 3.5136384650947745, + "c5": 2.6352288488210833, + "c6": 1.7568192325473817, + "c7": 0.8784096162736909 }, "rgb": [58, 15, 49] }, @@ -459870,23 +459870,23 @@ "year": 1835, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 5.776591437809699, - "c2": 3.668736078572884, - "c3": -6.66695524163875, - "c4": -19.210657235968483, - "c5": 12.369429767767315, - "c6": -12.13949307416737, - "c7": 1.3495622525950992 + "points": { + "c1": -16.424606251249035, + "c2": 5.176903098785363, + "c3": 10.87945168704372, + "c4": 14.033654508956232, + "c5": -3.3553319490233804, + "c6": -4.987249924338812, + "c7": 8.588826518162122 }, - "vertexSeeds": { - "c1": 9.494042061933447, - "c2": 8.705661260409057, - "c3": 8.775487093698375, - "c4": 9.347511661156325, - "c5": 9.148321790434649, - "c6": 9.009952906064742, - "c7": 9.226720884336668 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -459897,23 +459897,23 @@ "year": 1836, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 2.972871102974551, - "c2": 26.66328238777124, - "c3": 5.801607082014449, - "c4": -2.6966352177005533, - "c5": -17.11644027996831, - "c6": -26.031445295148668, - "c7": 20.987466978466387 + "points": { + "c1": 15.377604452296168, + "c2": 27.294090422169376, + "c3": -19.34814816537773, + "c4": -9.805376999477868, + "c5": -2.8243714493327126, + "c6": 13.320766988788208, + "c7": 29.757704804084874 }, - "vertexSeeds": { - "c1": 8.612887493860637, - "c2": 9.002986899203654, - "c3": 8.930467011927266, - "c4": 9.14666809798175, - "c5": 8.824282940355552, - "c6": 9.358384953738113, - "c7": 9.478130072521983 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -459924,23 +459924,23 @@ "year": 1836, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": -5.004030549425853, - "c2": 1.5140222886623036, - "c3": 15.66115255892764, - "c4": 9.940837686715227, - "c5": -11.859428267655623, - "c6": 28.303853139837344, - "c7": -24.386321133753786 + "points": { + "c1": 9.59663374560526, + "c2": -8.220091616076882, + "c3": -18.078688796238406, + "c4": -1.5681750377746226, + "c5": -13.186369202750136, + "c6": -10.15585862444222, + "c7": 13.474464191253709 }, - "vertexSeeds": { - "c1": 5.687677024979307, - "c2": 5.465995463005108, - "c3": 5.672929794537245, - "c4": 5.580017504847312, - "c5": 5.370938676640359, - "c6": 5.560869733738866, - "c7": 5.690988676813203 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -459951,23 +459951,23 @@ "year": 1836, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": -1.4880274885156908, - "c2": -9.902516614633477, - "c3": -1.6944714203304727, - "c4": 20.743720917266657, - "c5": 20.871856382503772, - "c6": 8.282497735723638, - "c7": 31.404182505154715 + "points": { + "c1": 31.45165285753979, + "c2": 32.403293791846956, + "c3": 31.148770823726714, + "c4": -7.925769152772709, + "c5": 12.553075833055225, + "c6": -31.103898684899328, + "c7": 27.799477037079363 }, - "vertexSeeds": { - "c1": 8.73030315866238, - "c2": 8.874084206157793, - "c3": 8.917891574622537, - "c4": 9.329269812150896, - "c5": 8.720510983492753, - "c6": 9.321161603216213, - "c7": 9.21150743105526 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -459978,23 +459978,23 @@ "year": 1836, "resistanceReported": false, "duration": 36460800, - "curveSeeds": { - "c1": 22.24274082392349, - "c2": 20.927859251192025, - "c3": -6.2273837449619975, - "c4": 48.35376567690799, - "c5": -33.88802257848655, - "c6": -31.71664190762394, - "c7": -26.291269047053216 + "points": { + "c1": -19.332339706258622, + "c2": -23.266899177766785, + "c3": -0.3537624241758053, + "c4": -40.79233177706559, + "c5": -2.9071251744129043, + "c6": -36.103910401605134, + "c7": -25.350805211695114 }, - "vertexSeeds": { - "c1": 5.625845073244903, - "c2": 5.362901043245779, - "c3": 5.496833571178741, - "c4": 5.765668385272784, - "c5": 5.43886073662498, - "c6": 5.696870581270431, - "c7": 5.335399158362359 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.26629680998613, + "c3": 6.888580674988442, + "c4": 5.510864539990753, + "c5": 4.133148404993065, + "c6": 2.7554322699953766, + "c7": 1.3777161349976883 }, "rgb": [58, 15, 49] }, @@ -460005,23 +460005,23 @@ "year": 1836, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": 15.05378185461327, - "c2": 2.2376578298936245, - "c3": -1.8559569645542737, - "c4": -17.951258615810588, - "c5": -5.285549517487162, - "c6": -18.951085464872335, - "c7": -2.163264084307148 + "points": { + "c1": -8.148852385011772, + "c2": -1.5693062009254248, + "c3": 20.47394566959359, + "c4": -4.799073914128318, + "c5": 16.354940283768578, + "c6": 22.12360753118225, + "c7": -15.850723671565916 }, - "vertexSeeds": { - "c1": 5.263250214334647, - "c2": 5.417840264035201, - "c3": 5.304753086723108, - "c4": 5.400024634508893, - "c5": 5.326117030197978, - "c6": 5.41167868329036, - "c7": 5.234665842900536 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [86, 146, 138] }, @@ -460032,23 +460032,23 @@ "year": 1836, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": 12.196808982663992, - "c2": 11.774459419358106, - "c3": 24.726064608725213, - "c4": -2.5375728610672326, - "c5": 22.045337259910756, - "c6": -6.532767160672222, - "c7": -13.931972006323466 + "points": { + "c1": 8.816497644366429, + "c2": 10.731584669058641, + "c3": 22.01809485654981, + "c4": 9.648974235859647, + "c5": -20.84714969178046, + "c6": 9.64896899739545, + "c7": 26.063848506736782 }, - "vertexSeeds": { - "c1": 5.63903601634756, - "c2": 5.632688067862249, - "c3": 5.61355238104092, - "c4": 5.617646990529774, - "c5": 5.63938380630139, - "c6": 5.689913984006823, - "c7": 5.611966465986827 + "offsets": { + "c1": 9.546925566343042, + "c2": 8.183079056865434, + "c3": 6.819232547387896, + "c4": 5.45538603791029, + "c5": 4.091539528432752, + "c6": 2.727693018955145, + "c7": 1.3638465094776064 }, "rgb": [86, 146, 138] }, @@ -460059,23 +460059,23 @@ "year": 1836, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -17.506644798618773, - "c2": 12.537590349618657, - "c3": 24.44053496422583, - "c4": 8.509489507738348, - "c5": -19.147014070955294, - "c6": -8.280033977893446, - "c7": -3.318978753156692 + "points": { + "c1": 15.399760666762734, + "c2": -17.89612870033964, + "c3": -18.337690086371943, + "c4": -20.50953075181967, + "c5": 11.311235306128001, + "c6": 14.090283855459486, + "c7": 1.066614982900905 }, - "vertexSeeds": { - "c1": 5.088995602582473, - "c2": 4.997540655785923, - "c3": 5.109520282993449, - "c4": 5.150960700592261, - "c5": 5.165853802386922, - "c6": 5.127046912304223, - "c7": 5.109679778521416 + "offsets": { + "c1": 8.673139158576051, + "c2": 7.434119278779458, + "c3": 6.195099398982915, + "c4": 4.956079519186322, + "c5": 3.717059639389729, + "c6": 2.4780397595931363, + "c7": 1.2390198797965928 }, "rgb": [222, 0, 59] }, @@ -460086,23 +460086,23 @@ "year": 1836, "resistanceReported": false, "duration": 345600, - "curveSeeds": { - "c1": -4.050388692184807, - "c2": 1.6198686273260403, - "c3": 7.854046357972718, - "c4": 2.9436511557246128, - "c5": 8.004199644370305, - "c6": 6.886379911756295, - "c7": -10.024646859748035 + "points": { + "c1": -8.87723414922376, + "c2": -4.280103684337153, + "c3": -0.39857120531792845, + "c4": 6.495833260226673, + "c5": 11.288370289946462, + "c6": 8.530965175554412, + "c7": -6.5925149992132805 }, - "vertexSeeds": { - "c1": 9.408144583317467, - "c2": 8.622422298552328, - "c3": 8.867651226064694, - "c4": 9.374269551649448, - "c5": 9.08540916721819, - "c6": 8.977265195519973, - "c7": 8.666453559473227 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -460113,23 +460113,23 @@ "year": 1837, "resistanceReported": false, "duration": 43027200, - "curveSeeds": { - "c1": -48.438545685748856, - "c2": 14.980583984510304, - "c3": -43.93588331463921, - "c4": 10.006481102465017, - "c5": -34.49140511174491, - "c6": 4.79346890168771, - "c7": 48.21802613340644 + "points": { + "c1": 47.79411863940457, + "c2": -16.780319457393382, + "c3": 26.836110541036987, + "c4": 24.532999249335532, + "c5": -58.13791819364225, + "c6": 2.579601089072014, + "c7": -3.3171581796946867 }, - "vertexSeeds": { - "c1": 5.517026667625372, - "c2": 5.6401933694276005, - "c3": 5.449097672568684, - "c4": 5.602623065336838, - "c5": 5.659923242481953, - "c6": 5.451699734290405, - "c7": 5.433751987299029 + "offsets": { + "c1": 9.579288025889968, + "c2": 8.210818307905692, + "c3": 6.842348589921415, + "c4": 5.473878871937105, + "c5": 4.105409153952829, + "c6": 2.7369394359685524, + "c7": 1.3684697179842762 }, "rgb": [86, 146, 138] }, @@ -460140,23 +460140,23 @@ "year": 1837, "resistanceReported": false, "duration": 36115200, - "curveSeeds": { - "c1": -38.4303177330007, - "c2": 46.99334661639044, - "c3": -37.5636083320164, - "c4": 10.91697623515634, - "c5": -16.482922733943326, - "c6": -43.624669571020725, - "c7": 37.79578339011198 + "points": { + "c1": 20.288872561113905, + "c2": -38.26348007780024, + "c3": -20.081825875867043, + "c4": 27.0514263308293, + "c5": -46.93667005566767, + "c6": 40.47372102772381, + "c7": 17.84461952662039 }, - "vertexSeeds": { - "c1": 7.412592397209215, - "c2": 7.320998025513383, - "c3": 7.800353997682985, - "c4": 7.283278830496002, - "c5": 7.932212267336622, - "c6": 7.884760848636115, - "c7": 7.731140536403606 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [238, 201, 159] }, @@ -460167,23 +460167,23 @@ "year": 1837, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 40.27874033511884, - "c2": 19.050981621461844, - "c3": 3.378298901279649, - "c4": -35.848271331618015, - "c5": -40.760802045644844, - "c6": 28.288498838179763, - "c7": 9.5212737086187 + "points": { + "c1": -3.1843365457012, + "c2": 37.314193778944926, + "c3": 5.877996114224679, + "c4": -6.180452088902655, + "c5": -3.1995685169768677, + "c6": 39.80616655253948, + "c7": -13.873528054036292 }, - "vertexSeeds": { - "c1": 10.344416501435377, - "c2": 12.34269233477452, - "c3": 10.330492271833084, - "c4": 13.442852579827793, - "c5": 10.786608829624502, - "c6": 14.135951957027338, - "c7": 10.722063570814788 + "offsets": { + "c1": 25.88996763754045, + "c2": 22.19140083217753, + "c3": 18.492834026814606, + "c4": 14.79426722145169, + "c5": 11.09570041608876, + "c6": 7.397133610725845, + "c7": 3.6985668053629226 }, "rgb": [86, 146, 138] }, @@ -460194,23 +460194,23 @@ "year": 1836, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 13.846965012286589, - "c2": 21.01276869737965, - "c3": -7.271494944330321, - "c4": -23.273719793139296, - "c5": -11.514777284844833, - "c6": 24.749251295509474, - "c7": 25.27242811549906 + "points": { + "c1": 19.1422856786061, + "c2": -18.381651947022554, + "c3": -1.2826605986894428, + "c4": -13.002298994095266, + "c5": 13.755487044793817, + "c6": -11.458237564313087, + "c7": -5.996624536392559 }, - "vertexSeeds": { - "c1": 5.920966988459805, - "c2": 5.883212045793276, - "c3": 5.643805746843091, - "c4": 5.779158890267226, - "c5": 5.898105826101085, - "c6": 5.577928233292945, - "c7": 5.610278511549522 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -460221,23 +460221,23 @@ "year": 1836, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -29.754406719174103, - "c2": -6.159706906540919, - "c3": 13.513842500249964, - "c4": -21.384041884915327, - "c5": -26.358412779553856, - "c6": 27.879467531991786, - "c7": 9.59606510655015 + "points": { + "c1": -35.574314465464454, + "c2": -27.15762813578641, + "c3": 3.4118168501784965, + "c4": 27.18384714963087, + "c5": 13.56774966616549, + "c6": 23.516982423858764, + "c7": -24.560558165524718 }, - "vertexSeeds": { - "c1": 9.630345915008505, - "c2": 9.65115691298899, - "c3": 9.732570103364035, - "c4": 9.82645922718022, - "c5": 9.600321147930172, - "c6": 9.616600231367931, - "c7": 9.445088442289425 + "offsets": { + "c1": 16.666666666666664, + "c2": 14.285714285714276, + "c3": 11.904761904761886, + "c4": 9.523809523809527, + "c5": 7.142857142857138, + "c6": 4.761904761904748, + "c7": 2.3809523809523587 }, "rgb": [58, 15, 49] }, @@ -460248,23 +460248,23 @@ "year": 1837, "resistanceReported": false, "duration": 42508800, - "curveSeeds": { - "c1": -32.211864753070415, - "c2": 6.165266985670669, - "c3": -16.376070097334676, - "c4": -18.216035472858422, - "c5": 35.509553447625066, - "c6": 8.550525979774235, - "c7": 17.48940068408281 + "points": { + "c1": 52.08059576481878, + "c2": 11.896819088723674, + "c3": 42.05680181942424, + "c4": -39.571384456621985, + "c5": -5.650233915478431, + "c6": 22.758254578192336, + "c7": -29.818829833139993 }, - "vertexSeeds": { - "c1": 9.138237016452265, - "c2": 8.617655842674246, - "c3": 9.404604371874472, - "c4": 9.175719518970295, - "c5": 9.47527035215478, - "c6": 9.05545590529313, - "c7": 8.803694329282267 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -460275,23 +460275,23 @@ "year": 1837, "resistanceReported": false, "duration": 43545600, - "curveSeeds": { - "c1": 12.020467292624808, - "c2": -35.54005795619152, - "c3": 50.03256983529524, - "c4": 38.99166592107324, - "c5": -6.236837505678764, - "c6": 39.770768205956465, - "c7": -55.174514016420616 + "points": { + "c1": -8.753911980589677, + "c2": -22.429111869959037, + "c3": 38.80923233547542, + "c4": 29.29937306375964, + "c5": -40.73972200650691, + "c6": -12.869858583875427, + "c7": -8.188892984994943 }, - "vertexSeeds": { - "c1": 8.169259836887786, - "c2": 8.444459938680517, - "c3": 8.625798883467983, - "c4": 8.912358089458973, - "c5": 8.279314602297674, - "c6": 8.56667023704542, - "c7": 8.95405491330276 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [238, 201, 159] }, @@ -460302,23 +460302,23 @@ "year": 1836, "resistanceReported": false, "duration": 13305600, - "curveSeeds": { - "c1": 9.508882030847182, - "c2": -2.1596912468314393, - "c3": 9.546128780597478, - "c4": -10.107229301638709, - "c5": -13.105028129831709, - "c6": -21.88812725691904, - "c7": 3.863353647068571 + "points": { + "c1": -11.70695464385305, + "c2": 15.739427447637688, + "c3": -23.17327074498951, + "c4": 21.16629451362202, + "c5": -22.367993549839138, + "c6": -16.060829073055835, + "c7": -22.4029836794697 }, - "vertexSeeds": { - "c1": 8.022285701197617, - "c2": 7.0069540997720585, - "c3": 7.434155899455315, - "c4": 8.109393307060328, - "c5": 7.600132062186411, - "c6": 7.112946564368801, - "c7": 7.848084350833915 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094312, + "c3": 9.824318076745259, + "c4": 7.859454461396204, + "c5": 5.894590846047151, + "c6": 3.929727230698096, + "c7": 1.9648636153490424 }, "rgb": [58, 15, 49] }, @@ -460329,23 +460329,23 @@ "year": 1836, "resistanceReported": false, "duration": 20563200, - "curveSeeds": { - "c1": -22.755549971600523, - "c2": 1.3617932000752404, - "c3": 28.58867586991927, - "c4": -10.587762345379815, - "c5": -8.670987860567035, - "c6": 26.340629428416094, - "c7": -7.713053961113477 + "points": { + "c1": -0.2802142671987369, + "c2": -28.024382315279347, + "c3": -19.25488370645476, + "c4": 10.068498305942455, + "c5": 10.926272984476647, + "c6": -14.636640488055257, + "c7": 14.508111969270793 }, - "vertexSeeds": { - "c1": 10.511094329504672, - "c2": 10.8264694946206, - "c3": 9.19876742086555, - "c4": 10.84360895324624, - "c5": 10.728968280304096, - "c6": 10.845125499487526, - "c7": 10.50117135329451 + "offsets": { + "c1": 18.478964401294498, + "c2": 15.839112343966702, + "c3": 13.199260286638928, + "c4": 10.559408229311135, + "c5": 7.919556171983362, + "c6": 5.279704114655567, + "c7": 2.6398520573277837 }, "rgb": [86, 146, 138] }, @@ -460356,23 +460356,23 @@ "year": 1838, "resistanceReported": false, "duration": 58233600, - "curveSeeds": { - "c1": -68.26512272640188, - "c2": -51.93594746842511, - "c3": -7.774162001885827, - "c4": -0.36622503304458576, - "c5": -14.200829695433114, - "c6": -40.73597045000246, - "c7": 71.86782855967785 + "points": { + "c1": -34.8844486490674, + "c2": 59.93158110033106, + "c3": 3.1242129095956983, + "c4": 20.030561936683895, + "c5": 46.57940943614145, + "c6": 66.3745364996124, + "c7": -57.07770033645189 }, - "vertexSeeds": { - "c1": 7.556159763375082, - "c2": 8.7023391191136, - "c3": 7.496890124891239, - "c4": 8.091986052325561, - "c5": 8.47325725666765, - "c6": 7.517070597504376, - "c7": 8.693912555411151 + "offsets": { + "c1": 14.660194174757283, + "c2": 12.565880721220521, + "c3": 10.471567267683772, + "c4": 8.377253814147021, + "c5": 6.282940360610261, + "c6": 4.188626907073499, + "c7": 2.0943134535367496 }, "rgb": [86, 146, 138] }, @@ -460383,23 +460383,23 @@ "year": 1836, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -30.640511106684507, - "c2": 33.50673053803409, - "c3": 19.7971821164477, - "c4": 3.2400938815779625, - "c5": -12.026710801853461, - "c6": 28.328463129327105, - "c7": -18.960996879437268 + "points": { + "c1": -35.25198157511749, + "c2": -18.492831314683688, + "c3": 24.27257252305364, + "c4": 22.175081289017157, + "c5": -36.04353025111498, + "c6": -20.204505828061578, + "c7": -4.894106725004946 }, - "vertexSeeds": { - "c1": 9.020449127095022, - "c2": 9.08155979845947, - "c3": 9.424952175100104, - "c4": 8.75980968610577, - "c5": 8.691538693790452, - "c6": 9.156006739945981, - "c7": 8.743620949074247 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -460410,23 +460410,23 @@ "year": 1836, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -22.764358621968242, - "c2": 5.641590529742857, - "c3": 6.531559029165969, - "c4": 7.314458151387974, - "c5": -19.14960942114223, - "c6": 0.3322970065245521, - "c7": -13.390059843600685 + "points": { + "c1": 1.3021281938025808, + "c2": 27.32306993808006, + "c3": -26.6501970057714, + "c4": 0.947014628422707, + "c5": -28.69921049789511, + "c6": 31.175645721119913, + "c7": -13.910968170725571 }, - "vertexSeeds": { - "c1": 3.9120263647996376, - "c2": 3.7681730447026243, - "c3": 3.9159191106576614, - "c4": 3.9278490509840815, - "c5": 3.9744711817405807, - "c6": 3.88124097108412, - "c7": 3.625052794882955 + "offsets": { + "c1": 6.893203883495145, + "c2": 5.908460471567266, + "c3": 4.923717059639388, + "c4": 3.938973647711509, + "c5": 2.9542302357836356, + "c6": 1.9694868238557572, + "c7": 0.9847434119278786 }, "rgb": [222, 0, 59] }, @@ -460437,23 +460437,23 @@ "year": 1837, "resistanceReported": false, "duration": 27388800, - "curveSeeds": { - "c1": -25.045501477087402, - "c2": -36.89261587802572, - "c3": 33.37843242551012, - "c4": 19.29024199366296, - "c5": -15.715930971577436, - "c6": 27.246974392758624, - "c7": 39.36776966493699 + "points": { + "c1": -41.383815027187396, + "c2": -4.154510701748222, + "c3": -10.418685375976484, + "c4": 32.877369123796264, + "c5": 31.458539411183956, + "c6": 20.46279303337534, + "c7": 2.3346046090818717 }, - "vertexSeeds": { - "c1": 5.490328819414923, - "c2": 5.395126014143451, - "c3": 5.630453546882247, - "c4": 5.711021312107563, - "c5": 5.5462819698501775, - "c6": 5.8099912224956025, - "c7": 5.64892477017292 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -460464,23 +460464,23 @@ "year": 1836, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -16.109251735927458, - "c2": 26.35068304644037, - "c3": -3.7914117117910386, - "c4": -22.474811637096636, - "c5": -9.582214914327434, - "c6": -24.672558877995666, - "c7": -17.206627043586316 + "points": { + "c1": -19.94354092823395, + "c2": 27.12280324151271, + "c3": 21.01001542102114, + "c4": -26.38894013175406, + "c5": 26.020724393436797, + "c6": -11.009029705562085, + "c7": 8.09889547117361 }, - "vertexSeeds": { - "c1": 6.569092331269128, - "c2": 6.56280817474531, - "c3": 6.568395798548291, - "c4": 6.578139915089662, - "c5": 6.524721489757131, - "c6": 6.528871080113793, - "c7": 6.513233448832736 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675495, + "c3": 7.859454461396298, + "c4": 6.287563569116945, + "c5": 4.715672676837747, + "c6": 3.1437817845585507, + "c7": 1.5718908922791972 }, "rgb": [58, 15, 49] }, @@ -460491,23 +460491,23 @@ "year": 1836, "resistanceReported": false, "duration": 23932800, - "curveSeeds": { - "c1": 21.014338805189688, - "c2": 22.286014072489593, - "c3": 23.307232659808555, - "c4": -20.50423490345091, - "c5": 22.023825634384018, - "c6": -5.94315677676618, - "c7": 22.08193474661403 + "points": { + "c1": -10.41073193189051, + "c2": 22.973150455290565, + "c3": 7.508106139352144, + "c4": 7.040101987113637, + "c5": 18.30125415602904, + "c6": 13.596490449761106, + "c7": -22.667895721592068 }, - "vertexSeeds": { - "c1": 13.830973718064008, - "c2": 13.94979959688376, - "c3": 14.731007022552317, - "c4": 14.113812280406222, - "c5": 13.70255852668097, - "c6": 15.499720292730904, - "c7": 13.994050463604749 + "offsets": { + "c1": 25.88996763754045, + "c2": 22.191400832177518, + "c3": 18.49283402681461, + "c4": 14.794267221451676, + "c5": 11.095700416088773, + "c6": 7.397133610725838, + "c7": 3.698566805362905 }, "rgb": [222, 0, 59] }, @@ -460518,23 +460518,23 @@ "year": 1837, "resistanceReported": false, "duration": 22896000, - "curveSeeds": { - "c1": 27.55147642043144, - "c2": 22.930002587462667, - "c3": 11.52712972500889, - "c4": 31.431809444398425, - "c5": 28.240956493173947, - "c6": 29.389351108625206, - "c7": 23.817743367400524 + "points": { + "c1": 30.52252529967626, + "c2": 3.946014096498793, + "c3": -28.148087402028693, + "c4": 14.040211410369196, + "c5": 33.526330748678646, + "c6": -10.232391507571606, + "c7": 13.208082500167436 }, - "vertexSeeds": { - "c1": 0.9326424870466321, - "c2": 0.9326424870466321, - "c3": 0.9326424870466321, - "c4": 0.9326424870466321, - "c5": 0.9326424870466321, - "c6": 0.9326424870466321, - "c7": 0.9326424870466321 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [222, 0, 59] }, @@ -460545,23 +460545,23 @@ "year": 1837, "resistanceReported": false, "duration": 24969600, - "curveSeeds": { - "c1": -19.566293675232064, - "c2": 28.383343240127886, - "c3": -35.07739959956459, - "c4": -2.6056777107666846, - "c5": 16.4485068901688, - "c6": 34.633254764634216, - "c7": -23.17843626277832 + "points": { + "c1": -15.457175096948447, + "c2": -18.39798264869883, + "c3": 23.331413565488894, + "c4": 26.444728579255198, + "c5": 14.486018411710148, + "c6": 9.662014617007543, + "c7": 19.79423039445397 }, - "vertexSeeds": { - "c1": 13.05556753331202, - "c2": 13.13509829186162, - "c3": 12.053339162700098, - "c4": 12.143088660427328, - "c5": 12.971565505409416, - "c6": 12.915245393227222, - "c7": 13.73111121995039 + "offsets": { + "c1": 25.40453074433657, + "c2": 21.7753120665742, + "c3": 18.146093388811835, + "c4": 14.516874711049468, + "c5": 10.8876560332871, + "c6": 7.258437355524734, + "c7": 3.629218677762367 }, "rgb": [222, 0, 59] }, @@ -460572,23 +460572,23 @@ "year": 1836, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": 8.126535224897573, - "c2": 21.547038604673347, - "c3": 19.66299511628918, - "c4": -4.716661170226377, - "c5": -23.707784582998165, - "c6": -8.856736980736855, - "c7": -2.560084928736316 + "points": { + "c1": 26.795756814597645, + "c2": 1.8896637119817719, + "c3": -0.9455753815947148, + "c4": -21.34037069327671, + "c5": 8.177001837848614, + "c6": -17.358072258150674, + "c7": 19.38198010846496 }, - "vertexSeeds": { - "c1": 2.125077143359872, - "c2": 1.9609464556333176, - "c3": 1.9325126744252668, - "c4": 2.166247935325824, - "c5": 1.965696869130748, - "c6": 2.281106644990643, - "c7": 1.9189325979094556 + "offsets": { + "c1": 3.9158576051779934, + "c2": 3.3564493758668514, + "c3": 2.7970411465557095, + "c4": 2.2376329172445675, + "c5": 1.6782246879334257, + "c6": 1.1188164586222837, + "c7": 0.5594082293111419 }, "rgb": [86, 146, 138] }, @@ -460599,23 +460599,23 @@ "year": 1836, "resistanceReported": false, "duration": 16934400, - "curveSeeds": { - "c1": 24.026377656709723, - "c2": -11.880529026792498, - "c3": -0.12479549463908057, - "c4": -6.262147061096499, - "c5": 25.752471347026823, - "c6": -28.12670402001668, - "c7": -3.108543163548191 + "points": { + "c1": 16.70883415734598, + "c2": -18.083486546640046, + "c3": 22.731301526119008, + "c4": 14.962821058627174, + "c5": -4.137122696398475, + "c6": 22.190702549047632, + "c7": -0.12247467768492015 }, - "vertexSeeds": { - "c1": 5.454447265125787, - "c2": 5.3873639234546316, - "c3": 5.342783126550838, - "c4": 5.482882155986457, - "c5": 5.046951079104251, - "c6": 5.0253281768215565, - "c7": 5.184752405169725 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423029, + "c3": 6.5649560795191775, + "c4": 5.2519648636153455, + "c5": 3.9389736477115145, + "c6": 2.6259824318076834, + "c7": 1.3129912159038313 }, "rgb": [238, 201, 159] }, @@ -460626,23 +460626,23 @@ "year": 1836, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": -7.066793774951954, - "c2": -14.141594769068007, - "c3": -22.38437083635438, - "c4": -3.962781563176719, - "c5": -0.4002087167005399, - "c6": 10.545989003241225, - "c7": -5.002912039368052 + "points": { + "c1": -4.625209912433338, + "c2": 20.382314129324456, + "c3": -14.169075484435941, + "c4": -5.8693798885982815, + "c5": -11.72711920805861, + "c6": -12.913673416513747, + "c7": -20.309550647344984 }, - "vertexSeeds": { - "c1": 8.140758718256153, - "c2": 7.837089954843546, - "c3": 7.833714377418227, - "c4": 8.159490228103211, - "c5": 8.19772801457077, - "c6": 8.317940963013717, - "c7": 8.28709334211665 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617198, + "c3": 10.124826629681, + "c4": 8.099861303744799, + "c5": 6.074895977808599, + "c6": 4.049930651872399, + "c7": 2.0249653259361997 }, "rgb": [238, 201, 159] }, @@ -460653,23 +460653,23 @@ "year": 1836, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -24.415019406761584, - "c2": -5.818578894892909, - "c3": -17.72810759512506, - "c4": 5.13546215529416, - "c5": -27.06236468125315, - "c6": 16.13239500709817, - "c7": 12.844899591564005 + "points": { + "c1": 5.399967158034091, + "c2": 22.681713664782922, + "c3": -4.968572416089472, + "c4": 5.518712007551432, + "c5": -2.137563984082135, + "c6": 23.220981119454304, + "c7": 20.02377052459224 }, - "vertexSeeds": { - "c1": 8.686229202902446, - "c2": 8.63562798570968, - "c3": 8.717377186240313, - "c4": 8.658261775398424, - "c5": 8.648033189611969, - "c6": 8.550629312222794, - "c7": 8.477218059131557 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099868, + "c3": 10.402219140083231, + "c4": 8.321775312066544, + "c5": 6.241331484049908, + "c6": 4.160887656033272, + "c7": 2.080443828016636 }, "rgb": [58, 15, 49] }, @@ -460680,23 +460680,23 @@ "year": 1836, "resistanceReported": false, "duration": 6998400, - "curveSeeds": { - "c1": -4.046775330328533, - "c2": -15.644972693626718, - "c3": -7.4801566916829465, - "c4": -4.363915052775267, - "c5": -13.03314640013159, - "c6": -9.890942594824761, - "c7": 6.536638831065584 + "points": { + "c1": -3.432624460152102, + "c2": -1.7398730627793242, + "c3": 3.667733535451493, + "c4": -16.290946742965353, + "c5": -4.610139555865965, + "c6": -18.802592657804077, + "c7": 16.646865160743776 }, - "vertexSeeds": { - "c1": 7.903213724628977, - "c2": 7.715359959906121, - "c3": 7.558733664801562, - "c4": 7.673654563991431, - "c5": 8.104646056806976, - "c6": 7.5273212166445855, - "c7": 7.651653711323724 + "offsets": { + "c1": 13.624595469255663, + "c2": 11.678224687933422, + "c3": 9.73185390661118, + "c4": 7.785483125288941, + "c5": 5.8391123439667, + "c6": 3.8927415626444817, + "c7": 1.9463707813222408 }, "rgb": [86, 146, 138] }, @@ -460707,23 +460707,23 @@ "year": 1836, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -9.305592000155862, - "c2": -10.317862725009583, - "c3": 11.411857808575188, - "c4": -23.688137117137508, - "c5": 25.259164671169533, - "c6": 18.84251459694975, - "c7": 21.66602950653984 + "points": { + "c1": -13.047223886316694, + "c2": 21.93517705584664, + "c3": -6.39650242365007, + "c4": 12.433395892873808, + "c5": 11.091693032188441, + "c6": 27.399184791249997, + "c7": 14.191252374147798 }, - "vertexSeeds": { - "c1": 9.105225445648106, - "c2": 9.092214026987342, - "c3": 8.996959312368887, - "c4": 9.275043300264935, - "c5": 9.110589180694825, - "c6": 9.204975947537715, - "c7": 9.02247046587495 + "offsets": { + "c1": 15.566343042071198, + "c2": 13.342579750346756, + "c3": 11.118816458622264, + "c4": 8.89505316689782, + "c5": 6.671289875173378, + "c6": 4.447526583448935, + "c7": 2.2237632917244428 }, "rgb": [222, 0, 59] }, @@ -460734,23 +460734,23 @@ "year": 1836, "resistanceReported": true, "duration": 16243200, - "curveSeeds": { - "c1": 10.327737064582259, - "c2": 18.19765397355218, - "c3": -15.398805958899146, - "c4": 1.5585734804112086, - "c5": 1.9590796966392574, - "c6": -24.457857647417555, - "c7": 13.283660985922879 + "points": { + "c1": -8.211781691582164, + "c2": -7.114475763095335, + "c3": -16.86760505461085, + "c4": 14.525531818993642, + "c5": -16.556022624246285, + "c6": 11.534399767063306, + "c7": 14.605087455202053 }, - "vertexSeeds": { - "c1": 9.73505345768415, - "c2": 9.942299130304328, - "c3": 9.29768136287728, - "c4": 9.84773158050535, - "c5": 9.09519677751636, - "c6": 9.960829810581284, - "c7": 9.391229461211688 + "offsets": { + "c1": 17.022653721682847, + "c2": 14.590846047156738, + "c3": 12.159038372630596, + "c4": 9.727230698104487, + "c5": 7.295423023578361, + "c6": 4.863615349052235, + "c7": 2.4318076745261092 }, "rgb": [222, 0, 59] }, @@ -460761,23 +460761,23 @@ "year": 1836, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": -2.318132784788883, - "c2": -0.3423161266715411, - "c3": -19.271873279858152, - "c4": -14.918225273624005, - "c5": 4.092823174880738, - "c6": 13.271985607496575, - "c7": -15.997021958764257 + "points": { + "c1": -23.89761438630208, + "c2": 7.875466659012162, + "c3": -24.75781913699995, + "c4": 1.2975019073904868, + "c5": -20.802057234852153, + "c6": 6.484016244906737, + "c7": -16.658306352790873 }, - "vertexSeeds": { - "c1": 9.986913919003651, - "c2": 10.461449275334868, - "c3": 10.891808009616703, - "c4": 9.953299737967988, - "c5": 11.437093272888607, - "c6": 10.920572055214686, - "c7": 10.211461547452629 + "offsets": { + "c1": 19.12621359223301, + "c2": 16.393897364771146, + "c3": 13.661581137309286, + "c4": 10.929264909847443, + "c5": 8.196948682385578, + "c6": 5.464632454923716, + "c7": 2.732316227461853 }, "rgb": [58, 15, 49] }, @@ -460788,23 +460788,23 @@ "year": 1836, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 1.2172155677556624, - "c2": 14.210169053922378, - "c3": -2.0911272203697493, - "c4": 14.47233389887355, - "c5": -8.816399541168156, - "c6": 6.646380423404551, - "c7": -1.00228408394781 + "points": { + "c1": 10.934896127093097, + "c2": 10.187658276659846, + "c3": 6.4762279146528385, + "c4": -16.383259058402217, + "c5": 19.503968206291162, + "c6": -3.7123305320063835, + "c7": -13.014210509417188 }, - "vertexSeeds": { - "c1": 9.220197491021311, - "c2": 8.693922258391394, - "c3": 8.688209879295384, - "c4": 9.167425060373333, - "c5": 8.361224222209703, - "c6": 9.145521646800551, - "c7": 8.96927661392665 + "offsets": { + "c1": 15.436893203883495, + "c2": 13.23162274618585, + "c3": 11.026352288488205, + "c4": 8.821081830790579, + "c5": 6.615811373092934, + "c6": 4.4105409153952895, + "c7": 2.2052704576976447 }, "rgb": [77, 76, 132] }, @@ -460815,23 +460815,23 @@ "year": 1837, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -16.406271457810757, - "c2": -29.588081112578678, - "c3": 17.193648260783092, - "c4": 26.90046011721487, - "c5": 26.790289208298056, - "c6": 6.294182163810525, - "c7": 18.136797969531422 + "points": { + "c1": 2.416618641908478, + "c2": 0.8390284098649303, + "c3": 5.0496924245315, + "c4": 2.6696992425203803, + "c5": -29.78614253645971, + "c6": 13.527228451400312, + "c7": -17.038062985644395 }, - "vertexSeeds": { - "c1": 2.135493557772994, - "c2": 2.0544300415107157, - "c3": 2.017198171458731, - "c4": 2.092961029342825, - "c5": 2.0889612906382826, - "c6": 2.0135192833682947, - "c7": 2.043671494586883 + "offsets": { + "c1": 3.5922330097087376, + "c2": 3.079056865464634, + "c3": 2.565880721220524, + "c4": 2.0527045769764207, + "c5": 1.539528432732317, + "c6": 1.026352288488207, + "c7": 0.5131761442441035 }, "rgb": [58, 15, 49] }, @@ -460842,23 +460842,23 @@ "year": 1837, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -42.85878800262746, - "c2": -36.088634546004485, - "c3": -42.79982133046773, - "c4": -3.608664558588792, - "c5": -35.85646285123312, - "c6": 25.813135191501466, - "c7": -36.67862359432152 + "points": { + "c1": 27.970877729632768, + "c2": 19.158923196706716, + "c3": 33.37063753352508, + "c4": -45.54858052343578, + "c5": -35.38660573434105, + "c6": 4.747655102335585, + "c7": -5.117324196767527 }, - "vertexSeeds": { - "c1": 3.737828830586636, - "c2": 3.778942198175493, - "c3": 3.8287934592986237, - "c4": 3.896401695320476, - "c5": 3.7565681745138635, - "c6": 3.8706661701289846, - "c7": 3.8336475920988216 + "offsets": { + "c1": 6.666666666666667, + "c2": 5.714285714285719, + "c3": 4.761904761904761, + "c4": 3.8095238095238124, + "c5": 2.8571428571428545, + "c6": 1.9047619047619062, + "c7": 0.9523809523809484 }, "rgb": [58, 15, 49] }, @@ -460869,23 +460869,23 @@ "year": 1836, "resistanceReported": false, "duration": 11750400, - "curveSeeds": { - "c1": 17.704967568414666, - "c2": -14.85288157449639, - "c3": 20.422511814123936, - "c4": -1.3266657668923862, - "c5": -2.4230124655974166, - "c6": -15.423293121314165, - "c7": 2.2094146864086426 + "points": { + "c1": 19.07884617959005, + "c2": 13.267843351382183, + "c3": -5.487478017290254, + "c4": 10.161462484234065, + "c5": -19.469829183377044, + "c6": -11.404225171745024, + "c7": 20.73751561578794 }, - "vertexSeeds": { - "c1": 7.312897797855657, - "c2": 7.293824841028691, - "c3": 6.449865162810965, - "c4": 7.121404067596652, - "c5": 6.199298034278115, - "c6": 6.433235903325203, - "c7": 6.343268432610153 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.54091539528433, + "c3": 8.784096162736942, + "c4": 7.027276930189545, + "c5": 5.270457697642159, + "c6": 3.5136384650947723, + "c7": 1.7568192325473861 }, "rgb": [238, 201, 159] }, @@ -460896,23 +460896,23 @@ "year": 1837, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 6.023885171864205, - "c2": 10.829971737344916, - "c3": -5.551114094724209, - "c4": 24.683402651471273, - "c5": 6.767481236972298, - "c6": -26.328056711708232, - "c7": -13.696094639221768 + "points": { + "c1": 27.004180092443566, + "c2": 16.00264879852777, + "c3": 15.878649407758186, + "c4": 5.283836187702587, + "c5": 29.071986033725853, + "c6": -25.153980540827767, + "c7": 17.434904050551783 }, - "vertexSeeds": { - "c1": 2.037110018179058, - "c2": 2.0419171775921736, - "c3": 1.841697923383961, - "c4": 1.7044586075565265, - "c5": 2.006658565632236, - "c6": 1.7889374464295178, - "c7": 1.9006841804576922 + "offsets": { + "c1": 3.4951456310679614, + "c2": 2.995839112343966, + "c3": 2.496532593619973, + "c4": 1.9972260748959771, + "c5": 1.4979195561719842, + "c6": 0.9986130374479886, + "c7": 0.4993065187239955 }, "rgb": [238, 201, 159] }, @@ -460923,23 +460923,23 @@ "year": 1837, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 1.0551711896615998, - "c2": 25.875733981775863, - "c3": 4.71685699213862, - "c4": -11.827383450471567, - "c5": -4.025540393981519, - "c6": -11.384259298173452, - "c7": -14.74116637895214 + "points": { + "c1": -8.1477544223055, + "c2": 14.575653897061986, + "c3": 28.811323993463592, + "c4": 28.08565893700734, + "c5": 10.838571887112064, + "c6": -4.042737225398476, + "c7": -27.89589412862125 }, - "vertexSeeds": { - "c1": 9.091479783767268, - "c2": 9.166009157714257, - "c3": 10.30261448973931, - "c4": 10.706850062773952, - "c5": 10.147801568271905, - "c6": 10.96419464991345, - "c7": 10.219776282172798 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.977808599167826, + "c3": 13.314840499306529, + "c4": 10.651872399445212, + "c5": 7.988904299583913, + "c6": 5.325936199722615, + "c7": 2.6629680998613074 }, "rgb": [86, 146, 138] }, @@ -460950,23 +460950,23 @@ "year": 1837, "resistanceReported": false, "duration": 22982400, - "curveSeeds": { - "c1": -33.23425448227352, - "c2": 23.954472968781644, - "c3": 20.131655922059444, - "c4": 18.266559757557495, - "c5": -26.495979286836715, - "c6": 14.521524525433712, - "c7": 16.459266394234753 + "points": { + "c1": 1.8604250641005393, + "c2": 4.6909722633811555, + "c3": 27.289689501345805, + "c4": -11.584621337073514, + "c5": 35.991469070635276, + "c6": -33.48636359649909, + "c7": -35.11187654469755 }, - "vertexSeeds": { - "c1": 8.655577205485159, - "c2": 8.64802301323872, - "c3": 8.625804960149578, - "c4": 8.562467718116658, - "c5": 8.560953315759862, - "c6": 8.682280356385453, - "c7": 8.69546300799184 + "offsets": { + "c1": 14.53074433656958, + "c2": 12.454923717059595, + "c3": 10.379103097549715, + "c4": 8.30328247803973, + "c5": 6.227461858529849, + "c6": 4.151641239019865, + "c7": 2.075820619509984 }, "rgb": [238, 201, 159] }, @@ -460977,23 +460977,23 @@ "year": 1837, "resistanceReported": false, "duration": 34473600, - "curveSeeds": { - "c1": 43.47303961042225, - "c2": 32.44807121578964, - "c3": 31.18174606640399, - "c4": -47.519090228034386, - "c5": -20.098736142905626, - "c6": 39.22204577147326, - "c7": 18.045971414624077 + "points": { + "c1": 36.01021476567047, + "c2": -27.828652734958254, + "c3": 48.69008768065456, + "c4": -44.96759602723768, + "c5": -17.18929398799974, + "c6": -25.892553686791132, + "c7": 8.076623796226961 }, - "vertexSeeds": { - "c1": 4.624732204829941, - "c2": 4.31623266297468, - "c3": 4.72591761462716, - "c4": 5.083935524660477, - "c5": 4.971142718750682, - "c6": 4.34880823332503, - "c7": 4.754436198170924 + "offsets": { + "c1": 8.705501618122979, + "c2": 7.4618585298196995, + "c3": 6.218215441516414, + "c4": 4.974572353213129, + "c5": 3.730929264909844, + "c6": 2.4872861766065646, + "c7": 1.2436430883032796 }, "rgb": [222, 0, 59] }, @@ -461004,23 +461004,23 @@ "year": 1837, "resistanceReported": false, "duration": 17107200, - "curveSeeds": { - "c1": -20.835917706911317, - "c2": 1.6606961481635487, - "c3": 28.435480045249882, - "c4": 21.34367765729432, - "c5": -24.867337142121638, - "c6": 11.61965525303205, - "c7": 8.165238413933174 + "points": { + "c1": -7.798817282980913, + "c2": -19.74487340869993, + "c3": -9.6697999997523, + "c4": 18.849015414735405, + "c5": -0.7196657383855012, + "c6": 23.073696535604654, + "c7": -11.574382218130019 }, - "vertexSeeds": { - "c1": 8.765983876258646, - "c2": 9.015628541745794, - "c3": 8.649058177069822, - "c4": 9.110769292014794, - "c5": 9.264016313141722, - "c6": 9.319549413688115, - "c7": 8.932928996592658 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -461031,23 +461031,23 @@ "year": 1837, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 4.278971710989282, - "c2": -19.20789697428597, - "c3": -9.71477838724243, - "c4": 20.145321295771843, - "c5": -22.060234742608387, - "c6": 3.4307749580686746, - "c7": -22.539064887147255 + "points": { + "c1": -0.7015740190094135, + "c2": 30.177894499444186, + "c3": -13.5002323447525, + "c4": 0.5429433001337358, + "c5": 4.047789410170111, + "c6": -10.025515087227422, + "c7": -17.013735393642516 }, - "vertexSeeds": { - "c1": 19.1272860977658, - "c2": 20.54146404766267, - "c3": 19.894919823139443, - "c4": 19.220965240071955, - "c5": 20.08442100949399, - "c6": 19.142964591448628, - "c7": 20.64798148165459 + "offsets": { + "c1": 34.85436893203884, + "c2": 29.875173370319036, + "c3": 24.89597780859916, + "c4": 19.916782246879357, + "c5": 14.937586685159518, + "c6": 9.958391123439679, + "c7": 4.979195561719839 }, "rgb": [222, 0, 59] }, @@ -461058,23 +461058,23 @@ "year": 1837, "resistanceReported": false, "duration": 18057600, - "curveSeeds": { - "c1": 18.836757212614575, - "c2": 10.136728451171148, - "c3": 20.897426430415432, - "c4": 19.078139998288624, - "c5": 28.212316224400848, - "c6": 0.6577604774475603, - "c7": 13.990375074647165 + "points": { + "c1": 4.117582198924094, + "c2": -26.19758478002793, + "c3": 21.06898653160179, + "c4": 27.291729306642917, + "c5": -4.476188000184482, + "c6": -10.336070849631469, + "c7": 19.34089560528496 }, - "vertexSeeds": { - "c1": 15.083905042774951, - "c2": 15.087334849255317, - "c3": 14.21738389419513, - "c4": 14.868833561618265, - "c5": 14.82105180614395, - "c6": 14.550793723267487, - "c7": 14.22383738278074 + "offsets": { + "c1": 25.37216828478964, + "c2": 21.74757281553398, + "c3": 18.122977346278326, + "c4": 14.498381877022668, + "c5": 10.87378640776701, + "c6": 7.2491909385113145, + "c7": 3.6245954692556572 }, "rgb": [222, 0, 59] }, @@ -461085,23 +461085,23 @@ "year": 1837, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -4.736307414899066, - "c2": 26.133808373876043, - "c3": 3.524730891418315, - "c4": 26.71365972901758, - "c5": -17.38226645101622, - "c6": -27.950376365890833, - "c7": 20.171402248324206 + "points": { + "c1": 28.546870622075623, + "c2": 8.507875916724082, + "c3": -23.295840461237283, + "c4": -11.887820822790626, + "c5": -16.169966139336694, + "c6": 10.739810091551554, + "c7": 0.594756958933111 }, - "vertexSeeds": { - "c1": 6.4969430984679954, - "c2": 6.597797059273325, - "c3": 6.28105637253001, - "c4": 6.162831601828018, - "c5": 6.186045296423641, - "c6": 6.498038387655209, - "c7": 6.252612808433867 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836343, + "c3": 7.951918631530273, + "c4": 6.3615349052242225, + "c5": 4.7711511789181715, + "c6": 3.1807674526121015, + "c7": 1.5903837263060507 }, "rgb": [77, 76, 132] }, @@ -461112,23 +461112,23 @@ "year": 1837, "resistanceReported": false, "duration": 19353600, - "curveSeeds": { - "c1": -8.914856184835571, - "c2": -11.895045252343266, - "c3": -13.430450765539245, - "c4": 10.223368596871449, - "c5": -20.153446428831472, - "c6": 21.958630142048403, - "c7": 23.20621932763431 + "points": { + "c1": -24.578747349138126, + "c2": 21.323238069647587, + "c3": 0.2834800768359713, + "c4": -28.39098904965554, + "c5": -18.785346922925466, + "c6": 13.750577110630815, + "c7": -9.062548462800443 }, - "vertexSeeds": { - "c1": 14.421944537619126, - "c2": 15.61812729700262, - "c3": 14.372595323816878, - "c4": 13.137053014395944, - "c5": 14.5150810925191, - "c6": 13.972042629516379, - "c7": 13.246316082968958 + "offsets": { + "c1": 26.278317152103558, + "c2": 22.52427184466018, + "c3": 18.770226537216832, + "c4": 15.016181229773455, + "c5": 11.262135922330101, + "c6": 7.5080906148867275, + "c7": 3.754045307443374 }, "rgb": [58, 15, 49] }, @@ -461139,23 +461139,23 @@ "year": 1837, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -2.4324557906485325, - "c2": 13.436350170648986, - "c3": 5.569871404490662, - "c4": 18.75211251333875, - "c5": 21.97762922580474, - "c6": 23.962344960446543, - "c7": 9.508064264201835 + "points": { + "c1": 19.0179420828401, + "c2": -20.31550076153355, + "c3": -23.654916461108428, + "c4": -27.10213249706036, + "c5": -28.085995741400186, + "c6": 10.419795832925914, + "c7": -34.37823075758595 }, - "vertexSeeds": { - "c1": 10.192871086902514, - "c2": 9.483646827995827, - "c3": 9.773398273965295, - "c4": 9.586529443014465, - "c5": 10.127268024421465, - "c6": 10.1922865415432, - "c7": 10.190159328226386 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.923717059639376, + "c3": 12.436430883032832, + "c4": 9.949144706426251, + "c5": 7.461858529819707, + "c6": 4.974572353213145, + "c7": 2.487286176606582 }, "rgb": [77, 76, 132] }, @@ -461166,23 +461166,23 @@ "year": 1837, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": 1.0003145532051505, - "c2": -3.8948816948431038, - "c3": 20.98164903881343, - "c4": 16.630967366260073, - "c5": 12.684170688818, - "c6": 34.407376341268176, - "c7": -34.43288524463693 + "points": { + "c1": 15.787882771538776, + "c2": -10.12808223232729, + "c3": -4.8980776344244745, + "c4": -4.618072951613769, + "c5": 1.8941765734691742, + "c6": 8.829378221948687, + "c7": 10.11368354194321 }, - "vertexSeeds": { - "c1": 10.03335564163087, - "c2": 9.978306633413148, - "c3": 9.96269716531985, - "c4": 9.514147944174704, - "c5": 9.99721801010799, - "c6": 9.495387504298938, - "c7": 9.185551790129248 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042995836, + "c3": 12.06657420249653, + "c4": 9.653259361997224, + "c5": 7.239944521497918, + "c6": 4.826629680998612, + "c7": 2.413314840499306 }, "rgb": [222, 0, 59] }, @@ -461193,23 +461193,23 @@ "year": 1837, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 22.354513500564387, - "c2": -10.302137813852958, - "c3": -2.106945336059354, - "c4": 11.54983568450978, - "c5": -27.54821395943955, - "c6": -6.2481684200905185, - "c7": 20.710207523128666 + "points": { + "c1": 5.0534929086947145, + "c2": 13.694228550505542, + "c3": 4.259792177200126, + "c4": -18.0186254697714, + "c5": -0.8043883697907646, + "c6": 32.509112568459614, + "c7": 1.9150835809993154 }, - "vertexSeeds": { - "c1": 6.136662414195958, - "c2": 6.32609187400864, - "c3": 5.964202094765384, - "c4": 6.290639935307355, - "c5": 6.5572763289944325, - "c6": 6.1248563210012215, - "c7": 6.559794619466085 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675452, + "c3": 7.859454461396214, + "c4": 6.2875635691169744, + "c5": 4.715672676837718, + "c6": 3.1437817845584783, + "c7": 1.5718908922792392 }, "rgb": [86, 146, 138] }, @@ -461220,23 +461220,23 @@ "year": 1837, "resistanceReported": false, "duration": 30758400, - "curveSeeds": { - "c1": 2.3702436297679554, - "c2": -18.944304977990043, - "c3": 30.743235715720026, - "c4": 31.20207873732719, - "c5": -36.53934740833009, - "c6": 15.573835649859404, - "c7": 33.655762618587865 + "points": { + "c1": 28.786514553994586, + "c2": -25.519511806012172, + "c3": -4.444950506784231, + "c4": 20.01829657647253, + "c5": 0.9763285343845851, + "c6": 6.918683576372736, + "c7": -28.19289779094058 }, - "vertexSeeds": { - "c1": 6.414201734830201, - "c2": 6.435887942923736, - "c3": 6.526499023272221, - "c4": 6.46850802492816, - "c5": 6.218245304176067, - "c6": 6.455912170031567, - "c7": 6.36052604661011 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957007, + "c3": 8.021266759130842, + "c4": 6.417013407304658, + "c5": 4.812760055478493, + "c6": 3.208506703652329, + "c7": 1.6042533518261646 }, "rgb": [58, 15, 49] }, @@ -461247,23 +461247,23 @@ "year": 1837, "resistanceReported": false, "duration": 19180800, - "curveSeeds": { - "c1": -14.351421040843064, - "c2": 22.798451366820874, - "c3": -3.791657439357671, - "c4": 1.6057581247138195, - "c5": 8.295141245043322, - "c6": 18.89881650563081, - "c7": 25.184984558347775 + "points": { + "c1": -26.81532942268008, + "c2": -30.89212105914249, + "c3": 11.521107003997962, + "c4": 3.2167538412948034, + "c5": -27.54971940557589, + "c6": 9.129670454946563, + "c7": 14.223245381362567 }, - "vertexSeeds": { - "c1": 5.7571359459053, - "c2": 5.943003980753952, - "c3": 6.006178231864583, - "c4": 5.7678079051051165, - "c5": 5.890162291242819, - "c6": 5.886683397010693, - "c7": 5.714085036751955 + "offsets": { + "c1": 10.194174757281553, + "c2": 8.73786407766989, + "c3": 7.281553398058256, + "c4": 5.825242718446595, + "c5": 4.368932038834959, + "c6": 2.9126213592232975, + "c7": 1.4563106796116616 }, "rgb": [238, 201, 159] }, @@ -461274,23 +461274,23 @@ "year": 1837, "resistanceReported": false, "duration": 19958400, - "curveSeeds": { - "c1": 7.680286085881107, - "c2": 31.265467649960584, - "c3": -10.0097854054282, - "c4": 13.64147141062358, - "c5": -23.994041412113276, - "c6": -23.818682082371502, - "c7": -24.067298483951713 + "points": { + "c1": -20.56314486221428, + "c2": -13.204964892869764, + "c3": -7.746091319646901, + "c4": 14.653178889975344, + "c5": 21.797038632511487, + "c6": 11.343793324841208, + "c7": -9.84067901462791 }, - "vertexSeeds": { - "c1": 9.00414151260005, - "c2": 8.879964610794065, - "c3": 9.347822770401326, - "c4": 9.056591249779203, - "c5": 9.251557835382831, - "c6": 9.304898975487102, - "c7": 9.451633230508456 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -461301,23 +461301,23 @@ "year": 1837, "resistanceReported": false, "duration": 14601600, - "curveSeeds": { - "c1": 22.24275669696872, - "c2": -9.203512605725276, - "c3": -12.762867448865611, - "c4": -23.09091086068678, - "c5": 5.417061216898379, - "c6": 18.129386446666892, - "c7": 24.765117635393736 + "points": { + "c1": 17.50800450479057, + "c2": 6.443009645901263, + "c3": 17.276817635258986, + "c4": 23.701002193405976, + "c5": -26.0785510965524, + "c6": 12.241099144403663, + "c7": -13.048493903523728 }, - "vertexSeeds": { - "c1": 5.525523385099492, - "c2": 5.8255361119647056, - "c3": 5.46645240363727, - "c4": 5.587341640726168, - "c5": 5.925249264913257, - "c6": 5.905195983876737, - "c7": 5.6025144607435164 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -461328,23 +461328,23 @@ "year": 1837, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 22.441707148746776, - "c2": 19.253548691217578, - "c3": -23.5254937345878, - "c4": 16.766592549478293, - "c5": -11.54367884631141, - "c6": -0.21479513021888508, - "c7": -17.39686694810212 + "points": { + "c1": 26.45620428229211, + "c2": -11.498722129531238, + "c3": 24.918864306466556, + "c4": 11.721753801944455, + "c5": -26.769453488234095, + "c6": 4.881356632391107, + "c7": -24.068417080907007 }, - "vertexSeeds": { - "c1": 6.660135082265038, - "c2": 7.084537435104439, - "c3": 6.76964802471284, - "c4": 6.805482663054759, - "c5": 7.00475969017776, - "c6": 6.55961934582313, - "c7": 6.634552965391775 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962551, + "c3": 8.599167822468793, + "c4": 6.879334257975034, + "c5": 5.1595006934812755, + "c6": 3.439667128987517, + "c7": 1.7198335644937586 }, "rgb": [222, 0, 59] }, @@ -461355,23 +461355,23 @@ "year": 1837, "resistanceReported": true, "duration": 7171200, - "curveSeeds": { - "c1": 9.936819405202385, - "c2": -0.8003822341501277, - "c3": -4.095285355907395, - "c4": 17.543670287974912, - "c5": 7.513521572369257, - "c6": 11.889517837626425, - "c7": -14.235281026944108 + "points": { + "c1": 15.654884167641399, + "c2": -3.923285570227115, + "c3": -8.259006093275623, + "c4": 0.18223610121488676, + "c5": 13.76443571830778, + "c6": -3.2811352568518117, + "c7": -11.167313161664383 }, - "vertexSeeds": { - "c1": 6.8081648608602165, - "c2": 6.495282340677034, - "c3": 6.566398585897238, - "c4": 6.142084824891651, - "c5": 5.80179335868988, - "c6": 5.295220298566813, - "c7": 5.805966635881712 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158117, + "c3": 8.13684697179843, + "c4": 6.509477577438744, + "c5": 4.882108183079059, + "c6": 3.254738788719374, + "c7": 1.6273693943596885 }, "rgb": [58, 15, 49] }, @@ -461382,23 +461382,23 @@ "year": 1837, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 24.270547614958733, - "c2": -12.763872130092786, - "c3": -27.042958679368017, - "c4": -27.054978655585252, - "c5": -26.53630874565863, - "c6": 24.586143481548067, - "c7": -1.6786574543940382 + "points": { + "c1": -7.881023474642856, + "c2": 10.192367041187797, + "c3": 0.5276526740435656, + "c4": -22.36912543394979, + "c5": 10.879954994848365, + "c6": 9.014520043991485, + "c7": -11.447079510341599 }, - "vertexSeeds": { - "c1": 5.765659380181482, - "c2": 5.78644982185575, - "c3": 6.241307823759837, - "c4": 6.164220710667669, - "c5": 5.675484912660199, - "c6": 5.9030243719704805, - "c7": 5.560971905071783 + "offsets": { + "c1": 10.485436893203884, + "c2": 8.987517337031896, + "c3": 7.489597780859909, + "c4": 5.991678224687936, + "c5": 4.493758668515948, + "c6": 2.995839112343961, + "c7": 1.4979195561719874 }, "rgb": [58, 15, 49] }, @@ -461409,23 +461409,23 @@ "year": 1837, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": -9.373079921671222, - "c2": 7.9264658234273675, - "c3": -16.0577523297388, - "c4": -5.849806565544203, - "c5": 11.991682761582275, - "c6": 11.496363920414126, - "c7": 13.594121888626738 + "points": { + "c1": -11.89132232170917, + "c2": -20.85569946490828, + "c3": 8.356462979712994, + "c4": -3.854856901832605, + "c5": -25.26520296419771, + "c6": -17.60940849572843, + "c7": -6.1492488298749315 }, - "vertexSeeds": { - "c1": 6.6487335248724095, - "c2": 6.8200592358048695, - "c3": 6.707345289398496, - "c4": 7.190714465780895, - "c5": 7.156828929511758, - "c6": 7.140031749620777, - "c7": 6.619702071705984 + "offsets": { + "c1": 12.03883495145631, + "c2": 10.319001386962551, + "c3": 8.599167822468793, + "c4": 6.879334257975034, + "c5": 5.1595006934812755, + "c6": 3.439667128987517, + "c7": 1.7198335644937586 }, "rgb": [238, 201, 159] }, @@ -461436,23 +461436,23 @@ "year": 1837, "resistanceReported": false, "duration": 21600000, - "curveSeeds": { - "c1": 7.640157384000716, - "c2": -0.8042039652532367, - "c3": 13.970593853428682, - "c4": -16.983358709409877, - "c5": -15.585750214472874, - "c6": -29.378622686051813, - "c7": 26.08506347781063 + "points": { + "c1": -0.7252858262902748, + "c2": -21.295916009379216, + "c3": -10.995211653901602, + "c4": 33.931270569764685, + "c5": -30.464382671874088, + "c6": -30.788016420127583, + "c7": 17.942135208221963 }, - "vertexSeeds": { - "c1": 5.438647897548318, - "c2": 5.411822927626538, - "c3": 5.337389483840743, - "c4": 5.337401795702475, - "c5": 5.469318725169212, - "c6": 5.275187205579111, - "c7": 5.2893926209938185 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [222, 0, 59] }, @@ -461463,23 +461463,23 @@ "year": 1837, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -4.150776192056695, - "c2": -13.432625294432238, - "c3": -2.5667800101889533, - "c4": 9.933609344719951, - "c5": -17.38163398417066, - "c6": 16.654514612956028, - "c7": 16.43807453878844 + "points": { + "c1": 4.192106660808257, + "c2": -17.77984545202535, + "c3": 2.5552281387865143, + "c4": -1.0199711644508547, + "c5": -13.735594907397445, + "c6": -7.084491580954726, + "c7": 20.407835079167867 }, - "vertexSeeds": { - "c1": 9.48018077350387, - "c2": 8.79738427763699, - "c3": 9.12737737254404, - "c4": 9.144035475713782, - "c5": 8.838332808129081, - "c6": 8.982116648513063, - "c7": 9.141318460751675 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668522, + "c3": 11.303744798890442, + "c4": 9.042995839112342, + "c5": 6.782246879334261, + "c6": 4.521497919556181, + "c7": 2.2607489597781 }, "rgb": [222, 0, 59] }, @@ -461490,23 +461490,23 @@ "year": 1837, "resistanceReported": false, "duration": 7689600, - "curveSeeds": { - "c1": -17.840471972500914, - "c2": -3.1218535753039163, - "c3": -13.28671386795246, - "c4": -13.016583412873139, - "c5": 14.05755328432176, - "c6": 0.7777640160755119, - "c7": -12.457747149174303 + "points": { + "c1": 18.15770048043947, + "c2": -12.86585253050615, + "c3": -14.654326551148467, + "c4": 6.582872474680968, + "c5": -20.103891523800687, + "c6": 18.81385406590198, + "c7": -9.15802114422638 }, - "vertexSeeds": { - "c1": 8.339881961946876, - "c2": 8.625907846176014, - "c3": 8.899074154331949, - "c4": 8.400579180782024, - "c5": 8.554192329475546, - "c6": 8.77791871282826, - "c7": 8.29673326301624 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703183, + "c3": 10.748959778085993, + "c4": 8.599167822468788, + "c5": 6.4493758668516, + "c6": 4.299583911234394, + "c7": 2.1497919556172063 }, "rgb": [58, 15, 49] }, @@ -461517,23 +461517,23 @@ "year": 1838, "resistanceReported": false, "duration": 31017600, - "curveSeeds": { - "c1": -14.889981897450408, - "c2": -2.477842748120487, - "c3": 38.779173766688736, - "c4": 8.841745814248235, - "c5": 6.46906432613622, - "c6": 8.281914334412036, - "c7": -9.010296266322456 + "points": { + "c1": 13.45298428162382, + "c2": 3.9700046268164684, + "c3": -14.63264404674587, + "c4": -3.792931594866374, + "c5": -38.05344722697137, + "c6": 18.679931720634393, + "c7": 17.312808667271597 }, - "vertexSeeds": { - "c1": 7.641805788021308, - "c2": 7.651947879485546, - "c3": 7.970993356992148, - "c4": 7.589449062429557, - "c5": 7.7871809841820445, - "c6": 7.289487279552127, - "c7": 7.8573345391142695 + "offsets": { + "c1": 13.527508090614887, + "c2": 11.595006934812766, + "c3": 9.662505779010642, + "c4": 7.730004623208505, + "c5": 5.797503467406383, + "c6": 3.8650023116042607, + "c7": 1.9325011558021217 }, "rgb": [86, 146, 138] }, @@ -461544,23 +461544,23 @@ "year": 1837, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": -14.571299036442015, - "c2": -14.08659670505068, - "c3": -15.148265397463037, - "c4": 23.180282688602766, - "c5": 28.138644392950816, - "c6": -16.716119618103768, - "c7": -3.5829344742055476 + "points": { + "c1": 19.941613099623915, + "c2": 12.024614068084816, + "c3": 3.8021855242103584, + "c4": 24.775495264753047, + "c5": -23.75642753084528, + "c6": 11.913216708916025, + "c7": -11.85250807878344 }, - "vertexSeeds": { - "c1": 8.286669417196146, - "c2": 8.293521789823268, - "c3": 8.388452038960038, - "c4": 8.409748664036462, - "c5": 8.535299884137757, - "c6": 8.863000577569203, - "c7": 8.395011837187347 + "offsets": { + "c1": 14.951456310679612, + "c2": 12.815533980582515, + "c3": 10.679611650485441, + "c4": 8.543689320388344, + "c5": 6.407766990291268, + "c6": 4.271844660194172, + "c7": 2.135922330097076 }, "rgb": [86, 146, 138] }, @@ -461571,23 +461571,23 @@ "year": 1837, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": -2.256661800768107, - "c2": 35.42114693384031, - "c3": -7.521767002229094, - "c4": 12.306427072061979, - "c5": 10.805653233899115, - "c6": -18.779456468606814, - "c7": -8.608774166943391 + "points": { + "c1": 12.171513405129389, + "c2": 17.254053080393085, + "c3": -12.28164641283999, + "c4": -19.33209426520088, + "c5": -1.7941511580049863, + "c6": 17.25626593635684, + "c7": 0.9401599133145666 }, - "vertexSeeds": { - "c1": 2.462689794308419, - "c2": 2.589756270350351, - "c3": 2.3631462242478727, - "c4": 2.649199541981657, - "c5": 2.5943859558660143, - "c6": 2.6257495041469725, - "c7": 2.323542484497682 + "offsets": { + "c1": 4.466019417475728, + "c2": 3.8280166435506233, + "c3": 3.1900138696255187, + "c4": 2.5520110957004194, + "c5": 1.9140083217753117, + "c6": 1.2760055478502097, + "c7": 0.6380027739251048 }, "rgb": [86, 146, 138] }, @@ -461598,23 +461598,23 @@ "year": 1837, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -22.64325521522074, - "c2": 13.235472912188182, - "c3": -0.0013088569996000388, - "c4": -9.103291084070289, - "c5": -5.9089751480171095, - "c6": -4.578023277451422, - "c7": 6.99150909666707 + "points": { + "c1": -1.5538728909446178, + "c2": 10.497193516886156, + "c3": 1.8102211032762483, + "c4": -4.945946010711896, + "c5": 1.1290474145782383, + "c6": 7.7872776806034665, + "c7": 1.0871151084461204 }, - "vertexSeeds": { - "c1": 9.037346028541114, - "c2": 9.051482185423879, - "c3": 8.932069834016852, - "c4": 9.007682272543232, - "c5": 8.904774469883785, - "c6": 9.000226261501009, - "c7": 9.091966730844545 + "offsets": { + "c1": 15.275080906148867, + "c2": 13.092926490984725, + "c3": 10.910772075820624, + "c4": 8.728617660656484, + "c5": 6.546463245492383, + "c6": 4.364308830328242, + "c7": 2.1821544151641405 }, "rgb": [238, 201, 159] }, @@ -461625,23 +461625,23 @@ "year": 1837, "resistanceReported": false, "duration": 27302400, - "curveSeeds": { - "c1": -17.339858492953464, - "c2": -21.84383161164651, - "c3": 26.314733128647433, - "c4": 37.43549891213107, - "c5": -7.604276747319453, - "c6": 16.89183627426936, - "c7": -23.45156220360036 + "points": { + "c1": 31.521826751590964, + "c2": 26.4133363143321, + "c3": 34.86165104011107, + "c4": 3.885861002581727, + "c5": -3.6226701604959644, + "c6": 26.580213686053085, + "c7": 29.138643714667054 }, - "vertexSeeds": { - "c1": 10.436633669785213, - "c2": 11.569246399306543, - "c3": 10.436962733556062, - "c4": 12.283498602963462, - "c5": 13.539113686941949, - "c6": 12.767354732974182, - "c7": 12.867995526524133 + "offsets": { + "c1": 22.653721682847898, + "c2": 19.41747572815534, + "c3": 16.18122977346279, + "c4": 12.944983818770229, + "c5": 9.70873786407767, + "c6": 6.472491909385108, + "c7": 3.2362459546925604 }, "rgb": [77, 76, 132] }, @@ -461652,23 +461652,23 @@ "year": 1838, "resistanceReported": false, "duration": 27820800, - "curveSeeds": { - "c1": 16.96830367286674, - "c2": -20.988037780532423, - "c3": -14.240705355293404, - "c4": 15.998491165837628, - "c5": -21.802958610320616, - "c6": -24.14902102676517, - "c7": 28.648597012971805 + "points": { + "c1": -29.341900910011315, + "c2": -27.86406254226689, + "c3": -22.055256526531306, + "c4": -31.92472473808511, + "c5": -12.367509431245757, + "c6": 36.93717052390488, + "c7": -36.18778137354551 }, - "vertexSeeds": { - "c1": 8.92775166329257, - "c2": 8.332605720474259, - "c3": 8.713118176610566, - "c4": 8.269209967495861, - "c5": 8.881131844138084, - "c6": 8.48952859491599, - "c7": 8.940495721014523 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.87101248266297, + "c3": 10.725843735552479, + "c4": 8.580674988441986, + "c5": 6.435506241331495, + "c6": 4.290337494220984, + "c7": 2.145168747110511 }, "rgb": [222, 0, 59] }, @@ -461679,23 +461679,23 @@ "year": 1837, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -27.657014717837406, - "c2": 34.30195094910444, - "c3": 15.603631958235638, - "c4": 26.18364203498902, - "c5": 30.332511585358233, - "c6": 27.76710896753167, - "c7": -37.46059979389371 + "points": { + "c1": -38.16831763418054, + "c2": 27.5848077987297, + "c3": 26.081489289853124, + "c4": 30.204940704796954, + "c5": -22.70095739504076, + "c6": 27.927374082191193, + "c7": 35.9602582000157 }, - "vertexSeeds": { - "c1": 5.549715879202929, - "c2": 5.726562274367408, - "c3": 5.436944372820969, - "c4": 5.684117039986589, - "c5": 5.8059611955651835, - "c6": 5.626735141589396, - "c7": 5.656616266977886 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -461706,23 +461706,23 @@ "year": 1837, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": 29.52167458824438, - "c2": -0.6643513533815906, - "c3": -7.721256717806909, - "c4": -14.405408808112377, - "c5": 24.355599835524366, - "c6": 21.207259164330416, - "c7": 8.96097988564862 + "points": { + "c1": -28.890653729297988, + "c2": 24.097234605402342, + "c3": -16.92801394267237, + "c4": -7.716464677799845, + "c5": -6.6143743707438, + "c6": 22.852637493170732, + "c7": 20.615049038686344 }, - "vertexSeeds": { - "c1": 10.174458780111594, - "c2": 10.101293432597492, - "c3": 10.248139065261732, - "c4": 9.68557068226401, - "c5": 9.357802107687812, - "c6": 9.881972615901406, - "c7": 9.985260052363504 + "offsets": { + "c1": 17.119741100323623, + "c2": 14.674063800277402, + "c3": 12.228386500231142, + "c4": 9.782709200184922, + "c5": 7.337031900138701, + "c6": 4.891354600092461, + "c7": 2.4456773000462206 }, "rgb": [77, 76, 132] }, @@ -461733,23 +461733,23 @@ "year": 1837, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": 0.31428625180071634, - "c2": 4.112556127251235, - "c3": -29.298498881308916, - "c4": 22.523564689521248, - "c5": -11.117394951502927, - "c6": -28.228809589228902, - "c7": 24.50648872890594 + "points": { + "c1": -20.399210803581045, + "c2": -10.547592629180404, + "c3": 7.951811463577563, + "c4": 30.023090016042026, + "c5": 19.277677236250085, + "c6": -9.080960129196814, + "c7": -7.2489921493411416 }, - "vertexSeeds": { - "c1": 1.5682314877415287, - "c2": 1.5719965490489696, - "c3": 1.6062239944180692, - "c4": 1.6143572662801045, - "c5": 1.5778093083576556, - "c6": 1.524290395170864, - "c7": 1.5281806160545413 + "offsets": { + "c1": 2.750809061488673, + "c2": 2.3578363384188608, + "c3": 1.964863615349055, + "c4": 1.5718908922792425, + "c5": 1.1789181692094304, + "c6": 0.7859454461396247, + "c7": 0.39297272306981235 }, "rgb": [222, 0, 59] }, @@ -461760,23 +461760,23 @@ "year": 1837, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": 10.816227331713847, - "c2": 31.360202664749693, - "c3": 20.715464672975813, - "c4": -18.7425732517209, - "c5": 16.976685542706434, - "c6": -3.344912045150231, - "c7": 8.410580671443533 + "points": { + "c1": 16.478853577673526, + "c2": 19.656334369585913, + "c3": 9.603999916563744, + "c4": -4.066459964723315, + "c5": 16.689141428253237, + "c6": -19.130806549316507, + "c7": 22.399042296108547 }, - "vertexSeeds": { - "c1": 6.156394238084123, - "c2": 6.520424549738043, - "c3": 6.085893177994635, - "c4": 6.417433899557816, - "c5": 6.244731126458433, - "c6": 6.1577666927152785, - "c7": 6.26360031570973 + "offsets": { + "c1": 11.294498381877023, + "c2": 9.680998613037444, + "c3": 8.067498844197882, + "c4": 6.453999075358301, + "c5": 4.840499306518722, + "c6": 3.22699953767916, + "c7": 1.61349976883958 }, "rgb": [77, 76, 132] }, @@ -461787,23 +461787,23 @@ "year": 1837, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 2.43699463061332, - "c2": -18.323340430030743, - "c3": 9.327881188935919, - "c4": 10.080150548795011, - "c5": 10.730287401570472, - "c6": 16.03485218172895, - "c7": -24.019269807472984 + "points": { + "c1": 22.942773552282162, + "c2": -23.774273046562186, + "c3": 0.573765946842574, + "c4": -8.646647211947567, + "c5": 4.197828842033584, + "c6": -18.68451989873038, + "c7": -3.004263771856955 }, - "vertexSeeds": { - "c1": 6.92363673004988, - "c2": 7.425739557972557, - "c3": 7.494924310213578, - "c4": 7.35797623812802, - "c5": 7.157499805645453, - "c6": 7.44436827171445, - "c7": 7.255057563624645 + "offsets": { + "c1": 12.750809061488674, + "c2": 10.929264909847436, + "c3": 9.107720758206202, + "c4": 7.286176606564945, + "c5": 5.464632454923709, + "c6": 3.6430883032824726, + "c7": 1.8215441516412363 }, "rgb": [58, 15, 49] }, @@ -461814,23 +461814,23 @@ "year": 1837, "resistanceReported": false, "duration": 21945600, - "curveSeeds": { - "c1": -25.514622167351476, - "c2": -5.206246375451741, - "c3": 10.530431555207059, - "c4": 0.5609071888147881, - "c5": 23.563547657689263, - "c6": 1.2244139674607055, - "c7": 21.82010448186675 + "points": { + "c1": 28.16887519636188, + "c2": -7.609129828236359, + "c3": -25.301613712385624, + "c4": -6.768674515644083, + "c5": -12.615746590853135, + "c6": -2.0410849954005457, + "c7": 26.667710699303214 }, - "vertexSeeds": { - "c1": 5.537376783022039, - "c2": 5.460275267523614, - "c3": 5.573118825032724, - "c4": 5.435017037786217, - "c5": 5.7489845776550705, - "c6": 5.787891974501761, - "c7": 5.762836229248341 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -461841,23 +461841,23 @@ "year": 1837, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": 13.394262813764854, - "c2": -19.33206158919524, - "c3": 19.73590289540332, - "c4": 11.570303592162226, - "c5": 19.007814767104357, - "c6": -10.412462843077254, - "c7": -24.938665069952016 + "points": { + "c1": 0.0424068682344938, + "c2": 14.961271881005025, + "c3": -10.160685908550711, + "c4": 10.305928913692291, + "c5": -2.68574454605362, + "c6": -7.501844009875551, + "c7": -29.31643055024263 }, - "vertexSeeds": { - "c1": 5.888502770640765, - "c2": 5.9121244944787, - "c3": 6.155357414522586, - "c4": 6.0544098321056605, - "c5": 6.184040349903815, - "c6": 6.490454311289714, - "c7": 5.961843694118195 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.32038834951457, + "c3": 7.766990291262128, + "c4": 6.213592233009706, + "c5": 4.660194174757285, + "c6": 3.1067961165048628, + "c7": 1.5533980582524218 }, "rgb": [238, 201, 159] }, @@ -461868,23 +461868,23 @@ "year": 1837, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": 11.240873876101148, - "c2": 6.559759213925844, - "c3": -15.210239005197135, - "c4": -17.591648299236525, - "c5": 2.271039688396751, - "c6": -24.435825746098534, - "c7": -16.822999817150876 + "points": { + "c1": 27.85415922757231, + "c2": -23.229994863071674, + "c3": 25.985860520556187, + "c4": -15.447088483582199, + "c5": -19.51310528003006, + "c6": -26.20575689534339, + "c7": 9.999186799656975 }, - "vertexSeeds": { - "c1": 5.524099729243794, - "c2": 5.611635200341624, - "c3": 5.412524201950444, - "c4": 5.881311338066509, - "c5": 5.916780523632362, - "c6": 5.7574771621016545, - "c7": 5.69870440785525 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -461895,23 +461895,23 @@ "year": 1837, "resistanceReported": false, "duration": 22291200, - "curveSeeds": { - "c1": 9.480066511141594, - "c2": 11.896091041033145, - "c3": -33.102566497852266, - "c4": -20.8465351579067, - "c5": -13.30251746260953, - "c6": -6.977124040488437, - "c7": 26.285274356925107 + "points": { + "c1": -3.577720567825523, + "c2": -14.570120834726389, + "c3": 1.800311515608307, + "c4": 11.490804771618684, + "c5": -23.060064006943804, + "c6": -11.337566090884238, + "c7": 4.105928924401525 }, - "vertexSeeds": { - "c1": 5.7245462515068075, - "c2": 5.915934614936734, - "c3": 5.771058939798193, - "c4": 5.8332292489730735, - "c5": 5.677352160624632, - "c6": 6.023263688295308, - "c7": 5.820531502025012 + "offsets": { + "c1": 10.129449838187703, + "c2": 8.682385575589464, + "c3": 7.235321312991224, + "c4": 5.78825705039296, + "c5": 4.341192787794719, + "c6": 2.89412852519648, + "c7": 1.44706426259824 }, "rgb": [222, 0, 59] }, @@ -461922,23 +461922,23 @@ "year": 1837, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": 1.4071536372594942, - "c2": -17.360195984522463, - "c3": 11.758935849499352, - "c4": 7.167855883917092, - "c5": -4.297231713849261, - "c6": -7.756114364561652, - "c7": 12.086577958308045 + "points": { + "c1": -17.290734263352576, + "c2": -8.11186890031471, + "c3": -3.278184046810324, + "c4": 11.577659909600662, + "c5": 14.466623244194572, + "c6": 5.317631935891274, + "c7": -20.46807156251388 }, - "vertexSeeds": { - "c1": 3.795362594397768, - "c2": 3.8006653613098504, - "c3": 3.7262489797579486, - "c4": 3.799787624052611, - "c5": 3.717630678573881, - "c6": 3.782157706444441, - "c7": 3.774257556088654 + "offsets": { + "c1": 6.375404530744337, + "c2": 5.4646324549237075, + "c3": 4.553860379103114, + "c4": 3.6430883032824837, + "c5": 2.7323162274618538, + "c6": 1.8215441516412234, + "c7": 0.9107720758206299 }, "rgb": [77, 76, 132] }, @@ -461949,23 +461949,23 @@ "year": 1837, "resistanceReported": false, "duration": 15811200, - "curveSeeds": { - "c1": 0.20855860908681478, - "c2": 5.343319449397377, - "c3": 2.3355535839472132, - "c4": 11.248825882890536, - "c5": -25.237459116980062, - "c6": -26.319033793178626, - "c7": -25.02327277893068 + "points": { + "c1": 1.0562105733358749, + "c2": -25.138532226366095, + "c3": -23.994833990123716, + "c4": 27.036430107036914, + "c5": -17.85611900014181, + "c6": -27.760215317893945, + "c7": -27.87188014676882 }, - "vertexSeeds": { - "c1": 5.406996549418073, - "c2": 5.479015463276608, - "c3": 5.477859952804207, - "c4": 5.935973185319543, - "c5": 5.940781165068202, - "c6": 5.696536319774327, - "c7": 5.484319718137363 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -461976,23 +461976,23 @@ "year": 1837, "resistanceReported": false, "duration": 20822400, - "curveSeeds": { - "c1": -15.213992950593777, - "c2": -3.8231208287664984, - "c3": 3.7500343787654487, - "c4": -19.64085812932289, - "c5": -31.48199095105834, - "c6": -27.52900443334981, - "c7": 26.75233784170343 + "points": { + "c1": 17.118346360181263, + "c2": 8.707576604974477, + "c3": -24.87778734022362, + "c4": 26.38341732864668, + "c5": 28.62073848404932, + "c6": -19.124381262658723, + "c7": 8.469217628666293 }, - "vertexSeeds": { - "c1": 18.883635504031762, - "c2": 20.076795395493747, - "c3": 19.27427212853124, - "c4": 18.875563038213492, - "c5": 20.351728224157803, - "c6": 20.28546365254395, - "c7": 18.865823462265144 + "offsets": { + "c1": 33.980582524271846, + "c2": 29.126213592233032, + "c3": 24.27184466019418, + "c4": 19.417475728155328, + "c5": 14.563106796116516, + "c6": 9.708737864077664, + "c7": 4.8543689320388514 }, "rgb": [58, 15, 49] }, @@ -462003,23 +462003,23 @@ "year": 1837, "resistanceReported": false, "duration": 21340800, - "curveSeeds": { - "c1": -28.366806681936886, - "c2": 27.86532359163818, - "c3": 19.78183194006131, - "c4": -26.157678802882593, - "c5": -27.174338595490365, - "c6": -32.33916189880113, - "c7": -16.25134954489174 + "points": { + "c1": -32.39511036566978, + "c2": 7.231263235486679, + "c3": 28.040295487577282, + "c4": -18.65198936849095, + "c5": -4.82853204718926, + "c6": 5.126496766662548, + "c7": 14.106399414267138 }, - "vertexSeeds": { - "c1": 11.724852177471847, - "c2": 12.279527898278468, - "c3": 12.111384876546202, - "c4": 12.533079901324124, - "c5": 12.326720015548883, - "c6": 11.848530580508024, - "c7": 11.434148553900073 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.03051317614426, + "c3": 15.025427646786863, + "c4": 12.020342117429506, + "c5": 9.015256588072111, + "c6": 6.010171058714753, + "c7": 3.0050855293573964 }, "rgb": [58, 15, 49] }, @@ -462030,23 +462030,23 @@ "year": 1837, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -12.363552960129294, - "c2": 31.560946676236163, - "c3": 22.496090866866965, - "c4": -5.6542526860608895, - "c5": -20.757816876041193, - "c6": 22.454567806953, - "c7": 13.23146000952945 + "points": { + "c1": -22.496794626024215, + "c2": 7.414594880403641, + "c3": 20.329042218411466, + "c4": 14.048586283920095, + "c5": -8.350653738351344, + "c6": -20.46899720825722, + "c7": 25.03810373579551 }, - "vertexSeeds": { - "c1": 3.188969141346183, - "c2": 3.5216584778194706, - "c3": 3.5309652590965337, - "c4": 3.263354124120232, - "c5": 3.0970079740084775, - "c6": 3.27447259084627, - "c7": 3.5870039010640977 + "offsets": { + "c1": 6.019417475728155, + "c2": 5.159500693481277, + "c3": 4.299583911234399, + "c4": 3.4396671289875136, + "c5": 2.579750346740635, + "c6": 1.7198335644937568, + "c7": 0.8599167822468784 }, "rgb": [77, 76, 132] }, @@ -462057,23 +462057,23 @@ "year": 1838, "resistanceReported": false, "duration": 28512000, - "curveSeeds": { - "c1": -27.948005071084847, - "c2": 38.68160784526042, - "c3": 29.146149460811053, - "c4": -38.62083753062204, - "c5": 30.83270233555593, - "c6": 6.8319865419085914, - "c7": -7.237337646956661 + "points": { + "c1": -32.89447807464976, + "c2": 36.72086085556473, + "c3": -24.546300006581152, + "c4": 0.5517230664505206, + "c5": -4.038274361275612, + "c6": 8.048622386589173, + "c7": -7.872861107935755 }, - "vertexSeeds": { - "c1": 5.897108609617414, - "c2": 5.480037865961467, - "c3": 5.90833449703667, - "c4": 5.615046648881532, - "c5": 5.716864234647935, - "c6": 5.485996544300159, - "c7": 5.805238528080358 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -462084,23 +462084,23 @@ "year": 1837, "resistanceReported": false, "duration": 20476800, - "curveSeeds": { - "c1": -26.410026356588574, - "c2": -26.74834315933116, - "c3": -15.874112116667405, - "c4": 21.80521499856082, - "c5": 30.284610421604576, - "c6": -9.381742285939062, - "c7": 3.5943746426049543 + "points": { + "c1": 21.885857067319066, + "c2": 29.49209294355726, + "c3": 16.063811585255948, + "c4": 1.3815308609080503, + "c5": -7.881172926059492, + "c6": 12.342396463071218, + "c7": 28.127520437909133 }, - "vertexSeeds": { - "c1": 6.056872800408135, - "c2": 5.837288636370966, - "c3": 5.7608537895398015, - "c4": 5.863082923168934, - "c5": 5.966567017998918, - "c6": 6.045709820430993, - "c7": 5.9212630660310515 + "offsets": { + "c1": 10.22653721682848, + "c2": 8.765603328710135, + "c3": 7.304669440591773, + "c4": 5.843735552473412, + "c5": 4.382801664355068, + "c6": 2.9218677762367236, + "c7": 1.4609338881183618 }, "rgb": [222, 0, 59] }, @@ -462111,23 +462111,23 @@ "year": 1837, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -13.188629679788802, - "c2": -10.740298253081711, - "c3": -3.1272701678554284, - "c4": -1.1781061150296672, - "c5": -8.005369194225771, - "c6": -25.222927210520616, - "c7": -5.867423337093186 + "points": { + "c1": -11.953916306473257, + "c2": -7.690663769510696, + "c3": 8.454073813347307, + "c4": 2.1633437970868066, + "c5": 27.36789270258661, + "c6": 16.39408388541805, + "c7": -13.660612821098054 }, - "vertexSeeds": { - "c1": 3.3137266335871742, - "c2": 3.4446042939330503, - "c3": 3.0282020914021466, - "c4": 2.902787613796619, - "c5": 2.763218796678741, - "c6": 3.1920812424451146, - "c7": 3.4760279784421195 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601943, + "c3": 4.368932038834954, + "c4": 3.49514563106796, + "c5": 2.6213592233009715, + "c6": 1.7475728155339822, + "c7": 0.8737864077669929 }, "rgb": [222, 0, 59] }, @@ -462138,23 +462138,23 @@ "year": 1838, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 2.6630661000830855, - "c2": 28.874576810309875, - "c3": -28.031796827328435, - "c4": -12.544263448766408, - "c5": -21.684399840913336, - "c6": -14.391034940160754, - "c7": 22.136390584483735 + "points": { + "c1": 25.519907322006198, + "c2": 6.07069451177604, + "c3": 4.602546575419993, + "c4": 24.693724799411186, + "c5": -24.423239193895526, + "c6": -31.892486058302552, + "c7": 29.195992691561557 }, - "vertexSeeds": { - "c1": 4.294041450777202, - "c2": 4.294041450777202, - "c3": 4.294041450777202, - "c4": 4.294041450777202, - "c5": 4.294041450777202, - "c6": 4.294041450777202, - "c7": 4.294041450777202 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -462165,23 +462165,23 @@ "year": 1839, "resistanceReported": false, "duration": 51494400, - "curveSeeds": { - "c1": 30.40305784588479, - "c2": 47.43419183759613, - "c3": -64.61317209261911, - "c4": -40.96539188905341, - "c5": 28.11484975751435, - "c6": 16.194441909817044, - "c7": -1.7778323567538479 + "points": { + "c1": -0.049616584172596845, + "c2": 1.1067296616022446, + "c3": -20.50511995540942, + "c4": -16.885260757582515, + "c5": 23.406707087385968, + "c6": -56.36897302362957, + "c7": -63.25249899271065 }, - "vertexSeeds": { - "c1": 3.244818652849741, - "c2": 3.244818652849741, - "c3": 3.244818652849741, - "c4": 3.244818652849741, - "c5": 3.244818652849741, - "c6": 3.244818652849741, - "c7": 3.244818652849741 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [77, 76, 132] }, @@ -462192,23 +462192,23 @@ "year": 1837, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": -20.098011953696734, - "c2": 0.972298507156033, - "c3": 14.95705241207159, - "c4": 15.743205586713152, - "c5": -7.226194248051941, - "c6": 1.2866698907398266, - "c7": 4.382209174264126 + "points": { + "c1": -4.195598810926427, + "c2": 19.22075691902632, + "c3": 8.648547771158128, + "c4": 2.952935996420141, + "c5": 3.481321167249426, + "c6": -0.6488662195264574, + "c7": -20.93479171809978 }, - "vertexSeeds": { - "c1": 5.918675744341997, - "c2": 5.844171160951399, - "c3": 6.1348511022454755, - "c4": 6.374563884664283, - "c5": 5.891302942234971, - "c6": 5.9375143712335365, - "c7": 6.012040497158684 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661575, + "c4": 6.158113730929257, + "c5": 4.618585298196956, + "c6": 3.0790568654646377, + "c7": 1.5395284327323189 }, "rgb": [86, 146, 138] }, @@ -462219,23 +462219,23 @@ "year": 1837, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 9.105931667746233, - "c2": -3.0414748789986703, - "c3": -14.492714311058863, - "c4": -11.877934813430281, - "c5": 1.215518956006214, - "c6": 13.718442797552058, - "c7": 5.686230842264312 + "points": { + "c1": -4.173011620352831, + "c2": -5.521937049169299, + "c3": 13.762676329498113, + "c4": -13.010237309433085, + "c5": 16.64603016733544, + "c6": -1.0421949342873518, + "c7": -14.07766575497491 }, - "vertexSeeds": { - "c1": 6.238078411994868, - "c2": 6.151070948224109, - "c3": 6.5393610744208726, - "c4": 6.665095372292342, - "c5": 6.3492223677190625, - "c6": 6.331116200312796, - "c7": 6.412837882575474 + "offsets": { + "c1": 11.359223300970873, + "c2": 9.736477115117887, + "c3": 8.113730929264905, + "c4": 6.490984743411937, + "c5": 4.868238557558953, + "c6": 3.2454923717059687, + "c7": 1.6227461858529844 }, "rgb": [77, 76, 132] }, @@ -462246,23 +462246,23 @@ "year": 1838, "resistanceReported": false, "duration": 24364800, - "curveSeeds": { - "c1": 31.921555755531422, - "c2": -21.46581733528933, - "c3": 19.67956807695152, - "c4": 21.6602017752853, - "c5": -17.78854484969957, - "c6": 32.97581472459047, - "c7": 22.461305758334532 + "points": { + "c1": -12.46135471286555, + "c2": -19.251065702960915, + "c3": 23.118516544105958, + "c4": -19.377297754560804, + "c5": -28.482295537997906, + "c6": 10.13359377810837, + "c7": -22.01574914318959 }, - "vertexSeeds": { - "c1": 11.399385346134583, - "c2": 11.271074634371367, - "c3": 10.998262198396745, - "c4": 11.682991700140729, - "c5": 10.723066660420905, - "c6": 11.070348738490123, - "c7": 11.622383970678385 + "offsets": { + "c1": 19.644012944983817, + "c2": 16.837725381414714, + "c3": 14.031437817845566, + "c4": 11.225150254276462, + "c5": 8.418862690707357, + "c6": 5.612575127138212, + "c7": 2.806287563569106 }, "rgb": [222, 0, 59] }, @@ -462273,23 +462273,23 @@ "year": 1837, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 1.7942653009788003, - "c2": 22.14461805241362, - "c3": -27.16784898589746, - "c4": -3.7940553824813463, - "c5": -27.457814009665633, - "c6": -14.124639327646053, - "c7": 10.331330316745778 + "points": { + "c1": 25.794247500518722, + "c2": 14.912180343011435, + "c3": -15.742645344037738, + "c4": 12.028446768558439, + "c5": 1.425819155279605, + "c6": -15.358668333568547, + "c7": -3.2789657152247536 }, - "vertexSeeds": { - "c1": 5.65142799352391, - "c2": 5.938088230879773, - "c3": 5.579433116577777, - "c4": 5.837823502089383, - "c5": 6.169022984206366, - "c6": 6.103801030740533, - "c7": 5.623776035752031 + "offsets": { + "c1": 10.841423948220065, + "c2": 9.29264909847434, + "c3": 7.743874248728618, + "c4": 6.195099398982894, + "c5": 4.64632454923717, + "c6": 3.097549699491447, + "c7": 1.5487748497457234 }, "rgb": [77, 76, 132] }, @@ -462300,23 +462300,23 @@ "year": 1837, "resistanceReported": false, "duration": 16761600, - "curveSeeds": { - "c1": 7.396927167303495, - "c2": 28.278594926880594, - "c3": -20.088380348504757, - "c4": 0.871913040673892, - "c5": 8.779897724448261, - "c6": -27.554482270744344, - "c7": 19.26264944880468 + "points": { + "c1": -8.520467268487756, + "c2": 5.2499236553664375, + "c3": -5.48391538987163, + "c4": 27.974508760633164, + "c5": 26.55790522455274, + "c6": -12.635944975023524, + "c7": 18.354008665640187 }, - "vertexSeeds": { - "c1": 16.88639881388232, - "c2": 16.69391395026875, - "c3": 16.956047328471453, - "c4": 16.32651476190555, - "c5": 16.099214714294053, - "c6": 16.32361454603851, - "c7": 15.98205574551733 + "offsets": { + "c1": 28.576051779935273, + "c2": 24.493758668515937, + "c3": 20.41146555709664, + "c4": 16.329172445677305, + "c5": 12.246879334257969, + "c6": 8.164586222838633, + "c7": 4.082293111419336 }, "rgb": [86, 146, 138] }, @@ -462327,23 +462327,23 @@ "year": 1838, "resistanceReported": false, "duration": 23328000, - "curveSeeds": { - "c1": -13.974856221204814, - "c2": 25.71627400957047, - "c3": -16.668351016896732, - "c4": -24.853949521076895, - "c5": 17.620621934746687, - "c6": 23.613556274352774, - "c7": 33.522937515671444 + "points": { + "c1": -33.417589394094286, + "c2": 6.452501110111555, + "c3": 22.44891680129227, + "c4": -5.647698352500083, + "c5": 36.34986749280009, + "c6": -16.38534684288187, + "c7": 25.730408231972824 }, - "vertexSeeds": { - "c1": 9.19779638178459, - "c2": 8.787930188600546, - "c3": 9.037520796091185, - "c4": 8.49971756395986, - "c5": 8.457796396629485, - "c6": 9.193856728766315, - "c7": 8.887964253911118 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226069, + "c3": 11.049468331021737, + "c4": 8.839574664817386, + "c5": 6.6296809986130345, + "c6": 4.419787332408703, + "c7": 2.2098936662043513 }, "rgb": [77, 76, 132] }, @@ -462354,23 +462354,23 @@ "year": 1838, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": 21.17718534722723, - "c2": -35.03096392198666, - "c3": -17.117160482099504, - "c4": 33.91529061204859, - "c5": 37.363135695087855, - "c6": -12.171593381545108, - "c7": 13.393054863085254 + "points": { + "c1": 9.510310717534836, + "c2": 6.703868254487013, + "c3": 33.053214901675396, + "c4": 10.686776480584676, + "c5": -6.496992904309074, + "c6": 28.375713428836043, + "c7": -0.8207668603458771 }, - "vertexSeeds": { - "c1": 6.87206074396202, - "c2": 6.669530109285306, - "c3": 6.6897120325980595, - "c4": 6.811908285378754, - "c5": 6.936290104945318, - "c6": 6.66516991499889, - "c7": 6.507396905615363 + "offsets": { + "c1": 11.715210355987054, + "c2": 10.04160887656034, + "c3": 8.368007397133608, + "c4": 6.694405917706894, + "c5": 5.020804438280161, + "c6": 3.347202958853447, + "c7": 1.6736014794267136 }, "rgb": [222, 0, 59] }, @@ -462381,23 +462381,23 @@ "year": 1838, "resistanceReported": false, "duration": 17625600, - "curveSeeds": { - "c1": -28.18768149269719, - "c2": -11.451640943923994, - "c3": 0.08903710287976452, - "c4": -25.009963414088755, - "c5": 22.50381435506054, - "c6": -25.862064585627333, - "c7": 16.07754975088595 + "points": { + "c1": -27.682105780987854, + "c2": -17.731812316153466, + "c3": -23.163476261112905, + "c4": -17.99392811023989, + "c5": -27.898720689984703, + "c6": -18.636658274346217, + "c7": -16.582740808216514 }, - "vertexSeeds": { - "c1": 16.75407787781172, - "c2": 16.553609129218287, - "c3": 17.106952910503683, - "c4": 15.67729530596644, - "c5": 16.878209074180255, - "c6": 16.71106858541472, - "c7": 16.576309818590925 + "offsets": { + "c1": 28.576051779935273, + "c2": 24.493758668515937, + "c3": 20.41146555709664, + "c4": 16.329172445677305, + "c5": 12.246879334257969, + "c6": 8.164586222838633, + "c7": 4.082293111419336 }, "rgb": [86, 146, 138] }, @@ -462408,23 +462408,23 @@ "year": 1838, "resistanceReported": false, "duration": 33004800, - "curveSeeds": { - "c1": -23.893876105226656, - "c2": 6.547007390467684, - "c3": -12.60615460421949, - "c4": 12.468551024241101, - "c5": -45.40660940115139, - "c6": 22.48438760726893, - "c7": 7.944510127513382 + "points": { + "c1": -8.734752411686337, + "c2": -42.410549337973414, + "c3": 7.820800280612211, + "c4": 43.14016485926214, + "c5": -26.755486696691317, + "c6": -24.836652015046205, + "c7": 1.4655174795987023 }, - "vertexSeeds": { - "c1": 6.232329100341939, - "c2": 9.942193248878956, - "c3": 9.601808607369815, - "c4": 7.4075277726931255, - "c5": 9.516742227614174, - "c6": 7.7172997405210975, - "c7": 6.3485670902217475 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524272, + "c3": 12.944983818770227, + "c4": 10.35598705501618, + "c5": 7.766990291262136, + "c6": 5.17799352750809, + "c7": 2.588996763754045 }, "rgb": [86, 146, 138] }, @@ -462435,23 +462435,23 @@ "year": 1837, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": -11.183290921241975, - "c2": -10.002992657461942, - "c3": -26.136515382389923, - "c4": -1.8507757501776219, - "c5": -18.595569091239057, - "c6": 2.3587182340239323, - "c7": 20.013464973236367 + "points": { + "c1": -27.304834387250576, + "c2": -10.656874784851926, + "c3": -3.8142480228176083, + "c4": 19.69090351987238, + "c5": -11.363352358457544, + "c6": 4.164870562860379, + "c7": 19.519595926014247 }, - "vertexSeeds": { - "c1": 14.651514303039113, - "c2": 14.475299291673933, - "c3": 14.2635327618886, - "c4": 14.135791950185528, - "c5": 15.074820687095281, - "c6": 14.670213314673166, - "c7": 15.035618185273002 + "offsets": { + "c1": 25.436893203883493, + "c2": 21.803051317614425, + "c3": 18.169209431345365, + "c4": 14.535367545076298, + "c5": 10.901525658807234, + "c6": 7.267683772538129, + "c7": 3.6338418862690647 }, "rgb": [222, 0, 59] }, @@ -462462,23 +462462,23 @@ "year": 1838, "resistanceReported": false, "duration": 22550400, - "curveSeeds": { - "c1": -8.247595589195267, - "c2": -6.1165356665793205, - "c3": -23.955033494301325, - "c4": -32.501970473817735, - "c5": 10.232943643430602, - "c6": -14.51170184254515, - "c7": -18.316925794859657 + "points": { + "c1": -33.480428792105, + "c2": 6.373879899379418, + "c3": 23.747806279683708, + "c4": -3.7713566472133166, + "c5": 11.172060829050658, + "c6": -4.2215301142416735, + "c7": 11.390165075714172 }, - "vertexSeeds": { - "c1": 11.9533989733689, - "c2": 12.048610324981404, - "c3": 12.640751655477622, - "c4": 11.872870405371522, - "c5": 11.953163019545379, - "c6": 12.517769835255153, - "c7": 12.191186744602005 + "offsets": { + "c1": 21.294498381877023, + "c2": 18.252427184466, + "c3": 15.210355987055024, + "c4": 12.168284789644002, + "c5": 9.126213592233023, + "c6": 6.084142394822001, + "c7": 3.042071197411024 }, "rgb": [238, 201, 159] }, @@ -462489,23 +462489,23 @@ "year": 1837, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -8.710481574275017, - "c2": 15.752942824196644, - "c3": 12.717718053421898, - "c4": -10.940408779315149, - "c5": 5.91417063649995, - "c6": -11.459242218362375, - "c7": -9.806826943904984 + "points": { + "c1": 10.179724313043124, + "c2": 21.792975773259407, + "c3": -9.37122500425129, + "c4": 16.815889184956596, + "c5": -16.55905116103682, + "c6": -12.500192972757919, + "c7": -3.2753042597553303 }, - "vertexSeeds": { - "c1": 4.733398548768062, - "c2": 5.164320285646532, - "c3": 4.7255411760977255, - "c4": 4.732794033801053, - "c5": 5.16202075965714, - "c6": 5.310071873452279, - "c7": 5.065935139639249 + "offsets": { + "c1": 8.964401294498382, + "c2": 7.683772538141476, + "c3": 6.403143781784556, + "c4": 5.12251502542765, + "c5": 3.841886269070732, + "c6": 2.561257512713825, + "c7": 1.2806287563569065 }, "rgb": [238, 201, 159] }, @@ -462516,23 +462516,23 @@ "year": 1838, "resistanceReported": false, "duration": 31622400, - "curveSeeds": { - "c1": 14.690182289406906, - "c2": -0.979620675886899, - "c3": -31.696631955419313, - "c4": 1.7071006905284278, - "c5": -37.89307115916454, - "c6": -26.01566326558234, - "c7": -36.677631140965275 + "points": { + "c1": 2.754729904491292, + "c2": -12.025389578296092, + "c3": -23.24400985462597, + "c4": -10.410168080072864, + "c5": -10.241347374980151, + "c6": -44.28930549066588, + "c7": -10.470793602315894 }, - "vertexSeeds": { - "c1": 12.335799281916621, - "c2": 12.253586352114741, - "c3": 12.157151413456804, - "c4": 12.542432878202916, - "c5": 12.13376766654398, - "c6": 12.468795951413856, - "c7": 12.548705445300442 + "offsets": { + "c1": 21.035598705501616, + "c2": 18.030513176144233, + "c3": 15.025427646786845, + "c4": 12.020342117429461, + "c5": 9.015256588072155, + "c6": 6.01017105871477, + "c7": 3.005085529357385 }, "rgb": [222, 0, 59] }, @@ -462543,23 +462543,23 @@ "year": 1838, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -17.717771757206393, - "c2": 18.754895481952573, - "c3": -38.205855185338905, - "c4": 31.901897325279975, - "c5": -43.84870633696331, - "c6": 3.7336831350222823, - "c7": 12.117464192072923 + "points": { + "c1": 15.728525576145287, + "c2": -24.40348478852177, + "c3": 2.2451341207649236, + "c4": -50.61372576607504, + "c5": -48.610255537593, + "c6": -9.707543580965151, + "c7": -47.0407892344083 }, - "vertexSeeds": { - "c1": 7.946223889564416, - "c2": 8.457302533505292, - "c3": 7.819679484782472, - "c4": 8.155613354611413, - "c5": 8.273672597758353, - "c6": 8.443057747634748, - "c7": 8.011185532355382 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778086, + "c3": 10.217290799815071, + "c4": 8.173832639852057, + "c5": 6.130374479889043, + "c6": 4.086916319926028, + "c7": 2.043458159963014 }, "rgb": [222, 0, 59] }, @@ -462570,23 +462570,23 @@ "year": 1838, "resistanceReported": false, "duration": 33523200, - "curveSeeds": { - "c1": 29.356913201424312, - "c2": -22.065058072058825, - "c3": 45.40159713317917, - "c4": 5.47138399410364, - "c5": -25.97585946511521, - "c6": -3.902337300417237, - "c7": -37.57225413832398 + "points": { + "c1": 39.846401723495184, + "c2": 4.271221042720455, + "c3": 5.0661122019143505, + "c4": -15.393747580168409, + "c5": -9.56838054976135, + "c6": -28.668390700742595, + "c7": -46.03113736485873 }, - "vertexSeeds": { - "c1": 4.150246343912063, - "c2": 8.028185369958182, - "c3": 10.146186792004755, - "c4": 4.329852086264069, - "c5": 10.513459495733208, - "c6": 9.945952333898301, - "c7": 8.261651800198653 + "offsets": { + "c1": 18.12297734627832, + "c2": 15.533980582524272, + "c3": 12.944983818770227, + "c4": 10.35598705501618, + "c5": 7.766990291262136, + "c6": 5.17799352750809, + "c7": 2.588996763754045 }, "rgb": [77, 76, 132] }, @@ -462597,23 +462597,23 @@ "year": 1837, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -15.396480536991895, - "c2": 8.670922095033461, - "c3": -6.5593709370272855, - "c4": 10.6951948205961, - "c5": 5.675303764059986, - "c6": -18.68433314135096, - "c7": 7.671378130848844 + "points": { + "c1": -8.958938805079487, + "c2": 0.38043572924419067, + "c3": -2.756022806783246, + "c4": 15.578974130927051, + "c5": -3.0913175020589456, + "c6": 18.297165307972662, + "c7": 3.5081879928011084 }, - "vertexSeeds": { - "c1": 16.52090231409157, - "c2": 16.00116695178204, - "c3": 17.061315136755937, - "c4": 17.309168653852012, - "c5": 16.771758409331035, - "c6": 17.42397652418712, - "c7": 16.686956592483348 + "offsets": { + "c1": 29.06148867313916, + "c2": 24.90984743411928, + "c3": 20.7582061950994, + "c4": 16.60656495607952, + "c5": 12.45492371705964, + "c6": 8.30328247803976, + "c7": 4.15164123901988 }, "rgb": [86, 146, 138] }, @@ -462624,23 +462624,23 @@ "year": 1838, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -19.124598803269638, - "c2": -4.95435003674821, - "c3": -4.047440470731818, - "c4": 7.089233399158832, - "c5": -12.710220943587368, - "c6": 7.823043658447194, - "c7": -24.45030806710668 + "points": { + "c1": 27.00518801772885, + "c2": 2.580565522928403, + "c3": -23.133970892183935, + "c4": -12.531131177739887, + "c5": -22.359845533874253, + "c6": 9.998909383056795, + "c7": -5.300880679172565 }, - "vertexSeeds": { - "c1": 6.50414885556573, - "c2": 6.369949590416722, - "c3": 6.904951835575066, - "c4": 6.807574676481982, - "c5": 6.719247768860727, - "c6": 6.3465582480076455, - "c7": 6.357792958766635 + "offsets": { + "c1": 11.585760517799352, + "c2": 9.930651872399453, + "c3": 8.275543226999535, + "c4": 6.620434581599635, + "c5": 4.965325936199717, + "c6": 3.3102172907998173, + "c7": 1.6551086453998998 }, "rgb": [86, 146, 138] }, @@ -462651,23 +462651,23 @@ "year": 1837, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": -20.56631091447816, - "c2": 11.055843670759021, - "c3": -10.066451819181584, - "c4": 23.099000983540325, - "c5": 22.553423757941207, - "c6": 16.011612898623657, - "c7": 1.9146031025444579 + "points": { + "c1": -23.736276379368366, + "c2": 3.69722512325896, + "c3": -11.00754321671999, + "c4": 25.041797901997267, + "c5": 6.372404384298907, + "c6": 23.953579784240123, + "c7": -20.055615528505655 }, - "vertexSeeds": { - "c1": 5.5683984711976935, - "c2": 5.925957092610001, - "c3": 5.781131769302172, - "c4": 5.377353495345661, - "c5": 5.664586667784258, - "c6": 5.8686155780576525, - "c7": 5.457314813761372 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -462678,23 +462678,23 @@ "year": 1837, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": 0.5114127596144904, - "c2": 9.333818836296206, - "c3": 9.628823692788181, - "c4": -16.33229926543795, - "c5": 7.21220370127104, - "c6": 0.6946916782561061, - "c7": -4.328136723848502 + "points": { + "c1": -17.750850375555117, + "c2": 2.2611762366576684, + "c3": -16.95158376040576, + "c4": -5.57592802256994, + "c5": 20.745797791964744, + "c6": -20.946624890803307, + "c7": -5.503413093019486 }, - "vertexSeeds": { - "c1": 5.543921552435173, - "c2": 5.698468701159171, - "c3": 5.717959989859473, - "c4": 5.3711978793923825, - "c5": 5.809705790395079, - "c6": 5.4583493042245514, - "c7": 5.559256146831506 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -462705,23 +462705,23 @@ "year": 1838, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 23.73873356234355, - "c2": 18.47400677397226, - "c3": -20.220347036362774, - "c4": -20.508000821865288, - "c5": 7.835560490130899, - "c6": 28.481092615564865, - "c7": 29.11561699264446 + "points": { + "c1": 21.768966203527285, + "c2": -3.966785805099839, + "c3": 11.777964998268608, + "c4": -13.44495983970912, + "c5": -17.27785516767393, + "c6": -20.872943931489296, + "c7": 24.607203876448814 }, - "vertexSeeds": { - "c1": 9.233134125874251, - "c2": 8.926455094603138, - "c3": 9.137721870637376, - "c4": 8.84148105731349, - "c5": 9.125575749239417, - "c6": 9.081169879525284, - "c7": 8.889436387884642 + "offsets": { + "c1": 15.598705501618124, + "c2": 13.370319001386965, + "c3": 11.141932501155809, + "c4": 8.913546000924653, + "c5": 6.685159500693495, + "c6": 4.456773000462314, + "c7": 2.228386500231157 }, "rgb": [238, 201, 159] }, @@ -462732,23 +462732,23 @@ "year": 1838, "resistanceReported": false, "duration": 28598400, - "curveSeeds": { - "c1": -10.127103174513614, - "c2": 20.330634518766743, - "c3": 28.013506940887694, - "c4": 28.708915727972354, - "c5": 17.41374846966088, - "c6": -18.759791792690272, - "c7": -11.676498015018758 + "points": { + "c1": -16.847269319856633, + "c2": 39.023614440039566, + "c3": 17.333164177716014, + "c4": -42.99830496527509, + "c5": 25.983243437480382, + "c6": -22.29084412454698, + "c7": 0.03286395211173243 }, - "vertexSeeds": { - "c1": 4.000882871955887, - "c2": 4.1855804700279995, - "c3": 4.2210304400522345, - "c4": 3.9699472378421756, - "c5": 4.161565080826903, - "c6": 4.023834363419838, - "c7": 3.9818890638593434 + "offsets": { + "c1": 7.281553398058252, + "c2": 6.241331484049929, + "c3": 5.201109570041606, + "c4": 4.160887656033283, + "c5": 3.120665742024959, + "c6": 2.0804438280166466, + "c7": 1.0402219140083233 }, "rgb": [222, 0, 59] }, @@ -462759,23 +462759,23 @@ "year": 1838, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 8.271209233240512, - "c2": 14.71504143048385, - "c3": -19.00095394152232, - "c4": 24.435400055951682, - "c5": -12.009437677748448, - "c6": 8.16423850698498, - "c7": 11.982670527836397 + "points": { + "c1": 6.470579385549051, + "c2": 19.51437601530828, + "c3": -4.407008861008499, + "c4": -23.971495406318063, + "c5": 20.88100795881801, + "c6": 14.191114779051738, + "c7": 12.272765861676092 }, - "vertexSeeds": { - "c1": 5.872859974447037, - "c2": 5.607178847098402, - "c3": 5.804551427379459, - "c4": 5.533171120086352, - "c5": 5.592589834674564, - "c6": 5.655783496196424, - "c7": 5.91886167053982 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -462786,23 +462786,23 @@ "year": 1838, "resistanceReported": false, "duration": 27907200, - "curveSeeds": { - "c1": 16.061182151035496, - "c2": 28.521573413522717, - "c3": 28.878672691524088, - "c4": -35.94858690493125, - "c5": -15.63583645033146, - "c6": -16.548452169362115, - "c7": 23.27657589749505 + "points": { + "c1": 2.597172245943838, + "c2": -9.527080420822514, + "c3": 22.109614498536544, + "c4": 0.8124542774453687, + "c5": 27.798959378662175, + "c6": -35.03197605437258, + "c7": -14.304678109426174 }, - "vertexSeeds": { - "c1": 9.412336778236432, - "c2": 8.768378673341806, - "c3": 8.703716712134462, - "c4": 9.33894525799067, - "c5": 8.682864265447233, - "c6": 9.295697243918756, - "c7": 9.422175035881944 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -462813,23 +462813,23 @@ "year": 1838, "resistanceReported": false, "duration": 12268800, - "curveSeeds": { - "c1": -6.830486854419945, - "c2": 17.021158833361824, - "c3": 7.44858621583705, - "c4": -1.890704716154115, - "c5": -1.378881276001998, - "c6": 9.270159796510661, - "c7": -0.7050530202816034 + "points": { + "c1": 13.016311044783343, + "c2": -17.732631736690312, + "c3": -13.12743806681352, + "c4": -11.874810396483632, + "c5": 16.202418661485147, + "c6": -17.10151496524113, + "c7": -3.684628974199928 }, - "vertexSeeds": { - "c1": 13.887772890814885, - "c2": 13.848773238757751, - "c3": 14.523371235183173, - "c4": 15.119150403684431, - "c5": 14.869424198676814, - "c6": 14.720681540134972, - "c7": 14.91676913730253 + "offsets": { + "c1": 25.436893203883493, + "c2": 21.803051317614425, + "c3": 18.169209431345365, + "c4": 14.535367545076298, + "c5": 10.901525658807234, + "c6": 7.267683772538129, + "c7": 3.6338418862690647 }, "rgb": [86, 146, 138] }, @@ -462840,23 +462840,23 @@ "year": 1838, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -1.8943432656028136, - "c2": 19.692391181978444, - "c3": 0.48753643251674106, - "c4": 19.120643618621564, - "c5": -24.467233762022484, - "c6": 7.9066583014707135, - "c7": -13.967605350918502 + "points": { + "c1": -20.04603333302573, + "c2": 26.42929124622271, + "c3": -3.904104923738206, + "c4": 7.3500968413431025, + "c5": -13.20600002377001, + "c6": 4.110318815996411, + "c7": -17.03127239613543 }, - "vertexSeeds": { - "c1": 21.86623887307785, - "c2": 20.680023750288367, - "c3": 21.772748071323292, - "c4": 21.484634798196282, - "c5": 20.503016328674246, - "c6": 21.0846778843859, - "c7": 22.389894520519398 + "offsets": { + "c1": 37.50809061488673, + "c2": 32.14979195561716, + "c3": 26.791493296347678, + "c4": 21.43319463707811, + "c5": 16.074895977808623, + "c6": 10.716597318539055, + "c7": 5.358298659269488 }, "rgb": [77, 76, 132] }, @@ -462867,23 +462867,23 @@ "year": 1838, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": 9.448497311513538, - "c2": 1.6906952949663854, - "c3": -11.517230851048447, - "c4": -15.33684412657049, - "c5": -10.070533944840948, - "c6": 4.812035683201387, - "c7": 4.95220859693919 + "points": { + "c1": -11.332749747580065, + "c2": 8.979449260044937, + "c3": 11.360559193849113, + "c4": 14.761460721927214, + "c5": -8.033792905091085, + "c6": 23.589077729482632, + "c7": 6.355236287647468 }, - "vertexSeeds": { - "c1": 14.299334788986007, - "c2": 14.038210954444237, - "c3": 14.438942043869922, - "c4": 14.046576091748218, - "c5": 14.3337739418961, - "c6": 14.340960968931027, - "c7": 14.537839079862788 + "offsets": { + "c1": 24.563106796116504, + "c2": 21.054091539528457, + "c3": 17.545076282940354, + "c4": 14.036061026352305, + "c5": 10.527045769764198, + "c6": 7.018030513176153, + "c7": 3.5090152565880466 }, "rgb": [86, 146, 138] }, @@ -462894,23 +462894,23 @@ "year": 1838, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 23.26905104924879, - "c2": 4.741587484283482, - "c3": -27.322035107661232, - "c4": -14.552969558671474, - "c5": 14.695266701394285, - "c6": -22.544026639731996, - "c7": 11.475420072596574 + "points": { + "c1": -5.995384508152913, + "c2": 22.942158960655934, + "c3": 27.053590951674725, + "c4": -26.1091234805477, + "c5": -14.594116841302524, + "c6": -0.886382355844642, + "c7": 20.948220185789086 }, - "vertexSeeds": { - "c1": 13.862822573775967, - "c2": 13.982495903524855, - "c3": 14.072750193231883, - "c4": 14.29184899960227, - "c5": 13.978040569752393, - "c6": 14.172078859902477, - "c7": 13.789219640226877 + "offsets": { + "c1": 25.016181229773466, + "c2": 21.442441054091535, + "c3": 17.86870087840961, + "c4": 14.294960702727677, + "c5": 10.721220527045787, + "c6": 7.147480351363858, + "c7": 3.573740175681929 }, "rgb": [86, 146, 138] }, @@ -462921,23 +462921,23 @@ "year": 1837, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": 17.3389016405458, - "c2": 14.491382973530904, - "c3": -19.217691137340825, - "c4": -9.22150909818656, - "c5": -1.2239239069356032, - "c6": 3.75047294974798, - "c7": -15.557037273313693 + "points": { + "c1": -5.211734989154905, + "c2": -17.798184465238123, + "c3": 15.940160064236963, + "c4": 18.32276436946872, + "c5": 15.648270726456694, + "c6": -9.396596864479783, + "c7": -5.235654374200649 }, - "vertexSeeds": { - "c1": 8.857716967375687, - "c2": 8.422194171287904, - "c3": 8.031386367193644, - "c4": 7.379708138619773, - "c5": 7.406232529113636, - "c6": 8.15717057546801, - "c7": 7.165055177149563 + "offsets": { + "c1": 15.307443365695795, + "c2": 13.120665742024967, + "c3": 10.933888118354137, + "c4": 8.747110494683309, + "c5": 6.56033287101248, + "c6": 4.373555247341651, + "c7": 2.1867776236708227 }, "rgb": [222, 0, 59] }, @@ -462948,23 +462948,23 @@ "year": 1838, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 8.063179369221363, - "c2": -23.476902752934283, - "c3": -16.527292496856397, - "c4": 19.48502601093011, - "c5": -25.37340484745419, - "c6": 1.246698719621218, - "c7": -25.260505591109386 + "points": { + "c1": -10.355481115726079, + "c2": -10.699768901252181, + "c3": -15.6490230886279, + "c4": -0.027105620980648837, + "c5": 5.3978512364847475, + "c6": -11.734781558590193, + "c7": 3.9226657491265726 }, - "vertexSeeds": { - "c1": 11.442829399427193, - "c2": 11.256309977556603, - "c3": 11.216303094739269, - "c4": 11.406626725664056, - "c5": 11.143341930240407, - "c6": 11.183713071643686, - "c7": 11.238838147577798 + "offsets": { + "c1": 19.35275080906149, + "c2": 16.58807212205273, + "c3": 13.82339343504389, + "c4": 11.058714748035126, + "c5": 8.294036061026365, + "c6": 5.5293573740175255, + "c7": 2.7646786870087627 }, "rgb": [238, 201, 159] }, @@ -462975,23 +462975,23 @@ "year": 1838, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -30.014479307678403, - "c2": 6.018703378343471, - "c3": 25.537631263508583, - "c4": -28.38681048538796, - "c5": -11.543884512786004, - "c6": -4.012657705141226, - "c7": 28.25446879814609 + "points": { + "c1": 32.35240892768502, + "c2": 3.3350178151283316, + "c3": -20.81044978025527, + "c4": -4.745914597327655, + "c5": -2.7943227129173955, + "c6": 6.740171529077699, + "c7": 30.839666641456276 }, - "vertexSeeds": { - "c1": 10.012165973722803, - "c2": 9.822267368220167, - "c3": 9.76603752947838, - "c4": 9.30087276220188, - "c5": 9.66946208506535, - "c6": 9.441961073195042, - "c7": 9.51179367799392 + "offsets": { + "c1": 16.828478964401295, + "c2": 14.424410540915389, + "c3": 12.020342117429506, + "c4": 9.6162736939436, + "c5": 7.212205270457694, + "c6": 4.80813684697181, + "c7": 2.404068423485905 }, "rgb": [238, 201, 159] }, @@ -463002,23 +463002,23 @@ "year": 1838, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": -13.858807833865225, - "c2": 8.802441715977956, - "c3": -25.14882500492923, - "c4": -11.44603601211644, - "c5": 17.105128962179244, - "c6": 1.8440398179086088, - "c7": -10.387788132261335 + "points": { + "c1": 16.642323260235102, + "c2": 20.52963291187141, + "c3": 24.22657357274852, + "c4": -19.606836709201204, + "c5": -15.779037870560188, + "c6": 6.038737095769783, + "c7": -9.591371749862649 }, - "vertexSeeds": { - "c1": 7.534209590039798, - "c2": 7.425676192002707, - "c3": 7.428042523225171, - "c4": 8.021518440664657, - "c5": 7.55737991708128, - "c6": 7.788300762754658, - "c7": 7.77507463646128 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.539528432732327, + "c3": 9.616273693943596, + "c4": 7.693018955154885, + "c5": 5.769764216366153, + "c6": 3.8465094775774427, + "c7": 1.9232547387887327 }, "rgb": [77, 76, 132] }, @@ -463029,23 +463029,23 @@ "year": 1838, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 14.80509504564591, - "c2": 14.449509982875863, - "c3": 4.458037130507066, - "c4": -3.497569142977774, - "c5": 12.546384753157323, - "c6": 9.950422500656554, - "c7": -18.5527072805977 + "points": { + "c1": 0.6950359518183831, + "c2": -3.924927372943664, + "c3": -4.4833773215517745, + "c4": 9.067082374904889, + "c5": -6.584311898992254, + "c6": -13.38577108586658, + "c7": -21.681800036118005 }, - "vertexSeeds": { - "c1": 6.623659355060171, - "c2": 6.3998473422153666, - "c3": 6.458550441427438, - "c4": 6.425089458762875, - "c5": 6.696960348525142, - "c6": 6.87348950202445, - "c7": 6.622883794404815 + "offsets": { + "c1": 11.68284789644013, + "c2": 10.013869625520119, + "c3": 8.34489135460009, + "c4": 6.675913083680079, + "c5": 5.006934812760068, + "c6": 3.3379565418400396, + "c7": 1.668978270920029 }, "rgb": [77, 76, 132] }, @@ -463056,23 +463056,23 @@ "year": 1838, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 11.855759840070878, - "c2": -25.485248083960467, - "c3": 23.297948253437593, - "c4": 19.00057535738168, - "c5": 10.411513581212429, - "c6": 18.033271071371768, - "c7": 4.5583348524701925 + "points": { + "c1": -15.679174687190987, + "c2": 16.575972239808774, + "c3": -17.67760803236137, + "c4": -1.2624483798233577, + "c5": -27.1588896881139, + "c6": 7.841835667981503, + "c7": 22.888827373244492 }, - "vertexSeeds": { - "c1": 9.228753166939756, - "c2": 9.278452034967458, - "c3": 9.800667990705579, - "c4": 8.654481719141707, - "c5": 9.728130675841037, - "c6": 10.800230488244761, - "c7": 9.60816139817081 + "offsets": { + "c1": 18.09061488673139, + "c2": 15.506241331484043, + "c3": 12.92186777623671, + "c4": 10.337494220989361, + "c5": 7.7531206657420215, + "c6": 5.168747110494681, + "c7": 2.5843735552473404 }, "rgb": [222, 0, 59] }, @@ -463083,23 +463083,23 @@ "year": 1838, "resistanceReported": false, "duration": 5184000, - "curveSeeds": { - "c1": -7.712257809986835, - "c2": 4.302274566506886, - "c3": -5.293045297911938, - "c4": 9.6865982191691, - "c5": 10.307409342480616, - "c6": 2.6763473447158415, - "c7": -3.679950100904602 + "points": { + "c1": 17.032461997048387, + "c2": -16.699421317693176, + "c3": -16.98862131820865, + "c4": 5.226954307421334, + "c5": 4.5894043831182, + "c6": -14.657008234188059, + "c7": 7.153042032694813 }, - "vertexSeeds": { - "c1": 10.489756854864043, - "c2": 9.987959516165569, - "c3": 9.845327849204851, - "c4": 10.305550933374557, - "c5": 10.90416194713959, - "c6": 10.334825776680809, - "c7": 10.538269861040424 + "offsets": { + "c1": 18.284789644012946, + "c2": 15.672676837725376, + "c3": 13.060564031437805, + "c4": 10.448451225150267, + "c5": 7.836338418862696, + "c6": 5.224225612575125, + "c7": 2.612112806287554 }, "rgb": [77, 76, 132] }, @@ -463110,23 +463110,23 @@ "year": 1838, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 0.07698109494990746, - "c2": 4.66964131798639, - "c3": -19.025946825428193, - "c4": 18.284772168302503, - "c5": 28.925013418716823, - "c6": -18.30717352973397, - "c7": 28.453171262923455 + "points": { + "c1": -39.98003428332997, + "c2": -23.222697864486705, + "c3": 11.224088589321518, + "c4": -30.057261387783004, + "c5": 16.89364426717684, + "c6": 22.68613034926993, + "c7": -31.412584760457946 }, - "vertexSeeds": { - "c1": 10.515287168733098, - "c2": 9.911521037275355, - "c3": 10.300797831437428, - "c4": 10.307702780598001, - "c5": 9.992534753557686, - "c6": 10.376340468741292, - "c7": 10.296835458829364 + "offsets": { + "c1": 17.864077669902912, + "c2": 15.312066574202492, + "c3": 12.760055478502068, + "c4": 10.208044382801686, + "c5": 7.656033287101264, + "c6": 5.104022191400843, + "c7": 2.5520110957004216 }, "rgb": [222, 0, 59] }, @@ -463137,23 +463137,23 @@ "year": 1838, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": -9.399772542763333, - "c2": 25.130447822430543, - "c3": 23.491306302082275, - "c4": 23.473388283204, - "c5": 19.7802340428296, - "c6": 9.549932211675287, - "c7": 6.23203837094 + "points": { + "c1": 13.635409295561484, + "c2": -29.086085638257586, + "c3": 8.370203236511482, + "c4": 6.5950082051901795, + "c5": 4.262388399751369, + "c6": 9.327473699968333, + "c7": 20.451619921205587 }, - "vertexSeeds": { - "c1": 6.057936445611774, - "c2": 6.1737930259910305, - "c3": 6.163012426968474, - "c4": 6.348246182052024, - "c5": 5.802988273010845, - "c6": 6.349651778577073, - "c7": 6.332297062242371 + "offsets": { + "c1": 10.679611650485436, + "c2": 9.153952843273228, + "c3": 7.628294036061019, + "c4": 6.102635228848813, + "c5": 4.5769764216366235, + "c6": 3.0513176144244154, + "c7": 1.5256588072122077 }, "rgb": [86, 146, 138] }, @@ -463164,23 +463164,23 @@ "year": 1838, "resistanceReported": false, "duration": 25747200, - "curveSeeds": { - "c1": 18.582458810835796, - "c2": -13.795239676172937, - "c3": 19.074139775726586, - "c4": 24.365759154585206, - "c5": 29.133895814778292, - "c6": 27.211431638784326, - "c7": 11.074398321395634 + "points": { + "c1": -9.398387776823046, + "c2": -14.184274215123445, + "c3": -5.774268182978247, + "c4": 6.15201033289744, + "c5": -8.798134508838412, + "c6": 4.804973542912585, + "c7": 21.515317289784726 }, - "vertexSeeds": { - "c1": 3.9086602903370573, - "c2": 4.247935319196753, - "c3": 4.063703657069207, - "c4": 4.255592940080513, - "c5": 4.281792906584766, - "c6": 3.923401728331153, - "c7": 3.960863000128454 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [238, 201, 159] }, @@ -463191,23 +463191,23 @@ "year": 1838, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 9.589758998737835, - "c2": 8.215998588073127, - "c3": 12.659937875483841, - "c4": -8.751334096753082, - "c5": -14.817808881465005, - "c6": -13.95556901325889, - "c7": 5.585789169857804 + "points": { + "c1": -20.2147855466576, + "c2": -0.10922895237237995, + "c3": -2.606927381153227, + "c4": 1.7601610428297647, + "c5": 19.55500580713582, + "c6": 3.332881709546541, + "c7": -14.58740300459999 }, - "vertexSeeds": { - "c1": 2.044170744348144, - "c2": 1.885116790146483, - "c3": 2.0322130203400284, - "c4": 2.014243814804939, - "c5": 1.9254069975667587, - "c6": 1.8903077761275138, - "c7": 2.014779599886386 + "offsets": { + "c1": 3.4627831715210355, + "c2": 2.9680998613037444, + "c3": 2.4734165510864523, + "c4": 1.978733240869166, + "c5": 1.4840499306518744, + "c6": 0.989366620434583, + "c7": 0.4946833102172915 }, "rgb": [58, 15, 49] }, @@ -463218,23 +463218,23 @@ "year": 1838, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": 0.2844054636477651, - "c2": 9.01688696285412, - "c3": -25.456142533137953, - "c4": -6.134576008355609, - "c5": 14.318646029090491, - "c6": -0.11464302144385385, - "c7": 27.151609414039253 + "points": { + "c1": 10.320726783375484, + "c2": -11.921633355141505, + "c3": 16.353405736589224, + "c4": 25.128955346980483, + "c5": -20.502223307642787, + "c6": 17.61380775219459, + "c7": 12.682876023960247 }, - "vertexSeeds": { - "c1": 8.08037396596533, - "c2": 7.489051843621134, - "c3": 8.171238766604564, - "c4": 7.79260446567618, - "c5": 7.839653229804481, - "c6": 7.941769104715927, - "c7": 7.803441425493894 + "offsets": { + "c1": 13.754045307443366, + "c2": 11.789181692094312, + "c3": 9.824318076745255, + "c4": 7.859454461396221, + "c5": 5.894590846047165, + "c6": 3.9297272306981106, + "c7": 1.9648636153490553 }, "rgb": [238, 201, 159] }, @@ -463245,23 +463245,23 @@ "year": 1838, "resistanceReported": false, "duration": 12009600, - "curveSeeds": { - "c1": 2.4236531688918035, - "c2": 1.87850875738269, - "c3": 14.444368531449033, - "c4": 19.40886263329995, - "c5": -2.5004199917711745, - "c6": -9.50065612992643, - "c7": -22.759959220642614 + "points": { + "c1": -0.919190725507093, + "c2": 18.4456367680778, + "c3": -0.5640043017228287, + "c4": -19.234198014110035, + "c5": 18.680061327136077, + "c6": 8.249313698180618, + "c7": 25.005064024911658 }, - "vertexSeeds": { - "c1": 5.045891468319321, - "c2": 5.726453388378188, - "c3": 5.321502704462492, - "c4": 4.816807884364187, - "c5": 5.557233738484729, - "c6": 4.8238543348742065, - "c7": 4.930238233627199 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307904, + "c3": 7.073509015256592, + "c4": 5.6588072122052715, + "c5": 4.244105409153952, + "c6": 2.8294036061026313, + "c7": 1.4147018030513203 }, "rgb": [58, 15, 49] }, @@ -463272,23 +463272,23 @@ "year": 1838, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 15.529897730112758, - "c2": 0.8108880840945787, - "c3": -20.156966594764306, - "c4": 21.96886731727256, - "c5": -18.883190536299004, - "c6": 2.1745904288880027, - "c7": 5.790636361160445 + "points": { + "c1": -7.8309568141297525, + "c2": -12.914926869373438, + "c3": 13.83841593802866, + "c4": 2.7327069122932066, + "c5": -15.780277955105554, + "c6": 22.11468865035763, + "c7": -12.00098030687922 }, - "vertexSeeds": { - "c1": 5.765047481109661, - "c2": 5.506012066099068, - "c3": 5.468569912103894, - "c4": 5.705374829097284, - "c5": 5.592010416008359, - "c6": 5.781757054850878, - "c7": 5.940732565005271 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509019, + "c3": 7.1890892279241845, + "c4": 5.751271382339351, + "c5": 4.3134535367545, + "c6": 2.8756356911696668, + "c7": 1.4378178455848334 }, "rgb": [222, 0, 59] }, @@ -463299,23 +463299,23 @@ "year": 1838, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -7.115726581679155, - "c2": 25.9749772885205, - "c3": -5.939817103266996, - "c4": -24.32920188298175, - "c5": -12.631482287850151, - "c6": 0.9152449636321833, - "c7": -3.7797027189017456 + "points": { + "c1": -0.5346782018380338, + "c2": -25.086395738925866, + "c3": -29.32917899032168, + "c4": -9.262064222725364, + "c5": -29.54318691275048, + "c6": 17.550153664233036, + "c7": -26.04453097699801 }, - "vertexSeeds": { - "c1": 4.553927443128028, - "c2": 4.396170187162213, - "c3": 4.578589502833817, - "c4": 4.145366266824589, - "c5": 4.283366073120705, - "c6": 4.537493177362394, - "c7": 4.254229461809686 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532596, + "c3": 5.478502080443824, + "c4": 4.382801664355061, + "c5": 3.287101248266298, + "c6": 2.191400832177535, + "c7": 1.0957004160887631 }, "rgb": [86, 146, 138] }, @@ -463326,23 +463326,23 @@ "year": 1838, "resistanceReported": false, "duration": 20736000, - "curveSeeds": { - "c1": -12.706895404089028, - "c2": 3.6972763600277574, - "c3": -31.71783212820173, - "c4": -31.17262199074032, - "c5": -18.447517702213133, - "c6": 19.222179529346235, - "c7": -17.320334362109442 + "points": { + "c1": -18.78122758591404, + "c2": 0.4018631500525487, + "c3": -20.402949985417543, + "c4": -20.008252409230728, + "c5": 31.8622544551474, + "c6": -6.6908985654181805, + "c7": 5.087786495616655 }, - "vertexSeeds": { - "c1": 6.593661194005588, - "c2": 7.233242692425391, - "c3": 7.059574013189473, - "c4": 6.9325818800660715, - "c5": 7.142659866537887, - "c6": 7.18839399294899, - "c7": 6.952169485487608 + "offsets": { + "c1": 13.268608414239482, + "c2": 11.373092926490983, + "c3": 9.477577438742484, + "c4": 7.582061950993995, + "c5": 5.686546463245497, + "c6": 3.7910309754969975, + "c7": 1.8955154877484988 }, "rgb": [86, 146, 138] }, @@ -463353,23 +463353,23 @@ "year": 1838, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": -14.874326534697975, - "c2": 14.53150409593161, - "c3": -8.040615957015, - "c4": 4.91693088592768, - "c5": 2.7963667581452754, - "c6": 6.361584905388291, - "c7": 11.81317193955488 + "points": { + "c1": -1.3960328094997436, + "c2": 7.826506232652893, + "c3": 12.462855029372541, + "c4": -19.86112775442448, + "c5": -1.4857041284713368, + "c6": -1.5866721924904112, + "c7": 1.1324267243939907 }, - "vertexSeeds": { - "c1": 4.637095887297359, - "c2": 4.3006340371783045, - "c3": 4.6079581504034035, - "c4": 4.427746243232763, - "c5": 4.548840228253314, - "c6": 4.110491145757525, - "c7": 4.3125964005302135 + "offsets": { + "c1": 8.414239482200648, + "c2": 7.212205270457698, + "c3": 6.0101710587147466, + "c4": 4.808136846971801, + "c5": 3.606102635228851, + "c6": 2.4040684234859007, + "c7": 1.2020342117429503 }, "rgb": [77, 76, 132] }, @@ -463380,23 +463380,23 @@ "year": 1838, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": -16.10514756204631, - "c2": -26.839921271031812, - "c3": 22.525916861305333, - "c4": 10.297805274652148, - "c5": 12.394409975256835, - "c6": -21.001570804105445, - "c7": -7.9209256364691285 + "points": { + "c1": -10.54116381630347, + "c2": -18.186729590223, + "c3": -1.8009520862417254, + "c4": 9.27665410730318, + "c5": 27.100117685216667, + "c6": 5.067608516179455, + "c7": -26.427980082975147 }, - "vertexSeeds": { - "c1": 3.7560176596359987, - "c2": 3.6834856877890907, - "c3": 3.6624118962634977, - "c4": 3.8455496149696646, - "c5": 3.809233529908912, - "c6": 3.8115414832414887, - "c7": 3.809269653164016 + "offsets": { + "c1": 6.472491909385113, + "c2": 5.54785020804438, + "c3": 4.623208506703648, + "c4": 3.6985668053629155, + "c5": 2.7739251040221973, + "c6": 1.849283402681465, + "c7": 0.9246417013407325 }, "rgb": [238, 201, 159] }, @@ -463407,23 +463407,23 @@ "year": 1838, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": 18.71363920798983, - "c2": 0.28626496803492785, - "c3": 1.027512067841002, - "c4": -15.598618821259771, - "c5": -4.970941449367917, - "c6": 10.84765352787121, - "c7": -0.8510802776559423 + "points": { + "c1": 16.892017898030545, + "c2": -2.0695328928291623, + "c3": 12.574444789563358, + "c4": 13.126571712392504, + "c5": 4.177522749764776, + "c6": -2.886351810982408, + "c7": -11.673941071627972 }, - "vertexSeeds": { - "c1": 11.088332526150799, - "c2": 11.06271399395358, - "c3": 11.139829140280828, - "c4": 11.088858390368244, - "c5": 11.073662287134738, - "c6": 11.088086474481711, - "c7": 11.068417105929354 + "offsets": { + "c1": 18.6084142394822, + "c2": 15.950069348127782, + "c3": 13.291724456772942, + "c4": 10.633379565418522, + "c5": 7.9750346740636795, + "c6": 5.316689782709261, + "c7": 2.6583448913544188 }, "rgb": [58, 15, 49] }, @@ -463434,23 +463434,23 @@ "year": 1838, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 21.9019499018342, - "c2": -20.135030616914293, - "c3": 14.543174372456008, - "c4": -1.2125400948557186, - "c5": 5.956194406074637, - "c6": -16.996100440530963, - "c7": 10.169782195294445 + "points": { + "c1": 22.963013636557925, + "c2": -18.78413521929146, + "c3": -23.844956865750238, + "c4": 8.918391978765428, + "c5": -16.335464562485527, + "c6": -6.095163025286386, + "c7": 17.634223430244184 }, - "vertexSeeds": { - "c1": 5.293030938685725, - "c2": 4.937812668586058, - "c3": 5.1400379064639, - "c4": 5.288088625736462, - "c5": 5.1305520732617635, - "c6": 4.966120819965884, - "c7": 5.370849495990111 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318085, + "c4": 5.141007859454455, + "c5": 3.8557558945908434, + "c6": 2.570503929727232, + "c7": 1.2852519648636116 }, "rgb": [222, 0, 59] }, @@ -463461,23 +463461,23 @@ "year": 1839, "resistanceReported": false, "duration": 25920000, - "curveSeeds": { - "c1": 30.428528863120214, - "c2": 36.376171988216406, - "c3": -31.869700452657934, - "c4": 20.74551288206154, - "c5": 32.60453750611858, - "c6": -8.060908103246359, - "c7": -4.073165224832167 + "points": { + "c1": -17.231154475231108, + "c2": 38.249968285609704, + "c3": -26.59671103528229, + "c4": 33.749441815223115, + "c5": 27.14792568986804, + "c6": -5.781964736683072, + "c7": -10.7287723667773 }, - "vertexSeeds": { - "c1": 9.257298484425792, - "c2": 9.032804779141578, - "c3": 8.93826067201296, - "c4": 8.78407547028895, - "c5": 8.820488947406657, - "c6": 9.543672136907848, - "c7": 9.303343228598184 + "offsets": { + "c1": 15.954692556634303, + "c2": 13.675450762829408, + "c3": 11.396208969024494, + "c4": 9.1169671752196, + "c5": 6.837725381414704, + "c6": 4.55848358760979, + "c7": 2.279241793804895 }, "rgb": [86, 146, 138] }, @@ -463488,23 +463488,23 @@ "year": 1839, "resistanceReported": false, "duration": 22809600, - "curveSeeds": { - "c1": -25.516989343158585, - "c2": 15.107050370765727, - "c3": 15.155865413583733, - "c4": -19.969564562757537, - "c5": -19.7630734887312, - "c6": -7.294839155421506, - "c7": -17.61704193664926 + "points": { + "c1": 31.572318225057955, + "c2": 25.019540024305947, + "c3": 29.07516349848143, + "c4": -13.866702891141237, + "c5": 31.766330565221523, + "c6": 32.84029128772315, + "c7": 0.14312269501265718 }, - "vertexSeeds": { - "c1": 6.180936164313298, - "c2": 6.014417573659183, - "c3": 6.0883148076271665, - "c4": 6.067530116941199, - "c5": 6.0796743472594414, - "c6": 6.0969184795875515, - "c7": 6.179268394770241 + "offsets": { + "c1": 10.355987055016183, + "c2": 8.876560332871007, + "c3": 7.397133610725831, + "c4": 5.917706888580654, + "c5": 4.438280166435528, + "c6": 2.958853444290352, + "c7": 1.479426722145176 }, "rgb": [86, 146, 138] }, @@ -463515,23 +463515,23 @@ "year": 1838, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 21.09185605547858, - "c2": -8.317793745926988, - "c3": -14.447812891009942, - "c4": -9.900360263224282, - "c5": 22.48920778448433, - "c6": -18.687024880138686, - "c7": -12.367451946108918 + "points": { + "c1": 8.10973640134764, + "c2": 4.541478080642712, + "c3": -14.87799855030128, + "c4": 2.5603298763062163, + "c5": -23.55942316753081, + "c6": 21.24905572569388, + "c7": -17.019192557464294 }, - "vertexSeeds": { - "c1": 7.058757955419833, - "c2": 6.987072159269985, - "c3": 7.394649063715222, - "c4": 7.502509540516124, - "c5": 7.409262293719564, - "c6": 7.408298245881195, - "c7": 7.041337825973465 + "offsets": { + "c1": 12.84789644012945, + "c2": 11.012482662968102, + "c3": 9.177068885806756, + "c4": 7.341655108645408, + "c5": 5.506241331484061, + "c6": 3.670827554322694, + "c7": 1.835413777161347 }, "rgb": [58, 15, 49] }, @@ -463542,23 +463542,23 @@ "year": 1838, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": -2.7953856469897893, - "c2": 6.764071068966128, - "c3": 5.950848326552446, - "c4": -15.476697964379458, - "c5": 15.594885899725796, - "c6": 3.912472507879027, - "c7": -12.39003537143704 + "points": { + "c1": -14.628390115240455, + "c2": -14.095277645015408, + "c3": 18.074433133346304, + "c4": -19.77876362880021, + "c5": 18.01411125542777, + "c6": -16.607359769325722, + "c7": -5.404895359159962 }, - "vertexSeeds": { - "c1": 5.616107446947323, - "c2": 5.621093465416343, - "c3": 5.936446110192186, - "c4": 5.784487316793215, - "c5": 5.711773509792362, - "c6": 5.806622815284876, - "c7": 5.547289347825565 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -463569,23 +463569,23 @@ "year": 1838, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -9.816499750339943, - "c2": 20.94118564075343, - "c3": -18.495366048654375, - "c4": -17.674349930053012, - "c5": 12.15651048885934, - "c6": -23.98230515412458, - "c7": -13.465857084079548 + "points": { + "c1": 26.386649431576174, + "c2": 29.324557874953044, + "c3": 12.0685377446596, + "c4": -17.127949213282932, + "c5": -11.816942465299956, + "c6": -8.793450231836964, + "c7": -0.4016875664274764 }, - "vertexSeeds": { - "c1": 6.057774712054556, - "c2": 6.079533810525188, - "c3": 6.015751872413671, - "c4": 5.787982099069519, - "c5": 6.309486754553726, - "c6": 6.2441302294962275, - "c7": 6.211291448009524 + "offsets": { + "c1": 10.744336569579287, + "c2": 9.209431345353675, + "c3": 7.674526121128062, + "c4": 6.13962089690245, + "c5": 4.6047156726768375, + "c6": 3.069810448451225, + "c7": 1.5349052242256125 }, "rgb": [86, 146, 138] }, @@ -463596,23 +463596,23 @@ "year": 1838, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 24.587242284146637, - "c2": 15.698367695233902, - "c3": -11.307687968567578, - "c4": -12.037703418774596, - "c5": -19.3613515426605, - "c6": 24.44303138299529, - "c7": -18.52499101352661 + "points": { + "c1": 25.34400685558602, + "c2": 23.775226237732443, + "c3": 19.222199444764893, + "c4": 19.67659494165817, + "c5": -10.319057496548854, + "c6": -23.845343560941114, + "c7": -9.118291136456062 }, - "vertexSeeds": { - "c1": 4.411471305233042, - "c2": 4.365033592424144, - "c3": 4.456395006481643, - "c4": 4.606373271344031, - "c5": 4.19466527218435, - "c6": 4.353702702038708, - "c7": 4.407004092228505 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653263, + "c3": 5.54785020804438, + "c4": 4.438280166435508, + "c5": 3.3287101248266264, + "c6": 2.219140083217754, + "c7": 1.1095700416088818 }, "rgb": [86, 146, 138] }, @@ -463623,23 +463623,23 @@ "year": 1838, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": 15.763638217101906, - "c2": -10.659608451208538, - "c3": -7.14060847809834, - "c4": -26.93985158866048, - "c5": 14.111005288231937, - "c6": -24.565003096068757, - "c7": -5.859508419332254 + "points": { + "c1": 17.107856360914163, + "c2": -23.29647934915015, + "c3": -27.938723553733922, + "c4": -14.591605390681547, + "c5": 16.769317884578435, + "c6": 25.58252903040453, + "c7": -11.576342957991223 }, - "vertexSeeds": { - "c1": 5.923968190491638, - "c2": 5.643122929824765, - "c3": 5.82598429186031, - "c4": 5.796070210780952, - "c5": 5.746252056389865, - "c6": 5.661745428528483, - "c7": 5.85716494863469 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -463650,23 +463650,23 @@ "year": 1838, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -11.70733195663581, - "c2": 8.985990406453581, - "c3": -23.931855045395597, - "c4": -15.735566599077162, - "c5": 12.20978290585645, - "c6": -22.051831349931547, - "c7": -0.2210189244979972 + "points": { + "c1": 18.64117543825141, + "c2": 19.314948808666074, + "c3": -13.736380953490444, + "c4": 8.107494501154093, + "c5": 15.484464107918548, + "c6": -11.029891679978547, + "c7": -25.611771933218872 }, - "vertexSeeds": { - "c1": 4.851745694340345, - "c2": 4.859037118321222, - "c3": 4.856646645208356, - "c4": 4.850435900179174, - "c5": 4.84727375695634, - "c6": 4.882865909999079, - "c7": 4.872849142065927 + "offsets": { + "c1": 8.187702265372168, + "c2": 7.0180305131761775, + "c3": 5.848358760980109, + "c4": 4.678687008784118, + "c5": 3.50901525658805, + "c6": 2.339343504392059, + "c7": 1.1696717521960682 }, "rgb": [238, 201, 159] }, @@ -463677,23 +463677,23 @@ "year": 1838, "resistanceReported": false, "duration": 10972800, - "curveSeeds": { - "c1": 12.799932679773086, - "c2": -15.937193625797857, - "c3": -11.928739268633612, - "c4": -6.063981240831739, - "c5": -19.426459123408712, - "c6": -4.112339052732274, - "c7": 13.215322724147846 + "points": { + "c1": 7.305501377012433, + "c2": -17.809797976943404, + "c3": 2.8875495885779436, + "c4": 2.4692887708389613, + "c5": 15.087325378986222, + "c6": -6.151903442036577, + "c7": 7.457841333656376 }, - "vertexSeeds": { - "c1": 4.402457631308897, - "c2": 4.578844500363366, - "c3": 4.387647485512086, - "c4": 4.582524541199136, - "c5": 4.257508215904203, - "c6": 4.469088607121765, - "c7": 4.371876043647212 + "offsets": { + "c1": 7.669902912621359, + "c2": 6.574202496532596, + "c3": 5.478502080443824, + "c4": 4.382801664355061, + "c5": 3.287101248266298, + "c6": 2.191400832177535, + "c7": 1.0957004160887631 }, "rgb": [238, 201, 159] }, @@ -463704,23 +463704,23 @@ "year": 1839, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": 10.502130471561955, - "c2": 3.8324402043542776, - "c3": 2.2589758995701743, - "c4": 16.016635449902736, - "c5": 23.24883348212075, - "c6": 16.04458132522368, - "c7": -21.294651944762105 + "points": { + "c1": -10.768613343357256, + "c2": -32.681610002065455, + "c3": 10.898023971938471, + "c4": -4.687766778881656, + "c5": 22.95977008767332, + "c6": 6.106771983351599, + "c7": 14.71634752734235 }, - "vertexSeeds": { - "c1": 3.5409353324301143, - "c2": 3.6757160715835617, - "c3": 3.3343583571098665, - "c4": 3.4161982595053155, - "c5": 3.462908336118349, - "c6": 3.473097699312405, - "c7": 3.4813699589121496 + "offsets": { + "c1": 6.181229773462784, + "c2": 5.298196948682383, + "c3": 4.4151641239019925, + "c4": 3.532131299121592, + "c5": 2.6490984743411916, + "c6": 1.7660656495608007, + "c7": 0.8830328247804003 }, "rgb": [77, 76, 132] }, @@ -463731,23 +463731,23 @@ "year": 1839, "resistanceReported": false, "duration": 17366400, - "curveSeeds": { - "c1": 5.0964003547469225, - "c2": 18.28328396196667, - "c3": -13.606366529898997, - "c4": 19.156225279473734, - "c5": 14.81814421290277, - "c6": 18.341913733839167, - "c7": -5.223388411345788 + "points": { + "c1": -25.905891899540492, + "c2": -6.668805299239036, + "c3": 28.380913856822925, + "c4": 6.219935444685692, + "c5": 28.618504167130236, + "c6": 4.891692276841344, + "c7": 17.74549773027768 }, - "vertexSeeds": { - "c1": 12.110414837252344, - "c2": 10.26968692680084, - "c3": 11.256659205768363, - "c4": 12.381963592248354, - "c5": 10.972962517444074, - "c6": 11.69568807230829, - "c7": 9.997329829512395 + "offsets": { + "c1": 22.97734627831715, + "c2": 19.694868238557554, + "c3": 16.412390198797958, + "c4": 13.129912159038373, + "c5": 9.847434119278777, + "c6": 6.56495607951918, + "c7": 3.2824780397595963 }, "rgb": [222, 0, 59] }, @@ -463758,23 +463758,23 @@ "year": 1839, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": 15.084286074536095, - "c2": -0.4995761551228881, - "c3": -20.219883862378946, - "c4": 28.89494303812326, - "c5": -27.807833031553905, - "c6": 23.566927178924566, - "c7": -21.769551082253297 + "points": { + "c1": -27.794870781607955, + "c2": 23.038309194299096, + "c3": -26.21708459917283, + "c4": -27.753342069418842, + "c5": 1.5318716332191187, + "c6": -29.41474832490738, + "c7": -4.154949365086747 }, - "vertexSeeds": { - "c1": 4.11907741660002, - "c2": 3.926234845849548, - "c3": 4.079707020274648, - "c4": 4.0218020073376, - "c5": 4.212818058758316, - "c6": 3.883955722755722, - "c7": 3.984679995209433 + "offsets": { + "c1": 7.119741100323624, + "c2": 6.10263522884882, + "c3": 5.085529357374014, + "c4": 4.06842348589922, + "c5": 3.0513176144244145, + "c6": 2.03421174294961, + "c7": 1.017105871474805 }, "rgb": [86, 146, 138] }, @@ -463785,23 +463785,23 @@ "year": 1838, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -10.506698372730721, - "c2": -23.771830684923977, - "c3": -12.23417869708652, - "c4": 2.930899396379097, - "c5": -7.919874286990222, - "c6": -0.821726103076859, - "c7": -21.768806197357087 + "points": { + "c1": 28.901813685771682, + "c2": 17.80108180291185, + "c3": 10.345950828316209, + "c4": 28.14001258017576, + "c5": 4.132457600939038, + "c6": 17.04923188281381, + "c7": 21.885249629089106 }, - "vertexSeeds": { - "c1": 4.547659252340916, - "c2": 4.649285928778208, - "c3": 4.560915628478581, - "c4": 4.648528076834284, - "c5": 4.618048070234228, - "c6": 4.648871346529973, - "c7": 4.640672062702697 + "offsets": { + "c1": 7.831715210355987, + "c2": 6.712898751733703, + "c3": 5.594082293111419, + "c4": 4.475265834489135, + "c5": 3.3564493758668514, + "c6": 2.2376329172445675, + "c7": 1.1188164586222837 }, "rgb": [238, 201, 159] }, @@ -463812,23 +463812,23 @@ "year": 1839, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 2.589530955318409, - "c2": -19.4002771038905, - "c3": -20.26651599575791, - "c4": -3.9547978546049407, - "c5": -18.30049384048835, - "c6": -19.673104470077035, - "c7": 25.44062079171139 + "points": { + "c1": -9.322221850267336, + "c2": 7.14357074036009, + "c3": 26.108781081199474, + "c4": 29.22882544974963, + "c5": -19.88422207298439, + "c6": 20.74469146560157, + "c7": 32.817632889762606 }, - "vertexSeeds": { - "c1": 2.334821968511002, - "c2": 2.421365719505157, - "c3": 2.3288469469304314, - "c4": 2.3448437093314474, - "c5": 2.4396901227726575, - "c6": 2.2509920316667245, - "c7": 2.3407628253769683 + "offsets": { + "c1": 4.174757281553398, + "c2": 3.578363384188628, + "c3": 2.981969486823858, + "c4": 2.385575589459084, + "c5": 1.789181692094314, + "c6": 1.1927877947295442, + "c7": 0.5963938973647743 }, "rgb": [86, 146, 138] }, @@ -463839,23 +463839,23 @@ "year": 1839, "resistanceReported": false, "duration": 15465600, - "curveSeeds": { - "c1": -20.91609332621498, - "c2": -6.0981874905952616, - "c3": 14.591513309646498, - "c4": 5.381556195323281, - "c5": -20.35293651864806, - "c6": -16.625064776473323, - "c7": 23.60864968520526 + "points": { + "c1": 18.487871206539854, + "c2": -25.513552173374237, + "c3": -20.686568895593872, + "c4": 24.548512526552795, + "c5": 26.93734325679944, + "c6": -3.107706735453437, + "c7": 5.599465471003565 }, - "vertexSeeds": { - "c1": 4.656208801452495, - "c2": 4.694087684394792, - "c3": 4.564046085471578, - "c4": 4.8565237158527275, - "c5": 4.801777135408624, - "c6": 4.403600121287415, - "c7": 4.8644479851148805 + "offsets": { + "c1": 8.155339805825243, + "c2": 6.990291262135918, + "c3": 5.825242718446603, + "c4": 4.660194174757279, + "c5": 3.4951456310679636, + "c6": 2.3300970873786393, + "c7": 1.1650485436893152 }, "rgb": [58, 15, 49] }, @@ -463866,23 +463866,23 @@ "year": 1839, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -9.924814521381197, - "c2": -5.285876132900896, - "c3": 24.23265255797708, - "c4": -24.981412662938858, - "c5": 21.64870897253849, - "c6": 14.081430331151207, - "c7": 6.988876433996527 + "points": { + "c1": 15.134224463004085, + "c2": -16.390844310964056, + "c3": -5.033040197924201, + "c4": -2.1409283578793783, + "c5": 5.627804827454408, + "c6": 18.378349276867457, + "c7": -21.020541181549014 }, - "vertexSeeds": { - "c1": 6.210512282801024, - "c2": 6.2949016607887645, - "c3": 6.091084145587685, - "c4": 6.332558947563666, - "c5": 5.770674117377545, - "c6": 6.0762232399651985, - "c7": 5.733457995527275 + "offsets": { + "c1": 10.58252427184466, + "c2": 9.07073509015256, + "c3": 7.55894590846048, + "c4": 6.04715672676838, + "c5": 4.53536754507628, + "c6": 3.0235783633841997, + "c7": 1.5117891816920999 }, "rgb": [222, 0, 59] }, @@ -463893,23 +463893,23 @@ "year": 1840, "resistanceReported": false, "duration": 46742400, - "curveSeeds": { - "c1": 58.663928664609465, - "c2": 16.325169055035254, - "c3": -43.07543090378233, - "c4": 6.144673114627601, - "c5": 55.68279111970215, - "c6": -27.667960470233304, - "c7": 45.5188026186814 + "points": { + "c1": -1.5716566915981716, + "c2": -22.699508290721646, + "c3": -45.671416385692666, + "c4": 19.284065923772594, + "c5": -35.3776368299978, + "c6": -1.807921738347929, + "c7": 15.156918330873658 }, - "vertexSeeds": { - "c1": 6.363395475117179, - "c2": 6.331728154737316, - "c3": 6.675219188800967, - "c4": 6.635288793183856, - "c5": 6.750797168133375, - "c6": 6.4986702643728345, - "c7": 6.388324020125289 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158125, + "c3": 8.136846971798425, + "c4": 6.5094775774387506, + "c5": 4.882108183079051, + "c6": 3.2547387887193753, + "c7": 1.6273693943596756 }, "rgb": [238, 201, 159] }, @@ -463920,23 +463920,23 @@ "year": 1839, "resistanceReported": false, "duration": 15292800, - "curveSeeds": { - "c1": 16.773761919196694, - "c2": -3.3133928173388583, - "c3": -8.819416020932863, - "c4": 11.891916615720056, - "c5": 12.062441176829722, - "c6": 9.414808059038961, - "c7": -23.144855898764146 + "points": { + "c1": -8.409409606354334, + "c2": -26.007387091102036, + "c3": -11.723556577229214, + "c4": -11.819733861269924, + "c5": -13.383901256454871, + "c6": -16.66879447957697, + "c7": -4.805176479291969 }, - "vertexSeeds": { - "c1": 14.350402430343717, - "c2": 14.380962940918891, - "c3": 11.662895628052786, - "c4": 15.50760382949392, - "c5": 15.006997026334133, - "c6": 14.927634943243643, - "c7": 11.374038113497354 + "offsets": { + "c1": 26.537216828478964, + "c2": 22.746185852981966, + "c3": 18.95515487748498, + "c4": 15.164123901987981, + "c5": 11.373092926490994, + "c6": 7.582061950993997, + "c7": 3.7910309754969984 }, "rgb": [238, 201, 159] }, @@ -463947,23 +463947,23 @@ "year": 1839, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": -18.332435359858433, - "c2": -3.0061905357766108, - "c3": 13.241183646247976, - "c4": -17.270831879485335, - "c5": 22.25044699321691, - "c6": -2.566283555488525, - "c7": -24.0223882452338 + "points": { + "c1": 10.128974810398738, + "c2": 13.720308368152494, + "c3": -17.556986705545544, + "c4": 23.9606037013395, + "c5": -18.632431729786802, + "c6": 13.063950954186375, + "c7": -17.84058125091399 }, - "vertexSeeds": { - "c1": 15.014365433419327, - "c2": 15.4812720739641, - "c3": 15.381560560168573, - "c4": 14.288528814355795, - "c5": 14.29043274748908, - "c6": 14.86050368262719, - "c7": 15.083397697677432 + "offsets": { + "c1": 26.084142394822006, + "c2": 22.357836338418853, + "c3": 18.631530282015735, + "c4": 14.90522422561258, + "c5": 11.178918169209426, + "c6": 7.45261211280631, + "c7": 3.726306056403155 }, "rgb": [86, 146, 138] }, @@ -463974,23 +463974,23 @@ "year": 1839, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -6.623312933219431, - "c2": -16.87365359839581, - "c3": -16.73282511354828, - "c4": -13.382820904073908, - "c5": 17.464525450950063, - "c6": 22.626877941973554, - "c7": -7.508119242868643 + "points": { + "c1": 3.595229965858586, + "c2": 5.864891796927537, + "c3": 17.52262821156844, + "c4": 8.977592670052104, + "c5": -21.299156981747522, + "c6": 8.230988089812158, + "c7": 13.999260535535619 }, - "vertexSeeds": { - "c1": 19.440807049333444, - "c2": 16.933878910143076, - "c3": 19.235641694862572, - "c4": 17.29461610554248, - "c5": 21.358088120456653, - "c6": 18.279399274736207, - "c7": 19.614427385894096 + "offsets": { + "c1": 36.24595469255664, + "c2": 31.067961165048544, + "c3": 25.88996763754045, + "c4": 20.711974110032358, + "c5": 15.533980582524281, + "c6": 10.355987055016188, + "c7": 5.177993527508094 }, "rgb": [222, 0, 59] }, @@ -464001,23 +464001,23 @@ "year": 1839, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": 30.271833392550167, - "c2": -22.79505255850912, - "c3": -26.95816580521609, - "c4": -24.657662377831993, - "c5": -10.829851735776241, - "c6": -21.52753424316209, - "c7": -10.037064755215876 + "points": { + "c1": 18.59987425484421, + "c2": -19.62778176682884, + "c3": 29.65646018136365, + "c4": 2.4303273471670295, + "c5": -23.6377006817093, + "c6": 33.02571464218559, + "c7": -24.159134231540484 }, - "vertexSeeds": { - "c1": 7.729901441588201, - "c2": 7.716225392841547, - "c3": 7.3016951737570475, - "c4": 7.30649444841701, - "c5": 7.475298249122694, - "c6": 7.697546180922473, - "c7": 7.466939181692065 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.151178918169206, + "c3": 9.292649098474351, + "c4": 7.434119278779476, + "c5": 5.575589459084603, + "c6": 3.7170596393897286, + "c7": 1.858529819694874 }, "rgb": [86, 146, 138] }, @@ -464028,23 +464028,23 @@ "year": 1839, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": 0.8248398529896335, - "c2": 19.082378642404972, - "c3": 12.484320582776622, - "c4": -12.75217249586745, - "c5": -26.155796233636, - "c6": 7.565842831724428, - "c7": 5.535969866214206 + "points": { + "c1": -23.27393338408853, + "c2": 2.9053033450602044, + "c3": 22.50975180126832, + "c4": -0.004779059073793945, + "c5": -21.375820386474267, + "c6": 19.1190149862862, + "c7": 22.869729727652473 }, - "vertexSeeds": { - "c1": 14.658298332007735, - "c2": 14.84543467332463, - "c3": 15.019719481750085, - "c4": 15.987621620747202, - "c5": 15.256115176419952, - "c6": 14.722085566743008, - "c7": 16.10262081428814 + "offsets": { + "c1": 26.893203883495147, + "c2": 23.051317614424423, + "c3": 19.209431345353696, + "c4": 15.367545076282934, + "c5": 11.525658807212212, + "c6": 7.683772538141488, + "c7": 3.841886269070724 }, "rgb": [58, 15, 49] }, @@ -464055,23 +464055,23 @@ "year": 1839, "resistanceReported": false, "duration": 16588800, - "curveSeeds": { - "c1": 7.142562332928144, - "c2": -15.689098532369002, - "c3": -19.52342742443504, - "c4": -15.140057712822674, - "c5": 21.311539845377794, - "c6": 12.032380967153024, - "c7": 1.7207237020917532 + "points": { + "c1": -28.053455885413786, + "c2": -5.133602519761954, + "c3": 23.92207296745891, + "c4": 29.433911070035684, + "c5": 24.374009048208165, + "c6": 3.717029082828887, + "c7": -29.446455761721808 }, - "vertexSeeds": { - "c1": 7.893442898806703, - "c2": 8.205842332998062, - "c3": 8.468124278709956, - "c4": 8.419951254541857, - "c5": 8.221377568080682, - "c6": 8.117603205672067, - "c7": 8.531034320669452 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778086, + "c3": 10.217290799815071, + "c4": 8.173832639852057, + "c5": 6.130374479889043, + "c6": 4.086916319926028, + "c7": 2.043458159963014 }, "rgb": [77, 76, 132] }, @@ -464082,23 +464082,23 @@ "year": 1839, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": 4.445411715524784, - "c2": -24.97359966725476, - "c3": -8.570831078111343, - "c4": -3.2769533182614765, - "c5": 11.542816092745262, - "c6": 15.386997242959595, - "c7": 6.338884457572497 + "points": { + "c1": 12.303592085707393, + "c2": -5.752726872014954, + "c3": 29.331711684187795, + "c4": 29.523524894108768, + "c5": -28.552744502078163, + "c6": 7.851340881433472, + "c7": -0.30283017399625933 }, - "vertexSeeds": { - "c1": 8.76194327789781, - "c2": 8.576847024526955, - "c3": 8.772993231511316, - "c4": 8.598692057391666, - "c5": 8.949186564154319, - "c6": 8.636307144389392, - "c7": 8.992652678524703 + "offsets": { + "c1": 15.177993527508091, + "c2": 13.00970873786408, + "c3": 10.84142394822007, + "c4": 8.673139158576042, + "c5": 6.504854368932031, + "c6": 4.336569579288021, + "c7": 2.1682847896440105 }, "rgb": [86, 146, 138] }, @@ -464109,23 +464109,23 @@ "year": 1839, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -16.01223117876789, - "c2": -3.6351214263944165, - "c3": -5.364977687156802, - "c4": -2.0415248074876295, - "c5": 14.996066050903167, - "c6": -25.654132410829444, - "c7": -17.279734140805132 + "points": { + "c1": -9.821043421189124, + "c2": -8.831869082867346, + "c3": -27.705959740983594, + "c4": 4.997040429292035, + "c5": 22.394067483638423, + "c6": 18.846675043285607, + "c7": -27.843347331980254 }, - "vertexSeeds": { - "c1": 6.153833798100901, - "c2": 5.984992022139233, - "c3": 5.848609921968016, - "c4": 5.921514100574075, - "c5": 6.036365992111966, - "c6": 6.105108451718813, - "c7": 6.006063732475935 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.181692094313451, + "c3": 7.651410078594539, + "c4": 6.121128062875629, + "c5": 4.590846047156735, + "c6": 3.0605640314378233, + "c7": 1.5302820157189116 }, "rgb": [58, 15, 49] }, @@ -464136,23 +464136,23 @@ "year": 1839, "resistanceReported": false, "duration": 6393600, - "curveSeeds": { - "c1": 14.165134678852304, - "c2": 13.704475202784568, - "c3": -6.432580622967524, - "c4": 16.372097018806098, - "c5": -10.762814869684068, - "c6": -1.986988292668233, - "c7": -4.003916095831402 + "points": { + "c1": 1.3762979834360536, + "c2": -6.786360929478063, + "c3": 4.061904368037538, + "c4": 14.336470311655741, + "c5": -10.500849320696803, + "c6": -5.152052414962974, + "c7": -12.120377697092813 }, - "vertexSeeds": { - "c1": 3.6917098445595853, - "c2": 3.6917098445595853, - "c3": 3.6917098445595853, - "c4": 3.6917098445595853, - "c5": 3.6917098445595853, - "c6": 3.6917098445595853, - "c7": 3.6917098445595853 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -464163,23 +464163,23 @@ "year": 1839, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": 15.447148792360938, - "c2": 2.1347798410134793, - "c3": 20.642646025373427, - "c4": -26.34474936914677, - "c5": 23.198763451038392, - "c6": 2.1983530092815435, - "c7": -21.243144875129712 + "points": { + "c1": -16.796698637233746, + "c2": -27.79321511882418, + "c3": 18.535986658557587, + "c4": -9.934370699442884, + "c5": -14.612397278336177, + "c6": -1.1245082741622738, + "c7": 11.301165506351683 }, - "vertexSeeds": { - "c1": 12.870816896687698, - "c2": 13.092568477428774, - "c3": 13.371590527845683, - "c4": 12.921923175688347, - "c5": 13.284678245591834, - "c6": 12.69889313963808, - "c7": 13.669865202200569 + "offsets": { + "c1": 23.20388349514563, + "c2": 19.889042995839116, + "c3": 16.574202496532603, + "c4": 13.25936199722609, + "c5": 9.944521497919578, + "c6": 6.6296809986130265, + "c7": 3.3148404993065133 }, "rgb": [86, 146, 138] }, @@ -464190,23 +464190,23 @@ "year": 1839, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": -16.582962234550727, - "c2": -0.11543502770143377, - "c3": -19.908115398428887, - "c4": 5.518028327710521, - "c5": 9.865579564540564, - "c6": 3.835042139397885, - "c7": -3.847781211155766 + "points": { + "c1": -16.495332246859228, + "c2": 18.587445617759986, + "c3": 0.9759836850954358, + "c4": 18.427450419381262, + "c5": 14.323127625129136, + "c6": -16.506499377204513, + "c7": 19.360411952546517 }, - "vertexSeeds": { - "c1": 6.850679064527913, - "c2": 7.088098070015916, - "c3": 6.5401663765976465, - "c4": 6.733358624118939, - "c5": 7.127972399507603, - "c6": 6.886459252470826, - "c7": 6.629612183837923 + "offsets": { + "c1": 12.071197411003237, + "c2": 10.346740638002768, + "c3": 8.622283865002315, + "c4": 6.897827092001844, + "c5": 5.173370319001392, + "c6": 3.448913546000922, + "c7": 1.7244567730004519 }, "rgb": [77, 76, 132] }, @@ -464217,23 +464217,23 @@ "year": 1838, "resistanceReported": false, "duration": 3369600, - "curveSeeds": { - "c1": -9.429151821175783, - "c2": -12.392038143065124, - "c3": 0.9617902436874957, - "c4": 7.98685575278723, - "c5": 11.12671845520005, - "c6": 10.511789163276083, - "c7": -8.909642792185691 + "points": { + "c1": 6.500343058548134, + "c2": 14.85141881898163, + "c3": 9.429358587709272, + "c4": -4.956457088470136, + "c5": 9.798633503239488, + "c6": -11.661311056594172, + "c7": -6.599481487669717 }, - "vertexSeeds": { - "c1": 9.03740248958696, - "c2": 9.029347124372535, - "c3": 9.053136540210977, - "c4": 9.036942788965932, - "c5": 9.039383625890126, - "c6": 9.035644319318939, - "c7": 9.03453126191034 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783696, + "c3": 10.795191863153152, + "c4": 8.636153490522606, + "c5": 6.477115117891633, + "c6": 4.318076745261089, + "c7": 2.1590383726305444 }, "rgb": [86, 146, 138] }, @@ -464244,23 +464244,23 @@ "year": 1839, "resistanceReported": false, "duration": 9244800, - "curveSeeds": { - "c1": 6.273878514542911, - "c2": -13.26594861656882, - "c3": -1.7842621701747206, - "c4": 2.6874127409203687, - "c5": -7.7182984023100225, - "c6": -9.603596694716465, - "c7": 4.498878542781437 + "points": { + "c1": -3.9027153293873624, + "c2": -3.798312682282173, + "c3": -14.560226897979765, + "c4": -12.514822925083708, + "c5": 20.01553647364095, + "c6": 3.077517237890131, + "c7": -12.27601454578932 }, - "vertexSeeds": { - "c1": 4.627310840944197, - "c2": 4.466226480834045, - "c3": 4.7238894863126495, - "c4": 4.704483030563207, - "c5": 4.6519369458850015, - "c6": 4.801439909810836, - "c7": 4.597333113866943 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216361, + "c3": 5.871474803513639, + "c4": 4.697179842810907, + "c5": 3.522884882108185, + "c6": 2.3485899214054533, + "c7": 1.1742949607027222 }, "rgb": [58, 15, 49] }, @@ -464271,23 +464271,23 @@ "year": 1839, "resistanceReported": false, "duration": 18835200, - "curveSeeds": { - "c1": -27.659131758782614, - "c2": 20.435747529321514, - "c3": -4.615160309735209, - "c4": 7.36313000696234, - "c5": 16.198326416673492, - "c6": 5.126105639734721, - "c7": 28.53689927519635 + "points": { + "c1": -26.456683430838662, + "c2": -21.794277046576134, + "c3": -2.235848076206633, + "c4": 30.803413683830044, + "c5": 12.504667432406713, + "c6": -2.894388075903116, + "c7": -28.654042262485284 }, - "vertexSeeds": { - "c1": 3.8901748950240767, - "c2": 3.9226429785741432, - "c3": 3.828002256899364, - "c4": 3.836332538522112, - "c5": 3.84964258200536, - "c6": 3.8264069938135896, - "c7": 3.814803412932369 + "offsets": { + "c1": 6.569579288025889, + "c2": 5.631067961165043, + "c3": 4.692556634304198, + "c4": 3.754045307443352, + "c5": 2.8155339805825372, + "c6": 1.8770226537216916, + "c7": 0.9385113268608458 }, "rgb": [77, 76, 132] }, @@ -464298,23 +464298,23 @@ "year": 1839, "resistanceReported": false, "duration": 14688000, - "curveSeeds": { - "c1": -23.507189757768835, - "c2": -19.991076393316128, - "c3": -1.1910489592796907, - "c4": -6.8105733314664185, - "c5": -13.286351136147646, - "c6": 8.040702959706671, - "c7": -23.67810177868416 + "points": { + "c1": 27.30342838280768, + "c2": 9.602728712571128, + "c3": -12.994154689880524, + "c4": -11.597369111594507, + "c5": -4.353225837008619, + "c6": 16.76214292863942, + "c7": 14.00424600312747 }, - "vertexSeeds": { - "c1": 7.3582015374516985, - "c2": 7.6528014873920425, - "c3": 7.834178483167861, - "c4": 7.3485258725011136, - "c5": 7.5249195212751845, - "c6": 7.76622508020138, - "c7": 7.195951012000381 + "offsets": { + "c1": 13.430420711974108, + "c2": 11.511789181692087, + "c3": 9.593157651410085, + "c4": 7.674526121128064, + "c5": 5.755894590846044, + "c6": 3.83726306056404, + "c7": 1.91863153028202 }, "rgb": [238, 201, 159] }, @@ -464325,23 +464325,23 @@ "year": 1839, "resistanceReported": false, "duration": 23155200, - "curveSeeds": { - "c1": -23.184584991990217, - "c2": -8.8264492475943, - "c3": 8.935437475835556, - "c4": 11.45777060410144, - "c5": -3.589010617914191, - "c6": 8.315916155275389, - "c7": 1.087146175567895 + "points": { + "c1": 24.133142617300074, + "c2": -21.554303653123483, + "c3": -7.906988059133287, + "c4": 13.873763952659147, + "c5": 28.563509272960772, + "c6": -16.008751695888233, + "c7": 34.08841513001907 }, - "vertexSeeds": { - "c1": 8.257936638734863, - "c2": 8.261406019515256, - "c3": 8.235764238829534, - "c4": 8.258679024531915, - "c5": 8.251640317790004, - "c6": 8.23243335038471, - "c7": 8.245645687223558 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.761442441054019, + "c3": 9.801202034211855, + "c4": 7.840961627369432, + "c5": 5.880721220527009, + "c6": 3.920480813684586, + "c7": 1.9602404068424228 }, "rgb": [86, 146, 138] }, @@ -464352,23 +464352,23 @@ "year": 1839, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 18.20592558518027, - "c2": 15.852368183805108, - "c3": -24.923712824537432, - "c4": 16.188791813115547, - "c5": -11.802374246340111, - "c6": 25.80950168830962, - "c7": -25.932020971525564 + "points": { + "c1": -10.461273477749046, + "c2": 5.802332929569463, + "c3": 19.42692607568814, + "c4": 7.272051802502499, + "c5": 1.5315281308252189, + "c6": -14.514474920816099, + "c7": 21.061864015950665 }, - "vertexSeeds": { - "c1": 7.308770728819021, - "c2": 7.050437093962045, - "c3": 7.025561121054354, - "c4": 6.887949717646499, - "c5": 7.095753814280578, - "c6": 7.1630653773639725, - "c7": 7.24556977438324 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152565, + "c3": 8.922792417938052, + "c4": 7.138233934350433, + "c5": 5.353675450762836, + "c6": 3.5691169671752165, + "c7": 1.7845584835876185 }, "rgb": [77, 76, 132] }, @@ -464379,23 +464379,23 @@ "year": 1839, "resistanceReported": false, "duration": 11059200, - "curveSeeds": { - "c1": -16.912616935356546, - "c2": -3.3258475173693434, - "c3": 11.607309399383269, - "c4": -20.820576408648222, - "c5": -12.998743629881307, - "c6": -4.628308661057858, - "c7": -16.776820861768808 + "points": { + "c1": -15.513309031746639, + "c2": -20.08524417485316, + "c3": -17.609357417762784, + "c4": -12.253311986871513, + "c5": -8.605310810266381, + "c6": 17.724767106442066, + "c7": 8.132131329377586 }, - "vertexSeeds": { - "c1": 6.885847980364612, - "c2": 6.748821877719482, - "c3": 7.009596129043246, - "c4": 6.598236070556663, - "c5": 7.032011093578552, - "c6": 6.637561496232572, - "c7": 7.024784141370082 + "offsets": { + "c1": 11.909385113268609, + "c2": 10.208044382801663, + "c3": 8.506703652334716, + "c4": 6.805362921867787, + "c5": 5.10402219140084, + "c6": 3.4026814609338936, + "c7": 1.7013407304669468 }, "rgb": [86, 146, 138] }, @@ -464406,23 +464406,23 @@ "year": 1839, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -31.275716605443012, - "c2": 21.696392605513882, - "c3": -3.5656179710390568, - "c4": 25.89065266732297, - "c5": 27.248294079054315, - "c6": -14.996953103482461, - "c7": -6.417178707483192 + "points": { + "c1": 29.360486825267508, + "c2": -14.374951550322471, + "c3": 2.7021761880199264, + "c4": 11.222562452945759, + "c5": 2.693634096221139, + "c6": 7.413214850527439, + "c7": -33.52331713758192 }, - "vertexSeeds": { - "c1": 5.872738565136774, - "c2": 5.748310013216665, - "c3": 5.568553083262853, - "c4": 5.722877269241352, - "c5": 5.476717921582304, - "c6": 5.568078129792714, - "c7": 5.76928291982081 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -464433,23 +464433,23 @@ "year": 1839, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 24.169087018518777, - "c2": -8.653987054955586, - "c3": 19.364145008009434, - "c4": 10.131729412640436, - "c5": 14.37694530348345, - "c6": -24.64921339067732, - "c7": 14.355597578828526 + "points": { + "c1": -7.744457085814599, + "c2": 9.185915529079576, + "c3": -17.821383773950622, + "c4": 3.7762743229097566, + "c5": -4.270174146523715, + "c6": 25.26030171346846, + "c7": 16.050631396601613 }, - "vertexSeeds": { - "c1": 5.919989775539144, - "c2": 5.932882893347645, - "c3": 5.924141937537483, - "c4": 5.4922364143118925, - "c5": 5.504920436393665, - "c6": 5.519746715301779, - "c7": 5.656492654238047 + "offsets": { + "c1": 10, + "c2": 8.571428571428562, + "c3": 7.142857142857145, + "c4": 5.714285714285708, + "c5": 4.285714285714292, + "c6": 2.857142857142854, + "c7": 1.428571428571437 }, "rgb": [86, 146, 138] }, @@ -464460,23 +464460,23 @@ "year": 1839, "resistanceReported": false, "duration": 25660800, - "curveSeeds": { - "c1": 25.128308734600424, - "c2": -7.817614600888231, - "c3": 35.382606609724846, - "c4": 8.29360945761379, - "c5": -5.03123071694538, - "c6": 17.165560993912727, - "c7": -12.655082923652934 + "points": { + "c1": 11.727754740052852, + "c2": 9.68835111599713, + "c3": 33.70619034554451, + "c4": 9.486856687705874, + "c5": -34.13108788428609, + "c6": 17.20785802077973, + "c7": 8.357131920271797 }, - "vertexSeeds": { - "c1": 5.573627434563284, - "c2": 5.698749213198759, - "c3": 5.40061815615699, - "c4": 5.824305132459276, - "c5": 5.602771095574969, - "c6": 5.770164658693957, - "c7": 5.424835298798942 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -464487,23 +464487,23 @@ "year": 1839, "resistanceReported": false, "duration": 19785600, - "curveSeeds": { - "c1": -5.640344045971371, - "c2": 25.903573105531365, - "c3": 13.174645825723665, - "c4": -20.504113690091707, - "c5": -17.987811264650706, - "c6": -17.12448581805947, - "c7": 2.770123460287543 + "points": { + "c1": 6.380566080115713, + "c2": 28.179553152235385, + "c3": 18.196559731574112, + "c4": -7.653637083356724, + "c5": -7.772130117294054, + "c6": 33.0707314729298, + "c7": 9.892069674750744 }, - "vertexSeeds": { - "c1": 8.808320080899456, - "c2": 8.870986653720339, - "c3": 9.566713749093314, - "c4": 9.105451428928335, - "c5": 9.405820102448935, - "c6": 8.917589246643589, - "c7": 9.578379941097793 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.786407766990289, + "c3": 11.488673139158571, + "c4": 9.190938511326854, + "c5": 6.893203883495135, + "c6": 4.595469255663416, + "c7": 2.2977346278316984 }, "rgb": [222, 0, 59] }, @@ -464514,23 +464514,23 @@ "year": 1839, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 15.379970598399659, - "c2": -8.370916556938614, - "c3": 10.763509239001337, - "c4": -21.56615326471987, - "c5": 28.561041040208778, - "c6": -6.338819168104539, - "c7": 9.05454440756786 + "points": { + "c1": -2.914763941082171, + "c2": -10.684109220691113, + "c3": -27.812399775751494, + "c4": 9.925976840502834, + "c5": 17.49940054303474, + "c6": -24.895301563235932, + "c7": 14.901473566927208 }, - "vertexSeeds": { - "c1": 12.230749649080233, - "c2": 12.723062705326434, - "c3": 12.073185795400308, - "c4": 12.230362845256504, - "c5": 11.948614379980231, - "c6": 11.906107361154648, - "c7": 11.95547992427788 + "offsets": { + "c1": 21.423948220064727, + "c2": 18.3633841886269, + "c3": 15.302820157189107, + "c4": 12.242256125751279, + "c5": 9.18169209431345, + "c6": 6.121128062875619, + "c7": 3.060564031437829 }, "rgb": [58, 15, 49] }, @@ -464541,23 +464541,23 @@ "year": 1839, "resistanceReported": false, "duration": 15552000, - "curveSeeds": { - "c1": -15.12751442635067, - "c2": 18.67880367607351, - "c3": 12.391571719441512, - "c4": -15.043029148699315, - "c5": 24.80265001327719, - "c6": -14.461075280555848, - "c7": 22.417938198787557 + "points": { + "c1": 9.729258667120295, + "c2": -9.222857908575591, + "c3": -19.16472753568132, + "c4": 11.190167851505297, + "c5": -27.83611341388425, + "c6": -17.63738343796653, + "c7": 13.7251934747074 }, - "vertexSeeds": { - "c1": 9.014105876673725, - "c2": 8.87029448528819, - "c3": 9.017225240110852, - "c4": 9.329716625202536, - "c5": 8.476315729946503, - "c6": 8.99957949381478, - "c7": 9.26646287879872 + "offsets": { + "c1": 15.825242718446603, + "c2": 13.564493758668522, + "c3": 11.30374479889043, + "c4": 9.042995839112349, + "c5": 6.782246879334254, + "c6": 4.521497919556174, + "c7": 2.26074895977808 }, "rgb": [222, 0, 59] }, @@ -464568,23 +464568,23 @@ "year": 1839, "resistanceReported": false, "duration": 9244800, - "curveSeeds": { - "c1": 15.228508780669728, - "c2": 8.82866523626453, - "c3": 19.17019593043195, - "c4": 5.85808998497637, - "c5": 3.4039976516519594, - "c6": -17.252578193560844, - "c7": 18.552231540219005 + "points": { + "c1": -14.562114051553994, + "c2": 19.517765503581806, + "c3": 20.30269435420699, + "c4": -21.574351333779482, + "c5": 7.794884078514567, + "c6": 14.181331993002566, + "c7": -14.818647329485568 }, - "vertexSeeds": { - "c1": 0, - "c2": 0, - "c3": 0, - "c4": 0, - "c5": 0, - "c6": 0, - "c7": 0 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -464595,23 +464595,23 @@ "year": 1839, "resistanceReported": false, "duration": 21686400, - "curveSeeds": { - "c1": -30.910173889946428, - "c2": 27.683738834536385, - "c3": -29.89308853233358, - "c4": -26.48855303573064, - "c5": 3.2371270339397498, - "c6": -24.14939728047848, - "c7": -18.409587348660484 + "points": { + "c1": -23.76617376415896, + "c2": 21.048128223787693, + "c3": -26.543677312053372, + "c4": 19.77273175523564, + "c5": -35.13407230961901, + "c6": -28.10479924698314, + "c7": -26.044150795828095 }, - "vertexSeeds": { - "c1": 7.317592393620994, - "c2": 7.363032262488772, - "c3": 7.539915776719953, - "c4": 7.497532823009814, - "c5": 7.281995647120865, - "c6": 7.279687360569745, - "c7": 7.749849863568756 + "offsets": { + "c1": 13.203883495145632, + "c2": 11.317614424410538, + "c3": 9.43134535367546, + "c4": 7.5450762829403635, + "c5": 5.658807212205269, + "c6": 3.7725381414701724, + "c7": 1.8862690707350962 }, "rgb": [238, 201, 159] }, @@ -464622,23 +464622,23 @@ "year": 1839, "resistanceReported": false, "duration": 8035200, - "curveSeeds": { - "c1": -6.827012678349789, - "c2": 9.471619721951782, - "c3": -5.552361555186483, - "c4": 12.070174624618865, - "c5": -14.321204621674449, - "c6": -7.466605125459791, - "c7": -1.4716969431929563 + "points": { + "c1": 14.882081532729842, + "c2": 10.439437825646316, + "c3": 7.74411639040504, + "c4": 11.592364765450341, + "c5": -2.9112925457385046, + "c6": 18.380900850127034, + "c7": 15.220915056471185 }, - "vertexSeeds": { - "c1": 4.811107432212519, - "c2": 5.023716821522198, - "c3": 5.0041936403607945, - "c4": 4.841593103560781, - "c5": 5.142793423227649, - "c6": 5.166795476739646, - "c7": 4.798158066536304 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [238, 201, 159] }, @@ -464649,23 +464649,23 @@ "year": 1839, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 10.74645598740491, - "c2": 22.432013381806737, - "c3": -1.1270922450339391, - "c4": -18.126962969731856, - "c5": -21.89878227268835, - "c6": 20.947376617547423, - "c7": -24.992908382678163 + "points": { + "c1": -16.251547358182762, + "c2": 29.026214678989408, + "c3": -18.488216604574802, + "c4": -18.74580913440985, + "c5": -29.26549649942999, + "c6": 21.240154404887928, + "c7": -6.666499274934807 }, - "vertexSeeds": { - "c1": 6.595819338697106, - "c2": 6.551065303610264, - "c3": 6.634751759602453, - "c4": 6.611405775953938, - "c5": 6.588982525783863, - "c6": 6.626297015300881, - "c7": 6.551243351669002 + "offsets": { + "c1": 11.132686084142394, + "c2": 9.542302357836382, + "c3": 7.951918631530266, + "c4": 6.361534905224255, + "c5": 4.771151178918139, + "c6": 3.1807674526121277, + "c7": 1.590383726306011 }, "rgb": [238, 201, 159] }, @@ -464676,23 +464676,23 @@ "year": 1839, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -18.652328655355795, - "c2": 18.923323968898487, - "c3": -22.803065417256406, - "c4": 14.08356834322533, - "c5": -25.832843678670415, - "c6": 14.323174237987146, - "c7": -20.636464571086893 + "points": { + "c1": -15.238958552197715, + "c2": 23.788801031040016, + "c3": -20.192332115553796, + "c4": -6.124398849688703, + "c5": 0.2989421127229903, + "c6": -5.3005012754687435, + "c7": -0.9699008153433724 }, - "vertexSeeds": { - "c1": 8.038410955068647, - "c2": 7.504005930977986, - "c3": 7.455331744606306, - "c4": 8.154971480062482, - "c5": 7.783480958401567, - "c6": 7.966273696950202, - "c7": 8.148315175822377 + "offsets": { + "c1": 13.72168284789644, + "c2": 11.76144244105409, + "c3": 9.801202034211737, + "c4": 7.840961627369406, + "c5": 5.880721220527054, + "c6": 3.920480813684703, + "c7": 1.9602404068423516 }, "rgb": [222, 0, 59] }, @@ -464703,23 +464703,23 @@ "year": 1839, "resistanceReported": false, "duration": 5011200, - "curveSeeds": { - "c1": 13.602475344408601, - "c2": 10.650418637094697, - "c3": -14.316604485944502, - "c4": -15.184682146972088, - "c5": -3.7371562277669046, - "c6": -9.636132684309938, - "c7": -14.740160838985362 + "points": { + "c1": -2.551951254860432, + "c2": -13.47945316276746, + "c3": 12.598453538626131, + "c4": 6.921522309810786, + "c5": 9.06142504866509, + "c6": -5.35023107104645, + "c7": 1.8992284893284825 }, - "vertexSeeds": { - "c1": 6.974284206446269, - "c2": 6.961118727285687, - "c3": 6.950069252081711, - "c4": 6.9743482236145145, - "c5": 6.973984273937036, - "c6": 6.967279800339122, - "c7": 6.966949500356443 + "offsets": { + "c1": 11.650485436893204, + "c2": 9.986130374479936, + "c3": 8.321775312066668, + "c4": 6.657420249653401, + "c5": 4.993065187239803, + "c6": 3.328710124826535, + "c7": 1.6643550624132675 }, "rgb": [58, 15, 49] }, @@ -464730,23 +464730,23 @@ "year": 1839, "resistanceReported": false, "duration": 19094400, - "curveSeeds": { - "c1": 27.506592143691304, - "c2": -5.839332234918498, - "c3": 11.293903493816938, - "c4": -24.23652100746666, - "c5": 9.373805041226728, - "c6": -12.72778421690732, - "c7": 3.5727460248485023 + "points": { + "c1": 5.953981053279527, + "c2": 30.221464431155184, + "c3": 15.859612657899525, + "c4": -7.856104747407265, + "c5": 28.316547454022015, + "c6": -2.7011387539977676, + "c7": 27.05256711718205 }, - "vertexSeeds": { - "c1": 7.95420681139115, - "c2": 7.343636930709592, - "c3": 7.2714835648607945, - "c4": 7.200183907283284, - "c5": 7.9044217296473605, - "c6": 7.869637921431948, - "c7": 7.423905055263463 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [86, 146, 138] }, @@ -464757,23 +464757,23 @@ "year": 1839, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": 21.94127767657062, - "c2": -13.564729477934911, - "c3": 8.68894856708122, - "c4": 25.153286470937417, - "c5": 21.157489742660736, - "c6": 2.7382812262324734, - "c7": 12.65053056276529 + "points": { + "c1": -31.9130455210519, + "c2": 27.473460834594043, + "c3": -3.718831487349064, + "c4": 23.388901615920396, + "c5": -26.527229187034216, + "c6": -17.481589546164386, + "c7": 4.742743621996496 }, - "vertexSeeds": { - "c1": 8.644282870647134, - "c2": 9.057260871202777, - "c3": 8.448144392973193, - "c4": 8.464863992050658, - "c5": 8.642295088347698, - "c6": 8.52035356159877, - "c7": 8.93198403182636 + "offsets": { + "c1": 15.339805825242719, + "c2": 13.148404993065181, + "c3": 10.957004160887665, + "c4": 8.765603328710128, + "c5": 6.574202496532591, + "c6": 4.382801664355054, + "c7": 2.1914008321775365 }, "rgb": [77, 76, 132] }, @@ -464784,23 +464784,23 @@ "year": 1839, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 31.068610842066818, - "c2": -24.777778386897346, - "c3": -26.803655674341076, - "c4": -15.661443179196397, - "c5": 27.31012507197969, - "c6": 11.54486375334833, - "c7": 26.140534749847163 + "points": { + "c1": -27.77688704803621, + "c2": 12.514722472634396, + "c3": 19.203829465412625, + "c4": 2.517206283730822, + "c5": -18.59242894760875, + "c6": -26.314176694934464, + "c7": 24.76217664361262 }, - "vertexSeeds": { - "c1": 12.583807525442552, - "c2": 11.448700620389781, - "c3": 12.012688487607727, - "c4": 12.045951230055858, - "c5": 12.49018140034478, - "c6": 12.551045021162066, - "c7": 11.787276492156533 + "offsets": { + "c1": 21.067961165048544, + "c2": 18.058252427184485, + "c3": 15.048543689320383, + "c4": 12.038834951456321, + "c5": 9.029126213592223, + "c6": 6.019417475728161, + "c7": 3.0097087378640612 }, "rgb": [238, 201, 159] }, @@ -464811,23 +464811,23 @@ "year": 1839, "resistanceReported": false, "duration": 20649600, - "curveSeeds": { - "c1": -14.51560243154628, - "c2": 10.739081387149433, - "c3": -17.996654070510584, - "c4": -1.6788746783325905, - "c5": -17.18789209568974, - "c6": 18.286946887528487, - "c7": 24.11440654828099 + "points": { + "c1": 9.538007303103996, + "c2": 28.739906224377513, + "c3": -9.092887864258248, + "c4": 2.9073901352047997, + "c5": 14.12782898735346, + "c6": 7.196939087561631, + "c7": 26.550048486739342 }, - "vertexSeeds": { - "c1": 10.820355646228192, - "c2": 11.583301899039634, - "c3": 10.991937804874963, - "c4": 10.77210288119445, - "c5": 11.40430217229502, - "c6": 11.247067621993535, - "c7": 10.78290757314587 + "offsets": { + "c1": 19.644012944983817, + "c2": 16.837725381414714, + "c3": 14.031437817845566, + "c4": 11.225150254276462, + "c5": 8.418862690707357, + "c6": 5.612575127138212, + "c7": 2.806287563569106 }, "rgb": [86, 146, 138] }, @@ -464838,23 +464838,23 @@ "year": 1839, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": 10.414031310072549, - "c2": -14.35853876176591, - "c3": 20.320415654164083, - "c4": 5.549822410163475, - "c5": -12.376603454919598, - "c6": 23.29939923620606, - "c7": 0.5212507586721067 + "points": { + "c1": -4.387691001278895, + "c2": 19.91347633693395, + "c3": 19.216345455689204, + "c4": 14.709710676396472, + "c5": -0.4433579082531267, + "c6": 23.02600127259038, + "c7": -5.227220742200345 }, - "vertexSeeds": { - "c1": 2.3059718513464826, - "c2": 2.5247742832876345, - "c3": 2.347636214332383, - "c4": 2.486442804471293, - "c5": 2.5094057234820846, - "c6": 2.531690169221722, - "c7": 2.3589874149616525 + "offsets": { + "c1": 4.271844660194175, + "c2": 3.6615811373092915, + "c3": 3.051317614424408, + "c4": 2.441054091539529, + "c5": 1.8307905686546457, + "c6": 1.2205270457697621, + "c7": 0.6102635228848835 }, "rgb": [238, 201, 159] }, @@ -464865,23 +464865,23 @@ "year": 1840, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 16.11680266460489, - "c2": 31.848285879601363, - "c3": 25.193933108864393, - "c4": 21.609666097829695, - "c5": -30.371624337364377, - "c6": 25.926832599218088, - "c7": -15.177748562587368 + "points": { + "c1": -8.317727748911185, + "c2": 2.4178128856292105, + "c3": -8.475230018410127, + "c4": -0.29716047559245595, + "c5": 30.472395720218202, + "c6": 6.799690009051503, + "c7": 7.95250685485383 }, - "vertexSeeds": { - "c1": 16.035751518818884, - "c2": 16.491082517056093, - "c3": 16.821023866890226, - "c4": 15.924622573168929, - "c5": 16.317008170566396, - "c6": 16.020125802925858, - "c7": 17.062294853789556 + "offsets": { + "c1": 28.576051779935273, + "c2": 24.493758668515937, + "c3": 20.41146555709664, + "c4": 16.329172445677305, + "c5": 12.246879334257969, + "c6": 8.164586222838633, + "c7": 4.082293111419336 }, "rgb": [77, 76, 132] }, @@ -464892,23 +464892,23 @@ "year": 1839, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": -5.569844572363785, - "c2": -8.412336644814175, - "c3": -2.1429297715668483, - "c4": 0.884395171669361, - "c5": -1.1317665294288268, - "c6": -19.761310904561583, - "c7": -26.878509011256984 + "points": { + "c1": -14.114800516490323, + "c2": -1.8676305323192146, + "c3": -9.990515236641677, + "c4": -18.615447549099752, + "c5": -8.816783486413943, + "c6": 5.976195635357744, + "c7": 12.840876497193324 }, - "vertexSeeds": { - "c1": 17.162255976348835, - "c2": 16.405499252875323, - "c3": 18.587476950764945, - "c4": 18.336107375862223, - "c5": 17.335422093157458, - "c6": 19.30323224147358, - "c7": 17.179873607579516 + "offsets": { + "c1": 33.65695792880259, + "c2": 28.848821081830785, + "c3": 24.040684234858983, + "c4": 19.232547387887198, + "c5": 14.424410540915392, + "c6": 9.616273693943588, + "c7": 4.808136846971804 }, "rgb": [86, 146, 138] }, @@ -464919,23 +464919,23 @@ "year": 1839, "resistanceReported": false, "duration": 19699200, - "curveSeeds": { - "c1": -8.656031794234213, - "c2": 23.494145262002323, - "c3": 21.95095123129371, - "c4": -8.429021734614441, - "c5": -30.01730048951324, - "c6": 17.868878193328346, - "c7": -10.437101016288043 + "points": { + "c1": -32.95708058283937, + "c2": 28.30168893537698, + "c3": -31.417424992711133, + "c4": -29.48794765626854, + "c5": -31.957137977336288, + "c6": -6.046673781513473, + "c7": -27.9639648394861 }, - "vertexSeeds": { - "c1": 5.507522814702731, - "c2": 5.571449604987747, - "c3": 5.579976008316354, - "c4": 5.590433527237779, - "c5": 5.148787962801765, - "c6": 5.556785039715321, - "c7": 5.386779137860755 + "offsets": { + "c1": 9.385113268608414, + "c2": 8.044382801664364, + "c3": 6.703652334720293, + "c4": 5.362921867776243, + "c5": 4.022191400832172, + "c6": 2.6814609338881215, + "c7": 1.3407304669440507 }, "rgb": [238, 201, 159] }, @@ -464946,23 +464946,23 @@ "year": 1839, "resistanceReported": false, "duration": 19612800, - "curveSeeds": { - "c1": -6.634015997356542, - "c2": -27.26143461404148, - "c3": -14.849222423759343, - "c4": -3.1077431493971694, - "c5": 30.130385150894057, - "c6": 12.271631688989636, - "c7": -8.383679681964953 + "points": { + "c1": -12.038598973990478, + "c2": -31.670284847306895, + "c3": 12.879837415482761, + "c4": 17.729265766437024, + "c5": 7.683736533362904, + "c6": -29.897583945473926, + "c7": 1.6079855909887186 }, - "vertexSeeds": { - "c1": 4.73613215407307, - "c2": 4.8751100529883615, - "c3": 4.798198092803734, - "c4": 4.859104022317963, - "c5": 4.944027650376818, - "c6": 4.937564378740819, - "c7": 4.951252858437575 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337034, + "c3": 5.940822931114198, + "c4": 4.752658344891361, + "c5": 3.5644937586685246, + "c6": 2.376329172445673, + "c7": 1.1881645862228365 }, "rgb": [222, 0, 59] }, @@ -464973,23 +464973,23 @@ "year": 1839, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": -25.218504727383493, - "c2": -5.053456536496913, - "c3": -8.89434481867649, - "c4": -16.4400547625524, - "c5": -9.7755343884768, - "c6": -10.57006105687174, - "c7": -15.793429528653967 + "points": { + "c1": -26.483397348677855, + "c2": 12.418476050811154, + "c3": -20.194783392154157, + "c4": -13.081496368097547, + "c5": -2.7312637877981416, + "c6": 19.61856760308628, + "c7": 19.992645893485832 }, - "vertexSeeds": { - "c1": 12.13570264547576, - "c2": 11.905329068597593, - "c3": 11.454201851970636, - "c4": 11.521703493191415, - "c5": 11.54349319169806, - "c6": 12.553051381067508, - "c7": 12.797476743929552 + "offsets": { + "c1": 21.35922330097087, + "c2": 18.30790568654645, + "c3": 15.256588072122064, + "c4": 12.205270457697646, + "c5": 9.153952843273226, + "c6": 6.102635228848838, + "c7": 3.051317614424419 }, "rgb": [86, 146, 138] }, @@ -465000,23 +465000,23 @@ "year": 1839, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 15.476048529858414, - "c2": 25.11170506559382, - "c3": 21.7553687549907, - "c4": -25.866087377853237, - "c5": -12.411534493554509, - "c6": 21.003393013367937, - "c7": -11.3682222099464 + "points": { + "c1": -8.68449324215657, + "c2": 2.6163998725276194, + "c3": 1.6609149763997877, + "c4": 21.75488901197092, + "c5": 4.309003565393436, + "c6": 28.211260049598476, + "c7": 1.4257027203941242 }, - "vertexSeeds": { - "c1": 9.541187970237058, - "c2": 9.387775519655257, - "c3": 9.352832184490795, - "c4": 8.598877628918148, - "c5": 9.215244335770368, - "c6": 9.745842847444191, - "c7": 9.828220222554126 + "offsets": { + "c1": 16.63430420711974, + "c2": 14.257975034674068, + "c3": 11.881645862228384, + "c4": 9.505316689782711, + "c5": 7.128987517337029, + "c6": 4.752658344891356, + "c7": 2.376329172445683 }, "rgb": [58, 15, 49] }, @@ -465027,23 +465027,23 @@ "year": 1839, "resistanceReported": false, "duration": 11836800, - "curveSeeds": { - "c1": -5.465080448509767, - "c2": 2.5172534669784135, - "c3": -22.139937354972254, - "c4": 19.232100140549477, - "c5": -3.1884476868351435, - "c6": -13.9527166187265, - "c7": -2.147279856236956 + "points": { + "c1": 3.6466827262582946, + "c2": 22.872468002877277, + "c3": 21.52912655401383, + "c4": 11.021179873286073, + "c5": 15.595498493634246, + "c6": -7.198221619311468, + "c7": -9.741736297993247 }, - "vertexSeeds": { - "c1": 9.48052968227282, - "c2": 10.613258646512419, - "c3": 10.773697881963297, - "c4": 9.41028251521403, - "c5": 10.732922321181714, - "c6": 9.423537087315395, - "c7": 9.037879337366034 + "offsets": { + "c1": 18.155339805825243, + "c2": 15.561719833564498, + "c3": 12.96809986130375, + "c4": 10.374479889043005, + "c5": 7.780859916782249, + "c6": 5.187239944521503, + "c7": 2.5936199722607456 }, "rgb": [86, 146, 138] }, @@ -465054,23 +465054,23 @@ "year": 1840, "resistanceReported": false, "duration": 18921600, - "curveSeeds": { - "c1": 10.91479752044836, - "c2": 3.523577672227148, - "c3": 3.478376723489305, - "c4": -21.218954517632408, - "c5": 11.534470367727309, - "c6": -21.225306353604438, - "c7": -28.608536430287405 + "points": { + "c1": 22.31999015112475, + "c2": 18.91428842480459, + "c3": -30.329506396065604, + "c4": 20.357221764539823, + "c5": 26.207712408099567, + "c6": -27.759243554093068, + "c7": 7.640835504171299 }, - "vertexSeeds": { - "c1": 14.637811744902077, - "c2": 15.203174552196499, - "c3": 14.385834110176518, - "c4": 14.746548871484206, - "c5": 14.68509495263903, - "c6": 14.145420806478926, - "c7": 14.268906377915847 + "offsets": { + "c1": 25.728155339805824, + "c2": 22.052704576976435, + "c3": 18.37725381414701, + "c4": 14.701803051317624, + "c5": 11.0263522884882, + "c6": 7.350901525658812, + "c7": 3.6754507628294255 }, "rgb": [86, 146, 138] }, @@ -465081,23 +465081,23 @@ "year": 1839, "resistanceReported": false, "duration": 8121600, - "curveSeeds": { - "c1": 8.060283048468897, - "c2": 10.269546325062066, - "c3": 7.173420851792354, - "c4": -13.79119505814067, - "c5": 15.835896509084808, - "c6": 18.449993647032368, - "c7": 18.288968668458057 + "points": { + "c1": -12.038607055865247, + "c2": -1.755424362091894, + "c3": 12.013771025677993, + "c4": 4.294073812849913, + "c5": 13.735720937323403, + "c6": 15.339943601320588, + "c7": 10.8581808582537 }, - "vertexSeeds": { - "c1": 5.607592520220133, - "c2": 5.726206446955202, - "c3": 5.616280736587662, - "c4": 5.945064767778432, - "c5": 5.693679657797364, - "c6": 5.67869821936061, - "c7": 5.800079108846909 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -465108,23 +465108,23 @@ "year": 1839, "resistanceReported": false, "duration": 13651200, - "curveSeeds": { - "c1": 2.845171266038932, - "c2": 22.4393268215141, - "c3": 1.8293442891834601, - "c4": 20.486118884792695, - "c5": -15.762693526904702, - "c6": -22.082557487087527, - "c7": -14.301156186607376 + "points": { + "c1": 9.97352491569972, + "c2": 2.4143225195940197, + "c3": -19.494700702565453, + "c4": -21.724718462576284, + "c5": -21.682548497215816, + "c6": -0.06160294416318379, + "c7": 12.130107933686524 }, - "vertexSeeds": { - "c1": 6.403539081143028, - "c2": 6.4885248899185655, - "c3": 6.344615302421177, - "c4": 6.387890535487075, - "c5": 6.519687228582914, - "c6": 6.458313908758598, - "c7": 6.700747028707926 + "offsets": { + "c1": 11.423948220064725, + "c2": 9.791955617198333, + "c3": 8.15996301433194, + "c4": 6.5279704114655495, + "c5": 4.895977808599157, + "c6": 3.263985205732784, + "c7": 1.631992602866392 }, "rgb": [86, 146, 138] }, @@ -465135,23 +465135,23 @@ "year": 1839, "resistanceReported": false, "duration": 7862400, - "curveSeeds": { - "c1": 2.1449658695580496, - "c2": 2.1267502099311066, - "c3": -3.121185772886058, - "c4": -4.064341642683084, - "c5": -5.085651090716251, - "c6": -8.60106391288248, - "c7": -2.981595256961885 + "points": { + "c1": 5.75563818080397, + "c2": -3.915102679384219, + "c3": -17.001419904455933, + "c4": -3.047856888100913, + "c5": 11.63544876201508, + "c6": 13.293863019739263, + "c7": 2.2924237822929356 }, - "vertexSeeds": { - "c1": 8.863344561069235, - "c2": 8.912610377079012, - "c3": 9.400235884291295, - "c4": 8.834364750726616, - "c5": 9.028836966057048, - "c6": 9.46600977225527, - "c7": 9.389239933028895 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -465162,23 +465162,23 @@ "year": 1839, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 11.641078699192317, - "c2": 6.796321985725015, - "c3": -6.5309280765814535, - "c4": -18.521043383764944, - "c5": -17.617355379499706, - "c6": -9.349208461960549, - "c7": 18.95232603571917 + "points": { + "c1": 15.039256450324185, + "c2": -22.210544523669213, + "c3": -2.2636047904442833, + "c4": -21.073585857715692, + "c5": -8.959586404623447, + "c6": -11.568212198646231, + "c7": 4.612278505767101 }, - "vertexSeeds": { - "c1": 2.6497843644752246, - "c2": 2.6991414983023705, - "c3": 2.488077909852959, - "c4": 2.65726188681656, - "c5": 2.4836006443833334, - "c6": 2.480532858816135, - "c7": 2.645215670797175 + "offsets": { + "c1": 4.53074433656958, + "c2": 3.883495145631067, + "c3": 3.236245954692554, + "c4": 2.588996763754041, + "c5": 1.9417475728155285, + "c6": 1.2944983818770257, + "c7": 0.6472491909385129 }, "rgb": [238, 201, 159] }, @@ -465189,23 +465189,23 @@ "year": 1840, "resistanceReported": false, "duration": 16848000, - "curveSeeds": { - "c1": -10.521861232244412, - "c2": -25.55008741514513, - "c3": 5.614911935918279, - "c4": 0.12173225596745141, - "c5": 1.161154457892998, - "c6": -24.007341446486947, - "c7": -26.98988669170891 + "points": { + "c1": 18.09915091381417, + "c2": 27.114212121663286, + "c3": -26.02766546637929, + "c4": 16.780630443719517, + "c5": -23.98856349353427, + "c6": -8.265286888139755, + "c7": 26.661761899492994 }, - "vertexSeeds": { - "c1": 11.36360642933148, - "c2": 11.86496848889213, - "c3": 11.636794940485187, - "c4": 12.332598656459488, - "c5": 11.695471396908587, - "c6": 12.043689569659044, - "c7": 11.639348154943495 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.753120665742035, + "c3": 14.794267221451701, + "c4": 11.835413777161369, + "c5": 8.876560332870998, + "c6": 5.917706888580665, + "c7": 2.9588534442903325 }, "rgb": [222, 0, 59] }, @@ -465216,23 +465216,23 @@ "year": 1840, "resistanceReported": false, "duration": 19872000, - "curveSeeds": { - "c1": -2.8959179645302946, - "c2": 14.487188929793401, - "c3": -28.209044911707615, - "c4": 22.739221813351836, - "c5": 8.833964087729615, - "c6": 20.638096020489296, - "c7": -2.0794604539650514 + "points": { + "c1": -12.786680951730482, + "c2": -8.287296218336056, + "c3": -5.288804578779761, + "c4": -9.641135895285956, + "c5": -33.4216693642104, + "c6": -15.42022984119955, + "c7": -11.168665003463914 }, - "vertexSeeds": { - "c1": 5.73691582447364, - "c2": 5.4456634310554834, - "c3": 5.853965990364674, - "c4": 5.51139559996621, - "c5": 5.639369367350644, - "c6": 5.629348354448049, - "c7": 5.694093357733139 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -465243,23 +465243,23 @@ "year": 1839, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -0.04039240132111388, - "c2": 14.69055026093692, - "c3": 18.15941525973923, - "c4": -14.905586522325228, - "c5": -19.55855621801609, - "c6": -13.934460336104902, - "c7": 15.527190104404323 + "points": { + "c1": -5.649368577682548, + "c2": -1.5262371796189456, + "c3": 11.025008471211198, + "c4": 10.728185813455976, + "c5": 14.090483698763041, + "c6": 17.93774548407482, + "c7": -3.1409848180084836 }, - "vertexSeeds": { - "c1": 5.670546608110291, - "c2": 5.5837940168373335, - "c3": 5.5525704274368355, - "c4": 5.782619105214421, - "c5": 5.771869131626199, - "c6": 5.6537448624862074, - "c7": 5.849603492547033 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [238, 201, 159] }, @@ -465270,23 +465270,23 @@ "year": 1839, "resistanceReported": false, "duration": 12700800, - "curveSeeds": { - "c1": -4.824542877533233, - "c2": -11.555737190211943, - "c3": 6.7002473259519455, - "c4": 18.7886524778192, - "c5": -5.778896294785774, - "c6": -21.411850095609445, - "c7": -12.546003764015532 + "points": { + "c1": 15.094235865108658, + "c2": 23.03885808581306, + "c3": -14.910600335914223, + "c4": -5.0030817310966675, + "c5": 4.542162441590875, + "c6": 17.922431481096794, + "c7": 1.6817526777973164 }, - "vertexSeeds": { - "c1": 9.40885361489559, - "c2": 8.635746546967773, - "c3": 9.083600667228588, - "c4": 9.41948069077877, - "c5": 9.23708381941248, - "c6": 9.192049652857472, - "c7": 8.916352722147998 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -465297,23 +465297,23 @@ "year": 1840, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 5.411364910544197, - "c2": 6.849358191041926, - "c3": 23.530372087401563, - "c4": -23.38692805865947, - "c5": -17.650076113153983, - "c6": 20.2972889982164, - "c7": 28.251580905234203 + "points": { + "c1": -15.31028010295902, + "c2": -19.52744349412687, + "c3": -25.53419813408246, + "c4": 15.433303660465903, + "c5": 31.93811285400929, + "c6": 13.241528064555837, + "c7": 12.403479273375552 }, - "vertexSeeds": { - "c1": 10.587313832600554, - "c2": 9.806747243635368, - "c3": 11.726917781155581, - "c4": 10.432709142773406, - "c5": 11.353144756674778, - "c6": 10.156261822135766, - "c7": 11.610111639142577 + "offsets": { + "c1": 20.06472491909385, + "c2": 17.19833564493759, + "c3": 14.331946370781328, + "c4": 11.465557096625048, + "c5": 8.599167822468786, + "c6": 5.732778548312524, + "c7": 2.866389274156262 }, "rgb": [238, 201, 159] }, @@ -465324,23 +465324,23 @@ "year": 1839, "resistanceReported": false, "duration": 7084800, - "curveSeeds": { - "c1": -0.06457416954886597, - "c2": 10.198842127965094, - "c3": -2.4879582450444353, - "c4": -15.217393238005766, - "c5": 11.529242204140228, - "c6": 12.855658722084033, - "c7": -6.890575310353139 + "points": { + "c1": 15.048968880493828, + "c2": 1.4485031736001694, + "c3": 3.4263836461705175, + "c4": 19.303808599007436, + "c5": 9.89930882082901, + "c6": -11.746724678293699, + "c7": -13.50353367091228 }, - "vertexSeeds": { - "c1": 8.19951501128832, - "c2": 8.474856826811203, - "c3": 8.952119859435442, - "c4": 8.439814358608348, - "c5": 8.710549397720431, - "c6": 8.227299632466595, - "c7": 8.286185594790414 + "offsets": { + "c1": 15.048543689320388, + "c2": 12.898751733703191, + "c3": 10.748959778085997, + "c4": 8.599167822468782, + "c5": 6.449375866851586, + "c6": 4.299583911234391, + "c7": 2.1497919556171956 }, "rgb": [77, 76, 132] }, @@ -465351,23 +465351,23 @@ "year": 1839, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": 9.09835211712667, - "c2": 6.281318757576397, - "c3": 17.530114939820237, - "c4": -8.004084155833793, - "c5": -16.767397027269215, - "c6": -2.243314004519352, - "c7": 1.7794614660904955 + "points": { + "c1": 11.839340893932977, + "c2": 3.158550413114284, + "c3": -15.789592802627674, + "c4": 8.832121894628248, + "c5": -19.12201110719686, + "c6": -9.757327565587767, + "c7": 18.26429773811325 }, - "vertexSeeds": { - "c1": 0.5658848588605313, - "c2": 0.5770287044116069, - "c3": 0.5612961049790822, - "c4": 0.5950525094780603, - "c5": 0.5695079258485032, - "c6": 0.5688871273210492, - "c7": 0.5534385781907154 + "offsets": { + "c1": 1.035598705501618, + "c2": 0.8876560332871017, + "c3": 0.7397133610725841, + "c4": 0.5917706888580677, + "c5": 0.4438280166435502, + "c6": 0.29588534442903386, + "c7": 0.14794267221451757 }, "rgb": [238, 201, 159] }, @@ -465378,23 +465378,23 @@ "year": 1840, "resistanceReported": false, "duration": 16243200, - "curveSeeds": { - "c1": -13.442334627152535, - "c2": -22.987692810599654, - "c3": -4.972164795427325, - "c4": -21.879449730518314, - "c5": -16.310222717633756, - "c6": 14.700535977826512, - "c7": 10.161111074744689 + "points": { + "c1": 20.583697866973715, + "c2": 1.1684615491564472, + "c3": -14.205049136388222, + "c4": -4.448096795680815, + "c5": 23.39285773927609, + "c6": -16.933796507887457, + "c7": -9.166252694223793 }, - "vertexSeeds": { - "c1": 7.675404246528213, - "c2": 7.353388835831249, - "c3": 7.888797153585435, - "c4": 7.662409944546798, - "c5": 7.2840934186878545, - "c6": 7.416944860893742, - "c7": 7.68187864212582 + "offsets": { + "c1": 13.495145631067961, + "c2": 11.567267683772544, + "c3": 9.639389736477108, + "c4": 7.7115117891816904, + "c5": 5.783633841886272, + "c6": 3.8557558945908355, + "c7": 1.9278779472954177 }, "rgb": [222, 0, 59] }, @@ -465405,23 +465405,23 @@ "year": 1840, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 4.403651040938371, - "c2": 23.248598444883648, - "c3": 8.056079243995256, - "c4": -12.77401459028446, - "c5": 15.537009124114931, - "c6": 21.63685032476785, - "c7": -21.371457076762592 + "points": { + "c1": -4.671913090968264, + "c2": 24.362698672001933, + "c3": -16.935641168316188, + "c4": -4.905177088765935, + "c5": 1.8897071991399983, + "c6": -24.773724648507127, + "c7": 10.799400778849119 }, - "vertexSeeds": { - "c1": 5.754660813526061, - "c2": 5.550442951760204, - "c3": 5.431608232485137, - "c4": 5.894553114894839, - "c5": 5.793829748825569, - "c6": 5.5595979055557745, - "c7": 5.855113354419508 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [86, 146, 138] }, @@ -465432,23 +465432,23 @@ "year": 1840, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": -3.5745291535986503, - "c2": 9.725588822431742, - "c3": 7.5611745220215205, - "c4": 19.236984986572548, - "c5": -5.2041391533199395, - "c6": 25.484662782748845, - "c7": -17.929248335640942 + "points": { + "c1": 20.385548168193477, + "c2": 2.512455470110467, + "c3": 17.318010685038605, + "c4": -25.88101462791883, + "c5": -14.36524714144051, + "c6": -12.13024136603574, + "c7": 26.469263721854123 }, - "vertexSeeds": { - "c1": 7.830657142938551, - "c2": 7.156502638358918, - "c3": 7.8356163818935505, - "c4": 7.445037930431731, - "c5": 7.621039124646429, - "c6": 7.17981541846566, - "c7": 7.162221722178308 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [238, 201, 159] }, @@ -465459,23 +465459,23 @@ "year": 1840, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -3.758501138432102, - "c2": -0.4748028988622952, - "c3": 15.63833971075859, - "c4": -6.2738792973934405, - "c5": 6.946978006585024, - "c6": 6.793452807880083, - "c7": 10.175164681112907 + "points": { + "c1": -5.788410332086004, + "c2": 14.220597579257188, + "c3": 14.627743111905925, + "c4": -17.096527774345134, + "c5": -17.191263206364813, + "c6": -5.500603284306273, + "c7": 4.948378825878738 }, - "vertexSeeds": { - "c1": 12.653507743643317, - "c2": 12.49872476605035, - "c3": 12.000162387757294, - "c4": 11.684659973602626, - "c5": 12.04442464927024, - "c6": 12.312113171512916, - "c7": 12.713973423948978 + "offsets": { + "c1": 21.423948220064727, + "c2": 18.3633841886269, + "c3": 15.302820157189107, + "c4": 12.242256125751279, + "c5": 9.18169209431345, + "c6": 6.121128062875619, + "c7": 3.060564031437829 }, "rgb": [77, 76, 132] }, @@ -465486,23 +465486,23 @@ "year": 1840, "resistanceReported": false, "duration": 17193600, - "curveSeeds": { - "c1": 4.827611278958884, - "c2": 0.11929822405806334, - "c3": 8.401657496972966, - "c4": -2.9850684594572527, - "c5": 0.295579500595089, - "c6": 17.966362188351567, - "c7": -7.590425844824008 + "points": { + "c1": -27.769300181838304, + "c2": -23.127902041517075, + "c3": 11.99777828864488, + "c4": 23.344285166811616, + "c5": 5.948954484159152, + "c6": 5.07990101035525, + "c7": 29.556116257735837 }, - "vertexSeeds": { - "c1": 2.9800947600932424, - "c2": 2.9159080300504923, - "c3": 2.937855146687093, - "c4": 2.833124234572106, - "c5": 3.0500163671126352, - "c6": 2.903381339838856, - "c7": 2.928509142053852 + "offsets": { + "c1": 5.210355987055016, + "c2": 4.466019417475731, + "c3": 3.721682847896436, + "c4": 2.977346278317151, + "c5": 2.2330097087378653, + "c6": 1.4886731391585801, + "c7": 0.7443365695792854 }, "rgb": [77, 76, 132] }, @@ -465513,23 +465513,23 @@ "year": 1840, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -21.193903632009686, - "c2": -11.321503230625305, - "c3": 0.736125447716546, - "c4": 7.54304776833062, - "c5": 14.10781972997755, - "c6": -11.64592256008597, - "c7": -6.241534355894387 + "points": { + "c1": 1.3672615912121735, + "c2": 9.310486581033409, + "c3": 9.972258087891163, + "c4": 7.914619858060117, + "c5": -19.762063190558095, + "c6": -18.700362105080032, + "c7": -19.293211639366657 }, - "vertexSeeds": { - "c1": 5.645988112526913, - "c2": 5.610243312170489, - "c3": 5.665193248013942, - "c4": 5.627428442159881, - "c5": 5.719859922843037, - "c6": 5.711986946068999, - "c7": 5.727049022967971 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [77, 76, 132] }, @@ -465540,23 +465540,23 @@ "year": 1840, "resistanceReported": false, "duration": 3110400, - "curveSeeds": { - "c1": 1.7736978392637095, - "c2": -11.156393607881213, - "c3": 9.43025951060132, - "c4": 0.7934810383202855, - "c5": -7.126133864294366, - "c6": 10.854248534887745, - "c7": -1.7187028353731648 + "points": { + "c1": -4.950875714094584, + "c2": 14.158060718968468, + "c3": -10.605379643130261, + "c4": 13.235277748210208, + "c5": -7.116160452405637, + "c6": 2.9596350427841145, + "c7": -1.8860422823464749 }, - "vertexSeeds": { - "c1": 14.297105349265617, - "c2": 13.803381296170134, - "c3": 13.67123301490153, - "c4": 13.609189268505007, - "c5": 13.321672979079258, - "c6": 13.694608739643538, - "c7": 13.172455081556132 + "offsets": { + "c1": 23.948220064724918, + "c2": 20.527045769764214, + "c3": 17.105871474803514, + "c4": 13.684697179842809, + "c5": 10.263522884882107, + "c6": 6.8423485899214045, + "c7": 3.4211742949607022 }, "rgb": [77, 76, 132] }, @@ -465567,23 +465567,23 @@ "year": 1840, "resistanceReported": false, "duration": 15120000, - "curveSeeds": { - "c1": 2.073617915986585, - "c2": -13.97474818300796, - "c3": 19.44416228136588, - "c4": -10.223886469869143, - "c5": 10.393698999039277, - "c6": 21.39228483682675, - "c7": 9.354961953993953 + "points": { + "c1": 16.883654806818438, + "c2": -9.341514101469894, + "c3": -8.691361709717562, + "c4": -9.911468202466555, + "c5": 21.897198692693568, + "c6": 28.092187409264984, + "c7": -13.463224518207108 }, - "vertexSeeds": { - "c1": 22.50248455015013, - "c2": 20.913511453912545, - "c3": 21.224279709593816, - "c4": 21.165264745370088, - "c5": 20.08065035089633, - "c6": 20.258446801894138, - "c7": 19.70308564273575 + "offsets": { + "c1": 37.605177993527505, + "c2": 32.23300970873786, + "c3": 26.86084142394821, + "c4": 21.488673139158564, + "c5": 16.116504854368916, + "c6": 10.744336569579268, + "c7": 5.372168284789621 }, "rgb": [222, 0, 59] }, @@ -465594,23 +465594,23 @@ "year": 1841, "resistanceReported": false, "duration": 36201600, - "curveSeeds": { - "c1": -34.409937393661544, - "c2": -28.61265465916715, - "c3": -28.026383167670247, - "c4": 6.08527283750513, - "c5": 1.1342477765729626, - "c6": -22.88119435885369, - "c7": -35.042439944572315 + "points": { + "c1": -33.12319662494336, + "c2": 26.203569515184597, + "c3": 4.866681291132089, + "c4": -43.15753806124028, + "c5": -28.541817616478724, + "c6": 27.354239493744643, + "c7": -17.13766608658848 }, - "vertexSeeds": { - "c1": 8.466090559995743, - "c2": 7.904794018978936, - "c3": 8.295986623681264, - "c4": 7.9527050078793335, - "c5": 8.124510307742744, - "c6": 7.535811627299205, - "c7": 7.5011946025439284 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110958, + "c3": 11.558021266759129, + "c4": 9.246417013407305, + "c5": 6.934812760055475, + "c6": 4.623208506703652, + "c7": 2.31160425335183 }, "rgb": [238, 201, 159] }, @@ -465621,23 +465621,23 @@ "year": 1840, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": 13.693298559582914, - "c2": -15.21000724658315, - "c3": 5.428841222350552, - "c4": -2.9513398376680104, - "c5": 6.23021677256957, - "c6": -0.9702740702500456, - "c7": 11.099685779099115 + "points": { + "c1": 15.289719396545784, + "c2": -10.366261435428605, + "c3": -6.672308468069444, + "c4": 5.949249286857036, + "c5": 18.880042397779647, + "c6": 1.852322409215521, + "c7": 3.615293355919455 }, - "vertexSeeds": { - "c1": 0.019430051813471502, - "c2": 0.019430051813471502, - "c3": 0.019430051813471502, - "c4": 0.019430051813471502, - "c5": 0.019430051813471502, - "c6": 0.019430051813471502, - "c7": 0.019430051813471502 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -465648,23 +465648,23 @@ "year": 1840, "resistanceReported": false, "duration": 20044800, - "curveSeeds": { - "c1": 9.818712257214614, - "c2": -18.77594002779502, - "c3": 16.127315148452013, - "c4": -16.90610573583735, - "c5": 16.80663351426164, - "c6": -18.809129877886498, - "c7": 14.325421725192726 + "points": { + "c1": -11.013728839851435, + "c2": -23.10352366327657, + "c3": -9.681476486344973, + "c4": -5.539876394901775, + "c5": 24.944160828420586, + "c6": 22.4032242702445, + "c7": 22.16924949772789 }, - "vertexSeeds": { - "c1": 7.352528832393865, - "c2": 7.532410423177576, - "c3": 7.419223131945491, - "c4": 7.393813602824247, - "c5": 7.348143774706759, - "c6": 7.971868724228218, - "c7": 7.683089419752374 + "offsets": { + "c1": 13.462783171521037, + "c2": 11.53952843273231, + "c3": 9.6162736939436, + "c4": 7.693018955154874, + "c5": 5.7697642163661635, + "c6": 3.846509477577437, + "c7": 1.9232547387887273 }, "rgb": [238, 201, 159] }, @@ -465675,23 +465675,23 @@ "year": 1840, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 7.93448123325512, - "c2": 5.262683237525717, - "c3": -18.172759745655895, - "c4": -17.44497543863125, - "c5": -9.234753826672993, - "c6": -14.776347318689119, - "c7": 15.475723815358023 + "points": { + "c1": -21.75453912895643, + "c2": 5.917610044050917, + "c3": 0.1576014790579734, + "c4": -12.052112096696328, + "c5": -6.041523007337805, + "c6": -6.950365096546388, + "c7": 19.280123294422793 }, - "vertexSeeds": { - "c1": 1.6307885842966239, - "c2": 1.546166749293649, - "c3": 1.668676355716302, - "c4": 1.6580956255206243, - "c5": 1.6138333734791026, - "c6": 1.6564432539398444, - "c7": 1.6640702270840797 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797484, + "c3": 2.057327785483126, + "c4": 1.645862228386499, + "c5": 1.2343966712898766, + "c6": 0.8229311141932495, + "c7": 0.4114655570966225 }, "rgb": [77, 76, 132] }, @@ -465702,23 +465702,23 @@ "year": 1840, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": 13.808973089901059, - "c2": -9.01939552947386, - "c3": 16.844998801532853, - "c4": 8.69895746397697, - "c5": -11.206688006936119, - "c6": -12.098767561165438, - "c7": -1.2862179061259944 + "points": { + "c1": -13.60666519714445, + "c2": -13.25555582398064, + "c3": 13.20588249208042, + "c4": -19.75142435846248, + "c5": 2.129144563470991, + "c6": -7.477726166408782, + "c7": 15.970612085392851 }, - "vertexSeeds": { - "c1": 7.177911810866016, - "c2": 7.26794434145933, - "c3": 7.250430788134577, - "c4": 7.219198265797636, - "c5": 7.296753363928688, - "c6": 7.223827113813518, - "c7": 7.2785731725748875 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284308, + "c3": 8.78409616273697, + "c4": 7.027276930189562, + "c5": 5.270457697642154, + "c6": 3.513638465094816, + "c7": 1.756819232547408 }, "rgb": [238, 201, 159] }, @@ -465729,23 +465729,23 @@ "year": 1840, "resistanceReported": false, "duration": 7257600, - "curveSeeds": { - "c1": -7.187047608505125, - "c2": -5.563081837303692, - "c3": -10.622544337666648, - "c4": 6.531151104922209, - "c5": -3.920157084661449, - "c6": -3.776496119541168, - "c7": -2.326058996387859 + "points": { + "c1": 12.660649420839682, + "c2": 10.983999475406634, + "c3": 3.822352082635348, + "c4": 7.819973066402387, + "c5": -0.5879504649435852, + "c6": -7.110007565609264, + "c7": -12.601770410853128 }, - "vertexSeeds": { - "c1": 0, - "c2": 0, - "c3": 0, - "c4": 0, - "c5": 0, - "c6": 0, - "c7": 0 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [58, 15, 49] }, @@ -465756,23 +465756,23 @@ "year": 1840, "resistanceReported": false, "duration": 19008000, - "curveSeeds": { - "c1": 1.50684710840779, - "c2": -18.510988151828315, - "c3": -0.37568789544720005, - "c4": -13.864850209282004, - "c5": 12.841782694066218, - "c6": 9.459444552527223, - "c7": -20.026331186602064 + "points": { + "c1": -29.200494585083593, + "c2": 9.742471532195573, + "c3": 4.770343262905321, + "c4": -16.933157229659866, + "c5": 23.256094313624786, + "c6": -18.56249304421798, + "c7": 12.388709626349055 }, - "vertexSeeds": { - "c1": 8.955235789558916, - "c2": 9.440448769925334, - "c3": 9.104048092226169, - "c4": 9.431215383444135, - "c5": 8.963405090079284, - "c6": 8.837728962145615, - "c7": 8.801832398779148 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [86, 146, 138] }, @@ -465783,23 +465783,23 @@ "year": 1840, "resistanceReported": false, "duration": 13219200, - "curveSeeds": { - "c1": 22.200135238512537, - "c2": 5.677709052963433, - "c3": -8.060817837245228, - "c4": -10.784290750224436, - "c5": 14.24604863672186, - "c6": 8.699048387334969, - "c7": 18.952099800602717 + "points": { + "c1": 23.96862745819118, + "c2": -22.466308282925127, + "c3": -23.291083389689216, + "c4": -2.0574529168645412, + "c5": 23.387146769541523, + "c6": -5.898627270567914, + "c7": 12.896667067099479 }, - "vertexSeeds": { - "c1": 12.995238517668326, - "c2": 11.507816472074111, - "c3": 11.20394483806826, - "c4": 12.73607922349865, - "c5": 11.363758707552897, - "c6": 11.088241641892393, - "c7": 11.548160853024436 + "offsets": { + "c1": 21.779935275080906, + "c2": 18.668515950069352, + "c3": 15.557096625057795, + "c4": 12.445677300046219, + "c5": 9.334257975034665, + "c6": 6.222838650023109, + "c7": 3.1114193250115547 }, "rgb": [77, 76, 132] }, @@ -465810,23 +465810,23 @@ "year": 1840, "resistanceReported": false, "duration": 14169600, - "curveSeeds": { - "c1": 20.51831746293851, - "c2": 1.3836765455984796, - "c3": -7.475695902710694, - "c4": -15.944566725206007, - "c5": 3.82605627291969, - "c6": -24.303088158229677, - "c7": -10.64402517601826 + "points": { + "c1": -6.295485124578395, + "c2": -11.261748829663972, + "c3": 15.939803135044276, + "c4": 19.17603514031641, + "c5": -27.237231917030737, + "c6": 4.117015213878588, + "c7": -17.517240464990373 }, - "vertexSeeds": { - "c1": 5.657801501828755, - "c2": 5.59869703076568, - "c3": 5.823981430783099, - "c4": 5.624165240255165, - "c5": 5.683358080032232, - "c6": 5.691303679010514, - "c7": 5.8967914847186025 + "offsets": { + "c1": 9.902912621359224, + "c2": 8.488210818307897, + "c3": 7.07350901525657, + "c4": 5.658807212205276, + "c5": 4.244105409153948, + "c6": 2.829403606102621, + "c7": 1.4147018030513272 }, "rgb": [58, 15, 49] }, @@ -465837,23 +465837,23 @@ "year": 1840, "resistanceReported": false, "duration": 8121600, - "curveSeeds": { - "c1": 7.237198281598346, - "c2": -5.367379480726111, - "c3": -17.06396911430828, - "c4": 8.880218690023653, - "c5": 8.865523606588738, - "c6": 15.916937612695175, - "c7": 1.2248337374503464 + "points": { + "c1": -12.758553508581, + "c2": 8.973430213907214, + "c3": -14.064642867484402, + "c4": -9.089625311775809, + "c5": -19.307794246009568, + "c6": 10.239983801368908, + "c7": -18.450684716266245 }, - "vertexSeeds": { - "c1": 11.747706536147033, - "c2": 11.067675644689672, - "c3": 11.705163588987267, - "c4": 12.437582021211277, - "c5": 12.928664401811936, - "c6": 10.970256738156602, - "c7": 11.291298651487425 + "offsets": { + "c1": 21.779935275080906, + "c2": 18.668515950069352, + "c3": 15.557096625057795, + "c4": 12.445677300046219, + "c5": 9.334257975034665, + "c6": 6.222838650023109, + "c7": 3.1114193250115547 }, "rgb": [222, 0, 59] }, @@ -465864,23 +465864,23 @@ "year": 1840, "resistanceReported": false, "duration": 14342400, - "curveSeeds": { - "c1": 15.190627270915655, - "c2": 9.811090477092513, - "c3": 12.291484666341674, - "c4": -10.207655545441048, - "c5": -5.067481325778058, - "c6": 9.4350267064587, - "c7": -15.58097152737545 + "points": { + "c1": 16.670765039420793, + "c2": 2.35929522846061, + "c3": 4.8924081834712325, + "c4": -14.128175924808872, + "c5": -8.91696858228557, + "c6": -27.52182141929532, + "c7": -13.559176894742128 }, - "vertexSeeds": { - "c1": 5.383343603874394, - "c2": 5.1567459420623365, - "c3": 5.188376421550712, - "c4": 5.2319938480584405, - "c5": 5.538787081560379, - "c6": 5.566816205774542, - "c7": 5.262260914254205 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.07212205270457, + "c3": 6.7267683772538165, + "c4": 5.381414701803047, + "c5": 4.036061026352294, + "c6": 2.6907073509015236, + "c7": 1.3453536754507531 }, "rgb": [86, 146, 138] }, @@ -465891,23 +465891,23 @@ "year": 1840, "resistanceReported": false, "duration": 10281600, - "curveSeeds": { - "c1": 13.065419478233952, - "c2": -3.9298085318619123, - "c3": 8.175269639120934, - "c4": -17.057653234173912, - "c5": -0.28048267967654184, - "c6": -19.569896052958434, - "c7": -5.612951389843779 + "points": { + "c1": 0.8059940827753422, + "c2": -6.5493605490086075, + "c3": 3.357446449642552, + "c4": 16.776646103267563, + "c5": -14.686593306552671, + "c6": 12.41027190181632, + "c7": 8.00210013406489 }, - "vertexSeeds": { - "c1": 5.809107242146263, - "c2": 5.819506621281214, - "c3": 5.891110037226504, - "c4": 5.616271892849892, - "c5": 5.3865813422932245, - "c6": 5.9198355004376975, - "c7": 5.560791533925134 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -465918,23 +465918,23 @@ "year": 1840, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 0.06989855872623707, - "c2": 1.3246185590723165, - "c3": 1.7004648066856092, - "c4": -10.769727450460213, - "c5": -6.565915937729548, - "c6": -6.588258675183225, - "c7": -3.357032029055553 + "points": { + "c1": -8.48626854680596, + "c2": -12.92792259297751, + "c3": 11.899768978878395, + "c4": -18.89389151103772, + "c5": -10.53331101625524, + "c6": -5.964710090971932, + "c7": -2.2858379151724755 }, - "vertexSeeds": { - "c1": 4.835395078668338, - "c2": 4.872481780952651, - "c3": 4.846541255273669, - "c4": 4.72938345353323, - "c5": 4.881944272456274, - "c6": 4.840232344012467, - "c7": 4.783281765742031 + "offsets": { + "c1": 8.31715210355987, + "c2": 7.128987517337034, + "c3": 5.940822931114198, + "c4": 4.752658344891361, + "c5": 3.5644937586685246, + "c6": 2.376329172445673, + "c7": 1.1881645862228365 }, "rgb": [58, 15, 49] }, @@ -465945,23 +465945,23 @@ "year": 1840, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": -5.92450431562221, - "c2": 8.915472595533611, - "c3": 11.365436864058314, - "c4": -0.7522511444913249, - "c5": 6.47331547075737, - "c6": 1.234281475146016, - "c7": 19.848112014702362 + "points": { + "c1": 14.992177923695348, + "c2": 1.6401946865759776, + "c3": -11.686620924135177, + "c4": 21.439738696541358, + "c5": -0.13305610948523494, + "c6": -17.432155983477646, + "c7": 9.693992622153242 }, - "vertexSeeds": { - "c1": 7.960501677331198, - "c2": 7.557763126725267, - "c3": 7.920849157474943, - "c4": 7.861250669890727, - "c5": 7.779956669840167, - "c6": 7.272915980676537, - "c7": 7.9177397886753615 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [58, 15, 49] }, @@ -465972,23 +465972,23 @@ "year": 1840, "resistanceReported": false, "duration": 10886400, - "curveSeeds": { - "c1": 19.391222432172242, - "c2": 5.6584281380512955, - "c3": -3.7216408852681617, - "c4": 16.468230075409053, - "c5": -4.462357631444235, - "c6": 21.588655149666288, - "c7": -7.335186349701717 + "points": { + "c1": 6.368278679131802, + "c2": -17.778634898202757, + "c3": 17.105635511518557, + "c4": 9.414978751353374, + "c5": -23.29854102063382, + "c6": -21.599011100210866, + "c7": 15.978876086660996 }, - "vertexSeeds": { - "c1": 8.635626875433863, - "c2": 9.167015225569255, - "c3": 9.233596240470817, - "c4": 9.371040874731259, - "c5": 9.416734346628594, - "c6": 9.26880596451818, - "c7": 8.782274104154643 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -465999,23 +465999,23 @@ "year": 1840, "resistanceReported": false, "duration": 4838400, - "curveSeeds": { - "c1": -0.5274890592593433, - "c2": -7.875919416541574, - "c3": -9.53619783971333, - "c4": -4.404364167840702, - "c5": 5.634702146265891, - "c6": -13.76695814481868, - "c7": -5.924221217313459 + "points": { + "c1": 13.720106421444662, + "c2": 12.834826773755964, + "c3": 4.396094592924779, + "c4": 1.7827211527097724, + "c5": 15.075746304379276, + "c6": -6.492592033225149, + "c7": -5.233843138620898 }, - "vertexSeeds": { - "c1": 0.8473051752108258, - "c2": 0.8346577850846834, - "c3": 0.8665525824424604, - "c4": 0.8878368043049424, - "c5": 0.9037014549095429, - "c6": 0.8928357717378054, - "c7": 0.8176321504490743 + "offsets": { + "c1": 1.5533980582524272, + "c2": 1.3314840499306522, + "c3": 1.1095700416088772, + "c4": 0.8876560332871, + "c5": 0.665742024965325, + "c6": 0.44382801664355, + "c7": 0.221914008321775 }, "rgb": [58, 15, 49] }, @@ -466026,23 +466026,23 @@ "year": 1840, "resistanceReported": false, "duration": 5011200, - "curveSeeds": { - "c1": -12.186469852501226, - "c2": -1.7192986151953438, - "c3": 1.6061749796098344, - "c4": -15.200674350980004, - "c5": 7.880029407603919, - "c6": -2.0307692810321, - "c7": 10.440376590534592 + "points": { + "c1": 10.744264075517425, + "c2": -1.2498346586198679, + "c3": -0.7498559455473988, + "c4": 1.0399488274236433, + "c5": -14.370407702683519, + "c6": -7.906198357684252, + "c7": 4.6271189752208315 }, - "vertexSeeds": { - "c1": 5.542360192911589, - "c2": 5.579475629293212, - "c3": 5.514193409853722, - "c4": 5.456075421688811, - "c5": 5.564787506773126, - "c6": 5.942112913504906, - "c7": 5.438685904958659 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [222, 0, 59] }, @@ -466053,23 +466053,23 @@ "year": 1841, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": 2.828859998165708, - "c2": 5.467565521172418, - "c3": -3.85655053761802, - "c4": 18.501622619922962, - "c5": 20.071189560113133, - "c6": 7.833942117282589, - "c7": 3.1136386151101867 + "points": { + "c1": 20.839396300878747, + "c2": 14.929922227896348, + "c3": 11.424026080951528, + "c4": -26.654054249562147, + "c5": 21.014967271526253, + "c6": -13.543380663927538, + "c7": 14.867737783066637 }, - "vertexSeeds": { - "c1": 10.86529740640816, - "c2": 9.952927008195559, - "c3": 12.539526049562202, - "c4": 12.895850015340951, - "c5": 10.894181344502414, - "c6": 10.294629555007438, - "c7": 11.1526140618639 + "offsets": { + "c1": 22.103559870550164, + "c2": 18.94590846047157, + "c3": 15.788257050392977, + "c4": 12.630605640314386, + "c5": 9.472954230235779, + "c6": 6.315302820157186, + "c7": 3.157651410078593 }, "rgb": [238, 201, 159] }, @@ -466080,23 +466080,23 @@ "year": 1841, "resistanceReported": false, "duration": 14256000, - "curveSeeds": { - "c1": -0.32798447269585296, - "c2": -1.9563336402701168, - "c3": 11.599994281856446, - "c4": -11.732516308347469, - "c5": 21.51926453656852, - "c6": -0.7910961426566345, - "c7": -1.369919079093922 + "points": { + "c1": 14.419836714679462, + "c2": 14.711092837326575, + "c3": -25.46881103746103, + "c4": -18.283580425923684, + "c5": -22.015604048834557, + "c6": -4.268509125281945, + "c7": 23.68607206642629 }, - "vertexSeeds": { - "c1": 8.91551164626017, - "c2": 9.114117190709846, - "c3": 9.2297274463851, - "c4": 8.931294278749661, - "c5": 8.87871294901036, - "c6": 8.926345567035511, - "c7": 9.442302620712411 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [77, 76, 132] }, @@ -466107,23 +466107,23 @@ "year": 1840, "resistanceReported": false, "duration": 3283200, - "curveSeeds": { - "c1": -12.37953124787017, - "c2": 11.547391692167771, - "c3": 12.911783890718525, - "c4": 4.854356160310317, - "c5": -7.499382821069557, - "c6": -10.003421807757784, - "c7": 7.425951097818704 + "points": { + "c1": 5.9750202677710185, + "c2": -13.160679663203751, + "c3": 13.246315609755154, + "c4": -12.49494282621221, + "c5": -12.294791501228978, + "c6": -11.698298188315325, + "c7": -13.557589037702357 }, - "vertexSeeds": { - "c1": 6.828716290099521, - "c2": 6.830129893402935, - "c3": 6.851266477880018, - "c4": 6.902411968662121, - "c5": 6.7968854827355765, - "c6": 6.8556744327107815, - "c7": 6.887149170554778 + "offsets": { + "c1": 11.618122977346278, + "c2": 9.958391123439679, + "c3": 8.298659269533077, + "c4": 6.638927415626403, + "c5": 4.979195561719802, + "c6": 3.3194637078132017, + "c7": 1.6597318539066008 }, "rgb": [58, 15, 49] }, @@ -466134,23 +466134,23 @@ "year": 1841, "resistanceReported": false, "duration": 15379200, - "curveSeeds": { - "c1": 8.438108247884799, - "c2": -25.128705758245395, - "c3": -13.668446727963762, - "c4": -5.661545333592475, - "c5": -13.92240780022419, - "c6": -24.205040983115374, - "c7": -1.2430397199654166 + "points": { + "c1": 19.619252533217505, + "c2": 11.394698427750328, + "c3": 23.430023897527796, + "c4": -6.273759420446396, + "c5": -4.175241998529739, + "c6": 26.911108178950563, + "c7": 1.0050114104922265 }, - "vertexSeeds": { - "c1": 13.817540852015648, - "c2": 14.252646432575515, - "c3": 13.826915777965903, - "c4": 13.396116396506997, - "c5": 12.900148424517734, - "c6": 12.613823373608259, - "c7": 13.072931808666757 + "offsets": { + "c1": 24.724919093851135, + "c2": 21.19278779472954, + "c3": 17.660656495607945, + "c4": 14.128525196486354, + "c5": 10.596393897364758, + "c6": 7.064262598243165, + "c7": 3.53213129912157 }, "rgb": [86, 146, 138] }, @@ -466161,23 +466161,23 @@ "year": 1841, "resistanceReported": false, "duration": 11145600, - "curveSeeds": { - "c1": -6.562602531969738, - "c2": -12.964565469127779, - "c3": -21.4822201819906, - "c4": -0.044920019661120136, - "c5": 10.343792006728393, - "c6": 5.613515343194777, - "c7": -11.695687735241242 + "points": { + "c1": 5.035601913913091, + "c2": 11.475077028531892, + "c3": 7.341816416964079, + "c4": 18.265587999478498, + "c5": 20.793925646666146, + "c6": -20.815418000012002, + "c7": -14.840460149337426 }, - "vertexSeeds": { - "c1": 1.1931757022082634, - "c2": 1.2688884562842493, - "c3": 1.2401523128727834, - "c4": 1.2853301496918692, - "c5": 1.224395703336168, - "c6": 1.2913452491236668, - "c7": 1.2066470016865452 + "offsets": { + "c1": 2.2006472491909386, + "c2": 1.8862690707350895, + "c3": 1.5718908922792407, + "c4": 1.2575127138233915, + "c5": 0.943134535367547, + "c6": 0.6287563569116981, + "c7": 0.31437817845584903 }, "rgb": [77, 76, 132] }, @@ -466188,23 +466188,23 @@ "year": 1841, "resistanceReported": false, "duration": 4665600, - "curveSeeds": { - "c1": -6.975490620840047, - "c2": 0.2800490075551636, - "c3": -11.287925580828462, - "c4": -4.606997936290314, - "c5": 12.755245056390272, - "c6": 14.628812776095693, - "c7": 14.974777159888315 + "points": { + "c1": 16.429389255825633, + "c2": 5.540451888153477, + "c3": 11.111330359214413, + "c4": -7.625520559406603, + "c5": -9.219202183419306, + "c6": 11.186728487090718, + "c7": 2.19399553065886 }, - "vertexSeeds": { - "c1": 11.16276472530431, - "c2": 11.39893437030418, - "c3": 11.452719303039267, - "c4": 11.407025051398426, - "c5": 10.918085308892469, - "c6": 11.754655191699822, - "c7": 11.113421078407333 + "offsets": { + "c1": 19.77346278317152, + "c2": 16.948682385575605, + "c3": 14.123901987979652, + "c4": 11.299121590383736, + "c5": 8.474341192787785, + "c6": 5.649560795191868, + "c7": 2.824780397595916 }, "rgb": [58, 15, 49] }, @@ -466215,23 +466215,23 @@ "year": 1841, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 14.05071322315203, - "c2": -18.149546883516777, - "c3": -17.523534029289923, - "c4": -8.370178010166695, - "c5": -2.9915403306454458, - "c6": 3.3558991957652324, - "c7": 15.224313381317451 + "points": { + "c1": 4.796755779721444, + "c2": 8.013975356841826, + "c3": 4.122234372245526, + "c4": 15.145063198744865, + "c5": -4.332717628823293, + "c6": -10.294027008431893, + "c7": -20.811527792477648 }, - "vertexSeeds": { - "c1": 13.444627957842233, - "c2": 13.55239786515834, - "c3": 13.523240333910266, - "c4": 13.964106837863564, - "c5": 13.59087872855461, - "c6": 13.024229587270824, - "c7": 13.85591660004124 + "offsets": { + "c1": 23.300970873786408, + "c2": 19.972260748959794, + "c3": 16.64355062413318, + "c4": 13.314840499306511, + "c5": 9.986130374479897, + "c6": 6.657420249653282, + "c7": 3.328710124826615 }, "rgb": [86, 146, 138] }, @@ -466242,23 +466242,23 @@ "year": 1841, "resistanceReported": false, "duration": 10627200, - "curveSeeds": { - "c1": -5.412689064232641, - "c2": -19.667059096139713, - "c3": 13.466714588850586, - "c4": -8.248433571232955, - "c5": 16.455447866906496, - "c6": 11.032522929607445, - "c7": 7.381211581419475 + "points": { + "c1": -14.395856795005825, + "c2": 0.5266938968026835, + "c3": -0.9309323410653754, + "c4": 3.3775676520701374, + "c5": 14.337344320557541, + "c6": 3.1460439204507225, + "c7": 4.203415627271809 }, - "vertexSeeds": { - "c1": 9.26505901159396, - "c2": 9.704546141730312, - "c3": 9.372925871054193, - "c4": 8.989903506241184, - "c5": 9.429397792861428, - "c6": 9.637730389741126, - "c7": 8.972680268781922 + "offsets": { + "c1": 16.213592233009706, + "c2": 13.897364771151185, + "c3": 11.581137309292643, + "c4": 9.264909847434122, + "c5": 6.948682385575584, + "c6": 4.632454923717061, + "c7": 2.3162274618585217 }, "rgb": [77, 76, 132] }, @@ -466269,23 +466269,23 @@ "year": 1842, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": -8.982543572111766, - "c2": 14.1153931430133, - "c3": 14.423818345951382, - "c4": 8.671349462257787, - "c5": -38.66629212325458, - "c6": -34.65919936432614, - "c7": 20.167057099197464 + "points": { + "c1": -9.207465789613153, + "c2": 19.760738001652868, + "c3": 42.57873668310138, + "c4": 7.2262199404341345, + "c5": -12.02897780434406, + "c6": 1.4910429486750445, + "c7": 43.7943118729722 }, - "vertexSeeds": { - "c1": 7.263825668544913, - "c2": 7.61452150460236, - "c3": 7.915822082671278, - "c4": 7.485535628327005, - "c5": 7.495145739581688, - "c6": 7.875841498878488, - "c7": 7.497527687278524 + "offsets": { + "c1": 13.300970873786408, + "c2": 11.400832177531209, + "c3": 9.500693481276011, + "c4": 7.600554785020794, + "c5": 5.7004160887655955, + "c6": 3.800277392510397, + "c7": 1.9001386962551985 }, "rgb": [77, 76, 132] }, @@ -466296,23 +466296,23 @@ "year": 1842, "resistanceReported": false, "duration": 33091200, - "curveSeeds": { - "c1": -30.847667254255303, - "c2": 42.798951598876585, - "c3": 10.210146628217728, - "c4": -32.705929804011376, - "c5": 27.885245007238538, - "c6": 16.336711515360484, - "c7": -10.044498569797597 + "points": { + "c1": 33.46049908375875, + "c2": -9.222581994994265, + "c3": 47.943199604240135, + "c4": 36.31789063803117, + "c5": 17.28391382293617, + "c6": -13.023598735896066, + "c7": 33.19263897156327 }, - "vertexSeeds": { - "c1": 9.688920733054113, - "c2": 9.706239748258707, - "c3": 9.791797218485815, - "c4": 9.70567365997621, - "c5": 9.705142270079396, - "c6": 9.738574149481812, - "c7": 9.76069719145143 + "offsets": { + "c1": 16.34304207119741, + "c2": 14.008321775312131, + "c3": 11.673601479426699, + "c4": 9.338881183541421, + "c5": 7.004160887655988, + "c6": 4.6694405917707105, + "c7": 2.334720295885278 }, "rgb": [58, 15, 49] }, @@ -466323,23 +466323,23 @@ "year": 1841, "resistanceReported": false, "duration": 8726400, - "curveSeeds": { - "c1": -8.670462678359852, - "c2": -7.395320174862679, - "c3": -3.885629705102458, - "c4": 0.7868683056619403, - "c5": 0.326436864218028, - "c6": 12.909434348134276, - "c7": -11.932027998830176 + "points": { + "c1": -11.180309653993081, + "c2": 9.160849017865395, + "c3": 8.151214244374923, + "c4": 10.379032230105746, + "c5": -0.10067738060013554, + "c6": -17.32456093452279, + "c7": -15.035409103001886 }, - "vertexSeeds": { - "c1": 6.954896246493283, - "c2": 7.034179979850732, - "c3": 6.775849139911078, - "c4": 6.751656385807856, - "c5": 6.960009798636349, - "c6": 7.048386915892964, - "c7": 6.834048358420982 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284319, + "c3": 8.784096162736942, + "c4": 7.027276930189546, + "c5": 5.270457697642169, + "c6": 3.513638465094773, + "c7": 1.756819232547377 }, "rgb": [77, 76, 132] }, @@ -466350,23 +466350,23 @@ "year": 1841, "resistanceReported": false, "duration": 9504000, - "curveSeeds": { - "c1": 9.032486278552106, - "c2": 14.866128609608655, - "c3": -14.394170527503597, - "c4": 13.722218941291825, - "c5": -5.0791088177762695, - "c6": -6.103196974816083, - "c7": 6.086795441595417 + "points": { + "c1": 16.457904965903598, + "c2": -14.792892940752228, + "c3": -12.626305800176054, + "c4": -20.85889986925296, + "c5": -5.500660655358381, + "c6": 15.496756368606622, + "c7": -12.97348924300505 }, - "vertexSeeds": { - "c1": 8.86127898570578, - "c2": 8.680975223523124, - "c3": 8.611556607398986, - "c4": 10.264258999487344, - "c5": 9.492077878517554, - "c6": 9.019168610952462, - "c7": 8.920338567477405 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518728, + "c3": 12.367082755432268, + "c4": 9.89366620434582, + "c5": 7.420249653259359, + "c6": 4.94683310217291, + "c7": 2.47341655108646 }, "rgb": [86, 146, 138] }, @@ -466377,23 +466377,23 @@ "year": 1841, "resistanceReported": false, "duration": 6220800, - "curveSeeds": { - "c1": 12.962694103124843, - "c2": 3.2790260978810615, - "c3": -6.427116557153536, - "c4": 10.305547923282095, - "c5": 12.257952100662823, - "c6": -5.627890862370506, - "c7": -9.532767047444597 + "points": { + "c1": 17.499797864368638, + "c2": 10.208403650839081, + "c3": 15.595522862662897, + "c4": 3.6525867733021045, + "c5": 7.925218508862006, + "c6": 10.047433999479544, + "c7": 1.326711364419623 }, - "vertexSeeds": { - "c1": 5.6207840634988475, - "c2": 5.624287771682177, - "c3": 5.622808842229201, - "c4": 5.61701550387988, - "c5": 5.623717570795939, - "c6": 5.632347183365154, - "c7": 5.634276390833922 + "offsets": { + "c1": 9.41747572815534, + "c2": 8.072122052704348, + "c3": 6.726768377253891, + "c4": 5.381414701802899, + "c5": 4.036061026352441, + "c6": 2.6907073509014494, + "c7": 1.3453536754509923 }, "rgb": [58, 15, 49] }, @@ -466404,23 +466404,23 @@ "year": 1841, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": -3.5737285972950055, - "c2": -5.3544053547736645, - "c3": 8.106044092382202, - "c4": -0.9333235701675378, - "c5": 18.990123673146556, - "c6": -8.359176214931615, - "c7": 16.508783491542026 + "points": { + "c1": 19.370013526368552, + "c2": -16.536853954761327, + "c3": 6.023272485811198, + "c4": 3.380571126673832, + "c5": -15.229692304228827, + "c6": -16.418132933643683, + "c7": 16.96760516032853 }, - "vertexSeeds": { - "c1": 8.439531310232127, - "c2": 8.201170130527194, - "c3": 7.965462251032331, - "c4": 7.8400758267807715, - "c5": 8.412888621115261, - "c6": 8.020502812270106, - "c7": 7.832976033805289 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858531, + "c3": 10.263522884882113, + "c4": 8.210818307905694, + "c5": 6.158113730929256, + "c6": 4.105409153952838, + "c7": 2.052704576976419 }, "rgb": [222, 0, 59] }, @@ -466431,23 +466431,23 @@ "year": 1841, "resistanceReported": false, "duration": 8380800, - "curveSeeds": { - "c1": 9.857760949642703, - "c2": -2.629685475032872, - "c3": 12.729805649196837, - "c4": 4.632594984104312, - "c5": -18.118175526015843, - "c6": 8.337088212495235, - "c7": 4.339750730049733 + "points": { + "c1": -20.043246108473376, + "c2": 0.817701572749705, + "c3": -8.474832266514447, + "c4": 19.78382600723301, + "c5": -16.69670120714646, + "c6": -11.860363747565568, + "c7": -5.753657697946469 }, - "vertexSeeds": { - "c1": 10.328530178466512, - "c2": 10.18625089650665, - "c3": 10.27957030946303, - "c4": 9.641617463466723, - "c5": 9.53500658805776, - "c6": 9.752886792552584, - "c7": 10.22706507099913 + "offsets": { + "c1": 17.411003236245957, + "c2": 14.923717059639408, + "c3": 12.436430883032827, + "c4": 9.949144706426278, + "c5": 7.461858529819695, + "c6": 4.97457235321313, + "c7": 2.487286176606565 }, "rgb": [77, 76, 132] }, @@ -466458,23 +466458,23 @@ "year": 1841, "resistanceReported": false, "duration": 13046400, - "curveSeeds": { - "c1": 13.92342023607236, - "c2": -20.00560317378823, - "c3": 17.32861036599199, - "c4": -18.180439954651177, - "c5": -2.674725047493965, - "c6": 12.456105594309214, - "c7": -13.42466929471486 + "points": { + "c1": -25.23769526859051, + "c2": 1.9607012469401148, + "c3": -4.815120130172037, + "c4": -4.559993583472636, + "c5": 23.96020418102151, + "c6": -20.103998747657897, + "c7": 22.476404230380453 }, - "vertexSeeds": { - "c1": 5.088439919029894, - "c2": 5.012327468711311, - "c3": 4.6864384795347025, - "c4": 4.834162751023613, - "c5": 5.0526527329708655, - "c6": 5.064963663622837, - "c7": 4.792090166365134 + "offsets": { + "c1": 8.54368932038835, + "c2": 7.323162274618583, + "c3": 6.102635228848816, + "c4": 4.882108183079058, + "c5": 3.6615811373092915, + "c6": 2.4410540915395242, + "c7": 1.220527045769767 }, "rgb": [77, 76, 132] }, @@ -466485,23 +466485,23 @@ "year": 1841, "resistanceReported": false, "duration": 14774400, - "curveSeeds": { - "c1": 15.165788033753977, - "c2": 20.57326774691947, - "c3": -16.714548851838394, - "c4": -18.281622569862297, - "c5": -16.217830108984923, - "c6": -24.953292673091365, - "c7": 5.889483900909546 + "points": { + "c1": -9.065864265878457, + "c2": -20.287031643074265, + "c3": 26.726364327560503, + "c4": -6.795449094330785, + "c5": 16.75705736738903, + "c6": 18.338267957040188, + "c7": -1.4861998940408334 }, - "vertexSeeds": { - "c1": 8.887007284678093, - "c2": 8.452933394585097, - "c3": 8.512382143669074, - "c4": 9.115817691444043, - "c5": 8.467401935107638, - "c6": 8.947591876186992, - "c7": 9.09426079756985 + "offsets": { + "c1": 15.6957928802589, + "c2": 13.45353675450762, + "c3": 11.21128062875636, + "c4": 8.96902450300508, + "c5": 6.726768377253819, + "c6": 4.48451225150254, + "c7": 2.242256125751279 }, "rgb": [86, 146, 138] }, @@ -466512,23 +466512,23 @@ "year": 1841, "resistanceReported": false, "duration": 6480000, - "curveSeeds": { - "c1": -7.25479562974513, - "c2": 14.303352722332498, - "c3": 13.624202463201787, - "c4": -6.4134805826196395, - "c5": -0.28168078034370225, - "c6": 14.377012694781271, - "c7": 4.926271977016313 + "points": { + "c1": -13.741166866866944, + "c2": -0.20569173329981894, + "c3": 0.050494466936335414, + "c4": -5.562559013156466, + "c5": -4.3429183531257785, + "c6": -13.941031289506814, + "c7": 5.848886198841402 }, - "vertexSeeds": { - "c1": 7.20039288688707, - "c2": 7.303148194503786, - "c3": 7.161091927946722, - "c4": 7.313652907289091, - "c5": 7.108158617322106, - "c6": 7.515115048472837, - "c7": 7.578307550989631 + "offsets": { + "c1": 12.68608414239482, + "c2": 10.873786407766985, + "c3": 9.061488673139149, + "c4": 7.2491909385113145, + "c5": 5.436893203883506, + "c6": 3.6245954692556714, + "c7": 1.8122977346278357 }, "rgb": [86, 146, 138] }, @@ -466539,23 +466539,23 @@ "year": 1842, "resistanceReported": false, "duration": 16416000, - "curveSeeds": { - "c1": 4.626286732375863, - "c2": 18.011249433349246, - "c3": 20.91405128201379, - "c4": 10.952902603330653, - "c5": 27.541778880940566, - "c6": -18.438982573350536, - "c7": 10.229553506446617 + "points": { + "c1": -0.8235859981463385, + "c2": -2.6333310081699715, + "c3": -16.894314800531845, + "c4": -6.864956463123885, + "c5": 22.84074319789617, + "c6": 24.911844009138246, + "c7": -24.45479876415386 }, - "vertexSeeds": { - "c1": 18.06417399678655, - "c2": 16.116149313930883, - "c3": 18.236639383316902, - "c4": 17.399685568378676, - "c5": 17.908293954518044, - "c6": 15.569591736450027, - "c7": 18.399478556344945 + "offsets": { + "c1": 31.456310679611647, + "c2": 26.9625520110957, + "c3": 22.468793342579755, + "c4": 17.975034674063807, + "c5": 13.48127600554786, + "c6": 8.987517337031914, + "c7": 4.493758668515968 }, "rgb": [238, 201, 159] }, @@ -466566,23 +466566,23 @@ "year": 1841, "resistanceReported": false, "duration": 9936000, - "curveSeeds": { - "c1": -16.484121344872257, - "c2": -17.518758497292094, - "c3": -15.906618765434894, - "c4": -1.4096334565435846, - "c5": 0.6329093799759988, - "c6": 20.4834290767317, - "c7": -7.4413746851061315 + "points": { + "c1": 18.262194509293042, + "c2": -19.922456180689245, + "c3": 21.74025164771287, + "c4": -10.958365913311775, + "c5": 14.875814438945046, + "c6": -8.03773148493348, + "c7": -4.460438629093407 }, - "vertexSeeds": { - "c1": 10.183249805686037, - "c2": 10.55138651067657, - "c3": 10.745413947757214, - "c4": 10.465677219130317, - "c5": 10.532562356496186, - "c6": 9.89817958264567, - "c7": 10.061502422884704 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363392, + "c3": 12.85251964863617, + "c4": 10.28201571890891, + "c5": 7.711511789181687, + "c6": 5.141007859454464, + "c7": 2.570503929727223 }, "rgb": [222, 0, 59] }, @@ -466593,23 +466593,23 @@ "year": 1841, "resistanceReported": false, "duration": 10454400, - "curveSeeds": { - "c1": -4.508890228164436, - "c2": 17.37738001099104, - "c3": -10.669451422719472, - "c4": -9.725516974408842, - "c5": -14.72889633944337, - "c6": -18.871967241261636, - "c7": 11.04305540209846 + "points": { + "c1": -22.89767380546847, + "c2": -20.106381084992034, + "c3": 2.7747086880968723, + "c4": 8.386636184078508, + "c5": 16.161607330128028, + "c6": -9.942150020978785, + "c7": -15.296987223658672 }, - "vertexSeeds": { - "c1": 6.3921111839142135, - "c2": 5.95441344983413, - "c3": 6.082368776932214, - "c4": 6.106285663295549, - "c5": 5.932758267129633, - "c6": 6.033435741030649, - "c7": 6.260242205180294 + "offsets": { + "c1": 10.87378640776699, + "c2": 9.320388349514571, + "c3": 7.766990291262134, + "c4": 6.213592233009713, + "c5": 4.660194174757277, + "c6": 3.1067961165048565, + "c7": 1.5533980582524198 }, "rgb": [222, 0, 59] }, @@ -466620,23 +466620,23 @@ "year": 1842, "resistanceReported": false, "duration": 19440000, - "curveSeeds": { - "c1": -15.369776757580755, - "c2": 4.852598063454707, - "c3": -27.550374522770586, - "c4": 24.339415117186327, - "c5": -11.529013352746784, - "c6": -14.971542994585871, - "c7": 8.383290050304353 + "points": { + "c1": 15.447562702873348, + "c2": -22.133305601764153, + "c3": 31.426630873436693, + "c4": -8.837332089440054, + "c5": 31.58359660990449, + "c6": -10.623206125144613, + "c7": 3.489852057793641 }, - "vertexSeeds": { - "c1": 6.525081637640827, - "c2": 6.569807820315566, - "c3": 6.364742749971649, - "c4": 6.339608559966139, - "c5": 6.531687316720326, - "c6": 6.4429585510585135, - "c7": 6.63522016134298 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158125, + "c3": 8.136846971798425, + "c4": 6.5094775774387506, + "c5": 4.882108183079051, + "c6": 3.2547387887193753, + "c7": 1.6273693943596756 }, "rgb": [222, 0, 59] }, @@ -466647,23 +466647,23 @@ "year": 1842, "resistanceReported": false, "duration": 24537600, - "curveSeeds": { - "c1": 29.963964425337423, - "c2": 34.32417127378572, - "c3": 11.597121113189502, - "c4": -14.234857575952734, - "c5": -32.534920966178, - "c6": 32.308859508792025, - "c7": -17.071080935438058 + "points": { + "c1": 16.812214139220224, + "c2": -0.7061358127253285, + "c3": 23.918833383154713, + "c4": 28.74451529777855, + "c5": 22.786728389327934, + "c6": -16.41472914373472, + "c7": 14.27717452030705 }, - "vertexSeeds": { - "c1": 7.768265170676644, - "c2": 7.5337025620298945, - "c3": 7.783849217624815, - "c4": 7.88560321125138, - "c5": 7.946053432540974, - "c6": 7.975146185828742, - "c7": 7.810565159714595 + "offsets": { + "c1": 13.333333333333334, + "c2": 11.428571428571441, + "c3": 9.52380952380952, + "c4": 7.6190476190476275, + "c5": 5.714285714285706, + "c6": 3.8095238095238138, + "c7": 1.9047619047618929 }, "rgb": [222, 0, 59] }, @@ -466674,23 +466674,23 @@ "year": 1841, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 13.267686469415523, - "c2": 13.420200438123224, - "c3": 16.62118712675843, - "c4": -7.90343847537466, - "c5": 1.8434107040932908, - "c6": 3.4110639089272325, - "c7": -15.615468970224942 + "points": { + "c1": 16.046360353569888, + "c2": 17.925573895257102, + "c3": -21.074399572023097, + "c4": -1.001612003356609, + "c5": 3.3840108138821314, + "c6": -6.434778782760883, + "c7": -17.28437829080429 }, - "vertexSeeds": { - "c1": 16.03825138469275, - "c2": 15.76008117569287, - "c3": 15.613918257251747, - "c4": 14.58450844777385, - "c5": 15.246475916913614, - "c6": 15.83745819773339, - "c7": 14.800319976464639 + "offsets": { + "c1": 26.796116504854368, + "c2": 22.968099861303756, + "c3": 19.14008321775314, + "c4": 15.31206657420249, + "c5": 11.484049930651878, + "c6": 7.656033287101265, + "c7": 3.8280166435506127 }, "rgb": [86, 146, 138] }, @@ -466701,23 +466701,23 @@ "year": 1842, "resistanceReported": false, "duration": 20390400, - "curveSeeds": { - "c1": -28.852781705021158, - "c2": 8.694274215881066, - "c3": -1.4908904866212467, - "c4": 2.8072992204799903, - "c5": 22.980950287226378, - "c6": -7.4827127195120156, - "c7": 19.127719955858502 + "points": { + "c1": -0.7894437254737383, + "c2": -0.4252857038425475, + "c3": -12.426582178486541, + "c4": 14.084987795611184, + "c5": 2.546318321247007, + "c6": -13.955910136608562, + "c7": 26.494286482188812 }, - "vertexSeeds": { - "c1": 5.891954427970572, - "c2": 6.0054384093560085, - "c3": 6.047333214089087, - "c4": 6.315575498092083, - "c5": 5.918985350428088, - "c6": 6.045690951894519, - "c7": 6.268302724408128 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661575, + "c4": 6.158113730929257, + "c5": 4.618585298196956, + "c6": 3.0790568654646377, + "c7": 1.5395284327323189 }, "rgb": [77, 76, 132] }, @@ -466728,23 +466728,23 @@ "year": 1841, "resistanceReported": false, "duration": 4579200, - "curveSeeds": { - "c1": -1.646859225018579, - "c2": 14.01770306144402, - "c3": -8.95414948708008, - "c4": -6.357322987220215, - "c5": -14.837077719411797, - "c6": 9.283798879460893, - "c7": -7.272097698959962 + "points": { + "c1": -0.39964630499886766, + "c2": -10.556651215388207, + "c3": -2.4396614543694284, + "c4": 8.41871233587814, + "c5": -15.098410190800578, + "c6": -15.087632153152038, + "c7": -14.834266357518734 }, - "vertexSeeds": { - "c1": 11.617880203798288, - "c2": 9.858831412616428, - "c3": 10.427723084391681, - "c4": 11.325271112449176, - "c5": 11.492183936499686, - "c6": 10.7757951528825, - "c7": 11.22375036358992 + "offsets": { + "c1": 19.676375404530745, + "c2": 16.865464632454916, + "c3": 14.054553860379107, + "c4": 11.243643088303278, + "c5": 8.432732316227469, + "c6": 5.621821544151639, + "c7": 2.8109107720758297 }, "rgb": [238, 201, 159] }, @@ -466755,23 +466755,23 @@ "year": 1842, "resistanceReported": false, "duration": 10108800, - "curveSeeds": { - "c1": 19.007954581190383, - "c2": -2.872373286660327, - "c3": 14.392294657620582, - "c4": 8.482561804185568, - "c5": 20.247353033095827, - "c6": -12.86902971002708, - "c7": 1.5146648882579008 + "points": { + "c1": -17.289570482184917, + "c2": -14.289996702976795, + "c3": 21.49108066948282, + "c4": 14.497025815761468, + "c5": -17.73480713237839, + "c6": -21.0141916851541, + "c7": 4.934678562771804 }, - "vertexSeeds": { - "c1": 9.120207653828645, - "c2": 9.312367938648507, - "c3": 9.066061912629452, - "c4": 9.504169608673386, - "c5": 9.372757716900834, - "c6": 8.827313613750093, - "c7": 8.850463560280728 + "offsets": { + "c1": 16.116504854368934, + "c2": 13.814147018030523, + "c3": 11.511789181692093, + "c4": 9.209431345353682, + "c5": 6.907073509015252, + "c6": 4.604715672676841, + "c7": 2.3023578363384303 }, "rgb": [77, 76, 132] }, @@ -466782,23 +466782,23 @@ "year": 1842, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -15.350094967869934, - "c2": -12.600549598251977, - "c3": 12.821571853273412, - "c4": -11.165752790267367, - "c5": 3.560225482482508, - "c6": -4.289896988651954, - "c7": -9.290978955515842 + "points": { + "c1": -21.62196585427612, + "c2": 23.084707272372626, + "c3": -15.640776918931913, + "c4": 14.456352011605887, + "c5": -14.118493425118997, + "c6": 11.151701188868579, + "c7": -3.3248279109509866 }, - "vertexSeeds": { - "c1": 7.716468838963351, - "c2": 7.412491937711835, - "c3": 7.4196492965843825, - "c4": 7.261487765871546, - "c5": 7.234961250553885, - "c6": 7.435463367554974, - "c7": 7.287101819853728 + "offsets": { + "c1": 12.9126213592233, + "c2": 11.06796116504854, + "c3": 9.22330097087378, + "c4": 7.378640776699039, + "c5": 5.533980582524279, + "c6": 3.6893203883495196, + "c7": 1.8446601941747598 }, "rgb": [86, 146, 138] }, @@ -466809,23 +466809,23 @@ "year": 1843, "resistanceReported": false, "duration": 31968000, - "curveSeeds": { - "c1": 6.560273888305055, - "c2": 18.679261721883194, - "c3": -44.94421738393549, - "c4": 18.89188325750112, - "c5": 38.310483903904704, - "c6": 31.26866830322205, - "c7": -28.488134786899863 + "points": { + "c1": 42.31221685955561, + "c2": 5.284229649195666, + "c3": -16.199797403465553, + "c4": 8.13871258100523, + "c5": 32.77581797066056, + "c6": 23.665636936495723, + "c7": 30.976299943440786 }, - "vertexSeeds": { - "c1": 6.443451965298832, - "c2": 6.310264196489462, - "c3": 6.1651009320081975, - "c4": 5.859739441740009, - "c5": 5.917770428230495, - "c6": 6.0431415480179576, - "c7": 5.864850266145493 + "offsets": { + "c1": 10.809061488673139, + "c2": 9.264909847434113, + "c3": 7.720758206195106, + "c4": 6.1766065649560815, + "c5": 4.632454923717057, + "c6": 3.0883032824780496, + "c7": 1.5441516412390248 }, "rgb": [86, 146, 138] }, @@ -466836,23 +466836,23 @@ "year": 1843, "resistanceReported": false, "duration": 39139200, - "curveSeeds": { - "c1": -19.69852792817788, - "c2": -25.089867862514073, - "c3": 5.462034318772481, - "c4": 20.129246098642994, - "c5": 49.94768406533305, - "c6": -46.64538286563847, - "c7": 46.83650909807834 + "points": { + "c1": -46.20567600263768, + "c2": 42.314079762450206, + "c3": 50.63367114811447, + "c4": 17.490744029418934, + "c5": 7.821068443585588, + "c6": -43.82154927907588, + "c7": -26.724266359877557 }, - "vertexSeeds": { - "c1": 4.791786696387076, - "c2": 4.612704983694766, - "c3": 4.748893963729609, - "c4": 4.573282070331957, - "c5": 4.904720448373076, - "c6": 4.6589008330805655, - "c7": 4.942223599292074 + "offsets": { + "c1": 8.284789644012944, + "c2": 7.101248266296807, + "c3": 5.917706888580678, + "c4": 4.734165510864541, + "c5": 3.5506241331484034, + "c6": 2.367082755432266, + "c7": 1.1835413777161377 }, "rgb": [58, 15, 49] }, @@ -466863,23 +466863,23 @@ "year": 1843, "resistanceReported": false, "duration": 40608000, - "curveSeeds": { - "c1": 21.11706043469688, - "c2": -47.31792759674039, - "c3": -11.717446907715285, - "c4": -30.522822281561343, - "c5": -18.608573675025696, - "c6": 18.893748504435607, - "c7": -10.802150001503165 + "points": { + "c1": -4.538878625458921, + "c2": -46.337484124862684, + "c3": -15.071161158081146, + "c4": 5.053425491669891, + "c5": 23.398077268188942, + "c6": 47.25416838576881, + "c7": -24.855225966141226 }, - "vertexSeeds": { - "c1": 16.960159702482116, - "c2": 15.931301596425785, - "c3": 16.64309762157883, - "c4": 16.95360361681924, - "c5": 16.60771510831662, - "c6": 15.803470261890995, - "c7": 16.691348162128353 + "offsets": { + "c1": 28.802588996763756, + "c2": 24.687933425797493, + "c3": 20.573277854831233, + "c4": 16.458622283865008, + "c5": 12.343966712898746, + "c6": 8.229311141932486, + "c7": 4.114655570966261 }, "rgb": [77, 76, 132] }, @@ -466890,23 +466890,23 @@ "year": 1843, "resistanceReported": false, "duration": 41040000, - "curveSeeds": { - "c1": -54.13396054931606, - "c2": 46.56420451406908, - "c3": -26.244598296012725, - "c4": 36.08689486410646, - "c5": -22.384864428284615, - "c6": 0.7767382470482005, - "c7": 6.950212682258318 + "points": { + "c1": -54.52852706830406, + "c2": 52.81898389021281, + "c3": -52.20318094668394, + "c4": -20.262072893863305, + "c5": -12.310970803850154, + "c6": 11.463543223865805, + "c7": 10.196120616654248 }, - "vertexSeeds": { - "c1": 4.534765022135544, - "c2": 4.559172822821185, - "c3": 4.4919705999294735, - "c4": 4.4619947901065835, - "c5": 4.505566187471685, - "c6": 4.610332999696024, - "c7": 4.5305092796468225 + "offsets": { + "c1": 7.799352750809062, + "c2": 6.685159500693473, + "c3": 5.570966250577904, + "c4": 4.456773000462316, + "c5": 3.3425797503467467, + "c6": 2.228386500231158, + "c7": 1.1141932501155687 }, "rgb": [86, 146, 138] }, @@ -466917,23 +466917,23 @@ "year": 1842, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": 28.354453743830256, - "c2": 2.234142102644185, - "c3": -4.789823066102567, - "c4": -16.101833652249276, - "c5": 12.840000853280117, - "c6": 10.260074090757193, - "c7": -28.682686803818584 + "points": { + "c1": 10.12744170454463, + "c2": 21.318173029330545, + "c3": 0.40819007129330487, + "c4": -30.27129727755498, + "c5": -9.321713884407973, + "c6": -8.828385471350256, + "c7": 33.48431790072239 }, - "vertexSeeds": { - "c1": 8.719159813701664, - "c2": 8.739247455105419, - "c3": 8.73404159918415, - "c4": 8.690307065963223, - "c5": 8.648321602743275, - "c6": 8.678203305563194, - "c7": 8.653761897437285 + "offsets": { + "c1": 14.59546925566343, + "c2": 12.51040221914006, + "c3": 10.425335182616688, + "c4": 8.340268146093484, + "c5": 6.2552011095701125, + "c6": 4.170134073046742, + "c7": 2.085067036523371 }, "rgb": [86, 146, 138] }, @@ -466944,23 +466944,23 @@ "year": 1842, "resistanceReported": false, "duration": 17539200, - "curveSeeds": { - "c1": -21.081891150907296, - "c2": -10.458824156369694, - "c3": 7.258166510936576, - "c4": -26.645825657159264, - "c5": 9.382361138580286, - "c6": -11.849136380956544, - "c7": -8.745525402375769 + "points": { + "c1": 18.778450458658654, + "c2": 26.850319652627427, + "c3": -12.060110099683268, + "c4": 26.590067505554813, + "c5": -20.92834020120586, + "c6": -15.901942023979757, + "c7": -30.169081487949647 }, - "vertexSeeds": { - "c1": 5.483689107274184, - "c2": 5.856333725069425, - "c3": 5.492959035517093, - "c4": 5.564696236863701, - "c5": 5.4994400817562665, - "c6": 5.797899241278608, - "c7": 5.845864954566767 + "offsets": { + "c1": 9.935275080906148, + "c2": 8.51595006934813, + "c3": 7.096625057790112, + "c4": 5.6773000462320935, + "c5": 4.257975034674056, + "c6": 2.8386500231160374, + "c7": 1.4193250115580187 }, "rgb": [58, 15, 49] }, @@ -466971,23 +466971,23 @@ "year": 1842, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -13.318885185442324, - "c2": 12.566781953657813, - "c3": 23.379583145298174, - "c4": -22.82907982426031, - "c5": -21.236003678666385, - "c6": 5.703975143501033, - "c7": -24.463020457900818 + "points": { + "c1": 16.28757328994136, + "c2": 1.1889864155238286, + "c3": 7.461025995477986, + "c4": 4.383781550003466, + "c5": -23.66701031799778, + "c6": 6.622725225162728, + "c7": 27.581585143193156 }, - "vertexSeeds": { - "c1": 10.298612791189031, - "c2": 10.150503627052736, - "c3": 9.548065615235789, - "c4": 9.964192548632127, - "c5": 10.100543293039086, - "c6": 10.207797292286608, - "c7": 10.217313621784688 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438284, + "c3": 12.320850670365243, + "c4": 9.856680536292183, + "c5": 7.392510402219142, + "c6": 4.928340268146101, + "c7": 2.4641701340730413 }, "rgb": [58, 15, 49] }, @@ -466998,23 +466998,23 @@ "year": 1842, "resistanceReported": false, "duration": 8812800, - "curveSeeds": { - "c1": -4.58489812401918, - "c2": 17.581635862474794, - "c3": -11.33974200846708, - "c4": -0.6380958398851533, - "c5": -2.8658794099948786, - "c6": -7.503748723589544, - "c7": 8.151384674738768 + "points": { + "c1": -8.12636534937201, + "c2": 0.39689343074518035, + "c3": -9.79635011334138, + "c4": 13.075995518324152, + "c5": -12.891673458010006, + "c6": 6.833152707633211, + "c7": 14.027978422086608 }, - "vertexSeeds": { - "c1": 10.44069745978894, - "c2": 10.011506843996536, - "c3": 10.764149436678563, - "c4": 9.875439706534475, - "c5": 10.059453371790763, - "c6": 10.700586089924547, - "c7": 10.271485840928868 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363392, + "c3": 12.85251964863617, + "c4": 10.28201571890891, + "c5": 7.711511789181687, + "c6": 5.141007859454464, + "c7": 2.570503929727223 }, "rgb": [58, 15, 49] }, @@ -467025,23 +467025,23 @@ "year": 1843, "resistanceReported": false, "duration": 16070400, - "curveSeeds": { - "c1": 4.453684782338094, - "c2": -25.3699813672531, - "c3": -20.113398652848105, - "c4": -1.432831269705833, - "c5": -24.802524221118563, - "c6": 23.882300526701854, - "c7": -11.273856383275838 + "points": { + "c1": 18.02352877396853, + "c2": -2.1328563244393486, + "c3": 10.73911329109032, + "c4": -0.22689061058517979, + "c5": 25.572062296709852, + "c6": 2.0609860915222598, + "c7": -10.63876271960179 }, - "vertexSeeds": { - "c1": 13.054546248143184, - "c2": 12.468610903665263, - "c3": 12.309239319117278, - "c4": 13.087358813124442, - "c5": 12.184602658418084, - "c6": 12.013307185772943, - "c7": 12.958223611439598 + "offsets": { + "c1": 21.877022653721685, + "c2": 18.751733703190023, + "c3": 15.626444752658356, + "c4": 12.501155802126693, + "c5": 9.37586685159503, + "c6": 6.250577901063329, + "c7": 3.1252889505316643 }, "rgb": [222, 0, 59] }, @@ -467052,23 +467052,23 @@ "year": 1842, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": -14.16200872063677, - "c2": -9.17724940711835, - "c3": -12.79325399446549, - "c4": 5.609430851830396, - "c5": 3.2709005592374645, - "c6": -0.020093127075607953, - "c7": 12.06716693904491 + "points": { + "c1": 4.283474667658435, + "c2": -7.3464126200580075, + "c3": 12.593690216482322, + "c4": 11.382417394032114, + "c5": -1.0599031533495058, + "c6": 1.4455931771091066, + "c7": 17.982783610955977 }, - "vertexSeeds": { - "c1": 1.6130595599801574, - "c2": 1.5472600980508429, - "c3": 1.630827285233485, - "c4": 1.54356023137976, - "c5": 1.68826147079513, - "c6": 1.6891138019371317, - "c7": 1.6625912995000633 + "offsets": { + "c1": 2.8802588996763756, + "c2": 2.4687933425797484, + "c3": 2.057327785483126, + "c4": 1.645862228386499, + "c5": 1.2343966712898766, + "c6": 0.8229311141932495, + "c7": 0.4114655570966225 }, "rgb": [238, 201, 159] }, @@ -467079,23 +467079,23 @@ "year": 1843, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 12.80977398795746, - "c2": -5.678216829642899, - "c3": 0.5249132000637822, - "c4": -15.598930881507453, - "c5": 9.436481442366794, - "c6": 22.536464719997422, - "c7": -16.181715697905062 + "points": { + "c1": 26.732298595183753, + "c2": 2.325125825870064, + "c3": 2.927476537704404, + "c4": -16.95794647101444, + "c5": -2.0824781264911607, + "c6": -23.595627510520657, + "c7": -2.9714627820253448 }, - "vertexSeeds": { - "c1": 1.846617303005083, - "c2": 1.77269114239038, - "c3": 1.8485041904620858, - "c4": 1.8826103528561582, - "c5": 1.911313076649073, - "c6": 1.878168349641273, - "c7": 1.859392437206488 + "offsets": { + "c1": 3.300970873786408, + "c2": 2.829403606102635, + "c3": 2.3578363384188616, + "c4": 1.886269070735093, + "c5": 1.4147018030513197, + "c6": 0.9431345353675465, + "c7": 0.4715672676837733 }, "rgb": [58, 15, 49] }, @@ -467106,23 +467106,23 @@ "year": 1843, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -5.012501325623916, - "c2": -4.313988355797701, - "c3": 21.116808931058152, - "c4": 1.3255139580141666, - "c5": 9.039369750189927, - "c6": 7.163391653513727, - "c7": -4.974201042255324 + "points": { + "c1": 23.50887764912956, + "c2": 31.698540836853297, + "c3": -20.275907912651398, + "c4": -26.656665578802034, + "c5": -25.93797217147106, + "c6": 30.129112224481432, + "c7": -5.260473916488678 }, - "vertexSeeds": { - "c1": 5.392006666857984, - "c2": 5.5435969156193226, - "c3": 5.453216614597865, - "c4": 5.426066413920649, - "c5": 5.476268305559889, - "c6": 5.455223250234892, - "c7": 5.702597236542638 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066576, + "c3": 6.934812760055483, + "c4": 5.547850208044391, + "c5": 4.160887656033279, + "c6": 2.773925104022186, + "c7": 1.386962552011093 }, "rgb": [86, 146, 138] }, @@ -467133,23 +467133,23 @@ "year": 1843, "resistanceReported": false, "duration": 25574400, - "curveSeeds": { - "c1": -19.40453191546956, - "c2": -27.11760799593751, - "c3": -13.25687267423362, - "c4": -29.40650130438975, - "c5": -8.40064236688119, - "c6": 17.060342639566883, - "c7": -18.00572601731865 + "points": { + "c1": -3.85181516265952, + "c2": -32.41164111973021, + "c3": -0.7061809263129177, + "c4": -15.554536499456624, + "c5": 13.788908585535026, + "c6": 14.67464954697666, + "c7": 39.055875256342 }, - "vertexSeeds": { - "c1": 8.635506083729982, - "c2": 9.292568651887297, - "c3": 9.399556240656878, - "c4": 8.897560377499522, - "c5": 9.083270032958588, - "c6": 8.790858984984922, - "c7": 9.476718876925968 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [222, 0, 59] }, @@ -467160,23 +467160,23 @@ "year": 1843, "resistanceReported": false, "duration": 23500800, - "curveSeeds": { - "c1": 27.107139012071258, - "c2": 35.09432519785638, - "c3": 23.515414673864917, - "c4": -20.66255606171878, - "c5": -22.49632633100003, - "c6": 18.79971831872718, - "c7": 18.64603039955429 + "points": { + "c1": -8.051480402514791, + "c2": 6.8072179550977125, + "c3": 29.990855354487493, + "c4": -24.199566800594262, + "c5": -2.723236103656376, + "c6": 35.681906100780395, + "c7": 2.5718289416116633 }, - "vertexSeeds": { - "c1": 8.93831836052203, - "c2": 10.223453907235927, - "c3": 10.164714713703235, - "c4": 9.747733335456061, - "c5": 9.866344002930877, - "c6": 10.120378445375957, - "c7": 8.876552566434091 + "offsets": { + "c1": 17.66990291262136, + "c2": 15.145631067961158, + "c3": 12.621359223300978, + "c4": 10.097087378640778, + "c5": 7.5728155339805845, + "c6": 5.048543689320393, + "c7": 2.5242718446601913 }, "rgb": [222, 0, 59] }, @@ -467187,23 +467187,23 @@ "year": 1843, "resistanceReported": false, "duration": 12528000, - "curveSeeds": { - "c1": -14.631383344490192, - "c2": 0.7884035412893198, - "c3": -13.436845619018502, - "c4": 15.076405070155502, - "c5": -16.937923092878748, - "c6": 20.94544879508873, - "c7": 21.28316244898182 + "points": { + "c1": -5.849022642756822, + "c2": -12.563041772591466, + "c3": -21.979723670678663, + "c4": -25.65599489689995, + "c5": -25.36026856812658, + "c6": -5.228719759175103, + "c7": 25.331435655638472 }, - "vertexSeeds": { - "c1": 5.5176289891394115, - "c2": 5.760566457562128, - "c3": 5.5009713813338, - "c4": 5.6416522937448335, - "c5": 5.662910496402841, - "c6": 5.485122492989961, - "c7": 5.76134868213945 + "offsets": { + "c1": 9.64401294498382, + "c2": 8.266296809986116, + "c3": 6.8885806749884475, + "c4": 5.510864539990744, + "c5": 4.133148404993076, + "c6": 2.755432269995372, + "c7": 1.3777161349976674 }, "rgb": [86, 146, 138] }, @@ -467214,23 +467214,23 @@ "year": 1844, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": -8.891051170200177, - "c2": -1.0788542914926502, - "c3": -17.792051629591203, - "c4": -17.24443803186831, - "c5": 9.956336729200117, - "c6": 9.606580245018925, - "c7": 16.819470488577736 + "points": { + "c1": 7.104283459637745, + "c2": 13.764923533404833, + "c3": -12.79831338412884, + "c4": 1.1310758236392893, + "c5": 1.0154234706451675, + "c6": -0.9292177370410784, + "c7": -0.4880384067904977 }, - "vertexSeeds": { - "c1": 5.45298225662175, - "c2": 5.265335061172854, - "c3": 5.301642289655873, - "c4": 5.2750296953048865, - "c5": 5.388875141912006, - "c6": 5.25276975807336, - "c7": 5.319573444805332 + "offsets": { + "c1": 9.190938511326861, + "c2": 7.877947295423024, + "c3": 6.564956079519186, + "c4": 5.251964863615349, + "c5": 3.938973647711512, + "c6": 2.6259824318076745, + "c7": 1.3129912159038373 }, "rgb": [58, 15, 49] }, @@ -467241,23 +467241,23 @@ "year": 1844, "resistanceReported": false, "duration": 11577600, - "curveSeeds": { - "c1": 20.847882992753803, - "c2": 4.110487366134976, - "c3": -11.868813443065731, - "c4": -5.806906718579587, - "c5": 19.873819728086595, - "c6": 1.0315059031007294, - "c7": -13.057935797382473 + "points": { + "c1": -12.184713439306613, + "c2": -5.292477446138818, + "c3": 16.944871761472122, + "c4": 7.326822321987528, + "c5": 11.814699112275633, + "c6": 13.516728596137966, + "c7": -8.067153716701291 }, - "vertexSeeds": { - "c1": 16.091354112288744, - "c2": 16.02892691706095, - "c3": 16.409129791718442, - "c4": 16.0115193462609, - "c5": 14.65319074191253, - "c6": 15.563900413182264, - "c7": 16.01491932113444 + "offsets": { + "c1": 27.60517799352751, + "c2": 23.661581137309287, + "c3": 19.71798428109107, + "c4": 15.774387424872879, + "c5": 11.83079056865466, + "c6": 7.8871937124364395, + "c7": 3.9435968562182198 }, "rgb": [86, 146, 138] }, @@ -467268,23 +467268,23 @@ "year": 1844, "resistanceReported": false, "duration": 10800000, - "curveSeeds": { - "c1": 4.323972629107569, - "c2": -9.930615941740411, - "c3": 4.80376184732771, - "c4": 1.0246656985186817, - "c5": 19.89942554871346, - "c6": -13.068121888122125, - "c7": -9.724652980392216 + "points": { + "c1": -5.343828379638062, + "c2": -10.246904945084163, + "c3": 10.46018079719098, + "c4": -1.57102595528724, + "c5": 16.561623938169035, + "c6": 1.8364265758013545, + "c7": -10.143766334482512 }, - "vertexSeeds": { - "c1": 5.292114360425309, - "c2": 5.495285009705731, - "c3": 5.8670398494655815, - "c4": 5.55565261517532, - "c5": 6.005803384761136, - "c6": 5.599843254467438, - "c7": 5.4395595520698485 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.62690707350902, + "c3": 7.189089227924177, + "c4": 5.751271382339348, + "c5": 4.313453536754504, + "c6": 2.875635691169674, + "c7": 1.4378178455848303 }, "rgb": [222, 0, 59] }, @@ -467295,23 +467295,23 @@ "year": 1844, "resistanceReported": true, "duration": 23328000, - "curveSeeds": { - "c1": -27.415703288520596, - "c2": -7.982686078529394, - "c3": 9.480196540263428, - "c4": 2.9521296023271546, - "c5": -21.94717773421684, - "c6": -13.655919849495763, - "c7": 20.892204490629425 + "points": { + "c1": 29.32284620695772, + "c2": 7.624986716243555, + "c3": 18.143961520737648, + "c4": -10.794918084935361, + "c5": 19.13105792833538, + "c6": -35.93022526825353, + "c7": -22.287931416253308 }, - "vertexSeeds": { - "c1": 9.545779666460227, - "c2": 10.447466624951174, - "c3": 9.3845907214997, - "c4": 10.105050442132196, - "c5": 8.739872435106452, - "c6": 8.87064134636275, - "c7": 10.488816543160768 + "offsets": { + "c1": 17.57281553398058, + "c2": 15.062413314840507, + "c3": 12.552011095700411, + "c4": 10.041608876560327, + "c5": 7.531206657420243, + "c6": 5.020804438280169, + "c7": 2.5104022191400737 }, "rgb": [222, 0, 59] }, @@ -467322,23 +467322,23 @@ "year": 1844, "resistanceReported": false, "duration": 15984000, - "curveSeeds": { - "c1": 22.31286779612211, - "c2": -0.7513198819344851, - "c3": 15.049284365761903, - "c4": -0.7826086651810229, - "c5": 13.282069262250761, - "c6": -6.218075085270485, - "c7": -4.616731773332102 + "points": { + "c1": -15.023027695594621, + "c2": -29.00876009125964, + "c3": 3.9782847656308213, + "c4": 20.84249793970751, + "c5": 9.882779817510443, + "c6": 7.090884399763031, + "c7": -7.345136841112275 }, - "vertexSeeds": { - "c1": 6.277232323820642, - "c2": 6.110151788867026, - "c3": 5.937744792850684, - "c4": 5.847821062344512, - "c5": 6.148505800171118, - "c6": 5.967785010922551, - "c7": 6.2244405797085625 + "offsets": { + "c1": 10.550161812297734, + "c2": 9.042995839112347, + "c3": 7.535829865926957, + "c4": 6.02866389274157, + "c5": 4.521497919556182, + "c6": 3.014331946370776, + "c7": 1.507165973185388 }, "rgb": [77, 76, 132] }, @@ -467349,23 +467349,23 @@ "year": 1844, "resistanceReported": false, "duration": 9158400, - "curveSeeds": { - "c1": 15.97737500428451, - "c2": 10.513225276968143, - "c3": 7.661875550171246, - "c4": 1.1221663776206512, - "c5": 5.87865758814058, - "c6": -0.6953066865601585, - "c7": 17.87468866875642 + "points": { + "c1": 17.980915009374648, + "c2": -12.420063589860051, + "c3": 4.014471738876384, + "c4": 19.612762563375547, + "c5": 17.57239875508794, + "c6": -1.8167322885257704, + "c7": -0.6435369014218182 }, - "vertexSeeds": { - "c1": 2.5238548699246293, - "c2": 2.66790119107451, - "c3": 2.6402856147626914, - "c4": 2.7273591165477526, - "c5": 2.6196360383370494, - "c6": 2.5245130847708896, - "c7": 2.6766693127868173 + "offsets": { + "c1": 4.660194174757281, + "c2": 3.994452149791955, + "c3": 3.3287101248266295, + "c4": 2.6629680998613035, + "c5": 1.9972260748959776, + "c6": 1.3314840499306517, + "c7": 0.6657420249653259 }, "rgb": [222, 0, 59] }, @@ -467376,23 +467376,23 @@ "year": 1844, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": 7.812650355888753, - "c2": 14.690407517216826, - "c3": -17.759558125855534, - "c4": -16.24701419973158, - "c5": -1.921260022014259, - "c6": 7.081424762623065, - "c7": 17.346904312054484 + "points": { + "c1": 17.553735594391696, + "c2": -6.007577286311392, + "c3": 2.8453589098769, + "c4": 12.809982341394175, + "c5": 3.1446184691280124, + "c6": -8.982595104250802, + "c7": -13.4626711141032 }, - "vertexSeeds": { - "c1": 4.03418893834879, - "c2": 3.7875917003704527, - "c3": 3.911448268599709, - "c4": 4.051444540311664, - "c5": 3.808552745139577, - "c6": 3.9197399655048795, - "c7": 3.6791514075019536 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486823, + "c3": 4.8774849745723525, + "c4": 3.901987979657882, + "c5": 2.9264909847434115, + "c6": 1.950993989828941, + "c7": 0.9754969949144705 }, "rgb": [222, 0, 59] }, @@ -467403,23 +467403,23 @@ "year": 1844, "resistanceReported": false, "duration": 9763200, - "curveSeeds": { - "c1": 7.768720923481073, - "c2": -5.2972896428316485, - "c3": 12.581099150095213, - "c4": 16.419533563921945, - "c5": 13.80148752908049, - "c6": -1.4143741721700636, - "c7": -6.672200751070621 + "points": { + "c1": 12.846061522348748, + "c2": -2.2694991030487586, + "c3": 17.575601930045686, + "c4": -7.136788490264747, + "c5": -5.555330727561351, + "c6": -3.8943534192647036, + "c7": -15.884268399333937 }, - "vertexSeeds": { - "c1": 6.652276526754876, - "c2": 6.680516147908658, - "c3": 6.652348942926798, - "c4": 6.65685620120941, - "c5": 6.678316820412918, - "c6": 6.554574096620931, - "c7": 6.604866851136179 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876528, + "c3": 7.975034674063813, + "c4": 6.380027739251018, + "c5": 4.785020804438304, + "c6": 3.190013869625509, + "c7": 1.5950069348127942 }, "rgb": [77, 76, 132] }, @@ -467430,23 +467430,23 @@ "year": 1844, "resistanceReported": false, "duration": 6307200, - "curveSeeds": { - "c1": 12.818293918545304, - "c2": 12.393043961306734, - "c3": -16.47047666195895, - "c4": -15.233707677687502, - "c5": 15.805440697759845, - "c6": -9.140440803830778, - "c7": -2.8133475356966713 + "points": { + "c1": 14.750938338428885, + "c2": 17.263326043040987, + "c3": 3.3325944600560753, + "c4": -18.09251356082175, + "c5": 18.60368156254994, + "c6": -1.159623128429672, + "c7": 1.3888070014121254 }, - "vertexSeeds": { - "c1": 10.55734671575139, - "c2": 11.065395132261928, - "c3": 11.333913351863856, - "c4": 11.124881403426777, - "c5": 10.746029872848517, - "c6": 10.919965861120284, - "c7": 10.970723239081702 + "offsets": { + "c1": 19.06148867313916, + "c2": 16.338418862690702, + "c3": 13.615349052242246, + "c4": 10.89227924179379, + "c5": 8.169209431345369, + "c6": 5.446139620896913, + "c7": 2.7230698104484565 }, "rgb": [222, 0, 59] }, @@ -467457,23 +467457,23 @@ "year": 1845, "resistanceReported": false, "duration": 27043200, - "curveSeeds": { - "c1": 29.591054663091114, - "c2": -6.872475375320633, - "c3": -39.1834880381531, - "c4": 19.819873441766617, - "c5": 30.730021633024762, - "c6": 31.858331862850775, - "c7": -29.68718008171772 + "points": { + "c1": 4.25512830682279, + "c2": -2.230032063287254, + "c3": -6.443485391694807, + "c4": -33.72611848603921, + "c5": -17.900554579896415, + "c6": 22.423466529849833, + "c7": -13.012405944355336 }, - "vertexSeeds": { - "c1": 6.3480310724188085, - "c2": 6.090135620934156, - "c3": 6.055849674216317, - "c4": 6.047965539553003, - "c5": 6.381443898467455, - "c6": 5.996151066865199, - "c7": 6.075088122590876 + "offsets": { + "c1": 10.711974110032363, + "c2": 9.18169209431345, + "c3": 7.651410078594553, + "c4": 6.1211280628756395, + "c5": 4.590846047156725, + "c6": 3.0605640314378095, + "c7": 1.5302820157189145 }, "rgb": [77, 76, 132] }, @@ -467484,23 +467484,23 @@ "year": 1844, "resistanceReported": false, "duration": 17452800, - "curveSeeds": { - "c1": 22.80467066073235, - "c2": 7.391009242524198, - "c3": 2.004055125566776, - "c4": 24.945471068787583, - "c5": 3.9546521090233426, - "c6": -12.143246897346064, - "c7": -26.158257486796337 + "points": { + "c1": -13.395420047874541, + "c2": 15.161935226615377, + "c3": -9.964482655585925, + "c4": -28.378493811916975, + "c5": -27.927455748616943, + "c6": 0.5804782747115134, + "c7": 23.75263153196903 }, - "vertexSeeds": { - "c1": 4.91888301738291, - "c2": 5.024442868220313, - "c3": 4.81584616675909, - "c4": 4.934942457253144, - "c5": 4.655178961728894, - "c6": 4.788356932096445, - "c7": 4.743825771375443 + "offsets": { + "c1": 8.640776699029127, + "c2": 7.40638002773926, + "c3": 6.171983356449373, + "c4": 4.937586685159497, + "c5": 3.7031900138696208, + "c6": 2.4687933425797532, + "c7": 1.2343966712898766 }, "rgb": [222, 0, 59] }, @@ -467511,23 +467511,23 @@ "year": 1844, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": 10.922792454021572, - "c2": -13.413427540292705, - "c3": 0.4712211881411861, - "c4": -17.015005636041863, - "c5": 14.173386437837603, - "c6": -3.084125080699909, - "c7": -20.1209491853305 + "points": { + "c1": 17.673782357071378, + "c2": 15.91453389737492, + "c3": 9.232276038107269, + "c4": 3.700889619811239, + "c5": -3.806695009189017, + "c6": 11.966896869807552, + "c7": 9.903135734636937 }, - "vertexSeeds": { - "c1": 11.936551986063465, - "c2": 11.886421138742428, - "c3": 12.026920977824668, - "c4": 11.92387621966184, - "c5": 11.998317375668579, - "c6": 11.912901536907889, - "c7": 12.122320380014404 + "offsets": { + "c1": 20.388349514563107, + "c2": 17.475728155339773, + "c3": 14.563106796116555, + "c4": 11.650485436893222, + "c5": 8.737864077669887, + "c6": 5.825242718446669, + "c7": 2.9126213592233343 }, "rgb": [77, 76, 132] }, @@ -467538,23 +467538,23 @@ "year": 1844, "resistanceReported": false, "duration": 8294400, - "curveSeeds": { - "c1": 16.4791127339316, - "c2": -4.006580554353967, - "c3": -1.8864517030585723, - "c4": 3.3079631417029027, - "c5": 2.862618967444714, - "c6": -0.1848307306159711, - "c7": -4.669494425694655 + "points": { + "c1": -19.34282400192984, + "c2": -10.139589830176272, + "c3": 14.131120138750077, + "c4": -2.539288515007044, + "c5": 18.396012690825728, + "c6": 14.898640330070727, + "c7": -0.41026814613259077 }, - "vertexSeeds": { - "c1": 11.42343643298672, - "c2": 12.285730270918956, - "c3": 11.826516952001928, - "c4": 11.551377876903762, - "c5": 11.93937990021653, - "c6": 11.841468730432851, - "c7": 12.460885426291528 + "offsets": { + "c1": 20.841423948220065, + "c2": 17.864077669902922, + "c3": 14.886731391585744, + "c4": 11.909385113268604, + "c5": 8.932038834951461, + "c6": 5.9546925566343205, + "c7": 2.9773462783171416 }, "rgb": [238, 201, 159] }, @@ -467565,23 +467565,23 @@ "year": 1844, "resistanceReported": false, "duration": 8553600, - "curveSeeds": { - "c1": -0.31293356026614205, - "c2": -8.571174469649302, - "c3": -14.286620103097103, - "c4": -11.575255400380959, - "c5": -6.960599759530151, - "c6": 2.0619740378403577, - "c7": -4.302495913992708 + "points": { + "c1": 11.771759788173405, + "c2": 17.695123719379886, + "c3": -17.854184276471887, + "c4": 14.002918653922436, + "c5": 18.094252680579267, + "c6": -7.105788948523994, + "c7": -12.891300536654798 }, - "vertexSeeds": { - "c1": 4.670076514298269, - "c2": 4.792271856743318, - "c3": 4.409864547823807, - "c4": 4.609826016444816, - "c5": 4.747592181106828, - "c6": 4.707807044089014, - "c7": 4.672432508125512 + "offsets": { + "c1": 8.090614886731391, + "c2": 6.934812760055474, + "c3": 5.779010633379566, + "c4": 4.623208506703649, + "c5": 3.4674063800277413, + "c6": 2.3116042533518244, + "c7": 1.1558021266759078 }, "rgb": [238, 201, 159] }, @@ -467592,23 +467592,23 @@ "year": 1844, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": -10.558956946951437, - "c2": -16.219525566334845, - "c3": 0.4535713790370366, - "c4": 15.861412259830423, - "c5": 9.569131673692372, - "c6": -10.210299500775225, - "c7": -10.00684569879046 + "points": { + "c1": 5.286914795024273, + "c2": 17.70890581119989, + "c3": -10.05770100691895, + "c4": -13.304236165998532, + "c5": -1.755197427154794, + "c6": -1.2768143514415797, + "c7": -18.265470517604033 }, - "vertexSeeds": { - "c1": 7.9874396582005796, - "c2": 8.511950795061153, - "c3": 8.430153370500152, - "c4": 8.127411842601672, - "c5": 8.610093256278663, - "c6": 8.3428117239538, - "c7": 8.081789261596821 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.39944521497919, + "c3": 10.332871012482654, + "c4": 8.266296809986134, + "c5": 6.199722607489595, + "c6": 4.133148404993058, + "c7": 2.0665742024965374 }, "rgb": [58, 15, 49] }, @@ -467619,23 +467619,23 @@ "year": 1845, "resistanceReported": false, "duration": 22118400, - "curveSeeds": { - "c1": -32.802988965647394, - "c2": 31.3882063943989, - "c3": 21.833492055939786, - "c4": 32.63519850951378, - "c5": -16.051061143560062, - "c6": 23.86996694082911, - "c7": -5.911010069276639 + "points": { + "c1": 29.274950817637325, + "c2": 15.812860301576393, + "c3": -1.950133833943866, + "c4": -1.9062363445820196, + "c5": -18.073803384563867, + "c6": -20.792951542811778, + "c7": 30.963261971476065 }, - "vertexSeeds": { - "c1": 8.924559941973396, - "c2": 9.654521982162217, - "c3": 9.634926077055894, - "c4": 8.981183238285338, - "c5": 9.087070806721536, - "c6": 9.215295663735334, - "c7": 9.479301758032014 + "offsets": { + "c1": 16.148867313915858, + "c2": 13.84188626907074, + "c3": 11.534905224225604, + "c4": 9.227924179380487, + "c5": 6.92094313453537, + "c6": 4.613962089690235, + "c7": 2.3069810448451173 }, "rgb": [58, 15, 49] }, @@ -467646,23 +467646,23 @@ "year": 1844, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -18.33454770659892, - "c2": 3.8251220092625537, - "c3": -10.781585561691248, - "c4": 9.265983948560567, - "c5": 6.874717230665855, - "c6": 14.519605551065336, - "c7": -13.465213812119615 + "points": { + "c1": 14.766775611314, + "c2": 10.946874468067502, + "c3": 0.5786857410576971, + "c4": 7.2981957982111645, + "c5": -18.944200925417036, + "c6": -0.901153577853826, + "c7": 14.515042663897457 }, - "vertexSeeds": { - "c1": 0.7482489219373339, - "c2": 0.7538109064014403, - "c3": 0.7495301966193094, - "c4": 0.7437667971551812, - "c5": 0.7459286659453976, - "c6": 0.7497074258732892, - "c7": 0.7535666001404051 + "offsets": { + "c1": 1.2944983818770228, + "c2": 1.1095700416088727, + "c3": 0.9246417013407319, + "c4": 0.7397133610725818, + "c5": 0.554785020804441, + "c6": 0.3698566805362909, + "c7": 0.18492834026815005 }, "rgb": [77, 76, 132] }, @@ -467673,23 +467673,23 @@ "year": 1844, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": 10.439159812922263, - "c2": 12.494829219678063, - "c3": 0.6722146613487077, - "c4": 16.26524348773014, - "c5": -8.255335003876478, - "c6": 0.8759778628568249, - "c7": -5.401283380308824 + "points": { + "c1": -11.13843243609238, + "c2": 7.634576992742161, + "c3": -13.443198418168777, + "c4": 6.880918614806671, + "c5": -9.833202772919963, + "c6": 1.0376191738585554, + "c7": -2.644496150461208 }, - "vertexSeeds": { - "c1": 7.6653654435789145, - "c2": 7.655183195104391, - "c3": 7.93479744476584, - "c4": 7.675661404284508, - "c5": 7.7353694308199845, - "c6": 8.051106190026793, - "c7": 7.497829070968084 + "offsets": { + "c1": 13.656957928802587, + "c2": 11.705963938973646, + "c3": 9.754969949144705, + "c4": 7.803975959315764, + "c5": 5.852981969486823, + "c6": 3.901987979657882, + "c7": 1.950993989828941 }, "rgb": [86, 146, 138] }, @@ -467700,23 +467700,23 @@ "year": 1844, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": 13.487339638520705, - "c2": -8.59629298553118, - "c3": 1.414508657003271, - "c4": -10.877438127696198, - "c5": 3.7352448688478646, - "c6": -4.333856408599059, - "c7": 13.128595336002622 + "points": { + "c1": -8.26529872076829, + "c2": 15.527540391161466, + "c3": 2.880959128784202, + "c4": -12.754711619554358, + "c5": 15.719007154616229, + "c6": 4.24155274252664, + "c7": 12.028785405509552 }, - "vertexSeeds": { - "c1": 11.69363454050404, - "c2": 12.046784607557735, - "c3": 11.539600880047907, - "c4": 11.029314271031792, - "c5": 11.769954564727657, - "c6": 10.959696832254085, - "c7": 11.719757575107554 + "offsets": { + "c1": 20.129449838187703, + "c2": 17.253814147018023, + "c3": 14.378178455848376, + "c4": 11.502542764678694, + "c5": 8.626907073509011, + "c6": 5.751271382339328, + "c7": 2.8756356911696823 }, "rgb": [222, 0, 59] }, @@ -467727,23 +467727,23 @@ "year": 1845, "resistanceReported": false, "duration": 29548800, - "curveSeeds": { - "c1": 8.809896353455812, - "c2": -22.527108588279262, - "c3": 6.4486204522608475, - "c4": -11.210879798659349, - "c5": -2.9239115063335746, - "c6": -19.132658712398353, - "c7": 12.749770932168822 + "points": { + "c1": 25.89492460749723, + "c2": 21.580239789833385, + "c3": 12.404940423818104, + "c4": -31.460722101195127, + "c5": 3.4957904675509397, + "c6": 12.304285416895581, + "c7": 6.863633109238897 }, - "vertexSeeds": { - "c1": 2.0651559343037227, - "c2": 2.1054767763630706, - "c3": 1.9977096079539398, - "c4": 2.083796314402018, - "c5": 1.9442236839365516, - "c6": 1.927449967305863, - "c7": 1.9633360502679003 + "offsets": { + "c1": 3.559870550161812, + "c2": 3.05131761442441, + "c3": 2.542764678687007, + "c4": 2.03421174294961, + "c5": 1.5256588072122073, + "c6": 1.017105871474805, + "c7": 0.5085529357374025 }, "rgb": [58, 15, 49] }, @@ -467754,23 +467754,23 @@ "year": 1845, "resistanceReported": false, "duration": 13824000, - "curveSeeds": { - "c1": 24.696965864729673, - "c2": 20.30186214595953, - "c3": 3.215172591747926, - "c4": 11.562211449740378, - "c5": -23.235622724986218, - "c6": -21.29073295737206, - "c7": 17.95117049676288 + "points": { + "c1": 0.47938156143315425, + "c2": -19.618325032531278, + "c3": 13.198457108129109, + "c4": -18.993490778688802, + "c5": -10.66478867939762, + "c6": 0.6380717398542046, + "c7": -24.207778442278425 }, - "vertexSeeds": { - "c1": 8.46977275531587, - "c2": 8.282732131869556, - "c3": 8.416158551814885, - "c4": 8.253986092740098, - "c5": 8.464648275104631, - "c6": 8.246504075884388, - "c7": 8.093972732980896 + "offsets": { + "c1": 14.174757281553399, + "c2": 12.149791955617198, + "c3": 10.124826629681, + "c4": 8.099861303744799, + "c5": 6.074895977808599, + "c6": 4.049930651872399, + "c7": 2.0249653259361997 }, "rgb": [238, 201, 159] }, @@ -467781,23 +467781,23 @@ "year": 1845, "resistanceReported": false, "duration": 8208000, - "curveSeeds": { - "c1": -14.399945026924913, - "c2": -16.48532997300472, - "c3": 16.825191327233775, - "c4": -2.771750879856274, - "c5": 13.261477463906175, - "c6": -7.996712977954655, - "c7": 0.4616082171095677 + "points": { + "c1": -10.334901342072438, + "c2": 19.02803867106539, + "c3": 18.21761331952475, + "c4": 16.551781345647434, + "c5": -19.63561416472221, + "c6": 11.449686376959349, + "c7": -8.78857441119534 }, - "vertexSeeds": { - "c1": 1.3393187680638807, - "c2": 1.327804735206316, - "c3": 1.3325649565775795, - "c4": 1.3266710022546324, - "c5": 1.3262635984367608, - "c6": 1.324354175097303, - "c7": 1.3364988178632153 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155433, + "c3": 1.6181229773462646, + "c4": 1.2944983818770182, + "c5": 0.9708737864077717, + "c6": 0.6472491909385252, + "c7": 0.3236245954692465 }, "rgb": [86, 146, 138] }, @@ -467808,23 +467808,23 @@ "year": 1846, "resistanceReported": false, "duration": 35337600, - "curveSeeds": { - "c1": 22.54644314425031, - "c2": -8.05823207061767, - "c3": -45.75541864522891, - "c4": 13.336439894003362, - "c5": -47.974430417516054, - "c6": -14.886090667033635, - "c7": 19.287605573791232 + "points": { + "c1": -21.393561265478727, + "c2": -35.95442553631044, + "c3": 47.33621054983369, + "c4": 43.61361088852947, + "c5": 50.277056854596246, + "c6": 4.357410811651469, + "c7": -6.003294608466867 }, - "vertexSeeds": { - "c1": 8.460251375064958, - "c2": 8.133861056380205, - "c3": 8.783313349510802, - "c4": 8.151011153606351, - "c5": 8.721785299071252, - "c6": 8.276331206012864, - "c7": 8.274226345051167 + "offsets": { + "c1": 15.080906148867316, + "c2": 12.926490984743419, + "c3": 10.772075820619502, + "c4": 8.617660656495607, + "c5": 6.463245492371709, + "c6": 4.308830328247794, + "c7": 2.154415164123897 }, "rgb": [86, 146, 138] }, @@ -467835,23 +467835,23 @@ "year": 1845, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": -17.69585151813464, - "c2": 3.0938772284236897, - "c3": -10.36762030390878, - "c4": 15.370910211276815, - "c5": 8.267669807161731, - "c6": -16.87287010660428, - "c7": -4.781170836861122 + "points": { + "c1": -1.6589742404580576, + "c2": 16.400887519971782, + "c3": 9.742592187138627, + "c4": -7.056460695563873, + "c5": 4.569191931275935, + "c6": 16.494796085403742, + "c7": -7.510029747911046 }, - "vertexSeeds": { - "c1": 13.059840242834964, - "c2": 13.104104668117593, - "c3": 12.969419889274523, - "c4": 12.851385597059833, - "c5": 12.760504002070661, - "c6": 13.028795021165946, - "c7": 12.832175362252316 + "offsets": { + "c1": 22.006472491909385, + "c2": 18.86269070735089, + "c3": 15.718908922792437, + "c4": 12.57512713823394, + "c5": 9.431345353675445, + "c6": 6.287563569116947, + "c7": 3.143781784558497 }, "rgb": [222, 0, 59] }, @@ -467862,23 +467862,23 @@ "year": 1845, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": -11.543504737137354, - "c2": 0.7425168557783177, - "c3": 11.957688687208584, - "c4": -1.591415473195628, - "c5": 9.476386313134654, - "c6": 0.22350721367475934, - "c7": 9.234570111738556 + "points": { + "c1": 7.370846651344294, + "c2": -1.4782709542411734, + "c3": 10.127520225132486, + "c4": -0.8268979397435405, + "c5": 12.022969711115874, + "c6": -2.9412983420754077, + "c7": 9.927275800402963 }, - "vertexSeeds": { - "c1": 6.01859890732928, - "c2": 6.017024520190647, - "c3": 6.014283676487551, - "c4": 6.032357431186247, - "c5": 6.011689831385391, - "c6": 6.029597997587323, - "c7": 6.005685378331978 + "offsets": { + "c1": 10.097087378640776, + "c2": 8.654646324549182, + "c3": 7.212205270457779, + "c4": 5.769764216366185, + "c5": 4.327323162274591, + "c6": 2.884882108182997, + "c7": 1.442441054091594 }, "rgb": [77, 76, 132] }, @@ -467889,23 +467889,23 @@ "year": 1846, "resistanceReported": false, "duration": 12096000, - "curveSeeds": { - "c1": 20.846583854448024, - "c2": -15.96461858879088, - "c3": 7.676535548425118, - "c4": -16.751223151151567, - "c5": 6.400229987887688, - "c6": -4.718489524825888, - "c7": -2.047728966738706 + "points": { + "c1": -21.65189883477506, + "c2": 22.951398886133635, + "c3": -7.028358761399936, + "c4": 10.781758030527076, + "c5": -18.56510916434075, + "c6": 7.9453649942317774, + "c7": 6.7940239037464 }, - "vertexSeeds": { - "c1": 13.00791120759658, - "c2": 13.902838312003441, - "c3": 13.392618918704184, - "c4": 13.48832284185812, - "c5": 13.4646651645156, - "c6": 13.173346862596599, - "c7": 12.974334113852024 + "offsets": { + "c1": 23.268608414239484, + "c2": 19.944521497919574, + "c3": 16.62043458159963, + "c4": 13.296347665279717, + "c5": 9.972260748959767, + "c6": 6.648173832639858, + "c7": 3.324086916319909 }, "rgb": [58, 15, 49] }, @@ -467916,23 +467916,23 @@ "year": 1847, "resistanceReported": false, "duration": 36633600, - "curveSeeds": { - "c1": -25.192498911046375, - "c2": -2.21722380093626, - "c3": -33.70824485914217, - "c4": -34.129633863202386, - "c5": 33.495378201910384, - "c6": 48.21464865502875, - "c7": 13.930901685719562 + "points": { + "c1": -14.715768663769673, + "c2": -2.920659891944055, + "c3": 47.727252202420985, + "c4": 22.5375208227143, + "c5": 12.955176423663787, + "c6": 42.75259905391327, + "c7": -39.17365441718177 }, - "vertexSeeds": { - "c1": 10.056100776837217, - "c2": 10.14628694162675, - "c3": 9.342733524353612, - "c4": 9.876201293722358, - "c5": 10.071502715754114, - "c6": 10.233519295670117, - "c7": 9.562378581237855 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317626, + "c3": 12.251502542764662, + "c4": 9.801202034211737, + "c5": 7.350901525658813, + "c6": 4.900601017105869, + "c7": 2.450300508552944 }, "rgb": [222, 0, 59] }, @@ -467943,23 +467943,23 @@ "year": 1846, "resistanceReported": false, "duration": 7948800, - "curveSeeds": { - "c1": 12.744801343349057, - "c2": -17.78641109540384, - "c3": -0.39763925351536145, - "c4": -8.298053793696019, - "c5": -8.709287436371971, - "c6": 7.6027359600587765, - "c7": 8.768067352029494 + "points": { + "c1": 9.815827387808913, + "c2": -17.089490106503206, + "c3": -16.85060132569951, + "c4": 18.34892795947946, + "c5": -18.770206232115733, + "c6": 9.688541667107483, + "c7": 9.656228797365866 }, - "vertexSeeds": { - "c1": 11.471018791469678, - "c2": 11.045977566951555, - "c3": 10.862702170370369, - "c4": 11.26825099556305, - "c5": 12.620540075616896, - "c6": 12.923604977516458, - "c7": 12.787262114769337 + "offsets": { + "c1": 21.779935275080906, + "c2": 18.668515950069352, + "c3": 15.557096625057795, + "c4": 12.445677300046219, + "c5": 9.334257975034665, + "c6": 6.222838650023109, + "c7": 3.1114193250115547 }, "rgb": [77, 76, 132] }, @@ -467970,23 +467970,23 @@ "year": 1846, "resistanceReported": false, "duration": 86400, - "curveSeeds": { - "c1": 6.446700372405072, - "c2": 4.280842044156362, - "c3": 1.203975483327815, - "c4": 9.01119898035633, - "c5": 4.942807587590874, - "c6": -2.192067654019012, - "c7": 1.776853204224409 + "points": { + "c1": 6.620158190339154, + "c2": 3.3418004188708696, + "c3": -2.0036600277211516, + "c4": -2.331411322861971, + "c5": 7.982616938393363, + "c6": 7.641106764090139, + "c7": -9.807217376919223 }, - "vertexSeeds": { - "c1": 9.572646954702211, - "c2": 9.647974028461755, - "c3": 11.057993004752955, - "c4": 10.48145043557143, - "c5": 10.315464580113698, - "c6": 10.862880213157391, - "c7": 10.401742809595053 + "offsets": { + "c1": 18.640776699029125, + "c2": 15.977808599167824, + "c3": 13.314840499306525, + "c4": 10.651872399445224, + "c5": 7.988904299583924, + "c6": 5.325936199722612, + "c7": 2.662968099861312 }, "rgb": [222, 0, 59] }, @@ -467997,23 +467997,23 @@ "year": 1846, "resistanceReported": false, "duration": 13564800, - "curveSeeds": { - "c1": 15.193062445012458, - "c2": -2.6684447166630463, - "c3": 8.99609798559878, - "c4": 7.821907115814746, - "c5": -0.9778046343120756, - "c6": 0.37035543746226907, - "c7": 23.021402914307643 + "points": { + "c1": -19.98639795898772, + "c2": -23.386442231348518, + "c3": 7.796216119703708, + "c4": 9.401740224655086, + "c5": -14.854275073810166, + "c6": -3.8630069519357484, + "c7": -24.259751047415424 }, - "vertexSeeds": { - "c1": 10.353379840503138, - "c2": 10.553581453013614, - "c3": 10.022217513714248, - "c4": 10.486890496927675, - "c5": 10.285329517460113, - "c6": 10.617255573659092, - "c7": 10.872836030391158 + "offsets": { + "c1": 18.349514563106798, + "c2": 15.728155339805832, + "c3": 13.106796116504865, + "c4": 10.485436893203902, + "c5": 7.864077669902937, + "c6": 5.2427184466019305, + "c7": 2.6213592233009653 }, "rgb": [86, 146, 138] }, @@ -468024,23 +468024,23 @@ "year": 1846, "resistanceReported": false, "duration": 11318400, - "curveSeeds": { - "c1": 10.186013078634293, - "c2": -18.670227221727416, - "c3": -3.0558735476134338, - "c4": 20.604698929742444, - "c5": -21.35170547952924, - "c6": 7.229228214762273, - "c7": -16.246828464174214 + "points": { + "c1": 11.145182930425445, + "c2": -13.311624265548804, + "c3": -10.697157313636348, + "c4": -2.723800848719023, + "c5": 1.0290611185248686, + "c6": 13.931528099135416, + "c7": -0.2686543168547608 }, - "vertexSeeds": { - "c1": 1.9558643285793003, - "c2": 1.9470284200331736, - "c3": 1.9365519957596462, - "c4": 1.9749499944780817, - "c5": 1.8921707060279167, - "c6": 1.9924686536045269, - "c7": 1.9622021005941304 + "offsets": { + "c1": 3.3656957928802593, + "c2": 2.884882108183079, + "c3": 2.404068423485898, + "c4": 1.9232547387887176, + "c5": 1.4424410540915371, + "c6": 0.9616273693943612, + "c7": 0.4808136846971758 }, "rgb": [77, 76, 132] }, @@ -468051,23 +468051,23 @@ "year": 1847, "resistanceReported": false, "duration": 23846400, - "curveSeeds": { - "c1": -8.576641010719914, - "c2": -17.190182578189773, - "c3": -10.948733124973465, - "c4": 2.262193255386748, - "c5": -20.85985514494893, - "c6": -28.55573163910916, - "c7": 34.62823252502574 + "points": { + "c1": -37.462873039655705, + "c2": -12.62862681549008, + "c3": 13.868788126652461, + "c4": 1.962361764798466, + "c5": -33.735338277158355, + "c6": 26.127799855505785, + "c7": 18.001581592695125 }, - "vertexSeeds": { - "c1": 8.196029041782431, - "c2": 8.544105800979924, - "c3": 8.25079351277998, - "c4": 8.697295178538598, - "c5": 8.562651438885819, - "c6": 8.302590432471607, - "c7": 8.861664043223316 + "offsets": { + "c1": 14.822006472491909, + "c2": 12.704576976421627, + "c3": 10.587147480351367, + "c4": 8.469717984281086, + "c5": 6.3522884882108235, + "c6": 4.234858992140543, + "c7": 2.1174294960702613 }, "rgb": [77, 76, 132] }, @@ -468078,23 +468078,23 @@ "year": 1846, "resistanceReported": false, "duration": 7084800, - "curveSeeds": { - "c1": 10.758547874238413, - "c2": -0.0386186126780359, - "c3": -13.21207575947215, - "c4": -5.429317789629854, - "c5": -15.56908936678055, - "c6": 0.0013821416956609767, - "c7": -2.4169420567189466 + "points": { + "c1": -8.789465340683225, + "c2": 6.607583079045931, + "c3": 19.439498681435236, + "c4": -17.199670161004928, + "c5": 10.987926672056055, + "c6": -0.0766942751815165, + "c7": -12.238427474277263 }, - "vertexSeeds": { - "c1": 10.356656240287563, - "c2": 9.968354267356192, - "c3": 10.050340961926533, - "c4": 10.442331183354206, - "c5": 10.431174292020403, - "c6": 10.326590857247583, - "c7": 10.18369152306533 + "offsets": { + "c1": 17.44336569579288, + "c2": 14.951456310679633, + "c3": 12.459546925566315, + "c4": 9.967637540453065, + "c5": 7.475728155339817, + "c6": 4.983818770226567, + "c7": 2.4919093851132494 }, "rgb": [86, 146, 138] }, @@ -468105,23 +468105,23 @@ "year": 1846, "resistanceReported": false, "duration": 7171200, - "curveSeeds": { - "c1": 16.252866877099002, - "c2": -14.489795874108871, - "c3": -12.086312456415564, - "c4": 9.96587333722037, - "c5": 10.643889182528554, - "c6": -7.969366888297003, - "c7": 5.716821819882156 + "points": { + "c1": -4.512222889332689, + "c2": 19.72398398735408, + "c3": 0.4632416660727401, + "c4": -1.737674931386696, + "c5": -15.904906369453654, + "c6": 6.653635107044813, + "c7": -19.373604443425975 }, - "vertexSeeds": { - "c1": 10.25888792650467, - "c2": 11.0834825850588, - "c3": 10.687594519626531, - "c4": 10.696371889087857, - "c5": 11.034394754974386, - "c6": 10.559442108890481, - "c7": 10.873868228786453 + "offsets": { + "c1": 18.576051779935277, + "c2": 15.922330097087398, + "c3": 13.268608414239477, + "c4": 10.614886731391598, + "c5": 7.96116504854368, + "c6": 5.307443365695799, + "c7": 2.653721682847919 }, "rgb": [58, 15, 49] }, @@ -468132,23 +468132,23 @@ "year": 1846, "resistanceReported": false, "duration": 4838400, - "curveSeeds": { - "c1": -7.514404474867982, - "c2": 6.405473405585884, - "c3": -0.8019915314503621, - "c4": -12.72826922171158, - "c5": -14.83919681597209, - "c6": -15.098104005097916, - "c7": -0.3325906785925845 + "points": { + "c1": -13.104398819911202, + "c2": 14.415660765926745, + "c3": 13.836002033510422, + "c4": -11.394512616892987, + "c5": 9.991341746807283, + "c6": 1.5115797505042465, + "c7": -12.255683914543937 }, - "vertexSeeds": { - "c1": 8.377099208191881, - "c2": 8.638600200935151, - "c3": 8.697549922643722, - "c4": 8.70093978299415, - "c5": 8.485919808766734, - "c6": 8.465200010687628, - "c7": 8.766752635155381 + "offsets": { + "c1": 14.724919093851133, + "c2": 12.62135922330098, + "c3": 10.51779935275083, + "c4": 8.414239482200642, + "c5": 6.31067961165049, + "c6": 4.207119741100338, + "c7": 2.103559870550186 }, "rgb": [86, 146, 138] }, @@ -468159,23 +468159,23 @@ "year": 1846, "resistanceReported": false, "duration": 5184000, - "curveSeeds": { - "c1": -5.270104753549772, - "c2": -4.601329748487371, - "c3": -4.299425272144786, - "c4": -3.2438667127772014, - "c5": -9.58806060470101, - "c6": -9.45750001147045, - "c7": 10.676421818682835 + "points": { + "c1": -11.975038906141076, + "c2": -9.357493302922643, + "c3": 6.125573037638372, + "c4": -0.13977611264834877, + "c5": 2.143603011311928, + "c6": -3.784069907060873, + "c7": 9.036747229071427 }, - "vertexSeeds": { - "c1": 8.305182016711022, - "c2": 8.344078025009601, - "c3": 8.383845847211473, - "c4": 7.736391606749029, - "c5": 8.116433603529648, - "c6": 7.803148008017165, - "c7": 7.9480859923934855 + "offsets": { + "c1": 14.110032362459545, + "c2": 12.094313453536747, + "c3": 10.078594544613969, + "c4": 8.06287563569117, + "c5": 6.047156726768374, + "c6": 4.031437817845595, + "c7": 2.0157189089227976 }, "rgb": [77, 76, 132] }, @@ -468186,23 +468186,23 @@ "year": 1846, "resistanceReported": false, "duration": 3456000, - "curveSeeds": { - "c1": 4.712338983314186, - "c2": 3.327635231757352, - "c3": 4.081524041264366, - "c4": 13.122434765895331, - "c5": 6.22266975878761, - "c6": -13.074566675644375, - "c7": 12.579003027521658 + "points": { + "c1": 12.869447677955051, + "c2": 6.197589345199546, + "c3": -0.8646219203330787, + "c4": 4.043606047769991, + "c5": 5.763362734004598, + "c6": -0.5826165326718478, + "c7": 7.194295315366045 }, - "vertexSeeds": { - "c1": 11.575419421792047, - "c2": 11.407127302928602, - "c3": 11.498790421393895, - "c4": 11.372219381601917, - "c5": 11.410257552177633, - "c6": 11.531766097991694, - "c7": 11.479901534521227 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.64355062413319, + "c3": 13.869625520110894, + "c4": 11.095700416088745, + "c5": 8.321775312066595, + "c6": 5.547850208044446, + "c7": 2.773925104022149 }, "rgb": [222, 0, 59] }, @@ -468213,23 +468213,23 @@ "year": 1847, "resistanceReported": false, "duration": 5529600, - "curveSeeds": { - "c1": 5.914631363188597, - "c2": 13.75139916346421, - "c3": -6.414947904016595, - "c4": 4.991634861670043, - "c5": -6.967258545281464, - "c6": 5.661637300461457, - "c7": 11.061581093274544 + "points": { + "c1": 2.7477310355471154, + "c2": -0.9289976983022221, + "c3": 8.649906070312156, + "c4": 9.94541529014898, + "c5": -9.066297703589223, + "c6": -2.6859289066084955, + "c7": 3.0092359778182107 }, - "vertexSeeds": { - "c1": 8.992065789351381, - "c2": 8.8872556401151, - "c3": 9.444887852812125, - "c4": 9.14093370202061, - "c5": 8.809874432921434, - "c6": 9.299106267764651, - "c7": 9.218869844245717 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.786407766990289, + "c3": 11.488673139158571, + "c4": 9.190938511326854, + "c5": 6.893203883495135, + "c6": 4.595469255663416, + "c7": 2.2977346278316984 }, "rgb": [77, 76, 132] }, @@ -468240,23 +468240,23 @@ "year": 1847, "resistanceReported": false, "duration": 4752000, - "curveSeeds": { - "c1": -1.7511307208180593, - "c2": 10.243054219476509, - "c3": 8.932079242214833, - "c4": 14.423210888530047, - "c5": -10.480729967156325, - "c6": 4.757265744535264, - "c7": -1.516118403062034 + "points": { + "c1": 16.704378778306406, + "c2": 14.729736881479482, + "c3": 11.809827154765077, + "c4": -12.412167259692723, + "c5": 6.238664698091068, + "c6": -1.1778024934411437, + "c7": 16.59882333943584 }, - "vertexSeeds": { - "c1": 19.17900965885389, - "c2": 19.12622016535345, - "c3": 18.36013849351812, - "c4": 19.00036656576038, - "c5": 19.525600255768254, - "c6": 19.991560661966233, - "c7": 19.086087050144137 + "offsets": { + "c1": 33.75404530744336, + "c2": 28.932038834951452, + "c3": 24.110032362459545, + "c4": 19.288025889967635, + "c5": 14.466019417475726, + "c6": 9.644012944983817, + "c7": 4.822006472491909 }, "rgb": [58, 15, 49] }, @@ -468267,23 +468267,23 @@ "year": 1847, "resistanceReported": false, "duration": 5097600, - "curveSeeds": { - "c1": -5.293237739150117, - "c2": -8.921213802505058, - "c3": 12.677018289912645, - "c4": -13.265972036571045, - "c5": 1.4446340543086578, - "c6": -5.85208313508568, - "c7": -2.557871646601237 + "points": { + "c1": 11.735099810450095, + "c2": 4.110500337143296, + "c3": -15.851467742846744, + "c4": 5.502339100969678, + "c5": 13.025180729299684, + "c6": 8.720889436161713, + "c7": -1.0329531968261811 }, - "vertexSeeds": { - "c1": 9.677792434025578, - "c2": 9.694064203402709, - "c3": 9.38752147121752, - "c4": 9.730937993577468, - "c5": 9.435472008987315, - "c6": 9.728457521289576, - "c7": 9.371936722650574 + "offsets": { + "c1": 16.40776699029126, + "c2": 14.063800277392525, + "c3": 11.719833564493753, + "c4": 9.375866851595017, + "c5": 7.031900138696245, + "c6": 4.6879334257975085, + "c7": 2.343966712898737 }, "rgb": [222, 0, 59] }, @@ -468294,23 +468294,23 @@ "year": 1847, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": 14.978656105320056, - "c2": -17.847849063304142, - "c3": -5.784732075562713, - "c4": -6.598368449893746, - "c5": 3.20435293586473, - "c6": 5.182344950878669, - "c7": -1.4050859014753705 + "points": { + "c1": 21.38198535818516, + "c2": 20.724501574194655, + "c3": 1.1783134367304982, + "c4": -3.71091364353353, + "c5": -11.655658595811506, + "c6": -15.426895491887485, + "c7": -13.903105797248415 }, - "vertexSeeds": { - "c1": 16.631330016845816, - "c2": 14.615018393805347, - "c3": 16.2815125543463, - "c4": 17.485434981388302, - "c5": 14.69623946830943, - "c6": 15.52183641543574, - "c7": 17.39406716753001 + "offsets": { + "c1": 29.579288025889966, + "c2": 25.35367545076282, + "c3": 21.12806287563568, + "c4": 16.902450300508555, + "c5": 12.67683772538141, + "c6": 8.45122515025427, + "c7": 4.225612575127142 }, "rgb": [77, 76, 132] }, @@ -468321,23 +468321,23 @@ "year": 1847, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": -13.803484559958004, - "c2": 7.072416688571199, - "c3": 17.104908306475725, - "c4": -10.295819283055485, - "c5": 7.120730957627337, - "c6": 13.692433880326092, - "c7": 2.3052333241792375 + "points": { + "c1": -17.784348506482907, + "c2": 15.492159079700802, + "c3": -4.5514502430749175, + "c4": -15.80870843635598, + "c5": -14.491416170630583, + "c6": -3.3158723981237372, + "c7": 5.365471536764691 }, - "vertexSeeds": { - "c1": 19.628955951633788, - "c2": 20.137393210060075, - "c3": 20.57317510880584, - "c4": 19.8932052081141, - "c5": 19.513786385865185, - "c6": 20.66782723471247, - "c7": 19.686643237540558 + "offsets": { + "c1": 34.46601941747573, + "c2": 29.542302357836284, + "c3": 24.61858529819697, + "c4": 19.694868238557522, + "c5": 14.771151178918206, + "c6": 9.847434119278761, + "c7": 4.9237170596393804 }, "rgb": [58, 15, 49] }, @@ -468348,23 +468348,23 @@ "year": 1847, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": -11.314718664633574, - "c2": 10.210685255612187, - "c3": -3.8633000796804176, - "c4": -7.491311179139366, - "c5": 1.786765631982032, - "c6": -12.098668303073346, - "c7": 4.564163469374606 + "points": { + "c1": 2.4944395667890404, + "c2": -0.6232210485807528, + "c3": 1.9934930573924419, + "c4": -2.1112684436027926, + "c5": 5.064852897500504, + "c6": -8.047262465830153, + "c7": 17.321162440357185 }, - "vertexSeeds": { - "c1": 28.15587520488432, - "c2": 28.122924730152423, - "c3": 28.212154948426868, - "c4": 29.31129729620444, - "c5": 29.333383665913665, - "c6": 29.849181520604493, - "c7": 28.258159384501628 + "offsets": { + "c1": 50, + "c2": 42.85714285714283, + "c3": 35.71428571428575, + "c4": 28.57142857142858, + "c5": 21.428571428571416, + "c6": 14.285714285714329, + "c7": 7.1428571428571646 }, "rgb": [222, 0, 59] }, @@ -468375,23 +468375,23 @@ "year": 1847, "resistanceReported": false, "duration": 4752000, - "curveSeeds": { - "c1": -10.698823407499194, - "c2": -6.324802265336974, - "c3": -12.559251915879427, - "c4": 3.7918155038332344, - "c5": -1.2430358682382163, - "c6": -0.14930743101009725, - "c7": -3.1663558620632717 + "points": { + "c1": -5.432824822498951, + "c2": -14.83838117296806, + "c3": -1.8619635052972487, + "c4": -8.726482956856145, + "c5": 0.23041944952547055, + "c6": -16.01054726459174, + "c7": -10.686539559448494 }, - "vertexSeeds": { - "c1": 8.2954361531591, - "c2": 8.607860912341012, - "c3": 8.4268628915404, - "c4": 8.240234850847969, - "c5": 8.30284291557696, - "c6": 8.169881162927355, - "c7": 8.459400803726302 + "offsets": { + "c1": 15.11326860841424, + "c2": 12.954230235783633, + "c3": 10.795191863153029, + "c4": 8.636153490522423, + "c5": 6.477115117891817, + "c6": 4.318076745261211, + "c7": 2.1590383726306057 }, "rgb": [238, 201, 159] }, @@ -468402,23 +468402,23 @@ "year": 1847, "resistanceReported": false, "duration": 8121600, - "curveSeeds": { - "c1": 8.075733006080014, - "c2": -13.72664087351592, - "c3": -4.484373814233855, - "c4": 13.921243297429765, - "c5": 1.5767675684992035, - "c6": 4.894302887616977, - "c7": 10.49926384446185 + "points": { + "c1": -15.09939736759921, + "c2": 13.546945204485386, + "c3": 5.837432951757538, + "c4": 8.234287507330386, + "c5": 15.808795133611337, + "c6": -0.1312784328362291, + "c7": 3.757106859787836 }, - "vertexSeeds": { - "c1": 10.278490742723182, - "c2": 10.273650760623255, - "c3": 10.26638747795077, - "c4": 10.259563199402157, - "c5": 10.252188940773827, - "c6": 10.259766748500844, - "c7": 10.221183307984996 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317523, + "c3": 12.251502542764493, + "c4": 9.801202034211464, + "c5": 7.3509015256590855, + "c6": 4.900601017106057, + "c7": 2.4503005085530285 }, "rgb": [86, 146, 138] }, @@ -468429,23 +468429,23 @@ "year": 1847, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": -1.400882411801586, - "c2": -13.876124879402298, - "c3": 0.4227762295323352, - "c4": -8.378500793674167, - "c5": 3.4234031408517467, - "c6": 13.350972970693856, - "c7": -9.245253237413912 + "points": { + "c1": -7.012939552312984, + "c2": 13.800240229063107, + "c3": -4.814011893661812, + "c4": 2.0361563791498263, + "c5": -8.567583454883685, + "c6": -3.4494145478902123, + "c7": -15.325414697174661 }, - "vertexSeeds": { - "c1": 7.755540031665993, - "c2": 8.141800189488077, - "c3": 7.794938079805728, - "c4": 7.821387710152865, - "c5": 7.803049392399659, - "c6": 7.791898141071039, - "c7": 8.245970088486086 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898746, + "c3": 10.286638927415616, + "c4": 8.229311141932504, + "c5": 6.171983356449373, + "c6": 4.114655570966243, + "c7": 2.0573277854831304 }, "rgb": [58, 15, 49] }, @@ -468456,23 +468456,23 @@ "year": 1847, "resistanceReported": false, "duration": 6220800, - "curveSeeds": { - "c1": 1.1925336581544315, - "c2": 5.718412564551226, - "c3": -9.677281421371141, - "c4": 14.976609764943568, - "c5": 11.557547185724665, - "c6": 11.013292543276084, - "c7": 9.658154142701981 + "points": { + "c1": -8.640873661009778, + "c2": 4.483925146140869, + "c3": 3.2966536225907674, + "c4": -14.637780936864482, + "c5": -1.3064244209084173, + "c6": -11.976406756530071, + "c7": -2.6659193966409056 }, - "vertexSeeds": { - "c1": 10.525298196411953, - "c2": 10.309086744352452, - "c3": 10.027056296685581, - "c4": 10.15795243880889, - "c5": 10.159211970763486, - "c6": 10.701445743448387, - "c7": 9.832675435504974 + "offsets": { + "c1": 18.09061488673139, + "c2": 15.506241331484038, + "c3": 12.921867776236688, + "c4": 10.337494220989372, + "c5": 7.753120665742019, + "c6": 5.168747110494667, + "c7": 2.5843735552473337 }, "rgb": [58, 15, 49] }, @@ -468483,23 +468483,23 @@ "year": 1847, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": -10.287966530599675, - "c2": 12.642560629548925, - "c3": 0.7115426919076242, - "c4": 8.718614013686715, - "c5": -6.5232558170784785, - "c6": -9.668529237659481, - "c7": -6.322188768358844 + "points": { + "c1": -0.39342514142543905, + "c2": -1.9214041965816353, + "c3": 12.331391892968576, + "c4": -15.876211094081244, + "c5": 16.5099766486987, + "c6": 4.0060700755172505, + "c7": 10.322932841488065 }, - "vertexSeeds": { - "c1": 10.77767262073672, - "c2": 9.89751173991796, - "c3": 10.170694680119409, - "c4": 10.199457712714795, - "c5": 9.793380679079785, - "c6": 10.461043900918455, - "c7": 10.085657102526847 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363392, + "c3": 12.85251964863617, + "c4": 10.28201571890891, + "c5": 7.711511789181687, + "c6": 5.141007859454464, + "c7": 2.570503929727223 }, "rgb": [238, 201, 159] }, @@ -468510,23 +468510,23 @@ "year": 1847, "resistanceReported": false, "duration": 4924800, - "curveSeeds": { - "c1": 3.846531262108968, - "c2": 12.730036174343567, - "c3": 8.40690641692467, - "c4": -8.388534663129594, - "c5": -0.8126488360813529, - "c6": 3.2776382973239926, - "c7": 7.521806658522589 + "points": { + "c1": -7.791084830963696, + "c2": 1.199688329048218, + "c3": 5.310943241668799, + "c4": 6.067674934363129, + "c5": -1.2875452245008567, + "c6": -4.802192397090256, + "c7": 11.244004438310292 }, - "vertexSeeds": { - "c1": 9.139290103591104, - "c2": 9.55695564826308, - "c3": 9.618463510756033, - "c4": 9.623391374239153, - "c5": 8.764555598011732, - "c6": 8.768517400771417, - "c7": 9.425688465470808 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110947, + "c3": 11.558021266759132, + "c4": 9.246417013407298, + "c5": 6.9348127600554825, + "c6": 4.623208506703649, + "c7": 2.3116042533518155 }, "rgb": [222, 0, 59] }, @@ -468537,23 +468537,23 @@ "year": 1847, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": -15.959726262570248, - "c2": 9.622106946777595, - "c3": -12.071635394758825, - "c4": -15.324145834680836, - "c5": -7.663531303408492, - "c6": 7.486240789333717, - "c7": 13.032021939447613 + "points": { + "c1": -16.57403411770335, + "c2": -10.932323659822892, + "c3": -0.9448573578362378, + "c4": -2.390246945097058, + "c5": -12.267126285078682, + "c6": 4.097016511217774, + "c7": 11.723511461204609 }, - "vertexSeeds": { - "c1": 8.982786166461194, - "c2": 8.626035957867035, - "c3": 8.718593667429118, - "c4": 8.424604203446757, - "c5": 9.007612229715264, - "c6": 8.430342352872504, - "c7": 8.834431884029758 + "offsets": { + "c1": 15.242718446601941, + "c2": 13.065187239944523, + "c3": 10.887656033287106, + "c4": 8.710124826629688, + "c5": 6.53259361997227, + "c6": 4.355062413314853, + "c7": 2.177531206657435 }, "rgb": [77, 76, 132] }, @@ -468564,23 +468564,23 @@ "year": 1847, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": 4.181916698620682, - "c2": -11.013726539987701, - "c3": -3.0558028447288716, - "c4": -10.53607371518563, - "c5": 1.989243635679614, - "c6": -8.499755991671329, - "c7": 5.663232191579759 + "points": { + "c1": -12.547714031793982, + "c2": -10.156982232657192, + "c3": -5.261047520663713, + "c4": 5.773179606364657, + "c5": 12.466988608975704, + "c6": -8.242642507938369, + "c7": -8.731397445928053 }, - "vertexSeeds": { - "c1": 0.3717541073499153, - "c2": 0.383131873007701, - "c3": 0.3983545976998232, - "c4": 0.3777130402458498, - "c5": 0.3768738476967303, - "c6": 0.3865984011325144, - "c7": 0.3969867657165268 + "offsets": { + "c1": 0.7119741100323626, + "c2": 0.6102635228848825, + "c3": 0.5085529357374012, + "c4": 0.4068423485899213, + "c5": 0.30513176144244125, + "c6": 0.20342117429496126, + "c7": 0.10171058714748 }, "rgb": [86, 146, 138] }, @@ -468591,23 +468591,23 @@ "year": 1847, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": -11.866265014127755, - "c2": 7.84608335338547, - "c3": 3.839364736944713, - "c4": 13.580049515827461, - "c5": -0.9681988127696766, - "c6": -2.0627379891888076, - "c7": -12.50713668572251 + "points": { + "c1": 10.886522251583543, + "c2": 9.31154224424489, + "c3": 2.5953315171145803, + "c4": 12.405923082076686, + "c5": -4.14134178838645, + "c6": -13.600913251622362, + "c7": 14.43343343589018 }, - "vertexSeeds": { - "c1": 7.531235199564933, - "c2": 7.145056576277252, - "c3": 7.300056437894052, - "c4": 7.275217090051939, - "c5": 7.548663272558422, - "c6": 7.35223769272972, - "c7": 7.473729992587271 + "offsets": { + "c1": 13.009708737864079, + "c2": 11.15117891816922, + "c3": 9.292649098474346, + "c4": 7.434119278779469, + "c5": 5.57558945908461, + "c6": 3.7170596393897517, + "c7": 1.8585298196948759 }, "rgb": [58, 15, 49] }, @@ -468618,23 +468618,23 @@ "year": 1847, "resistanceReported": false, "duration": 5184000, - "curveSeeds": { - "c1": 2.3397849234775254, - "c2": -1.0540266426646312, - "c3": -12.76203125438705, - "c4": 8.092659390439513, - "c5": 12.165271467558467, - "c6": 7.305038915242969, - "c7": 3.3416751555513766 + "points": { + "c1": -4.865999928836052, + "c2": -10.634949643972249, + "c3": 8.812490662396254, + "c4": 0.5232652298145304, + "c5": -15.375271911275533, + "c6": 16.065398319500872, + "c7": 7.161823915661664 }, - "vertexSeeds": { - "c1": 16.612485050493763, - "c2": 16.639481445661037, - "c3": 17.350560553793343, - "c4": 17.152643177206897, - "c5": 15.787509426478502, - "c6": 16.598623351335227, - "c7": 16.169843626997615 + "offsets": { + "c1": 28.964401294498384, + "c2": 24.826629680998618, + "c3": 20.688858067498856, + "c4": 16.55108645399909, + "c5": 12.413314840499327, + "c6": 8.275543226999527, + "c7": 4.137771613499798 }, "rgb": [86, 146, 138] }, @@ -468645,23 +468645,23 @@ "year": 1847, "resistanceReported": false, "duration": 4233600, - "curveSeeds": { - "c1": 6.3802971272884115, - "c2": -13.729286942419417, - "c3": -1.892077960961565, - "c4": -13.676163865523101, - "c5": -0.776580455264531, - "c6": 2.593103252699823, - "c7": -3.0902704369711635 + "points": { + "c1": 12.4191038567248, + "c2": -0.6910467371175173, + "c3": 3.7138962211313675, + "c4": 8.368786030187966, + "c5": 9.162262442524014, + "c6": 12.368913543938206, + "c7": -13.229881047495642 }, - "vertexSeeds": { - "c1": 10.120410789299292, - "c2": 10.608858353274297, - "c3": 10.472178195398142, - "c4": 10.420908635369265, - "c5": 10.084757217319034, - "c6": 10.541516557535918, - "c7": 9.786002211643464 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363392, + "c3": 12.85251964863617, + "c4": 10.28201571890891, + "c5": 7.711511789181687, + "c6": 5.141007859454464, + "c7": 2.570503929727223 }, "rgb": [222, 0, 59] }, @@ -468672,23 +468672,23 @@ "year": 1847, "resistanceReported": false, "duration": 9417600, - "curveSeeds": { - "c1": -12.7291920555352, - "c2": 8.978490233815002, - "c3": -15.522684826975357, - "c4": 12.730832241657524, - "c5": -20.15146379387197, - "c6": 3.461677843931575, - "c7": 0.3035286220850466 + "points": { + "c1": 20.199426268534147, + "c2": 0.4246299527666437, + "c3": -8.81494840315276, + "c4": 12.53471777778394, + "c5": 16.525228993921097, + "c6": 4.058446771421448, + "c7": 15.630158326274227 }, - "vertexSeeds": { - "c1": 15.234259467534347, - "c2": 15.114244286656934, - "c3": 14.509065708466995, - "c4": 16.0721288895626, - "c5": 14.306787144714136, - "c6": 15.3688561463534, - "c7": 15.800891374452712 + "offsets": { + "c1": 27.0873786407767, + "c2": 23.21775312066573, + "c3": 19.34812760055479, + "c4": 15.478502080443821, + "c5": 11.60887656033288, + "c6": 7.739251040221911, + "c7": 3.869625520110941 }, "rgb": [58, 15, 49] }, @@ -468699,23 +468699,23 @@ "year": 1847, "resistanceReported": false, "duration": 4838400, - "curveSeeds": { - "c1": 8.128043571990194, - "c2": 14.423182921811389, - "c3": 2.248208784336871, - "c4": -13.296916745455544, - "c5": 9.24753111657433, - "c6": -1.9735454143781723, - "c7": 7.281575724682725 + "points": { + "c1": 11.930656481971607, + "c2": 7.252649721845263, + "c3": 13.37826146392738, + "c4": 5.589366822294785, + "c5": 9.56034111154527, + "c6": -6.2247938862643455, + "c7": -12.892440066420003 }, - "vertexSeeds": { - "c1": 9.519840173209543, - "c2": 9.368062205918553, - "c3": 9.490727977094465, - "c4": 9.470329865188567, - "c5": 8.951772183698397, - "c6": 8.929308865936463, - "c7": 9.512537030496016 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110947, + "c3": 11.558021266759132, + "c4": 9.246417013407298, + "c5": 6.9348127600554825, + "c6": 4.623208506703649, + "c7": 2.3116042533518155 }, "rgb": [222, 0, 59] }, @@ -468726,23 +468726,23 @@ "year": 1847, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": -1.5903616401386156, - "c2": -6.7544436862308945, - "c3": -5.497397400448298, - "c4": -13.097681790786378, - "c5": 4.822530108615275, - "c6": -2.0795503569935043, - "c7": -7.145910116235742 + "points": { + "c1": 11.747488328579983, + "c2": -11.233662605129393, + "c3": 2.542600891779493, + "c4": -10.625061418063282, + "c5": 12.951551550137975, + "c6": 2.390463154124788, + "c7": 6.041092241294805 }, - "vertexSeeds": { - "c1": 8.947817370526996, - "c2": 8.896016263861833, - "c3": 9.57175021273734, - "c4": 9.496539766178145, - "c5": 9.593042685218585, - "c6": 9.451985662827148, - "c7": 9.202898986479312 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.786407766990289, + "c3": 11.488673139158571, + "c4": 9.190938511326854, + "c5": 6.893203883495135, + "c6": 4.595469255663416, + "c7": 2.2977346278316984 }, "rgb": [238, 201, 159] }, @@ -468753,23 +468753,23 @@ "year": 1848, "resistanceReported": false, "duration": 5702400, - "curveSeeds": { - "c1": -0.4538552383944907, - "c2": -12.107034380028704, - "c3": -4.222722075652346, - "c4": -15.685534246502566, - "c5": -15.157303320832147, - "c6": 13.484371734937664, - "c7": 13.257669487693803 + "points": { + "c1": 13.259284219973956, + "c2": -1.8707675852391255, + "c3": 15.51766180527838, + "c4": 7.78800818534938, + "c5": -8.672165156078133, + "c6": 9.043765152768007, + "c7": -9.290408585105352 }, - "vertexSeeds": { - "c1": 12.97086795228138, - "c2": 14.071258540069666, - "c3": 13.708711436330962, - "c4": 13.706015909668917, - "c5": 13.091953433281525, - "c6": 12.755464062349924, - "c7": 13.65765836821255 + "offsets": { + "c1": 23.495145631067963, + "c2": 20.138696255201115, + "c3": 16.78224687933427, + "c4": 13.425797503467422, + "c5": 10.069348127600541, + "c6": 6.712898751733694, + "c7": 3.356449375866847 }, "rgb": [222, 0, 59] }, @@ -468780,23 +468780,23 @@ "year": 1848, "resistanceReported": false, "duration": 4752000, - "curveSeeds": { - "c1": -11.40872561537022, - "c2": 5.640654259363924, - "c3": -3.921101778576512, - "c4": 7.378688904367355, - "c5": 0.4025359506598569, - "c6": 2.6022805993932323, - "c7": -12.287334749018987 + "points": { + "c1": 12.312981883099315, + "c2": -13.771072566300065, + "c3": -6.165325378776634, + "c4": 13.245301667900076, + "c5": 12.544499980138603, + "c6": 14.829097584608608, + "c7": -16.410329239726327 }, - "vertexSeeds": { - "c1": 18.599788923061578, - "c2": 17.749275929166735, - "c3": 18.812957733585677, - "c4": 17.95187868126041, - "c5": 19.266172909395706, - "c6": 17.751717178751186, - "c7": 18.207129192401176 + "offsets": { + "c1": 32.13592233009709, + "c2": 27.545076282940347, + "c3": 22.954230235783637, + "c4": 18.363384188626895, + "c5": 13.772538141470193, + "c6": 9.181692094313448, + "c7": 4.590846047156704 }, "rgb": [222, 0, 59] }, @@ -468807,23 +468807,23 @@ "year": 1848, "resistanceReported": false, "duration": 5788800, - "curveSeeds": { - "c1": 10.61726880539715, - "c2": -6.639839042788788, - "c3": -5.0248196840642265, - "c4": 15.933496053830773, - "c5": -1.9201245791525352, - "c6": -15.692726662747079, - "c7": -2.9690733661407016 + "points": { + "c1": -15.21487650395024, + "c2": 1.2480481841805329, + "c3": 15.238848312220767, + "c4": 16.16171998912914, + "c5": 13.58241458615883, + "c6": -9.848135587012838, + "c7": -6.003139560627725 }, - "vertexSeeds": { - "c1": 4.523443598057164, - "c2": 4.616240317206604, - "c3": 4.60195723941089, - "c4": 4.477154022082461, - "c5": 4.4637133465691985, - "c6": 4.537016897928566, - "c7": 4.497170478895924 + "offsets": { + "c1": 7.864077669902912, + "c2": 6.740638002773922, + "c3": 5.6171983356449315, + "c4": 4.493758668515943, + "c5": 3.3703190013869526, + "c6": 2.24687933425798, + "c7": 1.12343966712899 }, "rgb": [222, 0, 59] }, @@ -468834,23 +468834,23 @@ "year": 1848, "resistanceReported": false, "duration": 4924800, - "curveSeeds": { - "c1": -11.980139050893776, - "c2": -1.8108184651998958, - "c3": 10.381932621810243, - "c4": -12.151384337231082, - "c5": 5.576219078937694, - "c6": -9.674532533721552, - "c7": -15.2595264452899 + "points": { + "c1": -6.835597563055591, + "c2": 7.266824814428755, + "c3": -8.970361163376433, + "c4": 13.023795124000326, + "c5": -3.7412323990882186, + "c6": -6.13759100808716, + "c7": 4.287218024697257 }, - "vertexSeeds": { - "c1": 7.079381925905753, - "c2": 7.237052632142612, - "c3": 6.891464834677534, - "c4": 6.637383350661479, - "c5": 6.871865168802073, - "c6": 6.76122208215846, - "c7": 7.223697200499046 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284328, + "c3": 8.78409616273694, + "c4": 7.027276930189552, + "c5": 5.270457697642164, + "c6": 3.513638465094776, + "c7": 1.756819232547388 }, "rgb": [77, 76, 132] }, @@ -468861,23 +468861,23 @@ "year": 1848, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": -29.028974567510765, - "c2": 2.521123885643224, - "c3": 9.298321406461913, - "c4": 13.111470118999602, - "c5": -25.21151071502919, - "c6": -13.892575102682077, - "c7": 18.5775150643824 + "points": { + "c1": 0.4191355117675002, + "c2": -2.2197659305078936, + "c3": -18.597588894610958, + "c4": -23.64754143479189, + "c5": -17.77716631023285, + "c6": 21.761429497834456, + "c7": -19.314044682899393 }, - "vertexSeeds": { - "c1": 12.71306150682018, - "c2": 12.122707649186562, - "c3": 13.212025793810795, - "c4": 13.07998557827846, - "c5": 12.446940572190522, - "c6": 12.577745117621665, - "c7": 13.001235256721587 + "offsets": { + "c1": 22.103559870550164, + "c2": 18.945908460471568, + "c3": 15.788257050392975, + "c4": 12.630605640314378, + "c5": 9.472954230235784, + "c6": 6.315302820157189, + "c7": 3.1576514100785946 }, "rgb": [86, 146, 138] }, @@ -468888,23 +468888,23 @@ "year": 1848, "resistanceReported": false, "duration": 16329600, - "curveSeeds": { - "c1": 12.69137165567609, - "c2": -2.79882871783645, - "c3": -14.089090955603034, - "c4": -6.1929148874297155, - "c5": -13.359832003647645, - "c6": -22.57348483628676, - "c7": -10.167455407647413 + "points": { + "c1": -9.118483544953925, + "c2": 19.75034174205187, + "c3": 22.38762866396132, + "c4": -19.33467475676779, + "c5": 18.483737924368203, + "c6": -11.736729363271518, + "c7": 11.134714374920069 }, - "vertexSeeds": { - "c1": 13.920057680962557, - "c2": 14.269240753144402, - "c3": 14.948029941695609, - "c4": 16.1685484860914, - "c5": 15.604893629163335, - "c6": 15.387298038481983, - "c7": 15.092202112765458 + "offsets": { + "c1": 27.346278317152105, + "c2": 23.439667128987512, + "c3": 19.53305594082292, + "c4": 15.626444752658347, + "c5": 11.719833564493756, + "c6": 7.813222376329163, + "c7": 3.906611188164571 }, "rgb": [222, 0, 59] }, @@ -468915,23 +468915,23 @@ "year": 1848, "resistanceReported": false, "duration": 5529600, - "curveSeeds": { - "c1": 10.86764879691323, - "c2": 0.4642286127163153, - "c3": 6.631566553069341, - "c4": 8.243249057964785, - "c5": -5.523924148440164, - "c6": 11.775060545237093, - "c7": -10.21311024098091 + "points": { + "c1": -7.188470064545717, + "c2": 12.829705674725783, + "c3": 16.48472568320786, + "c4": -13.866744717001216, + "c5": 8.86592450319726, + "c6": -17.79828387168321, + "c7": 17.632055754107572 }, - "vertexSeeds": { - "c1": 8.45648523880682, - "c2": 8.760030100944364, - "c3": 9.100804177813787, - "c4": 8.95096564547737, - "c5": 9.011878051478394, - "c6": 9.112819833356646, - "c7": 8.871140430602175 + "offsets": { + "c1": 15.46925566343042, + "c2": 13.259361997226083, + "c3": 11.049468331021725, + "c4": 8.839574664817388, + "c5": 6.629680998613032, + "c6": 4.419787332408694, + "c7": 2.2098936662043562 }, "rgb": [86, 146, 138] }, @@ -468942,23 +468942,23 @@ "year": 1848, "resistanceReported": false, "duration": 6912000, - "curveSeeds": { - "c1": 4.408476470337764, - "c2": -13.484738519802566, - "c3": 15.38696611235909, - "c4": 9.445991883350676, - "c5": -5.193007013714372, - "c6": 11.14600349599137, - "c7": 5.754722222873614 + "points": { + "c1": 15.871146106045913, + "c2": 5.565420497692859, + "c3": -11.390166220343465, + "c4": 8.621747856827792, + "c5": -16.294506714646168, + "c6": -16.381599628785455, + "c7": 16.095834529314395 }, - "vertexSeeds": { - "c1": 7.704258319368631, - "c2": 7.5559591901883305, - "c3": 7.511354241391635, - "c4": 7.453679454572732, - "c5": 7.782975904431217, - "c6": 7.724592653927751, - "c7": 7.620617566692666 + "offsets": { + "c1": 13.042071197411003, + "c2": 11.17891816920943, + "c3": 9.31576514100786, + "c4": 7.452612112806287, + "c5": 5.589459084604715, + "c6": 3.7263060564031436, + "c7": 1.8631530282015718 }, "rgb": [58, 15, 49] }, @@ -468969,23 +468969,23 @@ "year": 1848, "resistanceReported": false, "duration": 4924800, - "curveSeeds": { - "c1": -2.9263814538913344, - "c2": -10.256090232458991, - "c3": 0.5922823601158775, - "c4": -8.752523038394223, - "c5": 1.9780084690258022, - "c6": 1.9131022269641953, - "c7": -8.323054973138532 + "points": { + "c1": 6.891135461656134, + "c2": -7.755361052111235, + "c3": -13.684027271935811, + "c4": 13.498835324008134, + "c5": 6.956402484605928, + "c6": 6.776996744928134, + "c7": 4.3014159784181025 }, - "vertexSeeds": { - "c1": 3.561155823316346, - "c2": 3.586379567152714, - "c3": 3.5809777081236174, - "c4": 3.4845690778261216, - "c5": 3.636873437832249, - "c6": 3.573237247782944, - "c7": 3.501825379783805 + "offsets": { + "c1": 6.148867313915858, + "c2": 5.270457697642171, + "c3": 4.3920480813684675, + "c4": 3.513638465094781, + "c5": 2.635228848821077, + "c6": 1.7568192325473906, + "c7": 0.878409616273704 }, "rgb": [58, 15, 49] }, @@ -468996,23 +468996,23 @@ "year": 1848, "resistanceReported": false, "duration": 5270400, - "curveSeeds": { - "c1": 4.724685917207886, - "c2": 12.695205323121648, - "c3": 9.791735723792499, - "c4": -8.138800796525324, - "c5": 12.435408453119742, - "c6": -4.766771241855279, - "c7": -7.1474494626258025 + "points": { + "c1": -15.559405996380512, + "c2": -0.4953956215018316, + "c3": -3.234979577211954, + "c4": -5.540373540016409, + "c5": -12.659224067596188, + "c6": 15.331339677964468, + "c7": 4.07211238675275 }, - "vertexSeeds": { - "c1": 9.277759314685328, - "c2": 9.859929890045114, - "c3": 9.164280170121591, - "c4": 9.830733561973124, - "c5": 9.2269680371128, - "c6": 9.266590419281322, - "c7": 9.041935832664144 + "offsets": { + "c1": 16.537216828478964, + "c2": 14.174757281553394, + "c3": 11.812297734627839, + "c4": 9.449838187702268, + "c5": 7.087378640776697, + "c6": 4.724919093851143, + "c7": 2.3624595469255714 }, "rgb": [77, 76, 132] }, @@ -469023,23 +469023,23 @@ "year": 1848, "resistanceReported": false, "duration": 6566400, - "curveSeeds": { - "c1": -5.613288591446205, - "c2": 8.43391168558085, - "c3": 4.585776645193828, - "c4": 7.188628687863428, - "c5": -6.249090832369436, - "c6": -15.261079754507616, - "c7": -9.239863646840375 + "points": { + "c1": -3.672816494504257, + "c2": -0.45426109723429065, + "c3": 14.562082275326617, + "c4": 4.67862197368304, + "c5": -7.239161358301649, + "c6": 9.355773922060749, + "c7": 11.332359368240137 }, - "vertexSeeds": { - "c1": 4.390337600176217, - "c2": 4.549587958565669, - "c3": 4.538536129590275, - "c4": 4.406833503316484, - "c5": 4.201926595871748, - "c6": 4.412393270758145, - "c7": 4.603246705344298 + "offsets": { + "c1": 7.766990291262135, + "c2": 6.657420249653262, + "c3": 5.547850208044387, + "c4": 4.438280166435504, + "c5": 3.328710124826631, + "c6": 2.219140083217757, + "c7": 1.1095700416088738 }, "rgb": [77, 76, 132] }, @@ -469050,23 +469050,23 @@ "year": 1848, "resistanceReported": false, "duration": 9072000, - "curveSeeds": { - "c1": 8.287594238033837, - "c2": -14.233823492946136, - "c3": -7.105308797123753, - "c4": -12.101828732203877, - "c5": 17.305420598798825, - "c6": 16.795152395891705, - "c7": 0.8100646501042768 + "points": { + "c1": -10.16600293278344, + "c2": 8.241837336887063, + "c3": 9.125861674212697, + "c4": 15.80357174461873, + "c5": -13.275661496534726, + "c6": 2.3573901806890305, + "c7": 1.1868610976625718 }, - "vertexSeeds": { - "c1": 10.078647093727792, - "c2": 10.114443153535742, - "c3": 10.071412682528042, - "c4": 10.056122906822427, - "c5": 10.098325076567109, - "c6": 10.062814760578675, - "c7": 10.120973015058109 + "offsets": { + "c1": 16.893203883495143, + "c2": 14.479889042996001, + "c3": 12.066574202496477, + "c4": 9.653259361997335, + "c5": 7.239944521497809, + "c6": 4.826629680998668, + "c7": 2.4133148404991416 }, "rgb": [238, 201, 159] }, @@ -469077,23 +469077,23 @@ "year": 1848, "resistanceReported": false, "duration": 15724800, - "curveSeeds": { - "c1": -16.59484225828355, - "c2": -22.47100870952687, - "c3": -16.94356704425595, - "c4": 8.957685702606675, - "c5": -22.92517813596723, - "c6": -1.778426587190019, - "c7": 0.6008157527018056 + "points": { + "c1": 14.572462059509142, + "c2": 1.0013640620474469, + "c3": 6.223533445577623, + "c4": -20.122479382516257, + "c5": -25.733551239165898, + "c6": -28.21368989312456, + "c7": 11.899539095487569 }, - "vertexSeeds": { - "c1": 8.872129634035552, - "c2": 8.747235081664773, - "c3": 7.762049433181969, - "c4": 9.219939914487473, - "c5": 9.163963024314189, - "c6": 9.024400593110014, - "c7": 8.494692501947098 + "offsets": { + "c1": 15.40453074433657, + "c2": 13.203883495145629, + "c3": 11.00323624595469, + "c4": 8.802588996763761, + "c5": 6.601941747572821, + "c6": 4.401294498381881, + "c7": 2.2006472491909403 }, "rgb": [238, 201, 159] }, @@ -469104,23 +469104,23 @@ "year": 1848, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": 4.716061299410576, - "c2": 23.624879459127623, - "c3": -16.72021944202319, - "c4": 10.410511213673946, - "c5": 17.810932151961087, - "c6": 23.576080792960315, - "c7": 3.8475401314237025 + "points": { + "c1": -4.273674822945434, + "c2": -1.5826460126492066, + "c3": 7.63705411214465, + "c4": -18.96733021892299, + "c5": -3.976610672124881, + "c6": -8.751677591086235, + "c7": -9.723087070582242 }, - "vertexSeeds": { - "c1": 4.041933719449095, - "c2": 4.43795316844091, - "c3": 4.120473744703187, - "c4": 4.019272853488003, - "c5": 4.407542860478794, - "c6": 4.121545289084591, - "c7": 4.375790249364122 + "offsets": { + "c1": 7.443365695792881, + "c2": 6.380027739251044, + "c3": 5.316689782709196, + "c4": 4.25335182616736, + "c5": 3.190013869625522, + "c6": 2.1266759130836843, + "c7": 1.0633379565418377 }, "rgb": [77, 76, 132] }, @@ -469131,23 +469131,23 @@ "year": 1848, "resistanceReported": false, "duration": 5616000, - "curveSeeds": { - "c1": 0.3018561617315676, - "c2": -5.652342013144979, - "c3": -1.0753198451139365, - "c4": -10.296028258929324, - "c5": 4.174708040216515, - "c6": 14.932789744023538, - "c7": -13.77511231520613 + "points": { + "c1": -8.949878991522045, + "c2": 3.1376944098310418, + "c3": 10.993658922646862, + "c4": 15.128341455745673, + "c5": -12.683498474655709, + "c6": -9.816165200589126, + "c7": 3.259918099338879 }, - "vertexSeeds": { - "c1": 9.250403417419554, - "c2": 8.960294332595907, - "c3": 8.847417879464919, - "c4": 9.218247994560286, - "c5": 8.901141825797586, - "c6": 8.965977096529942, - "c7": 8.45947087779141 + "offsets": { + "c1": 15.53398058252427, + "c2": 13.314840499306522, + "c3": 11.095700416088757, + "c4": 8.876560332871009, + "c5": 6.657420249653261, + "c6": 4.438280166435512, + "c7": 2.219140083217749 }, "rgb": [238, 201, 159] }, @@ -469158,23 +469158,23 @@ "year": 1848, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": -1.5164029207048042, - "c2": -4.806455725460157, - "c3": 2.58851004073448, - "c4": 4.3717068621682, - "c5": -2.920373149906899, - "c6": 0.06055163115919271, - "c7": -11.52481976655178 + "points": { + "c1": 7.720291338182374, + "c2": 9.325284077151576, + "c3": 11.391789360417, + "c4": -13.446359681487072, + "c5": 5.587737736451206, + "c6": 2.8118707972555335, + "c7": 15.639606011950928 }, - "vertexSeeds": { - "c1": 10.735325279477742, - "c2": 9.745166824728951, - "c3": 10.715018290862208, - "c4": 9.795117217286217, - "c5": 10.609456621378136, - "c6": 10.01287608805325, - "c7": 10.327321122594636 + "offsets": { + "c1": 17.993527508090615, + "c2": 15.423023578363392, + "c3": 12.85251964863617, + "c4": 10.28201571890891, + "c5": 7.711511789181687, + "c6": 5.141007859454464, + "c7": 2.570503929727223 }, "rgb": [58, 15, 49] }, @@ -469185,23 +469185,23 @@ "year": 1848, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": 1.6255841910798843, - "c2": -15.371330414235535, - "c3": 9.436546383727801, - "c4": 7.721893147178545, - "c5": -10.666420121262904, - "c6": -19.488355837943473, - "c7": -3.831051965395911 + "points": { + "c1": -18.63117667684683, + "c2": -14.61906310457856, + "c3": 1.509474637558558, + "c4": -1.408495226839353, + "c5": -8.484449972761496, + "c6": 24.983032106583074, + "c7": -14.194098278323036 }, - "vertexSeeds": { - "c1": 5.585683156233693, - "c2": 5.570995303630313, - "c3": 5.739432791860047, - "c4": 5.62748958792467, - "c5": 5.804633367699281, - "c6": 5.482485748164819, - "c7": 5.490467694149524 + "offsets": { + "c1": 10.064724919093852, + "c2": 8.626907073509011, + "c3": 7.189089227924188, + "c4": 5.751271382339347, + "c5": 4.313453536754506, + "c6": 2.875635691169664, + "c7": 1.4378178455848412 }, "rgb": [58, 15, 49] }, @@ -469212,23 +469212,23 @@ "year": 1848, "resistanceReported": false, "duration": 12441600, - "curveSeeds": { - "c1": -14.098191381851029, - "c2": -14.609074841963555, - "c3": -5.153448055924766, - "c4": 22.42903586006318, - "c5": 10.267245014805212, - "c6": 12.215952967909779, - "c7": -3.941859535724422 + "points": { + "c1": -5.124452120771846, + "c2": -6.742819593913801, + "c3": 3.309603046333841, + "c4": 18.531239072224636, + "c5": -2.664807516639968, + "c6": -0.06089336233148046, + "c7": 23.973907208780567 }, - "vertexSeeds": { - "c1": 21.930079877006733, - "c2": 21.579565122992392, - "c3": 21.745938990431526, - "c4": 22.083988101687808, - "c5": 22.022417687617196, - "c6": 21.779850280767107, - "c7": 22.176048661787675 + "offsets": { + "c1": 37.2168284789644, + "c2": 31.90013869625514, + "c3": 26.583448913546093, + "c4": 21.26675913083683, + "c5": 15.95006934812757, + "c6": 10.63337956541831, + "c7": 5.316689782709261 }, "rgb": [77, 76, 132] }, @@ -469239,23 +469239,23 @@ "year": 1849, "resistanceReported": false, "duration": 20304000, - "curveSeeds": { - "c1": 30.698741627867783, - "c2": 14.76202063945253, - "c3": -5.019276858391063, - "c4": 21.360708526856442, - "c5": -8.716091901126465, - "c6": 24.275743670803394, - "c7": 12.938054817033787 + "points": { + "c1": 13.905324194149316, + "c2": 0.9185174040502275, + "c3": 30.096656337440542, + "c4": -29.845272203591758, + "c5": -0.2744493287135583, + "c6": -23.729673268551068, + "c7": -11.643965399344125 }, - "vertexSeeds": { - "c1": 14.60519042210607, - "c2": 14.69968473773304, - "c3": 14.502744476022393, - "c4": 14.278920668468283, - "c5": 14.401680511864027, - "c6": 14.228510156142425, - "c7": 15.000671783811914 + "offsets": { + "c1": 25.40453074433657, + "c2": 21.775312066574223, + "c3": 18.146093388811828, + "c4": 14.51687471104948, + "c5": 10.887656033287088, + "c6": 7.25843735552474, + "c7": 3.629218677762394 }, "rgb": [77, 76, 132] }, @@ -469266,23 +469266,23 @@ "year": 1848, "resistanceReported": false, "duration": 4752000, - "curveSeeds": { - "c1": 8.167147102210038, - "c2": -5.566819345805161, - "c3": 13.414006546605382, - "c4": -1.9597294592114523, - "c5": 13.874118508899446, - "c6": -6.422858763073503, - "c7": -9.92311828871788 + "points": { + "c1": 14.197423458410984, + "c2": -4.430445542479072, + "c3": 1.970423548090121, + "c4": -13.636086756465232, + "c5": 12.005857498510089, + "c6": 1.3529517180434176, + "c7": 6.6446517059486645 }, - "vertexSeeds": { - "c1": 6.335880335799655, - "c2": 5.968422091663443, - "c3": 6.24068935572715, - "c4": 5.913103431735214, - "c5": 5.991880729178491, - "c6": 6.403429221638906, - "c7": 6.367033500026901 + "offsets": { + "c1": 10.906148867313915, + "c2": 9.34812760055478, + "c3": 7.790106333795649, + "c4": 6.2320850670365155, + "c5": 4.674063800277399, + "c6": 3.1160425335182667, + "c7": 1.5580212667591333 }, "rgb": [238, 201, 159] }, @@ -469293,23 +469293,23 @@ "year": 1848, "resistanceReported": false, "duration": 4406400, - "curveSeeds": { - "c1": -13.99980259158539, - "c2": -10.581678464831441, - "c3": -7.300348135481652, - "c4": 11.796089059582929, - "c5": -1.1878534108653547, - "c6": -4.703290243903904, - "c7": 1.6646264773304509 + "points": { + "c1": 13.467201948998092, + "c2": 14.685931699461822, + "c3": 13.423755260194632, + "c4": -10.0039082008871, + "c5": -6.934477468185657, + "c6": 1.6991316829533538, + "c7": 10.251784464386738 }, - "vertexSeeds": { - "c1": 7.161225363618704, - "c2": 7.140833560092701, - "c3": 7.067736736739037, - "c4": 7.128252642271885, - "c5": 7.128224110562381, - "c6": 7.2949300708946465, - "c7": 7.297774387457936 + "offsets": { + "c1": 12.491909385113269, + "c2": 10.70735090152565, + "c3": 8.922792417938052, + "c4": 7.138233934350433, + "c5": 5.353675450762836, + "c6": 3.5691169671752165, + "c7": 1.7845584835876185 }, "rgb": [58, 15, 49] }, @@ -469320,23 +469320,23 @@ "year": 1848, "resistanceReported": false, "duration": 5529600, - "curveSeeds": { - "c1": -11.773556698077059, - "c2": -13.125855907302299, - "c3": 3.9572804446085534, - "c4": -12.648011542817809, - "c5": 0.9477291347955052, - "c6": 9.137968448416746, - "c7": 0.8965682459302009 + "points": { + "c1": 11.733733053376746, + "c2": -11.087584857623533, + "c3": -7.620388841731252, + "c4": -2.4291774502244277, + "c5": 15.476664950168665, + "c6": -0.3370796701218737, + "c7": 2.4269578979868562 }, - "vertexSeeds": { - "c1": 11.974112459805891, - "c2": 11.834519058368706, - "c3": 12.00497152628238, - "c4": 12.917398155059976, - "c5": 12.438551386258164, - "c6": 11.915791268150741, - "c7": 12.422563135057272 + "offsets": { + "c1": 21.58576051779935, + "c2": 18.502080443828014, + "c3": 15.418400369856679, + "c4": 12.334720295885342, + "c5": 9.251040221914007, + "c6": 6.167360147942671, + "c7": 3.0836800739713355 }, "rgb": [77, 76, 132] }, @@ -469347,23 +469347,23 @@ "year": 1848, "resistanceReported": false, "duration": 7171200, - "curveSeeds": { - "c1": 4.401759779499571, - "c2": 16.739839188697573, - "c3": 8.449501323090733, - "c4": 6.189486413943655, - "c5": 11.445225189784704, - "c6": -15.174229239827518, - "c7": 10.278655680790088 + "points": { + "c1": -5.505175714890571, + "c2": 4.808999395607444, + "c3": 3.8993814877060053, + "c4": 6.253963782320671, + "c5": 15.882465173999421, + "c6": 2.7245597393678977, + "c7": -6.197703199525938 }, - "vertexSeeds": { - "c1": 8.670002735140379, - "c2": 9.18471233701436, - "c3": 8.64459068690028, - "c4": 8.97538322171569, - "c5": 8.985468563298326, - "c6": 8.787602506922934, - "c7": 8.679246288374474 + "offsets": { + "c1": 15.857605177993527, + "c2": 13.592233009708744, + "c3": 11.326860841423938, + "c4": 9.061488673139156, + "c5": 6.796116504854372, + "c6": 4.530744336569568, + "c7": 2.265372168284784 }, "rgb": [238, 201, 159] }, @@ -469374,23 +469374,23 @@ "year": 1848, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": -7.424691785739524, - "c2": 2.8006040617144734, - "c3": 6.694907451717629, - "c4": -14.283814832663323, - "c5": 1.875003210209556, - "c6": 2.632312618701935, - "c7": 8.70828386970635 + "points": { + "c1": 9.63379570423848, + "c2": -15.973768018503968, + "c3": -7.39055599386179, + "c4": -8.428818536766226, + "c5": 17.694489891854396, + "c6": 10.996624765680814, + "c7": 12.850635430553982 }, - "vertexSeeds": { - "c1": 2.2351762319040986, - "c2": 2.271563869025931, - "c3": 2.1286367430349165, - "c4": 2.177778529650759, - "c5": 2.142153723269192, - "c6": 2.1213047606189233, - "c7": 2.194026951214443 + "offsets": { + "c1": 3.8187702265372168, + "c2": 3.2732316227461866, + "c3": 2.727693018955156, + "c4": 2.182154415164126, + "c5": 1.6366158113730955, + "c6": 1.0910772075820605, + "c7": 0.5455386037910348 }, "rgb": [238, 201, 159] }, @@ -469401,23 +469401,23 @@ "year": 1848, "resistanceReported": false, "duration": 6220800, - "curveSeeds": { - "c1": 1.5524545718887452, - "c2": -5.613610037858615, - "c3": -0.9775953641937836, - "c4": -15.90559056175226, - "c5": 0.9902572439758011, - "c6": -6.8681342671137475, - "c7": -2.230607989066657 + "points": { + "c1": 18.049580318433648, + "c2": 6.4003348305165275, + "c3": 13.337599183839323, + "c4": 10.709096043097954, + "c5": -10.652348967098789, + "c6": 13.13040708833871, + "c7": 8.879394467516619 }, - "vertexSeeds": { - "c1": 11.189878439646165, - "c2": 11.603808716921572, - "c3": 12.096058604269693, - "c4": 11.697966682066184, - "c5": 11.217191423308222, - "c6": 11.174646314303333, - "c7": 11.910267695290853 + "offsets": { + "c1": 20.323624595469255, + "c2": 17.420249653259354, + "c3": 14.516874711049457, + "c4": 11.613499768839558, + "c5": 8.71012482662966, + "c6": 5.806749884419798, + "c7": 2.903374942209899 }, "rgb": [222, 0, 59] }, @@ -469428,23 +469428,23 @@ "year": 1848, "resistanceReported": false, "duration": 12873600, - "curveSeeds": { - "c1": 5.907860201542167, - "c2": 22.086802510805825, - "c3": 19.258186580995186, - "c4": -20.859958274311122, - "c5": 18.211931998075713, - "c6": -5.295781078823374, - "c7": -23.17887148265789 + "points": { + "c1": 19.27395613396375, + "c2": 20.346950910060613, + "c3": -19.428226339801682, + "c4": 2.4465738127341083, + "c5": 25.27003319909361, + "c6": 10.486617185820997, + "c7": -17.16050478616556 }, - "vertexSeeds": { - "c1": 7.306546443613369, - "c2": 7.0381281347801, - "c3": 7.1062946684613975, - "c4": 7.200721224773336, - "c5": 7.368924327713133, - "c6": 7.437044891403066, - "c7": 7.4675814351981185 + "offsets": { + "c1": 12.55663430420712, + "c2": 10.762829403606116, + "c3": 8.969024503005082, + "c4": 7.175219602404077, + "c5": 5.3814147018030445, + "c6": 3.5876098012020385, + "c7": 1.793804900601006 }, "rgb": [77, 76, 132] }, @@ -469455,23 +469455,23 @@ "year": 1848, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": -17.33946122857208, - "c2": 0.1330873651338642, - "c3": 16.193195348314774, - "c4": 10.213211139733108, - "c5": 15.245633078827616, - "c6": -18.955511250858525, - "c7": 11.81403160087612 + "points": { + "c1": 6.3881208907662455, + "c2": -13.855007564423905, + "c3": 16.4597866970171, + "c4": -21.10873571468902, + "c5": -21.605010487736028, + "c6": -2.9179400241943867, + "c7": 7.4890075047079705 }, - "vertexSeeds": { - "c1": 5.409502827092936, - "c2": 5.454752966477527, - "c3": 5.306452374864483, - "c4": 5.371131686471027, - "c5": 5.624043683683391, - "c6": 5.763329606084498, - "c7": 5.479956520446724 + "offsets": { + "c1": 9.805825242718447, + "c2": 8.404993065187233, + "c3": 7.0041608876560355, + "c4": 5.603328710124822, + "c5": 4.202496532593625, + "c6": 2.801664355062411, + "c7": 1.4008321775311967 }, "rgb": [58, 15, 49] }, @@ -469482,23 +469482,23 @@ "year": 1848, "resistanceReported": false, "duration": 13478400, - "curveSeeds": { - "c1": -21.34522672138747, - "c2": -4.959773055668311, - "c3": 16.32227180728589, - "c4": 9.14084392381763, - "c5": 4.807497917018775, - "c6": 21.538148669950314, - "c7": 0.29291845683931683 + "points": { + "c1": -4.52024277534073, + "c2": 2.5788029092812152, + "c3": 15.585853028103354, + "c4": -18.129291457204253, + "c5": -18.569846844951403, + "c6": 2.0390046396725445, + "c7": -11.775021115636273 }, - "vertexSeeds": { - "c1": 6.4458367977261455, - "c2": 6.745443976542868, - "c3": 6.29946573246821, - "c4": 6.414421751828334, - "c5": 6.794552968299455, - "c6": 6.207489461571633, - "c7": 6.200571841890802 + "offsets": { + "c1": 11.3915857605178, + "c2": 9.764216366158115, + "c3": 8.136846971798429, + "c4": 6.509477577438743, + "c5": 4.882108183079057, + "c6": 3.2547387887193713, + "c7": 1.6273693943596856 }, "rgb": [77, 76, 132] }, @@ -469509,23 +469509,23 @@ "year": 1848, "resistanceReported": false, "duration": 5529600, - "curveSeeds": { - "c1": 11.995356895896442, - "c2": 6.104276000715053, - "c3": -13.293028389224727, - "c4": 4.504715533876162, - "c5": 8.070262032044145, - "c6": -0.10211780479588484, - "c7": 5.178933741714253 + "points": { + "c1": -8.621422591566805, + "c2": 3.2453174277436823, + "c3": -0.5478581517359125, + "c4": 9.507807703993418, + "c5": 13.100974678273015, + "c6": -15.893299831791795, + "c7": 17.26646751127956 }, - "vertexSeeds": { - "c1": 13.343114490769599, - "c2": 12.365488591309328, - "c3": 11.748942314906522, - "c4": 13.01558076799051, - "c5": 13.309308550531668, - "c6": 12.629448088755897, - "c7": 12.991378691725645 + "offsets": { + "c1": 23.106796116504853, + "c2": 19.80582524271845, + "c3": 16.504854368932044, + "c4": 13.20388349514564, + "c5": 9.902912621359214, + "c6": 6.601941747572808, + "c7": 3.300970873786404 }, "rgb": [222, 0, 59] }, @@ -469536,23 +469536,23 @@ "year": 1848, "resistanceReported": false, "duration": 4406400, - "curveSeeds": { - "c1": -7.7269958841901465, - "c2": 14.196233541804272, - "c3": 5.332019534517006, - "c4": -1.065950413608995, - "c5": 2.7951576778199154, - "c6": -7.267880469438663, - "c7": 7.874257484768879 + "points": { + "c1": -8.956568570496584, + "c2": 16.48922287129087, + "c3": -12.407597108354425, + "c4": -1.2965439983167997, + "c5": -6.40673514309692, + "c6": -10.281023281705636, + "c7": 0.9036610990237328 }, - "vertexSeeds": { - "c1": 9.509115562137564, - "c2": 9.339787021450444, - "c3": 9.962110770431947, - "c4": 9.7389209002493, - "c5": 10.233901649718254, - "c6": 9.93927835859881, - "c7": 9.959029288304514 + "offsets": { + "c1": 17.15210355987055, + "c2": 14.701803051317626, + "c3": 12.251502542764662, + "c4": 9.801202034211737, + "c5": 7.350901525658813, + "c6": 4.900601017105869, + "c7": 2.450300508552944 }, "rgb": [58, 15, 49] }, @@ -469563,23 +469563,23 @@ "year": 1848, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": -6.142178860734415, - "c2": -9.659656243846669, - "c3": -9.790492644985582, - "c4": -8.198606652024475, - "c5": 4.951089738344919, - "c6": 4.451836347832717, - "c7": 5.470216885958411 + "points": { + "c1": -5.000070806418353, + "c2": 11.347070477552368, + "c3": -11.989679640101151, + "c4": -5.142095457434531, + "c5": 3.0403190224428123, + "c6": -7.488730355558699, + "c7": 17.382191539121486 }, - "vertexSeeds": { - "c1": 6.916555290695372, - "c2": 7.230506739555748, - "c3": 7.13700459931466, - "c4": 7.021617791481309, - "c5": 7.047358319234095, - "c6": 7.227221906093846, - "c7": 7.174900969724025 + "offsets": { + "c1": 12.135922330097088, + "c2": 10.402219140083226, + "c3": 8.668515950069336, + "c4": 6.9348127600554745, + "c5": 5.201109570041613, + "c6": 3.467406380027724, + "c7": 1.733703190013862 }, "rgb": [58, 15, 49] }, @@ -469590,23 +469590,23 @@ "year": 1849, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": -10.428685958251753, - "c2": 1.4777734652920707, - "c3": 11.007677254510579, - "c4": 12.180183638925879, - "c5": 13.148519817025786, - "c6": -6.080389139748275, - "c7": -11.29874900927112 + "points": { + "c1": 0.47180153423974147, + "c2": 8.700058108561045, + "c3": 16.732281283781088, + "c4": 6.6836694525418245, + "c5": -10.17850370855634, + "c6": -3.327270124153104, + "c7": -16.13676416054388 }, - "vertexSeeds": { - "c1": 14.57132455771769, - "c2": 14.024116092779112, - "c3": 14.291920044797108, - "c4": 14.757647837022462, - "c5": 14.22548556180966, - "c6": 15.10877587105753, - "c7": 14.8964282745897 + "offsets": { + "c1": 25.728155339805824, + "c2": 22.052704576976435, + "c3": 18.37725381414701, + "c4": 14.701803051317624, + "c5": 11.0263522884882, + "c6": 7.350901525658812, + "c7": 3.6754507628294255 }, "rgb": [222, 0, 59] }, @@ -469617,23 +469617,23 @@ "year": 1849, "resistanceReported": false, "duration": 5011200, - "curveSeeds": { - "c1": 13.464222839473218, - "c2": -1.1798265125341612, - "c3": 10.291966460944666, - "c4": 6.288185869158651, - "c5": 8.091023053209225, - "c6": -5.001433179133567, - "c7": -0.7407841769403039 + "points": { + "c1": 11.107756819058249, + "c2": 8.865270673688787, + "c3": 16.785207384061067, + "c4": -15.611133021895261, + "c5": -8.126915365542292, + "c6": -16.24564340010244, + "c7": 3.0518002621170623 }, - "vertexSeeds": { - "c1": 8.21322879798913, - "c2": 8.600286339678913, - "c3": 8.584687808986013, - "c4": 8.461110068824135, - "c5": 8.20658992873571, - "c6": 8.218468448635004, - "c7": 8.261162422706484 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.87101248266297, + "c3": 10.725843735552479, + "c4": 8.580674988441986, + "c5": 6.435506241331495, + "c6": 4.290337494220984, + "c7": 2.145168747110511 }, "rgb": [238, 201, 159] }, @@ -469644,23 +469644,23 @@ "year": 1849, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": 11.792506430006693, - "c2": -10.908864215937568, - "c3": -2.87515598316992, - "c4": 1.7575486990479234, - "c5": 15.563354396346814, - "c6": -3.3257500603952614, - "c7": 11.576955161829567 + "points": { + "c1": -11.29308331453001, + "c2": -7.3327698480044425, + "c3": 17.470321771632676, + "c4": 8.875385719194774, + "c5": -10.54205928427533, + "c6": 13.480067711769493, + "c7": -17.697750536910462 }, - "vertexSeeds": { - "c1": 8.258835277110476, - "c2": 9.426750579479831, - "c3": 8.110587704508712, - "c4": 8.784712610086617, - "c5": 8.224257648924734, - "c6": 8.04034763111233, - "c7": 9.50676377265448 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011096, + "c3": 11.558021266759129, + "c4": 9.246417013407306, + "c5": 6.9348127600554745, + "c6": 4.623208506703653, + "c7": 2.3116042533518315 }, "rgb": [86, 146, 138] }, @@ -469671,23 +469671,23 @@ "year": 1850, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 33.28546517570261, - "c2": -35.546958003450065, - "c3": 35.287234860651765, - "c4": 16.305969122180755, - "c5": -21.305422718397928, - "c6": 17.782793764719685, - "c7": -37.78134246859842 + "points": { + "c1": -34.71938813632451, + "c2": 9.72324549659509, + "c3": 22.153092037001585, + "c4": -42.69389264105448, + "c5": -20.1126094996363, + "c6": -16.162632197672657, + "c7": 20.444130002844773 }, - "vertexSeeds": { - "c1": 10.322679379592223, - "c2": 10.325649636336655, - "c3": 10.173393183685198, - "c4": 10.301008565963242, - "c5": 10.180145806845005, - "c6": 10.327223701248986, - "c7": 10.406541090919745 + "offsets": { + "c1": 17.37864077669903, + "c2": 14.895977808599124, + "c3": 12.413314840499373, + "c4": 9.930651872399467, + "c5": 7.447988904299562, + "c6": 4.965325936199809, + "c7": 2.4826629680999046 }, "rgb": [58, 15, 49] }, @@ -469698,23 +469698,23 @@ "year": 1849, "resistanceReported": false, "duration": 24796800, - "curveSeeds": { - "c1": 6.001358587612707, - "c2": -25.42427356511281, - "c3": -6.911832972974572, - "c4": 15.176871792582979, - "c5": -9.413579570236525, - "c6": -25.76199786869171, - "c7": 24.59487870957055 + "points": { + "c1": -5.561346607444165, + "c2": 38.453354699176984, + "c3": -37.2995465652366, + "c4": 19.372487087779348, + "c5": -21.662536626798804, + "c6": -17.63938201194874, + "c7": 15.451989289710362 }, - "vertexSeeds": { - "c1": 8.797651363060773, - "c2": 11.936781386225743, - "c3": 10.597668173806564, - "c4": 9.710009034011293, - "c5": 12.659834783092656, - "c6": 12.624275083849385, - "c7": 7.882110607763226 + "offsets": { + "c1": 25.88996763754045, + "c2": 22.19140083217753, + "c3": 18.49283402681461, + "c4": 14.794267221451689, + "c5": 11.095700416088764, + "c6": 7.397133610725844, + "c7": 3.6985668053629235 }, "rgb": [58, 15, 49] }, @@ -469725,23 +469725,23 @@ "year": 1849, "resistanceReported": false, "duration": 15638400, - "curveSeeds": { - "c1": 26.307803037895457, - "c2": -17.524993884377913, - "c3": -21.352928746329667, - "c4": -5.315485540754626, - "c5": 26.981264474890676, - "c6": -11.763674704074864, - "c7": -9.160187514754224 + "points": { + "c1": -22.906422915813003, + "c2": 2.7589444751942125, + "c3": 17.80948666570617, + "c4": 6.507939280039668, + "c5": 21.43261411687507, + "c6": -5.667659363794794, + "c7": -22.234929217921334 }, - "vertexSeeds": { - "c1": 8.37131488314759, - "c2": 8.211935683558536, - "c3": 8.709851761000424, - "c4": 8.249951346617738, - "c5": 8.262847330051411, - "c6": 8.952254494631319, - "c7": 8.631295345062021 + "offsets": { + "c1": 15.016181229773462, + "c2": 12.87101248266297, + "c3": 10.725843735552479, + "c4": 8.580674988441986, + "c5": 6.435506241331495, + "c6": 4.290337494220984, + "c7": 2.145168747110511 }, "rgb": [222, 0, 59] }, @@ -469752,23 +469752,23 @@ "year": 1849, "resistanceReported": false, "duration": 5097600, - "curveSeeds": { - "c1": 1.810288218619167, - "c2": -11.766039550524244, - "c3": 5.581347436035401, - "c4": 13.035483356689245, - "c5": -11.604566781492737, - "c6": 6.737423841814564, - "c7": 11.622634129198104 + "points": { + "c1": -6.783402030749066, + "c2": -15.859421642561907, + "c3": -9.29213656769187, + "c4": 14.438542457548813, + "c5": 7.402946360288578, + "c6": 13.520514011626744, + "c7": 4.133140434973747 }, - "vertexSeeds": { - "c1": 17.177359079175552, - "c2": 16.806842881517962, - "c3": 15.717771420063896, - "c4": 17.06736284470128, - "c5": 16.699429499721543, - "c6": 16.694622968251057, - "c7": 16.764062798788945 + "offsets": { + "c1": 28.964401294498384, + "c2": 24.826629680998618, + "c3": 20.688858067498856, + "c4": 16.55108645399909, + "c5": 12.413314840499327, + "c6": 8.275543226999527, + "c7": 4.137771613499798 }, "rgb": [238, 201, 159] }, @@ -469779,23 +469779,23 @@ "year": 1849, "resistanceReported": false, "duration": 6739200, - "curveSeeds": { - "c1": -10.937756330991409, - "c2": -2.4763130660491637, - "c3": -16.301771160341165, - "c4": -5.217808540607418, - "c5": 7.362090197469939, - "c6": 11.17076238044357, - "c7": 10.067858408353391 + "points": { + "c1": -4.235636056946852, + "c2": -3.0404869037391897, + "c3": 3.0578162020790813, + "c4": 18.91776172735373, + "c5": -18.45819696267924, + "c6": -17.543186413334794, + "c7": 15.0453477740672 }, - "vertexSeeds": { - "c1": 4.8719316625347115, - "c2": 4.866323713433863, - "c3": 5.269768854284513, - "c4": 5.157056897411409, - "c5": 4.988389602772838, - "c6": 5.299595525789543, - "c7": 5.326433506151311 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318085, + "c4": 5.141007859454455, + "c5": 3.8557558945908434, + "c6": 2.570503929727232, + "c7": 1.2852519648636116 }, "rgb": [222, 0, 59] }, @@ -469806,23 +469806,23 @@ "year": 1849, "resistanceReported": false, "duration": 6912000, - "curveSeeds": { - "c1": -7.3588892010129, - "c2": 5.265076635347505, - "c3": -16.280872924613973, - "c4": -1.8558179452289547, - "c5": 0.7563394121840084, - "c6": -4.099938704822408, - "c7": -12.320435715678244 + "points": { + "c1": -5.664875869301932, + "c2": 12.478920036691104, + "c3": -0.25063805009149576, + "c4": -13.971015463348564, + "c5": 8.364890596818523, + "c6": 7.654159166175404, + "c7": -5.622326390409073 }, - "vertexSeeds": { - "c1": 11.620898103173369, - "c2": 11.60676257022304, - "c3": 11.551494831738285, - "c4": 11.921746351835926, - "c5": 11.720122186823536, - "c6": 11.57226106826726, - "c7": 11.785996199020003 + "offsets": { + "c1": 20.129449838187703, + "c2": 17.253814147018062, + "c3": 14.37817845584835, + "c4": 11.502542764678708, + "c5": 8.626907073508995, + "c6": 5.751271382339354, + "c7": 2.8756356911697116 }, "rgb": [77, 76, 132] }, @@ -469833,23 +469833,23 @@ "year": 1849, "resistanceReported": false, "duration": 4838400, - "curveSeeds": { - "c1": 9.708610162975244, - "c2": -9.777996738258462, - "c3": -9.487103539832184, - "c4": -13.157113091379692, - "c5": 4.384750966439537, - "c6": 3.9833789248771545, - "c7": 10.901048454162439 + "points": { + "c1": -7.888642133398463, + "c2": -9.171950438724698, + "c3": -6.237169960805955, + "c4": 14.994331280678455, + "c5": -12.385138607396868, + "c6": -11.416601285861354, + "c7": -10.097834273799112 }, - "vertexSeeds": { - "c1": 6.637069808244984, - "c2": 6.594700893786468, - "c3": 6.249051155902733, - "c4": 6.536463434210273, - "c5": 6.122191869244309, - "c6": 6.364695545459626, - "c7": 6.192329748442408 + "offsets": { + "c1": 11.165048543689322, + "c2": 9.570041608876561, + "c3": 7.975034674063801, + "c4": 6.380027739251041, + "c5": 4.785020804438281, + "c6": 3.1900138696255205, + "c7": 1.5950069348127602 }, "rgb": [77, 76, 132] }, @@ -469860,23 +469860,23 @@ "year": 1849, "resistanceReported": false, "duration": 6393600, - "curveSeeds": { - "c1": -5.681704613995773, - "c2": -16.395905510794044, - "c3": -0.9302610087991141, - "c4": 3.1854512690576833, - "c5": -5.314651550760965, - "c6": 2.0933168789293397, - "c7": -10.120683590178984 + "points": { + "c1": -0.07499123044602385, + "c2": -6.5890963370564375, + "c3": 18.68853406238126, + "c4": 5.739661093242994, + "c5": -7.6537455775267595, + "c6": 12.471780674220962, + "c7": 6.312076716437716 }, - "vertexSeeds": { - "c1": 3.0866244243329795, - "c2": 2.970837803563381, - "c3": 3.0201860583512845, - "c4": 3.1755242709971636, - "c5": 3.014633791916462, - "c6": 3.0589953319690113, - "c7": 3.1371451916826443 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717057, + "c3": 3.860379103097553, + "c4": 3.0883032824780408, + "c5": 2.3162274618585283, + "c6": 1.5441516412390248, + "c7": 0.7720758206195124 }, "rgb": [77, 76, 132] }, @@ -469887,23 +469887,23 @@ "year": 1849, "resistanceReported": false, "duration": 5702400, - "curveSeeds": { - "c1": -15.189189614943063, - "c2": 7.832149790199015, - "c3": -1.798606204396826, - "c4": 7.8112359956506445, - "c5": 13.973766760870255, - "c6": 10.154973054112482, - "c7": -7.086074758400777 + "points": { + "c1": -11.888038372350273, + "c2": 3.2046287835235923, + "c3": -13.847708994610645, + "c4": 3.2216695639353823, + "c5": -4.638716807425091, + "c6": -1.3568099322932277, + "c7": 15.423948072955227 }, - "vertexSeeds": { - "c1": 8.546426280949213, - "c2": 8.363559153932652, - "c3": 8.105912841082713, - "c4": 8.54727525364789, - "c5": 8.11653463657881, - "c6": 8.307991970511127, - "c7": 8.246248614446083 + "offsets": { + "c1": 14.3042071197411, + "c2": 12.260748959778075, + "c3": 10.217290799815054, + "c4": 8.173832639852062, + "c5": 6.130374479889038, + "c6": 4.086916319926014, + "c7": 2.04345815996299 }, "rgb": [222, 0, 59] }, @@ -469914,23 +469914,23 @@ "year": 1849, "resistanceReported": false, "duration": 5356800, - "curveSeeds": { - "c1": 12.533511583834215, - "c2": 5.278027672901455, - "c3": 9.06072411110316, - "c4": -0.435213716860833, - "c5": -7.469227431975339, - "c6": 6.936067627490456, - "c7": -11.030503590857947 + "points": { + "c1": -8.190526114309812, + "c2": 7.1854793435585265, + "c3": 11.195885469335227, + "c4": 12.843137611628283, + "c5": 5.18969796766708, + "c6": -9.953226159458968, + "c7": 14.379672728237466 }, - "vertexSeeds": { - "c1": 11.567888026972957, - "c2": 12.029109282860379, - "c3": 11.621290376246876, - "c4": 12.387647142620136, - "c5": 12.232467521291374, - "c6": 11.473188852784887, - "c7": 11.799757736268704 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.753120665742035, + "c3": 14.794267221451701, + "c4": 11.835413777161369, + "c5": 8.876560332870998, + "c6": 5.917706888580665, + "c7": 2.9588534442903325 }, "rgb": [222, 0, 59] }, @@ -469941,23 +469941,23 @@ "year": 1849, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -21.390230574960913, - "c2": -2.541750175243859, - "c3": 11.808946038399018, - "c4": -12.060663414752302, - "c5": 3.588074008044984, - "c6": 11.899597046571177, - "c7": -4.664249643047761 + "points": { + "c1": 1.6689305366802998, + "c2": 5.692771488607882, + "c3": 5.055500859845484, + "c4": 21.20804574911219, + "c5": 0.6568853945712547, + "c6": 19.631931532800213, + "c7": 20.525937730458917 }, - "vertexSeeds": { - "c1": 3.0872205803288133, - "c2": 2.9206773554800365, - "c3": 3.1653341953543297, - "c4": 2.938681222694625, - "c5": 3.104342072775965, - "c6": 3.097506881363755, - "c7": 3.206466475266321 + "offsets": { + "c1": 5.4045307443365695, + "c2": 4.632454923717057, + "c3": 3.860379103097553, + "c4": 3.0883032824780408, + "c5": 2.3162274618585283, + "c6": 1.5441516412390248, + "c7": 0.7720758206195124 }, "rgb": [58, 15, 49] }, @@ -469968,23 +469968,23 @@ "year": 1849, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 2.0400651379918955, - "c2": -20.445968143566805, - "c3": 22.711686590613397, - "c4": 21.257533800433684, - "c5": 25.80490629803903, - "c6": 6.295637437273989, - "c7": 21.190603576032714 + "points": { + "c1": 8.426231707538193, + "c2": -22.02542909302239, + "c3": -19.12570173151706, + "c4": 1.476090211026822, + "c5": 18.03951203099887, + "c6": -11.909579567364528, + "c7": -10.653236314832427 }, - "vertexSeeds": { - "c1": 10.90640000750763, - "c2": 10.997137836658622, - "c3": 10.612189039796979, - "c4": 11.12844413230188, - "c5": 10.536058562861323, - "c6": 10.505977728967773, - "c7": 10.454938383429216 + "offsets": { + "c1": 19.12621359223301, + "c2": 16.393897364771153, + "c3": 13.661581137309295, + "c4": 10.929264909847435, + "c5": 8.196948682385576, + "c6": 5.464632454923717, + "c7": 2.7323162274618586 }, "rgb": [77, 76, 132] }, @@ -469995,23 +469995,23 @@ "year": 1849, "resistanceReported": false, "duration": 4406400, - "curveSeeds": { - "c1": 13.03485879028971, - "c2": 4.77234377082144, - "c3": -9.37657802226842, - "c4": 2.2379098502926915, - "c5": 10.67354515680233, - "c6": -14.079966486258636, - "c7": -10.84346564236547 + "points": { + "c1": -7.616171234698527, + "c2": -7.467996192931464, + "c3": 9.858004909238542, + "c4": -0.5913367216430139, + "c5": 9.686196648177457, + "c6": -6.7831752472359845, + "c7": -14.929380341487857 }, - "vertexSeeds": { - "c1": 8.448643457436084, - "c2": 8.161051406276853, - "c3": 7.976843109518605, - "c4": 8.541792746921871, - "c5": 8.27979195775907, - "c6": 8.500216129130338, - "c7": 8.577679541880336 + "offsets": { + "c1": 14.36893203883495, + "c2": 12.316227461858531, + "c3": 10.263522884882113, + "c4": 8.210818307905694, + "c5": 6.158113730929256, + "c6": 4.105409153952838, + "c7": 2.052704576976419 }, "rgb": [77, 76, 132] }, @@ -470022,23 +470022,23 @@ "year": 1849, "resistanceReported": false, "duration": 3456000, - "curveSeeds": { - "c1": -7.087706301308509, - "c2": -11.007289211886714, - "c3": 11.693162975186098, - "c4": -13.29813226952597, - "c5": -1.4594486404527434, - "c6": 9.532591111326255, - "c7": -3.728202000980904 + "points": { + "c1": 3.8344445562859484, + "c2": -3.7410192266357623, + "c3": -0.18456614155386397, + "c4": -2.9525886901548706, + "c5": 13.81350332702192, + "c6": 11.598557535744682, + "c7": 3.9754439273870723 }, - "vertexSeeds": { - "c1": 7.041095880487601, - "c2": 6.9879825290142925, - "c3": 4.79178424742841, - "c4": 5.034318242324968, - "c5": 7.074161834136468, - "c6": 4.3919379255581505, - "c7": 6.545205313046373 + "offsets": { + "c1": 12.297734627831716, + "c2": 10.540915395284328, + "c3": 8.78409616273694, + "c4": 7.027276930189553, + "c5": 5.270457697642165, + "c6": 3.513638465094776, + "c7": 1.756819232547388 }, "rgb": [86, 146, 138] }, @@ -470049,23 +470049,23 @@ "year": 1849, "resistanceReported": false, "duration": 4320000, - "curveSeeds": { - "c1": -8.742881636142597, - "c2": 13.854603589942958, - "c3": -0.9570717929224823, - "c4": 13.146672496016489, - "c5": 8.186369029359518, - "c6": -14.098800216783022, - "c7": -11.765762811401286 + "points": { + "c1": -6.751844981967386, + "c2": 6.391770547053486, + "c3": -3.4222608465666475, + "c4": -9.991963664238462, + "c5": -7.385331796247716, + "c6": -15.735400409928218, + "c7": -1.2822985431987206 }, - "vertexSeeds": { - "c1": 7.9736587434219, - "c2": 7.913544559496402, - "c3": 7.918985297561797, - "c4": 8.189325308856885, - "c5": 7.919526529913089, - "c6": 8.13163457571802, - "c7": 7.931693571068075 + "offsets": { + "c1": 13.689320388349516, + "c2": 11.733703190013877, + "c3": 9.778085991678235, + "c4": 7.822468793342596, + "c5": 5.866851595006955, + "c6": 3.911234396671281, + "c7": 1.9556171983356405 }, "rgb": [58, 15, 49] }, @@ -470076,23 +470076,23 @@ "year": 1849, "resistanceReported": false, "duration": 9849600, - "curveSeeds": { - "c1": -16.983541559540516, - "c2": 17.624460241685586, - "c3": 7.326645688763065, - "c4": -1.6907774355672558, - "c5": 19.30383729355807, - "c6": 2.3314438250315845, - "c7": -1.6744186488904376 + "points": { + "c1": -21.005544594921997, + "c2": 12.586484774672552, + "c3": 16.828752116836842, + "c4": 17.25456064374612, + "c5": -4.364557104550137, + "c6": -16.283347024423954, + "c7": 7.95471993165496 }, - "vertexSeeds": { - "c1": 4.8598765554641785, - "c2": 4.669304711982821, - "c3": 4.65132200719791, - "c4": 4.6827852539042665, - "c5": 4.863011595379301, - "c6": 4.743174130815291, - "c7": 4.656984472677281 + "offsets": { + "c1": 8.220064724919093, + "c2": 7.045769764216365, + "c3": 5.871474803513638, + "c4": 4.69717984281091, + "c5": 3.5228848821081824, + "c6": 2.348589921405455, + "c7": 1.1742949607027275 }, "rgb": [58, 15, 49] }, @@ -470103,23 +470103,23 @@ "year": 1849, "resistanceReported": false, "duration": 4579200, - "curveSeeds": { - "c1": -9.132696174908443, - "c2": -1.310621901542941, - "c3": 14.36890404757607, - "c4": -0.8979038157667585, - "c5": 9.526591544623237, - "c6": 2.9846551414311406, - "c7": 0.9504245611979201 + "points": { + "c1": -1.8859746366742254, + "c2": -10.60018717005537, + "c3": -14.94770652561719, + "c4": -6.224634461870652, + "c5": -15.054192124131685, + "c6": -13.547100859279007, + "c7": -6.210869254378423 }, - "vertexSeeds": { - "c1": 10.379255451514489, - "c2": 10.909275227585, - "c3": 10.2107864543543, - "c4": 10.230836837261613, - "c5": 10.90293810119514, - "c6": 10.427484153859979, - "c7": 10.171898776999015 + "offsets": { + "c1": 18.349514563106798, + "c2": 15.728155339805813, + "c3": 13.106796116504865, + "c4": 10.485436893203882, + "c5": 7.864077669902934, + "c6": 5.24271844660195, + "c7": 2.6213592233009657 }, "rgb": [222, 0, 59] }, @@ -470130,23 +470130,23 @@ "year": 1849, "resistanceReported": false, "duration": 5875200, - "curveSeeds": { - "c1": 0.8510992498996544, - "c2": 11.588757158775717, - "c3": -3.3962482726932546, - "c4": 13.593942823232254, - "c5": 7.30160349466701, - "c6": 5.979664094705395, - "c7": -6.093030434664952 + "points": { + "c1": 8.723816187134219, + "c2": -12.934408749519271, + "c3": -16.35322354680274, + "c4": -7.025244186453582, + "c5": -16.920832250716177, + "c6": 2.359482847890561, + "c7": 13.138906013811777 }, - "vertexSeeds": { - "c1": 8.053345421114338, - "c2": 8.307964494810241, - "c3": 8.044074915504757, - "c4": 8.058168160070208, - "c5": 8.309412930063074, - "c6": 8.435711712623693, - "c7": 8.440049348299393 + "offsets": { + "c1": 14.142394822006473, + "c2": 12.122052704576967, + "c3": 10.101710587147496, + "c4": 8.081368469717988, + "c5": 6.061026352288484, + "c6": 4.040684234859012, + "c7": 2.020342117429506 }, "rgb": [222, 0, 59] }, @@ -470157,23 +470157,23 @@ "year": 1849, "resistanceReported": false, "duration": 6393600, - "curveSeeds": { - "c1": 14.451468966088328, - "c2": -14.54100855899405, - "c3": -1.8974974976598755, - "c4": 13.956623546464193, - "c5": -12.016368341650995, - "c6": 15.093598610539392, - "c7": -6.94334336257716 + "points": { + "c1": -1.1267578383408718, + "c2": 17.842740159969328, + "c3": -8.088804988496905, + "c4": -7.684949493636074, + "c5": -9.463345993878253, + "c6": -8.915479874412794, + "c7": 6.483455340001722 }, - "vertexSeeds": { - "c1": 4.066123302959547, - "c2": 3.96074461299178, - "c3": 3.739561879452519, - "c4": 3.792149880588838, - "c5": 3.71290014093778, - "c6": 3.852159534177812, - "c7": 3.788214635623189 + "offsets": { + "c1": 6.8284789644012935, + "c2": 5.852981969486823, + "c3": 4.8774849745723525, + "c4": 3.901987979657882, + "c5": 2.9264909847434115, + "c6": 1.950993989828941, + "c7": 0.9754969949144705 }, "rgb": [222, 0, 59] }, @@ -470184,23 +470184,23 @@ "year": 1849, "resistanceReported": false, "duration": 5097600, - "curveSeeds": { - "c1": 13.36444167586831, - "c2": 4.982342160965963, - "c3": -9.7332449864087, - "c4": 13.477244168593423, - "c5": 10.482867248032811, - "c6": -5.222040276836058, - "c7": -5.66790168960144 + "points": { + "c1": -12.089370879132161, + "c2": 1.9710110291405734, + "c3": 3.8288811650850754, + "c4": -0.7640661037230672, + "c5": -16.716501721615803, + "c6": 13.388246606979749, + "c7": -13.132197350226125 }, - "vertexSeeds": { - "c1": 9.797800541319164, - "c2": 11.0157153141763, - "c3": 10.948899576197341, - "c4": 10.660693671208401, - "c5": 10.246497504992178, - "c6": 10.987611965407673, - "c7": 10.239394015666306 + "offsets": { + "c1": 18.77022653721683, + "c2": 16.088765603328714, + "c3": 13.4073046694406, + "c4": 10.725843735552486, + "c5": 8.044382801664343, + "c6": 5.362921867776229, + "c7": 2.6814609338881144 }, "rgb": [86, 146, 138] }, @@ -470211,23 +470211,23 @@ "year": 1849, "resistanceReported": false, "duration": 5011200, - "curveSeeds": { - "c1": 12.894525221774286, - "c2": -4.865269023720812, - "c3": -4.602057354523227, - "c4": 13.853198074888718, - "c5": 12.92990792144621, - "c6": -8.370854623360309, - "c7": 2.3740275628130814 + "points": { + "c1": 1.1877301158210898, + "c2": -9.13059170141983, + "c3": -8.514630008133022, + "c4": 6.351356389663053, + "c5": -2.0065604978417095, + "c6": -6.913068723682912, + "c7": 2.3266244587728018 }, - "vertexSeeds": { - "c1": 9.084327477259771, - "c2": 8.827442729746652, - "c3": 9.528400228998667, - "c4": 9.59317988356716, - "c5": 9.441946165946018, - "c6": 9.523342789440939, - "c7": 9.582634154269302 + "offsets": { + "c1": 16.084142394822006, + "c2": 13.786407766990289, + "c3": 11.488673139158571, + "c4": 9.190938511326854, + "c5": 6.893203883495135, + "c6": 4.595469255663416, + "c7": 2.2977346278316984 }, "rgb": [238, 201, 159] }, @@ -470238,23 +470238,23 @@ "year": 1850, "resistanceReported": false, "duration": 5443200, - "curveSeeds": { - "c1": 9.498027218485063, - "c2": 13.757787686208477, - "c3": -12.541177259835381, - "c4": 5.91722581995305, - "c5": -3.37214218795968, - "c6": -7.028768770901127, - "c7": -3.559065464067192 + "points": { + "c1": 15.326640130459062, + "c2": -14.742884893020307, + "c3": -17.31488561131448, + "c4": -9.269544466747236, + "c5": -2.103059603076405, + "c6": -16.147680734268306, + "c7": 15.289657566612867 }, - "vertexSeeds": { - "c1": 6.274116529463296, - "c2": 6.569603596237509, - "c3": 5.973855364983774, - "c4": 6.237400965411208, - "c5": 6.308700136221546, - "c6": 6.1514942424367955, - "c7": 6.470098312524202 + "offsets": { + "c1": 11.003236245954692, + "c2": 9.431345353675459, + "c3": 7.859454461396207, + "c4": 6.287563569116973, + "c5": 4.71567267683772, + "c6": 3.1437817845584863, + "c7": 1.5718908922792523 }, "rgb": [238, 201, 159] }, @@ -470265,23 +470265,23 @@ "year": 1850, "resistanceReported": false, "duration": 6134400, - "curveSeeds": { - "c1": 11.093710212548157, - "c2": 0.3974200915678665, - "c3": -2.800409984484121, - "c4": -1.338119736154571, - "c5": -0.05689083613681589, - "c6": -15.997526694717152, - "c7": 4.211344852178769 + "points": { + "c1": 13.690779552521334, + "c2": 10.136309734711567, + "c3": -9.77723028963456, + "c4": -9.031888900165669, + "c5": -10.139411446621326, + "c6": 0.4779908639031518, + "c7": -7.076764265194392 }, - "vertexSeeds": { - "c1": 3.2658395683895254, - "c2": 3.3037592685951207, - "c3": 3.276617943159504, - "c4": 3.3635221051743924, - "c5": 3.2780281976060786, - "c6": 3.3204282151183757, - "c7": 3.366787473228586 + "offsets": { + "c1": 5.760517799352751, + "c2": 4.937586685159507, + "c3": 4.1146555709662485, + "c4": 3.2917244567730055, + "c5": 2.4687933425797457, + "c6": 1.6458622283865028, + "c7": 0.822931114193243 }, "rgb": [222, 0, 59] }, @@ -470292,23 +470292,23 @@ "year": 1850, "resistanceReported": false, "duration": 5097600, - "curveSeeds": { - "c1": -8.69980134500894, - "c2": 4.222372671798826, - "c3": -11.815457018616051, - "c4": -0.7253401622683224, - "c5": -0.6539295718257172, - "c6": -5.580683822713381, - "c7": 5.312401146039932 + "points": { + "c1": -12.711655239202313, + "c2": 0.009226007881007803, + "c3": 0.6907143063584087, + "c4": 0.27508847440335416, + "c5": 13.650144476266028, + "c6": 1.3548809723709638, + "c7": 2.634622630922312 }, - "vertexSeeds": { - "c1": 10.105444614000303, - "c2": 10.811635839482943, - "c3": 10.250053085199745, - "c4": 10.17533389292071, - "c5": 10.724666665683039, - "c6": 10.733840752199045, - "c7": 11.106296466764498 + "offsets": { + "c1": 18.576051779935277, + "c2": 15.922330097087398, + "c3": 13.268608414239477, + "c4": 10.614886731391598, + "c5": 7.96116504854368, + "c6": 5.307443365695799, + "c7": 2.653721682847919 }, "rgb": [58, 15, 49] }, @@ -470319,23 +470319,23 @@ "year": 1850, "resistanceReported": false, "duration": 5097600, - "curveSeeds": { - "c1": 1.6626712492905646, - "c2": -14.373019555013933, - "c3": -1.2013819201219018, - "c4": -3.4071944751475964, - "c5": 1.7531745063794943, - "c6": 8.270760508870868, - "c7": 10.814215376984809 + "points": { + "c1": -3.502543266564281, + "c2": 0.841701652267151, + "c3": 14.274969384271522, + "c4": 2.5453543180776244, + "c5": 12.036665841902963, + "c6": 15.16070408003825, + "c7": 17.281360415970248 }, - "vertexSeeds": { - "c1": 8.553975470853802, - "c2": 8.89058174266627, - "c3": 8.059575744482226, - "c4": 8.518816705444852, - "c5": 8.867442755640027, - "c6": 8.66695311145947, - "c7": 8.076225862987696 + "offsets": { + "c1": 14.854368932038836, + "c2": 12.732316227461858, + "c3": 10.610263522884884, + "c4": 8.488210818307905, + "c5": 6.366158113730929, + "c6": 4.244105409153953, + "c7": 2.1220527045769764 }, "rgb": [86, 146, 138] }, @@ -470346,23 +470346,23 @@ "year": 1850, "resistanceReported": false, "duration": 7603200, - "curveSeeds": { - "c1": 2.529354520200048, - "c2": 0.19088518874955795, - "c3": -17.15993331601616, - "c4": 1.9292792577005677, - "c5": -10.394695075857488, - "c6": 14.363343145099442, - "c7": -5.762313189183665 + "points": { + "c1": 18.951876670603625, + "c2": -17.15115983049008, + "c3": -16.49915075486589, + "c4": 19.85935930393331, + "c5": -15.268630478367411, + "c6": -1.4053672567264819, + "c7": -10.387405332959046 }, - "vertexSeeds": { - "c1": 4.92270696725701, - "c2": 5.314158055554502, - "c3": 5.244089902106045, - "c4": 5.368994995371947, - "c5": 4.910721140451958, - "c6": 5.173407955983078, - "c7": 5.149267244016941 + "offsets": { + "c1": 8.996763754045308, + "c2": 7.711511789181696, + "c3": 6.426259824318085, + "c4": 5.141007859454455, + "c5": 3.8557558945908434, + "c6": 2.570503929727232, + "c7": 1.2852519648636116 }, "rgb": [238, 201, 159] }, @@ -470373,23 +470373,23 @@ "year": 1850, "resistanceReported": false, "duration": 4579200, - "curveSeeds": { - "c1": -1.9197886871399668, - "c2": 6.812731639506918, - "c3": -4.248107995878925, - "c4": -7.495088861100006, - "c5": 8.951334858806874, - "c6": -4.05187279467062, - "c7": 4.414455092640267 + "points": { + "c1": -14.84754538026938, + "c2": 4.460422781230061, + "c3": -9.311626397979015, + "c4": 6.203620942541299, + "c5": 3.341826749373176, + "c6": 10.852444150988017, + "c7": 11.084771125095411 }, - "vertexSeeds": { - "c1": 9.641600007734278, - "c2": 9.46171276505707, - "c3": 9.465396266888291, - "c4": 9.40322596427096, - "c5": 10.204590558901204, - "c6": 10.063996413514689, - "c7": 10.121117926968447 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438284, + "c3": 12.320850670365243, + "c4": 9.856680536292183, + "c5": 7.392510402219142, + "c6": 4.928340268146101, + "c7": 2.4641701340730413 }, "rgb": [238, 201, 159] }, @@ -470400,23 +470400,23 @@ "year": 1850, "resistanceReported": false, "duration": 7776000, - "curveSeeds": { - "c1": 2.1731637824089205, - "c2": -10.290776197162659, - "c3": 12.196727229395044, - "c4": -17.8418947359715, - "c5": 5.945315794866371, - "c6": 13.067097244304069, - "c7": -15.02192867250767 + "points": { + "c1": 0.008235901797107203, + "c2": 18.295209419015862, + "c3": -2.105925712757543, + "c4": 19.357242993721634, + "c5": 0.1147101003639257, + "c6": 20.029975237782025, + "c7": 16.71800481240004 }, - "vertexSeeds": { - "c1": 17.693192099453103, - "c2": 17.938430924831433, - "c3": 18.556242221054774, - "c4": 18.539073099793903, - "c5": 18.81559718646478, - "c6": 18.056405012879143, - "c7": 19.0280693753044 + "offsets": { + "c1": 31.74757281553398, + "c2": 27.212205270457712, + "c3": 22.676837725381397, + "c4": 18.141470180305127, + "c5": 13.606102635228856, + "c6": 9.070735090152544, + "c7": 4.535367545076272 }, "rgb": [58, 15, 49] }, @@ -470427,23 +470427,23 @@ "year": 1850, "resistanceReported": false, "duration": 4060800, - "curveSeeds": { - "c1": -0.4544349718764593, - "c2": -7.48178406178191, - "c3": 3.2154671444621385, - "c4": -4.055238551464845, - "c5": 0.39998033403076505, - "c6": 11.741683723885131, - "c7": -13.524191345043626 + "points": { + "c1": 7.8781673424177505, + "c2": -0.19850898432551034, + "c3": -8.658148556653252, + "c4": 3.7653861534197297, + "c5": 2.6992075407656664, + "c6": 7.5742611959908395, + "c7": -10.758189111775756 }, - "vertexSeeds": { - "c1": 6.845823271380521, - "c2": 7.065406088243884, - "c3": 6.820019878781544, - "c4": 6.975622099905593, - "c5": 6.813092122945791, - "c6": 7.083093301838528, - "c7": 6.880853804997553 + "offsets": { + "c1": 11.844660194174757, + "c2": 10.152565880721234, + "c3": 8.460471567267678, + "c4": 6.768377253814157, + "c5": 5.076282940360601, + "c6": 3.3841886269070787, + "c7": 1.6920943134535222 }, "rgb": [238, 201, 159] }, @@ -470454,23 +470454,23 @@ "year": 1850, "resistanceReported": false, "duration": 4924800, - "curveSeeds": { - "c1": -12.247898150736939, - "c2": -4.867496394142757, - "c3": 0.6887730733622242, - "c4": -6.417917136173548, - "c5": -0.738925797107532, - "c6": -2.9574135212632804, - "c7": -4.103843016865039 + "points": { + "c1": 14.337738716650243, + "c2": -2.7440497216875315, + "c3": 14.647578058238825, + "c4": 2.962167114223117, + "c5": 3.162880184939155, + "c6": 2.4583874099913743, + "c7": -15.25689039301527 }, - "vertexSeeds": { - "c1": 7.356344407882058, - "c2": 7.328087845695743, - "c3": 7.324724879740692, - "c4": 6.89040044267194, - "c5": 7.24482612851005, - "c6": 6.91470921524148, - "c7": 6.956447427284789 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [222, 0, 59] }, @@ -470481,23 +470481,23 @@ "year": 1850, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": 7.028089857947755, - "c2": -22.666232932892786, - "c3": -5.534690309707692, - "c4": -21.45357641154632, - "c5": -2.8333173228305597, - "c6": 12.665827131881116, - "c7": -17.86042674435314 + "points": { + "c1": -20.14876354499895, + "c2": 7.487925559283724, + "c3": 20.680161956609524, + "c4": -2.4912348758446115, + "c5": -21.310357364195724, + "c6": 13.965280739772119, + "c7": 6.871604387009533 }, - "vertexSeeds": { - "c1": 3.595206442002402, - "c2": 3.557667794349158, - "c3": 3.574467199219845, - "c4": 3.6285947919232964, - "c5": 3.5262412570062187, - "c6": 3.569110038477148, - "c7": 3.623823370149561 + "offsets": { + "c1": 6.116504854368932, + "c2": 5.242718446601947, + "c3": 4.368932038834943, + "c4": 3.4951456310679583, + "c5": 2.6213592233009737, + "c6": 1.747572815533989, + "c7": 0.8737864077669848 }, "rgb": [222, 0, 59] }, @@ -470508,23 +470508,23 @@ "year": 1850, "resistanceReported": false, "duration": 5443200, - "curveSeeds": { - "c1": 11.511540567219626, - "c2": 10.106324732560918, - "c3": -14.954440398702408, - "c4": 8.330154052677045, - "c5": 5.572109773276296, - "c6": -15.382527940416384, - "c7": 0.2075035549166202 + "points": { + "c1": 1.165071016590307, + "c2": 4.0446910530772335, + "c3": 1.2669829070198482, + "c4": -6.281416101452701, + "c5": -5.259346616304354, + "c6": 0.8821280393258384, + "c7": 14.322491297019852 }, - "vertexSeeds": { - "c1": 8.827367763853637, - "c2": 8.757756674925172, - "c3": 9.43690833694669, - "c4": 9.485107473736072, - "c5": 9.1916165442539, - "c6": 9.51028260001101, - "c7": 9.681493212502374 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.869625520110947, + "c3": 11.558021266759132, + "c4": 9.246417013407298, + "c5": 6.9348127600554825, + "c6": 4.623208506703649, + "c7": 2.3116042533518155 }, "rgb": [222, 0, 59] }, @@ -470535,23 +470535,23 @@ "year": 1850, "resistanceReported": false, "duration": 5443200, - "curveSeeds": { - "c1": -8.19917499639075, - "c2": -7.127666165182598, - "c3": 15.08881111142573, - "c4": 14.388540407912643, - "c5": -14.42914628771629, - "c6": 12.627784177031963, - "c7": 9.301520221068898 + "points": { + "c1": -1.5362617576436968, + "c2": 7.580089779737207, + "c3": 11.037100641122265, + "c4": -9.043628461716128, + "c5": 13.374906456672704, + "c6": 1.2965888664791123, + "c7": -15.662942643235 }, - "vertexSeeds": { - "c1": 6.29085227728183, - "c2": 5.8971328620571235, - "c3": 5.894940187855057, - "c4": 5.966935530731834, - "c5": 6.168937504861016, - "c6": 6.067145170584845, - "c7": 5.925467508682371 + "offsets": { + "c1": 10.776699029126213, + "c2": 9.237170596393895, + "c3": 7.697642163661575, + "c4": 6.158113730929257, + "c5": 4.618585298196956, + "c6": 3.0790568654646377, + "c7": 1.5395284327323189 }, "rgb": [77, 76, 132] }, @@ -470562,23 +470562,23 @@ "year": 1850, "resistanceReported": false, "duration": 5184000, - "curveSeeds": { - "c1": -8.192974939016333, - "c2": -11.036259822532573, - "c3": -11.682261653559703, - "c4": -8.76802277368077, - "c5": -3.0321388971240584, - "c6": -9.762104599537931, - "c7": 6.30687870363492 + "points": { + "c1": -15.356746476704537, + "c2": -3.911831512820534, + "c3": -3.0899421601847745, + "c4": -13.722250001861491, + "c5": 4.04323058277577, + "c6": 6.558444213219197, + "c7": -0.4494433084002871 }, - "vertexSeeds": { - "c1": 4.158092478608718, - "c2": 3.9938583066697904, - "c3": 3.893133157257046, - "c4": 4.085905066762496, - "c5": 3.909554294985217, - "c6": 3.893342062759379, - "c7": 3.9574461761944084 + "offsets": { + "c1": 7.184466019417475, + "c2": 6.158113730929266, + "c3": 5.131761442441056, + "c4": 4.105409153952847, + "c5": 3.079056865464628, + "c6": 2.052704576976419, + "c7": 1.0263522884882095 }, "rgb": [222, 0, 59] }, @@ -470589,23 +470589,23 @@ "year": 1850, "resistanceReported": false, "duration": 4492800, - "curveSeeds": { - "c1": 13.87888967410069, - "c2": 1.4664629883143334, - "c3": 9.372370029829298, - "c4": 3.806585671510522, - "c5": 14.603033882507813, - "c6": -8.612788789464279, - "c7": -3.4580693307352703 + "points": { + "c1": 14.013793093344123, + "c2": -16.21876795325568, + "c3": 6.393856544116343, + "c4": 13.755249361303246, + "c5": -3.957906775461657, + "c6": 14.24686031591986, + "c7": -10.02759327207554 }, - "vertexSeeds": { - "c1": 6.2406219543996935, - "c2": 6.478469372165064, - "c3": 6.713646686522518, - "c4": 6.674571548498909, - "c5": 6.293352959284634, - "c6": 6.2800962647831895, - "c7": 6.488243680211164 + "offsets": { + "c1": 11.229773462783172, + "c2": 9.625520110957014, + "c3": 8.021266759130834, + "c4": 6.417013407304677, + "c5": 4.8127600554784955, + "c6": 3.2085067036523385, + "c7": 1.6042533518261572 }, "rgb": [222, 0, 59] }, @@ -470616,23 +470616,23 @@ "year": 1851, "resistanceReported": false, "duration": 17020800, - "curveSeeds": { - "c1": 2.7371232897641242, - "c2": 16.30322334853747, - "c3": 20.904542769412405, - "c4": -15.292759573920897, - "c5": -27.012760744519525, - "c6": 0.21570236784194208, - "c7": 26.2416333547846 + "points": { + "c1": 25.71624773748142, + "c2": 26.66028000462609, + "c3": 13.824017995723036, + "c4": 18.59024744199237, + "c5": -0.6346112426524044, + "c6": 24.561890595232565, + "c7": -17.825945922693812 }, - "vertexSeeds": { - "c1": 14.194430881825241, - "c2": 14.178127815180293, - "c3": 13.34016774155144, - "c4": 14.377559384401085, - "c5": 13.850147037177596, - "c6": 13.233872656462992, - "c7": 14.005260098208847 + "offsets": { + "c1": 24.07766990291262, + "c2": 20.63800277392511, + "c3": 17.198335644937597, + "c4": 13.758668515950085, + "c5": 10.319001386962572, + "c6": 6.879334257975024, + "c7": 3.439667128987512 }, "rgb": [222, 0, 59] }, @@ -470643,23 +470643,23 @@ "year": 1851, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": 25.078967244115113, - "c2": 25.974630673854143, - "c3": 12.796028857120028, - "c4": 22.615503853001044, - "c5": -4.061454262289278, - "c6": -33.37435334508928, - "c7": 5.041926682312898 + "points": { + "c1": -36.31669270333867, + "c2": 12.969561036969061, + "c3": 1.1734650042472197, + "c4": -12.049087443798765, + "c5": -29.352754902674825, + "c6": -11.802169952985931, + "c7": 18.335952793041848 }, - "vertexSeeds": { - "c1": 14.632099800826243, - "c2": 12.756583647901614, - "c3": 14.08473867892023, - "c4": 12.93324066173821, - "c5": 14.241339840491289, - "c6": 13.57077516065362, - "c7": 13.273120624123784 + "offsets": { + "c1": 25.016181229773466, + "c2": 21.442441054091532, + "c3": 17.868700878409623, + "c4": 14.294960702727689, + "c5": 10.721220527045777, + "c6": 7.1474803513638445, + "c7": 3.573740175681934 }, "rgb": [222, 0, 59] }, @@ -470670,23 +470670,23 @@ "year": 1851, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -13.13048035622111, - "c2": 16.82000618730399, - "c3": -32.25923096841345, - "c4": 2.247372571919861, - "c5": 17.648160269738852, - "c6": -17.888806550722954, - "c7": -3.970671885667194 + "points": { + "c1": 11.89761627874639, + "c2": -20.94974278413387, + "c3": -33.83293535082421, + "c4": -21.530506193828714, + "c5": 19.736839409019183, + "c6": -36.574506769027664, + "c7": -35.25239361359361 }, - "vertexSeeds": { - "c1": 15.805354732987734, - "c2": 16.5971732537826, - "c3": 14.429300238333916, - "c4": 16.369391183397294, - "c5": 15.97178360460109, - "c6": 16.157152528439642, - "c7": 14.025527273848123 + "offsets": { + "c1": 27.702265372168284, + "c2": 23.744798890429948, + "c3": 19.787332408691636, + "c4": 15.829865926953298, + "c5": 11.872399445214963, + "c6": 7.914932963476649, + "c7": 3.957466481738313 }, "rgb": [58, 15, 49] }, @@ -470697,23 +470697,23 @@ "year": 1851, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -25.776320873559463, - "c2": -19.599273553451013, - "c3": -24.978814804954588, - "c4": -17.0488887848596, - "c5": -27.34063744682756, - "c6": 13.65795299645692, - "c7": 30.41187883140914 + "points": { + "c1": -30.09724294350742, + "c2": 14.018121389136894, + "c3": -11.604262808589098, + "c4": 10.697361097185492, + "c5": -29.55205010375839, + "c6": -4.202724883302849, + "c7": -25.896566255262925 }, - "vertexSeeds": { - "c1": 16.0023152636521, - "c2": 14.34981107818383, - "c3": 14.37030596466862, - "c4": 16.82784727512368, - "c5": 15.789089942851508, - "c6": 16.840385089953752, - "c7": 16.027313428861934 + "offsets": { + "c1": 28.09061488673139, + "c2": 24.077669902912618, + "c3": 20.06472491909385, + "c4": 16.05177993527508, + "c5": 12.038834951456309, + "c6": 8.02588996763754, + "c7": 4.01294498381877 }, "rgb": [77, 76, 132] }, @@ -470724,23 +470724,23 @@ "year": 1851, "resistanceReported": false, "duration": 23587200, - "curveSeeds": { - "c1": -21.055486920402032, - "c2": 16.23500130911939, - "c3": -20.55527663062613, - "c4": -1.0828929266091478, - "c5": 20.600198196086914, - "c6": 5.494939659482327, - "c7": 28.138583022935677 + "points": { + "c1": 34.2084613260965, + "c2": -12.691044625131067, + "c3": -27.542004242926833, + "c4": 25.297180442104114, + "c5": -33.6242364581031, + "c6": 26.543869343697835, + "c7": 37.31098031449831 }, - "vertexSeeds": { - "c1": 8.498062307971246, - "c2": 8.344915763739726, - "c3": 8.650152312578061, - "c4": 8.316364288131002, - "c5": 8.086204019147246, - "c6": 8.191222109289725, - "c7": 8.44649202222601 + "offsets": { + "c1": 14.466019417475728, + "c2": 12.39944521497919, + "c3": 10.332871012482654, + "c4": 8.266296809986134, + "c5": 6.199722607489595, + "c6": 4.133148404993058, + "c7": 2.0665742024965374 }, "rgb": [222, 0, 59] }, @@ -470751,23 +470751,23 @@ "year": 1851, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": 26.74082832332958, - "c2": -19.998153469469628, - "c3": -23.549813580733016, - "c4": -11.183677620379278, - "c5": 15.435811584363123, - "c6": -9.423747439781682, - "c7": 13.642436456524138 + "points": { + "c1": -7.048271603556909, + "c2": 3.7284441524407654, + "c3": -7.998509207048649, + "c4": 18.414654816035807, + "c5": -10.283641616973718, + "c6": 21.535945012615997, + "c7": -24.846824032459466 }, - "vertexSeeds": { - "c1": 0.019430051813471502, - "c2": 0.019430051813471502, - "c3": 0.019430051813471502, - "c4": 0.019430051813471502, - "c5": 0.019430051813471502, - "c6": 0.019430051813471502, - "c7": 0.019430051813471502 + "offsets": { + "c1": null, + "c2": null, + "c3": null, + "c4": null, + "c5": null, + "c6": null, + "c7": null }, "rgb": [86, 146, 138] }, @@ -470778,23 +470778,23 @@ "year": 1851, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": 12.486002492196633, - "c2": 11.202643557666885, - "c3": -0.5768381290650062, - "c4": -8.717334612563379, - "c5": 5.341224319987106, - "c6": -8.008960685820457, - "c7": 4.448159280537286 + "points": { + "c1": 13.981962968382618, + "c2": 4.202457147014787, + "c3": -0.4895169175795395, + "c4": 3.3536359699885985, + "c5": -9.643076800768238, + "c6": -1.200687337403373, + "c7": -16.464356623268067 }, - "vertexSeeds": { - "c1": 12.141005621800193, - "c2": 10.532558399894953, - "c3": 10.638573850935892, - "c4": 12.256661085115251, - "c5": 10.34822076416364, - "c6": 11.378711485636154, - "c7": 10.75428285138897 + "offsets": { + "c1": 20.711974110032365, + "c2": 17.753120665742028, + "c3": 14.79426722145169, + "c4": 11.835413777161351, + "c5": 8.876560332871014, + "c6": 5.917706888580676, + "c7": 2.958853444290338 }, "rgb": [58, 15, 49] }, @@ -470805,23 +470805,23 @@ "year": 1851, "resistanceReported": false, "duration": 18489600, - "curveSeeds": { - "c1": -20.349538780764725, - "c2": -10.845227299853526, - "c3": 13.355427990279214, - "c4": 24.52635341400151, - "c5": -24.33396007595899, - "c6": -27.726546778561836, - "c7": -4.993296985468319 + "points": { + "c1": -23.09768817437069, + "c2": -25.15408160811417, + "c3": 19.497855459954692, + "c4": -23.61795971172831, + "c5": -22.796461551386138, + "c6": 24.7632238227489, + "c7": -0.04430977071815789 }, - "vertexSeeds": { - "c1": 12.316748937903764, - "c2": 12.913008234728357, - "c3": 13.892750468754828, - "c4": 12.244722663796068, - "c5": 13.667093493194425, - "c6": 13.693416010225697, - "c7": 12.751275150322648 + "offsets": { + "c1": 23.980582524271846, + "c2": 20.55478502080444, + "c3": 17.128987517337038, + "c4": 13.703190013869614, + "c5": 10.27739251040221, + "c6": 6.851595006934807, + "c7": 3.4257975034674035 }, "rgb": [222, 0, 59] }, @@ -470832,23 +470832,23 @@ "year": 1851, "resistanceReported": false, "duration": 10540800, - "curveSeeds": { - "c1": -12.406685433743618, - "c2": 16.346796368507903, - "c3": 4.724395339136024, - "c4": 20.86670344560123, - "c5": 8.597958191765901, - "c6": -0.6671440229319501, - "c7": 9.347135097205456 + "points": { + "c1": 9.973995702317083, + "c2": -9.000052809780698, + "c3": -16.93869719122653, + "c4": 16.935722536734048, + "c5": -15.815055184555892, + "c6": 22.402463185053726, + "c7": -6.599680129996518 }, - "vertexSeeds": { - "c1": 1.2950453962529345, - "c2": 1.2674987641155773, - "c3": 1.2441801456200412, - "c4": 1.3176600236474876, - "c5": 1.2564223416280251, - "c6": 1.2855108483294098, - "c7": 1.2241133704018796 + "offsets": { + "c1": 2.26537216828479, + "c2": 1.9417475728155325, + "c3": 1.6181229773462806, + "c4": 1.2944983818770235, + "c5": 0.9708737864077662, + "c6": 0.6472491909385145, + "c7": 0.32362459546925726 }, "rgb": [222, 0, 59] }, @@ -470859,23 +470859,23 @@ "year": 1852, "resistanceReported": false, "duration": 27129600, - "curveSeeds": { - "c1": 25.122300856155043, - "c2": -34.119010156561814, - "c3": -5.759988094170055, - "c4": 35.07584597208491, - "c5": -31.647321923220233, - "c6": 19.56751514563217, - "c7": 26.322144800583025 + "points": { + "c1": 9.862394007764912, + "c2": 19.92575298583717, + "c3": -22.860220502665, + "c4": 11.248185708841199, + "c5": -3.5373548987328647, + "c6": 3.247617410207127, + "c7": 41.37149397514424 }, - "vertexSeeds": { - "c1": 12.465669164396699, - "c2": 12.947144452318387, - "c3": 14.464640416505247, - "c4": 14.393038586996628, - "c5": 14.44159221748146, - "c6": 13.421789117501422, - "c7": 14.085374152449319 + "offsets": { + "c1": 24.627831715210355, + "c2": 21.109570041608873, + "c3": 17.59130836800739, + "c4": 14.07304669440593, + "c5": 10.554785020804449, + "c6": 7.036523347202965, + "c7": 3.5182616736014825 }, "rgb": [58, 15, 49] }, @@ -470886,23 +470886,23 @@ "year": 1852, "resistanceReported": false, "duration": 19267200, - "curveSeeds": { - "c1": -27.578669741603655, - "c2": -25.603985389209896, - "c3": -28.65932944980034, - "c4": -26.087358404875324, - "c5": -20.6492855936247, - "c6": 18.54858562040829, - "c7": -19.27478788606333 + "points": { + "c1": -8.738093530965195, + "c2": -20.450945337147424, + "c3": 6.724082804486038, + "c4": -29.800674902734208, + "c5": 5.631085281385353, + "c6": 30.26966724558823, + "c7": -24.081379040562584 }, - "vertexSeeds": { - "c1": 17.828696393587087, - "c2": 17.328314077190367, - "c3": 17.331889389185864, - "c4": 17.701731808880222, - "c5": 16.998518187868083, - "c6": 18.024147352577984, - "c7": 17.237113365180818 + "offsets": { + "c1": 32.362459546925564, + "c2": 27.739251040221905, + "c3": 23.11604253351827, + "c4": 18.49283402681461, + "c5": 13.869625520110953, + "c6": 9.246417013407294, + "c7": 4.623208506703659 }, "rgb": [86, 146, 138] }, @@ -470913,23 +470913,23 @@ "year": 1851, "resistanceReported": false, "duration": 9676800, - "curveSeeds": { - "c1": -3.165894642861847, - "c2": 5.1611933231614735, - "c3": -3.3851452052611215, - "c4": 19.31798955439043, - "c5": -3.449444309793982, - "c6": -11.226436311251291, - "c7": -19.42140249160951 + "points": { + "c1": -14.26349479007274, + "c2": -9.655610181371621, + "c3": -8.190431438850634, + "c4": -5.929653847837486, + "c5": 12.941975943063447, + "c6": 20.016283488705014, + "c7": 1.1483320713149858 }, - "vertexSeeds": { - "c1": 15.350734993691365, - "c2": 15.262069494640627, - "c3": 15.398756160819962, - "c4": 15.255741215816549, - "c5": 15.395664609708033, - "c6": 15.843664894537685, - "c7": 15.30348379128914 + "offsets": { + "c1": 26.537216828478964, + "c2": 22.74618585298197, + "c3": 18.955154877484976, + "c4": 15.16412390198798, + "c5": 11.373092926490985, + "c6": 7.58206195099399, + "c7": 3.791030975496995 }, "rgb": [222, 0, 59] }, @@ -470940,23 +470940,23 @@ "year": 1852, "resistanceReported": false, "duration": 18403200, - "curveSeeds": { - "c1": 25.892613004838115, - "c2": -24.294971311750157, - "c3": -7.948371557118342, - "c4": 2.47934387483949, - "c5": -15.992330763321851, - "c6": 6.750345457652475, - "c7": 9.915070248865174 + "points": { + "c1": 19.297716651969253, + "c2": -6.112170004944627, + "c3": 8.04752681265299, + "c4": -20.70826123081983, + "c5": -22.895525190736976, + "c6": -29.08789240787366, + "c7": -6.227588344350135 }, - "vertexSeeds": { - "c1": 9.470016106934626, - "c2": 10.160651262976458, - "c3": 9.905273818011597, - "c4": 9.62069272894263, - "c5": 10.145197184407518, - "c6": 9.405942533218287, - "c7": 9.825585244285325 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.86823855755895, + "c3": 12.390198797965796, + "c4": 9.912159038372645, + "c5": 7.434119278779475, + "c6": 4.956079519186304, + "c7": 2.478039759593152 }, "rgb": [77, 76, 132] }, @@ -470967,23 +470967,23 @@ "year": 1852, "resistanceReported": false, "duration": 13132800, - "curveSeeds": { - "c1": -17.6663031392504, - "c2": -6.191067712040006, - "c3": 0.44198297553554866, - "c4": -13.993558489772962, - "c5": 4.57825962014919, - "c6": 15.539030512819117, - "c7": -17.195562040291566 + "points": { + "c1": -18.366231490755833, + "c2": 1.9138659271778522, + "c3": 18.175815742256596, + "c4": 22.42609841396896, + "c5": 5.05628787453746, + "c6": 22.19664229321259, + "c7": -15.3623263866183 }, - "vertexSeeds": { - "c1": 6.894307965900042, - "c2": 6.867834235519665, - "c3": 7.393540656046861, - "c4": 7.191132304530966, - "c5": 7.060523462341842, - "c6": 7.151802226694194, - "c7": 7.16045120196449 + "offsets": { + "c1": 12.588996763754047, + "c2": 10.790568654646325, + "c3": 8.992140545538605, + "c4": 7.193712436430883, + "c5": 5.3952843273231625, + "c6": 3.5968562182154415, + "c7": 1.7984281091077208 }, "rgb": [222, 0, 59] }, @@ -470994,23 +470994,23 @@ "year": 1852, "resistanceReported": false, "duration": 21168000, - "curveSeeds": { - "c1": -10.012249370060434, - "c2": -5.297977954601894, - "c3": 20.332348266702873, - "c4": -13.179576933028418, - "c5": -8.370631591227212, - "c6": 30.877152712781324, - "c7": -22.021245261999887 + "points": { + "c1": 17.390798373316066, + "c2": 15.803828602194763, + "c3": 12.540516975128881, + "c4": 29.811480033565346, + "c5": -32.38058835187182, + "c6": -16.250737831426434, + "c7": 11.629089792799185 }, - "vertexSeeds": { - "c1": 10.643621605389063, - "c2": 10.530391838256824, - "c3": 9.961783488043823, - "c4": 10.258345893951272, - "c5": 10.412232007139147, - "c6": 10.654401015086655, - "c7": 10.223568061109477 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122062, + "c3": 12.713823393435025, + "c4": 10.171058714748028, + "c5": 7.628294036061031, + "c6": 5.0855293573740346, + "c7": 2.5427646786870173 }, "rgb": [77, 76, 132] }, @@ -471021,23 +471021,23 @@ "year": 1853, "resistanceReported": false, "duration": 15897600, - "curveSeeds": { - "c1": 22.069668278653435, - "c2": -16.32600963847191, - "c3": -10.638687050680698, - "c4": -3.230826168093561, - "c5": -14.996105847820552, - "c6": -20.4419573624414, - "c7": 18.421416307424646 + "points": { + "c1": 25.17388613301431, + "c2": 7.132751719096557, + "c3": 13.852467170314082, + "c4": 23.19502426896393, + "c5": -16.000567497434588, + "c6": 5.9077593102147254, + "c7": -28.77640424946468 }, - "vertexSeeds": { - "c1": 10.12847703350891, - "c2": 10.256604947401327, - "c3": 9.758538074769703, - "c4": 9.624023772420365, - "c5": 10.22223954188482, - "c6": 9.979663142287452, - "c7": 10.277056799816473 + "offsets": { + "c1": 17.346278317152102, + "c2": 14.86823855755895, + "c3": 12.390198797965796, + "c4": 9.912159038372645, + "c5": 7.434119278779475, + "c6": 4.956079519186304, + "c7": 2.478039759593152 }, "rgb": [222, 0, 59] }, @@ -471048,23 +471048,23 @@ "year": 1853, "resistanceReported": true, "duration": 12268800, - "curveSeeds": { - "c1": -10.467388800035407, - "c2": -19.997746567899128, - "c3": -13.864918813864014, - "c4": 8.508801161310501, - "c5": 18.638420454342352, - "c6": -21.4034193373042, - "c7": -22.698231470716426 + "points": { + "c1": 23.35748180668231, + "c2": 2.3501700042508276, + "c3": -7.4839018990197665, + "c4": -5.875679180207353, + "c5": -6.292327534624995, + "c6": 18.044385195538815, + "c7": 23.209819491816056 }, - "vertexSeeds": { - "c1": 23.448796419112067, - "c2": 25.285463028197466, - "c3": 26.121634002294197, - "c4": 22.94393556867938, - "c5": 24.583310614830207, - "c6": 24.49823869317136, - "c7": 22.989120885875863 + "offsets": { + "c1": 43.689320388349515, + "c2": 37.447988904299606, + "c3": 31.206657420249645, + "c4": 24.965325936199736, + "c5": 18.72399445214978, + "c6": 12.482662968099868, + "c7": 6.24133148404991 }, "rgb": [58, 15, 49] }, @@ -471075,23 +471075,23 @@ "year": 1853, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -20.93245106057963, - "c2": -12.725057172015216, - "c3": 1.8884161616885713, - "c4": 2.4376567143008785, - "c5": -8.087267712220768, - "c6": -18.78399513667334, - "c7": -0.66463791088702 + "points": { + "c1": 6.000777589369875, + "c2": -23.473214627465044, + "c3": 6.82165298731821, + "c4": -8.77908284249991, + "c5": 6.228002365914435, + "c6": 23.31141184391297, + "c7": -23.132343666279347 }, - "vertexSeeds": { - "c1": 26.21320099708764, - "c2": 27.208670647079135, - "c3": 27.251505882658783, - "c4": 28.64838955644764, - "c5": 26.77931427190693, - "c6": 26.10111925235276, - "c7": 26.379410166908542 + "offsets": { + "c1": 48.12297734627832, + "c2": 41.24826629681, + "c3": 34.37355524734169, + "c4": 27.498844197873318, + "c5": 20.624133148405, + "c6": 13.749422098936686, + "c7": 6.874711049468316 }, "rgb": [58, 15, 49] }, @@ -471102,23 +471102,23 @@ "year": 1853, "resistanceReported": false, "duration": 14860800, - "curveSeeds": { - "c1": -22.322448784944548, - "c2": 23.87112748640273, - "c3": 20.7977866549129, - "c4": 5.072850743072806, - "c5": 11.507814608297107, - "c6": -4.481596785284818, - "c7": -11.065325821601046 + "points": { + "c1": 21.858068890180324, + "c2": -19.52621361198863, + "c3": 14.225230607155222, + "c4": -19.32442085178335, + "c5": 27.298856740222245, + "c6": -9.182370412713226, + "c7": 8.055252204705003 }, - "vertexSeeds": { - "c1": 6.692573116038992, - "c2": 6.710213868460699, - "c3": 6.608639720989529, - "c4": 6.59124975377191, - "c5": 6.771435000633537, - "c6": 6.636483818711107, - "c7": 6.586862048089248 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077653, + "c3": 8.09061488673142, + "c4": 6.472491909385123, + "c5": 4.854368932038827, + "c6": 3.236245954692529, + "c7": 1.6181229773462968 }, "rgb": [77, 76, 132] }, @@ -471129,23 +471129,23 @@ "year": 1853, "resistanceReported": false, "duration": 29376000, - "curveSeeds": { - "c1": -35.54183126242447, - "c2": 17.126465420502115, - "c3": -0.9587271296404722, - "c4": -22.559165815012864, - "c5": -13.733239553805479, - "c6": 0.2010005402118935, - "c7": 42.11373520653358 + "points": { + "c1": 25.548168025076798, + "c2": -39.108343573894444, + "c3": -12.45098984335523, + "c4": 8.35717759685599, + "c5": 10.034434577549803, + "c6": -31.59846840205973, + "c7": -1.5821851063248005 }, - "vertexSeeds": { - "c1": 11.84642423991185, - "c2": 12.111957589334041, - "c3": 12.436099518777654, - "c4": 11.994410549290512, - "c5": 12.89050816479439, - "c6": 12.553341934691476, - "c7": 12.413388641207742 + "offsets": { + "c1": 21.58576051779935, + "c2": 18.502080443828024, + "c3": 15.418400369856663, + "c4": 12.334720295885338, + "c5": 9.251040221914012, + "c6": 6.1673601479426505, + "c7": 3.0836800739713253 }, "rgb": [222, 0, 59] }, @@ -471156,23 +471156,23 @@ "year": 1854, "resistanceReported": false, "duration": 41299200, - "curveSeeds": { - "c1": -37.921977539691646, - "c2": -40.088983703637275, - "c3": -32.73079662838121, - "c4": 26.617476914382806, - "c5": 38.43756986414866, - "c6": 9.215804523190343, - "c7": -41.37280545938925 + "points": { + "c1": -37.132446453772175, + "c2": 16.073802093479372, + "c3": 48.96659333044015, + "c4": -8.572621306477927, + "c5": 22.071745272006154, + "c6": 39.725987230551226, + "c7": -42.40837636138983 }, - "vertexSeeds": { - "c1": 8.611659082425394, - "c2": 9.506392579635307, - "c3": 9.060391790323328, - "c4": 7.818057359982199, - "c5": 8.585177881121353, - "c6": 9.094424916822629, - "c7": 8.922734335792248 + "offsets": { + "c1": 16.181229773462782, + "c2": 13.86962552011095, + "c3": 11.558021266759132, + "c4": 9.246417013407301, + "c5": 6.93481276005548, + "c6": 4.623208506703651, + "c7": 2.3116042533518204 }, "rgb": [77, 76, 132] }, @@ -471183,23 +471183,23 @@ "year": 1853, "resistanceReported": false, "duration": 28857600, - "curveSeeds": { - "c1": -30.10928548394843, - "c2": 36.21663979570782, - "c3": -11.002164418285748, - "c4": -4.194282422403219, - "c5": 15.238432713171726, - "c6": -28.53318033758633, - "c7": -25.988507481752684 + "points": { + "c1": -38.25454734138974, + "c2": -6.6819373500225225, + "c3": -23.18187499219414, + "c4": 34.198969989668285, + "c5": 36.68639447230561, + "c6": 40.54437181537911, + "c7": 22.40533083871928 }, - "vertexSeeds": { - "c1": 7.978409604839781, - "c2": 7.949178975369267, - "c3": 8.370653015165036, - "c4": 8.418588450641318, - "c5": 8.429475409604025, - "c6": 8.43666901308124, - "c7": 8.105227870472122 + "offsets": { + "c1": 14.401294498381878, + "c2": 12.343966712898746, + "c3": 10.286638927415616, + "c4": 8.229311141932504, + "c5": 6.171983356449373, + "c6": 4.114655570966243, + "c7": 2.0573277854831304 }, "rgb": [77, 76, 132] }, @@ -471210,23 +471210,23 @@ "year": 1854, "resistanceReported": false, "duration": 26265600, - "curveSeeds": { - "c1": -0.2692892177743218, - "c2": -5.493912261986516, - "c3": -20.819770770007565, - "c4": -34.536854457572524, - "c5": 27.595513734742696, - "c6": 30.463197965366646, - "c7": 26.724753845283757 + "points": { + "c1": -10.05028302661971, + "c2": -39.078154483453545, + "c3": -29.95816582032527, + "c4": -34.955317506300034, + "c5": -8.595817391528541, + "c6": 24.966929658734585, + "c7": 25.87593118402306 }, - "vertexSeeds": { - "c1": 1.7257010513868427, - "c2": 1.5534326310954134, - "c3": 1.498188384086365, - "c4": 1.6173028447844124, - "c5": 1.6774028210060203, - "c6": 1.583863145610635, - "c7": 1.5450319284957015 + "offsets": { + "c1": 2.9449838187702264, + "c2": 2.5242718446601944, + "c3": 2.1035598705501624, + "c4": 1.6828478964401306, + "c5": 1.2621359223300959, + "c6": 0.8414239482200638, + "c7": 0.4207119741100319 }, "rgb": [238, 201, 159] }, @@ -471237,23 +471237,23 @@ "year": 1854, "resistanceReported": false, "duration": 10022400, - "curveSeeds": { - "c1": 0.38257589956871385, - "c2": 19.941611308899233, - "c3": 14.736400007899519, - "c4": -13.336995579132566, - "c5": 10.740768348137472, - "c6": -19.074825052658074, - "c7": 5.158846914037703 + "points": { + "c1": 1.0071948892904352, + "c2": 15.555764555647535, + "c3": -2.576694579687665, + "c4": -17.71334339231317, + "c5": 5.88689098805763, + "c6": 13.33150035769792, + "c7": -6.859138272961779 }, - "vertexSeeds": { - "c1": 11.544573596700012, - "c2": 11.53640702080291, - "c3": 11.61317035743161, - "c4": 11.622355899530113, - "c5": 11.405390685703814, - "c6": 11.616824135456943, - "c7": 11.482973753996072 + "offsets": { + "c1": 19.41747572815534, + "c2": 16.643550624133088, + "c3": 13.869625520110976, + "c4": 11.095700416088725, + "c5": 8.321775312066613, + "c6": 5.547850208044363, + "c7": 2.7739251040221125 }, "rgb": [86, 146, 138] }, @@ -471264,23 +471264,23 @@ "year": 1854, "resistanceReported": false, "duration": 10368000, - "curveSeeds": { - "c1": -10.176756531040095, - "c2": 0.3994860996311118, - "c3": -8.975590784759047, - "c4": 19.468203591948857, - "c5": 5.01142933024828, - "c6": 17.980874344029097, - "c7": 2.0525509606130576 + "points": { + "c1": -17.493578657318317, + "c2": 5.120820844289323, + "c3": -23.108992030229324, + "c4": -8.421360862659027, + "c5": -7.683371891248118, + "c6": 14.064117167457852, + "c7": -8.46629878115003 }, - "vertexSeeds": { - "c1": 8.683246099882956, - "c2": 8.498405785890396, - "c3": 8.294114795582875, - "c4": 8.716199623067062, - "c5": 8.284248034161793, - "c6": 8.308740078690489, - "c7": 8.21432153649208 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099858, + "c3": 10.402219140083211, + "c4": 8.321775312066565, + "c5": 6.241331484049918, + "c6": 4.160887656033293, + "c7": 2.0804438280166466 }, "rgb": [77, 76, 132] }, @@ -471291,23 +471291,23 @@ "year": 1854, "resistanceReported": false, "duration": 13910400, - "curveSeeds": { - "c1": 11.609909729417609, - "c2": 4.4961545735250645, - "c3": 10.327385034310915, - "c4": -14.005715635831834, - "c5": 10.782405088505918, - "c6": 16.76729809985767, - "c7": 8.419543446647594 + "points": { + "c1": -14.305809607756215, + "c2": 5.762007447913334, + "c3": 16.40321137162004, + "c4": 22.992790161370813, + "c5": -8.584482978094556, + "c6": 9.869662041698703, + "c7": -22.294292976118992 }, - "vertexSeeds": { - "c1": 14.029455026250703, - "c2": 14.198837164709683, - "c3": 14.062623831342396, - "c4": 14.218584374930488, - "c5": 14.659871823376339, - "c6": 14.001562414056007, - "c7": 13.90949701375864 + "offsets": { + "c1": 24.466019417475728, + "c2": 20.970873786407775, + "c3": 17.47572815533982, + "c4": 13.980582524271869, + "c5": 10.485436893203861, + "c6": 6.990291262135907, + "c7": 3.4951456310679534 }, "rgb": [58, 15, 49] }, @@ -471318,23 +471318,23 @@ "year": 1855, "resistanceReported": false, "duration": 11491200, - "curveSeeds": { - "c1": 17.26539684167794, - "c2": -15.674388997840563, - "c3": 18.731983127289176, - "c4": -8.662523334435818, - "c5": 1.185397039632317, - "c6": 18.887512398103368, - "c7": -4.454191692869291 + "points": { + "c1": -23.42458342925802, + "c2": -22.90140437408192, + "c3": -13.720826530118206, + "c4": -14.619335152203137, + "c5": 23.625496064476096, + "c6": 19.56599419947215, + "c7": 17.31727659709876 }, - "vertexSeeds": { - "c1": 11.35834624714505, - "c2": 10.77616388669452, - "c3": 10.147604513985591, - "c4": 10.474048067731212, - "c5": 10.104613229767327, - "c6": 10.317314939101093, - "c7": 10.78962383185198 + "offsets": { + "c1": 19.80582524271845, + "c2": 16.97642163661582, + "c3": 14.147018030513173, + "c4": 11.317614424410548, + "c5": 8.4882108183079, + "c6": 5.658807212205274, + "c7": 2.829403606102648 }, "rgb": [238, 201, 159] }, @@ -471345,23 +471345,23 @@ "year": 1858, "resistanceReported": false, "duration": 31536000, - "curveSeeds": { - "c1": 8.203522762684543, - "c2": -27.931961727101715, - "c3": 21.04444384487107, - "c4": 0.38719724484289486, - "c5": -10.395523155354937, - "c6": 13.675081350237143, - "c7": 6.690110956418614 + "points": { + "c1": 37.97440735833224, + "c2": -23.15766254209528, + "c3": 19.499509885184892, + "c4": 39.69045245960811, + "c5": 33.10754007398823, + "c6": 24.598606417029487, + "c7": -7.43160073830083 }, - "vertexSeeds": { - "c1": 9.278384306990374, - "c2": 10.049739849231303, - "c3": 9.446094250223133, - "c4": 9.634111111538436, - "c5": 9.098742305594113, - "c6": 9.231714024454881, - "c7": 10.296238580627882 + "offsets": { + "c1": 18.155339805825243, + "c2": 15.561719833564498, + "c3": 12.96809986130375, + "c4": 10.374479889043005, + "c5": 7.780859916782249, + "c6": 5.187239944521503, + "c7": 2.5936199722607456 }, "rgb": [77, 76, 132] }, @@ -471372,23 +471372,23 @@ "year": 1857, "resistanceReported": false, "duration": 11664000, - "curveSeeds": { - "c1": -22.58719291355047, - "c2": -16.408950576174767, - "c3": -8.646680170775829, - "c4": 2.595446497164282, - "c5": -15.191734529430537, - "c6": -21.63329230002759, - "c7": -5.559074211180121 + "points": { + "c1": -8.807485942773628, + "c2": 4.135752445694635, + "c3": -19.16991827229404, + "c4": 2.6249447151519085, + "c5": 23.94818975242018, + "c6": -2.4858240430726006, + "c7": -14.294120530580189 }, - "vertexSeeds": { - "c1": 8.442008284369724, - "c2": 8.296360282793941, - "c3": 8.513580278873354, - "c4": 8.020310151125795, - "c5": 8.359981181791468, - "c6": 8.104104417509332, - "c7": 8.046268270355393 + "offsets": { + "c1": 15.210355987055015, + "c2": 13.037447988904301, + "c3": 10.864539990753586, + "c4": 8.691631992602858, + "c5": 6.518723994452143, + "c6": 4.345815996301429, + "c7": 2.1729079981507144 }, "rgb": [238, 201, 159] }, @@ -471399,23 +471399,23 @@ "year": 1857, "resistanceReported": false, "duration": 15206400, - "curveSeeds": { - "c1": -13.963391136504326, - "c2": 10.618240379344964, - "c3": 24.883460195272402, - "c4": 9.958458106159117, - "c5": -11.242116689294608, - "c6": 18.053057354730537, - "c7": 3.1830640997330235 + "points": { + "c1": -7.107508720732902, + "c2": -6.7592602858060005, + "c3": -26.64659517227504, + "c4": -8.883333549907551, + "c5": 7.1715302918659525, + "c6": -3.222020601564818, + "c7": 4.468362978794243 }, - "vertexSeeds": { - "c1": 7.907731690898564, - "c2": 9.671335163846466, - "c3": 10.278592724494928, - "c4": 8.999923102964356, - "c5": 8.324023294301131, - "c6": 10.26188838474678, - "c7": 8.743618959212963 + "offsets": { + "c1": 17.313915857605178, + "c2": 14.840499306518723, + "c3": 12.367082755432268, + "c4": 9.893666204345813, + "c5": 7.420249653259359, + "c6": 4.946833102172903, + "c7": 2.473416551086455 }, "rgb": [77, 76, 132] }, @@ -471426,23 +471426,23 @@ "year": 1857, "resistanceReported": false, "duration": 17971200, - "curveSeeds": { - "c1": 28.73843046562206, - "c2": 14.720150625216448, - "c3": 3.439560254055074, - "c4": 22.363115943621565, - "c5": 6.7291233948527776, - "c6": -14.663391363140965, - "c7": 5.531580263985411 + "points": { + "c1": -0.4914361674705212, + "c2": 17.249555526239348, + "c3": 10.609127834804028, + "c4": -8.771641164583219, + "c5": -17.861633198918767, + "c6": 8.525396183938518, + "c7": -9.091113878932813 }, - "vertexSeeds": { - "c1": 22.911507033654335, - "c2": 11.949188475981728, - "c3": 12.598176889466167, - "c4": 4.542941611565758, - "c5": 17.658296323717575, - "c6": 10.014433320924535, - "c7": 13.134691410792843 + "offsets": { + "c1": 38.83495145631068, + "c2": 33.287101248266296, + "c3": 27.739251040221912, + "c4": 22.19140083217753, + "c5": 16.643550624133148, + "c6": 11.095700416088766, + "c7": 5.547850208044381 }, "rgb": [77, 76, 132] }, @@ -471453,23 +471453,23 @@ "year": 1857, "resistanceReported": false, "duration": 14428800, - "curveSeeds": { - "c1": -15.623883888928601, - "c2": -4.833532738081015, - "c3": 15.914357043361143, - "c4": 14.105665700751786, - "c5": 23.22937460135693, - "c6": -23.669809981624308, - "c7": -17.096099331395102 + "points": { + "c1": 2.707614797629457, + "c2": -5.798699767061059, + "c3": 25.82052223122892, + "c4": 24.609384412520953, + "c5": 16.0920980132394, + "c6": -11.581103270341416, + "c7": 19.299976185354517 }, - "vertexSeeds": { - "c1": 2.4496189062306915, - "c2": 2.5100653562258533, - "c3": 2.4298394392984886, - "c4": 2.5370618500961473, - "c5": 2.3596985467478766, - "c6": 2.5525619744905486, - "c7": 2.4182570421544907 + "offsets": { + "c1": 4.3042071197411005, + "c2": 3.68932038834951, + "c3": 3.0744336569579302, + "c4": 2.45954692556634, + "c5": 1.8446601941747607, + "c6": 1.22977346278317, + "c7": 0.614886731391585 }, "rgb": [58, 15, 49] }, @@ -471480,23 +471480,23 @@ "year": 1857, "resistanceReported": false, "duration": 18144000, - "curveSeeds": { - "c1": 9.21697481908253, - "c2": 5.605514280651754, - "c3": 21.837429068554137, - "c4": -23.435761949807578, - "c5": 4.336438861370958, - "c6": 26.325903196486898, - "c7": 0.8172907801426028 + "points": { + "c1": -10.98022939372704, + "c2": 13.141054840501553, + "c3": -3.813738669721385, + "c4": -26.006452655850723, + "c5": -12.978884673743899, + "c6": 21.775402035631494, + "c7": -14.843520894833407 }, - "vertexSeeds": { - "c1": 14.811235160269762, - "c2": 15.361032682765908, - "c3": 12.3559473190612, - "c4": 14.153798761973686, - "c5": 16.33154717096364, - "c6": 18.625962528137418, - "c7": 12.315674414332364 + "offsets": { + "c1": 31.3915857605178, + "c2": 26.90707350901526, + "c3": 22.42256125751272, + "c4": 17.938049006010168, + "c5": 13.453536754507624, + "c6": 8.969024503005084, + "c7": 4.484512251502542 }, "rgb": [58, 15, 49] }, @@ -471507,23 +471507,23 @@ "year": 1857, "resistanceReported": false, "duration": 13996800, - "curveSeeds": { - "c1": -8.166468577673818, - "c2": 5.646501303279798, - "c3": -21.540616168165055, - "c4": -11.15227627305172, - "c5": 4.804082979600736, - "c6": 14.127274755211253, - "c7": 2.922099347656932 + "points": { + "c1": 6.950971041811179, + "c2": 11.608453977238582, + "c3": -15.897567638930832, + "c4": 5.612373174263524, + "c5": -21.95308024293657, + "c6": -6.482745394224025, + "c7": 4.011279707210971 }, - "vertexSeeds": { - "c1": 3.8358663220116953, - "c2": 4.155331118059126, - "c3": 4.123712076181378, - "c4": 3.8010790058280324, - "c5": 3.8272118970878855, - "c6": 3.700766550691959, - "c7": 4.246855309524987 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.130374479889041, + "c3": 5.1086453999075365, + "c4": 4.086916319926027, + "c5": 3.0651872399445224, + "c6": 2.0434581599630137, + "c7": 1.0217290799815049 }, "rgb": [222, 0, 59] }, @@ -471534,23 +471534,23 @@ "year": 1857, "resistanceReported": false, "duration": 10195200, - "curveSeeds": { - "c1": 19.7383319524011, - "c2": -13.285814947433977, - "c3": 4.076991719599281, - "c4": 19.781628734964, - "c5": 19.11693976627389, - "c6": -0.3896362503039441, - "c7": -5.452576921792348 + "points": { + "c1": -10.658653578035127, + "c2": -11.572696494045667, + "c3": 18.06015449612705, + "c4": -8.805643995191549, + "c5": -4.030834471817247, + "c6": 0.9500421824275271, + "c7": -1.4822534505474962 }, - "vertexSeeds": { - "c1": 3.7092746254135984, - "c2": 3.6272686923227715, - "c3": 3.729992650984794, - "c4": 3.6582232128371976, - "c5": 3.703765582219512, - "c6": 3.70596892763703, - "c7": 3.728037219701847 + "offsets": { + "c1": 6.2459546925566345, + "c2": 5.353675450762825, + "c3": 4.461396208969016, + "c4": 3.569116967175207, + "c5": 2.6768377253814273, + "c6": 1.7845584835876185, + "c7": 0.8922792417938092 }, "rgb": [58, 15, 49] }, @@ -471561,23 +471561,23 @@ "year": 1857, "resistanceReported": false, "duration": 9331200, - "curveSeeds": { - "c1": -18.015506506656934, - "c2": 4.038856270693508, - "c3": -14.091561342229594, - "c4": -4.5009056669748215, - "c5": 14.90089244179427, - "c6": -7.266774283020487, - "c7": -8.213411641366738 + "points": { + "c1": -1.9600555424122383, + "c2": -0.20589145381951113, + "c3": -22.081111652790774, + "c4": -14.273135205686287, + "c5": -7.710629080917101, + "c6": -11.323366986529159, + "c7": -13.675958427503609 }, - "vertexSeeds": { - "c1": 4.146146969706965, - "c2": 4.124897578211283, - "c3": 4.141127593861049, - "c4": 4.13037378393098, - "c5": 4.190029818678867, - "c6": 4.250040598345237, - "c7": 4.2179450594615595 + "offsets": { + "c1": 7.15210355987055, + "c2": 6.1303744798890465, + "c3": 5.108645399907543, + "c4": 4.08691631992604, + "c5": 3.065187239944536, + "c6": 2.043458159963007, + "c7": 1.0217290799815035 }, "rgb": [222, 0, 59] }, @@ -471588,23 +471588,23 @@ "year": 1857, "resistanceReported": false, "duration": 6652800, - "curveSeeds": { - "c1": 8.293475955316975, - "c2": 4.239234150302877, - "c3": 15.031955357650215, - "c4": 0.53857299273891, - "c5": -1.1165408895552424, - "c6": -1.0836143408444379, - "c7": -13.781560900584337 + "points": { + "c1": 12.024784973381653, + "c2": 9.870153894958396, + "c3": -18.807779954127295, + "c4": -9.428844494933653, + "c5": -11.642288273418728, + "c6": -0.2261783656168319, + "c7": -16.85890979516704 }, - "vertexSeeds": { - "c1": 9.029690695893265, - "c2": 9.280453847103239, - "c3": 9.90313068112809, - "c4": 9.230093267397477, - "c5": 9.51887243477207, - "c6": 9.018550274477168, - "c7": 8.734020534579598 + "offsets": { + "c1": 17.57281553398058, + "c2": 15.062413314840507, + "c3": 12.552011095700411, + "c4": 10.041608876560327, + "c5": 7.531206657420243, + "c6": 5.020804438280169, + "c7": 2.5104022191400737 }, "rgb": [77, 76, 132] }, @@ -471615,23 +471615,23 @@ "year": 1857, "resistanceReported": false, "duration": 8640000, - "curveSeeds": { - "c1": 15.283891421004164, - "c2": 12.678927132120961, - "c3": -2.6994352135768693, - "c4": -15.406588597474851, - "c5": -3.5259264152519183, - "c6": -19.130159039838503, - "c7": 13.645596124242509 + "points": { + "c1": 15.39075535807995, + "c2": 14.410504486279898, + "c3": -8.78004140929538, + "c4": 7.875377032938328, + "c5": -19.91185200018727, + "c6": 6.86288094353343, + "c7": -16.73424666530746 }, - "vertexSeeds": { - "c1": 5.09214292364369, - "c2": 5.649439270308756, - "c3": 5.671493331325601, - "c4": 5.401470887449236, - "c5": 5.283542968011293, - "c6": 5.122610912403952, - "c7": 5.4189004109400996 + "offsets": { + "c1": 9.70873786407767, + "c2": 8.321775312066567, + "c3": 6.93481276005548, + "c4": 5.547850208044379, + "c5": 4.160887656033291, + "c6": 2.7739251040221893, + "c7": 1.3869625520110878 }, "rgb": [77, 76, 132] }, @@ -471642,23 +471642,23 @@ "year": 1858, "resistanceReported": false, "duration": 13737600, - "curveSeeds": { - "c1": 23.668190954491283, - "c2": -23.05831460574824, - "c3": -6.617284823064356, - "c4": -15.418527510246793, - "c5": 2.1399168466542413, - "c6": 19.79515752412151, - "c7": -24.799236596618357 + "points": { + "c1": 11.091642131178038, + "c2": -15.132361673892015, + "c3": -6.599551159134073, + "c4": -21.999992872966004, + "c5": -19.703608110976443, + "c6": 8.202151193409836, + "c7": -13.662601894067931 }, - "vertexSeeds": { - "c1": 10.415520470295778, - "c2": 9.857856879538772, - "c3": 9.98444055456532, - "c4": 10.33582528498485, - "c5": 12.040527451194324, - "c6": 12.385928235619339, - "c7": 11.273514529781265 + "offsets": { + "c1": 21.16504854368932, + "c2": 18.14147018030513, + "c3": 15.117891816920944, + "c4": 12.094313453536753, + "c5": 9.070735090152565, + "c6": 6.047156726768376, + "c7": 3.023578363384188 }, "rgb": [86, 146, 138] }, @@ -471669,23 +471669,23 @@ "year": 1858, "resistanceReported": false, "duration": 12182400, - "curveSeeds": { - "c1": 2.7936880777204536, - "c2": -0.6510417172744063, - "c3": -21.231386226407583, - "c4": 13.703927939367091, - "c5": 13.546802595194414, - "c6": -14.157421639502248, - "c7": -18.224050388742185 + "points": { + "c1": 18.89430752578584, + "c2": 18.452078974524596, + "c3": 11.321923296150587, + "c4": -18.295616735042586, + "c5": 4.986887040431977, + "c6": 10.628358883776535, + "c7": 14.41786812542599 }, - "vertexSeeds": { - "c1": 8.42240287146108, - "c2": 9.091560140152186, - "c3": 9.993256337547308, - "c4": 9.359625230641665, - "c5": 8.99590630396972, - "c6": 7.767482583320367, - "c7": 10.090658376678164 + "offsets": { + "c1": 17.249190938511326, + "c2": 14.785020804438279, + "c3": 12.320850670365234, + "c4": 9.856680536292187, + "c5": 7.3925104022191395, + "c6": 4.928340268146093, + "c7": 2.4641701340730466 }, "rgb": [86, 146, 138] }, @@ -471696,23 +471696,23 @@ "year": 1858, "resistanceReported": false, "duration": 18316800, - "curveSeeds": { - "c1": -26.277987991812598, - "c2": 17.419497899596053, - "c3": 26.802593575655507, - "c4": -18.615972867805915, - "c5": -13.423170477318731, - "c6": -21.66175444305347, - "c7": 27.771267438358272 + "points": { + "c1": -6.959725334632573, + "c2": -28.18461901865753, + "c3": -4.999144128268121, + "c4": 15.00696494940535, + "c5": 20.450224976761447, + "c6": 14.996874632495853, + "c7": -18.033740179281168 }, - "vertexSeeds": { - "c1": 9.78052600422762, - "c2": 9.148414738963085, - "c3": 10.301899418604188, - "c4": 9.956289109886606, - "c5": 10.630283881920064, - "c6": 9.279886434633474, - "c7": 10.309937372077204 + "offsets": { + "c1": 18.155339805825243, + "c2": 15.561719833564498, + "c3": 12.96809986130375, + "c4": 10.374479889043005, + "c5": 7.780859916782249, + "c6": 5.187239944521503, + "c7": 2.5936199722607456 }, "rgb": [58, 15, 49] }, @@ -471723,23 +471723,23 @@ "year": 1858, "resistanceReported": false, "duration": 20995200, - "curveSeeds": { - "c1": -10.842460948828275, - "c2": -12.845549823327769, - "c3": -21.931544683774536, - "c4": 20.55938370401961, - "c5": -28.448667644768317, - "c6": 27.95715321184209, - "c7": 4.1402727523356475 + "points": { + "c1": 5.803787712819641, + "c2": -28.410246467759535, + "c3": -7.578779094754346, + "c4": -19.241100459968116, + "c5": 1.0560181011064032, + "c6": 7.692247034122531, + "c7": -23.37632201465928 }, - "vertexSeeds": { - "c1": 6.205365652732592, - "c2": 6.672381760772449, - "c3": 6.6015826458685956, - "c4": 6.166586337729396, - "c5": 6.537830361519561, - "c6": 6.463960506141304, - "c7": 6.7437902820970015 + "offsets": { + "c1": 11.326860841423949, + "c2": 9.708737864077676, + "c3": 8.090614886731384, + "c4": 6.472491909385111, + "c5": 4.854368932038838, + "c6": 3.2362459546925657, + "c7": 1.6181229773462726 }, "rgb": [58, 15, 49] }, @@ -471750,23 +471750,23 @@ "year": 1858, "resistanceReported": true, "duration": 16761600, - "curveSeeds": { - "c1": 12.76780652088624, - "c2": 9.747346670811652, - "c3": 13.460105476763417, - "c4": -18.21064943899122, - "c5": 14.973171921034648, - "c6": -16.562180702813833, - "c7": -23.63788417993492 + "points": { + "c1": 22.927799540521406, + "c2": 0.22497775873002723, + "c3": 10.946198582712647, + "c4": 16.7977679077093, + "c5": -13.641927126435725, + "c6": 23.48381985574506, + "c7": 15.259525882514673 }, - "vertexSeeds": { - "c1": 6.491613067887622, - "c2": 7.208553779357739, - "c3": 7.956305623817135, - "c4": 8.404111737040102, - "c5": 8.21095845369793, - "c6": 7.61347250508029, - "c7": 8.369394469193551 + "offsets": { + "c1": 14.563106796116504, + "c2": 12.482662968099861, + "c3": 10.402219140083213, + "c4": 8.321775312066572, + "c5": 6.2413314840499305, + "c6": 4.1608876560332835, + "c7": 2.0804438280166417 }, "rgb": [222, 0, 59] }, @@ -471777,23 +471777,23 @@ "year": 1858, "resistanceReported": false, "duration": 20131200, - "curveSeeds": { - "c1": 14.836578680944946, - "c2": 15.297160010653506, - "c3": 8.5896163814894, - "c4": -30.654949829277328, - "c5": -5.735070456536004, - "c6": 29.648414957787573, - "c7": 16.621755001687426 + "points": { + "c1": -29.899087688881927, + "c2": 17.76546039704469, + "c3": 13.342676969738484, + "c4": -32.99402756956192, + "c5": -13.898233055413431, + "c6": 21.61310769033215, + "c7": -28.90741102868605 }, - "vertexSeeds": { - "c1": 8.363856155492185, - "c2": 9.23222099748395, - "c3": 9.40625835371481, - "c4": 9.688289223718257, - "c5": 10.49243539599049, - "c6": 10.164035049255453, - "c7": 10.411265041538277 + "offsets": { + "c1": 17.79935275080906, + "c2": 15.256588072122057, + "c3": 12.713823393435042, + "c4": 10.171058714748032, + "c5": 7.628294036061028, + "c6": 5.085529357374024, + "c7": 2.542764678687012 }, "rgb": [58, 15, 49] }, @@ -471804,23 +471804,23 @@ "year": 1858, "resistanceReported": false, "duration": 12787200, - "curveSeeds": { - "c1": 13.355503222675033, - "c2": -17.253564931954017, - "c3": 2.7806084794358377, - "c4": 6.503554638078619, - "c5": 9.20807760004628, - "c6": 20.207038815338528, - "c7": -7.838931563617656 + "points": { + "c1": 12.041022641900476, + "c2": -12.871810161618225, + "c3": 8.407440263884638, + "c4": 3.7973722887966517, + "c5": 11.958659696083089, + "c6": 24.673337022264576, + "c7": 19.61495386505044 }, - "vertexSeeds": { - "c1": 13.39316996005041, - "c2": 11.460303461302352, - "c3": 13.800498207912854, - "c4": 14.009914871770832, - "c5": 12.127722996088082, - "c6": 11.082925015435585, - "c7": 11.245131625084227 + "offsets": { + "c1": 25.88996763754045, + "c2": 22.191400832177536, + "c3": 18.492834026814606, + "c4": 14.794267221451689, + "c5": 11.09570041608876, + "c6": 7.397133610725844, + "c7": 3.698566805362927 }, "rgb": [77, 76, 132] }, @@ -471831,23 +471831,23 @@ "year": 1858, "resistanceReported": false, "duration": 14083200, - "curveSeeds": { - "c1": 16.443781467975057, - "c2": 10.530399020334606, - "c3": 21.416848579457984, - "c4": 11.594121362546197, - "c5": -6.806066161157034, - "c6": 18.126490982174694, - "c7": 8.525784142973059 - }, - "vertexSeeds": { - "c1": 9.048620174031807, - "c2": 8.330214078329796, - "c3": 8.215434691945422, - "c4": 8.743434473123594, - "c5": 9.030101943755074, - "c6": 7.904500876608994, - "c7": 9.02499472086903 + "points": { + "c1": 25.103230613644264, + "c2": -4.124331047035785, + "c3": 23.669633304328762, + "c4": 15.504953608485046, + "c5": 3.137472349631217, + "c6": 9.895623938635815, + "c7": -22.4059707391669 + }, + "offsets": { + "c1": 15.76051779935275, + "c2": 13.509015256588066, + "c3": 11.257512713823395, + "c4": 9.00601017105871, + "c5": 6.754507628294038, + "c6": 4.503005085529355, + "c7": 2.251502542764672 }, "rgb": [222, 0, 59] } diff --git a/app/data/figures/brooks.json b/app/data/figures/brooks.json index 66ebec1a..f7589db7 100644 --- a/app/data/figures/brooks.json +++ b/app/data/figures/brooks.json @@ -251,9 +251,9 @@ "year": 0, "chapter": "brooks" }, - "autobiography": { + "autobiographyPLACEHOLDER": { "chapterTitle": "Brooks", - "fileName": "autobiography", + "fileName": "autobiographyPLACEHOLDER", "title": "", "artist": "", "caption": "", diff --git a/app/routes/chapters.brooks.tsx b/app/routes/chapters.brooks.tsx index 59840c82..5862f1a3 100644 --- a/app/routes/chapters.brooks.tsx +++ b/app/routes/chapters.brooks.tsx @@ -20,7 +20,7 @@ import FigureObj from "~/components/layout/FigureObj"; import figures from "~/data/figures/brooks.json"; import ClarksonSideBySideScrollytell from "~/components/brooks/ClarksonSideBySideScrollytell"; import { ClientOnly } from "remix-utils"; -import AllVoyages from "~/components/brooks/voyages/AllVoyages.client"; +import VoyagesVis from "~/components/brooks/voyages/VoyagesVis.client"; import { chapterMeta } from "~/utils"; import ChapterBody from "~/components/layout/ChapterBody"; import type { V2_MetaFunction } from "@remix-run/node"; @@ -869,7 +869,7 @@ export default function BrooksPage() { {() => ( - + )} diff --git a/app/types/voyage.ts b/app/types/voyage.ts index a495ae0f..76ce1f02 100644 --- a/app/types/voyage.ts +++ b/app/types/voyage.ts @@ -1,6 +1,6 @@ import type p5 from "p5"; -export type Seed = { +export type TPoint = { c1: number; c2: number; c3: number; @@ -10,7 +10,7 @@ export type Seed = { c7: number; }; -export type TVoyage = { +export type TVoyageData = { id: number; totalPeople: number; year: number; @@ -18,12 +18,12 @@ export type TVoyage = { mortalityRate: number; resistanceReported: boolean; rgb: Array; - curveSeeds: Seed; - vertexSeeds: Seed; + points: TPoint; + offsets: TPoint; }; -export type TVoyageYear = { - curveSeed: Seed; +export type TVoyage = { + points: TPoint; distanceLeft: number; distanceRight: number; duration: number; @@ -43,18 +43,10 @@ export type TVoyageYear = { rgb: Array; shapeSeed: number; totalPeople: number; - vertexSeed: Seed; + offsets: TPoint; width: number; year: number; - updateTransition: ( - lerpAmount: number, - nonResistanceStrokeWidth: number, - shapeSeed: number - ) => void; - updateMinMax: ( - minYear: number, - maxYear: number - ) => void; + updateMinMax: (minYear: number, maxYear: number) => void; show: () => void; updateP5Instance: (p5: p5) => void; }; diff --git a/public/images/brooks/autobiography.jpg b/public/images/brooks/autobiography.jpg deleted file mode 100644 index 884238c77d2138ff476825a14aab39a8b7f85b91..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 932765 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

T7UuLO0Vt-njvwLPBnh|v%Z596j04FQ0 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

H?xNHGXJEiVN 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

WE$a46k6z0}T-anc2~kOiTSh}yy+IhYR2)xe!4 zCjjFZZ~K;tiv?SzhIt2b1OYuj3I%g|sd9qP$OZA)i!8$}PE&1-;+-O$X0a@-i9V;bm$PY9Ja}lD{S{_pZ`J8%8&4rDxEz`s=${TPl zi#|_X#}XX3mP_#JjuLS7j~7CC67lyO%>fm$a|8xQaP+~u1^~M@Z;zPGD1f>IR^PH= z8Pg8yZuMC!a3M5CF({M;UO4)QIrOHx(Z#f=z0~Lw9ac`j+)#?=Zf-)ADBm^i2@{(N z>1M-LtR11eR4g|d+ngYqwhi10cT{lM6V+o+JLWx+j@=CWKf(hT%8ESCr0W+34kn3{ z%s&olEkxEKK{YT=hH9_y%Z;SX?iU{t&xoqKoZJm#>KC5abNtLaB4Zr$EzuVlCQLa< zCX1A-1QP}aU8t}!UVM~LC}PMN25G$pk}!RBzf zjqw7_%3V%!PK45>*7NFTHLvb^)S}EwGHP$!%3GsTO~8mU{{SMd@El@pRF}S=#`umn z_=70oZhI!PHQzASS?Sd2%&1z_Ic89Eeb3>Dz_3Eh%syhw#%0FTA25VF15_&W?iFF6 zg7bEZL~=XW^8}g+d|B0NEVIU_MM?m@f|fIqi1B5E#jB6mrk&(j?3i~MaSei2e%IYV zXrQz<@G!+KwAI6|4+#Sw@*}H;(Nc;G=)(@Y8M1VCJ|LGc0;x0s2MDK>>2_+yN0ynP zyWfpzg$8iJq^mPZnsX?P`;-+FBB7$W9cpJzWS63;&j)yp+ki^qG( zm?-*vWBP*eX?{{wu{-A}d z8$Qk)m1r#`;LaOj3bF#-h>AHOXjb7*+%b$b30hI-DLcxnZIYF%z+A;aum=nB%I;;i ziDnG8;N90!z;GtJ2RqfWx>K)3D_b*hCvt;LthNhA#@A&{jH)F)NWktB>? zZy8woTElMFa}+mD9E)tXx_BVX0bRLYAf+jR192BEX|oL`=%;D0FPt;ZJjx$M3NeHT z4bHa_piNrrYC^pS3_^=W+xAp!6EPm9GN_)fHt$m5e}7f3Wr1DBZUFi=6XELRkmJ

1Sm^#zV#_QIS77S!ky_-^bC?5^O}+F;REthBUxxk}Zo z#dbwrL`>pY2~!VW5d%#llxqI?eq)voaT?Ukvv)Au*P;!oDt|L4sERL{$CxMSoE6F`3DgHHON@rH1c zmzk>%nMc&V&bgJ!`mgR$Q7O>#6mVdO?H%chnufE~voXicy~E9c!`yKG5FT8Ug=QPm zl6FfL@h*(&X4uCQC#m{IzQ_5R$41`SboDqAxPBq1p?QDgy`-x!N|nBD1y}V8yt3wZ zpJEf8#3Ecg!x7>*H}eh6I47REnS8mvrD9Qy^*o@~b#N|ja)>%dGVI_4I2~4lY4AaEN*8V5xe}9e4az`surae|? z=!jRzs6~UpfyYhFgbvZxH5VCW(8H%SEnwR|&A|(p;?9g(Zt#*BXDtiZBE$e+{&v5b;S zP7BLX!CEcU#!i94-NVgy0P+(D2BLv|M}w2IRhR)3*{)iA)IU<57BW)e&>~_UVaJ2Y z3Z+_5c1PT#p@@+|po(+2>ijHKQ&o9hQGtM#D%vcSrLc!;4?c@b*I21>3}8AH<21am z9lR3U<;50h{v&mfd(anvZr?H5+2b?bYvVV$g649(0Lb(3V zieiJ#r#mgpHM?reoN)&lUvmQ%DiKQ7B3nJ2AFM$*;*_x?(Pz{NxZ2YN7feGk*c@;D zgPErLnd9eeyM>`EW2l2V-Vg&?Et(RQn@X)i9Lv>K)De}HdAJJfO1SW7s$jH;nTX}Q z!z43Y%n@kuYrrmXXVh%dU$E9x3v(3E)h!CQU>I?N=9b|{DstMx3_UTmQt|ASW(dU% zf}o*aaN_}vB?cWjMSFw+ zasyyDsiyQhoB=)@!GqZLM^IPJ+H5MoI%YaQKuoZ=$dAV{FD0B?IOAwfFsqyG)@Fmx za~0?h0#xq6lGD^TE9j0$Y%;8i>NwO26}NN>$5^J$SzbFEt3vaWrFSi)K+X&Tg3C55 zc)VsKLknsi$k1@Epoj*LTWSEUqeU@^(6u^ftpM4J64HWLhe0iXxfdFnPDR7)41CNb zBw89YGqCRz%nBocs9O$7;u&zU;5$i+EdDB3m;%*-Ane8qPGbSpchYUA1ty`Qo7@6N ztA`mN5?y|S8}1;N-H7{D5yR0E-uE-ur65FGLXj-)V#uxzkE!dd5=sp*IH)UZSm$d1D%m^xq@xn3Jhwo)*zLS2{=bi z23vsVxNjyk^AgTx7<-AC>L0G*!emRhy-zVU58TAz?a?>y4{3m6;00U#MPaQ+33so! zV2$AS2i!bHuX9TRR|uaXXZ=7Am{Y0D3`c*c@kcVA%y>w2CuvF0BM(A@_xCX{Pf)vM z$2avZjh(=Eea%0TV(tsv%~I>Ao_;0*E^E1k(aiamF@tapy)nnBv$N}u#)4&GLp**- z;q^aE{v`nHXA`#SD9tR=llF3^`78yn1I1dTgeXI@o*pY zBE!%aiiOZXpky9VmddKHbaE-$s{4t7%soXk%meBm$QGPoZ5$VUK!#YA3!?izV8mg? zyDPc}R}>dva&Lb%d#QT5!Hfed0Z%wRDKXNA0dD!!XcLl*%=jS4P1z=qzB@olek`R4 z`!w9Z5dkF%%=yAZD8loKCo8{*fV&sKjfr@n$1=y<3esKK@O4!wFq0;E1oETlD&R5n zHZbKDhDBgv!EA-iNL;jnK-dRz*5&L@tKIp#Q-%`#ts;CEm?`N3pT#x z(rkgHR0_@;RKN=J%OA`5fkw5$#?2VW-Ev}P3dd^2(%lZY^)G!7T^eGoh=$OtB%>=s zP4gY%;|$(0EpUL%YVJI<#h_V-;IKPpd>-wsDPtYsmV}ji>>FSXM7YxmA2?}oXEASH zJeV414)@|*I1z8M9Sp?$t^y-{g2tS|VwXHBs?l$DSchm9fl@Nyn06sBt|}pnm7LBP zdgwT)#MwII>xqA{2AW)3$9+PTu}v0C4oD_swq*YRu`x1fRn_q}Kx(F_vl;GN1i)G= zEv@j(a@$J*rCZM}{7Rryu|&#?b4~70B5bv5cmQy=4lB6XMQ+VCh5_d!1F%F!RI0C* zVr|uyjn>OTiG4tD769qZ(UWzF#wZBeGYi9?Qjh`??**cjo7`Cfs`8KT=5#0-VU5P7_ce2}(3I~Qv00&xb)4s1L^9yi={BaDqWGF~TWqR&^7 zl2VSC^j~{|P-!%5Ts*{4#OUQHG&r9EWwk{?iMCZo@eEpEEt9+7pKKIRQq~YQ9beRH zc?oC+Ur-pQakFz-mc)6d+kb&jv)%HW`!(&BLQsV+CocxNGo1{mRGTj#Ns<>Nz3Kp1FW_pVJzYEM!Xv@sai_dUlGXq!VZJ1=oaLaeU;$3=%OGxBKcXO$VB8NJfaWK{c ziFqnJ^AUJ$GgD{xFhPcQu0wT|ytf;))u|)-#-RBi2;EKvnrkF&nQl!(TwS8In;DbZPKA4wjnG!z`iG~s*<4Jm#}AqE z4Dd=(L81DM_X9X<%p82ims{ctYkWY8xu9 zOPS^om?e9dJ;Ar!597UikEJs&!Ejb^$~TyGRdh*ub*UKjNLUUrN0wsdWx=BXsJ;I3&7RA+n*5INNyPv z8}1a*cl(ZoxM`Z!TaOSgl2dE|-HuLSvsI0vNL>~VmQk9;!i*@k*yMc0c~m(ofxEC% zh?3#eHIWbTY$gy)P+)YA;JcyF zt8f>dRz?toILN0XYGi>TvuD6xQN7~ z3b<=$35|1}3Iln%h7Iczak9smcXP71mRy=4H*hBWGo8hVLCFB=s>_trIlybu3t9{m zMW~5Hasn{eH@={XfH)d#A+lkPE$TH3HbMgMJWR~?KpYCf;0VeilnDadf7u`bDSW|D zt`v}GWr9Osv`-~ob08jyzX71tKtaC=*f{ZKWD#ps>SgWhl18ZnlDE1nI zb0KxzYcB`;mZ;Ym$+N!<#`hBWQIWCc#S6;EJsfbl9bT|+eEyG%& zD%z>VL{ex0MKdY7U!r8Px(TKgo6A`9E>bihR>{1IZd5C9gGO3_X(+4QrrNY!n8B=j z)MScN2KGuh?jXWmS^yRbw0bZPCxWC!rLNo?Ap7jZ*rnvi(!QpHzmOc38wTyF0Im37 z6d6+v28i=$FsBm2ZQGO}Ic;@NH7RdZ!i4Xj@p8~q*$7oA7)-xb zh?Vi-buI#@O=dQZKa|0@AbX|aIam>)pecaD=W)1ssZ2Mc_U=t;SJkHEb z9}v%pmvXMWarh~YCvX=xEYER&1Eb;$Ff3cD+`Fk|&X1^t3~koPE-a|%x$!+q!oFpz z{6tec!rYw10{PVc0EF9BshGamW1ol)Hgo!uOHLir zb=(VKiyHSUFFrbz1eyDkOU3(voPVfn-ZdDs!hwHsq(Y`hEiITHc6}30C2bA8#s^!N z5l76(xovzwtnK#(N`mY8nJ}59mU9-pIGhY=ftj5%L*r3E8okz|zf&P7*%PGa60N*v zwt|}n7aEtivTti+lImV??`DTlTg!`;RyX8pjfPJJOXm0mjT`J%Ds9zE9xU?0%D5{x zA}HWhX|pkLZkoGKN)-_BN<+|KI7>OY0b~noF+wa2M=Dx{WZ>_qi!*JFwR;R0CWeY_ zWM3ys^)LrZD*?FOuI?CC*t%(==hV3X2Eq$3E2^Tx;H872f{?F>+o)q;TrL;0MBFu( zGOx4F`-TsosBd;`sJ=OlaVIbg9~XZ!m5>UCP7BL5tAfgdYXO(;Jf_@MM0{0eeWbSw z8%4ppR4MUWg28JA?5m4+%Pdi2fQ#5R>-7~uU6gf}*mbEy6ihbk7JD;@nqL|Mbz9`k zBWNcBH;nf$$dt7+bhyloV8o`dVr-zsMWU%hPMP# zDMjUI9cb+)H^=+!X;m2y4a}NpcO?{4tl4Mc%~}jS)1w3p!wxbMEVdh<*g+S#F*J{)Ii4CH%uI&X>l~1(NGr(Q* zn=1Kcz2IrTv0Dsam1M^4^O z+%*|N#jFsa999)N8KHK>vhM&4$O)3%x)y9lI;e_EytFN{-pH;Npo>so8$36h?ia_< zxM=7Gi)QJmOTsN#js>o3^nh}ZmBj3DCHIbIXAzThWX_su{6gnA_=5C{Hp-T_o~Iww zwZ#KkoEwDu?lIRfae_BI%Bbx$neH&FnSvSg%`NJ2a-ijmwdQSHa}2kLr!t-))ZO!N z$D|wa#0cMUtuo*0XZ+5G#OJx&iFrA^$9u%bFeo&#@kDHx!38>&#V-8nV<3gqpD?QU zjt}l!YiHH(-x8OnJ;YrU*D#9e;r*P&DcP-?`ecu>;!i>MF15Ebs7L_?24whCXK6>zHfym^CfuQuwhn7RvqZ zE+d5-YG2tLw=cbZ2$Z)BT-Cs)IqC`#ANHrTj(j{t*5@d$h9;f}vgZ1WndkR5X>hf){Q??j9e7}-2MLmAJcykVO=uj=;$NQAN7F(_X7Mz+p3%s zR_ g`)Coy=n&(rhzgUc?7J=5^9Fw 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� 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 z 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


^ySD*01NNa%cj)Th+T6}!q0ABcg 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

MvUn#Z&_ivp-u7e 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 Sc>HyrHh;^H);#B3XaCt&MrEG> diff --git a/public/images/brooks/autobiography.webp b/public/images/brooks/autobiography.webp deleted file mode 100644 index 0a63e73ba470552b7d49c9ead40a5084fd848ea2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 856166 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

    heu5r3-e4g1#|0_ak<@cL4WhmqU+m78w4l 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

    CRjeK0?2so5(#Z+)IGI1z2X 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

      }9D7s;SdU?Xb1Wco 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%0DjTCMp{48PgX@W`5V*jn*l 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

      e=Jy`5*e%MhoYX!z&{BoNRJW<8sJEy88gE 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